diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/1jnY5QWrkaY.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/1jnY5QWrkaY.srt new file mode 100644 index 0000000000000000000000000000000000000000..d62f887b6dedf86015165177bc5bf68cd023a8b8 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/1jnY5QWrkaY.srt @@ -0,0 +1,2319 @@ + +1 +00:00:05,420 --> 00:00:06,780 +Okay, in the name of God most merciful most + +2 +00:00:06,780 --> 00:00:09,880 +merciful. We will continue today guys in the + +3 +00:00:09,880 --> 00:00:13,740 +subject of dependency injection. In the last + +4 +00:00:13,740 --> 00:00:16,180 +lecture, we introduced dependency injection and we + +5 +00:00:16,180 --> 00:00:20,040 +said very briefly, When I have an object that + +6 +00:00:20,040 --> 00:00:21,780 +depends on another object, this is what we call + +7 +00:00:21,780 --> 00:00:24,460 +dependency. And we said that there are two ways to + +8 +00:00:24,460 --> 00:00:27,800 +achieve this dependency. That we create the object + +9 +00:00:27,800 --> 00:00:31,680 +that I need inside the object, okay? Or that we + +10 +00:00:31,680 --> 00:00:33,980 +create the object externally and pass it to the + +11 +00:00:33,980 --> 00:00:38,740 +object that needs it. And the best way is to create + +12 +00:00:38,740 --> 00:00:40,620 +the object externally and pass it through. And this + +13 +00:00:40,620 --> 00:00:44,960 +is what is called dependency injection. Why is it + +14 +00:00:44,960 --> 00:00:47,860 +better? Because you have the freedom to change the + +15 +00:00:47,860 --> 00:00:51,680 +dependency. You can make it extend, change what it + +16 +00:00:51,680 --> 00:00:55,140 +does, make it mocking. I explained last time how + +17 +00:00:55,140 --> 00:00:58,900 +testing works. For example, I have a user interface. + +18 +00:00:58,900 --> 00:01:01,060 +The user interface depends on the connection to + +19 +00:01:01,060 --> 00:01:04,190 +the database and methods to the database. It has a + +20 +00:01:04,190 --> 00:01:06,690 +dependency, which is the class that connects to the + +21 +00:01:06,690 --> 00:01:12,070 +database. If I want to try the user interface on + +22 +00:01:12,070 --> 00:01:16,790 +the database, I can extend the database class and + +23 +00:01:16,790 --> 00:01:20,210 +put mochas in it. For example, the method + +24 +00:01:23,870 --> 00:01:28,650 +For example, I have a UI. The UI needs methods to + +25 +00:01:28,650 --> 00:01:30,850 +make a connection to the database to get data and + +26 +00:01:30,850 --> 00:01:34,390 +upload it to the UI. If we assume that this is an + +27 +00:01:34,390 --> 00:01:39,200 +interface called DBI. There are methods called + +28 +00:01:39,200 --> 00:01:43,220 +getStudentById, getAllStudents, insertStudent, + +29 +00:01:43,660 --> 00:01:46,080 +this is an interface. Why did I design an + +30 +00:01:46,080 --> 00:01:50,140 +interface? To make it implement more than + +31 +00:01:50,140 --> 00:01:56,580 +one implementation. For example, I have MySQL DB. I + +32 +00:01:56,580 --> 00:02:00,080 +want to make the same methods implementation. And + +33 +00:02:00,080 --> 00:02:04,720 +I put queries suitable to whom? To MySQL. Because + +34 +00:02:04,720 --> 00:02:10,010 +actually, IThe UI needs an object from the DB + +35 +00:02:10,010 --> 00:02:11,870 +interface. Of course, I will not be able to create + +36 +00:02:11,870 --> 00:02:13,830 +an object from the interface. Of course, I must + +37 +00:02:13,830 --> 00:02:16,530 +create an object from the class that implements + +38 +00:02:16,530 --> 00:02:23,690 +the interface. So now I can create a new MySQLDB + +39 +00:02:23,690 --> 00:02:31,120 +and pass it to the UI. It's a new UI and it takes + +40 +00:02:31,120 --> 00:02:33,780 +the constructor of an object from MySQL DB. The + +41 +00:02:33,780 --> 00:02:38,400 +dependency was created from outside. The tester + +42 +00:02:38,400 --> 00:02:42,340 +wants to try the new UI away from the database and + +43 +00:02:42,340 --> 00:02:43,820 +its operations. For example, the database is not + +44 +00:02:43,820 --> 00:02:47,080 +ready yet. So I go to the interface and implement + +45 +00:02:47,080 --> 00:02:51,700 +something called mockDB. And of course, I implement + +46 +00:02:51,700 --> 00:02:54,280 +the same methods that are in the interface. But I + +47 +00:02:54,280 --> 00:02:58,510 +put fake data. Instead of getting all students, I + +48 +00:02:58,510 --> 00:03:03,850 +return a list with static data. All I have to do + +49 +00:03:03,850 --> 00:03:06,510 +is when I launch the UI, instead of returning the + +50 +00:03:06,510 --> 00:03:10,990 +actual object which is mySQLDB, I return the + +51 +00:03:10,990 --> 00:03:11,450 +mockDB. + +52 +00:03:15,500 --> 00:03:20,380 +This is called Dependency Injection. It allows me + +53 +00:03:20,380 --> 00:03:24,020 +to remove an object and replace it with another + +54 +00:03:24,020 --> 00:03:26,460 +object to change the dependency. + +55 +00:03:29,580 --> 00:03:32,460 +The goal of Dependency Injection is good because + +56 +00:03:32,460 --> 00:03:35,540 +it gives me flexibility, but the problem is that + +57 +00:03:35,540 --> 00:03:37,580 +creating the object becomes more difficult, + +58 +00:03:37,740 --> 00:03:39,560 +especially if my dependency is continuous, + +59 +00:03:40,140 --> 00:03:41,880 +something needs something and something needs + +60 +00:03:41,880 --> 00:03:44,220 +something else and so on, creating the object + +61 +00:03:44,220 --> 00:03:46,360 +becomes more difficult, so that's why they made + +62 +00:03:46,360 --> 00:03:50,580 +dependency injection frameworks. Its purpose is to + +63 +00:03:50,580 --> 00:03:52,920 +make it easier for you to create objects that have + +64 +00:03:52,920 --> 00:03:56,520 +many dependencies by using libraries, especially + +65 +00:03:56,520 --> 00:04:00,400 +if they use the Reflection API to create objects. + +66 +00:04:00,720 --> 00:04:02,580 +We mentioned in the previous lecture that + +67 +00:04:02,580 --> 00:04:04,780 +dependency injection frameworks have become + +68 +00:04:04,780 --> 00:04:07,960 +popular these days and are used in various + +69 +00:04:07,960 --> 00:04:13,200 +systems. We tried one of the dependency injection + +70 +00:04:13,200 --> 00:04:17,840 +libraries, which is called Juice. We saw an example + +71 +00:04:17,840 --> 00:04:22,180 +that if I have a car, the car needs an engine and + +72 +00:04:22,180 --> 00:04:25,220 +a wheel, the engine needs a cylinder, the cylinder + +73 +00:04:25,220 --> 00:04:29,400 +needs a valve, and the wheel needs a tire. So, in + +74 +00:04:29,400 --> 00:04:33,020 +order to create an object from a car, I had to go + +75 +00:04:33,020 --> 00:04:36,060 +through these processes, right? These are the + +76 +00:04:36,060 --> 00:04:38,240 +steps I used to do when I was creating a car. Now, + +77 +00:04:38,740 --> 00:04:41,840 +I started to create it through a line, a straight + +78 +00:04:41,840 --> 00:04:45,310 +line like this. Of course, how did we do it? All + +79 +00:04:45,310 --> 00:04:49,050 +you have to do is go to constructors and put + +80 +00:04:49,050 --> 00:04:52,790 +annotation called inject, okay? And that's it, it + +81 +00:04:52,790 --> 00:04:55,990 +executes this line that says juice create injector + +82 +00:04:55,990 --> 00:05:00,330 +get instance car.class and the injector itself + +83 +00:05:00,330 --> 00:05:03,130 +sees the tree, for example, it goes to the car, it + +84 +00:05:03,130 --> 00:05:08,950 +searches for this annotation, inject. This is + +85 +00:05:08,950 --> 00:05:10,830 +inject, it goes to the car. What does the car need + +86 +00:05:10,830 --> 00:05:14,870 +to start? Engine wheel. It enters the engine and + +87 +00:05:14,870 --> 00:05:18,550 +what does the engine need? A cylinder. It builds + +88 +00:05:18,550 --> 00:05:21,670 +the dependencies and then builds the object itself + +89 +00:05:21,670 --> 00:05:25,530 +until it reaches the car. This process is done by + +90 +00:05:25,530 --> 00:05:28,430 +itself. We tried it in the previous lecture, but + +91 +00:05:28,430 --> 00:05:32,610 +we still haven't tried all the cases. Because + +92 +00:05:32,610 --> 00:05:36,750 +there are certain cases, for example, if I use an + +93 +00:05:36,750 --> 00:05:39,460 +external library. In this case, I will not be able + +94 +00:05:39,460 --> 00:05:42,300 +to put at inject. Right or not guys? Because I + +95 +00:05:42,300 --> 00:05:45,080 +don't have the code. So let's see how to solve this + +96 +00:05:45,080 --> 00:05:47,820 +problem. Another case is that I'm learning with + +97 +00:05:47,820 --> 00:05:52,100 +an interface. So if we assume for example that the + +98 +00:05:52,100 --> 00:05:54,600 +wire or the engine is an interface or abstract + +99 +00:05:54,600 --> 00:05:58,980 +class. Okay, interface, for example, let's try it. + +100 +00:05:58,980 --> 00:06:00,980 +Go to the wire and tell it, we don't want to make + +101 +00:06:00,980 --> 00:06:05,420 +it a class, I want to call it interface. That's it, I + +102 +00:06:05,420 --> 00:06:08,590 +changed it from class to interface. And I told him + +103 +00:06:08,590 --> 00:06:14,190 +to make me a car. He ran and made an error. Why? I + +104 +00:06:14,190 --> 00:06:17,110 +told him that there was no implementation for the + +105 +00:06:17,110 --> 00:06:19,510 +tire that was bound. He did not find an + +106 +00:06:19,510 --> 00:06:24,110 +implementation for the tire. The tire is where he + +107 +00:06:24,110 --> 00:06:26,590 +needs it, from inside the wheel. Right or wrong? + +108 +00:06:26,610 --> 00:06:28,690 +He wanted to extract an object from the tire. He + +109 +00:06:28,690 --> 00:06:30,270 +found an interface. An interface cannot be + +110 +00:06:30,270 --> 00:06:33,850 +extracted from an object. So how do we deal if I + +111 +00:06:33,850 --> 00:06:37,440 +have an interface or abstract class? Another thing, + +112 +00:06:39,480 --> 00:06:43,420 +if the object takes primitive type parameters, for + +113 +00:06:43,420 --> 00:06:47,480 +example if the engine takes cylinder, right or + +114 +00:06:47,480 --> 00:06:50,020 +wrong, but if it takes integer, power, + +115 +00:06:52,950 --> 00:06:54,830 +How will it deal with the primitive type? What is + +116 +00:06:54,830 --> 00:06:58,170 +the class type? We say that we inject it to create + +117 +00:06:58,170 --> 00:07:00,250 +an object. As for the primitive type, this is a + +118 +00:07:00,250 --> 00:07:02,710 +value that must pass through the constructor to + +119 +00:07:02,710 --> 00:07:06,150 +create an object. How will we deal with this? This + +120 +00:07:06,150 --> 00:07:09,310 +is what we see in this lecture, that some things + +121 +00:07:09,310 --> 00:07:11,810 +are a bit advanced in the subject of Dependency + +122 +00:07:11,810 --> 00:07:15,610 +Injection. Let's start with the first part. If we + +123 +00:07:15,610 --> 00:07:19,530 +say that I have an interface called tire, because + +124 +00:07:19,530 --> 00:07:21,090 +it certainly will not be able to create a car. + +125 +00:07:21,890 --> 00:07:25,390 +What does it require now? It requires any class to + +126 +00:07:25,390 --> 00:07:30,390 +implement to whom? To the tire. So if we assume + +127 +00:07:30,390 --> 00:07:32,530 +that I have two classes that implement to the + +128 +00:07:32,530 --> 00:07:34,590 +tire. For example, I want to tell it here, large + +129 +00:07:34,590 --> 00:07:43,690 +tire. And + +130 +00:07:43,690 --> 00:07:45,170 +I want to tell it here, for the experiment + +131 +00:07:54,730 --> 00:08:11,030 +and this is another class and + +132 +00:08:11,030 --> 00:08:12,390 +this one also, but I want to implement + +133 +00:08:23,110 --> 00:08:27,410 +Okay, now when I create the object car, I have to + +134 +00:08:27,410 --> 00:08:30,970 +specify what class it will create. I have two + +135 +00:08:30,970 --> 00:08:34,510 +classes that I implement for a plane. It has to + +136 +00:08:34,510 --> 00:08:37,610 +create either a large plane or a small plane. So I + +137 +00:08:37,610 --> 00:08:39,210 +want to tell it, as a programmer, I want to tell + +138 +00:08:39,210 --> 00:08:42,310 +it which one of the two it will use. How are we + +139 +00:08:42,310 --> 00:08:44,270 +going to tell it this? Now we want to add a new + +140 +00:08:44,270 --> 00:08:48,320 +class, through which we direct instructions or + +141 +00:08:48,320 --> 00:08:51,460 +instructions to the injector, what to do in cases + +142 +00:08:51,460 --> 00:08:53,620 +where he does not know how to act in them, that + +143 +00:08:53,620 --> 00:08:56,180 +is, he is in the normal state to build the tree, + +144 +00:08:56,340 --> 00:08:59,140 +it is affecting the amount injected, there are + +145 +00:08:59,140 --> 00:09:00,880 +cases in which the amount injected will not work, + +146 +00:09:01,220 --> 00:09:03,120 +like what, like this case where I have an + +147 +00:09:03,120 --> 00:09:08,240 +interface. In this case, we ask him what to do if + +148 +00:09:08,240 --> 00:09:09,320 +he is in a situation where he does not know how to + +149 +00:09:09,320 --> 00:09:12,360 +act in them, like this case. So to solve this + +150 +00:09:12,360 --> 00:09:16,700 +problem, we go and make a class. Of course, how do + +151 +00:09:16,700 --> 00:09:18,400 +we direct these instructions to him? He says, if + +152 +00:09:18,400 --> 00:09:22,980 +you want to give me, it's all in all, the + +153 +00:09:22,980 --> 00:09:26,140 +injector, okay? For the injector to drink, he + +154 +00:09:26,140 --> 00:09:29,260 +says, if you want to pass me instructions, I have + +155 +00:09:29,260 --> 00:09:32,540 +provided a constructor here called create + +156 +00:09:32,540 --> 00:09:39,090 +injector, which takes an object called module. He + +157 +00:09:39,090 --> 00:09:42,090 +told me to make instructions in a class called + +158 +00:09:42,090 --> 00:09:47,130 +Module and pass it to me in this method. So now + +159 +00:09:47,130 --> 00:09:49,010 +this is still the method, we haven't passed + +160 +00:09:49,010 --> 00:09:53,890 +anything to it yet. So we create the module. So I + +161 +00:09:53,890 --> 00:09:55,950 +went and made a class, you can call it Car Module + +162 +00:09:55,950 --> 00:09:59,670 +As + +163 +00:09:59,670 --> 00:10:02,090 +long as he wants a module with him, he has a class + +164 +00:10:02,090 --> 00:10:06,130 +called Abstract Module. He made it in the library. + +165 +00:10:08,430 --> 00:10:10,790 +Why did I make it extend Abstract Module? So that + +166 +00:10:10,790 --> 00:10:13,550 +I can pass it to the injector. The injector needs + +167 +00:10:13,550 --> 00:10:16,390 +an object of module type. This abstract module is + +168 +00:10:16,390 --> 00:10:19,970 +of module type. And now, from inside it, I make an + +169 +00:10:19,970 --> 00:10:22,130 +implement or override to a method called + +170 +00:10:22,130 --> 00:10:27,310 +configure. What is configure? It's like a set of + +171 +00:10:27,310 --> 00:10:30,650 +numbers. I make a set of numbers. Okay? Here now, + +172 +00:10:30,710 --> 00:10:32,990 +in the method configure, we direct instructions to + +173 +00:10:32,990 --> 00:10:37,660 +it. We say the following, this dot bind. What is + +174 +00:10:37,660 --> 00:10:43,080 +the word bind? Urbot. Okay? If I go to the tire + +175 +00:10:43,080 --> 00:10:55,240 +dot class, I connect it to large tire dot + +176 +00:10:55,240 --> 00:10:58,800 +class. That's it. So where is the problem, guys? + +177 +00:10:59,020 --> 00:11:01,520 +The tire is the interface. He wants to create + +178 +00:11:01,520 --> 00:11:03,180 +something, but he doesn't know how to deal with + +179 +00:11:03,180 --> 00:11:07,000 +it. So he goes back to the car module, to the + +180 +00:11:07,000 --> 00:11:09,700 +configurator, and executes it. So he knows that if + +181 +00:11:09,700 --> 00:11:14,000 +there is no current, what will happen? There is no + +182 +00:11:14,000 --> 00:11:17,460 +current. So we are done. Did we use this module? + +183 +00:11:17,620 --> 00:11:20,480 +Did we create an object from it? No. Where are we + +184 +00:11:20,480 --> 00:11:24,640 +going to use it? Here in the injector. Here I want + +185 +00:11:24,640 --> 00:11:29,400 +to create an object from it. Car module, new car + +186 +00:11:29,400 --> 00:11:33,180 +module. And here in the injector, what does it do? + +187 +00:11:34,060 --> 00:11:37,240 +It reruns it, see? So now our injector has been + +188 +00:11:37,240 --> 00:11:41,540 +rerun by a module. So why didn't we rerun it + +189 +00:11:41,540 --> 00:11:43,900 +before? Because it didn't need information. It + +190 +00:11:43,900 --> 00:11:45,500 +would go and rely on the injector and it would + +191 +00:11:45,500 --> 00:11:47,480 +run. But now the situation is different. There is + +192 +00:11:47,480 --> 00:11:51,720 +missing information. It reruns it through the + +193 +00:11:51,720 --> 00:11:58,600 +module. Because if I run it, it will work. And + +194 +00:11:58,600 --> 00:12:05,260 +look at what it did to me, and the large type. How + +1 + +223 +00:14:11,700 --> 00:14:17,020 +engine with + +224 +00:14:18,890 --> 00:14:25,350 +C, which is its cylinder. Ok, + +225 +00:14:25,710 --> 00:14:27,950 +until now it will not work. I did not tell it that + +226 +00:14:27,950 --> 00:14:31,650 +if I find engine create BMW engine. So this is what + +227 +00:14:31,650 --> 00:14:34,830 +we will do. In the car module, we will do binding + +228 +00:14:34,830 --> 00:14:37,910 +again. In the configure, we will also tell it bind + +229 +00:14:37,910 --> 00:14:46,970 +that if I find engine dot class, go and bind to BMW + +230 +00:14:46,970 --> 00:14:57,650 +engine dot class and + +231 +00:14:57,650 --> 00:15:01,130 +this is run. And what did it do? it wrote BMW + +232 +00:15:01,130 --> 00:15:03,070 +engine + +233 +00:15:06,780 --> 00:15:10,100 +if I had an interface in my tree, an interface or + +234 +00:15:10,100 --> 00:15:12,180 +abstract class, you have to create a module to + +235 +00:15:12,180 --> 00:15:15,360 +define the binding, what connects this interface + +236 +00:15:15,360 --> 00:15:19,140 +or abstract class to a concrete class. And this is + +237 +00:15:19,140 --> 00:15:20,780 +done inside the module in a method called + +238 +00:15:20,780 --> 00:15:24,380 +configure. What I see is that if a tester comes, + +239 +00:15:25,840 --> 00:15:28,800 +like this example, for example, I have a UI + +240 +00:15:28,800 --> 00:15:31,760 +connected to a database. He wants to put a Mock + +241 +00:15:32,560 --> 00:15:36,100 +DB. Or here for example in our example, instead of + +242 +00:15:36,100 --> 00:15:38,940 +the real tire, we put a mock tire. And instead of + +243 +00:15:38,940 --> 00:15:41,840 +the real engine, the BMW engine, we put what? Yes, + +244 +00:15:42,180 --> 00:15:44,680 +a mock engine. See why? I will change only the + +245 +00:15:44,680 --> 00:15:45,980 +testers that work on the left and the relationship + +246 +00:15:45,980 --> 00:15:49,800 +in the whole tree. Yes, I have a module. Who do I + +247 +00:15:49,800 --> 00:15:54,350 +want to change? These ones. That's it. Okay? It + +248 +00:15:54,350 --> 00:15:57,330 +won't even change the main class and program. It + +249 +00:15:57,330 --> 00:16:01,130 +will create a new class and name it mock module + +250 +00:16:01,130 --> 00:16:06,830 +for testing. Okay? Mock module. I want to say + +251 +00:16:06,830 --> 00:16:11,650 +extends car module. So where do I want to change? + +252 +00:16:12,850 --> 00:16:18,190 +In the main car module. And I want to say what? + +253 +00:16:18,530 --> 00:16:22,660 +Configure. This is the method configure that I + +254 +00:16:22,660 --> 00:16:25,380 +have, and I want to tell you guys to change only + +255 +00:16:25,380 --> 00:16:30,140 +one thing, the binding that I have, that if I find + +256 +00:16:30,140 --> 00:16:37,900 +tire.class, connect it to who? to mock tire.class + +257 +00:16:37,900 --> 00:16:47,020 +and if I find bind engine, connect + +258 +00:16:47,020 --> 00:16:47,500 +it to + +259 +00:16:50,480 --> 00:16:54,820 +mock engine dot + +260 +00:16:54,820 --> 00:16:58,280 +class, of course these are not yet available so + +261 +00:16:58,280 --> 00:17:05,380 +let's do them quickly, this is mock tire and + +262 +00:17:05,380 --> 00:17:08,560 +here is the to string, and I want to say return + +263 +00:17:08,560 --> 00:17:14,080 +mock + +264 +00:17:14,080 --> 00:17:17,100 +tire, and this is mock engine + +265 +00:17:33,570 --> 00:17:45,590 +This also needs inject, and + +266 +00:17:45,590 --> 00:17:52,890 +here I have mock engine with + +267 +00:17:52,890 --> 00:17:56,810 +with + +268 +00:17:56,810 --> 00:18:03,870 +c. Ok, this is the mock module. What's in the mock + +269 +00:18:03,870 --> 00:18:11,390 +file? I made a mock file. Yes, this needs to be + +270 +00:18:11,390 --> 00:18:20,190 +implemented. Ok, + +271 +00:18:20,250 --> 00:18:28,850 +and this is the mock module. Now, in the main, this is + +272 +00:18:28,850 --> 00:18:32,170 +the basic code, right? I want to try to leave this + +273 +00:18:32,170 --> 00:18:35,650 +line instead + +274 +00:18:35,650 --> 00:18:38,990 +of here car module, I want to tell him new mock + +275 +00:18:38,990 --> 00:18:42,350 +module, which means what we did between the two + +276 +00:18:42,350 --> 00:18:48,050 +lines, right away. Okay, and I do run, and I get + +277 +00:18:48,050 --> 00:18:48,790 +the error, why? + +278 +00:19:09,590 --> 00:19:12,190 +طيب ليش مقتر؟ + +279 +00:19:46,720 --> 00:19:50,900 +What will change? Nothing. Ok, what did he write + +280 +00:19:50,900 --> 00:19:54,360 +here? With a conditional. So now the tester, guys, + +281 +00:19:54,780 --> 00:19:56,900 +everything he needs to do, you see what he does? + +282 +00:19:57,820 --> 00:19:59,420 +He changes, he says, I swear to God, this + +283 +00:19:59,420 --> 00:20:03,460 +interface is linked to what? To the new class. He + +284 +00:20:03,460 --> 00:20:05,000 +does not play with the tree at all, he changes + +285 +00:20:05,000 --> 00:20:07,400 +from here. He decides what to change instead of + +286 +00:20:07,400 --> 00:20:11,960 +what. Fine? Okay, so we saw how to deal with the + +287 +00:20:11,960 --> 00:20:14,380 +interface or the abstract class, it is necessary + +288 +00:20:14,380 --> 00:20:19,680 +to do binding inside the module. Let's come to the + +289 +00:20:19,680 --> 00:20:21,640 +second point, suppose I'm dealing with a library + +290 +00:20:22,470 --> 00:20:27,810 +externally, okay? I mean, for example, to try this + +291 +00:20:27,810 --> 00:20:31,550 +example, we come to the class Valvehead, okay? + +292 +00:20:31,550 --> 00:20:35,630 +Let's assume, for example, that it has a variable + +293 +00:20:35,630 --> 00:20:40,890 +called ValveSize, okay? And it has a public + +294 +00:20:40,890 --> 00:20:50,630 +constructor ValveIntValveSize + +295 +00:21:01,840 --> 00:21:04,420 +because in order for the program to work, the + +296 +00:21:04,420 --> 00:21:09,560 +constructor must do at inject. Right guys? But + +297 +00:21:09,560 --> 00:21:12,700 +let's assume that this is a library and I don't + +298 +00:21:12,700 --> 00:21:18,320 +know its code. You don't have access to the valve + +299 +00:21:18,320 --> 00:21:22,800 +But at the same time, the cylinder needs an object + +300 +00:21:22,800 --> 00:21:28,140 +from the valve in order to work. In this case, if + +301 +00:21:28,140 --> 00:21:28,700 +you run + +302 +00:21:34,900 --> 00:21:37,360 +it will give you an error and it will explain to + +303 +00:21:37,360 --> 00:21:39,240 +you what the error is. What does it say? No + +304 +00:21:39,240 --> 00:21:42,580 +injectable constructor for valve. It means that + +305 +00:21:42,580 --> 00:21:46,120 +there is no constructor to inject on it to know + +306 +00:21:46,120 --> 00:21:50,860 +what to do. Okay? And at the same time, I can't go + +307 +00:21:50,860 --> 00:21:53,500 +to the valve and tell it to inject because the + +308 +00:21:53,500 --> 00:21:56,640 +code of the valve is not available with me. So + +309 +00:21:56,640 --> 00:21:58,600 +what is the solution to this problem? The solution + +310 +00:21:58,600 --> 00:22:03,000 +is to go back to whom? To the module. The module is + +311 +00:22:03,000 --> 00:22:07,240 +the solution if it can't act. It always goes back + +312 +00:22:07,240 --> 00:22:10,000 +to the module. That's why the first time we + +313 +00:22:10,000 --> 00:22:11,820 +worked, we didn't use a module because everything + +314 +00:22:11,820 --> 00:22:16,360 +had inject. So let's go to the module. Let's go + +315 +00:22:16,360 --> 00:22:19,840 +back to the core module, our basis. This is the + +316 +00:22:19,840 --> 00:22:22,820 +core module. You see, I want to add something + +317 +00:22:22,820 --> 00:22:26,920 +here. Because it tells me the things that I can't + +318 +00:22:26,920 --> 00:22:29,700 +create because you can't inject them, let the + +319 +00:22:29,700 --> 00:22:34,060 +module do it. How? You go and create a method + +320 +00:22:34,060 --> 00:22:37,780 +because it wants Valve, right or wrong? Create a + +321 +00:22:37,780 --> 00:22:40,960 +method to return Valve to you. Name it whatever + +322 +00:22:40,960 --> 00:22:43,240 +you want, getValve. Importantly, what should it + +323 +00:22:43,240 --> 00:22:49,480 +return? Its return type. Valve. Because here you + +324 +00:22:49,480 --> 00:22:53,540 +run the object whatever you want, through the U. + +325 +00:22:54,990 --> 00:22:58,590 +means that this valve will not allow itself to + +326 +00:22:58,590 --> 00:23:02,210 +generate it, you will have to generate it because + +327 +00:23:02,210 --> 00:23:06,170 +you will not be able to put the inject, as if I say + +328 +00:23:06,170 --> 00:23:09,710 +to him, if you find a valve, go and learn the + +329 +00:23:09,710 --> 00:23:13,170 +method of generating a valve and here you generate + +330 +00:23:13,170 --> 00:23:15,430 +the object yourself, as a programmer, you determine + +331 +00:23:15,430 --> 00:23:16,630 +how to generate the object because it is an + +332 +00:23:16,630 --> 00:23:18,670 +external library and here you pass it, for example, + +333 +00:23:18,670 --> 00:23:23,570 +5. I don't want to generate this valve. And then + +334 +00:23:23,570 --> 00:23:26,230 +you come to this terminal and you tag it with + +335 +00:23:26,230 --> 00:23:33,410 +something called provides. Now, + +336 +00:23:33,550 --> 00:23:35,850 +what is this provides? Okay, pay attention to me + +337 +00:23:35,850 --> 00:23:39,290 +guys, this gate comes to work and at the moment it + +338 +00:23:39,290 --> 00:23:42,150 +wants to create a cylinder in it. The cylinder + +339 +00:23:42,150 --> 00:23:46,790 +needs what? Valve. To create the valve now, it will + +340 +00:23:46,790 --> 00:23:49,250 +go to the valve and search for a constructor in it + +341 +00:23:49,250 --> 00:23:52,490 +at at inject. He will not find it, it will enter + +342 +00:23:52,490 --> 00:23:55,370 +inside the valve, because it has the class, but it + +343 +00:23:55,370 --> 00:24:00,030 +does not have the code, okay? The constructor will + +344 +00:24:00,030 --> 00:24:02,590 +not find it at inject. So what does it do? It asks + +345 +00:24:02,590 --> 00:24:06,270 +again who? The module. Automatically, if there is + +346 +00:24:06,270 --> 00:24:07,670 +a class that does not know how to create it, it + +347 +00:24:07,670 --> 00:24:11,870 +searches for the tags with its name provides for + +348 +00:24:11,870 --> 00:24:14,930 +himself, what is the word provide? provides for + +349 +00:24:14,930 --> 00:24:18,970 +himself, + +350 +00:24:18,970 --> 00:24:22,970 +what is the word provide? provides for himself, + +351 +00:24:22,970 --> 00:24:23,130 +what is the word provide? provides for himself, + +352 +00:24:23,130 --> 00:24:23,170 +what is the word provide? provides for himself, + +353 +00:24:23,170 --> 00:24:23,210 +what is the word provide? provides for himself, + +354 +00:24:23,210 --> 00:24:23,410 +what is the word provide? provides for himself, + +355 +00:24:23,410 --> 00:24:23,490 +what is the word provide? provides for himself, + +356 +00:24:23,490 --> 00:24:25,730 +what is the word provide? provides for himself, + +357 +00:24:26,090 --> 00:24:35,010 +what is the word provide? provides for + +358 +00:24:35,010 --> 00:24:41,480 +himself, what is the It's a method to retrieve the + +359 +00:24:41,480 --> 00:24:44,100 +type of object that I need from the library and + +360 +00:24:44,100 --> 00:24:46,720 +it's called TaggingProvides. So let's say I don't + +361 +00:24:46,720 --> 00:24:50,180 +know how to create a valve, I search for a method + +362 +00:24:50,180 --> 00:24:53,900 +called TaggingProvides, and it retrieves a valve. + +363 +00:24:54,260 --> 00:24:57,120 +Who found it? This method found it and asked for + +364 +00:24:57,120 --> 00:25:00,880 +it. Okay? Of course, this is not what we want to + +365 +00:25:00,880 --> 00:25:03,120 +do. We want to go to the pulp, which is called + +366 +00:25:03,120 --> 00:25:05,880 +ValveSize. Okay? Of Size. + +367 +00:25:10,190 --> 00:25:12,150 +this.valveSize. This is just to show that it + +368 +00:25:12,150 --> 00:25:17,070 +matches with the print. So the idea is that + +369 +00:25:17,070 --> 00:25:18,770 +whenever it gets confused and doesn't know what to + +370 +00:25:18,770 --> 00:25:22,530 +create or what to do, it goes back to the module, + +371 +00:25:22,610 --> 00:25:26,750 +okay? At first, it looks at the configurator to + +372 +00:25:26,750 --> 00:25:28,570 +know, for example, what is the use of this + +373 +00:25:28,570 --> 00:25:29,730 +configurator? If there is an interface that is in + +374 +00:25:29,730 --> 00:25:31,370 +the second class, I connect it to the actual + +375 +00:25:31,370 --> 00:25:34,380 +class, the concrete class. Also, if there is a class + +376 +00:25:34,380 --> 00:25:35,920 +that does not know how to generate objects from it + +377 +00:25:35,920 --> 00:25:37,840 +because it does not have an injectable + +378 +00:25:37,840 --> 00:25:41,440 +constructor, it searches for a method that + +379 +00:25:41,440 --> 00:25:43,460 +provides so that it can generate objects from it. + +380 +00:25:44,400 --> 00:25:48,620 +For example, it will find newValve5 and so on. It + +381 +00:25:48,620 --> 00:25:53,260 +will return to run. I am currently sitting in the + +382 +00:25:53,260 --> 00:25:55,640 +car module and here I am not using the mock + +383 +00:25:55,640 --> 00:25:59,380 +module. Does it work? Yes, it works because the + +384 +00:25:59,380 --> 00:26:03,180 +module did x2 to whom? to the car module so the + +385 +00:26:03,180 --> 00:26:05,880 +code will stay with it, it worked, it will respond + +386 +00:26:05,880 --> 00:26:10,660 +to what? with cylinder, with valve of size 5, so it + +387 +00:26:10,660 --> 00:26:14,840 +worked. What? it worked perfectly. The point is if + +388 +00:26:14,840 --> 00:26:18,020 +there is an external library that needs it, this + +389 +00:26:18,020 --> 00:26:21,840 +needs a method provides. Okay? + +390 +00:26:24,090 --> 00:26:29,270 +There is another way to do it. Let's say I use 5 + +391 +00:26:29,270 --> 00:26:34,090 +or 6 offices. How many methods do I have? 5 or 6 + +392 +00:26:34,090 --> 00:26:38,050 +methods. So the car module increases. So if you + +393 +00:26:38,050 --> 00:26:41,190 +don't want to put everything in this class, you + +394 +00:26:41,190 --> 00:26:47,470 +can do something called provider class. Why do we + +395 +00:26:47,470 --> 00:26:52,010 +need valve? We call it valve provider. What is the + +396 +00:26:52,010 --> 00:26:54,880 +name of this provider? The supplier of the valve. + +397 +00:26:55,160 --> 00:26:57,040 +He tells you to make an implementation for an + +398 +00:26:57,040 --> 00:27:02,560 +interface called Provider that returns a valve. + +399 +00:27:09,230 --> 00:27:11,090 +I made an implement for the interface, so it asked + +400 +00:27:11,090 --> 00:27:13,590 +me to make an implement for the methods that are + +401 +00:27:13,590 --> 00:27:16,130 +inside the interface, and it will bring a method + +402 +00:27:16,130 --> 00:27:21,050 +called what? gate, return valve. Here, I put almost + +403 +00:27:21,050 --> 00:27:28,050 +the same code, which is return new valve 77, for + +404 +00:27:28,050 --> 00:27:32,830 +example, because I made the valve provider but I + +405 +00:27:32,830 --> 00:27:35,570 +didn't use it, right or not guys? Where should I + +406 +00:27:35,570 --> 00:27:39,360 +use it? We have to go back to the car module. As + +407 +00:27:39,360 --> 00:27:42,100 +long as I created a provider, this code doesn't + +408 +00:27:42,100 --> 00:27:46,880 +belong to it. But instead, I will go to the + +409 +00:27:46,880 --> 00:27:55,940 +configurator and bind it. If you + +410 +00:27:55,940 --> 00:28:01,460 +need valve.class, connect it to it or go to the + +411 +00:28:01,460 --> 00:28:06,860 +provider, which is called ValveProvider + +412 +00:28:10,770 --> 00:28:13,270 +So, if you find a valve, go and use the valve + +413 +00:28:13,270 --> 00:28:18,270 +provider. And the valve provider will find a + +414 +00:28:18,2 + +445 +00:30:23,660 --> 00:30:28,420 +There is no unbind in it. Okay, fine. Okay, we + +446 +00:30:28,420 --> 00:30:30,020 +added it to the mock to keep it running. + +447 +00:30:33,440 --> 00:30:34,940 +Okay, and what is left? What is the size of the + +448 +00:30:34,940 --> 00:30:41,980 +valve? Seventy-seven. Seventy-seven. Clear, guys? + +449 +00:30:43,200 --> 00:30:45,420 +So if I want to use an external library in this + +450 +00:30:45,420 --> 00:30:48,060 +case, I need to create the object because it will + +451 +00:30:48,060 --> 00:30:50,860 +not be able to create it. How do I create it? + +452 +00:30:51,120 --> 00:30:54,680 +Through the module, I need to create a method it + +453 +00:30:54,680 --> 00:30:56,600 +is made by annotation in provides, it returns the + +454 +00:30:56,600 --> 00:30:59,760 +object that it wants either to make it a provider + +455 +00:30:59,760 --> 00:31:03,560 +if you have 5 libraries and you use them either + +456 +00:31:03,560 --> 00:31:06,820 +you create 5 providers outside and bind them + +457 +00:31:06,820 --> 00:31:10,400 +either you create 5 methods and make them annotate + +458 +00:31:10,400 --> 00:31:22,580 +as provides ok guys? until the last part is + +459 +00:31:22,580 --> 00:31:23,920 +to suppose + +460 +00:31:26,910 --> 00:31:30,590 +For example, like a tire, let's say Of course, we + +461 +00:31:30,590 --> 00:31:33,990 +don't have a tire, but we have a large tire and a + +462 +00:31:33,990 --> 00:31:38,030 +small tire, okay? Let's say the tire takes a + +463 +00:31:38,030 --> 00:31:43,010 +parameter Primitive + +464 +00:31:43,010 --> 00:31:45,470 +type, but let's try it instead of making another + +465 +00:31:45,470 --> 00:31:49,190 +constructor Yes, go to the cylinder, okay? What + +466 +00:31:49,190 --> 00:31:52,690 +does the cylinder take? It takes a valve, and I + +467 +00:31:52,690 --> 00:31:57,030 +want it to take another parameterInteger cylinder + +468 +00:31:57,030 --> 00:32:03,590 +size and + +469 +00:32:03,590 --> 00:32:05,150 +put it in the constructor + +470 +00:32:18,310 --> 00:32:21,950 +Okay, I found that class objects like the valve is + +471 +00:32:21,950 --> 00:32:25,250 +solvable by itself. It produces objects from it. + +472 +00:32:25,690 --> 00:32:28,390 +If I find an injectable, the constructor produces + +473 +00:32:28,390 --> 00:32:30,590 +it. If I don't find one, the provider produces it. + +474 +00:32:30,610 --> 00:32:33,590 +Anyway, this is solvable by itself. But if I have + +475 +00:32:33,590 --> 00:32:35,730 +a primitive type constructor, this is a different + +476 +00:32:35,730 --> 00:32:40,610 +argument. It needs a value. Right or wrong guys? + +477 +00:32:41,390 --> 00:32:43,170 +What value does it need? Of course, I found that + +478 +00:32:43,170 --> 00:32:45,400 +it will not be able to produce a cylinder.The + +479 +00:32:45,400 --> 00:32:47,700 +cylinder has two dependencies. The first + +480 +00:32:47,700 --> 00:32:50,500 +dependency is an object of the type of valve. This + +481 +00:32:50,500 --> 00:32:54,160 +is solvable. The second dependency is a variable + +482 +00:32:54,160 --> 00:32:57,000 +of the type of integer. It has to pass through it + +483 +00:32:57,000 --> 00:32:58,740 +in order to create a cylinder. So this gate will + +484 +00:32:58,740 --> 00:33:00,700 +not be able to create a cylinder. Let's run it. + +485 +00:33:02,780 --> 00:33:04,700 +Okay, it will generate an error. Let's see the + +486 +00:33:04,700 --> 00:33:11,680 +error. No injectable constructor for type integer. + +487 +00:33:11,760 --> 00:33:15,270 +I don't know how it works.So this is also what we + +488 +00:33:15,270 --> 00:33:17,690 +want to do, we want to do the car module is the + +489 +00:33:17,690 --> 00:33:21,270 +solution to this problem. The first thing we want + +490 +00:33:21,270 --> 00:33:26,070 +to do is to give a name to this integer. You say + +491 +00:33:26,070 --> 00:33:31,610 +named and give it any name, for example, I want to + +492 +00:33:31,610 --> 00:33:36,750 +say cylinder size or let's say C size. + +493 +00:33:40,850 --> 00:33:44,850 +At Named, I'm doing an implement here for this At + +494 +00:33:44,850 --> 00:33:45,970 +Named, it's going to say here it's going to give + +495 +00:33:45,970 --> 00:33:46,430 +you an error. + +496 +00:33:51,090 --> 00:33:56,370 +I'm doing an import for it from this path. Why did + +497 +00:33:56,370 --> 00:33:59,290 +I give it a name? Because now in the char module, + +498 +00:33:59,610 --> 00:34:02,510 +if I find an integer with this name, I'm going to + +499 +00:34:02,510 --> 00:34:05,730 +give it this value.For example, I send values from + +500 +00:34:05,730 --> 00:34:08,390 +outside the whole tree. The tree does not enter + +501 +00:34:08,390 --> 00:34:11,510 +inside it, nor does it need this or that. From the + +502 +00:34:11,510 --> 00:34:13,670 +car module, I direct it and give it everything it + +503 +00:34:13,670 --> 00:34:17,810 +needs. So now I will go to the car module with me + +504 +00:34:17,810 --> 00:34:22,330 +and we will do command binding I need the binding + +505 +00:34:22,330 --> 00:34:26,330 +in case if I have an interface I want to give it a + +506 +00:34:26,330 --> 00:34:28,530 +class or abstract class I want to specify what + +507 +00:34:28,530 --> 00:34:31,870 +concrete class it will create or a class that does + +508 +00:34:31,870 --> 00:34:34,990 +not have an injectable constructor like if I use + +509 +00:34:34,990 --> 00:34:36,690 +an external library I want to specify how it will + +510 +00:34:36,690 --> 00:34:40,070 +create it a provider to create it or the last case + +511 +00:34:40,070 --> 00:34:42,570 +if I have a constructor that takes a parameter + +512 +00:34:43,600 --> 00:34:45,660 +primitive type and it does not need a value to + +513 +00:34:45,660 --> 00:34:50,860 +start I will also make it a bind this is a bind + +514 +00:34:50,860 --> 00:34:54,520 +and I will give it the name of class A now integer + +515 +00:34:54,520 --> 00:34:59,370 +dot class The value that I want to bind is + +516 +00:34:59,370 --> 00:35:03,190 +integer, not the integer that we made I want to + +517 +00:35:03,190 --> 00:35:11,790 +tell him annotated with names dot named csize Not + +518 +00:35:11,790 --> 00:35:14,010 +the name of the variable csize I want to tell him + +519 +00:35:14,010 --> 00:35:18,510 +if you find a variable of integer type I give him + +520 +00:35:18,510 --> 00:35:25,650 +or make annotation with this name Go and make to + +521 +00:35:25,650 --> 00:35:30,320 +instance give it a value of 100. This is the + +522 +00:35:30,320 --> 00:35:34,600 +meaning. This is the whole line to search for an + +523 +00:35:34,600 --> 00:35:38,800 +integer variable called cSize and give it a value + +524 +00:35:38,800 --> 00:35:39,960 +of 100. + +525 +00:35:43,380 --> 00:35:46,540 +But of course, as we have seen, this cSize should + +526 +00:35:46,540 --> 00:35:48,620 +be placed somewhere in the constructor. + +527 +00:35:52,610 --> 00:35:54,590 +Ok, let's go here, instead of changing the system + +528 +00:35:54,590 --> 00:35:56,490 +and running it on the car, let's leave this one as + +529 +00:35:56,490 --> 00:36:02,610 +it is Or let's leave this one as it is, let's make + +530 +00:36:02,610 --> 00:36:05,510 +a comment and run this one Ok, this time I gave + +531 +00:36:05,510 --> 00:36:09,390 +the car a module, and I run it Ok, and what did he + +532 +00:36:09,390 --> 00:36:14,050 +write here? BMW engine with cylinder with valves + +533 +00:36:14,050 --> 00:36:17,090 +of mu and... Yes, we didn't do it, but this is the + +534 +00:36:17,090 --> 00:36:21,410 +thing, that in the cylinderWe made a new variable + +535 +00:36:21,410 --> 00:36:25,230 +which is cylinderSize, but I didn't put it in the + +536 +00:36:25,230 --> 00:36:29,150 +toString to make it look like it was made And + +537 +00:36:29,150 --> 00:36:37,170 +cSize is equal to cylinderSize + +538 +00:36:44,820 --> 00:36:48,500 +and C size is equal to what? 100 let's try it with + +539 +00:36:48,500 --> 00:36:51,500 +something else let's go to the engine did you find + +540 +00:36:51,500 --> 00:36:54,340 +the engine? we have to give it a name for example + +541 +00:36:54,340 --> 00:36:58,720 +string serial + +542 +00:36:58,720 --> 00:37:01,960 +number ok? + +543 +00:37:02,600 --> 00:37:08,500 +and here I have to give it a name string serial + +544 +00:37:08,500 --> 00:37:10,940 +number this + +545 +00:37:15,020 --> 00:37:19,940 +.SerialNumber equals SerialNumber + +546 +00:37:19,940 --> 00:37:22,020 +Of course, since we have modified this class, I + +547 +00:37:22,020 --> 00:37:24,220 +will have an error in two other classes that I + +548 +00:37:24,220 --> 00:37:26,280 +want to implement. When you change the constructor + +549 +00:37:26,280 --> 00:37:30,500 +in + +550 +00:37:30,500 --> 00:37:32,680 +the parent, you have to change the constructor in + +551 +00:37:32,680 --> 00:37:34,280 +the subclass. If you change the constructor in the + +552 +00:37:34,280 --> 00:37:37,700 +subclass, what happens? SerialNumber and Cylinder. + +553 +00:37:38,060 --> 00:37:44,130 +First of all, The constructor must be injected + +554 +00:37:44,130 --> 00:37:46,950 +And what do we do with the serial number? We give + +555 +00:37:46,950 --> 00:37:49,650 +it a name so that we can bind it from the module + +556 +00:37:49,650 --> 00:37:54,970 +So I want to tell it at named Then + +557 +00:37:54,970 --> 00:37:57,710 +it comes and gets it right away It gets the + +558 +00:37:57,710 --> 00:38:00,550 +variable and gives it a name What do we call it? + +559 +00:38:00,650 --> 00:38:03,870 +Serial number, like this + +560 +00:38:10,340 --> 00:38:14,060 +and I will also have to import it from where? from + +561 +00:38:14,060 --> 00:38:20,280 +the mock engine, I don't have a mock engine but + +562 +00:38:20,280 --> 00:38:23,360 +this + +563 +00:38:23,360 --> 00:38:27,800 +constructor I will name it mock engine and this + +564 +00:38:27,800 --> 00:38:28,580 +one I will import + +565 +00:38:33,320 --> 00:38:35,440 +Now that we have given the name of the variable, I + +566 +00:38:35,440 --> 00:38:38,760 +will go to the gate on the car module and do the + +567 +00:38:38,760 --> 00:38:40,960 +binding process because I want to tell the gate, + +568 +00:38:41,060 --> 00:38:47,100 +if not, bind me if I find the string dot class, + +569 +00:38:47,980 --> 00:38:50,900 +the notated with, we have given it a name, the + +570 +00:38:50,900 --> 00:38:57,900 +name is serial number yes, + +571 +00:38:58,020 --> 00:39:02,020 +this needs names dot named names dot named + +572 +00:39:11,710 --> 00:39:16,690 +dot to instance give it one, two, three, four, + +573 +00:39:16,790 --> 00:39:22,210 +five, six of course + +574 +00:39:22,210 --> 00:39:31,550 +to see it we need to change the two strings with c + +575 +00:39:31,550 --> 00:39:34,930 +and serial number + +576 +00:39:42,530 --> 00:39:49,950 +Ok, let's go back and run it This + +577 +00:39:49,950 --> 00:39:55,250 +is the serial number and I added it here So now + +578 +00:39:55,250 --> 00:39:58,090 +the idea is that the car module is what you + +579 +00:39:58,090 --> 00:40:01,590 +control through it So the tester comes and tries + +580 +00:40:01,590 --> 00:40:04,610 +to change only where? In the car module He says + +581 +00:40:04,610 --> 00:40:07,490 +connect to this interface in another class, mock + +582 +00:40:08,360 --> 00:40:10,360 +this variable changes the value and gives it + +583 +00:40:10,360 --> 00:40:13,480 +another value and what else can we do instead of + +584 +00:40:13,480 --> 00:40:17,500 +putting these static values instead of putting + +585 +00:40:17,500 --> 00:40:19,920 +them and changing them from the code we can make + +586 +00:40:19,920 --> 00:40:23,380 +them setter and getter so the char module we put + +587 +00:40:23,380 --> 00:40:33,080 +in string serial number attributes int csize and + +588 +00:40:33,080 --> 00:40:34,700 +make them public you can make them setter and + +589 +00:40:34,700 --> 00:40:38,170 +getter but for the speed I want to make them + +590 +00:40:38,170 --> 00:40:41,750 +public and + +591 +00:40:41,750 --> 00:40:47,750 +here instead of putting 100, here is cSize and + +592 +00:40:47,750 --> 00:40:52,890 +here instead of 1 net, serial number, + +593 +00:40:53,410 --> 00:40:57,040 +I put the variables hereWhy did I do that? On the + +594 +00:40:57,040 --> 00:41:00,480 +basis that in the main method when we created the + +595 +00:41:00,480 --> 00:41:01,880 +car module, not here when we created the car + +596 +00:41:01,880 --> 00:41:06,680 +module go to cm and say dot give it serial number + +597 +00:41:06,680 --> 00:41:18,880 +from 6 to 1 and give it c size for example 55 then + +598 +00:41:18,880 --> 00:41:21,660 +say ish and create an object from it + +599 +00:41:29,890 --> 00:41:30,490 +Yes, + +600 +00:41:34,430 --> 00:41:37,150 +this is the valve, this is the main chamber here. + +601 +00:41:37,870 --> 00:41:41,150 +It has nothing to do with this. The C size is 55 + +602 +00:41:41,150 --> 00:41:47,350 +and the serial number is from 6 to 1. In the last + +603 +00:41:47,350 --> 00:41:49,690 +lecture, we did not use the module because it only + +604 +00:41:49,690 --> 00:41:53,110 +used annotations. I was assuming that each class + +605 +00:41:53,110 --> 00:41:57,370 +has an injectable constructor But if I have an + +606 +00:41:57,370 --> 00:41:58,850 +interface that wants to know what class it wants + +607 +00:41:58,850 --> 00:42:00,750 +to create I have a class that does not have an + +608 +00:42:00,750 --> 00:42:02,610 +injectable constructor and wants to know how to do + +609 +00:42:02,610 --> 00:42:06,410 +it It needs a provider or provide method It has + +610 +00:42:06,410 --> 00:42:09,850 +parameters, arguments for the constructors of + +611 +00:42:09,850 --> 00:42:12,630 +primitive type To know what values ​​we want to + +612 +00:42:12,630 --> 00:42:19,090 +pass All these things need a module Okay guys? And + +613 +00:42:19,090 --> 00:42:23,130 +as I told you, the tester It doesn't go through + +614 +00:42:23,130 --> 00:42:25,870 +the tree or what are the details in it. It just + +615 +00:42:25,870 --> 00:42:28,870 +goes to the module and knows that it wants to run + +616 +00:42:28,870 --> 00:42:32,550 +a test. For example, it finds that the DB + +617 +00:42:32,550 --> 00:42:36,470 +interface is connected to MySQL DB. It goes + +618 +00:42:36,470 --> 00:42:38,850 +directly to the DB interface, implements it, and + +619 +00:42:38,850 --> 00:42:43,290 +puts results in it. This is the interface thread + +620 +00:42:43,290 --> 00:42:45,990 +as well. It shows it what methods it wants to + +621 +00:42:45,990 --> 00:42:48,310 +implement. It puts fake data in it and returns it. + +622 +00:42:48,410 --> 00:42:53,000 +It only changes the binding.It changes the binding + +623 +00:42:53,000 --> 00:42:55,960 +and everyone follows it. This is how testers work. + +624 +00:42:56,100 --> 00:42:59,000 +Testers love dependency injection. + +625 +00:43:00,300 --> 00:43:02,080 +Dependency injection overrides programming. + +626 +00:43:03,520 --> 00:43:05,560 +Testers say to you, I don't have anything to do + +627 +00:43:05,560 --> 00:43:07,680 +with your tree, who uses whom and what they do. + +628 +00:43:08,960 --> 00:43:13,840 +Give me what you owe me and I will change this + +629 +00:43:13,840 --> 00:43:20,140 +step for each interface in another class. Is it + +630 +00:43:20,140 --> 00:43:23,680 +clear, guys? Okay, this is a general idea about + +631 +00:43:23,680 --> 00:43:25,980 +the dependency injection framework. Of course, as + +632 +00:43:25,980 --> 00:43:28,600 +I said, juice may not be used much in the market, + +633 +00:43:29,280 --> 00:43:32,780 +okay? I mean, in Spring, a lot of people use + +634 +00:43:32,780 --> 00:43:35,780 +dependency injection. In Android, we still have + +635 +00:43:35,780 --> 00:43:39,020 +libraries like Dagger and Hilt. Okay? And even on + +636 +00:43:39,020 --> 00:43:42,780 +the web, advanced users have dependency injection, + +637 +00:43:42,900 --> 00:43:45,500 +but their idea is the same. Okay? Almost everyone + +638 \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/1jnY5QWrkaY_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/1jnY5QWrkaY_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..c986bb35e597012c525a3fedcd536403cce6c1f5 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/1jnY5QWrkaY_postprocess.srt @@ -0,0 +1,2552 @@ +1 +00:00:05,420 --> 00:00:06,780 +Okay, in the name of God most merciful most + +2 +00:00:06,780 --> 00:00:09,880 +merciful We will continue today guys in the + +3 +00:00:09,880 --> 00:00:13,740 +subject of dependency injection In the last + +4 +00:00:13,740 --> 00:00:16,180 +lecture, we introduced dependency injection and we + +5 +00:00:16,180 --> 00:00:20,040 +said very briefly When I have an object that + +6 +00:00:20,040 --> 00:00:21,780 +depends on another object, this is what we call + +7 +00:00:21,780 --> 00:00:24,460 +dependency And we said that there are two ways to + +8 +00:00:24,460 --> 00:00:27,800 +achieve this dependency That we create the object + +9 +00:00:27,800 --> 00:00:31,680 +that I need inside the object, okay? Or that we + +10 +00:00:31,680 --> 00:00:33,980 +create the object externally and pass it to the + +11 +00:00:33,980 --> 00:00:38,740 +object that needs it And the best way is to create + +12 +00:00:38,740 --> 00:00:40,620 +the object externally and pass it through And this + +13 +00:00:40,620 --> 00:00:44,960 +is what is called dependency injection Why is it + +14 +00:00:44,960 --> 00:00:47,860 +better? Because you have the freedom to change the + +15 +00:00:47,860 --> 00:00:51,680 +dependency You can make it extend, change what it + +16 +00:00:51,680 --> 00:00:55,140 +does, make it mocking, I explained last time how + +17 +00:00:55,140 --> 00:00:58,900 +testing works For example, I have a user interface + +18 +00:00:58,900 --> 00:01:01,060 +The user interface depends on the connection to + +19 +00:01:01,060 --> 00:01:04,190 +the database and methods to the databaseIt has a + +20 +00:01:04,190 --> 00:01:06,690 +dependency which is the class that connects to the + +21 +00:01:06,690 --> 00:01:12,070 +database If I want to try the user interface on + +22 +00:01:12,070 --> 00:01:16,790 +the database, I can extend the database class and + +23 +00:01:16,790 --> 00:01:20,210 +put mochas in it. For example, the method + +24 +00:01:23,870 --> 00:01:28,650 +For example, I have a UI. The UI needs methods to + +25 +00:01:28,650 --> 00:01:30,850 +make a connection to the database to get data and + +26 +00:01:30,850 --> 00:01:34,390 +upload it to the UI. If we assume that this is an + +27 +00:01:34,390 --> 00:01:39,200 +interface called DBI There are methods called + +28 +00:01:39,200 --> 00:01:43,220 +getStudentById, getAllStudents, insertStudent, + +29 +00:01:43,660 --> 00:01:46,080 +this is an interface. Why did I design an + +30 +00:01:46,080 --> 00:01:50,140 +interface? To make it implement more than + +31 +00:01:50,140 --> 00:01:56,580 +implementation. For example, I have MySQL DB. I + +32 +00:01:56,580 --> 00:02:00,080 +want to make the same methods implementation. And + +33 +00:02:00,080 --> 00:02:04,720 +I put queries suitable to whom? To MySQL. Because + +34 +00:02:04,720 --> 00:02:10,010 +actually IThe UI needs an object from the DB + +35 +00:02:10,010 --> 00:02:11,870 +interface. Of course, I will not be able to create + +36 +00:02:11,870 --> 00:02:13,830 +an object from the interface. Of course, I must + +37 +00:02:13,830 --> 00:02:16,530 +create an object from the class that implements + +38 +00:02:16,530 --> 00:02:23,690 +the interface. So now I can create a new MySQLDB + +39 +00:02:23,690 --> 00:02:31,120 +and pass it to the UI.It's a new UI and it takes + +40 +00:02:31,120 --> 00:02:33,780 +the constructor of an object from MySQL DB The + +41 +00:02:33,780 --> 00:02:38,400 +dependency was created from outside The tester + +42 +00:02:38,400 --> 00:02:42,340 +wants to try the new UI away from the database and + +43 +00:02:42,340 --> 00:02:43,820 +its operations For example, the database is not + +44 +00:02:43,820 --> 00:02:47,080 +ready yet So I go to the interface and implement + +45 +00:02:47,080 --> 00:02:51,700 +something called mockDB And of course I implement + +46 +00:02:51,700 --> 00:02:54,280 +the same methods that are in the interface But I + +47 +00:02:54,280 --> 00:02:58,510 +put fake dataInstead of getting all students, I + +48 +00:02:58,510 --> 00:03:03,850 +return a list with static data. All I have to do + +49 +00:03:03,850 --> 00:03:06,510 +is when I launch the UI, instead of returning the + +50 +00:03:06,510 --> 00:03:10,990 +actual object which is mySQLDB, I return the + +51 +00:03:10,990 --> 00:03:11,450 +mockDB. + +52 +00:03:15,500 --> 00:03:20,380 +This is called Dependency Injection. It allows me + +53 +00:03:20,380 --> 00:03:24,020 +to remove an object and replace it with another + +54 +00:03:24,020 --> 00:03:26,460 +object to change the dependency. + +55 +00:03:29,580 --> 00:03:32,460 +The goal of Dependency Injection is good because + +56 +00:03:32,460 --> 00:03:35,540 +it gives me flexibility, but the problem is that + +57 +00:03:35,540 --> 00:03:37,580 +creating the object becomes more difficult, + +58 +00:03:37,740 --> 00:03:39,560 +especially if my dependency is continuous, + +59 +00:03:40,140 --> 00:03:41,880 +something needs something and something needs + +60 +00:03:41,880 --> 00:03:44,220 +something else and so on, creating the object + +61 +00:03:44,220 --> 00:03:46,360 +becomes more difficult, so that's why they made + +62 +00:03:46,360 --> 00:03:50,580 +dependency injection frameworks Its purpose is to + +63 +00:03:50,580 --> 00:03:52,920 +make it easier for you to create objects that have + +64 +00:03:52,920 --> 00:03:56,520 +many dependencies by using libraries, especially + +65 +00:03:56,520 --> 00:04:00,400 +if they use the Reflection API to create objects. + +66 +00:04:00,720 --> 00:04:02,580 +We mentioned in the previous lecture that + +67 +00:04:02,580 --> 00:04:04,780 +dependency injection frameworks have become + +68 +00:04:04,780 --> 00:04:07,960 +popular these days and are used in various + +69 +00:04:07,960 --> 00:04:13,200 +systems. We tried one of the dependency injection + +70 +00:04:13,200 --> 00:04:17,840 +libraries, which is called Juice.We saw an example + +71 +00:04:17,840 --> 00:04:22,180 +that if I have a car, the car needs an engine and + +72 +00:04:22,180 --> 00:04:25,220 +a wheel, the engine needs a cylinder, the cylinder + +73 +00:04:25,220 --> 00:04:29,400 +needs a valve, and the wheel needs a tire. So, in + +74 +00:04:29,400 --> 00:04:33,020 +order to create an object from a car, I had to go + +75 +00:04:33,020 --> 00:04:36,060 +through these processes, right? These are the + +76 +00:04:36,060 --> 00:04:38,240 +steps I used to do when I was creating a car. Now, + +77 +00:04:38,740 --> 00:04:41,840 +I started to create it through a line, a straight + +78 +00:04:41,840 --> 00:04:45,310 +line like this. Of course, how did we do it? All + +79 +00:04:45,310 --> 00:04:49,050 +you have to do is go to constructors and put + +80 +00:04:49,050 --> 00:04:52,790 +annotation called inject, okay? And that's it, it + +81 +00:04:52,790 --> 00:04:55,990 +executes this line that says juice create injector + +82 +00:04:55,990 --> 00:05:00,330 +get instance car.class and the injector itself + +83 +00:05:00,330 --> 00:05:03,130 +sees the tree, for example, it goes to the car, it + +84 +00:05:03,130 --> 00:05:08,950 +searches for this annotation, inject. This is + +85 +00:05:08,950 --> 00:05:10,830 +inject, it goes to the car. What does the car need + +86 +00:05:10,830 --> 00:05:14,870 +to start? Engine wheel.It enters the engine and + +87 +00:05:14,870 --> 00:05:18,550 +what does the engine need? A cylinder. It builds + +88 +00:05:18,550 --> 00:05:21,670 +the dependencies and then builds the object itself + +89 +00:05:21,670 --> 00:05:25,530 +until it reaches the car. This process is done by + +90 +00:05:25,530 --> 00:05:28,430 +itself. We tried it in the previous lecture, but + +91 +00:05:28,430 --> 00:05:32,610 +we still haven't tried all the cases. Because + +92 +00:05:32,610 --> 00:05:36,750 +there are certain cases, for example, if I use an + +93 +00:05:36,750 --> 00:05:39,460 +external library. In this case, I will not be able + +94 +00:05:39,460 --> 00:05:42,300 +to put at inject Right or not guys? Because I + +95 +00:05:42,300 --> 00:05:45,080 +don't have the code So let's see how to solve this + +96 +00:05:45,080 --> 00:05:47,820 +problem Another case is that I'm learning with + +97 +00:05:47,820 --> 00:05:52,100 +interface So if we assume for example that the + +98 +00:05:52,100 --> 00:05:54,600 +wire or the engine is an interface or abstract + +99 +00:05:54,600 --> 00:05:58,980 +class Okay, interface, for example, let's try it + +100 +00:05:58,980 --> 00:06:00,980 +Go to the wire and tell it, we don't want to make + +101 +00:06:00,980 --> 00:06:05,420 +it class, I want to call it interface That's it, I + +102 +00:06:05,420 --> 00:06:08,590 +changed it from class to interface And I told him + +103 +00:06:08,590 --> 00:06:14,190 +to make me a car. He ran and made an error. Why? I + +104 +00:06:14,190 --> 00:06:17,110 +told him that there was no implementation for the + +105 +00:06:17,110 --> 00:06:19,510 +tire that was bound. He did not find an + +106 +00:06:19,510 --> 00:06:24,110 +implementation for the tire. The tire is where he + +107 +00:06:24,110 --> 00:06:26,590 +needs it. From inside the wheel. Right or wrong? + +108 +00:06:26,610 --> 00:06:28,690 +He wanted to extract an object from the tire. He + +109 +00:06:28,690 --> 00:06:30,270 +found an interface. An interface cannot be + +110 +00:06:30,270 --> 00:06:33,850 +extracted from an object. So how do we deal if I + +111 +00:06:33,850 --> 00:06:37,440 +have an interface or abstract class?Another thing, + +112 +00:06:39,480 --> 00:06:43,420 +if the object takes primitive type parameters, for + +113 +00:06:43,420 --> 00:06:47,480 +example if the engine takes cylinder, right or + +114 +00:06:47,480 --> 00:06:50,020 +wrong, but if it takes integer, power, + +115 +00:06:52,950 --> 00:06:54,830 +How will it deal with the primitive type? What is + +116 +00:06:54,830 --> 00:06:58,170 +the class type? We say that we inject it to create + +117 +00:06:58,170 --> 00:07:00,250 +an object. As for the primitive type, this is a + +118 +00:07:00,250 --> 00:07:02,710 +value that must pass through the constructor to + +119 +00:07:02,710 --> 00:07:06,150 +create an object. How will we deal with this? This + +120 +00:07:06,150 --> 00:07:09,310 +is what we see in this lecture, that some things + +121 +00:07:09,310 --> 00:07:11,810 +are a bit advanced in the subject of Dependency + +122 +00:07:11,810 --> 00:07:15,610 +Injection. Let's start with the first part. If we + +123 +00:07:15,610 --> 00:07:19,530 +say that I have an interface called tire, because + +124 +00:07:19,530 --> 00:07:21,090 +it certainly will not be able to create a car. + +125 +00:07:21,890 --> 00:07:25,390 +What does it require now? It requires any class to + +126 +00:07:25,390 --> 00:07:30,390 +implement to whom? To the thread So if we assume + +127 +00:07:30,390 --> 00:07:32,530 +that I have two classes that implement to the + +128 +00:07:32,530 --> 00:07:34,590 +thread For example, I want to tell it here, large + +129 +00:07:34,590 --> 00:07:43,690 +thread And + +130 +00:07:43,690 --> 00:07:45,170 +I want to tell it here, for the experiment + +131 +00:07:54,730 --> 00:08:11,030 +and this is another class and + +132 +00:08:11,030 --> 00:08:12,390 +this one also but I want to implement + +133 +00:08:23,110 --> 00:08:27,410 +Okay, now when I create the object car, I have to + +134 +00:08:27,410 --> 00:08:30,970 +specify what class it will create. I have two + +135 +00:08:30,970 --> 00:08:34,510 +classes that I implement for a plane. It has to + +136 +00:08:34,510 --> 00:08:37,610 +create either a large plane or a small plane. So I + +137 +00:08:37,610 --> 00:08:39,210 +want to tell it, as a programmer, I want to tell + +138 +00:08:39,210 --> 00:08:42,310 +it which one of the two it will use. How are we + +139 +00:08:42,310 --> 00:08:44,270 +going to tell it this? Now we want to add a new + +140 +00:08:44,270 --> 00:08:48,320 +class.through which we direct instructions or + +141 +00:08:48,320 --> 00:08:51,460 +instructions to the injector what to do in cases + +142 +00:08:51,460 --> 00:08:53,620 +where he does not know how to act in them, that + +143 +00:08:53,620 --> 00:08:56,180 +is, he is in the normal state to build the tree, + +144 +00:08:56,340 --> 00:08:59,140 +it is affecting the amount injected, there are + +145 +00:08:59,140 --> 00:09:00,880 +cases in which the amount injected will not work, + +146 +00:09:01,220 --> 00:09:03,120 +like what, like this case where I have an + +147 +00:09:03,120 --> 00:09:08,240 +interface, in this case, we ask him what to do if + +148 +00:09:08,240 --> 00:09:09,320 +he is in a situation where he does not know how to + +149 +00:09:09,320 --> 00:09:12,360 +act in them, like this case, so to solve this + +150 +00:09:12,360 --> 00:09:16,700 +problem, we go and make a classOf course, how do + +151 +00:09:16,700 --> 00:09:18,400 +we direct these instructions to him? He says, if + +152 +00:09:18,400 --> 00:09:22,980 +you want to give me, it's all in all, the + +153 +00:09:22,980 --> 00:09:26,140 +injector, okay? For the injector to drink, he + +154 +00:09:26,140 --> 00:09:29,260 +says, if you want to pass me instructions, I have + +155 +00:09:29,260 --> 00:09:32,540 +provided a constructor here called create + +156 +00:09:32,540 --> 00:09:39,090 +injector, which takes an object called module. He + +157 +00:09:39,090 --> 00:09:42,090 +told me to make instructions in a class called + +158 +00:09:42,090 --> 00:09:47,130 +Module and pass it to me in this method So now + +159 +00:09:47,130 --> 00:09:49,010 +this is still the method, we haven't passed + +160 +00:09:49,010 --> 00:09:53,890 +anything to it yet So we create the module So I + +161 +00:09:53,890 --> 00:09:55,950 +went and made a class, you can call it Car Module + +162 +00:09:55,950 --> 00:09:59,670 +As + +163 +00:09:59,670 --> 00:10:02,090 +long as he wants a module with him, he has a class + +164 +00:10:02,090 --> 00:10:06,130 +called Abstract Module He made it in the library + +165 +00:10:08,430 --> 00:10:10,790 +Why did I make it Extend Abstract Module? So that + +166 +00:10:10,790 --> 00:10:13,550 +I can pass it to the injector. The injector needs + +167 +00:10:13,550 --> 00:10:16,390 +an object of module type. This abstract module is + +168 +00:10:16,390 --> 00:10:19,970 +of module type. And now, from inside it, I make an + +169 +00:10:19,970 --> 00:10:22,130 +implement or override to a method called + +170 +00:10:22,130 --> 00:10:27,310 +configure. What is configure? It's like a set of + +171 +00:10:27,310 --> 00:10:30,650 +numbers. I make a set of numbers. Okay? Here now, + +172 +00:10:30,710 --> 00:10:32,990 +in the method configure, we direct instructions to + +173 +00:10:32,990 --> 00:10:37,660 +it. We say the following, this dot bind.What is + +174 +00:10:37,660 --> 00:10:43,080 +the word bind? Urbot. Okay? If I go to the tier + +175 +00:10:43,080 --> 00:10:55,240 +dot class, I connect it to large tier dot + +176 +00:10:55,240 --> 00:10:58,800 +class. That's it. So where is the problem, guys? + +177 +00:10:59,020 --> 00:11:01,520 +The tier is the interface.He wants to create + +178 +00:11:01,520 --> 00:11:03,180 +something, but he doesn't know how to deal with + +179 +00:11:03,180 --> 00:11:07,000 +it. So he goes back to the car module, to the + +180 +00:11:07,000 --> 00:11:09,700 +configurator, and executes it. So he knows that if + +181 +00:11:09,700 --> 00:11:14,000 +there is no current, what will happen? There is no + +182 +00:11:14,000 --> 00:11:17,460 +current. So we are done. Did we use this module? + +183 +00:11:17,620 --> 00:11:20,480 +Did we create an object from it? No. Where are we + +184 +00:11:20,480 --> 00:11:24,640 +going to use it? Here in the injector. Here I want + +185 +00:11:24,640 --> 00:11:29,400 +to create an object from it. Car module, new car + +186 +00:11:29,400 --> 00:11:33,180 +module. And here in the injector, what does it do? + +187 +00:11:34,060 --> 00:11:37,240 +It reruns it, see? So now our injector has been + +188 +00:11:37,240 --> 00:11:41,540 +rerun by a module. So why didn't we rerun it + +189 +00:11:41,540 --> 00:11:43,900 +before? Because it didn't need information. It + +190 +00:11:43,900 --> 00:11:45,500 +would go and rely on the injector and it would + +191 +00:11:45,500 --> 00:11:47,480 +run. But now the situation is different. There is + +192 +00:11:47,480 --> 00:11:51,720 +missing information. It reruns it through the + +193 +00:11:51,720 --> 00:11:58,600 +module. Because if I run it, it will work. And + +194 +00:11:58,600 --> 00:12:05,260 +look at what it did to me.and the large type. How + +195 +00:12:05,260 --> 00:12:07,080 +do we control and change the class? Here, for + +196 +00:12:07,080 --> 00:12:08,280 +example, I want to change it. What do you put + +197 +00:12:08,280 --> 00:12:09,100 +instead of large? + +198 +00:12:12,200 --> 00:12:16,680 +Small module. Small type. Let me see. That's it. + +199 +00:12:28,020 --> 00:12:32,240 +Ok, this is what Smolter wrote Another example on + +200 +00:12:32,240 --> 00:12:35,340 +the topic of the interface and abstract class Go + +201 +00:12:35,340 --> 00:12:40,440 +to the class engine I will leave the engine blank + +202 +00:12:40,440 --> 00:12:45,280 +Abstract class As soon as it becomes abstract too + +203 +00:12:45,280 --> 00:12:50,800 +And I go and tell it to make object from car It + +204 +00:12:50,800 --> 00:12:55,020 +also made an error Wait a second What error did it + +205 +00:12:55,020 --> 00:13:00,580 +make? Missing implementation No implementation for + +206 +00:13:00,580 --> 00:13:03,500 +what? For engine. He can't create an object from + +207 +00:13:03,500 --> 00:13:06,840 +an abstract class. So I'm going to tell him to + +208 +00:13:06,840 --> 00:13:21,580 +create a class called BMWEngine Where + +209 +00:13:21,580 --> 00:13:21,840 +did it go? + +210 +00:13:25,860 --> 00:13:28,260 +Okay, this is the class BMW, we will also make it + +211 +00:13:28,260 --> 00:13:33,220 +extends engine + +212 +00:13:33,220 --> 00:13:35,740 +As soon as it makes extend, it will bring a line + +213 +00:13:35,740 --> 00:13:39,680 +to implement to whom? To the constructor As long + +214 +00:13:39,680 --> 00:13:41,220 +as this has constructor, what should this do? + +215 +00:13:43,100 --> 00:13:43,460 +inject + +216 +00:13:47,360 --> 00:13:49,340 +Did you find the inject in the engine? It is no + +217 +00:13:49,340 --> 00:13:52,800 +longer useful. Why? Because it will not create an + +218 +00:13:52,800 --> 00:13:55,160 +object from the engine at all. Right? This inject + +219 +00:13:55,160 --> 00:13:59,840 +remains. If you leave it, it is not a problem. But + +220 +00:13:59,840 --> 00:14:03,680 +this must be put in it at inject. And we want to + +221 +00:14:03,680 --> 00:14:07,600 +come here and make an override to whom? To string + +222 +00:14:07,600 --> 00:14:11,700 +to say BMW + +223 +00:14:11,700 --> 00:14:17,020 +engine with + +224 +00:14:18,890 --> 00:14:25,350 +C, which is its cylinder Ok, + +225 +00:14:25,710 --> 00:14:27,950 +until now it will not work I did not tell it that + +226 +00:14:27,950 --> 00:14:31,650 +if I find engine Create BMW engine So this is what + +227 +00:14:31,650 --> 00:14:34,830 +we will do In the car module, we will do binding + +228 +00:14:34,830 --> 00:14:37,910 +again In the configure, we will also tell it bind + +229 +00:14:37,910 --> 00:14:46,970 +That if I find engine Dot class Go and bind to BMW + +230 +00:14:46,970 --> 00:14:57,650 +engine dot class and + +231 +00:14:57,650 --> 00:15:01,130 +this is run and what did it do? it wrote BMW + +232 +00:15:01,130 --> 00:15:03,070 +engine + +233 +00:15:06,780 --> 00:15:10,100 +If I had an interface in my tree, an interface or + +234 +00:15:10,100 --> 00:15:12,180 +abstract class, you have to create a module to + +235 +00:15:12,180 --> 00:15:15,360 +define the binding, what connects this interface + +236 +00:15:15,360 --> 00:15:19,140 +or abstract class to a concrete class. And this is + +237 +00:15:19,140 --> 00:15:20,780 +done inside the module in a method called + +238 +00:15:20,780 --> 00:15:24,380 +configure. What I see is that if a tester comes, + +239 +00:15:25,840 --> 00:15:28,800 +like this example, for example, I have a UI + +240 +00:15:28,800 --> 00:15:31,760 +connected to a database. He wants to put a Mock. + +241 +00:15:32,560 --> 00:15:36,100 +DB. Or here for example in our example, instead of + +242 +00:15:36,100 --> 00:15:38,940 +the real tire, we put a mock tire. And instead of + +243 +00:15:38,940 --> 00:15:41,840 +the real engine, the BMW engine, we put what? Yes, + +244 +00:15:42,180 --> 00:15:44,680 +a mock engine. See why? I will change only the + +245 +00:15:44,680 --> 00:15:45,980 +testers that work on the left and the relationship + +246 +00:15:45,980 --> 00:15:49,800 +in the whole tree. Yes, I have a module. Who do I + +247 +00:15:49,800 --> 00:15:54,350 +want to change?These ones. That's it. Okay? It + +248 +00:15:54,350 --> 00:15:57,330 +won't even change the main class and program. It + +249 +00:15:57,330 --> 00:16:01,130 +will create a new class and name it mock module + +250 +00:16:01,130 --> 00:16:06,830 +for testing. Okay? Mock module. I want to say + +251 +00:16:06,830 --> 00:16:11,650 +extends car module. So where do I want to change? + +252 +00:16:12,850 --> 00:16:18,190 +In the main car module. And I want to say what? + +253 +00:16:18,530 --> 00:16:22,660 +Configure. this is the method configure that I + +254 +00:16:22,660 --> 00:16:25,380 +have and I want to tell you guys to change only + +255 +00:16:25,380 --> 00:16:30,140 +one thing the binding that I have that if I find + +256 +00:16:30,140 --> 00:16:37,900 +tire.class connect it to who? to mock tire.class + +257 +00:16:37,900 --> 00:16:47,020 +and if I find bind engine connect + +258 +00:16:47,020 --> 00:16:47,500 +it to + +259 +00:16:50,480 --> 00:16:54,820 +mock engine dot + +260 +00:16:54,820 --> 00:16:58,280 +class of course these are not yet available so + +261 +00:16:58,280 --> 00:17:05,380 +let's do them quickly this is mock tire and + +262 +00:17:05,380 --> 00:17:08,560 +here is the to string and I want to say return + +263 +00:17:08,560 --> 00:17:14,080 +mock + +264 +00:17:14,080 --> 00:17:17,100 +tire and this is mock engine + +265 +00:17:33,570 --> 00:17:45,590 +this also need inject and + +266 +00:17:45,590 --> 00:17:52,890 +here I have mock engine with + +267 +00:17:52,890 --> 00:17:56,810 +with + +268 +00:17:56,810 --> 00:18:03,870 +c Ok, this is the mock module What's in the mock + +269 +00:18:03,870 --> 00:18:11,390 +file? I made a mock file Yes This needs to be + +270 +00:18:11,390 --> 00:18:20,190 +implemented Ok, + +271 +00:18:20,250 --> 00:18:28,850 +and this is the mock module Now in the mainThis is + +272 +00:18:28,850 --> 00:18:32,170 +the basic code, right? I want to try to leave this + +273 +00:18:32,170 --> 00:18:35,650 +line Instead + +274 +00:18:35,650 --> 00:18:38,990 +of here car module, I want to tell him new mock + +275 +00:18:38,990 --> 00:18:42,350 +module, which means what we did between the two + +276 +00:18:42,350 --> 00:18:48,050 +lines, right away Okay, and I do run, and I get + +277 +00:18:48,050 --> 00:18:48,790 +the error, why? + +278 +00:19:09,590 --> 00:19:12,190 +طيب ليش مقتر؟ + +279 +00:19:46,720 --> 00:19:50,900 +What will change? Nothing. Ok, what did he write + +280 +00:19:50,900 --> 00:19:54,360 +here? With a conditional. So now the tester, guys, + +281 +00:19:54,780 --> 00:19:56,900 +everything he needs to do, you see what he does? + +282 +00:19:57,820 --> 00:19:59,420 +He changes, he says, I swear to God, this + +283 +00:19:59,420 --> 00:20:03,460 +interface is linked to what? To the new class. He + +284 +00:20:03,460 --> 00:20:05,000 +does not play with the tree at all, he changes + +285 +00:20:05,000 --> 00:20:07,400 +from here. He decides what to change instead of + +286 +00:20:07,400 --> 00:20:11,960 +what. Fine?Okay, so we saw how to deal with the + +287 +00:20:11,960 --> 00:20:14,380 +interface or the abstract class, it is necessary + +288 +00:20:14,380 --> 00:20:19,680 +to do binding inside the module Let's come to the + +289 +00:20:19,680 --> 00:20:21,640 +second point, suppose I'm dealing with a library + +290 +00:20:22,470 --> 00:20:27,810 +Externally, okay? I mean, for example, to try this + +291 +00:20:27,810 --> 00:20:31,550 +example, we come to the class Valvehead, okay? + +292 +00:20:31,550 --> 00:20:35,630 +Let's assume, for example, that it has a variable + +293 +00:20:35,630 --> 00:20:40,890 +called ValveSize, okay? And it has a public + +294 +00:20:40,890 --> 00:20:50,630 +constructor ValveIntValveSize + +295 +00:21:01,840 --> 00:21:04,420 +Because in order for the program to work, the + +296 +00:21:04,420 --> 00:21:09,560 +constructor must do at inject Right guys? But + +297 +00:21:09,560 --> 00:21:12,700 +let's assume that this is a library and I don't + +298 +00:21:12,700 --> 00:21:18,320 +know its code You don't have access to the valve + +299 +00:21:18,320 --> 00:21:22,800 +But at the same time, the cylinder needs an object + +300 +00:21:22,800 --> 00:21:28,140 +from the valve in order to work In this case, if + +301 +00:21:28,140 --> 00:21:28,700 +you run + +302 +00:21:34,900 --> 00:21:37,360 +It will give you an error and it will explain to + +303 +00:21:37,360 --> 00:21:39,240 +you what the error is. What does it say? No + +304 +00:21:39,240 --> 00:21:42,580 +injectable constructor for valve. It means that + +305 +00:21:42,580 --> 00:21:46,120 +there is no constructor to inject on it to know + +306 +00:21:46,120 --> 00:21:50,860 +what to do. Okay? And at the same time, I can't go + +307 +00:21:50,860 --> 00:21:53,500 +to the valve and tell it to inject because the + +308 +00:21:53,500 --> 00:21:56,640 +code of the valve is not available with me. So + +309 +00:21:56,640 --> 00:21:58,600 +what is the solution to this problem? The solution + +310 +00:21:58,600 --> 00:22:03,000 +is to go back to whom? To the module.The module is + +311 +00:22:03,000 --> 00:22:07,240 +the solution if it can't act. It always goes back + +312 +00:22:07,240 --> 00:22:10,000 +to the module. That's why the first time we + +313 +00:22:10,000 --> 00:22:11,820 +worked, we didn't use a module because everything + +314 +00:22:11,820 --> 00:22:16,360 +had inject. So let's go to the module. Let's go + +315 +00:22:16,360 --> 00:22:19,840 +back to the core module, our basis. This is the + +316 +00:22:19,840 --> 00:22:22,820 +core module. You see, I want to add something + +317 +00:22:22,820 --> 00:22:26,920 +here. Because it tells me the things that I can't + +318 +00:22:26,920 --> 00:22:29,700 +create because you can't inject them, let the + +319 +00:22:29,700 --> 00:22:34,060 +module do it.How? You go and create a method + +320 +00:22:34,060 --> 00:22:37,780 +because it wants Valve, right or wrong? Create a + +321 +00:22:37,780 --> 00:22:40,960 +method to return Valve to you. Name it whatever + +322 +00:22:40,960 --> 00:22:43,240 +you want, getValve. Importantly, what should it + +323 +00:22:43,240 --> 00:22:49,480 +return? Its return type. Valve. Because here you + +324 +00:22:49,480 --> 00:22:53,540 +run the object whatever you want, through the U. + +325 +00:22:54,990 --> 00:22:58,590 +means that this valve will not allow itself to + +326 +00:22:58,590 --> 00:23:02,210 +generate it you will have to generate it because + +327 +00:23:02,210 --> 00:23:06,170 +you will not be able to put the inject as if I say + +328 +00:23:06,170 --> 00:23:09,710 +to him if you find a valve, go and learn the + +329 +00:23:09,710 --> 00:23:13,170 +method of generating a valve and here you generate + +330 +00:23:13,170 --> 00:23:15,430 +the object yourself as a programmer you determine + +331 +00:23:15,430 --> 00:23:16,630 +how to generate the object because it is an + +332 +00:23:16,630 --> 00:23:18,670 +external library and here you pass it for example + +333 +00:23:18,670 --> 00:23:23,570 +5, I don't want to generate this valve And then + +334 +00:23:23,570 --> 00:23:26,230 +you come to this terminal and you tag it with + +335 +00:23:26,230 --> 00:23:33,410 +something called provides Now, + +336 +00:23:33,550 --> 00:23:35,850 +what is this provides? Okay, pay attention to me + +337 +00:23:35,850 --> 00:23:39,290 +guys, this gate comes to work and at the moment it + +338 +00:23:39,290 --> 00:23:42,150 +wants to create a cylinder in it The cylinder + +339 +00:23:42,150 --> 00:23:46,790 +needs what? Valve To create the valve now, it will + +340 +00:23:46,790 --> 00:23:49,250 +go to the valve and search for a constructor in it + +341 +00:23:49,250 --> 00:23:52,490 +atat inject, he will not find it, it will enter + +342 +00:23:52,490 --> 00:23:55,370 +inside the valve, because it has the class, but it + +343 +00:23:55,370 --> 00:24:00,030 +does not have the code, okay? The constructor will + +344 +00:24:00,030 --> 00:24:02,590 +not find it at inject. So what does it do? It asks + +345 +00:24:02,590 --> 00:24:06,270 +again who? The module. Automatically, if there is + +346 +00:24:06,270 --> 00:24:07,670 +a class that does not know how to create it, it + +347 +00:24:07,670 --> 00:24:11,870 +searches for the tags with its nameprovides for + +348 +00:24:11,870 --> 00:24:14,930 +himself, what is the word provide? provides for + +349 +00:24:14,930 --> 00:24:18,970 +himself, + +350 +00:24:18,970 --> 00:24:22,970 +what is the word provide? provides for himself, + +351 +00:24:22,970 --> 00:24:23,130 +what is the word provide? provides for himself, + +352 +00:24:23,130 --> 00:24:23,170 +what is the word provide? provides for himself, + +353 +00:24:23,170 --> 00:24:23,210 +what is the word provide? provides for himself, + +354 +00:24:23,210 --> 00:24:23,410 +what is the word provide? provides for himself, + +355 +00:24:23,410 --> 00:24:23,490 +what is the word provide? provides for himself, + +356 +00:24:23,490 --> 00:24:25,730 +what is the word provide? provides for himself, + +357 +00:24:26,090 --> 00:24:35,010 +what is the word provide? provides for + +358 +00:24:35,010 --> 00:24:41,480 +himself, what is theIt's a method to retrieve the + +359 +00:24:41,480 --> 00:24:44,100 +type of object that I need from the library and + +360 +00:24:44,100 --> 00:24:46,720 +it's called TaggingProvides. So let's say I don't + +361 +00:24:46,720 --> 00:24:50,180 +know how to create a valve, I search for a method + +362 +00:24:50,180 --> 00:24:53,900 +called TaggingProvides and it retrieves a valve. + +363 +00:24:54,260 --> 00:24:57,120 +Who found it? This method found it and asked for + +364 +00:24:57,120 --> 00:25:00,880 +it. Okay? Of course, this is not what we want to + +365 +00:25:00,880 --> 00:25:03,120 +do. We want to go to the pulp, which is called + +366 +00:25:03,120 --> 00:25:05,880 +ValveSize. Okay? Of Size. + +367 +00:25:10,190 --> 00:25:12,150 +this.valveSize This is just to show that it + +368 +00:25:12,150 --> 00:25:17,070 +matches with the print So the idea is that + +369 +00:25:17,070 --> 00:25:18,770 +whenever it gets confused and doesn't know what to + +370 +00:25:18,770 --> 00:25:22,530 +create or what to do, it goes back to the module, + +371 +00:25:22,610 --> 00:25:26,750 +okay? At first, it looks at the configurator to + +372 +00:25:26,750 --> 00:25:28,570 +know, for example, what is the use of this + +373 +00:25:28,570 --> 00:25:29,730 +configurator? If there is an interface that is in + +374 +00:25:29,730 --> 00:25:31,370 +the second class, I connect it to the actual + +375 +00:25:31,370 --> 00:25:34,380 +class, the concrete classAlso, if there is a class + +376 +00:25:34,380 --> 00:25:35,920 +that does not know how to generate objects from it + +377 +00:25:35,920 --> 00:25:37,840 +because it does not have an injectable + +378 +00:25:37,840 --> 00:25:41,440 +constructor, it searches for a method that + +379 +00:25:41,440 --> 00:25:43,460 +provides so that it can generate objects from it. + +380 +00:25:44,400 --> 00:25:48,620 +For example, it will find newValve5 and so on. It + +381 +00:25:48,620 --> 00:25:53,260 +will return to run. I am currently sitting in the + +382 +00:25:53,260 --> 00:25:55,640 +car module and here I am not using the mock + +383 +00:25:55,640 --> 00:25:59,380 +module. Does it work? yes it works because the + +384 +00:25:59,380 --> 00:26:03,180 +module did x2 to whom? to the car module so the + +385 +00:26:03,180 --> 00:26:05,880 +code will stay with it it worked it will respond + +386 +00:26:05,880 --> 00:26:10,660 +to what? with cylinder with valve of size 5 so it + +387 +00:26:10,660 --> 00:26:14,840 +worked what? it worked perfectly the point is if + +388 +00:26:14,840 --> 00:26:18,020 +there is an external library that needs it this + +389 +00:26:18,020 --> 00:26:21,840 +needs a method provides okay? + +390 +00:26:24,090 --> 00:26:29,270 +There is another way to do it. Let's say I use 5 + +391 +00:26:29,270 --> 00:26:34,090 +or 6 offices. How many methods do I have? 5 or 6 + +392 +00:26:34,090 --> 00:26:38,050 +methods. So the car module increases. So if you + +393 +00:26:38,050 --> 00:26:41,190 +don't want to put everything in this class, you + +394 +00:26:41,190 --> 00:26:47,470 +can do something called provider class. Why do we + +395 +00:26:47,470 --> 00:26:52,010 +need valve? We call it valve provider. What is the + +396 +00:26:52,010 --> 00:26:54,880 +name of this provider?The supplier of the valve. + +397 +00:26:55,160 --> 00:26:57,040 +He tells you to make an implementation for an + +398 +00:26:57,040 --> 00:27:02,560 +interface called Provider that returns a valve. + +399 +00:27:09,230 --> 00:27:11,090 +I made an implement for the interface, so it asked + +400 +00:27:11,090 --> 00:27:13,590 +me to make an implement for the methods that are + +401 +00:27:13,590 --> 00:27:16,130 +inside the interface and it will bring a method + +402 +00:27:16,130 --> 00:27:21,050 +called what? gate return valve here I put almost + +403 +00:27:21,050 --> 00:27:28,050 +the same code which is return new valve 77 for + +404 +00:27:28,050 --> 00:27:32,830 +example because I made the valve provider but I + +405 +00:27:32,830 --> 00:27:35,570 +didn't use it right or not guys? where should I + +406 +00:27:35,570 --> 00:27:39,360 +use it? we have to go back to the car module As + +407 +00:27:39,360 --> 00:27:42,100 +long as I created a provider, this code doesn't + +408 +00:27:42,100 --> 00:27:46,880 +belong to it. But instead, I will go to the + +409 +00:27:46,880 --> 00:27:55,940 +configurator and bind it. If you + +410 +00:27:55,940 --> 00:28:01,460 +need valve.class, connect it to it or go to the + +411 +00:28:01,460 --> 00:28:06,860 +provider, which is called ValveProvider + +412 +00:28:10,770 --> 00:28:13,270 +So if you find a valve, go and use the valve + +413 +00:28:13,270 --> 00:28:18,270 +provider. And the valve provider will find a + +414 +00:28:18,270 --> 00:28:21,470 +method that returns the valve. Someone will say, + +415 +00:28:21,570 --> 00:28:23,510 +what is it? No, the difference is that we took the + +416 +00:28:23,510 --> 00:28:28,830 +code out. in an external class and we can extend + +417 +00:28:28,830 --> 00:28:35,050 +it this way it becomes better as extendable it's + +418 +00:28:35,050 --> 00:28:40,030 +true that I created a new class but you can still + +419 +00:28:40,030 --> 00:28:43,390 +extend it or it's also the idea that I don't put + +420 +00:28:43,390 --> 00:28:47,750 +everything inside the car module so if I have an + +421 +00:28:47,750 --> 00:28:49,870 +external library to create objects from it I have + +422 +00:28:49,870 --> 00:28:52,150 +two solutions of course it won't be able to create + +423 +00:28:52,150 --> 00:28:53,750 +objects from it because it doesn't have injectable + +424 +00:28:53,750 --> 00:28:59,340 +constructor Okay? But I have to remove the object + +425 +00:28:59,340 --> 00:29:03,940 +as a program How? There are two ways One of the + +426 +00:29:03,940 --> 00:29:06,040 +two ways The first way is to make method provides + +427 +00:29:06,040 --> 00:29:09,120 +inside the module And let it return the object it + +428 +00:29:09,120 --> 00:29:13,500 +wants The second way is to make a provider class + +429 +00:29:13,500 --> 00:29:16,660 +outside ImplementsProvider And let it have a + +430 +00:29:16,660 --> 00:29:18,680 +method that it makes by itself Implement get + +431 +00:29:18,680 --> 00:29:21,620 +returns Valve How do I know the type is Valve? + +432 +00:29:21,640 --> 00:29:25,080 +Because I wrote hereValve. And I choose the object + +433 +00:29:25,080 --> 00:29:28,620 +that I want. Of course, here, in the end, the + +434 +00:29:28,620 --> 00:29:30,980 +provider will be used by the module. The module is + +435 +00:29:30,980 --> 00:29:34,240 +the basis. Am I right, guys? The module is the + +436 +00:29:34,240 --> 00:29:36,480 +basis. It is what determines what connects it to + +437 +00:29:36,480 --> 00:29:39,340 +what. So I said, if I find Valve, I connect it to + +438 +00:29:39,340 --> 00:29:47,000 +this provider. And the code remains running. Let's + +439 +00:29:47,000 --> 00:29:50,720 +go back to ... Yes, but I also did it on the Mac. + +440 +00:29:53,210 --> 00:29:58,070 +Yes, because we've made an override for the + +441 +00:29:58,070 --> 00:30:03,990 +method, right or wrong? So this is the mock, we've + +442 +00:30:03,990 --> 00:30:07,150 +made an override, so I want to put it again, put + +443 +00:30:07,150 --> 00:30:11,030 +it again here It's supposed to have a method, + +444 +00:30:11,270 --> 00:30:14,350 +this, let me see, there's bind + +445 +00:30:23,660 --> 00:30:28,420 +There is no unbind in it. Okay, fine. Okay, we + +446 +00:30:28,420 --> 00:30:30,020 +added it to the mock to keep it running. + +447 +00:30:33,440 --> 00:30:34,940 +Okay, and what is left? What is the size of the + +448 +00:30:34,940 --> 00:30:41,980 +valve? Seventy-seven. Seventy-seven. Clear, guys? + +449 +00:30:43,200 --> 00:30:45,420 +So if I want to use an external library in this + +450 +00:30:45,420 --> 00:30:48,060 +case, I need to create the object because it will + +451 +00:30:48,060 --> 00:30:50,860 +not be able to create it. How do I create it? + +452 +00:30:51,120 --> 00:30:54,680 +Through the module, I need to create a method it + +453 +00:30:54,680 --> 00:30:56,600 +is made by annotation in provides, it returns the + +454 +00:30:56,600 --> 00:30:59,760 +object that it wants either to make it a provider + +455 +00:30:59,760 --> 00:31:03,560 +if you have 5 libraries and you use them either + +456 +00:31:03,560 --> 00:31:06,820 +you create 5 providers outside and bind them + +457 +00:31:06,820 --> 00:31:10,400 +either you create 5 methods and make them annotate + +458 +00:31:10,400 --> 00:31:22,580 +as provides ok guys? until the last part is + +459 +00:31:22,580 --> 00:31:23,920 +to suppose + +460 +00:31:26,910 --> 00:31:30,590 +For example, like a tire, let's say Of course, we + +461 +00:31:30,590 --> 00:31:33,990 +don't have a tire, but we have a large tire and a + +462 +00:31:33,990 --> 00:31:38,030 +small tire, okay? Let's say the tire takes a + +463 +00:31:38,030 --> 00:31:43,010 +parameter Primitive + +464 +00:31:43,010 --> 00:31:45,470 +type, but let's try it instead of making another + +465 +00:31:45,470 --> 00:31:49,190 +constructor Yes, go to the cylinder, okay? What + +466 +00:31:49,190 --> 00:31:52,690 +does the cylinder take? It takes a valve, and I + +467 +00:31:52,690 --> 00:31:57,030 +want it to take another parameterInteger cylinder + +468 +00:31:57,030 --> 00:32:03,590 +size and + +469 +00:32:03,590 --> 00:32:05,150 +put it in the constructor + +470 +00:32:18,310 --> 00:32:21,950 +Okay, I found that class objects like the valve is + +471 +00:32:21,950 --> 00:32:25,250 +solvable by itself. It produces objects from it. + +472 +00:32:25,690 --> 00:32:28,390 +If I find an injectable, the constructor produces + +473 +00:32:28,390 --> 00:32:30,590 +it. If I don't find one, the provider produces it. + +474 +00:32:30,610 --> 00:32:33,590 +Anyway, this is solvable by itself. But if I have + +475 +00:32:33,590 --> 00:32:35,730 +a primitive type constructor, this is a different + +476 +00:32:35,730 --> 00:32:40,610 +argument. It needs a value. Right or wrong guys? + +477 +00:32:41,390 --> 00:32:43,170 +What value does it need? Of course, I found that + +478 +00:32:43,170 --> 00:32:45,400 +it will not be able to produce a cylinder.The + +479 +00:32:45,400 --> 00:32:47,700 +cylinder has two dependencies. The first + +480 +00:32:47,700 --> 00:32:50,500 +dependency is an object of the type of valve. This + +481 +00:32:50,500 --> 00:32:54,160 +is solvable. The second dependency is a variable + +482 +00:32:54,160 --> 00:32:57,000 +of the type of integer. It has to pass through it + +483 +00:32:57,000 --> 00:32:58,740 +in order to create a cylinder. So this gate will + +484 +00:32:58,740 --> 00:33:00,700 +not be able to create a cylinder. Let's run it. + +485 +00:33:02,780 --> 00:33:04,700 +Okay, it will generate an error. Let's see the + +486 +00:33:04,700 --> 00:33:11,680 +error. No injectable constructor for type integer. + +487 +00:33:11,760 --> 00:33:15,270 +I don't know how it works.So this is also what we + +488 +00:33:15,270 --> 00:33:17,690 +want to do, we want to do the car module is the + +489 +00:33:17,690 --> 00:33:21,270 +solution to this problem. The first thing we want + +490 +00:33:21,270 --> 00:33:26,070 +to do is to give a name to this integer. You say + +491 +00:33:26,070 --> 00:33:31,610 +named and give it any name, for example, I want to + +492 +00:33:31,610 --> 00:33:36,750 +say cylinder size or let's say C size. + +493 +00:33:40,850 --> 00:33:44,850 +At Named, I'm doing an implement here for this At + +494 +00:33:44,850 --> 00:33:45,970 +Named, it's going to say here it's going to give + +495 +00:33:45,970 --> 00:33:46,430 +you an error. + +496 +00:33:51,090 --> 00:33:56,370 +I'm doing an import for it from this path. Why did + +497 +00:33:56,370 --> 00:33:59,290 +I give it a name? Because now in the char module, + +498 +00:33:59,610 --> 00:34:02,510 +if I find an integer with this name, I'm going to + +499 +00:34:02,510 --> 00:34:05,730 +give it this value.For example, I send values from + +500 +00:34:05,730 --> 00:34:08,390 +outside the whole tree. The tree does not enter + +501 +00:34:08,390 --> 00:34:11,510 +inside it, nor does it need this or that. From the + +502 +00:34:11,510 --> 00:34:13,670 +car module, I direct it and give it everything it + +503 +00:34:13,670 --> 00:34:17,810 +needs. So now I will go to the car module with me + +504 +00:34:17,810 --> 00:34:22,330 +and we will do command binding I need the binding + +505 +00:34:22,330 --> 00:34:26,330 +in case if I have an interface I want to give it a + +506 +00:34:26,330 --> 00:34:28,530 +class or abstract class I want to specify what + +507 +00:34:28,530 --> 00:34:31,870 +concrete class it will create or a class that does + +508 +00:34:31,870 --> 00:34:34,990 +not have an injectable constructor like if I use + +509 +00:34:34,990 --> 00:34:36,690 +an external library I want to specify how it will + +510 +00:34:36,690 --> 00:34:40,070 +create it a provider to create it or the last case + +511 +00:34:40,070 --> 00:34:42,570 +if I have a constructor that takes a parameter + +512 +00:34:43,600 --> 00:34:45,660 +primitive type and it does not need a value to + +513 +00:34:45,660 --> 00:34:50,860 +start I will also make it a bind this is a bind + +514 +00:34:50,860 --> 00:34:54,520 +and I will give it the name of class A now integer + +515 +00:34:54,520 --> 00:34:59,370 +dot class The value that I want to bind is + +516 +00:34:59,370 --> 00:35:03,190 +integer, not the integer that we made I want to + +517 +00:35:03,190 --> 00:35:11,790 +tell him annotated with names dot named csize Not + +518 +00:35:11,790 --> 00:35:14,010 +the name of the variable csize I want to tell him + +519 +00:35:14,010 --> 00:35:18,510 +if you find a variable of integer type I give him + +520 +00:35:18,510 --> 00:35:25,650 +or make annotation with this name Go and make to + +521 +00:35:25,650 --> 00:35:30,320 +instance give it a value of 100. This is the + +522 +00:35:30,320 --> 00:35:34,600 +meaning. This is the whole line to search for an + +523 +00:35:34,600 --> 00:35:38,800 +integer variable called cSize and give it a value + +524 +00:35:38,800 --> 00:35:39,960 +of 100. + +525 +00:35:43,380 --> 00:35:46,540 +But of course, as we have seen, this cSize should + +526 +00:35:46,540 --> 00:35:48,620 +be placed somewhere in the constructor. + +527 +00:35:52,610 --> 00:35:54,590 +Ok, let's go here, instead of changing the system + +528 +00:35:54,590 --> 00:35:56,490 +and running it on the car, let's leave this one as + +529 +00:35:56,490 --> 00:36:02,610 +it is Or let's leave this one as it is, let's make + +530 +00:36:02,610 --> 00:36:05,510 +a comment and run this one Ok, this time I gave + +531 +00:36:05,510 --> 00:36:09,390 +the car a module, and I run it Ok, and what did he + +532 +00:36:09,390 --> 00:36:14,050 +write here? BMW engine with cylinder with valves + +533 +00:36:14,050 --> 00:36:17,090 +of mu and... Yes, we didn't do it, but this is the + +534 +00:36:17,090 --> 00:36:21,410 +thing, that in the cylinderWe made a new variable + +535 +00:36:21,410 --> 00:36:25,230 +which is cylinderSize, but I didn't put it in the + +536 +00:36:25,230 --> 00:36:29,150 +toString to make it look like it was made And + +537 +00:36:29,150 --> 00:36:37,170 +cSize is equal to cylinderSize + +538 +00:36:44,820 --> 00:36:48,500 +and C size is equal to what? 100 let's try it with + +539 +00:36:48,500 --> 00:36:51,500 +something else let's go to the engine did you find + +540 +00:36:51,500 --> 00:36:54,340 +the engine? we have to give it a name for example + +541 +00:36:54,340 --> 00:36:58,720 +string serial + +542 +00:36:58,720 --> 00:37:01,960 +number ok? + +543 +00:37:02,600 --> 00:37:08,500 +and here I have to give it a name string serial + +544 +00:37:08,500 --> 00:37:10,940 +number this + +545 +00:37:15,020 --> 00:37:19,940 +.SerialNumber equals SerialNumber + +546 +00:37:19,940 --> 00:37:22,020 +Of course, since we have modified this class, I + +547 +00:37:22,020 --> 00:37:24,220 +will have an error in two other classes that I + +548 +00:37:24,220 --> 00:37:26,280 +want to implement. When you change the constructor + +549 +00:37:26,280 --> 00:37:30,500 +in + +550 +00:37:30,500 --> 00:37:32,680 +the parent, you have to change the constructor in + +551 +00:37:32,680 --> 00:37:34,280 +the subclass. If you change the constructor in the + +552 +00:37:34,280 --> 00:37:37,700 +subclass, what happens? SerialNumber and Cylinder. + +553 +00:37:38,060 --> 00:37:44,130 +First of all, The constructor must be injected + +554 +00:37:44,130 --> 00:37:46,950 +And what do we do with the serial number? We give + +555 +00:37:46,950 --> 00:37:49,650 +it a name so that we can bind it from the module + +556 +00:37:49,650 --> 00:37:54,970 +So I want to tell it at named Then + +557 +00:37:54,970 --> 00:37:57,710 +it comes and gets it right away It gets the + +558 +00:37:57,710 --> 00:38:00,550 +variable and gives it a name What do we call it? + +559 +00:38:00,650 --> 00:38:03,870 +Serial number, like this + +560 +00:38:10,340 --> 00:38:14,060 +and I will also have to import it from where? from + +561 +00:38:14,060 --> 00:38:20,280 +the mock engine, I don't have a mock engine but + +562 +00:38:20,280 --> 00:38:23,360 +this + +563 +00:38:23,360 --> 00:38:27,800 +constructor I will name it mock engine and this + +564 +00:38:27,800 --> 00:38:28,580 +one I will import + +565 +00:38:33,320 --> 00:38:35,440 +Now that we have given the name of the variable, I + +566 +00:38:35,440 --> 00:38:38,760 +will go to the gate on the car module and do the + +567 +00:38:38,760 --> 00:38:40,960 +binding process because I want to tell the gate, + +568 +00:38:41,060 --> 00:38:47,100 +if not, bind me if I find the string dot class, + +569 +00:38:47,980 --> 00:38:50,900 +the notated with, we have given it a name, the + +570 +00:38:50,900 --> 00:38:57,900 +name is serial number yes, + +571 +00:38:58,020 --> 00:39:02,020 +this needs names dot named names dot named + +572 +00:39:11,710 --> 00:39:16,690 +dot to instance give it one, two, three, four, + +573 +00:39:16,790 --> 00:39:22,210 +five, six of course + +574 +00:39:22,210 --> 00:39:31,550 +to see it we need to change the two strings with c + +575 +00:39:31,550 --> 00:39:34,930 +and serial number + +576 +00:39:42,530 --> 00:39:49,950 +Ok, let's go back and run it This + +577 +00:39:49,950 --> 00:39:55,250 +is the serial number and I added it here So now + +578 +00:39:55,250 --> 00:39:58,090 +the idea is that the car module is what you + +579 +00:39:58,090 --> 00:40:01,590 +control through it So the tester comes and tries + +580 +00:40:01,590 --> 00:40:04,610 +to change only where? In the car module He says + +581 +00:40:04,610 --> 00:40:07,490 +connect to this interface in another class, mock + +582 +00:40:08,360 --> 00:40:10,360 +this variable changes the value and gives it + +583 +00:40:10,360 --> 00:40:13,480 +another value and what else can we do instead of + +584 +00:40:13,480 --> 00:40:17,500 +putting these static values instead of putting + +585 +00:40:17,500 --> 00:40:19,920 +them and changing them from the code we can make + +586 +00:40:19,920 --> 00:40:23,380 +them setter and getter so the char module we put + +587 +00:40:23,380 --> 00:40:33,080 +in string serial number attributes int csize and + +588 +00:40:33,080 --> 00:40:34,700 +make them public you can make them setter and + +589 +00:40:34,700 --> 00:40:38,170 +getter but for the speed I want to make them + +590 +00:40:38,170 --> 00:40:41,750 +public and + +591 +00:40:41,750 --> 00:40:47,750 +here instead of putting 100, here is cSize and + +592 +00:40:47,750 --> 00:40:52,890 +here instead of 1 net, serial number, + +593 +00:40:53,410 --> 00:40:57,040 +I put the variables hereWhy did I do that? On the + +594 +00:40:57,040 --> 00:41:00,480 +basis that in the main method when we created the + +595 +00:41:00,480 --> 00:41:01,880 +car module, not here when we created the car + +596 +00:41:01,880 --> 00:41:06,680 +module go to cm and say dot give it serial number + +597 +00:41:06,680 --> 00:41:18,880 +from 6 to 1 and give it c size for example 55 then + +598 +00:41:18,880 --> 00:41:21,660 +say ish and create an object from it + +599 +00:41:29,890 --> 00:41:30,490 +Yes, + +600 +00:41:34,430 --> 00:41:37,150 +this is the valve, this is the main chamber here. + +601 +00:41:37,870 --> 00:41:41,150 +It has nothing to do with this. The C size is 55 + +602 +00:41:41,150 --> 00:41:47,350 +and the serial number is from 6 to 1. In the last + +603 +00:41:47,350 --> 00:41:49,690 +lecture, we did not use the module because it only + +604 +00:41:49,690 --> 00:41:53,110 +used annotations. I was assuming that each class + +605 +00:41:53,110 --> 00:41:57,370 +has an injectable constructor But if I have an + +606 +00:41:57,370 --> 00:41:58,850 +interface that wants to know what class it wants + +607 +00:41:58,850 --> 00:42:00,750 +to create I have a class that does not have an + +608 +00:42:00,750 --> 00:42:02,610 +injectable constructor and wants to know how to do + +609 +00:42:02,610 --> 00:42:06,410 +it It needs a provider or provide method It has + +610 +00:42:06,410 --> 00:42:09,850 +parameters, arguments for the constructors of + +611 +00:42:09,850 --> 00:42:12,630 +primitive type To know what values ​​we want to + +612 +00:42:12,630 --> 00:42:19,090 +pass All these things need a module Okay guys? And + +613 +00:42:19,090 --> 00:42:23,130 +as I told you, the tester It doesn't go through + +614 +00:42:23,130 --> 00:42:25,870 +the tree or what are the details in it. It just + +615 +00:42:25,870 --> 00:42:28,870 +goes to the module and knows that it wants to run + +616 +00:42:28,870 --> 00:42:32,550 +a test. For example, it finds that the DB + +617 +00:42:32,550 --> 00:42:36,470 +interface is connected to MySQL DB. It goes + +618 +00:42:36,470 --> 00:42:38,850 +directly to the DB interface, implements it, and + +619 +00:42:38,850 --> 00:42:43,290 +puts results in it. This is the interface thread + +620 +00:42:43,290 --> 00:42:45,990 +as well. It shows it what methods it wants to + +621 +00:42:45,990 --> 00:42:48,310 +implement. It puts fake data in it and returns it. + +622 +00:42:48,410 --> 00:42:53,000 +It only changes the binding.It changes the binding + +623 +00:42:53,000 --> 00:42:55,960 +and everyone follows it. This is how testers work. + +624 +00:42:56,100 --> 00:42:59,000 +Testers love dependency injection. + +625 +00:43:00,300 --> 00:43:02,080 +Dependency injection overrides programming. + +626 +00:43:03,520 --> 00:43:05,560 +Testers say to you, I don't have anything to do + +627 +00:43:05,560 --> 00:43:07,680 +with your tree, who uses whom and what they do. + +628 +00:43:08,960 --> 00:43:13,840 +Give me what you owe me and I will change this + +629 +00:43:13,840 --> 00:43:20,140 +step for each interface in another class. Is it + +630 +00:43:20,140 --> 00:43:23,680 +clear, guys? Okay, this is a general idea about + +631 +00:43:23,680 --> 00:43:25,980 +the dependency injection framework. Of course, as + +632 +00:43:25,980 --> 00:43:28,600 +I said, juice may not be used much in the market, + +633 +00:43:29,280 --> 00:43:32,780 +okay? I mean, in Spring, a lot of people use + +634 +00:43:32,780 --> 00:43:35,780 +dependency injection. In Android, we still have + +635 +00:43:35,780 --> 00:43:39,020 +libraries like Dagger and Hilt. Okay? And even on + +636 +00:43:39,020 --> 00:43:42,780 +the web, advanced users have dependency injection, + +637 +00:43:42,900 --> 00:43:45,500 +but their idea is the same. Okay? Almost everyone + +638 +00:43:45,500 --> 00:43:52,590 +works this way. تمام جماعة يعطيكوا العافية + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/1jnY5QWrkaY_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/1jnY5QWrkaY_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..711012780cc86e373fffcb92f7ea90ad7e13e0a6 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/1jnY5QWrkaY_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 3490, "start": 5.42, "end": 34.9, "text": " Okay, in the name of God most merciful most merciful We will continue today guys in the subject of dependency injection In the last lecture, we introduced dependency injection and we said very briefly When I have an object that depends on another object, this is what we call dependency And we said that there are two ways to achieve this dependency That we create the object that I need inside the object, okay? Or that we create the object externally and pass it to the object that needs it", "tokens": [1033, 11, 294, 264, 1315, 295, 1265, 881, 48756, 881, 48756, 492, 486, 2354, 965, 1074, 294, 264, 3983, 295, 33621, 22873, 682, 264, 1036, 7991, 11, 321, 7268, 33621, 22873, 293, 321, 848, 588, 10515, 1133, 286, 362, 364, 2657, 300, 5946, 322, 1071, 2657, 11, 341, 307, 437, 321, 818, 33621, 400, 321, 848, 300, 456, 366, 732, 2098, 281, 4584, 341, 33621, 663, 321, 1884, 264, 2657, 300, 286, 643, 1854, 264, 2657, 11, 1392, 30, 1610, 300, 321, 1884, 264, 2657, 40899, 293, 1320, 309, 281, 264, 2657, 300, 2203, 309], "avg_logprob": -0.4069010525320967, "compression_ratio": 1.972, "no_speech_prob": 6.198883056640625e-06, "words": [{"start": 5.42, "end": 5.74, "word": " Okay,", "probability": 0.11468505859375}, {"start": 5.84, "end": 6.06, "word": " in", "probability": 0.420654296875}, {"start": 6.06, "end": 6.12, "word": " the", "probability": 0.9208984375}, {"start": 6.12, "end": 6.12, "word": " name", "probability": 0.8779296875}, {"start": 6.12, "end": 6.2, "word": " of", "probability": 0.978515625}, {"start": 6.2, "end": 6.3, "word": " God", "probability": 0.465576171875}, {"start": 6.3, "end": 6.62, "word": " most", "probability": 0.316650390625}, {"start": 6.62, "end": 6.62, "word": " merciful", "probability": 0.397216796875}, {"start": 6.62, "end": 6.78, "word": " most", "probability": 0.71533203125}, {"start": 6.78, "end": 6.86, "word": " merciful", "probability": 0.666015625}, {"start": 6.86, "end": 8.2, "word": " We", "probability": 0.390625}, {"start": 8.2, "end": 8.66, "word": " will", "probability": 0.6123046875}, {"start": 8.66, "end": 8.92, "word": " continue", "probability": 0.8291015625}, {"start": 8.92, "end": 9.16, "word": " today", "probability": 0.71044921875}, {"start": 9.16, "end": 9.58, "word": " guys", "probability": 0.381591796875}, {"start": 9.58, "end": 9.78, "word": " in", "probability": 0.252685546875}, {"start": 9.78, "end": 9.88, "word": " the", "probability": 0.669921875}, {"start": 9.88, "end": 10.14, "word": " subject", "probability": 0.50927734375}, {"start": 10.14, "end": 10.44, "word": " of", "probability": 0.82080078125}, {"start": 10.44, "end": 11.32, "word": " dependency", "probability": 0.7578125}, {"start": 11.32, "end": 12.4, "word": " injection", "probability": 0.88720703125}, {"start": 12.4, "end": 13.68, "word": " In", "probability": 0.4130859375}, {"start": 13.68, "end": 13.74, "word": " the", "probability": 0.85400390625}, {"start": 13.74, "end": 13.74, "word": " last", "probability": 0.48779296875}, {"start": 13.74, "end": 14.32, "word": " lecture,", "probability": 0.80517578125}, {"start": 14.7, "end": 14.76, "word": " we", "probability": 0.9462890625}, {"start": 14.76, "end": 15.02, "word": " introduced", "probability": 0.587890625}, {"start": 15.02, "end": 15.58, "word": " dependency", "probability": 0.84814453125}, {"start": 15.58, "end": 15.96, "word": " injection", "probability": 0.89404296875}, {"start": 15.96, "end": 16.16, "word": " and", "probability": 0.7431640625}, {"start": 16.16, "end": 16.18, "word": " we", "probability": 0.320556640625}, {"start": 16.18, "end": 16.32, "word": " said", "probability": 0.69384765625}, {"start": 16.32, "end": 16.46, "word": " very", "probability": 0.189453125}, {"start": 16.46, "end": 16.98, "word": " briefly", "probability": 0.76025390625}, {"start": 16.98, "end": 18.58, "word": " When", "probability": 0.438232421875}, {"start": 18.58, "end": 19.02, "word": " I", "probability": 0.6396484375}, {"start": 19.02, "end": 19.24, "word": " have", "probability": 0.9169921875}, {"start": 19.24, "end": 19.6, "word": " an", "probability": 0.890625}, {"start": 19.6, "end": 19.94, "word": " object", "probability": 0.9755859375}, {"start": 19.94, "end": 20.04, "word": " that", "probability": 0.67041015625}, {"start": 20.04, "end": 20.3, "word": " depends", "probability": 0.5966796875}, {"start": 20.3, "end": 20.5, "word": " on", "probability": 0.93701171875}, {"start": 20.5, "end": 20.6, "word": " another", "probability": 0.91259765625}, {"start": 20.6, "end": 21.12, "word": " object,", "probability": 0.96826171875}, {"start": 21.24, "end": 21.4, "word": " this", "probability": 0.517578125}, {"start": 21.4, "end": 21.48, "word": " is", "probability": 0.6728515625}, {"start": 21.48, "end": 21.48, "word": " what", "probability": 0.303955078125}, {"start": 21.48, "end": 21.52, "word": " we", "probability": 0.9462890625}, {"start": 21.52, "end": 21.78, "word": " call", "probability": 0.89306640625}, {"start": 21.78, "end": 22.5, "word": " dependency", "probability": 0.91357421875}, {"start": 22.5, "end": 23.34, "word": " And", "probability": 0.63232421875}, {"start": 23.34, "end": 23.48, "word": " we", "probability": 0.869140625}, {"start": 23.48, "end": 23.48, "word": " said", "probability": 0.87841796875}, {"start": 23.48, "end": 23.62, "word": " that", "probability": 0.45361328125}, {"start": 23.62, "end": 23.66, "word": " there", "probability": 0.8955078125}, {"start": 23.66, "end": 23.66, "word": " are", "probability": 0.9169921875}, {"start": 23.66, "end": 24.06, "word": " two", "probability": 0.87451171875}, {"start": 24.06, "end": 24.06, "word": " ways", "probability": 0.88330078125}, {"start": 24.06, "end": 24.46, "word": " to", "probability": 0.93994140625}, {"start": 24.46, "end": 24.96, "word": " achieve", "probability": 0.8203125}, {"start": 24.96, "end": 25.14, "word": " this", "probability": 0.9111328125}, {"start": 25.14, "end": 25.7, "word": " dependency", "probability": 0.9296875}, {"start": 25.7, "end": 26.04, "word": " That", "probability": 0.29150390625}, {"start": 26.04, "end": 26.28, "word": " we", "probability": 0.4892578125}, {"start": 26.28, "end": 26.64, "word": " create", "probability": 0.6875}, {"start": 26.64, "end": 27.46, "word": " the", "probability": 0.8662109375}, {"start": 27.46, "end": 27.8, "word": " object", "probability": 0.953125}, {"start": 27.8, "end": 27.92, "word": " that", "probability": 0.79150390625}, {"start": 27.92, "end": 28.08, "word": " I", "probability": 0.94970703125}, {"start": 28.08, "end": 28.44, "word": " need", "probability": 0.92822265625}, {"start": 28.44, "end": 28.78, "word": " inside", "probability": 0.7041015625}, {"start": 28.78, "end": 28.94, "word": " the", "probability": 0.83642578125}, {"start": 28.94, "end": 29.38, "word": " object,", "probability": 0.97412109375}, {"start": 29.88, "end": 30.26, "word": " okay?", "probability": 0.5400390625}, {"start": 30.72, "end": 31.16, "word": " Or", "probability": 0.927734375}, {"start": 31.16, "end": 31.36, "word": " that", "probability": 0.669921875}, {"start": 31.36, "end": 31.68, "word": " we", "probability": 0.95947265625}, {"start": 31.68, "end": 31.88, "word": " create", "probability": 0.8603515625}, {"start": 31.88, "end": 32.0, "word": " the", "probability": 0.88232421875}, {"start": 32.0, "end": 32.26, "word": " object", "probability": 0.61865234375}, {"start": 32.26, "end": 32.7, "word": " externally", "probability": 0.89794921875}, {"start": 32.7, "end": 32.98, "word": " and", "probability": 0.912109375}, {"start": 32.98, "end": 33.22, "word": " pass", "probability": 0.1815185546875}, {"start": 33.22, "end": 33.46, "word": " it", "probability": 0.92919921875}, {"start": 33.46, "end": 33.86, "word": " to", "probability": 0.488525390625}, {"start": 33.86, "end": 33.98, "word": " the", "probability": 0.91943359375}, {"start": 33.98, "end": 34.22, "word": " object", "probability": 0.9453125}, {"start": 34.22, "end": 34.36, "word": " that", "probability": 0.91748046875}, {"start": 34.36, "end": 34.72, "word": " needs", "probability": 0.5888671875}, {"start": 34.72, "end": 34.9, "word": " it", "probability": 0.94677734375}], "temperature": 1.0}, {"id": 2, "seek": 6258, "start": 36.44, "end": 62.58, "text": " And the best way is to create the object externally and pass it through And this is what is called dependency injection Why is it better? Because you have the freedom to change the dependency You can make it extend, change what it does, make it mocking, I explained last time how testing works For example, I have a user interface The user interface depends on the connection to the database and methods to the database", "tokens": [400, 264, 1151, 636, 307, 281, 1884, 264, 2657, 40899, 293, 1320, 309, 807, 400, 341, 307, 437, 307, 1219, 33621, 22873, 1545, 307, 309, 1101, 30, 1436, 291, 362, 264, 5645, 281, 1319, 264, 33621, 509, 393, 652, 309, 10101, 11, 1319, 437, 309, 775, 11, 652, 309, 49792, 11, 286, 8825, 1036, 565, 577, 4997, 1985, 1171, 1365, 11, 286, 362, 257, 4195, 9226, 440, 4195, 9226, 5946, 322, 264, 4984, 281, 264, 8149, 293, 7150, 281, 264, 8149], "avg_logprob": -0.5644054936199654, "compression_ratio": 1.728395061728395, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 36.44, "end": 36.92, "word": " And", "probability": 0.10662841796875}, {"start": 36.92, "end": 37.04, "word": " the", "probability": 0.74169921875}, {"start": 37.04, "end": 37.54, "word": " best", "probability": 0.802734375}, {"start": 37.54, "end": 37.58, "word": " way", "probability": 0.81005859375}, {"start": 37.58, "end": 37.98, "word": " is", "probability": 0.366455078125}, {"start": 37.98, "end": 38.46, "word": " to", "probability": 0.662109375}, {"start": 38.46, "end": 38.74, "word": " create", "probability": 0.5869140625}, {"start": 38.74, "end": 38.86, "word": " the", "probability": 0.342041015625}, {"start": 38.86, "end": 39.14, "word": " object", "probability": 0.9228515625}, {"start": 39.14, "end": 39.62, "word": " externally", "probability": 0.41357421875}, {"start": 39.62, "end": 39.82, "word": " and", "probability": 0.79443359375}, {"start": 39.82, "end": 40.06, "word": " pass", "probability": 0.352783203125}, {"start": 40.06, "end": 40.24, "word": " it", "probability": 0.8369140625}, {"start": 40.24, "end": 40.24, "word": " through", "probability": 0.4970703125}, {"start": 40.24, "end": 40.34, "word": " And", "probability": 0.08795166015625}, {"start": 40.34, "end": 40.62, "word": " this", "probability": 0.708984375}, {"start": 40.62, "end": 40.74, "word": " is", "probability": 0.87109375}, {"start": 40.74, "end": 40.84, "word": " what", "probability": 0.3984375}, {"start": 40.84, "end": 40.9, "word": " is", "probability": 0.39208984375}, {"start": 40.9, "end": 41.04, "word": " called", "probability": 0.85986328125}, {"start": 41.04, "end": 41.58, "word": " dependency", "probability": 0.5625}, {"start": 41.58, "end": 42.1, "word": " injection", "probability": 0.966796875}, {"start": 42.1, "end": 43.3, "word": " Why", "probability": 0.2392578125}, {"start": 43.3, "end": 43.3, "word": " is", "probability": 0.53662109375}, {"start": 43.3, "end": 44.96, "word": " it", "probability": 0.74169921875}, {"start": 44.96, "end": 45.2, "word": " better?", "probability": 0.6162109375}, {"start": 45.42, "end": 45.66, "word": " Because", "probability": 0.81103515625}, {"start": 45.66, "end": 46.08, "word": " you", "probability": 0.69482421875}, {"start": 46.08, "end": 46.08, "word": " have", "probability": 0.60302734375}, {"start": 46.08, "end": 46.22, "word": " the", "probability": 0.27099609375}, {"start": 46.22, "end": 46.42, "word": " freedom", "probability": 0.082275390625}, {"start": 46.42, "end": 46.7, "word": " to", "probability": 0.85986328125}, {"start": 46.7, "end": 47.74, "word": " change", "probability": 0.748046875}, {"start": 47.74, "end": 47.86, "word": " the", "probability": 0.407470703125}, {"start": 47.86, "end": 47.86, "word": " dependency", "probability": 0.869140625}, {"start": 47.86, "end": 48.44, "word": " You", "probability": 0.1983642578125}, {"start": 48.44, "end": 48.54, "word": " can", "probability": 0.84375}, {"start": 48.54, "end": 48.72, "word": " make", "probability": 0.258544921875}, {"start": 48.72, "end": 48.8, "word": " it", "probability": 0.8828125}, {"start": 48.8, "end": 49.36, "word": " extend,", "probability": 0.8388671875}, {"start": 50.68, "end": 51.26, "word": " change", "probability": 0.357421875}, {"start": 51.26, "end": 51.5, "word": " what", "probability": 0.72021484375}, {"start": 51.5, "end": 51.68, "word": " it", "probability": 0.5908203125}, {"start": 51.68, "end": 52.08, "word": " does,", "probability": 0.87890625}, {"start": 52.6, "end": 52.84, "word": " make", "probability": 0.33203125}, {"start": 52.84, "end": 52.98, "word": " it", "probability": 0.8974609375}, {"start": 52.98, "end": 53.44, "word": " mocking,", "probability": 0.916015625}, {"start": 53.74, "end": 53.82, "word": " I", "probability": 0.363037109375}, {"start": 53.82, "end": 54.02, "word": " explained", "probability": 0.56298828125}, {"start": 54.02, "end": 54.28, "word": " last", "probability": 0.2391357421875}, {"start": 54.28, "end": 54.76, "word": " time", "probability": 0.828125}, {"start": 54.76, "end": 55.14, "word": " how", "probability": 0.6435546875}, {"start": 55.14, "end": 55.62, "word": " testing", "probability": 0.2626953125}, {"start": 55.62, "end": 56.44, "word": " works", "probability": 0.70068359375}, {"start": 56.44, "end": 56.66, "word": " For", "probability": 0.6689453125}, {"start": 56.66, "end": 57.0, "word": " example,", "probability": 0.9267578125}, {"start": 57.74, "end": 57.88, "word": " I", "probability": 0.87841796875}, {"start": 57.88, "end": 58.06, "word": " have", "probability": 0.9404296875}, {"start": 58.06, "end": 58.14, "word": " a", "probability": 0.814453125}, {"start": 58.14, "end": 58.34, "word": " user", "probability": 0.9453125}, {"start": 58.34, "end": 58.9, "word": " interface", "probability": 0.8759765625}, {"start": 58.9, "end": 59.06, "word": " The", "probability": 0.16357421875}, {"start": 59.06, "end": 59.26, "word": " user", "probability": 0.93359375}, {"start": 59.26, "end": 59.76, "word": " interface", "probability": 0.86279296875}, {"start": 59.76, "end": 60.16, "word": " depends", "probability": 0.626953125}, {"start": 60.16, "end": 60.4, "word": " on", "probability": 0.9375}, {"start": 60.4, "end": 60.48, "word": " the", "probability": 0.31787109375}, {"start": 60.48, "end": 60.86, "word": " connection", "probability": 0.759765625}, {"start": 60.86, "end": 61.06, "word": " to", "probability": 0.53662109375}, {"start": 61.06, "end": 61.12, "word": " the", "probability": 0.873046875}, {"start": 61.12, "end": 61.52, "word": " database", "probability": 0.94384765625}, {"start": 61.52, "end": 61.66, "word": " and", "probability": 0.66064453125}, {"start": 61.66, "end": 61.94, "word": " methods", "probability": 0.60595703125}, {"start": 61.94, "end": 62.08, "word": " to", "probability": 0.7021484375}, {"start": 62.08, "end": 62.18, "word": " the", "probability": 0.884765625}, {"start": 62.18, "end": 62.58, "word": " database", "probability": 0.923828125}], "temperature": 1.0}, {"id": 3, "seek": 8020, "start": 63.55, "end": 80.21, "text": "It has a dependency which is the class that connects to the database If I want to try the user interface on the database, I can extend the database class and put mochas in it. For example, the method", "tokens": [3522, 575, 257, 33621, 597, 307, 264, 1508, 300, 16967, 281, 264, 8149, 759, 286, 528, 281, 853, 264, 4195, 9226, 322, 264, 8149, 11, 286, 393, 10101, 264, 8149, 1508, 293, 829, 705, 339, 296, 294, 309, 13, 1171, 1365, 11, 264, 3170], "avg_logprob": -0.5614583333333333, "compression_ratio": 1.5307692307692307, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 63.55, "end": 63.93, "word": "It", "probability": 0.2705078125}, {"start": 63.93, "end": 64.09, "word": " has", "probability": 0.787109375}, {"start": 64.09, "end": 64.19, "word": " a", "probability": 0.361083984375}, {"start": 64.19, "end": 64.73, "word": " dependency", "probability": 0.8642578125}, {"start": 64.73, "end": 65.29, "word": " which", "probability": 0.3173828125}, {"start": 65.29, "end": 65.37, "word": " is", "probability": 0.76904296875}, {"start": 65.37, "end": 65.49, "word": " the", "probability": 0.56396484375}, {"start": 65.49, "end": 65.77, "word": " class", "probability": 0.8955078125}, {"start": 65.77, "end": 65.89, "word": " that", "probability": 0.70703125}, {"start": 65.89, "end": 66.31, "word": " connects", "probability": 0.352294921875}, {"start": 66.31, "end": 66.61, "word": " to", "probability": 0.7490234375}, {"start": 66.61, "end": 66.69, "word": " the", "probability": 0.7392578125}, {"start": 66.69, "end": 67.05, "word": " database", "probability": 0.912109375}, {"start": 67.05, "end": 69.11, "word": " If", "probability": 0.482421875}, {"start": 69.11, "end": 70.65, "word": " I", "probability": 0.95458984375}, {"start": 70.65, "end": 70.85, "word": " want", "probability": 0.75048828125}, {"start": 70.85, "end": 70.87, "word": " to", "probability": 0.96728515625}, {"start": 70.87, "end": 71.05, "word": " try", "probability": 0.556640625}, {"start": 71.05, "end": 71.17, "word": " the", "probability": 0.422607421875}, {"start": 71.17, "end": 71.37, "word": " user", "probability": 0.89111328125}, {"start": 71.37, "end": 71.91, "word": " interface", "probability": 0.8701171875}, {"start": 71.91, "end": 72.07, "word": " on", "probability": 0.1446533203125}, {"start": 72.07, "end": 72.55, "word": " the", "probability": 0.5234375}, {"start": 72.55, "end": 73.07, "word": " database,", "probability": 0.873046875}, {"start": 73.07, "end": 74.11, "word": " I", "probability": 0.85400390625}, {"start": 74.11, "end": 74.25, "word": " can", "probability": 0.75048828125}, {"start": 74.25, "end": 74.29, "word": " extend", "probability": 0.8037109375}, {"start": 74.29, "end": 74.43, "word": " the", "probability": 0.81787109375}, {"start": 74.43, "end": 75.07, "word": " database", "probability": 0.71044921875}, {"start": 75.07, "end": 75.99, "word": " class", "probability": 0.86962890625}, {"start": 75.99, "end": 76.79, "word": " and", "probability": 0.59130859375}, {"start": 76.79, "end": 77.03, "word": " put", "probability": 0.32275390625}, {"start": 77.03, "end": 78.13, "word": " mochas", "probability": 0.2911783854166667}, {"start": 78.13, "end": 78.23, "word": " in", "probability": 0.65771484375}, {"start": 78.23, "end": 78.23, "word": " it.", "probability": 0.91015625}, {"start": 78.91, "end": 79.15, "word": " For", "probability": 0.70166015625}, {"start": 79.15, "end": 79.39, "word": " example,", "probability": 0.912109375}, {"start": 79.55, "end": 79.91, "word": " the", "probability": 0.61767578125}, {"start": 79.91, "end": 80.21, "word": " method", "probability": 0.939453125}], "temperature": 1.0}, {"id": 4, "seek": 9587, "start": 83.87, "end": 95.87, "text": "For example, I have a UI. The UI needs methods to make a connection to the database to get data and upload it to the UI. If we assume that this is an interface called DBI", "tokens": [12587, 1365, 11, 286, 362, 257, 15682, 13, 440, 15682, 2203, 7150, 281, 652, 257, 4984, 281, 264, 8149, 281, 483, 1412, 293, 6580, 309, 281, 264, 15682, 13, 759, 321, 6552, 300, 341, 307, 364, 9226, 1219, 413, 11291], "avg_logprob": -0.5685975493454352, "compression_ratio": 1.328125, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 83.87, "end": 84.13, "word": "For", "probability": 0.2125244140625}, {"start": 84.13, "end": 84.53, "word": " example,", "probability": 0.86181640625}, {"start": 85.01, "end": 85.17, "word": " I", "probability": 0.454833984375}, {"start": 85.17, "end": 85.17, "word": " have", "probability": 0.8896484375}, {"start": 85.17, "end": 85.71, "word": " a", "probability": 0.703125}, {"start": 85.71, "end": 86.05, "word": " UI.", "probability": 0.64404296875}, {"start": 86.17, "end": 86.29, "word": " The", "probability": 0.587890625}, {"start": 86.29, "end": 86.55, "word": " UI", "probability": 0.95703125}, {"start": 86.55, "end": 87.09, "word": " needs", "probability": 0.68408203125}, {"start": 87.09, "end": 88.37, "word": " methods", "probability": 0.84130859375}, {"start": 88.37, "end": 88.65, "word": " to", "probability": 0.89111328125}, {"start": 88.65, "end": 88.87, "word": " make", "probability": 0.34130859375}, {"start": 88.87, "end": 88.99, "word": " a", "probability": 0.251953125}, {"start": 88.99, "end": 89.33, "word": " connection", "probability": 0.90673828125}, {"start": 89.33, "end": 89.53, "word": " to", "probability": 0.78173828125}, {"start": 89.53, "end": 89.59, "word": " the", "probability": 0.71240234375}, {"start": 89.59, "end": 89.89, "word": " database", "probability": 0.904296875}, {"start": 89.89, "end": 90.13, "word": " to", "probability": 0.4736328125}, {"start": 90.13, "end": 90.37, "word": " get", "probability": 0.34375}, {"start": 90.37, "end": 90.71, "word": " data", "probability": 0.51953125}, {"start": 90.71, "end": 90.85, "word": " and", "probability": 0.8056640625}, {"start": 90.85, "end": 91.09, "word": " upload", "probability": 0.153564453125}, {"start": 91.09, "end": 91.23, "word": " it", "probability": 0.646484375}, {"start": 91.23, "end": 91.35, "word": " to", "probability": 0.48583984375}, {"start": 91.35, "end": 92.13, "word": " the", "probability": 0.7509765625}, {"start": 92.13, "end": 92.45, "word": " UI.", "probability": 0.79150390625}, {"start": 93.17, "end": 93.67, "word": " If", "probability": 0.222900390625}, {"start": 93.67, "end": 93.73, "word": " we", "probability": 0.80859375}, {"start": 93.73, "end": 93.97, "word": " assume", "probability": 0.40576171875}, {"start": 93.97, "end": 94.13, "word": " that", "probability": 0.66064453125}, {"start": 94.13, "end": 94.27, "word": " this", "probability": 0.81201171875}, {"start": 94.27, "end": 94.29, "word": " is", "probability": 0.64990234375}, {"start": 94.29, "end": 94.39, "word": " an", "probability": 0.70751953125}, {"start": 94.39, "end": 94.87, "word": " interface", "probability": 0.892578125}, {"start": 94.87, "end": 95.19, "word": " called", "probability": 0.42724609375}, {"start": 95.19, "end": 95.87, "word": " DBI", "probability": 0.5316162109375}], "temperature": 1.0}, {"id": 5, "seek": 12586, "start": 97.86, "end": 125.86, "text": " There are methods called getStudentById, getAllStudents, insertStudent, this is an interface. Why did I design an interface? To make it implement more than implementation. For example, I have MySQL DB. I want to make the same methods implementation. And I put queries suitable to whom? To MySQL. Because actually I", "tokens": [821, 366, 7150, 1219, 483, 40762, 27690, 42739, 11, 483, 7868, 42665, 791, 11, 8969, 40762, 11, 341, 307, 364, 9226, 13, 1545, 630, 286, 1715, 364, 9226, 30, 1407, 652, 309, 4445, 544, 813, 11420, 13, 1171, 1365, 11, 286, 362, 1222, 39934, 26754, 13, 286, 528, 281, 652, 264, 912, 7150, 11420, 13, 400, 286, 829, 24109, 12873, 281, 7101, 30, 1407, 1222, 39934, 13, 1436, 767, 286], "avg_logprob": -0.5110035228057647, "compression_ratio": 1.5365853658536586, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 97.86, "end": 98.08, "word": " There", "probability": 0.331787109375}, {"start": 98.08, "end": 98.14, "word": " are", "probability": 0.7490234375}, {"start": 98.14, "end": 98.6, "word": " methods", "probability": 0.88720703125}, {"start": 98.6, "end": 99.2, "word": " called", "probability": 0.29052734375}, {"start": 99.2, "end": 100.58, "word": " getStudentById,", "probability": 0.59112548828125}, {"start": 100.92, "end": 102.0, "word": " getAllStudents,", "probability": 0.86083984375}, {"start": 102.38, "end": 103.22, "word": " insertStudent,", "probability": 0.632080078125}, {"start": 103.66, "end": 104.06, "word": " this", "probability": 0.35986328125}, {"start": 104.06, "end": 104.66, "word": " is", "probability": 0.8232421875}, {"start": 104.66, "end": 104.78, "word": " an", "probability": 0.4072265625}, {"start": 104.78, "end": 105.22, "word": " interface.", "probability": 0.86572265625}, {"start": 105.34, "end": 105.48, "word": " Why", "probability": 0.75}, {"start": 105.48, "end": 105.54, "word": " did", "probability": 0.505859375}, {"start": 105.54, "end": 105.58, "word": " I", "probability": 0.671875}, {"start": 105.58, "end": 105.74, "word": " design", "probability": 0.76953125}, {"start": 105.74, "end": 106.08, "word": " an", "probability": 0.40234375}, {"start": 106.08, "end": 106.64, "word": " interface?", "probability": 0.8203125}, {"start": 107.22, "end": 107.58, "word": " To", "probability": 0.458251953125}, {"start": 107.58, "end": 107.92, "word": " make", "probability": 0.362060546875}, {"start": 107.92, "end": 108.78, "word": " it", "probability": 0.8974609375}, {"start": 108.78, "end": 109.22, "word": " implement", "probability": 0.494384765625}, {"start": 109.22, "end": 109.88, "word": " more", "probability": 0.88134765625}, {"start": 109.88, "end": 110.14, "word": " than", "probability": 0.92724609375}, {"start": 110.14, "end": 111.56, "word": " implementation.", "probability": 0.8388671875}, {"start": 112.22, "end": 112.5, "word": " For", "probability": 0.53125}, {"start": 112.5, "end": 112.7, "word": " example,", "probability": 0.91650390625}, {"start": 112.78, "end": 112.78, "word": " I", "probability": 0.328857421875}, {"start": 112.78, "end": 112.94, "word": " have", "probability": 0.91357421875}, {"start": 112.94, "end": 113.58, "word": " MySQL", "probability": 0.806640625}, {"start": 113.58, "end": 115.36, "word": " DB.", "probability": 0.68701171875}, {"start": 116.18, "end": 116.58, "word": " I", "probability": 0.378173828125}, {"start": 116.58, "end": 116.58, "word": " want", "probability": 0.388916015625}, {"start": 116.58, "end": 116.58, "word": " to", "probability": 0.94384765625}, {"start": 116.58, "end": 116.58, "word": " make", "probability": 0.489990234375}, {"start": 116.58, "end": 116.58, "word": " the", "probability": 0.6650390625}, {"start": 116.58, "end": 116.58, "word": " same", "probability": 0.8564453125}, {"start": 116.58, "end": 117.38, "word": " methods", "probability": 0.724609375}, {"start": 117.38, "end": 119.08, "word": " implementation.", "probability": 0.58056640625}, {"start": 119.82, "end": 120.08, "word": " And", "probability": 0.5947265625}, {"start": 120.08, "end": 120.12, "word": " I", "probability": 0.8193359375}, {"start": 120.12, "end": 120.3, "word": " put", "probability": 0.46142578125}, {"start": 120.3, "end": 120.82, "word": " queries", "probability": 0.646484375}, {"start": 120.82, "end": 121.36, "word": " suitable", "probability": 0.191162109375}, {"start": 121.36, "end": 121.6, "word": " to", "probability": 0.34765625}, {"start": 121.6, "end": 121.76, "word": " whom?", "probability": 0.5478515625}, {"start": 122.3, "end": 122.9, "word": " To", "probability": 0.6787109375}, {"start": 122.9, "end": 123.6, "word": " MySQL.", "probability": 0.941162109375}, {"start": 124.44, "end": 124.72, "word": " Because", "probability": 0.8095703125}, {"start": 124.72, "end": 125.1, "word": " actually", "probability": 0.294677734375}, {"start": 125.1, "end": 125.86, "word": " I", "probability": 0.5986328125}], "temperature": 1.0}, {"id": 6, "seek": 14765, "start": 127.47, "end": 147.65, "text": "The UI needs an object from the DB interface. Of course, I will not be able to create an object from the interface. Of course, I must create an object from the class that implements the interface. So now I can create a new MySQLDB and pass it to the UI.", "tokens": [2278, 15682, 2203, 364, 2657, 490, 264, 26754, 9226, 13, 2720, 1164, 11, 286, 486, 406, 312, 1075, 281, 1884, 364, 2657, 490, 264, 9226, 13, 2720, 1164, 11, 286, 1633, 1884, 364, 2657, 490, 264, 1508, 300, 704, 17988, 264, 9226, 13, 407, 586, 286, 393, 1884, 257, 777, 1222, 39934, 27735, 293, 1320, 309, 281, 264, 15682, 13], "avg_logprob": -0.3506659972863119, "compression_ratio": 1.7448275862068965, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 127.47, "end": 127.67, "word": "The", "probability": 0.45947265625}, {"start": 127.67, "end": 127.95, "word": " UI", "probability": 0.91259765625}, {"start": 127.95, "end": 128.37, "word": " needs", "probability": 0.6650390625}, {"start": 128.37, "end": 128.55, "word": " an", "probability": 0.63916015625}, {"start": 128.55, "end": 128.71, "word": " object", "probability": 0.9296875}, {"start": 128.71, "end": 129.09, "word": " from", "probability": 0.783203125}, {"start": 129.09, "end": 129.85, "word": " the", "probability": 0.71630859375}, {"start": 129.85, "end": 130.01, "word": " DB", "probability": 0.73486328125}, {"start": 130.01, "end": 130.47, "word": " interface.", "probability": 0.8193359375}, {"start": 130.59, "end": 130.67, "word": " Of", "probability": 0.371337890625}, {"start": 130.67, "end": 130.67, "word": " course,", "probability": 0.943359375}, {"start": 130.89, "end": 131.23, "word": " I", "probability": 0.4091796875}, {"start": 131.23, "end": 131.39, "word": " will", "probability": 0.254150390625}, {"start": 131.39, "end": 131.39, "word": " not", "probability": 0.923828125}, {"start": 131.39, "end": 131.55, "word": " be", "probability": 0.8681640625}, {"start": 131.55, "end": 131.61, "word": " able", "probability": 0.955078125}, {"start": 131.61, "end": 131.75, "word": " to", "probability": 0.9697265625}, {"start": 131.75, "end": 131.87, "word": " create", "probability": 0.7255859375}, {"start": 131.87, "end": 132.05, "word": " an", "probability": 0.7412109375}, {"start": 132.05, "end": 132.19, "word": " object", "probability": 0.974609375}, {"start": 132.19, "end": 132.39, "word": " from", "probability": 0.85986328125}, {"start": 132.39, "end": 132.49, "word": " the", "probability": 0.8544921875}, {"start": 132.49, "end": 133.05, "word": " interface.", "probability": 0.79296875}, {"start": 133.31, "end": 133.41, "word": " Of", "probability": 0.4111328125}, {"start": 133.41, "end": 133.55, "word": " course,", "probability": 0.96435546875}, {"start": 133.63, "end": 133.63, "word": " I", "probability": 0.74658203125}, {"start": 133.63, "end": 133.83, "word": " must", "probability": 0.2900390625}, {"start": 133.83, "end": 133.99, "word": " create", "probability": 0.8447265625}, {"start": 133.99, "end": 134.11, "word": " an", "probability": 0.904296875}, {"start": 134.11, "end": 134.27, "word": " object", "probability": 0.9765625}, {"start": 134.27, "end": 134.59, "word": " from", "probability": 0.86962890625}, {"start": 134.59, "end": 135.47, "word": " the", "probability": 0.8984375}, {"start": 135.47, "end": 135.77, "word": " class", "probability": 0.916015625}, {"start": 135.77, "end": 135.89, "word": " that", "probability": 0.8173828125}, {"start": 135.89, "end": 136.53, "word": " implements", "probability": 0.673095703125}, {"start": 136.53, "end": 136.73, "word": " the", "probability": 0.87353515625}, {"start": 136.73, "end": 137.27, "word": " interface.", "probability": 0.8681640625}, {"start": 137.87, "end": 138.17, "word": " So", "probability": 0.55517578125}, {"start": 138.17, "end": 138.41, "word": " now", "probability": 0.64697265625}, {"start": 138.41, "end": 138.59, "word": " I", "probability": 0.88134765625}, {"start": 138.59, "end": 138.81, "word": " can", "probability": 0.9052734375}, {"start": 138.81, "end": 139.09, "word": " create", "probability": 0.87109375}, {"start": 139.09, "end": 139.21, "word": " a", "probability": 0.9580078125}, {"start": 139.21, "end": 139.49, "word": " new", "probability": 0.884765625}, {"start": 139.49, "end": 143.69, "word": " MySQLDB", "probability": 0.7488606770833334}, {"start": 143.69, "end": 144.19, "word": " and", "probability": 0.697265625}, {"start": 144.19, "end": 144.45, "word": " pass", "probability": 0.7353515625}, {"start": 144.45, "end": 144.89, "word": " it", "probability": 0.525390625}, {"start": 144.89, "end": 146.09, "word": " to", "probability": 0.284423828125}, {"start": 146.09, "end": 146.39, "word": " the", "probability": 0.7333984375}, {"start": 146.39, "end": 147.65, "word": " UI.", "probability": 0.95849609375}], "temperature": 1.0}, {"id": 7, "seek": 17480, "start": 148.92, "end": 174.8, "text": "It's a new UI and it takes the constructor of an object from MySQL DB The dependency was created from outside The tester wants to try the new UI away from the database and its operations For example, the database is not ready yet So I go to the interface and implement something called mockDB And of course I implement the same methods that are in the interface But I put fake data", "tokens": [3522, 311, 257, 777, 15682, 293, 309, 2516, 264, 47479, 295, 364, 2657, 490, 1222, 39934, 26754, 440, 33621, 390, 2942, 490, 2380, 440, 36101, 2738, 281, 853, 264, 777, 15682, 1314, 490, 264, 8149, 293, 1080, 7705, 1171, 1365, 11, 264, 8149, 307, 406, 1919, 1939, 407, 286, 352, 281, 264, 9226, 293, 4445, 746, 1219, 17362, 27735, 400, 295, 1164, 286, 4445, 264, 912, 7150, 300, 366, 294, 264, 9226, 583, 286, 829, 7592, 1412], "avg_logprob": -0.5492788476821704, "compression_ratio": 1.6351931330472103, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 148.92, "end": 149.32, "word": "It's", "probability": 0.35882568359375}, {"start": 149.32, "end": 149.46, "word": " a", "probability": 0.85107421875}, {"start": 149.46, "end": 149.58, "word": " new", "probability": 0.56982421875}, {"start": 149.58, "end": 149.94, "word": " UI", "probability": 0.52392578125}, {"start": 149.94, "end": 150.64, "word": " and", "probability": 0.2022705078125}, {"start": 150.64, "end": 150.82, "word": " it", "probability": 0.47119140625}, {"start": 150.82, "end": 151.12, "word": " takes", "probability": 0.56689453125}, {"start": 151.12, "end": 151.26, "word": " the", "probability": 0.454345703125}, {"start": 151.26, "end": 151.72, "word": " constructor", "probability": 0.86328125}, {"start": 151.72, "end": 151.96, "word": " of", "probability": 0.6533203125}, {"start": 151.96, "end": 152.1, "word": " an", "probability": 0.578125}, {"start": 152.1, "end": 152.32, "word": " object", "probability": 0.966796875}, {"start": 152.32, "end": 152.62, "word": " from", "probability": 0.8203125}, {"start": 152.62, "end": 153.28, "word": " MySQL", "probability": 0.76904296875}, {"start": 153.28, "end": 153.54, "word": " DB", "probability": 0.6064453125}, {"start": 153.54, "end": 153.78, "word": " The", "probability": 0.267333984375}, {"start": 153.78, "end": 154.16, "word": " dependency", "probability": 0.4755859375}, {"start": 154.16, "end": 154.42, "word": " was", "probability": 0.31689453125}, {"start": 154.42, "end": 154.66, "word": " created", "probability": 0.6083984375}, {"start": 154.66, "end": 155.08, "word": " from", "probability": 0.318603515625}, {"start": 155.08, "end": 156.12, "word": " outside", "probability": 0.53125}, {"start": 156.12, "end": 156.74, "word": " The", "probability": 0.218505859375}, {"start": 156.74, "end": 158.4, "word": " tester", "probability": 0.6943359375}, {"start": 158.4, "end": 158.62, "word": " wants", "probability": 0.29443359375}, {"start": 158.62, "end": 158.72, "word": " to", "probability": 0.970703125}, {"start": 158.72, "end": 158.92, "word": " try", "probability": 0.72314453125}, {"start": 158.92, "end": 160.3, "word": " the", "probability": 0.353515625}, {"start": 160.3, "end": 160.44, "word": " new", "probability": 0.281494140625}, {"start": 160.44, "end": 160.8, "word": " UI", "probability": 0.97216796875}, {"start": 160.8, "end": 161.14, "word": " away", "probability": 0.22705078125}, {"start": 161.14, "end": 161.52, "word": " from", "probability": 0.884765625}, {"start": 161.52, "end": 161.86, "word": " the", "probability": 0.65673828125}, {"start": 161.86, "end": 162.26, "word": " database", "probability": 0.94873046875}, {"start": 162.26, "end": 162.34, "word": " and", "probability": 0.86279296875}, {"start": 162.34, "end": 162.38, "word": " its", "probability": 0.148193359375}, {"start": 162.38, "end": 162.98, "word": " operations", "probability": 0.4111328125}, {"start": 162.98, "end": 163.12, "word": " For", "probability": 0.29736328125}, {"start": 163.12, "end": 163.12, "word": " example,", "probability": 0.86962890625}, {"start": 163.12, "end": 163.32, "word": " the", "probability": 0.791015625}, {"start": 163.32, "end": 163.64, "word": " database", "probability": 0.9384765625}, {"start": 163.64, "end": 163.74, "word": " is", "probability": 0.82421875}, {"start": 163.74, "end": 163.82, "word": " not", "probability": 0.72021484375}, {"start": 163.82, "end": 164.14, "word": " ready", "probability": 0.6552734375}, {"start": 164.14, "end": 165.06, "word": " yet", "probability": 0.873046875}, {"start": 165.06, "end": 165.4, "word": " So", "probability": 0.424560546875}, {"start": 165.4, "end": 165.52, "word": " I", "probability": 0.80224609375}, {"start": 165.52, "end": 165.58, "word": " go", "probability": 0.71142578125}, {"start": 165.58, "end": 165.72, "word": " to", "probability": 0.9404296875}, {"start": 165.72, "end": 165.8, "word": " the", "probability": 0.9033203125}, {"start": 165.8, "end": 166.18, "word": " interface", "probability": 0.8310546875}, {"start": 166.18, "end": 166.52, "word": " and", "probability": 0.54052734375}, {"start": 166.52, "end": 167.08, "word": " implement", "probability": 0.5556640625}, {"start": 167.08, "end": 167.58, "word": " something", "probability": 0.398193359375}, {"start": 167.58, "end": 167.86, "word": " called", "probability": 0.8232421875}, {"start": 167.86, "end": 168.46, "word": " mockDB", "probability": 0.435546875}, {"start": 168.46, "end": 170.76, "word": " And", "probability": 0.560546875}, {"start": 170.76, "end": 171.04, "word": " of", "probability": 0.18310546875}, {"start": 171.04, "end": 171.3, "word": " course", "probability": 0.96240234375}, {"start": 171.3, "end": 171.44, "word": " I", "probability": 0.62060546875}, {"start": 171.44, "end": 171.7, "word": " implement", "probability": 0.68896484375}, {"start": 171.7, "end": 171.96, "word": " the", "probability": 0.71240234375}, {"start": 171.96, "end": 172.12, "word": " same", "probability": 0.802734375}, {"start": 172.12, "end": 172.64, "word": " methods", "probability": 0.7666015625}, {"start": 172.64, "end": 172.84, "word": " that", "probability": 0.320068359375}, {"start": 172.84, "end": 172.88, "word": " are", "probability": 0.64599609375}, {"start": 172.88, "end": 173.14, "word": " in", "probability": 0.37548828125}, {"start": 173.14, "end": 173.28, "word": " the", "probability": 0.9130859375}, {"start": 173.28, "end": 173.84, "word": " interface", "probability": 0.84326171875}, {"start": 173.84, "end": 174.16, "word": " But", "probability": 0.544921875}, {"start": 174.16, "end": 174.28, "word": " I", "probability": 0.9345703125}, {"start": 174.28, "end": 174.48, "word": " put", "probability": 0.50244140625}, {"start": 174.48, "end": 174.56, "word": " fake", "probability": 0.87255859375}, {"start": 174.56, "end": 174.8, "word": " data", "probability": 0.81201171875}], "temperature": 1.0}, {"id": 8, "seek": 19145, "start": 176.19, "end": 191.45, "text": "Instead of getting all students, I return a list with static data. All I have to do is when I launch the UI, instead of returning the actual object which is mySQLDB, I return the mockDB.", "tokens": [28411, 2056, 295, 1242, 439, 1731, 11, 286, 2736, 257, 1329, 365, 13437, 1412, 13, 1057, 286, 362, 281, 360, 307, 562, 286, 4025, 264, 15682, 11, 2602, 295, 12678, 264, 3539, 2657, 597, 307, 452, 39934, 27735, 11, 286, 2736, 264, 17362, 27735, 13], "avg_logprob": -0.634850535703742, "compression_ratio": 1.3478260869565217, "no_speech_prob": 0.0, "words": [{"start": 176.19, "end": 176.57, "word": "Instead", "probability": 0.59869384765625}, {"start": 176.57, "end": 177.11, "word": " of", "probability": 0.95751953125}, {"start": 177.11, "end": 177.35, "word": " getting", "probability": 0.2318115234375}, {"start": 177.35, "end": 177.77, "word": " all", "probability": 0.88623046875}, {"start": 177.77, "end": 178.31, "word": " students,", "probability": 0.79296875}, {"start": 178.41, "end": 178.51, "word": " I", "probability": 0.712890625}, {"start": 178.51, "end": 178.89, "word": " return", "probability": 0.127685546875}, {"start": 178.89, "end": 179.17, "word": " a", "probability": 0.453125}, {"start": 179.17, "end": 179.39, "word": " list", "probability": 0.810546875}, {"start": 179.39, "end": 179.95, "word": " with", "probability": 0.233642578125}, {"start": 179.95, "end": 180.57, "word": " static", "probability": 0.72314453125}, {"start": 180.57, "end": 181.21, "word": " data.", "probability": 0.82421875}, {"start": 182.21, "end": 182.69, "word": " All", "probability": 0.1163330078125}, {"start": 182.69, "end": 183.47, "word": " I", "probability": 0.338623046875}, {"start": 183.47, "end": 183.59, "word": " have", "probability": 0.591796875}, {"start": 183.59, "end": 183.63, "word": " to", "probability": 0.96240234375}, {"start": 183.63, "end": 183.85, "word": " do", "probability": 0.9599609375}, {"start": 183.85, "end": 184.19, "word": " is", "probability": 0.70166015625}, {"start": 184.19, "end": 184.43, "word": " when", "probability": 0.076904296875}, {"start": 184.43, "end": 184.57, "word": " I", "probability": 0.75732421875}, {"start": 184.57, "end": 184.77, "word": " launch", "probability": 0.22998046875}, {"start": 184.77, "end": 184.89, "word": " the", "probability": 0.693359375}, {"start": 184.89, "end": 185.21, "word": " UI,", "probability": 0.541015625}, {"start": 185.37, "end": 185.45, "word": " instead", "probability": 0.55810546875}, {"start": 185.45, "end": 185.61, "word": " of", "probability": 0.97119140625}, {"start": 185.61, "end": 186.27, "word": " returning", "probability": 0.1583251953125}, {"start": 186.27, "end": 186.51, "word": " the", "probability": 0.63134765625}, {"start": 186.51, "end": 186.85, "word": " actual", "probability": 0.79150390625}, {"start": 186.85, "end": 187.31, "word": " object", "probability": 0.84228515625}, {"start": 187.31, "end": 187.43, "word": " which", "probability": 0.3955078125}, {"start": 187.43, "end": 187.59, "word": " is", "probability": 0.92724609375}, {"start": 187.59, "end": 189.13, "word": " mySQLDB,", "probability": 0.5865885416666666}, {"start": 189.23, "end": 189.33, "word": " I", "probability": 0.9375}, {"start": 189.33, "end": 189.65, "word": " return", "probability": 0.62451171875}, {"start": 189.65, "end": 190.99, "word": " the", "probability": 0.5185546875}, {"start": 190.99, "end": 191.45, "word": " mockDB.", "probability": 0.6005859375}], "temperature": 1.0}, {"id": 9, "seek": 20646, "start": 195.5, "end": 206.46, "text": "This is called Dependency Injection. It allows me to remove an object and replace it with another object to change the dependency.", "tokens": [5723, 307, 1219, 4056, 521, 3020, 682, 1020, 313, 13, 467, 4045, 385, 281, 4159, 364, 2657, 293, 7406, 309, 365, 1071, 2657, 281, 1319, 264, 33621, 13], "avg_logprob": -0.5748922496006407, "compression_ratio": 1.2745098039215685, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 195.5, "end": 196.1, "word": "This", "probability": 0.38671875}, {"start": 196.1, "end": 196.38, "word": " is", "probability": 0.60595703125}, {"start": 196.38, "end": 196.7, "word": " called", "probability": 0.251708984375}, {"start": 196.7, "end": 197.24, "word": " Dependency", "probability": 0.7652180989583334}, {"start": 197.24, "end": 197.78, "word": " Injection.", "probability": 0.9469401041666666}, {"start": 198.3, "end": 198.68, "word": " It", "probability": 0.34228515625}, {"start": 198.68, "end": 199.82, "word": " allows", "probability": 0.324951171875}, {"start": 199.82, "end": 200.38, "word": " me", "probability": 0.3525390625}, {"start": 200.38, "end": 200.6, "word": " to", "probability": 0.884765625}, {"start": 200.6, "end": 201.76, "word": " remove", "probability": 0.330810546875}, {"start": 201.76, "end": 202.3, "word": " an", "probability": 0.419189453125}, {"start": 202.3, "end": 202.6, "word": " object", "probability": 0.96484375}, {"start": 202.6, "end": 202.8, "word": " and", "probability": 0.67431640625}, {"start": 202.8, "end": 203.02, "word": " replace", "probability": 0.6494140625}, {"start": 203.02, "end": 203.44, "word": " it", "probability": 0.88623046875}, {"start": 203.44, "end": 203.44, "word": " with", "probability": 0.78466796875}, {"start": 203.44, "end": 204.02, "word": " another", "probability": 0.84716796875}, {"start": 204.02, "end": 204.54, "word": " object", "probability": 0.75048828125}, {"start": 204.54, "end": 204.64, "word": " to", "probability": 0.1317138671875}, {"start": 204.64, "end": 205.24, "word": " change", "probability": 0.64404296875}, {"start": 205.24, "end": 206.02, "word": " the", "probability": 0.57763671875}, {"start": 206.02, "end": 206.46, "word": " dependency.", "probability": 0.82177734375}], "temperature": 1.0}, {"id": 10, "seek": 22794, "start": 209.58, "end": 227.94, "text": "The goal of Dependency Injection is good because it gives me flexibility, but the problem is that creating the object becomes more difficult, especially if my dependency is continuous, something needs something and something needs something else and so on, creating the object becomes more difficult, so that's why they made dependency injection frameworks", "tokens": [2278, 3387, 295, 4056, 521, 3020, 682, 1020, 313, 307, 665, 570, 309, 2709, 385, 12635, 11, 457, 264, 1154, 307, 300, 4084, 264, 2657, 3643, 544, 2252, 11, 2318, 498, 452, 33621, 307, 10957, 11, 746, 2203, 746, 293, 746, 2203, 746, 1646, 293, 370, 322, 11, 4084, 264, 2657, 3643, 544, 2252, 11, 370, 300, 311, 983, 436, 1027, 33621, 22873, 29834], "avg_logprob": -0.5168269230769231, "compression_ratio": 1.8835978835978835, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 209.57999999999998, "end": 210.14, "word": "The", "probability": 0.17431640625}, {"start": 210.14, "end": 210.46, "word": " goal", "probability": 0.5322265625}, {"start": 210.46, "end": 210.62, "word": " of", "probability": 0.9501953125}, {"start": 210.62, "end": 211.1, "word": " Dependency", "probability": 0.712890625}, {"start": 211.1, "end": 211.68, "word": " Injection", "probability": 0.9562174479166666}, {"start": 211.68, "end": 211.92, "word": " is", "probability": 0.7705078125}, {"start": 211.92, "end": 212.14, "word": " good", "probability": 0.58349609375}, {"start": 212.14, "end": 212.46, "word": " because", "probability": 0.445556640625}, {"start": 212.46, "end": 212.56, "word": " it", "probability": 0.8828125}, {"start": 212.56, "end": 212.72, "word": " gives", "probability": 0.77490234375}, {"start": 212.72, "end": 212.86, "word": " me", "probability": 0.36328125}, {"start": 212.86, "end": 213.38, "word": " flexibility,", "probability": 0.9013671875}, {"start": 213.76, "end": 213.94, "word": " but", "probability": 0.796875}, {"start": 213.94, "end": 214.76, "word": " the", "probability": 0.5126953125}, {"start": 214.76, "end": 215.22, "word": " problem", "probability": 0.39306640625}, {"start": 215.22, "end": 215.46, "word": " is", "probability": 0.85107421875}, {"start": 215.46, "end": 215.54, "word": " that", "probability": 0.8310546875}, {"start": 215.54, "end": 215.94, "word": " creating", "probability": 0.2978515625}, {"start": 215.94, "end": 216.08, "word": " the", "probability": 0.27734375}, {"start": 216.08, "end": 216.36, "word": " object", "probability": 0.9140625}, {"start": 216.36, "end": 216.74, "word": " becomes", "probability": 0.50732421875}, {"start": 216.74, "end": 217.34, "word": " more", "probability": 0.43115234375}, {"start": 217.34, "end": 217.58, "word": " difficult,", "probability": 0.81005859375}, {"start": 217.74, "end": 218.02, "word": " especially", "probability": 0.74755859375}, {"start": 218.02, "end": 218.22, "word": " if", "probability": 0.77880859375}, {"start": 218.22, "end": 218.3, "word": " my", "probability": 0.344970703125}, {"start": 218.3, "end": 218.74, "word": " dependency", "probability": 0.8837890625}, {"start": 218.74, "end": 219.12, "word": " is", "probability": 0.8154296875}, {"start": 219.12, "end": 219.56, "word": " continuous,", "probability": 0.393310546875}, {"start": 220.14, "end": 220.48, "word": " something", "probability": 0.32177734375}, {"start": 220.48, "end": 220.78, "word": " needs", "probability": 0.8232421875}, {"start": 220.78, "end": 221.18, "word": " something", "probability": 0.71337890625}, {"start": 221.18, "end": 221.3, "word": " and", "probability": 0.393310546875}, {"start": 221.3, "end": 221.56, "word": " something", "probability": 0.53271484375}, {"start": 221.56, "end": 221.88, "word": " needs", "probability": 0.84716796875}, {"start": 221.88, "end": 222.16, "word": " something", "probability": 0.7373046875}, {"start": 222.16, "end": 222.44, "word": " else", "probability": 0.71044921875}, {"start": 222.44, "end": 222.54, "word": " and", "probability": 0.309814453125}, {"start": 222.54, "end": 222.82, "word": " so", "probability": 0.86083984375}, {"start": 222.82, "end": 222.96, "word": " on,", "probability": 0.85107421875}, {"start": 223.6, "end": 223.82, "word": " creating", "probability": 0.6572265625}, {"start": 223.82, "end": 223.98, "word": " the", "probability": 0.71875}, {"start": 223.98, "end": 224.22, "word": " object", "probability": 0.96923828125}, {"start": 224.22, "end": 224.52, "word": " becomes", "probability": 0.493896484375}, {"start": 224.52, "end": 224.72, "word": " more", "probability": 0.77587890625}, {"start": 224.72, "end": 224.96, "word": " difficult,", "probability": 0.90673828125}, {"start": 225.66, "end": 225.78, "word": " so", "probability": 0.27685546875}, {"start": 225.78, "end": 226.14, "word": " that's", "probability": 0.643310546875}, {"start": 226.14, "end": 226.16, "word": " why", "probability": 0.91015625}, {"start": 226.16, "end": 226.24, "word": " they", "probability": 0.53271484375}, {"start": 226.24, "end": 226.36, "word": " made", "probability": 0.460693359375}, {"start": 226.36, "end": 226.88, "word": " dependency", "probability": 0.42724609375}, {"start": 226.88, "end": 227.32, "word": " injection", "probability": 0.93798828125}, {"start": 227.32, "end": 227.94, "word": " frameworks", "probability": 0.87109375}], "temperature": 1.0}, {"id": 11, "seek": 25612, "start": 228.54, "end": 256.12, "text": " Its purpose is to make it easier for you to create objects that have many dependencies by using libraries, especially if they use the Reflection API to create objects. We mentioned in the previous lecture that dependency injection frameworks have become popular these days and are used in various systems. We tried one of the dependency injection libraries, which is called Juice.", "tokens": [6953, 4334, 307, 281, 652, 309, 3571, 337, 291, 281, 1884, 6565, 300, 362, 867, 36606, 538, 1228, 15148, 11, 2318, 498, 436, 764, 264, 16957, 5450, 9362, 281, 1884, 6565, 13, 492, 2835, 294, 264, 3894, 7991, 300, 33621, 22873, 29834, 362, 1813, 3743, 613, 1708, 293, 366, 1143, 294, 3683, 3652, 13, 492, 3031, 472, 295, 264, 33621, 22873, 15148, 11, 597, 307, 1219, 47776, 13], "avg_logprob": -0.4553895048473192, "compression_ratio": 1.6933333333333334, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 228.54, "end": 228.76, "word": " Its", "probability": 0.141845703125}, {"start": 228.76, "end": 229.12, "word": " purpose", "probability": 0.1929931640625}, {"start": 229.12, "end": 230.42, "word": " is", "probability": 0.78271484375}, {"start": 230.42, "end": 230.58, "word": " to", "probability": 0.90576171875}, {"start": 230.58, "end": 231.12, "word": " make", "probability": 0.3466796875}, {"start": 231.12, "end": 231.12, "word": " it", "probability": 0.69384765625}, {"start": 231.12, "end": 231.46, "word": " easier", "probability": 0.85595703125}, {"start": 231.46, "end": 231.6, "word": " for", "probability": 0.48779296875}, {"start": 231.6, "end": 231.78, "word": " you", "probability": 0.7841796875}, {"start": 231.78, "end": 231.94, "word": " to", "probability": 0.927734375}, {"start": 231.94, "end": 232.1, "word": " create", "probability": 0.51953125}, {"start": 232.1, "end": 232.58, "word": " objects", "probability": 0.6416015625}, {"start": 232.58, "end": 232.76, "word": " that", "probability": 0.16650390625}, {"start": 232.76, "end": 232.92, "word": " have", "probability": 0.74658203125}, {"start": 232.92, "end": 232.92, "word": " many", "probability": 0.22265625}, {"start": 232.92, "end": 234.5, "word": " dependencies", "probability": 0.8896484375}, {"start": 234.5, "end": 235.26, "word": " by", "probability": 0.397216796875}, {"start": 235.26, "end": 235.66, "word": " using", "probability": 0.8798828125}, {"start": 235.66, "end": 236.1, "word": " libraries,", "probability": 0.85546875}, {"start": 236.2, "end": 236.52, "word": " especially", "probability": 0.54052734375}, {"start": 236.52, "end": 236.88, "word": " if", "probability": 0.208740234375}, {"start": 236.88, "end": 237.28, "word": " they", "probability": 0.396240234375}, {"start": 237.28, "end": 237.72, "word": " use", "probability": 0.6083984375}, {"start": 237.72, "end": 237.86, "word": " the", "probability": 0.556640625}, {"start": 237.86, "end": 238.3, "word": " Reflection", "probability": 0.75341796875}, {"start": 238.3, "end": 238.64, "word": " API", "probability": 0.94775390625}, {"start": 238.64, "end": 238.94, "word": " to", "probability": 0.7890625}, {"start": 238.94, "end": 239.3, "word": " create", "probability": 0.740234375}, {"start": 239.3, "end": 240.4, "word": " objects.", "probability": 0.8916015625}, {"start": 240.72, "end": 241.4, "word": " We", "probability": 0.43896484375}, {"start": 241.4, "end": 241.62, "word": " mentioned", "probability": 0.62939453125}, {"start": 241.62, "end": 241.8, "word": " in", "probability": 0.8466796875}, {"start": 241.8, "end": 241.82, "word": " the", "probability": 0.60888671875}, {"start": 241.82, "end": 241.82, "word": " previous", "probability": 0.546875}, {"start": 241.82, "end": 242.34, "word": " lecture", "probability": 0.85888671875}, {"start": 242.34, "end": 242.58, "word": " that", "probability": 0.8974609375}, {"start": 242.58, "end": 243.0, "word": " dependency", "probability": 0.8974609375}, {"start": 243.0, "end": 243.34, "word": " injection", "probability": 0.97119140625}, {"start": 243.34, "end": 243.92, "word": " frameworks", "probability": 0.88916015625}, {"start": 243.92, "end": 244.12, "word": " have", "probability": 0.52783203125}, {"start": 244.12, "end": 244.78, "word": " become", "probability": 0.83740234375}, {"start": 244.78, "end": 245.42, "word": " popular", "probability": 0.9189453125}, {"start": 245.42, "end": 245.66, "word": " these", "probability": 0.6181640625}, {"start": 245.66, "end": 246.16, "word": " days", "probability": 0.93310546875}, {"start": 246.16, "end": 246.46, "word": " and", "probability": 0.6865234375}, {"start": 246.46, "end": 246.52, "word": " are", "probability": 0.44921875}, {"start": 246.52, "end": 246.9, "word": " used", "probability": 0.74072265625}, {"start": 246.9, "end": 247.58, "word": " in", "probability": 0.88330078125}, {"start": 247.58, "end": 247.96, "word": " various", "probability": 0.513671875}, {"start": 247.96, "end": 248.44, "word": " systems.", "probability": 0.8896484375}, {"start": 250.16, "end": 250.22, "word": " We", "probability": 0.78662109375}, {"start": 250.22, "end": 250.54, "word": " tried", "probability": 0.67626953125}, {"start": 250.54, "end": 251.48, "word": " one", "probability": 0.81982421875}, {"start": 251.48, "end": 251.84, "word": " of", "probability": 0.79541015625}, {"start": 251.84, "end": 252.2, "word": " the", "probability": 0.6953125}, {"start": 252.2, "end": 252.52, "word": " dependency", "probability": 0.955078125}, {"start": 252.52, "end": 253.2, "word": " injection", "probability": 0.97021484375}, {"start": 253.2, "end": 254.36, "word": " libraries,", "probability": 0.9609375}, {"start": 254.52, "end": 254.56, "word": " which", "probability": 0.427490234375}, {"start": 254.56, "end": 254.76, "word": " is", "probability": 0.880859375}, {"start": 254.76, "end": 255.18, "word": " called", "probability": 0.66259765625}, {"start": 255.18, "end": 256.12, "word": " Juice.", "probability": 0.4931640625}], "temperature": 1.0}, {"id": 12, "seek": 28283, "start": 256.68, "end": 282.84, "text": "We saw an example that if I have a car, the car needs an engine and a wheel, the engine needs a cylinder, the cylinder needs a valve, and the wheel needs a tire. So, in order to create an object from a car, I had to go through these processes, right? These are the steps I used to do when I was creating a car. Now, I started to create it through a line, a straight line like this.", "tokens": [4360, 1866, 364, 1365, 300, 498, 286, 362, 257, 1032, 11, 264, 1032, 2203, 364, 2848, 293, 257, 5589, 11, 264, 2848, 2203, 257, 17884, 11, 264, 17884, 2203, 257, 15294, 11, 293, 264, 5589, 2203, 257, 11756, 13, 407, 11, 294, 1668, 281, 1884, 364, 2657, 490, 257, 1032, 11, 286, 632, 281, 352, 807, 613, 7555, 11, 558, 30, 1981, 366, 264, 4439, 286, 1143, 281, 360, 562, 286, 390, 4084, 257, 1032, 13, 823, 11, 286, 1409, 281, 1884, 309, 807, 257, 1622, 11, 257, 2997, 1622, 411, 341, 13], "avg_logprob": -0.41356381869062464, "compression_ratio": 1.7720930232558139, "no_speech_prob": 4.5299530029296875e-06, "words": [{"start": 256.68, "end": 256.86, "word": "We", "probability": 0.24853515625}, {"start": 256.86, "end": 257.04, "word": " saw", "probability": 0.6171875}, {"start": 257.04, "end": 257.56, "word": " an", "probability": 0.5625}, {"start": 257.56, "end": 257.84, "word": " example", "probability": 0.9736328125}, {"start": 257.84, "end": 258.06, "word": " that", "probability": 0.31640625}, {"start": 258.06, "end": 258.16, "word": " if", "probability": 0.73193359375}, {"start": 258.16, "end": 258.34, "word": " I", "probability": 0.84716796875}, {"start": 258.34, "end": 258.54, "word": " have", "probability": 0.8134765625}, {"start": 258.54, "end": 258.7, "word": " a", "probability": 0.97021484375}, {"start": 258.7, "end": 258.94, "word": " car,", "probability": 0.87451171875}, {"start": 259.7, "end": 259.9, "word": " the", "probability": 0.35302734375}, {"start": 259.9, "end": 260.24, "word": " car", "probability": 0.65771484375}, {"start": 260.24, "end": 261.66, "word": " needs", "probability": 0.7958984375}, {"start": 261.66, "end": 261.84, "word": " an", "probability": 0.55615234375}, {"start": 261.84, "end": 262.02, "word": " engine", "probability": 0.95166015625}, {"start": 262.02, "end": 262.18, "word": " and", "probability": 0.7001953125}, {"start": 262.18, "end": 262.18, "word": " a", "probability": 0.51318359375}, {"start": 262.18, "end": 262.36, "word": " wheel,", "probability": 0.908203125}, {"start": 262.88, "end": 263.6, "word": " the", "probability": 0.66650390625}, {"start": 263.6, "end": 263.84, "word": " engine", "probability": 0.9326171875}, {"start": 263.84, "end": 264.2, "word": " needs", "probability": 0.85986328125}, {"start": 264.2, "end": 264.34, "word": " a", "probability": 0.94677734375}, {"start": 264.34, "end": 264.68, "word": " cylinder,", "probability": 0.79541015625}, {"start": 264.84, "end": 264.94, "word": " the", "probability": 0.79736328125}, {"start": 264.94, "end": 265.22, "word": " cylinder", "probability": 0.8515625}, {"start": 265.22, "end": 265.6, "word": " needs", "probability": 0.87109375}, {"start": 265.6, "end": 265.8, "word": " a", "probability": 0.9736328125}, {"start": 265.8, "end": 266.1, "word": " valve,", "probability": 0.94921875}, {"start": 266.34, "end": 266.42, "word": " and", "probability": 0.4912109375}, {"start": 266.42, "end": 266.42, "word": " the", "probability": 0.8828125}, {"start": 266.42, "end": 266.6, "word": " wheel", "probability": 0.88232421875}, {"start": 266.6, "end": 267.02, "word": " needs", "probability": 0.85302734375}, {"start": 267.02, "end": 267.74, "word": " a", "probability": 0.8408203125}, {"start": 267.74, "end": 268.08, "word": " tire.", "probability": 0.72607421875}, {"start": 268.66, "end": 268.9, "word": " So,", "probability": 0.409912109375}, {"start": 269.0, "end": 269.4, "word": " in", "probability": 0.2861328125}, {"start": 269.4, "end": 269.66, "word": " order", "probability": 0.90771484375}, {"start": 269.66, "end": 270.26, "word": " to", "probability": 0.9296875}, {"start": 270.26, "end": 270.46, "word": " create", "probability": 0.5283203125}, {"start": 270.46, "end": 270.64, "word": " an", "probability": 0.7822265625}, {"start": 270.64, "end": 270.88, "word": " object", "probability": 0.97802734375}, {"start": 270.88, "end": 271.12, "word": " from", "probability": 0.69921875}, {"start": 271.12, "end": 271.26, "word": " a", "probability": 0.76708984375}, {"start": 271.26, "end": 271.52, "word": " car,", "probability": 0.904296875}, {"start": 272.2, "end": 272.4, "word": " I", "probability": 0.92041015625}, {"start": 272.4, "end": 272.44, "word": " had", "probability": 0.6669921875}, {"start": 272.44, "end": 272.74, "word": " to", "probability": 0.96728515625}, {"start": 272.74, "end": 273.02, "word": " go", "probability": 0.3515625}, {"start": 273.02, "end": 273.14, "word": " through", "probability": 0.8466796875}, {"start": 273.14, "end": 273.24, "word": " these", "probability": 0.66357421875}, {"start": 273.24, "end": 273.68, "word": " processes,", "probability": 0.46435546875}, {"start": 274.24, "end": 274.52, "word": " right?", "probability": 0.79443359375}, {"start": 274.98, "end": 275.14, "word": " These", "probability": 0.263916015625}, {"start": 275.14, "end": 275.22, "word": " are", "probability": 0.4501953125}, {"start": 275.22, "end": 276.06, "word": " the", "probability": 0.8818359375}, {"start": 276.06, "end": 276.28, "word": " steps", "probability": 0.7431640625}, {"start": 276.28, "end": 276.5, "word": " I", "probability": 0.6611328125}, {"start": 276.5, "end": 276.64, "word": " used", "probability": 0.401611328125}, {"start": 276.64, "end": 276.64, "word": " to", "probability": 0.92724609375}, {"start": 276.64, "end": 276.82, "word": " do", "probability": 0.435546875}, {"start": 276.82, "end": 277.0, "word": " when", "probability": 0.79833984375}, {"start": 277.0, "end": 277.3, "word": " I", "probability": 0.880859375}, {"start": 277.3, "end": 277.3, "word": " was", "probability": 0.3681640625}, {"start": 277.3, "end": 277.52, "word": " creating", "probability": 0.59130859375}, {"start": 277.52, "end": 277.64, "word": " a", "probability": 0.87353515625}, {"start": 277.64, "end": 277.8, "word": " car.", "probability": 0.92822265625}, {"start": 277.9, "end": 278.24, "word": " Now,", "probability": 0.84375}, {"start": 278.74, "end": 279.04, "word": " I", "probability": 0.943359375}, {"start": 279.04, "end": 279.04, "word": " started", "probability": 0.349365234375}, {"start": 279.04, "end": 279.18, "word": " to", "probability": 0.431884765625}, {"start": 279.18, "end": 279.32, "word": " create", "probability": 0.75}, {"start": 279.32, "end": 279.48, "word": " it", "probability": 0.5185546875}, {"start": 279.48, "end": 279.8, "word": " through", "probability": 0.640625}, {"start": 279.8, "end": 280.0, "word": " a", "probability": 0.72607421875}, {"start": 280.0, "end": 280.22, "word": " line,", "probability": 0.51416015625}, {"start": 281.1, "end": 281.7, "word": " a", "probability": 0.6005859375}, {"start": 281.7, "end": 281.84, "word": " straight", "probability": 0.288818359375}, {"start": 281.84, "end": 282.18, "word": " line", "probability": 0.908203125}, {"start": 282.18, "end": 282.32, "word": " like", "probability": 0.60107421875}, {"start": 282.32, "end": 282.84, "word": " this.", "probability": 0.91943359375}], "temperature": 1.0}, {"id": 13, "seek": 31237, "start": 283.85, "end": 312.37, "text": " Of course, how did we do it? All you have to do is go to constructors and put annotation called inject, okay? And that's it, it executes this line that says juice create injector get instance car.class and the injector itself sees the tree, for example, it goes to the car, it searches for this annotation, inject. This is inject, it goes to the car. What does the car need to start? Engine wheel.", "tokens": [2720, 1164, 11, 577, 630, 321, 360, 309, 30, 1057, 291, 362, 281, 360, 307, 352, 281, 7690, 830, 293, 829, 48654, 1219, 10711, 11, 1392, 30, 400, 300, 311, 309, 11, 309, 4454, 1819, 341, 1622, 300, 1619, 8544, 1884, 10711, 284, 483, 5197, 1032, 13, 11665, 293, 264, 10711, 284, 2564, 8194, 264, 4230, 11, 337, 1365, 11, 309, 1709, 281, 264, 1032, 11, 309, 26701, 337, 341, 48654, 11, 10711, 13, 639, 307, 10711, 11, 309, 1709, 281, 264, 1032, 13, 708, 775, 264, 1032, 643, 281, 722, 30, 7659, 5589, 13], "avg_logprob": -0.4062499897554517, "compression_ratio": 1.7081545064377683, "no_speech_prob": 1.9669532775878906e-06, "words": [{"start": 283.85, "end": 284.09, "word": " Of", "probability": 0.1075439453125}, {"start": 284.09, "end": 284.15, "word": " course,", "probability": 0.92919921875}, {"start": 284.27, "end": 284.37, "word": " how", "probability": 0.59375}, {"start": 284.37, "end": 284.51, "word": " did", "probability": 0.52197265625}, {"start": 284.51, "end": 284.69, "word": " we", "probability": 0.892578125}, {"start": 284.69, "end": 284.69, "word": " do", "probability": 0.7744140625}, {"start": 284.69, "end": 284.95, "word": " it?", "probability": 0.7236328125}, {"start": 285.11, "end": 285.31, "word": " All", "probability": 0.66650390625}, {"start": 285.31, "end": 285.49, "word": " you", "probability": 0.8349609375}, {"start": 285.49, "end": 285.63, "word": " have", "probability": 0.5244140625}, {"start": 285.63, "end": 285.65, "word": " to", "probability": 0.9716796875}, {"start": 285.65, "end": 285.85, "word": " do", "probability": 0.9609375}, {"start": 285.85, "end": 286.07, "word": " is", "probability": 0.8876953125}, {"start": 286.07, "end": 286.33, "word": " go", "probability": 0.6044921875}, {"start": 286.33, "end": 286.45, "word": " to", "probability": 0.91552734375}, {"start": 286.45, "end": 287.27, "word": " constructors", "probability": 0.68505859375}, {"start": 287.27, "end": 288.83, "word": " and", "probability": 0.36962890625}, {"start": 288.83, "end": 289.05, "word": " put", "probability": 0.318359375}, {"start": 289.05, "end": 289.39, "word": " annotation", "probability": 0.72021484375}, {"start": 289.39, "end": 289.93, "word": " called", "probability": 0.471435546875}, {"start": 289.93, "end": 290.85, "word": " inject,", "probability": 0.5615234375}, {"start": 291.15, "end": 291.67, "word": " okay?", "probability": 0.302734375}, {"start": 292.33, "end": 292.47, "word": " And", "probability": 0.62939453125}, {"start": 292.47, "end": 292.59, "word": " that's", "probability": 0.757568359375}, {"start": 292.59, "end": 292.65, "word": " it,", "probability": 0.88623046875}, {"start": 292.73, "end": 292.79, "word": " it", "probability": 0.283203125}, {"start": 292.79, "end": 293.05, "word": " executes", "probability": 0.644287109375}, {"start": 293.05, "end": 293.19, "word": " this", "probability": 0.8232421875}, {"start": 293.19, "end": 293.45, "word": " line", "probability": 0.84619140625}, {"start": 293.45, "end": 293.95, "word": " that", "probability": 0.3095703125}, {"start": 293.95, "end": 294.39, "word": " says", "probability": 0.6416015625}, {"start": 294.39, "end": 294.77, "word": " juice", "probability": 0.62109375}, {"start": 294.77, "end": 295.17, "word": " create", "probability": 0.82421875}, {"start": 295.17, "end": 295.99, "word": " injector", "probability": 0.921630859375}, {"start": 295.99, "end": 296.59, "word": " get", "probability": 0.8046875}, {"start": 296.59, "end": 297.21, "word": " instance", "probability": 0.6044921875}, {"start": 297.21, "end": 297.59, "word": " car", "probability": 0.810546875}, {"start": 297.59, "end": 298.55, "word": ".class", "probability": 0.80126953125}, {"start": 298.55, "end": 299.29, "word": " and", "probability": 0.49560546875}, {"start": 299.29, "end": 299.37, "word": " the", "probability": 0.75732421875}, {"start": 299.37, "end": 299.83, "word": " injector", "probability": 0.957275390625}, {"start": 299.83, "end": 300.33, "word": " itself", "probability": 0.3125}, {"start": 300.33, "end": 300.73, "word": " sees", "probability": 0.64111328125}, {"start": 300.73, "end": 300.93, "word": " the", "probability": 0.87255859375}, {"start": 300.93, "end": 301.21, "word": " tree,", "probability": 0.82275390625}, {"start": 301.47, "end": 301.63, "word": " for", "probability": 0.80615234375}, {"start": 301.63, "end": 301.75, "word": " example,", "probability": 0.9453125}, {"start": 301.87, "end": 301.91, "word": " it", "probability": 0.369873046875}, {"start": 301.91, "end": 302.03, "word": " goes", "probability": 0.92236328125}, {"start": 302.03, "end": 302.17, "word": " to", "probability": 0.962890625}, {"start": 302.17, "end": 302.33, "word": " the", "probability": 0.84375}, {"start": 302.33, "end": 302.51, "word": " car,", "probability": 0.9130859375}, {"start": 303.11, "end": 303.13, "word": " it", "probability": 0.755859375}, {"start": 303.13, "end": 304.31, "word": " searches", "probability": 0.2529296875}, {"start": 304.31, "end": 304.63, "word": " for", "probability": 0.830078125}, {"start": 304.63, "end": 306.17, "word": " this", "probability": 0.81689453125}, {"start": 306.17, "end": 307.33, "word": " annotation,", "probability": 0.97412109375}, {"start": 307.61, "end": 307.95, "word": " inject.", "probability": 0.85400390625}, {"start": 308.43, "end": 308.91, "word": " This", "probability": 0.64208984375}, {"start": 308.91, "end": 308.95, "word": " is", "probability": 0.89892578125}, {"start": 308.95, "end": 309.21, "word": " inject,", "probability": 0.79443359375}, {"start": 309.33, "end": 309.43, "word": " it", "probability": 0.90673828125}, {"start": 309.43, "end": 309.55, "word": " goes", "probability": 0.9404296875}, {"start": 309.55, "end": 309.69, "word": " to", "probability": 0.9677734375}, {"start": 309.69, "end": 309.81, "word": " the", "probability": 0.8955078125}, {"start": 309.81, "end": 309.89, "word": " car.", "probability": 0.92431640625}, {"start": 309.93, "end": 310.05, "word": " What", "probability": 0.7998046875}, {"start": 310.05, "end": 310.05, "word": " does", "probability": 0.9501953125}, {"start": 310.05, "end": 310.07, "word": " the", "probability": 0.82080078125}, {"start": 310.07, "end": 310.21, "word": " car", "probability": 0.921875}, {"start": 310.21, "end": 310.83, "word": " need", "probability": 0.9169921875}, {"start": 310.83, "end": 311.07, "word": " to", "probability": 0.87060546875}, {"start": 311.07, "end": 311.33, "word": " start?", "probability": 0.28759765625}, {"start": 311.61, "end": 312.09, "word": " Engine", "probability": 0.86181640625}, {"start": 312.09, "end": 312.37, "word": " wheel.", "probability": 0.81689453125}], "temperature": 1.0}, {"id": 14, "seek": 33703, "start": 313.15, "end": 337.03, "text": "It enters the engine and what does the engine need? A cylinder. It builds the dependencies and then builds the object itself until it reaches the car. This process is done by itself. We tried it in the previous lecture, but we still haven't tried all the cases. Because there are certain cases, for example, if I use an external library.", "tokens": [3522, 18780, 264, 2848, 293, 437, 775, 264, 2848, 643, 30, 316, 17884, 13, 467, 15182, 264, 36606, 293, 550, 15182, 264, 2657, 2564, 1826, 309, 14235, 264, 1032, 13, 639, 1399, 307, 1096, 538, 2564, 13, 492, 3031, 309, 294, 264, 3894, 7991, 11, 457, 321, 920, 2378, 380, 3031, 439, 264, 3331, 13, 1436, 456, 366, 1629, 3331, 11, 337, 1365, 11, 498, 286, 764, 364, 8320, 6405, 13], "avg_logprob": -0.504774298104975, "compression_ratio": 1.5971563981042654, "no_speech_prob": 4.231929779052734e-06, "words": [{"start": 313.15, "end": 313.37, "word": "It", "probability": 0.11669921875}, {"start": 313.37, "end": 313.91, "word": " enters", "probability": 0.31591796875}, {"start": 313.91, "end": 314.13, "word": " the", "probability": 0.68310546875}, {"start": 314.13, "end": 314.43, "word": " engine", "probability": 0.89306640625}, {"start": 314.43, "end": 314.87, "word": " and", "probability": 0.29345703125}, {"start": 314.87, "end": 314.91, "word": " what", "probability": 0.317626953125}, {"start": 314.91, "end": 314.91, "word": " does", "probability": 0.88720703125}, {"start": 314.91, "end": 314.95, "word": " the", "probability": 0.759765625}, {"start": 314.95, "end": 315.11, "word": " engine", "probability": 0.93359375}, {"start": 315.11, "end": 315.83, "word": " need?", "probability": 0.81396484375}, {"start": 316.03, "end": 316.23, "word": " A", "probability": 0.5673828125}, {"start": 316.23, "end": 316.59, "word": " cylinder.", "probability": 0.76318359375}, {"start": 317.83, "end": 318.39, "word": " It", "probability": 0.69970703125}, {"start": 318.39, "end": 318.55, "word": " builds", "probability": 0.27587890625}, {"start": 318.55, "end": 318.79, "word": " the", "probability": 0.389404296875}, {"start": 318.79, "end": 319.43, "word": " dependencies", "probability": 0.63232421875}, {"start": 319.43, "end": 319.75, "word": " and", "probability": 0.646484375}, {"start": 319.75, "end": 319.79, "word": " then", "probability": 0.50732421875}, {"start": 319.79, "end": 320.43, "word": " builds", "probability": 0.431396484375}, {"start": 320.43, "end": 320.99, "word": " the", "probability": 0.7958984375}, {"start": 320.99, "end": 321.33, "word": " object", "probability": 0.873046875}, {"start": 321.33, "end": 321.67, "word": " itself", "probability": 0.56103515625}, {"start": 321.67, "end": 321.89, "word": " until", "probability": 0.52001953125}, {"start": 321.89, "end": 321.99, "word": " it", "probability": 0.8056640625}, {"start": 321.99, "end": 322.19, "word": " reaches", "probability": 0.422607421875}, {"start": 322.19, "end": 322.37, "word": " the", "probability": 0.80810546875}, {"start": 322.37, "end": 322.57, "word": " car.", "probability": 0.861328125}, {"start": 323.53, "end": 323.85, "word": " This", "probability": 0.32958984375}, {"start": 323.85, "end": 324.15, "word": " process", "probability": 0.7626953125}, {"start": 324.15, "end": 324.29, "word": " is", "probability": 0.5224609375}, {"start": 324.29, "end": 324.55, "word": " done", "probability": 0.53515625}, {"start": 324.55, "end": 325.53, "word": " by", "probability": 0.6875}, {"start": 325.53, "end": 325.81, "word": " itself.", "probability": 0.69580078125}, {"start": 326.61, "end": 327.17, "word": " We", "probability": 0.63037109375}, {"start": 327.17, "end": 327.41, "word": " tried", "probability": 0.73046875}, {"start": 327.41, "end": 327.59, "word": " it", "probability": 0.425537109375}, {"start": 327.59, "end": 327.65, "word": " in", "probability": 0.54931640625}, {"start": 327.65, "end": 327.69, "word": " the", "probability": 0.71728515625}, {"start": 327.69, "end": 328.15, "word": " previous", "probability": 0.417236328125}, {"start": 328.15, "end": 328.15, "word": " lecture,", "probability": 0.83154296875}, {"start": 328.25, "end": 328.43, "word": " but", "probability": 0.89501953125}, {"start": 328.43, "end": 328.79, "word": " we", "probability": 0.7861328125}, {"start": 328.79, "end": 328.85, "word": " still", "probability": 0.1925048828125}, {"start": 328.85, "end": 329.21, "word": " haven't", "probability": 0.7529296875}, {"start": 329.21, "end": 329.59, "word": " tried", "probability": 0.86181640625}, {"start": 329.59, "end": 329.89, "word": " all", "probability": 0.88720703125}, {"start": 329.89, "end": 329.95, "word": " the", "probability": 0.46337890625}, {"start": 329.95, "end": 330.33, "word": " cases.", "probability": 0.78857421875}, {"start": 332.31, "end": 332.61, "word": " Because", "probability": 0.74267578125}, {"start": 332.61, "end": 332.75, "word": " there", "probability": 0.8427734375}, {"start": 332.75, "end": 332.79, "word": " are", "probability": 0.921875}, {"start": 332.79, "end": 333.39, "word": " certain", "probability": 0.6279296875}, {"start": 333.39, "end": 333.53, "word": " cases,", "probability": 0.88037109375}, {"start": 334.69, "end": 335.41, "word": " for", "probability": 0.85009765625}, {"start": 335.41, "end": 335.59, "word": " example,", "probability": 0.9462890625}, {"start": 335.71, "end": 335.81, "word": " if", "probability": 0.828125}, {"start": 335.81, "end": 336.01, "word": " I", "probability": 0.98779296875}, {"start": 336.01, "end": 336.33, "word": " use", "probability": 0.68359375}, {"start": 336.33, "end": 336.75, "word": " an", "probability": 0.68017578125}, {"start": 336.75, "end": 337.03, "word": " external", "probability": 0.2393798828125}, {"start": 337.03, "end": 337.03, "word": " library.", "probability": 0.8291015625}], "temperature": 1.0}, {"id": 15, "seek": 36692, "start": 338.38, "end": 366.92, "text": " In this case, I will not be able to put at inject Right or not guys? Because I don't have the code So let's see how to solve this problem Another case is that I'm learning with interface So if we assume for example that the wire or the engine is an interface or abstract class Okay, interface, for example, let's try it Go to the wire and tell it, we don't want to make it class, I want to call it interface That's it, I changed it from class to interface", "tokens": [682, 341, 1389, 11, 286, 486, 406, 312, 1075, 281, 829, 412, 10711, 1779, 420, 406, 1074, 30, 1436, 286, 500, 380, 362, 264, 3089, 407, 718, 311, 536, 577, 281, 5039, 341, 1154, 3996, 1389, 307, 300, 286, 478, 2539, 365, 9226, 407, 498, 321, 6552, 337, 1365, 300, 264, 6234, 420, 264, 2848, 307, 364, 9226, 420, 12649, 1508, 1033, 11, 9226, 11, 337, 1365, 11, 718, 311, 853, 309, 1037, 281, 264, 6234, 293, 980, 309, 11, 321, 500, 380, 528, 281, 652, 309, 1508, 11, 286, 528, 281, 818, 309, 9226, 663, 311, 309, 11, 286, 3105, 309, 490, 1508, 281, 9226], "avg_logprob": -0.4830607331801798, "compression_ratio": 1.7404580152671756, "no_speech_prob": 3.874301910400391e-06, "words": [{"start": 338.38, "end": 338.54, "word": " In", "probability": 0.309326171875}, {"start": 338.54, "end": 338.64, "word": " this", "probability": 0.77294921875}, {"start": 338.64, "end": 338.8, "word": " case,", "probability": 0.8466796875}, {"start": 339.0, "end": 339.2, "word": " I", "probability": 0.86328125}, {"start": 339.2, "end": 339.2, "word": " will", "probability": 0.1722412109375}, {"start": 339.2, "end": 339.2, "word": " not", "probability": 0.7822265625}, {"start": 339.2, "end": 339.38, "word": " be", "probability": 0.837890625}, {"start": 339.38, "end": 339.46, "word": " able", "probability": 0.94921875}, {"start": 339.46, "end": 339.6, "word": " to", "probability": 0.96875}, {"start": 339.6, "end": 339.8, "word": " put", "probability": 0.2415771484375}, {"start": 339.8, "end": 340.06, "word": " at", "probability": 0.1513671875}, {"start": 340.06, "end": 340.44, "word": " inject", "probability": 0.8203125}, {"start": 340.44, "end": 340.98, "word": " Right", "probability": 0.2362060546875}, {"start": 340.98, "end": 341.14, "word": " or", "probability": 0.61865234375}, {"start": 341.14, "end": 341.2, "word": " not", "probability": 0.404541015625}, {"start": 341.2, "end": 341.4, "word": " guys?", "probability": 0.45654296875}, {"start": 341.64, "end": 342.0, "word": " Because", "probability": 0.7822265625}, {"start": 342.0, "end": 342.3, "word": " I", "probability": 0.810546875}, {"start": 342.3, "end": 342.42, "word": " don't", "probability": 0.8095703125}, {"start": 342.42, "end": 342.72, "word": " have", "probability": 0.9384765625}, {"start": 342.72, "end": 342.72, "word": " the", "probability": 0.736328125}, {"start": 342.72, "end": 342.72, "word": " code", "probability": 0.93505859375}, {"start": 342.72, "end": 343.72, "word": " So", "probability": 0.609375}, {"start": 343.72, "end": 343.92, "word": " let's", "probability": 0.751708984375}, {"start": 343.92, "end": 344.08, "word": " see", "probability": 0.8095703125}, {"start": 344.08, "end": 344.26, "word": " how", "probability": 0.91796875}, {"start": 344.26, "end": 344.36, "word": " to", "probability": 0.646484375}, {"start": 344.36, "end": 344.52, "word": " solve", "probability": 0.8251953125}, {"start": 344.52, "end": 345.08, "word": " this", "probability": 0.91796875}, {"start": 345.08, "end": 345.08, "word": " problem", "probability": 0.8330078125}, {"start": 345.08, "end": 345.18, "word": " Another", "probability": 0.44970703125}, {"start": 345.18, "end": 345.62, "word": " case", "probability": 0.63232421875}, {"start": 345.62, "end": 346.12, "word": " is", "probability": 0.3515625}, {"start": 346.12, "end": 347.18, "word": " that", "probability": 0.393310546875}, {"start": 347.18, "end": 347.42, "word": " I'm", "probability": 0.6556396484375}, {"start": 347.42, "end": 347.66, "word": " learning", "probability": 0.79296875}, {"start": 347.66, "end": 347.82, "word": " with", "probability": 0.30419921875}, {"start": 347.82, "end": 348.36, "word": " interface", "probability": 0.5693359375}, {"start": 348.36, "end": 350.64, "word": " So", "probability": 0.2337646484375}, {"start": 350.64, "end": 351.06, "word": " if", "probability": 0.36474609375}, {"start": 351.06, "end": 351.1, "word": " we", "probability": 0.75390625}, {"start": 351.1, "end": 351.32, "word": " assume", "probability": 0.439208984375}, {"start": 351.32, "end": 351.52, "word": " for", "probability": 0.31787109375}, {"start": 351.52, "end": 351.72, "word": " example", "probability": 0.953125}, {"start": 351.72, "end": 351.96, "word": " that", "probability": 0.74462890625}, {"start": 351.96, "end": 352.1, "word": " the", "probability": 0.751953125}, {"start": 352.1, "end": 352.32, "word": " wire", "probability": 0.19287109375}, {"start": 352.32, "end": 352.5, "word": " or", "probability": 0.92236328125}, {"start": 352.5, "end": 352.62, "word": " the", "probability": 0.50830078125}, {"start": 352.62, "end": 352.86, "word": " engine", "probability": 0.88720703125}, {"start": 352.86, "end": 353.18, "word": " is", "probability": 0.46923828125}, {"start": 353.18, "end": 353.56, "word": " an", "probability": 0.330322265625}, {"start": 353.56, "end": 354.08, "word": " interface", "probability": 0.89599609375}, {"start": 354.08, "end": 354.26, "word": " or", "probability": 0.7119140625}, {"start": 354.26, "end": 354.6, "word": " abstract", "probability": 0.1783447265625}, {"start": 354.6, "end": 355.02, "word": " class", "probability": 0.974609375}, {"start": 355.02, "end": 356.58, "word": " Okay,", "probability": 0.27294921875}, {"start": 356.62, "end": 357.14, "word": " interface,", "probability": 0.56689453125}, {"start": 357.52, "end": 357.54, "word": " for", "probability": 0.4609375}, {"start": 357.54, "end": 358.04, "word": " example,", "probability": 0.966796875}, {"start": 358.14, "end": 358.38, "word": " let's", "probability": 0.956298828125}, {"start": 358.38, "end": 358.66, "word": " try", "probability": 0.91748046875}, {"start": 358.66, "end": 358.98, "word": " it", "probability": 0.59765625}, {"start": 358.98, "end": 359.28, "word": " Go", "probability": 0.67138671875}, {"start": 359.28, "end": 359.42, "word": " to", "probability": 0.9609375}, {"start": 359.42, "end": 359.58, "word": " the", "probability": 0.8759765625}, {"start": 359.58, "end": 359.82, "word": " wire", "probability": 0.82763671875}, {"start": 359.82, "end": 360.0, "word": " and", "probability": 0.83447265625}, {"start": 360.0, "end": 360.14, "word": " tell", "probability": 0.55615234375}, {"start": 360.14, "end": 360.24, "word": " it,", "probability": 0.56787109375}, {"start": 360.24, "end": 360.44, "word": " we", "probability": 0.2181396484375}, {"start": 360.44, "end": 360.62, "word": " don't", "probability": 0.900634765625}, {"start": 360.62, "end": 360.7, "word": " want", "probability": 0.82080078125}, {"start": 360.7, "end": 360.78, "word": " to", "probability": 0.5771484375}, {"start": 360.78, "end": 360.98, "word": " make", "probability": 0.400146484375}, {"start": 360.98, "end": 361.12, "word": " it", "probability": 0.85205078125}, {"start": 361.12, "end": 362.16, "word": " class,", "probability": 0.56689453125}, {"start": 362.36, "end": 362.44, "word": " I", "probability": 0.7177734375}, {"start": 362.44, "end": 362.5, "word": " want", "probability": 0.630859375}, {"start": 362.5, "end": 362.54, "word": " to", "probability": 0.96875}, {"start": 362.54, "end": 362.64, "word": " call", "probability": 0.400390625}, {"start": 362.64, "end": 362.76, "word": " it", "probability": 0.89990234375}, {"start": 362.76, "end": 363.38, "word": " interface", "probability": 0.81787109375}, {"start": 363.38, "end": 365.32, "word": " That's", "probability": 0.844482421875}, {"start": 365.32, "end": 365.34, "word": " it,", "probability": 0.9130859375}, {"start": 365.4, "end": 365.42, "word": " I", "probability": 0.857421875}, {"start": 365.42, "end": 365.64, "word": " changed", "probability": 0.8486328125}, {"start": 365.64, "end": 365.82, "word": " it", "probability": 0.677734375}, {"start": 365.82, "end": 365.94, "word": " from", "probability": 0.80224609375}, {"start": 365.94, "end": 366.28, "word": " class", "probability": 0.96044921875}, {"start": 366.28, "end": 366.44, "word": " to", "probability": 0.97607421875}, {"start": 366.44, "end": 366.92, "word": " interface", "probability": 0.88330078125}], "temperature": 1.0}, {"id": 16, "seek": 39639, "start": 367.65, "end": 396.39, "text": " And I told him to make me a car. He ran and made an error. Why? I told him that there was no implementation for the tire that was bound. He did not find an implementation for the tire. The tire is where he needs it. From inside the wheel. Right or wrong? He wanted to extract an object from the tire. He found an interface. An interface cannot be extracted from an object. So how do we deal if I have an interface or abstract class?", "tokens": [400, 286, 1907, 796, 281, 652, 385, 257, 1032, 13, 634, 5872, 293, 1027, 364, 6713, 13, 1545, 30, 286, 1907, 796, 300, 456, 390, 572, 11420, 337, 264, 11756, 300, 390, 5472, 13, 634, 630, 406, 915, 364, 11420, 337, 264, 11756, 13, 440, 11756, 307, 689, 415, 2203, 309, 13, 3358, 1854, 264, 5589, 13, 1779, 420, 2085, 30, 634, 1415, 281, 8947, 364, 2657, 490, 264, 11756, 13, 634, 1352, 364, 9226, 13, 1107, 9226, 2644, 312, 34086, 490, 364, 2657, 13, 407, 577, 360, 321, 2028, 498, 286, 362, 364, 9226, 420, 12649, 1508, 30], "avg_logprob": -0.5300000059604645, "compression_ratio": 1.8270042194092826, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 367.65, "end": 367.89, "word": " And", "probability": 0.2381591796875}, {"start": 367.89, "end": 368.23, "word": " I", "probability": 0.69140625}, {"start": 368.23, "end": 368.43, "word": " told", "probability": 0.5322265625}, {"start": 368.43, "end": 368.59, "word": " him", "probability": 0.8896484375}, {"start": 368.59, "end": 368.65, "word": " to", "probability": 0.82470703125}, {"start": 368.65, "end": 368.75, "word": " make", "probability": 0.46923828125}, {"start": 368.75, "end": 368.95, "word": " me", "probability": 0.36669921875}, {"start": 368.95, "end": 368.95, "word": " a", "probability": 0.96044921875}, {"start": 368.95, "end": 369.15, "word": " car.", "probability": 0.79443359375}, {"start": 371.07, "end": 371.25, "word": " He", "probability": 0.5146484375}, {"start": 371.25, "end": 371.47, "word": " ran", "probability": 0.4912109375}, {"start": 371.47, "end": 372.01, "word": " and", "probability": 0.57177734375}, {"start": 372.01, "end": 372.19, "word": " made", "probability": 0.364990234375}, {"start": 372.19, "end": 372.35, "word": " an", "probability": 0.5634765625}, {"start": 372.35, "end": 372.55, "word": " error.", "probability": 0.88916015625}, {"start": 373.43, "end": 373.77, "word": " Why?", "probability": 0.72119140625}, {"start": 373.89, "end": 374.19, "word": " I", "probability": 0.2147216796875}, {"start": 374.19, "end": 374.31, "word": " told", "probability": 0.5986328125}, {"start": 374.31, "end": 374.39, "word": " him", "probability": 0.93310546875}, {"start": 374.39, "end": 374.55, "word": " that", "probability": 0.576171875}, {"start": 374.55, "end": 375.09, "word": " there", "probability": 0.232666015625}, {"start": 375.09, "end": 375.73, "word": " was", "probability": 0.59033203125}, {"start": 375.73, "end": 375.91, "word": " no", "probability": 0.93408203125}, {"start": 375.91, "end": 376.63, "word": " implementation", "probability": 0.77001953125}, {"start": 376.63, "end": 376.97, "word": " for", "probability": 0.76123046875}, {"start": 376.97, "end": 377.11, "word": " the", "probability": 0.332275390625}, {"start": 377.11, "end": 377.33, "word": " tire", "probability": 0.449462890625}, {"start": 377.33, "end": 377.83, "word": " that", "probability": 0.1591796875}, {"start": 377.83, "end": 377.91, "word": " was", "probability": 0.779296875}, {"start": 377.91, "end": 378.23, "word": " bound.", "probability": 0.728515625}, {"start": 378.77, "end": 379.19, "word": " He", "probability": 0.333740234375}, {"start": 379.19, "end": 379.19, "word": " did", "probability": 0.235595703125}, {"start": 379.19, "end": 379.19, "word": " not", "probability": 0.935546875}, {"start": 379.19, "end": 379.41, "word": " find", "probability": 0.8525390625}, {"start": 379.41, "end": 379.51, "word": " an", "probability": 0.427490234375}, {"start": 379.51, "end": 379.97, "word": " implementation", "probability": 0.8837890625}, {"start": 379.97, "end": 380.25, "word": " for", "probability": 0.85302734375}, {"start": 380.25, "end": 381.57, "word": " the", "probability": 0.8642578125}, {"start": 381.57, "end": 381.79, "word": " tire.", "probability": 0.8515625}, {"start": 382.89, "end": 383.33, "word": " The", "probability": 0.3720703125}, {"start": 383.33, "end": 383.53, "word": " tire", "probability": 0.8154296875}, {"start": 383.53, "end": 383.65, "word": " is", "probability": 0.56689453125}, {"start": 383.65, "end": 383.89, "word": " where", "probability": 0.172607421875}, {"start": 383.89, "end": 384.11, "word": " he", "probability": 0.40087890625}, {"start": 384.11, "end": 384.39, "word": " needs", "probability": 0.65869140625}, {"start": 384.39, "end": 384.81, "word": " it.", "probability": 0.798828125}, {"start": 384.81, "end": 385.17, "word": " From", "probability": 0.4345703125}, {"start": 385.17, "end": 385.35, "word": " inside", "probability": 0.45556640625}, {"start": 385.35, "end": 385.47, "word": " the", "probability": 0.87451171875}, {"start": 385.47, "end": 385.67, "word": " wheel.", "probability": 0.931640625}, {"start": 386.21, "end": 386.39, "word": " Right", "probability": 0.291259765625}, {"start": 386.39, "end": 386.59, "word": " or", "probability": 0.7578125}, {"start": 386.59, "end": 386.59, "word": " wrong?", "probability": 0.59912109375}, {"start": 386.61, "end": 386.71, "word": " He", "probability": 0.6806640625}, {"start": 386.71, "end": 386.85, "word": " wanted", "probability": 0.35205078125}, {"start": 386.85, "end": 387.07, "word": " to", "probability": 0.96142578125}, {"start": 387.07, "end": 387.17, "word": " extract", "probability": 0.41259765625}, {"start": 387.17, "end": 387.33, "word": " an", "probability": 0.6298828125}, {"start": 387.33, "end": 387.51, "word": " object", "probability": 0.97900390625}, {"start": 387.51, "end": 387.73, "word": " from", "probability": 0.8310546875}, {"start": 387.73, "end": 387.85, "word": " the", "probability": 0.87451171875}, {"start": 387.85, "end": 388.03, "word": " tire.", "probability": 0.8779296875}, {"start": 388.29, "end": 388.69, "word": " He", "probability": 0.72119140625}, {"start": 388.69, "end": 388.77, "word": " found", "probability": 0.89013671875}, {"start": 388.77, "end": 388.99, "word": " an", "probability": 0.80419921875}, {"start": 388.99, "end": 389.37, "word": " interface.", "probability": 0.89794921875}, {"start": 389.43, "end": 389.49, "word": " An", "probability": 0.53564453125}, {"start": 389.49, "end": 389.75, "word": " interface", "probability": 0.833984375}, {"start": 389.75, "end": 389.95, "word": " cannot", "probability": 0.218994140625}, {"start": 389.95, "end": 390.27, "word": " be", "probability": 0.30322265625}, {"start": 390.27, "end": 390.37, "word": " extracted", "probability": 0.9228515625}, {"start": 390.37, "end": 390.49, "word": " from", "probability": 0.84130859375}, {"start": 390.49, "end": 390.93, "word": " an", "probability": 0.3984375}, {"start": 390.93, "end": 391.47, "word": " object.", "probability": 0.97705078125}, {"start": 391.63, "end": 391.75, "word": " So", "probability": 0.39599609375}, {"start": 391.75, "end": 392.07, "word": " how", "probability": 0.419189453125}, {"start": 392.07, "end": 392.19, "word": " do", "probability": 0.2147216796875}, {"start": 392.19, "end": 392.21, "word": " we", "probability": 0.49462890625}, {"start": 392.21, "end": 392.59, "word": " deal", "probability": 0.603515625}, {"start": 392.59, "end": 393.55, "word": " if", "probability": 0.466796875}, {"start": 393.55, "end": 393.85, "word": " I", "probability": 0.9169921875}, {"start": 393.85, "end": 394.11, "word": " have", "probability": 0.88623046875}, {"start": 394.11, "end": 395.11, "word": " an", "probability": 0.84228515625}, {"start": 395.11, "end": 395.49, "word": " interface", "probability": 0.791015625}, {"start": 395.49, "end": 395.67, "word": " or", "probability": 0.89501953125}, {"start": 395.67, "end": 395.99, "word": " abstract", "probability": 0.63916015625}, {"start": 395.99, "end": 396.39, "word": " class?", "probability": 0.9609375}], "temperature": 1.0}, {"id": 17, "seek": 41002, "start": 396.86, "end": 410.02, "text": "Another thing, if the object takes primitive type parameters, for example if the engine takes cylinder, right or wrong, but if it takes integer, power,", "tokens": [46028, 551, 11, 498, 264, 2657, 2516, 28540, 2010, 9834, 11, 337, 1365, 498, 264, 2848, 2516, 17884, 11, 558, 420, 2085, 11, 457, 498, 309, 2516, 24922, 11, 1347, 11], "avg_logprob": -0.6118163857609034, "compression_ratio": 1.3603603603603605, "no_speech_prob": 0.0, "words": [{"start": 396.86, "end": 397.16, "word": "Another", "probability": 0.24951171875}, {"start": 397.16, "end": 397.44, "word": " thing,", "probability": 0.498046875}, {"start": 399.48, "end": 400.12, "word": " if", "probability": 0.7041015625}, {"start": 400.12, "end": 400.22, "word": " the", "probability": 0.64501953125}, {"start": 400.22, "end": 400.52, "word": " object", "probability": 0.92578125}, {"start": 400.52, "end": 401.0, "word": " takes", "probability": 0.58740234375}, {"start": 401.0, "end": 401.42, "word": " primitive", "probability": 0.89013671875}, {"start": 401.42, "end": 401.78, "word": " type", "probability": 0.69287109375}, {"start": 401.78, "end": 402.32, "word": " parameters,", "probability": 0.8896484375}, {"start": 403.26, "end": 403.42, "word": " for", "probability": 0.34228515625}, {"start": 403.42, "end": 404.1, "word": " example", "probability": 0.86083984375}, {"start": 404.1, "end": 404.42, "word": " if", "probability": 0.230224609375}, {"start": 404.42, "end": 404.42, "word": " the", "probability": 0.5361328125}, {"start": 404.42, "end": 404.84, "word": " engine", "probability": 0.9208984375}, {"start": 404.84, "end": 406.52, "word": " takes", "probability": 0.78955078125}, {"start": 406.52, "end": 406.92, "word": " cylinder,", "probability": 0.6220703125}, {"start": 407.2, "end": 407.32, "word": " right", "probability": 0.1702880859375}, {"start": 407.32, "end": 407.48, "word": " or", "probability": 0.70361328125}, {"start": 407.48, "end": 407.6, "word": " wrong,", "probability": 0.56640625}, {"start": 407.86, "end": 408.02, "word": " but", "probability": 0.244140625}, {"start": 408.02, "end": 408.16, "word": " if", "probability": 0.80859375}, {"start": 408.16, "end": 408.28, "word": " it", "probability": 0.7919921875}, {"start": 408.28, "end": 408.52, "word": " takes", "probability": 0.8017578125}, {"start": 408.52, "end": 409.26, "word": " integer,", "probability": 0.6513671875}, {"start": 409.8, "end": 410.02, "word": " power,", "probability": 0.580078125}], "temperature": 1.0}, {"id": 18, "seek": 44109, "start": 412.95, "end": 441.09, "text": "How will it deal with the primitive type? What is the class type? We say that we inject it to create an object. As for the primitive type, this is a value that must pass through the constructor to create an object. How will we deal with this? This is what we see in this lecture, that some things are a bit advanced in the subject of Dependency Injection. Let's start with the first part. If we say that I have an interface called tire, because it certainly will not be able to create a car.", "tokens": [6462, 486, 309, 2028, 365, 264, 28540, 2010, 30, 708, 307, 264, 1508, 2010, 30, 492, 584, 300, 321, 10711, 309, 281, 1884, 364, 2657, 13, 1018, 337, 264, 28540, 2010, 11, 341, 307, 257, 2158, 300, 1633, 1320, 807, 264, 47479, 281, 1884, 364, 2657, 13, 1012, 486, 321, 2028, 365, 341, 30, 639, 307, 437, 321, 536, 294, 341, 7991, 11, 300, 512, 721, 366, 257, 857, 7339, 294, 264, 3983, 295, 4056, 521, 3020, 682, 1020, 313, 13, 961, 311, 722, 365, 264, 700, 644, 13, 759, 321, 584, 300, 286, 362, 364, 9226, 1219, 11756, 11, 570, 309, 3297, 486, 406, 312, 1075, 281, 1884, 257, 1032, 13], "avg_logprob": -0.42671460598970934, "compression_ratio": 1.825278810408922, "no_speech_prob": 1.049041748046875e-05, "words": [{"start": 412.95, "end": 413.21, "word": "How", "probability": 0.436279296875}, {"start": 413.21, "end": 413.29, "word": " will", "probability": 0.261962890625}, {"start": 413.29, "end": 413.35, "word": " it", "probability": 0.481689453125}, {"start": 413.35, "end": 413.53, "word": " deal", "probability": 0.4677734375}, {"start": 413.53, "end": 413.69, "word": " with", "probability": 0.91162109375}, {"start": 413.69, "end": 413.83, "word": " the", "probability": 0.278564453125}, {"start": 413.83, "end": 414.11, "word": " primitive", "probability": 0.83203125}, {"start": 414.11, "end": 414.43, "word": " type?", "probability": 0.953125}, {"start": 414.59, "end": 414.69, "word": " What", "probability": 0.179931640625}, {"start": 414.69, "end": 414.83, "word": " is", "probability": 0.740234375}, {"start": 414.83, "end": 414.95, "word": " the", "probability": 0.7158203125}, {"start": 414.95, "end": 415.25, "word": " class", "probability": 0.884765625}, {"start": 415.25, "end": 415.61, "word": " type?", "probability": 0.96044921875}, {"start": 416.35, "end": 416.49, "word": " We", "probability": 0.58935546875}, {"start": 416.49, "end": 416.63, "word": " say", "probability": 0.2381591796875}, {"start": 416.63, "end": 416.77, "word": " that", "probability": 0.43115234375}, {"start": 416.77, "end": 416.79, "word": " we", "probability": 0.71728515625}, {"start": 416.79, "end": 417.03, "word": " inject", "probability": 0.19091796875}, {"start": 417.03, "end": 417.69, "word": " it", "probability": 0.244140625}, {"start": 417.69, "end": 417.89, "word": " to", "probability": 0.7021484375}, {"start": 417.89, "end": 418.17, "word": " create", "probability": 0.6103515625}, {"start": 418.17, "end": 418.37, "word": " an", "probability": 0.40673828125}, {"start": 418.37, "end": 418.63, "word": " object.", "probability": 0.97607421875}, {"start": 418.75, "end": 418.93, "word": " As", "probability": 0.130615234375}, {"start": 418.93, "end": 419.15, "word": " for", "probability": 0.80078125}, {"start": 419.15, "end": 419.29, "word": " the", "probability": 0.77783203125}, {"start": 419.29, "end": 419.57, "word": " primitive", "probability": 0.96728515625}, {"start": 419.57, "end": 419.91, "word": " type,", "probability": 0.978515625}, {"start": 420.01, "end": 420.15, "word": " this", "probability": 0.423583984375}, {"start": 420.15, "end": 420.15, "word": " is", "probability": 0.650390625}, {"start": 420.15, "end": 420.25, "word": " a", "probability": 0.70068359375}, {"start": 420.25, "end": 420.47, "word": " value", "probability": 0.89892578125}, {"start": 420.47, "end": 421.19, "word": " that", "probability": 0.6455078125}, {"start": 421.19, "end": 421.43, "word": " must", "probability": 0.4482421875}, {"start": 421.43, "end": 421.77, "word": " pass", "probability": 0.37841796875}, {"start": 421.77, "end": 421.89, "word": " through", "probability": 0.53466796875}, {"start": 421.89, "end": 422.01, "word": " the", "probability": 0.8193359375}, {"start": 422.01, "end": 422.47, "word": " constructor", "probability": 0.91650390625}, {"start": 422.47, "end": 422.71, "word": " to", "probability": 0.5263671875}, {"start": 422.71, "end": 423.17, "word": " create", "probability": 0.63427734375}, {"start": 423.17, "end": 424.03, "word": " an", "probability": 0.8388671875}, {"start": 424.03, "end": 424.23, "word": " object.", "probability": 0.9716796875}, {"start": 424.39, "end": 424.53, "word": " How", "probability": 0.8701171875}, {"start": 424.53, "end": 424.65, "word": " will", "probability": 0.6181640625}, {"start": 424.65, "end": 424.75, "word": " we", "probability": 0.73193359375}, {"start": 424.75, "end": 424.95, "word": " deal", "probability": 0.84326171875}, {"start": 424.95, "end": 425.15, "word": " with", "probability": 0.89892578125}, {"start": 425.15, "end": 425.43, "word": " this?", "probability": 0.60107421875}, {"start": 425.79, "end": 426.15, "word": " This", "probability": 0.349365234375}, {"start": 426.15, "end": 426.17, "word": " is", "probability": 0.896484375}, {"start": 426.17, "end": 426.21, "word": " what", "probability": 0.9150390625}, {"start": 426.21, "end": 426.33, "word": " we", "probability": 0.94384765625}, {"start": 426.33, "end": 426.67, "word": " see", "probability": 0.74755859375}, {"start": 426.67, "end": 427.67, "word": " in", "probability": 0.896484375}, {"start": 427.67, "end": 427.75, "word": " this", "probability": 0.884765625}, {"start": 427.75, "end": 428.13, "word": " lecture,", "probability": 0.86474609375}, {"start": 428.65, "end": 428.75, "word": " that", "probability": 0.62158203125}, {"start": 428.75, "end": 429.03, "word": " some", "probability": 0.7783203125}, {"start": 429.03, "end": 429.31, "word": " things", "probability": 0.4619140625}, {"start": 429.31, "end": 429.43, "word": " are", "probability": 0.8916015625}, {"start": 429.43, "end": 429.47, "word": " a", "probability": 0.55615234375}, {"start": 429.47, "end": 429.69, "word": " bit", "probability": 0.50830078125}, {"start": 429.69, "end": 430.21, "word": " advanced", "probability": 0.873046875}, {"start": 430.21, "end": 430.85, "word": " in", "probability": 0.80224609375}, {"start": 430.85, "end": 430.93, "word": " the", "probability": 0.6533203125}, {"start": 430.93, "end": 431.15, "word": " subject", "probability": 0.52392578125}, {"start": 431.15, "end": 431.29, "word": " of", "probability": 0.95947265625}, {"start": 431.29, "end": 431.81, "word": " Dependency", "probability": 0.7259928385416666}, {"start": 431.81, "end": 432.71, "word": " Injection.", "probability": 0.9763997395833334}, {"start": 433.21, "end": 433.53, "word": " Let's", "probability": 0.670654296875}, {"start": 433.53, "end": 433.67, "word": " start", "probability": 0.88818359375}, {"start": 433.67, "end": 433.75, "word": " with", "probability": 0.75439453125}, {"start": 433.75, "end": 433.93, "word": " the", "probability": 0.9033203125}, {"start": 433.93, "end": 433.95, "word": " first", "probability": 0.8203125}, {"start": 433.95, "end": 434.19, "word": " part.", "probability": 0.83935546875}, {"start": 434.93, "end": 435.33, "word": " If", "probability": 0.50927734375}, {"start": 435.33, "end": 435.61, "word": " we", "probability": 0.7802734375}, {"start": 435.61, "end": 435.61, "word": " say", "probability": 0.9111328125}, {"start": 435.61, "end": 435.97, "word": " that", "probability": 0.84619140625}, {"start": 435.97, "end": 436.45, "word": " I", "probability": 0.96435546875}, {"start": 436.45, "end": 436.67, "word": " have", "probability": 0.94873046875}, {"start": 436.67, "end": 436.77, "word": " an", "probability": 0.93017578125}, {"start": 436.77, "end": 437.23, "word": " interface", "probability": 0.8828125}, {"start": 437.23, "end": 437.65, "word": " called", "probability": 0.775390625}, {"start": 437.65, "end": 438.29, "word": " tire,", "probability": 0.38525390625}, {"start": 439.31, "end": 439.53, "word": " because", "probability": 0.316650390625}, {"start": 439.53, "end": 439.73, "word": " it", "probability": 0.353271484375}, {"start": 439.73, "end": 439.89, "word": " certainly", "probability": 0.260009765625}, {"start": 439.89, "end": 440.13, "word": " will", "probability": 0.5380859375}, {"start": 440.13, "end": 440.13, "word": " not", "probability": 0.93994140625}, {"start": 440.13, "end": 440.29, "word": " be", "probability": 0.931640625}, {"start": 440.29, "end": 440.45, "word": " able", "probability": 0.95458984375}, {"start": 440.45, "end": 440.61, "word": " to", "probability": 0.9716796875}, {"start": 440.61, "end": 440.73, "word": " create", "probability": 0.6640625}, {"start": 440.73, "end": 440.89, "word": " a", "probability": 0.95166015625}, {"start": 440.89, "end": 441.09, "word": " car.", "probability": 0.92431640625}], "temperature": 1.0}, {"id": 19, "seek": 46517, "start": 441.89, "end": 465.17, "text": " What does it require now? It requires any class to implement to whom? To the thread So if we assume that I have two classes that implement to the thread For example, I want to tell it here, large thread And I want to tell it here, for the experiment", "tokens": [708, 775, 309, 3651, 586, 30, 467, 7029, 604, 1508, 281, 4445, 281, 7101, 30, 1407, 264, 7207, 407, 498, 321, 6552, 300, 286, 362, 732, 5359, 300, 4445, 281, 264, 7207, 1171, 1365, 11, 286, 528, 281, 980, 309, 510, 11, 2416, 7207, 400, 286, 528, 281, 980, 309, 510, 11, 337, 264, 5120], "avg_logprob": -0.513392835855484, "compression_ratio": 1.6666666666666667, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 441.89, "end": 442.21, "word": " What", "probability": 0.14453125}, {"start": 442.21, "end": 442.21, "word": " does", "probability": 0.6904296875}, {"start": 442.21, "end": 442.63, "word": " it", "probability": 0.312255859375}, {"start": 442.63, "end": 442.63, "word": " require", "probability": 0.3466796875}, {"start": 442.63, "end": 442.87, "word": " now?", "probability": 0.359130859375}, {"start": 442.93, "end": 443.01, "word": " It", "probability": 0.66650390625}, {"start": 443.01, "end": 443.19, "word": " requires", "probability": 0.5791015625}, {"start": 443.19, "end": 444.01, "word": " any", "probability": 0.6435546875}, {"start": 444.01, "end": 444.55, "word": " class", "probability": 0.93505859375}, {"start": 444.55, "end": 445.39, "word": " to", "probability": 0.70263671875}, {"start": 445.39, "end": 446.09, "word": " implement", "probability": 0.71044921875}, {"start": 446.09, "end": 446.33, "word": " to", "probability": 0.37060546875}, {"start": 446.33, "end": 446.47, "word": " whom?", "probability": 0.251953125}, {"start": 447.49, "end": 447.89, "word": " To", "probability": 0.6572265625}, {"start": 447.89, "end": 448.05, "word": " the", "probability": 0.77880859375}, {"start": 448.05, "end": 448.19, "word": " thread", "probability": 0.50341796875}, {"start": 448.19, "end": 449.15, "word": " So", "probability": 0.30517578125}, {"start": 449.15, "end": 449.57, "word": " if", "probability": 0.337646484375}, {"start": 449.57, "end": 449.77, "word": " we", "probability": 0.537109375}, {"start": 449.77, "end": 450.39, "word": " assume", "probability": 0.24755859375}, {"start": 450.39, "end": 450.61, "word": " that", "probability": 0.5439453125}, {"start": 450.61, "end": 450.73, "word": " I", "probability": 0.87744140625}, {"start": 450.73, "end": 450.91, "word": " have", "probability": 0.92626953125}, {"start": 450.91, "end": 451.13, "word": " two", "probability": 0.72119140625}, {"start": 451.13, "end": 451.51, "word": " classes", "probability": 0.923828125}, {"start": 451.51, "end": 451.67, "word": " that", "probability": 0.4150390625}, {"start": 451.67, "end": 452.07, "word": " implement", "probability": 0.60009765625}, {"start": 452.07, "end": 452.41, "word": " to", "probability": 0.9072265625}, {"start": 452.41, "end": 452.53, "word": " the", "probability": 0.58740234375}, {"start": 452.53, "end": 452.77, "word": " thread", "probability": 0.96044921875}, {"start": 452.77, "end": 453.45, "word": " For", "probability": 0.63720703125}, {"start": 453.45, "end": 453.65, "word": " example,", "probability": 0.91015625}, {"start": 453.73, "end": 453.75, "word": " I", "probability": 0.880859375}, {"start": 453.75, "end": 453.87, "word": " want", "probability": 0.4423828125}, {"start": 453.87, "end": 453.89, "word": " to", "probability": 0.970703125}, {"start": 453.89, "end": 454.03, "word": " tell", "probability": 0.3701171875}, {"start": 454.03, "end": 454.13, "word": " it", "probability": 0.6298828125}, {"start": 454.13, "end": 454.29, "word": " here,", "probability": 0.65771484375}, {"start": 454.31, "end": 454.59, "word": " large", "probability": 0.57666015625}, {"start": 454.59, "end": 455.05, "word": " thread", "probability": 0.53271484375}, {"start": 455.05, "end": 463.69, "word": " And", "probability": 0.65185546875}, {"start": 463.69, "end": 463.79, "word": " I", "probability": 0.828125}, {"start": 463.79, "end": 463.85, "word": " want", "probability": 0.78173828125}, {"start": 463.85, "end": 463.91, "word": " to", "probability": 0.97119140625}, {"start": 463.91, "end": 464.01, "word": " tell", "probability": 0.8115234375}, {"start": 464.01, "end": 464.15, "word": " it", "probability": 0.8818359375}, {"start": 464.15, "end": 464.41, "word": " here,", "probability": 0.8330078125}, {"start": 464.57, "end": 464.69, "word": " for", "probability": 0.457275390625}, {"start": 464.69, "end": 464.85, "word": " the", "probability": 0.71337890625}, {"start": 464.85, "end": 465.17, "word": " experiment", "probability": 0.5849609375}], "temperature": 1.0}, {"id": 20, "seek": 49239, "start": 474.73, "end": 492.39, "text": "and this is another class and this one also but I want to implement", "tokens": [474, 341, 307, 1071, 1508, 293, 341, 472, 611, 457, 286, 528, 281, 4445], "avg_logprob": -0.7583333333333333, "compression_ratio": 1.0307692307692307, "no_speech_prob": 0.0, "words": [{"start": 474.73, "end": 474.97, "word": "and", "probability": 0.337158203125}, {"start": 474.97, "end": 475.13, "word": " this", "probability": 0.65869140625}, {"start": 475.13, "end": 475.17, "word": " is", "probability": 0.521484375}, {"start": 475.17, "end": 475.19, "word": " another", "probability": 0.7841796875}, {"start": 475.19, "end": 475.65, "word": " class", "probability": 0.90771484375}, {"start": 475.65, "end": 491.03, "word": " and", "probability": 0.60205078125}, {"start": 491.03, "end": 491.25, "word": " this", "probability": 0.7255859375}, {"start": 491.25, "end": 491.35, "word": " one", "probability": 0.322021484375}, {"start": 491.35, "end": 491.53, "word": " also", "probability": 0.315185546875}, {"start": 491.53, "end": 491.67, "word": " but", "probability": 0.11663818359375}, {"start": 491.67, "end": 491.67, "word": " I", "probability": 0.293701171875}, {"start": 491.67, "end": 491.75, "word": " want", "probability": 0.357177734375}, {"start": 491.75, "end": 491.77, "word": " to", "probability": 0.8818359375}, {"start": 491.77, "end": 492.39, "word": " implement", "probability": 0.455078125}], "temperature": 1.0}, {"id": 21, "seek": 52447, "start": 503.11, "end": 524.47, "text": "Okay, now when I create the object car, I have to specify what class it will create. I have two classes that I implement for a plane. It has to create either a large plane or a small plane. So I want to tell it, as a programmer, I want to tell it which one of the two it will use. How are we going to tell it this? Now we want to add a new class.", "tokens": [8297, 11, 586, 562, 286, 1884, 264, 2657, 1032, 11, 286, 362, 281, 16500, 437, 1508, 309, 486, 1884, 13, 286, 362, 732, 5359, 300, 286, 4445, 337, 257, 5720, 13, 467, 575, 281, 1884, 2139, 257, 2416, 5720, 420, 257, 1359, 5720, 13, 407, 286, 528, 281, 980, 309, 11, 382, 257, 32116, 11, 286, 528, 281, 980, 309, 597, 472, 295, 264, 732, 309, 486, 764, 13, 1012, 366, 321, 516, 281, 980, 309, 341, 30, 823, 321, 528, 281, 909, 257, 777, 1508, 13], "avg_logprob": -0.4943181818181818, "compression_ratio": 1.7044334975369457, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 503.11000000000007, "end": 503.51000000000005, "word": "Okay,", "probability": 0.274169921875}, {"start": 503.51000000000005, "end": 503.91, "word": " now", "probability": 0.68896484375}, {"start": 503.91, "end": 505.13, "word": " when", "probability": 0.59619140625}, {"start": 505.13, "end": 505.31, "word": " I", "probability": 0.87744140625}, {"start": 505.31, "end": 505.51, "word": " create", "probability": 0.78076171875}, {"start": 505.51, "end": 505.65, "word": " the", "probability": 0.61279296875}, {"start": 505.65, "end": 505.99, "word": " object", "probability": 0.76708984375}, {"start": 505.99, "end": 506.37, "word": " car,", "probability": 0.3896484375}, {"start": 507.13, "end": 507.25, "word": " I", "probability": 0.93798828125}, {"start": 507.25, "end": 507.41, "word": " have", "probability": 0.403564453125}, {"start": 507.41, "end": 507.41, "word": " to", "probability": 0.95751953125}, {"start": 507.41, "end": 507.57, "word": " specify", "probability": 0.347412109375}, {"start": 507.57, "end": 508.93, "word": " what", "probability": 0.29443359375}, {"start": 508.93, "end": 509.67, "word": " class", "probability": 0.78857421875}, {"start": 509.67, "end": 509.79, "word": " it", "probability": 0.62939453125}, {"start": 509.79, "end": 509.91, "word": " will", "probability": 0.298583984375}, {"start": 509.91, "end": 510.21, "word": " create.", "probability": 0.44384765625}, {"start": 510.35, "end": 510.55, "word": " I", "probability": 0.51708984375}, {"start": 510.55, "end": 510.77, "word": " have", "probability": 0.87890625}, {"start": 510.77, "end": 510.97, "word": " two", "probability": 0.7255859375}, {"start": 510.97, "end": 511.31, "word": " classes", "probability": 0.95263671875}, {"start": 511.31, "end": 511.45, "word": " that", "probability": 0.412109375}, {"start": 511.45, "end": 511.47, "word": " I", "probability": 0.705078125}, {"start": 511.47, "end": 511.97, "word": " implement", "probability": 0.3896484375}, {"start": 511.97, "end": 512.23, "word": " for", "probability": 0.46826171875}, {"start": 512.23, "end": 512.43, "word": " a", "probability": 0.27294921875}, {"start": 512.43, "end": 512.43, "word": " plane.", "probability": 0.33251953125}, {"start": 513.43, "end": 513.59, "word": " It", "probability": 0.243408203125}, {"start": 513.59, "end": 514.03, "word": " has", "probability": 0.2435302734375}, {"start": 514.03, "end": 514.51, "word": " to", "probability": 0.96435546875}, {"start": 514.51, "end": 514.77, "word": " create", "probability": 0.6796875}, {"start": 514.77, "end": 514.97, "word": " either", "probability": 0.81298828125}, {"start": 514.97, "end": 515.09, "word": " a", "probability": 0.293701171875}, {"start": 515.09, "end": 515.31, "word": " large", "probability": 0.86181640625}, {"start": 515.31, "end": 515.73, "word": " plane", "probability": 0.78662109375}, {"start": 515.73, "end": 516.79, "word": " or", "probability": 0.86962890625}, {"start": 516.79, "end": 516.89, "word": " a", "probability": 0.87060546875}, {"start": 516.89, "end": 517.09, "word": " small", "probability": 0.96875}, {"start": 517.09, "end": 517.29, "word": " plane.", "probability": 0.87255859375}, {"start": 517.39, "end": 517.45, "word": " So", "probability": 0.484375}, {"start": 517.45, "end": 517.61, "word": " I", "probability": 0.5537109375}, {"start": 517.61, "end": 517.75, "word": " want", "probability": 0.2705078125}, {"start": 517.75, "end": 517.83, "word": " to", "probability": 0.96630859375}, {"start": 517.83, "end": 517.97, "word": " tell", "probability": 0.67333984375}, {"start": 517.97, "end": 518.05, "word": " it,", "probability": 0.43017578125}, {"start": 518.11, "end": 518.33, "word": " as", "probability": 0.81787109375}, {"start": 518.33, "end": 518.43, "word": " a", "probability": 0.84423828125}, {"start": 518.43, "end": 518.65, "word": " programmer,", "probability": 0.9501953125}, {"start": 518.87, "end": 518.87, "word": " I", "probability": 0.346923828125}, {"start": 518.87, "end": 518.97, "word": " want", "probability": 0.74853515625}, {"start": 518.97, "end": 519.05, "word": " to", "probability": 0.96728515625}, {"start": 519.05, "end": 519.21, "word": " tell", "probability": 0.7998046875}, {"start": 519.21, "end": 519.45, "word": " it", "probability": 0.88330078125}, {"start": 519.45, "end": 519.97, "word": " which", "probability": 0.42333984375}, {"start": 519.97, "end": 520.27, "word": " one", "probability": 0.70556640625}, {"start": 520.27, "end": 520.35, "word": " of", "probability": 0.59033203125}, {"start": 520.35, "end": 520.49, "word": " the", "probability": 0.5419921875}, {"start": 520.49, "end": 520.73, "word": " two", "probability": 0.9345703125}, {"start": 520.73, "end": 521.35, "word": " it", "probability": 0.374267578125}, {"start": 521.35, "end": 521.43, "word": " will", "probability": 0.75146484375}, {"start": 521.43, "end": 521.87, "word": " use.", "probability": 0.861328125}, {"start": 522.01, "end": 522.15, "word": " How", "probability": 0.8330078125}, {"start": 522.15, "end": 522.21, "word": " are", "probability": 0.387451171875}, {"start": 522.21, "end": 522.31, "word": " we", "probability": 0.95849609375}, {"start": 522.31, "end": 522.31, "word": " going", "probability": 0.9345703125}, {"start": 522.31, "end": 522.31, "word": " to", "probability": 0.97314453125}, {"start": 522.31, "end": 522.53, "word": " tell", "probability": 0.783203125}, {"start": 522.53, "end": 522.67, "word": " it", "probability": 0.65966796875}, {"start": 522.67, "end": 522.91, "word": " this?", "probability": 0.440185546875}, {"start": 523.39, "end": 523.79, "word": " Now", "probability": 0.41259765625}, {"start": 523.79, "end": 523.95, "word": " we", "probability": 0.75732421875}, {"start": 523.95, "end": 523.95, "word": " want", "probability": 0.28759765625}, {"start": 523.95, "end": 523.97, "word": " to", "probability": 0.96923828125}, {"start": 523.97, "end": 524.11, "word": " add", "probability": 0.927734375}, {"start": 524.11, "end": 524.27, "word": " a", "probability": 0.96923828125}, {"start": 524.27, "end": 524.27, "word": " new", "probability": 0.912109375}, {"start": 524.27, "end": 524.47, "word": " class.", "probability": 0.9404296875}], "temperature": 1.0}, {"id": 22, "seek": 55404, "start": 525.6, "end": 554.04, "text": "through which we direct instructions or instructions to the injector what to do in cases where he does not know how to act in them, that is, he is in the normal state to build the tree, it is affecting the amount injected, there are cases in which the amount injected will not work, like what, like this case where I have an interface, in this case, we ask him what to do if he is in a situation where he does not know how to act in them, like this case, so to solve this problem, we go and make a class", "tokens": [11529, 597, 321, 2047, 9415, 420, 9415, 281, 264, 10711, 284, 437, 281, 360, 294, 3331, 689, 415, 775, 406, 458, 577, 281, 605, 294, 552, 11, 300, 307, 11, 415, 307, 294, 264, 2710, 1785, 281, 1322, 264, 4230, 11, 309, 307, 17476, 264, 2372, 36967, 11, 456, 366, 3331, 294, 597, 264, 2372, 36967, 486, 406, 589, 11, 411, 437, 11, 411, 341, 1389, 689, 286, 362, 364, 9226, 11, 294, 341, 1389, 11, 321, 1029, 796, 437, 281, 360, 498, 415, 307, 294, 257, 2590, 689, 415, 775, 406, 458, 577, 281, 605, 294, 552, 11, 411, 341, 1389, 11, 370, 281, 5039, 341, 1154, 11, 321, 352, 293, 652, 257, 1508], "avg_logprob": -0.5565732820280667, "compression_ratio": 2.095833333333333, "no_speech_prob": 1.3113021850585938e-05, "words": [{"start": 525.6, "end": 525.88, "word": "through", "probability": 0.07220458984375}, {"start": 525.88, "end": 526.28, "word": " which", "probability": 0.360107421875}, {"start": 526.28, "end": 526.46, "word": " we", "probability": 0.8095703125}, {"start": 526.46, "end": 526.82, "word": " direct", "probability": 0.5791015625}, {"start": 526.82, "end": 528.14, "word": " instructions", "probability": 0.66552734375}, {"start": 528.14, "end": 528.32, "word": " or", "probability": 0.14990234375}, {"start": 528.32, "end": 528.72, "word": " instructions", "probability": 0.418212890625}, {"start": 528.72, "end": 529.0, "word": " to", "probability": 0.79833984375}, {"start": 529.0, "end": 529.08, "word": " the", "probability": 0.861328125}, {"start": 529.08, "end": 529.6, "word": " injector", "probability": 0.873779296875}, {"start": 529.6, "end": 530.44, "word": " what", "probability": 0.395263671875}, {"start": 530.44, "end": 530.56, "word": " to", "probability": 0.5068359375}, {"start": 530.56, "end": 530.8, "word": " do", "probability": 0.96044921875}, {"start": 530.8, "end": 530.96, "word": " in", "probability": 0.90185546875}, {"start": 530.96, "end": 531.46, "word": " cases", "probability": 0.61376953125}, {"start": 531.46, "end": 531.62, "word": " where", "probability": 0.416748046875}, {"start": 531.62, "end": 531.7, "word": " he", "probability": 0.58984375}, {"start": 531.7, "end": 531.74, "word": " does", "probability": 0.2025146484375}, {"start": 531.74, "end": 531.74, "word": " not", "probability": 0.93798828125}, {"start": 531.74, "end": 532.04, "word": " know", "probability": 0.892578125}, {"start": 532.04, "end": 532.18, "word": " how", "probability": 0.89404296875}, {"start": 532.18, "end": 532.18, "word": " to", "probability": 0.96435546875}, {"start": 532.18, "end": 532.4, "word": " act", "probability": 0.25390625}, {"start": 532.4, "end": 532.64, "word": " in", "probability": 0.40087890625}, {"start": 532.64, "end": 533.06, "word": " them,", "probability": 0.48779296875}, {"start": 533.42, "end": 533.62, "word": " that", "probability": 0.312255859375}, {"start": 533.62, "end": 533.62, "word": " is,", "probability": 0.8759765625}, {"start": 533.64, "end": 533.74, "word": " he", "probability": 0.322509765625}, {"start": 533.74, "end": 533.84, "word": " is", "probability": 0.89111328125}, {"start": 533.84, "end": 533.9, "word": " in", "probability": 0.91162109375}, {"start": 533.9, "end": 534.0, "word": " the", "probability": 0.44482421875}, {"start": 534.0, "end": 534.64, "word": " normal", "probability": 0.55126953125}, {"start": 534.64, "end": 534.72, "word": " state", "probability": 0.55126953125}, {"start": 534.72, "end": 535.4, "word": " to", "probability": 0.5693359375}, {"start": 535.4, "end": 535.7, "word": " build", "probability": 0.259033203125}, {"start": 535.7, "end": 535.88, "word": " the", "probability": 0.5126953125}, {"start": 535.88, "end": 536.18, "word": " tree,", "probability": 0.77783203125}, {"start": 536.34, "end": 536.44, "word": " it", "probability": 0.11962890625}, {"start": 536.44, "end": 536.46, "word": " is", "probability": 0.2159423828125}, {"start": 536.46, "end": 536.7, "word": " affecting", "probability": 0.074462890625}, {"start": 536.7, "end": 536.94, "word": " the", "probability": 0.759765625}, {"start": 536.94, "end": 537.26, "word": " amount", "probability": 0.1829833984375}, {"start": 537.26, "end": 538.6, "word": " injected,", "probability": 0.53857421875}, {"start": 538.78, "end": 539.08, "word": " there", "probability": 0.64013671875}, {"start": 539.08, "end": 539.14, "word": " are", "probability": 0.9326171875}, {"start": 539.14, "end": 539.5, "word": " cases", "probability": 0.9140625}, {"start": 539.5, "end": 539.66, "word": " in", "probability": 0.29052734375}, {"start": 539.66, "end": 539.72, "word": " which", "probability": 0.935546875}, {"start": 539.72, "end": 540.26, "word": " the", "probability": 0.54541015625}, {"start": 540.26, "end": 540.46, "word": " amount", "probability": 0.82958984375}, {"start": 540.46, "end": 540.88, "word": " injected", "probability": 0.482177734375}, {"start": 540.88, "end": 540.88, "word": " will", "probability": 0.68896484375}, {"start": 540.88, "end": 540.88, "word": " not", "probability": 0.931640625}, {"start": 540.88, "end": 540.88, "word": " work,", "probability": 0.74462890625}, {"start": 541.22, "end": 541.56, "word": " like", "probability": 0.443359375}, {"start": 541.56, "end": 541.82, "word": " what,", "probability": 0.62744140625}, {"start": 541.94, "end": 542.12, "word": " like", "probability": 0.87353515625}, {"start": 542.12, "end": 542.22, "word": " this", "probability": 0.8359375}, {"start": 542.22, "end": 542.44, "word": " case", "probability": 0.80029296875}, {"start": 542.44, "end": 542.76, "word": " where", "probability": 0.255126953125}, {"start": 542.76, "end": 543.0, "word": " I", "probability": 0.5927734375}, {"start": 543.0, "end": 543.04, "word": " have", "probability": 0.9326171875}, {"start": 543.04, "end": 543.12, "word": " an", "probability": 0.75244140625}, {"start": 543.12, "end": 543.6, "word": " interface,", "probability": 0.90234375}, {"start": 545.04, "end": 545.42, "word": " in", "probability": 0.87841796875}, {"start": 545.42, "end": 545.52, "word": " this", "probability": 0.86767578125}, {"start": 545.52, "end": 545.68, "word": " case,", "probability": 0.8994140625}, {"start": 545.86, "end": 545.98, "word": " we", "probability": 0.748046875}, {"start": 545.98, "end": 546.28, "word": " ask", "probability": 0.07470703125}, {"start": 546.28, "end": 546.6, "word": " him", "probability": 0.48681640625}, {"start": 546.6, "end": 547.06, "word": " what", "probability": 0.73046875}, {"start": 547.06, "end": 547.2, "word": " to", "probability": 0.68603515625}, {"start": 547.2, "end": 547.5, "word": " do", "probability": 0.9677734375}, {"start": 547.5, "end": 548.24, "word": " if", "probability": 0.8837890625}, {"start": 548.24, "end": 548.52, "word": " he", "probability": 0.51171875}, {"start": 548.52, "end": 548.52, "word": " is", "probability": 0.1038818359375}, {"start": 548.52, "end": 548.52, "word": " in", "probability": 0.85986328125}, {"start": 548.52, "end": 548.58, "word": " a", "probability": 0.94189453125}, {"start": 548.58, "end": 548.74, "word": " situation", "probability": 0.8203125}, {"start": 548.74, "end": 548.8, "word": " where", "probability": 0.80517578125}, {"start": 548.8, "end": 548.94, "word": " he", "probability": 0.93603515625}, {"start": 548.94, "end": 548.98, "word": " does", "probability": 0.6533203125}, {"start": 548.98, "end": 548.98, "word": " not", "probability": 0.9443359375}, {"start": 548.98, "end": 549.14, "word": " know", "probability": 0.90087890625}, {"start": 549.14, "end": 549.32, "word": " how", "probability": 0.90380859375}, {"start": 549.32, "end": 549.32, "word": " to", "probability": 0.96630859375}, {"start": 549.32, "end": 549.58, "word": " act", "probability": 0.8017578125}, {"start": 549.58, "end": 549.8, "word": " in", "probability": 0.68408203125}, {"start": 549.8, "end": 550.06, "word": " them,", "probability": 0.6015625}, {"start": 550.7, "end": 550.94, "word": " like", "probability": 0.46728515625}, {"start": 550.94, "end": 551.1, "word": " this", "probability": 0.8935546875}, {"start": 551.1, "end": 551.34, "word": " case,", "probability": 0.8779296875}, {"start": 551.62, "end": 551.74, "word": " so", "probability": 0.52734375}, {"start": 551.74, "end": 552.0, "word": " to", "probability": 0.724609375}, {"start": 552.0, "end": 552.24, "word": " solve", "probability": 0.8955078125}, {"start": 552.24, "end": 552.36, "word": " this", "probability": 0.89794921875}, {"start": 552.36, "end": 552.66, "word": " problem,", "probability": 0.84521484375}, {"start": 552.98, "end": 553.14, "word": " we", "probability": 0.9326171875}, {"start": 553.14, "end": 553.26, "word": " go", "probability": 0.763671875}, {"start": 553.26, "end": 553.4, "word": " and", "probability": 0.40576171875}, {"start": 553.4, "end": 553.52, "word": " make", "probability": 0.53076171875}, {"start": 553.52, "end": 553.66, "word": " a", "probability": 0.85205078125}, {"start": 553.66, "end": 554.04, "word": " class", "probability": 0.9677734375}], "temperature": 1.0}, {"id": 23, "seek": 57690, "start": 555.12, "end": 576.9, "text": "Of course, how do we direct these instructions to him? He says, if you want to give me, it's all in all, the injector, okay? For the injector to drink, he says, if you want to pass me instructions, I have provided a constructor here called create injector, which takes an object called module.", "tokens": [23919, 1164, 11, 577, 360, 321, 2047, 613, 9415, 281, 796, 30, 634, 1619, 11, 498, 291, 528, 281, 976, 385, 11, 309, 311, 439, 294, 439, 11, 264, 10711, 284, 11, 1392, 30, 1171, 264, 10711, 284, 281, 2822, 11, 415, 1619, 11, 498, 291, 528, 281, 1320, 385, 9415, 11, 286, 362, 5649, 257, 47479, 510, 1219, 1884, 10711, 284, 11, 597, 2516, 364, 2657, 1219, 10088, 13], "avg_logprob": -0.46610915744808357, "compression_ratio": 1.6368715083798884, "no_speech_prob": 1.0132789611816406e-05, "words": [{"start": 555.1199999999999, "end": 555.5799999999999, "word": "Of", "probability": 0.046234130859375}, {"start": 555.5799999999999, "end": 556.04, "word": " course,", "probability": 0.86572265625}, {"start": 556.24, "end": 556.52, "word": " how", "probability": 0.671875}, {"start": 556.52, "end": 556.7, "word": " do", "probability": 0.489990234375}, {"start": 556.7, "end": 556.72, "word": " we", "probability": 0.57080078125}, {"start": 556.72, "end": 556.98, "word": " direct", "probability": 0.32373046875}, {"start": 556.98, "end": 557.18, "word": " these", "probability": 0.66748046875}, {"start": 557.18, "end": 557.46, "word": " instructions", "probability": 0.833984375}, {"start": 557.46, "end": 557.84, "word": " to", "probability": 0.52197265625}, {"start": 557.84, "end": 557.84, "word": " him?", "probability": 0.53857421875}, {"start": 557.9, "end": 558.0, "word": " He", "probability": 0.376220703125}, {"start": 558.0, "end": 558.1, "word": " says,", "probability": 0.41015625}, {"start": 558.28, "end": 558.4, "word": " if", "probability": 0.51708984375}, {"start": 558.4, "end": 558.9, "word": " you", "probability": 0.95654296875}, {"start": 558.9, "end": 559.02, "word": " want", "probability": 0.81787109375}, {"start": 559.02, "end": 559.18, "word": " to", "probability": 0.9453125}, {"start": 559.18, "end": 559.34, "word": " give", "probability": 0.84423828125}, {"start": 559.34, "end": 559.66, "word": " me,", "probability": 0.8974609375}, {"start": 561.3, "end": 561.62, "word": " it's", "probability": 0.432373046875}, {"start": 561.62, "end": 562.02, "word": " all", "probability": 0.58203125}, {"start": 562.02, "end": 562.14, "word": " in", "probability": 0.76953125}, {"start": 562.14, "end": 562.54, "word": " all,", "probability": 0.8388671875}, {"start": 562.9, "end": 562.98, "word": " the", "probability": 0.728515625}, {"start": 562.98, "end": 563.42, "word": " injector,", "probability": 0.866455078125}, {"start": 564.06, "end": 564.28, "word": " okay?", "probability": 0.5302734375}, {"start": 565.08, "end": 565.24, "word": " For", "probability": 0.438720703125}, {"start": 565.24, "end": 565.42, "word": " the", "probability": 0.88818359375}, {"start": 565.42, "end": 565.76, "word": " injector", "probability": 0.920654296875}, {"start": 565.76, "end": 565.8, "word": " to", "probability": 0.93408203125}, {"start": 565.8, "end": 565.96, "word": " drink,", "probability": 0.75390625}, {"start": 566.06, "end": 566.14, "word": " he", "probability": 0.5576171875}, {"start": 566.14, "end": 566.2, "word": " says,", "probability": 0.78125}, {"start": 566.28, "end": 566.38, "word": " if", "probability": 0.908203125}, {"start": 566.38, "end": 566.68, "word": " you", "probability": 0.96826171875}, {"start": 566.68, "end": 566.94, "word": " want", "probability": 0.8359375}, {"start": 566.94, "end": 567.14, "word": " to", "probability": 0.96044921875}, {"start": 567.14, "end": 567.32, "word": " pass", "probability": 0.5009765625}, {"start": 567.32, "end": 567.5, "word": " me", "probability": 0.453857421875}, {"start": 567.5, "end": 568.08, "word": " instructions,", "probability": 0.84228515625}, {"start": 568.94, "end": 569.1, "word": " I", "probability": 0.9619140625}, {"start": 569.1, "end": 569.26, "word": " have", "probability": 0.52197265625}, {"start": 569.26, "end": 569.54, "word": " provided", "probability": 0.356201171875}, {"start": 569.54, "end": 569.78, "word": " a", "probability": 0.76318359375}, {"start": 569.78, "end": 570.46, "word": " constructor", "probability": 0.8623046875}, {"start": 570.46, "end": 570.5, "word": " here", "probability": 0.544921875}, {"start": 570.5, "end": 571.64, "word": " called", "probability": 0.40185546875}, {"start": 571.64, "end": 572.54, "word": " create", "probability": 0.59765625}, {"start": 572.54, "end": 573.78, "word": " injector,", "probability": 0.7384033203125}, {"start": 573.78, "end": 574.68, "word": " which", "probability": 0.771484375}, {"start": 574.68, "end": 574.9, "word": " takes", "probability": 0.8369140625}, {"start": 574.9, "end": 575.02, "word": " an", "probability": 0.86474609375}, {"start": 575.02, "end": 575.3, "word": " object", "probability": 0.9814453125}, {"start": 575.3, "end": 575.64, "word": " called", "probability": 0.7822265625}, {"start": 575.64, "end": 576.9, "word": " module.", "probability": 0.68359375}], "temperature": 1.0}, {"id": 24, "seek": 60613, "start": 578.61, "end": 606.13, "text": " He told me to make instructions in a class called Module and pass it to me in this method So now this is still the method, we haven't passed anything to it yet So we create the module So I went and made a class, you can call it Car Module As long as he wants a module with him, he has a class called Abstract Module He made it in the library", "tokens": [634, 1907, 385, 281, 652, 9415, 294, 257, 1508, 1219, 48251, 293, 1320, 309, 281, 385, 294, 341, 3170, 407, 586, 341, 307, 920, 264, 3170, 11, 321, 2378, 380, 4678, 1340, 281, 309, 1939, 407, 321, 1884, 264, 10088, 407, 286, 1437, 293, 1027, 257, 1508, 11, 291, 393, 818, 309, 2741, 48251, 1018, 938, 382, 415, 2738, 257, 10088, 365, 796, 11, 415, 575, 257, 1508, 1219, 46853, 1897, 48251, 634, 1027, 309, 294, 264, 6405], "avg_logprob": -0.5830696277980563, "compression_ratio": 1.6764705882352942, "no_speech_prob": 4.571676254272461e-05, "words": [{"start": 578.61, "end": 579.09, "word": " He", "probability": 0.091796875}, {"start": 579.09, "end": 579.29, "word": " told", "probability": 0.188232421875}, {"start": 579.29, "end": 579.49, "word": " me", "probability": 0.83203125}, {"start": 579.49, "end": 579.77, "word": " to", "probability": 0.80419921875}, {"start": 579.77, "end": 580.01, "word": " make", "probability": 0.330810546875}, {"start": 580.01, "end": 580.89, "word": " instructions", "probability": 0.225341796875}, {"start": 580.89, "end": 581.43, "word": " in", "probability": 0.50244140625}, {"start": 581.43, "end": 581.53, "word": " a", "probability": 0.53466796875}, {"start": 581.53, "end": 581.81, "word": " class", "probability": 0.439453125}, {"start": 581.81, "end": 582.09, "word": " called", "probability": 0.365234375}, {"start": 582.09, "end": 582.87, "word": " Module", "probability": 0.491943359375}, {"start": 582.87, "end": 583.67, "word": " and", "probability": 0.50634765625}, {"start": 583.67, "end": 583.89, "word": " pass", "probability": 0.2178955078125}, {"start": 583.89, "end": 584.09, "word": " it", "probability": 0.46875}, {"start": 584.09, "end": 584.23, "word": " to", "probability": 0.3388671875}, {"start": 584.23, "end": 584.39, "word": " me", "probability": 0.4267578125}, {"start": 584.39, "end": 585.15, "word": " in", "probability": 0.363037109375}, {"start": 585.15, "end": 585.23, "word": " this", "probability": 0.71826171875}, {"start": 585.23, "end": 585.49, "word": " method", "probability": 0.92822265625}, {"start": 585.49, "end": 586.83, "word": " So", "probability": 0.291259765625}, {"start": 586.83, "end": 587.13, "word": " now", "probability": 0.51806640625}, {"start": 587.13, "end": 587.63, "word": " this", "probability": 0.48974609375}, {"start": 587.63, "end": 587.73, "word": " is", "probability": 0.70556640625}, {"start": 587.73, "end": 587.87, "word": " still", "probability": 0.71142578125}, {"start": 587.87, "end": 588.03, "word": " the", "probability": 0.50830078125}, {"start": 588.03, "end": 588.47, "word": " method,", "probability": 0.8798828125}, {"start": 588.53, "end": 588.69, "word": " we", "probability": 0.7822265625}, {"start": 588.69, "end": 588.83, "word": " haven't", "probability": 0.66552734375}, {"start": 588.83, "end": 589.01, "word": " passed", "probability": 0.59326171875}, {"start": 589.01, "end": 589.47, "word": " anything", "probability": 0.369140625}, {"start": 589.47, "end": 589.77, "word": " to", "probability": 0.39990234375}, {"start": 589.77, "end": 589.77, "word": " it", "probability": 0.8525390625}, {"start": 589.77, "end": 590.29, "word": " yet", "probability": 0.491455078125}, {"start": 590.29, "end": 590.51, "word": " So", "probability": 0.35107421875}, {"start": 590.51, "end": 590.97, "word": " we", "probability": 0.63427734375}, {"start": 590.97, "end": 591.21, "word": " create", "probability": 0.61865234375}, {"start": 591.21, "end": 591.35, "word": " the", "probability": 0.78076171875}, {"start": 591.35, "end": 591.61, "word": " module", "probability": 0.75048828125}, {"start": 591.61, "end": 593.65, "word": " So", "probability": 0.53271484375}, {"start": 593.65, "end": 593.89, "word": " I", "probability": 0.87158203125}, {"start": 593.89, "end": 593.89, "word": " went", "probability": 0.447265625}, {"start": 593.89, "end": 593.99, "word": " and", "probability": 0.78759765625}, {"start": 593.99, "end": 594.11, "word": " made", "probability": 0.638671875}, {"start": 594.11, "end": 594.25, "word": " a", "probability": 0.94921875}, {"start": 594.25, "end": 594.61, "word": " class,", "probability": 0.966796875}, {"start": 594.67, "end": 594.77, "word": " you", "probability": 0.44677734375}, {"start": 594.77, "end": 594.81, "word": " can", "probability": 0.363525390625}, {"start": 594.81, "end": 594.99, "word": " call", "probability": 0.7744140625}, {"start": 594.99, "end": 595.19, "word": " it", "probability": 0.919921875}, {"start": 595.19, "end": 595.51, "word": " Car", "probability": 0.712890625}, {"start": 595.51, "end": 595.95, "word": " Module", "probability": 0.6904296875}, {"start": 595.95, "end": 599.67, "word": " As", "probability": 0.1951904296875}, {"start": 599.67, "end": 600.13, "word": " long", "probability": 0.71875}, {"start": 600.13, "end": 600.15, "word": " as", "probability": 0.962890625}, {"start": 600.15, "end": 600.15, "word": " he", "probability": 0.456787109375}, {"start": 600.15, "end": 600.35, "word": " wants", "probability": 0.6474609375}, {"start": 600.35, "end": 600.61, "word": " a", "probability": 0.5146484375}, {"start": 600.61, "end": 600.85, "word": " module", "probability": 0.8642578125}, {"start": 600.85, "end": 601.01, "word": " with", "probability": 0.26171875}, {"start": 601.01, "end": 601.01, "word": " him,", "probability": 0.8173828125}, {"start": 601.31, "end": 601.59, "word": " he", "probability": 0.47509765625}, {"start": 601.59, "end": 601.71, "word": " has", "probability": 0.720703125}, {"start": 601.71, "end": 601.85, "word": " a", "probability": 0.93115234375}, {"start": 601.85, "end": 602.09, "word": " class", "probability": 0.93994140625}, {"start": 602.09, "end": 602.35, "word": " called", "probability": 0.73876953125}, {"start": 602.35, "end": 603.17, "word": " Abstract", "probability": 0.9345703125}, {"start": 603.17, "end": 604.61, "word": " Module", "probability": 0.95068359375}, {"start": 604.61, "end": 604.89, "word": " He", "probability": 0.365966796875}, {"start": 604.89, "end": 605.15, "word": " made", "probability": 0.646484375}, {"start": 605.15, "end": 605.31, "word": " it", "probability": 0.9150390625}, {"start": 605.31, "end": 605.53, "word": " in", "probability": 0.72998046875}, {"start": 605.53, "end": 605.87, "word": " the", "probability": 0.623046875}, {"start": 605.87, "end": 606.13, "word": " library", "probability": 0.77587890625}], "temperature": 1.0}, {"id": 25, "seek": 63551, "start": 608.43, "end": 635.51, "text": "Why did I make it Extend Abstract Module? So that I can pass it to the injector. The injector needs an object of module type. This abstract module is of module type. And now, from inside it, I make an implement or override to a method called configure. What is configure? It's like a set of numbers. I make a set of numbers. Okay? Here now, in the method configure, we direct instructions to it. We say the following, this dot bind.", "tokens": [8429, 630, 286, 652, 309, 9881, 521, 46853, 1897, 48251, 30, 407, 300, 286, 393, 1320, 309, 281, 264, 10711, 284, 13, 440, 10711, 284, 2203, 364, 2657, 295, 10088, 2010, 13, 639, 12649, 10088, 307, 295, 10088, 2010, 13, 400, 586, 11, 490, 1854, 309, 11, 286, 652, 364, 4445, 420, 42321, 281, 257, 3170, 1219, 22162, 13, 708, 307, 22162, 30, 467, 311, 411, 257, 992, 295, 3547, 13, 286, 652, 257, 992, 295, 3547, 13, 1033, 30, 1692, 586, 11, 294, 264, 3170, 22162, 11, 321, 2047, 9415, 281, 309, 13, 492, 584, 264, 3480, 11, 341, 5893, 14786, 13], "avg_logprob": -0.4858773989746204, "compression_ratio": 1.7142857142857142, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 608.43, "end": 608.73, "word": "Why", "probability": 0.37060546875}, {"start": 608.73, "end": 608.81, "word": " did", "probability": 0.496826171875}, {"start": 608.81, "end": 608.81, "word": " I", "probability": 0.82080078125}, {"start": 608.81, "end": 609.01, "word": " make", "probability": 0.29345703125}, {"start": 609.01, "end": 609.17, "word": " it", "probability": 0.66064453125}, {"start": 609.17, "end": 609.79, "word": " Extend", "probability": 0.4859619140625}, {"start": 609.79, "end": 610.17, "word": " Abstract", "probability": 0.6917724609375}, {"start": 610.17, "end": 610.45, "word": " Module?", "probability": 0.94580078125}, {"start": 610.57, "end": 610.69, "word": " So", "probability": 0.348876953125}, {"start": 610.69, "end": 610.79, "word": " that", "probability": 0.625}, {"start": 610.79, "end": 610.85, "word": " I", "probability": 0.93359375}, {"start": 610.85, "end": 611.03, "word": " can", "probability": 0.7490234375}, {"start": 611.03, "end": 611.41, "word": " pass", "probability": 0.448974609375}, {"start": 611.41, "end": 611.69, "word": " it", "probability": 0.81787109375}, {"start": 611.69, "end": 612.37, "word": " to", "probability": 0.779296875}, {"start": 612.37, "end": 612.43, "word": " the", "probability": 0.62451171875}, {"start": 612.43, "end": 612.85, "word": " injector.", "probability": 0.930419921875}, {"start": 612.87, "end": 612.95, "word": " The", "probability": 0.5947265625}, {"start": 612.95, "end": 613.29, "word": " injector", "probability": 0.95751953125}, {"start": 613.29, "end": 613.55, "word": " needs", "probability": 0.456787109375}, {"start": 613.55, "end": 613.69, "word": " an", "probability": 0.6572265625}, {"start": 613.69, "end": 613.99, "word": " object", "probability": 0.974609375}, {"start": 613.99, "end": 614.09, "word": " of", "probability": 0.59228515625}, {"start": 614.09, "end": 614.59, "word": " module", "probability": 0.3359375}, {"start": 614.59, "end": 614.59, "word": " type.", "probability": 0.82568359375}, {"start": 615.05, "end": 615.49, "word": " This", "probability": 0.505859375}, {"start": 615.49, "end": 615.83, "word": " abstract", "probability": 0.60693359375}, {"start": 615.83, "end": 616.23, "word": " module", "probability": 0.92626953125}, {"start": 616.23, "end": 616.39, "word": " is", "probability": 0.8056640625}, {"start": 616.39, "end": 616.51, "word": " of", "probability": 0.72314453125}, {"start": 616.51, "end": 617.83, "word": " module", "probability": 0.70361328125}, {"start": 617.83, "end": 617.83, "word": " type.", "probability": 0.96630859375}, {"start": 618.45, "end": 618.61, "word": " And", "probability": 0.55859375}, {"start": 618.61, "end": 618.83, "word": " now,", "probability": 0.4697265625}, {"start": 618.89, "end": 618.99, "word": " from", "probability": 0.6396484375}, {"start": 618.99, "end": 619.33, "word": " inside", "probability": 0.45166015625}, {"start": 619.33, "end": 619.53, "word": " it,", "probability": 0.51611328125}, {"start": 619.55, "end": 619.67, "word": " I", "probability": 0.9384765625}, {"start": 619.67, "end": 619.81, "word": " make", "probability": 0.296630859375}, {"start": 619.81, "end": 619.97, "word": " an", "probability": 0.481689453125}, {"start": 619.97, "end": 620.31, "word": " implement", "probability": 0.6787109375}, {"start": 620.31, "end": 620.67, "word": " or", "probability": 0.89013671875}, {"start": 620.67, "end": 621.21, "word": " override", "probability": 0.87109375}, {"start": 621.21, "end": 621.45, "word": " to", "probability": 0.53271484375}, {"start": 621.45, "end": 621.51, "word": " a", "probability": 0.69140625}, {"start": 621.51, "end": 621.77, "word": " method", "probability": 0.9501953125}, {"start": 621.77, "end": 622.13, "word": " called", "probability": 0.72509765625}, {"start": 622.13, "end": 623.33, "word": " configure.", "probability": 0.662109375}, {"start": 624.31, "end": 624.51, "word": " What", "probability": 0.85498046875}, {"start": 624.51, "end": 624.59, "word": " is", "probability": 0.8291015625}, {"start": 624.59, "end": 625.01, "word": " configure?", "probability": 0.91455078125}, {"start": 625.69, "end": 625.95, "word": " It's", "probability": 0.418701171875}, {"start": 625.95, "end": 626.79, "word": " like", "probability": 0.8427734375}, {"start": 626.79, "end": 626.89, "word": " a", "probability": 0.316650390625}, {"start": 626.89, "end": 627.07, "word": " set", "probability": 0.3525390625}, {"start": 627.07, "end": 627.31, "word": " of", "probability": 0.541015625}, {"start": 627.31, "end": 627.31, "word": " numbers.", "probability": 0.4228515625}, {"start": 627.39, "end": 627.41, "word": " I", "probability": 0.1446533203125}, {"start": 627.41, "end": 627.63, "word": " make", "probability": 0.59423828125}, {"start": 627.63, "end": 627.69, "word": " a", "probability": 0.4775390625}, {"start": 627.69, "end": 627.89, "word": " set", "probability": 0.85595703125}, {"start": 627.89, "end": 628.07, "word": " of", "probability": 0.90478515625}, {"start": 628.07, "end": 628.07, "word": " numbers.", "probability": 0.9091796875}, {"start": 629.05, "end": 629.49, "word": " Okay?", "probability": 0.159423828125}, {"start": 630.05, "end": 630.35, "word": " Here", "probability": 0.44189453125}, {"start": 630.35, "end": 630.65, "word": " now,", "probability": 0.31298828125}, {"start": 630.71, "end": 630.77, "word": " in", "probability": 0.85400390625}, {"start": 630.77, "end": 630.87, "word": " the", "probability": 0.60986328125}, {"start": 630.87, "end": 631.07, "word": " method", "probability": 0.84423828125}, {"start": 631.07, "end": 631.43, "word": " configure,", "probability": 0.94677734375}, {"start": 631.61, "end": 631.71, "word": " we", "probability": 0.5849609375}, {"start": 631.71, "end": 631.99, "word": " direct", "probability": 0.1910400390625}, {"start": 631.99, "end": 632.55, "word": " instructions", "probability": 0.62744140625}, {"start": 632.55, "end": 632.99, "word": " to", "probability": 0.49365234375}, {"start": 632.99, "end": 632.99, "word": " it.", "probability": 0.8154296875}, {"start": 633.05, "end": 633.27, "word": " We", "probability": 0.90283203125}, {"start": 633.27, "end": 633.51, "word": " say", "probability": 0.61279296875}, {"start": 633.51, "end": 633.69, "word": " the", "probability": 0.411865234375}, {"start": 633.69, "end": 633.85, "word": " following,", "probability": 0.8427734375}, {"start": 633.93, "end": 634.25, "word": " this", "probability": 0.8154296875}, {"start": 634.25, "end": 635.17, "word": " dot", "probability": 0.501953125}, {"start": 635.17, "end": 635.51, "word": " bind.", "probability": 0.943359375}], "temperature": 1.0}, {"id": 26, "seek": 66006, "start": 637.28, "end": 660.06, "text": "What is the word bind? Urbot. Okay? If I go to the tier dot class, I connect it to large tier dot class. That's it. So where is the problem, guys? The tier is the interface.", "tokens": [3748, 307, 264, 1349, 14786, 30, 9533, 18870, 13, 1033, 30, 759, 286, 352, 281, 264, 12362, 5893, 1508, 11, 286, 1745, 309, 281, 2416, 12362, 5893, 1508, 13, 663, 311, 309, 13, 407, 689, 307, 264, 1154, 11, 1074, 30, 440, 12362, 307, 264, 9226, 13], "avg_logprob": -0.4902343712747097, "compression_ratio": 1.3622047244094488, "no_speech_prob": 0.0, "words": [{"start": 637.28, "end": 637.54, "word": "What", "probability": 0.45849609375}, {"start": 637.54, "end": 637.66, "word": " is", "probability": 0.7626953125}, {"start": 637.66, "end": 637.9, "word": " the", "probability": 0.68408203125}, {"start": 637.9, "end": 637.9, "word": " word", "probability": 0.765625}, {"start": 637.9, "end": 638.26, "word": " bind?", "probability": 0.767578125}, {"start": 639.72, "end": 640.24, "word": " Urbot.", "probability": 0.513916015625}, {"start": 640.82, "end": 641.34, "word": " Okay?", "probability": 0.164306640625}, {"start": 641.84, "end": 642.08, "word": " If", "probability": 0.7939453125}, {"start": 642.08, "end": 642.2, "word": " I", "probability": 0.82373046875}, {"start": 642.2, "end": 642.4, "word": " go", "probability": 0.3291015625}, {"start": 642.4, "end": 642.6, "word": " to", "probability": 0.65380859375}, {"start": 642.6, "end": 642.78, "word": " the", "probability": 0.61962890625}, {"start": 642.78, "end": 643.08, "word": " tier", "probability": 0.358642578125}, {"start": 643.08, "end": 645.86, "word": " dot", "probability": 0.485107421875}, {"start": 645.86, "end": 646.4, "word": " class,", "probability": 0.974609375}, {"start": 646.66, "end": 647.72, "word": " I", "probability": 0.60009765625}, {"start": 647.72, "end": 647.9, "word": " connect", "probability": 0.45361328125}, {"start": 647.9, "end": 648.42, "word": " it", "probability": 0.55224609375}, {"start": 648.42, "end": 650.16, "word": " to", "probability": 0.830078125}, {"start": 650.16, "end": 651.12, "word": " large", "probability": 0.46142578125}, {"start": 651.12, "end": 651.56, "word": " tier", "probability": 0.47802734375}, {"start": 651.56, "end": 655.24, "word": " dot", "probability": 0.9306640625}, {"start": 655.24, "end": 655.68, "word": " class.", "probability": 0.97265625}, {"start": 655.76, "end": 656.0, "word": " That's", "probability": 0.802978515625}, {"start": 656.0, "end": 656.12, "word": " it.", "probability": 0.7802734375}, {"start": 657.66, "end": 657.88, "word": " So", "probability": 0.4248046875}, {"start": 657.88, "end": 658.0, "word": " where", "probability": 0.19921875}, {"start": 658.0, "end": 658.0, "word": " is", "probability": 0.744140625}, {"start": 658.0, "end": 658.08, "word": " the", "probability": 0.91650390625}, {"start": 658.08, "end": 658.34, "word": " problem,", "probability": 0.78271484375}, {"start": 658.62, "end": 658.8, "word": " guys?", "probability": 0.82763671875}, {"start": 659.02, "end": 659.18, "word": " The", "probability": 0.5576171875}, {"start": 659.18, "end": 659.34, "word": " tier", "probability": 0.76123046875}, {"start": 659.34, "end": 659.48, "word": " is", "probability": 0.83935546875}, {"start": 659.48, "end": 659.56, "word": " the", "probability": 0.44482421875}, {"start": 659.56, "end": 660.06, "word": " interface.", "probability": 0.916015625}], "temperature": 1.0}, {"id": 27, "seek": 68974, "start": 660.82, "end": 689.74, "text": "He wants to create something, but he doesn't know how to deal with it. So he goes back to the car module, to the configurator, and executes it. So he knows that if there is no current, what will happen? There is no current. So we are done. Did we use this module? Did we create an object from it? No. Where are we going to use it? Here in the injector. Here I want to create an object from it. Car module, new car module.", "tokens": [5205, 2738, 281, 1884, 746, 11, 457, 415, 1177, 380, 458, 577, 281, 2028, 365, 309, 13, 407, 415, 1709, 646, 281, 264, 1032, 10088, 11, 281, 264, 22192, 1639, 11, 293, 4454, 1819, 309, 13, 407, 415, 3255, 300, 498, 456, 307, 572, 2190, 11, 437, 486, 1051, 30, 821, 307, 572, 2190, 13, 407, 321, 366, 1096, 13, 2589, 321, 764, 341, 10088, 30, 2589, 321, 1884, 364, 2657, 490, 309, 30, 883, 13, 2305, 366, 321, 516, 281, 764, 309, 30, 1692, 294, 264, 10711, 284, 13, 1692, 286, 528, 281, 1884, 364, 2657, 490, 309, 13, 2741, 10088, 11, 777, 1032, 10088, 13], "avg_logprob": -0.5795717377353597, "compression_ratio": 1.7991452991452992, "no_speech_prob": 1.043081283569336e-05, "words": [{"start": 660.82, "end": 660.98, "word": "He", "probability": 0.0784912109375}, {"start": 660.98, "end": 661.08, "word": " wants", "probability": 0.1943359375}, {"start": 661.08, "end": 661.3, "word": " to", "probability": 0.93408203125}, {"start": 661.3, "end": 661.52, "word": " create", "probability": 0.2235107421875}, {"start": 661.52, "end": 661.74, "word": " something,", "probability": 0.31787109375}, {"start": 662.22, "end": 662.36, "word": " but", "probability": 0.59765625}, {"start": 662.36, "end": 662.44, "word": " he", "probability": 0.419677734375}, {"start": 662.44, "end": 662.44, "word": " doesn't", "probability": 0.59063720703125}, {"start": 662.44, "end": 662.62, "word": " know", "probability": 0.85498046875}, {"start": 662.62, "end": 662.76, "word": " how", "probability": 0.91015625}, {"start": 662.76, "end": 662.76, "word": " to", "probability": 0.912109375}, {"start": 662.76, "end": 662.98, "word": " deal", "probability": 0.1881103515625}, {"start": 662.98, "end": 663.18, "word": " with", "probability": 0.90478515625}, {"start": 663.18, "end": 663.34, "word": " it.", "probability": 0.86279296875}, {"start": 663.76, "end": 663.84, "word": " So", "probability": 0.430908203125}, {"start": 663.84, "end": 664.38, "word": " he", "probability": 0.51953125}, {"start": 664.38, "end": 664.58, "word": " goes", "probability": 0.2216796875}, {"start": 664.58, "end": 664.72, "word": " back", "probability": 0.412109375}, {"start": 664.72, "end": 664.86, "word": " to", "probability": 0.833984375}, {"start": 664.86, "end": 665.86, "word": " the", "probability": 0.52880859375}, {"start": 665.86, "end": 666.32, "word": " car", "probability": 0.51611328125}, {"start": 666.32, "end": 666.64, "word": " module,", "probability": 0.72119140625}, {"start": 666.86, "end": 666.9, "word": " to", "probability": 0.53564453125}, {"start": 666.9, "end": 667.0, "word": " the", "probability": 0.736328125}, {"start": 667.0, "end": 667.6, "word": " configurator,", "probability": 0.6680908203125}, {"start": 668.1, "end": 668.26, "word": " and", "probability": 0.438232421875}, {"start": 668.26, "end": 668.56, "word": " executes", "probability": 0.60296630859375}, {"start": 668.56, "end": 668.72, "word": " it.", "probability": 0.7373046875}, {"start": 668.74, "end": 668.9, "word": " So", "probability": 0.35107421875}, {"start": 668.9, "end": 669.1, "word": " he", "probability": 0.5576171875}, {"start": 669.1, "end": 669.36, "word": " knows", "probability": 0.70654296875}, {"start": 669.36, "end": 669.58, "word": " that", "probability": 0.619140625}, {"start": 669.58, "end": 669.7, "word": " if", "probability": 0.8681640625}, {"start": 669.7, "end": 669.96, "word": " there", "probability": 0.2113037109375}, {"start": 669.96, "end": 669.96, "word": " is", "probability": 0.69482421875}, {"start": 669.96, "end": 670.04, "word": " no", "probability": 0.6650390625}, {"start": 670.04, "end": 670.24, "word": " current,", "probability": 0.345947265625}, {"start": 670.44, "end": 670.8, "word": " what", "probability": 0.431640625}, {"start": 670.8, "end": 670.84, "word": " will", "probability": 0.42626953125}, {"start": 670.84, "end": 671.04, "word": " happen?", "probability": 0.48681640625}, {"start": 672.34, "end": 672.78, "word": " There", "probability": 0.17041015625}, {"start": 672.78, "end": 673.96, "word": " is", "probability": 0.43310546875}, {"start": 673.96, "end": 674.0, "word": " no", "probability": 0.92431640625}, {"start": 674.0, "end": 674.26, "word": " current.", "probability": 0.818359375}, {"start": 675.4, "end": 675.84, "word": " So", "probability": 0.2353515625}, {"start": 675.84, "end": 675.96, "word": " we", "probability": 0.326171875}, {"start": 675.96, "end": 675.98, "word": " are", "probability": 0.293701171875}, {"start": 675.98, "end": 676.16, "word": " done.", "probability": 0.8310546875}, {"start": 676.46, "end": 676.9, "word": " Did", "probability": 0.54931640625}, {"start": 676.9, "end": 677.0, "word": " we", "probability": 0.890625}, {"start": 677.0, "end": 677.32, "word": " use", "probability": 0.6201171875}, {"start": 677.32, "end": 677.46, "word": " this", "probability": 0.7392578125}, {"start": 677.46, "end": 677.46, "word": " module?", "probability": 0.939453125}, {"start": 677.62, "end": 677.86, "word": " Did", "probability": 0.859375}, {"start": 677.86, "end": 677.86, "word": " we", "probability": 0.95703125}, {"start": 677.86, "end": 678.08, "word": " create", "probability": 0.8486328125}, {"start": 678.08, "end": 678.4, "word": " an", "probability": 0.68896484375}, {"start": 678.4, "end": 678.6, "word": " object", "probability": 0.9765625}, {"start": 678.6, "end": 678.6, "word": " from", "probability": 0.58544921875}, {"start": 678.6, "end": 678.6, "word": " it?", "probability": 0.9287109375}, {"start": 679.22, "end": 679.66, "word": " No.", "probability": 0.767578125}, {"start": 680.06, "end": 680.32, "word": " Where", "probability": 0.71826171875}, {"start": 680.32, "end": 680.42, "word": " are", "probability": 0.283203125}, {"start": 680.42, "end": 680.48, "word": " we", "probability": 0.95166015625}, {"start": 680.48, "end": 680.5, "word": " going", "probability": 0.92333984375}, {"start": 680.5, "end": 680.5, "word": " to", "probability": 0.97119140625}, {"start": 680.5, "end": 680.84, "word": " use", "probability": 0.88427734375}, {"start": 680.84, "end": 681.02, "word": " it?", "probability": 0.919921875}, {"start": 682.4, "end": 682.84, "word": " Here", "probability": 0.65283203125}, {"start": 682.84, "end": 682.94, "word": " in", "probability": 0.74267578125}, {"start": 682.94, "end": 683.04, "word": " the", "probability": 0.8359375}, {"start": 683.04, "end": 683.54, "word": " injector.", "probability": 0.905029296875}, {"start": 683.98, "end": 684.26, "word": " Here", "probability": 0.10235595703125}, {"start": 684.26, "end": 684.5, "word": " I", "probability": 0.375}, {"start": 684.5, "end": 684.64, "word": " want", "probability": 0.423828125}, {"start": 684.64, "end": 684.68, "word": " to", "probability": 0.9677734375}, {"start": 684.68, "end": 684.86, "word": " create", "probability": 0.576171875}, {"start": 684.86, "end": 685.14, "word": " an", "probability": 0.80712890625}, {"start": 685.14, "end": 685.44, "word": " object", "probability": 0.9736328125}, {"start": 685.44, "end": 685.68, "word": " from", "probability": 0.5107421875}, {"start": 685.68, "end": 686.2, "word": " it.", "probability": 0.78076171875}, {"start": 686.66, "end": 687.1, "word": " Car", "probability": 0.716796875}, {"start": 687.1, "end": 687.6, "word": " module,", "probability": 0.5009765625}, {"start": 687.7, "end": 688.04, "word": " new", "probability": 0.66064453125}, {"start": 688.04, "end": 689.4, "word": " car", "probability": 0.5810546875}, {"start": 689.4, "end": 689.74, "word": " module.", "probability": 0.8134765625}], "temperature": 1.0}, {"id": 28, "seek": 72018, "start": 691.64, "end": 720.18, "text": " And here in the injector, what does it do? It reruns it, see? So now our injector has been rerun by a module. So why didn't we rerun it before? Because it didn't need information. It would go and rely on the injector and it would run. But now the situation is different. There is missing information. It reruns it through the module. Because if I run it, it will work. And look at what it did to me.", "tokens": [400, 510, 294, 264, 10711, 284, 11, 437, 775, 309, 360, 30, 467, 43819, 26684, 309, 11, 536, 30, 407, 586, 527, 10711, 284, 575, 668, 43819, 409, 538, 257, 10088, 13, 407, 983, 994, 380, 321, 43819, 409, 309, 949, 30, 1436, 309, 994, 380, 643, 1589, 13, 467, 576, 352, 293, 10687, 322, 264, 10711, 284, 293, 309, 576, 1190, 13, 583, 586, 264, 2590, 307, 819, 13, 821, 307, 5361, 1589, 13, 467, 43819, 26684, 309, 807, 264, 10088, 13, 1436, 498, 286, 1190, 309, 11, 309, 486, 589, 13, 400, 574, 412, 437, 309, 630, 281, 385, 13], "avg_logprob": -0.5324636130657011, "compression_ratio": 1.7621145374449338, "no_speech_prob": 6.020069122314453e-06, "words": [{"start": 691.64, "end": 691.86, "word": " And", "probability": 0.2261962890625}, {"start": 691.86, "end": 692.04, "word": " here", "probability": 0.493408203125}, {"start": 692.04, "end": 692.14, "word": " in", "probability": 0.73388671875}, {"start": 692.14, "end": 692.26, "word": " the", "probability": 0.7451171875}, {"start": 692.26, "end": 692.62, "word": " injector,", "probability": 0.880859375}, {"start": 692.68, "end": 692.76, "word": " what", "probability": 0.84912109375}, {"start": 692.76, "end": 692.9, "word": " does", "probability": 0.669921875}, {"start": 692.9, "end": 692.9, "word": " it", "probability": 0.90966796875}, {"start": 692.9, "end": 693.18, "word": " do?", "probability": 0.953125}, {"start": 694.06, "end": 694.26, "word": " It", "probability": 0.669921875}, {"start": 694.26, "end": 694.5, "word": " reruns", "probability": 0.5023651123046875}, {"start": 694.5, "end": 694.76, "word": " it,", "probability": 0.73583984375}, {"start": 694.86, "end": 695.14, "word": " see?", "probability": 0.51904296875}, {"start": 695.5, "end": 695.82, "word": " So", "probability": 0.2705078125}, {"start": 695.82, "end": 696.08, "word": " now", "probability": 0.81201171875}, {"start": 696.08, "end": 696.18, "word": " our", "probability": 0.47119140625}, {"start": 696.18, "end": 696.98, "word": " injector", "probability": 0.955078125}, {"start": 696.98, "end": 697.24, "word": " has", "probability": 0.288330078125}, {"start": 697.24, "end": 697.24, "word": " been", "probability": 0.37451171875}, {"start": 697.24, "end": 697.56, "word": " rerun", "probability": 0.44207763671875}, {"start": 697.56, "end": 697.78, "word": " by", "probability": 0.73681640625}, {"start": 697.78, "end": 698.48, "word": " a", "probability": 0.6572265625}, {"start": 698.48, "end": 698.74, "word": " module.", "probability": 0.89208984375}, {"start": 699.64, "end": 700.16, "word": " So", "probability": 0.31201171875}, {"start": 700.16, "end": 700.3, "word": " why", "probability": 0.81005859375}, {"start": 700.3, "end": 700.5, "word": " didn't", "probability": 0.797607421875}, {"start": 700.5, "end": 701.04, "word": " we", "probability": 0.798828125}, {"start": 701.04, "end": 701.36, "word": " rerun", "probability": 0.747314453125}, {"start": 701.36, "end": 701.54, "word": " it", "probability": 0.89453125}, {"start": 701.54, "end": 701.54, "word": " before?", "probability": 0.54150390625}, {"start": 702.16, "end": 702.44, "word": " Because", "probability": 0.90771484375}, {"start": 702.44, "end": 702.56, "word": " it", "probability": 0.88818359375}, {"start": 702.56, "end": 702.6, "word": " didn't", "probability": 0.89697265625}, {"start": 702.6, "end": 703.16, "word": " need", "probability": 0.90869140625}, {"start": 703.16, "end": 703.48, "word": " information.", "probability": 0.275146484375}, {"start": 703.56, "end": 703.9, "word": " It", "probability": 0.71484375}, {"start": 703.9, "end": 704.02, "word": " would", "probability": 0.1741943359375}, {"start": 704.02, "end": 704.26, "word": " go", "probability": 0.39111328125}, {"start": 704.26, "end": 704.4, "word": " and", "probability": 0.501953125}, {"start": 704.4, "end": 704.72, "word": " rely", "probability": 0.395751953125}, {"start": 704.72, "end": 704.84, "word": " on", "probability": 0.94580078125}, {"start": 704.84, "end": 704.94, "word": " the", "probability": 0.82421875}, {"start": 704.94, "end": 705.34, "word": " injector", "probability": 0.90380859375}, {"start": 705.34, "end": 705.44, "word": " and", "probability": 0.450439453125}, {"start": 705.44, "end": 705.5, "word": " it", "probability": 0.133544921875}, {"start": 705.5, "end": 705.5, "word": " would", "probability": 0.7177734375}, {"start": 705.5, "end": 705.64, "word": " run.", "probability": 0.2498779296875}, {"start": 705.86, "end": 706.38, "word": " But", "probability": 0.46337890625}, {"start": 706.38, "end": 706.64, "word": " now", "probability": 0.84765625}, {"start": 706.64, "end": 707.08, "word": " the", "probability": 0.5263671875}, {"start": 707.08, "end": 707.26, "word": " situation", "probability": 0.90869140625}, {"start": 707.26, "end": 707.26, "word": " is", "probability": 0.53271484375}, {"start": 707.26, "end": 707.26, "word": " different.", "probability": 0.85546875}, {"start": 707.4, "end": 707.48, "word": " There", "probability": 0.68603515625}, {"start": 707.48, "end": 707.48, "word": " is", "probability": 0.70654296875}, {"start": 707.48, "end": 707.56, "word": " missing", "probability": 0.36962890625}, {"start": 707.56, "end": 708.62, "word": " information.", "probability": 0.787109375}, {"start": 709.52, "end": 710.0, "word": " It", "probability": 0.16015625}, {"start": 710.0, "end": 710.36, "word": " reruns", "probability": 0.8916015625}, {"start": 710.36, "end": 710.44, "word": " it", "probability": 0.8330078125}, {"start": 710.44, "end": 710.78, "word": " through", "probability": 0.78173828125}, {"start": 710.78, "end": 711.72, "word": " the", "probability": 0.8837890625}, {"start": 711.72, "end": 711.98, "word": " module.", "probability": 0.89501953125}, {"start": 712.9, "end": 713.1, "word": " Because", "probability": 0.24365234375}, {"start": 713.1, "end": 713.24, "word": " if", "probability": 0.9150390625}, {"start": 713.24, "end": 713.6, "word": " I", "probability": 0.95751953125}, {"start": 713.6, "end": 713.86, "word": " run", "probability": 0.46728515625}, {"start": 713.86, "end": 716.2, "word": " it,", "probability": 0.321044921875}, {"start": 716.2, "end": 716.54, "word": " it", "probability": 0.82275390625}, {"start": 716.54, "end": 716.62, "word": " will", "probability": 0.599609375}, {"start": 716.62, "end": 716.92, "word": " work.", "probability": 0.60986328125}, {"start": 718.08, "end": 718.6, "word": " And", "probability": 0.78955078125}, {"start": 718.6, "end": 718.88, "word": " look", "probability": 0.2291259765625}, {"start": 718.88, "end": 719.04, "word": " at", "probability": 0.73193359375}, {"start": 719.04, "end": 719.32, "word": " what", "probability": 0.479736328125}, {"start": 719.32, "end": 719.72, "word": " it", "probability": 0.1815185546875}, {"start": 719.72, "end": 719.96, "word": " did", "probability": 0.65185546875}, {"start": 719.96, "end": 720.16, "word": " to", "probability": 0.25048828125}, {"start": 720.16, "end": 720.18, "word": " me.", "probability": 0.685546875}], "temperature": 1.0}, {"id": 29, "seek": 73668, "start": 721.66, "end": 736.68, "text": "and the large type. How do we control and change the class? Here, for example, I want to change it. What do you put instead of large? Small module. Small type. Let me see. That's it.", "tokens": [474, 264, 2416, 2010, 13, 1012, 360, 321, 1969, 293, 1319, 264, 1508, 30, 1692, 11, 337, 1365, 11, 286, 528, 281, 1319, 309, 13, 708, 360, 291, 829, 2602, 295, 2416, 30, 15287, 10088, 13, 15287, 2010, 13, 961, 385, 536, 13, 663, 311, 309, 13], "avg_logprob": -0.4934895609815915, "compression_ratio": 1.338235294117647, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 721.66, "end": 721.92, "word": "and", "probability": 0.356201171875}, {"start": 721.92, "end": 722.0, "word": " the", "probability": 0.1827392578125}, {"start": 722.0, "end": 722.24, "word": " large", "probability": 0.6845703125}, {"start": 722.24, "end": 722.44, "word": " type.", "probability": 0.252197265625}, {"start": 724.9, "end": 725.26, "word": " How", "probability": 0.417724609375}, {"start": 725.26, "end": 725.4, "word": " do", "probability": 0.5068359375}, {"start": 725.4, "end": 725.44, "word": " we", "probability": 0.72705078125}, {"start": 725.44, "end": 725.76, "word": " control", "probability": 0.51416015625}, {"start": 725.76, "end": 725.98, "word": " and", "probability": 0.3798828125}, {"start": 725.98, "end": 726.22, "word": " change", "probability": 0.82763671875}, {"start": 726.22, "end": 726.36, "word": " the", "probability": 0.5068359375}, {"start": 726.36, "end": 726.72, "word": " class?", "probability": 0.83447265625}, {"start": 726.76, "end": 726.92, "word": " Here,", "probability": 0.347900390625}, {"start": 727.0, "end": 727.08, "word": " for", "probability": 0.73095703125}, {"start": 727.08, "end": 727.14, "word": " example,", "probability": 0.90283203125}, {"start": 727.18, "end": 727.22, "word": " I", "probability": 0.859375}, {"start": 727.22, "end": 727.34, "word": " want", "probability": 0.77783203125}, {"start": 727.34, "end": 727.4, "word": " to", "probability": 0.9677734375}, {"start": 727.4, "end": 727.72, "word": " change", "probability": 0.8828125}, {"start": 727.72, "end": 727.88, "word": " it.", "probability": 0.39453125}, {"start": 727.94, "end": 728.04, "word": " What", "probability": 0.445556640625}, {"start": 728.04, "end": 728.04, "word": " do", "probability": 0.837890625}, {"start": 728.04, "end": 728.06, "word": " you", "probability": 0.861328125}, {"start": 728.06, "end": 728.28, "word": " put", "probability": 0.802734375}, {"start": 728.28, "end": 728.66, "word": " instead", "probability": 0.67333984375}, {"start": 728.66, "end": 728.7, "word": " of", "probability": 0.96826171875}, {"start": 728.7, "end": 729.1, "word": " large?", "probability": 0.82373046875}, {"start": 732.2, "end": 732.56, "word": " Small", "probability": 0.449951171875}, {"start": 732.56, "end": 733.38, "word": " module.", "probability": 0.7490234375}, {"start": 734.26, "end": 734.62, "word": " Small", "probability": 0.66064453125}, {"start": 734.62, "end": 734.82, "word": " type.", "probability": 0.87939453125}, {"start": 736.02, "end": 736.3, "word": " Let", "probability": 0.310546875}, {"start": 736.3, "end": 736.3, "word": " me", "probability": 0.69677734375}, {"start": 736.3, "end": 736.4, "word": " see.", "probability": 0.80712890625}, {"start": 736.5, "end": 736.68, "word": " That's", "probability": 0.839599609375}, {"start": 736.68, "end": 736.68, "word": " it.", "probability": 0.765625}], "temperature": 1.0}, {"id": 30, "seek": 77520, "start": 748.02, "end": 775.2, "text": " Ok, this is what Smolter wrote Another example on the topic of the interface and abstract class Go to the class engine I will leave the engine blank Abstract class As soon as it becomes abstract too And I go and tell it to make object from car It also made an error Wait a second What error did it make?", "tokens": [3477, 11, 341, 307, 437, 3915, 401, 391, 4114, 3996, 1365, 322, 264, 4829, 295, 264, 9226, 293, 12649, 1508, 1037, 281, 264, 1508, 2848, 286, 486, 1856, 264, 2848, 8247, 46853, 1897, 1508, 1018, 2321, 382, 309, 3643, 12649, 886, 400, 286, 352, 293, 980, 309, 281, 652, 2657, 490, 1032, 467, 611, 1027, 364, 6713, 3802, 257, 1150, 708, 6713, 630, 309, 652, 30], "avg_logprob": -0.6749067039632085, "compression_ratio": 1.5833333333333333, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 748.02, "end": 748.34, "word": " Ok,", "probability": 0.162841796875}, {"start": 748.4, "end": 748.56, "word": " this", "probability": 0.3388671875}, {"start": 748.56, "end": 748.58, "word": " is", "probability": 0.408935546875}, {"start": 748.58, "end": 748.76, "word": " what", "probability": 0.279052734375}, {"start": 748.76, "end": 749.96, "word": " Smolter", "probability": 0.5255533854166666}, {"start": 749.96, "end": 749.96, "word": " wrote", "probability": 0.62939453125}, {"start": 749.96, "end": 750.92, "word": " Another", "probability": 0.47705078125}, {"start": 750.92, "end": 751.46, "word": " example", "probability": 0.94677734375}, {"start": 751.46, "end": 752.24, "word": " on", "probability": 0.33447265625}, {"start": 752.24, "end": 752.6, "word": " the", "probability": 0.6513671875}, {"start": 752.6, "end": 752.6, "word": " topic", "probability": 0.42236328125}, {"start": 752.6, "end": 753.54, "word": " of", "probability": 0.884765625}, {"start": 753.54, "end": 753.76, "word": " the", "probability": 0.404296875}, {"start": 753.76, "end": 754.22, "word": " interface", "probability": 0.7041015625}, {"start": 754.22, "end": 754.34, "word": " and", "probability": 0.51123046875}, {"start": 754.34, "end": 754.56, "word": " abstract", "probability": 0.60791015625}, {"start": 754.56, "end": 755.1, "word": " class", "probability": 0.92138671875}, {"start": 755.1, "end": 755.34, "word": " Go", "probability": 0.5732421875}, {"start": 755.34, "end": 755.48, "word": " to", "probability": 0.95263671875}, {"start": 755.48, "end": 755.6, "word": " the", "probability": 0.330322265625}, {"start": 755.6, "end": 756.0, "word": " class", "probability": 0.96142578125}, {"start": 756.0, "end": 756.88, "word": " engine", "probability": 0.443115234375}, {"start": 756.88, "end": 758.26, "word": " I", "probability": 0.34716796875}, {"start": 758.26, "end": 758.36, "word": " will", "probability": 0.46875}, {"start": 758.36, "end": 758.5, "word": " leave", "probability": 0.188232421875}, {"start": 758.5, "end": 758.9, "word": " the", "probability": 0.7001953125}, {"start": 758.9, "end": 759.18, "word": " engine", "probability": 0.92138671875}, {"start": 759.18, "end": 760.44, "word": " blank", "probability": 0.138916015625}, {"start": 760.44, "end": 762.24, "word": " Abstract", "probability": 0.6739501953125}, {"start": 762.24, "end": 762.7, "word": " class", "probability": 0.95556640625}, {"start": 762.7, "end": 763.52, "word": " As", "probability": 0.3232421875}, {"start": 763.52, "end": 763.74, "word": " soon", "probability": 0.94921875}, {"start": 763.74, "end": 763.86, "word": " as", "probability": 0.97119140625}, {"start": 763.86, "end": 764.2, "word": " it", "probability": 0.1651611328125}, {"start": 764.2, "end": 764.2, "word": " becomes", "probability": 0.56103515625}, {"start": 764.2, "end": 764.72, "word": " abstract", "probability": 0.7607421875}, {"start": 764.72, "end": 765.28, "word": " too", "probability": 0.309326171875}, {"start": 765.28, "end": 766.82, "word": " And", "probability": 0.431884765625}, {"start": 766.82, "end": 767.02, "word": " I", "probability": 0.6748046875}, {"start": 767.02, "end": 767.02, "word": " go", "probability": 0.295166015625}, {"start": 767.02, "end": 767.22, "word": " and", "probability": 0.481201171875}, {"start": 767.22, "end": 767.38, "word": " tell", "probability": 0.59423828125}, {"start": 767.38, "end": 767.6, "word": " it", "probability": 0.5400390625}, {"start": 767.6, "end": 767.68, "word": " to", "probability": 0.66845703125}, {"start": 767.68, "end": 767.92, "word": " make", "probability": 0.51318359375}, {"start": 767.92, "end": 769.56, "word": " object", "probability": 0.37841796875}, {"start": 769.56, "end": 769.78, "word": " from", "probability": 0.767578125}, {"start": 769.78, "end": 770.12, "word": " car", "probability": 0.5712890625}, {"start": 770.12, "end": 770.8, "word": " It", "probability": 0.3671875}, {"start": 770.8, "end": 770.92, "word": " also", "probability": 0.462646484375}, {"start": 770.92, "end": 771.14, "word": " made", "probability": 0.217041015625}, {"start": 771.14, "end": 771.32, "word": " an", "probability": 0.5673828125}, {"start": 771.32, "end": 771.54, "word": " error", "probability": 0.89208984375}, {"start": 771.54, "end": 773.44, "word": " Wait", "probability": 0.23974609375}, {"start": 773.44, "end": 773.44, "word": " a", "probability": 0.44140625}, {"start": 773.44, "end": 774.02, "word": " second", "probability": 0.36083984375}, {"start": 774.02, "end": 774.64, "word": " What", "probability": 0.6474609375}, {"start": 774.64, "end": 774.9, "word": " error", "probability": 0.6396484375}, {"start": 774.9, "end": 775.02, "word": " did", "probability": 0.515625}, {"start": 775.02, "end": 775.02, "word": " it", "probability": 0.85205078125}, {"start": 775.02, "end": 775.2, "word": " make?", "probability": 0.58203125}], "temperature": 1.0}, {"id": 31, "seek": 80184, "start": 777.0, "end": 801.84, "text": " Missing implementation No implementation for what? For engine. He can't create an object from an abstract class. So I'm going to tell him to create a class called BMWEngine Where did it go?", "tokens": [5275, 278, 11420, 883, 11420, 337, 437, 30, 1171, 2848, 13, 634, 393, 380, 1884, 364, 2657, 490, 364, 12649, 1508, 13, 407, 286, 478, 516, 281, 980, 796, 281, 1884, 257, 1508, 1219, 21355, 31254, 533, 2305, 630, 309, 352, 30], "avg_logprob": -0.490915717080582, "compression_ratio": 1.3669064748201438, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 777.0, "end": 777.6, "word": " Missing", "probability": 0.684326171875}, {"start": 777.6, "end": 778.2, "word": " implementation", "probability": 0.84716796875}, {"start": 778.2, "end": 779.56, "word": " No", "probability": 0.61962890625}, {"start": 779.56, "end": 780.26, "word": " implementation", "probability": 0.89501953125}, {"start": 780.26, "end": 780.58, "word": " for", "probability": 0.91650390625}, {"start": 780.58, "end": 780.84, "word": " what?", "probability": 0.390869140625}, {"start": 781.24, "end": 781.8, "word": " For", "probability": 0.56201171875}, {"start": 781.8, "end": 782.12, "word": " engine.", "probability": 0.78271484375}, {"start": 782.3, "end": 782.48, "word": " He", "probability": 0.2457275390625}, {"start": 782.48, "end": 782.6, "word": " can't", "probability": 0.69482421875}, {"start": 782.6, "end": 782.9, "word": " create", "probability": 0.430908203125}, {"start": 782.9, "end": 783.04, "word": " an", "probability": 0.40576171875}, {"start": 783.04, "end": 783.2, "word": " object", "probability": 0.982421875}, {"start": 783.2, "end": 783.5, "word": " from", "probability": 0.70458984375}, {"start": 783.5, "end": 784.2, "word": " an", "probability": 0.0975341796875}, {"start": 784.2, "end": 784.38, "word": " abstract", "probability": 0.8681640625}, {"start": 784.38, "end": 784.86, "word": " class.", "probability": 0.94970703125}, {"start": 785.1, "end": 785.48, "word": " So", "probability": 0.7802734375}, {"start": 785.48, "end": 785.72, "word": " I'm", "probability": 0.30792236328125}, {"start": 785.72, "end": 785.78, "word": " going", "probability": 0.73486328125}, {"start": 785.78, "end": 785.9, "word": " to", "probability": 0.966796875}, {"start": 785.9, "end": 786.08, "word": " tell", "probability": 0.5}, {"start": 786.08, "end": 786.38, "word": " him", "probability": 0.880859375}, {"start": 786.38, "end": 786.84, "word": " to", "probability": 0.85693359375}, {"start": 786.84, "end": 787.0, "word": " create", "probability": 0.5302734375}, {"start": 787.0, "end": 787.16, "word": " a", "probability": 0.962890625}, {"start": 787.16, "end": 787.62, "word": " class", "probability": 0.9677734375}, {"start": 787.62, "end": 789.34, "word": " called", "probability": 0.25537109375}, {"start": 789.34, "end": 791.94, "word": " BMWEngine", "probability": 0.6280924479166666}, {"start": 791.94, "end": 801.58, "word": " Where", "probability": 0.49365234375}, {"start": 801.58, "end": 801.74, "word": " did", "probability": 0.8369140625}, {"start": 801.74, "end": 801.74, "word": " it", "probability": 0.89453125}, {"start": 801.74, "end": 801.84, "word": " go?", "probability": 0.9384765625}], "temperature": 1.0}, {"id": 32, "seek": 82346, "start": 805.86, "end": 823.46, "text": "Okay, this is the class BMW, we will also make it extends engine As soon as it makes extend, it will bring a line to implement to whom? To the constructor As long as this has constructor, what should this do? inject", "tokens": [8297, 11, 341, 307, 264, 1508, 21355, 11, 321, 486, 611, 652, 309, 26448, 2848, 1018, 2321, 382, 309, 1669, 10101, 11, 309, 486, 1565, 257, 1622, 281, 4445, 281, 7101, 30, 1407, 264, 47479, 1018, 938, 382, 341, 575, 47479, 11, 437, 820, 341, 360, 30, 10711], "avg_logprob": -0.5749362244897959, "compression_ratio": 1.4625850340136055, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 805.86, "end": 806.16, "word": "Okay,", "probability": 0.188720703125}, {"start": 806.22, "end": 806.38, "word": " this", "probability": 0.673828125}, {"start": 806.38, "end": 806.48, "word": " is", "probability": 0.338623046875}, {"start": 806.48, "end": 806.52, "word": " the", "probability": 0.4619140625}, {"start": 806.52, "end": 806.68, "word": " class", "probability": 0.79150390625}, {"start": 806.68, "end": 806.98, "word": " BMW,", "probability": 0.646484375}, {"start": 807.38, "end": 807.72, "word": " we", "probability": 0.3544921875}, {"start": 807.72, "end": 807.72, "word": " will", "probability": 0.349853515625}, {"start": 807.72, "end": 807.72, "word": " also", "probability": 0.57861328125}, {"start": 807.72, "end": 808.14, "word": " make", "probability": 0.318115234375}, {"start": 808.14, "end": 808.26, "word": " it", "probability": 0.73583984375}, {"start": 808.26, "end": 808.86, "word": " extends", "probability": 0.4921875}, {"start": 808.86, "end": 813.22, "word": " engine", "probability": 0.671875}, {"start": 813.22, "end": 814.12, "word": " As", "probability": 0.292236328125}, {"start": 814.12, "end": 814.36, "word": " soon", "probability": 0.89892578125}, {"start": 814.36, "end": 814.42, "word": " as", "probability": 0.96923828125}, {"start": 814.42, "end": 814.6, "word": " it", "probability": 0.5009765625}, {"start": 814.6, "end": 814.7, "word": " makes", "probability": 0.33251953125}, {"start": 814.7, "end": 815.06, "word": " extend,", "probability": 0.5380859375}, {"start": 815.2, "end": 815.28, "word": " it", "probability": 0.82177734375}, {"start": 815.28, "end": 815.32, "word": " will", "probability": 0.50537109375}, {"start": 815.32, "end": 815.44, "word": " bring", "probability": 0.533203125}, {"start": 815.44, "end": 815.54, "word": " a", "probability": 0.394287109375}, {"start": 815.54, "end": 815.74, "word": " line", "probability": 0.80224609375}, {"start": 815.74, "end": 815.96, "word": " to", "probability": 0.80126953125}, {"start": 815.96, "end": 816.6, "word": " implement", "probability": 0.7353515625}, {"start": 816.6, "end": 816.9, "word": " to", "probability": 0.489990234375}, {"start": 816.9, "end": 817.04, "word": " whom?", "probability": 0.59521484375}, {"start": 817.76, "end": 817.92, "word": " To", "probability": 0.640625}, {"start": 817.92, "end": 818.04, "word": " the", "probability": 0.572265625}, {"start": 818.04, "end": 818.5, "word": " constructor", "probability": 0.927734375}, {"start": 818.5, "end": 819.36, "word": " As", "probability": 0.2578125}, {"start": 819.36, "end": 819.68, "word": " long", "probability": 0.78125}, {"start": 819.68, "end": 819.68, "word": " as", "probability": 0.9580078125}, {"start": 819.68, "end": 819.82, "word": " this", "probability": 0.6025390625}, {"start": 819.82, "end": 820.0, "word": " has", "probability": 0.41162109375}, {"start": 820.0, "end": 820.46, "word": " constructor,", "probability": 0.57421875}, {"start": 820.62, "end": 820.74, "word": " what", "probability": 0.407470703125}, {"start": 820.74, "end": 820.86, "word": " should", "probability": 0.66162109375}, {"start": 820.86, "end": 821.02, "word": " this", "probability": 0.2705078125}, {"start": 821.02, "end": 821.22, "word": " do?", "probability": 0.77197265625}, {"start": 823.1, "end": 823.46, "word": " inject", "probability": 0.583984375}], "temperature": 1.0}, {"id": 33, "seek": 85702, "start": 827.36, "end": 857.02, "text": "Did you find the inject in the engine? It is no longer useful. Why? Because it will not create an object from the engine at all. Right? This inject remains. If you leave it, it is not a problem. But this must be put in it at inject. And we want to come here and make an override to whom? To string to say BMW engine with", "tokens": [17648, 291, 915, 264, 10711, 294, 264, 2848, 30, 467, 307, 572, 2854, 4420, 13, 1545, 30, 1436, 309, 486, 406, 1884, 364, 2657, 490, 264, 2848, 412, 439, 13, 1779, 30, 639, 10711, 7023, 13, 759, 291, 1856, 309, 11, 309, 307, 406, 257, 1154, 13, 583, 341, 1633, 312, 829, 294, 309, 412, 10711, 13, 400, 321, 528, 281, 808, 510, 293, 652, 364, 42321, 281, 7101, 30, 1407, 6798, 281, 584, 21355, 2848, 365], "avg_logprob": -0.609374986245082, "compression_ratio": 1.509433962264151, "no_speech_prob": 2.384185791015625e-05, "words": [{"start": 827.36, "end": 827.6, "word": "Did", "probability": 0.10101318359375}, {"start": 827.6, "end": 827.76, "word": " you", "probability": 0.94970703125}, {"start": 827.76, "end": 827.76, "word": " find", "probability": 0.395751953125}, {"start": 827.76, "end": 827.9, "word": " the", "probability": 0.475830078125}, {"start": 827.9, "end": 828.18, "word": " inject", "probability": 0.599609375}, {"start": 828.18, "end": 828.38, "word": " in", "probability": 0.55126953125}, {"start": 828.38, "end": 828.52, "word": " the", "probability": 0.428466796875}, {"start": 828.52, "end": 828.88, "word": " engine?", "probability": 0.9013671875}, {"start": 828.98, "end": 829.34, "word": " It", "probability": 0.44921875}, {"start": 829.34, "end": 829.34, "word": " is", "probability": 0.2420654296875}, {"start": 829.34, "end": 829.34, "word": " no", "probability": 0.313232421875}, {"start": 829.34, "end": 829.34, "word": " longer", "probability": 0.908203125}, {"start": 829.34, "end": 829.78, "word": " useful.", "probability": 0.6826171875}, {"start": 830.22, "end": 830.48, "word": " Why?", "probability": 0.5634765625}, {"start": 830.54, "end": 830.76, "word": " Because", "probability": 0.8076171875}, {"start": 830.76, "end": 832.04, "word": " it", "probability": 0.5927734375}, {"start": 832.04, "end": 832.32, "word": " will", "probability": 0.443115234375}, {"start": 832.32, "end": 832.32, "word": " not", "probability": 0.74951171875}, {"start": 832.32, "end": 832.62, "word": " create", "probability": 0.490966796875}, {"start": 832.62, "end": 832.8, "word": " an", "probability": 0.442626953125}, {"start": 832.8, "end": 832.94, "word": " object", "probability": 0.9521484375}, {"start": 832.94, "end": 833.1, "word": " from", "probability": 0.71630859375}, {"start": 833.1, "end": 833.2, "word": " the", "probability": 0.62548828125}, {"start": 833.2, "end": 833.38, "word": " engine", "probability": 0.947265625}, {"start": 833.38, "end": 833.52, "word": " at", "probability": 0.76318359375}, {"start": 833.52, "end": 833.84, "word": " all.", "probability": 0.94677734375}, {"start": 833.98, "end": 834.32, "word": " Right?", "probability": 0.38720703125}, {"start": 834.42, "end": 834.74, "word": " This", "probability": 0.2271728515625}, {"start": 834.74, "end": 835.16, "word": " inject", "probability": 0.71826171875}, {"start": 835.16, "end": 835.2, "word": " remains.", "probability": 0.31005859375}, {"start": 836.78, "end": 837.32, "word": " If", "probability": 0.73486328125}, {"start": 837.32, "end": 837.66, "word": " you", "probability": 0.5849609375}, {"start": 837.66, "end": 837.88, "word": " leave", "probability": 0.48486328125}, {"start": 837.88, "end": 838.0, "word": " it,", "probability": 0.90380859375}, {"start": 838.18, "end": 838.56, "word": " it", "probability": 0.6533203125}, {"start": 838.56, "end": 838.66, "word": " is", "probability": 0.451416015625}, {"start": 838.66, "end": 838.74, "word": " not", "probability": 0.38037109375}, {"start": 838.74, "end": 839.04, "word": " a", "probability": 0.939453125}, {"start": 839.04, "end": 839.04, "word": " problem.", "probability": 0.85546875}, {"start": 839.32, "end": 839.84, "word": " But", "probability": 0.8603515625}, {"start": 839.84, "end": 840.12, "word": " this", "probability": 0.44677734375}, {"start": 840.12, "end": 840.28, "word": " must", "probability": 0.52294921875}, {"start": 840.28, "end": 840.48, "word": " be", "probability": 0.67041015625}, {"start": 840.48, "end": 840.62, "word": " put", "probability": 0.33203125}, {"start": 840.62, "end": 840.76, "word": " in", "probability": 0.57275390625}, {"start": 840.76, "end": 841.38, "word": " it", "probability": 0.498779296875}, {"start": 841.38, "end": 842.44, "word": " at", "probability": 0.3857421875}, {"start": 842.44, "end": 842.78, "word": " inject.", "probability": 0.8154296875}, {"start": 843.14, "end": 843.38, "word": " And", "probability": 0.5380859375}, {"start": 843.38, "end": 843.56, "word": " we", "probability": 0.52978515625}, {"start": 843.56, "end": 843.56, "word": " want", "probability": 0.22265625}, {"start": 843.56, "end": 843.68, "word": " to", "probability": 0.92431640625}, {"start": 843.68, "end": 843.76, "word": " come", "probability": 0.491455078125}, {"start": 843.76, "end": 844.02, "word": " here", "probability": 0.83154296875}, {"start": 844.02, "end": 844.36, "word": " and", "probability": 0.469970703125}, {"start": 844.36, "end": 844.56, "word": " make", "probability": 0.22509765625}, {"start": 844.56, "end": 844.96, "word": " an", "probability": 0.440673828125}, {"start": 844.96, "end": 845.34, "word": " override", "probability": 0.98095703125}, {"start": 845.34, "end": 845.54, "word": " to", "probability": 0.457763671875}, {"start": 845.54, "end": 845.7, "word": " whom?", "probability": 0.689453125}, {"start": 846.68, "end": 847.22, "word": " To", "probability": 0.873046875}, {"start": 847.22, "end": 847.6, "word": " string", "probability": 0.5693359375}, {"start": 847.6, "end": 847.9, "word": " to", "probability": 0.3662109375}, {"start": 847.9, "end": 848.26, "word": " say", "probability": 0.5078125}, {"start": 848.26, "end": 851.7, "word": " BMW", "probability": 0.331787109375}, {"start": 851.7, "end": 852.54, "word": " engine", "probability": 0.60205078125}, {"start": 852.54, "end": 857.02, "word": " with", "probability": 0.85400390625}], "temperature": 1.0}, {"id": 34, "seek": 88781, "start": 858.89, "end": 887.81, "text": " C, which is its cylinder Ok, until now it will not work I did not tell it that if I find engine Create BMW engine So this is what we will do In the car module, we will do binding again In the configure, we will also tell it bind That if I find engine Dot class Go and bind to BMW engine", "tokens": [383, 11, 597, 307, 1080, 17884, 3477, 11, 1826, 586, 309, 486, 406, 589, 286, 630, 406, 980, 309, 300, 498, 286, 915, 2848, 20248, 21355, 2848, 407, 341, 307, 437, 321, 486, 360, 682, 264, 1032, 10088, 11, 321, 486, 360, 17359, 797, 682, 264, 22162, 11, 321, 486, 611, 980, 309, 14786, 663, 498, 286, 915, 2848, 38753, 1508, 1037, 293, 14786, 281, 21355, 2848], "avg_logprob": -0.4931066062520532, "compression_ratio": 1.688235294117647, "no_speech_prob": 5.0067901611328125e-06, "words": [{"start": 858.89, "end": 859.33, "word": " C,", "probability": 0.303466796875}, {"start": 859.85, "end": 859.97, "word": " which", "probability": 0.6982421875}, {"start": 859.97, "end": 860.07, "word": " is", "probability": 0.9150390625}, {"start": 860.07, "end": 860.15, "word": " its", "probability": 0.324951171875}, {"start": 860.15, "end": 860.55, "word": " cylinder", "probability": 0.83203125}, {"start": 860.55, "end": 865.35, "word": " Ok,", "probability": 0.204833984375}, {"start": 865.71, "end": 866.05, "word": " until", "probability": 0.24609375}, {"start": 866.05, "end": 866.25, "word": " now", "probability": 0.93798828125}, {"start": 866.25, "end": 866.43, "word": " it", "probability": 0.6689453125}, {"start": 866.43, "end": 866.43, "word": " will", "probability": 0.292724609375}, {"start": 866.43, "end": 866.43, "word": " not", "probability": 0.92431640625}, {"start": 866.43, "end": 866.77, "word": " work", "probability": 0.89306640625}, {"start": 866.77, "end": 867.33, "word": " I", "probability": 0.77099609375}, {"start": 867.33, "end": 867.47, "word": " did", "probability": 0.4501953125}, {"start": 867.47, "end": 867.47, "word": " not", "probability": 0.94189453125}, {"start": 867.47, "end": 867.69, "word": " tell", "probability": 0.615234375}, {"start": 867.69, "end": 867.87, "word": " it", "probability": 0.5810546875}, {"start": 867.87, "end": 867.95, "word": " that", "probability": 0.188232421875}, {"start": 867.95, "end": 868.41, "word": " if", "probability": 0.77685546875}, {"start": 868.41, "end": 868.55, "word": " I", "probability": 0.599609375}, {"start": 868.55, "end": 868.69, "word": " find", "probability": 0.625}, {"start": 868.69, "end": 869.13, "word": " engine", "probability": 0.6123046875}, {"start": 869.13, "end": 870.29, "word": " Create", "probability": 0.372802734375}, {"start": 870.29, "end": 870.73, "word": " BMW", "probability": 0.83251953125}, {"start": 870.73, "end": 871.17, "word": " engine", "probability": 0.85302734375}, {"start": 871.17, "end": 871.33, "word": " So", "probability": 0.404052734375}, {"start": 871.33, "end": 871.49, "word": " this", "probability": 0.55712890625}, {"start": 871.49, "end": 871.51, "word": " is", "probability": 0.88427734375}, {"start": 871.51, "end": 871.65, "word": " what", "probability": 0.89111328125}, {"start": 871.65, "end": 871.73, "word": " we", "probability": 0.9189453125}, {"start": 871.73, "end": 871.79, "word": " will", "probability": 0.239990234375}, {"start": 871.79, "end": 872.05, "word": " do", "probability": 0.923828125}, {"start": 872.05, "end": 873.39, "word": " In", "probability": 0.470703125}, {"start": 873.39, "end": 873.53, "word": " the", "probability": 0.58544921875}, {"start": 873.53, "end": 873.67, "word": " car", "probability": 0.775390625}, {"start": 873.67, "end": 874.01, "word": " module,", "probability": 0.9091796875}, {"start": 874.11, "end": 874.21, "word": " we", "probability": 0.88134765625}, {"start": 874.21, "end": 874.29, "word": " will", "probability": 0.64697265625}, {"start": 874.29, "end": 874.45, "word": " do", "probability": 0.4501953125}, {"start": 874.45, "end": 874.83, "word": " binding", "probability": 0.427734375}, {"start": 874.83, "end": 875.31, "word": " again", "probability": 0.9375}, {"start": 875.31, "end": 875.61, "word": " In", "probability": 0.759765625}, {"start": 875.61, "end": 875.69, "word": " the", "probability": 0.71044921875}, {"start": 875.69, "end": 876.05, "word": " configure,", "probability": 0.330322265625}, {"start": 876.67, "end": 876.95, "word": " we", "probability": 0.79931640625}, {"start": 876.95, "end": 877.03, "word": " will", "probability": 0.7216796875}, {"start": 877.03, "end": 877.05, "word": " also", "probability": 0.576171875}, {"start": 877.05, "end": 877.15, "word": " tell", "probability": 0.501953125}, {"start": 877.15, "end": 877.57, "word": " it", "probability": 0.7919921875}, {"start": 877.57, "end": 877.91, "word": " bind", "probability": 0.65625}, {"start": 877.91, "end": 879.45, "word": " That", "probability": 0.5107421875}, {"start": 879.45, "end": 879.63, "word": " if", "probability": 0.9140625}, {"start": 879.63, "end": 879.97, "word": " I", "probability": 0.86767578125}, {"start": 879.97, "end": 879.97, "word": " find", "probability": 0.82958984375}, {"start": 879.97, "end": 880.53, "word": " engine", "probability": 0.92578125}, {"start": 880.53, "end": 881.89, "word": " Dot", "probability": 0.2496337890625}, {"start": 881.89, "end": 882.47, "word": " class", "probability": 0.96875}, {"start": 882.47, "end": 883.67, "word": " Go", "probability": 0.77001953125}, {"start": 883.67, "end": 883.77, "word": " and", "probability": 0.466796875}, {"start": 883.77, "end": 884.83, "word": " bind", "probability": 0.57470703125}, {"start": 884.83, "end": 885.29, "word": " to", "probability": 0.771484375}, {"start": 885.29, "end": 886.97, "word": " BMW", "probability": 0.9501953125}, {"start": 886.97, "end": 887.81, "word": " engine", "probability": 0.7880859375}], "temperature": 1.0}, {"id": 35, "seek": 90307, "start": 889.55, "end": 903.07, "text": " dot class and this is run and what did it do? it wrote BMW engine", "tokens": [5893, 1508, 293, 341, 307, 1190, 293, 437, 630, 309, 360, 30, 309, 4114, 21355, 2848], "avg_logprob": -0.8028492647058824, "compression_ratio": 1.0153846153846153, "no_speech_prob": 2.2590160369873047e-05, "words": [{"start": 889.55, "end": 889.85, "word": " dot", "probability": 0.08416748046875}, {"start": 889.85, "end": 890.35, "word": " class", "probability": 0.9384765625}, {"start": 890.35, "end": 897.65, "word": " and", "probability": 0.21533203125}, {"start": 897.65, "end": 897.81, "word": " this", "probability": 0.1871337890625}, {"start": 897.81, "end": 897.85, "word": " is", "probability": 0.56787109375}, {"start": 897.85, "end": 898.11, "word": " run", "probability": 0.79150390625}, {"start": 898.11, "end": 898.93, "word": " and", "probability": 0.53125}, {"start": 898.93, "end": 899.31, "word": " what", "probability": 0.32958984375}, {"start": 899.31, "end": 899.43, "word": " did", "probability": 0.447265625}, {"start": 899.43, "end": 899.43, "word": " it", "probability": 0.6572265625}, {"start": 899.43, "end": 899.65, "word": " do?", "probability": 0.53759765625}, {"start": 899.75, "end": 899.83, "word": " it", "probability": 0.398681640625}, {"start": 899.83, "end": 899.97, "word": " wrote", "probability": 0.78759765625}, {"start": 899.97, "end": 901.13, "word": " BMW", "probability": 0.4853515625}, {"start": 901.13, "end": 903.07, "word": " engine", "probability": 0.77392578125}], "temperature": 1.0}, {"id": 36, "seek": 93176, "start": 906.78, "end": 931.76, "text": " If I had an interface in my tree, an interface or abstract class, you have to create a module to define the binding, what connects this interface or abstract class to a concrete class. And this is done inside the module in a method called configure. What I see is that if a tester comes, like this example, for example, I have a UI connected to a database. He wants to put a Mock.", "tokens": [759, 286, 632, 364, 9226, 294, 452, 4230, 11, 364, 9226, 420, 12649, 1508, 11, 291, 362, 281, 1884, 257, 10088, 281, 6964, 264, 17359, 11, 437, 16967, 341, 9226, 420, 12649, 1508, 281, 257, 9859, 1508, 13, 400, 341, 307, 1096, 1854, 264, 10088, 294, 257, 3170, 1219, 22162, 13, 708, 286, 536, 307, 300, 498, 257, 36101, 1487, 11, 411, 341, 1365, 11, 337, 1365, 11, 286, 362, 257, 15682, 4582, 281, 257, 8149, 13, 634, 2738, 281, 829, 257, 376, 1560, 13], "avg_logprob": -0.47856104928393695, "compression_ratio": 1.7239819004524888, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 906.78, "end": 907.02, "word": " If", "probability": 0.279296875}, {"start": 907.02, "end": 907.14, "word": " I", "probability": 0.71826171875}, {"start": 907.14, "end": 907.28, "word": " had", "probability": 0.62646484375}, {"start": 907.28, "end": 907.98, "word": " an", "probability": 0.77587890625}, {"start": 907.98, "end": 907.98, "word": " interface", "probability": 0.85546875}, {"start": 907.98, "end": 908.36, "word": " in", "probability": 0.6708984375}, {"start": 908.36, "end": 908.44, "word": " my", "probability": 0.88525390625}, {"start": 908.44, "end": 908.74, "word": " tree,", "probability": 0.8798828125}, {"start": 909.08, "end": 909.2, "word": " an", "probability": 0.392822265625}, {"start": 909.2, "end": 909.72, "word": " interface", "probability": 0.84228515625}, {"start": 909.72, "end": 910.1, "word": " or", "probability": 0.86962890625}, {"start": 910.1, "end": 910.42, "word": " abstract", "probability": 0.5595703125}, {"start": 910.42, "end": 910.86, "word": " class,", "probability": 0.96728515625}, {"start": 910.9, "end": 911.06, "word": " you", "probability": 0.26611328125}, {"start": 911.06, "end": 911.12, "word": " have", "probability": 0.2587890625}, {"start": 911.12, "end": 911.28, "word": " to", "probability": 0.96630859375}, {"start": 911.28, "end": 911.48, "word": " create", "probability": 0.83544921875}, {"start": 911.48, "end": 911.6, "word": " a", "probability": 0.9716796875}, {"start": 911.6, "end": 911.9, "word": " module", "probability": 0.92236328125}, {"start": 911.9, "end": 912.18, "word": " to", "probability": 0.85546875}, {"start": 912.18, "end": 912.56, "word": " define", "probability": 0.390869140625}, {"start": 912.56, "end": 913.66, "word": " the", "probability": 0.4189453125}, {"start": 913.66, "end": 914.14, "word": " binding,", "probability": 0.8828125}, {"start": 914.26, "end": 914.48, "word": " what", "probability": 0.517578125}, {"start": 914.48, "end": 914.76, "word": " connects", "probability": 0.70947265625}, {"start": 914.76, "end": 914.9, "word": " this", "probability": 0.482177734375}, {"start": 914.9, "end": 915.36, "word": " interface", "probability": 0.720703125}, {"start": 915.36, "end": 915.62, "word": " or", "probability": 0.7890625}, {"start": 915.62, "end": 915.88, "word": " abstract", "probability": 0.81005859375}, {"start": 915.88, "end": 916.52, "word": " class", "probability": 0.94921875}, {"start": 916.52, "end": 917.24, "word": " to", "probability": 0.5517578125}, {"start": 917.24, "end": 917.3, "word": " a", "probability": 0.67529296875}, {"start": 917.3, "end": 917.68, "word": " concrete", "probability": 0.91259765625}, {"start": 917.68, "end": 918.16, "word": " class.", "probability": 0.9326171875}, {"start": 918.62, "end": 918.9, "word": " And", "probability": 0.450927734375}, {"start": 918.9, "end": 919.02, "word": " this", "probability": 0.72900390625}, {"start": 919.02, "end": 919.14, "word": " is", "probability": 0.4814453125}, {"start": 919.14, "end": 919.3, "word": " done", "probability": 0.7431640625}, {"start": 919.3, "end": 919.48, "word": " inside", "probability": 0.70703125}, {"start": 919.48, "end": 919.64, "word": " the", "probability": 0.810546875}, {"start": 919.64, "end": 920.0, "word": " module", "probability": 0.9375}, {"start": 920.0, "end": 920.22, "word": " in", "probability": 0.5927734375}, {"start": 920.22, "end": 920.26, "word": " a", "probability": 0.755859375}, {"start": 920.26, "end": 920.48, "word": " method", "probability": 0.943359375}, {"start": 920.48, "end": 920.78, "word": " called", "probability": 0.853515625}, {"start": 920.78, "end": 922.0, "word": " configure.", "probability": 0.63525390625}, {"start": 922.92, "end": 923.04, "word": " What", "probability": 0.453125}, {"start": 923.04, "end": 923.12, "word": " I", "probability": 0.66552734375}, {"start": 923.12, "end": 923.36, "word": " see", "probability": 0.51025390625}, {"start": 923.36, "end": 923.5, "word": " is", "probability": 0.236572265625}, {"start": 923.5, "end": 923.68, "word": " that", "probability": 0.5625}, {"start": 923.68, "end": 923.8, "word": " if", "probability": 0.79345703125}, {"start": 923.8, "end": 924.06, "word": " a", "probability": 0.71875}, {"start": 924.06, "end": 924.38, "word": " tester", "probability": 0.79296875}, {"start": 924.38, "end": 924.38, "word": " comes,", "probability": 0.367431640625}, {"start": 925.84, "end": 926.34, "word": " like", "probability": 0.6201171875}, {"start": 926.34, "end": 926.44, "word": " this", "probability": 0.89013671875}, {"start": 926.44, "end": 926.78, "word": " example,", "probability": 0.931640625}, {"start": 927.0, "end": 927.1, "word": " for", "probability": 0.73388671875}, {"start": 927.1, "end": 927.3, "word": " example,", "probability": 0.9482421875}, {"start": 927.4, "end": 927.46, "word": " I", "probability": 0.7724609375}, {"start": 927.46, "end": 927.6, "word": " have", "probability": 0.94189453125}, {"start": 927.6, "end": 928.34, "word": " a", "probability": 0.77294921875}, {"start": 928.34, "end": 928.8, "word": " UI", "probability": 0.2393798828125}, {"start": 928.8, "end": 929.12, "word": " connected", "probability": 0.42333984375}, {"start": 929.12, "end": 929.26, "word": " to", "probability": 0.75439453125}, {"start": 929.26, "end": 929.6, "word": " a", "probability": 0.73583984375}, {"start": 929.6, "end": 930.04, "word": " database.", "probability": 0.9267578125}, {"start": 930.46, "end": 930.94, "word": " He", "probability": 0.434326171875}, {"start": 930.94, "end": 931.1, "word": " wants", "probability": 0.70263671875}, {"start": 931.1, "end": 931.22, "word": " to", "probability": 0.9736328125}, {"start": 931.22, "end": 931.4, "word": " put", "probability": 0.53271484375}, {"start": 931.4, "end": 931.5, "word": " a", "probability": 0.3212890625}, {"start": 931.5, "end": 931.76, "word": " Mock.", "probability": 0.31512451171875}], "temperature": 1.0}, {"id": 37, "seek": 95014, "start": 932.56, "end": 950.14, "text": "DB. Or here for example in our example, instead of the real tire, we put a mock tire. And instead of the real engine, the BMW engine, we put what? Yes, a mock engine. See why? I will change only the testers that work on the left and the relationship in the whole tree. Yes, I have a module. Who do I want to change?", "tokens": [27735, 13, 1610, 510, 337, 1365, 294, 527, 1365, 11, 2602, 295, 264, 957, 11756, 11, 321, 829, 257, 17362, 11756, 13, 400, 2602, 295, 264, 957, 2848, 11, 264, 21355, 2848, 11, 321, 829, 437, 30, 1079, 11, 257, 17362, 2848, 13, 3008, 983, 30, 286, 486, 1319, 787, 264, 1500, 433, 300, 589, 322, 264, 1411, 293, 264, 2480, 294, 264, 1379, 4230, 13, 1079, 11, 286, 362, 257, 10088, 13, 2102, 360, 286, 528, 281, 1319, 30], "avg_logprob": -0.5354938389342508, "compression_ratio": 1.6237113402061856, "no_speech_prob": 0.00019359588623046875, "words": [{"start": 932.5600000000001, "end": 932.96, "word": "DB.", "probability": 0.2412109375}, {"start": 933.54, "end": 933.9, "word": " Or", "probability": 0.5244140625}, {"start": 933.9, "end": 934.12, "word": " here", "probability": 0.64501953125}, {"start": 934.12, "end": 934.28, "word": " for", "probability": 0.57177734375}, {"start": 934.28, "end": 934.44, "word": " example", "probability": 0.92138671875}, {"start": 934.44, "end": 934.56, "word": " in", "probability": 0.38525390625}, {"start": 934.56, "end": 935.08, "word": " our", "probability": 0.88427734375}, {"start": 935.08, "end": 935.08, "word": " example,", "probability": 0.9501953125}, {"start": 935.56, "end": 935.9, "word": " instead", "probability": 0.64794921875}, {"start": 935.9, "end": 936.1, "word": " of", "probability": 0.970703125}, {"start": 936.1, "end": 936.26, "word": " the", "probability": 0.2493896484375}, {"start": 936.26, "end": 936.74, "word": " real", "probability": 0.513671875}, {"start": 936.74, "end": 937.08, "word": " tire,", "probability": 0.34130859375}, {"start": 937.2, "end": 937.28, "word": " we", "probability": 0.8720703125}, {"start": 937.28, "end": 937.4, "word": " put", "probability": 0.6044921875}, {"start": 937.4, "end": 937.52, "word": " a", "probability": 0.447265625}, {"start": 937.52, "end": 937.62, "word": " mock", "probability": 0.58203125}, {"start": 937.62, "end": 937.9, "word": " tire.", "probability": 0.822265625}, {"start": 938.48, "end": 938.6, "word": " And", "probability": 0.884765625}, {"start": 938.6, "end": 938.84, "word": " instead", "probability": 0.84423828125}, {"start": 938.84, "end": 938.94, "word": " of", "probability": 0.970703125}, {"start": 938.94, "end": 939.0, "word": " the", "probability": 0.58447265625}, {"start": 939.0, "end": 939.18, "word": " real", "probability": 0.7158203125}, {"start": 939.18, "end": 939.56, "word": " engine,", "probability": 0.92431640625}, {"start": 939.7, "end": 939.74, "word": " the", "probability": 0.6171875}, {"start": 939.74, "end": 940.02, "word": " BMW", "probability": 0.9375}, {"start": 940.02, "end": 940.38, "word": " engine,", "probability": 0.94287109375}, {"start": 940.52, "end": 940.52, "word": " we", "probability": 0.71728515625}, {"start": 940.52, "end": 940.72, "word": " put", "probability": 0.8798828125}, {"start": 940.72, "end": 941.0, "word": " what?", "probability": 0.607421875}, {"start": 941.7, "end": 941.84, "word": " Yes,", "probability": 0.43115234375}, {"start": 942.18, "end": 942.24, "word": " a", "probability": 0.445556640625}, {"start": 942.24, "end": 942.38, "word": " mock", "probability": 0.9111328125}, {"start": 942.38, "end": 942.68, "word": " engine.", "probability": 0.92724609375}, {"start": 942.8, "end": 942.94, "word": " See", "probability": 0.44775390625}, {"start": 942.94, "end": 943.18, "word": " why?", "probability": 0.6494140625}, {"start": 943.18, "end": 943.32, "word": " I", "probability": 0.69970703125}, {"start": 943.32, "end": 943.32, "word": " will", "probability": 0.467529296875}, {"start": 943.32, "end": 943.52, "word": " change", "probability": 0.341064453125}, {"start": 943.52, "end": 943.86, "word": " only", "probability": 0.7236328125}, {"start": 943.86, "end": 944.68, "word": " the", "probability": 0.74755859375}, {"start": 944.68, "end": 945.02, "word": " testers", "probability": 0.188446044921875}, {"start": 945.02, "end": 945.16, "word": " that", "probability": 0.265869140625}, {"start": 945.16, "end": 945.34, "word": " work", "probability": 0.135009765625}, {"start": 945.34, "end": 945.34, "word": " on", "probability": 0.34765625}, {"start": 945.34, "end": 945.54, "word": " the", "probability": 0.5712890625}, {"start": 945.54, "end": 945.62, "word": " left", "probability": 0.414306640625}, {"start": 945.62, "end": 945.74, "word": " and", "probability": 0.5908203125}, {"start": 945.74, "end": 945.82, "word": " the", "probability": 0.366943359375}, {"start": 945.82, "end": 945.98, "word": " relationship", "probability": 0.289306640625}, {"start": 945.98, "end": 946.1, "word": " in", "probability": 0.364501953125}, {"start": 946.1, "end": 946.16, "word": " the", "probability": 0.85693359375}, {"start": 946.16, "end": 946.16, "word": " whole", "probability": 0.276123046875}, {"start": 946.16, "end": 946.38, "word": " tree.", "probability": 0.8427734375}, {"start": 947.5, "end": 947.68, "word": " Yes,", "probability": 0.58203125}, {"start": 947.88, "end": 948.12, "word": " I", "probability": 0.59423828125}, {"start": 948.12, "end": 948.2, "word": " have", "probability": 0.93310546875}, {"start": 948.2, "end": 948.28, "word": " a", "probability": 0.86181640625}, {"start": 948.28, "end": 948.6, "word": " module.", "probability": 0.953125}, {"start": 949.28, "end": 949.68, "word": " Who", "probability": 0.21630859375}, {"start": 949.68, "end": 949.68, "word": " do", "probability": 0.6884765625}, {"start": 949.68, "end": 949.8, "word": " I", "probability": 0.497314453125}, {"start": 949.8, "end": 949.8, "word": " want", "probability": 0.83447265625}, {"start": 949.8, "end": 949.9, "word": " to", "probability": 0.97265625}, {"start": 949.9, "end": 950.14, "word": " change?", "probability": 0.8857421875}], "temperature": 1.0}, {"id": 38, "seek": 97913, "start": 951.65, "end": 979.13, "text": "These ones. That's it. Okay? It won't even change the main class and program. It will create a new class and name it mock module for testing. Okay? Mock module. I want to say extends car module. So where do I want to change? In the main car module. And I want to say what? Configure.", "tokens": [28858, 2306, 13, 663, 311, 309, 13, 1033, 30, 467, 1582, 380, 754, 1319, 264, 2135, 1508, 293, 1461, 13, 467, 486, 1884, 257, 777, 1508, 293, 1315, 309, 17362, 10088, 337, 4997, 13, 1033, 30, 376, 1560, 10088, 13, 286, 528, 281, 584, 26448, 1032, 10088, 13, 407, 689, 360, 286, 528, 281, 1319, 30, 682, 264, 2135, 1032, 10088, 13, 400, 286, 528, 281, 584, 437, 30, 44151, 540, 13], "avg_logprob": -0.5252568297190209, "compression_ratio": 1.6453488372093024, "no_speech_prob": 4.231929779052734e-06, "words": [{"start": 951.65, "end": 951.97, "word": "These", "probability": 0.1328125}, {"start": 951.97, "end": 952.11, "word": " ones.", "probability": 0.2227783203125}, {"start": 952.37, "end": 952.61, "word": " That's", "probability": 0.75439453125}, {"start": 952.61, "end": 952.75, "word": " it.", "probability": 0.71630859375}, {"start": 953.03, "end": 953.63, "word": " Okay?", "probability": 0.322021484375}, {"start": 953.95, "end": 954.35, "word": " It", "probability": 0.252197265625}, {"start": 954.35, "end": 954.97, "word": " won't", "probability": 0.722412109375}, {"start": 954.97, "end": 954.99, "word": " even", "probability": 0.74560546875}, {"start": 954.99, "end": 955.29, "word": " change", "probability": 0.861328125}, {"start": 955.29, "end": 955.43, "word": " the", "probability": 0.673828125}, {"start": 955.43, "end": 955.45, "word": " main", "probability": 0.25244140625}, {"start": 955.45, "end": 956.11, "word": " class", "probability": 0.77685546875}, {"start": 956.11, "end": 956.45, "word": " and", "probability": 0.365478515625}, {"start": 956.45, "end": 956.65, "word": " program.", "probability": 0.402587890625}, {"start": 956.97, "end": 957.33, "word": " It", "probability": 0.85009765625}, {"start": 957.33, "end": 957.37, "word": " will", "probability": 0.72900390625}, {"start": 957.37, "end": 957.63, "word": " create", "probability": 0.321533203125}, {"start": 957.63, "end": 957.77, "word": " a", "probability": 0.939453125}, {"start": 957.77, "end": 958.31, "word": " new", "probability": 0.9130859375}, {"start": 958.31, "end": 958.31, "word": " class", "probability": 0.95166015625}, {"start": 958.31, "end": 959.45, "word": " and", "probability": 0.501953125}, {"start": 959.45, "end": 959.97, "word": " name", "probability": 0.3505859375}, {"start": 959.97, "end": 960.11, "word": " it", "probability": 0.9482421875}, {"start": 960.11, "end": 960.43, "word": " mock", "probability": 0.2122802734375}, {"start": 960.43, "end": 961.13, "word": " module", "probability": 0.37646484375}, {"start": 961.13, "end": 961.81, "word": " for", "probability": 0.5029296875}, {"start": 961.81, "end": 962.29, "word": " testing.", "probability": 0.7080078125}, {"start": 962.61, "end": 962.69, "word": " Okay?", "probability": 0.28076171875}, {"start": 965.05, "end": 965.65, "word": " Mock", "probability": 0.5936279296875}, {"start": 965.65, "end": 966.21, "word": " module.", "probability": 0.861328125}, {"start": 966.29, "end": 966.59, "word": " I", "probability": 0.8173828125}, {"start": 966.59, "end": 966.67, "word": " want", "probability": 0.40234375}, {"start": 966.67, "end": 966.73, "word": " to", "probability": 0.9609375}, {"start": 966.73, "end": 966.83, "word": " say", "probability": 0.369140625}, {"start": 966.83, "end": 967.61, "word": " extends", "probability": 0.8046875}, {"start": 967.61, "end": 968.43, "word": " car", "probability": 0.5927734375}, {"start": 968.43, "end": 968.77, "word": " module.", "probability": 0.79931640625}, {"start": 970.45, "end": 971.05, "word": " So", "probability": 0.290283203125}, {"start": 971.05, "end": 971.19, "word": " where", "probability": 0.56982421875}, {"start": 971.19, "end": 971.19, "word": " do", "probability": 0.56640625}, {"start": 971.19, "end": 971.23, "word": " I", "probability": 0.9892578125}, {"start": 971.23, "end": 971.39, "word": " want", "probability": 0.6376953125}, {"start": 971.39, "end": 971.43, "word": " to", "probability": 0.96533203125}, {"start": 971.43, "end": 971.65, "word": " change?", "probability": 0.85302734375}, {"start": 972.85, "end": 973.45, "word": " In", "probability": 0.75390625}, {"start": 973.45, "end": 973.55, "word": " the", "probability": 0.88623046875}, {"start": 973.55, "end": 973.61, "word": " main", "probability": 0.62451171875}, {"start": 973.61, "end": 973.73, "word": " car", "probability": 0.86767578125}, {"start": 973.73, "end": 974.49, "word": " module.", "probability": 0.88916015625}, {"start": 976.29, "end": 976.89, "word": " And", "probability": 0.478515625}, {"start": 976.89, "end": 976.99, "word": " I", "probability": 0.88232421875}, {"start": 976.99, "end": 977.03, "word": " want", "probability": 0.75634765625}, {"start": 977.03, "end": 977.07, "word": " to", "probability": 0.97119140625}, {"start": 977.07, "end": 977.23, "word": " say", "probability": 0.73681640625}, {"start": 977.23, "end": 978.19, "word": " what?", "probability": 0.271484375}, {"start": 978.53, "end": 979.13, "word": " Configure.", "probability": 0.7408447265625}], "temperature": 1.0}, {"id": 39, "seek": 100750, "start": 980.64, "end": 1007.5, "text": " this is the method configure that I have and I want to tell you guys to change only one thing the binding that I have that if I find tire.class connect it to who? to mock tire.class and if I find bind engine connect it to", "tokens": [341, 307, 264, 3170, 22162, 300, 286, 362, 293, 286, 528, 281, 980, 291, 1074, 281, 1319, 787, 472, 551, 264, 17359, 300, 286, 362, 300, 498, 286, 915, 11756, 13, 11665, 1745, 309, 281, 567, 30, 281, 17362, 11756, 13, 11665, 293, 498, 286, 915, 14786, 2848, 1745, 309, 281], "avg_logprob": -0.5156250240711066, "compression_ratio": 1.6323529411764706, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 980.64, "end": 980.9, "word": " this", "probability": 0.19677734375}, {"start": 980.9, "end": 980.96, "word": " is", "probability": 0.73291015625}, {"start": 980.96, "end": 980.98, "word": " the", "probability": 0.619140625}, {"start": 980.98, "end": 981.18, "word": " method", "probability": 0.81591796875}, {"start": 981.18, "end": 981.66, "word": " configure", "probability": 0.58056640625}, {"start": 981.66, "end": 982.38, "word": " that", "probability": 0.43798828125}, {"start": 982.38, "end": 982.66, "word": " I", "probability": 0.71337890625}, {"start": 982.66, "end": 982.88, "word": " have", "probability": 0.8603515625}, {"start": 982.88, "end": 984.0, "word": " and", "probability": 0.346923828125}, {"start": 984.0, "end": 984.12, "word": " I", "probability": 0.75830078125}, {"start": 984.12, "end": 984.18, "word": " want", "probability": 0.40380859375}, {"start": 984.18, "end": 984.22, "word": " to", "probability": 0.94677734375}, {"start": 984.22, "end": 984.32, "word": " tell", "probability": 0.416259765625}, {"start": 984.32, "end": 984.42, "word": " you", "probability": 0.424560546875}, {"start": 984.42, "end": 984.58, "word": " guys", "probability": 0.386962890625}, {"start": 984.58, "end": 984.9, "word": " to", "probability": 0.265869140625}, {"start": 984.9, "end": 985.14, "word": " change", "probability": 0.82470703125}, {"start": 985.14, "end": 985.38, "word": " only", "probability": 0.227294921875}, {"start": 985.38, "end": 985.6, "word": " one", "probability": 0.5341796875}, {"start": 985.6, "end": 986.68, "word": " thing", "probability": 0.9111328125}, {"start": 986.68, "end": 987.12, "word": " the", "probability": 0.4306640625}, {"start": 987.12, "end": 987.5, "word": " binding", "probability": 0.83349609375}, {"start": 987.5, "end": 987.98, "word": " that", "probability": 0.8076171875}, {"start": 987.98, "end": 988.44, "word": " I", "probability": 0.90380859375}, {"start": 988.44, "end": 988.44, "word": " have", "probability": 0.91650390625}, {"start": 988.44, "end": 989.32, "word": " that", "probability": 0.246826171875}, {"start": 989.32, "end": 989.56, "word": " if", "probability": 0.81884765625}, {"start": 989.56, "end": 990.14, "word": " I", "probability": 0.79833984375}, {"start": 990.14, "end": 990.14, "word": " find", "probability": 0.62744140625}, {"start": 990.14, "end": 991.32, "word": " tire", "probability": 0.49755859375}, {"start": 991.32, "end": 993.08, "word": ".class", "probability": 0.7509765625}, {"start": 993.08, "end": 994.1, "word": " connect", "probability": 0.39599609375}, {"start": 994.1, "end": 994.54, "word": " it", "probability": 0.578125}, {"start": 994.54, "end": 994.7, "word": " to", "probability": 0.5283203125}, {"start": 994.7, "end": 994.9, "word": " who?", "probability": 0.15234375}, {"start": 995.34, "end": 995.56, "word": " to", "probability": 0.446533203125}, {"start": 995.56, "end": 995.82, "word": " mock", "probability": 0.45068359375}, {"start": 995.82, "end": 996.18, "word": " tire", "probability": 0.69091796875}, {"start": 996.18, "end": 997.9, "word": ".class", "probability": 0.794677734375}, {"start": 997.9, "end": 999.38, "word": " and", "probability": 0.85009765625}, {"start": 999.38, "end": 999.56, "word": " if", "probability": 0.93994140625}, {"start": 999.56, "end": 1000.04, "word": " I", "probability": 0.900390625}, {"start": 1000.04, "end": 1000.04, "word": " find", "probability": 0.8740234375}, {"start": 1000.04, "end": 1001.4, "word": " bind", "probability": 0.8359375}, {"start": 1001.4, "end": 1003.96, "word": " engine", "probability": 0.89501953125}, {"start": 1003.96, "end": 1007.02, "word": " connect", "probability": 0.81640625}, {"start": 1007.02, "end": 1007.24, "word": " it", "probability": 0.78759765625}, {"start": 1007.24, "end": 1007.5, "word": " to", "probability": 0.939453125}], "temperature": 1.0}, {"id": 40, "seek": 103709, "start": 1010.48, "end": 1037.1, "text": " mock engine dot class of course these are not yet available so let's do them quickly this is mock tire and here is the to string and I want to say return mock tire and this is mock engine", "tokens": [17362, 2848, 5893, 1508, 295, 1164, 613, 366, 406, 1939, 2435, 370, 718, 311, 360, 552, 2661, 341, 307, 17362, 11756, 293, 510, 307, 264, 281, 6798, 293, 286, 528, 281, 584, 2736, 17362, 11756, 293, 341, 307, 17362, 2848], "avg_logprob": -0.5838414517844596, "compression_ratio": 1.5666666666666667, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1010.48, "end": 1011.12, "word": " mock", "probability": 0.2255859375}, {"start": 1011.12, "end": 1011.76, "word": " engine", "probability": 0.38818359375}, {"start": 1011.76, "end": 1014.82, "word": " dot", "probability": 0.73095703125}, {"start": 1014.82, "end": 1015.18, "word": " class", "probability": 0.958984375}, {"start": 1015.18, "end": 1015.34, "word": " of", "probability": 0.1331787109375}, {"start": 1015.34, "end": 1015.38, "word": " course", "probability": 0.92626953125}, {"start": 1015.38, "end": 1015.58, "word": " these", "probability": 0.343017578125}, {"start": 1015.58, "end": 1015.66, "word": " are", "probability": 0.405029296875}, {"start": 1015.66, "end": 1016.36, "word": " not", "probability": 0.64794921875}, {"start": 1016.36, "end": 1016.64, "word": " yet", "probability": 0.30078125}, {"start": 1016.64, "end": 1017.54, "word": " available", "probability": 0.253662109375}, {"start": 1017.54, "end": 1018.28, "word": " so", "probability": 0.475341796875}, {"start": 1018.28, "end": 1018.4, "word": " let's", "probability": 0.60205078125}, {"start": 1018.4, "end": 1018.52, "word": " do", "probability": 0.192138671875}, {"start": 1018.52, "end": 1018.7, "word": " them", "probability": 0.65673828125}, {"start": 1018.7, "end": 1019.06, "word": " quickly", "probability": 0.67626953125}, {"start": 1019.06, "end": 1019.78, "word": " this", "probability": 0.410400390625}, {"start": 1019.78, "end": 1019.82, "word": " is", "probability": 0.91455078125}, {"start": 1019.82, "end": 1020.2, "word": " mock", "probability": 0.59375}, {"start": 1020.2, "end": 1021.26, "word": " tire", "probability": 0.476318359375}, {"start": 1021.26, "end": 1025.38, "word": " and", "probability": 0.72412109375}, {"start": 1025.38, "end": 1025.58, "word": " here", "probability": 0.7431640625}, {"start": 1025.58, "end": 1025.7, "word": " is", "probability": 0.379150390625}, {"start": 1025.7, "end": 1025.78, "word": " the", "probability": 0.5078125}, {"start": 1025.78, "end": 1025.9, "word": " to", "probability": 0.394287109375}, {"start": 1025.9, "end": 1026.4, "word": " string", "probability": 0.55419921875}, {"start": 1026.4, "end": 1027.6, "word": " and", "probability": 0.68896484375}, {"start": 1027.6, "end": 1027.72, "word": " I", "probability": 0.7109375}, {"start": 1027.72, "end": 1027.74, "word": " want", "probability": 0.429443359375}, {"start": 1027.74, "end": 1027.8, "word": " to", "probability": 0.962890625}, {"start": 1027.8, "end": 1027.9, "word": " say", "probability": 0.464111328125}, {"start": 1027.9, "end": 1028.56, "word": " return", "probability": 0.87939453125}, {"start": 1028.56, "end": 1034.08, "word": " mock", "probability": 0.68798828125}, {"start": 1034.08, "end": 1034.4, "word": " tire", "probability": 0.783203125}, {"start": 1034.4, "end": 1035.74, "word": " and", "probability": 0.86474609375}, {"start": 1035.74, "end": 1036.0, "word": " this", "probability": 0.76708984375}, {"start": 1036.0, "end": 1036.1, "word": " is", "probability": 0.9296875}, {"start": 1036.1, "end": 1036.66, "word": " mock", "probability": 0.80029296875}, {"start": 1036.66, "end": 1037.1, "word": " engine", "probability": 0.9072265625}], "temperature": 1.0}, {"id": 41, "seek": 107703, "start": 1053.57, "end": 1077.03, "text": " this also need inject and here I have mock engine with with c", "tokens": [341, 611, 643, 10711, 293, 510, 286, 362, 17362, 2848, 365, 365, 269], "avg_logprob": -0.8443080186843872, "compression_ratio": 1.0, "no_speech_prob": 0.0, "words": [{"start": 1053.57, "end": 1053.87, "word": " this", "probability": 0.1492919921875}, {"start": 1053.87, "end": 1053.91, "word": " also", "probability": 0.2254638671875}, {"start": 1053.91, "end": 1054.07, "word": " need", "probability": 0.1973876953125}, {"start": 1054.07, "end": 1055.57, "word": " inject", "probability": 0.5234375}, {"start": 1055.57, "end": 1065.59, "word": " and", "probability": 0.283447265625}, {"start": 1065.59, "end": 1065.81, "word": " here", "probability": 0.357666015625}, {"start": 1065.81, "end": 1066.11, "word": " I", "probability": 0.62939453125}, {"start": 1066.11, "end": 1066.11, "word": " have", "probability": 0.90087890625}, {"start": 1066.11, "end": 1066.39, "word": " mock", "probability": 0.552734375}, {"start": 1066.39, "end": 1066.91, "word": " engine", "probability": 0.55517578125}, {"start": 1066.91, "end": 1072.89, "word": " with", "probability": 0.87646484375}, {"start": 1072.89, "end": 1076.81, "word": " with", "probability": 0.463134765625}, {"start": 1076.81, "end": 1077.03, "word": " c", "probability": 0.256591796875}], "temperature": 1.0}, {"id": 42, "seek": 110667, "start": 1078.99, "end": 1106.67, "text": " Ok, this is the mock module What's in the mock file? I made a mock file Yes This needs to be implemented Ok, and this is the mock module Now in the main", "tokens": [3477, 11, 341, 307, 264, 17362, 10088, 708, 311, 294, 264, 17362, 3991, 30, 286, 1027, 257, 17362, 3991, 1079, 639, 2203, 281, 312, 12270, 3477, 11, 293, 341, 307, 264, 17362, 10088, 823, 294, 264, 2135], "avg_logprob": -0.6879111967588726, "compression_ratio": 1.5, "no_speech_prob": 0.0, "words": [{"start": 1078.99, "end": 1079.29, "word": " Ok,", "probability": 0.09185791015625}, {"start": 1079.43, "end": 1079.69, "word": " this", "probability": 0.5537109375}, {"start": 1079.69, "end": 1079.83, "word": " is", "probability": 0.87744140625}, {"start": 1079.83, "end": 1080.31, "word": " the", "probability": 0.56494140625}, {"start": 1080.31, "end": 1080.63, "word": " mock", "probability": 0.384033203125}, {"start": 1080.63, "end": 1082.13, "word": " module", "probability": 0.896484375}, {"start": 1082.13, "end": 1083.45, "word": " What's", "probability": 0.24468994140625}, {"start": 1083.45, "end": 1083.53, "word": " in", "probability": 0.271728515625}, {"start": 1083.53, "end": 1083.71, "word": " the", "probability": 0.409912109375}, {"start": 1083.71, "end": 1083.87, "word": " mock", "probability": 0.53857421875}, {"start": 1083.87, "end": 1084.07, "word": " file?", "probability": 0.16259765625}, {"start": 1084.91, "end": 1085.37, "word": " I", "probability": 0.69580078125}, {"start": 1085.37, "end": 1085.57, "word": " made", "probability": 0.401611328125}, {"start": 1085.57, "end": 1085.79, "word": " a", "probability": 0.7529296875}, {"start": 1085.79, "end": 1085.87, "word": " mock", "probability": 0.98046875}, {"start": 1085.87, "end": 1086.15, "word": " file", "probability": 0.841796875}, {"start": 1086.15, "end": 1088.23, "word": " Yes", "probability": 0.1766357421875}, {"start": 1088.23, "end": 1091.09, "word": " This", "probability": 0.39013671875}, {"start": 1091.09, "end": 1091.29, "word": " needs", "probability": 0.1964111328125}, {"start": 1091.29, "end": 1091.39, "word": " to", "probability": 0.55224609375}, {"start": 1091.39, "end": 1091.39, "word": " be", "probability": 0.425048828125}, {"start": 1091.39, "end": 1091.99, "word": " implemented", "probability": 0.72705078125}, {"start": 1091.99, "end": 1100.19, "word": " Ok,", "probability": 0.5029296875}, {"start": 1100.25, "end": 1100.39, "word": " and", "probability": 0.634765625}, {"start": 1100.39, "end": 1100.47, "word": " this", "probability": 0.6845703125}, {"start": 1100.47, "end": 1100.51, "word": " is", "probability": 0.57958984375}, {"start": 1100.51, "end": 1101.03, "word": " the", "probability": 0.6435546875}, {"start": 1101.03, "end": 1102.77, "word": " mock", "probability": 0.73291015625}, {"start": 1102.77, "end": 1103.15, "word": " module", "probability": 0.9404296875}, {"start": 1103.15, "end": 1103.99, "word": " Now", "probability": 0.54296875}, {"start": 1103.99, "end": 1105.21, "word": " in", "probability": 0.54736328125}, {"start": 1105.21, "end": 1106.43, "word": " the", "probability": 0.685546875}, {"start": 1106.43, "end": 1106.67, "word": " main", "probability": 0.9033203125}], "temperature": 1.0}, {"id": 43, "seek": 112879, "start": 1108.45, "end": 1128.79, "text": "This is the basic code, right? I want to try to leave this line Instead of here car module, I want to tell him new mock module, which means what we did between the two lines, right away Okay, and I do run, and I get the error, why?", "tokens": [5723, 307, 264, 3875, 3089, 11, 558, 30, 286, 528, 281, 853, 281, 1856, 341, 1622, 7156, 295, 510, 1032, 10088, 11, 286, 528, 281, 980, 796, 777, 17362, 10088, 11, 597, 1355, 437, 321, 630, 1296, 264, 732, 3876, 11, 558, 1314, 1033, 11, 293, 286, 360, 1190, 11, 293, 286, 483, 264, 6713, 11, 983, 30], "avg_logprob": -0.7245762570429657, "compression_ratio": 1.4807692307692308, "no_speech_prob": 1.055002212524414e-05, "words": [{"start": 1108.45, "end": 1108.71, "word": "This", "probability": 0.2354736328125}, {"start": 1108.71, "end": 1108.85, "word": " is", "probability": 0.8818359375}, {"start": 1108.85, "end": 1108.97, "word": " the", "probability": 0.837890625}, {"start": 1108.97, "end": 1109.53, "word": " basic", "probability": 0.307861328125}, {"start": 1109.53, "end": 1109.55, "word": " code,", "probability": 0.85009765625}, {"start": 1109.73, "end": 1109.87, "word": " right?", "probability": 0.59130859375}, {"start": 1110.63, "end": 1111.03, "word": " I", "probability": 0.7646484375}, {"start": 1111.03, "end": 1111.17, "word": " want", "probability": 0.467529296875}, {"start": 1111.17, "end": 1111.29, "word": " to", "probability": 0.955078125}, {"start": 1111.29, "end": 1111.49, "word": " try", "probability": 0.77734375}, {"start": 1111.49, "end": 1111.61, "word": " to", "probability": 0.388916015625}, {"start": 1111.61, "end": 1111.85, "word": " leave", "probability": 0.3359375}, {"start": 1111.85, "end": 1112.17, "word": " this", "probability": 0.896484375}, {"start": 1112.17, "end": 1112.49, "word": " line", "probability": 0.83349609375}, {"start": 1112.49, "end": 1115.65, "word": " Instead", "probability": 0.438232421875}, {"start": 1115.65, "end": 1115.99, "word": " of", "probability": 0.95263671875}, {"start": 1115.99, "end": 1116.35, "word": " here", "probability": 0.32666015625}, {"start": 1116.35, "end": 1116.85, "word": " car", "probability": 0.364501953125}, {"start": 1116.85, "end": 1117.23, "word": " module,", "probability": 0.69091796875}, {"start": 1117.41, "end": 1117.45, "word": " I", "probability": 0.95068359375}, {"start": 1117.45, "end": 1117.55, "word": " want", "probability": 0.6689453125}, {"start": 1117.55, "end": 1117.61, "word": " to", "probability": 0.96630859375}, {"start": 1117.61, "end": 1117.73, "word": " tell", "probability": 0.3427734375}, {"start": 1117.73, "end": 1117.81, "word": " him", "probability": 0.43994140625}, {"start": 1117.81, "end": 1118.11, "word": " new", "probability": 0.7060546875}, {"start": 1118.11, "end": 1118.99, "word": " mock", "probability": 0.445068359375}, {"start": 1118.99, "end": 1120.67, "word": " module,", "probability": 0.85546875}, {"start": 1120.81, "end": 1120.91, "word": " which", "probability": 0.281494140625}, {"start": 1120.91, "end": 1120.91, "word": " means", "probability": 0.486083984375}, {"start": 1120.91, "end": 1121.11, "word": " what", "probability": 0.66552734375}, {"start": 1121.11, "end": 1121.41, "word": " we", "probability": 0.771484375}, {"start": 1121.41, "end": 1121.41, "word": " did", "probability": 0.77734375}, {"start": 1121.41, "end": 1121.91, "word": " between", "probability": 0.642578125}, {"start": 1121.91, "end": 1122.05, "word": " the", "probability": 0.473876953125}, {"start": 1122.05, "end": 1122.35, "word": " two", "probability": 0.422607421875}, {"start": 1122.35, "end": 1122.35, "word": " lines,", "probability": 0.052764892578125}, {"start": 1122.47, "end": 1122.53, "word": " right", "probability": 0.26953125}, {"start": 1122.53, "end": 1124.37, "word": " away", "probability": 0.8515625}, {"start": 1124.37, "end": 1124.83, "word": " Okay,", "probability": 0.210205078125}, {"start": 1124.89, "end": 1124.97, "word": " and", "probability": 0.54638671875}, {"start": 1124.97, "end": 1125.05, "word": " I", "probability": 0.8984375}, {"start": 1125.05, "end": 1125.27, "word": " do", "probability": 0.18505859375}, {"start": 1125.27, "end": 1126.33, "word": " run,", "probability": 0.61328125}, {"start": 1127.59, "end": 1127.91, "word": " and", "probability": 0.1109619140625}, {"start": 1127.91, "end": 1127.91, "word": " I", "probability": 0.254638671875}, {"start": 1127.91, "end": 1128.05, "word": " get", "probability": 0.099853515625}, {"start": 1128.05, "end": 1128.21, "word": " the", "probability": 0.20947265625}, {"start": 1128.21, "end": 1128.39, "word": " error,", "probability": 0.87548828125}, {"start": 1128.45, "end": 1128.79, "word": " why?", "probability": 0.84130859375}], "temperature": 1.0}, {"id": 44, "seek": 115219, "start": 1149.59, "end": 1152.19, "text": "طيب ليش مقتر؟", "tokens": [9566, 1829, 3555, 32239, 8592, 3714, 38149, 2288, 22807], "avg_logprob": -0.33359373807907106, "compression_ratio": 0.75, "no_speech_prob": 0.0, "words": [{"start": 1149.59, "end": 1150.07, "word": "طيب", "probability": 0.7269694010416666}, {"start": 1150.07, "end": 1150.45, "word": " ليش", "probability": 0.875}, {"start": 1150.45, "end": 1152.19, "word": " مقتر؟", "probability": 0.6971435546875}], "temperature": 1.0}, {"id": 45, "seek": 120850, "start": 1186.72, "end": 1208.5, "text": "What will change? Nothing. Ok, what did he write here? With a conditional. So now the tester, guys, everything he needs to do, you see what he does? He changes, he says, I swear to God, this interface is linked to what? To the new class. He does not play with the tree at all, he changes from here. He decides what to change instead of what. Fine?", "tokens": [3748, 486, 1319, 30, 6693, 13, 3477, 11, 437, 630, 415, 2464, 510, 30, 2022, 257, 27708, 13, 407, 586, 264, 36101, 11, 1074, 11, 1203, 415, 2203, 281, 360, 11, 291, 536, 437, 415, 775, 30, 634, 2962, 11, 415, 1619, 11, 286, 11902, 281, 1265, 11, 341, 9226, 307, 9408, 281, 437, 30, 1407, 264, 777, 1508, 13, 634, 775, 406, 862, 365, 264, 4230, 412, 439, 11, 415, 2962, 490, 510, 13, 634, 14898, 437, 281, 1319, 2602, 295, 437, 13, 12024, 30], "avg_logprob": -0.5944684017663715, "compression_ratio": 1.5701357466063348, "no_speech_prob": 9.47713851928711e-05, "words": [{"start": 1186.72, "end": 1186.98, "word": "What", "probability": 0.049774169921875}, {"start": 1186.98, "end": 1187.08, "word": " will", "probability": 0.3203125}, {"start": 1187.08, "end": 1187.44, "word": " change?", "probability": 0.8115234375}, {"start": 1187.8, "end": 1187.94, "word": " Nothing.", "probability": 0.5322265625}, {"start": 1189.62, "end": 1190.1, "word": " Ok,", "probability": 0.25732421875}, {"start": 1190.18, "end": 1190.38, "word": " what", "probability": 0.51611328125}, {"start": 1190.38, "end": 1190.38, "word": " did", "probability": 0.51806640625}, {"start": 1190.38, "end": 1190.66, "word": " he", "probability": 0.40185546875}, {"start": 1190.66, "end": 1190.9, "word": " write", "probability": 0.65673828125}, {"start": 1190.9, "end": 1191.26, "word": " here?", "probability": 0.66748046875}, {"start": 1191.42, "end": 1191.86, "word": " With", "probability": 0.53369140625}, {"start": 1191.86, "end": 1192.24, "word": " a", "probability": 0.1019287109375}, {"start": 1192.24, "end": 1192.24, "word": " conditional.", "probability": 0.05828857421875}, {"start": 1192.56, "end": 1193.0, "word": " So", "probability": 0.3037109375}, {"start": 1193.0, "end": 1193.34, "word": " now", "probability": 0.65087890625}, {"start": 1193.34, "end": 1193.56, "word": " the", "probability": 0.5732421875}, {"start": 1193.56, "end": 1193.86, "word": " tester,", "probability": 0.83056640625}, {"start": 1194.0, "end": 1194.36, "word": " guys,", "probability": 0.38232421875}, {"start": 1194.78, "end": 1194.98, "word": " everything", "probability": 0.270263671875}, {"start": 1194.98, "end": 1195.14, "word": " he", "probability": 0.53369140625}, {"start": 1195.14, "end": 1195.42, "word": " needs", "probability": 0.63525390625}, {"start": 1195.42, "end": 1195.54, "word": " to", "probability": 0.9619140625}, {"start": 1195.54, "end": 1195.84, "word": " do,", "probability": 0.96044921875}, {"start": 1196.02, "end": 1196.4, "word": " you", "probability": 0.19873046875}, {"start": 1196.4, "end": 1196.4, "word": " see", "probability": 0.5390625}, {"start": 1196.4, "end": 1196.62, "word": " what", "probability": 0.74755859375}, {"start": 1196.62, "end": 1196.66, "word": " he", "probability": 0.73681640625}, {"start": 1196.66, "end": 1196.9, "word": " does?", "probability": 0.71826171875}, {"start": 1197.82, "end": 1198.3, "word": " He", "probability": 0.5244140625}, {"start": 1198.3, "end": 1198.68, "word": " changes,", "probability": 0.415283203125}, {"start": 1198.86, "end": 1199.0, "word": " he", "probability": 0.7470703125}, {"start": 1199.0, "end": 1199.14, "word": " says,", "probability": 0.8193359375}, {"start": 1199.2, "end": 1199.34, "word": " I", "probability": 0.202880859375}, {"start": 1199.34, "end": 1199.34, "word": " swear", "probability": 0.90478515625}, {"start": 1199.34, "end": 1199.4, "word": " to", "probability": 0.329833984375}, {"start": 1199.4, "end": 1199.4, "word": " God,", "probability": 0.87353515625}, {"start": 1199.42, "end": 1199.42, "word": " this", "probability": 0.7685546875}, {"start": 1199.42, "end": 1199.96, "word": " interface", "probability": 0.89501953125}, {"start": 1199.96, "end": 1200.88, "word": " is", "probability": 0.283447265625}, {"start": 1200.88, "end": 1201.04, "word": " linked", "probability": 0.5400390625}, {"start": 1201.04, "end": 1201.28, "word": " to", "probability": 0.8447265625}, {"start": 1201.28, "end": 1201.56, "word": " what?", "probability": 0.6689453125}, {"start": 1201.72, "end": 1202.06, "word": " To", "probability": 0.407470703125}, {"start": 1202.06, "end": 1202.16, "word": " the", "probability": 0.67822265625}, {"start": 1202.16, "end": 1202.16, "word": " new", "probability": 0.91259765625}, {"start": 1202.16, "end": 1202.44, "word": " class.", "probability": 0.9677734375}, {"start": 1203.18, "end": 1203.46, "word": " He", "probability": 0.56494140625}, {"start": 1203.46, "end": 1203.46, "word": " does", "probability": 0.49609375}, {"start": 1203.46, "end": 1203.46, "word": " not", "probability": 0.93701171875}, {"start": 1203.46, "end": 1203.66, "word": " play", "probability": 0.591796875}, {"start": 1203.66, "end": 1203.76, "word": " with", "probability": 0.5478515625}, {"start": 1203.76, "end": 1203.86, "word": " the", "probability": 0.61083984375}, {"start": 1203.86, "end": 1204.06, "word": " tree", "probability": 0.822265625}, {"start": 1204.06, "end": 1204.24, "word": " at", "probability": 0.9091796875}, {"start": 1204.24, "end": 1204.54, "word": " all,", "probability": 0.9501953125}, {"start": 1204.66, "end": 1204.74, "word": " he", "probability": 0.798828125}, {"start": 1204.74, "end": 1205.0, "word": " changes", "probability": 0.853515625}, {"start": 1205.0, "end": 1205.16, "word": " from", "probability": 0.70947265625}, {"start": 1205.16, "end": 1205.38, "word": " here.", "probability": 0.84814453125}, {"start": 1205.92, "end": 1206.02, "word": " He", "probability": 0.7431640625}, {"start": 1206.02, "end": 1206.18, "word": " decides", "probability": 0.31982421875}, {"start": 1206.18, "end": 1206.5, "word": " what", "probability": 0.9140625}, {"start": 1206.5, "end": 1206.78, "word": " to", "probability": 0.5751953125}, {"start": 1206.78, "end": 1207.08, "word": " change", "probability": 0.74462890625}, {"start": 1207.08, "end": 1207.32, "word": " instead", "probability": 0.798828125}, {"start": 1207.32, "end": 1207.4, "word": " of", "probability": 0.96533203125}, {"start": 1207.4, "end": 1207.62, "word": " what.", "probability": 0.9404296875}, {"start": 1208.28, "end": 1208.5, "word": " Fine?", "probability": 0.1937255859375}], "temperature": 1.0}, {"id": 46, "seek": 122164, "start": 1210.54, "end": 1221.64, "text": "Okay, so we saw how to deal with the interface or the abstract class, it is necessary to do binding inside the module Let's come to the second point, suppose I'm dealing with a library", "tokens": [8297, 11, 370, 321, 1866, 577, 281, 2028, 365, 264, 9226, 420, 264, 12649, 1508, 11, 309, 307, 4818, 281, 360, 17359, 1854, 264, 10088, 961, 311, 808, 281, 264, 1150, 935, 11, 7297, 286, 478, 6260, 365, 257, 6405], "avg_logprob": -0.578887171861602, "compression_ratio": 1.3834586466165413, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1210.54, "end": 1210.86, "word": "Okay,", "probability": 0.1241455078125}, {"start": 1210.94, "end": 1211.0, "word": " so", "probability": 0.3583984375}, {"start": 1211.0, "end": 1211.18, "word": " we", "probability": 0.71435546875}, {"start": 1211.18, "end": 1211.18, "word": " saw", "probability": 0.377685546875}, {"start": 1211.18, "end": 1211.4, "word": " how", "probability": 0.89404296875}, {"start": 1211.4, "end": 1211.48, "word": " to", "probability": 0.84375}, {"start": 1211.48, "end": 1211.7, "word": " deal", "probability": 0.44140625}, {"start": 1211.7, "end": 1211.86, "word": " with", "probability": 0.9013671875}, {"start": 1211.86, "end": 1211.96, "word": " the", "probability": 0.354248046875}, {"start": 1211.96, "end": 1212.52, "word": " interface", "probability": 0.82763671875}, {"start": 1212.52, "end": 1212.8, "word": " or", "probability": 0.6044921875}, {"start": 1212.8, "end": 1213.16, "word": " the", "probability": 0.2138671875}, {"start": 1213.16, "end": 1213.52, "word": " abstract", "probability": 0.837890625}, {"start": 1213.52, "end": 1214.06, "word": " class,", "probability": 0.91943359375}, {"start": 1214.14, "end": 1214.24, "word": " it", "probability": 0.153076171875}, {"start": 1214.24, "end": 1214.24, "word": " is", "probability": 0.5380859375}, {"start": 1214.24, "end": 1214.38, "word": " necessary", "probability": 0.61474609375}, {"start": 1214.38, "end": 1214.84, "word": " to", "probability": 0.751953125}, {"start": 1214.84, "end": 1215.08, "word": " do", "probability": 0.318115234375}, {"start": 1215.08, "end": 1215.56, "word": " binding", "probability": 0.6689453125}, {"start": 1215.56, "end": 1216.02, "word": " inside", "probability": 0.63134765625}, {"start": 1216.02, "end": 1216.76, "word": " the", "probability": 0.42724609375}, {"start": 1216.76, "end": 1217.08, "word": " module", "probability": 0.9345703125}, {"start": 1217.08, "end": 1219.28, "word": " Let's", "probability": 0.5582275390625}, {"start": 1219.28, "end": 1219.4, "word": " come", "probability": 0.334716796875}, {"start": 1219.4, "end": 1219.5, "word": " to", "probability": 0.73974609375}, {"start": 1219.5, "end": 1219.68, "word": " the", "probability": 0.75927734375}, {"start": 1219.68, "end": 1220.14, "word": " second", "probability": 0.67822265625}, {"start": 1220.14, "end": 1220.14, "word": " point,", "probability": 0.94775390625}, {"start": 1220.36, "end": 1220.62, "word": " suppose", "probability": 0.442626953125}, {"start": 1220.62, "end": 1220.92, "word": " I'm", "probability": 0.5533447265625}, {"start": 1220.92, "end": 1221.12, "word": " dealing", "probability": 0.88916015625}, {"start": 1221.12, "end": 1221.3, "word": " with", "probability": 0.8974609375}, {"start": 1221.3, "end": 1221.42, "word": " a", "probability": 0.9111328125}, {"start": 1221.42, "end": 1221.64, "word": " library", "probability": 0.86181640625}], "temperature": 1.0}, {"id": 47, "seek": 125063, "start": 1222.47, "end": 1250.63, "text": " Externally, okay? I mean, for example, to try this example, we come to the class Valvehead, okay? Let's assume, for example, that it has a variable called ValveSize, okay? And it has a public constructor ValveIntValveSize", "tokens": [2111, 2231, 379, 11, 1392, 30, 286, 914, 11, 337, 1365, 11, 281, 853, 341, 1365, 11, 321, 808, 281, 264, 1508, 41369, 1934, 11, 1392, 30, 961, 311, 6552, 11, 337, 1365, 11, 300, 309, 575, 257, 7006, 1219, 41369, 50, 1125, 11, 1392, 30, 400, 309, 575, 257, 1908, 47479, 41369, 25597, 53, 304, 303, 50, 1125], "avg_logprob": -0.470833332836628, "compression_ratio": 1.5205479452054795, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 1222.47, "end": 1223.07, "word": " Externally,", "probability": 0.4721577962239583}, {"start": 1224.01, "end": 1224.33, "word": " okay?", "probability": 0.385009765625}, {"start": 1224.89, "end": 1225.47, "word": " I", "probability": 0.26123046875}, {"start": 1225.47, "end": 1225.83, "word": " mean,", "probability": 0.88134765625}, {"start": 1225.87, "end": 1226.09, "word": " for", "probability": 0.65966796875}, {"start": 1226.09, "end": 1226.67, "word": " example,", "probability": 0.84130859375}, {"start": 1226.97, "end": 1227.27, "word": " to", "probability": 0.66650390625}, {"start": 1227.27, "end": 1227.67, "word": " try", "probability": 0.6962890625}, {"start": 1227.67, "end": 1227.81, "word": " this", "probability": 0.4296875}, {"start": 1227.81, "end": 1228.13, "word": " example,", "probability": 0.437744140625}, {"start": 1228.65, "end": 1228.91, "word": " we", "probability": 0.49755859375}, {"start": 1228.91, "end": 1229.03, "word": " come", "probability": 0.6357421875}, {"start": 1229.03, "end": 1229.15, "word": " to", "probability": 0.95751953125}, {"start": 1229.15, "end": 1229.25, "word": " the", "probability": 0.370361328125}, {"start": 1229.25, "end": 1229.71, "word": " class", "probability": 0.92333984375}, {"start": 1229.71, "end": 1230.35, "word": " Valvehead,", "probability": 0.599609375}, {"start": 1231.33, "end": 1231.55, "word": " okay?", "probability": 0.73876953125}, {"start": 1231.55, "end": 1231.73, "word": " Let's", "probability": 0.7193603515625}, {"start": 1231.73, "end": 1232.03, "word": " assume,", "probability": 0.53955078125}, {"start": 1232.13, "end": 1232.25, "word": " for", "probability": 0.94140625}, {"start": 1232.25, "end": 1232.43, "word": " example,", "probability": 0.953125}, {"start": 1232.67, "end": 1232.75, "word": " that", "probability": 0.85107421875}, {"start": 1232.75, "end": 1233.03, "word": " it", "probability": 0.80615234375}, {"start": 1233.03, "end": 1233.13, "word": " has", "probability": 0.81787109375}, {"start": 1233.13, "end": 1235.19, "word": " a", "probability": 0.9140625}, {"start": 1235.19, "end": 1235.63, "word": " variable", "probability": 0.70703125}, {"start": 1235.63, "end": 1235.97, "word": " called", "probability": 0.47314453125}, {"start": 1235.97, "end": 1237.17, "word": " ValveSize,", "probability": 0.8284505208333334}, {"start": 1237.43, "end": 1239.03, "word": " okay?", "probability": 0.77880859375}, {"start": 1239.07, "end": 1239.27, "word": " And", "probability": 0.82421875}, {"start": 1239.27, "end": 1239.39, "word": " it", "probability": 0.79833984375}, {"start": 1239.39, "end": 1239.47, "word": " has", "probability": 0.9140625}, {"start": 1239.47, "end": 1239.63, "word": " a", "probability": 0.8427734375}, {"start": 1239.63, "end": 1240.89, "word": " public", "probability": 0.449951171875}, {"start": 1240.89, "end": 1242.55, "word": " constructor", "probability": 0.80810546875}, {"start": 1242.55, "end": 1250.63, "word": " ValveIntValveSize", "probability": 0.7413853236607143}], "temperature": 1.0}, {"id": 48, "seek": 128870, "start": 1261.84, "end": 1288.7, "text": "Because in order for the program to work, the constructor must do at inject Right guys? But let's assume that this is a library and I don't know its code You don't have access to the valve But at the same time, the cylinder needs an object from the valve in order to work In this case, if you run", "tokens": [21831, 294, 1668, 337, 264, 1461, 281, 589, 11, 264, 47479, 1633, 360, 412, 10711, 1779, 1074, 30, 583, 718, 311, 6552, 300, 341, 307, 257, 6405, 293, 286, 500, 380, 458, 1080, 3089, 509, 500, 380, 362, 2105, 281, 264, 15294, 583, 412, 264, 912, 565, 11, 264, 17884, 2203, 364, 2657, 490, 264, 15294, 294, 1668, 281, 589, 682, 341, 1389, 11, 498, 291, 1190], "avg_logprob": -0.437499987290186, "compression_ratio": 1.5416666666666667, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 1261.84, "end": 1262.14, "word": "Because", "probability": 0.2259521484375}, {"start": 1262.14, "end": 1262.22, "word": " in", "probability": 0.189208984375}, {"start": 1262.22, "end": 1262.5, "word": " order", "probability": 0.92333984375}, {"start": 1262.5, "end": 1262.8, "word": " for", "probability": 0.787109375}, {"start": 1262.8, "end": 1262.98, "word": " the", "probability": 0.73779296875}, {"start": 1262.98, "end": 1263.14, "word": " program", "probability": 0.4970703125}, {"start": 1263.14, "end": 1263.34, "word": " to", "probability": 0.95849609375}, {"start": 1263.34, "end": 1263.7, "word": " work,", "probability": 0.59619140625}, {"start": 1264.14, "end": 1264.42, "word": " the", "probability": 0.495849609375}, {"start": 1264.42, "end": 1264.88, "word": " constructor", "probability": 0.8330078125}, {"start": 1264.88, "end": 1265.04, "word": " must", "probability": 0.416748046875}, {"start": 1265.04, "end": 1265.32, "word": " do", "probability": 0.35546875}, {"start": 1265.32, "end": 1265.66, "word": " at", "probability": 0.167724609375}, {"start": 1265.66, "end": 1267.4, "word": " inject", "probability": 0.564453125}, {"start": 1267.4, "end": 1267.94, "word": " Right", "probability": 0.2376708984375}, {"start": 1267.94, "end": 1268.26, "word": " guys?", "probability": 0.229736328125}, {"start": 1269.04, "end": 1269.56, "word": " But", "probability": 0.28173828125}, {"start": 1269.56, "end": 1270.4, "word": " let's", "probability": 0.7049560546875}, {"start": 1270.4, "end": 1271.34, "word": " assume", "probability": 0.5078125}, {"start": 1271.34, "end": 1271.56, "word": " that", "probability": 0.50537109375}, {"start": 1271.56, "end": 1271.76, "word": " this", "probability": 0.8115234375}, {"start": 1271.76, "end": 1271.82, "word": " is", "probability": 0.83203125}, {"start": 1271.82, "end": 1271.84, "word": " a", "probability": 0.798828125}, {"start": 1271.84, "end": 1272.08, "word": " library", "probability": 0.78369140625}, {"start": 1272.08, "end": 1272.24, "word": " and", "probability": 0.326904296875}, {"start": 1272.24, "end": 1272.5, "word": " I", "probability": 0.89208984375}, {"start": 1272.5, "end": 1272.7, "word": " don't", "probability": 0.827880859375}, {"start": 1272.7, "end": 1272.94, "word": " know", "probability": 0.53515625}, {"start": 1272.94, "end": 1273.08, "word": " its", "probability": 0.53564453125}, {"start": 1273.08, "end": 1273.36, "word": " code", "probability": 0.92236328125}, {"start": 1273.36, "end": 1275.08, "word": " You", "probability": 0.383056640625}, {"start": 1275.08, "end": 1275.22, "word": " don't", "probability": 0.899169921875}, {"start": 1275.22, "end": 1275.48, "word": " have", "probability": 0.78759765625}, {"start": 1275.48, "end": 1275.72, "word": " access", "probability": 0.91943359375}, {"start": 1275.72, "end": 1277.92, "word": " to", "probability": 0.9658203125}, {"start": 1277.92, "end": 1278.1, "word": " the", "probability": 0.8056640625}, {"start": 1278.1, "end": 1278.32, "word": " valve", "probability": 0.744140625}, {"start": 1278.32, "end": 1279.32, "word": " But", "probability": 0.60693359375}, {"start": 1279.32, "end": 1279.5, "word": " at", "probability": 0.8447265625}, {"start": 1279.5, "end": 1279.72, "word": " the", "probability": 0.92529296875}, {"start": 1279.72, "end": 1279.72, "word": " same", "probability": 0.908203125}, {"start": 1279.72, "end": 1280.06, "word": " time,", "probability": 0.8857421875}, {"start": 1280.14, "end": 1280.26, "word": " the", "probability": 0.865234375}, {"start": 1280.26, "end": 1280.6, "word": " cylinder", "probability": 0.77734375}, {"start": 1280.6, "end": 1282.42, "word": " needs", "probability": 0.80517578125}, {"start": 1282.42, "end": 1282.54, "word": " an", "probability": 0.763671875}, {"start": 1282.54, "end": 1282.8, "word": " object", "probability": 0.98095703125}, {"start": 1282.8, "end": 1283.06, "word": " from", "probability": 0.83056640625}, {"start": 1283.06, "end": 1284.7, "word": " the", "probability": 0.7958984375}, {"start": 1284.7, "end": 1284.88, "word": " valve", "probability": 0.94580078125}, {"start": 1284.88, "end": 1285.1, "word": " in", "probability": 0.320556640625}, {"start": 1285.1, "end": 1285.1, "word": " order", "probability": 0.92041015625}, {"start": 1285.1, "end": 1285.24, "word": " to", "probability": 0.75048828125}, {"start": 1285.24, "end": 1285.6, "word": " work", "probability": 0.6904296875}, {"start": 1285.6, "end": 1287.42, "word": " In", "probability": 0.453369140625}, {"start": 1287.42, "end": 1287.5, "word": " this", "probability": 0.76611328125}, {"start": 1287.5, "end": 1287.78, "word": " case,", "probability": 0.8623046875}, {"start": 1288.06, "end": 1288.14, "word": " if", "probability": 0.90869140625}, {"start": 1288.14, "end": 1288.32, "word": " you", "probability": 0.951171875}, {"start": 1288.32, "end": 1288.7, "word": " run", "probability": 0.53857421875}], "temperature": 1.0}, {"id": 49, "seek": 132144, "start": 1294.9, "end": 1321.44, "text": "It will give you an error and it will explain to you what the error is. What does it say? No injectable constructor for valve. It means that there is no constructor to inject on it to know what to do. Okay? And at the same time, I can't go to the valve and tell it to inject because the code of the valve is not available with me. So what is the solution to this problem? The solution is to go back to whom? To the module.", "tokens": [3522, 486, 976, 291, 364, 6713, 293, 309, 486, 2903, 281, 291, 437, 264, 6713, 307, 13, 708, 775, 309, 584, 30, 883, 10711, 712, 47479, 337, 15294, 13, 467, 1355, 300, 456, 307, 572, 47479, 281, 10711, 322, 309, 281, 458, 437, 281, 360, 13, 1033, 30, 400, 412, 264, 912, 565, 11, 286, 393, 380, 352, 281, 264, 15294, 293, 980, 309, 281, 10711, 570, 264, 3089, 295, 264, 15294, 307, 406, 2435, 365, 385, 13, 407, 437, 307, 264, 3827, 281, 341, 1154, 30, 440, 3827, 307, 281, 352, 646, 281, 7101, 30, 1407, 264, 10088, 13], "avg_logprob": -0.44028463930186656, "compression_ratio": 1.743801652892562, "no_speech_prob": 6.735324859619141e-06, "words": [{"start": 1294.9, "end": 1295.12, "word": "It", "probability": 0.23779296875}, {"start": 1295.12, "end": 1295.18, "word": " will", "probability": 0.62060546875}, {"start": 1295.18, "end": 1295.34, "word": " give", "probability": 0.36181640625}, {"start": 1295.34, "end": 1295.54, "word": " you", "probability": 0.83642578125}, {"start": 1295.54, "end": 1295.64, "word": " an", "probability": 0.77294921875}, {"start": 1295.64, "end": 1295.8, "word": " error", "probability": 0.88134765625}, {"start": 1295.8, "end": 1296.76, "word": " and", "probability": 0.36181640625}, {"start": 1296.76, "end": 1296.88, "word": " it", "probability": 0.52783203125}, {"start": 1296.88, "end": 1297.02, "word": " will", "probability": 0.82861328125}, {"start": 1297.02, "end": 1297.22, "word": " explain", "probability": 0.64111328125}, {"start": 1297.22, "end": 1297.36, "word": " to", "probability": 0.40380859375}, {"start": 1297.36, "end": 1297.5, "word": " you", "probability": 0.9638671875}, {"start": 1297.5, "end": 1297.6, "word": " what", "probability": 0.79833984375}, {"start": 1297.6, "end": 1297.68, "word": " the", "probability": 0.23095703125}, {"start": 1297.68, "end": 1297.84, "word": " error", "probability": 0.8486328125}, {"start": 1297.84, "end": 1298.12, "word": " is.", "probability": 0.8466796875}, {"start": 1298.4, "end": 1298.56, "word": " What", "probability": 0.48828125}, {"start": 1298.56, "end": 1298.66, "word": " does", "probability": 0.7392578125}, {"start": 1298.66, "end": 1298.66, "word": " it", "probability": 0.84423828125}, {"start": 1298.66, "end": 1298.78, "word": " say?", "probability": 0.66552734375}, {"start": 1299.02, "end": 1299.24, "word": " No", "probability": 0.6572265625}, {"start": 1299.24, "end": 1299.92, "word": " injectable", "probability": 0.935791015625}, {"start": 1299.92, "end": 1300.6, "word": " constructor", "probability": 0.748046875}, {"start": 1300.6, "end": 1302.04, "word": " for", "probability": 0.84375}, {"start": 1302.04, "end": 1302.26, "word": " valve.", "probability": 0.7353515625}, {"start": 1302.32, "end": 1302.46, "word": " It", "probability": 0.2462158203125}, {"start": 1302.46, "end": 1302.48, "word": " means", "probability": 0.533203125}, {"start": 1302.48, "end": 1302.58, "word": " that", "probability": 0.434814453125}, {"start": 1302.58, "end": 1302.58, "word": " there", "probability": 0.392333984375}, {"start": 1302.58, "end": 1302.8, "word": " is", "probability": 0.79833984375}, {"start": 1302.8, "end": 1302.94, "word": " no", "probability": 0.85595703125}, {"start": 1302.94, "end": 1303.68, "word": " constructor", "probability": 0.72119140625}, {"start": 1303.68, "end": 1304.7, "word": " to", "probability": 0.364013671875}, {"start": 1304.7, "end": 1305.14, "word": " inject", "probability": 0.75048828125}, {"start": 1305.14, "end": 1305.36, "word": " on", "probability": 0.320068359375}, {"start": 1305.36, "end": 1305.58, "word": " it", "probability": 0.65478515625}, {"start": 1305.58, "end": 1305.82, "word": " to", "probability": 0.216796875}, {"start": 1305.82, "end": 1306.12, "word": " know", "probability": 0.65625}, {"start": 1306.12, "end": 1306.32, "word": " what", "probability": 0.93017578125}, {"start": 1306.32, "end": 1306.38, "word": " to", "probability": 0.3779296875}, {"start": 1306.38, "end": 1306.66, "word": " do.", "probability": 0.96630859375}, {"start": 1307.3, "end": 1307.52, "word": " Okay?", "probability": 0.226318359375}, {"start": 1309.18, "end": 1309.62, "word": " And", "probability": 0.54150390625}, {"start": 1309.62, "end": 1309.74, "word": " at", "probability": 0.91357421875}, {"start": 1309.74, "end": 1309.94, "word": " the", "probability": 0.92822265625}, {"start": 1309.94, "end": 1309.94, "word": " same", "probability": 0.90966796875}, {"start": 1309.94, "end": 1310.16, "word": " time,", "probability": 0.88037109375}, {"start": 1310.24, "end": 1310.32, "word": " I", "probability": 0.98388671875}, {"start": 1310.32, "end": 1310.56, "word": " can't", "probability": 0.623046875}, {"start": 1310.56, "end": 1310.86, "word": " go", "probability": 0.90966796875}, {"start": 1310.86, "end": 1310.98, "word": " to", "probability": 0.9443359375}, {"start": 1310.98, "end": 1311.08, "word": " the", "probability": 0.86181640625}, {"start": 1311.08, "end": 1311.38, "word": " valve", "probability": 0.943359375}, {"start": 1311.38, "end": 1312.04, "word": " and", "probability": 0.89697265625}, {"start": 1312.04, "end": 1312.2, "word": " tell", "probability": 0.5390625}, {"start": 1312.2, "end": 1312.3, "word": " it", "probability": 0.8701171875}, {"start": 1312.3, "end": 1312.4, "word": " to", "probability": 0.80712890625}, {"start": 1312.4, "end": 1312.8, "word": " inject", "probability": 0.8134765625}, {"start": 1312.8, "end": 1313.18, "word": " because", "probability": 0.7958984375}, {"start": 1313.18, "end": 1313.5, "word": " the", "probability": 0.76416015625}, {"start": 1313.5, "end": 1313.72, "word": " code", "probability": 0.95654296875}, {"start": 1313.72, "end": 1313.82, "word": " of", "probability": 0.45068359375}, {"start": 1313.82, "end": 1313.98, "word": " the", "probability": 0.90869140625}, {"start": 1313.98, "end": 1314.24, "word": " valve", "probability": 0.95361328125}, {"start": 1314.24, "end": 1314.76, "word": " is", "probability": 0.75390625}, {"start": 1314.76, "end": 1314.82, "word": " not", "probability": 0.91845703125}, {"start": 1314.82, "end": 1315.12, "word": " available", "probability": 0.307861328125}, {"start": 1315.12, "end": 1315.3, "word": " with", "probability": 0.28759765625}, {"start": 1315.3, "end": 1315.44, "word": " me.", "probability": 0.96484375}, {"start": 1316.2, "end": 1316.64, "word": " So", "probability": 0.85888671875}, {"start": 1316.64, "end": 1317.02, "word": " what", "probability": 0.626953125}, {"start": 1317.02, "end": 1317.06, "word": " is", "probability": 0.69580078125}, {"start": 1317.06, "end": 1317.22, "word": " the", "probability": 0.89404296875}, {"start": 1317.22, "end": 1317.22, "word": " solution", "probability": 0.908203125}, {"start": 1317.22, "end": 1317.48, "word": " to", "probability": 0.75146484375}, {"start": 1317.48, "end": 1317.88, "word": " this", "probability": 0.9189453125}, {"start": 1317.88, "end": 1318.16, "word": " problem?", "probability": 0.39501953125}, {"start": 1318.44, "end": 1318.5, "word": " The", "probability": 0.1400146484375}, {"start": 1318.5, "end": 1318.6, "word": " solution", "probability": 0.814453125}, {"start": 1318.6, "end": 1318.74, "word": " is", "probability": 0.65869140625}, {"start": 1318.74, "end": 1318.9, "word": " to", "probability": 0.47412109375}, {"start": 1318.9, "end": 1319.12, "word": " go", "probability": 0.390380859375}, {"start": 1319.12, "end": 1319.22, "word": " back", "probability": 0.7734375}, {"start": 1319.22, "end": 1319.5, "word": " to", "probability": 0.7158203125}, {"start": 1319.5, "end": 1319.74, "word": " whom?", "probability": 0.45849609375}, {"start": 1320.6, "end": 1321.04, "word": " To", "probability": 0.8271484375}, {"start": 1321.04, "end": 1321.14, "word": " the", "probability": 0.91455078125}, {"start": 1321.14, "end": 1321.44, "word": " module.", "probability": 0.90478515625}], "temperature": 1.0}, {"id": 50, "seek": 135138, "start": 1322.1, "end": 1351.38, "text": "The module is the solution if it can't act. It always goes back to the module. That's why the first time we worked, we didn't use a module because everything had inject. So let's go to the module. Let's go back to the core module, our basis. This is the core module. You see, I want to add something here. Because it tells me the things that I can't create because you can't inject them, let the module do it.", "tokens": [2278, 10088, 307, 264, 3827, 498, 309, 393, 380, 605, 13, 467, 1009, 1709, 646, 281, 264, 10088, 13, 663, 311, 983, 264, 700, 565, 321, 2732, 11, 321, 994, 380, 764, 257, 10088, 570, 1203, 632, 10711, 13, 407, 718, 311, 352, 281, 264, 10088, 13, 961, 311, 352, 646, 281, 264, 4965, 10088, 11, 527, 5143, 13, 639, 307, 264, 4965, 10088, 13, 509, 536, 11, 286, 528, 281, 909, 746, 510, 13, 1436, 309, 5112, 385, 264, 721, 300, 286, 393, 380, 1884, 570, 291, 393, 380, 10711, 552, 11, 718, 264, 10088, 360, 309, 13], "avg_logprob": -0.44656249701976775, "compression_ratio": 1.793859649122807, "no_speech_prob": 8.404254913330078e-06, "words": [{"start": 1322.1, "end": 1322.34, "word": "The", "probability": 0.339599609375}, {"start": 1322.34, "end": 1322.62, "word": " module", "probability": 0.837890625}, {"start": 1322.62, "end": 1323.0, "word": " is", "probability": 0.87060546875}, {"start": 1323.0, "end": 1324.04, "word": " the", "probability": 0.7421875}, {"start": 1324.04, "end": 1324.34, "word": " solution", "probability": 0.84716796875}, {"start": 1324.34, "end": 1325.06, "word": " if", "probability": 0.57763671875}, {"start": 1325.06, "end": 1325.3, "word": " it", "probability": 0.47119140625}, {"start": 1325.3, "end": 1325.56, "word": " can't", "probability": 0.5467529296875}, {"start": 1325.56, "end": 1325.98, "word": " act.", "probability": 0.1195068359375}, {"start": 1326.12, "end": 1326.64, "word": " It", "probability": 0.4169921875}, {"start": 1326.64, "end": 1326.64, "word": " always", "probability": 0.64501953125}, {"start": 1326.64, "end": 1326.64, "word": " goes", "probability": 0.425048828125}, {"start": 1326.64, "end": 1327.24, "word": " back", "probability": 0.76904296875}, {"start": 1327.24, "end": 1327.24, "word": " to", "probability": 0.95458984375}, {"start": 1327.24, "end": 1328.02, "word": " the", "probability": 0.71044921875}, {"start": 1328.02, "end": 1328.36, "word": " module.", "probability": 0.90673828125}, {"start": 1328.72, "end": 1329.06, "word": " That's", "probability": 0.63037109375}, {"start": 1329.06, "end": 1329.22, "word": " why", "probability": 0.90576171875}, {"start": 1329.22, "end": 1329.34, "word": " the", "probability": 0.28125}, {"start": 1329.34, "end": 1329.62, "word": " first", "probability": 0.87158203125}, {"start": 1329.62, "end": 1329.9, "word": " time", "probability": 0.85693359375}, {"start": 1329.9, "end": 1330.0, "word": " we", "probability": 0.72021484375}, {"start": 1330.0, "end": 1330.26, "word": " worked,", "probability": 0.71923828125}, {"start": 1330.42, "end": 1330.44, "word": " we", "probability": 0.93408203125}, {"start": 1330.44, "end": 1330.52, "word": " didn't", "probability": 0.896240234375}, {"start": 1330.52, "end": 1330.84, "word": " use", "probability": 0.86279296875}, {"start": 1330.84, "end": 1331.06, "word": " a", "probability": 0.52197265625}, {"start": 1331.06, "end": 1331.3, "word": " module", "probability": 0.9150390625}, {"start": 1331.3, "end": 1331.56, "word": " because", "probability": 0.6328125}, {"start": 1331.56, "end": 1331.82, "word": " everything", "probability": 0.8466796875}, {"start": 1331.82, "end": 1332.42, "word": " had", "probability": 0.294677734375}, {"start": 1332.42, "end": 1333.32, "word": " inject.", "probability": 0.38720703125}, {"start": 1334.02, "end": 1334.54, "word": " So", "probability": 0.406982421875}, {"start": 1334.54, "end": 1335.08, "word": " let's", "probability": 0.7037353515625}, {"start": 1335.08, "end": 1335.28, "word": " go", "probability": 0.428955078125}, {"start": 1335.28, "end": 1335.36, "word": " to", "probability": 0.56103515625}, {"start": 1335.36, "end": 1335.44, "word": " the", "probability": 0.80224609375}, {"start": 1335.44, "end": 1335.72, "word": " module.", "probability": 0.95068359375}, {"start": 1336.04, "end": 1336.22, "word": " Let's", "probability": 0.88232421875}, {"start": 1336.22, "end": 1336.36, "word": " go", "probability": 0.86865234375}, {"start": 1336.36, "end": 1336.42, "word": " back", "probability": 0.79833984375}, {"start": 1336.42, "end": 1336.48, "word": " to", "probability": 0.9658203125}, {"start": 1336.48, "end": 1336.64, "word": " the", "probability": 0.6767578125}, {"start": 1336.64, "end": 1336.82, "word": " core", "probability": 0.290283203125}, {"start": 1336.82, "end": 1337.12, "word": " module,", "probability": 0.912109375}, {"start": 1337.2, "end": 1337.26, "word": " our", "probability": 0.4423828125}, {"start": 1337.26, "end": 1337.54, "word": " basis.", "probability": 0.268798828125}, {"start": 1339.2, "end": 1339.72, "word": " This", "probability": 0.7265625}, {"start": 1339.72, "end": 1339.76, "word": " is", "probability": 0.92578125}, {"start": 1339.76, "end": 1339.84, "word": " the", "probability": 0.87841796875}, {"start": 1339.84, "end": 1340.0, "word": " core", "probability": 0.96337890625}, {"start": 1340.0, "end": 1340.34, "word": " module.", "probability": 0.9111328125}, {"start": 1341.1, "end": 1341.24, "word": " You", "probability": 0.11895751953125}, {"start": 1341.24, "end": 1341.38, "word": " see,", "probability": 0.68310546875}, {"start": 1341.5, "end": 1341.56, "word": " I", "probability": 0.9599609375}, {"start": 1341.56, "end": 1341.74, "word": " want", "probability": 0.53955078125}, {"start": 1341.74, "end": 1342.3, "word": " to", "probability": 0.9697265625}, {"start": 1342.3, "end": 1342.46, "word": " add", "probability": 0.63330078125}, {"start": 1342.46, "end": 1342.82, "word": " something", "probability": 0.78076171875}, {"start": 1342.82, "end": 1343.1, "word": " here.", "probability": 0.76953125}, {"start": 1344.22, "end": 1344.58, "word": " Because", "probability": 0.7421875}, {"start": 1344.58, "end": 1344.74, "word": " it", "probability": 0.775390625}, {"start": 1344.74, "end": 1345.04, "word": " tells", "probability": 0.7666015625}, {"start": 1345.04, "end": 1345.36, "word": " me", "probability": 0.94091796875}, {"start": 1345.36, "end": 1345.56, "word": " the", "probability": 0.2235107421875}, {"start": 1345.56, "end": 1345.94, "word": " things", "probability": 0.83056640625}, {"start": 1345.94, "end": 1346.2, "word": " that", "probability": 0.71728515625}, {"start": 1346.2, "end": 1346.38, "word": " I", "probability": 0.97265625}, {"start": 1346.38, "end": 1346.92, "word": " can't", "probability": 0.795654296875}, {"start": 1346.92, "end": 1347.32, "word": " create", "probability": 0.677734375}, {"start": 1347.32, "end": 1347.82, "word": " because", "probability": 0.70556640625}, {"start": 1347.82, "end": 1348.04, "word": " you", "probability": 0.362548828125}, {"start": 1348.04, "end": 1348.46, "word": " can't", "probability": 0.955322265625}, {"start": 1348.46, "end": 1349.14, "word": " inject", "probability": 0.298828125}, {"start": 1349.14, "end": 1349.36, "word": " them,", "probability": 0.456787109375}, {"start": 1349.36, "end": 1349.58, "word": " let", "probability": 0.87841796875}, {"start": 1349.58, "end": 1349.7, "word": " the", "probability": 0.90087890625}, {"start": 1349.7, "end": 1350.16, "word": " module", "probability": 0.92236328125}, {"start": 1350.16, "end": 1351.24, "word": " do", "probability": 0.90771484375}, {"start": 1351.24, "end": 1351.38, "word": " it.", "probability": 0.705078125}], "temperature": 1.0}, {"id": 51, "seek": 137354, "start": 1352.5, "end": 1373.54, "text": "How? You go and create a method because it wants Valve, right or wrong? Create a method to return Valve to you. Name it whatever you want, getValve. Importantly, what should it return? Its return type. Valve. Because here you run the object whatever you want, through the U.", "tokens": [6462, 30, 509, 352, 293, 1884, 257, 3170, 570, 309, 2738, 41369, 11, 558, 420, 2085, 30, 20248, 257, 3170, 281, 2736, 41369, 281, 291, 13, 13866, 309, 2035, 291, 528, 11, 483, 53, 304, 303, 13, 26391, 3627, 11, 437, 820, 309, 2736, 30, 6953, 2736, 2010, 13, 41369, 13, 1436, 510, 291, 1190, 264, 2657, 2035, 291, 528, 11, 807, 264, 624, 13], "avg_logprob": -0.6117424097928134, "compression_ratio": 1.6407185628742516, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 1352.5, "end": 1352.9, "word": "How?", "probability": 0.302001953125}, {"start": 1353.04, "end": 1353.24, "word": " You", "probability": 0.3212890625}, {"start": 1353.24, "end": 1353.34, "word": " go", "probability": 0.1678466796875}, {"start": 1353.34, "end": 1353.44, "word": " and", "probability": 0.51220703125}, {"start": 1353.44, "end": 1353.6, "word": " create", "probability": 0.59130859375}, {"start": 1353.6, "end": 1353.72, "word": " a", "probability": 0.7705078125}, {"start": 1353.72, "end": 1354.06, "word": " method", "probability": 0.939453125}, {"start": 1354.06, "end": 1355.1, "word": " because", "probability": 0.135009765625}, {"start": 1355.1, "end": 1355.32, "word": " it", "probability": 0.814453125}, {"start": 1355.32, "end": 1355.54, "word": " wants", "probability": 0.452392578125}, {"start": 1355.54, "end": 1355.88, "word": " Valve,", "probability": 0.427978515625}, {"start": 1356.04, "end": 1356.34, "word": " right", "probability": 0.490478515625}, {"start": 1356.34, "end": 1356.5, "word": " or", "probability": 0.73388671875}, {"start": 1356.5, "end": 1356.6, "word": " wrong?", "probability": 0.572265625}, {"start": 1357.22, "end": 1357.66, "word": " Create", "probability": 0.38525390625}, {"start": 1357.66, "end": 1357.78, "word": " a", "probability": 0.89208984375}, {"start": 1357.78, "end": 1358.0, "word": " method", "probability": 0.939453125}, {"start": 1358.0, "end": 1358.16, "word": " to", "probability": 0.27734375}, {"start": 1358.16, "end": 1358.42, "word": " return", "probability": 0.61962890625}, {"start": 1358.42, "end": 1359.22, "word": " Valve", "probability": 0.47216796875}, {"start": 1359.22, "end": 1359.98, "word": " to", "probability": 0.426025390625}, {"start": 1359.98, "end": 1359.98, "word": " you.", "probability": 0.8193359375}, {"start": 1360.04, "end": 1360.32, "word": " Name", "probability": 0.341552734375}, {"start": 1360.32, "end": 1360.88, "word": " it", "probability": 0.87646484375}, {"start": 1360.88, "end": 1360.96, "word": " whatever", "probability": 0.354248046875}, {"start": 1360.96, "end": 1361.04, "word": " you", "probability": 0.6513671875}, {"start": 1361.04, "end": 1361.18, "word": " want,", "probability": 0.73095703125}, {"start": 1361.4, "end": 1362.0, "word": " getValve.", "probability": 0.8375244140625}, {"start": 1362.6, "end": 1362.86, "word": " Importantly,", "probability": 0.606689453125}, {"start": 1362.9, "end": 1363.04, "word": " what", "probability": 0.55517578125}, {"start": 1363.04, "end": 1363.14, "word": " should", "probability": 0.32470703125}, {"start": 1363.14, "end": 1363.24, "word": " it", "probability": 0.33544921875}, {"start": 1363.24, "end": 1363.52, "word": " return?", "probability": 0.884765625}, {"start": 1364.3, "end": 1364.42, "word": " Its", "probability": 0.4580078125}, {"start": 1364.42, "end": 1364.7, "word": " return", "probability": 0.78564453125}, {"start": 1364.7, "end": 1365.08, "word": " type.", "probability": 0.95556640625}, {"start": 1366.3, "end": 1366.74, "word": " Valve.", "probability": 0.4716796875}, {"start": 1368.12, "end": 1368.38, "word": " Because", "probability": 0.27001953125}, {"start": 1368.38, "end": 1368.7, "word": " here", "probability": 0.8203125}, {"start": 1368.7, "end": 1369.48, "word": " you", "probability": 0.48681640625}, {"start": 1369.48, "end": 1369.68, "word": " run", "probability": 0.36767578125}, {"start": 1369.68, "end": 1369.8, "word": " the", "probability": 0.80615234375}, {"start": 1369.8, "end": 1370.16, "word": " object", "probability": 0.9658203125}, {"start": 1370.16, "end": 1371.92, "word": " whatever", "probability": 0.47265625}, {"start": 1371.92, "end": 1372.82, "word": " you", "probability": 0.95556640625}, {"start": 1372.82, "end": 1372.84, "word": " want,", "probability": 0.84912109375}, {"start": 1372.94, "end": 1373.2, "word": " through", "probability": 0.491455078125}, {"start": 1373.2, "end": 1373.38, "word": " the", "probability": 0.337646484375}, {"start": 1373.38, "end": 1373.54, "word": " U.", "probability": 0.495361328125}], "temperature": 1.0}, {"id": 52, "seek": 140197, "start": 1374.99, "end": 1401.97, "text": "means that this valve will not allow itself to generate it you will have to generate it because you will not be able to put the inject as if I say to him if you find a valve, go and learn the method of generating a valve and here you generate the object yourself as a programmer you determine how to generate the object because it is an external library and here you pass it for example 5, I don't want to generate this valve", "tokens": [1398, 599, 300, 341, 15294, 486, 406, 2089, 2564, 281, 8460, 309, 291, 486, 362, 281, 8460, 309, 570, 291, 486, 406, 312, 1075, 281, 829, 264, 10711, 382, 498, 286, 584, 281, 796, 498, 291, 915, 257, 15294, 11, 352, 293, 1466, 264, 3170, 295, 17746, 257, 15294, 293, 510, 291, 8460, 264, 2657, 1803, 382, 257, 32116, 291, 6997, 577, 281, 8460, 264, 2657, 570, 309, 307, 364, 8320, 6405, 293, 510, 291, 1320, 309, 337, 1365, 1025, 11, 286, 500, 380, 528, 281, 8460, 341, 15294], "avg_logprob": -0.5909722434149848, "compression_ratio": 1.905829596412556, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 1374.99, "end": 1375.23, "word": "means", "probability": 0.44244384765625}, {"start": 1375.23, "end": 1375.31, "word": " that", "probability": 0.58447265625}, {"start": 1375.31, "end": 1375.57, "word": " this", "probability": 0.6533203125}, {"start": 1375.57, "end": 1375.87, "word": " valve", "probability": 0.83203125}, {"start": 1375.87, "end": 1376.41, "word": " will", "probability": 0.452392578125}, {"start": 1376.41, "end": 1376.41, "word": " not", "probability": 0.87841796875}, {"start": 1376.41, "end": 1377.17, "word": " allow", "probability": 0.351806640625}, {"start": 1377.17, "end": 1377.91, "word": " itself", "probability": 0.3916015625}, {"start": 1377.91, "end": 1378.59, "word": " to", "probability": 0.9541015625}, {"start": 1378.59, "end": 1378.73, "word": " generate", "probability": 0.26611328125}, {"start": 1378.73, "end": 1378.97, "word": " it", "probability": 0.488525390625}, {"start": 1378.97, "end": 1379.89, "word": " you", "probability": 0.204345703125}, {"start": 1379.89, "end": 1380.13, "word": " will", "probability": 0.313232421875}, {"start": 1380.13, "end": 1380.15, "word": " have", "probability": 0.76220703125}, {"start": 1380.15, "end": 1380.99, "word": " to", "probability": 0.97314453125}, {"start": 1380.99, "end": 1381.87, "word": " generate", "probability": 0.79833984375}, {"start": 1381.87, "end": 1382.09, "word": " it", "probability": 0.8955078125}, {"start": 1382.09, "end": 1382.21, "word": " because", "probability": 0.62548828125}, {"start": 1382.21, "end": 1382.35, "word": " you", "probability": 0.892578125}, {"start": 1382.35, "end": 1382.39, "word": " will", "probability": 0.169677734375}, {"start": 1382.39, "end": 1382.43, "word": " not", "probability": 0.93115234375}, {"start": 1382.43, "end": 1382.69, "word": " be", "probability": 0.88720703125}, {"start": 1382.69, "end": 1382.69, "word": " able", "probability": 0.95751953125}, {"start": 1382.69, "end": 1382.81, "word": " to", "probability": 0.96630859375}, {"start": 1382.81, "end": 1382.95, "word": " put", "probability": 0.344482421875}, {"start": 1382.95, "end": 1383.15, "word": " the", "probability": 0.64697265625}, {"start": 1383.15, "end": 1383.51, "word": " inject", "probability": 0.69287109375}, {"start": 1383.51, "end": 1384.21, "word": " as", "probability": 0.10028076171875}, {"start": 1384.21, "end": 1385.83, "word": " if", "probability": 0.66845703125}, {"start": 1385.83, "end": 1385.93, "word": " I", "probability": 0.724609375}, {"start": 1385.93, "end": 1386.17, "word": " say", "probability": 0.28564453125}, {"start": 1386.17, "end": 1386.61, "word": " to", "probability": 0.47607421875}, {"start": 1386.61, "end": 1386.65, "word": " him", "probability": 0.70556640625}, {"start": 1386.65, "end": 1387.81, "word": " if", "probability": 0.5908203125}, {"start": 1387.81, "end": 1388.13, "word": " you", "probability": 0.8984375}, {"start": 1388.13, "end": 1388.13, "word": " find", "probability": 0.779296875}, {"start": 1388.13, "end": 1388.57, "word": " a", "probability": 0.845703125}, {"start": 1388.57, "end": 1388.57, "word": " valve,", "probability": 0.94677734375}, {"start": 1389.05, "end": 1389.19, "word": " go", "probability": 0.66015625}, {"start": 1389.19, "end": 1389.35, "word": " and", "probability": 0.39404296875}, {"start": 1389.35, "end": 1389.53, "word": " learn", "probability": 0.48193359375}, {"start": 1389.53, "end": 1389.71, "word": " the", "probability": 0.3115234375}, {"start": 1389.71, "end": 1390.11, "word": " method", "probability": 0.953125}, {"start": 1390.11, "end": 1390.33, "word": " of", "probability": 0.326904296875}, {"start": 1390.33, "end": 1390.61, "word": " generating", "probability": 0.2587890625}, {"start": 1390.61, "end": 1391.15, "word": " a", "probability": 0.34716796875}, {"start": 1391.15, "end": 1391.65, "word": " valve", "probability": 0.94384765625}, {"start": 1391.65, "end": 1392.65, "word": " and", "probability": 0.465087890625}, {"start": 1392.65, "end": 1392.81, "word": " here", "probability": 0.459716796875}, {"start": 1392.81, "end": 1392.95, "word": " you", "probability": 0.7392578125}, {"start": 1392.95, "end": 1393.17, "word": " generate", "probability": 0.546875}, {"start": 1393.17, "end": 1393.29, "word": " the", "probability": 0.8447265625}, {"start": 1393.29, "end": 1393.57, "word": " object", "probability": 0.9287109375}, {"start": 1393.57, "end": 1394.11, "word": " yourself", "probability": 0.430908203125}, {"start": 1394.11, "end": 1394.51, "word": " as", "probability": 0.7451171875}, {"start": 1394.51, "end": 1394.59, "word": " a", "probability": 0.82080078125}, {"start": 1394.59, "end": 1394.87, "word": " programmer", "probability": 0.95556640625}, {"start": 1394.87, "end": 1395.19, "word": " you", "probability": 0.2479248046875}, {"start": 1395.19, "end": 1395.43, "word": " determine", "probability": 0.306884765625}, {"start": 1395.43, "end": 1395.65, "word": " how", "probability": 0.919921875}, {"start": 1395.65, "end": 1395.77, "word": " to", "probability": 0.8515625}, {"start": 1395.77, "end": 1395.93, "word": " generate", "probability": 0.82666015625}, {"start": 1395.93, "end": 1396.05, "word": " the", "probability": 0.5927734375}, {"start": 1396.05, "end": 1396.23, "word": " object", "probability": 0.9638671875}, {"start": 1396.23, "end": 1396.39, "word": " because", "probability": 0.2900390625}, {"start": 1396.39, "end": 1396.51, "word": " it", "probability": 0.623046875}, {"start": 1396.51, "end": 1396.53, "word": " is", "probability": 0.81787109375}, {"start": 1396.53, "end": 1396.63, "word": " an", "probability": 0.81005859375}, {"start": 1396.63, "end": 1396.63, "word": " external", "probability": 0.783203125}, {"start": 1396.63, "end": 1397.19, "word": " library", "probability": 0.43994140625}, {"start": 1397.19, "end": 1397.75, "word": " and", "probability": 0.27001953125}, {"start": 1397.75, "end": 1397.87, "word": " here", "probability": 0.74072265625}, {"start": 1397.87, "end": 1397.99, "word": " you", "probability": 0.73828125}, {"start": 1397.99, "end": 1398.19, "word": " pass", "probability": 0.294189453125}, {"start": 1398.19, "end": 1398.33, "word": " it", "probability": 0.482421875}, {"start": 1398.33, "end": 1398.43, "word": " for", "probability": 0.42626953125}, {"start": 1398.43, "end": 1398.67, "word": " example", "probability": 0.96337890625}, {"start": 1398.67, "end": 1399.99, "word": " 5,", "probability": 0.271484375}, {"start": 1400.11, "end": 1400.15, "word": " I", "probability": 0.4140625}, {"start": 1400.15, "end": 1400.21, "word": " don't", "probability": 0.721435546875}, {"start": 1400.21, "end": 1400.35, "word": " want", "probability": 0.7021484375}, {"start": 1400.35, "end": 1400.45, "word": " to", "probability": 0.77978515625}, {"start": 1400.45, "end": 1400.67, "word": " generate", "probability": 0.2030029296875}, {"start": 1400.67, "end": 1401.09, "word": " this", "probability": 0.81298828125}, {"start": 1401.09, "end": 1401.97, "word": " valve", "probability": 0.92578125}], "temperature": 1.0}, {"id": 53, "seek": 142955, "start": 1403.21, "end": 1429.55, "text": " And then you come to this terminal and you tag it with something called provides Now, what is this provides? Okay, pay attention to me guys, this gate comes to work and at the moment it wants to create a cylinder in it The cylinder needs what? Valve To create the valve now, it will go to the valve and search for a constructor in it at", "tokens": [400, 550, 291, 808, 281, 341, 14709, 293, 291, 6162, 309, 365, 746, 1219, 6417, 823, 11, 437, 307, 341, 6417, 30, 1033, 11, 1689, 3202, 281, 385, 1074, 11, 341, 8539, 1487, 281, 589, 293, 412, 264, 1623, 309, 2738, 281, 1884, 257, 17884, 294, 309, 440, 17884, 2203, 437, 30, 41369, 1407, 1884, 264, 15294, 586, 11, 309, 486, 352, 281, 264, 15294, 293, 3164, 337, 257, 47479, 294, 309, 412], "avg_logprob": -0.5282939028095555, "compression_ratio": 1.685, "no_speech_prob": 2.9802322387695312e-06, "words": [{"start": 1403.21, "end": 1403.37, "word": " And", "probability": 0.1309814453125}, {"start": 1403.37, "end": 1403.57, "word": " then", "probability": 0.464111328125}, {"start": 1403.57, "end": 1403.75, "word": " you", "probability": 0.39208984375}, {"start": 1403.75, "end": 1403.91, "word": " come", "probability": 0.28076171875}, {"start": 1403.91, "end": 1403.97, "word": " to", "probability": 0.888671875}, {"start": 1403.97, "end": 1404.09, "word": " this", "probability": 0.79541015625}, {"start": 1404.09, "end": 1404.31, "word": " terminal", "probability": 0.19921875}, {"start": 1404.31, "end": 1404.95, "word": " and", "probability": 0.728515625}, {"start": 1404.95, "end": 1405.07, "word": " you", "probability": 0.397705078125}, {"start": 1405.07, "end": 1405.77, "word": " tag", "probability": 0.1627197265625}, {"start": 1405.77, "end": 1405.83, "word": " it", "probability": 0.78271484375}, {"start": 1405.83, "end": 1406.23, "word": " with", "probability": 0.5205078125}, {"start": 1406.23, "end": 1406.33, "word": " something", "probability": 0.58935546875}, {"start": 1406.33, "end": 1406.59, "word": " called", "probability": 0.822265625}, {"start": 1406.59, "end": 1407.17, "word": " provides", "probability": 0.400390625}, {"start": 1407.17, "end": 1413.41, "word": " Now,", "probability": 0.548828125}, {"start": 1413.55, "end": 1413.67, "word": " what", "probability": 0.89501953125}, {"start": 1413.67, "end": 1413.67, "word": " is", "probability": 0.63134765625}, {"start": 1413.67, "end": 1413.83, "word": " this", "probability": 0.6708984375}, {"start": 1413.83, "end": 1414.21, "word": " provides?", "probability": 0.8544921875}, {"start": 1415.03, "end": 1415.31, "word": " Okay,", "probability": 0.21728515625}, {"start": 1415.39, "end": 1415.51, "word": " pay", "probability": 0.439208984375}, {"start": 1415.51, "end": 1415.61, "word": " attention", "probability": 0.93896484375}, {"start": 1415.61, "end": 1415.69, "word": " to", "probability": 0.3447265625}, {"start": 1415.69, "end": 1415.85, "word": " me", "probability": 0.62109375}, {"start": 1415.85, "end": 1416.13, "word": " guys,", "probability": 0.64013671875}, {"start": 1416.19, "end": 1416.33, "word": " this", "probability": 0.78173828125}, {"start": 1416.33, "end": 1416.57, "word": " gate", "probability": 0.86181640625}, {"start": 1416.57, "end": 1417.29, "word": " comes", "probability": 0.3173828125}, {"start": 1417.29, "end": 1417.43, "word": " to", "probability": 0.63671875}, {"start": 1417.43, "end": 1417.75, "word": " work", "probability": 0.80712890625}, {"start": 1417.75, "end": 1418.49, "word": " and", "probability": 0.466552734375}, {"start": 1418.49, "end": 1418.59, "word": " at", "probability": 0.4189453125}, {"start": 1418.59, "end": 1418.67, "word": " the", "probability": 0.9130859375}, {"start": 1418.67, "end": 1418.95, "word": " moment", "probability": 0.95849609375}, {"start": 1418.95, "end": 1419.29, "word": " it", "probability": 0.345458984375}, {"start": 1419.29, "end": 1419.73, "word": " wants", "probability": 0.48046875}, {"start": 1419.73, "end": 1420.07, "word": " to", "probability": 0.962890625}, {"start": 1420.07, "end": 1420.33, "word": " create", "probability": 0.53564453125}, {"start": 1420.33, "end": 1420.67, "word": " a", "probability": 0.853515625}, {"start": 1420.67, "end": 1421.05, "word": " cylinder", "probability": 0.83984375}, {"start": 1421.05, "end": 1421.19, "word": " in", "probability": 0.474853515625}, {"start": 1421.19, "end": 1421.19, "word": " it", "probability": 0.89794921875}, {"start": 1421.19, "end": 1421.85, "word": " The", "probability": 0.29736328125}, {"start": 1421.85, "end": 1422.15, "word": " cylinder", "probability": 0.86767578125}, {"start": 1422.15, "end": 1422.61, "word": " needs", "probability": 0.861328125}, {"start": 1422.61, "end": 1422.91, "word": " what?", "probability": 0.85888671875}, {"start": 1423.81, "end": 1424.15, "word": " Valve", "probability": 0.7392578125}, {"start": 1424.15, "end": 1425.13, "word": " To", "probability": 0.373291015625}, {"start": 1425.13, "end": 1425.45, "word": " create", "probability": 0.826171875}, {"start": 1425.45, "end": 1425.65, "word": " the", "probability": 0.70849609375}, {"start": 1425.65, "end": 1425.83, "word": " valve", "probability": 0.9267578125}, {"start": 1425.83, "end": 1426.21, "word": " now,", "probability": 0.89501953125}, {"start": 1426.39, "end": 1426.65, "word": " it", "probability": 0.7919921875}, {"start": 1426.65, "end": 1426.79, "word": " will", "probability": 0.322509765625}, {"start": 1426.79, "end": 1426.97, "word": " go", "probability": 0.9189453125}, {"start": 1426.97, "end": 1427.09, "word": " to", "probability": 0.931640625}, {"start": 1427.09, "end": 1427.21, "word": " the", "probability": 0.87548828125}, {"start": 1427.21, "end": 1427.51, "word": " valve", "probability": 0.935546875}, {"start": 1427.51, "end": 1427.79, "word": " and", "probability": 0.89453125}, {"start": 1427.79, "end": 1428.09, "word": " search", "probability": 0.2264404296875}, {"start": 1428.09, "end": 1428.29, "word": " for", "probability": 0.85791015625}, {"start": 1428.29, "end": 1428.43, "word": " a", "probability": 0.60546875}, {"start": 1428.43, "end": 1428.87, "word": " constructor", "probability": 0.85009765625}, {"start": 1428.87, "end": 1429.11, "word": " in", "probability": 0.50927734375}, {"start": 1429.11, "end": 1429.25, "word": " it", "probability": 0.8896484375}, {"start": 1429.25, "end": 1429.55, "word": " at", "probability": 0.412353515625}], "temperature": 1.0}, {"id": 54, "seek": 144929, "start": 1430.49, "end": 1449.29, "text": "at inject, he will not find it, it will enter inside the valve, because it has the class, but it does not have the code, okay? The constructor will not find it at inject. So what does it do? It asks again who? The module. Automatically, if there is a class that does not know how to create it, it searches for the tags with its name", "tokens": [267, 10711, 11, 415, 486, 406, 915, 309, 11, 309, 486, 3242, 1854, 264, 15294, 11, 570, 309, 575, 264, 1508, 11, 457, 309, 775, 406, 362, 264, 3089, 11, 1392, 30, 440, 47479, 486, 406, 915, 309, 412, 10711, 13, 407, 437, 775, 309, 360, 30, 467, 8962, 797, 567, 30, 440, 10088, 13, 24619, 5030, 11, 498, 456, 307, 257, 1508, 300, 775, 406, 458, 577, 281, 1884, 309, 11, 309, 26701, 337, 264, 18632, 365, 1080, 1315], "avg_logprob": -0.4768518459649734, "compression_ratio": 1.6767676767676767, "no_speech_prob": 1.0609626770019531e-05, "words": [{"start": 1430.49, "end": 1430.75, "word": "at", "probability": 0.294189453125}, {"start": 1430.75, "end": 1431.07, "word": " inject,", "probability": 0.8330078125}, {"start": 1431.37, "end": 1431.75, "word": " he", "probability": 0.4736328125}, {"start": 1431.75, "end": 1431.75, "word": " will", "probability": 0.375}, {"start": 1431.75, "end": 1431.75, "word": " not", "probability": 0.841796875}, {"start": 1431.75, "end": 1432.07, "word": " find", "probability": 0.85791015625}, {"start": 1432.07, "end": 1432.09, "word": " it,", "probability": 0.73876953125}, {"start": 1432.15, "end": 1432.21, "word": " it", "probability": 0.70556640625}, {"start": 1432.21, "end": 1432.27, "word": " will", "probability": 0.83203125}, {"start": 1432.27, "end": 1432.49, "word": " enter", "probability": 0.487548828125}, {"start": 1432.49, "end": 1432.73, "word": " inside", "probability": 0.357421875}, {"start": 1432.73, "end": 1433.23, "word": " the", "probability": 0.84912109375}, {"start": 1433.23, "end": 1433.61, "word": " valve,", "probability": 0.81396484375}, {"start": 1433.89, "end": 1433.97, "word": " because", "probability": 0.253662109375}, {"start": 1433.97, "end": 1434.07, "word": " it", "probability": 0.481201171875}, {"start": 1434.07, "end": 1434.21, "word": " has", "probability": 0.83056640625}, {"start": 1434.21, "end": 1434.35, "word": " the", "probability": 0.478271484375}, {"start": 1434.35, "end": 1434.75, "word": " class,", "probability": 0.95849609375}, {"start": 1435.05, "end": 1435.31, "word": " but", "probability": 0.8974609375}, {"start": 1435.31, "end": 1435.37, "word": " it", "probability": 0.486083984375}, {"start": 1435.37, "end": 1435.41, "word": " does", "probability": 0.6484375}, {"start": 1435.41, "end": 1435.41, "word": " not", "probability": 0.92919921875}, {"start": 1435.41, "end": 1435.59, "word": " have", "probability": 0.927734375}, {"start": 1435.59, "end": 1435.77, "word": " the", "probability": 0.8046875}, {"start": 1435.77, "end": 1436.11, "word": " code,", "probability": 0.92236328125}, {"start": 1436.73, "end": 1437.05, "word": " okay?", "probability": 0.33349609375}, {"start": 1438.67, "end": 1438.95, "word": " The", "probability": 0.365966796875}, {"start": 1438.95, "end": 1439.71, "word": " constructor", "probability": 0.908203125}, {"start": 1439.71, "end": 1440.03, "word": " will", "probability": 0.423828125}, {"start": 1440.03, "end": 1440.03, "word": " not", "probability": 0.92431640625}, {"start": 1440.03, "end": 1440.03, "word": " find", "probability": 0.876953125}, {"start": 1440.03, "end": 1440.03, "word": " it", "probability": 0.62451171875}, {"start": 1440.03, "end": 1440.25, "word": " at", "probability": 0.388427734375}, {"start": 1440.25, "end": 1440.73, "word": " inject.", "probability": 0.845703125}, {"start": 1441.19, "end": 1441.53, "word": " So", "probability": 0.65966796875}, {"start": 1441.53, "end": 1441.69, "word": " what", "probability": 0.7236328125}, {"start": 1441.69, "end": 1441.79, "word": " does", "probability": 0.853515625}, {"start": 1441.79, "end": 1441.91, "word": " it", "probability": 0.18017578125}, {"start": 1441.91, "end": 1441.91, "word": " do?", "probability": 0.951171875}, {"start": 1442.09, "end": 1442.33, "word": " It", "probability": 0.3203125}, {"start": 1442.33, "end": 1442.59, "word": " asks", "probability": 0.372802734375}, {"start": 1442.59, "end": 1442.65, "word": " again", "probability": 0.61572265625}, {"start": 1442.65, "end": 1442.91, "word": " who?", "probability": 0.5185546875}, {"start": 1443.75, "end": 1444.23, "word": " The", "probability": 0.7470703125}, {"start": 1444.23, "end": 1444.49, "word": " module.", "probability": 0.9169921875}, {"start": 1445.35, "end": 1445.83, "word": " Automatically,", "probability": 0.636474609375}, {"start": 1445.93, "end": 1446.03, "word": " if", "probability": 0.94970703125}, {"start": 1446.03, "end": 1446.27, "word": " there", "probability": 0.83349609375}, {"start": 1446.27, "end": 1446.27, "word": " is", "probability": 0.92626953125}, {"start": 1446.27, "end": 1446.31, "word": " a", "probability": 0.98828125}, {"start": 1446.31, "end": 1446.53, "word": " class", "probability": 0.9775390625}, {"start": 1446.53, "end": 1446.63, "word": " that", "probability": 0.6767578125}, {"start": 1446.63, "end": 1446.69, "word": " does", "probability": 0.269287109375}, {"start": 1446.69, "end": 1446.69, "word": " not", "probability": 0.947265625}, {"start": 1446.69, "end": 1446.91, "word": " know", "probability": 0.90087890625}, {"start": 1446.91, "end": 1447.05, "word": " how", "probability": 0.9228515625}, {"start": 1447.05, "end": 1447.05, "word": " to", "probability": 0.97412109375}, {"start": 1447.05, "end": 1447.25, "word": " create", "probability": 0.82421875}, {"start": 1447.25, "end": 1447.45, "word": " it,", "probability": 0.9189453125}, {"start": 1447.53, "end": 1447.67, "word": " it", "probability": 0.884765625}, {"start": 1447.67, "end": 1448.17, "word": " searches", "probability": 0.426513671875}, {"start": 1448.17, "end": 1448.41, "word": " for", "probability": 0.69287109375}, {"start": 1448.41, "end": 1448.53, "word": " the", "probability": 0.44384765625}, {"start": 1448.53, "end": 1448.81, "word": " tags", "probability": 0.9345703125}, {"start": 1448.81, "end": 1448.97, "word": " with", "probability": 0.2056884765625}, {"start": 1448.97, "end": 1449.01, "word": " its", "probability": 0.391357421875}, {"start": 1449.01, "end": 1449.29, "word": " name", "probability": 0.912109375}], "temperature": 1.0}, {"id": 55, "seek": 147853, "start": 1450.43, "end": 1478.53, "text": "provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the word provide? provides for himself, what is the", "tokens": [49911, 1875, 337, 796, 405, 75, 69, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 796, 405, 75, 69, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264, 1349, 2893, 30, 6417, 337, 3647, 11, 437, 307, 264], "avg_logprob": -0.17416666242811416, "compression_ratio": 16.79032258064516, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 1450.4299999999998, "end": 1451.1499999999999, "word": "provides", "probability": 0.6329345703125}, {"start": 1451.1499999999999, "end": 1451.87, "word": " for", "probability": 0.074951171875}, {"start": 1451.87, "end": 1452.15, "word": " himself,", "probability": 0.66900634765625}, {"start": 1452.19, "end": 1452.59, "word": " what", "probability": 0.4296875}, {"start": 1452.59, "end": 1452.75, "word": " is", "probability": 0.7119140625}, {"start": 1452.75, "end": 1452.79, "word": " the", "probability": 0.81494140625}, {"start": 1452.79, "end": 1452.89, "word": " word", "probability": 0.7548828125}, {"start": 1452.89, "end": 1453.47, "word": " provide?", "probability": 0.6708984375}, {"start": 1454.07, "end": 1454.71, "word": " provides", "probability": 0.0660400390625}, {"start": 1454.71, "end": 1454.93, "word": " for", "probability": 0.157470703125}, {"start": 1454.93, "end": 1458.97, "word": " himself,", "probability": 0.68756103515625}, {"start": 1458.97, "end": 1461.75, "word": " what", "probability": 0.35400390625}, {"start": 1461.75, "end": 1462.65, "word": " is", "probability": 0.93505859375}, {"start": 1462.65, "end": 1462.97, "word": " the", "probability": 0.92724609375}, {"start": 1462.97, "end": 1462.97, "word": " word", "probability": 0.93359375}, {"start": 1462.97, "end": 1462.97, "word": " provide?", "probability": 0.91650390625}, {"start": 1462.97, "end": 1462.97, "word": " provides", "probability": 0.323486328125}, {"start": 1462.97, "end": 1462.97, "word": " for", "probability": 0.82275390625}, {"start": 1462.97, "end": 1462.97, "word": " himself,", "probability": 0.69140625}, {"start": 1462.97, "end": 1462.97, "word": " what", "probability": 0.9453125}, {"start": 1462.97, "end": 1462.97, "word": " is", "probability": 0.947265625}, {"start": 1462.97, "end": 1462.97, "word": " the", "probability": 0.931640625}, {"start": 1462.97, "end": 1462.97, "word": " word", "probability": 0.93359375}, {"start": 1462.97, "end": 1462.97, "word": " provide?", "probability": 0.9228515625}, {"start": 1462.97, "end": 1462.97, "word": " provides", "probability": 0.44921875}, {"start": 1462.97, "end": 1462.97, "word": " for", "probability": 0.86328125}, {"start": 1462.97, "end": 1462.97, "word": " himself,", "probability": 0.7109375}, {"start": 1462.97, "end": 1462.97, "word": " what", "probability": 0.93310546875}, {"start": 1462.97, "end": 1462.97, "word": " is", "probability": 0.94775390625}, {"start": 1462.97, "end": 1462.97, "word": " the", "probability": 0.9306640625}, {"start": 1462.97, "end": 1462.97, "word": " word", "probability": 0.93310546875}, {"start": 1462.97, "end": 1462.97, "word": " provide?", "probability": 0.8740234375}, {"start": 1462.97, "end": 1462.97, "word": " provides", "probability": 0.51513671875}, {"start": 1462.97, "end": 1462.97, "word": " for", "probability": 0.884765625}, {"start": 1462.97, "end": 1462.97, "word": " himself,", "probability": 0.73291015625}, {"start": 1462.97, "end": 1462.97, "word": " what", "probability": 0.91357421875}, {"start": 1462.97, "end": 1462.97, "word": " is", "probability": 0.9462890625}, {"start": 1462.97, "end": 1462.97, "word": " the", "probability": 0.9296875}, {"start": 1462.97, "end": 1462.97, "word": " word", "probability": 0.931640625}, {"start": 1462.97, "end": 1462.97, "word": " provide?", "probability": 0.87841796875}, {"start": 1463.13, "end": 1463.13, "word": " provides", "probability": 0.6259765625}, {"start": 1463.13, "end": 1463.13, "word": " for", "probability": 0.90380859375}, {"start": 1463.13, "end": 1463.13, "word": " himself,", "probability": 0.7958984375}, {"start": 1463.13, "end": 1463.13, "word": " what", "probability": 0.908203125}, {"start": 1463.13, "end": 1463.13, "word": " is", "probability": 0.94775390625}, {"start": 1463.13, "end": 1463.13, "word": " the", "probability": 0.93115234375}, {"start": 1463.13, "end": 1463.13, "word": " word", "probability": 0.931640625}, {"start": 1463.13, "end": 1463.13, "word": " provide?", "probability": 0.92724609375}, {"start": 1463.13, "end": 1463.13, "word": " provides", "probability": 0.71875}, {"start": 1463.13, "end": 1463.13, "word": " for", "probability": 0.90576171875}, {"start": 1463.13, "end": 1463.13, "word": " himself,", "probability": 0.81689453125}, {"start": 1463.13, "end": 1463.13, "word": " what", "probability": 0.90576171875}, {"start": 1463.13, "end": 1463.13, "word": " is", "probability": 0.94677734375}, {"start": 1463.13, "end": 1463.13, "word": " the", "probability": 0.9296875}, {"start": 1463.13, "end": 1463.13, "word": " word", "probability": 0.9296875}, {"start": 1463.13, "end": 1463.13, "word": " provide?", "probability": 0.94970703125}, {"start": 1463.13, "end": 1463.13, "word": " provides", "probability": 0.74951171875}, {"start": 1463.13, "end": 1463.13, "word": " for", "probability": 0.904296875}, {"start": 1463.13, "end": 1463.13, "word": " himself,", "probability": 0.82275390625}, {"start": 1463.13, "end": 1463.13, "word": " what", "probability": 0.91748046875}, {"start": 1463.13, "end": 1463.13, "word": " is", "probability": 0.947265625}, {"start": 1463.13, "end": 1463.13, "word": " the", "probability": 0.9287109375}, {"start": 1463.13, "end": 1463.13, "word": " word", "probability": 0.9306640625}, {"start": 1463.13, "end": 1463.13, "word": " provide?", "probability": 0.95849609375}, {"start": 1463.13, "end": 1463.13, "word": " provides", "probability": 0.7607421875}, {"start": 1463.13, "end": 1463.13, "word": " for", "probability": 0.912109375}, {"start": 1463.13, "end": 1463.13, "word": " himself,", "probability": 0.82666015625}, {"start": 1463.13, "end": 1463.13, "word": " what", "probability": 0.93359375}, {"start": 1463.13, "end": 1463.13, "word": " is", "probability": 0.94775390625}, {"start": 1463.13, "end": 1463.13, "word": " the", "probability": 0.93017578125}, {"start": 1463.13, "end": 1463.13, "word": " word", "probability": 0.92919921875}, {"start": 1463.13, "end": 1463.13, "word": " provide?", "probability": 0.96240234375}, {"start": 1463.13, "end": 1463.13, "word": " provides", "probability": 0.78125}, {"start": 1463.13, "end": 1463.13, "word": " for", "probability": 0.92724609375}, {"start": 1463.13, "end": 1463.13, "word": " himself,", "probability": 0.8349609375}, {"start": 1463.13, "end": 1463.13, "word": " what", "probability": 0.94384765625}, {"start": 1463.13, "end": 1463.13, "word": " is", "probability": 0.9482421875}, {"start": 1463.13, "end": 1463.13, "word": " the", "probability": 0.93017578125}, {"start": 1463.13, "end": 1463.13, "word": " word", "probability": 0.927734375}, {"start": 1463.13, "end": 1463.13, "word": " provide?", "probability": 0.96240234375}, {"start": 1463.13, "end": 1463.13, "word": " provides", "probability": 0.80517578125}, {"start": 1463.13, "end": 1463.13, "word": " for", "probability": 0.93896484375}, {"start": 1463.13, "end": 1463.13, "word": " himself,", "probability": 0.83642578125}, {"start": 1463.13, "end": 1463.13, "word": " what", "probability": 0.9482421875}, {"start": 1463.13, "end": 1463.13, "word": " is", "probability": 0.94677734375}, {"start": 1463.13, "end": 1463.13, "word": " the", "probability": 0.92822265625}, {"start": 1463.13, "end": 1463.13, "word": " word", "probability": 0.92724609375}, {"start": 1463.13, "end": 1463.13, "word": " provide?", "probability": 0.96240234375}, {"start": 1463.13, "end": 1463.13, "word": " provides", "probability": 0.822265625}, {"start": 1463.13, "end": 1463.13, "word": " for", "probability": 0.94482421875}, {"start": 1463.13, "end": 1463.13, "word": " himself,", "probability": 0.83740234375}, {"start": 1463.13, "end": 1463.13, "word": " what", "probability": 0.94970703125}, {"start": 1463.13, "end": 1463.13, "word": " is", "probability": 0.94873046875}, {"start": 1463.13, "end": 1463.13, "word": " the", "probability": 0.92919921875}, {"start": 1463.13, "end": 1463.13, "word": " word", "probability": 0.927734375}, {"start": 1463.13, "end": 1463.13, "word": " provide?", "probability": 0.9619140625}, {"start": 1463.17, "end": 1463.17, "word": " provides", "probability": 0.8232421875}, {"start": 1463.17, "end": 1463.17, "word": " for", "probability": 0.9482421875}, {"start": 1463.17, "end": 1463.17, "word": " himself,", "probability": 0.83056640625}, {"start": 1463.17, "end": 1463.17, "word": " what", "probability": 0.94873046875}, {"start": 1463.17, "end": 1463.17, "word": " is", "probability": 0.947265625}, {"start": 1463.17, "end": 1463.17, "word": " the", "probability": 0.92919921875}, {"start": 1463.17, "end": 1463.17, "word": " word", "probability": 0.9287109375}, {"start": 1463.17, "end": 1463.17, "word": " provide?", "probability": 0.95947265625}, {"start": 1463.17, "end": 1463.17, "word": " provides", "probability": 0.8193359375}, {"start": 1463.17, "end": 1463.17, "word": " for", "probability": 0.94921875}, {"start": 1463.17, "end": 1463.17, "word": " himself,", "probability": 0.82421875}, {"start": 1463.17, "end": 1463.17, "word": " what", "probability": 0.9482421875}, {"start": 1463.17, "end": 1463.17, "word": " is", "probability": 0.9482421875}, {"start": 1463.17, "end": 1463.17, "word": " the", "probability": 0.92822265625}, {"start": 1463.17, "end": 1463.17, "word": " word", "probability": 0.931640625}, {"start": 1463.17, "end": 1463.17, "word": " provide?", "probability": 0.9560546875}, {"start": 1463.17, "end": 1463.17, "word": " provides", "probability": 0.80810546875}, {"start": 1463.17, "end": 1463.21, "word": " for", "probability": 0.94873046875}, {"start": 1463.21, "end": 1463.21, "word": " himself,", "probability": 0.80908203125}, {"start": 1463.21, "end": 1463.21, "word": " what", "probability": 0.94677734375}, {"start": 1463.21, "end": 1463.21, "word": " is", "probability": 0.9482421875}, {"start": 1463.21, "end": 1463.21, "word": " the", "probability": 0.92822265625}, {"start": 1463.21, "end": 1463.21, "word": " word", "probability": 0.935546875}, {"start": 1463.21, "end": 1463.21, "word": " provide?", "probability": 0.9482421875}, {"start": 1463.21, "end": 1463.27, "word": " provides", "probability": 0.79736328125}, {"start": 1463.27, "end": 1463.41, "word": " for", "probability": 0.9482421875}, {"start": 1463.41, "end": 1463.41, "word": " himself,", "probability": 0.79638671875}, {"start": 1463.41, "end": 1463.41, "word": " what", "probability": 0.9453125}, {"start": 1463.41, "end": 1463.41, "word": " is", "probability": 0.9462890625}, {"start": 1463.41, "end": 1463.41, "word": " the", "probability": 0.92822265625}, {"start": 1463.41, "end": 1463.41, "word": " word", "probability": 0.9375}, {"start": 1463.41, "end": 1463.41, "word": " provide?", "probability": 0.9375}, {"start": 1463.41, "end": 1463.41, "word": " provides", "probability": 0.79345703125}, {"start": 1463.41, "end": 1463.41, "word": " for", "probability": 0.947265625}, {"start": 1463.41, "end": 1463.41, "word": " himself,", "probability": 0.78271484375}, {"start": 1463.41, "end": 1463.41, "word": " what", "probability": 0.943359375}, {"start": 1463.41, "end": 1463.41, "word": " is", "probability": 0.94775390625}, {"start": 1463.41, "end": 1463.41, "word": " the", "probability": 0.927734375}, {"start": 1463.41, "end": 1463.41, "word": " word", "probability": 0.9404296875}, {"start": 1463.41, "end": 1463.41, "word": " provide?", "probability": 0.92041015625}, {"start": 1463.41, "end": 1463.41, "word": " provides", "probability": 0.7861328125}, {"start": 1463.41, "end": 1463.49, "word": " for", "probability": 0.9453125}, {"start": 1463.49, "end": 1463.49, "word": " himself,", "probability": 0.7705078125}, {"start": 1463.49, "end": 1463.49, "word": " what", "probability": 0.94140625}, {"start": 1463.49, "end": 1463.49, "word": " is", "probability": 0.9453125}, {"start": 1463.49, "end": 1463.49, "word": " the", "probability": 0.9296875}, {"start": 1463.49, "end": 1463.49, "word": " word", "probability": 0.94287109375}, {"start": 1463.49, "end": 1463.49, "word": " provide?", "probability": 0.90380859375}, {"start": 1463.49, "end": 1463.49, "word": " provides", "probability": 0.78857421875}, {"start": 1463.49, "end": 1463.49, "word": " for", "probability": 0.9443359375}, {"start": 1463.49, "end": 1463.49, "word": " himself,", "probability": 0.763671875}, {"start": 1463.49, "end": 1463.49, "word": " what", "probability": 0.93994140625}, {"start": 1463.49, "end": 1463.49, "word": " is", "probability": 0.94482421875}, {"start": 1463.49, "end": 1463.49, "word": " the", "probability": 0.9296875}, {"start": 1463.49, "end": 1463.49, "word": " word", "probability": 0.943359375}, {"start": 1463.49, "end": 1463.49, "word": " provide?", "probability": 0.8857421875}, {"start": 1463.49, "end": 1463.49, "word": " provides", "probability": 0.79248046875}, {"start": 1463.49, "end": 1463.49, "word": " for", "probability": 0.943359375}, {"start": 1463.49, "end": 1463.49, "word": " himself,", "probability": 0.7509765625}, {"start": 1463.49, "end": 1463.49, "word": " what", "probability": 0.93603515625}, {"start": 1463.49, "end": 1463.49, "word": " is", "probability": 0.94482421875}, {"start": 1463.49, "end": 1463.49, "word": " the", "probability": 0.927734375}, {"start": 1463.49, "end": 1463.49, "word": " word", "probability": 0.9453125}, {"start": 1463.49, "end": 1463.49, "word": " provide?", "probability": 0.8642578125}, {"start": 1463.49, "end": 1463.49, "word": " provides", "probability": 0.7958984375}, {"start": 1463.49, "end": 1465.73, "word": " for", "probability": 0.939453125}, {"start": 1465.73, "end": 1465.73, "word": " himself,", "probability": 0.75146484375}, {"start": 1466.09, "end": 1466.09, "word": " what", "probability": 0.931640625}, {"start": 1466.09, "end": 1468.21, "word": " is", "probability": 0.94384765625}, {"start": 1468.21, "end": 1469.11, "word": " the", "probability": 0.927734375}, {"start": 1469.11, "end": 1469.29, "word": " word", "probability": 0.94580078125}, {"start": 1469.29, "end": 1469.45, "word": " provide?", "probability": 0.849609375}, {"start": 1470.07, "end": 1470.07, "word": " provides", "probability": 0.794921875}, {"start": 1470.07, "end": 1475.01, "word": " for", "probability": 0.93798828125}, {"start": 1475.01, "end": 1475.01, "word": " himself,", "probability": 0.75146484375}, {"start": 1475.01, "end": 1475.75, "word": " what", "probability": 0.9228515625}, {"start": 1475.75, "end": 1478.51, "word": " is", "probability": 0.943359375}, {"start": 1478.51, "end": 1478.53, "word": " the", "probability": 0.9287109375}], "temperature": 1.0}, {"id": 56, "seek": 150588, "start": 1479.62, "end": 1505.88, "text": "It's a method to retrieve the type of object that I need from the library and it's called TaggingProvides. So let's say I don't know how to create a valve, I search for a method called TaggingProvides and it retrieves a valve. Who found it? This method found it and asked for it. Okay? Of course, this is not what we want to do. We want to go to the pulp, which is called ValveSize. Okay? Of Size.", "tokens": [3522, 311, 257, 3170, 281, 30254, 264, 2010, 295, 2657, 300, 286, 643, 490, 264, 6405, 293, 309, 311, 1219, 11204, 3249, 12681, 85, 1875, 13, 407, 718, 311, 584, 286, 500, 380, 458, 577, 281, 1884, 257, 15294, 11, 286, 3164, 337, 257, 3170, 1219, 11204, 3249, 12681, 85, 1875, 293, 309, 19817, 977, 257, 15294, 13, 2102, 1352, 309, 30, 639, 3170, 1352, 309, 293, 2351, 337, 309, 13, 1033, 30, 2720, 1164, 11, 341, 307, 406, 437, 321, 528, 281, 360, 13, 492, 528, 281, 352, 281, 264, 2362, 75, 79, 11, 597, 307, 1219, 41369, 50, 1125, 13, 1033, 30, 2720, 35818, 13], "avg_logprob": -0.5844907136978926, "compression_ratio": 1.7112068965517242, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 1479.62, "end": 1479.78, "word": "It's", "probability": 0.3141326904296875}, {"start": 1479.78, "end": 1480.04, "word": " a", "probability": 0.728515625}, {"start": 1480.04, "end": 1480.48, "word": " method", "probability": 0.90869140625}, {"start": 1480.48, "end": 1480.94, "word": " to", "probability": 0.32080078125}, {"start": 1480.94, "end": 1481.26, "word": " retrieve", "probability": 0.51611328125}, {"start": 1481.26, "end": 1481.48, "word": " the", "probability": 0.395751953125}, {"start": 1481.48, "end": 1481.56, "word": " type", "probability": 0.35400390625}, {"start": 1481.56, "end": 1481.72, "word": " of", "probability": 0.95947265625}, {"start": 1481.72, "end": 1482.02, "word": " object", "probability": 0.7060546875}, {"start": 1482.02, "end": 1482.2, "word": " that", "probability": 0.32470703125}, {"start": 1482.2, "end": 1482.34, "word": " I", "probability": 0.48388671875}, {"start": 1482.34, "end": 1482.72, "word": " need", "probability": 0.828125}, {"start": 1482.72, "end": 1482.92, "word": " from", "probability": 0.51904296875}, {"start": 1482.92, "end": 1483.06, "word": " the", "probability": 0.52685546875}, {"start": 1483.06, "end": 1483.4, "word": " library", "probability": 0.853515625}, {"start": 1483.4, "end": 1484.1, "word": " and", "probability": 0.406982421875}, {"start": 1484.1, "end": 1484.18, "word": " it's", "probability": 0.4620361328125}, {"start": 1484.18, "end": 1484.34, "word": " called", "probability": 0.270263671875}, {"start": 1484.34, "end": 1485.56, "word": " TaggingProvides.", "probability": 0.705517578125}, {"start": 1485.94, "end": 1486.12, "word": " So", "probability": 0.270751953125}, {"start": 1486.12, "end": 1486.26, "word": " let's", "probability": 0.5491943359375}, {"start": 1486.26, "end": 1486.3, "word": " say", "probability": 0.81005859375}, {"start": 1486.3, "end": 1486.64, "word": " I", "probability": 0.53125}, {"start": 1486.64, "end": 1486.72, "word": " don't", "probability": 0.7447509765625}, {"start": 1486.72, "end": 1486.94, "word": " know", "probability": 0.88134765625}, {"start": 1486.94, "end": 1487.14, "word": " how", "probability": 0.9384765625}, {"start": 1487.14, "end": 1487.14, "word": " to", "probability": 0.97119140625}, {"start": 1487.14, "end": 1487.38, "word": " create", "probability": 0.611328125}, {"start": 1487.38, "end": 1488.1, "word": " a", "probability": 0.6982421875}, {"start": 1488.1, "end": 1488.42, "word": " valve,", "probability": 0.751953125}, {"start": 1488.94, "end": 1489.36, "word": " I", "probability": 0.818359375}, {"start": 1489.36, "end": 1489.6, "word": " search", "probability": 0.427734375}, {"start": 1489.6, "end": 1489.8, "word": " for", "probability": 0.90771484375}, {"start": 1489.8, "end": 1489.88, "word": " a", "probability": 0.84765625}, {"start": 1489.88, "end": 1490.18, "word": " method", "probability": 0.91845703125}, {"start": 1490.18, "end": 1491.04, "word": " called", "probability": 0.429443359375}, {"start": 1491.04, "end": 1492.28, "word": " TaggingProvides", "probability": 0.921484375}, {"start": 1492.28, "end": 1492.98, "word": " and", "probability": 0.314697265625}, {"start": 1492.98, "end": 1493.28, "word": " it", "probability": 0.71044921875}, {"start": 1493.28, "end": 1493.52, "word": " retrieves", "probability": 0.72802734375}, {"start": 1493.52, "end": 1493.9, "word": " a", "probability": 0.7001953125}, {"start": 1493.9, "end": 1493.9, "word": " valve.", "probability": 0.9228515625}, {"start": 1494.26, "end": 1494.52, "word": " Who", "probability": 0.3232421875}, {"start": 1494.52, "end": 1494.54, "word": " found", "probability": 0.6396484375}, {"start": 1494.54, "end": 1494.82, "word": " it?", "probability": 0.79345703125}, {"start": 1495.92, "end": 1496.22, "word": " This", "probability": 0.43505859375}, {"start": 1496.22, "end": 1496.54, "word": " method", "probability": 0.9384765625}, {"start": 1496.54, "end": 1496.76, "word": " found", "probability": 0.67822265625}, {"start": 1496.76, "end": 1496.76, "word": " it", "probability": 0.90283203125}, {"start": 1496.76, "end": 1496.82, "word": " and", "probability": 0.44091796875}, {"start": 1496.82, "end": 1496.94, "word": " asked", "probability": 0.2330322265625}, {"start": 1496.94, "end": 1497.12, "word": " for", "probability": 0.6005859375}, {"start": 1497.12, "end": 1497.26, "word": " it.", "probability": 0.51611328125}, {"start": 1498.98, "end": 1499.24, "word": " Okay?", "probability": 0.2288818359375}, {"start": 1499.72, "end": 1499.96, "word": " Of", "probability": 0.5078125}, {"start": 1499.96, "end": 1499.96, "word": " course,", "probability": 0.95751953125}, {"start": 1500.04, "end": 1500.14, "word": " this", "probability": 0.1123046875}, {"start": 1500.14, "end": 1500.14, "word": " is", "probability": 0.810546875}, {"start": 1500.14, "end": 1500.2, "word": " not", "probability": 0.50048828125}, {"start": 1500.2, "end": 1500.38, "word": " what", "probability": 0.1268310546875}, {"start": 1500.38, "end": 1500.6, "word": " we", "probability": 0.90283203125}, {"start": 1500.6, "end": 1500.78, "word": " want", "probability": 0.4287109375}, {"start": 1500.78, "end": 1500.88, "word": " to", "probability": 0.95947265625}, {"start": 1500.88, "end": 1501.12, "word": " do.", "probability": 0.92724609375}, {"start": 1501.38, "end": 1501.6, "word": " We", "probability": 0.82666015625}, {"start": 1501.6, "end": 1501.72, "word": " want", "probability": 0.71875}, {"start": 1501.72, "end": 1501.8, "word": " to", "probability": 0.9677734375}, {"start": 1501.8, "end": 1501.86, "word": " go", "probability": 0.459716796875}, {"start": 1501.86, "end": 1501.98, "word": " to", "probability": 0.900390625}, {"start": 1501.98, "end": 1502.06, "word": " the", "probability": 0.78662109375}, {"start": 1502.06, "end": 1502.32, "word": " pulp,", "probability": 0.619842529296875}, {"start": 1502.58, "end": 1502.72, "word": " which", "probability": 0.27197265625}, {"start": 1502.72, "end": 1502.9, "word": " is", "probability": 0.61328125}, {"start": 1502.9, "end": 1503.12, "word": " called", "probability": 0.0745849609375}, {"start": 1503.12, "end": 1503.98, "word": " ValveSize.", "probability": 0.71484375}, {"start": 1504.64, "end": 1505.12, "word": " Okay?", "probability": 0.71142578125}, {"start": 1505.22, "end": 1505.38, "word": " Of", "probability": 0.56103515625}, {"start": 1505.38, "end": 1505.88, "word": " Size.", "probability": 0.53857421875}], "temperature": 1.0}, {"id": 57, "seek": 153237, "start": 1510.19, "end": 1532.37, "text": "this.valveSize This is just to show that it matches with the print So the idea is that whenever it gets confused and doesn't know what to create or what to do, it goes back to the module, okay? At first, it looks at the configurator to know, for example, what is the use of this configurator? If there is an interface that is in the second class, I connect it to the actual class, the concrete class", "tokens": [11176, 13, 3337, 303, 50, 1125, 639, 307, 445, 281, 855, 300, 309, 10676, 365, 264, 4482, 407, 264, 1558, 307, 300, 5699, 309, 2170, 9019, 293, 1177, 380, 458, 437, 281, 1884, 420, 437, 281, 360, 11, 309, 1709, 646, 281, 264, 10088, 11, 1392, 30, 1711, 700, 11, 309, 1542, 412, 264, 22192, 1639, 281, 458, 11, 337, 1365, 11, 437, 307, 264, 764, 295, 341, 22192, 1639, 30, 759, 456, 307, 364, 9226, 300, 307, 294, 264, 1150, 1508, 11, 286, 1745, 309, 281, 264, 3539, 1508, 11, 264, 9859, 1508], "avg_logprob": -0.6213815914957147, "compression_ratio": 1.6835443037974684, "no_speech_prob": 2.282857894897461e-05, "words": [{"start": 1510.1900000000003, "end": 1510.5500000000002, "word": "this", "probability": 0.724609375}, {"start": 1510.5500000000002, "end": 1510.91, "word": ".valveSize", "probability": 0.7388916015625}, {"start": 1510.91, "end": 1511.43, "word": " This", "probability": 0.11114501953125}, {"start": 1511.43, "end": 1511.47, "word": " is", "probability": 0.56103515625}, {"start": 1511.47, "end": 1511.57, "word": " just", "probability": 0.365234375}, {"start": 1511.57, "end": 1511.83, "word": " to", "probability": 0.5908203125}, {"start": 1511.83, "end": 1511.93, "word": " show", "probability": 0.379150390625}, {"start": 1511.93, "end": 1512.03, "word": " that", "probability": 0.400390625}, {"start": 1512.03, "end": 1512.15, "word": " it", "probability": 0.59912109375}, {"start": 1512.15, "end": 1513.37, "word": " matches", "probability": 0.48095703125}, {"start": 1513.37, "end": 1513.37, "word": " with", "probability": 0.39208984375}, {"start": 1513.37, "end": 1513.49, "word": " the", "probability": 0.63671875}, {"start": 1513.49, "end": 1513.65, "word": " print", "probability": 0.448486328125}, {"start": 1513.65, "end": 1515.87, "word": " So", "probability": 0.247802734375}, {"start": 1515.87, "end": 1516.27, "word": " the", "probability": 0.5322265625}, {"start": 1516.27, "end": 1516.51, "word": " idea", "probability": 0.78515625}, {"start": 1516.51, "end": 1516.87, "word": " is", "probability": 0.56689453125}, {"start": 1516.87, "end": 1517.07, "word": " that", "probability": 0.6806640625}, {"start": 1517.07, "end": 1517.27, "word": " whenever", "probability": 0.380615234375}, {"start": 1517.27, "end": 1517.79, "word": " it", "probability": 0.1878662109375}, {"start": 1517.79, "end": 1517.79, "word": " gets", "probability": 0.1541748046875}, {"start": 1517.79, "end": 1517.81, "word": " confused", "probability": 0.256591796875}, {"start": 1517.81, "end": 1518.19, "word": " and", "probability": 0.322998046875}, {"start": 1518.19, "end": 1518.27, "word": " doesn't", "probability": 0.718017578125}, {"start": 1518.27, "end": 1518.53, "word": " know", "probability": 0.85986328125}, {"start": 1518.53, "end": 1518.71, "word": " what", "probability": 0.73583984375}, {"start": 1518.71, "end": 1518.77, "word": " to", "probability": 0.79443359375}, {"start": 1518.77, "end": 1519.07, "word": " create", "probability": 0.360595703125}, {"start": 1519.07, "end": 1519.25, "word": " or", "probability": 0.67041015625}, {"start": 1519.25, "end": 1519.41, "word": " what", "probability": 0.5830078125}, {"start": 1519.41, "end": 1519.55, "word": " to", "probability": 0.9453125}, {"start": 1519.55, "end": 1519.83, "word": " do,", "probability": 0.89599609375}, {"start": 1520.37, "end": 1520.51, "word": " it", "probability": 0.452880859375}, {"start": 1520.51, "end": 1520.59, "word": " goes", "probability": 0.1834716796875}, {"start": 1520.59, "end": 1520.77, "word": " back", "probability": 0.818359375}, {"start": 1520.77, "end": 1521.99, "word": " to", "probability": 0.95703125}, {"start": 1521.99, "end": 1522.19, "word": " the", "probability": 0.80078125}, {"start": 1522.19, "end": 1522.53, "word": " module,", "probability": 0.85009765625}, {"start": 1522.61, "end": 1523.45, "word": " okay?", "probability": 0.289794921875}, {"start": 1524.95, "end": 1525.31, "word": " At", "probability": 0.5126953125}, {"start": 1525.31, "end": 1525.59, "word": " first,", "probability": 0.77294921875}, {"start": 1525.67, "end": 1525.75, "word": " it", "probability": 0.81787109375}, {"start": 1525.75, "end": 1525.87, "word": " looks", "probability": 0.279296875}, {"start": 1525.87, "end": 1525.95, "word": " at", "probability": 0.83984375}, {"start": 1525.95, "end": 1526.05, "word": " the", "probability": 0.90283203125}, {"start": 1526.05, "end": 1526.51, "word": " configurator", "probability": 0.44970703125}, {"start": 1526.51, "end": 1526.75, "word": " to", "probability": 0.55029296875}, {"start": 1526.75, "end": 1527.17, "word": " know,", "probability": 0.41455078125}, {"start": 1527.25, "end": 1527.47, "word": " for", "probability": 0.92431640625}, {"start": 1527.47, "end": 1527.51, "word": " example,", "probability": 0.91943359375}, {"start": 1527.61, "end": 1528.15, "word": " what", "probability": 0.69091796875}, {"start": 1528.15, "end": 1528.15, "word": " is", "probability": 0.324462890625}, {"start": 1528.15, "end": 1528.35, "word": " the", "probability": 0.65771484375}, {"start": 1528.35, "end": 1528.57, "word": " use", "probability": 0.371826171875}, {"start": 1528.57, "end": 1528.57, "word": " of", "probability": 0.96533203125}, {"start": 1528.57, "end": 1528.57, "word": " this", "probability": 0.6123046875}, {"start": 1528.57, "end": 1528.57, "word": " configurator?", "probability": 0.900146484375}, {"start": 1528.65, "end": 1528.83, "word": " If", "probability": 0.51806640625}, {"start": 1528.83, "end": 1529.03, "word": " there", "probability": 0.82080078125}, {"start": 1529.03, "end": 1529.03, "word": " is", "probability": 0.80859375}, {"start": 1529.03, "end": 1529.13, "word": " an", "probability": 0.75048828125}, {"start": 1529.13, "end": 1529.45, "word": " interface", "probability": 0.7919921875}, {"start": 1529.45, "end": 1529.57, "word": " that", "probability": 0.17138671875}, {"start": 1529.57, "end": 1529.63, "word": " is", "probability": 0.80322265625}, {"start": 1529.63, "end": 1529.73, "word": " in", "probability": 0.362548828125}, {"start": 1529.73, "end": 1529.75, "word": " the", "probability": 0.360107421875}, {"start": 1529.75, "end": 1529.89, "word": " second", "probability": 0.12353515625}, {"start": 1529.89, "end": 1530.21, "word": " class,", "probability": 0.9287109375}, {"start": 1530.27, "end": 1530.35, "word": " I", "probability": 0.611328125}, {"start": 1530.35, "end": 1530.51, "word": " connect", "probability": 0.51171875}, {"start": 1530.51, "end": 1530.71, "word": " it", "probability": 0.8359375}, {"start": 1530.71, "end": 1530.75, "word": " to", "probability": 0.7861328125}, {"start": 1530.75, "end": 1530.85, "word": " the", "probability": 0.475830078125}, {"start": 1530.85, "end": 1531.37, "word": " actual", "probability": 0.64794921875}, {"start": 1531.37, "end": 1531.53, "word": " class,", "probability": 0.95849609375}, {"start": 1531.61, "end": 1531.67, "word": " the", "probability": 0.388427734375}, {"start": 1531.67, "end": 1531.97, "word": " concrete", "probability": 0.8564453125}, {"start": 1531.97, "end": 1532.37, "word": " class", "probability": 0.96435546875}], "temperature": 1.0}, {"id": 58, "seek": 155616, "start": 1533.38, "end": 1556.16, "text": "Also, if there is a class that does not know how to generate objects from it because it does not have an injectable constructor, it searches for a method that provides so that it can generate objects from it. For example, it will find newValve5 and so on. It will return to run. I am currently sitting in the car module and here I am not using the mock module. Does it work?", "tokens": [9171, 539, 11, 498, 456, 307, 257, 1508, 300, 775, 406, 458, 577, 281, 8460, 6565, 490, 309, 570, 309, 775, 406, 362, 364, 10711, 712, 47479, 11, 309, 26701, 337, 257, 3170, 300, 6417, 370, 300, 309, 393, 8460, 6565, 490, 309, 13, 1171, 1365, 11, 309, 486, 915, 777, 53, 304, 303, 20, 293, 370, 322, 13, 467, 486, 2736, 281, 1190, 13, 286, 669, 4362, 3798, 294, 264, 1032, 10088, 293, 510, 286, 669, 406, 1228, 264, 17362, 10088, 13, 4402, 309, 589, 30], "avg_logprob": -0.6075994121757421, "compression_ratio": 1.626086956521739, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 1533.3799999999999, "end": 1533.78, "word": "Also,", "probability": 0.6380615234375}, {"start": 1533.86, "end": 1533.96, "word": " if", "probability": 0.765625}, {"start": 1533.96, "end": 1534.16, "word": " there", "probability": 0.638671875}, {"start": 1534.16, "end": 1534.16, "word": " is", "probability": 0.65087890625}, {"start": 1534.16, "end": 1534.18, "word": " a", "probability": 0.9072265625}, {"start": 1534.18, "end": 1534.38, "word": " class", "probability": 0.96240234375}, {"start": 1534.38, "end": 1534.5, "word": " that", "probability": 0.5048828125}, {"start": 1534.5, "end": 1534.58, "word": " does", "probability": 0.39208984375}, {"start": 1534.58, "end": 1534.58, "word": " not", "probability": 0.91015625}, {"start": 1534.58, "end": 1534.84, "word": " know", "probability": 0.72802734375}, {"start": 1534.84, "end": 1535.06, "word": " how", "probability": 0.90625}, {"start": 1535.06, "end": 1535.16, "word": " to", "probability": 0.93603515625}, {"start": 1535.16, "end": 1535.34, "word": " generate", "probability": 0.1429443359375}, {"start": 1535.34, "end": 1535.86, "word": " objects", "probability": 0.6201171875}, {"start": 1535.86, "end": 1535.92, "word": " from", "probability": 0.64111328125}, {"start": 1535.92, "end": 1535.92, "word": " it", "probability": 0.708984375}, {"start": 1535.92, "end": 1536.08, "word": " because", "probability": 0.1541748046875}, {"start": 1536.08, "end": 1536.74, "word": " it", "probability": 0.436279296875}, {"start": 1536.74, "end": 1536.76, "word": " does", "probability": 0.8447265625}, {"start": 1536.76, "end": 1536.76, "word": " not", "probability": 0.94140625}, {"start": 1536.76, "end": 1537.1, "word": " have", "probability": 0.9052734375}, {"start": 1537.1, "end": 1537.3, "word": " an", "probability": 0.58056640625}, {"start": 1537.3, "end": 1537.84, "word": " injectable", "probability": 0.9775390625}, {"start": 1537.84, "end": 1538.54, "word": " constructor,", "probability": 0.89501953125}, {"start": 1539.24, "end": 1539.42, "word": " it", "probability": 0.63671875}, {"start": 1539.42, "end": 1539.7, "word": " searches", "probability": 0.407958984375}, {"start": 1539.7, "end": 1539.88, "word": " for", "probability": 0.91455078125}, {"start": 1539.88, "end": 1539.96, "word": " a", "probability": 0.66259765625}, {"start": 1539.96, "end": 1540.34, "word": " method", "probability": 0.91943359375}, {"start": 1540.34, "end": 1541.44, "word": " that", "probability": 0.52197265625}, {"start": 1541.44, "end": 1541.92, "word": " provides", "probability": 0.78564453125}, {"start": 1541.92, "end": 1542.2, "word": " so", "probability": 0.1553955078125}, {"start": 1542.2, "end": 1542.64, "word": " that", "probability": 0.85986328125}, {"start": 1542.64, "end": 1542.78, "word": " it", "probability": 0.7685546875}, {"start": 1542.78, "end": 1542.92, "word": " can", "probability": 0.498291015625}, {"start": 1542.92, "end": 1543.12, "word": " generate", "probability": 0.7763671875}, {"start": 1543.12, "end": 1543.34, "word": " objects", "probability": 0.407958984375}, {"start": 1543.34, "end": 1543.36, "word": " from", "probability": 0.58251953125}, {"start": 1543.36, "end": 1543.46, "word": " it.", "probability": 0.8837890625}, {"start": 1544.4, "end": 1544.74, "word": " For", "probability": 0.32470703125}, {"start": 1544.74, "end": 1544.74, "word": " example,", "probability": 0.9267578125}, {"start": 1544.74, "end": 1544.86, "word": " it", "probability": 0.6923828125}, {"start": 1544.86, "end": 1544.96, "word": " will", "probability": 0.37451171875}, {"start": 1544.96, "end": 1545.1, "word": " find", "probability": 0.7177734375}, {"start": 1545.1, "end": 1547.02, "word": " newValve5", "probability": 0.5382568359375}, {"start": 1547.02, "end": 1547.22, "word": " and", "probability": 0.1063232421875}, {"start": 1547.22, "end": 1547.22, "word": " so", "probability": 0.481689453125}, {"start": 1547.22, "end": 1547.44, "word": " on.", "probability": 0.89990234375}, {"start": 1548.28, "end": 1548.62, "word": " It", "probability": 0.181884765625}, {"start": 1548.62, "end": 1548.74, "word": " will", "probability": 0.76123046875}, {"start": 1548.74, "end": 1548.92, "word": " return", "probability": 0.170166015625}, {"start": 1548.92, "end": 1549.14, "word": " to", "probability": 0.53564453125}, {"start": 1549.14, "end": 1549.54, "word": " run.", "probability": 0.2493896484375}, {"start": 1550.82, "end": 1551.22, "word": " I", "probability": 0.3271484375}, {"start": 1551.22, "end": 1551.44, "word": " am", "probability": 0.28369140625}, {"start": 1551.44, "end": 1551.64, "word": " currently", "probability": 0.260498046875}, {"start": 1551.64, "end": 1552.04, "word": " sitting", "probability": 0.30029296875}, {"start": 1552.04, "end": 1553.14, "word": " in", "probability": 0.890625}, {"start": 1553.14, "end": 1553.26, "word": " the", "probability": 0.73681640625}, {"start": 1553.26, "end": 1553.42, "word": " car", "probability": 0.352783203125}, {"start": 1553.42, "end": 1553.68, "word": " module", "probability": 0.88525390625}, {"start": 1553.68, "end": 1553.78, "word": " and", "probability": 0.444091796875}, {"start": 1553.78, "end": 1553.92, "word": " here", "probability": 0.2459716796875}, {"start": 1553.92, "end": 1553.98, "word": " I", "probability": 0.3359375}, {"start": 1553.98, "end": 1554.1, "word": " am", "probability": 0.5166015625}, {"start": 1554.1, "end": 1554.1, "word": " not", "probability": 0.79443359375}, {"start": 1554.1, "end": 1554.62, "word": " using", "probability": 0.93798828125}, {"start": 1554.62, "end": 1555.5, "word": " the", "probability": 0.5556640625}, {"start": 1555.5, "end": 1555.64, "word": " mock", "probability": 0.37255859375}, {"start": 1555.64, "end": 1555.9, "word": " module.", "probability": 0.91748046875}, {"start": 1555.98, "end": 1556.02, "word": " Does", "probability": 0.218505859375}, {"start": 1556.02, "end": 1556.08, "word": " it", "probability": 0.71240234375}, {"start": 1556.08, "end": 1556.16, "word": " work?", "probability": 0.84521484375}], "temperature": 1.0}, {"id": 59, "seek": 158184, "start": 1558.24, "end": 1581.84, "text": " yes it works because the module did x2 to whom? to the car module so the code will stay with it it worked it will respond to what? with cylinder with valve of size 5 so it worked what? it worked perfectly the point is if there is an external library that needs it this needs a method provides okay?", "tokens": [2086, 309, 1985, 570, 264, 1072, 84, 306, 630, 2031, 17, 281, 7101, 30, 281, 264, 1032, 10088, 370, 264, 3089, 486, 1754, 365, 309, 309, 2732, 309, 486, 4196, 281, 437, 30, 365, 17884, 365, 15294, 295, 2744, 1025, 370, 309, 2732, 437, 30, 309, 2732, 6239, 264, 935, 307, 498, 456, 307, 364, 8320, 6405, 300, 2203, 309, 341, 2203, 257, 3170, 6417, 1392, 30], "avg_logprob": -0.5785845421692904, "compression_ratio": 1.6797752808988764, "no_speech_prob": 2.6881694793701172e-05, "words": [{"start": 1558.24, "end": 1558.52, "word": " yes", "probability": 0.217041015625}, {"start": 1558.52, "end": 1558.7, "word": " it", "probability": 0.6669921875}, {"start": 1558.7, "end": 1558.82, "word": " works", "probability": 0.423828125}, {"start": 1558.82, "end": 1559.26, "word": " because", "probability": 0.583984375}, {"start": 1559.26, "end": 1559.38, "word": " the", "probability": 0.6845703125}, {"start": 1559.38, "end": 1559.84, "word": " module", "probability": 0.4190266927083333}, {"start": 1559.84, "end": 1560.0, "word": " did", "probability": 0.1427001953125}, {"start": 1560.0, "end": 1560.44, "word": " x2", "probability": 0.39410400390625}, {"start": 1560.44, "end": 1560.64, "word": " to", "probability": 0.4130859375}, {"start": 1560.64, "end": 1560.74, "word": " whom?", "probability": 0.446533203125}, {"start": 1561.26, "end": 1561.34, "word": " to", "probability": 0.82080078125}, {"start": 1561.34, "end": 1561.44, "word": " the", "probability": 0.82080078125}, {"start": 1561.44, "end": 1561.6, "word": " car", "probability": 0.69140625}, {"start": 1561.6, "end": 1561.96, "word": " module", "probability": 0.84423828125}, {"start": 1561.96, "end": 1562.74, "word": " so", "probability": 0.34326171875}, {"start": 1562.74, "end": 1563.18, "word": " the", "probability": 0.65771484375}, {"start": 1563.18, "end": 1563.42, "word": " code", "probability": 0.89599609375}, {"start": 1563.42, "end": 1563.42, "word": " will", "probability": 0.509765625}, {"start": 1563.42, "end": 1563.42, "word": " stay", "probability": 0.398193359375}, {"start": 1563.42, "end": 1563.62, "word": " with", "probability": 0.7138671875}, {"start": 1563.62, "end": 1563.76, "word": " it", "probability": 0.499267578125}, {"start": 1563.76, "end": 1564.54, "word": " it", "probability": 0.2216796875}, {"start": 1564.54, "end": 1564.76, "word": " worked", "probability": 0.3271484375}, {"start": 1564.76, "end": 1565.56, "word": " it", "probability": 0.311767578125}, {"start": 1565.56, "end": 1565.62, "word": " will", "probability": 0.5625}, {"start": 1565.62, "end": 1565.88, "word": " respond", "probability": 0.22900390625}, {"start": 1565.88, "end": 1566.0, "word": " to", "probability": 0.80712890625}, {"start": 1566.0, "end": 1566.22, "word": " what?", "probability": 0.8642578125}, {"start": 1566.32, "end": 1566.52, "word": " with", "probability": 0.78515625}, {"start": 1566.52, "end": 1566.92, "word": " cylinder", "probability": 0.82177734375}, {"start": 1566.92, "end": 1567.28, "word": " with", "probability": 0.79736328125}, {"start": 1567.28, "end": 1567.68, "word": " valve", "probability": 0.8974609375}, {"start": 1567.68, "end": 1567.92, "word": " of", "probability": 0.966796875}, {"start": 1567.92, "end": 1568.4, "word": " size", "probability": 0.8359375}, {"start": 1568.4, "end": 1569.66, "word": " 5", "probability": 0.56494140625}, {"start": 1569.66, "end": 1570.52, "word": " so", "probability": 0.521484375}, {"start": 1570.52, "end": 1570.66, "word": " it", "probability": 0.7041015625}, {"start": 1570.66, "end": 1570.86, "word": " worked", "probability": 0.802734375}, {"start": 1570.86, "end": 1571.16, "word": " what?", "probability": 0.375732421875}, {"start": 1571.72, "end": 1571.98, "word": " it", "probability": 0.88330078125}, {"start": 1571.98, "end": 1572.22, "word": " worked", "probability": 0.84375}, {"start": 1572.22, "end": 1572.56, "word": " perfectly", "probability": 0.58837890625}, {"start": 1572.56, "end": 1574.42, "word": " the", "probability": 0.3330078125}, {"start": 1574.42, "end": 1574.64, "word": " point", "probability": 0.4296875}, {"start": 1574.64, "end": 1574.74, "word": " is", "probability": 0.8583984375}, {"start": 1574.74, "end": 1574.84, "word": " if", "probability": 0.474365234375}, {"start": 1574.84, "end": 1575.04, "word": " there", "probability": 0.8701171875}, {"start": 1575.04, "end": 1575.04, "word": " is", "probability": 0.84375}, {"start": 1575.04, "end": 1575.46, "word": " an", "probability": 0.7939453125}, {"start": 1575.46, "end": 1575.64, "word": " external", "probability": 0.5166015625}, {"start": 1575.64, "end": 1575.72, "word": " library", "probability": 0.86474609375}, {"start": 1575.72, "end": 1576.04, "word": " that", "probability": 0.74951171875}, {"start": 1576.04, "end": 1576.44, "word": " needs", "probability": 0.837890625}, {"start": 1576.44, "end": 1577.32, "word": " it", "probability": 0.91552734375}, {"start": 1577.32, "end": 1578.02, "word": " this", "probability": 0.29541015625}, {"start": 1578.02, "end": 1578.26, "word": " needs", "probability": 0.359375}, {"start": 1578.26, "end": 1578.36, "word": " a", "probability": 0.62158203125}, {"start": 1578.36, "end": 1578.74, "word": " method", "probability": 0.9482421875}, {"start": 1578.74, "end": 1579.94, "word": " provides", "probability": 0.552734375}, {"start": 1579.94, "end": 1581.84, "word": " okay?", "probability": 0.4033203125}], "temperature": 1.0}, {"id": 60, "seek": 161271, "start": 1584.09, "end": 1612.71, "text": " There is another way to do it. Let's say I use 5 or 6 offices. How many methods do I have? 5 or 6 methods. So the car module increases. So if you don't want to put everything in this class, you can do something called provider class. Why do we need valve? We call it valve provider. What is the name of this provider?", "tokens": [821, 307, 1071, 636, 281, 360, 309, 13, 961, 311, 584, 286, 764, 1025, 420, 1386, 14434, 13, 1012, 867, 7150, 360, 286, 362, 30, 1025, 420, 1386, 7150, 13, 407, 264, 1032, 10088, 8637, 13, 407, 498, 291, 500, 380, 528, 281, 829, 1203, 294, 341, 1508, 11, 291, 393, 360, 746, 1219, 12398, 1508, 13, 1545, 360, 321, 643, 15294, 30, 492, 818, 309, 15294, 12398, 13, 708, 307, 264, 1315, 295, 341, 12398, 30], "avg_logprob": -0.5244391025641025, "compression_ratio": 1.5588235294117647, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1584.09, "end": 1584.31, "word": " There", "probability": 0.1771240234375}, {"start": 1584.31, "end": 1584.33, "word": " is", "probability": 0.69482421875}, {"start": 1584.33, "end": 1584.87, "word": " another", "probability": 0.85009765625}, {"start": 1584.87, "end": 1584.87, "word": " way", "probability": 0.669921875}, {"start": 1584.87, "end": 1585.73, "word": " to", "probability": 0.1478271484375}, {"start": 1585.73, "end": 1585.73, "word": " do", "probability": 0.267333984375}, {"start": 1585.73, "end": 1585.73, "word": " it.", "probability": 0.53076171875}, {"start": 1587.03, "end": 1587.75, "word": " Let's", "probability": 0.5709228515625}, {"start": 1587.75, "end": 1587.89, "word": " say", "probability": 0.78857421875}, {"start": 1587.89, "end": 1588.07, "word": " I", "probability": 0.6982421875}, {"start": 1588.07, "end": 1588.49, "word": " use", "probability": 0.36865234375}, {"start": 1588.49, "end": 1589.27, "word": " 5", "probability": 0.81591796875}, {"start": 1589.27, "end": 1589.37, "word": " or", "probability": 0.478515625}, {"start": 1589.37, "end": 1589.51, "word": " 6", "probability": 0.99560546875}, {"start": 1589.51, "end": 1589.95, "word": " offices.", "probability": 0.58837890625}, {"start": 1591.17, "end": 1591.89, "word": " How", "probability": 0.226318359375}, {"start": 1591.89, "end": 1592.01, "word": " many", "probability": 0.86865234375}, {"start": 1592.01, "end": 1592.75, "word": " methods", "probability": 0.845703125}, {"start": 1592.75, "end": 1592.81, "word": " do", "probability": 0.484619140625}, {"start": 1592.81, "end": 1592.81, "word": " I", "probability": 0.6494140625}, {"start": 1592.81, "end": 1593.13, "word": " have?", "probability": 0.7177734375}, {"start": 1593.13, "end": 1593.69, "word": " 5", "probability": 0.76171875}, {"start": 1593.69, "end": 1593.85, "word": " or", "probability": 0.90380859375}, {"start": 1593.85, "end": 1594.09, "word": " 6", "probability": 0.9970703125}, {"start": 1594.09, "end": 1594.61, "word": " methods.", "probability": 0.68115234375}, {"start": 1594.79, "end": 1594.89, "word": " So", "probability": 0.40283203125}, {"start": 1594.89, "end": 1595.27, "word": " the", "probability": 0.619140625}, {"start": 1595.27, "end": 1595.49, "word": " car", "probability": 0.68505859375}, {"start": 1595.49, "end": 1595.99, "word": " module", "probability": 0.8837890625}, {"start": 1595.99, "end": 1596.83, "word": " increases.", "probability": 0.259521484375}, {"start": 1597.47, "end": 1597.73, "word": " So", "probability": 0.457275390625}, {"start": 1597.73, "end": 1597.83, "word": " if", "probability": 0.8818359375}, {"start": 1597.83, "end": 1598.05, "word": " you", "probability": 0.92626953125}, {"start": 1598.05, "end": 1598.19, "word": " don't", "probability": 0.8876953125}, {"start": 1598.19, "end": 1598.47, "word": " want", "probability": 0.638671875}, {"start": 1598.47, "end": 1598.89, "word": " to", "probability": 0.6796875}, {"start": 1598.89, "end": 1598.89, "word": " put", "probability": 0.2462158203125}, {"start": 1598.89, "end": 1599.03, "word": " everything", "probability": 0.736328125}, {"start": 1599.03, "end": 1599.49, "word": " in", "probability": 0.81005859375}, {"start": 1599.49, "end": 1599.57, "word": " this", "probability": 0.47509765625}, {"start": 1599.57, "end": 1599.97, "word": " class,", "probability": 0.9423828125}, {"start": 1600.69, "end": 1601.19, "word": " you", "probability": 0.26318359375}, {"start": 1601.19, "end": 1602.43, "word": " can", "probability": 0.720703125}, {"start": 1602.43, "end": 1602.45, "word": " do", "probability": 0.396484375}, {"start": 1602.45, "end": 1602.91, "word": " something", "probability": 0.77587890625}, {"start": 1602.91, "end": 1603.37, "word": " called", "probability": 0.85498046875}, {"start": 1603.37, "end": 1605.39, "word": " provider", "probability": 0.492919921875}, {"start": 1605.39, "end": 1605.93, "word": " class.", "probability": 0.9541015625}, {"start": 1606.67, "end": 1607.39, "word": " Why", "probability": 0.32958984375}, {"start": 1607.39, "end": 1607.47, "word": " do", "probability": 0.7275390625}, {"start": 1607.47, "end": 1607.47, "word": " we", "probability": 0.92626953125}, {"start": 1607.47, "end": 1607.97, "word": " need", "probability": 0.5146484375}, {"start": 1607.97, "end": 1608.33, "word": " valve?", "probability": 0.310791015625}, {"start": 1608.43, "end": 1608.59, "word": " We", "probability": 0.416015625}, {"start": 1608.59, "end": 1608.83, "word": " call", "probability": 0.7353515625}, {"start": 1608.83, "end": 1608.97, "word": " it", "probability": 0.88427734375}, {"start": 1608.97, "end": 1609.27, "word": " valve", "probability": 0.470458984375}, {"start": 1609.27, "end": 1609.87, "word": " provider.", "probability": 0.90771484375}, {"start": 1611.51, "end": 1611.87, "word": " What", "probability": 0.3935546875}, {"start": 1611.87, "end": 1611.93, "word": " is", "probability": 0.54443359375}, {"start": 1611.93, "end": 1612.01, "word": " the", "probability": 0.287109375}, {"start": 1612.01, "end": 1612.01, "word": " name", "probability": 0.53564453125}, {"start": 1612.01, "end": 1612.19, "word": " of", "probability": 0.947265625}, {"start": 1612.19, "end": 1612.33, "word": " this", "probability": 0.68896484375}, {"start": 1612.33, "end": 1612.71, "word": " provider?", "probability": 0.908203125}], "temperature": 1.0}, {"id": 61, "seek": 162256, "start": 1613.96, "end": 1622.56, "text": "The supplier of the valve. He tells you to make an implementation for an interface called Provider that returns a valve.", "tokens": [2278, 31909, 295, 264, 15294, 13, 634, 5112, 291, 281, 652, 364, 11420, 337, 364, 9226, 1219, 15685, 1438, 300, 11247, 257, 15294, 13], "avg_logprob": -0.7243750190734863, "compression_ratio": 1.188118811881188, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1613.96, "end": 1614.14, "word": "The", "probability": 0.06988525390625}, {"start": 1614.14, "end": 1614.42, "word": " supplier", "probability": 0.4013671875}, {"start": 1614.42, "end": 1614.6, "word": " of", "probability": 0.763671875}, {"start": 1614.6, "end": 1614.66, "word": " the", "probability": 0.78173828125}, {"start": 1614.66, "end": 1614.88, "word": " valve.", "probability": 0.6796875}, {"start": 1615.16, "end": 1615.42, "word": " He", "probability": 0.261474609375}, {"start": 1615.42, "end": 1615.58, "word": " tells", "probability": 0.258056640625}, {"start": 1615.58, "end": 1615.74, "word": " you", "probability": 0.802734375}, {"start": 1615.74, "end": 1615.82, "word": " to", "probability": 0.87060546875}, {"start": 1615.82, "end": 1615.98, "word": " make", "probability": 0.315185546875}, {"start": 1615.98, "end": 1616.18, "word": " an", "probability": 0.29248046875}, {"start": 1616.18, "end": 1616.5, "word": " implementation", "probability": 0.385498046875}, {"start": 1616.5, "end": 1616.94, "word": " for", "probability": 0.64404296875}, {"start": 1616.94, "end": 1617.04, "word": " an", "probability": 0.572265625}, {"start": 1617.04, "end": 1617.52, "word": " interface", "probability": 0.86083984375}, {"start": 1617.52, "end": 1617.96, "word": " called", "probability": 0.65673828125}, {"start": 1617.96, "end": 1620.12, "word": " Provider", "probability": 0.621337890625}, {"start": 1620.12, "end": 1621.94, "word": " that", "probability": 0.31787109375}, {"start": 1621.94, "end": 1622.18, "word": " returns", "probability": 0.64794921875}, {"start": 1622.18, "end": 1622.56, "word": " a", "probability": 0.35302734375}, {"start": 1622.56, "end": 1622.56, "word": " valve.", "probability": 0.86083984375}], "temperature": 1.0}, {"id": 62, "seek": 165755, "start": 1629.23, "end": 1657.55, "text": " I made an implement for the interface, so it asked me to make an implement for the methods that are inside the interface and it will bring a method called what? gate return valve here I put almost the same code which is return new valve 77 for example because I made the valve provider but I didn't use it right or not guys? where should I use it? we have to go back to the car module", "tokens": [286, 1027, 364, 4445, 337, 264, 9226, 11, 370, 309, 2351, 385, 281, 652, 364, 4445, 337, 264, 7150, 300, 366, 1854, 264, 9226, 293, 309, 486, 1565, 257, 3170, 1219, 437, 30, 8539, 2736, 15294, 510, 286, 829, 1920, 264, 912, 3089, 597, 307, 2736, 777, 15294, 25546, 337, 1365, 570, 286, 1027, 264, 15294, 12398, 457, 286, 994, 380, 764, 309, 558, 420, 406, 1074, 30, 689, 820, 286, 764, 309, 30, 321, 362, 281, 352, 646, 281, 264, 1032, 10088], "avg_logprob": -0.44270831914175124, "compression_ratio": 1.711111111111111, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 1629.23, "end": 1629.45, "word": " I", "probability": 0.81103515625}, {"start": 1629.45, "end": 1629.65, "word": " made", "probability": 0.2130126953125}, {"start": 1629.65, "end": 1629.77, "word": " an", "probability": 0.724609375}, {"start": 1629.77, "end": 1630.01, "word": " implement", "probability": 0.43408203125}, {"start": 1630.01, "end": 1630.19, "word": " for", "probability": 0.7880859375}, {"start": 1630.19, "end": 1630.27, "word": " the", "probability": 0.6328125}, {"start": 1630.27, "end": 1630.69, "word": " interface,", "probability": 0.84814453125}, {"start": 1630.87, "end": 1630.91, "word": " so", "probability": 0.318603515625}, {"start": 1630.91, "end": 1630.97, "word": " it", "probability": 0.8349609375}, {"start": 1630.97, "end": 1631.09, "word": " asked", "probability": 0.63818359375}, {"start": 1631.09, "end": 1631.31, "word": " me", "probability": 0.90283203125}, {"start": 1631.31, "end": 1631.39, "word": " to", "probability": 0.9560546875}, {"start": 1631.39, "end": 1631.51, "word": " make", "probability": 0.6318359375}, {"start": 1631.51, "end": 1631.69, "word": " an", "probability": 0.77099609375}, {"start": 1631.69, "end": 1631.91, "word": " implement", "probability": 0.84521484375}, {"start": 1631.91, "end": 1632.15, "word": " for", "probability": 0.91015625}, {"start": 1632.15, "end": 1632.25, "word": " the", "probability": 0.8203125}, {"start": 1632.25, "end": 1632.65, "word": " methods", "probability": 0.86181640625}, {"start": 1632.65, "end": 1633.37, "word": " that", "probability": 0.31689453125}, {"start": 1633.37, "end": 1633.59, "word": " are", "probability": 0.476318359375}, {"start": 1633.59, "end": 1633.85, "word": " inside", "probability": 0.66357421875}, {"start": 1633.85, "end": 1634.03, "word": " the", "probability": 0.83837890625}, {"start": 1634.03, "end": 1634.63, "word": " interface", "probability": 0.8701171875}, {"start": 1634.63, "end": 1635.37, "word": " and", "probability": 0.3271484375}, {"start": 1635.37, "end": 1635.53, "word": " it", "probability": 0.7568359375}, {"start": 1635.53, "end": 1635.53, "word": " will", "probability": 0.4677734375}, {"start": 1635.53, "end": 1635.73, "word": " bring", "probability": 0.6435546875}, {"start": 1635.73, "end": 1635.85, "word": " a", "probability": 0.57568359375}, {"start": 1635.85, "end": 1636.13, "word": " method", "probability": 0.9560546875}, {"start": 1636.13, "end": 1636.43, "word": " called", "probability": 0.48828125}, {"start": 1636.43, "end": 1636.79, "word": " what?", "probability": 0.37890625}, {"start": 1637.51, "end": 1637.85, "word": " gate", "probability": 0.3349609375}, {"start": 1637.85, "end": 1638.55, "word": " return", "probability": 0.1851806640625}, {"start": 1638.55, "end": 1639.89, "word": " valve", "probability": 0.11572265625}, {"start": 1639.89, "end": 1640.55, "word": " here", "probability": 0.418701171875}, {"start": 1640.55, "end": 1640.73, "word": " I", "probability": 0.802734375}, {"start": 1640.73, "end": 1640.91, "word": " put", "probability": 0.470458984375}, {"start": 1640.91, "end": 1641.05, "word": " almost", "probability": 0.35595703125}, {"start": 1641.05, "end": 1641.07, "word": " the", "probability": 0.91748046875}, {"start": 1641.07, "end": 1641.21, "word": " same", "probability": 0.9033203125}, {"start": 1641.21, "end": 1641.59, "word": " code", "probability": 0.94287109375}, {"start": 1641.59, "end": 1642.33, "word": " which", "probability": 0.53466796875}, {"start": 1642.33, "end": 1642.63, "word": " is", "probability": 0.927734375}, {"start": 1642.63, "end": 1643.25, "word": " return", "probability": 0.81689453125}, {"start": 1643.25, "end": 1645.07, "word": " new", "probability": 0.8427734375}, {"start": 1645.07, "end": 1646.07, "word": " valve", "probability": 0.7958984375}, {"start": 1646.07, "end": 1647.41, "word": " 77", "probability": 0.415283203125}, {"start": 1647.41, "end": 1648.05, "word": " for", "probability": 0.51806640625}, {"start": 1648.05, "end": 1648.41, "word": " example", "probability": 0.96484375}, {"start": 1648.41, "end": 1651.21, "word": " because", "probability": 0.81494140625}, {"start": 1651.21, "end": 1651.41, "word": " I", "probability": 0.95458984375}, {"start": 1651.41, "end": 1651.63, "word": " made", "probability": 0.75390625}, {"start": 1651.63, "end": 1651.79, "word": " the", "probability": 0.7958984375}, {"start": 1651.79, "end": 1651.97, "word": " valve", "probability": 0.68212890625}, {"start": 1651.97, "end": 1652.51, "word": " provider", "probability": 0.54345703125}, {"start": 1652.51, "end": 1652.73, "word": " but", "probability": 0.6416015625}, {"start": 1652.73, "end": 1652.83, "word": " I", "probability": 0.63720703125}, {"start": 1652.83, "end": 1652.87, "word": " didn't", "probability": 0.713623046875}, {"start": 1652.87, "end": 1653.17, "word": " use", "probability": 0.86962890625}, {"start": 1653.17, "end": 1653.73, "word": " it", "probability": 0.87939453125}, {"start": 1653.73, "end": 1654.13, "word": " right", "probability": 0.2783203125}, {"start": 1654.13, "end": 1654.27, "word": " or", "probability": 0.61962890625}, {"start": 1654.27, "end": 1654.35, "word": " not", "probability": 0.67626953125}, {"start": 1654.35, "end": 1654.61, "word": " guys?", "probability": 0.7314453125}, {"start": 1655.19, "end": 1655.35, "word": " where", "probability": 0.6181640625}, {"start": 1655.35, "end": 1655.51, "word": " should", "probability": 0.365234375}, {"start": 1655.51, "end": 1655.57, "word": " I", "probability": 0.90234375}, {"start": 1655.57, "end": 1655.87, "word": " use", "probability": 0.88525390625}, {"start": 1655.87, "end": 1656.09, "word": " it?", "probability": 0.90966796875}, {"start": 1656.49, "end": 1656.63, "word": " we", "probability": 0.55859375}, {"start": 1656.63, "end": 1656.71, "word": " have", "probability": 0.3681640625}, {"start": 1656.71, "end": 1656.77, "word": " to", "probability": 0.97021484375}, {"start": 1656.77, "end": 1656.85, "word": " go", "probability": 0.673828125}, {"start": 1656.85, "end": 1656.91, "word": " back", "probability": 0.8515625}, {"start": 1656.91, "end": 1657.01, "word": " to", "probability": 0.96728515625}, {"start": 1657.01, "end": 1657.11, "word": " the", "probability": 0.84716796875}, {"start": 1657.11, "end": 1657.25, "word": " car", "probability": 0.7861328125}, {"start": 1657.25, "end": 1657.55, "word": " module", "probability": 0.890625}], "temperature": 1.0}, {"id": 63, "seek": 168686, "start": 1658.6, "end": 1686.86, "text": " As long as I created a provider, this code doesn't belong to it. But instead, I will go to the configurator and bind it. If you need valve.class, connect it to it or go to the provider, which is called ValveProvider", "tokens": [1018, 938, 382, 286, 2942, 257, 12398, 11, 341, 3089, 1177, 380, 5784, 281, 309, 13, 583, 2602, 11, 286, 486, 352, 281, 264, 22192, 1639, 293, 14786, 309, 13, 759, 291, 643, 15294, 13, 11665, 11, 1745, 309, 281, 309, 420, 352, 281, 264, 12398, 11, 597, 307, 1219, 41369, 12681, 85, 1438], "avg_logprob": -0.6613636298613115, "compression_ratio": 1.4496644295302012, "no_speech_prob": 9.059906005859375e-06, "words": [{"start": 1658.6, "end": 1659.36, "word": " As", "probability": 0.0625}, {"start": 1659.36, "end": 1659.82, "word": " long", "probability": 0.6845703125}, {"start": 1659.82, "end": 1659.84, "word": " as", "probability": 0.95654296875}, {"start": 1659.84, "end": 1660.0, "word": " I", "probability": 0.748046875}, {"start": 1660.0, "end": 1660.24, "word": " created", "probability": 0.2391357421875}, {"start": 1660.24, "end": 1660.4, "word": " a", "probability": 0.58984375}, {"start": 1660.4, "end": 1660.88, "word": " provider,", "probability": 0.740234375}, {"start": 1661.36, "end": 1661.54, "word": " this", "probability": 0.52197265625}, {"start": 1661.54, "end": 1661.88, "word": " code", "probability": 0.6484375}, {"start": 1661.88, "end": 1662.1, "word": " doesn't", "probability": 0.5821533203125}, {"start": 1662.1, "end": 1662.1, "word": " belong", "probability": 0.189208984375}, {"start": 1662.1, "end": 1663.72, "word": " to", "probability": 0.91064453125}, {"start": 1663.72, "end": 1663.72, "word": " it.", "probability": 0.60400390625}, {"start": 1664.48, "end": 1665.24, "word": " But", "probability": 0.367431640625}, {"start": 1665.24, "end": 1665.74, "word": " instead,", "probability": 0.546875}, {"start": 1666.18, "end": 1666.38, "word": " I", "probability": 0.912109375}, {"start": 1666.38, "end": 1666.5, "word": " will", "probability": 0.152099609375}, {"start": 1666.5, "end": 1666.66, "word": " go", "probability": 0.74169921875}, {"start": 1666.66, "end": 1666.78, "word": " to", "probability": 0.92529296875}, {"start": 1666.78, "end": 1666.88, "word": " the", "probability": 0.59814453125}, {"start": 1666.88, "end": 1667.42, "word": " configurator", "probability": 0.5665283203125}, {"start": 1667.42, "end": 1667.84, "word": " and", "probability": 0.76513671875}, {"start": 1667.84, "end": 1669.82, "word": " bind", "probability": 0.69482421875}, {"start": 1669.82, "end": 1671.04, "word": " it.", "probability": 0.5908203125}, {"start": 1671.28, "end": 1672.04, "word": " If", "probability": 0.64501953125}, {"start": 1672.04, "end": 1675.94, "word": " you", "probability": 0.51904296875}, {"start": 1675.94, "end": 1676.28, "word": " need", "probability": 0.61328125}, {"start": 1676.28, "end": 1676.72, "word": " valve", "probability": 0.426025390625}, {"start": 1676.72, "end": 1677.48, "word": ".class,", "probability": 0.874267578125}, {"start": 1678.52, "end": 1679.02, "word": " connect", "probability": 0.25634765625}, {"start": 1679.02, "end": 1679.36, "word": " it", "probability": 0.640625}, {"start": 1679.36, "end": 1679.66, "word": " to", "probability": 0.60986328125}, {"start": 1679.66, "end": 1679.66, "word": " it", "probability": 0.400634765625}, {"start": 1679.66, "end": 1679.94, "word": " or", "probability": 0.5859375}, {"start": 1679.94, "end": 1680.12, "word": " go", "probability": 0.427490234375}, {"start": 1680.12, "end": 1680.16, "word": " to", "probability": 0.6591796875}, {"start": 1680.16, "end": 1681.46, "word": " the", "probability": 0.253662109375}, {"start": 1681.46, "end": 1681.98, "word": " provider,", "probability": 0.77294921875}, {"start": 1682.5, "end": 1682.7, "word": " which", "probability": 0.369140625}, {"start": 1682.7, "end": 1682.96, "word": " is", "probability": 0.7841796875}, {"start": 1682.96, "end": 1683.22, "word": " called", "probability": 0.71533203125}, {"start": 1683.22, "end": 1686.86, "word": " ValveProvider", "probability": 0.72265625}], "temperature": 1.0}, {"id": 64, "seek": 170431, "start": 1690.77, "end": 1704.31, "text": "So if you find a valve, go and use the valve provider. And the valve provider will find a method that returns the valve. Someone will say, what is it? No, the difference is that we took the code out.", "tokens": [6455, 498, 291, 915, 257, 15294, 11, 352, 293, 764, 264, 15294, 12398, 13, 400, 264, 15294, 12398, 486, 915, 257, 3170, 300, 11247, 264, 15294, 13, 8734, 486, 584, 11, 437, 307, 309, 30, 883, 11, 264, 2649, 307, 300, 321, 1890, 264, 3089, 484, 13], "avg_logprob": -0.666015607615312, "compression_ratio": 1.5075757575757576, "no_speech_prob": 0.00017547607421875, "words": [{"start": 1690.7699999999998, "end": 1691.1499999999999, "word": "So", "probability": 0.0262298583984375}, {"start": 1691.1499999999999, "end": 1691.53, "word": " if", "probability": 0.7587890625}, {"start": 1691.53, "end": 1691.85, "word": " you", "probability": 0.5546875}, {"start": 1691.85, "end": 1691.85, "word": " find", "probability": 0.58642578125}, {"start": 1691.85, "end": 1691.99, "word": " a", "probability": 0.60986328125}, {"start": 1691.99, "end": 1692.15, "word": " valve,", "probability": 0.705078125}, {"start": 1692.27, "end": 1692.35, "word": " go", "probability": 0.404052734375}, {"start": 1692.35, "end": 1692.49, "word": " and", "probability": 0.45166015625}, {"start": 1692.49, "end": 1692.75, "word": " use", "probability": 0.7890625}, {"start": 1692.75, "end": 1692.93, "word": " the", "probability": 0.6748046875}, {"start": 1692.93, "end": 1693.27, "word": " valve", "probability": 0.42626953125}, {"start": 1693.27, "end": 1694.19, "word": " provider.", "probability": 0.73486328125}, {"start": 1694.61, "end": 1694.71, "word": " And", "probability": 0.54052734375}, {"start": 1694.71, "end": 1694.83, "word": " the", "probability": 0.6923828125}, {"start": 1694.83, "end": 1695.03, "word": " valve", "probability": 0.54150390625}, {"start": 1695.03, "end": 1695.73, "word": " provider", "probability": 0.9306640625}, {"start": 1695.73, "end": 1697.93, "word": " will", "probability": 0.7294921875}, {"start": 1697.93, "end": 1698.13, "word": " find", "probability": 0.70458984375}, {"start": 1698.13, "end": 1698.27, "word": " a", "probability": 0.308837890625}, {"start": 1698.27, "end": 1698.51, "word": " method", "probability": 0.90966796875}, {"start": 1698.51, "end": 1698.81, "word": " that", "probability": 0.447021484375}, {"start": 1698.81, "end": 1699.15, "word": " returns", "probability": 0.37158203125}, {"start": 1699.15, "end": 1700.31, "word": " the", "probability": 0.6083984375}, {"start": 1700.31, "end": 1700.47, "word": " valve.", "probability": 0.84912109375}, {"start": 1700.87, "end": 1701.25, "word": " Someone", "probability": 0.2335205078125}, {"start": 1701.25, "end": 1701.35, "word": " will", "probability": 0.28857421875}, {"start": 1701.35, "end": 1701.47, "word": " say,", "probability": 0.447021484375}, {"start": 1701.57, "end": 1701.71, "word": " what", "probability": 0.1768798828125}, {"start": 1701.71, "end": 1701.83, "word": " is", "probability": 0.7685546875}, {"start": 1701.83, "end": 1702.07, "word": " it?", "probability": 0.5888671875}, {"start": 1702.31, "end": 1702.57, "word": " No,", "probability": 0.30908203125}, {"start": 1702.65, "end": 1702.77, "word": " the", "probability": 0.82177734375}, {"start": 1702.77, "end": 1702.95, "word": " difference", "probability": 0.369873046875}, {"start": 1702.95, "end": 1703.09, "word": " is", "probability": 0.88818359375}, {"start": 1703.09, "end": 1703.17, "word": " that", "probability": 0.59228515625}, {"start": 1703.17, "end": 1703.39, "word": " we", "probability": 0.468505859375}, {"start": 1703.39, "end": 1703.43, "word": " took", "probability": 0.34716796875}, {"start": 1703.43, "end": 1703.51, "word": " the", "probability": 0.72607421875}, {"start": 1703.51, "end": 1703.69, "word": " code", "probability": 0.95556640625}, {"start": 1703.69, "end": 1704.31, "word": " out.", "probability": 0.517578125}], "temperature": 1.0}, {"id": 65, "seek": 173429, "start": 1705.17, "end": 1734.29, "text": " in an external class and we can extend it this way it becomes better as extendable it's true that I created a new class but you can still extend it or it's also the idea that I don't put everything inside the car module so if I have an external library to create objects from it I have two solutions of course it won't be able to create objects from it because it doesn't have injectable constructor", "tokens": [294, 364, 8320, 1508, 293, 321, 393, 10101, 309, 341, 636, 309, 3643, 1101, 382, 10101, 712, 309, 311, 2074, 300, 286, 2942, 257, 777, 1508, 457, 291, 393, 920, 10101, 309, 420, 309, 311, 611, 264, 1558, 300, 286, 500, 380, 829, 1203, 1854, 264, 1032, 10088, 370, 498, 286, 362, 364, 8320, 6405, 281, 1884, 6565, 490, 309, 286, 362, 732, 6547, 295, 1164, 309, 1582, 380, 312, 1075, 281, 1884, 6565, 490, 309, 570, 309, 1177, 380, 362, 10711, 712, 47479], "avg_logprob": -0.4639705854303697, "compression_ratio": 1.8518518518518519, "no_speech_prob": 0.0001920461654663086, "words": [{"start": 1705.17, "end": 1705.37, "word": " in", "probability": 0.2186279296875}, {"start": 1705.37, "end": 1705.71, "word": " an", "probability": 0.5146484375}, {"start": 1705.71, "end": 1706.71, "word": " external", "probability": 0.5791015625}, {"start": 1706.71, "end": 1706.73, "word": " class", "probability": 0.931640625}, {"start": 1706.73, "end": 1707.85, "word": " and", "probability": 0.28076171875}, {"start": 1707.85, "end": 1708.07, "word": " we", "probability": 0.267822265625}, {"start": 1708.07, "end": 1708.27, "word": " can", "probability": 0.8310546875}, {"start": 1708.27, "end": 1708.83, "word": " extend", "probability": 0.5283203125}, {"start": 1708.83, "end": 1709.13, "word": " it", "probability": 0.427490234375}, {"start": 1709.13, "end": 1710.85, "word": " this", "probability": 0.171142578125}, {"start": 1710.85, "end": 1711.03, "word": " way", "probability": 0.74169921875}, {"start": 1711.03, "end": 1712.55, "word": " it", "probability": 0.485107421875}, {"start": 1712.55, "end": 1712.87, "word": " becomes", "probability": 0.2890625}, {"start": 1712.87, "end": 1713.21, "word": " better", "probability": 0.7412109375}, {"start": 1713.21, "end": 1714.29, "word": " as", "probability": 0.482421875}, {"start": 1714.29, "end": 1714.93, "word": " extendable", "probability": 0.81787109375}, {"start": 1714.93, "end": 1715.05, "word": " it's", "probability": 0.31787109375}, {"start": 1715.05, "end": 1715.15, "word": " true", "probability": 0.8037109375}, {"start": 1715.15, "end": 1715.23, "word": " that", "probability": 0.5595703125}, {"start": 1715.23, "end": 1715.25, "word": " I", "probability": 0.78076171875}, {"start": 1715.25, "end": 1715.39, "word": " created", "probability": 0.397216796875}, {"start": 1715.39, "end": 1715.53, "word": " a", "probability": 0.955078125}, {"start": 1715.53, "end": 1716.03, "word": " new", "probability": 0.9033203125}, {"start": 1716.03, "end": 1716.03, "word": " class", "probability": 0.9580078125}, {"start": 1716.03, "end": 1717.55, "word": " but", "probability": 0.56982421875}, {"start": 1717.55, "end": 1719.09, "word": " you", "probability": 0.452392578125}, {"start": 1719.09, "end": 1719.89, "word": " can", "probability": 0.84033203125}, {"start": 1719.89, "end": 1720.03, "word": " still", "probability": 0.38134765625}, {"start": 1720.03, "end": 1720.57, "word": " extend", "probability": 0.92626953125}, {"start": 1720.57, "end": 1720.93, "word": " it", "probability": 0.9091796875}, {"start": 1720.93, "end": 1721.83, "word": " or", "probability": 0.44921875}, {"start": 1721.83, "end": 1722.05, "word": " it's", "probability": 0.4515380859375}, {"start": 1722.05, "end": 1722.15, "word": " also", "probability": 0.36279296875}, {"start": 1722.15, "end": 1722.17, "word": " the", "probability": 0.6875}, {"start": 1722.17, "end": 1722.37, "word": " idea", "probability": 0.7783203125}, {"start": 1722.37, "end": 1722.89, "word": " that", "probability": 0.8525390625}, {"start": 1722.89, "end": 1723.09, "word": " I", "probability": 0.91650390625}, {"start": 1723.09, "end": 1723.17, "word": " don't", "probability": 0.6983642578125}, {"start": 1723.17, "end": 1723.39, "word": " put", "probability": 0.6044921875}, {"start": 1723.39, "end": 1723.93, "word": " everything", "probability": 0.86083984375}, {"start": 1723.93, "end": 1724.97, "word": " inside", "probability": 0.474365234375}, {"start": 1724.97, "end": 1725.15, "word": " the", "probability": 0.76708984375}, {"start": 1725.15, "end": 1725.29, "word": " car", "probability": 0.5068359375}, {"start": 1725.29, "end": 1725.81, "word": " module", "probability": 0.916015625}, {"start": 1725.81, "end": 1726.27, "word": " so", "probability": 0.25146484375}, {"start": 1726.27, "end": 1726.91, "word": " if", "probability": 0.83349609375}, {"start": 1726.91, "end": 1727.11, "word": " I", "probability": 0.98486328125}, {"start": 1727.11, "end": 1727.33, "word": " have", "probability": 0.85791015625}, {"start": 1727.33, "end": 1727.75, "word": " an", "probability": 0.90625}, {"start": 1727.75, "end": 1728.11, "word": " external", "probability": 0.7939453125}, {"start": 1728.11, "end": 1728.11, "word": " library", "probability": 0.72705078125}, {"start": 1728.11, "end": 1728.83, "word": " to", "probability": 0.61376953125}, {"start": 1728.83, "end": 1729.11, "word": " create", "probability": 0.7080078125}, {"start": 1729.11, "end": 1729.53, "word": " objects", "probability": 0.474853515625}, {"start": 1729.53, "end": 1729.65, "word": " from", "probability": 0.65283203125}, {"start": 1729.65, "end": 1729.77, "word": " it", "probability": 0.55517578125}, {"start": 1729.77, "end": 1729.77, "word": " I", "probability": 0.59814453125}, {"start": 1729.77, "end": 1729.87, "word": " have", "probability": 0.79248046875}, {"start": 1729.87, "end": 1730.23, "word": " two", "probability": 0.794921875}, {"start": 1730.23, "end": 1730.23, "word": " solutions", "probability": 0.6591796875}, {"start": 1730.23, "end": 1731.17, "word": " of", "probability": 0.36279296875}, {"start": 1731.17, "end": 1731.17, "word": " course", "probability": 0.962890625}, {"start": 1731.17, "end": 1731.37, "word": " it", "probability": 0.6015625}, {"start": 1731.37, "end": 1731.61, "word": " won't", "probability": 0.6844482421875}, {"start": 1731.61, "end": 1731.85, "word": " be", "probability": 0.841796875}, {"start": 1731.85, "end": 1731.89, "word": " able", "probability": 0.95654296875}, {"start": 1731.89, "end": 1731.99, "word": " to", "probability": 0.9697265625}, {"start": 1731.99, "end": 1732.15, "word": " create", "probability": 0.80615234375}, {"start": 1732.15, "end": 1732.59, "word": " objects", "probability": 0.8408203125}, {"start": 1732.59, "end": 1732.59, "word": " from", "probability": 0.80126953125}, {"start": 1732.59, "end": 1732.63, "word": " it", "probability": 0.88720703125}, {"start": 1732.63, "end": 1732.87, "word": " because", "probability": 0.86181640625}, {"start": 1732.87, "end": 1732.99, "word": " it", "probability": 0.49267578125}, {"start": 1732.99, "end": 1733.03, "word": " doesn't", "probability": 0.89208984375}, {"start": 1733.03, "end": 1733.25, "word": " have", "probability": 0.92041015625}, {"start": 1733.25, "end": 1733.75, "word": " injectable", "probability": 0.77294921875}, {"start": 1733.75, "end": 1734.29, "word": " constructor", "probability": 0.923828125}], "temperature": 1.0}, {"id": 66, "seek": 176244, "start": 1735.02, "end": 1762.44, "text": " Okay? But I have to remove the object as a program How? There are two ways One of the two ways The first way is to make method provides inside the module And let it return the object it wants The second way is to make a provider class outside ImplementsProvider And let it have a method that it makes by itself Implement get returns Valve How do I know the type is Valve? Because I wrote here", "tokens": [1033, 30, 583, 286, 362, 281, 4159, 264, 2657, 382, 257, 1461, 1012, 30, 821, 366, 732, 2098, 1485, 295, 264, 732, 2098, 440, 700, 636, 307, 281, 652, 3170, 6417, 1854, 264, 10088, 400, 718, 309, 2736, 264, 2657, 309, 2738, 440, 1150, 636, 307, 281, 652, 257, 12398, 1508, 2380, 4331, 781, 1117, 12681, 85, 1438, 400, 718, 309, 362, 257, 3170, 300, 309, 1669, 538, 2564, 4331, 43704, 483, 11247, 41369, 1012, 360, 286, 458, 264, 2010, 307, 41369, 30, 1436, 286, 4114, 510], "avg_logprob": -0.5085227299820293, "compression_ratio": 1.7782805429864252, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 1735.02, "end": 1735.28, "word": " Okay?", "probability": 0.096923828125}, {"start": 1736.38, "end": 1736.88, "word": " But", "probability": 0.68310546875}, {"start": 1736.88, "end": 1738.36, "word": " I", "probability": 0.677734375}, {"start": 1738.36, "end": 1738.58, "word": " have", "probability": 0.419921875}, {"start": 1738.58, "end": 1738.66, "word": " to", "probability": 0.97021484375}, {"start": 1738.66, "end": 1738.9, "word": " remove", "probability": 0.1856689453125}, {"start": 1738.9, "end": 1739.02, "word": " the", "probability": 0.69775390625}, {"start": 1739.02, "end": 1739.34, "word": " object", "probability": 0.95458984375}, {"start": 1739.34, "end": 1740.14, "word": " as", "probability": 0.185546875}, {"start": 1740.14, "end": 1740.2, "word": " a", "probability": 0.61962890625}, {"start": 1740.2, "end": 1740.42, "word": " program", "probability": 0.298828125}, {"start": 1740.42, "end": 1740.94, "word": " How?", "probability": 0.59716796875}, {"start": 1740.96, "end": 1741.34, "word": " There", "probability": 0.22802734375}, {"start": 1741.34, "end": 1741.34, "word": " are", "probability": 0.83984375}, {"start": 1741.34, "end": 1741.8, "word": " two", "probability": 0.84375}, {"start": 1741.8, "end": 1741.8, "word": " ways", "probability": 0.84716796875}, {"start": 1741.8, "end": 1743.64, "word": " One", "probability": 0.482666015625}, {"start": 1743.64, "end": 1743.86, "word": " of", "probability": 0.81689453125}, {"start": 1743.86, "end": 1743.94, "word": " the", "probability": 0.58984375}, {"start": 1743.94, "end": 1744.2, "word": " two", "probability": 0.62353515625}, {"start": 1744.2, "end": 1744.2, "word": " ways", "probability": 0.77392578125}, {"start": 1744.2, "end": 1744.34, "word": " The", "probability": 0.454833984375}, {"start": 1744.34, "end": 1744.8, "word": " first", "probability": 0.87646484375}, {"start": 1744.8, "end": 1744.8, "word": " way", "probability": 0.6767578125}, {"start": 1744.8, "end": 1745.0, "word": " is", "probability": 0.87255859375}, {"start": 1745.0, "end": 1745.04, "word": " to", "probability": 0.853515625}, {"start": 1745.04, "end": 1745.2, "word": " make", "probability": 0.390869140625}, {"start": 1745.2, "end": 1745.52, "word": " method", "probability": 0.4990234375}, {"start": 1745.52, "end": 1746.04, "word": " provides", "probability": 0.59521484375}, {"start": 1746.04, "end": 1746.46, "word": " inside", "probability": 0.81201171875}, {"start": 1746.46, "end": 1746.64, "word": " the", "probability": 0.82568359375}, {"start": 1746.64, "end": 1746.98, "word": " module", "probability": 0.951171875}, {"start": 1746.98, "end": 1747.92, "word": " And", "probability": 0.5927734375}, {"start": 1747.92, "end": 1748.08, "word": " let", "probability": 0.4287109375}, {"start": 1748.08, "end": 1748.26, "word": " it", "probability": 0.85986328125}, {"start": 1748.26, "end": 1748.48, "word": " return", "probability": 0.57958984375}, {"start": 1748.48, "end": 1748.64, "word": " the", "probability": 0.78662109375}, {"start": 1748.64, "end": 1748.9, "word": " object", "probability": 0.95703125}, {"start": 1748.9, "end": 1749.12, "word": " it", "probability": 0.418701171875}, {"start": 1749.12, "end": 1749.4, "word": " wants", "probability": 0.69287109375}, {"start": 1749.4, "end": 1750.26, "word": " The", "probability": 0.78857421875}, {"start": 1750.26, "end": 1750.86, "word": " second", "probability": 0.802734375}, {"start": 1750.86, "end": 1750.86, "word": " way", "probability": 0.9091796875}, {"start": 1750.86, "end": 1751.14, "word": " is", "probability": 0.88623046875}, {"start": 1751.14, "end": 1751.22, "word": " to", "probability": 0.943359375}, {"start": 1751.22, "end": 1751.58, "word": " make", "probability": 0.83935546875}, {"start": 1751.58, "end": 1752.6, "word": " a", "probability": 0.484619140625}, {"start": 1752.6, "end": 1753.04, "word": " provider", "probability": 0.7919921875}, {"start": 1753.04, "end": 1753.5, "word": " class", "probability": 0.96484375}, {"start": 1753.5, "end": 1753.76, "word": " outside", "probability": 0.62646484375}, {"start": 1753.76, "end": 1755.08, "word": " ImplementsProvider", "probability": 0.7283528645833334}, {"start": 1755.08, "end": 1755.82, "word": " And", "probability": 0.6953125}, {"start": 1755.82, "end": 1756.02, "word": " let", "probability": 0.262451171875}, {"start": 1756.02, "end": 1756.14, "word": " it", "probability": 0.84228515625}, {"start": 1756.14, "end": 1756.5, "word": " have", "probability": 0.486328125}, {"start": 1756.5, "end": 1756.66, "word": " a", "probability": 0.5771484375}, {"start": 1756.66, "end": 1756.98, "word": " method", "probability": 0.94189453125}, {"start": 1756.98, "end": 1757.12, "word": " that", "probability": 0.2247314453125}, {"start": 1757.12, "end": 1757.36, "word": " it", "probability": 0.340087890625}, {"start": 1757.36, "end": 1757.6, "word": " makes", "probability": 0.1920166015625}, {"start": 1757.6, "end": 1757.6, "word": " by", "probability": 0.376953125}, {"start": 1757.6, "end": 1757.78, "word": " itself", "probability": 0.7802734375}, {"start": 1757.78, "end": 1758.4, "word": " Implement", "probability": 0.5596923828125}, {"start": 1758.4, "end": 1758.68, "word": " get", "probability": 0.421630859375}, {"start": 1758.68, "end": 1759.1, "word": " returns", "probability": 0.68603515625}, {"start": 1759.1, "end": 1760.34, "word": " Valve", "probability": 0.391357421875}, {"start": 1760.34, "end": 1760.52, "word": " How", "probability": 0.85107421875}, {"start": 1760.52, "end": 1760.64, "word": " do", "probability": 0.452392578125}, {"start": 1760.64, "end": 1760.64, "word": " I", "probability": 0.951171875}, {"start": 1760.64, "end": 1760.82, "word": " know", "probability": 0.87890625}, {"start": 1760.82, "end": 1761.18, "word": " the", "probability": 0.184326171875}, {"start": 1761.18, "end": 1761.38, "word": " type", "probability": 0.9052734375}, {"start": 1761.38, "end": 1761.4, "word": " is", "probability": 0.62109375}, {"start": 1761.4, "end": 1761.62, "word": " Valve?", "probability": 0.8310546875}, {"start": 1761.64, "end": 1761.78, "word": " Because", "probability": 0.8212890625}, {"start": 1761.78, "end": 1761.88, "word": " I", "probability": 0.88037109375}, {"start": 1761.88, "end": 1762.12, "word": " wrote", "probability": 0.880859375}, {"start": 1762.12, "end": 1762.44, "word": " here", "probability": 0.72314453125}], "temperature": 1.0}, {"id": 67, "seek": 179072, "start": 1763.64, "end": 1790.72, "text": "Valve. And I choose the object that I want. Of course, here, in the end, the provider will be used by the module. The module is the basis. Am I right, guys? The module is the basis. It is what determines what connects it to what. So I said, if I find Valve, I connect it to this provider. And the code remains running. Let's go back to ... Yes, but I also did it on the Mac.", "tokens": [53, 304, 303, 13, 400, 286, 2826, 264, 2657, 300, 286, 528, 13, 2720, 1164, 11, 510, 11, 294, 264, 917, 11, 264, 12398, 486, 312, 1143, 538, 264, 10088, 13, 440, 10088, 307, 264, 5143, 13, 2012, 286, 558, 11, 1074, 30, 440, 10088, 307, 264, 5143, 13, 467, 307, 437, 24799, 437, 16967, 309, 281, 437, 13, 407, 286, 848, 11, 498, 286, 915, 41369, 11, 286, 1745, 309, 281, 341, 12398, 13, 400, 264, 3089, 7023, 2614, 13, 961, 311, 352, 646, 281, 1097, 1079, 11, 457, 286, 611, 630, 309, 322, 264, 5707, 13], "avg_logprob": -0.47253786734860354, "compression_ratio": 1.626086956521739, "no_speech_prob": 9.149312973022461e-05, "words": [{"start": 1763.6399999999999, "end": 1764.04, "word": "Valve.", "probability": 0.6509806315104166}, {"start": 1764.04, "end": 1764.44, "word": " And", "probability": 0.6103515625}, {"start": 1764.44, "end": 1764.58, "word": " I", "probability": 0.7451171875}, {"start": 1764.58, "end": 1764.64, "word": " choose", "probability": 0.1517333984375}, {"start": 1764.64, "end": 1764.78, "word": " the", "probability": 0.79833984375}, {"start": 1764.78, "end": 1765.08, "word": " object", "probability": 0.953125}, {"start": 1765.08, "end": 1765.2, "word": " that", "probability": 0.513671875}, {"start": 1765.2, "end": 1765.28, "word": " I", "probability": 0.974609375}, {"start": 1765.28, "end": 1765.52, "word": " want.", "probability": 0.80810546875}, {"start": 1766.46, "end": 1766.74, "word": " Of", "probability": 0.4560546875}, {"start": 1766.74, "end": 1766.78, "word": " course,", "probability": 0.95654296875}, {"start": 1766.96, "end": 1767.1, "word": " here,", "probability": 0.4443359375}, {"start": 1767.34, "end": 1767.34, "word": " in", "probability": 0.278564453125}, {"start": 1767.34, "end": 1768.26, "word": " the", "probability": 0.80029296875}, {"start": 1768.26, "end": 1768.46, "word": " end,", "probability": 0.798828125}, {"start": 1768.54, "end": 1768.62, "word": " the", "probability": 0.2529296875}, {"start": 1768.62, "end": 1769.04, "word": " provider", "probability": 0.74267578125}, {"start": 1769.04, "end": 1769.2, "word": " will", "probability": 0.60302734375}, {"start": 1769.2, "end": 1769.36, "word": " be", "probability": 0.8740234375}, {"start": 1769.36, "end": 1769.74, "word": " used", "probability": 0.88134765625}, {"start": 1769.74, "end": 1769.98, "word": " by", "probability": 0.72021484375}, {"start": 1769.98, "end": 1770.12, "word": " the", "probability": 0.89990234375}, {"start": 1770.12, "end": 1770.4, "word": " module.", "probability": 0.90576171875}, {"start": 1770.48, "end": 1770.58, "word": " The", "probability": 0.712890625}, {"start": 1770.58, "end": 1770.82, "word": " module", "probability": 0.90625}, {"start": 1770.82, "end": 1770.98, "word": " is", "probability": 0.92333984375}, {"start": 1770.98, "end": 1771.1, "word": " the", "probability": 0.84033203125}, {"start": 1771.1, "end": 1771.44, "word": " basis.", "probability": 0.51953125}, {"start": 1771.72, "end": 1771.94, "word": " Am", "probability": 0.300048828125}, {"start": 1771.94, "end": 1772.0, "word": " I", "probability": 0.986328125}, {"start": 1772.0, "end": 1772.0, "word": " right,", "probability": 0.84912109375}, {"start": 1772.16, "end": 1772.4, "word": " guys?", "probability": 0.76171875}, {"start": 1772.74, "end": 1773.14, "word": " The", "probability": 0.85888671875}, {"start": 1773.14, "end": 1773.54, "word": " module", "probability": 0.8994140625}, {"start": 1773.54, "end": 1774.08, "word": " is", "probability": 0.90380859375}, {"start": 1774.08, "end": 1774.24, "word": " the", "probability": 0.91552734375}, {"start": 1774.24, "end": 1774.48, "word": " basis.", "probability": 0.8447265625}, {"start": 1774.56, "end": 1774.66, "word": " It", "probability": 0.76513671875}, {"start": 1774.66, "end": 1774.68, "word": " is", "probability": 0.349853515625}, {"start": 1774.68, "end": 1774.76, "word": " what", "probability": 0.615234375}, {"start": 1774.76, "end": 1775.14, "word": " determines", "probability": 0.650390625}, {"start": 1775.14, "end": 1775.44, "word": " what", "probability": 0.78955078125}, {"start": 1775.44, "end": 1775.68, "word": " connects", "probability": 0.54296875}, {"start": 1775.68, "end": 1776.4, "word": " it", "probability": 0.236083984375}, {"start": 1776.4, "end": 1776.48, "word": " to", "probability": 0.767578125}, {"start": 1776.48, "end": 1776.72, "word": " what.", "probability": 0.87353515625}, {"start": 1776.94, "end": 1777.34, "word": " So", "probability": 0.77294921875}, {"start": 1777.34, "end": 1777.44, "word": " I", "probability": 0.5908203125}, {"start": 1777.44, "end": 1777.6, "word": " said,", "probability": 0.5830078125}, {"start": 1777.7, "end": 1777.78, "word": " if", "probability": 0.833984375}, {"start": 1777.78, "end": 1777.92, "word": " I", "probability": 0.91064453125}, {"start": 1777.92, "end": 1778.1, "word": " find", "probability": 0.76904296875}, {"start": 1778.1, "end": 1778.34, "word": " Valve,", "probability": 0.72998046875}, {"start": 1778.56, "end": 1778.88, "word": " I", "probability": 0.49462890625}, {"start": 1778.88, "end": 1779.06, "word": " connect", "probability": 0.44775390625}, {"start": 1779.06, "end": 1779.22, "word": " it", "probability": 0.7734375}, {"start": 1779.22, "end": 1779.34, "word": " to", "probability": 0.69970703125}, {"start": 1779.34, "end": 1780.36, "word": " this", "probability": 0.52685546875}, {"start": 1780.36, "end": 1782.68, "word": " provider.", "probability": 0.92578125}, {"start": 1783.02, "end": 1783.14, "word": " And", "probability": 0.7470703125}, {"start": 1783.14, "end": 1783.44, "word": " the", "probability": 0.82763671875}, {"start": 1783.44, "end": 1783.84, "word": " code", "probability": 0.92822265625}, {"start": 1783.84, "end": 1783.84, "word": " remains", "probability": 0.376953125}, {"start": 1783.84, "end": 1786.34, "word": " running.", "probability": 0.5556640625}, {"start": 1786.68, "end": 1787.0, "word": " Let's", "probability": 0.68310546875}, {"start": 1787.0, "end": 1787.14, "word": " go", "probability": 0.80419921875}, {"start": 1787.14, "end": 1787.2, "word": " back", "probability": 0.861328125}, {"start": 1787.2, "end": 1787.36, "word": " to", "probability": 0.90380859375}, {"start": 1787.36, "end": 1787.78, "word": " ...", "probability": 0.1865234375}, {"start": 1787.78, "end": 1788.0, "word": " Yes,", "probability": 0.20654296875}, {"start": 1788.02, "end": 1788.22, "word": " but", "probability": 0.85986328125}, {"start": 1788.22, "end": 1788.44, "word": " I", "probability": 0.2110595703125}, {"start": 1788.44, "end": 1788.62, "word": " also", "probability": 0.4375}, {"start": 1788.62, "end": 1788.64, "word": " did", "probability": 0.6884765625}, {"start": 1788.64, "end": 1788.96, "word": " it", "probability": 0.828125}, {"start": 1788.96, "end": 1789.4, "word": " on", "probability": 0.2130126953125}, {"start": 1789.4, "end": 1790.46, "word": " the", "probability": 0.6748046875}, {"start": 1790.46, "end": 1790.72, "word": " Mac.", "probability": 0.32666015625}], "temperature": 1.0}, {"id": 68, "seek": 181435, "start": 1793.21, "end": 1814.35, "text": "Yes, because we've made an override for the method, right or wrong? So this is the mock, we've made an override, so I want to put it again, put it again here It's supposed to have a method, this, let me see, there's bind", "tokens": [6054, 11, 570, 321, 600, 1027, 364, 42321, 337, 264, 3170, 11, 558, 420, 2085, 30, 407, 341, 307, 264, 17362, 11, 321, 600, 1027, 364, 42321, 11, 370, 286, 528, 281, 829, 309, 797, 11, 829, 309, 797, 510, 467, 311, 3442, 281, 362, 257, 3170, 11, 341, 11, 718, 385, 536, 11, 456, 311, 14786], "avg_logprob": -0.5538793062341625, "compression_ratio": 1.5492957746478873, "no_speech_prob": 4.172325134277344e-06, "words": [{"start": 1793.21, "end": 1793.65, "word": "Yes,", "probability": 0.1629638671875}, {"start": 1794.05, "end": 1794.05, "word": " because", "probability": 0.6044921875}, {"start": 1794.05, "end": 1795.33, "word": " we've", "probability": 0.1220703125}, {"start": 1795.33, "end": 1797.11, "word": " made", "probability": 0.177001953125}, {"start": 1797.11, "end": 1797.29, "word": " an", "probability": 0.400146484375}, {"start": 1797.29, "end": 1797.55, "word": " override", "probability": 0.96044921875}, {"start": 1797.55, "end": 1797.95, "word": " for", "probability": 0.42724609375}, {"start": 1797.95, "end": 1798.07, "word": " the", "probability": 0.751953125}, {"start": 1798.07, "end": 1798.33, "word": " method,", "probability": 0.8974609375}, {"start": 1798.43, "end": 1798.51, "word": " right", "probability": 0.60888671875}, {"start": 1798.51, "end": 1798.71, "word": " or", "probability": 0.60498046875}, {"start": 1798.71, "end": 1798.87, "word": " wrong?", "probability": 0.469482421875}, {"start": 1799.51, "end": 1799.89, "word": " So", "probability": 0.32275390625}, {"start": 1799.89, "end": 1800.11, "word": " this", "probability": 0.56689453125}, {"start": 1800.11, "end": 1800.15, "word": " is", "probability": 0.8173828125}, {"start": 1800.15, "end": 1800.25, "word": " the", "probability": 0.666015625}, {"start": 1800.25, "end": 1800.51, "word": " mock,", "probability": 0.619140625}, {"start": 1803.05, "end": 1803.99, "word": " we've", "probability": 0.6728515625}, {"start": 1803.99, "end": 1804.09, "word": " made", "probability": 0.83154296875}, {"start": 1804.09, "end": 1804.23, "word": " an", "probability": 0.77734375}, {"start": 1804.23, "end": 1804.53, "word": " override,", "probability": 0.97900390625}, {"start": 1804.69, "end": 1804.73, "word": " so", "probability": 0.81884765625}, {"start": 1804.73, "end": 1804.89, "word": " I", "probability": 0.88916015625}, {"start": 1804.89, "end": 1804.91, "word": " want", "probability": 0.315185546875}, {"start": 1804.91, "end": 1804.97, "word": " to", "probability": 0.96630859375}, {"start": 1804.97, "end": 1805.13, "word": " put", "probability": 0.71875}, {"start": 1805.13, "end": 1805.23, "word": " it", "probability": 0.931640625}, {"start": 1805.23, "end": 1805.53, "word": " again,", "probability": 0.52392578125}, {"start": 1806.19, "end": 1807.15, "word": " put", "probability": 0.401611328125}, {"start": 1807.15, "end": 1807.29, "word": " it", "probability": 0.93994140625}, {"start": 1807.29, "end": 1807.49, "word": " again", "probability": 0.68798828125}, {"start": 1807.49, "end": 1807.79, "word": " here", "probability": 0.8115234375}, {"start": 1807.79, "end": 1809.93, "word": " It's", "probability": 0.4400634765625}, {"start": 1809.93, "end": 1810.19, "word": " supposed", "probability": 0.91162109375}, {"start": 1810.19, "end": 1810.35, "word": " to", "probability": 0.96728515625}, {"start": 1810.35, "end": 1810.53, "word": " have", "probability": 0.85205078125}, {"start": 1810.53, "end": 1810.65, "word": " a", "probability": 0.86083984375}, {"start": 1810.65, "end": 1811.03, "word": " method,", "probability": 0.95654296875}, {"start": 1811.27, "end": 1811.57, "word": " this,", "probability": 0.84130859375}, {"start": 1811.77, "end": 1811.83, "word": " let", "probability": 0.447265625}, {"start": 1811.83, "end": 1811.83, "word": " me", "probability": 0.53369140625}, {"start": 1811.83, "end": 1812.11, "word": " see,", "probability": 0.86865234375}, {"start": 1813.79, "end": 1813.97, "word": " there's", "probability": 0.637451171875}, {"start": 1813.97, "end": 1814.35, "word": " bind", "probability": 0.505859375}], "temperature": 1.0}, {"id": 69, "seek": 184198, "start": 1823.66, "end": 1841.98, "text": " There is no unbind in it. Okay, fine. Okay, we added it to the mock to keep it running. Okay, and what is left? What is the size of the valve? Seventy-seven. Seventy-seven. Clear, guys?", "tokens": [821, 307, 572, 517, 65, 471, 294, 309, 13, 1033, 11, 2489, 13, 1033, 11, 321, 3869, 309, 281, 264, 17362, 281, 1066, 309, 2614, 13, 1033, 11, 293, 437, 307, 1411, 30, 708, 307, 264, 2744, 295, 264, 15294, 30, 1100, 2475, 88, 12, 44476, 13, 1100, 2475, 88, 12, 44476, 13, 14993, 11, 1074, 30], "avg_logprob": -0.6233836443259798, "compression_ratio": 1.4090909090909092, "no_speech_prob": 5.781650543212891e-06, "words": [{"start": 1823.66, "end": 1823.88, "word": " There", "probability": 0.0792236328125}, {"start": 1823.88, "end": 1823.92, "word": " is", "probability": 0.650390625}, {"start": 1823.92, "end": 1824.0, "word": " no", "probability": 0.5966796875}, {"start": 1824.0, "end": 1824.68, "word": " unbind", "probability": 0.6953938802083334}, {"start": 1824.68, "end": 1824.86, "word": " in", "probability": 0.1842041015625}, {"start": 1824.86, "end": 1824.86, "word": " it.", "probability": 0.77783203125}, {"start": 1825.28, "end": 1825.6, "word": " Okay,", "probability": 0.30615234375}, {"start": 1825.62, "end": 1825.98, "word": " fine.", "probability": 0.26513671875}, {"start": 1827.88, "end": 1828.3, "word": " Okay,", "probability": 0.333740234375}, {"start": 1828.34, "end": 1828.42, "word": " we", "probability": 0.7744140625}, {"start": 1828.42, "end": 1828.62, "word": " added", "probability": 0.68798828125}, {"start": 1828.62, "end": 1828.8, "word": " it", "probability": 0.84130859375}, {"start": 1828.8, "end": 1828.88, "word": " to", "probability": 0.6083984375}, {"start": 1828.88, "end": 1828.96, "word": " the", "probability": 0.71044921875}, {"start": 1828.96, "end": 1829.14, "word": " mock", "probability": 0.228271484375}, {"start": 1829.14, "end": 1829.38, "word": " to", "probability": 0.362548828125}, {"start": 1829.38, "end": 1829.58, "word": " keep", "probability": 0.7734375}, {"start": 1829.58, "end": 1829.68, "word": " it", "probability": 0.9033203125}, {"start": 1829.68, "end": 1830.02, "word": " running.", "probability": 0.78466796875}, {"start": 1833.44, "end": 1833.86, "word": " Okay,", "probability": 0.65087890625}, {"start": 1833.92, "end": 1834.04, "word": " and", "probability": 0.58642578125}, {"start": 1834.04, "end": 1834.12, "word": " what", "probability": 0.455810546875}, {"start": 1834.12, "end": 1834.12, "word": " is", "probability": 0.279296875}, {"start": 1834.12, "end": 1834.32, "word": " left?", "probability": 0.325927734375}, {"start": 1834.56, "end": 1834.8, "word": " What", "probability": 0.10986328125}, {"start": 1834.8, "end": 1834.84, "word": " is", "probability": 0.623046875}, {"start": 1834.84, "end": 1834.94, "word": " the", "probability": 0.5126953125}, {"start": 1834.94, "end": 1834.94, "word": " size", "probability": 0.2384033203125}, {"start": 1834.94, "end": 1834.94, "word": " of", "probability": 0.79150390625}, {"start": 1834.94, "end": 1834.94, "word": " the", "probability": 0.7099609375}, {"start": 1834.94, "end": 1835.36, "word": " valve?", "probability": 0.7109375}, {"start": 1837.26, "end": 1837.68, "word": " Seventy", "probability": 0.691162109375}, {"start": 1837.68, "end": 1837.68, "word": "-seven.", "probability": 0.774169921875}, {"start": 1838.86, "end": 1839.28, "word": " Seventy", "probability": 0.7069905598958334}, {"start": 1839.28, "end": 1839.66, "word": "-seven.", "probability": 0.93310546875}, {"start": 1841.26, "end": 1841.68, "word": " Clear,", "probability": 0.232666015625}, {"start": 1841.8, "end": 1841.98, "word": " guys?", "probability": 0.60400390625}], "temperature": 1.0}, {"id": 70, "seek": 185356, "start": 1843.2, "end": 1853.56, "text": "So if I want to use an external library in this case, I need to create the object because it will not be able to create it. How do I create it? Through the module, I need to create a method", "tokens": [6455, 498, 286, 528, 281, 764, 364, 8320, 6405, 294, 341, 1389, 11, 286, 643, 281, 1884, 264, 2657, 570, 309, 486, 406, 312, 1075, 281, 1884, 309, 13, 1012, 360, 286, 1884, 309, 30, 8927, 264, 10088, 11, 286, 643, 281, 1884, 257, 3170], "avg_logprob": -0.555027179096056, "compression_ratio": 1.4881889763779528, "no_speech_prob": 1.1980533599853516e-05, "words": [{"start": 1843.2, "end": 1843.68, "word": "So", "probability": 0.1007080078125}, {"start": 1843.68, "end": 1843.94, "word": " if", "probability": 0.49755859375}, {"start": 1843.94, "end": 1843.94, "word": " I", "probability": 0.7509765625}, {"start": 1843.94, "end": 1844.2, "word": " want", "probability": 0.45068359375}, {"start": 1844.2, "end": 1844.2, "word": " to", "probability": 0.9609375}, {"start": 1844.2, "end": 1844.3, "word": " use", "probability": 0.6826171875}, {"start": 1844.3, "end": 1844.78, "word": " an", "probability": 0.4306640625}, {"start": 1844.78, "end": 1844.98, "word": " external", "probability": 0.286865234375}, {"start": 1844.98, "end": 1845.12, "word": " library", "probability": 0.8466796875}, {"start": 1845.12, "end": 1845.36, "word": " in", "probability": 0.2269287109375}, {"start": 1845.36, "end": 1845.42, "word": " this", "probability": 0.81005859375}, {"start": 1845.42, "end": 1845.58, "word": " case,", "probability": 0.7744140625}, {"start": 1845.84, "end": 1845.88, "word": " I", "probability": 0.8916015625}, {"start": 1845.88, "end": 1846.06, "word": " need", "probability": 0.370849609375}, {"start": 1846.06, "end": 1846.4, "word": " to", "probability": 0.95556640625}, {"start": 1846.4, "end": 1846.4, "word": " create", "probability": 0.82421875}, {"start": 1846.4, "end": 1847.0, "word": " the", "probability": 0.377197265625}, {"start": 1847.0, "end": 1847.36, "word": " object", "probability": 0.87109375}, {"start": 1847.36, "end": 1847.7, "word": " because", "probability": 0.2425537109375}, {"start": 1847.7, "end": 1847.86, "word": " it", "probability": 0.5263671875}, {"start": 1847.86, "end": 1848.06, "word": " will", "probability": 0.35986328125}, {"start": 1848.06, "end": 1848.06, "word": " not", "probability": 0.87158203125}, {"start": 1848.06, "end": 1848.28, "word": " be", "probability": 0.5556640625}, {"start": 1848.28, "end": 1848.62, "word": " able", "probability": 0.94189453125}, {"start": 1848.62, "end": 1849.16, "word": " to", "probability": 0.96826171875}, {"start": 1849.16, "end": 1849.38, "word": " create", "probability": 0.5234375}, {"start": 1849.38, "end": 1849.6, "word": " it.", "probability": 0.7646484375}, {"start": 1849.96, "end": 1850.26, "word": " How", "probability": 0.6826171875}, {"start": 1850.26, "end": 1850.34, "word": " do", "probability": 0.425048828125}, {"start": 1850.34, "end": 1850.42, "word": " I", "probability": 0.96875}, {"start": 1850.42, "end": 1850.62, "word": " create", "probability": 0.77978515625}, {"start": 1850.62, "end": 1850.86, "word": " it?", "probability": 0.91162109375}, {"start": 1851.12, "end": 1851.3, "word": " Through", "probability": 0.376220703125}, {"start": 1851.3, "end": 1851.7, "word": " the", "probability": 0.60009765625}, {"start": 1851.7, "end": 1852.14, "word": " module,", "probability": 0.94677734375}, {"start": 1852.48, "end": 1852.64, "word": " I", "probability": 0.69189453125}, {"start": 1852.64, "end": 1852.7, "word": " need", "probability": 0.59228515625}, {"start": 1852.7, "end": 1852.92, "word": " to", "probability": 0.9619140625}, {"start": 1852.92, "end": 1852.92, "word": " create", "probability": 0.5576171875}, {"start": 1852.92, "end": 1853.18, "word": " a", "probability": 0.8466796875}, {"start": 1853.18, "end": 1853.56, "word": " method", "probability": 0.96728515625}], "temperature": 1.0}, {"id": 71, "seek": 188392, "start": 1854.46, "end": 1883.92, "text": " it is made by annotation in provides, it returns the object that it wants either to make it a provider if you have 5 libraries and you use them either you create 5 providers outside and bind them either you create 5 methods and make them annotate as provides ok guys? until the last part is to suppose", "tokens": [309, 307, 1027, 538, 48654, 294, 6417, 11, 309, 11247, 264, 2657, 300, 309, 2738, 2139, 281, 652, 309, 257, 12398, 498, 291, 362, 1025, 15148, 293, 291, 764, 552, 2139, 291, 1884, 1025, 11330, 2380, 293, 14786, 552, 2139, 291, 1884, 1025, 7150, 293, 652, 552, 25339, 473, 382, 6417, 3133, 1074, 30, 1826, 264, 1036, 644, 307, 281, 7297], "avg_logprob": -0.6880040111080292, "compression_ratio": 1.755813953488372, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 1854.46, "end": 1854.68, "word": " it", "probability": 0.0665283203125}, {"start": 1854.68, "end": 1854.68, "word": " is", "probability": 0.43359375}, {"start": 1854.68, "end": 1854.8, "word": " made", "probability": 0.4931640625}, {"start": 1854.8, "end": 1854.94, "word": " by", "probability": 0.430908203125}, {"start": 1854.94, "end": 1855.26, "word": " annotation", "probability": 0.51611328125}, {"start": 1855.26, "end": 1855.54, "word": " in", "probability": 0.34130859375}, {"start": 1855.54, "end": 1855.98, "word": " provides,", "probability": 0.266845703125}, {"start": 1856.06, "end": 1856.2, "word": " it", "probability": 0.233154296875}, {"start": 1856.2, "end": 1856.44, "word": " returns", "probability": 0.474853515625}, {"start": 1856.44, "end": 1856.6, "word": " the", "probability": 0.54541015625}, {"start": 1856.6, "end": 1856.84, "word": " object", "probability": 0.76806640625}, {"start": 1856.84, "end": 1856.98, "word": " that", "probability": 0.259521484375}, {"start": 1856.98, "end": 1857.16, "word": " it", "probability": 0.5625}, {"start": 1857.16, "end": 1857.28, "word": " wants", "probability": 0.52001953125}, {"start": 1857.28, "end": 1858.0, "word": " either", "probability": 0.36767578125}, {"start": 1858.0, "end": 1858.26, "word": " to", "probability": 0.15185546875}, {"start": 1858.26, "end": 1858.46, "word": " make", "probability": 0.4765625}, {"start": 1858.46, "end": 1858.6, "word": " it", "probability": 0.853515625}, {"start": 1858.6, "end": 1859.38, "word": " a", "probability": 0.630859375}, {"start": 1859.38, "end": 1859.76, "word": " provider", "probability": 0.90380859375}, {"start": 1859.76, "end": 1860.42, "word": " if", "probability": 0.5478515625}, {"start": 1860.42, "end": 1860.76, "word": " you", "probability": 0.94677734375}, {"start": 1860.76, "end": 1860.96, "word": " have", "probability": 0.8916015625}, {"start": 1860.96, "end": 1861.5, "word": " 5", "probability": 0.444580078125}, {"start": 1861.5, "end": 1861.94, "word": " libraries", "probability": 0.740234375}, {"start": 1861.94, "end": 1862.06, "word": " and", "probability": 0.23046875}, {"start": 1862.06, "end": 1862.08, "word": " you", "probability": 0.89306640625}, {"start": 1862.08, "end": 1862.34, "word": " use", "probability": 0.62744140625}, {"start": 1862.34, "end": 1862.82, "word": " them", "probability": 0.8740234375}, {"start": 1862.82, "end": 1863.56, "word": " either", "probability": 0.54443359375}, {"start": 1863.56, "end": 1863.68, "word": " you", "probability": 0.65380859375}, {"start": 1863.68, "end": 1863.9, "word": " create", "probability": 0.6669921875}, {"start": 1863.9, "end": 1864.24, "word": " 5", "probability": 0.8759765625}, {"start": 1864.24, "end": 1864.86, "word": " providers", "probability": 0.76953125}, {"start": 1864.86, "end": 1865.26, "word": " outside", "probability": 0.61474609375}, {"start": 1865.26, "end": 1865.82, "word": " and", "probability": 0.1494140625}, {"start": 1865.82, "end": 1866.04, "word": " bind", "probability": 0.564453125}, {"start": 1866.04, "end": 1866.82, "word": " them", "probability": 0.88037109375}, {"start": 1866.82, "end": 1867.6, "word": " either", "probability": 0.4384765625}, {"start": 1867.6, "end": 1867.86, "word": " you", "probability": 0.90380859375}, {"start": 1867.86, "end": 1868.08, "word": " create", "probability": 0.338623046875}, {"start": 1868.08, "end": 1868.38, "word": " 5", "probability": 0.955078125}, {"start": 1868.38, "end": 1868.88, "word": " methods", "probability": 0.93896484375}, {"start": 1868.88, "end": 1869.74, "word": " and", "probability": 0.5498046875}, {"start": 1869.74, "end": 1869.86, "word": " make", "probability": 0.481689453125}, {"start": 1869.86, "end": 1870.0, "word": " them", "probability": 0.7939453125}, {"start": 1870.0, "end": 1870.4, "word": " annotate", "probability": 0.8681640625}, {"start": 1870.4, "end": 1870.66, "word": " as", "probability": 0.857421875}, {"start": 1870.66, "end": 1872.04, "word": " provides", "probability": 0.41650390625}, {"start": 1872.04, "end": 1873.32, "word": " ok", "probability": 0.1236572265625}, {"start": 1873.32, "end": 1873.84, "word": " guys?", "probability": 0.68896484375}, {"start": 1875.04, "end": 1875.64, "word": " until", "probability": 0.333251953125}, {"start": 1875.64, "end": 1875.82, "word": " the", "probability": 0.90625}, {"start": 1875.82, "end": 1876.0, "word": " last", "probability": 0.76953125}, {"start": 1876.0, "end": 1876.44, "word": " part", "probability": 0.5751953125}, {"start": 1876.44, "end": 1882.58, "word": " is", "probability": 0.384521484375}, {"start": 1882.58, "end": 1882.9, "word": " to", "probability": 0.39306640625}, {"start": 1882.9, "end": 1883.92, "word": " suppose", "probability": 0.264404296875}], "temperature": 1.0}, {"id": 72, "seek": 191375, "start": 1886.91, "end": 1913.75, "text": " For example, like a tire, let's say Of course, we don't have a tire, but we have a large tire and a small tire, okay? Let's say the tire takes a parameter Primitive type, but let's try it instead of making another constructor Yes, go to the cylinder, okay? What does the cylinder take? It takes a valve, and I want it to take another parameter", "tokens": [1171, 1365, 11, 411, 257, 11756, 11, 718, 311, 584, 2720, 1164, 11, 321, 500, 380, 362, 257, 11756, 11, 457, 321, 362, 257, 2416, 11756, 293, 257, 1359, 11756, 11, 1392, 30, 961, 311, 584, 264, 11756, 2516, 257, 13075, 19671, 2187, 2010, 11, 457, 718, 311, 853, 309, 2602, 295, 1455, 1071, 47479, 1079, 11, 352, 281, 264, 17884, 11, 1392, 30, 708, 775, 264, 17884, 747, 30, 467, 2516, 257, 15294, 11, 293, 286, 528, 309, 281, 747, 1071, 13075], "avg_logprob": -0.42485118799266364, "compression_ratio": 1.6780487804878048, "no_speech_prob": 1.9669532775878906e-06, "words": [{"start": 1886.91, "end": 1887.27, "word": " For", "probability": 0.45361328125}, {"start": 1887.27, "end": 1887.45, "word": " example,", "probability": 0.90478515625}, {"start": 1887.59, "end": 1887.71, "word": " like", "probability": 0.54736328125}, {"start": 1887.71, "end": 1887.85, "word": " a", "probability": 0.235107421875}, {"start": 1887.85, "end": 1888.05, "word": " tire,", "probability": 0.79736328125}, {"start": 1888.45, "end": 1888.79, "word": " let's", "probability": 0.712890625}, {"start": 1888.79, "end": 1889.05, "word": " say", "probability": 0.9306640625}, {"start": 1889.05, "end": 1890.29, "word": " Of", "probability": 0.1978759765625}, {"start": 1890.29, "end": 1890.41, "word": " course,", "probability": 0.94677734375}, {"start": 1890.57, "end": 1890.59, "word": " we", "probability": 0.77978515625}, {"start": 1890.59, "end": 1890.69, "word": " don't", "probability": 0.87548828125}, {"start": 1890.69, "end": 1891.01, "word": " have", "probability": 0.87744140625}, {"start": 1891.01, "end": 1891.13, "word": " a", "probability": 0.473876953125}, {"start": 1891.13, "end": 1891.31, "word": " tire,", "probability": 0.8505859375}, {"start": 1891.41, "end": 1891.77, "word": " but", "probability": 0.277587890625}, {"start": 1891.77, "end": 1892.13, "word": " we", "probability": 0.89990234375}, {"start": 1892.13, "end": 1892.27, "word": " have", "probability": 0.81103515625}, {"start": 1892.27, "end": 1892.63, "word": " a", "probability": 0.654296875}, {"start": 1892.63, "end": 1892.91, "word": " large", "probability": 0.83837890625}, {"start": 1892.91, "end": 1893.21, "word": " tire", "probability": 0.82470703125}, {"start": 1893.21, "end": 1893.93, "word": " and", "probability": 0.8671875}, {"start": 1893.93, "end": 1893.99, "word": " a", "probability": 0.82177734375}, {"start": 1893.99, "end": 1894.15, "word": " small", "probability": 0.568359375}, {"start": 1894.15, "end": 1894.51, "word": " tire,", "probability": 0.85693359375}, {"start": 1894.51, "end": 1894.97, "word": " okay?", "probability": 0.393310546875}, {"start": 1895.65, "end": 1895.99, "word": " Let's", "probability": 0.622314453125}, {"start": 1895.99, "end": 1896.17, "word": " say", "probability": 0.931640625}, {"start": 1896.17, "end": 1896.47, "word": " the", "probability": 0.344482421875}, {"start": 1896.47, "end": 1896.79, "word": " tire", "probability": 0.865234375}, {"start": 1896.79, "end": 1897.53, "word": " takes", "probability": 0.40673828125}, {"start": 1897.53, "end": 1898.03, "word": " a", "probability": 0.60791015625}, {"start": 1898.03, "end": 1898.47, "word": " parameter", "probability": 0.935546875}, {"start": 1898.47, "end": 1903.01, "word": " Primitive", "probability": 0.60650634765625}, {"start": 1903.01, "end": 1903.31, "word": " type,", "probability": 0.927734375}, {"start": 1903.53, "end": 1903.73, "word": " but", "probability": 0.71484375}, {"start": 1903.73, "end": 1904.07, "word": " let's", "probability": 0.879638671875}, {"start": 1904.07, "end": 1904.29, "word": " try", "probability": 0.865234375}, {"start": 1904.29, "end": 1904.71, "word": " it", "probability": 0.625}, {"start": 1904.71, "end": 1905.01, "word": " instead", "probability": 0.4599609375}, {"start": 1905.01, "end": 1905.17, "word": " of", "probability": 0.96728515625}, {"start": 1905.17, "end": 1905.35, "word": " making", "probability": 0.53515625}, {"start": 1905.35, "end": 1905.47, "word": " another", "probability": 0.734375}, {"start": 1905.47, "end": 1906.01, "word": " constructor", "probability": 0.8173828125}, {"start": 1906.01, "end": 1906.79, "word": " Yes,", "probability": 0.4296875}, {"start": 1906.87, "end": 1906.99, "word": " go", "probability": 0.62744140625}, {"start": 1906.99, "end": 1907.07, "word": " to", "probability": 0.9111328125}, {"start": 1907.07, "end": 1907.21, "word": " the", "probability": 0.82958984375}, {"start": 1907.21, "end": 1907.47, "word": " cylinder,", "probability": 0.87109375}, {"start": 1907.59, "end": 1908.59, "word": " okay?", "probability": 0.79150390625}, {"start": 1908.97, "end": 1909.19, "word": " What", "probability": 0.255126953125}, {"start": 1909.19, "end": 1909.19, "word": " does", "probability": 0.8876953125}, {"start": 1909.19, "end": 1909.39, "word": " the", "probability": 0.7841796875}, {"start": 1909.39, "end": 1909.63, "word": " cylinder", "probability": 0.5556640625}, {"start": 1909.63, "end": 1910.17, "word": " take?", "probability": 0.5869140625}, {"start": 1910.97, "end": 1911.45, "word": " It", "probability": 0.58740234375}, {"start": 1911.45, "end": 1911.67, "word": " takes", "probability": 0.82373046875}, {"start": 1911.67, "end": 1911.77, "word": " a", "probability": 0.927734375}, {"start": 1911.77, "end": 1912.01, "word": " valve,", "probability": 0.85595703125}, {"start": 1912.11, "end": 1912.55, "word": " and", "probability": 0.86328125}, {"start": 1912.55, "end": 1912.69, "word": " I", "probability": 0.41064453125}, {"start": 1912.69, "end": 1912.69, "word": " want", "probability": 0.67138671875}, {"start": 1912.69, "end": 1912.95, "word": " it", "probability": 0.60888671875}, {"start": 1912.95, "end": 1913.07, "word": " to", "probability": 0.96142578125}, {"start": 1913.07, "end": 1913.25, "word": " take", "probability": 0.84619140625}, {"start": 1913.25, "end": 1913.37, "word": " another", "probability": 0.833984375}, {"start": 1913.37, "end": 1913.75, "word": " parameter", "probability": 0.96826171875}], "temperature": 1.0}, {"id": 73, "seek": 192515, "start": 1915.13, "end": 1925.15, "text": "Integer cylinder size and put it in the constructor", "tokens": [25597, 30744, 17884, 2744, 293, 829, 309, 294, 264, 47479], "avg_logprob": -0.7109374891627919, "compression_ratio": 0.9107142857142857, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 1915.13, "end": 1916.23, "word": "Integer", "probability": 0.6324462890625}, {"start": 1916.23, "end": 1917.03, "word": " cylinder", "probability": 0.344482421875}, {"start": 1917.03, "end": 1918.87, "word": " size", "probability": 0.77001953125}, {"start": 1918.87, "end": 1923.59, "word": " and", "probability": 0.11517333984375}, {"start": 1923.59, "end": 1924.37, "word": " put", "probability": 0.322265625}, {"start": 1924.37, "end": 1924.49, "word": " it", "probability": 0.60009765625}, {"start": 1924.49, "end": 1924.59, "word": " in", "probability": 0.76708984375}, {"start": 1924.59, "end": 1924.67, "word": " the", "probability": 0.387451171875}, {"start": 1924.67, "end": 1925.15, "word": " constructor", "probability": 0.88818359375}], "temperature": 1.0}, {"id": 74, "seek": 196429, "start": 1938.31, "end": 1964.29, "text": "Okay, I found that class objects like the valve is solvable by itself. It produces objects from it. If I find an injectable, the constructor produces it. If I don't find one, the provider produces it. Anyway, this is solvable by itself. But if I have a primitive type constructor, this is a different argument. It needs a value. Right or wrong guys? What value does it need? Of course, I found that it will not be able to produce a cylinder.", "tokens": [8297, 11, 286, 1352, 300, 1508, 6565, 411, 264, 15294, 307, 1404, 17915, 538, 2564, 13, 467, 14725, 6565, 490, 309, 13, 759, 286, 915, 364, 10711, 712, 11, 264, 47479, 14725, 309, 13, 759, 286, 500, 380, 915, 472, 11, 264, 12398, 14725, 309, 13, 5684, 11, 341, 307, 1404, 17915, 538, 2564, 13, 583, 498, 286, 362, 257, 28540, 2010, 47479, 11, 341, 307, 257, 819, 6770, 13, 467, 2203, 257, 2158, 13, 1779, 420, 2085, 1074, 30, 708, 2158, 775, 309, 643, 30, 2720, 1164, 11, 286, 1352, 300, 309, 486, 406, 312, 1075, 281, 5258, 257, 17884, 13], "avg_logprob": -0.5006067718116982, "compression_ratio": 1.8, "no_speech_prob": 1.9073486328125e-06, "words": [{"start": 1938.31, "end": 1938.77, "word": "Okay,", "probability": 0.2236328125}, {"start": 1939.25, "end": 1939.35, "word": " I", "probability": 0.1708984375}, {"start": 1939.35, "end": 1939.53, "word": " found", "probability": 0.52001953125}, {"start": 1939.53, "end": 1939.65, "word": " that", "probability": 0.432861328125}, {"start": 1939.65, "end": 1939.93, "word": " class", "probability": 0.59619140625}, {"start": 1939.93, "end": 1940.47, "word": " objects", "probability": 0.8876953125}, {"start": 1940.47, "end": 1940.93, "word": " like", "probability": 0.56689453125}, {"start": 1940.93, "end": 1941.09, "word": " the", "probability": 0.2998046875}, {"start": 1941.09, "end": 1941.41, "word": " valve", "probability": 0.69140625}, {"start": 1941.41, "end": 1941.95, "word": " is", "probability": 0.349853515625}, {"start": 1941.95, "end": 1942.37, "word": " solvable", "probability": 0.58343505859375}, {"start": 1942.37, "end": 1942.77, "word": " by", "probability": 0.2474365234375}, {"start": 1942.77, "end": 1942.95, "word": " itself.", "probability": 0.65234375}, {"start": 1943.17, "end": 1943.17, "word": " It", "probability": 0.56884765625}, {"start": 1943.17, "end": 1944.63, "word": " produces", "probability": 0.330322265625}, {"start": 1944.63, "end": 1945.25, "word": " objects", "probability": 0.87158203125}, {"start": 1945.25, "end": 1945.25, "word": " from", "probability": 0.348388671875}, {"start": 1945.25, "end": 1945.25, "word": " it.", "probability": 0.75439453125}, {"start": 1945.69, "end": 1946.05, "word": " If", "probability": 0.89208984375}, {"start": 1946.05, "end": 1946.17, "word": " I", "probability": 0.243408203125}, {"start": 1946.17, "end": 1946.31, "word": " find", "probability": 0.6376953125}, {"start": 1946.31, "end": 1946.69, "word": " an", "probability": 0.357666015625}, {"start": 1946.69, "end": 1947.61, "word": " injectable,", "probability": 0.962646484375}, {"start": 1947.67, "end": 1947.73, "word": " the", "probability": 0.6611328125}, {"start": 1947.73, "end": 1948.13, "word": " constructor", "probability": 0.849609375}, {"start": 1948.13, "end": 1948.39, "word": " produces", "probability": 0.740234375}, {"start": 1948.39, "end": 1948.69, "word": " it.", "probability": 0.7119140625}, {"start": 1948.75, "end": 1948.91, "word": " If", "probability": 0.689453125}, {"start": 1948.91, "end": 1948.91, "word": " I", "probability": 0.86279296875}, {"start": 1948.91, "end": 1948.93, "word": " don't", "probability": 0.81103515625}, {"start": 1948.93, "end": 1949.17, "word": " find", "probability": 0.82177734375}, {"start": 1949.17, "end": 1949.41, "word": " one,", "probability": 0.288818359375}, {"start": 1949.51, "end": 1949.65, "word": " the", "probability": 0.4482421875}, {"start": 1949.65, "end": 1950.05, "word": " provider", "probability": 0.740234375}, {"start": 1950.05, "end": 1950.41, "word": " produces", "probability": 0.869140625}, {"start": 1950.41, "end": 1950.59, "word": " it.", "probability": 0.806640625}, {"start": 1950.61, "end": 1950.89, "word": " Anyway,", "probability": 0.150146484375}, {"start": 1950.95, "end": 1951.09, "word": " this", "probability": 0.46923828125}, {"start": 1951.09, "end": 1951.15, "word": " is", "probability": 0.409423828125}, {"start": 1951.15, "end": 1951.41, "word": " solvable", "probability": 0.713134765625}, {"start": 1951.41, "end": 1951.55, "word": " by", "probability": 0.75244140625}, {"start": 1951.55, "end": 1951.75, "word": " itself.", "probability": 0.81640625}, {"start": 1952.59, "end": 1952.85, "word": " But", "probability": 0.7373046875}, {"start": 1952.85, "end": 1953.21, "word": " if", "probability": 0.78662109375}, {"start": 1953.21, "end": 1953.45, "word": " I", "probability": 0.76708984375}, {"start": 1953.45, "end": 1953.59, "word": " have", "probability": 0.763671875}, {"start": 1953.59, "end": 1954.37, "word": " a", "probability": 0.438232421875}, {"start": 1954.37, "end": 1954.57, "word": " primitive", "probability": 0.85400390625}, {"start": 1954.57, "end": 1954.83, "word": " type", "probability": 0.2042236328125}, {"start": 1954.83, "end": 1954.91, "word": " constructor,", "probability": 0.2408447265625}, {"start": 1954.91, "end": 1954.91, "word": " this", "probability": 0.39697265625}, {"start": 1954.91, "end": 1955.03, "word": " is", "probability": 0.8056640625}, {"start": 1955.03, "end": 1955.27, "word": " a", "probability": 0.82373046875}, {"start": 1955.27, "end": 1955.73, "word": " different", "probability": 0.623046875}, {"start": 1955.73, "end": 1956.99, "word": " argument.", "probability": 0.80712890625}, {"start": 1958.33, "end": 1958.53, "word": " It", "probability": 0.47607421875}, {"start": 1958.53, "end": 1958.69, "word": " needs", "probability": 0.63818359375}, {"start": 1958.69, "end": 1958.77, "word": " a", "probability": 0.5517578125}, {"start": 1958.77, "end": 1958.99, "word": " value.", "probability": 0.908203125}, {"start": 1959.83, "end": 1960.15, "word": " Right", "probability": 0.381103515625}, {"start": 1960.15, "end": 1960.33, "word": " or", "probability": 0.7685546875}, {"start": 1960.33, "end": 1960.33, "word": " wrong", "probability": 0.66357421875}, {"start": 1960.33, "end": 1960.61, "word": " guys?", "probability": 0.270751953125}, {"start": 1961.39, "end": 1961.83, "word": " What", "probability": 0.65185546875}, {"start": 1961.83, "end": 1962.13, "word": " value", "probability": 0.7978515625}, {"start": 1962.13, "end": 1962.29, "word": " does", "probability": 0.603515625}, {"start": 1962.29, "end": 1962.29, "word": " it", "probability": 0.69873046875}, {"start": 1962.29, "end": 1962.35, "word": " need?", "probability": 0.6767578125}, {"start": 1962.65, "end": 1962.79, "word": " Of", "probability": 0.81884765625}, {"start": 1962.79, "end": 1962.87, "word": " course,", "probability": 0.9580078125}, {"start": 1962.91, "end": 1963.09, "word": " I", "probability": 0.59326171875}, {"start": 1963.09, "end": 1963.09, "word": " found", "probability": 0.8564453125}, {"start": 1963.09, "end": 1963.17, "word": " that", "probability": 0.7607421875}, {"start": 1963.17, "end": 1963.17, "word": " it", "probability": 0.7119140625}, {"start": 1963.17, "end": 1963.31, "word": " will", "probability": 0.389404296875}, {"start": 1963.31, "end": 1963.31, "word": " not", "probability": 0.93408203125}, {"start": 1963.31, "end": 1963.61, "word": " be", "probability": 0.92626953125}, {"start": 1963.61, "end": 1963.61, "word": " able", "probability": 0.95654296875}, {"start": 1963.61, "end": 1963.73, "word": " to", "probability": 0.97216796875}, {"start": 1963.73, "end": 1963.87, "word": " produce", "probability": 0.5859375}, {"start": 1963.87, "end": 1964.03, "word": " a", "probability": 0.82861328125}, {"start": 1964.03, "end": 1964.29, "word": " cylinder.", "probability": 0.87158203125}], "temperature": 1.0}, {"id": 75, "seek": 199332, "start": 1965.14, "end": 1993.32, "text": "The cylinder has two dependencies. The first dependency is an object of the type of valve. This is solvable. The second dependency is a variable of the type of integer. It has to pass through it in order to create a cylinder. So this gate will not be able to create a cylinder. Let's run it. Okay, it will generate an error. Let's see the error. No injectable constructor for type integer. I don't know how it works.", "tokens": [2278, 17884, 575, 732, 36606, 13, 440, 700, 33621, 307, 364, 2657, 295, 264, 2010, 295, 15294, 13, 639, 307, 1404, 17915, 13, 440, 1150, 33621, 307, 257, 7006, 295, 264, 2010, 295, 24922, 13, 467, 575, 281, 1320, 807, 309, 294, 1668, 281, 1884, 257, 17884, 13, 407, 341, 8539, 486, 406, 312, 1075, 281, 1884, 257, 17884, 13, 961, 311, 1190, 309, 13, 1033, 11, 309, 486, 8460, 364, 6713, 13, 961, 311, 536, 264, 6713, 13, 883, 10711, 712, 47479, 337, 2010, 24922, 13, 286, 500, 380, 458, 577, 309, 1985, 13], "avg_logprob": -0.45865886223812896, "compression_ratio": 1.8165938864628821, "no_speech_prob": 4.708766937255859e-06, "words": [{"start": 1965.14, "end": 1965.4, "word": "The", "probability": 0.4052734375}, {"start": 1965.4, "end": 1965.68, "word": " cylinder", "probability": 0.7568359375}, {"start": 1965.68, "end": 1965.98, "word": " has", "probability": 0.87841796875}, {"start": 1965.98, "end": 1966.24, "word": " two", "probability": 0.767578125}, {"start": 1966.24, "end": 1966.74, "word": " dependencies.", "probability": 0.7177734375}, {"start": 1967.52, "end": 1967.6, "word": " The", "probability": 0.7138671875}, {"start": 1967.6, "end": 1967.7, "word": " first", "probability": 0.87109375}, {"start": 1967.7, "end": 1968.1, "word": " dependency", "probability": 0.875}, {"start": 1968.1, "end": 1968.64, "word": " is", "probability": 0.86865234375}, {"start": 1968.64, "end": 1968.76, "word": " an", "probability": 0.51953125}, {"start": 1968.76, "end": 1968.96, "word": " object", "probability": 0.953125}, {"start": 1968.96, "end": 1969.1, "word": " of", "probability": 0.73583984375}, {"start": 1969.1, "end": 1969.2, "word": " the", "probability": 0.4619140625}, {"start": 1969.2, "end": 1969.34, "word": " type", "probability": 0.5625}, {"start": 1969.34, "end": 1969.34, "word": " of", "probability": 0.445068359375}, {"start": 1969.34, "end": 1969.66, "word": " valve.", "probability": 0.68212890625}, {"start": 1970.26, "end": 1970.5, "word": " This", "probability": 0.491455078125}, {"start": 1970.5, "end": 1970.64, "word": " is", "probability": 0.63037109375}, {"start": 1970.64, "end": 1971.0, "word": " solvable.", "probability": 0.55517578125}, {"start": 1971.52, "end": 1971.64, "word": " The", "probability": 0.84765625}, {"start": 1971.64, "end": 1971.7, "word": " second", "probability": 0.85107421875}, {"start": 1971.7, "end": 1972.12, "word": " dependency", "probability": 0.9423828125}, {"start": 1972.12, "end": 1973.2, "word": " is", "probability": 0.79443359375}, {"start": 1973.2, "end": 1973.68, "word": " a", "probability": 0.318603515625}, {"start": 1973.68, "end": 1974.16, "word": " variable", "probability": 0.403076171875}, {"start": 1974.16, "end": 1974.68, "word": " of", "probability": 0.77392578125}, {"start": 1974.68, "end": 1974.84, "word": " the", "probability": 0.724609375}, {"start": 1974.84, "end": 1974.86, "word": " type", "probability": 0.91259765625}, {"start": 1974.86, "end": 1974.9, "word": " of", "probability": 0.8271484375}, {"start": 1974.9, "end": 1975.24, "word": " integer.", "probability": 0.421630859375}, {"start": 1975.92, "end": 1976.36, "word": " It", "probability": 0.595703125}, {"start": 1976.36, "end": 1976.48, "word": " has", "probability": 0.210205078125}, {"start": 1976.48, "end": 1976.62, "word": " to", "probability": 0.97021484375}, {"start": 1976.62, "end": 1976.84, "word": " pass", "probability": 0.293701171875}, {"start": 1976.84, "end": 1976.92, "word": " through", "probability": 0.71337890625}, {"start": 1976.92, "end": 1977.0, "word": " it", "probability": 0.326171875}, {"start": 1977.0, "end": 1977.16, "word": " in", "probability": 0.51708984375}, {"start": 1977.16, "end": 1977.16, "word": " order", "probability": 0.91748046875}, {"start": 1977.16, "end": 1977.44, "word": " to", "probability": 0.82275390625}, {"start": 1977.44, "end": 1977.64, "word": " create", "probability": 0.1842041015625}, {"start": 1977.64, "end": 1977.78, "word": " a", "probability": 0.71728515625}, {"start": 1977.78, "end": 1978.04, "word": " cylinder.", "probability": 0.76953125}, {"start": 1978.24, "end": 1978.36, "word": " So", "probability": 0.34521484375}, {"start": 1978.36, "end": 1978.5, "word": " this", "probability": 0.447265625}, {"start": 1978.5, "end": 1978.6, "word": " gate", "probability": 0.353515625}, {"start": 1978.6, "end": 1978.74, "word": " will", "probability": 0.4814453125}, {"start": 1978.74, "end": 1978.78, "word": " not", "probability": 0.9296875}, {"start": 1978.78, "end": 1979.12, "word": " be", "probability": 0.7900390625}, {"start": 1979.12, "end": 1979.12, "word": " able", "probability": 0.95068359375}, {"start": 1979.12, "end": 1979.22, "word": " to", "probability": 0.96728515625}, {"start": 1979.22, "end": 1979.38, "word": " create", "probability": 0.76318359375}, {"start": 1979.38, "end": 1979.54, "word": " a", "probability": 0.91064453125}, {"start": 1979.54, "end": 1979.8, "word": " cylinder.", "probability": 0.861328125}, {"start": 1979.96, "end": 1980.08, "word": " Let's", "probability": 0.6185302734375}, {"start": 1980.08, "end": 1980.3, "word": " run", "probability": 0.72607421875}, {"start": 1980.3, "end": 1980.7, "word": " it.", "probability": 0.296875}, {"start": 1982.78, "end": 1983.22, "word": " Okay,", "probability": 0.31982421875}, {"start": 1983.26, "end": 1983.38, "word": " it", "probability": 0.70361328125}, {"start": 1983.38, "end": 1983.44, "word": " will", "probability": 0.436279296875}, {"start": 1983.44, "end": 1983.64, "word": " generate", "probability": 0.11474609375}, {"start": 1983.64, "end": 1983.8, "word": " an", "probability": 0.662109375}, {"start": 1983.8, "end": 1983.98, "word": " error.", "probability": 0.8623046875}, {"start": 1984.06, "end": 1984.3, "word": " Let's", "probability": 0.9482421875}, {"start": 1984.3, "end": 1984.54, "word": " see", "probability": 0.56103515625}, {"start": 1984.54, "end": 1984.7, "word": " the", "probability": 0.759765625}, {"start": 1984.7, "end": 1984.96, "word": " error.", "probability": 0.85107421875}, {"start": 1987.58, "end": 1988.02, "word": " No", "probability": 0.75634765625}, {"start": 1988.02, "end": 1988.56, "word": " injectable", "probability": 0.96826171875}, {"start": 1988.56, "end": 1989.06, "word": " constructor", "probability": 0.79931640625}, {"start": 1989.06, "end": 1989.34, "word": " for", "probability": 0.94287109375}, {"start": 1989.34, "end": 1989.84, "word": " type", "probability": 0.9521484375}, {"start": 1989.84, "end": 1991.68, "word": " integer.", "probability": 0.5517578125}, {"start": 1991.76, "end": 1991.82, "word": " I", "probability": 0.79541015625}, {"start": 1991.82, "end": 1991.84, "word": " don't", "probability": 0.850830078125}, {"start": 1991.84, "end": 1992.0, "word": " know", "probability": 0.8681640625}, {"start": 1992.0, "end": 1992.36, "word": " how", "probability": 0.919921875}, {"start": 1992.36, "end": 1993.04, "word": " it", "probability": 0.27001953125}, {"start": 1993.04, "end": 1993.32, "word": " works.", "probability": 0.396728515625}], "temperature": 1.0}, {"id": 76, "seek": 201675, "start": 1994.27, "end": 2016.75, "text": "So this is also what we want to do, we want to do the car module is the solution to this problem. The first thing we want to do is to give a name to this integer. You say named and give it any name, for example, I want to say cylinder size or let's say C size.", "tokens": [6455, 341, 307, 611, 437, 321, 528, 281, 360, 11, 321, 528, 281, 360, 264, 1032, 10088, 307, 264, 3827, 281, 341, 1154, 13, 440, 700, 551, 321, 528, 281, 360, 307, 281, 976, 257, 1315, 281, 341, 24922, 13, 509, 584, 4926, 293, 976, 309, 604, 1315, 11, 337, 1365, 11, 286, 528, 281, 584, 17884, 2744, 420, 718, 311, 584, 383, 2744, 13], "avg_logprob": -0.5000000288992217, "compression_ratio": 1.6149068322981366, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1994.27, "end": 1994.49, "word": "So", "probability": 0.143310546875}, {"start": 1994.49, "end": 1994.67, "word": " this", "probability": 0.2578125}, {"start": 1994.67, "end": 1994.77, "word": " is", "probability": 0.6875}, {"start": 1994.77, "end": 1994.95, "word": " also", "probability": 0.365234375}, {"start": 1994.95, "end": 1995.13, "word": " what", "probability": 0.6162109375}, {"start": 1995.13, "end": 1995.27, "word": " we", "probability": 0.837890625}, {"start": 1995.27, "end": 1995.33, "word": " want", "probability": 0.251708984375}, {"start": 1995.33, "end": 1995.33, "word": " to", "probability": 0.9658203125}, {"start": 1995.33, "end": 1995.59, "word": " do,", "probability": 0.87841796875}, {"start": 1995.83, "end": 1995.85, "word": " we", "probability": 0.39208984375}, {"start": 1995.85, "end": 1996.01, "word": " want", "probability": 0.8349609375}, {"start": 1996.01, "end": 1996.11, "word": " to", "probability": 0.95556640625}, {"start": 1996.11, "end": 1996.37, "word": " do", "probability": 0.48095703125}, {"start": 1996.37, "end": 1996.75, "word": " the", "probability": 0.348876953125}, {"start": 1996.75, "end": 1996.93, "word": " car", "probability": 0.72314453125}, {"start": 1996.93, "end": 1997.27, "word": " module", "probability": 0.78466796875}, {"start": 1997.27, "end": 1997.51, "word": " is", "probability": 0.389404296875}, {"start": 1997.51, "end": 1997.69, "word": " the", "probability": 0.8330078125}, {"start": 1997.69, "end": 1997.89, "word": " solution", "probability": 0.8173828125}, {"start": 1997.89, "end": 1998.09, "word": " to", "probability": 0.77392578125}, {"start": 1998.09, "end": 1998.75, "word": " this", "probability": 0.87890625}, {"start": 1998.75, "end": 1999.33, "word": " problem.", "probability": 0.8525390625}, {"start": 2000.29, "end": 2000.73, "word": " The", "probability": 0.450439453125}, {"start": 2000.73, "end": 2000.87, "word": " first", "probability": 0.8935546875}, {"start": 2000.87, "end": 2001.05, "word": " thing", "probability": 0.904296875}, {"start": 2001.05, "end": 2001.17, "word": " we", "probability": 0.79248046875}, {"start": 2001.17, "end": 2001.27, "word": " want", "probability": 0.488525390625}, {"start": 2001.27, "end": 2001.27, "word": " to", "probability": 0.96484375}, {"start": 2001.27, "end": 2001.45, "word": " do", "probability": 0.89208984375}, {"start": 2001.45, "end": 2001.63, "word": " is", "probability": 0.82421875}, {"start": 2001.63, "end": 2001.73, "word": " to", "probability": 0.37451171875}, {"start": 2001.73, "end": 2001.95, "word": " give", "probability": 0.7255859375}, {"start": 2001.95, "end": 2002.05, "word": " a", "probability": 0.84619140625}, {"start": 2002.05, "end": 2002.35, "word": " name", "probability": 0.8583984375}, {"start": 2002.35, "end": 2002.91, "word": " to", "probability": 0.69482421875}, {"start": 2002.91, "end": 2002.97, "word": " this", "probability": 0.86669921875}, {"start": 2002.97, "end": 2003.33, "word": " integer.", "probability": 0.85302734375}, {"start": 2004.81, "end": 2005.03, "word": " You", "probability": 0.2327880859375}, {"start": 2005.03, "end": 2006.07, "word": " say", "probability": 0.495361328125}, {"start": 2006.07, "end": 2006.87, "word": " named", "probability": 0.404052734375}, {"start": 2006.87, "end": 2008.21, "word": " and", "probability": 0.399169921875}, {"start": 2008.21, "end": 2009.23, "word": " give", "probability": 0.62890625}, {"start": 2009.23, "end": 2009.55, "word": " it", "probability": 0.77685546875}, {"start": 2009.55, "end": 2010.83, "word": " any", "probability": 0.8076171875}, {"start": 2010.83, "end": 2011.05, "word": " name,", "probability": 0.8720703125}, {"start": 2011.13, "end": 2011.27, "word": " for", "probability": 0.8193359375}, {"start": 2011.27, "end": 2011.37, "word": " example,", "probability": 0.95654296875}, {"start": 2011.43, "end": 2011.43, "word": " I", "probability": 0.77001953125}, {"start": 2011.43, "end": 2011.57, "word": " want", "probability": 0.63330078125}, {"start": 2011.57, "end": 2011.61, "word": " to", "probability": 0.9677734375}, {"start": 2011.61, "end": 2011.77, "word": " say", "probability": 0.28271484375}, {"start": 2011.77, "end": 2012.41, "word": " cylinder", "probability": 0.73876953125}, {"start": 2012.41, "end": 2013.55, "word": " size", "probability": 0.7109375}, {"start": 2013.55, "end": 2014.73, "word": " or", "probability": 0.61572265625}, {"start": 2014.73, "end": 2015.09, "word": " let's", "probability": 0.812255859375}, {"start": 2015.09, "end": 2015.09, "word": " say", "probability": 0.460205078125}, {"start": 2015.09, "end": 2016.29, "word": " C", "probability": 0.307861328125}, {"start": 2016.29, "end": 2016.75, "word": " size.", "probability": 0.626953125}], "temperature": 1.0}, {"id": 77, "seek": 204313, "start": 2020.85, "end": 2043.13, "text": "At Named, I'm doing an implement here for this At Named, it's going to say here it's going to give you an error. I'm doing an import for it from this path. Why did I give it a name? Because now in the char module, if I find an integer with this name, I'm going to give it this value.", "tokens": [18684, 426, 3475, 11, 286, 478, 884, 364, 4445, 510, 337, 341, 1711, 426, 3475, 11, 309, 311, 516, 281, 584, 510, 309, 311, 516, 281, 976, 291, 364, 6713, 13, 286, 478, 884, 364, 974, 337, 309, 490, 341, 3100, 13, 1545, 630, 286, 976, 309, 257, 1315, 30, 1436, 586, 294, 264, 1290, 10088, 11, 498, 286, 915, 364, 24922, 365, 341, 1315, 11, 286, 478, 516, 281, 976, 309, 341, 2158, 13], "avg_logprob": -0.5723684045829271, "compression_ratio": 1.6647058823529413, "no_speech_prob": 7.092952728271484e-06, "words": [{"start": 2020.85, "end": 2021.31, "word": "At", "probability": 0.3115234375}, {"start": 2021.31, "end": 2021.77, "word": " Named,", "probability": 0.61309814453125}, {"start": 2021.99, "end": 2022.31, "word": " I'm", "probability": 0.3818359375}, {"start": 2022.31, "end": 2022.71, "word": " doing", "probability": 0.2296142578125}, {"start": 2022.71, "end": 2022.87, "word": " an", "probability": 0.354736328125}, {"start": 2022.87, "end": 2023.11, "word": " implement", "probability": 0.41015625}, {"start": 2023.11, "end": 2023.39, "word": " here", "probability": 0.42333984375}, {"start": 2023.39, "end": 2023.39, "word": " for", "probability": 0.333251953125}, {"start": 2023.39, "end": 2023.97, "word": " this", "probability": 0.19482421875}, {"start": 2023.97, "end": 2024.85, "word": " At", "probability": 0.1627197265625}, {"start": 2024.85, "end": 2025.13, "word": " Named,", "probability": 0.908203125}, {"start": 2025.13, "end": 2025.31, "word": " it's", "probability": 0.36505126953125}, {"start": 2025.31, "end": 2025.31, "word": " going", "probability": 0.60009765625}, {"start": 2025.31, "end": 2025.31, "word": " to", "probability": 0.96533203125}, {"start": 2025.31, "end": 2025.39, "word": " say", "probability": 0.26708984375}, {"start": 2025.39, "end": 2025.61, "word": " here", "probability": 0.37060546875}, {"start": 2025.61, "end": 2025.79, "word": " it's", "probability": 0.5772705078125}, {"start": 2025.79, "end": 2025.81, "word": " going", "probability": 0.91943359375}, {"start": 2025.81, "end": 2025.81, "word": " to", "probability": 0.966796875}, {"start": 2025.81, "end": 2025.97, "word": " give", "probability": 0.283935546875}, {"start": 2025.97, "end": 2026.17, "word": " you", "probability": 0.62744140625}, {"start": 2026.17, "end": 2026.23, "word": " an", "probability": 0.81884765625}, {"start": 2026.23, "end": 2026.43, "word": " error.", "probability": 0.85400390625}, {"start": 2031.09, "end": 2031.55, "word": " I'm", "probability": 0.606201171875}, {"start": 2031.55, "end": 2031.61, "word": " doing", "probability": 0.47509765625}, {"start": 2031.61, "end": 2031.71, "word": " an", "probability": 0.55322265625}, {"start": 2031.71, "end": 2032.07, "word": " import", "probability": 0.88623046875}, {"start": 2032.07, "end": 2032.21, "word": " for", "probability": 0.55517578125}, {"start": 2032.21, "end": 2032.53, "word": " it", "probability": 0.6494140625}, {"start": 2032.53, "end": 2033.41, "word": " from", "probability": 0.66796875}, {"start": 2033.41, "end": 2033.89, "word": " this", "probability": 0.6904296875}, {"start": 2033.89, "end": 2034.33, "word": " path.", "probability": 0.410400390625}, {"start": 2035.87, "end": 2036.33, "word": " Why", "probability": 0.35888671875}, {"start": 2036.33, "end": 2036.37, "word": " did", "probability": 0.888671875}, {"start": 2036.37, "end": 2036.41, "word": " I", "probability": 0.53662109375}, {"start": 2036.41, "end": 2036.61, "word": " give", "probability": 0.705078125}, {"start": 2036.61, "end": 2036.77, "word": " it", "probability": 0.83203125}, {"start": 2036.77, "end": 2036.85, "word": " a", "probability": 0.98974609375}, {"start": 2036.85, "end": 2037.09, "word": " name?", "probability": 0.8828125}, {"start": 2037.89, "end": 2038.31, "word": " Because", "probability": 0.68310546875}, {"start": 2038.31, "end": 2038.57, "word": " now", "probability": 0.7529296875}, {"start": 2038.57, "end": 2038.69, "word": " in", "probability": 0.86669921875}, {"start": 2038.69, "end": 2038.81, "word": " the", "probability": 0.83984375}, {"start": 2038.81, "end": 2038.93, "word": " char", "probability": 0.468994140625}, {"start": 2038.93, "end": 2039.29, "word": " module,", "probability": 0.84521484375}, {"start": 2039.61, "end": 2039.97, "word": " if", "probability": 0.60888671875}, {"start": 2039.97, "end": 2040.47, "word": " I", "probability": 0.9599609375}, {"start": 2040.47, "end": 2040.61, "word": " find", "probability": 0.6572265625}, {"start": 2040.61, "end": 2040.75, "word": " an", "probability": 0.91259765625}, {"start": 2040.75, "end": 2041.05, "word": " integer", "probability": 0.86767578125}, {"start": 2041.05, "end": 2041.25, "word": " with", "probability": 0.78173828125}, {"start": 2041.25, "end": 2041.85, "word": " this", "probability": 0.76806640625}, {"start": 2041.85, "end": 2041.85, "word": " name,", "probability": 0.89892578125}, {"start": 2042.39, "end": 2042.51, "word": " I'm", "probability": 0.523681640625}, {"start": 2042.51, "end": 2042.51, "word": " going", "probability": 0.77685546875}, {"start": 2042.51, "end": 2042.51, "word": " to", "probability": 0.9697265625}, {"start": 2042.51, "end": 2042.69, "word": " give", "probability": 0.350341796875}, {"start": 2042.69, "end": 2042.83, "word": " it", "probability": 0.8798828125}, {"start": 2042.83, "end": 2042.91, "word": " this", "probability": 0.77783203125}, {"start": 2042.91, "end": 2043.13, "word": " value.", "probability": 0.94921875}], "temperature": 1.0}, {"id": 78, "seek": 205396, "start": 2044.15, "end": 2053.97, "text": "For example, I send values from outside the whole tree. The tree does not enter inside it, nor does it need this or that. From the car module, I direct it and give it everything it needs.", "tokens": [12587, 1365, 11, 286, 2845, 4190, 490, 2380, 264, 1379, 4230, 13, 440, 4230, 775, 406, 3242, 1854, 309, 11, 6051, 775, 309, 643, 341, 420, 300, 13, 3358, 264, 1032, 10088, 11, 286, 2047, 309, 293, 976, 309, 1203, 309, 2203, 13], "avg_logprob": -0.615411941300739, "compression_ratio": 1.4166666666666667, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 2044.1499999999999, "end": 2044.53, "word": "For", "probability": 0.11163330078125}, {"start": 2044.53, "end": 2044.53, "word": " example,", "probability": 0.8583984375}, {"start": 2044.71, "end": 2044.71, "word": " I", "probability": 0.59619140625}, {"start": 2044.71, "end": 2044.97, "word": " send", "probability": 0.060791015625}, {"start": 2044.97, "end": 2045.29, "word": " values", "probability": 0.61962890625}, {"start": 2045.29, "end": 2045.73, "word": " from", "probability": 0.380126953125}, {"start": 2045.73, "end": 2046.83, "word": " outside", "probability": 0.3740234375}, {"start": 2046.83, "end": 2046.99, "word": " the", "probability": 0.57666015625}, {"start": 2046.99, "end": 2047.01, "word": " whole", "probability": 0.12445068359375}, {"start": 2047.01, "end": 2047.25, "word": " tree.", "probability": 0.78857421875}, {"start": 2047.57, "end": 2047.67, "word": " The", "probability": 0.414794921875}, {"start": 2047.67, "end": 2047.93, "word": " tree", "probability": 0.759765625}, {"start": 2047.93, "end": 2048.07, "word": " does", "probability": 0.646484375}, {"start": 2048.07, "end": 2048.13, "word": " not", "probability": 0.94580078125}, {"start": 2048.13, "end": 2048.39, "word": " enter", "probability": 0.44189453125}, {"start": 2048.39, "end": 2048.65, "word": " inside", "probability": 0.64013671875}, {"start": 2048.65, "end": 2048.89, "word": " it,", "probability": 0.5078125}, {"start": 2048.97, "end": 2049.11, "word": " nor", "probability": 0.58447265625}, {"start": 2049.11, "end": 2049.11, "word": " does", "probability": 0.63720703125}, {"start": 2049.11, "end": 2049.25, "word": " it", "probability": 0.89697265625}, {"start": 2049.25, "end": 2049.45, "word": " need", "probability": 0.1492919921875}, {"start": 2049.45, "end": 2049.53, "word": " this", "probability": 0.460205078125}, {"start": 2049.53, "end": 2050.33, "word": " or", "probability": 0.43212890625}, {"start": 2050.33, "end": 2050.89, "word": " that.", "probability": 0.8251953125}, {"start": 2051.19, "end": 2051.35, "word": " From", "probability": 0.52978515625}, {"start": 2051.35, "end": 2051.51, "word": " the", "probability": 0.85009765625}, {"start": 2051.51, "end": 2051.65, "word": " car", "probability": 0.477294921875}, {"start": 2051.65, "end": 2052.03, "word": " module,", "probability": 0.90380859375}, {"start": 2052.51, "end": 2052.61, "word": " I", "probability": 0.92333984375}, {"start": 2052.61, "end": 2052.83, "word": " direct", "probability": 0.46875}, {"start": 2052.83, "end": 2052.97, "word": " it", "probability": 0.65576171875}, {"start": 2052.97, "end": 2053.05, "word": " and", "probability": 0.7626953125}, {"start": 2053.05, "end": 2053.25, "word": " give", "probability": 0.83984375}, {"start": 2053.25, "end": 2053.37, "word": " it", "probability": 0.896484375}, {"start": 2053.37, "end": 2053.53, "word": " everything", "probability": 0.62646484375}, {"start": 2053.53, "end": 2053.67, "word": " it", "probability": 0.91064453125}, {"start": 2053.67, "end": 2053.97, "word": " needs.", "probability": 0.8818359375}], "temperature": 1.0}, {"id": 79, "seek": 208257, "start": 2054.93, "end": 2082.57, "text": " So now I will go to the car module with me and we will do command binding I need the binding in case if I have an interface I want to give it a class or abstract class I want to specify what concrete class it will create or a class that does not have an injectable constructor like if I use an external library I want to specify how it will create it a provider to create it or the last case if I have a constructor that takes a parameter", "tokens": [407, 586, 286, 486, 352, 281, 264, 1032, 10088, 365, 385, 293, 321, 486, 360, 5622, 17359, 286, 643, 264, 17359, 294, 1389, 498, 286, 362, 364, 9226, 286, 528, 281, 976, 309, 257, 1508, 420, 12649, 1508, 286, 528, 281, 16500, 437, 9859, 1508, 309, 486, 1884, 420, 257, 1508, 300, 775, 406, 362, 364, 10711, 712, 47479, 411, 498, 286, 764, 364, 8320, 6405, 286, 528, 281, 16500, 577, 309, 486, 1884, 309, 257, 12398, 281, 1884, 309, 420, 264, 1036, 1389, 498, 286, 362, 257, 47479, 300, 2516, 257, 13075], "avg_logprob": -0.4936835115894358, "compression_ratio": 1.968609865470852, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 2054.93, "end": 2055.15, "word": " So", "probability": 0.16748046875}, {"start": 2055.15, "end": 2055.35, "word": " now", "probability": 0.66943359375}, {"start": 2055.35, "end": 2055.51, "word": " I", "probability": 0.472412109375}, {"start": 2055.51, "end": 2055.59, "word": " will", "probability": 0.4326171875}, {"start": 2055.59, "end": 2055.67, "word": " go", "probability": 0.826171875}, {"start": 2055.67, "end": 2056.13, "word": " to", "probability": 0.424072265625}, {"start": 2056.13, "end": 2057.41, "word": " the", "probability": 0.556640625}, {"start": 2057.41, "end": 2057.55, "word": " car", "probability": 0.332275390625}, {"start": 2057.55, "end": 2057.81, "word": " module", "probability": 0.853515625}, {"start": 2057.81, "end": 2057.81, "word": " with", "probability": 0.1849365234375}, {"start": 2057.81, "end": 2057.81, "word": " me", "probability": 0.46875}, {"start": 2057.81, "end": 2058.89, "word": " and", "probability": 0.3046875}, {"start": 2058.89, "end": 2059.77, "word": " we", "probability": 0.2159423828125}, {"start": 2059.77, "end": 2059.89, "word": " will", "probability": 0.61572265625}, {"start": 2059.89, "end": 2060.09, "word": " do", "probability": 0.338134765625}, {"start": 2060.09, "end": 2060.41, "word": " command", "probability": 0.490966796875}, {"start": 2060.41, "end": 2060.81, "word": " binding", "probability": 0.84033203125}, {"start": 2060.81, "end": 2061.71, "word": " I", "probability": 0.1728515625}, {"start": 2061.71, "end": 2062.21, "word": " need", "probability": 0.6689453125}, {"start": 2062.21, "end": 2062.33, "word": " the", "probability": 0.291015625}, {"start": 2062.33, "end": 2062.33, "word": " binding", "probability": 0.85302734375}, {"start": 2062.33, "end": 2062.77, "word": " in", "probability": 0.48681640625}, {"start": 2062.77, "end": 2063.19, "word": " case", "probability": 0.7548828125}, {"start": 2063.19, "end": 2063.45, "word": " if", "probability": 0.55419921875}, {"start": 2063.45, "end": 2063.73, "word": " I", "probability": 0.56689453125}, {"start": 2063.73, "end": 2063.89, "word": " have", "probability": 0.67138671875}, {"start": 2063.89, "end": 2063.99, "word": " an", "probability": 0.77490234375}, {"start": 2063.99, "end": 2064.59, "word": " interface", "probability": 0.896484375}, {"start": 2064.59, "end": 2065.47, "word": " I", "probability": 0.3642578125}, {"start": 2065.47, "end": 2065.59, "word": " want", "probability": 0.318359375}, {"start": 2065.59, "end": 2065.63, "word": " to", "probability": 0.947265625}, {"start": 2065.63, "end": 2065.81, "word": " give", "probability": 0.72314453125}, {"start": 2065.81, "end": 2066.03, "word": " it", "probability": 0.78857421875}, {"start": 2066.03, "end": 2066.33, "word": " a", "probability": 0.82861328125}, {"start": 2066.33, "end": 2066.65, "word": " class", "probability": 0.96142578125}, {"start": 2066.65, "end": 2066.95, "word": " or", "probability": 0.76220703125}, {"start": 2066.95, "end": 2067.29, "word": " abstract", "probability": 0.69580078125}, {"start": 2067.29, "end": 2067.81, "word": " class", "probability": 0.9443359375}, {"start": 2067.81, "end": 2067.95, "word": " I", "probability": 0.3759765625}, {"start": 2067.95, "end": 2068.01, "word": " want", "probability": 0.58349609375}, {"start": 2068.01, "end": 2068.09, "word": " to", "probability": 0.9619140625}, {"start": 2068.09, "end": 2068.25, "word": " specify", "probability": 0.331787109375}, {"start": 2068.25, "end": 2068.53, "word": " what", "probability": 0.4609375}, {"start": 2068.53, "end": 2068.97, "word": " concrete", "probability": 0.33984375}, {"start": 2068.97, "end": 2069.33, "word": " class", "probability": 0.9482421875}, {"start": 2069.33, "end": 2069.47, "word": " it", "probability": 0.467529296875}, {"start": 2069.47, "end": 2069.53, "word": " will", "probability": 0.37890625}, {"start": 2069.53, "end": 2069.73, "word": " create", "probability": 0.65869140625}, {"start": 2069.73, "end": 2070.87, "word": " or", "probability": 0.625}, {"start": 2070.87, "end": 2071.19, "word": " a", "probability": 0.69140625}, {"start": 2071.19, "end": 2071.61, "word": " class", "probability": 0.97314453125}, {"start": 2071.61, "end": 2071.77, "word": " that", "probability": 0.6044921875}, {"start": 2071.77, "end": 2071.87, "word": " does", "probability": 0.673828125}, {"start": 2071.87, "end": 2071.87, "word": " not", "probability": 0.93212890625}, {"start": 2071.87, "end": 2072.11, "word": " have", "probability": 0.78466796875}, {"start": 2072.11, "end": 2072.23, "word": " an", "probability": 0.3603515625}, {"start": 2072.23, "end": 2072.67, "word": " injectable", "probability": 0.981201171875}, {"start": 2072.67, "end": 2073.29, "word": " constructor", "probability": 0.90771484375}, {"start": 2073.29, "end": 2074.49, "word": " like", "probability": 0.417724609375}, {"start": 2074.49, "end": 2074.65, "word": " if", "probability": 0.69091796875}, {"start": 2074.65, "end": 2074.73, "word": " I", "probability": 0.861328125}, {"start": 2074.73, "end": 2074.99, "word": " use", "probability": 0.529296875}, {"start": 2074.99, "end": 2075.45, "word": " an", "probability": 0.7099609375}, {"start": 2075.45, "end": 2075.73, "word": " external", "probability": 0.381103515625}, {"start": 2075.73, "end": 2075.73, "word": " library", "probability": 0.8818359375}, {"start": 2075.73, "end": 2075.91, "word": " I", "probability": 0.7138671875}, {"start": 2075.91, "end": 2076.01, "word": " want", "probability": 0.583984375}, {"start": 2076.01, "end": 2076.05, "word": " to", "probability": 0.9599609375}, {"start": 2076.05, "end": 2076.23, "word": " specify", "probability": 0.89306640625}, {"start": 2076.23, "end": 2076.53, "word": " how", "probability": 0.88525390625}, {"start": 2076.53, "end": 2076.63, "word": " it", "probability": 0.65771484375}, {"start": 2076.63, "end": 2076.69, "word": " will", "probability": 0.56787109375}, {"start": 2076.69, "end": 2076.89, "word": " create", "probability": 0.828125}, {"start": 2076.89, "end": 2077.25, "word": " it", "probability": 0.755859375}, {"start": 2077.25, "end": 2077.55, "word": " a", "probability": 0.2464599609375}, {"start": 2077.55, "end": 2077.93, "word": " provider", "probability": 0.87548828125}, {"start": 2077.93, "end": 2078.17, "word": " to", "probability": 0.67236328125}, {"start": 2078.17, "end": 2078.47, "word": " create", "probability": 0.751953125}, {"start": 2078.47, "end": 2078.87, "word": " it", "probability": 0.9423828125}, {"start": 2078.87, "end": 2079.49, "word": " or", "probability": 0.87451171875}, {"start": 2079.49, "end": 2079.65, "word": " the", "probability": 0.77783203125}, {"start": 2079.65, "end": 2080.07, "word": " last", "probability": 0.54150390625}, {"start": 2080.07, "end": 2080.07, "word": " case", "probability": 0.8515625}, {"start": 2080.07, "end": 2080.57, "word": " if", "probability": 0.30322265625}, {"start": 2080.57, "end": 2080.97, "word": " I", "probability": 0.86767578125}, {"start": 2080.97, "end": 2081.15, "word": " have", "probability": 0.93505859375}, {"start": 2081.15, "end": 2081.27, "word": " a", "probability": 0.9609375}, {"start": 2081.27, "end": 2081.71, "word": " constructor", "probability": 0.9150390625}, {"start": 2081.71, "end": 2081.87, "word": " that", "probability": 0.80078125}, {"start": 2081.87, "end": 2082.05, "word": " takes", "probability": 0.74658203125}, {"start": 2082.05, "end": 2082.19, "word": " a", "probability": 0.50927734375}, {"start": 2082.19, "end": 2082.57, "word": " parameter", "probability": 0.96533203125}], "temperature": 1.0}, {"id": 80, "seek": 209628, "start": 2083.6, "end": 2096.28, "text": "primitive type and it does not need a value to start I will also make it a bind this is a bind and I will give it the name of class A now integer dot class", "tokens": [1424, 332, 2187, 2010, 293, 309, 775, 406, 643, 257, 2158, 281, 722, 286, 486, 611, 652, 309, 257, 14786, 341, 307, 257, 14786, 293, 286, 486, 976, 309, 264, 1315, 295, 1508, 316, 586, 24922, 5893, 1508], "avg_logprob": -0.6822916483267759, "compression_ratio": 1.3839285714285714, "no_speech_prob": 4.947185516357422e-06, "words": [{"start": 2083.6, "end": 2084.04, "word": "primitive", "probability": 0.7304280598958334}, {"start": 2084.04, "end": 2084.28, "word": " type", "probability": 0.9033203125}, {"start": 2084.28, "end": 2084.38, "word": " and", "probability": 0.2010498046875}, {"start": 2084.38, "end": 2084.46, "word": " it", "probability": 0.340576171875}, {"start": 2084.46, "end": 2084.5, "word": " does", "probability": 0.4443359375}, {"start": 2084.5, "end": 2084.5, "word": " not", "probability": 0.8193359375}, {"start": 2084.5, "end": 2084.72, "word": " need", "probability": 0.81494140625}, {"start": 2084.72, "end": 2084.84, "word": " a", "probability": 0.51806640625}, {"start": 2084.84, "end": 2085.1, "word": " value", "probability": 0.849609375}, {"start": 2085.1, "end": 2085.66, "word": " to", "probability": 0.791015625}, {"start": 2085.66, "end": 2085.94, "word": " start", "probability": 0.10723876953125}, {"start": 2085.94, "end": 2086.7, "word": " I", "probability": 0.123779296875}, {"start": 2086.7, "end": 2087.2, "word": " will", "probability": 0.321044921875}, {"start": 2087.2, "end": 2087.32, "word": " also", "probability": 0.533203125}, {"start": 2087.32, "end": 2087.4, "word": " make", "probability": 0.35498046875}, {"start": 2087.4, "end": 2087.76, "word": " it", "probability": 0.55126953125}, {"start": 2087.76, "end": 2087.84, "word": " a", "probability": 0.46923828125}, {"start": 2087.84, "end": 2088.14, "word": " bind", "probability": 0.8349609375}, {"start": 2088.14, "end": 2090.54, "word": " this", "probability": 0.15576171875}, {"start": 2090.54, "end": 2090.62, "word": " is", "probability": 0.87548828125}, {"start": 2090.62, "end": 2090.64, "word": " a", "probability": 0.361083984375}, {"start": 2090.64, "end": 2090.86, "word": " bind", "probability": 0.93994140625}, {"start": 2090.86, "end": 2091.58, "word": " and", "probability": 0.6201171875}, {"start": 2091.58, "end": 2091.7, "word": " I", "probability": 0.7685546875}, {"start": 2091.7, "end": 2091.76, "word": " will", "probability": 0.73828125}, {"start": 2091.76, "end": 2091.96, "word": " give", "probability": 0.6513671875}, {"start": 2091.96, "end": 2092.12, "word": " it", "probability": 0.76611328125}, {"start": 2092.12, "end": 2092.16, "word": " the", "probability": 0.26513671875}, {"start": 2092.16, "end": 2092.34, "word": " name", "probability": 0.75244140625}, {"start": 2092.34, "end": 2092.48, "word": " of", "probability": 0.453857421875}, {"start": 2092.48, "end": 2092.64, "word": " class", "probability": 0.57958984375}, {"start": 2092.64, "end": 2093.22, "word": " A", "probability": 0.1318359375}, {"start": 2093.22, "end": 2093.7, "word": " now", "probability": 0.355224609375}, {"start": 2093.7, "end": 2094.52, "word": " integer", "probability": 0.69287109375}, {"start": 2094.52, "end": 2095.82, "word": " dot", "probability": 0.70751953125}, {"start": 2095.82, "end": 2096.28, "word": " class", "probability": 0.966796875}], "temperature": 1.0}, {"id": 81, "seek": 212625, "start": 2096.87, "end": 2126.25, "text": " The value that I want to bind is integer, not the integer that we made I want to tell him annotated with names dot named csize Not the name of the variable csize I want to tell him if you find a variable of integer type I give him or make annotation with this name Go and make to instance", "tokens": [440, 2158, 300, 286, 528, 281, 14786, 307, 24922, 11, 406, 264, 24922, 300, 321, 1027, 286, 528, 281, 980, 796, 25339, 770, 365, 5288, 5893, 4926, 269, 27553, 1726, 264, 1315, 295, 264, 7006, 269, 27553, 286, 528, 281, 980, 796, 498, 291, 915, 257, 7006, 295, 24922, 2010, 286, 976, 796, 420, 652, 48654, 365, 341, 1315, 1037, 293, 652, 281, 5197], "avg_logprob": -0.5629807692307692, "compression_ratio": 1.7409638554216869, "no_speech_prob": 0.401123046875, "words": [{"start": 2096.87, "end": 2097.49, "word": " The", "probability": 0.10369873046875}, {"start": 2097.49, "end": 2097.89, "word": " value", "probability": 0.71533203125}, {"start": 2097.89, "end": 2098.09, "word": " that", "probability": 0.448974609375}, {"start": 2098.09, "end": 2098.29, "word": " I", "probability": 0.83447265625}, {"start": 2098.29, "end": 2098.49, "word": " want", "probability": 0.51318359375}, {"start": 2098.49, "end": 2098.57, "word": " to", "probability": 0.9365234375}, {"start": 2098.57, "end": 2099.03, "word": " bind", "probability": 0.6396484375}, {"start": 2099.03, "end": 2099.37, "word": " is", "probability": 0.6455078125}, {"start": 2099.37, "end": 2099.99, "word": " integer,", "probability": 0.389892578125}, {"start": 2100.09, "end": 2100.25, "word": " not", "probability": 0.64111328125}, {"start": 2100.25, "end": 2100.45, "word": " the", "probability": 0.489990234375}, {"start": 2100.45, "end": 2100.73, "word": " integer", "probability": 0.27001953125}, {"start": 2100.73, "end": 2100.89, "word": " that", "probability": 0.59814453125}, {"start": 2100.89, "end": 2101.01, "word": " we", "probability": 0.78955078125}, {"start": 2101.01, "end": 2101.29, "word": " made", "probability": 0.2030029296875}, {"start": 2101.29, "end": 2102.81, "word": " I", "probability": 0.357666015625}, {"start": 2102.81, "end": 2103.13, "word": " want", "probability": 0.62060546875}, {"start": 2103.13, "end": 2103.19, "word": " to", "probability": 0.9697265625}, {"start": 2103.19, "end": 2103.35, "word": " tell", "probability": 0.5361328125}, {"start": 2103.35, "end": 2103.59, "word": " him", "probability": 0.52490234375}, {"start": 2103.59, "end": 2105.03, "word": " annotated", "probability": 0.960693359375}, {"start": 2105.03, "end": 2105.37, "word": " with", "probability": 0.7255859375}, {"start": 2105.37, "end": 2107.43, "word": " names", "probability": 0.77490234375}, {"start": 2107.43, "end": 2107.99, "word": " dot", "probability": 0.330810546875}, {"start": 2107.99, "end": 2108.47, "word": " named", "probability": 0.90380859375}, {"start": 2108.47, "end": 2110.47, "word": " csize", "probability": 0.4412841796875}, {"start": 2110.47, "end": 2111.79, "word": " Not", "probability": 0.431396484375}, {"start": 2111.79, "end": 2112.01, "word": " the", "probability": 0.8037109375}, {"start": 2112.01, "end": 2112.17, "word": " name", "probability": 0.378662109375}, {"start": 2112.17, "end": 2112.25, "word": " of", "probability": 0.70654296875}, {"start": 2112.25, "end": 2112.31, "word": " the", "probability": 0.85791015625}, {"start": 2112.31, "end": 2112.55, "word": " variable", "probability": 0.58349609375}, {"start": 2112.55, "end": 2113.09, "word": " csize", "probability": 0.72509765625}, {"start": 2113.09, "end": 2113.57, "word": " I", "probability": 0.5}, {"start": 2113.57, "end": 2113.77, "word": " want", "probability": 0.2880859375}, {"start": 2113.77, "end": 2113.77, "word": " to", "probability": 0.96728515625}, {"start": 2113.77, "end": 2113.91, "word": " tell", "probability": 0.76708984375}, {"start": 2113.91, "end": 2114.01, "word": " him", "probability": 0.9306640625}, {"start": 2114.01, "end": 2114.19, "word": " if", "probability": 0.4775390625}, {"start": 2114.19, "end": 2114.63, "word": " you", "probability": 0.75830078125}, {"start": 2114.63, "end": 2114.63, "word": " find", "probability": 0.52294921875}, {"start": 2114.63, "end": 2115.03, "word": " a", "probability": 0.81640625}, {"start": 2115.03, "end": 2115.45, "word": " variable", "probability": 0.86767578125}, {"start": 2115.45, "end": 2115.63, "word": " of", "probability": 0.671875}, {"start": 2115.63, "end": 2116.33, "word": " integer", "probability": 0.38427734375}, {"start": 2116.33, "end": 2116.39, "word": " type", "probability": 0.716796875}, {"start": 2116.39, "end": 2117.69, "word": " I", "probability": 0.45947265625}, {"start": 2117.69, "end": 2118.19, "word": " give", "probability": 0.3505859375}, {"start": 2118.19, "end": 2118.51, "word": " him", "probability": 0.489013671875}, {"start": 2118.51, "end": 2118.79, "word": " or", "probability": 0.56689453125}, {"start": 2118.79, "end": 2119.09, "word": " make", "probability": 0.409912109375}, {"start": 2119.09, "end": 2119.69, "word": " annotation", "probability": 0.6220703125}, {"start": 2119.69, "end": 2119.95, "word": " with", "probability": 0.64111328125}, {"start": 2119.95, "end": 2120.71, "word": " this", "probability": 0.765625}, {"start": 2120.71, "end": 2122.63, "word": " name", "probability": 0.8720703125}, {"start": 2122.63, "end": 2123.37, "word": " Go", "probability": 0.3359375}, {"start": 2123.37, "end": 2124.91, "word": " and", "probability": 0.463623046875}, {"start": 2124.91, "end": 2125.21, "word": " make", "probability": 0.38623046875}, {"start": 2125.21, "end": 2125.65, "word": " to", "probability": 0.8427734375}, {"start": 2125.65, "end": 2126.25, "word": " instance", "probability": 0.87548828125}], "temperature": 1.0}, {"id": 82, "seek": 214862, "start": 2127.26, "end": 2148.62, "text": " give it a value of 100. This is the meaning. This is the whole line to search for an integer variable called cSize and give it a value of 100. But of course, as we have seen, this cSize should be placed somewhere in the constructor.", "tokens": [976, 309, 257, 2158, 295, 2319, 13, 639, 307, 264, 3620, 13, 639, 307, 264, 1379, 1622, 281, 3164, 337, 364, 24922, 7006, 1219, 269, 50, 1125, 293, 976, 309, 257, 2158, 295, 2319, 13, 583, 295, 1164, 11, 382, 321, 362, 1612, 11, 341, 269, 50, 1125, 820, 312, 7074, 4079, 294, 264, 47479, 13], "avg_logprob": -0.565241253166868, "compression_ratio": 1.5129870129870129, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 2127.26, "end": 2127.62, "word": " give", "probability": 0.054534912109375}, {"start": 2127.62, "end": 2127.76, "word": " it", "probability": 0.31494140625}, {"start": 2127.76, "end": 2127.82, "word": " a", "probability": 0.363525390625}, {"start": 2127.82, "end": 2128.0, "word": " value", "probability": 0.85107421875}, {"start": 2128.0, "end": 2128.08, "word": " of", "probability": 0.72705078125}, {"start": 2128.08, "end": 2128.32, "word": " 100.", "probability": 0.75927734375}, {"start": 2129.94, "end": 2130.2, "word": " This", "probability": 0.40185546875}, {"start": 2130.2, "end": 2130.2, "word": " is", "probability": 0.77490234375}, {"start": 2130.2, "end": 2130.32, "word": " the", "probability": 0.416748046875}, {"start": 2130.32, "end": 2130.46, "word": " meaning.", "probability": 0.5224609375}, {"start": 2131.36, "end": 2131.88, "word": " This", "probability": 0.29296875}, {"start": 2131.88, "end": 2131.88, "word": " is", "probability": 0.38134765625}, {"start": 2131.88, "end": 2132.0, "word": " the", "probability": 0.70703125}, {"start": 2132.0, "end": 2132.04, "word": " whole", "probability": 0.5703125}, {"start": 2132.04, "end": 2132.28, "word": " line", "probability": 0.1719970703125}, {"start": 2132.28, "end": 2133.36, "word": " to", "probability": 0.498046875}, {"start": 2133.36, "end": 2133.92, "word": " search", "probability": 0.71044921875}, {"start": 2133.92, "end": 2134.52, "word": " for", "probability": 0.84814453125}, {"start": 2134.52, "end": 2134.6, "word": " an", "probability": 0.677734375}, {"start": 2134.6, "end": 2134.84, "word": " integer", "probability": 0.8544921875}, {"start": 2134.84, "end": 2135.44, "word": " variable", "probability": 0.7705078125}, {"start": 2135.44, "end": 2136.18, "word": " called", "probability": 0.330078125}, {"start": 2136.18, "end": 2136.92, "word": " cSize", "probability": 0.5253092447916666}, {"start": 2136.92, "end": 2137.92, "word": " and", "probability": 0.4423828125}, {"start": 2137.92, "end": 2138.22, "word": " give", "probability": 0.67431640625}, {"start": 2138.22, "end": 2138.42, "word": " it", "probability": 0.84912109375}, {"start": 2138.42, "end": 2138.5, "word": " a", "probability": 0.8935546875}, {"start": 2138.5, "end": 2138.8, "word": " value", "probability": 0.97265625}, {"start": 2138.8, "end": 2139.16, "word": " of", "probability": 0.9560546875}, {"start": 2139.16, "end": 2139.96, "word": " 100.", "probability": 0.8671875}, {"start": 2143.38, "end": 2143.9, "word": " But", "probability": 0.65576171875}, {"start": 2143.9, "end": 2144.08, "word": " of", "probability": 0.59375}, {"start": 2144.08, "end": 2144.14, "word": " course,", "probability": 0.95703125}, {"start": 2144.5, "end": 2144.56, "word": " as", "probability": 0.591796875}, {"start": 2144.56, "end": 2144.76, "word": " we", "probability": 0.9287109375}, {"start": 2144.76, "end": 2144.88, "word": " have", "probability": 0.4111328125}, {"start": 2144.88, "end": 2145.08, "word": " seen,", "probability": 0.86767578125}, {"start": 2145.74, "end": 2145.84, "word": " this", "probability": 0.292724609375}, {"start": 2145.84, "end": 2146.26, "word": " cSize", "probability": 0.9557291666666666}, {"start": 2146.26, "end": 2146.54, "word": " should", "probability": 0.435302734375}, {"start": 2146.54, "end": 2146.7, "word": " be", "probability": 0.82373046875}, {"start": 2146.7, "end": 2147.0, "word": " placed", "probability": 0.28271484375}, {"start": 2147.0, "end": 2147.44, "word": " somewhere", "probability": 0.2059326171875}, {"start": 2147.44, "end": 2148.24, "word": " in", "probability": 0.82177734375}, {"start": 2148.24, "end": 2148.36, "word": " the", "probability": 0.86328125}, {"start": 2148.36, "end": 2148.62, "word": " constructor.", "probability": 0.49365234375}], "temperature": 1.0}, {"id": 83, "seek": 217903, "start": 2152.61, "end": 2179.03, "text": " Ok, let's go here, instead of changing the system and running it on the car, let's leave this one as it is Or let's leave this one as it is, let's make a comment and run this one Ok, this time I gave the car a module, and I run it Ok, and what did he write here? BMW engine with cylinder with valves of mu and... Yes, we didn't do it, but this is the thing, that in the cylinder", "tokens": [3477, 11, 718, 311, 352, 510, 11, 2602, 295, 4473, 264, 1185, 293, 2614, 309, 322, 264, 1032, 11, 718, 311, 1856, 341, 472, 382, 309, 307, 1610, 718, 311, 1856, 341, 472, 382, 309, 307, 11, 718, 311, 652, 257, 2871, 293, 1190, 341, 472, 3477, 11, 341, 565, 286, 2729, 264, 1032, 257, 10088, 11, 293, 286, 1190, 309, 3477, 11, 293, 437, 630, 415, 2464, 510, 30, 21355, 2848, 365, 17884, 365, 34950, 295, 2992, 293, 485, 1079, 11, 321, 994, 380, 360, 309, 11, 457, 341, 307, 264, 551, 11, 300, 294, 264, 17884], "avg_logprob": -0.6925504845802231, "compression_ratio": 1.7710280373831775, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 2152.61, "end": 2152.89, "word": " Ok,", "probability": 0.2880859375}, {"start": 2152.99, "end": 2153.13, "word": " let's", "probability": 0.5814208984375}, {"start": 2153.13, "end": 2153.23, "word": " go", "probability": 0.314208984375}, {"start": 2153.23, "end": 2153.49, "word": " here,", "probability": 0.53125}, {"start": 2153.61, "end": 2153.79, "word": " instead", "probability": 0.673828125}, {"start": 2153.79, "end": 2153.89, "word": " of", "probability": 0.96484375}, {"start": 2153.89, "end": 2154.45, "word": " changing", "probability": 0.38916015625}, {"start": 2154.45, "end": 2154.59, "word": " the", "probability": 0.385986328125}, {"start": 2154.59, "end": 2154.59, "word": " system", "probability": 0.26123046875}, {"start": 2154.59, "end": 2154.83, "word": " and", "probability": 0.59814453125}, {"start": 2154.83, "end": 2155.07, "word": " running", "probability": 0.1578369140625}, {"start": 2155.07, "end": 2155.25, "word": " it", "probability": 0.265869140625}, {"start": 2155.25, "end": 2155.25, "word": " on", "probability": 0.41552734375}, {"start": 2155.25, "end": 2155.35, "word": " the", "probability": 0.6787109375}, {"start": 2155.35, "end": 2155.47, "word": " car,", "probability": 0.880859375}, {"start": 2155.69, "end": 2156.03, "word": " let's", "probability": 0.6435546875}, {"start": 2156.03, "end": 2156.03, "word": " leave", "probability": 0.11907958984375}, {"start": 2156.03, "end": 2156.15, "word": " this", "probability": 0.685546875}, {"start": 2156.15, "end": 2156.33, "word": " one", "probability": 0.1951904296875}, {"start": 2156.33, "end": 2156.49, "word": " as", "probability": 0.193359375}, {"start": 2156.49, "end": 2157.45, "word": " it", "probability": 0.474365234375}, {"start": 2157.45, "end": 2157.61, "word": " is", "probability": 0.93359375}, {"start": 2157.61, "end": 2158.49, "word": " Or", "probability": 0.291015625}, {"start": 2158.49, "end": 2158.65, "word": " let's", "probability": 0.57183837890625}, {"start": 2158.65, "end": 2158.67, "word": " leave", "probability": 0.63916015625}, {"start": 2158.67, "end": 2159.25, "word": " this", "probability": 0.5048828125}, {"start": 2159.25, "end": 2159.51, "word": " one", "probability": 0.60400390625}, {"start": 2159.51, "end": 2159.53, "word": " as", "probability": 0.6181640625}, {"start": 2159.53, "end": 2159.95, "word": " it", "probability": 0.91552734375}, {"start": 2159.95, "end": 2160.59, "word": " is,", "probability": 0.943359375}, {"start": 2160.63, "end": 2162.49, "word": " let's", "probability": 0.707275390625}, {"start": 2162.49, "end": 2162.61, "word": " make", "probability": 0.189208984375}, {"start": 2162.61, "end": 2162.73, "word": " a", "probability": 0.74853515625}, {"start": 2162.73, "end": 2163.01, "word": " comment", "probability": 0.68994140625}, {"start": 2163.01, "end": 2163.17, "word": " and", "probability": 0.82177734375}, {"start": 2163.17, "end": 2163.41, "word": " run", "probability": 0.50830078125}, {"start": 2163.41, "end": 2163.73, "word": " this", "probability": 0.4150390625}, {"start": 2163.73, "end": 2164.01, "word": " one", "probability": 0.50830078125}, {"start": 2164.01, "end": 2164.83, "word": " Ok,", "probability": 0.387451171875}, {"start": 2164.91, "end": 2165.05, "word": " this", "probability": 0.3251953125}, {"start": 2165.05, "end": 2165.25, "word": " time", "probability": 0.466796875}, {"start": 2165.25, "end": 2165.41, "word": " I", "probability": 0.8046875}, {"start": 2165.41, "end": 2165.51, "word": " gave", "probability": 0.10455322265625}, {"start": 2165.51, "end": 2165.61, "word": " the", "probability": 0.3876953125}, {"start": 2165.61, "end": 2165.79, "word": " car", "probability": 0.8662109375}, {"start": 2165.79, "end": 2165.89, "word": " a", "probability": 0.480224609375}, {"start": 2165.89, "end": 2166.21, "word": " module,", "probability": 0.88525390625}, {"start": 2166.83, "end": 2166.91, "word": " and", "probability": 0.5283203125}, {"start": 2166.91, "end": 2167.01, "word": " I", "probability": 0.56396484375}, {"start": 2167.01, "end": 2167.21, "word": " run", "probability": 0.285400390625}, {"start": 2167.21, "end": 2168.53, "word": " it", "probability": 0.78955078125}, {"start": 2168.53, "end": 2168.77, "word": " Ok,", "probability": 0.2802734375}, {"start": 2168.91, "end": 2169.03, "word": " and", "probability": 0.74560546875}, {"start": 2169.03, "end": 2169.11, "word": " what", "probability": 0.5126953125}, {"start": 2169.11, "end": 2169.11, "word": " did", "probability": 0.80078125}, {"start": 2169.11, "end": 2169.39, "word": " he", "probability": 0.2261962890625}, {"start": 2169.39, "end": 2169.93, "word": " write", "probability": 0.6923828125}, {"start": 2169.93, "end": 2170.07, "word": " here?", "probability": 0.36083984375}, {"start": 2170.57, "end": 2170.93, "word": " BMW", "probability": 0.82080078125}, {"start": 2170.93, "end": 2171.43, "word": " engine", "probability": 0.8671875}, {"start": 2171.43, "end": 2171.63, "word": " with", "probability": 0.85693359375}, {"start": 2171.63, "end": 2172.17, "word": " cylinder", "probability": 0.7138671875}, {"start": 2172.17, "end": 2173.73, "word": " with", "probability": 0.5341796875}, {"start": 2173.73, "end": 2174.05, "word": " valves", "probability": 0.266845703125}, {"start": 2174.05, "end": 2174.33, "word": " of", "probability": 0.61474609375}, {"start": 2174.33, "end": 2174.57, "word": " mu", "probability": 0.476806640625}, {"start": 2174.57, "end": 2175.65, "word": " and...", "probability": 0.405487060546875}, {"start": 2175.65, "end": 2175.77, "word": " Yes,", "probability": 0.298095703125}, {"start": 2175.87, "end": 2175.87, "word": " we", "probability": 0.865234375}, {"start": 2175.87, "end": 2175.91, "word": " didn't", "probability": 0.840576171875}, {"start": 2175.91, "end": 2176.11, "word": " do", "probability": 0.64404296875}, {"start": 2176.11, "end": 2176.43, "word": " it,", "probability": 0.53125}, {"start": 2176.57, "end": 2176.77, "word": " but", "probability": 0.900390625}, {"start": 2176.77, "end": 2176.99, "word": " this", "probability": 0.33056640625}, {"start": 2176.99, "end": 2177.03, "word": " is", "probability": 0.57470703125}, {"start": 2177.03, "end": 2177.09, "word": " the", "probability": 0.552734375}, {"start": 2177.09, "end": 2177.33, "word": " thing,", "probability": 0.70263671875}, {"start": 2178.13, "end": 2178.35, "word": " that", "probability": 0.5576171875}, {"start": 2178.35, "end": 2178.55, "word": " in", "probability": 0.68408203125}, {"start": 2178.55, "end": 2178.69, "word": " the", "probability": 0.77685546875}, {"start": 2178.69, "end": 2179.03, "word": " cylinder", "probability": 0.853515625}], "temperature": 1.0}, {"id": 84, "seek": 219717, "start": 2180.37, "end": 2197.17, "text": "We made a new variable which is cylinderSize, but I didn't put it in the toString to make it look like it was made And cSize is equal to cylinderSize", "tokens": [4360, 1027, 257, 777, 7006, 597, 307, 17884, 50, 1125, 11, 457, 286, 994, 380, 829, 309, 294, 264, 281, 4520, 2937, 281, 652, 309, 574, 411, 309, 390, 1027, 400, 269, 50, 1125, 307, 2681, 281, 17884, 50, 1125], "avg_logprob": -0.5602134146341463, "compression_ratio": 1.2844827586206897, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2180.37, "end": 2180.71, "word": "We", "probability": 0.3662109375}, {"start": 2180.71, "end": 2180.93, "word": " made", "probability": 0.488037109375}, {"start": 2180.93, "end": 2181.05, "word": " a", "probability": 0.89599609375}, {"start": 2181.05, "end": 2181.05, "word": " new", "probability": 0.88134765625}, {"start": 2181.05, "end": 2181.41, "word": " variable", "probability": 0.69384765625}, {"start": 2181.41, "end": 2182.41, "word": " which", "probability": 0.437744140625}, {"start": 2182.41, "end": 2182.55, "word": " is", "probability": 0.92138671875}, {"start": 2182.55, "end": 2183.23, "word": " cylinderSize,", "probability": 0.6103108723958334}, {"start": 2183.33, "end": 2183.47, "word": " but", "probability": 0.74267578125}, {"start": 2183.47, "end": 2184.53, "word": " I", "probability": 0.361572265625}, {"start": 2184.53, "end": 2184.67, "word": " didn't", "probability": 0.72216796875}, {"start": 2184.67, "end": 2184.91, "word": " put", "probability": 0.54150390625}, {"start": 2184.91, "end": 2185.03, "word": " it", "probability": 0.87890625}, {"start": 2185.03, "end": 2185.15, "word": " in", "probability": 0.822265625}, {"start": 2185.15, "end": 2185.23, "word": " the", "probability": 0.767578125}, {"start": 2185.23, "end": 2185.53, "word": " toString", "probability": 0.6105550130208334}, {"start": 2185.53, "end": 2185.67, "word": " to", "probability": 0.486572265625}, {"start": 2185.67, "end": 2185.99, "word": " make", "probability": 0.4208984375}, {"start": 2185.99, "end": 2185.99, "word": " it", "probability": 0.916015625}, {"start": 2185.99, "end": 2186.01, "word": " look", "probability": 0.326171875}, {"start": 2186.01, "end": 2186.57, "word": " like", "probability": 0.630859375}, {"start": 2186.57, "end": 2186.63, "word": " it", "probability": 0.57275390625}, {"start": 2186.63, "end": 2186.75, "word": " was", "probability": 0.28564453125}, {"start": 2186.75, "end": 2186.95, "word": " made", "probability": 0.438232421875}, {"start": 2186.95, "end": 2189.15, "word": " And", "probability": 0.40576171875}, {"start": 2189.15, "end": 2191.35, "word": " cSize", "probability": 0.7263997395833334}, {"start": 2191.35, "end": 2192.51, "word": " is", "probability": 0.2108154296875}, {"start": 2192.51, "end": 2192.85, "word": " equal", "probability": 0.826171875}, {"start": 2192.85, "end": 2194.09, "word": " to", "probability": 0.90380859375}, {"start": 2194.09, "end": 2197.17, "word": " cylinderSize", "probability": 0.7006022135416666}], "temperature": 1.0}, {"id": 85, "seek": 223094, "start": 2204.82, "end": 2230.94, "text": " and C size is equal to what? 100 let's try it with something else let's go to the engine did you find the engine? we have to give it a name for example string serial number ok? and here I have to give it a name string serial number this", "tokens": [293, 383, 2744, 307, 2681, 281, 437, 30, 2319, 718, 311, 853, 309, 365, 746, 1646, 718, 311, 352, 281, 264, 2848, 630, 291, 915, 264, 2848, 30, 321, 362, 281, 976, 309, 257, 1315, 337, 1365, 6798, 17436, 1230, 3133, 30, 293, 510, 286, 362, 281, 976, 309, 257, 1315, 6798, 17436, 1230, 341], "avg_logprob": -0.464285710560424, "compression_ratio": 1.6232876712328768, "no_speech_prob": 3.874301910400391e-06, "words": [{"start": 2204.82, "end": 2205.3, "word": " and", "probability": 0.270263671875}, {"start": 2205.3, "end": 2205.5, "word": " C", "probability": 0.1912841796875}, {"start": 2205.5, "end": 2205.8, "word": " size", "probability": 0.48095703125}, {"start": 2205.8, "end": 2205.94, "word": " is", "probability": 0.4453125}, {"start": 2205.94, "end": 2206.14, "word": " equal", "probability": 0.29345703125}, {"start": 2206.14, "end": 2206.18, "word": " to", "probability": 0.947265625}, {"start": 2206.18, "end": 2206.4, "word": " what?", "probability": 0.31982421875}, {"start": 2206.92, "end": 2207.4, "word": " 100", "probability": 0.640625}, {"start": 2207.4, "end": 2208.06, "word": " let's", "probability": 0.6151123046875}, {"start": 2208.06, "end": 2208.28, "word": " try", "probability": 0.83056640625}, {"start": 2208.28, "end": 2208.48, "word": " it", "probability": 0.40771484375}, {"start": 2208.48, "end": 2208.5, "word": " with", "probability": 0.6748046875}, {"start": 2208.5, "end": 2208.74, "word": " something", "probability": 0.431884765625}, {"start": 2208.74, "end": 2209.08, "word": " else", "probability": 0.845703125}, {"start": 2209.08, "end": 2209.4, "word": " let's", "probability": 0.70361328125}, {"start": 2209.4, "end": 2209.42, "word": " go", "probability": 0.55224609375}, {"start": 2209.42, "end": 2209.54, "word": " to", "probability": 0.84326171875}, {"start": 2209.54, "end": 2209.64, "word": " the", "probability": 0.51953125}, {"start": 2209.64, "end": 2209.92, "word": " engine", "probability": 0.9189453125}, {"start": 2209.92, "end": 2211.36, "word": " did", "probability": 0.2493896484375}, {"start": 2211.36, "end": 2211.38, "word": " you", "probability": 0.9658203125}, {"start": 2211.38, "end": 2211.5, "word": " find", "probability": 0.76513671875}, {"start": 2211.5, "end": 2211.66, "word": " the", "probability": 0.82275390625}, {"start": 2211.66, "end": 2211.92, "word": " engine?", "probability": 0.93310546875}, {"start": 2211.98, "end": 2212.12, "word": " we", "probability": 0.681640625}, {"start": 2212.12, "end": 2212.2, "word": " have", "probability": 0.1907958984375}, {"start": 2212.2, "end": 2212.26, "word": " to", "probability": 0.962890625}, {"start": 2212.26, "end": 2212.46, "word": " give", "probability": 0.73193359375}, {"start": 2212.46, "end": 2212.62, "word": " it", "probability": 0.890625}, {"start": 2212.62, "end": 2212.66, "word": " a", "probability": 0.97119140625}, {"start": 2212.66, "end": 2212.98, "word": " name", "probability": 0.880859375}, {"start": 2212.98, "end": 2214.04, "word": " for", "probability": 0.7734375}, {"start": 2214.04, "end": 2214.34, "word": " example", "probability": 0.9326171875}, {"start": 2214.34, "end": 2215.56, "word": " string", "probability": 0.64794921875}, {"start": 2215.56, "end": 2218.72, "word": " serial", "probability": 0.7587890625}, {"start": 2218.72, "end": 2219.16, "word": " number", "probability": 0.8515625}, {"start": 2219.16, "end": 2221.96, "word": " ok?", "probability": 0.26171875}, {"start": 2222.6, "end": 2223.08, "word": " and", "probability": 0.822265625}, {"start": 2223.08, "end": 2223.36, "word": " here", "probability": 0.599609375}, {"start": 2223.36, "end": 2223.68, "word": " I", "probability": 0.708984375}, {"start": 2223.68, "end": 2223.86, "word": " have", "probability": 0.63720703125}, {"start": 2223.86, "end": 2223.9, "word": " to", "probability": 0.97314453125}, {"start": 2223.9, "end": 2224.14, "word": " give", "probability": 0.296875}, {"start": 2224.14, "end": 2224.26, "word": " it", "probability": 0.865234375}, {"start": 2224.26, "end": 2224.3, "word": " a", "probability": 0.89013671875}, {"start": 2224.3, "end": 2224.56, "word": " name", "probability": 0.5341796875}, {"start": 2224.56, "end": 2225.7, "word": " string", "probability": 0.4541015625}, {"start": 2225.7, "end": 2228.5, "word": " serial", "probability": 0.9013671875}, {"start": 2228.5, "end": 2228.86, "word": " number", "probability": 0.93408203125}, {"start": 2228.86, "end": 2230.94, "word": " this", "probability": 0.9306640625}], "temperature": 1.0}, {"id": 86, "seek": 225867, "start": 2235.02, "end": 2258.68, "text": " .SerialNumber equals SerialNumber Of course, since we have modified this class, I will have an error in two other classes that I want to implement. When you change the constructor in the parent, you have to change the constructor in the subclass. If you change the constructor in the subclass, what happens? SerialNumber and Cylinder. First of all,", "tokens": [2411, 31859, 831, 45, 4182, 6915, 4210, 831, 45, 4182, 2720, 1164, 11, 1670, 321, 362, 15873, 341, 1508, 11, 286, 486, 362, 364, 6713, 294, 732, 661, 5359, 300, 286, 528, 281, 4445, 13, 1133, 291, 1319, 264, 47479, 294, 264, 2596, 11, 291, 362, 281, 1319, 264, 47479, 294, 264, 1422, 11665, 13, 759, 291, 1319, 264, 47479, 294, 264, 1422, 11665, 11, 437, 2314, 30, 4210, 831, 45, 4182, 293, 383, 5088, 5669, 13, 2386, 295, 439, 11], "avg_logprob": -0.47141767056976874, "compression_ratio": 1.7989690721649485, "no_speech_prob": 6.258487701416016e-06, "words": [{"start": 2235.0199999999995, "end": 2235.3799999999997, "word": " .SerialNumber", "probability": 0.6427734375}, {"start": 2235.3799999999997, "end": 2235.74, "word": " equals", "probability": 0.00833892822265625}, {"start": 2235.74, "end": 2239.94, "word": " SerialNumber", "probability": 0.8145751953125}, {"start": 2239.94, "end": 2240.16, "word": " Of", "probability": 0.4873046875}, {"start": 2240.16, "end": 2240.3, "word": " course,", "probability": 0.93994140625}, {"start": 2240.66, "end": 2240.74, "word": " since", "probability": 0.28955078125}, {"start": 2240.74, "end": 2240.94, "word": " we", "probability": 0.8193359375}, {"start": 2240.94, "end": 2240.96, "word": " have", "probability": 0.1708984375}, {"start": 2240.96, "end": 2241.14, "word": " modified", "probability": 0.336181640625}, {"start": 2241.14, "end": 2241.38, "word": " this", "probability": 0.6572265625}, {"start": 2241.38, "end": 2241.66, "word": " class,", "probability": 0.91259765625}, {"start": 2241.94, "end": 2242.02, "word": " I", "probability": 0.29736328125}, {"start": 2242.02, "end": 2242.1, "word": " will", "probability": 0.51611328125}, {"start": 2242.1, "end": 2242.24, "word": " have", "probability": 0.6328125}, {"start": 2242.24, "end": 2242.46, "word": " an", "probability": 0.6533203125}, {"start": 2242.46, "end": 2242.66, "word": " error", "probability": 0.87109375}, {"start": 2242.66, "end": 2243.32, "word": " in", "probability": 0.6708984375}, {"start": 2243.32, "end": 2243.5, "word": " two", "probability": 0.734375}, {"start": 2243.5, "end": 2243.96, "word": " other", "probability": 0.70068359375}, {"start": 2243.96, "end": 2243.96, "word": " classes", "probability": 0.9453125}, {"start": 2243.96, "end": 2244.2, "word": " that", "probability": 0.246826171875}, {"start": 2244.2, "end": 2244.22, "word": " I", "probability": 0.47998046875}, {"start": 2244.22, "end": 2244.36, "word": " want", "probability": 0.2410888671875}, {"start": 2244.36, "end": 2244.42, "word": " to", "probability": 0.9521484375}, {"start": 2244.42, "end": 2244.82, "word": " implement.", "probability": 0.8857421875}, {"start": 2245.0, "end": 2245.18, "word": " When", "probability": 0.39501953125}, {"start": 2245.18, "end": 2245.4, "word": " you", "probability": 0.77734375}, {"start": 2245.4, "end": 2245.56, "word": " change", "probability": 0.83935546875}, {"start": 2245.56, "end": 2245.68, "word": " the", "probability": 0.814453125}, {"start": 2245.68, "end": 2246.28, "word": " constructor", "probability": 0.91943359375}, {"start": 2246.28, "end": 2250.5, "word": " in", "probability": 0.6298828125}, {"start": 2250.5, "end": 2250.94, "word": " the", "probability": 0.712890625}, {"start": 2250.94, "end": 2251.22, "word": " parent,", "probability": 0.8671875}, {"start": 2251.46, "end": 2251.58, "word": " you", "probability": 0.63720703125}, {"start": 2251.58, "end": 2251.74, "word": " have", "probability": 0.315185546875}, {"start": 2251.74, "end": 2251.86, "word": " to", "probability": 0.96826171875}, {"start": 2251.86, "end": 2252.04, "word": " change", "probability": 0.85205078125}, {"start": 2252.04, "end": 2252.18, "word": " the", "probability": 0.89794921875}, {"start": 2252.18, "end": 2252.54, "word": " constructor", "probability": 0.8974609375}, {"start": 2252.54, "end": 2252.68, "word": " in", "probability": 0.89501953125}, {"start": 2252.68, "end": 2252.8, "word": " the", "probability": 0.8857421875}, {"start": 2252.8, "end": 2253.2, "word": " subclass.", "probability": 0.933837890625}, {"start": 2253.3, "end": 2253.4, "word": " If", "probability": 0.202880859375}, {"start": 2253.4, "end": 2253.42, "word": " you", "probability": 0.473388671875}, {"start": 2253.42, "end": 2253.54, "word": " change", "probability": 0.322998046875}, {"start": 2253.54, "end": 2253.64, "word": " the", "probability": 0.8662109375}, {"start": 2253.64, "end": 2254.02, "word": " constructor", "probability": 0.8623046875}, {"start": 2254.02, "end": 2254.16, "word": " in", "probability": 0.6787109375}, {"start": 2254.16, "end": 2254.28, "word": " the", "probability": 0.86083984375}, {"start": 2254.28, "end": 2254.66, "word": " subclass,", "probability": 0.947509765625}, {"start": 2254.74, "end": 2254.9, "word": " what", "probability": 0.58447265625}, {"start": 2254.9, "end": 2255.04, "word": " happens?", "probability": 0.416748046875}, {"start": 2256.3, "end": 2256.66, "word": " SerialNumber", "probability": 0.897705078125}, {"start": 2256.66, "end": 2257.3, "word": " and", "probability": 0.65966796875}, {"start": 2257.3, "end": 2257.7, "word": " Cylinder.", "probability": 0.7698567708333334}, {"start": 2258.06, "end": 2258.4, "word": " First", "probability": 0.53515625}, {"start": 2258.4, "end": 2258.68, "word": " of", "probability": 0.313720703125}, {"start": 2258.68, "end": 2258.68, "word": " all,", "probability": 0.9501953125}], "temperature": 1.0}, {"id": 87, "seek": 228387, "start": 2259.61, "end": 2283.87, "text": " The constructor must be injected And what do we do with the serial number? We give it a name so that we can bind it from the module So I want to tell it at named Then it comes and gets it right away It gets the variable and gives it a name What do we call it? Serial number, like this", "tokens": [440, 47479, 1633, 312, 294, 2884, 349, 292, 400, 437, 360, 321, 360, 365, 264, 17436, 1230, 30, 492, 976, 309, 257, 1315, 370, 300, 321, 393, 14786, 309, 490, 264, 10088, 407, 286, 528, 281, 980, 309, 412, 4926, 1396, 309, 1487, 293, 2170, 309, 558, 1314, 467, 2170, 264, 7006, 293, 2709, 309, 257, 1315, 708, 360, 321, 818, 309, 30, 4210, 831, 1230, 11, 411, 341], "avg_logprob": -0.566517846924918, "compression_ratio": 1.5833333333333333, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 2259.61, "end": 2259.89, "word": " The", "probability": 0.4169921875}, {"start": 2259.89, "end": 2260.31, "word": " constructor", "probability": 0.9052734375}, {"start": 2260.31, "end": 2260.61, "word": " must", "probability": 0.363037109375}, {"start": 2260.61, "end": 2260.97, "word": " be", "probability": 0.3017578125}, {"start": 2260.97, "end": 2264.13, "word": " injected", "probability": 0.61968994140625}, {"start": 2264.13, "end": 2264.27, "word": " And", "probability": 0.253662109375}, {"start": 2264.27, "end": 2265.11, "word": " what", "probability": 0.371337890625}, {"start": 2265.11, "end": 2265.11, "word": " do", "probability": 0.63916015625}, {"start": 2265.11, "end": 2265.11, "word": " we", "probability": 0.92822265625}, {"start": 2265.11, "end": 2265.11, "word": " do", "probability": 0.89892578125}, {"start": 2265.11, "end": 2265.11, "word": " with", "probability": 0.57421875}, {"start": 2265.11, "end": 2265.13, "word": " the", "probability": 0.31494140625}, {"start": 2265.13, "end": 2265.31, "word": " serial", "probability": 0.6982421875}, {"start": 2265.31, "end": 2265.65, "word": " number?", "probability": 0.90625}, {"start": 2266.61, "end": 2266.75, "word": " We", "probability": 0.8017578125}, {"start": 2266.75, "end": 2266.95, "word": " give", "probability": 0.60400390625}, {"start": 2266.95, "end": 2267.09, "word": " it", "probability": 0.88916015625}, {"start": 2267.09, "end": 2267.11, "word": " a", "probability": 0.97998046875}, {"start": 2267.11, "end": 2267.31, "word": " name", "probability": 0.875}, {"start": 2267.31, "end": 2267.55, "word": " so", "probability": 0.133544921875}, {"start": 2267.55, "end": 2267.87, "word": " that", "probability": 0.53173828125}, {"start": 2267.87, "end": 2268.29, "word": " we", "probability": 0.459228515625}, {"start": 2268.29, "end": 2269.03, "word": " can", "probability": 0.445068359375}, {"start": 2269.03, "end": 2269.49, "word": " bind", "probability": 0.83349609375}, {"start": 2269.49, "end": 2269.65, "word": " it", "probability": 0.7333984375}, {"start": 2269.65, "end": 2269.65, "word": " from", "probability": 0.59326171875}, {"start": 2269.65, "end": 2269.65, "word": " the", "probability": 0.8740234375}, {"start": 2269.65, "end": 2269.65, "word": " module", "probability": 0.90087890625}, {"start": 2269.65, "end": 2270.29, "word": " So", "probability": 0.6123046875}, {"start": 2270.29, "end": 2270.39, "word": " I", "probability": 0.72412109375}, {"start": 2270.39, "end": 2270.45, "word": " want", "probability": 0.1424560546875}, {"start": 2270.45, "end": 2270.49, "word": " to", "probability": 0.97216796875}, {"start": 2270.49, "end": 2270.61, "word": " tell", "probability": 0.376220703125}, {"start": 2270.61, "end": 2270.71, "word": " it", "probability": 0.6962890625}, {"start": 2270.71, "end": 2270.93, "word": " at", "probability": 0.1866455078125}, {"start": 2270.93, "end": 2271.47, "word": " named", "probability": 0.52392578125}, {"start": 2271.47, "end": 2274.97, "word": " Then", "probability": 0.13671875}, {"start": 2274.97, "end": 2275.21, "word": " it", "probability": 0.4619140625}, {"start": 2275.21, "end": 2275.29, "word": " comes", "probability": 0.1502685546875}, {"start": 2275.29, "end": 2275.49, "word": " and", "probability": 0.474609375}, {"start": 2275.49, "end": 2275.49, "word": " gets", "probability": 0.21337890625}, {"start": 2275.49, "end": 2275.63, "word": " it", "probability": 0.88671875}, {"start": 2275.63, "end": 2275.77, "word": " right", "probability": 0.357177734375}, {"start": 2275.77, "end": 2276.17, "word": " away", "probability": 0.88330078125}, {"start": 2276.17, "end": 2277.41, "word": " It", "probability": 0.47607421875}, {"start": 2277.41, "end": 2277.57, "word": " gets", "probability": 0.25341796875}, {"start": 2277.57, "end": 2277.71, "word": " the", "probability": 0.693359375}, {"start": 2277.71, "end": 2278.15, "word": " variable", "probability": 0.58447265625}, {"start": 2278.15, "end": 2278.47, "word": " and", "probability": 0.697265625}, {"start": 2278.47, "end": 2278.65, "word": " gives", "probability": 0.7001953125}, {"start": 2278.65, "end": 2278.79, "word": " it", "probability": 0.92919921875}, {"start": 2278.79, "end": 2278.83, "word": " a", "probability": 0.9814453125}, {"start": 2278.83, "end": 2279.13, "word": " name", "probability": 0.88671875}, {"start": 2279.13, "end": 2280.01, "word": " What", "probability": 0.7275390625}, {"start": 2280.01, "end": 2280.09, "word": " do", "probability": 0.56640625}, {"start": 2280.09, "end": 2280.17, "word": " we", "probability": 0.7451171875}, {"start": 2280.17, "end": 2280.35, "word": " call", "probability": 0.86962890625}, {"start": 2280.35, "end": 2280.55, "word": " it?", "probability": 0.8173828125}, {"start": 2280.65, "end": 2281.05, "word": " Serial", "probability": 0.947265625}, {"start": 2281.05, "end": 2283.13, "word": " number,", "probability": 0.78662109375}, {"start": 2283.27, "end": 2283.37, "word": " like", "probability": 0.46728515625}, {"start": 2283.37, "end": 2283.87, "word": " this", "probability": 0.80224609375}], "temperature": 1.0}, {"id": 88, "seek": 230858, "start": 2290.34, "end": 2308.58, "text": " and I will also have to import it from where? from the mock engine, I don't have a mock engine but this constructor I will name it mock engine and this one I will import", "tokens": [293, 286, 486, 611, 362, 281, 974, 309, 490, 689, 30, 490, 264, 17362, 2848, 11, 286, 500, 380, 362, 257, 17362, 2848, 457, 341, 47479, 286, 486, 1315, 309, 17362, 2848, 293, 341, 472, 286, 486, 974], "avg_logprob": -0.5761218040417402, "compression_ratio": 1.5044247787610618, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2290.34, "end": 2290.78, "word": " and", "probability": 0.106201171875}, {"start": 2290.78, "end": 2290.96, "word": " I", "probability": 0.53466796875}, {"start": 2290.96, "end": 2290.96, "word": " will", "probability": 0.435546875}, {"start": 2290.96, "end": 2291.16, "word": " also", "probability": 0.341552734375}, {"start": 2291.16, "end": 2291.2, "word": " have", "probability": 0.55517578125}, {"start": 2291.2, "end": 2291.46, "word": " to", "probability": 0.9697265625}, {"start": 2291.46, "end": 2291.84, "word": " import", "probability": 0.439208984375}, {"start": 2291.84, "end": 2292.04, "word": " it", "probability": 0.55859375}, {"start": 2292.04, "end": 2292.52, "word": " from", "probability": 0.3291015625}, {"start": 2292.52, "end": 2292.7, "word": " where?", "probability": 0.3056640625}, {"start": 2293.62, "end": 2294.06, "word": " from", "probability": 0.60791015625}, {"start": 2294.06, "end": 2294.18, "word": " the", "probability": 0.61572265625}, {"start": 2294.18, "end": 2294.34, "word": " mock", "probability": 0.576171875}, {"start": 2294.34, "end": 2294.66, "word": " engine,", "probability": 0.849609375}, {"start": 2294.76, "end": 2295.04, "word": " I", "probability": 0.351806640625}, {"start": 2295.04, "end": 2295.04, "word": " don't", "probability": 0.848876953125}, {"start": 2295.04, "end": 2295.18, "word": " have", "probability": 0.92578125}, {"start": 2295.18, "end": 2295.32, "word": " a", "probability": 0.6884765625}, {"start": 2295.32, "end": 2295.5, "word": " mock", "probability": 0.95361328125}, {"start": 2295.5, "end": 2295.88, "word": " engine", "probability": 0.93212890625}, {"start": 2295.88, "end": 2300.28, "word": " but", "probability": 0.361328125}, {"start": 2300.28, "end": 2303.36, "word": " this", "probability": 0.8017578125}, {"start": 2303.36, "end": 2303.86, "word": " constructor", "probability": 0.89794921875}, {"start": 2303.86, "end": 2304.08, "word": " I", "probability": 0.315673828125}, {"start": 2304.08, "end": 2304.08, "word": " will", "probability": 0.66259765625}, {"start": 2304.08, "end": 2304.36, "word": " name", "probability": 0.364013671875}, {"start": 2304.36, "end": 2304.48, "word": " it", "probability": 0.640625}, {"start": 2304.48, "end": 2304.86, "word": " mock", "probability": 0.755859375}, {"start": 2304.86, "end": 2307.46, "word": " engine", "probability": 0.5380859375}, {"start": 2307.46, "end": 2307.64, "word": " and", "probability": 0.798828125}, {"start": 2307.64, "end": 2307.8, "word": " this", "probability": 0.5595703125}, {"start": 2307.8, "end": 2307.86, "word": " one", "probability": 0.58740234375}, {"start": 2307.86, "end": 2307.86, "word": " I", "probability": 0.9150390625}, {"start": 2307.86, "end": 2307.96, "word": " will", "probability": 0.70458984375}, {"start": 2307.96, "end": 2308.58, "word": " import", "probability": 0.419677734375}], "temperature": 1.0}, {"id": 89, "seek": 234202, "start": 2313.32, "end": 2342.02, "text": " Now that we have given the name of the variable, I will go to the gate on the car module and do the binding process because I want to tell the gate, if not, bind me if I find the string dot class, the notated with, we have given it a name, the name is serial number yes, this needs names dot named names dot named", "tokens": [823, 300, 321, 362, 2212, 264, 1315, 295, 264, 7006, 11, 286, 486, 352, 281, 264, 8539, 322, 264, 1032, 10088, 293, 360, 264, 17359, 1399, 570, 286, 528, 281, 980, 264, 8539, 11, 498, 406, 11, 14786, 385, 498, 286, 915, 264, 6798, 5893, 1508, 11, 264, 406, 770, 365, 11, 321, 362, 2212, 309, 257, 1315, 11, 264, 1315, 307, 17436, 1230, 2086, 11, 341, 2203, 5288, 5893, 4926, 5288, 5893, 4926], "avg_logprob": -0.5854166650772095, "compression_ratio": 1.7640449438202248, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2313.3199999999997, "end": 2313.72, "word": " Now", "probability": 0.1661376953125}, {"start": 2313.72, "end": 2314.12, "word": " that", "probability": 0.217041015625}, {"start": 2314.12, "end": 2314.22, "word": " we", "probability": 0.7880859375}, {"start": 2314.22, "end": 2314.22, "word": " have", "probability": 0.5712890625}, {"start": 2314.22, "end": 2314.22, "word": " given", "probability": 0.5693359375}, {"start": 2314.22, "end": 2314.34, "word": " the", "probability": 0.33837890625}, {"start": 2314.34, "end": 2314.48, "word": " name", "probability": 0.5107421875}, {"start": 2314.48, "end": 2314.66, "word": " of", "probability": 0.60498046875}, {"start": 2314.66, "end": 2314.68, "word": " the", "probability": 0.67236328125}, {"start": 2314.68, "end": 2315.06, "word": " variable,", "probability": 0.6875}, {"start": 2315.32, "end": 2315.44, "word": " I", "probability": 0.293701171875}, {"start": 2315.44, "end": 2315.58, "word": " will", "probability": 0.34716796875}, {"start": 2315.58, "end": 2315.7, "word": " go", "probability": 0.63427734375}, {"start": 2315.7, "end": 2315.82, "word": " to", "probability": 0.89990234375}, {"start": 2315.82, "end": 2315.86, "word": " the", "probability": 0.7099609375}, {"start": 2315.86, "end": 2316.04, "word": " gate", "probability": 0.1402587890625}, {"start": 2316.04, "end": 2316.24, "word": " on", "probability": 0.6123046875}, {"start": 2316.24, "end": 2317.28, "word": " the", "probability": 0.76806640625}, {"start": 2317.28, "end": 2317.46, "word": " car", "probability": 0.444091796875}, {"start": 2317.46, "end": 2317.88, "word": " module", "probability": 0.865234375}, {"start": 2317.88, "end": 2318.1, "word": " and", "probability": 0.7353515625}, {"start": 2318.1, "end": 2318.32, "word": " do", "probability": 0.34765625}, {"start": 2318.32, "end": 2318.76, "word": " the", "probability": 0.7041015625}, {"start": 2318.76, "end": 2319.02, "word": " binding", "probability": 0.65771484375}, {"start": 2319.02, "end": 2319.22, "word": " process", "probability": 0.69580078125}, {"start": 2319.22, "end": 2320.14, "word": " because", "probability": 0.136474609375}, {"start": 2320.14, "end": 2320.24, "word": " I", "probability": 0.94873046875}, {"start": 2320.24, "end": 2320.32, "word": " want", "probability": 0.576171875}, {"start": 2320.32, "end": 2320.36, "word": " to", "probability": 0.9619140625}, {"start": 2320.36, "end": 2320.5, "word": " tell", "probability": 0.74169921875}, {"start": 2320.5, "end": 2320.7, "word": " the", "probability": 0.5859375}, {"start": 2320.7, "end": 2320.96, "word": " gate,", "probability": 0.93310546875}, {"start": 2321.06, "end": 2321.24, "word": " if", "probability": 0.673828125}, {"start": 2321.24, "end": 2321.44, "word": " not,", "probability": 0.59033203125}, {"start": 2321.68, "end": 2321.8, "word": " bind", "probability": 0.7265625}, {"start": 2321.8, "end": 2322.34, "word": " me", "probability": 0.58349609375}, {"start": 2322.34, "end": 2323.8, "word": " if", "probability": 0.515625}, {"start": 2323.8, "end": 2323.96, "word": " I", "probability": 0.47802734375}, {"start": 2323.96, "end": 2324.12, "word": " find", "probability": 0.64208984375}, {"start": 2324.12, "end": 2324.28, "word": " the", "probability": 0.45849609375}, {"start": 2324.28, "end": 2324.66, "word": " string", "probability": 0.73095703125}, {"start": 2324.66, "end": 2326.58, "word": " dot", "probability": 0.305908203125}, {"start": 2326.58, "end": 2327.1, "word": " class,", "probability": 0.96484375}, {"start": 2327.98, "end": 2328.22, "word": " the", "probability": 0.311767578125}, {"start": 2328.22, "end": 2328.68, "word": " notated", "probability": 0.687744140625}, {"start": 2328.68, "end": 2329.06, "word": " with,", "probability": 0.81640625}, {"start": 2329.52, "end": 2329.64, "word": " we", "probability": 0.541015625}, {"start": 2329.64, "end": 2329.72, "word": " have", "probability": 0.346923828125}, {"start": 2329.72, "end": 2329.86, "word": " given", "probability": 0.765625}, {"start": 2329.86, "end": 2330.06, "word": " it", "probability": 0.72607421875}, {"start": 2330.06, "end": 2330.26, "word": " a", "probability": 0.90869140625}, {"start": 2330.26, "end": 2330.58, "word": " name,", "probability": 0.890625}, {"start": 2330.72, "end": 2330.9, "word": " the", "probability": 0.2440185546875}, {"start": 2330.9, "end": 2330.96, "word": " name", "probability": 0.84814453125}, {"start": 2330.96, "end": 2331.1, "word": " is", "probability": 0.7294921875}, {"start": 2331.1, "end": 2331.46, "word": " serial", "probability": 0.78125}, {"start": 2331.46, "end": 2333.84, "word": " number", "probability": 0.85400390625}, {"start": 2333.84, "end": 2337.9, "word": " yes,", "probability": 0.2086181640625}, {"start": 2338.02, "end": 2338.26, "word": " this", "probability": 0.626953125}, {"start": 2338.26, "end": 2338.5, "word": " needs", "probability": 0.395263671875}, {"start": 2338.5, "end": 2339.14, "word": " names", "probability": 0.8330078125}, {"start": 2339.14, "end": 2339.48, "word": " dot", "probability": 0.84423828125}, {"start": 2339.48, "end": 2339.84, "word": " named", "probability": 0.86083984375}, {"start": 2339.84, "end": 2341.1, "word": " names", "probability": 0.7958984375}, {"start": 2341.1, "end": 2341.64, "word": " dot", "probability": 0.9169921875}, {"start": 2341.64, "end": 2342.02, "word": " named", "probability": 0.8984375}], "temperature": 1.0}, {"id": 90, "seek": 237492, "start": 2351.71, "end": 2374.93, "text": " dot to instance give it one, two, three, four, five, six of course to see it we need to change the two strings with c and serial number", "tokens": [5893, 281, 5197, 976, 309, 472, 11, 732, 11, 1045, 11, 1451, 11, 1732, 11, 2309, 295, 1164, 281, 536, 309, 321, 643, 281, 1319, 264, 732, 13985, 365, 269, 293, 17436, 1230], "avg_logprob": -0.5556066229062921, "compression_ratio": 1.3333333333333333, "no_speech_prob": 4.112720489501953e-06, "words": [{"start": 2351.71, "end": 2352.43, "word": " dot", "probability": 0.373046875}, {"start": 2352.43, "end": 2352.59, "word": " to", "probability": 0.76513671875}, {"start": 2352.59, "end": 2353.03, "word": " instance", "probability": 0.8681640625}, {"start": 2353.03, "end": 2354.55, "word": " give", "probability": 0.2724609375}, {"start": 2354.55, "end": 2354.71, "word": " it", "probability": 0.72509765625}, {"start": 2354.71, "end": 2355.77, "word": " one,", "probability": 0.08721923828125}, {"start": 2356.03, "end": 2356.15, "word": " two,", "probability": 0.9013671875}, {"start": 2356.29, "end": 2356.39, "word": " three,", "probability": 0.93701171875}, {"start": 2356.53, "end": 2356.69, "word": " four,", "probability": 0.94580078125}, {"start": 2356.79, "end": 2356.97, "word": " five,", "probability": 0.92041015625}, {"start": 2357.09, "end": 2357.33, "word": " six", "probability": 0.92529296875}, {"start": 2357.33, "end": 2357.45, "word": " of", "probability": 0.09027099609375}, {"start": 2357.45, "end": 2362.21, "word": " course", "probability": 0.939453125}, {"start": 2362.21, "end": 2362.57, "word": " to", "probability": 0.460693359375}, {"start": 2362.57, "end": 2362.89, "word": " see", "probability": 0.6142578125}, {"start": 2362.89, "end": 2363.07, "word": " it", "probability": 0.67431640625}, {"start": 2363.07, "end": 2364.71, "word": " we", "probability": 0.135009765625}, {"start": 2364.71, "end": 2364.95, "word": " need", "probability": 0.3984375}, {"start": 2364.95, "end": 2365.33, "word": " to", "probability": 0.8330078125}, {"start": 2365.33, "end": 2366.17, "word": " change", "probability": 0.75244140625}, {"start": 2366.17, "end": 2368.33, "word": " the", "probability": 0.328125}, {"start": 2368.33, "end": 2368.99, "word": " two", "probability": 0.459228515625}, {"start": 2368.99, "end": 2369.41, "word": " strings", "probability": 0.41015625}, {"start": 2369.41, "end": 2371.13, "word": " with", "probability": 0.65673828125}, {"start": 2371.13, "end": 2371.55, "word": " c", "probability": 0.481201171875}, {"start": 2371.55, "end": 2373.75, "word": " and", "probability": 0.84423828125}, {"start": 2373.75, "end": 2374.35, "word": " serial", "probability": 0.80224609375}, {"start": 2374.35, "end": 2374.93, "word": " number", "probability": 0.92626953125}], "temperature": 1.0}, {"id": 91, "seek": 240748, "start": 2382.53, "end": 2407.49, "text": " Ok, let's go back and run it This is the serial number and I added it here So now the idea is that the car module is what you control through it So the tester comes and tries to change only where? In the car module He says connect to this interface in another class, mock", "tokens": [3477, 11, 718, 311, 352, 646, 293, 1190, 309, 639, 307, 264, 17436, 1230, 293, 286, 3869, 309, 510, 407, 586, 264, 1558, 307, 300, 264, 1032, 10088, 307, 437, 291, 1969, 807, 309, 407, 264, 36101, 1487, 293, 9898, 281, 1319, 787, 689, 30, 682, 264, 1032, 10088, 634, 1619, 1745, 281, 341, 9226, 294, 1071, 1508, 11, 17362], "avg_logprob": -0.6378073770491803, "compression_ratio": 1.536723163841808, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 2382.53, "end": 2382.85, "word": " Ok,", "probability": 0.1820068359375}, {"start": 2383.39, "end": 2383.69, "word": " let's", "probability": 0.6226806640625}, {"start": 2383.69, "end": 2383.87, "word": " go", "probability": 0.580078125}, {"start": 2383.87, "end": 2383.95, "word": " back", "probability": 0.86376953125}, {"start": 2383.95, "end": 2384.79, "word": " and", "probability": 0.41015625}, {"start": 2384.79, "end": 2385.41, "word": " run", "probability": 0.58349609375}, {"start": 2385.41, "end": 2386.65, "word": " it", "probability": 0.282958984375}, {"start": 2386.65, "end": 2389.95, "word": " This", "probability": 0.1351318359375}, {"start": 2389.95, "end": 2390.03, "word": " is", "probability": 0.880859375}, {"start": 2390.03, "end": 2390.13, "word": " the", "probability": 0.5712890625}, {"start": 2390.13, "end": 2390.29, "word": " serial", "probability": 0.892578125}, {"start": 2390.29, "end": 2390.71, "word": " number", "probability": 0.95068359375}, {"start": 2390.71, "end": 2391.07, "word": " and", "probability": 0.273681640625}, {"start": 2391.07, "end": 2391.29, "word": " I", "probability": 0.2017822265625}, {"start": 2391.29, "end": 2391.29, "word": " added", "probability": 0.4482421875}, {"start": 2391.29, "end": 2392.35, "word": " it", "probability": 0.900390625}, {"start": 2392.35, "end": 2392.69, "word": " here", "probability": 0.6396484375}, {"start": 2392.69, "end": 2394.85, "word": " So", "probability": 0.412841796875}, {"start": 2394.85, "end": 2395.25, "word": " now", "probability": 0.66943359375}, {"start": 2395.25, "end": 2395.83, "word": " the", "probability": 0.63818359375}, {"start": 2395.83, "end": 2396.09, "word": " idea", "probability": 0.76611328125}, {"start": 2396.09, "end": 2396.27, "word": " is", "probability": 0.418212890625}, {"start": 2396.27, "end": 2396.37, "word": " that", "probability": 0.59521484375}, {"start": 2396.37, "end": 2396.43, "word": " the", "probability": 0.451416015625}, {"start": 2396.43, "end": 2396.57, "word": " car", "probability": 0.38818359375}, {"start": 2396.57, "end": 2396.89, "word": " module", "probability": 0.80322265625}, {"start": 2396.89, "end": 2397.79, "word": " is", "probability": 0.69189453125}, {"start": 2397.79, "end": 2397.87, "word": " what", "probability": 0.28125}, {"start": 2397.87, "end": 2398.09, "word": " you", "probability": 0.8837890625}, {"start": 2398.09, "end": 2398.99, "word": " control", "probability": 0.5361328125}, {"start": 2398.99, "end": 2398.99, "word": " through", "probability": 0.5234375}, {"start": 2398.99, "end": 2399.21, "word": " it", "probability": 0.7841796875}, {"start": 2399.21, "end": 2399.51, "word": " So", "probability": 0.45654296875}, {"start": 2399.51, "end": 2399.63, "word": " the", "probability": 0.6630859375}, {"start": 2399.63, "end": 2400.67, "word": " tester", "probability": 0.796875}, {"start": 2400.67, "end": 2400.67, "word": " comes", "probability": 0.29296875}, {"start": 2400.67, "end": 2401.13, "word": " and", "probability": 0.669921875}, {"start": 2401.13, "end": 2401.59, "word": " tries", "probability": 0.525390625}, {"start": 2401.59, "end": 2401.73, "word": " to", "probability": 0.40283203125}, {"start": 2401.73, "end": 2402.01, "word": " change", "probability": 0.74365234375}, {"start": 2402.01, "end": 2402.29, "word": " only", "probability": 0.3779296875}, {"start": 2402.29, "end": 2402.49, "word": " where?", "probability": 0.2076416015625}, {"start": 2403.07, "end": 2403.67, "word": " In", "probability": 0.64599609375}, {"start": 2403.67, "end": 2403.77, "word": " the", "probability": 0.9013671875}, {"start": 2403.77, "end": 2403.95, "word": " car", "probability": 0.896484375}, {"start": 2403.95, "end": 2404.27, "word": " module", "probability": 0.876953125}, {"start": 2404.27, "end": 2404.45, "word": " He", "probability": 0.197021484375}, {"start": 2404.45, "end": 2404.61, "word": " says", "probability": 0.59912109375}, {"start": 2404.61, "end": 2404.99, "word": " connect", "probability": 0.348876953125}, {"start": 2404.99, "end": 2405.25, "word": " to", "probability": 0.57568359375}, {"start": 2405.25, "end": 2405.69, "word": " this", "probability": 0.7724609375}, {"start": 2405.69, "end": 2406.25, "word": " interface", "probability": 0.9208984375}, {"start": 2406.25, "end": 2406.57, "word": " in", "probability": 0.82763671875}, {"start": 2406.57, "end": 2406.65, "word": " another", "probability": 0.473876953125}, {"start": 2406.65, "end": 2406.99, "word": " class,", "probability": 0.9765625}, {"start": 2407.25, "end": 2407.49, "word": " mock", "probability": 0.260498046875}], "temperature": 1.0}, {"id": 92, "seek": 243616, "start": 2408.36, "end": 2436.16, "text": " this variable changes the value and gives it another value and what else can we do instead of putting these static values instead of putting them and changing them from the code we can make them setter and getter so the char module we put in string serial number attributes int csize and make them public you can make them setter and getter but for the speed", "tokens": [341, 7006, 2962, 264, 2158, 293, 2709, 309, 1071, 2158, 293, 437, 1646, 393, 321, 360, 2602, 295, 3372, 613, 13437, 4190, 2602, 295, 3372, 552, 293, 4473, 552, 490, 264, 3089, 321, 393, 652, 552, 992, 391, 293, 483, 391, 370, 264, 1290, 10088, 321, 829, 294, 6798, 17436, 1230, 17212, 560, 269, 27553, 293, 652, 552, 1908, 291, 393, 652, 552, 992, 391, 293, 483, 391, 457, 337, 264, 3073], "avg_logprob": -0.56464041749092, "compression_ratio": 1.9944444444444445, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 2408.36, "end": 2408.58, "word": " this", "probability": 0.250244140625}, {"start": 2408.58, "end": 2408.98, "word": " variable", "probability": 0.6611328125}, {"start": 2408.98, "end": 2409.4, "word": " changes", "probability": 0.2174072265625}, {"start": 2409.4, "end": 2409.6, "word": " the", "probability": 0.1982421875}, {"start": 2409.6, "end": 2409.76, "word": " value", "probability": 0.8330078125}, {"start": 2409.76, "end": 2409.88, "word": " and", "probability": 0.321044921875}, {"start": 2409.88, "end": 2410.1, "word": " gives", "probability": 0.40478515625}, {"start": 2410.1, "end": 2410.36, "word": " it", "probability": 0.31201171875}, {"start": 2410.36, "end": 2410.94, "word": " another", "probability": 0.499755859375}, {"start": 2410.94, "end": 2411.24, "word": " value", "probability": 0.89404296875}, {"start": 2411.24, "end": 2412.06, "word": " and", "probability": 0.3779296875}, {"start": 2412.06, "end": 2412.22, "word": " what", "probability": 0.396728515625}, {"start": 2412.22, "end": 2412.38, "word": " else", "probability": 0.62939453125}, {"start": 2412.38, "end": 2412.72, "word": " can", "probability": 0.60693359375}, {"start": 2412.72, "end": 2412.88, "word": " we", "probability": 0.90283203125}, {"start": 2412.88, "end": 2413.08, "word": " do", "probability": 0.93798828125}, {"start": 2413.08, "end": 2413.36, "word": " instead", "probability": 0.3740234375}, {"start": 2413.36, "end": 2413.48, "word": " of", "probability": 0.9619140625}, {"start": 2413.48, "end": 2413.78, "word": " putting", "probability": 0.2335205078125}, {"start": 2413.78, "end": 2414.02, "word": " these", "probability": 0.60986328125}, {"start": 2414.02, "end": 2414.7, "word": " static", "probability": 0.40380859375}, {"start": 2414.7, "end": 2414.84, "word": " values", "probability": 0.90771484375}, {"start": 2414.84, "end": 2415.54, "word": " instead", "probability": 0.322998046875}, {"start": 2415.54, "end": 2417.2, "word": " of", "probability": 0.96240234375}, {"start": 2417.2, "end": 2417.5, "word": " putting", "probability": 0.427734375}, {"start": 2417.5, "end": 2417.54, "word": " them", "probability": 0.4619140625}, {"start": 2417.54, "end": 2417.64, "word": " and", "probability": 0.72314453125}, {"start": 2417.64, "end": 2417.86, "word": " changing", "probability": 0.66650390625}, {"start": 2417.86, "end": 2418.0, "word": " them", "probability": 0.564453125}, {"start": 2418.0, "end": 2418.14, "word": " from", "probability": 0.5703125}, {"start": 2418.14, "end": 2418.24, "word": " the", "probability": 0.75390625}, {"start": 2418.24, "end": 2418.56, "word": " code", "probability": 0.91748046875}, {"start": 2418.56, "end": 2419.54, "word": " we", "probability": 0.67529296875}, {"start": 2419.54, "end": 2419.74, "word": " can", "probability": 0.9033203125}, {"start": 2419.74, "end": 2419.92, "word": " make", "probability": 0.64306640625}, {"start": 2419.92, "end": 2420.12, "word": " them", "probability": 0.8427734375}, {"start": 2420.12, "end": 2420.48, "word": " setter", "probability": 0.791259765625}, {"start": 2420.48, "end": 2421.2, "word": " and", "probability": 0.9091796875}, {"start": 2421.2, "end": 2421.5, "word": " getter", "probability": 0.974365234375}, {"start": 2421.5, "end": 2421.68, "word": " so", "probability": 0.1802978515625}, {"start": 2421.68, "end": 2421.84, "word": " the", "probability": 0.28564453125}, {"start": 2421.84, "end": 2422.0, "word": " char", "probability": 0.48291015625}, {"start": 2422.0, "end": 2422.34, "word": " module", "probability": 0.853515625}, {"start": 2422.34, "end": 2423.12, "word": " we", "probability": 0.3193359375}, {"start": 2423.12, "end": 2423.38, "word": " put", "probability": 0.67138671875}, {"start": 2423.38, "end": 2423.54, "word": " in", "probability": 0.5751953125}, {"start": 2423.54, "end": 2425.26, "word": " string", "probability": 0.36572265625}, {"start": 2425.26, "end": 2426.42, "word": " serial", "probability": 0.5224609375}, {"start": 2426.42, "end": 2426.94, "word": " number", "probability": 0.81103515625}, {"start": 2426.94, "end": 2427.76, "word": " attributes", "probability": 0.7177734375}, {"start": 2427.76, "end": 2429.74, "word": " int", "probability": 0.34521484375}, {"start": 2429.74, "end": 2431.28, "word": " csize", "probability": 0.5631103515625}, {"start": 2431.28, "end": 2433.08, "word": " and", "probability": 0.44580078125}, {"start": 2433.08, "end": 2433.22, "word": " make", "probability": 0.472900390625}, {"start": 2433.22, "end": 2433.34, "word": " them", "probability": 0.77978515625}, {"start": 2433.34, "end": 2433.68, "word": " public", "probability": 0.9375}, {"start": 2433.68, "end": 2434.04, "word": " you", "probability": 0.3212890625}, {"start": 2434.04, "end": 2434.12, "word": " can", "probability": 0.52001953125}, {"start": 2434.12, "end": 2434.22, "word": " make", "probability": 0.8359375}, {"start": 2434.22, "end": 2434.34, "word": " them", "probability": 0.826171875}, {"start": 2434.34, "end": 2434.6, "word": " setter", "probability": 0.951416015625}, {"start": 2434.6, "end": 2434.7, "word": " and", "probability": 0.70166015625}, {"start": 2434.7, "end": 2434.98, "word": " getter", "probability": 0.946533203125}, {"start": 2434.98, "end": 2435.1, "word": " but", "probability": 0.75439453125}, {"start": 2435.1, "end": 2435.84, "word": " for", "probability": 0.312744140625}, {"start": 2435.84, "end": 2435.98, "word": " the", "probability": 0.369140625}, {"start": 2435.98, "end": 2436.16, "word": " speed", "probability": 0.576171875}], "temperature": 1.0}, {"id": 93, "seek": 245477, "start": 2437.63, "end": 2454.77, "text": " I want to make them public and here instead of putting 100, here is cSize and here instead of 1 net, serial number, I put the variables here", "tokens": [286, 528, 281, 652, 552, 1908, 293, 510, 2602, 295, 3372, 2319, 11, 510, 307, 269, 50, 1125, 293, 510, 2602, 295, 502, 2533, 11, 17436, 1230, 11, 286, 829, 264, 9102, 510], "avg_logprob": -0.5827206110253054, "compression_ratio": 1.3428571428571427, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 2437.63, "end": 2437.81, "word": " I", "probability": 0.48291015625}, {"start": 2437.81, "end": 2437.91, "word": " want", "probability": 0.5205078125}, {"start": 2437.91, "end": 2437.93, "word": " to", "probability": 0.912109375}, {"start": 2437.93, "end": 2438.07, "word": " make", "probability": 0.68798828125}, {"start": 2438.07, "end": 2438.17, "word": " them", "probability": 0.7705078125}, {"start": 2438.17, "end": 2438.55, "word": " public", "probability": 0.81005859375}, {"start": 2438.55, "end": 2441.75, "word": " and", "probability": 0.313720703125}, {"start": 2441.75, "end": 2442.05, "word": " here", "probability": 0.73876953125}, {"start": 2442.05, "end": 2442.25, "word": " instead", "probability": 0.67578125}, {"start": 2442.25, "end": 2442.35, "word": " of", "probability": 0.96484375}, {"start": 2442.35, "end": 2442.65, "word": " putting", "probability": 0.51220703125}, {"start": 2442.65, "end": 2443.45, "word": " 100,", "probability": 0.69580078125}, {"start": 2444.71, "end": 2445.25, "word": " here", "probability": 0.537109375}, {"start": 2445.25, "end": 2445.35, "word": " is", "probability": 0.270751953125}, {"start": 2445.35, "end": 2445.99, "word": " cSize", "probability": 0.53857421875}, {"start": 2445.99, "end": 2447.75, "word": " and", "probability": 0.8154296875}, {"start": 2447.75, "end": 2448.05, "word": " here", "probability": 0.7431640625}, {"start": 2448.05, "end": 2448.43, "word": " instead", "probability": 0.82421875}, {"start": 2448.43, "end": 2448.51, "word": " of", "probability": 0.9716796875}, {"start": 2448.51, "end": 2448.73, "word": " 1", "probability": 0.1627197265625}, {"start": 2448.73, "end": 2449.01, "word": " net,", "probability": 0.34326171875}, {"start": 2449.17, "end": 2449.51, "word": " serial", "probability": 0.392578125}, {"start": 2449.51, "end": 2452.89, "word": " number,", "probability": 0.763671875}, {"start": 2453.41, "end": 2453.59, "word": " I", "probability": 0.3759765625}, {"start": 2453.59, "end": 2453.91, "word": " put", "probability": 0.654296875}, {"start": 2453.91, "end": 2454.05, "word": " the", "probability": 0.54736328125}, {"start": 2454.05, "end": 2454.37, "word": " variables", "probability": 0.56005859375}, {"start": 2454.37, "end": 2454.77, "word": " here", "probability": 0.82568359375}], "temperature": 1.0}, {"id": 94, "seek": 248166, "start": 2455.68, "end": 2481.66, "text": "Why did I do that? On the basis that in the main method when we created the car module, not here when we created the car module go to cm and say dot give it serial number from 6 to 1 and give it c size for example 55 then say ish and create an object from it", "tokens": [8429, 630, 286, 360, 300, 30, 1282, 264, 5143, 300, 294, 264, 2135, 3170, 562, 321, 2942, 264, 1032, 10088, 11, 406, 510, 562, 321, 2942, 264, 1032, 10088, 352, 281, 14668, 293, 584, 5893, 976, 309, 17436, 1230, 490, 1386, 281, 502, 293, 976, 309, 269, 2744, 337, 1365, 12330, 550, 584, 307, 71, 293, 1884, 364, 2657, 490, 309], "avg_logprob": -0.5423387375570112, "compression_ratio": 1.6329113924050633, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 2455.68, "end": 2456.0, "word": "Why", "probability": 0.2333984375}, {"start": 2456.0, "end": 2456.22, "word": " did", "probability": 0.41162109375}, {"start": 2456.22, "end": 2456.32, "word": " I", "probability": 0.89794921875}, {"start": 2456.32, "end": 2456.32, "word": " do", "probability": 0.82080078125}, {"start": 2456.32, "end": 2456.58, "word": " that?", "probability": 0.41015625}, {"start": 2456.78, "end": 2456.94, "word": " On", "probability": 0.1748046875}, {"start": 2456.94, "end": 2457.04, "word": " the", "probability": 0.81640625}, {"start": 2457.04, "end": 2457.22, "word": " basis", "probability": 0.58154296875}, {"start": 2457.22, "end": 2457.54, "word": " that", "probability": 0.76025390625}, {"start": 2457.54, "end": 2458.48, "word": " in", "probability": 0.66943359375}, {"start": 2458.48, "end": 2458.58, "word": " the", "probability": 0.794921875}, {"start": 2458.58, "end": 2458.7, "word": " main", "probability": 0.6904296875}, {"start": 2458.7, "end": 2459.12, "word": " method", "probability": 0.89599609375}, {"start": 2459.12, "end": 2459.92, "word": " when", "probability": 0.45556640625}, {"start": 2459.92, "end": 2460.04, "word": " we", "probability": 0.82373046875}, {"start": 2460.04, "end": 2460.28, "word": " created", "probability": 0.466796875}, {"start": 2460.28, "end": 2460.48, "word": " the", "probability": 0.7333984375}, {"start": 2460.48, "end": 2460.62, "word": " car", "probability": 0.253173828125}, {"start": 2460.62, "end": 2460.9, "word": " module,", "probability": 0.77197265625}, {"start": 2461.04, "end": 2461.14, "word": " not", "probability": 0.61083984375}, {"start": 2461.14, "end": 2461.28, "word": " here", "probability": 0.73486328125}, {"start": 2461.28, "end": 2461.28, "word": " when", "probability": 0.1361083984375}, {"start": 2461.28, "end": 2461.4, "word": " we", "probability": 0.94775390625}, {"start": 2461.4, "end": 2461.54, "word": " created", "probability": 0.74609375}, {"start": 2461.54, "end": 2461.72, "word": " the", "probability": 0.8671875}, {"start": 2461.72, "end": 2461.88, "word": " car", "probability": 0.90087890625}, {"start": 2461.88, "end": 2462.2, "word": " module", "probability": 0.84619140625}, {"start": 2462.2, "end": 2462.98, "word": " go", "probability": 0.2022705078125}, {"start": 2462.98, "end": 2463.14, "word": " to", "probability": 0.96435546875}, {"start": 2463.14, "end": 2463.48, "word": " cm", "probability": 0.58935546875}, {"start": 2463.48, "end": 2464.34, "word": " and", "probability": 0.83837890625}, {"start": 2464.34, "end": 2464.52, "word": " say", "probability": 0.376953125}, {"start": 2464.52, "end": 2464.9, "word": " dot", "probability": 0.6787109375}, {"start": 2464.9, "end": 2465.9, "word": " give", "probability": 0.39404296875}, {"start": 2465.9, "end": 2466.02, "word": " it", "probability": 0.53759765625}, {"start": 2466.02, "end": 2466.3, "word": " serial", "probability": 0.6416015625}, {"start": 2466.3, "end": 2466.68, "word": " number", "probability": 0.95947265625}, {"start": 2466.68, "end": 2467.5, "word": " from", "probability": 0.48095703125}, {"start": 2467.5, "end": 2468.22, "word": " 6", "probability": 0.8095703125}, {"start": 2468.22, "end": 2468.38, "word": " to", "probability": 0.974609375}, {"start": 2468.38, "end": 2468.72, "word": " 1", "probability": 0.97607421875}, {"start": 2468.72, "end": 2471.62, "word": " and", "probability": 0.61962890625}, {"start": 2471.62, "end": 2471.9, "word": " give", "probability": 0.75732421875}, {"start": 2471.9, "end": 2472.2, "word": " it", "probability": 0.80712890625}, {"start": 2472.2, "end": 2474.24, "word": " c", "probability": 0.393798828125}, {"start": 2474.24, "end": 2474.7, "word": " size", "probability": 0.64453125}, {"start": 2474.7, "end": 2474.88, "word": " for", "probability": 0.32373046875}, {"start": 2474.88, "end": 2475.18, "word": " example", "probability": 0.93408203125}, {"start": 2475.18, "end": 2476.14, "word": " 55", "probability": 0.8115234375}, {"start": 2476.14, "end": 2478.88, "word": " then", "probability": 0.1402587890625}, {"start": 2478.88, "end": 2479.3, "word": " say", "probability": 0.45703125}, {"start": 2479.3, "end": 2479.86, "word": " ish", "probability": 0.5279541015625}, {"start": 2479.86, "end": 2480.3, "word": " and", "probability": 0.51611328125}, {"start": 2480.3, "end": 2480.6, "word": " create", "probability": 0.53369140625}, {"start": 2480.6, "end": 2480.76, "word": " an", "probability": 0.344970703125}, {"start": 2480.76, "end": 2480.98, "word": " object", "probability": 0.97216796875}, {"start": 2480.98, "end": 2481.26, "word": " from", "probability": 0.7646484375}, {"start": 2481.26, "end": 2481.66, "word": " it", "probability": 0.78173828125}], "temperature": 1.0}, {"id": 95, "seek": 251083, "start": 2489.89, "end": 2510.83, "text": " Yes, this is the valve, this is the main chamber here. It has nothing to do with this. The C size is 55 and the serial number is from 6 to 1. In the last lecture, we did not use the module because it only used annotations.", "tokens": [1079, 11, 341, 307, 264, 15294, 11, 341, 307, 264, 2135, 13610, 510, 13, 467, 575, 1825, 281, 360, 365, 341, 13, 440, 383, 2744, 307, 12330, 293, 264, 17436, 1230, 307, 490, 1386, 281, 502, 13, 682, 264, 1036, 7991, 11, 321, 630, 406, 764, 264, 10088, 570, 309, 787, 1143, 25339, 763, 13], "avg_logprob": -0.5485490815980094, "compression_ratio": 1.4387096774193548, "no_speech_prob": 9.775161743164062e-06, "words": [{"start": 2489.89, "end": 2490.49, "word": " Yes,", "probability": 0.04193115234375}, {"start": 2494.43, "end": 2494.99, "word": " this", "probability": 0.66162109375}, {"start": 2494.99, "end": 2495.09, "word": " is", "probability": 0.66162109375}, {"start": 2495.09, "end": 2495.47, "word": " the", "probability": 0.5673828125}, {"start": 2495.47, "end": 2495.87, "word": " valve,", "probability": 0.77294921875}, {"start": 2496.11, "end": 2496.31, "word": " this", "probability": 0.6123046875}, {"start": 2496.31, "end": 2496.43, "word": " is", "probability": 0.8447265625}, {"start": 2496.43, "end": 2496.49, "word": " the", "probability": 0.61474609375}, {"start": 2496.49, "end": 2496.51, "word": " main", "probability": 0.1954345703125}, {"start": 2496.51, "end": 2496.69, "word": " chamber", "probability": 0.1494140625}, {"start": 2496.69, "end": 2497.15, "word": " here.", "probability": 0.2125244140625}, {"start": 2497.87, "end": 2498.11, "word": " It", "probability": 0.33740234375}, {"start": 2498.11, "end": 2498.19, "word": " has", "probability": 0.685546875}, {"start": 2498.19, "end": 2498.29, "word": " nothing", "probability": 0.869140625}, {"start": 2498.29, "end": 2498.59, "word": " to", "probability": 0.97216796875}, {"start": 2498.59, "end": 2498.59, "word": " do", "probability": 0.97021484375}, {"start": 2498.59, "end": 2498.71, "word": " with", "probability": 0.90234375}, {"start": 2498.71, "end": 2498.93, "word": " this.", "probability": 0.6337890625}, {"start": 2499.31, "end": 2499.91, "word": " The", "probability": 0.2449951171875}, {"start": 2499.91, "end": 2500.43, "word": " C", "probability": 0.77685546875}, {"start": 2500.43, "end": 2500.67, "word": " size", "probability": 0.54736328125}, {"start": 2500.67, "end": 2500.75, "word": " is", "probability": 0.87451171875}, {"start": 2500.75, "end": 2501.15, "word": " 55", "probability": 0.890625}, {"start": 2501.15, "end": 2501.57, "word": " and", "probability": 0.5732421875}, {"start": 2501.57, "end": 2501.67, "word": " the", "probability": 0.72021484375}, {"start": 2501.67, "end": 2501.85, "word": " serial", "probability": 0.60107421875}, {"start": 2501.85, "end": 2502.25, "word": " number", "probability": 0.9326171875}, {"start": 2502.25, "end": 2502.91, "word": " is", "probability": 0.63818359375}, {"start": 2502.91, "end": 2502.93, "word": " from", "probability": 0.5419921875}, {"start": 2502.93, "end": 2503.31, "word": " 6", "probability": 0.876953125}, {"start": 2503.31, "end": 2504.35, "word": " to", "probability": 0.97021484375}, {"start": 2504.35, "end": 2504.71, "word": " 1.", "probability": 0.9892578125}, {"start": 2505.15, "end": 2505.49, "word": " In", "probability": 0.22802734375}, {"start": 2505.49, "end": 2506.69, "word": " the", "probability": 0.75830078125}, {"start": 2506.69, "end": 2507.35, "word": " last", "probability": 0.429443359375}, {"start": 2507.35, "end": 2507.35, "word": " lecture,", "probability": 0.818359375}, {"start": 2507.63, "end": 2507.99, "word": " we", "probability": 0.904296875}, {"start": 2507.99, "end": 2508.09, "word": " did", "probability": 0.58056640625}, {"start": 2508.09, "end": 2508.09, "word": " not", "probability": 0.94287109375}, {"start": 2508.09, "end": 2508.47, "word": " use", "probability": 0.86181640625}, {"start": 2508.47, "end": 2508.69, "word": " the", "probability": 0.6376953125}, {"start": 2508.69, "end": 2509.01, "word": " module", "probability": 0.8564453125}, {"start": 2509.01, "end": 2509.31, "word": " because", "probability": 0.5234375}, {"start": 2509.31, "end": 2509.59, "word": " it", "probability": 0.685546875}, {"start": 2509.59, "end": 2509.69, "word": " only", "probability": 0.517578125}, {"start": 2509.69, "end": 2510.17, "word": " used", "probability": 0.6962890625}, {"start": 2510.17, "end": 2510.83, "word": " annotations.", "probability": 0.673828125}], "temperature": 1.0}, {"id": 96, "seek": 254027, "start": 2511.57, "end": 2540.27, "text": " I was assuming that each class has an injectable constructor But if I have an interface that wants to know what class it wants to create I have a class that does not have an injectable constructor and wants to know how to do it It needs a provider or provide method It has parameters, arguments for the constructors of primitive type To know what values ​​we want to pass All these things need a module Okay guys? And as I told you, the tester", "tokens": [286, 390, 11926, 300, 1184, 1508, 575, 364, 10711, 712, 47479, 583, 498, 286, 362, 364, 9226, 300, 2738, 281, 458, 437, 1508, 309, 2738, 281, 1884, 286, 362, 257, 1508, 300, 775, 406, 362, 364, 10711, 712, 47479, 293, 2738, 281, 458, 577, 281, 360, 309, 467, 2203, 257, 12398, 420, 2893, 3170, 467, 575, 9834, 11, 12869, 337, 264, 7690, 830, 295, 28540, 2010, 1407, 458, 437, 4190, 8701, 826, 528, 281, 1320, 1057, 613, 721, 643, 257, 10088, 1033, 1074, 30, 400, 382, 286, 1907, 291, 11, 264, 36101], "avg_logprob": -0.5268817127391856, "compression_ratio": 1.7707509881422925, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 2511.57, "end": 2511.89, "word": " I", "probability": 0.2408447265625}, {"start": 2511.89, "end": 2511.99, "word": " was", "probability": 0.13134765625}, {"start": 2511.99, "end": 2512.27, "word": " assuming", "probability": 0.6513671875}, {"start": 2512.27, "end": 2512.51, "word": " that", "probability": 0.796875}, {"start": 2512.51, "end": 2512.73, "word": " each", "probability": 0.44580078125}, {"start": 2512.73, "end": 2513.11, "word": " class", "probability": 0.94677734375}, {"start": 2513.11, "end": 2513.61, "word": " has", "probability": 0.333251953125}, {"start": 2513.61, "end": 2513.91, "word": " an", "probability": 0.546875}, {"start": 2513.91, "end": 2514.45, "word": " injectable", "probability": 0.97705078125}, {"start": 2514.45, "end": 2515.43, "word": " constructor", "probability": 0.89990234375}, {"start": 2515.43, "end": 2516.09, "word": " But", "probability": 0.245849609375}, {"start": 2516.09, "end": 2516.37, "word": " if", "probability": 0.65966796875}, {"start": 2516.37, "end": 2517.07, "word": " I", "probability": 0.59912109375}, {"start": 2517.07, "end": 2517.25, "word": " have", "probability": 0.7734375}, {"start": 2517.25, "end": 2517.37, "word": " an", "probability": 0.74951171875}, {"start": 2517.37, "end": 2517.73, "word": " interface", "probability": 0.904296875}, {"start": 2517.73, "end": 2517.85, "word": " that", "probability": 0.6181640625}, {"start": 2517.85, "end": 2517.97, "word": " wants", "probability": 0.411865234375}, {"start": 2517.97, "end": 2517.99, "word": " to", "probability": 0.966796875}, {"start": 2517.99, "end": 2518.11, "word": " know", "probability": 0.78125}, {"start": 2518.11, "end": 2518.27, "word": " what", "probability": 0.54248046875}, {"start": 2518.27, "end": 2518.63, "word": " class", "probability": 0.88671875}, {"start": 2518.63, "end": 2518.77, "word": " it", "probability": 0.27392578125}, {"start": 2518.77, "end": 2518.85, "word": " wants", "probability": 0.42919921875}, {"start": 2518.85, "end": 2518.89, "word": " to", "probability": 0.9609375}, {"start": 2518.89, "end": 2519.19, "word": " create", "probability": 0.60009765625}, {"start": 2519.19, "end": 2519.53, "word": " I", "probability": 0.2423095703125}, {"start": 2519.53, "end": 2520.01, "word": " have", "probability": 0.9091796875}, {"start": 2520.01, "end": 2520.07, "word": " a", "probability": 0.9248046875}, {"start": 2520.07, "end": 2520.31, "word": " class", "probability": 0.97607421875}, {"start": 2520.31, "end": 2520.43, "word": " that", "probability": 0.6943359375}, {"start": 2520.43, "end": 2520.49, "word": " does", "probability": 0.433349609375}, {"start": 2520.49, "end": 2520.49, "word": " not", "probability": 0.91650390625}, {"start": 2520.49, "end": 2520.65, "word": " have", "probability": 0.89501953125}, {"start": 2520.65, "end": 2520.75, "word": " an", "probability": 0.79541015625}, {"start": 2520.75, "end": 2521.13, "word": " injectable", "probability": 0.969970703125}, {"start": 2521.13, "end": 2521.61, "word": " constructor", "probability": 0.85546875}, {"start": 2521.61, "end": 2521.73, "word": " and", "probability": 0.3798828125}, {"start": 2521.73, "end": 2521.89, "word": " wants", "probability": 0.62939453125}, {"start": 2521.89, "end": 2521.93, "word": " to", "probability": 0.9658203125}, {"start": 2521.93, "end": 2522.07, "word": " know", "probability": 0.84326171875}, {"start": 2522.07, "end": 2522.29, "word": " how", "probability": 0.92041015625}, {"start": 2522.29, "end": 2522.39, "word": " to", "probability": 0.84033203125}, {"start": 2522.39, "end": 2522.61, "word": " do", "probability": 0.262939453125}, {"start": 2522.61, "end": 2522.75, "word": " it", "probability": 0.89404296875}, {"start": 2522.75, "end": 2522.81, "word": " It", "probability": 0.2861328125}, {"start": 2522.81, "end": 2522.93, "word": " needs", "probability": 0.6474609375}, {"start": 2522.93, "end": 2523.05, "word": " a", "probability": 0.91015625}, {"start": 2523.05, "end": 2523.45, "word": " provider", "probability": 0.90185546875}, {"start": 2523.45, "end": 2523.75, "word": " or", "probability": 0.8671875}, {"start": 2523.75, "end": 2524.15, "word": " provide", "probability": 0.73779296875}, {"start": 2524.15, "end": 2524.61, "word": " method", "probability": 0.9326171875}, {"start": 2524.61, "end": 2525.51, "word": " It", "probability": 0.402099609375}, {"start": 2525.51, "end": 2526.41, "word": " has", "probability": 0.89990234375}, {"start": 2526.41, "end": 2528.07, "word": " parameters,", "probability": 0.94189453125}, {"start": 2528.31, "end": 2528.73, "word": " arguments", "probability": 0.64697265625}, {"start": 2528.73, "end": 2528.95, "word": " for", "probability": 0.755859375}, {"start": 2528.95, "end": 2529.03, "word": " the", "probability": 0.3525390625}, {"start": 2529.03, "end": 2529.69, "word": " constructors", "probability": 0.804443359375}, {"start": 2529.69, "end": 2529.85, "word": " of", "probability": 0.36767578125}, {"start": 2529.85, "end": 2530.37, "word": " primitive", "probability": 0.62744140625}, {"start": 2530.37, "end": 2530.79, "word": " type", "probability": 0.8916015625}, {"start": 2530.79, "end": 2530.93, "word": " To", "probability": 0.301513671875}, {"start": 2530.93, "end": 2531.19, "word": " know", "probability": 0.78515625}, {"start": 2531.19, "end": 2531.41, "word": " what", "probability": 0.70947265625}, {"start": 2531.41, "end": 2531.77, "word": " values", "probability": 0.67138671875}, {"start": 2531.77, "end": 2531.93, "word": " ​​we", "probability": 0.296630859375}, {"start": 2531.93, "end": 2532.23, "word": " want", "probability": 0.326416015625}, {"start": 2532.23, "end": 2532.63, "word": " to", "probability": 0.93310546875}, {"start": 2532.63, "end": 2532.85, "word": " pass", "probability": 0.37060546875}, {"start": 2532.85, "end": 2533.89, "word": " All", "probability": 0.11407470703125}, {"start": 2533.89, "end": 2534.01, "word": " these", "probability": 0.62109375}, {"start": 2534.01, "end": 2534.25, "word": " things", "probability": 0.442138671875}, {"start": 2534.25, "end": 2534.79, "word": " need", "probability": 0.274658203125}, {"start": 2534.79, "end": 2535.21, "word": " a", "probability": 0.54541015625}, {"start": 2535.21, "end": 2536.33, "word": " module", "probability": 0.90478515625}, {"start": 2536.33, "end": 2537.47, "word": " Okay", "probability": 0.15673828125}, {"start": 2537.47, "end": 2537.99, "word": " guys?", "probability": 0.6435546875}, {"start": 2539.03, "end": 2539.09, "word": " And", "probability": 0.6435546875}, {"start": 2539.09, "end": 2539.19, "word": " as", "probability": 0.87255859375}, {"start": 2539.19, "end": 2539.31, "word": " I", "probability": 0.9775390625}, {"start": 2539.31, "end": 2539.59, "word": " told", "probability": 0.75341796875}, {"start": 2539.59, "end": 2539.83, "word": " you,", "probability": 0.96337890625}, {"start": 2539.89, "end": 2539.99, "word": " the", "probability": 0.638671875}, {"start": 2539.99, "end": 2540.27, "word": " tester", "probability": 0.335205078125}], "temperature": 1.0}, {"id": 97, "seek": 257031, "start": 2541.95, "end": 2570.31, "text": " It doesn't go through the tree or what are the details in it. It just goes to the module and knows that it wants to run a test. For example, it finds that the DB interface is connected to MySQL DB. It goes directly to the DB interface, implements it, and puts results in it. This is the interface thread as well. It shows it what methods it wants to implement. It puts fake data in it and returns it. It only changes the binding.", "tokens": [467, 1177, 380, 352, 807, 264, 4230, 420, 437, 366, 264, 4365, 294, 309, 13, 467, 445, 1709, 281, 264, 10088, 293, 3255, 300, 309, 2738, 281, 1190, 257, 1500, 13, 1171, 1365, 11, 309, 10704, 300, 264, 26754, 9226, 307, 4582, 281, 1222, 39934, 26754, 13, 467, 1709, 3838, 281, 264, 26754, 9226, 11, 704, 17988, 309, 11, 293, 8137, 3542, 294, 309, 13, 639, 307, 264, 9226, 7207, 382, 731, 13, 467, 3110, 309, 437, 7150, 309, 2738, 281, 4445, 13, 467, 8137, 7592, 1412, 294, 309, 293, 11247, 309, 13, 467, 787, 2962, 264, 17359, 13], "avg_logprob": -0.5093750256299973, "compression_ratio": 1.7338709677419355, "no_speech_prob": 4.351139068603516e-06, "words": [{"start": 2541.9500000000003, "end": 2542.51, "word": " It", "probability": 0.3349609375}, {"start": 2542.51, "end": 2542.61, "word": " doesn't", "probability": 0.70751953125}, {"start": 2542.61, "end": 2542.99, "word": " go", "probability": 0.0953369140625}, {"start": 2542.99, "end": 2543.13, "word": " through", "probability": 0.359619140625}, {"start": 2543.13, "end": 2543.29, "word": " the", "probability": 0.53173828125}, {"start": 2543.29, "end": 2543.57, "word": " tree", "probability": 0.67138671875}, {"start": 2543.57, "end": 2543.83, "word": " or", "probability": 0.423095703125}, {"start": 2543.83, "end": 2543.99, "word": " what", "probability": 0.193115234375}, {"start": 2543.99, "end": 2544.03, "word": " are", "probability": 0.447265625}, {"start": 2544.03, "end": 2544.13, "word": " the", "probability": 0.61083984375}, {"start": 2544.13, "end": 2544.45, "word": " details", "probability": 0.638671875}, {"start": 2544.45, "end": 2544.71, "word": " in", "probability": 0.396484375}, {"start": 2544.71, "end": 2545.01, "word": " it.", "probability": 0.84423828125}, {"start": 2545.37, "end": 2545.85, "word": " It", "probability": 0.49560546875}, {"start": 2545.85, "end": 2545.87, "word": " just", "probability": 0.472412109375}, {"start": 2545.87, "end": 2546.07, "word": " goes", "probability": 0.78515625}, {"start": 2546.07, "end": 2546.29, "word": " to", "probability": 0.7568359375}, {"start": 2546.29, "end": 2546.43, "word": " the", "probability": 0.89794921875}, {"start": 2546.43, "end": 2546.79, "word": " module", "probability": 0.89697265625}, {"start": 2546.79, "end": 2546.95, "word": " and", "probability": 0.681640625}, {"start": 2546.95, "end": 2547.25, "word": " knows", "probability": 0.265380859375}, {"start": 2547.25, "end": 2547.87, "word": " that", "probability": 0.291259765625}, {"start": 2547.87, "end": 2548.33, "word": " it", "probability": 0.66845703125}, {"start": 2548.33, "end": 2548.71, "word": " wants", "probability": 0.47900390625}, {"start": 2548.71, "end": 2548.71, "word": " to", "probability": 0.96630859375}, {"start": 2548.71, "end": 2548.87, "word": " run", "probability": 0.366943359375}, {"start": 2548.87, "end": 2548.95, "word": " a", "probability": 0.9404296875}, {"start": 2548.95, "end": 2549.29, "word": " test.", "probability": 0.87548828125}, {"start": 2549.73, "end": 2550.11, "word": " For", "probability": 0.423095703125}, {"start": 2550.11, "end": 2550.63, "word": " example,", "probability": 0.90087890625}, {"start": 2550.63, "end": 2550.63, "word": " it", "probability": 0.79150390625}, {"start": 2550.63, "end": 2550.63, "word": " finds", "probability": 0.73681640625}, {"start": 2550.63, "end": 2551.11, "word": " that", "probability": 0.6533203125}, {"start": 2551.11, "end": 2552.19, "word": " the", "probability": 0.4697265625}, {"start": 2552.19, "end": 2552.55, "word": " DB", "probability": 0.75048828125}, {"start": 2552.55, "end": 2553.29, "word": " interface", "probability": 0.869140625}, {"start": 2553.29, "end": 2553.43, "word": " is", "probability": 0.89599609375}, {"start": 2553.43, "end": 2553.65, "word": " connected", "probability": 0.309326171875}, {"start": 2553.65, "end": 2554.09, "word": " to", "probability": 0.8505859375}, {"start": 2554.09, "end": 2554.69, "word": " MySQL", "probability": 0.869384765625}, {"start": 2554.69, "end": 2555.09, "word": " DB.", "probability": 0.63037109375}, {"start": 2556.03, "end": 2556.33, "word": " It", "probability": 0.85791015625}, {"start": 2556.33, "end": 2556.47, "word": " goes", "probability": 0.57568359375}, {"start": 2556.47, "end": 2556.87, "word": " directly", "probability": 0.344970703125}, {"start": 2556.87, "end": 2556.99, "word": " to", "probability": 0.947265625}, {"start": 2556.99, "end": 2557.09, "word": " the", "probability": 0.88818359375}, {"start": 2557.09, "end": 2557.29, "word": " DB", "probability": 0.947265625}, {"start": 2557.29, "end": 2557.79, "word": " interface,", "probability": 0.85791015625}, {"start": 2557.95, "end": 2558.63, "word": " implements", "probability": 0.6207275390625}, {"start": 2558.63, "end": 2558.67, "word": " it,", "probability": 0.89794921875}, {"start": 2558.79, "end": 2558.85, "word": " and", "probability": 0.68896484375}, {"start": 2558.85, "end": 2559.11, "word": " puts", "probability": 0.447265625}, {"start": 2559.11, "end": 2559.29, "word": " results", "probability": 0.515625}, {"start": 2559.29, "end": 2559.29, "word": " in", "probability": 0.6962890625}, {"start": 2559.29, "end": 2560.97, "word": " it.", "probability": 0.8642578125}, {"start": 2561.87, "end": 2562.43, "word": " This", "probability": 0.5390625}, {"start": 2562.43, "end": 2562.47, "word": " is", "probability": 0.84814453125}, {"start": 2562.47, "end": 2562.85, "word": " the", "probability": 0.56298828125}, {"start": 2562.85, "end": 2563.17, "word": " interface", "probability": 0.46044921875}, {"start": 2563.17, "end": 2563.29, "word": " thread", "probability": 0.072021484375}, {"start": 2563.29, "end": 2563.51, "word": " as", "probability": 0.295654296875}, {"start": 2563.51, "end": 2563.59, "word": " well.", "probability": 0.94189453125}, {"start": 2563.71, "end": 2563.73, "word": " It", "probability": 0.85009765625}, {"start": 2563.73, "end": 2564.01, "word": " shows", "probability": 0.669921875}, {"start": 2564.01, "end": 2564.13, "word": " it", "probability": 0.5439453125}, {"start": 2564.13, "end": 2564.29, "word": " what", "probability": 0.435302734375}, {"start": 2564.29, "end": 2564.81, "word": " methods", "probability": 0.77685546875}, {"start": 2564.81, "end": 2565.73, "word": " it", "probability": 0.66845703125}, {"start": 2565.73, "end": 2565.99, "word": " wants", "probability": 0.78173828125}, {"start": 2565.99, "end": 2565.99, "word": " to", "probability": 0.93505859375}, {"start": 2565.99, "end": 2566.45, "word": " implement.", "probability": 0.751953125}, {"start": 2566.63, "end": 2566.83, "word": " It", "probability": 0.81591796875}, {"start": 2566.83, "end": 2567.03, "word": " puts", "probability": 0.53369140625}, {"start": 2567.03, "end": 2567.45, "word": " fake", "probability": 0.75048828125}, {"start": 2567.45, "end": 2567.75, "word": " data", "probability": 0.94677734375}, {"start": 2567.75, "end": 2567.75, "word": " in", "probability": 0.5517578125}, {"start": 2567.75, "end": 2567.75, "word": " it", "probability": 0.75732421875}, {"start": 2567.75, "end": 2567.91, "word": " and", "probability": 0.60107421875}, {"start": 2567.91, "end": 2568.03, "word": " returns", "probability": 0.60107421875}, {"start": 2568.03, "end": 2568.31, "word": " it.", "probability": 0.64794921875}, {"start": 2568.41, "end": 2568.53, "word": " It", "probability": 0.5673828125}, {"start": 2568.53, "end": 2568.99, "word": " only", "probability": 0.380859375}, {"start": 2568.99, "end": 2568.99, "word": " changes", "probability": 0.85498046875}, {"start": 2568.99, "end": 2569.95, "word": " the", "probability": 0.59619140625}, {"start": 2569.95, "end": 2570.31, "word": " binding.", "probability": 0.82666015625}], "temperature": 1.0}, {"id": 98, "seek": 259748, "start": 2571.36, "end": 2597.48, "text": "It changes the binding and everyone follows it. This is how testers work. Testers love dependency injection. Dependency injection overrides programming. Testers say to you, I don't have anything to do with your tree, who uses whom and what they do. Give me what you owe me and I will change this step for each interface in another class.", "tokens": [3522, 2962, 264, 17359, 293, 1518, 10002, 309, 13, 639, 307, 577, 1500, 433, 589, 13, 9279, 433, 959, 33621, 22873, 13, 4056, 521, 3020, 22873, 670, 81, 1875, 9410, 13, 9279, 433, 584, 281, 291, 11, 286, 500, 380, 362, 1340, 281, 360, 365, 428, 4230, 11, 567, 4960, 7101, 293, 437, 436, 360, 13, 5303, 385, 437, 291, 16655, 385, 293, 286, 486, 1319, 341, 1823, 337, 1184, 9226, 294, 1071, 1508, 13], "avg_logprob": -0.6550164403099763, "compression_ratio": 1.5896226415094339, "no_speech_prob": 2.2649765014648438e-06, "words": [{"start": 2571.36, "end": 2571.54, "word": "It", "probability": 0.1998291015625}, {"start": 2571.54, "end": 2572.5, "word": " changes", "probability": 0.6201171875}, {"start": 2572.5, "end": 2572.68, "word": " the", "probability": 0.65283203125}, {"start": 2572.68, "end": 2573.0, "word": " binding", "probability": 0.76904296875}, {"start": 2573.0, "end": 2573.16, "word": " and", "probability": 0.71484375}, {"start": 2573.16, "end": 2573.36, "word": " everyone", "probability": 0.1656494140625}, {"start": 2573.36, "end": 2574.48, "word": " follows", "probability": 0.3349609375}, {"start": 2574.48, "end": 2574.74, "word": " it.", "probability": 0.5166015625}, {"start": 2574.86, "end": 2575.02, "word": " This", "probability": 0.2191162109375}, {"start": 2575.02, "end": 2575.02, "word": " is", "probability": 0.85205078125}, {"start": 2575.02, "end": 2575.1, "word": " how", "probability": 0.875}, {"start": 2575.1, "end": 2575.56, "word": " testers", "probability": 0.76953125}, {"start": 2575.56, "end": 2575.96, "word": " work.", "probability": 0.85107421875}, {"start": 2576.1, "end": 2576.46, "word": " Testers", "probability": 0.87744140625}, {"start": 2576.46, "end": 2576.78, "word": " love", "probability": 0.689453125}, {"start": 2576.78, "end": 2577.14, "word": " dependency", "probability": 0.78759765625}, {"start": 2577.14, "end": 2579.0, "word": " injection.", "probability": 0.95751953125}, {"start": 2580.3, "end": 2580.94, "word": " Dependency", "probability": 0.826171875}, {"start": 2580.94, "end": 2581.28, "word": " injection", "probability": 0.8681640625}, {"start": 2581.28, "end": 2581.66, "word": " overrides", "probability": 0.4650472005208333}, {"start": 2581.66, "end": 2582.08, "word": " programming.", "probability": 0.70263671875}, {"start": 2583.52, "end": 2584.16, "word": " Testers", "probability": 0.5657958984375}, {"start": 2584.16, "end": 2584.64, "word": " say", "probability": 0.2418212890625}, {"start": 2584.64, "end": 2584.72, "word": " to", "probability": 0.278076171875}, {"start": 2584.72, "end": 2584.72, "word": " you,", "probability": 0.4013671875}, {"start": 2584.72, "end": 2585.16, "word": " I", "probability": 0.2215576171875}, {"start": 2585.16, "end": 2585.24, "word": " don't", "probability": 0.688720703125}, {"start": 2585.24, "end": 2585.32, "word": " have", "probability": 0.283203125}, {"start": 2585.32, "end": 2585.54, "word": " anything", "probability": 0.38720703125}, {"start": 2585.54, "end": 2585.56, "word": " to", "probability": 0.96826171875}, {"start": 2585.56, "end": 2585.56, "word": " do", "probability": 0.96337890625}, {"start": 2585.56, "end": 2585.64, "word": " with", "probability": 0.8916015625}, {"start": 2585.64, "end": 2585.76, "word": " your", "probability": 0.6357421875}, {"start": 2585.76, "end": 2585.94, "word": " tree,", "probability": 0.619140625}, {"start": 2586.26, "end": 2586.52, "word": " who", "probability": 0.57080078125}, {"start": 2586.52, "end": 2586.86, "word": " uses", "probability": 0.60009765625}, {"start": 2586.86, "end": 2587.18, "word": " whom", "probability": 0.413818359375}, {"start": 2587.18, "end": 2587.26, "word": " and", "probability": 0.59912109375}, {"start": 2587.26, "end": 2587.44, "word": " what", "probability": 0.78515625}, {"start": 2587.44, "end": 2587.44, "word": " they", "probability": 0.1910400390625}, {"start": 2587.44, "end": 2587.68, "word": " do.", "probability": 0.85888671875}, {"start": 2588.96, "end": 2589.6, "word": " Give", "probability": 0.4931640625}, {"start": 2589.6, "end": 2589.74, "word": " me", "probability": 0.544921875}, {"start": 2589.74, "end": 2590.18, "word": " what", "probability": 0.2281494140625}, {"start": 2590.18, "end": 2590.38, "word": " you", "probability": 0.322509765625}, {"start": 2590.38, "end": 2590.52, "word": " owe", "probability": 0.2396240234375}, {"start": 2590.52, "end": 2590.66, "word": " me", "probability": 0.6044921875}, {"start": 2590.66, "end": 2591.7, "word": " and", "probability": 0.5078125}, {"start": 2591.7, "end": 2591.9, "word": " I", "probability": 0.97509765625}, {"start": 2591.9, "end": 2591.98, "word": " will", "probability": 0.39013671875}, {"start": 2591.98, "end": 2592.36, "word": " change", "probability": 0.517578125}, {"start": 2592.36, "end": 2593.84, "word": " this", "probability": 0.2198486328125}, {"start": 2593.84, "end": 2594.6, "word": " step", "probability": 0.7861328125}, {"start": 2594.6, "end": 2594.84, "word": " for", "probability": 0.529296875}, {"start": 2594.84, "end": 2595.0, "word": " each", "probability": 0.75927734375}, {"start": 2595.0, "end": 2595.68, "word": " interface", "probability": 0.873046875}, {"start": 2595.68, "end": 2596.68, "word": " in", "probability": 0.56591796875}, {"start": 2596.68, "end": 2597.48, "word": " another", "probability": 0.492431640625}, {"start": 2597.48, "end": 2597.48, "word": " class.", "probability": 0.9501953125}], "temperature": 1.0}, {"id": 99, "seek": 262820, "start": 2599.96, "end": 2628.2, "text": " Is it clear, guys? Okay, this is a general idea about the dependency injection framework. Of course, as I said, juice may not be used much in the market, okay? I mean, in Spring, a lot of people use dependency injection. In Android, we still have libraries like Dagger and Hilt. Okay? And even on the web, advanced users have dependency injection, but their idea is the same. Okay? Almost everyone works this way.", "tokens": [1119, 309, 1850, 11, 1074, 30, 1033, 11, 341, 307, 257, 2674, 1558, 466, 264, 33621, 22873, 8388, 13, 2720, 1164, 11, 382, 286, 848, 11, 8544, 815, 406, 312, 1143, 709, 294, 264, 2142, 11, 1392, 30, 286, 914, 11, 294, 14013, 11, 257, 688, 295, 561, 764, 33621, 22873, 13, 682, 8853, 11, 321, 920, 362, 15148, 411, 413, 11062, 293, 389, 2352, 13, 1033, 30, 400, 754, 322, 264, 3670, 11, 7339, 5022, 362, 33621, 22873, 11, 457, 641, 1558, 307, 264, 912, 13, 1033, 30, 12627, 1518, 1985, 341, 636, 13], "avg_logprob": -0.43261717694501084, "compression_ratio": 1.649402390438247, "no_speech_prob": 6.258487701416016e-06, "words": [{"start": 2599.96, "end": 2600.14, "word": " Is", "probability": 0.293701171875}, {"start": 2600.14, "end": 2600.14, "word": " it", "probability": 0.75390625}, {"start": 2600.14, "end": 2600.28, "word": " clear,", "probability": 0.869140625}, {"start": 2600.48, "end": 2600.7, "word": " guys?", "probability": 0.7509765625}, {"start": 2601.58, "end": 2601.84, "word": " Okay,", "probability": 0.1466064453125}, {"start": 2601.94, "end": 2602.22, "word": " this", "probability": 0.76025390625}, {"start": 2602.22, "end": 2602.28, "word": " is", "probability": 0.9033203125}, {"start": 2602.28, "end": 2602.3, "word": " a", "probability": 0.7099609375}, {"start": 2602.3, "end": 2602.78, "word": " general", "probability": 0.875}, {"start": 2602.78, "end": 2602.78, "word": " idea", "probability": 0.80419921875}, {"start": 2602.78, "end": 2603.68, "word": " about", "probability": 0.5537109375}, {"start": 2603.68, "end": 2603.86, "word": " the", "probability": 0.4375}, {"start": 2603.86, "end": 2604.22, "word": " dependency", "probability": 0.61962890625}, {"start": 2604.22, "end": 2604.62, "word": " injection", "probability": 0.9580078125}, {"start": 2604.62, "end": 2605.3, "word": " framework.", "probability": 0.8740234375}, {"start": 2605.48, "end": 2605.54, "word": " Of", "probability": 0.57275390625}, {"start": 2605.54, "end": 2605.7, "word": " course,", "probability": 0.9560546875}, {"start": 2605.92, "end": 2605.98, "word": " as", "probability": 0.66015625}, {"start": 2605.98, "end": 2606.16, "word": " I", "probability": 0.9228515625}, {"start": 2606.16, "end": 2606.34, "word": " said,", "probability": 0.78564453125}, {"start": 2606.46, "end": 2606.76, "word": " juice", "probability": 0.6240234375}, {"start": 2606.76, "end": 2606.98, "word": " may", "probability": 0.2548828125}, {"start": 2606.98, "end": 2607.4, "word": " not", "probability": 0.92626953125}, {"start": 2607.4, "end": 2607.5, "word": " be", "probability": 0.91162109375}, {"start": 2607.5, "end": 2607.8, "word": " used", "probability": 0.67431640625}, {"start": 2607.8, "end": 2608.08, "word": " much", "probability": 0.54345703125}, {"start": 2608.08, "end": 2608.22, "word": " in", "probability": 0.92919921875}, {"start": 2608.22, "end": 2608.34, "word": " the", "probability": 0.8916015625}, {"start": 2608.34, "end": 2608.6, "word": " market,", "probability": 0.794921875}, {"start": 2609.28, "end": 2609.52, "word": " okay?", "probability": 0.646484375}, {"start": 2609.86, "end": 2609.86, "word": " I", "probability": 0.302490234375}, {"start": 2609.86, "end": 2610.48, "word": " mean,", "probability": 0.96826171875}, {"start": 2611.18, "end": 2611.3, "word": " in", "probability": 0.76708984375}, {"start": 2611.3, "end": 2611.8, "word": " Spring,", "probability": 0.60791015625}, {"start": 2612.04, "end": 2612.04, "word": " a", "probability": 0.1893310546875}, {"start": 2612.04, "end": 2612.24, "word": " lot", "probability": 0.9541015625}, {"start": 2612.24, "end": 2612.36, "word": " of", "probability": 0.83349609375}, {"start": 2612.36, "end": 2612.44, "word": " people", "probability": 0.83740234375}, {"start": 2612.44, "end": 2612.78, "word": " use", "probability": 0.7890625}, {"start": 2612.78, "end": 2613.1, "word": " dependency", "probability": 0.82373046875}, {"start": 2613.1, "end": 2613.68, "word": " injection.", "probability": 0.814453125}, {"start": 2613.9, "end": 2613.98, "word": " In", "probability": 0.8017578125}, {"start": 2613.98, "end": 2614.52, "word": " Android,", "probability": 0.91845703125}, {"start": 2615.18, "end": 2615.46, "word": " we", "probability": 0.34521484375}, {"start": 2615.46, "end": 2615.62, "word": " still", "probability": 0.397216796875}, {"start": 2615.62, "end": 2615.78, "word": " have", "probability": 0.943359375}, {"start": 2615.78, "end": 2616.24, "word": " libraries", "probability": 0.83203125}, {"start": 2616.24, "end": 2616.46, "word": " like", "probability": 0.60791015625}, {"start": 2616.46, "end": 2616.8, "word": " Dagger", "probability": 0.839111328125}, {"start": 2616.8, "end": 2616.96, "word": " and", "probability": 0.919921875}, {"start": 2616.96, "end": 2617.34, "word": " Hilt.", "probability": 0.921875}, {"start": 2617.96, "end": 2618.2, "word": " Okay?", "probability": 0.63232421875}, {"start": 2618.38, "end": 2618.54, "word": " And", "probability": 0.67724609375}, {"start": 2618.54, "end": 2618.82, "word": " even", "probability": 0.83203125}, {"start": 2618.82, "end": 2619.02, "word": " on", "probability": 0.382080078125}, {"start": 2619.02, "end": 2619.04, "word": " the", "probability": 0.8486328125}, {"start": 2619.04, "end": 2619.24, "word": " web,", "probability": 0.79541015625}, {"start": 2619.42, "end": 2619.56, "word": " advanced", "probability": 0.336669921875}, {"start": 2619.56, "end": 2620.4, "word": " users", "probability": 0.376708984375}, {"start": 2620.4, "end": 2621.16, "word": " have", "probability": 0.255615234375}, {"start": 2621.16, "end": 2622.2, "word": " dependency", "probability": 0.94775390625}, {"start": 2622.2, "end": 2622.78, "word": " injection,", "probability": 0.8876953125}, {"start": 2622.9, "end": 2623.12, "word": " but", "probability": 0.8876953125}, {"start": 2623.12, "end": 2623.28, "word": " their", "probability": 0.44384765625}, {"start": 2623.28, "end": 2623.58, "word": " idea", "probability": 0.74658203125}, {"start": 2623.58, "end": 2624.08, "word": " is", "probability": 0.9287109375}, {"start": 2624.08, "end": 2624.34, "word": " the", "probability": 0.5478515625}, {"start": 2624.34, "end": 2624.34, "word": " same.", "probability": 0.9013671875}, {"start": 2624.86, "end": 2625.16, "word": " Okay?", "probability": 0.7880859375}, {"start": 2625.34, "end": 2625.5, "word": " Almost", "probability": 0.324462890625}, {"start": 2625.5, "end": 2625.5, "word": " everyone", "probability": 0.578125}, {"start": 2625.5, "end": 2625.88, "word": " works", "probability": 0.68896484375}, {"start": 2625.88, "end": 2627.78, "word": " this", "probability": 0.64404296875}, {"start": 2627.78, "end": 2628.2, "word": " way.", "probability": 0.95849609375}], "temperature": 1.0}, {"id": 100, "seek": 263259, "start": 2630.27, "end": 2632.59, "text": " تمام جماعة يعطيكوا العافية", "tokens": [46811, 10943, 10874, 15042, 27884, 37495, 9566, 1829, 4117, 14407, 18863, 31845, 10632], "avg_logprob": -0.5892856929983411, "compression_ratio": 0.9433962264150944, "no_speech_prob": 0.0, "words": [{"start": 2630.27, "end": 2630.63, "word": " تمام", "probability": 0.502044677734375}, {"start": 2630.63, "end": 2631.09, "word": " جماعة", "probability": 0.7627766927083334}, {"start": 2631.09, "end": 2632.03, "word": " يعطيكوا", "probability": 0.719775390625}, {"start": 2632.03, "end": 2632.59, "word": " العافية", "probability": 0.6844075520833334}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2632.516, "duration_after_vad": 2367.9687499999927} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/30eEg3w3s6A_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/30eEg3w3s6A_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..b4ef532fe07cc64061e11eb90f8b02bb7a812715 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/30eEg3w3s6A_postprocess.srt @@ -0,0 +1,3100 @@ +1 +00:00:05,210 --> 00:00:07,970 +Bismillah ar-Rahman ar-Rahim. How are you guys? + +2 +00:00:10,830 --> 00:00:17,410 +Ok, today we will take two design patterns because + +3 +00:00:17,410 --> 00:00:21,250 +these design patterns are quite simple but at the + +4 +00:00:21,250 --> 00:00:23,670 +same time, especially the second design pattern + +5 +00:00:23,670 --> 00:00:26,990 +which is called strategy is an important and + +6 +00:00:26,990 --> 00:00:30,450 +widely used design pattern So let's start with the + +7 +00:00:30,450 --> 00:00:32,850 +two design patterns for today The first design + +8 +00:00:32,850 --> 00:00:35,570 +pattern we will take is called template method + +9 +00:00:37,320 --> 00:00:39,960 +Pattern And the template method pattern is a + +10 +00:00:39,960 --> 00:00:41,800 +method similar to the design pattern we took + +11 +00:00:41,800 --> 00:00:47,240 +previously which is the factory method But it is + +12 +00:00:47,240 --> 00:00:49,440 +similar to its implementation method, but its + +13 +00:00:49,440 --> 00:00:52,880 +purpose is different For this reason, let's + +14 +00:00:52,880 --> 00:00:55,440 +remember how the factory method worked or what its + +15 +00:00:55,440 --> 00:00:57,920 +purpose was The factory method, if you remember, + +16 +00:00:58,240 --> 00:01:00,900 +its purpose is that I have a common code between + +17 +00:01:00,900 --> 00:01:03,800 +the children but they differ in the type of object + +18 +00:01:03,800 --> 00:01:08,960 +that is createdOkay? So that's why I couldn't take + +19 +00:01:08,960 --> 00:01:13,800 +this code and put it in the app So I resorted to + +20 +00:01:13,800 --> 00:01:16,040 +the factor method on the basis that I put the code + +21 +00:01:16,040 --> 00:01:20,580 +in the app and assign the child to do the + +22 +00:01:20,580 --> 00:01:21,900 +different parts What were the different parts? + +23 +00:01:22,360 --> 00:01:24,880 +Creating the object and assigning the child to + +24 +00:01:24,880 --> 00:01:32,750 +create it Okay?The template method pattern is a + +25 +00:01:32,750 --> 00:01:34,770 +design pattern similar to this. I say that the + +26 +00:01:34,770 --> 00:01:38,630 +template method pattern is used when you have + +27 +00:01:38,630 --> 00:01:43,130 +algorithms in certain libraries consisting of a + +28 +00:01:43,130 --> 00:01:48,890 +set of stepsوبدك الخطوات هذه تتنفذ بترتيب .. + +29 +00:01:48,890 --> 00:01:53,910 +بترتيب معين تمام؟ يعني أنت كمبرمج بدك الخطوات هذه + +30 +00:01:53,910 --> 00:02:01,530 +تتنفذ بترتيب معين لكن ممكن يجي ناس يعمل subclasses + +31 +00:02:02,070 --> 00:02:06,110 +they change a step or the details of each step I + +32 +00:02:06,110 --> 00:02:09,650 +mean the idea is that you have to solve the + +33 +00:02:09,650 --> 00:02:12,750 +subclasses, that they change the steps, what's in + +34 +00:02:12,750 --> 00:02:16,430 +each step but the order of these steps has to be + +35 +00:02:16,430 --> 00:02:19,770 +executed in a certain order, okay? I mean the + +36 +00:02:19,770 --> 00:02:23,410 +goal, as I said a third time, from this design + +37 +00:02:23,410 --> 00:02:27,110 +pattern is that we want to make a wayWe define in + +38 +00:02:27,110 --> 00:02:29,930 +it the structure of a certain algorithm and its + +39 +00:02:29,930 --> 00:02:32,850 +steps in a certain order But I want to allow + +40 +00:02:32,850 --> 00:02:35,610 +children to change the details of each step + +41 +00:02:35,610 --> 00:02:39,950 +without changing the order of the steps And to + +42 +00:02:39,950 --> 00:02:44,470 +understand this, let's take a practical example of + +43 +00:02:44,470 --> 00:02:48,450 +where we need this thing Now, + +44 +00:02:49,250 --> 00:02:53,050 +one of the things that they use a lot in AI, which + +45 +00:02:53,050 --> 00:02:56,760 +is in text processingI mean, how does the search + +46 +00:02:56,760 --> 00:02:59,300 +engine work? Imagine that when you write a word + +47 +00:02:59,300 --> 00:03:03,160 +for yourself, it brings you to the pages that + +48 +00:03:03,160 --> 00:03:05,740 +contain this word. No, there are many steps to be + +49 +00:03:05,740 --> 00:03:09,520 +done before that. You have to read each page of + +50 +00:03:09,520 --> 00:03:11,800 +the internet, and this existing text has to take + +51 +00:03:11,800 --> 00:03:14,320 +certain steps. For example, it has to go and + +52 +00:03:14,320 --> 00:03:18,520 +divide the text, each word one by one. Then it + +53 +00:03:18,520 --> 00:03:21,060 +does a process called normalization, which means + +54 +00:03:21,060 --> 00:03:24,040 +that each word separates from it the vowels and + +55 +00:03:24,040 --> 00:03:27,240 +the extra letters.and then every word after that + +56 +00:03:27,240 --> 00:03:30,240 +goes and does something called stop word removal + +57 +00:03:30,240 --> 00:03:32,520 +which is the words that are not important that are + +58 +00:03:32,520 --> 00:03:35,220 +in the text, what do I do with them? I delete them + +59 +00:03:35,220 --> 00:03:39,260 +because they don't have an actual use like for + +60 +00:03:39,260 --> 00:03:43,620 +example the letters J and A for example in English + +61 +00:03:43,620 --> 00:03:46,020 +all of these words don't matter or their meanings + +62 +00:03:46,020 --> 00:03:49,700 +don't matter so I delete themAnd then I go and do + +63 +00:03:49,700 --> 00:03:51,920 +a process called stemming, what is stemming? It + +64 +00:03:51,920 --> 00:03:55,040 +brings back each word to its original root, why? + +65 +00:03:55,160 --> 00:03:57,320 +For example, suppose you are looking for the word + +66 +00:03:57,320 --> 00:04:04,630 +game, okay? You might find gamesYou see, if you + +67 +00:04:04,630 --> 00:04:06,130 +search for a game, it won't bring you games, + +68 +00:04:06,390 --> 00:04:08,710 +because this is one word and this is another word. + +69 +00:04:09,130 --> 00:04:11,570 +But if I return the word you are looking for and + +70 +00:04:11,570 --> 00:04:13,610 +the original word to their root, what is their + +71 +00:04:13,610 --> 00:04:16,790 +root? A game, and I say search for me in the root, + +72 +00:04:17,070 --> 00:04:20,680 +it will bring you that yes, the gameOkay, similar + +73 +00:04:20,680 --> 00:04:23,840 +to the word what? Game So this is an important + +74 +00:04:23,840 --> 00:04:26,520 +step in the process And then, for example, the + +75 +00:04:26,520 --> 00:04:28,900 +last step is that we make a classification of the + +76 +00:04:28,900 --> 00:04:31,700 +texts Because after reading the file and bringing + +77 +00:04:31,700 --> 00:04:34,600 +the words in it and returning them to their roots, + +78 +00:04:34,900 --> 00:04:36,480 +they will make a classification of the words to + +79 +00:04:36,480 --> 00:04:40,220 +put the similar words together and determine that + +80 +00:04:40,220 --> 00:04:44,170 +the document in generalIs it a document belonging + +81 +00:04:44,170 --> 00:04:46,630 +to any domain? Does it have anything to do with + +82 +00:04:46,630 --> 00:04:51,230 +sport, economy, politics and so on So the idea is + +83 +00:04:51,230 --> 00:04:53,430 +that any text processor goes through steps The + +84 +00:04:53,430 --> 00:04:58,910 +first step is to read the text The first step is + +85 +00:04:58,910 --> 00:05:00,210 +normalization + +86 +00:05:03,150 --> 00:05:05,910 +remove the consonants, remove the extra letters, + +87 +00:05:06,710 --> 00:05:10,870 +the Hamza unify it in a certain way so that when I + +88 +00:05:10,870 --> 00:05:12,910 +search for the word in Hamza written, other than + +89 +00:05:12,910 --> 00:05:14,570 +when I search for the word Hamza connected, for + +90 +00:05:14,570 --> 00:05:17,970 +example. Anyway, then I also have tokenization. + +91 +00:05:21,090 --> 00:05:25,670 +Divide the text for separate words. And then I + +92 +00:05:25,670 --> 00:05:29,630 +have stop word removal. + +93 +00:05:29,850 --> 00:05:34,610 +Remove the unimportant words.and then do the + +94 +00:05:34,610 --> 00:05:38,450 +stemming, bring back each word to its root, and + +95 +00:05:38,450 --> 00:05:41,770 +the last step is to do the classification process. + +96 +00:05:42,090 --> 00:05:44,650 +Our topic is not the processing of texts, but I + +97 +00:05:44,650 --> 00:05:46,710 +want to explain to you that any process of + +98 +00:05:46,710 --> 00:05:50,730 +processing texts goes through these steps. For + +99 +00:05:50,730 --> 00:05:53,490 +example, we want to make a library for processing + +100 +00:05:53,490 --> 00:05:57,350 +texts, and I want anyone, any programmer to + +101 +00:05:57,350 --> 00:06:00,690 +process any text, force him to go through all + +102 +00:06:00,690 --> 00:06:06,760 +these steps. But of course he can define or + +103 +00:06:06,760 --> 00:06:09,900 +execute the code of each step as he wants. For + +104 +00:06:09,900 --> 00:06:13,480 +example, read text. I can read from a database, + +105 +00:06:13,840 --> 00:06:18,280 +from a network, from a JSON file, from a text + +106 +00:06:18,280 --> 00:06:21,580 +file. Right or wrong guys? So read text, its + +107 +00:06:21,580 --> 00:06:23,800 +details, how I want to read the data is determined + +108 +00:06:23,800 --> 00:06:29,010 +by the programmer. Normalization, how ITreating + +109 +00:06:29,010 --> 00:06:32,010 +the text in a unified way, removing the extras, + +110 +00:06:32,190 --> 00:06:34,410 +removing the consonants, this also differs from + +111 +00:06:34,410 --> 00:06:37,010 +language to language, in English except Arabic, + +112 +00:06:37,090 --> 00:06:38,850 +Arabic has connected consonants, English does not + +113 +00:06:38,850 --> 00:06:41,770 +have connected consonants, okay? So what are the + +114 +00:06:41,770 --> 00:06:43,870 +steps of normalization that differ from + +115 +00:06:43,870 --> 00:06:45,110 +programming or from language to language? + +116 +00:06:45,810 --> 00:06:47,890 +Tokenization also divides the text into words, + +117 +00:06:47,990 --> 00:06:50,290 +also differs from language to language. Stop word + +118 +00:06:50,290 --> 00:06:52,690 +removal, removing irrelevant words, irrelevant + +119 +00:06:52,690 --> 00:06:55,650 +words in Arabic, irrelevant words in English + +120 +00:06:56,290 --> 00:06:58,210 +Stemming is to refer to every word that has + +121 +00:06:58,210 --> 00:07:02,370 +logarithms or certain ways Classification of texts + +122 +00:07:02,370 --> 00:07:05,890 +has many ways to classify them So I want a way + +123 +00:07:05,890 --> 00:07:08,450 +that either a programmer or someone who wants to + +124 +00:07:08,450 --> 00:07:12,050 +make a text processor You have to stick to these + +125 +00:07:12,050 --> 00:07:16,470 +steps in the same order But each code, each step, + +126 +00:07:16,710 --> 00:07:20,310 +you decide for yourself This is the goal that I + +127 +00:07:20,310 --> 00:07:24,740 +talked about in the beginningI have a set of steps + +128 +00:07:24,740 --> 00:07:28,220 +for an algorithm that I want it to execute in a + +129 +00:07:28,220 --> 00:07:29,920 +certain order, but I want to leave the details of + +130 +00:07:29,920 --> 00:07:33,900 +each step for the programmer. Because this is the + +131 +00:07:33,900 --> 00:07:35,260 +goal we want to achieve. How can we, as + +132 +00:07:35,260 --> 00:07:39,200 +programmers, force the programmer to follow + +133 +00:07:39,200 --> 00:07:43,340 +certain steps and allow him to change the steps as + +134 +00:07:43,340 --> 00:07:45,740 +he wants? This is what we want to do now as + +135 +00:07:45,740 --> 00:07:49,140 +programmers. So now I want to go to the same + +136 +00:07:49,140 --> 00:07:52,850 +example. We want to do the following. The first + +137 +00:07:52,850 --> 00:07:55,890 +thing I want to do is create a class called + +138 +00:07:55,890 --> 00:08:02,890 +AbstractTextProcessor And I want to make this + +139 +00:08:02,890 --> 00:08:06,310 +class abstract Why? Because I don't want to create + +140 +00:08:06,310 --> 00:08:09,690 +an object from this class I want to put code in + +141 +00:08:09,690 --> 00:08:12,630 +this class so that it has an extent But in + +142 +00:08:12,630 --> 00:08:16,490 +reality, no one will use this class to create an + +143 +00:08:16,490 --> 00:08:19,660 +object from itOkay, now what are the steps that I + +144 +00:08:19,660 --> 00:08:25,720 +have here? Okay? How many steps? 1,2,3,4,5,6 Six + +145 +00:08:25,720 --> 00:08:29,040 +steps, I want to do each step as an abstract + +146 +00:08:29,040 --> 00:08:33,680 +method Why? Because he wants to extend this class, + +147 +00:08:34,680 --> 00:08:39,160 +okay? He wants to override the steps in the way he + +148 +00:08:39,160 --> 00:08:41,940 +wants, okay? Then I do protected + +149 +00:08:47,480 --> 00:08:52,220 +Abstract, the first step is called read text, it + +150 +00:08:52,220 --> 00:08:54,260 +takes the string source from where it wants to + +151 +00:08:54,260 --> 00:08:57,820 +read the text and returns the string, which is the + +152 +00:08:57,820 --> 00:08:58,320 +whole text. + +153 +00:09:02,400 --> 00:09:04,140 +Of course, I made it protected, I will come back + +154 +00:09:04,140 --> 00:09:06,580 +and tell you why I made it protected. Then + +155 +00:09:06,580 --> 00:09:10,900 +protected, what is the second step? Normalization, + +156 +00:09:11,460 --> 00:09:14,400 +yes normalization, string, normalize + +157 +00:09:16,740 --> 00:09:19,160 +and I give him the text. This method takes the + +158 +00:09:19,160 --> 00:09:21,680 +text, makes it normalize and returns a new text + +159 +00:09:21,680 --> 00:09:26,180 +after it becomes normalization. The next step is + +160 +00:09:26,180 --> 00:09:27,300 +tokenize. + +161 +00:09:30,920 --> 00:09:35,740 +array of strings, I'm going to divide the text, + +162 +00:09:35,900 --> 00:09:40,240 +tokenize and give it a string text. + +163 +00:09:42,100 --> 00:09:45,440 +The next step, what's its name? + +164 +00:09:51,100 --> 00:09:59,980 +stop word removal and this one takes the + +165 +00:09:59,980 --> 00:10:02,360 +words after the partition, filters them, removes + +166 +00:10:02,360 --> 00:10:03,920 +the words that are not important and returns a new + +167 +00:10:03,920 --> 00:10:10,940 +list and the last step protected + +168 +00:10:10,940 --> 00:10:15,720 +abstract or the last step before the last one + +169 +00:10:15,720 --> 00:10:16,960 +which is stem + +170 +00:10:22,530 --> 00:10:25,910 +بتاخد الكلمات و بتعملهم stemming و الخطوة الأخيرة + +171 +00:10:25,910 --> 00:10:29,230 +abstract + +172 +00:10:29,230 --> 00:10:34,130 +بترجعلي list of classes بعد التصنيف classify + +173 +00:10:34,130 --> 00:10:42,160 +string هنا stemsOkay, these steps, each step I + +174 +00:10:42,160 --> 00:10:46,240 +represented with an abstract method The main goal + +175 +00:10:46,240 --> 00:10:50,180 +that we want to achieve is that the steps must be + +176 +00:10:50,180 --> 00:10:53,640 +executed in a certain order This is our main goal + +177 +00:10:53,640 --> 00:10:57,180 +The client or the person who wants to extend this + +178 +00:10:57,180 --> 00:11:00,900 +class must implement for whom? For these six steps + +179 +00:11:00,900 --> 00:11:04,060 +But we return to our main point that I don't want + +180 +00:11:04,060 --> 00:11:08,220 +the steps to be executed in a certain order So + +181 +00:11:08,220 --> 00:11:11,020 +let's go to the main point here I create a method + +182 +00:11:11,020 --> 00:11:15,500 +public This method public means from outside I see + +183 +00:11:15,500 --> 00:11:20,700 +it, these are protected, I only see them where? In + +184 +00:11:20,700 --> 00:11:22,920 +the package itself or in the subclass but from + +185 +00:11:22,920 --> 00:11:32,820 +outside, no Okay, public final Public final, here + +186 +00:11:32,820 --> 00:11:35,120 +it's name is process method and text + +187 +00:11:38,100 --> 00:11:40,300 +and I send him the source from where he wants to + +188 +00:11:40,300 --> 00:11:45,240 +read the text what will this method return? it + +189 +00:11:45,240 --> 00:11:47,940 +will return the final result which is the classes + +190 +00:11:47,940 --> 00:11:53,720 +so now the algorithm will execute inside this + +191 +00:11:53,720 --> 00:11:58,380 +method starting from reading the file until it + +192 +00:11:58,380 --> 00:12:01,680 +does the classification and returns the list of + +193 +00:12:01,680 --> 00:12:05,300 +classes so now everything I do inside the process + +194 +00:12:05,300 --> 00:12:10,190 +text will claim the abstract methods which means + +195 +00:12:10,190 --> 00:12:13,570 +the first step which is read text read text will + +196 +00:12:13,570 --> 00:12:16,970 +read from the source which I passed to him this + +197 +00:12:16,970 --> 00:12:23,590 +one and this one returns me a string text and then + +198 +00:12:23,590 --> 00:12:25,710 +this text which returns from the method will be + +199 +00:12:25,710 --> 00:12:28,470 +input to whom? to the next method to the one + +200 +00:12:28,470 --> 00:12:30,490 +behind it because the method will be executed in + +201 +00:12:30,490 --> 00:12:33,770 +this order and each output from the method will be + +202 +00:12:33,770 --> 00:12:39,130 +input to the next method normalize this will take + +203 +00:12:39,130 --> 00:12:48,470 +text and return me a string normalized text now + +204 +00:12:48,470 --> 00:12:58,970 +next stop word removal yes there is tokenize I + +205 +00:12:58,970 --> 00:13:04,850 +will send him normalized text and return me a + +206 +00:13:04,850 --> 00:13:06,570 +string array of tokens + +207 +00:13:09,870 --> 00:13:17,550 +and then stop word removal I pass tokens to it, + +208 +00:13:17,950 --> 00:13:22,550 +filter them and return them back to tokens and + +209 +00:13:22,550 --> 00:13:27,290 +then I have stem and classify, this stem will take + +210 +00:13:27,290 --> 00:13:30,830 +tokens and return me the roots of the words, so I + +211 +00:13:30,830 --> 00:13:34,610 +want to call them string stems + +212 +00:13:36,660 --> 00:13:40,440 +and the last step which is classify which takes + +213 +00:13:40,440 --> 00:13:47,780 +the stems and returns a list of classes and then I + +214 +00:13:47,780 --> 00:13:52,380 +say return classes + +215 +00:13:52,380 --> 00:13:56,680 +ok this is method processText notice that I made + +216 +00:13:56,680 --> 00:14:00,270 +this method It consists of a set of steps, each + +217 +00:14:00,270 --> 00:14:05,130 +step is the whole abstract method down there And + +218 +00:14:05,130 --> 00:14:06,990 +this method, notice, I made it public and I made + +219 +00:14:06,990 --> 00:14:10,370 +it final Because what do we use the final for? + +220 +00:14:10,970 --> 00:14:14,210 +Now, if I use the final with a variable, it + +221 +00:14:14,210 --> 00:14:16,570 +becomes constant, right? I only change it once and + +222 +00:14:16,570 --> 00:14:19,410 +I can't change it again The final, if I use it + +223 +00:14:19,410 --> 00:14:22,230 +with a method, it means that I can't override this + +224 +00:14:22,230 --> 00:14:27,330 +methodWhy I don't want to override it? So that no + +225 +00:14:27,330 --> 00:14:29,890 +one can change the order of the steps, the + +226 +00:14:29,890 --> 00:14:33,090 +algorithm steps stay the same You are not allowed, + +227 +00:14:33,550 --> 00:14:36,330 +you subclass to play with this method, so I made + +228 +00:14:36,330 --> 00:14:39,070 +it final Of course, if I use this final with the + +229 +00:14:39,070 --> 00:14:43,470 +whole class, I can no longer extend this class, + +230 +00:14:43,550 --> 00:14:48,510 +okay? Now, if I go and make a package, just a + +231 +00:14:48,510 --> 00:14:48,750 +second + +232 +00:14:56,520 --> 00:14:59,520 +I made a class for the test that I found for the + +233 +00:14:59,520 --> 00:15:08,220 +experiment public static void main string args + +234 +00:15:11,990 --> 00:15:14,270 +Ok guys, we've done the abstract text processor + +235 +00:15:14,270 --> 00:15:16,410 +Now, of course, when the client wants to do text + +236 +00:15:16,410 --> 00:15:18,310 +processing, he won't be able to create an object + +237 +00:15:18,310 --> 00:15:21,630 +for this class, right? So he wants to do a new + +238 +00:15:21,630 --> 00:15:25,070 +text processing, all he needs to do is to create a + +239 +00:15:25,070 --> 00:15:27,430 +new class He calls it, for example, + +240 +00:15:27,570 --> 00:15:30,970 +MyArabicTextProcessor + +241 +00:15:30,970 --> 00:15:35,170 +I want to create a text processor for Arabic, ok? + +242 +00:15:35,950 --> 00:15:38,790 +So we tell him, if you want to create a text + +243 +00:15:38,790 --> 00:15:45,370 +processor, go to Extends For Text Abstract Text + +244 +00:15:45,370 --> 00:15:51,630 +Processor Of course, + +245 +00:15:51,750 --> 00:15:53,750 +as soon as I did it, it asked me to implement for + +246 +00:15:53,750 --> 00:15:59,180 +whom? For all abstract methodsOf course I can't + +247 +00:15:59,180 --> 00:16:03,400 +override the processText method because it's a + +248 +00:16:03,400 --> 00:16:13,240 +final So now I'm going to show you how to read + +249 +00:16:13,240 --> 00:16:18,000 +from a file, how to normalize it, how to tokenize + +250 +00:16:18,000 --> 00:16:21,980 +it I put the code that I want for each step, I + +251 +00:16:21,980 --> 00:16:25,760 +specify what each step should haveNow I finish + +252 +00:16:25,760 --> 00:16:28,480 +this class and I want to use it, where do I want + +253 +00:16:28,480 --> 00:16:31,180 +to use it? From the mail, I want to say my Arabic + +254 +00:16:31,180 --> 00:16:40,640 +text processor, this is processor, new my Arabic + +255 +00:16:40,640 --> 00:16:43,440 +text processor + +256 +00:16:54,540 --> 00:16:59,660 +Okay, and then I say processor dot okay, I don't + +257 +00:16:59,660 --> 00:17:04,860 +have any method here except ProcessText Okay, when + +258 +00:17:04,860 --> 00:17:07,240 +I finished the class, I defined each step, and + +259 +00:17:07,240 --> 00:17:10,020 +then I say ProcessText is forbidden to play with + +260 +00:17:10,020 --> 00:17:14,020 +it to make it final, I can't change it, the steps + +261 +00:17:14,020 --> 00:17:17,480 +should be executed in order ProcessText, and then + +262 +00:17:17,480 --> 00:17:19,340 +I say from where, for example, read from file + +263 +00:17:19,340 --> 00:17:27,070 +myfile.txt and I make the processing steps and I + +264 +00:17:27,070 --> 00:17:31,410 +get the result which is an array of classes so + +265 +00:17:31,410 --> 00:17:35,350 +actually through this method which is called + +266 +00:17:35,350 --> 00:17:39,330 +process text I determined the algorithm model and + +267 +00:17:39,330 --> 00:17:44,830 +the order of the algorithm steps but each step is + +268 +00:17:44,830 --> 00:17:47,170 +represented by an abstract class on the basis that + +269 +00:17:47,170 --> 00:17:50,640 +the clientit will override and specify implement + +270 +00:17:50,640 --> 00:17:52,780 +for the method and specify what it wants to do in + +271 +00:17:52,780 --> 00:17:55,580 +each step but the order of the steps is fixed and + +272 +00:17:55,580 --> 00:17:58,400 +I made it unifiable so that it cannot play with it + +273 +00:17:58,400 --> 00:18:01,980 +because this method is called the template method + +274 +00:18:01,980 --> 00:18:05,660 +why template? what does template mean? it is a + +275 +00:18:05,660 --> 00:18:08,480 +box, okay? this is a box for the algorithm you are + +276 +00:18:08,480 --> 00:18:10,540 +not allowed to change this box you change the + +277 +00:18:10,540 --> 00:18:15,210 +steps without changing the boxHere, I applied the + +278 +00:18:15,210 --> 00:18:18,530 +template method by allowing the client to execute + +279 +00:18:18,530 --> 00:18:20,710 +the steps of the algorithm in a certain order, but + +280 +00:18:20,710 --> 00:18:24,570 +it can change each step's details as it pleases + +281 +00:18:24,570 --> 00:18:27,430 +Note that this is somewhat similar to the factory + +282 +00:18:27,430 --> 00:18:30,250 +method In the factory method, we used to code in + +283 +00:18:30,250 --> 00:18:33,810 +the superclass, but we used to store some steps in + +284 +00:18:33,810 --> 00:18:37,670 +the subclass But the difference is that in the + +285 +00:18:37,670 --> 00:18:40,270 +factory method, we used to store the subclass only + +286 +00:18:40,270 --> 00:18:44,490 +in the steps of creating the object Here, the goal + +287 +00:18:44,490 --> 00:18:46,590 +is different. I want it to run in consistent + +288 +00:18:46,590 --> 00:18:49,510 +steps, consistent algorithm, but it changes + +289 +00:18:49,510 --> 00:18:56,270 +details every step. This method is called the + +290 +00:18:56,270 --> 00:18:57,870 +template method. + +291 +00:19:00,050 --> 00:19:03,230 +Now, I want to talk about where this template + +292 +00:19:03,230 --> 00:19:08,290 +method is applied in the frameworks that we use. + +293 +00:19:08,570 --> 00:19:10,510 +For example, I want to talk about Android, because + +294 +00:19:10,510 --> 00:19:11,870 +I worked on Android for a while. + +295 +00:19:15,680 --> 00:19:19,260 +You take an idea from it, and I think Flutter is + +296 +00:19:19,260 --> 00:19:22,360 +the same idea Now in Android, when they tell you + +297 +00:19:22,360 --> 00:19:25,440 +to make a new face, we actually go and make a + +298 +00:19:25,440 --> 00:19:28,840 +class that I want, for example A, and they tell + +299 +00:19:28,840 --> 00:19:33,740 +you to make extends to a class in Android called + +300 +00:19:33,740 --> 00:19:38,370 +what?Activity, this activity guys is like the J + +301 +00:19:38,370 --> 00:19:43,870 +frame or the frame, or for example in the, what do + +302 +00:19:43,870 --> 00:19:48,490 +you call it in JavaFX? Application, okay? Any page + +303 +00:19:48,490 --> 00:19:52,730 +you want to make, you extend it to activity Now, + +304 +00:19:52,950 --> 00:19:55,530 +what does it tell me? It tells me, + +305 +00:19:57,470 --> 00:20:00,450 +of course here I write, I make a class for this, I + +306 +00:20:00,450 --> 00:20:02,310 +want to determine what it wants to show me in my + +307 +00:20:02,310 --> 00:20:06,000 +activity Because he tells me that this activity + +308 +00:20:06,000 --> 00:20:09,680 +goes through stages, it has a life cycle, what is + +309 +00:20:09,680 --> 00:20:13,600 +its life cycle? Which is before it starts and then + +310 +00:20:13,600 --> 00:20:16,320 +at the beginning it goes through a phase and + +311 +00:20:16,320 --> 00:20:19,600 +during work it goes through another phase, when I + +312 +00:20:19,600 --> 00:20:22,040 +pause it, what does pause mean? To stop it + +313 +00:20:22,040 --> 00:20:24,240 +temporarily, another screen comes to work on it, + +314 +00:20:24,320 --> 00:20:26,800 +this is a case and then when I come to stop it + +315 +00:20:28,360 --> 00:20:30,820 +means you stop in this case and when it does + +316 +00:20:30,820 --> 00:20:35,740 +destroy what is destroy? I cancel it or destroy it + +317 +00:20:35,740 --> 00:20:37,860 +as we say in the literal translation this is a + +318 +00:20:37,860 --> 00:20:42,100 +third case so they say the activity goes through + +319 +00:20:42,100 --> 00:20:45,180 +constant steps you programmer can determine what + +320 +00:20:45,180 --> 00:20:47,420 +you want to do in each step but the order of the + +321 +00:20:47,420 --> 00:20:50,980 +steps is forbidden to play with okay? so they for + +322 +00:20:50,980 --> 00:20:53,120 +example in the activity there is a method called + +323 +00:20:53,120 --> 00:20:56,920 +execute which + +324 +00:20:56,920 --> 00:21:01,870 +turns on who?The activity, this execute goes + +325 +00:21:01,870 --> 00:21:06,450 +through stages. What are the stages? On, create, + +326 +00:21:07,310 --> 00:21:10,010 +what is on create? When it is created, that is, + +327 +00:21:10,090 --> 00:21:12,930 +the activity has not been created yet, it has not + +328 +00:21:12,930 --> 00:21:16,710 +appeared on the screen. During creation, it runs + +329 +00:21:16,710 --> 00:21:20,030 +the code in on create. What do we put in the code + +330 +00:21:20,030 --> 00:21:22,350 +in on create? Any code that it wants to run before + +331 +00:21:22,350 --> 00:21:26,530 +the screen appears. For the user, okay? Connect to + +332 +00:21:26,530 --> 00:21:28,570 +a server, for example Something like that, + +333 +00:21:28,650 --> 00:21:32,630 +download data from a file, okay? Then I have on + +334 +00:21:32,630 --> 00:21:37,630 +start That when the screen becomes visible, it + +335 +00:21:37,630 --> 00:21:40,250 +appears to the client It can have a certain code + +336 +00:21:40,250 --> 00:21:43,910 +execution, send him a certain message and so on We + +337 +00:21:43,910 --> 00:21:48,270 +have on pause I + +338 +00:21:48,270 --> 00:21:51,030 +mean when the screen, for exampleIt stops + +339 +00:21:51,030 --> 00:21:53,250 +temporarily if there is another screen running on + +340 +00:21:53,250 --> 00:21:58,170 +it If the screen has a loop or thread running, I + +341 +00:21:58,170 --> 00:22:01,930 +can stop it in the on pause And I have for example + +342 +00:22:01,930 --> 00:22:05,830 +on stop And I have another method called on + +343 +00:22:05,830 --> 00:22:09,810 +destroy and many methods But these methods have to + +344 +00:22:09,810 --> 00:22:10,710 +run in a certain order + +345 +00:22:14,060 --> 00:22:17,560 +Now he tells me that this method should be done in + +346 +00:22:17,560 --> 00:22:19,740 +a final way, meaning that this method has nothing + +347 +00:22:19,740 --> 00:22:22,280 +to do with it, I can't even know what to do with + +348 +00:22:22,280 --> 00:22:23,400 +it, it should be done in a private way as well, + +349 +00:22:23,620 --> 00:22:25,940 +because I'm not the one calling for it, okay? He's + +350 +00:22:25,940 --> 00:22:29,780 +the only one calling for free class activity and + +351 +00:22:29,780 --> 00:22:32,080 +running these methods. These people, of course, + +352 +00:22:32,200 --> 00:22:35,680 +notice that this method calls for methods. These + +353 +00:22:35,680 --> 00:22:42,400 +are existing methods. It can be abstract or non + +354 +00:22:42,400 --> 00:22:46,760 +-abstract Because as a programmer, you want to + +355 +00:22:46,760 --> 00:22:49,380 +display things on your screen What do you want to + +356 +00:22:49,380 --> 00:22:52,540 +do? Come as a programmer and create an implement + +357 +00:22:52,540 --> 00:22:57,400 +or override for the method called Uncreate + +358 +00:22:57,400 --> 00:23:02,560 +As a programmer, I create an override for Uncreate + +359 +00:23:02,560 --> 00:23:06,060 +when it is present in the activity Why? Because I + +360 +00:23:06,060 --> 00:23:10,430 +put the code You want it to work before the screen + +361 +00:23:10,430 --> 00:23:13,650 +becomes visible to the user Do this, read data, + +362 +00:23:13,930 --> 00:23:17,130 +make a connection to the database Then, of course, + +363 +00:23:17,390 --> 00:23:20,530 +that's why he always tells me to go to uncreate + +364 +00:23:20,530 --> 00:23:26,230 +and search for super.uncreate Why? Because this + +365 +00:23:26,230 --> 00:23:27,970 +uncreate is present in the app but it's not + +366 +00:23:27,970 --> 00:23:30,910 +abstract The difference in the example that we + +367 +00:23:30,910 --> 00:23:32,790 +proposed is that we made the steps before the + +368 +00:23:32,790 --> 00:23:34,950 +search It is actually the uncreate that is present + +369 +00:23:34,950 --> 00:23:37,790 +in the app and has a code, okay? Which is the code + +370 +00:23:37,790 --> 00:23:40,510 +that prepares the ... we did not go into details, + +371 +00:23:40,630 --> 00:23:41,770 +we do not know what it is and we did not have to + +372 +00:23:41,770 --> 00:23:43,290 +know what it is But there is an important code + +373 +00:23:43,290 --> 00:23:45,590 +that is present somewhere in the uncreate If you + +374 +00:23:45,590 --> 00:23:48,170 +want to override it, do it, but in cash, delete + +375 +00:23:48,170 --> 00:23:51,310 +the code that is present in the app So do uncreate + +376 +00:23:51,310 --> 00:23:53,570 +and tell me super.uncreate If this is deleted from + +377 +00:23:53,570 --> 00:23:57,160 +the lineIt will not run the application, you will + +378 +00:23:57,160 --> 00:24:00,160 +get an error, okay? Anyway, you run this and put + +379 +00:24:00,160 --> 00:24:03,700 +your code As you wish. If you want something to + +380 +00:24:03,700 --> 00:24:06,060 +work in the on start after the screen becomes + +381 +00:24:06,060 --> 00:24:09,700 +visible to the user, you can also override the on + +382 +00:24:09,700 --> 00:24:14,640 +start by searching for super.onstart and then + +383 +00:24:14,640 --> 00:24:17,900 +enter the code that you want. If you want to + +384 +00:24:17,900 --> 00:24:20,640 +execute something and the screen closes in the on + +385 +00:24:20,640 --> 00:24:23,500 +destroy, for example, to delete certain files or + +386 +00:24:23,500 --> 00:24:25,780 +disconnect the connection, you can also override + +387 +00:24:25,780 --> 00:24:34,090 +the on start. or onDestroy. So in my class, I can + +388 +00:24:34,090 --> 00:24:37,190 +define what I want to do in each step. But this + +389 +00:24:37,190 --> 00:24:40,610 +order of steps is forbidden to play with. It must + +390 +00:24:40,610 --> 00:24:43,950 +be executed in this order. Because if the order is + +391 +00:24:43,950 --> 00:24:48,070 +changed, a big problem occurs. It means that the + +392 +00:24:48,070 --> 00:24:50,150 +client can play with the code, run onStop before + +393 +00:24:50,150 --> 00:24:53,230 +who? Yes, onCreate. So I say no, these steps must + +394 +00:24:53,230 --> 00:24:57,370 +be executed in this order. It determines what you + +395 +00:24:57,370 --> 00:25:02,410 +should do in each step. Is it clear? So this is + +396 +00:25:02,410 --> 00:25:05,890 +the idea of the template method. In short, we use + +397 +00:25:05,890 --> 00:25:09,210 +it when I have a certain algorithm made up of a + +398 +00:25:09,210 --> 00:25:11,070 +set of steps and I want the client to walk on the + +399 +00:25:11,070 --> 00:25:14,430 +steps calmly as they are. The order of the steps + +400 +00:25:14,430 --> 00:25:17,890 +is one, but I can change the details of the steps. + +401 +00:25:49,190 --> 00:25:56,490 +Ok, let's read only what is in the slides If + +402 +00:25:56,490 --> 00:26:00,510 +we take a look at the dictionary definition of + +403 +00:26:00,510 --> 00:26:02,550 +template, if we look at the definition of the word + +404 +00:26:02,550 --> 00:26:04,930 +template in the dictionary, we can see that a + +405 +00:26:04,930 --> 00:26:07,490 +template is a present format used as a starting + +406 +00:26:07,490 --> 00:26:09,290 +point for a particular application. + +407 +00:26:18,560 --> 00:26:22,980 +So that the format does not have to be recreated + +408 +00:26:22,980 --> 00:26:24,080 +each time it is used + +409 +00:26:32,410 --> 00:26:35,210 +On the same idea is the template method is based. + +410 +00:26:35,490 --> 00:26:38,310 +The same idea is the idea of the template method + +411 +00:26:38,310 --> 00:26:41,970 +that we use as a design pattern in code. A + +412 +00:26:41,970 --> 00:26:46,630 +template method defines an algorithm in a basic + +413 +00:26:46,630 --> 00:26:52,050 +class using abstract operations. The template + +414 +00:26:52,050 --> 00:26:55,670 +method defines an algorithm in the superclass. The + +415 +00:26:55,670 --> 00:26:57,750 +algorithm is made up of steps, each step is + +416 +00:26:57,750 --> 00:27:02,620 +defined as abstract operation that subclasses + +417 +00:27:02,620 --> 00:27:06,860 +override to provide concrete behavior. The + +418 +00:27:06,860 --> 00:27:10,380 +subclasses can override the operations to + +419 +00:27:10,380 --> 00:27:14,180 +determine the behavior of each step. But in the + +420 +00:27:14,180 --> 00:27:17,260 +end, the steps must be executed in the specified + +421 +00:27:17,260 --> 00:27:21,420 +template method. The goal is to define the + +422 +00:27:21,420 --> 00:27:24,340 +skeleton of an algorithm in an operation. What is + +423 +00:27:24,340 --> 00:27:29,790 +a skeleton?The structure determines the structure + +424 +00:27:29,790 --> 00:27:32,990 +of the algorithm, differing some steps to + +425 +00:27:32,990 --> 00:27:38,030 +subclasses. + +426 +00:27:41,990 --> 00:27:45,030 +Template method lets subclasses redefine certain + +427 +00:27:45,030 --> 00:27:48,280 +steps of an algorithm.It allows subclasses to + +428 +00:27:48,280 --> 00:27:52,300 +define the code of each step in the algorithm + +429 +00:27:52,300 --> 00:27:55,440 +without letting them to change the algorithm + +430 +00:27:55,440 --> 00:28:01,400 +structure Because + +431 +00:28:01,400 --> 00:28:06,100 +this is the template method of the UML class + +432 +00:28:06,100 --> 00:28:09,320 +diagram for the template method pattern Actually, + +433 +00:28:10,080 --> 00:28:13,160 +I have an abstract class here The abstract class + +434 +00:28:13,160 --> 00:28:17,720 +has a method called template method And there is + +435 +00:28:17,720 --> 00:28:20,100 +another method called primitive operation A and + +436 +00:28:20,100 --> 00:28:24,460 +primitive operation B. These are the abstract + +437 +00:28:24,460 --> 00:28:28,640 +methods that each one of them represents a step in + +438 +00:28:28,640 --> 00:28:32,920 +the algorithm. The algorithm is defined in the + +439 +00:28:32,920 --> 00:28:35,180 +template method. This is the code of the template + +440 +00:28:35,180 --> 00:28:41,780 +method.Public, Final, Template method From inside + +441 +00:28:41,780 --> 00:28:43,920 +the template method, it calls primitive operation + +442 +00:28:43,920 --> 00:28:46,640 +A, primitive operation B, this is supposed to be B + +443 +00:28:46,640 --> 00:28:49,280 +Then it calls the abstract method to execute each + +444 +00:28:49,280 --> 00:28:53,460 +step in this order Now, what is this? Concrete + +445 +00:28:53,460 --> 00:28:55,940 +class, this is the subclass that we want to extend + +446 +00:28:55,940 --> 00:28:58,680 +to the abstract class It is forbidden to make + +447 +00:28:58,680 --> 00:29:01,160 +override to the template method, it only makes + +448 +00:29:01,160 --> 00:29:03,260 +override to the steps + +449 +00:29:07,370 --> 00:29:12,670 +because this explains on the UML applicability and + +450 +00:29:12,670 --> 00:29:15,430 +examples when we use the template method to + +451 +00:29:15,430 --> 00:29:19,290 +implement the invariant parts of an algorithm once + +452 +00:29:19,290 --> 00:29:22,450 +and leave it up to subclasses to implement the + +453 +00:29:22,450 --> 00:29:26,050 +behavior that can vary in order to define the + +454 +00:29:26,050 --> 00:29:28,430 +order or the steps of the algorithms and the + +455 +00:29:28,430 --> 00:29:33,560 +different parts that make the subclass do itAlso, + +456 +00:29:34,040 --> 00:29:36,500 +the template method and refactoring. What does + +457 +00:29:36,500 --> 00:29:39,680 +refactoring mean? Actually, refactoring is an + +458 +00:29:39,680 --> 00:29:42,320 +important term in software engineering. When you + +459 +00:29:42,320 --> 00:29:44,920 +start coding, your mission is to make sure that + +460 +00:29:44,920 --> 00:29:47,200 +the code works and achieves the output, right or + +461 +00:29:47,200 --> 00:29:51,060 +wrong. Then you change the code.to make it + +462 +00:29:51,060 --> 00:29:53,520 +extendable and well-designed. What is this process + +463 +00:29:53,520 --> 00:29:57,040 +guys? Refactoring. There is no one or only + +464 +00:29:57,040 --> 00:30:00,260 +professional programmers who have a long career in + +465 +00:30:00,260 --> 00:30:04,260 +programming can write code for the first time in + +466 +00:30:04,260 --> 00:30:07,220 +its final form. But programmers still learn. No, + +467 +00:30:07,360 --> 00:30:10,380 +they work in a form and then begin to improve the + +468 +00:30:10,380 --> 00:30:14,150 +design. This is called refactoring.You design and + +469 +00:30:14,150 --> 00:30:16,610 +find that there is a scenario where you have + +470 +00:30:16,610 --> 00:30:19,150 +subclasses that all follow the same steps, but the + +471 +00:30:19,150 --> 00:30:23,070 +details of the steps are different, but the order + +472 +00:30:23,070 --> 00:30:25,650 +of the steps is constant. In this case, you put + +473 +00:30:25,650 --> 00:30:29,930 +the algorithm as a template method in the + +474 +00:30:29,930 --> 00:30:33,270 +superclass, and then in the subclasses, you put + +475 +00:30:33,270 --> 00:30:37,090 +the differences between them. You design in the + +476 +00:30:37,090 --> 00:30:40,230 +beginning, and then you use the template as a + +477 +00:30:40,230 --> 00:30:40,810 +refactoring process. + +478 +00:30:43,880 --> 00:30:45,780 +Okay, this is an example that they propose on the + +479 +00:30:45,780 --> 00:30:49,140 +subject of travel agency, okay? For example, now + +480 +00:30:49,140 --> 00:30:51,620 +we want to make a program to design trips for + +481 +00:30:51,620 --> 00:30:55,020 +travelers. Now, any trip has a certain model, + +482 +00:30:55,680 --> 00:31:01,600 +okay? The model of any trip that we have to follow + +483 +00:31:01,600 --> 00:31:05,920 +is that the trip has do coming transport, which is + +484 +00:31:05,920 --> 00:31:07,840 +how we arrange the travel to the place of the + +485 +00:31:07,840 --> 00:31:10,980 +trip, okay? And then, what is do day? What is the + +486 +00:31:10,980 --> 00:31:13,810 +activity of the first day?Do day B, the activity + +487 +00:31:13,810 --> 00:31:15,970 +of the second day. Do day C, the activity of the + +488 +00:31:15,970 --> 00:31:17,790 +third day. The trips are for example three days. + +489 +00:31:18,290 --> 00:31:21,630 +And then the last step is Do return transport, + +490 +00:31:21,770 --> 00:31:24,470 +which is how we travel them and return them again + +491 +00:31:24,470 --> 00:31:27,250 +to the traveler. Okay? So these are the steps of + +492 +00:31:27,250 --> 00:31:29,930 +any trip consisting of these five stages. Three + +493 +00:31:29,930 --> 00:31:32,930 +days of travel, a day of travel, and a day of + +494 +00:31:32,930 --> 00:31:37,350 +return. Okay? Now, anyone who wants to make a + +495 +00:31:37,350 --> 00:31:40,880 +package for travelThey have to follow these steps, + +496 +00:31:41,020 --> 00:31:44,780 +but they change the details of each step So they + +497 +00:31:44,780 --> 00:31:47,700 +come and do for example here, look this is the + +498 +00:31:47,700 --> 00:31:49,760 +class called trip, this represents the abstract + +499 +00:31:49,760 --> 00:31:54,440 +class Which made a method called perform trip, who + +500 +00:31:54,440 --> 00:31:57,380 +is this? The template method, here it is, perform + +501 +00:31:57,380 --> 00:32:00,980 +trip final method And inside it is called five + +502 +00:32:00,980 --> 00:32:04,200 +abstract methods, okay? These abstract methods are + +503 +00:32:04,200 --> 00:32:08,910 +present in this class They are thesethis package A + +504 +00:32:08,910 --> 00:32:12,910 +is a subclass of trip it can implement for whom? + +505 +00:32:14,350 --> 00:32:17,130 +for the 5 steps, each step determines the code in + +506 +00:32:17,130 --> 00:32:18,990 +it but it is forbidden to play with whom in + +507 +00:32:18,990 --> 00:32:21,390 +perform trip and this package P is also the same + +508 +00:32:21,390 --> 00:32:25,950 +idea it can implement for 5 methods and determine + +509 +00:32:25,950 --> 00:32:30,810 +other details for another trip at the end I want + +510 +00:32:30,810 --> 00:32:33,050 +to complete the trip I remove an object from + +511 +00:32:33,050 --> 00:32:37,060 +package A and claimPerform a trip, true or false? + +512 +00:32:37,740 --> 00:32:41,020 +I call it perform a trip Perform a trip is a + +513 +00:32:41,020 --> 00:32:43,820 +public action, true or false? To see it from the + +514 +00:32:43,820 --> 00:32:48,120 +subclass, but I can't do it override I have to + +515 +00:32:48,120 --> 00:32:51,940 +call it, to stick to the steps, I change the steps + +516 +00:32:51,940 --> 00:32:56,200 +from the abstract methods + +517 +00:32:56,200 --> 00:33:01,020 +Okay, Muhad explained an example of the trip we + +518 +00:33:01,020 --> 00:33:05,200 +saw a while agoThis shows the code, how it looks, + +519 +00:33:05,700 --> 00:33:07,960 +this is the class trip, because this is the method + +520 +00:33:07,960 --> 00:33:11,060 +that performs the trip, you see it has five + +521 +00:33:11,060 --> 00:33:12,780 +abstract methods, and these are the abstract + +522 +00:33:12,780 --> 00:33:13,580 +methods that are here + +523 +00:33:18,270 --> 00:33:21,350 +Ok guys, now that we have finished the template + +524 +00:33:21,350 --> 00:33:25,150 +design pattern Now we will come to another design + +525 +00:33:25,150 --> 00:33:29,850 +pattern which is called the strategy pattern And + +526 +00:33:29,850 --> 00:33:31,330 +the strategy pattern is one of the most important + +527 +00:33:31,330 --> 00:33:37,450 +design patterns and widely used Now before we read + +528 +00:33:37,450 --> 00:33:43,280 +thisLet's see a practical example to show us what + +529 +00:33:43,280 --> 00:33:50,120 +is the problem that we really need to solve and + +530 +00:33:50,120 --> 00:33:52,920 +then we will talk about how the strategy pattern + +531 +00:33:52,920 --> 00:33:54,180 +helps us to solve this problem + +532 +00:34:07,290 --> 00:34:13,110 +Now guys, it's very common in my apps to have an + +533 +00:34:13,110 --> 00:34:18,870 +app that works in more than one mode, for example, + +534 +00:34:19,010 --> 00:34:23,830 +I make a mobile app, this mobile app can work, its + +535 +00:34:23,830 --> 00:34:27,850 +behavior changes depending on the battery or the + +536 +00:34:27,850 --> 00:34:30,970 +internetAnd this is the right of anyone who works + +537 +00:34:30,970 --> 00:34:36,030 +on mobile in any language, Flutter, Android, IOS, + +538 +00:34:36,450 --> 00:34:39,470 +understand what I'm saying? For example, I have a + +539 +00:34:39,470 --> 00:34:43,510 +mobile application, when the battery is low, this + +540 +00:34:43,510 --> 00:34:47,570 +is the case, low battery, the application does not + +541 +00:34:47,570 --> 00:34:49,850 +need to charge the battery a lot. So for example, + +542 +00:34:49,930 --> 00:34:52,610 +if the application updates, connects to the + +543 +00:34:52,610 --> 00:34:56,370 +server, downloads, okay? In the case of low + +544 +00:34:56,370 --> 00:35:00,040 +battery, it stops talking. Why?So that it does not + +545 +00:35:00,040 --> 00:35:02,900 +consume the battery But if the mobile is in + +546 +00:35:02,900 --> 00:35:08,660 +charging mode Or the battery is full In this case, + +547 +00:35:08,780 --> 00:35:12,280 +it runs the updates and downloads and runs at full + +548 +00:35:12,280 --> 00:35:18,960 +capacity Also, the application may be offline and + +549 +00:35:18,960 --> 00:35:19,400 +online + +550 +00:35:22,050 --> 00:35:24,690 +Also, the behavior of the application may differ + +551 +00:35:24,690 --> 00:35:27,790 +between offline and online For example, if the + +552 +00:35:27,790 --> 00:35:31,490 +application is online, it means that any data that + +553 +00:35:31,490 --> 00:35:34,190 +it collects can be sent to whom? To the server + +554 +00:35:34,190 --> 00:35:37,250 +Because it is running online, it can constantly + +555 +00:35:37,250 --> 00:35:40,730 +ask for updates from the server But if it is + +556 +00:35:40,730 --> 00:35:43,910 +offline, it means that any updates need to be + +557 +00:35:43,910 --> 00:35:47,550 +stored in a local database until it becomes online + +558 +00:35:48,590 --> 00:35:52,230 +and then download it to the server. So now my + +559 +00:35:52,230 --> 00:35:55,950 +application will have a different process or + +560 +00:35:55,950 --> 00:36:01,050 +behavior from the mode or status of the mobile + +561 +00:36:01,050 --> 00:36:05,010 +application. This is a scenario that my + +562 +00:36:05,010 --> 00:36:07,510 +application is different during the runtime. Of + +563 +00:36:07,510 --> 00:36:09,390 +course, this is different during the runtime. So + +564 +00:36:09,390 --> 00:36:12,380 +now it can be a device the battery is full and + +565 +00:36:12,380 --> 00:36:15,140 +after a while it goes out so automatically the + +566 +00:36:15,140 --> 00:36:18,320 +application changes from one state to another + +567 +00:36:18,320 --> 00:36:23,280 +state another example of games if you find that + +568 +00:36:23,280 --> 00:36:25,840 +the computer player that you are playing against + +569 +00:36:25,840 --> 00:36:30,520 +also his behavior changes during the run time from + +570 +00:36:30,520 --> 00:36:31,940 +one state to another state for example you are + +571 +00:36:31,940 --> 00:36:36,620 +playing FIFA and the team in front of you is in a + +572 +00:36:36,620 --> 00:36:41,050 +defensive stateOkay? He won, so now he changed his + +573 +00:36:41,050 --> 00:36:45,240 +plan and went back to the beginning to defendit + +574 +00:36:45,240 --> 00:36:50,440 +can change from defending to attacking or + +575 +00:36:50,440 --> 00:36:54,320 +aggression after a while it becomes moderate it + +576 +00:36:54,320 --> 00:36:58,220 +means that he wants to avoid competition to play + +577 +00:36:58,220 --> 00:37:03,580 +in the finals so he plays in a moderate way this + +578 +00:37:03,580 --> 00:37:07,480 +is another example that your player's behavior + +579 +00:37:07,480 --> 00:37:10,680 +changes during the run time he moves from one + +580 +00:37:10,680 --> 00:37:14,560 +situation to anotherOkay, if you are a programmer + +581 +00:37:14,560 --> 00:37:19,140 +and asked you to do something like this Because + +582 +00:37:19,140 --> 00:37:21,000 +you know how to think about how you can do it If + +583 +00:37:21,000 --> 00:37:23,340 +we say for example I have a class called mobile + +584 +00:37:23,340 --> 00:37:29,880 +operation Okay, + +585 +00:37:29,960 --> 00:37:33,040 +it represents the mobile during work And I want to + +586 +00:37:33,040 --> 00:37:36,980 +run this mobile I have a dialer called public void + +587 +00:37:36,980 --> 00:37:44,920 +execute or run or processOkay? Here, of course, in + +588 +00:37:44,920 --> 00:37:48,860 +this execute, I don't know, I said how many, for + +589 +00:37:48,860 --> 00:37:52,160 +example, my mobile has four cases, which means it + +590 +00:37:52,160 --> 00:37:54,680 +will work in how many ways? Four different ways. + +591 +00:37:55,680 --> 00:37:58,300 +So this execute doesn't know what it's going to + +592 +00:37:58,300 --> 00:38:01,480 +work in, in any of the four cases. So you have to, + +593 +00:38:01,740 --> 00:38:05,120 +in order to execute, send additional information + +594 +00:38:05,120 --> 00:38:09,160 +to tell the execute to work in any case. So what + +595 +00:38:09,160 --> 00:38:12,930 +do I have to tell it? Int, for example, mode.So + +596 +00:38:12,930 --> 00:38:15,270 +this integer represents the mode in which the + +597 +00:38:15,270 --> 00:38:18,770 +class will work And here you can make a switch or + +598 +00:38:18,770 --> 00:38:24,650 +F statement You can say that if mod F is equal to + +599 +00:38:24,650 --> 00:38:29,770 +1 on the basis that we gave this 1 We gave numbers + +600 +00:38:29,770 --> 00:38:32,790 +1,2,3,4 and the best thing to do is to define them + +601 +00:38:32,790 --> 00:38:36,190 +as variables above the constant And you can say + +602 +00:38:36,190 --> 00:38:44,240 +that if mod 1 is equal to system.out.println what + +603 +00:38:44,240 --> 00:38:47,900 +is this mode 1? yes, low battery, I want to tell + +604 +00:38:47,900 --> 00:38:55,820 +it to stop all downloads and updates ok? else if + +605 +00:38:55,820 --> 00:39:01,620 +if the mode is equal to 2 which is charging + +606 +00:39:07,180 --> 00:39:15,800 +Work at full capacity. Resume all downloads and + +607 +00:39:15,800 --> 00:39:18,840 +updates. He's not doing charging. That's it. We + +608 +00:39:18,840 --> 00:39:23,420 +have a battery that charges. What's left for you + +609 +00:39:23,420 --> 00:39:27,120 +to do? Work and get. Download. Download. Okay. + +610 +00:39:27,740 --> 00:39:34,000 +Else if. If the mode is equal to three. This works + +611 +00:39:34,000 --> 00:39:42,400 +offline.system.out.println store + +612 +00:39:42,400 --> 00:39:51,000 +all changes in local database and the last thing + +613 +00:39:51,000 --> 00:39:59,420 +else if the mode is 4 system.out.println + +614 +00:40:03,600 --> 00:40:12,960 +send updates and local data to server online + +615 +00:40:12,960 --> 00:40:19,860 +and in the main method let's do a test + +616 +00:40:19,860 --> 00:40:29,780 +we + +617 +00:40:29,780 --> 00:40:35,370 +need to create a mobileOperation, MOP you say new + +618 +00:40:35,370 --> 00:40:36,050 +mobile, + +619 +00:40:39,710 --> 00:40:45,750 +then MOP and I execute who? Execute. If I want him + +620 +00:40:45,750 --> 00:40:50,250 +to work in charging, what do I put? Two. The + +621 +00:40:50,250 --> 00:40:56,090 +battery became low, execute one. Work online, + +622 +00:40:56,790 --> 00:41:01,240 +execute four.and it's like this, I start executing + +623 +00:41:01,240 --> 00:41:05,080 +and changing the input of the method every time I + +624 +00:41:05,080 --> 00:41:11,300 +want to change, I change the input number this is + +625 +00:41:11,300 --> 00:41:14,020 +the design that I thought of in the beginning and + +626 +00:41:14,020 --> 00:41:16,740 +what you will think of too since this execute has + +627 +00:41:16,740 --> 00:41:21,460 +a different work so I have to send it input to + +628 +00:41:21,460 --> 00:41:24,120 +determine what work you are working on what do you + +629 +00:41:24,120 --> 00:41:24,820 +think of this design? + +630 +00:41:31,630 --> 00:41:33,930 +Now we took a rule before, whenever you find + +631 +00:41:33,930 --> 00:41:36,690 +yourself running F in the statement, you know + +632 +00:41:36,690 --> 00:41:39,930 +you're going the wrong way Why? Because now I want + +633 +00:41:39,930 --> 00:41:43,330 +to add a new mode, I want to change the code, I + +634 +00:41:43,330 --> 00:41:46,070 +want to do else F I want to change in the existing + +635 +00:41:46,070 --> 00:41:49,690 +mode, code for any mode, also I want to edit in + +636 +00:41:49,690 --> 00:41:53,690 +the existing code in every mode like this I want + +637 +00:41:53,690 --> 00:41:55,730 +to cancel a mode, everything needs to change + +638 +00:41:55,730 --> 00:41:57,450 +where? In this code + +639 +00:42:00,400 --> 00:42:03,500 +Okay, how and what should we do to improve our + +640 +00:42:03,500 --> 00:42:07,060 +design? I say, did you find that we apply the + +641 +00:42:07,060 --> 00:42:09,720 +strategy pattern? The strategy pattern, the idea + +642 +00:42:09,720 --> 00:42:12,920 +is that I want to make my mobile application + +643 +00:42:12,920 --> 00:42:16,980 +change its mode from one case to another, but at + +644 +00:42:16,980 --> 00:42:21,190 +the same timeI want to be able to add cases and + +645 +00:42:21,190 --> 00:42:23,290 +cancel cases and change the code of the cases + +646 +00:42:23,290 --> 00:42:25,850 +without having to change anything in the method + +647 +00:42:25,850 --> 00:42:30,930 +execute which is my goal I want to make the method + +648 +00:42:30,930 --> 00:42:34,950 +execute extendable I want to add new modes and + +649 +00:42:34,950 --> 00:42:40,570 +change the code of each mode without having to do + +650 +00:42:40,570 --> 00:42:44,550 +F statement and add another F and so onOkay, how + +651 +00:42:44,550 --> 00:42:48,270 +do we do it? Let's just start this way He tells me + +652 +00:42:48,270 --> 00:42:51,070 +the first step you need to do is that each .. Of + +653 +00:42:51,070 --> 00:42:53,510 +course, this represents how many algorithms? Four + +654 +00:42:53,510 --> 00:42:56,890 +algorithms Each case represents a different way of + +655 +00:42:56,890 --> 00:42:58,330 +working We are here for a simple code, but we + +656 +00:42:58,330 --> 00:43:02,690 +print a message But it can be one case consisting + +657 +00:43:02,690 --> 00:43:06,450 +of ten lines, twenty lines, and so on So the first + +658 +00:43:06,450 --> 00:43:09,170 +step he tells me is to separate each algorithm + +659 +00:43:09,170 --> 00:43:13,510 +into an independent classHow many algorithms do I + +660 +00:43:13,510 --> 00:43:16,130 +have? I have four, you have to make four classes + +661 +00:43:16,130 --> 00:43:19,110 +And before we make the four classes, we have to + +662 +00:43:19,110 --> 00:43:22,310 +unite the four classes and make them an interface + +663 +00:43:22,310 --> 00:43:24,430 +Tell us what is the purpose of the interface? It + +664 +00:43:24,430 --> 00:43:26,550 +gives a kind of unity to things that have nothing + +665 +00:43:26,550 --> 00:43:29,690 +to do with each other So I go and make an + +666 +00:43:29,690 --> 00:43:35,850 +interface called for example mobile strategy + +667 +00:43:39,230 --> 00:43:42,290 +and I'm going to create a data called public void + +668 +00:43:42,290 --> 00:43:50,330 +execute or process on the + +669 +00:43:50,330 --> 00:43:53,070 +basis that when we implement the interface this + +670 +00:43:53,070 --> 00:43:56,530 +algorithm will be placed in the process now I'm + +671 +00:43:56,530 --> 00:44:01,810 +going to create four classes which are called low + +672 +00:44:01,810 --> 00:44:04,730 +battery strategy + +673 +00:44:13,140 --> 00:44:17,320 +implements mobile strategy + +674 +00:44:17,320 --> 00:44:22,120 +and + +675 +00:44:22,120 --> 00:44:27,920 +I put in it the code which is what it will do if + +676 +00:44:27,920 --> 00:44:31,740 +it is in a low battery state the code that I put + +677 +00:44:31,740 --> 00:44:34,680 +in the if statement I will put it in the method + +678 +00:44:34,680 --> 00:44:41,180 +process and so on three other classes which are + +679 +00:44:41,180 --> 00:44:45,800 +charging strategy + +680 +00:44:45,800 --> 00:44:49,400 +implement + +681 +00:44:49,400 --> 00:44:59,100 +mobile strategy and + +682 +00:44:59,100 --> 00:44:59,780 +this is the code + +683 +00:45:05,690 --> 00:45:11,270 +and it does one more thing and after that offline + +684 +00:45:11,270 --> 00:45:27,910 +strategy also implements mobile strategy and + +685 +00:45:27,910 --> 00:45:28,550 +here is the code + +686 +00:45:37,220 --> 00:45:40,340 +Okay, so what I did just now, where did I separate + +687 +00:45:40,340 --> 00:45:44,860 +all the algorithms guys? In a class by itself, + +688 +00:45:45,180 --> 00:45:48,260 +then I want to do the next one, because this is + +689 +00:45:48,260 --> 00:45:50,060 +the class of mobile operation which is supposed to + +690 +00:45:50,060 --> 00:45:53,120 +work, okay? Because instead of putting the + +691 +00:45:53,120 --> 00:45:55,460 +algorithms here, I want to go and do it here + +692 +00:45:56,310 --> 00:46:00,010 +attribute named mobile strategy this is the + +693 +00:46:00,010 --> 00:46:04,330 +strategy or I want to call it current strategy + +694 +00:46:04,330 --> 00:46:08,590 +what is current strategy? the current strategy and + +695 +00:46:08,590 --> 00:46:11,650 +I want to make method public void set current + +696 +00:46:11,650 --> 00:46:22,290 +strategy and I will send it an object of type this + +697 +00:46:22,290 --> 00:46:22,930 +is set method + +698 +00:46:26,430 --> 00:46:30,550 +with me guys? this is set method now I want my + +699 +00:46:30,550 --> 00:46:33,630 +mobile to work in a certain strategy I go and do + +700 +00:46:33,630 --> 00:46:37,050 +what? set current strategy now we come to execute + +701 +00:46:37,050 --> 00:46:39,970 +now who do I raise? all the code of the if + +702 +00:46:39,970 --> 00:46:44,310 +statement I remove it all and who do I remove? I + +703 +00:46:44,310 --> 00:46:47,530 +remove this mode when I say execute I really want + +704 +00:46:47,530 --> 00:46:52,490 +to go to the current strategy and say process + +705 +00:46:58,680 --> 00:47:02,700 +Now we are almost done Now the algorithm in which + +706 +00:47:02,700 --> 00:47:05,760 +the mobile will work will be defined as an object + +707 +00:47:05,760 --> 00:47:08,720 +I collected the algorithm and I represent each + +708 +00:47:08,720 --> 00:47:12,680 +algorithm as an object I want to run the mobile + +709 +00:47:12,680 --> 00:47:14,780 +with a specific algorithm I give it this algorithm + +710 +00:47:14,780 --> 00:47:17,640 +through the set method and then I tell it to + +711 +00:47:17,640 --> 00:47:21,580 +execute How does it work in the main? As follows + +712 +00:47:21,580 --> 00:47:24,080 +In the main, I do the following The first step I + +713 +00:47:24,080 --> 00:47:28,780 +do As long as the mobile has four cases, I create + +714 +00:47:28,780 --> 00:47:32,340 +an object for each algorithm. For example, I say + +715 +00:47:32,340 --> 00:47:38,680 +low battery, battery is wrongly written, strategy, + +716 +00:47:39,820 --> 00:47:41,740 +this is S1, new, + +717 +00:47:44,380 --> 00:47:48,360 +low battery strategy. This is how we create the + +718 +00:47:48,360 --> 00:47:51,760 +first strategy. The second is charging. + +719 +00:47:53,710 --> 00:48:00,450 +strategy S2 new charging strategy طبعا ممكن عشان + +720 +00:48:00,450 --> 00:48:06,290 +تنشئهم أسهل ممكن تستخدم factory تمام و بعدين عندي + +721 +00:48:06,290 --> 00:48:06,870 +offline + +722 +00:48:09,410 --> 00:48:15,130 +Strategy S3 New Offline Strategy These are the + +723 +00:48:15,130 --> 00:48:17,150 +strategies in which the mobile will work and + +724 +00:48:17,150 --> 00:48:20,110 +switch between them during the runtime. Now I did + +725 +00:48:20,110 --> 00:48:22,710 +the mobile operation, this is it. The first step, + +726 +00:48:22,850 --> 00:48:25,890 +for example, if the battery is low, I go to MOP + +727 +00:48:25,890 --> 00:48:30,370 +and I say set current strategy and I give him S1 + +728 +00:48:30,370 --> 00:48:37,150 +and then I say MOP dotExecute. Did you find + +729 +00:48:37,150 --> 00:48:40,410 +Execute? What does it do inside? It turns on the + +730 +00:48:40,410 --> 00:48:44,810 +process of this strategy. Now, after a while, you + +731 +00:48:44,810 --> 00:48:48,770 +connected your phone to the charger. Okay? Just go + +732 +00:48:48,770 --> 00:48:52,770 +to MOP and tell him set current strategy. We + +733 +00:48:52,770 --> 00:48:55,490 +changed his strategy. And you gave him instead of + +734 +00:48:55,490 --> 00:49:02,370 +S1, S2. He needs to turn on MOP.execute run the + +735 +00:49:02,370 --> 00:49:06,310 +second strategy, I want to change again MOP set + +736 +00:49:06,310 --> 00:49:09,110 +current strategy, this is the third one, it is in + +737 +00:49:09,110 --> 00:49:14,210 +offline mode, I say MOP.execute where is the idea + +738 +00:49:14,210 --> 00:49:19,030 +guys, now I want to add a new strategy, everything + +739 +00:49:19,030 --> 00:49:21,630 +I have to do, create a new class, implement the + +740 +00:49:21,630 --> 00:49:24,300 +interface, determine what we want to do with itand + +741 +00:49:24,300 --> 00:49:27,520 +then I remove an object from it and the idea of + +742 +00:49:27,520 --> 00:49:30,580 +mobile operation I will not play with it or change + +743 +00:49:30,580 --> 00:49:32,320 +anything in it, I will just say set current + +744 +00:49:32,320 --> 00:49:34,980 +strategy and send it to the new strategy and + +745 +00:49:34,980 --> 00:49:37,580 +because the new strategy implements the same + +746 +00:49:37,580 --> 00:49:40,740 +interface, what will remain will accept it because + +747 +00:49:40,740 --> 00:49:43,620 +this set current strategy accepts in the end that + +748 +00:49:43,620 --> 00:49:47,340 +it is an object of the type mobile strategy, okay? + +749 +00:49:47,720 --> 00:49:49,880 +I want to change one of them in the strategy, its + +750 +00:49:49,880 --> 00:49:53,260 +code Either I change my code, open my code and + +751 +00:49:53,260 --> 00:49:56,680 +change it or I extend it and make a new strategy, + +752 +00:49:57,060 --> 00:49:59,720 +okay? So now I can use algorithms instead of + +753 +00:49:59,720 --> 00:50:03,740 +linking them in an if statement and one if else if + +754 +00:50:03,740 --> 00:50:06,880 +else I separated each one of them in an + +755 +00:50:06,880 --> 00:50:09,300 +independent file and I send the strategy and + +756 +00:50:09,300 --> 00:50:11,540 +change it I put a code for this strategy instead + +757 +00:50:11,540 --> 00:50:14,880 +of this strategy The change is when I create them + +758 +00:50:14,880 --> 00:50:17,340 +outside and make each one in a file and create an + +759 +00:50:17,340 --> 00:50:22,820 +object from it and change iteasily and this is the + +760 +00:50:22,820 --> 00:50:25,940 +idea of the strategy pattern which as I said is + +761 +00:50:25,940 --> 00:50:27,760 +one of the design patterns that is used a lot + +762 +00:50:27,760 --> 00:50:30,420 +because this case that the application works in + +763 +00:50:30,420 --> 00:50:32,180 +one case and then changes the case and changes + +764 +00:50:32,180 --> 00:50:35,240 +another case this happens a lot with me in + +765 +00:50:35,240 --> 00:50:37,560 +applications it is true that someone tells me that + +766 +00:50:37,560 --> 00:50:39,960 +the code has become more complicated it is true + +767 +00:50:39,960 --> 00:50:42,810 +that I have an increased number of classesOkay? + +768 +00:50:42,970 --> 00:50:46,570 +But it added to a greater benefit. Okay? On the + +769 +00:50:46,570 --> 00:50:48,710 +contrary. I mean, because every algorithm is made + +770 +00:50:48,710 --> 00:50:51,010 +in a class, I can open the class and understand + +771 +00:50:51,010 --> 00:50:54,650 +every algorithm. Instead of collecting all the + +772 +00:50:54,650 --> 00:50:58,490 +algorithms in F, L, C, F, L, C, F, L, C, F. Okay? + +773 +00:50:59,630 --> 00:51:01,390 +Next time, God willing, we will continue reading + +774 +00:51:01,390 --> 00:51:03,430 +the strategy pattern and see another example of + +775 +00:51:03,430 --> 00:51:04,310 +it. God bless you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/30eEg3w3s6A_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/30eEg3w3s6A_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..b4ef532fe07cc64061e11eb90f8b02bb7a812715 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/30eEg3w3s6A_raw.srt @@ -0,0 +1,3100 @@ +1 +00:00:05,210 --> 00:00:07,970 +Bismillah ar-Rahman ar-Rahim. How are you guys? + +2 +00:00:10,830 --> 00:00:17,410 +Ok, today we will take two design patterns because + +3 +00:00:17,410 --> 00:00:21,250 +these design patterns are quite simple but at the + +4 +00:00:21,250 --> 00:00:23,670 +same time, especially the second design pattern + +5 +00:00:23,670 --> 00:00:26,990 +which is called strategy is an important and + +6 +00:00:26,990 --> 00:00:30,450 +widely used design pattern So let's start with the + +7 +00:00:30,450 --> 00:00:32,850 +two design patterns for today The first design + +8 +00:00:32,850 --> 00:00:35,570 +pattern we will take is called template method + +9 +00:00:37,320 --> 00:00:39,960 +Pattern And the template method pattern is a + +10 +00:00:39,960 --> 00:00:41,800 +method similar to the design pattern we took + +11 +00:00:41,800 --> 00:00:47,240 +previously which is the factory method But it is + +12 +00:00:47,240 --> 00:00:49,440 +similar to its implementation method, but its + +13 +00:00:49,440 --> 00:00:52,880 +purpose is different For this reason, let's + +14 +00:00:52,880 --> 00:00:55,440 +remember how the factory method worked or what its + +15 +00:00:55,440 --> 00:00:57,920 +purpose was The factory method, if you remember, + +16 +00:00:58,240 --> 00:01:00,900 +its purpose is that I have a common code between + +17 +00:01:00,900 --> 00:01:03,800 +the children but they differ in the type of object + +18 +00:01:03,800 --> 00:01:08,960 +that is createdOkay? So that's why I couldn't take + +19 +00:01:08,960 --> 00:01:13,800 +this code and put it in the app So I resorted to + +20 +00:01:13,800 --> 00:01:16,040 +the factor method on the basis that I put the code + +21 +00:01:16,040 --> 00:01:20,580 +in the app and assign the child to do the + +22 +00:01:20,580 --> 00:01:21,900 +different parts What were the different parts? + +23 +00:01:22,360 --> 00:01:24,880 +Creating the object and assigning the child to + +24 +00:01:24,880 --> 00:01:32,750 +create it Okay?The template method pattern is a + +25 +00:01:32,750 --> 00:01:34,770 +design pattern similar to this. I say that the + +26 +00:01:34,770 --> 00:01:38,630 +template method pattern is used when you have + +27 +00:01:38,630 --> 00:01:43,130 +algorithms in certain libraries consisting of a + +28 +00:01:43,130 --> 00:01:48,890 +set of stepsوبدك الخطوات هذه تتنفذ بترتيب .. + +29 +00:01:48,890 --> 00:01:53,910 +بترتيب معين تمام؟ يعني أنت كمبرمج بدك الخطوات هذه + +30 +00:01:53,910 --> 00:02:01,530 +تتنفذ بترتيب معين لكن ممكن يجي ناس يعمل subclasses + +31 +00:02:02,070 --> 00:02:06,110 +they change a step or the details of each step I + +32 +00:02:06,110 --> 00:02:09,650 +mean the idea is that you have to solve the + +33 +00:02:09,650 --> 00:02:12,750 +subclasses, that they change the steps, what's in + +34 +00:02:12,750 --> 00:02:16,430 +each step but the order of these steps has to be + +35 +00:02:16,430 --> 00:02:19,770 +executed in a certain order, okay? I mean the + +36 +00:02:19,770 --> 00:02:23,410 +goal, as I said a third time, from this design + +37 +00:02:23,410 --> 00:02:27,110 +pattern is that we want to make a wayWe define in + +38 +00:02:27,110 --> 00:02:29,930 +it the structure of a certain algorithm and its + +39 +00:02:29,930 --> 00:02:32,850 +steps in a certain order But I want to allow + +40 +00:02:32,850 --> 00:02:35,610 +children to change the details of each step + +41 +00:02:35,610 --> 00:02:39,950 +without changing the order of the steps And to + +42 +00:02:39,950 --> 00:02:44,470 +understand this, let's take a practical example of + +43 +00:02:44,470 --> 00:02:48,450 +where we need this thing Now, + +44 +00:02:49,250 --> 00:02:53,050 +one of the things that they use a lot in AI, which + +45 +00:02:53,050 --> 00:02:56,760 +is in text processingI mean, how does the search + +46 +00:02:56,760 --> 00:02:59,300 +engine work? Imagine that when you write a word + +47 +00:02:59,300 --> 00:03:03,160 +for yourself, it brings you to the pages that + +48 +00:03:03,160 --> 00:03:05,740 +contain this word. No, there are many steps to be + +49 +00:03:05,740 --> 00:03:09,520 +done before that. You have to read each page of + +50 +00:03:09,520 --> 00:03:11,800 +the internet, and this existing text has to take + +51 +00:03:11,800 --> 00:03:14,320 +certain steps. For example, it has to go and + +52 +00:03:14,320 --> 00:03:18,520 +divide the text, each word one by one. Then it + +53 +00:03:18,520 --> 00:03:21,060 +does a process called normalization, which means + +54 +00:03:21,060 --> 00:03:24,040 +that each word separates from it the vowels and + +55 +00:03:24,040 --> 00:03:27,240 +the extra letters.and then every word after that + +56 +00:03:27,240 --> 00:03:30,240 +goes and does something called stop word removal + +57 +00:03:30,240 --> 00:03:32,520 +which is the words that are not important that are + +58 +00:03:32,520 --> 00:03:35,220 +in the text, what do I do with them? I delete them + +59 +00:03:35,220 --> 00:03:39,260 +because they don't have an actual use like for + +60 +00:03:39,260 --> 00:03:43,620 +example the letters J and A for example in English + +61 +00:03:43,620 --> 00:03:46,020 +all of these words don't matter or their meanings + +62 +00:03:46,020 --> 00:03:49,700 +don't matter so I delete themAnd then I go and do + +63 +00:03:49,700 --> 00:03:51,920 +a process called stemming, what is stemming? It + +64 +00:03:51,920 --> 00:03:55,040 +brings back each word to its original root, why? + +65 +00:03:55,160 --> 00:03:57,320 +For example, suppose you are looking for the word + +66 +00:03:57,320 --> 00:04:04,630 +game, okay? You might find gamesYou see, if you + +67 +00:04:04,630 --> 00:04:06,130 +search for a game, it won't bring you games, + +68 +00:04:06,390 --> 00:04:08,710 +because this is one word and this is another word. + +69 +00:04:09,130 --> 00:04:11,570 +But if I return the word you are looking for and + +70 +00:04:11,570 --> 00:04:13,610 +the original word to their root, what is their + +71 +00:04:13,610 --> 00:04:16,790 +root? A game, and I say search for me in the root, + +72 +00:04:17,070 --> 00:04:20,680 +it will bring you that yes, the gameOkay, similar + +73 +00:04:20,680 --> 00:04:23,840 +to the word what? Game So this is an important + +74 +00:04:23,840 --> 00:04:26,520 +step in the process And then, for example, the + +75 +00:04:26,520 --> 00:04:28,900 +last step is that we make a classification of the + +76 +00:04:28,900 --> 00:04:31,700 +texts Because after reading the file and bringing + +77 +00:04:31,700 --> 00:04:34,600 +the words in it and returning them to their roots, + +78 +00:04:34,900 --> 00:04:36,480 +they will make a classification of the words to + +79 +00:04:36,480 --> 00:04:40,220 +put the similar words together and determine that + +80 +00:04:40,220 --> 00:04:44,170 +the document in generalIs it a document belonging + +81 +00:04:44,170 --> 00:04:46,630 +to any domain? Does it have anything to do with + +82 +00:04:46,630 --> 00:04:51,230 +sport, economy, politics and so on So the idea is + +83 +00:04:51,230 --> 00:04:53,430 +that any text processor goes through steps The + +84 +00:04:53,430 --> 00:04:58,910 +first step is to read the text The first step is + +85 +00:04:58,910 --> 00:05:00,210 +normalization + +86 +00:05:03,150 --> 00:05:05,910 +remove the consonants, remove the extra letters, + +87 +00:05:06,710 --> 00:05:10,870 +the Hamza unify it in a certain way so that when I + +88 +00:05:10,870 --> 00:05:12,910 +search for the word in Hamza written, other than + +89 +00:05:12,910 --> 00:05:14,570 +when I search for the word Hamza connected, for + +90 +00:05:14,570 --> 00:05:17,970 +example. Anyway, then I also have tokenization. + +91 +00:05:21,090 --> 00:05:25,670 +Divide the text for separate words. And then I + +92 +00:05:25,670 --> 00:05:29,630 +have stop word removal. + +93 +00:05:29,850 --> 00:05:34,610 +Remove the unimportant words.and then do the + +94 +00:05:34,610 --> 00:05:38,450 +stemming, bring back each word to its root, and + +95 +00:05:38,450 --> 00:05:41,770 +the last step is to do the classification process. + +96 +00:05:42,090 --> 00:05:44,650 +Our topic is not the processing of texts, but I + +97 +00:05:44,650 --> 00:05:46,710 +want to explain to you that any process of + +98 +00:05:46,710 --> 00:05:50,730 +processing texts goes through these steps. For + +99 +00:05:50,730 --> 00:05:53,490 +example, we want to make a library for processing + +100 +00:05:53,490 --> 00:05:57,350 +texts, and I want anyone, any programmer to + +101 +00:05:57,350 --> 00:06:00,690 +process any text, force him to go through all + +102 +00:06:00,690 --> 00:06:06,760 +these steps. But of course he can define or + +103 +00:06:06,760 --> 00:06:09,900 +execute the code of each step as he wants. For + +104 +00:06:09,900 --> 00:06:13,480 +example, read text. I can read from a database, + +105 +00:06:13,840 --> 00:06:18,280 +from a network, from a JSON file, from a text + +106 +00:06:18,280 --> 00:06:21,580 +file. Right or wrong guys? So read text, its + +107 +00:06:21,580 --> 00:06:23,800 +details, how I want to read the data is determined + +108 +00:06:23,800 --> 00:06:29,010 +by the programmer. Normalization, how ITreating + +109 +00:06:29,010 --> 00:06:32,010 +the text in a unified way, removing the extras, + +110 +00:06:32,190 --> 00:06:34,410 +removing the consonants, this also differs from + +111 +00:06:34,410 --> 00:06:37,010 +language to language, in English except Arabic, + +112 +00:06:37,090 --> 00:06:38,850 +Arabic has connected consonants, English does not + +113 +00:06:38,850 --> 00:06:41,770 +have connected consonants, okay? So what are the + +114 +00:06:41,770 --> 00:06:43,870 +steps of normalization that differ from + +115 +00:06:43,870 --> 00:06:45,110 +programming or from language to language? + +116 +00:06:45,810 --> 00:06:47,890 +Tokenization also divides the text into words, + +117 +00:06:47,990 --> 00:06:50,290 +also differs from language to language. Stop word + +118 +00:06:50,290 --> 00:06:52,690 +removal, removing irrelevant words, irrelevant + +119 +00:06:52,690 --> 00:06:55,650 +words in Arabic, irrelevant words in English + +120 +00:06:56,290 --> 00:06:58,210 +Stemming is to refer to every word that has + +121 +00:06:58,210 --> 00:07:02,370 +logarithms or certain ways Classification of texts + +122 +00:07:02,370 --> 00:07:05,890 +has many ways to classify them So I want a way + +123 +00:07:05,890 --> 00:07:08,450 +that either a programmer or someone who wants to + +124 +00:07:08,450 --> 00:07:12,050 +make a text processor You have to stick to these + +125 +00:07:12,050 --> 00:07:16,470 +steps in the same order But each code, each step, + +126 +00:07:16,710 --> 00:07:20,310 +you decide for yourself This is the goal that I + +127 +00:07:20,310 --> 00:07:24,740 +talked about in the beginningI have a set of steps + +128 +00:07:24,740 --> 00:07:28,220 +for an algorithm that I want it to execute in a + +129 +00:07:28,220 --> 00:07:29,920 +certain order, but I want to leave the details of + +130 +00:07:29,920 --> 00:07:33,900 +each step for the programmer. Because this is the + +131 +00:07:33,900 --> 00:07:35,260 +goal we want to achieve. How can we, as + +132 +00:07:35,260 --> 00:07:39,200 +programmers, force the programmer to follow + +133 +00:07:39,200 --> 00:07:43,340 +certain steps and allow him to change the steps as + +134 +00:07:43,340 --> 00:07:45,740 +he wants? This is what we want to do now as + +135 +00:07:45,740 --> 00:07:49,140 +programmers. So now I want to go to the same + +136 +00:07:49,140 --> 00:07:52,850 +example. We want to do the following. The first + +137 +00:07:52,850 --> 00:07:55,890 +thing I want to do is create a class called + +138 +00:07:55,890 --> 00:08:02,890 +AbstractTextProcessor And I want to make this + +139 +00:08:02,890 --> 00:08:06,310 +class abstract Why? Because I don't want to create + +140 +00:08:06,310 --> 00:08:09,690 +an object from this class I want to put code in + +141 +00:08:09,690 --> 00:08:12,630 +this class so that it has an extent But in + +142 +00:08:12,630 --> 00:08:16,490 +reality, no one will use this class to create an + +143 +00:08:16,490 --> 00:08:19,660 +object from itOkay, now what are the steps that I + +144 +00:08:19,660 --> 00:08:25,720 +have here? Okay? How many steps? 1,2,3,4,5,6 Six + +145 +00:08:25,720 --> 00:08:29,040 +steps, I want to do each step as an abstract + +146 +00:08:29,040 --> 00:08:33,680 +method Why? Because he wants to extend this class, + +147 +00:08:34,680 --> 00:08:39,160 +okay? He wants to override the steps in the way he + +148 +00:08:39,160 --> 00:08:41,940 +wants, okay? Then I do protected + +149 +00:08:47,480 --> 00:08:52,220 +Abstract, the first step is called read text, it + +150 +00:08:52,220 --> 00:08:54,260 +takes the string source from where it wants to + +151 +00:08:54,260 --> 00:08:57,820 +read the text and returns the string, which is the + +152 +00:08:57,820 --> 00:08:58,320 +whole text. + +153 +00:09:02,400 --> 00:09:04,140 +Of course, I made it protected, I will come back + +154 +00:09:04,140 --> 00:09:06,580 +and tell you why I made it protected. Then + +155 +00:09:06,580 --> 00:09:10,900 +protected, what is the second step? Normalization, + +156 +00:09:11,460 --> 00:09:14,400 +yes normalization, string, normalize + +157 +00:09:16,740 --> 00:09:19,160 +and I give him the text. This method takes the + +158 +00:09:19,160 --> 00:09:21,680 +text, makes it normalize and returns a new text + +159 +00:09:21,680 --> 00:09:26,180 +after it becomes normalization. The next step is + +160 +00:09:26,180 --> 00:09:27,300 +tokenize. + +161 +00:09:30,920 --> 00:09:35,740 +array of strings, I'm going to divide the text, + +162 +00:09:35,900 --> 00:09:40,240 +tokenize and give it a string text. + +163 +00:09:42,100 --> 00:09:45,440 +The next step, what's its name? + +164 +00:09:51,100 --> 00:09:59,980 +stop word removal and this one takes the + +165 +00:09:59,980 --> 00:10:02,360 +words after the partition, filters them, removes + +166 +00:10:02,360 --> 00:10:03,920 +the words that are not important and returns a new + +167 +00:10:03,920 --> 00:10:10,940 +list and the last step protected + +168 +00:10:10,940 --> 00:10:15,720 +abstract or the last step before the last one + +169 +00:10:15,720 --> 00:10:16,960 +which is stem + +170 +00:10:22,530 --> 00:10:25,910 +بتاخد الكلمات و بتعملهم stemming و الخطوة الأخيرة + +171 +00:10:25,910 --> 00:10:29,230 +abstract + +172 +00:10:29,230 --> 00:10:34,130 +بترجعلي list of classes بعد التصنيف classify + +173 +00:10:34,130 --> 00:10:42,160 +string هنا stemsOkay, these steps, each step I + +174 +00:10:42,160 --> 00:10:46,240 +represented with an abstract method The main goal + +175 +00:10:46,240 --> 00:10:50,180 +that we want to achieve is that the steps must be + +176 +00:10:50,180 --> 00:10:53,640 +executed in a certain order This is our main goal + +177 +00:10:53,640 --> 00:10:57,180 +The client or the person who wants to extend this + +178 +00:10:57,180 --> 00:11:00,900 +class must implement for whom? For these six steps + +179 +00:11:00,900 --> 00:11:04,060 +But we return to our main point that I don't want + +180 +00:11:04,060 --> 00:11:08,220 +the steps to be executed in a certain order So + +181 +00:11:08,220 --> 00:11:11,020 +let's go to the main point here I create a method + +182 +00:11:11,020 --> 00:11:15,500 +public This method public means from outside I see + +183 +00:11:15,500 --> 00:11:20,700 +it, these are protected, I only see them where? In + +184 +00:11:20,700 --> 00:11:22,920 +the package itself or in the subclass but from + +185 +00:11:22,920 --> 00:11:32,820 +outside, no Okay, public final Public final, here + +186 +00:11:32,820 --> 00:11:35,120 +it's name is process method and text + +187 +00:11:38,100 --> 00:11:40,300 +and I send him the source from where he wants to + +188 +00:11:40,300 --> 00:11:45,240 +read the text what will this method return? it + +189 +00:11:45,240 --> 00:11:47,940 +will return the final result which is the classes + +190 +00:11:47,940 --> 00:11:53,720 +so now the algorithm will execute inside this + +191 +00:11:53,720 --> 00:11:58,380 +method starting from reading the file until it + +192 +00:11:58,380 --> 00:12:01,680 +does the classification and returns the list of + +193 +00:12:01,680 --> 00:12:05,300 +classes so now everything I do inside the process + +194 +00:12:05,300 --> 00:12:10,190 +text will claim the abstract methods which means + +195 +00:12:10,190 --> 00:12:13,570 +the first step which is read text read text will + +196 +00:12:13,570 --> 00:12:16,970 +read from the source which I passed to him this + +197 +00:12:16,970 --> 00:12:23,590 +one and this one returns me a string text and then + +198 +00:12:23,590 --> 00:12:25,710 +this text which returns from the method will be + +199 +00:12:25,710 --> 00:12:28,470 +input to whom? to the next method to the one + +200 +00:12:28,470 --> 00:12:30,490 +behind it because the method will be executed in + +201 +00:12:30,490 --> 00:12:33,770 +this order and each output from the method will be + +202 +00:12:33,770 --> 00:12:39,130 +input to the next method normalize this will take + +203 +00:12:39,130 --> 00:12:48,470 +text and return me a string normalized text now + +204 +00:12:48,470 --> 00:12:58,970 +next stop word removal yes there is tokenize I + +205 +00:12:58,970 --> 00:13:04,850 +will send him normalized text and return me a + +206 +00:13:04,850 --> 00:13:06,570 +string array of tokens + +207 +00:13:09,870 --> 00:13:17,550 +and then stop word removal I pass tokens to it, + +208 +00:13:17,950 --> 00:13:22,550 +filter them and return them back to tokens and + +209 +00:13:22,550 --> 00:13:27,290 +then I have stem and classify, this stem will take + +210 +00:13:27,290 --> 00:13:30,830 +tokens and return me the roots of the words, so I + +211 +00:13:30,830 --> 00:13:34,610 +want to call them string stems + +212 +00:13:36,660 --> 00:13:40,440 +and the last step which is classify which takes + +213 +00:13:40,440 --> 00:13:47,780 +the stems and returns a list of classes and then I + +214 +00:13:47,780 --> 00:13:52,380 +say return classes + +215 +00:13:52,380 --> 00:13:56,680 +ok this is method processText notice that I made + +216 +00:13:56,680 --> 00:14:00,270 +this method It consists of a set of steps, each + +217 +00:14:00,270 --> 00:14:05,130 +step is the whole abstract method down there And + +218 +00:14:05,130 --> 00:14:06,990 +this method, notice, I made it public and I made + +219 +00:14:06,990 --> 00:14:10,370 +it final Because what do we use the final for? + +220 +00:14:10,970 --> 00:14:14,210 +Now, if I use the final with a variable, it + +221 +00:14:14,210 --> 00:14:16,570 +becomes constant, right? I only change it once and + +222 +00:14:16,570 --> 00:14:19,410 +I can't change it again The final, if I use it + +223 +00:14:19,410 --> 00:14:22,230 +with a method, it means that I can't override this + +224 +00:14:22,230 --> 00:14:27,330 +methodWhy I don't want to override it? So that no + +225 +00:14:27,330 --> 00:14:29,890 +one can change the order of the steps, the + +226 +00:14:29,890 --> 00:14:33,090 +algorithm steps stay the same You are not allowed, + +227 +00:14:33,550 --> 00:14:36,330 +you subclass to play with this method, so I made + +228 +00:14:36,330 --> 00:14:39,070 +it final Of course, if I use this final with the + +229 +00:14:39,070 --> 00:14:43,470 +whole class, I can no longer extend this class, + +230 +00:14:43,550 --> 00:14:48,510 +okay? Now, if I go and make a package, just a + +231 +00:14:48,510 --> 00:14:48,750 +second + +232 +00:14:56,520 --> 00:14:59,520 +I made a class for the test that I found for the + +233 +00:14:59,520 --> 00:15:08,220 +experiment public static void main string args + +234 +00:15:11,990 --> 00:15:14,270 +Ok guys, we've done the abstract text processor + +235 +00:15:14,270 --> 00:15:16,410 +Now, of course, when the client wants to do text + +236 +00:15:16,410 --> 00:15:18,310 +processing, he won't be able to create an object + +237 +00:15:18,310 --> 00:15:21,630 +for this class, right? So he wants to do a new + +238 +00:15:21,630 --> 00:15:25,070 +text processing, all he needs to do is to create a + +239 +00:15:25,070 --> 00:15:27,430 +new class He calls it, for example, + +240 +00:15:27,570 --> 00:15:30,970 +MyArabicTextProcessor + +241 +00:15:30,970 --> 00:15:35,170 +I want to create a text processor for Arabic, ok? + +242 +00:15:35,950 --> 00:15:38,790 +So we tell him, if you want to create a text + +243 +00:15:38,790 --> 00:15:45,370 +processor, go to Extends For Text Abstract Text + +244 +00:15:45,370 --> 00:15:51,630 +Processor Of course, + +245 +00:15:51,750 --> 00:15:53,750 +as soon as I did it, it asked me to implement for + +246 +00:15:53,750 --> 00:15:59,180 +whom? For all abstract methodsOf course I can't + +247 +00:15:59,180 --> 00:16:03,400 +override the processText method because it's a + +248 +00:16:03,400 --> 00:16:13,240 +final So now I'm going to show you how to read + +249 +00:16:13,240 --> 00:16:18,000 +from a file, how to normalize it, how to tokenize + +250 +00:16:18,000 --> 00:16:21,980 +it I put the code that I want for each step, I + +251 +00:16:21,980 --> 00:16:25,760 +specify what each step should haveNow I finish + +252 +00:16:25,760 --> 00:16:28,480 +this class and I want to use it, where do I want + +253 +00:16:28,480 --> 00:16:31,180 +to use it? From the mail, I want to say my Arabic + +254 +00:16:31,180 --> 00:16:40,640 +text processor, this is processor, new my Arabic + +255 +00:16:40,640 --> 00:16:43,440 +text processor + +256 +00:16:54,540 --> 00:16:59,660 +Okay, and then I say processor dot okay, I don't + +257 +00:16:59,660 --> 00:17:04,860 +have any method here except ProcessText Okay, when + +258 +00:17:04,860 --> 00:17:07,240 +I finished the class, I defined each step, and + +259 +00:17:07,240 --> 00:17:10,020 +then I say ProcessText is forbidden to play with + +260 +00:17:10,020 --> 00:17:14,020 +it to make it final, I can't change it, the steps + +261 +00:17:14,020 --> 00:17:17,480 +should be executed in order ProcessText, and then + +262 +00:17:17,480 --> 00:17:19,340 +I say from where, for example, read from file + +263 +00:17:19,340 --> 00:17:27,070 +myfile.txt and I make the processing steps and I + +264 +00:17:27,070 --> 00:17:31,410 +get the result which is an array of classes so + +265 +00:17:31,410 --> 00:17:35,350 +actually through this method which is called + +266 +00:17:35,350 --> 00:17:39,330 +process text I determined the algorithm model and + +267 +00:17:39,330 --> 00:17:44,830 +the order of the algorithm steps but each step is + +268 +00:17:44,830 --> 00:17:47,170 +represented by an abstract class on the basis that + +269 +00:17:47,170 --> 00:17:50,640 +the clientit will override and specify implement + +270 +00:17:50,640 --> 00:17:52,780 +for the method and specify what it wants to do in + +271 +00:17:52,780 --> 00:17:55,580 +each step but the order of the steps is fixed and + +272 +00:17:55,580 --> 00:17:58,400 +I made it unifiable so that it cannot play with it + +273 +00:17:58,400 --> 00:18:01,980 +because this method is called the template method + +274 +00:18:01,980 --> 00:18:05,660 +why template? what does template mean? it is a + +275 +00:18:05,660 --> 00:18:08,480 +box, okay? this is a box for the algorithm you are + +276 +00:18:08,480 --> 00:18:10,540 +not allowed to change this box you change the + +277 +00:18:10,540 --> 00:18:15,210 +steps without changing the boxHere, I applied the + +278 +00:18:15,210 --> 00:18:18,530 +template method by allowing the client to execute + +279 +00:18:18,530 --> 00:18:20,710 +the steps of the algorithm in a certain order, but + +280 +00:18:20,710 --> 00:18:24,570 +it can change each step's details as it pleases + +281 +00:18:24,570 --> 00:18:27,430 +Note that this is somewhat similar to the factory + +282 +00:18:27,430 --> 00:18:30,250 +method In the factory method, we used to code in + +283 +00:18:30,250 --> 00:18:33,810 +the superclass, but we used to store some steps in + +284 +00:18:33,810 --> 00:18:37,670 +the subclass But the difference is that in the + +285 +00:18:37,670 --> 00:18:40,270 +factory method, we used to store the subclass only + +286 +00:18:40,270 --> 00:18:44,490 +in the steps of creating the object Here, the goal + +287 +00:18:44,490 --> 00:18:46,590 +is different. I want it to run in consistent + +288 +00:18:46,590 --> 00:18:49,510 +steps, consistent algorithm, but it changes + +289 +00:18:49,510 --> 00:18:56,270 +details every step. This method is called the + +290 +00:18:56,270 --> 00:18:57,870 +template method. + +291 +00:19:00,050 --> 00:19:03,230 +Now, I want to talk about where this template + +292 +00:19:03,230 --> 00:19:08,290 +method is applied in the frameworks that we use. + +293 +00:19:08,570 --> 00:19:10,510 +For example, I want to talk about Android, because + +294 +00:19:10,510 --> 00:19:11,870 +I worked on Android for a while. + +295 +00:19:15,680 --> 00:19:19,260 +You take an idea from it, and I think Flutter is + +296 +00:19:19,260 --> 00:19:22,360 +the same idea Now in Android, when they tell you + +297 +00:19:22,360 --> 00:19:25,440 +to make a new face, we actually go and make a + +298 +00:19:25,440 --> 00:19:28,840 +class that I want, for example A, and they tell + +299 +00:19:28,840 --> 00:19:33,740 +you to make extends to a class in Android called + +300 +00:19:33,740 --> 00:19:38,370 +what?Activity, this activity guys is like the J + +301 +00:19:38,370 --> 00:19:43,870 +frame or the frame, or for example in the, what do + +302 +00:19:43,870 --> 00:19:48,490 +you call it in JavaFX? Application, okay? Any page + +303 +00:19:48,490 --> 00:19:52,730 +you want to make, you extend it to activity Now, + +304 +00:19:52,950 --> 00:19:55,530 +what does it tell me? It tells me, + +305 +00:19:57,470 --> 00:20:00,450 +of course here I write, I make a class for this, I + +306 +00:20:00,450 --> 00:20:02,310 +want to determine what it wants to show me in my + +307 +00:20:02,310 --> 00:20:06,000 +activity Because he tells me that this activity + +308 +00:20:06,000 --> 00:20:09,680 +goes through stages, it has a life cycle, what is + +309 +00:20:09,680 --> 00:20:13,600 +its life cycle? Which is before it starts and then + +310 +00:20:13,600 --> 00:20:16,320 +at the beginning it goes through a phase and + +311 +00:20:16,320 --> 00:20:19,600 +during work it goes through another phase, when I + +312 +00:20:19,600 --> 00:20:22,040 +pause it, what does pause mean? To stop it + +313 +00:20:22,040 --> 00:20:24,240 +temporarily, another screen comes to work on it, + +314 +00:20:24,320 --> 00:20:26,800 +this is a case and then when I come to stop it + +315 +00:20:28,360 --> 00:20:30,820 +means you stop in this case and when it does + +316 +00:20:30,820 --> 00:20:35,740 +destroy what is destroy? I cancel it or destroy it + +317 +00:20:35,740 --> 00:20:37,860 +as we say in the literal translation this is a + +318 +00:20:37,860 --> 00:20:42,100 +third case so they say the activity goes through + +319 +00:20:42,100 --> 00:20:45,180 +constant steps you programmer can determine what + +320 +00:20:45,180 --> 00:20:47,420 +you want to do in each step but the order of the + +321 +00:20:47,420 --> 00:20:50,980 +steps is forbidden to play with okay? so they for + +322 +00:20:50,980 --> 00:20:53,120 +example in the activity there is a method called + +323 +00:20:53,120 --> 00:20:56,920 +execute which + +324 +00:20:56,920 --> 00:21:01,870 +turns on who?The activity, this execute goes + +325 +00:21:01,870 --> 00:21:06,450 +through stages. What are the stages? On, create, + +326 +00:21:07,310 --> 00:21:10,010 +what is on create? When it is created, that is, + +327 +00:21:10,090 --> 00:21:12,930 +the activity has not been created yet, it has not + +328 +00:21:12,930 --> 00:21:16,710 +appeared on the screen. During creation, it runs + +329 +00:21:16,710 --> 00:21:20,030 +the code in on create. What do we put in the code + +330 +00:21:20,030 --> 00:21:22,350 +in on create? Any code that it wants to run before + +331 +00:21:22,350 --> 00:21:26,530 +the screen appears. For the user, okay? Connect to + +332 +00:21:26,530 --> 00:21:28,570 +a server, for example Something like that, + +333 +00:21:28,650 --> 00:21:32,630 +download data from a file, okay? Then I have on + +334 +00:21:32,630 --> 00:21:37,630 +start That when the screen becomes visible, it + +335 +00:21:37,630 --> 00:21:40,250 +appears to the client It can have a certain code + +336 +00:21:40,250 --> 00:21:43,910 +execution, send him a certain message and so on We + +337 +00:21:43,910 --> 00:21:48,270 +have on pause I + +338 +00:21:48,270 --> 00:21:51,030 +mean when the screen, for exampleIt stops + +339 +00:21:51,030 --> 00:21:53,250 +temporarily if there is another screen running on + +340 +00:21:53,250 --> 00:21:58,170 +it If the screen has a loop or thread running, I + +341 +00:21:58,170 --> 00:22:01,930 +can stop it in the on pause And I have for example + +342 +00:22:01,930 --> 00:22:05,830 +on stop And I have another method called on + +343 +00:22:05,830 --> 00:22:09,810 +destroy and many methods But these methods have to + +344 +00:22:09,810 --> 00:22:10,710 +run in a certain order + +345 +00:22:14,060 --> 00:22:17,560 +Now he tells me that this method should be done in + +346 +00:22:17,560 --> 00:22:19,740 +a final way, meaning that this method has nothing + +347 +00:22:19,740 --> 00:22:22,280 +to do with it, I can't even know what to do with + +348 +00:22:22,280 --> 00:22:23,400 +it, it should be done in a private way as well, + +349 +00:22:23,620 --> 00:22:25,940 +because I'm not the one calling for it, okay? He's + +350 +00:22:25,940 --> 00:22:29,780 +the only one calling for free class activity and + +351 +00:22:29,780 --> 00:22:32,080 +running these methods. These people, of course, + +352 +00:22:32,200 --> 00:22:35,680 +notice that this method calls for methods. These + +353 +00:22:35,680 --> 00:22:42,400 +are existing methods. It can be abstract or non + +354 +00:22:42,400 --> 00:22:46,760 +-abstract Because as a programmer, you want to + +355 +00:22:46,760 --> 00:22:49,380 +display things on your screen What do you want to + +356 +00:22:49,380 --> 00:22:52,540 +do? Come as a programmer and create an implement + +357 +00:22:52,540 --> 00:22:57,400 +or override for the method called Uncreate + +358 +00:22:57,400 --> 00:23:02,560 +As a programmer, I create an override for Uncreate + +359 +00:23:02,560 --> 00:23:06,060 +when it is present in the activity Why? Because I + +360 +00:23:06,060 --> 00:23:10,430 +put the code You want it to work before the screen + +361 +00:23:10,430 --> 00:23:13,650 +becomes visible to the user Do this, read data, + +362 +00:23:13,930 --> 00:23:17,130 +make a connection to the database Then, of course, + +363 +00:23:17,390 --> 00:23:20,530 +that's why he always tells me to go to uncreate + +364 +00:23:20,530 --> 00:23:26,230 +and search for super.uncreate Why? Because this + +365 +00:23:26,230 --> 00:23:27,970 +uncreate is present in the app but it's not + +366 +00:23:27,970 --> 00:23:30,910 +abstract The difference in the example that we + +367 +00:23:30,910 --> 00:23:32,790 +proposed is that we made the steps before the + +368 +00:23:32,790 --> 00:23:34,950 +search It is actually the uncreate that is present + +369 +00:23:34,950 --> 00:23:37,790 +in the app and has a code, okay? Which is the code + +370 +00:23:37,790 --> 00:23:40,510 +that prepares the ... we did not go into details, + +371 +00:23:40,630 --> 00:23:41,770 +we do not know what it is and we did not have to + +372 +00:23:41,770 --> 00:23:43,290 +know what it is But there is an important code + +373 +00:23:43,290 --> 00:23:45,590 +that is present somewhere in the uncreate If you + +374 +00:23:45,590 --> 00:23:48,170 +want to override it, do it, but in cash, delete + +375 +00:23:48,170 --> 00:23:51,310 +the code that is present in the app So do uncreate + +376 +00:23:51,310 --> 00:23:53,570 +and tell me super.uncreate If this is deleted from + +377 +00:23:53,570 --> 00:23:57,160 +the lineIt will not run the application, you will + +378 +00:23:57,160 --> 00:24:00,160 +get an error, okay? Anyway, you run this and put + +379 +00:24:00,160 --> 00:24:03,700 +your code As you wish. If you want something to + +380 +00:24:03,700 --> 00:24:06,060 +work in the on start after the screen becomes + +381 +00:24:06,060 --> 00:24:09,700 +visible to the user, you can also override the on + +382 +00:24:09,700 --> 00:24:14,640 +start by searching for super.onstart and then + +383 +00:24:14,640 --> 00:24:17,900 +enter the code that you want. If you want to + +384 +00:24:17,900 --> 00:24:20,640 +execute something and the screen closes in the on + +385 +00:24:20,640 --> 00:24:23,500 +destroy, for example, to delete certain files or + +386 +00:24:23,500 --> 00:24:25,780 +disconnect the connection, you can also override + +387 +00:24:25,780 --> 00:24:34,090 +the on start. or onDestroy. So in my class, I can + +388 +00:24:34,090 --> 00:24:37,190 +define what I want to do in each step. But this + +389 +00:24:37,190 --> 00:24:40,610 +order of steps is forbidden to play with. It must + +390 +00:24:40,610 --> 00:24:43,950 +be executed in this order. Because if the order is + +391 +00:24:43,950 --> 00:24:48,070 +changed, a big problem occurs. It means that the + +392 +00:24:48,070 --> 00:24:50,150 +client can play with the code, run onStop before + +393 +00:24:50,150 --> 00:24:53,230 +who? Yes, onCreate. So I say no, these steps must + +394 +00:24:53,230 --> 00:24:57,370 +be executed in this order. It determines what you + +395 +00:24:57,370 --> 00:25:02,410 +should do in each step. Is it clear? So this is + +396 +00:25:02,410 --> 00:25:05,890 +the idea of the template method. In short, we use + +397 +00:25:05,890 --> 00:25:09,210 +it when I have a certain algorithm made up of a + +398 +00:25:09,210 --> 00:25:11,070 +set of steps and I want the client to walk on the + +399 +00:25:11,070 --> 00:25:14,430 +steps calmly as they are. The order of the steps + +400 +00:25:14,430 --> 00:25:17,890 +is one, but I can change the details of the steps. + +401 +00:25:49,190 --> 00:25:56,490 +Ok, let's read only what is in the slides If + +402 +00:25:56,490 --> 00:26:00,510 +we take a look at the dictionary definition of + +403 +00:26:00,510 --> 00:26:02,550 +template, if we look at the definition of the word + +404 +00:26:02,550 --> 00:26:04,930 +template in the dictionary, we can see that a + +405 +00:26:04,930 --> 00:26:07,490 +template is a present format used as a starting + +406 +00:26:07,490 --> 00:26:09,290 +point for a particular application. + +407 +00:26:18,560 --> 00:26:22,980 +So that the format does not have to be recreated + +408 +00:26:22,980 --> 00:26:24,080 +each time it is used + +409 +00:26:32,410 --> 00:26:35,210 +On the same idea is the template method is based. + +410 +00:26:35,490 --> 00:26:38,310 +The same idea is the idea of the template method + +411 +00:26:38,310 --> 00:26:41,970 +that we use as a design pattern in code. A + +412 +00:26:41,970 --> 00:26:46,630 +template method defines an algorithm in a basic + +413 +00:26:46,630 --> 00:26:52,050 +class using abstract operations. The template + +414 +00:26:52,050 --> 00:26:55,670 +method defines an algorithm in the superclass. The + +415 +00:26:55,670 --> 00:26:57,750 +algorithm is made up of steps, each step is + +416 +00:26:57,750 --> 00:27:02,620 +defined as abstract operation that subclasses + +417 +00:27:02,620 --> 00:27:06,860 +override to provide concrete behavior. The + +418 +00:27:06,860 --> 00:27:10,380 +subclasses can override the operations to + +419 +00:27:10,380 --> 00:27:14,180 +determine the behavior of each step. But in the + +420 +00:27:14,180 --> 00:27:17,260 +end, the steps must be executed in the specified + +421 +00:27:17,260 --> 00:27:21,420 +template method. The goal is to define the + +422 +00:27:21,420 --> 00:27:24,340 +skeleton of an algorithm in an operation. What is + +423 +00:27:24,340 --> 00:27:29,790 +a skeleton?The structure determines the structure + +424 +00:27:29,790 --> 00:27:32,990 +of the algorithm, differing some steps to + +425 +00:27:32,990 --> 00:27:38,030 +subclasses. + +426 +00:27:41,990 --> 00:27:45,030 +Template method lets subclasses redefine certain + +427 +00:27:45,030 --> 00:27:48,280 +steps of an algorithm.It allows subclasses to + +428 +00:27:48,280 --> 00:27:52,300 +define the code of each step in the algorithm + +429 +00:27:52,300 --> 00:27:55,440 +without letting them to change the algorithm + +430 +00:27:55,440 --> 00:28:01,400 +structure Because + +431 +00:28:01,400 --> 00:28:06,100 +this is the template method of the UML class + +432 +00:28:06,100 --> 00:28:09,320 +diagram for the template method pattern Actually, + +433 +00:28:10,080 --> 00:28:13,160 +I have an abstract class here The abstract class + +434 +00:28:13,160 --> 00:28:17,720 +has a method called template method And there is + +435 +00:28:17,720 --> 00:28:20,100 +another method called primitive operation A and + +436 +00:28:20,100 --> 00:28:24,460 +primitive operation B. These are the abstract + +437 +00:28:24,460 --> 00:28:28,640 +methods that each one of them represents a step in + +438 +00:28:28,640 --> 00:28:32,920 +the algorithm. The algorithm is defined in the + +439 +00:28:32,920 --> 00:28:35,180 +template method. This is the code of the template + +440 +00:28:35,180 --> 00:28:41,780 +method.Public, Final, Template method From inside + +441 +00:28:41,780 --> 00:28:43,920 +the template method, it calls primitive operation + +442 +00:28:43,920 --> 00:28:46,640 +A, primitive operation B, this is supposed to be B + +443 +00:28:46,640 --> 00:28:49,280 +Then it calls the abstract method to execute each + +444 +00:28:49,280 --> 00:28:53,460 +step in this order Now, what is this? Concrete + +445 +00:28:53,460 --> 00:28:55,940 +class, this is the subclass that we want to extend + +446 +00:28:55,940 --> 00:28:58,680 +to the abstract class It is forbidden to make + +447 +00:28:58,680 --> 00:29:01,160 +override to the template method, it only makes + +448 +00:29:01,160 --> 00:29:03,260 +override to the steps + +449 +00:29:07,370 --> 00:29:12,670 +because this explains on the UML applicability and + +450 +00:29:12,670 --> 00:29:15,430 +examples when we use the template method to + +451 +00:29:15,430 --> 00:29:19,290 +implement the invariant parts of an algorithm once + +452 +00:29:19,290 --> 00:29:22,450 +and leave it up to subclasses to implement the + +453 +00:29:22,450 --> 00:29:26,050 +behavior that can vary in order to define the + +454 +00:29:26,050 --> 00:29:28,430 +order or the steps of the algorithms and the + +455 +00:29:28,430 --> 00:29:33,560 +different parts that make the subclass do itAlso, + +456 +00:29:34,040 --> 00:29:36,500 +the template method and refactoring. What does + +457 +00:29:36,500 --> 00:29:39,680 +refactoring mean? Actually, refactoring is an + +458 +00:29:39,680 --> 00:29:42,320 +important term in software engineering. When you + +459 +00:29:42,320 --> 00:29:44,920 +start coding, your mission is to make sure that + +460 +00:29:44,920 --> 00:29:47,200 +the code works and achieves the output, right or + +461 +00:29:47,200 --> 00:29:51,060 +wrong. Then you change the code.to make it + +462 +00:29:51,060 --> 00:29:53,520 +extendable and well-designed. What is this process + +463 +00:29:53,520 --> 00:29:57,040 +guys? Refactoring. There is no one or only + +464 +00:29:57,040 --> 00:30:00,260 +professional programmers who have a long career in + +465 +00:30:00,260 --> 00:30:04,260 +programming can write code for the first time in + +466 +00:30:04,260 --> 00:30:07,220 +its final form. But programmers still learn. No, + +467 +00:30:07,360 --> 00:30:10,380 +they work in a form and then begin to improve the + +468 +00:30:10,380 --> 00:30:14,150 +design. This is called refactoring.You design and + +469 +00:30:14,150 --> 00:30:16,610 +find that there is a scenario where you have + +470 +00:30:16,610 --> 00:30:19,150 +subclasses that all follow the same steps, but the + +471 +00:30:19,150 --> 00:30:23,070 +details of the steps are different, but the order + +472 +00:30:23,070 --> 00:30:25,650 +of the steps is constant. In this case, you put + +473 +00:30:25,650 --> 00:30:29,930 +the algorithm as a template method in the + +474 +00:30:29,930 --> 00:30:33,270 +superclass, and then in the subclasses, you put + +475 +00:30:33,270 --> 00:30:37,090 +the differences between them. You design in the + +476 +00:30:37,090 --> 00:30:40,230 +beginning, and then you use the template as a + +477 +00:30:40,230 --> 00:30:40,810 +refactoring process. + +478 +00:30:43,880 --> 00:30:45,780 +Okay, this is an example that they propose on the + +479 +00:30:45,780 --> 00:30:49,140 +subject of travel agency, okay? For example, now + +480 +00:30:49,140 --> 00:30:51,620 +we want to make a program to design trips for + +481 +00:30:51,620 --> 00:30:55,020 +travelers. Now, any trip has a certain model, + +482 +00:30:55,680 --> 00:31:01,600 +okay? The model of any trip that we have to follow + +483 +00:31:01,600 --> 00:31:05,920 +is that the trip has do coming transport, which is + +484 +00:31:05,920 --> 00:31:07,840 +how we arrange the travel to the place of the + +485 +00:31:07,840 --> 00:31:10,980 +trip, okay? And then, what is do day? What is the + +486 +00:31:10,980 --> 00:31:13,810 +activity of the first day?Do day B, the activity + +487 +00:31:13,810 --> 00:31:15,970 +of the second day. Do day C, the activity of the + +488 +00:31:15,970 --> 00:31:17,790 +third day. The trips are for example three days. + +489 +00:31:18,290 --> 00:31:21,630 +And then the last step is Do return transport, + +490 +00:31:21,770 --> 00:31:24,470 +which is how we travel them and return them again + +491 +00:31:24,470 --> 00:31:27,250 +to the traveler. Okay? So these are the steps of + +492 +00:31:27,250 --> 00:31:29,930 +any trip consisting of these five stages. Three + +493 +00:31:29,930 --> 00:31:32,930 +days of travel, a day of travel, and a day of + +494 +00:31:32,930 --> 00:31:37,350 +return. Okay? Now, anyone who wants to make a + +495 +00:31:37,350 --> 00:31:40,880 +package for travelThey have to follow these steps, + +496 +00:31:41,020 --> 00:31:44,780 +but they change the details of each step So they + +497 +00:31:44,780 --> 00:31:47,700 +come and do for example here, look this is the + +498 +00:31:47,700 --> 00:31:49,760 +class called trip, this represents the abstract + +499 +00:31:49,760 --> 00:31:54,440 +class Which made a method called perform trip, who + +500 +00:31:54,440 --> 00:31:57,380 +is this? The template method, here it is, perform + +501 +00:31:57,380 --> 00:32:00,980 +trip final method And inside it is called five + +502 +00:32:00,980 --> 00:32:04,200 +abstract methods, okay? These abstract methods are + +503 +00:32:04,200 --> 00:32:08,910 +present in this class They are thesethis package A + +504 +00:32:08,910 --> 00:32:12,910 +is a subclass of trip it can implement for whom? + +505 +00:32:14,350 --> 00:32:17,130 +for the 5 steps, each step determines the code in + +506 +00:32:17,130 --> 00:32:18,990 +it but it is forbidden to play with whom in + +507 +00:32:18,990 --> 00:32:21,390 +perform trip and this package P is also the same + +508 +00:32:21,390 --> 00:32:25,950 +idea it can implement for 5 methods and determine + +509 +00:32:25,950 --> 00:32:30,810 +other details for another trip at the end I want + +510 +00:32:30,810 --> 00:32:33,050 +to complete the trip I remove an object from + +511 +00:32:33,050 --> 00:32:37,060 +package A and claimPerform a trip, true or false? + +512 +00:32:37,740 --> 00:32:41,020 +I call it perform a trip Perform a trip is a + +513 +00:32:41,020 --> 00:32:43,820 +public action, true or false? To see it from the + +514 +00:32:43,820 --> 00:32:48,120 +subclass, but I can't do it override I have to + +515 +00:32:48,120 --> 00:32:51,940 +call it, to stick to the steps, I change the steps + +516 +00:32:51,940 --> 00:32:56,200 +from the abstract methods + +517 +00:32:56,200 --> 00:33:01,020 +Okay, Muhad explained an example of the trip we + +518 +00:33:01,020 --> 00:33:05,200 +saw a while agoThis shows the code, how it looks, + +519 +00:33:05,700 --> 00:33:07,960 +this is the class trip, because this is the method + +520 +00:33:07,960 --> 00:33:11,060 +that performs the trip, you see it has five + +521 +00:33:11,060 --> 00:33:12,780 +abstract methods, and these are the abstract + +522 +00:33:12,780 --> 00:33:13,580 +methods that are here + +523 +00:33:18,270 --> 00:33:21,350 +Ok guys, now that we have finished the template + +524 +00:33:21,350 --> 00:33:25,150 +design pattern Now we will come to another design + +525 +00:33:25,150 --> 00:33:29,850 +pattern which is called the strategy pattern And + +526 +00:33:29,850 --> 00:33:31,330 +the strategy pattern is one of the most important + +527 +00:33:31,330 --> 00:33:37,450 +design patterns and widely used Now before we read + +528 +00:33:37,450 --> 00:33:43,280 +thisLet's see a practical example to show us what + +529 +00:33:43,280 --> 00:33:50,120 +is the problem that we really need to solve and + +530 +00:33:50,120 --> 00:33:52,920 +then we will talk about how the strategy pattern + +531 +00:33:52,920 --> 00:33:54,180 +helps us to solve this problem + +532 +00:34:07,290 --> 00:34:13,110 +Now guys, it's very common in my apps to have an + +533 +00:34:13,110 --> 00:34:18,870 +app that works in more than one mode, for example, + +534 +00:34:19,010 --> 00:34:23,830 +I make a mobile app, this mobile app can work, its + +535 +00:34:23,830 --> 00:34:27,850 +behavior changes depending on the battery or the + +536 +00:34:27,850 --> 00:34:30,970 +internetAnd this is the right of anyone who works + +537 +00:34:30,970 --> 00:34:36,030 +on mobile in any language, Flutter, Android, IOS, + +538 +00:34:36,450 --> 00:34:39,470 +understand what I'm saying? For example, I have a + +539 +00:34:39,470 --> 00:34:43,510 +mobile application, when the battery is low, this + +540 +00:34:43,510 --> 00:34:47,570 +is the case, low battery, the application does not + +541 +00:34:47,570 --> 00:34:49,850 +need to charge the battery a lot. So for example, + +542 +00:34:49,930 --> 00:34:52,610 +if the application updates, connects to the + +543 +00:34:52,610 --> 00:34:56,370 +server, downloads, okay? In the case of low + +544 +00:34:56,370 --> 00:35:00,040 +battery, it stops talking. Why?So that it does not + +545 +00:35:00,040 --> 00:35:02,900 +consume the battery But if the mobile is in + +546 +00:35:02,900 --> 00:35:08,660 +charging mode Or the battery is full In this case, + +547 +00:35:08,780 --> 00:35:12,280 +it runs the updates and downloads and runs at full + +548 +00:35:12,280 --> 00:35:18,960 +capacity Also, the application may be offline and + +549 +00:35:18,960 --> 00:35:19,400 +online + +550 +00:35:22,050 --> 00:35:24,690 +Also, the behavior of the application may differ + +551 +00:35:24,690 --> 00:35:27,790 +between offline and online For example, if the + +552 +00:35:27,790 --> 00:35:31,490 +application is online, it means that any data that + +553 +00:35:31,490 --> 00:35:34,190 +it collects can be sent to whom? To the server + +554 +00:35:34,190 --> 00:35:37,250 +Because it is running online, it can constantly + +555 +00:35:37,250 --> 00:35:40,730 +ask for updates from the server But if it is + +556 +00:35:40,730 --> 00:35:43,910 +offline, it means that any updates need to be + +557 +00:35:43,910 --> 00:35:47,550 +stored in a local database until it becomes online + +558 +00:35:48,590 --> 00:35:52,230 +and then download it to the server. So now my + +559 +00:35:52,230 --> 00:35:55,950 +application will have a different process or + +560 +00:35:55,950 --> 00:36:01,050 +behavior from the mode or status of the mobile + +561 +00:36:01,050 --> 00:36:05,010 +application. This is a scenario that my + +562 +00:36:05,010 --> 00:36:07,510 +application is different during the runtime. Of + +563 +00:36:07,510 --> 00:36:09,390 +course, this is different during the runtime. So + +564 +00:36:09,390 --> 00:36:12,380 +now it can be a device the battery is full and + +565 +00:36:12,380 --> 00:36:15,140 +after a while it goes out so automatically the + +566 +00:36:15,140 --> 00:36:18,320 +application changes from one state to another + +567 +00:36:18,320 --> 00:36:23,280 +state another example of games if you find that + +568 +00:36:23,280 --> 00:36:25,840 +the computer player that you are playing against + +569 +00:36:25,840 --> 00:36:30,520 +also his behavior changes during the run time from + +570 +00:36:30,520 --> 00:36:31,940 +one state to another state for example you are + +571 +00:36:31,940 --> 00:36:36,620 +playing FIFA and the team in front of you is in a + +572 +00:36:36,620 --> 00:36:41,050 +defensive stateOkay? He won, so now he changed his + +573 +00:36:41,050 --> 00:36:45,240 +plan and went back to the beginning to defendit + +574 +00:36:45,240 --> 00:36:50,440 +can change from defending to attacking or + +575 +00:36:50,440 --> 00:36:54,320 +aggression after a while it becomes moderate it + +576 +00:36:54,320 --> 00:36:58,220 +means that he wants to avoid competition to play + +577 +00:36:58,220 --> 00:37:03,580 +in the finals so he plays in a moderate way this + +578 +00:37:03,580 --> 00:37:07,480 +is another example that your player's behavior + +579 +00:37:07,480 --> 00:37:10,680 +changes during the run time he moves from one + +580 +00:37:10,680 --> 00:37:14,560 +situation to anotherOkay, if you are a programmer + +581 +00:37:14,560 --> 00:37:19,140 +and asked you to do something like this Because + +582 +00:37:19,140 --> 00:37:21,000 +you know how to think about how you can do it If + +583 +00:37:21,000 --> 00:37:23,340 +we say for example I have a class called mobile + +584 +00:37:23,340 --> 00:37:29,880 +operation Okay, + +585 +00:37:29,960 --> 00:37:33,040 +it represents the mobile during work And I want to + +586 +00:37:33,040 --> 00:37:36,980 +run this mobile I have a dialer called public void + +587 +00:37:36,980 --> 00:37:44,920 +execute or run or processOkay? Here, of course, in + +588 +00:37:44,920 --> 00:37:48,860 +this execute, I don't know, I said how many, for + +589 +00:37:48,860 --> 00:37:52,160 +example, my mobile has four cases, which means it + +590 +00:37:52,160 --> 00:37:54,680 +will work in how many ways? Four different ways. + +591 +00:37:55,680 --> 00:37:58,300 +So this execute doesn't know what it's going to + +592 +00:37:58,300 --> 00:38:01,480 +work in, in any of the four cases. So you have to, + +593 +00:38:01,740 --> 00:38:05,120 +in order to execute, send additional information + +594 +00:38:05,120 --> 00:38:09,160 +to tell the execute to work in any case. So what + +595 +00:38:09,160 --> 00:38:12,930 +do I have to tell it? Int, for example, mode.So + +596 +00:38:12,930 --> 00:38:15,270 +this integer represents the mode in which the + +597 +00:38:15,270 --> 00:38:18,770 +class will work And here you can make a switch or + +598 +00:38:18,770 --> 00:38:24,650 +F statement You can say that if mod F is equal to + +599 +00:38:24,650 --> 00:38:29,770 +1 on the basis that we gave this 1 We gave numbers + +600 +00:38:29,770 --> 00:38:32,790 +1,2,3,4 and the best thing to do is to define them + +601 +00:38:32,790 --> 00:38:36,190 +as variables above the constant And you can say + +602 +00:38:36,190 --> 00:38:44,240 +that if mod 1 is equal to system.out.println what + +603 +00:38:44,240 --> 00:38:47,900 +is this mode 1? yes, low battery, I want to tell + +604 +00:38:47,900 --> 00:38:55,820 +it to stop all downloads and updates ok? else if + +605 +00:38:55,820 --> 00:39:01,620 +if the mode is equal to 2 which is charging + +606 +00:39:07,180 --> 00:39:15,800 +Work at full capacity. Resume all downloads and + +607 +00:39:15,800 --> 00:39:18,840 +updates. He's not doing charging. That's it. We + +608 +00:39:18,840 --> 00:39:23,420 +have a battery that charges. What's left for you + +609 +00:39:23,420 --> 00:39:27,120 +to do? Work and get. Download. Download. Okay. + +610 +00:39:27,740 --> 00:39:34,000 +Else if. If the mode is equal to three. This works + +611 +00:39:34,000 --> 00:39:42,400 +offline.system.out.println store + +612 +00:39:42,400 --> 00:39:51,000 +all changes in local database and the last thing + +613 +00:39:51,000 --> 00:39:59,420 +else if the mode is 4 system.out.println + +614 +00:40:03,600 --> 00:40:12,960 +send updates and local data to server online + +615 +00:40:12,960 --> 00:40:19,860 +and in the main method let's do a test + +616 +00:40:19,860 --> 00:40:29,780 +we + +617 +00:40:29,780 --> 00:40:35,370 +need to create a mobileOperation, MOP you say new + +618 +00:40:35,370 --> 00:40:36,050 +mobile, + +619 +00:40:39,710 --> 00:40:45,750 +then MOP and I execute who? Execute. If I want him + +620 +00:40:45,750 --> 00:40:50,250 +to work in charging, what do I put? Two. The + +621 +00:40:50,250 --> 00:40:56,090 +battery became low, execute one. Work online, + +622 +00:40:56,790 --> 00:41:01,240 +execute four.and it's like this, I start executing + +623 +00:41:01,240 --> 00:41:05,080 +and changing the input of the method every time I + +624 +00:41:05,080 --> 00:41:11,300 +want to change, I change the input number this is + +625 +00:41:11,300 --> 00:41:14,020 +the design that I thought of in the beginning and + +626 +00:41:14,020 --> 00:41:16,740 +what you will think of too since this execute has + +627 +00:41:16,740 --> 00:41:21,460 +a different work so I have to send it input to + +628 +00:41:21,460 --> 00:41:24,120 +determine what work you are working on what do you + +629 +00:41:24,120 --> 00:41:24,820 +think of this design? + +630 +00:41:31,630 --> 00:41:33,930 +Now we took a rule before, whenever you find + +631 +00:41:33,930 --> 00:41:36,690 +yourself running F in the statement, you know + +632 +00:41:36,690 --> 00:41:39,930 +you're going the wrong way Why? Because now I want + +633 +00:41:39,930 --> 00:41:43,330 +to add a new mode, I want to change the code, I + +634 +00:41:43,330 --> 00:41:46,070 +want to do else F I want to change in the existing + +635 +00:41:46,070 --> 00:41:49,690 +mode, code for any mode, also I want to edit in + +636 +00:41:49,690 --> 00:41:53,690 +the existing code in every mode like this I want + +637 +00:41:53,690 --> 00:41:55,730 +to cancel a mode, everything needs to change + +638 +00:41:55,730 --> 00:41:57,450 +where? In this code + +639 +00:42:00,400 --> 00:42:03,500 +Okay, how and what should we do to improve our + +640 +00:42:03,500 --> 00:42:07,060 +design? I say, did you find that we apply the + +641 +00:42:07,060 --> 00:42:09,720 +strategy pattern? The strategy pattern, the idea + +642 +00:42:09,720 --> 00:42:12,920 +is that I want to make my mobile application + +643 +00:42:12,920 --> 00:42:16,980 +change its mode from one case to another, but at + +644 +00:42:16,980 --> 00:42:21,190 +the same timeI want to be able to add cases and + +645 +00:42:21,190 --> 00:42:23,290 +cancel cases and change the code of the cases + +646 +00:42:23,290 --> 00:42:25,850 +without having to change anything in the method + +647 +00:42:25,850 --> 00:42:30,930 +execute which is my goal I want to make the method + +648 +00:42:30,930 --> 00:42:34,950 +execute extendable I want to add new modes and + +649 +00:42:34,950 --> 00:42:40,570 +change the code of each mode without having to do + +650 +00:42:40,570 --> 00:42:44,550 +F statement and add another F and so onOkay, how + +651 +00:42:44,550 --> 00:42:48,270 +do we do it? Let's just start this way He tells me + +652 +00:42:48,270 --> 00:42:51,070 +the first step you need to do is that each .. Of + +653 +00:42:51,070 --> 00:42:53,510 +course, this represents how many algorithms? Four + +654 +00:42:53,510 --> 00:42:56,890 +algorithms Each case represents a different way of + +655 +00:42:56,890 --> 00:42:58,330 +working We are here for a simple code, but we + +656 +00:42:58,330 --> 00:43:02,690 +print a message But it can be one case consisting + +657 +00:43:02,690 --> 00:43:06,450 +of ten lines, twenty lines, and so on So the first + +658 +00:43:06,450 --> 00:43:09,170 +step he tells me is to separate each algorithm + +659 +00:43:09,170 --> 00:43:13,510 +into an independent classHow many algorithms do I + +660 +00:43:13,510 --> 00:43:16,130 +have? I have four, you have to make four classes + +661 +00:43:16,130 --> 00:43:19,110 +And before we make the four classes, we have to + +662 +00:43:19,110 --> 00:43:22,310 +unite the four classes and make them an interface + +663 +00:43:22,310 --> 00:43:24,430 +Tell us what is the purpose of the interface? It + +664 +00:43:24,430 --> 00:43:26,550 +gives a kind of unity to things that have nothing + +665 +00:43:26,550 --> 00:43:29,690 +to do with each other So I go and make an + +666 +00:43:29,690 --> 00:43:35,850 +interface called for example mobile strategy + +667 +00:43:39,230 --> 00:43:42,290 +and I'm going to create a data called public void + +668 +00:43:42,290 --> 00:43:50,330 +execute or process on the + +669 +00:43:50,330 --> 00:43:53,070 +basis that when we implement the interface this + +670 +00:43:53,070 --> 00:43:56,530 +algorithm will be placed in the process now I'm + +671 +00:43:56,530 --> 00:44:01,810 +going to create four classes which are called low + +672 +00:44:01,810 --> 00:44:04,730 +battery strategy + +673 +00:44:13,140 --> 00:44:17,320 +implements mobile strategy + +674 +00:44:17,320 --> 00:44:22,120 +and + +675 +00:44:22,120 --> 00:44:27,920 +I put in it the code which is what it will do if + +676 +00:44:27,920 --> 00:44:31,740 +it is in a low battery state the code that I put + +677 +00:44:31,740 --> 00:44:34,680 +in the if statement I will put it in the method + +678 +00:44:34,680 --> 00:44:41,180 +process and so on three other classes which are + +679 +00:44:41,180 --> 00:44:45,800 +charging strategy + +680 +00:44:45,800 --> 00:44:49,400 +implement + +681 +00:44:49,400 --> 00:44:59,100 +mobile strategy and + +682 +00:44:59,100 --> 00:44:59,780 +this is the code + +683 +00:45:05,690 --> 00:45:11,270 +and it does one more thing and after that offline + +684 +00:45:11,270 --> 00:45:27,910 +strategy also implements mobile strategy and + +685 +00:45:27,910 --> 00:45:28,550 +here is the code + +686 +00:45:37,220 --> 00:45:40,340 +Okay, so what I did just now, where did I separate + +687 +00:45:40,340 --> 00:45:44,860 +all the algorithms guys? In a class by itself, + +688 +00:45:45,180 --> 00:45:48,260 +then I want to do the next one, because this is + +689 +00:45:48,260 --> 00:45:50,060 +the class of mobile operation which is supposed to + +690 +00:45:50,060 --> 00:45:53,120 +work, okay? Because instead of putting the + +691 +00:45:53,120 --> 00:45:55,460 +algorithms here, I want to go and do it here + +692 +00:45:56,310 --> 00:46:00,010 +attribute named mobile strategy this is the + +693 +00:46:00,010 --> 00:46:04,330 +strategy or I want to call it current strategy + +694 +00:46:04,330 --> 00:46:08,590 +what is current strategy? the current strategy and + +695 +00:46:08,590 --> 00:46:11,650 +I want to make method public void set current + +696 +00:46:11,650 --> 00:46:22,290 +strategy and I will send it an object of type this + +697 +00:46:22,290 --> 00:46:22,930 +is set method + +698 +00:46:26,430 --> 00:46:30,550 +with me guys? this is set method now I want my + +699 +00:46:30,550 --> 00:46:33,630 +mobile to work in a certain strategy I go and do + +700 +00:46:33,630 --> 00:46:37,050 +what? set current strategy now we come to execute + +701 +00:46:37,050 --> 00:46:39,970 +now who do I raise? all the code of the if + +702 +00:46:39,970 --> 00:46:44,310 +statement I remove it all and who do I remove? I + +703 +00:46:44,310 --> 00:46:47,530 +remove this mode when I say execute I really want + +704 +00:46:47,530 --> 00:46:52,490 +to go to the current strategy and say process + +705 +00:46:58,680 --> 00:47:02,700 +Now we are almost done Now the algorithm in which + +706 +00:47:02,700 --> 00:47:05,760 +the mobile will work will be defined as an object + +707 +00:47:05,760 --> 00:47:08,720 +I collected the algorithm and I represent each + +708 +00:47:08,720 --> 00:47:12,680 +algorithm as an object I want to run the mobile + +709 +00:47:12,680 --> 00:47:14,780 +with a specific algorithm I give it this algorithm + +710 +00:47:14,780 --> 00:47:17,640 +through the set method and then I tell it to + +711 +00:47:17,640 --> 00:47:21,580 +execute How does it work in the main? As follows + +712 +00:47:21,580 --> 00:47:24,080 +In the main, I do the following The first step I + +713 +00:47:24,080 --> 00:47:28,780 +do As long as the mobile has four cases, I create + +714 +00:47:28,780 --> 00:47:32,340 +an object for each algorithm. For example, I say + +715 +00:47:32,340 --> 00:47:38,680 +low battery, battery is wrongly written, strategy, + +716 +00:47:39,820 --> 00:47:41,740 +this is S1, new, + +717 +00:47:44,380 --> 00:47:48,360 +low battery strategy. This is how we create the + +718 +00:47:48,360 --> 00:47:51,760 +first strategy. The second is charging. + +719 +00:47:53,710 --> 00:48:00,450 +strategy S2 new charging strategy طبعا ممكن عشان + +720 +00:48:00,450 --> 00:48:06,290 +تنشئهم أسهل ممكن تستخدم factory تمام و بعدين عندي + +721 +00:48:06,290 --> 00:48:06,870 +offline + +722 +00:48:09,410 --> 00:48:15,130 +Strategy S3 New Offline Strategy These are the + +723 +00:48:15,130 --> 00:48:17,150 +strategies in which the mobile will work and + +724 +00:48:17,150 --> 00:48:20,110 +switch between them during the runtime. Now I did + +725 +00:48:20,110 --> 00:48:22,710 +the mobile operation, this is it. The first step, + +726 +00:48:22,850 --> 00:48:25,890 +for example, if the battery is low, I go to MOP + +727 +00:48:25,890 --> 00:48:30,370 +and I say set current strategy and I give him S1 + +728 +00:48:30,370 --> 00:48:37,150 +and then I say MOP dotExecute. Did you find + +729 +00:48:37,150 --> 00:48:40,410 +Execute? What does it do inside? It turns on the + +730 +00:48:40,410 --> 00:48:44,810 +process of this strategy. Now, after a while, you + +731 +00:48:44,810 --> 00:48:48,770 +connected your phone to the charger. Okay? Just go + +732 +00:48:48,770 --> 00:48:52,770 +to MOP and tell him set current strategy. We + +733 +00:48:52,770 --> 00:48:55,490 +changed his strategy. And you gave him instead of + +734 +00:48:55,490 --> 00:49:02,370 +S1, S2. He needs to turn on MOP.execute run the + +735 +00:49:02,370 --> 00:49:06,310 +second strategy, I want to change again MOP set + +736 +00:49:06,310 --> 00:49:09,110 +current strategy, this is the third one, it is in + +737 +00:49:09,110 --> 00:49:14,210 +offline mode, I say MOP.execute where is the idea + +738 +00:49:14,210 --> 00:49:19,030 +guys, now I want to add a new strategy, everything + +739 +00:49:19,030 --> 00:49:21,630 +I have to do, create a new class, implement the + +740 +00:49:21,630 --> 00:49:24,300 +interface, determine what we want to do with itand + +741 +00:49:24,300 --> 00:49:27,520 +then I remove an object from it and the idea of + +742 +00:49:27,520 --> 00:49:30,580 +mobile operation I will not play with it or change + +743 +00:49:30,580 --> 00:49:32,320 +anything in it, I will just say set current + +744 +00:49:32,320 --> 00:49:34,980 +strategy and send it to the new strategy and + +745 +00:49:34,980 --> 00:49:37,580 +because the new strategy implements the same + +746 +00:49:37,580 --> 00:49:40,740 +interface, what will remain will accept it because + +747 +00:49:40,740 --> 00:49:43,620 +this set current strategy accepts in the end that + +748 +00:49:43,620 --> 00:49:47,340 +it is an object of the type mobile strategy, okay? + +749 +00:49:47,720 --> 00:49:49,880 +I want to change one of them in the strategy, its + +750 +00:49:49,880 --> 00:49:53,260 +code Either I change my code, open my code and + +751 +00:49:53,260 --> 00:49:56,680 +change it or I extend it and make a new strategy, + +752 +00:49:57,060 --> 00:49:59,720 +okay? So now I can use algorithms instead of + +753 +00:49:59,720 --> 00:50:03,740 +linking them in an if statement and one if else if + +754 +00:50:03,740 --> 00:50:06,880 +else I separated each one of them in an + +755 +00:50:06,880 --> 00:50:09,300 +independent file and I send the strategy and + +756 +00:50:09,300 --> 00:50:11,540 +change it I put a code for this strategy instead + +757 +00:50:11,540 --> 00:50:14,880 +of this strategy The change is when I create them + +758 +00:50:14,880 --> 00:50:17,340 +outside and make each one in a file and create an + +759 +00:50:17,340 --> 00:50:22,820 +object from it and change iteasily and this is the + +760 +00:50:22,820 --> 00:50:25,940 +idea of the strategy pattern which as I said is + +761 +00:50:25,940 --> 00:50:27,760 +one of the design patterns that is used a lot + +762 +00:50:27,760 --> 00:50:30,420 +because this case that the application works in + +763 +00:50:30,420 --> 00:50:32,180 +one case and then changes the case and changes + +764 +00:50:32,180 --> 00:50:35,240 +another case this happens a lot with me in + +765 +00:50:35,240 --> 00:50:37,560 +applications it is true that someone tells me that + +766 +00:50:37,560 --> 00:50:39,960 +the code has become more complicated it is true + +767 +00:50:39,960 --> 00:50:42,810 +that I have an increased number of classesOkay? + +768 +00:50:42,970 --> 00:50:46,570 +But it added to a greater benefit. Okay? On the + +769 +00:50:46,570 --> 00:50:48,710 +contrary. I mean, because every algorithm is made + +770 +00:50:48,710 --> 00:50:51,010 +in a class, I can open the class and understand + +771 +00:50:51,010 --> 00:50:54,650 +every algorithm. Instead of collecting all the + +772 +00:50:54,650 --> 00:50:58,490 +algorithms in F, L, C, F, L, C, F, L, C, F. Okay? + +773 +00:50:59,630 --> 00:51:01,390 +Next time, God willing, we will continue reading + +774 +00:51:01,390 --> 00:51:03,430 +the strategy pattern and see another example of + +775 +00:51:03,430 --> 00:51:04,310 +it. God bless you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/6pqOMHnYlAU_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/6pqOMHnYlAU_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..aa32216173a739cb5e103911b17dc55e402e00c8 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/6pqOMHnYlAU_postprocess.srt @@ -0,0 +1,2852 @@ +1 +00:00:05,310 --> 00:00:06,710 +In the name of God, Most Gracious, Most Merciful + +2 +00:00:06,710 --> 00:00:11,570 +Today, guys, after reviewing the basic concepts of + +3 +00:00:11,570 --> 00:00:13,490 +Object-Oriented Learning And we saw the previous + +4 +00:00:13,490 --> 00:00:16,870 +lecture on the topic of L-Class Diagrams Today, we + +5 +00:00:16,870 --> 00:00:22,990 +will start on the topic of Design Patterns Before + +6 +00:00:22,990 --> 00:00:24,890 +we start on the topic of Design Patterns, let's + +7 +00:00:24,890 --> 00:00:27,550 +talk about some basic concepts related to Good + +8 +00:00:27,550 --> 00:00:33,890 +Software DesignIn order to say that the design of + +9 +00:00:33,890 --> 00:00:34,910 +the software is good, there are some + +10 +00:00:34,910 --> 00:00:38,450 +characteristics or specialties, okay? So the good + +11 +00:00:38,450 --> 00:00:41,670 +design characteristics of the software include the + +12 +00:00:41,670 --> 00:00:44,370 +following First of all, one of the most important + +13 +00:00:44,370 --> 00:00:46,810 +points that should be present in the software to + +14 +00:00:46,810 --> 00:00:50,940 +say that the design is goodWe call it component + +15 +00:00:50,940 --> 00:00:53,620 +independence. What does independence mean? + +16 +00:00:54,000 --> 00:00:58,240 +Independence of components. My program is usually + +17 +00:00:58,240 --> 00:01:01,400 +composed of parts. What are the parts of the + +18 +00:01:01,400 --> 00:01:05,080 +program? Classes, we can consider them parts. The + +19 +00:01:05,080 --> 00:01:07,880 +group of classes together can represent a certain + +20 +00:01:07,880 --> 00:01:11,550 +part. For example, a program related to shopping + +21 +00:01:11,550 --> 00:01:14,770 +has a part related to user registration, which is + +22 +00:01:14,770 --> 00:01:17,130 +made up of a group of classes. Another part is + +23 +00:01:17,130 --> 00:01:21,730 +related to inventory and search. This is also a + +24 +00:01:21,730 --> 00:01:23,690 +class or a group of classes. This is a component + +25 +00:01:23,690 --> 00:01:27,970 +with each other. The goal or the job. And usually + +26 +00:01:27,970 --> 00:01:30,390 +in companies or institutions, they divide the + +27 +00:01:30,390 --> 00:01:32,550 +components into programmers. You hold this part, + +28 +00:01:32,870 --> 00:01:36,670 +you hold the other part, and so on. What I mean is + +29 +00:01:36,670 --> 00:01:39,090 +that in order for the software to be good, the + +30 +00:01:39,090 --> 00:01:41,410 +components must have as much independence as + +31 +00:01:41,410 --> 00:01:42,190 +possible between them. That is, they are not + +32 +00:01:42,190 --> 00:01:45,270 +dependent on each other in a big way. So if we + +33 +00:01:45,270 --> 00:01:48,790 +assume that this is a component,C1 and this is + +34 +00:01:48,790 --> 00:01:51,550 +another component C2 and this is working on the + +35 +00:01:51,550 --> 00:01:52,890 +programmer and this is working on the programmer + +36 +00:01:52,890 --> 00:01:56,670 +again. In order for the software design to be + +37 +00:01:56,670 --> 00:02:00,010 +good, these components should try to be + +38 +00:02:00,010 --> 00:02:02,670 +independent of each other in a big way. What are + +39 +00:02:02,670 --> 00:02:05,150 +they independent of each other? The word what are + +40 +00:02:05,150 --> 00:02:06,750 +they independent of each other, first of all, is + +41 +00:02:06,750 --> 00:02:10,810 +that there may be a class here that uses an object + +42 +00:02:10,810 --> 00:02:14,190 +from another class present in the second + +43 +00:02:14,190 --> 00:02:17,380 +component. Do you see this drawing? What does it + +44 +00:02:17,380 --> 00:02:19,560 +mean? It means that I have a class that uses an + +45 +00:02:19,560 --> 00:02:20,700 +object from another class. This is the + +46 +00:02:20,700 --> 00:02:23,040 +relationship between them, an association + +47 +00:02:23,040 --> 00:02:26,100 +relationship. Now my question is, if I take this + +48 +00:02:26,100 --> 00:02:27,260 +component and want to use it in another + +49 +00:02:27,260 --> 00:02:32,360 +application, can I take it by myself? No. If I + +50 +00:02:32,360 --> 00:02:33,780 +take it by myself, it will be taken to Europe. It + +51 +00:02:33,780 --> 00:02:35,440 +will say that I am using an object from another + +52 +00:02:35,440 --> 00:02:38,200 +class that does not exist. What is the result of + +53 +00:02:38,200 --> 00:02:42,140 +this?association, relationships between them, + +54 +00:02:42,480 --> 00:02:44,360 +okay? And the more the association increases, the + +55 +00:02:44,360 --> 00:02:47,020 +more the problem increases, okay? It means that I + +56 +00:02:47,020 --> 00:02:49,760 +take this component and use it somewhere else and + +57 +00:02:49,760 --> 00:02:53,560 +I have a lot of errors in it, okay? We try to + +58 +00:02:53,560 --> 00:02:55,880 +minimize these relationships as much as possible, + +59 +00:02:57,260 --> 00:03:05,240 +okay? Not just to reuse the component, no. Now, if + +60 +00:03:05,240 --> 00:03:09,150 +this class has changed I changed the constructor, + +61 +00:03:09,350 --> 00:03:11,250 +I changed the class name, I changed the parameters + +62 +00:03:11,250 --> 00:03:13,910 +that it takes, it means that there will be a + +63 +00:03:13,910 --> 00:03:16,450 +problem here and a problem there. Any change in a + +64 +00:03:16,450 --> 00:03:21,290 +part can affect other parts. This independence, + +65 +00:03:22,030 --> 00:03:24,030 +the connection between parts, the less it is, the + +66 +00:03:24,030 --> 00:03:27,870 +better it is. This is our goal from all design + +67 +00:03:27,870 --> 00:03:30,850 +patterns, to reduce the independence between + +68 +00:03:30,850 --> 00:03:34,850 +components. Because this component independence + +69 +00:03:36,140 --> 00:03:38,500 +translated into two main terms, one is high + +70 +00:03:38,500 --> 00:03:41,000 +cohesion and the other is low coupling, which we + +71 +00:03:41,000 --> 00:03:45,200 +will see in a while. I will explain them. Also, + +72 +00:03:45,300 --> 00:03:47,100 +one of the good features of the software design is + +73 +00:03:47,100 --> 00:03:49,260 +that it has exception identification and handling. + +74 +00:03:49,420 --> 00:03:52,340 +If someone makes a mistake, you have to fix it + +75 +00:03:52,340 --> 00:03:54,200 +quickly, you don't want the program to crash. + +76 +00:03:55,400 --> 00:04:00,440 +Also, one of the good features of the software is + +77 +00:04:00,440 --> 00:04:04,730 +fault tolerance and fault prevention.Fault + +78 +00:04:04,730 --> 00:04:07,810 +prevention is to avoid mistakes as much as + +79 +00:04:07,810 --> 00:04:08,230 +possible + +80 +00:04:13,680 --> 00:04:16,060 +We separated the two concepts that are related to + +81 +00:04:16,060 --> 00:04:18,120 +the independence between the components which are + +82 +00:04:18,120 --> 00:04:22,340 +coupling and cohesion. What is the word coupling? + +83 +00:04:22,400 --> 00:04:24,340 +It means couple. What is a couple? It is a couple. + +84 +00:04:25,760 --> 00:04:27,680 +Coupling means that there is a duality or a + +85 +00:04:27,680 --> 00:04:32,900 +connection between parts. Let's assume that these + +86 +00:04:32,900 --> 00:04:36,420 +are components for a certain software. Again, what + +87 +00:04:36,420 --> 00:04:38,280 +is a component? It can be a class or a group of + +88 +00:04:38,280 --> 00:04:40,200 +classes that all have a relationship with each + +89 +00:04:40,200 --> 00:04:43,430 +other.So, I call this component Here, these parts + +90 +00:04:43,430 --> 00:04:46,450 +don't have any dependencies between them There is + +91 +00:04:46,450 --> 00:04:49,550 +no dependency, there is no component, we use + +92 +00:04:49,550 --> 00:04:54,610 +another component Now, here, this is to say that I + +93 +00:04:54,610 --> 00:04:58,870 +have loosely coupled some dependencies There are + +94 +00:04:58,870 --> 00:05:00,490 +connections, but there are few of them, loosely + +95 +00:05:00,490 --> 00:05:05,930 +means light or few, okay? Now, here I say that I + +96 +00:05:05,930 --> 00:05:08,990 +have highly coupled dependenciesBig connections. + +97 +00:05:09,750 --> 00:05:12,290 +Of course, the more connections there are, the + +98 +00:05:12,290 --> 00:05:16,430 +bigger the problem becomes. For example, I have + +99 +00:05:16,430 --> 00:05:19,270 +this person dealing with three relationships, + +100 +00:05:19,290 --> 00:05:22,670 +association with whom? With this person. He can + +101 +00:05:22,670 --> 00:05:24,490 +use three classes or four. Which means that any + +102 +00:05:24,490 --> 00:05:27,330 +change here in any class will affect the other + +103 +00:05:27,330 --> 00:05:32,100 +parts in a big way.And this is what happens in our + +104 +00:05:32,100 --> 00:05:35,820 +programs, when we change a place, it hits another + +105 +00:05:35,820 --> 00:05:39,880 +place. This is what we try to avoid, to reduce + +106 +00:05:39,880 --> 00:05:44,580 +coupling. That's why they wrote here that the + +107 +00:05:44,580 --> 00:05:47,880 +design that is good has coupling. This is the + +108 +00:05:47,880 --> 00:05:50,820 +concept of coupling. Let's come to another concept + +109 +00:05:50,820 --> 00:05:56,120 +that is simpler, which is called cohesion. What is + +110 +00:05:56,120 --> 00:05:57,680 +the meaning of the word cohesion in English? + +111 +00:06:00,430 --> 00:06:07,450 +In short, the components of the application must + +112 +00:06:07,450 --> 00:06:10,010 +have a high cohesion for the component itself + +113 +00:06:11,990 --> 00:06:15,510 +Cohesion between components or low coupling + +114 +00:06:15,510 --> 00:06:17,890 +between components. Cohesion means that the + +115 +00:06:17,890 --> 00:06:21,430 +components are connected to each other. For + +116 +00:06:21,430 --> 00:06:24,090 +example, when you create a class that has + +117 +00:06:24,090 --> 00:06:26,810 +something to do with queries on the student table, + +118 +00:06:27,410 --> 00:06:29,070 +there is no database on the student table where + +119 +00:06:29,070 --> 00:06:32,390 +you can delete, update and so on.For example, the + +120 +00:06:32,390 --> 00:06:34,210 +methods that deal with the table head are all put + +121 +00:06:34,210 --> 00:06:37,590 +in one class. It doesn't make sense to put a + +122 +00:06:37,590 --> 00:06:41,850 +method that queries the student's table in a class + +123 +00:06:41,850 --> 00:06:44,270 +related to the user interface. Right or wrong? + +124 +00:06:44,970 --> 00:06:47,410 +Does it make sense or not? You mean to collect the + +125 +00:06:47,410 --> 00:06:50,280 +methods that are related to each other?in one + +126 +00:06:50,280 --> 00:06:53,320 +class or in a group of classes that have a + +127 +00:06:53,320 --> 00:06:57,260 +relationship with each other the component that + +128 +00:06:57,260 --> 00:06:58,500 +has a relationship with the database and the + +129 +00:06:58,500 --> 00:07:00,260 +connection with it, all its work is present in one + +130 +00:07:00,260 --> 00:07:02,500 +package the component that has a relationship with + +131 +00:07:02,500 --> 00:07:04,420 +the user interface, all its parts are present in a + +132 +00:07:04,420 --> 00:07:07,280 +package or package and sub packages this is the + +133 +00:07:07,280 --> 00:07:09,620 +meaning of the word cohesion, that the classes and + +134 +00:07:09,620 --> 00:07:11,400 +methods that have a relationship with each other + +135 +00:07:11,400 --> 00:07:14,260 +gather with each other because this is easy for + +136 +00:07:14,260 --> 00:07:19,180 +programmers For example, I want to see a method + +137 +00:07:19,180 --> 00:07:21,140 +related to the connection to the database I go to + +138 +00:07:21,140 --> 00:07:22,620 +the package that has to do with the database work + +139 +00:07:22,620 --> 00:07:26,900 +But if I put it with the user interface I go and + +140 +00:07:26,900 --> 00:07:30,240 +search randomly for this method This means that + +141 +00:07:30,240 --> 00:07:33,140 +the components themselves are interconnected But + +142 +00:07:33,140 --> 00:07:36,900 +the components together reduce the relationship + +143 +00:07:36,900 --> 00:07:39,580 +between them as much as possible You do low + +144 +00:07:39,580 --> 00:07:45,000 +couplingCohesion is the degree to which all + +145 +00:07:45,000 --> 00:07:47,480 +elements of a component are directed towards a + +146 +00:07:47,480 --> 00:07:48,160 +single task. + +147 +00:08:00,680 --> 00:08:04,740 +That is, the higher the cohesion, the better. + +148 +00:08:04,820 --> 00:08:06,880 +Again, cohesion is the connection between parts of + +149 +00:08:06,880 --> 00:08:10,640 +a single component. That is, things have to have a + +150 +00:08:10,640 --> 00:08:12,400 +relationship with each other that unites them + +151 +00:08:12,400 --> 00:08:14,900 +together. But the components between them should + +152 +00:08:14,900 --> 00:08:18,600 +have a low coupling. Cohesion is a relationship + +153 +00:08:18,600 --> 00:08:21,540 +that you design, that is, you write the code. It + +154 +00:08:21,540 --> 00:08:24,060 +is easy for you to apply cohesion. How? You put + +155 +00:08:24,060 --> 00:08:25,260 +things that have a relationship with each other in + +156 +00:08:25,260 --> 00:08:28,400 +a place. One. That's it. But what is the most + +157 +00:08:28,400 --> 00:08:31,280 +difficult application? Coupling. How to make the + +158 +00:08:31,280 --> 00:08:34,820 +coupling as low as possible. That's why most + +159 +00:08:34,820 --> 00:08:37,880 +design patterns focus on reducing coupling. + +160 +00:08:38,620 --> 00:08:40,920 +Cohesion depends on you and your partner. How you + +161 +00:08:40,920 --> 00:08:42,820 +put things that have a relationship with each + +162 +00:08:42,820 --> 00:08:45,240 +other together. Design Patterns. We will start + +163 +00:08:45,240 --> 00:08:47,940 +with the first design pattern today, but first + +164 +00:08:47,940 --> 00:08:49,960 +let's define what a design pattern is. I + +165 +00:08:49,960 --> 00:08:51,980 +introduced it before to say that design patterns + +166 +00:08:51,980 --> 00:08:54,800 +are software problems, solutions to common + +167 +00:08:54,800 --> 00:08:57,880 +software problems. People worked in big softwares + +168 +00:08:57,880 --> 00:09:01,800 +and faced problems and they came up with solutions + +169 +00:09:01,800 --> 00:09:05,600 +to these problems and presented them to us. So + +170 +00:09:05,600 --> 00:09:08,320 +when we present now, when I explain to you any + +171 +00:09:08,320 --> 00:09:12,080 +design pattern, we will propose a problem and then + +172 +00:09:12,080 --> 00:09:14,000 +propose a solution to this problem through the + +173 +00:09:14,000 --> 00:09:15,680 +application of the design pattern. So they say + +174 +00:09:15,680 --> 00:09:17,820 +that the design pattern is a description of the + +175 +00:09:17,820 --> 00:09:21,440 +problem and the essence of its solution. Problem + +176 +00:09:21,440 --> 00:09:25,470 +and solution.When we propose or explain the design + +177 +00:09:25,470 --> 00:09:28,690 +pattern, we propose it in an abstract way, which + +178 +00:09:28,690 --> 00:09:30,950 +has nothing to do with a specific programming + +179 +00:09:30,950 --> 00:09:33,830 +language. That's why we explain them through UML + +180 +00:09:33,830 --> 00:09:36,930 +class diagram, because the solution is abstract. + +181 +00:09:37,050 --> 00:09:38,930 +You can apply it in any programming language that + +182 +00:09:38,930 --> 00:09:45,010 +supports object-oriented. All design patterns are + +183 +00:09:45,010 --> 00:09:48,090 +based on inheritance, + +184 +00:09:49,050 --> 00:09:51,190 +polymorphism, and concept of object-oriented + +185 +00:09:51,190 --> 00:09:52,170 +programming. + +186 +00:09:55,030 --> 00:09:57,210 +For all the solutions that we will take, you will + +187 +00:09:57,210 --> 00:10:00,510 +use the science of object oriented programming. + +188 +00:10:00,570 --> 00:10:02,290 +But you will manage to solve a lot of software + +189 +00:10:02,290 --> 00:10:04,070 +problems. Okay? + +190 +00:10:07,130 --> 00:10:09,690 +Design patterns are generally divided into three + +191 +00:10:09,690 --> 00:10:15,090 +parts. There are design patterns that we call + +192 +00:10:15,090 --> 00:10:20,150 +creational design patterns. And there are + +193 +00:10:20,150 --> 00:10:25,160 +behavioral design patterns.design patterns and + +194 +00:10:25,160 --> 00:10:29,300 +there are structural design + +195 +00:10:29,300 --> 00:10:32,220 +patterns divided into three main categories there + +196 +00:10:32,220 --> 00:10:33,860 +are people who have divided it into more + +197 +00:10:33,860 --> 00:10:35,740 +categories but these are the main categories + +198 +00:10:35,740 --> 00:10:39,580 +creational from its name create means to create + +199 +00:10:39,580 --> 00:10:44,680 +this is about design patterns related to the + +200 +00:10:44,680 --> 00:10:46,640 +creation of objects behavioral + +201 +00:10:50,930 --> 00:10:52,650 +The behavior of the program. What does behavior + +202 +00:10:52,650 --> 00:10:53,670 +mean here? Gareel Adam is an example of the + +203 +00:10:53,670 --> 00:10:56,810 +program. No, it means that when the program works, + +204 +00:10:56,970 --> 00:11:00,050 +the flow of the program, how the methods work, it + +205 +00:11:00,050 --> 00:11:02,330 +is called the second method and implementation. So + +206 +00:11:02,330 --> 00:11:05,230 +this is about how to make the implementation of + +207 +00:11:05,230 --> 00:11:09,870 +the program better and smoother and adaptable in a + +208 +00:11:09,870 --> 00:11:13,010 +better way. Structure has to do with the structure + +209 +00:11:13,010 --> 00:11:14,850 +of the code and the connection of parts before + +210 +00:11:14,850 --> 00:11:18,610 +implementation.I apply this structural pattern + +211 +00:11:18,610 --> 00:11:22,090 +before I implement it. Because there is a problem + +212 +00:11:22,090 --> 00:11:25,610 +in implementing the program, I use behavioral + +213 +00:11:25,610 --> 00:11:28,370 +design patterns, and creation has to do with + +214 +00:11:28,370 --> 00:11:33,650 +creating objects. Each one of these has a number + +215 +00:11:33,650 --> 00:11:36,570 +of design patterns. We will start with the first + +216 +00:11:36,570 --> 00:11:40,610 +part of these, which is the creation design + +217 +00:11:40,610 --> 00:11:45,300 +pattern. Ok guys, what does creation design + +218 +00:11:45,300 --> 00:11:47,640 +patterns mean? Did you notice that in every + +219 +00:11:47,640 --> 00:11:49,200 +programming language, there is a way to create + +220 +00:11:49,200 --> 00:11:52,880 +objects? For example, in Java, what is the way to + +221 +00:11:52,880 --> 00:11:55,820 +create an object? For the new operator, right? So + +222 +00:11:55,820 --> 00:11:57,600 +when you create an object, you write new and you + +223 +00:11:57,600 --> 00:12:00,340 +put the name of the existing constructor, right? + +224 +00:12:00,440 --> 00:12:04,960 +You put the constructor and the brackets. Of + +225 +00:12:04,960 --> 00:12:06,300 +course, in other languages such as Kotlin and + +226 +00:12:06,300 --> 00:12:10,080 +Python, it is the same thing, but the word new is + +227 +00:12:10,080 --> 00:12:18,340 +removed.All OO + +228 +00:12:18,340 --> 00:12:24,660 +languages have an idiom for object creation + +229 +00:12:29,370 --> 00:12:31,990 +Now, actually we will see that using the new + +230 +00:12:31,990 --> 00:12:33,610 +operator that we are happy with, everything here + +231 +00:12:33,610 --> 00:12:37,530 +is a new object, okay? It can cause problems that + +232 +00:12:37,530 --> 00:12:40,310 +make your code difficult to edit. It increases the + +233 +00:12:40,310 --> 00:12:43,370 +coupling that you have in the code. This is the + +234 +00:12:43,370 --> 00:12:45,270 +use of the new operator. So that's why we want to + +235 +00:12:45,270 --> 00:12:48,210 +see alternative ways to create objects other than + +236 +00:12:48,210 --> 00:12:52,650 +the new operator. Or using the new operator but in + +237 +00:12:52,650 --> 00:12:58,400 +a more organized way. This tells me hereCreational + +238 +00:12:58,400 --> 00:13:02,160 +patterns allow us to write methods that create new + +239 +00:13:02,160 --> 00:13:05,920 +objects without explicitly using the new operator + +240 +00:13:15,910 --> 00:13:17,850 +In other words, in another way or we will call it + +241 +00:13:17,850 --> 00:13:20,870 +another place This allows us to write methods that + +242 +00:13:20,870 --> 00:13:24,110 +can instantiate different objects and that can be + +243 +00:13:24,110 --> 00:13:26,810 +extended to instantiate other newly objects + +244 +00:13:26,810 --> 00:13:30,550 +without modifying the method code This means that + +245 +00:13:30,550 --> 00:13:35,250 +we can create new objects and make classes from + +246 +00:13:35,250 --> 00:13:39,670 +new objects without modifying the code How? This + +247 +00:13:39,670 --> 00:13:42,790 +is still not clear to us, but it will become clear + +248 +00:13:42,790 --> 00:13:45,960 +through an example If you look at any reference + +249 +00:13:45,960 --> 00:13:48,820 +related to design patterns, you will find this + +250 +00:13:48,820 --> 00:13:53,300 +description that talks about the creation of + +251 +00:13:53,300 --> 00:13:55,780 +design patterns, and the first design pattern we + +252 +00:13:55,780 --> 00:14:01,140 +will deal with is called the factory pattern. What + +253 +00:14:01,140 --> 00:14:03,580 +is the factory pattern? We will do the following, + +254 +00:14:03,660 --> 00:14:06,580 +we will read the first thing on this slide, we may + +255 +00:14:06,580 --> 00:14:09,920 +not understand most of the slide,we will propose + +256 +00:14:09,920 --> 00:14:13,480 +an example that shows the problem and then we will + +257 +00:14:13,480 --> 00:14:16,060 +read the slide to see if after the example we will + +258 +00:14:16,060 --> 00:14:19,540 +understand what is being said or not what is the + +259 +00:14:19,540 --> 00:14:25,680 +word factory in English? factory in short it is a + +260 +00:14:25,680 --> 00:14:28,100 +class that combines the processes of building + +261 +00:14:28,100 --> 00:14:32,420 +objects like a factory that makes products for you + +262 +00:14:32,420 --> 00:14:37,240 +the factory is a class that I make and it has a + +263 +00:14:37,240 --> 00:14:41,210 +methodThis method is responsible for the processes + +264 +00:14:41,210 --> 00:14:45,350 +of creating objects in my application It is a + +265 +00:14:45,350 --> 00:14:52,070 +class whose sole job is to easily create and + +266 +00:14:52,070 --> 00:14:59,410 +return instances of other classes It is + +267 +00:14:59,410 --> 00:15:03,050 +a creation pattern that makes it easier to + +268 +00:15:03,050 --> 00:15:06,710 +construct complex objectsInstead of calling a + +269 +00:15:06,710 --> 00:15:13,510 +constructor, we use a static method in a factory + +270 +00:15:13,510 --> 00:15:17,310 +class to set up the object, saves lines and + +271 +00:15:17,310 --> 00:15:20,790 +complexity to quickly construct initialize objects + +272 +00:15:37,020 --> 00:15:38,980 +Before explaining the example, I want to make sure + +273 +00:15:38,980 --> 00:15:41,120 +that the examples that we explain are not complete + +274 +00:15:41,120 --> 00:15:46,320 +programs. We explain certain parts of the idea. + +275 +00:15:49,840 --> 00:15:53,100 +Now the first example I want to propose Imagine + +276 +00:15:53,100 --> 00:15:56,160 +that you are doing shopping website or application + +277 +00:15:56,160 --> 00:15:58,820 +and you have sure that when you come to shop for a + +278 +00:15:58,820 --> 00:16:01,540 +specific item, you want this item to be shipped to + +279 +00:16:01,540 --> 00:16:04,860 +it, okay? The ways of shipping that you support or + +280 +00:16:04,860 --> 00:16:07,660 +the shipping company that you contract with + +281 +00:16:07,660 --> 00:16:10,080 +supports it There is an air shipment, there is a + +282 +00:16:10,080 --> 00:16:13,440 +sea shipment, there is a land shipment, okay?Now, + +283 +00:16:13,520 --> 00:16:15,120 +when the user comes to buy the product, he has to + +284 +00:16:15,120 --> 00:16:16,900 +choose the shipping method he wants, and depending + +285 +00:16:16,900 --> 00:16:18,620 +on it, of course, each shipping method has a cost + +286 +00:16:18,620 --> 00:16:22,200 +and a certain amount. For example, sea shipping + +287 +00:16:22,200 --> 00:16:24,180 +does not care about weight, for example, it cares + +288 +00:16:24,180 --> 00:16:27,480 +about how much space it takes. the item that you + +289 +00:16:27,480 --> 00:16:31,220 +want, okay? For example, you want two square + +290 +00:16:31,220 --> 00:16:33,260 +meters, you need a certain amount of money for + +291 +00:16:33,260 --> 00:16:35,040 +each meter, the air freighter does not care about + +292 +00:16:35,040 --> 00:16:40,320 +weight and size, okay? And so on, every delivery + +293 +00:16:40,320 --> 00:16:43,000 +method has its own freighter, has its own way of + +294 +00:16:43,000 --> 00:16:45,500 +calculation, so if we assume for example that I + +295 +00:16:45,500 --> 00:16:51,200 +haveClass represents the item that I bought from + +296 +00:16:51,200 --> 00:16:55,300 +the product. For example, this item has a name, it + +297 +00:16:55,300 --> 00:17:00,720 +has int or float, weight which is the weight of + +298 +00:17:00,720 --> 00:17:06,940 +it, width and height. This is specific to any item + +299 +00:17:06,940 --> 00:17:10,820 +that I can buy.Now, the ways of shipping, I said I + +300 +00:17:10,820 --> 00:17:13,920 +have more than one way of shipping, each way of + +301 +00:17:13,920 --> 00:17:17,260 +shipping has a different account. Now, in order to + +302 +00:17:17,260 --> 00:17:19,900 +design correctly, since I have more than one way + +303 +00:17:19,900 --> 00:17:21,440 +of shipping, all of them in the end are considered + +304 +00:17:21,440 --> 00:17:24,000 +ways of shipping. So I have to do the first thing, + +305 +00:17:24,080 --> 00:17:25,800 +I bring the workshop, the classes that represent + +306 +00:17:25,800 --> 00:17:28,640 +each way, I have to make an interface to bring + +307 +00:17:28,640 --> 00:17:30,720 +them together, to make them benefit from the + +308 +00:17:30,720 --> 00:17:33,380 +characteristics of polymorphism, okay? So I go and + +309 +00:17:33,380 --> 00:17:36,000 +work. Always design like this, if you have + +310 +00:17:36,000 --> 00:17:39,990 +multiple things of the same type, make them what? + +311 +00:17:40,810 --> 00:17:43,130 +interface or abstract class this is the correct + +312 +00:17:43,130 --> 00:17:46,270 +design ok? so go and make for example interface + +313 +00:17:46,270 --> 00:17:52,490 +call it for example delivery method ok? this will + +314 +00:17:52,490 --> 00:17:55,050 +make it what? interface if you find that there are + +315 +00:17:55,050 --> 00:17:58,490 +common data between them you make it what? class + +316 +00:17:58,490 --> 00:18:01,910 +or abstract class ok? ok here also you have to + +317 +00:18:01,910 --> 00:18:07,710 +make an indicator float calc delivery cost what + +318 +00:18:07,710 --> 00:18:12,580 +does it mean? And I send him the item I mean, did + +319 +00:18:12,580 --> 00:18:16,020 +you get it? Because each delivery method has an + +320 +00:18:16,020 --> 00:18:18,360 +account I send him the item according to how much + +321 +00:18:18,360 --> 00:18:20,880 +it costs to charge Did you get the idea that I + +322 +00:18:20,880 --> 00:18:23,560 +made this interface? From the interface, I make + +323 +00:18:23,560 --> 00:18:26,580 +more than one class For example, I tell him Air + +324 +00:18:26,580 --> 00:18:30,660 +Delivery This is the air shipment And this one, of + +325 +00:18:30,660 --> 00:18:33,540 +course, I want to make implements to delivery + +326 +00:18:33,540 --> 00:18:37,420 +methodThe advantage here is that the first one to + +327 +00:18:37,420 --> 00:18:40,220 +implement the interface will notify me and tell me + +328 +00:18:40,220 --> 00:18:46,080 +to define a method for it to work. For example, + +329 +00:18:47,180 --> 00:18:50,000 +let's make a simple calculation. Let's say it + +330 +00:18:50,000 --> 00:18:53,860 +depends on seeing the weight, for example, and for + +331 +00:18:53,860 --> 00:18:59,940 +each kilogram it is worth 50 dollars. So the cost + +332 +00:18:59,940 --> 00:19:02,800 +will be the weight multiplied by 50 We have + +333 +00:19:02,800 --> 00:19:05,400 +completed the air delivery calculation For + +334 +00:19:05,400 --> 00:19:11,240 +example, we want to do land delivery Also, + +335 +00:19:11,500 --> 00:19:14,780 +I want to tell him what? Implements delivery + +336 +00:19:14,780 --> 00:19:16,120 +method + +337 +00:19:24,630 --> 00:19:27,230 +Because the wild charge, for example, depends on + +338 +00:19:27,230 --> 00:19:29,450 +calculating the weight in the first place and + +339 +00:19:29,450 --> 00:19:33,210 +putting on each kilo, for example, ten, and then + +340 +00:19:33,210 --> 00:19:37,130 +you want to see the size, which is item dot width + +341 +00:19:37,130 --> 00:19:43,570 +times item dot height, okay? The whole size + +342 +00:19:43,570 --> 00:19:47,710 +multiplied by, for example, each square meter is + +343 +00:19:47,710 --> 00:19:50,630 +also counted as ten dollars.Anything, because his + +344 +00:19:50,630 --> 00:19:52,750 +account is based on the item, weight and + +345 +00:19:52,750 --> 00:19:55,610 +dimensions, which gives him a certain account. The + +346 +00:19:55,610 --> 00:19:59,950 +third way, the last one, sea shipping, okay? For + +347 +00:19:59,950 --> 00:20:04,030 +example, maritime delivery + +348 +00:20:04,030 --> 00:20:09,170 +Implements + +349 +00:20:09,170 --> 00:20:11,250 +delivery method + +350 +00:20:16,210 --> 00:20:18,930 +Okay, it's the same amount, but what's the amount? + +351 +00:20:19,870 --> 00:20:24,370 +More, a little bit for example Okay, this is what + +352 +00:20:24,370 --> 00:20:27,390 +I did, I asked for ways to ship What I did until + +353 +00:20:27,390 --> 00:20:30,250 +now, I did the following I went and made an + +354 +00:20:30,250 --> 00:20:37,090 +interface called delivery method Okay, and it has + +355 +00:20:37,090 --> 00:20:42,930 +a method called calc delivery cost Right or wrong? + +356 +00:20:43,630 --> 00:20:44,870 +Then I made from it + +357 +00:20:50,080 --> 00:20:57,440 +three subclasses one is called air delivery one is + +358 +00:20:57,440 --> 00:21:05,500 +land delivery one is maritime delivery this + +359 +00:21:05,500 --> 00:21:12,200 +is a summary of what we have done so far now I + +360 +00:21:12,200 --> 00:21:15,650 +have done objects or classes that represent + +361 +00:21:15,650 --> 00:21:17,990 +different ways of charging. The existence of + +362 +00:21:17,990 --> 00:21:21,270 +interfaces is important even for other + +363 +00:21:21,270 --> 00:21:23,470 +programmers. For example, a programmer wants to + +364 +00:21:23,470 --> 00:21:26,290 +add a new way of charging. He doesn't have to + +365 +00:21:26,290 --> 00:21:29,690 +implement the interface. He will tell him that + +366 +00:21:29,690 --> 00:21:32,470 +there is a value that must be implemented. So, + +367 +00:21:32,550 --> 00:21:35,410 +always make a design for when you have types of + +368 +00:21:35,410 --> 00:21:38,010 +the same thing made by an interface or superclass. + +369 +00:21:38,130 --> 00:21:40,570 +Because it will show us another feature of this + +370 +00:21:40,570 --> 00:21:42,430 +topic. Because I came and did + +371 +00:21:45,400 --> 00:21:54,560 +like the main method to use I + +372 +00:21:54,560 --> 00:21:58,540 +got the idea that the client will choose the way + +373 +00:21:58,540 --> 00:22:02,480 +to charge and based on that he will calculate the + +374 +00:22:02,480 --> 00:22:04,080 +cost for him so for example this is the main + +375 +00:22:04,080 --> 00:22:08,760 +method if I have an item this is the item that + +376 +00:22:08,760 --> 00:22:13,010 +chooses the signalthe client and we give him some + +377 +00:22:13,010 --> 00:22:17,370 +attributes for example item weight for example 10 + +378 +00:22:17,370 --> 00:22:23,970 +kilogram item width for example one and a half + +379 +00:22:23,970 --> 00:22:32,670 +meter item height for example one meter how? + +380 +00:22:33,450 --> 00:22:38,220 +ok leave two This gives us the properties of the + +381 +00:22:38,220 --> 00:22:41,960 +item. Then we ask the user to specify the target + +382 +00:22:41,960 --> 00:22:45,820 +by scrolling. For example, we ask the user to + +383 +00:22:45,820 --> 00:22:49,200 +specify the + +384 +00:22:49,200 --> 00:22:49,220 +to specify the target by scrolling. For example, + +385 +00:22:49,220 --> 00:22:50,300 +we ask the user to specify the target by + +386 +00:22:50,300 --> 00:22:51,920 +scrolling. For example, we ask the user to specify + +387 +00:22:51,920 --> 00:22:57,500 +the target by scrolling. For example, + +388 +00:22:57,500 --> 00:22:57,740 +we ask the user to specify the target by + +389 +00:22:57,740 --> 00:22:58,860 +scrolling. + +390 +00:23:04,040 --> 00:23:06,040 +Now, choose the way of charging, for example, one + +391 +00:23:06,040 --> 00:23:09,660 +or two or three, okay? Then I say, for example, F. + +392 +00:23:09,940 --> 00:23:12,100 +Now, what do I want to do? It depends on what you + +393 +00:23:12,100 --> 00:23:15,320 +choose. If I choose one, for example, it needs air + +394 +00:23:15,320 --> 00:23:19,200 +charging, okay? So I go and say Air Delivery, + +395 +00:23:19,400 --> 00:23:23,720 +switch or F, no problem. Air Delivery, okay? This + +396 +00:23:23,720 --> 00:23:27,080 +D equals New Air Delivery. + +397 +00:23:33,760 --> 00:23:38,160 +then I say d.calculate delivery cost and I give + +398 +00:23:38,160 --> 00:23:47,500 +him the item and I return float cost and I press + +399 +00:23:47,500 --> 00:23:50,200 +system + +400 +00:23:55,090 --> 00:24:00,290 +delivery cost will be equal to this amount ok + +401 +00:24:00,290 --> 00:24:03,030 +guys? and the same way, this one I want to reduce + +402 +00:24:03,030 --> 00:24:07,870 +because I don't have only one option, I also have + +403 +00:24:07,870 --> 00:24:11,990 +two options so now what is this one here? I have + +404 +00:24:11,990 --> 00:24:17,450 +else if and here I put two if it was two, we + +405 +00:24:17,450 --> 00:24:19,730 +change this one, this is for example land + +406 +00:24:25,020 --> 00:24:42,260 +If now else if 1,2,3 this is married time Is there + +407 +00:24:42,260 --> 00:24:46,200 +still a problem? No. Where is the problem? Pay + +408 +00:24:46,200 --> 00:24:52,050 +attention with me Did you notice that based on + +409 +00:24:52,050 --> 00:24:59,690 +what I did, I did a class called test? Yes or no? + +410 +00:25:00,010 --> 00:25:03,150 +This test, is there an association between it and + +411 +00:25:03,150 --> 00:25:03,470 +whom? + +412 +00:25:06,230 --> 00:25:10,130 +Between these + +413 +00:25:10,130 --> 00:25:14,590 +three, yes or no? Ok, now if I want to do a new + +414 +00:25:14,590 --> 00:25:19,580 +delivery method Now we have drones, we can make a + +415 +00:25:19,580 --> 00:25:24,340 +drone delivery, for example, okay? Okay, what do I + +416 +00:25:24,340 --> 00:25:27,120 +have to do to change my program? I have to create + +417 +00:25:27,120 --> 00:25:30,100 +a new class, implement it to the interface and + +418 +00:25:30,100 --> 00:25:32,300 +specify the calculation method in the drone, for + +419 +00:25:32,300 --> 00:25:35,720 +example, okay? And I also have to go to the main + +420 +00:25:35,720 --> 00:25:42,060 +method here and also create write a new F and if + +421 +00:25:42,060 --> 00:25:45,800 +the choice is 4 go and create an object from the + +422 +00:25:45,800 --> 00:25:51,420 +new class drone delivery for example like this + +423 +00:25:51,420 --> 00:25:58,700 +right? now look with me this code has 4 + +424 +00:25:58,700 --> 00:26:02,020 +relationships with each other in these classes and + +425 +00:26:02,020 --> 00:26:04,080 +also if I need everything I need in a new class + +426 +00:26:04,990 --> 00:26:10,190 +Okay? Relationships increase. By the way, it is + +427 +00:26:10,190 --> 00:26:12,710 +not only this class that uses this method. I can + +428 +00:26:12,710 --> 00:26:14,470 +also create delivery methods from other places. + +429 +00:26:15,530 --> 00:26:17,490 +This class also needs to create a delivery method. + +430 +00:26:17,610 --> 00:26:23,390 +There may be a relationship with this shape in + +431 +00:26:23,390 --> 00:26:25,770 +another class. The purpose of this creation can be + +432 +00:26:25,770 --> 00:26:30,170 +repeated in more than one place. Now, this drawing + +433 +00:26:31,770 --> 00:26:37,910 +This is a big problem. Why? It means that if there + +434 +00:26:37,910 --> 00:26:41,190 +is a change, first of all, in any class of these, + +435 +00:26:41,230 --> 00:26:44,090 +the constructor changes and takes a parameter, it + +436 +00:26:44,090 --> 00:26:47,630 +always affects whom? It affects these. Right or + +437 +00:26:47,630 --> 00:26:50,270 +wrong? This is a big coupling between them. Any + +438 +00:26:50,270 --> 00:26:53,090 +change here will affect here. Any addition to a + +439 +00:26:53,090 --> 00:26:59,010 +new class will also affect these. So what is this? + +440 +00:27:00,300 --> 00:27:03,500 +this is a high coupling and a problem what is the + +441 +00:27:03,500 --> 00:27:06,500 +solution to this problem? I say that we reduce the + +442 +00:27:06,500 --> 00:27:10,440 +gate of coupling this is the main reason why class + +443 +00:27:10,440 --> 00:27:12,440 +diagram is useful it shows you the existing + +444 +00:27:12,440 --> 00:27:14,780 +relationships and these relationships have bad + +445 +00:27:14,780 --> 00:27:18,640 +design when you reach this stage how can I improve + +446 +00:27:18,640 --> 00:27:21,560 +the design more? I say that in short if you reach + +447 +00:27:21,560 --> 00:27:25,280 +this stage then you have a problem here + +448 +00:27:30,490 --> 00:27:33,110 +The solution is to use the Factory Pattern. The + +449 +00:27:33,110 --> 00:27:34,230 +Factory Pattern is very simple. + +450 +00:27:37,850 --> 00:27:40,890 +The problem was that the construction used to take + +451 +00:27:40,890 --> 00:27:44,150 +place here. Here in the main, I say new land + +452 +00:27:44,150 --> 00:27:46,550 +delivery, new maritime delivery. Right or wrong? + +453 +00:27:47,110 --> 00:27:49,210 +As long as I use or write the name of the class + +454 +00:27:49,210 --> 00:27:50,710 +again, it means this is an association + +455 +00:27:50,710 --> 00:27:53,610 +relationship. Okay? Now I say no, that's it, we + +456 +00:27:53,610 --> 00:27:57,310 +stop using new here. Okay? What is the + +457 +00:27:57,310 --> 00:28:00,010 +alternative? How do we create objects? I say, make + +458 +00:28:00,010 --> 00:28:02,810 +another class, call it for example, delivery + +459 +00:28:02,810 --> 00:28:04,430 +factory. + +460 +00:28:08,020 --> 00:28:10,840 +All right? And this F in the statement, all the + +461 +00:28:10,840 --> 00:28:13,620 +F's and L's, we take it from here and put it + +462 +00:28:13,620 --> 00:28:16,980 +where? In this class. How? We will do it step by + +463 +00:28:16,980 --> 00:28:19,600 +step and see how it will make a difference in the + +464 +00:28:19,600 --> 00:28:23,740 +design. That is, now I will go to this class, to + +465 +00:28:23,740 --> 00:28:28,620 +the package, and tell it to make a new class. This + +466 +00:28:28,620 --> 00:28:30,380 +is a Java class, I want to call it Delivery + +467 +00:28:30,380 --> 00:28:31,660 +Factory. + +468 +00:28:37,490 --> 00:28:40,330 +Okay, and then inside the delivery factory, I want + +469 +00:28:40,330 --> 00:28:45,030 +to create a public method static Why static? + +470 +00:28:45,450 --> 00:28:49,910 +Because I want to use this method in more than one + +471 +00:28:49,910 --> 00:28:51,470 +place, not all the time I want to use it, I want + +472 +00:28:51,470 --> 00:28:54,690 +to create an object, okay? Because this method is + +473 +00:28:54,690 --> 00:28:59,350 +called createDeliveryMethod Okay, + +474 +00:28:59,450 --> 00:29:06,190 +and it will take from me choice So it will takeI + +475 +00:29:06,190 --> 00:29:08,910 +will send it to it, I want one or two or three or + +476 +00:29:08,910 --> 00:29:12,050 +four, okay? It creates the object and what will it + +477 +00:29:12,050 --> 00:29:14,810 +return in the end? Who will tell me what it will + +478 +00:29:14,810 --> 00:29:18,590 +return? It will return a delivery method. + +479 +00:29:20,390 --> 00:29:22,790 +Who is this delivery method? The type of + +480 +00:29:22,790 --> 00:29:25,050 +interface. Well, if I create a land delivery, can + +481 +00:29:25,050 --> 00:29:28,730 +it return as a delivery method? Yes, it is + +482 +00:29:28,730 --> 00:29:31,210 +possible. If we say that land delivery, air + +483 +00:29:31,210 --> 00:29:34,210 +delivery and maritime delivery are all from the + +484 +00:29:34,210 --> 00:29:36,450 +interface type, then I can return them as a + +485 +00:29:36,450 --> 00:29:39,050 +delivery method from the interface type, until I + +486 +00:29:39,050 --> 00:29:40,590 +see what I have to do next. This method is still + +487 +00:29:40,590 --> 00:29:43,190 +empty, right or not? I have to go to the test + +488 +00:29:43,190 --> 00:29:47,790 +here, and this whole code is perfect. It has the F + +489 +00:29:47,790 --> 00:29:50,810 +statement, I have to remove it from here and put + +490 +00:29:50,810 --> 00:29:55,000 +it inthe factory, but of course it does not + +491 +00:29:55,000 --> 00:29:56,600 +include printing, printing is the responsibility + +492 +00:29:56,600 --> 00:29:59,180 +of the main, the main, that is, see what I want to + +493 +00:29:59,180 --> 00:30:02,760 +do, remove this like that, that's it, the one who + +494 +00:30:02,760 --> 00:30:04,900 +prints, the main takes it, it is just a job to + +495 +00:30:04,900 --> 00:30:08,760 +create, okay? We still have to adjust some things + +496 +00:30:12,330 --> 00:30:15,030 +Now, here I create Air Delivery, Land Delivery, + +497 +00:30:15,330 --> 00:30:17,110 +Maritime Delivery, and in the end, I want to + +498 +00:30:17,110 --> 00:30:19,750 +return D. Of course, if I tell him to return D, he + +499 +00:30:19,750 --> 00:30:22,030 +will give me an error. Why? Because D is + +500 +00:30:22,030 --> 00:30:24,210 +identified inside here. So, what do I want to do + +501 +00:30:24,210 --> 00:30:26,110 +here? First, I want to tell him that the delivery + +502 +00:30:26,110 --> 00:30:32,810 +method D is equal to null. This is a reference of + +503 +00:30:32,810 --> 00:30:34,310 +the type of delivery method. One may say that it + +504 +00:30:34,310 --> 00:30:35,390 +is impossible to create an object from the + +505 +00:30:35,390 --> 00:30:36,790 +interface. I did not create an object from the + +506 +00:30:36,790 --> 00:30:40,310 +interface. I made a reference from the interface + +507 +00:30:40,310 --> 00:30:47,310 +If the choice is 1, go to D and create a delivery + +508 +00:30:47,310 --> 00:30:50,590 +If the delivery is 2, + +509 +00:30:51,770 --> 00:30:55,290 +go and create a LAN delivery If it is 3, go and + +510 +00:30:55,290 --> 00:30:57,830 +create a maritime delivery Notice that the + +511 +00:30:57,830 --> 00:31:00,950 +reference is from the interface type But actually + +512 +00:31:00,950 --> 00:31:03,410 +when it comes to create Of course I can not create + +513 +00:31:03,410 --> 00:31:05,250 +an object from the interface I will create one of + +514 +00:31:05,250 --> 00:31:07,430 +these three objects And in the end I return to + +515 +00:31:07,430 --> 00:31:11,900 +whom? Yes, D. It will return from which type? From + +516 +00:31:11,900 --> 00:31:14,380 +the interface type. Of course, it is preferable + +517 +00:31:14,380 --> 00:31:19,140 +that you also do something like this, else throw + +518 +00:31:19,140 --> 00:31:29,480 +new illegal argument exception invalid choice. + +519 +00:31:32,080 --> 00:31:35,800 +Okay, where did this idea come from? Look with me, + +520 +00:31:36,680 --> 00:31:39,520 +I brought this work inside the factory, which + +521 +00:31:39,520 --> 00:31:42,600 +means that the factory is where the production + +522 +00:31:42,600 --> 00:31:46,560 +takes place. Okay? Let's translate this word to + +523 +00:31:46,560 --> 00:31:50,980 +Arabic. Now, the delivery factory is where the + +524 +00:31:50,980 --> 00:31:53,610 +production takes place.What are relationships? + +525 +00:31:54,030 --> 00:31:56,770 +There is an association between them, right? As + +526 +00:31:56,770 --> 00:32:01,810 +long as I name an object from another class, there + +527 +00:32:01,810 --> 00:32:05,990 +is an association between them in this way, okay? + +528 +00:32:06,590 --> 00:32:08,710 +Each one of them originates and returns in the end + +529 +00:32:08,710 --> 00:32:12,110 +from the interface type. So there is also a + +530 +00:32:12,110 --> 00:32:14,170 +relationship with whom? With the interface type, + +531 +00:32:14,310 --> 00:32:16,670 +between this factor. Okay, until now, we have not + +532 +00:32:16,670 --> 00:32:20,440 +used this.I'm supposed to use this where? In the + +533 +00:32:20,440 --> 00:32:22,420 +test and in any other class that wants to create + +534 +00:32:22,420 --> 00:32:26,480 +an object from the delivery method Okay, now go to + +535 +00:32:26,480 --> 00:32:35,020 +the test Because we don't want to do like this, we + +536 +00:32:35,020 --> 00:32:38,480 +want to remove all of this Okay, the user now + +537 +00:32:38,480 --> 00:32:41,860 +enters his choice Because now I'm not going to + +538 +00:32:41,860 --> 00:32:44,080 +create, it's not my job to create, my job is to go + +539 +00:32:44,080 --> 00:32:48,930 +to the delivery factory and I say create delivery + +540 +00:32:48,930 --> 00:32:51,910 +method and I send it to choice. What will it + +541 +00:32:51,910 --> 00:32:55,650 +return? Delivery method. + +542 +00:32:57,490 --> 00:33:00,350 +Notice what returns is the delivery method. What + +543 +00:33:00,350 --> 00:33:04,810 +type is this? Type of interface. Actually, it will + +544 +00:33:04,810 --> 00:33:08,200 +be one of The three, either land or area, + +545 +00:33:08,600 --> 00:33:12,400 +maritime. But now I'm letting the test know what + +546 +00:33:12,400 --> 00:33:14,180 +type it is. Does it have to specify what type it + +547 +00:33:14,180 --> 00:33:17,980 +is? No, you can tell it to calculate the cost, go + +548 +00:33:17,980 --> 00:33:22,600 +to D, and tell it to calculate, this is not a + +549 +00:33:22,600 --> 00:33:26,120 +method in the interface, okay? And you send it the + +550 +00:33:26,120 --> 00:33:31,680 +item, and this returns the cost float. And I print + +551 +00:33:31,680 --> 00:33:32,240 +on the user, + +552 +00:33:37,080 --> 00:33:44,640 +I say for example delivery cost equals this amount + +553 +00:33:44,640 --> 00:33:48,180 +because let's translate this word here which means + +554 +00:33:48,180 --> 00:33:54,040 +that in the test I ask the user to choose there is + +555 +00:33:54,040 --> 00:33:58,620 +an association between the test and the factory + +556 +00:33:58,620 --> 00:33:59,680 +which means that I actually + +557 +00:34:02,680 --> 00:34:05,740 +I use an object from it and it returns it to me + +558 +00:34:05,740 --> 00:34:09,640 +and there is a relation between them Why? Because + +559 +00:34:09,640 --> 00:34:11,300 +I'm not the target in the end and it returns the + +560 +00:34:11,300 --> 00:34:15,320 +delivery method to me Ok, this is the new design + +561 +00:34:15,320 --> 00:34:19,080 +If someone says to me, what did you do? Q is the F + +562 +00:34:19,080 --> 00:34:22,120 +statement, instead of being here, we took it and + +563 +00:34:22,120 --> 00:34:24,940 +moved it where? We moved it here, it didn't make + +564 +00:34:24,940 --> 00:34:26,520 +much difference No, it made a lot of difference, + +565 +00:34:26,600 --> 00:34:31,160 +look with me Now, if I want to add a new class + +566 +00:34:34,050 --> 00:34:36,550 +I want to add a new type of delivery. Where do I + +567 +00:34:36,550 --> 00:34:40,810 +have to edit? I just have to go and edit where? In + +568 +00:34:40,810 --> 00:34:43,890 +the factory. Here I have to go and create a new + +569 +00:34:43,890 --> 00:34:47,830 +class. And I have to come here and create a new + +570 +00:34:47,830 --> 00:34:51,950 +class. Okay? And create it. Okay? This one now and + +571 +00:34:51,950 --> 00:34:54,550 +this one and this one will create a delivery. Will + +572 +00:34:54,550 --> 00:34:58,690 +they be affected? Okay? No. They just see who? The + +573 +00:34:58,690 --> 00:35:00,770 +delivery factory. They don't see who these + +574 +00:35:00,770 --> 00:35:03,710 +patients are. Before, there was a direct + +575 +00:35:03,710 --> 00:35:05,590 +relationship between these patients and these + +576 +00:35:05,590 --> 00:35:07,950 +classes. Now the idea is that I didn't let him see + +577 +00:35:07,950 --> 00:35:12,410 +these patients. I let him see the interface. These + +578 +00:35:12,410 --> 00:35:14,970 +patients are all isolated from me. I only send + +579 +00:35:14,970 --> 00:35:16,790 +them to the factory. I tell him it's a factory. I + +580 +00:35:16,790 --> 00:35:19,330 +send him one, two, three, four. He builds it and + +581 +00:35:19,330 --> 00:35:22,750 +returns it to me. the interface. I don't care to + +582 +00:35:22,750 --> 00:35:25,510 +know. I care to implement and calculate the + +583 +00:35:25,510 --> 00:35:29,270 +delivery cost. So now I added a new class, I + +584 +00:35:29,270 --> 00:35:31,570 +change it in the factory. I changed in the name of + +585 +00:35:31,570 --> 00:35:33,870 +one of the classes or the constructor parameters + +586 +00:35:33,870 --> 00:35:37,210 +that are present, I change only in the factory. + +587 +00:35:37,430 --> 00:35:41,370 +These themselves will not be affected at all. So + +588 +00:35:41,370 --> 00:35:43,070 +the first advantage is that by changing, I reduced + +589 +00:35:43,070 --> 00:35:47,150 +it to one place. Instead of changing something, I + +590 +00:35:47,150 --> 00:35:50,820 +had to change what?I used this tool everywhere. + +591 +00:35:51,140 --> 00:35:52,440 +Now, I have gathered all the construction + +592 +00:35:52,440 --> 00:35:56,640 +documents in the factory. So, by adding a new + +593 +00:35:56,640 --> 00:35:58,400 +class, by modifying it, only the change will be + +594 +00:35:58,400 --> 00:36:01,540 +present in the factory. And let's not forget the + +595 +00:36:01,540 --> 00:36:03,880 +main feature, that in the end, whatever he builds, + +596 +00:36:04,660 --> 00:36:07,400 +I return it to him from the interface type. So + +597 +00:36:07,400 --> 00:36:09,460 +now, the relationship between this and that type, + +598 +00:36:10,090 --> 00:36:12,790 +the interface, adding new types and that's it, + +599 +00:36:12,890 --> 00:36:16,690 +it's just dealing with a type of interface. It's + +600 +00:36:16,690 --> 00:36:19,190 +clear, guys, what is a factory? And also, we're + +601 +00:36:19,190 --> 00:36:21,030 +going to develop the factory more in the next + +602 +00:36:21,030 --> 00:36:25,490 +lecture, that even when I want to add a new class, + +603 +00:36:26,690 --> 00:36:28,390 +it doesn't mean that I have to modify the factory, + +604 +00:36:28,630 --> 00:36:31,850 +we're going to stop modifying it, okay? So, when + +605 +00:36:31,850 --> 00:36:34,730 +we're done with the class and we throw it in the + +606 +00:36:34,730 --> 00:36:38,740 +program,Okay? So that he can identify it and + +607 +00:36:38,740 --> 00:36:41,540 +create objects without modifying any line of code + +608 +00:36:41,540 --> 00:36:47,460 +in the factory. Okay guys? Let's take another + +609 +00:36:47,460 --> 00:36:51,700 +example to explain the factory better. + +610 +00:36:54,020 --> 00:36:58,160 +Let's say that you are running a messenger program + +611 +00:36:58,160 --> 00:37:01,240 +and you want the messages that you send and + +612 +00:37:01,240 --> 00:37:03,820 +receive or store in the database to be encrypted. + +613 +00:37:04,920 --> 00:37:08,200 +Okay? So if you have encryption algorithms that + +614 +00:37:08,200 --> 00:37:10,300 +you want to use, you have more than one option for + +615 +00:37:10,300 --> 00:37:13,760 +encryption algorithms. But in the end, what is the + +616 +00:37:13,760 --> 00:37:15,060 +role of the algorithm? Do you want to give him the + +617 +00:37:15,060 --> 00:37:19,040 +text and he encrypts it? And is it expected that + +618 +00:37:19,040 --> 00:37:21,380 +encryption is needed most of the time? That is, + +619 +00:37:21,460 --> 00:37:24,080 +any message written by the user before it is sent + +620 +00:37:24,080 --> 00:37:28,960 +must be encrypted. Any message you receive before + +621 +00:37:28,960 --> 00:37:32,420 +it is stored in the database or history must also + +622 +00:37:32,420 --> 00:37:38,090 +be encrypted. So now you have more than one + +623 +00:37:38,090 --> 00:37:40,970 +option, more than one encryption algorithm Since I + +624 +00:37:40,970 --> 00:37:42,610 +have more than one encryption algorithm, what + +625 +00:37:42,610 --> 00:37:48,410 +should we do in this case? Create a superclass or + +626 +00:37:48,410 --> 00:37:51,490 +interface to collect them So what should we do? + +627 +00:37:51,710 --> 00:37:53,770 +Since I want to create more than one encryption + +628 +00:37:53,770 --> 00:37:56,090 +algorithm, I created an interface called + +629 +00:37:56,090 --> 00:38:01,030 +encryption algorithm + +630 +00:38:03,270 --> 00:38:09,970 +and this one I will use public string encrypt and + +631 +00:38:09,970 --> 00:38:13,950 +give it a string text what does it mean? I give it + +632 +00:38:13,950 --> 00:38:17,150 +a text and it encrypts it but I will have more + +633 +00:38:17,150 --> 00:38:19,190 +than one way of encrypting each one encrypts in a + +634 +00:38:19,190 --> 00:38:23,750 +different way so now based on this I made a new + +635 +00:38:23,750 --> 00:38:28,550 +class called public key encryption + +636 +00:38:31,570 --> 00:38:35,050 +Okay? And this one I'm going to make implements to + +637 +00:38:35,050 --> 00:38:38,770 +encryption algorithm. + +638 +00:38:40,310 --> 00:38:41,910 +And of course it's going to ask me to make + +639 +00:38:41,910 --> 00:38:45,630 +implement to interface. It's not a matter of + +640 +00:38:45,630 --> 00:38:48,010 +public key encryption, but this gate I'm going to + +641 +00:38:48,010 --> 00:38:51,870 +print, I'm going to return a message. Okay? + +642 +00:38:52,850 --> 00:38:57,970 +Encrypting using public key. + +643 +00:38:59,740 --> 00:39:02,280 +okay as if there is an implementation of the + +644 +00:39:02,280 --> 00:39:06,120 +algorithm I want to make another algorithm I want + +645 +00:39:06,120 --> 00:39:13,520 +to call it hash encryption encryption + +646 +00:39:13,520 --> 00:39:15,980 +and also this implements + +647 +00:39:28,940 --> 00:39:33,180 +Ok, return encrypting + +648 +00:39:33,180 --> 00:39:41,780 +using hash function Ok + +649 +00:39:41,780 --> 00:39:44,940 +guys, now based on our agreement it is expected + +650 +00:39:44,940 --> 00:39:48,160 +that I use encryption in more than one place So + +651 +00:39:48,160 --> 00:39:53,020 +what we want to do is to make the client directly + +652 +00:39:53,020 --> 00:39:56,280 +this is for example test2 which is the main method + +653 +00:40:07,070 --> 00:40:09,790 +you can create any encryption algorithm, for + +654 +00:40:09,790 --> 00:40:14,470 +example, you can say public key public + +655 +00:40:14,470 --> 00:40:22,450 +key encryption i.e. one equals new + +656 +00:40:29,800 --> 00:40:33,000 +and then we say E1.encrypt and you give it the + +657 +00:40:33,000 --> 00:40:35,860 +text that it wants to encrypt before it sends it + +658 +00:40:35,860 --> 00:40:37,540 +and it returns the encrypted text and then you + +659 +00:40:37,540 --> 00:40:41,620 +send it. Now, I have a group of algorithms that + +660 +00:40:41,620 --> 00:40:44,240 +separate from the same interface, okay? We don't + +661 +00:40:44,240 --> 00:40:47,180 +have to use the new public key encryption. So, you + +662 +00:40:47,180 --> 00:40:51,510 +linked the client to whom?The encryption algorithm + +663 +00:40:51,510 --> 00:40:53,490 +is prohibited directly. If you change the + +664 +00:40:53,490 --> 00:40:57,090 +constructor and add parameters, you need to use a + +665 +00:40:57,090 --> 00:40:59,870 +new encryption algorithm. You need to change the + +666 +00:40:59,870 --> 00:41:04,410 +code here. If you change the constructor and add + +667 +00:41:04,410 --> 00:41:07,710 +parameters, you need to use a new encryption + +668 +00:41:07,710 --> 00:41:08,330 +parameters, you need to use a new encryption + +669 +00:41:08,330 --> 00:41:10,870 +algorithm. If you change the constructor and add + +670 +00:41:10,870 --> 00:41:12,970 +algorithm. If you change the constructor and add + +671 +00:41:12,970 --> 00:41:12,990 +parameters, you need to use a new encryption + +672 +00:41:12,990 --> 00:41:15,430 +algorithm. If you change the constructor and add + +673 +00:41:15,430 --> 00:41:17,430 +parameters, you need to use a new encryption + +674 +00:41:17,430 --> 00:41:17,450 +parameters, you need to use a new encryption + +675 +00:41:17,450 --> 00:41:19,810 +parameters, you needThese people don't know + +676 +00:41:19,810 --> 00:41:22,350 +anything about what's going on here. They only + +677 +00:41:22,350 --> 00:41:25,010 +deal with who? With the factory. And here we will + +678 +00:41:25,010 --> 00:41:28,470 +make the same idea to go and tell him to make a + +679 +00:41:28,470 --> 00:41:32,030 +factory class that creates everything and returns + +680 +00:41:32,030 --> 00:41:35,830 +it to him from the interface type. So that the + +681 +00:41:35,830 --> 00:41:37,490 +client doesn't know anything about the existing + +682 +00:41:37,490 --> 00:41:40,870 +encryption algorithms. So that if you add a new + +683 +00:41:40,870 --> 00:41:42,810 +encryption algorithm, in the end he will see it + +684 +00:41:42,810 --> 00:41:47,500 +from the type the interface, okay? Okay, this we + +685 +00:41:47,500 --> 00:41:53,480 +will call encryption factory, okay? And this is + +686 +00:41:53,480 --> 00:41:56,460 +the same idea, we make public static, what do we + +687 +00:41:56,460 --> 00:41:59,420 +want to return? The type of interface, which is + +688 +00:41:59,420 --> 00:42:01,900 +called encryption algorithm, + +689 +00:42:04,120 --> 00:42:09,380 +okay? Create IncAlgorithm, in short. Ok? And this + +690 +00:42:09,380 --> 00:42:11,880 +also takes what? Choice. In the end, I have to + +691 +00:42:11,880 --> 00:42:15,080 +tell him I want 1, or I want 2, or I want 3. So + +692 +00:42:15,080 --> 00:42:17,680 +now I tell him, here for example, we can make a + +693 +00:42:17,680 --> 00:42:25,100 +switch. Choice. Ok? Case 1. Of course, this + +694 +00:42:25,100 --> 00:42:34,820 +mountain here. Encryption Algorithm is a null and + +695 +00:42:34,820 --> 00:42:44,060 +we say if it is a new public key encryption and + +696 +00:42:44,060 --> 00:42:49,660 +here is the break case + +697 +00:42:49,660 --> 00:42:54,700 +two is a new hash encryption + +698 +00:42:59,830 --> 00:43:05,050 +and this is the break it makes a default of course + +699 +00:43:05,050 --> 00:43:07,030 +if you change it like this it will give you an + +700 +00:43:07,030 --> 00:43:12,710 +error and in the end what do I return? this is the + +701 +00:43:12,710 --> 00:43:16,890 +factory method now in the use I don't want to + +702 +00:43:16,890 --> 00:43:20,650 +write public or hash or anything just go to the + +703 +00:43:20,650 --> 00:43:24,810 +factory encryption factory + +704 +00:43:29,190 --> 00:43:31,830 +and tell him to create encryption algorithm and + +705 +00:43:31,830 --> 00:43:37,150 +give 1 or 2 or 3 and this will return you + +706 +00:43:37,150 --> 00:43:43,110 +encryption algorithm what is this? so that I don't + +707 +00:43:43,110 --> 00:43:46,830 +know what the algorithm did and I tell him only a + +708 +00:43:46,830 --> 00:43:50,490 +.encrypt now the client doesn't know anything + +709 +00:43:50,490 --> 00:43:53,490 +about the subclasses he only knows that + +710 +00:44:22,170 --> 00:44:26,390 +the interface. The change happens in one place, + +711 +00:44:26,570 --> 00:44:29,710 +and even this change, we will experience in the + +712 +00:44:29,710 --> 00:44:32,530 +next lecture. Ok guys, if you have any questions, + +713 +00:44:33,330 --> 00:44:33,730 +God bless you all. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/9NJNDi5kkDw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/9NJNDi5kkDw.srt new file mode 100644 index 0000000000000000000000000000000000000000..b95b3a93ecdb4bf1748c8994f2e68b604c7020be --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/9NJNDi5kkDw.srt @@ -0,0 +1,2894 @@ + +1 +00:00:04,910 --> 00:00:11,250 +Peace be upon you Okay guys, today I will give two + +2 +00:00:11,250 --> 00:00:13,230 +design patterns because these design patterns are + +3 +00:00:13,230 --> 00:00:17,810 +small, which are the iterator design pattern and + +4 +00:00:17,810 --> 00:00:20,410 +another design pattern called Memento design + +5 +00:00:20,410 --> 00:00:22,950 +pattern Okay, let's start with the first design + +6 +00:00:22,950 --> 00:00:24,750 +pattern, which is the iterator. Did you hear about + +7 +00:00:24,750 --> 00:00:29,000 +the iterator before? Now guys, the iterator is + +8 +00:00:29,000 --> 00:00:33,600 +simply a way to make an iteration or loop on the + +9 +00:00:33,600 --> 00:00:40,320 +data structure elements. If you used some + +10 +00:00:40,320 --> 00:00:43,120 +collections in Java, such as ArrayList, + +11 +00:00:43,260 --> 00:00:47,460 +LinkedList, HashSet, any kind of existing + +12 +00:00:47,460 --> 00:00:52,730 +collections. You can use the iterator to create a + +13 +00:00:52,730 --> 00:00:55,550 +loop on them. So that we remember what the iterator + +14 +00:00:55,550 --> 00:00:58,870 +is, let's say it passed you before that. If we come + +15 +00:00:58,870 --> 00:01:12,570 +to any class, for example Okay, + +16 +00:01:12,670 --> 00:01:14,470 +I came to the arraylist, for example + +17 +00:01:26,970 --> 00:01:38,830 +And then it can also have a linked list, Linked + +18 +00:01:38,830 --> 00:01:45,210 +Linked And + +19 +00:01:45,210 --> 00:01:47,450 +there can be another data structure, TreeSet + +20 +00:01:59,050 --> 00:02:02,910 +Okay, these three data structures are all part of + +21 +00:02:02,910 --> 00:02:07,610 +an API in Java called Collections API. Okay? Maybe + +22 +00:02:07,610 --> 00:02:12,250 +you used to use ArrayList most of the time. So why + +23 +00:02:12,250 --> 00:02:14,430 +are they different from each other? In the end, + +24 +00:02:14,570 --> 00:02:18,010 +they are all lists. But each has a different + +25 +00:02:18,010 --> 00:02:22,770 +structure from the other. Okay, so the ArrayList in + +26 +00:02:22,770 --> 00:02:25,170 +Java is actually made up of normal arrays, even in + +27 +00:02:25,170 --> 00:02:29,310 +any other language, in Python for example. So, if + +28 +00:02:29,310 --> 00:02:32,050 +you open the class of the ArrayList, you will find + +29 +00:02:32,050 --> 00:02:34,970 +that it depends on normal arrays. The second + +30 +00:02:34,970 --> 00:02:38,470 +LinkedList depends on nodes connected to each + +31 +00:02:38,470 --> 00:02:44,290 +other, like this one. This is the LinkedList. The + +32 +00:02:44,290 --> 00:02:46,350 +TreeSet is actually a tree. + +33 +00:02:51,430 --> 00:02:55,710 +Okay? You don't know the details of this + +34 +00:02:55,710 --> 00:03:01,130 +structure. You don't have to know it. Okay, what + +35 +00:03:01,130 --> 00:03:04,950 +do we use? ArrayList or LinkedList or TreeSet? It + +36 +00:03:04,950 --> 00:03:07,870 +depends on the usage. For example, we know that + +37 +00:03:07,870 --> 00:03:11,910 +the normal array is very fast in access and + +38 +00:03:11,910 --> 00:03:15,290 +search. Okay? But it is slow and has a problem in + +39 +00:03:15,290 --> 00:03:19,220 +insert and remove. For example, if you remember in + +40 +00:03:19,220 --> 00:03:22,640 +Program 1, did you study Program 1? When you want + +41 +00:03:22,640 --> 00:03:25,520 +to insert an item here, or remove any item in the + +42 +00:03:25,520 --> 00:03:28,040 +array normally, you cannot delete this element. + +43 +00:03:28,720 --> 00:03:32,120 +You have to create a new array, for example, if we + +44 +00:03:32,120 --> 00:03:35,860 +delete a smaller size by 1, and delete all + +45 +00:03:35,860 --> 00:03:39,500 +previous elements, and forget this one, and take + +46 +00:03:39,500 --> 00:03:43,700 +the next one, and a long story. Okay? For what? To + +47 +00:03:43,700 --> 00:03:46,280 +delete one element. And this is the specific PC. + +48 +00:03:46,720 --> 00:03:49,240 +So I'm telling you that the Rail List, if you do a + +49 +00:03:49,240 --> 00:03:51,940 +lot of removal operations, you don't use it. And + +50 +00:03:51,940 --> 00:03:55,520 +who do we use? The Linked List. It takes up more + +51 +00:03:55,520 --> 00:03:57,080 +space in the memory because it has indicators. + +52 +00:03:57,780 --> 00:04:02,800 +Okay? But there are in add and remove and in insert + +53 +00:04:02,800 --> 00:04:05,480 +and remove it is easier and more efficient and + +54 +00:04:05,480 --> 00:04:08,220 +there is also the tree set which is the structure + +55 +00:04:08,220 --> 00:04:13,900 +made using a tree, and this can be faster in search + +56 +00:04:13,900 --> 00:04:17,480 +than these two because it uses the algorithm for + +57 +00:04:17,480 --> 00:04:21,440 +example, binary search and so on and so forth at + +58 +00:04:21,440 --> 00:04:24,220 +the end. As a programmer, you don't need to know the + +59 +00:04:24,220 --> 00:04:28,540 +details inside. You can use them all together. Now + +60 +00:04:28,540 --> 00:04:32,620 +the idea is if I want to make a loop on these + +61 +00:04:32,620 --> 00:04:39,580 +nodes. Now Java asked me if I want to make an + +62 +00:04:39,580 --> 00:04:41,860 +iteration, I want to go through the elements in + +63 +00:04:41,860 --> 00:04:44,160 +the data structure. Did you find that the iteration + +64 +00:04:44,160 --> 00:04:47,240 +process is different or different in the data + +65 +00:04:47,240 --> 00:04:49,480 +structure? In the array, it is normal, it is an + +66 +00:04:49,480 --> 00:04:52,000 +index and it moves and keeps moving. In the linked + +67 +00:04:52,000 --> 00:04:54,780 +list, no, you have to see where the index is and + +68 +00:04:54,780 --> 00:04:58,170 +get the node and so on. In the tree, the process is + +69 +00:04:58,170 --> 00:05:00,510 +different, it is harder than these two. You have + +70 +00:05:00,510 --> 00:05:02,930 +to make a traversal for the tree, okay? And you + +71 +00:05:02,930 --> 00:05:05,830 +took in the data 13 ways of traversal, in order + +72 +00:05:05,830 --> 00:05:08,950 +and pre order and post order, right? Take the + +73 +00:05:08,950 --> 00:05:11,610 +father, then take the son to the right, and then + +74 +00:05:11,610 --> 00:05:14,230 +to the left, or take the father and finish the + +75 +00:05:14,230 --> 00:05:16,750 +branch and come back here again. So, the ways of + +76 +00:05:16,750 --> 00:05:19,330 +passing through the elements are different, and if + +77 +00:05:19,330 --> 00:05:22,350 +there was a graph, for example. It also becomes a + +78 +00:05:22,350 --> 00:05:25,550 +different way. Did I find that if I want to go + +79 +00:05:25,550 --> 00:05:27,370 +through the elements, whether it is a tree or a + +80 +00:05:27,370 --> 00:05:28,910 +linked list, I need to go as a programmer to + +81 +00:05:28,910 --> 00:05:31,410 +understand and review the data structure to know + +82 +00:05:31,410 --> 00:05:34,530 +how to go through these elements? No, they made it + +83 +00:05:34,530 --> 00:05:38,440 +easier for me. He told me that because programmers + +84 +00:05:38,440 --> 00:05:42,080 +don't have to go and understand step by step how + +85 +00:05:42,080 --> 00:05:44,480 +the structure works and how to make traversal + +86 +00:05:44,480 --> 00:05:45,900 +filetree, which is actually difficult, because you + +87 +00:05:45,900 --> 00:05:48,300 +don't have to implement it for preorder. Did you + +88 +00:05:48,300 --> 00:05:50,500 +implement it when you started the structure? Yes, + +89 +00:05:50,640 --> 00:05:54,280 +you have to do recursion and so on. So, he told me + +90 +00:05:54,280 --> 00:05:57,530 +that we make it easier for programmers. Okay? We + +91 +00:05:57,530 --> 00:06:00,570 +want to provide a standard way that whatever is + +92 +00:06:00,570 --> 00:06:02,950 +different in the data structure, it should have + +93 +00:06:02,950 --> 00:06:05,690 +one way to go through all elements. What is this + +94 +00:06:05,690 --> 00:06:10,350 +method? If you see any one of these, A1 or A2 or + +95 +00:06:10,350 --> 00:06:15,650 +A3, this is A3. It has a method called iterator. + +96 +00:06:15,790 --> 00:06:18,990 +Okay? And this method iterator returns an object + +97 +00:06:18,990 --> 00:06:22,690 +from which it is an iterator. + +98 +00:06:26,910 --> 00:06:28,510 +Okay? For example, this is called an iter. + +99 +00:06:31,670 --> 00:06:34,650 +Like this. What is this iterator exactly? Because + +100 +00:06:34,650 --> 00:06:38,530 +we imagine it. This is a array. It consists of + +101 +00:06:38,530 --> 00:06:40,910 +elements in it. You can imagine the iterator as a + +102 +00:06:40,910 --> 00:06:42,590 +marker pointing to what is before the first + +103 +00:06:42,590 --> 00:06:48,110 +element. Okay? This iterator, imagine that it is a + +104 +00:06:48,110 --> 00:06:52,470 +marker. It is really a marker, when you use it, + +105 +00:06:52,490 --> 00:06:54,890 +you say that as long as there are two very + +106 +00:06:54,890 --> 00:06:58,670 +important methods, an iterator called hasNext, + +107 +00:07:00,650 --> 00:07:03,930 +okay? And then you say, for example, system.out + +108 +00:07:03,930 --> 00:07:08,310 +.println iterator.next + +109 +00:07:10,680 --> 00:07:12,620 +What is the difference between hasNext and next? + +110 +00:07:12,840 --> 00:07:16,180 +Hasnext means that it sees. For example, I have + +111 +00:07:16,180 --> 00:07:22,180 +data stored here. I check if there is an element + +112 +00:07:22,180 --> 00:07:26,120 +after the index. Of course, here I have an + +113 +00:07:26,120 --> 00:07:29,460 +element, so this method will return true. If there + +114 +00:07:29,460 --> 00:07:32,360 +is no element, it will return false. Why? Because + +115 +00:07:32,360 --> 00:07:35,580 +if there is an element, it will execute .next + +116 +00:07:35,580 --> 00:07:37,860 +after it. What does .next do? It moves the index a + +117 +00:07:37,860 --> 00:07:41,060 +step and then it takes the existing element, which + +118 +00:07:41,060 --> 00:07:42,960 +means it increases the index and then reads the + +119 +00:07:42,960 --> 00:07:45,880 +element here. And since this is the while loop, it + +120 +00:07:45,880 --> 00:07:47,720 +executes this next again. Is there a next element? + +121 +00:07:48,540 --> 00:07:50,400 +Yes, there is a next element, it increases and + +122 +00:07:50,400 --> 00:07:52,880 +executes the next. What does the next do? It moves + +123 +00:07:52,880 --> 00:07:55,660 +the index and reads the element and so on until it + +124 +00:07:55,660 --> 00:07:59,320 +reaches here. Is there a next element? No, it + +125 +00:07:59,320 --> 00:08:02,580 +returns false and leaves the loop, because this is + +126 +00:08:02,580 --> 00:08:07,230 +the way of the iterator. Saved it for me, and you + +127 +00:08:07,230 --> 00:08:12,510 +can use it with any kind of collection. Of course, + +128 +00:08:13,250 --> 00:08:15,290 +in the tree specifically, there is more than one + +129 +00:08:15,290 --> 00:08:16,870 +way to pass through the trees. But what does it + +130 +00:08:16,870 --> 00:08:20,210 +use? We don't know. It doesn't matter. In order or + +131 +00:08:20,210 --> 00:08:22,010 +pre order? The important thing is that it saved me + +132 +00:08:22,010 --> 00:08:25,470 +a way to pass through the trees. If you don't like + +133 +00:08:25,470 --> 00:08:29,150 +this method, go and implement it in the way you + +134 +00:08:29,150 --> 00:08:31,590 +want. Review the data structure and do it. It will + +135 +00:08:31,590 --> 00:08:33,410 +tell you that I simplified it for you and saved + +136 +00:08:33,410 --> 00:08:36,600 +you in the way of the iterator, that you go + +137 +00:08:36,600 --> 00:08:39,900 +through all the elements without knowing what to + +138 +00:08:39,900 --> 00:08:42,220 +do. So, the idea of the iterator, this is the + +139 +00:08:42,220 --> 00:08:45,360 +design pattern, that the data structures that I + +140 +00:08:45,360 --> 00:08:48,680 +store data in may differ in their structure, but + +141 +00:08:48,680 --> 00:08:50,220 +at the same time, I don't want to force the + +142 +00:08:50,220 --> 00:08:53,000 +programmer to go and understand how the data + +143 +00:08:53,000 --> 00:08:54,620 +structure is made in order to make a loop on the + +144 +00:08:54,620 --> 00:08:56,820 +elements. So, it provides you with a standard way + +145 +00:08:56,820 --> 00:08:59,180 +that whatever the difference in the data + +146 +00:08:59,180 --> 00:09:01,640 +structure, this is a unified way to go through the + +147 +00:09:01,640 --> 00:09:05,660 +elements in it. Okay? Now, after we understand what + +148 +00:09:05,660 --> 00:09:08,260 +is the idea of iterator, we want to see how we + +149 +00:09:08,260 --> 00:09:11,840 +make our own iterator. Let's say you made your own + +150 +00:09:11,840 --> 00:09:16,460 +data structure. Okay? And you want to make it an + +151 +00:09:16,460 --> 00:09:18,340 +iterator. Because these are not better than us. + +152 +00:09:18,780 --> 00:09:20,980 +Those who put dot iterator and get iterator and + +153 +00:09:20,980 --> 00:09:25,040 +make loop. We want to make our own iterator. But + +154 +00:09:25,040 --> 00:09:26,900 +before we make our own iterator, we want to make + +155 +00:09:26,900 --> 00:09:31,090 +our own data structure. Okay, sometimes you want to + +156 +00:09:31,090 --> 00:09:32,810 +make a tree, you want to make a graph specific to + +157 +00:09:32,810 --> 00:09:35,610 +it, and you want to provide the programmer a way to + +158 +00:09:35,610 --> 00:09:37,890 +go through the elements that are in your graph + +159 +00:09:37,890 --> 00:09:42,410 +Okay, so you want to provide him a way, we prefer + +160 +00:09:42,410 --> 00:09:44,990 +to provide him the way of the iterator to deal + +161 +00:09:44,990 --> 00:09:48,930 +with your data structure like any of the existing + +162 +00:09:48,930 --> 00:09:53,050 +data structure standards. Okay, so to make this + +163 +00:09:53,050 --> 00:09:55,190 +example, we come to make a new class, I want to + +164 +00:09:55,190 --> 00:09:59,360 +call it MyArray. What does MyArray represent? It is + +165 +00:09:59,360 --> 00:10:02,200 +a data structure specific to it. To simplify, + +166 +00:10:02,860 --> 00:10:06,140 +let's assume that the data structure specific to + +167 +00:10:06,140 --> 00:10:15,120 +us is based on an array of type T called items. + +168 +00:10:16,820 --> 00:10:20,300 +And I want to make it parametrized so that when I + +169 +00:10:20,300 --> 00:10:24,300 +create MyArray, I can define its data type. It can + +170 +00:10:24,300 --> 00:10:27,160 +be a string or integer, whatever you want it to be + +171 +00:10:27,160 --> 00:10:32,300 +and actually my myarray is mainly based on what? + +172 +00:10:33,620 --> 00:10:37,020 +On a regular array. So, we are doing something that + +173 +00:10:37,020 --> 00:10:40,320 +talks about the array list because the array list + +174 +00:10:40,320 --> 00:10:43,720 +is originally based on the array. But of course, the + +175 +00:10:43,720 --> 00:10:46,060 +array list made our life much easier right or not? + +176 +00:10:46,320 --> 00:10:49,980 +You stopped seeing the size and everything? Okay, + +177 +00:10:49,980 --> 00:10:55,550 +and this is the same thing then we want to do here + +178 +00:10:55,550 --> 00:10:59,290 +int capacity, which is the virtual size of the + +179 +00:10:59,290 --> 00:11:01,170 +array because we know that you can't create any + +180 +00:11:01,170 --> 00:11:03,790 +array that has the same size. Someone might say + +181 +00:11:03,790 --> 00:11:05,650 +that if we create an array list, we don't give it + +182 +00:11:05,650 --> 00:11:07,530 +the same size. No, what happens is that he creates + +183 +00:11:07,530 --> 00:11:10,770 +an array list and gives it a virtual size for + +184 +00:11:10,770 --> 00:11:16,030 +example, 10 or 100, and you add, happy, add, add, + +185 +00:11:16,030 --> 00:11:20,560 +add. After he finishes, when you create a new ad, + +186 +00:11:20,940 --> 00:11:22,980 +it will not create a new ad, it will create a + +187 +00:11:22,980 --> 00:11:24,820 +bigger array and it will transfer the data from + +188 +00:11:24,820 --> 00:11:27,000 +the top to the bottom, and it will continue all of + +189 +00:11:27,000 --> 00:11:29,660 +this. You will not see it, but all of this happens in + +190 +00:11:29,660 --> 00:11:33,160 +the ArrayList. Okay, why did I make the capacity 100? + +191 +00:11:33,260 --> 00:11:38,220 +Because when I say public MyArray this constructor + +192 +00:11:38,220 --> 00:11:46,130 +will go to items and say new. Of course, this will + +193 +00:11:46,130 --> 00:11:53,070 +be like this, + +223 +00:13:48,880 --> 00:13:50,980 +a condition before I want to make sure that it + +224 +00:13:50,980 --> 00:13:53,020 +does not reach the end, okay? + +225 +00:13:55,900 --> 00:13:59,480 +So I want to tell him what? If the index is + +226 +00:13:59,480 --> 00:14:06,760 +smaller than items.length minus one + +227 +00:14:11,800 --> 00:14:15,780 +Okay, why is it smaller than length minus one? For + +228 +00:14:15,780 --> 00:14:21,320 +example, how big was the list? Yes, six. The index + +229 +00:14:21,320 --> 00:14:25,620 +always indicates For example, the index here, what + +230 +00:14:25,620 --> 00:14:33,140 +is its value? 0, 1, 2, 3, 4, 5. I want to check if + +231 +00:14:33,140 --> 00:14:36,680 +the index 4 is less than length-max 1, less than + +232 +00:14:36,680 --> 00:14:41,320 +what happens? Less than 5, correct. Of course, it + +233 +00:14:41,320 --> 00:14:43,280 +means that there is a place. So, what do I do? I + +234 +00:14:43,280 --> 00:14:45,960 +increase the index. What happened here? What is + +235 +00:14:45,960 --> 00:14:50,180 +its value? 5, and I put my element. I want to make + +236 +00:14:50,180 --> 00:14:54,100 +an add again. The gate should not allow it. So I + +237 +00:14:54,100 --> 00:14:56,120 +want to ask him if the index is smaller than... I + +238 +00:14:56,120 --> 00:14:57,060 +don't want to tell him the index, if I tell him + +239 +00:14:57,060 --> 00:14:59,140 +it's smaller than the length, it's true. Okay? + +240 +00:14:59,340 --> 00:15:01,040 +It's supposed to continue like this. Smaller than + +241 +00:15:01,040 --> 00:15:05,160 +the length minus 1. Will 5 be smaller than 5? No. + +242 +00:15:05,360 --> 00:15:07,820 +It didn't happen, which means it won't add a new + +243 +00:15:07,820 --> 00:15:11,320 +element. Okay? So if the index is smaller than the + +244 +00:15:11,320 --> 00:15:16,020 +length minus 1 Because + +245 +00:15:16,020 --> 00:15:18,800 +if it's actually smaller than the length minus 1, + +246 +00:15:18,860 --> 00:15:21,850 +it will increase the index and then we put the + +247 +00:15:21,850 --> 00:15:26,390 +item this is for the add method this gate after we + +248 +00:15:26,390 --> 00:15:29,110 +made the method add you are with me till now? we + +249 +00:15:29,110 --> 00:15:31,870 +can go to my iterator and say what is this gate? + +250 +00:15:32,190 --> 00:15:41,230 +a4.add this is for example ahmed a4.add this is + +251 +00:15:41,230 --> 00:15:45,590 +aleh this + +252 +00:15:45,590 --> 00:15:50,690 +adds elements to itDo you guys want to make a loop + +253 +00:15:50,690 --> 00:15:55,210 +on our array? Ok, we want to make it like these + +254 +00:15:55,210 --> 00:15:58,590 +guys, we want to make an iterator Currently, if I + +255 +00:15:58,590 --> 00:16:02,850 +tell him a4.iterator, we don't have an iterator, + +256 +00:16:03,130 --> 00:16:06,410 +ok? And it should also be that all these guys here + +257 +00:16:06,410 --> 00:16:11,210 +should be private, why? I can't know what's in the + +258 +00:16:11,210 --> 00:16:11,670 +structure + +259 +00:16:18,530 --> 00:16:22,350 +Okay, if I say a4. I will not see anything except + +260 +00:16:22,350 --> 00:16:26,930 +the method add. Okay, if I say I want to make a + +261 +00:16:26,930 --> 00:16:30,390 +loop, before I make add, I will also find one of + +262 +00:16:30,390 --> 00:16:32,850 +the things that should be present, which is + +263 +00:16:32,850 --> 00:16:35,990 +remove. Okay, there is remove in the index and + +264 +00:16:35,990 --> 00:16:40,030 +there is remove in the item itself. Okay, but I + +265 +00:16:40,030 --> 00:16:43,630 +will not do this. Why? Because this remove takes a + +266 +00:16:43,630 --> 00:16:45,850 +lot of time Remove for any element they want to + +267 +00:16:45,850 --> 00:16:48,330 +change it if it came without creating a new array + +268 +00:16:48,330 --> 00:16:51,290 +with a smaller size and doing shift to take the + +269 +00:16:51,290 --> 00:16:54,230 +previous elements and put them in the new one Like + +270 +00:16:54,230 --> 00:16:58,070 +the code we did in one program This is not our + +271 +00:16:58,070 --> 00:17:03,630 +topic I made the add now and I want to do loop on + +272 +00:17:03,630 --> 00:17:06,810 +elements I want there to be something called + +273 +00:17:06,810 --> 00:17:08,970 +iterator + +274 +00:17:15,750 --> 00:17:20,850 +iterator, string, this is an example of an + +275 +00:17:20,850 --> 00:17:25,990 +iterator, an iterator 2 basically I say that as + +276 +00:17:25,990 --> 00:17:28,730 +long as the iterator 2 dot has next + +277 +00:17:44,320 --> 00:17:46,880 +Ok guys? But of course this method doesn't exist. + +278 +00:17:47,620 --> 00:17:49,700 +It doesn't exist. Let's go and make it. So we come + +279 +00:17:49,700 --> 00:17:52,400 +to the MyArray. Ok? And here we want to make a + +280 +00:17:52,400 --> 00:17:57,480 +method public What should return the method? + +281 +00:17:58,900 --> 00:18:02,860 +Iterator of type T. Right? The name of the method + +282 +00:18:02,860 --> 00:18:03,600 +is iterator. + +283 +00:18:06,400 --> 00:18:09,920 +And it will run. Ok. Since this method returns + +284 +00:18:09,920 --> 00:18:13,680 +iterator, we must create iterator. + +285 +00:18:15,920 --> 00:18:27,240 +iterator T is equal to new iterator + +286 +00:18:27,240 --> 00:18:32,180 +because java has an interface called iterator + +287 +00:18:32,180 --> 00:18:35,780 +there are two methods which are hasNext and next + +288 +00:18:38,280 --> 00:18:40,640 +Okay, why did he refuse? He made an error. Let's + +289 +00:18:40,640 --> 00:18:44,540 +see what the error says. Cannot be instantiated. + +290 +00:18:44,620 --> 00:18:46,680 +Why? Because the iterator is an interface. I can't + +291 +00:18:46,680 --> 00:18:49,360 +make an object from an interface. Except in one + +292 +00:18:49,360 --> 00:18:51,800 +case. What is it? Anonymous class. Yes, you can + +293 +00:18:51,800 --> 00:18:53,260 +make an anonymous class. Or you can make another + +294 +00:18:53,260 --> 00:18:56,180 +class and implement it to the iterator and make an + +295 +00:18:56,180 --> 00:18:58,760 +object from it. Okay? So this solves the problem + +296 +00:18:58,760 --> 00:19:02,780 +of how after these two brackets you open the code + +297 +00:19:02,780 --> 00:19:06,830 +brackets.To implement for whom? For the missing + +298 +00:19:06,830 --> 00:19:11,830 +methods So the get-hick will implement the next + +299 +00:19:11,830 --> 00:19:13,410 +and the hasnext, these are mandatory, we have to + +300 +00:19:13,410 --> 00:19:18,290 +make them, it will generate You can make an object + +301 +00:19:18,290 --> 00:19:21,850 +from an operator provided that you complete the + +302 +00:19:21,850 --> 00:19:24,170 +missing methods, this is the idea of anonymous + +303 +00:19:24,170 --> 00:19:29,280 +classAn anonymous class needs for example an + +304 +00:19:29,280 --> 00:19:32,200 +object when you click on a button, what do you + +305 +00:19:32,200 --> 00:19:37,140 +call it? Event listener? Event listener, we used + +306 +00:19:37,140 --> 00:19:39,360 +to call it new event listener, which opens two + +307 +00:19:39,360 --> 00:19:40,700 +boxes and completes the implementation of the + +308 +00:19:40,700 --> 00:19:43,460 +missing method. When you complete the missing + +309 +00:19:43,460 --> 00:19:48,470 +method, the object becomes complete. so the + +310 +00:19:48,470 --> 00:19:51,370 +interface in java has an iterator to tell you that + +311 +00:19:51,370 --> 00:19:52,690 +anyone who wants to create an iterator should + +312 +00:19:52,690 --> 00:19:55,470 +create an implement for this interface and it + +313 +00:19:55,470 --> 00:19:57,950 +brought these two methods which is the hasNext() + +314 +00:19:57,950 --> 00:20:00,210 +and the method next() which returns E I'm just + +315 +00:20:00,210 --> 00:20:03,210 +going to remove E and replace it with T okay? + +316 +00:20:08,610 --> 00:20:12,850 +okay and in the end it should return the iterator + +317 +00:20:12,850 --> 00:20:18,370 +itself okay, why is it here? Okay, + +318 +00:20:24,650 --> 00:20:34,910 +let's go back to anything to make sure I + +319 +00:20:34,910 --> 00:20:39,750 +say + +320 +00:20:53,800 --> 00:20:56,040 +Okay, so it wants you to write the parameters + +321 +00:20:56,040 --> 00:20:57,780 +here. Anyway, did you find out guys that we are + +322 +00:20:57,780 --> 00:21:01,090 +supposed to implement for whom? for the has next + +323 +00:21:01,090 --> 00:21:03,970 +and the next and those who want to implement for + +324 +00:21:03,970 --> 00:21:06,690 +the has next and the next must understand how the + +325 +00:21:06,690 --> 00:21:10,170 +data structure is made because we use the array + +326 +00:21:10,170 --> 00:21:12,570 +pay attention to me did you find the idea of ​​the + +327 +00:21:12,570 --> 00:21:15,190 +iterator as I explained a while ago it is a marker + +328 +00:21:15,190 --> 00:21:18,710 +that marks where before the first place yet + +329 +00:21:18,710 --> 00:21:20,290 +because the idea of ​​the iterator starts from the + +330 +00:21:20,290 --> 00:21:22,690 +first to the last okay so did you find the + +331 +00:21:22,690 --> 00:21:25,930 +iterator itself there should be a marker so we + +332 +00:21:25,930 --> 00:21:29,870 +come inside the iterator okay and we do int Let's + +333 +00:21:29,870 --> 00:21:33,370 +call it an Iter Index What is its value? One + +334 +00:21:33,370 --> 00:21:35,990 +person says, you are above the index, the index + +335 +00:21:35,990 --> 00:21:38,550 +above has nothing to do with this, it is + +336 +00:21:38,550 --> 00:21:40,670 +responsible for determining how much I filled, + +337 +00:21:41,630 --> 00:21:45,210 +okay? So the first index, the basic structure, is + +338 +00:21:45,210 --> 00:21:47,530 +this one, for example, which is here, and where is + +339 +00:21:47,530 --> 00:21:51,150 +the iterator index? It is here, so I found that it + +340 +00:21:51,150 --> 00:21:55,010 +is my responsibility to move this index and get + +341 +00:21:55,010 --> 00:21:57,910 +the elements until it reaches this pointI have + +342 +00:21:57,910 --> 00:22:00,250 +this, this is the idea, this is in the case of + +343 +00:22:00,250 --> 00:22:02,590 +array of course, if there is a case of tree or + +344 +00:22:02,590 --> 00:22:03,890 +graph or something like that, the subject is + +345 +00:22:03,890 --> 00:22:07,050 +different, you and your skills, how you index + +346 +00:22:07,050 --> 00:22:10,190 +yourself, this index keeps moving to someone else + +347 +00:22:10,190 --> 00:22:15,550 +or to whom, to the end of the list or the data + +348 +00:22:15,550 --> 00:22:18,520 +structureOkay, so it started with .. did you find + +349 +00:22:18,520 --> 00:22:20,300 +this index? What is supposed to be in it? What + +350 +00:22:20,300 --> 00:22:23,600 +does it mean? Is there a following element or not? + +351 +00:22:24,600 --> 00:22:29,620 +Now, it is supposed to be simply that the iterator + +352 +00:22:29,620 --> 00:22:35,200 +index is smaller than the index No, it's smaller + +353 +00:22:35,200 --> 00:22:39,500 +than that. I'll tell you why. Because I really .. + +354 +00:22:39,500 --> 00:22:44,000 +this is the index of my list. If this is .. this + +355 +00:22:44,000 --> 00:22:46,440 +is the index of my iterator. Okay? What is the + +356 +00:22:46,440 --> 00:22:49,060 +last element that I should read when it's like + +357 +00:22:49,060 --> 00:22:54,380 +this? This is before this. Okay? What is this? We + +358 +00:22:54,380 --> 00:22:56,560 +said that it indicates what came before. Because + +359 +00:22:56,560 --> 00:22:59,720 +when it says has next, is this less than this? + +360 +00:23:00,100 --> 00:23:04,090 +Correct? If it's less than this, I add it. and I + +361 +00:23:04,090 --> 00:23:07,370 +read this, right? these two gates are in the same + +362 +00:23:07,370 --> 00:23:12,450 +place when this gate does has next we don't want + +363 +00:23:12,450 --> 00:23:15,990 +it to be equal why? because this gate is going to + +364 +00:23:15,990 --> 00:23:19,870 +be smaller than the iterator index is smaller than + +365 +00:23:19,870 --> 00:23:22,710 +the index so this has next will return true of + +366 +00:23:22,710 --> 00:23:24,310 +false only if it says that there is a next element + +367 +00:23:24,310 --> 00:23:30,750 +or there is no next element okay? okay next this + +368 +00:23:30,750 --> 00:23:36,030 +returns the item instead of using array, the next + +369 +00:23:36,030 --> 00:23:38,930 +element will be what? it will provide a step + +370 +00:23:38,930 --> 00:23:42,370 +indicator and return the element that it has if it + +371 +00:23:42,370 --> 00:23:44,070 +was a tree, you would see how it connects to the + +372 +00:23:44,070 --> 00:23:45,970 +son for example the one on the right or the son on + +373 +00:23:45,970 --> 00:23:50,570 +the left so here we say return name of the array + +374 +00:23:50,570 --> 00:23:55,430 +items we have not provided yet this is iterator + +375 +00:23:55,430 --> 00:24:02,270 +index plus plus and return which is at the + +376 +00:24:02,270 --> 00:24:06,030 +iterator index okay? + +377 +00:24:06,150 --> 00:24:11,790 +which one did we implement guys? the next we + +378 +00:24:11,790 --> 00:24:13,790 +finished the iterator, we created an object from + +379 +00:24:13,790 --> 00:24:17,150 +it and in the end we returned the iterator we will + +380 +00:24:17,150 --> 00:24:22,730 +go back to ... because the code is running okay? + +381 +00:24:23,050 --> 00:24:25,470 +it is supposed to bring the iterator and make a + +382 +00:24:25,470 --> 00:24:29,750 +loop on it okay? but this code that I found below + +383 +00:24:37,590 --> 00:24:43,750 +Now it is running and it is outputting loop to + +384 +00:24:43,750 --> 00:24:49,950 +Ahmed, Ali and Omar It is like we made our own + +385 +00:24:49,950 --> 00:24:56,420 +playlist and we made method iterator in it The + +386 +00:24:56,420 --> 00:24:59,240 +idea is that you provide a unified form or method + +387 +00:24:59,240 --> 00:25:03,420 +to connect to the elements to be like any other + +388 +00:25:03,420 --> 00:25:07,100 +data structure and the programmer does not have to + +389 +00:25:07,100 --> 00:25:11,340 +know the details. As we said, these ideas or + +390 +00:25:11,340 --> 00:25:16,000 +design patterns benefit us when you design an API. + +391 +00:25:16,780 --> 00:25:20,160 +The successful API is something that facilitates + +392 +00:25:20,160 --> 00:25:24,550 +as much as possible to the user is to use the + +393 +00:25:24,550 --> 00:25:28,590 +code, right or wrong? the easier it is to use a + +394 +00:25:28,590 --> 00:25:32,090 +word has its own data structure you want to make + +395 +00:25:32,090 --> 00:25:34,270 +it easier for the user so you provide him with the + +396 +00:25:34,270 --> 00:25:37,710 +iterator you are using a tree instead of telling + +397 +00:25:37,710 --> 00:25:43,130 +him to make a traverse in the tree this iterator + +398 +00:25:43,130 --> 00:25:46,530 +that I provided is passing through the existing + +399 +00:25:46,530 --> 00:25:50,710 +elements okay guys? okay, did you get it? let's + +400 +00:25:50,710 --> 00:25:50,970 +read + +401 +00:25:54,350 --> 00:26:00,570 +The iterator is an object that provides a standard + +402 +00:26:00,570 --> 00:26:04,430 +way to examine all elements of any collection It + +403 +00:26:04,430 --> 00:26:12,570 +is a uniform interface for + +404 +00:26:12,570 --> 00:26:16,250 +traversing many different data structureswithout + +405 +00:26:16,250 --> 00:26:20,710 +exposing their implementation without exposing + +406 +00:26:20,710 --> 00:26:23,370 +their implementation without exposing their + +407 +00:26:23,370 --> 00:26:23,450 +implementation without exposing their + +408 +00:26:23,450 --> 00:26:23,810 +implementation without exposing their + +409 +00:26:23,810 --> 00:26:23,890 +implementation without exposing their + +410 +00:26:23,890 --> 00:26:24,210 +implementation without exposing their + +411 +00:26:24,210 --> 00:26:24,390 +implementation without exposing their + +412 +00:26:24,390 --> 00:26:25,270 +implementation without exposing their + +413 +00:26:25,270 --> 00:26:25,310 +implementation without exposing their + +414 + +445 +00:27:57,200 --> 00:28:02,270 +implement it or not, but these are mandatory in + +446 +00:28:02,270 --> 00:28:09,950 +Java, all types of collections, such as ArrayList, + +447 +00:28:10,170 --> 00:28:14,190 +LinkedList, TreeSet, HashSet, etc. All of them + +448 +00:28:14,190 --> 00:28:17,270 +follow an API called Collection. All of them + +449 +00:28:17,270 --> 00:28:22,470 +implement one interface called Collection. The + +450 +00:28:22,470 --> 00:28:26,290 +ArrayList is a collection, and LinkedList is a + +451 +00:28:26,290 --> 00:28:30,640 +collection. This interface Collection. This is an + +452 +00:28:30,640 --> 00:28:34,200 +interface with a method called iterator. Why? + +453 +00:28:34,280 --> 00:28:37,760 +Because anyone who wants to make a collection must + +454 +00:28:37,760 --> 00:28:41,860 +support whom? He must support the iterator. As I + +455 +00:28:41,860 --> 00:28:44,000 +told you, this is the standard way, you must + +456 +00:28:44,000 --> 00:28:46,620 +provide it. If you made a collection, you must + +457 +00:28:46,620 --> 00:28:49,930 +provide it to the user. Iterator to easily create + +458 +00:28:49,930 --> 00:28:54,350 +a loop. Create whatever data structure you want. But + +459 +00:28:54,350 --> 00:28:56,690 +in the end, don't force the user, provide him with + +460 +00:28:56,690 --> 00:28:59,570 +an iterator. And this is the idea of the iterator + +461 +00:28:59,570 --> 00:29:03,590 +design pattern. This is just an example of how I + +462 +00:29:03,590 --> 00:29:07,690 +create a loop on the iterator. Like a while ago, I + +463 +00:29:07,690 --> 00:29:10,870 +was doing while iterator.hasNext. He did it using + +464 +00:29:10,870 --> 00:29:11,350 +for + +465 +00:29:14,800 --> 00:29:17,680 +loops. The for loop, of course, you know that for is + +466 +00:29:17,680 --> 00:29:20,000 +more than a part of it. The first part is executed + +467 +00:29:20,000 --> 00:29:23,640 +only once, which is when I go to the iterator and + +468 +00:29:23,640 --> 00:29:26,320 +initialize it to a variable called iter. And then + +469 +00:29:26,320 --> 00:29:31,040 +in each loop, it executes the has next. I prefer the + +470 +00:29:31,040 --> 00:29:34,040 +while loop because it is easier to use here. + +471 +00:29:37,140 --> 00:29:39,860 +have adding your own iterator. For example, here, it + +472 +00:29:39,860 --> 00:29:42,700 +gives an example like I made a class named MyArray. + +473 +00:29:42,700 --> 00:29:45,520 +Here, I made a class named PlayerList, for example. + +474 +00:29:45,520 --> 00:29:48,240 +This is a list dedicated to you for players, for + +475 +00:29:48,240 --> 00:29:50,300 +example, to a specific data structure, you need to + +476 +00:29:50,300 --> 00:29:52,940 +support the iterator in it. All you need to do in + +477 +00:29:52,940 --> 00:29:55,500 +the class is to make a method called iterator + +478 +00:29:55,500 --> 00:29:59,600 +returns iterator and implement for whom? For this + +479 +00:29:59,600 --> 00:30:01,640 +method which creates an object of the type + +480 +00:30:01,640 --> 00:30:04,060 +iterator, and implement for next and hasNext, and + +481 +00:30:04,060 --> 00:30:08,160 +returns this object. Alright, guys, and that's how we + +482 +00:30:08,160 --> 00:30:11,600 +finish the iterator pattern. Let's see another + +483 +00:30:11,600 --> 00:30:14,960 +design pattern which is also simple, it's called + +484 +00:30:14,960 --> 00:30:19,420 +the memento pattern. Do you see the word memento? + +485 +00:30:21,710 --> 00:30:24,710 +This is not an English word, I think it's a + +486 +00:30:24,710 --> 00:30:27,030 +Spanish word meaning something like minute or + +487 +00:30:27,030 --> 00:30:31,270 +thinker or something like thinking, okay? + +488 +00:30:34,290 --> 00:30:37,070 +Of course, these slides are not required, okay? + +489 +00:30:37,210 --> 00:30:38,650 +What is required in the memento pattern are the + +490 +00:30:38,650 --> 00:30:42,010 +last two slides, okay? Because what is the memento + +491 +00:30:42,010 --> 00:30:44,110 +pattern in a very short form? This is a simple + +492 +00:30:44,110 --> 00:30:45,170 +design pattern. + +493 +00:30:47,420 --> 00:30:51,280 +I tell you sometimes in your programs, you have a + +494 +00:30:51,280 --> 00:30:55,220 +class, okay? Of course, he called the class, he + +495 +00:30:55,220 --> 00:30:59,200 +called it originator. + +496 +00:31:01,380 --> 00:31:04,300 +From origin, what is origin? The source. This + +497 +00:31:04,300 --> 00:31:06,500 +class is the source. This class can be, for example, + +498 +00:31:06,500 --> 00:31:10,200 +a game, an electronic safe, something with data, + +499 +00:31:10,480 --> 00:31:12,880 +information. This game, sometimes you need to + +500 +00:31:12,880 --> 00:31:14,260 +memorize the state of the game in order to + +501 +00:31:14,260 --> 00:31:17,380 +retrieve it later. And usually when you play, you + +502 +00:31:17,380 --> 00:31:19,420 +do a lot of save operations, every five minutes, + +503 +00:31:19,520 --> 00:31:23,040 +for example, you do a save, okay? And also if you + +504 +00:31:23,040 --> 00:31:25,280 +have information, a document, for example, there is + +505 +00:31:25,280 --> 00:31:27,400 +text, and so on. You also need to constantly + +506 +00:31:27,400 --> 00:31:30,630 +memorize the state of this document. So these + +507 +00:31:30,630 --> 00:31:34,030 +attributes represent the state or the case of the + +508 +00:31:34,030 --> 00:31:38,810 +originator. You need to memorize this information, + +509 +00:31:38,810 --> 00:31:44,530 +okay? It could be that this represents a game, or a + +510 +00:31:44,530 --> 00:31:49,990 +book, or a document, okay? In my program, there + +511 +00:31:49,990 --> 00:31:53,110 +could be another class called caretaker. That's + +512 +00:31:53,110 --> 00:31:57,450 +how they call it. What is a caretaker? To the + +513 +00:31:57,450 --> 00:31:59,590 +person in charge, another person, they call him + +514 +00:31:59,590 --> 00:32:03,710 +caretaker. The caretaker, for example, is the one + +515 +00:32:03,710 --> 00:32:06,650 +who implements or controls who in the originator, + +516 +00:32:06,650 --> 00:32:09,470 +and needs, for example, this caretaker, when he + +517 +00:32:09,470 --> 00:32:11,690 +comes to change in the originator, or, for example, + +518 +00:32:11,870 --> 00:32:13,750 +I imagine that this is a document, and this is the + +519 +00:32:13,750 --> 00:32:17,380 +class that changes the content of this document, or + +520 +00:32:17,380 --> 00:32:20,840 +this game. This class that executes the commands + +521 +00:32:20,840 --> 00:32:25,080 +of the game. This class, when it executes a certain + +522 +00:32:25,080 --> 00:32:28,360 +command, it needs to memorize the state of the + +523 +00:32:28,360 --> 00:32:31,820 +originator. Then, it changes. It makes changes to it + +524 +00:32:31,820 --> 00:32:36,100 +until after a while it returns to the state, it + +525 +00:32:36,100 --> 00:32:37,460 +returns to the originator, and tells it to return + +526 +00:32:37,460 --> 00:32:42,220 +to the previous state. But now the caretaker should + +527 +00:32:42,220 --> 00:32:47,060 +take a copy of the estate, and keep it with him, so + +528 +00:32:47,060 --> 00:32:51,200 +that he can retrieve it later. Okay? Where is + +529 +00:32:51,200 --> 00:32:53,220 +this? As I said, imagine this is a document, and + +530 +00:32:53,220 --> 00:32:57,820 +this class changes this document. Like we took the + +531 +00:32:57,820 --> 00:33:03,060 +idea of undo, and redo. This is the place I draw on + +532 +00:33:03,060 --> 00:33:05,260 +it. And this is the class that executes the orders + +533 +00:33:05,260 --> 00:33:06,100 +of the painter. + +534 +00:33:09,020 --> 00:33:12,260 +What does it do? It preserves the state of the + +535 +00:33:12,260 --> 00:33:14,580 +piece of paper it drew. Right? So that it can be + +536 +00:33:14,580 --> 00:33:17,280 +translated. So the idea of the Memento Pattern, as + +537 +00:33:17,280 --> 00:33:22,560 +I said, or when should it be used? To ensure a + +538 +00:33:22,560 --> 00:33:27,620 +higher degree of data security, the caretaker + +539 +00:33:27,620 --> 00:33:28,980 +should be able to preserve the state of the + +540 +00:33:28,980 --> 00:33:32,020 +originator. That is, this state that contains + +541 +00:33:32,020 --> 00:33:34,380 +information. And I want to preserve it because I + +542 +00:33:34,380 --> 00:33:36,540 +want to change this gate to the originator. I want + +543 +00:33:36,540 --> 00:33:40,080 +to preserve this information. Okay, so that you + +544 +00:33:40,080 --> 00:33:43,500 +come here, for example, in the list. Okay, but at the + +545 +00:33:43,500 --> 00:33:46,540 +same time, the caretaker is not allowed to look at + +546 +00:33:46,540 --> 00:33:51,080 +this information. I mean, I want to save the + +547 +00:33:51,080 --> 00:33:54,000 +originator's case and let him retrieve it later, + +548 +00:33:54,140 --> 00:33:56,780 +but, at the same time, I don't want the caretaker + +549 +00:33:56,780 --> 00:34:00,200 +to look at what's in these details from a higher + +550 +00:34:00,200 --> 00:34:02,520 +security level for the data. Who is responsible for + +551 +00:34:02,520 --> 00:34:04,940 +looking at this information? Only who? The + +552 +00:34:04,940 --> 00:34:09,580 +originator. He should be able to memorize the + +553 +00:34:09,580 --> 00:34:11,060 +originator's case, but, at the same time, he should + +554 +00:34:11,060 --> 00:34:15,000 +not look at the information in it. How can we do + +555 +00:34:15,000 --> 00:34:18,020 +this? I will give you an example. For example, a + +556 +00:34:18,020 --> 00:34:20,060 +person has money, or precious things, he wants to + +557 +00:34:20,060 --> 00:34:21,840 +keep them safe. He wants to travel, he wants to + +558 +00:34:21,840 --> 00:34:26,340 +memorize this information. He might also want to + +559 +00:34:26,340 --> 00:34:28,980 +put it in front of a certain person, but he does + +560 +00:34:28,980 --> 00:34:31,980 +not want this person to see it, on the details of + +561 +00:34:31,980 --> 00:34:35,180 +these documents, or these precious things. So, he + +562 +00:34:35,180 --> 00:34:36,860 +takes these things, and puts them in a small safe + +563 +00:34:36,860 --> 00:34:40,500 +and tells him, come here, this is your trust, take + +564 +00:34:40,500 --> 00:34:46,080 +this safe, and keep it here. I took it as a safe + +565 +00:34:46,080 --> 00:34:49,020 +and gave it to him. Of course, if he tried to + +566 +00:34:49,020 --> 00:34:51,280 +break it while I was traveling, he wouldn't be + +567 +00:34:51,280 --> 00:34:56,080 +able to open it. Okay? He kept these things, but + +568 +00:34:56,080 --> 00:34:59,680 +at the same time, he couldn't see them. So, I came + +569 +00:34:59,680 --> 00:35:02,860 +back from the trip. After trying to break it for a + +570 +00:35:02,860 --> 00:35:05,120 +whole month, he returned it, and said, here you go, + +571 +00:35:05,240 --> 00:35:07,820 +I didn't try to open it. Here you go. I trusted + +572 +00:35:07,820 --> 00:35:14,140 +you. As it is, safe, I don't know. So the idea is, + +573 +00:35:14,540 --> 00:35:17,540 +this is the scenario that I want. That I have + +574 +00:35:17,540 --> 00:35:20,960 +objects, I want to be able to memorize their cases + +575 +00:35:20,960 --> 00:35:23,800 +and take the object of this case, and memorize it + +576 +00:35:23,800 --> 00:35:26,900 +in another class or another list. This memorizes + +577 +00:35:26,900 --> 00:35:28,520 +the case, but, at the same time, this should not + +578 +00:35:28,520 --> 00:35:32,500 +appear on the information here. How do we do this? + +579 +00:35:32,700 --> 00:35:36,140 +This is what we do by using the memento pattern. + +580 +00:35:36,380 --> 00:35:37,800 +Let's see how to do it quickly. + +581 +00:35:51,210 --> 00:35:55,990 +Okay, guys. Now, let's say I have a class called + +582 +00:35:55,990 --> 00:35:59,270 +originator, okay? It represents a document, a + +583 +00:35:59,270 --> 00:36:02,790 +game, a library. Whatever you want, okay? And this + +584 +00:36:02,790 --> 00:36:07,610 +has data such as text and score, okay? These are + +585 +00:36:07,610 --> 00:36:10,570 +the secret information. What is supposed to be? We + +586 +00:36:10,570 --> 00:36:15,090 +keep them every while, but we don't want anyone to + +587 +00:36:15,090 --> 00:36:19,060 +look at them except who? The originator. So, this + +588 +00:36:19,060 --> 00:36:22,320 +idea came to support this memorization. They say + +589 +00:36:22,320 --> 00:36:24,820 +come inside the originator, and make an inner class. + +590 +00:36:24,820 --> 00:36:29,880 +Inner class. What do we call it, for example? I'm + +591 +00:36:29,880 --> 00:36:33,960 +going to call it memento. The inner class has the + +592 +00:36:33,960 --> 00:36:37,920 +same attributes as the originator. So, these are the + +593 +00:36:37,920 --> 00:36:40,600 +first thing, of course, to guarantee privacy. These + +594 +00:36:40,600 --> 00:36:46,320 +will be private. And these also inside the memento. + +595 +00:36:47,940 --> 00:36:49,880 +No, leave them here, okay? + +596 +00:36:52,460 --> 00:36:56,140 +They themselves have to make a copy of them inside + +597 +00:36:56,140 --> 00:36:59,200 +the memento. And also, inside the memento, they + +598 +00:36:59,200 --> 00:37:05,160 +have to make a copy of them privately. You don't + +599 +00:37:05,160 --> 00:37:08,140 +make public setars and guitars. Okay? You can make + +600 +00:37:08,140 --> 00:37:10,060 +a private set originator, but the important thing + +601 +00:37:10,060 --> 00:37:12,560 +is to keep everything inside the memento private. + +602 +00:37:13,820 --> 00:37:15,900 +What's the point of keeping it private? Because + +603 +00:37:15,900 --> 00:37:17,940 +only the originator can access the content of the + +604 +00:37:17,940 --> 00:37:22,140 +memento. Anyone outside will not be able to access + +605 +00:37:22,140 --> 00:37:24,420 +it. Of course, we can make a constructor called + +606 +00:37:24,420 --> 00:37:29,080 +memento. Even the constructor, okay, I want to + +607 +00:37:29,080 --> 00:37:29,480 +make it + +608 +00:37:32,510 --> 00:37:38,250 +private string text, int score. + +609 +00:37:55,090 --> 00:38:00,330 +Okay, we finished the class memento. I didn't make + +610 +00:38:00,330 --> 00:38:05,690 +getters public. Only constructor private, because in + +611 +00:38:05,690 --> 00:38:07,490 +addition to class memento, I want to make two + +612 +00:38:07,490 --> 00:38:14,630 +methods. One is called public memento getstate. What + +613 +00:38:14,630 --> 00:38:19,770 +is getstate? Return to your original state, return + +614 +00:38:19,770 --> 00:38:21,610 +new + +615 +00:38:23,950 --> 00:38:27,890 +Memento, and I give him the text and the score. So, + +616 +00:38:27,890 --> 00:38:31,470 +what is the idea of this get state? The caretaker + +617 +00:38:31,470 --> 00:38:35,430 +asked the originator to tell him, give me your + +618 +00:38:35,430 --> 00:38:38,350 +current state, I want to preserve it. Like this + +619 +00:38:38,350 --> 00:38:41,190 +one, give me your trust, I want to preserve it. So, + +620 +00:38:41,190 --> 00:38:44,090 +the get state will claim who? The one that has a + +621 +00:38:44,090 --> 00:38:46,430 +public method, this one can claim it. What will the + +622 +00:38:46,430 --> 00:38:49,570 +get state do? Create an object with memento and + +623 +00:38:49,570 --> 00:38:52,980 +give it to whom? The current state, which is the + +624 +00:38:52,980 --> 00:38:58,200 +state, text and score. Now, he returned the + +625 +00:38:58,200 --> 00:39:01,020 +memento, but he is not supposed to be able to use + +626 +00:39:01,020 --> 00:39:05,140 +the memento, as we will see in the git. In + +627 +00:39:05,140 --> 00:39:06,760 +addition to the git state, we will make another + +628 +00:39:06,760 --> 00:39:10,360 +method, public void restore. What is restore? + +629 +00:39:13,390 --> 00:39:15,650 +This takes memento. This is based on what? + +630 +00:39:15,830 --> 00:39:17,690 +Because the caretaker, after this returned from the + +631 +00:39:17,690 --> 00:39:19,630 +trip, the caretaker will tell him to go ahead, + +632 +00:39:19,650 --> 00:39:24,370 +this is your case, and this will give him memento. + +633 +00:39:25,240 --> 00:39:27,800 +And the originator is the one who can open the + +634 +00:39:27,800 --> 00:39:30,160 +memento, and take what is in it and return it to + +635 +00:39:30,160 --> 00:39 + +667 +00:41:33,520 --> 00:41:38,840 +Okay, I go to the originator and I say get what? + +668 +00:41:39,720 --> 00:41:43,200 +Get the state Okay, what does this return? It + +669 +00:41:43,200 --> 00:41:45,920 +returns an object from the memento Because of + +670 +00:41:45,920 --> 00:41:47,660 +course this memento has the data of the + +671 +00:41:47,660 --> 00:41:50,770 +originator, but if I try to see what's in it there + +672 +00:41:50,770 --> 00:41:52,710 +is nothing in it, I can't, like the safe that + +673 +00:41:52,710 --> 00:41:54,810 +reached me, I can't open it or see what's in it + +674 +00:41:54,810 --> 00:41:57,810 +okay, I can go to the caretaker and tell him + +675 +00:41:57,810 --> 00:42:03,670 +states and add yes to you so the caretaker now is + +676 +00:42:03,670 --> 00:42:07,330 +safe in the memento but I can't act on it at all + +677 +00:42:07,330 --> 00:42:11,190 +okay and so on while the program is running as + +678 +00:42:11,190 --> 00:42:13,050 +long as I want to change something in the + +679 +00:42:13,050 --> 00:42:16,310 +originator I tell him give me also what give me + +680 +00:42:16,310 --> 00:42:22,680 +two mementosOkay? And go to the caretaker and add + +681 +00:42:22,680 --> 00:42:28,940 +this M2 And I save many cases. Now after a while, + +682 +00:42:29,020 --> 00:42:30,920 +after a phase, I need to go back to the last case + +683 +00:42:30,920 --> 00:42:35,640 +Okay? I go to the caretaker and tell him states + +684 +00:42:35,640 --> 00:42:39,500 +and hotline The + +685 +00:42:39,500 --> 00:42:46,080 +last case isstates dot size minus one this is the + +686 +00:42:46,080 --> 00:42:49,160 +last state in the last state and this gave me + +687 +00:42:49,160 --> 00:42:56,080 +memento which is the last state I + +688 +00:42:56,080 --> 00:42:58,580 +got the last state, I need to return it where is + +689 +00:42:58,580 --> 00:43:02,340 +the return? in the originator I go to the O and + +690 +00:43:02,340 --> 00:43:07,600 +tell it restore and give it the last state you saw + +691 +00:43:07,600 --> 00:43:11,170 +that we restoreRestored by Tim inside the + +692 +00:43:11,170 --> 00:43:13,570 +originator, as long as I cancel the memento, he + +693 +00:43:13,570 --> 00:43:16,390 +can reach the attributes in it. Because the whole + +694 +00:43:16,390 --> 00:43:19,570 +idea is that the object that preserves the state + +695 +00:43:19,570 --> 00:43:22,310 +is an inner class inside the originator and + +696 +00:43:22,310 --> 00:43:24,730 +everything in it is private. As long as it is an + +697 +00:43:24,730 --> 00:43:26,150 +inner class and everything in it is private, it + +698 +00:43:26,150 --> 00:43:29,070 +means that no one can reach it except who?except + +699 +00:43:29,070 --> 00:43:30,970 +the originator, and this is how I keep my data + +700 +00:43:30,970 --> 00:43:33,430 +secret, because this memento object can only be + +701 +00:43:33,430 --> 00:43:36,650 +accessed by the originator. It is true that I keep + +702 +00:43:36,650 --> 00:43:39,810 +it in other directions and transfer it, but in the + +703 +00:43:39,810 --> 00:43:42,790 +end, no one can see these data except the main + +704 +00:43:42,790 --> 00:43:44,990 +class that generated the data, which is the + +705 +00:43:44,990 --> 00:43:47,770 +originator. And this helps me, as we said in + +706 +00:43:47,770 --> 00:43:49,710 +applications, I have a certain class that I want + +707 +00:43:49,710 --> 00:43:52,770 +to keep its state.or I want to take my state and + +708 +00:43:52,770 --> 00:43:55,190 +transfer it to another place in the application or + +709 +00:43:55,190 --> 00:43:57,250 +to another object or to the server or to others + +710 +00:43:57,250 --> 00:44:00,410 +and at the same time I don't want anyone to look + +711 +00:44:00,410 --> 00:44:01,930 +at these details I want to transfer it to another + +712 +00:44:01,930 --> 00:44:05,650 +place to save it for example to retrieve it later + +713 +00:44:05,650 --> 00:44:07,870 +there is an example of a document, an example of a + +714 +00:44:07,870 --> 00:44:10,690 +library, an example of a game, okay? others + +715 +00:44:10,690 --> 00:44:12,570 +memorize the information but cannot look at it + +716 +00:44:12,570 --> 00:44:15,090 +except for the main class that took out the state + +717 +00:44:16,260 --> 00:44:23,540 +Ok guys, let's go back to the slide of the memento + +718 +00:44:23,540 --> 00:44:30,740 +and start with the UML diagram Ok, now the UML + +719 +00:44:30,740 --> 00:44:33,140 +diagram is the same as what I did, this is the + +720 +00:44:33,140 --> 00:44:36,360 +originator and here I have the attribute to + +721 +00:44:36,360 --> 00:44:39,080 +represent the state and this is supposed to be + +722 +00:44:39,080 --> 00:44:40,620 +negative, what does it mean? it means that this is + +723 +00:44:40,620 --> 00:44:45,150 +privateAnd the originator we made in it an inner + +724 +00:44:45,150 --> 00:44:48,530 +class named Memento For today, the inner class is + +725 +00:44:48,530 --> 00:44:51,150 +not visible In the end, the inner class is placed + +726 +00:44:51,150 --> 00:44:55,570 +as a square by itself This is the Memento And the + +727 +00:44:55,570 --> 00:44:57,310 +same attributes in the originator are repeated + +728 +00:44:57,310 --> 00:44:59,890 +where? In the Memento Because here there was text + +729 +00:44:59,890 --> 00:45:03,850 +and score And here also I put text and score This + +730 +00:45:03,850 --> 00:45:07,750 +is a negative state And I made two methods, getter + +731 +00:45:07,750 --> 00:45:10,580 +and setterAnd they will say that you didn't do it + +732 +00:45:10,580 --> 00:45:12,540 +and you can't do it. No, you can make their names + +733 +00:45:12,540 --> 00:45:16,380 +private Because I didn't use set because + +734 +00:45:16,380 --> 00:45:20,540 +constructor used it instead of it, okay? I didn't + +735 +00:45:20,540 --> 00:45:23,400 +use get either because it's the originator and he + +736 +00:45:23,400 --> 00:45:25,840 +can reach the attributes here directly The + +737 +00:45:25,840 --> 00:45:28,060 +important thing is that these must be private if + +738 +00:45:28,060 --> 00:45:32,380 +you want to use them, okay? In addition to this + +739 +00:45:32,380 --> 00:45:37,070 +class, I made a method called createMementowhich I + +740 +00:45:37,070 --> 00:45:42,330 +named as GetState it puts the state inside the + +741 +00:45:42,330 --> 00:45:45,890 +momentum and returns it to me just like I put the + +742 +00:45:45,890 --> 00:45:48,910 +information in the safe this is what it did, it + +743 +00:45:48,910 --> 00:45:51,990 +put a arrow between the code it is written here as + +744 +00:45:51,990 --> 00:45:56,190 +saving state return new memento and sends it to + +745 +00:45:56,190 --> 00:45:59,770 +the state restore, this is the data that I want to + +746 +00:45:59,770 --> 00:46:04,230 +return I went toI send him a memento, he receives + +747 +00:46:04,230 --> 00:46:07,430 +it and says I got a state and I return it to the + +748 +00:46:07,430 --> 00:46:09,150 +state. Who is this state? It is the attribute + +749 +00:46:09,150 --> 00:46:14,290 +here. And this is the caretaker who executes the + +750 +00:46:14,290 --> 00:46:17,090 +methods in the computer and tells him to create a + +751 +00:46:17,090 --> 00:46:20,330 +memento and make a restore. He takes the mementos + +752 +00:46:20,330 --> 00:46:21,970 +and stores them, but he doesn't know anything. + +753 +00:46:22,690 --> 00:46:27,150 +About its details This is a sequence diagram I + +754 +00:46:27,150 --> 00:46:28,790 +took the sequence diagram, it shows me how it + +755 +00:46:28,790 --> 00:46:31,410 +connects with each other In the beginning, the + +756 +00:46:31,410 --> 00:46:34,750 +caretaker will ask the originator to give me your + +757 +00:46:34,750 --> 00:46:37,410 +case, I want to preserve it So what does he ask + +758 +00:46:37,410 --> 00:46:41,150 +from him? Create memento What will the originator + +759 +00:46:41,150 --> 00:46:44,210 +do internally? He will create an object from whom? + +760 +00:46:44,610 --> 00:46:47,290 +From his memento, he will make a set state in it + +761 +00:46:47,290 --> 00:46:50,910 +and give it back to him? Memento When this + +762 +00:46:50,910 --> 00:46:53,950 +caretaker asks for the state of the originator, he + +763 +00:46:53,950 --> 00:46:56,150 +executes this command and returns the memento to + +764 +00:46:56,150 --> 00:46:57,970 +him. He delivers the memento to the caretaker, but + +765 +00:46:57,970 --> 00:47:01,770 +he cannot see the details. The caretaker wants to + +766 +00:47:01,770 --> 00:47:04,050 +return the state to whom? To the originator. He + +767 +00:47:04,050 --> 00:47:05,830 +tells the originator to do a restore and return to + +768 +00:47:05,830 --> 00:47:08,350 +the previous state. So he executes the restore and + +769 +00:47:08,350 --> 00:47:11,510 +sends him the memento. And this executes what? + +770 +00:47:12,650 --> 00:47:15,210 +GetState, which retrieves from it the state of the + +771 +00:47:15,210 --> 00:47:17,870 +state. Okay? Yes. + +772 +00:47:21,210 --> 00:47:24,570 +Tamam, هو يعني محطهاش لإنه ممكن تكون less ممكن + +773 +00:47:24,570 --> 00:47:30,160 +تكون attribute واحدة It depends on the nature of + +774 +00:47:30,160 --> 00:47:32,300 +the application. I can store many cases, I can + +775 +00:47:32,300 --> 00:47:35,680 +store one case, another case. For example, I made + +776 +00:47:35,680 --> 00:47:38,800 +a list, but in another application, I can store + +777 +00:47:38,800 --> 00:47:41,900 +only one case. I did not leave it here for you to + +778 +00:47:41,900 --> 00:47:44,320 +determine what is available. But in the end, since + +779 +00:47:44,320 --> 00:47:48,640 +it creates, mimics and restores, you understand + +780 +00:47:48,640 --> 00:47:51,200 +that in the end it will remain in the memento, + +781 +00:47:51,300 --> 00:47:55,260 +but it will not be able to use it.Here, I explain + +782 +00:47:55,260 --> 00:47:58,800 +the memento pattern by saying that it is a + +783 +00:47:58,800 --> 00:48:01,200 +software design pattern that provides the ability + +784 +00:48:01,200 --> 00:48:04,360 +to restore an object to its previous state. That + +785 +00:48:04,360 --> 00:48:07,020 +is, it is used in the case of undo and redo. I can + +786 +00:48:07,020 --> 00:48:08,820 +even apply it in the case of the command. Because + +787 +00:48:08,820 --> 00:48:10,920 +in the end, the command does not encapsulate the + +788 +00:48:10,920 --> 00:48:13,440 +information as a command. The command itself can + +789 +00:48:13,440 --> 00:48:15,140 +do a memento and put the information that is + +790 +00:48:15,140 --> 00:48:18,220 +private, so that when you take it and put it in + +791 +00:48:18,220 --> 00:48:23,010 +the manager, You can't look at the details if you + +792 +00:48:23,010 --> 00:48:26,150 +want to preserve their secrecy. Memento pattern + +793 +00:48:26,150 --> 00:48:28,250 +implemented with three objects. There are three + +794 +00:48:28,250 --> 00:48:30,850 +parts, the originator, the caretaker and the + +795 +00:48:30,850 --> 00:48:33,790 +memento. We talked about them. The originator is + +796 +00:48:33,790 --> 00:48:35,990 +some object that has an internal state. It is the + +797 +00:48:35,990 --> 00:48:37,670 +object that has a state that I want to preserve. + +798 +00:48:38,290 --> 00:48:42,710 +The caretaker is going to do something to the + +799 +00:48:42,710 --> 00:48:45,190 +originator. But before he changes the originator, + +800 +00:48:45,250 --> 00:48:47,430 +he has to take his state so that he can retrieve + +801 +00:48:47,430 --> 00:48:51,970 +it later.but wants to be able to undo that change. + +802 +00:48:55,130 --> 00:48:59,370 +The caretaker first asks the originator for a + +803 +00:48:59,370 --> 00:49:04,070 +memento object, then it does whatever operation to + +804 +00:49:04,070 --> 00:49:07,890 +roll back to the state before the operation. It + +805 +00:49:07,890 --> 00:49:10,050 +returns the memento object to the + +806 +00:49:17,050 --> 00:49:21,250 +The memento object itself is an opaque object. + +807 +00:49:27,210 --> 00:49:31,350 +Transparent. The opaque is transparent. It is not + +808 +00:49:31,350 --> 00:49:33,710 +transparent. You cannot see it. It is not visible. + +809 +00:49:34,390 --> 00:49:37,490 +Who is this? The memento object. He explains it as + +810 +00:49:37,490 --> 00:49:41,230 +one which the caretaker cannotOr should not + +811 +00:49:41,230 --> 00:49:48,110 +change. Is it clear? It is a simple case of how I + +812 +00:49:48,110 --> 00:49:50,610 +want to give data to another object that is + +813 +00:49:50,610 --> 00:49:53,730 +preserved but does not show the details. Is it + +814 +00:49:53,730 --> 00:49:55,450 +clear? God bless you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/9NJNDi5kkDw_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/9NJNDi5kkDw_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..c2c6e8f5d232ed397a5d50d83f9a32876b38b148 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/9NJNDi5kkDw_postprocess.srt @@ -0,0 +1,3256 @@ +1 +00:00:04,910 --> 00:00:11,250 +Peace be upon you Okay guys, today I will give two + +2 +00:00:11,250 --> 00:00:13,230 +design patterns because these design patterns are + +3 +00:00:13,230 --> 00:00:17,810 +small Which are the iterator design pattern and + +4 +00:00:17,810 --> 00:00:20,410 +another design pattern called Memento design + +5 +00:00:20,410 --> 00:00:22,950 +pattern Okay, let's start with the first design + +6 +00:00:22,950 --> 00:00:24,750 +pattern, which is the iterator Did you hear about + +7 +00:00:24,750 --> 00:00:29,000 +the iterator before?Now guys, the iterator is + +8 +00:00:29,000 --> 00:00:33,600 +simply a way to make an iteration or loop on the + +9 +00:00:33,600 --> 00:00:40,320 +data structure elements If you used some + +10 +00:00:40,320 --> 00:00:43,120 +collections in Java, such as ArrayList, + +11 +00:00:43,260 --> 00:00:47,460 +LinkedList, HashSet, any kind of existing + +12 +00:00:47,460 --> 00:00:52,730 +collectionsYou can use the iterator to create a + +13 +00:00:52,730 --> 00:00:55,550 +loop on them So that we remember what the iterator + +14 +00:00:55,550 --> 00:00:58,870 +is, let's say it passed you before that If we come + +15 +00:00:58,870 --> 00:01:12,570 +to any class, for example Okay, + +16 +00:01:12,670 --> 00:01:14,470 +I came to the arraylist, for example + +17 +00:01:26,970 --> 00:01:38,830 +And then it can also have a linked list Linked + +18 +00:01:38,830 --> 00:01:45,210 +Linked And + +19 +00:01:45,210 --> 00:01:47,450 +there can be another data structure, TreeSet + +20 +00:01:59,050 --> 00:02:02,910 +Okay, these three data structures are all part of + +21 +00:02:02,910 --> 00:02:07,610 +an API in Java called Collections API. Okay? Maybe + +22 +00:02:07,610 --> 00:02:12,250 +you used to use ArrayList most of the time. So why + +23 +00:02:12,250 --> 00:02:14,430 +are they different from each other? In the end, + +24 +00:02:14,570 --> 00:02:18,010 +they are all lists. But each has a different + +25 +00:02:18,010 --> 00:02:22,770 +structure from the other.Okay, so the ArrayList in + +26 +00:02:22,770 --> 00:02:25,170 +Java is actually made up of normal arrays, even in + +27 +00:02:25,170 --> 00:02:29,310 +any other language, in Python for example. So, if + +28 +00:02:29,310 --> 00:02:32,050 +you open the class of the ArrayList, you will find + +29 +00:02:32,050 --> 00:02:34,970 +that it depends on normal arrays. The second + +30 +00:02:34,970 --> 00:02:38,470 +LinkedList depends on nodes connected to each + +31 +00:02:38,470 --> 00:02:44,290 +other, like this one. This is the LinkedList. The + +32 +00:02:44,290 --> 00:02:46,350 +TreeSet is actually a tree. + +33 +00:02:51,430 --> 00:02:55,710 +Okay? You don't know the details of this + +34 +00:02:55,710 --> 00:03:01,130 +structure. You don't have to know it. Okay, what + +35 +00:03:01,130 --> 00:03:04,950 +do we use? ArrayList or LinkedList or TreeSet? It + +36 +00:03:04,950 --> 00:03:07,870 +depends on the usage. For example, we know that + +37 +00:03:07,870 --> 00:03:11,910 +the normal array is very fast in access and + +38 +00:03:11,910 --> 00:03:15,290 +search. Okay? But it is slow and has a problem in + +39 +00:03:15,290 --> 00:03:19,220 +insert and remove.For example, if you remember in + +40 +00:03:19,220 --> 00:03:22,640 +Program 1, did you study Program 1? When you want + +41 +00:03:22,640 --> 00:03:25,520 +to insert an item here, or remove any item in the + +42 +00:03:25,520 --> 00:03:28,040 +array normally, you cannot delete this element. + +43 +00:03:28,720 --> 00:03:32,120 +You have to create a new array, for example, if we + +44 +00:03:32,120 --> 00:03:35,860 +delete a smaller size by 1, and delete all + +45 +00:03:35,860 --> 00:03:39,500 +previous elements, and forget this one, and take + +46 +00:03:39,500 --> 00:03:43,700 +the next one, and a long story.Okay? For what? To + +47 +00:03:43,700 --> 00:03:46,280 +delete one element. And this is the specific PC. + +48 +00:03:46,720 --> 00:03:49,240 +So I'm telling you that the Rail List, if you do a + +49 +00:03:49,240 --> 00:03:51,940 +lot of removal operations, you don't use it. And + +50 +00:03:51,940 --> 00:03:55,520 +who do we use? The Linked List. It takes up more + +51 +00:03:55,520 --> 00:03:57,080 +space in the memory because it has indicators. + +52 +00:03:57,780 --> 00:04:02,800 +Okay? But there arein add and remove and in insert + +53 +00:04:02,800 --> 00:04:05,480 +and remove it is easier and more efficient and + +54 +00:04:05,480 --> 00:04:08,220 +there is also the tree set which is the structure + +55 +00:04:08,220 --> 00:04:13,900 +made using a tree and this can be faster in search + +56 +00:04:13,900 --> 00:04:17,480 +than these two because it uses the algorithm for + +57 +00:04:17,480 --> 00:04:21,440 +example binary search and so on and so forth at + +58 +00:04:21,440 --> 00:04:24,220 +the end as a programmer you don't need to know the + +59 +00:04:24,220 --> 00:04:28,540 +details inside you can use them all together Now + +60 +00:04:28,540 --> 00:04:32,620 +the idea is if I want to make a loop on these + +61 +00:04:32,620 --> 00:04:39,580 +nodes Now java asked me if I want to make an + +62 +00:04:39,580 --> 00:04:41,860 +iteration, I want to go through the elements in + +63 +00:04:41,860 --> 00:04:44,160 +the data structure Did you find that the iteration + +64 +00:04:44,160 --> 00:04:47,240 +process is different or different in the data + +65 +00:04:47,240 --> 00:04:49,480 +structure? In the array it is normal, it is an + +66 +00:04:49,480 --> 00:04:52,000 +index and it moves and keeps moving In the linked + +67 +00:04:52,000 --> 00:04:54,780 +list, no, you have to see where the index is and + +68 +00:04:54,780 --> 00:04:58,170 +get the node and so onIn the tree, the process is + +69 +00:04:58,170 --> 00:05:00,510 +different, it is harder than these two, you have + +70 +00:05:00,510 --> 00:05:02,930 +to make a traversal for the tree, okay? And you + +71 +00:05:02,930 --> 00:05:05,830 +took in the data 13 ways of traversal, in order + +72 +00:05:05,830 --> 00:05:08,950 +and pre order and post order, right? Take the + +73 +00:05:08,950 --> 00:05:11,610 +father, then take the son to the right, and then + +74 +00:05:11,610 --> 00:05:14,230 +to the left, or take the father and finish the + +75 +00:05:14,230 --> 00:05:16,750 +branch and come back here again, so the ways of + +76 +00:05:16,750 --> 00:05:19,330 +passing through the elements are different, and if + +77 +00:05:19,330 --> 00:05:22,350 +there was a graph for example,It also becomes a + +78 +00:05:22,350 --> 00:05:25,550 +different way. Did I find that if I want to go + +79 +00:05:25,550 --> 00:05:27,370 +through the elements, whether it is a tree or a + +80 +00:05:27,370 --> 00:05:28,910 +linked list, I need to go as a programmer to + +81 +00:05:28,910 --> 00:05:31,410 +understand and review the data structure to know + +82 +00:05:31,410 --> 00:05:34,530 +how to go through these elements? No, they made it + +83 +00:05:34,530 --> 00:05:38,440 +easier for me.He told me that because programmers + +84 +00:05:38,440 --> 00:05:42,080 +don't have to go and understand step by step how + +85 +00:05:42,080 --> 00:05:44,480 +the structure works and how to make traversal + +86 +00:05:44,480 --> 00:05:45,900 +filetree, which is actually difficult because you + +87 +00:05:45,900 --> 00:05:48,300 +don't have to implement it for preorder, did you + +88 +00:05:48,300 --> 00:05:50,500 +implement it when you started the structure? Yes, + +89 +00:05:50,640 --> 00:05:54,280 +you have to do recursion and so on. So he told me + +90 +00:05:54,280 --> 00:05:57,530 +that we make it easier for programmers.Okay? We + +91 +00:05:57,530 --> 00:06:00,570 +want to provide a standard way that whatever is + +92 +00:06:00,570 --> 00:06:02,950 +different in the data structure, it should have + +93 +00:06:02,950 --> 00:06:05,690 +one way to go through all elements. What is this + +94 +00:06:05,690 --> 00:06:10,350 +method? If you see any one of these, A1 or A2 or + +95 +00:06:10,350 --> 00:06:15,650 +A3, this is A3, it has a method called iterator. + +96 +00:06:15,790 --> 00:06:18,990 +Okay? And this method iterator returns an object + +97 +00:06:18,990 --> 00:06:22,690 +from which it is iterator. + +98 +00:06:26,910 --> 00:06:28,510 +Okay? For example, this is called an iter. + +99 +00:06:31,670 --> 00:06:34,650 +Like this. What is this iterator exactly? Because + +100 +00:06:34,650 --> 00:06:38,530 +we imagine it. This is a array. It consists of + +101 +00:06:38,530 --> 00:06:40,910 +elements in it. You can imagine the iterator as a + +102 +00:06:40,910 --> 00:06:42,590 +marker pointing to what is before the first + +103 +00:06:42,590 --> 00:06:48,110 +element.Okay? This iterator, imagine that it is a + +104 +00:06:48,110 --> 00:06:52,470 +marker, it is really a marker, when you use it, + +105 +00:06:52,490 --> 00:06:54,890 +you say that as long as there are two very + +106 +00:06:54,890 --> 00:06:58,670 +important methods, an iterator called hasNext, + +107 +00:07:00,650 --> 00:07:03,930 +okay? And then you say, for example, system.out + +108 +00:07:03,930 --> 00:07:08,310 +.println iterator.next + +109 +00:07:10,680 --> 00:07:12,620 +What is the difference between hasnext and next? + +110 +00:07:12,840 --> 00:07:16,180 +Hasnext means that it sees. For example, I have + +111 +00:07:16,180 --> 00:07:22,180 +data stored here. I check if there is an element + +112 +00:07:22,180 --> 00:07:26,120 +after the index. Of course, here I have an + +113 +00:07:26,120 --> 00:07:29,460 +element, so this method will return true. If there + +114 +00:07:29,460 --> 00:07:32,360 +is no element, it will return false. Why? Because + +115 +00:07:32,360 --> 00:07:35,580 +if there is an element, it will execute .next + +116 +00:07:35,580 --> 00:07:37,860 +after it. What does .next do? It moves the index a + +117 +00:07:37,860 --> 00:07:41,060 +stepand then it takes the existing element, which + +118 +00:07:41,060 --> 00:07:42,960 +means it increases the index and then reads the + +119 +00:07:42,960 --> 00:07:45,880 +element here and since this is the while loop, it + +120 +00:07:45,880 --> 00:07:47,720 +executes this next again is there a next element? + +121 +00:07:48,540 --> 00:07:50,400 +yes, there is a next element, it increases and + +122 +00:07:50,400 --> 00:07:52,880 +executes the next what does the next do? it moves + +123 +00:07:52,880 --> 00:07:55,660 +the index and reads the element and so on until it + +124 +00:07:55,660 --> 00:07:59,320 +reaches here is there a next element? no, it + +125 +00:07:59,320 --> 00:08:02,580 +returns false and leaves the loop because this is + +126 +00:08:02,580 --> 00:08:07,230 +the way of the iteratorSaved it for me, and you + +127 +00:08:07,230 --> 00:08:12,510 +can use it with any kind of collection. Of course, + +128 +00:08:13,250 --> 00:08:15,290 +in the tree specifically, there is more than one + +129 +00:08:15,290 --> 00:08:16,870 +way to pass through the trees. But what does it + +130 +00:08:16,870 --> 00:08:20,210 +use? We don't know. It doesn't matter. In order or + +131 +00:08:20,210 --> 00:08:22,010 +pre order? The important thing is that it saved me + +132 +00:08:22,010 --> 00:08:25,470 +a way to pass through the trees. If you don't like + +133 +00:08:25,470 --> 00:08:29,150 +this method, go and implement it in the way you + +134 +00:08:29,150 --> 00:08:31,590 +want. Review the data structure and do it. It will + +135 +00:08:31,590 --> 00:08:33,410 +tell you that I simplified it for you and saved + +136 +00:08:33,410 --> 00:08:36,600 +you in the way of the iterator, that you go + +137 +00:08:36,600 --> 00:08:39,900 +through all the elements without knowing what to + +138 +00:08:39,900 --> 00:08:42,220 +do. So the idea of the iterator, this is the + +139 +00:08:42,220 --> 00:08:45,360 +design pattern, that the data structures that I + +140 +00:08:45,360 --> 00:08:48,680 +store data in may differ in their structure, but + +141 +00:08:48,680 --> 00:08:50,220 +at the same time, I don't want to force the + +142 +00:08:50,220 --> 00:08:53,000 +programmer to go and understand how the data + +143 +00:08:53,000 --> 00:08:54,620 +structure is made in order to make a loop on the + +144 +00:08:54,620 --> 00:08:56,820 +elements. So it provides you with a standard way + +145 +00:08:56,820 --> 00:08:59,180 +that whatever the difference in the data + +146 +00:08:59,180 --> 00:09:01,640 +structure, this is a unified way to go through the + +147 +00:09:01,640 --> 00:09:05,660 +elements in it.Okay? Now, after we understand what + +148 +00:09:05,660 --> 00:09:08,260 +is the idea of iterator, we want to see how we + +149 +00:09:08,260 --> 00:09:11,840 +make our own iterator. Let's say you made your own + +150 +00:09:11,840 --> 00:09:16,460 +data structure. Okay? And you want to make it an + +151 +00:09:16,460 --> 00:09:18,340 +iterator. Because these are not better than us. + +152 +00:09:18,780 --> 00:09:20,980 +Those who put dot iterator and get iterator and + +153 +00:09:20,980 --> 00:09:25,040 +make loop. We want to make our own iterator. But + +154 +00:09:25,040 --> 00:09:26,900 +before we make our own iterator, we want to make + +155 +00:09:26,900 --> 00:09:31,090 +our own data structure.Okay, sometimes you want to + +156 +00:09:31,090 --> 00:09:32,810 +make a tree, you want to make a graph specific to + +157 +00:09:32,810 --> 00:09:35,610 +it and you want to provide the programmer a way to + +158 +00:09:35,610 --> 00:09:37,890 +go through the elements that are in your graph + +159 +00:09:37,890 --> 00:09:42,410 +Okay, so you want to provide him a way, we prefer + +160 +00:09:42,410 --> 00:09:44,990 +to provide him the way of the iterator to deal + +161 +00:09:44,990 --> 00:09:48,930 +with your data structure like any of the existing + +162 +00:09:48,930 --> 00:09:53,050 +data structure standards Okay, so to make this + +163 +00:09:53,050 --> 00:09:55,190 +example, we come to make a new class, I want to + +164 +00:09:55,190 --> 00:09:59,360 +call it MyArray What does MyArray represent? It is + +165 +00:09:59,360 --> 00:10:02,200 +a data structure specific to it. To simplify, + +166 +00:10:02,860 --> 00:10:06,140 +let's assume that the data structure specific to + +167 +00:10:06,140 --> 00:10:15,120 +us is based on an array of type T called items. + +168 +00:10:16,820 --> 00:10:20,300 +And I want to make it parametrized so that when I + +169 +00:10:20,300 --> 00:10:24,300 +create MyArray, I can define its data type. It can + +170 +00:10:24,300 --> 00:10:27,160 +be a string or integer.whatever you want it to be + +171 +00:10:27,160 --> 00:10:32,300 +and actually my myarray is mainly based on what? + +172 +00:10:33,620 --> 00:10:37,020 +on a regular array so we are doing something that + +173 +00:10:37,020 --> 00:10:40,320 +talks about the array list because the array list + +174 +00:10:40,320 --> 00:10:43,720 +is originally based on the array but of course the + +175 +00:10:43,720 --> 00:10:46,060 +array list made our life much easier right or not? + +176 +00:10:46,320 --> 00:10:49,980 +you stopped seeing the size and everything? okay + +177 +00:10:49,980 --> 00:10:55,550 +and this is the same thingthen we want to do here + +178 +00:10:55,550 --> 00:10:59,290 +int capacity which is the virtual size of the + +179 +00:10:59,290 --> 00:11:01,170 +array because we know that you can't create any + +180 +00:11:01,170 --> 00:11:03,790 +array that has the same size someone might say + +181 +00:11:03,790 --> 00:11:05,650 +that if we create an array list, we don't give it + +182 +00:11:05,650 --> 00:11:07,530 +the same size no, what happens is that he creates + +183 +00:11:07,530 --> 00:11:10,770 +an array list and gives it a virtual size for + +184 +00:11:10,770 --> 00:11:16,030 +example 10 or 100 and you add, happy, add, add, + +185 +00:11:16,030 --> 00:11:20,560 +add, after he finishes when you create a new ad, + +186 +00:11:20,940 --> 00:11:22,980 +it will not create a new ad, it will create a + +187 +00:11:22,980 --> 00:11:24,820 +bigger array and it will transfer the data from + +188 +00:11:24,820 --> 00:11:27,000 +the top to the bottom and it will continue all of + +189 +00:11:27,000 --> 00:11:29,660 +this you will not see but all of this happens in + +190 +00:11:29,660 --> 00:11:33,160 +the ArrayList ok, why did I make the capacity 100? + +191 +00:11:33,260 --> 00:11:38,220 +because when I say public myArray this constructor + +192 +00:11:38,220 --> 00:11:46,130 +will go to items and say newOf course, this will + +193 +00:11:46,130 --> 00:11:53,070 +be like this, new object And + +194 +00:11:53,070 --> 00:11:56,030 +here is the capacity So, create an array with the + +195 +00:11:56,030 --> 00:11:58,130 +size of the capacity of the object type and make + +196 +00:11:58,130 --> 00:12:00,430 +it a casting for what? For T, which is the type + +197 +00:12:00,430 --> 00:12:07,170 +that we want So far, what we have done is that you + +198 +00:12:07,170 --> 00:12:14,090 +can create a new object of the type MyArray + +199 +00:12:16,550 --> 00:12:25,550 +for example string a4 is equal to new my myarray + +200 +00:12:25,550 --> 00:12:30,590 +ok guys? ok, I also found out that we need to make + +201 +00:12:30,590 --> 00:12:32,650 +method add so that we can add to it, aren't they + +202 +00:12:32,650 --> 00:12:37,830 +add too? ok, we make add we come to the myarray I + +203 +00:12:37,830 --> 00:12:41,130 +found out that when we come to make add we need to + +204 +00:12:41,130 --> 00:12:45,360 +make integer indexWhy? So that it stays memorized. + +205 +00:12:45,640 --> 00:12:47,720 +We haven't talked about the iterator yet. We are + +206 +00:12:47,720 --> 00:12:51,820 +working on it. Because when you come and make a + +207 +00:12:51,820 --> 00:12:54,520 +loop, this is in the hands of the index. I don't + +208 +00:12:54,520 --> 00:12:56,780 +want to fill the whole array, of course. I want to + +209 +00:12:56,780 --> 00:12:59,560 +put five elements. The index just needs to match + +210 +00:12:59,560 --> 00:13:02,560 +with whom? With the last element. So that when you + +211 +00:13:02,560 --> 00:13:04,960 +come and make a loop after that, it loops from the + +212 +00:13:04,960 --> 00:13:08,400 +first to whom? To where the index was. The rest is + +213 +00:13:08,400 --> 00:13:12,060 +still empty, it hasn't been filled yet. So I + +214 +00:13:12,060 --> 00:13:14,940 +assumed, you can assume that the index is zero, I + +215 +00:13:14,940 --> 00:13:17,260 +assumed that it is less than one, so that as long + +216 +00:13:17,260 --> 00:13:20,700 +as no element is filled, the value of the index is + +217 +00:13:20,700 --> 00:13:24,000 +still less than one. Now I want to make a method + +218 +00:13:24,000 --> 00:13:31,060 +public void add, and this takes an item of type T. + +219 +00:13:32,960 --> 00:13:35,980 +Now I want to make a new element. The logic is + +220 +00:13:35,980 --> 00:13:39,220 +that I want to go to the index and add it to one, + +221 +00:13:39,360 --> 00:13:45,140 +then I will tell it itemsI have the index, put it + +222 +00:13:45,140 --> 00:13:48,880 +to the item Right or not guys? Yes, but this needs + +223 +00:13:48,880 --> 00:13:50,980 +a condition before I want to make sure that it + +224 +00:13:50,980 --> 00:13:53,020 +does not reach the end, okay? + +225 +00:13:55,900 --> 00:13:59,480 +So I want to tell him what? If the index is + +226 +00:13:59,480 --> 00:14:06,760 +smaller than items.length minus one + +227 +00:14:11,800 --> 00:14:15,780 +Okay, why is it smaller than length minus one? For + +228 +00:14:15,780 --> 00:14:21,320 +example, how big was the list? Yes, six. The index + +229 +00:14:21,320 --> 00:14:25,620 +always indicates For example, the index here, what + +230 +00:14:25,620 --> 00:14:33,140 +is its value? 0, 1, 2, 3, 4, 4. I want to check if + +231 +00:14:33,140 --> 00:14:36,680 +the index 4 is less than length-max 1, less than + +232 +00:14:36,680 --> 00:14:41,320 +what happens? Less than 5, correct. Of course, it + +233 +00:14:41,320 --> 00:14:43,280 +means that there is a place. So, what do I do? I + +234 +00:14:43,280 --> 00:14:45,960 +increase the index. What happened here? What is + +235 +00:14:45,960 --> 00:14:50,180 +its value? 5, and I put my element. I want to make + +236 +00:14:50,180 --> 00:14:54,100 +an add again. The gate should not allow it. So I + +237 +00:14:54,100 --> 00:14:56,120 +want to ask him if the index is smaller than... I + +238 +00:14:56,120 --> 00:14:57,060 +don't want to tell him the index, if I tell him + +239 +00:14:57,060 --> 00:14:59,140 +it's smaller than the length, it's true. Okay? + +240 +00:14:59,340 --> 00:15:01,040 +It's supposed to continue like this. Smaller than + +241 +00:15:01,040 --> 00:15:05,160 +the length minus 1. Will 5 be smaller than 5? No. + +242 +00:15:05,360 --> 00:15:07,820 +It didn't happen, which means it won't add a new + +243 +00:15:07,820 --> 00:15:11,320 +element. Okay? So if the index is smaller than the + +244 +00:15:11,320 --> 00:15:16,020 +length minus 1 Because + +245 +00:15:16,020 --> 00:15:18,800 +if it's actually smaller than the length minus 1, + +246 +00:15:18,860 --> 00:15:21,850 +it will increase the index and then we put the + +247 +00:15:21,850 --> 00:15:26,390 +item this is for the add method this gate after we + +248 +00:15:26,390 --> 00:15:29,110 +made the method add you are with me till now? we + +249 +00:15:29,110 --> 00:15:31,870 +can go to my iterator and say what is this gate? + +250 +00:15:32,190 --> 00:15:41,230 +a4.add this is for example ahmed a4.add this is + +251 +00:15:41,230 --> 00:15:45,590 +aleh this + +252 +00:15:45,590 --> 00:15:50,690 +adds elements to itDo you guys want to make a loop + +253 +00:15:50,690 --> 00:15:55,210 +on our array? Ok, we want to make it like these + +254 +00:15:55,210 --> 00:15:58,590 +guys, we want to make an iterator Currently, if I + +255 +00:15:58,590 --> 00:16:02,850 +tell him a4.iterator, we don't have an iterator, + +256 +00:16:03,130 --> 00:16:06,410 +ok? And it should also be that all these guys here + +257 +00:16:06,410 --> 00:16:11,210 +should be private, why? I can't know what's in the + +258 +00:16:11,210 --> 00:16:11,670 +structure + +259 +00:16:18,530 --> 00:16:22,350 +Okay, if I say a4. I will not see anything except + +260 +00:16:22,350 --> 00:16:26,930 +the method add. Okay, if I say I want to make a + +261 +00:16:26,930 --> 00:16:30,390 +loop, before I make add, I will also find one of + +262 +00:16:30,390 --> 00:16:32,850 +the things that should be present, which is + +263 +00:16:32,850 --> 00:16:35,990 +remove. Okay, there is remove in the index and + +264 +00:16:35,990 --> 00:16:40,030 +there is remove in the item itself. Okay, but I + +265 +00:16:40,030 --> 00:16:43,630 +will not do this. Why? Because this remove takes a + +266 +00:16:43,630 --> 00:16:45,850 +lot of time Remove for any element they want to + +267 +00:16:45,850 --> 00:16:48,330 +change it if it came without creating a new array + +268 +00:16:48,330 --> 00:16:51,290 +with a smaller size and doing shift to take the + +269 +00:16:51,290 --> 00:16:54,230 +previous elements and put them in the new one Like + +270 +00:16:54,230 --> 00:16:58,070 +the code we did in one program This is not our + +271 +00:16:58,070 --> 00:17:03,630 +topic I made the add now and I want to do loop on + +272 +00:17:03,630 --> 00:17:06,810 +elements I want there to be something called + +273 +00:17:06,810 --> 00:17:08,970 +itator + +274 +00:17:15,750 --> 00:17:20,850 +iterator, string, this is an example of an + +275 +00:17:20,850 --> 00:17:25,990 +iterator, an iterator 2 basically I say that as + +276 +00:17:25,990 --> 00:17:28,730 +long as the iterator 2 dot has next + +277 +00:17:44,320 --> 00:17:46,880 +Ok guys? But of course this method doesn't exist. + +278 +00:17:47,620 --> 00:17:49,700 +It doesn't exist. Let's go and make it. So we come + +279 +00:17:49,700 --> 00:17:52,400 +to the MyArray. Ok? And here we want to make a + +280 +00:17:52,400 --> 00:17:57,480 +method public What should return the method? + +281 +00:17:58,900 --> 00:18:02,860 +Iterator of type T. Right? The name of the method + +282 +00:18:02,860 --> 00:18:03,600 +is iterator. + +283 +00:18:06,400 --> 00:18:09,920 +And it will run. Ok. Since this method returns + +284 +00:18:09,920 --> 00:18:13,680 +iterator, we must create iterator. + +285 +00:18:15,920 --> 00:18:27,240 +iterator T is equal to new iterator + +286 +00:18:27,240 --> 00:18:32,180 +because java has an interface called iterator + +287 +00:18:32,180 --> 00:18:35,780 +there are two methods which are hasNext and next + +288 +00:18:38,280 --> 00:18:40,640 +Okay, why did he refuse? He made an error. Let's + +289 +00:18:40,640 --> 00:18:44,540 +see what the error says. Cannot be instantiated. + +290 +00:18:44,620 --> 00:18:46,680 +Why? Because the iterator is an interface. I can't + +291 +00:18:46,680 --> 00:18:49,360 +make an object from an interface. Except in one + +292 +00:18:49,360 --> 00:18:51,800 +case. What is it? Anonymous class. Yes, you can + +293 +00:18:51,800 --> 00:18:53,260 +make an anonymous class. Or you can make another + +294 +00:18:53,260 --> 00:18:56,180 +class and implement it to the iterator and make an + +295 +00:18:56,180 --> 00:18:58,760 +object from it. Okay? So this solves the problem + +296 +00:18:58,760 --> 00:19:02,780 +of how after these two brackets you open the code + +297 +00:19:02,780 --> 00:19:06,830 +brackets.To implement for whom? For the missing + +298 +00:19:06,830 --> 00:19:11,830 +methods So the get-hick will implement the next + +299 +00:19:11,830 --> 00:19:13,410 +and the hasnext, these are mandatory, we have to + +300 +00:19:13,410 --> 00:19:18,290 +make them, it will generate You can make an object + +301 +00:19:18,290 --> 00:19:21,850 +from an operator provided that you complete the + +302 +00:19:21,850 --> 00:19:24,170 +missing methods, this is the idea of anonymous + +303 +00:19:24,170 --> 00:19:29,280 +classAn anonymous class needs for example an + +304 +00:19:29,280 --> 00:19:32,200 +object when you click on a button, what do you + +305 +00:19:32,200 --> 00:19:37,140 +call it? Event listener? Event listener, we used + +306 +00:19:37,140 --> 00:19:39,360 +to call it new event listener, which opens two + +307 +00:19:39,360 --> 00:19:40,700 +boxes and completes the implementation of the + +308 +00:19:40,700 --> 00:19:43,460 +missing method. When you complete the missing + +309 +00:19:43,460 --> 00:19:48,470 +method, the object becomes complete. so the + +310 +00:19:48,470 --> 00:19:51,370 +interface in java has an iterator to tell you that + +311 +00:19:51,370 --> 00:19:52,690 +anyone who wants to create an iterator should + +312 +00:19:52,690 --> 00:19:55,470 +create an implement for this interface and it + +313 +00:19:55,470 --> 00:19:57,950 +brought these two methods which is the hasNext() + +314 +00:19:57,950 --> 00:20:00,210 +and the method next() which returns E I'm just + +315 +00:20:00,210 --> 00:20:03,210 +going to remove E and replace it with T okay? + +316 +00:20:08,610 --> 00:20:12,850 +okay and in the end it should return the iterator + +317 +00:20:12,850 --> 00:20:18,370 +itself okay, why is it here? Okay, + +318 +00:20:24,650 --> 00:20:34,910 +let's go back to anything to make sure I + +319 +00:20:34,910 --> 00:20:39,750 +say + +320 +00:20:53,800 --> 00:20:56,040 +Okay, so it wants you to write the parameters + +321 +00:20:56,040 --> 00:20:57,780 +here. Anyway, did you find out guys that we are + +322 +00:20:57,780 --> 00:21:01,090 +supposed to implement for whom? for the has next + +323 +00:21:01,090 --> 00:21:03,970 +and the next and those who want to implement for + +324 +00:21:03,970 --> 00:21:06,690 +the has next and the next must understand how the + +325 +00:21:06,690 --> 00:21:10,170 +data structure is made because we use the array + +326 +00:21:10,170 --> 00:21:12,570 +pay attention to me did you find the idea of ​​the + +327 +00:21:12,570 --> 00:21:15,190 +iterator as I explained a while ago it is a marker + +328 +00:21:15,190 --> 00:21:18,710 +that marks where before the first place yet + +329 +00:21:18,710 --> 00:21:20,290 +because the idea of ​​the iterator starts from the + +330 +00:21:20,290 --> 00:21:22,690 +first to the last okay so did you find the + +331 +00:21:22,690 --> 00:21:25,930 +iterator itself there should be a marker so we + +332 +00:21:25,930 --> 00:21:29,870 +come inside the iterator okay and we do int Let's + +333 +00:21:29,870 --> 00:21:33,370 +call it an Iter Index What is its value? One + +334 +00:21:33,370 --> 00:21:35,990 +person says, you are above the index, the index + +335 +00:21:35,990 --> 00:21:38,550 +above has nothing to do with this, it is + +336 +00:21:38,550 --> 00:21:40,670 +responsible for determining how much I filled, + +337 +00:21:41,630 --> 00:21:45,210 +okay? So the first index, the basic structure, is + +338 +00:21:45,210 --> 00:21:47,530 +this one, for example, which is here, and where is + +339 +00:21:47,530 --> 00:21:51,150 +the iterator index? It is here, so I found that it + +340 +00:21:51,150 --> 00:21:55,010 +is my responsibility to move this index and get + +341 +00:21:55,010 --> 00:21:57,910 +the elements until it reaches this pointI have + +342 +00:21:57,910 --> 00:22:00,250 +this, this is the idea, this is in the case of + +343 +00:22:00,250 --> 00:22:02,590 +array of course, if there is a case of tree or + +344 +00:22:02,590 --> 00:22:03,890 +graph or something like that, the subject is + +345 +00:22:03,890 --> 00:22:07,050 +different, you and your skills, how you index + +346 +00:22:07,050 --> 00:22:10,190 +yourself, this index keeps moving to someone else + +347 +00:22:10,190 --> 00:22:15,550 +or to whom, to the end of the list or the data + +348 +00:22:15,550 --> 00:22:18,520 +structureOkay, so it started with .. did you find + +349 +00:22:18,520 --> 00:22:20,300 +this index? What is supposed to be in it? What + +350 +00:22:20,300 --> 00:22:23,600 +does it mean? Is there a following element or not? + +351 +00:22:24,600 --> 00:22:29,620 +Now, it is supposed to be simply that the iterator + +352 +00:22:29,620 --> 00:22:35,200 +index is smaller than the index No, it's smaller + +353 +00:22:35,200 --> 00:22:39,500 +than that. I'll tell you why. Because I really .. + +354 +00:22:39,500 --> 00:22:44,000 +this is the index of my list. If this is .. this + +355 +00:22:44,000 --> 00:22:46,440 +is the index of my iterator. Okay? What is the + +356 +00:22:46,440 --> 00:22:49,060 +last element that I should read when it's like + +357 +00:22:49,060 --> 00:22:54,380 +this? This is before this. Okay? What is this? We + +358 +00:22:54,380 --> 00:22:56,560 +said that it indicates what came before. Because + +359 +00:22:56,560 --> 00:22:59,720 +when it says has next, is this less than this? + +360 +00:23:00,100 --> 00:23:04,090 +Correct? If it's less than this, I add it. and I + +361 +00:23:04,090 --> 00:23:07,370 +read this, right? these two gates are in the same + +362 +00:23:07,370 --> 00:23:12,450 +place when this gate does has next we don't want + +363 +00:23:12,450 --> 00:23:15,990 +it to be equal why? because this gate is going to + +364 +00:23:15,990 --> 00:23:19,870 +be smaller than the iterator index is smaller than + +365 +00:23:19,870 --> 00:23:22,710 +the index so this has next will return true of + +366 +00:23:22,710 --> 00:23:24,310 +false only if it says that there is a next element + +367 +00:23:24,310 --> 00:23:30,750 +or there is no next element okay? okay next this + +368 +00:23:30,750 --> 00:23:36,030 +returns the item instead of using array, the next + +369 +00:23:36,030 --> 00:23:38,930 +element will be what? it will provide a step + +370 +00:23:38,930 --> 00:23:42,370 +indicator and return the element that it has if it + +371 +00:23:42,370 --> 00:23:44,070 +was a tree, you would see how it connects to the + +372 +00:23:44,070 --> 00:23:45,970 +son for example the one on the right or the son on + +373 +00:23:45,970 --> 00:23:50,570 +the left so here we say return name of the array + +374 +00:23:50,570 --> 00:23:55,430 +items we have not provided yet this is iterator + +375 +00:23:55,430 --> 00:24:02,270 +index plus plus and return which is at the + +376 +00:24:02,270 --> 00:24:06,030 +iterator index okay? + +377 +00:24:06,150 --> 00:24:11,790 +which one did we implement guys? the next we + +378 +00:24:11,790 --> 00:24:13,790 +finished the iterator, we created an object from + +379 +00:24:13,790 --> 00:24:17,150 +it and in the end we returned the iterator we will + +380 +00:24:17,150 --> 00:24:22,730 +go back to ... because the code is running okay? + +381 +00:24:23,050 --> 00:24:25,470 +it is supposed to bring the iterator and make a + +382 +00:24:25,470 --> 00:24:29,750 +loop on it okay? but this code that I found below + +383 +00:24:37,590 --> 00:24:43,750 +Now it is running and it is outputting loop to + +384 +00:24:43,750 --> 00:24:49,950 +Ahmed, Ali and Omar It is like we made our own + +385 +00:24:49,950 --> 00:24:56,420 +playlist and we made method iterator in it The + +386 +00:24:56,420 --> 00:24:59,240 +idea is that you provide a unified form or method + +387 +00:24:59,240 --> 00:25:03,420 +to connect to the elements to be like any other + +388 +00:25:03,420 --> 00:25:07,100 +data structure and the programmer does not have to + +389 +00:25:07,100 --> 00:25:11,340 +know the details. As we said, these ideas or + +390 +00:25:11,340 --> 00:25:16,000 +design patterns benefit us when you design an API. + +391 +00:25:16,780 --> 00:25:20,160 +The successful API is something that facilitates + +392 +00:25:20,160 --> 00:25:24,550 +as much as possible to the user is to use the + +393 +00:25:24,550 --> 00:25:28,590 +code, right or wrong? the easier it is to use a + +394 +00:25:28,590 --> 00:25:32,090 +word has its own data structure you want to make + +395 +00:25:32,090 --> 00:25:34,270 +it easier for the user so you provide him with the + +396 +00:25:34,270 --> 00:25:37,710 +iterator you are using a tree instead of telling + +397 +00:25:37,710 --> 00:25:43,130 +him to make a traverse in the tree this iterator + +398 +00:25:43,130 --> 00:25:46,530 +that I provided is passing through the existing + +399 +00:25:46,530 --> 00:25:50,710 +elements okay guys? okay, did you get it? let's + +400 +00:25:50,710 --> 00:25:50,970 +read + +401 +00:25:54,350 --> 00:26:00,570 +The iterator is an object that provides a standard + +402 +00:26:00,570 --> 00:26:04,430 +way to examine all elements of any collection It + +403 +00:26:04,430 --> 00:26:12,570 +is a uniform interface for + +404 +00:26:12,570 --> 00:26:16,250 +traversing many different data structureswithout + +405 +00:26:16,250 --> 00:26:20,710 +exposing their implementation without exposing + +406 +00:26:20,710 --> 00:26:23,370 +their implementation without exposing their + +407 +00:26:23,370 --> 00:26:23,450 +implementation without exposing their + +408 +00:26:23,450 --> 00:26:23,810 +implementation without exposing their + +409 +00:26:23,810 --> 00:26:23,890 +implementation without exposing their + +410 +00:26:23,890 --> 00:26:24,210 +implementation without exposing their + +411 +00:26:24,210 --> 00:26:24,390 +implementation without exposing their + +412 +00:26:24,390 --> 00:26:25,270 +implementation without exposing their + +413 +00:26:25,270 --> 00:26:25,310 +implementation without exposing their + +414 +00:26:25,310 --> 00:26:25,430 +implementation without exposing their + +415 +00:26:25,430 --> 00:26:25,770 +implementation without exposing their + +416 +00:26:25,770 --> 00:26:25,790 +implementation without exposing their + +417 +00:26:25,790 --> 00:26:26,790 +implementation without exposing their + +418 +00:26:26,790 --> 00:26:28,190 +implementation without exposing their + +419 +00:26:28,190 --> 00:26:29,930 +implementation without exposing their + +420 +00:26:29,930 --> 00:26:30,370 +implementation without exposing their + +421 +00:26:30,370 --> 00:26:34,420 +implementation without It's like when you create a + +422 +00:26:34,420 --> 00:26:36,460 +loop and you find a certain element and you want + +423 +00:26:36,460 --> 00:26:38,460 +to remove it But of course I didn't create a loop + +424 +00:26:38,460 --> 00:26:41,420 +to remove or implement it because I don't want + +425 +00:26:41,420 --> 00:26:44,140 +this work to be left to me What matters is the + +426 +00:26:44,140 --> 00:26:47,360 +idea, what is the goal of the iterator and how do + +427 +00:26:47,360 --> 00:26:52,940 +we work with any data structure that we have Now + +428 +00:26:52,940 --> 00:26:55,660 +of course in Java we have an interface called + +429 +00:26:55,660 --> 00:26:59,780 +iterator Actually it has three methods, hasNext, + +430 +00:26:59,900 --> 00:27:03,500 +next and removeOf course, you have to implement + +431 +00:27:03,500 --> 00:27:05,540 +for whom? For the one who has next and next and + +432 +00:27:05,540 --> 00:27:09,020 +remove can not implement Of course, someone will + +433 +00:27:09,020 --> 00:27:11,140 +ask, he will say, as long as the remove is present + +434 +00:27:11,140 --> 00:27:14,240 +in the iterator interface, its implementation + +435 +00:27:14,240 --> 00:27:18,480 +should be mandatory, okay? Did you find in Java 8? + +436 +00:27:19,170 --> 00:27:22,290 +Starting from Java 8, + +437 +00:27:23,190 --> 00:27:35,590 +you can + +438 +00:27:35,590 --> 00:27:39,570 +add default methods to the interface so that the + +439 +00:27:39,570 --> 00:27:43,440 +user does not implementIt's mandatory for some + +440 +00:27:43,440 --> 00:27:46,060 +methods, okay? Among the methods that they made, + +441 +00:27:46,360 --> 00:27:48,720 +it's a new way, the interface has optional things + +442 +00:27:48,720 --> 00:27:52,540 +In the past, the entire interface was mandatory, + +443 +00:27:52,680 --> 00:27:55,360 +but now there are optional things So he put the + +444 +00:27:55,360 --> 00:27:57,200 +method remove as an optional thing, you can + +445 +00:27:57,200 --> 00:28:02,270 +implement it or not, but these are mandatory In + +446 +00:28:02,270 --> 00:28:09,950 +Java, all types of collections, such as ArrayList, + +447 +00:28:10,170 --> 00:28:14,190 +LinkedList, TreeSet, HashSet, etc. All of them + +448 +00:28:14,190 --> 00:28:17,270 +follow an API called Collection All of them + +449 +00:28:17,270 --> 00:28:22,470 +implement one interface called Collection The + +450 +00:28:22,470 --> 00:28:26,290 +ArrayList is a collection, and LinkedList is a + +451 +00:28:26,290 --> 00:28:30,640 +collection This interface CollectionThis is an + +452 +00:28:30,640 --> 00:28:34,200 +interface with a method called iterator. Why? + +453 +00:28:34,280 --> 00:28:37,760 +Because anyone who wants to make a collection must + +454 +00:28:37,760 --> 00:28:41,860 +support whom? He must support the iterator. As I + +455 +00:28:41,860 --> 00:28:44,000 +told you, this is the standard way, you must + +456 +00:28:44,000 --> 00:28:46,620 +provide it. If you made a collection, you must + +457 +00:28:46,620 --> 00:28:49,930 +provide it to the user. Iterator to easily create + +458 +00:28:49,930 --> 00:28:54,350 +a loop Create whatever data structure you want But + +459 +00:28:54,350 --> 00:28:56,690 +in the end, don't force the user, provide him with + +460 +00:28:56,690 --> 00:28:59,570 +an iterator And this is the idea of the iterator + +461 +00:28:59,570 --> 00:29:03,590 +design pattern This is just an example of how I + +462 +00:29:03,590 --> 00:29:07,690 +create a loop on the iterator Like a while ago, I + +463 +00:29:07,690 --> 00:29:10,870 +was doing while iterator.hasnex He did it using + +464 +00:29:10,870 --> 00:29:11,350 +for + +465 +00:29:14,800 --> 00:29:17,680 +Loops The for loop of course, you know that for is + +466 +00:29:17,680 --> 00:29:20,000 +more than a part of it The first part is executed + +467 +00:29:20,000 --> 00:29:23,640 +only once, which is when I go to the iterator and + +468 +00:29:23,640 --> 00:29:26,320 +initialize it to a variable called iter And then + +469 +00:29:26,320 --> 00:29:31,040 +in each loop it executes the has next I prefer the + +470 +00:29:31,040 --> 00:29:34,040 +while loop because it is easier to use here + +471 +00:29:37,140 --> 00:29:39,860 +have adding your own iterator for example here it + +472 +00:29:39,860 --> 00:29:42,700 +gives an example like I made a class named MyArray + +473 +00:29:42,700 --> 00:29:45,520 +here I made a class named PlayerList for example + +474 +00:29:45,520 --> 00:29:48,240 +this is a list dedicated to you for players for + +475 +00:29:48,240 --> 00:29:50,300 +example to a specific data structure you need to + +476 +00:29:50,300 --> 00:29:52,940 +support the iterator in it all you need to do in + +477 +00:29:52,940 --> 00:29:55,500 +the class is to make a method called iterator + +478 +00:29:55,500 --> 00:29:59,600 +returns iterator and implement for whom? for this + +479 +00:29:59,600 --> 00:30:01,640 +method which creates an object of the type + +480 +00:30:01,640 --> 00:30:04,060 +iterator and implement for next and hasNext and + +481 +00:30:04,060 --> 00:30:08,160 +returns this objectAlright guys, and that's how we + +482 +00:30:08,160 --> 00:30:11,600 +finish the iterator pattern. Let's see another + +483 +00:30:11,600 --> 00:30:14,960 +design pattern which is also simple, it's called + +484 +00:30:14,960 --> 00:30:19,420 +the memento pattern. Do you see the word memento? + +485 +00:30:21,710 --> 00:30:24,710 +This is not an English word, I think it's a + +486 +00:30:24,710 --> 00:30:27,030 +Spanish word meaning something like minute or + +487 +00:30:27,030 --> 00:30:31,270 +thinker or something like thinking, okay? + +488 +00:30:34,290 --> 00:30:37,070 +Of course these slides are not required, okay? + +489 +00:30:37,210 --> 00:30:38,650 +What is required in the memento pattern are the + +490 +00:30:38,650 --> 00:30:42,010 +last two slides, okay? Because what is the memento + +491 +00:30:42,010 --> 00:30:44,110 +pattern in a very short form? This is a simple + +492 +00:30:44,110 --> 00:30:45,170 +design pattern + +493 +00:30:47,420 --> 00:30:51,280 +I tell you sometimes in your programs, you have a + +494 +00:30:51,280 --> 00:30:55,220 +class, okay? Of course, he called the class, he + +495 +00:30:55,220 --> 00:30:59,200 +called it originator + +496 +00:31:01,380 --> 00:31:04,300 +From origin, what is origin? The source, this + +497 +00:31:04,300 --> 00:31:06,500 +class is the source, this class can be for example + +498 +00:31:06,500 --> 00:31:10,200 +a game, an electronic safe, something with data, + +499 +00:31:10,480 --> 00:31:12,880 +information, this game, sometimes you need to + +500 +00:31:12,880 --> 00:31:14,260 +memorize the state of the game in order to + +501 +00:31:14,260 --> 00:31:17,380 +retrieve it later, and usually when you play, you + +502 +00:31:17,380 --> 00:31:19,420 +do a lot of save operations, every five minutes, + +503 +00:31:19,520 --> 00:31:23,040 +for example, you do a save, okay? And also if you + +504 +00:31:23,040 --> 00:31:25,280 +have information, a document for example, there is + +505 +00:31:25,280 --> 00:31:27,400 +text and so on, you also need to constantly + +506 +00:31:27,400 --> 00:31:30,630 +memorize the state of this documentSo these + +507 +00:31:30,630 --> 00:31:34,030 +attributes represent the state or the case of the + +508 +00:31:34,030 --> 00:31:38,810 +originator You need to memorize this information, + +509 +00:31:38,810 --> 00:31:44,530 +okay? It could be that this represents a game or a + +510 +00:31:44,530 --> 00:31:49,990 +book or a document, okay? In my program, there + +511 +00:31:49,990 --> 00:31:53,110 +could be another class called caretaker, that's + +512 +00:31:53,110 --> 00:31:57,450 +how they call it. What is a caretaker?to the + +513 +00:31:57,450 --> 00:31:59,590 +person in charge, another person, they call him + +514 +00:31:59,590 --> 00:32:03,710 +caretaker. The caretaker, for example, is the one + +515 +00:32:03,710 --> 00:32:06,650 +who implements or controls who in the originator + +516 +00:32:06,650 --> 00:32:09,470 +and needs, for example, this caretaker when he + +517 +00:32:09,470 --> 00:32:11,690 +comes to change in the originator or for example, + +518 +00:32:11,870 --> 00:32:13,750 +I imagine that this is a document and this is the + +519 +00:32:13,750 --> 00:32:17,380 +class that changesthe content of this document or + +520 +00:32:17,380 --> 00:32:20,840 +this game, this class that executes the commands + +521 +00:32:20,840 --> 00:32:25,080 +of the game this class when it executes a certain + +522 +00:32:25,080 --> 00:32:28,360 +command, it needs to memorize the state of the + +523 +00:32:28,360 --> 00:32:31,820 +originator then it changes, it makes changes to it + +524 +00:32:31,820 --> 00:32:36,100 +until after a while it returns to the state it + +525 +00:32:36,100 --> 00:32:37,460 +returns to the originator and tells it to return + +526 +00:32:37,460 --> 00:32:42,220 +to the previous stateBut now the caretaker should + +527 +00:32:42,220 --> 00:32:47,060 +take a copy of the estate and keep it with him so + +528 +00:32:47,060 --> 00:32:51,200 +that he can retrieve it later. Okay? Where is + +529 +00:32:51,200 --> 00:32:53,220 +this? As I said, imagine this is a document and + +530 +00:32:53,220 --> 00:32:57,820 +this class changes this document. Like we took the + +531 +00:32:57,820 --> 00:33:03,060 +idea of undo and redo. This is the place I draw on + +532 +00:33:03,060 --> 00:33:05,260 +it and this is the class that executes the orders + +533 +00:33:05,260 --> 00:33:06,100 +of the painter. + +534 +00:33:09,020 --> 00:33:12,260 +What does it do? It preserves the state of the + +535 +00:33:12,260 --> 00:33:14,580 +piece of paper it drew. Right? So that it can be + +536 +00:33:14,580 --> 00:33:17,280 +translated. So the idea of the Memento Pattern, as + +537 +00:33:17,280 --> 00:33:22,560 +I said, or when should it be used? To ensure a + +538 +00:33:22,560 --> 00:33:27,620 +higher degree of data security, the caretaker + +539 +00:33:27,620 --> 00:33:28,980 +should be able to preserve the state of the + +540 +00:33:28,980 --> 00:33:32,020 +originator, that is, this state that contains + +541 +00:33:32,020 --> 00:33:34,380 +information. And I want to preserve it because I + +542 +00:33:34,380 --> 00:33:36,540 +want to change this gate to the originator. I want + +543 +00:33:36,540 --> 00:33:40,080 +to preserve this information. Okay, so that you + +544 +00:33:40,080 --> 00:33:43,500 +come here for example in the list Okay, but at the + +545 +00:33:43,500 --> 00:33:46,540 +same time, the caretaker is not allowed to look at + +546 +00:33:46,540 --> 00:33:51,080 +this information I mean, I want to save the + +547 +00:33:51,080 --> 00:33:54,000 +originator's case and let him retrieve it later, + +548 +00:33:54,140 --> 00:33:56,780 +but at the same time, I don't want the caretaker + +549 +00:33:56,780 --> 00:34:00,200 +to look at what's in these details from a higher + +550 +00:34:00,200 --> 00:34:02,520 +security level for the data Who is responsible for + +551 +00:34:02,520 --> 00:34:04,940 +looking at this information? Only who? The + +552 +00:34:04,940 --> 00:34:09,580 +originatorHe should be able to memorize the + +553 +00:34:09,580 --> 00:34:11,060 +originator case, but at the same time, he should + +554 +00:34:11,060 --> 00:34:15,000 +not look at the information in it. How can we do + +555 +00:34:15,000 --> 00:34:18,020 +this? I will give you an example. For example, a + +556 +00:34:18,020 --> 00:34:20,060 +person has money or precious things, he wants to + +557 +00:34:20,060 --> 00:34:21,840 +keep them safe, he wants to travel, he wants to + +558 +00:34:21,840 --> 00:34:26,340 +memorize this information. He might also want to + +559 +00:34:26,340 --> 00:34:28,980 +put it in front of a certain person, but he does + +560 +00:34:28,980 --> 00:34:31,980 +not want this person to see it.on the details of + +561 +00:34:31,980 --> 00:34:35,180 +these documents or these precious things. So, he + +562 +00:34:35,180 --> 00:34:36,860 +takes these things and puts them in a small safe + +563 +00:34:36,860 --> 00:34:40,500 +and tells him, come here, this is your trust, take + +564 +00:34:40,500 --> 00:34:46,080 +this safe and keep it here. I took it as a safe + +565 +00:34:46,080 --> 00:34:49,020 +and gave it to him. Of course, if he tried to + +566 +00:34:49,020 --> 00:34:51,280 +break it while I was traveling, he wouldn't be + +567 +00:34:51,280 --> 00:34:56,080 +able to open it. Okay? He kept these things, but + +568 +00:34:56,080 --> 00:34:59,680 +at the same time, he couldn't see them. So I came + +569 +00:34:59,680 --> 00:35:02,860 +back from the trip. After trying to break it for a + +570 +00:35:02,860 --> 00:35:05,120 +whole month, he returned it and said, here you go, + +571 +00:35:05,240 --> 00:35:07,820 +I didn't try to open it, here you go, I trusted + +572 +00:35:07,820 --> 00:35:14,140 +you, as it is, safe, I don't know. So the idea is, + +573 +00:35:14,540 --> 00:35:17,540 +this is the scenario that I want, that I have + +574 +00:35:17,540 --> 00:35:20,960 +objects, I want to be able to memorize their cases + +575 +00:35:20,960 --> 00:35:23,800 +and take the object of this case and memorize it + +576 +00:35:23,800 --> 00:35:26,900 +in another class or another list, this memorizes + +577 +00:35:26,900 --> 00:35:28,520 +the case, but at the same time, this should not + +578 +00:35:28,520 --> 00:35:32,500 +appear on the information here. How do we do this? + +579 +00:35:32,700 --> 00:35:36,140 +This is what we do by using the memento pattern. + +580 +00:35:36,380 --> 00:35:37,800 +Let's see how to do it quickly. + +581 +00:35:51,210 --> 00:35:55,990 +Okay guys, now let's say I have a class called + +582 +00:35:55,990 --> 00:35:59,270 +originator, okay? It represents a document, a + +583 +00:35:59,270 --> 00:36:02,790 +game, a library, whatever you want, okay? And this + +584 +00:36:02,790 --> 00:36:07,610 +has data such as text and score, okay? These are + +585 +00:36:07,610 --> 00:36:10,570 +the secret information. What is supposed to be? We + +586 +00:36:10,570 --> 00:36:15,090 +keep them every while, but we don't want anyone to + +587 +00:36:15,090 --> 00:36:19,060 +look at them except who? The originator So this + +588 +00:36:19,060 --> 00:36:22,320 +idea came to support this memorization They say + +589 +00:36:22,320 --> 00:36:24,820 +come inside the originator and make an inner class + +590 +00:36:24,820 --> 00:36:29,880 +Inner class What do we call it for example? I'm + +591 +00:36:29,880 --> 00:36:33,960 +going to call it memento The inner class has the + +592 +00:36:33,960 --> 00:36:37,920 +same attributes as the originator So these are the + +593 +00:36:37,920 --> 00:36:40,600 +first thing of course to guarantee privacy these + +594 +00:36:40,600 --> 00:36:46,320 +will be private And these also inside the memento + +595 +00:36:47,940 --> 00:36:49,880 +No, leave them here, okay? + +596 +00:36:52,460 --> 00:36:56,140 +They themselves have to make a copy of them inside + +597 +00:36:56,140 --> 00:36:59,200 +the memento. And also inside the memento, they + +598 +00:36:59,200 --> 00:37:05,160 +have to make a copy of them privately. You don't + +599 +00:37:05,160 --> 00:37:08,140 +make public setars and guitars.Okay, you can make + +600 +00:37:08,140 --> 00:37:10,060 +a private set originator, but the important thing + +601 +00:37:10,060 --> 00:37:12,560 +is to keep everything inside the memento private. + +602 +00:37:13,820 --> 00:37:15,900 +What's the point of keeping it private? Because + +603 +00:37:15,900 --> 00:37:17,940 +only the originator can access the content of the + +604 +00:37:17,940 --> 00:37:22,140 +memento. Anyone outside will not be able to access + +605 +00:37:22,140 --> 00:37:24,420 +it. Of course, we can make a constructor called + +606 +00:37:24,420 --> 00:37:29,080 +memento, even the constructor, okay, I want to + +607 +00:37:29,080 --> 00:37:29,480 +make it + +608 +00:37:32,510 --> 00:37:38,250 +private string textint score + +609 +00:37:55,090 --> 00:38:00,330 +ok, we finished the class memento I didn't make + +610 +00:38:00,330 --> 00:38:05,690 +getters public only constructor private because in + +611 +00:38:05,690 --> 00:38:07,490 +addition to class memento I want to make two + +612 +00:38:07,490 --> 00:38:14,630 +methods one is called public memento getstate what + +613 +00:38:14,630 --> 00:38:19,770 +is getstate? return to your original state return + +614 +00:38:19,770 --> 00:38:21,610 +new + +615 +00:38:23,950 --> 00:38:27,890 +Memento and I give him the text and the score So + +616 +00:38:27,890 --> 00:38:31,470 +what is the idea of this get state? The caretaker + +617 +00:38:31,470 --> 00:38:35,430 +asked the originator to tell him, give me your + +618 +00:38:35,430 --> 00:38:38,350 +current state, I want to preserve it Like this + +619 +00:38:38,350 --> 00:38:41,190 +one, give me your trust, I want to preserve it So + +620 +00:38:41,190 --> 00:38:44,090 +the get state will claim who? The one that has a + +621 +00:38:44,090 --> 00:38:46,430 +public method, this one can claim it What will the + +622 +00:38:46,430 --> 00:38:49,570 +get state do? Create an object with memento and + +623 +00:38:49,570 --> 00:38:52,980 +give it to whom?The current state, which is the + +624 +00:38:52,980 --> 00:38:58,200 +state, text and score. Now, he returned the + +625 +00:38:58,200 --> 00:39:01,020 +memento, but he is not supposed to be able to use + +626 +00:39:01,020 --> 00:39:05,140 +the memento, as we will see in the git. In + +627 +00:39:05,140 --> 00:39:06,760 +addition to the git state, we will make another + +628 +00:39:06,760 --> 00:39:10,360 +method, public void restore. What is restore? + +629 +00:39:13,390 --> 00:39:15,650 +This takes momentum, this is based on what? + +630 +00:39:15,830 --> 00:39:17,690 +Because the caretaker after this returned from the + +631 +00:39:17,690 --> 00:39:19,630 +trip, the caretaker will tell him to go ahead, + +632 +00:39:19,650 --> 00:39:24,370 +this is your case, and this will give him momentum + +633 +00:39:25,240 --> 00:39:27,800 +And the originator is the one who can open the + +634 +00:39:27,800 --> 00:39:30,160 +memento and take what is in it and return it to + +635 +00:39:30,160 --> 00:39:32,220 +himself So if I find this, what is going to be in + +636 +00:39:32,220 --> 00:39:36,680 +it? this.text equals m.text This is a return, it + +637 +00:39:36,680 --> 00:39:38,140 +took the information from the memento and returned + +638 +00:39:38,140 --> 00:39:40,420 +them to the attributes in the public or the + +639 +00:39:40,420 --> 00:39:46,440 +primary ones this.score equals score Okay, + +640 +00:39:47,960 --> 00:39:48,940 +yes, m.score + +641 +00:39:52,400 --> 00:39:54,540 +so now this is the class originator which + +642 +00:39:54,540 --> 00:39:56,980 +represents the case we made inside inner class + +643 +00:39:56,980 --> 00:39:59,160 +everything that has private and we made two + +644 +00:39:59,160 --> 00:40:01,080 +methods get state which returns momento and + +645 +00:40:01,080 --> 00:40:03,060 +restore which returns momento and returns data + +646 +00:40:03,060 --> 00:40:07,320 +from momento to state okay now we finished + +647 +00:40:07,320 --> 00:40:12,500 +originator let's go to caretaker caretaker simply + +648 +00:40:12,500 --> 00:40:17,280 +is currently we assumed that he does what?it will + +649 +00:40:17,280 --> 00:40:21,340 +be saved in the list of memento it will be saved + +650 +00:40:21,340 --> 00:40:30,280 +in the list of memento now let's see how to use it + +651 +00:40:30,280 --> 00:40:34,500 +through the main method ok this is the code that + +652 +00:40:34,500 --> 00:40:36,460 +we want to remove ok did you find out what it + +653 +00:40:36,460 --> 00:40:42,640 +does? it goes to originator it does new originator + +654 +00:40:46,210 --> 00:40:51,170 +Okay? Of course, I can't reach these, + +655 +00:40:51,510 --> 00:40:54,690 +okay? Let's assume that they have basic values I + +656 +00:40:54,690 --> 00:41:01,110 +found, for example, this one has hello This + +657 +00:41:01,110 --> 00:41:04,240 +one has ten, for example there is a code that will + +658 +00:41:04,240 --> 00:41:09,040 +change its state when you run the process so now I + +659 +00:41:09,040 --> 00:41:11,960 +have the originator here the code is running and + +660 +00:41:11,960 --> 00:41:14,440 +the originator is changing its state now the + +661 +00:41:14,440 --> 00:41:17,320 +originator wants to save its state of course it + +662 +00:41:17,320 --> 00:41:21,840 +has an object called care-taker that does new care + +663 +00:41:21,840 --> 00:41:26,260 +-taker this is a function that tells us to save + +664 +00:41:26,260 --> 00:41:28,320 +objects + +665 +00:41:29,680 --> 00:41:31,640 +Okay, now I came to a stage where I want to + +666 +00:41:31,640 --> 00:41:33,520 +memorize the originator case before I change it + +667 +00:41:33,520 --> 00:41:38,840 +Okay, I go to the originator and I say get what? + +668 +00:41:39,720 --> 00:41:43,200 +Get the state Okay, what does this return? It + +669 +00:41:43,200 --> 00:41:45,920 +returns an object from the momentum Because of + +670 +00:41:45,920 --> 00:41:47,660 +course this momentum has the data of the + +671 +00:41:47,660 --> 00:41:50,770 +originator, but if I try to see what's in it there + +672 +00:41:50,770 --> 00:41:52,710 +is nothing in it, I can't, like the safe that + +673 +00:41:52,710 --> 00:41:54,810 +reached me, I can't open it or see what's in it + +674 +00:41:54,810 --> 00:41:57,810 +okay, I can go to the caretaker and tell him + +675 +00:41:57,810 --> 00:42:03,670 +states and add yes to you so the caretaker now is + +676 +00:42:03,670 --> 00:42:07,330 +safe in the memento but I can't act on it at all + +677 +00:42:07,330 --> 00:42:11,190 +okay and so on while the program is running as + +678 +00:42:11,190 --> 00:42:13,050 +long as I want to change something in the + +679 +00:42:13,050 --> 00:42:16,310 +originator I tell him give me also what give me + +680 +00:42:16,310 --> 00:42:22,680 +two mementosOkay? And go to the caretaker and add + +681 +00:42:22,680 --> 00:42:28,940 +this M2 And I save many cases. Now after a while, + +682 +00:42:29,020 --> 00:42:30,920 +after a phase, I need to go back to the last case + +683 +00:42:30,920 --> 00:42:35,640 +Okay? I go to the caretaker and tell him states + +684 +00:42:35,640 --> 00:42:39,500 +and hotline The + +685 +00:42:39,500 --> 00:42:46,080 +last case isstates dot size minus one this is the + +686 +00:42:46,080 --> 00:42:49,160 +last state in the last state and this gave me + +687 +00:42:49,160 --> 00:42:56,080 +memento which is the last state I + +688 +00:42:56,080 --> 00:42:58,580 +got the last state, I need to return it where is + +689 +00:42:58,580 --> 00:43:02,340 +the return? in the originator I go to the O and + +690 +00:43:02,340 --> 00:43:07,600 +tell it restore and give it the last state you saw + +691 +00:43:07,600 --> 00:43:11,170 +that we restoreRestored by Tim inside the + +692 +00:43:11,170 --> 00:43:13,570 +originator, as long as I cancel the momentum, he + +693 +00:43:13,570 --> 00:43:16,390 +can reach the attributes in it. Because the whole + +694 +00:43:16,390 --> 00:43:19,570 +idea is that the object that preserves the state + +695 +00:43:19,570 --> 00:43:22,310 +is an inner class inside the originator and + +696 +00:43:22,310 --> 00:43:24,730 +everything in it is private. As long as it is an + +697 +00:43:24,730 --> 00:43:26,150 +inner class and everything in it is private, it + +698 +00:43:26,150 --> 00:43:29,070 +means that no one can reach it except who?except + +699 +00:43:29,070 --> 00:43:30,970 +the originator, and this is how I keep my data + +700 +00:43:30,970 --> 00:43:33,430 +secret, because this momentum object can only be + +701 +00:43:33,430 --> 00:43:36,650 +accessed by the originator. It is true that I keep + +702 +00:43:36,650 --> 00:43:39,810 +it in other directions and transfer it, but in the + +703 +00:43:39,810 --> 00:43:42,790 +end, no one can see these data except the main + +704 +00:43:42,790 --> 00:43:44,990 +class that generated the data, which is the + +705 +00:43:44,990 --> 00:43:47,770 +originator. And this helps me, as we said in + +706 +00:43:47,770 --> 00:43:49,710 +applications, I have a certain class that I want + +707 +00:43:49,710 --> 00:43:52,770 +to keep its state.or I want to take my state and + +708 +00:43:52,770 --> 00:43:55,190 +transfer it to another place in the application or + +709 +00:43:55,190 --> 00:43:57,250 +to another object or to the server or to others + +710 +00:43:57,250 --> 00:44:00,410 +and at the same time I don't want anyone to look + +711 +00:44:00,410 --> 00:44:01,930 +at these details I want to transfer it to another + +712 +00:44:01,930 --> 00:44:05,650 +place to save it for example to retrieve it later + +713 +00:44:05,650 --> 00:44:07,870 +there is an example of a document, an example of a + +714 +00:44:07,870 --> 00:44:10,690 +library, an example of a game, okay? others + +715 +00:44:10,690 --> 00:44:12,570 +memorize the information but cannot look at it + +716 +00:44:12,570 --> 00:44:15,090 +except for the main class that took out the state + +717 +00:44:16,260 --> 00:44:23,540 +Ok guys, let's go back to the slide of the memento + +718 +00:44:23,540 --> 00:44:30,740 +and start with the UML diagram Ok, now the UML + +719 +00:44:30,740 --> 00:44:33,140 +diagram is the same as what I did, this is the + +720 +00:44:33,140 --> 00:44:36,360 +originator and here I have the attribute to + +721 +00:44:36,360 --> 00:44:39,080 +represent the state and this is supposed to be + +722 +00:44:39,080 --> 00:44:40,620 +negative, what does it mean? it means that this is + +723 +00:44:40,620 --> 00:44:45,150 +privateAnd the originator we made in it an inner + +724 +00:44:45,150 --> 00:44:48,530 +class named Memento For today, the inner class is + +725 +00:44:48,530 --> 00:44:51,150 +not visible In the end, the inner class is placed + +726 +00:44:51,150 --> 00:44:55,570 +as a square by itself This is the Memento And the + +727 +00:44:55,570 --> 00:44:57,310 +same attributes in the originator are repeated + +728 +00:44:57,310 --> 00:44:59,890 +where? In the Memento Because here there was text + +729 +00:44:59,890 --> 00:45:03,850 +and score And here also I put text and score This + +730 +00:45:03,850 --> 00:45:07,750 +is a negative state And I made two methods, getter + +731 +00:45:07,750 --> 00:45:10,580 +and setterAnd they will say that you didn't do it + +732 +00:45:10,580 --> 00:45:12,540 +and you can't do it. No, you can make their names + +733 +00:45:12,540 --> 00:45:16,380 +private Because I didn't use set because + +734 +00:45:16,380 --> 00:45:20,540 +constructor used it instead of it, okay? I didn't + +735 +00:45:20,540 --> 00:45:23,400 +use get either because it's the originator and he + +736 +00:45:23,400 --> 00:45:25,840 +can reach the attributes here directly The + +737 +00:45:25,840 --> 00:45:28,060 +important thing is that these must be private if + +738 +00:45:28,060 --> 00:45:32,380 +you want to use them, okay? In addition to this + +739 +00:45:32,380 --> 00:45:37,070 +class, I made a method called createMementowhich I + +740 +00:45:37,070 --> 00:45:42,330 +named as GetState it puts the state inside the + +741 +00:45:42,330 --> 00:45:45,890 +momentum and returns it to me just like I put the + +742 +00:45:45,890 --> 00:45:48,910 +information in the safe this is what it did, it + +743 +00:45:48,910 --> 00:45:51,990 +put a arrow between the code it is written here as + +744 +00:45:51,990 --> 00:45:56,190 +saving state return new momentum and sends it to + +745 +00:45:56,190 --> 00:45:59,770 +the state restore, this is the data that I want to + +746 +00:45:59,770 --> 00:46:04,230 +return I went toI send him a memento, he receives + +747 +00:46:04,230 --> 00:46:07,430 +it and says I got a state and I return it to the + +748 +00:46:07,430 --> 00:46:09,150 +state. Who is this state? It is the attribute + +749 +00:46:09,150 --> 00:46:14,290 +here. And this is the caretaker who executes the + +750 +00:46:14,290 --> 00:46:17,090 +methods in the computer and tells him to create a + +751 +00:46:17,090 --> 00:46:20,330 +memento and make a restore. He takes the mementos + +752 +00:46:20,330 --> 00:46:21,970 +and stores them, but he doesn't know anything. + +753 +00:46:22,690 --> 00:46:27,150 +About its details This is a sequence diagram I + +754 +00:46:27,150 --> 00:46:28,790 +took the sequence diagram, it shows me how it + +755 +00:46:28,790 --> 00:46:31,410 +connects with each other In the beginning, the + +756 +00:46:31,410 --> 00:46:34,750 +caretaker will ask the originator to give me your + +757 +00:46:34,750 --> 00:46:37,410 +case, I want to preserve it So what does he ask + +758 +00:46:37,410 --> 00:46:41,150 +from him? Create memento What will the originator + +759 +00:46:41,150 --> 00:46:44,210 +do internally? He will create an object from whom? + +760 +00:46:44,610 --> 00:46:47,290 +From his memento, he will make a set state in it + +761 +00:46:47,290 --> 00:46:50,910 +and give it back to him? Memento When this + +762 +00:46:50,910 --> 00:46:53,950 +caretaker asks for the state of the originator, he + +763 +00:46:53,950 --> 00:46:56,150 +executes this command and returns the memento to + +764 +00:46:56,150 --> 00:46:57,970 +him. He delivers the memento to the caretaker, but + +765 +00:46:57,970 --> 00:47:01,770 +he cannot see the details. The caretaker wants to + +766 +00:47:01,770 --> 00:47:04,050 +return the state to whom? To the originator. He + +767 +00:47:04,050 --> 00:47:05,830 +tells the originator to do a restore and return to + +768 +00:47:05,830 --> 00:47:08,350 +the previous state. So he executes the restore and + +769 +00:47:08,350 --> 00:47:11,510 +sends him the memento. And this executes what? + +770 +00:47:12,650 --> 00:47:15,210 +GetState, which retrieves from it the state of the + +771 +00:47:15,210 --> 00:47:17,870 +state. Okay? Yes. + +772 +00:47:21,210 --> 00:47:24,570 +Tamam, هو يعني محطهاش لإنه ممكن تكون less ممكن + +773 +00:47:24,570 --> 00:47:30,160 +تكون attribute واحدة It depends on the nature of + +774 +00:47:30,160 --> 00:47:32,300 +the application. I can store many cases, I can + +775 +00:47:32,300 --> 00:47:35,680 +store one case, another case. For example, I made + +776 +00:47:35,680 --> 00:47:38,800 +a list, but in another application, I can store + +777 +00:47:38,800 --> 00:47:41,900 +only one case. I did not leave it here for you to + +778 +00:47:41,900 --> 00:47:44,320 +determine what is available. But in the end, since + +779 +00:47:44,320 --> 00:47:48,640 +it creates, mimics and restores, you understand + +780 +00:47:48,640 --> 00:47:51,200 +that in the end it will remain in the momentum, + +781 +00:47:51,300 --> 00:47:55,260 +but it will not be able to use it.Here, I explain + +782 +00:47:55,260 --> 00:47:58,800 +the memento pattern by saying that it is a + +783 +00:47:58,800 --> 00:48:01,200 +software design pattern that provides the ability + +784 +00:48:01,200 --> 00:48:04,360 +to restore an object to its previous state. That + +785 +00:48:04,360 --> 00:48:07,020 +is, it is used in the case of undo and redo. I can + +786 +00:48:07,020 --> 00:48:08,820 +even apply it in the case of the command. Because + +787 +00:48:08,820 --> 00:48:10,920 +in the end, the command does not encapsulate the + +788 +00:48:10,920 --> 00:48:13,440 +information as a command. The command itself can + +789 +00:48:13,440 --> 00:48:15,140 +do a memento and put the information that is + +790 +00:48:15,140 --> 00:48:18,220 +private, so that when you take it and put it in + +791 +00:48:18,220 --> 00:48:23,010 +the manager, You can't look at the details if you + +792 +00:48:23,010 --> 00:48:26,150 +want to preserve their secrecy. Memento pattern + +793 +00:48:26,150 --> 00:48:28,250 +implemented with three objects. There are three + +794 +00:48:28,250 --> 00:48:30,850 +parts, the originator, the caretaker and the + +795 +00:48:30,850 --> 00:48:33,790 +memento. We talked about them. The originator is + +796 +00:48:33,790 --> 00:48:35,990 +some object that has an internal state. It is the + +797 +00:48:35,990 --> 00:48:37,670 +object that has a state that I want to preserve. + +798 +00:48:38,290 --> 00:48:42,710 +The caretaker is going to do something to the + +799 +00:48:42,710 --> 00:48:45,190 +originator. But before he changes the originator, + +800 +00:48:45,250 --> 00:48:47,430 +he has to take his state so that he can retrieve + +801 +00:48:47,430 --> 00:48:51,970 +it later.but wants to be able to undo that change. + +802 +00:48:55,130 --> 00:48:59,370 +The caretaker first asks the originator for a + +803 +00:48:59,370 --> 00:49:04,070 +memento object, then it does whatever operation to + +804 +00:49:04,070 --> 00:49:07,890 +roll back to the state before the operation. It + +805 +00:49:07,890 --> 00:49:10,050 +returns the memento object to the + +806 +00:49:17,050 --> 00:49:21,250 +The memento object itself is an opaque object. + +807 +00:49:27,210 --> 00:49:31,350 +Transparent. The opaque is transparent. It is not + +808 +00:49:31,350 --> 00:49:33,710 +transparent. You cannot see it. It is not visible. + +809 +00:49:34,390 --> 00:49:37,490 +Who is this? The memento object. He explains it as + +810 +00:49:37,490 --> 00:49:41,230 +one which the caretaker cannotOr should not + +811 +00:49:41,230 --> 00:49:48,110 +change. Is it clear? It is a simple case of how I + +812 +00:49:48,110 --> 00:49:50,610 +want to give data to another object that is + +813 +00:49:50,610 --> 00:49:53,730 +preserved but does not show the details. Is it + +814 +00:49:53,730 --> 00:49:55,450 +clear? God bless you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/9NJNDi5kkDw_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/9NJNDi5kkDw_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..24a4b8effe5ceb2795d0ebc65e2bb840f4c87651 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/9NJNDi5kkDw_raw.srt @@ -0,0 +1,3408 @@ +1 +00:00:04,910 --> 00:00:11,250 +Peace be upon you Okay guys, today I will give two + +2 +00:00:11,250 --> 00:00:13,230 +design patterns because these design patterns are + +3 +00:00:13,230 --> 00:00:17,810 +small Which are the iterator design pattern and + +4 +00:00:17,810 --> 00:00:20,410 +another design pattern called Memento design + +5 +00:00:20,410 --> 00:00:22,950 +pattern Okay, let's start with the first design + +6 +00:00:22,950 --> 00:00:24,750 +pattern, which is the iterator Did you hear about + +7 +00:00:24,750 --> 00:00:29,000 +the iterator before?Now guys, the iterator is + +8 +00:00:29,000 --> 00:00:33,600 +simply a way to make an iteration or loop on the + +9 +00:00:33,600 --> 00:00:40,320 +data structure elements If you used some + +10 +00:00:40,320 --> 00:00:43,120 +collections in Java, such as ArrayList, + +11 +00:00:43,260 --> 00:00:47,460 +LinkedList, HashSet, any kind of existing + +12 +00:00:47,460 --> 00:00:52,730 +collectionsYou can use the iterator to create a + +13 +00:00:52,730 --> 00:00:55,550 +loop on them So that we remember what the iterator + +14 +00:00:55,550 --> 00:00:58,870 +is, let's say it passed you before that If we come + +15 +00:00:58,870 --> 00:01:12,570 +to any class, for example Okay, + +16 +00:01:12,670 --> 00:01:14,470 +I came to the arraylist, for example + +17 +00:01:26,970 --> 00:01:38,830 +And then it can also have a linked list Linked + +18 +00:01:38,830 --> 00:01:45,210 +Linked And + +19 +00:01:45,210 --> 00:01:47,450 +there can be another data structure, TreeSet + +20 +00:01:59,050 --> 00:02:02,910 +Okay, these three data structures are all part of + +21 +00:02:02,910 --> 00:02:07,610 +an API in Java called Collections API. Okay? Maybe + +22 +00:02:07,610 --> 00:02:12,250 +you used to use ArrayList most of the time. So why + +23 +00:02:12,250 --> 00:02:14,430 +are they different from each other? In the end, + +24 +00:02:14,570 --> 00:02:18,010 +they are all lists. But each has a different + +25 +00:02:18,010 --> 00:02:22,770 +structure from the other.Okay, so the ArrayList in + +26 +00:02:22,770 --> 00:02:25,170 +Java is actually made up of normal arrays, even in + +27 +00:02:25,170 --> 00:02:29,310 +any other language, in Python for example. So, if + +28 +00:02:29,310 --> 00:02:32,050 +you open the class of the ArrayList, you will find + +29 +00:02:32,050 --> 00:02:34,970 +that it depends on normal arrays. The second + +30 +00:02:34,970 --> 00:02:38,470 +LinkedList depends on nodes connected to each + +31 +00:02:38,470 --> 00:02:44,290 +other, like this one. This is the LinkedList. The + +32 +00:02:44,290 --> 00:02:46,350 +TreeSet is actually a tree. + +33 +00:02:51,430 --> 00:02:55,710 +Okay? You don't know the details of this + +34 +00:02:55,710 --> 00:03:01,130 +structure. You don't have to know it. Okay, what + +35 +00:03:01,130 --> 00:03:04,950 +do we use? ArrayList or LinkedList or TreeSet? It + +36 +00:03:04,950 --> 00:03:07,870 +depends on the usage. For example, we know that + +37 +00:03:07,870 --> 00:03:11,910 +the normal array is very fast in access and + +38 +00:03:11,910 --> 00:03:15,290 +search. Okay? But it is slow and has a problem in + +39 +00:03:15,290 --> 00:03:19,220 +insert and remove.For example, if you remember in + +40 +00:03:19,220 --> 00:03:22,640 +Program 1, did you study Program 1? When you want + +41 +00:03:22,640 --> 00:03:25,520 +to insert an item here, or remove any item in the + +42 +00:03:25,520 --> 00:03:28,040 +array normally, you cannot delete this element. + +43 +00:03:28,720 --> 00:03:32,120 +You have to create a new array, for example, if we + +44 +00:03:32,120 --> 00:03:35,860 +delete a smaller size by 1, and delete all + +45 +00:03:35,860 --> 00:03:39,500 +previous elements, and forget this one, and take + +46 +00:03:39,500 --> 00:03:43,700 +the next one, and a long story.Okay? For what? To + +47 +00:03:43,700 --> 00:03:46,280 +delete one element. And this is the specific PC. + +48 +00:03:46,720 --> 00:03:49,240 +So I'm telling you that the Rail List, if you do a + +49 +00:03:49,240 --> 00:03:51,940 +lot of removal operations, you don't use it. And + +50 +00:03:51,940 --> 00:03:55,520 +who do we use? The Linked List. It takes up more + +51 +00:03:55,520 --> 00:03:57,080 +space in the memory because it has indicators. + +52 +00:03:57,780 --> 00:04:02,800 +Okay? But there arein add and remove and in insert + +53 +00:04:02,800 --> 00:04:05,480 +and remove it is easier and more efficient and + +54 +00:04:05,480 --> 00:04:08,220 +there is also the tree set which is the structure + +55 +00:04:08,220 --> 00:04:13,900 +made using a tree and this can be faster in search + +56 +00:04:13,900 --> 00:04:17,480 +than these two because it uses the algorithm for + +57 +00:04:17,480 --> 00:04:21,440 +example binary search and so on and so forth at + +58 +00:04:21,440 --> 00:04:24,220 +the end as a programmer you don't need to know the + +59 +00:04:24,220 --> 00:04:28,540 +details inside you can use them all together Now + +60 +00:04:28,540 --> 00:04:32,620 +the idea is if I want to make a loop on these + +61 +00:04:32,620 --> 00:04:39,580 +nodes Now java asked me if I want to make an + +62 +00:04:39,580 --> 00:04:41,860 +iteration, I want to go through the elements in + +63 +00:04:41,860 --> 00:04:44,160 +the data structure Did you find that the iteration + +64 +00:04:44,160 --> 00:04:47,240 +process is different or different in the data + +65 +00:04:47,240 --> 00:04:49,480 +structure? In the array it is normal, it is an + +66 +00:04:49,480 --> 00:04:52,000 +index and it moves and keeps moving In the linked + +67 +00:04:52,000 --> 00:04:54,780 +list, no, you have to see where the index is and + +68 +00:04:54,780 --> 00:04:58,170 +get the node and so onIn the tree, the process is + +69 +00:04:58,170 --> 00:05:00,510 +different, it is harder than these two, you have + +70 +00:05:00,510 --> 00:05:02,930 +to make a traversal for the tree, okay? And you + +71 +00:05:02,930 --> 00:05:05,830 +took in the data 13 ways of traversal, in order + +72 +00:05:05,830 --> 00:05:08,950 +and pre order and post order, right? Take the + +73 +00:05:08,950 --> 00:05:11,610 +father, then take the son to the right, and then + +74 +00:05:11,610 --> 00:05:14,230 +to the left, or take the father and finish the + +75 +00:05:14,230 --> 00:05:16,750 +branch and come back here again, so the ways of + +76 +00:05:16,750 --> 00:05:19,330 +passing through the elements are different, and if + +77 +00:05:19,330 --> 00:05:22,350 +there was a graph for example,It also becomes a + +78 +00:05:22,350 --> 00:05:25,550 +different way. Did I find that if I want to go + +79 +00:05:25,550 --> 00:05:27,370 +through the elements, whether it is a tree or a + +80 +00:05:27,370 --> 00:05:28,910 +linked list, I need to go as a programmer to + +81 +00:05:28,910 --> 00:05:31,410 +understand and review the data structure to know + +82 +00:05:31,410 --> 00:05:34,530 +how to go through these elements? No, they made it + +83 +00:05:34,530 --> 00:05:38,440 +easier for me.He told me that because programmers + +84 +00:05:38,440 --> 00:05:42,080 +don't have to go and understand step by step how + +85 +00:05:42,080 --> 00:05:44,480 +the structure works and how to make traversal + +86 +00:05:44,480 --> 00:05:45,900 +filetree, which is actually difficult because you + +87 +00:05:45,900 --> 00:05:48,300 +don't have to implement it for preorder, did you + +88 +00:05:48,300 --> 00:05:50,500 +implement it when you started the structure? Yes, + +89 +00:05:50,640 --> 00:05:54,280 +you have to do recursion and so on. So he told me + +90 +00:05:54,280 --> 00:05:57,530 +that we make it easier for programmers.Okay? We + +91 +00:05:57,530 --> 00:06:00,570 +want to provide a standard way that whatever is + +92 +00:06:00,570 --> 00:06:02,950 +different in the data structure, it should have + +93 +00:06:02,950 --> 00:06:05,690 +one way to go through all elements. What is this + +94 +00:06:05,690 --> 00:06:10,350 +method? If you see any one of these, A1 or A2 or + +95 +00:06:10,350 --> 00:06:15,650 +A3, this is A3, it has a method called iterator. + +96 +00:06:15,790 --> 00:06:18,990 +Okay? And this method iterator returns an object + +97 +00:06:18,990 --> 00:06:22,690 +from which it is iterator. + +98 +00:06:26,910 --> 00:06:28,510 +Okay? For example, this is called an iter. + +99 +00:06:31,670 --> 00:06:34,650 +Like this. What is this iterator exactly? Because + +100 +00:06:34,650 --> 00:06:38,530 +we imagine it. This is a array. It consists of + +101 +00:06:38,530 --> 00:06:40,910 +elements in it. You can imagine the iterator as a + +102 +00:06:40,910 --> 00:06:42,590 +marker pointing to what is before the first + +103 +00:06:42,590 --> 00:06:48,110 +element.Okay? This iterator, imagine that it is a + +104 +00:06:48,110 --> 00:06:52,470 +marker, it is really a marker, when you use it, + +105 +00:06:52,490 --> 00:06:54,890 +you say that as long as there are two very + +106 +00:06:54,890 --> 00:06:58,670 +important methods, an iterator called hasNext, + +107 +00:07:00,650 --> 00:07:03,930 +okay? And then you say, for example, system.out + +108 +00:07:03,930 --> 00:07:08,310 +.println iterator.next + +109 +00:07:10,680 --> 00:07:12,620 +What is the difference between hasnext and next? + +110 +00:07:12,840 --> 00:07:16,180 +Hasnext means that it sees. For example, I have + +111 +00:07:16,180 --> 00:07:22,180 +data stored here. I check if there is an element + +112 +00:07:22,180 --> 00:07:26,120 +after the index. Of course, here I have an + +113 +00:07:26,120 --> 00:07:29,460 +element, so this method will return true. If there + +114 +00:07:29,460 --> 00:07:32,360 +is no element, it will return false. Why? Because + +115 +00:07:32,360 --> 00:07:35,580 +if there is an element, it will execute .next + +116 +00:07:35,580 --> 00:07:37,860 +after it. What does .next do? It moves the index a + +117 +00:07:37,860 --> 00:07:41,060 +stepand then it takes the existing element, which + +118 +00:07:41,060 --> 00:07:42,960 +means it increases the index and then reads the + +119 +00:07:42,960 --> 00:07:45,880 +element here and since this is the while loop, it + +120 +00:07:45,880 --> 00:07:47,720 +executes this next again is there a next element? + +121 +00:07:48,540 --> 00:07:50,400 +yes, there is a next element, it increases and + +122 +00:07:50,400 --> 00:07:52,880 +executes the next what does the next do? it moves + +123 +00:07:52,880 --> 00:07:55,660 +the index and reads the element and so on until it + +124 +00:07:55,660 --> 00:07:59,320 +reaches here is there a next element? no, it + +125 +00:07:59,320 --> 00:08:02,580 +returns false and leaves the loop because this is + +126 +00:08:02,580 --> 00:08:07,230 +the way of the iteratorSaved it for me, and you + +127 +00:08:07,230 --> 00:08:12,510 +can use it with any kind of collection. Of course, + +128 +00:08:13,250 --> 00:08:15,290 +in the tree specifically, there is more than one + +129 +00:08:15,290 --> 00:08:16,870 +way to pass through the trees. But what does it + +130 +00:08:16,870 --> 00:08:20,210 +use? We don't know. It doesn't matter. In order or + +131 +00:08:20,210 --> 00:08:22,010 +pre order? The important thing is that it saved me + +132 +00:08:22,010 --> 00:08:25,470 +a way to pass through the trees. If you don't like + +133 +00:08:25,470 --> 00:08:29,150 +this method, go and implement it in the way you + +134 +00:08:29,150 --> 00:08:31,590 +want. Review the data structure and do it. It will + +135 +00:08:31,590 --> 00:08:33,410 +tell you that I simplified it for you and saved + +136 +00:08:33,410 --> 00:08:36,600 +you in the way of the iterator, that you go + +137 +00:08:36,600 --> 00:08:39,900 +through all the elements without knowing what to + +138 +00:08:39,900 --> 00:08:42,220 +do. So the idea of the iterator, this is the + +139 +00:08:42,220 --> 00:08:45,360 +design pattern, that the data structures that I + +140 +00:08:45,360 --> 00:08:48,680 +store data in may differ in their structure, but + +141 +00:08:48,680 --> 00:08:50,220 +at the same time, I don't want to force the + +142 +00:08:50,220 --> 00:08:53,000 +programmer to go and understand how the data + +143 +00:08:53,000 --> 00:08:54,620 +structure is made in order to make a loop on the + +144 +00:08:54,620 --> 00:08:56,820 +elements. So it provides you with a standard way + +145 +00:08:56,820 --> 00:08:59,180 +that whatever the difference in the data + +146 +00:08:59,180 --> 00:09:01,640 +structure, this is a unified way to go through the + +147 +00:09:01,640 --> 00:09:05,660 +elements in it.Okay? Now, after we understand what + +148 +00:09:05,660 --> 00:09:08,260 +is the idea of iterator, we want to see how we + +149 +00:09:08,260 --> 00:09:11,840 +make our own iterator. Let's say you made your own + +150 +00:09:11,840 --> 00:09:16,460 +data structure. Okay? And you want to make it an + +151 +00:09:16,460 --> 00:09:18,340 +iterator. Because these are not better than us. + +152 +00:09:18,780 --> 00:09:20,980 +Those who put dot iterator and get iterator and + +153 +00:09:20,980 --> 00:09:25,040 +make loop. We want to make our own iterator. But + +154 +00:09:25,040 --> 00:09:26,900 +before we make our own iterator, we want to make + +155 +00:09:26,900 --> 00:09:31,090 +our own data structure.Okay, sometimes you want to + +156 +00:09:31,090 --> 00:09:32,810 +make a tree, you want to make a graph specific to + +157 +00:09:32,810 --> 00:09:35,610 +it and you want to provide the programmer a way to + +158 +00:09:35,610 --> 00:09:37,890 +go through the elements that are in your graph + +159 +00:09:37,890 --> 00:09:42,410 +Okay, so you want to provide him a way, we prefer + +160 +00:09:42,410 --> 00:09:44,990 +to provide him the way of the iterator to deal + +161 +00:09:44,990 --> 00:09:48,930 +with your data structure like any of the existing + +162 +00:09:48,930 --> 00:09:53,050 +data structure standards Okay, so to make this + +163 +00:09:53,050 --> 00:09:55,190 +example, we come to make a new class, I want to + +164 +00:09:55,190 --> 00:09:59,360 +call it MyArray What does MyArray represent? It is + +165 +00:09:59,360 --> 00:10:02,200 +a data structure specific to it. To simplify, + +166 +00:10:02,860 --> 00:10:06,140 +let's assume that the data structure specific to + +167 +00:10:06,140 --> 00:10:15,120 +us is based on an array of type T called items. + +168 +00:10:16,820 --> 00:10:20,300 +And I want to make it parametrized so that when I + +169 +00:10:20,300 --> 00:10:24,300 +create MyArray, I can define its data type. It can + +170 +00:10:24,300 --> 00:10:27,160 +be a string or integer.whatever you want it to be + +171 +00:10:27,160 --> 00:10:32,300 +and actually my myarray is mainly based on what? + +172 +00:10:33,620 --> 00:10:37,020 +on a regular array so we are doing something that + +173 +00:10:37,020 --> 00:10:40,320 +talks about the array list because the array list + +174 +00:10:40,320 --> 00:10:43,720 +is originally based on the array but of course the + +175 +00:10:43,720 --> 00:10:46,060 +array list made our life much easier right or not? + +176 +00:10:46,320 --> 00:10:49,980 +you stopped seeing the size and everything? okay + +177 +00:10:49,980 --> 00:10:55,550 +and this is the same thingthen we want to do here + +178 +00:10:55,550 --> 00:10:59,290 +int capacity which is the virtual size of the + +179 +00:10:59,290 --> 00:11:01,170 +array because we know that you can't create any + +180 +00:11:01,170 --> 00:11:03,790 +array that has the same size someone might say + +181 +00:11:03,790 --> 00:11:05,650 +that if we create an array list, we don't give it + +182 +00:11:05,650 --> 00:11:07,530 +the same size no, what happens is that he creates + +183 +00:11:07,530 --> 00:11:10,770 +an array list and gives it a virtual size for + +184 +00:11:10,770 --> 00:11:16,030 +example 10 or 100 and you add, happy, add, add, + +185 +00:11:16,030 --> 00:11:20,560 +add, after he finishes when you create a new ad, + +186 +00:11:20,940 --> 00:11:22,980 +it will not create a new ad, it will create a + +187 +00:11:22,980 --> 00:11:24,820 +bigger array and it will transfer the data from + +188 +00:11:24,820 --> 00:11:27,000 +the top to the bottom and it will continue all of + +189 +00:11:27,000 --> 00:11:29,660 +this you will not see but all of this happens in + +190 +00:11:29,660 --> 00:11:33,160 +the ArrayList ok, why did I make the capacity 100? + +191 +00:11:33,260 --> 00:11:38,220 +because when I say public myArray this constructor + +192 +00:11:38,220 --> 00:11:46,130 +will go to items and say newOf course, this will + +193 +00:11:46,130 --> 00:11:53,070 +be like this, new object And + +194 +00:11:53,070 --> 00:11:56,030 +here is the capacity So, create an array with the + +195 +00:11:56,030 --> 00:11:58,130 +size of the capacity of the object type and make + +196 +00:11:58,130 --> 00:12:00,430 +it a casting for what? For T, which is the type + +197 +00:12:00,430 --> 00:12:07,170 +that we want So far, what we have done is that you + +198 +00:12:07,170 --> 00:12:14,090 +can create a new object of the type MyArray + +199 +00:12:16,550 --> 00:12:25,550 +for example string a4 is equal to new my myarray + +200 +00:12:25,550 --> 00:12:30,590 +ok guys? ok, I also found out that we need to make + +201 +00:12:30,590 --> 00:12:32,650 +method add so that we can add to it, aren't they + +202 +00:12:32,650 --> 00:12:37,830 +add too? ok, we make add we come to the myarray I + +203 +00:12:37,830 --> 00:12:41,130 +found out that when we come to make add we need to + +204 +00:12:41,130 --> 00:12:45,360 +make integer indexWhy? So that it stays memorized. + +205 +00:12:45,640 --> 00:12:47,720 +We haven't talked about the iterator yet. We are + +206 +00:12:47,720 --> 00:12:51,820 +working on it. Because when you come and make a + +207 +00:12:51,820 --> 00:12:54,520 +loop, this is in the hands of the index. I don't + +208 +00:12:54,520 --> 00:12:56,780 +want to fill the whole array, of course. I want to + +209 +00:12:56,780 --> 00:12:59,560 +put five elements. The index just needs to match + +210 +00:12:59,560 --> 00:13:02,560 +with whom? With the last element. So that when you + +211 +00:13:02,560 --> 00:13:04,960 +come and make a loop after that, it loops from the + +212 +00:13:04,960 --> 00:13:08,400 +first to whom? To where the index was. The rest is + +213 +00:13:08,400 --> 00:13:12,060 +still empty, it hasn't been filled yet. So I + +214 +00:13:12,060 --> 00:13:14,940 +assumed, you can assume that the index is zero, I + +215 +00:13:14,940 --> 00:13:17,260 +assumed that it is less than one, so that as long + +216 +00:13:17,260 --> 00:13:20,700 +as no element is filled, the value of the index is + +217 +00:13:20,700 --> 00:13:24,000 +still less than one. Now I want to make a method + +218 +00:13:24,000 --> 00:13:31,060 +public void add, and this takes an item of type T. + +219 +00:13:32,960 --> 00:13:35,980 +Now I want to make a new element. The logic is + +220 +00:13:35,980 --> 00:13:39,220 +that I want to go to the index and add it to one, + +221 +00:13:39,360 --> 00:13:45,140 +then I will tell it itemsI have the index, put it + +222 +00:13:45,140 --> 00:13:48,880 +to the item Right or not guys? Yes, but this needs + +223 +00:13:48,880 --> 00:13:50,980 +a condition before I want to make sure that it + +224 +00:13:50,980 --> 00:13:53,020 +does not reach the end, okay? + +225 +00:13:55,900 --> 00:13:59,480 +So I want to tell him what? If the index is + +226 +00:13:59,480 --> 00:14:06,760 +smaller than items.length minus one + +227 +00:14:11,800 --> 00:14:15,780 +Okay, why is it smaller than length minus one? For + +228 +00:14:15,780 --> 00:14:21,320 +example, how big was the list? Yes, six. The index + +229 +00:14:21,320 --> 00:14:25,620 +always indicates For example, the index here, what + +230 +00:14:25,620 --> 00:14:33,140 +is its value? 0, 1, 2, 3, 4, 4. I want to check if + +231 +00:14:33,140 --> 00:14:36,680 +the index 4 is less than length-max 1, less than + +232 +00:14:36,680 --> 00:14:41,320 +what happens? Less than 5, correct. Of course, it + +233 +00:14:41,320 --> 00:14:43,280 +means that there is a place. So, what do I do? I + +234 +00:14:43,280 --> 00:14:45,960 +increase the index. What happened here? What is + +235 +00:14:45,960 --> 00:14:50,180 +its value? 5, and I put my element. I want to make + +236 +00:14:50,180 --> 00:14:54,100 +an add again. The gate should not allow it. So I + +237 +00:14:54,100 --> 00:14:56,120 +want to ask him if the index is smaller than... I + +238 +00:14:56,120 --> 00:14:57,060 +don't want to tell him the index, if I tell him + +239 +00:14:57,060 --> 00:14:59,140 +it's smaller than the length, it's true. Okay? + +240 +00:14:59,340 --> 00:15:01,040 +It's supposed to continue like this. Smaller than + +241 +00:15:01,040 --> 00:15:05,160 +the length minus 1. Will 5 be smaller than 5? No. + +242 +00:15:05,360 --> 00:15:07,820 +It didn't happen, which means it won't add a new + +243 +00:15:07,820 --> 00:15:11,320 +element. Okay? So if the index is smaller than the + +244 +00:15:11,320 --> 00:15:16,020 +length minus 1 Because + +245 +00:15:16,020 --> 00:15:18,800 +if it's actually smaller than the length minus 1, + +246 +00:15:18,860 --> 00:15:21,850 +it will increase the index and then we put the + +247 +00:15:21,850 --> 00:15:26,390 +item this is for the add method this gate after we + +248 +00:15:26,390 --> 00:15:29,110 +made the method add you are with me till now? we + +249 +00:15:29,110 --> 00:15:31,870 +can go to my iterator and say what is this gate? + +250 +00:15:32,190 --> 00:15:41,230 +a4.add this is for example ahmed a4.add this is + +251 +00:15:41,230 --> 00:15:45,590 +aleh this + +252 +00:15:45,590 --> 00:15:50,690 +adds elements to itDo you guys want to make a loop + +253 +00:15:50,690 --> 00:15:55,210 +on our array? Ok, we want to make it like these + +254 +00:15:55,210 --> 00:15:58,590 +guys, we want to make an iterator Currently, if I + +255 +00:15:58,590 --> 00:16:02,850 +tell him a4.iterator, we don't have an iterator, + +256 +00:16:03,130 --> 00:16:06,410 +ok? And it should also be that all these guys here + +257 +00:16:06,410 --> 00:16:11,210 +should be private, why? I can't know what's in the + +258 +00:16:11,210 --> 00:16:11,670 +structure + +259 +00:16:18,530 --> 00:16:22,350 +Okay, if I say a4. I will not see anything except + +260 +00:16:22,350 --> 00:16:26,930 +the method add. Okay, if I say I want to make a + +261 +00:16:26,930 --> 00:16:30,390 +loop, before I make add, I will also find one of + +262 +00:16:30,390 --> 00:16:32,850 +the things that should be present, which is + +263 +00:16:32,850 --> 00:16:35,990 +remove. Okay, there is remove in the index and + +264 +00:16:35,990 --> 00:16:40,030 +there is remove in the item itself. Okay, but I + +265 +00:16:40,030 --> 00:16:43,630 +will not do this. Why? Because this remove takes a + +266 +00:16:43,630 --> 00:16:45,850 +lot of time Remove for any element they want to + +267 +00:16:45,850 --> 00:16:48,330 +change it if it came without creating a new array + +268 +00:16:48,330 --> 00:16:51,290 +with a smaller size and doing shift to take the + +269 +00:16:51,290 --> 00:16:54,230 +previous elements and put them in the new one Like + +270 +00:16:54,230 --> 00:16:58,070 +the code we did in one program This is not our + +271 +00:16:58,070 --> 00:17:03,630 +topic I made the add now and I want to do loop on + +272 +00:17:03,630 --> 00:17:06,810 +elements I want there to be something called + +273 +00:17:06,810 --> 00:17:08,970 +itator + +274 +00:17:15,750 --> 00:17:20,850 +iterator, string, this is an example of an + +275 +00:17:20,850 --> 00:17:25,990 +iterator, an iterator 2 basically I say that as + +276 +00:17:25,990 --> 00:17:28,730 +long as the iterator 2 dot has next + +277 +00:17:44,320 --> 00:17:46,880 +Ok guys? But of course this method doesn't exist. + +278 +00:17:47,620 --> 00:17:49,700 +It doesn't exist. Let's go and make it. So we come + +279 +00:17:49,700 --> 00:17:52,400 +to the MyArray. Ok? And here we want to make a + +280 +00:17:52,400 --> 00:17:57,480 +method public What should return the method? + +281 +00:17:58,900 --> 00:18:02,860 +Iterator of type T. Right? The name of the method + +282 +00:18:02,860 --> 00:18:03,600 +is iterator. + +283 +00:18:06,400 --> 00:18:09,920 +And it will run. Ok. Since this method returns + +284 +00:18:09,920 --> 00:18:13,680 +iterator, we must create iterator. + +285 +00:18:15,920 --> 00:18:27,240 +iterator T is equal to new iterator + +286 +00:18:27,240 --> 00:18:32,180 +because java has an interface called iterator + +287 +00:18:32,180 --> 00:18:35,780 +there are two methods which are hasNext and next + +288 +00:18:38,280 --> 00:18:40,640 +Okay, why did he refuse? He made an error. Let's + +289 +00:18:40,640 --> 00:18:44,540 +see what the error says. Cannot be instantiated. + +290 +00:18:44,620 --> 00:18:46,680 +Why? Because the iterator is an interface. I can't + +291 +00:18:46,680 --> 00:18:49,360 +make an object from an interface. Except in one + +292 +00:18:49,360 --> 00:18:51,800 +case. What is it? Anonymous class. Yes, you can + +293 +00:18:51,800 --> 00:18:53,260 +make an anonymous class. Or you can make another + +294 +00:18:53,260 --> 00:18:56,180 +class and implement it to the iterator and make an + +295 +00:18:56,180 --> 00:18:58,760 +object from it. Okay? So this solves the problem + +296 +00:18:58,760 --> 00:19:02,780 +of how after these two brackets you open the code + +297 +00:19:02,780 --> 00:19:06,830 +brackets.To implement for whom? For the missing + +298 +00:19:06,830 --> 00:19:11,830 +methods So the get-hick will implement the next + +299 +00:19:11,830 --> 00:19:13,410 +and the hasnext, these are mandatory, we have to + +300 +00:19:13,410 --> 00:19:18,290 +make them, it will generate You can make an object + +301 +00:19:18,290 --> 00:19:21,850 +from an operator provided that you complete the + +302 +00:19:21,850 --> 00:19:24,170 +missing methods, this is the idea of anonymous + +303 +00:19:24,170 --> 00:19:29,280 +classAn anonymous class needs for example an + +304 +00:19:29,280 --> 00:19:32,200 +object when you click on a button, what do you + +305 +00:19:32,200 --> 00:19:37,140 +call it? Event listener? Event listener, we used + +306 +00:19:37,140 --> 00:19:39,360 +to call it new event listener, which opens two + +307 +00:19:39,360 --> 00:19:40,700 +boxes and completes the implementation of the + +308 +00:19:40,700 --> 00:19:43,460 +missing method. When you complete the missing + +309 +00:19:43,460 --> 00:19:48,470 +method, the object becomes complete. so the + +310 +00:19:48,470 --> 00:19:51,370 +interface in java has an iterator to tell you that + +311 +00:19:51,370 --> 00:19:52,690 +anyone who wants to create an iterator should + +312 +00:19:52,690 --> 00:19:55,470 +create an implement for this interface and it + +313 +00:19:55,470 --> 00:19:57,950 +brought these two methods which is the hasNext() + +314 +00:19:57,950 --> 00:20:00,210 +and the method next() which returns E I'm just + +315 +00:20:00,210 --> 00:20:03,210 +going to remove E and replace it with T okay? + +316 +00:20:08,610 --> 00:20:12,850 +okay and in the end it should return the iterator + +317 +00:20:12,850 --> 00:20:18,370 +itself okay, why is it here? Okay, + +318 +00:20:24,650 --> 00:20:34,910 +let's go back to anything to make sure I + +319 +00:20:34,910 --> 00:20:39,750 +say + +320 +00:20:53,800 --> 00:20:56,040 +Okay, so it wants you to write the parameters + +321 +00:20:56,040 --> 00:20:57,780 +here. Anyway, did you find out guys that we are + +322 +00:20:57,780 --> 00:21:01,090 +supposed to implement for whom? for the has next + +323 +00:21:01,090 --> 00:21:03,970 +and the next and those who want to implement for + +324 +00:21:03,970 --> 00:21:06,690 +the has next and the next must understand how the + +325 +00:21:06,690 --> 00:21:10,170 +data structure is made because we use the array + +326 +00:21:10,170 --> 00:21:12,570 +pay attention to me did you find the idea of ​​the + +327 +00:21:12,570 --> 00:21:15,190 +iterator as I explained a while ago it is a marker + +328 +00:21:15,190 --> 00:21:18,710 +that marks where before the first place yet + +329 +00:21:18,710 --> 00:21:20,290 +because the idea of ​​the iterator starts from the + +330 +00:21:20,290 --> 00:21:22,690 +first to the last okay so did you find the + +331 +00:21:22,690 --> 00:21:25,930 +iterator itself there should be a marker so we + +332 +00:21:25,930 --> 00:21:29,870 +come inside the iterator okay and we do int Let's + +333 +00:21:29,870 --> 00:21:33,370 +call it an Iter Index What is its value? One + +334 +00:21:33,370 --> 00:21:35,990 +person says, you are above the index, the index + +335 +00:21:35,990 --> 00:21:38,550 +above has nothing to do with this, it is + +336 +00:21:38,550 --> 00:21:40,670 +responsible for determining how much I filled, + +337 +00:21:41,630 --> 00:21:45,210 +okay? So the first index, the basic structure, is + +338 +00:21:45,210 --> 00:21:47,530 +this one, for example, which is here, and where is + +339 +00:21:47,530 --> 00:21:51,150 +the iterator index? It is here, so I found that it + +340 +00:21:51,150 --> 00:21:55,010 +is my responsibility to move this index and get + +341 +00:21:55,010 --> 00:21:57,910 +the elements until it reaches this pointI have + +342 +00:21:57,910 --> 00:22:00,250 +this, this is the idea, this is in the case of + +343 +00:22:00,250 --> 00:22:02,590 +array of course, if there is a case of tree or + +344 +00:22:02,590 --> 00:22:03,890 +graph or something like that, the subject is + +345 +00:22:03,890 --> 00:22:07,050 +different, you and your skills, how you index + +346 +00:22:07,050 --> 00:22:10,190 +yourself, this index keeps moving to someone else + +347 +00:22:10,190 --> 00:22:15,550 +or to whom, to the end of the list or the data + +348 +00:22:15,550 --> 00:22:18,520 +structureOkay, so it started with .. did you find + +349 +00:22:18,520 --> 00:22:20,300 +this index? What is supposed to be in it? What + +350 +00:22:20,300 --> 00:22:23,600 +does it mean? Is there a following element or not? + +351 +00:22:24,600 --> 00:22:29,620 +Now, it is supposed to be simply that the iterator + +352 +00:22:29,620 --> 00:22:35,200 +index is smaller than the index No, it's smaller + +353 +00:22:35,200 --> 00:22:39,500 +than that. I'll tell you why. Because I really .. + +354 +00:22:39,500 --> 00:22:44,000 +this is the index of my list. If this is .. this + +355 +00:22:44,000 --> 00:22:46,440 +is the index of my iterator. Okay? What is the + +356 +00:22:46,440 --> 00:22:49,060 +last element that I should read when it's like + +357 +00:22:49,060 --> 00:22:54,380 +this? This is before this. Okay? What is this? We + +358 +00:22:54,380 --> 00:22:56,560 +said that it indicates what came before. Because + +359 +00:22:56,560 --> 00:22:59,720 +when it says has next, is this less than this? + +360 +00:23:00,100 --> 00:23:04,090 +Correct? If it's less than this, I add it. and I + +361 +00:23:04,090 --> 00:23:07,370 +read this, right? these two gates are in the same + +362 +00:23:07,370 --> 00:23:12,450 +place when this gate does has next we don't want + +363 +00:23:12,450 --> 00:23:15,990 +it to be equal why? because this gate is going to + +364 +00:23:15,990 --> 00:23:19,870 +be smaller than the iterator index is smaller than + +365 +00:23:19,870 --> 00:23:22,710 +the index so this has next will return true of + +366 +00:23:22,710 --> 00:23:24,310 +false only if it says that there is a next element + +367 +00:23:24,310 --> 00:23:30,750 +or there is no next element okay? okay next this + +368 +00:23:30,750 --> 00:23:36,030 +returns the item instead of using array, the next + +369 +00:23:36,030 --> 00:23:38,930 +element will be what? it will provide a step + +370 +00:23:38,930 --> 00:23:42,370 +indicator and return the element that it has if it + +371 +00:23:42,370 --> 00:23:44,070 +was a tree, you would see how it connects to the + +372 +00:23:44,070 --> 00:23:45,970 +son for example the one on the right or the son on + +373 +00:23:45,970 --> 00:23:50,570 +the left so here we say return name of the array + +374 +00:23:50,570 --> 00:23:55,430 +items we have not provided yet this is iterator + +375 +00:23:55,430 --> 00:24:02,270 +index plus plus and return which is at the + +376 +00:24:02,270 --> 00:24:06,030 +iterator index okay? + +377 +00:24:06,150 --> 00:24:11,790 +which one did we implement guys? the next we + +378 +00:24:11,790 --> 00:24:13,790 +finished the iterator, we created an object from + +379 +00:24:13,790 --> 00:24:17,150 +it and in the end we returned the iterator we will + +380 +00:24:17,150 --> 00:24:22,730 +go back to ... because the code is running okay? + +381 +00:24:23,050 --> 00:24:25,470 +it is supposed to bring the iterator and make a + +382 +00:24:25,470 --> 00:24:29,750 +loop on it okay? but this code that I found below + +383 +00:24:37,590 --> 00:24:43,750 +Now it is running and it is outputting loop to + +384 +00:24:43,750 --> 00:24:49,950 +Ahmed, Ali and Omar It is like we made our own + +385 +00:24:49,950 --> 00:24:56,420 +playlist and we made method iterator in it The + +386 +00:24:56,420 --> 00:24:59,240 +idea is that you provide a unified form or method + +387 +00:24:59,240 --> 00:25:03,420 +to connect to the elements to be like any other + +388 +00:25:03,420 --> 00:25:07,100 +data structure and the programmer does not have to + +389 +00:25:07,100 --> 00:25:11,340 +know the details. As we said, these ideas or + +390 +00:25:11,340 --> 00:25:16,000 +design patterns benefit us when you design an API. + +391 +00:25:16,780 --> 00:25:20,160 +The successful API is something that facilitates + +392 +00:25:20,160 --> 00:25:24,550 +as much as possible to the user is to use the + +393 +00:25:24,550 --> 00:25:28,590 +code, right or wrong? the easier it is to use a + +394 +00:25:28,590 --> 00:25:32,090 +word has its own data structure you want to make + +395 +00:25:32,090 --> 00:25:34,270 +it easier for the user so you provide him with the + +396 +00:25:34,270 --> 00:25:37,710 +iterator you are using a tree instead of telling + +397 +00:25:37,710 --> 00:25:43,130 +him to make a traverse in the tree this iterator + +398 +00:25:43,130 --> 00:25:46,530 +that I provided is passing through the existing + +399 +00:25:46,530 --> 00:25:50,710 +elements okay guys? okay, did you get it? let's + +400 +00:25:50,710 --> 00:25:50,970 +read + +401 +00:25:54,350 --> 00:26:00,570 +The iterator is an object that provides a standard + +402 +00:26:00,570 --> 00:26:04,430 +way to examine all elements of any collection It + +403 +00:26:04,430 --> 00:26:12,570 +is a uniform interface for + +404 +00:26:12,570 --> 00:26:16,250 +traversing many different data structureswithout + +405 +00:26:16,250 --> 00:26:20,710 +exposing their implementation without exposing + +406 +00:26:20,710 --> 00:26:23,370 +their implementation without exposing their + +407 +00:26:23,370 --> 00:26:23,370 +implementation without exposing their + +408 +00:26:23,370 --> 00:26:23,370 +implementation without exposing their + +409 +00:26:23,370 --> 00:26:23,370 +implementation without exposing their + +410 +00:26:23,370 --> 00:26:23,450 +implementation without exposing their + +411 +00:26:23,450 --> 00:26:23,810 +implementation without exposing their + +412 +00:26:23,810 --> 00:26:23,890 +implementation without exposing their + +413 +00:26:23,890 --> 00:26:24,210 +implementation without exposing their + +414 +00:26:24,210 --> 00:26:24,390 +implementation without exposing their + +415 +00:26:24,390 --> 00:26:25,270 +implementation without exposing their + +416 +00:26:25,270 --> 00:26:25,270 +implementation without exposing their + +417 +00:26:25,270 --> 00:26:25,270 +implementation without exposing their + +418 +00:26:25,270 --> 00:26:25,270 +implementation without exposing their + +419 +00:26:25,270 --> 00:26:25,270 +implementation without exposing their + +420 +00:26:25,270 --> 00:26:25,270 +implementation without exposing their + +421 +00:26:25,270 --> 00:26:25,270 +implementation without exposing their + +422 +00:26:25,270 --> 00:26:25,270 +implementation without exposing their + +423 +00:26:25,270 --> 00:26:25,270 +implementation without exposing their + +424 +00:26:25,270 --> 00:26:25,310 +implementation without exposing their + +425 +00:26:25,310 --> 00:26:25,310 +implementation without exposing their + +426 +00:26:25,310 --> 00:26:25,310 +implementation without exposing their + +427 +00:26:25,310 --> 00:26:25,310 +implementation without exposing their + +428 +00:26:25,310 --> 00:26:25,310 +implementation without exposing their + +429 +00:26:25,310 --> 00:26:25,310 +implementation without exposing their + +430 +00:26:25,310 --> 00:26:25,310 +implementation without exposing their + +431 +00:26:25,310 --> 00:26:25,310 +implementation without exposing their + +432 +00:26:25,310 --> 00:26:25,310 +implementation without exposing their + +433 +00:26:25,310 --> 00:26:25,310 +implementation without exposing their + +434 +00:26:25,310 --> 00:26:25,310 +implementation without exposing their + +435 +00:26:25,310 --> 00:26:25,310 +implementation without exposing their + +436 +00:26:25,310 --> 00:26:25,310 +implementation without exposing their + +437 +00:26:25,310 --> 00:26:25,430 +implementation without exposing their + +438 +00:26:25,430 --> 00:26:25,430 +implementation without exposing their + +439 +00:26:25,430 --> 00:26:25,430 +implementation without exposing their + +440 +00:26:25,430 --> 00:26:25,770 +implementation without exposing their + +441 +00:26:25,770 --> 00:26:25,770 +implementation without exposing their + +442 +00:26:25,770 --> 00:26:25,770 +implementation without exposing their + +443 +00:26:25,770 --> 00:26:25,790 +implementation without exposing their + +444 +00:26:25,790 --> 00:26:26,790 +implementation without exposing their + +445 +00:26:26,790 --> 00:26:26,790 +implementation without exposing their + +446 +00:26:26,790 --> 00:26:28,190 +implementation without exposing their + +447 +00:26:28,190 --> 00:26:29,930 +implementation without exposing their + +448 +00:26:29,930 --> 00:26:29,930 +implementation without exposing their + +449 +00:26:29,930 --> 00:26:29,930 +implementation without exposing their + +450 +00:26:29,930 --> 00:26:29,930 +implementation without exposing their + +451 +00:26:29,930 --> 00:26:29,930 +implementation without exposing their + +452 +00:26:29,930 --> 00:26:29,930 +implementation without exposing their + +453 +00:26:29,930 --> 00:26:29,930 +implementation without exposing their + +454 +00:26:29,930 --> 00:26:29,930 +implementation without exposing their + +455 +00:26:29,930 --> 00:26:29,930 +implementation without exposing their + +456 +00:26:29,930 --> 00:26:29,930 +implementation without exposing their + +457 +00:26:29,930 --> 00:26:29,930 +implementation without exposing their + +458 +00:26:29,930 --> 00:26:30,370 +implementation without exposing their + +459 +00:26:30,370 --> 00:26:34,420 +implementation without It's like when you create a + +460 +00:26:34,420 --> 00:26:36,460 +loop and you find a certain element and you want + +461 +00:26:36,460 --> 00:26:38,460 +to remove it But of course I didn't create a loop + +462 +00:26:38,460 --> 00:26:41,420 +to remove or implement it because I don't want + +463 +00:26:41,420 --> 00:26:44,140 +this work to be left to me What matters is the + +464 +00:26:44,140 --> 00:26:47,360 +idea, what is the goal of the iterator and how do + +465 +00:26:47,360 --> 00:26:52,940 +we work with any data structure that we have Now + +466 +00:26:52,940 --> 00:26:55,660 +of course in Java we have an interface called + +467 +00:26:55,660 --> 00:26:59,780 +iterator Actually it has three methods, hasNext, + +468 +00:26:59,900 --> 00:27:03,500 +next and removeOf course, you have to implement + +469 +00:27:03,500 --> 00:27:05,540 +for whom? For the one who has next and next and + +470 +00:27:05,540 --> 00:27:09,020 +remove can not implement Of course, someone will + +471 +00:27:09,020 --> 00:27:11,140 +ask, he will say, as long as the remove is present + +472 +00:27:11,140 --> 00:27:14,240 +in the iterator interface, its implementation + +473 +00:27:14,240 --> 00:27:18,480 +should be mandatory, okay? Did you find in Java 8? + +474 +00:27:19,170 --> 00:27:22,290 +Starting from Java 8, + +475 +00:27:23,190 --> 00:27:35,590 +you can + +476 +00:27:35,590 --> 00:27:39,570 +add default methods to the interface so that the + +477 +00:27:39,570 --> 00:27:43,440 +user does not implementIt's mandatory for some + +478 +00:27:43,440 --> 00:27:46,060 +methods, okay? Among the methods that they made, + +479 +00:27:46,360 --> 00:27:48,720 +it's a new way, the interface has optional things + +480 +00:27:48,720 --> 00:27:52,540 +In the past, the entire interface was mandatory, + +481 +00:27:52,680 --> 00:27:55,360 +but now there are optional things So he put the + +482 +00:27:55,360 --> 00:27:57,200 +method remove as an optional thing, you can + +483 +00:27:57,200 --> 00:28:02,270 +implement it or not, but these are mandatory In + +484 +00:28:02,270 --> 00:28:09,950 +Java, all types of collections, such as ArrayList, + +485 +00:28:10,170 --> 00:28:14,190 +LinkedList, TreeSet, HashSet, etc. All of them + +486 +00:28:14,190 --> 00:28:17,270 +follow an API called Collection All of them + +487 +00:28:17,270 --> 00:28:22,470 +implement one interface called Collection The + +488 +00:28:22,470 --> 00:28:26,290 +ArrayList is a collection, and LinkedList is a + +489 +00:28:26,290 --> 00:28:30,640 +collection This interface CollectionThis is an + +490 +00:28:30,640 --> 00:28:34,200 +interface with a method called iterator. Why? + +491 +00:28:34,280 --> 00:28:37,760 +Because anyone who wants to make a collection must + +492 +00:28:37,760 --> 00:28:41,860 +support whom? He must support the iterator. As I + +493 +00:28:41,860 --> 00:28:44,000 +told you, this is the standard way, you must + +494 +00:28:44,000 --> 00:28:46,620 +provide it. If you made a collection, you must + +495 +00:28:46,620 --> 00:28:49,930 +provide it to the user. Iterator to easily create + +496 +00:28:49,930 --> 00:28:54,350 +a loop Create whatever data structure you want But + +497 +00:28:54,350 --> 00:28:56,690 +in the end, don't force the user, provide him with + +498 +00:28:56,690 --> 00:28:59,570 +an iterator And this is the idea of the iterator + +499 +00:28:59,570 --> 00:29:03,590 +design pattern This is just an example of how I + +500 +00:29:03,590 --> 00:29:07,690 +create a loop on the iterator Like a while ago, I + +501 +00:29:07,690 --> 00:29:10,870 +was doing while iterator.hasnex He did it using + +502 +00:29:10,870 --> 00:29:11,350 +for + +503 +00:29:14,800 --> 00:29:17,680 +Loops The for loop of course, you know that for is + +504 +00:29:17,680 --> 00:29:20,000 +more than a part of it The first part is executed + +505 +00:29:20,000 --> 00:29:23,640 +only once, which is when I go to the iterator and + +506 +00:29:23,640 --> 00:29:26,320 +initialize it to a variable called iter And then + +507 +00:29:26,320 --> 00:29:31,040 +in each loop it executes the has next I prefer the + +508 +00:29:31,040 --> 00:29:34,040 +while loop because it is easier to use here + +509 +00:29:37,140 --> 00:29:39,860 +have adding your own iterator for example here it + +510 +00:29:39,860 --> 00:29:42,700 +gives an example like I made a class named MyArray + +511 +00:29:42,700 --> 00:29:45,520 +here I made a class named PlayerList for example + +512 +00:29:45,520 --> 00:29:48,240 +this is a list dedicated to you for players for + +513 +00:29:48,240 --> 00:29:50,300 +example to a specific data structure you need to + +514 +00:29:50,300 --> 00:29:52,940 +support the iterator in it all you need to do in + +515 +00:29:52,940 --> 00:29:55,500 +the class is to make a method called iterator + +516 +00:29:55,500 --> 00:29:59,600 +returns iterator and implement for whom? for this + +517 +00:29:59,600 --> 00:30:01,640 +method which creates an object of the type + +518 +00:30:01,640 --> 00:30:04,060 +iterator and implement for next and hasNext and + +519 +00:30:04,060 --> 00:30:08,160 +returns this objectAlright guys, and that's how we + +520 +00:30:08,160 --> 00:30:11,600 +finish the iterator pattern. Let's see another + +521 +00:30:11,600 --> 00:30:14,960 +design pattern which is also simple, it's called + +522 +00:30:14,960 --> 00:30:19,420 +the memento pattern. Do you see the word memento? + +523 +00:30:21,710 --> 00:30:24,710 +This is not an English word, I think it's a + +524 +00:30:24,710 --> 00:30:27,030 +Spanish word meaning something like minute or + +525 +00:30:27,030 --> 00:30:31,270 +thinker or something like thinking, okay? + +526 +00:30:34,290 --> 00:30:37,070 +Of course these slides are not required, okay? + +527 +00:30:37,210 --> 00:30:38,650 +What is required in the memento pattern are the + +528 +00:30:38,650 --> 00:30:42,010 +last two slides, okay? Because what is the memento + +529 +00:30:42,010 --> 00:30:44,110 +pattern in a very short form? This is a simple + +530 +00:30:44,110 --> 00:30:45,170 +design pattern + +531 +00:30:47,420 --> 00:30:51,280 +I tell you sometimes in your programs, you have a + +532 +00:30:51,280 --> 00:30:55,220 +class, okay? Of course, he called the class, he + +533 +00:30:55,220 --> 00:30:59,200 +called it originator + +534 +00:31:01,380 --> 00:31:04,300 +From origin, what is origin? The source, this + +535 +00:31:04,300 --> 00:31:06,500 +class is the source, this class can be for example + +536 +00:31:06,500 --> 00:31:10,200 +a game, an electronic safe, something with data, + +537 +00:31:10,480 --> 00:31:12,880 +information, this game, sometimes you need to + +538 +00:31:12,880 --> 00:31:14,260 +memorize the state of the game in order to + +539 +00:31:14,260 --> 00:31:17,380 +retrieve it later, and usually when you play, you + +540 +00:31:17,380 --> 00:31:19,420 +do a lot of save operations, every five minutes, + +541 +00:31:19,520 --> 00:31:23,040 +for example, you do a save, okay? And also if you + +542 +00:31:23,040 --> 00:31:25,280 +have information, a document for example, there is + +543 +00:31:25,280 --> 00:31:27,400 +text and so on, you also need to constantly + +544 +00:31:27,400 --> 00:31:30,630 +memorize the state of this documentSo these + +545 +00:31:30,630 --> 00:31:34,030 +attributes represent the state or the case of the + +546 +00:31:34,030 --> 00:31:38,810 +originator You need to memorize this information, + +547 +00:31:38,810 --> 00:31:44,530 +okay? It could be that this represents a game or a + +548 +00:31:44,530 --> 00:31:49,990 +book or a document, okay? In my program, there + +549 +00:31:49,990 --> 00:31:53,110 +could be another class called caretaker, that's + +550 +00:31:53,110 --> 00:31:57,450 +how they call it. What is a caretaker?to the + +551 +00:31:57,450 --> 00:31:59,590 +person in charge, another person, they call him + +552 +00:31:59,590 --> 00:32:03,710 +caretaker. The caretaker, for example, is the one + +553 +00:32:03,710 --> 00:32:06,650 +who implements or controls who in the originator + +554 +00:32:06,650 --> 00:32:09,470 +and needs, for example, this caretaker when he + +555 +00:32:09,470 --> 00:32:11,690 +comes to change in the originator or for example, + +556 +00:32:11,870 --> 00:32:13,750 +I imagine that this is a document and this is the + +557 +00:32:13,750 --> 00:32:17,380 +class that changesthe content of this document or + +558 +00:32:17,380 --> 00:32:20,840 +this game, this class that executes the commands + +559 +00:32:20,840 --> 00:32:25,080 +of the game this class when it executes a certain + +560 +00:32:25,080 --> 00:32:28,360 +command, it needs to memorize the state of the + +561 +00:32:28,360 --> 00:32:31,820 +originator then it changes, it makes changes to it + +562 +00:32:31,820 --> 00:32:36,100 +until after a while it returns to the state it + +563 +00:32:36,100 --> 00:32:37,460 +returns to the originator and tells it to return + +564 +00:32:37,460 --> 00:32:42,220 +to the previous stateBut now the caretaker should + +565 +00:32:42,220 --> 00:32:47,060 +take a copy of the estate and keep it with him so + +566 +00:32:47,060 --> 00:32:51,200 +that he can retrieve it later. Okay? Where is + +567 +00:32:51,200 --> 00:32:53,220 +this? As I said, imagine this is a document and + +568 +00:32:53,220 --> 00:32:57,820 +this class changes this document. Like we took the + +569 +00:32:57,820 --> 00:33:03,060 +idea of undo and redo. This is the place I draw on + +570 +00:33:03,060 --> 00:33:05,260 +it and this is the class that executes the orders + +571 +00:33:05,260 --> 00:33:06,100 +of the painter. + +572 +00:33:09,020 --> 00:33:12,260 +What does it do? It preserves the state of the + +573 +00:33:12,260 --> 00:33:14,580 +piece of paper it drew. Right? So that it can be + +574 +00:33:14,580 --> 00:33:17,280 +translated. So the idea of the Memento Pattern, as + +575 +00:33:17,280 --> 00:33:22,560 +I said, or when should it be used? To ensure a + +576 +00:33:22,560 --> 00:33:27,620 +higher degree of data security, the caretaker + +577 +00:33:27,620 --> 00:33:28,980 +should be able to preserve the state of the + +578 +00:33:28,980 --> 00:33:32,020 +originator, that is, this state that contains + +579 +00:33:32,020 --> 00:33:34,380 +information. And I want to preserve it because I + +580 +00:33:34,380 --> 00:33:36,540 +want to change this gate to the originator. I want + +581 +00:33:36,540 --> 00:33:40,080 +to preserve this information. Okay, so that you + +582 +00:33:40,080 --> 00:33:43,500 +come here for example in the list Okay, but at the + +583 +00:33:43,500 --> 00:33:46,540 +same time, the caretaker is not allowed to look at + +584 +00:33:46,540 --> 00:33:51,080 +this information I mean, I want to save the + +585 +00:33:51,080 --> 00:33:54,000 +originator's case and let him retrieve it later, + +586 +00:33:54,140 --> 00:33:56,780 +but at the same time, I don't want the caretaker + +587 +00:33:56,780 --> 00:34:00,200 +to look at what's in these details from a higher + +588 +00:34:00,200 --> 00:34:02,520 +security level for the data Who is responsible for + +589 +00:34:02,520 --> 00:34:04,940 +looking at this information? Only who? The + +590 +00:34:04,940 --> 00:34:09,580 +originatorHe should be able to memorize the + +591 +00:34:09,580 --> 00:34:11,060 +originator case, but at the same time, he should + +592 +00:34:11,060 --> 00:34:15,000 +not look at the information in it. How can we do + +593 +00:34:15,000 --> 00:34:18,020 +this? I will give you an example. For example, a + +594 +00:34:18,020 --> 00:34:20,060 +person has money or precious things, he wants to + +595 +00:34:20,060 --> 00:34:21,840 +keep them safe, he wants to travel, he wants to + +596 +00:34:21,840 --> 00:34:26,340 +memorize this information. He might also want to + +597 +00:34:26,340 --> 00:34:28,980 +put it in front of a certain person, but he does + +598 +00:34:28,980 --> 00:34:31,980 +not want this person to see it.on the details of + +599 +00:34:31,980 --> 00:34:35,180 +these documents or these precious things. So, he + +600 +00:34:35,180 --> 00:34:36,860 +takes these things and puts them in a small safe + +601 +00:34:36,860 --> 00:34:40,500 +and tells him, come here, this is your trust, take + +602 +00:34:40,500 --> 00:34:46,080 +this safe and keep it here. I took it as a safe + +603 +00:34:46,080 --> 00:34:49,020 +and gave it to him. Of course, if he tried to + +604 +00:34:49,020 --> 00:34:51,280 +break it while I was traveling, he wouldn't be + +605 +00:34:51,280 --> 00:34:56,080 +able to open it. Okay? He kept these things, but + +606 +00:34:56,080 --> 00:34:59,680 +at the same time, he couldn't see them. So I came + +607 +00:34:59,680 --> 00:35:02,860 +back from the trip. After trying to break it for a + +608 +00:35:02,860 --> 00:35:05,120 +whole month, he returned it and said, here you go, + +609 +00:35:05,240 --> 00:35:07,820 +I didn't try to open it, here you go, I trusted + +610 +00:35:07,820 --> 00:35:14,140 +you, as it is, safe, I don't know. So the idea is, + +611 +00:35:14,540 --> 00:35:17,540 +this is the scenario that I want, that I have + +612 +00:35:17,540 --> 00:35:20,960 +objects, I want to be able to memorize their cases + +613 +00:35:20,960 --> 00:35:23,800 +and take the object of this case and memorize it + +614 +00:35:23,800 --> 00:35:26,900 +in another class or another list, this memorizes + +615 +00:35:26,900 --> 00:35:28,520 +the case, but at the same time, this should not + +616 +00:35:28,520 --> 00:35:32,500 +appear on the information here. How do we do this? + +617 +00:35:32,700 --> 00:35:36,140 +This is what we do by using the memento pattern. + +618 +00:35:36,380 --> 00:35:37,800 +Let's see how to do it quickly. + +619 +00:35:51,210 --> 00:35:55,990 +Okay guys, now let's say I have a class called + +620 +00:35:55,990 --> 00:35:59,270 +originator, okay? It represents a document, a + +621 +00:35:59,270 --> 00:36:02,790 +game, a library, whatever you want, okay? And this + +622 +00:36:02,790 --> 00:36:07,610 +has data such as text and score, okay? These are + +623 +00:36:07,610 --> 00:36:10,570 +the secret information. What is supposed to be? We + +624 +00:36:10,570 --> 00:36:15,090 +keep them every while, but we don't want anyone to + +625 +00:36:15,090 --> 00:36:19,060 +look at them except who? The originator So this + +626 +00:36:19,060 --> 00:36:22,320 +idea came to support this memorization They say + +627 +00:36:22,320 --> 00:36:24,820 +come inside the originator and make an inner class + +628 +00:36:24,820 --> 00:36:29,880 +Inner class What do we call it for example? I'm + +629 +00:36:29,880 --> 00:36:33,960 +going to call it memento The inner class has the + +630 +00:36:33,960 --> 00:36:37,920 +same attributes as the originator So these are the + +631 +00:36:37,920 --> 00:36:40,600 +first thing of course to guarantee privacy these + +632 +00:36:40,600 --> 00:36:46,320 +will be private And these also inside the memento + +633 +00:36:47,940 --> 00:36:49,880 +No, leave them here, okay? + +634 +00:36:52,460 --> 00:36:56,140 +They themselves have to make a copy of them inside + +635 +00:36:56,140 --> 00:36:59,200 +the memento. And also inside the memento, they + +636 +00:36:59,200 --> 00:37:05,160 +have to make a copy of them privately. You don't + +637 +00:37:05,160 --> 00:37:08,140 +make public setars and guitars.Okay, you can make + +638 +00:37:08,140 --> 00:37:10,060 +a private set originator, but the important thing + +639 +00:37:10,060 --> 00:37:12,560 +is to keep everything inside the memento private. + +640 +00:37:13,820 --> 00:37:15,900 +What's the point of keeping it private? Because + +641 +00:37:15,900 --> 00:37:17,940 +only the originator can access the content of the + +642 +00:37:17,940 --> 00:37:22,140 +memento. Anyone outside will not be able to access + +643 +00:37:22,140 --> 00:37:24,420 +it. Of course, we can make a constructor called + +644 +00:37:24,420 --> 00:37:29,080 +memento, even the constructor, okay, I want to + +645 +00:37:29,080 --> 00:37:29,480 +make it + +646 +00:37:32,510 --> 00:37:38,250 +private string textint score + +647 +00:37:55,090 --> 00:38:00,330 +ok, we finished the class memento I didn't make + +648 +00:38:00,330 --> 00:38:05,690 +getters public only constructor private because in + +649 +00:38:05,690 --> 00:38:07,490 +addition to class memento I want to make two + +650 +00:38:07,490 --> 00:38:14,630 +methods one is called public memento getstate what + +651 +00:38:14,630 --> 00:38:19,770 +is getstate? return to your original state return + +652 +00:38:19,770 --> 00:38:21,610 +new + +653 +00:38:23,950 --> 00:38:27,890 +Memento and I give him the text and the score So + +654 +00:38:27,890 --> 00:38:31,470 +what is the idea of this get state? The caretaker + +655 +00:38:31,470 --> 00:38:35,430 +asked the originator to tell him, give me your + +656 +00:38:35,430 --> 00:38:38,350 +current state, I want to preserve it Like this + +657 +00:38:38,350 --> 00:38:41,190 +one, give me your trust, I want to preserve it So + +658 +00:38:41,190 --> 00:38:44,090 +the get state will claim who? The one that has a + +659 +00:38:44,090 --> 00:38:46,430 +public method, this one can claim it What will the + +660 +00:38:46,430 --> 00:38:49,570 +get state do? Create an object with memento and + +661 +00:38:49,570 --> 00:38:52,980 +give it to whom?The current state, which is the + +662 +00:38:52,980 --> 00:38:58,200 +state, text and score. Now, he returned the + +663 +00:38:58,200 --> 00:39:01,020 +memento, but he is not supposed to be able to use + +664 +00:39:01,020 --> 00:39:05,140 +the memento, as we will see in the git. In + +665 +00:39:05,140 --> 00:39:06,760 +addition to the git state, we will make another + +666 +00:39:06,760 --> 00:39:10,360 +method, public void restore. What is restore? + +667 +00:39:13,390 --> 00:39:15,650 +This takes momentum, this is based on what? + +668 +00:39:15,830 --> 00:39:17,690 +Because the caretaker after this returned from the + +669 +00:39:17,690 --> 00:39:19,630 +trip, the caretaker will tell him to go ahead, + +670 +00:39:19,650 --> 00:39:24,370 +this is your case, and this will give him momentum + +671 +00:39:25,240 --> 00:39:27,800 +And the originator is the one who can open the + +672 +00:39:27,800 --> 00:39:30,160 +memento and take what is in it and return it to + +673 +00:39:30,160 --> 00:39:32,220 +himself So if I find this, what is going to be in + +674 +00:39:32,220 --> 00:39:36,680 +it? this.text equals m.text This is a return, it + +675 +00:39:36,680 --> 00:39:38,140 +took the information from the memento and returned + +676 +00:39:38,140 --> 00:39:40,420 +them to the attributes in the public or the + +677 +00:39:40,420 --> 00:39:46,440 +primary ones this.score equals score Okay, + +678 +00:39:47,960 --> 00:39:48,940 +yes, m.score + +679 +00:39:52,400 --> 00:39:54,540 +so now this is the class originator which + +680 +00:39:54,540 --> 00:39:56,980 +represents the case we made inside inner class + +681 +00:39:56,980 --> 00:39:59,160 +everything that has private and we made two + +682 +00:39:59,160 --> 00:40:01,080 +methods get state which returns momento and + +683 +00:40:01,080 --> 00:40:03,060 +restore which returns momento and returns data + +684 +00:40:03,060 --> 00:40:07,320 +from momento to state okay now we finished + +685 +00:40:07,320 --> 00:40:12,500 +originator let's go to caretaker caretaker simply + +686 +00:40:12,500 --> 00:40:17,280 +is currently we assumed that he does what?it will + +687 +00:40:17,280 --> 00:40:21,340 +be saved in the list of memento it will be saved + +688 +00:40:21,340 --> 00:40:30,280 +in the list of memento now let's see how to use it + +689 +00:40:30,280 --> 00:40:34,500 +through the main method ok this is the code that + +690 +00:40:34,500 --> 00:40:36,460 +we want to remove ok did you find out what it + +691 +00:40:36,460 --> 00:40:42,640 +does? it goes to originator it does new originator + +692 +00:40:46,210 --> 00:40:51,170 +Okay? Of course, I can't reach these, + +693 +00:40:51,510 --> 00:40:54,690 +okay? Let's assume that they have basic values I + +694 +00:40:54,690 --> 00:41:01,110 +found, for example, this one has hello This + +695 +00:41:01,110 --> 00:41:04,240 +one has ten, for example there is a code that will + +696 +00:41:04,240 --> 00:41:09,040 +change its state when you run the process so now I + +697 +00:41:09,040 --> 00:41:11,960 +have the originator here the code is running and + +698 +00:41:11,960 --> 00:41:14,440 +the originator is changing its state now the + +699 +00:41:14,440 --> 00:41:17,320 +originator wants to save its state of course it + +700 +00:41:17,320 --> 00:41:21,840 +has an object called care-taker that does new care + +701 +00:41:21,840 --> 00:41:26,260 +-taker this is a function that tells us to save + +702 +00:41:26,260 --> 00:41:28,320 +objects + +703 +00:41:29,680 --> 00:41:31,640 +Okay, now I came to a stage where I want to + +704 +00:41:31,640 --> 00:41:33,520 +memorize the originator case before I change it + +705 +00:41:33,520 --> 00:41:38,840 +Okay, I go to the originator and I say get what? + +706 +00:41:39,720 --> 00:41:43,200 +Get the state Okay, what does this return? It + +707 +00:41:43,200 --> 00:41:45,920 +returns an object from the momentum Because of + +708 +00:41:45,920 --> 00:41:47,660 +course this momentum has the data of the + +709 +00:41:47,660 --> 00:41:50,770 +originator, but if I try to see what's in it there + +710 +00:41:50,770 --> 00:41:52,710 +is nothing in it, I can't, like the safe that + +711 +00:41:52,710 --> 00:41:54,810 +reached me, I can't open it or see what's in it + +712 +00:41:54,810 --> 00:41:57,810 +okay, I can go to the caretaker and tell him + +713 +00:41:57,810 --> 00:42:03,670 +states and add yes to you so the caretaker now is + +714 +00:42:03,670 --> 00:42:07,330 +safe in the memento but I can't act on it at all + +715 +00:42:07,330 --> 00:42:11,190 +okay and so on while the program is running as + +716 +00:42:11,190 --> 00:42:13,050 +long as I want to change something in the + +717 +00:42:13,050 --> 00:42:16,310 +originator I tell him give me also what give me + +718 +00:42:16,310 --> 00:42:22,680 +two mementosOkay? And go to the caretaker and add + +719 +00:42:22,680 --> 00:42:28,940 +this M2 And I save many cases. Now after a while, + +720 +00:42:29,020 --> 00:42:30,920 +after a phase, I need to go back to the last case + +721 +00:42:30,920 --> 00:42:35,640 +Okay? I go to the caretaker and tell him states + +722 +00:42:35,640 --> 00:42:39,500 +and hotline The + +723 +00:42:39,500 --> 00:42:46,080 +last case isstates dot size minus one this is the + +724 +00:42:46,080 --> 00:42:49,160 +last state in the last state and this gave me + +725 +00:42:49,160 --> 00:42:56,080 +memento which is the last state I + +726 +00:42:56,080 --> 00:42:58,580 +got the last state, I need to return it where is + +727 +00:42:58,580 --> 00:43:02,340 +the return? in the originator I go to the O and + +728 +00:43:02,340 --> 00:43:07,600 +tell it restore and give it the last state you saw + +729 +00:43:07,600 --> 00:43:11,170 +that we restoreRestored by Tim inside the + +730 +00:43:11,170 --> 00:43:13,570 +originator, as long as I cancel the momentum, he + +731 +00:43:13,570 --> 00:43:16,390 +can reach the attributes in it. Because the whole + +732 +00:43:16,390 --> 00:43:19,570 +idea is that the object that preserves the state + +733 +00:43:19,570 --> 00:43:22,310 +is an inner class inside the originator and + +734 +00:43:22,310 --> 00:43:24,730 +everything in it is private. As long as it is an + +735 +00:43:24,730 --> 00:43:26,150 +inner class and everything in it is private, it + +736 +00:43:26,150 --> 00:43:29,070 +means that no one can reach it except who?except + +737 +00:43:29,070 --> 00:43:30,970 +the originator, and this is how I keep my data + +738 +00:43:30,970 --> 00:43:33,430 +secret, because this momentum object can only be + +739 +00:43:33,430 --> 00:43:36,650 +accessed by the originator. It is true that I keep + +740 +00:43:36,650 --> 00:43:39,810 +it in other directions and transfer it, but in the + +741 +00:43:39,810 --> 00:43:42,790 +end, no one can see these data except the main + +742 +00:43:42,790 --> 00:43:44,990 +class that generated the data, which is the + +743 +00:43:44,990 --> 00:43:47,770 +originator. And this helps me, as we said in + +744 +00:43:47,770 --> 00:43:49,710 +applications, I have a certain class that I want + +745 +00:43:49,710 --> 00:43:52,770 +to keep its state.or I want to take my state and + +746 +00:43:52,770 --> 00:43:55,190 +transfer it to another place in the application or + +747 +00:43:55,190 --> 00:43:57,250 +to another object or to the server or to others + +748 +00:43:57,250 --> 00:44:00,410 +and at the same time I don't want anyone to look + +749 +00:44:00,410 --> 00:44:01,930 +at these details I want to transfer it to another + +750 +00:44:01,930 --> 00:44:05,650 +place to save it for example to retrieve it later + +751 +00:44:05,650 --> 00:44:07,870 +there is an example of a document, an example of a + +752 +00:44:07,870 --> 00:44:10,690 +library, an example of a game, okay? others + +753 +00:44:10,690 --> 00:44:12,570 +memorize the information but cannot look at it + +754 +00:44:12,570 --> 00:44:15,090 +except for the main class that took out the state + +755 +00:44:16,260 --> 00:44:23,540 +Ok guys, let's go back to the slide of the memento + +756 +00:44:23,540 --> 00:44:30,740 +and start with the UML diagram Ok, now the UML + +757 +00:44:30,740 --> 00:44:33,140 +diagram is the same as what I did, this is the + +758 +00:44:33,140 --> 00:44:36,360 +originator and here I have the attribute to + +759 +00:44:36,360 --> 00:44:39,080 +represent the state and this is supposed to be + +760 +00:44:39,080 --> 00:44:40,620 +negative, what does it mean? it means that this is + +761 +00:44:40,620 --> 00:44:45,150 +privateAnd the originator we made in it an inner + +762 +00:44:45,150 --> 00:44:48,530 +class named Memento For today, the inner class is + +763 +00:44:48,530 --> 00:44:51,150 +not visible In the end, the inner class is placed + +764 +00:44:51,150 --> 00:44:55,570 +as a square by itself This is the Memento And the + +765 +00:44:55,570 --> 00:44:57,310 +same attributes in the originator are repeated + +766 +00:44:57,310 --> 00:44:59,890 +where? In the Memento Because here there was text + +767 +00:44:59,890 --> 00:45:03,850 +and score And here also I put text and score This + +768 +00:45:03,850 --> 00:45:07,750 +is a negative state And I made two methods, getter + +769 +00:45:07,750 --> 00:45:10,580 +and setterAnd they will say that you didn't do it + +770 +00:45:10,580 --> 00:45:12,540 +and you can't do it. No, you can make their names + +771 +00:45:12,540 --> 00:45:16,380 +private Because I didn't use set because + +772 +00:45:16,380 --> 00:45:20,540 +constructor used it instead of it, okay? I didn't + +773 +00:45:20,540 --> 00:45:23,400 +use get either because it's the originator and he + +774 +00:45:23,400 --> 00:45:25,840 +can reach the attributes here directly The + +775 +00:45:25,840 --> 00:45:28,060 +important thing is that these must be private if + +776 +00:45:28,060 --> 00:45:32,380 +you want to use them, okay? In addition to this + +777 +00:45:32,380 --> 00:45:37,070 +class, I made a method called createMementowhich I + +778 +00:45:37,070 --> 00:45:42,330 +named as GetState it puts the state inside the + +779 +00:45:42,330 --> 00:45:45,890 +momentum and returns it to me just like I put the + +780 +00:45:45,890 --> 00:45:48,910 +information in the safe this is what it did, it + +781 +00:45:48,910 --> 00:45:51,990 +put a arrow between the code it is written here as + +782 +00:45:51,990 --> 00:45:56,190 +saving state return new momentum and sends it to + +783 +00:45:56,190 --> 00:45:59,770 +the state restore, this is the data that I want to + +784 +00:45:59,770 --> 00:46:04,230 +return I went toI send him a memento, he receives + +785 +00:46:04,230 --> 00:46:07,430 +it and says I got a state and I return it to the + +786 +00:46:07,430 --> 00:46:09,150 +state. Who is this state? It is the attribute + +787 +00:46:09,150 --> 00:46:14,290 +here. And this is the caretaker who executes the + +788 +00:46:14,290 --> 00:46:17,090 +methods in the computer and tells him to create a + +789 +00:46:17,090 --> 00:46:20,330 +memento and make a restore. He takes the mementos + +790 +00:46:20,330 --> 00:46:21,970 +and stores them, but he doesn't know anything. + +791 +00:46:22,690 --> 00:46:27,150 +About its details This is a sequence diagram I + +792 +00:46:27,150 --> 00:46:28,790 +took the sequence diagram, it shows me how it + +793 +00:46:28,790 --> 00:46:31,410 +connects with each other In the beginning, the + +794 +00:46:31,410 --> 00:46:34,750 +caretaker will ask the originator to give me your + +795 +00:46:34,750 --> 00:46:37,410 +case, I want to preserve it So what does he ask + +796 +00:46:37,410 --> 00:46:41,150 +from him? Create memento What will the originator + +797 +00:46:41,150 --> 00:46:44,210 +do internally? He will create an object from whom? + +798 +00:46:44,610 --> 00:46:47,290 +From his memento, he will make a set state in it + +799 +00:46:47,290 --> 00:46:50,910 +and give it back to him? Memento When this + +800 +00:46:50,910 --> 00:46:53,950 +caretaker asks for the state of the originator, he + +801 +00:46:53,950 --> 00:46:56,150 +executes this command and returns the memento to + +802 +00:46:56,150 --> 00:46:57,970 +him. He delivers the memento to the caretaker, but + +803 +00:46:57,970 --> 00:47:01,770 +he cannot see the details. The caretaker wants to + +804 +00:47:01,770 --> 00:47:04,050 +return the state to whom? To the originator. He + +805 +00:47:04,050 --> 00:47:05,830 +tells the originator to do a restore and return to + +806 +00:47:05,830 --> 00:47:08,350 +the previous state. So he executes the restore and + +807 +00:47:08,350 --> 00:47:11,510 +sends him the memento. And this executes what? + +808 +00:47:12,650 --> 00:47:15,210 +GetState, which retrieves from it the state of the + +809 +00:47:15,210 --> 00:47:17,870 +state. Okay? Yes. + +810 +00:47:21,210 --> 00:47:24,570 +Tamam, هو يعني محطهاش لإنه ممكن تكون less ممكن + +811 +00:47:24,570 --> 00:47:30,160 +تكون attribute واحدة It depends on the nature of + +812 +00:47:30,160 --> 00:47:32,300 +the application. I can store many cases, I can + +813 +00:47:32,300 --> 00:47:35,680 +store one case, another case. For example, I made + +814 +00:47:35,680 --> 00:47:38,800 +a list, but in another application, I can store + +815 +00:47:38,800 --> 00:47:41,900 +only one case. I did not leave it here for you to + +816 +00:47:41,900 --> 00:47:44,320 +determine what is available. But in the end, since + +817 +00:47:44,320 --> 00:47:48,640 +it creates, mimics and restores, you understand + +818 +00:47:48,640 --> 00:47:51,200 +that in the end it will remain in the momentum, + +819 +00:47:51,300 --> 00:47:55,260 +but it will not be able to use it.Here, I explain + +820 +00:47:55,260 --> 00:47:58,800 +the memento pattern by saying that it is a + +821 +00:47:58,800 --> 00:48:01,200 +software design pattern that provides the ability + +822 +00:48:01,200 --> 00:48:04,360 +to restore an object to its previous state. That + +823 +00:48:04,360 --> 00:48:07,020 +is, it is used in the case of undo and redo. I can + +824 +00:48:07,020 --> 00:48:08,820 +even apply it in the case of the command. Because + +825 +00:48:08,820 --> 00:48:10,920 +in the end, the command does not encapsulate the + +826 +00:48:10,920 --> 00:48:13,440 +information as a command. The command itself can + +827 +00:48:13,440 --> 00:48:15,140 +do a memento and put the information that is + +828 +00:48:15,140 --> 00:48:18,220 +private, so that when you take it and put it in + +829 +00:48:18,220 --> 00:48:23,010 +the manager, You can't look at the details if you + +830 +00:48:23,010 --> 00:48:26,150 +want to preserve their secrecy. Memento pattern + +831 +00:48:26,150 --> 00:48:28,250 +implemented with three objects. There are three + +832 +00:48:28,250 --> 00:48:30,850 +parts, the originator, the caretaker and the + +833 +00:48:30,850 --> 00:48:33,790 +memento. We talked about them. The originator is + +834 +00:48:33,790 --> 00:48:35,990 +some object that has an internal state. It is the + +835 +00:48:35,990 --> 00:48:37,670 +object that has a state that I want to preserve. + +836 +00:48:38,290 --> 00:48:42,710 +The caretaker is going to do something to the + +837 +00:48:42,710 --> 00:48:45,190 +originator. But before he changes the originator, + +838 +00:48:45,250 --> 00:48:47,430 +he has to take his state so that he can retrieve + +839 +00:48:47,430 --> 00:48:51,970 +it later.but wants to be able to undo that change. + +840 +00:48:55,130 --> 00:48:59,370 +The caretaker first asks the originator for a + +841 +00:48:59,370 --> 00:49:04,070 +memento object, then it does whatever operation to + +842 +00:49:04,070 --> 00:49:07,890 +roll back to the state before the operation. It + +843 +00:49:07,890 --> 00:49:10,050 +returns the memento object to the + +844 +00:49:17,050 --> 00:49:21,250 +The memento object itself is an opaque object. + +845 +00:49:27,210 --> 00:49:31,350 +Transparent. The opaque is transparent. It is not + +846 +00:49:31,350 --> 00:49:33,710 +transparent. You cannot see it. It is not visible. + +847 +00:49:34,390 --> 00:49:37,490 +Who is this? The memento object. He explains it as + +848 +00:49:37,490 --> 00:49:41,230 +one which the caretaker cannotOr should not + +849 +00:49:41,230 --> 00:49:48,110 +change. Is it clear? It is a simple case of how I + +850 +00:49:48,110 --> 00:49:50,610 +want to give data to another object that is + +851 +00:49:50,610 --> 00:49:53,730 +preserved but does not show the details. Is it + +852 +00:49:53,730 --> 00:49:55,450 +clear? God bless you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DCUixRoIE_s.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DCUixRoIE_s.srt new file mode 100644 index 0000000000000000000000000000000000000000..494b3f07addd4e486100705ecebab6baf216cb8e --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DCUixRoIE_s.srt @@ -0,0 +1,2478 @@ + +1 +00:00:05,210 --> 00:00:06,510 +Okay, in the name of God, the most merciful, the + +2 +00:00:06,510 --> 00:00:10,190 +most merciful. For the previous lecture, guys, we + +3 +00:00:10,190 --> 00:00:14,670 +explained the state design pattern. We started by + +4 +00:00:14,670 --> 00:00:17,550 +giving an example of a vending machine which is + +5 +00:00:17,550 --> 00:00:21,210 +the purchase machine that exists. We drew the + +6 +00:00:21,210 --> 00:00:23,930 +machine state, the finite state machine diagram + +7 +00:00:23,930 --> 00:00:28,650 +which is a method used by engineers or designers + +8 +00:00:28,650 --> 00:00:32,980 +of devices to explain how does any device work? And + +9 +00:00:32,980 --> 00:00:36,220 +in the finite state machine, its idea is that I + +10 +00:00:36,220 --> 00:00:39,300 +express the machine in the states that it is in, + +11 +00:00:39,880 --> 00:00:41,700 +that is, any device in the world is in multiple + +12 +00:00:41,700 --> 00:00:44,400 +states, sometimes it is idle, sometimes it is + +13 +00:00:44,400 --> 00:00:46,880 +running in a way, sometimes it is running in b way + +14 +00:00:47,620 --> 00:00:49,980 +and actually there are events that make it move + +15 +00:00:49,980 --> 00:00:52,940 +from one state to another state. These events can + +16 +00:00:52,940 --> 00:00:56,800 +be buttons, for example, the user directs a command + +17 +00:00:56,800 --> 00:00:58,480 +that makes the device move from one state to + +18 +00:00:58,480 --> 00:01:01,260 +another state and these events can come from + +19 +00:01:01,260 --> 00:01:03,420 +inside the system itself. For example, if it + +20 +00:01:03,420 --> 00:01:05,940 +completes a certain state, it ends its time or + +21 +00:01:05,940 --> 00:01:08,360 +completes its work on it, it moves to another + +22 +00:01:08,360 --> 00:01:12,840 +state. Because we took the example of the vending + +23 +00:01:12,840 --> 00:01:18,100 +machine to show how the state pattern helps me to + +24 +00:01:18,100 --> 00:01:22,180 +convert any finite state machine to code in an + +25 +00:01:22,180 --> 00:01:24,640 +easy and extendable way. The first thing we started + +26 +00:01:24,640 --> 00:01:27,940 +to do without the state pattern was to make a + +27 +00:01:27,940 --> 00:01:33,560 +number of if statements, so that I have an event for + +28 +00:01:33,560 --> 00:01:37,540 +example, these two states, state A and state B and + +29 +00:01:37,540 --> 00:01:39,020 +there is an event, for example, a certain button + +30 +00:01:39,020 --> 00:01:42,640 +that transfers the device from A state to B state. + +31 +00:01:42,640 --> 00:01:45,600 +I'm supposed to have an if statement that says, by + +32 +00:01:45,600 --> 00:01:50,240 +Allah, if the device is in A state and this event + +33 +00:01:50,240 --> 00:01:53,320 +happened, transfer it to what? To B state. This + +34 +00:01:53,320 --> 00:01:57,780 +event is supposed to, if it wasn't in A state, the + +35 +00:01:57,780 --> 00:02:01,120 +event shouldn't work or make any effect. For + +36 +00:02:01,120 --> 00:02:05,920 +example, in the previous lecture, if I press the + +37 +00:02:05,920 --> 00:02:09,280 +button to choose an item without putting the coin, + +38 +00:02:10,280 --> 00:02:15,800 +it will not have any effect, first, I have to put a + +39 +00:02:15,800 --> 00:02:20,380 +coin to make the device wait for an item and then + +40 +00:02:20,380 --> 00:02:24,440 +I press the item button. Instead of using the if + +41 +00:02:24,440 --> 00:02:27,040 +statement, we used the state pattern. The summary + +42 +00:02:27,040 --> 00:02:29,860 +of using the state pattern is as follows: the + +43 +00:02:29,860 --> 00:02:32,360 +device goes through more than one case, each case + +44 +00:02:32,360 --> 00:02:37,170 +has a class. The events in the drawing are + +45 +00:02:37,170 --> 00:02:40,250 +converted to a method in the superclass so that + +46 +00:02:40,250 --> 00:02:43,970 +every state is implemented or extended to this + +47 +00:02:43,970 --> 00:02:49,010 +superclass. And every state will take a parameter + +48 +00:02:49,010 --> 00:02:52,510 +which is the context. For example, we saw in the + +49 +00:02:52,510 --> 00:02:55,090 +previous lecture that every state is taken as an + +50 +00:02:55,090 --> 00:02:57,530 +object of the vending machine, on the basis that + +51 +00:02:57,530 --> 00:03:00,870 +every state is on one. If it changes, it will + +52 +00:03:00,870 --> 00:03:03,230 +change or transfer the vending machine to another + +53 +00:03:03,230 --> 00:03:10,780 +state. The main + +54 +00:03:10,780 --> 00:03:22,640 +idea of the state pattern + +55 +00:03:22,640 --> 00:03:27,520 +is to allow the object for changing its behavior + +56 +00:03:27,520 --> 00:03:29,700 +without changing its class, + +57 +00:03:32,710 --> 00:03:34,370 +which in this case represents, for example, the + +58 +00:03:34,370 --> 00:03:37,570 +vending machine or the class that represents the + +59 +00:03:37,570 --> 00:03:40,610 +device or the main thing that makes its behavior + +60 +00:03:40,610 --> 00:03:47,920 +change without changing anything in its code. Of + +61 +00:03:47,920 --> 00:03:50,080 +course, we said that the goal is to combine the + +62 +00:03:50,080 --> 00:03:53,400 +state pattern with the strategy pattern, but the + +63 +00:03:53,400 --> 00:03:54,600 +difference between the two is that in the + +64 +00:03:54,600 --> 00:03:56,740 +strategy, the algorithms don't know anything about + +65 +00:03:56,740 --> 00:03:59,360 +each other, but here, no, the algorithms or the + +66 +00:03:59,360 --> 00:04:03,220 +states we called them, they control the device or + +67 +00:04:03,220 --> 00:04:05,640 +the object, they move from state to state, so + +68 +00:04:05,640 --> 00:04:08,370 +there is a communication between the states, in a + +69 +00:04:08,370 --> 00:04:11,410 +state pattern, a class behavior changes based on + +70 +00:04:11,410 --> 00:04:14,870 +its state. This type of design patterns comes under + +71 +00:04:14,870 --> 00:04:22,310 +behavior pattern in a + +72 +00:04:22,310 --> 00:04:25,270 +state pattern we create objects which represent + +73 +00:04:25,270 --> 00:04:26,210 +various states + +74 +00:04:32,230 --> 00:04:37,370 +and a context object whose behavior varies as its + +75 +00:04:37,370 --> 00:04:42,310 +state object changes. This + +76 +00:04:42,310 --> 00:04:46,110 +pattern + +77 +00:04:46,110 --> 00:04:49,930 +is close to the concept of finite state machines. + +78 +00:05:01,050 --> 00:05:03,930 +When do we use the state pattern? We use it in the + +79 +00:05:03,930 --> 00:05:05,990 +following cases. Use the state pattern when you + +80 +00:05:05,990 --> 00:05:09,530 +have an object that behaves differently depending + +81 +00:05:09,530 --> 00:05:13,230 +on its current state. The number of states is + +82 +00:05:13,230 --> 00:05:17,410 +enormous and the phi state specific code changes + +83 +00:05:17,410 --> 00:05:21,510 +frequently. Like I said, when I have an object, + +84 +00:05:21,650 --> 00:05:24,150 +its behavior changes and moves from one state to + +85 +00:05:24,150 --> 00:05:27,640 +another. Especially if the number of states is + +86 +00:05:27,640 --> 00:05:31,980 +large. If I don't want to use the state pattern and + +87 +00:05:31,980 --> 00:05:34,480 +depend on the if statements, the code will be + +88 +00:05:34,480 --> 00:05:36,060 +complicated because the number of if statements + +89 +00:05:36,060 --> 00:05:42,000 +will be large. Also, if the states are changing a + +90 +00:05:42,000 --> 00:05:45,660 +lot, it is better to use the state pattern because + +91 +00:05:45,660 --> 00:05:47,600 +if you don't use the state pattern, changing the + +92 +00:05:47,600 --> 00:05:49,880 +state means changing the if statements, changing + +93 +00:05:49,880 --> 00:05:52,180 +the basic code of the object. + +94 +00:05:55,810 --> 00:05:58,710 +The second point is similar to the first one. Use + +95 +00:05:58,710 --> 00:06:01,190 +the pattern when you have a class polluted with + +96 +00:06:01,190 --> 00:06:04,230 +massive conditionals that alter how the class + +97 +00:06:04,230 --> 00:06:07,310 +behaves. For example, like we did in the previous + +98 +00:06:07,310 --> 00:06:09,070 +lecture, when we started making the vending + +99 +00:06:09,070 --> 00:06:13,150 +machine, we made it using if statements. So, if you + +100 +00:06:13,150 --> 00:06:16,370 +have a large number of if statements, which you + +101 +00:06:16,370 --> 00:06:18,930 +will have to change every now and then if you want + +102 +00:06:18,930 --> 00:06:20,970 +to change the behavior, in this case, as we said, + +103 +00:06:21,230 --> 00:06:25,550 +we move to the state pattern. Use state when you + +104 +00:06:25,550 --> 00:06:28,170 +have a lot of duplicate code across similar states + +105 +00:06:28,170 --> 00:06:31,550 +and transitions of a condition-based state machine. + +106 +00:06:31,550 --> 00:06:35,230 +يعني أيضا نفس الفكرة لما يكون عندك عدد كبير من ال + +107 +00:06:35,230 --> 00:06:39,630 +states ويكون في عندي conditions أو events بتخلي ال + +108 +00:06:39,630 --> 00:06:43,030 +objects يغير ال state تبعه من حالة إلى حالة أخرى + +109 +00:06:43,030 --> 00:06:46,390 +زي فكرة finite state machine يعني كأنه بيقوله في + +110 +00:06:46,390 --> 00:06:49,990 +النقطة الأخيرة أنه لو كان عندك a concept or idea + +111 +00:06:49,990 --> 00:06:53,550 +like the finite state machine that is a device or + +112 +00:06:53,550 --> 00:06:56,170 +object that moves by itself to another based on + +113 +00:06:56,170 --> 00:07:01,870 +events, so you can apply the state pattern. Now we + +114 +00:07:01,870 --> 00:07:03,630 +want to see another example on the subject of the + +115 +00:07:03,630 --> 00:07:06,790 +state pattern. We do it quickly, which is this + +116 +00:07:06,790 --> 00:07:10,150 +example, which is the finite state machine diagram + +117 +00:07:10,150 --> 00:07:15,050 +for the media player. Okay, so he tells me, for + +118 +00:07:15,050 --> 00:07:18,810 +example, the media player, as soon as I start + +119 +00:07:18,810 --> 00:07:20,770 +working, there is a state of none. We don't + +120 +00:07:20,770 --> 00:07:23,030 +consider this a state, on the basis that as soon as + +121 +00:07:23,030 --> 00:07:27,450 +the player starts creating, there is a state of + +122 +00:07:27,450 --> 00:07:29,810 +idle. Ideal means that they are still working, but + +123 +00:07:29,810 --> 00:07:33,460 +they haven't made a play for anything yet, okay? So + +124 +00:07:33,460 --> 00:07:37,880 +he tells me that the media player, the first thing + +125 +00:07:37,880 --> 00:07:43,200 +I have to do to run it, there has to be a player + +126 +00:07:43,200 --> 00:07:47,180 +prepare, okay? It can be this prepare, for + +127 +00:07:47,180 --> 00:07:50,520 +example, that I download the library that he wants + +128 +00:07:50,520 --> 00:07:55,040 +to run, or, for example, the song or the audio file + +129 +00:07:55,040 --> 00:07:59,120 +that he wants to run, okay? So in the beginning, + +130 +00:07:59,300 --> 00:08:01,800 +the media player will not run anything unless it + +131 +00:08:01,800 --> 00:08:04,880 +is linked to a specific file. So this is what we + +132 +00:08:04,880 --> 00:08:07,900 +call in the event, player prepare, for example, + +133 +00:08:08,040 --> 00:08:11,820 +which is this arrow, okay? So, when I do prepare + +134 +00:08:11,820 --> 00:08:15,110 +for the media player, it moves to what state? To + +135 +00:08:15,110 --> 00:08:19,490 +the ready state, which means that the files that I + +136 +00:08:19,490 --> 00:08:20,450 +want to run have been downloaded, and it is now + +137 +00:08:20,450 --> 00:08:24,310 +ready to run. So I just have to press the play + +138 +00:08:24,310 --> 00:08:28,130 +button. This can be similar to the player prepare + +139 +00:08:28,130 --> 00:08:31,890 +by pressing the load button for the song, for + +140 +00:08:31,890 --> 00:08:34,810 +example, ready means that I want to press the play + +141 +00:08:34,810 --> 00:08:36,930 +button. So, now, the first thing I press is the play + +142 +00:08:36,930 --> 00:08:39,450 +button, which is the event that we called player + +143 +00:08:39,450 --> 00:08:43,500 +start. Okay, we move to the case of what? Playing, + +144 +00:08:43,900 --> 00:08:47,160 +because he is now working and doing playing. + +145 +00:08:47,160 --> 00:08:49,920 +Because when I work on playing, there are two + +146 +00:08:49,920 --> 00:08:54,360 +events that I can do to stop the playing process. + +147 +00:08:54,360 --> 00:08:58,260 +It can be playing, and I press the pause button, so + +148 +00:08:58,260 --> 00:09:00,500 +we move to the case of what? Paused, which means + +149 +00:09:00,500 --> 00:09:03,630 +it stops running temporarily, and maybe he is + +150 +00:09:03,630 --> 00:09:07,250 +playing, I press the button, for example, unprepared, + +151 +00:09:07,250 --> 00:09:10,930 +or unload, let's say that's it, upload the files + +152 +00:09:10,930 --> 00:09:14,390 +that you downloaded, and, of course, if he uploaded + +153 +00:09:14,390 --> 00:09:17,810 +the files, I will stop the playing process, but the + +154 +00:09:17,810 --> 00:09:19,510 +difference is that when you do unprepared, it will + +155 +00:09:19,510 --> 00:09:22,610 +move to where? to idle, that's it, it's not ready, + +156 +00:09:22,650 --> 00:09:24,270 +it doesn't have files that it wants to run right + +157 +00:09:24,270 --> 00:09:29,050 +now, so it goes straight back to idle now. + +158 +00:09:31,830 --> 00:09:35,430 +He might also want to do unprepared, which means + +159 +00:09:35,430 --> 00:09:39,850 +that the event appeared in two places until now. If + +160 +00:09:39,850 --> 00:09:44,730 +he wants to unload us, he goes back to idle, and + +161 +00:09:44,730 --> 00:09:47,610 +if he wants to unload us while playing, he stops + +162 +00:09:47,610 --> 00:09:50,890 +and goes back to idle. This example is a bit + +163 +00:09:50,890 --> 00:09:52,510 +different from the previous one, because the event + +164 +00:09:52,510 --> 00:09:56,110 +repeats in more than one place. Same thing here, + +165 +00:09:57,030 --> 00:09:59,810 +because it is playing, I made a pause, it moved to + +166 +00:09:59,810 --> 00:10:02,830 +a paused state, because it is paused, I can make + +167 +00:10:02,830 --> 00:10:07,130 +two events, that is, I start it again, play it + +168 +00:10:07,130 --> 00:10:09,990 +again, so it returns to a playing state, and + +169 +00:10:09,990 --> 00:10:14,580 +because it is paused, I can make a stop. Stop is not + +170 +00:10:14,580 --> 00:10:18,280 +pause. Pause means, for example, to reach half of + +171 +00:10:18,280 --> 00:10:21,000 +the audio, to stop temporarily to continue later + +172 +00:10:21,000 --> 00:10:25,380 +from the same point. Stop means to stop running the + +173 +00:10:25,380 --> 00:10:28,480 +file, but the file remains loaded, it means that + +174 +00:10:28,480 --> 00:10:31,120 +it remains ready to run the file from the first + +175 +00:10:31,120 --> 00:10:36,140 +time again, so this button is a player, stop goes + +176 +00:10:36,140 --> 00:10:40,510 +to where? it goes back to ready, and I can pause + +177 +00:10:40,510 --> 00:10:45,870 +and do unload or unprepared by going back to idle + +178 +00:10:45,870 --> 00:10:48,730 +because this example is more complicated than the + +179 +00:10:48,730 --> 00:10:51,330 +last example, because last time, from every state to + +180 +00:10:51,330 --> 00:10:55,950 +state I had one event, so even if I want to do this + +181 +00:10:55,950 --> 00:10:59,250 +without a state pattern, I will have more if + +182 +00:10:59,250 --> 00:11:05,100 +statements, for example here, if I press the + +183 +00:11:05,100 --> 00:11:08,500 +load, the unload, sorry, which is unprepared, okay? + +184 +00:11:08,500 --> 00:11:11,240 +It has to tell it, in the if statements, unprepared, + +185 +00:11:11,240 --> 00:11:15,800 +for example, will not respond to it, it should only + +186 +00:11:15,800 --> 00:11:19,940 +respond if it is in ready to go back to what? To idle. + +187 +00:11:19,940 --> 00:11:24,840 +And also unprepared when I find it, it will not work + +188 +00:11:24,840 --> 00:11:28,440 +unless it is playing, to go back to idle, or to + +189 +00:11:28,440 --> 00:11:30,880 +be paused and go back to + +190 +00:11:30,880 --> 00:11:34,360 +idle. So the if statements will have three + +191 +00:11:34,360 --> 00:11:38,670 +conditions, this or this or this in answer to + +192 +00:11:38,670 --> 00:11:40,590 +unprepared. So no, why should we depend on the if + +193 +00:11:40,590 --> 00:11:42,450 +statements, and whenever we + +223 +00:15:30,890 --> 00:15:32,610 +is from this side, no, consider that it is done, + +224 +00:15:32,730 --> 00:15:34,830 +as soon as it starts working, it will be in an + +225 +00:15:34,830 --> 00:15:36,670 +ideal situation, so we will ignore this one above, + +226 +00:15:37,530 --> 00:15:41,090 +so now I have one, two, three, four + +227 +00:15:46,600 --> 00:15:51,940 +خمسة prepare هي نفس ال prepare يعني ما هنعتبرها هي + +228 +00:15:51,940 --> 00:15:59,720 +نفسها تمام فهم خمسة events مختلفين طيب الآن بدنا + +229 +00:15:59,720 --> 00:16:05,040 +نعمل ال events أو ال states الموجودين لإن ال + +230 +00:16:05,040 --> 00:16:10,820 +states هم أربع idle و ready و playing و paused فهي + +231 +00:16:10,820 --> 00:16:11,640 +ال class idle + +232 +00:17:30,910 --> 00:17:33,830 +Ok, we made the states, now we start programming + +233 +00:17:33,830 --> 00:17:42,710 +each state on its own We start with idle I + +234 +00:17:42,710 --> 00:17:45,910 +made a mistake, I put a player + +235 +00:18:02,650 --> 00:18:07,670 +We messed up the world, but it's okay This is + +236 +00:18:07,670 --> 00:18:18,250 +Sheila Okay, + +237 +00:18:18,270 --> 00:18:23,530 +and paused, playing, ready and idle, perfect Okay, + +238 +00:18:23,590 --> 00:18:28,660 +let's start one by one Before we do that, we need + +239 +00:18:28,660 --> 00:18:32,980 +to go to the media player and put the current + +240 +00:18:32,980 --> 00:18:37,740 +state in it So now it will have an attribute + +241 +00:18:37,740 --> 00:18:42,800 +called abstract state, let's call it current state + +242 +00:18:42,800 --> 00:18:49,340 +And it will have a public void set current state + +243 +00:19:11,430 --> 00:19:14,830 +Okay, now we go to idle, and the nice thing about + +244 +00:19:14,830 --> 00:19:20,550 +it is that you focus only on your state and you + +245 +00:19:20,550 --> 00:19:22,070 +see what are the events that came out of it, + +246 +00:19:22,150 --> 00:19:24,630 +because now the idle we have here, let's leave + +247 +00:19:24,630 --> 00:19:28,910 +this none, came out of it one event which is + +248 +00:19:28,910 --> 00:19:32,610 +player prepared which means when the media player + +249 +00:19:32,610 --> 00:19:35,470 +is in an idle state it will only respond to one + +250 +00:19:35,470 --> 00:19:39,210 +event which is player prepared which is let's make + +251 +00:19:39,210 --> 00:19:44,570 +it look like I want to load the file that I want + +252 +00:19:44,570 --> 00:19:50,330 +to play so this here for example we print the + +253 +00:19:50,330 --> 00:19:53,060 +message it appears that there is a code that + +254 +00:19:53,060 --> 00:20:00,100 +worked for example, preparing loading audio track + +255 +00:20:00,100 --> 00:20:07,120 +or file now all the others, we will not make them + +256 +00:20:07,120 --> 00:20:11,500 +exception, so that there is no problem we will go + +257 +00:20:11,500 --> 00:20:13,040 +and tell him, do nothing + +258 +00:20:19,300 --> 00:20:23,120 +Okay? So in all the other methods and events, I + +259 +00:20:23,120 --> 00:20:30,660 +will put nothing Okay? + +260 +00:20:30,760 --> 00:20:32,100 +There is something important that I forgot to do + +261 +00:20:33,070 --> 00:20:37,830 +that when it starts preparing and finishes the + +262 +00:20:37,830 --> 00:20:40,790 +same state is supposed to change the state of the + +263 +00:20:40,790 --> 00:20:43,370 +media player so look at the idea here that the + +264 +00:20:43,370 --> 00:20:45,730 +states are controlled by the gate in the media + +265 +00:20:45,730 --> 00:20:47,910 +player and why did I bring it? why did I + +266 +00:20:47,910 --> 00:20:49,710 +initialize it? I sent it to the state of the media + +267 +00:20:49,710 --> 00:20:52,350 +player so that the state itself after it finishes + +268 +00:20:52,350 --> 00:20:55,530 +executing its code goes to the media player and + +269 +00:20:55,530 --> 00:20:59,630 +says set current state now which state will it + +270 +00:20:59,630 --> 00:21:02,590 +move to?If it is prepared, it will move to ready, + +271 +00:21:02,830 --> 00:21:06,970 +so I will say new ready and I will give it the + +272 +00:21:06,970 --> 00:21:10,710 +media player So this is the main difference + +273 +00:21:10,710 --> 00:21:13,630 +between the state pattern and the strategy, that + +274 +00:21:13,630 --> 00:21:16,330 +the state is what controls the object and moves to + +275 +00:21:16,330 --> 00:21:19,090 +another state In the strategy, no, the strategy + +276 +00:21:19,090 --> 00:21:20,710 +works and finishes, it does not know anything + +277 +00:21:20,710 --> 00:21:25,050 +about the second strategy So it's as if I handed + +278 +00:21:25,050 --> 00:21:26,770 +over the media player to the state and the state + +279 +00:21:26,770 --> 00:21:29,470 +is the one transferring it to each other. Okay? + +280 +00:21:30,090 --> 00:21:32,410 +Okay, we're done with the gate. We're all idle. + +281 +00:21:33,050 --> 00:21:35,870 +Close the file and go to the second state. + +282 +00:21:41,490 --> 00:21:43,170 +Which is at the ready. + +283 +00:21:46,510 --> 00:21:48,250 +Okay, based on what's available, the ready will + +284 +00:21:48,250 --> 00:21:52,140 +respond to several events.Two, unprepared and + +285 +00:21:52,140 --> 00:21:54,680 +start which means that everything else is do + +286 +00:21:54,680 --> 00:22:00,940 +nothing, okay? We don't have prepared, unprepared + +287 +00:22:00,940 --> 00:22:03,240 +is what we want, and start is what we want, and + +288 +00:22:03,240 --> 00:22:06,860 +stop is what we don't want, do nothing, and pause + +289 +00:22:06,860 --> 00:22:09,340 +is do nothing, it is not possible that before he + +290 +00:22:09,340 --> 00:22:11,460 +works he does playing or pause, of course he will + +291 +00:22:11,460 --> 00:22:14,280 +not respond to the pause, so he will work only + +292 +00:22:14,280 --> 00:22:15,100 +with these + +293 +00:22:18,540 --> 00:22:27,240 +System.out.println unpreparingmp + +294 +00:22:27,240 --> 00:22:31,400 +unloadaudio file + +295 +00:22:33,530 --> 00:22:35,650 +and of course the unprepared, you want to see + +296 +00:22:35,650 --> 00:22:38,470 +where it will take you the unprepared will return + +297 +00:22:38,470 --> 00:22:41,910 +to whom? to the idle, so I go to the media player + +298 +00:22:41,910 --> 00:22:48,390 +and I say set current state new idle and I give it + +299 +00:22:48,390 --> 00:22:52,990 +to the media player now to start + +300 +00:23:00,830 --> 00:23:03,550 +It is supposed to run a code that runs + +301 +00:23:03,550 --> 00:23:08,970 +StartPlayingAudio Okay, and this will take the + +302 +00:23:08,970 --> 00:23:13,130 +media player to any state, to the state of playing + +303 +00:23:13,130 --> 00:23:17,070 +Okay, this is ready, when I click on start, it + +304 +00:23:17,070 --> 00:23:19,770 +will take me to the state of playing Set current + +305 +00:23:19,770 --> 00:23:27,820 +state, new, playingmedia player and now we are + +306 +00:23:27,820 --> 00:23:29,500 +done with the class look now you are focusing on + +307 +00:23:29,500 --> 00:23:41,120 +each state one by one let's go to the playing now + +308 +00:23:41,120 --> 00:23:45,180 +the playing actually responds to a few events one + +309 +00:23:45,180 --> 00:23:51,000 +which is pause and stop and + +310 +00:23:51,000 --> 00:23:58,010 +and I prepare pause and stop and I prepareprepare + +311 +00:23:58,010 --> 00:24:00,170 +doesn't have a claim, we put it in do nothing + +312 +00:24:00,170 --> 00:24:04,410 +start doesn't have a claim, we put it in do + +313 +00:24:04,410 --> 00:24:09,350 +nothing pause and stop and now prepare we need + +314 +00:24:09,350 --> 00:24:15,850 +them in unprepared, I also say system.out.println + +315 +00:24:15,850 --> 00:24:22,010 +unpreparing unload + +316 +00:24:22,010 --> 00:24:23,570 +file + +317 +00:24:25,640 --> 00:24:28,000 +and now since it is unpreparing, we go to the + +318 +00:24:28,000 --> 00:24:32,860 +media player and say set current state new it will + +319 +00:24:32,860 --> 00:24:38,040 +move to ready state right? based on the drawing, + +320 +00:24:38,440 --> 00:24:40,260 +if you put unprepared, it will go back to no, no, + +321 +00:24:40,380 --> 00:24:43,560 +it will go back to idle right or no? unprepared is + +322 +00:24:43,560 --> 00:24:46,560 +done, I did unload for files, so it went back to + +323 +00:24:46,560 --> 00:24:47,220 +idle state + +324 +00:24:50,230 --> 00:24:52,970 +Here it is, I'm working now, where is it guys? In + +325 +00:24:52,970 --> 00:24:55,830 +playing, it returns unprepared to idle Because + +326 +00:24:55,830 --> 00:25:07,930 +stop returns ready This is stop I + +327 +00:25:07,930 --> 00:25:14,030 +say stop playing audio And I say mp + +328 +00:25:14,030 --> 00:25:21,440 +.setcurrentstate new ready Total media player + +329 +00:25:21,440 --> 00:25:27,960 +Pause leads to a new state which is paused system + +330 +00:25:27,960 --> 00:25:34,680 +.out.println I write only the word pause and mp + +331 +00:25:34,680 --> 00:25:43,620 +set current state new paused media player The last + +332 +00:25:43,620 --> 00:25:50,060 +state I have left is paused ال pause بيستجيب ل + +333 +00:25:50,060 --> 00:25:58,180 +تلاتة events unprepared و stop و start طبعا يعني + +334 +00:25:58,180 --> 00:26:02,600 +ال prepare ماناش فيها do nothing unprepared + +335 +00:26:02,600 --> 00:26:06,020 +بدناياها و stop بدناياها و start بدناياها ال pause + +336 +00:26:06,020 --> 00:26:09,800 +إيش لأ مش معقول هو pause أقوله كمان مرة pause مش + +337 +00:26:09,800 --> 00:26:14,080 +هيكون إليها أثر ف unprepared + +338 +00:26:19,790 --> 00:26:23,350 +I want to print a message for him unpreparing from + +339 +00:26:23,350 --> 00:26:26,370 +paused it means it is paused and we did + +340 +00:26:26,370 --> 00:26:32,270 +unpreparing and now I say mp set current state + +341 +00:26:32,270 --> 00:26:40,210 +will return to idle start + +342 +00:26:40,210 --> 00:26:44,230 +will be paused if I press start it will work again + +343 +00:26:44,230 --> 00:26:46,110 +system + +344 +00:26:49,650 --> 00:26:59,130 +I say playing from pause or after pause and + +345 +00:26:59,130 --> 00:27:12,850 +this returns to stop status + +346 +00:27:21,350 --> 00:27:33,130 +Stopping from paused Tamam, + +347 +00:27:33,370 --> 00:27:38,550 +هي احنا انهينا يا جماعة كل states الان نجي للتشغيل + +348 +00:27:38,550 --> 00:27:42,450 +الرئيسي التشغيل الرئيسي من وين؟ روحت على class + +349 +00:27:42,450 --> 00:27:46,390 +media player هنقدر نفكر ال media player هيكون فيه + +350 +00:27:46,390 --> 00:27:47,870 +إذرار يعني مثلا + +351 +00:27:51,520 --> 00:27:54,240 +let's say for example there is a button that loads + +352 +00:27:54,240 --> 00:27:56,640 +the file it means that in the beginning there will + +353 +00:27:56,640 --> 00:27:58,320 +be an idle state it is supposed that when it loads + +354 +00:27:58,320 --> 00:28:01,780 +it will be in a ready state okay? then it will + +355 +00:28:01,780 --> 00:28:04,360 +start to activate for example a button from play + +356 +00:28:04,360 --> 00:28:10,720 +okay? and there is also a button which is of + +357 +00:28:10,720 --> 00:28:12,240 +course in the media player there is a button like + +358 +00:28:12,240 --> 00:28:16,740 +this and a button like this for example a circle + +359 +00:28:16,740 --> 00:28:20,820 +like this there is one for example pauseOkay, and + +360 +00:28:20,820 --> 00:28:24,660 +what is this? Stop Okay, and as soon as there is a + +361 +00:28:24,660 --> 00:28:27,160 +load, we make another button which is for example + +362 +00:28:27,160 --> 00:28:29,800 +Unload, which means that it is done, pick up, pick + +363 +00:28:29,800 --> 00:28:31,880 +up the mouse So actually I have, it responds to + +364 +00:28:31,880 --> 00:28:36,380 +how many events? Five events Okay, which is almost + +365 +00:28:36,380 --> 00:28:40,200 +the same events that we did So what do I want to + +366 +00:28:40,200 --> 00:28:43,300 +do in the abstract class? + +367 +00:28:46,140 --> 00:28:49,140 +These are almost the same, each one represents a + +368 +00:28:49,140 --> 00:28:52,800 +button in the media player So I went to the media + +369 +00:28:52,800 --> 00:28:57,620 +player, but what? In order for these methods to be + +370 +00:28:57,620 --> 00:28:59,400 +abstract, I had to put code in them + +371 +00:29:22,660 --> 00:29:25,080 +Ok fine, now when the media player starts working + +372 +00:29:25,080 --> 00:29:33,300 +I want to create a public media player when + +373 +00:29:33,300 --> 00:29:34,620 +it starts working, I want to go to the current + +374 +00:29:34,620 --> 00:29:37,600 +state and what will be the first state that it + +375 +00:29:37,600 --> 00:29:43,060 +will be in which is idle ok, and here I send it + +376 +00:29:43,060 --> 00:29:47,000 +this now what do we do in these, you don't do + +377 +00:29:47,000 --> 00:29:50,340 +anything all you have to do is go to the current + +378 +00:29:50,340 --> 00:29:55,140 +state and you repeat the event itself player + +379 +00:29:55,140 --> 00:30:05,100 +prepare and here also current state player I + +380 +00:30:05,100 --> 00:30:12,860 +prepare current state player start current state + +381 +00:30:12,860 --> 00:30:19,540 +player stop and here current state + +382 +00:30:22,340 --> 00:30:29,060 +Player is paused What does it mean? Why does it + +383 +00:30:29,060 --> 00:30:32,860 +use the same event? Because in the first case, it + +384 +00:30:32,860 --> 00:30:36,720 +is idle For example, if it is idle and you press + +385 +00:30:36,720 --> 00:30:38,320 +start, + +386 +00:30:39,880 --> 00:30:43,060 +it will execute the player start that is present + +387 +00:30:43,060 --> 00:30:46,900 +in the current state What is the current state? We + +388 +00:30:46,900 --> 00:30:50,940 +said idle and it is idle and it is idle. Press the + +389 +00:30:50,940 --> 00:30:53,740 +start buttonIs it okay if he is idle and I press + +390 +00:30:53,740 --> 00:30:57,620 +start? No, there is no file loaded yet, right or + +391 +00:30:57,620 --> 00:31:00,680 +not? So actually this calls the player start that + +392 +00:31:00,680 --> 00:31:03,240 +is present in idle Player start that is present in + +393 +00:31:03,240 --> 00:31:08,680 +idle, what will it do? Do nothing Press stop, he + +394 +00:31:08,680 --> 00:31:12,780 +is idle Also, what will it do? Do nothing Because + +395 +00:31:12,780 --> 00:31:16,280 +every player state currently what is present which + +396 +00:31:16,280 --> 00:31:21,200 +is idleUntil when will it affect only one event, + +397 +00:31:21,800 --> 00:31:25,840 +which is who? Prepare. So if you press on the + +398 +00:31:25,840 --> 00:31:28,280 +player prepare and he is idle, we saw that in + +399 +00:31:28,280 --> 00:31:34,000 +idle, what does prepare do? it loads the file and + +400 +00:31:34,000 --> 00:31:38,460 +it says it is ready it changed the media player + +401 +00:31:38,460 --> 00:31:41,500 +without it knowing it is the idea here when the + +402 +00:31:41,500 --> 00:31:44,980 +media player came, the user came and we pressed + +403 +00:31:44,980 --> 00:31:50,800 +prepare and it moved from idle to ready because it + +404 +00:31:50,800 --> 00:31:57,600 +is ready I pressed stop stop in ready doesn't do + +405 +00:31:57,600 --> 00:32:01,290 +anything If you press pause on it, it won't do + +406 +00:32:01,290 --> 00:32:02,910 +anything because according to the drawing, ready + +407 +00:32:02,910 --> 00:32:07,650 +only responds to start and unprepared Right or + +408 +00:32:07,650 --> 00:32:11,490 +wrong? So now every five current stars that you + +409 +00:32:11,490 --> 00:32:16,010 +see in green, they are all currently ready Ready + +410 +00:32:16,010 --> 00:32:19,330 +will not respond to start or unprepared + +411 +00:32:22,500 --> 00:32:25,800 +What will he do? He will start playing and the + +412 +00:32:25,800 --> 00:32:28,800 +state will change to the state of playing So + +413 +00:32:28,800 --> 00:32:31,520 +notice that the states between them are changing + +414 +00:32:31,520 --> 00:32:34,100 +the media player without the media player knowing + +415 +00:32:34,100 --> 00:32:37,660 +anything So if there is a change in the states, I + +416 +00:32:37,660 --> 00:32:40,560 +change in the states, I don't change anything in + +417 +0 + +445 +00:35:05,590 --> 00:35:08,270 +Start at ready makes it move to the plain state + +446 +00:35:09,280 --> 00:35:12,140 +Okay, this is what happened, start playing audio + +447 +00:35:12,140 --> 00:35:14,720 +and it became in playing mode, if it is playing, + +448 +00:35:14,860 --> 00:35:18,400 +it will press what? Pause, it wrote pause for me, + +449 +00:35:18,640 --> 00:35:21,600 +if it is pause, what did I do? Start, I go back + +450 +00:35:21,600 --> 00:35:26,280 +again to the playing mode, okay, so I actually + +451 +00:35:26,280 --> 00:35:28,480 +downloaded it from where? From idle to ready and + +452 +00:35:28,480 --> 00:35:30,380 +from ready to playing and from playing to pause + +453 +00:35:30,380 --> 00:35:36,950 +and from pause I returned it to playing. Okay? So + +454 +00:35:36,950 --> 00:35:42,490 +each state only responds to the events that affect + +455 +00:35:42,490 --> 00:35:45,430 +them, okay? The idea that I came up with is that I + +456 +00:35:45,430 --> 00:35:47,230 +want to modify a certain state, and so I only go + +457 +00:35:47,230 --> 00:35:49,910 +to the classes of the states where I modify them. + +458 +00:35:50,150 --> 00:35:52,730 +The media player itself does not make any + +459 +00:35:52,730 --> 00:35:54,950 +modification in it. If I want to do this in one + +460 +00:35:54,950 --> 00:35:58,010 +class, the code will be very large and there will + +461 +00:35:58,010 --> 00:36:01,330 +be a large number of if statements and the + +462 +00:36:01,330 --> 00:36:03,170 +modification on it will be more difficult. + +463 +00:36:06,500 --> 00:36:13,380 +Ok, after applying this example, let's see the + +464 +00:36:13,380 --> 00:36:18,540 +state pattern diagram today. There is a slight + +465 +00:36:18,540 --> 00:36:21,320 +difference from what I did. Look with me. Did you + +466 +00:36:21,320 --> 00:36:24,990 +notice that when I worked? The first thing I did + +467 +00:36:24,990 --> 00:36:26,710 +was to create an abstract class that represents + +468 +00:36:26,710 --> 00:36:30,430 +the super class that every state will have an + +469 +00:36:30,430 --> 00:36:32,810 +extent to it. I didn't create an interface, I + +470 +00:36:32,810 --> 00:36:36,050 +created an abstract class. Why? Because the state + +471 +00:36:36,050 --> 00:36:38,070 +must be reached by the object that controls it, + +472 +00:36:38,150 --> 00:36:41,510 +which is the media player, for example. Okay? So I + +473 +00:36:41,510 --> 00:36:43,030 +created a constructor, and since I created a + +474 +00:36:43,030 --> 00:36:44,990 +constructor and there is an attribute in the + +475 +00:36:44,990 --> 00:36:47,070 +class, I can't call it an interface. I have to + +476 +00:36:47,070 --> 00:36:49,870 +call it an abstract class. He made a slight + +477 +00:36:49,870 --> 00:36:54,160 +change. I will tell you why they did that. The + +478 +00:36:54,160 --> 00:36:59,080 +solution is better. He made an interface in the + +479 +00:36:59,080 --> 00:37:04,420 +beginning and he named it state and he put events + +480 +00:37:04,420 --> 00:37:07,790 +in it. All the events in the chart, the stocks, + +481 +00:37:08,370 --> 00:37:10,430 +put the methods in them. Notice that he didn't put + +482 +00:37:10,430 --> 00:37:12,210 +attributes or constructor in it because the + +483 +00:37:12,210 --> 00:37:14,570 +interface can't be put in it. He put all the + +484 +00:37:14,570 --> 00:37:16,650 +existing events in it. Here, of course, as an + +485 +00:37:16,650 --> 00:37:19,090 +example, he put do this, do that which is like + +486 +00:37:19,090 --> 00:37:22,550 +player start, player paused, player unprepared, + +487 +00:37:22,590 --> 00:37:28,510 +and so on. Now, from this, he made concrete states + +488 +00:37:28,510 --> 00:37:33,630 +and they made an implement for the interface. Now + +489 +00:37:34,650 --> 00:37:38,010 +What did I do? I went to the context, who is this? + +490 +00:37:38,210 --> 00:37:40,470 +This is the object that I control, which is the + +491 +00:37:40,470 --> 00:37:44,590 +media player, okay? The difference between them is + +492 +00:37:44,590 --> 00:37:48,090 +that I did what? So that I don't have to put this + +493 +00:37:48,090 --> 00:37:51,370 +context in every subclass, okay? Where did he put + +494 +00:37:51,370 --> 00:37:55,160 +it? In the subclass, of course here he will have to + +495 +00:37:55,160 --> 00:38:01,120 +repeat the code. When I made a subclass, I put this + +496 +00:38:01,120 --> 00:38:05,320 +attribute in the superclass, so I don't have to + +497 +00:38:05,320 --> 00:38:07,800 +repeat it here. No, what did he do? The media + +498 +00:38:07,800 --> 00:38:10,120 +player or context started to put it in the + +499 +00:38:10,120 --> 00:38:12,760 +subclass and here he creates a constructor. Okay? + +500 +00:38:13,740 --> 00:38:15,240 +And then, of course, as long as he did the + +501 +00:38:15,240 --> 00:38:16,780 +implementation, I mean the difference, do you know + +502 +00:38:16,780 --> 00:38:18,060 +what the difference is? The constructor, instead + +503 +00:38:18,060 --> 00:38:22,580 +of being above, he wrote in each subclass, that + +504 +00:38:22,580 --> 00:38:25,880 +is, he has a repetition of code, okay? Five times, + +505 +00:38:26,340 --> 00:38:29,690 +okay? For example, if I have five states. So why did + +506 +00:38:29,690 --> 00:38:30,870 +I do this? Why didn't I do anything like + +507 +00:38:30,870 --> 00:38:33,930 +constructor? I will tell you why in a while. Then, + +508 +00:38:34,070 --> 00:38:35,370 +of course, since I made an implement for the + +509 +00:38:35,370 --> 00:38:37,950 +interface, I will make an implement for whom? For + +510 +00:38:37,950 --> 00:38:40,150 +the events, the methods that represent the events. + +511 +00:38:40,650 --> 00:38:44,650 +And then I go, based on the state, the events that + +512 +00:38:44,650 --> 00:38:46,290 +respond to it. I make them code, and those that + +513 +00:38:46,290 --> 00:38:48,650 +don't respond to it, I make them do nothing. Okay? + +514 +00:38:49,130 --> 00:38:51,710 +There is no difference between what I did. Both + +515 +00:38:51,710 --> 00:38:55,810 +are correct solutions. Okay? Then, who is this? + +516 +00:38:56,130 --> 00:39:00,350 +The media player. In the media player, it has a + +517 +00:39:00,350 --> 00:39:04,050 +current state, the state it is in right now. This + +518 +00:39:04,050 --> 00:39:09,630 +is an attribute of the state type. And there is a + +519 +00:39:09,630 --> 00:39:14,450 +method which is set current state, which is change + +520 +00:39:14,450 --> 00:39:19,310 +state. And this is a constructor to give it + +521 +00:39:19,310 --> 00:39:23,670 +initials. I made an empty constructor and left the + +522 +00:39:23,670 --> 00:39:29,590 +initial state idle. I said that there is no + +523 +00:39:29,590 --> 00:39:31,690 +argument constructor. He said that there is no + +524 +00:39:31,690 --> 00:39:33,850 +argument constructor. He said that there is no + +525 +00:39:33,850 --> 00:39:34,090 +argument constructor. He said that there is no + +526 +00:39:34,090 --> 00:39:34,170 +argument constructor. He said that there is no + +527 +00:39:34,170 --> 00:39:34,590 +argument constructor. He said that there is no + +528 +00:39:34,590 --> 00:39:34,670 +argument constructor. He said that there is no + +529 +00:39:34,670 --> 00:39:34,690 +argument constructor. He said that there is no + +530 +00:39:34,690 --> 00:39:35,030 +argument constructor. He said that there is no + +531 +00:39:35,030 --> 00:39:36,530 +argument constructor. He said that there is no + +532 +00:39:36,530 --> 00:39:40,290 +argument constructor. He said that there these + +533 +00:39:40,290 --> 00:39:44,050 +mean do this and do that which are the same as + +534 +00:39:44,050 --> 00:39:46,570 +these events considering that these have buttons + +535 +00:39:46,570 --> 00:39:50,290 +as I did here. For example, in the media player I + +536 +00:39:50,290 --> 00:39:52,830 +have five buttons which represent the same as the + +537 +00:39:52,830 --> 00:39:57,710 +five events so what can he do? I returned that + +538 +00:39:57,710 --> 00:40:00,270 +context uses state. What does this arrow mean? + +539 +00:40:00,530 --> 00:40:05,670 +That context uses state and what else can he do? + +540 +00:40:05,890 --> 00:40:11,000 +Context makes him implement to the state. Why? So + +541 +00:40:11,000 --> 00:40:15,000 +that instead of writing them by hand, I can make + +542 +00:40:15,000 --> 00:40:16,560 +them implement themselves. They are the events, + +543 +00:40:16,620 --> 00:40:19,220 +they are the buttons. Of course, I don't prefer + +544 +00:40:19,220 --> 00:40:21,840 +this way because the events here don't have to + +545 +00:40:21,840 --> 00:40:25,260 +turn into buttons. Right or wrong? There are + +546 +00:40:25,260 --> 00:40:27,360 +internal events. For example, the system itself + +547 +00:40:27,360 --> 00:40:29,620 +will work, like the vending machine for example. + +548 +00:40:30,140 --> 00:40:32,180 +Didn't I have an event in the last lecture called + +549 +00:40:32,180 --> 00:40:35,040 +item ready? Which is when does the item become + +550 +00:40:35,040 --> 00:40:37,080 +ready? I don't press any button to make it ready. + +551 +00:40:37,740 --> 00:40:43,000 +It is the machine itself that sends the event + +552 +00:40:43,000 --> 00:40:46,120 +after it is ready. Right or not? So here in the + +553 +00:40:46,120 --> 00:40:50,200 +context, I only put the events for the user who + +554 +00:40:50,200 --> 00:40:52,440 +controls them, for example, who turns buttons into + +555 +00:40:52,440 --> 00:40:56,040 +controls. Anyway, + +556 +00:40:58,820 --> 00:41:00,780 +this solution or the solution I made, the + +557 +00:41:00,780 --> 00:41:03,020 +difference between them is that I put the context + +558 +00:41:03,020 --> 00:41:06,000 +as an abstract class here so that it does not + +559 +00:41:06,000 --> 00:41:08,800 +repeat its writing down here. He made this + +560 +00:41:08,800 --> 00:41:12,040 +interface and put it down here. He made an + +561 +00:41:12,040 --> 00:41:13,200 +interface for what? Because I tell you that I can + +562 +00:41:13,200 --> 00:41:15,100 +make an implement for the interface from the + +563 +00:41:15,100 --> 00:41:17,240 +context to make an implement for whom? For these + +564 +00:41:17,240 --> 00:41:20,390 +methods. But I also don't prefer it because not all + +565 +00:41:20,390 --> 00:41:23,970 +the events here must be written in the context, + +566 +00:41:24,010 --> 00:41:24,730 +okay? + +567 +00:41:27,590 --> 00:41:30,990 +Okay, why did he make this indication? This means + +568 +00:41:30,990 --> 00:41:33,610 +that the state is created outside and is sent + +569 +00:41:33,610 --> 00:41:36,410 +where? To this. Of course, this is not a condition + +570 +00:41:37,520 --> 00:41:41,460 +For example, I didn't send him the initial state + +571 +00:41:41,460 --> 00:41:43,520 +in the constructor here in this example. In our + +572 +00:41:43,520 --> 00:41:45,520 +example in the media player, I didn't send him the + +573 +00:41:45,520 --> 00:41:48,220 +initial state, right? I left him from inside the + +574 +00:41:48,220 --> 00:41:52,280 +empty constructor to do what? Either. So this is not + +575 +00:41:52,280 --> 00:41:54,780 +a rule, it doesn't have to be an aggregation, + +576 +00:41:54,860 --> 00:41:58,460 +okay? Okay, I know what the initial state is, why + +577 +00:41:58,460 --> 00:42:01,260 +did I send it from outside, okay? This depends on + +578 +00:42:01,260 --> 00:42:05,120 +when I want the system to start from any existing + +579 +00:42:05,120 --> 00:42:07,620 +state. For example, if I design a computer player, + +580 +00:42:08,060 --> 00:42:11,540 +a player in a game, I want him to be an attacker + +581 +00:42:11,540 --> 00:42:14,030 +as soon as it starts. I want the player to be + +582 +00:42:14,030 --> 00:42:16,190 +defensive when he plays the game. So the initial + +583 +00:42:16,190 --> 00:42:19,930 +state might be different in this case. But in the + +584 +00:42:19,930 --> 00:42:21,590 +media player, as soon as he plays the game, he + +585 +00:42:21,590 --> 00:42:25,370 +wants to be idle. So I made him idle. He made it + +586 +00:42:25,370 --> 00:42:28,330 +different so that he can determine his initial + +587 +00:42:28,330 --> 00:42:33,350 +state. Okay? Okay. The last thing I have here is + +588 +00:42:33,350 --> 00:42:37,980 +mean. The client that wants to run the class that + +589 +00:42:37,980 --> 00:42:40,820 +has main in it. If I am in the class main, of + +590 +00:42:40,820 --> 00:42:43,720 +course, I created a media player. Let's compare it + +591 +00:42:43,720 --> 00:42:46,260 +with the example we did, I didn't create an object + +592 +00:42:46,260 --> 00:42:48,280 +from media player, he created an object from + +593 +00:42:48,280 --> 00:42:52,720 +context. And what is different from me is that + +594 +00:42:52,720 --> 00:42:56,330 +before creating context, I created main. I created + +595 +00:42:56,330 --> 00:42:59,130 +the initial state and sent it to him. I did not + +596 +00:42:59,130 --> 00:43:01,690 +create the initial state, I left it in the + +597 +00:43:01,690 --> 00:43:04,030 +constructor because I know that the media player + +598 +00:43:04,030 --> 00:43:08,810 +will always start in an idle state. Here, no, I am + +599 +00:43:08,810 --> 00:43:16,110 +telling you. Then I created events that are calls. I + +600 +00:43:16,110 --> 00:43:18,470 +told him that there is a method called do this and + +601 +00:43:18,470 --> 00:43:20,370 +from inside I call the media player and tell him + +602 +00:43:20,370 --> 00:43:26,170 +to do this. Of course, this do this, what should be + +603 +00:43:26,170 --> 00:43:31,150 +the code that should be in it? Context dot, it + +604 +00:43:31,150 --> 00:43:33,950 +should go to the state and say do this, ok? + +605 +00:43:38,590 --> 00:43:41,950 +Ok, here I want to show you something, how the + +606 +00:43:41,950 --> 00:43:46,570 +code that is in each method looks like. Okay? Did + +607 +00:43:46,570 --> 00:43:50,470 +you notice that when I said do that, if the state + +608 +00:43:50,470 --> 00:43:53,830 +responds to do that, it transfers the state to + +609 +00:43:53,830 --> 00:43:56,390 +another state. So the state is going to make a + +610 +00:43:56,390 --> 00:44:00,150 +state equal to the other state and then it goes to + +611 +00:44:00,150 --> 00:44:02,610 +the context and says change state and gives it to + +612 +00:44:02,610 --> 00:44:05,450 +the other state. This is new. Did you notice that if + +613 +00:44:05,450 --> 00:44:09,050 +I was in an ideal situation, if I pressed on + +614 +00:44:09,050 --> 00:44:14,010 +prepare. From inside the method prepared, I create a + +615 +00:44:14,010 --> 00:44:16,930 +new state for ready and I go to the media player + +616 +00:44:16,930 --> 00:44:19,590 +and tell it to set current state. Which is where? + +617 +00:44:19,790 --> 00:44:24,410 +This code down here, these two lines represent in + +618 +00:44:24,410 --> 00:44:29,630 +our program any method, + +619 +00:44:30,150 --> 00:44:30,670 +this is idle. + +620 +00:44:34,670 --> 00:44:36,810 +For example, here I am a player prepared, I say + +621 +00:44:36,810 --> 00:44:40,270 +preparing and then I don't go and say set current + +622 +00:44:40,270 --> 00:44:45,530 +state in you ready. This line is the same as these + +623 +00:44:45,530 --> 00:44:53,970 +two lines. Same as + +624 +00:44:53,970 --> 00:44:57,110 +these two lines. But I made them line by line, I + +625 +00:44:57,110 --> 00:44:59,670 +create another state that will move to it and then + +626 +00:44:59,670 --> 00:45:08,120 +I will say change state. So there is a change, the + +627 +00:45:08,120 --> 00:45:10,520 +main change is that here the context is where I + +628 +00:45:10,520 --> 00:45:14,700 +put it, instead of the interface I made it + +629 +00:45:14,700 --> 00:45:17,800 +abstract class, the other parts are almost the + +630 +00:45:17,800 --> 00:45:18,040 +same. + +631 +00:45:22,730 --> 00:45:24,770 +Advantages of the state pattern, with the state + +632 +00:45:24,770 --> 00:45:28,850 +pattern the benefits of implementing polymorphic + +633 +00:45:28,850 --> 00:45:31,090 +behavior are evident, that is, we have + +634 +00:45:31,090 --> 00:45:33,970 +polymorphism more than state, they all follow the + +635 +00:45: + +667 +00:47:36,900 --> 00:47:39,320 +is the difference between strategy and state, and + +668 +00:47:39,320 --> 00:47:42,920 +this is what I mean by state can be considered as + +669 +00:47:42,920 --> 00:47:44,340 +an extension of strategy. + +670 +00:47:48,020 --> 00:47:52,360 +Both patterns are based on composition. Both + +671 +00:47:52,360 --> 00:47:56,720 +depend on the context that sent them the strategy + +672 +00:47:56,720 --> 00:47:59,240 +or sent them the state. In the days of strategy, + +673 +00:47:59,480 --> 00:48:03,020 +the idea was that the object works on more than + +674 +00:48:03,020 --> 00:48:05,610 +one algorithm. I need to swap algorithms between + +675 +00:48:05,610 --> 00:48:08,110 +them. So we used to make algorithms in independent + +676 +00:48:08,110 --> 00:48:10,090 +objects and send them one by one, change them, say + +677 +00:48:10,090 --> 00:48:12,510 +set current strategy and change it during the + +678 +00:48:12,510 --> 00:48:15,770 +runtime. Okay? And this is the same idea that I + +679 +00:48:15,770 --> 00:48:17,610 +deal with state, each state has a different state + +680 +00:48:17,610 --> 00:48:20,030 +and different code and I change it through set + +681 +00:48:20,030 --> 00:48:23,030 +current state. So this is composition or + +682 +00:48:23,030 --> 00:48:26,350 +aggregation. As if he meant to say that it depends + +683 +00:48:26,350 --> 00:48:28,770 +on dependency injection. I create the state + +684 +00:48:28,770 --> 00:48:32,200 +outside and send it. They change the behavior of + +685 +00:48:32,200 --> 00:48:34,600 +the context by delegating some work to helper + +686 +00:48:34,600 --> 00:48:38,720 +objects. Also, they change the behavior of the + +687 +00:48:38,720 --> 00:48:45,380 +object by delegating other helper classes. Who are + +688 +00:48:45,380 --> 00:48:47,560 +the helper classes? They are the strategy objects + +689 +00:48:47,560 --> 00:48:49,000 +or state objects. + +690 +00:48:52,370 --> 00:48:55,270 +Strategy makes these objects completely + +691 +00:48:55,270 --> 00:48:58,290 +independent and unaware of each other. This is the + +692 +00:48:58,290 --> 00:49:01,290 +main difference. In strategy, I design algorithms + +693 +00:49:01,290 --> 00:49:04,550 +for each object, but there is no relationship + +694 +00:49:04,550 --> 00:49:06,910 +between them. However, state doesn't restrict + +695 +00:49:06,910 --> 00:49:11,130 +dependencies. In state pattern, the state itself + +696 +00:49:11,130 --> 00:49:15,470 +when it works, it connects to another state. Right + +697 +00:49:15,470 --> 00:49:19,450 +or wrong? So there are dependencies between states + +698 +00:49:19,450 --> 00:49:22,230 +in the state pattern. It doesn't restrict. What + +699 +00:49:22,230 --> 00:49:25,130 +does restrict? What restricts the dependence + +700 +00:49:25,130 --> 00:49:28,170 +between states? Letting them alter the state of + +701 +00:49:28,170 --> 00:49:34,530 +the context at will. I create another state and + +702 +00:49:34,530 --> 00:49:38,530 +each state changes the state of the context and + +703 +00:49:38,530 --> 00:49:41,050 +controls it. So there are dependencies between + +704 +00:49:41,050 --> 00:49:44,530 +states. Unlike strategies, algorithms or + +705 +00:49:44,530 --> 00:49:47,670 +strategies have no relation between them and + +706 +00:49:47,670 --> 00:49:51,130 +that's how we solve the state better every week. + +707 +00:49:51,450 --> 00:49:51,850 +God bless you all. diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DCUixRoIE_s_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DCUixRoIE_s_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..0681e01bf5ebf16b8c558697590b3c480edda065 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DCUixRoIE_s_postprocess.srt @@ -0,0 +1,2828 @@ +1 +00:00:05,210 --> 00:00:06,510 +Okay, in the name of God, the most merciful, the + +2 +00:00:06,510 --> 00:00:10,190 +most merciful For the previous lecture, guys, we + +3 +00:00:10,190 --> 00:00:14,670 +explained the state design pattern We started by + +4 +00:00:14,670 --> 00:00:17,550 +giving an example of a vending machine which is + +5 +00:00:17,550 --> 00:00:21,210 +the purchase machine that exists We drew the + +6 +00:00:21,210 --> 00:00:23,930 +machine state, the finite state machine diagram + +7 +00:00:23,930 --> 00:00:28,650 +Which is a method used by engineers or designers + +8 +00:00:28,650 --> 00:00:32,980 +of devices to explainHow does any device work? And + +9 +00:00:32,980 --> 00:00:36,220 +in the finite state machine, its idea is that I + +10 +00:00:36,220 --> 00:00:39,300 +express the machine in the states that it is in, + +11 +00:00:39,880 --> 00:00:41,700 +that is, any device in the world is in multiple + +12 +00:00:41,700 --> 00:00:44,400 +states, sometimes it is idle, sometimes it is + +13 +00:00:44,400 --> 00:00:46,880 +running in A way, sometimes it is running in B way + +14 +00:00:47,620 --> 00:00:49,980 +and actually there are events that make it move + +15 +00:00:49,980 --> 00:00:52,940 +from one state to another state these events can + +16 +00:00:52,940 --> 00:00:56,800 +be buttons for example, the user directs a command + +17 +00:00:56,800 --> 00:00:58,480 +that makes the device move from one state to + +18 +00:00:58,480 --> 00:01:01,260 +another state and these events can come from + +19 +00:01:01,260 --> 00:01:03,420 +inside the system itself for example, if it + +20 +00:01:03,420 --> 00:01:05,940 +completes a certain state, it ends its time or + +21 +00:01:05,940 --> 00:01:08,360 +completes its work on it, it moves to another + +22 +00:01:08,360 --> 00:01:12,840 +state Because we took the example of the vending + +23 +00:01:12,840 --> 00:01:18,100 +machine to show how the state pattern helps me to + +24 +00:01:18,100 --> 00:01:22,180 +convert any finite state machine to code in an + +25 +00:01:22,180 --> 00:01:24,640 +easy and extendable way The first thing we started + +26 +00:01:24,640 --> 00:01:27,940 +to do without the state pattern was to make a + +27 +00:01:27,940 --> 00:01:33,560 +number of F statements So that I have an event for + +28 +00:01:33,560 --> 00:01:37,540 +example these two states state A and state BAnd + +29 +00:01:37,540 --> 00:01:39,020 +there is an event, for example, a certain button + +30 +00:01:39,020 --> 00:01:42,640 +that transfers the device from A state to B state + +31 +00:01:42,640 --> 00:01:45,600 +I'm supposed to have an if statement that says, by + +32 +00:01:45,600 --> 00:01:50,240 +Allah, if the device is in A state and this event + +33 +00:01:50,240 --> 00:01:53,320 +happened, transfer it to what? To B state This + +34 +00:01:53,320 --> 00:01:57,780 +event is supposed to, if it wasn't in A state, the + +35 +00:01:57,780 --> 00:02:01,120 +event shouldn't work or make any effectFor + +36 +00:02:01,120 --> 00:02:05,920 +example, in the previous lecture, if I press the + +37 +00:02:05,920 --> 00:02:09,280 +button to choose an item without putting the coin, + +38 +00:02:10,280 --> 00:02:15,800 +it will not have any effectfirst I have to put a + +39 +00:02:15,800 --> 00:02:20,380 +coin to make the device wait for an item and then + +40 +00:02:20,380 --> 00:02:24,440 +I press the item button instead of using the if + +41 +00:02:24,440 --> 00:02:27,040 +statement, we used the state pattern the summary + +42 +00:02:27,040 --> 00:02:29,860 +of using the state pattern is as follows the + +43 +00:02:29,860 --> 00:02:32,360 +device goes through more than one case, each case + +44 +00:02:32,360 --> 00:02:37,170 +has a class The events in the drawing are + +45 +00:02:37,170 --> 00:02:40,250 +converted to a method in the superclass So that + +46 +00:02:40,250 --> 00:02:43,970 +every state is implemented or extended to this + +47 +00:02:43,970 --> 00:02:49,010 +superclass And every state will take a parameter + +48 +00:02:49,010 --> 00:02:52,510 +which is the context For example, we saw in the + +49 +00:02:52,510 --> 00:02:55,090 +previous lecture that every state is taken as an + +50 +00:02:55,090 --> 00:02:57,530 +object of the vending machine On the basis that + +51 +00:02:57,530 --> 00:03:00,870 +every state is on one If it changes, it will + +52 +00:03:00,870 --> 00:03:03,230 +change or transfer the vending machine to another + +53 +00:03:03,230 --> 00:03:10,780 +state The main + +54 +00:03:10,780 --> 00:03:22,640 +idea of the state pattern + +55 +00:03:22,640 --> 00:03:27,520 +is to allow the object for changing its behavior + +56 +00:03:27,520 --> 00:03:29,700 +without changing its class + +57 +00:03:32,710 --> 00:03:34,370 +which in this case represents for example the + +58 +00:03:34,370 --> 00:03:37,570 +vending machine or the class that represents the + +59 +00:03:37,570 --> 00:03:40,610 +device or the main thing that makes its behavior + +60 +00:03:40,610 --> 00:03:47,920 +change without changing anything in its codeOf + +61 +00:03:47,920 --> 00:03:50,080 +course, we said that the goal is to combine the + +62 +00:03:50,080 --> 00:03:53,400 +state pattern with the strategy pattern, but the + +63 +00:03:53,400 --> 00:03:54,600 +difference between the two is that in the + +64 +00:03:54,600 --> 00:03:56,740 +strategy, the algorithms don't know anything about + +65 +00:03:56,740 --> 00:03:59,360 +each other, but here, no, the algorithms or the + +66 +00:03:59,360 --> 00:04:03,220 +states we called them, they control the device or + +67 +00:04:03,220 --> 00:04:05,640 +the object, they move from state to state, so + +68 +00:04:05,640 --> 00:04:08,370 +there is a communication between the statesin a + +69 +00:04:08,370 --> 00:04:11,410 +state pattern a class behavior changes based on + +70 +00:04:11,410 --> 00:04:14,870 +its state this type of design patterns comes under + +71 +00:04:14,870 --> 00:04:22,310 +behavior pattern in a + +72 +00:04:22,310 --> 00:04:25,270 +state pattern we create objects which represent + +73 +00:04:25,270 --> 00:04:26,210 +various states + +74 +00:04:32,230 --> 00:04:37,370 +And a context object whose behavior varies as its + +75 +00:04:37,370 --> 00:04:42,310 +state object changes This + +76 +00:04:42,310 --> 00:04:46,110 +pattern + +77 +00:04:46,110 --> 00:04:49,930 +is close to the concept of finite state machines + +78 +00:05:01,050 --> 00:05:03,930 +When do we use the state pattern? We use it in the + +79 +00:05:03,930 --> 00:05:05,990 +following cases. Use the state pattern when you + +80 +00:05:05,990 --> 00:05:09,530 +have an object that behaves differently depending + +81 +00:05:09,530 --> 00:05:13,230 +on its current state. The number of states is + +82 +00:05:13,230 --> 00:05:17,410 +enormous and the phi state specific code changes + +83 +00:05:17,410 --> 00:05:21,510 +frequently. Like I said, when I have an object, + +84 +00:05:21,650 --> 00:05:24,150 +its behavior changes and moves from one state to + +85 +00:05:24,150 --> 00:05:27,640 +another.Especially if the number of states is + +86 +00:05:27,640 --> 00:05:31,980 +large If I don't want to use the state pattern and + +87 +00:05:31,980 --> 00:05:34,480 +depend on the F statements, the code will be + +88 +00:05:34,480 --> 00:05:36,060 +complicated because the number of F statements + +89 +00:05:36,060 --> 00:05:42,000 +will be large Also, if the states are changing a + +90 +00:05:42,000 --> 00:05:45,660 +lot, it is better to use the state pattern Because + +91 +00:05:45,660 --> 00:05:47,600 +if you don't use the state pattern, changing the + +92 +00:05:47,600 --> 00:05:49,880 +state means changing the F statements, changing + +93 +00:05:49,880 --> 00:05:52,180 +the basic code of the object + +94 +00:05:55,810 --> 00:05:58,710 +The second point is similar to the first one Use + +95 +00:05:58,710 --> 00:06:01,190 +the pattern when you have a class polluted with + +96 +00:06:01,190 --> 00:06:04,230 +massive conditionals that alter how the class + +97 +00:06:04,230 --> 00:06:07,310 +behaves For example, like we did in the previous + +98 +00:06:07,310 --> 00:06:09,070 +lecture, when we started making the vending + +99 +00:06:09,070 --> 00:06:13,150 +machine, we made it using if statements So if you + +100 +00:06:13,150 --> 00:06:16,370 +have a large number of if statements, which you + +101 +00:06:16,370 --> 00:06:18,930 +will have to change every now and then if you want + +102 +00:06:18,930 --> 00:06:20,970 +to change the behavior, in this case, as we said, + +103 +00:06:21,230 --> 00:06:25,550 +we move to the state patternUse state when you + +104 +00:06:25,550 --> 00:06:28,170 +have a lot of duplicate code across similar states + +105 +00:06:28,170 --> 00:06:31,550 +and transitions of a condition-based state machine + +106 +00:06:31,550 --> 00:06:35,230 +يعني أيضا نفس الفكرة لما يكون عندك عدد كبير من ال + +107 +00:06:35,230 --> 00:06:39,630 +states ويكون في عندي conditions أو events بتخلي ال + +108 +00:06:39,630 --> 00:06:43,030 +objects يغير ال state تبعه من حالة إلى حالة أخرى + +109 +00:06:43,030 --> 00:06:46,390 +زي فكرة finite state machine يعني كأنه بيقوله في + +110 +00:06:46,390 --> 00:06:49,990 +النقطة الأخيرة أنه لو كان عندك a concept or idea + +111 +00:06:49,990 --> 00:06:53,550 +like the finite state machine that is a device or + +112 +00:06:53,550 --> 00:06:56,170 +object that moves by itself to another based on + +113 +00:06:56,170 --> 00:07:01,870 +events so you can apply the state pattern now we + +114 +00:07:01,870 --> 00:07:03,630 +want to see another example on the subject of the + +115 +00:07:03,630 --> 00:07:06,790 +state pattern we do it quickly which is this + +116 +00:07:06,790 --> 00:07:10,150 +example which is the finite state machine diagram + +117 +00:07:10,150 --> 00:07:15,050 +for the media player okay so he tells me for + +118 +00:07:15,050 --> 00:07:18,810 +example the media playerAs soon as I start + +119 +00:07:18,810 --> 00:07:20,770 +working, there is a state of none. We don't + +120 +00:07:20,770 --> 00:07:23,030 +consider this a state on the basis that as soon as + +121 +00:07:23,030 --> 00:07:27,450 +the player starts creating, there is a state of + +122 +00:07:27,450 --> 00:07:29,810 +ideal. Ideal means that they are still working but + +123 +00:07:29,810 --> 00:07:33,460 +they haven't made a play for anything yet, okay?So + +124 +00:07:33,460 --> 00:07:37,880 +he tells me that the media player, the first thing + +125 +00:07:37,880 --> 00:07:43,200 +I have to do to run it, there has to be a player + +126 +00:07:43,200 --> 00:07:47,180 +prepare, okay? It can be this prepare, for + +127 +00:07:47,180 --> 00:07:50,520 +example, that I download the library that he wants + +128 +00:07:50,520 --> 00:07:55,040 +to run, or for example the song or the audio file + +129 +00:07:55,040 --> 00:07:59,120 +that he wants to run, okay?So in the beginning, + +130 +00:07:59,300 --> 00:08:01,800 +the media player will not run anything unless it + +131 +00:08:01,800 --> 00:08:04,880 +is linked to a specific file So this is what we + +132 +00:08:04,880 --> 00:08:07,900 +call in the event, player prepare for example, + +133 +00:08:08,040 --> 00:08:11,820 +which is this arrow, okay? So when I do prepare + +134 +00:08:11,820 --> 00:08:15,110 +for the media player, it moves to what state?To + +135 +00:08:15,110 --> 00:08:19,490 +the ready state, which means that the files that I + +136 +00:08:19,490 --> 00:08:20,450 +want to run have been downloaded and it is now + +137 +00:08:20,450 --> 00:08:24,310 +ready to run So I just have to press the play + +138 +00:08:24,310 --> 00:08:28,130 +button This can be similar to the player prepare + +139 +00:08:28,130 --> 00:08:31,890 +by pressing the load button For the song for + +140 +00:08:31,890 --> 00:08:34,810 +example, ready means that I want to press the play + +141 +00:08:34,810 --> 00:08:36,930 +button So now the first thing I press is the play + +142 +00:08:36,930 --> 00:08:39,450 +button, which is the event that we called player + +143 +00:08:39,450 --> 00:08:43,500 +startOkay, we move to the case of what? Playing, + +144 +00:08:43,900 --> 00:08:47,160 +because he is now working and doing playing + +145 +00:08:47,160 --> 00:08:49,920 +Because when I work on playing, there are two + +146 +00:08:49,920 --> 00:08:54,360 +events that I can do to stop the playing process + +147 +00:08:54,360 --> 00:08:58,260 +It can be playing and I press the pause button, so + +148 +00:08:58,260 --> 00:09:00,500 +we move to the case of what? Paused, which means + +149 +00:09:00,500 --> 00:09:03,630 +it stops running temporarily and maybe he is + +150 +00:09:03,630 --> 00:09:07,250 +playing, I press the button for example unprepared + +151 +00:09:07,250 --> 00:09:10,930 +or unload let's say that's it, upload the files + +152 +00:09:10,930 --> 00:09:14,390 +that you downloaded and of course if he uploaded + +153 +00:09:14,390 --> 00:09:17,810 +the files, I will stop the playing process but the + +154 +00:09:17,810 --> 00:09:19,510 +difference is that when you do unprepared, it will + +155 +00:09:19,510 --> 00:09:22,610 +move to where? to idle, that's it, it's not ready, + +156 +00:09:22,650 --> 00:09:24,270 +it doesn't have files that it wants to run right + +157 +00:09:24,270 --> 00:09:29,050 +now, so it goes straight back to idle now + +158 +00:09:31,830 --> 00:09:35,430 +He might also want to do unprepared, which means + +159 +00:09:35,430 --> 00:09:39,850 +that the event appeared in two places until now If + +160 +00:09:39,850 --> 00:09:44,730 +he wants to unload us, he goes back to idle, and + +161 +00:09:44,730 --> 00:09:47,610 +if he wants to unload us while playing, he stops + +162 +00:09:47,610 --> 00:09:50,890 +and goes back to idle This example is a bit + +163 +00:09:50,890 --> 00:09:52,510 +different from the previous one, because the event + +164 +00:09:52,510 --> 00:09:56,110 +repeats in more than one placeSame thing here, + +165 +00:09:57,030 --> 00:09:59,810 +because it is playing, I made a pause, it moved to + +166 +00:09:59,810 --> 00:10:02,830 +a paused state, because it is paused, I can make + +167 +00:10:02,830 --> 00:10:07,130 +two events, that is, I start it again, play it + +168 +00:10:07,130 --> 00:10:09,990 +again, so it returns to a playing state, and + +169 +00:10:09,990 --> 00:10:14,580 +because it is paused, I can make a stopstop is not + +170 +00:10:14,580 --> 00:10:18,280 +pause, pause means for example to reach half of + +171 +00:10:18,280 --> 00:10:21,000 +the audio, to stop temporarily to continue later + +172 +00:10:21,000 --> 00:10:25,380 +from the same point stop means to stop running the + +173 +00:10:25,380 --> 00:10:28,480 +file, but the file remains loaded, it means that + +174 +00:10:28,480 --> 00:10:31,120 +it remains ready to run the file from the first + +175 +00:10:31,120 --> 00:10:36,140 +time again, so this button is a player, stop goes + +176 +00:10:36,140 --> 00:10:40,510 +to where? it goes back to reading and I can pause + +177 +00:10:40,510 --> 00:10:45,870 +and do unload or unprepared by going back to idle + +178 +00:10:45,870 --> 00:10:48,730 +because this example is more complicated than the + +179 +00:10:48,730 --> 00:10:51,330 +last example because last time from every state to + +180 +00:10:51,330 --> 00:10:55,950 +state I had one event so even if I want to do this + +181 +00:10:55,950 --> 00:10:59,250 +without a state pattern I will have more if + +182 +00:10:59,250 --> 00:11:05,100 +statements for example hereأه لو أنا ضغط على زر ال + +183 +00:11:05,100 --> 00:11:08,500 +load، ال unload عفوا، اللي هي unprepared، تمام؟ + +184 +00:11:08,500 --> 00:11:11,240 +بده أقوله أقف في statements، unprepared مثلا ماراح + +185 +00:11:11,240 --> 00:11:15,800 +يستجيب إلها المفروض إلا لو كان في وضع readyTo go + +186 +00:11:15,800 --> 00:11:19,940 +back to what? To idle And also unprepared when I + +187 +00:11:19,940 --> 00:11:24,840 +find it, it will not work unless it is playing to + +188 +00:11:24,840 --> 00:11:28,440 +go back to idle or to be paused and go back to + +189 +00:11:28,440 --> 00:11:30,880 +idle So the if statements will have three + +190 +00:11:30,880 --> 00:11:34,360 +conditions, this or this or this answer to + +191 +00:11:34,360 --> 00:11:38,670 +unpreparedSo no, why should we depend on the if + +192 +00:11:38,670 --> 00:11:40,590 +statements and whenever we need to change an + +193 +00:11:40,590 --> 00:11:42,450 +event, we change it to the if? And this is like + +194 +00:11:42,450 --> 00:11:44,390 +what we said in the previous lecture that all the + +195 +00:11:44,390 --> 00:11:47,370 +code and the if statements are in one file So I + +196 +00:11:47,370 --> 00:11:50,570 +have to be aware of all the existing conditions in + +197 +00:11:50,570 --> 00:11:52,790 +my brain in order to be able to design them And if + +198 +00:11:52,790 --> 00:11:57,290 +there is a change, I have to review all the + +199 +00:11:57,290 --> 00:12:00,920 +existing if statements or conditionsBut in the + +200 +00:12:00,920 --> 00:12:03,740 +state pattern, I control each state one by one, + +201 +00:12:04,020 --> 00:12:05,760 +and I focus on each state other than the other + +202 +00:12:05,760 --> 00:12:08,760 +state, so my confusion is less, I don't see all + +203 +00:12:08,760 --> 00:12:11,520 +the code in the same place So let's work on this + +204 +00:12:11,520 --> 00:12:13,420 +example together + +205 +00:12:50,630 --> 00:12:53,910 +Ok guys, first thing, as we got used to last time, + +206 +00:12:54,210 --> 00:12:56,530 +is that I want to make a class that represents the + +207 +00:12:56,530 --> 00:13:03,410 +abstract state Ok, + +208 +00:13:03,670 --> 00:13:07,810 +and we said that before this class, there should + +209 +00:13:07,810 --> 00:13:10,030 +be an object that I want to control, which I want + +210 +00:13:10,030 --> 00:13:16,330 +to call media player Ok + +211 +00:13:17,930 --> 00:13:22,150 +And in the abstract state now, there must be an + +212 +00:13:22,150 --> 00:13:28,910 +object from the media player on + +213 +00:13:28,910 --> 00:13:33,110 +the basis that I initialize it through constructor + +214 +00:13:47,730 --> 00:13:51,670 +Ok, the second point that we agreed on is that all + +215 +00:13:51,670 --> 00:13:55,890 +the events in the drawing must turn into methods + +216 +00:13:55,890 --> 00:14:08,450 +For example, I have public void player prepare And + +217 +00:14:08,450 --> 00:14:11,470 +there is public void player unprepare + +218 +00:14:32,100 --> 00:14:37,820 +And I have a player called start + +219 +00:14:49,650 --> 00:15:04,410 +There is a player stop There + +220 +00:15:04,410 --> 00:15:06,010 +is a pause + +221 +00:15:18,410 --> 00:15:24,130 +Now stop, we put it, pause, unprepared, start, we + +222 +00:15:24,130 --> 00:15:30,890 +put it, this sink is not the same as prepare, this + +223 +00:15:30,890 --> 00:15:32,610 +is from this side, no, consider that it is done, + +224 +00:15:32,730 --> 00:15:34,830 +as soon as it starts working, it will be in an + +225 +00:15:34,830 --> 00:15:36,670 +ideal situation, so we will ignore this one above, + +226 +00:15:37,530 --> 00:15:41,090 +so now I have one, two, three, four + +227 +00:15:46,600 --> 00:15:51,940 +خمسة prepare هي نفس ال prepare يعني ما هنعتبرها هي + +228 +00:15:51,940 --> 00:15:59,720 +نفسها تمام فهم خمسة events مختلفين طيب الآن بدنا + +229 +00:15:59,720 --> 00:16:05,040 +نعمل ال events أو ال states الموجودين لإن ال + +230 +00:16:05,040 --> 00:16:10,820 +states هم أربع idle و ready و playing و paused فهي + +231 +00:16:10,820 --> 00:16:11,640 +ال class idle + +232 +00:17:30,910 --> 00:17:33,830 +Ok, we made the states, now we start programming + +233 +00:17:33,830 --> 00:17:42,710 +each state on its own We start with idle I + +234 +00:17:42,710 --> 00:17:45,910 +made a mistake, I put a player + +235 +00:18:02,650 --> 00:18:07,670 +We messed up the world, but it's okay This is + +236 +00:18:07,670 --> 00:18:18,250 +Sheila Okay, + +237 +00:18:18,270 --> 00:18:23,530 +and paused, playing, ready and idle, perfect Okay, + +238 +00:18:23,590 --> 00:18:28,660 +let's start one by one Before we do that, we need + +239 +00:18:28,660 --> 00:18:32,980 +to go to the media player and put the current + +240 +00:18:32,980 --> 00:18:37,740 +state in it So now it will have an attribute + +241 +00:18:37,740 --> 00:18:42,800 +called abstract state, let's call it current state + +242 +00:18:42,800 --> 00:18:49,340 +And it will have a public void set current state + +243 +00:19:11,430 --> 00:19:14,830 +Okay, now we go to idle, and the nice thing about + +244 +00:19:14,830 --> 00:19:20,550 +it is that you focus only on your state and you + +245 +00:19:20,550 --> 00:19:22,070 +see what are the events that came out of it, + +246 +00:19:22,150 --> 00:19:24,630 +because now the idle we have here, let's leave + +247 +00:19:24,630 --> 00:19:28,910 +this none, came out of it one event which is + +248 +00:19:28,910 --> 00:19:32,610 +player prepared which means when the media player + +249 +00:19:32,610 --> 00:19:35,470 +is in an idle state it will only respond to one + +250 +00:19:35,470 --> 00:19:39,210 +event which is player prepared which is let's make + +251 +00:19:39,210 --> 00:19:44,570 +it look like I want to load the file that I want + +252 +00:19:44,570 --> 00:19:50,330 +to play so this here for example we print the + +253 +00:19:50,330 --> 00:19:53,060 +message it appears that there is a code that + +254 +00:19:53,060 --> 00:20:00,100 +worked for example, preparing loading audio track + +255 +00:20:00,100 --> 00:20:07,120 +or file now all the others, we will not make them + +256 +00:20:07,120 --> 00:20:11,500 +exception, so that there is no problem we will go + +257 +00:20:11,500 --> 00:20:13,040 +and tell him, do nothing + +258 +00:20:19,300 --> 00:20:23,120 +Okay? So in all the other methods and events, I + +259 +00:20:23,120 --> 00:20:30,660 +will put nothing Okay? + +260 +00:20:30,760 --> 00:20:32,100 +There is something important that I forgot to do + +261 +00:20:33,070 --> 00:20:37,830 +that when it starts preparing and finishes the + +262 +00:20:37,830 --> 00:20:40,790 +same state is supposed to change the state of the + +263 +00:20:40,790 --> 00:20:43,370 +media player so look at the idea here that the + +264 +00:20:43,370 --> 00:20:45,730 +states are controlled by the gate in the media + +265 +00:20:45,730 --> 00:20:47,910 +player and why did I bring it? why did I + +266 +00:20:47,910 --> 00:20:49,710 +initialize it? I sent it to the state of the media + +267 +00:20:49,710 --> 00:20:52,350 +player so that the state itself after it finishes + +268 +00:20:52,350 --> 00:20:55,530 +executing its code goes to the media player and + +269 +00:20:55,530 --> 00:20:59,630 +says set current state now which state will it + +270 +00:20:59,630 --> 00:21:02,590 +move to?If it is prepared, it will move to ready, + +271 +00:21:02,830 --> 00:21:06,970 +so I will say new ready and I will give it the + +272 +00:21:06,970 --> 00:21:10,710 +media player So this is the main difference + +273 +00:21:10,710 --> 00:21:13,630 +between the state pattern and the strategy, that + +274 +00:21:13,630 --> 00:21:16,330 +the state is what controls the object and moves to + +275 +00:21:16,330 --> 00:21:19,090 +another state In the strategy, no, the strategy + +276 +00:21:19,090 --> 00:21:20,710 +works and finishes, it does not know anything + +277 +00:21:20,710 --> 00:21:25,050 +about the second strategy So it's as if I handed + +278 +00:21:25,050 --> 00:21:26,770 +over the media player to the state and the state + +279 +00:21:26,770 --> 00:21:29,470 +is the one transferring it to each other. Okay? + +280 +00:21:30,090 --> 00:21:32,410 +Okay, we're done with the gate. We're all idle. + +281 +00:21:33,050 --> 00:21:35,870 +Close the file and go to the second state. + +282 +00:21:41,490 --> 00:21:43,170 +Which is at the ready. + +283 +00:21:46,510 --> 00:21:48,250 +Okay, based on what's available, the ready will + +284 +00:21:48,250 --> 00:21:52,140 +respond to several events.Two, unprepared and + +285 +00:21:52,140 --> 00:21:54,680 +start which means that everything else is do + +286 +00:21:54,680 --> 00:22:00,940 +nothing, okay? We don't have prepared, unprepared + +287 +00:22:00,940 --> 00:22:03,240 +is what we want, and start is what we want, and + +288 +00:22:03,240 --> 00:22:06,860 +stop is what we don't want, do nothing, and pause + +289 +00:22:06,860 --> 00:22:09,340 +is do nothing, it is not possible that before he + +290 +00:22:09,340 --> 00:22:11,460 +works he does playing or pause, of course he will + +291 +00:22:11,460 --> 00:22:14,280 +not respond to the pause, so he will work only + +292 +00:22:14,280 --> 00:22:15,100 +with these + +293 +00:22:18,540 --> 00:22:27,240 +System.out.println unpreparingmp + +294 +00:22:27,240 --> 00:22:31,400 +unloadaudio file + +295 +00:22:33,530 --> 00:22:35,650 +and of course the unprepared, you want to see + +296 +00:22:35,650 --> 00:22:38,470 +where it will take you the unprepared will return + +297 +00:22:38,470 --> 00:22:41,910 +to whom? to the idle, so I go to the media player + +298 +00:22:41,910 --> 00:22:48,390 +and I say set current state new idle and I give it + +299 +00:22:48,390 --> 00:22:52,990 +to the media player now to start + +300 +00:23:00,830 --> 00:23:03,550 +It is supposed to run a code that runs + +301 +00:23:03,550 --> 00:23:08,970 +StartPlayingAudio Okay, and this will take the + +302 +00:23:08,970 --> 00:23:13,130 +media player to any state, to the state of playing + +303 +00:23:13,130 --> 00:23:17,070 +Okay, this is ready, when I click on start, it + +304 +00:23:17,070 --> 00:23:19,770 +will take me to the state of playing Set current + +305 +00:23:19,770 --> 00:23:27,820 +state, new, playingmedia player and now we are + +306 +00:23:27,820 --> 00:23:29,500 +done with the class look now you are focusing on + +307 +00:23:29,500 --> 00:23:41,120 +each state one by one let's go to the playing now + +308 +00:23:41,120 --> 00:23:45,180 +the playing actually responds to a few events one + +309 +00:23:45,180 --> 00:23:51,000 +which is pause and stop and + +310 +00:23:51,000 --> 00:23:58,010 +and I prepare pause and stop and I prepareprepare + +311 +00:23:58,010 --> 00:24:00,170 +doesn't have a claim, we put it in do nothing + +312 +00:24:00,170 --> 00:24:04,410 +start doesn't have a claim, we put it in do + +313 +00:24:04,410 --> 00:24:09,350 +nothing pause and stop and now prepare we need + +314 +00:24:09,350 --> 00:24:15,850 +them in unprepared, I also say system.out.println + +315 +00:24:15,850 --> 00:24:22,010 +unpreparing unload + +316 +00:24:22,010 --> 00:24:23,570 +file + +317 +00:24:25,640 --> 00:24:28,000 +and now since it is unpreparing, we go to the + +318 +00:24:28,000 --> 00:24:32,860 +media player and say set current state new it will + +319 +00:24:32,860 --> 00:24:38,040 +move to ready state right? based on the drawing, + +320 +00:24:38,440 --> 00:24:40,260 +if you put unprepared, it will go back to no, no, + +321 +00:24:40,380 --> 00:24:43,560 +it will go back to idle right or no? unprepared is + +322 +00:24:43,560 --> 00:24:46,560 +done, I did unload for files, so it went back to + +323 +00:24:46,560 --> 00:24:47,220 +idle state + +324 +00:24:50,230 --> 00:24:52,970 +Here it is, I'm working now, where is it guys? In + +325 +00:24:52,970 --> 00:24:55,830 +playing, it returns unprepared to idle Because + +326 +00:24:55,830 --> 00:25:07,930 +stop returns ready This is stop I + +327 +00:25:07,930 --> 00:25:14,030 +say stop playing audio And I say mp + +328 +00:25:14,030 --> 00:25:21,440 +.setcurrentstate new ready Total media player + +329 +00:25:21,440 --> 00:25:27,960 +Pause leads to a new state which is paused system + +330 +00:25:27,960 --> 00:25:34,680 +.out.println I write only the word pause and mp + +331 +00:25:34,680 --> 00:25:43,620 +set current state new paused media player The last + +332 +00:25:43,620 --> 00:25:50,060 +state I have left is paused ال pause بيستجيب ل + +333 +00:25:50,060 --> 00:25:58,180 +تلاتة events unprepared و stop و start طبعا يعني + +334 +00:25:58,180 --> 00:26:02,600 +ال prepare ماناش فيها do nothing unprepared + +335 +00:26:02,600 --> 00:26:06,020 +بدناياها و stop بدناياها و start بدناياها ال pause + +336 +00:26:06,020 --> 00:26:09,800 +إيش لأ مش معقول هو pause أقوله كمان مرة pause مش + +337 +00:26:09,800 --> 00:26:14,080 +هيكون إليها أثر ف unprepared + +338 +00:26:19,790 --> 00:26:23,350 +I want to print a message for him unpreparing from + +339 +00:26:23,350 --> 00:26:26,370 +paused it means it is paused and we did + +340 +00:26:26,370 --> 00:26:32,270 +unpreparing and now I say mp set current state + +341 +00:26:32,270 --> 00:26:40,210 +will return to idle start + +342 +00:26:40,210 --> 00:26:44,230 +will be paused if I press start it will work again + +343 +00:26:44,230 --> 00:26:46,110 +system + +344 +00:26:49,650 --> 00:26:59,130 +I say playing from pause or after pause and + +345 +00:26:59,130 --> 00:27:12,850 +this returns to stop status + +346 +00:27:21,350 --> 00:27:33,130 +Stopping from paused Tamam, + +347 +00:27:33,370 --> 00:27:38,550 +هي احنا انهينا يا جماعة كل states الان نجي للتشغيل + +348 +00:27:38,550 --> 00:27:42,450 +الرئيسي التشغيل الرئيسي من وين؟ روحت على class + +349 +00:27:42,450 --> 00:27:46,390 +media player هنقدر نفكر ال media player هيكون فيه + +350 +00:27:46,390 --> 00:27:47,870 +إذرار يعني مثلا + +351 +00:27:51,520 --> 00:27:54,240 +let's say for example there is a button that loads + +352 +00:27:54,240 --> 00:27:56,640 +the file it means that in the beginning there will + +353 +00:27:56,640 --> 00:27:58,320 +be an idle state it is supposed that when it loads + +354 +00:27:58,320 --> 00:28:01,780 +it will be in a ready state okay? then it will + +355 +00:28:01,780 --> 00:28:04,360 +start to activate for example a button from play + +356 +00:28:04,360 --> 00:28:10,720 +okay? and there is also a button which is of + +357 +00:28:10,720 --> 00:28:12,240 +course in the media player there is a button like + +358 +00:28:12,240 --> 00:28:16,740 +this and a button like this for example a circle + +359 +00:28:16,740 --> 00:28:20,820 +like this there is one for example pauseOkay, and + +360 +00:28:20,820 --> 00:28:24,660 +what is this? Stop Okay, and as soon as there is a + +361 +00:28:24,660 --> 00:28:27,160 +load, we make another button which is for example + +362 +00:28:27,160 --> 00:28:29,800 +Unload, which means that it is done, pick up, pick + +363 +00:28:29,800 --> 00:28:31,880 +up the mouse So actually I have, it responds to + +364 +00:28:31,880 --> 00:28:36,380 +how many events? Five events Okay, which is almost + +365 +00:28:36,380 --> 00:28:40,200 +the same events that we did So what do I want to + +366 +00:28:40,200 --> 00:28:43,300 +do in the abstract class? + +367 +00:28:46,140 --> 00:28:49,140 +These are almost the same, each one represents a + +368 +00:28:49,140 --> 00:28:52,800 +button in the media player So I went to the media + +369 +00:28:52,800 --> 00:28:57,620 +player, but what? In order for these methods to be + +370 +00:28:57,620 --> 00:28:59,400 +abstract, I had to put code in them + +371 +00:29:22,660 --> 00:29:25,080 +Ok fine, now when the media player starts working + +372 +00:29:25,080 --> 00:29:33,300 +I want to create a public media player when + +373 +00:29:33,300 --> 00:29:34,620 +it starts working, I want to go to the current + +374 +00:29:34,620 --> 00:29:37,600 +state and what will be the first state that it + +375 +00:29:37,600 --> 00:29:43,060 +will be in which is idle ok, and here I send it + +376 +00:29:43,060 --> 00:29:47,000 +this now what do we do in these, you don't do + +377 +00:29:47,000 --> 00:29:50,340 +anything all you have to do is go to the current + +378 +00:29:50,340 --> 00:29:55,140 +state and you repeat the event itself player + +379 +00:29:55,140 --> 00:30:05,100 +prepare and here also current state player I + +380 +00:30:05,100 --> 00:30:12,860 +prepare current state player start current state + +381 +00:30:12,860 --> 00:30:19,540 +player stop and here current state + +382 +00:30:22,340 --> 00:30:29,060 +Player is paused What does it mean? Why does it + +383 +00:30:29,060 --> 00:30:32,860 +use the same event? Because in the first case, it + +384 +00:30:32,860 --> 00:30:36,720 +is idle For example, if it is idle and you press + +385 +00:30:36,720 --> 00:30:38,320 +start, + +386 +00:30:39,880 --> 00:30:43,060 +it will execute the player start that is present + +387 +00:30:43,060 --> 00:30:46,900 +in the current state What is the current state? We + +388 +00:30:46,900 --> 00:30:50,940 +said idle and it is idle and it is idle. Press the + +389 +00:30:50,940 --> 00:30:53,740 +start buttonIs it okay if he is idle and I press + +390 +00:30:53,740 --> 00:30:57,620 +start? No, there is no file loaded yet, right or + +391 +00:30:57,620 --> 00:31:00,680 +not? So actually this calls the player start that + +392 +00:31:00,680 --> 00:31:03,240 +is present in idle Player start that is present in + +393 +00:31:03,240 --> 00:31:08,680 +idle, what will it do? Do nothing Press stop, he + +394 +00:31:08,680 --> 00:31:12,780 +is idle Also, what will it do? Do nothing Because + +395 +00:31:12,780 --> 00:31:16,280 +every player state currently what is present which + +396 +00:31:16,280 --> 00:31:21,200 +is idleUntil when will it affect only one event, + +397 +00:31:21,800 --> 00:31:25,840 +which is who? Prepare. So if you press on the + +398 +00:31:25,840 --> 00:31:28,280 +player prepare and he is idle, we saw that in + +399 +00:31:28,280 --> 00:31:34,000 +idle, what does prepare do? it loads the file and + +400 +00:31:34,000 --> 00:31:38,460 +it says it is ready it changed the media player + +401 +00:31:38,460 --> 00:31:41,500 +without it knowing it is the idea here when the + +402 +00:31:41,500 --> 00:31:44,980 +media player came, the user came and we pressed + +403 +00:31:44,980 --> 00:31:50,800 +prepare and it moved from idle to ready because it + +404 +00:31:50,800 --> 00:31:57,600 +is ready I pressed stop stop in ready doesn't do + +405 +00:31:57,600 --> 00:32:01,290 +anything If you press pause on it, it won't do + +406 +00:32:01,290 --> 00:32:02,910 +anything because according to the drawing, ready + +407 +00:32:02,910 --> 00:32:07,650 +only responds to start and unprepared Right or + +408 +00:32:07,650 --> 00:32:11,490 +wrong? So now every five current stars that you + +409 +00:32:11,490 --> 00:32:16,010 +see in green, they are all currently ready Ready + +410 +00:32:16,010 --> 00:32:19,330 +will not respond to start or unprepared + +411 +00:32:22,500 --> 00:32:25,800 +What will he do? He will start playing and the + +412 +00:32:25,800 --> 00:32:28,800 +state will change to the state of playing So + +413 +00:32:28,800 --> 00:32:31,520 +notice that the states between them are changing + +414 +00:32:31,520 --> 00:32:34,100 +the media player without the media player knowing + +415 +00:32:34,100 --> 00:32:37,660 +anything So if there is a change in the states, I + +416 +00:32:37,660 --> 00:32:40,560 +change in the states, I don't change anything in + +417 +00:32:40,560 --> 00:32:43,460 +the media player this current state changes + +418 +00:32:43,460 --> 00:32:46,700 +automatically who changes it? the states in the + +419 +00:32:46,700 --> 00:32:52,300 +strategy we used to make a method this method we + +420 +00:32:52,300 --> 00:32:55,180 +used to use from the client in the strategy but + +421 +00:32:55,180 --> 00:32:58,800 +who uses this method now? the states they execute + +422 +00:32:58,800 --> 00:33:02,600 +it ok? so now if we go to the main method we made + +423 +00:33:02,600 --> 00:33:05,100 +here for example main method we turn it on or + +424 +00:33:05,100 --> 00:33:09,340 +leave it in class this is the main method go and + +425 +00:33:09,340 --> 00:33:20,380 +make it media player and + +426 +00:33:20,380 --> 00:33:32,940 +now we tried mp.start player start mp player stop + +427 +00:33:32,940 --> 00:33:37,820 +let's see what happens mp.player prepare + +428 +00:33:40,880 --> 00:33:46,140 +mp dot player + +429 +00:33:46,140 --> 00:33:51,880 +start mp + +430 +00:33:51,880 --> 00:33:56,760 +dot pause + +431 +00:33:56,760 --> 00:34:00,440 +mp + +432 +00:34:00,440 --> 00:34:06,300 +dot player start ok + +433 +00:34:06,300 --> 00:34:09,420 +guys see what will happen when I execute this code + +434 +00:34:15,200 --> 00:34:32,220 +Ok, I'm going to output the code Wait + +435 +00:34:32,220 --> 00:34:36,620 +a minute + +436 +00:34:36,620 --> 00:34:41,540 +Ok + +437 +00:34:41,540 --> 00:34:43,640 +guys, first thing when I turned on the media + +438 +00:34:43,640 --> 00:34:46,490 +player and I clicked startwhat did I write here? + +439 +00:34:47,170 --> 00:34:51,130 +geographic because the initial state is idle, the + +440 +00:34:51,130 --> 00:34:53,230 +start and the idle will not work and the stop and + +441 +00:34:53,230 --> 00:34:56,130 +the idle will also not work when it is preparing, + +442 +00:34:56,510 --> 00:34:57,810 +it will respond, it happened in the case of + +443 +00:34:57,810 --> 00:35:01,370 +preparing and the idle itself moved to the ready + +444 +00:35:01,370 --> 00:35:05,590 +state because after ready, I did the start, the + +445 +00:35:05,590 --> 00:35:08,270 +start at ready makes it move to the plain state + +446 +00:35:09,280 --> 00:35:12,140 +Okay, this is what happened, start playing audio + +447 +00:35:12,140 --> 00:35:14,720 +and it became in playing mode, if it is playing, + +448 +00:35:14,860 --> 00:35:18,400 +it will press what? Pause, it wrote pause for me, + +449 +00:35:18,640 --> 00:35:21,600 +if it is pause, what did I do? Start, I go back + +450 +00:35:21,600 --> 00:35:26,280 +again to the playing mode, okay, so I actually + +451 +00:35:26,280 --> 00:35:28,480 +downloaded it from where? From idle to ready and + +452 +00:35:28,480 --> 00:35:30,380 +from ready to playing and from playing to pause + +453 +00:35:30,380 --> 00:35:36,950 +and from pause I returned it to playingOkay? So + +454 +00:35:36,950 --> 00:35:42,490 +each state only responds to the events that affect + +455 +00:35:42,490 --> 00:35:45,430 +them, okay? The idea that I came up with is that I + +456 +00:35:45,430 --> 00:35:47,230 +want to modify a certain state, and so I only go + +457 +00:35:47,230 --> 00:35:49,910 +to the classes of the states where I modify them. + +458 +00:35:50,150 --> 00:35:52,730 +The media player itself does not make any + +459 +00:35:52,730 --> 00:35:54,950 +modification in it. If I want to do this in one + +460 +00:35:54,950 --> 00:35:58,010 +class, the code will be very large and there will + +461 +00:35:58,010 --> 00:36:01,330 +be a large number of if statements and the + +462 +00:36:01,330 --> 00:36:03,170 +modification on it will be more difficult. + +463 +00:36:06,500 --> 00:36:13,380 +Ok, after applying this example, let's see the + +464 +00:36:13,380 --> 00:36:18,540 +state pattern diagram today. There is a slight + +465 +00:36:18,540 --> 00:36:21,320 +difference from what I did. Look with me. Did you + +466 +00:36:21,320 --> 00:36:24,990 +notice that when I worked?The first thing I did + +467 +00:36:24,990 --> 00:36:26,710 +was to create an abstract class that represents + +468 +00:36:26,710 --> 00:36:30,430 +the super class that every state will have an + +469 +00:36:30,430 --> 00:36:32,810 +extent to it. I didn't create an interface, I + +470 +00:36:32,810 --> 00:36:36,050 +created an abstract class. Why? Because the state + +471 +00:36:36,050 --> 00:36:38,070 +must be reached by the object that controls it, + +472 +00:36:38,150 --> 00:36:41,510 +which is the media player, for example. Okay? So I + +473 +00:36:41,510 --> 00:36:43,030 +created a constructor, and since I created a + +474 +00:36:43,030 --> 00:36:44,990 +constructor and there is an attribute in the + +475 +00:36:44,990 --> 00:36:47,070 +class, I can't call it an interface. I have to + +476 +00:36:47,070 --> 00:36:49,870 +call it an abstract class. He made a slight + +477 +00:36:49,870 --> 00:36:54,160 +change.I will tell you why they did that. The + +478 +00:36:54,160 --> 00:36:59,080 +solution is better. He made an interface in the + +479 +00:36:59,080 --> 00:37:04,420 +beginning and he named it state and he put events + +480 +00:37:04,420 --> 00:37:07,790 +in it. All the events in the chart, the stocks, + +481 +00:37:08,370 --> 00:37:10,430 +put the methods in them Notice that he didn't put + +482 +00:37:10,430 --> 00:37:12,210 +attributes or constructor in it because the + +483 +00:37:12,210 --> 00:37:14,570 +interface can't be put in it He put all the + +484 +00:37:14,570 --> 00:37:16,650 +existing events in it Here, of course, as an + +485 +00:37:16,650 --> 00:37:19,090 +example, he put do this, do that Which is like + +486 +00:37:19,090 --> 00:37:22,550 +player start, player paused, player unprepared, + +487 +00:37:22,590 --> 00:37:28,510 +and so on Now, from this, he made concrete states + +488 +00:37:28,510 --> 00:37:33,630 +and they made an implement for the interface Now + +489 +00:37:34,650 --> 00:37:38,010 +What did I do? I went to the context, who is this? + +490 +00:37:38,210 --> 00:37:40,470 +This is the object that I control, which is the + +491 +00:37:40,470 --> 00:37:44,590 +media player, okay? The difference between them is + +492 +00:37:44,590 --> 00:37:48,090 +that I did what? So that I don't have to put this + +493 +00:37:48,090 --> 00:37:51,370 +context in every subclass, okay? Where did he put + +494 +00:37:51,370 --> 00:37:55,160 +it?In the subclass, of course here he will have to + +495 +00:37:55,160 --> 00:38:01,120 +repeat the code When I made a subclass, I put this + +496 +00:38:01,120 --> 00:38:05,320 +attribute in the superclass, so I don't have to + +497 +00:38:05,320 --> 00:38:07,800 +repeat it here No, what did he do? The media + +498 +00:38:07,800 --> 00:38:10,120 +player or context started to put it in the + +499 +00:38:10,120 --> 00:38:12,760 +subclass and here he creates a constructorOkay? + +500 +00:38:13,740 --> 00:38:15,240 +And then, of course, as long as he did the + +501 +00:38:15,240 --> 00:38:16,780 +implementation, I mean the difference, do you know + +502 +00:38:16,780 --> 00:38:18,060 +what the difference is? The constructor, instead + +503 +00:38:18,060 --> 00:38:22,580 +of being above, he wrote in each subclass, that + +504 +00:38:22,580 --> 00:38:25,880 +is, he has a repetition of code, okay? Five times, + +505 +00:38:26,340 --> 00:38:29,690 +okay? For example, if I have five statesSo why did + +506 +00:38:29,690 --> 00:38:30,870 +I do this? Why didn't I do anything like + +507 +00:38:30,870 --> 00:38:33,930 +constructor? I will tell you why in a while. Then, + +508 +00:38:34,070 --> 00:38:35,370 +of course, since I made an implement for the + +509 +00:38:35,370 --> 00:38:37,950 +interface, I will make an implement for whom? For + +510 +00:38:37,950 --> 00:38:40,150 +the events, the methods that represent the events. + +511 +00:38:40,650 --> 00:38:44,650 +And then I go, based on the state, the events that + +512 +00:38:44,650 --> 00:38:46,290 +respond to it. I make them code, and those that + +513 +00:38:46,290 --> 00:38:48,650 +don't respond to it, I make them do nothing. Okay? + +514 +00:38:49,130 --> 00:38:51,710 +There is no difference between what I did. Both + +515 +00:38:51,710 --> 00:38:55,810 +are correct solutions. Okay? Then, who is this? + +516 +00:38:56,130 --> 00:39:00,350 +The media player. In the media player, it has a + +517 +00:39:00,350 --> 00:39:04,050 +current state, the state it is in right now. This + +518 +00:39:04,050 --> 00:39:09,630 +is an attribute of the state type. And there is a + +519 +00:39:09,630 --> 00:39:14,450 +method which is set current state, which is change + +520 +00:39:14,450 --> 00:39:19,310 +state. And this is a constructor to give it + +521 +00:39:19,310 --> 00:39:23,670 +initials. I made an empty constructor and left the + +522 +00:39:23,670 --> 00:39:29,590 +initial state idle.I said that there is no + +523 +00:39:29,590 --> 00:39:31,690 +argument constructor. He said that there is no + +524 +00:39:31,690 --> 00:39:33,850 +argument constructor. He said that there is no + +525 +00:39:33,850 --> 00:39:34,090 +argument constructor. He said that there is no + +526 +00:39:34,090 --> 00:39:34,170 +argument constructor. He said that there is no + +527 +00:39:34,170 --> 00:39:34,590 +argument constructor. He said that there is no + +528 +00:39:34,590 --> 00:39:34,670 +argument constructor. He said that there is no + +529 +00:39:34,670 --> 00:39:34,690 +argument constructor. He said that there is no + +530 +00:39:34,690 --> 00:39:35,030 +argument constructor. He said that there is no + +531 +00:39:35,030 --> 00:39:36,530 +argument constructor. He said that there is no + +532 +00:39:36,530 --> 00:39:40,290 +argument constructor. He said that there these + +533 +00:39:40,290 --> 00:39:44,050 +mean do this and do that which are the same as + +534 +00:39:44,050 --> 00:39:46,570 +these events considering that these have buttons + +535 +00:39:46,570 --> 00:39:50,290 +as I did here for example in the media player I + +536 +00:39:50,290 --> 00:39:52,830 +have five buttons which represent the same as the + +537 +00:39:52,830 --> 00:39:57,710 +five events so what can he do? I returned that + +538 +00:39:57,710 --> 00:40:00,270 +context uses state, what does this arrow mean? + +539 +00:40:00,530 --> 00:40:05,670 +that context uses state and what else can he do? + +540 +00:40:05,890 --> 00:40:11,000 +context makes him implementto the state. Why? So + +541 +00:40:11,000 --> 00:40:15,000 +that instead of writing them by hand, I can make + +542 +00:40:15,000 --> 00:40:16,560 +them implement themselves. They are the events, + +543 +00:40:16,620 --> 00:40:19,220 +they are the buttons. Of course, I don't prefer + +544 +00:40:19,220 --> 00:40:21,840 +this way because the events here don't have to + +545 +00:40:21,840 --> 00:40:25,260 +turn into buttons. Right or wrong? There are + +546 +00:40:25,260 --> 00:40:27,360 +internal events. For example, the system itself + +547 +00:40:27,360 --> 00:40:29,620 +will work, like the vending machine for example. + +548 +00:40:30,140 --> 00:40:32,180 +Didn't I have an event in the last lecture called + +549 +00:40:32,180 --> 00:40:35,040 +item ready? Which is when does the item become + +550 +00:40:35,040 --> 00:40:37,080 +ready? I don't press any button to make it ready. + +551 +00:40:37,740 --> 00:40:43,000 +It is the machine itself that sends the event + +552 +00:40:43,000 --> 00:40:46,120 +after it is ready. Right or not? So here in the + +553 +00:40:46,120 --> 00:40:50,200 +context, I only put the eventsFor the user who + +554 +00:40:50,200 --> 00:40:52,440 +controls them, for example, who turns buttons into + +555 +00:40:52,440 --> 00:40:56,040 +controls Anyway, + +556 +00:40:58,820 --> 00:41:00,780 +this solution or the solution I made, the + +557 +00:41:00,780 --> 00:41:03,020 +difference between them is that I put the context + +558 +00:41:03,020 --> 00:41:06,000 +as an abstract class here so that it does not + +559 +00:41:06,000 --> 00:41:08,800 +repeat its writing down here He made this + +560 +00:41:08,800 --> 00:41:12,040 +interface and put it down here He made an + +561 +00:41:12,040 --> 00:41:13,200 +interface for what? Because I tell you that I can + +562 +00:41:13,200 --> 00:41:15,100 +make an implement for the interface from the + +563 +00:41:15,100 --> 00:41:17,240 +context to make an implement for whom? For these + +564 +00:41:17,240 --> 00:41:20,390 +methodsBut I also don't prefer it because not all + +565 +00:41:20,390 --> 00:41:23,970 +the events here must be written in the context, + +566 +00:41:24,010 --> 00:41:24,730 +okay? + +567 +00:41:27,590 --> 00:41:30,990 +Okay, why did he make this indication? This means + +568 +00:41:30,990 --> 00:41:33,610 +that the state is created outside and is sent + +569 +00:41:33,610 --> 00:41:36,410 +where? To this Of course, this is not a condition + +570 +00:41:37,520 --> 00:41:41,460 +For example, I didn't send him the initial state + +571 +00:41:41,460 --> 00:41:43,520 +in the constructor here in this example In our + +572 +00:41:43,520 --> 00:41:45,520 +example in the media player, I didn't send him the + +573 +00:41:45,520 --> 00:41:48,220 +initial state, right? I left him from inside the + +574 +00:41:48,220 --> 00:41:52,280 +empty constructor to do what? EitherSo this is not + +575 +00:41:52,280 --> 00:41:54,780 +a rule, it doesn't have to be an aggregation, + +576 +00:41:54,860 --> 00:41:58,460 +okay? Okay, I know what the initial state is, why + +577 +00:41:58,460 --> 00:42:01,260 +did I send it from outside, okay? This depends on + +578 +00:42:01,260 --> 00:42:05,120 +when I want the system to start from any existing + +579 +00:42:05,120 --> 00:42:07,620 +state For example, if I design a computer player, + +580 +00:42:08,060 --> 00:42:11,540 +a player in a game, I want him to be an attacker + +581 +00:42:11,540 --> 00:42:14,030 +as soon as it startsI want the player to be + +582 +00:42:14,030 --> 00:42:16,190 +defensive when he plays the game. So the initial + +583 +00:42:16,190 --> 00:42:19,930 +state might be different in this case. But in the + +584 +00:42:19,930 --> 00:42:21,590 +media player, as soon as he plays the game, he + +585 +00:42:21,590 --> 00:42:25,370 +wants to be idle. So I made him idle. He made it + +586 +00:42:25,370 --> 00:42:28,330 +different so that he can determine his initial + +587 +00:42:28,330 --> 00:42:33,350 +state. Okay? Okay. The last thing I have here is + +588 +00:42:33,350 --> 00:42:37,980 +mean.The client that wants to run the class that + +589 +00:42:37,980 --> 00:42:40,820 +has main in it If I am in the class main, of + +590 +00:42:40,820 --> 00:42:43,720 +course I created a media player Let's compare it + +591 +00:42:43,720 --> 00:42:46,260 +with the example we did, I didn't create an object + +592 +00:42:46,260 --> 00:42:48,280 +from media player, he created an object from + +593 +00:42:48,280 --> 00:42:52,720 +context And what is different from me is that + +594 +00:42:52,720 --> 00:42:56,330 +before creating context, I created main I created + +595 +00:42:56,330 --> 00:42:59,130 +the initial state and sent it to him I did not + +596 +00:42:59,130 --> 00:43:01,690 +create the initial state, I left it in the + +597 +00:43:01,690 --> 00:43:04,030 +constructor because I know that the media player + +598 +00:43:04,030 --> 00:43:08,810 +will always start in an idle state Here, no, I am + +599 +00:43:08,810 --> 00:43:16,110 +telling you Then I created events that are calls I + +600 +00:43:16,110 --> 00:43:18,470 +told him that there is a method called do this and + +601 +00:43:18,470 --> 00:43:20,370 +from inside I call the media player and tell him + +602 +00:43:20,370 --> 00:43:26,170 +to do thisOf course this do this, what should be + +603 +00:43:26,170 --> 00:43:31,150 +the code that should be in it? Context dot, it + +604 +00:43:31,150 --> 00:43:33,950 +should go to the state and say do this, ok? + +605 +00:43:38,590 --> 00:43:41,950 +Ok, here I want to show you something, how the + +606 +00:43:41,950 --> 00:43:46,570 +code that is in each method looks likeOkay? Did + +607 +00:43:46,570 --> 00:43:50,470 +you notice that when I said do that, if the state + +608 +00:43:50,470 --> 00:43:53,830 +responds to do that, it transfers the state to + +609 +00:43:53,830 --> 00:43:56,390 +another state So the state is going to make a + +610 +00:43:56,390 --> 00:44:00,150 +state equal to the other state and then it goes to + +611 +00:44:00,150 --> 00:44:02,610 +the context and says change state and gives it to + +612 +00:44:02,610 --> 00:44:05,450 +the other state This is new Did you notice that if + +613 +00:44:05,450 --> 00:44:09,050 +I was in an ideal situation, if I pressed on + +614 +00:44:09,050 --> 00:44:14,010 +prepareFrom inside the method prepared, I create a + +615 +00:44:14,010 --> 00:44:16,930 +new state for ready and I go to the media player + +616 +00:44:16,930 --> 00:44:19,590 +and tell it to set current state Which is where? + +617 +00:44:19,790 --> 00:44:24,410 +This code down here, these two lines represent in + +618 +00:44:24,410 --> 00:44:29,630 +our program any method, + +619 +00:44:30,150 --> 00:44:30,670 +this is idle + +620 +00:44:34,670 --> 00:44:36,810 +For example, here I am a player prepared, I say + +621 +00:44:36,810 --> 00:44:40,270 +preparing and then I don't go and say set current + +622 +00:44:40,270 --> 00:44:45,530 +state in you ready This line is the same as these + +623 +00:44:45,530 --> 00:44:53,970 +two lines Same as + +624 +00:44:53,970 --> 00:44:57,110 +these two lines But I made them line by line, I + +625 +00:44:57,110 --> 00:44:59,670 +create another state that will move to it and then + +626 +00:44:59,670 --> 00:45:08,120 +I will say change stateSo there is a change, the + +627 +00:45:08,120 --> 00:45:10,520 +main change is that here the context is where I + +628 +00:45:10,520 --> 00:45:14,700 +put it, instead of the interface I made it + +629 +00:45:14,700 --> 00:45:17,800 +abstract class, the other parts are almost the + +630 +00:45:17,800 --> 00:45:18,040 +same + +631 +00:45:22,730 --> 00:45:24,770 +Advantages of the state pattern, with the state + +632 +00:45:24,770 --> 00:45:28,850 +pattern the benefits of implementing polymorphic + +633 +00:45:28,850 --> 00:45:31,090 +behavior are evident, that is, we have + +634 +00:45:31,090 --> 00:45:33,970 +polymorphism more than state, they all follow the + +635 +00:45:33,970 --> 00:45:37,510 +same interface, the media player or context deals + +636 +00:45:37,510 --> 00:45:40,390 +with a certain type of state and I can change it + +637 +00:45:40,390 --> 00:45:43,650 +without changing any code in the media player or + +638 +00:45:43,650 --> 00:45:48,240 +context And it is also easier to add states to + +639 +00:45:48,240 --> 00:45:50,960 +support additional behavior All I need to do to + +640 +00:45:50,960 --> 00:45:54,700 +add a new state is to make it respond to events + +641 +00:45:54,700 --> 00:45:57,200 +and adjust how the state moves from another state + +642 +00:45:57,200 --> 00:46:00,510 +without modifying the class of the media playerin + +643 +00:46:00,510 --> 00:46:02,830 +the state design pattern is an object behavior is + +644 +00:46:02,830 --> 00:46:07,530 +the result of the function of its state the object + +645 +00:46:07,530 --> 00:46:10,870 +behavior is the result of the function of its + +646 +00:46:10,870 --> 00:46:21,710 +state and + +647 +00:46:21,710 --> 00:46:26,070 +the behavior gets changed at runtime depending on + +648 +00:46:26,070 --> 00:46:29,760 +the stateThis removes the dependency on if-else + +649 +00:46:29,760 --> 00:46:40,540 +statement. For example, + +650 +00:46:40,740 --> 00:46:44,720 +in the TV remote scenario, we could also have + +651 +00:46:44,720 --> 00:46:48,140 +implemented that behavior by simply writing one + +652 +00:46:48,140 --> 00:46:50,700 +class and method that will ask for a parameter and + +653 +00:46:50,700 --> 00:46:55,390 +perform action For example, we can make it a TV + +654 +00:46:55,390 --> 00:46:57,850 +remote control, this is also a machine that moves + +655 +00:46:57,850 --> 00:47:00,310 +from one state to another, regardless of the fact + +656 +00:47:00,310 --> 00:47:02,910 +that we are still hitting the state pattern The + +657 +00:47:02,910 --> 00:47:06,450 +state design pattern also improves cohesion, since + +658 +00:47:06,450 --> 00:47:10,070 +state-specific behaviors are aggregated into the + +659 +00:47:10,070 --> 00:47:13,320 +concrete stateClasses which are placed in one + +660 +00:47:13,320 --> 00:47:18,300 +location in the code, which means that all classes + +661 +00:47:18,300 --> 00:47:19,260 +that have a relationship with each other and + +662 +00:47:19,260 --> 00:47:24,620 +perform the same function in one class or in one + +663 +00:47:24,620 --> 00:47:27,940 +package So all these states control the behavior, + +664 +00:47:28,100 --> 00:47:30,860 +so all these classes are usually in one package, + +665 +00:47:31,620 --> 00:47:33,320 +so the code that has a relationship with each + +666 +00:47:33,320 --> 00:47:36,900 +other is present next to each otherThe last point + +667 +00:47:36,900 --> 00:47:39,320 +is the difference between strategy and state, and + +668 +00:47:39,320 --> 00:47:42,920 +this is what I mean by state can be considered as + +669 +00:47:42,920 --> 00:47:44,340 +an extension of strategy. + +670 +00:47:48,020 --> 00:47:52,360 +Both patterns are based on composition. Both + +671 +00:47:52,360 --> 00:47:56,720 +depend on the context that sent them the strategy + +672 +00:47:56,720 --> 00:47:59,240 +or sent them the state. In the days of strategy, + +673 +00:47:59,480 --> 00:48:03,020 +the idea was that the object works on more than + +674 +00:48:03,020 --> 00:48:05,610 +one algorithm. I need to swap algorithms between + +675 +00:48:05,610 --> 00:48:08,110 +them. So we used to make algorithms in independent + +676 +00:48:08,110 --> 00:48:10,090 +objects and send them one by one, change them, say + +677 +00:48:10,090 --> 00:48:12,510 +set current strategy and change it during the + +678 +00:48:12,510 --> 00:48:15,770 +runtime. Okay? And this is the same idea that I + +679 +00:48:15,770 --> 00:48:17,610 +deal with state, each state has a different state + +680 +00:48:17,610 --> 00:48:20,030 +and different code and I change it through set + +681 +00:48:20,030 --> 00:48:23,030 +current state. So this is composition or + +682 +00:48:23,030 --> 00:48:26,350 +aggregation. As if he meant to say that it depends + +683 +00:48:26,350 --> 00:48:28,770 +on dependency injection. I create the state + +684 +00:48:28,770 --> 00:48:32,200 +outside and send it.They change the behavior of + +685 +00:48:32,200 --> 00:48:34,600 +the context by delegating some work to helper + +686 +00:48:34,600 --> 00:48:38,720 +objects.Also, they change the behavior of the + +687 +00:48:38,720 --> 00:48:45,380 +object by delegating other helper classes. Who are + +688 +00:48:45,380 --> 00:48:47,560 +the helper classes? They are the strategy objects + +689 +00:48:47,560 --> 00:48:49,000 +or state objects. + +690 +00:48:52,370 --> 00:48:55,270 +Strategy makes these objects completely + +691 +00:48:55,270 --> 00:48:58,290 +independent and unaware of each other. This is the + +692 +00:48:58,290 --> 00:49:01,290 +main difference. In strategy, I design algorithms + +693 +00:49:01,290 --> 00:49:04,550 +for each object, but there is no relationship + +694 +00:49:04,550 --> 00:49:06,910 +between them. However, state doesn't restrict + +695 +00:49:06,910 --> 00:49:11,130 +dependencies. In state pattern, the state itself + +696 +00:49:11,130 --> 00:49:15,470 +when it works, it connects to another state. Right + +697 +00:49:15,470 --> 00:49:19,450 +or wrong? So there are dependencies between states + +698 +00:49:19,450 --> 00:49:22,230 +in the state pattern. It doesn't restrict. What + +699 +00:49:22,230 --> 00:49:25,130 +does restrict? What restricts the dependence + +700 +00:49:25,130 --> 00:49:28,170 +between states? Letting them alter the state of + +701 +00:49:28,170 --> 00:49:34,530 +the context at will.I create another state and + +702 +00:49:34,530 --> 00:49:38,530 +each state changes the state of the context and + +703 +00:49:38,530 --> 00:49:41,050 +controls it. So there are dependencies between + +704 +00:49:41,050 --> 00:49:44,530 +states. Unlike strategies, algorithms or + +705 +00:49:44,530 --> 00:49:47,670 +strategies have no relation between them and + +706 +00:49:47,670 --> 00:49:51,130 +that's how we solve the state better every week. + +707 +00:49:51,450 --> 00:49:51,850 +God bless you all. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DCUixRoIE_s_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DCUixRoIE_s_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..e2569b763b5f0ca5c1c75ff5eacf3ff00eb2b3e9 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DCUixRoIE_s_raw.srt @@ -0,0 +1,2876 @@ +1 +00:00:05,210 --> 00:00:06,510 +Okay, in the name of God, the most merciful, the + +2 +00:00:06,510 --> 00:00:10,190 +most merciful For the previous lecture, guys, we + +3 +00:00:10,190 --> 00:00:14,670 +explained the state design pattern We started by + +4 +00:00:14,670 --> 00:00:17,550 +giving an example of a vending machine which is + +5 +00:00:17,550 --> 00:00:21,210 +the purchase machine that exists We drew the + +6 +00:00:21,210 --> 00:00:23,930 +machine state, the finite state machine diagram + +7 +00:00:23,930 --> 00:00:28,650 +Which is a method used by engineers or designers + +8 +00:00:28,650 --> 00:00:32,980 +of devices to explainHow does any device work? And + +9 +00:00:32,980 --> 00:00:36,220 +in the finite state machine, its idea is that I + +10 +00:00:36,220 --> 00:00:39,300 +express the machine in the states that it is in, + +11 +00:00:39,880 --> 00:00:41,700 +that is, any device in the world is in multiple + +12 +00:00:41,700 --> 00:00:44,400 +states, sometimes it is idle, sometimes it is + +13 +00:00:44,400 --> 00:00:46,880 +running in A way, sometimes it is running in B way + +14 +00:00:47,620 --> 00:00:49,980 +and actually there are events that make it move + +15 +00:00:49,980 --> 00:00:52,940 +from one state to another state these events can + +16 +00:00:52,940 --> 00:00:56,800 +be buttons for example, the user directs a command + +17 +00:00:56,800 --> 00:00:58,480 +that makes the device move from one state to + +18 +00:00:58,480 --> 00:01:01,260 +another state and these events can come from + +19 +00:01:01,260 --> 00:01:03,420 +inside the system itself for example, if it + +20 +00:01:03,420 --> 00:01:05,940 +completes a certain state, it ends its time or + +21 +00:01:05,940 --> 00:01:08,360 +completes its work on it, it moves to another + +22 +00:01:08,360 --> 00:01:12,840 +state Because we took the example of the vending + +23 +00:01:12,840 --> 00:01:18,100 +machine to show how the state pattern helps me to + +24 +00:01:18,100 --> 00:01:22,180 +convert any finite state machine to code in an + +25 +00:01:22,180 --> 00:01:24,640 +easy and extendable way The first thing we started + +26 +00:01:24,640 --> 00:01:27,940 +to do without the state pattern was to make a + +27 +00:01:27,940 --> 00:01:33,560 +number of F statements So that I have an event for + +28 +00:01:33,560 --> 00:01:37,540 +example these two states state A and state BAnd + +29 +00:01:37,540 --> 00:01:39,020 +there is an event, for example, a certain button + +30 +00:01:39,020 --> 00:01:42,640 +that transfers the device from A state to B state + +31 +00:01:42,640 --> 00:01:45,600 +I'm supposed to have an if statement that says, by + +32 +00:01:45,600 --> 00:01:50,240 +Allah, if the device is in A state and this event + +33 +00:01:50,240 --> 00:01:53,320 +happened, transfer it to what? To B state This + +34 +00:01:53,320 --> 00:01:57,780 +event is supposed to, if it wasn't in A state, the + +35 +00:01:57,780 --> 00:02:01,120 +event shouldn't work or make any effectFor + +36 +00:02:01,120 --> 00:02:05,920 +example, in the previous lecture, if I press the + +37 +00:02:05,920 --> 00:02:09,280 +button to choose an item without putting the coin, + +38 +00:02:10,280 --> 00:02:15,800 +it will not have any effectfirst I have to put a + +39 +00:02:15,800 --> 00:02:20,380 +coin to make the device wait for an item and then + +40 +00:02:20,380 --> 00:02:24,440 +I press the item button instead of using the if + +41 +00:02:24,440 --> 00:02:27,040 +statement, we used the state pattern the summary + +42 +00:02:27,040 --> 00:02:29,860 +of using the state pattern is as follows the + +43 +00:02:29,860 --> 00:02:32,360 +device goes through more than one case, each case + +44 +00:02:32,360 --> 00:02:37,170 +has a class The events in the drawing are + +45 +00:02:37,170 --> 00:02:40,250 +converted to a method in the superclass So that + +46 +00:02:40,250 --> 00:02:43,970 +every state is implemented or extended to this + +47 +00:02:43,970 --> 00:02:49,010 +superclass And every state will take a parameter + +48 +00:02:49,010 --> 00:02:52,510 +which is the context For example, we saw in the + +49 +00:02:52,510 --> 00:02:55,090 +previous lecture that every state is taken as an + +50 +00:02:55,090 --> 00:02:57,530 +object of the vending machine On the basis that + +51 +00:02:57,530 --> 00:03:00,870 +every state is on one If it changes, it will + +52 +00:03:00,870 --> 00:03:03,230 +change or transfer the vending machine to another + +53 +00:03:03,230 --> 00:03:10,780 +state The main + +54 +00:03:10,780 --> 00:03:22,640 +idea of the state pattern + +55 +00:03:22,640 --> 00:03:27,520 +is to allow the object for changing its behavior + +56 +00:03:27,520 --> 00:03:29,700 +without changing its class + +57 +00:03:32,710 --> 00:03:34,370 +which in this case represents for example the + +58 +00:03:34,370 --> 00:03:37,570 +vending machine or the class that represents the + +59 +00:03:37,570 --> 00:03:40,610 +device or the main thing that makes its behavior + +60 +00:03:40,610 --> 00:03:47,920 +change without changing anything in its codeOf + +61 +00:03:47,920 --> 00:03:50,080 +course, we said that the goal is to combine the + +62 +00:03:50,080 --> 00:03:53,400 +state pattern with the strategy pattern, but the + +63 +00:03:53,400 --> 00:03:54,600 +difference between the two is that in the + +64 +00:03:54,600 --> 00:03:56,740 +strategy, the algorithms don't know anything about + +65 +00:03:56,740 --> 00:03:59,360 +each other, but here, no, the algorithms or the + +66 +00:03:59,360 --> 00:04:03,220 +states we called them, they control the device or + +67 +00:04:03,220 --> 00:04:05,640 +the object, they move from state to state, so + +68 +00:04:05,640 --> 00:04:08,370 +there is a communication between the statesin a + +69 +00:04:08,370 --> 00:04:11,410 +state pattern a class behavior changes based on + +70 +00:04:11,410 --> 00:04:14,870 +its state this type of design patterns comes under + +71 +00:04:14,870 --> 00:04:22,310 +behavior pattern in a + +72 +00:04:22,310 --> 00:04:25,270 +state pattern we create objects which represent + +73 +00:04:25,270 --> 00:04:26,210 +various states + +74 +00:04:32,230 --> 00:04:37,370 +And a context object whose behavior varies as its + +75 +00:04:37,370 --> 00:04:42,310 +state object changes This + +76 +00:04:42,310 --> 00:04:46,110 +pattern + +77 +00:04:46,110 --> 00:04:49,930 +is close to the concept of finite state machines + +78 +00:05:01,050 --> 00:05:03,930 +When do we use the state pattern? We use it in the + +79 +00:05:03,930 --> 00:05:05,990 +following cases. Use the state pattern when you + +80 +00:05:05,990 --> 00:05:09,530 +have an object that behaves differently depending + +81 +00:05:09,530 --> 00:05:13,230 +on its current state. The number of states is + +82 +00:05:13,230 --> 00:05:17,410 +enormous and the phi state specific code changes + +83 +00:05:17,410 --> 00:05:21,510 +frequently. Like I said, when I have an object, + +84 +00:05:21,650 --> 00:05:24,150 +its behavior changes and moves from one state to + +85 +00:05:24,150 --> 00:05:27,640 +another.Especially if the number of states is + +86 +00:05:27,640 --> 00:05:31,980 +large If I don't want to use the state pattern and + +87 +00:05:31,980 --> 00:05:34,480 +depend on the F statements, the code will be + +88 +00:05:34,480 --> 00:05:36,060 +complicated because the number of F statements + +89 +00:05:36,060 --> 00:05:42,000 +will be large Also, if the states are changing a + +90 +00:05:42,000 --> 00:05:45,660 +lot, it is better to use the state pattern Because + +91 +00:05:45,660 --> 00:05:47,600 +if you don't use the state pattern, changing the + +92 +00:05:47,600 --> 00:05:49,880 +state means changing the F statements, changing + +93 +00:05:49,880 --> 00:05:52,180 +the basic code of the object + +94 +00:05:55,810 --> 00:05:58,710 +The second point is similar to the first one Use + +95 +00:05:58,710 --> 00:06:01,190 +the pattern when you have a class polluted with + +96 +00:06:01,190 --> 00:06:04,230 +massive conditionals that alter how the class + +97 +00:06:04,230 --> 00:06:07,310 +behaves For example, like we did in the previous + +98 +00:06:07,310 --> 00:06:09,070 +lecture, when we started making the vending + +99 +00:06:09,070 --> 00:06:13,150 +machine, we made it using if statements So if you + +100 +00:06:13,150 --> 00:06:16,370 +have a large number of if statements, which you + +101 +00:06:16,370 --> 00:06:18,930 +will have to change every now and then if you want + +102 +00:06:18,930 --> 00:06:20,970 +to change the behavior, in this case, as we said, + +103 +00:06:21,230 --> 00:06:25,550 +we move to the state patternUse state when you + +104 +00:06:25,550 --> 00:06:28,170 +have a lot of duplicate code across similar states + +105 +00:06:28,170 --> 00:06:31,550 +and transitions of a condition-based state machine + +106 +00:06:31,550 --> 00:06:35,230 +يعني أيضا نفس الفكرة لما يكون عندك عدد كبير من ال + +107 +00:06:35,230 --> 00:06:39,630 +states ويكون في عندي conditions أو events بتخلي ال + +108 +00:06:39,630 --> 00:06:43,030 +objects يغير ال state تبعه من حالة إلى حالة أخرى + +109 +00:06:43,030 --> 00:06:46,390 +زي فكرة finite state machine يعني كأنه بيقوله في + +110 +00:06:46,390 --> 00:06:49,990 +النقطة الأخيرة أنه لو كان عندك a concept or idea + +111 +00:06:49,990 --> 00:06:53,550 +like the finite state machine that is a device or + +112 +00:06:53,550 --> 00:06:56,170 +object that moves by itself to another based on + +113 +00:06:56,170 --> 00:07:01,870 +events so you can apply the state pattern now we + +114 +00:07:01,870 --> 00:07:03,630 +want to see another example on the subject of the + +115 +00:07:03,630 --> 00:07:06,790 +state pattern we do it quickly which is this + +116 +00:07:06,790 --> 00:07:10,150 +example which is the finite state machine diagram + +117 +00:07:10,150 --> 00:07:15,050 +for the media player okay so he tells me for + +118 +00:07:15,050 --> 00:07:18,810 +example the media playerAs soon as I start + +119 +00:07:18,810 --> 00:07:20,770 +working, there is a state of none. We don't + +120 +00:07:20,770 --> 00:07:23,030 +consider this a state on the basis that as soon as + +121 +00:07:23,030 --> 00:07:27,450 +the player starts creating, there is a state of + +122 +00:07:27,450 --> 00:07:29,810 +ideal. Ideal means that they are still working but + +123 +00:07:29,810 --> 00:07:33,460 +they haven't made a play for anything yet, okay?So + +124 +00:07:33,460 --> 00:07:37,880 +he tells me that the media player, the first thing + +125 +00:07:37,880 --> 00:07:43,200 +I have to do to run it, there has to be a player + +126 +00:07:43,200 --> 00:07:47,180 +prepare, okay? It can be this prepare, for + +127 +00:07:47,180 --> 00:07:50,520 +example, that I download the library that he wants + +128 +00:07:50,520 --> 00:07:55,040 +to run, or for example the song or the audio file + +129 +00:07:55,040 --> 00:07:59,120 +that he wants to run, okay?So in the beginning, + +130 +00:07:59,300 --> 00:08:01,800 +the media player will not run anything unless it + +131 +00:08:01,800 --> 00:08:04,880 +is linked to a specific file So this is what we + +132 +00:08:04,880 --> 00:08:07,900 +call in the event, player prepare for example, + +133 +00:08:08,040 --> 00:08:11,820 +which is this arrow, okay? So when I do prepare + +134 +00:08:11,820 --> 00:08:15,110 +for the media player, it moves to what state?To + +135 +00:08:15,110 --> 00:08:19,490 +the ready state, which means that the files that I + +136 +00:08:19,490 --> 00:08:20,450 +want to run have been downloaded and it is now + +137 +00:08:20,450 --> 00:08:24,310 +ready to run So I just have to press the play + +138 +00:08:24,310 --> 00:08:28,130 +button This can be similar to the player prepare + +139 +00:08:28,130 --> 00:08:31,890 +by pressing the load button For the song for + +140 +00:08:31,890 --> 00:08:34,810 +example, ready means that I want to press the play + +141 +00:08:34,810 --> 00:08:36,930 +button So now the first thing I press is the play + +142 +00:08:36,930 --> 00:08:39,450 +button, which is the event that we called player + +143 +00:08:39,450 --> 00:08:43,500 +startOkay, we move to the case of what? Playing, + +144 +00:08:43,900 --> 00:08:47,160 +because he is now working and doing playing + +145 +00:08:47,160 --> 00:08:49,920 +Because when I work on playing, there are two + +146 +00:08:49,920 --> 00:08:54,360 +events that I can do to stop the playing process + +147 +00:08:54,360 --> 00:08:58,260 +It can be playing and I press the pause button, so + +148 +00:08:58,260 --> 00:09:00,500 +we move to the case of what? Paused, which means + +149 +00:09:00,500 --> 00:09:03,630 +it stops running temporarily and maybe he is + +150 +00:09:03,630 --> 00:09:07,250 +playing, I press the button for example unprepared + +151 +00:09:07,250 --> 00:09:10,930 +or unload let's say that's it, upload the files + +152 +00:09:10,930 --> 00:09:14,390 +that you downloaded and of course if he uploaded + +153 +00:09:14,390 --> 00:09:17,810 +the files, I will stop the playing process but the + +154 +00:09:17,810 --> 00:09:19,510 +difference is that when you do unprepared, it will + +155 +00:09:19,510 --> 00:09:22,610 +move to where? to idle, that's it, it's not ready, + +156 +00:09:22,650 --> 00:09:24,270 +it doesn't have files that it wants to run right + +157 +00:09:24,270 --> 00:09:29,050 +now, so it goes straight back to idle now + +158 +00:09:31,830 --> 00:09:35,430 +He might also want to do unprepared, which means + +159 +00:09:35,430 --> 00:09:39,850 +that the event appeared in two places until now If + +160 +00:09:39,850 --> 00:09:44,730 +he wants to unload us, he goes back to idle, and + +161 +00:09:44,730 --> 00:09:47,610 +if he wants to unload us while playing, he stops + +162 +00:09:47,610 --> 00:09:50,890 +and goes back to idle This example is a bit + +163 +00:09:50,890 --> 00:09:52,510 +different from the previous one, because the event + +164 +00:09:52,510 --> 00:09:56,110 +repeats in more than one placeSame thing here, + +165 +00:09:57,030 --> 00:09:59,810 +because it is playing, I made a pause, it moved to + +166 +00:09:59,810 --> 00:10:02,830 +a paused state, because it is paused, I can make + +167 +00:10:02,830 --> 00:10:07,130 +two events, that is, I start it again, play it + +168 +00:10:07,130 --> 00:10:09,990 +again, so it returns to a playing state, and + +169 +00:10:09,990 --> 00:10:14,580 +because it is paused, I can make a stopstop is not + +170 +00:10:14,580 --> 00:10:18,280 +pause, pause means for example to reach half of + +171 +00:10:18,280 --> 00:10:21,000 +the audio, to stop temporarily to continue later + +172 +00:10:21,000 --> 00:10:25,380 +from the same point stop means to stop running the + +173 +00:10:25,380 --> 00:10:28,480 +file, but the file remains loaded, it means that + +174 +00:10:28,480 --> 00:10:31,120 +it remains ready to run the file from the first + +175 +00:10:31,120 --> 00:10:36,140 +time again, so this button is a player, stop goes + +176 +00:10:36,140 --> 00:10:40,510 +to where? it goes back to reading and I can pause + +177 +00:10:40,510 --> 00:10:45,870 +and do unload or unprepared by going back to idle + +178 +00:10:45,870 --> 00:10:48,730 +because this example is more complicated than the + +179 +00:10:48,730 --> 00:10:51,330 +last example because last time from every state to + +180 +00:10:51,330 --> 00:10:55,950 +state I had one event so even if I want to do this + +181 +00:10:55,950 --> 00:10:59,250 +without a state pattern I will have more if + +182 +00:10:59,250 --> 00:11:05,100 +statements for example hereأه لو أنا ضغط على زر ال + +183 +00:11:05,100 --> 00:11:08,500 +load، ال unload عفوا، اللي هي unprepared، تمام؟ + +184 +00:11:08,500 --> 00:11:11,240 +بده أقوله أقف في statements، unprepared مثلا ماراح + +185 +00:11:11,240 --> 00:11:15,800 +يستجيب إلها المفروض إلا لو كان في وضع readyTo go + +186 +00:11:15,800 --> 00:11:19,940 +back to what? To idle And also unprepared when I + +187 +00:11:19,940 --> 00:11:24,840 +find it, it will not work unless it is playing to + +188 +00:11:24,840 --> 00:11:28,440 +go back to idle or to be paused and go back to + +189 +00:11:28,440 --> 00:11:30,880 +idle So the if statements will have three + +190 +00:11:30,880 --> 00:11:34,360 +conditions, this or this or this answer to + +191 +00:11:34,360 --> 00:11:38,670 +unpreparedSo no, why should we depend on the if + +192 +00:11:38,670 --> 00:11:40,590 +statements and whenever we need to change an + +193 +00:11:40,590 --> 00:11:42,450 +event, we change it to the if? And this is like + +194 +00:11:42,450 --> 00:11:44,390 +what we said in the previous lecture that all the + +195 +00:11:44,390 --> 00:11:47,370 +code and the if statements are in one file So I + +196 +00:11:47,370 --> 00:11:50,570 +have to be aware of all the existing conditions in + +197 +00:11:50,570 --> 00:11:52,790 +my brain in order to be able to design them And if + +198 +00:11:52,790 --> 00:11:57,290 +there is a change, I have to review all the + +199 +00:11:57,290 --> 00:12:00,920 +existing if statements or conditionsBut in the + +200 +00:12:00,920 --> 00:12:03,740 +state pattern, I control each state one by one, + +201 +00:12:04,020 --> 00:12:05,760 +and I focus on each state other than the other + +202 +00:12:05,760 --> 00:12:08,760 +state, so my confusion is less, I don't see all + +203 +00:12:08,760 --> 00:12:11,520 +the code in the same place So let's work on this + +204 +00:12:11,520 --> 00:12:13,420 +example together + +205 +00:12:50,630 --> 00:12:53,910 +Ok guys, first thing, as we got used to last time, + +206 +00:12:54,210 --> 00:12:56,530 +is that I want to make a class that represents the + +207 +00:12:56,530 --> 00:13:03,410 +abstract state Ok, + +208 +00:13:03,670 --> 00:13:07,810 +and we said that before this class, there should + +209 +00:13:07,810 --> 00:13:10,030 +be an object that I want to control, which I want + +210 +00:13:10,030 --> 00:13:16,330 +to call media player Ok + +211 +00:13:17,930 --> 00:13:22,150 +And in the abstract state now, there must be an + +212 +00:13:22,150 --> 00:13:28,910 +object from the media player on + +213 +00:13:28,910 --> 00:13:33,110 +the basis that I initialize it through constructor + +214 +00:13:47,730 --> 00:13:51,670 +Ok, the second point that we agreed on is that all + +215 +00:13:51,670 --> 00:13:55,890 +the events in the drawing must turn into methods + +216 +00:13:55,890 --> 00:14:08,450 +For example, I have public void player prepare And + +217 +00:14:08,450 --> 00:14:11,470 +there is public void player unprepare + +218 +00:14:32,100 --> 00:14:37,820 +And I have a player called start + +219 +00:14:49,650 --> 00:15:04,410 +There is a player stop There + +220 +00:15:04,410 --> 00:15:06,010 +is a pause + +221 +00:15:18,410 --> 00:15:24,130 +Now stop, we put it, pause, unprepared, start, we + +222 +00:15:24,130 --> 00:15:30,890 +put it, this sink is not the same as prepare, this + +223 +00:15:30,890 --> 00:15:32,610 +is from this side, no, consider that it is done, + +224 +00:15:32,730 --> 00:15:34,830 +as soon as it starts working, it will be in an + +225 +00:15:34,830 --> 00:15:36,670 +ideal situation, so we will ignore this one above, + +226 +00:15:37,530 --> 00:15:41,090 +so now I have one, two, three, four + +227 +00:15:46,600 --> 00:15:51,940 +خمسة prepare هي نفس ال prepare يعني ما هنعتبرها هي + +228 +00:15:51,940 --> 00:15:59,720 +نفسها تمام فهم خمسة events مختلفين طيب الآن بدنا + +229 +00:15:59,720 --> 00:16:05,040 +نعمل ال events أو ال states الموجودين لإن ال + +230 +00:16:05,040 --> 00:16:10,820 +states هم أربع idle و ready و playing و paused فهي + +231 +00:16:10,820 --> 00:16:11,640 +ال class idle + +232 +00:17:30,910 --> 00:17:33,830 +Ok, we made the states, now we start programming + +233 +00:17:33,830 --> 00:17:42,710 +each state on its own We start with idle I + +234 +00:17:42,710 --> 00:17:45,910 +made a mistake, I put a player + +235 +00:18:02,650 --> 00:18:07,670 +We messed up the world, but it's okay This is + +236 +00:18:07,670 --> 00:18:18,250 +Sheila Okay, + +237 +00:18:18,270 --> 00:18:23,530 +and paused, playing, ready and idle, perfect Okay, + +238 +00:18:23,590 --> 00:18:28,660 +let's start one by one Before we do that, we need + +239 +00:18:28,660 --> 00:18:32,980 +to go to the media player and put the current + +240 +00:18:32,980 --> 00:18:37,740 +state in it So now it will have an attribute + +241 +00:18:37,740 --> 00:18:42,800 +called abstract state, let's call it current state + +242 +00:18:42,800 --> 00:18:49,340 +And it will have a public void set current state + +243 +00:19:11,430 --> 00:19:14,830 +Okay, now we go to idle, and the nice thing about + +244 +00:19:14,830 --> 00:19:20,550 +it is that you focus only on your state and you + +245 +00:19:20,550 --> 00:19:22,070 +see what are the events that came out of it, + +246 +00:19:22,150 --> 00:19:24,630 +because now the idle we have here, let's leave + +247 +00:19:24,630 --> 00:19:28,910 +this none, came out of it one event which is + +248 +00:19:28,910 --> 00:19:32,610 +player prepared which means when the media player + +249 +00:19:32,610 --> 00:19:35,470 +is in an idle state it will only respond to one + +250 +00:19:35,470 --> 00:19:39,210 +event which is player prepared which is let's make + +251 +00:19:39,210 --> 00:19:44,570 +it look like I want to load the file that I want + +252 +00:19:44,570 --> 00:19:50,330 +to play so this here for example we print the + +253 +00:19:50,330 --> 00:19:53,060 +message it appears that there is a code that + +254 +00:19:53,060 --> 00:20:00,100 +worked for example, preparing loading audio track + +255 +00:20:00,100 --> 00:20:07,120 +or file now all the others, we will not make them + +256 +00:20:07,120 --> 00:20:11,500 +exception, so that there is no problem we will go + +257 +00:20:11,500 --> 00:20:13,040 +and tell him, do nothing + +258 +00:20:19,300 --> 00:20:23,120 +Okay? So in all the other methods and events, I + +259 +00:20:23,120 --> 00:20:30,660 +will put nothing Okay? + +260 +00:20:30,760 --> 00:20:32,100 +There is something important that I forgot to do + +261 +00:20:33,070 --> 00:20:37,830 +that when it starts preparing and finishes the + +262 +00:20:37,830 --> 00:20:40,790 +same state is supposed to change the state of the + +263 +00:20:40,790 --> 00:20:43,370 +media player so look at the idea here that the + +264 +00:20:43,370 --> 00:20:45,730 +states are controlled by the gate in the media + +265 +00:20:45,730 --> 00:20:47,910 +player and why did I bring it? why did I + +266 +00:20:47,910 --> 00:20:49,710 +initialize it? I sent it to the state of the media + +267 +00:20:49,710 --> 00:20:52,350 +player so that the state itself after it finishes + +268 +00:20:52,350 --> 00:20:55,530 +executing its code goes to the media player and + +269 +00:20:55,530 --> 00:20:59,630 +says set current state now which state will it + +270 +00:20:59,630 --> 00:21:02,590 +move to?If it is prepared, it will move to ready, + +271 +00:21:02,830 --> 00:21:06,970 +so I will say new ready and I will give it the + +272 +00:21:06,970 --> 00:21:10,710 +media player So this is the main difference + +273 +00:21:10,710 --> 00:21:13,630 +between the state pattern and the strategy, that + +274 +00:21:13,630 --> 00:21:16,330 +the state is what controls the object and moves to + +275 +00:21:16,330 --> 00:21:19,090 +another state In the strategy, no, the strategy + +276 +00:21:19,090 --> 00:21:20,710 +works and finishes, it does not know anything + +277 +00:21:20,710 --> 00:21:25,050 +about the second strategy So it's as if I handed + +278 +00:21:25,050 --> 00:21:26,770 +over the media player to the state and the state + +279 +00:21:26,770 --> 00:21:29,470 +is the one transferring it to each other. Okay? + +280 +00:21:30,090 --> 00:21:32,410 +Okay, we're done with the gate. We're all idle. + +281 +00:21:33,050 --> 00:21:35,870 +Close the file and go to the second state. + +282 +00:21:41,490 --> 00:21:43,170 +Which is at the ready. + +283 +00:21:46,510 --> 00:21:48,250 +Okay, based on what's available, the ready will + +284 +00:21:48,250 --> 00:21:52,140 +respond to several events.Two, unprepared and + +285 +00:21:52,140 --> 00:21:54,680 +start which means that everything else is do + +286 +00:21:54,680 --> 00:22:00,940 +nothing, okay? We don't have prepared, unprepared + +287 +00:22:00,940 --> 00:22:03,240 +is what we want, and start is what we want, and + +288 +00:22:03,240 --> 00:22:06,860 +stop is what we don't want, do nothing, and pause + +289 +00:22:06,860 --> 00:22:09,340 +is do nothing, it is not possible that before he + +290 +00:22:09,340 --> 00:22:11,460 +works he does playing or pause, of course he will + +291 +00:22:11,460 --> 00:22:14,280 +not respond to the pause, so he will work only + +292 +00:22:14,280 --> 00:22:15,100 +with these + +293 +00:22:18,540 --> 00:22:27,240 +System.out.println unpreparingmp + +294 +00:22:27,240 --> 00:22:31,400 +unloadaudio file + +295 +00:22:33,530 --> 00:22:35,650 +and of course the unprepared, you want to see + +296 +00:22:35,650 --> 00:22:38,470 +where it will take you the unprepared will return + +297 +00:22:38,470 --> 00:22:41,910 +to whom? to the idle, so I go to the media player + +298 +00:22:41,910 --> 00:22:48,390 +and I say set current state new idle and I give it + +299 +00:22:48,390 --> 00:22:52,990 +to the media player now to start + +300 +00:23:00,830 --> 00:23:03,550 +It is supposed to run a code that runs + +301 +00:23:03,550 --> 00:23:08,970 +StartPlayingAudio Okay, and this will take the + +302 +00:23:08,970 --> 00:23:13,130 +media player to any state, to the state of playing + +303 +00:23:13,130 --> 00:23:17,070 +Okay, this is ready, when I click on start, it + +304 +00:23:17,070 --> 00:23:19,770 +will take me to the state of playing Set current + +305 +00:23:19,770 --> 00:23:27,820 +state, new, playingmedia player and now we are + +306 +00:23:27,820 --> 00:23:29,500 +done with the class look now you are focusing on + +307 +00:23:29,500 --> 00:23:41,120 +each state one by one let's go to the playing now + +308 +00:23:41,120 --> 00:23:45,180 +the playing actually responds to a few events one + +309 +00:23:45,180 --> 00:23:51,000 +which is pause and stop and + +310 +00:23:51,000 --> 00:23:58,010 +and I prepare pause and stop and I prepareprepare + +311 +00:23:58,010 --> 00:24:00,170 +doesn't have a claim, we put it in do nothing + +312 +00:24:00,170 --> 00:24:04,410 +start doesn't have a claim, we put it in do + +313 +00:24:04,410 --> 00:24:09,350 +nothing pause and stop and now prepare we need + +314 +00:24:09,350 --> 00:24:15,850 +them in unprepared, I also say system.out.println + +315 +00:24:15,850 --> 00:24:22,010 +unpreparing unload + +316 +00:24:22,010 --> 00:24:23,570 +file + +317 +00:24:25,640 --> 00:24:28,000 +and now since it is unpreparing, we go to the + +318 +00:24:28,000 --> 00:24:32,860 +media player and say set current state new it will + +319 +00:24:32,860 --> 00:24:38,040 +move to ready state right? based on the drawing, + +320 +00:24:38,440 --> 00:24:40,260 +if you put unprepared, it will go back to no, no, + +321 +00:24:40,380 --> 00:24:43,560 +it will go back to idle right or no? unprepared is + +322 +00:24:43,560 --> 00:24:46,560 +done, I did unload for files, so it went back to + +323 +00:24:46,560 --> 00:24:47,220 +idle state + +324 +00:24:50,230 --> 00:24:52,970 +Here it is, I'm working now, where is it guys? In + +325 +00:24:52,970 --> 00:24:55,830 +playing, it returns unprepared to idle Because + +326 +00:24:55,830 --> 00:25:07,930 +stop returns ready This is stop I + +327 +00:25:07,930 --> 00:25:14,030 +say stop playing audio And I say mp + +328 +00:25:14,030 --> 00:25:21,440 +.setcurrentstate new ready Total media player + +329 +00:25:21,440 --> 00:25:27,960 +Pause leads to a new state which is paused system + +330 +00:25:27,960 --> 00:25:34,680 +.out.println I write only the word pause and mp + +331 +00:25:34,680 --> 00:25:43,620 +set current state new paused media player The last + +332 +00:25:43,620 --> 00:25:50,060 +state I have left is paused ال pause بيستجيب ل + +333 +00:25:50,060 --> 00:25:58,180 +تلاتة events unprepared و stop و start طبعا يعني + +334 +00:25:58,180 --> 00:26:02,600 +ال prepare ماناش فيها do nothing unprepared + +335 +00:26:02,600 --> 00:26:06,020 +بدناياها و stop بدناياها و start بدناياها ال pause + +336 +00:26:06,020 --> 00:26:09,800 +إيش لأ مش معقول هو pause أقوله كمان مرة pause مش + +337 +00:26:09,800 --> 00:26:14,080 +هيكون إليها أثر ف unprepared + +338 +00:26:19,790 --> 00:26:23,350 +I want to print a message for him unpreparing from + +339 +00:26:23,350 --> 00:26:26,370 +paused it means it is paused and we did + +340 +00:26:26,370 --> 00:26:32,270 +unpreparing and now I say mp set current state + +341 +00:26:32,270 --> 00:26:40,210 +will return to idle start + +342 +00:26:40,210 --> 00:26:44,230 +will be paused if I press start it will work again + +343 +00:26:44,230 --> 00:26:46,110 +system + +344 +00:26:49,650 --> 00:26:59,130 +I say playing from pause or after pause and + +345 +00:26:59,130 --> 00:27:12,850 +this returns to stop status + +346 +00:27:21,350 --> 00:27:33,130 +Stopping from paused Tamam, + +347 +00:27:33,370 --> 00:27:38,550 +هي احنا انهينا يا جماعة كل states الان نجي للتشغيل + +348 +00:27:38,550 --> 00:27:42,450 +الرئيسي التشغيل الرئيسي من وين؟ روحت على class + +349 +00:27:42,450 --> 00:27:46,390 +media player هنقدر نفكر ال media player هيكون فيه + +350 +00:27:46,390 --> 00:27:47,870 +إذرار يعني مثلا + +351 +00:27:51,520 --> 00:27:54,240 +let's say for example there is a button that loads + +352 +00:27:54,240 --> 00:27:56,640 +the file it means that in the beginning there will + +353 +00:27:56,640 --> 00:27:58,320 +be an idle state it is supposed that when it loads + +354 +00:27:58,320 --> 00:28:01,780 +it will be in a ready state okay? then it will + +355 +00:28:01,780 --> 00:28:04,360 +start to activate for example a button from play + +356 +00:28:04,360 --> 00:28:10,720 +okay? and there is also a button which is of + +357 +00:28:10,720 --> 00:28:12,240 +course in the media player there is a button like + +358 +00:28:12,240 --> 00:28:16,740 +this and a button like this for example a circle + +359 +00:28:16,740 --> 00:28:20,820 +like this there is one for example pauseOkay, and + +360 +00:28:20,820 --> 00:28:24,660 +what is this? Stop Okay, and as soon as there is a + +361 +00:28:24,660 --> 00:28:27,160 +load, we make another button which is for example + +362 +00:28:27,160 --> 00:28:29,800 +Unload, which means that it is done, pick up, pick + +363 +00:28:29,800 --> 00:28:31,880 +up the mouse So actually I have, it responds to + +364 +00:28:31,880 --> 00:28:36,380 +how many events? Five events Okay, which is almost + +365 +00:28:36,380 --> 00:28:40,200 +the same events that we did So what do I want to + +366 +00:28:40,200 --> 00:28:43,300 +do in the abstract class? + +367 +00:28:46,140 --> 00:28:49,140 +These are almost the same, each one represents a + +368 +00:28:49,140 --> 00:28:52,800 +button in the media player So I went to the media + +369 +00:28:52,800 --> 00:28:57,620 +player, but what? In order for these methods to be + +370 +00:28:57,620 --> 00:28:59,400 +abstract, I had to put code in them + +371 +00:29:22,660 --> 00:29:25,080 +Ok fine, now when the media player starts working + +372 +00:29:25,080 --> 00:29:33,300 +I want to create a public media player when + +373 +00:29:33,300 --> 00:29:34,620 +it starts working, I want to go to the current + +374 +00:29:34,620 --> 00:29:37,600 +state and what will be the first state that it + +375 +00:29:37,600 --> 00:29:43,060 +will be in which is idle ok, and here I send it + +376 +00:29:43,060 --> 00:29:47,000 +this now what do we do in these, you don't do + +377 +00:29:47,000 --> 00:29:50,340 +anything all you have to do is go to the current + +378 +00:29:50,340 --> 00:29:55,140 +state and you repeat the event itself player + +379 +00:29:55,140 --> 00:30:05,100 +prepare and here also current state player I + +380 +00:30:05,100 --> 00:30:12,860 +prepare current state player start current state + +381 +00:30:12,860 --> 00:30:19,540 +player stop and here current state + +382 +00:30:22,340 --> 00:30:29,060 +Player is paused What does it mean? Why does it + +383 +00:30:29,060 --> 00:30:32,860 +use the same event? Because in the first case, it + +384 +00:30:32,860 --> 00:30:36,720 +is idle For example, if it is idle and you press + +385 +00:30:36,720 --> 00:30:38,320 +start, + +386 +00:30:39,880 --> 00:30:43,060 +it will execute the player start that is present + +387 +00:30:43,060 --> 00:30:46,900 +in the current state What is the current state? We + +388 +00:30:46,900 --> 00:30:50,940 +said idle and it is idle and it is idle. Press the + +389 +00:30:50,940 --> 00:30:53,740 +start buttonIs it okay if he is idle and I press + +390 +00:30:53,740 --> 00:30:57,620 +start? No, there is no file loaded yet, right or + +391 +00:30:57,620 --> 00:31:00,680 +not? So actually this calls the player start that + +392 +00:31:00,680 --> 00:31:03,240 +is present in idle Player start that is present in + +393 +00:31:03,240 --> 00:31:08,680 +idle, what will it do? Do nothing Press stop, he + +394 +00:31:08,680 --> 00:31:12,780 +is idle Also, what will it do? Do nothing Because + +395 +00:31:12,780 --> 00:31:16,280 +every player state currently what is present which + +396 +00:31:16,280 --> 00:31:21,200 +is idleUntil when will it affect only one event, + +397 +00:31:21,800 --> 00:31:25,840 +which is who? Prepare. So if you press on the + +398 +00:31:25,840 --> 00:31:28,280 +player prepare and he is idle, we saw that in + +399 +00:31:28,280 --> 00:31:34,000 +idle, what does prepare do? it loads the file and + +400 +00:31:34,000 --> 00:31:38,460 +it says it is ready it changed the media player + +401 +00:31:38,460 --> 00:31:41,500 +without it knowing it is the idea here when the + +402 +00:31:41,500 --> 00:31:44,980 +media player came, the user came and we pressed + +403 +00:31:44,980 --> 00:31:50,800 +prepare and it moved from idle to ready because it + +404 +00:31:50,800 --> 00:31:57,600 +is ready I pressed stop stop in ready doesn't do + +405 +00:31:57,600 --> 00:32:01,290 +anything If you press pause on it, it won't do + +406 +00:32:01,290 --> 00:32:02,910 +anything because according to the drawing, ready + +407 +00:32:02,910 --> 00:32:07,650 +only responds to start and unprepared Right or + +408 +00:32:07,650 --> 00:32:11,490 +wrong? So now every five current stars that you + +409 +00:32:11,490 --> 00:32:16,010 +see in green, they are all currently ready Ready + +410 +00:32:16,010 --> 00:32:19,330 +will not respond to start or unprepared + +411 +00:32:22,500 --> 00:32:25,800 +What will he do? He will start playing and the + +412 +00:32:25,800 --> 00:32:28,800 +state will change to the state of playing So + +413 +00:32:28,800 --> 00:32:31,520 +notice that the states between them are changing + +414 +00:32:31,520 --> 00:32:34,100 +the media player without the media player knowing + +415 +00:32:34,100 --> 00:32:37,660 +anything So if there is a change in the states, I + +416 +00:32:37,660 --> 00:32:40,560 +change in the states, I don't change anything in + +417 +00:32:40,560 --> 00:32:43,460 +the media player this current state changes + +418 +00:32:43,460 --> 00:32:46,700 +automatically who changes it? the states in the + +419 +00:32:46,700 --> 00:32:52,300 +strategy we used to make a method this method we + +420 +00:32:52,300 --> 00:32:55,180 +used to use from the client in the strategy but + +421 +00:32:55,180 --> 00:32:58,800 +who uses this method now? the states they execute + +422 +00:32:58,800 --> 00:33:02,600 +it ok? so now if we go to the main method we made + +423 +00:33:02,600 --> 00:33:05,100 +here for example main method we turn it on or + +424 +00:33:05,100 --> 00:33:09,340 +leave it in class this is the main method go and + +425 +00:33:09,340 --> 00:33:20,380 +make it media player and + +426 +00:33:20,380 --> 00:33:32,940 +now we tried mp.start player start mp player stop + +427 +00:33:32,940 --> 00:33:37,820 +let's see what happens mp.player prepare + +428 +00:33:40,880 --> 00:33:46,140 +mp dot player + +429 +00:33:46,140 --> 00:33:51,880 +start mp + +430 +00:33:51,880 --> 00:33:56,760 +dot pause + +431 +00:33:56,760 --> 00:34:00,440 +mp + +432 +00:34:00,440 --> 00:34:06,300 +dot player start ok + +433 +00:34:06,300 --> 00:34:09,420 +guys see what will happen when I execute this code + +434 +00:34:15,200 --> 00:34:32,220 +Ok, I'm going to output the code Wait + +435 +00:34:32,220 --> 00:34:36,620 +a minute + +436 +00:34:36,620 --> 00:34:41,540 +Ok + +437 +00:34:41,540 --> 00:34:43,640 +guys, first thing when I turned on the media + +438 +00:34:43,640 --> 00:34:46,490 +player and I clicked startwhat did I write here? + +439 +00:34:47,170 --> 00:34:51,130 +geographic because the initial state is idle, the + +440 +00:34:51,130 --> 00:34:53,230 +start and the idle will not work and the stop and + +441 +00:34:53,230 --> 00:34:56,130 +the idle will also not work when it is preparing, + +442 +00:34:56,510 --> 00:34:57,810 +it will respond, it happened in the case of + +443 +00:34:57,810 --> 00:35:01,370 +preparing and the idle itself moved to the ready + +444 +00:35:01,370 --> 00:35:05,590 +state because after ready, I did the start, the + +445 +00:35:05,590 --> 00:35:08,270 +start at ready makes it move to the plain state + +446 +00:35:09,280 --> 00:35:12,140 +Okay, this is what happened, start playing audio + +447 +00:35:12,140 --> 00:35:14,720 +and it became in playing mode, if it is playing, + +448 +00:35:14,860 --> 00:35:18,400 +it will press what? Pause, it wrote pause for me, + +449 +00:35:18,640 --> 00:35:21,600 +if it is pause, what did I do? Start, I go back + +450 +00:35:21,600 --> 00:35:26,280 +again to the playing mode, okay, so I actually + +451 +00:35:26,280 --> 00:35:28,480 +downloaded it from where? From idle to ready and + +452 +00:35:28,480 --> 00:35:30,380 +from ready to playing and from playing to pause + +453 +00:35:30,380 --> 00:35:36,950 +and from pause I returned it to playingOkay? So + +454 +00:35:36,950 --> 00:35:42,490 +each state only responds to the events that affect + +455 +00:35:42,490 --> 00:35:45,430 +them, okay? The idea that I came up with is that I + +456 +00:35:45,430 --> 00:35:47,230 +want to modify a certain state, and so I only go + +457 +00:35:47,230 --> 00:35:49,910 +to the classes of the states where I modify them. + +458 +00:35:50,150 --> 00:35:52,730 +The media player itself does not make any + +459 +00:35:52,730 --> 00:35:54,950 +modification in it. If I want to do this in one + +460 +00:35:54,950 --> 00:35:58,010 +class, the code will be very large and there will + +461 +00:35:58,010 --> 00:36:01,330 +be a large number of if statements and the + +462 +00:36:01,330 --> 00:36:03,170 +modification on it will be more difficult. + +463 +00:36:06,500 --> 00:36:13,380 +Ok, after applying this example, let's see the + +464 +00:36:13,380 --> 00:36:18,540 +state pattern diagram today. There is a slight + +465 +00:36:18,540 --> 00:36:21,320 +difference from what I did. Look with me. Did you + +466 +00:36:21,320 --> 00:36:24,990 +notice that when I worked?The first thing I did + +467 +00:36:24,990 --> 00:36:26,710 +was to create an abstract class that represents + +468 +00:36:26,710 --> 00:36:30,430 +the super class that every state will have an + +469 +00:36:30,430 --> 00:36:32,810 +extent to it. I didn't create an interface, I + +470 +00:36:32,810 --> 00:36:36,050 +created an abstract class. Why? Because the state + +471 +00:36:36,050 --> 00:36:38,070 +must be reached by the object that controls it, + +472 +00:36:38,150 --> 00:36:41,510 +which is the media player, for example. Okay? So I + +473 +00:36:41,510 --> 00:36:43,030 +created a constructor, and since I created a + +474 +00:36:43,030 --> 00:36:44,990 +constructor and there is an attribute in the + +475 +00:36:44,990 --> 00:36:47,070 +class, I can't call it an interface. I have to + +476 +00:36:47,070 --> 00:36:49,870 +call it an abstract class. He made a slight + +477 +00:36:49,870 --> 00:36:54,160 +change.I will tell you why they did that. The + +478 +00:36:54,160 --> 00:36:59,080 +solution is better. He made an interface in the + +479 +00:36:59,080 --> 00:37:04,420 +beginning and he named it state and he put events + +480 +00:37:04,420 --> 00:37:07,790 +in it. All the events in the chart, the stocks, + +481 +00:37:08,370 --> 00:37:10,430 +put the methods in them Notice that he didn't put + +482 +00:37:10,430 --> 00:37:12,210 +attributes or constructor in it because the + +483 +00:37:12,210 --> 00:37:14,570 +interface can't be put in it He put all the + +484 +00:37:14,570 --> 00:37:16,650 +existing events in it Here, of course, as an + +485 +00:37:16,650 --> 00:37:19,090 +example, he put do this, do that Which is like + +486 +00:37:19,090 --> 00:37:22,550 +player start, player paused, player unprepared, + +487 +00:37:22,590 --> 00:37:28,510 +and so on Now, from this, he made concrete states + +488 +00:37:28,510 --> 00:37:33,630 +and they made an implement for the interface Now + +489 +00:37:34,650 --> 00:37:38,010 +What did I do? I went to the context, who is this? + +490 +00:37:38,210 --> 00:37:40,470 +This is the object that I control, which is the + +491 +00:37:40,470 --> 00:37:44,590 +media player, okay? The difference between them is + +492 +00:37:44,590 --> 00:37:48,090 +that I did what? So that I don't have to put this + +493 +00:37:48,090 --> 00:37:51,370 +context in every subclass, okay? Where did he put + +494 +00:37:51,370 --> 00:37:55,160 +it?In the subclass, of course here he will have to + +495 +00:37:55,160 --> 00:38:01,120 +repeat the code When I made a subclass, I put this + +496 +00:38:01,120 --> 00:38:05,320 +attribute in the superclass, so I don't have to + +497 +00:38:05,320 --> 00:38:07,800 +repeat it here No, what did he do? The media + +498 +00:38:07,800 --> 00:38:10,120 +player or context started to put it in the + +499 +00:38:10,120 --> 00:38:12,760 +subclass and here he creates a constructorOkay? + +500 +00:38:13,740 --> 00:38:15,240 +And then, of course, as long as he did the + +501 +00:38:15,240 --> 00:38:16,780 +implementation, I mean the difference, do you know + +502 +00:38:16,780 --> 00:38:18,060 +what the difference is? The constructor, instead + +503 +00:38:18,060 --> 00:38:22,580 +of being above, he wrote in each subclass, that + +504 +00:38:22,580 --> 00:38:25,880 +is, he has a repetition of code, okay? Five times, + +505 +00:38:26,340 --> 00:38:29,690 +okay? For example, if I have five statesSo why did + +506 +00:38:29,690 --> 00:38:30,870 +I do this? Why didn't I do anything like + +507 +00:38:30,870 --> 00:38:33,930 +constructor? I will tell you why in a while. Then, + +508 +00:38:34,070 --> 00:38:35,370 +of course, since I made an implement for the + +509 +00:38:35,370 --> 00:38:37,950 +interface, I will make an implement for whom? For + +510 +00:38:37,950 --> 00:38:40,150 +the events, the methods that represent the events. + +511 +00:38:40,650 --> 00:38:44,650 +And then I go, based on the state, the events that + +512 +00:38:44,650 --> 00:38:46,290 +respond to it. I make them code, and those that + +513 +00:38:46,290 --> 00:38:48,650 +don't respond to it, I make them do nothing. Okay? + +514 +00:38:49,130 --> 00:38:51,710 +There is no difference between what I did. Both + +515 +00:38:51,710 --> 00:38:55,810 +are correct solutions. Okay? Then, who is this? + +516 +00:38:56,130 --> 00:39:00,350 +The media player. In the media player, it has a + +517 +00:39:00,350 --> 00:39:04,050 +current state, the state it is in right now. This + +518 +00:39:04,050 --> 00:39:09,630 +is an attribute of the state type. And there is a + +519 +00:39:09,630 --> 00:39:14,450 +method which is set current state, which is change + +520 +00:39:14,450 --> 00:39:19,310 +state. And this is a constructor to give it + +521 +00:39:19,310 --> 00:39:23,670 +initials. I made an empty constructor and left the + +522 +00:39:23,670 --> 00:39:29,590 +initial state idle.I said that there is no + +523 +00:39:29,590 --> 00:39:31,690 +argument constructor. He said that there is no + +524 +00:39:31,690 --> 00:39:33,850 +argument constructor. He said that there is no + +525 +00:39:33,850 --> 00:39:34,090 +argument constructor. He said that there is no + +526 +00:39:34,090 --> 00:39:34,090 +argument constructor. He said that there is no + +527 +00:39:34,090 --> 00:39:34,090 +argument constructor. He said that there is no + +528 +00:39:34,090 --> 00:39:34,090 +argument constructor. He said that there is no + +529 +00:39:34,090 --> 00:39:34,170 +argument constructor. He said that there is no + +530 +00:39:34,170 --> 00:39:34,170 +argument constructor. He said that there is no + +531 +00:39:34,170 --> 00:39:34,170 +argument constructor. He said that there is no + +532 +00:39:34,170 --> 00:39:34,590 +argument constructor. He said that there is no + +533 +00:39:34,590 --> 00:39:34,590 +argument constructor. He said that there is no + +534 +00:39:34,590 --> 00:39:34,590 +argument constructor. He said that there is no + +535 +00:39:34,590 --> 00:39:34,670 +argument constructor. He said that there is no + +536 +00:39:34,670 --> 00:39:34,690 +argument constructor. He said that there is no + +537 +00:39:34,690 --> 00:39:34,690 +argument constructor. He said that there is no + +538 +00:39:34,690 --> 00:39:34,690 +argument constructor. He said that there is no + +539 +00:39:34,690 --> 00:39:34,690 +argument constructor. He said that there is no + +540 +00:39:34,690 --> 00:39:34,690 +argument constructor. He said that there is no + +541 +00:39:34,690 --> 00:39:34,690 +argument constructor. He said that there is no + +542 +00:39:34,690 --> 00:39:35,030 +argument constructor. He said that there is no + +543 +00:39:35,030 --> 00:39:36,530 +argument constructor. He said that there is no + +544 +00:39:36,530 --> 00:39:40,290 +argument constructor. He said that there these + +545 +00:39:40,290 --> 00:39:44,050 +mean do this and do that which are the same as + +546 +00:39:44,050 --> 00:39:46,570 +these events considering that these have buttons + +547 +00:39:46,570 --> 00:39:50,290 +as I did here for example in the media player I + +548 +00:39:50,290 --> 00:39:52,830 +have five buttons which represent the same as the + +549 +00:39:52,830 --> 00:39:57,710 +five events so what can he do? I returned that + +550 +00:39:57,710 --> 00:40:00,270 +context uses state, what does this arrow mean? + +551 +00:40:00,530 --> 00:40:05,670 +that context uses state and what else can he do? + +552 +00:40:05,890 --> 00:40:11,000 +context makes him implementto the state. Why? So + +553 +00:40:11,000 --> 00:40:15,000 +that instead of writing them by hand, I can make + +554 +00:40:15,000 --> 00:40:16,560 +them implement themselves. They are the events, + +555 +00:40:16,620 --> 00:40:19,220 +they are the buttons. Of course, I don't prefer + +556 +00:40:19,220 --> 00:40:21,840 +this way because the events here don't have to + +557 +00:40:21,840 --> 00:40:25,260 +turn into buttons. Right or wrong? There are + +558 +00:40:25,260 --> 00:40:27,360 +internal events. For example, the system itself + +559 +00:40:27,360 --> 00:40:29,620 +will work, like the vending machine for example. + +560 +00:40:30,140 --> 00:40:32,180 +Didn't I have an event in the last lecture called + +561 +00:40:32,180 --> 00:40:35,040 +item ready? Which is when does the item become + +562 +00:40:35,040 --> 00:40:37,080 +ready? I don't press any button to make it ready. + +563 +00:40:37,740 --> 00:40:43,000 +It is the machine itself that sends the event + +564 +00:40:43,000 --> 00:40:46,120 +after it is ready. Right or not? So here in the + +565 +00:40:46,120 --> 00:40:50,200 +context, I only put the eventsFor the user who + +566 +00:40:50,200 --> 00:40:52,440 +controls them, for example, who turns buttons into + +567 +00:40:52,440 --> 00:40:56,040 +controls Anyway, + +568 +00:40:58,820 --> 00:41:00,780 +this solution or the solution I made, the + +569 +00:41:00,780 --> 00:41:03,020 +difference between them is that I put the context + +570 +00:41:03,020 --> 00:41:06,000 +as an abstract class here so that it does not + +571 +00:41:06,000 --> 00:41:08,800 +repeat its writing down here He made this + +572 +00:41:08,800 --> 00:41:12,040 +interface and put it down here He made an + +573 +00:41:12,040 --> 00:41:13,200 +interface for what? Because I tell you that I can + +574 +00:41:13,200 --> 00:41:15,100 +make an implement for the interface from the + +575 +00:41:15,100 --> 00:41:17,240 +context to make an implement for whom? For these + +576 +00:41:17,240 --> 00:41:20,390 +methodsBut I also don't prefer it because not all + +577 +00:41:20,390 --> 00:41:23,970 +the events here must be written in the context, + +578 +00:41:24,010 --> 00:41:24,730 +okay? + +579 +00:41:27,590 --> 00:41:30,990 +Okay, why did he make this indication? This means + +580 +00:41:30,990 --> 00:41:33,610 +that the state is created outside and is sent + +581 +00:41:33,610 --> 00:41:36,410 +where? To this Of course, this is not a condition + +582 +00:41:37,520 --> 00:41:41,460 +For example, I didn't send him the initial state + +583 +00:41:41,460 --> 00:41:43,520 +in the constructor here in this example In our + +584 +00:41:43,520 --> 00:41:45,520 +example in the media player, I didn't send him the + +585 +00:41:45,520 --> 00:41:48,220 +initial state, right? I left him from inside the + +586 +00:41:48,220 --> 00:41:52,280 +empty constructor to do what? EitherSo this is not + +587 +00:41:52,280 --> 00:41:54,780 +a rule, it doesn't have to be an aggregation, + +588 +00:41:54,860 --> 00:41:58,460 +okay? Okay, I know what the initial state is, why + +589 +00:41:58,460 --> 00:42:01,260 +did I send it from outside, okay? This depends on + +590 +00:42:01,260 --> 00:42:05,120 +when I want the system to start from any existing + +591 +00:42:05,120 --> 00:42:07,620 +state For example, if I design a computer player, + +592 +00:42:08,060 --> 00:42:11,540 +a player in a game, I want him to be an attacker + +593 +00:42:11,540 --> 00:42:14,030 +as soon as it startsI want the player to be + +594 +00:42:14,030 --> 00:42:16,190 +defensive when he plays the game. So the initial + +595 +00:42:16,190 --> 00:42:19,930 +state might be different in this case. But in the + +596 +00:42:19,930 --> 00:42:21,590 +media player, as soon as he plays the game, he + +597 +00:42:21,590 --> 00:42:25,370 +wants to be idle. So I made him idle. He made it + +598 +00:42:25,370 --> 00:42:28,330 +different so that he can determine his initial + +599 +00:42:28,330 --> 00:42:33,350 +state. Okay? Okay. The last thing I have here is + +600 +00:42:33,350 --> 00:42:37,980 +mean.The client that wants to run the class that + +601 +00:42:37,980 --> 00:42:40,820 +has main in it If I am in the class main, of + +602 +00:42:40,820 --> 00:42:43,720 +course I created a media player Let's compare it + +603 +00:42:43,720 --> 00:42:46,260 +with the example we did, I didn't create an object + +604 +00:42:46,260 --> 00:42:48,280 +from media player, he created an object from + +605 +00:42:48,280 --> 00:42:52,720 +context And what is different from me is that + +606 +00:42:52,720 --> 00:42:56,330 +before creating context, I created main I created + +607 +00:42:56,330 --> 00:42:59,130 +the initial state and sent it to him I did not + +608 +00:42:59,130 --> 00:43:01,690 +create the initial state, I left it in the + +609 +00:43:01,690 --> 00:43:04,030 +constructor because I know that the media player + +610 +00:43:04,030 --> 00:43:08,810 +will always start in an idle state Here, no, I am + +611 +00:43:08,810 --> 00:43:16,110 +telling you Then I created events that are calls I + +612 +00:43:16,110 --> 00:43:18,470 +told him that there is a method called do this and + +613 +00:43:18,470 --> 00:43:20,370 +from inside I call the media player and tell him + +614 +00:43:20,370 --> 00:43:26,170 +to do thisOf course this do this, what should be + +615 +00:43:26,170 --> 00:43:31,150 +the code that should be in it? Context dot, it + +616 +00:43:31,150 --> 00:43:33,950 +should go to the state and say do this, ok? + +617 +00:43:38,590 --> 00:43:41,950 +Ok, here I want to show you something, how the + +618 +00:43:41,950 --> 00:43:46,570 +code that is in each method looks likeOkay? Did + +619 +00:43:46,570 --> 00:43:50,470 +you notice that when I said do that, if the state + +620 +00:43:50,470 --> 00:43:53,830 +responds to do that, it transfers the state to + +621 +00:43:53,830 --> 00:43:56,390 +another state So the state is going to make a + +622 +00:43:56,390 --> 00:44:00,150 +state equal to the other state and then it goes to + +623 +00:44:00,150 --> 00:44:02,610 +the context and says change state and gives it to + +624 +00:44:02,610 --> 00:44:05,450 +the other state This is new Did you notice that if + +625 +00:44:05,450 --> 00:44:09,050 +I was in an ideal situation, if I pressed on + +626 +00:44:09,050 --> 00:44:14,010 +prepareFrom inside the method prepared, I create a + +627 +00:44:14,010 --> 00:44:16,930 +new state for ready and I go to the media player + +628 +00:44:16,930 --> 00:44:19,590 +and tell it to set current state Which is where? + +629 +00:44:19,790 --> 00:44:24,410 +This code down here, these two lines represent in + +630 +00:44:24,410 --> 00:44:29,630 +our program any method, + +631 +00:44:30,150 --> 00:44:30,670 +this is idle + +632 +00:44:34,670 --> 00:44:36,810 +For example, here I am a player prepared, I say + +633 +00:44:36,810 --> 00:44:40,270 +preparing and then I don't go and say set current + +634 +00:44:40,270 --> 00:44:45,530 +state in you ready This line is the same as these + +635 +00:44:45,530 --> 00:44:53,970 +two lines Same as + +636 +00:44:53,970 --> 00:44:57,110 +these two lines But I made them line by line, I + +637 +00:44:57,110 --> 00:44:59,670 +create another state that will move to it and then + +638 +00:44:59,670 --> 00:45:08,120 +I will say change stateSo there is a change, the + +639 +00:45:08,120 --> 00:45:10,520 +main change is that here the context is where I + +640 +00:45:10,520 --> 00:45:14,700 +put it, instead of the interface I made it + +641 +00:45:14,700 --> 00:45:17,800 +abstract class, the other parts are almost the + +642 +00:45:17,800 --> 00:45:18,040 +same + +643 +00:45:22,730 --> 00:45:24,770 +Advantages of the state pattern, with the state + +644 +00:45:24,770 --> 00:45:28,850 +pattern the benefits of implementing polymorphic + +645 +00:45:28,850 --> 00:45:31,090 +behavior are evident, that is, we have + +646 +00:45:31,090 --> 00:45:33,970 +polymorphism more than state, they all follow the + +647 +00:45:33,970 --> 00:45:37,510 +same interface, the media player or context deals + +648 +00:45:37,510 --> 00:45:40,390 +with a certain type of state and I can change it + +649 +00:45:40,390 --> 00:45:43,650 +without changing any code in the media player or + +650 +00:45:43,650 --> 00:45:48,240 +context And it is also easier to add states to + +651 +00:45:48,240 --> 00:45:50,960 +support additional behavior All I need to do to + +652 +00:45:50,960 --> 00:45:54,700 +add a new state is to make it respond to events + +653 +00:45:54,700 --> 00:45:57,200 +and adjust how the state moves from another state + +654 +00:45:57,200 --> 00:46:00,510 +without modifying the class of the media playerin + +655 +00:46:00,510 --> 00:46:02,830 +the state design pattern is an object behavior is + +656 +00:46:02,830 --> 00:46:07,530 +the result of the function of its state the object + +657 +00:46:07,530 --> 00:46:10,870 +behavior is the result of the function of its + +658 +00:46:10,870 --> 00:46:21,710 +state and + +659 +00:46:21,710 --> 00:46:26,070 +the behavior gets changed at runtime depending on + +660 +00:46:26,070 --> 00:46:29,760 +the stateThis removes the dependency on if-else + +661 +00:46:29,760 --> 00:46:40,540 +statement. For example, + +662 +00:46:40,740 --> 00:46:44,720 +in the TV remote scenario, we could also have + +663 +00:46:44,720 --> 00:46:48,140 +implemented that behavior by simply writing one + +664 +00:46:48,140 --> 00:46:50,700 +class and method that will ask for a parameter and + +665 +00:46:50,700 --> 00:46:55,390 +perform action For example, we can make it a TV + +666 +00:46:55,390 --> 00:46:57,850 +remote control, this is also a machine that moves + +667 +00:46:57,850 --> 00:47:00,310 +from one state to another, regardless of the fact + +668 +00:47:00,310 --> 00:47:02,910 +that we are still hitting the state pattern The + +669 +00:47:02,910 --> 00:47:06,450 +state design pattern also improves cohesion, since + +670 +00:47:06,450 --> 00:47:10,070 +state-specific behaviors are aggregated into the + +671 +00:47:10,070 --> 00:47:13,320 +concrete stateClasses which are placed in one + +672 +00:47:13,320 --> 00:47:18,300 +location in the code, which means that all classes + +673 +00:47:18,300 --> 00:47:19,260 +that have a relationship with each other and + +674 +00:47:19,260 --> 00:47:24,620 +perform the same function in one class or in one + +675 +00:47:24,620 --> 00:47:27,940 +package So all these states control the behavior, + +676 +00:47:28,100 --> 00:47:30,860 +so all these classes are usually in one package, + +677 +00:47:31,620 --> 00:47:33,320 +so the code that has a relationship with each + +678 +00:47:33,320 --> 00:47:36,900 +other is present next to each otherThe last point + +679 +00:47:36,900 --> 00:47:39,320 +is the difference between strategy and state, and + +680 +00:47:39,320 --> 00:47:42,920 +this is what I mean by state can be considered as + +681 +00:47:42,920 --> 00:47:44,340 +an extension of strategy. + +682 +00:47:48,020 --> 00:47:52,360 +Both patterns are based on composition. Both + +683 +00:47:52,360 --> 00:47:56,720 +depend on the context that sent them the strategy + +684 +00:47:56,720 --> 00:47:59,240 +or sent them the state. In the days of strategy, + +685 +00:47:59,480 --> 00:48:03,020 +the idea was that the object works on more than + +686 +00:48:03,020 --> 00:48:05,610 +one algorithm. I need to swap algorithms between + +687 +00:48:05,610 --> 00:48:08,110 +them. So we used to make algorithms in independent + +688 +00:48:08,110 --> 00:48:10,090 +objects and send them one by one, change them, say + +689 +00:48:10,090 --> 00:48:12,510 +set current strategy and change it during the + +690 +00:48:12,510 --> 00:48:15,770 +runtime. Okay? And this is the same idea that I + +691 +00:48:15,770 --> 00:48:17,610 +deal with state, each state has a different state + +692 +00:48:17,610 --> 00:48:20,030 +and different code and I change it through set + +693 +00:48:20,030 --> 00:48:23,030 +current state. So this is composition or + +694 +00:48:23,030 --> 00:48:26,350 +aggregation. As if he meant to say that it depends + +695 +00:48:26,350 --> 00:48:28,770 +on dependency injection. I create the state + +696 +00:48:28,770 --> 00:48:32,200 +outside and send it.They change the behavior of + +697 +00:48:32,200 --> 00:48:34,600 +the context by delegating some work to helper + +698 +00:48:34,600 --> 00:48:38,720 +objects.Also, they change the behavior of the + +699 +00:48:38,720 --> 00:48:45,380 +object by delegating other helper classes. Who are + +700 +00:48:45,380 --> 00:48:47,560 +the helper classes? They are the strategy objects + +701 +00:48:47,560 --> 00:48:49,000 +or state objects. + +702 +00:48:52,370 --> 00:48:55,270 +Strategy makes these objects completely + +703 +00:48:55,270 --> 00:48:58,290 +independent and unaware of each other. This is the + +704 +00:48:58,290 --> 00:49:01,290 +main difference. In strategy, I design algorithms + +705 +00:49:01,290 --> 00:49:04,550 +for each object, but there is no relationship + +706 +00:49:04,550 --> 00:49:06,910 +between them. However, state doesn't restrict + +707 +00:49:06,910 --> 00:49:11,130 +dependencies. In state pattern, the state itself + +708 +00:49:11,130 --> 00:49:15,470 +when it works, it connects to another state. Right + +709 +00:49:15,470 --> 00:49:19,450 +or wrong? So there are dependencies between states + +710 +00:49:19,450 --> 00:49:22,230 +in the state pattern. It doesn't restrict. What + +711 +00:49:22,230 --> 00:49:25,130 +does restrict? What restricts the dependence + +712 +00:49:25,130 --> 00:49:28,170 +between states? Letting them alter the state of + +713 +00:49:28,170 --> 00:49:34,530 +the context at will.I create another state and + +714 +00:49:34,530 --> 00:49:38,530 +each state changes the state of the context and + +715 +00:49:38,530 --> 00:49:41,050 +controls it. So there are dependencies between + +716 +00:49:41,050 --> 00:49:44,530 +states. Unlike strategies, algorithms or + +717 +00:49:44,530 --> 00:49:47,670 +strategies have no relation between them and + +718 +00:49:47,670 --> 00:49:51,130 +that's how we solve the state better every week. + +719 +00:49:51,450 --> 00:49:51,850 +God bless you all. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DrgwxPQBKK4.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DrgwxPQBKK4.srt new file mode 100644 index 0000000000000000000000000000000000000000..a403641447ab720ea6d882eab00f502b1298fb01 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DrgwxPQBKK4.srt @@ -0,0 +1,2957 @@ + +1 +00:00:05,470 --> 00:00:10,150 +بسم الله الرحمن الرحيم، يعطيكم العفو شباب، بنرحب + +2 +00:00:10,150 --> 00:00:13,830 +فيكم في المحاضرة التانية من مساق تصميم عمارة + +3 +00:00:13,830 --> 00:00:16,890 +البرمجية، في المحاضرة الماضية عطينا بس تمهيد و + +4 +00:00:16,890 --> 00:00:22,770 +syllabus بتاع المساق I would like to remind those + +5 +00:00:22,770 --> 00:00:25,590 +who did not attend the previous lecture that this + +6 +00:00:25,590 --> 00:00:30,650 +course focuses on the concept of software design + +7 +00:00:30,650 --> 00:00:36,690 +patterns or software design patterns. In short, + +8 +00:00:36,850 --> 00:00:40,210 +software design patterns are solutions to common + +9 +00:00:40,210 --> 00:00:43,150 +software problems. These solutions to software + +10 +00:00:43,150 --> 00:00:45,610 +problems are provided by former professional + +11 +00:00:45,610 --> 00:00:49,530 +programmers; they were working on big projects and + +12 +00:00:49,530 --> 00:00:52,590 +they advised us to apply these solutions so that + +13 +00:00:52,590 --> 00:00:56,610 +you can make high quality programming units which + +14 +00:00:56,610 --> 00:01:00,630 +means that if you want to add something to your + +15 +00:01:00,630 --> 00:01:04,750 +units, you can modify it and it will be easily + +16 +00:01:04,750 --> 00:01:07,130 +done. We know that if you studied software + +17 +00:01:07,130 --> 00:01:09,660 +engineering, the concept of Agile and you know + +18 +00:01:09,660 --> 00:01:13,520 +that Agile requires that the requirements of the + +19 +00:01:13,520 --> 00:01:16,880 +application change constantly because it is not + +20 +00:01:16,880 --> 00:01:20,060 +yet clear or specific to you the requirements so + +21 +00:01:20,060 --> 00:01:21,600 +this means that you need to change your + +22 +00:01:21,600 --> 00:01:25,020 +application constantly; sometimes the client asks + +23 +00:01:25,020 --> 00:01:26,980 +for a small modification, but this modification + +24 +00:01:26,980 --> 00:01:31,680 +requires you to bring the whole program, but if you + +25 +00:01:31,680 --> 00:01:33,660 +designed the program correctly as we will see + +26 +00:01:33,660 --> 00:01:37,260 +through the Design Patterns application. If someone + +27 +00:01:37,260 --> 00:01:40,060 +asks you to modify a program, you can do it + +28 +00:01:40,060 --> 00:01:46,700 +easily. Not every code is good code. There is a + +29 +00:01:46,700 --> 00:01:48,280 +big difference between good code and bad code. + +30 +00:01:51,180 --> 00:01:53,100 +Sometimes the code is good, sometimes it is bad. + +31 +00:01:53,600 --> 00:01:56,220 +But if someone asks you to change something, you + +32 +00:01:56,220 --> 00:01:59,340 +can stay with it for weeks. This is a very + +33 +00:01:59,340 --> 00:02:02,160 +negative point. The importance of this topic is + +34 +00:02:02,160 --> 00:02:06,300 +when teams work together. Okay, teams together; I + +35 +00:02:06,300 --> 00:02:08,340 +want to write a part of the program, and others + +36 +00:02:08,340 --> 00:02:11,560 +want to link it to his own part. Okay, he does not + +37 +00:02:11,560 --> 00:02:14,580 +have to come and understand what I did, and how to + +38 +00:02:14,580 --> 00:02:16,940 +link my work to his work. Okay, he wants to take + +39 +00:02:16,940 --> 00:02:20,080 +his code and use it easily and link it easily + +40 +00:02:20,080 --> 00:02:21,600 +without going into complications, and understand + +41 +00:02:21,600 --> 00:02:26,100 +details. Okay, I can make a correct code, but he + +42 +00:02:26,100 --> 00:02:30,300 +comes, and uses it, and finds a lot of problems. So + +43 +00:02:30,300 --> 00:02:34,320 +this idea of design patterns, and I told you in + +44 +00:02:34,320 --> 00:02:36,060 +the previous lecture that if you go and ask any + +45 +00:02:36,060 --> 00:02:39,620 +person working in a software company, they will + +46 +00:02:39,620 --> 00:02:41,800 +tell you that all work depends on design patterns + +47 +00:02:41,800 --> 00:02:43,900 +and understanding them correctly. + +48 +00:02:45,720 --> 00:02:50,840 +So this subject mainly focuses on applying design + +49 +00:02:50,840 --> 00:02:55,660 +patterns and how to design code better. In the + +50 +00:02:55,660 --> 00:02:57,440 +previous lecture, I said that these design + +51 +00:02:57,440 --> 00:03:02,000 +patterns are based on the principles of object- + +52 +00:03:02,000 --> 00:03:04,520 +oriented programming. That is, you need to have a + +53 +00:03:04,520 --> 00:03:07,460 +good understanding of OOP in order to be able to + +54 +00:03:07,460 --> 00:03:09,820 +follow the design patterns. If you don't have a + +55 +00:03:09,820 --> 00:03:11,360 +good understanding of OOP, you will be defeated in + +56 +00:03:11,360 --> 00:03:14,260 +this subject. In order to reach the goal of the + +57 +00:03:14,260 --> 00:03:18,480 +previous lecture, you need to have at least one + +58 +00:03:18,480 --> 00:03:22,820 +program and two programs. Those who didn't take + +59 +00:03:22,820 --> 00:03:25,340 +these two programs are not qualified to have one + +60 +00:03:25,340 --> 00:03:28,440 +formula. You can't say, I walk and study this with + +61 +00:03:28,440 --> 00:03:34,380 +that. No, you can't. The first week of this week + +62 +00:03:34,380 --> 00:03:36,720 +and the next week, we talked in the previous + +63 +00:03:36,720 --> 00:03:38,740 +lecture about what we are going to feed is a + +64 +00:03:38,740 --> 00:03:41,440 +review of the concept of object-oriented. I don't + +65 +00:03:41,440 --> 00:03:43,040 +consider it a review; I consider it a part of the + +66 +00:03:43,040 --> 00:03:46,100 +matter. These two weeks, if you understand them + +67 +00:03:46,100 --> 00:03:49,480 +well, everything else will be easy, everything + +68 +00:03:49,480 --> 00:03:53,280 +else will be easy, okay? So focus with me to + +69 +00:03:53,280 --> 00:03:54,960 +understand and review the concepts of object + +70 +00:03:54,960 --> 00:03:57,480 +-oriented programming, and the lecture will be + +71 +00:03:57,480 --> 00:04:00,700 +filmed, and you can review the examples that I + +72 +00:04:00,700 --> 00:04:00,960 +will present. + +73 +00:04:03,770 --> 00:04:07,010 +Okay guys, now we will review the concepts of + +74 +00:04:07,010 --> 00:04:09,110 +object-oriented programming and also the UML + +75 +00:04:09,110 --> 00:04:13,010 +diagrams that you also studied, but I will review + +76 +00:04:13,010 --> 00:04:14,270 +them because they are important in understanding + +77 +00:04:14,270 --> 00:04:21,350 +design patterns. Okay, to explain or review the + +78 +00:04:21,350 --> 00:04:22,950 +concept of object-oriented programming, we will + +79 +00:04:22,950 --> 00:04:26,190 +review it through an example, okay? I will propose + +80 +00:04:26,190 --> 00:04:29,930 +a specific example. I will write the code; I will + +81 +00:04:29,930 --> 00:04:32,930 +modify it, and through this example, we will + +82 +00:04:32,930 --> 00:04:35,270 +return to the concepts of object-oriented + +83 +00:04:35,270 --> 00:04:40,690 +programming. Ok guys, we agreed before that when + +84 +00:04:40,690 --> 00:04:42,870 +you come to do any program, the first thing you + +85 +00:04:42,870 --> 00:04:46,330 +think about is what are the things or entities + +86 +00:04:46,330 --> 00:04:49,220 +present in this program. For example, you want to + +87 +00:04:49,220 --> 00:04:50,900 +make a program for acceptance and registration, + +88 +00:04:51,140 --> 00:04:53,620 +for university students, and so on. You come, and + +89 +00:04:53,620 --> 00:04:55,220 +think and say that the things in the application + +90 +00:04:55,220 --> 00:04:58,440 +are the student, the teacher, the teacher, right + +91 +00:04:58,440 --> 00:05:01,440 +or not? And each of these three has many + +92 +00:05:01,440 --> 00:05:02,480 +attributes. + +93 +00:05:04,660 --> 00:05:07,340 +So since each of these things has many attributes, + +94 +00:05:07,500 --> 00:05:11,380 +you collect these attributes and make a class. So + +95 +00:05:11,380 --> 00:05:13,940 +that in the end you see all the student, all his + +96 +00:05:13,940 --> 00:05:17,300 +information, and details as one thing. We explained + +97 +00:05:17,300 --> 00:05:18,720 +to you how programming is one thing, right or not? + +98 +00:05:19,680 --> 00:05:22,040 +So these entities in the program represent + +99 +00:05:22,040 --> 00:05:24,400 +everything in the entity in a class. You make a + +100 +00:05:24,400 --> 00:05:27,360 +marketing program in products; the product itself + +101 +00:05:27,360 --> 00:05:31,200 +is a class. Because the product has a lot of data. + +102 +00:05:31,400 --> 00:05:33,900 +Product name, number, price, expiration date, all + +103 +00:05:33,900 --> 00:05:37,490 +this stuff. It makes a news program. The news + +104 +00:05:37,490 --> 00:05:40,630 +itself is an entity. Because it has a title, + +105 +00:05:41,030 --> 00:05:43,710 +details, approved photos, who is responsible for + +106 +00:05:43,710 --> 00:05:45,290 +the news, what is the history of adding the news, + +107 +00:05:46,350 --> 00:05:48,750 +what is the classification of the news. For + +108 +00:05:48,750 --> 00:05:54,050 +example, if we make a program for employees, Human + +109 +00:05:54,050 --> 00:05:56,730 +Resources, it stores the data of employees, and + +110 +00:05:56,730 --> 00:06:00,000 +others. So when you think about it, since I'm + +111 +00:06:00,000 --> 00:06:01,640 +dealing with employees, the employee has multiple + +112 +00:06:01,640 --> 00:06:04,880 +data. The name of the employee, his number, his + +113 +00:06:04,880 --> 00:06:08,940 +job title, and his salary. So you consider the + +114 +00:06:08,940 --> 00:06:12,280 +employee an entity, so you make him a class to + +115 +00:06:12,280 --> 00:06:15,080 +collect the attributes of the employee. So we come + +116 +00:06:15,080 --> 00:06:18,580 +here, and + +117 +00:06:18,580 --> 00:06:19,860 +make a class that represents + +118 +00:06:24,650 --> 00:06:28,310 +I named it employee, on the basis, here I want to + +119 +00:06:28,310 --> 00:06:31,370 +put the attributes of the employee, which is for + +120 +00:06:31,370 --> 00:06:36,910 +example, string name, id, job title, for example, all + +121 +00:06:36,910 --> 00:06:41,230 +these are the type of string. I have float, basic + +122 +00:06:41,230 --> 00:06:48,950 +salary. I have, for example, Boolean has insurance + +123 +00:06:48,950 --> 00:06:52,470 +has health insurance or not, Boolean, is married, + +124 +00:06:57,410 --> 00:07:08,270 +Int number of children. These are + +125 +00:07:08,270 --> 00:07:12,070 +the attributes specific to the employee, and we + +126 +00:07:12,070 --> 00:07:14,790 +want to encapsulate these attributes; we want to + +127 +00:07:14,790 --> 00:07:18,310 +make them setters, and getters, so we come here, and + +128 +00:07:18,310 --> 00:07:21,110 +tell Netbeans to make them encapsulate fields. + +129 +00:07:24,870 --> 00:07:27,370 +Automatic, will make them all private, and will make + +130 +00:07:27,370 --> 00:07:31,190 +them all setters, and getters. This is the class + +131 +00:07:31,190 --> 00:07:36,910 +that represents the employee. If I go to main, and + +132 +00:07:36,910 --> 00:07:39,070 +I can create an object from employee, + +133 +00:07:45,460 --> 00:07:49,100 +this is E1. Through setters, and getters, I can make + +134 +00:07:49,100 --> 00:07:53,020 +a set for whom? for the attributes of the employee. + +135 +00:07:53,020 --> 00:08:00,500 +E1.setid, id is string + +136 +00:08:14,690 --> 00:08:21,170 +And so on, okay? These are data that we created an + +137 +00:08:21,170 --> 00:08:23,330 +object for the employee, and gave him some data, + +138 +00:08:23,510 --> 00:08:28,790 +some of the attributes in it. Now + +139 +00:08:31,110 --> 00:08:33,450 +you can create an object employee without passing + +140 +00:08:33,450 --> 00:08:35,550 +any data to him, right or wrong? Nobody forces you + +141 +00:08:35,550 --> 00:08:39,350 +to study the setter methods for those who want; we + +142 +00:08:39,350 --> 00:08:42,490 +restrict that no, in order for someone to create + +143 +00:08:42,490 --> 00:08:45,310 +or open a file for an employee, he must at least + +144 +00:08:45,310 --> 00:08:49,490 +pass the name, and the ID, at least the rest can do + +145 +00:08:49,490 --> 00:08:54,190 +it later. So now, we restrict this thing by making a + +146 +00:08:54,190 --> 00:08:57,070 +constructor. So now we come to the employee; the + +147 +00:08:57,070 --> 00:09:00,210 +employee has a constructor. Yes, there is a + +148 +00:09:00,210 --> 00:09:02,390 +constructor, which is the default constructor which + +149 +00:09:02,390 --> 00:09:05,630 +is the empty constructor, okay? So we come to this + +150 +00:09:05,630 --> 00:09:09,270 +class, and we want to create a constructor with the + +151 +00:09:09,270 --> 00:09:12,150 +same name as the class, and I want to specify two + +152 +00:09:12,150 --> 00:09:18,110 +attributes which are the name and + +153 +00:09:18,110 --> 00:09:21,510 +the id, and here of course I say this.name + +154 +00:09:29,680 --> 00:09:32,000 +That's why I said that anyone who wants to create + +155 +00:09:32,000 --> 00:09:35,100 +an object with an employee must pass at least the + +156 +00:09:35,100 --> 00:09:39,220 +name, and the id. So that I don't have an error in + +157 +00:09:39,220 --> 00:09:45,700 +the main method. No, of course, why wasn't there a + +158 +00:09:45,700 --> 00:09:46,640 +constructor in the beginning and it was accepted? + +159 +00:09:47,320 --> 00:09:50,760 +Because we said that when you create a constructor + +160 +00:09:50,760 --> 00:09:53,200 +in the class, you automatically build the + +161 +00:09:53,200 --> 00:09:57,050 +constructor. The default constructor has been + +162 +00:09:57,050 --> 00:10:00,450 +created. He will say, I want it. We want to make + +163 +00:10:00,450 --> 00:10:05,050 +the programmer have two options. He can create an + +164 +00:10:05,050 --> 00:10:08,570 +empty employee, and then fill it. Or he can create + +165 +00:10:08,570 --> 00:10:11,210 +an employee, and give it a name and ID. In this + +166 +00:10:11,210 --> 00:10:14,710 +case, you need to write the two constructors. You + +167 +00:10:14,710 --> 00:10:19,770 +can say public employee. + +168 +00:10:19,790 --> 00:10:22,330 +What is this? This is an empty constructor. Now I + +169 +00:10:22,330 --> 00:10:25,900 +have two constructors; anyone can use it, + +170 +00:10:25,920 --> 00:10:30,800 +depending on the parameters you pass here for + +171 +00:10:30,800 --> 00:10:34,920 +example, it is silent, it considers that you want + +172 +00:10:34,920 --> 00:10:37,680 +an empty constructor, but as I said, if you wrote a + +173 +00:10:37,680 --> 00:10:40,340 +constructor, the default constructor is gone, + +174 +00:10:40,580 --> 00:10:45,820 +consider it is not present. Let's remove the + +175 +00:10:45,820 --> 00:10:49,120 +default constructor, so now I have to pass at + +176 +00:10:49,120 --> 00:10:51,000 +least two information, name + +177 +00:10:56,120 --> 00:10:58,200 +and the ID. Of course, I can change the ID later + +178 +00:10:58,200 --> 00:11:00,740 +through the setter, but the idea of the constructor + +179 +00:11:00,740 --> 00:11:02,140 +is that when you have the construction, you have + +180 +00:11:02,140 --> 00:11:04,340 +to pass these two information. + +181 +00:11:12,060 --> 00:11:17,360 +Okay, fine. Now, the class that we made, Hadi, we + +182 +00:11:17,360 --> 00:11:20,300 +made it to collect the attributes of the employee. + +183 +00:11:20,860 --> 00:11:23,240 +That's it, instead of writing the attributes in + +184 +00:11:23,240 --> 00:11:27,040 +the main, we collected them in the class, and we + +185 +00:11:27,040 --> 00:11:30,880 +can also use the class to put rules in it for + +186 +00:11:30,880 --> 00:11:34,240 +example, one of the things that I need to do is to + +187 +00:11:34,240 --> 00:11:38,220 +calculate the salary of the employee, the total + +188 +00:11:38,220 --> 00:11:41,380 +salary because I can calculate his salary in two + +189 +00:11:41,380 --> 00:11:44,580 +ways, first, how much salary does the employee need + +190 +00:11:44,580 --> 00:11:47,720 +to calculate? For example, I have one of the + +191 +00:11:47,720 --> 00:11:50,280 +attributes, the basic salary, but I didn't delete + +192 +00:11:50,280 --> 00:11:54,780 +the net salary. The net salary, he has insurance, + +193 +00:11:54,900 --> 00:11:56,960 +we divide it, we get married, we add to it, he has + +194 +00:11:56,960 --> 00:12:00,580 +children, we add money to them, and so on. I can + +195 + +223 +00:13:33,580 --> 00:13:36,680 +he has health insurance okay we go to the net + +224 +00:13:36,680 --> 00:13:42,400 +salary and subtract from it 50 for example if he + +225 +00:13:42,400 --> 00:13:46,960 +was married net + +226 +00:13:46,960 --> 00:13:52,840 +salary plus 20 if he had children + +227 +00:14:01,200 --> 00:14:05,260 +For example, it will add with the number of + +228 +00:14:05,260 --> 00:14:07,020 +children, if the number of children is zero, of + +229 +00:14:07,020 --> 00:14:09,520 +course, it will not add anything. Of course, I + +230 +00:14:09,520 --> 00:14:13,120 +still have an error, why? The value must return + +231 +00:14:13,120 --> 00:14:21,300 +float, so I say in the end return net + +232 +00:14:21,300 --> 00:14:26,520 +salary. Okay, now I'm in the main method. + +233 +00:14:35,960 --> 00:14:37,760 +I can tell him to calculate the salary of an + +234 +00:14:37,760 --> 00:14:42,020 +employee E1.CalculateNetSalary + +235 +00:14:42,020 --> 00:14:47,540 +and + +236 +00:14:47,540 --> 00:14:51,240 +this + +237 +00:14:51,240 --> 00:14:56,540 +will calculate the salary of the employee ok guys + +238 +00:14:56,540 --> 00:15:01,100 +ok now we go to the class where we put the + +239 +00:15:01,100 --> 00:15:04,100 +attributes where we put the values related to this + +240 +00:15:04,100 --> 00:15:07,970 +entity or the class. Let's move now to another + +241 +00:15:07,970 --> 00:15:10,070 +point, because I took a class representing the + +242 +00:15:10,070 --> 00:15:12,930 +employees in my company or institution, the + +243 +00:15:12,930 --> 00:15:15,430 +manager came and said to me, no, now the employees + +244 +00:15:15,430 --> 00:15:19,210 +will be of different types, okay? For example, we + +245 +00:15:19,210 --> 00:15:21,870 +have a full-time employee and we have a part-time + +246 +00:15:21,870 --> 00:15:27,280 +employee. And he could be an unemployed employee, a + +247 +00:15:27,280 --> 00:15:29,560 +contract worker, a cut-off worker. They started + +248 +00:15:29,560 --> 00:15:32,340 +inventing new things, right or wrong, to make + +249 +00:15:32,340 --> 00:15:36,940 +people laugh. And each one has different + +250 +00:15:36,940 --> 00:15:39,400 +attributes from the other. For example, the full + +251 +00:15:39,400 --> 00:15:45,260 +-time employee has a basic salary, and the + +252 +00:15:45,260 --> 00:15:47,240 +information we provided, for example, that he has + +253 +00:15:47,240 --> 00:15:49,180 +insurance, marries children, who are these people + +254 +00:15:49,180 --> 00:15:52,410 +related to? The full-time employee. Because the + +255 +00:15:52,410 --> 00:15:54,930 +part-time employee is a separate account, a part + +256 +00:15:54,930 --> 00:15:57,510 +-time employee with the watch. It has two + +257 +00:15:57,510 --> 00:16:01,050 +information about it. The number of hours and the + +258 +00:16:01,050 --> 00:16:02,730 +price of the watch. It has nothing to do with + +259 +00:16:02,730 --> 00:16:04,270 +getting married or getting married or getting + +260 +00:16:04,270 --> 00:16:04,990 +married. It has nothing to do with it. It has + +261 +00:16:04,990 --> 00:16:06,710 +nothing to do with it. It has nothing to do with + +262 +00:16:06,710 --> 00:16:07,090 +it. It has nothing to do with it. It has nothing + +263 +00:16:07,090 --> 00:16:07,410 +to do with it. It has nothing to do with it. It + +264 +00:16:07,410 --> 00:16:07,590 +has nothing to do with it. It has nothing to do + +265 +00:16:07,590 --> 00:16:10,190 +with it. It has nothing to do with it. It has + +266 +00:16:10,190 --> 00:16:13,610 +nothing to do with it. It has nothing to do with + +267 +00:16:13,610 --> 00:16:16,270 +it. It has nothing to do with it. It has nothing + +268 +00:16:16,270 --> 00:16:18,370 +to do with it. It has nothing + +269 +00:16:21,870 --> 00:16:24,390 +it doesn't work anymore that the class employee + +270 +00:16:24,390 --> 00:16:28,030 +represents all types of employees because each one + +271 +00:16:28,030 --> 00:16:32,030 +of them has different data on each other this + +272 +00:16:32,030 --> 00:16:35,970 +means that each one should have a class to collect + +273 +00:16:35,970 --> 00:16:39,210 +the attributes related to him the full-time + +274 +00:16:39,210 --> 00:16:42,750 +employee has a basic salary, insurance, number of + +275 +00:16:42,750 --> 00:16:45,830 +children, marriage and others the part-time + +276 +00:16:45,830 --> 00:16:47,410 +employee has specific information about the number + +277 +00:16:47,410 --> 00:16:50,050 +of hours and hours of the hour and so on so each + +278 +00:16:50,050 --> 00:16:54,670 +one has a class but at the same time, all of them + +279 +00:16:54,670 --> 00:16:59,610 +also participate in certain information such as + +280 +00:16:59,610 --> 00:17:04,390 +name, ID and job title, all of them have this + +281 +00:17:04,390 --> 00:17:05,590 +information, it does not differ from one employee + +282 +00:17:05,590 --> 00:17:09,550 +to another because what is the solution when he + +283 +00:17:09,550 --> 00:17:13,470 +told me to work with different types of employees? + +284 +00:17:14,740 --> 00:17:17,840 +because you can think like this you can call a + +285 +00:17:17,840 --> 00:17:21,680 +class employee and say we want to make a class + +286 +00:17:21,680 --> 00:17:26,240 +called full + +287 +00:17:26,240 --> 00:17:30,360 +-time employee this + +288 +00:17:30,360 --> 00:17:33,120 +is short for full-time employee and another class + +289 +00:17:33,120 --> 00:17:37,220 +called part-time employee and a third class called + +290 +00:17:37,220 --> 00:17:39,680 +contract employee + +291 +00:17:41,330 --> 00:17:47,570 +Now, what are his attributes? Name, ID, job title, + +292 +00:17:48,090 --> 00:17:50,970 +basic salary, + +293 +00:17:54,130 --> 00:17:54,810 +insurance, + +294 +00:17:57,450 --> 00:18:02,710 +married or not, number of children, part-time + +295 +00:18:02,710 --> 00:18:06,410 +employee, hours, number of hours + +296 +00:18:12,770 --> 00:18:20,270 +rate and it also has name and ID and job title the + +297 +00:18:20,270 --> 00:18:24,650 +contract based employee also has name and ID and + +298 +00:18:24,650 --> 00:18:33,890 +job title and salary and it has start date and end + +299 +00:18:33,890 --> 00:18:37,390 +date because + +300 +00:18:37,390 --> 00:18:42,520 +each one of these they share things like name, ID + +301 +00:18:42,520 --> 00:18:46,280 +and job title and disagree on other things because + +302 +00:18:46,280 --> 00:18:49,000 +you can ignore the employee and make a class for + +303 +00:18:49,000 --> 00:18:53,280 +each one of them separated from each other but + +304 +00:18:53,280 --> 00:18:55,440 +this means that there are things that you will + +305 +00:18:55,440 --> 00:18:59,260 +repeat because the attributes name, ID and job title + +306 +00:18:59,260 --> 00:19:03,620 +will have to be put here and here and here okay? + +307 +00:19:03,840 --> 00:19:05,320 +and put along with them the setters and the + +308 +00:19:05,320 --> 00:19:08,410 +getters, and tomorrow if you tell me to add a fourth + +309 +00:19:08,410 --> 00:19:11,810 +information, like the ID number for example, we + +310 +00:19:11,810 --> 00:19:15,270 +have to add it here, or if I have other types of + +311 +00:19:15,270 --> 00:19:19,010 +employees, I have to add this attribute to all the + +312 +00:19:19,010 --> 00:19:23,430 +classes. So they tell you, no, we want to benefit + +313 +00:19:23,430 --> 00:19:26,690 +from an important feature for object-oriented + +314 +00:19:26,690 --> 00:19:30,310 +programming, which is inheritance. If you have + +315 +00:19:30,310 --> 00:19:33,950 +classes like these that share certain attributes, + +316 +00:19:34,290 --> 00:19:37,070 +why would you put them in more than one class? I + +317 +00:19:37,070 --> 00:19:43,090 +would tell you to take all these common things, + +318 +00:19:43,550 --> 00:19:49,410 +remove them from here and make a class, one + +319 +00:19:49,410 --> 00:19:56,890 +parent, call it employee, put the ID, name and job + +320 +00:19:56,890 --> 00:20:03,650 +title in it, and then these guys, what do you have + +321 +00:20:03,650 --> 00:20:06,970 +to tell them? Go and do inherit, inherit from + +322 +00:20:06,970 --> 00:20:11,750 +whom? From the employee, from the parent. This Sam + +323 +00:20:11,750 --> 00:20:15,130 +Sam, the inherit, which is in Java, we call it + +324 +00:20:15,130 --> 00:20:19,550 +extend. This means that for example this class + +325 +00:20:19,550 --> 00:20:22,270 +which is the part-time employee, what attributes + +326 +00:20:22,270 --> 00:20:25,330 +will be present in it? the number of hours and the + +327 +00:20:25,330 --> 00:20:29,830 +hour rate, and inherited from whom? from the + +328 +00:20:29,830 --> 00:20:32,050 +employee, the ID and the name and the job title you + +329 +00:20:32,050 --> 00:20:35,970 +don't need to write them here. It inherited them + +330 +00:20:35,970 --> 00:20:39,690 +and became as if they are present without you + +331 +00:20:39,690 --> 00:20:43,270 +writing them just by doing what? Extend. So you write + +332 +00:20:43,270 --> 00:20:47,850 +one word Extend. It made you know everything in the + +333 +00:20:47,850 --> 00:20:51,530 +employee as if it was already there in the part + +334 +00:20:51,530 --> 00:20:56,030 +-time employee. I got rid of the repetition here + +335 +00:20:56,030 --> 00:20:58,990 +and here and here. That when I put each class, it + +336 +00:20:58,990 --> 00:21:02,350 +extends from here. Everything here automatically + +337 +00:21:02,350 --> 00:21:07,430 +took or inherited from all the subclasses. And this + +338 +00:21:07,430 --> 00:21:11,630 +provided coding for me. Let's implement this word + +339 +00:21:11,630 --> 00:21:14,770 +in my example. For the initial employee + +340 +00:21:20,320 --> 00:21:21,860 +because we want to change the employee that came + +341 +00:21:21,860 --> 00:21:30,980 +here. All of them will stop working. Full-time and + +342 +00:21:30,980 --> 00:21:35,080 +based on that, even this guy that has no salary, I + +343 +00:21:35,080 --> 00:21:38,740 +want to fire him. Let the lady that came here + +344 +00:21:38,740 --> 00:21:44,240 +sleep, because these setters and getters but + +345 +00:21:44,240 --> 00:21:47,970 +these setters and getters, the basic salary and + +346 +00:21:47,970 --> 00:21:49,850 +the is married and the insurance and the number of + +347 +00:21:49,850 --> 00:21:52,430 +children, all of these don't need to be here. It's + +348 +00:21:52,430 --> 00:21:54,390 +the gate of the employee that only has things in + +349 +00:21:54,390 --> 00:21:59,790 +it. Okay? Three attributes plus the setters and + +350 +00:21:59,790 --> 00:22:03,110 +their getters, plus the constructor, which takes + +351 +00:22:03,110 --> 00:22:09,650 +the name and the ID. Now I'm going to do two + +352 +00:22:09,650 --> 00:22:13,730 +classes. I actually did this because I want to do + +353 +00:22:13,730 --> 00:22:15,730 +this full-time + +354 +00:22:20,450 --> 00:22:26,710 +employee تمام و هذا بحط فيه ال attributes اللي هم + +355 +00:22:26,710 --> 00:22:29,390 +ال basic salary و ال has insurance و ال is married + +356 +00:22:29,390 --> 00:22:34,250 +و ال number of children و بنعملهم مين ال setters و + +357 +00:22:34,250 --> 00:22:44,770 +ال getters و + +358 +00:22:44,770 --> 00:22:46,790 +بدنا كمان نعمل ال part-time employee + +359 +00:22:58,970 --> 00:23:05,490 +which is going to be int number of hours float + +360 +00:23:05,490 --> 00:23:23,250 +hour rate and we do setters, ok + +361 +00:23:23,250 --> 00:23:27,340 +guys, but you should notice that until now We + +362 +00:23:27,340 --> 00:23:30,160 +didn't do extend, okay? So this class has + +363 +00:23:30,160 --> 00:23:32,860 +attributes, it didn't get a name or ID or job + +364 +00:23:32,860 --> 00:23:36,580 +title yet. So now we say full-time employee extends + +365 +00:23:36,580 --> 00:23:41,220 +employee + +366 +00:23:41,220 --> 00:23:54,900 +and part-time employee also extends employee. Of + +367 +00:23:54,900 --> 00:23:57,770 +course, as soon as you do like this, + +368 +00:23:58,350 --> 00:24:02,010 +you will see a red light. Of course, the extend is + +369 +00:24:02,010 --> 00:24:04,430 +fine. It is inherited from whom? From the father. + +370 +00:24:04,810 --> 00:24:07,130 +I can say that the full-time employee, what are + +371 +00:24:07,130 --> 00:24:11,370 +their attributes? Any object that you make from a + +372 +00:24:11,370 --> 00:24:15,630 +full-time employee will have the things inherited + +373 +00:24:15,630 --> 00:24:17,830 +from the parent, which is his name, ID and job + +374 +00:24:17,830 --> 00:24:21,950 +title, plus who? These three. Okay? But let's go + +375 +00:24:21,950 --> 00:24:26,100 +back to our topic. Why did he make an error? Why + +376 +00:24:26,100 --> 00:24:32,040 +did he make a mistake? How? Override of what? + +377 +00:24:34,240 --> 00:24:36,420 +There is no such thing as override of attributes. + +378 +00:24:39,240 --> 00:24:40,280 +Override of these methods + +379 +00:24:54,760 --> 00:25:03,480 +what does super mean + +380 +00:25:03,480 --> 00:25:06,240 +for variables? there is no such thing as super for + +381 +00:25:06,240 --> 00:25:09,300 +variables. Yes + +382 +00:25:10,240 --> 00:25:13,900 +We need to go to the constructor now to pass the + +383 +00:25:13,900 --> 00:25:15,560 +variables to him because we can't pass the + +384 +00:25:15,560 --> 00:25:21,300 +variables from here. Okay, pay attention guys. The + +385 +00:25:21,300 --> 00:25:24,840 +problem is really in the constructor and to know + +386 +00:25:24,840 --> 00:25:29,580 +the existing error. Now guys, we agreed first to go + +387 +00:25:29,580 --> 00:25:32,160 +back to the employee. The employee now has a + +388 +00:25:32,160 --> 00:25:35,880 +constructor, right? If there was no constructor + +389 +00:25:35,880 --> 00:25:39,810 +like this, what did we agree on? there will be a + +390 +00:25:39,810 --> 00:25:42,070 +default constructor. Of course, if I remove the + +391 +00:25:42,070 --> 00:25:45,230 +constructor from the employee, the error is gone. + +392 +00:25:45,770 --> 00:25:47,770 +What does it mean if I put a constructor and there + +393 +00:25:47,770 --> 00:25:50,770 +is an error, and if I remove the constructor, the + +394 +00:25:50,770 --> 00:25:53,110 +error is gone? Because it is present as follows. + +395 +00:25:53,730 --> 00:25:56,150 +Actually, in the full-time employee, there is + +396 +00:25:56,150 --> 00:25:58,530 +something written here as follows. Is there a + +397 +00:25:58,530 --> 00:26:01,050 +constructor in the full-time employee? Yes, what + +398 +00:26:01,050 --> 00:26:04,050 +is it? The default constructor, which is present + +399 +00:26:04,050 --> 00:26:07,050 +even if I did not write it. How does it look like? + +400 +00:26:07,330 --> 00:26:16,080 +PublicFull-time employee? Fadi? And what's inside? + +401 +00:26:16,980 --> 00:26:21,180 +Fadi? No, it's not empty. Yes, what's inside? It's + +402 +00:26:21,180 --> 00:26:24,820 +written inside something like that. This is + +403 +00:26:24,820 --> 00:26:27,980 +definitely written, even if you didn't see it + +404 +00:26:27,980 --> 00:26:34,000 +written in front of you. Okay? Now. Any constructor + +405 +00:26:34,000 --> 00:26:37,560 +of a subclass must invoke the constructor of the + +406 +00:26:37,560 --> 00:26:40,260 +superclass. What does this mean? First of all, + +407 +00:26:40,300 --> 00:26:43,040 +what is the purpose of the constructor? It is an + +408 +00:26:43,040 --> 00:26:45,400 +indicator. The first indicator that is invoked + +409 +00:26:45,400 --> 00:26:47,880 +when the object is created. Right? What is its + +410 +00:26:47,880 --> 00:26:52,260 +purpose? To initialize attributes. You can benefit + +411 +00:26:52,260 --> 00:26:55,990 +from it that in the constructor of values for the + +412 +00:26:55,990 --> 00:26:58,190 +attributes, like the constructor we made in the + +413 +00:26:58,190 --> 00:27:02,310 +employee. Okay, now this is not working in the + +414 +00:27:02,310 --> 00:27:04,530 +employee, it is working in the full-time employee. + +415 +00:27:05,160 --> 00:27:07,580 +Okay? So what will happen in this case? Any + +416 +00:27:07,580 --> 00:27:10,240 +constructor of a subclass must copy the + +417 +00:27:10,240 --> 00:27:13,76 + +445 +00:28:53,650 --> 00:28:58,230 +problem? We can solve it in more than one way. The + +446 +00:28:58,230 --> 00:29:01,950 +first way is to go to the super class, it is not + +447 +00:29:01,950 --> 00:29:06,150 +the problem here that the super class is empty, it + +448 +00:29:06,150 --> 00:29:09,090 +is to go to the super class and make the + +449 +00:29:09,090 --> 00:29:14,110 +constructor of the sector public employee + +450 +00:29:14,110 --> 00:29:18,230 +is empty. I went straight to the full-time + +451 +00:29:18,230 --> 00:29:20,750 +employee, what happened? He shut down. That's it, + +452 +00:29:20,850 --> 00:29:23,730 +I found what I was looking for. I want a super + +453 +00:29:23,730 --> 00:29:24,570 +class that is empty, I found it. + +454 +00:29:28,550 --> 00:29:30,870 +But what if you open the door and ask an employee + +455 +00:29:30,870 --> 00:29:34,930 +what? Empty, okay? No, we don't want this + +456 +00:29:34,930 --> 00:29:37,190 +solution. We want to leave the constructor who + +457 +00:29:37,190 --> 00:29:41,450 +takes two arguments, name and id. Come back and + +458 +00:29:41,450 --> 00:29:45,130 +tell me what's wrong here. Error. Because to fix + +459 +00:29:45,130 --> 00:29:48,030 +the error simply, you can .. Okay, did you notice + +460 +00:29:48,030 --> 00:29:50,610 +that there is no empty super, right or not? But + +461 +00:29:50,610 --> 00:29:54,110 +there is a super that takes what? Negative. See + +462 +00:29:54,110 --> 00:29:56,630 +what I'm going to do to silence him. I can put + +463 +00:29:56,630 --> 00:30:01,770 +here null, negative null. Did it shut down or not? + +464 +00:30:02,350 --> 00:30:04,430 +It shut down. It shut down. I went back to him and + +465 +00:30:04,430 --> 00:30:07,650 +said, you have to copy the constructor of the + +466 +00:30:07,650 --> 00:30:10,750 +superclass. I copied it. But what did I tell him? + +467 +00:30:11,370 --> 00:30:15,050 +None. It shut down. He stopped making errors. + +468 +00:30:16,990 --> 00:30:18,950 +Because this solution is programmatically correct, + +469 +00:30:19,230 --> 00:30:23,470 +but still not logical. I originally hired the + +470 +00:30:23,470 --> 00:30:26,470 +employee and hired a constructor in it. Why? To + +471 +00:30:26,470 --> 00:30:29,260 +prevent someone from creating an employee unless + +472 +00:30:29,260 --> 00:30:32,420 +you give him a name and ID, nothing else, okay? + +473 +00:30:33,100 --> 00:30:37,480 +And this should apply to whom? to the subclasses + +474 +00:30:37,480 --> 00:30:41,140 +as well. I mean, you are not allowed to hire an + +475 +00:30:41,140 --> 00:30:44,440 +employee unless you give him a name and ID so the + +476 +00:30:44,440 --> 00:30:47,960 +logic is that this should apply to whom? to the + +477 +00:30:47,960 --> 00:30:53,250 +subclasses. What about the subclasses? When you + +478 +00:30:53,250 --> 00:30:55,130 +create a full-time employee, you also need to give + +479 +00:30:55,130 --> 00:30:59,030 +him a name and an ID. So the best solution is to + +480 +00:30:59,030 --> 00:31:01,790 +make the superclass owners want a name and an ID. + +481 +00:31:02,490 --> 00:31:06,330 +You make a constructor here that takes the name + +482 +00:31:06,330 --> 00:31:12,010 +string and the ID string. And then you take this + +483 +00:31:12,010 --> 00:31:17,210 +name and connect it to whom? To the super. And you + +484 +00:31:17,210 --> 00:31:19,990 +take the ID and connect it to the super. + +485 +00:31:22,960 --> 00:31:25,780 +Do you understand this, guys? This should be taken + +486 +00:31:25,780 --> 00:31:28,740 +in two programs. This is called Constructor + +487 +00:31:28,740 --> 00:31:30,960 +Chaining. Constructor Chaining is how the + +488 +00:31:30,960 --> 00:31:33,560 +Constructor connects with each other. Constructor + +489 +00:31:33,560 --> 00:31:35,760 +of the subclass always connects with Constructor + +490 +00:31:35,760 --> 00:31:39,480 +of the superclass. And the principle is that you + +491 +00:31:39,480 --> 00:31:41,780 +work in the subclass and the Constructor takes the + +492 +00:31:41,780 --> 00:31:44,880 +same necessary parameters in the superclass. + +493 +00:31:46,440 --> 00:31:48,620 +Because by the way, if you did not put all of this + +494 +00:31:49,510 --> 00:31:51,850 +it will give you an error for sure, but you can + +495 +00:31:51,850 --> 00:31:55,210 +ask the netbeans to solve the problem for you, add + +496 +00:31:55,210 --> 00:31:57,030 +constructor and it will add the constructor that + +497 +00:31:57,030 --> 00:32:00,390 +we wrote, but in the exam there is no right click + +498 +00:32:00,390 --> 00:32:04,190 +and add constructor, okay? You write it, okay? + +499 +00:32:08,710 --> 00:32:10,990 +Because this means that if I go to the employee, + +500 +00:32:11,710 --> 00:32:13,710 +if we add a parameter to the third constructor, + +501 +00:32:14,990 --> 00:32:16,910 +that is, now we say that anyone who wants to + +502 +00:32:16,910 --> 00:32:20,190 +create an employee must specify at least name and + +503 +00:32:20,190 --> 00:32:26,390 +id and job title, then I say here string job + +504 +00:32:26,390 --> 00:32:31,290 +title, immediately it will hit the full-time + +505 +00:32:31,290 --> 00:32:35,410 +employee, it will say come here, the super class + +506 +00:32:35,410 --> 00:32:38,950 +needs three students, okay? Then I have to select + +507 +00:32:38,950 --> 00:32:41,830 +the third one. I can put null or I can correct what + +508 +00:32:41,830 --> 00:32:46,770 +I did here string job + +509 +00:32:46,770 --> 00:32:51,370 +title, and I send the job title to whom? For the + +510 +00:32:51,370 --> 00:32:54,690 +super. When it reaches the super, the super takes + +511 +00:32:54,690 --> 00:32:56,710 +the name, you put it in the name, and the id you put + +512 +00:32:56,710 --> 00:33:07,370 +it in this.id and you take this job title. Is it + +513 +00:33:07,370 --> 00:33:10,410 +clear, guys? No, the same example, I have a part-time + +514 +00:33:10,410 --> 00:33:13,290 +employee who also made a mistake. He says well, why + +515 +00:33:13,290 --> 00:33:14,670 +did he make a mistake, because we agreed on the + +516 +00:33:14,670 --> 00:33:17,940 +gate, what is in the existing constructor? No, if + +517 +00:33:17,940 --> 00:33:19,400 +constructor is empty, it will claim that the + +518 +00:33:19,400 --> 00:33:21,400 +parent is empty, and the parent is not empty + +519 +00:33:21,400 --> 00:33:25,520 +either. Okay? The solution is to go and create a + +520 +00:33:25,520 --> 00:33:27,440 +constructor here, create a constructor by itself, + +521 +00:33:27,520 --> 00:33:30,820 +it takes name, id and job title, and passes the + +522 +00:33:30,820 --> 00:33:34,160 +name, id and job title to whom? To the superclass. + +523 +00:33:38,870 --> 00:33:42,470 +Now, in the main method, of course, I don't have it + +524 +00:33:42,470 --> 00:33:45,050 +anymore. Now, the point is that I don't make an + +525 +00:33:45,050 --> 00:33:47,690 +object from an employee. Right or not, guys? The + +526 +00:33:47,690 --> 00:33:49,590 +point is that I make an object from whom? From a + +527 +00:33:49,590 --> 00:33:51,750 +full-time employee or part-time employee. That's + +528 +00:33:51,750 --> 00:33:54,230 +it, but why is this employee made? Just to collect + +529 +00:33:54,230 --> 00:34:02,050 +the common things, okay? Full-time employee FTE1 + +530 +00:34:02,050 --> 00:34:05,470 +equals new full-time + +531 +00:34:07,830 --> 00:34:11,150 +employee, and it needs 3 information from me, name, + +532 +00:34:12,190 --> 00:34:22,030 +ID, job title, for example, manager. Ok? + +533 +00:34:23,250 --> 00:34:26,770 +Did we understand the constructor guys? Ok, now + +534 +00:34:26,770 --> 00:34:30,890 +you can also say that, no guys, we also need + +535 +00:34:30,890 --> 00:34:33,470 +someone who wants to do full-time employee, at + +536 +00:34:33,470 --> 00:34:39,090 +least he has to pass the basic salary. I found out + +537 +00:34:39,090 --> 00:34:41,710 +that the constructor takes name, id and job title + +538 +00:34:41,710 --> 00:34:50,030 +and we pass it to whom? float basic salary. The + +539 +00:34:50,030 --> 00:34:53,290 +constructor of the float employee has four things. + +540 +00:34:53,290 --> 00:34:56,270 +What are we going to do? Why did we pass the basic + +541 +00:34:56,270 --> 00:35:01,390 +salary? To make initialize to whom? To the basic + +542 +00:35:01,390 --> 00:35:04,470 +salary here. So I have to come here and say this + +543 +00:35:05,630 --> 00:35:11,310 +dot basic salary is equal to basic salary. The + +544 +00:35:11,310 --> 00:35:14,750 +things that I have, I initialize them, the things + +545 +00:35:14,750 --> 00:35:18,530 +that my father has, here you go, take them and + +546 +00:35:18,530 --> 00:35:20,830 +initialize them. This is the logic, this is the + +547 +00:35:20,830 --> 00:35:25,530 +correct way. Do you agree, guys? This is the basic + +548 +00:35:25,530 --> 00:35:27,910 +salary that I have here, so I say this dot basic + +549 +00:35:27,910 --> 00:35:30,930 +salary is equal to basic salary and the rest, the + +550 +00:35:30,930 --> 00:35:34,780 +name, ID and job title, send them to whom? Yes, for + +551 +00:35:34,780 --> 00:35:35,440 +the superclass. + +552 +00:35:39,740 --> 00:35:41,820 +Of course, this get gave me an error where? In the + +553 +00:35:41,820 --> 00:35:44,500 +main, because the constructor is taking another + +554 +00:35:44,500 --> 00:35:48,600 +parameter. Let's say 1000, this gets second. + +555 +00:36:00,070 --> 00:36:09,430 +One of the mistakes students make is that they say + +556 +00:36:09,430 --> 00:36:16,750 +this dot name is equal to this dot name is equal + +557 +00:36:16,750 --> 00:36:21,450 +to this dot name is equal to this dot name is + +558 +00:36:21,450 --> 00:36:21,630 +equal to this dot name is equal to this dot name + +559 +00:36:21,630 --> 00:36:21,830 +name is equal to this dot name is equal to this + +560 +00:36:21,830 --> 00:36:21,910 +dot name is equal to this dot name is equal to + +561 +00:36:21,910 --> 00:36:24,370 +this dot name is equal to this dot name is equal + +562 +00:36:24,370 --> 00:36:27,550 +to this dot name is equal to this dot name is + +563 +00:36:27,550 --> 00:36:27,570 +equal to this dot name is equal to this dot name + +564 +00:36:27,570 --> 00:36:27,590 +name is equal to this dot name is equal to this + +565 +00:36:27,590 --> 00:36:27,670 +this dot name is equal to this dot name is equal + +566 +00:36:27,670 --> 00:36:27,690 +to this dot name is equal to this dot name is + +567 +00:36:27,690 --> 00:36:30,170 +to this dot name isDid you notice that you told us + +568 +00:36:30,170 --> 00:36:32,470 +that the full-time employee does not extend the + +569 +00:36:32,470 --> 00:36:34,710 +employee, everything in the employee must be + +570 +00:36:34,710 --> 00:36:38,250 +inherited, including the name, ID and job title. I + +571 +00:36:38,250 --> 00:36:41,070 +came here and I want to put a value in the name or + +572 +00:36:41,070 --> 00:36:45,650 +even print the name. I want to say system.out + +573 +00:36:45,650 --> 00:36:51,710 +.println print me this.name. Okay, make a mistake, + +574 +00:36:51,770 --> 00:36:52,110 +why? + +575 +00:36:55,670 --> 00:36:59,830 +Even if you put super, it's still wrong, this is + +576 +00:36:59,830 --> 00:37:07,250 +super, also wrong, his name is private, okay, he + +577 +00:37:07,250 --> 00:37:12,070 +demolished things, did he inherit the name or not? + +578 +00:37:13,810 --> 00:37:17,250 +He inherited the name and ID and job title, but + +579 +00:37:17,250 --> 00:37:19,680 +could not interact with them. Did you see someone + +580 +00:37:19,680 --> 00:37:24,060 +who owns land and has no right to use it? He owns + +581 +00:37:24,060 --> 00:37:27,700 +it, he doesn't own it. Okay? He owns it, he + +582 +00:37:27,700 --> 00:37:31,060 +doesn't own it. Okay? This full-time employee + +583 +00:37:31,060 --> 00:37:34,180 +inherited the name, ID and job title, but he was + +584 +00:37:34,180 --> 00:37:37,400 +unable to deal with them directly. Why was he + +585 +00:37:37,400 --> 00:37:40,700 +unable to deal with them directly? Because the + +586 +00:37:40,700 --> 00:37:44,740 +name, notice the basic seller dealt with him. It's + +587 +00:37:44,740 --> 00:37:48,080 +easy, I put my finger in it. Because the password + +588 +00:37:48,080 --> 00:37:51,240 +is there in the same class. But the normal ID and + +589 +00:37:51,240 --> 00:37:55,620 +job title, I can't print them or put values in them. + +590 +00:37:55,620 --> 00:37:57,860 +Why? Because if you look at them in the employee, + +591 +00:37:57,860 --> 00:38:03,940 +you will find them in what? Private. Anything that + +592 +00:38:03,940 --> 00:38:06,500 +is identified as private, you can only contact it + +593 +00:38:06,500 --> 00:38:10,400 +directly in the same class. Outside the class, you + +594 +00:38:10,400 --> 00:38:14,500 +can't contact them. You can ref them but you won't + +595 +00:38:14,500 --> 00:38:16,780 +be able to reach them. It's like saying bring me + +596 +00:38:16,780 --> 00:38:19,000 +some of this to you and not to you. Okay? + +597 +00:38:21,940 --> 00:38:25,280 +Okay, how can I reach them? For example, I want to + +598 +00:38:25,280 --> 00:38:27,220 +print the name here. I want to say system.out + +599 +00:38:27,220 --> 00:38:31,180 +.println name. Okay? How? I will say yes, you can + +600 +00:38:31,180 --> 00:38:34,680 +reach them through setters and getters. I don't + +601 +00:38:34,680 --> 00:38:47,240 +have circuits. There is a system called system.out + +602 +00:38:47,240 --> 00:38:55,360 +.println this.getname. It will give me a getname. + +603 +00:38:55,360 --> 00:39:00,440 +This is not a problem. You + +604 +00:39:00,440 --> 00:39:03,220 +can rotate it, but it will be closed. I can connect + +605 +00:39:03,220 --> 00:39:06,360 +it only through the setters and guitars. + +606 +00:39:09,580 --> 00:39:14,440 +What is this dominance? All the attributes, I + +607 +00:39:14,440 --> 00:39:19,860 +inherited them and I can't reach them. Is there a + +608 +00:39:19,860 --> 00:39:26,800 +way to make this class reach the name, the ID, and + +609 +00:39:26,800 --> 00:39:30,120 +the job title? You can hide yourself in the world + +610 +00:39:30,120 --> 00:39:32,740 +and go somewhere public instead of private. + +611 +00:39:40,900 --> 00:39:43,980 +Of course, what I did was right in terms of + +612 +00:39:43,980 --> 00:39:46,940 +programming, but you ruined the world that way. + +613 +00:39:47,440 --> 00:39:49,460 +That's how the name, ID and job title from the + +614 +00:39:49,460 --> 00:39:53,920 +main can reach them. Okay? There is no longer any + +615 +00:39:53,920 --> 00:39:57,880 +use of fitters and getters. He said, no, if you + +616 +00:39:57,880 --> 00:40:00,200 +find yourself, what can you do? He said, instead + +617 +00:40:00,200 --> 00:40:03,480 +of putting them private, you can do something we + +618 +00:40:03,480 --> 00:40:03,820 +call + +619 +00:40:10,410 --> 00:40:11,890 +Protected. Do you understand? What is this + +620 +00:40:11,890 --> 00:40:14,350 +protected thing? This protected thing can't tell + +621 +00:40:14,350 --> 00:40:15,730 +you anything. Do you understand? Anyone can + +622 +00:40:15,730 --> 00:40:19,270 +inherit from it. It's from the same family. Right + +623 +00:40:19,270 --> 00:40:21,330 +or not? So that's it. We are relatives together + +624 +00:40:21,330 --> 00:40:24,230 +and these attributes are not barriers between us. + +625 +00:40:24,970 --> 00:40:28,910 +So anything you inherit from it, you can control + +626 +00:40:28,910 --> 00:40:31,270 +it and connect it directly without setters and + +627 +00:40:31,270 --> 00:40:34,500 +getters. But anyone who does not extend from + +628 +00:40:34,500 --> 00:40:38,600 +outside the main, for example, must use a setter + +629 +00:40:38,600 --> 00:40:38,940 +and getter. + +630 +00:40:42,400 --> 00:40:46,660 +Good or made for whom? When subclasses deal with + +631 +00:40:46,660 --> 00:40:48,700 +each other and reach attributes without barriers. + +632 +00:40:49,180 --> 00:40:51,840 +It removes barriers between who? Individuals of + +633 +00:40:51,840 --> 00:40:55,180 +the same family. Okay? But outside? No, barriers + +634 +00:40:55,180 --> 00:40:58,300 +still exist. And the proof is that as soon + +667 +00:43:16,520 --> 00:43:19,580 +The class employee requires that any employee must + +668 +00:43:19,580 --> 00:43:22,700 +have a name, ID and job title. This made me create + +669 +00:43:22,700 --> 00:43:25,940 +constructors in all subclasses to pass on this + +670 +00:43:25,940 --> 00:43:27,580 +information. In addition to the additional + +671 +00:43:27,580 --> 00:43:34,640 +information. Okay, now if I go to the main and made + +672 +00:43:34,640 --> 00:43:37,780 +more than one object full-time employee and part + +673 +00:43:37,780 --> 00:43:40,440 +-time employee and we said that we are going to + +674 +00:43:40,440 --> 00:43:43,540 +calculate the salaries of these employees. This is + +675 +00:43:43,540 --> 00:43:52,460 +full-time employee 2. This is called Ali and + +676 +00:43:52,460 --> 00:43:57,200 +we are going to make part-time employee. + +677 +00:44:05,830 --> 00:44:16,410 +This one also has name and ID and job title, number + +678 +00:44:16,410 --> 00:44:23,070 +of hours and hour rate, 20-20 for example. Okay, so how + +679 +00:44:23,070 --> 00:44:26,110 +many employees did I introduce? Three employees, + +680 +00:44:26,270 --> 00:44:31,970 +two full-time and one part-time. Now, the manager + +681 +00:44:31,970 --> 00:44:34,860 +came and said we want to do calculating the + +682 +00:44:34,860 --> 00:44:35,700 +salaries of these employees. + +683 +00:44:39,940 --> 00:44:41,760 +For example, if we want to make a chart, we + +684 +00:44:41,760 --> 00:44:42,980 +calculate the salary. Calculating the salary. + +685 +00:44:44,460 --> 00:44:46,820 +Where should we put this chart? Where is the best + +686 +00:44:46,820 --> 00:44:50,900 +place to put it? In the employee, or in the full + +687 +00:44:50,900 --> 00:44:53,480 +-time employee, or in the part-time employee? In + +688 +00:44:53,480 --> 00:44:55,580 +the employee. Yes, in the employee. But wait a + +689 +00:44:55,580 --> 00:44:58,870 +minute, because if you put it in the employee, the + +690 +00:44:58,870 --> 00:45:02,310 +problem I have is that the full-time salary + +691 +00:45:02,310 --> 00:45:06,650 +differs from the part-time salary. We learned that + +692 +00:45:06,650 --> 00:45:10,690 +you put in the superclass the common need that + +693 +00:45:10,690 --> 00:45:14,560 +everyone has. But it's different now, each one has + +694 +00:45:14,560 --> 00:45:17,740 +a different salary account. So based on that, + +695 +00:45:17,820 --> 00:45:19,380 +because each one has a different salary account, + +696 +00:45:19,520 --> 00:45:23,620 +we can't put this data in the superclass. So we + +697 +00:45:23,620 --> 00:45:25,680 +have to put it in the subclass, because each one + +698 +00:45:25,680 --> 00:45:28,240 +has its own data. So we came to the full-time + +699 +00:45:28,240 --> 00:45:34,400 +employee and made a data called public float calc + +700 +00:45:34,400 --> 00:45:36,700 +net salary. + +701 +00:45:39,600 --> 00:45:41,020 +Of course I'm in the full-time employee, the same + +702 +00:45:41,020 --> 00:45:44,560 +calculation we did a while ago. For example, let's + +703 +00:45:44,560 --> 00:45:49,760 +write it quickly. Net salary equals this dot basic + +704 +00:45:49,760 --> 00:45:57,060 +salary. If this dot has insurance, go to the net + +705 +00:45:57,060 --> 00:46:05,060 +salary and subtract 50, for example. If this is + +706 +00:46:05,060 --> 00:46:09,160 +married, go to the net salary and add 20 + +707 +00:46:11,670 --> 00:46:16,790 +and then net salary plus this dot number of + +708 +00:46:16,790 --> 00:46:20,650 +children multiplied by 10 and in the end return + +709 +00:46:20,650 --> 00:46:28,170 +net salary. Notice how their existence was + +710 +00:46:28,170 --> 00:46:32,650 +protected. Not every little bit, I will say that + +711 +00:46:32,650 --> 00:46:36,650 +these people are specialized in it, for example. + +712 +00:46:37,800 --> 00:46:40,640 +Yes, if there is something that I used in the + +713 +00:46:40,640 --> 00:46:43,960 +parent, I can say get name or get... Okay, I can + +714 +00:46:43,960 --> 00:46:47,380 +directly use it, okay. So, it is easier, okay. This is + +715 +00:46:47,380 --> 00:46:48,980 +the cursor that is present in the full-time + +716 +00:46:48,980 --> 00:46:55,040 +employee. The part-time employee public + +717 +00:46:55,040 --> 00:47:00,280 +float calc net salary. + +718 +00:47:05,000 --> 00:47:09,620 +Return this dot number of hours times this dot + +719 +00:47:09,620 --> 00:47:14,840 +hours. That's it for the part-time calculation. Now + +720 +00:47:14,840 --> 00:47:16,620 +after doing these calculations, I go to the main + +721 +00:47:16,620 --> 00:47:18,340 +page. If I want to calculate the salary of each + +722 +00:47:18,340 --> 00:47:21,580 +employee, I say full-time employee one and I say + +723 +00:47:21,580 --> 00:47:25,040 +calc net salary. Calculates the salary of each + +724 +00:47:25,040 --> 00:47:31,300 +employee. This is, for example, system.out.println + +725 +00:47:31,300 --> 00:47:34,140 +calculates his salary and I print it. + +726 +00:47:41,290 --> 00:47:44,210 +Okay, here, of course, 1000, why did it stay as it + +727 +00:47:44,210 --> 00:47:46,370 +is? Because we didn't put that he has insurance, + +728 +00:47:46,590 --> 00:47:48,270 +or married, or has children, so the salary stayed + +729 +00:47:48,270 --> 00:47:54,310 +what? As it is. Okay, now I ... what I know are + +730 +00:47:54,310 --> 00:47:56,830 +three types ... three ... three objects of + +731 +00:47:56,830 --> 00:48:00,590 +employees, but in reality, I have, for example, 100 + +732 +00:48:00,590 --> 00:48:03,720 +employees. 200 employees. I'm not going to tell + +733 +00:48:03,720 --> 00:48:08,860 +each one of them system.r.println FTE 1, print FTE + +734 +00:48:08,860 --> 00:48:12,240 +2 and so on, so we benefit from the loops that we + +735 +00:48:12,240 --> 00:48:17,440 +made, collect them in a list and make loops on + +736 +00:48:17,440 --> 00:48:22,160 +them and tell them to calculate the salary. Now, + +737 +00:48:22,260 --> 00:48:24,040 +the first thing that will shock you is that these + +738 +00:48:24,040 --> 00:48:26,880 +two types are different. Full-time employees and + +739 +00:48:26,880 --> 00:48:29,280 +part-time employees. That is, each one wants a + +740 +00:48:29,280 --> 00:48:32,240 +job. Excuse me, each one wants a career. Right or + +741 +00:48:32,240 --> 00:48:35,880 +not? Okay, each one wants a job. Well, can we put + +742 +00:48:35,880 --> 00:48:40,960 +them in one career? Yes. We come here to an + +743 +00:48:40,960 --> 00:48:43,080 +important point because these employees are of + +744 +00:48:43,080 --> 00:48:45,360 +different types. There are institutions that have + +745 +00:48:45,360 --> 00:48:47,320 +a thousand employees, for example, seven hundred + +746 +00:48:47,320 --> 00:48:49,920 +full-time, two hundred part-time, one hundred in + +747 +00:48:49,920 --> 00:48:55,390 +the contract, right? You can make each one an + +748 +00:48:55,390 --> 00:48:58,790 +array and put them in it, okay? But this means + +749 +00:48:58,790 --> 00:49:01,850 +that if you make a new type of employees, for + +750 +00:49:01,850 --> 00:49:03,970 +example, we started working on software + +751 +00:49:03,970 --> 00:49:06,150 +engineering, okay? You want to make a new type of + +752 +00:49:06,150 --> 00:49:08,870 +employees, you want to make a new array, you want + +753 +00:49:08,870 --> 00:49:12,430 +to make a new loop on this array, right or not? So + +754 +00:49:12,430 --> 00:49:14,650 +we think about how to benefit from the object + +755 +00:49:14,650 --> 00:49:18,870 +oriented that we studied, that we don't have to + +756 +00:49:18,870 --> 00:49:22,950 +create a new loop or array even the products in + +757 +00:49:22,950 --> 00:49:26,070 +the store market are of different types, it doesn't + +758 +00:49:26,070 --> 00:49:30,110 +make sense to put each type in an array. Why? + +759 +00:49:31,810 --> 00:49:35,090 +Because if you have a new type of product and you + +760 +00:49:35,090 --> 00:49:37,270 +want to create a new array and a new loop and a + +761 +00:49:37,270 --> 00:49:39,550 +new print. No, we have to think about how to + +762 +00:49:39,550 --> 00:49:41,810 +benefit from the object-oriented that we studied + +763 +00:49:41,810 --> 00:49:46,620 +so that we don't create useless code because we + +764 +00:49:46,620 --> 00:49:51,480 +studied something important. That inheritance has + +765 +00:49:51,480 --> 00:49:54,800 +effects. The first benefit of inheritance is that + +766 +00:49:54,800 --> 00:49:56,620 +subclasses inherited everything from the parent + +767 +00:49:56,620 --> 00:49:59,520 +without rewriting it. We saw this a while ago. The + +768 +00:49:59,520 --> 00:50:03,380 +second thing is that subclasses also took the type + +769 +00:50:03,380 --> 00:50:08,360 +of superclass. So it's not the full-time employee + +770 +00:50:08,360 --> 00:50:10,980 +that extends to another employee. The full-time + +771 +00:50:10,980 --> 00:50:15,900 +employee is also a type of employee. Because they + +772 +00:50:15,900 --> 00:50:17,320 +used to tell us these things, but when we look at + +773 +00:50:17,320 --> 00:50:19,000 +its application, what did it do? What did we gain + +774 +00:50:19,000 --> 00:50:21,380 +when they tell us that the subclass is a kind of + +775 +00:50:21,380 --> 00:50:25,800 +superclass? What did it gain? How did we gain from + +776 +00:50:25,800 --> 00:50:27,280 +this information? Can you tell me? + +777 +00:50:31,240 --> 00:50:33,900 +Now, the subclass took a kind of superclass. What + +778 +00:50:33,900 --> 00:50:34,720 +did we gain from this? + +779 +00:50:38,210 --> 00:50:40,750 +Is that we can put them in one array, right or + +780 +00:50:40,750 --> 00:50:44,050 +not? If I made an array of employee type, can I + +781 +00:50:44,050 --> 00:50:46,650 +put full-time employee in it? I can put it in it. + +782 +00:50:46,930 --> 00:50:51,910 +Any kind of subclass, okay? I can put it in this + +783 +00:50:51,910 --> 00:50:56,270 +array. So I can say employee. No, I don't even + +784 +00:50:56,270 --> 00:50:58,570 +want to know. You took the array list, right? + +785 +00:50:58,950 --> 00:51:04,230 +Okay, I want to say array list, employee, okay. + +786 +00:51:04,350 --> 00:51:08,850 +Call it, for example, employees, equals new arraylist + +787 +00:51:08,850 --> 00:51:12,350 +because + +788 +00:51:12,350 --> 00:51:18,070 +employees dot add. I + +789 +00:51:18,070 --> 00:51:25,450 +can put FTE1 and employees FTE2 + +790 +00:51:25,450 --> 00:51:27,030 +and employees. + +791 +00:51:32,530 --> 00:51:38,510 +Did I make an error? No. This means that the + +792 +00:51:38,510 --> 00:51:42,810 +subclass took the type of the superclass. What did + +793 +00:51:42,810 --> 00:51:45,410 +I gain from this in reality? For example, if I + +794 +00:51:45,410 --> 00:51:48,630 +take these different subclass types and put them + +795 +00:51:48,630 --> 00:51:54,130 +in one array, it means that tomorrow if you make a + +796 +00:51:54,130 --> 00:51:56,550 +third type, a fourth type, a fifth type, you will + +797 +00:51:56,550 --> 00:51:58,170 +have the same array. You don't have to make a new + +798 +00:51:58,170 --> 00:52:05,790 +type. It's clear, guys. But of course, since you + +799 +00:52:05,790 --> 00:52:08,330 +added them to the list of employees, they started + +800 +00:52:08,330 --> 00:52:12,430 +to see themselves as employees. Like you, from + +801 +00:52:12,430 --> 00:52:14,930 +different projects, different cities, different + +802 +00:52:14,930 --> 00:52:17,850 +origins, but I see you as students. I have nothing + +803 +00:52:17,850 --> 00:52:21,320 +to do with anything else. Any private matters that + +804 +00:52:21,320 --> 00:52:23,220 +I don't know about you, I don't care to know about + +805 +00:52:23,220 --> 00:52:26,700 +them. I see you as a student. Do you have a + +806 +00:52:26,700 --> 00:52:28,460 +university number? Do you pay taxes? + +807 +00:52:31,460 --> 00:52:35,620 +Anything else, I don't care about it. Now, we want + +808 +00:52:35,620 --> 00:52:38,540 +to benefit, we want to continue this guide. This + +809 +00:52:38,540 --> 00:52:42,700 +guide I have is a list of employees. Can I go + +810 +00:52:42,700 --> 00:52:45,920 +through this list and calculate the salaries of + +811 +00:52:45,920 --> 00:52:50,380 +the employees? We can or we can't? Let's see. Let's + +812 +00:52:50,380 --> 00:52:53,900 +say for loop and end this lecture, okay? For each + +813 +00:52:53,900 --> 00:52:58,780 +employee, enhanced for loop. E exists where? In + +814 +00:52:58,780 --> 00:53:07,040 +employees, okay? Let's say system.out.println E + +815 +00:53:07,040 --> 00:53:12,750 +dot. I saw get job title, get ID, get name, but I + +816 +00:53:12,750 --> 00:53:16,710 +don't have the proof of what? Calculation of + +817 +00:53:16,710 --> 00:53:20,790 +salary. Well, we wrote it, didn't we write it in + +818 +00:53:20,790 --> 00:53:22,910 +the full-time employee? And we wrote it in the + +819 +00:53:22,910 --> 00:53:24,950 +part-time employee? Well, why didn't he see it? + +820 +00:53:26,630 --> 00:53:28,910 +Well, because it's not in the superclass. Well, we + +821 +00:53:28,910 --> 00:53:32,330 +agreed a while ago that it shouldn't be written in + +822 +00:53:32,330 --> 00:53:35,410 +the superclass. Because each person has a + +823 +00:53:35,410 --> 00:53:35,950 +different salary account. + +824 +00:53:39,140 --> 00:53:42,820 +فما راح نقدر نطبق .. اش حل المشكلة هذه؟ هذا ما + +825 +00:53:42,820 --> 00:53:46,260 +سنتعرف عليه في الحلقة القادمة. تمام، قوى أعطيكوا + +826 +00:53:46,260 --> 00:53:46,620 +العافية diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DrgwxPQBKK4_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DrgwxPQBKK4_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..c7155e14de3566dfecdc6de3497ceaced2fbdf0a --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/DrgwxPQBKK4_postprocess.srt @@ -0,0 +1,3304 @@ +1 +00:00:05,470 --> 00:00:10,150 +بسم الله الرحمن الرحيم، يعطيكم العفو شباب، بنرحب + +2 +00:00:10,150 --> 00:00:13,830 +فيكم في المحاضرة التانية من مساق تصميم عمارة + +3 +00:00:13,830 --> 00:00:16,890 +البرمجية، في المحاضرة الماضية عطينا بس تمهيد و + +4 +00:00:16,890 --> 00:00:22,770 +syllabus بتاع المساق I would like to remind those + +5 +00:00:22,770 --> 00:00:25,590 +who did not attend the previous lecture that this + +6 +00:00:25,590 --> 00:00:30,650 +course focuses on the concept of software design + +7 +00:00:30,650 --> 00:00:36,690 +patterns or software design patterns. In short, + +8 +00:00:36,850 --> 00:00:40,210 +software design patterns are solutions to common + +9 +00:00:40,210 --> 00:00:43,150 +software problems. These solutions to software + +10 +00:00:43,150 --> 00:00:45,610 +problems are provided by former professional + +11 +00:00:45,610 --> 00:00:49,530 +programmersthey were working on big projects and + +12 +00:00:49,530 --> 00:00:52,590 +they advised us to apply these solutions so that + +13 +00:00:52,590 --> 00:00:56,610 +you can make high quality programming units which + +14 +00:00:56,610 --> 00:01:00,630 +means that if you want to add something to your + +15 +00:01:00,630 --> 00:01:04,750 +units, you can modify it and it will be easily + +16 +00:01:04,750 --> 00:01:07,130 +done. We know that if you studied software + +17 +00:01:07,130 --> 00:01:09,660 +engineering, the concept of Agile and you know + +18 +00:01:09,660 --> 00:01:13,520 +that Agile requires that the requirements of the + +19 +00:01:13,520 --> 00:01:16,880 +application change constantly because it is not + +20 +00:01:16,880 --> 00:01:20,060 +yet clear or specific to you the requirements so + +21 +00:01:20,060 --> 00:01:21,600 +this means that you need to change your + +22 +00:01:21,600 --> 00:01:25,020 +application constantly sometimes the client asks + +23 +00:01:25,020 --> 00:01:26,980 +for a small modification but this modification + +24 +00:01:26,980 --> 00:01:31,680 +requires you to bring the whole program but if you + +25 +00:01:31,680 --> 00:01:33,660 +designed the program correctly as we will see + +26 +00:01:33,660 --> 00:01:37,260 +through the Design Patterns applicationIf someone + +27 +00:01:37,260 --> 00:01:40,060 +asks you to modify a program, you can do it + +28 +00:01:40,060 --> 00:01:46,700 +easily. Not every code is good code. There is a + +29 +00:01:46,700 --> 00:01:48,280 +big difference between good code and bad code. + +30 +00:01:51,180 --> 00:01:53,100 +Sometimes the code is good, sometimes it is bad. + +31 +00:01:53,600 --> 00:01:56,220 +But if someone asks you to change something, you + +32 +00:01:56,220 --> 00:01:59,340 +can stay with it for weeks. This is a very + +33 +00:01:59,340 --> 00:02:02,160 +negative point. The importance of this topic is + +34 +00:02:02,160 --> 00:02:06,300 +when teams work together.Okay, teams together, I + +35 +00:02:06,300 --> 00:02:08,340 +want to write a part of the program and others + +36 +00:02:08,340 --> 00:02:11,560 +want to link it to his own part Okay, he does not + +37 +00:02:11,560 --> 00:02:14,580 +have to come and understand what I did and how to + +38 +00:02:14,580 --> 00:02:16,940 +link my work to his work Okay, he wants to take + +39 +00:02:16,940 --> 00:02:20,080 +his code and use it easily and link it easily + +40 +00:02:20,080 --> 00:02:21,600 +without going into complications and understand + +41 +00:02:21,600 --> 00:02:26,100 +details Okay, I can make a correct code, but he + +42 +00:02:26,100 --> 00:02:30,300 +comes and uses it and finds a lot of problemsSo + +43 +00:02:30,300 --> 00:02:34,320 +this idea of design patterns, and I told you in + +44 +00:02:34,320 --> 00:02:36,060 +the previous lecture that if you go and ask any + +45 +00:02:36,060 --> 00:02:39,620 +person working in a software company, they will + +46 +00:02:39,620 --> 00:02:41,800 +tell you that all work depends on design patterns + +47 +00:02:41,800 --> 00:02:43,900 +and understanding them correctly. + +48 +00:02:45,720 --> 00:02:50,840 +So this subject mainly focuses on applying design + +49 +00:02:50,840 --> 00:02:55,660 +patterns and how to design code better.In the + +50 +00:02:55,660 --> 00:02:57,440 +previous lecture, I said that these design + +51 +00:02:57,440 --> 00:03:02,000 +patterns are based on the principles of object + +52 +00:03:02,000 --> 00:03:04,520 +-oriented programming. That is, you need to have a + +53 +00:03:04,520 --> 00:03:07,460 +good understanding of OOP in order to be able to + +54 +00:03:07,460 --> 00:03:09,820 +follow the design patterns. If you don't have a + +55 +00:03:09,820 --> 00:03:11,360 +good understanding of OOP, you will be defeated in + +56 +00:03:11,360 --> 00:03:14,260 +this subject. In order to reach the goal of the + +57 +00:03:14,260 --> 00:03:18,480 +previous lecture, you need to have at least one + +58 +00:03:18,480 --> 00:03:22,820 +program and two programs. Those who didn't take + +59 +00:03:22,820 --> 00:03:25,340 +these two programs are not qualified to have one + +60 +00:03:25,340 --> 00:03:28,440 +formula. You can't say I walk and study this with + +61 +00:03:28,440 --> 00:03:34,380 +that. No, you can't. The first week of this week + +62 +00:03:34,380 --> 00:03:36,720 +and the next week, we talked in the previous + +63 +00:03:36,720 --> 00:03:38,740 +lecture about what we are going to feed is a + +64 +00:03:38,740 --> 00:03:41,440 +review of the concept of object-oriented. I don't + +65 +00:03:41,440 --> 00:03:43,040 +consider it a review, I consider it a part of the + +66 +00:03:43,040 --> 00:03:46,100 +matter.These two weeks, if you understand them + +67 +00:03:46,100 --> 00:03:49,480 +well, everything else will be easy, everything + +68 +00:03:49,480 --> 00:03:53,280 +else will be easy, okay? So focus with me to + +69 +00:03:53,280 --> 00:03:54,960 +understand and review the concepts of object + +70 +00:03:54,960 --> 00:03:57,480 +-oriented programming, and the lecture will be + +71 +00:03:57,480 --> 00:04:00,700 +filmed, and you can review the examples that I + +72 +00:04:00,700 --> 00:04:00,960 +will present. + +73 +00:04:03,770 --> 00:04:07,010 +Okay guys, now we will review the concepts of + +74 +00:04:07,010 --> 00:04:09,110 +object oriented programming and also the UML + +75 +00:04:09,110 --> 00:04:13,010 +diagrams that you also studied, but I will review + +76 +00:04:13,010 --> 00:04:14,270 +them because they are important in understanding + +77 +00:04:14,270 --> 00:04:21,350 +design patterns. Okay, to explain or review the + +78 +00:04:21,350 --> 00:04:22,950 +concept of object oriented programming, we will + +79 +00:04:22,950 --> 00:04:26,190 +review it through an example, okay?I will propose + +80 +00:04:26,190 --> 00:04:29,930 +a specific example, I will write the code, I will + +81 +00:04:29,930 --> 00:04:32,930 +modify it, and through this example, we will + +82 +00:04:32,930 --> 00:04:35,270 +return to the concepts of object-oriented + +83 +00:04:35,270 --> 00:04:40,690 +programming. Ok guys, we agreed before that when + +84 +00:04:40,690 --> 00:04:42,870 +you come to do any program, the first thing you + +85 +00:04:42,870 --> 00:04:46,330 +think about is what are the things or entities + +86 +00:04:46,330 --> 00:04:49,220 +present in this program. For example, you want to + +87 +00:04:49,220 --> 00:04:50,900 +make a program for acceptance and registration, + +88 +00:04:51,140 --> 00:04:53,620 +for university students and so on. You come and + +89 +00:04:53,620 --> 00:04:55,220 +think and say that the things in the application + +90 +00:04:55,220 --> 00:04:58,440 +are the student, the teacher, the teacher, right + +91 +00:04:58,440 --> 00:05:01,440 +or not? And each of these three has many + +92 +00:05:01,440 --> 00:05:02,480 +attributes. + +93 +00:05:04,660 --> 00:05:07,340 +So since each of these things has many attributes, + +94 +00:05:07,500 --> 00:05:11,380 +you collect these attributes and make a class. So + +95 +00:05:11,380 --> 00:05:13,940 +that in the end you see all the student, all his + +96 +00:05:13,940 --> 00:05:17,300 +information and details as one thing. We explained + +97 +00:05:17,300 --> 00:05:18,720 +to you how programming is one thing, right or not? + +98 +00:05:19,680 --> 00:05:22,040 +So these entities in the program represent + +99 +00:05:22,040 --> 00:05:24,400 +everything in the entity in a class. You make a + +100 +00:05:24,400 --> 00:05:27,360 +marketing program in products, the product itself + +101 +00:05:27,360 --> 00:05:31,200 +is a class. Because the product has a lot of data. + +102 +00:05:31,400 --> 00:05:33,900 +Product name, number, price, expiration date, all + +103 +00:05:33,900 --> 00:05:37,490 +this stuff. It makes a news program. The news + +104 +00:05:37,490 --> 00:05:40,630 +itself is an entity. Because it has a title, + +105 +00:05:41,030 --> 00:05:43,710 +details, approved photos, who is responsible for + +106 +00:05:43,710 --> 00:05:45,290 +the news, what is the history of adding the news, + +107 +00:05:46,350 --> 00:05:48,750 +what is the classification of the news. For + +108 +00:05:48,750 --> 00:05:54,050 +example, if we make a program for employees, Human + +109 +00:05:54,050 --> 00:05:56,730 +Resources, it stores the data of employees and + +110 +00:05:56,730 --> 00:06:00,000 +others. So when you think about it, since I'm + +111 +00:06:00,000 --> 00:06:01,640 +dealing with employees, the employee has multiple + +112 +00:06:01,640 --> 00:06:04,880 +data. The name of the employee, his number, his + +113 +00:06:04,880 --> 00:06:08,940 +job title, and his salary. So you consider the + +114 +00:06:08,940 --> 00:06:12,280 +employee an entity, so you make him a class to + +115 +00:06:12,280 --> 00:06:15,080 +collect the attributes of the employee. So we come + +116 +00:06:15,080 --> 00:06:18,580 +here and + +117 +00:06:18,580 --> 00:06:19,860 +make a class that represents + +118 +00:06:24,650 --> 00:06:28,310 +I named it employee on the basis here I want to + +119 +00:06:28,310 --> 00:06:31,370 +put the attributes of the employee which is for + +120 +00:06:31,370 --> 00:06:36,910 +example string name id job title for example all + +121 +00:06:36,910 --> 00:06:41,230 +these are the type of string I have float basic + +122 +00:06:41,230 --> 00:06:48,950 +salary I have for example Boolean has insurance + +123 +00:06:48,950 --> 00:06:52,470 +has health insurance or not Boolean is married + +124 +00:06:57,410 --> 00:07:08,270 +Ent number of children these are + +125 +00:07:08,270 --> 00:07:12,070 +the attributes specific to the employee and we + +126 +00:07:12,070 --> 00:07:14,790 +want to encapsulate these attributes we want to + +127 +00:07:14,790 --> 00:07:18,310 +make them setters and getters so we come here and + +128 +00:07:18,310 --> 00:07:21,110 +tell Netbeans to make them encapsulate fields + +129 +00:07:24,870 --> 00:07:27,370 +Automatic will make them all private and will make + +130 +00:07:27,370 --> 00:07:31,190 +them all setters and getters This is the class + +131 +00:07:31,190 --> 00:07:36,910 +that represents the employee, if I go to main and + +132 +00:07:36,910 --> 00:07:39,070 +I can create object from employee + +133 +00:07:45,460 --> 00:07:49,100 +this is E1 through setters and getters I can make + +134 +00:07:49,100 --> 00:07:53,020 +a set for whom? for the attributes of the employee + +135 +00:07:53,020 --> 00:08:00,500 +E1.setid id is string + +136 +00:08:14,690 --> 00:08:21,170 +And so on, okay? These are data that we created an + +137 +00:08:21,170 --> 00:08:23,330 +object for the employee and gave him some data, + +138 +00:08:23,510 --> 00:08:28,790 +some of the attributes in it Now + +139 +00:08:31,110 --> 00:08:33,450 +you can create an object employee without passing + +140 +00:08:33,450 --> 00:08:35,550 +any data to him, right or wrong? nobody forces you + +141 +00:08:35,550 --> 00:08:39,350 +to study the setter methods for those who want, we + +142 +00:08:39,350 --> 00:08:42,490 +restrict that no, in order for someone to create + +143 +00:08:42,490 --> 00:08:45,310 +or open a file for an employee he must at least + +144 +00:08:45,310 --> 00:08:49,490 +pass the name and the ID, at least the rest can do + +145 +00:08:49,490 --> 00:08:54,190 +it later so now we restrict this thing by making a + +146 +00:08:54,190 --> 00:08:57,070 +constructor so now we come to the employee, the + +147 +00:08:57,070 --> 00:09:00,210 +employee has a constructorYes, there is a + +148 +00:09:00,210 --> 00:09:02,390 +constructor which is the default constructor which + +149 +00:09:02,390 --> 00:09:05,630 +is the empty constructor, okay? So we come to this + +150 +00:09:05,630 --> 00:09:09,270 +class and we want to create a constructor with the + +151 +00:09:09,270 --> 00:09:12,150 +same name as the class and I want to specify two + +152 +00:09:12,150 --> 00:09:18,110 +attributes which are the name and + +153 +00:09:18,110 --> 00:09:21,510 +the id and here of course I say this.name + +154 +00:09:29,680 --> 00:09:32,000 +That's why I said that anyone who wants to create + +155 +00:09:32,000 --> 00:09:35,100 +an object with an employee must pass at least the + +156 +00:09:35,100 --> 00:09:39,220 +name and the id So that I don't have an error in + +157 +00:09:39,220 --> 00:09:45,700 +the main method No, of course, why wasn't there a + +158 +00:09:45,700 --> 00:09:46,640 +constructor in the beginning and it was accepted? + +159 +00:09:47,320 --> 00:09:50,760 +Because we said that when you create a constructor + +160 +00:09:50,760 --> 00:09:53,200 +in the class, you automatically build the + +161 +00:09:53,200 --> 00:09:57,050 +constructor The default constructor has been + +162 +00:09:57,050 --> 00:10:00,450 +created. He will say, I want it. We want to make + +163 +00:10:00,450 --> 00:10:05,050 +the programmer have two options. He can create an + +164 +00:10:05,050 --> 00:10:08,570 +empty employee and then fill it. Or he can create + +165 +00:10:08,570 --> 00:10:11,210 +an employee and give it a name and ID. In this + +166 +00:10:11,210 --> 00:10:14,710 +case, you need to write the two constructors. You + +167 +00:10:14,710 --> 00:10:19,770 +can say public employee. + +168 +00:10:19,790 --> 00:10:22,330 +What is this? This is an empty constructor. Now I + +169 +00:10:22,330 --> 00:10:25,900 +have two constructors. anyone can use it, + +170 +00:10:25,920 --> 00:10:30,800 +depending on the parameters you pass here for + +171 +00:10:30,800 --> 00:10:34,920 +example, it is silent, it considers that you want + +172 +00:10:34,920 --> 00:10:37,680 +an empty constructor but as I said, if you wrote a + +173 +00:10:37,680 --> 00:10:40,340 +constructor, the default constructor is gone, + +174 +00:10:40,580 --> 00:10:45,820 +consider it is not present let's remove the + +175 +00:10:45,820 --> 00:10:49,120 +default constructor, so now I have to pass at + +176 +00:10:49,120 --> 00:10:51,000 +least two information, name + +177 +00:10:56,120 --> 00:10:58,200 +and the ID. Of course, I can change the ID later + +178 +00:10:58,200 --> 00:11:00,740 +through the setter but the idea of the constructor + +179 +00:11:00,740 --> 00:11:02,140 +is that when you have the construction, you have + +180 +00:11:02,140 --> 00:11:04,340 +to pass these two information. + +181 +00:11:12,060 --> 00:11:17,360 +Okay, fine. Now, the class that we made, Hadi, we + +182 +00:11:17,360 --> 00:11:20,300 +made it to collect the attributes of the employee. + +183 +00:11:20,860 --> 00:11:23,240 +That's it, instead of writing the attributes in + +184 +00:11:23,240 --> 00:11:27,040 +the main, we collected them in the class. and we + +185 +00:11:27,040 --> 00:11:30,880 +can also use the class to put rules in it for + +186 +00:11:30,880 --> 00:11:34,240 +example, one of the things that I need to do is to + +187 +00:11:34,240 --> 00:11:38,220 +calculate the salary of the employee the total + +188 +00:11:38,220 --> 00:11:41,380 +salary because I can calculate his salary in two + +189 +00:11:41,380 --> 00:11:44,580 +ways first, how much salary does the employee need + +190 +00:11:44,580 --> 00:11:47,720 +to calculate? for example, I have one of the + +191 +00:11:47,720 --> 00:11:50,280 +attributes, the basic salary but I didn't delete + +192 +00:11:50,280 --> 00:11:54,780 +the net salary The net salary, he has insurance, + +193 +00:11:54,900 --> 00:11:56,960 +we divide it, we get married, we add to it, he has + +194 +00:11:56,960 --> 00:12:00,580 +children, we add money to them, and so on. I can + +195 +00:12:00,580 --> 00:12:02,880 +do this calculation in the main. But now, from the + +196 +00:12:02,880 --> 00:12:07,520 +code organization door, put the functions specific + +197 +00:12:07,520 --> 00:12:11,890 +to each entity inside the class item.means the + +198 +00:12:11,890 --> 00:12:14,530 +salary of the employee, leave it in the class, not + +199 +00:12:14,530 --> 00:12:17,450 +the salary of the employee will force me to + +200 +00:12:17,450 --> 00:12:20,010 +attribute the salary of the employee, okay? So + +201 +00:12:20,010 --> 00:12:21,910 +that I can calculate his salary, so I do this + +202 +00:12:21,910 --> 00:12:23,950 +process inside the class of the employee, this is + +203 +00:12:23,950 --> 00:12:26,750 +how you distribute the functions that you have in + +204 +00:12:26,750 --> 00:12:30,630 +the program on classes this distributes your code + +205 +00:12:30,630 --> 00:12:33,110 +instead of focusing on one place and makes it + +206 +00:12:33,110 --> 00:12:35,850 +easier for you to modify it tomorrow someone told + +207 +00:12:35,850 --> 00:12:38,870 +you to change the salary of the employee you would + +208 +00:12:38,870 --> 00:12:40,990 +immediately think that this is the salary of the + +209 +00:12:40,990 --> 00:12:43,650 +employee which is present in a table in the class + +210 +00:12:43,650 --> 00:12:45,150 +of the employee so I go to the class of the + +211 +00:12:45,150 --> 00:12:49,310 +employee and change it immediately so now we go to + +212 +00:12:49,310 --> 00:12:54,690 +the class employee and + +213 +00:12:54,690 --> 00:12:57,730 +we make a table for the salary of the employeeThis + +214 +00:12:57,730 --> 00:13:01,090 +is for public, because I can claim it from main, I + +215 +00:13:01,090 --> 00:13:03,830 +want it to return to float, calculate and return, + +216 +00:13:04,650 --> 00:13:11,040 +calc, net salary for example because it doesn't + +217 +00:13:11,040 --> 00:13:13,160 +want to take anything because what will it + +218 +00:13:13,160 --> 00:13:16,400 +actually use? the attributes of the item because + +219 +00:13:16,400 --> 00:13:20,900 +here any .. for example we say I define a variable + +220 +00:13:20,900 --> 00:13:25,000 +here net salary will start from where? from this + +221 +00:13:25,000 --> 00:13:30,420 +dot basic salary because if the net salary or + +222 +00:13:30,420 --> 00:13:33,580 +excuse me if it was first thing has insurance if + +223 +00:13:33,580 --> 00:13:36,680 +he has health insurance okay we go to the net + +224 +00:13:36,680 --> 00:13:42,400 +salary and subtract from it 50 for example if he + +225 +00:13:42,400 --> 00:13:46,960 +was married net + +226 +00:13:46,960 --> 00:13:52,840 +salary plus 20 if he had children + +227 +00:14:01,200 --> 00:14:05,260 +For example, it will add with the number of + +228 +00:14:05,260 --> 00:14:07,020 +children, if the number of children is zero, of + +229 +00:14:07,020 --> 00:14:09,520 +course, it will not add anything. Of course, I + +230 +00:14:09,520 --> 00:14:13,120 +still have an error, why? The value must return + +231 +00:14:13,120 --> 00:14:21,300 +float, so I say in the end return net + +232 +00:14:21,300 --> 00:14:26,520 +salary. Okay, now I'm in the main method. + +233 +00:14:35,960 --> 00:14:37,760 +I can tell him to calculate the salary of an + +234 +00:14:37,760 --> 00:14:42,020 +employee E1.CalculateNetSalary + +235 +00:14:42,020 --> 00:14:47,540 +and + +236 +00:14:47,540 --> 00:14:51,240 +this + +237 +00:14:51,240 --> 00:14:56,540 +will calculate the salary of the employee ok guys + +238 +00:14:56,540 --> 00:15:01,100 +ok now we go to the class where we put the + +239 +00:15:01,100 --> 00:15:04,100 +attributes where we put the values related to this + +240 +00:15:04,100 --> 00:15:07,970 +entity or the classLet's move now to another + +241 +00:15:07,970 --> 00:15:10,070 +point, because I took a class representing the + +242 +00:15:10,070 --> 00:15:12,930 +employees in my company or institution, the + +243 +00:15:12,930 --> 00:15:15,430 +manager came and said to me, no, now the employees + +244 +00:15:15,430 --> 00:15:19,210 +will be of different types, okay? For example, we + +245 +00:15:19,210 --> 00:15:21,870 +have a full-time employee and we have a part-time + +246 +00:15:21,870 --> 00:15:27,280 +employee And he could be an unemployed employee, a + +247 +00:15:27,280 --> 00:15:29,560 +contract worker, a cut-off worker. They started + +248 +00:15:29,560 --> 00:15:32,340 +inventing new things, right or wrong, to make + +249 +00:15:32,340 --> 00:15:36,940 +people laugh. And each one has different + +250 +00:15:36,940 --> 00:15:39,400 +attributes from the other. For example, the full + +251 +00:15:39,400 --> 00:15:45,260 +-time employee has a basic salary, and the + +252 +00:15:45,260 --> 00:15:47,240 +information we provided, for example, that he has + +253 +00:15:47,240 --> 00:15:49,180 +insurance, marries children, who are these people + +254 +00:15:49,180 --> 00:15:52,410 +related to? The full-time employee. Because the + +255 +00:15:52,410 --> 00:15:54,930 +part-time employee is a separate account, a part + +256 +00:15:54,930 --> 00:15:57,510 +-time employee with the watch. It has two + +257 +00:15:57,510 --> 00:16:01,050 +information about it. The number of hours and the + +258 +00:16:01,050 --> 00:16:02,730 +price of the watch. It has nothing to do with + +259 +00:16:02,730 --> 00:16:04,270 +getting married or getting married or getting + +260 +00:16:04,270 --> 00:16:04,990 +married. It has nothing to do with it. It has + +261 +00:16:04,990 --> 00:16:06,710 +nothing to do with it. It has nothing to do with + +262 +00:16:06,710 --> 00:16:07,090 +it. It has nothing to do with it. It has nothing + +263 +00:16:07,090 --> 00:16:07,410 +to do with it. It has nothing to do with it. It + +264 +00:16:07,410 --> 00:16:07,590 +has nothing to do with it. It has nothing to do + +265 +00:16:07,590 --> 00:16:10,190 +with it. It has nothing to do with it. It has + +266 +00:16:10,190 --> 00:16:13,610 +nothing to do with it. It has nothing to do with + +267 +00:16:13,610 --> 00:16:16,270 +it. It has nothing to do with it. It has nothing + +268 +00:16:16,270 --> 00:16:18,370 +to do with it. It has nothing + +269 +00:16:21,870 --> 00:16:24,390 +it doesn't work anymore that the class employee + +270 +00:16:24,390 --> 00:16:28,030 +represents all types of employees because each one + +271 +00:16:28,030 --> 00:16:32,030 +of them has different data on each other this + +272 +00:16:32,030 --> 00:16:35,970 +means that each one should have a class to collect + +273 +00:16:35,970 --> 00:16:39,210 +the attributes related to him the full-time + +274 +00:16:39,210 --> 00:16:42,750 +employee has a basic salary, insurance, number of + +275 +00:16:42,750 --> 00:16:45,830 +children, marriage and others the part-time + +276 +00:16:45,830 --> 00:16:47,410 +employee has specific information about the number + +277 +00:16:47,410 --> 00:16:50,050 +of hours and hours of the hour and so on so each + +278 +00:16:50,050 --> 00:16:54,670 +one has a classbut at the same time, all of them + +279 +00:16:54,670 --> 00:16:59,610 +also participate in certain information such as + +280 +00:16:59,610 --> 00:17:04,390 +name, ID and job title, all of them have this + +281 +00:17:04,390 --> 00:17:05,590 +information, it does not differ from one employee + +282 +00:17:05,590 --> 00:17:09,550 +to another because what is the solution when he + +283 +00:17:09,550 --> 00:17:13,470 +told me to work with different types of employees? + +284 +00:17:14,740 --> 00:17:17,840 +because you can think like this you can call a + +285 +00:17:17,840 --> 00:17:21,680 +class employee and say we want to make a class + +286 +00:17:21,680 --> 00:17:26,240 +called full + +287 +00:17:26,240 --> 00:17:30,360 +-time employee this + +288 +00:17:30,360 --> 00:17:33,120 +is short for full-time employee and another class + +289 +00:17:33,120 --> 00:17:37,220 +called part-time employee and a third class called + +290 +00:17:37,220 --> 00:17:39,680 +contract employee + +291 +00:17:41,330 --> 00:17:47,570 +Now, what are his attributes? Name, ID, job title, + +292 +00:17:48,090 --> 00:17:50,970 +basic salary, + +293 +00:17:54,130 --> 00:17:54,810 +insurance, + +294 +00:17:57,450 --> 00:18:02,710 +married or not, number of children, part-time + +295 +00:18:02,710 --> 00:18:06,410 +employee, hours, number of hours + +296 +00:18:12,770 --> 00:18:20,270 +rate and it also has name and ID and job title the + +297 +00:18:20,270 --> 00:18:24,650 +contract based employee also has name and ID and + +298 +00:18:24,650 --> 00:18:33,890 +job title and salary and it has start date and end + +299 +00:18:33,890 --> 00:18:37,390 +date because + +300 +00:18:37,390 --> 00:18:42,520 +each one of these they share things like name, ID + +301 +00:18:42,520 --> 00:18:46,280 +and GPTITLE and disagree on other things because + +302 +00:18:46,280 --> 00:18:49,000 +you can ignore the employee and make a class for + +303 +00:18:49,000 --> 00:18:53,280 +each one of them separated from each other but + +304 +00:18:53,280 --> 00:18:55,440 +this means that there are things that you will + +305 +00:18:55,440 --> 00:18:59,260 +repeat because the attributes name, ID and GPTITLE + +306 +00:18:59,260 --> 00:19:03,620 +will have to be put here and here and here okay? + +307 +00:19:03,840 --> 00:19:05,320 +and put along with them the sitters and the + +308 +00:19:05,320 --> 00:19:08,410 +gettersand tomorrow if you tell me to add a fourth + +309 +00:19:08,410 --> 00:19:11,810 +information, like the ID number for example, we + +310 +00:19:11,810 --> 00:19:15,270 +have to add it here, or if I have other types of + +311 +00:19:15,270 --> 00:19:19,010 +employees, I have to add this attribute to all the + +312 +00:19:19,010 --> 00:19:23,430 +classes. So they tell you, no, we want to benefit + +313 +00:19:23,430 --> 00:19:26,690 +from an important feature for object oriented + +314 +00:19:26,690 --> 00:19:30,310 +programming, which is inheritance. If you have + +315 +00:19:30,310 --> 00:19:33,950 +classes like these that share certain attributes, + +316 +00:19:34,290 --> 00:19:37,070 +why would you put them in more than one class? I + +317 +00:19:37,070 --> 00:19:43,090 +would tell you to take all these common things, + +318 +00:19:43,550 --> 00:19:49,410 +remove them from here and make a class, one + +319 +00:19:49,410 --> 00:19:56,890 +parent, call it employee, put the ID, name and job + +320 +00:19:56,890 --> 00:20:03,650 +title in itAnd then these guys, what do you have + +321 +00:20:03,650 --> 00:20:06,970 +to tell them? Go and do inherit, inherit from + +322 +00:20:06,970 --> 00:20:11,750 +whom? From the employee, from the parent This Sam + +323 +00:20:11,750 --> 00:20:15,130 +Sam, the inherit, which is in Java, we call it + +324 +00:20:15,130 --> 00:20:19,550 +Extend this means that for example this class + +325 +00:20:19,550 --> 00:20:22,270 +which is the part-time employee what attributes + +326 +00:20:22,270 --> 00:20:25,330 +will be present in it? the number of hours and the + +327 +00:20:25,330 --> 00:20:29,830 +hour rate and inherited from whom? from the + +328 +00:20:29,830 --> 00:20:32,050 +employee the ID and the name and the zip title you + +329 +00:20:32,050 --> 00:20:35,970 +don't need to write them here it inherited them + +330 +00:20:35,970 --> 00:20:39,690 +and became as if they are present without you + +331 +00:20:39,690 --> 00:20:43,270 +writing them just by doing what? x2 so you write + +332 +00:20:43,270 --> 00:20:47,850 +one word x2 It made you know everything in the + +333 +00:20:47,850 --> 00:20:51,530 +employee as if it was already there in the part + +334 +00:20:51,530 --> 00:20:56,030 +-time employee I got rid of the repetition here + +335 +00:20:56,030 --> 00:20:58,990 +and here and here That when I put each class, it + +336 +00:20:58,990 --> 00:21:02,350 +extends from here Everything here automatically + +337 +00:21:02,350 --> 00:21:07,430 +took or inherited from all the subclasses And this + +338 +00:21:07,430 --> 00:21:11,630 +provided coding for me Let's implement this word + +339 +00:21:11,630 --> 00:21:14,770 +in my example For the initial employee + +340 +00:21:20,320 --> 00:21:21,860 +because we want to change the employee that came + +341 +00:21:21,860 --> 00:21:30,980 +here all of them will stop working full-time and + +342 +00:21:30,980 --> 00:21:35,080 +based on that, even this guy that has no salary, I + +343 +00:21:35,080 --> 00:21:38,740 +want to fire him let the lady that came here + +344 +00:21:38,740 --> 00:21:44,240 +sleep, because these sitters and getters but + +345 +00:21:44,240 --> 00:21:47,970 +these sitters and getters, the basic salary and + +346 +00:21:47,970 --> 00:21:49,850 +the is married and the insurance and the number of + +347 +00:21:49,850 --> 00:21:52,430 +children, all of these don't need to be here. It's + +348 +00:21:52,430 --> 00:21:54,390 +the gate of the employee that only has things in + +349 +00:21:54,390 --> 00:21:59,790 +it. Okay? Three attributes plus the sitters and + +350 +00:21:59,790 --> 00:22:03,110 +their getters plus the constructor, which takes + +351 +00:22:03,110 --> 00:22:09,650 +the name and the ID. Now I'm going to do two + +352 +00:22:09,650 --> 00:22:13,730 +classes. I actually did this because I want to do + +353 +00:22:13,730 --> 00:22:15,730 +this full-time + +354 +00:22:20,450 --> 00:22:26,710 +employee تمام و هذا بحط فيه ال attributes اللي هم + +355 +00:22:26,710 --> 00:22:29,390 +ال basic salary و ال has insurance و ال is married + +356 +00:22:29,390 --> 00:22:34,250 +و ال number of children و بنعملهم مين ال sitters و + +357 +00:22:34,250 --> 00:22:44,770 +ال getters و + +358 +00:22:44,770 --> 00:22:46,790 +بدنا كمان نعمل ال part-time employee + +359 +00:22:58,970 --> 00:23:05,490 +which is going to be int number of hours float + +360 +00:23:05,490 --> 00:23:23,250 +hour rate and we do setters ok + +361 +00:23:23,250 --> 00:23:27,340 +guys, but you should notice that until nowWe + +362 +00:23:27,340 --> 00:23:30,160 +didn't do extend, okay? So this class has + +363 +00:23:30,160 --> 00:23:32,860 +attributes, it didn't get a name or ID or job + +364 +00:23:32,860 --> 00:23:36,580 +title yet So now we say full-time employee extends + +365 +00:23:36,580 --> 00:23:41,220 +employee + +366 +00:23:41,220 --> 00:23:54,900 +and part-time employee also extends extends + +367 +00:23:54,900 --> 00:23:57,770 +employee Of course, as soon as you do like this, + +368 +00:23:58,350 --> 00:24:02,010 +you will see a red light. Of course, the extent is + +369 +00:24:02,010 --> 00:24:04,430 +fine. It is inherited from whom? From the father. + +370 +00:24:04,810 --> 00:24:07,130 +I can say that the full-time employee, what are + +371 +00:24:07,130 --> 00:24:11,370 +their attributes? Any object that you make from a + +372 +00:24:11,370 --> 00:24:15,630 +full-time employee will have the things inherited + +373 +00:24:15,630 --> 00:24:17,830 +from the parent, which is his name, ID and job + +374 +00:24:17,830 --> 00:24:21,950 +title, plus who? These three. Okay? But let's go + +375 +00:24:21,950 --> 00:24:26,100 +back to our topic. Why did he make an error?Why + +376 +00:24:26,100 --> 00:24:32,040 +did he make a mistake? How? Override of what? + +377 +00:24:34,240 --> 00:24:36,420 +There is no such thing as override of attributes. + +378 +00:24:39,240 --> 00:24:40,280 +Override of these methods + +379 +00:24:54,760 --> 00:25:03,480 +what does super mean + +380 +00:25:03,480 --> 00:25:06,240 +for variables? there is no such thing as super for + +381 +00:25:06,240 --> 00:25:09,300 +variables yes + +382 +00:25:10,240 --> 00:25:13,900 +We need to go to the constructor now to pass the + +383 +00:25:13,900 --> 00:25:15,560 +variables to him because we can't pass the + +384 +00:25:15,560 --> 00:25:21,300 +variables from here Okay, pay attention guys The + +385 +00:25:21,300 --> 00:25:24,840 +problem is really in the constructor and to know + +386 +00:25:24,840 --> 00:25:29,580 +the existing error Now guys, we agreed first to go + +387 +00:25:29,580 --> 00:25:32,160 +back to the employee The employee now has a + +388 +00:25:32,160 --> 00:25:35,880 +constructor, right? If there was no constructor + +389 +00:25:35,880 --> 00:25:39,810 +like this, what did we agree on? there will be a + +390 +00:25:39,810 --> 00:25:42,070 +default constructor. Of course, if I remove the + +391 +00:25:42,070 --> 00:25:45,230 +constructor from the employee, the error is gone. + +392 +00:25:45,770 --> 00:25:47,770 +What does it mean if I put a constructor and there + +393 +00:25:47,770 --> 00:25:50,770 +is an error, and if I remove the constructor, the + +394 +00:25:50,770 --> 00:25:53,110 +error is gone? Because it is present as follows. + +395 +00:25:53,730 --> 00:25:56,150 +Actually, in the full-time employee, there is + +396 +00:25:56,150 --> 00:25:58,530 +something written here as follows. Is there a + +397 +00:25:58,530 --> 00:26:01,050 +constructor in the full-time employee? Yes, what + +398 +00:26:01,050 --> 00:26:04,050 +is it? The default constructor, which is present + +399 +00:26:04,050 --> 00:26:07,050 +even if I did not write it. How does it look like? + +400 +00:26:07,330 --> 00:26:16,080 +PublicFull-time employee? Fadi? And what's inside? + +401 +00:26:16,980 --> 00:26:21,180 +Fadi? No, it's not empty. Yes, what's inside? It's + +402 +00:26:21,180 --> 00:26:24,820 +written inside something like that. This is + +403 +00:26:24,820 --> 00:26:27,980 +definitely written even if you didn't see it + +404 +00:26:27,980 --> 00:26:34,000 +written in front of you. Okay? NowAny constructor + +405 +00:26:34,000 --> 00:26:37,560 +of a subclass must invoke the constructor of the + +406 +00:26:37,560 --> 00:26:40,260 +superclass. What does this mean? First of all, + +407 +00:26:40,300 --> 00:26:43,040 +what is the purpose of the constructor? It is an + +408 +00:26:43,040 --> 00:26:45,400 +indicator. The first indicator that is invoked + +409 +00:26:45,400 --> 00:26:47,880 +when the object is created. Right? What is its + +410 +00:26:47,880 --> 00:26:52,260 +purpose? To initialize attributes. You can benefit + +411 +00:26:52,260 --> 00:26:55,990 +from it that in the constructor of values For the + +412 +00:26:55,990 --> 00:26:58,190 +attributes, like the constructor we made in the + +413 +00:26:58,190 --> 00:27:02,310 +employee Okay, now this is not working in the + +414 +00:27:02,310 --> 00:27:04,530 +employee, it is working in the full-time employee + +415 +00:27:05,160 --> 00:27:07,580 +Ok? So what will happen in this case? Any + +416 +00:27:07,580 --> 00:27:10,240 +constructor of a subclass must copy the + +417 +00:27:10,240 --> 00:27:13,760 +constructor of the superclass. It is a must. So + +418 +00:27:13,760 --> 00:27:17,380 +why is it a must? I say, did you notice that the + +419 +00:27:17,380 --> 00:27:19,940 +subclass has attributes and the superclass has + +420 +00:27:19,940 --> 00:27:22,920 +attributes? The logic tells me that this subclass + +421 +00:27:22,920 --> 00:27:27,400 +copies the attributes of the superclass and this + +422 +00:27:27,400 --> 00:27:28,420 +subclass copies the attributes of the superclass. + +423 +00:27:29,580 --> 00:27:32,960 +This is how it is supposed to work. Ok? So any + +424 +00:27:32,960 --> 00:27:36,700 +constructorSo when I create an object from this, I + +425 +00:27:36,700 --> 00:27:39,740 +don't say new full-time employee it will call this + +426 +00:27:39,740 --> 00:27:42,820 +constructor which will not do anything because it + +427 +00:27:42,820 --> 00:27:46,700 +is empty and from inside it will call the super + +428 +00:27:46,700 --> 00:27:49,460 +constructor which is also empty because I deleted + +429 +00:27:49,460 --> 00:27:54,860 +it from this employee I deleted the constructor + +430 +00:27:54,860 --> 00:27:57,780 +that I wrote So what happened to the existing + +431 +00:27:57,780 --> 00:28:02,060 +constructor which is the default? Now if I return + +432 +00:28:02,060 --> 00:28:06,800 +this constructor We agreed when you studied that + +433 +00:28:06,800 --> 00:28:10,560 +when you put a constructor in a class until what? + +434 +00:28:11,160 --> 00:28:16,780 +Until the default So now in full-time, I have this + +435 +00:28:16,780 --> 00:28:21,700 +empty constructor calling a super-empty This super + +436 +00:28:21,700 --> 00:28:24,860 +-empty, what does it mean? It calls the empty + +437 +00:28:24,860 --> 00:28:29,260 +constructor in the superclass And the superclass + +438 +00:28:29,260 --> 00:28:32,180 +no longer has a constructor? No longer has an + +439 +00:28:32,180 --> 00:28:37,030 +empty constructorDid you get it or not? The + +440 +00:28:37,030 --> 00:28:39,530 +constructor of the subclass calls the constructor + +441 +00:28:39,530 --> 00:28:45,250 +of the superclass The subclass has an empty + +442 +00:28:45,250 --> 00:28:46,930 +constructor that calls the empty constructor in + +443 +00:28:46,930 --> 00:28:49,290 +the superclass And the superclass doesn't have an + +444 +00:28:49,290 --> 00:28:53,650 +empty constructor anymore How do we solve this + +445 +00:28:53,650 --> 00:28:58,230 +problem? We can solve it in more than one wayThe + +446 +00:28:58,230 --> 00:29:01,950 +first way is to go to the super class, it is not + +447 +00:29:01,950 --> 00:29:06,150 +the problem here that the super class is empty, it + +448 +00:29:06,150 --> 00:29:09,090 +is to go to the super class and make the + +449 +00:29:09,090 --> 00:29:14,110 +constructor of the sector public employee + +450 +00:29:14,110 --> 00:29:18,230 +is empty. I went straight to the full-time + +451 +00:29:18,230 --> 00:29:20,750 +employee, what happened? He shut down. That's it, + +452 +00:29:20,850 --> 00:29:23,730 +I found what I was looking for. I want a super + +453 +00:29:23,730 --> 00:29:24,570 +class that is empty, I found it. + +454 +00:29:28,550 --> 00:29:30,870 +But what if you open the door and ask an employee + +455 +00:29:30,870 --> 00:29:34,930 +what? Empty, okay? No, we don't want this + +456 +00:29:34,930 --> 00:29:37,190 +solution. We want to leave the constructor who + +457 +00:29:37,190 --> 00:29:41,450 +takes two arguments, name and id. Come back and + +458 +00:29:41,450 --> 00:29:45,130 +tell me what's wrong here. Error. Because to fix + +459 +00:29:45,130 --> 00:29:48,030 +the error simply, you can .. Okay, did you notice + +460 +00:29:48,030 --> 00:29:50,610 +that there is no empty super, right or not? But + +461 +00:29:50,610 --> 00:29:54,110 +there is a super that takes what? Negative. See + +462 +00:29:54,110 --> 00:29:56,630 +what I'm going to do to silence him. I can put + +463 +00:29:56,630 --> 00:30:01,770 +here null, negative null. Did it shut down or not? + +464 +00:30:02,350 --> 00:30:04,430 +It shut down. It shut down. I went back to him and + +465 +00:30:04,430 --> 00:30:07,650 +said, you have to copy the constructor of the + +466 +00:30:07,650 --> 00:30:10,750 +superclass. I copied it. But what did I tell him? + +467 +00:30:11,370 --> 00:30:15,050 +None. It shut down. He stopped making errors. + +468 +00:30:16,990 --> 00:30:18,950 +Because this solution is programmatically correct, + +469 +00:30:19,230 --> 00:30:23,470 +but still not logical. I originally hired the + +470 +00:30:23,470 --> 00:30:26,470 +employee and hired a constructor in it. Why? To + +471 +00:30:26,470 --> 00:30:29,260 +prevent someone from creating an employee.unless + +472 +00:30:29,260 --> 00:30:32,420 +you give him a name and ID, nothing else, okay? + +473 +00:30:33,100 --> 00:30:37,480 +and this should apply to whom? to the subclasses + +474 +00:30:37,480 --> 00:30:41,140 +as well I mean, you are not allowed to hire an + +475 +00:30:41,140 --> 00:30:44,440 +employee unless you give him a name and ID so the + +476 +00:30:44,440 --> 00:30:47,960 +logic is that this should apply to whom? to the + +477 +00:30:47,960 --> 00:30:53,250 +subclasses what about the subclasses? when you + +478 +00:30:53,250 --> 00:30:55,130 +create a full-time employee, you also need to give + +479 +00:30:55,130 --> 00:30:59,030 +him a name and an ID. So the best solution is to + +480 +00:30:59,030 --> 00:31:01,790 +make the superclass owners want a name and an ID. + +481 +00:31:02,490 --> 00:31:06,330 +You make a constructor here that takes the name + +482 +00:31:06,330 --> 00:31:12,010 +string and the ID string. And then you take this + +483 +00:31:12,010 --> 00:31:17,210 +name and connect it to whom? To the super. And you + +484 +00:31:17,210 --> 00:31:19,990 +take the ID and connect it to the super. + +485 +00:31:22,960 --> 00:31:25,780 +Do you understand this guys? This should be taken + +486 +00:31:25,780 --> 00:31:28,740 +in two programs. This is called Constructor + +487 +00:31:28,740 --> 00:31:30,960 +Chaining. Constructor Chaining is how the + +488 +00:31:30,960 --> 00:31:33,560 +Constructor connects with each other. Constructor + +489 +00:31:33,560 --> 00:31:35,760 +of the subclass always connects with Constructor + +490 +00:31:35,760 --> 00:31:39,480 +of the superclass. And the principle is that you + +491 +00:31:39,480 --> 00:31:41,780 +work in the subclass and the Constructor takes the + +492 +00:31:41,780 --> 00:31:44,880 +same necessary parameters in the superclass. + +493 +00:31:46,440 --> 00:31:48,620 +Because by the way, if you did not put all of this + +494 +00:31:49,510 --> 00:31:51,850 +it will give you an error for sure, but you can + +495 +00:31:51,850 --> 00:31:55,210 +ask the netbeans to solve the problem for you, add + +496 +00:31:55,210 --> 00:31:57,030 +constructor and it will add the constructor that + +497 +00:31:57,030 --> 00:32:00,390 +we wrote, but in the exam there is no right click + +498 +00:32:00,390 --> 00:32:04,190 +and add constructor, okay? You write it, okay? + +499 +00:32:08,710 --> 00:32:10,990 +Because this means that if I go to the employee, + +500 +00:32:11,710 --> 00:32:13,710 +if we add a parameter to the third constructor, + +501 +00:32:14,990 --> 00:32:16,910 +that is, now we say that anyone who wants to + +502 +00:32:16,910 --> 00:32:20,190 +create an employee must specify at least name and + +503 +00:32:20,190 --> 00:32:26,390 +id and job title then I say here string job + +504 +00:32:26,390 --> 00:32:31,290 +title immediately it will hit the full-time + +505 +00:32:31,290 --> 00:32:35,410 +employee it will say come here, the super class + +506 +00:32:35,410 --> 00:32:38,950 +needs three students, okay? then I have to select + +507 +00:32:38,950 --> 00:32:41,830 +the third one I can put null or I can correct what + +508 +00:32:41,830 --> 00:32:46,770 +I did here string job + +509 +00:32:46,770 --> 00:32:51,370 +title and I send the job title to whom? for the + +510 +00:32:51,370 --> 00:32:54,690 +super when it reaches the super the super takes + +511 +00:32:54,690 --> 00:32:56,710 +the name you put it in the name and the id you put + +512 +00:32:56,710 --> 00:33:07,370 +it in this.id and you take this job title is it + +513 +00:33:07,370 --> 00:33:10,410 +clear guys? no the same example I have a part-time + +514 +00:33:10,410 --> 00:33:13,290 +employee who also made a mistake he says well why + +515 +00:33:13,290 --> 00:33:14,670 +did he make a mistake because we agreed on the + +516 +00:33:14,670 --> 00:33:17,940 +gate what is in the existing constructor?No, if + +517 +00:33:17,940 --> 00:33:19,400 +constructor is empty, it will claim that the + +518 +00:33:19,400 --> 00:33:21,400 +parent is empty, and the parent is not empty + +519 +00:33:21,400 --> 00:33:25,520 +either. Okay? The solution is to go and create a + +520 +00:33:25,520 --> 00:33:27,440 +constructor here, create a constructor by itself, + +521 +00:33:27,520 --> 00:33:30,820 +it takes name, id and job title, and passes the + +522 +00:33:30,820 --> 00:33:34,160 +name, id and job title to whom? To the superclass. + +523 +00:33:38,870 --> 00:33:42,470 +Now, in the main method Of course, I don't have it + +524 +00:33:42,470 --> 00:33:45,050 +anymore Now, the point is that I don't make an + +525 +00:33:45,050 --> 00:33:47,690 +object from an employee Right or not, guys? The + +526 +00:33:47,690 --> 00:33:49,590 +point is that I make an object from whom? From a + +527 +00:33:49,590 --> 00:33:51,750 +full-time employee or part-time employee That's + +528 +00:33:51,750 --> 00:33:54,230 +it, but why is this employee made? Just to collect + +529 +00:33:54,230 --> 00:34:02,050 +the common things, okay? Full-time employee FTE1 + +530 +00:34:02,050 --> 00:34:05,470 +equals new full-time + +531 +00:34:07,830 --> 00:34:11,150 +Employee, and it needs 3 information from me Name, + +532 +00:34:12,190 --> 00:34:22,030 +ID, Job title for example Manager Ok? + +533 +00:34:23,250 --> 00:34:26,770 +Did we understand the constructor guys? Ok, now + +534 +00:34:26,770 --> 00:34:30,890 +you can also say that no guys, we also need + +535 +00:34:30,890 --> 00:34:33,470 +someone who wants to do full-time employee, at + +536 +00:34:33,470 --> 00:34:39,090 +least he has to pass the basic salary I found out + +537 +00:34:39,090 --> 00:34:41,710 +that the constructor takes name, id and job title + +538 +00:34:41,710 --> 00:34:50,030 +and we pass it to whom? float basic salary the + +539 +00:34:50,030 --> 00:34:53,290 +constructor of the float employee has four things + +540 +00:34:53,290 --> 00:34:56,270 +what are we going to do? why did we pass the basic + +541 +00:34:56,270 --> 00:35:01,390 +salary? to make initialize to whom? to the basic + +542 +00:35:01,390 --> 00:35:04,470 +salary here so I have to come here and say this + +543 +00:35:05,630 --> 00:35:11,310 +dot basic salary is equal to basic salary the + +544 +00:35:11,310 --> 00:35:14,750 +things that I have, I initialize them the things + +545 +00:35:14,750 --> 00:35:18,530 +that my father has, here you go, take them and + +546 +00:35:18,530 --> 00:35:20,830 +initialize them this is the logic, this is the + +547 +00:35:20,830 --> 00:35:25,530 +correct way do you agree guys? this is the basic + +548 +00:35:25,530 --> 00:35:27,910 +salary that I have here, so I say this dot basic + +549 +00:35:27,910 --> 00:35:30,930 +salary is equal to basic salary and the rest, the + +550 +00:35:30,930 --> 00:35:34,780 +name, ID and job title, send them to whom?Yes, for + +551 +00:35:34,780 --> 00:35:35,440 +the superclass. + +552 +00:35:39,740 --> 00:35:41,820 +Of course, this get gave me an error where? In the + +553 +00:35:41,820 --> 00:35:44,500 +main, because the constructor is taking another + +554 +00:35:44,500 --> 00:35:48,600 +parameter. Let's say 1000, this gets second. + +555 +00:36:00,070 --> 00:36:09,430 +One of the mistakes students make is that they say + +556 +00:36:09,430 --> 00:36:16,750 +this dot name is equal to this dot name is equal + +557 +00:36:16,750 --> 00:36:21,450 +to this dot name is equal to this dot name is + +558 +00:36:21,450 --> 00:36:21,630 +equal to this dot name is equal to this dot name + +559 +00:36:21,630 --> 00:36:21,830 +name is equal to this dot name is equal to this + +560 +00:36:21,830 --> 00:36:21,910 +dot name is equal to this dot name is equal to + +561 +00:36:21,910 --> 00:36:24,370 +this dot name is equal to this dot name is equal + +562 +00:36:24,370 --> 00:36:27,550 +to this dot name is equal to this dot name is + +563 +00:36:27,550 --> 00:36:27,570 +equal to this dot name is equal to this dot name + +564 +00:36:27,570 --> 00:36:27,590 +name is equal to this dot name is equal to this + +565 +00:36:27,590 --> 00:36:27,670 +this dot name is equal to this dot name is equal + +566 +00:36:27,670 --> 00:36:27,690 +to this dot name is equal to this dot name is + +567 +00:36:27,690 --> 00:36:30,170 +to this dot name isDid you notice that you told us + +568 +00:36:30,170 --> 00:36:32,470 +that the full-time employee does not extend the + +569 +00:36:32,470 --> 00:36:34,710 +employee, everything in the employee must be + +570 +00:36:34,710 --> 00:36:38,250 +inherited, including the name, ID and job title. I + +571 +00:36:38,250 --> 00:36:41,070 +came here and I want to put a value in the name or + +572 +00:36:41,070 --> 00:36:45,650 +even print the name. I want to say system.out + +573 +00:36:45,650 --> 00:36:51,710 +.println print me this.name Okay, make a mistake, + +574 +00:36:51,770 --> 00:36:52,110 +why? + +575 +00:36:55,670 --> 00:36:59,830 +Even if you put super, it's still wrong, this is + +576 +00:36:59,830 --> 00:37:07,250 +super, also wrong, his name is private, okay, he + +577 +00:37:07,250 --> 00:37:12,070 +demolished things, did he inherit the name or not? + +578 +00:37:13,810 --> 00:37:17,250 +He inherited the name and ID and job title, but + +579 +00:37:17,250 --> 00:37:19,680 +could not interact with them Did you see someone + +580 +00:37:19,680 --> 00:37:24,060 +who owns land and has no right to use it? He owns + +581 +00:37:24,060 --> 00:37:27,700 +it, he doesn't own it. Okay? He owns it, he + +582 +00:37:27,700 --> 00:37:31,060 +doesn't own it. Okay? This full-time employee + +583 +00:37:31,060 --> 00:37:34,180 +inherited the name, ID and job title, but he was + +584 +00:37:34,180 --> 00:37:37,400 +unable to deal with them directly. Why was he + +585 +00:37:37,400 --> 00:37:40,700 +unable to deal with them directly? Because the + +586 +00:37:40,700 --> 00:37:44,740 +name, notice the basic seller dealt with him. It's + +587 +00:37:44,740 --> 00:37:48,080 +easy, I put my finger in it Because the password + +588 +00:37:48,080 --> 00:37:51,240 +is there in the same class But the normal ID and + +589 +00:37:51,240 --> 00:37:55,620 +job title I can't print them or put values in them + +590 +00:37:55,620 --> 00:37:57,860 +Why? Because if you look at them in the employee + +591 +00:37:57,860 --> 00:38:03,940 +You will find them in what? Private Anything that + +592 +00:38:03,940 --> 00:38:06,500 +is identified as private You can only contact it + +593 +00:38:06,500 --> 00:38:10,400 +directly in the same class Outside the class, you + +594 +00:38:10,400 --> 00:38:14,500 +can't contact them You can ref them but you won't + +595 +00:38:14,500 --> 00:38:16,780 +be able to reach them. It's like saying bring me + +596 +00:38:16,780 --> 00:38:19,000 +some of this to you and not to you. Okay? + +597 +00:38:21,940 --> 00:38:25,280 +Okay, how can I reach them? For example, I want to + +598 +00:38:25,280 --> 00:38:27,220 +print the name here. I want to say system.out + +599 +00:38:27,220 --> 00:38:31,180 +.println name. Okay? How? I will say yes, you can + +600 +00:38:31,180 --> 00:38:34,680 +reach them through sitters and getters. I don't + +601 +00:38:34,680 --> 00:38:47,240 +have circuits. there is a system called system.out + +602 +00:38:47,240 --> 00:38:55,360 +.println this.getname it will give me a getname + +603 +00:38:55,360 --> 00:39:00,440 +this is not a problem you + +604 +00:39:00,440 --> 00:39:03,220 +can rotate it but it will be closed I can connect + +605 +00:39:03,220 --> 00:39:06,360 +it only through the setters and Guitars. + +606 +00:39:09,580 --> 00:39:14,440 +What is this dominance? All the attributes, I + +607 +00:39:14,440 --> 00:39:19,860 +inherited them and I can't reach them. Is there a + +608 +00:39:19,860 --> 00:39:26,800 +way to make this class reach the name, the ID and + +609 +00:39:26,800 --> 00:39:30,120 +the job title? You can hide yourself in the world + +610 +00:39:30,120 --> 00:39:32,740 +and go somewhere public instead of private. + +611 +00:39:40,900 --> 00:39:43,980 +Of course, what I did was right in terms of + +612 +00:39:43,980 --> 00:39:46,940 +programming, but you ruined the world that way. + +613 +00:39:47,440 --> 00:39:49,460 +That's how the name, ID and job title from the + +614 +00:39:49,460 --> 00:39:53,920 +main can reach them. Okay? There is no longer any + +615 +00:39:53,920 --> 00:39:57,880 +use of fitters and getters. He said, no, if you + +616 +00:39:57,880 --> 00:40:00,200 +find yourself, what can you do? He said, instead + +617 +00:40:00,200 --> 00:40:03,480 +of putting them private, you can do something we + +618 +00:40:03,480 --> 00:40:03,820 +call + +619 +00:40:10,410 --> 00:40:11,890 +Protected. Do you understand? What is this + +620 +00:40:11,890 --> 00:40:14,350 +protected thing? This protected thing can't tell + +621 +00:40:14,350 --> 00:40:15,730 +you anything. Do you understand? Anyone can + +622 +00:40:15,730 --> 00:40:19,270 +inherit from it. It's from the same family. Right + +623 +00:40:19,270 --> 00:40:21,330 +or not? So that's it. We are relatives together + +624 +00:40:21,330 --> 00:40:24,230 +and these attributes are not barriers between us. + +625 +00:40:24,970 --> 00:40:28,910 +So anything you inherit from it, you can control + +626 +00:40:28,910 --> 00:40:31,270 +it and connect it directly without setters and + +627 +00:40:31,270 --> 00:40:34,500 +getters.But anyone who does not extend from + +628 +00:40:34,500 --> 00:40:38,600 +outside the main, for example, must use a setter + +629 +00:40:38,600 --> 00:40:38,940 +and getter. + +630 +00:40:42,400 --> 00:40:46,660 +Good or made for whom? When subclasses deal with + +631 +00:40:46,660 --> 00:40:48,700 +each other and reach attributes without barriers. + +632 +00:40:49,180 --> 00:40:51,840 +It removes barriers between who? Individuals of + +633 +00:40:51,840 --> 00:40:55,180 +the same family. Okay? But outside? No, barriers + +634 +00:40:55,180 --> 00:40:58,300 +still exist. And the proof is that as soon as I + +635 +00:40:58,300 --> 00:41:01,340 +put the name, ID and job title protected, when I + +636 +00:41:01,340 --> 00:41:03,920 +go to the full-time employee and say here for + +637 +00:41:03,920 --> 00:41:08,900 +example in its constructor system.out.println do + +638 +00:41:08,900 --> 00:41:12,370 +this for me.name, stop this gate from having + +639 +00:41:12,370 --> 00:41:13,610 +problems. + +640 +00:41:15,690 --> 00:41:18,350 +And this is easier, isn't it? Not every month you + +641 +00:41:18,350 --> 00:41:21,570 +have to tell him gate name, set name, that's it. + +642 +00:41:21,650 --> 00:41:23,810 +Because if it was private in the parent, it would + +643 +00:41:23,810 --> 00:41:27,690 +make the subclass weird. Okay? But not like that. + +644 +00:41:27,890 --> 00:41:30,370 +Protected, that's it. I inherited from you. That's + +645 +00:41:30,370 --> 00:41:32,590 +it. Open the door for me. Do whatever you want in + +646 +00:41:32,590 --> 00:41:36,270 +the database. Okay?so this is the advantage of + +647 +00:41:36,270 --> 00:41:40,630 +doing attributes in the parent class which is + +648 +00:41:40,630 --> 00:41:43,770 +protected that you allow this subclass to reach it + +649 +00:41:43,770 --> 00:41:47,690 +but you don't allow it to the people outside okay? + +650 +00:41:48,470 --> 00:41:52,930 +so now I can in the part-time employee or in the + +651 +00:41:52,930 --> 00:41:56,850 +full-time employee I can reach to whom? to the + +652 +00:41:56,850 --> 00:41:56,990 +student + +653 +00:42:02,420 --> 00:42:04,880 +It is clear what is protected, what is public and + +654 +00:42:04,880 --> 00:42:07,700 +what is private? This protected is specifically + +655 +00:42:07,700 --> 00:42:12,860 +used in inheritance cases to allow subclasses to + +656 +00:42:12,860 --> 00:42:16,440 +reach attributes of the superclass directly. + +657 +00:42:22,780 --> 00:42:25,220 +Okay, now let's come to the part-time employee. + +658 +00:42:26,200 --> 00:42:29,120 +Also the same idea, you can, here we decided to + +659 +00:42:29,880 --> 00:42:32,440 +name, id and job title and you can give it for + +660 +00:42:32,440 --> 00:42:38,920 +example number of hours int number of hours and + +661 +00:42:38,920 --> 00:42:45,260 +also here int or float hour + +662 +00:42:45,260 --> 00:42:56,500 +rate and here this hour rate equals hour rate this + +663 +00:42:56,500 --> 00:42:59,280 +number of hours equals number of + +664 +00:43:06,140 --> 00:43:09,700 +Ok guys, now we have two subclasses Each subclass + +665 +00:43:09,700 --> 00:43:12,940 +has its own attributes And the shared attributes + +666 +00:43:12,940 --> 00:43:15,960 +are inherited from whom? From the employee, ok? + +667 +00:43:16,520 --> 00:43:19,580 +The class employee requires that any employee must + +668 +00:43:19,580 --> 00:43:22,700 +have a name, ID and job title This made me create + +669 +00:43:22,700 --> 00:43:25,940 +constructors in all subclasses to pass on this + +670 +00:43:25,940 --> 00:43:27,580 +information In addition to the additional + +671 +00:43:27,580 --> 00:43:34,640 +information Ok, now if I go to the main and made + +672 +00:43:34,640 --> 00:43:37,780 +more than one object full-time employee and part + +673 +00:43:37,780 --> 00:43:40,440 +-time employee and we said that we are going to + +674 +00:43:40,440 --> 00:43:43,540 +calculate the salaries of these employees this is + +675 +00:43:43,540 --> 00:43:52,460 +full-time employee 2 this is called Ali and + +676 +00:43:52,460 --> 00:43:57,200 +we are going to make part-time employee + +677 +00:44:05,830 --> 00:44:16,410 +this one also has name and ID and job title number + +678 +00:44:16,410 --> 00:44:23,070 +of hours and hour rate 20-20 for example ok so how + +679 +00:44:23,070 --> 00:44:26,110 +many employees did I introduce? three employees, + +680 +00:44:26,270 --> 00:44:31,970 +two full-time and one part-time now the manager + +681 +00:44:31,970 --> 00:44:34,860 +came and said we want to do Calculating the + +682 +00:44:34,860 --> 00:44:35,700 +salaries of these employees. + +683 +00:44:39,940 --> 00:44:41,760 +For example, if we want to make a chart, we + +684 +00:44:41,760 --> 00:44:42,980 +calculate the salary. Calculating the salary. + +685 +00:44:44,460 --> 00:44:46,820 +Where should we put this chart? Where is the best + +686 +00:44:46,820 --> 00:44:50,900 +place to put it? In the employee, or in the full + +687 +00:44:50,900 --> 00:44:53,480 +-time employee, or in the part-time employee? In + +688 +00:44:53,480 --> 00:44:55,580 +the employee. Yes, in the employee. But wait a + +689 +00:44:55,580 --> 00:44:58,870 +minute.Because if you put it in the employee, the + +690 +00:44:58,870 --> 00:45:02,310 +problem I have is that the full-time salary + +691 +00:45:02,310 --> 00:45:06,650 +differs from the part-time salary. We learned that + +692 +00:45:06,650 --> 00:45:10,690 +you put in the superclass the common need that + +693 +00:45:10,690 --> 00:45:14,560 +everyone has.But it's different now, each one has + +694 +00:45:14,560 --> 00:45:17,740 +a different salary account So based on that, + +695 +00:45:17,820 --> 00:45:19,380 +because each one has a different salary account, + +696 +00:45:19,520 --> 00:45:23,620 +we can't put this data in the superclass So we + +697 +00:45:23,620 --> 00:45:25,680 +have to put it in the subclass, because each one + +698 +00:45:25,680 --> 00:45:28,240 +has its own data So we came to the full-time + +699 +00:45:28,240 --> 00:45:34,400 +employee and made a data called public float calc + +700 +00:45:34,400 --> 00:45:36,700 +net salary + +701 +00:45:39,600 --> 00:45:41,020 +Of course I'm in the full-time employee, the same + +702 +00:45:41,020 --> 00:45:44,560 +calculation we did a while ago For example, let's + +703 +00:45:44,560 --> 00:45:49,760 +write it quickly Net salary equals this dot basic + +704 +00:45:49,760 --> 00:45:57,060 +salary If this dot has insurance, go to the net + +705 +00:45:57,060 --> 00:46:05,060 +salary and subtract 50 for example If this is + +706 +00:46:05,060 --> 00:46:09,160 +married, go to the net salary and add 20 + +707 +00:46:11,670 --> 00:46:16,790 +and then net salary plus this dot number of + +708 +00:46:16,790 --> 00:46:20,650 +children multiplied by 10 and in the end return + +709 +00:46:20,650 --> 00:46:28,170 +net salary notice how their existence was + +710 +00:46:28,170 --> 00:46:32,650 +protected not every little bit I will say that + +711 +00:46:32,650 --> 00:46:36,650 +these people are specialised in it for example + +712 +00:46:37,800 --> 00:46:40,640 +yes, if there is something that I used in the + +713 +00:46:40,640 --> 00:46:43,960 +parent, I can say get name or get .. ok, I can + +714 +00:46:43,960 --> 00:46:47,380 +directly use it, ok, so it is easier ok, this is + +715 +00:46:47,380 --> 00:46:48,980 +the cursor that is present in the full-time + +716 +00:46:48,980 --> 00:46:55,040 +employee the part-time employee public + +717 +00:46:55,040 --> 00:47:00,280 +float calc net salary + +718 +00:47:05,000 --> 00:47:09,620 +return this dot number of hours times this dot + +719 +00:47:09,620 --> 00:47:14,840 +hours that's it for the part time calculation now + +720 +00:47:14,840 --> 00:47:16,620 +after doing these calculations I go to the main + +721 +00:47:16,620 --> 00:47:18,340 +page if I want to calculate the salary of each + +722 +00:47:18,340 --> 00:47:21,580 +employee I say full-time employee one and I say + +723 +00:47:21,580 --> 00:47:25,040 +calc net salary calculates the salary of each + +724 +00:47:25,040 --> 00:47:31,300 +employee this is for example system.out.println + +725 +00:47:31,300 --> 00:47:34,140 +calculates his salary and I print it + +726 +00:47:41,290 --> 00:47:44,210 +Okay, here of course 1000, why did it stay as it + +727 +00:47:44,210 --> 00:47:46,370 +is? Because we didn't put that he has insurance, + +728 +00:47:46,590 --> 00:47:48,270 +or married, or has children, so the salary stayed + +729 +00:47:48,270 --> 00:47:54,310 +what? As it is. Okay, now I .. what I know are + +730 +00:47:54,310 --> 00:47:56,830 +three types .. three .. three objects of + +731 +00:47:56,830 --> 00:48:00,590 +employees, but in reality I have, for example, 100 + +732 +00:48:00,590 --> 00:48:03,720 +employees. 200 employees, I'm not going to tell + +733 +00:48:03,720 --> 00:48:08,860 +each one of them system.r.println FTE 1 print FTE + +734 +00:48:08,860 --> 00:48:12,240 +2 and so on, so we benefit from the loops that we + +735 +00:48:12,240 --> 00:48:17,440 +made, collect them in a list and make loops on + +736 +00:48:17,440 --> 00:48:22,160 +them and tell them to calculate the salary Now, + +737 +00:48:22,260 --> 00:48:24,040 +the first thing that will shock you is that these + +738 +00:48:24,040 --> 00:48:26,880 +two types are different full-time employees and + +739 +00:48:26,880 --> 00:48:29,280 +part-time employees. That is, each one wants a + +740 +00:48:29,280 --> 00:48:32,240 +job. Excuse me, each one wants a career. Right or + +741 +00:48:32,240 --> 00:48:35,880 +not? Okay, each one wants a job. Well, can we put + +742 +00:48:35,880 --> 00:48:40,960 +them in one career? Yes, we come here to an + +743 +00:48:40,960 --> 00:48:43,080 +important point because these employees are of + +744 +00:48:43,080 --> 00:48:45,360 +different types. There are institutions that have + +745 +00:48:45,360 --> 00:48:47,320 +a thousand employees, for example, seven hundred + +746 +00:48:47,320 --> 00:48:49,920 +full-time, two hundred part-time, one hundred in + +747 +00:48:49,920 --> 00:48:55,390 +the contract, right? You can make each one an + +748 +00:48:55,390 --> 00:48:58,790 +array and put them in it, okay? But this means + +749 +00:48:58,790 --> 00:49:01,850 +that if you make a new type of employees, for + +750 +00:49:01,850 --> 00:49:03,970 +example, we started working on software + +751 +00:49:03,970 --> 00:49:06,150 +engineering, okay? You want to make a new type of + +752 +00:49:06,150 --> 00:49:08,870 +employees, you want to make a new array, you want + +753 +00:49:08,870 --> 00:49:12,430 +to make a new loop on this array, right or not? So + +754 +00:49:12,430 --> 00:49:14,650 +we think about how to benefit from the object + +755 +00:49:14,650 --> 00:49:18,870 +oriented that we studied, that we don't have to + +756 +00:49:18,870 --> 00:49:22,950 +create a new loop or array even the products in + +757 +00:49:22,950 --> 00:49:26,070 +the store market are of different types it doesn't + +758 +00:49:26,070 --> 00:49:30,110 +make sense to put each type in an array why? + +759 +00:49:31,810 --> 00:49:35,090 +because if you have a new type of product and you + +760 +00:49:35,090 --> 00:49:37,270 +want to create a new array and a new loop and a + +761 +00:49:37,270 --> 00:49:39,550 +new print no, we have to think about how to + +762 +00:49:39,550 --> 00:49:41,810 +benefit from the object oriented that we studied + +763 +00:49:41,810 --> 00:49:46,620 +so that we don't create useless codebecause we + +764 +00:49:46,620 --> 00:49:51,480 +studied something important that inheritance has + +765 +00:49:51,480 --> 00:49:54,800 +effects the first benefit of inheritance is that + +766 +00:49:54,800 --> 00:49:56,620 +subclasses inherited everything from the parent + +767 +00:49:56,620 --> 00:49:59,520 +without rewriting it we saw this a while ago the + +768 +00:49:59,520 --> 00:50:03,380 +second thing is that subclasses also took the type + +769 +00:50:03,380 --> 00:50:08,360 +of superclass so it's not the full-time employee + +770 +00:50:08,360 --> 00:50:10,980 +that extends to another employee the full-time + +771 +00:50:10,980 --> 00:50:15,900 +employee is also a type of employee Because they + +772 +00:50:15,900 --> 00:50:17,320 +used to tell us these things, but when we look at + +773 +00:50:17,320 --> 00:50:19,000 +its application, what did it do? What did we gain + +774 +00:50:19,000 --> 00:50:21,380 +when they tell us that the subclass is a kind of + +775 +00:50:21,380 --> 00:50:25,800 +superclass? What did it gain? How did we gain from + +776 +00:50:25,800 --> 00:50:27,280 +this information? Can you tell me? + +777 +00:50:31,240 --> 00:50:33,900 +Now, the subclass took a kind of superclass. What + +778 +00:50:33,900 --> 00:50:34,720 +did we gain from this? + +779 +00:50:38,210 --> 00:50:40,750 +Is that we can put them in one array, right or + +780 +00:50:40,750 --> 00:50:44,050 +not? If I made an array of employee type, can I + +781 +00:50:44,050 --> 00:50:46,650 +put full-time employee in it? I can put it in it. + +782 +00:50:46,930 --> 00:50:51,910 +Any kind of subclass, okay? I can put it in this + +783 +00:50:51,910 --> 00:50:56,270 +array. So I can say employee, no, I don't even + +784 +00:50:56,270 --> 00:50:58,570 +want to know, you took the array list, right? + +785 +00:50:58,950 --> 00:51:04,230 +Okay, I want to say array list, employee okay, + +786 +00:51:04,350 --> 00:51:08,850 +call it for example employees equals new arraylist + +787 +00:51:08,850 --> 00:51:12,350 +because + +788 +00:51:12,350 --> 00:51:18,070 +employees dot add I + +789 +00:51:18,070 --> 00:51:25,450 +can put fte1 and employees fte2 + +790 +00:51:25,450 --> 00:51:27,030 +and employees + +791 +00:51:32,530 --> 00:51:38,510 +Did I make an error? No. This means that the + +792 +00:51:38,510 --> 00:51:42,810 +subclass took the type of the superclass. What did + +793 +00:51:42,810 --> 00:51:45,410 +I gain from this in reality? For example, if I + +794 +00:51:45,410 --> 00:51:48,630 +take these different subclass types and put them + +795 +00:51:48,630 --> 00:51:54,130 +in one array, it means that tomorrow if you make a + +796 +00:51:54,130 --> 00:51:56,550 +third type, a fourth type, a fifth type, you will + +797 +00:51:56,550 --> 00:51:58,170 +have the same array. You don't have to make a new + +798 +00:51:58,170 --> 00:52:05,790 +type. It's clear, guys. But of course, since you + +799 +00:52:05,790 --> 00:52:08,330 +added them to the list of employees, they started + +800 +00:52:08,330 --> 00:52:12,430 +to see themselves as employees. Like you, from + +801 +00:52:12,430 --> 00:52:14,930 +different projects, different cities, different + +802 +00:52:14,930 --> 00:52:17,850 +origins, but I see you as students. I have nothing + +803 +00:52:17,850 --> 00:52:21,320 +to do with anything else. Any private matters that + +804 +00:52:21,320 --> 00:52:23,220 +I don't know about you, I don't care to know about + +805 +00:52:23,220 --> 00:52:26,700 +them. I see you as a student. Do you have a + +806 +00:52:26,700 --> 00:52:28,460 +university number? Do you pay taxes? + +807 +00:52:31,460 --> 00:52:35,620 +Anything else, I don't care about it. Now, we want + +808 +00:52:35,620 --> 00:52:38,540 +to benefit, we want to continue this guide. This + +809 +00:52:38,540 --> 00:52:42,700 +guide I have is a list of employees. Can I go + +810 +00:52:42,700 --> 00:52:45,920 +through this list and calculate the salaries of + +811 +00:52:45,920 --> 00:52:50,380 +the employees?We can or we can't? Let's see. Let's + +812 +00:52:50,380 --> 00:52:53,900 +say for loop and end this lecture, okay? For each + +813 +00:52:53,900 --> 00:52:58,780 +employee enhanced for loop. E exists where? In + +814 +00:52:58,780 --> 00:53:07,040 +employees, okay? Let's say system.out.println E + +815 +00:53:07,040 --> 00:53:12,750 +dot I saw get job title, get ID, get name, but I + +816 +00:53:12,750 --> 00:53:16,710 +don't have the proof of what? Calculation of + +817 +00:53:16,710 --> 00:53:20,790 +salary. Well, we wrote it, didn't we write it in + +818 +00:53:20,790 --> 00:53:22,910 +the full-time employee? And we wrote it in the + +819 +00:53:22,910 --> 00:53:24,950 +part-time employee? Well, why didn't he see it? + +820 +00:53:26,630 --> 00:53:28,910 +Well, because it's not in the superclass. Well, we + +821 +00:53:28,910 --> 00:53:32,330 +agreed a while ago that it shouldn't be written in + +822 +00:53:32,330 --> 00:53:35,410 +the superclass. Because each person has a + +823 +00:53:35,410 --> 00:53:35,950 +different salary account. + +824 +00:53:39,140 --> 00:53:42,820 +فما راح نقدر نطبق .. اش حل المشكلة هذه؟ هذا ما + +825 +00:53:42,820 --> 00:53:46,260 +سنتعرف عليه في الحلقة القادمة. تمام، قوى أعطيكوا + +826 +00:53:46,260 --> 00:53:46,620 +العافية + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/FqUtaBtEY9E.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/FqUtaBtEY9E.srt new file mode 100644 index 0000000000000000000000000000000000000000..0d6b4e16ccb1ff5f7fb11b24452c139231efaf87 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/FqUtaBtEY9E.srt @@ -0,0 +1,2470 @@ + +1 +00:00:05,260 --> 00:00:06,520 +In the name of Allah, the most merciful, the most + +2 +00:00:06,520 --> 00:00:10,920 +merciful. In the last lecture, guys, we started by + +3 +00:00:10,920 --> 00:00:13,140 +reviewing the concepts of object-oriented + +4 +00:00:13,140 --> 00:00:16,760 +programming, okay? And we carried out the review + +5 +00:00:16,760 --> 00:00:20,140 +based on an example that we proposed in the last + +6 +00:00:20,140 --> 00:00:25,160 +lecture, which is the example of employees. We + +7 +00:00:25,160 --> 00:00:27,580 +started with this example that we made a class to + +8 +00:00:27,580 --> 00:00:31,090 +represent employee data. Then it developed with me + +9 +00:00:31,090 --> 00:00:34,830 +that I have different types of employees, there + +10 +00:00:34,830 --> 00:00:37,150 +are full-time employees, part-time employees, each + +11 +00:00:37,150 --> 00:00:40,930 +one has its own data, so we made subclasses, so + +12 +00:00:40,930 --> 00:00:44,910 +that I don't have to rewrite everything in the + +13 +00:00:44,910 --> 00:00:47,250 +subclasses, there are common things, all the + +14 +00:00:47,250 --> 00:00:49,850 +employees have a name, ID, job title and methods + +15 +00:00:49,850 --> 00:00:54,280 +related to them, but the employees differ there + +16 +00:00:54,280 --> 00:00:56,820 +are certain things, for example the part-time + +17 +00:00:56,820 --> 00:00:58,740 +worker has hours and prices per hour, the full + +18 +00:00:58,740 --> 00:01:00,800 +-time worker has basic salaries, married, number + +19 +00:01:00,800 --> 00:01:02,580 +of children, whether he has health insurance or + +20 +00:01:02,580 --> 00:01:05,140 +not, so the different things I did in subclasses + +21 +00:01:05,140 --> 00:01:08,900 +made them take the common things by extending from + +22 +00:01:08,900 --> 00:01:11,280 +the superclass, okay? And that's how I provided + +23 +00:01:11,280 --> 00:01:13,340 +coding that I didn't need to repeat the common + +24 +00:01:13,340 --> 00:01:17,990 +things in the subclasses. Then he developed with us + +25 +00:01:17,990 --> 00:01:20,090 +the topic and told us that we are going to make a + +26 +00:01:20,090 --> 00:01:23,030 +method to calculate the salaries of employees, + +27 +00:01:23,110 --> 00:01:23,590 +okay? + +28 +00:01:26,390 --> 00:01:29,830 +And we came, for example, to the class full-time + +29 +00:01:29,830 --> 00:01:31,890 +employee, part-time employee, because the salary + +30 +00:01:31,890 --> 00:01:37,770 +calculation of employees differs from one employee + +31 +00:01:37,770 --> 00:01:41,010 +to another employee, right or not, guys? Meaning + +32 +00:01:41,010 --> 00:01:45,350 +that the full-time employee's salary is different + +33 +00:01:45,350 --> 00:01:46,130 +from the part-time + +34 +00:01:48,930 --> 00:01:52,050 +employee. So that's why I went to the full-time + +35 +00:01:52,050 --> 00:01:55,570 +employee and made a method to calculate salaries, + +36 +00:01:55,570 --> 00:02:00,350 +easy, calculate net salary, and in the part-time + +37 +00:02:00,350 --> 00:02:04,110 +employee, also I made a method called calculate net + +38 +00:02:04,110 --> 00:02:08,410 +salary. Number of hours times hours and I said this + +39 +00:02:08,410 --> 00:02:11,330 +method calculate net salary I can't put it in the + +40 +00:02:11,330 --> 00:02:12,570 +super class because each one has a different + +41 +00:02:12,570 --> 00:02:18,160 +implementation, right or not? Okay, now in the main + +42 +00:02:18,160 --> 00:02:22,340 +method, I went to create objects from full-time and + +43 +00:02:22,340 --> 00:02:25,000 +part-time. I created two full-time objects and one + +44 +00:02:25,000 --> 00:02:29,660 +part-time object. Now I said that I want to ask all + +45 +00:02:29,660 --> 00:02:33,280 +my employees to print salaries for all their + +46 +00:02:33,280 --> 00:02:39,140 +employees. Now it is not a good solution to bring + +47 +00:02:39,140 --> 00:02:41,260 +full-time salaries and part-time salaries + +48 +00:02:41,260 --> 00:02:45,890 +separately. So I would like to have a way to gather + +49 +00:02:45,890 --> 00:02:47,990 +all types of employees together and tell them to + +50 +00:02:47,990 --> 00:02:50,070 +make a loop on them and print their salaries. + +51 +00:02:51,870 --> 00:02:54,630 +Because I have different types of employees, there + +52 +00:02:54,630 --> 00:02:56,510 +is full-time and there is part-time, it can be + +53 +00:02:56,510 --> 00:03:02,250 +tens or hundreds. You can make each array and put + +54 +00:03:02,250 --> 00:03:04,510 +the full-time in the full-time array and the part + +55 +00:03:04,510 --> 00:03:07,190 +-time in the part-time array and make a loop on + +56 +00:03:07,190 --> 00:03:08,890 +the array in this case and a loop on the array in + +57 +00:03:08,890 --> 00:03:12,160 +this case, but this solution is not good, because if + +58 +00:03:12,160 --> 00:03:14,580 +you want to add a new type, you need to make a new + +59 +00:03:14,580 --> 00:03:17,620 +array and a new loop. Can we put all types of + +60 +00:03:17,620 --> 00:03:21,540 +employees in one array? Yes, here we benefit from + +61 +00:03:21,540 --> 00:03:24,100 +the concept of polymorphism. What does + +62 +00:03:24,100 --> 00:03:27,680 +polymorphism mean? In short, that I can deal with + +63 +00:03:27,680 --> 00:03:32,760 +the type of child based on the previous type. Of + +64 +00:03:32,760 --> 00:03:35,680 +course, they used to tell us this, but what is its + +65 +00:03:35,680 --> 00:03:38,780 +reality? This is what we see in this case. What + +66 +00:03:38,780 --> 00:03:39,680 +does it mean that a child doesn't take his + +67 +00:03:39,680 --> 00:03:41,760 +father's type? It means that he can't get full + +68 +00:03:41,760 --> 00:03:44,440 +-time and part-time and put them in one employee + +69 +00:03:44,440 --> 00:03:45,120 +category. + +70 +00:03:47,460 --> 00:03:50,400 +Does it work or not? Yes, it works. This employee + +71 +00:03:50,400 --> 00:03:54,540 +category accepted full FTE1 and FTE2, which are + +72 +00:03:54,540 --> 00:03:58,580 +full-time and took PTE1, which is part-time. This + +73 +00:03:58,580 --> 00:04:00,940 +is a benefit. This is polymorphism. That you deal + +74 +00:04:00,940 --> 00:04:04,420 +with children based on their father's type. + +75 +00:04:07,840 --> 00:04:09,680 +This means that I collected them all in one loop + +76 +00:04:09,680 --> 00:04:11,640 +and if I can work on them, I can work on them in + +77 +00:04:11,640 --> 00:04:16,180 +one loop. But I came across a problem, what is it? + +78 +00:04:16,340 --> 00:04:18,900 +When I came to work on the loop, for each employee + +79 +00:04:18,900 --> 00:04:21,900 +E present in employees, I went to press E to + +80 +00:04:21,900 --> 00:04:25,840 +calculate salary, but this calculation of salary + +81 +00:04:25,840 --> 00:04:29,460 +did not work, but it is present, it is not written + +82 +00:04:29,460 --> 00:04:31,360 +in full-time and part-time, why did it not work? + +83 +00:04:32,430 --> 00:04:37,170 +Now when he made a dot, he saw the get-id, get + +84 +00:04:37,170 --> 00:04:40,430 +-title, and get-name, but he didn't see the calc, + +85 +00:04:40,550 --> 00:04:47,090 +net salary. Why? Now, he is saying that it is + +86 +00:04:47,090 --> 00:04:48,990 +correct that when you put them in one array, + +87 +00:04:51,450 --> 00:04:54,130 +employees. So they are all employees. But when you + +88 +00:04:54,130 --> 00:04:58,090 +look at them now, this E that I am looking at is + +89 +00:04:58,090 --> 00:05:01,030 +either full-time or part-time. I did not make the + +90 +00:05:01,030 --> 00:05:03,630 +object employee. I made it either full-time or + +91 +00:05:03,630 --> 00:05:09,930 +part-time. But now he sees them as employees. They + +92 +00:05:09,930 --> 00:05:12,350 +don't see them as full-time and part-time. What do + +93 +00:05:12,350 --> 00:05:15,090 +they see as an employee? I mean anything related + +94 +00:05:15,090 --> 00:05:17,010 +to full-time and part-time, they don't see it. + +95 +00:05:17,290 --> 00:05:20,630 +They only see that he is an employee. Just like + +96 +00:05:20,630 --> 00:05:22,470 +you are students from different families, + +97 +00:05:23,130 --> 00:05:25,890 +different cities, different projects, and different + +98 +00:05:25,890 --> 00:05:27,390 +habits, but in the end, what is the difference + +99 +00:05:27,390 --> 00:05:31,650 +between you? I see you as a student, a university + +100 +00:05:31,650 --> 00:05:34,030 +degree. You just register at the university and + +101 +00:05:34,030 --> 00:05:36,690 +pay and that's it, okay? There is no need for + +102 +00:05:36,690 --> 00:05:40,560 +anything else. This is the same thing. I see you + +103 +00:05:40,560 --> 00:05:43,180 +as an employee, I do not see you as a full-time or + +104 +00:05:43,180 --> 00:05:48,140 +part-time. The main object is either full-time or + +105 +00:05:48,140 --> 00:05:54,340 +part-time, but the lens I look at is of the type + +106 +00:05:54,340 --> 00:05:58,100 +of employee. That is, you only see from here the + +107 +00:05:58,100 --> 00:06:00,440 +things that are present in the employee, and there + +108 +00:06:00,440 --> 00:06:02,000 +is none of the things that are present in the + +109 +00:06:02,000 --> 00:06:05,970 +employee. Which is the calc net salary. So what + +110 +00:06:05,970 --> 00:06:10,370 +can we do to implement calc net salary? Who can + +111 +00:06:10,370 --> 00:06:10,650 +tell you? + +112 +00:06:14,290 --> 00:06:18,250 +Now, we can do the following. Look at me. The main + +113 +00:06:18,250 --> 00:06:21,250 +problem is that he sees that they are employees. + +114 +00:06:21,310 --> 00:06:24,130 +But if he sees that they are full-time or part + +115 +00:06:24,130 --> 00:06:27,330 +-time, he can claim the loan. So you can do + +116 +00:06:27,330 --> 00:06:30,830 +casting for the object. But before you do casting, + +117 +00:06:30,970 --> 00:06:32,830 +you have to check what type it is because there + +118 +00:06:32,830 --> 00:06:35,210 +are two possibilities for casting. This E that I'm + +119 +00:06:35,210 --> 00:06:37,110 +passing through, I don't know if it's full-time or + +120 +00:06:37,110 --> 00:06:39,970 +part-time. So before you cast it, you have to do an + +121 +00:06:39,970 --> 00:06:44,130 +if statement. You say if E is an instance of, this + +122 +00:06:44,130 --> 00:06:45,930 +instance of is present in all programming + +123 +00:06:45,930 --> 00:06:50,290 +languages with different names. If E is basically a + +124 +00:06:50,290 --> 00:06:54,510 +type of full-time employee. If it's basically a + +125 +00:06:54,510 --> 00:06:58,860 +type of full-time employee, then take this E and + +126 +00:06:58,860 --> 00:07:06,420 +make a casting for a full-time employee and put it + +127 +00:07:06,420 --> 00:07:11,000 +in a reference of type full-time employee; semi + +128 +00:07:11,000 --> 00:07:18,200 +-temp, what + +129 +00:07:18,200 --> 00:07:22,680 +did this line do? This line actually + +130 +00:07:23,760 --> 00:07:26,440 +I made a new reference for the object. I did not + +131 +00:07:26,440 --> 00:07:29,860 +make a new object. I do not make new objects. The + +132 +00:07:29,860 --> 00:07:31,900 +object is not made until it meets the word new. + +133 +00:07:32,340 --> 00:07:34,160 +There is no new because there is no new object. + +134 +00:07:35,360 --> 00:07:37,360 +Here, I made a new pointer, a new reference. + +135 +00:07:38,340 --> 00:07:41,420 +Because this object that exists in E, this + +136 +00:07:41,420 --> 00:07:43,860 +example, this object has a reference that is + +137 +00:07:43,860 --> 00:07:48,260 +called E. E is a reference. What is the type of E? + +138 +00:07:49,070 --> 00:07:53,230 +I told him to take the E and cast it as full-time + +139 +00:07:53,230 --> 00:07:56,710 +employee, and put the result where? In temp. This + +140 +00:07:56,710 --> 00:08:01,270 +temp is another reference of the same object, but + +141 +00:08:01,270 --> 00:08:05,410 +this reference is of another length. + +142 +00:08:06,930 --> 00:08:10,350 +This reference is of full-time employee. This + +143 +00:08:10,350 --> 00:08:14,350 +reference is of full-time employee. + +144 +00:08:18,670 --> 00:08:21,670 +What is the benefit of this formula? I can say + +145 +00:08:21,670 --> 00:08:32,030 +system.out.println temp. Yes, he saw the salary + +146 +00:08:32,030 --> 00:08:35,890 +calculation. Yes, he saw it. Is it with him or not? + +147 +00:08:36,230 --> 00:08:43,050 +Yes, it is with him. Ok, this can be a part-time + +148 +00:08:43,050 --> 00:08:47,530 +employee. So, what should I do? Else. F. And I copy + +149 +00:08:47,530 --> 00:08:47,910 +this + +150 +00:08:55,310 --> 00:08:59,850 +If it is a part-time employee + +151 +00:09:08,690 --> 00:09:11,970 +i.e. if it is related to all employees, if it is a + +152 +00:09:11,970 --> 00:09:14,530 +full-time employee, make a casting for a full-time + +153 +00:09:14,530 --> 00:09:17,870 +employee and claim the net salary. If it is a part + +154 +00:09:17,870 --> 00:09:20,110 +-time employee, go back to the part-time employee + +155 +00:09:20,110 --> 00:09:22,230 +type, make a casting for a part-time employee, and + +156 +00:09:22,230 --> 00:09:26,870 +claim the net salary. If it is a part-time + +157 +00:09:26,870 --> 00:09:26,990 +employee, make a casting for a part-time employee + +158 +00:09:26,990 --> 00:09:29,370 +and claim the net salary. If it is a part-time + +159 +00:09:29,370 --> 00:09:29,930 +and claim the net salary if it is a part-time + +160 +00:09:29,930 --> 00:09:30,130 +employee, make a casting for a part-time employee + +161 +00:09:30,130 --> 00:09:31,710 +and claim the net salary. If it is a part-time + +162 +00:09:31,710 --> 00:09:32,450 +employee, make a casting for a part-time employee + +163 +00:09:32,450 --> 00:09:33,690 +and claim the net salary. If it is a part-time + +164 +00:09:33,690 --> 00:09:34,630 +employee, make a casting for a part-time employee + +165 +00:09:34,630 --> 00:09:34,790 +and claim the net salary if it is a part-time + +166 +00:09:34,790 --> 00:09:36,210 +employee, make a casting for a part-time employee + +167 +00:09:36,210 --> 00:09:37,410 +and claim the net salary if it is a part-time + +168 +00:09:38,240 --> 00:09:39,800 +If it is full-time, you need to calculate the + +169 +00:09:39,800 --> 00:09:42,900 +salary in full-time, and if it is part-time, you + +170 +00:09:42,900 --> 00:09:46,700 +need to calculate the salary in part-time. What do + +171 +00:09:46,700 --> 00:09:48,920 +you think about this solution? Is it good? It is + +172 +00:09:48,920 --> 00:09:51,520 +good. Why? Because if you do it manually, you need + +173 +00:09:51,520 --> 00:09:54,260 +to press on the manager and press on the L's. You + +174 +00:09:54,260 --> 00:09:58,000 +need to press on the L's. No, this is not the + +175 +00:09:58,000 --> 00:10:00,420 +problem. Because you are doing it full-time, and + +176 +00:10:00,420 --> 00:10:06,240 +part-time. If I do it again, you need to press on + +177 +00:10:06,240 --> 00:10:08,190 +the L's, and press on the F again. Correct or not? + +178 +00:10:08,390 --> 00:10:10,870 +So if you have five types of employees, you will have + +179 +00:10:10,870 --> 00:10:14,030 +to change something in the code, and this is a bad + +180 +00:10:14,030 --> 00:10:21,430 +thing. I want to do this bad code, because you will + +181 +00:10:21,430 --> 00:10:27,030 +have to add a new F. Did you find the F that you + +182 +00:10:27,030 --> 00:10:28,930 +learned in the first year, and you were happy with + +183 +00:10:28,930 --> 00:10:32,010 +it? Did you find that you learn that this F + +184 +00:10:32,010 --> 00:10:37,180 +wherever you find it? No. You know that his code is + +185 +00:10:37,180 --> 00:10:41,840 +bad. Not always, if you find something like this. If + +186 +00:10:41,840 --> 00:10:45,260 +it was E instance of. You know that your code has a + +187 +00:10:45,260 --> 00:10:49,440 +problem. You don't always open the F statement. F + +188 +00:10:49,440 --> 00:10:51,920 +come on. If it was like this? No, here the F has + +189 +00:10:51,920 --> 00:10:54,000 +nothing, because it means that every time you add + +190 +00:10:54,000 --> 00:10:56,800 +F, you don't get DAD. You need to make another F + +191 +00:10:56,800 --> 00:10:59,840 +less than F. Right or not, guys? Okay, how + +223 +00:13:12,440 --> 00:13:15,680 +the salary did you find silence? wasn't there an + +224 +00:13:15,680 --> 00:13:17,300 +error a while ago? it is present did you find it? + +225 +00:13:17,340 --> 00:13:19,460 +no, it became present ok, when he comes to execute + +226 +00:13:19,460 --> 00:13:23,020 +what will he print? books books? let's see no, no, + +227 +00:13:23,060 --> 00:13:24,740 +no, no, no, no, no, no, no, no, no, no, no, no, + +228 +00:13:24,740 --> 00:13:24,860 +no, no, no, no, no, no, no, no, no, no, no, no, + +229 +00:13:24,900 --> 00:13:24,900 +no, no, no, no, no, no, no, no, no, no, no, no, + +230 +00:13:24,900 --> 00:13:25,560 +no, no, no, no, no, no, no, no, no, no, no, no, + +231 +00:13:25,560 --> 00:13:26,780 +no, no, no, no, no, no, no, no, no, no, no, no, + +232 +00:13:26,780 --> 00:13:28,820 +no, no, no + +233 +00:13:43,720 --> 00:13:46,720 +Ok, what did it print? It printed numbers. Ok, why + +234 +00:13:46,720 --> 00:13:50,740 +didn't it print numbers? Yes? Because the method + +235 +00:13:50,740 --> 00:13:52,980 +went to the father. When we turned it on, it went + +236 +00:13:52,980 --> 00:13:55,140 +to the child and saw the method that came to him. + +237 +00:13:55,140 --> 00:13:58,300 +This method is the same as the signature, but its + +238 +00:13:58,300 --> 00:14:03,660 +purpose is different. Ok, now, what is missing + +239 +00:14:03,660 --> 00:14:06,300 +here? So, the correct answer is present in the + +240 +00:14:06,300 --> 00:14:09,760 +father, but what is returned? Zero.But here, when + +241 +00:14:09,760 --> 00:14:11,820 +you look at the print of numbers, the first thing + +242 +00:14:11,820 --> 00:14:13,380 +you understand is that the print of numbers is the + +243 +00:14:13,380 --> 00:14:15,320 +same as that of children. The same as that of + +244 +00:14:15,320 --> 00:14:17,560 +whom? Of the children. The same thing happened to + +245 +00:14:17,560 --> 00:14:22,360 +me. When I turned to the employees and printed, he + +246 +00:14:22,360 --> 00:14:25,600 +was smart. He himself saw what kind of object was + +247 +00:14:25,600 --> 00:14:29,450 +the real thing, without me telling him.So if the + +248 +00:14:29,450 --> 00:14:31,850 +object is a full-time employee, he should ask for + +249 +00:14:31,850 --> 00:14:33,670 +a calc net salary. The first thing I look for is + +250 +00:14:33,670 --> 00:14:36,290 +where the calc net salary is. I look for it in the + +251 +00:14:36,290 --> 00:14:39,510 +first place, in the apple. If it is in the apple, + +252 +00:14:40,090 --> 00:14:44,550 +I look for it in the apple. So here I have a calc + +253 +00:14:44,550 --> 00:14:46,310 +net salary, and here a calc net salary, and here a + +254 +00:14:46,310 --> 00:14:51,960 +calc net salary.These two methods exist, we say + +255 +00:14:51,960 --> 00:14:53,860 +there is inheritance, this is worth it from this, + +256 +00:14:54,240 --> 00:14:57,820 +this is worth it from this, this is worth it from + +257 +00:14:57,820 --> 00:14:59,420 +this, this is worth it from this, this is worth it + +258 +00:14:59,420 --> 00:14:59,540 +from this, this is worth it from this, this is + +259 +00:14:59,540 --> 00:15:01,960 +worth it from this, this is worth it from this, + +260 +00:15:02,380 --> 00:15:03,820 +this is worth it from this, this is worth it from + +261 +00:15:03,820 --> 00:15:05,160 +this, this is worth it from this, this is worth it + +262 +00:15:05,160 --> 00:15:05,360 +from this, this is worth it from this, this is + +263 +00:15:05,360 --> 00:15:06,120 +worth it from this, this is worth it from this, + +264 +00:15:06,220 --> 00:15:08,710 +this is worth it from this, this is worthYes, in + +265 +00:15:08,710 --> 00:15:10,430 +the Quran, this is the same as me, this is the + +266 +00:15:10,430 --> 00:15:14,070 +same as me, this is the same as me, this is the + +267 +00:15:14,070 --> 00:15:14,510 +same as me, this is the same as me, this is the + +268 +00:15:14,510 --> 00:15:14,530 +same as me, this is the same as me, this is the + +269 +00:15:14,530 --> 00:15:14,550 +same as me, this is the same as me, this is the + +270 +00:15:14,550 --> 00:15:14,750 +same as me, this is the same as me, this is the + +271 +00:15:14,750 --> 00:15:15,330 +same as me, this is the same as me, this is the + +272 +00:15:15,330 --> 00:15:15,350 +same as me, this is the same as me, this is the + +273 +00:15:15,350 --> 00:15:15,890 +same as me, this is the same as me, this is the + +274 +00:15:15,890 --> 00:15:20,290 +same as me, this is the same as me, this is the + +275 +00:15:20,290 --> 00:15:29,560 +same as me, this is the same as me, thisHe claims + +276 +00:15:29,560 --> 00:15:31,740 +to be a calculate salary, because any calculate + +277 +00:15:31,740 --> 00:15:33,860 +salary is correct that it is a reference from the + +278 +00:15:33,860 --> 00:15:36,640 +type of employee, but when he claims that he is + +279 +00:15:36,640 --> 00:15:39,020 +smart for himself, he sees what kind of real + +280 +00:15:39,020 --> 00:15:42,620 +object, he finds it full-time. Does the calculate + +281 +00:15:42,620 --> 00:15:45,040 +salary exist in full-time? Yes, it exists, we + +282 +00:15:45,040 --> 00:15:51,620 +claim it.The next one was part-time. Is there + +283 +00:15:51,620 --> 00:15:53,480 +calculate salary in part-time? Yes, there is. You + +284 +00:15:53,480 --> 00:15:56,840 +can see in the chart here. What is the use of + +285 +00:15:56,840 --> 00:16:02,020 +this? This is just to silence him. Ok? Now he has + +286 +00:16:02,020 --> 00:16:05,680 +to see calculate salary. But when he does it, + +287 +00:16:05,680 --> 00:16:09,610 +where does he do it? In the son.means that it is + +288 +00:16:09,610 --> 00:16:13,370 +present in the father to achieve the concept of + +289 +00:16:13,370 --> 00:16:16,790 +polymorphism and see it but when it comes to + +290 +00:16:16,790 --> 00:16:20,030 +perform it will perform what is present in the son + +291 +00:16:20,030 --> 00:16:22,490 +and they say that they override what is present + +292 +00:16:22,490 --> 00:16:26,670 +where? in the father and the proof of this talk is + +293 +00:16:26,670 --> 00:16:30,170 +that we made a new type of employees for example + +294 +00:16:30,170 --> 00:16:35,630 +here I added a new type for example contract + +295 +00:16:35,630 --> 00:16:38,070 +employee + +296 +00:16:40,560 --> 00:16:44,700 +And we didn't overwrite it. These are the 7 names + +297 +00:16:44,700 --> 00:16:52,840 +of the app. Let's try it. If I come here, I create + +298 +00:16:52,840 --> 00:16:56,900 +a new group and + +299 +00:16:56,900 --> 00:17:00,240 +I want to name it Contract Employee. + +300 +00:17:10,180 --> 00:17:19,040 +and we told him extends employee + +301 +00:17:19,040 --> 00:17:25,360 +and of course we need whom? constructor and we + +302 +00:17:25,360 --> 00:17:33,240 +went to main and we created object from whom? from + +303 +00:17:33,240 --> 00:17:41,060 +contract employee contract E1 new contract + +304 +00:17:41,060 --> 00:17:48,820 +employee employees + +305 +00:17:48,820 --> 00:18:01,900 +.add + +306 +00:18:07,400 --> 00:18:10,000 +and then for loop and we told him to cancel it. He + +307 +00:18:10,000 --> 00:18:12,240 +didn't make an error, but when he came to execute + +308 +00:18:12,240 --> 00:18:16,120 +it, the last employee who clicked on it suffered. + +309 +00:18:16,960 --> 00:18:20,120 +The proof is not present in the contract, but it + +310 +00:18:20,120 --> 00:18:23,440 +was taken from the father. So now I put it in the + +311 +00:18:23,440 --> 00:18:26,780 +father to achieve the concept of polymorphism, but + +312 +00:18:26,780 --> 00:18:29,440 +actually he executes what is present in the son. + +313 +00:18:30,640 --> 00:18:33,600 +Do you understand this idea, guys? Ok? And keep in + +314 +00:18:33,600 --> 00:18:35,840 +mind that here I explained it to you contrary to + +315 +00:18:35,840 --> 00:18:38,180 +what they explained to you in two programs. For + +316 +00:18:38,180 --> 00:18:40,540 +example, I used to tell you to put oil in the + +317 +00:18:40,540 --> 00:18:43,980 +father and override it somewhere in the son. No, I + +318 +00:18:43,980 --> 00:18:45,960 +came to you gradually. I told you to think + +319 +00:18:45,960 --> 00:18:48,640 +logically. Ok? Here you see the program building + +320 +00:18:48,640 --> 00:18:51,760 +with you step by step as you think. At first he + +321 +00:18:51,760 --> 00:18:53,420 +thought, we said there is nothing in common, so we + +322 +00:18:53,420 --> 00:18:56,720 +did not put it in the father. But after that, to + +323 +00:18:56,720 --> 00:18:59,360 +benefit from polymorphism, I put something in the + +324 +00:18:59,360 --> 00:19:02,940 +app, but it was empty. Okay? So that he can see + +325 +00:19:02,940 --> 00:19:05,660 +it, but when he executes it, he will see what is + +326 +00:19:05,660 --> 00:19:07,480 +in the app. So I added it to the app, and I + +327 +00:19:07,480 --> 00:19:10,860 +overwrote it in the app. Do you understand why I + +328 +00:19:10,860 --> 00:19:13,620 +made this arrangement? This is the logical + +329 +00:19:13,620 --> 00:19:15,940 +arrangement that you make when you build the + +330 +00:19:15,940 --> 00:19:17,660 +program. Do you agree with me? + +331 +00:19:21,040 --> 00:19:24,750 +Okay.We did this well until now, but there is + +332 +00:19:24,750 --> 00:19:29,410 +still a small problem. What is this problem? You + +333 +00:19:29,410 --> 00:19:30,970 +will find that the person who wrote this code + +334 +00:19:30,970 --> 00:19:33,810 +left, left the job. And another person came after + +335 +00:19:33,810 --> 00:19:38,370 +him and wanted to continue, okay? And the manager + +336 +00:19:38,370 --> 00:19:40,130 +came and said, uncle, let's add a new type, let's + +337 +00:19:40,130 --> 00:19:45,950 +put a new type of employees, okay? Like what, for + +338 +00:19:45,950 --> 00:19:46,890 +example, let's + +339 +00:19:54,230 --> 00:19:56,270 +Yes, a volunteer for example, this is a volunteer, + +340 +00:19:56,610 --> 00:20:02,330 +volunteer employee He takes a volunteer for + +341 +00:20:02,330 --> 00:20:05,070 +example, we give him transportation for example, + +342 +00:20:06,130 --> 00:20:10,990 +okay? And pocket money I made a volunteer + +343 +00:20:10,990 --> 00:20:12,810 +employee, of course this is the one who made the + +344 +00:20:12,810 --> 00:20:14,830 +code, not the one who made the basic code This is + +345 +00:20:14,830 --> 00:20:17,090 +a new employee, he doesn't know what's in the code + +346 +00:20:17,090 --> 00:20:19,930 +He added a new class and said to me, since I have + +347 +00:20:19,930 --> 00:20:21,490 +an employee, whom did I extend it to? + +348 +00:20:24,680 --> 00:20:27,780 +Employee Okay, and he also wants to add the + +349 +00:20:27,780 --> 00:20:29,900 +constructor He will do it because of the sector + +350 +00:20:29,900 --> 00:20:33,020 +And that's it, now the main method came He wants + +351 +00:20:33,020 --> 00:20:36,280 +to add a new type of employee For example, + +352 +00:20:37,320 --> 00:20:49,020 +volunteer employee Anything + +353 +00:20:54,000 --> 00:21:04,500 +Okay? And we added it to the array employees I + +354 +00:21:04,500 --> 00:21:10,100 +V E 1 And calculate their salaries And you will + +355 +00:21:10,100 --> 00:21:13,540 +find that their salaries are also zero Why? + +356 +00:21:13,740 --> 00:21:16,640 +Because I am not good at math I did not know that + +357 +00:21:16,640 --> 00:21:20,960 +I have a data that I have to write in the EBON to + +358 +00:21:20,960 --> 00:21:26,470 +calculate salaries Those who wrote the code know + +359 +00:21:26,470 --> 00:21:29,070 +that it must be done. But those who came to + +360 +00:21:29,070 --> 00:21:33,570 +complete the code do not know. So we need a way to + +361 +00:21:33,570 --> 00:21:36,590 +force the programmer that as soon as you add a new + +362 +00:21:36,590 --> 00:21:40,310 +type of employees, you must implement for whom? + +363 +00:21:41,390 --> 00:21:42,470 +Yes, for these methods. + +364 +00:21:47,520 --> 00:21:51,240 +Yes, so let's say we force him, this is the proof + +365 +00:21:51,240 --> 00:21:53,740 +now, I'm supposed to do it now, I got to him as + +366 +00:21:53,740 --> 00:21:55,700 +follows, this is the calculator that we want to + +367 +00:21:55,700 --> 00:21:57,960 +say, anyone who wants to make a new employee from + +368 +00:21:57,960 --> 00:22:01,380 +it must determine how to calculate the salary of + +369 +00:22:01,380 --> 00:22:04,780 +the employee. Currently, this does not force, + +370 +00:22:05,420 --> 00:22:08,380 +override is optional, you can override, you can + +371 +00:22:08,380 --> 00:22:12,860 +not, okay, but to force himYou have to remove the + +372 +00:22:12,860 --> 00:22:15,220 +implementation of the method, which is the body of + +373 +00:22:15,220 --> 00:22:18,100 +the method, okay? You put a decimal point in the + +374 +00:22:18,100 --> 00:22:23,340 +end and you make the value of this abstract. As if + +375 +00:22:23,340 --> 00:22:27,760 +you say that the value of this is insufficient. + +376 +00:22:28,420 --> 00:22:30,560 +The word abstract simply means that there is a + +377 +00:22:30,560 --> 00:22:35,260 +deficiency in it. And since the value has become + +378 +00:22:35,260 --> 00:22:39,180 +insufficient, the whole class has also become + +379 +00:22:39,180 --> 00:22:41,880 +insufficient. Not when the part is missing, + +380 +00:22:42,040 --> 00:22:44,500 +everything becomes missing, okay? So you also have + +381 +00:22:44,500 --> 00:22:47,100 +to class it with abstract. + +382 +00:22:49,940 --> 00:22:53,420 +So what is the advantage of writing in abstract? + +383 +00:22:53,920 --> 00:22:56,720 +Did you find that anyone who does extend to + +384 +00:22:56,720 --> 00:22:59,780 +employee will give him error? He will say, come + +385 +00:22:59,780 --> 00:23:02,320 +on, you want to do extend to employee, you have + +386 +00:23:02,320 --> 00:23:06,220 +one of two options. The first option is that you + +387 +00:23:06,220 --> 00:23:09,000 +have to complete the employee.The one that is + +388 +00:23:09,000 --> 00:23:11,560 +lacking in it must be completed. This is the first + +389 +00:23:11,560 --> 00:23:16,140 +option. The second option is to make this one also + +390 +00:23:16,140 --> 00:23:19,460 +obsolete. It is as if you say that this one does + +391 +00:23:19,460 --> 00:23:21,720 +not inherit everything in the employee, but makes + +392 +00:23:21,720 --> 00:23:25,240 +it lacking in order for a son to inherit what is + +393 +00:23:25,240 --> 00:23:28,470 +in it and complete it. So what I want to do is to + +394 +00:23:28,470 --> 00:23:30,450 +make him complete what is missing. For example, to + +395 +00:23:30,450 --> 00:23:33,570 +order from Netbeans, you will find that he wrote + +396 +00:23:33,570 --> 00:23:35,690 +here the word override and brought you the calc + +397 +00:23:35,690 --> 00:23:38,830 +net salary. So now, in order to make the employee + +398 +00:23:38,830 --> 00:23:42,090 +extend, he is forcing you to warn you. He tells + +399 +00:23:42,090 --> 00:23:45,050 +you that you have to override for whom? For the + +400 +00:23:45,050 --> 00:23:47,010 +calc net salary. To determine, for example, the + +401 +00:23:47,010 --> 00:23:50,150 +salary of the contract employee. Let's say, for + +402 +00:23:50,150 --> 00:23:52,270 +example, the contract employee's return is 500. + +403 +00:23:54,310 --> 00:23:59,590 +Okay? Volunteer is also the same thing. You have + +404 +00:23:59,590 --> 00:24:05,790 +to implement abstract methods. Now you want to + +405 +00:24:05,790 --> 00:24:09,070 +create a new type of employee. Volunteer is + +406 +00:24:09,070 --> 00:24:10,910 +defined. For example, let's give him a pocket + +407 +00:24:10,910 --> 00:24:14,150 +money of $100 per month. Transportation is $100 + +408 +00:24:14,150 --> 00:24:17,310 +and pocket money is $100. Okay? I'll get the + +409 +00:24:17,310 --> 00:24:23,410 +second. Now in the name method, who is called? The + +410 +00:24:23,410 --> 00:24:25,700 +calc.It's a net salient. Where does this net + +411 +00:24 + +445 +00:26:10,300 --> 00:26:11,820 +this method does not exist yet. What does it want + +446 +00:26:11,820 --> 00:26:15,880 +to do? Okay, you can't create it. It is not made + +447 +00:26:15,880 --> 00:26:20,010 +to The employee is not made to extract objects from + +448 +00:26:20,010 --> 00:26:23,810 +it. The employee is made to collect common things + +449 +00:26:23,810 --> 00:26:26,490 +and implement the property of polymorphism to make + +450 +00:26:26,490 --> 00:26:32,670 +it extend and add new things that you want. Do you + +451 +00:26:32,670 --> 00:26:35,630 +agree with this idea, guys? Okay. + +452 +00:26:40,730 --> 00:26:44,490 +Now, let's take another idea similar to this one. + +453 +00:26:45,130 --> 00:26:48,320 +The manager also asked me is to print reports + +454 +00:26:48,320 --> 00:26:52,760 +about the employees. They need reports about each + +455 +00:26:52,760 --> 00:26:55,460 +employee. What does the report need to contain? It + +456 +00:26:55,460 --> 00:26:58,100 +needs to contain the name of the employee, the ID, + +457 +00:26:59,060 --> 00:27:03,040 +and the specific data. If it is full-time, in + +458 +00:27:03,040 --> 00:27:07,800 +addition to the name and the ID. they need to have + +459 +00:27:07,800 --> 00:27:11,020 +insurance or not, the basic salary, the wife and + +460 +00:27:11,020 --> 00:27:13,860 +so on. If he is a part-time employee, he needs to + +461 +00:27:13,860 --> 00:27:16,300 +get his name and ID, and also the number of hours + +462 +00:27:16,300 --> 00:27:18,340 +and the price of the hour. If he is a contract + +463 +00:27:18,340 --> 00:27:20,340 +worker, he needs to get his name and ID, and the + +464 +00:27:20,340 --> 00:27:21,680 +duration of the contract, beginning and ending, + +465 +00:27:21,820 --> 00:27:24,580 +and so on. That is, either we make a comprehensive + +466 +00:27:24,580 --> 00:27:26,300 +report, and the report will differ from employee + +467 +00:27:26,300 --> 00:27:30,610 +to employee again. Because how do we do it? This + +468 +00:27:30,610 --> 00:27:33,270 +is a review of what we took, but there is one + +469 +00:27:33,270 --> 00:27:36,410 +additional thing. Let's think about it. This + +470 +00:27:36,410 --> 00:27:41,810 +report is called a gate report. It is a report to + +471 +00:27:41,810 --> 00:27:44,310 +the employee. The first thing to think about is + +472 +00:27:44,310 --> 00:27:48,470 +where to put this report. In the parent or in the + +473 +00:27:48,470 --> 00:27:52,850 +children? Okay, first of all, think about it, this + +474 +00:27:52,850 --> 00:27:56,010 +report has nothing in common, each one has a + +475 +00:27:56,010 --> 00:27:59,410 +different report than the other, so it should be + +476 +00:27:59,410 --> 00:28:02,050 +present where? In the children, not in the + +477 +00:28:02,050 --> 00:28:04,690 +parents, but I want to do it in the parents, why? + +478 +00:28:05,690 --> 00:28:09,690 +So that I can come here and tell them to pass it + +479 +00:28:09,690 --> 00:28:13,010 +on to all employees and implement the Get report, + +480 +00:28:13,770 --> 00:28:16,390 +this is what I want to do, but the Get report is + +481 +00:28:16,390 --> 00:28:20,100 +still Not present. So I go now, I will do, a while + +482 +00:28:20,100 --> 00:28:22,640 +ago we explained from bottom to top. This get is + +483 +00:28:22,640 --> 00:28:25,100 +done. After we understand that to benefit from + +484 +00:28:25,100 --> 00:28:27,740 +this polymorphism and everything should be in get + +485 +00:28:27,740 --> 00:28:32,620 +report, I go to the parent and I do abstract + +486 +00:28:32,620 --> 00:28:37,560 +public string get report. + +487 +00:28:41,720 --> 00:28:43,600 +and as soon as I add it here, I get the error in + +488 +00:28:43,600 --> 00:28:55,520 +all the subclasses and we go to full-time let's + +489 +00:28:55,520 --> 00:28:59,440 +do it quickly in all and then we do the + +490 +00:28:59,440 --> 00:29:00,480 +implementation in it + +491 +00:29:17,730 --> 00:29:21,190 +Okay, I went to the full-time employee now Go down + +492 +00:29:21,190 --> 00:29:25,690 +You will find a buffer I got a report exactly in + +493 +00:29:25,690 --> 00:29:28,250 +its implementation What is its implementation? + +494 +00:29:28,510 --> 00:29:31,950 +Let's make a report Let's say return For example, + +495 +00:29:32,050 --> 00:29:37,410 +let's say it has a name like this this.name Of + +496 +00:29:37,410 --> 00:29:38,730 +course, the name is an attribute that is present + +497 +00:29:38,730 --> 00:29:41,790 +anywhere in the superclass I can use this.name + +498 +00:29:41,790 --> 00:29:45,370 +Because it is protected So we took it in the last + +499 +00:29:45,370 --> 00:29:51,560 +lecture, okay? Plus slash in id I'm making a + +500 +00:29:51,560 --> 00:29:58,040 +report as a string this dot id this is the main + +501 +00:29:58,040 --> 00:30:08,960 +information now basic salary this + +502 +00:30:08,960 --> 00:30:10,600 +basic salary is from the information related to + +503 +00:30:10,600 --> 00:30:14,740 +who? to the child plus the last thing I want to + +504 +00:30:14,740 --> 00:30:19,430 +say net salary what is net salary? The total + +505 +00:30:19,430 --> 00:30:23,990 +salary is this dot calc net salary. So what did + +506 +00:30:23,990 --> 00:30:26,970 +she do here? Method from within method. Normal. + +507 +00:30:27,550 --> 00:30:30,870 +Okay? So now the salary or the report of the full + +508 +00:30:30,870 --> 00:30:34,870 +-time employee will be the name, the ID, the basic + +509 +00:30:34,870 --> 00:30:38,190 +salary, and the net salary. Okay? The first two + +510 +00:30:38,190 --> 00:30:41,670 +attributes, which are shared with everyone, and + +511 +00:30:41,670 --> 00:30:44,730 +the rest are different. Okay? This is for the full + +512 +00:30:44,730 --> 00:30:49,740 +-time employee. For the part-time employee, same + +513 +00:30:49,740 --> 00:30:58,720 +thing now I have to return the name and the id I + +514 +00:30:58,720 --> 00:31:04,440 +have to return the code name this + +515 +00:31:04,440 --> 00:31:05,420 +.name + +516 +00:31:16,700 --> 00:31:38,400 +name and id, number of hours net + +517 +00:31:38,400 --> 00:31:44,840 +salary this + +518 +00:31:44,840 --> 00:31:45,720 +.calc + +519 +00:31:49,200 --> 00:31:51,700 +Net Salary. That's it. The rest is the same thing. + +520 +00:31:52,340 --> 00:31:55,420 +The same idea. Now when I go to the main and say + +521 +00:31:55,420 --> 00:31:59,240 +get report, we said that get report is present in + +522 +00:31:59,240 --> 00:32:01,740 +the parent but it is not abstract. When it is + +523 +00:32:01,740 --> 00:32:04,960 +called, it will call the main that is present in + +524 +00:32:04,960 --> 00:32:08,480 +the subclasses. And here I did run, okay? + +525 +00:32:12,030 --> 00:32:16,030 +Yes, because these are the seconds Yes, our bagger + +526 +00:32:16,030 --> 00:32:19,610 +class is made of what guys? It is made of + +527 +00:32:19,610 --> 00:32:21,250 +exception in it, so let's remove only the + +528 +00:32:21,250 --> 00:32:28,670 +exception and return only return null Okay, + +529 +00:32:28,770 --> 00:32:30,110 +we can't write it because we don't want to get + +530 +00:32:35,960 --> 00:32:42,640 +ok and here return null and in main it prints the + +531 +00:32:42,640 --> 00:32:45,320 +report to see when we separate them together + +532 +00:32:56,080 --> 00:32:59,020 +because it runs and brings reports and each report + +533 +00:32:59,020 --> 00:33:00,860 +is specific to the type of employee this first one + +534 +00:33:00,860 --> 00:33:03,280 +is full-time, right? and the second one is also + +535 +00:33:03,280 --> 00:33:05,960 +full-time the third one is part-time, it brings me + +536 +00:33:05,960 --> 00:33:08,780 +the number of hours and the rate and what about + +537 +00:33:08,780 --> 00:33:09,820 +the rest of them? what about the rest of them? + +538 +00:33:11,020 --> 00:33:14,200 +okay, this is almost a review of this GIT report + +539 +00:33:14,200 --> 00:33:16,960 +like Calculate Salary, right or not? we did it in + +540 +00:33:16,960 --> 00:33:18,860 +the app to see the polymorphism and each one has a + +541 +00:33:18,860 --> 00:33:21,660 +different implementation but there is a simple + +542 +00:33:21,660 --> 00:33:26,190 +difference is that the name and the ID are common + +543 +00:33:26,190 --> 00:33:29,490 +and even when you add the job title, if I told you + +544 +00:33:29,490 --> 00:33:30,790 +that you have to add the job title to the report, + +545 +00:33:30,850 --> 00:33:32,710 +you have to go and modify it everywhere, they are + +546 +00:33:32,710 --> 00:33:35,310 +all there. Now the GIT report has a slight + +547 +00:33:35,310 --> 00:33:37,930 +difference between it and the CalcNetSalary. What + +548 +00:33:37,930 --> 00:33:40,790 +is it? In this GIT report, there is a common thing + +549 +00:33:40,790 --> 00:33:42,950 +between everyone, a common code, which is the name + +550 +00:33:42,950 --> 00:33:47,150 +and the ID, and there are different things. Okay? + +551 +00:33:47,330 --> 00:33:50,840 +In the CalcNetSalary, there is no common thing By + +552 +00:33:50,840 --> 00:33:52,580 +once, right or wrong? Salary calculation is + +553 +00:33:52,580 --> 00:33:55,260 +completely different, but this has a common part + +554 +00:33:55,260 --> 00:33:59,340 +and a different part. Instead of repeating the + +555 +00:33:59,340 --> 00:34:00,720 +code, every time you want to add a new type of + +556 +00:34:00,720 --> 00:34:03,840 +employee, you have to print the name and ID and + +557 +00:34:03,840 --> 00:34:06,860 +job title. No, the common part is all this. See + +558 +00:34:06,860 --> 00:34:09,680 +what I'm going to do. They tell you to take it + +559 +00:34:09,680 --> 00:34:13,900 +from here. Okay, and go to the employee, this one + +560 +00:34:13,900 --> 00:34:15,660 +instead of being abstract, I don't want to make it + +561 +00:34:15,660 --> 00:34:18,600 +abstract this git, I want to put code in it Okay, + +562 +00:34:18,660 --> 00:34:20,940 +I want to tell him the git report in the parent + +563 +00:34:20,940 --> 00:34:28,080 +make it return to me return name and id and I can + +564 +00:34:28,080 --> 00:34:38,320 +also add what job title this.jobtitle because this + +565 +00:34:38,320 --> 00:34:42,140 +represents the basis of the report Everyone wants + +566 +00:34:42,140 --> 00:34:45,820 +to do this job. Okay? No, don't remove them from + +567 +00:34:45,820 --> 00:34:49,260 +the children. The children need a detailed report. + +568 +00:34:49,940 --> 00:34:51,860 +Okay? The full-time employee needs this + +569 +00:34:51,860 --> 00:34:57,120 +information and additional information. Okay? So I + +570 +00:34:57,120 --> 00:35:01,240 +went, since there was a Git report that had a + +571 +00:35:01,240 --> 00:35:06,120 +common code and a different code. I made a Git + +572 +00:35:06,120 --> 00:35:08,120 +report in the parent, put the common code in it + +573 +00:35:08,120 --> 00:35:10,900 +and went to the children. the full-time employee. + +574 +00:35:11,400 --> 00:35:12,580 +Yes, what do I want to tell him here? I want to + +575 +00:35:12,580 --> 00:35:16,560 +tell him, sir, the super dot get report. I mean, + +576 +00:35:16,580 --> 00:35:22,340 +if you don't put it like that, that's it, the son + +577 +00:35:22,340 --> 00:35:24,640 +will get married to whom? The father, isn't that + +578 +00:35:24,640 --> 00:35:27,640 +what we agreed on? Okay, but what I mean is that + +579 +00:35:27,640 --> 00:35:30,880 +when the sir gets this report, he executes the + +580 +00:35:30,880 --> 00:35:34,000 +code in the father and continues on. So I want to + +581 +00:35:34,000 --> 00:35:40,650 +tell him, super dot get report. and add this word + +582 +00:35:40,650 --> 00:35:44,590 +to it and in the part-time employee I say super + +583 +00:35:44,590 --> 00:35:50,930 +.get report and add this word to it and of course + +584 +00:35:50,930 --> 00:35:56,510 +we remove from here the name and the id is this + +585 +00:35:56,510 --> 00:35:59,930 +the best code or not? it is the best ok? then we + +586 +00:35:59,930 --> 00:36:04,140 +will learn something else which isto be able to do + +587 +00:36:04,140 --> 00:36:06,980 +method overriding and from the method found in the + +588 +00:36:06,980 --> 00:36:09,320 +subclass we extract the method found in the parent + +589 +00:36:09,320 --> 00:36:14,660 +class and we continue on it so now I have a new + +590 +00:36:14,660 --> 00:36:18,940 +answer I want to make a report to it I make an + +591 +00:36:18,940 --> 00:36:21,900 +override to getReport and I extract super + +592 +00:36:21,900 --> 00:36:25,480 +.getReport and then I execute the code that I want + +593 +00:36:25,480 --> 00:36:31,340 +and now when I come and run it does not change the + +594 +00:36:31,340 --> 00:36:36,080 +execution But my code became better. Now I don't + +595 +00:36:36,080 --> 00:36:39,440 +have repeated code in everything. For example, if + +596 +00:36:39,440 --> 00:36:42,600 +I tell you to remove the ID from the report, it + +597 +00:36:42,600 --> 00:36:45,440 +will only change here in the super. But most of + +598 +00:36:45,440 --> 00:36:50,480 +the time it will change in each of the subclasses. + +599 +00:36:50,820 --> 00:36:55,230 +Who worked on Android before you? For example, let + +600 +00:36:55,230 --> 00:36:59,430 +me show you something in Android to understand + +601 +00:36:59,430 --> 00:37:02,570 +what you used to do in the past when you didn't + +602 +00:37:02,570 --> 00:37:05,750 +understand what you were doing. Things in Android + +603 +00:37:05,750 --> 00:37:08,810 +or in any library with a graphical user interface. + +604 +00:37:09,430 --> 00:37:11,470 +It tells you that you want to create a face in + +605 +00:37:11,470 --> 00:37:15,210 +Android. Create a new class in Java or Kotlin. The + +606 +00:37:15,210 --> 00:37:17,910 +same idea. Name it, for example, MyActivity. + +607 +00:37:20,810 --> 00:37:23,230 +In order to make a dialectic, you need to make two + +608 +00:37:23,230 --> 00:37:29,430 +nodes in Kotlin, for example, AppCompatActivity + +609 +00:37:32,030 --> 00:37:34,370 +He tells you to create an implement for this + +610 +00:37:34,370 --> 00:37:36,970 +class. Of course, you don't know anything about + +611 +00:37:36,970 --> 00:37:38,830 +this class, nor do you have to know anything about + +612 +00:37:38,830 --> 00:37:42,770 +it. This is a design for a face. He and those who + +613 +00:37:42,770 --> 00:37:44,670 +designed the Android library created this thing. + +614 +00:37:45,470 --> 00:37:48,770 +Okay? He tells you to create your own face. Create + +615 +00:37:48,770 --> 00:37:52,810 +an extend for this class. By going to Excel, it + +616 +00:37:52,810 --> 00:37:56,790 +took everything in the parent class Ok, now you + +617 +00:37:56,790 --> 00:38:02,570 +want to add things related to you, add buttons and + +618 +00:38:02,570 --> 00:38:05,470 +GUI components related to you I tell you simply, + +619 +00:38:05,850 --> 00:38:08,970 +there is a method that we put in this class called + +620 +00:38:08,970 --> 00:38:12,750 +for example onStart() Where is this method + +621 +00:38:12,750 --> 00:38:17,750 +present? In this class It asks you to add your + +622 +00:38:17,750 --> 00:38:21,940 +code Go and implement for whom? for the on start, + +623 +00:38:22,140 --> 00:38:25,240 +so you come here and you do public of course it is + +624 +00:38:25,240 --> 00:38:26,720 +on the edge of the understudy line by itself it + +625 +00:38:26,720 --> 00:38:30,040 +will write what? this method, but you have to + +626 +00:38:30,040 --> 00:38:33,440 +understand what is happening to do public and + +627 +00:38:33,440 --> 00:38:38,280 +write on start and it will tell you that the first + +628 +00:38:38,280 --> 00:38:44,680 +line that has to be there is super dot on start + +629 +00:38:44,680 --> 00:38:49,780 +and it will tell you to write here the code that + +630 +00:38:49,780 --> 00:38:54,730 +you wantWhy? Because there is a code in the old + +631 +00:38:54,730 --> 00:38:57,530 +start of the app. If you don't put this line, + +632 +00:38:58,050 --> 00:39:01,640 +there is a big problem. Because there's a code in + +633 +00:39:01,640 --> 00:39:02,980 +the app. I don't know what it is, and I don't care + +634 +00:39:02,980 --> 00:39:07,380 +to know. I use Anatol Slash to relax my mind about + +635 +00:39:07, + +667 +00:41:02,210 --> 00:41:04,850 +should be present in the child to see it, but the + +668 +00:41:04,850 --> 00:41:07,990 +children have a different implementation. We dealt + +669 +00:41:07,990 --> 00:41:10,210 +with two cases. The case of the annual + +670 +00:41:10,210 --> 00:41:13,090 +calculation, which is that each subclass has a + +671 +00:41:13,090 --> 00:41:16,270 +completely different code, there is nothing in + +672 +00:41:16,270 --> 00:41:18,310 +common between them, so we made the annual + +673 +00:41:18,310 --> 00:41:20,750 +calculation abstract in the superclass, and we + +674 +00:41:20,750 --> 00:41:22,770 +made a completely different implementation in the + +675 +00:41:22,770 --> 00:41:26,490 +subclasses. The other case is the get report, which + +676 +00:41:26,490 --> 00:41:29,250 +is a bit different because it has a common part, + +677 +00:41:29,690 --> 00:41:32,150 +so we made the get report not abstract in the + +678 +00:41:32,150 --> 00:41:35,970 +employee, we put code in it, but we made it + +679 +00:41:35,970 --> 00:41:39,210 +override in the subclasses through the override, + +680 +00:41:39,310 --> 00:41:42,450 +we took the super's claim and added code to it, + +681 +00:41:43,050 --> 00:41:50,640 +another code. It's clear, guys? Now, This is for + +682 +00:41:50,640 --> 00:41:52,980 +the review of Object-Oriented, we still have one + +683 +00:41:52,980 --> 00:41:57,640 +part to review, which is the interface part, which + +684 +00:41:57,640 --> 00:42:01,160 +we will cover in the next lecture, God willing. Do + +685 +00:42:01,160 --> 00:42:02,600 +you have any questions, guys, for the explanation? + +686 +00:42:02,740 --> 00:42:05,460 +Go ahead. When we did this, we wrote it in the + +687 +00:42:05,460 --> 00:42:08,580 +book, and we took it from the email, where did the + +688 +00:42:08,580 --> 00:42:11,310 +obligation go? Yes, my colleagues asked a good + +689 +00:42:11,310 --> 00:42:13,870 +question. I say here that the difference is that + +690 +00:42:13,870 --> 00:42:16,930 +when the method in the header stopped being + +691 +00:42:16,930 --> 00:42:18,730 +abstract in the case of the Git report, the + +692 +00:42:18,730 --> 00:42:20,530 +necessity disappeared. It is not a problem. It is + +693 +00:42:20,530 --> 00:42:22,630 +true that the necessity disappeared and this is + +694 +00:42:22,630 --> 00:42:25,950 +negative, but on the contrary, when you download + +695 +00:42:25,950 --> 00:42:31,290 +the Git report, the programmer will see that it is + +696 +00:42:31,290 --> 00:42:33,990 +not complete, so he himself will understand that + +697 +00:42:33,990 --> 00:42:36,890 +he wants to implement it. The idea here is that it + +698 +00:42:36,890 --> 00:42:41,260 +exists and he can download it. So at least he knows + +699 +00:42:41,260 --> 00:42:42,640 +that this method does something, so he wants to + +700 +00:42:42,640 --> 00:42:49,880 +complete it by overriding it. Overriding is a + +701 +00:42:49,880 --> 00:42:51,720 +method that exists in the superclass and you + +702 +00:42:51,720 --> 00:42:58,020 +overwrite it. in the subclass because when it + +703 +00:42:58,020 --> 00:43:01,980 +executes this code it sees the real object type + +704 +00:43:01,980 --> 00:43:04,720 +and reads the git report found in the real object + +705 +00:43:04,720 --> 00:43:07,760 +it sees the full-time and reads the git report + +706 +00:43:07,760 --> 00:43:10,880 +found in the full-time that's it, it knows what's + +707 +00:43:10,880 --> 00:43:14,710 +in the app It calls the app in one case. What is + +708 +00:43:14,710 --> 00:43:18,030 +it? The child does not have access to the app. But + +709 +00:43:18,030 --> 00:43:20,810 +here in the Git report specifically, I want the + +710 +00:43:20,810 --> 00:43:23,650 +code that is in the app. So I made the child call + +711 +00:43:23,650 --> 00:43:28,070 +the super of the app. Calm down, guys. Today's + +712 +00:43:28,070 --> 00:43:29,990 +lecture, God willing, is the last lecture in + +713 +00:43:29,990 --> 00:43:33,090 +reviewing Object Oriented. God bless you all. diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/FqUtaBtEY9E_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/FqUtaBtEY9E_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..df337062a7a7182f71721553bc485e349ca76922 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/FqUtaBtEY9E_raw.srt @@ -0,0 +1,2920 @@ +1 +00:00:05,260 --> 00:00:06,520 +In the name of Allah, the most merciful, the most + +2 +00:00:06,520 --> 00:00:10,920 +merciful In the last lecture, guys, we started by + +3 +00:00:10,920 --> 00:00:13,140 +reviewing the concepts of object-oriented + +4 +00:00:13,140 --> 00:00:16,760 +programming, okay? And we carried out the review + +5 +00:00:16,760 --> 00:00:20,140 +based on an example that we proposed in the last + +6 +00:00:20,140 --> 00:00:25,160 +lecture, which is the example of employees. We + +7 +00:00:25,160 --> 00:00:27,580 +started with this example that we made a class to + +8 +00:00:27,580 --> 00:00:31,090 +represent employee data.Then it developed with me + +9 +00:00:31,090 --> 00:00:34,830 +that I have different types of employees, there + +10 +00:00:34,830 --> 00:00:37,150 +are full-time employees, part-time employees, each + +11 +00:00:37,150 --> 00:00:40,930 +one has its own data, so we made subclasses, so + +12 +00:00:40,930 --> 00:00:44,910 +that I don't have to rewrite everything in the + +13 +00:00:44,910 --> 00:00:47,250 +subclasses, there are common things, all the + +14 +00:00:47,250 --> 00:00:49,850 +employees have a name, ID, job title and methods + +15 +00:00:49,850 --> 00:00:54,280 +related to them, but the employees differ there + +16 +00:00:54,280 --> 00:00:56,820 +are certain things, for example the part-time + +17 +00:00:56,820 --> 00:00:58,740 +worker has hours and prices per hour, the full + +18 +00:00:58,740 --> 00:01:00,800 +-time worker has basic salaries, married, number + +19 +00:01:00,800 --> 00:01:02,580 +of children, whether he has health insurance or + +20 +00:01:02,580 --> 00:01:05,140 +not, so the different things I did in subclasses + +21 +00:01:05,140 --> 00:01:08,900 +made them take the common things by extending from + +22 +00:01:08,900 --> 00:01:11,280 +the superclass, okay? And that's how I provided + +23 +00:01:11,280 --> 00:01:13,340 +coding that I didn't need to repeat the common + +24 +00:01:13,340 --> 00:01:17,990 +things in the subclasses Then he developed with us + +25 +00:01:17,990 --> 00:01:20,090 +the topic and told us that we are going to make a + +26 +00:01:20,090 --> 00:01:23,030 +method to calculate the salaries of employees, + +27 +00:01:23,110 --> 00:01:23,590 +okay? + +28 +00:01:26,390 --> 00:01:29,830 +And we came, for example, to the class full-time + +29 +00:01:29,830 --> 00:01:31,890 +employee, part-time employee, because the salary + +30 +00:01:31,890 --> 00:01:37,770 +calculation of employees differs from one employee + +31 +00:01:37,770 --> 00:01:41,010 +to another employee, right or not, guys? Meaning + +32 +00:01:41,010 --> 00:01:45,350 +that the full-time employee's salary is different + +33 +00:01:45,350 --> 00:01:46,130 +from the part-time + +34 +00:01:48,930 --> 00:01:52,050 +employee so that's why I went to the full-time + +35 +00:01:52,050 --> 00:01:55,570 +employee and made a method to calculate salaries + +36 +00:01:55,570 --> 00:02:00,350 +easy calculate net salary and in the part-time + +37 +00:02:00,350 --> 00:02:04,110 +employee also I made a method called calculate net + +38 +00:02:04,110 --> 00:02:08,410 +salary number of hours times hours and I said this + +39 +00:02:08,410 --> 00:02:11,330 +method calculate net salary I can't put it in the + +40 +00:02:11,330 --> 00:02:12,570 +super class because each one has a different + +41 +00:02:12,570 --> 00:02:18,160 +implementation right or not Okay, now in the main + +42 +00:02:18,160 --> 00:02:22,340 +method I went to create objects from full-time and + +43 +00:02:22,340 --> 00:02:25,000 +part-time I created two full-time objects and one + +44 +00:02:25,000 --> 00:02:29,660 +part-time object Now I said that I want to ask all + +45 +00:02:29,660 --> 00:02:33,280 +my employees to print salaries for all their + +46 +00:02:33,280 --> 00:02:39,140 +employees Now it is not a good solution to bring + +47 +00:02:39,140 --> 00:02:41,260 +full-time salaries and part-time salaries + +48 +00:02:41,260 --> 00:02:45,890 +separately So I would like to have a way to gather + +49 +00:02:45,890 --> 00:02:47,990 +all types of employees together and tell them to + +50 +00:02:47,990 --> 00:02:50,070 +make a loop on them and print their salaries. + +51 +00:02:51,870 --> 00:02:54,630 +Because I have different types of employees, there + +52 +00:02:54,630 --> 00:02:56,510 +is full-time and there is part-time, it can be + +53 +00:02:56,510 --> 00:03:02,250 +tens or hundreds. You can make each array and put + +54 +00:03:02,250 --> 00:03:04,510 +the full-time in the full-time array and the part + +55 +00:03:04,510 --> 00:03:07,190 +-time in the part-time array and make a loop on + +56 +00:03:07,190 --> 00:03:08,890 +the array in this case and a loop on the array in + +57 +00:03:08,890 --> 00:03:12,160 +this case, but this solutionNot good, because if + +58 +00:03:12,160 --> 00:03:14,580 +you want to add a new type, you need to make a new + +59 +00:03:14,580 --> 00:03:17,620 +array and a new loop. Can we put all types of + +60 +00:03:17,620 --> 00:03:21,540 +employees in one array? Yes, here we benefit from + +61 +00:03:21,540 --> 00:03:24,100 +the concept of polymorphism. What does + +62 +00:03:24,100 --> 00:03:27,680 +polymorphism mean? In short, that I can deal with + +63 +00:03:27,680 --> 00:03:32,760 +the type of child based on the previous type. Of + +64 +00:03:32,760 --> 00:03:35,680 +course, they used to tell us this, but what is its + +65 +00:03:35,680 --> 00:03:38,780 +reality? This is what we see in this case.What + +66 +00:03:38,780 --> 00:03:39,680 +does it mean that a child doesn't take his + +67 +00:03:39,680 --> 00:03:41,760 +father's type? It means that he can't get full + +68 +00:03:41,760 --> 00:03:44,440 +-time and part-time and put them in one employee + +69 +00:03:44,440 --> 00:03:45,120 +category. + +70 +00:03:47,460 --> 00:03:50,400 +Does it work or not? Yes, it works. This employee + +71 +00:03:50,400 --> 00:03:54,540 +category accepted full FTE1 and FTE2 which are + +72 +00:03:54,540 --> 00:03:58,580 +full-time and took PTE1 which is part-time. This + +73 +00:03:58,580 --> 00:04:00,940 +is a benefit. This is polymorphism. That you deal + +74 +00:04:00,940 --> 00:04:04,420 +with children based on their father's type. + +75 +00:04:07,840 --> 00:04:09,680 +this means that I collected them all in one loop + +76 +00:04:09,680 --> 00:04:11,640 +and if I can work on them, I can work on them in + +77 +00:04:11,640 --> 00:04:16,180 +one loop but I came across a problem, what is it? + +78 +00:04:16,340 --> 00:04:18,900 +when I came to work on the loop, for each employee + +79 +00:04:18,900 --> 00:04:21,900 +E present in employees, I went to press E to + +80 +00:04:21,900 --> 00:04:25,840 +calculate salary, but this calculation of salary + +81 +00:04:25,840 --> 00:04:29,460 +did not work, but it is present, it is not written + +82 +00:04:29,460 --> 00:04:31,360 +in full-time and part-time, why did it not work? + +83 +00:04:32,430 --> 00:04:37,170 +Now when he made a dot, he saw the get-id, get + +84 +00:04:37,170 --> 00:04:40,430 +-title and get-name, but he didn't see the calc, + +85 +00:04:40,550 --> 00:04:47,090 +net salary. Why? Now, he is saying that it is + +86 +00:04:47,090 --> 00:04:48,990 +correct that when you put them in one array, + +87 +00:04:51,450 --> 00:04:54,130 +employees. So they are all employees. But when you + +88 +00:04:54,130 --> 00:04:58,090 +look at them now, this E that I am looking at is + +89 +00:04:58,090 --> 00:05:01,030 +either full-time or part-time. I did not make the + +90 +00:05:01,030 --> 00:05:03,630 +object employee. I made it either full-time or + +91 +00:05:03,630 --> 00:05:09,930 +part-time. But now he sees them as employees. They + +92 +00:05:09,930 --> 00:05:12,350 +don't see them as full-time and part-time. What do + +93 +00:05:12,350 --> 00:05:15,090 +they see as an employee? I mean anything related + +94 +00:05:15,090 --> 00:05:17,010 +to full-time and part-time, they don't see it. + +95 +00:05:17,290 --> 00:05:20,630 +They only see that he is an employee. Just like + +96 +00:05:20,630 --> 00:05:22,470 +you are students from different families, + +97 +00:05:23,130 --> 00:05:25,890 +different cities, different projects and different + +98 +00:05:25,890 --> 00:05:27,390 +habits, but in the end, what is the difference + +99 +00:05:27,390 --> 00:05:31,650 +between you? I see you as a student, a university + +100 +00:05:31,650 --> 00:05:34,030 +degree, you just register at the university and + +101 +00:05:34,030 --> 00:05:36,690 +pay and that's it, okay? There is no need for + +102 +00:05:36,690 --> 00:05:40,560 +anything else. This is the same thing, I see you + +103 +00:05:40,560 --> 00:05:43,180 +as an employee, I do not see you as a full-time or + +104 +00:05:43,180 --> 00:05:48,140 +part-time. The main object is either full-time or + +105 +00:05:48,140 --> 00:05:54,340 +part-time, but the lens I look at is of the type + +106 +00:05:54,340 --> 00:05:58,100 +of employee. That is, you only see from here the + +107 +00:05:58,100 --> 00:06:00,440 +things that are present in the employee, and there + +108 +00:06:00,440 --> 00:06:02,000 +is none of the things that are present in the + +109 +00:06:02,000 --> 00:06:05,970 +employee. which is the Calc Net Salary. So what + +110 +00:06:05,970 --> 00:06:10,370 +can we do to implement Calc Net Salary? Who can + +111 +00:06:10,370 --> 00:06:10,650 +tell you? + +112 +00:06:14,290 --> 00:06:18,250 +Now, we can do the following. Look at me. The main + +113 +00:06:18,250 --> 00:06:21,250 +problem is that he sees that they are employees. + +114 +00:06:21,310 --> 00:06:24,130 +But if he sees that they are full-time or part + +115 +00:06:24,130 --> 00:06:27,330 +-time, he can claim the loan. So you can do + +116 +00:06:27,330 --> 00:06:30,830 +casting for the object. But before you do casting, + +117 +00:06:30,970 --> 00:06:32,830 +you have to check what type it is because there + +118 +00:06:32,830 --> 00:06:35,210 +are two possibilities for casting This E that I'm + +119 +00:06:35,210 --> 00:06:37,110 +passing through, I don't know if it's full-time or + +120 +00:06:37,110 --> 00:06:39,970 +part-time So before you cast it, you have to do an + +121 +00:06:39,970 --> 00:06:44,130 +if statement You say if E is an instance of, this + +122 +00:06:44,130 --> 00:06:45,930 +instance of is present in all programming + +123 +00:06:45,930 --> 00:06:50,290 +languages with different names If E is basically a + +124 +00:06:50,290 --> 00:06:54,510 +type of full-time employee If it's basically a + +125 +00:06:54,510 --> 00:06:58,860 +type of full-time employee, then take this E and + +126 +00:06:58,860 --> 00:07:06,420 +made a casting for a full-time employee and put it + +127 +00:07:06,420 --> 00:07:11,000 +in a reference of type full-time employee semi + +128 +00:07:11,000 --> 00:07:18,200 +-temp what + +129 +00:07:18,200 --> 00:07:22,680 +did this line do? this line actually + +130 +00:07:23,760 --> 00:07:26,440 +I made a new reference for the object. I did not + +131 +00:07:26,440 --> 00:07:29,860 +make a new object. I do not make new objects. The + +132 +00:07:29,860 --> 00:07:31,900 +object is not made until it meets the word new. + +133 +00:07:32,340 --> 00:07:34,160 +There is no new because there is no new object. + +134 +00:07:35,360 --> 00:07:37,360 +Here I made a new pointer, a new reference. + +135 +00:07:38,340 --> 00:07:41,420 +Because this object that exists in E, this + +136 +00:07:41,420 --> 00:07:43,860 +example, this object has a reference that is + +137 +00:07:43,860 --> 00:07:48,260 +called E. E is a reference. What is the type of E? + +138 +00:07:49,070 --> 00:07:53,230 +I told him to take the E and cast it as full-time + +139 +00:07:53,230 --> 00:07:56,710 +employee and put the result where? In temp. This + +140 +00:07:56,710 --> 00:08:01,270 +temp is another reference of the same object. But + +141 +00:08:01,270 --> 00:08:05,410 +this reference is of another length. + +142 +00:08:06,930 --> 00:08:10,350 +This reference is of full-time employee. This + +143 +00:08:10,350 --> 00:08:14,350 +reference is of full-time employee. + +144 +00:08:18,670 --> 00:08:21,670 +What is the benefit of this formula? I can say + +145 +00:08:21,670 --> 00:08:32,030 +system.out.println temp. Yes, he saw the salary + +146 +00:08:32,030 --> 00:08:35,890 +calculation Yes, he saw it Is it with him or not? + +147 +00:08:36,230 --> 00:08:43,050 +Yes, it is with him Ok, this can be a part-time + +148 +00:08:43,050 --> 00:08:47,530 +employee So, what should I do? Else F And I copy + +149 +00:08:47,530 --> 00:08:47,910 +this + +150 +00:08:55,310 --> 00:08:59,850 +If it is a part-time employee + +151 +00:09:08,690 --> 00:09:11,970 +i.e. if it is related to all employees, if it is a + +152 +00:09:11,970 --> 00:09:14,530 +full-time employee, make a casting for a full-time + +153 +00:09:14,530 --> 00:09:17,870 +employee and claim the net salary if it is a part + +154 +00:09:17,870 --> 00:09:20,110 +-time employee, go back to the part-time employee + +155 +00:09:20,110 --> 00:09:22,230 +type, make a casting for a part-time employee and + +156 +00:09:22,230 --> 00:09:26,870 +claim the net salary if it is a part-time + +157 +00:09:26,870 --> 00:09:26,990 +employee, make a casting for a part-time employee + +158 +00:09:26,990 --> 00:09:29,370 +and claim the net salary if it is a part-time + +159 +00:09:29,370 --> 00:09:29,370 +employee, make a casting for a part-time employee + +160 +00:09:29,370 --> 00:09:29,930 +and claim the net salary if it is a part-time + +161 +00:09:29,930 --> 00:09:30,130 +employee, make a casting for a part-time employee + +162 +00:09:30,130 --> 00:09:31,710 +and claim the net salary if it is a part-time + +163 +00:09:31,710 --> 00:09:32,450 +employee, make a casting for a part-time employee + +164 +00:09:32,450 --> 00:09:33,690 +and claim the net salary if it is a part-time + +165 +00:09:33,690 --> 00:09:34,630 +employee, make a casting for a part-time employee + +166 +00:09:34,630 --> 00:09:34,790 +and claim the net salary if it is a part-time + +167 +00:09:34,790 --> 00:09:36,210 +employee, make a casting for a part-time employee + +168 +00:09:36,210 --> 00:09:37,410 +and claim the net salary if it is a part-time + +169 +00:09:37,410 --> 00:09:37,410 +employee, make a casting for a part-time employee + +170 +00:09:38,240 --> 00:09:39,800 +if it is full-time, you need to calculate the + +171 +00:09:39,800 --> 00:09:42,900 +salary in full-time, and if it is part-time, you + +172 +00:09:42,900 --> 00:09:46,700 +need to calculate the salary in part-time. What do + +173 +00:09:46,700 --> 00:09:48,920 +you think about this solution? Is it good? It is + +174 +00:09:48,920 --> 00:09:51,520 +good. Why? Because if you do it manually, you need + +175 +00:09:51,520 --> 00:09:54,260 +to press on the manager and press on the L's. You + +176 +00:09:54,260 --> 00:09:58,000 +need to press on the L's. No, this is not the + +177 +00:09:58,000 --> 00:10:00,420 +problem. Because you are doing it full-time and + +178 +00:10:00,420 --> 00:10:06,240 +part-time. If I do it again, you need to press on + +179 +00:10:06,240 --> 00:10:08,190 +the L's and press on the F again. Correct or not? + +180 +00:10:08,390 --> 00:10:10,870 +So if you have 5 types of employees, you will have + +181 +00:10:10,870 --> 00:10:14,030 +to change something in the code and this is a bad + +182 +00:10:14,030 --> 00:10:21,430 +thing. I want to do this bad code because you will + +183 +00:10:21,430 --> 00:10:27,030 +have to add a new F. Did you find the F that you + +184 +00:10:27,030 --> 00:10:28,930 +learned in the first year and you were happy with + +185 +00:10:28,930 --> 00:10:32,010 +it? Did you find that you learn that this F + +186 +00:10:32,010 --> 00:10:37,180 +wherever you find it No, you know that his code is + +187 +00:10:37,180 --> 00:10:41,840 +bad Not always, if you find something like this If + +188 +00:10:41,840 --> 00:10:45,260 +it was E instance of You know that your code has a + +189 +00:10:45,260 --> 00:10:49,440 +problem You don't always open the F statement F + +190 +00:10:49,440 --> 00:10:51,920 +come on if it was like this No, here the F has + +191 +00:10:51,920 --> 00:10:54,000 +nothing Because it means that every time you add + +192 +00:10:54,000 --> 00:10:56,800 +F, you don't get DAD You need to make another F + +193 +00:10:56,800 --> 00:10:59,840 +less than F Right or not guys? Okay, how many + +194 +00:10:59,840 --> 00:11:01,760 +times did we make Array? No, it's the same thing, + +195 +00:11:01,920 --> 00:11:06,380 +we make Array and Loop by itselfOkay, I want it to + +196 +00:11:06,380 --> 00:11:08,780 +be something like this, that they pass it to all + +197 +00:11:08,780 --> 00:11:13,260 +employees and say E.calc net salary and we're + +198 +00:11:13,260 --> 00:11:16,520 +done. This codemap should know that this is full + +199 +00:11:16,520 --> 00:11:18,880 +-time and not part-time. But right now, this is + +200 +00:11:18,880 --> 00:11:22,380 +not possible. Why? Because the calc net salary has + +201 +00:11:22,380 --> 00:11:24,800 +nothing to do with it. It doesn't exist. Okay, the + +202 +00:11:24,800 --> 00:11:28,160 +solution? Who will tell me? Okay. It's in the + +203 +00:11:28,160 --> 00:11:30,100 +class of the UI, which is the app and all that, + +204 +00:11:30,200 --> 00:11:35,040 +and it's in Heritage.org. Ok, now all the problem + +205 +00:11:35,040 --> 00:11:37,900 +is present because this data is not present in the + +206 +00:11:37,900 --> 00:11:41,800 +app because if I go to the app which is the + +207 +00:11:41,800 --> 00:11:45,960 +employee and I made an empty data public float + +208 +00:11:45,960 --> 00:11:52,880 +calc net salary and I made it return return zero + +209 +00:11:52,880 --> 00:11:57,860 +ok + +210 +00:11:57,860 --> 00:12:00,700 +guys, I made a data called calc net salary and it + +211 +00:12:00,700 --> 00:12:07,880 +returns return zero now as soon as I did that + +212 +00:12:07,880 --> 00:12:12,800 +I went to the employee and added the calculator + +213 +00:12:12,800 --> 00:12:17,860 +let me summarize on the board what we did we did + +214 +00:12:17,860 --> 00:12:23,440 +the following I have the class employee and + +215 +00:12:23,440 --> 00:12:29,200 +I have two classes one full-time employee and one + +216 +00:12:29,200 --> 00:12:33,750 +part-time employee now this one we made it calc + +217 +00:12:33,750 --> 00:12:39,710 +net salary we put implementation in it and this + +218 +00:12:39,710 --> 00:12:45,750 +one we made it calc net salary because + +219 +00:12:45,750 --> 00:12:49,690 +if we go now we also made it calc net salary the + +220 +00:12:49,690 --> 00:12:53,430 +same header of the method but this one has nothing + +221 +00:12:53,430 --> 00:12:56,930 +ok + +222 +00:12:56,930 --> 00:13:03,180 +this is what we and these extend from the employee + +223 +00:13:03,180 --> 00:13:10,420 +now in this case if I went to the man and told him + +224 +00:13:10,420 --> 00:13:12,440 +to wrap me around all the employees and calculate + +225 +00:13:12,440 --> 00:13:15,680 +the salary did you find silence? wasn't there an + +226 +00:13:15,680 --> 00:13:17,300 +error a while ago? it is present did you find it? + +227 +00:13:17,340 --> 00:13:19,460 +no, it became present ok, when he comes to execute + +228 +00:13:19,460 --> 00:13:23,020 +what will he print? books books? let's see no, no, + +229 +00:13:23,060 --> 00:13:24,740 +no, no, no, no, no, no, no, no, no, no, no, no, + +230 +00:13:24,740 --> 00:13:24,860 +no, no, no, no, no, no, no, no, no, no, no, no, + +231 +00:13:24,900 --> 00:13:24,900 +no, no, no, no, no, no, no, no, no, no, no, no, + +232 +00:13:24,900 --> 00:13:25,560 +no, no, no, no, no, no, no, no, no, no, no, no, + +233 +00:13:25,560 --> 00:13:26,780 +no, no, no, no, no, no, no, no, no, no, no, no, + +234 +00:13:26,780 --> 00:13:26,780 +no, no, no, no, no, no, no, no, no, no, no, no, + +235 +00:13:26,780 --> 00:13:28,820 +no, no, no + +236 +00:13:43,720 --> 00:13:46,720 +Ok, what did it print? It printed numbers. Ok, why + +237 +00:13:46,720 --> 00:13:50,740 +didn't it print numbers? Yes? Because the method + +238 +00:13:50,740 --> 00:13:52,980 +went to the father. When we turned it on, it went + +239 +00:13:52,980 --> 00:13:55,140 +to the child and saw the method that came to him. + +240 +00:13:55,140 --> 00:13:58,300 +This method is the same as the signature, but its + +241 +00:13:58,300 --> 00:14:03,660 +purpose is different. Ok, now, what is missing + +242 +00:14:03,660 --> 00:14:06,300 +here? So, the correct answer is present in the + +243 +00:14:06,300 --> 00:14:09,760 +father, but what is returned? Zero.But here, when + +244 +00:14:09,760 --> 00:14:11,820 +you look at the print of numbers, the first thing + +245 +00:14:11,820 --> 00:14:13,380 +you understand is that the print of numbers is the + +246 +00:14:13,380 --> 00:14:15,320 +same as that of children. The same as that of + +247 +00:14:15,320 --> 00:14:17,560 +whom? Of the children. The same thing happened to + +248 +00:14:17,560 --> 00:14:22,360 +me. When I turned to the employees and printed, he + +249 +00:14:22,360 --> 00:14:25,600 +was smart. He himself saw what kind of object was + +250 +00:14:25,600 --> 00:14:29,450 +the real thing, without me telling him.So if the + +251 +00:14:29,450 --> 00:14:31,850 +object is a full-time employee, he should ask for + +252 +00:14:31,850 --> 00:14:33,670 +a calc net salary. The first thing I look for is + +253 +00:14:33,670 --> 00:14:36,290 +where the calc net salary is. I look for it in the + +254 +00:14:36,290 --> 00:14:39,510 +first place, in the apple. If it is in the apple, + +255 +00:14:40,090 --> 00:14:44,550 +I look for it in the apple. So here I have a calc + +256 +00:14:44,550 --> 00:14:46,310 +net salary, and here a calc net salary, and here a + +257 +00:14:46,310 --> 00:14:51,960 +calc net salary.These two methods exist, we say + +258 +00:14:51,960 --> 00:14:53,860 +there is inheritance, this is worth it from this, + +259 +00:14:54,240 --> 00:14:57,820 +this is worth it from this, this is worth it from + +260 +00:14:57,820 --> 00:14:59,420 +this, this is worth it from this, this is worth it + +261 +00:14:59,420 --> 00:14:59,420 +from this, this is worth it from this, this is + +262 +00:14:59,420 --> 00:14:59,420 +worth it from this, this is worth it from this, + +263 +00:14:59,420 --> 00:14:59,420 +this is worth it from this, this is worth it from + +264 +00:14:59,420 --> 00:14:59,420 +this, this is worth it from this, this is worth it + +265 +00:14:59,420 --> 00:14:59,540 +from this, this is worth it from this, this is + +266 +00:14:59,540 --> 00:15:01,960 +worth it from this, this is worth it from this, + +267 +00:15:02,380 --> 00:15:03,820 +this is worth it from this, this is worth it from + +268 +00:15:03,820 --> 00:15:05,160 +this, this is worth it from this, this is worth it + +269 +00:15:05,160 --> 00:15:05,360 +from this, this is worth it from this, this is + +270 +00:15:05,360 --> 00:15:05,360 +worth it from this, this is worth it from this, + +271 +00:15:05,360 --> 00:15:05,360 +this is worth it from this, this is worth it from + +272 +00:15:05,360 --> 00:15:05,360 +this, this is worth it from this, this is worth it + +273 +00:15:05,360 --> 00:15:05,360 +from this, this is worth it from this, this is + +274 +00:15:05,360 --> 00:15:06,120 +worth it from this, this is worth it from this, + +275 +00:15:06,220 --> 00:15:08,710 +this is worth it from this, this is worthYes, in + +276 +00:15:08,710 --> 00:15:10,430 +the Quran, this is the same as me, this is the + +277 +00:15:10,430 --> 00:15:14,070 +same as me, this is the same as me, this is the + +278 +00:15:14,070 --> 00:15:14,510 +same as me, this is the same as me, this is the + +279 +00:15:14,510 --> 00:15:14,510 +same as me, this is the same as me, this is the + +280 +00:15:14,510 --> 00:15:14,510 +same as me, this is the same as me, this is the + +281 +00:15:14,510 --> 00:15:14,530 +same as me, this is the same as me, this is the + +282 +00:15:14,530 --> 00:15:14,550 +same as me, this is the same as me, this is the + +283 +00:15:14,550 --> 00:15:14,550 +same as me, this is the same as me, this is the + +284 +00:15:14,550 --> 00:15:14,750 +same as me, this is the same as me, this is the + +285 +00:15:14,750 --> 00:15:15,330 +same as me, this is the same as me, this is the + +286 +00:15:15,330 --> 00:15:15,330 +same as me, this is the same as me, this is the + +287 +00:15:15,330 --> 00:15:15,330 +same as me, this is the same as me, this is the + +288 +00:15:15,330 --> 00:15:15,350 +same as me, this is the same as me, this is the + +289 +00:15:15,350 --> 00:15:15,890 +same as me, this is the same as me, this is the + +290 +00:15:15,890 --> 00:15:20,290 +same as me, this is the same as me, this is the + +291 +00:15:20,290 --> 00:15:29,560 +same as me, this is the same as me, thisHe claims + +292 +00:15:29,560 --> 00:15:31,740 +to be a calculate salary, because any calculate + +293 +00:15:31,740 --> 00:15:33,860 +salary is correct that it is a reference from the + +294 +00:15:33,860 --> 00:15:36,640 +type of employee, but when he claims that he is + +295 +00:15:36,640 --> 00:15:39,020 +smart for himself, he sees what kind of real + +296 +00:15:39,020 --> 00:15:42,620 +object, he finds it full-time. Does the calculate + +297 +00:15:42,620 --> 00:15:45,040 +salary exist in full-time? Yes, it exists, we + +298 +00:15:45,040 --> 00:15:51,620 +claim it.The next one was part-time. Is there + +299 +00:15:51,620 --> 00:15:53,480 +calculate salary in part-time? Yes, there is. You + +300 +00:15:53,480 --> 00:15:56,840 +can see in the chart here. What is the use of + +301 +00:15:56,840 --> 00:16:02,020 +this? This is just to silence him. Ok? Now he has + +302 +00:16:02,020 --> 00:16:05,680 +to see calculate salary. But when he does it, + +303 +00:16:05,680 --> 00:16:09,610 +where does he do it? In the son.means that it is + +304 +00:16:09,610 --> 00:16:13,370 +present in the father to achieve the concept of + +305 +00:16:13,370 --> 00:16:16,790 +polymorphism and see it but when it comes to + +306 +00:16:16,790 --> 00:16:20,030 +perform it will perform what is present in the son + +307 +00:16:20,030 --> 00:16:22,490 +and they say that they override what is present + +308 +00:16:22,490 --> 00:16:26,670 +where? in the father and the proof of this talk is + +309 +00:16:26,670 --> 00:16:30,170 +that we made a new type of employees for example + +310 +00:16:30,170 --> 00:16:35,630 +here I added a new type for example contract + +311 +00:16:35,630 --> 00:16:38,070 +employee + +312 +00:16:40,560 --> 00:16:44,700 +And we didn't overwrite it. These are the 7 names + +313 +00:16:44,700 --> 00:16:52,840 +of the app. Let's try it. If I come here, I create + +314 +00:16:52,840 --> 00:16:56,900 +a new group and + +315 +00:16:56,900 --> 00:17:00,240 +I want to name it Contract Employee. + +316 +00:17:10,180 --> 00:17:19,040 +and we told him extends employee + +317 +00:17:19,040 --> 00:17:25,360 +and of course we need whom? constructor and we + +318 +00:17:25,360 --> 00:17:33,240 +went to main and we created object from whom? from + +319 +00:17:33,240 --> 00:17:41,060 +contract employee contract E1 new contract + +320 +00:17:41,060 --> 00:17:48,820 +employee employees + +321 +00:17:48,820 --> 00:18:01,900 +.add + +322 +00:18:07,400 --> 00:18:10,000 +and then for loop and we told him to cancel it. He + +323 +00:18:10,000 --> 00:18:12,240 +didn't make an error, but when he came to execute + +324 +00:18:12,240 --> 00:18:16,120 +it, the last employee who clicked on it suffered. + +325 +00:18:16,960 --> 00:18:20,120 +The proof is not present in the contract, but it + +326 +00:18:20,120 --> 00:18:23,440 +was taken from the father. So now I put it in the + +327 +00:18:23,440 --> 00:18:26,780 +father to achieve the concept of polymorphism, but + +328 +00:18:26,780 --> 00:18:29,440 +actually he executes what is present in the son. + +329 +00:18:30,640 --> 00:18:33,600 +Do you understand this idea, guys? Ok? And keep in + +330 +00:18:33,600 --> 00:18:35,840 +mind that here I explained it to you contrary to + +331 +00:18:35,840 --> 00:18:38,180 +what they explained to you in two programs. For + +332 +00:18:38,180 --> 00:18:40,540 +example, I used to tell you to put oil in the + +333 +00:18:40,540 --> 00:18:43,980 +father and override it somewhere in the son. No, I + +334 +00:18:43,980 --> 00:18:45,960 +came to you gradually. I told you to think + +335 +00:18:45,960 --> 00:18:48,640 +logically. Ok? Here you see the program building + +336 +00:18:48,640 --> 00:18:51,760 +with you step by step as you think. At first he + +337 +00:18:51,760 --> 00:18:53,420 +thought, we said there is nothing in common, so we + +338 +00:18:53,420 --> 00:18:56,720 +did not put it in the father. But after that, to + +339 +00:18:56,720 --> 00:18:59,360 +benefit from polymorphism, I put something in the + +340 +00:18:59,360 --> 00:19:02,940 +app, but it was empty. Okay? So that he can see + +341 +00:19:02,940 --> 00:19:05,660 +it, but when he executes it, he will see what is + +342 +00:19:05,660 --> 00:19:07,480 +in the app. So I added it to the app, and I + +343 +00:19:07,480 --> 00:19:10,860 +overwrote it in the app. Do you understand why I + +344 +00:19:10,860 --> 00:19:13,620 +made this arrangement? This is the logical + +345 +00:19:13,620 --> 00:19:15,940 +arrangement that you make when you build the + +346 +00:19:15,940 --> 00:19:17,660 +program. Do you agree with me? + +347 +00:19:21,040 --> 00:19:24,750 +Okay.We did this well until now, but there is + +348 +00:19:24,750 --> 00:19:29,410 +still a small problem. What is this problem? You + +349 +00:19:29,410 --> 00:19:30,970 +will find that the person who wrote this code + +350 +00:19:30,970 --> 00:19:33,810 +left, left the job. And another person came after + +351 +00:19:33,810 --> 00:19:38,370 +him and wanted to continue, okay? And the manager + +352 +00:19:38,370 --> 00:19:40,130 +came and said, uncle, let's add a new type, let's + +353 +00:19:40,130 --> 00:19:45,950 +put a new type of employees, okay? Like what, for + +354 +00:19:45,950 --> 00:19:46,890 +example, let's + +355 +00:19:54,230 --> 00:19:56,270 +Yes, a volunteer for example, this is a volunteer, + +356 +00:19:56,610 --> 00:20:02,330 +volunteer employee He takes a volunteer for + +357 +00:20:02,330 --> 00:20:05,070 +example, we give him transportation for example, + +358 +00:20:06,130 --> 00:20:10,990 +okay? And pocket money I made a volunteer + +359 +00:20:10,990 --> 00:20:12,810 +employee, of course this is the one who made the + +360 +00:20:12,810 --> 00:20:14,830 +code, not the one who made the basic code This is + +361 +00:20:14,830 --> 00:20:17,090 +a new employee, he doesn't know what's in the code + +362 +00:20:17,090 --> 00:20:19,930 +He added a new class and said to me, since I have + +363 +00:20:19,930 --> 00:20:21,490 +an employee, whom did I extend it to? + +364 +00:20:24,680 --> 00:20:27,780 +Employee Okay, and he also wants to add the + +365 +00:20:27,780 --> 00:20:29,900 +constructor He will do it because of the sector + +366 +00:20:29,900 --> 00:20:33,020 +And that's it, now the main method came He wants + +367 +00:20:33,020 --> 00:20:36,280 +to add a new type of employee For example, + +368 +00:20:37,320 --> 00:20:49,020 +volunteer employee Anything + +369 +00:20:54,000 --> 00:21:04,500 +Okay? And we added it to the array employees I + +370 +00:21:04,500 --> 00:21:10,100 +V E 1 And calculate their salaries And you will + +371 +00:21:10,100 --> 00:21:13,540 +find that their salaries are also zero Why? + +372 +00:21:13,740 --> 00:21:16,640 +Because I am not good at math I did not know that + +373 +00:21:16,640 --> 00:21:20,960 +I have a data that I have to write in the EBON to + +374 +00:21:20,960 --> 00:21:26,470 +calculate salaries Those who wrote the code know + +375 +00:21:26,470 --> 00:21:29,070 +that it must be done. But those who came to + +376 +00:21:29,070 --> 00:21:33,570 +complete the code do not know. So we need a way to + +377 +00:21:33,570 --> 00:21:36,590 +force the programmer that as soon as you add a new + +378 +00:21:36,590 --> 00:21:40,310 +type of employees, you must implement for whom? + +379 +00:21:41,390 --> 00:21:42,470 +Yes, for these methods. + +380 +00:21:47,520 --> 00:21:51,240 +Yes, so let's say we force him, this is the proof + +381 +00:21:51,240 --> 00:21:53,740 +now, I'm supposed to do it now, I got to him as + +382 +00:21:53,740 --> 00:21:55,700 +follows, this is the calculator that we want to + +383 +00:21:55,700 --> 00:21:57,960 +say, anyone who wants to make a new employee from + +384 +00:21:57,960 --> 00:22:01,380 +it must determine how to calculate the salary of + +385 +00:22:01,380 --> 00:22:04,780 +the employee. Currently, this does not force, + +386 +00:22:05,420 --> 00:22:08,380 +override is optional, you can override, you can + +387 +00:22:08,380 --> 00:22:12,860 +not, okay, but to force himYou have to remove the + +388 +00:22:12,860 --> 00:22:15,220 +implementation of the method, which is the body of + +389 +00:22:15,220 --> 00:22:18,100 +the method, okay? You put a decimal point in the + +390 +00:22:18,100 --> 00:22:23,340 +end and you make the value of this abstract. As if + +391 +00:22:23,340 --> 00:22:27,760 +you say that the value of this is insufficient. + +392 +00:22:28,420 --> 00:22:30,560 +The word abstract simply means that there is a + +393 +00:22:30,560 --> 00:22:35,260 +deficiency in it. And since the value has become + +394 +00:22:35,260 --> 00:22:39,180 +insufficient, the whole class has also become + +395 +00:22:39,180 --> 00:22:41,880 +insufficient. Not when the part is missing, + +396 +00:22:42,040 --> 00:22:44,500 +everything becomes missing, okay? So you also have + +397 +00:22:44,500 --> 00:22:47,100 +to class it with abstract. + +398 +00:22:49,940 --> 00:22:53,420 +So what is the advantage of writing in abstract? + +399 +00:22:53,920 --> 00:22:56,720 +Did you find that anyone who does extend to + +400 +00:22:56,720 --> 00:22:59,780 +employee will give him error? He will say, come + +401 +00:22:59,780 --> 00:23:02,320 +on, you want to do extend to employee, you have + +402 +00:23:02,320 --> 00:23:06,220 +one of two options. The first option is that you + +403 +00:23:06,220 --> 00:23:09,000 +have to complete the employee.The one that is + +404 +00:23:09,000 --> 00:23:11,560 +lacking in it must be completed. This is the first + +405 +00:23:11,560 --> 00:23:16,140 +option. The second option is to make this one also + +406 +00:23:16,140 --> 00:23:19,460 +obsolete. It is as if you say that this one does + +407 +00:23:19,460 --> 00:23:21,720 +not inherit everything in the employee, but makes + +408 +00:23:21,720 --> 00:23:25,240 +it lacking in order for a son to inherit what is + +409 +00:23:25,240 --> 00:23:28,470 +in it and complete it. So what I want to do is to + +410 +00:23:28,470 --> 00:23:30,450 +make him complete what is missing. For example, to + +411 +00:23:30,450 --> 00:23:33,570 +order from Netbeans, you will find that he wrote + +412 +00:23:33,570 --> 00:23:35,690 +here the word override and brought you the calc + +413 +00:23:35,690 --> 00:23:38,830 +net salary. So now, in order to make the employee + +414 +00:23:38,830 --> 00:23:42,090 +extend, he is forcing you to warn you. He tells + +415 +00:23:42,090 --> 00:23:45,050 +you that you have to override for whom? For the + +416 +00:23:45,050 --> 00:23:47,010 +calc net salary. To determine, for example, the + +417 +00:23:47,010 --> 00:23:50,150 +salary of the contract employee. Let's say, for + +418 +00:23:50,150 --> 00:23:52,270 +example, the contract employee's return is 500. + +419 +00:23:54,310 --> 00:23:59,590 +Okay? Volunteer is also the same thing. You have + +420 +00:23:59,590 --> 00:24:05,790 +to implement abstract methods. Now you want to + +421 +00:24:05,790 --> 00:24:09,070 +create a new type of employee. Volunteer is + +422 +00:24:09,070 --> 00:24:10,910 +defined. For example, let's give him a pocket + +423 +00:24:10,910 --> 00:24:14,150 +money of $100 per month. Transportation is $100 + +424 +00:24:14,150 --> 00:24:17,310 +and pocket money is $100. Okay? I'll get the + +425 +00:24:17,310 --> 00:24:23,410 +second. Now in the name method, who is called? The + +426 +00:24:23,410 --> 00:24:25,700 +calc.It's a net salient. Where does this net + +427 +00:24:25,700 --> 00:24:29,160 +salient exist? Yes, in the liver. It exists + +428 +00:24:29,160 --> 00:24:32,300 +abstractly in the father just to see if there is a + +429 +00:24:32,300 --> 00:24:35,320 +hypermorphism. And there is also an abstract to + +430 +00:24:35,320 --> 00:24:40,000 +make it compulsory to write it down. For example, + +431 +00:24:40,120 --> 00:24:41,860 +if a new employee comes and wants to make a new + +432 +00:24:41,860 --> 00:24:43,780 +employee, he will do extend for himself and he + +433 +00:24:43,780 --> 00:24:45,820 +will say no, you have to make implement for this + +434 +00:24:45,820 --> 00:24:49,440 +person. And when you bring a library that you use + +435 +00:24:49,440 --> 00:24:51,840 +for learning and so on, they tell you to extend + +436 +00:24:51,840 --> 00:24:55,180 +for this class and complete this course. They tell + +437 +00:24:55,180 --> 00:24:56,660 +you like this. If you do like this, you will not + +438 +00:24:56,660 --> 00:25:00,010 +understand. Okay, but if you go back, no. this + +439 +00:25:00,010 --> 00:25:04,590 +means that you have to complete these courses you + +440 +00:25:04,590 --> 00:25:06,790 +want to do a new employee, you have to show him + +441 +00:25:06,790 --> 00:25:08,530 +how to calculate his salary so that when he looks + +442 +00:25:08,530 --> 00:25:10,610 +at them and looks at the character, he doesn't + +443 +00:25:10,610 --> 00:25:13,390 +know how to calculate correct or not guys? okay? + +444 +00:25:14,110 --> 00:25:16,490 +so if you don't have an abstract proof, you can + +445 +00:25:16,490 --> 00:25:19,350 +live your life, no problem but it's better if you + +446 +00:25:19,350 --> 00:25:22,910 +make the proof abstract as a kind of compulsion to + +447 +00:25:22,910 --> 00:25:26,430 +whom? to anyone who wants to add a subclass, he + +448 +00:25:26,430 --> 00:25:30,660 +has to implement itLapdala Calculated Salad And + +449 +00:25:30,660 --> 00:25:32,040 +you will find that once you start with it, it will + +450 +00:25:32,040 --> 00:25:34,920 +stop printing what? Yellow Because it will take + +451 +00:25:34,920 --> 00:25:39,500 +over the circles that are present in it It is + +452 +00:25:39,500 --> 00:25:42,000 +clear, guys, that this is what is present on the + +453 +00:25:42,000 --> 00:25:44,680 +paper Now, the proof is abstract Anyone who wants + +454 +00:25:44,680 --> 00:25:50,420 +to add a subclass must complete this proof, okay? + +455 +00:25:51,320 --> 00:25:53,880 +Of course, you have also studied that the abstract + +456 +00:25:53,880 --> 00:25:59,260 +class cannot be made into an objectRight or not? + +457 +00:25:59,700 --> 00:26:02,020 +What is the reason of course? Because it is always + +458 +00:26:02,020 --> 00:26:04,780 +missing. What does it want to put in the memory? + +459 +00:26:05,140 --> 00:26:07,140 +We said that when an object is created, it wants + +460 +00:26:07,140 --> 00:26:10,200 +to put attributes and methods on the memory. Well, + +461 +00:26:10,300 --> 00:26:11,820 +this method does not exist yet. What does it want + +462 +00:26:11,820 --> 00:26:15,880 +to do? Okay, you can't create it. It is not made + +463 +00:26:15,880 --> 00:26:20,010 +toThe employee is not made to extract objects from + +464 +00:26:20,010 --> 00:26:23,810 +it. The employee is made to collect common things + +465 +00:26:23,810 --> 00:26:26,490 +and implement the property of polymorphism to make + +466 +00:26:26,490 --> 00:26:32,670 +it extend and add new things that you want. Do you + +467 +00:26:32,670 --> 00:26:35,630 +agree with this idea, guys? Okay. + +468 +00:26:40,730 --> 00:26:44,490 +Now, let's take another idea similar to this one. + +469 +00:26:45,130 --> 00:26:48,320 +The manager also asked me is to print reports + +470 +00:26:48,320 --> 00:26:52,760 +about the employees. They need reports about each + +471 +00:26:52,760 --> 00:26:55,460 +employee. What does the report need to contain? It + +472 +00:26:55,460 --> 00:26:58,100 +needs to contain the name of the employee, the ID, + +473 +00:26:59,060 --> 00:27:03,040 +and the specific data. If it is full-time, in + +474 +00:27:03,040 --> 00:27:07,800 +addition to the name and the ID. they need to have + +475 +00:27:07,800 --> 00:27:11,020 +insurance or not, the basic salary, the wife and + +476 +00:27:11,020 --> 00:27:13,860 +so on. If he is a part-time employee, he needs to + +477 +00:27:13,860 --> 00:27:16,300 +get his name and ID, and also the number of hours + +478 +00:27:16,300 --> 00:27:18,340 +and the price of the hour. If he is a contract + +479 +00:27:18,340 --> 00:27:20,340 +worker, he needs to get his name and ID, and the + +480 +00:27:20,340 --> 00:27:21,680 +duration of the contract, beginning and ending, + +481 +00:27:21,820 --> 00:27:24,580 +and so on. That is, either we make a comprehensive + +482 +00:27:24,580 --> 00:27:26,300 +report, and the report will differ from employee + +483 +00:27:26,300 --> 00:27:30,610 +to employee again. Because how do we do it? This + +484 +00:27:30,610 --> 00:27:33,270 +is a review of what we took, but there is one + +485 +00:27:33,270 --> 00:27:36,410 +additional thing. Let's think about it. This + +486 +00:27:36,410 --> 00:27:41,810 +report is called a gate report. It is a report to + +487 +00:27:41,810 --> 00:27:44,310 +the employee. The first thing to think about is + +488 +00:27:44,310 --> 00:27:48,470 +where to put this report. In the parent or in the + +489 +00:27:48,470 --> 00:27:52,850 +children? Okay, first of all, think about it, this + +490 +00:27:52,850 --> 00:27:56,010 +report has nothing in common, each one has a + +491 +00:27:56,010 --> 00:27:59,410 +different report than the other, so it should be + +492 +00:27:59,410 --> 00:28:02,050 +present where? In the children, not in the + +493 +00:28:02,050 --> 00:28:04,690 +parents, but I want to do it in the parents, why? + +494 +00:28:05,690 --> 00:28:09,690 +So that I can come here and tell them to pass it + +495 +00:28:09,690 --> 00:28:13,010 +on to all employees and implement the Get report, + +496 +00:28:13,770 --> 00:28:16,390 +this is what I want to do, but the Get report is + +497 +00:28:16,390 --> 00:28:20,100 +still Not present. So I go now, I will do, a while + +498 +00:28:20,100 --> 00:28:22,640 +ago we explained from bottom to top. This get is + +499 +00:28:22,640 --> 00:28:25,100 +done. After we understand that to benefit from + +500 +00:28:25,100 --> 00:28:27,740 +this polymorphism and everything should be in get + +501 +00:28:27,740 --> 00:28:32,620 +report, I go to the parent and I do abstract + +502 +00:28:32,620 --> 00:28:37,560 +public string get report. + +503 +00:28:41,720 --> 00:28:43,600 +and as soon as I add it here, I get the error in + +504 +00:28:43,600 --> 00:28:55,520 +all the subclasses and we go to full-time let's + +505 +00:28:55,520 --> 00:28:59,440 +do it quickly in all and then we do the + +506 +00:28:59,440 --> 00:29:00,480 +implementation in it + +507 +00:29:17,730 --> 00:29:21,190 +Okay, I went to the full-time employee now Go down + +508 +00:29:21,190 --> 00:29:25,690 +You will find a buffer I got a report exactly in + +509 +00:29:25,690 --> 00:29:28,250 +its implementation What is its implementation? + +510 +00:29:28,510 --> 00:29:31,950 +Let's make a report Let's say return For example, + +511 +00:29:32,050 --> 00:29:37,410 +let's say it has a name like this this.name Of + +512 +00:29:37,410 --> 00:29:38,730 +course, the name is an attribute that is present + +513 +00:29:38,730 --> 00:29:41,790 +anywhere in the superclass I can use this.name + +514 +00:29:41,790 --> 00:29:45,370 +Because it is protected So we took it in the last + +515 +00:29:45,370 --> 00:29:51,560 +lecture, okay? Plus slash in id I'm making a + +516 +00:29:51,560 --> 00:29:58,040 +report as a string this dot id this is the main + +517 +00:29:58,040 --> 00:30:08,960 +information now basic salary this + +518 +00:30:08,960 --> 00:30:10,600 +basic salary is from the information related to + +519 +00:30:10,600 --> 00:30:14,740 +who? to the child plus the last thing I want to + +520 +00:30:14,740 --> 00:30:19,430 +say net salary what is net salary? The total + +521 +00:30:19,430 --> 00:30:23,990 +salary is this dot calc net salary. So what did + +522 +00:30:23,990 --> 00:30:26,970 +she do here? Method from within method. Normal. + +523 +00:30:27,550 --> 00:30:30,870 +Okay? So now the salary or the report of the full + +524 +00:30:30,870 --> 00:30:34,870 +-time employee will be the name, the ID, the basic + +525 +00:30:34,870 --> 00:30:38,190 +salary, and the net salary. Okay? The first two + +526 +00:30:38,190 --> 00:30:41,670 +attributes, which are shared with everyone, and + +527 +00:30:41,670 --> 00:30:44,730 +the rest are different. Okay? This is for the full + +528 +00:30:44,730 --> 00:30:49,740 +-time employee. For the part-time employee, same + +529 +00:30:49,740 --> 00:30:58,720 +thing now I have to return the name and the id I + +530 +00:30:58,720 --> 00:31:04,440 +have to return the code name this + +531 +00:31:04,440 --> 00:31:05,420 +.name + +532 +00:31:16,700 --> 00:31:38,400 +name and id, number of hours net + +533 +00:31:38,400 --> 00:31:44,840 +salary this + +534 +00:31:44,840 --> 00:31:45,720 +.calc + +535 +00:31:49,200 --> 00:31:51,700 +Net Salary. That's it. The rest is the same thing. + +536 +00:31:52,340 --> 00:31:55,420 +The same idea. Now when I go to the main and say + +537 +00:31:55,420 --> 00:31:59,240 +get report, we said that get report is present in + +538 +00:31:59,240 --> 00:32:01,740 +the parent but it is not abstract. When it is + +539 +00:32:01,740 --> 00:32:04,960 +called, it will call the main that is present in + +540 +00:32:04,960 --> 00:32:08,480 +the subclasses. And here I did run, okay? + +541 +00:32:12,030 --> 00:32:16,030 +Yes, because these are the seconds Yes, our bagger + +542 +00:32:16,030 --> 00:32:19,610 +class is made of what guys? It is made of + +543 +00:32:19,610 --> 00:32:21,250 +exception in it, so let's remove only the + +544 +00:32:21,250 --> 00:32:28,670 +exception and return only return null Okay, + +545 +00:32:28,770 --> 00:32:30,110 +we can't write it because we don't want to get + +546 +00:32:30,110 --> 00:32:30,110 +lost + +547 +00:32:35,960 --> 00:32:42,640 +ok and here return null and in main it prints the + +548 +00:32:42,640 --> 00:32:45,320 +report to see when we separate them together + +549 +00:32:56,080 --> 00:32:59,020 +because it runs and brings reports and each report + +550 +00:32:59,020 --> 00:33:00,860 +is specific to the type of employee this first one + +551 +00:33:00,860 --> 00:33:03,280 +is full-time, right? and the second one is also + +552 +00:33:03,280 --> 00:33:05,960 +full-time the third one is part-time, it brings me + +553 +00:33:05,960 --> 00:33:08,780 +the number of hours and the rate and what about + +554 +00:33:08,780 --> 00:33:09,820 +the rest of them? what about the rest of them? + +555 +00:33:11,020 --> 00:33:14,200 +okay, this is almost a review of this GIT report + +556 +00:33:14,200 --> 00:33:16,960 +like Calculate Salary, right or not? we did it in + +557 +00:33:16,960 --> 00:33:18,860 +the app to see the polymorphism and each one has a + +558 +00:33:18,860 --> 00:33:21,660 +different implementation but there is a simple + +559 +00:33:21,660 --> 00:33:26,190 +difference is that the name and the ID are common + +560 +00:33:26,190 --> 00:33:29,490 +and even when you add the job title, if I told you + +561 +00:33:29,490 --> 00:33:30,790 +that you have to add the job title to the report, + +562 +00:33:30,850 --> 00:33:32,710 +you have to go and modify it everywhere, they are + +563 +00:33:32,710 --> 00:33:35,310 +all there. Now the GIT report has a slight + +564 +00:33:35,310 --> 00:33:37,930 +difference between it and the CalcNetSalary. What + +565 +00:33:37,930 --> 00:33:40,790 +is it? In this GIT report, there is a common thing + +566 +00:33:40,790 --> 00:33:42,950 +between everyone, a common code, which is the name + +567 +00:33:42,950 --> 00:33:47,150 +and the ID, and there are different things. Okay? + +568 +00:33:47,330 --> 00:33:50,840 +In the CalcNetSalary, there is no common thingBy + +569 +00:33:50,840 --> 00:33:52,580 +once, right or wrong? Salary calculation is + +570 +00:33:52,580 --> 00:33:55,260 +completely different, but this has a common part + +571 +00:33:55,260 --> 00:33:59,340 +and a different part. Instead of repeating the + +572 +00:33:59,340 --> 00:34:00,720 +code, every time you want to add a new type of + +573 +00:34:00,720 --> 00:34:03,840 +employee, you have to print the name and ID and + +574 +00:34:03,840 --> 00:34:06,860 +job title. No, the common part is all this. See + +575 +00:34:06,860 --> 00:34:09,680 +what I'm going to do. They tell you to take it + +576 +00:34:09,680 --> 00:34:13,900 +from here. Okay, and go to the employee, this one + +577 +00:34:13,900 --> 00:34:15,660 +instead of being abstract, I don't want to make it + +578 +00:34:15,660 --> 00:34:18,600 +abstract this git, I want to put code in it Okay, + +579 +00:34:18,660 --> 00:34:20,940 +I want to tell him the git report in the parent + +580 +00:34:20,940 --> 00:34:28,080 +make it return to me return name and id and I can + +581 +00:34:28,080 --> 00:34:38,320 +also add what job title this.jobtitle because this + +582 +00:34:38,320 --> 00:34:42,140 +represents the basis of the report Everyone wants + +583 +00:34:42,140 --> 00:34:45,820 +to do this job. Okay? No, don't remove them from + +584 +00:34:45,820 --> 00:34:49,260 +the children. The children need a detailed report. + +585 +00:34:49,940 --> 00:34:51,860 +Okay? The full-time employee needs this + +586 +00:34:51,860 --> 00:34:57,120 +information and additional information. Okay? So I + +587 +00:34:57,120 --> 00:35:01,240 +went, since there was a Git report that had a + +588 +00:35:01,240 --> 00:35:06,120 +common code and a different code. I made a Git + +589 +00:35:06,120 --> 00:35:08,120 +report in the parent, put the common code in it + +590 +00:35:08,120 --> 00:35:10,900 +and went to the children. the full-time employee. + +591 +00:35:11,400 --> 00:35:12,580 +Yes, what do I want to tell him here? I want to + +592 +00:35:12,580 --> 00:35:16,560 +tell him, sir, the super dot get report. I mean, + +593 +00:35:16,580 --> 00:35:22,340 +if you don't put it like that, that's it, the son + +594 +00:35:22,340 --> 00:35:24,640 +will get married to whom? The father, isn't that + +595 +00:35:24,640 --> 00:35:27,640 +what we agreed on? Okay, but what I mean is that + +596 +00:35:27,640 --> 00:35:30,880 +when the sir gets this report, he executes the + +597 +00:35:30,880 --> 00:35:34,000 +code in the father and continues on. So I want to + +598 +00:35:34,000 --> 00:35:40,650 +tell him, super dot get report. and add this word + +599 +00:35:40,650 --> 00:35:44,590 +to it and in the part-time employee I say super + +600 +00:35:44,590 --> 00:35:50,930 +.get report and add this word to it and of course + +601 +00:35:50,930 --> 00:35:56,510 +we remove from here the name and the id is this + +602 +00:35:56,510 --> 00:35:59,930 +the best code or not? it is the best ok? then we + +603 +00:35:59,930 --> 00:36:04,140 +will learn something else which isto be able to do + +604 +00:36:04,140 --> 00:36:06,980 +method overriding and from the method found in the + +605 +00:36:06,980 --> 00:36:09,320 +subclass we extract the method found in the parent + +606 +00:36:09,320 --> 00:36:14,660 +class and we continue on it so now I have a new + +607 +00:36:14,660 --> 00:36:18,940 +answer I want to make a report to it I make an + +608 +00:36:18,940 --> 00:36:21,900 +override to getReport and I extract super + +609 +00:36:21,900 --> 00:36:25,480 +.getReport and then I execute the code that I want + +610 +00:36:25,480 --> 00:36:31,340 +and now when I come and run it does not change the + +611 +00:36:31,340 --> 00:36:36,080 +execution But my code became better. Now I don't + +612 +00:36:36,080 --> 00:36:39,440 +have repeated code in everything. For example, if + +613 +00:36:39,440 --> 00:36:42,600 +I tell you to remove the ID from the report, it + +614 +00:36:42,600 --> 00:36:45,440 +will only change here in the super. But most of + +615 +00:36:45,440 --> 00:36:50,480 +the time it will change in each of the subclasses. + +616 +00:36:50,820 --> 00:36:55,230 +Who worked on Android before you? For example, let + +617 +00:36:55,230 --> 00:36:59,430 +me show you something in Android to understand + +618 +00:36:59,430 --> 00:37:02,570 +what you used to do in the past when you didn't + +619 +00:37:02,570 --> 00:37:05,750 +understand what you were doing. Things in Android + +620 +00:37:05,750 --> 00:37:08,810 +or in any library with a graphical user interface. + +621 +00:37:09,430 --> 00:37:11,470 +It tells you that you want to create a face in + +622 +00:37:11,470 --> 00:37:15,210 +Android. Create a new class in Java or Kotlin. The + +623 +00:37:15,210 --> 00:37:17,910 +same idea. Name it, for example, MyActivity. + +624 +00:37:20,810 --> 00:37:23,230 +In order to make a dialectic, you need to make two + +625 +00:37:23,230 --> 00:37:29,430 +nodes in Kotlin, for example, AppCompatActivity + +626 +00:37:32,030 --> 00:37:34,370 +He tells you to create an implement for this + +627 +00:37:34,370 --> 00:37:36,970 +class. Of course, you don't know anything about + +628 +00:37:36,970 --> 00:37:38,830 +this class, nor do you have to know anything about + +629 +00:37:38,830 --> 00:37:42,770 +it. This is a design for a face. He and those who + +630 +00:37:42,770 --> 00:37:44,670 +designed the Android library created this thing. + +631 +00:37:45,470 --> 00:37:48,770 +Okay? He tells you to create your own face. Create + +632 +00:37:48,770 --> 00:37:52,810 +an extend for this class. By going to Excel, it + +633 +00:37:52,810 --> 00:37:56,790 +took everything in the parent class Ok, now you + +634 +00:37:56,790 --> 00:38:02,570 +want to add things related to you, add buttons and + +635 +00:38:02,570 --> 00:38:05,470 +GUI components related to you I tell you simply, + +636 +00:38:05,850 --> 00:38:08,970 +there is a method that we put in this class called + +637 +00:38:08,970 --> 00:38:12,750 +for example onStart() Where is this method + +638 +00:38:12,750 --> 00:38:17,750 +present? In this class It asks you to add your + +639 +00:38:17,750 --> 00:38:21,940 +code Go and implement for whom? for the on start, + +640 +00:38:22,140 --> 00:38:25,240 +so you come here and you do public of course it is + +641 +00:38:25,240 --> 00:38:26,720 +on the edge of the understudy line by itself it + +642 +00:38:26,720 --> 00:38:30,040 +will write what? this method, but you have to + +643 +00:38:30,040 --> 00:38:33,440 +understand what is happening to do public and + +644 +00:38:33,440 --> 00:38:38,280 +write on start and it will tell you that the first + +645 +00:38:38,280 --> 00:38:44,680 +line that has to be there is super dot on start + +646 +00:38:44,680 --> 00:38:49,780 +and it will tell you to write here the code that + +647 +00:38:49,780 --> 00:38:54,730 +you wantWhy? Because there is a code in the old + +648 +00:38:54,730 --> 00:38:57,530 +start of the app. If you don't put this line, + +649 +00:38:58,050 --> 00:39:01,640 +there is a big problem. Because there's a code in + +650 +00:39:01,640 --> 00:39:02,980 +the app. I don't know what it is, and I don't care + +651 +00:39:02,980 --> 00:39:07,380 +to know. I use Anatol Slash to relax my mind about + +652 +00:39:07,380 --> 00:39:11,380 +what's in the app. I add new things. But it tells + +653 +00:39:11,380 --> 00:39:14,040 +me that there's a code in OnStart that I need to + +654 +00:39:14,040 --> 00:39:16,240 +execute to complete drawing the screen and other + +655 +00:39:16,240 --> 00:39:19,020 +things. Execute it in the app, and then write + +656 +00:39:19,020 --> 00:39:22,300 +what? Write your code. Just like I went and + +657 +00:39:22,300 --> 00:39:25,560 +implemented a git report, I told it, super.git + +658 +00:39:25,560 --> 00:39:28,220 +report, to execute the code in the app, and then + +659 +00:39:28,220 --> 00:39:33,690 +execute the code. Did you get it? Did you get what + +660 +00:39:33,690 --> 00:39:38,530 +I did to implement the code in the app? Because + +661 +00:39:38,530 --> 00:39:40,890 +the code must be implemented in order for the + +662 +00:39:40,890 --> 00:39:43,390 +screen to work correctly. Then I add the specific + +663 +00:39:43,390 --> 00:39:49,890 +code. I add my GUI components here. As I did in my + +664 +00:39:49,890 --> 00:39:53,860 +previous class, Full-time Employee. I made an + +665 +00:39:53,860 --> 00:39:56,840 +overwrite for the git report And I used the super + +666 +00:39:56,840 --> 00:39:58,940 +.git report Because there is a code that has to be + +667 +00:39:58,940 --> 00:40:00,720 +executed Part of the report is retrieved from the + +668 +00:40:00,720 --> 00:40:04,260 +app And I completed parts of the report in my + +669 +00:40:04,260 --> 00:40:10,600 +class So this is pretty much the same idea This is + +670 +00:40:10,600 --> 00:40:13,720 +just to make you understand what's going on It's + +671 +00:40:13,720 --> 00:40:16,640 +not like a code monkey that executes the code as + +672 +00:40:16,640 --> 00:40:19,340 +it is Put it and it's done, that's how it works, I + +673 +00:40:19,340 --> 00:40:19,840 +don't know why + +674 +00:40:29,660 --> 00:40:34,680 +Okay? So this lecture covered more + +675 +00:40:34,680 --> 00:40:37,380 +than one thing, but on a major scale. We saw the + +676 +00:40:37,380 --> 00:40:42,260 +topic of the method of overriding. Because the + +677 +00:40:42,260 --> 00:40:44,220 +method found in the subclass is different from the + +678 +00:40:44,220 --> 00:40:47,080 +one found in the superclass. And we saw the + +679 +00:40:47,080 --> 00:40:51,160 +concept of polymorphism. That in order to deal + +680 +00:40:51,160 --> 00:40:54,080 +with children of the father's species, you can + +681 +00:40:54,080 --> 00:40:55,780 +make a loop on them, you make them believe that + +682 +00:40:55,780 --> 00:40:58,830 +the father has to be present in the father.Even if + +683 +00:40:58,830 --> 00:41:02,210 +it is present as abstract or an empty method, it + +684 +00:41:02,210 --> 00:41:04,850 +should be present in the child to see it, but the + +685 +00:41:04,850 --> 00:41:07,990 +children have a different implementation. We dealt + +686 +00:41:07,990 --> 00:41:10,210 +with two cases. The case of the annual + +687 +00:41:10,210 --> 00:41:13,090 +calculation, which is that each subclass has a + +688 +00:41:13,090 --> 00:41:16,270 +completely different code, there is nothing in + +689 +00:41:16,270 --> 00:41:18,310 +common between them, so we made the annual + +690 +00:41:18,310 --> 00:41:20,750 +calculation abstract in the superclass, and we + +691 +00:41:20,750 --> 00:41:22,770 +made a completely different implementation in the + +692 +00:41:22,770 --> 00:41:26,490 +subclasses.The other case is the get report, which + +693 +00:41:26,490 --> 00:41:29,250 +is a bit different because it has a common part, + +694 +00:41:29,690 --> 00:41:32,150 +so we made the get report not abstract in the + +695 +00:41:32,150 --> 00:41:35,970 +employee, we put code in it, but we made it + +696 +00:41:35,970 --> 00:41:39,210 +override in the subclasses through the override, + +697 +00:41:39,310 --> 00:41:42,450 +we took the super's claim and added code to it, + +698 +00:41:43,050 --> 00:41:50,640 +another code. It's clear, guys? Now,This is for + +699 +00:41:50,640 --> 00:41:52,980 +the review of Object-Oriented, we still have one + +700 +00:41:52,980 --> 00:41:57,640 +part to review, which is the interface part, which + +701 +00:41:57,640 --> 00:42:01,160 +we will cover in the next lecture, God willing. Do + +702 +00:42:01,160 --> 00:42:02,600 +you have any questions, guys, for the explanation? + +703 +00:42:02,740 --> 00:42:05,460 +Go ahead. When we did this, we wrote it in the + +704 +00:42:05,460 --> 00:42:08,580 +book, and we took it from the email, where did the + +705 +00:42:08,580 --> 00:42:11,310 +obligation go?Yes, my colleagues asked a good + +706 +00:42:11,310 --> 00:42:13,870 +question. I say here that the difference is that + +707 +00:42:13,870 --> 00:42:16,930 +when the method in the header stopped being + +708 +00:42:16,930 --> 00:42:18,730 +abstract in the case of the Git report, the + +709 +00:42:18,730 --> 00:42:20,530 +necessity disappeared. It is not a problem. It is + +710 +00:42:20,530 --> 00:42:22,630 +true that the necessity disappeared and this is + +711 +00:42:22,630 --> 00:42:25,950 +negative, but on the contrary, when you download + +712 +00:42:25,950 --> 00:42:31,290 +the Git report, the programmer will see that it is + +713 +00:42:31,290 --> 00:42:33,990 +not complete, so he himself will understand that + +714 +00:42:33,990 --> 00:42:36,890 +he wants to implement it. The idea here is that it + +715 +00:42:36,890 --> 00:42:41,260 +exists and he can download it.So at least he knows + +716 +00:42:41,260 --> 00:42:42,640 +that this method does something, so he wants to + +717 +00:42:42,640 --> 00:42:49,880 +complete it by overriding it. Overriding is a + +718 +00:42:49,880 --> 00:42:51,720 +method that exists in the superclass and you + +719 +00:42:51,720 --> 00:42:58,020 +overwrite it.in the subclass because when it + +720 +00:42:58,020 --> 00:43:01,980 +executes this code it sees the real object type + +721 +00:43:01,980 --> 00:43:04,720 +and reads the git report found in the real object + +722 +00:43:04,720 --> 00:43:07,760 +it sees the full-time and reads the git report + +723 +00:43:07,760 --> 00:43:10,880 +found in the full-time that's it, it knows what's + +724 +00:43:10,880 --> 00:43:14,710 +in the app It calls the app in one case. What is + +725 +00:43:14,710 --> 00:43:18,030 +it? The child does not have access to the app. But + +726 +00:43:18,030 --> 00:43:20,810 +here in the Git report specifically, I want the + +727 +00:43:20,810 --> 00:43:23,650 +code that is in the app. So I made the child call + +728 +00:43:23,650 --> 00:43:28,070 +the super of the app. Calm down, guys. Today's + +729 +00:43:28,070 --> 00:43:29,990 +lecture, God willing, is the last lecture in + +730 +00:43:29,990 --> 00:43:33,090 +reviewing Object Oriented. God bless you all. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/GQreoZc27fE.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/GQreoZc27fE.srt new file mode 100644 index 0000000000000000000000000000000000000000..9b55989d69da10b3688133e98788c9ab0d963cd0 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/GQreoZc27fE.srt @@ -0,0 +1,2521 @@ + +1 +00:00:06,110 --> 00:00:12,230 +As-salamu alaykum. In the last lecture, we started + +2 +00:00:12,230 --> 00:00:15,350 +with the first design pattern, which is the + +3 +00:00:15,350 --> 00:00:19,390 +factory pattern. We said that the factory + +4 +00:00:19,390 --> 00:00:25,200 +pattern's goal is to create a class. It has one + +5 +00:00:25,200 --> 00:00:29,800 +useful method to create objects for it. And we use + +6 +00:00:29,800 --> 00:00:32,800 +it in cases that if I have a group of objects that + +7 +00:00:32,800 --> 00:00:35,200 +have the same type, that is, they follow the same + +8 +00:00:35,200 --> 00:00:39,680 +interface or extend to the same super class. And I + +9 +00:00:39,680 --> 00:00:42,140 +need in my application to create one of these. For + +10 +00:00:42,140 --> 00:00:45,500 +example, if I have a group of employees of + +11 +00:00:45,500 --> 00:00:48,080 +different types, all of them borrow from the same + +12 +00:00:48,080 --> 00:00:52,760 +class employee. Or a group of delivery methods. For + +13 +00:00:52,760 --> 00:00:53,900 +example, the example we presented in the previous + +14 +00:00:53,900 --> 00:00:56,100 +lecture, it is separated from an interface called + +15 +00:00:56,100 --> 00:01:00,020 +delivery or a group of algorithms separated from + +16 +00:01:00,020 --> 00:01:02,200 +an interface called algorithm. In the end, I want + +17 +00:01:02,200 --> 00:01:05,220 +to create one of these. The idea is that if you + +18 +00:01:05,220 --> 00:01:08,160 +use the new operator, you bind yourself to the class + +19 +00:01:08,160 --> 00:01:11,260 +name, not that I say new and then class name. This + +20 +00:01:11,260 --> 00:01:13,860 +means that if you change the class name or change + +21 +00:01:13,860 --> 00:01:19,090 +its constructor, parameters, Whenever you use the + +22 +00:01:19,090 --> 00:01:22,290 +word new in the class name, it will change. So the + +23 +00:01:22,290 --> 00:01:25,910 +idea is that we can collect the process of + +24 +00:01:25,910 --> 00:01:32,110 +creation in one class called the factory. The + +25 +00:01:32,110 --> 00:01:39,290 +factory is what creates the objects. These objects + +26 +00:01:39,290 --> 00:01:42,950 +follow the same interface. + +27 +00:01:45,160 --> 00:01:49,740 +Because the client code does not know anything + +28 +00:01:49,740 --> 00:01:54,380 +about these factors, it only takes from the factory + +29 +00:01:54,380 --> 00:01:56,920 +it sends him a number and tells him to make one or + +30 +00:01:56,920 --> 00:02:00,420 +two or three choices so the interaction is with + +31 +00:02:00,420 --> 00:02:04,640 +the factory. The advantage here is that if there is + +32 +00:02:04,640 --> 00:02:08,560 +any change on these factors or any addition to a + +33 +00:02:08,560 --> 00:02:12,120 +new class, I will only have to count inside the + +34 +00:02:12,120 --> 00:02:14,980 +factory and there will not be any modification. + +35 +00:02:15,780 --> 00:02:18,340 +Because we explained in the last lecture two + +36 +00:02:18,340 --> 00:02:23,720 +examples based on the factory, which are based on + +37 +00:02:23,720 --> 00:02:27,870 +delivery methods and algorithms. So let's read the + +38 +00:02:27,870 --> 00:02:29,630 +slide again which was supposed to come after the + +39 +00:02:29,630 --> 00:02:30,790 +two examples I explained in the previous lecture + +40 +00:02:30,790 --> 00:02:33,990 +Let's + +41 +00:02:33,990 --> 00:02:37,490 +read it quickly. The factor is a class whose sole + +42 +00:02:37,490 --> 00:02:42,130 +job is to easily create and return instances of + +43 +00:02:42,130 --> 00:02:44,870 +other objects. It is clear that it creates objects + +44 +00:02:44,870 --> 00:02:48,970 +from another class and returns them to it. It is a + +45 +00:02:48,970 --> 00:02:51,610 +creation pattern that makes it easier to construct + +46 +00:02:51,610 --> 00:02:54,400 +complex objects. It facilitates the construction of + +47 +00:02:54,400 --> 00:02:56,880 +objects. There is also another advantage, which is + +48 +00:02:56,880 --> 00:02:59,200 +that it collects the construction process. Because + +49 +00:02:59,200 --> 00:03:03,720 +I am not using the new operator inside the + +50 +00:03:03,720 --> 00:03:07,040 +factory, right? If the parameters of the + +51 +00:03:07,040 --> 00:03:08,460 +constructors change, I change them in the factory, + +52 +00:03:08,640 --> 00:03:11,880 +right? One of the advantages of the factory is + +53 +00:03:11,880 --> 00:03:13,720 +that it hides the construction process from the + +54 +00:03:13,720 --> 00:03:17,160 +client. For example, if the constructor needs 10 + +55 +00:03:17,160 --> 00:03:21,390 +parameters, I pass these parameters from inside + +56 +00:03:21,390 --> 00:03:24,290 +the factory and give it default values to create + +57 +00:03:24,290 --> 00:03:27,330 +the object. The client does not need to know these + +58 +00:03:27,330 --> 00:03:30,090 +10 parameters. He just needs to tell it to create + +59 +00:03:30,090 --> 00:03:34,550 +one delivery method. From inside the factory, I + +60 +00:03:34,550 --> 00:03:37,030 +tell him to create the object and send him the + +61 +00:03:37,030 --> 00:03:41,150 +default parameters to create this object. Even the + +62 +00:03:41,150 --> 00:03:43,770 +details of creating the object are hidden from the + +63 +00:03:43,770 --> 00:03:47,840 +client. Instead of calling a constructor, use a + +64 +00:03:47,840 --> 00:03:55,420 +static method in a factory, saves + +65 +00:03:55,420 --> 00:03:57,680 +lines and complexity to quickly construct + +66 +00:03:57,680 --> 00:03:59,300 +initialize objects. + +67 +00:04:01,900 --> 00:04:05,800 +This is almost the same thing. The factory design + +68 +00:04:05,800 --> 00:04:08,300 +pattern is probably one of the most used design + +69 +00:04:08,300 --> 00:04:12,320 +patterns. Creates objects without exposing the + +70 +00:04:12,320 --> 00:04:15,200 +instantiation logic to the client. What does it + +71 +00:04:15,200 --> 00:04:17,820 +mean without exposing? It creates objects without + +72 +00:04:17,820 --> 00:04:20,540 +showing the details of the creation of the objects. + +73 +00:04:20,540 --> 00:04:25,500 +All the details are placed inside the factory. And + +74 +00:04:25,500 --> 00:04:28,260 +this is the last important point. Refers to the + +75 +00:04:28,260 --> 00:04:33,390 +newly created object through a common interface. + +76 +00:04:33,390 --> 00:04:36,610 +What does this mean? It means that whatever the + +77 +00:04:36,610 --> 00:04:38,650 +factory produces as the type of object it produces + +78 +00:04:38,650 --> 00:04:41,510 +returns from the type of interface. This is a very + +79 +00:04:41,510 --> 00:04:44,610 +important point. Because the client now deals with + +80 +00:04:44,610 --> 00:04:47,070 +the type of interface. He doesn't know anything + +81 +00:04:47,070 --> 00:04:51,970 +about the types of classes. The client is bound to + +82 +00:04:51,970 --> 00:04:54,730 +add new types of classes and in the end deals with + +83 +00:04:54,730 --> 00:04:55,570 +the type of interface. + +84 +00:05:00,040 --> 00:05:04,920 +This is a class diagram for the factory patent. + +85 +00:05:04,980 --> 00:05:08,020 +Let's look at it. The first thing you see here. + +86 +00:05:08,600 --> 00:05:12,460 +What is written here? Product. And what does this + +87 +00:05:12,460 --> 00:05:15,700 +mean? Interface. Because the product is divided + +88 +00:05:15,700 --> 00:05:19,140 +into classes. It is called a concrete product + +89 +00:05:19,140 --> 00:05:22,420 +here. The concrete product is a class made to be + +90 +00:05:22,420 --> 00:05:26,200 +implemented. And of course, it is expected that + +91 +00:05:26,200 --> 00:05:28,740 +there are more than one of these. So here there is + +92 +00:05:28,740 --> 00:05:32,120 +concrete class 2, concrete class 3. Like when I did + +93 +00:05:32,120 --> 00:05:34,640 +different delivery methods that came out of the + +94 +00:05:34,640 --> 00:05:38,320 +same interface. I said that when I am in a + +95 +00:05:38,320 --> 00:05:40,900 +situation like this, More than one class follows + +96 +00:05:40,900 --> 00:05:44,300 +the same interface. I can use a factor to create + +97 +00:05:44,300 --> 00:05:46,760 +these. So that it creates any object and in the end + +98 +00:05:46,760 --> 00:05:50,760 +I return it to it as a product. Ok, let's see now. I + +99 +00:05:50,760 --> 00:05:54,840 +came to the UML diagram because this class is + +100 +00:05:54,840 --> 00:05:58,600 +called factory. There is a method called create + +101 +00:05:58,600 --> 00:06:02,900 +product inside it and it takes the product ID + +102 +00:06:02,900 --> 00:06:08,500 +which is integer. What does it return? product + +103 +00:06:08,500 --> 00:06:12,280 +which is the main type of the interface because + +104 +00:06:12,280 --> 00:06:15,920 +this yellow thing here is what we call note, which + +105 +00:06:15,920 --> 00:06:22,880 +is a note. Put in it how the code inside the method + +106 +00:06:22,880 --> 00:06:28,800 +looks like. The code inside the method is a public + +107 +00:06:28,800 --> 00:06:32,940 +product, created product that takes id. If the id + +108 +00:06:32,940 --> 00:06:38,810 +is equal to id1, return new one product. if it is + +109 +00:06:38,810 --> 00:06:43,930 +2, return another project, and so on. I make a list + +110 +00:06:43,930 --> 00:06:47,750 +of if statements according to how many concrete + +111 +00:06:47,750 --> 00:06:52,450 +projects I have. Like what we did in the last + +112 +00:06:52,450 --> 00:06:58,670 +lecture, we made a factor for delivery, if it is + +113 +00:06:58,670 --> 00:07:00,950 +choice 1, I make an error delivery, if it is 2, a + +114 +00:07:00,950 --> 00:07:04,410 +man delivery, if it is 3, a maritime delivery, and + +115 +00:07:04,410 --> 00:07:10,050 +we also made another one for algorithms. Tamam? + +116 +00:07:13,350 --> 00:07:17,730 +High encryption factor. Where did I put it? Below. + +117 +00:07:18,770 --> 00:07:22,170 +Why the ...? + +118 +00:07:22,370 --> 00:07:23,670 +Download the one above and below. + +119 +00:07:32,870 --> 00:07:34,530 +Never mind. This one ... + +120 +00:07:38,000 --> 00:07:40,220 +this is the same idea, there is F statements or + +121 +00:07:40,220 --> 00:07:43,540 +switch here, and it will create one of them ok. + +122 +00:07:43,540 --> 00:07:46,920 +Let's + +123 +00:07:46,920 --> 00:07:50,540 +continue now, look with me at the client itself who + +124 +00:07:50,540 --> 00:07:52,040 +is the client? who represents him in our program? + +125 +00:07:53,260 --> 00:07:57,040 +If we want to create an object like mail for + +126 +00:07:57,040 --> 00:08:00,880 +example, actually the client is the one who needs + +127 +00:08:00,880 --> 00:08:04,620 +to create one of the products. Because the client + +128 +00:08:04,620 --> 00:08:08,760 +does not have any relation between the client and + +129 +00:08:08,760 --> 00:08:11,240 +the concrete product. The relation between the + +130 +00:08:11,240 --> 00:08:14,000 +client and who? And the factory. The client asks + +131 +00:08:14,000 --> 00:08:15,800 +the factory to make him a product, to make him a + +132 +00:08:15,800 --> 00:08:18,280 +delivery method. It sends him one or two or three. + +133 +00:08:18,600 --> 00:08:20,800 +And in the end, what will the factory give him + +134 +00:08:20,800 --> 00:08:24,360 +back? It will give him back the product. And it + +135 +00:08:24,360 --> 00:08:27,250 +implements the method in it. I don't know. So the + +136 +00:08:27,250 --> 00:08:30,830 +idea is that there is no direct relationship + +137 +00:08:30,830 --> 00:08:36,330 +between the client and these people. If there is a + +138 +00:08:36,330 --> 00:08:37,330 +relationship with them, there is a problem. It + +139 +00:08:37,330 --> 00:08:40,790 +means that if I change anyone here, it will change + +140 +00:08:40,790 --> 00:08:43,090 +in the client. If I add a new person, it will + +141 +00:08:43,090 --> 00:08:46,570 +change in the client. Now, the change is only in + +142 +00:08:46,570 --> 00:08:49,770 +one place. There can be more than one client that + +143 +00:08:49,770 --> 00:08:55,720 +needs to create a product. Now, if I change here, + +144 +00:08:56,560 --> 00:08:58,760 +I only need to change where? In the factor. What + +145 +00:08:58,760 --> 00:09:00,500 +do I change? Because if I change in the + +146 +00:09:00,500 --> 00:09:02,380 +constructor, it takes a parameter. I need to + +147 +00:09:02,380 --> 00:09:06,250 +change wherever I use U in the factory, I change it + +148 +00:09:06,250 --> 00:09:08,490 +in the parameters of the constructor. If I add + +149 +00:09:08,490 --> 00:09:11,750 +concrete class product new, it goes to the new F + +150 +00:09:11,750 --> 00:09:15,550 +statement in the factory, right or not? So there + +151 +00:09:15,550 --> 00:09:17,310 +must be a change, but the change is concentrated + +152 +00:09:17,310 --> 00:09:21,030 +in one place. Doctor, I saw that all classes meet + +153 +00:09:21,030 --> 00:09:24,470 +in the product interface, so why don't we use the + +154 +00:09:24,470 --> 00:09:27,310 +product itself? What should the factory do? + +155 +00:09:34,090 --> 00:09:35,310 +How do I count in the interface? + +156 +00:09:38,410 --> 00:09:45,170 +Now, I want to add a new product. The new product + +157 +00:09:45,170 --> 00:09:49,830 +will take the type of product. Now, this is the + +158 +00:09:49,830 --> 00:09:52,090 +new product that I want to create. I cannot create + +159 +00:09:52,090 --> 00:09:54,190 +an object from the product. This is the interface. + +160 +00:09:55,070 --> 00:09:59,050 +I need to create objects from these objects. So I + +161 +00:09:59,050 --> 00:10:02,090 +say, new one product, new two product, new three + +162 +00:10:02,090 --> 00:10:05,590 +product. Because if you have a new product, how + +163 +00:10:05,590 --> 00:10:07,850 +can I get rid of it? I will have to use the new + +164 +00:10:07,850 --> 00:10:10,650 +one and put the name of the new product in the + +165 +00:10:10,650 --> 00:10:14,130 +client. But if my whole factory is different, + +166 +00:10:14,330 --> 00:10:16,530 +changed, takes different parameters, changed the + +167 +00:10:16,530 --> 00:10:18,570 +name of the class, I will have to change it in the + +168 +00:10:18,570 --> 00:10:23,350 +client. Now I left the change only in the factory. + +169 +00:10:24,170 --> 00:10:27,350 +And now we will see how to make a design for the + +170 +00:10:27,350 --> 00:10:30,920 +factory so that we do not modify it at once. For + +171 +00:10:30,920 --> 00:10:34,500 +example, I will add new classes without modifying + +172 +00:10:34,500 --> 00:10:41,380 +anything on the factory. Once again, the main idea + +173 +00:10:41,380 --> 00:10:43,040 +is that there is no direct relationship between + +174 +00:10:43,040 --> 00:10:47,380 +the client and the concrete products. The + +175 +00:10:47,380 --> 00:10:50,120 +relationship is only with the factory, and I + +176 +00:10:50,120 --> 00:10:54,000 +return it to the interface. The client does not + +177 +00:10:54,000 --> 00:10:57,720 +deal with them. The idea is that there are a lot + +178 +00:10:57,720 --> 00:11:00,800 +of changes happening in them. The interface does + +179 +00:11:00,800 --> 00:11:04,660 +not change. The interface is originally made for + +180 +00:11:04,660 --> 00:11:09,940 +people to walk their own way. You change here and + +181 +00:11:09,940 --> 00:11:12,520 +this is a possibility that you add a lot of things + +182 +00:11:12,520 --> 00:11:15,440 +that have been modified. So I want to keep the + +183 +00:11:15,440 --> 00:11:17,760 +client isolated from the changes that happen here. + +184 +00:11:28,480 --> 00:11:34,360 +Now, you read this by yourself. This is the shape + +185 +00:11:34,360 --> 00:11:40,100 +of the factory. There is a method called create + +186 +00:11:40,100 --> 00:11:43,320 +product. You return the product and they say it's + +187 +00:11:43,320 --> 00:11:45,860 +better if you do it statically. If you don't do it + +188 +00:11:45,860 --> 00:11:49,200 +statically, it's not a problem. You have to create + +189 +00:11:49,200 --> 00:11:51,400 +an object, but it's better if you do it statically + +190 +00:11:51,400 --> 00:11:55,460 +because it's expected that you need it a lot. And + +191 +00:11:55,460 --> 00:12:01,060 +it repeats the statements. If the ID was a certain + +192 +00:12:01,060 --> 00:12:04,560 +text, return it one product, create one product + +193 +00:12:04,560 --> 00:12:07,620 +and return it. Create another product and bring it + +194 +00:12:07,620 --> 00:12:11,740 +back. These one product and another product are all + +195 +00:12:11,740 --> 0 + +223 +00:13:54,570 --> 00:13:58,290 +without doing anything When I say turn on the + +224 +00:13:58,290 --> 00:14:02,830 +code, I can open any class in any program and see + +225 +00:14:02,830 --> 00:14:06,290 +what's in its contents. It's like opening an IDE + +226 +00:14:06,290 --> 00:14:08,750 +on NetBeans and reading what's written in the + +227 +00:14:08,750 --> 00:14:12,770 +class. What do they use this library for? All + +228 +00:14:12,770 --> 00:14:16,510 +antivirus programs are made on Reflection API. + +229 +00:14:17,330 --> 00:14:19,290 +Because how does the antivirus work? The antivirus + +230 +00:14:19,290 --> 00:14:20,150 +enters the code + +231 +00:14:23,960 --> 00:14:27,960 +The idea is that they enter the code, read it and + +232 +00:14:27,960 --> 00:14:30,020 +see what's in it, and any doubt they have about + +233 +00:14:30,020 --> 00:14:35,250 +it, Inside the code, it tells you that this is + +234 +00:14:35,250 --> 00:14:39,990 +malicious code and there is a risk of it. How do + +235 +00:14:39,990 --> 00:14:43,950 +we use this Reflection API? It's simple. This is a + +236 +00:14:43,950 --> 00:14:46,970 +huge library, but now I want to explain the part + +237 +00:14:46,970 --> 00:14:50,690 +that concerns us. The idea is that they use it to + +238 +00:14:50,690 --> 00:14:54,470 +enter code and read it. Let's try this Reflection + +239 +00:14:54,470 --> 00:14:57,310 +API. We can enter a class and read to see what is + +240 +00:14:57,310 --> 00:15:01,580 +inside it. Then we will see how to use it in order + +241 +00:15:01,580 --> 00:15:06,360 +to make the factory pattern in a way that allows + +242 +00:15:06,360 --> 00:15:08,760 +us to modify any line in it. Pay attention to this + +243 +00:15:08,760 --> 00:15:11,440 +gate. We will get to know the Reflection API and + +244 +00:15:11,440 --> 00:15:13,320 +then we will see how to use it. + +245 +00:15:16,600 --> 00:15:26,420 +Okay, I want to make a + +246 +00:15:26,420 --> 00:15:28,340 +new class here called Test Reflection. + +247 +00:15:45,670 --> 00:15:50,970 +Ok, the first method has a name class.forename and + +248 +00:15:50,970 --> 00:15:58,550 +I give it pathFactory.circle + +249 +00:15:58,550 --> 00:16:02,330 +Did you guys remember that we took an application + +250 +00:16:02,330 --> 00:16:06,370 +that we took in the first lectures that draws + +251 +00:16:06,370 --> 00:16:09,910 +shapes? Do you remember it? I want to try a class + +252 +00:16:09,910 --> 00:16:12,550 +in it, one of the classes has a class called + +253 +00:16:12,550 --> 00:16:16,450 +circle We did it together, right or wrong? It + +254 +00:16:16,450 --> 00:16:19,510 +represents a circle You can try it on any class + +255 +00:16:19,510 --> 00:16:22,950 +Because I want to read this class and see what's + +256 +00:16:22,950 --> 00:16:27,770 +inside it So I tell it class.forename And I give + +257 +00:16:27,770 --> 00:16:32,730 +it the package path The path of the class, which + +258 +00:16:32,730 --> 00:16:36,390 +is this class circle in the package called Factory + +259 +00:16:36,390 --> 00:16:41,510 +And this gives me an object of type class, I want + +260 +00:16:41,510 --> 00:16:45,420 +to call it C And this one I just want to tell it + +261 +00:16:45,420 --> 00:16:53,520 +to surround with a try-catch Now + +262 +00:16:53,520 --> 00:16:58,160 +this get will work everywhere on this c Let's see + +263 +00:16:58,160 --> 00:17:01,960 +what this c will do I want to tell it system.out + +264 +00:17:01,960 --> 00:17:07,560 +.println c + +265 +00:17:07,560 --> 00:17:09,620 +.getname + +266 +00:17:11,620 --> 00:17:13,160 +The name of the class, and we know that it is + +267 +00:17:13,160 --> 00:17:16,020 +what? Circle, run it, make sure, it will write + +268 +00:17:16,020 --> 00:17:24,700 +factory.circle Ok, say c.get declared + +269 +00:17:24,700 --> 00:17:30,600 +fields What does get declared fields mean? Even + +270 +00:17:30,600 --> 00:17:32,180 +the fields that are identified in it, this get is + +271 +00:17:32,180 --> 00:17:34,940 +not inside the class, there are attributes Even if + +272 +00:17:34,940 --> 00:17:37,520 +it is private, it will get it Ok, it will say + +273 +00:17:37,520 --> 00:17:44,060 +what? field fieldsIt's like a dictionary. You have + +274 +00:17:44,060 --> 00:17:46,600 +to make a loop on this dictionary. Why? For each + +275 +00:17:46,600 --> 00:17:52,320 +field, F is present in fields, type system.out + +276 +00:17:52,320 --> 00:17:57,240 +.println F + +277 +00:17:57,240 --> 00:18:04,640 +dot + +278 +00:18:04,640 --> 00:18:11,560 +get name, for exampleSo when I do run, I should + +279 +00:18:11,560 --> 00:18:15,240 +see what attributes are inside the class It says + +280 +00:18:15,240 --> 00:18:17,320 +that the circle has three attributes, which means + +281 +00:18:17,320 --> 00:18:21,540 +it's ready It's like you're reading the class, you + +282 +00:18:21,540 --> 00:18:24,320 +see what's inside it Not only that, you can also + +283 +00:18:24,320 --> 00:18:29,340 +see the methods in it Go to C and say get methods, + +284 +00:18:29,400 --> 00:18:33,660 +it's name is get methods Okay, this is method + +285 +00:18:33,660 --> 00:18:36,300 +methods + +286 +00:18:41,930 --> 00:18:46,810 +and I want to do what? list loop this is every + +287 +00:18:46,810 --> 00:18:54,070 +method m existing in methods system.out.println it + +288 +00:18:54,070 --> 00:18:56,190 +prints a lot of things the name of the method and + +289 +00:18:56,190 --> 00:18:58,150 +what parameters it takes and what it returns it + +290 +00:18:58,150 --> 00:19:01,730 +knows all the details for example the least thing + +291 +00:19:01,730 --> 00:19:03,510 +I want to say is getname I want to see what are + +292 +00:19:03,510 --> 00:19:07,670 +the names of the methods inside the class of + +293 +00:19:07,670 --> 00:19:10,550 +course it brought me all the methods that it has + +294 +00:19:10,550 --> 00:19:14,770 +and inherited For example, these parameters have + +295 +00:19:14,770 --> 00:19:16,850 +for example, draw, a mountain with a name draw, + +296 +00:19:17,010 --> 00:19:19,990 +and it has weight, equals, and two strings. Who + +297 +00:19:19,990 --> 00:19:22,630 +inherited these from? From the father. In short, + +298 +00:19:23,030 --> 00:19:27,670 +this reflection API helps me as if I am reading in + +299 +00:19:27,670 --> 00:19:30,130 +the code. That is why those who make antivirus + +300 +00:19:30,130 --> 00:19:32,770 +programs actually rely on reflection API because + +301 +00:19:32,770 --> 00:19:35,110 +they really need to read the code without doing + +302 +00:19:35,110 --> 00:19:37,090 +anything behind it. I created an object from the + +303 +00:19:37,090 --> 00:19:40,160 +circle, Here, here, I created an object from a + +304 +00:19:40,160 --> 00:19:41,820 +circle, I didn't create an object from a circle If + +305 +00:19:41,820 --> 00:19:44,340 +I created a problem, what do I consider? I run it, + +306 +00:19:44,580 --> 00:19:48,780 +right? But here, no, I'm reading in the circle and + +307 +00:19:48,780 --> 00:19:52,340 +I see what's inside it without running it, okay? + +308 +00:19:52,740 --> 00:19:56,420 +Okay, if you got to know the Reflection API, what + +309 +00:19:56,420 --> 00:19:58,520 +is its relationship with the topic of factory? The + +310 +00:19:58,520 --> 00:20:01,880 +topic is as follows, that I can now benefit from + +311 +00:20:01,880 --> 00:20:06,100 +the Reflection API to create an object from the + +312 +00:20:06,100 --> 00:20:08,580 +circle you see, we know the way to find the object + +313 +00:20:08,580 --> 00:20:11,320 +that we have been learning all our life and in all + +314 +00:20:11,320 --> 00:20:13,280 +programming languages new is the name of the + +315 +00:20:13,280 --> 00:20:16,100 +constructor and languages other than java is the + +316 +00:20:16,100 --> 00:20:18,760 +name of the constructor you see, in reflection I + +317 +00:20:18,760 --> 00:20:21,360 +can do it like this class.forename brings me the + +318 +00:20:21,360 --> 00:20:27,100 +class, right? and then I say here dot and I have a + +319 +00:20:27,100 --> 00:20:36,150 +value called new instance and I pass null to itWhy + +320 +00:20:36,150 --> 00:20:40,810 +null? Because it doesn't have a parameter Yes, it + +321 +00:20:40,810 --> 00:20:46,350 +doesn't have a parameter It + +322 +00:20:46,350 --> 00:20:48,610 +only needs a try-catch, I'll leave it for a second + +323 +00:20:48,610 --> 00:20:52,070 +I'll + +324 +00:20:52,070 --> 00:20:54,930 +remove it like this, and remove it like this + +325 +00:21:12,270 --> 00:21:21,610 +For example, I + +326 +00:21:21,610 --> 00:21:24,790 +say class name + +327 +00:21:24,790 --> 00:21:28,130 +and then say new instance. What does this new + +328 +00:21:28,130 --> 00:21:30,770 +instance do? It searches if there is an empty + +329 +00:21:30,770 --> 00:21:34,970 +constructor in the class, it creates an object + +330 +00:21:34,970 --> 00:21:40,820 +from the circle.Okay? That's why this is the only + +331 +00:21:40,820 --> 00:21:44,340 +flaw. I have to make sure that there is an empty + +332 +00:21:44,340 --> 00:21:47,440 +constructor. What do I want to do? Currently, + +333 +00:21:47,640 --> 00:21:49,840 +there is no empty constructor, so I want to create + +334 +00:21:49,840 --> 00:21:51,920 +an empty constructor and give a value + +335 +00:21:54,820 --> 00:22:04,800 +For example, this dot center x is 400 and this dot + +336 +00:22:04,800 --> 00:22:08,420 +center y is 250. + +337 +00:22:11,120 --> 00:22:15,620 +Ok, this is supposed to create an object from + +338 +00:22:15,620 --> 00:22:17,920 +circle, but it will return an object to it. So, I + +339 +00:22:17,920 --> 00:22:20,960 +did a casting to circle and I told it that this is + +340 +00:22:20,960 --> 00:22:25,000 +circle c. How do you make sure that it made a + +341 +00:22:25,000 --> 00:22:32,200 +circle? You say system.out.println c.radius for + +342 +00:22:32,200 --> 00:22:34,040 +example, it's not supposed to print half of the + +343 +00:22:34,040 --> 00:22:37,800 +line, which is 50. This is run and this is what? + +344 +00:22:37,840 --> 00:22:42,720 +Printed what? 50. Okay, so you don't get bored, I + +345 +00:22:42,720 --> 00:22:44,700 +showed you something or introduced you to + +346 +00:22:44,700 --> 00:22:46,420 +something called Reflection API. What does it + +347 +00:22:46,420 --> 00:22:49,480 +mean? That you read the class and see it. And + +348 +00:22:49,480 --> 00:22:51,440 +within the Reflection API, there is an indicator + +349 +00:22:51,440 --> 00:22:56,230 +that you can use to create object from the class + +350 +00:22:56,230 --> 00:23:01,890 +which is class.formname and new instance but this + +351 +00:23:01,890 --> 00:23:05,050 +condition that there is no argument constructor in + +352 +00:23:05,050 --> 00:23:08,590 +the class what is the difference between this and + +353 +00:23:08,590 --> 00:23:10,850 +the usual new there is a big difference between + +354 +00:23:10,850 --> 00:23:14,110 +them when you use the new you don't need to put + +355 +00:23:14,110 --> 00:23:16,310 +the name of the constructor you put it as a part + +356 +00:23:16,310 --> 00:23:20,870 +of the code thisYou want to change the class to + +357 +00:23:20,870 --> 00:23:23,330 +another class, you want to change the name of the + +358 +00:23:23,330 --> 00:23:26,670 +constructor. The point is that since it is written + +359 +00:23:26,670 --> 00:23:29,730 +as a code, it must be modified to change the code. + +360 +00:23:29,890 --> 00:23:33,130 +But here, the name of the class that I define is a + +361 +00:23:33,130 --> 00:23:34,810 +string. How? + +362 +00:23:37,480 --> 00:23:40,700 +the path of the class you see this as a string + +363 +00:23:40,700 --> 00:23:44,140 +that I can change during the runtime I can't ask + +364 +00:23:44,140 --> 00:23:45,780 +the user to enter the name of the class that I + +365 +00:23:45,780 --> 00:23:49,400 +want to create I can't let him read and see what + +366 +00:23:49,400 --> 00:23:51,820 +classes I have in my library and create from them + +367 +00:23:51,820 --> 00:23:57,580 +so its existence as a string makes me change it + +368 +00:23:57,580 --> 00:24:02,700 +but writing it as a code new circle I can't change + +369 +00:24:02,700 --> 00:24:05,400 +it as a code okay, how can we benefit from this? + +370 +00:24:05,480 --> 00:24:09,580 +listen to meI will go back to the program after we + +371 +00:24:09,580 --> 00:24:12,400 +took the calm way, I will stop working in + +372 +00:24:12,400 --> 00:24:14,220 +reflection and I will go and benefit from what I + +373 +00:24:14,220 --> 00:24:17,200 +did here in the program that we took previously, + +374 +00:24:17,880 --> 00:24:20,920 +which is any drawing program, do you remember the + +375 +00:24:20,920 --> 00:24:23,760 +drawing program? Yes, let me remind you of it, the + +376 +00:24:23,760 --> 00:24:26,280 +drawing program that we took in the first lectures + +377 +00:24:26,280 --> 00:24:31,230 +that used to draw shapesCircle, Rectangle, and + +378 +00:24:31,230 --> 00:24:35,450 +then what does it do? Yes, it does a clear. Why is + +379 +00:24:35,450 --> 00:24:36,250 +it not drawing here? + +380 +00:24:39,890 --> 00:24:45,770 +Let's see what's + +381 +00:24:45,770 --> 00:24:46,950 +wrong with it. + +382 +00:24:54,350 --> 00:24:57,170 +Ok, this drawing program, if you remember how we + +383 +00:24:57,170 --> 00:24:59,850 +designed it or what we explained it to explain the + +384 +00:24:59,850 --> 00:25:02,290 +meaning of the interface Do you remember? One day + +385 +00:25:02,290 --> 00:25:09,790 +we made shapes like circle, rectangle, ok? And we + +386 +00:25:09,790 --> 00:25:11,990 +made them all separate from an interface called + +387 +00:25:11,990 --> 00:25:16,690 +shape And we made a class called DrawManager, ok? + +388 +00:25:16,850 --> 00:25:18,390 +Yes, this is the problem, because the DrawManager + +389 +00:25:18,390 --> 00:25:26,320 +has It's empty. Why? Wait a second. There's + +390 +00:25:26,320 --> 00:25:26,800 +another version. + +391 +00:25:30,320 --> 00:25:38,220 +Yes, this is the draw. It's this one. + +392 +00:25:45,400 --> 00:25:46,360 +Okay + +393 +00:26:05,410 --> 00:26:07,650 +This is the program that we made. + +394 +00:26:12,980 --> 00:26:16,140 +Okay, it's clear and it's undo, okay? This is the + +395 +00:26:16,140 --> 00:26:19,740 +program that we did before and there was a draw + +396 +00:26:19,740 --> 00:26:22,500 +manager that we changed to make it depend only on + +397 +00:26:22,500 --> 00:26:26,080 +the interface, if you remember. It doesn't know + +398 +00:26:26,080 --> 00:26:28,720 +anything about circle or rectangle. It guesses it + +399 +00:26:28,720 --> 00:26:33,220 +as a shape and draws it, okay? Now, guys, this + +400 +00:26:33,220 --> 00:26:37,280 +program was how we used to work it. When we were + +401 +00:26:37,280 --> 00:26:40,100 +in the graphical user interface, we would press + +402 +00:26:40,100 --> 00:26:44,050 +the circle button and we do action on this button + +403 +00:26:44,050 --> 00:26:47,470 +when we click on it what will it do? it will + +404 +00:26:47,470 --> 00:26:50,430 +extract an object from the circle and call the + +405 +00:26:50,430 --> 00:26:53,050 +draw manager and send him the object circle and + +406 +00:26:53,050 --> 00:26:55,130 +the draw manager accepts it because the circle is + +407 +00:26:55,130 --> 00:27:00,910 +a shape and the same thing if I have a rectangle I + +408 +00:27:00,910 --> 00:27:02,950 +extract an object from the rectangle and send it + +409 +00:27:02,950 --> 00:27:06,410 +to the draw manager if I have another shape and + +410 +00:27:06,410 --> 00:27:09,500 +third and fourth each one I want to do I want to + +411 +00:27:09,500 --> 00:27:11,320 +make a shape out of it. What we want to change is + +412 +00:27:11,320 --> 00:27:13,840 +that we want to benefit from the factory pattern + +413 +00:27:13,840 --> 00:27:16,780 +on the basis that we will see the gate. When we + +414 +00:27:16,780 --> 00:27:19,480 +make new shapes, our goal is to see the gate. We + +415 +00:27:19,480 --> 00:27:22,8 + +445 +00:29:52,450 --> 00:29:56,640 +rectangle go? Here it is. This is an empty + +446 +00:29:56,640 --> 00:30:02,000 +constructor that I have. But I also want to do the + +447 +00:30:02,000 --> 00:30:06,760 +random R equals + +448 +00:30:06,760 --> 00:30:14,120 +U on + +449 +00:30:14,120 --> 00:30:18,580 +the basis that when I want to create a rectangle + +450 +00:30:26,400 --> 00:30:28,080 +Ok, I'm going to go back to the width and set it + +451 +00:30:28,080 --> 00:30:33,220 +to constant values. Ok, and the position is r + +452 +00:30:33,220 --> 00:30:43,460 +.nextint. Ok, + +453 +00:30:43,660 --> 00:30:47,140 +now this factory is normal as we did in the last + +454 +00:30:47,140 --> 00:30:51,370 +lecture. Because this factory that I used where do + +455 +00:30:51,370 --> 00:30:53,610 +I want to use it from? from drawing up, it is what + +456 +00:30:53,610 --> 00:30:55,930 +draws shapes, right? because when I click on + +457 +00:30:55,930 --> 00:30:59,730 +circle, it does not want to do this code, okay? I + +458 +00:30:59,730 --> 00:31:03,390 +want to tell it to go only to whom? to shape + +459 +00:31:03,390 --> 00:31:08,290 +factory, + +460 +00:31:08,650 --> 00:31:14,810 +I tell it create shape and I send it circle, right + +461 +00:31:14,810 --> 00:31:19,830 +or not? and what will I return? it returns shape + +462 +00:31:19,830 --> 00:31:25,150 +and I send the shape because rectangle is the same + +463 +00:31:25,150 --> 00:31:28,570 +thing + +464 +00:31:28,570 --> 00:31:38,090 +shape P equals shape factory create shape and I + +465 +00:31:38,090 --> 00:31:41,410 +send it rectangle + +466 +00:31:47,570 --> 00:31:50,330 +And what is this shape? Because there is an + +467 +00:31:50,330 --> 00:31:52,250 +example that we gained from it, that the GUI + +468 +00:31:52,250 --> 00:31:54,750 +doesn't know anything about shapes currently. What + +469 +00:31:54,750 --> 00:31:56,030 +does it do when I tell it to create something and + +470 +00:31:56,030 --> 00:31:59,710 +I send it the name? It stops depending on the type + +471 +00:31:59,710 --> 00:32:02,350 +of class. Okay? Of course, this is not the final + +472 +00:32:02,350 --> 00:32:07,230 +design yet. Because this is circle, rectangle, + +473 +00:32:07,790 --> 00:32:11,830 +clear, undo. Okay? Okay, I still have a problem. I + +474 +00:32:11,830 --> 00:32:14,710 +will add a new shape. What does it have to do? Not + +475 +00:32:14,710 --> 00:32:16,150 +just a button. First, it has to create a class. + +476 +00:32:17,710 --> 00:32:22,850 +and then I want to go to the factory and add a new + +477 +00:32:22,850 --> 00:32:27,150 +f statement and I want to go to the GUI and I want + +478 +00:32:27,150 --> 00:32:29,550 +to make a button and action on it and send it and + +479 +00:32:29,550 --> 00:32:31,650 +tell it to make a shape and give it a shape name + +480 +00:32:31,650 --> 00:32:35,310 +I'm going to get rid of all of this, okay? You + +481 +00:32:35,310 --> 00:32:38,110 +understand how I do it? Go to the factory and see + +482 +00:32:38,110 --> 00:32:40,290 +what changes in it, not here I have f statements, + +483 +00:32:40,810 --> 00:32:45,240 +remove all of these f statements. And instead of + +484 +00:32:45,240 --> 00:32:48,800 +that, I want to put the line that we wrote here. + +485 +00:32:48,860 --> 00:32:52,120 +Do you see this line? Okay? But what do I want to + +486 +00:32:52,120 --> 00:32:56,600 +do? I want to copy it. Okay? And I went to the + +487 +00:32:56,600 --> 00:33:03,660 +factory. And I put it here. Pay attention to me. + +488 +00:33:03,720 --> 00:33:07,360 +What did I tell him here? Go and do ... I went + +489 +00:33:07,360 --> 00:33:10,560 +back and told him to do ... Yes, here, leave this + +490 +00:33:10,560 --> 00:33:21,060 +shape. Okay? And what is this? shape p return + +491 +00:33:21,060 --> 00:33:24,640 +return return return return return return return + +492 +00:33:24,640 --> 00:33:25,080 +return return return return return return + +493 +00:33:41,250 --> 00:33:44,450 +I want to call it shapes. Why? Because I want to + +494 +00:33:44,450 --> 00:33:49,610 +put shapes in it. What do I want to put in these + +495 +00:33:49,610 --> 00:33:51,710 +shapes? The shapes that I have. Who are the shapes + +496 +00:33:51,710 --> 00:33:55,730 +that I have? Circle. I threw it into this package. + +497 +00:33:57,010 --> 00:34:02,930 +And I call it refactor. And I have rectangle. I + +498 +00:34:02,930 --> 00:34:07,410 +also threw it into the shape. And I have solid + +499 +00:34:07,410 --> 00:34:07,850 +circle. + +500 +00:34:12,350 --> 00:34:16,430 +Are you guys with me? Or you are bored? Are you + +501 +00:34:16,430 --> 00:34:19,310 +bored or you are bored from a long time? Yes? Ok. + +502 +00:34:21,170 --> 00:34:24,370 +Do you see these shapes? I put them in one column. + +503 +00:34:25,390 --> 00:34:27,930 +Why did I do that? Because I put the name of the + +504 +00:34:27,930 --> 00:34:33,150 +shape here. Ok? I remove the word circle. I put + +505 +00:34:33,150 --> 00:34:38,050 +them in a package called factory.shapes. And I + +506 +00:34:38,050 --> 00:34:38,610 +connect with it. + +507 +00:34:41,820 --> 00:34:45,580 +I removed it from above. When I sent him the name + +508 +00:34:45,580 --> 00:34:49,950 +of the shape, by reading the name of the shape, It + +509 +00:34:49,950 --> 00:34:52,170 +will create an object from it, right or not? So if + +510 +00:34:52,170 --> 00:34:54,630 +you send a circle, it will create an object from + +511 +00:34:54,630 --> 00:34:57,170 +the circle. If you send a rectangle, it will create + +512 +00:34:57,170 --> 00:34:59,690 +an object from the rectangle and return it to it. + +513 +00:34:59,690 --> 00:35:01,550 +We created the repeater with the view of an order + +514 +00:35:01,550 --> 00:35:03,110 +of magnitude, right? Order of magnitude, exactly. + +515 +00:35:03,110 --> 00:35:05,870 +And here, what did you put? The string of the + +516 +00:35:05,870 --> 00:35:09,150 +package, right? Of course, there is still an error + +517 +00:35:09,150 --> 00:35:13,150 +here, why? Because if it does not return null, So + +518 +00:35:13,150 --> 00:35:15,750 +it will either return the shape, right? Or return + +519 +00:35:15,750 --> 00:35:19,650 +what? Or return null. Because this way we finished + +520 +00:35:19,650 --> 00:35:23,710 +the factory. We want to use it. Before we use it + +521 +00:35:23,710 --> 00:35:29,730 +in GUI, let's try to use it in the test like this, + +522 +00:35:29,850 --> 00:35:33,310 +okay? And if we are doing shape factory, okay? We + +523 +00:35:33,310 --> 00:35:35,930 +want to tell it, shape factory, go and make a + +524 +00:35:35,930 --> 00:35:41,530 +circle for me. Okay? What should I return to it? + +525 +00:35:43,930 --> 00:35:48,110 +But I need to return the circle just to make sure. + +526 +00:35:48,830 --> 00:35:53,130 +Ok? So here I told him to return the circle. And + +527 +00:35:53,130 --> 00:35:56,790 +to make sure, I need to say system.out.println + +528 +00:35:56,790 --> 00:36:05,030 +means that when I say p.radius, it prints 50 for + +529 +00:36:05,030 --> 00:36:07,410 +example. Ok? I will leave these public so that we + +530 +00:36:07,410 --> 00:36:11,650 +can see them without any problems. Yes, make sure + +531 +00:36:11,650 --> 00:36:14,150 +that this is working. This is run and this is + +532 +00:36:14,150 --> 00:36:17,510 +print why? 50. The factory will remain running. + +533 +00:36:18,150 --> 00:36:21,370 +Ok. Did you see where this factory is used? In the + +534 +00:36:21,370 --> 00:36:27,710 +GUI. Ok. Look with me. I came to the GUI. Did you + +535 +00:36:27,710 --> 00:36:29,950 +see what I want to do in the GUI? Did you see the + +536 +00:36:29,950 --> 00:36:32,150 +problem I have here? It wants to create a button + +537 +00:36:32,150 --> 00:36:38,570 +for each shape. Right? And it does action on the + +538 +00:36:38,570 --> 00:36:39,970 +button and it wants to download the factory and + +539 +00:36:39,970 --> 00:36:43,690 +send it the name of the shape. And this needs to be + +540 +00:36:43,690 --> 00:36:45,870 +done for a circle, rectangle, or any other shape + +541 +00:36:45,870 --> 00:36:48,510 +you want to make. And the problem is that every + +542 +00:36:48,510 --> 00:36:50,790 +time you add a new shape, this code needs to be + +543 +00:36:50,790 --> 00:36:53,430 +made. Do you see what I want to make? I want to + +544 +00:36:53,430 --> 00:36:57,630 +make a rectangle with shapes. I want to go to this + +545 +00:36:57,630 --> 00:37:02,530 +rectangle and read it to me to see what's inside + +546 +00:37:02,530 --> 00:37:05,810 +there are three shapes here, which are circle, + +547 +00:37:05,930 --> 00:37:08,850 +rectangle, and semicircle, and I want to tell it to + +548 +00:37:08,850 --> 00:37:12,530 +do what with each file, it has to make a button and + +549 +00:37:12,530 --> 00:37:15,210 +action and call the factor, and send me the name of + +550 +00:37:15,210 --> 00:37:17,770 +the shape automatic. So, if there are three files, + +551 +00:37:17,770 --> 00:37:20,450 +it will make three buttons; four files will make + +552 +00:37:20,450 --> 00:37:23,470 +how many buttons? four buttons, okay? so what do I + +553 +00:37:23,470 --> 00:37:25,650 +have to do with this gate? I have to go here, pay + +554 +00:37:25,650 --> 00:37:29,950 +attention to me properties. What did I take? The + +555 +00:37:29,950 --> 00:37:36,490 +path, the path of the project in it. Why did I do + +556 +00:37:36,490 --> 00:37:41,490 +that? Because I know the path of the package that + +557 +00:37:41,490 --> 00:37:45,310 +contains the shapes. These shapes are not in shapes. + +558 +00:37:45,310 --> 00:37:48,910 +Yes, these are their paths. Okay, focus with me, + +559 +00:37:48,950 --> 00:37:51,350 +see what I'm going to do. Okay, I'm going to say + +560 +00:37:51,350 --> 00:37:59,030 +file shape dir equal to new File, what am I doing + +561 +00:37:59,030 --> 00:38:03,870 +guys? Yes, I brought the file. The files that + +562 +00:38:03,870 --> 00:38:12,030 +contain the shapes. And then I say to each, Now + +563 +00:38:12,030 --> 00:38:15,250 +I want to read what's inside the file. To each file + +564 +00:38:15,250 --> 00:38:22,350 +shape file existing in shape there dot list files. + +565 +00:38:22,350 --> 00:38:27,080 +What am I doing? Loop on the files that are inside + +566 +00:38:27,080 --> 00:38:30,220 +the folder. Okay? And I want to tell him here, + +567 +00:38:30,280 --> 00:38:34,080 +string shape + +568 +00:38:34,080 --> 00:38:37,540 +name. I got it from the file name. I want to get + +569 +00:38:37,540 --> 00:38:42,020 +the shape name. How? Shape file. If I tell him get + +570 +00:38:42,020 --> 00:38:45,960 +name, he will get the file name for you. But the + +571 +00:38:45,960 --> 00:38:49,560 +file name includes the extension. So the file + +572 +00:38:49,560 --> 00:38:52,520 +name, for example, circle.java. Right? Rectangle + +573 +00:38:52,520 --> 00:38:56,520 +.java. I want to remove the word. So what do I + +574 +00:38:56,520 --> 00:39:00,780 +want to tell him? I want to tell him to split to + +575 +00:39:00,780 --> 00:39:06,120 +the dot and take the first one in the array. So I + +576 +00:39:06,120 --> 00:39:13,720 +took the name and made it a point. I got the name + +577 +00:39:13,720 --> 00:39:15,280 +because it's attached to the point. I have the + +578 +00:39:15,280 --> 00:39:18,640 +name and then the extension. So this JLDRA has a + +579 +00:39:18,640 --> 00:39:22,060 +size of 2. You take the first one in it because I + +580 +00:39:22,060 --> 00:39:24,300 +told you that it's minus 2 and 0. That's how I got + +581 +00:39:24,300 --> 00:39:27,520 +the file name. Okay? Let's make sure that I got + +582 +00:39:27,520 --> 00:39:29,220 +it, but before I do anything, what do I want to + +583 +00:39:29,220 --> 00:39:38,240 +do? Yes, shape name. Okay? And I do run. Do you + +584 +00:39:38,240 --> 00:39:40,600 +see what is printed below? These are the shapes. + +585 +00:39:41,540 --> 00:39:48,320 +We are going 100%. Do you see the code of this + +586 +00:39:48,320 --> 00:39:52,240 +button below? We will take it from below with its + +587 +00:39:52,240 --> 00:39:55,460 +action. I only took one button, which is the main + +588 +00:39:55,460 --> 00:39:58,820 +of the circle, and put it inside the loop. + +589 +00:40:01,670 --> 00:40:05,430 +Ok, pay attention with me. Helget, for each file + +590 +00:40:05,430 --> 00:40:07,730 +he reads in the file, he brought the name of the + +591 +00:40:07,730 --> 00:40:10,450 +file, right? Which is the shape name. Instead of + +592 +00:40:10,450 --> 00:40:13,770 +having the word circle written here, he wants to + +593 +00:40:13,770 --> 00:40:15,810 +say shape name. So, here he made the button and put + +594 +00:40:15,810 --> 00:40:18,170 +the name of the shape in it. And this is the + +595 +00:40:18,170 --> 00:40:20,970 +action on it. When I press on it, it wants to go + +596 +00:40:20,970 --> 00:40:24,130 +to the factory and say create shape. But Helget + +597 +00:40:24,130 --> 00:40:25,390 +doesn't want to send him a circle. What does he + +598 +00:40:25,390 --> 00:40:30,170 +want to send him? Yes, the shape name. And I + +599 +00:40:30,170 --> 00:40:32,570 +create the shape and send it to the Draw Manager + +600 +00:40:32,570 --> 00:40:35,570 +to draw it. Of course, this code does not execute + +601 +00:40:35,570 --> 00:40:40,150 +until I press the button. Okay? I have only one + +602 +00:40:40,150 --> 00:40:42,790 +step left, which is to add the button to the face. + +603 +00:40:43,310 --> 00:40:48,290 +I will do this in seconds. + +604 +00:40:51,130 --> 00:40:55,130 +Of course, I will find that there are things that + +605 +00:40:55,130 --> 00:40:55,490 +I need to delete. + +606 +00:40:58,380 --> 00:41:02,260 +Did you find any other buttons? For example, I + +607 +00:41:02,260 --> 00:41:05,880 +made this code for the rectangle, and it doesn't + +608 +00:41:05,880 --> 00:41:10,500 +need a nail nor a solid circle. All these are + +609 +00:41:10,500 --> 00:41:12,820 +theirs, I removed them. Did you find a program + +610 +00:41:12,820 --> 00:41:15,900 +that only has one loop and doesn't need a circle? + +611 +00:41:18,350 --> 00:41:20,910 +For clear and undo, leave them, okay? These are + +612 +00:41:20,910 --> 00:41:24,770 +special cases, okay? But the shapes, they only + +613 +00:41:24,770 --> 00:41:27,350 +have one loop that turns on the shapes and creates + +614 +00:41:27,350 --> 00:41:30,050 +them, okay? The one below this one has clear and + +615 +00:41:30,050 --> 00:41:34,110 +undo, leave them, okay? This gate is just a simple + +616 +00:41:34,110 --> 00:41:38,350 +thing, which is what? Which is where to add the + +617 +00:41:38,350 --> 00:41:43,090 +buttons, so each button has to do. I created a + +618 +00:41:43,090 --> 00:41:47,270 +button here, and made an action on it, and then of + +619 +00:41:47,270 --> 00:41:49,890 +course, we don't call it a button, we call it a + +620 +00:41:49,890 --> 00:41:54,210 +button, only because it has to make a button for + +621 +00:41:54,210 --> 00:41:58,410 +every shape, and then I put this line dot add to + +622 +00:41:58,410 --> 00:42:05,110 +the button. So now guys, when the file runs, it + +623 +00:42:05,110 --> 00:42:09,110 +takes the file names of each button. Okay? And when + +624 +00:42:09,110 --> 00:42:10,690 +I click on it, it sends the name of the shape. + +625 +00:42:11,170 --> 00:42:13,270 +This is the advantage of reflection. Now, in the + +626 +00:42:13,270 --> 00:42:16,310 +factory, I don't say new and so on, new and so on. + +627 +00:42:16,390 --> 00:42:18,870 +I just say what? Forename, and I give it the name + +628 +00:42:18,870 --> 00:42:23,830 +of the shape that changes based on what is in the + +629 +00:42:23,830 --> 00:42:29,010 +folder. Okay? Now, we're done. Let's run it again. + +630 +00:42:29,090 --> 00:42:32,850 +Now the idea is that this application, GUI, knows + +631 +00:42:32,850 --> 00:42:37,820 +nothing but the interface shape. I don't know + +632 + + +667 +00:45:07,770 --> 00:45:11,190 +.NET and use it in this way. This is the new + +668 +00:45:11,190 --> 00:45:15,370 +design of the factory. What is it? Return. + +669 +00:45:18,260 --> 00:45:20,580 +I made a casting because this class is dot for + +670 +00:45:20,580 --> 00:45:24,560 +name I put the name of the path of the class here + +671 +00:45:24,560 --> 00:45:27,620 +dot new instance as I did and in the end I made a + +672 +00:45:27,620 --> 00:45:30,580 +casting because the idea is that this name changes + +673 +00:45:30,580 --> 00:45:34,240 +during the runtime you can let the user log in and + +674 +00:45:34,240 --> 00:45:37,220 +read from the file based on the name that changes, + +675 +00:45:37,840 --> 00:45:40,120 +the object will change but before there was a new + +676 +00:45:40,120 --> 00:45:44,160 +name that you can't change here it changes during + +677 +00:45:44,160 --> 00:45:45,240 +the runtime + +678 +00:45:49,030 --> 00:45:53,310 +We usually try to show where this design pattern + +679 +00:45:53,310 --> 00:45:57,930 +is used in programming languages libraries. For + +680 +00:45:57,930 --> 00:46:00,770 +example, in Java, I have something called + +681 +00:46:00,770 --> 00:46:04,930 +BorderFactory, a class. If you type in the word + +682 +00:46:04,930 --> 00:46:08,610 +BorderFactory. it will give you a create method. In + +683 +00:46:08,610 --> 00:46:12,110 +order to create borders, which are used for GUI. + +684 +00:46:12,430 --> 00:46:15,070 +Border is a frame. For example, there is a colored + +685 +00:46:15,070 --> 00:46:19,250 +frame, a dotted frame, and so on. So, he creates + +686 +00:46:19,250 --> 00:46:21,410 +many types of frames. So, he goes to you and tells + +687 +00:46:21,410 --> 00:46:23,610 +you that he made a factory for you. You write his + +688 +00:46:23,610 --> 00:46:26,270 +name and tell him to create a border. You specify + +689 +00:46:26,270 --> 00:46:28,970 +the type of border you want and he will create it + +690 +00:46:28,970 --> 00:46:34,990 +for you. Okay? Now we come to assignment. + +691 +00:46:35,970 --> 00:46:36,450 +Okay? + +692 +00:46:39,540 --> 00:46:42,480 +Now, the required assignment is as follows. Have + +693 +00:46:42,480 --> 00:46:45,880 +you noticed that there are programs that have + +694 +00:46:45,880 --> 00:46:55,140 +tabs? A screen, a web page, a mobile app, a + +695 +00:46:55,140 --> 00:46:59,640 +desktop app that has tabs. Each tab has a + +696 +00:46:59,640 --> 00:47:02,860 +different screen. Am I right? You will find that I + +697 +00:47:02,860 --> 00:47:06,920 +ask you to create a program The main screen of + +698 +00:47:06,920 --> 00:47:10,480 +this program has tabs Each tab has a content + +699 +00:47:10,480 --> 00:47:13,380 +Sometimes when you click on a tab, you will find a + +700 +00:47:13,380 --> 00:47:16,020 +sample The second tab has pictures The third tab + +701 +00:47:16,020 --> 00:47:20,180 +has instructions So we want this program to be + +702 +00:47:20,180 --> 00:47:23,860 +extendable So that you can add a new tab All you + +703 +00:47:23,860 --> 00:47:26,740 +have to do is create a new class And put the + +704 +00:47:26,740 --> 00:47:29,200 +design of the tab in it And throw it in the folder + +705 +00:47:30,250 --> 00:47:33,070 +and run the application, you will see the tab + +706 +00:47:33,070 --> 00:47:37,710 +appear with them. If you want to delete a tab, + +707 +00:47:38,210 --> 00:47:46,490 +remove its shape. Okay? Do it on Java, on Marvel, + +708 +00:47:46,750 --> 00:47:50,390 +on Android, on web, whatever you want. Okay? The + +709 +00:47:50,390 --> 00:47:52,910 +important thing is to apply the idea of what? The + +710 +00:47:52,910 --> 00:47:59,130 +factor. Okay? Try it. Try it. This material makes + +711 +00:47:59,130 --> 00:48:01,290 +you think in programming in a different way. + +712 +00:48:01,750 --> 00:48:06,010 +Instead of being a code monkey, using the Android + +713 +00:48:06,010 --> 00:48:07,770 +libraries and not knowing how the libraries + +714 +00:48:07,770 --> 00:48:11,350 +worked. I'm going to make you think in the way you + +715 +00:48:11,350 --> 00:48:16,090 +use this library. In any programming language that + +716 +00:48:16,090 --> 00:48:17,790 +I explained in a book, in any programming + +717 +00:48:17,790 --> 00:48:19,470 +language, right or wrong. All programming + +718 +00:48:19,470 --> 00:48:21,730 +languages have class, object, static, and so on. + +719 +00:48:22,870 --> 00:48:25,550 +Okay? Write it in any way. We want to make a + +720 +00:48:25,550 --> 00:48:28,190 +program like this. Make it a mobile phone, web, + +721 +00:48:28,270 --> 00:48:30,670 +whatever you want. Okay? God bless you. diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/GQreoZc27fE_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/GQreoZc27fE_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..b6bbbf98f0f6a542871e60e7fc815f63206ae4ad --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/GQreoZc27fE_postprocess.srt @@ -0,0 +1,2884 @@ +1 +00:00:06,110 --> 00:00:12,230 +As-salamu alaykum. In the last lecture, we started + +2 +00:00:12,230 --> 00:00:15,350 +with the first design pattern, which is the + +3 +00:00:15,350 --> 00:00:19,390 +factory pattern. We said that the factory + +4 +00:00:19,390 --> 00:00:25,200 +pattern's goal is to create a class It has one + +5 +00:00:25,200 --> 00:00:29,800 +useful method to create objects for it And we use + +6 +00:00:29,800 --> 00:00:32,800 +it in cases that if I have a group of objects that + +7 +00:00:32,800 --> 00:00:35,200 +have the same type, that is, they follow the same + +8 +00:00:35,200 --> 00:00:39,680 +interface or extend to the same super class And I + +9 +00:00:39,680 --> 00:00:42,140 +need in my application to create one of these For + +10 +00:00:42,140 --> 00:00:45,500 +example, if I have a group of employees of + +11 +00:00:45,500 --> 00:00:48,080 +different types, all of them borrow from the same + +12 +00:00:48,080 --> 00:00:52,760 +class employee Or a group of delivery methods For + +13 +00:00:52,760 --> 00:00:53,900 +example, the example we presented in the previous + +14 +00:00:53,900 --> 00:00:56,100 +lecture, it is separated from an interface called + +15 +00:00:56,100 --> 00:01:00,020 +delivery or a group of algorithms separated from + +16 +00:01:00,020 --> 00:01:02,200 +an interface called algorithm. In the end, I want + +17 +00:01:02,200 --> 00:01:05,220 +to create one of these. The idea is that if you + +18 +00:01:05,220 --> 00:01:08,160 +use new operator, you bind yourself to the class + +19 +00:01:08,160 --> 00:01:11,260 +name, not that I say new and then class name. This + +20 +00:01:11,260 --> 00:01:13,860 +means that if you change the class name or change + +21 +00:01:13,860 --> 00:01:19,090 +its constructor, parameters, Whenever you use the + +22 +00:01:19,090 --> 00:01:22,290 +word new in the class name, it will change. So the + +23 +00:01:22,290 --> 00:01:25,910 +idea is that we can collect the process of + +24 +00:01:25,910 --> 00:01:32,110 +creation in one class called the factory. The + +25 +00:01:32,110 --> 00:01:39,290 +factory is what creates the objects. These objects + +26 +00:01:39,290 --> 00:01:42,950 +follow the same interface. + +27 +00:01:45,160 --> 00:01:49,740 +because the client code does not know anything + +28 +00:01:49,740 --> 00:01:54,380 +about these factors it only takes from the factory + +29 +00:01:54,380 --> 00:01:56,920 +it sends him a number and tells him to make one or + +30 +00:01:56,920 --> 00:02:00,420 +two or three choices so the interaction is with + +31 +00:02:00,420 --> 00:02:04,640 +the factory the advantage here is that if there is + +32 +00:02:04,640 --> 00:02:08,560 +any change on these factors or any addition to a + +33 +00:02:08,560 --> 00:02:12,120 +new classI will only have to count inside the + +34 +00:02:12,120 --> 00:02:14,980 +factory and there will not be any modification. + +35 +00:02:15,780 --> 00:02:18,340 +Because we explained in the last lecture two + +36 +00:02:18,340 --> 00:02:23,720 +examples based on the factory, which are based on + +37 +00:02:23,720 --> 00:02:27,870 +delivery methods and algorithms.So let's read the + +38 +00:02:27,870 --> 00:02:29,630 +slide again which was supposed to come after the + +39 +00:02:29,630 --> 00:02:30,790 +two examples I explained in the previous lecture + +40 +00:02:30,790 --> 00:02:33,990 +Let's + +41 +00:02:33,990 --> 00:02:37,490 +read it quickly The factor is a class whose sole + +42 +00:02:37,490 --> 00:02:42,130 +job is to easily create and return instances of + +43 +00:02:42,130 --> 00:02:44,870 +other objects It is clear that it creates objects + +44 +00:02:44,870 --> 00:02:48,970 +from another class and returns them to it It is a + +45 +00:02:48,970 --> 00:02:51,610 +creation pattern that makes it easier to construct + +46 +00:02:51,610 --> 00:02:54,400 +complex objectsIt facilitates the construction of + +47 +00:02:54,400 --> 00:02:56,880 +objects. There is also another advantage, which is + +48 +00:02:56,880 --> 00:02:59,200 +that it collects the construction process. Because + +49 +00:02:59,200 --> 00:03:03,720 +I am not using the new operator inside the + +50 +00:03:03,720 --> 00:03:07,040 +factory, right? If the parameters of the + +51 +00:03:07,040 --> 00:03:08,460 +constructors change, I change them in the factory, + +52 +00:03:08,640 --> 00:03:11,880 +right? One of the advantages of the factory is + +53 +00:03:11,880 --> 00:03:13,720 +that it hides the construction process from the + +54 +00:03:13,720 --> 00:03:17,160 +client. For example, if the constructor needs 10 + +55 +00:03:17,160 --> 00:03:21,390 +parameters, I pass these parameters from inside + +56 +00:03:21,390 --> 00:03:24,290 +the factory and give it default values to create + +57 +00:03:24,290 --> 00:03:27,330 +the object. The client does not need to know these + +58 +00:03:27,330 --> 00:03:30,090 +10 parameters. He just needs to tell it to create + +59 +00:03:30,090 --> 00:03:34,550 +one delivery method. From inside the factory, I + +60 +00:03:34,550 --> 00:03:37,030 +tell him to create the object and send him the + +61 +00:03:37,030 --> 00:03:41,150 +default parameters to create this object. Even the + +62 +00:03:41,150 --> 00:03:43,770 +details of creating the object are hidden from the + +63 +00:03:43,770 --> 00:03:47,840 +client.Instead of calling a constructor, use a + +64 +00:03:47,840 --> 00:03:55,420 +static method in a factory saves + +65 +00:03:55,420 --> 00:03:57,680 +lines and complexity to quickly construct + +66 +00:03:57,680 --> 00:03:59,300 +initialize objects + +67 +00:04:01,900 --> 00:04:05,800 +This is almost the same thing The factory design + +68 +00:04:05,800 --> 00:04:08,300 +pattern is probably one of the most used design + +69 +00:04:08,300 --> 00:04:12,320 +patterns Creates objects without exposing the + +70 +00:04:12,320 --> 00:04:15,200 +instantiation logic to the client What does it + +71 +00:04:15,200 --> 00:04:17,820 +mean without exposing? It creates objects without + +72 +00:04:17,820 --> 00:04:20,540 +showing the details of the creation of the objects + +73 +00:04:20,540 --> 00:04:25,500 +All the details are placed inside the factory And + +74 +00:04:25,500 --> 00:04:28,260 +this is the last important point Refers to the + +75 +00:04:28,260 --> 00:04:33,390 +newly created objectThrough a common interface + +76 +00:04:33,390 --> 00:04:36,610 +What does this mean? It means that whatever the + +77 +00:04:36,610 --> 00:04:38,650 +factory produces as the type of object it produces + +78 +00:04:38,650 --> 00:04:41,510 +returns from the type of interface This is a very + +79 +00:04:41,510 --> 00:04:44,610 +important point Because the client now deals with + +80 +00:04:44,610 --> 00:04:47,070 +the type of interface He doesn't know anything + +81 +00:04:47,070 --> 00:04:51,970 +about the types of classes The client is bound to + +82 +00:04:51,970 --> 00:04:54,730 +add new types of classes and in the end deals with + +83 +00:04:54,730 --> 00:04:55,570 +the type of interface + +84 +00:05:00,040 --> 00:05:04,920 +This is a class diagram for the factory patent. + +85 +00:05:04,980 --> 00:05:08,020 +Let's look at it. The first thing you see here. + +86 +00:05:08,600 --> 00:05:12,460 +What is written here? Product. And what does this + +87 +00:05:12,460 --> 00:05:15,700 +mean? Interface. Because the product is divided + +88 +00:05:15,700 --> 00:05:19,140 +into classes. It is called a concrete product + +89 +00:05:19,140 --> 00:05:22,420 +here. The concrete product is a class made to be + +90 +00:05:22,420 --> 00:05:26,200 +implemented. And of course, it is expected that + +91 +00:05:26,200 --> 00:05:28,740 +there are more than one of these So here there is + +92 +00:05:28,740 --> 00:05:32,120 +concrete class 2, concrete class 3 Like when I did + +93 +00:05:32,120 --> 00:05:34,640 +different delivery methods that came out of the + +94 +00:05:34,640 --> 00:05:38,320 +same interface I said that when I am in a + +95 +00:05:38,320 --> 00:05:40,900 +situation like this More than one class follows + +96 +00:05:40,900 --> 00:05:44,300 +the same interface I can use a factor to create + +97 +00:05:44,300 --> 00:05:46,760 +these So that it creates any object and in the end + +98 +00:05:46,760 --> 00:05:50,760 +I return it to it as a product Ok, let's see now I + +99 +00:05:50,760 --> 00:05:54,840 +came to the UML diagram because this class is + +100 +00:05:54,840 --> 00:05:58,600 +called factory there is a method called create + +101 +00:05:58,600 --> 00:06:02,900 +product inside it and it takes the product ID + +102 +00:06:02,900 --> 00:06:08,500 +which is integer what does it return? product + +103 +00:06:08,500 --> 00:06:12,280 +which is the main type of the interface because + +104 +00:06:12,280 --> 00:06:15,920 +this yellow thing here is what we call note which + +105 +00:06:15,920 --> 00:06:22,880 +is a note Put in it how the code inside the method + +106 +00:06:22,880 --> 00:06:28,800 +looks like. The code inside the method is a public + +107 +00:06:28,800 --> 00:06:32,940 +product created product that takes id. If the id + +108 +00:06:32,940 --> 00:06:38,810 +is equal to id1, return new one product. if it is + +109 +00:06:38,810 --> 00:06:43,930 +2, return another project, and so on I make a list + +110 +00:06:43,930 --> 00:06:47,750 +of if statements according to how many concrete + +111 +00:06:47,750 --> 00:06:52,450 +projects I have Like what we did in the last + +112 +00:06:52,450 --> 00:06:58,670 +lecture, we made a factor for delivery, if it is + +113 +00:06:58,670 --> 00:07:00,950 +choice 1, I make an error delivery, if it is 2, a + +114 +00:07:00,950 --> 00:07:04,410 +man delivery, if it is 3, a maritime delivery, and + +115 +00:07:04,410 --> 00:07:10,050 +we also made another one for algorithms Tamam? + +116 +00:07:13,350 --> 00:07:17,730 +High encryption factor. Where did I put it? Below. + +117 +00:07:18,770 --> 00:07:22,170 +Why the ...? + +118 +00:07:22,370 --> 00:07:23,670 +Download the one above and below. + +119 +00:07:32,870 --> 00:07:34,530 +Never mind. This one ... + +120 +00:07:38,000 --> 00:07:40,220 +this is the same idea, there is F statements or + +121 +00:07:40,220 --> 00:07:43,540 +switch here and it will create one of them ok + +122 +00:07:43,540 --> 00:07:46,920 +let's + +123 +00:07:46,920 --> 00:07:50,540 +continue now look with me at the client itself who + +124 +00:07:50,540 --> 00:07:52,040 +is the client? who represents him in our program? + +125 +00:07:53,260 --> 00:07:57,040 +if we want to create an object like mail for + +126 +00:07:57,040 --> 00:08:00,880 +example actually the client is the one who needs + +127 +00:08:00,880 --> 00:08:04,620 +to create one of the products Because the client + +128 +00:08:04,620 --> 00:08:08,760 +does not have any relation between the client and + +129 +00:08:08,760 --> 00:08:11,240 +the concrete product. The relation between the + +130 +00:08:11,240 --> 00:08:14,000 +client and who? And the factory. The client asks + +131 +00:08:14,000 --> 00:08:15,800 +the factory to make him a product, to make him a + +132 +00:08:15,800 --> 00:08:18,280 +delivery method. It sends him one or two or three. + +133 +00:08:18,600 --> 00:08:20,800 +And in the end, what will the factory give him + +134 +00:08:20,800 --> 00:08:24,360 +back? It will give him back the product. And it + +135 +00:08:24,360 --> 00:08:27,250 +implements the method in it. I don't know. So the + +136 +00:08:27,250 --> 00:08:30,830 +idea is that there is no direct relationship + +137 +00:08:30,830 --> 00:08:36,330 +between the client and these people. If there is a + +138 +00:08:36,330 --> 00:08:37,330 +relationship with them, there is a problem. It + +139 +00:08:37,330 --> 00:08:40,790 +means that if I change anyone here, it will change + +140 +00:08:40,790 --> 00:08:43,090 +in the client. If I add a new person, it will + +141 +00:08:43,090 --> 00:08:46,570 +change in the client. Now, the change is only in + +142 +00:08:46,570 --> 00:08:49,770 +one place. There can be more than one client that + +143 +00:08:49,770 --> 00:08:55,720 +needs to create a product. Now, if I change here, + +144 +00:08:56,560 --> 00:08:58,760 +I only need to change where? In the factor. What + +145 +00:08:58,760 --> 00:09:00,500 +do I change? Because if I change in the + +146 +00:09:00,500 --> 00:09:02,380 +constructor, it takes a parameter. I need to + +147 +00:09:02,380 --> 00:09:06,250 +changeWherever I use U in the factory, I change it + +148 +00:09:06,250 --> 00:09:08,490 +in the parameters of the constructor If I add + +149 +00:09:08,490 --> 00:09:11,750 +concrete class product new, it goes to the new F + +150 +00:09:11,750 --> 00:09:15,550 +statement in the factory, right or not? So there + +151 +00:09:15,550 --> 00:09:17,310 +must be a change, but the change is concentrated + +152 +00:09:17,310 --> 00:09:21,030 +in one place Doctor, I saw that all classes meet + +153 +00:09:21,030 --> 00:09:24,470 +in the product interface, so why don't we use the + +154 +00:09:24,470 --> 00:09:27,310 +product itself? What should the factory do? + +155 +00:09:34,090 --> 00:09:35,310 +How do I count in the interface? + +156 +00:09:38,410 --> 00:09:45,170 +Now, I want to add a new product. The new product + +157 +00:09:45,170 --> 00:09:49,830 +will take the type of product. Now, this is the + +158 +00:09:49,830 --> 00:09:52,090 +new product that I want to create. I cannot create + +159 +00:09:52,090 --> 00:09:54,190 +an object from the product. This is the interface. + +160 +00:09:55,070 --> 00:09:59,050 +I need to create objects from these objects. So I + +161 +00:09:59,050 --> 00:10:02,090 +say, new one product, new two product, new three + +162 +00:10:02,090 --> 00:10:05,590 +product. Because if you have a new product, how + +163 +00:10:05,590 --> 00:10:07,850 +can I get rid of it? I will have to use the new + +164 +00:10:07,850 --> 00:10:10,650 +one and put the name of the new product in the + +165 +00:10:10,650 --> 00:10:14,130 +client. But if my whole factory is different, + +166 +00:10:14,330 --> 00:10:16,530 +changed, takes different parameters, changed the + +167 +00:10:16,530 --> 00:10:18,570 +name of the class, I will have to change it in the + +168 +00:10:18,570 --> 00:10:23,350 +client. Now I left the change only in the factory. + +169 +00:10:24,170 --> 00:10:27,350 +And now we will see how to make a design for the + +170 +00:10:27,350 --> 00:10:30,920 +factory so that we do not modify it at once. For + +171 +00:10:30,920 --> 00:10:34,500 +example, I will add new classes without modifying + +172 +00:10:34,500 --> 00:10:41,380 +anything on the factory. Once again, the main idea + +173 +00:10:41,380 --> 00:10:43,040 +is that there is no direct relationship between + +174 +00:10:43,040 --> 00:10:47,380 +the client and the concrete products. The + +175 +00:10:47,380 --> 00:10:50,120 +relationship is only with the factory, and I + +176 +00:10:50,120 --> 00:10:54,000 +return it to the interface. The client does not + +177 +00:10:54,000 --> 00:10:57,720 +deal with them. The idea is that there are a lot + +178 +00:10:57,720 --> 00:11:00,800 +of changes happening in them. The interface does + +179 +00:11:00,800 --> 00:11:04,660 +not change. The interface is originally made for + +180 +00:11:04,660 --> 00:11:09,940 +people to walk their own way. You change here and + +181 +00:11:09,940 --> 00:11:12,520 +this is a possibility that you add a lot of things + +182 +00:11:12,520 --> 00:11:15,440 +that have been modified. So I want to keep the + +183 +00:11:15,440 --> 00:11:17,760 +client isolated from the changes that happen here. + +184 +00:11:28,480 --> 00:11:34,360 +Now you read this by yourself, this is the shape + +185 +00:11:34,360 --> 00:11:40,100 +of the factory, there is a method called create + +186 +00:11:40,100 --> 00:11:43,320 +productYou return the product and they say it's + +187 +00:11:43,320 --> 00:11:45,860 +better if you do it statically If you don't do it + +188 +00:11:45,860 --> 00:11:49,200 +statically, it's not a problem You have to create + +189 +00:11:49,200 --> 00:11:51,400 +an object, but it's better if you do it statically + +190 +00:11:51,400 --> 00:11:55,460 +because it's expected that you need it a lot And + +191 +00:11:55,460 --> 00:12:01,060 +it repeats the statements, if the ID was a certain + +192 +00:12:01,060 --> 00:12:04,560 +text, return it one product, create one product + +193 +00:12:04,560 --> 00:12:07,620 +and return it create another product and bring it + +194 +00:12:07,620 --> 00:12:11,740 +back These one product and another product are all + +195 +00:12:11,740 --> 00:12:15,320 +following the same interface So in the end I + +196 +00:12:15,320 --> 00:12:20,600 +brought back the type of interface The + +197 +00:12:20,600 --> 00:12:24,720 +problem with this factory design is that every + +198 +00:12:24,720 --> 00:12:27,740 +time I want to add a new product, I still have to + +199 +00:12:27,740 --> 00:12:32,760 +modify the factory I will come back and show you + +200 +00:12:32,760 --> 00:12:36,430 +another way to design a factory is that we stop + +201 +00:12:36,430 --> 00:12:43,450 +modifying anything. For example, + +202 +00:12:43,670 --> 00:12:47,230 +in the example of delivery, if I want to make a + +203 +00:12:47,230 --> 00:12:50,410 +new delivery method, all I have to do is make a + +204 +00:12:50,410 --> 00:12:54,860 +new class and put it in the program.The factory + +205 +00:12:54,860 --> 00:12:56,940 +now, you don't want to make an F statement in it + +206 +00:12:56,940 --> 00:12:59,420 +to tell me that if a new type comes, I should get + +207 +00:12:59,420 --> 00:13:02,000 +rid of it? Okay, no, even the factory, if we stop + +208 +00:13:02,000 --> 00:13:06,840 +making it, yes, a new F statement How do we do + +209 +00:13:06,840 --> 00:13:11,100 +this? I will tell you, we will get to know in a + +210 +00:13:11,100 --> 00:13:13,620 +way how to make the factory without any + +211 +00:13:13,620 --> 00:13:17,130 +modificationIn order to do this, we need to learn + +212 +00:13:17,130 --> 00:13:22,810 +about a new library called Reflection API. What is + +213 +00:13:22,810 --> 00:13:26,450 +Reflection API? Reflection API is a library that + +214 +00:13:26,450 --> 00:13:28,650 +exists in all languages of object-oriented + +215 +00:13:28,650 --> 00:13:32,450 +programming. Not only in Java, it is also present + +216 +00:13:32,450 --> 00:13:35,710 +in Java, .NET and Python All the programming + +217 +00:13:35,710 --> 00:13:37,430 +languages are object-oriented, there is a library + +218 +00:13:37,430 --> 00:13:40,950 +called Reflection What is Reflection? + +219 +00:13:42,930 --> 00:13:45,770 +Reflection is one of its benefits, they use it to + +220 +00:13:45,770 --> 00:13:48,610 +do something called static analysis of the code + +221 +00:13:48,610 --> 00:13:51,530 +That is, through this library, I can enter the + +222 +00:13:51,530 --> 00:13:54,570 +code, open it and see what is inside its contents + +223 +00:13:54,570 --> 00:13:58,290 +without doing anything When I say turn on the + +224 +00:13:58,290 --> 00:14:02,830 +code, I can open any class in any program and see + +225 +00:14:02,830 --> 00:14:06,290 +what's in its contents. It's like opening an IDE + +226 +00:14:06,290 --> 00:14:08,750 +on NetBeans and reading what's written in the + +227 +00:14:08,750 --> 00:14:12,770 +class. What do they use this library for? All + +228 +00:14:12,770 --> 00:14:16,510 +antivirus programs are made on Reflection API. + +229 +00:14:17,330 --> 00:14:19,290 +Because how does the antivirus work? The antivirus + +230 +00:14:19,290 --> 00:14:20,150 +enters the code + +231 +00:14:23,960 --> 00:14:27,960 +The idea is that they enter the code, read it and + +232 +00:14:27,960 --> 00:14:30,020 +see what's in it, and any doubt they have about + +233 +00:14:30,020 --> 00:14:35,250 +it, Inside the code, it tells you that this is + +234 +00:14:35,250 --> 00:14:39,990 +malicious code and there is a risk of it. How do + +235 +00:14:39,990 --> 00:14:43,950 +we use this Reflection API? It's simple. This is a + +236 +00:14:43,950 --> 00:14:46,970 +huge library, but now I want to explain the part + +237 +00:14:46,970 --> 00:14:50,690 +that concerns us. The idea is that they use it to + +238 +00:14:50,690 --> 00:14:54,470 +enter code and read it. Let's try this Reflection + +239 +00:14:54,470 --> 00:14:57,310 +API. We can enter a class and read to see what is + +240 +00:14:57,310 --> 00:15:01,580 +inside it. Then we will see how to use itin order + +241 +00:15:01,580 --> 00:15:06,360 +to make the factory pattern in a way that allows + +242 +00:15:06,360 --> 00:15:08,760 +us to modify any line in it. Pay attention to this + +243 +00:15:08,760 --> 00:15:11,440 +gate. We will get to know the Reflection API and + +244 +00:15:11,440 --> 00:15:13,320 +then we will see how to use it. + +245 +00:15:16,600 --> 00:15:26,420 +Okay, I want to make a + +246 +00:15:26,420 --> 00:15:28,340 +new class here called Test Reflection. + +247 +00:15:45,670 --> 00:15:50,970 +Ok, the first method has a name class.forename and + +248 +00:15:50,970 --> 00:15:58,550 +I give it pathFactory.circle + +249 +00:15:58,550 --> 00:16:02,330 +Did you guys remember that we took an application + +250 +00:16:02,330 --> 00:16:06,370 +that we took in the first lectures that draws + +251 +00:16:06,370 --> 00:16:09,910 +shapes? Do you remember it? I want to try a class + +252 +00:16:09,910 --> 00:16:12,550 +in it, one of the classes has a class called + +253 +00:16:12,550 --> 00:16:16,450 +circle We did it together, right or wrong? It + +254 +00:16:16,450 --> 00:16:19,510 +represents a circle You can try it on any class + +255 +00:16:19,510 --> 00:16:22,950 +Because I want to read this class and see what's + +256 +00:16:22,950 --> 00:16:27,770 +inside it So I tell it class.forename And I give + +257 +00:16:27,770 --> 00:16:32,730 +it the package path The path of the class, which + +258 +00:16:32,730 --> 00:16:36,390 +is this class circle in the package called Factory + +259 +00:16:36,390 --> 00:16:41,510 +And this gives me an object of type class, I want + +260 +00:16:41,510 --> 00:16:45,420 +to call it C And this one I just want to tell it + +261 +00:16:45,420 --> 00:16:53,520 +to surround with a try-catch Now + +262 +00:16:53,520 --> 00:16:58,160 +this get will work everywhere on this c Let's see + +263 +00:16:58,160 --> 00:17:01,960 +what this c will do I want to tell it system.out + +264 +00:17:01,960 --> 00:17:07,560 +.println c + +265 +00:17:07,560 --> 00:17:09,620 +.getname + +266 +00:17:11,620 --> 00:17:13,160 +The name of the class, and we know that it is + +267 +00:17:13,160 --> 00:17:16,020 +what? Circle, run it, make sure, it will write + +268 +00:17:16,020 --> 00:17:24,700 +factory.circle Ok, say c.get declared + +269 +00:17:24,700 --> 00:17:30,600 +fields What does get declared fields mean? Even + +270 +00:17:30,600 --> 00:17:32,180 +the fields that are identified in it, this get is + +271 +00:17:32,180 --> 00:17:34,940 +not inside the class, there are attributes Even if + +272 +00:17:34,940 --> 00:17:37,520 +it is private, it will get it Ok, it will say + +273 +00:17:37,520 --> 00:17:44,060 +what? field fieldsIt's like a dictionary. You have + +274 +00:17:44,060 --> 00:17:46,600 +to make a loop on this dictionary. Why? For each + +275 +00:17:46,600 --> 00:17:52,320 +field, F is present in fields, type system.out + +276 +00:17:52,320 --> 00:17:57,240 +.println F + +277 +00:17:57,240 --> 00:18:04,640 +dot + +278 +00:18:04,640 --> 00:18:11,560 +get name, for exampleSo when I do run, I should + +279 +00:18:11,560 --> 00:18:15,240 +see what attributes are inside the class It says + +280 +00:18:15,240 --> 00:18:17,320 +that the circle has three attributes, which means + +281 +00:18:17,320 --> 00:18:21,540 +it's ready It's like you're reading the class, you + +282 +00:18:21,540 --> 00:18:24,320 +see what's inside it Not only that, you can also + +283 +00:18:24,320 --> 00:18:29,340 +see the methods in it Go to C and say get methods, + +284 +00:18:29,400 --> 00:18:33,660 +it's name is get methods Okay, this is method + +285 +00:18:33,660 --> 00:18:36,300 +methods + +286 +00:18:41,930 --> 00:18:46,810 +and I want to do what? list loop this is every + +287 +00:18:46,810 --> 00:18:54,070 +method m existing in methods system.out.println it + +288 +00:18:54,070 --> 00:18:56,190 +prints a lot of things the name of the method and + +289 +00:18:56,190 --> 00:18:58,150 +what parameters it takes and what it returns it + +290 +00:18:58,150 --> 00:19:01,730 +knows all the details for example the least thing + +291 +00:19:01,730 --> 00:19:03,510 +I want to say is getname I want to see what are + +292 +00:19:03,510 --> 00:19:07,670 +the names of the methods inside the class of + +293 +00:19:07,670 --> 00:19:10,550 +course it brought me all the methods that it has + +294 +00:19:10,550 --> 00:19:14,770 +and inherited For example, these parameters have + +295 +00:19:14,770 --> 00:19:16,850 +for example, draw, a mountain with a name draw, + +296 +00:19:17,010 --> 00:19:19,990 +and it has weight, equals, and two strings. Who + +297 +00:19:19,990 --> 00:19:22,630 +inherited these from? From the father. In short, + +298 +00:19:23,030 --> 00:19:27,670 +this reflection API helps me as if I am reading in + +299 +00:19:27,670 --> 00:19:30,130 +the code. That is why those who make antivirus + +300 +00:19:30,130 --> 00:19:32,770 +programs actually rely on reflection API because + +301 +00:19:32,770 --> 00:19:35,110 +they really need to read the code without doing + +302 +00:19:35,110 --> 00:19:37,090 +anything behind it. I created an object from the + +303 +00:19:37,090 --> 00:19:40,160 +circle, Here, here, I created an object from a + +304 +00:19:40,160 --> 00:19:41,820 +circle, I didn't create an object from a circle If + +305 +00:19:41,820 --> 00:19:44,340 +I created a problem, what do I consider? I run it, + +306 +00:19:44,580 --> 00:19:48,780 +right? But here, no, I'm reading in the circle and + +307 +00:19:48,780 --> 00:19:52,340 +I see what's inside it without running it, okay? + +308 +00:19:52,740 --> 00:19:56,420 +Okay, if you got to know the Reflection API, what + +309 +00:19:56,420 --> 00:19:58,520 +is its relationship with the topic of factory? The + +310 +00:19:58,520 --> 00:20:01,880 +topic is as follows, that I can now benefit from + +311 +00:20:01,880 --> 00:20:06,100 +the Reflection API to create an object from the + +312 +00:20:06,100 --> 00:20:08,580 +circle you see, we know the way to find the object + +313 +00:20:08,580 --> 00:20:11,320 +that we have been learning all our life and in all + +314 +00:20:11,320 --> 00:20:13,280 +programming languages new is the name of the + +315 +00:20:13,280 --> 00:20:16,100 +constructor and languages other than java is the + +316 +00:20:16,100 --> 00:20:18,760 +name of the constructor you see, in reflection I + +317 +00:20:18,760 --> 00:20:21,360 +can do it like this class.forename brings me the + +318 +00:20:21,360 --> 00:20:27,100 +class, right? and then I say here dot and I have a + +319 +00:20:27,100 --> 00:20:36,150 +value called new instance and I pass null to itWhy + +320 +00:20:36,150 --> 00:20:40,810 +null? Because it doesn't have a parameter Yes, it + +321 +00:20:40,810 --> 00:20:46,350 +doesn't have a parameter It + +322 +00:20:46,350 --> 00:20:48,610 +only needs a try-catch, I'll leave it for a second + +323 +00:20:48,610 --> 00:20:52,070 +I'll + +324 +00:20:52,070 --> 00:20:54,930 +remove it like this, and remove it like this + +325 +00:21:12,270 --> 00:21:21,610 +For example, I + +326 +00:21:21,610 --> 00:21:24,790 +say class name + +327 +00:21:24,790 --> 00:21:28,130 +and then say new instance. What does this new + +328 +00:21:28,130 --> 00:21:30,770 +instance do? It searches if there is an empty + +329 +00:21:30,770 --> 00:21:34,970 +constructor in the class, it creates an object + +330 +00:21:34,970 --> 00:21:40,820 +from the circle.Okay? That's why this is the only + +331 +00:21:40,820 --> 00:21:44,340 +flaw. I have to make sure that there is an empty + +332 +00:21:44,340 --> 00:21:47,440 +constructor. What do I want to do? Currently, + +333 +00:21:47,640 --> 00:21:49,840 +there is no empty constructor, so I want to create + +334 +00:21:49,840 --> 00:21:51,920 +an empty constructor and give a value + +335 +00:21:54,820 --> 00:22:04,800 +For example, this dot center x is 400 and this dot + +336 +00:22:04,800 --> 00:22:08,420 +center y is 250. + +337 +00:22:11,120 --> 00:22:15,620 +Ok, this is supposed to create an object from + +338 +00:22:15,620 --> 00:22:17,920 +circle, but it will return an object to it. So, I + +339 +00:22:17,920 --> 00:22:20,960 +did a casting to circle and I told it that this is + +340 +00:22:20,960 --> 00:22:25,000 +circle c. How do you make sure that it made a + +341 +00:22:25,000 --> 00:22:32,200 +circle? You say system.out.println c.radius for + +342 +00:22:32,200 --> 00:22:34,040 +example, it's not supposed to print half of the + +343 +00:22:34,040 --> 00:22:37,800 +line, which is 50. This is run and this is what? + +344 +00:22:37,840 --> 00:22:42,720 +Printed what? 50. Okay, so you don't get bored, I + +345 +00:22:42,720 --> 00:22:44,700 +showed you something or introduced you to + +346 +00:22:44,700 --> 00:22:46,420 +something called Reflection API. What does it + +347 +00:22:46,420 --> 00:22:49,480 +mean? That you read the class and see it. And + +348 +00:22:49,480 --> 00:22:51,440 +within the Reflection API, there is an indicator + +349 +00:22:51,440 --> 00:22:56,230 +that you can use to create object from the class + +350 +00:22:56,230 --> 00:23:01,890 +which is class.formname and new instance but this + +351 +00:23:01,890 --> 00:23:05,050 +condition that there is no argument constructor in + +352 +00:23:05,050 --> 00:23:08,590 +the class what is the difference between this and + +353 +00:23:08,590 --> 00:23:10,850 +the usual new there is a big difference between + +354 +00:23:10,850 --> 00:23:14,110 +them when you use the new you don't need to put + +355 +00:23:14,110 --> 00:23:16,310 +the name of the constructor you put it as a part + +356 +00:23:16,310 --> 00:23:20,870 +of the code thisYou want to change the class to + +357 +00:23:20,870 --> 00:23:23,330 +another class, you want to change the name of the + +358 +00:23:23,330 --> 00:23:26,670 +constructor. The point is that since it is written + +359 +00:23:26,670 --> 00:23:29,730 +as a code, it must be modified to change the code. + +360 +00:23:29,890 --> 00:23:33,130 +But here, the name of the class that I define is a + +361 +00:23:33,130 --> 00:23:34,810 +string. How? + +362 +00:23:37,480 --> 00:23:40,700 +the path of the class you see this as a string + +363 +00:23:40,700 --> 00:23:44,140 +that I can change during the runtime I can't ask + +364 +00:23:44,140 --> 00:23:45,780 +the user to enter the name of the class that I + +365 +00:23:45,780 --> 00:23:49,400 +want to create I can't let him read and see what + +366 +00:23:49,400 --> 00:23:51,820 +classes I have in my library and create from them + +367 +00:23:51,820 --> 00:23:57,580 +so its existence as a string makes me change it + +368 +00:23:57,580 --> 00:24:02,700 +but writing it as a code new circle I can't change + +369 +00:24:02,700 --> 00:24:05,400 +it as a code okay, how can we benefit from this? + +370 +00:24:05,480 --> 00:24:09,580 +listen to meI will go back to the program after we + +371 +00:24:09,580 --> 00:24:12,400 +took the calm way, I will stop working in + +372 +00:24:12,400 --> 00:24:14,220 +reflection and I will go and benefit from what I + +373 +00:24:14,220 --> 00:24:17,200 +did here in the program that we took previously, + +374 +00:24:17,880 --> 00:24:20,920 +which is any drawing program, do you remember the + +375 +00:24:20,920 --> 00:24:23,760 +drawing program? Yes, let me remind you of it, the + +376 +00:24:23,760 --> 00:24:26,280 +drawing program that we took in the first lectures + +377 +00:24:26,280 --> 00:24:31,230 +that used to draw shapesCircle, Rectangle, and + +378 +00:24:31,230 --> 00:24:35,450 +then what does it do? Yes, it does a clear. Why is + +379 +00:24:35,450 --> 00:24:36,250 +it not drawing here? + +380 +00:24:39,890 --> 00:24:45,770 +Let's see what's + +381 +00:24:45,770 --> 00:24:46,950 +wrong with it. + +382 +00:24:54,350 --> 00:24:57,170 +Ok, this drawing program, if you remember how we + +383 +00:24:57,170 --> 00:24:59,850 +designed it or what we explained it to explain the + +384 +00:24:59,850 --> 00:25:02,290 +meaning of the interface Do you remember? One day + +385 +00:25:02,290 --> 00:25:09,790 +we made shapes like circle, rectangle, ok? And we + +386 +00:25:09,790 --> 00:25:11,990 +made them all separate from an interface called + +387 +00:25:11,990 --> 00:25:16,690 +shape And we made a class called DrawManager, ok? + +388 +00:25:16,850 --> 00:25:18,390 +Yes, this is the problem, because the DrawManager + +389 +00:25:18,390 --> 00:25:26,320 +has It's empty. Why? Wait a second. There's + +390 +00:25:26,320 --> 00:25:26,800 +another version. + +391 +00:25:30,320 --> 00:25:38,220 +Yes, this is the draw. It's this one. + +392 +00:25:45,400 --> 00:25:46,360 +Okay + +393 +00:26:05,410 --> 00:26:07,650 +This is the program that we made. + +394 +00:26:12,980 --> 00:26:16,140 +Okay, it's clear and it's undo, okay? This is the + +395 +00:26:16,140 --> 00:26:19,740 +program that we did before and there was a draw + +396 +00:26:19,740 --> 00:26:22,500 +manager that we changed to make it depend only on + +397 +00:26:22,500 --> 00:26:26,080 +the interface, if you remember. It doesn't know + +398 +00:26:26,080 --> 00:26:28,720 +anything about circle or rectangle. It guesses it + +399 +00:26:28,720 --> 00:26:33,220 +as a shape and draws it, okay? Now, guys, this + +400 +00:26:33,220 --> 00:26:37,280 +program was how we used to work it. When we were + +401 +00:26:37,280 --> 00:26:40,100 +in the graphical user interface, we would press + +402 +00:26:40,100 --> 00:26:44,050 +the circle button and we do action on this button + +403 +00:26:44,050 --> 00:26:47,470 +when we click on it what will it do? it will + +404 +00:26:47,470 --> 00:26:50,430 +extract an object from the circle and call the + +405 +00:26:50,430 --> 00:26:53,050 +draw manager and send him the object circle and + +406 +00:26:53,050 --> 00:26:55,130 +the draw manager accepts it because the circle is + +407 +00:26:55,130 --> 00:27:00,910 +a shape and the same thing if I have a rectangle I + +408 +00:27:00,910 --> 00:27:02,950 +extract an object from the rectangle and send it + +409 +00:27:02,950 --> 00:27:06,410 +to the draw manager if I have another shape and + +410 +00:27:06,410 --> 00:27:09,500 +third and fourth each one I want to do I want to + +411 +00:27:09,500 --> 00:27:11,320 +make a shape out of it. What we want to change is + +412 +00:27:11,320 --> 00:27:13,840 +that we want to benefit from the factory pattern + +413 +00:27:13,840 --> 00:27:16,780 +on the basis that we will see the gate. When we + +414 +00:27:16,780 --> 00:27:19,480 +make new shapes, our goal is to see the gate.We + +415 +00:27:19,480 --> 00:27:22,800 +don't change anything in the GUI or in the + +416 +00:27:22,800 --> 00:27:26,340 +factory, we just make the shape and put it in the + +417 +00:27:26,340 --> 00:27:29,800 +class of the application and it will add the + +418 +00:27:29,800 --> 00:27:32,400 +button and draw and do everything. We don't modify + +419 +00:27:32,400 --> 00:27:36,020 +anything. Ok, how do we do this? Pay attention to + +420 +00:27:36,020 --> 00:27:40,060 +me. First of all, I have shapes, circle, rectangle + +421 +00:27:40,060 --> 00:27:41,920 +and solid circle. They are all shapes that are + +422 +00:27:41,920 --> 00:27:45,450 +separated from each other. from shape and this way + +423 +00:27:45,450 --> 00:27:49,190 +instead of letting the client make a new rectangle + +424 +00:27:49,190 --> 00:27:53,050 +every time and instead of making a new circle I + +425 +00:27:53,050 --> 00:28:03,410 +want to make a class here called shape factory and + +426 +00:28:03,410 --> 00:28:06,430 +inside the shape factory I want to say public + +427 +00:28:06,430 --> 00:28:11,110 +static shape + +428 +00:28:11,110 --> 00:28:20,530 +create shape name if + +429 +00:28:20,530 --> 00:28:29,550 +shape name dot equals ignore case circle if can + +430 +00:28:29,550 --> 00:28:41,930 +circle return to new circle else if if can shape + +431 +00:28:41,930 --> 00:28:52,640 +name dot equals ignore case rectangle return + +432 +00:28:52,640 --> 00:28:57,700 +new rectangle + +433 +00:28:57,700 --> 00:29:05,790 +else return null This is a normal factor like the + +434 +00:29:05,790 --> 00:29:09,230 +one we took But we send it a name, not an integer, + +435 +00:29:09,310 --> 00:29:13,710 +you can make it an integer or a string Now I want + +436 +00:29:13,710 --> 00:29:15,730 +to change something, what did these suppose to + +437 +00:29:15,730 --> 00:29:19,990 +have? No argument constructor So the circuit we + +438 +00:29:19,990 --> 00:29:21,810 +made has no argument constructor But I want to + +439 +00:29:21,810 --> 00:29:24,650 +make it more complicated, I want to say random R + +440 +00:29:24,650 --> 00:29:31,670 +is equal to new random Why did I do that? Because + +441 +00:29:31,670 --> 00:29:34,890 +I don't want this center to appear in a random + +442 +00:29:34,890 --> 00:29:44,110 +number So every time he creates a circle, he will + +443 +00:29:44,110 --> 00:29:48,570 +put it in a different place And I will do the same + +444 +00:29:48,570 --> 00:29:52,450 +thing in the class rectangle Where did the + +445 +00:29:52,450 --> 00:29:56,640 +rectangle go? Here it is This is an empty + +446 +00:29:56,640 --> 00:30:02,000 +constructor that I have. But I also want to do the + +447 +00:30:02,000 --> 00:30:06,760 +random R equals + +448 +00:30:06,760 --> 00:30:14,120 +U on + +449 +00:30:14,120 --> 00:30:18,580 +the basis that when I want to create a rectangle + +450 +00:30:26,400 --> 00:30:28,080 +Ok, I'm going to go back to the width and set it + +451 +00:30:28,080 --> 00:30:33,220 +to constant values Ok, and the position is r + +452 +00:30:33,220 --> 00:30:43,460 +.nextint Ok, + +453 +00:30:43,660 --> 00:30:47,140 +now this factory is normal as we did in the last + +454 +00:30:47,140 --> 00:30:51,370 +lecture Because this factory that I used where do + +455 +00:30:51,370 --> 00:30:53,610 +I want to use it from? from drawing up, it is what + +456 +00:30:53,610 --> 00:30:55,930 +draws shapes, right? because when I click on + +457 +00:30:55,930 --> 00:30:59,730 +circle, it does not want to do this code, okay? I + +458 +00:30:59,730 --> 00:31:03,390 +want to tell it to go only to whom? to shape + +459 +00:31:03,390 --> 00:31:08,290 +factory, + +460 +00:31:08,650 --> 00:31:14,810 +I tell it create shape and I send it circle, right + +461 +00:31:14,810 --> 00:31:19,830 +or not? and what will I return? it returns shape + +462 +00:31:19,830 --> 00:31:25,150 +and I send the shape because rectangle is the same + +463 +00:31:25,150 --> 00:31:28,570 +thing + +464 +00:31:28,570 --> 00:31:38,090 +shape P equals shape factory create shape and I + +465 +00:31:38,090 --> 00:31:41,410 +send it rectangle + +466 +00:31:47,570 --> 00:31:50,330 +And what is this shape? Because there is an + +467 +00:31:50,330 --> 00:31:52,250 +example that we gained from it, that the GUI + +468 +00:31:52,250 --> 00:31:54,750 +doesn't know anything about shapes currently. What + +469 +00:31:54,750 --> 00:31:56,030 +does it do when I tell it to create something and + +470 +00:31:56,030 --> 00:31:59,710 +I send it the name? It stops depending on the type + +471 +00:31:59,710 --> 00:32:02,350 +of class. Okay? Of course, this is not the final + +472 +00:32:02,350 --> 00:32:07,230 +design yet. Because this is circle, rectangle, + +473 +00:32:07,790 --> 00:32:11,830 +clear, undo. Okay? Okay, I still have a problem. I + +474 +00:32:11,830 --> 00:32:14,710 +will add a new shape. What does it have to do? Not + +475 +00:32:14,710 --> 00:32:16,150 +just a button. First, it has to create a class. + +476 +00:32:17,710 --> 00:32:22,850 +and then I want to go to the factory and add a new + +477 +00:32:22,850 --> 00:32:27,150 +f statement and I want to go to the GUI and I want + +478 +00:32:27,150 --> 00:32:29,550 +to make a button and action on it and send it and + +479 +00:32:29,550 --> 00:32:31,650 +tell it to make a shape and give it a shape name + +480 +00:32:31,650 --> 00:32:35,310 +I'm going to get rid of all of this, okay? You + +481 +00:32:35,310 --> 00:32:38,110 +understand how I do it? Go to the factory and see + +482 +00:32:38,110 --> 00:32:40,290 +what changes in it, not here I have f statements, + +483 +00:32:40,810 --> 00:32:45,240 +remove all of these f statements And instead of + +484 +00:32:45,240 --> 00:32:48,800 +that, I want to put the line that we wrote here. + +485 +00:32:48,860 --> 00:32:52,120 +Do you see this line? Okay? But what do I want to + +486 +00:32:52,120 --> 00:32:56,600 +do? I want to copy it. Okay? And I went to the + +487 +00:32:56,600 --> 00:33:03,660 +factory. And I put it here. Pay attention to me. + +488 +00:33:03,720 --> 00:33:07,360 +What did I tell him here? Go and do ... I went + +489 +00:33:07,360 --> 00:33:10,560 +back and told him to do ... Yes, here, leave this + +490 +00:33:10,560 --> 00:33:21,060 +shape. Okay? And what is this? shape p return + +491 +00:33:21,060 --> 00:33:24,640 +return return return return return return return + +492 +00:33:24,640 --> 00:33:25,080 +return return return return return return + +493 +00:33:41,250 --> 00:33:44,450 +I want to call it shapes. Why? Because I want to + +494 +00:33:44,450 --> 00:33:49,610 +put shapes in it. What do I want to put in these + +495 +00:33:49,610 --> 00:33:51,710 +shapes? The shapes that I have. Who are the shapes + +496 +00:33:51,710 --> 00:33:55,730 +that I have? Circle. I threw it into this package. + +497 +00:33:57,010 --> 00:34:02,930 +And I call it refactor. And I have rectangle. I + +498 +00:34:02,930 --> 00:34:07,410 +also threw it into the shape. And I have solid + +499 +00:34:07,410 --> 00:34:07,850 +circle. + +500 +00:34:12,350 --> 00:34:16,430 +Are you guys with me? Or you are bored? Are you + +501 +00:34:16,430 --> 00:34:19,310 +bored or you are bored from a long time? Yes? Ok. + +502 +00:34:21,170 --> 00:34:24,370 +Do you see these shapes? I put them in one column. + +503 +00:34:25,390 --> 00:34:27,930 +Why did I do that? Because I put the name of the + +504 +00:34:27,930 --> 00:34:33,150 +shape here. Ok? I remove the word circle. I put + +505 +00:34:33,150 --> 00:34:38,050 +them in a package called factory.shapes. And I + +506 +00:34:38,050 --> 00:34:38,610 +connect with it. + +507 +00:34:41,820 --> 00:34:45,580 +I removed it from above. When I sent him the name + +508 +00:34:45,580 --> 00:34:49,950 +of the shape, by reading the name of the shape,It + +509 +00:34:49,950 --> 00:34:52,170 +will create an object from it, right or not? So if + +510 +00:34:52,170 --> 00:34:54,630 +you send a circle, it will create an object from + +511 +00:34:54,630 --> 00:34:57,170 +the circle If you send a rectangle, it will create + +512 +00:34:57,170 --> 00:34:59,690 +an object from the rectangle and return it to it + +513 +00:34:59,690 --> 00:35:01,550 +We created the repeater with the view of an order + +514 +00:35:01,550 --> 00:35:03,110 +of magnitude, right? Order of magnitude, exactly + +515 +00:35:03,110 --> 00:35:05,870 +And here, what did you put? The string of the + +516 +00:35:05,870 --> 00:35:09,150 +package, right? Of course, there is still an error + +517 +00:35:09,150 --> 00:35:13,150 +here, why? Because if it does not return null So + +518 +00:35:13,150 --> 00:35:15,750 +it will either return the shape, right? Or return + +519 +00:35:15,750 --> 00:35:19,650 +what? Or return null Because this way we finished + +520 +00:35:19,650 --> 00:35:23,710 +the factory. We want to use it. Before we use it + +521 +00:35:23,710 --> 00:35:29,730 +in GUI, let's try to use it in the test like this, + +522 +00:35:29,850 --> 00:35:33,310 +okay? And if we are doing shape factory, okay? We + +523 +00:35:33,310 --> 00:35:35,930 +want to tell it, shape factory, go and make a + +524 +00:35:35,930 --> 00:35:41,530 +circle for me. Okay? What should I return to it? + +525 +00:35:43,930 --> 00:35:48,110 +But I need to return the circle just to make sure. + +526 +00:35:48,830 --> 00:35:53,130 +Ok? So here I told him to return the circle. And + +527 +00:35:53,130 --> 00:35:56,790 +to make sure, I need to say system.out.println + +528 +00:35:56,790 --> 00:36:05,030 +means that when I say p.radius, it prints 50 for + +529 +00:36:05,030 --> 00:36:07,410 +example. Ok? I will leave these public so that we + +530 +00:36:07,410 --> 00:36:11,650 +can see them without any problems. Yes, make sure + +531 +00:36:11,650 --> 00:36:14,150 +that this is working. This is run and this is + +532 +00:36:14,150 --> 00:36:17,510 +print why? 50. The factory will remain running. + +533 +00:36:18,150 --> 00:36:21,370 +Ok. Did you see where this factory is used? In the + +534 +00:36:21,370 --> 00:36:27,710 +GUI. Ok. Look with me. I came to the GUI. Did you + +535 +00:36:27,710 --> 00:36:29,950 +see what I want to do in the GUI? Did you see the + +536 +00:36:29,950 --> 00:36:32,150 +problem I have here? It wants to create a button + +537 +00:36:32,150 --> 00:36:38,570 +for each shape. Right? And it does action on the + +538 +00:36:38,570 --> 00:36:39,970 +button and it wants to download the factory and + +539 +00:36:39,970 --> 00:36:43,690 +send it the name of the shape.And this needs to be + +540 +00:36:43,690 --> 00:36:45,870 +done for a circle, rectangle or any other shape + +541 +00:36:45,870 --> 00:36:48,510 +you want to make. And the problem is that every + +542 +00:36:48,510 --> 00:36:50,790 +time you add a new shape, this code needs to be + +543 +00:36:50,790 --> 00:36:53,430 +made. Do you see what I want to make? I want to + +544 +00:36:53,430 --> 00:36:57,630 +make a rectangle with shapes. I want to go to this + +545 +00:36:57,630 --> 00:37:02,530 +rectangle and read it to me to see what's inside + +546 +00:37:02,530 --> 00:37:05,810 +there are three shapes here, which are circle, + +547 +00:37:05,930 --> 00:37:08,850 +rectangle and semicircle and I want to tell it to + +548 +00:37:08,850 --> 00:37:12,530 +do what with each file it has to make a button and + +549 +00:37:12,530 --> 00:37:15,210 +action and call the factor and send me the name of + +550 +00:37:15,210 --> 00:37:17,770 +the shape automatic, so if there are three files + +551 +00:37:17,770 --> 00:37:20,450 +it will make three buttons four files will make + +552 +00:37:20,450 --> 00:37:23,470 +how many buttons? four buttons, okay? so what do I + +553 +00:37:23,470 --> 00:37:25,650 +have to do with this gate? I have to go here, pay + +554 +00:37:25,650 --> 00:37:29,950 +attention to me properties What did I take? The + +555 +00:37:29,950 --> 00:37:36,490 +path The path of the project in it Why did I do + +556 +00:37:36,490 --> 00:37:41,490 +that? Because I know the path of the package that + +557 +00:37:41,490 --> 00:37:45,310 +contains the shapes These shapes are not in shapes + +558 +00:37:45,310 --> 00:37:48,910 +Yes, these are their paths Okay, focus with me, + +559 +00:37:48,950 --> 00:37:51,350 +see what I'm going to do Okay, I'm going to say + +560 +00:37:51,350 --> 00:37:59,030 +file shape dir equal to new File, what am I doing + +561 +00:37:59,030 --> 00:38:03,870 +guys? Yes, I brought the file The files that + +562 +00:38:03,870 --> 00:38:12,030 +contain the shapes And then I say to each Now + +563 +00:38:12,030 --> 00:38:15,250 +I want to read what's inside the file To each file + +564 +00:38:15,250 --> 00:38:22,350 +Shape file Existing in shape there dot list files + +565 +00:38:22,350 --> 00:38:27,080 +What am I doing? Loop on The files that are inside + +566 +00:38:27,080 --> 00:38:30,220 +the folder. Okay? And I want to tell him here, + +567 +00:38:30,280 --> 00:38:34,080 +string shape + +568 +00:38:34,080 --> 00:38:37,540 +name. I got it from the file name. I want to get + +569 +00:38:37,540 --> 00:38:42,020 +the shape name. How? Shape file. If I tell him get + +570 +00:38:42,020 --> 00:38:45,960 +name, he will get the file name for you. But the + +571 +00:38:45,960 --> 00:38:49,560 +file name includes the extension. So the file + +572 +00:38:49,560 --> 00:38:52,520 +name, for example, circle.java. Right? Rectangle + +573 +00:38:52,520 --> 00:38:56,520 +.java. I want to remove the word. So what do I + +574 +00:38:56,520 --> 00:39:00,780 +want to tell him? I want to tell him to split to + +575 +00:39:00,780 --> 00:39:06,120 +the dot and take the first one in the array. So I + +576 +00:39:06,120 --> 00:39:13,720 +took the name and made it a point. I got the name + +577 +00:39:13,720 --> 00:39:15,280 +because it's attached to the point. I have the + +578 +00:39:15,280 --> 00:39:18,640 +name and then the extension. So this JLDRA has a + +579 +00:39:18,640 --> 00:39:22,060 +size of 2. You take the first one in it because I + +580 +00:39:22,060 --> 00:39:24,300 +told you that it's minus 2 and 0. That's how I got + +581 +00:39:24,300 --> 00:39:27,520 +the file name. Okay? Let's make sure that I got + +582 +00:39:27,520 --> 00:39:29,220 +it, but before I do anything, what do I want to + +583 +00:39:29,220 --> 00:39:38,240 +do? Yes, shape name. Okay? And I do run. Do you + +584 +00:39:38,240 --> 00:39:40,600 +see what is printed below? These are the shapes. + +585 +00:39:41,540 --> 00:39:48,320 +We are going 100%. Do you see the code of this + +586 +00:39:48,320 --> 00:39:52,240 +button below? We will take it from below with its + +587 +00:39:52,240 --> 00:39:55,460 +action. I only took one button which is the main + +588 +00:39:55,460 --> 00:39:58,820 +of the circle and put it inside the loop. + +589 +00:40:01,670 --> 00:40:05,430 +Ok, pay attention with me. Helget, for each file + +590 +00:40:05,430 --> 00:40:07,730 +he reads in the file, he brought the name of the + +591 +00:40:07,730 --> 00:40:10,450 +file, right? Which is the shape name. Instead of + +592 +00:40:10,450 --> 00:40:13,770 +having the word circle written here, he wants to + +593 +00:40:13,770 --> 00:40:15,810 +say shape name. So here he made the button and put + +594 +00:40:15,810 --> 00:40:18,170 +the name of the shape in it. And this is the + +595 +00:40:18,170 --> 00:40:20,970 +action on it. When I press on it, it wants to go + +596 +00:40:20,970 --> 00:40:24,130 +to the factory and say create shape. But Helget + +597 +00:40:24,130 --> 00:40:25,390 +doesn't want to send him a circle. What does he + +598 +00:40:25,390 --> 00:40:30,170 +want to send him? Yes, the shape name. And I + +599 +00:40:30,170 --> 00:40:32,570 +create the shape and send it to the Draw Manager + +600 +00:40:32,570 --> 00:40:35,570 +to draw it. Of course, this code does not execute + +601 +00:40:35,570 --> 00:40:40,150 +until I press the button. Okay? I have only one + +602 +00:40:40,150 --> 00:40:42,790 +step left, which is to add the button to the face. + +603 +00:40:43,310 --> 00:40:48,290 +I will do this in seconds. + +604 +00:40:51,130 --> 00:40:55,130 +Of course, I will find that there are things that + +605 +00:40:55,130 --> 00:40:55,490 +I need to delete. + +606 +00:40:58,380 --> 00:41:02,260 +Did you find any other buttons? For example, I + +607 +00:41:02,260 --> 00:41:05,880 +made this code for the rectangle, and it doesn't + +608 +00:41:05,880 --> 00:41:10,500 +need a nail nor a solid circle. All these are + +609 +00:41:10,500 --> 00:41:12,820 +theirs, I removed them. Did you find a program + +610 +00:41:12,820 --> 00:41:15,900 +that only has one loop and doesn't need a circle? + +611 +00:41:18,350 --> 00:41:20,910 +For clear and undo, leave them, okay? These are + +612 +00:41:20,910 --> 00:41:24,770 +special cases, okay? But the shapes, they only + +613 +00:41:24,770 --> 00:41:27,350 +have one loop that turns on the shapes and creates + +614 +00:41:27,350 --> 00:41:30,050 +them, okay? The one below this one has clear and + +615 +00:41:30,050 --> 00:41:34,110 +undo, leave them, okay? This gate is just a simple + +616 +00:41:34,110 --> 00:41:38,350 +thing, which is what? Which is where to add the + +617 +00:41:38,350 --> 00:41:43,090 +buttons, so each button has to do I created a + +618 +00:41:43,090 --> 00:41:47,270 +button here and made an action on it and then of + +619 +00:41:47,270 --> 00:41:49,890 +course we don't call it a button, we call it a + +620 +00:41:49,890 --> 00:41:54,210 +button only because it has to make a button for + +621 +00:41:54,210 --> 00:41:58,410 +every shape and then I put this line dot add to + +622 +00:41:58,410 --> 00:42:05,110 +the button so now guys, when the file runs, it + +623 +00:42:05,110 --> 00:42:09,110 +takes the file names of each buttonOkay? And when + +624 +00:42:09,110 --> 00:42:10,690 +I click on it, it sends the name of the shape. + +625 +00:42:11,170 --> 00:42:13,270 +This is the advantage of reflection. Now in the + +626 +00:42:13,270 --> 00:42:16,310 +factory, I don't say new and so on, new and so on. + +627 +00:42:16,390 --> 00:42:18,870 +I just say what? Forename, and I give it the name + +628 +00:42:18,870 --> 00:42:23,830 +of the shape that changes based on what is in the + +629 +00:42:23,830 --> 00:42:29,010 +folder. Okay? Now we're done. Let's run it again. + +630 +00:42:29,090 --> 00:42:32,850 +Now the idea is that this application, GUI, knows + +631 +00:42:32,850 --> 00:42:37,820 +nothing but the interface shape. I don't know + +632 +00:42:37,820 --> 00:42:42,120 +anything about circle and rectangle. I don't even + +633 +00:42:42,120 --> 00:42:49,480 +know anything about circle and rectangle. The + +634 +00:42:49,480 --> 00:42:52,280 +whole program depends on the type of interface. + +635 +00:42:59,300 --> 00:43:03,180 +This is circle, this is rectangle, this is clear + +636 +00:43:03,180 --> 00:43:06,220 +and this is undo. Look where is the trick. You + +637 +00:43:06,220 --> 00:43:09,620 +have to undo in a new shape. Okay? What should I + +638 +00:43:09,620 --> 00:43:12,680 +do? Should I make an arrow and do this? No, look + +639 +00:43:12,680 --> 00:43:15,160 +at me. I went and made a class to draw a triangle. + +640 +00:43:15,940 --> 00:43:19,280 +This class, what did I call it? The triangle. And + +641 +00:43:19,280 --> 00:43:22,340 +of course, I made an implement for shape. And when + +642 +00:43:22,340 --> 00:43:23,820 +I made an implement for shape, it will tell me to + +643 +00:43:23,820 --> 00:43:26,980 +come and define how to draw the triangle. I went + +644 +00:43:26,980 --> 00:43:29,940 +and drew three lines next to each other. Okay? Up + +645 +00:43:29,940 --> 00:43:32,440 +to me. Okay, I want to run this triangle. Take it + +646 +00:43:32,440 --> 00:43:35,200 +and put it somewhere. Throw it inside the form + +647 +00:43:35,200 --> 00:43:41,210 +folder. He will make a loop on this sheet of paper + +648 +00:43:41,210 --> 00:43:45,350 +And each one of them has a button And when I press + +649 +00:43:45,350 --> 00:43:48,670 +the button, it sends to the factory the name of + +650 +00:43:48,670 --> 00:43:51,810 +the shape And the factory uses the reflection + +651 +00:43:51,810 --> 00:43:56,990 +based on the name of the object And let's see what + +652 +00:43:56,990 --> 00:43:59,830 +will happen I just took the class and threw it in + +653 +00:43:59,830 --> 00:44:01,990 +the sheet of paper And I run the application + +654 +00:44:05,020 --> 00:44:07,340 +In this way, and you can see that it added to the + +655 +00:44:07,340 --> 00:44:07,760 +triangle. + +656 +00:44:11,480 --> 00:44:15,020 +And it is clear, and it is undone. And if it is + +657 +00:44:15,020 --> 00:44:19,280 +removed in any way, remove the rectangle. Remove + +658 +00:44:19,280 --> 00:44:25,060 +it from the slide. And it is done. And it removed + +659 +00:44:25,060 --> 00:44:29,590 +the button. There is no button on the gate. So + +660 +00:44:29,590 --> 00:44:33,550 +it's like we made something like a plugin. You + +661 +00:44:33,550 --> 00:44:37,150 +just need to go outside, log into the program and + +662 +00:44:37,150 --> 00:44:38,950 +it will work by itself without changing anything + +663 +00:44:38,950 --> 00:44:45,310 +in the code. And this is the new design of the + +664 +00:44:45,310 --> 00:44:48,630 +factory using the reflection mechanism. + +665 +00:44:56,890 --> 00:44:59,330 +Now, let's finish the topic of the factory. + +666 +00:45:02,390 --> 00:45:07,770 +You can use the reflection mechanism in Java and + +667 +00:45:07,770 --> 00:45:11,190 +.NET and use it in this way. This is the new + +668 +00:45:11,190 --> 00:45:15,370 +design of the factory. What is it? Return. + +669 +00:45:18,260 --> 00:45:20,580 +I made a casting because this class is dot for + +670 +00:45:20,580 --> 00:45:24,560 +name I put the name of the path of the class here + +671 +00:45:24,560 --> 00:45:27,620 +dot new instance as I did and in the end I made a + +672 +00:45:27,620 --> 00:45:30,580 +casting because the idea is that this name changes + +673 +00:45:30,580 --> 00:45:34,240 +during the runtime you can let the user log in and + +674 +00:45:34,240 --> 00:45:37,220 +read from the file based on the name that changes, + +675 +00:45:37,840 --> 00:45:40,120 +the object will change but before there was a new + +676 +00:45:40,120 --> 00:45:44,160 +name that you can't change here it changes during + +677 +00:45:44,160 --> 00:45:45,240 +the runtime + +678 +00:45:49,030 --> 00:45:53,310 +We usually try to show where this design pattern + +679 +00:45:53,310 --> 00:45:57,930 +is used in programming languages libraries. For + +680 +00:45:57,930 --> 00:46:00,770 +example, in Java, I have something called + +681 +00:46:00,770 --> 00:46:04,930 +BorderFactory, a class. If you type in the word + +682 +00:46:04,930 --> 00:46:08,610 +BorderFactory. it will give you a create method.In + +683 +00:46:08,610 --> 00:46:12,110 +order to create borders, which are used for GUI. + +684 +00:46:12,430 --> 00:46:15,070 +Border is a frame. For example, there is a colored + +685 +00:46:15,070 --> 00:46:19,250 +frame, a dotted frame, and so on. So, he creates + +686 +00:46:19,250 --> 00:46:21,410 +many types of frames. So, he goes to you and tells + +687 +00:46:21,410 --> 00:46:23,610 +you that he made a factory for you. You write his + +688 +00:46:23,610 --> 00:46:26,270 +name and tell him to create a border. You specify + +689 +00:46:26,270 --> 00:46:28,970 +the type of border you want and he will create it + +690 +00:46:28,970 --> 00:46:34,990 +for you. Okay? Now we come to assignment. + +691 +00:46:35,970 --> 00:46:36,450 +Okay? + +692 +00:46:39,540 --> 00:46:42,480 +Now, the required assignment is as follows. Have + +693 +00:46:42,480 --> 00:46:45,880 +you noticed that there are programs that have + +694 +00:46:45,880 --> 00:46:55,140 +tabs? A screen, a web page, a mobile app, a + +695 +00:46:55,140 --> 00:46:59,640 +desktop app that has tabs. Each tab has a + +696 +00:46:59,640 --> 00:47:02,860 +different screen. Am I right? You will find that I + +697 +00:47:02,860 --> 00:47:06,920 +ask you to create a program The main screen of + +698 +00:47:06,920 --> 00:47:10,480 +this program has tabs Each tab has a content + +699 +00:47:10,480 --> 00:47:13,380 +Sometimes when you click on a tab, you will find a + +700 +00:47:13,380 --> 00:47:16,020 +sample The second tab has pictures The third tab + +701 +00:47:16,020 --> 00:47:20,180 +has instructions So we want this program to be + +702 +00:47:20,180 --> 00:47:23,860 +extendable So that you can add a new tab All you + +703 +00:47:23,860 --> 00:47:26,740 +have to do is create a new class And put the + +704 +00:47:26,740 --> 00:47:29,200 +design of the tab in it And throw it in the folder + +705 +00:47:30,250 --> 00:47:33,070 +and run the application, you will see the tab + +706 +00:47:33,070 --> 00:47:37,710 +appear with them. If you want to delete a tab, + +707 +00:47:38,210 --> 00:47:46,490 +remove its shape. Okay? Do it on Java, on Marvel, + +708 +00:47:46,750 --> 00:47:50,390 +on Android, on web, whatever you want. Okay? The + +709 +00:47:50,390 --> 00:47:52,910 +important thing is to apply the idea of what? The + +710 +00:47:52,910 --> 00:47:59,130 +factor. Okay? Try it. Try it.This material makes + +711 +00:47:59,130 --> 00:48:01,290 +you think in programming in a different way. + +712 +00:48:01,750 --> 00:48:06,010 +Instead of being a code monkey, using the Android + +713 +00:48:06,010 --> 00:48:07,770 +libraries and not knowing how the libraries + +714 +00:48:07,770 --> 00:48:11,350 +worked. I'm going to make you think in the way you + +715 +00:48:11,350 --> 00:48:16,090 +use this library. In any programming language that + +716 +00:48:16,090 --> 00:48:17,790 +I explained in a book, in any programming + +717 +00:48:17,790 --> 00:48:19,470 +language, right or wrong. All programming + +718 +00:48:19,470 --> 00:48:21,730 +languages have class, object, static, and so on. + +719 +00:48:22,870 --> 00:48:25,550 +Okay? Write it in any way. We want to make a + +720 +00:48:25,550 --> 00:48:28,190 +program like this. Make it a mobile phone, web, + +721 +00:48:28,270 --> 00:48:30,670 +whatever you want. Okay? God bless you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/HXgVedF6K5I.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/HXgVedF6K5I.srt new file mode 100644 index 0000000000000000000000000000000000000000..c4fe82f5ed1f4b6087214d4a03e9c8686802f07c --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/HXgVedF6K5I.srt @@ -0,0 +1,2734 @@ + +1 +00:00:05,110 --> 00:00:08,970 +Ok guys, peace be upon you. At the end of the last + +2 +00:00:08,970 --> 00:00:11,470 +lecture, we presented a topic called Dependency + +3 +00:00:11,470 --> 00:00:16,250 +Injection. And we said that it is normal in + +4 +00:00:16,250 --> 00:00:18,310 +programming that there are classes and that there + +5 +00:00:18,310 --> 00:00:20,470 +is a dependency between the classes. That means + +6 +00:00:20,470 --> 00:00:23,030 +that a class might need to use an object from + +7 +00:00:23,030 --> 00:00:25,970 +another class in order to call certain methods in + +8 +00:00:25,970 --> 00:00:30,170 +it. I'm dealing with a class related to the user + +9 +00:00:30,170 --> 00:00:32,230 +interface. Of course in the user interface I need + +10 +00:00:32,230 --> 00:00:33,990 +to make a connection to the database to create a + +11 +00:00:33,990 --> 00:00:35,410 +query on the data and display it in the user + +12 +00:00:35,410 --> 00:00:38,330 +interface. The work of the database can all be + +13 +00:00:38,330 --> 00:00:40,770 +present in another class or module. I need to + +14 +00:00:40,770 --> 00:00:42,650 +create an object from this class to get the + +15 +00:00:42,650 --> 00:00:47,310 +methods present in it. So when I have an object + +16 +00:00:47,310 --> 00:00:51,190 +that needs to create an object from another class + +17 +00:00:51,190 --> 00:00:56,410 +to use it. This tells us that there is a dependency + +18 +00:00:56,410 --> 00:01:00,010 +here. An object depends on another object. And + +19 +00:01:00,010 --> 00:01:02,170 +this is a relationship of association in the end, + +20 +00:01:02,730 --> 00:01:08,570 +as a UML. And we say that the dependency that the + +21 +00:01:08,570 --> 00:01:13,130 +object needs can be done in two ways. The first + +22 +00:01:13,130 --> 00:01:16,350 +way is to create the dependency inside the object + +23 +00:01:16,350 --> 00:01:19,070 +itself. And we said in a previous lecture that I + +24 +00:01:19,070 --> 00:01:24,290 +have an object from class A will need an object + +25 +00:01:24,290 --> 00:01:27,950 +from class B because this relationship I represent + +26 +00:01:27,950 --> 00:01:32,730 +that I can make a class A and inside it I make a + +27 +00:01:32,730 --> 00:01:40,090 +constructor public A and inside the constructor I + +28 +00:01:40,090 --> 00:01:43,450 +say this dot B is equal to U + +29 +00:01:47,390 --> 00:01:51,750 +B means that this A needs an object of type B. + +30 +00:01:52,310 --> 00:01:54,390 +This B is what I created inside the constructor of + +31 +00:01:54,390 --> 00:01:59,050 +A. Where is the dependency in this case? B is the + +32 +00:01:59,050 --> 00:02:03,010 +dependency that I created inside A. Because this + +33 +00:02:03,010 --> 00:02:04,790 +way has advantages and disadvantages. The first + +34 +00:02:04,790 --> 00:02:08,210 +advantage is that it hides the details. I don't + +35 +00:02:08,210 --> 00:02:11,950 +know what A needs. I create an object from A and + +36 +00:02:11,950 --> 00:02:17,250 +use it.But on the other hand, there is a + +37 +00:02:17,250 --> 00:02:19,810 +negativity that I linked A to B throughout my + +38 +00:02:19,810 --> 00:02:21,730 +life, which means that I have to change this + +39 +00:02:21,730 --> 00:02:25,230 +dimension. I have to modify it, but I will not be + +40 +00:02:25,230 --> 00:02:29,790 +able to modify it in this way. And this is what we + +41 +00:02:29,790 --> 00:02:35,350 +call a composition relationship. The other way is + +42 +00:02:35,350 --> 00:02:40,950 +that I made a class A and it will also need an + +43 +00:02:40,950 --> 00:02:44,480 +object of type Band I tell him that I'm public A + +44 +00:02:44,480 --> 00:02:49,340 +and I pass the object B from outside to him so + +45 +00:02:49,340 --> 00:02:52,960 +that I can tell him that this dot B is equal to B + +46 +00:02:52,960 --> 00:02:58,420 +this is also a kind of association, aggregation, + +47 +00:02:58,480 --> 00:03:02,340 +we passed the dependency from outside because this + +48 +00:03:02,340 --> 00:03:04,000 +is the most difficult way to create an object + +49 +00:03:04,000 --> 00:03:07,360 +because in order to create A I have to bring B and + +50 +00:03:07,360 --> 00:03:12,450 +then create A and pass B to him. As a programmer, I + +51 +00:03:12,450 --> 00:03:14,990 +also know who depends on whom, but if another + +52 +00:03:14,990 --> 00:03:17,750 +person follows me and completes the code, he won't + +53 +00:03:17,750 --> 00:03:22,110 +know what depends on whom. But on the other hand, + +54 +00:03:22,950 --> 00:03:26,790 +I can change this dependency. It accepts anything + +55 +00:03:26,790 --> 00:03:30,890 +that is B, right or wrong. So if I brought B and + +56 +00:03:30,890 --> 00:03:35,190 +made it extend, and changed the override for the + +57 +00:03:35,190 --> 00:03:41,970 +methods in it, I changed the behavior of it. and + +58 +00:03:41,970 --> 00:03:44,510 +at the same time I can create a and pass it a + +59 +00:03:44,510 --> 00:03:46,830 +condition object from B it will accept it because + +60 +00:03:46,830 --> 00:03:52,130 +it accepts anything from type B and this thing is + +61 +00:03:52,130 --> 00:03:56,430 +important as we will see in a while in the process + +62 +00:03:56,430 --> 00:04:00,530 +of testing in testing they have to change a lot in + +63 +00:04:00,530 --> 00:04:03,090 +the functionality of the classes as we will see + +64 +00:04:03,090 --> 00:04:07,490 +why in a while so this way this is what we call + +65 +00:04:07,490 --> 00:04:12,590 +dependencyInjection, or DI, which means that the + +66 +00:04:12,590 --> 00:04:16,270 +dependency is justified from outside, not inside + +67 +00:04:16,270 --> 00:04:19,650 +the object. Because all software developers advise + +68 +00:04:19,650 --> 00:04:22,250 +us to always work this way, although the + +69 +00:04:22,250 --> 00:04:23,810 +construction of the object becomes more difficult, + +70 +00:04:24,570 --> 00:04:30,340 +but the flexibility of the code becomes more.Let's + +71 +00:04:30,340 --> 00:04:32,980 +quickly go through what's written on the slide. + +72 +00:04:32,980 --> 00:04:36,080 +Dependency Injection is the concept in which + +73 +00:04:36,080 --> 00:04:39,600 +objects get other required objects from outside. + +74 +00:04:39,600 --> 00:04:45,020 +The object gets the objects it needs from outside, + +75 +00:04:45,300 --> 00:04:49,680 +not inside the object itself. Like this example DI + +76 +00:04:49,680 --> 00:04:54,340 +can be implemented in any programming language. The + +77 +00:04:54,340 --> 00:04:57,300 +general concept behind dependency injection is + +78 +00:04:57,300 --> 00:05:01,130 +called inversion of control.The basic principle of + +79 +00:05:01,130 --> 00:05:04,890 +Dependency Injection is something they call it in + +80 +00:05:04,890 --> 00:05:07,610 +programming as well or in OOP, it's an important + +81 +00:05:07,610 --> 00:05:09,590 +concept called Inversion of Control. What does + +82 +00:05:09,590 --> 00:05:15,930 +Inversion mean? It means to reverse. Invert means + +83 +00:05:15,930 --> 00:05:19,550 +to reverse. They don't say inverter. Invert means + +84 +00:05:19,550 --> 00:05:23,010 +to reverse. Inversion of Control means to control. + +85 +00:05:23,550 --> 00:05:25,630 +What does it mean? It's like saying to someone, + +86 +00:05:26,110 --> 00:05:29,340 +instead of talking to us, we will talk to you. Now + +87 +00:05:29,340 --> 00:05:31,720 +A instead of needing to create its own dependency, + +88 +00:05:32,760 --> 00:05:35,820 +we say stop, we create the dependency and pass it + +89 +00:05:35,820 --> 00:05:38,800 +to KIA. The opposite of controlling. Instead of A + +90 +00:05:38,800 --> 00:05:42,660 +controlling its own dependencies, we control the + +91 +00:05:42,660 --> 00:05:48,820 +dependencies and pass them to A. It is more + +92 +00:05:48,820 --> 00:05:51,260 +difficult for us to create A, but in the + +93 +00:05:51,260 --> 00:05:54,360 +flexibility of the code it becomes better because + +94 +00:05:54,360 --> 00:05:58,900 +I can change the functionality of the dependency. A + +95 +00:05:58,900 --> 00:06:01,680 +Java class has a dependency on another class if it + +96 +00:06:01,680 --> 00:06:05,440 +uses instance of this class. نفس الكلام إنه أي + +97 +00:06:05,440 --> 00:06:10,620 +object في ال Java بنقول إنه إله dependency على + +98 +00:06:10,620 --> 00:06:14,000 +class أخرى إذا كان بحتاج ينشي object من هذا ال + +99 +00:06:14,000 --> 00:06:18,560 +class. We call this a class dependency. مثال بقول زي + +100 +00:06:18,560 --> 00:06:23,860 +مثلا أنا بتعامل مع class بتستخدم لغر تمام بنشي + +101 +00:06:23,860 --> 00:06:26,100 +object من لغر من جوا ال class فهذا dependency + +102 +00:06:26,100 --> 00:06:26,860 +تعتبر + +103 +00:06:30,870 --> 00:06:35,390 +Okay, ideally Java classes or classes in any OOP + +104 +00:06:35,390 --> 00:06:37,950 +programming language should be as independent as + +105 +00:06:37,950 --> 00:06:40,310 +possible. What does this mean? Independent as much + +106 +00:06:40,310 --> 00:06:42,470 +as possible. We want to cancel relations as much + +107 +00:06:42,470 --> 00:06:46,910 +as possible or reduce them between classes. + +108 +00:06:46,910 --> 00:06:53,590 +Dependency is big, it means that I can't take this + +109 +00:06:53,590 --> 00:06:55,790 +class and use it alone, right? Or I become + +110 +00:06:55,790 --> 00:07:00,870 +dependent on other classes. This increases the + +111 +00:07:00,870 --> 00:07:03,010 +possibility of reusing these classes, meaning the + +112 +00:07:03,010 --> 00:07:05,890 +benefit of reducing dependencies as much as + +113 +00:07:05,890 --> 00:07:08,590 +possible or making classes as independent as + +114 +00:07:08,590 --> 00:07:10,870 +possible. Of course you can't depend on + +115 +00:07:10,870 --> 00:07:12,970 +dependencies at all, of course there must be a + +116 +00:07:12,970 --> 00:07:15,330 +class that needs an object from another class, but + +117 +00:07:15,330 --> 00:07:18,350 +we reduce dependencies. Dependencies means a big + +118 +00:07:18,350 --> 00:07:23,040 +coupling, right? Our goal is to reduce coupling. If + +119 +00:07:23,040 --> 00:07:25,780 +you reduce the coupling, you can reuse it. What is + +120 +00:07:25,780 --> 00:07:29,160 +reuse? It is a habit of use. This class does not + +121 +00:07:29,160 --> 00:07:32,480 +depend on other things, so I can use it in another + +122 +00:07:32,480 --> 00:07:34,340 +application. It is also important in the process + +123 +00:07:34,340 --> 00:07:37,040 +of testing and to be able to test them + +124 +00:07:37,040 --> 00:07:39,940 +independently from other classes. We will see the + +125 +00:07:39,940 --> 00:07:44,800 +subject of testing later. If the Java class + +126 +00:07:44,800 --> 00:07:47,300 +creates an instance of another class via the new + +127 +00:07:47,300 --> 00:07:49,700 +operator, it cannot be used and tested + +128 +00:07:49,700 --> 00:07:55,290 +independently. So if I used this method, that class + +129 +00:07:55,290 --> 00:07:59,230 +A creates dependency by using a new operator, it + +130 +00:07:59,230 --> 00:08:02,470 +means that I linked it to this class for a certain + +131 +00:08:02,470 --> 00:08:08,730 +lifetime. So you can't do a test for A or use A + +132 +00:08:08,730 --> 00:08:13,510 +without B. Of course, this is what we call hard + +133 +00:08:13,510 --> 00:08:14,130 +dependency + +134 +00:08:20,460 --> 00:08:23,780 +We said that the good dependency is not the strong + +135 +00:08:23,780 --> 00:08:27,660 +one, it's the weak one in programming. This is an + +136 +00:08:27,660 --> 00:08:33,560 +example of the soft dependency, which is the + +137 +00:08:33,560 --> 00:08:36,300 +desired one, which is dependency injection. For + +138 +00:08:36,300 --> 00:08:39,260 +example, here I have my class, and one of the + +139 +00:08:39,260 --> 00:08:42,420 +dependencies is the logger, which I created here, + +140 +00:08:42,500 --> 00:08:45,480 +and I passed it through the constructor. + +141 +00:08:48,620 --> 00:08:54,040 +Okay, the problem is that we always use the + +142 +00:08:54,040 --> 00:08:56,200 +concept of Dependency Injection. I have two classes + +143 +00:08:56,200 --> 00:08:59,220 +that depend on each other, okay? Don't go inside + +144 +00:08:59,220 --> 00:09:02,940 +the constructor, go outside and pass it to him, + +145 +00:09:03,240 --> 00:09:06,380 +okay? So when you code, always try to code in this + +146 +00:09:06,380 --> 00:09:11,120 +way. But this way of coding will cause you problems + +147 +00:09:11,120 --> 00:09:13,120 +and difficulties. Why? Let me give you the + +148 +00:09:13,120 --> 00:09:13,440 +following example. + +149 +00:09:23,420 --> 00:09:25,520 +Let's take the mobile application as an example. + +150 +00:09:25,620 --> 00:09:28,460 +The mobile application has a UI, a user interface, + +151 +00:09:28,540 --> 00:09:34,260 +a specific screen. This screen has something we + +152 +00:09:34,260 --> 00:09:39,380 +call the view model, which is like a tool that + +153 +00:09:39,380 --> 00:09:42,180 +needs to get from the backend and put somewhere in + +154 +00:09:42,180 --> 00:09:45,880 +the user interface. This ViewModel depends on + +155 +00:09:45,880 --> 00:09:50,740 +another class called Repository that collects data + +156 +00:09:50,740 --> 00:09:55,600 +from the API or database. This Repository uses two + +157 +00:09:55,600 --> 00:10:02,280 +classes or depends on two classes. This class is + +158 +00:10:02,280 --> 00:10:06,480 +related to the API and this class is related to + +159 +00:10:06,480 --> 00:10:11,820 +the database because the API also uses + +160 +00:10:11,820 --> 00:10:16,500 +dependencies. it needs a connector, it needs a + +161 +00:10:16,500 --> 00:10:19,720 +library related to NLP to get things it needs a + +162 +00:10:19,720 --> 00:10:22,960 +library related to JSON and analyzing data as JSON + +163 +00:10:22,960 --> 00:10:27,480 +to make a request. database + +164 +00:10:27,480 --> 00:10:30,820 +also might need a connector for database DB + +165 +00:10:30,820 --> 00:10:34,240 +connector. + +166 +00:10:34,240 --> 00:10:39,830 +and this might need another library because this is + +167 +00:10:39,830 --> 00:10:42,050 +what happens in reality that there is something + +168 +00:10:42,050 --> 00:10:43,810 +that depends on something and this thing depends + +169 +00:10:43,810 --> 00:10:47,630 +on something else because in the end we want to + +170 +00:10:47,630 --> 00:10:50,030 +extract an object from this. how do we extract an + +171 +00:10:50,030 --> 00:10:53,890 +object from this? you have to force it. If for + +172 +00:10:53,890 --> 00:11:02,510 +example we call this A, B, C, D, E, F, G, H, I, J + +173 +00:11:02,510 --> 00:11:05,630 +what do you have to force? you have to extract an + +174 +00:11:05,630 --> 00:11:08,070 +object from whom? from F for example + +175 +00:11:11,890 --> 00:11:18,070 +After you make G and H, after you make these three + +176 +00:11:19,340 --> 00:11:21,100 +you go and make D and pass it through the + +177 +00:11:21,100 --> 00:11:25,120 +constructor or method of whoever created it. And + +178 +00:11:25,120 --> 00:11:27,580 +it's the same thing, you have to make this I and + +179 +00:11:27,580 --> 00:11:30,100 +create what? Before you create the I, you have to + +180 +00:11:30,100 --> 00:11:33,180 +create the J and then create the I and then create + +181 +00:11:33,180 --> 00:11:36,180 +the E. And after you get this D and E, you create + +182 +00:11:36,180 --> 00:11:39,380 +the C and then .. So, in order to create this, you + +183 +00:11:39,380 --> 00:11:43,420 +need 10 lines or 11 lines in order to create one + +184 +00:11:43,420 --> 00:11:46,480 +object from whom? From this. Well, it's not + +185 +00:11:46,480 --> 00:11:48,140 +necessary that sometimes there is another screen + +186 +00:11:49,340 --> 00:11:53,280 +third screen, ok? And these screens also depend on + +187 +00:11:53,280 --> 00:11:55,740 +the same domain, dependencies. Also, in order to + +188 +00:11:55,740 --> 00:11:58,380 +create this second screen, you need to do what? + +189 +00:11:58,680 --> 00:12:02,140 +The whole series of these. This is the negativity + +190 +00:12:02,140 --> 00:12:06,520 +of dependency injection, ok? That the construction + +191 +00:12:06,520 --> 00:12:09,940 +of objects became more difficult. If we did not + +192 +00:12:09,940 --> 00:12:11,940 +use dependency injection, everything inside + +223 +00:14:00,880 --> 00:14:04,120 +Errors may have many components in the application + +224 +00:14:04,120 --> 00:14:06,860 +Errors may come from the API. Errors may come from + +225 +00:14:06,860 --> 00:14:09,460 +the database. Right or wrong? Errors may come from + +226 +00:14:09,460 --> 00:14:12,860 +here. Errors may come from the UI itself. So why + +227 +00:14:12,860 --> 00:14:15,640 +should he make a tester? He wants to try one by + +228 +00:14:15,640 --> 00:14:19,620 +one. So he says, let me first try the user + +229 +00:14:19,620 --> 00:14:24,000 +interface. But he wants to check who? The other + +230 +00:14:24,000 --> 00:14:28,740 +parties. He can't simply remove these. Can he run the + +231 +00:14:28,740 --> 00:14:31,640 +user interface without knowing anything about the + +232 +00:14:31,640 --> 00:14:33,920 +code? Right or wrong? Does he want to go inside + +233 +00:14:33,920 --> 00:14:35,800 +the code and see where I created the object and + +234 +00:14:35,800 --> 00:14:42,940 +delete it? No. What exactly does he do? This is + +235 +00:14:42,940 --> 00:14:46,300 +the + +236 +00:14:46,300 --> 00:14:50,160 +code that comes from the database, and this of + +237 +00:14:50,160 --> 00:14:52,560 +course needs other libraries, but for example, here + +238 +00:14:52,560 --> 00:14:56,060 +it can be in this imagine that this program has + +239 +00:14:56,060 --> 00:14:58,860 +nothing to do with the news. There is a method here + +240 +00:14:58,860 --> 00:15:03,180 +get news. This is an array that brings the news + +241 +00:15:03,180 --> 00:15:06,780 +from where? From the database, and another array + +242 +00:15:06,780 --> 00:15:12,040 +this is for example, I will call it get all news + +243 +00:15:12,040 --> 00:15:18,340 +and I have an array called get news details, and I + +244 +00:15:18,340 --> 00:15:22,180 +give him the ID of the news and there is for + +245 +00:15:22,180 --> 00:15:26,880 +example add news. I send him an object of the type + +246 +00:15:26,880 --> 00:15:29,340 +news to add it to the database, and there is delete + +247 +00:15:29,340 --> 00:15:34,950 +news. These are operations on the database. These + +248 +00:15:34,950 --> 00:15:38,850 +methods are located here. These methods are called + +249 +00:15:38,850 --> 00:15:43,970 +by this class. And these methods are called by the + +250 +00:15:43,970 --> 00:15:47,250 +view model. And the view model is called by the + +251 +00:15:47,250 --> 00:15:49,630 +UI. For example, when you open the program and + +252 +00:15:49,630 --> 00:15:52,610 +show the news, it will ask you to get the news. It + +253 +00:15:52,610 --> 00:15:53,770 +will ask you to get it from here. And it will ask + +254 +00:15:53,770 --> 00:15:54,790 +you to get it from here. And it will ask you to + +255 +00:15:54,790 --> 00:15:56,690 +get it from here. And it will ask you to get it + +256 +00:15:56,690 --> 00:15:58,170 +from the database. And it will continue its work. + +257 +00:15:58,730 --> 00:16:01,970 +Okay, now I said I want to try the user interface + +258 +00:16:01,970 --> 00:16:04,850 +without this database. Okay, so what does the + +259 +00:16:04,850 --> 00:16:07,330 +programmer who does the tester say? He says, okay, + +260 +00:16:07,390 --> 00:16:10,390 +I don't want to see anything in this database. I go + +261 +00:16:10,390 --> 00:16:17,030 +and make a class. Extend Mean to the database, I call + +262 +00:16:17,030 --> 00:16:23,250 +it, for example, mockdb. What is the word mock? + +263 +00:16:23,990 --> 00:16:30,210 +Like fake, something similar, okay? It uses the + +264 +00:16:30,210 --> 00:16:35,610 +same methods, but it overrides them. What does it + +265 +00:16:35,610 --> 00:16:38,790 +mean to override? It rewrites them. For example, + +266 +00:16:38,790 --> 00:16:42,710 +getAllNews will have getAllNews, getNewsDetails + +267 +00:16:42,710 --> 00:16:45,870 +will have addNews, and deleteNews. But what does it + +268 +00:16:45,870 --> 00:16:50,520 +do? It creates a database and returns data. It's an + +269 +00:16:50,520 --> 00:16:53,140 +illusion. For example, get all the means makes it + +270 +00:16:53,140 --> 00:16:54,940 +return to the array containing all the objects. + +271 +00:16:59,480 --> 00:17:02,820 +To try it. I get the news details. I give it an + +272 +00:17:02,820 --> 00:17:05,780 +id, any id for news, okay? So that it gives me an + +273 +00:17:05,780 --> 00:17:07,160 +example from the array, instead of coming from the + +274 +00:17:07,160 --> 00:17:10,060 +database. Something for the experiment, okay? Yes, + +275 +00:17:10,080 --> 00:17:11,760 +it's the news. There's no condition, I don't want + +276 +00:17:11,760 --> 00:17:13,460 +to try it on the guest who came to the database, + +277 +00:17:13,600 --> 00:17:15,280 +it doesn't matter. I don't care if the database + +278 +00:17:15,280 --> 00:17:18,600 +came. I care about trying the UI, but I don't want + +279 +00:17:18,600 --> 00:17:23,100 +to see an empty UI. I want to see a full UI. Let's + +280 +00:17:23,100 --> 00:17:27,500 +say the news has been added. Let's say it has been + +281 +00:17:27,500 --> 00:17:30,460 +added. Let's see what has been done where in the + +282 +00:17:30,460 --> 00:17:35,560 +UI. How does it work? I put fake things, not real + +283 +00:17:35,560 --> 00:17:38,000 +things. Because I found myself interested in + +284 +00:17:38,000 --> 00:17:46,500 +trying out the UI. I had a DB, and I made a mock DB + +285 +00:17:46,500 --> 00:17:49,580 +out of it. Then I change something. I find that + +286 +00:17:49,580 --> 00:17:52,270 +this is not my dependency to whom? To the + +287 +00:17:52,270 --> 00:17:57,110 +repository. Instead of creating an object from db, + +288 +00:17:57,190 --> 00:18:00,730 +I created an object from mockdb and passed it to + +289 +00:18:00,730 --> 00:18:02,950 +this one. Will it accept it or not? It will accept + +290 +00:18:02,950 --> 00:18:05,890 +it and deal with it just like I had a graph + +291 +00:18:05,890 --> 00:18:10,070 +manager. I used to pass him shape, and I used to + +292 +00:18:10,070 --> 00:18:13,450 +call him draw when I used to pass him circle or + +293 +00:18:13,450 --> 00:18:16,990 +rectangle. He used to accept them all. I passed + +294 +00:18:16,990 --> 00:18:19,870 +this object to him instead of this one, and this is + +295 +00:18:19,870 --> 00:18:21,570 +not only what I do here, but also in the API. + +296 +00:18:22,430 --> 00:18:25,270 +Whenever I want to try an interface that connects + +297 +00:18:25,270 --> 00:18:26,410 +to the server, and tells me that there is no + +298 +00:18:26,410 --> 00:18:30,830 +connection, I also go to this API and create a + +299 +00:18:30,830 --> 00:18:35,430 +class called MockAPI. + +300 +00:18:35,550 --> 00:18:38,030 +And the same methods that I use here instead of + +301 +00:18:38,030 --> 00:18:43,610 +things that are fake. Notice that I do not need to + +302 +00:18:43,610 --> 00:18:47,490 +see the code that is here and here and here. I just + +303 +00:18:47,490 --> 00:18:51,370 +need to do Extend and say Override to the device + +304 +00:18:51,370 --> 00:18:56,190 +and I put a fake code from me instead of + +305 +00:18:56,190 --> 00:18:57,890 +connecting to the server and connecting to the + +306 +00:18:57,890 --> 00:19:00,810 +actual database. It can still be ready, which is + +307 +00:19:00,810 --> 00:19:04,270 +also in projects. One can make a user interface + +308 +00:19:04,270 --> 00:19:07,880 +with the database and the API. It's still not + +309 +00:19:07,880 --> 00:19:10,400 +ready. It has a bug, right or wrong? The problem + +310 +00:19:10,400 --> 00:19:14,040 +of the UI is solved by whom? By the backend. The + +311 +00:19:14,040 --> 00:19:17,420 +backend is always the loser. The UI is always the + +312 +00:19:17,420 --> 00:19:19,080 +winner. Why is this supposed to attract more than + +313 +00:19:19,080 --> 00:19:25,000 +that? Because they still have a lot of work to do. + +314 +00:19:25,040 --> 00:19:29,740 +Okay. So I replaced the real things with mock + +315 +00:19:29,740 --> 00:19:31,300 +things. Did you notice that I'm running the UI? + +316 +00:19:32,220 --> 00:19:34,360 +The UI is working for me, and it's showing me fake + +317 +00:19:34,360 --> 00:19:37,720 +data. This is the work of the tester. What do you + +318 +00:19:37,720 --> 00:19:40,040 +think about his work? Yes, go ahead and work, + +319 +00:19:40,520 --> 00:19:42,980 +work, don't work, send a report, he thinks he + +320 +00:19:42,980 --> 00:19:45,960 +doesn't work. No, the tester works like this, okay? + +321 +00:19:46,120 --> 00:19:48,100 +He goes to see the components and replaces them + +322 +00:19:48,100 --> 00:19:51,540 +with other components, and even the correct design + +323 +00:19:51,540 --> 00:19:54,700 +is not like this either. What does he do? This guy + +324 +00:19:54,700 --> 00:19:57,780 +has an API. He doesn't do a direct class. He does + +325 +00:19:57,780 --> 00:20:02,980 +an API, that is, the correct design. For example, + +326 +00:20:03,120 --> 00:20:07,680 +let's talk about the API to organize the head. Go + +327 +00:20:07,680 --> 00:20:08,920 +back to the programmer that wants to run + +328 +00:20:08,920 --> 00:20:11,280 +correctly. For example, this one wants to depend + +329 +00:20:11,280 --> 00:20:13,020 +on API, and this one wants to depend on database. + +330 +00:20:13,840 --> 00:20:18,540 +Okay? Go and create an API interface. API I. What + +331 +00:20:18,540 --> 00:20:21,140 +is this I? No, it's the interface. Determine what + +332 +00:20:21,140 --> 00:20:24,120 +methods will be here. And also the database + +333 +00:20:24,120 --> 00:20:29,380 +creates a DBI interface. The interface has names + +334 +00:20:29,380 --> 00:20:32,800 +of methods without implementation. Okay? Here, I + +335 +00:20:32,800 --> 00:20:36,860 +put get all news. + +336 +00:20:38,810 --> 00:20:43,650 +Add news, get news details. It determines what + +337 +00:20:43,650 --> 00:20:46,910 +operations need to be done. Where does it define + +338 +00:20:46,910 --> 00:20:49,470 +it? In the interface. Does the git want to connect + +339 +00:20:49,470 --> 00:20:52,930 +with the actual database? Does the git notice that + +340 +00:20:52,930 --> 00:20:56,930 +the repository depends on the type of interface? + +341 +00:20:57,130 --> 00:20:59,030 +Does the git want to connect with the MySQL + +342 +00:20:59,030 --> 00:21:02,710 +database? I go and create a class from this. I + +343 +00:21:02,710 --> 00:21:06,750 +call it, for example, MySQLDB + +344 +00:21:08,180 --> 00:21:10,280 +implement the interface. And we know that as soon + +345 +00:21:10,280 --> 00:21:12,860 +as he implements the interface, he will ask him to + +346 +00:21:12,860 --> 00:21:15,800 +implement for whom? For all these methods. He + +347 +00:21:15,800 --> 00:21:17,780 +wants to put an actual implementation of how he + +348 +00:21:17,780 --> 00:21:19,220 +wants to connect to the database and implement all + +349 +00:21:19,220 --> 00:21:21,700 +these as queries. Did you take the database, or did + +350 +00:21:21,700 --> 00:21:25,120 +I take it? Yes, I took it. Okay, I will go back to + +351 +00:21:25,120 --> 00:21:28,880 +Habib now. See how I made it easier for him. I + +352 +00:21:28,880 --> 00:21:30,460 +will go back to TestStar before when he was doing + +353 +00:21:30,460 --> 00:21:33,750 +Excel for class. He didn't know what to do with the + +354 +00:21:33,750 --> 00:21:36,310 +override, right or not? But he found out that + +355 +00:21:36,310 --> 00:21:39,650 +without knowing anything, if I make this interface + +356 +00:21:39,650 --> 00:21:44,890 +and implement it to MockDB, it will automatically + +357 +00:21:44,890 --> 00:21:47,190 +tell him that I want to make an implement for + +358 +00:21:47,190 --> 00:21:49,270 +this, and this, and this, and this, and this, and + +359 +00:21:49,270 --> 00:21:49,550 +this, and this, and this, and this, and this, and + +360 +00:21:49,550 --> 00:21:49,610 +this, and this, and this, and this, and this, and + +361 +00:21:49,610 --> 00:21:57,230 +this, and this, and this, and this, and this, and + +362 +00:21:57,230 --> 00:21:59,730 +this, and this, and this, and this, and this, and + +363 +00:21:59,730 --> 00:22:03,440 +this, and this, and this, and if I built my system + +364 +00:22:03,440 --> 00:22:05,600 +like this, the tester does the testing without + +365 +00:22:05,600 --> 00:22:08,920 +having to understand the code. He just gets an + +366 +00:22:08,920 --> 00:22:11,500 +idea that the programmer comes and says this is + +367 +00:22:11,500 --> 00:22:14,100 +the structure of the code, and you want this part + +368 +00:22:14,100 --> 00:22:16,360 +of the database, and this part of the API. You want + +369 +00:22:16,360 --> 00:22:21,340 +to try to do both. Is it clear, guys? + +370 +00:22:25,120 --> 00:22:30,780 +Now let's read Mock objects, or they call them + +371 +00:22:30,780 --> 00:22:34,120 +mocks, are objects which behave similar as the + +372 +00:22:34,120 --> 00:22:40,700 +real object. Mocking means to make an object that + +373 +00:22:40,700 --> 00:22:43,880 +behaves exactly like the real object. But the real + +374 +00:22:43,880 --> 00:22:47,180 +object is still not ready. It has a lot of + +375 +00:22:47,180 --> 00:22:49,300 +dependencies. It wants to connect to a database. + +376 +00:22:49,700 --> 00:22:53,660 +It does this for a reason. It acts like a real + +377 +00:22:53,660 --> 00:22:57,440 +object. They are configured to behave in a certain + +378 +00:22:57,440 --> 00:23:02,120 +predefined way. + +379 +00:23:02,740 --> 00:23:06,420 +Mock is an English word, which means to mimic or + +380 +00:23:06,420 --> 00:23:10,480 +imitate. The word mock means mimicking, mimicking + +381 +00:23:10,480 --> 00:23:13,520 +someone + +382 +00:23:13,520 --> 00:23:16,100 +who mimics the truth, but it is not the truth. + +383 +00:23:16,680 --> 00:23:19,760 +They use testers, as I said, to remove the real + +384 +00:23:19,760 --> 00:23:22,100 +component, and replace it with another component to + +385 +00:23:22,100 --> 00:23:26,740 +try a certain part of the application. The + +386 +00:23:26,740 --> 00:23:29,440 +application consists of many parts. What does it + +387 +00:23:29,440 --> 00:23:30,700 +have to do with the database? What does it have to + +388 +00:23:30,700 --> 00:23:32,160 +do with the login? What does it have to do with + +389 +00:23:32,160 --> 00:23:35,040 +the search? Because in order to try a component, I + +390 +00:23:35,040 --> 00:23:38,160 +have to stop the rest of them, to see if this + +391 +00:23:38,160 --> 00:23:40,800 +particular one is working, or not. So, all that's + +392 +00:23:40,800 --> 00:23:43,080 +left is to replace them with what? With mock. + +393 +00:23:44,420 --> 00:23:47,620 +That's why they always say, design based on an + +394 +00:23:47,620 --> 00:23:51,520 +interface. Create an interface, create a class + +395 +00:23:51,520 --> 00:23:54,000 +from it, and use this class. Why? Because when + +396 +00:23:54,000 --> 00:23:57,280 +someone wants to replace this class, he does a + +397 +00:23:57,280 --> 00:24:00,560 +mock based on the interface. Okay? The interface + +398 +00:24:00,560 --> 00:24:02,200 +is not like they told you that this is just a + +399 +00:24:02,200 --> 00:24:03,860 +contract. It's a contract, the method is empty, and + +400 +00:24:03,860 --> 00:24:07,220 +that's it. Okay? No, it has great importance for + +401 +00:24:07,220 --> 00:24:10,240 +the tester. The guide is a guide for the tester. + +402 +00:24:10,660 --> 00:24:15,880 +What are the methods that I want to mock. Okay? + +403 +00:24:17,560 --> 00:24:23,240 +Okay, guys. And this proves that mocking is one of + +404 +00:24:23,240 --> 00:24:25,760 +the applications of dependency injection. I don't + +405 +00:24:25,760 --> 00:24:28,880 +want to destroy the dependency from outside to + +406 +00:24:28,880 --> 00:24:32,380 +control this dependency, to add new features to + +407 +00:24:32,380 --> 00:24:35,680 +it, to replace it with a mock, okay? The program + +408 +00:24:35,680 --> 00:24:38,520 +remains running. But if I run the dependency that + +409 +00:24:38,520 --> 00:24:41,400 +I created inside the UB, how do I change it? + + + +445 +00:26:37,840 --> 00:26:43,220 +They use it to create huge web applications that + +446 +00:26:43,220 --> 00:26:45,880 +support dependency injection. There is another + +447 +00:26:45,880 --> 00:26:51,380 +library called Juice from Google. Juice means what? + +448 +00:26:52,460 --> 00:26:55,080 +It's a juice, but it's in the shape of a J. Google + +449 +00:26:55,080 --> 00:26:57,340 +turns it into a G shape to put its fingerprint. + +450 +00:26:59,540 --> 00:27:03,340 +Android also uses Dependency Injection. There's a + +451 +00:27:03,340 --> 00:27:08,320 +library called Dagger, which created a newer + +452 +00:27:08,320 --> 00:27:12,360 +library called Hilt. Laravel also has something + +453 +00:27:12,360 --> 00:27:16,160 +called Service Container. They use it to do + +454 +00:27:16,160 --> 00:27:18,280 +dependency injection, because it creates trees + +455 +00:27:18,280 --> 00:27:20,680 +automatically without me having to create + +456 +00:27:20,680 --> 00:27:23,500 +dependencies. .NET has something called built-in, + +457 +00:27:23,540 --> 00:27:26,580 +Python has something called dependency injector. + +458 +00:27:26,660 --> 00:27:29,740 +So these are frameworks present in all programming + +459 +00:27:29,740 --> 00:27:30,700 +languages. Because we are going to try one + +460 +00:27:30,700 --> 00:27:34,700 +library. Okay? No, not going to try. Spring is the + +461 +00:27:34,700 --> 00:27:36,680 +most common one. Okay? But we are not going to try + +462 +00:27:36,680 --> 00:27:40,040 +it because this is a huge library. The dependency + +463 +00:27:40,040 --> 00:27:47,230 +injector is a small component of it. So we download + +464 +00:27:47,230 --> 00:27:50,410 +every spring and run it, like someone who buys a + +465 +00:27:50,410 --> 00:27:53,630 +Ferrari to go to the shop next door, not for + +466 +00:27:53,630 --> 00:27:57,850 +profit, okay? So we try a simple library called + +467 +00:27:57,850 --> 00:28:02,680 +Juice, okay? The idea is that you know the + +468 +00:28:02,680 --> 00:28:05,740 +principle of how dependency injection is done. For + +469 +00:28:05,740 --> 00:28:07,940 +example, if you go to another library, of course + +470 +00:28:07,940 --> 00:28:11,380 +the code will be different, but the idea is the + +471 +00:28:11,380 --> 00:28:13,720 +same. If you understand one of them, it is easy + +472 +00:28:13,720 --> 00:28:16,840 +for you to move on to the other. Okay? So this is + +473 +00:28:16,840 --> 00:28:20,420 +how we want to see as an example of how we do + +474 +00:28:20,420 --> 00:28:23,540 +dependency injection, we will use the Juice + +475 +00:28:23,540 --> 00:28:25,500 +library. And the example that we will apply is the + +476 +00:28:25,500 --> 00:28:29,380 +following example. We need something like a tree to + +477 +00:28:29,380 --> 00:28:32,780 +test it. The example I'm going to try is as follows + +478 +00:28:32,780 --> 00:28:36,620 +It's a simple example, but the idea is that I want + +479 +00:28:36,620 --> 00:28:40,840 +an object from a class called Car. Okay? + +480 +00:28:41,840 --> 00:28:45,480 +This Car has two dependencies, which means it + +481 +00:28:45,480 --> 00:28:50,100 +needs objects from two different classes. One + +482 +00:28:50,100 --> 00:28:56,970 +called Engine and one called Wheel. Wheel is عجل and + +483 +00:28:56,970 --> 00:29:02,890 +engine is محرك. Now, the engine has another + +484 +00:29:02,890 --> 00:29:06,090 +dependency, it needs a cylinder, right? The engine + +485 +00:29:06,090 --> 00:29:09,790 +has cylinders, right? And the cylinder has valves, + +486 +00:29:10,170 --> 00:29:12,510 +so it needs a class, for example, called a valve, + +487 +00:29:13,010 --> 00:29:17,690 +which is like a valve. The wheel also needs a + +488 +00:29:17,690 --> 00:29:19,030 +dependency, which is called a tire, + +489 +00:29:22,170 --> 00:29:25,000 +right? Here it is clear, in order to create an + +490 +00:29:25,000 --> 00:29:27,680 +object from the root, what should you do? You + +491 +00:29:27,680 --> 00:29:31,200 +should create an object, this one, then this one, + +492 +00:29:31,320 --> 00:29:34,540 +then this one, then this one, then in the end you + +493 +00:29:34,540 --> 00:29:37,640 +create the root. By using the juice, we will see + +494 +00:29:37,640 --> 00:29:40,520 +how to create the root in one line. And who will + +495 +00:29:40,520 --> 00:29:44,780 +it create for? All these trees. Okay, do you know + +496 +00:29:44,780 --> 00:29:47,980 +what the input and output of our program will be? + +497 +00:29:58,280 --> 00:30:00,700 +Ok guys, first of all, we want to make this tree, + +498 +00:30:01,640 --> 00:30:05,900 +ok? Because classes must be present. So, for + +499 +00:30:05,900 --> 00:30:07,400 +example, I want to start with a class called + +500 +00:30:07,400 --> 00:30:15,120 +Valve, ok? Let the constructor be a no argument + +501 +00:30:15,120 --> 00:30:17,180 +constructor, meaning that its constructor is empty. + +502 +00:30:17,180 --> 00:30:19,640 +But what do I want to do? I want to implement the + +503 +00:30:19,640 --> 00:30:22,720 +method toString, so that when I print it, it + +504 +00:30:22,720 --> 00:30:24,440 +prints something that is understood. I want to say, + +505 +00:30:24,560 --> 00:30:25,840 +print me Valve, for example. + +506 +00:30:31,640 --> 00:30:33,200 +Now, this is the cylinder. + +507 +00:30:37,420 --> 00:30:41,360 +Now, the cylinder has a dependency which is what? + +508 +00:30:42,820 --> 00:30:46,240 +Valve, correct or not? Public cylinder. You see, + +509 +00:30:46,340 --> 00:30:50,700 +we agreed that we will depend on dependency + +510 +00:30:50,700 --> 00:30:52,440 +injection. That is, the valve is fastened from + +511 +00:30:52,440 --> 00:30:55,080 +inside and we pass it from where? From outside, + +512 +00:30:55,540 --> 00:30:56,140 +like this. + +513 +00:30:58,700 --> 00:31:01,600 +Okay? And what is this? I have two strings on the + +514 +00:31:01,600 --> 00:31:03,600 +basis of what I want to print. I want to tell him + +515 +00:31:03,600 --> 00:31:07,880 +to print cylinder + +516 +00:31:07,880 --> 00:31:10,580 +with v. + +517 +00:31:11,780 --> 00:31:14,600 +When he prints the v, it will execute the two + +518 +00:31:14,600 --> 00:31:17,660 +strings. I'm still in classes, guys. I haven't + +519 +00:31:17,660 --> 00:31:19,280 +started working on the example yet. I'm still in + +520 +00:31:19,280 --> 00:31:22,980 +classes. Did you get it? I have the engine. + +521 +00:31:25,930 --> 00:31:31,670 +The engine has dependency which is cylinder C and + +522 +00:31:31,670 --> 00:31:43,810 +this also we pass it from outside and + +523 +00:31:43,810 --> 00:31:48,510 +this gives us two strings which + +524 +00:31:48,510 --> 00:31:53,350 +we return engine with C. + +525 +00:31:58,380 --> 00:32:02,000 +Ok guys, till now we will go to the second + +526 +00:32:02,000 --> 00:32:09,020 +category which is tire. Tire, + +527 +00:32:09,200 --> 00:32:18,060 +I will implement two strings to return the word + +528 +00:32:18,060 --> 00:32:23,200 +tire and + +529 +00:32:23,200 --> 00:32:27,200 +then the last class which is wheel. The wheel has a + +530 +00:32:27,200 --> 00:32:33,160 +dependency that uses a tier inside it. Public wheel + +531 +00:32:33,160 --> 00:32:48,420 +here + +532 +00:32:48,420 --> 00:32:55,500 +wheel with T for + +533 +00:32:55,500 --> 00:32:56,120 +the last thing. + +534 +00:33:03,170 --> 00:33:08,350 +The car has two dependencies. It has engine E and + +535 +00:33:08,350 --> 00:33:14,810 +wheel W and the constructor of the car takes + +536 +00:33:14,810 --> 00:33:19,630 +engine E + +537 +00:33:19,630 --> 00:33:27,030 +with + +538 +00:33:27,030 --> 00:33:31,910 +me guys? and this is two strings. I say return to + +539 +00:33:31,910 --> 00:33:31,950 +me + +540 +00:33:35,550 --> 00:33:45,510 +Car with E and W. It has two dependencies. Car + +541 +00:33:45,510 --> 00:33:49,050 +with E + +542 +00:33:49,050 --> 00:33:51,110 +and W. Ok guys, we have completed the class, we + +543 +00:33:51,110 --> 00:33:53,710 +have made this tree. Ok, now we come to the main + +544 +00:33:53,710 --> 00:33:57,590 +method. Here is the difficulty, I want to create an + +545 +00:33:57,590 --> 00:34:01,300 +object from Car. Yes, you have to know the chain + +546 +00:34:01,300 --> 00:34:03,760 +and understand it. If another programmer comes, he + +547 +00:34:03,760 --> 00:34:07,160 +won't know the whole map. For example, I have to + +548 +00:34:07,160 --> 00:34:10,500 +tell him to go and create a valve. Let's create + +549 +00:34:10,500 --> 00:34:13,940 +one object from the car. This is a valve. And + +550 +00:34:13,940 --> 00:34:16,000 +since you have created the valve, + +551 +00:34:19,660 --> 00:34:24,940 +you can create a cylinder. C equals new cylinder + +552 +00:34:24,940 --> 00:34:30,950 +and I give it the valve. And then engine, the + +553 +00:34:30,950 --> 00:34:33,770 +order is important, right or wrong guys? Engine + +554 +00:34:33,770 --> 00:34:39,050 +and this is C. You can't start the car, there is + +555 +00:34:39,050 --> 00:34:42,650 +still the tire and the wheel. Tire T equals new + +556 +00:34:42,650 --> 00:34:50,650 +tire. Wheel W equals new wheel and this is T. + +557 +00:34:53,530 --> 00:34:58,330 +because the last thing car, car is equal to new car + +558 +00:34:58,330 --> 00:35:03,270 +and this takes E and W and we want to say system + +559 +00:35:03,270 --> 00:35:09,770 +.out.println of car because all this is to make + +560 +00:35:09,770 --> 00:35:11,890 +one object from car. If you want to make another + +561 +00:35:11,890 --> 00:35:15,350 +object from car you have to write all these steps. + +562 +00:35:18,030 --> 00:35:20,590 +We're supposed to do it this way, we applied it in + +563 +00:35:20,590 --> 00:35:23,550 +every dependency we passed through. If we didn't + +564 +00:35:23,550 --> 00:35:25,030 +use dependency injection, it would have been + +565 +00:35:25,030 --> 00:35:26,710 +easier because I could have created these things + +566 +00:35:26,710 --> 00:35:32,130 +inside the class itself. So Hyrule is a car with + +567 +00:35:32,130 --> 00:35:34,450 +engine with cylinder with valve and wheel with + +568 +00:35:34,450 --> 00:35:39,390 +tire. My goal in this gate is to create the car + +569 +00:35:39,390 --> 00:35:43,490 +instead of doing all these steps in a single line. + +570 +00:35:43,490 --> 00:35:46,650 +So we're going to use this gate as the juice + +571 +00:35:46,650 --> 00:35:49,430 +library. The first thing is how to add juice library + +572 +00:35:49,430 --> 00:35:52,990 +to the project. Did you try to add it to an + +573 +00:35:52,990 --> 00:35:57,150 +external library? Yes, I tried to add it. How did + +574 +00:35:57,150 --> 00:36:01,030 +you add it? From where? + +575 +00:36:03,010 --> 00:36:05,930 +What do you do? Tools, Options, + +576 +00:36:08,470 --> 00:36:13,090 +Germs, + +577 +00:36:13,430 --> 00:36:14,130 +and Libraries. + +578 +00:36:17,290 --> 00:36:20,770 +Okay, what do you get? A link or a JAR file or + +579 +00:36:20,770 --> 00:36:25,870 +what? Okay, so you downloaded the library as a JAR + +580 +00:36:25,870 --> 00:36:29,550 +file, right? Yes, and you add it to your project, + +581 +00:36:29,830 --> 00:36:32,930 +okay? Or you can even, in short, from here, see + +582 +00:36:32,930 --> 00:36:36,170 +there is a library folder, okay? You can say add + +583 +00:36:37,280 --> 00:36:41,520 +jar and then you put the path of the file. But I + +584 +00:36:41,520 --> 00:36:44,320 +want to clarify something. Now adding libraries + +585 +00:36:44,320 --> 00:36:46,760 +through a jar file that you download is an old + +586 +00:36:46,760 --> 00:36:50,160 +trend. Why? Because the libraries have grown in + +587 +00:36:50,160 --> 00:36:55,960 +size and the library itself is dependent on it. on + +588 +00:36:55,960 --> 00:36:59,080 +other files. Sometimes the library is not just one + +589 +00:36:59,080 --> 00:37:03,040 +jar, you need 5-6 libraries. That's why big + +590 +00:37:03,040 --> 00:37:07,060 +projects stopped adding libraries. What did they + +591 +00:37:07,060 --> 00:37:10,740 +do? They put libraries on the server, and give you + +592 +00:37:10,740 --> 00:37:13,540 +a link, and tell you to add this link by yourself, + +593 +00:37:14,260 --> 00:37:16,820 +download the library, and download all the things + +594 +00:37:16,820 --> 00:37:19,140 +on which the library is based, and make an + +595 +00:37:19,140 --> 00:37:21,740 +automatic build, and make sure that the library is + +596 +00:37:21,740 --> 00:37:25,460 +doubled for what? For a project. Automatic building + +597 +00:37:25,460 --> 00:37:30,980 +frameworks such as Gradle + +598 +00:37:30,980 --> 00:37:33,880 +for Android users. Gradle can be connected to the + +599 +00:37:33,880 --> 00:37:37,160 +office and added to the Android project or + +600 +00:37:37,160 --> 00:37:41,700 +Flutter. Gradle is used in Android and Flutter. In + +601 +00:37:41,700 --> 00:37:46,050 +Laravel, there is something called Compose. You + +602 +00:37:46,050 --> 00:37:48,290 +give him the name of the library and he downloads + +603 +00:37:48,290 --> 00:37:50,330 +it from there. But this needs to have an internet + +604 +00:37:50,330 --> 00:37:52,890 +connection when you download the library. In + +605 +00:37:52,890 --> 00:37:55,270 +Python, for example, there is the command pip, pip + +606 +00:37:55,270 --> 00:37:58,170 +install. You also give him the library link or its + +607 +00:37:58,170 --> 00:38:01,250 +name and he downloads it and adds it to your + +608 +00:38:01,250 --> 00:38:08,670 +system and identifies the classes in it. Java also + +609 +00:38:08,670 --> 00:38:12,120 +has something called Maven. For the Maven, you + +610 +00:38:12,120 --> 00:38:15,720 +change the link to the office and it downloads it. + +611 +00:38:16,720 --> 00:38:19,280 +Because there is no internet connection here, I'm + +612 +00:38:19,280 --> 00:38:21,820 +not going to try the Maven. You can go and tell + +613 +00:38:21,820 --> 00:38:25,480 +it, for example, new project, you have a choice + +614 +00:38:25,480 --> 00:38:30,180 +here called Maven. Okay, you see it? We always + +615 +00:38:30,180 --> 00:38:34,420 +choose Java. I can choose what? Yes, the Maven. + +616 +00:38:34,880 --> 00:38:37,440 +What is the idea of ​​this Maven? It will, for + +617 +00:38:37,440 --> 00:38:41,810 +example, This is my new project, Maven, and it + +618 +00:38:41,810 --> 00:38:45,890 +brings you an xml file like this, on the basis + +619 +00:38:45,890 --> 00:38:50,370 +that in the xml file I add a link to the library, + +620 +00:38:50,690 --> 00:38:55,410 +and this link, for example, I bring it from the + +621 +00:38:55,410 --> 00:38:57,770 +internet, it says if you want to add this library, + +622 +00:38:58,190 --> 00:39:03,790 +add this code. This link is com.google.inject, I + +623 +00:39:03,790 --> 00:39:08,300 +add this to the xml file, which comes with the new + +624 +00:39:08,300 --> 00:39:12,500 +project I made, which is the pom file, pom.xml. For + +625 +00:39:12,500 --> 00:39:17,500 +example, I do something called dependencies here + +626 +00:39:17,500 --> 00:39:24,160 +Okay, + +627 +00:39:24,260 --> 00:39:27,720 +and I add it like this, I save it, and by itself, + +628 +00:39:27,840 --> 00:39:31,070 +as soon as I save it it will go to the library and + +629 +00:39:31,070 --> 00:39:33,170 +download it from there. But it needs internet + +630 +00:39:33,170 --> 00:39:35,390 +connection, and this is the idea that we do even in + +631 +00:39:35,390 --> 00:39:38,050 +android and flutter and others. The idea is to add + +632 +00:39:38,050 --> 00:39:41,450 +as a jar. This is what? Yes, this is it but + +633 +00:39:41,450 --> 00:39:43,810 +unfortunately, we will not be able to try this way + +634 +00:39:43,810 --> 00:39:47,330 +so that's why I went to get our library as what? + +635 +00:39:47,790 --> 00:39:52,370 +as a jar file. These are the files that I have as a + +636 +00:39:52,370 --> 00:39:57,180 +jar file. Tamam هدول هم طبعا هدول كلهم لازمين لعمل + +637 +00:39:57,180 --> 00:40:03,520 +المكتبه مش jar واحد عندى تسعة لازمين وروح اضفتهم + +667 +00:41:43,160 --> 00:41:45,840 +constructor. Okay, this doesn't need engine and + +668 +00:41:45,840 --> 00:41:48,060 +wheel, go to engine. This is the first time you do + +669 +00:41:48,060 --> 00:41:50,900 +it. This is engine. Where is his constructor? This + +670 +00:41:50,900 --> 00:41:54,180 +is it. What do you do? Inject and import. + +671 +00:41:57,100 --> 00:42:02,740 +The engine needs cylinder. Go to cylinder and say + +672 +00:42:02,740 --> 00:42:03,060 +inject. + +673 +00:42:09,070 --> 00:42:11,950 +It needs a valve, because the valve has a load + +674 +00:42:11,950 --> 00:42:13,430 +from the constructor and that's it, it doesn't add + +675 +00:42:13,430 --> 00:42:17,390 +anything to it. But if we continue, you will find + +676 +00:42:17,390 --> 00:42:20,810 +that the car also needs a wheel. Okay? Turn on the + +677 +00:42:20,810 --> 00:42:24,090 +wheel. This has a constructor. What does it do? + +678 +00:42:29,450 --> 00:42:33,050 +The tire I don't need it because there is no + +679 +00:42:33,050 --> 00:42:36,030 +argument constructor. So everything I did in this + +680 +00:42:36,030 --> 00:42:38,510 +guide, what did I do guys? Above the constructor, + +681 +00:42:38,670 --> 00:42:43,010 +I added the notation that is at inject. How? + +682 +00:42:43,870 --> 00:42:48,990 +Yes exactly, okay? We finished this guide. What do + +683 +00:42:48,990 --> 00:42:51,470 +we need to go to next? Right away. This whole code + +684 +00:42:51,470 --> 00:42:55,710 +is a loss, we got tired of it. Make a comment, + +685 +00:42:56,090 --> 00:42:58,350 +okay? I will say of course there is error because + +686 +00:42:58,350 --> 00:43:02,990 +there is no object car. I will say car, car is + +687 +00:43:02,990 --> 00:43:07,070 +equal to what is the name of the library? juice. I + +688 +00:43:07,070 --> 00:43:09,550 +will say create injector. What does it mean? create + +689 +00:43:09,550 --> 00:43:14,210 +this string and say get instance from what do you + +690 +00:43:14,210 --> 00:43:19,290 +want? from car dot class, okay? + +691 +00:43:20,390 --> 00:43:23,910 +in one line, who did I create? I created the car. + +692 +00:43:25,890 --> 00:43:27,950 +How can we make sure that when I make a run, what + +693 +00:43:27,950 --> 00:43:29,950 +should I do? He should print it for me. He should + +694 +00:43:29,950 --> 00:43:32,750 +create the object. How does he know how to create? + +695 +00:43:33,930 --> 00:43:36,810 +By himself. He doesn't want a car, so he enters + +696 +00:43:36,810 --> 00:43:40,450 +the car. It's not a series. Where is the word + +697 +00:43:40,450 --> 00:43:42,710 +inject? He found it. Yes, he found the car needs + +698 +00:43:42,710 --> 00:43:44,650 +what? Engine and wheels. He said, no, I still + +699 +00:43:44,650 --> 00:43:46,850 +can't start the car. I have to go back and see + +700 +00:43:46,850 --> 00:43:49,370 +what are its needs. The engine. He went to the + +701 +00:43:49,370 --> 00:43:51,850 +engine. He found the engine has inject. The engine + +702 +00:43:51,850 --> 00:43:55,150 +needs what? Cylinder. He went to the cylinder and + +703 +00:43:55,150 --> 00:43:57,950 +found that the cylinder needs a valve. He went to + +704 +00:43:57,950 --> 00:43:59,470 +the valve and didn't need anything. He went to + +705 +00:43:59,470 --> 00:44:03,130 +start the valve and came back to the chain. He + +706 +00:44:03,130 --> 00:44:05,450 +started the cylinder and then went to the engine. + +707 +00:44:05,930 --> 00:44:08,820 +He still found the engine. Yes, that's it. Unchain + +708 +00:44:08,820 --> 00:44:11,860 +the engine and go back to the car. He found the + +709 +00:44:11,860 --> 00:44:13,920 +car with the wheels. See how he does it by + +710 +00:44:13,920 --> 00:44:20,840 +himself. I just went and did one line in + +711 +00:44:20,840 --> 00:44:23,780 +the main method. I told him in this way and he did + +712 +00:44:23,780 --> 00:44:25,920 +the class by himself. + +713 +00:44:30,080 --> 00:44:32,820 +This is the Dependency Injection Framework. The + +714 +00:44:32,820 --> 00:44:37,330 +juice is running like this and the spring. And the + +715 +00:44:37,330 --> 00:44:41,490 +service injector in Laravel. All of this worked in + +716 +00:44:41,490 --> 00:44:43,810 +a way that the code was different, but the idea + +717 +00:44:43,810 --> 00:44:46,570 +was similar. And most of them relied on annotations. + +718 +00:44:46,570 --> 00:44:51,110 +Of course, we are not done yet. Now, we want to see + +719 +00:44:51,110 --> 00:44:53,250 +what will happen if we change some of the things + +720 +00:44:53,250 --> 00:44:55,670 +that we want to change. I will explain this in the + +721 +00:44:55,670 --> 00:44:58,930 +next lecture. We agreed that it is better to + +722 +00:44:58,930 --> 00:45:01,670 +design based on interface. What does this mean? + +723 +00:45:02,050 --> 00:45:04,870 +For example, now I don't want to put a wheel. I + +724 +00:45:04,870 --> 00:45:05,930 +want to make this wheel interface instead of + +725 +00:45:05,930 --> 00:45:06,470 +class. + +726 +00:45:10,490 --> 00:45:12,850 +Now the wheel depends on the wheel and I want to + +727 +00:45:12,850 --> 00:45:15,870 +find methods in the wheel. But since this is an + +728 +00:45:15,870 --> 00:45:18,680 +interface, I can't create an object from it. Why do + +729 +00:45:18,680 --> 00:45:19,040 +I do it? + +730 +00:45:22,080 --> 00:45:25,980 +So that we can make classes + +731 +00:45:25,980 --> 00:45:28,100 +out of it, right or wrong? For example, this one + +732 +00:45:28,100 --> 00:45:32,900 +is called big tire and this one is called small + +733 +00:45:32,900 --> 00:45:42,540 +tire and I can make a MOOCTire, not the idea of + +734 +00:45:42,540 --> 00:45:45,180 +the existence of an interface where I can replace + +735 +00:45:45,180 --> 00:45:47,920 +one object with another. This is the real thing, + +736 +00:45:48,360 --> 00:45:51,500 +for example. Did you find the wheel that will + +737 +00:45:51,500 --> 00:45:55,780 +create an object from whom? From a big tire. If + +738 +00:45:55,780 --> 00:45:59,340 +this becomes an interface, this thing will not + +739 +00:45:59,340 --> 00:46:01,780 +work. Why? Because it will create an object. It + +740 +00:46:01,780 --> 00:46:04,040 +will tell you what you want. Is there this, or + +741 +00:46:04,040 --> 00:46:07,080 +this, or this? I have to define what it creates. + +742 +00:46:09,960 --> 00:46:15,220 +So if I want to make this move, I go to the tier + +743 +00:46:15,220 --> 00:46:19,240 +and make it interface. + +744 +00:46:19,240 --> 00:46:22,440 +And of course I can't put method, so I left it + +745 +00:46:22,440 --> 00:46:26,180 +blank. But I left it interface. And I went to the + +746 +00:46:26,180 --> 00:46:27,720 +main and told it to make run. + +747 +00:46:31,620 --> 00:46:35,600 +No implementation for tire was bound. I don't know + +748 +00:46:35,600 --> 00:46:40,220 +what to do. Can an object be created from an + +749 +00:46:40,220 --> 00:46:43,080 +interface? No. So I want to tell him what to + +750 +00:46:43,080 --> 00:46:45,800 +create. I want to tell him that if the interface + +751 +00:46:45,800 --> 00:46:50,620 +is tire, who will create it? Big tire. If he wants + +752 +00:46:50,620 --> 00:46:53,140 +to replace it, I will tell him to remove the big + +753 +00:46:53,140 --> 00:46:55,980 +tire and replace it with a mock tire. Just like the + +754 +00:46:55,980 --> 00:46:58,600 +idea of having a real database and a mock file to + +755 +00:46:58,600 --> 00:47:01,120 +bring me fake data. So this is one of the things we + +756 +00:47:01,120 --> 00:47:04,420 +will try next time, how to design a base interface + +757 +00:47:04,420 --> 00:47:07,640 +and keep achieving dependency injection, which is + +758 +00:47:07,640 --> 00:47:11,260 +to create it automatically. Also, one of the other + +759 +00:47:11,260 --> 00:47:15,790 +problems. I decided that I have to go to every + +760 +00:47:15,790 --> 00:47:18,890 +constructor and write above it Inject. Suppose I + +761 +00:47:18,890 --> 00:47:23,050 +use an external library, I don't have the code. I + +762 +00:47:23,050 --> 00:47:25,390 +can access it, but I don't have the code to write + +763 +00:47:25,390 --> 00:47:28,370 +the word inject. So how can I use the external + +764 +00:47:28,370 --> 00:47:30,390 +library? And this is the reality, this is what I'm + +765 +00:47:30,390 --> 00:47:33,250 +telling you, experience. When you make a tree like + +766 +00:47:33,250 --> 00:47:37,240 +this. You will gather libraries and use them, right + +767 +00:47:37,240 --> 00:47:40,480 +or wrong? But how? There must be a word injected + +768 +00:47:40,480 --> 00:47:43,300 +on top of the constructor to create this tree. I + +769 +00:47:43,300 --> 00:47:45,240 +don't have the code of the library, how can I + +770 +00:47:45,240 --> 00:47:48,000 +create it? This is also one of the things that we + +771 +00:47:48,000 --> 00:47:50,680 +will see in the next lecture. If the constructor + +772 +00:47:50,680 --> 00:47:53,300 +is not a no-argument, it takes parameters, what + +773 +00:47:53,300 --> 00:47:56,900 +will we do? We will continue in the topic of + +774 +00:47:56,900 --> 00:47:59,460 +Demand-Based Injections and see how to create the + +775 +00:47:59,460 --> 00:48:02,950 +class Car. Even if I have an interface, even if + +776 +00:48:02,950 --> 00:48:05,170 +there are parameters for the constructor, even if + +777 +00:48:05,170 --> 00:48:08,450 +I used an external library. God bless you. diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/HXgVedF6K5I_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/HXgVedF6K5I_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..3e3daf12fc13d6818245a5f9173a5d8a6424a16d --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/HXgVedF6K5I_postprocess.srt @@ -0,0 +1,3108 @@ +1 +00:00:05,110 --> 00:00:08,970 +Ok guys, peace be upon you At the end of the last + +2 +00:00:08,970 --> 00:00:11,470 +lecture, we presented a topic called Dependency + +3 +00:00:11,470 --> 00:00:16,250 +Injection And we said that it is normal in + +4 +00:00:16,250 --> 00:00:18,310 +programming that there are classes and that there + +5 +00:00:18,310 --> 00:00:20,470 +is a dependency between the classes That means + +6 +00:00:20,470 --> 00:00:23,030 +that a class might need to use an object from + +7 +00:00:23,030 --> 00:00:25,970 +another class in order to call certain methods in + +8 +00:00:25,970 --> 00:00:30,170 +it I'm dealing with a class related to the user + +9 +00:00:30,170 --> 00:00:32,230 +interface Of course in the user interface I need + +10 +00:00:32,230 --> 00:00:33,990 +to make a connection to the database to create a + +11 +00:00:33,990 --> 00:00:35,410 +query on the data and display it in the user + +12 +00:00:35,410 --> 00:00:38,330 +interface The work of the database can all be + +13 +00:00:38,330 --> 00:00:40,770 +present in another class or module I need to + +14 +00:00:40,770 --> 00:00:42,650 +create an object from this class to get the + +15 +00:00:42,650 --> 00:00:47,310 +methods present in it So when I have an object + +16 +00:00:47,310 --> 00:00:51,190 +that needs to create an object from another class + +17 +00:00:51,190 --> 00:00:56,410 +to use it This tells us that there is a dependency + +18 +00:00:56,410 --> 00:01:00,010 +here. An object depends on another object. And + +19 +00:01:00,010 --> 00:01:02,170 +this is a relationship of association in the end, + +20 +00:01:02,730 --> 00:01:08,570 +as a UML. And we say that the dependency that the + +21 +00:01:08,570 --> 00:01:13,130 +object needs can be done in two ways. The first + +22 +00:01:13,130 --> 00:01:16,350 +way is to create the dependency inside the object + +23 +00:01:16,350 --> 00:01:19,070 +itself. And we said in a previous lecture that I + +24 +00:01:19,070 --> 00:01:24,290 +have an object from class A will need an object + +25 +00:01:24,290 --> 00:01:27,950 +from class B because this relationship I represent + +26 +00:01:27,950 --> 00:01:32,730 +that I can make a class A and inside it I make a + +27 +00:01:32,730 --> 00:01:40,090 +constructor public A and inside the constructor I + +28 +00:01:40,090 --> 00:01:43,450 +say this dot B is equal to U + +29 +00:01:47,390 --> 00:01:51,750 +B means that this A needs an object of type B. + +30 +00:01:52,310 --> 00:01:54,390 +This B is what I created inside the constructor of + +31 +00:01:54,390 --> 00:01:59,050 +A. Where is the dependency in this case? B is the + +32 +00:01:59,050 --> 00:02:03,010 +dependency that I created inside A. Because this + +33 +00:02:03,010 --> 00:02:04,790 +way has advantages and disadvantages. The first + +34 +00:02:04,790 --> 00:02:08,210 +advantage is that it hides the details. I don't + +35 +00:02:08,210 --> 00:02:11,950 +know what A needs. I create an object from A and + +36 +00:02:11,950 --> 00:02:17,250 +use it.But on the other hand, there is a + +37 +00:02:17,250 --> 00:02:19,810 +negativity that I linked A to B throughout my + +38 +00:02:19,810 --> 00:02:21,730 +life, which means that I have to change this + +39 +00:02:21,730 --> 00:02:25,230 +dimension. I have to modify it, but I will not be + +40 +00:02:25,230 --> 00:02:29,790 +able to modify it in this way. And this is what we + +41 +00:02:29,790 --> 00:02:35,350 +call a composition relationship. The other way is + +42 +00:02:35,350 --> 00:02:40,950 +that I made a class A and it will also need an + +43 +00:02:40,950 --> 00:02:44,480 +object of type Band I tell him that I'm public A + +44 +00:02:44,480 --> 00:02:49,340 +and I pass the object B from outside to him so + +45 +00:02:49,340 --> 00:02:52,960 +that I can tell him that this dot B is equal to B + +46 +00:02:52,960 --> 00:02:58,420 +this is also a kind of association, aggregation, + +47 +00:02:58,480 --> 00:03:02,340 +we passed the dependency from outside because this + +48 +00:03:02,340 --> 00:03:04,000 +is the most difficult way to create an object + +49 +00:03:04,000 --> 00:03:07,360 +because in order to create A I have to bring B and + +50 +00:03:07,360 --> 00:03:12,450 +then create A and pass B to him As a programmer, I + +51 +00:03:12,450 --> 00:03:14,990 +also know who depends on whom, but if another + +52 +00:03:14,990 --> 00:03:17,750 +person follows me and completes the code, he won't + +53 +00:03:17,750 --> 00:03:22,110 +know what depends on whom. But on the other hand, + +54 +00:03:22,950 --> 00:03:26,790 +I can change this dependency. It accepts anything + +55 +00:03:26,790 --> 00:03:30,890 +that is B, right or wrong. So if I brought B and + +56 +00:03:30,890 --> 00:03:35,190 +made it extend, and changed the override for the + +57 +00:03:35,190 --> 00:03:41,970 +methods in it, I changed the behavior of it. and + +58 +00:03:41,970 --> 00:03:44,510 +at the same time I can create a and pass it a + +59 +00:03:44,510 --> 00:03:46,830 +condition object from B it will accept it because + +60 +00:03:46,830 --> 00:03:52,130 +it accepts anything from type B and this thing is + +61 +00:03:52,130 --> 00:03:56,430 +important as we will see in a while in the process + +62 +00:03:56,430 --> 00:04:00,530 +of testing in testing they have to change a lot in + +63 +00:04:00,530 --> 00:04:03,090 +the functionality of the classes as we will see + +64 +00:04:03,090 --> 00:04:07,490 +why in a while so this way this is what we call + +65 +00:04:07,490 --> 00:04:12,590 +dependencyInjection, or DI, which means that the + +66 +00:04:12,590 --> 00:04:16,270 +dependency is justified from outside, not inside + +67 +00:04:16,270 --> 00:04:19,650 +the object. Because all software developers advise + +68 +00:04:19,650 --> 00:04:22,250 +us to always work this way, although the + +69 +00:04:22,250 --> 00:04:23,810 +construction of the object becomes more difficult, + +70 +00:04:24,570 --> 00:04:30,340 +but the flexibility of the code becomes more.Let's + +71 +00:04:30,340 --> 00:04:32,980 +quickly go through what's written on the slide + +72 +00:04:32,980 --> 00:04:36,080 +Dependency Injection is the concept in which + +73 +00:04:36,080 --> 00:04:39,600 +objects get other required objects from outside + +74 +00:04:39,600 --> 00:04:45,020 +The object gets the objects it needs from outside, + +75 +00:04:45,300 --> 00:04:49,680 +not inside the object itself Like this example DI + +76 +00:04:49,680 --> 00:04:54,340 +can be implemented in any programming language The + +77 +00:04:54,340 --> 00:04:57,300 +general concept behind dependency injection is + +78 +00:04:57,300 --> 00:05:01,130 +called inversion of controlThe basic principle of + +79 +00:05:01,130 --> 00:05:04,890 +Dependency Injection is something they call it in + +80 +00:05:04,890 --> 00:05:07,610 +programming as well or in OOP, it's an important + +81 +00:05:07,610 --> 00:05:09,590 +concept called Inversion of Control. What does + +82 +00:05:09,590 --> 00:05:15,930 +Inversion mean? It means to reverse. Invert means + +83 +00:05:15,930 --> 00:05:19,550 +to reverse. They don't say inverter. Invert means + +84 +00:05:19,550 --> 00:05:23,010 +to reverse. Inversion of Control means to control. + +85 +00:05:23,550 --> 00:05:25,630 +What does it mean? It's like saying to someone, + +86 +00:05:26,110 --> 00:05:29,340 +instead of talking to us, we will talk to you. Now + +87 +00:05:29,340 --> 00:05:31,720 +A instead of needing to create its own dependency, + +88 +00:05:32,760 --> 00:05:35,820 +we say stop, we create the dependency and pass it + +89 +00:05:35,820 --> 00:05:38,800 +to KIA. The opposite of controlling. Instead of A + +90 +00:05:38,800 --> 00:05:42,660 +controlling its own dependencies, we control the + +91 +00:05:42,660 --> 00:05:48,820 +dependencies and pass them to A. It is more + +92 +00:05:48,820 --> 00:05:51,260 +difficult for us to create A, but in the + +93 +00:05:51,260 --> 00:05:54,360 +flexibility of the code it becomes better because + +94 +00:05:54,360 --> 00:05:58,900 +I can change the functionality of the dependency.A + +95 +00:05:58,900 --> 00:06:01,680 +Java class has a dependency on another class if it + +96 +00:06:01,680 --> 00:06:05,440 +uses instance of this class نفس الكلام إنه أي + +97 +00:06:05,440 --> 00:06:10,620 +object في ال Java بنقول إنه إله dependency على + +98 +00:06:10,620 --> 00:06:14,000 +class أخرى إذا كان بحتاج ينشي object من هذا ال + +99 +00:06:14,000 --> 00:06:18,560 +class We call this a class dependency مثال بقول زي + +100 +00:06:18,560 --> 00:06:23,860 +مثلا أنا بتعامل مع class بتستخدم لغر تمام بنشي + +101 +00:06:23,860 --> 00:06:26,100 +object من لغر من جوا ال class فهذا dependency + +102 +00:06:26,100 --> 00:06:26,860 +تعتبر + +103 +00:06:30,870 --> 00:06:35,390 +Okay, ideally Java classes or classes in any OOP + +104 +00:06:35,390 --> 00:06:37,950 +programming language should be as independent as + +105 +00:06:37,950 --> 00:06:40,310 +possible What does this mean? Independent as much + +106 +00:06:40,310 --> 00:06:42,470 +as possible. We want to cancel relations as much + +107 +00:06:42,470 --> 00:06:46,910 +as possible or reduce them between classes + +108 +00:06:46,910 --> 00:06:53,590 +Dependency is big, it means that I can't take this + +109 +00:06:53,590 --> 00:06:55,790 +class and use it alone, right? Or I become + +110 +00:06:55,790 --> 00:07:00,870 +dependent on other classesThis increases the + +111 +00:07:00,870 --> 00:07:03,010 +possibility of reusing these classes, meaning the + +112 +00:07:03,010 --> 00:07:05,890 +benefit of reducing dependencies as much as + +113 +00:07:05,890 --> 00:07:08,590 +possible or making classes as independent as + +114 +00:07:08,590 --> 00:07:10,870 +possible Of course you can't depend on + +115 +00:07:10,870 --> 00:07:12,970 +dependencies at all, of course there must be a + +116 +00:07:12,970 --> 00:07:15,330 +class that needs an object from another class, but + +117 +00:07:15,330 --> 00:07:18,350 +we reduce dependencies Dependencies means a big + +118 +00:07:18,350 --> 00:07:23,040 +coupling, right? Our goal is to reduce coupling If + +119 +00:07:23,040 --> 00:07:25,780 +you reduce the coupling, you can reuse it. What is + +120 +00:07:25,780 --> 00:07:29,160 +reuse? It is a habit of use. This class does not + +121 +00:07:29,160 --> 00:07:32,480 +depend on other things, so I can use it in another + +122 +00:07:32,480 --> 00:07:34,340 +application. It is also important in the process + +123 +00:07:34,340 --> 00:07:37,040 +of testing and to be able to test them + +124 +00:07:37,040 --> 00:07:39,940 +independently from other classes. We will see the + +125 +00:07:39,940 --> 00:07:44,800 +subject of testing later. If the Java class + +126 +00:07:44,800 --> 00:07:47,300 +creates an instance of another class via the new + +127 +00:07:47,300 --> 00:07:49,700 +operator, it cannot be used and tested + +128 +00:07:49,700 --> 00:07:55,290 +independently.So if I used this method, that class + +129 +00:07:55,290 --> 00:07:59,230 +A creates dependency by using a new operator, it + +130 +00:07:59,230 --> 00:08:02,470 +means that I linked it to this class for a certain + +131 +00:08:02,470 --> 00:08:08,730 +lifetime So you can't do a test for A or use A + +132 +00:08:08,730 --> 00:08:13,510 +without B Of course, this is what we call hard + +133 +00:08:13,510 --> 00:08:14,130 +dependency + +134 +00:08:20,460 --> 00:08:23,780 +We said that the good dependency is not the strong + +135 +00:08:23,780 --> 00:08:27,660 +one, it's the weak one in programming This is an + +136 +00:08:27,660 --> 00:08:33,560 +example of the soft dependency, which is the + +137 +00:08:33,560 --> 00:08:36,300 +desired one, which is dependency injection For + +138 +00:08:36,300 --> 00:08:39,260 +example, here I have my class, and one of the + +139 +00:08:39,260 --> 00:08:42,420 +dependencies is the logger, which I created here, + +140 +00:08:42,500 --> 00:08:45,480 +and I passed it through the constructor + +141 +00:08:48,620 --> 00:08:54,040 +Okay, the problem is that we always use the + +142 +00:08:54,040 --> 00:08:56,200 +concept of Dependency Injection I have two classes + +143 +00:08:56,200 --> 00:08:59,220 +that depend on each other, okay? Don't go inside + +144 +00:08:59,220 --> 00:09:02,940 +the constructor, go outside and pass it to him, + +145 +00:09:03,240 --> 00:09:06,380 +okay? So when you code, always try to code in this + +146 +00:09:06,380 --> 00:09:11,120 +way But this way of coding will cause you problems + +147 +00:09:11,120 --> 00:09:13,120 +and difficulties Why? Let me give you the + +148 +00:09:13,120 --> 00:09:13,440 +following example + +149 +00:09:23,420 --> 00:09:25,520 +Let's take the mobile application as an example. + +150 +00:09:25,620 --> 00:09:28,460 +The mobile application has a UI, a user interface, + +151 +00:09:28,540 --> 00:09:34,260 +a specific screen. This screen has something we + +152 +00:09:34,260 --> 00:09:39,380 +call the view model, which is like a tool that + +153 +00:09:39,380 --> 00:09:42,180 +needs to get from the backend and put somewhere in + +154 +00:09:42,180 --> 00:09:45,880 +the user interface.This ViewModel depends on + +155 +00:09:45,880 --> 00:09:50,740 +another class called Repository that collects data + +156 +00:09:50,740 --> 00:09:55,600 +from the API or database This Repository uses two + +157 +00:09:55,600 --> 00:10:02,280 +classes or depends on two classes. This class is + +158 +00:10:02,280 --> 00:10:06,480 +related to the API and this class is related to + +159 +00:10:06,480 --> 00:10:11,820 +the database because the API also uses + +160 +00:10:11,820 --> 00:10:16,500 +dependencies it needs a connector it needs a + +161 +00:10:16,500 --> 00:10:19,720 +library related to NLP to get things it needs a + +162 +00:10:19,720 --> 00:10:22,960 +library related to JSON and analyzing data as JSON + +163 +00:10:22,960 --> 00:10:27,480 +to make a request database + +164 +00:10:27,480 --> 00:10:30,820 +also might need a connector for database DB + +165 +00:10:30,820 --> 00:10:34,240 +connector + +166 +00:10:34,240 --> 00:10:39,830 +and this might need another librarybecause this is + +167 +00:10:39,830 --> 00:10:42,050 +what happens in reality that there is something + +168 +00:10:42,050 --> 00:10:43,810 +that depends on something and this thing depends + +169 +00:10:43,810 --> 00:10:47,630 +on something else because in the end we want to + +170 +00:10:47,630 --> 00:10:50,030 +extract an object from this how do we extract an + +171 +00:10:50,030 --> 00:10:53,890 +object from this? you have to force it if for + +172 +00:10:53,890 --> 00:11:02,510 +example we call this A, B, C, D, E, F, G, H, I, J + +173 +00:11:02,510 --> 00:11:05,630 +what do you have to force? you have to extract an + +174 +00:11:05,630 --> 00:11:08,070 +object from whom? from F for example + +175 +00:11:11,890 --> 00:11:18,070 +After you make G and H, after you make these three + +176 +00:11:19,340 --> 00:11:21,100 +You go and make D and pass it through the + +177 +00:11:21,100 --> 00:11:25,120 +constructor or method of whoever created it And + +178 +00:11:25,120 --> 00:11:27,580 +it's the same thing, you have to make this I and + +179 +00:11:27,580 --> 00:11:30,100 +create what? Before you create the I, you have to + +180 +00:11:30,100 --> 00:11:33,180 +create the J and then create the I and then create + +181 +00:11:33,180 --> 00:11:36,180 +the E And after you get this D and E, you create + +182 +00:11:36,180 --> 00:11:39,380 +the C and then .. So, in order to create this, you + +183 +00:11:39,380 --> 00:11:43,420 +need 10 lines or 11 lines in order to create one + +184 +00:11:43,420 --> 00:11:46,480 +object from whom? From this Well, it's not + +185 +00:11:46,480 --> 00:11:48,140 +necessary that sometimes there is another screen + +186 +00:11:49,340 --> 00:11:53,280 +third screen, ok? And these screens also depend on + +187 +00:11:53,280 --> 00:11:55,740 +the same domain, dependencies. Also, in order to + +188 +00:11:55,740 --> 00:11:58,380 +create this second screen, you need to do what? + +189 +00:11:58,680 --> 00:12:02,140 +The whole series of these. This is the negativity + +190 +00:12:02,140 --> 00:12:06,520 +of dependency injection, ok? That the construction + +191 +00:12:06,520 --> 00:12:09,940 +of objects became more difficult. If we did not + +192 +00:12:09,940 --> 00:12:11,940 +use dependency injection, everything inside the + +193 +00:12:11,940 --> 00:12:17,390 +construction, it was easier, right or not? Ok? So + +194 +00:12:17,390 --> 00:12:20,730 +that's why they made something called Dependency + +195 +00:12:20,730 --> 00:12:25,610 +Injection Framework. These libraries facilitate + +196 +00:12:25,610 --> 00:12:28,630 +the construction of objects while maintaining + +197 +00:12:28,630 --> 00:12:33,150 +dependency injection. What does this library tell + +198 +00:12:33,150 --> 00:12:33,410 +you? + +199 +00:12:36,330 --> 00:12:38,750 +programming your code to use dependency injection + +200 +00:12:38,750 --> 00:12:41,510 +to create dependency and then pass it on but at + +201 +00:12:41,510 --> 00:12:43,010 +the same time I will make it easier for you + +202 +00:12:43,010 --> 00:12:46,570 +instead of creating 20 lines to create one object + +203 +00:12:46,570 --> 00:12:49,850 +and of course in this case if the programmer dies + +204 +00:12:49,850 --> 00:12:52,650 +the one behind him will not know how to create the + +205 +00:12:52,650 --> 00:12:55,550 +object, right or not? he will tell you that he + +206 +00:12:55,550 --> 00:12:58,090 +learns this library only once you tell him the + +207 +00:12:58,090 --> 00:13:02,550 +path you walk on and so on and so forth, okay? and + +208 +00:13:02,550 --> 00:13:06,720 +you tell him to create a loop A grows from each of + +209 +00:13:06,720 --> 00:13:09,600 +these trees This is the idea of Dependency + +210 +00:13:09,600 --> 00:13:12,860 +Injection Framework That it will see what are the + +211 +00:13:12,860 --> 00:13:15,720 +dependencies And it will collect them, make them + +212 +00:13:15,720 --> 00:13:18,440 +and grow from them objects And measure each one of + +213 +00:13:18,440 --> 00:13:22,380 +them until it gives us the final object that is + +214 +00:13:22,380 --> 00:13:27,300 +required here And we will try one of the + +215 +00:13:27,300 --> 00:13:31,320 +Dependency Injection Frameworks But before we go + +216 +00:13:31,320 --> 00:13:35,280 +to the Dependency Injection FrameworkWhy is + +217 +00:13:35,280 --> 00:13:40,620 +Dependency Injection important for testing? Look + +218 +00:13:40,620 --> 00:13:43,640 +at this example in front of me. This is a UI + +219 +00:13:43,640 --> 00:13:48,960 +example based on 20 things. For example, a + +220 +00:13:48,960 --> 00:13:53,520 +software tester came and wanted to test this + +221 +00:13:53,520 --> 00:13:57,620 +software. He turned on the software and found + +222 +00:13:57,620 --> 00:13:59,800 +errors in it. The data displayed was not correct. + +223 +00:14:00,880 --> 00:14:04,120 +Errors may have many components in the application + +224 +00:14:04,120 --> 00:14:06,860 +Errors may come from the API Errors may come from + +225 +00:14:06,860 --> 00:14:09,460 +the database Right or wrong Errors may come from + +226 +00:14:09,460 --> 00:14:12,860 +here Errors may come from the UI itself So why + +227 +00:14:12,860 --> 00:14:15,640 +should he make a tester? He wants to try one by + +228 +00:14:15,640 --> 00:14:19,620 +one So he says, let me first try the user + +229 +00:14:19,620 --> 00:14:24,000 +interface But he wants to check who? The other + +230 +00:14:24,000 --> 00:14:28,740 +parties He can't simply remove theseCan he run the + +231 +00:14:28,740 --> 00:14:31,640 +user interface without knowing anything about the + +232 +00:14:31,640 --> 00:14:33,920 +code? Right or wrong? Does he want to go inside + +233 +00:14:33,920 --> 00:14:35,800 +the code and see where I created the object and + +234 +00:14:35,800 --> 00:14:42,940 +delete it? No. What exactly does he do? This is + +235 +00:14:42,940 --> 00:14:46,300 +the + +236 +00:14:46,300 --> 00:14:50,160 +code that comes from the database.and this of + +237 +00:14:50,160 --> 00:14:52,560 +course needs other libraries but for example here + +238 +00:14:52,560 --> 00:14:56,060 +it can be in this imagine that this program has + +239 +00:14:56,060 --> 00:14:58,860 +nothing to do with the news there is a method here + +240 +00:14:58,860 --> 00:15:03,180 +get news this is an array that brings the news + +241 +00:15:03,180 --> 00:15:06,780 +from where? from the database and another array + +242 +00:15:06,780 --> 00:15:12,040 +this is for example I will call it get all news + +243 +00:15:12,040 --> 00:15:18,340 +and I have an array called get news detailsand I + +244 +00:15:18,340 --> 00:15:22,180 +give him the ID of the news and there is for + +245 +00:15:22,180 --> 00:15:26,880 +example add news I send him an object of the type + +246 +00:15:26,880 --> 00:15:29,340 +news to add it to the database and there is delete + +247 +00:15:29,340 --> 00:15:34,950 +news These are operations on the database. These + +248 +00:15:34,950 --> 00:15:38,850 +methods are located here. These methods are called + +249 +00:15:38,850 --> 00:15:43,970 +by this class. And these methods are called by the + +250 +00:15:43,970 --> 00:15:47,250 +view model. And the view model is called by the + +251 +00:15:47,250 --> 00:15:49,630 +UI. For example, when you open the program and + +252 +00:15:49,630 --> 00:15:52,610 +show the news, it will ask you to get the news. It + +253 +00:15:52,610 --> 00:15:53,770 +will ask you to get it from here. And it will ask + +254 +00:15:53,770 --> 00:15:54,790 +you to get it from here. And it will ask you to + +255 +00:15:54,790 --> 00:15:56,690 +get it from here. And it will ask you to get it + +256 +00:15:56,690 --> 00:15:58,170 +from the database. And it will continue its work. + +257 +00:15:58,730 --> 00:16:01,970 +Okay, now I said I want to try the user interface + +258 +00:16:01,970 --> 00:16:04,850 +without this database Okay, so what does the + +259 +00:16:04,850 --> 00:16:07,330 +programmer who does the tester say? He says, okay, + +260 +00:16:07,390 --> 00:16:10,390 +I don't want to see anything in this database I go + +261 +00:16:10,390 --> 00:16:17,030 +and make a class ExtendMean to the database I call + +262 +00:16:17,030 --> 00:16:23,250 +it, for example, mockdb What is the word mock? + +263 +00:16:23,990 --> 00:16:30,210 +Like fake, something similar, okay?It uses the + +264 +00:16:30,210 --> 00:16:35,610 +same methods, but it overrides them. What does it + +265 +00:16:35,610 --> 00:16:38,790 +mean to override? It rewrites them. For example, + +266 +00:16:38,790 --> 00:16:42,710 +getAllNews will have getAllNews, getNewsDetails + +267 +00:16:42,710 --> 00:16:45,870 +will have addNews and deleteNews. But what does it + +268 +00:16:45,870 --> 00:16:50,520 +do? It creates a database and returns data.It's an + +269 +00:16:50,520 --> 00:16:53,140 +illusion. For example, get all the means makes it + +270 +00:16:53,140 --> 00:16:54,940 +return to the array containing all the objects. + +271 +00:16:59,480 --> 00:17:02,820 +To try it. I get the news details, I give it an + +272 +00:17:02,820 --> 00:17:05,780 +id, any id for news, okay? So that it gives me an + +273 +00:17:05,780 --> 00:17:07,160 +example from the array, instead of coming from the + +274 +00:17:07,160 --> 00:17:10,060 +database. Something for the experiment, okay? Yes, + +275 +00:17:10,080 --> 00:17:11,760 +it's the news, there's no condition, I don't want + +276 +00:17:11,760 --> 00:17:13,460 +to try it on the guest who came to the database, + +277 +00:17:13,600 --> 00:17:15,280 +it doesn't matter. I don't care if the database + +278 +00:17:15,280 --> 00:17:18,600 +came. I care about trying the UI, but I don't want + +279 +00:17:18,600 --> 00:17:23,100 +to see an empty UI, I want to see a full UI. Let's + +280 +00:17:23,100 --> 00:17:27,500 +say the news has been added. Let's say it has been + +281 +00:17:27,500 --> 00:17:30,460 +added. Let's see what has been done where in the + +282 +00:17:30,460 --> 00:17:35,560 +UI. How does it work? I put fake things, not real + +283 +00:17:35,560 --> 00:17:38,000 +things. Because I found myself interested in + +284 +00:17:38,000 --> 00:17:46,500 +trying out the UI. I had a DB and I made a mock DB + +285 +00:17:46,500 --> 00:17:49,580 +out of it. Then I change something. I find that + +286 +00:17:49,580 --> 00:17:52,270 +this is not my dependency to whom?to the + +287 +00:17:52,270 --> 00:17:57,110 +repository instead of creating an object from db, + +288 +00:17:57,190 --> 00:18:00,730 +I created an object from mockdb and passed it to + +289 +00:18:00,730 --> 00:18:02,950 +this one, will it accept it or not? it will accept + +290 +00:18:02,950 --> 00:18:05,890 +it and deal with it just like I had a graph + +291 +00:18:05,890 --> 00:18:10,070 +manager, I used to pass him shape and I used to + +292 +00:18:10,070 --> 00:18:13,450 +call him draw when I used to pass him circle or + +293 +00:18:13,450 --> 00:18:16,990 +rectangle, he used to accept them all I passed + +294 +00:18:16,990 --> 00:18:19,870 +this object to him instead of this oneAnd this is + +295 +00:18:19,870 --> 00:18:21,570 +not only what I do here, but also in the API. + +296 +00:18:22,430 --> 00:18:25,270 +Whenever I want to try an interface that connects + +297 +00:18:25,270 --> 00:18:26,410 +to the server and tells me that there is no + +298 +00:18:26,410 --> 00:18:30,830 +connection, I also go to this API and create a + +299 +00:18:30,830 --> 00:18:35,430 +class called MockAPI. + +300 +00:18:35,550 --> 00:18:38,030 +And the same methods that I use here instead of + +301 +00:18:38,030 --> 00:18:43,610 +things that are fake. Notice that I do not need to + +302 +00:18:43,610 --> 00:18:47,490 +see the code that is here and here and here.I just + +303 +00:18:47,490 --> 00:18:51,370 +need to do Extend and say Override to the device + +304 +00:18:51,370 --> 00:18:56,190 +and I put a fake code from me instead of + +305 +00:18:56,190 --> 00:18:57,890 +connecting to the server and connecting to the + +306 +00:18:57,890 --> 00:19:00,810 +actual database, it can still be ready, which is + +307 +00:19:00,810 --> 00:19:04,270 +also in projects, one can make a user interface + +308 +00:19:04,270 --> 00:19:07,880 +with the database and the API It's still not + +309 +00:19:07,880 --> 00:19:10,400 +ready, it has a bug, right or wrong? The problem + +310 +00:19:10,400 --> 00:19:14,040 +of the UI is solved by whom? By the backend. The + +311 +00:19:14,040 --> 00:19:17,420 +backend is always the loser. The UI is always the + +312 +00:19:17,420 --> 00:19:19,080 +winner. Why is this supposed to attract more than + +313 +00:19:19,080 --> 00:19:25,000 +that? Because they still have a lot of work to do. + +314 +00:19:25,040 --> 00:19:29,740 +Okay. So I replaced the real things with mock + +315 +00:19:29,740 --> 00:19:31,300 +things. Did you notice that I'm running the UI? + +316 +00:19:32,220 --> 00:19:34,360 +The UI is working for me, and it's showing me fake + +317 +00:19:34,360 --> 00:19:37,720 +data. This is the work of the tester. What do you + +318 +00:19:37,720 --> 00:19:40,040 +think about his work? Yes, go ahead and work, + +319 +00:19:40,520 --> 00:19:42,980 +work, don't work, send a report, he thinks he + +320 +00:19:42,980 --> 00:19:45,960 +doesn't work No, the tester works like this, okay? + +321 +00:19:46,120 --> 00:19:48,100 +He goes to see the components and replaces them + +322 +00:19:48,100 --> 00:19:51,540 +with other components And even the correct design + +323 +00:19:51,540 --> 00:19:54,700 +is not like this either, what does he do? This guy + +324 +00:19:54,700 --> 00:19:57,780 +has an API, he doesn't do a direct class, he does + +325 +00:19:57,780 --> 00:20:02,980 +an API, that is, the correct design For example, + +326 +00:20:03,120 --> 00:20:07,680 +let's talk about the API to organize the head Go + +327 +00:20:07,680 --> 00:20:08,920 +back to the programmer that wants to run + +328 +00:20:08,920 --> 00:20:11,280 +correctly. For example, this one wants to depend + +329 +00:20:11,280 --> 00:20:13,020 +on API and this one wants to depend on database. + +330 +00:20:13,840 --> 00:20:18,540 +Okay? Go and create an API interface. API I. What + +331 +00:20:18,540 --> 00:20:21,140 +is this I? No, it's the interface. Determine what + +332 +00:20:21,140 --> 00:20:24,120 +methods will be here. And also the database + +333 +00:20:24,120 --> 00:20:29,380 +creates a DBI interface. The interface has names + +334 +00:20:29,380 --> 00:20:32,800 +of methods without implementation. Okay? Here I + +335 +00:20:32,800 --> 00:20:36,860 +put get all news. + +336 +00:20:38,810 --> 00:20:43,650 +Add news, get news details. It determines what + +337 +00:20:43,650 --> 00:20:46,910 +operations need to be done. Where does it define + +338 +00:20:46,910 --> 00:20:49,470 +it? In the interface. Does the git want to connect + +339 +00:20:49,470 --> 00:20:52,930 +with the actual database? Does the git notice that + +340 +00:20:52,930 --> 00:20:56,930 +the repository depends on the type of interface? + +341 +00:20:57,130 --> 00:20:59,030 +Does the git want to connect with the MySQL + +342 +00:20:59,030 --> 00:21:02,710 +database? I go and create a class from this. I + +343 +00:21:02,710 --> 00:21:06,750 +call it, for example, MySQLDB + +344 +00:21:08,180 --> 00:21:10,280 +implement the interface. And we know that as soon + +345 +00:21:10,280 --> 00:21:12,860 +as he implements the interface, he will ask him to + +346 +00:21:12,860 --> 00:21:15,800 +implement for whom? For all these methods. He + +347 +00:21:15,800 --> 00:21:17,780 +wants to put an actual implementation of how he + +348 +00:21:17,780 --> 00:21:19,220 +wants to connect to the database and implement all + +349 +00:21:19,220 --> 00:21:21,700 +these as queries. Did you take the database or did + +350 +00:21:21,700 --> 00:21:25,120 +I take it? Yes, I took it. Okay. I will go back to + +351 +00:21:25,120 --> 00:21:28,880 +Habib now. See how I made it easier for him. I + +352 +00:21:28,880 --> 00:21:30,460 +will go back to TestStar before when he was doing + +353 +00:21:30,460 --> 00:21:33,750 +Excel for class.He didn't know what to do with the + +354 +00:21:33,750 --> 00:21:36,310 +override, right or not? But he found out that + +355 +00:21:36,310 --> 00:21:39,650 +without knowing anything, if I make this interface + +356 +00:21:39,650 --> 00:21:44,890 +and implement it to MockDB, it will automatically + +357 +00:21:44,890 --> 00:21:47,190 +tell him that I want to make an implement for + +358 +00:21:47,190 --> 00:21:49,270 +this, and this, and this, and this, and this, and + +359 +00:21:49,270 --> 00:21:49,550 +this, and this, and this, and this, and this, and + +360 +00:21:49,550 --> 00:21:49,610 +this, and this, and this, and this, and this, and + +361 +00:21:49,610 --> 00:21:57,230 +this, and this, and this, and this, and this, and + +362 +00:21:57,230 --> 00:21:59,730 +this, and this, and this, and this, and this, and + +363 +00:21:59,730 --> 00:22:03,440 +this, and this, and this, andIf I built my system + +364 +00:22:03,440 --> 00:22:05,600 +like this, the tester does the testing without + +365 +00:22:05,600 --> 00:22:08,920 +having to understand the code. He just gets an + +366 +00:22:08,920 --> 00:22:11,500 +idea that the programmer comes and says this is + +367 +00:22:11,500 --> 00:22:14,100 +the structure of the code and you want this part + +368 +00:22:14,100 --> 00:22:16,360 +of the database and this part of the API. You want + +369 +00:22:16,360 --> 00:22:21,340 +to try to do both. Is it clear, guys? + +370 +00:22:25,120 --> 00:22:30,780 +Now let's read Mock objects, or they call them + +371 +00:22:30,780 --> 00:22:34,120 +mocks, are objects which behave similar as the + +372 +00:22:34,120 --> 00:22:40,700 +real object. Mocking means to make an object that + +373 +00:22:40,700 --> 00:22:43,880 +behaves exactly like the real object. But the real + +374 +00:22:43,880 --> 00:22:47,180 +object is still not ready. It has a lot of + +375 +00:22:47,180 --> 00:22:49,300 +dependencies. It wants to connect to a database. + +376 +00:22:49,700 --> 00:22:53,660 +It does this for a reason. It acts like a real + +377 +00:22:53,660 --> 00:22:57,440 +object. They are configured to behave in a certain + +378 +00:22:57,440 --> 00:23:02,120 +predefined way. + +379 +00:23:02,740 --> 00:23:06,420 +Mock is an English word which means to mimic or + +380 +00:23:06,420 --> 00:23:10,480 +imitate.The word mock means mimicking, mimicking + +381 +00:23:10,480 --> 00:23:13,520 +someone + +382 +00:23:13,520 --> 00:23:16,100 +who mimics the truth, but it is not the truth. + +383 +00:23:16,680 --> 00:23:19,760 +They use testers, as I said, to remove the real + +384 +00:23:19,760 --> 00:23:22,100 +component and replace it with another component to + +385 +00:23:22,100 --> 00:23:26,740 +try a certain part of the applicationThe + +386 +00:23:26,740 --> 00:23:29,440 +application consists of many parts. What does it + +387 +00:23:29,440 --> 00:23:30,700 +have to do with the database? What does it have to + +388 +00:23:30,700 --> 00:23:32,160 +do with the login? What does it have to do with + +389 +00:23:32,160 --> 00:23:35,040 +the search? Because in order to try a component, I + +390 +00:23:35,040 --> 00:23:38,160 +have to stop the rest of them, to see if this + +391 +00:23:38,160 --> 00:23:40,800 +particular one is working or not. So all that's + +392 +00:23:40,800 --> 00:23:43,080 +left is to replace them with what? With mock. + +393 +00:23:44,420 --> 00:23:47,620 +That's why they always say, design based on an + +394 +00:23:47,620 --> 00:23:51,520 +interface. Create an interface, create a class + +395 +00:23:51,520 --> 00:23:54,000 +from it, and use this class.Why? Because when + +396 +00:23:54,000 --> 00:23:57,280 +someone wants to replace this class, he does a + +397 +00:23:57,280 --> 00:24:00,560 +mock based on the interface. Okay? The interface + +398 +00:24:00,560 --> 00:24:02,200 +is not like they told you that this is just a + +399 +00:24:02,200 --> 00:24:03,860 +contract, it's a contract, the method is empty and + +400 +00:24:03,860 --> 00:24:07,220 +that's it. Okay? No, it has great importance for + +401 +00:24:07,220 --> 00:24:10,240 +the tester. The guide is a guide for the tester, + +402 +00:24:10,660 --> 00:24:15,880 +what are the methods that I want to mock. Okay? + +403 +00:24:17,560 --> 00:24:23,240 +Okay guys.And this proves that mocking is one of + +404 +00:24:23,240 --> 00:24:25,760 +the applications of dependency injection. I don't + +405 +00:24:25,760 --> 00:24:28,880 +want to destroy the dependency from outside to + +406 +00:24:28,880 --> 00:24:32,380 +control this dependency, to add new features to + +407 +00:24:32,380 --> 00:24:35,680 +it, to replace it with a mock, okay? The program + +408 +00:24:35,680 --> 00:24:38,520 +remains running. But if I run the dependency that + +409 +00:24:38,520 --> 00:24:41,400 +I created inside the UB, how do I change it? + +410 +00:24:42,210 --> 00:24:45,270 +Correct or not, guys? So, mastering dependency + +411 +00:24:45,270 --> 00:24:48,530 +from outside is important, but the downside, as we + +412 +00:24:48,530 --> 00:24:52,310 +said before, is that the tree is too big. So, how + +413 +00:24:52,310 --> 00:24:54,390 +can we facilitate the tree process? As I said, we + +414 +00:24:54,390 --> 00:24:57,230 +can use something called Dependency Injection + +415 +00:24:57,230 --> 00:25:02,330 +Framework.which is a framework class usually + +416 +00:25:02,330 --> 00:25:06,610 +called the dependency container. These libraries + +417 +00:25:06,610 --> 00:25:10,630 +will facilitate the creation of objects using + +418 +00:25:10,630 --> 00:25:12,830 +dependency injection, which is called the + +419 +00:25:12,830 --> 00:25:16,950 +dependency container. Code analyzes the dependency + +420 +00:25:16,950 --> 00:25:20,880 +class.Who is dependent on whom, and who is + +421 +00:25:20,880 --> 00:25:22,680 +dependent on whom, and he builds the object + +422 +00:25:22,680 --> 00:25:26,460 +without me having to overcome and build the whole + +423 +00:25:26,460 --> 00:25:31,480 +tree, okay? Of course, this idea is dependent on + +424 +00:25:31,480 --> 00:25:36,040 +reflection, API. He himself sees how he opens the + +425 +00:25:36,040 --> 00:25:38,060 +code. Do you remember the reflection when we got + +426 +00:25:38,060 --> 00:25:40,180 +an idea? What is the idea that he opens the code + +427 +00:25:40,180 --> 00:25:42,780 +and sees what is inside? Yes, so he relies on + +428 +00:25:42,780 --> 00:25:45,260 +reflection to build the existing dependencies. + +429 +00:25:47,770 --> 00:25:49,850 +Dependency Injection Frameworks is an advanced + +430 +00:25:49,850 --> 00:25:51,530 +topic in programming. There are programmers in the + +431 +00:25:51,530 --> 00:25:54,450 +market who have been working for 20 years but have + +432 +00:25:54,450 --> 00:25:58,030 +not worked on dependency injection. It is an + +433 +00:25:58,030 --> 00:26:00,270 +advanced topic. For example, when I gave a course + +434 +00:26:00,270 --> 00:26:03,070 +in Android, I gave it in an advanced course at the + +435 +00:26:03,070 --> 00:26:07,980 +end of the course.But if you open the internet and + +436 +00:26:07,980 --> 00:26:10,340 +see that it is widely used in frameworks, + +437 +00:26:10,420 --> 00:26:12,800 +especially when projects grow and increase + +438 +00:26:12,800 --> 00:26:16,640 +dependencies, it increases the need for it. Also + +439 +00:26:16,640 --> 00:26:19,420 +in large projects where testing is important and + +440 +00:26:19,420 --> 00:26:22,160 +plays a major role, it must be designed based on + +441 +00:26:22,160 --> 00:26:27,360 +or using a dependency injection framework. Now, + +442 +00:26:27,520 --> 00:26:30,120 +almost all the frameworks in the famous market + +443 +00:26:30,120 --> 00:26:34,320 +support dependency injection For example, in Java, + +444 +00:26:34,640 --> 00:26:37,840 +there is a famous framework in Java, Java Spring + +445 +00:26:37,840 --> 00:26:43,220 +They use it to create huge web applications that + +446 +00:26:43,220 --> 00:26:45,880 +support dependency injection There is another + +447 +00:26:45,880 --> 00:26:51,380 +library called Juice from Google Juice means what? + +448 +00:26:52,460 --> 00:26:55,080 +It's a juice, but it's in the shape of a J. Google + +449 +00:26:55,080 --> 00:26:57,340 +turns it into a G shape to put its fingerprint. + +450 +00:26:59,540 --> 00:27:03,340 +Android also uses Dependency Injection. There's a + +451 +00:27:03,340 --> 00:27:08,320 +library called Dagger, which created a newer + +452 +00:27:08,320 --> 00:27:12,360 +library called Hilt. Laravel also has something + +453 +00:27:12,360 --> 00:27:16,160 +called Service Container.they use it to do + +454 +00:27:16,160 --> 00:27:18,280 +dependency injection, because it creates trees + +455 +00:27:18,280 --> 00:27:20,680 +automatically without me having to create + +456 +00:27:20,680 --> 00:27:23,500 +dependencies. .NET has something called built-in, + +457 +00:27:23,540 --> 00:27:26,580 +Python has something called dependency injector. + +458 +00:27:26,660 --> 00:27:29,740 +So these are frameworks present in all programming + +459 +00:27:29,740 --> 00:27:30,700 +languages. Because we are going to try one + +460 +00:27:30,700 --> 00:27:34,700 +library. Okay? No, not going to try. Spring is the + +461 +00:27:34,700 --> 00:27:36,680 +most common one. Okay? But we are not going to try + +462 +00:27:36,680 --> 00:27:40,040 +it because this is a huge library. The dependency + +463 +00:27:40,040 --> 00:27:47,230 +injector is a small component of it.So we download + +464 +00:27:47,230 --> 00:27:50,410 +every spring and run it, like someone who buys a + +465 +00:27:50,410 --> 00:27:53,630 +Ferrari to go to the shop next door, not for + +466 +00:27:53,630 --> 00:27:57,850 +profit, okay? So we try a simple library called + +467 +00:27:57,850 --> 00:28:02,680 +Juice, okay?The idea is that you know the + +468 +00:28:02,680 --> 00:28:05,740 +principle of how dependency injection is done. For + +469 +00:28:05,740 --> 00:28:07,940 +example, if you go to another library, of course + +470 +00:28:07,940 --> 00:28:11,380 +the code will be different, but the idea is the + +471 +00:28:11,380 --> 00:28:13,720 +same. If you understand one of them, it is easy + +472 +00:28:13,720 --> 00:28:16,840 +for you to move on to the other. Okay? So this is + +473 +00:28:16,840 --> 00:28:20,420 +how we want to see as an example of how we do + +474 +00:28:20,420 --> 00:28:23,540 +dependency injection, we will use the Juice + +475 +00:28:23,540 --> 00:28:25,500 +library. And the example that we will apply is the + +476 +00:28:25,500 --> 00:28:29,380 +following example.We need something like a tree to + +477 +00:28:29,380 --> 00:28:32,780 +test it The example I'm going to try is as follows + +478 +00:28:32,780 --> 00:28:36,620 +It's a simple example, but the idea is that I want + +479 +00:28:36,620 --> 00:28:40,840 +an object from a class called Car Okay? + +480 +00:28:41,840 --> 00:28:45,480 +This Car has two dependencies, which means it + +481 +00:28:45,480 --> 00:28:50,100 +needs objects from two different classes One + +482 +00:28:50,100 --> 00:28:56,970 +called Engine and one called WheelWheel is عجل and + +483 +00:28:56,970 --> 00:29:02,890 +engine is محرك Now, the engine has another + +484 +00:29:02,890 --> 00:29:06,090 +dependency, it needs a cylinder, right? The engine + +485 +00:29:06,090 --> 00:29:09,790 +has cylinders, right? And the cylinder has valves, + +486 +00:29:10,170 --> 00:29:12,510 +so it needs a class, for example, called a valve, + +487 +00:29:13,010 --> 00:29:17,690 +which is like a valve The wheel also needs a + +488 +00:29:17,690 --> 00:29:19,030 +dependency, which is called a tire, + +489 +00:29:22,170 --> 00:29:25,000 +right? Here it is clear, in order to create an + +490 +00:29:25,000 --> 00:29:27,680 +object from the root, what should you do? You + +491 +00:29:27,680 --> 00:29:31,200 +should create an object, this one, then this one, + +492 +00:29:31,320 --> 00:29:34,540 +then this one, then this one, then in the end you + +493 +00:29:34,540 --> 00:29:37,640 +create the root. By using the juice, we will see + +494 +00:29:37,640 --> 00:29:40,520 +how to create the root in one line. And who will + +495 +00:29:40,520 --> 00:29:44,780 +it create for? All these trees. Okay, do you know + +496 +00:29:44,780 --> 00:29:47,980 +what the input and output of our program will be? + +497 +00:29:58,280 --> 00:30:00,700 +Ok guys, first of all, we want to make this tree, + +498 +00:30:01,640 --> 00:30:05,900 +ok? Because classes must be present So, for + +499 +00:30:05,900 --> 00:30:07,400 +example, I want to start with a class called + +500 +00:30:07,400 --> 00:30:15,120 +Valve, ok? Let the constructor be a no argument + +501 +00:30:15,120 --> 00:30:17,180 +constructor, meaning that its constructor is empty + +502 +00:30:17,180 --> 00:30:19,640 +But what do I want to do? I want to implement the + +503 +00:30:19,640 --> 00:30:22,720 +method toString, so that when I print it, it + +504 +00:30:22,720 --> 00:30:24,440 +prints something that is understood I want to say, + +505 +00:30:24,560 --> 00:30:25,840 +print me Valve, for example + +506 +00:30:31,640 --> 00:30:33,200 +Now, this is the cylinder. + +507 +00:30:37,420 --> 00:30:41,360 +Now, the cylinder has a dependency which is what? + +508 +00:30:42,820 --> 00:30:46,240 +Valve, correct or not? Public cylinder. You see, + +509 +00:30:46,340 --> 00:30:50,700 +we agreed that we will depend on dependency + +510 +00:30:50,700 --> 00:30:52,440 +injection. That is, the valve is fastened from + +511 +00:30:52,440 --> 00:30:55,080 +inside and we pass it from where? From outside, + +512 +00:30:55,540 --> 00:30:56,140 +like this. + +513 +00:30:58,700 --> 00:31:01,600 +Okay? And what is this? I have two strings on the + +514 +00:31:01,600 --> 00:31:03,600 +basis of what I want to print. I want to tell him + +515 +00:31:03,600 --> 00:31:07,880 +to print cylinder + +516 +00:31:07,880 --> 00:31:10,580 +with v. + +517 +00:31:11,780 --> 00:31:14,600 +When he prints the v, it will execute the two + +518 +00:31:14,600 --> 00:31:17,660 +strings. I'm still in classes, guys. I haven't + +519 +00:31:17,660 --> 00:31:19,280 +started working on the example yet. I'm still in + +520 +00:31:19,280 --> 00:31:22,980 +classes. Did you get it? I have the engine. + +521 +00:31:25,930 --> 00:31:31,670 +the engine has dependency which is cylinder C and + +522 +00:31:31,670 --> 00:31:43,810 +this also we pass it from outside and + +523 +00:31:43,810 --> 00:31:48,510 +this gives us two strings which + +524 +00:31:48,510 --> 00:31:53,350 +we return engine with C + +525 +00:31:58,380 --> 00:32:02,000 +ok guys, till now we will go to the second + +526 +00:32:02,000 --> 00:32:09,020 +category which is tire tire, + +527 +00:32:09,200 --> 00:32:18,060 +I will implement two strings to return the word + +528 +00:32:18,060 --> 00:32:23,200 +tire and + +529 +00:32:23,200 --> 00:32:27,200 +then the last class which is wheel The wheel has a + +530 +00:32:27,200 --> 00:32:33,160 +dependency that uses a tier inside it public wheel + +531 +00:32:33,160 --> 00:32:48,420 +here + +532 +00:32:48,420 --> 00:32:55,500 +wheel with T for + +533 +00:32:55,500 --> 00:32:56,120 +the last thing + +534 +00:33:03,170 --> 00:33:08,350 +the car has two dependencies it has engine E and + +535 +00:33:08,350 --> 00:33:14,810 +wheel W and the constructor of the car takes + +536 +00:33:14,810 --> 00:33:19,630 +engine E + +537 +00:33:19,630 --> 00:33:27,030 +with + +538 +00:33:27,030 --> 00:33:31,910 +me guys? and this is two strings I say return to + +539 +00:33:31,910 --> 00:33:31,950 +me + +540 +00:33:35,550 --> 00:33:45,510 +Car with E and W, it has two dependencies, Car + +541 +00:33:45,510 --> 00:33:49,050 +with E + +542 +00:33:49,050 --> 00:33:51,110 +and W Ok guys, we have completed the class, we + +543 +00:33:51,110 --> 00:33:53,710 +have made this tree Ok, now we come to the main + +544 +00:33:53,710 --> 00:33:57,590 +method Here is the difficulty, I want to create an + +545 +00:33:57,590 --> 00:34:01,300 +object from Car Yes, you have to know the chain + +546 +00:34:01,300 --> 00:34:03,760 +and understand it. If another programmer comes, he + +547 +00:34:03,760 --> 00:34:07,160 +won't know the whole map. For example, I have to + +548 +00:34:07,160 --> 00:34:10,500 +tell him to go and create a valve. Let's create + +549 +00:34:10,500 --> 00:34:13,940 +one object from the car. This is a valve. And + +550 +00:34:13,940 --> 00:34:16,000 +since you have created the valve, + +551 +00:34:19,660 --> 00:34:24,940 +you can create a cylinder. C equals new cylinder + +552 +00:34:24,940 --> 00:34:30,950 +and I give it the valve. And then engine, the + +553 +00:34:30,950 --> 00:34:33,770 +order is important, right or wrong guys? Engine + +554 +00:34:33,770 --> 00:34:39,050 +and this is C You can't start the car, there is + +555 +00:34:39,050 --> 00:34:42,650 +still the tire and the wheel Tire T equals new + +556 +00:34:42,650 --> 00:34:50,650 +tire Wheel W equals new wheel and this is T + +557 +00:34:53,530 --> 00:34:58,330 +because the last thing car car is equal to new car + +558 +00:34:58,330 --> 00:35:03,270 +and this takes E and W and we want to say system + +559 +00:35:03,270 --> 00:35:09,770 +.out.println of car because all this is to make + +560 +00:35:09,770 --> 00:35:11,890 +one object from car if you want to make another + +561 +00:35:11,890 --> 00:35:15,350 +object from car you have to write all these steps + +562 +00:35:18,030 --> 00:35:20,590 +We're supposed to do it this way, we applied it in + +563 +00:35:20,590 --> 00:35:23,550 +every dependency we passed through If we didn't + +564 +00:35:23,550 --> 00:35:25,030 +use dependency injection, it would have been + +565 +00:35:25,030 --> 00:35:26,710 +easier because I could have created these things + +566 +00:35:26,710 --> 00:35:32,130 +inside the class itself So Hyrule is a car with + +567 +00:35:32,130 --> 00:35:34,450 +engine with cylinder with valve and wheel with + +568 +00:35:34,450 --> 00:35:39,390 +tire My goal in this gate is to create the car + +569 +00:35:39,390 --> 00:35:43,490 +instead of doing all these steps in a single line + +570 +00:35:43,490 --> 00:35:46,650 +So we're going to use this gate as the juice + +571 +00:35:46,650 --> 00:35:49,430 +libraryThe first thing is how to add juice library + +572 +00:35:49,430 --> 00:35:52,990 +to the project Did you try to add it to an + +573 +00:35:52,990 --> 00:35:57,150 +external library? Yes, I tried to add it How did + +574 +00:35:57,150 --> 00:36:01,030 +you add it? From where? + +575 +00:36:03,010 --> 00:36:05,930 +What do you do? Tools, Options, + +576 +00:36:08,470 --> 00:36:13,090 +Germs, + +577 +00:36:13,430 --> 00:36:14,130 +and Libraries + +578 +00:36:17,290 --> 00:36:20,770 +Okay, what do you get? A link or a JAR file or + +579 +00:36:20,770 --> 00:36:25,870 +what? Okay, so you downloaded the library as a JAR + +580 +00:36:25,870 --> 00:36:29,550 +file, right? Yes, and you add it to your project, + +581 +00:36:29,830 --> 00:36:32,930 +okay? Or you can even, in short, from here, see + +582 +00:36:32,930 --> 00:36:36,170 +there is a library folder, okay? You can say add + +583 +00:36:37,280 --> 00:36:41,520 +jar and then you put the path of the file. But I + +584 +00:36:41,520 --> 00:36:44,320 +want to clarify something. Now adding libraries + +585 +00:36:44,320 --> 00:36:46,760 +through a jar file that you download is an old + +586 +00:36:46,760 --> 00:36:50,160 +trend. Why? Because the libraries have grown in + +587 +00:36:50,160 --> 00:36:55,960 +size and the library itself is dependent on it. on + +588 +00:36:55,960 --> 00:36:59,080 +other files. Sometimes the library is not just one + +589 +00:36:59,080 --> 00:37:03,040 +jar, you need 5-6 libraries. That's why big + +590 +00:37:03,040 --> 00:37:07,060 +projects stopped adding libraries. What did they + +591 +00:37:07,060 --> 00:37:10,740 +do? They put libraries on the server, and give you + +592 +00:37:10,740 --> 00:37:13,540 +a link, and tell you to add this link by yourself, + +593 +00:37:14,260 --> 00:37:16,820 +download the library, and download all the things + +594 +00:37:16,820 --> 00:37:19,140 +on which the library is based, and make an + +595 +00:37:19,140 --> 00:37:21,740 +automatic build, and make sure that the library is + +596 +00:37:21,740 --> 00:37:25,460 +doubled for what? For a project.Automatic building + +597 +00:37:25,460 --> 00:37:30,980 +frameworks such as Gradle + +598 +00:37:30,980 --> 00:37:33,880 +for Android users. Gradle can be connected to the + +599 +00:37:33,880 --> 00:37:37,160 +office and added to the Android project or + +600 +00:37:37,160 --> 00:37:41,700 +Flutter. Gradle is used in Android and Flutter. In + +601 +00:37:41,700 --> 00:37:46,050 +Laravel, there is something called Compose. You + +602 +00:37:46,050 --> 00:37:48,290 +give him the name of the library and he downloads + +603 +00:37:48,290 --> 00:37:50,330 +it from there. But this needs to have an internet + +604 +00:37:50,330 --> 00:37:52,890 +connection when you download the library. In + +605 +00:37:52,890 --> 00:37:55,270 +Python, for example, there is the command pip, pip + +606 +00:37:55,270 --> 00:37:58,170 +install. You also give him the library link or its + +607 +00:37:58,170 --> 00:38:01,250 +name and he downloads it and adds it to your + +608 +00:38:01,250 --> 00:38:08,670 +system and identifies the classes in it. Java also + +609 +00:38:08,670 --> 00:38:12,120 +has something called Maven. For the Maven, you + +610 +00:38:12,120 --> 00:38:15,720 +change the link to the office and it downloads it. + +611 +00:38:16,720 --> 00:38:19,280 +Because there is no internet connection here, I'm + +612 +00:38:19,280 --> 00:38:21,820 +not going to try the Maven. You can go and tell + +613 +00:38:21,820 --> 00:38:25,480 +it, for example, new project, you have a choice + +614 +00:38:25,480 --> 00:38:30,180 +here called Maven. Okay, you see it? We always + +615 +00:38:30,180 --> 00:38:34,420 +choose Java. I can choose what? Yes, the Maven. + +616 +00:38:34,880 --> 00:38:37,440 +What is the idea of ​​this Maven? It will, for + +617 +00:38:37,440 --> 00:38:41,810 +example, This is my new project, Maven, and it + +618 +00:38:41,810 --> 00:38:45,890 +brings you an xml file like this, on the basis + +619 +00:38:45,890 --> 00:38:50,370 +that in the xml file I add a link to the library, + +620 +00:38:50,690 --> 00:38:55,410 +and this link for example, I bring it from the + +621 +00:38:55,410 --> 00:38:57,770 +internet, it says if you want to add this library, + +622 +00:38:58,190 --> 00:39:03,790 +add this code, this link is com.google.inject, I + +623 +00:39:03,790 --> 00:39:08,300 +add this to the xml file, Which comes with the new + +624 +00:39:08,300 --> 00:39:12,500 +project I made, which is the pom file pom.xml For + +625 +00:39:12,500 --> 00:39:17,500 +example, I do something called dependencies here + +626 +00:39:17,500 --> 00:39:24,160 +Okay, + +627 +00:39:24,260 --> 00:39:27,720 +and I add it like this, I save it, and by itself, + +628 +00:39:27,840 --> 00:39:31,070 +as soon as I save itit will go to the library and + +629 +00:39:31,070 --> 00:39:33,170 +download it from there but it needs internet + +630 +00:39:33,170 --> 00:39:35,390 +connection and this is the idea that we do even in + +631 +00:39:35,390 --> 00:39:38,050 +android and flutter and others the idea is to add + +632 +00:39:38,050 --> 00:39:41,450 +as a jar this is what? yes this is it but + +633 +00:39:41,450 --> 00:39:43,810 +unfortunately we will not be able to try this way + +634 +00:39:43,810 --> 00:39:47,330 +so that's why I went to get our library as what? + +635 +00:39:47,790 --> 00:39:52,370 +as a jar file these are the files that I have as a + +636 +00:39:52,370 --> 00:39:57,180 +jar fileTamam هدول هم طبعا هدول كلهم لازمين لعمل + +637 +00:39:57,180 --> 00:40:03,520 +المكتبه مش jar واحد عندى تسعة لازمين وروح اضفتهم + +638 +00:40:03,520 --> 00:40:07,980 +على المشروع التابعى فى مجلة libraries وقلتله add + +639 +00:40:07,980 --> 00:40:13,240 +jar تمام وحددتله مصارى المجلة اللى فى ال jar files + +640 +00:40:13,240 --> 00:40:16,680 +وضفلياهم على المشروع عشان نبدأ نستخدم + +641 +00:40:19,130 --> 00:40:21,770 +dependency injection. Okay, let's go back to our + +642 +00:40:21,770 --> 00:40:24,750 +topic. I would like to know what our goal is to + +643 +00:40:24,750 --> 00:40:27,190 +build a single line. Because I know this sequence, + +644 +00:40:27,470 --> 00:40:30,410 +but others don't know this sequence. They tell me + +645 +00:40:30,410 --> 00:40:33,690 +very simply, everything you need to do is to give + +646 +00:40:33,690 --> 00:40:38,230 +the injector, the injector, what is the word + +647 +00:40:38,230 --> 00:40:40,710 +injector? The one that holds. Okay? The one that + +648 +00:40:40,710 --> 00:40:43,730 +is in this library. What are the constructors that + +649 +00:40:43,730 --> 00:40:46,870 +he wants to use? For example, I have a series that + +650 +00:40:46,870 --> 00:40:51,050 +starts from where? From Car Ok, we go to Car The + +651 +00:40:51,050 --> 00:40:53,850 +class Car And everything you have to do, no, not + +652 +00:40:53,850 --> 00:41:00,290 +this one This is Car Ok, this is the class Car + +653 +00:41:00,290 --> 00:41:02,930 +that we made Everything you have to do Where is + +654 +00:41:02,930 --> 00:41:06,050 +the constructor of it? Here, right? Put here + +655 +00:41:06,050 --> 00:41:10,330 +something called inject Write the word inject and + +656 +00:41:10,330 --> 00:41:15,040 +import it This is called annotation Ok For + +657 +00:41:15,040 --> 00:41:17,080 +example, I wrote a small symbol, which is like a + +658 +00:41:17,080 --> 00:41:20,420 +sign. Whose sign is it? The injector's sign. What + +659 +00:41:20,420 --> 00:41:23,280 +does it do on its own? It enters the constructors + +660 +00:41:23,280 --> 00:41:26,080 +and sees that the car needs an engine and a wheel. + +661 +00:41:26,440 --> 00:41:29,780 +On its own, where does it go? To the engine. We + +662 +00:41:29,780 --> 00:41:31,680 +don't remove the engine yet. It enters the engine. + +663 +00:41:31,800 --> 00:41:33,320 +What does it need? And so on and so forth. Until + +664 +00:41:33,320 --> 00:41:36,740 +it reaches the side of the tree. It removes what + +665 +00:41:36,740 --> 00:41:41,160 +it needs and continues. It is smart. Okay? But I + +666 +00:41:41,160 --> 00:41:43,160 +have to define it. I have to put this sign on the + +667 +00:41:43,160 --> 00:41:45,840 +constructor.Okay, this doesn't need engine and + +668 +00:41:45,840 --> 00:41:48,060 +wheel, go to engine. This is the first time you do + +669 +00:41:48,060 --> 00:41:50,900 +it. This is engine. Where is his constructor? This + +670 +00:41:50,900 --> 00:41:54,180 +is it. What do you do? Inject and import. + +671 +00:41:57,100 --> 00:42:02,740 +The engine needs cylinder. Go to cylinder and say + +672 +00:42:02,740 --> 00:42:03,060 +inject. + +673 +00:42:09,070 --> 00:42:11,950 +It needs a valve, because the valve has a load + +674 +00:42:11,950 --> 00:42:13,430 +from the constructor and that's it, it doesn't add + +675 +00:42:13,430 --> 00:42:17,390 +anything to it. But if we continue, you will find + +676 +00:42:17,390 --> 00:42:20,810 +that the car also needs a wheel. Okay? Turn on the + +677 +00:42:20,810 --> 00:42:24,090 +wheel. This has a constructor. What does it do? + +678 +00:42:29,450 --> 00:42:33,050 +The tire I don't need it because there is no + +679 +00:42:33,050 --> 00:42:36,030 +argument constructor So everything I did in this + +680 +00:42:36,030 --> 00:42:38,510 +guide, what did I do guys? Above the constructor, + +681 +00:42:38,670 --> 00:42:43,010 +I added the notation that is at inject How? + +682 +00:42:43,870 --> 00:42:48,990 +Yes exactly, okay? We finished this guide What do + +683 +00:42:48,990 --> 00:42:51,470 +we need to go to next? Right away This whole code + +684 +00:42:51,470 --> 00:42:55,710 +is a loss, we got tired of it Make a comment, + +685 +00:42:56,090 --> 00:42:58,350 +okay?I will say of course there is error because + +686 +00:42:58,350 --> 00:43:02,990 +there is no object car I will say car, car is + +687 +00:43:02,990 --> 00:43:07,070 +equal to what is the name of the library? juice I + +688 +00:43:07,070 --> 00:43:09,550 +will say create injector what does it mean? create + +689 +00:43:09,550 --> 00:43:14,210 +this string and say get instance from what do you + +690 +00:43:14,210 --> 00:43:19,290 +want? from car dot class okay? + +691 +00:43:20,390 --> 00:43:23,910 +in one line, who did I create? I created the car + +692 +00:43:25,890 --> 00:43:27,950 +How can we make sure that when I make a run, what + +693 +00:43:27,950 --> 00:43:29,950 +should I do? He should print it for me. He should + +694 +00:43:29,950 --> 00:43:32,750 +create the object. How does he know how to create? + +695 +00:43:33,930 --> 00:43:36,810 +By himself. He doesn't want a car, so he enters + +696 +00:43:36,810 --> 00:43:40,450 +the car. It's not a series.Where is the word + +697 +00:43:40,450 --> 00:43:42,710 +inject? He found it. Yes, he found the car needs + +698 +00:43:42,710 --> 00:43:44,650 +what? Engine and wheels. He said, no, I still + +699 +00:43:44,650 --> 00:43:46,850 +can't start the car. I have to go back and see + +700 +00:43:46,850 --> 00:43:49,370 +what are its needs. The engine. He went to the + +701 +00:43:49,370 --> 00:43:51,850 +engine. He found the engine has inject. The engine + +702 +00:43:51,850 --> 00:43:55,150 +needs what? Cylinder. He went to the cylinder and + +703 +00:43:55,150 --> 00:43:57,950 +found that the cylinder needs a valve. He went to + +704 +00:43:57,950 --> 00:43:59,470 +the valve and didn't need anything. He went to + +705 +00:43:59,470 --> 00:44:03,130 +start the valve and came back to the chain. He + +706 +00:44:03,130 --> 00:44:05,450 +started the cylinder and then went to the engine. + +707 +00:44:05,930 --> 00:44:08,820 +He still found the engine. Yes, that's it. Unchain + +708 +00:44:08,820 --> 00:44:11,860 +the engine and go back to the car. He found the + +709 +00:44:11,860 --> 00:44:13,920 +car with the wheels. See how he does it by + +710 +00:44:13,920 --> 00:44:20,840 +himself. I just went and did one line in + +711 +00:44:20,840 --> 00:44:23,780 +the main method. I told him in this way and he did + +712 +00:44:23,780 --> 00:44:25,920 +the class by himself. + +713 +00:44:30,080 --> 00:44:32,820 +This is the Dependency Injection Framework. The + +714 +00:44:32,820 --> 00:44:37,330 +juice is running like this and the spring And the + +715 +00:44:37,330 --> 00:44:41,490 +service injector in Laravel All of this worked in + +716 +00:44:41,490 --> 00:44:43,810 +a way that the code was different, but the idea + +717 +00:44:43,810 --> 00:44:46,570 +was similar And most of them relied on annotations + +718 +00:44:46,570 --> 00:44:51,110 +Of course, we are not done yet Now, we want to see + +719 +00:44:51,110 --> 00:44:53,250 +what will happen if we change some of the things + +720 +00:44:53,250 --> 00:44:55,670 +that we want to change. I will explain this in the + +721 +00:44:55,670 --> 00:44:58,930 +next lecture. We agreed that it is better to + +722 +00:44:58,930 --> 00:45:01,670 +design based on interface. What does this mean? + +723 +00:45:02,050 --> 00:45:04,870 +For example, now I don't want to put a wheel. I + +724 +00:45:04,870 --> 00:45:05,930 +want to make this wheel interface instead of + +725 +00:45:05,930 --> 00:45:06,470 +class. + +726 +00:45:10,490 --> 00:45:12,850 +Now the wheel depends on the wheel and I want to + +727 +00:45:12,850 --> 00:45:15,870 +find methods in the wheel. But since this is an + +728 +00:45:15,870 --> 00:45:18,680 +interface, I can't create an object from it.Why do + +729 +00:45:18,680 --> 00:45:19,040 +I do it? + +730 +00:45:22,080 --> 00:45:25,980 +So that we can make classes + +731 +00:45:25,980 --> 00:45:28,100 +out of it, right or wrong? For example, this one + +732 +00:45:28,100 --> 00:45:32,900 +is called big tire and this one is called small + +733 +00:45:32,900 --> 00:45:42,540 +tire and I can make a MOOCTire, not the idea of + +734 +00:45:42,540 --> 00:45:45,180 +the existence of an interface where I can replace + +735 +00:45:45,180 --> 00:45:47,920 +one object with another. This is the real thing, + +736 +00:45:48,360 --> 00:45:51,500 +for example. Did you find the wheel that will + +737 +00:45:51,500 --> 00:45:55,780 +create an object from whom? From a big tire. If + +738 +00:45:55,780 --> 00:45:59,340 +this becomes an interface, this thing will not + +739 +00:45:59,340 --> 00:46:01,780 +work. Why? Because it will create an object. It + +740 +00:46:01,780 --> 00:46:04,040 +will tell you what you want. Is there this, or + +741 +00:46:04,040 --> 00:46:07,080 +this, or this? I have to define what it creates. + +742 +00:46:09,960 --> 00:46:15,220 +So if I want to make this move, I go to the tier + +743 +00:46:15,220 --> 00:46:19,240 +and make it interface + +744 +00:46:19,240 --> 00:46:22,440 +And of course I can't put method, so I left it + +745 +00:46:22,440 --> 00:46:26,180 +blank But I left it interface And I went to the + +746 +00:46:26,180 --> 00:46:27,720 +main and told it to make run + +747 +00:46:31,620 --> 00:46:35,600 +No implementation for tire was bound. I don't know + +748 +00:46:35,600 --> 00:46:40,220 +what to do. Can an object be created from an + +749 +00:46:40,220 --> 00:46:43,080 +interface? No. So I want to tell him what to + +750 +00:46:43,080 --> 00:46:45,800 +create. I want to tell him that if the interface + +751 +00:46:45,800 --> 00:46:50,620 +is tire, who will create it? Big tireIf he wants + +752 +00:46:50,620 --> 00:46:53,140 +to replace it, I will tell him to remove the big + +753 +00:46:53,140 --> 00:46:55,980 +tire and replace it with a mock tire Just like the + +754 +00:46:55,980 --> 00:46:58,600 +idea of having a real database and a mock file to + +755 +00:46:58,600 --> 00:47:01,120 +bring me fake data So this is one of the things we + +756 +00:47:01,120 --> 00:47:04,420 +will try next time, how to design a base interface + +757 +00:47:04,420 --> 00:47:07,640 +and keep achieving dependency injection, which is + +758 +00:47:07,640 --> 00:47:11,260 +to create it automatically Also, one of the other + +759 +00:47:11,260 --> 00:47:15,790 +problems I decided that I have to go to every + +760 +00:47:15,790 --> 00:47:18,890 +constructor and write above it Inject Suppose I + +761 +00:47:18,890 --> 00:47:23,050 +use an external library, I don't have the code I + +762 +00:47:23,050 --> 00:47:25,390 +can access it, but I don't have the code to write + +763 +00:47:25,390 --> 00:47:28,370 +the word inject So how can I use the external + +764 +00:47:28,370 --> 00:47:30,390 +library? And this is the reality, this is what I'm + +765 +00:47:30,390 --> 00:47:33,250 +telling you, experience When you make a tree like + +766 +00:47:33,250 --> 00:47:37,240 +this You will gather libraries and use them, right + +767 +00:47:37,240 --> 00:47:40,480 +or wrong? But how? There must be a word injected + +768 +00:47:40,480 --> 00:47:43,300 +on top of the constructor to create this tree. I + +769 +00:47:43,300 --> 00:47:45,240 +don't have the code of the library, how can I + +770 +00:47:45,240 --> 00:47:48,000 +create it? This is also one of the things that we + +771 +00:47:48,000 --> 00:47:50,680 +will see in the next lecture. If the constructor + +772 +00:47:50,680 --> 00:47:53,300 +is not a no-argument, it takes parameters, what + +773 +00:47:53,300 --> 00:47:56,900 +will we do? We will continue in the topic of + +774 +00:47:56,900 --> 00:47:59,460 +Demand-Based Injections and see how to create the + +775 +00:47:59,460 --> 00:48:02,950 +class CarEven if I have an interface, even if + +776 +00:48:02,950 --> 00:48:05,170 +there are parameters for the constructor, even if + +777 +00:48:05,170 --> 00:48:08,450 +I used an external library. God bless you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/JjtUl0IeLFU.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/JjtUl0IeLFU.srt new file mode 100644 index 0000000000000000000000000000000000000000..7271441fd3d31e225cd2c8b85efeb2c2f850d939 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/JjtUl0IeLFU.srt @@ -0,0 +1,2067 @@ + +1 +00:00:05,210 --> 00:00:08,970 +Ok guys, peace be upon you Today, God willing, + +2 +00:00:09,110 --> 00:00:11,790 +guys, we will continue the explanation of the + +3 +00:00:11,790 --> 00:00:14,930 +proxy pattern to see its elderly ground and other + +4 +00:00:14,930 --> 00:00:19,510 +uses of it In the last lecture, we talked about + +5 +00:00:19,510 --> 00:00:21,310 +the proxy pattern and we said that it is very + +6 +00:00:21,310 --> 00:00:23,970 +similar to the decorator It is really like the + +7 +00:00:23,970 --> 00:00:26,150 +idea of ​​the decorator that I have an object that + +8 +00:00:26,150 --> 00:00:29,750 +covers another object But why did he make another + +9 +00:00:29,750 --> 00:00:31,610 +design pattern? Because the goal is only to be + +10 +00:00:31,610 --> 00:00:34,150 +different from the goal of the proxy about the + +11 +00:00:34,150 --> 00:00:35,330 +goal of the decorator. The goal of the decorator + +12 +00:00:35,330 --> 00:00:37,730 +was to wrap an object with the goal of adding + +13 +00:00:37,730 --> 00:00:41,790 +additional functionality. But the proxy is to wrap + +14 +00:00:41,790 --> 00:00:45,170 +an object with the goal of controlling this object + +15 +00:00:45,170 --> 00:00:49,390 +and controlling it in a larger way. An example of + +16 +00:00:49,390 --> 00:00:51,910 +this, we saw in the previous lecture, is that when + +17 +00:00:51,910 --> 00:00:54,110 +I made an image gallery program that displayed a + +18 +00:00:54,110 --> 00:00:57,150 +group of images, and this program would load the + +19 +00:00:57,150 --> 00:01:00,500 +images as an image icon. The problem with image + +20 +00:01:00,500 --> 00:01:03,180 +icons is that when we used to create loops on the + +21 +00:01:03,180 --> 00:01:05,000 +paths of images and give them the name of the + +22 +00:01:05,000 --> 00:01:08,180 +image or the path of the image, when an object was + +23 +00:01:08,180 --> 00:01:10,060 +created, an image icon, it was a costly object. + +24 +00:01:10,820 --> 00:01:14,040 +Its creation takes up space in the memory. So if + +25 +00:01:14,040 --> 00:01:15,760 +you create 100 images, it means that 100 images + +26 +00:01:15,760 --> 00:01:17,720 +will be stored in the memory whether you show them + +27 +00:01:17,720 --> 00:01:20,440 +or not. You actually stored the image, but you + +28 +00:01:20,440 --> 00:01:26,440 +only showed one image. So we made a trick that we + +29 +00:01:26,440 --> 00:01:29,980 +wanted to delay the creation of this object.we + +30 +00:01:29,980 --> 00:01:32,120 +want to change it, but at the same time, I don't + +31 +00:01:32,120 --> 00:01:35,100 +want to change too much in my app so what did I + +32 +00:01:35,100 --> 00:01:37,860 +do? I created a new class called ImageProxy that + +33 +00:01:37,860 --> 00:01:41,160 +covers the image icon because the image is + +34 +00:01:41,160 --> 00:01:44,160 +basically an image icon, okay? so I created an + +35 +00:01:44,160 --> 00:01:46,540 +imaginary object or an imaginary class called + +36 +00:01:46,540 --> 00:01:50,160 +ImageProxy that covers the image icon all the idea + +37 +00:01:50,160 --> 00:01:52,900 +that exists is that I don't really want to create + +38 +00:01:52,900 --> 00:01:58,070 +the image icon unless I need toOkay? So in the + +39 +00:01:58,070 --> 00:02:00,450 +image proxy, the new class that I created, its + +40 +00:02:00,450 --> 00:02:04,430 +constructor does not create an object from an + +41 +00:02:04,430 --> 00:02:07,850 +image icon, it only sends a string to the image + +42 +00:02:07,850 --> 00:02:11,730 +and stores this string. So if I create a thousand + +43 +00:02:11,730 --> 00:02:14,290 +image proxies, they will not take anything from + +44 +00:02:14,290 --> 00:02:17,050 +the memory because each object is just a string, + +45 +00:02:17,190 --> 00:02:21,120 +which is the image string.Okay, actually image + +46 +00:02:21,120 --> 00:02:23,960 +proxy is not the image, right or not? There is no + +47 +00:02:23,960 --> 00:02:26,280 +image data, it wraps the image icon which is still + +48 +00:02:26,280 --> 00:02:30,440 +null, okay? When is the image icon actually + +49 +00:02:30,440 --> 00:02:32,640 +created? Because the image icon, when you go to + +50 +00:02:32,640 --> 00:02:34,480 +load the image, which is at the moment when you + +51 +00:02:34,480 --> 00:02:37,220 +click next and previous, and when he goes to paint + +52 +00:02:37,220 --> 00:02:40,480 +it, I tell him in this case, if you find the image + +53 +00:02:40,480 --> 00:02:43,900 +icon null, go and create it. So actually I delayed + +54 +00:02:43,900 --> 00:02:45,840 +the creation of the image icon for the moment I + +55 +00:02:45,840 --> 00:02:50,630 +need it. Now for the client, I made him use the + +56 +00:02:50,630 --> 00:02:53,470 +image proxy instead of the image icon. And he will + +57 +00:02:53,470 --> 00:02:58,330 +accept it because both are the same. Let's read + +58 +00:02:58,330 --> 00:03:00,690 +what is written here. Sometimes we need the + +59 +00:03:00,690 --> 00:03:05,710 +ability to control the access to an object. + +60 +00:03:06,290 --> 00:03:10,150 +For example, if we need to use only a few methods + +61 +00:03:10,150 --> 00:03:14,800 +of some cost objects,I have a costly object and it + +62 +00:03:14,800 --> 00:03:17,480 +costs a lot to create it and I need to use a + +63 +00:03:17,480 --> 00:03:23,040 +method from this object because in order to use + +64 +00:03:23,040 --> 00:03:25,120 +this method I need to create the object and this + +65 +00:03:25,120 --> 00:03:29,400 +object is costly so it costs me the idea now is + +66 +00:03:29,400 --> 00:03:33,440 +the solution until + +67 +00:03:33,440 --> 00:03:37,040 +that point when we need to use the method we can + +68 +00:03:37,040 --> 00:03:40,100 +use some light objects exposing the same interface + +69 +00:03:40,100 --> 00:03:45,620 +as the heavy objectsUntil you need the method to + +70 +00:03:45,620 --> 00:03:48,920 +claim it, I don't need the method. I created the + +71 +00:03:48,920 --> 00:03:54,000 +cost object and loaded it in my memory to claim + +72 +00:03:54,000 --> 00:03:56,620 +the method. Just like the image icon, we loaded it + +73 +00:03:56,620 --> 00:04:01,510 +in memory but we didn't show the image. until that + +74 +00:04:01,510 --> 00:04:06,050 +point + +75 +00:04:06,050 --> 00:04:13,350 +we can use some light objects exposing + +76 +00:04:13,350 --> 00:04:20,830 +the same interface as the heavy object these light + +77 +00:04:20,830 --> 00:04:25,210 +objects are called Proxies. In our example, the + +78 +00:04:25,210 --> 00:04:28,150 +image proxy is this light object, which has the + +79 +00:04:28,150 --> 00:04:30,830 +same interface as the image icon. Both of them are + +80 +00:04:30,830 --> 00:04:34,910 +image icons. So what do these light objects do? + +81 +00:04:35,030 --> 00:04:38,570 +These light objects are called proxies, and they + +82 +00:04:38,570 --> 00:04:42,090 +will instantiate those heavy objects when they are + +83 +00:04:42,090 --> 00:04:47,250 +really needed. This light object actually wraps + +84 +00:04:47,250 --> 00:04:50,380 +the heavy object.What I mean by that is the + +85 +00:04:50,380 --> 00:04:53,020 +important thing is the wrapped object inside. This + +86 +00:04:53,020 --> 00:04:54,820 +image approximate is the image. Am I right or not + +87 +00:04:54,820 --> 00:04:59,380 +guys? Because this is the important point. Light + +88 +00:04:59,380 --> 00:05:03,120 +object will instantiate those heavy objects when + +89 +00:05:03,120 --> 00:05:05,700 +they are really needed and by then we will use + +90 +00:05:05,700 --> 00:05:08,880 +some light objects instead. The client uses the + +91 +00:05:08,880 --> 00:05:13,800 +light object like the image icon, but actually the + +92 +00:05:13,800 --> 00:05:16,800 +wrapped object is what is created at the moment of + +93 +00:05:16,800 --> 00:05:22,780 +display of the image.Now, of course, I couldn't + +94 +00:05:22,780 --> 00:05:24,960 +read this sentence without looking at the example. + +95 +00:05:25,760 --> 00:05:27,400 +Right or wrong? If I didn't explain the example + +96 +00:05:27,400 --> 00:05:28,680 +and read the sentence, you won't understand what + +97 +00:05:28,680 --> 00:05:30,160 +is light and what is heavy. But with the example, + +98 +00:05:30,880 --> 00:05:33,880 +the sentence should be clearer. Now, the ability + +99 +00:05:33,880 --> 00:05:36,280 +to control the access to an object can be required + +100 +00:05:36,280 --> 00:05:40,260 +for a variety of reasons. Now, the ability to + +101 +00:05:40,260 --> 00:05:42,660 +control the access to an object is necessary in + +102 +00:05:42,660 --> 00:05:46,200 +multiple cases.What are these cases? The first + +103 +00:05:46,200 --> 00:05:48,600 +case is controlling when a caustic object needs to + +104 +00:05:48,600 --> 00:05:51,960 +be instantiated and initialized. The first case is + +105 +00:05:51,960 --> 00:05:55,140 +controlling when a caustic object is created. This + +106 +00:05:55,140 --> 00:05:57,380 +is similar to the example that we presented. Now + +107 +00:05:57,380 --> 00:06:00,640 +he is explaining what are the cases that need a + +108 +00:06:00,640 --> 00:06:03,640 +proxy pattern. The first case is to create a + +109 +00:06:03,640 --> 00:06:07,010 +virtual object that covers a real object.in order + +110 +00:06:07,010 --> 00:06:09,090 +to delay the creation of the real object at the + +111 +00:06:09,090 --> 00:06:11,990 +moment of need. Like the idea of singleton, I + +112 +00:06:11,990 --> 00:06:14,670 +don't create it when I don't need it yet. I don't + +113 +00:06:14,670 --> 00:06:17,490 +create the image when I don't show it yet. When I + +114 +00:06:17,490 --> 00:06:20,570 +show it at the moment, I let it create it. So this + +115 +00:06:20,570 --> 00:06:23,750 +is the first case. We only came up with a case + +116 +00:06:23,750 --> 00:06:27,010 +when we had to use the proxy pattern. What are the + +117 +00:06:27,010 --> 00:06:30,170 +other cases? The other cases give you different + +118 +00:06:30,170 --> 00:06:33,970 +access rights to an object.it gives the ability to + +119 +00:06:33,970 --> 00:06:36,130 +access the object we talked about in the previous + +120 +00:06:36,130 --> 00:06:38,810 +lecture when we explained in the beginning about + +121 +00:06:38,810 --> 00:06:42,650 +the proxy that I can have an object that has x, y + +122 +00:06:42,650 --> 00:06:46,810 +and z methods and I want the client to cancel this + +123 +00:06:46,810 --> 00:06:51,910 +z or delete the existing code I can actually wrap + +124 +00:06:51,910 --> 00:06:55,290 +it with an object of the same type put x and y and + +125 +00:06:55,290 --> 00:06:59,110 +don't put anything else zOf course this X will + +126 +00:06:59,110 --> 00:07:02,150 +make forward to whom? To the X inside and Y is the + +127 +00:07:02,150 --> 00:07:06,910 +same thing Z can be put empty on the basis that + +128 +00:07:06,910 --> 00:07:10,910 +the client keeps seeing this like this but the + +129 +00:07:10,910 --> 00:07:13,190 +method makes it empty or doesn't make forward as + +130 +00:07:13,190 --> 00:07:17,310 +if you blocked whom? This method In this second + +131 +00:07:17,310 --> 00:07:19,730 +case which is giving different access rights on + +132 +00:07:19,730 --> 00:07:23,490 +objectThe third case, as well as providing + +133 +00:07:23,490 --> 00:07:26,370 +sophisticated means of accessing and referencing + +134 +00:07:26,370 --> 00:07:29,410 +objects running in other processes or other + +135 +00:07:29,410 --> 00:07:34,190 +machines, which is to provide a way to access + +136 +00:07:34,190 --> 00:07:39,970 +objects on another process or machine. We will + +137 +00:07:39,970 --> 00:07:42,570 +talk about this point in a moment. The last point, + +138 +00:07:42,730 --> 00:07:47,210 +the third use of the proxy. Today, the diagram of + +139 +00:07:47,210 --> 00:07:48,890 +the proxy is very similar to that of the + +140 +00:07:48,890 --> 00:07:53,210 +decorator. I have this real subject, the object + +141 +00:07:53,210 --> 00:07:55,930 +that I want to control its access to, delay its + +142 +00:07:55,930 --> 00:07:59,270 +creation, it is a kind of subject, it is an + +143 +00:07:59,270 --> 00:08:02,710 +implementable interface I actually create a class + +144 +00:08:02,710 --> 00:08:06,390 +called proxy of the subject type and at the same + +145 +00:08:06,390 --> 00:08:10,130 +time it wraps the real subject and the same method + +146 +00:08:10,130 --> 00:08:13,190 +in the real subject is present in the do operation + +147 +00:08:13,190 --> 00:08:16,270 +but here of course there is a code that does not + +148 +00:08:16,270 --> 00:08:21,450 +control the subject In the end, this is the client + +149 +00:08:21,450 --> 00:08:24,930 +that will deal with the real subject It will deal + +150 +00:08:24,930 --> 00:08:26,930 +with the proxy in the same way because both of + +151 +00:08:26,930 --> 00:08:32,930 +them are the same type of interface Because + +152 +00:08:32,930 --> 00:08:35,530 +this explains today what diagram is left for you + +153 +00:08:35,530 --> 00:08:39,270 +This is also regular talk that explains how the + +154 +00:08:39,270 --> 00:08:44,710 +proxy works One of the most famous proxy + +155 +00:08:44,710 --> 00:08:49,790 +applications in the case of web services Or a + +156 +00:08:49,790 --> 00:08:51,970 +specific case that we call Remote Method + +157 +00:08:51,970 --> 00:08:55,430 +Invocation What is the word Remote? Remote. + +158 +00:08:55,550 --> 00:08:59,770 +Method. Remote method. Invocation. Invocation. + +159 +00:08:59,890 --> 00:09:00,250 +Remote method. + +160 +00:09:08,950 --> 00:09:09,670 +Invocation. Invocation. Invocation. Invocation. + +161 +00:09:09,670 --> 00:09:09,850 +Invocation. Invocation. Invocation. Invocation. + +162 +00:09:09,850 --> 00:09:09,950 +Invocation. Invocation. Invocation. Invocation. + +163 +00:09:09,950 --> 00:09:12,070 +Invocation. Invocation. Invocation. Inv + +164 +00:09:17,360 --> 00:09:20,720 +But let's give an introduction and explain what + +165 +00:09:20,720 --> 00:09:25,240 +web services are Now it is known that applications + +166 +00:09:25,240 --> 00:09:32,000 +are distributed on devices For example, a company + +167 +00:09:32,000 --> 00:09:34,660 +or an institution wants to make an application for + +168 +00:09:34,660 --> 00:09:39,640 +it It first makes a website and then makes a + +169 +00:09:39,640 --> 00:09:42,860 +mobile application And the principle is that the + +170 +00:09:42,860 --> 00:09:45,080 +mobile application and the website share the same + +171 +00:09:45,080 --> 00:09:48,120 +data I mean, I want to make a marketing program + +172 +00:09:48,120 --> 00:09:51,040 +whether you browse through the mobile application + +173 +00:09:51,040 --> 00:09:54,080 +or through the website Of course, the same data + +174 +00:09:54,080 --> 00:09:57,520 +will be available So actually, I have a website Of + +175 +00:09:57,520 --> 00:10:02,750 +course, the website is based on a database Okay? + +176 +00:10:03,470 --> 00:10:05,590 +And I read from it and I show it for example in + +177 +00:10:05,590 --> 00:10:09,330 +the pages that I have on the website. Now, I also + +178 +00:10:09,330 --> 00:10:12,490 +want to make a mobile application. Let's call this + +179 +00:10:12,490 --> 00:10:16,730 +mobile device. Of course, the mobile device must + +180 +00:10:16,730 --> 00:10:21,360 +make a connection to the server. Now, how do + +181 +00:10:21,360 --> 00:10:26,120 +devices communicate with each other? Now, there + +182 +00:10:26,120 --> 00:10:29,060 +are different ways. There are ways using sockets. + +183 +00:10:29,260 --> 00:10:32,000 +You make a socket that connects to a certain port + +184 +00:10:32,000 --> 00:10:34,120 +and sends a message and receives a response from + +185 +00:10:34,120 --> 00:10:41,320 +the server. But today, all communication between + +186 +00:10:41,320 --> 00:10:46,160 +devices and applications is mostly done on the + +187 +00:10:46,160 --> 00:10:47,620 +HTTP protocol. + +188 +00:10:51,900 --> 00:10:56,200 +Through the internet network, through the HTTP + +189 +00:10:56,200 --> 00:10:59,880 +protocol, which is the same protocol that you use + +190 +00:10:59,880 --> 00:11:02,620 +when browsing the internet, when you type url and + +191 +00:11:02,620 --> 00:11:04,600 +press enter, this request goes to the server, + +192 +00:11:05,200 --> 00:11:06,940 +brings you the content of the page and returns it + +193 +00:11:06,940 --> 00:11:13,400 +to you. This is done through port 80 or 8080. What + +194 +00:11:13,400 --> 00:11:14,800 +is the advantage of communication through HTTP + +195 +00:11:14,800 --> 00:11:17,780 +protocol? Communication is secure because the port + +196 +00:11:17,780 --> 00:11:21,600 +on the internet is always open. Now companies and + +197 +00:11:21,600 --> 00:11:23,360 +institutions, because of security issues, close + +19 + +223 +00:12:52,510 --> 00:12:56,350 +prepares the result page for it and returns it to + +224 +00:12:56,350 --> 00:12:57,930 +it. But of course, the data is not returned as + +225 +00:12:57,930 --> 00:13:05,130 +HTML. HTML is made for human processing, to show a + +226 +00:13:05,130 --> 00:13:08,290 +visible page. But when devices communicate with + +227 +00:13:08,290 --> 00:13:12,510 +each other, the data is returned as a form that + +228 +00:13:12,510 --> 00:13:15,390 +the machine can understand. For example, like + +229 +00:13:15,390 --> 00:13:20,150 +JSON and XML, did you hear about JSON and XML? + +230 +00:13:20,670 --> 00:13:26,210 +It's just a way to represent data. For example, I + +231 +00:13:26,210 --> 00:13:34,160 +want a person, I want the employee Ok, his ID is + +232 +00:13:34,160 --> 00:13:37,660 +53. This request reaches the server. This server + +233 +00:13:37,660 --> 00:13:41,000 +reaches the URL. It takes 53 and queries the + +234 +00:13:41,000 --> 00:13:43,580 +database. There is a code here. Select from + +235 +00:13:43,580 --> 00:13:46,360 +database. This is the ID of the employee. It gets + +236 +00:13:46,360 --> 00:13:48,180 +his information. Ok, who should this information + +237 +00:13:48,180 --> 00:13:51,040 +go back to? To the server. Why should it go back + +238 +00:13:51,040 --> 00:13:54,960 +to HTML? It goes back to either JSON or XML. Can I + +239 +00:13:54,960 --> 00:13:57,100 +enter the employee's data? For example, it was + +240 +00:13:57,100 --> 00:14:04,410 +Ali, 17. Yes, three, two, for example. So I got + +241 +00:14:04,410 --> 00:14:07,470 +these data. Do you understand what this is? These + +242 +00:14:07,470 --> 00:14:09,370 +are the employee's data. There is no explanation + +243 +00:14:09,370 --> 00:14:12,230 +for it. Okay, I understand, this is a name. But + +244 +00:14:12,230 --> 00:14:14,390 +what is seventeen? This is his age, the address + +245 +00:14:14,390 --> 00:14:17,270 +where he lives, he has seventeen children. Yes, + +246 +00:14:17,870 --> 00:14:20,310 +no, no, three, what is three? He has three + +247 +00:14:20,310 --> 00:14:23,150 +children, married three, I don't know what this + +248 +00:14:23,150 --> 00:14:25,890 +is. So I found that we need another information to + +249 +00:14:25,890 --> 00:14:28,490 +explain what this is. So we can say for example, + +250 +00:14:28,730 --> 00:14:35,930 +put key name, two dots like this, comma, age, two + +251 +00:14:35,930 --> 00:14:42,050 +dots, number of children, like this, okay? This is + +252 +00:14:42,050 --> 00:14:46,490 +the shape of the JSON file. JSON is what? Key and + +253 +00:14:46,490 --> 00:14:50,610 +value, okay? Key can have more than value, okay? + +254 +00:14:51,740 --> 00:14:55,680 +It's JSON object, JSON array It's a way to + +255 +00:14:55,680 --> 00:14:57,960 +represent the data Of course, this is for the + +256 +00:14:57,960 --> 00:15:01,560 +machine to read it It's not HTML, HTML is for the + +257 +00:15:01,560 --> 00:15:07,420 +user to see it This is like JSON Another way is + +258 +00:15:07,420 --> 00:15:10,960 +XML What's different from this? Nothing Instead of + +259 +00:15:10,960 --> 00:15:12,920 +writing a key before it, you put a tag before it + +260 +00:15:12,920 --> 00:15:16,940 +You say this is name and here is slash Name, + +261 +00:15:17,020 --> 00:15:19,700 +another way, but they use tags Here they use key + +262 +00:15:20,600 --> 00:15:23,540 +and value, okay? So it returns the data either as + +263 +00:15:23,540 --> 00:15:28,240 +xml or as json And then what does the client do? + +264 +00:15:30,280 --> 00:15:33,420 +In the client, it sends the data as json, it + +265 +00:15:33,420 --> 00:15:37,640 +extracts the data from the json, okay? And then it + +266 +00:15:37,640 --> 00:15:40,740 +shows it to you in the application Because this is + +267 +00:15:40,740 --> 00:15:43,020 +really the idea of how devices communicate with + +268 +00:15:43,020 --> 00:15:48,930 +the server Now, this process can be difficult to + +269 +00:15:48,930 --> 00:15:52,470 +do. For example, someone asks you how to create a + +270 +00:15:52,470 --> 00:15:55,130 +web service. Very simply, a web service is a page + +271 +00:15:55,130 --> 00:16:02,160 +with a link. The result of the page is JSON. It's + +272 +00:16:02,160 --> 00:16:05,220 +a simple web service, and if you create a page, + +273 +00:16:05,680 --> 00:16:10,320 +the link will look like this, slash, etc, etc, + +274 +00:16:10,400 --> 00:16:13,460 +domain, persons, etc, and here you send it the id, + +275 +00:16:13,960 --> 00:16:18,420 +for example. It can be slash 53, or it can even be + +276 +00:16:18,420 --> 00:16:23,480 +another form, for example, ID equals 53, whatever + +277 +00:16:23,480 --> 00:16:25,560 +the form of the link. The point is that this + +278 +00:16:25,560 --> 00:16:27,980 +request reaches the server, and the server knows + +279 +00:16:27,980 --> 00:16:31,880 +how to In PHP, it takes the parameters in the + +280 +00:16:31,880 --> 00:16:35,240 +request and then makes a query on the database. It + +281 +00:16:35,240 --> 00:16:38,140 +gets the data and forms it as JSON. JSON is text. + +282 +00:16:38,640 --> 00:16:41,900 +Or it makes a return to the server. But in real + +283 +00:16:41,900 --> 00:16:46,320 +applications, the number of requests can be large. + +284 +00:16:46,440 --> 00:16:50,480 +For example, this mobile device needs a certain + +285 +00:16:50,480 --> 00:16:54,140 +product. So it says, for example, slash products. + +286 +00:16:55,640 --> 00:17:03,320 +on their ID it could be slash products on for + +287 +00:17:03,320 --> 00:17:07,200 +example what + +288 +00:17:07,200 --> 00:17:13,420 +products are there? fruits right? + +289 +00:17:14,200 --> 00:17:18,000 +here what happened is like a category right? to + +290 +00:17:18,000 --> 00:17:21,280 +give you all the categories that are there it + +291 +00:17:21,280 --> 00:17:27,450 +could be slash persons by sending him the ID. It + +292 +00:17:27,450 --> 00:17:31,650 +can be a slash delivery. + +293 +00:17:34,530 --> 00:17:39,630 +Okay? The point is that mobile applications have + +294 +00:17:39,630 --> 00:17:41,710 +many screens, and each screen has different data. + +295 +00:17:43,250 --> 00:17:45,970 +So, each different data that he wants to request + +296 +00:17:45,970 --> 00:17:49,480 +must have a link. It's different, okay? For + +297 +00:17:49,480 --> 00:17:50,420 +example, I might need to request a certain number + +298 +00:17:50,420 --> 00:17:53,540 +of links during my application. 20 links, each + +299 +00:17:53,540 --> 00:17:57,120 +link represents a different request for data. It's + +300 +00:17:57,120 --> 00:17:59,780 +different, are you with me? This means that you + +301 +00:17:59,780 --> 00:18:01,140 +want to go to the server and create how many + +302 +00:18:01,140 --> 00:18:05,060 +pages? Approximately 20 pages in the number of + +303 +00:18:05,060 --> 00:18:07,460 +links. So what did Valgate do? They created + +304 +00:18:07,460 --> 00:18:11,980 +libraries that made it easier for us to know how + +305 +00:18:11,980 --> 00:18:17,890 +to create a web service and how to download it.I + +306 +00:18:17,890 --> 00:18:21,890 +will make it simple for you. This is what you call + +307 +00:18:21,890 --> 00:18:26,550 +in companies to make API. What is API? This name + +308 +00:18:26,550 --> 00:18:32,370 +is not accurate. The word API is short for what? + +309 +00:18:34,630 --> 00:18:38,850 +Abstract Programmable Interface. It is a interface + +310 +00:18:38,850 --> 00:18:43,370 +through which you connect to the application. Any + +311 +00:18:43,370 --> 00:18:46,370 +library that you create and provide methods or + +312 +00:18:46,370 --> 00:18:48,990 +classes that tell the client to use these classes + +313 +00:18:48,990 --> 00:18:51,090 +and methods in order to execute the operations + +314 +00:18:51,090 --> 00:18:55,630 +that you want, this is considered an API. When you + +315 +00:18:55,630 --> 00:18:57,930 +say that you provide a simple class and simple + +316 +00:18:57,930 --> 00:19:02,030 +methods through which the internal methods in the + +317 +00:19:02,030 --> 00:19:03,390 +library are created, this is considered an API. + +318 +00:19:05,020 --> 00:19:06,820 +Why do I call it abstract? Because it's + +319 +00:19:06,820 --> 00:19:12,480 +simplified. Okay? Short, miraculous. Okay? The API + +320 +00:19:12,480 --> 00:19:15,620 +we use for any interface, for any programming + +321 +00:19:15,620 --> 00:19:17,620 +interface, for a library that I use locally or on + +322 +00:19:17,620 --> 00:19:20,780 +the server, this is considered an API. Okay? But + +323 +00:19:20,780 --> 00:19:23,380 +what did they call it? It started to express + +324 +00:19:23,380 --> 00:19:26,140 +itself on the web service and call it API. Okay? + +325 +00:19:26,600 --> 00:19:28,380 +It's true that you make a programming interface, + +326 +00:19:29,700 --> 00:19:32,700 +Right? In the end, so that you can connect to the + +327 +00:19:32,700 --> 00:19:36,220 +server from your mobile device. But in the end, we + +328 +00:19:36,220 --> 00:19:39,500 +call it a web service. The word API is more + +329 +00:19:39,500 --> 00:19:41,920 +general than that. Anyway, let's go back to our + +330 +00:19:41,920 --> 00:19:44,040 +topic. Did you notice that making a web service is + +331 +00:19:44,040 --> 00:19:46,780 +a bit difficult? Because you really want to have + +332 +00:19:46,780 --> 00:19:49,760 +20 different links and each link has 20 pages + +333 +00:19:49,760 --> 00:19:52,480 +facing the server. So they made libraries on the + +334 +00:19:52,480 --> 00:19:55,660 +server to facilitate the creation of web services. + +335 +00:19:56,280 --> 00:19:58,380 +Of course, it varies. Those who work on Marvel + +336 +00:19:58,380 --> 00:20:01,340 +have a certain way of doing it Those who work on + +337 +00:20:01,340 --> 00:20:03,800 +Node.js have a different way Those who work on + +338 +00:20:03,800 --> 00:20:08,000 +Javaspring have a third way, okay? It's all simply + +339 +00:20:08,000 --> 00:20:11,040 +a simple process. What did they do? They all work + +340 +00:20:11,040 --> 00:20:13,860 +in almost the same way What do you do on the + +341 +00:20:13,860 --> 00:20:15,740 +server? I'll tell you where we're going The + +342 +00:20:15,740 --> 00:20:18,160 +framework that was created on the server told you + +343 +00:20:18,160 --> 00:20:22,180 +that in order to do the API or the web service, go + +344 +00:20:22,180 --> 00:20:25,680 +and create a class called, for example, MyService + +345 +00:20:30,080 --> 00:20:33,740 +How many requests do I have to make? 20 requests. + +346 +00:20:33,840 --> 00:20:37,200 +Each request is represented by a method. For + +347 +00:20:37,200 --> 00:20:41,180 +example, make a request called get product. + +348 +00:20:42,360 --> 00:20:46,820 +And this method takes what? String id. Regardless + +349 +00:20:46,820 --> 00:20:49,880 +of whether it is Java or not. And this method, + +350 +00:20:51,060 --> 00:20:54,090 +where did I turn it on? Did I find it?In the + +351 +00:20:54,090 --> 00:20:57,330 +server, ok? What do you put here? Connection to + +352 +00:20:57,330 --> 00:20:59,790 +the database, select it, get a query, get the + +353 +00:20:59,790 --> 00:21:02,850 +products, put them in the ArrayList, change it to + +354 +00:21:02,850 --> 00:21:06,930 +JSON twice No, even if I change it to JSON, ok? + +355 +00:21:07,410 --> 00:21:13,370 +Create them as a list of what? of product means as + +356 +00:21:13,370 --> 00:21:19,490 +if you are working on a database this method will + +357 +00:21:19,490 --> 00:21:21,990 +give you an id and return you a product not a + +358 +00:21:21,990 --> 00:21:24,590 +list, it is supposed to return you an id it is + +359 +00:21:24,590 --> 00:21:27,870 +supposed to return you one product this method + +360 +00:21:27,870 --> 00:21:32,150 +will return you all products you say for example + +361 +00:21:32,150 --> 00:21:38,590 +get all products and program it and make it return + +362 +00:21:38,590 --> 00:21:42,280 +a list of Products You have a method that returns + +363 +00:21:42,280 --> 00:21:46,020 +to people GetPersonById The method returns to all + +364 +00:21:46,020 --> 00:21:48,860 +people So, actually, what did it do? All that is + +365 +00:21:48,860 --> 00:21:51,060 +required for the client, you gave it a method + +366 +00:21:51,060 --> 00:21:53,760 +Then, what does it do simply? It tells you, this + +367 +00:21:53,760 --> 00:21:57,480 +method determines what is its URL It comes over + +368 +00:21:57,480 --> 00:21:59,860 +the method and puts a tag You tell it, this + +369 +00:21:59,860 --> 00:22:04,460 +method, its URL is this and this and this on + +370 +00:22:04,460 --> 00:22:12,200 +Products on ID It's like I'm making a mapping + +371 +00:22:12,200 --> 00:22:19,320 +link. If you find this link, learn this method. If + +372 +00:22:19,320 --> 00:22:24,380 +you find this link, learn this method. Instead of + +373 +00:22:24,380 --> 00:22:28,900 +making 20 pages, you make one class. The 20 + +374 +00:22:28,900 --> 00:22:31,200 +methods required for the target, you make them as + +375 +00:22:31,200 --> 00:22:35,080 +20 methods. And each method is linked to a URL. + +376 +00:22:35,220 --> 00:22:39,150 +This is how we prepared the web service.We + +377 +00:22:39,150 --> 00:22:43,150 +prepared the server-side, right? Are you with me + +378 +00:22:43,150 --> 00:22:48,320 +or not? Ok. I will get by that I prepared it.The + +379 +00:22:48,320 --> 00:22:51,560 +client side, which we prepared on the server, we + +380 +00:22:51,560 --> 00:22:54,400 +want to get it from where? From the client For + +381 +00:22:54,400 --> 00:22:58,440 +example, you want to get a certain product and ID + +382 +00:22:58,440 --> 00:23:01,820 +You can simply make an HTTP request + +383 +00:23:01,820 --> 00:23:05,960 +programmatically You create a link and make a + +384 +00:23:05,960 --> 00:23:08,660 +request on the server and the server will return + +385 +00:23:08,660 --> 00:23:12,160 +it to youjson. Of course here this office by + +386 +00:23:12,160 --> 00:23:14,820 +itself, yes it returns the product, but when the + +387 +00:23:14,820 --> 00:23:16,800 +client takes it by itself, it turns it into json + +388 +00:23:16,800 --> 00:23:21,940 +and returns to the client what? Text. Okay? So you + +389 +00:23:21,940 --> 00:23:24,620 +can come to the mobile device, send the link and + +390 +00:23:24,620 --> 00:23:27,020 +it returns json to you and then you take the json + +391 +00:23:27,020 --> 00:23:30,160 +value and analyze it and extract the data. But + +392 +00:23:30,160 --> 00:23:34,150 +this process is also difficult. Because it will + +393 +00:23:34,150 --> 00:23:35,970 +force you to analyze it. Look at how many JSON + +394 +00:23:35,970 --> 00:23:38,710 +files you have to analyze. So they also made + +395 +00:23:38,710 --> 00:23:43,290 +libraries here. What are these libraries? You come + +396 +00:23:43,290 --> 00:23:45,470 +to this library, what does it tell you? It tells + +397 +00:23:45,470 --> 00:23:53,370 +you, just give me how the methods on the server + +398 +00:23:53,370 --> 00:23:56,190 +look like. So you go and tell the server that + +399 +00:23:56,190 --> 00:24:00,150 +there is a method called get product. And what do + +400 +00:24:00,150 --> 00:24:03,750 +you return?the product and this one takes the id + +401 +00:24:03,750 --> 00:24:07,270 +and there is a method that looks like this and + +402 +00:24:07,270 --> 00:24:08,670 +this is the url of the method that looks like this + +403 +00:24:08,670 --> 00:24:11,170 +so you give it the method that is required in the + +404 +00:24:11,170 --> 00:24:15,350 +server and the url or you even just give it the + +405 +00:24:15,350 --> 00:24:18,930 +url so what does it do? it goes and sees the + +406 +00:24:18,930 --> 00:24:21,690 +classes on the server and makes one like this + +407 +00:24:21,690 --> 00:24:25,840 +exactlyon the client means on the client this get, + +408 +00:24:25,940 --> 00:24:29,440 +did you see the class my service? it will work on + +409 +00:24:29,440 --> 00:24:33,540 +the client also a class called my service what + +410 +00:24:33,540 --> 00:24:36,120 +does it have? it has the same methods the first + +411 +00:24:36,120 --> 00:24:39,640 +one is called get product and the second one is + +412 +00:24:39,640 --> 00:24:42,920 +called get all products and the third + +445 +00:26:31,560 --> 00:26:38,380 +language you want. Okay? Now, what does this have + +446 +00:26:38,380 --> 00:26:40,140 +to do with the proxy that we are talking about? + +447 +00:26:40,360 --> 00:26:42,180 +Did you notice that we did not say that in the + +448 +00:26:42,180 --> 00:26:44,280 +client-side, I create a class that is very similar + +449 +00:26:44,280 --> 00:26:48,300 +to the one in the server, and from within it, I + +450 +00:26:48,300 --> 00:26:50,300 +hide the details that it makes a connection to the + +451 +00:26:50,300 --> 00:26:52,240 +server and gives a request and gives a response + +452 +00:26:52,240 --> 00:26:57,360 +and so on? This is also what we call a proxy. So + +453 +00:26:57,360 --> 00:26:59,880 +the idea that I make a class similar to what is on + +454 +00:26:59,880 --> 00:27:03,620 +the server, API, and I call the method on the + +455 +00:27:03,620 --> 00:27:05,660 +server as if it is present on the local device, + +456 +00:27:05,780 --> 00:27:08,540 +this class is also considered to be a proxy + +457 +00:27:08,540 --> 00:27:13,680 +pattern. And this is the concept of remote method + +458 +00:27:13,680 --> 00:27:16,680 +invocation, that you call a method that is far + +459 +00:27:16,680 --> 00:27:19,240 +away as if this method is present on the local + +460 +00:27:19,240 --> 00:27:28,550 +machine. This is the client. Here it does remote + +461 +00:27:28,550 --> 00:27:31,950 +object implementation. The same object or code in + +462 +00:27:31,950 --> 00:27:34,170 +the client does its implementation here, but of + +463 +00:27:34,170 --> 00:27:37,920 +course there are detailsConnection, Response, + +464 +00:27:38,040 --> 00:27:40,540 +Request and Response are hidden from us. But in + +465 +00:27:40,540 --> 00:27:42,400 +the end, the shape of the object here is the same + +466 +00:27:42,400 --> 00:27:45,520 +shape as the one on the server. And this is one of + +467 +00:27:45,520 --> 00:27:49,480 +the applications of the proxy pattern. Here, of + +468 +00:27:49,480 --> 00:27:53,140 +course, it lists the types of proxies. We talked + +469 +00:27:53,140 --> 00:27:54,640 +about them, but now it has to classify them with + +470 +00:27:54,640 --> 00:27:57,480 +specific names. There is the virtual proxy. What + +471 +00:27:57,480 --> 00:28:00,760 +is the word virtual? Hypothetically, okay? Or it's + +472 +00:28:00,760 --> 00:28:03,800 +not true here. It's like, what does this virtual + +473 +00:28:03,800 --> 00:28:06,380 +proxy mean? Delaying the creation and + +474 +00:28:06,380 --> 00:28:10,860 +instantiation of expensive objects until need. + +475 +00:28:12,320 --> 00:28:14,840 +Like the proxy image that we made. Why is it + +476 +00:28:14,840 --> 00:28:16,700 +called virtual? Because the proxy image is not the + +477 +00:28:16,700 --> 00:28:20,480 +image. The image is what I'm wrapped inside. Okay? + +478 +00:28:20,840 --> 00:28:23,020 +Why did I do this? To delay the construction of + +479 +00:28:23,020 --> 00:28:26,600 +the object for the time I need. Okay? Remote + +480 +00:28:26,600 --> 00:28:31,030 +proxies. providing a local representation for an + +481 +00:28:31,030 --> 00:28:33,750 +object that it is in a different address space + +482 +00:28:33,750 --> 00:28:38,730 +which is like the idea of proxy that I use in the + +483 +00:28:38,730 --> 00:28:42,470 +connection on API on the server providing a local + +484 +00:28:42,470 --> 00:28:49,030 +representation for an object in a different space + +485 +00:28:49,030 --> 00:28:50,950 +what does it mean different space? on another + +486 +00:28:50,950 --> 00:28:55,840 +device this is very similar to in the classes on + +487 +00:28:55,840 --> 00:29:00,060 +the server. The goal is to deal with the methods + +488 +00:29:00,060 --> 00:29:02,260 +on the server as if they were on the local + +489 +00:29:02,260 --> 00:29:06,620 +machine. A common example is Java RMI. This is one + +490 +00:29:06,620 --> 00:29:10,540 +of the ways web services work in Java. The idea is + +491 +00:29:10,540 --> 00:29:12,920 +that the stop object, which is the object that I + +492 +00:29:12,920 --> 00:29:19,580 +created here,in the client, acts as a proxy, where + +493 +00:29:19,580 --> 00:29:22,840 +invoking methods on the stub would cause the stub + +494 +00:29:22,840 --> 00:29:25,300 +to communicate and invoke methods on a remote + +495 +00:29:25,300 --> 00:29:28,520 +object found on a different machine. Meaning that + +496 +00:29:28,520 --> 00:29:30,080 +when these methods are created from this class, + +497 +00:29:30,480 --> 00:29:33,780 +this object actually creates the methods on the + +498 +00:29:33,780 --> 00:29:37,130 +server. The last thing is protection proxies. which + +499 +00:29:37,130 --> 00:29:40,210 +is where a proxy controls access to real subject + +500 +00:29:40,210 --> 00:29:43,190 +methods by giving access to some objects while + +501 +00:29:43,190 --> 00:29:46,270 +denying access to others. So when you start + +502 +00:29:46,270 --> 00:29:48,390 +controlling the access of methods to objects like + +503 +00:29:48,390 --> 00:29:50,670 +the example we saw methods that I can activate and + +504 +00:29:50,670 --> 00:29:52,610 +methods that I can hide this is considered a + +505 +00:29:52,610 --> 00:29:55,570 +protection proxy. So these are the different uses + +506 +00:29:55,570 --> 00:30:01,920 +of proxy. Now this example is the same example. The + +507 +00:30:01,920 --> 00:30:03,840 +image that we just saw has a slight difference. + +508 +00:30:04,060 --> 00:30:06,700 +Here it says that I have a high-resolution image. + +509 +00:30:06,840 --> 00:30:09,280 +This is like an image icon. It is a costly object. + +510 +00:30:09,740 --> 00:30:13,140 +Creating it takes time. Okay? This is from the + +511 +00:30:13,140 --> 00:30:17,540 +interface image. I made a proxy image, implemented + +512 +00:30:17,540 --> 00:30:20,000 +it to the interface and used it. The high + +513 +00:30:20,000 --> 00:30:32,120 +-resolution image in + +514 +00:30:32,120 --> 00:30:36,820 +the constructor calls loadLoad image is a costly + +515 +00:30:36,820 --> 00:30:40,060 +method. It is what carries the object to the + +516 +00:30:40,060 --> 00:30:43,160 +level. I want to delay the construction of the + +517 +00:30:43,160 --> 00:30:46,040 +constructor. Show image does not take time. + +518 +00:30:46,740 --> 00:30:48,660 +Because the method is actually carried in memory, + +519 +00:30:48,860 --> 00:30:52,500 +so show image displays it. Now, how can I delay + +520 +00:30:52,500 --> 00:30:55,260 +the creation of the high-resolution object? I will + +521 +00:30:55,260 --> 00:30:57,860 +create an object called ImageProxy that also + +522 +00:30:57,860 --> 00:31:01,560 +implements an image. Inside it, I have a high + +523 +00:31:01,560 --> 00:31:03,380 +-resolution image. I have yet to create this null. + +524 +00:31:04,500 --> 00:31:07,220 +And this is the path. Because when I create an + +525 +00:31:07,220 --> 00:31:09,560 +ImageProxy, it only sends me the path of the file + +526 +00:31:09,560 --> 00:31:11,640 +and stores it with it. But actually, what is this? + +527 +00:31:11,860 --> 00:31:13,620 +I have yet to create a null. + +528 +00:31:16,800 --> 00:31:18,740 +The high-resolution image has a show image and + +529 +00:31:18,740 --> 00:31:21,000 +this one also has a show image. Here in the show + +530 +00:31:21,000 --> 00:31:24,400 +image, in the moment I show the picture, I tell it + +531 +00:31:24,400 --> 00:31:27,840 +to go and run the high-resolution image. And then + +532 +00:31:27,840 --> 00:31:30,260 +I tell it to run the show image. So look, I + +533 +00:31:30,260 --> 00:31:31,820 +delayed the creation of the high-resolution image + +534 +00:31:31,820 --> 00:31:34,460 +from the constructor and left it only at the + +535 +00:31:34,460 --> 00:31:36,980 +execution of the show image. And this is the main + +536 +00:31:36,980 --> 00:31:39,520 +code that shows me the difference. Here I created + +537 +00:31:39,520 --> 00:31:43,760 +three image proxies. These, if I want, don't take + +538 +00:31:43,760 --> 00:31:47,080 +a load on the memory because I only send them + +539 +00:31:47,080 --> 00:31:51,240 +paths. In fact, the load happens on the memory + +540 +00:31:51,240 --> 00:31:53,520 +when I run Show Image, and this is not a problem + +541 +00:31:53,520 --> 00:31:56,860 +because it shows image after image. But on the + +542 +00:31:56,860 --> 00:31:59,080 +other hand, if I create high-resolution images + +543 +00:31:59,080 --> 00:32:01,700 +directly, this will load in the memory, so these + +544 +00:32:01,700 --> 00:32:04,020 +are costly methods because it will load the images + +545 +00:32:04,020 --> 00:32:07,650 +in the memory. The last point in the proxy will + +546 +00:32:07,650 --> 00:32:09,750 +separate you from the proxy pattern and some of + +547 +00:32:09,750 --> 00:32:12,430 +the previous design patterns that we took. For + +548 +00:32:12,430 --> 00:32:15,030 +example, we talked about the decorator. Let's + +549 +00:32:15,030 --> 00:32:16,610 +start with the one below. What is the difference + +550 +00:32:16,610 --> 00:32:19,070 +between the proxy and the decorator? Both have the + +551 +00:32:19,070 --> 00:32:21,550 +same principle of operation. An object wraps an + +552 +00:32:21,550 --> 00:32:23,010 +object inside, and both of them are of the same + +553 +00:32:23,010 --> 00:32:26,170 +type. But the goal is different. The decorator + +554 +00:32:26,170 --> 00:32:29,450 +added this functionality to control the object. + +555 +00:32:29,510 --> 00:32:31,350 +And this is the same thing that is present here. + +556 +00:32:31,730 --> 00:32:33,350 +Because there is another one that also wraps, + +557 +00:32:33,550 --> 00:32:36,270 +which is the adapter. The adapter wraps an object, + +558 +00:32:36,550 --> 00:32:40,730 +but why did we use the adapter? If I want the + +559 +00:32:40,730 --> 00:32:43,490 +client to use a certain library and I want him to + +560 +00:32:43,490 --> 00:32:46,950 +use another library B, should we go and change the + +561 +00:32:46,950 --> 00:32:50,490 +program to use B? He said, no, you create a new + +562 +00:32:50,490 --> 00:32:56,930 +class from type A and wrap the class from type B. + +563 +00:32:57,430 --> 00:33:00,590 +In fact, the adapter is also a wrapper, but it + +564 +00:33:00,590 --> 00:33:05,140 +takes another type. Okay? The type of adapter is + +565 +00:33:05,140 --> 00:33:06,720 +different from the type of object that is wrapped. + +566 +00:33:07,160 --> 00:33:11,140 +But in the proxy and decorator, the type of class, + +567 +00:33:11,740 --> 00:33:13,640 +which is the wrapper, whether it is decorator or + +568 +00:33:13,640 --> 00:33:16,080 +proxy, is the same type of object that is wrapped. + +569 +00:33:16,200 --> 00:33:17,600 +This is the difference here. This tells me that + +570 +00:33:17,600 --> 00:33:19,840 +the adapter implements a different interface to + +571 +00:33:19,840 --> 00:33:22,140 +the object it adapts. Okay, guys? + +572 +00:33:25,400 --> 00:33:29,360 +Okay, so we have completed the proxy pattern. We + +573 +00:33:29,360 --> 00:33:31,740 +will stop here for today. Okay, guys? + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/JjtUl0IeLFU_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/JjtUl0IeLFU_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..b4206e1ad9740576b33b423d33b24b2ae3c09fbd --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/JjtUl0IeLFU_postprocess.srt @@ -0,0 +1,2292 @@ +1 +00:00:05,210 --> 00:00:08,970 +Ok guys, peace be upon you Today, God willing, + +2 +00:00:09,110 --> 00:00:11,790 +guys, we will continue the explanation of the + +3 +00:00:11,790 --> 00:00:14,930 +proxy pattern to see his elderly ground and other + +4 +00:00:14,930 --> 00:00:19,510 +uses of it In the last lecture, we talked about + +5 +00:00:19,510 --> 00:00:21,310 +the proxy pattern and we said that it is very + +6 +00:00:21,310 --> 00:00:23,970 +similar to the decorator It is really like the + +7 +00:00:23,970 --> 00:00:26,150 +idea of ​​the decorator that I have an object that + +8 +00:00:26,150 --> 00:00:29,750 +covers another object But why did he make another + +9 +00:00:29,750 --> 00:00:31,610 +design pattern? Because the goal is only to be + +10 +00:00:31,610 --> 00:00:34,150 +different from the goal of the proxy about the + +11 +00:00:34,150 --> 00:00:35,330 +goal of the decorator. The goal of the decorator + +12 +00:00:35,330 --> 00:00:37,730 +was to wrap an object with the goal of adding + +13 +00:00:37,730 --> 00:00:41,790 +additional functionality. But the proxy is to wrap + +14 +00:00:41,790 --> 00:00:45,170 +an object with the goal of controlling this object + +15 +00:00:45,170 --> 00:00:49,390 +and controlling it in a larger way. An example of + +16 +00:00:49,390 --> 00:00:51,910 +this, we saw in the previous lecture, is that when + +17 +00:00:51,910 --> 00:00:54,110 +I made an image gallery program that displayed a + +18 +00:00:54,110 --> 00:00:57,150 +group of images, and this program would load the + +19 +00:00:57,150 --> 00:01:00,500 +images as an image icon. The problem with image + +20 +00:01:00,500 --> 00:01:03,180 +icons is that when we used to create loops on the + +21 +00:01:03,180 --> 00:01:05,000 +paths of images and give them the name of the + +22 +00:01:05,000 --> 00:01:08,180 +image or the path of the image, when an object was + +23 +00:01:08,180 --> 00:01:10,060 +created, an image icon, it was a costly object. + +24 +00:01:10,820 --> 00:01:14,040 +Its creation takes up space in the memory. So if + +25 +00:01:14,040 --> 00:01:15,760 +you create 100 images, it means that 100 images + +26 +00:01:15,760 --> 00:01:17,720 +will be stored in the memory whether you show them + +27 +00:01:17,720 --> 00:01:20,440 +or not. You actually stored the image, but you + +28 +00:01:20,440 --> 00:01:26,440 +only showed one image. So we made a trick that we + +29 +00:01:26,440 --> 00:01:29,980 +wanted to delay the creation of this object.we + +30 +00:01:29,980 --> 00:01:32,120 +want to change it, but at the same time, I don't + +31 +00:01:32,120 --> 00:01:35,100 +want to change too much in my app so what did I + +32 +00:01:35,100 --> 00:01:37,860 +do? I created a new class called ImageProxy that + +33 +00:01:37,860 --> 00:01:41,160 +covers the image icon because the image is + +34 +00:01:41,160 --> 00:01:44,160 +basically an image icon, okay? so I created an + +35 +00:01:44,160 --> 00:01:46,540 +imaginary object or an imaginary class called + +36 +00:01:46,540 --> 00:01:50,160 +ImageProxy that covers the image icon all the idea + +37 +00:01:50,160 --> 00:01:52,900 +that exists is that I don't really want to create + +38 +00:01:52,900 --> 00:01:58,070 +the image icon unless I need toOkay? So in the + +39 +00:01:58,070 --> 00:02:00,450 +image proxy, the new class that I created, its + +40 +00:02:00,450 --> 00:02:04,430 +constructor does not create an object from an + +41 +00:02:04,430 --> 00:02:07,850 +image icon, it only sends a string to the image + +42 +00:02:07,850 --> 00:02:11,730 +and stores this string. So if I create a thousand + +43 +00:02:11,730 --> 00:02:14,290 +image proxies, they will not take anything from + +44 +00:02:14,290 --> 00:02:17,050 +the memory because each object is just a string, + +45 +00:02:17,190 --> 00:02:21,120 +which is the image string.Okay, actually image + +46 +00:02:21,120 --> 00:02:23,960 +proxy is not the image, right or not? There is no + +47 +00:02:23,960 --> 00:02:26,280 +image data, it wraps the image icon which is still + +48 +00:02:26,280 --> 00:02:30,440 +null, okay? When is the image icon actually + +49 +00:02:30,440 --> 00:02:32,640 +created? Because the image icon, when you go to + +50 +00:02:32,640 --> 00:02:34,480 +load the image, which is at the moment when you + +51 +00:02:34,480 --> 00:02:37,220 +click next and previous, and when he goes to paint + +52 +00:02:37,220 --> 00:02:40,480 +it, I tell him in this case, if you find the image + +53 +00:02:40,480 --> 00:02:43,900 +icon null, go and create it. So actually I delayed + +54 +00:02:43,900 --> 00:02:45,840 +the creation of the image icon for the moment I + +55 +00:02:45,840 --> 00:02:50,630 +need it. Now for the client, I made him use the + +56 +00:02:50,630 --> 00:02:53,470 +image proxy instead of the image icon. And he will + +57 +00:02:53,470 --> 00:02:58,330 +accept it because both are the same. Let's read + +58 +00:02:58,330 --> 00:03:00,690 +what is written here. Sometimes we need the + +59 +00:03:00,690 --> 00:03:05,710 +ability to control the access to an object. + +60 +00:03:06,290 --> 00:03:10,150 +For example, if we need to use only a few methods + +61 +00:03:10,150 --> 00:03:14,800 +of some cost objects,I have a costly object and it + +62 +00:03:14,800 --> 00:03:17,480 +costs a lot to create it and I need to use a + +63 +00:03:17,480 --> 00:03:23,040 +method from this object because in order to use + +64 +00:03:23,040 --> 00:03:25,120 +this method I need to create the object and this + +65 +00:03:25,120 --> 00:03:29,400 +object is costly so it costs me the idea now is + +66 +00:03:29,400 --> 00:03:33,440 +the solution until + +67 +00:03:33,440 --> 00:03:37,040 +that point when we need to use the method we can + +68 +00:03:37,040 --> 00:03:40,100 +use some light objects exposing the same interface + +69 +00:03:40,100 --> 00:03:45,620 +as the heavy objectsUntil you need the method to + +70 +00:03:45,620 --> 00:03:48,920 +claim it, I don't need the method. I created the + +71 +00:03:48,920 --> 00:03:54,000 +cost object and loaded it in my memory to claim + +72 +00:03:54,000 --> 00:03:56,620 +the method. Just like the image icon, we loaded it + +73 +00:03:56,620 --> 00:04:01,510 +in memory but we didn't show the image. until that + +74 +00:04:01,510 --> 00:04:06,050 +point + +75 +00:04:06,050 --> 00:04:13,350 +we can use some light objects exposing + +76 +00:04:13,350 --> 00:04:20,830 +the same interface as the heavy object these light + +77 +00:04:20,830 --> 00:04:25,210 +objects are called Proxies. In our example, the + +78 +00:04:25,210 --> 00:04:28,150 +image proxy is this light object, which has the + +79 +00:04:28,150 --> 00:04:30,830 +same interface as the image icon. Both of them are + +80 +00:04:30,830 --> 00:04:34,910 +image icons. So what do these light objects do? + +81 +00:04:35,030 --> 00:04:38,570 +These light objects are called proxies, and they + +82 +00:04:38,570 --> 00:04:42,090 +will instantiate those heavy objects when they are + +83 +00:04:42,090 --> 00:04:47,250 +really needed. This light object actually wraps + +84 +00:04:47,250 --> 00:04:50,380 +the heavy object.What I mean by that is the + +85 +00:04:50,380 --> 00:04:53,020 +important thing is the wrapped object inside. This + +86 +00:04:53,020 --> 00:04:54,820 +image approximate is the image. Am I right or not + +87 +00:04:54,820 --> 00:04:59,380 +guys? Because this is the important point. Light + +88 +00:04:59,380 --> 00:05:03,120 +object will instantiate those heavy objects when + +89 +00:05:03,120 --> 00:05:05,700 +they are really needed and by then we will use + +90 +00:05:05,700 --> 00:05:08,880 +some light objects instead. The client uses the + +91 +00:05:08,880 --> 00:05:13,800 +light object like the image icon, but actually the + +92 +00:05:13,800 --> 00:05:16,800 +wrapped object is what is created at the moment of + +93 +00:05:16,800 --> 00:05:22,780 +display of the image.Now, of course, I couldn't + +94 +00:05:22,780 --> 00:05:24,960 +read this sentence without looking at the example. + +95 +00:05:25,760 --> 00:05:27,400 +Right or wrong? If I didn't explain the example + +96 +00:05:27,400 --> 00:05:28,680 +and read the sentence, you won't understand what + +97 +00:05:28,680 --> 00:05:30,160 +is light and what is heavy. But with the example, + +98 +00:05:30,880 --> 00:05:33,880 +the sentence should be clearer. Now, the ability + +99 +00:05:33,880 --> 00:05:36,280 +to control the access to an object can be required + +100 +00:05:36,280 --> 00:05:40,260 +for a variety of reasons. Now, the ability to + +101 +00:05:40,260 --> 00:05:42,660 +control the access to an object is necessary in + +102 +00:05:42,660 --> 00:05:46,200 +multiple cases.What are these cases? The first + +103 +00:05:46,200 --> 00:05:48,600 +case is controlling when a caustic object needs to + +104 +00:05:48,600 --> 00:05:51,960 +be instantiated and initialized. The first case is + +105 +00:05:51,960 --> 00:05:55,140 +controlling when a caustic object is created. This + +106 +00:05:55,140 --> 00:05:57,380 +is similar to the example that we presented. Now + +107 +00:05:57,380 --> 00:06:00,640 +he is explaining what are the cases that need a + +108 +00:06:00,640 --> 00:06:03,640 +proxy pattern. The first case is to create a + +109 +00:06:03,640 --> 00:06:07,010 +virtual object that covers a real object.in order + +110 +00:06:07,010 --> 00:06:09,090 +to delay the creation of the real object at the + +111 +00:06:09,090 --> 00:06:11,990 +moment of need. Like the idea of singleton, I + +112 +00:06:11,990 --> 00:06:14,670 +don't create it when I don't need it yet. I don't + +113 +00:06:14,670 --> 00:06:17,490 +create the image when I don't show it yet. When I + +114 +00:06:17,490 --> 00:06:20,570 +show it at the moment, I let it create it. So this + +115 +00:06:20,570 --> 00:06:23,750 +is the first case. We only came up with a case + +116 +00:06:23,750 --> 00:06:27,010 +when we had to use the proxy pattern. What are the + +117 +00:06:27,010 --> 00:06:30,170 +other cases? The other cases give you different + +118 +00:06:30,170 --> 00:06:33,970 +access rights to an object.it gives the ability to + +119 +00:06:33,970 --> 00:06:36,130 +access the object we talked about in the previous + +120 +00:06:36,130 --> 00:06:38,810 +lecture when we explained in the beginning about + +121 +00:06:38,810 --> 00:06:42,650 +the proxy that I can have an object that has x, y + +122 +00:06:42,650 --> 00:06:46,810 +and z methods and I want the client to cancel this + +123 +00:06:46,810 --> 00:06:51,910 +z or delete the existing code I can actually wrap + +124 +00:06:51,910 --> 00:06:55,290 +it with an object of the same type put x and y and + +125 +00:06:55,290 --> 00:06:59,110 +don't put anything else zOf course this X will + +126 +00:06:59,110 --> 00:07:02,150 +make forward to whom? To the X inside and Y is the + +127 +00:07:02,150 --> 00:07:06,910 +same thing Z can be put empty on the basis that + +128 +00:07:06,910 --> 00:07:10,910 +the client keeps seeing this like this but the + +129 +00:07:10,910 --> 00:07:13,190 +method makes it empty or doesn't make forward as + +130 +00:07:13,190 --> 00:07:17,310 +if you blocked whom? This method In this second + +131 +00:07:17,310 --> 00:07:19,730 +case which is giving different access rights on + +132 +00:07:19,730 --> 00:07:23,490 +objectThe third case, as well as providing + +133 +00:07:23,490 --> 00:07:26,370 +sophisticated means of accessing and referencing + +134 +00:07:26,370 --> 00:07:29,410 +objects running in other processes or other + +135 +00:07:29,410 --> 00:07:34,190 +machines, which is to provide a way to access + +136 +00:07:34,190 --> 00:07:39,970 +objects on another process or machine. We will + +137 +00:07:39,970 --> 00:07:42,570 +talk about this point in a moment. The last point, + +138 +00:07:42,730 --> 00:07:47,210 +the third use of the proxy. Today, the diagram of + +139 +00:07:47,210 --> 00:07:48,890 +the proxy is very similar to that of the + +140 +00:07:48,890 --> 00:07:53,210 +decorator. I have this real subject, the object + +141 +00:07:53,210 --> 00:07:55,930 +that I want to control its access to, delay its + +142 +00:07:55,930 --> 00:07:59,270 +creation, it is a kind of subject, it is an + +143 +00:07:59,270 --> 00:08:02,710 +implementable interface I actually create a class + +144 +00:08:02,710 --> 00:08:06,390 +called proxy of the subject type and at the same + +145 +00:08:06,390 --> 00:08:10,130 +time it wraps the real subject and the same method + +146 +00:08:10,130 --> 00:08:13,190 +in the real subject is present in the do operation + +147 +00:08:13,190 --> 00:08:16,270 +but here of course there is a code that does not + +148 +00:08:16,270 --> 00:08:21,450 +control the subject In the end, this is the client + +149 +00:08:21,450 --> 00:08:24,930 +that will deal with the real subject It will deal + +150 +00:08:24,930 --> 00:08:26,930 +with the proxy in the same way because both of + +151 +00:08:26,930 --> 00:08:32,930 +them are the same type of interface Because + +152 +00:08:32,930 --> 00:08:35,530 +this explains today what diagram is left for you + +153 +00:08:35,530 --> 00:08:39,270 +This is also regular talk that explains how the + +154 +00:08:39,270 --> 00:08:44,710 +proxy works One of the most famous proxy + +155 +00:08:44,710 --> 00:08:49,790 +applications in the case of web services Or a + +156 +00:08:49,790 --> 00:08:51,970 +specific case that we call Remote Method + +157 +00:08:51,970 --> 00:08:55,430 +Invocation What is the word Remote? Remote. + +158 +00:08:55,550 --> 00:08:59,770 +Method. Remote method. Invocation. Invocation. + +159 +00:08:59,890 --> 00:09:00,250 +Remote method. + +160 +00:09:08,950 --> 00:09:09,670 +Invocation. Invocation. Invocation. Invocation. + +161 +00:09:09,670 --> 00:09:09,850 +Invocation. Invocation. Invocation. Invocation. + +162 +00:09:09,850 --> 00:09:09,950 +Invocation. Invocation. Invocation. Invocation. + +163 +00:09:09,950 --> 00:09:12,070 +Invocation. Invocation. Invocation. Inv + +164 +00:09:17,360 --> 00:09:20,720 +But let's give an introduction and explain what + +165 +00:09:20,720 --> 00:09:25,240 +web services are Now it is known that applications + +166 +00:09:25,240 --> 00:09:32,000 +are distributed on devices For example, a company + +167 +00:09:32,000 --> 00:09:34,660 +or an institution wants to make an application for + +168 +00:09:34,660 --> 00:09:39,640 +it It first makes a website and then makes a + +169 +00:09:39,640 --> 00:09:42,860 +mobile application And the principle is that the + +170 +00:09:42,860 --> 00:09:45,080 +mobile application and the website share the same + +171 +00:09:45,080 --> 00:09:48,120 +data I mean, I want to make a marketing program + +172 +00:09:48,120 --> 00:09:51,040 +whether you browse through the mobile application + +173 +00:09:51,040 --> 00:09:54,080 +or through the website Of course, the same data + +174 +00:09:54,080 --> 00:09:57,520 +will be available So actually, I have a website Of + +175 +00:09:57,520 --> 00:10:02,750 +course, the website is based on a database Okay? + +176 +00:10:03,470 --> 00:10:05,590 +And I read from it and I show it for example in + +177 +00:10:05,590 --> 00:10:09,330 +the pages that I have on the website. Now, I also + +178 +00:10:09,330 --> 00:10:12,490 +want to make a mobile application. Let's call this + +179 +00:10:12,490 --> 00:10:16,730 +mobile device. Of course, the mobile device must + +180 +00:10:16,730 --> 00:10:21,360 +make a connection toon the server. Now, how do + +181 +00:10:21,360 --> 00:10:26,120 +devices communicate with each other? Now, there + +182 +00:10:26,120 --> 00:10:29,060 +are different ways. There are ways using sockets. + +183 +00:10:29,260 --> 00:10:32,000 +You make a socket that connects to a certain port + +184 +00:10:32,000 --> 00:10:34,120 +and sends a message and receives a response from + +185 +00:10:34,120 --> 00:10:41,320 +the server. But today, all communication between + +186 +00:10:41,320 --> 00:10:46,160 +devices and applications is mostly done on the + +187 +00:10:46,160 --> 00:10:47,620 +HTTP protocol. + +188 +00:10:51,900 --> 00:10:56,200 +Through the internet network, through the HTTP + +189 +00:10:56,200 --> 00:10:59,880 +protocol, which is the same protocol that you use + +190 +00:10:59,880 --> 00:11:02,620 +when browsing the internet, when you type url and + +191 +00:11:02,620 --> 00:11:04,600 +press enter, this request goes to the server, + +192 +00:11:05,200 --> 00:11:06,940 +brings you the content of the page and returns it + +193 +00:11:06,940 --> 00:11:13,400 +to you. This is done through port 80 or 8080. What + +194 +00:11:13,400 --> 00:11:14,800 +is the advantage of communication through HTTP + +195 +00:11:14,800 --> 00:11:17,780 +protocol? Communication is secure because the port + +196 +00:11:17,780 --> 00:11:21,600 +on the internet is always open. Now companies and + +197 +00:11:21,600 --> 00:11:23,360 +institutions, because of security issues, close + +198 +00:11:23,360 --> 00:11:27,520 +all other ports and leave only the port of the + +199 +00:11:27,520 --> 00:11:30,800 +internet and more than one other port. They are + +200 +00:11:30,800 --> 00:11:33,500 +the only ones that are open and the connection is + +201 +00:11:33,500 --> 00:11:33,760 +working on them. + +202 +00:11:39,800 --> 00:11:42,520 +Actually, the mobile device communicates with the + +203 +00:11:42,520 --> 00:11:46,840 +server as if you are requesting a page from the + +204 +00:11:46,840 --> 00:11:49,520 +server and the server returns the content to it. + +205 +00:11:50,480 --> 00:11:52,600 +Of course, the HTTP protocol is also one of the + +206 +00:11:52,600 --> 00:11:54,660 +characteristics that the data is transmitted as + +207 +00:11:54,660 --> 00:11:58,820 +hypertext, as text. In the end, the data goes as a + +208 +00:11:58,820 --> 00:12:05,580 +request and returns as text. Now, as I said, we + +209 +00:12:05,580 --> 00:12:09,540 +will talk about what people call APIs, okay? But + +210 +00:12:09,540 --> 00:12:11,380 +this is also a word, the name is not correct. + +211 +00:12:12,720 --> 00:12:14,460 +Actually, this is an issue request that is sent. + +212 +00:12:14,680 --> 00:12:17,580 +You actually ask for a page on a mobile device. As + +213 +00:12:17,580 --> 00:12:20,440 +you type on the browser, the link is a page, a + +214 +00:12:20,440 --> 00:12:23,340 +mobile phone comes and asks for products that are + +215 +00:12:23,340 --> 00:12:26,580 +available on the server. For example, this is the + +216 +00:12:26,580 --> 00:12:32,250 +domain slash products.Okay? Slash, for example, + +217 +00:12:32,750 --> 00:12:35,170 +fifty-three. What does it mean? It wants the + +218 +00:12:35,170 --> 00:12:39,210 +product fifty-three. Here are its details. This is + +219 +00:12:39,210 --> 00:12:42,290 +the domain name slash product in the products + +220 +00:12:42,290 --> 00:12:44,950 +slash fifty-three which is ... This is the URL + +221 +00:12:44,950 --> 00:12:50,810 +link. It starts with HTTP or HTTPS Okay guys, this + +222 +00:12:50,810 --> 00:12:52,510 +link is sent to the server, and the server + +223 +00:12:52,510 --> 00:12:56,350 +prepares the result page for it and returns it to + +224 +00:12:56,350 --> 00:12:57,930 +it. But of course, the data is not returned as + +225 +00:12:57,930 --> 00:13:05,130 +HTML. HTML is made for human processing, to show a + +226 +00:13:05,130 --> 00:13:08,290 +visible page. But when devices communicate with + +227 +00:13:08,290 --> 00:13:12,510 +each other, the data is returned as a form that + +228 +00:13:12,510 --> 00:13:15,390 +the machine can understand. For example, like + +229 +00:13:15,390 --> 00:13:20,150 +JSON.and XML, did you hear about JSON and XML? + +230 +00:13:20,670 --> 00:13:26,210 +It's just a way to represent data. For example, I + +231 +00:13:26,210 --> 00:13:34,160 +want a person, I want the employee Ok, his ID is + +232 +00:13:34,160 --> 00:13:37,660 +53. This request reaches the server. This server + +233 +00:13:37,660 --> 00:13:41,000 +reaches the URL. It takes 53 and queries the + +234 +00:13:41,000 --> 00:13:43,580 +database. There is a code here. Select from + +235 +00:13:43,580 --> 00:13:46,360 +database. This is the ID of the employee. It gets + +236 +00:13:46,360 --> 00:13:48,180 +his information. Ok, who should this information + +237 +00:13:48,180 --> 00:13:51,040 +go back to? To the server. Why should it go back + +238 +00:13:51,040 --> 00:13:54,960 +to HTML? It goes back to either JSON or XML. Can I + +239 +00:13:54,960 --> 00:13:57,100 +enter the employee's data? For example, it was + +240 +00:13:57,100 --> 00:14:04,410 +Ali, 17. Yes, three, two, for example. So I got + +241 +00:14:04,410 --> 00:14:07,470 +these data. Do you understand what this is? These + +242 +00:14:07,470 --> 00:14:09,370 +are the employee's data. There is no explanation + +243 +00:14:09,370 --> 00:14:12,230 +for it. Okay, I understand, this is a name. But + +244 +00:14:12,230 --> 00:14:14,390 +what is seventeen? This is his age, the address + +245 +00:14:14,390 --> 00:14:17,270 +where he lives, he has seventeen children. Yes, + +246 +00:14:17,870 --> 00:14:20,310 +no, no, three, what is three? He has three + +247 +00:14:20,310 --> 00:14:23,150 +children, married three, I don't know what this + +248 +00:14:23,150 --> 00:14:25,890 +is. So I found that we need another information to + +249 +00:14:25,890 --> 00:14:28,490 +explain what this is. So we can say for example, + +250 +00:14:28,730 --> 00:14:35,930 +put key name, two dots like this, comma, age, two + +251 +00:14:35,930 --> 00:14:42,050 +dots, number of children, like this, okay? This is + +252 +00:14:42,050 --> 00:14:46,490 +the shape of the JSON file. JSON is what? Key and + +253 +00:14:46,490 --> 00:14:50,610 +value, okay? Key can have more than value, okay? + +254 +00:14:51,740 --> 00:14:55,680 +It's JSON object, JSON array It's a way to + +255 +00:14:55,680 --> 00:14:57,960 +represent the data Of course, this is for the + +256 +00:14:57,960 --> 00:15:01,560 +machine to read it It's not HTML, HTML is for the + +257 +00:15:01,560 --> 00:15:07,420 +user to see it This is like JSON Another way is + +258 +00:15:07,420 --> 00:15:10,960 +XML What's different from this? Nothing Instead of + +259 +00:15:10,960 --> 00:15:12,920 +writing a key before it, you put a tag before it + +260 +00:15:12,920 --> 00:15:16,940 +You say this is name and here is slash Name, + +261 +00:15:17,020 --> 00:15:19,700 +another way, but they use tags Here they use key + +262 +00:15:20,600 --> 00:15:23,540 +and value, okay? So it returns the data either as + +263 +00:15:23,540 --> 00:15:28,240 +xml or as json And then what does the client do? + +264 +00:15:30,280 --> 00:15:33,420 +In the client, it sends the data as json, it + +265 +00:15:33,420 --> 00:15:37,640 +extracts the data from the json, okay? And then it + +266 +00:15:37,640 --> 00:15:40,740 +shows it to you in the application Because this is + +267 +00:15:40,740 --> 00:15:43,020 +really the idea of how devices communicate with + +268 +00:15:43,020 --> 00:15:48,930 +the server Now, this process can be difficult to + +269 +00:15:48,930 --> 00:15:52,470 +do. For example, someone asks you how to create a + +270 +00:15:52,470 --> 00:15:55,130 +web service. Very simply, a web service is a page + +271 +00:15:55,130 --> 00:16:02,160 +with a link. The result of the page is JSON. It's + +272 +00:16:02,160 --> 00:16:05,220 +a simple web service, and if you create a page, + +273 +00:16:05,680 --> 00:16:10,320 +the link will look like this, slash, etc, etc, + +274 +00:16:10,400 --> 00:16:13,460 +domain, persons, etc, and here you send it the id, + +275 +00:16:13,960 --> 00:16:18,420 +for example. It can be slash 53, or it can even be + +276 +00:16:18,420 --> 00:16:23,480 +another form, for example, ID equals 53, whatever + +277 +00:16:23,480 --> 00:16:25,560 +the form of the link. The point is that this + +278 +00:16:25,560 --> 00:16:27,980 +request reaches the server, and the server knows + +279 +00:16:27,980 --> 00:16:31,880 +how to In PHP, it takes the parameters in the + +280 +00:16:31,880 --> 00:16:35,240 +request and then makes a query on the database. It + +281 +00:16:35,240 --> 00:16:38,140 +gets the data and forms it as JSON. JSON is text. + +282 +00:16:38,640 --> 00:16:41,900 +Or it makes a return to the server. But in real + +283 +00:16:41,900 --> 00:16:46,320 +applications, the number of requests can be large. + +284 +00:16:46,440 --> 00:16:50,480 +For example, this mobile device needs a certain + +285 +00:16:50,480 --> 00:16:54,140 +product. So it says, for example, slash products. + +286 +00:16:55,640 --> 00:17:03,320 +on their ID it could be slash products on for + +287 +00:17:03,320 --> 00:17:07,200 +example what + +288 +00:17:07,200 --> 00:17:13,420 +products are there? fruits right? + +289 +00:17:14,200 --> 00:17:18,000 +here what happened is like a category right? to + +290 +00:17:18,000 --> 00:17:21,280 +give you all the categories that are there it + +291 +00:17:21,280 --> 00:17:27,450 +could be slash persons by sending him the ID. It + +292 +00:17:27,450 --> 00:17:31,650 +can be a slash delivery. + +293 +00:17:34,530 --> 00:17:39,630 +Okay? The point is that mobile applications have + +294 +00:17:39,630 --> 00:17:41,710 +many screens, and each screen has different data. + +295 +00:17:43,250 --> 00:17:45,970 +So, each different data that he wants to request + +296 +00:17:45,970 --> 00:17:49,480 +must have a link. It's different, okay? For + +297 +00:17:49,480 --> 00:17:50,420 +example, I might need to request a certain number + +298 +00:17:50,420 --> 00:17:53,540 +of links during my application. 20 links, each + +299 +00:17:53,540 --> 00:17:57,120 +link represents a different request for data. It's + +300 +00:17:57,120 --> 00:17:59,780 +different, are you with me? This means that you + +301 +00:17:59,780 --> 00:18:01,140 +want to go to the server and create how many + +302 +00:18:01,140 --> 00:18:05,060 +pages? Approximately 20 pages in the number of + +303 +00:18:05,060 --> 00:18:07,460 +links. So what did Valgate do? They created + +304 +00:18:07,460 --> 00:18:11,980 +libraries that made it easier for us to know how + +305 +00:18:11,980 --> 00:18:17,890 +to create a web service and how to download it.I + +306 +00:18:17,890 --> 00:18:21,890 +will make it simple for you. This is what you call + +307 +00:18:21,890 --> 00:18:26,550 +in companies to make API. What is API? This name + +308 +00:18:26,550 --> 00:18:32,370 +is not accurate. The word API is short for what? + +309 +00:18:34,630 --> 00:18:38,850 +Abstract Programmable Interface. It is a interface + +310 +00:18:38,850 --> 00:18:43,370 +through which you connect to the application. Any + +311 +00:18:43,370 --> 00:18:46,370 +library that you create and provide methods or + +312 +00:18:46,370 --> 00:18:48,990 +classes that tell the client to use these classes + +313 +00:18:48,990 --> 00:18:51,090 +and methods in order to execute the operations + +314 +00:18:51,090 --> 00:18:55,630 +that you want, this is considered an API. When you + +315 +00:18:55,630 --> 00:18:57,930 +say that you provide a simple class and simple + +316 +00:18:57,930 --> 00:19:02,030 +methods through which the internal methods in the + +317 +00:19:02,030 --> 00:19:03,390 +library are created, this is considered an API. + +318 +00:19:05,020 --> 00:19:06,820 +Why do I call it abstract? Because it's + +319 +00:19:06,820 --> 00:19:12,480 +simplified. Okay? Short, miraculous. Okay? The API + +320 +00:19:12,480 --> 00:19:15,620 +we use for any interface, for any programming + +321 +00:19:15,620 --> 00:19:17,620 +interface, for a library that I use locally or on + +322 +00:19:17,620 --> 00:19:20,780 +the server, this is considered an API. Okay? But + +323 +00:19:20,780 --> 00:19:23,380 +what did they call it? It started to express + +324 +00:19:23,380 --> 00:19:26,140 +itself on the web service and call it API. Okay? + +325 +00:19:26,600 --> 00:19:28,380 +It's true that you make a programming interface, + +326 +00:19:29,700 --> 00:19:32,700 +Right? In the end, so that you can connect to the + +327 +00:19:32,700 --> 00:19:36,220 +server from your mobile device. But in the end, we + +328 +00:19:36,220 --> 00:19:39,500 +call it a web service. The word API is more + +329 +00:19:39,500 --> 00:19:41,920 +general than that. Anyway, let's go back to our + +330 +00:19:41,920 --> 00:19:44,040 +topic. Did you notice that making a web service is + +331 +00:19:44,040 --> 00:19:46,780 +a bit difficult? Because you really want to have + +332 +00:19:46,780 --> 00:19:49,760 +20 different links and each link has 20 pages + +333 +00:19:49,760 --> 00:19:52,480 +facing the server. So they made libraries on the + +334 +00:19:52,480 --> 00:19:55,660 +server to facilitate the creation of web services. + +335 +00:19:56,280 --> 00:19:58,380 +Of course, it varies. Those who work on Marvel + +336 +00:19:58,380 --> 00:20:01,340 +have a certain way of doing it Those who work on + +337 +00:20:01,340 --> 00:20:03,800 +Node.js have a different way Those who work on + +338 +00:20:03,800 --> 00:20:08,000 +Javaspring have a third way, okay? It's all simply + +339 +00:20:08,000 --> 00:20:11,040 +a simple process. What did they do? They all work + +340 +00:20:11,040 --> 00:20:13,860 +in almost the same way What do you do on the + +341 +00:20:13,860 --> 00:20:15,740 +server? I'll tell you where we're going The + +342 +00:20:15,740 --> 00:20:18,160 +framework that was created on the server told you + +343 +00:20:18,160 --> 00:20:22,180 +that in order to do the API or the web service, go + +344 +00:20:22,180 --> 00:20:25,680 +and create a class called, for example, MyService + +345 +00:20:30,080 --> 00:20:33,740 +How many requests do I have to make? 20 requests. + +346 +00:20:33,840 --> 00:20:37,200 +Each request is represented by a method. For + +347 +00:20:37,200 --> 00:20:41,180 +example, make a request called get product. + +348 +00:20:42,360 --> 00:20:46,820 +And this method takes what? String id. Regardless + +349 +00:20:46,820 --> 00:20:49,880 +of whether it is Java or not. And this method, + +350 +00:20:51,060 --> 00:20:54,090 +where did I turn it on? Did I find it?In the + +351 +00:20:54,090 --> 00:20:57,330 +server, ok? What do you put here? Connection to + +352 +00:20:57,330 --> 00:20:59,790 +the database, select it, get a query, get the + +353 +00:20:59,790 --> 00:21:02,850 +products, put them in the ArrayList, change it to + +354 +00:21:02,850 --> 00:21:06,930 +JSON twice No, even if I change it to JSON, ok? + +355 +00:21:07,410 --> 00:21:13,370 +Create them as a list of what? of product means as + +356 +00:21:13,370 --> 00:21:19,490 +if you are working on a database this method will + +357 +00:21:19,490 --> 00:21:21,990 +give you an id and return you a product not a + +358 +00:21:21,990 --> 00:21:24,590 +list, it is supposed to return you an id it is + +359 +00:21:24,590 --> 00:21:27,870 +supposed to return you one product this method + +360 +00:21:27,870 --> 00:21:32,150 +will return you all products you say for example + +361 +00:21:32,150 --> 00:21:38,590 +get all products and program it and make it return + +362 +00:21:38,590 --> 00:21:42,280 +a list of Products You have a method that returns + +363 +00:21:42,280 --> 00:21:46,020 +to people GetPersonById The method returns to all + +364 +00:21:46,020 --> 00:21:48,860 +people So, actually, what did it do? All that is + +365 +00:21:48,860 --> 00:21:51,060 +required for the client, you gave it a method + +366 +00:21:51,060 --> 00:21:53,760 +Then, what does it do simply? It tells you, this + +367 +00:21:53,760 --> 00:21:57,480 +method determines what is its URL It comes over + +368 +00:21:57,480 --> 00:21:59,860 +the method and puts a tag You tell it, this + +369 +00:21:59,860 --> 00:22:04,460 +method, its URL is this and this and this on + +370 +00:22:04,460 --> 00:22:12,200 +Products on ID It's like I'm making a mapping + +371 +00:22:12,200 --> 00:22:19,320 +link. If you find this link, learn this method. If + +372 +00:22:19,320 --> 00:22:24,380 +you find this link, learn this method. Instead of + +373 +00:22:24,380 --> 00:22:28,900 +making 20 pages, you make one class. The 20 + +374 +00:22:28,900 --> 00:22:31,200 +methods required for the target, you make them as + +375 +00:22:31,200 --> 00:22:35,080 +20 methods. And each method is linked to a URL. + +376 +00:22:35,220 --> 00:22:39,150 +This is how we prepared the web service.We + +377 +00:22:39,150 --> 00:22:43,150 +prepared the server-side, right? Are you with me + +378 +00:22:43,150 --> 00:22:48,320 +or not? Ok. I will get by that I prepared it.The + +379 +00:22:48,320 --> 00:22:51,560 +client side, which we prepared on the server, we + +380 +00:22:51,560 --> 00:22:54,400 +want to get it from where? From the client For + +381 +00:22:54,400 --> 00:22:58,440 +example, you want to get a certain product and ID + +382 +00:22:58,440 --> 00:23:01,820 +You can simply make an HTTP request + +383 +00:23:01,820 --> 00:23:05,960 +programmatically You create a link and make a + +384 +00:23:05,960 --> 00:23:08,660 +request on the server and the server will return + +385 +00:23:08,660 --> 00:23:12,160 +it to youjson. Of course here this office by + +386 +00:23:12,160 --> 00:23:14,820 +itself, yes it returns the product, but when the + +387 +00:23:14,820 --> 00:23:16,800 +client takes it by itself, it turns it into json + +388 +00:23:16,800 --> 00:23:21,940 +and returns to the client what? Text. Okay? So you + +389 +00:23:21,940 --> 00:23:24,620 +can come to the mobile device, send the link and + +390 +00:23:24,620 --> 00:23:27,020 +it returns json to you and then you take the json + +391 +00:23:27,020 --> 00:23:30,160 +value and analyze it and extract the data. But + +392 +00:23:30,160 --> 00:23:34,150 +this process is also difficult. Because it will + +393 +00:23:34,150 --> 00:23:35,970 +force you to analyze it. Look at how many JSON + +394 +00:23:35,970 --> 00:23:38,710 +files you have to analyze. So they also made + +395 +00:23:38,710 --> 00:23:43,290 +libraries here. What are these libraries? You come + +396 +00:23:43,290 --> 00:23:45,470 +to this library, what does it tell you? It tells + +397 +00:23:45,470 --> 00:23:53,370 +you, just give me how the methods on the server + +398 +00:23:53,370 --> 00:23:56,190 +look like. So you go and tell the server that + +399 +00:23:56,190 --> 00:24:00,150 +there is a method called get product. And what do + +400 +00:24:00,150 --> 00:24:03,750 +you return?the product and this one takes the id + +401 +00:24:03,750 --> 00:24:07,270 +and there is a method that looks like this and + +402 +00:24:07,270 --> 00:24:08,670 +this is the url of the method that looks like this + +403 +00:24:08,670 --> 00:24:11,170 +so you give it the method that is required in the + +404 +00:24:11,170 --> 00:24:15,350 +server and the url or you even just give it the + +405 +00:24:15,350 --> 00:24:18,930 +url so what does it do? it goes and sees the + +406 +00:24:18,930 --> 00:24:21,690 +classes on the server and makes one like this + +407 +00:24:21,690 --> 00:24:25,840 +exactlyon the client means on the client this get, + +408 +00:24:25,940 --> 00:24:29,440 +did you see the class my service? it will work on + +409 +00:24:29,440 --> 00:24:33,540 +the client also a class called my service what + +410 +00:24:33,540 --> 00:24:36,120 +does it have? it has the same methods the first + +411 +00:24:36,120 --> 00:24:39,640 +one is called get product and the second one is + +412 +00:24:39,640 --> 00:24:42,920 +called get all products and the third one is + +413 +00:24:42,920 --> 00:24:45,980 +called get person the same methods on the server I + +414 +00:24:45,980 --> 00:24:46,800 +will show you here + +415 +00:24:49,640 --> 00:24:51,620 +On the basis of what? That when you execute a git + +416 +00:24:51,620 --> 00:24:54,800 +product by itself from inside without you knowing + +417 +00:24:54,800 --> 00:24:57,980 +it, it gets the URL and makes a request to the + +418 +00:24:57,980 --> 00:25:01,960 +server and gets the JSON of it and turns the JSON + +419 +00:25:01,960 --> 00:25:04,120 +into an object of the product type and tells you + +420 +00:25:04,120 --> 00:25:07,120 +to go ahead with this product. So what happens is + +421 +00:25:07,120 --> 00:25:10,840 +that you deal with the methods on the server and + +422 +00:25:10,840 --> 00:25:14,260 +claim them as if they are present somewhere on the + +423 +00:25:14,260 --> 00:25:18,040 +device itself. Who does this? The library. + +424 +00:25:20,960 --> 00:25:24,240 +And this is easy to do, why? Because this is a + +425 +00:25:24,240 --> 00:25:26,360 +method that makes an HTTP request from within it, + +426 +00:25:26,440 --> 00:25:29,060 +puts the link, sends it and gets the JSON We can + +427 +00:25:29,060 --> 00:25:32,380 +do it manually without this library But the idea + +428 +00:25:32,380 --> 00:25:35,640 +is that this class makes you deal with the server + +429 +00:25:35,640 --> 00:25:39,880 +and hides the details to make a request, get the + +430 +00:25:39,880 --> 00:25:42,800 +JSON and analyze it and call the methods on the + +431 +00:25:42,800 --> 00:25:45,180 +server as if these methods are present somewhere + +432 +00:25:45,970 --> 00:25:48,970 +on the device. Libraries, for example on mobile, + +433 +00:25:49,150 --> 00:25:54,330 +like Volley and Retrofit, these are famous + +434 +00:25:54,330 --> 00:25:57,710 +libraries in Android and Kotlin to make requests + +435 +00:25:57,710 --> 00:26:01,390 +on the ... this is its benefit like this, you give + +436 +00:26:01,390 --> 00:26:03,990 +him the links and he himself creates the class for + +437 +00:26:03,990 --> 00:26:06,190 +you which allows you to learn the methods on the + +438 +00:26:06,190 --> 00:26:09,770 +server as if they exist. This is the API that the + +439 +00:26:09,770 --> 00:26:14,640 +library does for you. These libraries And there's + +440 +00:26:14,640 --> 00:26:19,360 +also this thing called .. I forgot the famous + +441 +00:26:19,360 --> 00:26:21,500 +program so that you can try to make a request to + +442 +00:26:21,500 --> 00:26:24,600 +the .. The postman, exactly. The postman himself, + +443 +00:26:25,080 --> 00:26:28,160 +if you give him a link to the web service, he can + +444 +00:26:28,160 --> 00:26:31,560 +make a code for the entire client in whatever + +445 +00:26:31,560 --> 00:26:38,380 +language you want.Okay? Now, what does this have + +446 +00:26:38,380 --> 00:26:40,140 +to do with the proxy that we are talking about? + +447 +00:26:40,360 --> 00:26:42,180 +Did you notice that we did not say that in the + +448 +00:26:42,180 --> 00:26:44,280 +client-side, I create a class that is very similar + +449 +00:26:44,280 --> 00:26:48,300 +to the one in the server, and from within it, I + +450 +00:26:48,300 --> 00:26:50,300 +hide the details that it makes a connection to the + +451 +00:26:50,300 --> 00:26:52,240 +server and gives a request and gives a response + +452 +00:26:52,240 --> 00:26:57,360 +and so on? This is also what we call a proxy.So + +453 +00:26:57,360 --> 00:26:59,880 +the idea that I make a class similar to what is on + +454 +00:26:59,880 --> 00:27:03,620 +the server, API, and I call the method on the + +455 +00:27:03,620 --> 00:27:05,660 +server as if it is present on the local device, + +456 +00:27:05,780 --> 00:27:08,540 +this class is also considered to be a proxy + +457 +00:27:08,540 --> 00:27:13,680 +pattern. And this is the concept of remote method + +458 +00:27:13,680 --> 00:27:16,680 +invocation, that you call a method that is far + +459 +00:27:16,680 --> 00:27:19,240 +away as if this method is present on the local + +460 +00:27:19,240 --> 00:27:28,550 +machine.This is the client. Here it does remote + +461 +00:27:28,550 --> 00:27:31,950 +object implementation. The same object or code in + +462 +00:27:31,950 --> 00:27:34,170 +the client does its implementation here, but of + +463 +00:27:34,170 --> 00:27:37,920 +course there are detailsConnection, Response, + +464 +00:27:38,040 --> 00:27:40,540 +Request and Response are hidden from us. But in + +465 +00:27:40,540 --> 00:27:42,400 +the end, the shape of the object here is the same + +466 +00:27:42,400 --> 00:27:45,520 +shape as the one on the server. And this is one of + +467 +00:27:45,520 --> 00:27:49,480 +the applications of the proxy pattern. Here, of + +468 +00:27:49,480 --> 00:27:53,140 +course, it lists the types of proxies. We talked + +469 +00:27:53,140 --> 00:27:54,640 +about them, but now it has to classify them with + +470 +00:27:54,640 --> 00:27:57,480 +specific names. There is the virtual proxy. What + +471 +00:27:57,480 --> 00:28:00,760 +is the word virtual? Hypothetically, okay? Or it's + +472 +00:28:00,760 --> 00:28:03,800 +not true here. It's like, what does this virtual + +473 +00:28:03,800 --> 00:28:06,380 +proxy mean? Delaying the creation and + +474 +00:28:06,380 --> 00:28:10,860 +instantiation of expensive objects until need. + +475 +00:28:12,320 --> 00:28:14,840 +Like the proxy image that we made. Why is it + +476 +00:28:14,840 --> 00:28:16,700 +called virtual? Because the proxy image is not the + +477 +00:28:16,700 --> 00:28:20,480 +image. The image is what I'm wrapped inside. Okay? + +478 +00:28:20,840 --> 00:28:23,020 +Why did I do this? To delay the construction of + +479 +00:28:23,020 --> 00:28:26,600 +the object for the time I need. Okay? Remote + +480 +00:28:26,600 --> 00:28:31,030 +proxies.providing a local representation for an + +481 +00:28:31,030 --> 00:28:33,750 +object that it is in a different address space + +482 +00:28:33,750 --> 00:28:38,730 +which is like the idea of proxy that I use in the + +483 +00:28:38,730 --> 00:28:42,470 +connection on API on the server providing a local + +484 +00:28:42,470 --> 00:28:49,030 +representation for an object in a different space + +485 +00:28:49,030 --> 00:28:50,950 +what does it mean different space? on another + +486 +00:28:50,950 --> 00:28:55,840 +device this is very similar to in the classes on + +487 +00:28:55,840 --> 00:29:00,060 +the server. The goal is to deal with the methods + +488 +00:29:00,060 --> 00:29:02,260 +on the server as if they were on the local + +489 +00:29:02,260 --> 00:29:06,620 +machine. A common example is Java RMI. This is one + +490 +00:29:06,620 --> 00:29:10,540 +of the ways web services work in Java. The idea is + +491 +00:29:10,540 --> 00:29:12,920 +that the stop object, which is the object that I + +492 +00:29:12,920 --> 00:29:19,580 +created here,in the client, acts as a proxy, where + +493 +00:29:19,580 --> 00:29:22,840 +invoking methods on the stub would cause the stub + +494 +00:29:22,840 --> 00:29:25,300 +to communicate and invoke methods on a remote + +495 +00:29:25,300 --> 00:29:28,520 +object found on a different machine. Meaning that + +496 +00:29:28,520 --> 00:29:30,080 +when these methods are created from this class, + +497 +00:29:30,480 --> 00:29:33,780 +this object actually creates the methods on the + +498 +00:29:33,780 --> 00:29:37,130 +server. The last thing is protection proxies.which + +499 +00:29:37,130 --> 00:29:40,210 +is where a proxy controls access to real subject + +500 +00:29:40,210 --> 00:29:43,190 +methods by giving access to some objects while + +501 +00:29:43,190 --> 00:29:46,270 +denying access to others So when you start + +502 +00:29:46,270 --> 00:29:48,390 +controlling the access of methods to objects like + +503 +00:29:48,390 --> 00:29:50,670 +the example we saw methods that I can activate and + +504 +00:29:50,670 --> 00:29:52,610 +methods that I can hide this is considered a + +505 +00:29:52,610 --> 00:29:55,570 +protection proxy So these are the different uses + +506 +00:29:55,570 --> 00:30:01,920 +of proxy Now this example is the same exampleThe + +507 +00:30:01,920 --> 00:30:03,840 +image that we just saw has a slight difference. + +508 +00:30:04,060 --> 00:30:06,700 +Here it says that I have a high-resolution image. + +509 +00:30:06,840 --> 00:30:09,280 +This is like an image icon. It is a costly object. + +510 +00:30:09,740 --> 00:30:13,140 +Creating it takes time. Okay? This is from the + +511 +00:30:13,140 --> 00:30:17,540 +interface image. I made a proxy image, implemented + +512 +00:30:17,540 --> 00:30:20,000 +it to the interface and used it.The high + +513 +00:30:20,000 --> 00:30:32,120 +-resolution image in + +514 +00:30:32,120 --> 00:30:36,820 +the constructor calls loadLoad image is a costly + +515 +00:30:36,820 --> 00:30:40,060 +method. It is what carries the object to the + +516 +00:30:40,060 --> 00:30:43,160 +level. I want to delay the construction of the + +517 +00:30:43,160 --> 00:30:46,040 +constructor. Show image does not take time. + +518 +00:30:46,740 --> 00:30:48,660 +Because the method is actually carried in memory, + +519 +00:30:48,860 --> 00:30:52,500 +so show image displays it. Now, how can I delay + +520 +00:30:52,500 --> 00:30:55,260 +the creation of the high-resolution object? I will + +521 +00:30:55,260 --> 00:30:57,860 +create an object called ImageProxy that also + +522 +00:30:57,860 --> 00:31:01,560 +implements an image. Inside it, I have a high + +523 +00:31:01,560 --> 00:31:03,380 +-resolution image. I have yet to create this null. + +524 +00:31:04,500 --> 00:31:07,220 +And this is the path. Because when I create an + +525 +00:31:07,220 --> 00:31:09,560 +ImageProxy, it only sends me the path of the file + +526 +00:31:09,560 --> 00:31:11,640 +and stores it with it. But actually, what is this? + +527 +00:31:11,860 --> 00:31:13,620 +I have yet to create a null. + +528 +00:31:16,800 --> 00:31:18,740 +The high-resolution image has a show image and + +529 +00:31:18,740 --> 00:31:21,000 +this one also has a show image. Here in the show + +530 +00:31:21,000 --> 00:31:24,400 +image, in the moment I show the picture, I tell it + +531 +00:31:24,400 --> 00:31:27,840 +to go and run the high-resolution image. And then + +532 +00:31:27,840 --> 00:31:30,260 +I tell it to run the show image. So look, I + +533 +00:31:30,260 --> 00:31:31,820 +delayed the creation of the high-resolution image + +534 +00:31:31,820 --> 00:31:34,460 +from the constructor and left it only at the + +535 +00:31:34,460 --> 00:31:36,980 +execution of the show image. And this is the main + +536 +00:31:36,980 --> 00:31:39,520 +code that shows me the difference. Here I created + +537 +00:31:39,520 --> 00:31:43,760 +three image proxies. These, if I want, don't take + +538 +00:31:43,760 --> 00:31:47,080 +a load on the memory because I only send them + +539 +00:31:47,080 --> 00:31:51,240 +paths. In fact, the load happens on the memory + +540 +00:31:51,240 --> 00:31:53,520 +when I run Show Image, and this is not a problem + +541 +00:31:53,520 --> 00:31:56,860 +because it shows image after image. But on the + +542 +00:31:56,860 --> 00:31:59,080 +other hand, if I create high-resolution images + +543 +00:31:59,080 --> 00:32:01,700 +directly, this will load in the memory, so these + +544 +00:32:01,700 --> 00:32:04,020 +are costly methods because it will load the images + +545 +00:32:04,020 --> 00:32:07,650 +in the memory.The last point in the proxy will + +546 +00:32:07,650 --> 00:32:09,750 +separate you from the proxy pattern and some of + +547 +00:32:09,750 --> 00:32:12,430 +the previous design patterns that we took. For + +548 +00:32:12,430 --> 00:32:15,030 +example, we talked about the decorator. Let's + +549 +00:32:15,030 --> 00:32:16,610 +start with the one below. What is the difference + +550 +00:32:16,610 --> 00:32:19,070 +between the proxy and the decorator? Both have the + +551 +00:32:19,070 --> 00:32:21,550 +same principle of operation. An object wraps an + +552 +00:32:21,550 --> 00:32:23,010 +object inside, and both of them are of the same + +553 +00:32:23,010 --> 00:32:26,170 +type. But the goal is different. The decorator + +554 +00:32:26,170 --> 00:32:29,450 +added this functionality to control the object. + +555 +00:32:29,510 --> 00:32:31,350 +And this is the same thing that is present here. + +556 +00:32:31,730 --> 00:32:33,350 +Because there is another one that also wraps, + +557 +00:32:33,550 --> 00:32:36,270 +which is the adapter.The adapter wraps an object, + +558 +00:32:36,550 --> 00:32:40,730 +but why did we use the adapter? If I want the + +559 +00:32:40,730 --> 00:32:43,490 +client to use a certain library and I want him to + +560 +00:32:43,490 --> 00:32:46,950 +use another library B, should we go and change the + +561 +00:32:46,950 --> 00:32:50,490 +program to use B? He said, no, you create a new + +562 +00:32:50,490 --> 00:32:56,930 +class from type A and wrap the class from type B. + +563 +00:32:57,430 --> 00:33:00,590 +In fact, the adapter is also a wrapper, but it + +564 +00:33:00,590 --> 00:33:05,140 +takes another type. Okay? The type of adapter is + +565 +00:33:05,140 --> 00:33:06,720 +different from the type of object that is wrapped. + +566 +00:33:07,160 --> 00:33:11,140 +But in the proxy and decorator, the type of class, + +567 +00:33:11,740 --> 00:33:13,640 +which is the wrapper, whether it is decorator or + +568 +00:33:13,640 --> 00:33:16,080 +proxy, is the same type of object that is wrapped. + +569 +00:33:16,200 --> 00:33:17,600 +This is the difference here. This tells me that + +570 +00:33:17,600 --> 00:33:19,840 +the adapter implements a different interface to + +571 +00:33:19,840 --> 00:33:22,140 +the object it adapts. Okay, guys? + +572 +00:33:25,400 --> 00:33:29,360 +Okay, so we have completed the proxy pattern. We + +573 +00:33:29,360 --> 00:33:31,740 +will stop here for today. Okay, guys? + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/JjtUl0IeLFU_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/JjtUl0IeLFU_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..71ca6caa1b9789f02dfbd0f214cb4d59a1a9ad49 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/JjtUl0IeLFU_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 3283, "start": 5.21, "end": 32.83, "text": " Ok guys, peace be upon you Today, God willing, guys, we will continue the explanation of the proxy pattern to see his elderly ground and other uses of it In the last lecture, we talked about the proxy pattern and we said that it is very similar to the decorator It is really like the idea of ​​the decorator that I have an object that covers another object But why did he make another design pattern? Because the goal is only to be different from the goal of the proxy", "tokens": [3477, 1074, 11, 4336, 312, 3564, 291, 2692, 11, 1265, 4950, 11, 1074, 11, 321, 486, 2354, 264, 10835, 295, 264, 29690, 5102, 281, 536, 702, 19682, 2727, 293, 661, 4960, 295, 309, 682, 264, 1036, 7991, 11, 321, 2825, 466, 264, 29690, 5102, 293, 321, 848, 300, 309, 307, 588, 2531, 281, 264, 7919, 1639, 467, 307, 534, 411, 264, 1558, 295, 8701, 3322, 7919, 1639, 300, 286, 362, 364, 2657, 300, 10538, 1071, 2657, 583, 983, 630, 415, 652, 1071, 1715, 5102, 30, 1436, 264, 3387, 307, 787, 281, 312, 819, 490, 264, 3387, 295, 264, 29690], "avg_logprob": -0.427812485396862, "compression_ratio": 1.713768115942029, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 5.21, "end": 5.51, "word": " Ok", "probability": 0.2607421875}, {"start": 5.51, "end": 5.75, "word": " guys,", "probability": 0.5888671875}, {"start": 5.81, "end": 5.99, "word": " peace", "probability": 0.091796875}, {"start": 5.99, "end": 6.15, "word": " be", "probability": 0.8369140625}, {"start": 6.15, "end": 6.15, "word": " upon", "probability": 0.87255859375}, {"start": 6.15, "end": 6.65, "word": " you", "probability": 0.97509765625}, {"start": 6.65, "end": 8.67, "word": " Today,", "probability": 0.60498046875}, {"start": 8.81, "end": 8.91, "word": " God", "probability": 0.1728515625}, {"start": 8.91, "end": 8.97, "word": " willing,", "probability": 0.76171875}, {"start": 9.11, "end": 9.35, "word": " guys,", "probability": 0.361083984375}, {"start": 9.49, "end": 9.63, "word": " we", "probability": 0.81298828125}, {"start": 9.63, "end": 9.67, "word": " will", "probability": 0.76513671875}, {"start": 9.67, "end": 10.07, "word": " continue", "probability": 0.81494140625}, {"start": 10.07, "end": 10.85, "word": " the", "probability": 0.3955078125}, {"start": 10.85, "end": 11.09, "word": " explanation", "probability": 0.290283203125}, {"start": 11.09, "end": 11.53, "word": " of", "probability": 0.615234375}, {"start": 11.53, "end": 11.79, "word": " the", "probability": 0.281494140625}, {"start": 11.79, "end": 12.17, "word": " proxy", "probability": 0.95361328125}, {"start": 12.17, "end": 12.61, "word": " pattern", "probability": 0.865234375}, {"start": 12.61, "end": 12.81, "word": " to", "probability": 0.1539306640625}, {"start": 12.81, "end": 12.95, "word": " see", "probability": 0.8720703125}, {"start": 12.95, "end": 13.23, "word": " his", "probability": 0.23046875}, {"start": 13.23, "end": 13.49, "word": " elderly", "probability": 0.2344970703125}, {"start": 13.49, "end": 13.87, "word": " ground", "probability": 0.8046875}, {"start": 13.87, "end": 14.15, "word": " and", "probability": 0.701171875}, {"start": 14.15, "end": 14.93, "word": " other", "probability": 0.5146484375}, {"start": 14.93, "end": 14.95, "word": " uses", "probability": 0.70458984375}, {"start": 14.95, "end": 15.15, "word": " of", "probability": 0.5029296875}, {"start": 15.15, "end": 15.41, "word": " it", "probability": 0.8251953125}, {"start": 15.41, "end": 17.85, "word": " In", "probability": 0.397705078125}, {"start": 17.85, "end": 17.97, "word": " the", "probability": 0.8701171875}, {"start": 17.97, "end": 17.97, "word": " last", "probability": 0.444580078125}, {"start": 17.97, "end": 18.59, "word": " lecture,", "probability": 0.90869140625}, {"start": 18.63, "end": 18.87, "word": " we", "probability": 0.8603515625}, {"start": 18.87, "end": 19.09, "word": " talked", "probability": 0.70068359375}, {"start": 19.09, "end": 19.51, "word": " about", "probability": 0.9072265625}, {"start": 19.51, "end": 19.83, "word": " the", "probability": 0.397705078125}, {"start": 19.83, "end": 20.11, "word": " proxy", "probability": 0.97119140625}, {"start": 20.11, "end": 20.51, "word": " pattern", "probability": 0.873046875}, {"start": 20.51, "end": 20.75, "word": " and", "probability": 0.59326171875}, {"start": 20.75, "end": 20.93, "word": " we", "probability": 0.66162109375}, {"start": 20.93, "end": 20.93, "word": " said", "probability": 0.91650390625}, {"start": 20.93, "end": 21.07, "word": " that", "probability": 0.68603515625}, {"start": 21.07, "end": 21.15, "word": " it", "probability": 0.92578125}, {"start": 21.15, "end": 21.23, "word": " is", "probability": 0.87646484375}, {"start": 21.23, "end": 21.31, "word": " very", "probability": 0.7509765625}, {"start": 21.31, "end": 21.51, "word": " similar", "probability": 0.9345703125}, {"start": 21.51, "end": 21.93, "word": " to", "probability": 0.86279296875}, {"start": 21.93, "end": 22.01, "word": " the", "probability": 0.77294921875}, {"start": 22.01, "end": 22.47, "word": " decorator", "probability": 0.97265625}, {"start": 22.47, "end": 22.83, "word": " It", "probability": 0.53076171875}, {"start": 22.83, "end": 22.91, "word": " is", "probability": 0.6025390625}, {"start": 22.91, "end": 23.21, "word": " really", "probability": 0.5634765625}, {"start": 23.21, "end": 23.71, "word": " like", "probability": 0.21533203125}, {"start": 23.71, "end": 23.97, "word": " the", "probability": 0.865234375}, {"start": 23.97, "end": 24.19, "word": " idea", "probability": 0.7861328125}, {"start": 24.19, "end": 24.35, "word": " of", "probability": 0.91357421875}, {"start": 24.35, "end": 24.39, "word": " ​​the", "probability": 0.75390625}, {"start": 24.39, "end": 24.87, "word": " decorator", "probability": 0.992431640625}, {"start": 24.87, "end": 25.05, "word": " that", "probability": 0.46044921875}, {"start": 25.05, "end": 25.23, "word": " I", "probability": 0.841796875}, {"start": 25.23, "end": 25.49, "word": " have", "probability": 0.935546875}, {"start": 25.49, "end": 25.69, "word": " an", "probability": 0.8623046875}, {"start": 25.69, "end": 26.01, "word": " object", "probability": 0.97802734375}, {"start": 26.01, "end": 26.15, "word": " that", "probability": 0.5400390625}, {"start": 26.15, "end": 26.41, "word": " covers", "probability": 0.361083984375}, {"start": 26.41, "end": 27.25, "word": " another", "probability": 0.91259765625}, {"start": 27.25, "end": 27.81, "word": " object", "probability": 0.98095703125}, {"start": 27.81, "end": 28.95, "word": " But", "probability": 0.70654296875}, {"start": 28.95, "end": 29.43, "word": " why", "probability": 0.88134765625}, {"start": 29.43, "end": 29.61, "word": " did", "probability": 0.73876953125}, {"start": 29.61, "end": 29.65, "word": " he", "probability": 0.6865234375}, {"start": 29.65, "end": 29.65, "word": " make", "probability": 0.48291015625}, {"start": 29.65, "end": 29.75, "word": " another", "probability": 0.69921875}, {"start": 29.75, "end": 29.99, "word": " design", "probability": 0.6708984375}, {"start": 29.99, "end": 30.39, "word": " pattern?", "probability": 0.90283203125}, {"start": 30.57, "end": 30.75, "word": " Because", "probability": 0.86767578125}, {"start": 30.75, "end": 30.87, "word": " the", "probability": 0.88671875}, {"start": 30.87, "end": 31.07, "word": " goal", "probability": 0.7255859375}, {"start": 31.07, "end": 31.21, "word": " is", "probability": 0.6748046875}, {"start": 31.21, "end": 31.35, "word": " only", "probability": 0.451171875}, {"start": 31.35, "end": 31.51, "word": " to", "probability": 0.57666015625}, {"start": 31.51, "end": 31.61, "word": " be", "probability": 0.74609375}, {"start": 31.61, "end": 31.97, "word": " different", "probability": 0.8857421875}, {"start": 31.97, "end": 32.15, "word": " from", "probability": 0.865234375}, {"start": 32.15, "end": 32.25, "word": " the", "probability": 0.92919921875}, {"start": 32.25, "end": 32.35, "word": " goal", "probability": 0.728515625}, {"start": 32.35, "end": 32.55, "word": " of", "probability": 0.9306640625}, {"start": 32.55, "end": 32.59, "word": " the", "probability": 0.828125}, {"start": 32.59, "end": 32.83, "word": " proxy", "probability": 0.9697265625}], "temperature": 1.0}, {"id": 2, "seek": 5889, "start": 33.53, "end": 58.89, "text": " about the goal of the decorator. The goal of the decorator was to wrap an object with the goal of adding additional functionality. But the proxy is to wrap an object with the goal of controlling this object and controlling it in a larger way. An example of this, we saw in the previous lecture, is that when I made an image gallery program that displayed a group of images, and this program would load the images as an image icon.", "tokens": [466, 264, 3387, 295, 264, 7919, 1639, 13, 440, 3387, 295, 264, 7919, 1639, 390, 281, 7019, 364, 2657, 365, 264, 3387, 295, 5127, 4497, 14980, 13, 583, 264, 29690, 307, 281, 7019, 364, 2657, 365, 264, 3387, 295, 14905, 341, 2657, 293, 14905, 309, 294, 257, 4833, 636, 13, 1107, 1365, 295, 341, 11, 321, 1866, 294, 264, 3894, 7991, 11, 307, 300, 562, 286, 1027, 364, 3256, 18378, 1461, 300, 16372, 257, 1594, 295, 5267, 11, 293, 341, 1461, 576, 3677, 264, 5267, 382, 364, 3256, 6528, 13], "avg_logprob": -0.5013736001737825, "compression_ratio": 1.9155555555555555, "no_speech_prob": 4.351139068603516e-06, "words": [{"start": 33.53, "end": 33.97, "word": " about", "probability": 0.158935546875}, {"start": 33.97, "end": 34.15, "word": " the", "probability": 0.8505859375}, {"start": 34.15, "end": 34.19, "word": " goal", "probability": 0.3076171875}, {"start": 34.19, "end": 34.33, "word": " of", "probability": 0.93798828125}, {"start": 34.33, "end": 34.35, "word": " the", "probability": 0.7275390625}, {"start": 34.35, "end": 34.75, "word": " decorator.", "probability": 0.90771484375}, {"start": 34.81, "end": 34.93, "word": " The", "probability": 0.771484375}, {"start": 34.93, "end": 35.09, "word": " goal", "probability": 0.329833984375}, {"start": 35.09, "end": 35.09, "word": " of", "probability": 0.87109375}, {"start": 35.09, "end": 35.09, "word": " the", "probability": 0.6328125}, {"start": 35.09, "end": 35.33, "word": " decorator", "probability": 0.989013671875}, {"start": 35.33, "end": 35.99, "word": " was", "probability": 0.67333984375}, {"start": 35.99, "end": 36.21, "word": " to", "probability": 0.83984375}, {"start": 36.21, "end": 36.47, "word": " wrap", "probability": 0.322021484375}, {"start": 36.47, "end": 36.71, "word": " an", "probability": 0.39599609375}, {"start": 36.71, "end": 36.89, "word": " object", "probability": 0.97265625}, {"start": 36.89, "end": 37.05, "word": " with", "probability": 0.4814453125}, {"start": 37.05, "end": 37.13, "word": " the", "probability": 0.44482421875}, {"start": 37.13, "end": 37.25, "word": " goal", "probability": 0.34814453125}, {"start": 37.25, "end": 37.43, "word": " of", "probability": 0.76806640625}, {"start": 37.43, "end": 37.73, "word": " adding", "probability": 0.82666015625}, {"start": 37.73, "end": 37.73, "word": " additional", "probability": 0.42724609375}, {"start": 37.73, "end": 39.39, "word": " functionality.", "probability": 0.837890625}, {"start": 40.33, "end": 40.59, "word": " But", "probability": 0.67578125}, {"start": 40.59, "end": 40.75, "word": " the", "probability": 0.52685546875}, {"start": 40.75, "end": 41.11, "word": " proxy", "probability": 0.8291015625}, {"start": 41.11, "end": 41.33, "word": " is", "probability": 0.57373046875}, {"start": 41.33, "end": 41.51, "word": " to", "probability": 0.556640625}, {"start": 41.51, "end": 41.79, "word": " wrap", "probability": 0.79345703125}, {"start": 41.79, "end": 42.05, "word": " an", "probability": 0.6689453125}, {"start": 42.05, "end": 42.29, "word": " object", "probability": 0.974609375}, {"start": 42.29, "end": 42.43, "word": " with", "probability": 0.8310546875}, {"start": 42.43, "end": 42.65, "word": " the", "probability": 0.876953125}, {"start": 42.65, "end": 42.65, "word": " goal", "probability": 0.89453125}, {"start": 42.65, "end": 42.81, "word": " of", "probability": 0.91357421875}, {"start": 42.81, "end": 43.65, "word": " controlling", "probability": 0.517578125}, {"start": 43.65, "end": 44.47, "word": " this", "probability": 0.31884765625}, {"start": 44.47, "end": 45.17, "word": " object", "probability": 0.9736328125}, {"start": 45.17, "end": 45.65, "word": " and", "probability": 0.2449951171875}, {"start": 45.65, "end": 46.43, "word": " controlling", "probability": 0.397705078125}, {"start": 46.43, "end": 46.77, "word": " it", "probability": 0.92138671875}, {"start": 46.77, "end": 46.83, "word": " in", "probability": 0.53662109375}, {"start": 46.83, "end": 46.93, "word": " a", "probability": 0.8662109375}, {"start": 46.93, "end": 47.45, "word": " larger", "probability": 0.52490234375}, {"start": 47.45, "end": 47.45, "word": " way.", "probability": 0.8583984375}, {"start": 48.79, "end": 49.23, "word": " An", "probability": 0.5283203125}, {"start": 49.23, "end": 49.23, "word": " example", "probability": 0.9736328125}, {"start": 49.23, "end": 49.39, "word": " of", "probability": 0.52734375}, {"start": 49.39, "end": 49.49, "word": " this,", "probability": 0.845703125}, {"start": 49.49, "end": 49.67, "word": " we", "probability": 0.83544921875}, {"start": 49.67, "end": 49.67, "word": " saw", "probability": 0.81689453125}, {"start": 49.67, "end": 49.81, "word": " in", "probability": 0.791015625}, {"start": 49.81, "end": 49.85, "word": " the", "probability": 0.80517578125}, {"start": 49.85, "end": 50.45, "word": " previous", "probability": 0.51513671875}, {"start": 50.45, "end": 50.45, "word": " lecture,", "probability": 0.8720703125}, {"start": 50.61, "end": 50.73, "word": " is", "probability": 0.4130859375}, {"start": 50.73, "end": 51.73, "word": " that", "probability": 0.41748046875}, {"start": 51.73, "end": 51.91, "word": " when", "probability": 0.546875}, {"start": 51.91, "end": 52.03, "word": " I", "probability": 0.44970703125}, {"start": 52.03, "end": 52.19, "word": " made", "probability": 0.56298828125}, {"start": 52.19, "end": 52.31, "word": " an", "probability": 0.429443359375}, {"start": 52.31, "end": 53.19, "word": " image", "probability": 0.8701171875}, {"start": 53.19, "end": 53.59, "word": " gallery", "probability": 0.9873046875}, {"start": 53.59, "end": 53.59, "word": " program", "probability": 0.701171875}, {"start": 53.59, "end": 53.77, "word": " that", "probability": 0.30224609375}, {"start": 53.77, "end": 53.99, "word": " displayed", "probability": 0.276123046875}, {"start": 53.99, "end": 54.11, "word": " a", "probability": 0.8544921875}, {"start": 54.11, "end": 54.31, "word": " group", "probability": 0.353759765625}, {"start": 54.31, "end": 54.55, "word": " of", "probability": 0.97119140625}, {"start": 54.55, "end": 54.85, "word": " images,", "probability": 0.2666015625}, {"start": 54.95, "end": 54.99, "word": " and", "probability": 0.6416015625}, {"start": 54.99, "end": 55.17, "word": " this", "probability": 0.441162109375}, {"start": 55.17, "end": 55.61, "word": " program", "probability": 0.8876953125}, {"start": 55.61, "end": 55.85, "word": " would", "probability": 0.25244140625}, {"start": 55.85, "end": 56.91, "word": " load", "probability": 0.634765625}, {"start": 56.91, "end": 57.15, "word": " the", "probability": 0.6513671875}, {"start": 57.15, "end": 57.47, "word": " images", "probability": 0.7314453125}, {"start": 57.47, "end": 58.29, "word": " as", "probability": 0.90283203125}, {"start": 58.29, "end": 58.39, "word": " an", "probability": 0.427490234375}, {"start": 58.39, "end": 58.51, "word": " image", "probability": 0.9091796875}, {"start": 58.51, "end": 58.89, "word": " icon.", "probability": 0.92919921875}], "temperature": 1.0}, {"id": 3, "seek": 8892, "start": 59.7, "end": 88.92, "text": " The problem with image icons is that when we used to create loops on the paths of images and give them the name of the image or the path of the image, when an object was created, an image icon, it was a costly object. Its creation takes up space in the memory. So if you create 100 images, it means that 100 images will be stored in the memory whether you show them or not. You actually stored the image, but you only showed one image. So we made a trick that we wanted to delay the creation of this object.", "tokens": [440, 1154, 365, 3256, 23308, 307, 300, 562, 321, 1143, 281, 1884, 16121, 322, 264, 14518, 295, 5267, 293, 976, 552, 264, 1315, 295, 264, 3256, 420, 264, 3100, 295, 264, 3256, 11, 562, 364, 2657, 390, 2942, 11, 364, 3256, 6528, 11, 309, 390, 257, 28328, 2657, 13, 6953, 8016, 2516, 493, 1901, 294, 264, 4675, 13, 407, 498, 291, 1884, 2319, 5267, 11, 309, 1355, 300, 2319, 5267, 486, 312, 12187, 294, 264, 4675, 1968, 291, 855, 552, 420, 406, 13, 509, 767, 12187, 264, 3256, 11, 457, 291, 787, 4712, 472, 3256, 13, 407, 321, 1027, 257, 4282, 300, 321, 1415, 281, 8577, 264, 8016, 295, 341, 2657, 13], "avg_logprob": -0.47289824274788916, "compression_ratio": 1.9389312977099236, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 59.7, "end": 59.94, "word": " The", "probability": 0.483154296875}, {"start": 59.94, "end": 60.12, "word": " problem", "probability": 0.67626953125}, {"start": 60.12, "end": 60.3, "word": " with", "probability": 0.73046875}, {"start": 60.3, "end": 60.5, "word": " image", "probability": 0.367919921875}, {"start": 60.5, "end": 60.88, "word": " icons", "probability": 0.62158203125}, {"start": 60.88, "end": 61.02, "word": " is", "probability": 0.728515625}, {"start": 61.02, "end": 61.52, "word": " that", "probability": 0.67333984375}, {"start": 61.52, "end": 62.16, "word": " when", "probability": 0.61083984375}, {"start": 62.16, "end": 62.44, "word": " we", "probability": 0.77880859375}, {"start": 62.44, "end": 62.44, "word": " used", "probability": 0.17236328125}, {"start": 62.44, "end": 62.48, "word": " to", "probability": 0.93798828125}, {"start": 62.48, "end": 62.7, "word": " create", "probability": 0.38037109375}, {"start": 62.7, "end": 62.92, "word": " loops", "probability": 0.65283203125}, {"start": 62.92, "end": 63.1, "word": " on", "probability": 0.388427734375}, {"start": 63.1, "end": 63.18, "word": " the", "probability": 0.292724609375}, {"start": 63.18, "end": 63.42, "word": " paths", "probability": 0.259521484375}, {"start": 63.42, "end": 63.62, "word": " of", "probability": 0.86279296875}, {"start": 63.62, "end": 63.86, "word": " images", "probability": 0.265869140625}, {"start": 63.86, "end": 63.98, "word": " and", "probability": 0.6240234375}, {"start": 63.98, "end": 64.22, "word": " give", "probability": 0.483642578125}, {"start": 64.22, "end": 64.5, "word": " them", "probability": 0.6455078125}, {"start": 64.5, "end": 64.68, "word": " the", "probability": 0.4384765625}, {"start": 64.68, "end": 64.86, "word": " name", "probability": 0.5185546875}, {"start": 64.86, "end": 65.0, "word": " of", "probability": 0.8115234375}, {"start": 65.0, "end": 65.0, "word": " the", "probability": 0.7578125}, {"start": 65.0, "end": 65.26, "word": " image", "probability": 0.76904296875}, {"start": 65.26, "end": 65.9, "word": " or", "probability": 0.71728515625}, {"start": 65.9, "end": 65.98, "word": " the", "probability": 0.458251953125}, {"start": 65.98, "end": 66.18, "word": " path", "probability": 0.73876953125}, {"start": 66.18, "end": 66.28, "word": " of", "probability": 0.9287109375}, {"start": 66.28, "end": 66.36, "word": " the", "probability": 0.859375}, {"start": 66.36, "end": 66.58, "word": " image,", "probability": 0.89599609375}, {"start": 67.04, "end": 67.34, "word": " when", "probability": 0.77734375}, {"start": 67.34, "end": 67.6, "word": " an", "probability": 0.126220703125}, {"start": 67.6, "end": 68.14, "word": " object", "probability": 0.89794921875}, {"start": 68.14, "end": 68.18, "word": " was", "probability": 0.50927734375}, {"start": 68.18, "end": 68.18, "word": " created,", "probability": 0.7685546875}, {"start": 68.2, "end": 68.34, "word": " an", "probability": 0.423095703125}, {"start": 68.34, "end": 68.42, "word": " image", "probability": 0.94580078125}, {"start": 68.42, "end": 68.78, "word": " icon,", "probability": 0.85400390625}, {"start": 68.94, "end": 68.94, "word": " it", "probability": 0.677734375}, {"start": 68.94, "end": 69.02, "word": " was", "probability": 0.80712890625}, {"start": 69.02, "end": 69.24, "word": " a", "probability": 0.8232421875}, {"start": 69.24, "end": 69.6, "word": " costly", "probability": 0.222900390625}, {"start": 69.6, "end": 70.06, "word": " object.", "probability": 0.96337890625}, {"start": 70.82, "end": 71.26, "word": " Its", "probability": 0.462158203125}, {"start": 71.26, "end": 71.26, "word": " creation", "probability": 0.8193359375}, {"start": 71.26, "end": 72.0, "word": " takes", "probability": 0.80517578125}, {"start": 72.0, "end": 72.28, "word": " up", "probability": 0.8369140625}, {"start": 72.28, "end": 72.56, "word": " space", "probability": 0.6650390625}, {"start": 72.56, "end": 72.74, "word": " in", "probability": 0.90966796875}, {"start": 72.74, "end": 72.8, "word": " the", "probability": 0.5029296875}, {"start": 72.8, "end": 73.06, "word": " memory.", "probability": 0.86962890625}, {"start": 73.54, "end": 73.84, "word": " So", "probability": 0.6796875}, {"start": 73.84, "end": 74.04, "word": " if", "probability": 0.81689453125}, {"start": 74.04, "end": 74.14, "word": " you", "probability": 0.947265625}, {"start": 74.14, "end": 74.38, "word": " create", "probability": 0.5751953125}, {"start": 74.38, "end": 74.64, "word": " 100", "probability": 0.28369140625}, {"start": 74.64, "end": 74.96, "word": " images,", "probability": 0.83837890625}, {"start": 75.06, "end": 75.24, "word": " it", "probability": 0.30712890625}, {"start": 75.24, "end": 75.24, "word": " means", "probability": 0.908203125}, {"start": 75.24, "end": 75.36, "word": " that", "probability": 0.81298828125}, {"start": 75.36, "end": 75.54, "word": " 100", "probability": 0.6142578125}, {"start": 75.54, "end": 75.76, "word": " images", "probability": 0.8486328125}, {"start": 75.76, "end": 75.96, "word": " will", "probability": 0.77783203125}, {"start": 75.96, "end": 76.04, "word": " be", "probability": 0.50830078125}, {"start": 76.04, "end": 76.26, "word": " stored", "probability": 0.337646484375}, {"start": 76.26, "end": 76.46, "word": " in", "probability": 0.92431640625}, {"start": 76.46, "end": 76.58, "word": " the", "probability": 0.61474609375}, {"start": 76.58, "end": 76.84, "word": " memory", "probability": 0.884765625}, {"start": 76.84, "end": 77.08, "word": " whether", "probability": 0.54638671875}, {"start": 77.08, "end": 77.34, "word": " you", "probability": 0.88818359375}, {"start": 77.34, "end": 77.52, "word": " show", "probability": 0.421875}, {"start": 77.52, "end": 77.72, "word": " them", "probability": 0.853515625}, {"start": 77.72, "end": 77.88, "word": " or", "probability": 0.8486328125}, {"start": 77.88, "end": 78.0, "word": " not.", "probability": 0.89794921875}, {"start": 78.64, "end": 78.86, "word": " You", "probability": 0.5009765625}, {"start": 78.86, "end": 79.28, "word": " actually", "probability": 0.393798828125}, {"start": 79.28, "end": 79.74, "word": " stored", "probability": 0.260498046875}, {"start": 79.74, "end": 79.96, "word": " the", "probability": 0.70458984375}, {"start": 79.96, "end": 80.08, "word": " image,", "probability": 0.77197265625}, {"start": 80.16, "end": 80.26, "word": " but", "probability": 0.89501953125}, {"start": 80.26, "end": 80.44, "word": " you", "probability": 0.29443359375}, {"start": 80.44, "end": 80.6, "word": " only", "probability": 0.386962890625}, {"start": 80.6, "end": 80.98, "word": " showed", "probability": 0.6318359375}, {"start": 80.98, "end": 82.16, "word": " one", "probability": 0.76123046875}, {"start": 82.16, "end": 82.48, "word": " image.", "probability": 0.83056640625}, {"start": 84.18, "end": 84.62, "word": " So", "probability": 0.81640625}, {"start": 84.62, "end": 84.96, "word": " we", "probability": 0.85400390625}, {"start": 84.96, "end": 84.96, "word": " made", "probability": 0.384033203125}, {"start": 84.96, "end": 85.08, "word": " a", "probability": 0.95263671875}, {"start": 85.08, "end": 85.38, "word": " trick", "probability": 0.9130859375}, {"start": 85.38, "end": 86.18, "word": " that", "probability": 0.3642578125}, {"start": 86.18, "end": 86.44, "word": " we", "probability": 0.77734375}, {"start": 86.44, "end": 87.16, "word": " wanted", "probability": 0.457275390625}, {"start": 87.16, "end": 87.92, "word": " to", "probability": 0.360107421875}, {"start": 87.92, "end": 88.52, "word": " delay", "probability": 0.755859375}, {"start": 88.52, "end": 88.7, "word": " the", "probability": 0.68212890625}, {"start": 88.7, "end": 88.92, "word": " creation", "probability": 0.84765625}, {"start": 88.92, "end": 88.92, "word": " of", "probability": 0.97021484375}, {"start": 88.92, "end": 88.92, "word": " this", "probability": 0.84130859375}, {"start": 88.92, "end": 88.92, "word": " object.", "probability": 0.9521484375}], "temperature": 1.0}, {"id": 4, "seek": 11568, "start": 89.82, "end": 115.68, "text": "we want to change it, but at the same time, I don't want to change too much in my app so what did I do? I created a new class called ImageProxy that covers the image icon because the image is basically an image icon, okay? so I created an imaginary object or an imaginary class called ImageProxy that covers the image icon all the idea that exists is that I don't really want to create the image icon unless I need to", "tokens": [826, 528, 281, 1319, 309, 11, 457, 412, 264, 912, 565, 11, 286, 500, 380, 528, 281, 1319, 886, 709, 294, 452, 724, 370, 437, 630, 286, 360, 30, 286, 2942, 257, 777, 1508, 1219, 29903, 12681, 12876, 300, 10538, 264, 3256, 6528, 570, 264, 3256, 307, 1936, 364, 3256, 6528, 11, 1392, 30, 370, 286, 2942, 364, 26164, 2657, 420, 364, 26164, 1508, 1219, 29903, 12681, 12876, 300, 10538, 264, 3256, 6528, 439, 264, 1558, 300, 8198, 307, 300, 286, 500, 380, 534, 528, 281, 1884, 264, 3256, 6528, 5969, 286, 643, 281], "avg_logprob": -0.452960529452876, "compression_ratio": 2.0341463414634147, "no_speech_prob": 1.519918441772461e-05, "words": [{"start": 89.82, "end": 89.98, "word": "we", "probability": 0.1529541015625}, {"start": 89.98, "end": 90.14, "word": " want", "probability": 0.1884765625}, {"start": 90.14, "end": 90.16, "word": " to", "probability": 0.94921875}, {"start": 90.16, "end": 90.38, "word": " change", "probability": 0.826171875}, {"start": 90.38, "end": 90.72, "word": " it,", "probability": 0.3232421875}, {"start": 90.98, "end": 91.12, "word": " but", "probability": 0.72412109375}, {"start": 91.12, "end": 91.26, "word": " at", "probability": 0.6201171875}, {"start": 91.26, "end": 91.5, "word": " the", "probability": 0.91259765625}, {"start": 91.5, "end": 91.5, "word": " same", "probability": 0.90576171875}, {"start": 91.5, "end": 91.86, "word": " time,", "probability": 0.88720703125}, {"start": 92.04, "end": 92.06, "word": " I", "probability": 0.41357421875}, {"start": 92.06, "end": 92.12, "word": " don't", "probability": 0.875244140625}, {"start": 92.12, "end": 92.3, "word": " want", "probability": 0.8271484375}, {"start": 92.3, "end": 92.4, "word": " to", "probability": 0.91015625}, {"start": 92.4, "end": 92.56, "word": " change", "probability": 0.8525390625}, {"start": 92.56, "end": 92.8, "word": " too", "probability": 0.2259521484375}, {"start": 92.8, "end": 92.9, "word": " much", "probability": 0.87109375}, {"start": 92.9, "end": 93.02, "word": " in", "probability": 0.42041015625}, {"start": 93.02, "end": 93.12, "word": " my", "probability": 0.85400390625}, {"start": 93.12, "end": 93.48, "word": " app", "probability": 0.421630859375}, {"start": 93.48, "end": 94.72, "word": " so", "probability": 0.305908203125}, {"start": 94.72, "end": 94.88, "word": " what", "probability": 0.422607421875}, {"start": 94.88, "end": 94.88, "word": " did", "probability": 0.6552734375}, {"start": 94.88, "end": 95.1, "word": " I", "probability": 0.916015625}, {"start": 95.1, "end": 95.24, "word": " do?", "probability": 0.9453125}, {"start": 95.46, "end": 95.54, "word": " I", "probability": 0.9697265625}, {"start": 95.54, "end": 95.82, "word": " created", "probability": 0.492431640625}, {"start": 95.82, "end": 95.98, "word": " a", "probability": 0.97900390625}, {"start": 95.98, "end": 96.54, "word": " new", "probability": 0.873046875}, {"start": 96.54, "end": 96.54, "word": " class", "probability": 0.9580078125}, {"start": 96.54, "end": 96.96, "word": " called", "probability": 0.42431640625}, {"start": 96.96, "end": 97.68, "word": " ImageProxy", "probability": 0.7220865885416666}, {"start": 97.68, "end": 97.86, "word": " that", "probability": 0.4873046875}, {"start": 97.86, "end": 98.16, "word": " covers", "probability": 0.283447265625}, {"start": 98.16, "end": 98.96, "word": " the", "probability": 0.68408203125}, {"start": 98.96, "end": 99.14, "word": " image", "probability": 0.8056640625}, {"start": 99.14, "end": 99.48, "word": " icon", "probability": 0.87890625}, {"start": 99.48, "end": 100.26, "word": " because", "probability": 0.7060546875}, {"start": 100.26, "end": 100.4, "word": " the", "probability": 0.74365234375}, {"start": 100.4, "end": 100.6, "word": " image", "probability": 0.47265625}, {"start": 100.6, "end": 101.16, "word": " is", "probability": 0.6650390625}, {"start": 101.16, "end": 101.16, "word": " basically", "probability": 0.366943359375}, {"start": 101.16, "end": 101.36, "word": " an", "probability": 0.60546875}, {"start": 101.36, "end": 101.46, "word": " image", "probability": 0.888671875}, {"start": 101.46, "end": 101.94, "word": " icon,", "probability": 0.94091796875}, {"start": 101.94, "end": 102.62, "word": " okay?", "probability": 0.316162109375}, {"start": 103.08, "end": 103.18, "word": " so", "probability": 0.7333984375}, {"start": 103.18, "end": 103.28, "word": " I", "probability": 0.9599609375}, {"start": 103.28, "end": 103.56, "word": " created", "probability": 0.67333984375}, {"start": 103.56, "end": 104.16, "word": " an", "probability": 0.4716796875}, {"start": 104.16, "end": 104.16, "word": " imaginary", "probability": 0.376953125}, {"start": 104.16, "end": 104.82, "word": " object", "probability": 0.96826171875}, {"start": 104.82, "end": 105.34, "word": " or", "probability": 0.308349609375}, {"start": 105.34, "end": 105.72, "word": " an", "probability": 0.267578125}, {"start": 105.72, "end": 105.72, "word": " imaginary", "probability": 0.94775390625}, {"start": 105.72, "end": 106.06, "word": " class", "probability": 0.94873046875}, {"start": 106.06, "end": 106.54, "word": " called", "probability": 0.67431640625}, {"start": 106.54, "end": 107.24, "word": " ImageProxy", "probability": 0.92626953125}, {"start": 107.24, "end": 107.38, "word": " that", "probability": 0.828125}, {"start": 107.38, "end": 107.66, "word": " covers", "probability": 0.84814453125}, {"start": 107.66, "end": 108.44, "word": " the", "probability": 0.76220703125}, {"start": 108.44, "end": 108.6, "word": " image", "probability": 0.87451171875}, {"start": 108.6, "end": 109.16, "word": " icon", "probability": 0.923828125}, {"start": 109.16, "end": 109.8, "word": " all", "probability": 0.55908203125}, {"start": 109.8, "end": 109.92, "word": " the", "probability": 0.6787109375}, {"start": 109.92, "end": 110.16, "word": " idea", "probability": 0.5107421875}, {"start": 110.16, "end": 110.32, "word": " that", "probability": 0.66064453125}, {"start": 110.32, "end": 110.64, "word": " exists", "probability": 0.376708984375}, {"start": 110.64, "end": 111.44, "word": " is", "probability": 0.53173828125}, {"start": 111.44, "end": 111.54, "word": " that", "probability": 0.88525390625}, {"start": 111.54, "end": 111.86, "word": " I", "probability": 0.947265625}, {"start": 111.86, "end": 112.26, "word": " don't", "probability": 0.84033203125}, {"start": 112.26, "end": 112.54, "word": " really", "probability": 0.27587890625}, {"start": 112.54, "end": 112.54, "word": " want", "probability": 0.8740234375}, {"start": 112.54, "end": 112.66, "word": " to", "probability": 0.9677734375}, {"start": 112.66, "end": 112.9, "word": " create", "probability": 0.7333984375}, {"start": 112.9, "end": 113.04, "word": " the", "probability": 0.7080078125}, {"start": 113.04, "end": 113.22, "word": " image", "probability": 0.90869140625}, {"start": 113.22, "end": 113.68, "word": " icon", "probability": 0.9462890625}, {"start": 113.68, "end": 115.0, "word": " unless", "probability": 0.412353515625}, {"start": 115.0, "end": 115.22, "word": " I", "probability": 0.67529296875}, {"start": 115.22, "end": 115.56, "word": " need", "probability": 0.91162109375}, {"start": 115.56, "end": 115.68, "word": " to", "probability": 0.5205078125}], "temperature": 1.0}, {"id": 5, "seek": 13763, "start": 116.33, "end": 137.63, "text": "Okay? So in the image proxy, the new class that I created, its constructor does not create an object from an image icon, it only sends a string to the image and stores this string. So if I create a thousand image proxies, they will not take anything from the memory because each object is just a string, which is the image string.", "tokens": [8297, 30, 407, 294, 264, 3256, 29690, 11, 264, 777, 1508, 300, 286, 2942, 11, 1080, 47479, 775, 406, 1884, 364, 2657, 490, 364, 3256, 6528, 11, 309, 787, 14790, 257, 6798, 281, 264, 3256, 293, 9512, 341, 6798, 13, 407, 498, 286, 1884, 257, 4714, 3256, 447, 87, 530, 11, 436, 486, 406, 747, 1340, 490, 264, 4675, 570, 1184, 2657, 307, 445, 257, 6798, 11, 597, 307, 264, 3256, 6798, 13], "avg_logprob": -0.48944258206599467, "compression_ratio": 1.71875, "no_speech_prob": 1.4483928680419922e-05, "words": [{"start": 116.33, "end": 116.63, "word": "Okay?", "probability": 0.1551513671875}, {"start": 117.31, "end": 117.55, "word": " So", "probability": 0.57958984375}, {"start": 117.55, "end": 117.99, "word": " in", "probability": 0.57568359375}, {"start": 117.99, "end": 118.07, "word": " the", "probability": 0.56640625}, {"start": 118.07, "end": 118.29, "word": " image", "probability": 0.59130859375}, {"start": 118.29, "end": 118.77, "word": " proxy,", "probability": 0.9580078125}, {"start": 118.95, "end": 119.17, "word": " the", "probability": 0.65185546875}, {"start": 119.17, "end": 119.19, "word": " new", "probability": 0.77392578125}, {"start": 119.19, "end": 119.77, "word": " class", "probability": 0.94873046875}, {"start": 119.77, "end": 119.87, "word": " that", "probability": 0.494140625}, {"start": 119.87, "end": 119.99, "word": " I", "probability": 0.9697265625}, {"start": 119.99, "end": 120.27, "word": " created,", "probability": 0.318603515625}, {"start": 120.43, "end": 120.45, "word": " its", "probability": 0.428955078125}, {"start": 120.45, "end": 121.07, "word": " constructor", "probability": 0.91064453125}, {"start": 121.07, "end": 122.23, "word": " does", "probability": 0.384521484375}, {"start": 122.23, "end": 122.73, "word": " not", "probability": 0.92822265625}, {"start": 122.73, "end": 123.45, "word": " create", "probability": 0.2066650390625}, {"start": 123.45, "end": 123.69, "word": " an", "probability": 0.6298828125}, {"start": 123.69, "end": 124.17, "word": " object", "probability": 0.9208984375}, {"start": 124.17, "end": 124.35, "word": " from", "probability": 0.73388671875}, {"start": 124.35, "end": 124.43, "word": " an", "probability": 0.42626953125}, {"start": 124.43, "end": 124.57, "word": " image", "probability": 0.923828125}, {"start": 124.57, "end": 124.99, "word": " icon,", "probability": 0.8974609375}, {"start": 125.29, "end": 126.01, "word": " it", "probability": 0.6533203125}, {"start": 126.01, "end": 126.39, "word": " only", "probability": 0.57421875}, {"start": 126.39, "end": 126.87, "word": " sends", "probability": 0.681640625}, {"start": 126.87, "end": 127.01, "word": " a", "probability": 0.1497802734375}, {"start": 127.01, "end": 127.31, "word": " string", "probability": 0.454833984375}, {"start": 127.31, "end": 127.51, "word": " to", "probability": 0.869140625}, {"start": 127.51, "end": 127.63, "word": " the", "probability": 0.78759765625}, {"start": 127.63, "end": 127.85, "word": " image", "probability": 0.70263671875}, {"start": 127.85, "end": 128.09, "word": " and", "probability": 0.74072265625}, {"start": 128.09, "end": 128.41, "word": " stores", "probability": 0.47412109375}, {"start": 128.41, "end": 128.61, "word": " this", "probability": 0.28076171875}, {"start": 128.61, "end": 128.87, "word": " string.", "probability": 0.78515625}, {"start": 129.73, "end": 129.89, "word": " So", "probability": 0.84130859375}, {"start": 129.89, "end": 130.11, "word": " if", "probability": 0.308349609375}, {"start": 130.11, "end": 130.67, "word": " I", "probability": 0.9599609375}, {"start": 130.67, "end": 130.95, "word": " create", "probability": 0.443603515625}, {"start": 130.95, "end": 131.39, "word": " a", "probability": 0.5146484375}, {"start": 131.39, "end": 131.73, "word": " thousand", "probability": 0.759765625}, {"start": 131.73, "end": 132.05, "word": " image", "probability": 0.84033203125}, {"start": 132.05, "end": 132.59, "word": " proxies,", "probability": 0.7522786458333334}, {"start": 132.93, "end": 133.53, "word": " they", "probability": 0.71826171875}, {"start": 133.53, "end": 133.71, "word": " will", "probability": 0.6171875}, {"start": 133.71, "end": 133.71, "word": " not", "probability": 0.82373046875}, {"start": 133.71, "end": 133.91, "word": " take", "probability": 0.352294921875}, {"start": 133.91, "end": 134.15, "word": " anything", "probability": 0.7236328125}, {"start": 134.15, "end": 134.29, "word": " from", "probability": 0.78369140625}, {"start": 134.29, "end": 134.37, "word": " the", "probability": 0.421630859375}, {"start": 134.37, "end": 134.55, "word": " memory", "probability": 0.84326171875}, {"start": 134.55, "end": 134.81, "word": " because", "probability": 0.71630859375}, {"start": 134.81, "end": 135.09, "word": " each", "probability": 0.69580078125}, {"start": 135.09, "end": 135.37, "word": " object", "probability": 0.95703125}, {"start": 135.37, "end": 135.55, "word": " is", "probability": 0.92138671875}, {"start": 135.55, "end": 136.09, "word": " just", "probability": 0.36083984375}, {"start": 136.09, "end": 136.75, "word": " a", "probability": 0.92431640625}, {"start": 136.75, "end": 137.05, "word": " string,", "probability": 0.865234375}, {"start": 137.19, "end": 137.19, "word": " which", "probability": 0.78564453125}, {"start": 137.19, "end": 137.29, "word": " is", "probability": 0.88623046875}, {"start": 137.29, "end": 137.37, "word": " the", "probability": 0.826171875}, {"start": 137.37, "end": 137.49, "word": " image", "probability": 0.76318359375}, {"start": 137.49, "end": 137.63, "word": " string.", "probability": 0.396728515625}], "temperature": 1.0}, {"id": 6, "seek": 16638, "start": 140.0, "end": 166.38, "text": "Okay, actually image proxy is not the image, right or not? There is no image data, it wraps the image icon which is still null, okay? When is the image icon actually created? Because the image icon, when you go to load the image, which is at the moment when you click next and previous, and when he goes to paint it, I tell him in this case, if you find the image icon null, go and create it. So actually I delayed the creation of the image icon for the moment I need it.", "tokens": [8297, 11, 767, 3256, 29690, 307, 406, 264, 3256, 11, 558, 420, 406, 30, 821, 307, 572, 3256, 1412, 11, 309, 25831, 264, 3256, 6528, 597, 307, 920, 18184, 11, 1392, 30, 1133, 307, 264, 3256, 6528, 767, 2942, 30, 1436, 264, 3256, 6528, 11, 562, 291, 352, 281, 3677, 264, 3256, 11, 597, 307, 412, 264, 1623, 562, 291, 2052, 958, 293, 3894, 11, 293, 562, 415, 1709, 281, 4225, 309, 11, 286, 980, 796, 294, 341, 1389, 11, 498, 291, 915, 264, 3256, 6528, 18184, 11, 352, 293, 1884, 309, 13, 407, 767, 286, 20268, 264, 8016, 295, 264, 3256, 6528, 337, 264, 1623, 286, 643, 309, 13], "avg_logprob": -0.4681869482134913, "compression_ratio": 1.9382716049382716, "no_speech_prob": 3.3974647521972656e-06, "words": [{"start": 140.0, "end": 140.4, "word": "Okay,", "probability": 0.286865234375}, {"start": 140.4, "end": 140.8, "word": " actually", "probability": 0.204345703125}, {"start": 140.8, "end": 141.12, "word": " image", "probability": 0.47998046875}, {"start": 141.12, "end": 141.4, "word": " proxy", "probability": 0.356201171875}, {"start": 141.4, "end": 141.64, "word": " is", "probability": 0.67822265625}, {"start": 141.64, "end": 141.76, "word": " not", "probability": 0.57373046875}, {"start": 141.76, "end": 141.9, "word": " the", "probability": 0.489501953125}, {"start": 141.9, "end": 142.1, "word": " image,", "probability": 0.572265625}, {"start": 142.58, "end": 142.84, "word": " right", "probability": 0.60986328125}, {"start": 142.84, "end": 143.0, "word": " or", "probability": 0.449462890625}, {"start": 143.0, "end": 143.1, "word": " not?", "probability": 0.441650390625}, {"start": 143.48, "end": 143.74, "word": " There", "probability": 0.29541015625}, {"start": 143.74, "end": 143.76, "word": " is", "probability": 0.5947265625}, {"start": 143.76, "end": 143.96, "word": " no", "probability": 0.884765625}, {"start": 143.96, "end": 144.52, "word": " image", "probability": 0.533203125}, {"start": 144.52, "end": 144.52, "word": " data,", "probability": 0.72119140625}, {"start": 144.6, "end": 144.82, "word": " it", "probability": 0.7421875}, {"start": 144.82, "end": 145.22, "word": " wraps", "probability": 0.1873779296875}, {"start": 145.22, "end": 145.38, "word": " the", "probability": 0.2384033203125}, {"start": 145.38, "end": 145.56, "word": " image", "probability": 0.9365234375}, {"start": 145.56, "end": 145.92, "word": " icon", "probability": 0.8642578125}, {"start": 145.92, "end": 146.08, "word": " which", "probability": 0.37646484375}, {"start": 146.08, "end": 146.28, "word": " is", "probability": 0.671875}, {"start": 146.28, "end": 146.28, "word": " still", "probability": 0.724609375}, {"start": 146.28, "end": 147.4, "word": " null,", "probability": 0.8671875}, {"start": 147.56, "end": 148.24, "word": " okay?", "probability": 0.5703125}, {"start": 148.74, "end": 148.98, "word": " When", "probability": 0.830078125}, {"start": 148.98, "end": 149.18, "word": " is", "probability": 0.293701171875}, {"start": 149.18, "end": 149.96, "word": " the", "probability": 0.701171875}, {"start": 149.96, "end": 150.2, "word": " image", "probability": 0.79736328125}, {"start": 150.2, "end": 150.44, "word": " icon", "probability": 0.65625}, {"start": 150.44, "end": 150.44, "word": " actually", "probability": 0.314697265625}, {"start": 150.44, "end": 150.44, "word": " created?", "probability": 0.5830078125}, {"start": 150.64, "end": 150.74, "word": " Because", "probability": 0.51123046875}, {"start": 150.74, "end": 150.88, "word": " the", "probability": 0.49072265625}, {"start": 150.88, "end": 151.08, "word": " image", "probability": 0.9482421875}, {"start": 151.08, "end": 151.5, "word": " icon,", "probability": 0.92041015625}, {"start": 151.8, "end": 152.24, "word": " when", "probability": 0.90869140625}, {"start": 152.24, "end": 152.44, "word": " you", "probability": 0.69287109375}, {"start": 152.44, "end": 152.52, "word": " go", "probability": 0.56201171875}, {"start": 152.52, "end": 152.64, "word": " to", "probability": 0.5029296875}, {"start": 152.64, "end": 153.02, "word": " load", "probability": 0.53662109375}, {"start": 153.02, "end": 153.22, "word": " the", "probability": 0.74462890625}, {"start": 153.22, "end": 153.52, "word": " image,", "probability": 0.9306640625}, {"start": 153.58, "end": 153.7, "word": " which", "probability": 0.78857421875}, {"start": 153.7, "end": 153.84, "word": " is", "probability": 0.88330078125}, {"start": 153.84, "end": 153.92, "word": " at", "probability": 0.39599609375}, {"start": 153.92, "end": 154.02, "word": " the", "probability": 0.90478515625}, {"start": 154.02, "end": 154.24, "word": " moment", "probability": 0.93115234375}, {"start": 154.24, "end": 154.4, "word": " when", "probability": 0.291015625}, {"start": 154.4, "end": 154.48, "word": " you", "probability": 0.94873046875}, {"start": 154.48, "end": 154.64, "word": " click", "probability": 0.56005859375}, {"start": 154.64, "end": 154.92, "word": " next", "probability": 0.74755859375}, {"start": 154.92, "end": 155.08, "word": " and", "probability": 0.36376953125}, {"start": 155.08, "end": 155.54, "word": " previous,", "probability": 0.8759765625}, {"start": 156.08, "end": 156.62, "word": " and", "probability": 0.8046875}, {"start": 156.62, "end": 156.72, "word": " when", "probability": 0.78662109375}, {"start": 156.72, "end": 156.82, "word": " he", "probability": 0.25927734375}, {"start": 156.82, "end": 156.92, "word": " goes", "probability": 0.48046875}, {"start": 156.92, "end": 157.02, "word": " to", "probability": 0.9033203125}, {"start": 157.02, "end": 157.22, "word": " paint", "probability": 0.552734375}, {"start": 157.22, "end": 157.4, "word": " it,", "probability": 0.73876953125}, {"start": 157.48, "end": 158.88, "word": " I", "probability": 0.525390625}, {"start": 158.88, "end": 159.12, "word": " tell", "probability": 0.5625}, {"start": 159.12, "end": 159.24, "word": " him", "probability": 0.8837890625}, {"start": 159.24, "end": 159.28, "word": " in", "probability": 0.51025390625}, {"start": 159.28, "end": 159.38, "word": " this", "probability": 0.85009765625}, {"start": 159.38, "end": 159.58, "word": " case,", "probability": 0.8681640625}, {"start": 159.74, "end": 159.88, "word": " if", "probability": 0.83154296875}, {"start": 159.88, "end": 159.98, "word": " you", "probability": 0.78759765625}, {"start": 159.98, "end": 160.18, "word": " find", "probability": 0.8349609375}, {"start": 160.18, "end": 160.3, "word": " the", "probability": 0.8623046875}, {"start": 160.3, "end": 160.48, "word": " image", "probability": 0.92724609375}, {"start": 160.48, "end": 160.88, "word": " icon", "probability": 0.955078125}, {"start": 160.88, "end": 161.12, "word": " null,", "probability": 0.775390625}, {"start": 161.74, "end": 161.88, "word": " go", "probability": 0.77734375}, {"start": 161.88, "end": 162.0, "word": " and", "probability": 0.384765625}, {"start": 162.0, "end": 162.16, "word": " create", "probability": 0.31640625}, {"start": 162.16, "end": 162.32, "word": " it.", "probability": 0.8876953125}, {"start": 162.76, "end": 162.96, "word": " So", "probability": 0.7919921875}, {"start": 162.96, "end": 163.22, "word": " actually", "probability": 0.488525390625}, {"start": 163.22, "end": 163.48, "word": " I", "probability": 0.630859375}, {"start": 163.48, "end": 163.9, "word": " delayed", "probability": 0.58935546875}, {"start": 163.9, "end": 164.08, "word": " the", "probability": 0.69873046875}, {"start": 164.08, "end": 164.28, "word": " creation", "probability": 0.8095703125}, {"start": 164.28, "end": 164.42, "word": " of", "probability": 0.970703125}, {"start": 164.42, "end": 164.5, "word": " the", "probability": 0.8515625}, {"start": 164.5, "end": 164.66, "word": " image", "probability": 0.93994140625}, {"start": 164.66, "end": 165.08, "word": " icon", "probability": 0.908203125}, {"start": 165.08, "end": 165.26, "word": " for", "probability": 0.53564453125}, {"start": 165.26, "end": 165.34, "word": " the", "probability": 0.806640625}, {"start": 165.34, "end": 165.56, "word": " moment", "probability": 0.9384765625}, {"start": 165.56, "end": 165.84, "word": " I", "probability": 0.5517578125}, {"start": 165.84, "end": 166.26, "word": " need", "probability": 0.79638671875}, {"start": 166.26, "end": 166.38, "word": " it.", "probability": 0.8974609375}], "temperature": 1.0}, {"id": 7, "seek": 19139, "start": 167.83, "end": 191.39, "text": " Now for the client, I made him use the image proxy instead of the image icon. And he will accept it because both are the same. Let's read what is written here. Sometimes we need the ability to control the access to an object. For example, if we need to use only a few methods of some cost objects,", "tokens": [823, 337, 264, 6423, 11, 286, 1027, 796, 764, 264, 3256, 29690, 2602, 295, 264, 3256, 6528, 13, 400, 415, 486, 3241, 309, 570, 1293, 366, 264, 912, 13, 961, 311, 1401, 437, 307, 3720, 510, 13, 4803, 321, 643, 264, 3485, 281, 1969, 264, 2105, 281, 364, 2657, 13, 1171, 1365, 11, 498, 321, 643, 281, 764, 787, 257, 1326, 7150, 295, 512, 2063, 6565, 11], "avg_logprob": -0.3469669122029753, "compression_ratio": 1.528205128205128, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 167.83, "end": 168.31, "word": " Now", "probability": 0.09454345703125}, {"start": 168.31, "end": 168.73, "word": " for", "probability": 0.359375}, {"start": 168.73, "end": 168.93, "word": " the", "probability": 0.73095703125}, {"start": 168.93, "end": 169.31, "word": " client,", "probability": 0.91748046875}, {"start": 169.67, "end": 169.85, "word": " I", "probability": 0.6728515625}, {"start": 169.85, "end": 170.01, "word": " made", "probability": 0.31689453125}, {"start": 170.01, "end": 170.15, "word": " him", "probability": 0.828125}, {"start": 170.15, "end": 170.45, "word": " use", "probability": 0.82421875}, {"start": 170.45, "end": 170.63, "word": " the", "probability": 0.57568359375}, {"start": 170.63, "end": 170.83, "word": " image", "probability": 0.7880859375}, {"start": 170.83, "end": 171.23, "word": " proxy", "probability": 0.95849609375}, {"start": 171.23, "end": 171.45, "word": " instead", "probability": 0.75146484375}, {"start": 171.45, "end": 171.51, "word": " of", "probability": 0.97216796875}, {"start": 171.51, "end": 171.59, "word": " the", "probability": 0.68505859375}, {"start": 171.59, "end": 171.75, "word": " image", "probability": 0.9208984375}, {"start": 171.75, "end": 172.13, "word": " icon.", "probability": 0.884765625}, {"start": 173.29, "end": 173.31, "word": " And", "probability": 0.51416015625}, {"start": 173.31, "end": 173.43, "word": " he", "probability": 0.76611328125}, {"start": 173.43, "end": 173.47, "word": " will", "probability": 0.6171875}, {"start": 173.47, "end": 173.65, "word": " accept", "probability": 0.84130859375}, {"start": 173.65, "end": 173.77, "word": " it", "probability": 0.82861328125}, {"start": 173.77, "end": 173.89, "word": " because", "probability": 0.6640625}, {"start": 173.89, "end": 174.25, "word": " both", "probability": 0.6572265625}, {"start": 174.25, "end": 174.37, "word": " are", "probability": 0.7216796875}, {"start": 174.37, "end": 174.97, "word": " the", "probability": 0.444091796875}, {"start": 174.97, "end": 175.35, "word": " same.", "probability": 0.9140625}, {"start": 177.55, "end": 178.03, "word": " Let's", "probability": 0.692626953125}, {"start": 178.03, "end": 178.33, "word": " read", "probability": 0.87451171875}, {"start": 178.33, "end": 178.51, "word": " what", "probability": 0.61474609375}, {"start": 178.51, "end": 178.53, "word": " is", "probability": 0.5810546875}, {"start": 178.53, "end": 178.81, "word": " written", "probability": 0.414306640625}, {"start": 178.81, "end": 178.99, "word": " here.", "probability": 0.74658203125}, {"start": 179.17, "end": 179.65, "word": " Sometimes", "probability": 0.6015625}, {"start": 179.65, "end": 180.37, "word": " we", "probability": 0.72607421875}, {"start": 180.37, "end": 180.59, "word": " need", "probability": 0.92138671875}, {"start": 180.59, "end": 180.69, "word": " the", "probability": 0.82177734375}, {"start": 180.69, "end": 181.05, "word": " ability", "probability": 0.95361328125}, {"start": 181.05, "end": 181.31, "word": " to", "probability": 0.96728515625}, {"start": 181.31, "end": 181.65, "word": " control", "probability": 0.83935546875}, {"start": 181.65, "end": 181.81, "word": " the", "probability": 0.7685546875}, {"start": 181.81, "end": 182.17, "word": " access", "probability": 0.9384765625}, {"start": 182.17, "end": 182.39, "word": " to", "probability": 0.87255859375}, {"start": 182.39, "end": 182.49, "word": " an", "probability": 0.79052734375}, {"start": 182.49, "end": 185.71, "word": " object.", "probability": 0.97509765625}, {"start": 186.29, "end": 186.63, "word": " For", "probability": 0.72021484375}, {"start": 186.63, "end": 186.89, "word": " example,", "probability": 0.9296875}, {"start": 187.49, "end": 188.31, "word": " if", "probability": 0.9287109375}, {"start": 188.31, "end": 188.47, "word": " we", "probability": 0.8095703125}, {"start": 188.47, "end": 188.69, "word": " need", "probability": 0.841796875}, {"start": 188.69, "end": 188.81, "word": " to", "probability": 0.96142578125}, {"start": 188.81, "end": 189.03, "word": " use", "probability": 0.88330078125}, {"start": 189.03, "end": 189.31, "word": " only", "probability": 0.90283203125}, {"start": 189.31, "end": 189.53, "word": " a", "probability": 0.97998046875}, {"start": 189.53, "end": 189.71, "word": " few", "probability": 0.90771484375}, {"start": 189.71, "end": 190.15, "word": " methods", "probability": 0.91357421875}, {"start": 190.15, "end": 190.35, "word": " of", "probability": 0.93505859375}, {"start": 190.35, "end": 190.61, "word": " some", "probability": 0.91015625}, {"start": 190.61, "end": 190.89, "word": " cost", "probability": 0.55078125}, {"start": 190.89, "end": 191.39, "word": " objects,", "probability": 0.78857421875}], "temperature": 1.0}, {"id": 8, "seek": 22114, "start": 192.68, "end": 221.14, "text": "I have a costly object and it costs a lot to create it and I need to use a method from this object because in order to use this method I need to create the object and this object is costly so it costs me the idea now is the solution until that point when we need to use the method we can use some light objects exposing the same interface as the heavy objects", "tokens": [40, 362, 257, 28328, 2657, 293, 309, 5497, 257, 688, 281, 1884, 309, 293, 286, 643, 281, 764, 257, 3170, 490, 341, 2657, 570, 294, 1668, 281, 764, 341, 3170, 286, 643, 281, 1884, 264, 2657, 293, 341, 2657, 307, 28328, 370, 309, 5497, 385, 264, 1558, 586, 307, 264, 3827, 1826, 300, 935, 562, 321, 643, 281, 764, 264, 3170, 321, 393, 764, 512, 1442, 6565, 33178, 264, 912, 9226, 382, 264, 4676, 6565], "avg_logprob": -0.3643092160162173, "compression_ratio": 1.9617486338797814, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 192.68, "end": 192.94, "word": "I", "probability": 0.12188720703125}, {"start": 192.94, "end": 193.3, "word": " have", "probability": 0.77734375}, {"start": 193.3, "end": 193.48, "word": " a", "probability": 0.88818359375}, {"start": 193.48, "end": 193.68, "word": " costly", "probability": 0.767578125}, {"start": 193.68, "end": 194.04, "word": " object", "probability": 0.91650390625}, {"start": 194.04, "end": 194.22, "word": " and", "probability": 0.343505859375}, {"start": 194.22, "end": 194.8, "word": " it", "probability": 0.1676025390625}, {"start": 194.8, "end": 195.56, "word": " costs", "probability": 0.260986328125}, {"start": 195.56, "end": 196.1, "word": " a", "probability": 0.501953125}, {"start": 196.1, "end": 196.1, "word": " lot", "probability": 0.9482421875}, {"start": 196.1, "end": 196.1, "word": " to", "probability": 0.86767578125}, {"start": 196.1, "end": 196.1, "word": " create", "probability": 0.52880859375}, {"start": 196.1, "end": 196.1, "word": " it", "probability": 0.859375}, {"start": 196.1, "end": 196.52, "word": " and", "probability": 0.29541015625}, {"start": 196.52, "end": 196.64, "word": " I", "probability": 0.83349609375}, {"start": 196.64, "end": 196.9, "word": " need", "probability": 0.7431640625}, {"start": 196.9, "end": 197.08, "word": " to", "probability": 0.9453125}, {"start": 197.08, "end": 197.32, "word": " use", "probability": 0.84521484375}, {"start": 197.32, "end": 197.48, "word": " a", "probability": 0.74609375}, {"start": 197.48, "end": 197.8, "word": " method", "probability": 0.94677734375}, {"start": 197.8, "end": 198.6, "word": " from", "probability": 0.60107421875}, {"start": 198.6, "end": 198.72, "word": " this", "probability": 0.61328125}, {"start": 198.72, "end": 199.08, "word": " object", "probability": 0.91259765625}, {"start": 199.08, "end": 201.0, "word": " because", "probability": 0.468505859375}, {"start": 201.0, "end": 201.16, "word": " in", "probability": 0.331787109375}, {"start": 201.16, "end": 202.24, "word": " order", "probability": 0.9130859375}, {"start": 202.24, "end": 202.64, "word": " to", "probability": 0.94482421875}, {"start": 202.64, "end": 203.04, "word": " use", "probability": 0.2841796875}, {"start": 203.04, "end": 203.4, "word": " this", "probability": 0.712890625}, {"start": 203.4, "end": 203.56, "word": " method", "probability": 0.94677734375}, {"start": 203.56, "end": 204.0, "word": " I", "probability": 0.449462890625}, {"start": 204.0, "end": 204.24, "word": " need", "probability": 0.63232421875}, {"start": 204.24, "end": 204.36, "word": " to", "probability": 0.96728515625}, {"start": 204.36, "end": 204.52, "word": " create", "probability": 0.87646484375}, {"start": 204.52, "end": 204.66, "word": " the", "probability": 0.382080078125}, {"start": 204.66, "end": 204.92, "word": " object", "probability": 0.94384765625}, {"start": 204.92, "end": 205.04, "word": " and", "probability": 0.744140625}, {"start": 205.04, "end": 205.12, "word": " this", "probability": 0.75146484375}, {"start": 205.12, "end": 205.38, "word": " object", "probability": 0.94287109375}, {"start": 205.38, "end": 205.64, "word": " is", "probability": 0.85107421875}, {"start": 205.64, "end": 206.02, "word": " costly", "probability": 0.90869140625}, {"start": 206.02, "end": 206.44, "word": " so", "probability": 0.462890625}, {"start": 206.44, "end": 206.56, "word": " it", "probability": 0.83935546875}, {"start": 206.56, "end": 206.76, "word": " costs", "probability": 0.7392578125}, {"start": 206.76, "end": 207.08, "word": " me", "probability": 0.90771484375}, {"start": 207.08, "end": 208.36, "word": " the", "probability": 0.331787109375}, {"start": 208.36, "end": 208.62, "word": " idea", "probability": 0.6962890625}, {"start": 208.62, "end": 209.1, "word": " now", "probability": 0.6689453125}, {"start": 209.1, "end": 209.4, "word": " is", "probability": 0.60205078125}, {"start": 209.4, "end": 209.48, "word": " the", "probability": 0.408935546875}, {"start": 209.48, "end": 209.76, "word": " solution", "probability": 0.88525390625}, {"start": 209.76, "end": 213.44, "word": " until", "probability": 0.74169921875}, {"start": 213.44, "end": 213.76, "word": " that", "probability": 0.91552734375}, {"start": 213.76, "end": 214.1, "word": " point", "probability": 0.96875}, {"start": 214.1, "end": 214.38, "word": " when", "probability": 0.448974609375}, {"start": 214.38, "end": 214.52, "word": " we", "probability": 0.873046875}, {"start": 214.52, "end": 214.86, "word": " need", "probability": 0.9033203125}, {"start": 214.86, "end": 215.04, "word": " to", "probability": 0.95654296875}, {"start": 215.04, "end": 215.26, "word": " use", "probability": 0.5673828125}, {"start": 215.26, "end": 215.42, "word": " the", "probability": 0.75048828125}, {"start": 215.42, "end": 215.72, "word": " method", "probability": 0.962890625}, {"start": 215.72, "end": 216.78, "word": " we", "probability": 0.8662109375}, {"start": 216.78, "end": 217.04, "word": " can", "probability": 0.92724609375}, {"start": 217.04, "end": 217.26, "word": " use", "probability": 0.89208984375}, {"start": 217.26, "end": 217.52, "word": " some", "probability": 0.853515625}, {"start": 217.52, "end": 217.8, "word": " light", "probability": 0.876953125}, {"start": 217.8, "end": 218.3, "word": " objects", "probability": 0.9658203125}, {"start": 218.3, "end": 218.96, "word": " exposing", "probability": 0.93896484375}, {"start": 218.96, "end": 219.3, "word": " the", "probability": 0.91455078125}, {"start": 219.3, "end": 219.56, "word": " same", "probability": 0.88671875}, {"start": 219.56, "end": 220.1, "word": " interface", "probability": 0.904296875}, {"start": 220.1, "end": 220.42, "word": " as", "probability": 0.9482421875}, {"start": 220.42, "end": 220.58, "word": " the", "probability": 0.7939453125}, {"start": 220.58, "end": 220.74, "word": " heavy", "probability": 0.81787109375}, {"start": 220.74, "end": 221.14, "word": " objects", "probability": 0.95703125}], "temperature": 1.0}, {"id": 9, "seek": 23862, "start": 223.46, "end": 238.62, "text": "Until you need the method to claim it, I don't need the method. I created the cost object and loaded it in my memory to claim the method. Just like the image icon, we loaded it in memory but we didn't show the image.", "tokens": [52, 580, 388, 291, 643, 264, 3170, 281, 3932, 309, 11, 286, 500, 380, 643, 264, 3170, 13, 286, 2942, 264, 2063, 2657, 293, 13210, 309, 294, 452, 4675, 281, 3932, 264, 3170, 13, 1449, 411, 264, 3256, 6528, 11, 321, 13210, 309, 294, 4675, 457, 321, 994, 380, 855, 264, 3256, 13], "avg_logprob": -0.6001157528824277, "compression_ratio": 1.6488549618320612, "no_speech_prob": 2.485513687133789e-05, "words": [{"start": 223.45999999999998, "end": 223.98, "word": "Until", "probability": 0.6777242024739584}, {"start": 223.98, "end": 224.2, "word": " you", "probability": 0.8291015625}, {"start": 224.2, "end": 224.56, "word": " need", "probability": 0.446044921875}, {"start": 224.56, "end": 224.94, "word": " the", "probability": 0.6455078125}, {"start": 224.94, "end": 225.28, "word": " method", "probability": 0.8720703125}, {"start": 225.28, "end": 225.62, "word": " to", "probability": 0.78857421875}, {"start": 225.62, "end": 225.98, "word": " claim", "probability": 0.117431640625}, {"start": 225.98, "end": 226.2, "word": " it,", "probability": 0.6533203125}, {"start": 226.24, "end": 226.74, "word": " I", "probability": 0.19287109375}, {"start": 226.74, "end": 226.74, "word": " don't", "probability": 0.61798095703125}, {"start": 226.74, "end": 227.72, "word": " need", "probability": 0.78076171875}, {"start": 227.72, "end": 227.76, "word": " the", "probability": 0.52734375}, {"start": 227.76, "end": 227.76, "word": " method.", "probability": 0.953125}, {"start": 228.02, "end": 228.4, "word": " I", "probability": 0.92626953125}, {"start": 228.4, "end": 228.76, "word": " created", "probability": 0.5712890625}, {"start": 228.76, "end": 228.92, "word": " the", "probability": 0.74658203125}, {"start": 228.92, "end": 229.62, "word": " cost", "probability": 0.245849609375}, {"start": 229.62, "end": 229.78, "word": " object", "probability": 0.63671875}, {"start": 229.78, "end": 230.42, "word": " and", "probability": 0.6953125}, {"start": 230.42, "end": 230.76, "word": " loaded", "probability": 0.147705078125}, {"start": 230.76, "end": 230.9, "word": " it", "probability": 0.8212890625}, {"start": 230.9, "end": 230.96, "word": " in", "probability": 0.44775390625}, {"start": 230.96, "end": 231.04, "word": " my", "probability": 0.3603515625}, {"start": 231.04, "end": 231.36, "word": " memory", "probability": 0.791015625}, {"start": 231.36, "end": 232.22, "word": " to", "probability": 0.302001953125}, {"start": 232.22, "end": 234.0, "word": " claim", "probability": 0.82958984375}, {"start": 234.0, "end": 234.16, "word": " the", "probability": 0.63525390625}, {"start": 234.16, "end": 234.34, "word": " method.", "probability": 0.94482421875}, {"start": 234.48, "end": 234.94, "word": " Just", "probability": 0.314208984375}, {"start": 234.94, "end": 235.04, "word": " like", "probability": 0.89404296875}, {"start": 235.04, "end": 235.42, "word": " the", "probability": 0.39794921875}, {"start": 235.42, "end": 235.6, "word": " image", "probability": 0.7841796875}, {"start": 235.6, "end": 235.88, "word": " icon,", "probability": 0.8544921875}, {"start": 235.92, "end": 236.1, "word": " we", "probability": 0.52001953125}, {"start": 236.1, "end": 236.38, "word": " loaded", "probability": 0.73046875}, {"start": 236.38, "end": 236.62, "word": " it", "probability": 0.90283203125}, {"start": 236.62, "end": 236.64, "word": " in", "probability": 0.70458984375}, {"start": 236.64, "end": 236.9, "word": " memory", "probability": 0.52294921875}, {"start": 236.9, "end": 237.12, "word": " but", "probability": 0.39990234375}, {"start": 237.12, "end": 237.28, "word": " we", "probability": 0.58203125}, {"start": 237.28, "end": 237.32, "word": " didn't", "probability": 0.75634765625}, {"start": 237.32, "end": 237.56, "word": " show", "probability": 0.58251953125}, {"start": 237.56, "end": 238.38, "word": " the", "probability": 0.72998046875}, {"start": 238.38, "end": 238.62, "word": " image.", "probability": 0.63916015625}], "temperature": 1.0}, {"id": 10, "seek": 26189, "start": 240.99, "end": 261.89, "text": " until that point we can use some light objects exposing the same interface as the heavy object these light objects are called", "tokens": [1826, 300, 935, 321, 393, 764, 512, 1442, 6565, 33178, 264, 912, 9226, 382, 264, 4676, 2657, 613, 1442, 6565, 366, 1219], "avg_logprob": -0.32455843687057495, "compression_ratio": 1.4157303370786516, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 240.99, "end": 241.37, "word": " until", "probability": 0.047027587890625}, {"start": 241.37, "end": 241.51, "word": " that", "probability": 0.8837890625}, {"start": 241.51, "end": 246.05, "word": " point", "probability": 0.9716796875}, {"start": 246.05, "end": 246.83, "word": " we", "probability": 0.5}, {"start": 246.83, "end": 247.07, "word": " can", "probability": 0.9033203125}, {"start": 247.07, "end": 247.33, "word": " use", "probability": 0.87548828125}, {"start": 247.33, "end": 247.69, "word": " some", "probability": 0.83251953125}, {"start": 247.69, "end": 248.19, "word": " light", "probability": 0.8642578125}, {"start": 248.19, "end": 249.95, "word": " objects", "probability": 0.96142578125}, {"start": 249.95, "end": 253.35, "word": " exposing", "probability": 0.78857421875}, {"start": 253.35, "end": 253.91, "word": " the", "probability": 0.908203125}, {"start": 253.91, "end": 254.13, "word": " same", "probability": 0.892578125}, {"start": 254.13, "end": 256.73, "word": " interface", "probability": 0.86279296875}, {"start": 256.73, "end": 258.21, "word": " as", "probability": 0.87109375}, {"start": 258.21, "end": 258.43, "word": " the", "probability": 0.85888671875}, {"start": 258.43, "end": 258.65, "word": " heavy", "probability": 0.83154296875}, {"start": 258.65, "end": 259.09, "word": " object", "probability": 0.8388671875}, {"start": 259.09, "end": 260.47, "word": " these", "probability": 0.460205078125}, {"start": 260.47, "end": 260.83, "word": " light", "probability": 0.86279296875}, {"start": 260.83, "end": 261.19, "word": " objects", "probability": 0.96240234375}, {"start": 261.19, "end": 261.45, "word": " are", "probability": 0.94873046875}, {"start": 261.45, "end": 261.89, "word": " called", "probability": 0.900390625}], "temperature": 1.0}, {"id": 11, "seek": 28825, "start": 262.67, "end": 288.25, "text": " Proxies. In our example, the image proxy is this light object, which has the same interface as the image icon. Both of them are image icons. So what do these light objects do? These light objects are called proxies, and they will instantiate those heavy objects when they are really needed. This light object actually wraps the heavy object.", "tokens": [1705, 87, 530, 13, 682, 527, 1365, 11, 264, 3256, 29690, 307, 341, 1442, 2657, 11, 597, 575, 264, 912, 9226, 382, 264, 3256, 6528, 13, 6767, 295, 552, 366, 3256, 23308, 13, 407, 437, 360, 613, 1442, 6565, 360, 30, 1981, 1442, 6565, 366, 1219, 447, 87, 530, 11, 293, 436, 486, 9836, 13024, 729, 4676, 6565, 562, 436, 366, 534, 2978, 13, 639, 1442, 2657, 767, 25831, 264, 4676, 2657, 13], "avg_logprob": -0.33192567366200526, "compression_ratio": 1.7628865979381443, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 262.66999999999996, "end": 263.27, "word": " Proxies.", "probability": 0.7640787760416666}, {"start": 264.23, "end": 264.51, "word": " In", "probability": 0.31640625}, {"start": 264.51, "end": 264.57, "word": " our", "probability": 0.8447265625}, {"start": 264.57, "end": 264.87, "word": " example,", "probability": 0.9326171875}, {"start": 265.13, "end": 265.21, "word": " the", "probability": 0.7001953125}, {"start": 265.21, "end": 265.43, "word": " image", "probability": 0.87744140625}, {"start": 265.43, "end": 265.77, "word": " proxy", "probability": 0.9697265625}, {"start": 265.77, "end": 265.95, "word": " is", "probability": 0.87158203125}, {"start": 265.95, "end": 266.09, "word": " this", "probability": 0.66015625}, {"start": 266.09, "end": 266.27, "word": " light", "probability": 0.74560546875}, {"start": 266.27, "end": 266.63, "word": " object,", "probability": 0.98095703125}, {"start": 267.63, "end": 267.75, "word": " which", "probability": 0.61767578125}, {"start": 267.75, "end": 267.91, "word": " has", "probability": 0.6826171875}, {"start": 267.91, "end": 268.15, "word": " the", "probability": 0.87255859375}, {"start": 268.15, "end": 268.15, "word": " same", "probability": 0.87890625}, {"start": 268.15, "end": 268.67, "word": " interface", "probability": 0.888671875}, {"start": 268.67, "end": 268.85, "word": " as", "probability": 0.63525390625}, {"start": 268.85, "end": 268.91, "word": " the", "probability": 0.7822265625}, {"start": 268.91, "end": 269.09, "word": " image", "probability": 0.93017578125}, {"start": 269.09, "end": 269.45, "word": " icon.", "probability": 0.88330078125}, {"start": 269.93, "end": 270.17, "word": " Both", "probability": 0.458740234375}, {"start": 270.17, "end": 270.31, "word": " of", "probability": 0.343505859375}, {"start": 270.31, "end": 270.57, "word": " them", "probability": 0.7998046875}, {"start": 270.57, "end": 270.83, "word": " are", "probability": 0.88671875}, {"start": 270.83, "end": 271.59, "word": " image", "probability": 0.70166015625}, {"start": 271.59, "end": 271.97, "word": " icons.", "probability": 0.9140625}, {"start": 272.87, "end": 273.45, "word": " So", "probability": 0.254150390625}, {"start": 273.45, "end": 273.69, "word": " what", "probability": 0.61083984375}, {"start": 273.69, "end": 273.75, "word": " do", "probability": 0.6474609375}, {"start": 273.75, "end": 273.91, "word": " these", "probability": 0.7998046875}, {"start": 273.91, "end": 274.53, "word": " light", "probability": 0.83251953125}, {"start": 274.53, "end": 274.91, "word": " objects", "probability": 0.9541015625}, {"start": 274.91, "end": 274.91, "word": " do?", "probability": 0.93896484375}, {"start": 275.03, "end": 275.35, "word": " These", "probability": 0.814453125}, {"start": 275.35, "end": 275.63, "word": " light", "probability": 0.8388671875}, {"start": 275.63, "end": 275.97, "word": " objects", "probability": 0.9541015625}, {"start": 275.97, "end": 276.21, "word": " are", "probability": 0.94921875}, {"start": 276.21, "end": 276.69, "word": " called", "probability": 0.90576171875}, {"start": 276.69, "end": 277.55, "word": " proxies,", "probability": 0.93115234375}, {"start": 278.21, "end": 278.35, "word": " and", "probability": 0.91162109375}, {"start": 278.35, "end": 278.57, "word": " they", "probability": 0.89697265625}, {"start": 278.57, "end": 279.53, "word": " will", "probability": 0.8623046875}, {"start": 279.53, "end": 280.51, "word": " instantiate", "probability": 0.94482421875}, {"start": 280.51, "end": 280.85, "word": " those", "probability": 0.75048828125}, {"start": 280.85, "end": 281.09, "word": " heavy", "probability": 0.79443359375}, {"start": 281.09, "end": 281.51, "word": " objects", "probability": 0.95654296875}, {"start": 281.51, "end": 281.75, "word": " when", "probability": 0.884765625}, {"start": 281.75, "end": 281.91, "word": " they", "probability": 0.89990234375}, {"start": 281.91, "end": 282.09, "word": " are", "probability": 0.91943359375}, {"start": 282.09, "end": 282.39, "word": " really", "probability": 0.88671875}, {"start": 282.39, "end": 282.71, "word": " needed.", "probability": 0.6630859375}, {"start": 284.17, "end": 284.49, "word": " This", "probability": 0.26611328125}, {"start": 284.49, "end": 284.83, "word": " light", "probability": 0.60107421875}, {"start": 284.83, "end": 285.23, "word": " object", "probability": 0.97998046875}, {"start": 285.23, "end": 286.41, "word": " actually", "probability": 0.274169921875}, {"start": 286.41, "end": 287.25, "word": " wraps", "probability": 0.332763671875}, {"start": 287.25, "end": 287.45, "word": " the", "probability": 0.5224609375}, {"start": 287.45, "end": 287.85, "word": " heavy", "probability": 0.80322265625}, {"start": 287.85, "end": 288.25, "word": " object.", "probability": 0.9384765625}], "temperature": 1.0}, {"id": 12, "seek": 31812, "start": 288.92, "end": 318.12, "text": "What I mean by that is the important thing is the wrapped object inside. This image approximate is the image. Am I right or not guys? Because this is the important point. Light object will instantiate those heavy objects when they are really needed and by then we will use some light objects instead. The client uses the light object like the image icon, but actually the wrapped object is what is created at the moment of display of the image.", "tokens": [3748, 286, 914, 538, 300, 307, 264, 1021, 551, 307, 264, 14226, 2657, 1854, 13, 639, 3256, 30874, 307, 264, 3256, 13, 2012, 286, 558, 420, 406, 1074, 30, 1436, 341, 307, 264, 1021, 935, 13, 8279, 2657, 486, 9836, 13024, 729, 4676, 6565, 562, 436, 366, 534, 2978, 293, 538, 550, 321, 486, 764, 512, 1442, 6565, 2602, 13, 440, 6423, 4960, 264, 1442, 2657, 411, 264, 3256, 6528, 11, 457, 767, 264, 14226, 2657, 307, 437, 307, 2942, 412, 264, 1623, 295, 4674, 295, 264, 3256, 13], "avg_logprob": -0.5284722288449605, "compression_ratio": 1.8577405857740585, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 288.92, "end": 289.22, "word": "What", "probability": 0.435302734375}, {"start": 289.22, "end": 289.4, "word": " I", "probability": 0.84912109375}, {"start": 289.4, "end": 289.6, "word": " mean", "probability": 0.64599609375}, {"start": 289.6, "end": 289.78, "word": " by", "probability": 0.5830078125}, {"start": 289.78, "end": 290.04, "word": " that", "probability": 0.2159423828125}, {"start": 290.04, "end": 290.36, "word": " is", "probability": 0.71484375}, {"start": 290.36, "end": 290.38, "word": " the", "probability": 0.603515625}, {"start": 290.38, "end": 290.48, "word": " important", "probability": 0.481201171875}, {"start": 290.48, "end": 290.58, "word": " thing", "probability": 0.38818359375}, {"start": 290.58, "end": 290.94, "word": " is", "probability": 0.74951171875}, {"start": 290.94, "end": 291.06, "word": " the", "probability": 0.76513671875}, {"start": 291.06, "end": 291.7, "word": " wrapped", "probability": 0.1290283203125}, {"start": 291.7, "end": 291.84, "word": " object", "probability": 0.873046875}, {"start": 291.84, "end": 292.3, "word": " inside.", "probability": 0.351806640625}, {"start": 292.64, "end": 293.02, "word": " This", "probability": 0.4111328125}, {"start": 293.02, "end": 293.22, "word": " image", "probability": 0.68408203125}, {"start": 293.22, "end": 293.56, "word": " approximate", "probability": 0.13232421875}, {"start": 293.56, "end": 293.74, "word": " is", "probability": 0.3701171875}, {"start": 293.74, "end": 293.94, "word": " the", "probability": 0.479248046875}, {"start": 293.94, "end": 294.18, "word": " image.", "probability": 0.5546875}, {"start": 294.32, "end": 294.58, "word": " Am", "probability": 0.1798095703125}, {"start": 294.58, "end": 294.64, "word": " I", "probability": 0.9697265625}, {"start": 294.64, "end": 294.64, "word": " right", "probability": 0.7900390625}, {"start": 294.64, "end": 294.82, "word": " or", "probability": 0.436767578125}, {"start": 294.82, "end": 294.82, "word": " not", "probability": 0.7421875}, {"start": 294.82, "end": 295.12, "word": " guys?", "probability": 0.33056640625}, {"start": 296.34, "end": 296.9, "word": " Because", "probability": 0.11846923828125}, {"start": 296.9, "end": 297.38, "word": " this", "probability": 0.744140625}, {"start": 297.38, "end": 297.38, "word": " is", "probability": 0.5224609375}, {"start": 297.38, "end": 297.48, "word": " the", "probability": 0.76318359375}, {"start": 297.48, "end": 297.94, "word": " important", "probability": 0.77978515625}, {"start": 297.94, "end": 297.94, "word": " point.", "probability": 0.8515625}, {"start": 298.82, "end": 299.38, "word": " Light", "probability": 0.36572265625}, {"start": 299.38, "end": 299.82, "word": " object", "probability": 0.50244140625}, {"start": 299.82, "end": 300.4, "word": " will", "probability": 0.87158203125}, {"start": 300.4, "end": 301.18, "word": " instantiate", "probability": 0.86474609375}, {"start": 301.18, "end": 301.74, "word": " those", "probability": 0.75048828125}, {"start": 301.74, "end": 302.04, "word": " heavy", "probability": 0.80029296875}, {"start": 302.04, "end": 302.52, "word": " objects", "probability": 0.9365234375}, {"start": 302.52, "end": 303.12, "word": " when", "probability": 0.77197265625}, {"start": 303.12, "end": 303.34, "word": " they", "probability": 0.88134765625}, {"start": 303.34, "end": 303.5, "word": " are", "probability": 0.91748046875}, {"start": 303.5, "end": 303.74, "word": " really", "probability": 0.86767578125}, {"start": 303.74, "end": 303.96, "word": " needed", "probability": 0.4208984375}, {"start": 303.96, "end": 304.22, "word": " and", "probability": 0.6767578125}, {"start": 304.22, "end": 304.48, "word": " by", "probability": 0.83642578125}, {"start": 304.48, "end": 304.82, "word": " then", "probability": 0.51416015625}, {"start": 304.82, "end": 305.36, "word": " we", "probability": 0.6357421875}, {"start": 305.36, "end": 305.52, "word": " will", "probability": 0.64501953125}, {"start": 305.52, "end": 305.7, "word": " use", "probability": 0.8828125}, {"start": 305.7, "end": 305.9, "word": " some", "probability": 0.8115234375}, {"start": 305.9, "end": 306.14, "word": " light", "probability": 0.86865234375}, {"start": 306.14, "end": 306.48, "word": " objects", "probability": 0.91845703125}, {"start": 306.48, "end": 306.92, "word": " instead.", "probability": 0.8984375}, {"start": 307.58, "end": 307.92, "word": " The", "probability": 0.2271728515625}, {"start": 307.92, "end": 308.28, "word": " client", "probability": 0.94482421875}, {"start": 308.28, "end": 308.72, "word": " uses", "probability": 0.6552734375}, {"start": 308.72, "end": 308.88, "word": " the", "probability": 0.6630859375}, {"start": 308.88, "end": 309.08, "word": " light", "probability": 0.85400390625}, {"start": 309.08, "end": 309.6, "word": " object", "probability": 0.91064453125}, {"start": 309.6, "end": 310.42, "word": " like", "probability": 0.318603515625}, {"start": 310.42, "end": 310.9, "word": " the", "probability": 0.6162109375}, {"start": 310.9, "end": 311.18, "word": " image", "probability": 0.9306640625}, {"start": 311.18, "end": 311.5, "word": " icon,", "probability": 0.8701171875}, {"start": 311.6, "end": 311.76, "word": " but", "probability": 0.84423828125}, {"start": 311.76, "end": 312.7, "word": " actually", "probability": 0.54296875}, {"start": 312.7, "end": 313.8, "word": " the", "probability": 0.63330078125}, {"start": 313.8, "end": 313.98, "word": " wrapped", "probability": 0.6591796875}, {"start": 313.98, "end": 314.78, "word": " object", "probability": 0.6259765625}, {"start": 314.78, "end": 314.98, "word": " is", "probability": 0.7490234375}, {"start": 314.98, "end": 315.14, "word": " what", "probability": 0.318359375}, {"start": 315.14, "end": 315.38, "word": " is", "probability": 0.77978515625}, {"start": 315.38, "end": 315.7, "word": " created", "probability": 0.533203125}, {"start": 315.7, "end": 316.08, "word": " at", "probability": 0.234130859375}, {"start": 316.08, "end": 316.36, "word": " the", "probability": 0.83447265625}, {"start": 316.36, "end": 316.58, "word": " moment", "probability": 0.916015625}, {"start": 316.58, "end": 316.8, "word": " of", "probability": 0.74560546875}, {"start": 316.8, "end": 317.02, "word": " display", "probability": 0.1788330078125}, {"start": 317.02, "end": 317.86, "word": " of", "probability": 0.869140625}, {"start": 317.86, "end": 317.92, "word": " the", "probability": 0.86328125}, {"start": 317.92, "end": 318.12, "word": " image.", "probability": 0.814453125}], "temperature": 1.0}, {"id": 13, "seek": 34346, "start": 319.58, "end": 343.46, "text": "Now, of course, I couldn't read this sentence without looking at the example. Right or wrong? If I didn't explain the example and read the sentence, you won't understand what is light and what is heavy. But with the example, the sentence should be clearer. Now, the ability to control the access to an object can be required for a variety of reasons. Now, the ability to control the access to an object is necessary in multiple cases.", "tokens": [13267, 11, 295, 1164, 11, 286, 2809, 380, 1401, 341, 8174, 1553, 1237, 412, 264, 1365, 13, 1779, 420, 2085, 30, 759, 286, 994, 380, 2903, 264, 1365, 293, 1401, 264, 8174, 11, 291, 1582, 380, 1223, 437, 307, 1442, 293, 437, 307, 4676, 13, 583, 365, 264, 1365, 11, 264, 8174, 820, 312, 26131, 13, 823, 11, 264, 3485, 281, 1969, 264, 2105, 281, 364, 2657, 393, 312, 4739, 337, 257, 5673, 295, 4112, 13, 823, 11, 264, 3485, 281, 1969, 264, 2105, 281, 364, 2657, 307, 4818, 294, 3866, 3331, 13], "avg_logprob": -0.4062499958784022, "compression_ratio": 1.8547008547008548, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 319.58, "end": 319.92, "word": "Now,", "probability": 0.263427734375}, {"start": 320.02, "end": 320.1, "word": " of", "probability": 0.552734375}, {"start": 320.1, "end": 320.18, "word": " course,", "probability": 0.9482421875}, {"start": 321.48, "end": 321.82, "word": " I", "probability": 0.931640625}, {"start": 321.82, "end": 322.78, "word": " couldn't", "probability": 0.66552734375}, {"start": 322.78, "end": 323.34, "word": " read", "probability": 0.74755859375}, {"start": 323.34, "end": 323.52, "word": " this", "probability": 0.544921875}, {"start": 323.52, "end": 323.8, "word": " sentence", "probability": 0.1259765625}, {"start": 323.8, "end": 324.24, "word": " without", "probability": 0.360107421875}, {"start": 324.24, "end": 324.58, "word": " looking", "probability": 0.348388671875}, {"start": 324.58, "end": 324.68, "word": " at", "probability": 0.931640625}, {"start": 324.68, "end": 324.76, "word": " the", "probability": 0.76513671875}, {"start": 324.76, "end": 324.96, "word": " example.", "probability": 0.9013671875}, {"start": 325.76, "end": 326.0, "word": " Right", "probability": 0.342529296875}, {"start": 326.0, "end": 326.18, "word": " or", "probability": 0.7490234375}, {"start": 326.18, "end": 326.24, "word": " wrong?", "probability": 0.5126953125}, {"start": 326.32, "end": 326.58, "word": " If", "probability": 0.50048828125}, {"start": 326.58, "end": 326.78, "word": " I", "probability": 0.85595703125}, {"start": 326.78, "end": 326.8, "word": " didn't", "probability": 0.772705078125}, {"start": 326.8, "end": 327.04, "word": " explain", "probability": 0.44921875}, {"start": 327.04, "end": 327.24, "word": " the", "probability": 0.48291015625}, {"start": 327.24, "end": 327.4, "word": " example", "probability": 0.79150390625}, {"start": 327.4, "end": 327.54, "word": " and", "probability": 0.436767578125}, {"start": 327.54, "end": 327.78, "word": " read", "probability": 0.802734375}, {"start": 327.78, "end": 327.94, "word": " the", "probability": 0.5888671875}, {"start": 327.94, "end": 328.04, "word": " sentence,", "probability": 0.81591796875}, {"start": 328.04, "end": 328.18, "word": " you", "probability": 0.904296875}, {"start": 328.18, "end": 328.26, "word": " won't", "probability": 0.6785888671875}, {"start": 328.26, "end": 328.46, "word": " understand", "probability": 0.61279296875}, {"start": 328.46, "end": 328.68, "word": " what", "probability": 0.70556640625}, {"start": 328.68, "end": 328.74, "word": " is", "probability": 0.25634765625}, {"start": 328.74, "end": 328.96, "word": " light", "probability": 0.70458984375}, {"start": 328.96, "end": 329.08, "word": " and", "probability": 0.8671875}, {"start": 329.08, "end": 329.14, "word": " what", "probability": 0.57421875}, {"start": 329.14, "end": 329.14, "word": " is", "probability": 0.93798828125}, {"start": 329.14, "end": 329.3, "word": " heavy.", "probability": 0.7509765625}, {"start": 329.4, "end": 329.58, "word": " But", "probability": 0.73193359375}, {"start": 329.58, "end": 329.74, "word": " with", "probability": 0.6640625}, {"start": 329.74, "end": 329.84, "word": " the", "probability": 0.8017578125}, {"start": 329.84, "end": 330.16, "word": " example,", "probability": 0.96533203125}, {"start": 330.88, "end": 331.28, "word": " the", "probability": 0.306884765625}, {"start": 331.28, "end": 331.52, "word": " sentence", "probability": 0.5546875}, {"start": 331.52, "end": 331.64, "word": " should", "probability": 0.642578125}, {"start": 331.64, "end": 331.82, "word": " be", "probability": 0.52294921875}, {"start": 331.82, "end": 332.32, "word": " clearer.", "probability": 0.52490234375}, {"start": 333.04, "end": 333.36, "word": " Now,", "probability": 0.2486572265625}, {"start": 333.36, "end": 333.46, "word": " the", "probability": 0.693359375}, {"start": 333.46, "end": 333.88, "word": " ability", "probability": 0.93212890625}, {"start": 333.88, "end": 334.12, "word": " to", "probability": 0.96728515625}, {"start": 334.12, "end": 334.52, "word": " control", "probability": 0.84912109375}, {"start": 334.52, "end": 334.68, "word": " the", "probability": 0.7392578125}, {"start": 334.68, "end": 334.96, "word": " access", "probability": 0.9130859375}, {"start": 334.96, "end": 335.12, "word": " to", "probability": 0.89306640625}, {"start": 335.12, "end": 335.22, "word": " an", "probability": 0.89990234375}, {"start": 335.22, "end": 335.48, "word": " object", "probability": 0.98095703125}, {"start": 335.48, "end": 335.68, "word": " can", "probability": 0.93798828125}, {"start": 335.68, "end": 335.82, "word": " be", "probability": 0.9541015625}, {"start": 335.82, "end": 336.28, "word": " required", "probability": 0.85595703125}, {"start": 336.28, "end": 337.1, "word": " for", "probability": 0.92431640625}, {"start": 337.1, "end": 337.32, "word": " a", "probability": 0.97509765625}, {"start": 337.32, "end": 338.0, "word": " variety", "probability": 0.912109375}, {"start": 338.0, "end": 338.28, "word": " of", "probability": 0.97216796875}, {"start": 338.28, "end": 338.7, "word": " reasons.", "probability": 0.9228515625}, {"start": 339.46, "end": 339.66, "word": " Now,", "probability": 0.49365234375}, {"start": 339.74, "end": 339.82, "word": " the", "probability": 0.65234375}, {"start": 339.82, "end": 340.06, "word": " ability", "probability": 0.91796875}, {"start": 340.06, "end": 340.26, "word": " to", "probability": 0.943359375}, {"start": 340.26, "end": 340.68, "word": " control", "probability": 0.7421875}, {"start": 340.68, "end": 340.88, "word": " the", "probability": 0.52685546875}, {"start": 340.88, "end": 341.12, "word": " access", "probability": 0.9189453125}, {"start": 341.12, "end": 341.32, "word": " to", "probability": 0.79150390625}, {"start": 341.32, "end": 341.44, "word": " an", "probability": 0.759765625}, {"start": 341.44, "end": 341.8, "word": " object", "probability": 0.97265625}, {"start": 341.8, "end": 342.14, "word": " is", "probability": 0.578125}, {"start": 342.14, "end": 342.42, "word": " necessary", "probability": 0.3583984375}, {"start": 342.42, "end": 342.66, "word": " in", "probability": 0.87451171875}, {"start": 342.66, "end": 342.76, "word": " multiple", "probability": 0.306396484375}, {"start": 342.76, "end": 343.46, "word": " cases.", "probability": 0.625}], "temperature": 1.0}, {"id": 14, "seek": 36600, "start": 344.4, "end": 366.0, "text": "What are these cases? The first case is controlling when a caustic object needs to be instantiated and initialized. The first case is controlling when a caustic object is created. This is similar to the example that we presented. Now he is explaining what are the cases that need a proxy pattern. The first case is to create a virtual object that covers a real object.", "tokens": [3748, 366, 613, 3331, 30, 440, 700, 1389, 307, 14905, 562, 257, 1335, 381, 299, 2657, 2203, 281, 312, 9836, 72, 770, 293, 5883, 1602, 13, 440, 700, 1389, 307, 14905, 562, 257, 1335, 381, 299, 2657, 307, 2942, 13, 639, 307, 2531, 281, 264, 1365, 300, 321, 8212, 13, 823, 415, 307, 13468, 437, 366, 264, 3331, 300, 643, 257, 29690, 5102, 13, 440, 700, 1389, 307, 281, 1884, 257, 6374, 2657, 300, 10538, 257, 957, 2657, 13], "avg_logprob": -0.4363281175494194, "compression_ratio": 1.9067357512953367, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 344.4, "end": 344.66, "word": "What", "probability": 0.408203125}, {"start": 344.66, "end": 344.72, "word": " are", "probability": 0.82373046875}, {"start": 344.72, "end": 345.06, "word": " these", "probability": 0.716796875}, {"start": 345.06, "end": 345.06, "word": " cases?", "probability": 0.81689453125}, {"start": 345.84, "end": 346.08, "word": " The", "probability": 0.52197265625}, {"start": 346.08, "end": 346.2, "word": " first", "probability": 0.88818359375}, {"start": 346.2, "end": 346.44, "word": " case", "probability": 0.7861328125}, {"start": 346.44, "end": 346.52, "word": " is", "probability": 0.7412109375}, {"start": 346.52, "end": 346.96, "word": " controlling", "probability": 0.5927734375}, {"start": 346.96, "end": 347.32, "word": " when", "probability": 0.8671875}, {"start": 347.32, "end": 347.5, "word": " a", "probability": 0.80419921875}, {"start": 347.5, "end": 347.86, "word": " caustic", "probability": 0.7543131510416666}, {"start": 347.86, "end": 348.08, "word": " object", "probability": 0.8359375}, {"start": 348.08, "end": 348.44, "word": " needs", "probability": 0.7998046875}, {"start": 348.44, "end": 348.6, "word": " to", "probability": 0.97119140625}, {"start": 348.6, "end": 348.74, "word": " be", "probability": 0.94873046875}, {"start": 348.74, "end": 349.48, "word": " instantiated", "probability": 0.9308268229166666}, {"start": 349.48, "end": 349.68, "word": " and", "probability": 0.927734375}, {"start": 349.68, "end": 350.28, "word": " initialized.", "probability": 0.906982421875}, {"start": 350.88, "end": 350.88, "word": " The", "probability": 0.2744140625}, {"start": 350.88, "end": 350.88, "word": " first", "probability": 0.71875}, {"start": 350.88, "end": 351.38, "word": " case", "probability": 0.869140625}, {"start": 351.38, "end": 351.96, "word": " is", "probability": 0.8017578125}, {"start": 351.96, "end": 352.44, "word": " controlling", "probability": 0.345703125}, {"start": 352.44, "end": 352.86, "word": " when", "probability": 0.88671875}, {"start": 352.86, "end": 353.14, "word": " a", "probability": 0.450927734375}, {"start": 353.14, "end": 354.1, "word": " caustic", "probability": 0.8756510416666666}, {"start": 354.1, "end": 354.42, "word": " object", "probability": 0.9619140625}, {"start": 354.42, "end": 354.42, "word": " is", "probability": 0.60595703125}, {"start": 354.42, "end": 354.42, "word": " created.", "probability": 0.411865234375}, {"start": 354.94, "end": 355.14, "word": " This", "probability": 0.470458984375}, {"start": 355.14, "end": 355.22, "word": " is", "probability": 0.88916015625}, {"start": 355.22, "end": 355.34, "word": " similar", "probability": 0.333984375}, {"start": 355.34, "end": 355.38, "word": " to", "probability": 0.94140625}, {"start": 355.38, "end": 355.46, "word": " the", "probability": 0.82470703125}, {"start": 355.46, "end": 356.06, "word": " example", "probability": 0.6220703125}, {"start": 356.06, "end": 356.2, "word": " that", "probability": 0.2225341796875}, {"start": 356.2, "end": 356.36, "word": " we", "probability": 0.732421875}, {"start": 356.36, "end": 356.66, "word": " presented.", "probability": 0.371337890625}, {"start": 357.04, "end": 357.38, "word": " Now", "probability": 0.345947265625}, {"start": 357.38, "end": 357.6, "word": " he", "probability": 0.36376953125}, {"start": 357.6, "end": 357.68, "word": " is", "probability": 0.344482421875}, {"start": 357.68, "end": 357.88, "word": " explaining", "probability": 0.7919921875}, {"start": 357.88, "end": 358.36, "word": " what", "probability": 0.53173828125}, {"start": 358.36, "end": 358.6, "word": " are", "probability": 0.61279296875}, {"start": 358.6, "end": 358.8, "word": " the", "probability": 0.8525390625}, {"start": 358.8, "end": 359.32, "word": " cases", "probability": 0.78076171875}, {"start": 359.32, "end": 360.0, "word": " that", "probability": 0.43310546875}, {"start": 360.0, "end": 360.32, "word": " need", "probability": 0.138427734375}, {"start": 360.32, "end": 360.64, "word": " a", "probability": 0.42919921875}, {"start": 360.64, "end": 360.94, "word": " proxy", "probability": 0.93701171875}, {"start": 360.94, "end": 361.22, "word": " pattern.", "probability": 0.904296875}, {"start": 361.46, "end": 361.92, "word": " The", "probability": 0.77685546875}, {"start": 361.92, "end": 361.92, "word": " first", "probability": 0.892578125}, {"start": 361.92, "end": 362.4, "word": " case", "probability": 0.892578125}, {"start": 362.4, "end": 363.06, "word": " is", "probability": 0.884765625}, {"start": 363.06, "end": 363.18, "word": " to", "probability": 0.1983642578125}, {"start": 363.18, "end": 363.46, "word": " create", "probability": 0.4619140625}, {"start": 363.46, "end": 363.64, "word": " a", "probability": 0.9443359375}, {"start": 363.64, "end": 363.96, "word": " virtual", "probability": 0.93701171875}, {"start": 363.96, "end": 364.56, "word": " object", "probability": 0.96923828125}, {"start": 364.56, "end": 364.76, "word": " that", "probability": 0.62744140625}, {"start": 364.76, "end": 365.06, "word": " covers", "probability": 0.118896484375}, {"start": 365.06, "end": 365.28, "word": " a", "probability": 0.7939453125}, {"start": 365.28, "end": 365.28, "word": " real", "probability": 0.94384765625}, {"start": 365.28, "end": 366.0, "word": " object.", "probability": 0.9638671875}], "temperature": 1.0}, {"id": 15, "seek": 39147, "start": 366.59, "end": 391.47, "text": "in order to delay the creation of the real object at the moment of need. Like the idea of singleton, I don't create it when I don't need it yet. I don't create the image when I don't show it yet. When I show it at the moment, I let it create it. So this is the first case. We only came up with a case when we had to use the proxy pattern. What are the other cases? The other cases give you different access rights to an object.", "tokens": [259, 1668, 281, 8577, 264, 8016, 295, 264, 957, 2657, 412, 264, 1623, 295, 643, 13, 1743, 264, 1558, 295, 1522, 14806, 11, 286, 500, 380, 1884, 309, 562, 286, 500, 380, 643, 309, 1939, 13, 286, 500, 380, 1884, 264, 3256, 562, 286, 500, 380, 855, 309, 1939, 13, 1133, 286, 855, 309, 412, 264, 1623, 11, 286, 718, 309, 1884, 309, 13, 407, 341, 307, 264, 700, 1389, 13, 492, 787, 1361, 493, 365, 257, 1389, 562, 321, 632, 281, 764, 264, 29690, 5102, 13, 708, 366, 264, 661, 3331, 30, 440, 661, 3331, 976, 291, 819, 2105, 4601, 281, 364, 2657, 13], "avg_logprob": -0.42010612364085215, "compression_ratio": 1.8646288209606987, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 366.59, "end": 366.75, "word": "in", "probability": 0.12457275390625}, {"start": 366.75, "end": 367.01, "word": " order", "probability": 0.84521484375}, {"start": 367.01, "end": 367.23, "word": " to", "probability": 0.958984375}, {"start": 367.23, "end": 367.61, "word": " delay", "probability": 0.72900390625}, {"start": 367.61, "end": 367.81, "word": " the", "probability": 0.79736328125}, {"start": 367.81, "end": 367.93, "word": " creation", "probability": 0.49755859375}, {"start": 367.93, "end": 368.07, "word": " of", "probability": 0.96875}, {"start": 368.07, "end": 368.13, "word": " the", "probability": 0.7607421875}, {"start": 368.13, "end": 368.73, "word": " real", "probability": 0.35791015625}, {"start": 368.73, "end": 368.73, "word": " object", "probability": 0.91845703125}, {"start": 368.73, "end": 369.01, "word": " at", "probability": 0.466796875}, {"start": 369.01, "end": 369.09, "word": " the", "probability": 0.87939453125}, {"start": 369.09, "end": 369.27, "word": " moment", "probability": 0.69384765625}, {"start": 369.27, "end": 369.45, "word": " of", "probability": 0.9033203125}, {"start": 369.45, "end": 369.75, "word": " need.", "probability": 0.640625}, {"start": 370.39, "end": 370.79, "word": " Like", "probability": 0.337890625}, {"start": 370.79, "end": 370.95, "word": " the", "probability": 0.63427734375}, {"start": 370.95, "end": 371.11, "word": " idea", "probability": 0.5224609375}, {"start": 371.11, "end": 371.33, "word": " of", "probability": 0.91357421875}, {"start": 371.33, "end": 371.83, "word": " singleton,", "probability": 0.6312255859375}, {"start": 371.87, "end": 371.99, "word": " I", "probability": 0.49755859375}, {"start": 371.99, "end": 372.07, "word": " don't", "probability": 0.7440185546875}, {"start": 372.07, "end": 372.33, "word": " create", "probability": 0.7568359375}, {"start": 372.33, "end": 372.45, "word": " it", "probability": 0.29541015625}, {"start": 372.45, "end": 372.53, "word": " when", "probability": 0.1824951171875}, {"start": 372.53, "end": 372.67, "word": " I", "probability": 0.94921875}, {"start": 372.67, "end": 373.01, "word": " don't", "probability": 0.89013671875}, {"start": 373.01, "end": 374.01, "word": " need", "probability": 0.88232421875}, {"start": 374.01, "end": 374.19, "word": " it", "probability": 0.890625}, {"start": 374.19, "end": 374.19, "word": " yet.", "probability": 0.54345703125}, {"start": 374.37, "end": 374.55, "word": " I", "probability": 0.8857421875}, {"start": 374.55, "end": 374.67, "word": " don't", "probability": 0.9365234375}, {"start": 374.67, "end": 374.89, "word": " create", "probability": 0.78564453125}, {"start": 374.89, "end": 375.03, "word": " the", "probability": 0.7314453125}, {"start": 375.03, "end": 375.21, "word": " image", "probability": 0.68603515625}, {"start": 375.21, "end": 375.39, "word": " when", "probability": 0.55224609375}, {"start": 375.39, "end": 376.31, "word": " I", "probability": 0.85498046875}, {"start": 376.31, "end": 376.45, "word": " don't", "probability": 0.69287109375}, {"start": 376.45, "end": 376.69, "word": " show", "probability": 0.31396484375}, {"start": 376.69, "end": 376.85, "word": " it", "probability": 0.94287109375}, {"start": 376.85, "end": 376.85, "word": " yet.", "probability": 0.64453125}, {"start": 376.97, "end": 377.09, "word": " When", "probability": 0.30615234375}, {"start": 377.09, "end": 377.49, "word": " I", "probability": 0.8447265625}, {"start": 377.49, "end": 378.07, "word": " show", "probability": 0.626953125}, {"start": 378.07, "end": 378.27, "word": " it", "probability": 0.86279296875}, {"start": 378.27, "end": 378.51, "word": " at", "probability": 0.30126953125}, {"start": 378.51, "end": 378.55, "word": " the", "probability": 0.78369140625}, {"start": 378.55, "end": 378.55, "word": " moment,", "probability": 0.8369140625}, {"start": 378.65, "end": 379.13, "word": " I", "probability": 0.88232421875}, {"start": 379.13, "end": 379.31, "word": " let", "probability": 0.68994140625}, {"start": 379.31, "end": 379.45, "word": " it", "probability": 0.6689453125}, {"start": 379.45, "end": 379.59, "word": " create", "probability": 0.55224609375}, {"start": 379.59, "end": 379.75, "word": " it.", "probability": 0.82177734375}, {"start": 380.17, "end": 380.41, "word": " So", "probability": 0.372314453125}, {"start": 380.41, "end": 380.57, "word": " this", "probability": 0.6826171875}, {"start": 380.57, "end": 380.59, "word": " is", "probability": 0.84130859375}, {"start": 380.59, "end": 380.97, "word": " the", "probability": 0.876953125}, {"start": 380.97, "end": 381.13, "word": " first", "probability": 0.873046875}, {"start": 381.13, "end": 381.13, "word": " case.", "probability": 0.8251953125}, {"start": 381.45, "end": 381.85, "word": " We", "probability": 0.7734375}, {"start": 381.85, "end": 382.39, "word": " only", "probability": 0.2293701171875}, {"start": 382.39, "end": 382.59, "word": " came", "probability": 0.12005615234375}, {"start": 382.59, "end": 382.87, "word": " up", "probability": 0.81689453125}, {"start": 382.87, "end": 383.17, "word": " with", "probability": 0.876953125}, {"start": 383.17, "end": 383.39, "word": " a", "probability": 0.638671875}, {"start": 383.39, "end": 383.75, "word": " case", "probability": 0.84521484375}, {"start": 383.75, "end": 384.49, "word": " when", "probability": 0.49365234375}, {"start": 384.49, "end": 384.61, "word": " we", "probability": 0.87744140625}, {"start": 384.61, "end": 384.79, "word": " had", "probability": 0.38037109375}, {"start": 384.79, "end": 384.99, "word": " to", "probability": 0.97265625}, {"start": 384.99, "end": 385.59, "word": " use", "probability": 0.873046875}, {"start": 385.59, "end": 386.15, "word": " the", "probability": 0.2242431640625}, {"start": 386.15, "end": 386.37, "word": " proxy", "probability": 0.6474609375}, {"start": 386.37, "end": 386.61, "word": " pattern.", "probability": 0.28759765625}, {"start": 386.69, "end": 386.89, "word": " What", "probability": 0.8330078125}, {"start": 386.89, "end": 386.93, "word": " are", "probability": 0.7314453125}, {"start": 386.93, "end": 387.01, "word": " the", "probability": 0.8095703125}, {"start": 387.01, "end": 387.63, "word": " other", "probability": 0.88525390625}, {"start": 387.63, "end": 387.63, "word": " cases?", "probability": 0.89208984375}, {"start": 388.49, "end": 388.73, "word": " The", "probability": 0.60107421875}, {"start": 388.73, "end": 389.27, "word": " other", "probability": 0.7998046875}, {"start": 389.27, "end": 389.27, "word": " cases", "probability": 0.91552734375}, {"start": 389.27, "end": 389.61, "word": " give", "probability": 0.40087890625}, {"start": 389.61, "end": 389.77, "word": " you", "probability": 0.58642578125}, {"start": 389.77, "end": 390.17, "word": " different", "probability": 0.876953125}, {"start": 390.17, "end": 390.59, "word": " access", "probability": 0.93701171875}, {"start": 390.59, "end": 390.91, "word": " rights", "probability": 0.92431640625}, {"start": 390.91, "end": 391.07, "word": " to", "probability": 0.96923828125}, {"start": 391.07, "end": 391.21, "word": " an", "probability": 0.94189453125}, {"start": 391.21, "end": 391.47, "word": " object.", "probability": 0.98046875}], "temperature": 1.0}, {"id": 16, "seek": 41711, "start": 392.95, "end": 417.11, "text": "it gives the ability to access the object we talked about in the previous lecture when we explained in the beginning about the proxy that I can have an object that has x, y and z methods and I want the client to cancel this z or delete the existing code I can actually wrap it with an object of the same type put x and y and don't put anything else z", "tokens": [270, 2709, 264, 3485, 281, 2105, 264, 2657, 321, 2825, 466, 294, 264, 3894, 7991, 562, 321, 8825, 294, 264, 2863, 466, 264, 29690, 300, 286, 393, 362, 364, 2657, 300, 575, 2031, 11, 288, 293, 710, 7150, 293, 286, 528, 264, 6423, 281, 10373, 341, 710, 420, 12097, 264, 6741, 3089, 286, 393, 767, 7019, 309, 365, 364, 2657, 295, 264, 912, 2010, 829, 2031, 293, 288, 293, 500, 380, 829, 1340, 1646, 710], "avg_logprob": -0.5699013016725841, "compression_ratio": 1.6826923076923077, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 392.95, "end": 393.13, "word": "it", "probability": 0.05584716796875}, {"start": 393.13, "end": 393.31, "word": " gives", "probability": 0.68994140625}, {"start": 393.31, "end": 393.43, "word": " the", "probability": 0.336181640625}, {"start": 393.43, "end": 393.73, "word": " ability", "probability": 0.419189453125}, {"start": 393.73, "end": 393.97, "word": " to", "probability": 0.796875}, {"start": 393.97, "end": 394.23, "word": " access", "probability": 0.485595703125}, {"start": 394.23, "end": 394.99, "word": " the", "probability": 0.48388671875}, {"start": 394.99, "end": 395.25, "word": " object", "probability": 0.90185546875}, {"start": 395.25, "end": 395.43, "word": " we", "probability": 0.2744140625}, {"start": 395.43, "end": 395.63, "word": " talked", "probability": 0.2919921875}, {"start": 395.63, "end": 395.89, "word": " about", "probability": 0.74951171875}, {"start": 395.89, "end": 396.03, "word": " in", "probability": 0.54150390625}, {"start": 396.03, "end": 396.09, "word": " the", "probability": 0.615234375}, {"start": 396.09, "end": 396.13, "word": " previous", "probability": 0.45751953125}, {"start": 396.13, "end": 396.67, "word": " lecture", "probability": 0.6416015625}, {"start": 396.67, "end": 397.13, "word": " when", "probability": 0.387939453125}, {"start": 397.13, "end": 397.27, "word": " we", "probability": 0.90625}, {"start": 397.27, "end": 397.47, "word": " explained", "probability": 0.53515625}, {"start": 397.47, "end": 397.91, "word": " in", "probability": 0.277587890625}, {"start": 397.91, "end": 398.47, "word": " the", "probability": 0.8818359375}, {"start": 398.47, "end": 398.65, "word": " beginning", "probability": 0.63671875}, {"start": 398.65, "end": 398.81, "word": " about", "probability": 0.60498046875}, {"start": 398.81, "end": 398.89, "word": " the", "probability": 0.3115234375}, {"start": 398.89, "end": 399.23, "word": " proxy", "probability": 0.9462890625}, {"start": 399.23, "end": 399.93, "word": " that", "probability": 0.57763671875}, {"start": 399.93, "end": 400.09, "word": " I", "probability": 0.74462890625}, {"start": 400.09, "end": 400.27, "word": " can", "probability": 0.309814453125}, {"start": 400.27, "end": 400.61, "word": " have", "probability": 0.921875}, {"start": 400.61, "end": 400.77, "word": " an", "probability": 0.6142578125}, {"start": 400.77, "end": 401.11, "word": " object", "probability": 0.97509765625}, {"start": 401.11, "end": 401.59, "word": " that", "probability": 0.28466796875}, {"start": 401.59, "end": 401.65, "word": " has", "probability": 0.78759765625}, {"start": 401.65, "end": 402.23, "word": " x,", "probability": 0.352294921875}, {"start": 402.43, "end": 402.65, "word": " y", "probability": 0.61181640625}, {"start": 402.65, "end": 403.33, "word": " and", "probability": 0.6240234375}, {"start": 403.33, "end": 403.57, "word": " z", "probability": 0.9970703125}, {"start": 403.57, "end": 403.59, "word": " methods", "probability": 0.693359375}, {"start": 403.59, "end": 404.31, "word": " and", "probability": 0.79833984375}, {"start": 404.31, "end": 404.39, "word": " I", "probability": 0.52001953125}, {"start": 404.39, "end": 404.61, "word": " want", "probability": 0.5908203125}, {"start": 404.61, "end": 404.75, "word": " the", "probability": 0.53466796875}, {"start": 404.75, "end": 405.19, "word": " client", "probability": 0.9140625}, {"start": 405.19, "end": 405.51, "word": " to", "probability": 0.92626953125}, {"start": 405.51, "end": 406.49, "word": " cancel", "probability": 0.458984375}, {"start": 406.49, "end": 406.81, "word": " this", "probability": 0.599609375}, {"start": 406.81, "end": 406.81, "word": " z", "probability": 0.9248046875}, {"start": 406.81, "end": 408.73, "word": " or", "probability": 0.2489013671875}, {"start": 408.73, "end": 409.65, "word": " delete", "probability": 0.304931640625}, {"start": 409.65, "end": 409.83, "word": " the", "probability": 0.8310546875}, {"start": 409.83, "end": 410.31, "word": " existing", "probability": 0.255859375}, {"start": 410.31, "end": 410.31, "word": " code", "probability": 0.931640625}, {"start": 410.31, "end": 411.15, "word": " I", "probability": 0.494140625}, {"start": 411.15, "end": 411.59, "word": " can", "probability": 0.8896484375}, {"start": 411.59, "end": 411.59, "word": " actually", "probability": 0.3193359375}, {"start": 411.59, "end": 411.91, "word": " wrap", "probability": 0.5751953125}, {"start": 411.91, "end": 412.09, "word": " it", "probability": 0.473876953125}, {"start": 412.09, "end": 412.15, "word": " with", "probability": 0.62255859375}, {"start": 412.15, "end": 412.45, "word": " an", "probability": 0.446533203125}, {"start": 412.45, "end": 412.45, "word": " object", "probability": 0.98095703125}, {"start": 412.45, "end": 412.55, "word": " of", "probability": 0.91259765625}, {"start": 412.55, "end": 412.83, "word": " the", "probability": 0.91552734375}, {"start": 412.83, "end": 412.83, "word": " same", "probability": 0.89599609375}, {"start": 412.83, "end": 413.17, "word": " type", "probability": 0.61865234375}, {"start": 413.17, "end": 414.49, "word": " put", "probability": 0.35400390625}, {"start": 414.49, "end": 414.73, "word": " x", "probability": 0.93994140625}, {"start": 414.73, "end": 414.93, "word": " and", "probability": 0.67822265625}, {"start": 414.93, "end": 415.15, "word": " y", "probability": 0.97509765625}, {"start": 415.15, "end": 415.29, "word": " and", "probability": 0.6181640625}, {"start": 415.29, "end": 415.39, "word": " don't", "probability": 0.69384765625}, {"start": 415.39, "end": 415.71, "word": " put", "probability": 0.77099609375}, {"start": 415.71, "end": 416.09, "word": " anything", "probability": 0.428955078125}, {"start": 416.09, "end": 416.83, "word": " else", "probability": 0.6845703125}, {"start": 416.83, "end": 417.11, "word": " z", "probability": 0.2222900390625}], "temperature": 1.0}, {"id": 17, "seek": 44001, "start": 418.19, "end": 440.01, "text": "Of course this X will make forward to whom? To the X inside and Y is the same thing Z can be put empty on the basis that the client keeps seeing this like this but the method makes it empty or doesn't make forward as if you blocked whom? This method In this second case which is giving different access rights on object", "tokens": [23919, 1164, 341, 1783, 486, 652, 2128, 281, 7101, 30, 1407, 264, 1783, 1854, 293, 398, 307, 264, 912, 551, 1176, 393, 312, 829, 6707, 322, 264, 5143, 300, 264, 6423, 5965, 2577, 341, 411, 341, 457, 264, 3170, 1669, 309, 6707, 420, 1177, 380, 652, 2128, 382, 498, 291, 15470, 7101, 30, 639, 3170, 682, 341, 1150, 1389, 597, 307, 2902, 819, 2105, 4601, 322, 2657], "avg_logprob": -0.6245404595837873, "compression_ratio": 1.6111111111111112, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 418.19, "end": 418.47, "word": "Of", "probability": 0.1551513671875}, {"start": 418.47, "end": 418.47, "word": " course", "probability": 0.91064453125}, {"start": 418.47, "end": 418.59, "word": " this", "probability": 0.365234375}, {"start": 418.59, "end": 418.83, "word": " X", "probability": 0.61572265625}, {"start": 418.83, "end": 419.11, "word": " will", "probability": 0.30712890625}, {"start": 419.11, "end": 419.33, "word": " make", "probability": 0.2427978515625}, {"start": 419.33, "end": 419.79, "word": " forward", "probability": 0.66162109375}, {"start": 419.79, "end": 420.01, "word": " to", "probability": 0.50537109375}, {"start": 420.01, "end": 420.21, "word": " whom?", "probability": 0.3974609375}, {"start": 420.75, "end": 421.05, "word": " To", "probability": 0.2352294921875}, {"start": 421.05, "end": 421.09, "word": " the", "probability": 0.340576171875}, {"start": 421.09, "end": 421.19, "word": " X", "probability": 0.79345703125}, {"start": 421.19, "end": 421.51, "word": " inside", "probability": 0.640625}, {"start": 421.51, "end": 421.67, "word": " and", "probability": 0.407470703125}, {"start": 421.67, "end": 421.97, "word": " Y", "probability": 0.6044921875}, {"start": 421.97, "end": 422.09, "word": " is", "probability": 0.564453125}, {"start": 422.09, "end": 422.15, "word": " the", "probability": 0.775390625}, {"start": 422.15, "end": 422.23, "word": " same", "probability": 0.90185546875}, {"start": 422.23, "end": 422.63, "word": " thing", "probability": 0.79931640625}, {"start": 422.63, "end": 423.33, "word": " Z", "probability": 0.279296875}, {"start": 423.33, "end": 423.85, "word": " can", "probability": 0.75732421875}, {"start": 423.85, "end": 424.17, "word": " be", "probability": 0.66650390625}, {"start": 424.17, "end": 424.17, "word": " put", "probability": 0.267333984375}, {"start": 424.17, "end": 424.61, "word": " empty", "probability": 0.34375}, {"start": 424.61, "end": 426.57, "word": " on", "probability": 0.1676025390625}, {"start": 426.57, "end": 426.65, "word": " the", "probability": 0.7509765625}, {"start": 426.65, "end": 426.77, "word": " basis", "probability": 0.572265625}, {"start": 426.77, "end": 426.91, "word": " that", "probability": 0.78515625}, {"start": 426.91, "end": 427.05, "word": " the", "probability": 0.392822265625}, {"start": 427.05, "end": 427.35, "word": " client", "probability": 0.8818359375}, {"start": 427.35, "end": 428.07, "word": " keeps", "probability": 0.155029296875}, {"start": 428.07, "end": 428.43, "word": " seeing", "probability": 0.62548828125}, {"start": 428.43, "end": 428.75, "word": " this", "probability": 0.59716796875}, {"start": 428.75, "end": 428.93, "word": " like", "probability": 0.1817626953125}, {"start": 428.93, "end": 429.21, "word": " this", "probability": 0.53857421875}, {"start": 429.21, "end": 430.39, "word": " but", "probability": 0.2330322265625}, {"start": 430.39, "end": 430.91, "word": " the", "probability": 0.443603515625}, {"start": 430.91, "end": 431.11, "word": " method", "probability": 0.9697265625}, {"start": 431.11, "end": 431.39, "word": " makes", "probability": 0.320556640625}, {"start": 431.39, "end": 431.53, "word": " it", "probability": 0.86767578125}, {"start": 431.53, "end": 431.79, "word": " empty", "probability": 0.7724609375}, {"start": 431.79, "end": 431.99, "word": " or", "probability": 0.32763671875}, {"start": 431.99, "end": 432.09, "word": " doesn't", "probability": 0.6788330078125}, {"start": 432.09, "end": 432.33, "word": " make", "probability": 0.70556640625}, {"start": 432.33, "end": 432.77, "word": " forward", "probability": 0.85546875}, {"start": 432.77, "end": 433.19, "word": " as", "probability": 0.435791015625}, {"start": 433.19, "end": 433.41, "word": " if", "probability": 0.91943359375}, {"start": 433.41, "end": 433.55, "word": " you", "probability": 0.7265625}, {"start": 433.55, "end": 433.87, "word": " blocked", "probability": 0.389404296875}, {"start": 433.87, "end": 434.15, "word": " whom?", "probability": 0.2203369140625}, {"start": 434.79, "end": 435.27, "word": " This", "probability": 0.43115234375}, {"start": 435.27, "end": 435.57, "word": " method", "probability": 0.92919921875}, {"start": 435.57, "end": 436.53, "word": " In", "probability": 0.46923828125}, {"start": 436.53, "end": 436.73, "word": " this", "probability": 0.77978515625}, {"start": 436.73, "end": 437.31, "word": " second", "probability": 0.80859375}, {"start": 437.31, "end": 437.35, "word": " case", "probability": 0.828125}, {"start": 437.35, "end": 437.83, "word": " which", "probability": 0.47607421875}, {"start": 437.83, "end": 437.95, "word": " is", "probability": 0.90625}, {"start": 437.95, "end": 438.15, "word": " giving", "probability": 0.8076171875}, {"start": 438.15, "end": 438.75, "word": " different", "probability": 0.865234375}, {"start": 438.75, "end": 439.19, "word": " access", "probability": 0.91796875}, {"start": 439.19, "end": 439.55, "word": " rights", "probability": 0.9140625}, {"start": 439.55, "end": 439.73, "word": " on", "probability": 0.60205078125}, {"start": 439.73, "end": 440.01, "word": " object", "probability": 0.5966796875}], "temperature": 1.0}, {"id": 18, "seek": 46937, "start": 441.11, "end": 469.37, "text": "The third case, as well as providing sophisticated means of accessing and referencing objects running in other processes or other machines, which is to provide a way to access objects on another process or machine. We will talk about this point in a moment. The last point, the third use of the proxy. Today, the diagram of the proxy is very similar to that of the decorator.", "tokens": [2278, 2636, 1389, 11, 382, 731, 382, 6530, 16950, 1355, 295, 26440, 293, 40582, 6565, 2614, 294, 661, 7555, 420, 661, 8379, 11, 597, 307, 281, 2893, 257, 636, 281, 2105, 6565, 322, 1071, 1399, 420, 3479, 13, 492, 486, 751, 466, 341, 935, 294, 257, 1623, 13, 440, 1036, 935, 11, 264, 2636, 764, 295, 264, 29690, 13, 2692, 11, 264, 10686, 295, 264, 29690, 307, 588, 2531, 281, 300, 295, 264, 7919, 1639, 13], "avg_logprob": -0.400365247354879, "compression_ratio": 1.7523364485981308, "no_speech_prob": 0.0, "words": [{"start": 441.11, "end": 441.35, "word": "The", "probability": 0.740234375}, {"start": 441.35, "end": 441.89, "word": " third", "probability": 0.9033203125}, {"start": 441.89, "end": 441.99, "word": " case,", "probability": 0.65380859375}, {"start": 442.37, "end": 442.65, "word": " as", "probability": 0.7490234375}, {"start": 442.65, "end": 442.81, "word": " well", "probability": 0.93408203125}, {"start": 442.81, "end": 443.03, "word": " as", "probability": 0.96875}, {"start": 443.03, "end": 443.49, "word": " providing", "probability": 0.8984375}, {"start": 443.49, "end": 444.11, "word": " sophisticated", "probability": 0.8671875}, {"start": 444.11, "end": 444.71, "word": " means", "probability": 0.9365234375}, {"start": 444.71, "end": 444.93, "word": " of", "probability": 0.9453125}, {"start": 444.93, "end": 445.43, "word": " accessing", "probability": 0.87939453125}, {"start": 445.43, "end": 445.83, "word": " and", "probability": 0.935546875}, {"start": 445.83, "end": 446.37, "word": " referencing", "probability": 0.841796875}, {"start": 446.37, "end": 447.15, "word": " objects", "probability": 0.96044921875}, {"start": 447.15, "end": 447.89, "word": " running", "probability": 0.8505859375}, {"start": 447.89, "end": 448.21, "word": " in", "probability": 0.90576171875}, {"start": 448.21, "end": 448.47, "word": " other", "probability": 0.86962890625}, {"start": 448.47, "end": 448.95, "word": " processes", "probability": 0.7763671875}, {"start": 448.95, "end": 449.15, "word": " or", "probability": 0.90576171875}, {"start": 449.15, "end": 449.41, "word": " other", "probability": 0.81982421875}, {"start": 449.41, "end": 449.83, "word": " machines,", "probability": 0.92333984375}, {"start": 450.73, "end": 450.89, "word": " which", "probability": 0.599609375}, {"start": 450.89, "end": 451.25, "word": " is", "probability": 0.775390625}, {"start": 451.25, "end": 452.69, "word": " to", "probability": 0.267578125}, {"start": 452.69, "end": 453.09, "word": " provide", "probability": 0.71142578125}, {"start": 453.09, "end": 453.25, "word": " a", "probability": 0.630859375}, {"start": 453.25, "end": 453.55, "word": " way", "probability": 0.77001953125}, {"start": 453.55, "end": 453.71, "word": " to", "probability": 0.6279296875}, {"start": 453.71, "end": 454.19, "word": " access", "probability": 0.857421875}, {"start": 454.19, "end": 454.89, "word": " objects", "probability": 0.65087890625}, {"start": 454.89, "end": 455.57, "word": " on", "probability": 0.1673583984375}, {"start": 455.57, "end": 456.73, "word": " another", "probability": 0.42333984375}, {"start": 456.73, "end": 457.09, "word": " process", "probability": 0.87451171875}, {"start": 457.09, "end": 457.27, "word": " or", "probability": 0.92529296875}, {"start": 457.27, "end": 457.77, "word": " machine.", "probability": 0.8095703125}, {"start": 458.87, "end": 459.41, "word": " We", "probability": 0.2283935546875}, {"start": 459.41, "end": 459.97, "word": " will", "probability": 0.67724609375}, {"start": 459.97, "end": 460.27, "word": " talk", "probability": 0.701171875}, {"start": 460.27, "end": 460.39, "word": " about", "probability": 0.69677734375}, {"start": 460.39, "end": 460.39, "word": " this", "probability": 0.41064453125}, {"start": 460.39, "end": 460.39, "word": " point", "probability": 0.82373046875}, {"start": 460.39, "end": 460.43, "word": " in", "probability": 0.343505859375}, {"start": 460.43, "end": 460.75, "word": " a", "probability": 0.60302734375}, {"start": 460.75, "end": 460.89, "word": " moment.", "probability": 0.342529296875}, {"start": 461.81, "end": 462.03, "word": " The", "probability": 0.70849609375}, {"start": 462.03, "end": 462.43, "word": " last", "probability": 0.61279296875}, {"start": 462.43, "end": 462.57, "word": " point,", "probability": 0.95654296875}, {"start": 462.73, "end": 462.81, "word": " the", "probability": 0.45166015625}, {"start": 462.81, "end": 463.51, "word": " third", "probability": 0.8896484375}, {"start": 463.51, "end": 463.51, "word": " use", "probability": 0.77783203125}, {"start": 463.51, "end": 463.69, "word": " of", "probability": 0.79541015625}, {"start": 463.69, "end": 463.81, "word": " the", "probability": 0.53662109375}, {"start": 463.81, "end": 464.15, "word": " proxy.", "probability": 0.93408203125}, {"start": 465.91, "end": 466.51, "word": " Today,", "probability": 0.24951171875}, {"start": 466.73, "end": 466.75, "word": " the", "probability": 0.82080078125}, {"start": 466.75, "end": 467.03, "word": " diagram", "probability": 0.252685546875}, {"start": 467.03, "end": 467.21, "word": " of", "probability": 0.53466796875}, {"start": 467.21, "end": 467.29, "word": " the", "probability": 0.7744140625}, {"start": 467.29, "end": 467.59, "word": " proxy", "probability": 0.96044921875}, {"start": 467.59, "end": 467.79, "word": " is", "probability": 0.82568359375}, {"start": 467.79, "end": 467.83, "word": " very", "probability": 0.76171875}, {"start": 467.83, "end": 468.11, "word": " similar", "probability": 0.93603515625}, {"start": 468.11, "end": 468.63, "word": " to", "probability": 0.9404296875}, {"start": 468.63, "end": 468.75, "word": " that", "probability": 0.53271484375}, {"start": 468.75, "end": 468.75, "word": " of", "probability": 0.87451171875}, {"start": 468.75, "end": 468.89, "word": " the", "probability": 0.68798828125}, {"start": 468.89, "end": 469.37, "word": " decorator.", "probability": 0.947998046875}], "temperature": 1.0}, {"id": 19, "seek": 49731, "start": 470.29, "end": 497.31, "text": " I have this real subject, the object that I want to control its access to, delay its creation, it is a kind of subject, it is an implementable interface I actually create a class called proxy of the subject type and at the same time it wraps the real subject and the same method in the real subject is present in the do operation but here of course there is a code that does not control the subject", "tokens": [286, 362, 341, 957, 3983, 11, 264, 2657, 300, 286, 528, 281, 1969, 1080, 2105, 281, 11, 8577, 1080, 8016, 11, 309, 307, 257, 733, 295, 3983, 11, 309, 307, 364, 4445, 712, 9226, 286, 767, 1884, 257, 1508, 1219, 29690, 295, 264, 3983, 2010, 293, 412, 264, 912, 565, 309, 25831, 264, 957, 3983, 293, 264, 912, 3170, 294, 264, 957, 3983, 307, 1974, 294, 264, 360, 6916, 457, 510, 295, 1164, 456, 307, 257, 3089, 300, 775, 406, 1969, 264, 3983], "avg_logprob": -0.6011904648372105, "compression_ratio": 1.8558139534883722, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 470.29, "end": 470.85, "word": " I", "probability": 0.1363525390625}, {"start": 470.85, "end": 471.41, "word": " have", "probability": 0.6259765625}, {"start": 471.41, "end": 471.81, "word": " this", "probability": 0.6044921875}, {"start": 471.81, "end": 471.99, "word": " real", "probability": 0.65673828125}, {"start": 471.99, "end": 472.55, "word": " subject,", "probability": 0.83837890625}, {"start": 472.81, "end": 472.95, "word": " the", "probability": 0.333251953125}, {"start": 472.95, "end": 473.21, "word": " object", "probability": 0.8779296875}, {"start": 473.21, "end": 473.39, "word": " that", "probability": 0.5458984375}, {"start": 473.39, "end": 473.97, "word": " I", "probability": 0.94189453125}, {"start": 473.97, "end": 474.23, "word": " want", "probability": 0.368896484375}, {"start": 474.23, "end": 474.29, "word": " to", "probability": 0.9501953125}, {"start": 474.29, "end": 474.57, "word": " control", "probability": 0.486083984375}, {"start": 474.57, "end": 474.79, "word": " its", "probability": 0.50830078125}, {"start": 474.79, "end": 475.09, "word": " access", "probability": 0.54296875}, {"start": 475.09, "end": 475.45, "word": " to,", "probability": 0.32421875}, {"start": 475.45, "end": 475.85, "word": " delay", "probability": 0.12396240234375}, {"start": 475.85, "end": 475.93, "word": " its", "probability": 0.7578125}, {"start": 475.93, "end": 476.33, "word": " creation,", "probability": 0.541015625}, {"start": 476.81, "end": 477.11, "word": " it", "probability": 0.513671875}, {"start": 477.11, "end": 477.49, "word": " is", "probability": 0.6865234375}, {"start": 477.49, "end": 477.59, "word": " a", "probability": 0.2215576171875}, {"start": 477.59, "end": 477.83, "word": " kind", "probability": 0.344970703125}, {"start": 477.83, "end": 478.01, "word": " of", "probability": 0.96826171875}, {"start": 478.01, "end": 478.83, "word": " subject,", "probability": 0.90673828125}, {"start": 478.93, "end": 479.05, "word": " it", "probability": 0.40673828125}, {"start": 479.05, "end": 479.13, "word": " is", "probability": 0.55908203125}, {"start": 479.13, "end": 479.27, "word": " an", "probability": 0.5341796875}, {"start": 479.27, "end": 479.87, "word": " implementable", "probability": 0.56201171875}, {"start": 479.87, "end": 480.39, "word": " interface", "probability": 0.8974609375}, {"start": 480.39, "end": 481.21, "word": " I", "probability": 0.60693359375}, {"start": 481.21, "end": 481.53, "word": " actually", "probability": 0.2081298828125}, {"start": 481.53, "end": 481.83, "word": " create", "probability": 0.422119140625}, {"start": 481.83, "end": 481.93, "word": " a", "probability": 0.427734375}, {"start": 481.93, "end": 482.71, "word": " class", "probability": 0.91455078125}, {"start": 482.71, "end": 482.97, "word": " called", "probability": 0.492919921875}, {"start": 482.97, "end": 483.41, "word": " proxy", "probability": 0.9111328125}, {"start": 483.41, "end": 484.07, "word": " of", "probability": 0.1842041015625}, {"start": 484.07, "end": 484.19, "word": " the", "probability": 0.533203125}, {"start": 484.19, "end": 485.01, "word": " subject", "probability": 0.71533203125}, {"start": 485.01, "end": 485.03, "word": " type", "probability": 0.61279296875}, {"start": 485.03, "end": 486.09, "word": " and", "probability": 0.388671875}, {"start": 486.09, "end": 486.17, "word": " at", "probability": 0.76123046875}, {"start": 486.17, "end": 486.37, "word": " the", "probability": 0.92333984375}, {"start": 486.37, "end": 486.39, "word": " same", "probability": 0.90478515625}, {"start": 486.39, "end": 486.71, "word": " time", "probability": 0.89453125}, {"start": 486.71, "end": 486.87, "word": " it", "probability": 0.75537109375}, {"start": 486.87, "end": 487.23, "word": " wraps", "probability": 0.37646484375}, {"start": 487.23, "end": 488.55, "word": " the", "probability": 0.29638671875}, {"start": 488.55, "end": 488.73, "word": " real", "probability": 0.92431640625}, {"start": 488.73, "end": 489.11, "word": " subject", "probability": 0.93994140625}, {"start": 489.11, "end": 489.53, "word": " and", "probability": 0.52001953125}, {"start": 489.53, "end": 489.81, "word": " the", "probability": 0.72802734375}, {"start": 489.81, "end": 489.81, "word": " same", "probability": 0.8330078125}, {"start": 489.81, "end": 490.13, "word": " method", "probability": 0.46728515625}, {"start": 490.13, "end": 490.41, "word": " in", "probability": 0.2156982421875}, {"start": 490.41, "end": 490.51, "word": " the", "probability": 0.5234375}, {"start": 490.51, "end": 490.63, "word": " real", "probability": 0.939453125}, {"start": 490.63, "end": 490.99, "word": " subject", "probability": 0.97119140625}, {"start": 490.99, "end": 491.17, "word": " is", "probability": 0.4521484375}, {"start": 491.17, "end": 491.49, "word": " present", "probability": 0.603515625}, {"start": 491.49, "end": 492.55, "word": " in", "probability": 0.92919921875}, {"start": 492.55, "end": 492.65, "word": " the", "probability": 0.69921875}, {"start": 492.65, "end": 492.73, "word": " do", "probability": 0.72998046875}, {"start": 492.73, "end": 493.19, "word": " operation", "probability": 0.9111328125}, {"start": 493.19, "end": 494.43, "word": " but", "probability": 0.1807861328125}, {"start": 494.43, "end": 494.69, "word": " here", "probability": 0.5908203125}, {"start": 494.69, "end": 494.83, "word": " of", "probability": 0.300048828125}, {"start": 494.83, "end": 494.91, "word": " course", "probability": 0.95361328125}, {"start": 494.91, "end": 495.09, "word": " there", "probability": 0.77392578125}, {"start": 495.09, "end": 495.15, "word": " is", "probability": 0.88818359375}, {"start": 495.15, "end": 495.23, "word": " a", "probability": 0.71142578125}, {"start": 495.23, "end": 495.45, "word": " code", "probability": 0.9296875}, {"start": 495.45, "end": 495.59, "word": " that", "probability": 0.74072265625}, {"start": 495.59, "end": 495.77, "word": " does", "probability": 0.51025390625}, {"start": 495.77, "end": 496.27, "word": " not", "probability": 0.23876953125}, {"start": 496.27, "end": 496.61, "word": " control", "probability": 0.77685546875}, {"start": 496.61, "end": 497.01, "word": " the", "probability": 0.59228515625}, {"start": 497.01, "end": 497.31, "word": " subject", "probability": 0.681640625}], "temperature": 1.0}, {"id": 20, "seek": 52801, "start": 499.77, "end": 528.01, "text": " In the end, this is the client that will deal with the real subject It will deal with the proxy in the same way because both of them are the same type of interface Because this explains today what diagram is left for you This is also regular talk that explains how the proxy works One of the most famous proxy applications in the case of web services", "tokens": [682, 264, 917, 11, 341, 307, 264, 6423, 300, 486, 2028, 365, 264, 957, 3983, 467, 486, 2028, 365, 264, 29690, 294, 264, 912, 636, 570, 1293, 295, 552, 366, 264, 912, 2010, 295, 9226, 1436, 341, 13948, 965, 437, 10686, 307, 1411, 337, 291, 639, 307, 611, 3890, 751, 300, 13948, 577, 264, 29690, 1985, 1485, 295, 264, 881, 4618, 29690, 5821, 294, 264, 1389, 295, 3670, 3328], "avg_logprob": -0.5352678690637861, "compression_ratio": 1.7121951219512195, "no_speech_prob": 0.0, "words": [{"start": 499.77, "end": 500.09, "word": " In", "probability": 0.1710205078125}, {"start": 500.09, "end": 500.29, "word": " the", "probability": 0.72021484375}, {"start": 500.29, "end": 500.47, "word": " end,", "probability": 0.89501953125}, {"start": 500.75, "end": 500.91, "word": " this", "probability": 0.6533203125}, {"start": 500.91, "end": 500.91, "word": " is", "probability": 0.5771484375}, {"start": 500.91, "end": 501.03, "word": " the", "probability": 0.8046875}, {"start": 501.03, "end": 501.45, "word": " client", "probability": 0.87646484375}, {"start": 501.45, "end": 502.25, "word": " that", "probability": 0.50634765625}, {"start": 502.25, "end": 502.41, "word": " will", "probability": 0.62451171875}, {"start": 502.41, "end": 502.71, "word": " deal", "probability": 0.400390625}, {"start": 502.71, "end": 502.93, "word": " with", "probability": 0.90185546875}, {"start": 502.93, "end": 503.05, "word": " the", "probability": 0.6982421875}, {"start": 503.05, "end": 503.19, "word": " real", "probability": 0.859375}, {"start": 503.19, "end": 503.67, "word": " subject", "probability": 0.833984375}, {"start": 503.67, "end": 504.43, "word": " It", "probability": 0.1279296875}, {"start": 504.43, "end": 504.55, "word": " will", "probability": 0.736328125}, {"start": 504.55, "end": 504.93, "word": " deal", "probability": 0.53076171875}, {"start": 504.93, "end": 505.11, "word": " with", "probability": 0.68115234375}, {"start": 505.11, "end": 505.11, "word": " the", "probability": 0.66650390625}, {"start": 505.11, "end": 505.11, "word": " proxy", "probability": 0.9423828125}, {"start": 505.11, "end": 505.11, "word": " in", "probability": 0.60009765625}, {"start": 505.11, "end": 505.33, "word": " the", "probability": 0.87255859375}, {"start": 505.33, "end": 505.33, "word": " same", "probability": 0.89892578125}, {"start": 505.33, "end": 505.79, "word": " way", "probability": 0.841796875}, {"start": 505.79, "end": 506.45, "word": " because", "probability": 0.487548828125}, {"start": 506.45, "end": 506.81, "word": " both", "probability": 0.62451171875}, {"start": 506.81, "end": 506.93, "word": " of", "probability": 0.299072265625}, {"start": 506.93, "end": 507.21, "word": " them", "probability": 0.8837890625}, {"start": 507.21, "end": 508.09, "word": " are", "probability": 0.52734375}, {"start": 508.09, "end": 508.09, "word": " the", "probability": 0.4873046875}, {"start": 508.09, "end": 508.09, "word": " same", "probability": 0.802734375}, {"start": 508.09, "end": 508.35, "word": " type", "probability": 0.484619140625}, {"start": 508.35, "end": 508.67, "word": " of", "probability": 0.89013671875}, {"start": 508.67, "end": 509.25, "word": " interface", "probability": 0.861328125}, {"start": 509.25, "end": 512.93, "word": " Because", "probability": 0.475830078125}, {"start": 512.93, "end": 513.15, "word": " this", "probability": 0.7958984375}, {"start": 513.15, "end": 513.39, "word": " explains", "probability": 0.2060546875}, {"start": 513.39, "end": 513.69, "word": " today", "probability": 0.272705078125}, {"start": 513.69, "end": 513.83, "word": " what", "probability": 0.379150390625}, {"start": 513.83, "end": 514.27, "word": " diagram", "probability": 0.391357421875}, {"start": 514.27, "end": 514.79, "word": " is", "probability": 0.591796875}, {"start": 514.79, "end": 515.05, "word": " left", "probability": 0.64501953125}, {"start": 515.05, "end": 515.21, "word": " for", "probability": 0.68115234375}, {"start": 515.21, "end": 515.53, "word": " you", "probability": 0.93408203125}, {"start": 515.53, "end": 516.41, "word": " This", "probability": 0.6279296875}, {"start": 516.41, "end": 516.85, "word": " is", "probability": 0.79638671875}, {"start": 516.85, "end": 516.85, "word": " also", "probability": 0.65087890625}, {"start": 516.85, "end": 517.93, "word": " regular", "probability": 0.0625}, {"start": 517.93, "end": 517.93, "word": " talk", "probability": 0.53955078125}, {"start": 517.93, "end": 518.13, "word": " that", "probability": 0.320068359375}, {"start": 518.13, "end": 518.33, "word": " explains", "probability": 0.80224609375}, {"start": 518.33, "end": 518.57, "word": " how", "probability": 0.8798828125}, {"start": 518.57, "end": 519.27, "word": " the", "probability": 0.371826171875}, {"start": 519.27, "end": 519.91, "word": " proxy", "probability": 0.7158203125}, {"start": 519.91, "end": 520.59, "word": " works", "probability": 0.7548828125}, {"start": 520.59, "end": 522.03, "word": " One", "probability": 0.31591796875}, {"start": 522.03, "end": 522.63, "word": " of", "probability": 0.91357421875}, {"start": 522.63, "end": 522.63, "word": " the", "probability": 0.830078125}, {"start": 522.63, "end": 523.59, "word": " most", "probability": 0.191650390625}, {"start": 523.59, "end": 524.71, "word": " famous", "probability": 0.69580078125}, {"start": 524.71, "end": 524.71, "word": " proxy", "probability": 0.92138671875}, {"start": 524.71, "end": 524.71, "word": " applications", "probability": 0.7373046875}, {"start": 524.71, "end": 525.07, "word": " in", "probability": 0.36328125}, {"start": 525.07, "end": 526.93, "word": " the", "probability": 0.72119140625}, {"start": 526.93, "end": 527.07, "word": " case", "probability": 0.53466796875}, {"start": 527.07, "end": 527.33, "word": " of", "probability": 0.9697265625}, {"start": 527.33, "end": 527.51, "word": " web", "probability": 0.79296875}, {"start": 527.51, "end": 528.01, "word": " services", "probability": 0.91748046875}], "temperature": 1.0}, {"id": 21, "seek": 55207, "start": 528.83, "end": 552.07, "text": " Or a specific case that we call Remote Method Invocation What is the word Remote? Remote. Method. Remote method. Invocation. Invocation. Remote method. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Invocation. Inv", "tokens": [1610, 257, 2685, 1389, 300, 321, 818, 44858, 25285, 682, 20836, 399, 708, 307, 264, 1349, 44858, 30, 44858, 13, 25285, 13, 44858, 3170, 13, 31124, 27943, 13, 31124, 27943, 13, 44858, 3170, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124, 27943, 13, 31124], "avg_logprob": -0.13868055131700305, "compression_ratio": 8.76923076923077, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 528.83, "end": 529.19, "word": " Or", "probability": 0.49169921875}, {"start": 529.19, "end": 529.79, "word": " a", "probability": 0.360595703125}, {"start": 529.79, "end": 530.23, "word": " specific", "probability": 0.36181640625}, {"start": 530.23, "end": 530.29, "word": " case", "probability": 0.487548828125}, {"start": 530.29, "end": 530.41, "word": " that", "probability": 0.3505859375}, {"start": 530.41, "end": 530.53, "word": " we", "probability": 0.8916015625}, {"start": 530.53, "end": 530.75, "word": " call", "probability": 0.81982421875}, {"start": 530.75, "end": 531.49, "word": " Remote", "probability": 0.603515625}, {"start": 531.49, "end": 531.97, "word": " Method", "probability": 0.438720703125}, {"start": 531.97, "end": 532.69, "word": " Invocation", "probability": 0.85107421875}, {"start": 532.69, "end": 533.65, "word": " What", "probability": 0.55615234375}, {"start": 533.65, "end": 533.79, "word": " is", "probability": 0.6669921875}, {"start": 533.79, "end": 533.87, "word": " the", "probability": 0.44384765625}, {"start": 533.87, "end": 534.07, "word": " word", "probability": 0.68798828125}, {"start": 534.07, "end": 534.57, "word": " Remote?", "probability": 0.40966796875}, {"start": 534.73, "end": 535.43, "word": " Remote.", "probability": 0.35205078125}, {"start": 535.55, "end": 536.03, "word": " Method.", "probability": 0.473876953125}, {"start": 536.97, "end": 536.99, "word": " Remote", "probability": 0.65283203125}, {"start": 536.99, "end": 537.31, "word": " method.", "probability": 0.61328125}, {"start": 537.51, "end": 538.23, "word": " Invocation.", "probability": 0.752197265625}, {"start": 539.35, "end": 539.77, "word": " Invocation.", "probability": 0.5933837890625}, {"start": 539.89, "end": 539.89, "word": " Remote", "probability": 0.97216796875}, {"start": 539.89, "end": 540.25, "word": " method.", "probability": 0.89013671875}, {"start": 548.95, "end": 549.67, "word": " Invocation.", "probability": 0.662109375}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.837890625}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.86865234375}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.884521484375}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.90380859375}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.916259765625}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.9248046875}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.931396484375}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.937255859375}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.9404296875}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.943115234375}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.9443359375}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.9453125}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.945556640625}, {"start": 549.67, "end": 549.67, "word": " Invocation.", "probability": 0.94482421875}, {"start": 549.83, "end": 549.85, "word": " Invocation.", "probability": 0.944580078125}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.944580078125}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.943603515625}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.943603515625}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.94287109375}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.94140625}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.9404296875}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.939208984375}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.937744140625}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.9365234375}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.934326171875}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.93310546875}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.93212890625}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.93017578125}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.928955078125}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.927734375}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.927978515625}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.92822265625}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.928955078125}, {"start": 549.85, "end": 549.85, "word": " Invocation.", "probability": 0.9296875}, {"start": 549.85, "end": 549.95, "word": " Invocation.", "probability": 0.93017578125}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.9306640625}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.93115234375}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.93310546875}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.933349609375}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.934814453125}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.93701171875}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.93701171875}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.937744140625}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.938232421875}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.93896484375}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.939697265625}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.940185546875}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.940673828125}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.940185546875}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.94091796875}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.94140625}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.940673828125}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.94287109375}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.94287109375}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.94287109375}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.943603515625}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.94287109375}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.943115234375}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.94287109375}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.941650390625}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.9423828125}, {"start": 549.95, "end": 549.95, "word": " Invocation.", "probability": 0.939208984375}, {"start": 551.35, "end": 552.07, "word": " Inv", "probability": 0.896484375}], "temperature": 1.0}, {"id": 22, "seek": 58026, "start": 557.36, "end": 580.26, "text": " But let's give an introduction and explain what web services are Now it is known that applications are distributed on devices For example, a company or an institution wants to make an application for it It first makes a website and then makes a mobile application", "tokens": [583, 718, 311, 976, 364, 9339, 293, 2903, 437, 3670, 3328, 366, 823, 309, 307, 2570, 300, 5821, 366, 12631, 322, 5759, 1171, 1365, 11, 257, 2237, 420, 364, 7818, 2738, 281, 652, 364, 3861, 337, 309, 467, 700, 1669, 257, 3670, 30417, 293, 550, 1669, 257, 6013, 3861], "avg_logprob": -0.593125023841858, "compression_ratio": 1.5529411764705883, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 557.36, "end": 557.58, "word": " But", "probability": 0.389892578125}, {"start": 557.58, "end": 558.52, "word": " let's", "probability": 0.621337890625}, {"start": 558.52, "end": 558.66, "word": " give", "probability": 0.2646484375}, {"start": 558.66, "end": 558.82, "word": " an", "probability": 0.40478515625}, {"start": 558.82, "end": 559.06, "word": " introduction", "probability": 0.92431640625}, {"start": 559.06, "end": 559.7, "word": " and", "probability": 0.2156982421875}, {"start": 559.7, "end": 560.08, "word": " explain", "probability": 0.80224609375}, {"start": 560.08, "end": 560.72, "word": " what", "probability": 0.456787109375}, {"start": 560.72, "end": 561.82, "word": " web", "probability": 0.304443359375}, {"start": 561.82, "end": 562.26, "word": " services", "probability": 0.91650390625}, {"start": 562.26, "end": 562.36, "word": " are", "probability": 0.74658203125}, {"start": 562.36, "end": 563.14, "word": " Now", "probability": 0.11566162109375}, {"start": 563.14, "end": 563.3, "word": " it", "probability": 0.418212890625}, {"start": 563.3, "end": 564.24, "word": " is", "probability": 0.63134765625}, {"start": 564.24, "end": 564.48, "word": " known", "probability": 0.490478515625}, {"start": 564.48, "end": 564.82, "word": " that", "probability": 0.91552734375}, {"start": 564.82, "end": 565.24, "word": " applications", "probability": 0.262939453125}, {"start": 565.24, "end": 565.94, "word": " are", "probability": 0.7236328125}, {"start": 565.94, "end": 566.6, "word": " distributed", "probability": 0.69580078125}, {"start": 566.6, "end": 568.72, "word": " on", "probability": 0.41650390625}, {"start": 568.72, "end": 569.36, "word": " devices", "probability": 0.74658203125}, {"start": 569.36, "end": 570.72, "word": " For", "probability": 0.494384765625}, {"start": 570.72, "end": 571.28, "word": " example,", "probability": 0.904296875}, {"start": 571.62, "end": 571.76, "word": " a", "probability": 0.6650390625}, {"start": 571.76, "end": 572.0, "word": " company", "probability": 0.84423828125}, {"start": 572.0, "end": 572.1, "word": " or", "probability": 0.75244140625}, {"start": 572.1, "end": 572.22, "word": " an", "probability": 0.373046875}, {"start": 572.22, "end": 572.5, "word": " institution", "probability": 0.48681640625}, {"start": 572.5, "end": 572.78, "word": " wants", "probability": 0.2578125}, {"start": 572.78, "end": 572.86, "word": " to", "probability": 0.96875}, {"start": 572.86, "end": 573.14, "word": " make", "probability": 0.343505859375}, {"start": 573.14, "end": 574.18, "word": " an", "probability": 0.7958984375}, {"start": 574.18, "end": 574.5, "word": " application", "probability": 0.8974609375}, {"start": 574.5, "end": 574.66, "word": " for", "probability": 0.697265625}, {"start": 574.66, "end": 574.82, "word": " it", "probability": 0.60107421875}, {"start": 574.82, "end": 576.08, "word": " It", "probability": 0.2196044921875}, {"start": 576.08, "end": 576.84, "word": " first", "probability": 0.409912109375}, {"start": 576.84, "end": 577.06, "word": " makes", "probability": 0.392333984375}, {"start": 577.06, "end": 577.16, "word": " a", "probability": 0.8623046875}, {"start": 577.16, "end": 577.62, "word": " website", "probability": 0.591796875}, {"start": 577.62, "end": 578.72, "word": " and", "probability": 0.55224609375}, {"start": 578.72, "end": 579.02, "word": " then", "probability": 0.794921875}, {"start": 579.02, "end": 579.46, "word": " makes", "probability": 0.4140625}, {"start": 579.46, "end": 579.64, "word": " a", "probability": 0.9091796875}, {"start": 579.64, "end": 580.26, "word": " mobile", "probability": 0.94921875}, {"start": 580.26, "end": 580.26, "word": " application", "probability": 0.85888671875}], "temperature": 1.0}, {"id": 23, "seek": 60126, "start": 581.3, "end": 601.26, "text": " And the principle is that the mobile application and the website share the same data I mean, I want to make a marketing program whether you browse through the mobile application or through the website Of course, the same data will be available So actually, I have a website Of course, the website is based on a database", "tokens": [400, 264, 8665, 307, 300, 264, 6013, 3861, 293, 264, 3670, 30417, 2073, 264, 912, 1412, 286, 914, 11, 286, 528, 281, 652, 257, 6370, 1461, 1968, 291, 31442, 807, 264, 6013, 3861, 420, 807, 264, 3144, 2720, 1164, 11, 264, 912, 1412, 486, 312, 2435, 407, 767, 11, 286, 362, 257, 3144, 2720, 1164, 11, 264, 3144, 307, 2361, 322, 257, 8149], "avg_logprob": -0.5439452910795808, "compression_ratio": 1.807909604519774, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 581.3, "end": 581.86, "word": " And", "probability": 0.0648193359375}, {"start": 581.86, "end": 581.98, "word": " the", "probability": 0.5927734375}, {"start": 581.98, "end": 582.18, "word": " principle", "probability": 0.156982421875}, {"start": 582.18, "end": 582.46, "word": " is", "probability": 0.80859375}, {"start": 582.46, "end": 582.78, "word": " that", "probability": 0.82373046875}, {"start": 582.78, "end": 582.86, "word": " the", "probability": 0.57958984375}, {"start": 582.86, "end": 583.44, "word": " mobile", "probability": 0.720703125}, {"start": 583.44, "end": 583.58, "word": " application", "probability": 0.446044921875}, {"start": 583.58, "end": 583.74, "word": " and", "probability": 0.86767578125}, {"start": 583.74, "end": 583.74, "word": " the", "probability": 0.6474609375}, {"start": 583.74, "end": 583.98, "word": " website", "probability": 0.509765625}, {"start": 583.98, "end": 584.56, "word": " share", "probability": 0.475341796875}, {"start": 584.56, "end": 584.9, "word": " the", "probability": 0.8701171875}, {"start": 584.9, "end": 585.08, "word": " same", "probability": 0.876953125}, {"start": 585.08, "end": 585.48, "word": " data", "probability": 0.89404296875}, {"start": 585.48, "end": 586.32, "word": " I", "probability": 0.26611328125}, {"start": 586.32, "end": 586.38, "word": " mean,", "probability": 0.67041015625}, {"start": 586.64, "end": 586.82, "word": " I", "probability": 0.41259765625}, {"start": 586.82, "end": 587.02, "word": " want", "probability": 0.347412109375}, {"start": 587.02, "end": 587.02, "word": " to", "probability": 0.8798828125}, {"start": 587.02, "end": 587.18, "word": " make", "probability": 0.58154296875}, {"start": 587.18, "end": 587.68, "word": " a", "probability": 0.70166015625}, {"start": 587.68, "end": 588.08, "word": " marketing", "probability": 0.396240234375}, {"start": 588.08, "end": 588.12, "word": " program", "probability": 0.72265625}, {"start": 588.12, "end": 589.1, "word": " whether", "probability": 0.37451171875}, {"start": 589.1, "end": 589.4, "word": " you", "probability": 0.5126953125}, {"start": 589.4, "end": 589.7, "word": " browse", "probability": 0.29150390625}, {"start": 589.7, "end": 590.02, "word": " through", "probability": 0.30419921875}, {"start": 590.02, "end": 590.5, "word": " the", "probability": 0.79248046875}, {"start": 590.5, "end": 591.04, "word": " mobile", "probability": 0.9345703125}, {"start": 591.04, "end": 591.04, "word": " application", "probability": 0.86376953125}, {"start": 591.04, "end": 591.52, "word": " or", "probability": 0.927734375}, {"start": 591.52, "end": 591.86, "word": " through", "probability": 0.5244140625}, {"start": 591.86, "end": 592.1, "word": " the", "probability": 0.904296875}, {"start": 592.1, "end": 592.34, "word": " website", "probability": 0.74560546875}, {"start": 592.34, "end": 593.2, "word": " Of", "probability": 0.1383056640625}, {"start": 593.2, "end": 593.38, "word": " course,", "probability": 0.9619140625}, {"start": 593.48, "end": 593.52, "word": " the", "probability": 0.76123046875}, {"start": 593.52, "end": 593.62, "word": " same", "probability": 0.86328125}, {"start": 593.62, "end": 594.08, "word": " data", "probability": 0.9189453125}, {"start": 594.08, "end": 594.62, "word": " will", "probability": 0.329345703125}, {"start": 594.62, "end": 594.76, "word": " be", "probability": 0.74365234375}, {"start": 594.76, "end": 595.14, "word": " available", "probability": 0.46728515625}, {"start": 595.14, "end": 595.74, "word": " So", "probability": 0.5888671875}, {"start": 595.74, "end": 596.04, "word": " actually,", "probability": 0.4091796875}, {"start": 596.52, "end": 596.62, "word": " I", "probability": 0.88818359375}, {"start": 596.62, "end": 596.78, "word": " have", "probability": 0.90185546875}, {"start": 596.78, "end": 597.02, "word": " a", "probability": 0.935546875}, {"start": 597.02, "end": 597.38, "word": " website", "probability": 0.75830078125}, {"start": 597.38, "end": 597.52, "word": " Of", "probability": 0.1375732421875}, {"start": 597.52, "end": 598.86, "word": " course,", "probability": 0.970703125}, {"start": 598.96, "end": 599.24, "word": " the", "probability": 0.8037109375}, {"start": 599.24, "end": 599.24, "word": " website", "probability": 0.76708984375}, {"start": 599.24, "end": 599.48, "word": " is", "probability": 0.91552734375}, {"start": 599.48, "end": 599.66, "word": " based", "probability": 0.6015625}, {"start": 599.66, "end": 599.94, "word": " on", "probability": 0.94580078125}, {"start": 599.94, "end": 600.74, "word": " a", "probability": 0.6728515625}, {"start": 600.74, "end": 601.26, "word": " database", "probability": 0.8916015625}], "temperature": 1.0}, {"id": 24, "seek": 61766, "start": 602.35, "end": 617.67, "text": " Okay? And I read from it and I show it for example in the pages that I have on the website. Now, I also want to make a mobile application. Let's call this mobile device. Of course, the mobile device must make a connection to", "tokens": [1033, 30, 400, 286, 1401, 490, 309, 293, 286, 855, 309, 337, 1365, 294, 264, 7183, 300, 286, 362, 322, 264, 3144, 13, 823, 11, 286, 611, 528, 281, 652, 257, 6013, 3861, 13, 961, 311, 818, 341, 6013, 4302, 13, 2720, 1164, 11, 264, 6013, 4302, 1633, 652, 257, 4984, 281], "avg_logprob": -0.5501179470206207, "compression_ratio": 1.4423076923076923, "no_speech_prob": 4.2557716369628906e-05, "words": [{"start": 602.35, "end": 602.75, "word": " Okay?", "probability": 0.0723876953125}, {"start": 603.47, "end": 603.87, "word": " And", "probability": 0.4990234375}, {"start": 603.87, "end": 603.99, "word": " I", "probability": 0.74267578125}, {"start": 603.99, "end": 604.17, "word": " read", "probability": 0.86328125}, {"start": 604.17, "end": 604.33, "word": " from", "probability": 0.63134765625}, {"start": 604.33, "end": 604.49, "word": " it", "probability": 0.55322265625}, {"start": 604.49, "end": 604.67, "word": " and", "probability": 0.73486328125}, {"start": 604.67, "end": 604.75, "word": " I", "probability": 0.28662109375}, {"start": 604.75, "end": 605.09, "word": " show", "probability": 0.37548828125}, {"start": 605.09, "end": 605.19, "word": " it", "probability": 0.66748046875}, {"start": 605.19, "end": 605.25, "word": " for", "probability": 0.351806640625}, {"start": 605.25, "end": 605.45, "word": " example", "probability": 0.9248046875}, {"start": 605.45, "end": 605.59, "word": " in", "probability": 0.4833984375}, {"start": 605.59, "end": 605.69, "word": " the", "probability": 0.62890625}, {"start": 605.69, "end": 606.01, "word": " pages", "probability": 0.66650390625}, {"start": 606.01, "end": 606.17, "word": " that", "probability": 0.31494140625}, {"start": 606.17, "end": 606.27, "word": " I", "probability": 0.63525390625}, {"start": 606.27, "end": 606.79, "word": " have", "probability": 0.8994140625}, {"start": 606.79, "end": 607.07, "word": " on", "probability": 0.6875}, {"start": 607.07, "end": 607.43, "word": " the", "probability": 0.580078125}, {"start": 607.43, "end": 607.69, "word": " website.", "probability": 0.76171875}, {"start": 608.13, "end": 608.43, "word": " Now,", "probability": 0.8046875}, {"start": 608.63, "end": 609.33, "word": " I", "probability": 0.56884765625}, {"start": 609.33, "end": 609.33, "word": " also", "probability": 0.25390625}, {"start": 609.33, "end": 609.49, "word": " want", "probability": 0.263427734375}, {"start": 609.49, "end": 609.53, "word": " to", "probability": 0.96630859375}, {"start": 609.53, "end": 609.67, "word": " make", "probability": 0.5751953125}, {"start": 609.67, "end": 609.99, "word": " a", "probability": 0.82177734375}, {"start": 609.99, "end": 610.23, "word": " mobile", "probability": 0.953125}, {"start": 610.23, "end": 610.83, "word": " application.", "probability": 0.92724609375}, {"start": 611.85, "end": 612.25, "word": " Let's", "probability": 0.6846923828125}, {"start": 612.25, "end": 612.45, "word": " call", "probability": 0.75732421875}, {"start": 612.45, "end": 612.49, "word": " this", "probability": 0.70068359375}, {"start": 612.49, "end": 612.81, "word": " mobile", "probability": 0.560546875}, {"start": 612.81, "end": 613.41, "word": " device.", "probability": 0.962890625}, {"start": 615.53, "end": 615.69, "word": " Of", "probability": 0.576171875}, {"start": 615.69, "end": 615.81, "word": " course,", "probability": 0.96484375}, {"start": 615.91, "end": 615.95, "word": " the", "probability": 0.6455078125}, {"start": 615.95, "end": 616.17, "word": " mobile", "probability": 0.96435546875}, {"start": 616.17, "end": 616.57, "word": " device", "probability": 0.93212890625}, {"start": 616.57, "end": 616.73, "word": " must", "probability": 0.291748046875}, {"start": 616.73, "end": 616.87, "word": " make", "probability": 0.57470703125}, {"start": 616.87, "end": 616.99, "word": " a", "probability": 0.8046875}, {"start": 616.99, "end": 617.41, "word": " connection", "probability": 0.87744140625}, {"start": 617.41, "end": 617.67, "word": " to", "probability": 0.74267578125}], "temperature": 1.0}, {"id": 25, "seek": 64762, "start": 618.64, "end": 647.62, "text": "on the server. Now, how do devices communicate with each other? Now, there are different ways. There are ways using sockets. You make a socket that connects to a certain port and sends a message and receives a response from the server. But today, all communication between devices and applications is mostly done on the HTTP protocol.", "tokens": [266, 264, 7154, 13, 823, 11, 577, 360, 5759, 7890, 365, 1184, 661, 30, 823, 11, 456, 366, 819, 2098, 13, 821, 366, 2098, 1228, 370, 11984, 13, 509, 652, 257, 19741, 300, 16967, 281, 257, 1629, 2436, 293, 14790, 257, 3636, 293, 20717, 257, 4134, 490, 264, 7154, 13, 583, 965, 11, 439, 6101, 1296, 5759, 293, 5821, 307, 5240, 1096, 322, 264, 33283, 10336, 13], "avg_logprob": -0.47518381607883114, "compression_ratio": 1.5754716981132075, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 618.64, "end": 618.9, "word": "on", "probability": 0.362060546875}, {"start": 618.9, "end": 619.04, "word": " the", "probability": 0.8173828125}, {"start": 619.04, "end": 619.34, "word": " server.", "probability": 0.89306640625}, {"start": 619.92, "end": 620.22, "word": " Now,", "probability": 0.459228515625}, {"start": 620.24, "end": 620.5, "word": " how", "probability": 0.271484375}, {"start": 620.5, "end": 621.36, "word": " do", "probability": 0.5478515625}, {"start": 621.36, "end": 621.66, "word": " devices", "probability": 0.5888671875}, {"start": 621.66, "end": 622.26, "word": " communicate", "probability": 0.61328125}, {"start": 622.26, "end": 622.44, "word": " with", "probability": 0.78369140625}, {"start": 622.44, "end": 622.68, "word": " each", "probability": 0.8916015625}, {"start": 622.68, "end": 622.76, "word": " other?", "probability": 0.89501953125}, {"start": 624.02, "end": 624.58, "word": " Now,", "probability": 0.349853515625}, {"start": 625.92, "end": 626.12, "word": " there", "probability": 0.68994140625}, {"start": 626.12, "end": 626.28, "word": " are", "probability": 0.8974609375}, {"start": 626.28, "end": 627.06, "word": " different", "probability": 0.7373046875}, {"start": 627.06, "end": 627.18, "word": " ways.", "probability": 0.64306640625}, {"start": 627.4, "end": 627.58, "word": " There", "probability": 0.3623046875}, {"start": 627.58, "end": 627.68, "word": " are", "probability": 0.85986328125}, {"start": 627.68, "end": 627.88, "word": " ways", "probability": 0.6865234375}, {"start": 627.88, "end": 628.42, "word": " using", "probability": 0.2744140625}, {"start": 628.42, "end": 629.06, "word": " sockets.", "probability": 0.750244140625}, {"start": 629.26, "end": 629.5, "word": " You", "probability": 0.64111328125}, {"start": 629.5, "end": 629.84, "word": " make", "probability": 0.5546875}, {"start": 629.84, "end": 630.0, "word": " a", "probability": 0.974609375}, {"start": 630.0, "end": 630.3, "word": " socket", "probability": 0.85009765625}, {"start": 630.3, "end": 630.96, "word": " that", "probability": 0.48193359375}, {"start": 630.96, "end": 631.2, "word": " connects", "probability": 0.48779296875}, {"start": 631.2, "end": 631.38, "word": " to", "probability": 0.93212890625}, {"start": 631.38, "end": 631.5, "word": " a", "probability": 0.974609375}, {"start": 631.5, "end": 632.0, "word": " certain", "probability": 0.3642578125}, {"start": 632.0, "end": 632.0, "word": " port", "probability": 0.83984375}, {"start": 632.0, "end": 632.28, "word": " and", "probability": 0.422119140625}, {"start": 632.28, "end": 632.44, "word": " sends", "probability": 0.57666015625}, {"start": 632.44, "end": 632.9, "word": " a", "probability": 0.330810546875}, {"start": 632.9, "end": 632.9, "word": " message", "probability": 0.9033203125}, {"start": 632.9, "end": 633.14, "word": " and", "probability": 0.44140625}, {"start": 633.14, "end": 633.62, "word": " receives", "probability": 0.62255859375}, {"start": 633.62, "end": 633.78, "word": " a", "probability": 0.86865234375}, {"start": 633.78, "end": 633.88, "word": " response", "probability": 0.71728515625}, {"start": 633.88, "end": 634.12, "word": " from", "probability": 0.865234375}, {"start": 634.12, "end": 634.7, "word": " the", "probability": 0.912109375}, {"start": 634.7, "end": 634.98, "word": " server.", "probability": 0.92626953125}, {"start": 635.72, "end": 635.92, "word": " But", "probability": 0.76025390625}, {"start": 635.92, "end": 637.04, "word": " today,", "probability": 0.154052734375}, {"start": 638.86, "end": 639.04, "word": " all", "probability": 0.6806640625}, {"start": 639.04, "end": 640.02, "word": " communication", "probability": 0.7529296875}, {"start": 640.02, "end": 641.32, "word": " between", "probability": 0.80810546875}, {"start": 641.32, "end": 641.88, "word": " devices", "probability": 0.67431640625}, {"start": 641.88, "end": 642.0, "word": " and", "probability": 0.75244140625}, {"start": 642.0, "end": 642.78, "word": " applications", "probability": 0.8603515625}, {"start": 642.78, "end": 644.28, "word": " is", "probability": 0.39013671875}, {"start": 644.28, "end": 644.94, "word": " mostly", "probability": 0.292236328125}, {"start": 644.94, "end": 645.1, "word": " done", "probability": 0.50341796875}, {"start": 645.1, "end": 645.78, "word": " on", "probability": 0.439453125}, {"start": 645.78, "end": 646.16, "word": " the", "probability": 0.72216796875}, {"start": 646.16, "end": 646.56, "word": " HTTP", "probability": 0.89208984375}, {"start": 646.56, "end": 647.62, "word": " protocol.", "probability": 0.8974609375}], "temperature": 1.0}, {"id": 26, "seek": 66710, "start": 651.9, "end": 667.1, "text": "Through the internet network, through the HTTP protocol, which is the same protocol that you use when browsing the internet, when you type url and press enter, this request goes to the server, brings you the content of the page and returns it to you.", "tokens": [47256, 581, 264, 4705, 3209, 11, 807, 264, 33283, 10336, 11, 597, 307, 264, 912, 10336, 300, 291, 764, 562, 38602, 264, 4705, 11, 562, 291, 2010, 4038, 75, 293, 1886, 3242, 11, 341, 5308, 1709, 281, 264, 7154, 11, 5607, 291, 264, 2701, 295, 264, 3028, 293, 11247, 309, 281, 291, 13], "avg_logprob": -0.5286458432674408, "compression_ratio": 1.5822784810126582, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 651.9000000000001, "end": 652.3000000000001, "word": "Through", "probability": 0.502105712890625}, {"start": 652.3000000000001, "end": 652.7, "word": " the", "probability": 0.5205078125}, {"start": 652.7, "end": 652.88, "word": " internet", "probability": 0.587890625}, {"start": 652.88, "end": 653.2, "word": " network,", "probability": 0.364013671875}, {"start": 653.8, "end": 654.48, "word": " through", "probability": 0.5126953125}, {"start": 654.48, "end": 654.74, "word": " the", "probability": 0.74951171875}, {"start": 654.74, "end": 656.2, "word": " HTTP", "probability": 0.365234375}, {"start": 656.2, "end": 656.48, "word": " protocol,", "probability": 0.8798828125}, {"start": 656.56, "end": 656.66, "word": " which", "probability": 0.65576171875}, {"start": 656.66, "end": 656.84, "word": " is", "probability": 0.818359375}, {"start": 656.84, "end": 657.6, "word": " the", "probability": 0.62255859375}, {"start": 657.6, "end": 657.76, "word": " same", "probability": 0.8642578125}, {"start": 657.76, "end": 658.36, "word": " protocol", "probability": 0.75341796875}, {"start": 658.36, "end": 658.56, "word": " that", "probability": 0.37109375}, {"start": 658.56, "end": 658.82, "word": " you", "probability": 0.81640625}, {"start": 658.82, "end": 659.88, "word": " use", "probability": 0.796875}, {"start": 659.88, "end": 660.06, "word": " when", "probability": 0.479248046875}, {"start": 660.06, "end": 660.38, "word": " browsing", "probability": 0.68994140625}, {"start": 660.38, "end": 660.54, "word": " the", "probability": 0.69580078125}, {"start": 660.54, "end": 660.94, "word": " internet,", "probability": 0.79541015625}, {"start": 661.42, "end": 661.58, "word": " when", "probability": 0.342529296875}, {"start": 661.58, "end": 661.94, "word": " you", "probability": 0.9521484375}, {"start": 661.94, "end": 662.08, "word": " type", "probability": 0.67724609375}, {"start": 662.08, "end": 662.54, "word": " url", "probability": 0.60858154296875}, {"start": 662.54, "end": 662.62, "word": " and", "probability": 0.83837890625}, {"start": 662.62, "end": 662.84, "word": " press", "probability": 0.55712890625}, {"start": 662.84, "end": 663.2, "word": " enter,", "probability": 0.7890625}, {"start": 663.26, "end": 663.4, "word": " this", "probability": 0.5517578125}, {"start": 663.4, "end": 663.78, "word": " request", "probability": 0.95458984375}, {"start": 663.78, "end": 663.96, "word": " goes", "probability": 0.6279296875}, {"start": 663.96, "end": 664.12, "word": " to", "probability": 0.875}, {"start": 664.12, "end": 664.22, "word": " the", "probability": 0.8525390625}, {"start": 664.22, "end": 664.6, "word": " server,", "probability": 0.90283203125}, {"start": 665.2, "end": 665.34, "word": " brings", "probability": 0.341796875}, {"start": 665.34, "end": 665.56, "word": " you", "probability": 0.7255859375}, {"start": 665.56, "end": 665.64, "word": " the", "probability": 0.74365234375}, {"start": 665.64, "end": 665.84, "word": " content", "probability": 0.37451171875}, {"start": 665.84, "end": 666.12, "word": " of", "probability": 0.84033203125}, {"start": 666.12, "end": 666.16, "word": " the", "probability": 0.89794921875}, {"start": 666.16, "end": 666.34, "word": " page", "probability": 0.8564453125}, {"start": 666.34, "end": 666.5, "word": " and", "probability": 0.73828125}, {"start": 666.5, "end": 666.74, "word": " returns", "probability": 0.5439453125}, {"start": 666.74, "end": 666.94, "word": " it", "probability": 0.7763671875}, {"start": 666.94, "end": 667.02, "word": " to", "probability": 0.62255859375}, {"start": 667.02, "end": 667.1, "word": " you.", "probability": 0.958984375}], "temperature": 1.0}, {"id": 27, "seek": 69376, "start": 667.96, "end": 693.76, "text": " This is done through port 80 or 8080. What is the advantage of communication through HTTP protocol? Communication is secure because the port on the internet is always open. Now companies and institutions, because of security issues, close all other ports and leave only the port of the internet and more than one other port. They are the only ones that are open and the connection is working on them.", "tokens": [639, 307, 1096, 807, 2436, 4688, 420, 4688, 4702, 13, 708, 307, 264, 5002, 295, 6101, 807, 33283, 10336, 30, 34930, 307, 7144, 570, 264, 2436, 322, 264, 4705, 307, 1009, 1269, 13, 823, 3431, 293, 8142, 11, 570, 295, 3825, 2663, 11, 1998, 439, 661, 18160, 293, 1856, 787, 264, 2436, 295, 264, 4705, 293, 544, 813, 472, 661, 2436, 13, 814, 366, 264, 787, 2306, 300, 366, 1269, 293, 264, 4984, 307, 1364, 322, 552, 13], "avg_logprob": -0.5708069620253164, "compression_ratio": 1.7136752136752136, "no_speech_prob": 2.3245811462402344e-06, "words": [{"start": 667.96, "end": 668.6, "word": " This", "probability": 0.283447265625}, {"start": 668.6, "end": 668.74, "word": " is", "probability": 0.468017578125}, {"start": 668.74, "end": 668.94, "word": " done", "probability": 0.68505859375}, {"start": 668.94, "end": 669.26, "word": " through", "probability": 0.60791015625}, {"start": 669.26, "end": 669.7, "word": " port", "probability": 0.419189453125}, {"start": 669.7, "end": 670.12, "word": " 80", "probability": 0.95458984375}, {"start": 670.12, "end": 670.94, "word": " or", "probability": 0.306884765625}, {"start": 670.94, "end": 671.72, "word": " 8080.", "probability": 0.890869140625}, {"start": 672.76, "end": 673.4, "word": " What", "probability": 0.54736328125}, {"start": 673.4, "end": 673.54, "word": " is", "probability": 0.66357421875}, {"start": 673.54, "end": 673.54, "word": " the", "probability": 0.7529296875}, {"start": 673.54, "end": 673.64, "word": " advantage", "probability": 0.66748046875}, {"start": 673.64, "end": 673.8, "word": " of", "probability": 0.9462890625}, {"start": 673.8, "end": 674.12, "word": " communication", "probability": 0.177490234375}, {"start": 674.12, "end": 674.46, "word": " through", "probability": 0.71044921875}, {"start": 674.46, "end": 674.8, "word": " HTTP", "probability": 0.56103515625}, {"start": 674.8, "end": 675.44, "word": " protocol?", "probability": 0.7578125}, {"start": 676.1, "end": 676.5, "word": " Communication", "probability": 0.31396484375}, {"start": 676.5, "end": 676.7, "word": " is", "probability": 0.92041015625}, {"start": 676.7, "end": 676.88, "word": " secure", "probability": 0.74169921875}, {"start": 676.88, "end": 677.22, "word": " because", "probability": 0.7265625}, {"start": 677.22, "end": 677.56, "word": " the", "probability": 0.63671875}, {"start": 677.56, "end": 677.78, "word": " port", "probability": 0.178955078125}, {"start": 677.78, "end": 677.92, "word": " on", "probability": 0.5927734375}, {"start": 677.92, "end": 678.0, "word": " the", "probability": 0.80712890625}, {"start": 678.0, "end": 678.34, "word": " internet", "probability": 0.7216796875}, {"start": 678.34, "end": 678.72, "word": " is", "probability": 0.845703125}, {"start": 678.72, "end": 678.72, "word": " always", "probability": 0.88330078125}, {"start": 678.72, "end": 679.4, "word": " open.", "probability": 0.8623046875}, {"start": 680.72, "end": 681.02, "word": " Now", "probability": 0.315185546875}, {"start": 681.02, "end": 681.52, "word": " companies", "probability": 0.486328125}, {"start": 681.52, "end": 681.6, "word": " and", "probability": 0.69287109375}, {"start": 681.6, "end": 681.92, "word": " institutions,", "probability": 0.5615234375}, {"start": 682.06, "end": 682.16, "word": " because", "probability": 0.390869140625}, {"start": 682.16, "end": 682.18, "word": " of", "probability": 0.90380859375}, {"start": 682.18, "end": 682.64, "word": " security", "probability": 0.64404296875}, {"start": 682.64, "end": 682.84, "word": " issues,", "probability": 0.51025390625}, {"start": 683.04, "end": 683.36, "word": " close", "probability": 0.61279296875}, {"start": 683.36, "end": 683.86, "word": " all", "probability": 0.85107421875}, {"start": 683.86, "end": 683.96, "word": " other", "probability": 0.65625}, {"start": 683.96, "end": 684.28, "word": " ports", "probability": 0.87158203125}, {"start": 684.28, "end": 685.38, "word": " and", "probability": 0.5576171875}, {"start": 685.38, "end": 685.68, "word": " leave", "probability": 0.346923828125}, {"start": 685.68, "end": 685.92, "word": " only", "probability": 0.80615234375}, {"start": 685.92, "end": 686.02, "word": " the", "probability": 0.78076171875}, {"start": 686.02, "end": 686.28, "word": " port", "probability": 0.227783203125}, {"start": 686.28, "end": 686.54, "word": " of", "probability": 0.63427734375}, {"start": 686.54, "end": 687.52, "word": " the", "probability": 0.7578125}, {"start": 687.52, "end": 688.04, "word": " internet", "probability": 0.8759765625}, {"start": 688.04, "end": 688.6, "word": " and", "probability": 0.693359375}, {"start": 688.6, "end": 688.8, "word": " more", "probability": 0.214111328125}, {"start": 688.8, "end": 688.92, "word": " than", "probability": 0.55712890625}, {"start": 688.92, "end": 689.02, "word": " one", "probability": 0.6552734375}, {"start": 689.02, "end": 689.58, "word": " other", "probability": 0.306640625}, {"start": 689.58, "end": 689.66, "word": " port.", "probability": 0.89208984375}, {"start": 690.36, "end": 690.66, "word": " They", "probability": 0.467041015625}, {"start": 690.66, "end": 690.8, "word": " are", "probability": 0.75439453125}, {"start": 690.8, "end": 690.88, "word": " the", "probability": 0.2783203125}, {"start": 690.88, "end": 690.94, "word": " only", "probability": 0.80810546875}, {"start": 690.94, "end": 691.02, "word": " ones", "probability": 0.55517578125}, {"start": 691.02, "end": 691.02, "word": " that", "probability": 0.76611328125}, {"start": 691.02, "end": 691.42, "word": " are", "probability": 0.828125}, {"start": 691.42, "end": 692.26, "word": " open", "probability": 0.84716796875}, {"start": 692.26, "end": 692.64, "word": " and", "probability": 0.36279296875}, {"start": 692.64, "end": 692.92, "word": " the", "probability": 0.490966796875}, {"start": 692.92, "end": 693.34, "word": " connection", "probability": 0.85009765625}, {"start": 693.34, "end": 693.5, "word": " is", "probability": 0.4853515625}, {"start": 693.5, "end": 693.5, "word": " working", "probability": 0.37353515625}, {"start": 693.5, "end": 693.54, "word": " on", "probability": 0.27197265625}, {"start": 693.54, "end": 693.76, "word": " them.", "probability": 0.896484375}], "temperature": 1.0}, {"id": 28, "seek": 72070, "start": 699.8, "end": 720.7, "text": " Actually, the mobile device communicates with the server as if you are requesting a page from the server and the server returns the content to it. Of course, the HTTP protocol is also one of the characteristics that the data is transmitted as hypertext, as text. In the end, the data goes as a request and returns as text.", "tokens": [5135, 11, 264, 6013, 4302, 3363, 1024, 365, 264, 7154, 382, 498, 291, 366, 31937, 257, 3028, 490, 264, 7154, 293, 264, 7154, 11247, 264, 2701, 281, 309, 13, 2720, 1164, 11, 264, 33283, 10336, 307, 611, 472, 295, 264, 10891, 300, 264, 1412, 307, 25355, 382, 9848, 25111, 11, 382, 2487, 13, 682, 264, 917, 11, 264, 1412, 1709, 382, 257, 5308, 293, 11247, 382, 2487, 13], "avg_logprob": -0.5294384334398352, "compression_ratio": 1.6479591836734695, "no_speech_prob": 2.682209014892578e-06, "words": [{"start": 699.8, "end": 700.28, "word": " Actually,", "probability": 0.08795166015625}, {"start": 700.7, "end": 700.84, "word": " the", "probability": 0.6044921875}, {"start": 700.84, "end": 701.1, "word": " mobile", "probability": 0.919921875}, {"start": 701.1, "end": 701.76, "word": " device", "probability": 0.86376953125}, {"start": 701.76, "end": 702.2, "word": " communicates", "probability": 0.6483154296875}, {"start": 702.2, "end": 702.4, "word": " with", "probability": 0.8310546875}, {"start": 702.4, "end": 702.52, "word": " the", "probability": 0.845703125}, {"start": 702.52, "end": 702.74, "word": " server", "probability": 0.88330078125}, {"start": 702.74, "end": 702.98, "word": " as", "probability": 0.7041015625}, {"start": 702.98, "end": 703.22, "word": " if", "probability": 0.86083984375}, {"start": 703.22, "end": 703.6, "word": " you", "probability": 0.7373046875}, {"start": 703.6, "end": 704.0, "word": " are", "probability": 0.28271484375}, {"start": 704.0, "end": 704.06, "word": " requesting", "probability": 0.3662109375}, {"start": 704.06, "end": 704.16, "word": " a", "probability": 0.8271484375}, {"start": 704.16, "end": 704.34, "word": " page", "probability": 0.82470703125}, {"start": 704.34, "end": 706.66, "word": " from", "probability": 0.3876953125}, {"start": 706.66, "end": 706.84, "word": " the", "probability": 0.6767578125}, {"start": 706.84, "end": 707.14, "word": " server", "probability": 0.9208984375}, {"start": 707.14, "end": 707.28, "word": " and", "probability": 0.456787109375}, {"start": 707.28, "end": 707.36, "word": " the", "probability": 0.6884765625}, {"start": 707.36, "end": 707.6, "word": " server", "probability": 0.90771484375}, {"start": 707.6, "end": 707.94, "word": " returns", "probability": 0.51220703125}, {"start": 707.94, "end": 708.72, "word": " the", "probability": 0.39111328125}, {"start": 708.72, "end": 708.96, "word": " content", "probability": 0.5712890625}, {"start": 708.96, "end": 709.52, "word": " to", "probability": 0.294677734375}, {"start": 709.52, "end": 709.52, "word": " it.", "probability": 0.53955078125}, {"start": 710.48, "end": 710.96, "word": " Of", "probability": 0.32421875}, {"start": 710.96, "end": 711.12, "word": " course,", "probability": 0.9609375}, {"start": 711.28, "end": 711.3, "word": " the", "probability": 0.533203125}, {"start": 711.3, "end": 711.6, "word": " HTTP", "probability": 0.71630859375}, {"start": 711.6, "end": 712.12, "word": " protocol", "probability": 0.8779296875}, {"start": 712.12, "end": 712.32, "word": " is", "probability": 0.52392578125}, {"start": 712.32, "end": 712.44, "word": " also", "probability": 0.6591796875}, {"start": 712.44, "end": 712.52, "word": " one", "probability": 0.231689453125}, {"start": 712.52, "end": 712.6, "word": " of", "probability": 0.94970703125}, {"start": 712.6, "end": 712.6, "word": " the", "probability": 0.6708984375}, {"start": 712.6, "end": 712.92, "word": " characteristics", "probability": 0.2242431640625}, {"start": 712.92, "end": 713.12, "word": " that", "probability": 0.634765625}, {"start": 713.12, "end": 713.22, "word": " the", "probability": 0.54443359375}, {"start": 713.22, "end": 713.42, "word": " data", "probability": 0.8427734375}, {"start": 713.42, "end": 713.84, "word": " is", "probability": 0.765625}, {"start": 713.84, "end": 714.3, "word": " transmitted", "probability": 0.351318359375}, {"start": 714.3, "end": 714.66, "word": " as", "probability": 0.7802734375}, {"start": 714.66, "end": 715.28, "word": " hypertext,", "probability": 0.81689453125}, {"start": 715.36, "end": 715.46, "word": " as", "probability": 0.6181640625}, {"start": 715.46, "end": 715.76, "word": " text.", "probability": 0.82421875}, {"start": 716.5, "end": 716.98, "word": " In", "probability": 0.268310546875}, {"start": 716.98, "end": 716.98, "word": " the", "probability": 0.460205078125}, {"start": 716.98, "end": 717.6, "word": " end,", "probability": 0.8740234375}, {"start": 717.62, "end": 717.62, "word": " the", "probability": 0.8408203125}, {"start": 717.62, "end": 717.62, "word": " data", "probability": 0.8759765625}, {"start": 717.62, "end": 717.88, "word": " goes", "probability": 0.59130859375}, {"start": 717.88, "end": 718.74, "word": " as", "probability": 0.21484375}, {"start": 718.74, "end": 718.82, "word": " a", "probability": 0.6708984375}, {"start": 718.82, "end": 719.22, "word": " request", "probability": 0.96044921875}, {"start": 719.22, "end": 720.1, "word": " and", "probability": 0.7734375}, {"start": 720.1, "end": 720.34, "word": " returns", "probability": 0.50048828125}, {"start": 720.34, "end": 720.48, "word": " as", "probability": 0.544921875}, {"start": 720.48, "end": 720.7, "word": " text.", "probability": 0.662109375}], "temperature": 1.0}, {"id": 29, "seek": 74876, "start": 723.16, "end": 748.76, "text": " Now, as I said, we will talk about what people call APIs, okay? But this is also a word, the name is not correct. Actually, this is an issue request that is sent. You actually ask for a page on a mobile device. As you type on the browser, the link is a page, a mobile phone comes and asks for products that are available on the server. For example, this is the domain slash products.", "tokens": [823, 11, 382, 286, 848, 11, 321, 486, 751, 466, 437, 561, 818, 21445, 11, 1392, 30, 583, 341, 307, 611, 257, 1349, 11, 264, 1315, 307, 406, 3006, 13, 5135, 11, 341, 307, 364, 2734, 5308, 300, 307, 2279, 13, 509, 767, 1029, 337, 257, 3028, 322, 257, 6013, 4302, 13, 1018, 291, 2010, 322, 264, 11185, 11, 264, 2113, 307, 257, 3028, 11, 257, 6013, 2593, 1487, 293, 8962, 337, 3383, 300, 366, 2435, 322, 264, 7154, 13, 1171, 1365, 11, 341, 307, 264, 9274, 17330, 3383, 13], "avg_logprob": -0.56490387235369, "compression_ratio": 1.6134453781512605, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 723.16, "end": 723.5, "word": " Now,", "probability": 0.1802978515625}, {"start": 723.54, "end": 723.58, "word": " as", "probability": 0.73388671875}, {"start": 723.58, "end": 723.72, "word": " I", "probability": 0.8984375}, {"start": 723.72, "end": 724.06, "word": " said,", "probability": 0.7001953125}, {"start": 724.64, "end": 725.58, "word": " we", "probability": 0.3935546875}, {"start": 725.58, "end": 726.58, "word": " will", "probability": 0.479736328125}, {"start": 726.58, "end": 726.78, "word": " talk", "probability": 0.74072265625}, {"start": 726.78, "end": 726.88, "word": " about", "probability": 0.89404296875}, {"start": 726.88, "end": 727.2, "word": " what", "probability": 0.3427734375}, {"start": 727.2, "end": 727.3, "word": " people", "probability": 0.358154296875}, {"start": 727.3, "end": 727.64, "word": " call", "probability": 0.837890625}, {"start": 727.64, "end": 728.32, "word": " APIs,", "probability": 0.80908203125}, {"start": 728.96, "end": 729.14, "word": " okay?", "probability": 0.2279052734375}, {"start": 729.4, "end": 729.54, "word": " But", "probability": 0.6591796875}, {"start": 729.54, "end": 729.72, "word": " this", "probability": 0.3720703125}, {"start": 729.72, "end": 729.84, "word": " is", "probability": 0.5615234375}, {"start": 729.84, "end": 729.98, "word": " also", "probability": 0.47802734375}, {"start": 729.98, "end": 730.28, "word": " a", "probability": 0.474609375}, {"start": 730.28, "end": 730.46, "word": " word,", "probability": 0.51904296875}, {"start": 730.56, "end": 730.64, "word": " the", "probability": 0.2408447265625}, {"start": 730.64, "end": 730.84, "word": " name", "probability": 0.47216796875}, {"start": 730.84, "end": 730.94, "word": " is", "probability": 0.7705078125}, {"start": 730.94, "end": 731.02, "word": " not", "probability": 0.7587890625}, {"start": 731.02, "end": 731.38, "word": " correct.", "probability": 0.728515625}, {"start": 732.72, "end": 733.12, "word": " Actually,", "probability": 0.155517578125}, {"start": 733.24, "end": 733.36, "word": " this", "probability": 0.53564453125}, {"start": 733.36, "end": 733.42, "word": " is", "probability": 0.8955078125}, {"start": 733.42, "end": 733.54, "word": " an", "probability": 0.3837890625}, {"start": 733.54, "end": 733.58, "word": " issue", "probability": 0.250244140625}, {"start": 733.58, "end": 734.02, "word": " request", "probability": 0.9765625}, {"start": 734.02, "end": 734.16, "word": " that", "probability": 0.705078125}, {"start": 734.16, "end": 734.26, "word": " is", "probability": 0.4404296875}, {"start": 734.26, "end": 734.46, "word": " sent.", "probability": 0.59375}, {"start": 734.68, "end": 734.82, "word": " You", "probability": 0.6240234375}, {"start": 734.82, "end": 735.3, "word": " actually", "probability": 0.277587890625}, {"start": 735.3, "end": 735.42, "word": " ask", "probability": 0.360595703125}, {"start": 735.42, "end": 735.42, "word": " for", "probability": 0.59326171875}, {"start": 735.42, "end": 735.42, "word": " a", "probability": 0.92626953125}, {"start": 735.42, "end": 735.42, "word": " page", "probability": 0.84814453125}, {"start": 735.42, "end": 735.42, "word": " on", "probability": 0.77099609375}, {"start": 735.42, "end": 735.5, "word": " a", "probability": 0.47021484375}, {"start": 735.5, "end": 735.64, "word": " mobile", "probability": 0.94873046875}, {"start": 735.64, "end": 736.02, "word": " device.", "probability": 0.96484375}, {"start": 737.28, "end": 737.58, "word": " As", "probability": 0.3291015625}, {"start": 737.58, "end": 737.98, "word": " you", "probability": 0.89990234375}, {"start": 737.98, "end": 738.34, "word": " type", "probability": 0.58935546875}, {"start": 738.34, "end": 738.44, "word": " on", "probability": 0.611328125}, {"start": 738.44, "end": 738.54, "word": " the", "probability": 0.8251953125}, {"start": 738.54, "end": 738.82, "word": " browser,", "probability": 0.783203125}, {"start": 738.92, "end": 738.98, "word": " the", "probability": 0.304931640625}, {"start": 738.98, "end": 739.12, "word": " link", "probability": 0.82568359375}, {"start": 739.12, "end": 739.2, "word": " is", "probability": 0.307861328125}, {"start": 739.2, "end": 739.54, "word": " a", "probability": 0.74658203125}, {"start": 739.54, "end": 739.54, "word": " page,", "probability": 0.90087890625}, {"start": 740.2, "end": 740.44, "word": " a", "probability": 0.330078125}, {"start": 740.44, "end": 741.0, "word": " mobile", "probability": 0.94189453125}, {"start": 741.0, "end": 741.18, "word": " phone", "probability": 0.2236328125}, {"start": 741.18, "end": 741.18, "word": " comes", "probability": 0.623046875}, {"start": 741.18, "end": 741.28, "word": " and", "probability": 0.4609375}, {"start": 741.28, "end": 741.64, "word": " asks", "probability": 0.73486328125}, {"start": 741.64, "end": 742.16, "word": " for", "probability": 0.80615234375}, {"start": 742.16, "end": 742.82, "word": " products", "probability": 0.6689453125}, {"start": 742.82, "end": 743.02, "word": " that", "probability": 0.52490234375}, {"start": 743.02, "end": 743.34, "word": " are", "probability": 0.8974609375}, {"start": 743.34, "end": 743.36, "word": " available", "probability": 0.347900390625}, {"start": 743.36, "end": 744.44, "word": " on", "probability": 0.587890625}, {"start": 744.44, "end": 744.6, "word": " the", "probability": 0.89111328125}, {"start": 744.6, "end": 744.9, "word": " server.", "probability": 0.92529296875}, {"start": 745.08, "end": 745.38, "word": " For", "probability": 0.322509765625}, {"start": 745.38, "end": 745.9, "word": " example,", "probability": 0.95849609375}, {"start": 746.12, "end": 746.24, "word": " this", "probability": 0.484375}, {"start": 746.24, "end": 746.32, "word": " is", "probability": 0.61279296875}, {"start": 746.32, "end": 746.58, "word": " the", "probability": 0.7314453125}, {"start": 746.58, "end": 746.98, "word": " domain", "probability": 0.97900390625}, {"start": 746.98, "end": 747.88, "word": " slash", "probability": 0.25830078125}, {"start": 747.88, "end": 748.76, "word": " products.", "probability": 0.8154296875}], "temperature": 1.0}, {"id": 30, "seek": 76717, "start": 749.99, "end": 767.17, "text": "Okay? Slash, for example, fifty-three. What does it mean? It wants the product fifty-three. Here are its details. This is the domain name slash product in the products slash fifty-three which is ... This is the URL link. It starts with HTTP or HTTPS", "tokens": [8297, 30, 6187, 1299, 11, 337, 1365, 11, 13442, 12, 27583, 13, 708, 775, 309, 914, 30, 467, 2738, 264, 1674, 13442, 12, 27583, 13, 1692, 366, 1080, 4365, 13, 639, 307, 264, 9274, 1315, 17330, 1674, 294, 264, 3383, 17330, 13442, 12, 27583, 597, 307, 1097, 639, 307, 264, 12905, 2113, 13, 467, 3719, 365, 33283, 420, 11751, 51, 6273], "avg_logprob": -0.5211693346500397, "compression_ratio": 1.55625, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 749.99, "end": 750.59, "word": "Okay?", "probability": 0.087646484375}, {"start": 751.21, "end": 751.75, "word": " Slash,", "probability": 0.56329345703125}, {"start": 751.85, "end": 752.03, "word": " for", "probability": 0.90185546875}, {"start": 752.03, "end": 752.25, "word": " example,", "probability": 0.91748046875}, {"start": 752.75, "end": 752.97, "word": " fifty", "probability": 0.5439453125}, {"start": 752.97, "end": 753.41, "word": "-three.", "probability": 0.771484375}, {"start": 754.01, "end": 754.51, "word": " What", "probability": 0.77880859375}, {"start": 754.51, "end": 754.67, "word": " does", "probability": 0.85400390625}, {"start": 754.67, "end": 754.67, "word": " it", "probability": 0.491943359375}, {"start": 754.67, "end": 754.75, "word": " mean?", "probability": 0.96630859375}, {"start": 754.81, "end": 754.93, "word": " It", "probability": 0.422119140625}, {"start": 754.93, "end": 755.05, "word": " wants", "probability": 0.244140625}, {"start": 755.05, "end": 755.17, "word": " the", "probability": 0.46875}, {"start": 755.17, "end": 755.55, "word": " product", "probability": 0.880859375}, {"start": 755.55, "end": 755.73, "word": " fifty", "probability": 0.51806640625}, {"start": 755.73, "end": 756.47, "word": "-three.", "probability": 0.959228515625}, {"start": 756.91, "end": 757.29, "word": " Here", "probability": 0.1827392578125}, {"start": 757.29, "end": 757.35, "word": " are", "probability": 0.62158203125}, {"start": 757.35, "end": 757.45, "word": " its", "probability": 0.53515625}, {"start": 757.45, "end": 757.81, "word": " details.", "probability": 0.82861328125}, {"start": 758.73, "end": 759.09, "word": " This", "probability": 0.27197265625}, {"start": 759.09, "end": 759.21, "word": " is", "probability": 0.822265625}, {"start": 759.21, "end": 759.83, "word": " the", "probability": 0.6884765625}, {"start": 759.83, "end": 760.17, "word": " domain", "probability": 0.96240234375}, {"start": 760.17, "end": 760.93, "word": " name", "probability": 0.83544921875}, {"start": 760.93, "end": 761.45, "word": " slash", "probability": 0.60302734375}, {"start": 761.45, "end": 761.79, "word": " product", "probability": 0.4462890625}, {"start": 761.79, "end": 761.95, "word": " in", "probability": 0.46484375}, {"start": 761.95, "end": 761.99, "word": " the", "probability": 0.64013671875}, {"start": 761.99, "end": 762.29, "word": " products", "probability": 0.52294921875}, {"start": 762.29, "end": 762.65, "word": " slash", "probability": 0.865234375}, {"start": 762.65, "end": 763.09, "word": " fifty", "probability": 0.88916015625}, {"start": 763.09, "end": 763.21, "word": "-three", "probability": 0.946533203125}, {"start": 763.21, "end": 763.43, "word": " which", "probability": 0.471435546875}, {"start": 763.43, "end": 764.07, "word": " is", "probability": 0.7724609375}, {"start": 764.07, "end": 764.21, "word": " ...", "probability": 0.1552734375}, {"start": 764.21, "end": 764.49, "word": " This", "probability": 0.53466796875}, {"start": 764.49, "end": 764.63, "word": " is", "probability": 0.76220703125}, {"start": 764.63, "end": 764.95, "word": " the", "probability": 0.69091796875}, {"start": 764.95, "end": 764.95, "word": " URL", "probability": 0.57568359375}, {"start": 764.95, "end": 765.29, "word": " link.", "probability": 0.68408203125}, {"start": 765.45, "end": 765.53, "word": " It", "probability": 0.79541015625}, {"start": 765.53, "end": 765.67, "word": " starts", "probability": 0.79833984375}, {"start": 765.67, "end": 765.77, "word": " with", "probability": 0.87548828125}, {"start": 765.77, "end": 766.17, "word": " HTTP", "probability": 0.40478515625}, {"start": 766.17, "end": 766.55, "word": " or", "probability": 0.90576171875}, {"start": 766.55, "end": 767.17, "word": " HTTPS", "probability": 0.9401041666666666}], "temperature": 1.0}, {"id": 31, "seek": 79583, "start": 768.55, "end": 795.83, "text": " Okay guys, this link is sent to the server, and the server prepares the result page for it and returns it to it. But of course, the data is not returned as HTML. HTML is made for human processing, to show a visible page. But when devices communicate with each other, the data is returned as a form that the machine can understand. For example, like JSON.", "tokens": [1033, 1074, 11, 341, 2113, 307, 2279, 281, 264, 7154, 11, 293, 264, 7154, 39418, 264, 1874, 3028, 337, 309, 293, 11247, 309, 281, 309, 13, 583, 295, 1164, 11, 264, 1412, 307, 406, 8752, 382, 17995, 13, 17995, 307, 1027, 337, 1952, 9007, 11, 281, 855, 257, 8974, 3028, 13, 583, 562, 5759, 7890, 365, 1184, 661, 11, 264, 1412, 307, 8752, 382, 257, 1254, 300, 264, 3479, 393, 1223, 13, 1171, 1365, 11, 411, 31828, 13], "avg_logprob": -0.6348892495601992, "compression_ratio": 1.6063348416289593, "no_speech_prob": 3.2782554626464844e-06, "words": [{"start": 768.55, "end": 768.93, "word": " Okay", "probability": 0.0604248046875}, {"start": 768.93, "end": 769.27, "word": " guys,", "probability": 0.3984375}, {"start": 770.23, "end": 770.81, "word": " this", "probability": 0.3271484375}, {"start": 770.81, "end": 771.11, "word": " link", "probability": 0.701171875}, {"start": 771.11, "end": 771.11, "word": " is", "probability": 0.7802734375}, {"start": 771.11, "end": 771.11, "word": " sent", "probability": 0.58935546875}, {"start": 771.11, "end": 771.33, "word": " to", "probability": 0.91064453125}, {"start": 771.33, "end": 771.43, "word": " the", "probability": 0.79345703125}, {"start": 771.43, "end": 771.79, "word": " server,", "probability": 0.92333984375}, {"start": 771.97, "end": 772.07, "word": " and", "probability": 0.2607421875}, {"start": 772.07, "end": 772.11, "word": " the", "probability": 0.55615234375}, {"start": 772.11, "end": 772.51, "word": " server", "probability": 0.91748046875}, {"start": 772.51, "end": 773.85, "word": " prepares", "probability": 0.264892578125}, {"start": 773.85, "end": 774.13, "word": " the", "probability": 0.46240234375}, {"start": 774.13, "end": 774.79, "word": " result", "probability": 0.306396484375}, {"start": 774.79, "end": 774.99, "word": " page", "probability": 0.75634765625}, {"start": 774.99, "end": 774.99, "word": " for", "probability": 0.40966796875}, {"start": 774.99, "end": 774.99, "word": " it", "probability": 0.25927734375}, {"start": 774.99, "end": 775.75, "word": " and", "probability": 0.380126953125}, {"start": 775.75, "end": 776.09, "word": " returns", "probability": 0.238037109375}, {"start": 776.09, "end": 776.25, "word": " it", "probability": 0.828125}, {"start": 776.25, "end": 776.35, "word": " to", "probability": 0.50390625}, {"start": 776.35, "end": 776.39, "word": " it.", "probability": 0.39697265625}, {"start": 776.49, "end": 776.61, "word": " But", "probability": 0.625}, {"start": 776.61, "end": 776.83, "word": " of", "probability": 0.66455078125}, {"start": 776.83, "end": 776.83, "word": " course,", "probability": 0.95263671875}, {"start": 776.91, "end": 776.95, "word": " the", "probability": 0.54638671875}, {"start": 776.95, "end": 777.13, "word": " data", "probability": 0.7705078125}, {"start": 777.13, "end": 777.43, "word": " is", "probability": 0.330810546875}, {"start": 777.43, "end": 777.43, "word": " not", "probability": 0.90478515625}, {"start": 777.43, "end": 777.73, "word": " returned", "probability": 0.65283203125}, {"start": 777.73, "end": 777.93, "word": " as", "probability": 0.8046875}, {"start": 777.93, "end": 778.35, "word": " HTML.", "probability": 0.65478515625}, {"start": 779.23, "end": 779.79, "word": " HTML", "probability": 0.399658203125}, {"start": 779.79, "end": 780.11, "word": " is", "probability": 0.85205078125}, {"start": 780.11, "end": 780.37, "word": " made", "probability": 0.402587890625}, {"start": 780.37, "end": 781.65, "word": " for", "probability": 0.890625}, {"start": 781.65, "end": 781.95, "word": " human", "probability": 0.350341796875}, {"start": 781.95, "end": 783.55, "word": " processing,", "probability": 0.93310546875}, {"start": 783.71, "end": 784.03, "word": " to", "probability": 0.26220703125}, {"start": 784.03, "end": 784.69, "word": " show", "probability": 0.2548828125}, {"start": 784.69, "end": 785.13, "word": " a", "probability": 0.433349609375}, {"start": 785.13, "end": 785.93, "word": " visible", "probability": 0.65869140625}, {"start": 785.93, "end": 785.93, "word": " page.", "probability": 0.8857421875}, {"start": 786.53, "end": 787.09, "word": " But", "probability": 0.57666015625}, {"start": 787.09, "end": 787.25, "word": " when", "probability": 0.2310791015625}, {"start": 787.25, "end": 787.57, "word": " devices", "probability": 0.447265625}, {"start": 787.57, "end": 788.09, "word": " communicate", "probability": 0.5849609375}, {"start": 788.09, "end": 788.29, "word": " with", "probability": 0.57958984375}, {"start": 788.29, "end": 788.63, "word": " each", "probability": 0.9375}, {"start": 788.63, "end": 788.63, "word": " other,", "probability": 0.8984375}, {"start": 789.27, "end": 789.31, "word": " the", "probability": 0.76611328125}, {"start": 789.31, "end": 789.59, "word": " data", "probability": 0.8896484375}, {"start": 789.59, "end": 789.91, "word": " is", "probability": 0.5556640625}, {"start": 789.91, "end": 790.15, "word": " returned", "probability": 0.73486328125}, {"start": 790.15, "end": 791.29, "word": " as", "probability": 0.74365234375}, {"start": 791.29, "end": 791.31, "word": " a", "probability": 0.62353515625}, {"start": 791.31, "end": 791.73, "word": " form", "probability": 0.1358642578125}, {"start": 791.73, "end": 792.51, "word": " that", "probability": 0.449462890625}, {"start": 792.51, "end": 793.13, "word": " the", "probability": 0.47412109375}, {"start": 793.13, "end": 793.37, "word": " machine", "probability": 0.66943359375}, {"start": 793.37, "end": 793.49, "word": " can", "probability": 0.77197265625}, {"start": 793.49, "end": 793.79, "word": " understand.", "probability": 0.63671875}, {"start": 794.21, "end": 794.57, "word": " For", "probability": 0.326416015625}, {"start": 794.57, "end": 795.19, "word": " example,", "probability": 0.919921875}, {"start": 795.27, "end": 795.39, "word": " like", "probability": 0.403564453125}, {"start": 795.39, "end": 795.83, "word": " JSON.", "probability": 0.71728515625}], "temperature": 1.0}, {"id": 32, "seek": 81155, "start": 797.27, "end": 811.55, "text": "and XML, did you hear about JSON and XML? It's just a way to represent data. For example, I want a person, I want the employee", "tokens": [474, 43484, 11, 630, 291, 1568, 466, 31828, 293, 43484, 30, 467, 311, 445, 257, 636, 281, 2906, 1412, 13, 1171, 1365, 11, 286, 528, 257, 954, 11, 286, 528, 264, 10738], "avg_logprob": -0.5705492424242424, "compression_ratio": 1.1775700934579438, "no_speech_prob": 1.2576580047607422e-05, "words": [{"start": 797.27, "end": 797.55, "word": "and", "probability": 0.3056640625}, {"start": 797.55, "end": 798.01, "word": " XML,", "probability": 0.2392578125}, {"start": 798.79, "end": 798.95, "word": " did", "probability": 0.274169921875}, {"start": 798.95, "end": 798.95, "word": " you", "probability": 0.96923828125}, {"start": 798.95, "end": 799.17, "word": " hear", "probability": 0.80517578125}, {"start": 799.17, "end": 799.45, "word": " about", "probability": 0.6943359375}, {"start": 799.45, "end": 799.71, "word": " JSON", "probability": 0.7529296875}, {"start": 799.71, "end": 799.87, "word": " and", "probability": 0.91259765625}, {"start": 799.87, "end": 800.15, "word": " XML?", "probability": 0.9169921875}, {"start": 800.67, "end": 801.23, "word": " It's", "probability": 0.4730224609375}, {"start": 801.23, "end": 801.41, "word": " just", "probability": 0.6875}, {"start": 801.41, "end": 801.55, "word": " a", "probability": 0.9033203125}, {"start": 801.55, "end": 801.87, "word": " way", "probability": 0.84130859375}, {"start": 801.87, "end": 803.17, "word": " to", "probability": 0.70458984375}, {"start": 803.17, "end": 803.95, "word": " represent", "probability": 0.541015625}, {"start": 803.95, "end": 804.87, "word": " data.", "probability": 0.496826171875}, {"start": 805.51, "end": 805.83, "word": " For", "probability": 0.52294921875}, {"start": 805.83, "end": 806.01, "word": " example,", "probability": 0.89990234375}, {"start": 806.17, "end": 806.21, "word": " I", "probability": 0.60595703125}, {"start": 806.21, "end": 806.43, "word": " want", "probability": 0.626953125}, {"start": 806.43, "end": 807.53, "word": " a", "probability": 0.5087890625}, {"start": 807.53, "end": 807.77, "word": " person,", "probability": 0.88818359375}, {"start": 809.85, "end": 810.01, "word": " I", "probability": 0.43896484375}, {"start": 810.01, "end": 810.37, "word": " want", "probability": 0.67041015625}, {"start": 810.37, "end": 811.07, "word": " the", "probability": 0.53515625}, {"start": 811.07, "end": 811.55, "word": " employee", "probability": 0.68603515625}], "temperature": 1.0}, {"id": 33, "seek": 83890, "start": 812.48, "end": 838.9, "text": " Ok, his ID is 53. This request reaches the server. This server reaches the URL. It takes 53 and queries the database. There is a code here. Select from database. This is the ID of the employee. It gets his information. Ok, who should this information go back to? To the server. Why should it go back to HTML? It goes back to either JSON or XML. Can I enter the employee's data? For example, it was Ali, 17.", "tokens": [3477, 11, 702, 7348, 307, 21860, 13, 639, 5308, 14235, 264, 7154, 13, 639, 7154, 14235, 264, 12905, 13, 467, 2516, 21860, 293, 24109, 264, 8149, 13, 821, 307, 257, 3089, 510, 13, 13638, 490, 8149, 13, 639, 307, 264, 7348, 295, 264, 846, 21132, 1200, 68, 13, 467, 2170, 702, 1589, 13, 3477, 11, 567, 820, 341, 1589, 352, 646, 281, 30, 1407, 264, 7154, 13, 1545, 820, 309, 352, 646, 281, 17995, 30, 467, 1709, 646, 281, 2139, 31828, 420, 43484, 13, 1664, 286, 3242, 264, 10738, 311, 1412, 30, 1171, 1365, 11, 309, 390, 12020, 11, 3282, 13], "avg_logprob": -0.5594362885344262, "compression_ratio": 1.6887966804979253, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 812.48, "end": 812.76, "word": " Ok,", "probability": 0.2265625}, {"start": 812.98, "end": 813.36, "word": " his", "probability": 0.359130859375}, {"start": 813.36, "end": 813.68, "word": " ID", "probability": 0.5869140625}, {"start": 813.68, "end": 814.16, "word": " is", "probability": 0.626953125}, {"start": 814.16, "end": 814.98, "word": " 53.", "probability": 0.96923828125}, {"start": 815.52, "end": 815.92, "word": " This", "probability": 0.3095703125}, {"start": 815.92, "end": 816.26, "word": " request", "probability": 0.93701171875}, {"start": 816.26, "end": 816.66, "word": " reaches", "probability": 0.317626953125}, {"start": 816.66, "end": 816.82, "word": " the", "probability": 0.712890625}, {"start": 816.82, "end": 817.14, "word": " server.", "probability": 0.90087890625}, {"start": 817.24, "end": 817.38, "word": " This", "probability": 0.2447509765625}, {"start": 817.38, "end": 817.66, "word": " server", "probability": 0.404541015625}, {"start": 817.66, "end": 818.42, "word": " reaches", "probability": 0.36962890625}, {"start": 818.42, "end": 818.66, "word": " the", "probability": 0.841796875}, {"start": 818.66, "end": 819.02, "word": " URL.", "probability": 0.82861328125}, {"start": 819.1, "end": 819.2, "word": " It", "probability": 0.5595703125}, {"start": 819.2, "end": 819.4, "word": " takes", "probability": 0.5751953125}, {"start": 819.4, "end": 820.08, "word": " 53", "probability": 0.93359375}, {"start": 820.08, "end": 820.14, "word": " and", "probability": 0.423095703125}, {"start": 820.14, "end": 820.72, "word": " queries", "probability": 0.57470703125}, {"start": 820.72, "end": 821.0, "word": " the", "probability": 0.61181640625}, {"start": 821.0, "end": 821.42, "word": " database.", "probability": 0.91015625}, {"start": 821.46, "end": 821.6, "word": " There", "probability": 0.337158203125}, {"start": 821.6, "end": 821.66, "word": " is", "probability": 0.7626953125}, {"start": 821.66, "end": 821.78, "word": " a", "probability": 0.7373046875}, {"start": 821.78, "end": 822.02, "word": " code", "probability": 0.90478515625}, {"start": 822.02, "end": 822.12, "word": " here.", "probability": 0.6064453125}, {"start": 822.68, "end": 823.2, "word": " Select", "probability": 0.65771484375}, {"start": 823.2, "end": 823.58, "word": " from", "probability": 0.736328125}, {"start": 823.58, "end": 824.16, "word": " database.", "probability": 0.89794921875}, {"start": 824.32, "end": 824.72, "word": " This", "probability": 0.1890869140625}, {"start": 824.72, "end": 824.72, "word": " is", "probability": 0.650390625}, {"start": 824.72, "end": 824.8, "word": " the", "probability": 0.438232421875}, {"start": 824.8, "end": 825.56, "word": " ID", "probability": 0.37744140625}, {"start": 825.56, "end": 825.66, "word": " of", "probability": 0.85986328125}, {"start": 825.66, "end": 825.66, "word": " the", "probability": 0.53662109375}, {"start": 825.66, "end": 825.66, "word": " employee.", "probability": 0.647247314453125}, {"start": 826.12, "end": 826.22, "word": " It", "probability": 0.379150390625}, {"start": 826.22, "end": 826.36, "word": " gets", "probability": 0.26513671875}, {"start": 826.36, "end": 826.48, "word": " his", "probability": 0.515625}, {"start": 826.48, "end": 826.76, "word": " information.", "probability": 0.681640625}, {"start": 827.4, "end": 827.58, "word": " Ok,", "probability": 0.301513671875}, {"start": 827.64, "end": 827.68, "word": " who", "probability": 0.285400390625}, {"start": 827.68, "end": 827.68, "word": " should", "probability": 0.57177734375}, {"start": 827.68, "end": 827.68, "word": " this", "probability": 0.56982421875}, {"start": 827.68, "end": 828.18, "word": " information", "probability": 0.80322265625}, {"start": 828.18, "end": 828.54, "word": " go", "probability": 0.55224609375}, {"start": 828.54, "end": 828.64, "word": " back", "probability": 0.49462890625}, {"start": 828.64, "end": 828.72, "word": " to?", "probability": 0.9541015625}, {"start": 829.3, "end": 829.68, "word": " To", "probability": 0.7021484375}, {"start": 829.68, "end": 829.76, "word": " the", "probability": 0.9091796875}, {"start": 829.76, "end": 830.06, "word": " server.", "probability": 0.9169921875}, {"start": 830.52, "end": 830.7, "word": " Why", "probability": 0.833984375}, {"start": 830.7, "end": 830.82, "word": " should", "probability": 0.6318359375}, {"start": 830.82, "end": 830.82, "word": " it", "probability": 0.4306640625}, {"start": 830.82, "end": 830.9, "word": " go", "probability": 0.728515625}, {"start": 830.9, "end": 831.04, "word": " back", "probability": 0.75634765625}, {"start": 831.04, "end": 831.06, "word": " to", "probability": 0.97119140625}, {"start": 831.06, "end": 831.42, "word": " HTML?", "probability": 0.77880859375}, {"start": 831.74, "end": 831.9, "word": " It", "probability": 0.56640625}, {"start": 831.9, "end": 831.98, "word": " goes", "probability": 0.3994140625}, {"start": 831.98, "end": 832.18, "word": " back", "probability": 0.76904296875}, {"start": 832.18, "end": 832.28, "word": " to", "probability": 0.892578125}, {"start": 832.28, "end": 832.82, "word": " either", "probability": 0.60546875}, {"start": 832.82, "end": 833.32, "word": " JSON", "probability": 0.85986328125}, {"start": 833.32, "end": 833.96, "word": " or", "probability": 0.9521484375}, {"start": 833.96, "end": 834.32, "word": " XML.", "probability": 0.9306640625}, {"start": 834.64, "end": 834.82, "word": " Can", "probability": 0.318603515625}, {"start": 834.82, "end": 834.96, "word": " I", "probability": 0.43359375}, {"start": 834.96, "end": 835.16, "word": " enter", "probability": 0.0701904296875}, {"start": 835.16, "end": 835.6, "word": " the", "probability": 0.5869140625}, {"start": 835.6, "end": 835.9, "word": " employee's", "probability": 0.6241455078125}, {"start": 835.9, "end": 835.9, "word": " data?", "probability": 0.62939453125}, {"start": 836.3, "end": 836.68, "word": " For", "probability": 0.324951171875}, {"start": 836.68, "end": 837.04, "word": " example,", "probability": 0.92529296875}, {"start": 837.1, "end": 837.1, "word": " it", "probability": 0.465576171875}, {"start": 837.1, "end": 837.1, "word": " was", "probability": 0.791015625}, {"start": 837.1, "end": 837.34, "word": " Ali,", "probability": 0.693359375}, {"start": 838.42, "end": 838.9, "word": " 17.", "probability": 0.7724609375}], "temperature": 1.0}, {"id": 34, "seek": 86671, "start": 840.31, "end": 866.71, "text": " Yes, three, two, for example. So I got these data. Do you understand what this is? These are the employee's data. There is no explanation for it. Okay, I understand, this is a name. But what is seventeen? This is his age, the address where he lives, he has seventeen children. Yes, no, no, three, what is three? He has three children, married three, I don't know what this is. So I found that we need another information to explain what this is.", "tokens": [1079, 11, 1045, 11, 732, 11, 337, 1365, 13, 407, 286, 658, 613, 1412, 13, 1144, 291, 1223, 437, 341, 307, 30, 1981, 366, 264, 10738, 311, 1412, 13, 821, 307, 572, 10835, 337, 309, 13, 1033, 11, 286, 1223, 11, 341, 307, 257, 1315, 13, 583, 437, 307, 39532, 30, 639, 307, 702, 3205, 11, 264, 2985, 689, 415, 2909, 11, 415, 575, 39532, 2227, 13, 1079, 11, 572, 11, 572, 11, 1045, 11, 437, 307, 1045, 30, 634, 575, 1045, 2227, 11, 5259, 1045, 11, 286, 500, 380, 458, 437, 341, 307, 13, 407, 286, 1352, 300, 321, 643, 1071, 1589, 281, 2903, 437, 341, 307, 13], "avg_logprob": -0.4494318198073994, "compression_ratio": 1.8130081300813008, "no_speech_prob": 9.298324584960938e-06, "words": [{"start": 840.31, "end": 840.75, "word": " Yes,", "probability": 0.1571044921875}, {"start": 840.93, "end": 841.33, "word": " three,", "probability": 0.59228515625}, {"start": 841.75, "end": 842.35, "word": " two,", "probability": 0.828125}, {"start": 842.65, "end": 843.43, "word": " for", "probability": 0.8583984375}, {"start": 843.43, "end": 843.59, "word": " example.", "probability": 0.91357421875}, {"start": 844.11, "end": 844.23, "word": " So", "probability": 0.33740234375}, {"start": 844.23, "end": 844.41, "word": " I", "probability": 0.427490234375}, {"start": 844.41, "end": 844.41, "word": " got", "probability": 0.39501953125}, {"start": 844.41, "end": 844.67, "word": " these", "probability": 0.701171875}, {"start": 844.67, "end": 844.93, "word": " data.", "probability": 0.6591796875}, {"start": 845.27, "end": 845.53, "word": " Do", "probability": 0.73388671875}, {"start": 845.53, "end": 845.57, "word": " you", "probability": 0.970703125}, {"start": 845.57, "end": 845.79, "word": " understand", "probability": 0.64794921875}, {"start": 845.79, "end": 845.91, "word": " what", "probability": 0.859375}, {"start": 845.91, "end": 846.09, "word": " this", "probability": 0.322998046875}, {"start": 846.09, "end": 846.11, "word": " is?", "probability": 0.70263671875}, {"start": 847.03, "end": 847.47, "word": " These", "probability": 0.646484375}, {"start": 847.47, "end": 847.59, "word": " are", "probability": 0.92626953125}, {"start": 847.59, "end": 847.93, "word": " the", "probability": 0.353515625}, {"start": 847.93, "end": 848.17, "word": " employee's", "probability": 0.48431396484375}, {"start": 848.17, "end": 848.17, "word": " data.", "probability": 0.7626953125}, {"start": 848.63, "end": 848.85, "word": " There", "probability": 0.457275390625}, {"start": 848.85, "end": 848.91, "word": " is", "probability": 0.7939453125}, {"start": 848.91, "end": 849.03, "word": " no", "probability": 0.94140625}, {"start": 849.03, "end": 849.37, "word": " explanation", "probability": 0.71044921875}, {"start": 849.37, "end": 849.53, "word": " for", "probability": 0.60693359375}, {"start": 849.53, "end": 849.65, "word": " it.", "probability": 0.388427734375}, {"start": 849.87, "end": 850.15, "word": " Okay,", "probability": 0.50634765625}, {"start": 850.25, "end": 850.33, "word": " I", "probability": 0.1273193359375}, {"start": 850.33, "end": 850.73, "word": " understand,", "probability": 0.59033203125}, {"start": 850.81, "end": 850.95, "word": " this", "probability": 0.65966796875}, {"start": 850.95, "end": 850.99, "word": " is", "probability": 0.93603515625}, {"start": 850.99, "end": 851.31, "word": " a", "probability": 0.7392578125}, {"start": 851.31, "end": 851.31, "word": " name.", "probability": 0.8427734375}, {"start": 851.99, "end": 852.23, "word": " But", "probability": 0.833984375}, {"start": 852.23, "end": 852.39, "word": " what", "probability": 0.434814453125}, {"start": 852.39, "end": 852.39, "word": " is", "probability": 0.436767578125}, {"start": 852.39, "end": 852.77, "word": " seventeen?", "probability": 0.404052734375}, {"start": 853.07, "end": 853.15, "word": " This", "probability": 0.27880859375}, {"start": 853.15, "end": 853.15, "word": " is", "probability": 0.86083984375}, {"start": 853.15, "end": 853.45, "word": " his", "probability": 0.943359375}, {"start": 853.45, "end": 853.45, "word": " age,", "probability": 0.8955078125}, {"start": 854.09, "end": 854.15, "word": " the", "probability": 0.671875}, {"start": 854.15, "end": 854.39, "word": " address", "probability": 0.7451171875}, {"start": 854.39, "end": 854.57, "word": " where", "probability": 0.56884765625}, {"start": 854.57, "end": 854.71, "word": " he", "probability": 0.9638671875}, {"start": 854.71, "end": 854.93, "word": " lives,", "probability": 0.818359375}, {"start": 855.35, "end": 855.51, "word": " he", "probability": 0.86474609375}, {"start": 855.51, "end": 855.65, "word": " has", "probability": 0.9482421875}, {"start": 855.65, "end": 856.01, "word": " seventeen", "probability": 0.8076171875}, {"start": 856.01, "end": 856.39, "word": " children.", "probability": 0.73095703125}, {"start": 857.21, "end": 857.27, "word": " Yes,", "probability": 0.59765625}, {"start": 857.87, "end": 857.95, "word": " no,", "probability": 0.376220703125}, {"start": 858.05, "end": 858.11, "word": " no,", "probability": 0.57666015625}, {"start": 858.11, "end": 858.33, "word": " three,", "probability": 0.80419921875}, {"start": 858.53, "end": 858.67, "word": " what", "probability": 0.8857421875}, {"start": 858.67, "end": 858.71, "word": " is", "probability": 0.62451171875}, {"start": 858.71, "end": 858.85, "word": " three?", "probability": 0.74462890625}, {"start": 859.53, "end": 859.97, "word": " He", "probability": 0.91796875}, {"start": 859.97, "end": 860.11, "word": " has", "probability": 0.9462890625}, {"start": 860.11, "end": 860.31, "word": " three", "probability": 0.80908203125}, {"start": 860.31, "end": 860.65, "word": " children,", "probability": 0.8466796875}, {"start": 861.05, "end": 861.43, "word": " married", "probability": 0.41162109375}, {"start": 861.43, "end": 861.77, "word": " three,", "probability": 0.74755859375}, {"start": 862.09, "end": 862.29, "word": " I", "probability": 0.3388671875}, {"start": 862.29, "end": 862.43, "word": " don't", "probability": 0.837158203125}, {"start": 862.43, "end": 862.75, "word": " know", "probability": 0.87353515625}, {"start": 862.75, "end": 862.93, "word": " what", "probability": 0.91748046875}, {"start": 862.93, "end": 863.15, "word": " this", "probability": 0.70947265625}, {"start": 863.15, "end": 863.17, "word": " is.", "probability": 0.93310546875}, {"start": 863.59, "end": 863.75, "word": " So", "probability": 0.88134765625}, {"start": 863.75, "end": 864.05, "word": " I", "probability": 0.83642578125}, {"start": 864.05, "end": 864.05, "word": " found", "probability": 0.365234375}, {"start": 864.05, "end": 864.15, "word": " that", "probability": 0.513671875}, {"start": 864.15, "end": 864.27, "word": " we", "probability": 0.857421875}, {"start": 864.27, "end": 864.61, "word": " need", "probability": 0.8193359375}, {"start": 864.61, "end": 865.09, "word": " another", "probability": 0.5185546875}, {"start": 865.09, "end": 865.47, "word": " information", "probability": 0.71044921875}, {"start": 865.47, "end": 865.89, "word": " to", "probability": 0.85400390625}, {"start": 865.89, "end": 866.11, "word": " explain", "probability": 0.8662109375}, {"start": 866.11, "end": 866.45, "word": " what", "probability": 0.53466796875}, {"start": 866.45, "end": 866.71, "word": " this", "probability": 0.82421875}, {"start": 866.71, "end": 866.71, "word": " is.", "probability": 0.94140625}], "temperature": 1.0}, {"id": 35, "seek": 89061, "start": 867.47, "end": 890.61, "text": " So we can say for example, put key name, two dots like this, comma, age, two dots, number of children, like this, okay? This is the shape of the JSON file. JSON is what? Key and value, okay? Key can have more than value, okay?", "tokens": [407, 321, 393, 584, 337, 1365, 11, 829, 2141, 1315, 11, 732, 15026, 411, 341, 11, 22117, 11, 3205, 11, 732, 15026, 11, 1230, 295, 2227, 11, 411, 341, 11, 1392, 30, 639, 307, 264, 3909, 295, 264, 31828, 3991, 13, 31828, 307, 437, 30, 12759, 293, 2158, 11, 1392, 30, 12759, 393, 362, 544, 813, 2158, 11, 1392, 30], "avg_logprob": -0.5030737744003045, "compression_ratio": 1.4836601307189543, "no_speech_prob": 3.3974647521972656e-06, "words": [{"start": 867.47, "end": 867.91, "word": " So", "probability": 0.17236328125}, {"start": 867.91, "end": 868.03, "word": " we", "probability": 0.436767578125}, {"start": 868.03, "end": 868.13, "word": " can", "probability": 0.308837890625}, {"start": 868.13, "end": 868.23, "word": " say", "probability": 0.69970703125}, {"start": 868.23, "end": 868.31, "word": " for", "probability": 0.53515625}, {"start": 868.31, "end": 868.49, "word": " example,", "probability": 0.91748046875}, {"start": 868.73, "end": 869.53, "word": " put", "probability": 0.333251953125}, {"start": 869.53, "end": 869.87, "word": " key", "probability": 0.40771484375}, {"start": 869.87, "end": 870.55, "word": " name,", "probability": 0.583984375}, {"start": 871.01, "end": 871.43, "word": " two", "probability": 0.41796875}, {"start": 871.43, "end": 871.65, "word": " dots", "probability": 0.58056640625}, {"start": 871.65, "end": 871.95, "word": " like", "probability": 0.392333984375}, {"start": 871.95, "end": 872.25, "word": " this,", "probability": 0.5361328125}, {"start": 873.27, "end": 873.65, "word": " comma,", "probability": 0.2587890625}, {"start": 874.49, "end": 874.97, "word": " age,", "probability": 0.7685546875}, {"start": 875.71, "end": 875.93, "word": " two", "probability": 0.90576171875}, {"start": 875.93, "end": 876.15, "word": " dots,", "probability": 0.82177734375}, {"start": 877.13, "end": 877.81, "word": " number", "probability": 0.9375}, {"start": 877.81, "end": 878.05, "word": " of", "probability": 0.97607421875}, {"start": 878.05, "end": 878.57, "word": " children,", "probability": 0.86376953125}, {"start": 879.99, "end": 880.19, "word": " like", "probability": 0.77392578125}, {"start": 880.19, "end": 880.65, "word": " this,", "probability": 0.900390625}, {"start": 881.01, "end": 881.27, "word": " okay?", "probability": 0.286865234375}, {"start": 881.61, "end": 881.99, "word": " This", "probability": 0.7392578125}, {"start": 881.99, "end": 882.05, "word": " is", "probability": 0.923828125}, {"start": 882.05, "end": 882.13, "word": " the", "probability": 0.63330078125}, {"start": 882.13, "end": 882.23, "word": " shape", "probability": 0.449462890625}, {"start": 882.23, "end": 882.57, "word": " of", "probability": 0.9619140625}, {"start": 882.57, "end": 883.05, "word": " the", "probability": 0.66845703125}, {"start": 883.05, "end": 883.31, "word": " JSON", "probability": 0.38671875}, {"start": 883.31, "end": 883.39, "word": " file.", "probability": 0.76123046875}, {"start": 884.59, "end": 884.91, "word": " JSON", "probability": 0.74169921875}, {"start": 884.91, "end": 885.07, "word": " is", "probability": 0.7255859375}, {"start": 885.07, "end": 885.15, "word": " what?", "probability": 0.1754150390625}, {"start": 885.57, "end": 885.81, "word": " Key", "probability": 0.8671875}, {"start": 885.81, "end": 886.49, "word": " and", "probability": 0.89013671875}, {"start": 886.49, "end": 886.87, "word": " value,", "probability": 0.88671875}, {"start": 887.73, "end": 887.89, "word": " okay?", "probability": 0.75}, {"start": 887.97, "end": 888.41, "word": " Key", "probability": 0.64453125}, {"start": 888.41, "end": 888.55, "word": " can", "probability": 0.65625}, {"start": 888.55, "end": 888.75, "word": " have", "probability": 0.8125}, {"start": 888.75, "end": 888.95, "word": " more", "probability": 0.9287109375}, {"start": 888.95, "end": 889.11, "word": " than", "probability": 0.84814453125}, {"start": 889.11, "end": 889.49, "word": " value,", "probability": 0.85986328125}, {"start": 890.17, "end": 890.61, "word": " okay?", "probability": 0.771484375}], "temperature": 1.0}, {"id": 36, "seek": 91970, "start": 891.74, "end": 919.7, "text": " It's JSON object, JSON array It's a way to represent the data Of course, this is for the machine to read it It's not HTML, HTML is for the user to see it This is like JSON Another way is XML What's different from this? Nothing Instead of writing a key before it, you put a tag before it You say this is name and here is slash Name, another way, but they use tags Here they use key", "tokens": [467, 311, 31828, 2657, 11, 31828, 10225, 467, 311, 257, 636, 281, 2906, 264, 1412, 2720, 1164, 11, 341, 307, 337, 264, 3479, 281, 1401, 309, 467, 311, 406, 17995, 11, 17995, 307, 337, 264, 4195, 281, 536, 309, 639, 307, 411, 31828, 3996, 636, 307, 43484, 708, 311, 819, 490, 341, 30, 6693, 7156, 295, 3579, 257, 2141, 949, 309, 11, 291, 829, 257, 6162, 949, 309, 509, 584, 341, 307, 1315, 293, 510, 307, 17330, 13866, 11, 1071, 636, 11, 457, 436, 764, 18632, 1692, 436, 764, 2141], "avg_logprob": -0.5882554787855881, "compression_ratio": 1.6493506493506493, "no_speech_prob": 1.9669532775878906e-06, "words": [{"start": 891.74, "end": 892.12, "word": " It's", "probability": 0.2586669921875}, {"start": 892.12, "end": 892.84, "word": " JSON", "probability": 0.465576171875}, {"start": 892.84, "end": 893.24, "word": " object,", "probability": 0.265380859375}, {"start": 893.4, "end": 893.74, "word": " JSON", "probability": 0.84814453125}, {"start": 893.74, "end": 894.08, "word": " array", "probability": 0.79833984375}, {"start": 894.08, "end": 895.22, "word": " It's", "probability": 0.6025390625}, {"start": 895.22, "end": 895.32, "word": " a", "probability": 0.79833984375}, {"start": 895.32, "end": 895.52, "word": " way", "probability": 0.845703125}, {"start": 895.52, "end": 895.68, "word": " to", "probability": 0.677734375}, {"start": 895.68, "end": 896.0, "word": " represent", "probability": 0.303955078125}, {"start": 896.0, "end": 896.08, "word": " the", "probability": 0.224853515625}, {"start": 896.08, "end": 896.28, "word": " data", "probability": 0.58740234375}, {"start": 896.28, "end": 896.68, "word": " Of", "probability": 0.336669921875}, {"start": 896.68, "end": 896.82, "word": " course,", "probability": 0.94921875}, {"start": 896.9, "end": 897.16, "word": " this", "probability": 0.4404296875}, {"start": 897.16, "end": 897.3, "word": " is", "probability": 0.71337890625}, {"start": 897.3, "end": 897.8, "word": " for", "probability": 0.10693359375}, {"start": 897.8, "end": 897.96, "word": " the", "probability": 0.64697265625}, {"start": 897.96, "end": 898.12, "word": " machine", "probability": 0.66015625}, {"start": 898.12, "end": 898.36, "word": " to", "probability": 0.60009765625}, {"start": 898.36, "end": 898.6, "word": " read", "probability": 0.74365234375}, {"start": 898.6, "end": 899.12, "word": " it", "probability": 0.58544921875}, {"start": 899.12, "end": 899.94, "word": " It's", "probability": 0.75439453125}, {"start": 899.94, "end": 900.08, "word": " not", "probability": 0.9189453125}, {"start": 900.08, "end": 900.5, "word": " HTML,", "probability": 0.677734375}, {"start": 900.76, "end": 901.02, "word": " HTML", "probability": 0.34375}, {"start": 901.02, "end": 901.16, "word": " is", "probability": 0.85498046875}, {"start": 901.16, "end": 901.38, "word": " for", "probability": 0.59228515625}, {"start": 901.38, "end": 901.56, "word": " the", "probability": 0.493896484375}, {"start": 901.56, "end": 902.12, "word": " user", "probability": 0.9033203125}, {"start": 902.12, "end": 902.34, "word": " to", "probability": 0.9033203125}, {"start": 902.34, "end": 902.74, "word": " see", "probability": 0.65966796875}, {"start": 902.74, "end": 903.06, "word": " it", "probability": 0.359375}, {"start": 903.06, "end": 903.92, "word": " This", "probability": 0.31103515625}, {"start": 903.92, "end": 904.84, "word": " is", "probability": 0.853515625}, {"start": 904.84, "end": 905.14, "word": " like", "probability": 0.6611328125}, {"start": 905.14, "end": 905.6, "word": " JSON", "probability": 0.7958984375}, {"start": 905.6, "end": 906.54, "word": " Another", "probability": 0.3759765625}, {"start": 906.54, "end": 906.94, "word": " way", "probability": 0.8447265625}, {"start": 906.94, "end": 907.42, "word": " is", "probability": 0.64111328125}, {"start": 907.42, "end": 907.9, "word": " XML", "probability": 0.7958984375}, {"start": 907.9, "end": 908.68, "word": " What's", "probability": 0.365234375}, {"start": 908.68, "end": 908.9, "word": " different", "probability": 0.74169921875}, {"start": 908.9, "end": 909.1, "word": " from", "probability": 0.44091796875}, {"start": 909.1, "end": 909.32, "word": " this?", "probability": 0.7509765625}, {"start": 909.36, "end": 909.54, "word": " Nothing", "probability": 0.338134765625}, {"start": 909.54, "end": 910.18, "word": " Instead", "probability": 0.16748046875}, {"start": 910.18, "end": 910.96, "word": " of", "probability": 0.96484375}, {"start": 910.96, "end": 911.2, "word": " writing", "probability": 0.4560546875}, {"start": 911.2, "end": 911.5, "word": " a", "probability": 0.0799560546875}, {"start": 911.5, "end": 911.86, "word": " key", "probability": 0.4306640625}, {"start": 911.86, "end": 911.86, "word": " before", "probability": 0.479248046875}, {"start": 911.86, "end": 911.86, "word": " it,", "probability": 0.5546875}, {"start": 912.02, "end": 912.02, "word": " you", "probability": 0.52197265625}, {"start": 912.02, "end": 912.22, "word": " put", "probability": 0.365234375}, {"start": 912.22, "end": 912.54, "word": " a", "probability": 0.84814453125}, {"start": 912.54, "end": 912.88, "word": " tag", "probability": 0.966796875}, {"start": 912.88, "end": 912.88, "word": " before", "probability": 0.8046875}, {"start": 912.88, "end": 912.92, "word": " it", "probability": 0.9208984375}, {"start": 912.92, "end": 913.44, "word": " You", "probability": 0.7001953125}, {"start": 913.44, "end": 913.58, "word": " say", "probability": 0.60693359375}, {"start": 913.58, "end": 913.76, "word": " this", "probability": 0.677734375}, {"start": 913.76, "end": 913.76, "word": " is", "probability": 0.9306640625}, {"start": 913.76, "end": 914.1, "word": " name", "probability": 0.62109375}, {"start": 914.1, "end": 915.04, "word": " and", "probability": 0.478515625}, {"start": 915.04, "end": 915.2, "word": " here", "probability": 0.546875}, {"start": 915.2, "end": 915.22, "word": " is", "probability": 0.29931640625}, {"start": 915.22, "end": 915.68, "word": " slash", "probability": 0.830078125}, {"start": 915.68, "end": 916.94, "word": " Name,", "probability": 0.53125}, {"start": 917.02, "end": 917.08, "word": " another", "probability": 0.7763671875}, {"start": 917.08, "end": 917.58, "word": " way,", "probability": 0.86572265625}, {"start": 917.86, "end": 917.94, "word": " but", "probability": 0.86181640625}, {"start": 917.94, "end": 918.04, "word": " they", "probability": 0.321533203125}, {"start": 918.04, "end": 918.36, "word": " use", "probability": 0.87353515625}, {"start": 918.36, "end": 918.8, "word": " tags", "probability": 0.8427734375}, {"start": 918.8, "end": 918.98, "word": " Here", "probability": 0.3974609375}, {"start": 918.98, "end": 919.08, "word": " they", "probability": 0.63134765625}, {"start": 919.08, "end": 919.38, "word": " use", "probability": 0.87548828125}, {"start": 919.38, "end": 919.7, "word": " key", "probability": 0.63037109375}], "temperature": 1.0}, {"id": 37, "seek": 94426, "start": 920.6, "end": 944.26, "text": " and value, okay? So it returns the data either as xml or as json And then what does the client do? In the client, it sends the data as json, it extracts the data from the json, okay? And then it shows it to you in the application Because this is really the idea of how devices communicate with the server", "tokens": [293, 2158, 11, 1392, 30, 407, 309, 11247, 264, 1412, 2139, 382, 2031, 15480, 420, 382, 361, 3015, 400, 550, 437, 775, 264, 6423, 360, 30, 682, 264, 6423, 11, 309, 14790, 264, 1412, 382, 361, 3015, 11, 309, 8947, 82, 264, 1412, 490, 264, 361, 3015, 11, 1392, 30, 400, 550, 309, 3110, 309, 281, 291, 294, 264, 3861, 1436, 341, 307, 534, 264, 1558, 295, 577, 5759, 7890, 365, 264, 7154], "avg_logprob": -0.4983107914795747, "compression_ratio": 1.6944444444444444, "no_speech_prob": 6.973743438720703e-06, "words": [{"start": 920.6, "end": 920.86, "word": " and", "probability": 0.37939453125}, {"start": 920.86, "end": 921.14, "word": " value,", "probability": 0.4658203125}, {"start": 921.56, "end": 921.82, "word": " okay?", "probability": 0.2069091796875}, {"start": 922.14, "end": 922.46, "word": " So", "probability": 0.46337890625}, {"start": 922.46, "end": 922.6, "word": " it", "probability": 0.27880859375}, {"start": 922.6, "end": 922.82, "word": " returns", "probability": 0.49462890625}, {"start": 922.82, "end": 922.96, "word": " the", "probability": 0.6142578125}, {"start": 922.96, "end": 923.18, "word": " data", "probability": 0.79248046875}, {"start": 923.18, "end": 923.44, "word": " either", "probability": 0.39697265625}, {"start": 923.44, "end": 923.54, "word": " as", "probability": 0.72265625}, {"start": 923.54, "end": 924.08, "word": " xml", "probability": 0.6524658203125}, {"start": 924.08, "end": 924.92, "word": " or", "probability": 0.71923828125}, {"start": 924.92, "end": 926.1, "word": " as", "probability": 0.5546875}, {"start": 926.1, "end": 926.44, "word": " json", "probability": 0.5855712890625}, {"start": 926.44, "end": 926.88, "word": " And", "probability": 0.2259521484375}, {"start": 926.88, "end": 927.14, "word": " then", "probability": 0.62939453125}, {"start": 927.14, "end": 927.32, "word": " what", "probability": 0.64697265625}, {"start": 927.32, "end": 927.32, "word": " does", "probability": 0.837890625}, {"start": 927.32, "end": 927.32, "word": " the", "probability": 0.86181640625}, {"start": 927.32, "end": 927.66, "word": " client", "probability": 0.927734375}, {"start": 927.66, "end": 928.24, "word": " do?", "probability": 0.9375}, {"start": 930.28, "end": 930.8, "word": " In", "probability": 0.56982421875}, {"start": 930.8, "end": 930.94, "word": " the", "probability": 0.81689453125}, {"start": 930.94, "end": 931.22, "word": " client,", "probability": 0.94775390625}, {"start": 931.42, "end": 931.5, "word": " it", "probability": 0.56884765625}, {"start": 931.5, "end": 931.68, "word": " sends", "probability": 0.059783935546875}, {"start": 931.68, "end": 931.82, "word": " the", "probability": 0.7333984375}, {"start": 931.82, "end": 932.06, "word": " data", "probability": 0.69140625}, {"start": 932.06, "end": 932.16, "word": " as", "probability": 0.58642578125}, {"start": 932.16, "end": 932.54, "word": " json,", "probability": 0.864990234375}, {"start": 933.36, "end": 933.42, "word": " it", "probability": 0.372802734375}, {"start": 933.42, "end": 934.48, "word": " extracts", "probability": 0.7325439453125}, {"start": 934.48, "end": 934.66, "word": " the", "probability": 0.77978515625}, {"start": 934.66, "end": 934.88, "word": " data", "probability": 0.86328125}, {"start": 934.88, "end": 935.08, "word": " from", "probability": 0.79833984375}, {"start": 935.08, "end": 935.2, "word": " the", "probability": 0.45263671875}, {"start": 935.2, "end": 935.52, "word": " json,", "probability": 0.924560546875}, {"start": 936.4, "end": 936.66, "word": " okay?", "probability": 0.5986328125}, {"start": 936.9, "end": 937.3, "word": " And", "probability": 0.71484375}, {"start": 937.3, "end": 937.54, "word": " then", "probability": 0.771484375}, {"start": 937.54, "end": 937.64, "word": " it", "probability": 0.70556640625}, {"start": 937.64, "end": 937.84, "word": " shows", "probability": 0.39599609375}, {"start": 937.84, "end": 938.02, "word": " it", "probability": 0.525390625}, {"start": 938.02, "end": 938.14, "word": " to", "probability": 0.8037109375}, {"start": 938.14, "end": 938.24, "word": " you", "probability": 0.92724609375}, {"start": 938.24, "end": 939.18, "word": " in", "probability": 0.7890625}, {"start": 939.18, "end": 939.3, "word": " the", "probability": 0.63818359375}, {"start": 939.3, "end": 939.58, "word": " application", "probability": 0.64306640625}, {"start": 939.58, "end": 940.52, "word": " Because", "probability": 0.62353515625}, {"start": 940.52, "end": 940.68, "word": " this", "probability": 0.7744140625}, {"start": 940.68, "end": 940.74, "word": " is", "probability": 0.8955078125}, {"start": 940.74, "end": 940.86, "word": " really", "probability": 0.307861328125}, {"start": 940.86, "end": 941.32, "word": " the", "probability": 0.599609375}, {"start": 941.32, "end": 941.32, "word": " idea", "probability": 0.76806640625}, {"start": 941.32, "end": 941.84, "word": " of", "probability": 0.8271484375}, {"start": 941.84, "end": 941.84, "word": " how", "probability": 0.697265625}, {"start": 941.84, "end": 942.24, "word": " devices", "probability": 0.583984375}, {"start": 942.24, "end": 942.72, "word": " communicate", "probability": 0.76025390625}, {"start": 942.72, "end": 943.02, "word": " with", "probability": 0.8984375}, {"start": 943.02, "end": 943.94, "word": " the", "probability": 0.5439453125}, {"start": 943.94, "end": 944.26, "word": " server", "probability": 0.87890625}], "temperature": 1.0}, {"id": 38, "seek": 96041, "start": 946.21, "end": 960.41, "text": " Now, this process can be difficult to do. For example, someone asks you how to create a web service. Very simply, a web service is a page with a link. The result of the page is JSON.", "tokens": [823, 11, 341, 1399, 393, 312, 2252, 281, 360, 13, 1171, 1365, 11, 1580, 8962, 291, 577, 281, 1884, 257, 3670, 2643, 13, 4372, 2935, 11, 257, 3670, 2643, 307, 257, 3028, 365, 257, 2113, 13, 440, 1874, 295, 264, 3028, 307, 31828, 13], "avg_logprob": -0.5909722487131754, "compression_ratio": 1.326086956521739, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 946.21, "end": 946.65, "word": " Now,", "probability": 0.29541015625}, {"start": 946.83, "end": 947.03, "word": " this", "probability": 0.84033203125}, {"start": 947.03, "end": 947.35, "word": " process", "probability": 0.72607421875}, {"start": 947.35, "end": 947.55, "word": " can", "probability": 0.40380859375}, {"start": 947.55, "end": 948.05, "word": " be", "probability": 0.8974609375}, {"start": 948.05, "end": 948.93, "word": " difficult", "probability": 0.359619140625}, {"start": 948.93, "end": 948.93, "word": " to", "probability": 0.418212890625}, {"start": 948.93, "end": 949.23, "word": " do.", "probability": 0.313720703125}, {"start": 949.85, "end": 950.07, "word": " For", "probability": 0.69482421875}, {"start": 950.07, "end": 950.37, "word": " example,", "probability": 0.88818359375}, {"start": 950.89, "end": 951.43, "word": " someone", "probability": 0.41845703125}, {"start": 951.43, "end": 951.67, "word": " asks", "probability": 0.356689453125}, {"start": 951.67, "end": 951.81, "word": " you", "probability": 0.58154296875}, {"start": 951.81, "end": 951.93, "word": " how", "probability": 0.53271484375}, {"start": 951.93, "end": 952.03, "word": " to", "probability": 0.403076171875}, {"start": 952.03, "end": 952.19, "word": " create", "probability": 0.248046875}, {"start": 952.19, "end": 952.47, "word": " a", "probability": 0.7890625}, {"start": 952.47, "end": 952.51, "word": " web", "probability": 0.650390625}, {"start": 952.51, "end": 952.89, "word": " service.", "probability": 0.83642578125}, {"start": 953.09, "end": 953.21, "word": " Very", "probability": 0.1678466796875}, {"start": 953.21, "end": 953.65, "word": " simply,", "probability": 0.72119140625}, {"start": 953.91, "end": 953.99, "word": " a", "probability": 0.76220703125}, {"start": 953.99, "end": 954.05, "word": " web", "probability": 0.94580078125}, {"start": 954.05, "end": 954.35, "word": " service", "probability": 0.90087890625}, {"start": 954.35, "end": 954.53, "word": " is", "probability": 0.8515625}, {"start": 954.53, "end": 954.83, "word": " a", "probability": 0.84130859375}, {"start": 954.83, "end": 955.13, "word": " page", "probability": 0.6396484375}, {"start": 955.13, "end": 956.31, "word": " with", "probability": 0.5107421875}, {"start": 956.31, "end": 956.47, "word": " a", "probability": 0.8203125}, {"start": 956.47, "end": 956.67, "word": " link.", "probability": 0.92578125}, {"start": 958.15, "end": 958.15, "word": " The", "probability": 0.73388671875}, {"start": 958.15, "end": 958.37, "word": " result", "probability": 0.265380859375}, {"start": 958.37, "end": 958.55, "word": " of", "probability": 0.880859375}, {"start": 958.55, "end": 958.73, "word": " the", "probability": 0.41845703125}, {"start": 958.73, "end": 958.95, "word": " page", "probability": 0.54638671875}, {"start": 958.95, "end": 959.19, "word": " is", "probability": 0.837890625}, {"start": 959.19, "end": 960.41, "word": " JSON.", "probability": 0.36962890625}], "temperature": 1.0}, {"id": 39, "seek": 98866, "start": 961.68, "end": 988.66, "text": " It's a simple web service, and if you create a page, the link will look like this, slash, etc, etc, domain, persons, etc, and here you send it the id, for example. It can be slash 53, or it can even be another form, for example, ID equals 53, whatever the form of the link. The point is that this request reaches the server, and the server knows how to", "tokens": [467, 311, 257, 2199, 3670, 2643, 11, 293, 498, 291, 1884, 257, 3028, 11, 264, 2113, 486, 574, 411, 341, 11, 17330, 11, 5183, 11, 5183, 11, 9274, 11, 14453, 11, 5183, 11, 293, 510, 291, 2845, 309, 264, 4496, 11, 337, 1365, 13, 467, 393, 312, 17330, 21860, 11, 420, 309, 393, 754, 312, 1071, 1254, 11, 337, 1365, 11, 7348, 6915, 21860, 11, 2035, 264, 1254, 295, 264, 2113, 13, 440, 935, 307, 300, 341, 5308, 14235, 264, 7154, 11, 293, 264, 7154, 3255, 577, 281], "avg_logprob": -0.670646083488893, "compression_ratio": 1.6495327102803738, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 961.68, "end": 962.16, "word": " It's", "probability": 0.214324951171875}, {"start": 962.16, "end": 962.22, "word": " a", "probability": 0.52734375}, {"start": 962.22, "end": 963.1, "word": " simple", "probability": 0.68701171875}, {"start": 963.1, "end": 963.1, "word": " web", "probability": 0.61181640625}, {"start": 963.1, "end": 963.56, "word": " service,", "probability": 0.857421875}, {"start": 963.78, "end": 964.3, "word": " and", "probability": 0.2099609375}, {"start": 964.3, "end": 964.36, "word": " if", "probability": 0.6240234375}, {"start": 964.36, "end": 964.6, "word": " you", "probability": 0.93603515625}, {"start": 964.6, "end": 964.8, "word": " create", "probability": 0.416748046875}, {"start": 964.8, "end": 964.94, "word": " a", "probability": 0.92724609375}, {"start": 964.94, "end": 965.22, "word": " page,", "probability": 0.6103515625}, {"start": 965.68, "end": 965.78, "word": " the", "probability": 0.5517578125}, {"start": 965.78, "end": 965.98, "word": " link", "probability": 0.904296875}, {"start": 965.98, "end": 966.16, "word": " will", "probability": 0.163818359375}, {"start": 966.16, "end": 966.32, "word": " look", "probability": 0.1990966796875}, {"start": 966.32, "end": 966.48, "word": " like", "probability": 0.82763671875}, {"start": 966.48, "end": 967.42, "word": " this,", "probability": 0.859375}, {"start": 967.6, "end": 968.48, "word": " slash,", "probability": 0.1514892578125}, {"start": 968.74, "end": 969.54, "word": " etc,", "probability": 0.279052734375}, {"start": 970.32, "end": 970.32, "word": " etc,", "probability": 0.311279296875}, {"start": 970.4, "end": 970.68, "word": " domain,", "probability": 0.83203125}, {"start": 970.92, "end": 971.4, "word": " persons,", "probability": 0.943359375}, {"start": 971.5, "end": 971.72, "word": " etc,", "probability": 0.13134765625}, {"start": 971.88, "end": 972.26, "word": " and", "probability": 0.6591796875}, {"start": 972.26, "end": 972.42, "word": " here", "probability": 0.40087890625}, {"start": 972.42, "end": 972.54, "word": " you", "probability": 0.80712890625}, {"start": 972.54, "end": 972.74, "word": " send", "probability": 0.29833984375}, {"start": 972.74, "end": 972.9, "word": " it", "probability": 0.23095703125}, {"start": 972.9, "end": 972.92, "word": " the", "probability": 0.48291015625}, {"start": 972.92, "end": 973.46, "word": " id,", "probability": 0.479736328125}, {"start": 973.96, "end": 974.08, "word": " for", "probability": 0.2423095703125}, {"start": 974.08, "end": 974.08, "word": " example.", "probability": 0.93017578125}, {"start": 974.16, "end": 974.64, "word": " It", "probability": 0.33447265625}, {"start": 974.64, "end": 974.86, "word": " can", "probability": 0.58447265625}, {"start": 974.86, "end": 975.86, "word": " be", "probability": 0.677734375}, {"start": 975.86, "end": 976.28, "word": " slash", "probability": 0.7861328125}, {"start": 976.28, "end": 976.78, "word": " 53,", "probability": 0.7021484375}, {"start": 977.38, "end": 977.82, "word": " or", "probability": 0.9228515625}, {"start": 977.82, "end": 978.06, "word": " it", "probability": 0.525390625}, {"start": 978.06, "end": 978.26, "word": " can", "probability": 0.8642578125}, {"start": 978.26, "end": 978.26, "word": " even", "probability": 0.31298828125}, {"start": 978.26, "end": 978.42, "word": " be", "probability": 0.69775390625}, {"start": 978.42, "end": 978.56, "word": " another", "probability": 0.556640625}, {"start": 978.56, "end": 978.8, "word": " form,", "probability": 0.301025390625}, {"start": 979.1, "end": 979.34, "word": " for", "probability": 0.220703125}, {"start": 979.34, "end": 979.84, "word": " example,", "probability": 0.9462890625}, {"start": 980.4, "end": 980.66, "word": " ID", "probability": 0.3115234375}, {"start": 980.66, "end": 981.84, "word": " equals", "probability": 0.288818359375}, {"start": 981.84, "end": 983.02, "word": " 53,", "probability": 0.947265625}, {"start": 983.28, "end": 983.48, "word": " whatever", "probability": 0.5771484375}, {"start": 983.48, "end": 984.04, "word": " the", "probability": 0.33740234375}, {"start": 984.04, "end": 984.22, "word": " form", "probability": 0.62451171875}, {"start": 984.22, "end": 984.38, "word": " of", "probability": 0.83154296875}, {"start": 984.38, "end": 984.4, "word": " the", "probability": 0.8720703125}, {"start": 984.4, "end": 984.6, "word": " link.", "probability": 0.958984375}, {"start": 984.82, "end": 985.16, "word": " The", "probability": 0.3623046875}, {"start": 985.16, "end": 985.26, "word": " point", "probability": 0.525390625}, {"start": 985.26, "end": 985.36, "word": " is", "probability": 0.92626953125}, {"start": 985.36, "end": 985.42, "word": " that", "probability": 0.759765625}, {"start": 985.42, "end": 985.56, "word": " this", "probability": 0.734375}, {"start": 985.56, "end": 985.86, "word": " request", "probability": 0.923828125}, {"start": 985.86, "end": 986.18, "word": " reaches", "probability": 0.394775390625}, {"start": 986.18, "end": 986.38, "word": " the", "probability": 0.89697265625}, {"start": 986.38, "end": 986.72, "word": " server,", "probability": 0.92041015625}, {"start": 986.8, "end": 986.92, "word": " and", "probability": 0.69140625}, {"start": 986.92, "end": 986.98, "word": " the", "probability": 0.8017578125}, {"start": 986.98, "end": 987.36, "word": " server", "probability": 0.92626953125}, {"start": 987.36, "end": 987.98, "word": " knows", "probability": 0.66748046875}, {"start": 987.98, "end": 988.46, "word": " how", "probability": 0.619140625}, {"start": 988.46, "end": 988.66, "word": " to", "probability": 0.57080078125}], "temperature": 1.0}, {"id": 40, "seek": 101414, "start": 989.38, "end": 1014.14, "text": " In PHP, it takes the parameters in the request and then makes a query on the database. It gets the data and forms it as JSON. JSON is text. Or it makes a return to the server. But in real applications, the number of requests can be large. For example, this mobile device needs a certain product. So it says, for example, slash products.", "tokens": [682, 47298, 11, 309, 2516, 264, 9834, 294, 264, 5308, 293, 550, 1669, 257, 14581, 322, 264, 8149, 13, 467, 2170, 264, 1412, 293, 6422, 309, 382, 31828, 13, 31828, 307, 2487, 13, 1610, 309, 1669, 257, 2736, 281, 264, 7154, 13, 583, 294, 957, 5821, 11, 264, 1230, 295, 12475, 393, 312, 2416, 13, 1171, 1365, 11, 341, 6013, 4302, 2203, 257, 1629, 1674, 13, 407, 309, 1619, 11, 337, 1365, 11, 17330, 3383, 13], "avg_logprob": -0.4184253169344617, "compression_ratio": 1.5896226415094339, "no_speech_prob": 3.635883331298828e-06, "words": [{"start": 989.38, "end": 989.64, "word": " In", "probability": 0.2432861328125}, {"start": 989.64, "end": 990.08, "word": " PHP,", "probability": 0.533203125}, {"start": 990.24, "end": 990.32, "word": " it", "probability": 0.6240234375}, {"start": 990.32, "end": 990.52, "word": " takes", "probability": 0.6513671875}, {"start": 990.52, "end": 990.76, "word": " the", "probability": 0.6943359375}, {"start": 990.76, "end": 991.26, "word": " parameters", "probability": 0.86474609375}, {"start": 991.26, "end": 991.72, "word": " in", "probability": 0.412109375}, {"start": 991.72, "end": 991.88, "word": " the", "probability": 0.833984375}, {"start": 991.88, "end": 992.18, "word": " request", "probability": 0.89111328125}, {"start": 992.18, "end": 992.72, "word": " and", "probability": 0.47802734375}, {"start": 992.72, "end": 992.94, "word": " then", "probability": 0.42529296875}, {"start": 992.94, "end": 993.2, "word": " makes", "probability": 0.29296875}, {"start": 993.2, "end": 993.64, "word": " a", "probability": 0.91259765625}, {"start": 993.64, "end": 994.02, "word": " query", "probability": 0.95751953125}, {"start": 994.02, "end": 994.7, "word": " on", "probability": 0.6474609375}, {"start": 994.7, "end": 994.8, "word": " the", "probability": 0.8818359375}, {"start": 994.8, "end": 995.1, "word": " database.", "probability": 0.892578125}, {"start": 995.16, "end": 995.24, "word": " It", "probability": 0.759765625}, {"start": 995.24, "end": 995.38, "word": " gets", "probability": 0.1805419921875}, {"start": 995.38, "end": 995.5, "word": " the", "probability": 0.81298828125}, {"start": 995.5, "end": 995.76, "word": " data", "probability": 0.82373046875}, {"start": 995.76, "end": 996.04, "word": " and", "probability": 0.7177734375}, {"start": 996.04, "end": 996.32, "word": " forms", "probability": 0.425537109375}, {"start": 996.32, "end": 996.48, "word": " it", "probability": 0.78955078125}, {"start": 996.48, "end": 996.62, "word": " as", "probability": 0.4951171875}, {"start": 996.62, "end": 997.22, "word": " JSON.", "probability": 0.7841796875}, {"start": 997.34, "end": 997.58, "word": " JSON", "probability": 0.8740234375}, {"start": 997.58, "end": 997.8, "word": " is", "probability": 0.88427734375}, {"start": 997.8, "end": 998.14, "word": " text.", "probability": 0.498291015625}, {"start": 998.64, "end": 998.8, "word": " Or", "probability": 0.48828125}, {"start": 998.8, "end": 998.9, "word": " it", "probability": 0.71630859375}, {"start": 998.9, "end": 999.0, "word": " makes", "probability": 0.33642578125}, {"start": 999.0, "end": 999.08, "word": " a", "probability": 0.89111328125}, {"start": 999.08, "end": 999.44, "word": " return", "probability": 0.91064453125}, {"start": 999.44, "end": 1000.14, "word": " to", "probability": 0.88232421875}, {"start": 1000.14, "end": 1000.54, "word": " the", "probability": 0.89208984375}, {"start": 1000.54, "end": 1000.84, "word": " server.", "probability": 0.9130859375}, {"start": 1001.24, "end": 1001.42, "word": " But", "probability": 0.79150390625}, {"start": 1001.42, "end": 1001.58, "word": " in", "probability": 0.200439453125}, {"start": 1001.58, "end": 1001.9, "word": " real", "probability": 0.331787109375}, {"start": 1001.9, "end": 1004.3, "word": " applications,", "probability": 0.59765625}, {"start": 1004.4, "end": 1004.48, "word": " the", "probability": 0.80810546875}, {"start": 1004.48, "end": 1004.72, "word": " number", "probability": 0.87548828125}, {"start": 1004.72, "end": 1004.96, "word": " of", "probability": 0.9716796875}, {"start": 1004.96, "end": 1005.56, "word": " requests", "probability": 0.84619140625}, {"start": 1005.56, "end": 1005.8, "word": " can", "probability": 0.8125}, {"start": 1005.8, "end": 1006.02, "word": " be", "probability": 0.94384765625}, {"start": 1006.02, "end": 1006.32, "word": " large.", "probability": 0.57421875}, {"start": 1006.44, "end": 1006.66, "word": " For", "probability": 0.82958984375}, {"start": 1006.66, "end": 1006.88, "word": " example,", "probability": 0.93798828125}, {"start": 1007.3, "end": 1007.48, "word": " this", "probability": 0.75390625}, {"start": 1007.48, "end": 1007.66, "word": " mobile", "probability": 0.9453125}, {"start": 1007.66, "end": 1008.22, "word": " device", "probability": 0.95263671875}, {"start": 1008.22, "end": 1009.44, "word": " needs", "probability": 0.68408203125}, {"start": 1009.44, "end": 1009.88, "word": " a", "probability": 0.966796875}, {"start": 1009.88, "end": 1010.48, "word": " certain", "probability": 0.4462890625}, {"start": 1010.48, "end": 1010.48, "word": " product.", "probability": 0.90673828125}, {"start": 1010.8, "end": 1010.92, "word": " So", "probability": 0.515625}, {"start": 1010.92, "end": 1011.02, "word": " it", "probability": 0.59814453125}, {"start": 1011.02, "end": 1011.2, "word": " says,", "probability": 0.6611328125}, {"start": 1011.36, "end": 1011.42, "word": " for", "probability": 0.6884765625}, {"start": 1011.42, "end": 1011.68, "word": " example,", "probability": 0.95556640625}, {"start": 1012.36, "end": 1013.56, "word": " slash", "probability": 0.2159423828125}, {"start": 1013.56, "end": 1014.14, "word": " products.", "probability": 0.80419921875}], "temperature": 1.0}, {"id": 41, "seek": 104320, "start": 1015.64, "end": 1043.2, "text": " on their ID it could be slash products on for example what products are there? fruits right? here what happened is like a category right? to give you all the categories that are there it could be slash persons", "tokens": [322, 641, 7348, 309, 727, 312, 17330, 3383, 322, 337, 1365, 437, 3383, 366, 456, 30, 12148, 558, 30, 510, 437, 2011, 307, 411, 257, 7719, 558, 30, 281, 976, 291, 439, 264, 10479, 300, 366, 456, 309, 727, 312, 17330, 14453], "avg_logprob": -0.6515261517014614, "compression_ratio": 1.6030534351145038, "no_speech_prob": 2.3245811462402344e-06, "words": [{"start": 1015.64, "end": 1016.0, "word": " on", "probability": 0.1795654296875}, {"start": 1016.0, "end": 1016.42, "word": " their", "probability": 0.4716796875}, {"start": 1016.42, "end": 1016.78, "word": " ID", "probability": 0.68408203125}, {"start": 1016.78, "end": 1017.82, "word": " it", "probability": 0.27099609375}, {"start": 1017.82, "end": 1018.04, "word": " could", "probability": 0.51953125}, {"start": 1018.04, "end": 1018.42, "word": " be", "probability": 0.91552734375}, {"start": 1018.42, "end": 1019.36, "word": " slash", "probability": 0.219482421875}, {"start": 1019.36, "end": 1020.7, "word": " products", "probability": 0.80908203125}, {"start": 1020.7, "end": 1022.72, "word": " on", "probability": 0.748046875}, {"start": 1022.72, "end": 1023.32, "word": " for", "probability": 0.54443359375}, {"start": 1023.32, "end": 1024.16, "word": " example", "probability": 0.9423828125}, {"start": 1024.16, "end": 1027.2, "word": " what", "probability": 0.4873046875}, {"start": 1027.2, "end": 1027.64, "word": " products", "probability": 0.156982421875}, {"start": 1027.64, "end": 1027.7, "word": " are", "probability": 0.60693359375}, {"start": 1027.7, "end": 1027.88, "word": " there?", "probability": 0.77001953125}, {"start": 1027.88, "end": 1028.38, "word": " fruits", "probability": 0.66943359375}, {"start": 1028.38, "end": 1033.42, "word": " right?", "probability": 0.12469482421875}, {"start": 1034.2, "end": 1035.04, "word": " here", "probability": 0.262451171875}, {"start": 1035.04, "end": 1035.26, "word": " what", "probability": 0.45068359375}, {"start": 1035.26, "end": 1035.38, "word": " happened", "probability": 0.4775390625}, {"start": 1035.38, "end": 1035.52, "word": " is", "probability": 0.28466796875}, {"start": 1035.52, "end": 1036.1, "word": " like", "probability": 0.278564453125}, {"start": 1036.1, "end": 1036.22, "word": " a", "probability": 0.6943359375}, {"start": 1036.22, "end": 1036.6, "word": " category", "probability": 0.91015625}, {"start": 1036.6, "end": 1037.68, "word": " right?", "probability": 0.339599609375}, {"start": 1037.76, "end": 1038.0, "word": " to", "probability": 0.472900390625}, {"start": 1038.0, "end": 1038.16, "word": " give", "probability": 0.312255859375}, {"start": 1038.16, "end": 1038.32, "word": " you", "probability": 0.89306640625}, {"start": 1038.32, "end": 1038.92, "word": " all", "probability": 0.4248046875}, {"start": 1038.92, "end": 1039.1, "word": " the", "probability": 0.437255859375}, {"start": 1039.1, "end": 1039.54, "word": " categories", "probability": 0.90576171875}, {"start": 1039.54, "end": 1040.18, "word": " that", "probability": 0.353515625}, {"start": 1040.18, "end": 1040.24, "word": " are", "probability": 0.5380859375}, {"start": 1040.24, "end": 1040.64, "word": " there", "probability": 0.347900390625}, {"start": 1040.64, "end": 1041.28, "word": " it", "probability": 0.7236328125}, {"start": 1041.28, "end": 1041.52, "word": " could", "probability": 0.783203125}, {"start": 1041.52, "end": 1041.74, "word": " be", "probability": 0.943359375}, {"start": 1041.74, "end": 1042.3, "word": " slash", "probability": 0.94140625}, {"start": 1042.3, "end": 1043.2, "word": " persons", "probability": 0.9208984375}], "temperature": 1.0}, {"id": 42, "seek": 106679, "start": 1044.73, "end": 1066.79, "text": " by sending him the ID. It can be a slash delivery. Okay? The point is that mobile applications have many screens, and each screen has different data. So, each different data that he wants to request must have a link.", "tokens": [538, 7750, 796, 264, 7348, 13, 467, 393, 312, 257, 17330, 8982, 13, 1033, 30, 440, 935, 307, 300, 6013, 5821, 362, 867, 11171, 11, 293, 1184, 2568, 575, 819, 1412, 13, 407, 11, 1184, 819, 1412, 300, 415, 2738, 281, 5308, 1633, 362, 257, 2113, 13], "avg_logprob": -0.6402994630237421, "compression_ratio": 1.4090909090909092, "no_speech_prob": 3.814697265625e-06, "words": [{"start": 1044.73, "end": 1045.09, "word": " by", "probability": 0.11212158203125}, {"start": 1045.09, "end": 1045.59, "word": " sending", "probability": 0.58544921875}, {"start": 1045.59, "end": 1045.81, "word": " him", "probability": 0.44287109375}, {"start": 1045.81, "end": 1046.07, "word": " the", "probability": 0.488037109375}, {"start": 1046.07, "end": 1046.37, "word": " ID.", "probability": 0.42333984375}, {"start": 1047.23, "end": 1047.45, "word": " It", "probability": 0.7021484375}, {"start": 1047.45, "end": 1047.63, "word": " can", "probability": 0.47119140625}, {"start": 1047.63, "end": 1048.01, "word": " be", "probability": 0.90673828125}, {"start": 1048.01, "end": 1049.61, "word": " a", "probability": 0.318603515625}, {"start": 1049.61, "end": 1050.13, "word": " slash", "probability": 0.1575927734375}, {"start": 1050.13, "end": 1051.65, "word": " delivery.", "probability": 0.7587890625}, {"start": 1054.53, "end": 1054.65, "word": " Okay?", "probability": 0.2130126953125}, {"start": 1055.73, "end": 1056.37, "word": " The", "probability": 0.2236328125}, {"start": 1056.37, "end": 1057.33, "word": " point", "probability": 0.342041015625}, {"start": 1057.33, "end": 1057.59, "word": " is", "probability": 0.90478515625}, {"start": 1057.59, "end": 1057.93, "word": " that", "probability": 0.79931640625}, {"start": 1057.93, "end": 1058.57, "word": " mobile", "probability": 0.61669921875}, {"start": 1058.57, "end": 1059.21, "word": " applications", "probability": 0.7353515625}, {"start": 1059.21, "end": 1059.63, "word": " have", "probability": 0.90869140625}, {"start": 1059.63, "end": 1060.17, "word": " many", "probability": 0.625}, {"start": 1060.17, "end": 1060.17, "word": " screens,", "probability": 0.8564453125}, {"start": 1060.39, "end": 1060.47, "word": " and", "probability": 0.78466796875}, {"start": 1060.47, "end": 1060.63, "word": " each", "probability": 0.84033203125}, {"start": 1060.63, "end": 1060.89, "word": " screen", "probability": 0.8486328125}, {"start": 1060.89, "end": 1061.23, "word": " has", "probability": 0.3779296875}, {"start": 1061.23, "end": 1061.39, "word": " different", "probability": 0.75341796875}, {"start": 1061.39, "end": 1061.71, "word": " data.", "probability": 0.77880859375}, {"start": 1063.25, "end": 1063.89, "word": " So,", "probability": 0.2098388671875}, {"start": 1064.21, "end": 1064.53, "word": " each", "probability": 0.418212890625}, {"start": 1064.53, "end": 1064.61, "word": " different", "probability": 0.3505859375}, {"start": 1064.61, "end": 1064.93, "word": " data", "probability": 0.8974609375}, {"start": 1064.93, "end": 1065.51, "word": " that", "probability": 0.344970703125}, {"start": 1065.51, "end": 1065.55, "word": " he", "probability": 0.59521484375}, {"start": 1065.55, "end": 1065.71, "word": " wants", "probability": 0.380615234375}, {"start": 1065.71, "end": 1065.73, "word": " to", "probability": 0.7294921875}, {"start": 1065.73, "end": 1065.97, "word": " request", "probability": 0.5712890625}, {"start": 1065.97, "end": 1066.21, "word": " must", "probability": 0.481201171875}, {"start": 1066.21, "end": 1066.49, "word": " have", "probability": 0.8671875}, {"start": 1066.49, "end": 1066.59, "word": " a", "probability": 0.931640625}, {"start": 1066.59, "end": 1066.79, "word": " link.", "probability": 0.8779296875}], "temperature": 1.0}, {"id": 43, "seek": 109566, "start": 1067.9, "end": 1095.66, "text": " It's different, okay? For example, I might need to request a certain number of links during my application. 20 links, each link represents a different request for data. It's different, are you with me? This means that you want to go to the server and create how many pages? Approximately 20 pages in the number of links. So what did Valgate do? They created libraries that made it easier for us to know how to create a web service and how to download it.", "tokens": [467, 311, 819, 11, 1392, 30, 1171, 1365, 11, 286, 1062, 643, 281, 5308, 257, 1629, 1230, 295, 6123, 1830, 452, 3861, 13, 945, 6123, 11, 1184, 2113, 8855, 257, 819, 5308, 337, 1412, 13, 467, 311, 819, 11, 366, 291, 365, 385, 30, 639, 1355, 300, 291, 528, 281, 352, 281, 264, 7154, 293, 1884, 577, 867, 7183, 30, 29551, 3081, 1592, 945, 7183, 294, 264, 1230, 295, 6123, 13, 407, 437, 630, 7188, 22514, 360, 30, 814, 2942, 15148, 300, 1027, 309, 3571, 337, 505, 281, 458, 577, 281, 1884, 257, 3670, 2643, 293, 577, 281, 5484, 309, 13], "avg_logprob": -0.5159313737177381, "compression_ratio": 1.6789667896678966, "no_speech_prob": 5.602836608886719e-06, "words": [{"start": 1067.9, "end": 1068.04, "word": " It's", "probability": 0.248443603515625}, {"start": 1068.04, "end": 1068.32, "word": " different,", "probability": 0.7685546875}, {"start": 1068.68, "end": 1068.94, "word": " okay?", "probability": 0.267578125}, {"start": 1069.02, "end": 1069.48, "word": " For", "probability": 0.1680908203125}, {"start": 1069.48, "end": 1069.48, "word": " example,", "probability": 0.88671875}, {"start": 1069.48, "end": 1069.48, "word": " I", "probability": 0.7216796875}, {"start": 1069.48, "end": 1069.48, "word": " might", "probability": 0.2197265625}, {"start": 1069.48, "end": 1069.8, "word": " need", "probability": 0.71826171875}, {"start": 1069.8, "end": 1069.92, "word": " to", "probability": 0.89501953125}, {"start": 1069.92, "end": 1070.08, "word": " request", "probability": 0.6220703125}, {"start": 1070.08, "end": 1070.26, "word": " a", "probability": 0.1588134765625}, {"start": 1070.26, "end": 1070.34, "word": " certain", "probability": 0.30517578125}, {"start": 1070.34, "end": 1070.42, "word": " number", "probability": 0.755859375}, {"start": 1070.42, "end": 1070.42, "word": " of", "probability": 0.96826171875}, {"start": 1070.42, "end": 1070.62, "word": " links", "probability": 0.85693359375}, {"start": 1070.62, "end": 1071.18, "word": " during", "probability": 0.1998291015625}, {"start": 1071.18, "end": 1071.36, "word": " my", "probability": 0.77099609375}, {"start": 1071.36, "end": 1071.8, "word": " application.", "probability": 0.6767578125}, {"start": 1072.4, "end": 1072.9, "word": " 20", "probability": 0.4453125}, {"start": 1072.9, "end": 1073.28, "word": " links,", "probability": 0.857421875}, {"start": 1073.36, "end": 1073.54, "word": " each", "probability": 0.732421875}, {"start": 1073.54, "end": 1073.84, "word": " link", "probability": 0.8837890625}, {"start": 1073.84, "end": 1074.32, "word": " represents", "probability": 0.5927734375}, {"start": 1074.32, "end": 1075.2, "word": " a", "probability": 0.6328125}, {"start": 1075.2, "end": 1075.8, "word": " different", "probability": 0.6142578125}, {"start": 1075.8, "end": 1075.8, "word": " request", "probability": 0.7490234375}, {"start": 1075.8, "end": 1076.1, "word": " for", "probability": 0.74658203125}, {"start": 1076.1, "end": 1076.54, "word": " data.", "probability": 0.4716796875}, {"start": 1077.02, "end": 1077.12, "word": " It's", "probability": 0.52947998046875}, {"start": 1077.12, "end": 1077.38, "word": " different,", "probability": 0.87255859375}, {"start": 1077.56, "end": 1077.64, "word": " are", "probability": 0.357421875}, {"start": 1077.64, "end": 1077.64, "word": " you", "probability": 0.95166015625}, {"start": 1077.64, "end": 1077.96, "word": " with", "probability": 0.6796875}, {"start": 1077.96, "end": 1078.16, "word": " me?", "probability": 0.9609375}, {"start": 1078.56, "end": 1079.06, "word": " This", "probability": 0.58203125}, {"start": 1079.06, "end": 1079.34, "word": " means", "probability": 0.85546875}, {"start": 1079.34, "end": 1079.6, "word": " that", "probability": 0.70166015625}, {"start": 1079.6, "end": 1079.78, "word": " you", "probability": 0.71484375}, {"start": 1079.78, "end": 1079.94, "word": " want", "probability": 0.290283203125}, {"start": 1079.94, "end": 1080.06, "word": " to", "probability": 0.96630859375}, {"start": 1080.06, "end": 1080.18, "word": " go", "probability": 0.72021484375}, {"start": 1080.18, "end": 1080.26, "word": " to", "probability": 0.77001953125}, {"start": 1080.26, "end": 1080.36, "word": " the", "probability": 0.8173828125}, {"start": 1080.36, "end": 1080.6, "word": " server", "probability": 0.90966796875}, {"start": 1080.6, "end": 1080.76, "word": " and", "probability": 0.51220703125}, {"start": 1080.76, "end": 1080.9, "word": " create", "probability": 0.38525390625}, {"start": 1080.9, "end": 1081.1, "word": " how", "probability": 0.464599609375}, {"start": 1081.1, "end": 1081.14, "word": " many", "probability": 0.900390625}, {"start": 1081.14, "end": 1081.4, "word": " pages?", "probability": 0.85888671875}, {"start": 1083.1, "end": 1083.6, "word": " Approximately", "probability": 0.7511393229166666}, {"start": 1083.6, "end": 1083.94, "word": " 20", "probability": 0.82958984375}, {"start": 1083.94, "end": 1084.26, "word": " pages", "probability": 0.87451171875}, {"start": 1084.26, "end": 1084.72, "word": " in", "probability": 0.272216796875}, {"start": 1084.72, "end": 1084.84, "word": " the", "probability": 0.433837890625}, {"start": 1084.84, "end": 1084.88, "word": " number", "probability": 0.84423828125}, {"start": 1084.88, "end": 1085.06, "word": " of", "probability": 0.97216796875}, {"start": 1085.06, "end": 1085.3, "word": " links.", "probability": 0.9150390625}, {"start": 1085.66, "end": 1085.96, "word": " So", "probability": 0.865234375}, {"start": 1085.96, "end": 1086.14, "word": " what", "probability": 0.72265625}, {"start": 1086.14, "end": 1086.34, "word": " did", "probability": 0.89990234375}, {"start": 1086.34, "end": 1086.8, "word": " Valgate", "probability": 0.5416259765625}, {"start": 1086.8, "end": 1086.8, "word": " do?", "probability": 0.92529296875}, {"start": 1087.08, "end": 1087.24, "word": " They", "probability": 0.7451171875}, {"start": 1087.24, "end": 1087.46, "word": " created", "probability": 0.303955078125}, {"start": 1087.46, "end": 1088.06, "word": " libraries", "probability": 0.87841796875}, {"start": 1088.06, "end": 1089.5, "word": " that", "probability": 0.390380859375}, {"start": 1089.5, "end": 1089.6, "word": " made", "probability": 0.378662109375}, {"start": 1089.6, "end": 1089.6, "word": " it", "probability": 0.89013671875}, {"start": 1089.6, "end": 1089.92, "word": " easier", "probability": 0.88623046875}, {"start": 1089.92, "end": 1090.04, "word": " for", "probability": 0.85693359375}, {"start": 1090.04, "end": 1090.38, "word": " us", "probability": 0.91259765625}, {"start": 1090.38, "end": 1091.56, "word": " to", "probability": 0.8876953125}, {"start": 1091.56, "end": 1091.56, "word": " know", "probability": 0.1641845703125}, {"start": 1091.56, "end": 1091.98, "word": " how", "probability": 0.92041015625}, {"start": 1091.98, "end": 1092.14, "word": " to", "probability": 0.93701171875}, {"start": 1092.14, "end": 1092.38, "word": " create", "probability": 0.469482421875}, {"start": 1092.38, "end": 1092.5, "word": " a", "probability": 0.82421875}, {"start": 1092.5, "end": 1092.62, "word": " web", "probability": 0.82568359375}, {"start": 1092.62, "end": 1093.16, "word": " service", "probability": 0.890625}, {"start": 1093.16, "end": 1094.64, "word": " and", "probability": 0.69775390625}, {"start": 1094.64, "end": 1094.84, "word": " how", "probability": 0.78076171875}, {"start": 1094.84, "end": 1094.92, "word": " to", "probability": 0.94580078125}, {"start": 1094.92, "end": 1095.26, "word": " download", "probability": 0.1024169921875}, {"start": 1095.26, "end": 1095.66, "word": " it.", "probability": 0.80029296875}], "temperature": 1.0}, {"id": 44, "seek": 111236, "start": 1097.33, "end": 1112.37, "text": "I will make it simple for you. This is what you call in companies to make API. What is API? This name is not accurate. The word API is short for what?", "tokens": [40, 486, 652, 309, 2199, 337, 291, 13, 639, 307, 437, 291, 818, 294, 3431, 281, 652, 9362, 13, 708, 307, 9362, 30, 639, 1315, 307, 406, 8559, 13, 440, 1349, 9362, 307, 2099, 337, 437, 30], "avg_logprob": -0.706414498780903, "compression_ratio": 1.293103448275862, "no_speech_prob": 1.1682510375976562e-05, "words": [{"start": 1097.3300000000002, "end": 1097.89, "word": "I", "probability": 0.11322021484375}, {"start": 1097.89, "end": 1098.45, "word": " will", "probability": 0.317138671875}, {"start": 1098.45, "end": 1098.63, "word": " make", "probability": 0.1964111328125}, {"start": 1098.63, "end": 1099.03, "word": " it", "probability": 0.68212890625}, {"start": 1099.03, "end": 1099.03, "word": " simple", "probability": 0.450439453125}, {"start": 1099.03, "end": 1099.21, "word": " for", "probability": 0.64453125}, {"start": 1099.21, "end": 1099.91, "word": " you.", "probability": 0.9072265625}, {"start": 1100.49, "end": 1101.05, "word": " This", "probability": 0.1961669921875}, {"start": 1101.05, "end": 1101.13, "word": " is", "probability": 0.6591796875}, {"start": 1101.13, "end": 1101.19, "word": " what", "probability": 0.841796875}, {"start": 1101.19, "end": 1101.41, "word": " you", "probability": 0.4501953125}, {"start": 1101.41, "end": 1101.89, "word": " call", "probability": 0.71875}, {"start": 1101.89, "end": 1102.05, "word": " in", "probability": 0.7138671875}, {"start": 1102.05, "end": 1102.49, "word": " companies", "probability": 0.349609375}, {"start": 1102.49, "end": 1102.95, "word": " to", "probability": 0.2210693359375}, {"start": 1102.95, "end": 1103.15, "word": " make", "probability": 0.369873046875}, {"start": 1103.15, "end": 1103.69, "word": " API.", "probability": 0.48779296875}, {"start": 1104.57, "end": 1104.67, "word": " What", "probability": 0.266357421875}, {"start": 1104.67, "end": 1104.79, "word": " is", "probability": 0.515625}, {"start": 1104.79, "end": 1105.21, "word": " API?", "probability": 0.455810546875}, {"start": 1105.95, "end": 1106.27, "word": " This", "probability": 0.46435546875}, {"start": 1106.27, "end": 1106.55, "word": " name", "probability": 0.77001953125}, {"start": 1106.55, "end": 1106.79, "word": " is", "probability": 0.44970703125}, {"start": 1106.79, "end": 1107.05, "word": " not", "probability": 0.81689453125}, {"start": 1107.05, "end": 1107.39, "word": " accurate.", "probability": 0.48095703125}, {"start": 1107.69, "end": 1107.97, "word": " The", "probability": 0.235107421875}, {"start": 1107.97, "end": 1108.17, "word": " word", "probability": 0.77294921875}, {"start": 1108.17, "end": 1108.87, "word": " API", "probability": 0.896484375}, {"start": 1108.87, "end": 1111.69, "word": " is", "probability": 0.5107421875}, {"start": 1111.69, "end": 1111.91, "word": " short", "probability": 0.5419921875}, {"start": 1111.91, "end": 1112.13, "word": " for", "probability": 0.82666015625}, {"start": 1112.13, "end": 1112.37, "word": " what?", "probability": 0.6904296875}], "temperature": 1.0}, {"id": 45, "seek": 114339, "start": 1114.63, "end": 1143.39, "text": " Abstract Programmable Interface. It is a interface through which you connect to the application. Any library that you create and provide methods or classes that tell the client to use these classes and methods in order to execute the operations that you want, this is considered an API. When you say that you provide a simple class and simple methods through which the internal methods in the library are created, this is considered an API.", "tokens": [46853, 1897, 48244, 712, 5751, 2868, 13, 467, 307, 257, 9226, 807, 597, 291, 1745, 281, 264, 3861, 13, 2639, 6405, 300, 291, 1884, 293, 2893, 7150, 420, 5359, 300, 980, 264, 6423, 281, 764, 613, 5359, 293, 7150, 294, 1668, 281, 14483, 264, 7705, 300, 291, 528, 11, 341, 307, 4888, 364, 9362, 13, 1133, 291, 584, 300, 291, 2893, 257, 2199, 1508, 293, 2199, 7150, 807, 597, 264, 6920, 7150, 294, 264, 6405, 366, 2942, 11, 341, 307, 4888, 364, 9362, 13], "avg_logprob": -0.5569853193619672, "compression_ratio": 1.925764192139738, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 1114.63, "end": 1115.23, "word": " Abstract", "probability": 0.6177978515625}, {"start": 1115.23, "end": 1115.83, "word": " Programmable", "probability": 0.7227783203125}, {"start": 1115.83, "end": 1117.03, "word": " Interface.", "probability": 0.885986328125}, {"start": 1117.51, "end": 1117.81, "word": " It", "probability": 0.390869140625}, {"start": 1117.81, "end": 1118.11, "word": " is", "probability": 0.4755859375}, {"start": 1118.11, "end": 1118.29, "word": " a", "probability": 0.67626953125}, {"start": 1118.29, "end": 1118.85, "word": " interface", "probability": 0.271240234375}, {"start": 1118.85, "end": 1119.51, "word": " through", "probability": 0.52880859375}, {"start": 1119.51, "end": 1119.79, "word": " which", "probability": 0.94384765625}, {"start": 1119.79, "end": 1119.91, "word": " you", "probability": 0.432373046875}, {"start": 1119.91, "end": 1120.17, "word": " connect", "probability": 0.2344970703125}, {"start": 1120.17, "end": 1121.07, "word": " to", "probability": 0.7998046875}, {"start": 1121.07, "end": 1121.17, "word": " the", "probability": 0.71044921875}, {"start": 1121.17, "end": 1121.59, "word": " application.", "probability": 0.58203125}, {"start": 1122.77, "end": 1123.37, "word": " Any", "probability": 0.49267578125}, {"start": 1123.37, "end": 1123.87, "word": " library", "probability": 0.74462890625}, {"start": 1123.87, "end": 1124.07, "word": " that", "probability": 0.494873046875}, {"start": 1124.07, "end": 1124.13, "word": " you", "probability": 0.80078125}, {"start": 1124.13, "end": 1124.55, "word": " create", "probability": 0.15283203125}, {"start": 1124.55, "end": 1125.09, "word": " and", "probability": 0.583984375}, {"start": 1125.09, "end": 1125.47, "word": " provide", "probability": 0.43798828125}, {"start": 1125.47, "end": 1126.13, "word": " methods", "probability": 0.54833984375}, {"start": 1126.13, "end": 1126.37, "word": " or", "probability": 0.5966796875}, {"start": 1126.37, "end": 1126.91, "word": " classes", "probability": 0.91748046875}, {"start": 1126.91, "end": 1127.17, "word": " that", "probability": 0.358642578125}, {"start": 1127.17, "end": 1127.39, "word": " tell", "probability": 0.338134765625}, {"start": 1127.39, "end": 1127.61, "word": " the", "probability": 0.66455078125}, {"start": 1127.61, "end": 1127.97, "word": " client", "probability": 0.8232421875}, {"start": 1127.97, "end": 1128.15, "word": " to", "probability": 0.79736328125}, {"start": 1128.15, "end": 1128.47, "word": " use", "probability": 0.849609375}, {"start": 1128.47, "end": 1128.65, "word": " these", "probability": 0.400634765625}, {"start": 1128.65, "end": 1128.99, "word": " classes", "probability": 0.52587890625}, {"start": 1128.99, "end": 1129.21, "word": " and", "probability": 0.53271484375}, {"start": 1129.21, "end": 1129.59, "word": " methods", "probability": 0.86474609375}, {"start": 1129.59, "end": 1129.93, "word": " in", "probability": 0.2061767578125}, {"start": 1129.93, "end": 1129.95, "word": " order", "probability": 0.9072265625}, {"start": 1129.95, "end": 1130.17, "word": " to", "probability": 0.96484375}, {"start": 1130.17, "end": 1130.55, "word": " execute", "probability": 0.30517578125}, {"start": 1130.55, "end": 1130.73, "word": " the", "probability": 0.68701171875}, {"start": 1130.73, "end": 1131.09, "word": " operations", "probability": 0.5986328125}, {"start": 1131.09, "end": 1131.21, "word": " that", "probability": 0.3779296875}, {"start": 1131.21, "end": 1131.23, "word": " you", "probability": 0.787109375}, {"start": 1131.23, "end": 1131.49, "word": " want,", "probability": 0.73291015625}, {"start": 1131.85, "end": 1132.25, "word": " this", "probability": 0.448486328125}, {"start": 1132.25, "end": 1132.31, "word": " is", "probability": 0.873046875}, {"start": 1132.31, "end": 1132.59, "word": " considered", "probability": 0.65380859375}, {"start": 1132.59, "end": 1132.65, "word": " an", "probability": 0.63671875}, {"start": 1132.65, "end": 1132.87, "word": " API.", "probability": 0.93212890625}, {"start": 1134.35, "end": 1134.95, "word": " When", "probability": 0.06976318359375}, {"start": 1134.95, "end": 1135.63, "word": " you", "probability": 0.70361328125}, {"start": 1135.63, "end": 1135.95, "word": " say", "probability": 0.458984375}, {"start": 1135.95, "end": 1136.01, "word": " that", "probability": 0.4599609375}, {"start": 1136.01, "end": 1136.07, "word": " you", "probability": 0.61865234375}, {"start": 1136.07, "end": 1136.41, "word": " provide", "probability": 0.47265625}, {"start": 1136.41, "end": 1136.55, "word": " a", "probability": 0.6123046875}, {"start": 1136.55, "end": 1137.19, "word": " simple", "probability": 0.91748046875}, {"start": 1137.19, "end": 1137.19, "word": " class", "probability": 0.91748046875}, {"start": 1137.19, "end": 1137.89, "word": " and", "probability": 0.689453125}, {"start": 1137.89, "end": 1137.93, "word": " simple", "probability": 0.60888671875}, {"start": 1137.93, "end": 1138.43, "word": " methods", "probability": 0.92529296875}, {"start": 1138.43, "end": 1138.67, "word": " through", "probability": 0.6220703125}, {"start": 1138.67, "end": 1139.05, "word": " which", "probability": 0.9404296875}, {"start": 1139.05, "end": 1140.71, "word": " the", "probability": 0.40087890625}, {"start": 1140.71, "end": 1141.05, "word": " internal", "probability": 0.6201171875}, {"start": 1141.05, "end": 1141.35, "word": " methods", "probability": 0.88232421875}, {"start": 1141.35, "end": 1141.91, "word": " in", "probability": 0.248779296875}, {"start": 1141.91, "end": 1142.03, "word": " the", "probability": 0.89306640625}, {"start": 1142.03, "end": 1142.31, "word": " library", "probability": 0.93212890625}, {"start": 1142.31, "end": 1142.31, "word": " are", "probability": 0.448974609375}, {"start": 1142.31, "end": 1142.31, "word": " created,", "probability": 0.2003173828125}, {"start": 1142.61, "end": 1142.71, "word": " this", "probability": 0.81103515625}, {"start": 1142.71, "end": 1142.87, "word": " is", "probability": 0.91552734375}, {"start": 1142.87, "end": 1143.09, "word": " considered", "probability": 0.7490234375}, {"start": 1143.09, "end": 1143.21, "word": " an", "probability": 0.87353515625}, {"start": 1143.21, "end": 1143.39, "word": " API.", "probability": 0.9228515625}], "temperature": 1.0}, {"id": 46, "seek": 116838, "start": 1145.02, "end": 1168.38, "text": " Why do I call it abstract? Because it's simplified. Okay? Short, miraculous. Okay? The API we use for any interface, for any programming interface, for a library that I use locally or on the server, this is considered an API. Okay? But what did they call it? It started to express itself on the web service and call it API. Okay? It's true that you make a programming interface,", "tokens": [1545, 360, 286, 818, 309, 12649, 30, 1436, 309, 311, 26335, 13, 1033, 30, 16881, 11, 41101, 13, 1033, 30, 440, 9362, 321, 764, 337, 604, 9226, 11, 337, 604, 9410, 9226, 11, 337, 257, 6405, 300, 286, 764, 16143, 420, 322, 264, 7154, 11, 341, 307, 4888, 364, 9362, 13, 1033, 30, 583, 437, 630, 436, 818, 309, 30, 467, 1409, 281, 5109, 2564, 322, 264, 3670, 2643, 293, 818, 309, 9362, 13, 1033, 30, 467, 311, 2074, 300, 291, 652, 257, 9410, 9226, 11], "avg_logprob": -0.5319683866939325, "compression_ratio": 1.6995515695067265, "no_speech_prob": 3.635883331298828e-06, "words": [{"start": 1145.02, "end": 1145.52, "word": " Why", "probability": 0.0765380859375}, {"start": 1145.52, "end": 1146.02, "word": " do", "probability": 0.1580810546875}, {"start": 1146.02, "end": 1146.02, "word": " I", "probability": 0.68603515625}, {"start": 1146.02, "end": 1146.02, "word": " call", "probability": 0.481689453125}, {"start": 1146.02, "end": 1146.12, "word": " it", "probability": 0.75244140625}, {"start": 1146.12, "end": 1146.42, "word": " abstract?", "probability": 0.6123046875}, {"start": 1146.66, "end": 1146.72, "word": " Because", "probability": 0.452880859375}, {"start": 1146.72, "end": 1146.82, "word": " it's", "probability": 0.6490478515625}, {"start": 1146.82, "end": 1147.26, "word": " simplified.", "probability": 0.27197265625}, {"start": 1148.04, "end": 1148.26, "word": " Okay?", "probability": 0.1944580078125}, {"start": 1148.62, "end": 1149.02, "word": " Short,", "probability": 0.1788330078125}, {"start": 1149.18, "end": 1149.52, "word": " miraculous.", "probability": 0.44287109375}, {"start": 1150.08, "end": 1150.32, "word": " Okay?", "probability": 0.69287109375}, {"start": 1151.68, "end": 1151.8, "word": " The", "probability": 0.336181640625}, {"start": 1151.8, "end": 1152.48, "word": " API", "probability": 0.88134765625}, {"start": 1152.48, "end": 1152.82, "word": " we", "probability": 0.39990234375}, {"start": 1152.82, "end": 1153.2, "word": " use", "probability": 0.87158203125}, {"start": 1153.2, "end": 1153.42, "word": " for", "probability": 0.712890625}, {"start": 1153.42, "end": 1153.6, "word": " any", "probability": 0.90234375}, {"start": 1153.6, "end": 1154.16, "word": " interface,", "probability": 0.8134765625}, {"start": 1154.28, "end": 1154.32, "word": " for", "probability": 0.51806640625}, {"start": 1154.32, "end": 1155.02, "word": " any", "probability": 0.90771484375}, {"start": 1155.02, "end": 1155.62, "word": " programming", "probability": 0.35302734375}, {"start": 1155.62, "end": 1155.76, "word": " interface,", "probability": 0.5908203125}, {"start": 1155.92, "end": 1155.98, "word": " for", "probability": 0.75537109375}, {"start": 1155.98, "end": 1156.06, "word": " a", "probability": 0.68505859375}, {"start": 1156.06, "end": 1156.36, "word": " library", "probability": 0.6044921875}, {"start": 1156.36, "end": 1156.52, "word": " that", "probability": 0.2471923828125}, {"start": 1156.52, "end": 1156.58, "word": " I", "probability": 0.71923828125}, {"start": 1156.58, "end": 1156.84, "word": " use", "probability": 0.82763671875}, {"start": 1156.84, "end": 1157.2, "word": " locally", "probability": 0.7275390625}, {"start": 1157.2, "end": 1157.5, "word": " or", "probability": 0.83154296875}, {"start": 1157.5, "end": 1157.62, "word": " on", "probability": 0.8818359375}, {"start": 1157.62, "end": 1157.72, "word": " the", "probability": 0.6298828125}, {"start": 1157.72, "end": 1158.08, "word": " server,", "probability": 0.93408203125}, {"start": 1158.44, "end": 1158.58, "word": " this", "probability": 0.50439453125}, {"start": 1158.58, "end": 1158.68, "word": " is", "probability": 0.91796875}, {"start": 1158.68, "end": 1158.94, "word": " considered", "probability": 0.7314453125}, {"start": 1158.94, "end": 1159.06, "word": " an", "probability": 0.482177734375}, {"start": 1159.06, "end": 1159.24, "word": " API.", "probability": 0.92431640625}, {"start": 1159.88, "end": 1160.1, "word": " Okay?", "probability": 0.74951171875}, {"start": 1160.46, "end": 1160.78, "word": " But", "probability": 0.90625}, {"start": 1160.78, "end": 1160.92, "word": " what", "probability": 0.7119140625}, {"start": 1160.92, "end": 1160.92, "word": " did", "probability": 0.86474609375}, {"start": 1160.92, "end": 1160.98, "word": " they", "probability": 0.892578125}, {"start": 1160.98, "end": 1161.26, "word": " call", "probability": 0.1458740234375}, {"start": 1161.26, "end": 1161.52, "word": " it?", "probability": 0.93408203125}, {"start": 1162.32, "end": 1162.82, "word": " It", "probability": 0.52587890625}, {"start": 1162.82, "end": 1162.82, "word": " started", "probability": 0.31298828125}, {"start": 1162.82, "end": 1163.02, "word": " to", "probability": 0.62109375}, {"start": 1163.02, "end": 1163.38, "word": " express", "probability": 0.52880859375}, {"start": 1163.38, "end": 1163.44, "word": " itself", "probability": 0.342529296875}, {"start": 1163.44, "end": 1163.56, "word": " on", "probability": 0.36181640625}, {"start": 1163.56, "end": 1163.64, "word": " the", "probability": 0.81982421875}, {"start": 1163.64, "end": 1163.78, "word": " web", "probability": 0.85009765625}, {"start": 1163.78, "end": 1164.12, "word": " service", "probability": 0.79150390625}, {"start": 1164.12, "end": 1164.26, "word": " and", "probability": 0.6103515625}, {"start": 1164.26, "end": 1164.34, "word": " call", "probability": 0.264404296875}, {"start": 1164.34, "end": 1164.46, "word": " it", "probability": 0.87158203125}, {"start": 1164.46, "end": 1164.76, "word": " API.", "probability": 0.75244140625}, {"start": 1165.9, "end": 1166.14, "word": " Okay?", "probability": 0.7890625}, {"start": 1166.6, "end": 1166.92, "word": " It's", "probability": 0.458984375}, {"start": 1166.92, "end": 1167.16, "word": " true", "probability": 0.62158203125}, {"start": 1167.16, "end": 1167.28, "word": " that", "probability": 0.8515625}, {"start": 1167.28, "end": 1167.4, "word": " you", "probability": 0.931640625}, {"start": 1167.4, "end": 1167.66, "word": " make", "probability": 0.37939453125}, {"start": 1167.66, "end": 1168.06, "word": " a", "probability": 0.86572265625}, {"start": 1168.06, "end": 1168.32, "word": " programming", "probability": 0.615234375}, {"start": 1168.32, "end": 1168.38, "word": " interface,", "probability": 0.94775390625}], "temperature": 1.0}, {"id": 47, "seek": 119566, "start": 1169.7, "end": 1195.66, "text": " Right? In the end, so that you can connect to the server from your mobile device. But in the end, we call it a web service. The word API is more general than that. Anyway, let's go back to our topic. Did you notice that making a web service is a bit difficult? Because you really want to have 20 different links and each link has 20 pages facing the server. So they made libraries on the server to facilitate the creation of web services.", "tokens": [1779, 30, 682, 264, 917, 11, 370, 300, 291, 393, 1745, 281, 264, 7154, 490, 428, 6013, 4302, 13, 583, 294, 264, 917, 11, 321, 818, 309, 257, 3670, 2643, 13, 440, 1349, 9362, 307, 544, 2674, 813, 300, 13, 5684, 11, 718, 311, 352, 646, 281, 527, 4829, 13, 2589, 291, 3449, 300, 1455, 257, 3670, 2643, 307, 257, 857, 2252, 30, 1436, 291, 534, 528, 281, 362, 945, 819, 6123, 293, 1184, 2113, 575, 945, 7183, 7170, 264, 7154, 13, 407, 436, 1027, 15148, 322, 264, 7154, 281, 20207, 264, 8016, 295, 3670, 3328, 13], "avg_logprob": -0.3992346808010218, "compression_ratio": 1.681992337164751, "no_speech_prob": 1.8477439880371094e-05, "words": [{"start": 1169.7, "end": 1170.14, "word": " Right?", "probability": 0.254638671875}, {"start": 1170.52, "end": 1170.66, "word": " In", "probability": 0.347900390625}, {"start": 1170.66, "end": 1170.74, "word": " the", "probability": 0.6279296875}, {"start": 1170.74, "end": 1170.96, "word": " end,", "probability": 0.87060546875}, {"start": 1171.1, "end": 1171.32, "word": " so", "probability": 0.299560546875}, {"start": 1171.32, "end": 1171.88, "word": " that", "probability": 0.61279296875}, {"start": 1171.88, "end": 1172.02, "word": " you", "probability": 0.8984375}, {"start": 1172.02, "end": 1172.62, "word": " can", "probability": 0.8779296875}, {"start": 1172.62, "end": 1172.7, "word": " connect", "probability": 0.204345703125}, {"start": 1172.7, "end": 1172.7, "word": " to", "probability": 0.59326171875}, {"start": 1172.7, "end": 1172.7, "word": " the", "probability": 0.79638671875}, {"start": 1172.7, "end": 1172.7, "word": " server", "probability": 0.8994140625}, {"start": 1172.7, "end": 1172.74, "word": " from", "probability": 0.630859375}, {"start": 1172.74, "end": 1172.84, "word": " your", "probability": 0.48046875}, {"start": 1172.84, "end": 1173.04, "word": " mobile", "probability": 0.86376953125}, {"start": 1173.04, "end": 1173.46, "word": " device.", "probability": 0.90087890625}, {"start": 1174.94, "end": 1175.38, "word": " But", "probability": 0.471435546875}, {"start": 1175.38, "end": 1175.54, "word": " in", "probability": 0.61083984375}, {"start": 1175.54, "end": 1175.66, "word": " the", "probability": 0.91796875}, {"start": 1175.66, "end": 1175.88, "word": " end,", "probability": 0.916015625}, {"start": 1176.12, "end": 1176.22, "word": " we", "probability": 0.9033203125}, {"start": 1176.22, "end": 1176.46, "word": " call", "probability": 0.8515625}, {"start": 1176.46, "end": 1176.66, "word": " it", "probability": 0.8447265625}, {"start": 1176.66, "end": 1176.72, "word": " a", "probability": 0.253662109375}, {"start": 1176.72, "end": 1176.8, "word": " web", "probability": 0.7421875}, {"start": 1176.8, "end": 1177.24, "word": " service.", "probability": 0.88134765625}, {"start": 1178.2, "end": 1178.64, "word": " The", "probability": 0.27099609375}, {"start": 1178.64, "end": 1178.88, "word": " word", "probability": 0.59765625}, {"start": 1178.88, "end": 1179.32, "word": " API", "probability": 0.87939453125}, {"start": 1179.32, "end": 1179.48, "word": " is", "probability": 0.546875}, {"start": 1179.48, "end": 1179.5, "word": " more", "probability": 0.48046875}, {"start": 1179.5, "end": 1179.84, "word": " general", "probability": 0.5390625}, {"start": 1179.84, "end": 1180.6, "word": " than", "probability": 0.88818359375}, {"start": 1180.6, "end": 1180.96, "word": " that.", "probability": 0.489013671875}, {"start": 1181.16, "end": 1181.42, "word": " Anyway,", "probability": 0.47314453125}, {"start": 1181.56, "end": 1181.66, "word": " let's", "probability": 0.868408203125}, {"start": 1181.66, "end": 1181.76, "word": " go", "probability": 0.36181640625}, {"start": 1181.76, "end": 1181.8, "word": " back", "probability": 0.86865234375}, {"start": 1181.8, "end": 1181.86, "word": " to", "probability": 0.9580078125}, {"start": 1181.86, "end": 1181.92, "word": " our", "probability": 0.76611328125}, {"start": 1181.92, "end": 1182.14, "word": " topic.", "probability": 0.615234375}, {"start": 1182.64, "end": 1182.72, "word": " Did", "probability": 0.33154296875}, {"start": 1182.72, "end": 1182.94, "word": " you", "probability": 0.96923828125}, {"start": 1182.94, "end": 1182.94, "word": " notice", "probability": 0.29052734375}, {"start": 1182.94, "end": 1183.14, "word": " that", "probability": 0.70166015625}, {"start": 1183.14, "end": 1183.28, "word": " making", "probability": 0.343505859375}, {"start": 1183.28, "end": 1183.44, "word": " a", "probability": 0.8232421875}, {"start": 1183.44, "end": 1183.62, "word": " web", "probability": 0.916015625}, {"start": 1183.62, "end": 1183.94, "word": " service", "probability": 0.8798828125}, {"start": 1183.94, "end": 1184.04, "word": " is", "probability": 0.7509765625}, {"start": 1184.04, "end": 1184.24, "word": " a", "probability": 0.705078125}, {"start": 1184.24, "end": 1184.4, "word": " bit", "probability": 0.6083984375}, {"start": 1184.4, "end": 1184.4, "word": " difficult?", "probability": 0.79296875}, {"start": 1185.0, "end": 1185.24, "word": " Because", "probability": 0.86865234375}, {"start": 1185.24, "end": 1185.48, "word": " you", "probability": 0.84912109375}, {"start": 1185.48, "end": 1185.78, "word": " really", "probability": 0.564453125}, {"start": 1185.78, "end": 1186.46, "word": " want", "probability": 0.285888671875}, {"start": 1186.46, "end": 1186.54, "word": " to", "probability": 0.90234375}, {"start": 1186.54, "end": 1186.78, "word": " have", "probability": 0.93359375}, {"start": 1186.78, "end": 1187.44, "word": " 20", "probability": 0.63134765625}, {"start": 1187.44, "end": 1187.56, "word": " different", "probability": 0.82666015625}, {"start": 1187.56, "end": 1187.78, "word": " links", "probability": 0.57080078125}, {"start": 1187.78, "end": 1188.42, "word": " and", "probability": 0.44140625}, {"start": 1188.42, "end": 1188.64, "word": " each", "probability": 0.91650390625}, {"start": 1188.64, "end": 1188.86, "word": " link", "probability": 0.93994140625}, {"start": 1188.86, "end": 1189.02, "word": " has", "probability": 0.78515625}, {"start": 1189.02, "end": 1189.34, "word": " 20", "probability": 0.8388671875}, {"start": 1189.34, "end": 1189.76, "word": " pages", "probability": 0.85400390625}, {"start": 1189.76, "end": 1190.56, "word": " facing", "probability": 0.26806640625}, {"start": 1190.56, "end": 1190.8, "word": " the", "probability": 0.8955078125}, {"start": 1190.8, "end": 1191.04, "word": " server.", "probability": 0.92333984375}, {"start": 1191.44, "end": 1191.52, "word": " So", "probability": 0.8076171875}, {"start": 1191.52, "end": 1191.58, "word": " they", "probability": 0.6513671875}, {"start": 1191.58, "end": 1191.72, "word": " made", "probability": 0.5498046875}, {"start": 1191.72, "end": 1192.12, "word": " libraries", "probability": 0.892578125}, {"start": 1192.12, "end": 1192.38, "word": " on", "probability": 0.89794921875}, {"start": 1192.38, "end": 1192.48, "word": " the", "probability": 0.92041015625}, {"start": 1192.48, "end": 1192.8, "word": " server", "probability": 0.93017578125}, {"start": 1192.8, "end": 1193.26, "word": " to", "probability": 0.88330078125}, {"start": 1193.26, "end": 1193.72, "word": " facilitate", "probability": 0.904296875}, {"start": 1193.72, "end": 1193.86, "word": " the", "probability": 0.84716796875}, {"start": 1193.86, "end": 1194.16, "word": " creation", "probability": 0.442138671875}, {"start": 1194.16, "end": 1195.08, "word": " of", "probability": 0.97607421875}, {"start": 1195.08, "end": 1195.26, "word": " web", "probability": 0.85546875}, {"start": 1195.26, "end": 1195.66, "word": " services.", "probability": 0.939453125}], "temperature": 1.0}, {"id": 48, "seek": 122568, "start": 1196.28, "end": 1225.68, "text": " Of course, it varies. Those who work on Marvel have a certain way of doing it Those who work on Node.js have a different way Those who work on Javaspring have a third way, okay? It's all simply a simple process. What did they do? They all work in almost the same way What do you do on the server? I'll tell you where we're going The framework that was created on the server told you that in order to do the API or the web service, go and create a class called, for example, MyService", "tokens": [2720, 1164, 11, 309, 21716, 13, 3950, 567, 589, 322, 13837, 362, 257, 1629, 636, 295, 884, 309, 3950, 567, 589, 322, 38640, 13, 25530, 362, 257, 819, 636, 3950, 567, 589, 322, 508, 37331, 1424, 278, 362, 257, 2636, 636, 11, 1392, 30, 467, 311, 439, 2935, 257, 2199, 1399, 13, 708, 630, 436, 360, 30, 814, 439, 589, 294, 1920, 264, 912, 636, 708, 360, 291, 360, 322, 264, 7154, 30, 286, 603, 980, 291, 689, 321, 434, 516, 440, 8388, 300, 390, 2942, 322, 264, 7154, 1907, 291, 300, 294, 1668, 281, 360, 264, 9362, 420, 264, 3670, 2643, 11, 352, 293, 1884, 257, 1508, 1219, 11, 337, 1365, 11, 1222, 50, 25006], "avg_logprob": -0.506410258448022, "compression_ratio": 1.7536231884057971, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 1196.28, "end": 1196.52, "word": " Of", "probability": 0.28759765625}, {"start": 1196.52, "end": 1196.6, "word": " course,", "probability": 0.93603515625}, {"start": 1196.76, "end": 1196.78, "word": " it", "probability": 0.58642578125}, {"start": 1196.78, "end": 1197.08, "word": " varies.", "probability": 0.3740234375}, {"start": 1197.26, "end": 1197.66, "word": " Those", "probability": 0.2178955078125}, {"start": 1197.66, "end": 1197.72, "word": " who", "probability": 0.7529296875}, {"start": 1197.72, "end": 1197.96, "word": " work", "probability": 0.4541015625}, {"start": 1197.96, "end": 1198.06, "word": " on", "probability": 0.3017578125}, {"start": 1198.06, "end": 1198.38, "word": " Marvel", "probability": 0.1497802734375}, {"start": 1198.38, "end": 1199.32, "word": " have", "probability": 0.4033203125}, {"start": 1199.32, "end": 1199.46, "word": " a", "probability": 0.54638671875}, {"start": 1199.46, "end": 1199.8, "word": " certain", "probability": 0.30615234375}, {"start": 1199.8, "end": 1200.02, "word": " way", "probability": 0.556640625}, {"start": 1200.02, "end": 1200.18, "word": " of", "probability": 0.475341796875}, {"start": 1200.18, "end": 1200.36, "word": " doing", "probability": 0.71923828125}, {"start": 1200.36, "end": 1200.54, "word": " it", "probability": 0.818359375}, {"start": 1200.54, "end": 1200.94, "word": " Those", "probability": 0.470458984375}, {"start": 1200.94, "end": 1201.0, "word": " who", "probability": 0.85009765625}, {"start": 1201.0, "end": 1201.24, "word": " work", "probability": 0.857421875}, {"start": 1201.24, "end": 1201.34, "word": " on", "probability": 0.88037109375}, {"start": 1201.34, "end": 1201.58, "word": " Node", "probability": 0.393310546875}, {"start": 1201.58, "end": 1201.8, "word": ".js", "probability": 0.6954345703125}, {"start": 1201.8, "end": 1202.1, "word": " have", "probability": 0.79248046875}, {"start": 1202.1, "end": 1202.22, "word": " a", "probability": 0.49169921875}, {"start": 1202.22, "end": 1202.66, "word": " different", "probability": 0.7763671875}, {"start": 1202.66, "end": 1202.66, "word": " way", "probability": 0.8681640625}, {"start": 1202.66, "end": 1203.2, "word": " Those", "probability": 0.423095703125}, {"start": 1203.2, "end": 1203.36, "word": " who", "probability": 0.8984375}, {"start": 1203.36, "end": 1203.64, "word": " work", "probability": 0.88818359375}, {"start": 1203.64, "end": 1203.8, "word": " on", "probability": 0.92529296875}, {"start": 1203.8, "end": 1204.74, "word": " Javaspring", "probability": 0.798828125}, {"start": 1204.74, "end": 1204.9, "word": " have", "probability": 0.884765625}, {"start": 1204.9, "end": 1205.18, "word": " a", "probability": 0.94189453125}, {"start": 1205.18, "end": 1205.42, "word": " third", "probability": 0.7001953125}, {"start": 1205.42, "end": 1205.52, "word": " way,", "probability": 0.8837890625}, {"start": 1205.8, "end": 1206.22, "word": " okay?", "probability": 0.307373046875}, {"start": 1206.68, "end": 1207.0, "word": " It's", "probability": 0.61865234375}, {"start": 1207.0, "end": 1207.24, "word": " all", "probability": 0.7119140625}, {"start": 1207.24, "end": 1208.0, "word": " simply", "probability": 0.353759765625}, {"start": 1208.0, "end": 1208.66, "word": " a", "probability": 0.84033203125}, {"start": 1208.66, "end": 1208.66, "word": " simple", "probability": 0.94140625}, {"start": 1208.66, "end": 1209.2, "word": " process.", "probability": 0.8349609375}, {"start": 1209.46, "end": 1209.62, "word": " What", "probability": 0.7529296875}, {"start": 1209.62, "end": 1209.68, "word": " did", "probability": 0.64892578125}, {"start": 1209.68, "end": 1209.68, "word": " they", "probability": 0.87109375}, {"start": 1209.68, "end": 1209.9, "word": " do?", "probability": 0.94970703125}, {"start": 1210.3, "end": 1210.64, "word": " They", "probability": 0.53662109375}, {"start": 1210.64, "end": 1210.64, "word": " all", "probability": 0.82861328125}, {"start": 1210.64, "end": 1211.04, "word": " work", "probability": 0.68017578125}, {"start": 1211.04, "end": 1211.26, "word": " in", "probability": 0.448486328125}, {"start": 1211.26, "end": 1211.62, "word": " almost", "probability": 0.3076171875}, {"start": 1211.62, "end": 1211.82, "word": " the", "probability": 0.90869140625}, {"start": 1211.82, "end": 1211.96, "word": " same", "probability": 0.90478515625}, {"start": 1211.96, "end": 1212.4, "word": " way", "probability": 0.9423828125}, {"start": 1212.4, "end": 1213.14, "word": " What", "probability": 0.58544921875}, {"start": 1213.14, "end": 1213.26, "word": " do", "probability": 0.90771484375}, {"start": 1213.26, "end": 1213.32, "word": " you", "probability": 0.96484375}, {"start": 1213.32, "end": 1213.46, "word": " do", "probability": 0.9482421875}, {"start": 1213.46, "end": 1213.76, "word": " on", "probability": 0.90869140625}, {"start": 1213.76, "end": 1213.86, "word": " the", "probability": 0.83935546875}, {"start": 1213.86, "end": 1214.14, "word": " server?", "probability": 0.9208984375}, {"start": 1214.2, "end": 1214.32, "word": " I'll", "probability": 0.25238037109375}, {"start": 1214.32, "end": 1214.4, "word": " tell", "probability": 0.8544921875}, {"start": 1214.4, "end": 1214.48, "word": " you", "probability": 0.96533203125}, {"start": 1214.48, "end": 1214.76, "word": " where", "probability": 0.65283203125}, {"start": 1214.76, "end": 1214.92, "word": " we're", "probability": 0.4140625}, {"start": 1214.92, "end": 1215.1, "word": " going", "probability": 0.90966796875}, {"start": 1215.1, "end": 1215.74, "word": " The", "probability": 0.45361328125}, {"start": 1215.74, "end": 1216.18, "word": " framework", "probability": 0.69384765625}, {"start": 1216.18, "end": 1216.36, "word": " that", "probability": 0.38134765625}, {"start": 1216.36, "end": 1216.62, "word": " was", "probability": 0.1961669921875}, {"start": 1216.62, "end": 1216.72, "word": " created", "probability": 0.56689453125}, {"start": 1216.72, "end": 1216.9, "word": " on", "probability": 0.8662109375}, {"start": 1216.9, "end": 1217.04, "word": " the", "probability": 0.89697265625}, {"start": 1217.04, "end": 1217.34, "word": " server", "probability": 0.92626953125}, {"start": 1217.34, "end": 1217.96, "word": " told", "probability": 0.169677734375}, {"start": 1217.96, "end": 1218.16, "word": " you", "probability": 0.765625}, {"start": 1218.16, "end": 1218.4, "word": " that", "probability": 0.26318359375}, {"start": 1218.4, "end": 1218.48, "word": " in", "probability": 0.484619140625}, {"start": 1218.48, "end": 1218.58, "word": " order", "probability": 0.9189453125}, {"start": 1218.58, "end": 1218.7, "word": " to", "probability": 0.96875}, {"start": 1218.7, "end": 1218.98, "word": " do", "probability": 0.416259765625}, {"start": 1218.98, "end": 1220.32, "word": " the", "probability": 0.458251953125}, {"start": 1220.32, "end": 1220.7, "word": " API", "probability": 0.896484375}, {"start": 1220.7, "end": 1221.08, "word": " or", "probability": 0.73193359375}, {"start": 1221.08, "end": 1221.18, "word": " the", "probability": 0.35693359375}, {"start": 1221.18, "end": 1221.32, "word": " web", "probability": 0.8193359375}, {"start": 1221.32, "end": 1221.82, "word": " service,", "probability": 0.8994140625}, {"start": 1222.02, "end": 1222.18, "word": " go", "probability": 0.65673828125}, {"start": 1222.18, "end": 1222.28, "word": " and", "probability": 0.60498046875}, {"start": 1222.28, "end": 1222.4, "word": " create", "probability": 0.359375}, {"start": 1222.4, "end": 1222.52, "word": " a", "probability": 0.98779296875}, {"start": 1222.52, "end": 1222.88, "word": " class", "probability": 0.9794921875}, {"start": 1222.88, "end": 1224.62, "word": " called,", "probability": 0.3115234375}, {"start": 1224.78, "end": 1225.0, "word": " for", "probability": 0.9287109375}, {"start": 1225.0, "end": 1225.0, "word": " example,", "probability": 0.951171875}, {"start": 1225.02, "end": 1225.68, "word": " MyService", "probability": 0.7132975260416666}], "temperature": 1.0}, {"id": 49, "seek": 125228, "start": 1230.08, "end": 1252.28, "text": " How many requests do I have to make? 20 requests. Each request is represented by a method. For example, make a request called get product. And this method takes what? String id. Regardless of whether it is Java or not. And this method, where did I turn it on? Did I find it?", "tokens": [1012, 867, 12475, 360, 286, 362, 281, 652, 30, 945, 12475, 13, 6947, 5308, 307, 10379, 538, 257, 3170, 13, 1171, 1365, 11, 652, 257, 5308, 1219, 483, 1674, 13, 400, 341, 3170, 2516, 437, 30, 745, 2937, 4496, 13, 25148, 295, 1968, 309, 307, 10745, 420, 406, 13, 400, 341, 3170, 11, 689, 630, 286, 1261, 309, 322, 30, 2589, 286, 915, 309, 30], "avg_logprob": -0.5411931917522893, "compression_ratio": 1.5193370165745856, "no_speech_prob": 2.7418136596679688e-06, "words": [{"start": 1230.08, "end": 1230.6, "word": " How", "probability": 0.09161376953125}, {"start": 1230.6, "end": 1231.12, "word": " many", "probability": 0.88134765625}, {"start": 1231.12, "end": 1231.32, "word": " requests", "probability": 0.406982421875}, {"start": 1231.32, "end": 1231.42, "word": " do", "probability": 0.394775390625}, {"start": 1231.42, "end": 1231.42, "word": " I", "probability": 0.75634765625}, {"start": 1231.42, "end": 1231.56, "word": " have", "probability": 0.376953125}, {"start": 1231.56, "end": 1231.56, "word": " to", "probability": 0.93896484375}, {"start": 1231.56, "end": 1231.8, "word": " make?", "probability": 0.431884765625}, {"start": 1232.72, "end": 1233.24, "word": " 20", "probability": 0.56982421875}, {"start": 1233.24, "end": 1233.74, "word": " requests.", "probability": 0.64111328125}, {"start": 1233.84, "end": 1234.36, "word": " Each", "probability": 0.5419921875}, {"start": 1234.36, "end": 1234.66, "word": " request", "probability": 0.85400390625}, {"start": 1234.66, "end": 1234.82, "word": " is", "probability": 0.461181640625}, {"start": 1234.82, "end": 1234.98, "word": " represented", "probability": 0.650390625}, {"start": 1234.98, "end": 1235.08, "word": " by", "probability": 0.81591796875}, {"start": 1235.08, "end": 1235.16, "word": " a", "probability": 0.7705078125}, {"start": 1235.16, "end": 1235.4, "word": " method.", "probability": 0.95166015625}, {"start": 1236.68, "end": 1237.2, "word": " For", "probability": 0.603515625}, {"start": 1237.2, "end": 1237.58, "word": " example,", "probability": 0.91455078125}, {"start": 1237.86, "end": 1238.08, "word": " make", "probability": 0.5087890625}, {"start": 1238.08, "end": 1238.36, "word": " a", "probability": 0.638671875}, {"start": 1238.36, "end": 1238.56, "word": " request", "probability": 0.94091796875}, {"start": 1238.56, "end": 1238.9, "word": " called", "probability": 0.29150390625}, {"start": 1238.9, "end": 1239.24, "word": " get", "probability": 0.5107421875}, {"start": 1239.24, "end": 1241.18, "word": " product.", "probability": 0.426513671875}, {"start": 1242.36, "end": 1242.62, "word": " And", "probability": 0.52587890625}, {"start": 1242.62, "end": 1242.8, "word": " this", "probability": 0.5888671875}, {"start": 1242.8, "end": 1243.08, "word": " method", "probability": 0.9580078125}, {"start": 1243.08, "end": 1243.34, "word": " takes", "probability": 0.6640625}, {"start": 1243.34, "end": 1243.66, "word": " what?", "probability": 0.306640625}, {"start": 1243.9, "end": 1244.42, "word": " String", "probability": 0.783203125}, {"start": 1244.42, "end": 1246.26, "word": " id.", "probability": 0.2452392578125}, {"start": 1246.62, "end": 1246.82, "word": " Regardless", "probability": 0.65576171875}, {"start": 1246.82, "end": 1247.0, "word": " of", "probability": 0.470458984375}, {"start": 1247.0, "end": 1247.24, "word": " whether", "probability": 0.42529296875}, {"start": 1247.24, "end": 1247.24, "word": " it", "probability": 0.6767578125}, {"start": 1247.24, "end": 1247.24, "word": " is", "probability": 0.587890625}, {"start": 1247.24, "end": 1247.48, "word": " Java", "probability": 0.638671875}, {"start": 1247.48, "end": 1247.68, "word": " or", "probability": 0.81396484375}, {"start": 1247.68, "end": 1248.16, "word": " not.", "probability": 0.70263671875}, {"start": 1249.02, "end": 1249.14, "word": " And", "probability": 0.5556640625}, {"start": 1249.14, "end": 1249.4, "word": " this", "probability": 0.7978515625}, {"start": 1249.4, "end": 1249.88, "word": " method,", "probability": 0.95068359375}, {"start": 1251.06, "end": 1251.34, "word": " where", "probability": 0.41162109375}, {"start": 1251.34, "end": 1251.34, "word": " did", "probability": 0.56787109375}, {"start": 1251.34, "end": 1251.56, "word": " I", "probability": 0.8154296875}, {"start": 1251.56, "end": 1251.74, "word": " turn", "probability": 0.350830078125}, {"start": 1251.74, "end": 1251.88, "word": " it", "probability": 0.8583984375}, {"start": 1251.88, "end": 1251.88, "word": " on?", "probability": 0.93115234375}, {"start": 1251.88, "end": 1252.04, "word": " Did", "probability": 0.64404296875}, {"start": 1252.04, "end": 1252.04, "word": " I", "probability": 0.798828125}, {"start": 1252.04, "end": 1252.16, "word": " find", "probability": 0.72314453125}, {"start": 1252.16, "end": 1252.28, "word": " it?", "probability": 0.9296875}], "temperature": 1.0}, {"id": 50, "seek": 127033, "start": 1253.83, "end": 1270.33, "text": "In the server, ok? What do you put here? Connection to the database, select it, get a query, get the products, put them in the ArrayList, change it to JSON twice No, even if I change it to JSON, ok? Create them as a list of what?", "tokens": [4575, 264, 7154, 11, 3133, 30, 708, 360, 291, 829, 510, 30, 11653, 313, 281, 264, 8149, 11, 3048, 309, 11, 483, 257, 14581, 11, 483, 264, 3383, 11, 829, 552, 294, 264, 1587, 3458, 43, 468, 11, 1319, 309, 281, 31828, 6091, 883, 11, 754, 498, 286, 1319, 309, 281, 31828, 11, 3133, 30, 20248, 552, 382, 257, 1329, 295, 437, 30], "avg_logprob": -0.5405273353680968, "compression_ratio": 1.4493670886075949, "no_speech_prob": 3.1054019927978516e-05, "words": [{"start": 1253.83, "end": 1253.99, "word": "In", "probability": 0.0767822265625}, {"start": 1253.99, "end": 1254.09, "word": " the", "probability": 0.66650390625}, {"start": 1254.09, "end": 1254.45, "word": " server,", "probability": 0.7685546875}, {"start": 1254.83, "end": 1255.01, "word": " ok?", "probability": 0.1812744140625}, {"start": 1255.39, "end": 1255.79, "word": " What", "probability": 0.6630859375}, {"start": 1255.79, "end": 1255.87, "word": " do", "probability": 0.59423828125}, {"start": 1255.87, "end": 1255.95, "word": " you", "probability": 0.75244140625}, {"start": 1255.95, "end": 1256.15, "word": " put", "probability": 0.60791015625}, {"start": 1256.15, "end": 1256.37, "word": " here?", "probability": 0.65380859375}, {"start": 1256.73, "end": 1257.21, "word": " Connection", "probability": 0.809814453125}, {"start": 1257.21, "end": 1257.33, "word": " to", "probability": 0.841796875}, {"start": 1257.33, "end": 1257.39, "word": " the", "probability": 0.55712890625}, {"start": 1257.39, "end": 1257.83, "word": " database,", "probability": 0.9189453125}, {"start": 1257.93, "end": 1258.41, "word": " select", "probability": 0.408935546875}, {"start": 1258.41, "end": 1258.71, "word": " it,", "probability": 0.307861328125}, {"start": 1258.73, "end": 1258.91, "word": " get", "probability": 0.228515625}, {"start": 1258.91, "end": 1258.99, "word": " a", "probability": 0.463134765625}, {"start": 1258.99, "end": 1259.33, "word": " query,", "probability": 0.9375}, {"start": 1259.51, "end": 1259.67, "word": " get", "probability": 0.72998046875}, {"start": 1259.67, "end": 1259.79, "word": " the", "probability": 0.468505859375}, {"start": 1259.79, "end": 1260.27, "word": " products,", "probability": 0.8017578125}, {"start": 1260.65, "end": 1260.89, "word": " put", "probability": 0.62255859375}, {"start": 1260.89, "end": 1261.15, "word": " them", "probability": 0.8642578125}, {"start": 1261.15, "end": 1261.27, "word": " in", "probability": 0.86181640625}, {"start": 1261.27, "end": 1261.37, "word": " the", "probability": 0.387939453125}, {"start": 1261.37, "end": 1261.89, "word": " ArrayList,", "probability": 0.705413818359375}, {"start": 1262.33, "end": 1262.55, "word": " change", "probability": 0.2080078125}, {"start": 1262.55, "end": 1262.77, "word": " it", "probability": 0.501953125}, {"start": 1262.77, "end": 1262.85, "word": " to", "probability": 0.85888671875}, {"start": 1262.85, "end": 1263.17, "word": " JSON", "probability": 0.7548828125}, {"start": 1263.17, "end": 1263.65, "word": " twice", "probability": 0.2310791015625}, {"start": 1263.65, "end": 1264.95, "word": " No,", "probability": 0.291259765625}, {"start": 1265.09, "end": 1265.25, "word": " even", "probability": 0.56396484375}, {"start": 1265.25, "end": 1265.37, "word": " if", "probability": 0.716796875}, {"start": 1265.37, "end": 1265.47, "word": " I", "probability": 0.2252197265625}, {"start": 1265.47, "end": 1265.75, "word": " change", "probability": 0.5673828125}, {"start": 1265.75, "end": 1265.87, "word": " it", "probability": 0.7568359375}, {"start": 1265.87, "end": 1265.87, "word": " to", "probability": 0.9482421875}, {"start": 1265.87, "end": 1266.21, "word": " JSON,", "probability": 0.91259765625}, {"start": 1266.71, "end": 1266.93, "word": " ok?", "probability": 0.6904296875}, {"start": 1267.41, "end": 1267.73, "word": " Create", "probability": 0.68017578125}, {"start": 1267.73, "end": 1268.15, "word": " them", "probability": 0.264892578125}, {"start": 1268.15, "end": 1268.59, "word": " as", "probability": 0.7490234375}, {"start": 1268.59, "end": 1269.05, "word": " a", "probability": 0.60791015625}, {"start": 1269.05, "end": 1269.73, "word": " list", "probability": 0.71630859375}, {"start": 1269.73, "end": 1269.99, "word": " of", "probability": 0.6337890625}, {"start": 1269.99, "end": 1270.33, "word": " what?", "probability": 0.7080078125}], "temperature": 1.0}, {"id": 51, "seek": 129925, "start": 1271.75, "end": 1299.25, "text": " of product means as if you are working on a database this method will give you an id and return you a product not a list, it is supposed to return you an id it is supposed to return you one product this method will return you all products you say for example get all products and program it and make it return a list of", "tokens": [295, 1674, 1355, 382, 498, 291, 366, 1364, 322, 257, 8149, 341, 3170, 486, 976, 291, 364, 4496, 293, 2736, 291, 257, 1674, 406, 257, 1329, 11, 309, 307, 3442, 281, 2736, 291, 364, 4496, 309, 307, 3442, 281, 2736, 291, 472, 1674, 341, 3170, 486, 2736, 291, 439, 3383, 291, 584, 337, 1365, 483, 439, 3383, 293, 1461, 309, 293, 652, 309, 2736, 257, 1329, 295], "avg_logprob": -0.649356608005131, "compression_ratio": 2.0125786163522013, "no_speech_prob": 3.11732292175293e-05, "words": [{"start": 1271.75, "end": 1271.93, "word": " of", "probability": 0.26611328125}, {"start": 1271.93, "end": 1272.39, "word": " product", "probability": 0.78759765625}, {"start": 1272.39, "end": 1273.15, "word": " means", "probability": 0.09246826171875}, {"start": 1273.15, "end": 1273.37, "word": " as", "probability": 0.3154296875}, {"start": 1273.37, "end": 1273.53, "word": " if", "probability": 0.89013671875}, {"start": 1273.53, "end": 1273.73, "word": " you", "probability": 0.91845703125}, {"start": 1273.73, "end": 1273.79, "word": " are", "probability": 0.2247314453125}, {"start": 1273.79, "end": 1274.01, "word": " working", "probability": 0.13671875}, {"start": 1274.01, "end": 1275.33, "word": " on", "probability": 0.716796875}, {"start": 1275.33, "end": 1276.31, "word": " a", "probability": 0.2188720703125}, {"start": 1276.31, "end": 1276.67, "word": " database", "probability": 0.552734375}, {"start": 1276.67, "end": 1277.45, "word": " this", "probability": 0.421875}, {"start": 1277.45, "end": 1278.71, "word": " method", "probability": 0.748046875}, {"start": 1278.71, "end": 1279.49, "word": " will", "probability": 0.237060546875}, {"start": 1279.49, "end": 1279.67, "word": " give", "probability": 0.68310546875}, {"start": 1279.67, "end": 1279.77, "word": " you", "probability": 0.66015625}, {"start": 1279.77, "end": 1279.85, "word": " an", "probability": 0.30078125}, {"start": 1279.85, "end": 1280.07, "word": " id", "probability": 0.6484375}, {"start": 1280.07, "end": 1280.25, "word": " and", "probability": 0.83251953125}, {"start": 1280.25, "end": 1280.47, "word": " return", "probability": 0.4130859375}, {"start": 1280.47, "end": 1280.75, "word": " you", "probability": 0.272705078125}, {"start": 1280.75, "end": 1281.29, "word": " a", "probability": 0.591796875}, {"start": 1281.29, "end": 1281.61, "word": " product", "probability": 0.9228515625}, {"start": 1281.61, "end": 1281.85, "word": " not", "probability": 0.437744140625}, {"start": 1281.85, "end": 1281.99, "word": " a", "probability": 0.72802734375}, {"start": 1281.99, "end": 1282.11, "word": " list,", "probability": 0.9375}, {"start": 1282.19, "end": 1282.25, "word": " it", "probability": 0.29833984375}, {"start": 1282.25, "end": 1282.51, "word": " is", "probability": 0.311279296875}, {"start": 1282.51, "end": 1282.51, "word": " supposed", "probability": 0.392333984375}, {"start": 1282.51, "end": 1282.51, "word": " to", "probability": 0.9384765625}, {"start": 1282.51, "end": 1282.79, "word": " return", "probability": 0.50244140625}, {"start": 1282.79, "end": 1282.91, "word": " you", "probability": 0.5517578125}, {"start": 1282.91, "end": 1282.99, "word": " an", "probability": 0.71142578125}, {"start": 1282.99, "end": 1283.25, "word": " id", "probability": 0.92236328125}, {"start": 1283.25, "end": 1284.49, "word": " it", "probability": 0.18115234375}, {"start": 1284.49, "end": 1284.59, "word": " is", "probability": 0.65478515625}, {"start": 1284.59, "end": 1284.77, "word": " supposed", "probability": 0.8017578125}, {"start": 1284.77, "end": 1284.93, "word": " to", "probability": 0.96875}, {"start": 1284.93, "end": 1285.11, "word": " return", "probability": 0.77294921875}, {"start": 1285.11, "end": 1285.31, "word": " you", "probability": 0.80224609375}, {"start": 1285.31, "end": 1285.73, "word": " one", "probability": 0.3662109375}, {"start": 1285.73, "end": 1286.59, "word": " product", "probability": 0.93701171875}, {"start": 1286.59, "end": 1287.73, "word": " this", "probability": 0.317626953125}, {"start": 1287.73, "end": 1287.87, "word": " method", "probability": 0.244873046875}, {"start": 1287.87, "end": 1288.75, "word": " will", "probability": 0.369873046875}, {"start": 1288.75, "end": 1289.21, "word": " return", "probability": 0.70263671875}, {"start": 1289.21, "end": 1289.41, "word": " you", "probability": 0.7607421875}, {"start": 1289.41, "end": 1289.61, "word": " all", "probability": 0.78564453125}, {"start": 1289.61, "end": 1290.13, "word": " products", "probability": 0.69091796875}, {"start": 1290.13, "end": 1291.57, "word": " you", "probability": 0.33740234375}, {"start": 1291.57, "end": 1291.81, "word": " say", "probability": 0.438720703125}, {"start": 1291.81, "end": 1291.99, "word": " for", "probability": 0.349853515625}, {"start": 1291.99, "end": 1292.15, "word": " example", "probability": 0.9453125}, {"start": 1292.15, "end": 1292.71, "word": " get", "probability": 0.5185546875}, {"start": 1292.71, "end": 1293.21, "word": " all", "probability": 0.7734375}, {"start": 1293.21, "end": 1295.83, "word": " products", "probability": 0.66650390625}, {"start": 1295.83, "end": 1297.05, "word": " and", "probability": 0.716796875}, {"start": 1297.05, "end": 1297.37, "word": " program", "probability": 0.432373046875}, {"start": 1297.37, "end": 1297.67, "word": " it", "probability": 0.70556640625}, {"start": 1297.67, "end": 1298.03, "word": " and", "probability": 0.58447265625}, {"start": 1298.03, "end": 1298.19, "word": " make", "probability": 0.347900390625}, {"start": 1298.19, "end": 1298.39, "word": " it", "probability": 0.9208984375}, {"start": 1298.39, "end": 1298.59, "word": " return", "probability": 0.78466796875}, {"start": 1298.59, "end": 1298.75, "word": " a", "probability": 0.76318359375}, {"start": 1298.75, "end": 1298.95, "word": " list", "probability": 0.9375}, {"start": 1298.95, "end": 1299.25, "word": " of", "probability": 0.9716796875}], "temperature": 1.0}, {"id": 52, "seek": 132810, "start": 1300.58, "end": 1328.1, "text": " Products You have a method that returns to people GetPersonById The method returns to all people So, actually, what did it do? All that is required for the client, you gave it a method Then, what does it do simply? It tells you, this method determines what is its URL It comes over the method and puts a tag You tell it, this method, its URL is this and this and this on Products on ID", "tokens": [47699, 509, 362, 257, 3170, 300, 11247, 281, 561, 3240, 47, 3953, 27690, 42739, 440, 3170, 11247, 281, 439, 561, 407, 11, 767, 11, 437, 630, 309, 360, 30, 1057, 300, 307, 4739, 337, 264, 6423, 11, 291, 2729, 309, 257, 3170, 1396, 11, 437, 775, 309, 360, 2935, 30, 467, 5112, 291, 11, 341, 3170, 24799, 437, 307, 1080, 12905, 467, 1487, 670, 264, 3170, 293, 8137, 257, 6162, 509, 980, 309, 11, 341, 3170, 11, 1080, 12905, 307, 341, 293, 341, 293, 341, 322, 47699, 322, 7348], "avg_logprob": -0.6506944219271342, "compression_ratio": 1.746606334841629, "no_speech_prob": 6.318092346191406e-06, "words": [{"start": 1300.58, "end": 1301.02, "word": " Products", "probability": 0.166015625}, {"start": 1301.02, "end": 1301.46, "word": " You", "probability": 0.294921875}, {"start": 1301.46, "end": 1301.64, "word": " have", "probability": 0.82470703125}, {"start": 1301.64, "end": 1301.7, "word": " a", "probability": 0.75244140625}, {"start": 1301.7, "end": 1301.84, "word": " method", "probability": 0.94091796875}, {"start": 1301.84, "end": 1302.06, "word": " that", "probability": 0.6484375}, {"start": 1302.06, "end": 1302.28, "word": " returns", "probability": 0.5380859375}, {"start": 1302.28, "end": 1302.68, "word": " to", "probability": 0.351806640625}, {"start": 1302.68, "end": 1303.14, "word": " people", "probability": 0.3701171875}, {"start": 1303.14, "end": 1304.68, "word": " GetPersonById", "probability": 0.6705078125}, {"start": 1304.68, "end": 1305.16, "word": " The", "probability": 0.2108154296875}, {"start": 1305.16, "end": 1305.34, "word": " method", "probability": 0.95068359375}, {"start": 1305.34, "end": 1305.7, "word": " returns", "probability": 0.8388671875}, {"start": 1305.7, "end": 1305.9, "word": " to", "probability": 0.53271484375}, {"start": 1305.9, "end": 1306.02, "word": " all", "probability": 0.80078125}, {"start": 1306.02, "end": 1306.5, "word": " people", "probability": 0.61279296875}, {"start": 1306.5, "end": 1307.34, "word": " So,", "probability": 0.3310546875}, {"start": 1307.42, "end": 1307.66, "word": " actually,", "probability": 0.2178955078125}, {"start": 1307.76, "end": 1307.92, "word": " what", "probability": 0.42626953125}, {"start": 1307.92, "end": 1308.02, "word": " did", "probability": 0.53271484375}, {"start": 1308.02, "end": 1308.02, "word": " it", "probability": 0.4013671875}, {"start": 1308.02, "end": 1308.42, "word": " do?", "probability": 0.9384765625}, {"start": 1308.5, "end": 1308.74, "word": " All", "probability": 0.36279296875}, {"start": 1308.74, "end": 1308.86, "word": " that", "probability": 0.4189453125}, {"start": 1308.86, "end": 1308.86, "word": " is", "probability": 0.587890625}, {"start": 1308.86, "end": 1309.16, "word": " required", "probability": 0.72998046875}, {"start": 1309.16, "end": 1309.32, "word": " for", "probability": 0.422119140625}, {"start": 1309.32, "end": 1309.42, "word": " the", "probability": 0.68701171875}, {"start": 1309.42, "end": 1309.76, "word": " client,", "probability": 0.927734375}, {"start": 1309.88, "end": 1309.92, "word": " you", "probability": 0.4208984375}, {"start": 1309.92, "end": 1310.14, "word": " gave", "probability": 0.21484375}, {"start": 1310.14, "end": 1310.4, "word": " it", "probability": 0.65673828125}, {"start": 1310.4, "end": 1310.84, "word": " a", "probability": 0.87646484375}, {"start": 1310.84, "end": 1311.06, "word": " method", "probability": 0.96044921875}, {"start": 1311.06, "end": 1311.32, "word": " Then,", "probability": 0.53076171875}, {"start": 1311.4, "end": 1311.5, "word": " what", "probability": 0.19140625}, {"start": 1311.5, "end": 1311.56, "word": " does", "probability": 0.5732421875}, {"start": 1311.56, "end": 1311.88, "word": " it", "probability": 0.82763671875}, {"start": 1311.88, "end": 1312.02, "word": " do", "probability": 0.7529296875}, {"start": 1312.02, "end": 1312.6, "word": " simply?", "probability": 0.1195068359375}, {"start": 1313.04, "end": 1313.28, "word": " It", "probability": 0.67626953125}, {"start": 1313.28, "end": 1313.4, "word": " tells", "probability": 0.40185546875}, {"start": 1313.4, "end": 1313.54, "word": " you,", "probability": 0.9462890625}, {"start": 1313.62, "end": 1313.76, "word": " this", "probability": 0.734375}, {"start": 1313.76, "end": 1314.24, "word": " method", "probability": 0.9111328125}, {"start": 1314.24, "end": 1315.36, "word": " determines", "probability": 0.046966552734375}, {"start": 1315.36, "end": 1315.68, "word": " what", "probability": 0.533203125}, {"start": 1315.68, "end": 1315.74, "word": " is", "probability": 0.46240234375}, {"start": 1315.74, "end": 1315.8, "word": " its", "probability": 0.56494140625}, {"start": 1315.8, "end": 1315.98, "word": " URL", "probability": 0.24951171875}, {"start": 1315.98, "end": 1317.08, "word": " It", "probability": 0.27783203125}, {"start": 1317.08, "end": 1317.3, "word": " comes", "probability": 0.44091796875}, {"start": 1317.3, "end": 1317.48, "word": " over", "probability": 0.280517578125}, {"start": 1317.48, "end": 1317.62, "word": " the", "probability": 0.85009765625}, {"start": 1317.62, "end": 1317.78, "word": " method", "probability": 0.931640625}, {"start": 1317.78, "end": 1317.94, "word": " and", "probability": 0.434326171875}, {"start": 1317.94, "end": 1318.08, "word": " puts", "probability": 0.53857421875}, {"start": 1318.08, "end": 1318.26, "word": " a", "probability": 0.8515625}, {"start": 1318.26, "end": 1318.64, "word": " tag", "probability": 0.93896484375}, {"start": 1318.64, "end": 1319.44, "word": " You", "probability": 0.27880859375}, {"start": 1319.44, "end": 1319.62, "word": " tell", "probability": 0.44580078125}, {"start": 1319.62, "end": 1319.7, "word": " it,", "probability": 0.7841796875}, {"start": 1319.74, "end": 1319.86, "word": " this", "probability": 0.8984375}, {"start": 1319.86, "end": 1320.16, "word": " method,", "probability": 0.826171875}, {"start": 1320.28, "end": 1320.3, "word": " its", "probability": 0.7080078125}, {"start": 1320.3, "end": 1321.36, "word": " URL", "probability": 0.95556640625}, {"start": 1321.36, "end": 1322.62, "word": " is", "probability": 0.56591796875}, {"start": 1322.62, "end": 1323.2, "word": " this", "probability": 0.2398681640625}, {"start": 1323.2, "end": 1323.76, "word": " and", "probability": 0.405029296875}, {"start": 1323.76, "end": 1323.94, "word": " this", "probability": 0.525390625}, {"start": 1323.94, "end": 1323.94, "word": " and", "probability": 0.452392578125}, {"start": 1323.94, "end": 1324.2, "word": " this", "probability": 0.87646484375}, {"start": 1324.2, "end": 1324.46, "word": " on", "probability": 0.5625}, {"start": 1324.46, "end": 1325.72, "word": " Products", "probability": 0.5576171875}, {"start": 1325.72, "end": 1327.8, "word": " on", "probability": 0.53564453125}, {"start": 1327.8, "end": 1328.1, "word": " ID", "probability": 0.5947265625}], "temperature": 1.0}, {"id": 53, "seek": 135760, "start": 1330.24, "end": 1357.6, "text": " It's like I'm making a mapping link. If you find this link, learn this method. If you find this link, learn this method. Instead of making 20 pages, you make one class. The 20 methods required for the target, you make them as 20 methods. And each method is linked to a URL. This is how we prepared the web service.", "tokens": [467, 311, 411, 286, 478, 1455, 257, 18350, 2113, 13, 759, 291, 915, 341, 2113, 11, 1466, 341, 3170, 13, 759, 291, 915, 341, 2113, 11, 1466, 341, 3170, 13, 7156, 295, 1455, 945, 7183, 11, 291, 652, 472, 1508, 13, 440, 945, 7150, 4739, 337, 264, 3779, 11, 291, 652, 552, 382, 945, 7150, 13, 400, 1184, 3170, 307, 9408, 281, 257, 12905, 13, 639, 307, 577, 321, 4927, 264, 3670, 2643, 13], "avg_logprob": -0.5241666666666667, "compression_ratio": 1.721311475409836, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 1330.24, "end": 1330.54, "word": " It's", "probability": 0.375030517578125}, {"start": 1330.54, "end": 1330.8, "word": " like", "probability": 0.7529296875}, {"start": 1330.8, "end": 1331.04, "word": " I'm", "probability": 0.43621826171875}, {"start": 1331.04, "end": 1331.28, "word": " making", "probability": 0.181884765625}, {"start": 1331.28, "end": 1331.62, "word": " a", "probability": 0.85009765625}, {"start": 1331.62, "end": 1332.2, "word": " mapping", "probability": 0.4990234375}, {"start": 1332.2, "end": 1332.2, "word": " link.", "probability": 0.81591796875}, {"start": 1332.96, "end": 1333.12, "word": " If", "probability": 0.268310546875}, {"start": 1333.12, "end": 1335.26, "word": " you", "probability": 0.509765625}, {"start": 1335.26, "end": 1335.46, "word": " find", "probability": 0.703125}, {"start": 1335.46, "end": 1335.64, "word": " this", "probability": 0.66162109375}, {"start": 1335.64, "end": 1336.02, "word": " link,", "probability": 0.8896484375}, {"start": 1336.76, "end": 1337.74, "word": " learn", "probability": 0.1353759765625}, {"start": 1337.74, "end": 1337.86, "word": " this", "probability": 0.8583984375}, {"start": 1337.86, "end": 1338.14, "word": " method.", "probability": 0.9345703125}, {"start": 1338.8, "end": 1339.32, "word": " If", "probability": 0.66796875}, {"start": 1339.32, "end": 1339.98, "word": " you", "probability": 0.958984375}, {"start": 1339.98, "end": 1340.18, "word": " find", "probability": 0.89111328125}, {"start": 1340.18, "end": 1340.36, "word": " this", "probability": 0.78564453125}, {"start": 1340.36, "end": 1340.72, "word": " link,", "probability": 0.90869140625}, {"start": 1341.08, "end": 1342.44, "word": " learn", "probability": 0.90478515625}, {"start": 1342.44, "end": 1342.64, "word": " this", "probability": 0.93310546875}, {"start": 1342.64, "end": 1342.86, "word": " method.", "probability": 0.94384765625}, {"start": 1343.84, "end": 1344.24, "word": " Instead", "probability": 0.62744140625}, {"start": 1344.24, "end": 1344.38, "word": " of", "probability": 0.96240234375}, {"start": 1344.38, "end": 1344.64, "word": " making", "probability": 0.47412109375}, {"start": 1344.64, "end": 1345.08, "word": " 20", "probability": 0.69580078125}, {"start": 1345.08, "end": 1345.44, "word": " pages,", "probability": 0.8662109375}, {"start": 1346.38, "end": 1346.56, "word": " you", "probability": 0.7412109375}, {"start": 1346.56, "end": 1346.92, "word": " make", "probability": 0.50439453125}, {"start": 1346.92, "end": 1347.06, "word": " one", "probability": 0.53076171875}, {"start": 1347.06, "end": 1347.58, "word": " class.", "probability": 0.95068359375}, {"start": 1348.44, "end": 1348.54, "word": " The", "probability": 0.429443359375}, {"start": 1348.54, "end": 1348.9, "word": " 20", "probability": 0.7939453125}, {"start": 1348.9, "end": 1349.22, "word": " methods", "probability": 0.77294921875}, {"start": 1349.22, "end": 1349.66, "word": " required", "probability": 0.3447265625}, {"start": 1349.66, "end": 1349.98, "word": " for", "probability": 0.60498046875}, {"start": 1349.98, "end": 1350.18, "word": " the", "probability": 0.450927734375}, {"start": 1350.18, "end": 1350.72, "word": " target,", "probability": 0.39892578125}, {"start": 1350.82, "end": 1350.86, "word": " you", "probability": 0.83544921875}, {"start": 1350.86, "end": 1351.04, "word": " make", "probability": 0.65478515625}, {"start": 1351.04, "end": 1351.18, "word": " them", "probability": 0.39599609375}, {"start": 1351.18, "end": 1351.2, "word": " as", "probability": 0.3720703125}, {"start": 1351.2, "end": 1351.52, "word": " 20", "probability": 0.935546875}, {"start": 1351.52, "end": 1351.88, "word": " methods.", "probability": 0.888671875}, {"start": 1352.54, "end": 1352.78, "word": " And", "probability": 0.439697265625}, {"start": 1352.78, "end": 1352.94, "word": " each", "probability": 0.7314453125}, {"start": 1352.94, "end": 1353.18, "word": " method", "probability": 0.9462890625}, {"start": 1353.18, "end": 1353.3, "word": " is", "probability": 0.86572265625}, {"start": 1353.3, "end": 1353.52, "word": " linked", "probability": 0.365478515625}, {"start": 1353.52, "end": 1353.68, "word": " to", "probability": 0.81787109375}, {"start": 1353.68, "end": 1354.1, "word": " a", "probability": 0.431640625}, {"start": 1354.1, "end": 1355.08, "word": " URL.", "probability": 0.79443359375}, {"start": 1355.22, "end": 1355.42, "word": " This", "probability": 0.2471923828125}, {"start": 1355.42, "end": 1355.48, "word": " is", "probability": 0.8212890625}, {"start": 1355.48, "end": 1355.48, "word": " how", "probability": 0.85888671875}, {"start": 1355.48, "end": 1355.56, "word": " we", "probability": 0.77392578125}, {"start": 1355.56, "end": 1355.88, "word": " prepared", "probability": 0.521484375}, {"start": 1355.88, "end": 1357.06, "word": " the", "probability": 0.1756591796875}, {"start": 1357.06, "end": 1357.2, "word": " web", "probability": 0.7626953125}, {"start": 1357.2, "end": 1357.6, "word": " service.", "probability": 0.8818359375}], "temperature": 1.0}, {"id": 54, "seek": 136591, "start": 1358.89, "end": 1365.91, "text": "We prepared the server-side, right? Are you with me or not? Ok. I will get by that I prepared it.", "tokens": [4360, 4927, 264, 7154, 12, 1812, 11, 558, 30, 2014, 291, 365, 385, 420, 406, 30, 3477, 13, 286, 486, 483, 538, 300, 286, 4927, 309, 13], "avg_logprob": -0.8175223065274102, "compression_ratio": 1.1149425287356323, "no_speech_prob": 0.0, "words": [{"start": 1358.89, "end": 1359.15, "word": "We", "probability": 0.28076171875}, {"start": 1359.15, "end": 1359.37, "word": " prepared", "probability": 0.267578125}, {"start": 1359.37, "end": 1359.57, "word": " the", "probability": 0.6845703125}, {"start": 1359.57, "end": 1359.85, "word": " server", "probability": 0.83837890625}, {"start": 1359.85, "end": 1360.25, "word": "-side,", "probability": 0.55615234375}, {"start": 1361.13, "end": 1361.51, "word": " right?", "probability": 0.44140625}, {"start": 1362.55, "end": 1362.95, "word": " Are", "probability": 0.18896484375}, {"start": 1362.95, "end": 1362.95, "word": " you", "probability": 0.82470703125}, {"start": 1362.95, "end": 1363.07, "word": " with", "probability": 0.6396484375}, {"start": 1363.07, "end": 1363.15, "word": " me", "probability": 0.9443359375}, {"start": 1363.15, "end": 1363.21, "word": " or", "probability": 0.72314453125}, {"start": 1363.21, "end": 1363.37, "word": " not?", "probability": 0.9228515625}, {"start": 1363.89, "end": 1364.33, "word": " Ok.", "probability": 0.134033203125}, {"start": 1364.89, "end": 1365.03, "word": " I", "probability": 0.26611328125}, {"start": 1365.03, "end": 1365.07, "word": " will", "probability": 0.30078125}, {"start": 1365.07, "end": 1365.21, "word": " get", "probability": 0.54638671875}, {"start": 1365.21, "end": 1365.39, "word": " by", "probability": 0.419921875}, {"start": 1365.39, "end": 1365.49, "word": " that", "probability": 0.2108154296875}, {"start": 1365.49, "end": 1365.61, "word": " I", "probability": 0.8544921875}, {"start": 1365.61, "end": 1365.91, "word": " prepared", "probability": 0.407958984375}, {"start": 1365.91, "end": 1365.91, "word": " it.", "probability": 0.2386474609375}], "temperature": 1.0}, {"id": 55, "seek": 138902, "start": 1367.82, "end": 1389.02, "text": "The client side, which we prepared on the server, we want to get it from where? From the client For example, you want to get a certain product and ID You can simply make an HTTP request programmatically You create a link and make a request on the server and the server will return it to you", "tokens": [2278, 6423, 1252, 11, 597, 321, 4927, 322, 264, 7154, 11, 321, 528, 281, 483, 309, 490, 689, 30, 3358, 264, 6423, 1171, 1365, 11, 291, 528, 281, 483, 257, 1629, 1674, 293, 7348, 509, 393, 2935, 652, 364, 33283, 5308, 37648, 5030, 509, 1884, 257, 2113, 293, 652, 257, 5308, 322, 264, 7154, 293, 264, 7154, 486, 2736, 309, 281, 291], "avg_logprob": -0.5873016137925405, "compression_ratio": 1.6201117318435754, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 1367.82, "end": 1368.32, "word": "The", "probability": 0.077392578125}, {"start": 1368.32, "end": 1368.6, "word": " client", "probability": 0.74169921875}, {"start": 1368.6, "end": 1368.94, "word": " side,", "probability": 0.49267578125}, {"start": 1369.1, "end": 1369.12, "word": " which", "probability": 0.295166015625}, {"start": 1369.12, "end": 1369.22, "word": " we", "probability": 0.300537109375}, {"start": 1369.22, "end": 1370.58, "word": " prepared", "probability": 0.249755859375}, {"start": 1370.58, "end": 1370.82, "word": " on", "probability": 0.46533203125}, {"start": 1370.82, "end": 1370.94, "word": " the", "probability": 0.712890625}, {"start": 1370.94, "end": 1371.22, "word": " server,", "probability": 0.87841796875}, {"start": 1371.36, "end": 1371.56, "word": " we", "probability": 0.451171875}, {"start": 1371.56, "end": 1371.68, "word": " want", "probability": 0.361328125}, {"start": 1371.68, "end": 1371.74, "word": " to", "probability": 0.88330078125}, {"start": 1371.74, "end": 1371.86, "word": " get", "probability": 0.1846923828125}, {"start": 1371.86, "end": 1372.12, "word": " it", "probability": 0.69189453125}, {"start": 1372.12, "end": 1372.22, "word": " from", "probability": 0.83447265625}, {"start": 1372.22, "end": 1372.42, "word": " where?", "probability": 0.437255859375}, {"start": 1372.92, "end": 1373.42, "word": " From", "probability": 0.64599609375}, {"start": 1373.42, "end": 1373.54, "word": " the", "probability": 0.8671875}, {"start": 1373.54, "end": 1373.84, "word": " client", "probability": 0.908203125}, {"start": 1373.84, "end": 1374.4, "word": " For", "probability": 0.1326904296875}, {"start": 1374.4, "end": 1375.88, "word": " example,", "probability": 0.5712890625}, {"start": 1376.32, "end": 1376.42, "word": " you", "probability": 0.59326171875}, {"start": 1376.42, "end": 1376.64, "word": " want", "probability": 0.72314453125}, {"start": 1376.64, "end": 1377.02, "word": " to", "probability": 0.95654296875}, {"start": 1377.02, "end": 1377.2, "word": " get", "probability": 0.63623046875}, {"start": 1377.2, "end": 1377.34, "word": " a", "probability": 0.87060546875}, {"start": 1377.34, "end": 1377.34, "word": " certain", "probability": 0.342041015625}, {"start": 1377.34, "end": 1377.64, "word": " product", "probability": 0.9169921875}, {"start": 1377.64, "end": 1378.14, "word": " and", "probability": 0.57666015625}, {"start": 1378.14, "end": 1378.44, "word": " ID", "probability": 0.33837890625}, {"start": 1378.44, "end": 1379.16, "word": " You", "probability": 0.322509765625}, {"start": 1379.16, "end": 1379.34, "word": " can", "probability": 0.8076171875}, {"start": 1379.34, "end": 1379.9, "word": " simply", "probability": 0.5234375}, {"start": 1379.9, "end": 1380.78, "word": " make", "probability": 0.5244140625}, {"start": 1380.78, "end": 1381.26, "word": " an", "probability": 0.52783203125}, {"start": 1381.26, "end": 1381.26, "word": " HTTP", "probability": 0.78515625}, {"start": 1381.26, "end": 1381.82, "word": " request", "probability": 0.9169921875}, {"start": 1381.82, "end": 1382.52, "word": " programmatically", "probability": 0.6285400390625}, {"start": 1382.52, "end": 1382.82, "word": " You", "probability": 0.306884765625}, {"start": 1382.82, "end": 1383.62, "word": " create", "probability": 0.80078125}, {"start": 1383.62, "end": 1383.78, "word": " a", "probability": 0.41455078125}, {"start": 1383.78, "end": 1384.1, "word": " link", "probability": 0.9296875}, {"start": 1384.1, "end": 1385.6, "word": " and", "probability": 0.68115234375}, {"start": 1385.6, "end": 1385.84, "word": " make", "probability": 0.5380859375}, {"start": 1385.84, "end": 1385.96, "word": " a", "probability": 0.93017578125}, {"start": 1385.96, "end": 1386.36, "word": " request", "probability": 0.95166015625}, {"start": 1386.36, "end": 1387.26, "word": " on", "probability": 0.6064453125}, {"start": 1387.26, "end": 1387.38, "word": " the", "probability": 0.8857421875}, {"start": 1387.38, "end": 1387.7, "word": " server", "probability": 0.9296875}, {"start": 1387.7, "end": 1387.92, "word": " and", "probability": 0.486572265625}, {"start": 1387.92, "end": 1388.04, "word": " the", "probability": 0.7158203125}, {"start": 1388.04, "end": 1388.26, "word": " server", "probability": 0.9384765625}, {"start": 1388.26, "end": 1388.42, "word": " will", "probability": 0.7333984375}, {"start": 1388.42, "end": 1388.66, "word": " return", "probability": 0.5}, {"start": 1388.66, "end": 1388.9, "word": " it", "probability": 0.411376953125}, {"start": 1388.9, "end": 1388.9, "word": " to", "probability": 0.78564453125}, {"start": 1388.9, "end": 1389.02, "word": " you", "probability": 0.96337890625}], "temperature": 1.0}, {"id": 56, "seek": 141228, "start": 1389.64, "end": 1412.28, "text": "json. Of course here this office by itself, yes it returns the product, but when the client takes it by itself, it turns it into json and returns to the client what? Text. Okay? So you can come to the mobile device, send the link and it returns json to you and then you take the json value and analyze it and extract the data. But this process is also difficult.", "tokens": [73, 3015, 13, 2720, 1164, 510, 341, 3398, 538, 2564, 11, 2086, 309, 11247, 264, 1674, 11, 457, 562, 264, 6423, 2516, 309, 538, 2564, 11, 309, 4523, 309, 666, 361, 3015, 293, 11247, 281, 264, 6423, 437, 30, 18643, 13, 1033, 30, 407, 291, 393, 808, 281, 264, 6013, 4302, 11, 2845, 264, 2113, 293, 309, 11247, 361, 3015, 281, 291, 293, 550, 291, 747, 264, 361, 3015, 2158, 293, 12477, 309, 293, 8947, 264, 1412, 13, 583, 341, 1399, 307, 611, 2252, 13], "avg_logprob": -0.5563226688739865, "compression_ratio": 1.7075471698113207, "no_speech_prob": 0.0001246929168701172, "words": [{"start": 1389.64, "end": 1390.16, "word": "json.", "probability": 0.52508544921875}, {"start": 1390.7, "end": 1390.98, "word": " Of", "probability": 0.295654296875}, {"start": 1390.98, "end": 1391.08, "word": " course", "probability": 0.927734375}, {"start": 1391.08, "end": 1391.26, "word": " here", "probability": 0.2890625}, {"start": 1391.26, "end": 1391.68, "word": " this", "probability": 0.5673828125}, {"start": 1391.68, "end": 1392.02, "word": " office", "probability": 0.20703125}, {"start": 1392.02, "end": 1392.16, "word": " by", "probability": 0.35302734375}, {"start": 1392.16, "end": 1392.52, "word": " itself,", "probability": 0.74169921875}, {"start": 1393.04, "end": 1393.22, "word": " yes", "probability": 0.2056884765625}, {"start": 1393.22, "end": 1393.36, "word": " it", "probability": 0.5859375}, {"start": 1393.36, "end": 1393.48, "word": " returns", "probability": 0.50634765625}, {"start": 1393.48, "end": 1393.66, "word": " the", "probability": 0.447998046875}, {"start": 1393.66, "end": 1393.94, "word": " product,", "probability": 0.88525390625}, {"start": 1394.02, "end": 1394.16, "word": " but", "probability": 0.9052734375}, {"start": 1394.16, "end": 1394.34, "word": " when", "probability": 0.849609375}, {"start": 1394.34, "end": 1394.82, "word": " the", "probability": 0.58642578125}, {"start": 1394.82, "end": 1395.12, "word": " client", "probability": 0.8671875}, {"start": 1395.12, "end": 1395.12, "word": " takes", "probability": 0.064208984375}, {"start": 1395.12, "end": 1395.12, "word": " it", "probability": 0.69091796875}, {"start": 1395.12, "end": 1395.28, "word": " by", "probability": 0.365478515625}, {"start": 1395.28, "end": 1395.44, "word": " itself,", "probability": 0.6318359375}, {"start": 1395.54, "end": 1395.54, "word": " it", "probability": 0.7802734375}, {"start": 1395.54, "end": 1395.76, "word": " turns", "probability": 0.2919921875}, {"start": 1395.76, "end": 1396.02, "word": " it", "probability": 0.65185546875}, {"start": 1396.02, "end": 1396.34, "word": " into", "probability": 0.77001953125}, {"start": 1396.34, "end": 1396.8, "word": " json", "probability": 0.683837890625}, {"start": 1396.8, "end": 1397.36, "word": " and", "probability": 0.47607421875}, {"start": 1397.36, "end": 1397.66, "word": " returns", "probability": 0.62451171875}, {"start": 1397.66, "end": 1398.44, "word": " to", "probability": 0.15283203125}, {"start": 1398.44, "end": 1398.54, "word": " the", "probability": 0.78076171875}, {"start": 1398.54, "end": 1398.86, "word": " client", "probability": 0.87841796875}, {"start": 1398.86, "end": 1399.16, "word": " what?", "probability": 0.296630859375}, {"start": 1399.52, "end": 1400.04, "word": " Text.", "probability": 0.6142578125}, {"start": 1400.72, "end": 1400.92, "word": " Okay?", "probability": 0.1929931640625}, {"start": 1401.34, "end": 1401.72, "word": " So", "probability": 0.8154296875}, {"start": 1401.72, "end": 1401.94, "word": " you", "probability": 0.79931640625}, {"start": 1401.94, "end": 1402.08, "word": " can", "probability": 0.84228515625}, {"start": 1402.08, "end": 1402.26, "word": " come", "probability": 0.54833984375}, {"start": 1402.26, "end": 1402.36, "word": " to", "probability": 0.65673828125}, {"start": 1402.36, "end": 1402.44, "word": " the", "probability": 0.66650390625}, {"start": 1402.44, "end": 1402.62, "word": " mobile", "probability": 0.9384765625}, {"start": 1402.62, "end": 1403.18, "word": " device,", "probability": 0.966796875}, {"start": 1403.66, "end": 1403.8, "word": " send", "probability": 0.673828125}, {"start": 1403.8, "end": 1404.04, "word": " the", "probability": 0.84375}, {"start": 1404.04, "end": 1404.32, "word": " link", "probability": 0.96142578125}, {"start": 1404.32, "end": 1404.62, "word": " and", "probability": 0.42822265625}, {"start": 1404.62, "end": 1404.7, "word": " it", "probability": 0.5849609375}, {"start": 1404.7, "end": 1404.88, "word": " returns", "probability": 0.80419921875}, {"start": 1404.88, "end": 1405.48, "word": " json", "probability": 0.749755859375}, {"start": 1405.48, "end": 1405.52, "word": " to", "probability": 0.53466796875}, {"start": 1405.52, "end": 1405.52, "word": " you", "probability": 0.958984375}, {"start": 1405.52, "end": 1405.66, "word": " and", "probability": 0.489013671875}, {"start": 1405.66, "end": 1405.88, "word": " then", "probability": 0.77099609375}, {"start": 1405.88, "end": 1406.02, "word": " you", "probability": 0.91650390625}, {"start": 1406.02, "end": 1406.24, "word": " take", "probability": 0.29931640625}, {"start": 1406.24, "end": 1406.56, "word": " the", "probability": 0.7080078125}, {"start": 1406.56, "end": 1407.02, "word": " json", "probability": 0.951416015625}, {"start": 1407.02, "end": 1407.02, "word": " value", "probability": 0.31640625}, {"start": 1407.02, "end": 1407.5, "word": " and", "probability": 0.59716796875}, {"start": 1407.5, "end": 1407.86, "word": " analyze", "probability": 0.703125}, {"start": 1407.86, "end": 1407.98, "word": " it", "probability": 0.888671875}, {"start": 1407.98, "end": 1408.12, "word": " and", "probability": 0.76171875}, {"start": 1408.12, "end": 1408.56, "word": " extract", "probability": 0.70068359375}, {"start": 1408.56, "end": 1409.28, "word": " the", "probability": 0.89697265625}, {"start": 1409.28, "end": 1409.5, "word": " data.", "probability": 0.6640625}, {"start": 1409.92, "end": 1410.16, "word": " But", "probability": 0.8876953125}, {"start": 1410.16, "end": 1410.58, "word": " this", "probability": 0.31787109375}, {"start": 1410.58, "end": 1410.92, "word": " process", "probability": 0.869140625}, {"start": 1410.92, "end": 1411.18, "word": " is", "probability": 0.8720703125}, {"start": 1411.18, "end": 1411.18, "word": " also", "probability": 0.48681640625}, {"start": 1411.18, "end": 1412.28, "word": " difficult.", "probability": 0.486328125}], "temperature": 1.0}, {"id": 57, "seek": 144039, "start": 1413.25, "end": 1440.39, "text": " Because it will force you to analyze it. Look at how many JSON files you have to analyze. So they also made libraries here. What are these libraries? You come to this library, what does it tell you? It tells you, just give me how the methods on the server look like. So you go and tell the server that there is a method called get product. And what do you return?", "tokens": [1436, 309, 486, 3464, 291, 281, 12477, 309, 13, 2053, 412, 577, 867, 31828, 7098, 291, 362, 281, 12477, 13, 407, 436, 611, 1027, 15148, 510, 13, 708, 366, 613, 15148, 30, 509, 808, 281, 341, 6405, 11, 437, 775, 309, 980, 291, 30, 467, 5112, 291, 11, 445, 976, 385, 577, 264, 7150, 322, 264, 7154, 574, 411, 13, 407, 291, 352, 293, 980, 264, 7154, 300, 456, 307, 257, 3170, 1219, 483, 1674, 13, 400, 437, 360, 291, 2736, 30], "avg_logprob": -0.5753011861479426, "compression_ratio": 1.6322869955156951, "no_speech_prob": 3.2186508178710938e-06, "words": [{"start": 1413.25, "end": 1413.73, "word": " Because", "probability": 0.2166748046875}, {"start": 1413.73, "end": 1413.89, "word": " it", "probability": 0.2349853515625}, {"start": 1413.89, "end": 1414.15, "word": " will", "probability": 0.26953125}, {"start": 1414.15, "end": 1414.27, "word": " force", "probability": 0.2430419921875}, {"start": 1414.27, "end": 1414.51, "word": " you", "probability": 0.87451171875}, {"start": 1414.51, "end": 1414.63, "word": " to", "probability": 0.9521484375}, {"start": 1414.63, "end": 1414.95, "word": " analyze", "probability": 0.66552734375}, {"start": 1414.95, "end": 1415.23, "word": " it.", "probability": 0.1949462890625}, {"start": 1415.25, "end": 1415.35, "word": " Look", "probability": 0.23876953125}, {"start": 1415.35, "end": 1415.43, "word": " at", "probability": 0.5439453125}, {"start": 1415.43, "end": 1415.59, "word": " how", "probability": 0.446044921875}, {"start": 1415.59, "end": 1415.63, "word": " many", "probability": 0.88818359375}, {"start": 1415.63, "end": 1415.97, "word": " JSON", "probability": 0.1478271484375}, {"start": 1415.97, "end": 1416.29, "word": " files", "probability": 0.86328125}, {"start": 1416.29, "end": 1416.55, "word": " you", "probability": 0.5654296875}, {"start": 1416.55, "end": 1416.57, "word": " have", "probability": 0.339599609375}, {"start": 1416.57, "end": 1416.65, "word": " to", "probability": 0.50732421875}, {"start": 1416.65, "end": 1416.85, "word": " analyze.", "probability": 0.78076171875}, {"start": 1417.17, "end": 1417.41, "word": " So", "probability": 0.365966796875}, {"start": 1417.41, "end": 1417.83, "word": " they", "probability": 0.487548828125}, {"start": 1417.83, "end": 1417.83, "word": " also", "probability": 0.30712890625}, {"start": 1417.83, "end": 1418.71, "word": " made", "probability": 0.390625}, {"start": 1418.71, "end": 1419.15, "word": " libraries", "probability": 0.6904296875}, {"start": 1419.15, "end": 1419.51, "word": " here.", "probability": 0.64013671875}, {"start": 1420.03, "end": 1420.51, "word": " What", "probability": 0.2010498046875}, {"start": 1420.51, "end": 1421.21, "word": " are", "probability": 0.67236328125}, {"start": 1421.21, "end": 1421.27, "word": " these", "probability": 0.7587890625}, {"start": 1421.27, "end": 1421.59, "word": " libraries?", "probability": 0.9765625}, {"start": 1422.75, "end": 1423.23, "word": " You", "probability": 0.183349609375}, {"start": 1423.23, "end": 1423.29, "word": " come", "probability": 0.331298828125}, {"start": 1423.29, "end": 1423.37, "word": " to", "probability": 0.8857421875}, {"start": 1423.37, "end": 1423.45, "word": " this", "probability": 0.6923828125}, {"start": 1423.45, "end": 1423.77, "word": " library,", "probability": 0.9482421875}, {"start": 1424.01, "end": 1424.13, "word": " what", "probability": 0.67333984375}, {"start": 1424.13, "end": 1424.21, "word": " does", "probability": 0.83056640625}, {"start": 1424.21, "end": 1424.21, "word": " it", "probability": 0.8994140625}, {"start": 1424.21, "end": 1424.41, "word": " tell", "probability": 0.5546875}, {"start": 1424.41, "end": 1424.59, "word": " you?", "probability": 0.96337890625}, {"start": 1425.05, "end": 1425.29, "word": " It", "probability": 0.861328125}, {"start": 1425.29, "end": 1425.47, "word": " tells", "probability": 0.5810546875}, {"start": 1425.47, "end": 1425.67, "word": " you,", "probability": 0.95166015625}, {"start": 1425.75, "end": 1425.75, "word": " just", "probability": 0.36083984375}, {"start": 1425.75, "end": 1425.95, "word": " give", "probability": 0.81884765625}, {"start": 1425.95, "end": 1426.17, "word": " me", "probability": 0.7587890625}, {"start": 1426.17, "end": 1428.15, "word": " how", "probability": 0.30859375}, {"start": 1428.15, "end": 1430.93, "word": " the", "probability": 0.498779296875}, {"start": 1430.93, "end": 1432.47, "word": " methods", "probability": 0.85498046875}, {"start": 1432.47, "end": 1432.89, "word": " on", "probability": 0.52490234375}, {"start": 1432.89, "end": 1433.07, "word": " the", "probability": 0.8994140625}, {"start": 1433.07, "end": 1433.37, "word": " server", "probability": 0.912109375}, {"start": 1433.37, "end": 1433.37, "word": " look", "probability": 0.76123046875}, {"start": 1433.37, "end": 1433.39, "word": " like.", "probability": 0.705078125}, {"start": 1433.93, "end": 1434.13, "word": " So", "probability": 0.434326171875}, {"start": 1434.13, "end": 1434.33, "word": " you", "probability": 0.8076171875}, {"start": 1434.33, "end": 1434.59, "word": " go", "probability": 0.697265625}, {"start": 1434.59, "end": 1434.71, "word": " and", "probability": 0.580078125}, {"start": 1434.71, "end": 1434.89, "word": " tell", "probability": 0.7734375}, {"start": 1434.89, "end": 1435.13, "word": " the", "probability": 0.432861328125}, {"start": 1435.13, "end": 1435.55, "word": " server", "probability": 0.9169921875}, {"start": 1435.55, "end": 1436.19, "word": " that", "probability": 0.4482421875}, {"start": 1436.19, "end": 1436.31, "word": " there", "probability": 0.88037109375}, {"start": 1436.31, "end": 1436.33, "word": " is", "probability": 0.845703125}, {"start": 1436.33, "end": 1436.39, "word": " a", "probability": 0.97998046875}, {"start": 1436.39, "end": 1436.65, "word": " method", "probability": 0.96435546875}, {"start": 1436.65, "end": 1436.95, "word": " called", "probability": 0.8447265625}, {"start": 1436.95, "end": 1437.31, "word": " get", "probability": 0.6669921875}, {"start": 1437.31, "end": 1439.17, "word": " product.", "probability": 0.387939453125}, {"start": 1439.65, "end": 1440.01, "word": " And", "probability": 0.787109375}, {"start": 1440.01, "end": 1440.15, "word": " what", "probability": 0.459228515625}, {"start": 1440.15, "end": 1440.15, "word": " do", "probability": 0.50634765625}, {"start": 1440.15, "end": 1440.15, "word": " you", "probability": 0.95068359375}, {"start": 1440.15, "end": 1440.39, "word": " return?", "probability": 0.568359375}], "temperature": 1.0}, {"id": 58, "seek": 146217, "start": 1441.65, "end": 1462.17, "text": "the product and this one takes the id and there is a method that looks like this and this is the url of the method that looks like this so you give it the method that is required in the server and the url or you even just give it the url so what does it do? it goes and sees the classes on the server and makes one like this exactly", "tokens": [3322, 1674, 293, 341, 472, 2516, 264, 4496, 293, 456, 307, 257, 3170, 300, 1542, 411, 341, 293, 341, 307, 264, 4038, 75, 295, 264, 3170, 300, 1542, 411, 341, 370, 291, 976, 309, 264, 3170, 300, 307, 4739, 294, 264, 7154, 293, 264, 4038, 75, 420, 291, 754, 445, 976, 309, 264, 4038, 75, 370, 437, 775, 309, 360, 30, 309, 1709, 293, 8194, 264, 5359, 322, 264, 7154, 293, 1669, 472, 411, 341, 2293], "avg_logprob": -0.5434253401570506, "compression_ratio": 2.049382716049383, "no_speech_prob": 0.00011098384857177734, "words": [{"start": 1441.65, "end": 1441.85, "word": "the", "probability": 0.0697021484375}, {"start": 1441.85, "end": 1442.21, "word": " product", "probability": 0.90478515625}, {"start": 1442.21, "end": 1442.41, "word": " and", "probability": 0.53466796875}, {"start": 1442.41, "end": 1442.57, "word": " this", "probability": 0.6181640625}, {"start": 1442.57, "end": 1442.65, "word": " one", "probability": 0.343017578125}, {"start": 1442.65, "end": 1442.93, "word": " takes", "probability": 0.440673828125}, {"start": 1442.93, "end": 1443.43, "word": " the", "probability": 0.5390625}, {"start": 1443.43, "end": 1443.75, "word": " id", "probability": 0.5771484375}, {"start": 1443.75, "end": 1445.45, "word": " and", "probability": 0.39892578125}, {"start": 1445.45, "end": 1445.87, "word": " there", "probability": 0.64453125}, {"start": 1445.87, "end": 1445.89, "word": " is", "probability": 0.6650390625}, {"start": 1445.89, "end": 1445.97, "word": " a", "probability": 0.73291015625}, {"start": 1445.97, "end": 1446.23, "word": " method", "probability": 0.89306640625}, {"start": 1446.23, "end": 1446.35, "word": " that", "probability": 0.33349609375}, {"start": 1446.35, "end": 1446.49, "word": " looks", "probability": 0.689453125}, {"start": 1446.49, "end": 1447.03, "word": " like", "probability": 0.853515625}, {"start": 1447.03, "end": 1447.19, "word": " this", "probability": 0.595703125}, {"start": 1447.19, "end": 1447.27, "word": " and", "probability": 0.64453125}, {"start": 1447.27, "end": 1447.49, "word": " this", "probability": 0.65966796875}, {"start": 1447.49, "end": 1447.53, "word": " is", "probability": 0.70947265625}, {"start": 1447.53, "end": 1447.67, "word": " the", "probability": 0.448974609375}, {"start": 1447.67, "end": 1448.09, "word": " url", "probability": 0.89892578125}, {"start": 1448.09, "end": 1448.21, "word": " of", "probability": 0.463623046875}, {"start": 1448.21, "end": 1448.49, "word": " the", "probability": 0.34033203125}, {"start": 1448.49, "end": 1448.49, "word": " method", "probability": 0.67626953125}, {"start": 1448.49, "end": 1448.49, "word": " that", "probability": 0.195068359375}, {"start": 1448.49, "end": 1448.49, "word": " looks", "probability": 0.60205078125}, {"start": 1448.49, "end": 1448.55, "word": " like", "probability": 0.8955078125}, {"start": 1448.55, "end": 1448.67, "word": " this", "probability": 0.91357421875}, {"start": 1448.67, "end": 1448.83, "word": " so", "probability": 0.1343994140625}, {"start": 1448.83, "end": 1449.05, "word": " you", "probability": 0.87451171875}, {"start": 1449.05, "end": 1449.41, "word": " give", "probability": 0.495849609375}, {"start": 1449.41, "end": 1449.57, "word": " it", "probability": 0.455810546875}, {"start": 1449.57, "end": 1449.87, "word": " the", "probability": 0.6025390625}, {"start": 1449.87, "end": 1450.23, "word": " method", "probability": 0.4892578125}, {"start": 1450.23, "end": 1450.41, "word": " that", "probability": 0.5380859375}, {"start": 1450.41, "end": 1450.41, "word": " is", "probability": 0.6337890625}, {"start": 1450.41, "end": 1450.81, "word": " required", "probability": 0.57861328125}, {"start": 1450.81, "end": 1451.05, "word": " in", "probability": 0.61376953125}, {"start": 1451.05, "end": 1451.17, "word": " the", "probability": 0.85546875}, {"start": 1451.17, "end": 1451.51, "word": " server", "probability": 0.89306640625}, {"start": 1451.51, "end": 1452.61, "word": " and", "probability": 0.8330078125}, {"start": 1452.61, "end": 1453.01, "word": " the", "probability": 0.3896484375}, {"start": 1453.01, "end": 1453.53, "word": " url", "probability": 0.95849609375}, {"start": 1453.53, "end": 1454.31, "word": " or", "probability": 0.55517578125}, {"start": 1454.31, "end": 1454.73, "word": " you", "probability": 0.66455078125}, {"start": 1454.73, "end": 1454.75, "word": " even", "probability": 0.3408203125}, {"start": 1454.75, "end": 1454.87, "word": " just", "probability": 0.32568359375}, {"start": 1454.87, "end": 1454.99, "word": " give", "probability": 0.85009765625}, {"start": 1454.99, "end": 1455.09, "word": " it", "probability": 0.58837890625}, {"start": 1455.09, "end": 1455.35, "word": " the", "probability": 0.89208984375}, {"start": 1455.35, "end": 1455.71, "word": " url", "probability": 0.9638671875}, {"start": 1455.71, "end": 1455.85, "word": " so", "probability": 0.494873046875}, {"start": 1455.85, "end": 1456.09, "word": " what", "probability": 0.7685546875}, {"start": 1456.09, "end": 1456.11, "word": " does", "probability": 0.6923828125}, {"start": 1456.11, "end": 1456.17, "word": " it", "probability": 0.57666015625}, {"start": 1456.17, "end": 1456.31, "word": " do?", "probability": 0.85546875}, {"start": 1457.71, "end": 1458.15, "word": " it", "probability": 0.759765625}, {"start": 1458.15, "end": 1458.35, "word": " goes", "probability": 0.58447265625}, {"start": 1458.35, "end": 1458.57, "word": " and", "probability": 0.67236328125}, {"start": 1458.57, "end": 1458.75, "word": " sees", "probability": 0.2474365234375}, {"start": 1458.75, "end": 1458.93, "word": " the", "probability": 0.87890625}, {"start": 1458.93, "end": 1459.23, "word": " classes", "probability": 0.525390625}, {"start": 1459.23, "end": 1459.37, "word": " on", "probability": 0.8056640625}, {"start": 1459.37, "end": 1459.47, "word": " the", "probability": 0.89794921875}, {"start": 1459.47, "end": 1459.83, "word": " server", "probability": 0.93017578125}, {"start": 1459.83, "end": 1460.59, "word": " and", "probability": 0.904296875}, {"start": 1460.59, "end": 1460.81, "word": " makes", "probability": 0.33935546875}, {"start": 1460.81, "end": 1461.31, "word": " one", "probability": 0.376708984375}, {"start": 1461.31, "end": 1461.51, "word": " like", "probability": 0.365478515625}, {"start": 1461.51, "end": 1461.69, "word": " this", "probability": 0.486328125}, {"start": 1461.69, "end": 1462.17, "word": " exactly", "probability": 0.51220703125}], "temperature": 1.0}, {"id": 59, "seek": 148680, "start": 1463.2, "end": 1486.8, "text": "on the client means on the client this get, did you see the class my service? it will work on the client also a class called my service what does it have? it has the same methods the first one is called get product and the second one is called get all products and the third one is called get person the same methods on the server I will show you here", "tokens": [266, 264, 6423, 1355, 322, 264, 6423, 341, 483, 11, 630, 291, 536, 264, 1508, 452, 2643, 30, 309, 486, 589, 322, 264, 6423, 611, 257, 1508, 1219, 452, 2643, 437, 775, 309, 362, 30, 309, 575, 264, 912, 7150, 264, 700, 472, 307, 1219, 483, 1674, 293, 264, 1150, 472, 307, 1219, 483, 439, 3383, 293, 264, 2636, 472, 307, 1219, 483, 954, 264, 912, 7150, 322, 264, 7154, 286, 486, 855, 291, 510], "avg_logprob": -0.49917762608904587, "compression_ratio": 2.0526315789473686, "no_speech_prob": 3.814697265625e-06, "words": [{"start": 1463.2, "end": 1463.44, "word": "on", "probability": 0.225341796875}, {"start": 1463.44, "end": 1463.52, "word": " the", "probability": 0.49169921875}, {"start": 1463.52, "end": 1463.84, "word": " client", "probability": 0.88525390625}, {"start": 1463.84, "end": 1464.94, "word": " means", "probability": 0.1275634765625}, {"start": 1464.94, "end": 1465.1, "word": " on", "probability": 0.52001953125}, {"start": 1465.1, "end": 1465.2, "word": " the", "probability": 0.8173828125}, {"start": 1465.2, "end": 1465.48, "word": " client", "probability": 0.91064453125}, {"start": 1465.48, "end": 1465.66, "word": " this", "probability": 0.371826171875}, {"start": 1465.66, "end": 1465.84, "word": " get,", "probability": 0.341552734375}, {"start": 1465.94, "end": 1466.1, "word": " did", "probability": 0.41162109375}, {"start": 1466.1, "end": 1466.14, "word": " you", "probability": 0.962890625}, {"start": 1466.14, "end": 1466.14, "word": " see", "probability": 0.84326171875}, {"start": 1466.14, "end": 1466.28, "word": " the", "probability": 0.68896484375}, {"start": 1466.28, "end": 1466.52, "word": " class", "probability": 0.9384765625}, {"start": 1466.52, "end": 1466.8, "word": " my", "probability": 0.10565185546875}, {"start": 1466.8, "end": 1467.76, "word": " service?", "probability": 0.495361328125}, {"start": 1468.42, "end": 1468.86, "word": " it", "probability": 0.291748046875}, {"start": 1468.86, "end": 1468.98, "word": " will", "probability": 0.6982421875}, {"start": 1468.98, "end": 1469.24, "word": " work", "probability": 0.4501953125}, {"start": 1469.24, "end": 1469.44, "word": " on", "probability": 0.395263671875}, {"start": 1469.44, "end": 1469.58, "word": " the", "probability": 0.8212890625}, {"start": 1469.58, "end": 1469.98, "word": " client", "probability": 0.9052734375}, {"start": 1469.98, "end": 1470.42, "word": " also", "probability": 0.256591796875}, {"start": 1470.42, "end": 1470.58, "word": " a", "probability": 0.464599609375}, {"start": 1470.58, "end": 1470.9, "word": " class", "probability": 0.96875}, {"start": 1470.9, "end": 1471.2, "word": " called", "probability": 0.35205078125}, {"start": 1471.2, "end": 1471.58, "word": " my", "probability": 0.87158203125}, {"start": 1471.58, "end": 1472.98, "word": " service", "probability": 0.78759765625}, {"start": 1472.98, "end": 1473.54, "word": " what", "probability": 0.529296875}, {"start": 1473.54, "end": 1473.64, "word": " does", "probability": 0.310791015625}, {"start": 1473.64, "end": 1473.86, "word": " it", "probability": 0.89208984375}, {"start": 1473.86, "end": 1473.98, "word": " have?", "probability": 0.724609375}, {"start": 1474.26, "end": 1474.5, "word": " it", "probability": 0.76318359375}, {"start": 1474.5, "end": 1474.6, "word": " has", "probability": 0.93603515625}, {"start": 1474.6, "end": 1474.96, "word": " the", "probability": 0.78125}, {"start": 1474.96, "end": 1474.96, "word": " same", "probability": 0.91796875}, {"start": 1474.96, "end": 1475.34, "word": " methods", "probability": 0.81591796875}, {"start": 1475.34, "end": 1475.94, "word": " the", "probability": 0.48974609375}, {"start": 1475.94, "end": 1476.12, "word": " first", "probability": 0.8779296875}, {"start": 1476.12, "end": 1476.22, "word": " one", "probability": 0.70361328125}, {"start": 1476.22, "end": 1476.3, "word": " is", "probability": 0.80859375}, {"start": 1476.3, "end": 1476.52, "word": " called", "probability": 0.68017578125}, {"start": 1476.52, "end": 1476.78, "word": " get", "probability": 0.90185546875}, {"start": 1476.78, "end": 1478.6, "word": " product", "probability": 0.69384765625}, {"start": 1478.6, "end": 1479.12, "word": " and", "probability": 0.759765625}, {"start": 1479.12, "end": 1479.28, "word": " the", "probability": 0.8583984375}, {"start": 1479.28, "end": 1479.46, "word": " second", "probability": 0.857421875}, {"start": 1479.46, "end": 1479.64, "word": " one", "probability": 0.60693359375}, {"start": 1479.64, "end": 1479.64, "word": " is", "probability": 0.90673828125}, {"start": 1479.64, "end": 1479.86, "word": " called", "probability": 0.7705078125}, {"start": 1479.86, "end": 1480.08, "word": " get", "probability": 0.93798828125}, {"start": 1480.08, "end": 1480.42, "word": " all", "probability": 0.9287109375}, {"start": 1480.42, "end": 1481.92, "word": " products", "probability": 0.771484375}, {"start": 1481.92, "end": 1482.48, "word": " and", "probability": 0.88671875}, {"start": 1482.48, "end": 1482.62, "word": " the", "probability": 0.890625}, {"start": 1482.62, "end": 1482.76, "word": " third", "probability": 0.92333984375}, {"start": 1482.76, "end": 1482.92, "word": " one", "probability": 0.833984375}, {"start": 1482.92, "end": 1482.92, "word": " is", "probability": 0.9521484375}, {"start": 1482.92, "end": 1483.06, "word": " called", "probability": 0.873046875}, {"start": 1483.06, "end": 1483.3, "word": " get", "probability": 0.94970703125}, {"start": 1483.3, "end": 1483.82, "word": " person", "probability": 0.841796875}, {"start": 1483.82, "end": 1484.74, "word": " the", "probability": 0.185302734375}, {"start": 1484.74, "end": 1484.98, "word": " same", "probability": 0.90380859375}, {"start": 1484.98, "end": 1485.3, "word": " methods", "probability": 0.72802734375}, {"start": 1485.3, "end": 1485.5, "word": " on", "probability": 0.7275390625}, {"start": 1485.5, "end": 1485.58, "word": " the", "probability": 0.8310546875}, {"start": 1485.58, "end": 1485.84, "word": " server", "probability": 0.921875}, {"start": 1485.84, "end": 1485.98, "word": " I", "probability": 0.317626953125}, {"start": 1485.98, "end": 1486.06, "word": " will", "probability": 0.6142578125}, {"start": 1486.06, "end": 1486.22, "word": " show", "probability": 0.3486328125}, {"start": 1486.22, "end": 1486.28, "word": " you", "probability": 0.81640625}, {"start": 1486.28, "end": 1486.8, "word": " here", "probability": 0.56298828125}], "temperature": 1.0}, {"id": 60, "seek": 151804, "start": 1489.64, "end": 1518.04, "text": "On the basis of what? That when you execute a git product by itself from inside without you knowing it, it gets the URL and makes a request to the server and gets the JSON of it and turns the JSON into an object of the product type and tells you to go ahead with this product. So what happens is that you deal with the methods on the server and claim them as if they are present somewhere on the device itself. Who does this? The library.", "tokens": [11747, 264, 5143, 295, 437, 30, 663, 562, 291, 14483, 257, 18331, 1674, 538, 2564, 490, 1854, 1553, 291, 5276, 309, 11, 309, 2170, 264, 12905, 293, 1669, 257, 5308, 281, 264, 7154, 293, 2170, 264, 31828, 295, 309, 293, 4523, 264, 31828, 666, 364, 2657, 295, 264, 1674, 2010, 293, 5112, 291, 281, 352, 2286, 365, 341, 1674, 13, 407, 437, 2314, 307, 300, 291, 2028, 365, 264, 7150, 322, 264, 7154, 293, 3932, 552, 382, 498, 436, 366, 1974, 4079, 322, 264, 4302, 2564, 13, 2102, 775, 341, 30, 440, 6405, 13], "avg_logprob": -0.5730263396313316, "compression_ratio": 1.691119691119691, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 1489.64, "end": 1489.86, "word": "On", "probability": 0.0775146484375}, {"start": 1489.86, "end": 1489.98, "word": " the", "probability": 0.43994140625}, {"start": 1489.98, "end": 1490.16, "word": " basis", "probability": 0.7802734375}, {"start": 1490.16, "end": 1490.26, "word": " of", "probability": 0.8466796875}, {"start": 1490.26, "end": 1490.46, "word": " what?", "probability": 0.75927734375}, {"start": 1490.54, "end": 1490.68, "word": " That", "probability": 0.2137451171875}, {"start": 1490.68, "end": 1490.96, "word": " when", "probability": 0.6875}, {"start": 1490.96, "end": 1491.1, "word": " you", "probability": 0.94140625}, {"start": 1491.1, "end": 1491.38, "word": " execute", "probability": 0.23681640625}, {"start": 1491.38, "end": 1491.5, "word": " a", "probability": 0.367919921875}, {"start": 1491.5, "end": 1491.62, "word": " git", "probability": 0.1385498046875}, {"start": 1491.62, "end": 1492.16, "word": " product", "probability": 0.90478515625}, {"start": 1492.16, "end": 1492.86, "word": " by", "probability": 0.25732421875}, {"start": 1492.86, "end": 1493.18, "word": " itself", "probability": 0.361328125}, {"start": 1493.18, "end": 1493.38, "word": " from", "probability": 0.296875}, {"start": 1493.38, "end": 1493.96, "word": " inside", "probability": 0.4306640625}, {"start": 1493.96, "end": 1494.14, "word": " without", "probability": 0.5380859375}, {"start": 1494.14, "end": 1494.46, "word": " you", "probability": 0.4736328125}, {"start": 1494.46, "end": 1494.8, "word": " knowing", "probability": 0.61279296875}, {"start": 1494.8, "end": 1495.0, "word": " it,", "probability": 0.537109375}, {"start": 1495.38, "end": 1495.48, "word": " it", "probability": 0.75341796875}, {"start": 1495.48, "end": 1495.6, "word": " gets", "probability": 0.310302734375}, {"start": 1495.6, "end": 1495.74, "word": " the", "probability": 0.8857421875}, {"start": 1495.74, "end": 1496.08, "word": " URL", "probability": 0.783203125}, {"start": 1496.08, "end": 1497.24, "word": " and", "probability": 0.61181640625}, {"start": 1497.24, "end": 1497.38, "word": " makes", "probability": 0.396240234375}, {"start": 1497.38, "end": 1497.5, "word": " a", "probability": 0.859375}, {"start": 1497.5, "end": 1497.76, "word": " request", "probability": 0.96728515625}, {"start": 1497.76, "end": 1497.88, "word": " to", "probability": 0.671875}, {"start": 1497.88, "end": 1497.98, "word": " the", "probability": 0.8779296875}, {"start": 1497.98, "end": 1498.34, "word": " server", "probability": 0.92578125}, {"start": 1498.34, "end": 1499.02, "word": " and", "probability": 0.489013671875}, {"start": 1499.02, "end": 1499.18, "word": " gets", "probability": 0.5771484375}, {"start": 1499.18, "end": 1499.32, "word": " the", "probability": 0.55615234375}, {"start": 1499.32, "end": 1499.6, "word": " JSON", "probability": 0.783203125}, {"start": 1499.6, "end": 1499.76, "word": " of", "probability": 0.263916015625}, {"start": 1499.76, "end": 1500.04, "word": " it", "probability": 0.478759765625}, {"start": 1500.04, "end": 1500.82, "word": " and", "probability": 0.5029296875}, {"start": 1500.82, "end": 1501.08, "word": " turns", "probability": 0.434814453125}, {"start": 1501.08, "end": 1501.68, "word": " the", "probability": 0.5078125}, {"start": 1501.68, "end": 1501.96, "word": " JSON", "probability": 0.86083984375}, {"start": 1501.96, "end": 1502.18, "word": " into", "probability": 0.47119140625}, {"start": 1502.18, "end": 1502.94, "word": " an", "probability": 0.52490234375}, {"start": 1502.94, "end": 1503.18, "word": " object", "probability": 0.97412109375}, {"start": 1503.18, "end": 1503.28, "word": " of", "probability": 0.73828125}, {"start": 1503.28, "end": 1503.38, "word": " the", "probability": 0.349609375}, {"start": 1503.38, "end": 1503.72, "word": " product", "probability": 0.41064453125}, {"start": 1503.72, "end": 1503.72, "word": " type", "probability": 0.814453125}, {"start": 1503.72, "end": 1503.88, "word": " and", "probability": 0.41650390625}, {"start": 1503.88, "end": 1503.98, "word": " tells", "probability": 0.34912109375}, {"start": 1503.98, "end": 1504.12, "word": " you", "probability": 0.93701171875}, {"start": 1504.12, "end": 1504.18, "word": " to", "probability": 0.6376953125}, {"start": 1504.18, "end": 1504.36, "word": " go", "probability": 0.404541015625}, {"start": 1504.36, "end": 1504.44, "word": " ahead", "probability": 0.73486328125}, {"start": 1504.44, "end": 1504.48, "word": " with", "probability": 0.287109375}, {"start": 1504.48, "end": 1504.58, "word": " this", "probability": 0.712890625}, {"start": 1504.58, "end": 1504.96, "word": " product.", "probability": 0.89453125}, {"start": 1506.14, "end": 1506.48, "word": " So", "probability": 0.374267578125}, {"start": 1506.48, "end": 1506.72, "word": " what", "probability": 0.50244140625}, {"start": 1506.72, "end": 1506.86, "word": " happens", "probability": 0.787109375}, {"start": 1506.86, "end": 1507.12, "word": " is", "probability": 0.5810546875}, {"start": 1507.12, "end": 1507.58, "word": " that", "probability": 0.66455078125}, {"start": 1507.58, "end": 1507.7, "word": " you", "probability": 0.94482421875}, {"start": 1507.7, "end": 1508.18, "word": " deal", "probability": 0.5048828125}, {"start": 1508.18, "end": 1508.64, "word": " with", "probability": 0.89404296875}, {"start": 1508.64, "end": 1509.68, "word": " the", "probability": 0.87744140625}, {"start": 1509.68, "end": 1510.06, "word": " methods", "probability": 0.8095703125}, {"start": 1510.06, "end": 1510.32, "word": " on", "probability": 0.62060546875}, {"start": 1510.32, "end": 1510.44, "word": " the", "probability": 0.9052734375}, {"start": 1510.44, "end": 1510.72, "word": " server", "probability": 0.9384765625}, {"start": 1510.72, "end": 1510.84, "word": " and", "probability": 0.453125}, {"start": 1510.84, "end": 1511.16, "word": " claim", "probability": 0.439208984375}, {"start": 1511.16, "end": 1511.46, "word": " them", "probability": 0.8115234375}, {"start": 1511.46, "end": 1511.7, "word": " as", "probability": 0.73193359375}, {"start": 1511.7, "end": 1511.86, "word": " if", "probability": 0.865234375}, {"start": 1511.86, "end": 1512.0, "word": " they", "probability": 0.89404296875}, {"start": 1512.0, "end": 1512.04, "word": " are", "probability": 0.53662109375}, {"start": 1512.04, "end": 1512.36, "word": " present", "probability": 0.438232421875}, {"start": 1512.36, "end": 1512.7, "word": " somewhere", "probability": 0.306396484375}, {"start": 1512.7, "end": 1514.16, "word": " on", "probability": 0.62451171875}, {"start": 1514.16, "end": 1514.26, "word": " the", "probability": 0.91455078125}, {"start": 1514.26, "end": 1514.56, "word": " device", "probability": 0.96630859375}, {"start": 1514.56, "end": 1515.0, "word": " itself.", "probability": 0.6005859375}, {"start": 1516.28, "end": 1516.66, "word": " Who", "probability": 0.277099609375}, {"start": 1516.66, "end": 1516.66, "word": " does", "probability": 0.7841796875}, {"start": 1516.66, "end": 1516.66, "word": " this?", "probability": 0.7646484375}, {"start": 1517.58, "end": 1517.76, "word": " The", "probability": 0.82861328125}, {"start": 1517.76, "end": 1518.04, "word": " library.", "probability": 0.6845703125}], "temperature": 1.0}, {"id": 61, "seek": 154518, "start": 1520.96, "end": 1545.18, "text": " And this is easy to do, why? Because this is a method that makes an HTTP request from within it, puts the link, sends it and gets the JSON We can do it manually without this library But the idea is that this class makes you deal with the server and hides the details to make a request, get the JSON and analyze it and call the methods on the server as if these methods are present somewhere", "tokens": [400, 341, 307, 1858, 281, 360, 11, 983, 30, 1436, 341, 307, 257, 3170, 300, 1669, 364, 33283, 5308, 490, 1951, 309, 11, 8137, 264, 2113, 11, 14790, 309, 293, 2170, 264, 31828, 492, 393, 360, 309, 16945, 1553, 341, 6405, 583, 264, 1558, 307, 300, 341, 1508, 1669, 291, 2028, 365, 264, 7154, 293, 35953, 264, 4365, 281, 652, 257, 5308, 11, 483, 264, 31828, 293, 12477, 309, 293, 818, 264, 7150, 322, 264, 7154, 382, 498, 613, 7150, 366, 1974, 4079], "avg_logprob": -0.5811011812516621, "compression_ratio": 1.722466960352423, "no_speech_prob": 2.8252601623535156e-05, "words": [{"start": 1520.96, "end": 1521.44, "word": " And", "probability": 0.12237548828125}, {"start": 1521.44, "end": 1521.92, "word": " this", "probability": 0.5107421875}, {"start": 1521.92, "end": 1521.94, "word": " is", "probability": 0.483642578125}, {"start": 1521.94, "end": 1522.16, "word": " easy", "probability": 0.45458984375}, {"start": 1522.16, "end": 1522.26, "word": " to", "probability": 0.86865234375}, {"start": 1522.26, "end": 1522.44, "word": " do,", "probability": 0.69140625}, {"start": 1522.58, "end": 1522.76, "word": " why?", "probability": 0.33056640625}, {"start": 1523.2, "end": 1523.68, "word": " Because", "probability": 0.458251953125}, {"start": 1523.68, "end": 1523.86, "word": " this", "probability": 0.50341796875}, {"start": 1523.86, "end": 1523.92, "word": " is", "probability": 0.66015625}, {"start": 1523.92, "end": 1524.24, "word": " a", "probability": 0.272705078125}, {"start": 1524.24, "end": 1524.44, "word": " method", "probability": 0.7431640625}, {"start": 1524.44, "end": 1524.68, "word": " that", "probability": 0.295654296875}, {"start": 1524.68, "end": 1525.48, "word": " makes", "probability": 0.282470703125}, {"start": 1525.48, "end": 1525.6, "word": " an", "probability": 0.3212890625}, {"start": 1525.6, "end": 1525.94, "word": " HTTP", "probability": 0.66259765625}, {"start": 1525.94, "end": 1526.36, "word": " request", "probability": 0.96044921875}, {"start": 1526.36, "end": 1526.36, "word": " from", "probability": 0.51806640625}, {"start": 1526.36, "end": 1526.36, "word": " within", "probability": 0.3583984375}, {"start": 1526.36, "end": 1526.36, "word": " it,", "probability": 0.252685546875}, {"start": 1526.44, "end": 1526.68, "word": " puts", "probability": 0.212158203125}, {"start": 1526.68, "end": 1526.86, "word": " the", "probability": 0.4287109375}, {"start": 1526.86, "end": 1527.06, "word": " link,", "probability": 0.92919921875}, {"start": 1527.2, "end": 1527.38, "word": " sends", "probability": 0.685546875}, {"start": 1527.38, "end": 1527.56, "word": " it", "probability": 0.716796875}, {"start": 1527.56, "end": 1527.64, "word": " and", "probability": 0.4462890625}, {"start": 1527.64, "end": 1527.78, "word": " gets", "probability": 0.49853515625}, {"start": 1527.78, "end": 1527.92, "word": " the", "probability": 0.70263671875}, {"start": 1527.92, "end": 1528.2, "word": " JSON", "probability": 0.76708984375}, {"start": 1528.2, "end": 1528.84, "word": " We", "probability": 0.219970703125}, {"start": 1528.84, "end": 1529.06, "word": " can", "probability": 0.6259765625}, {"start": 1529.06, "end": 1529.26, "word": " do", "probability": 0.80517578125}, {"start": 1529.26, "end": 1529.38, "word": " it", "probability": 0.67529296875}, {"start": 1529.38, "end": 1529.82, "word": " manually", "probability": 0.6044921875}, {"start": 1529.82, "end": 1530.24, "word": " without", "probability": 0.6875}, {"start": 1530.24, "end": 1530.38, "word": " this", "probability": 0.5986328125}, {"start": 1530.38, "end": 1530.7, "word": " library", "probability": 0.72509765625}, {"start": 1530.7, "end": 1531.62, "word": " But", "probability": 0.70703125}, {"start": 1531.62, "end": 1532.04, "word": " the", "probability": 0.421142578125}, {"start": 1532.04, "end": 1532.38, "word": " idea", "probability": 0.80322265625}, {"start": 1532.38, "end": 1532.62, "word": " is", "probability": 0.63671875}, {"start": 1532.62, "end": 1533.12, "word": " that", "probability": 0.81103515625}, {"start": 1533.12, "end": 1533.4, "word": " this", "probability": 0.857421875}, {"start": 1533.4, "end": 1533.88, "word": " class", "probability": 0.9375}, {"start": 1533.88, "end": 1534.16, "word": " makes", "probability": 0.26611328125}, {"start": 1534.16, "end": 1534.44, "word": " you", "probability": 0.93505859375}, {"start": 1534.44, "end": 1534.84, "word": " deal", "probability": 0.56982421875}, {"start": 1534.84, "end": 1535.08, "word": " with", "probability": 0.8974609375}, {"start": 1535.08, "end": 1535.24, "word": " the", "probability": 0.865234375}, {"start": 1535.24, "end": 1535.64, "word": " server", "probability": 0.92041015625}, {"start": 1535.64, "end": 1537.08, "word": " and", "probability": 0.53955078125}, {"start": 1537.08, "end": 1537.36, "word": " hides", "probability": 0.73828125}, {"start": 1537.36, "end": 1537.54, "word": " the", "probability": 0.484619140625}, {"start": 1537.54, "end": 1537.94, "word": " details", "probability": 0.85205078125}, {"start": 1537.94, "end": 1538.74, "word": " to", "probability": 0.162841796875}, {"start": 1538.74, "end": 1539.0, "word": " make", "probability": 0.861328125}, {"start": 1539.0, "end": 1539.1, "word": " a", "probability": 0.84423828125}, {"start": 1539.1, "end": 1539.48, "word": " request,", "probability": 0.94140625}, {"start": 1539.64, "end": 1539.78, "word": " get", "probability": 0.62548828125}, {"start": 1539.78, "end": 1539.88, "word": " the", "probability": 0.36181640625}, {"start": 1539.88, "end": 1540.22, "word": " JSON", "probability": 0.78125}, {"start": 1540.22, "end": 1540.4, "word": " and", "probability": 0.634765625}, {"start": 1540.4, "end": 1540.72, "word": " analyze", "probability": 0.83056640625}, {"start": 1540.72, "end": 1541.44, "word": " it", "probability": 0.93408203125}, {"start": 1541.44, "end": 1541.8, "word": " and", "probability": 0.404296875}, {"start": 1541.8, "end": 1542.14, "word": " call", "probability": 0.194580078125}, {"start": 1542.14, "end": 1542.32, "word": " the", "probability": 0.6220703125}, {"start": 1542.32, "end": 1542.52, "word": " methods", "probability": 0.89599609375}, {"start": 1542.52, "end": 1542.68, "word": " on", "probability": 0.76806640625}, {"start": 1542.68, "end": 1542.8, "word": " the", "probability": 0.90185546875}, {"start": 1542.8, "end": 1543.02, "word": " server", "probability": 0.9365234375}, {"start": 1543.02, "end": 1543.22, "word": " as", "probability": 0.396728515625}, {"start": 1543.22, "end": 1543.44, "word": " if", "probability": 0.9248046875}, {"start": 1543.44, "end": 1543.54, "word": " these", "probability": 0.484619140625}, {"start": 1543.54, "end": 1543.84, "word": " methods", "probability": 0.9267578125}, {"start": 1543.84, "end": 1544.66, "word": " are", "probability": 0.5478515625}, {"start": 1544.66, "end": 1544.94, "word": " present", "probability": 0.376220703125}, {"start": 1544.94, "end": 1545.18, "word": " somewhere", "probability": 0.60888671875}], "temperature": 1.0}, {"id": 62, "seek": 157191, "start": 1545.97, "end": 1571.91, "text": " on the device. Libraries, for example on mobile, like Volley and Retrofit, these are famous libraries in Android and Kotlin to make requests on the ... this is its benefit like this, you give him the links and he himself creates the class for you which allows you to learn the methods on the server as if they exist. This is the API that the library does for you. These libraries", "tokens": [322, 264, 4302, 13, 12006, 4889, 11, 337, 1365, 322, 6013, 11, 411, 39602, 2030, 293, 11495, 340, 6845, 11, 613, 366, 4618, 15148, 294, 8853, 293, 30123, 5045, 281, 652, 12475, 322, 264, 1097, 341, 307, 1080, 5121, 411, 341, 11, 291, 976, 796, 264, 6123, 293, 415, 3647, 7829, 264, 1508, 337, 291, 597, 4045, 291, 281, 1466, 264, 7150, 322, 264, 7154, 382, 498, 436, 2514, 13, 639, 307, 264, 9362, 300, 264, 6405, 775, 337, 291, 13, 1981, 15148], "avg_logprob": -0.5978422803538186, "compression_ratio": 1.6593886462882097, "no_speech_prob": 4.0531158447265625e-06, "words": [{"start": 1545.97, "end": 1546.23, "word": " on", "probability": 0.158447265625}, {"start": 1546.23, "end": 1546.35, "word": " the", "probability": 0.36669921875}, {"start": 1546.35, "end": 1546.57, "word": " device.", "probability": 0.6923828125}, {"start": 1546.95, "end": 1547.43, "word": " Libraries,", "probability": 0.83642578125}, {"start": 1547.67, "end": 1547.89, "word": " for", "probability": 0.76025390625}, {"start": 1547.89, "end": 1548.07, "word": " example", "probability": 0.85986328125}, {"start": 1548.07, "end": 1548.25, "word": " on", "probability": 0.333984375}, {"start": 1548.25, "end": 1548.97, "word": " mobile,", "probability": 0.65283203125}, {"start": 1549.15, "end": 1549.33, "word": " like", "probability": 0.7490234375}, {"start": 1549.33, "end": 1549.79, "word": " Volley", "probability": 0.578125}, {"start": 1549.79, "end": 1551.15, "word": " and", "probability": 0.57080078125}, {"start": 1551.15, "end": 1551.89, "word": " Retrofit,", "probability": 0.9417317708333334}, {"start": 1553.19, "end": 1553.61, "word": " these", "probability": 0.35400390625}, {"start": 1553.61, "end": 1553.71, "word": " are", "probability": 0.69970703125}, {"start": 1553.71, "end": 1554.33, "word": " famous", "probability": 0.41748046875}, {"start": 1554.33, "end": 1554.33, "word": " libraries", "probability": 0.92822265625}, {"start": 1554.33, "end": 1554.71, "word": " in", "probability": 0.44384765625}, {"start": 1554.71, "end": 1555.75, "word": " Android", "probability": 0.68115234375}, {"start": 1555.75, "end": 1555.89, "word": " and", "probability": 0.9169921875}, {"start": 1555.89, "end": 1556.33, "word": " Kotlin", "probability": 0.9130859375}, {"start": 1556.33, "end": 1557.01, "word": " to", "probability": 0.391357421875}, {"start": 1557.01, "end": 1557.27, "word": " make", "probability": 0.62939453125}, {"start": 1557.27, "end": 1557.71, "word": " requests", "probability": 0.54736328125}, {"start": 1557.71, "end": 1557.87, "word": " on", "probability": 0.3671875}, {"start": 1557.87, "end": 1558.15, "word": " the", "probability": 0.38427734375}, {"start": 1558.15, "end": 1559.27, "word": " ...", "probability": 0.117431640625}, {"start": 1559.27, "end": 1559.95, "word": " this", "probability": 0.1961669921875}, {"start": 1559.95, "end": 1560.05, "word": " is", "probability": 0.477294921875}, {"start": 1560.05, "end": 1560.11, "word": " its", "probability": 0.344970703125}, {"start": 1560.11, "end": 1560.37, "word": " benefit", "probability": 0.435546875}, {"start": 1560.37, "end": 1560.59, "word": " like", "probability": 0.315185546875}, {"start": 1560.59, "end": 1560.81, "word": " this,", "probability": 0.572265625}, {"start": 1560.91, "end": 1561.05, "word": " you", "probability": 0.890625}, {"start": 1561.05, "end": 1561.39, "word": " give", "probability": 0.7265625}, {"start": 1561.39, "end": 1561.53, "word": " him", "probability": 0.2626953125}, {"start": 1561.53, "end": 1561.73, "word": " the", "probability": 0.42236328125}, {"start": 1561.73, "end": 1562.11, "word": " links", "probability": 0.8720703125}, {"start": 1562.11, "end": 1562.29, "word": " and", "probability": 0.7138671875}, {"start": 1562.29, "end": 1562.49, "word": " he", "probability": 0.865234375}, {"start": 1562.49, "end": 1562.73, "word": " himself", "probability": 0.2186279296875}, {"start": 1562.73, "end": 1563.03, "word": " creates", "probability": 0.1868896484375}, {"start": 1563.03, "end": 1563.29, "word": " the", "probability": 0.4541015625}, {"start": 1563.29, "end": 1563.75, "word": " class", "probability": 0.958984375}, {"start": 1563.75, "end": 1563.99, "word": " for", "probability": 0.5205078125}, {"start": 1563.99, "end": 1564.09, "word": " you", "probability": 0.95947265625}, {"start": 1564.09, "end": 1564.75, "word": " which", "probability": 0.48779296875}, {"start": 1564.75, "end": 1565.09, "word": " allows", "probability": 0.415283203125}, {"start": 1565.09, "end": 1565.29, "word": " you", "probability": 0.95361328125}, {"start": 1565.29, "end": 1565.35, "word": " to", "probability": 0.96435546875}, {"start": 1565.35, "end": 1565.57, "word": " learn", "probability": 0.276611328125}, {"start": 1565.57, "end": 1565.73, "word": " the", "probability": 0.701171875}, {"start": 1565.73, "end": 1565.97, "word": " methods", "probability": 0.8115234375}, {"start": 1565.97, "end": 1566.09, "word": " on", "probability": 0.90966796875}, {"start": 1566.09, "end": 1566.19, "word": " the", "probability": 0.892578125}, {"start": 1566.19, "end": 1566.57, "word": " server", "probability": 0.92333984375}, {"start": 1566.57, "end": 1567.55, "word": " as", "probability": 0.6083984375}, {"start": 1567.55, "end": 1567.67, "word": " if", "probability": 0.88623046875}, {"start": 1567.67, "end": 1567.75, "word": " they", "probability": 0.86962890625}, {"start": 1567.75, "end": 1567.99, "word": " exist.", "probability": 0.29345703125}, {"start": 1568.11, "end": 1568.27, "word": " This", "probability": 0.78515625}, {"start": 1568.27, "end": 1568.31, "word": " is", "probability": 0.947265625}, {"start": 1568.31, "end": 1568.39, "word": " the", "probability": 0.89599609375}, {"start": 1568.39, "end": 1568.73, "word": " API", "probability": 0.8671875}, {"start": 1568.73, "end": 1569.25, "word": " that", "probability": 0.50244140625}, {"start": 1569.25, "end": 1569.77, "word": " the", "probability": 0.47998046875}, {"start": 1569.77, "end": 1570.11, "word": " library", "probability": 0.92138671875}, {"start": 1570.11, "end": 1570.11, "word": " does", "probability": 0.265869140625}, {"start": 1570.11, "end": 1570.27, "word": " for", "probability": 0.666015625}, {"start": 1570.27, "end": 1570.27, "word": " you.", "probability": 0.962890625}, {"start": 1570.95, "end": 1571.43, "word": " These", "probability": 0.31640625}, {"start": 1571.43, "end": 1571.91, "word": " libraries", "probability": 0.52392578125}], "temperature": 1.0}, {"id": 63, "seek": 159226, "start": 1574.0, "end": 1592.26, "text": " And there's also this thing called .. I forgot the famous program so that you can try to make a request to the .. The postman, exactly. The postman himself, if you give him a link to the web service, he can make a code for the entire client in whatever language you want.", "tokens": [400, 456, 311, 611, 341, 551, 1219, 4386, 286, 5298, 264, 4618, 1461, 370, 300, 291, 393, 853, 281, 652, 257, 5308, 281, 264, 4386, 440, 2183, 1601, 11, 2293, 13, 440, 2183, 1601, 3647, 11, 498, 291, 976, 796, 257, 2113, 281, 264, 3670, 2643, 11, 415, 393, 652, 257, 3089, 337, 264, 2302, 6423, 294, 2035, 2856, 291, 528, 13], "avg_logprob": -0.5992063643440367, "compression_ratio": 1.5280898876404494, "no_speech_prob": 5.841255187988281e-06, "words": [{"start": 1574.0, "end": 1574.44, "word": " And", "probability": 0.3193359375}, {"start": 1574.44, "end": 1574.64, "word": " there's", "probability": 0.5220947265625}, {"start": 1574.64, "end": 1574.9, "word": " also", "probability": 0.66796875}, {"start": 1574.9, "end": 1575.12, "word": " this", "probability": 0.288818359375}, {"start": 1575.12, "end": 1575.24, "word": " thing", "probability": 0.291748046875}, {"start": 1575.24, "end": 1575.58, "word": " called", "probability": 0.72509765625}, {"start": 1575.58, "end": 1576.0, "word": " ..", "probability": 0.12445068359375}, {"start": 1576.0, "end": 1578.26, "word": " I", "probability": 0.69140625}, {"start": 1578.26, "end": 1578.42, "word": " forgot", "probability": 0.8603515625}, {"start": 1578.42, "end": 1578.58, "word": " the", "probability": 0.466796875}, {"start": 1578.58, "end": 1579.36, "word": " famous", "probability": 0.456298828125}, {"start": 1579.36, "end": 1579.36, "word": " program", "probability": 0.5263671875}, {"start": 1579.36, "end": 1579.62, "word": " so", "probability": 0.19140625}, {"start": 1579.62, "end": 1579.74, "word": " that", "probability": 0.415771484375}, {"start": 1579.74, "end": 1579.9, "word": " you", "probability": 0.95068359375}, {"start": 1579.9, "end": 1580.42, "word": " can", "probability": 0.57763671875}, {"start": 1580.42, "end": 1580.64, "word": " try", "probability": 0.34619140625}, {"start": 1580.64, "end": 1580.76, "word": " to", "probability": 0.54052734375}, {"start": 1580.76, "end": 1580.9, "word": " make", "probability": 0.48388671875}, {"start": 1580.9, "end": 1580.98, "word": " a", "probability": 0.74853515625}, {"start": 1580.98, "end": 1581.32, "word": " request", "probability": 0.93798828125}, {"start": 1581.32, "end": 1581.5, "word": " to", "probability": 0.23828125}, {"start": 1581.5, "end": 1581.9, "word": " the", "probability": 0.411865234375}, {"start": 1581.9, "end": 1581.9, "word": " ..", "probability": 0.352294921875}, {"start": 1581.9, "end": 1582.36, "word": " The", "probability": 0.313720703125}, {"start": 1582.36, "end": 1582.82, "word": " postman,", "probability": 0.764892578125}, {"start": 1582.94, "end": 1583.22, "word": " exactly.", "probability": 0.77294921875}, {"start": 1583.62, "end": 1583.72, "word": " The", "probability": 0.533203125}, {"start": 1583.72, "end": 1584.2, "word": " postman", "probability": 0.927001953125}, {"start": 1584.2, "end": 1584.6, "word": " himself,", "probability": 0.60107421875}, {"start": 1585.08, "end": 1585.22, "word": " if", "probability": 0.92724609375}, {"start": 1585.22, "end": 1585.52, "word": " you", "probability": 0.958984375}, {"start": 1585.52, "end": 1585.52, "word": " give", "probability": 0.52783203125}, {"start": 1585.52, "end": 1585.66, "word": " him", "probability": 0.8798828125}, {"start": 1585.66, "end": 1585.68, "word": " a", "probability": 0.83447265625}, {"start": 1585.68, "end": 1585.84, "word": " link", "probability": 0.76416015625}, {"start": 1585.84, "end": 1586.0, "word": " to", "probability": 0.86962890625}, {"start": 1586.0, "end": 1586.04, "word": " the", "probability": 0.417724609375}, {"start": 1586.04, "end": 1586.12, "word": " web", "probability": 0.6357421875}, {"start": 1586.12, "end": 1586.64, "word": " service,", "probability": 0.88623046875}, {"start": 1587.3, "end": 1587.74, "word": " he", "probability": 0.3994140625}, {"start": 1587.74, "end": 1588.16, "word": " can", "probability": 0.8681640625}, {"start": 1588.16, "end": 1588.34, "word": " make", "probability": 0.436767578125}, {"start": 1588.34, "end": 1588.52, "word": " a", "probability": 0.62158203125}, {"start": 1588.52, "end": 1588.66, "word": " code", "probability": 0.849609375}, {"start": 1588.66, "end": 1588.8, "word": " for", "probability": 0.84619140625}, {"start": 1588.8, "end": 1588.8, "word": " the", "probability": 0.462890625}, {"start": 1588.8, "end": 1588.82, "word": " entire", "probability": 0.474853515625}, {"start": 1588.82, "end": 1589.12, "word": " client", "probability": 0.88818359375}, {"start": 1589.12, "end": 1591.36, "word": " in", "probability": 0.29052734375}, {"start": 1591.36, "end": 1591.56, "word": " whatever", "probability": 0.396484375}, {"start": 1591.56, "end": 1591.8, "word": " language", "probability": 0.7880859375}, {"start": 1591.8, "end": 1592.02, "word": " you", "probability": 0.912109375}, {"start": 1592.02, "end": 1592.26, "word": " want.", "probability": 0.79052734375}], "temperature": 1.0}, {"id": 64, "seek": 161542, "start": 1594.58, "end": 1615.42, "text": "Okay? Now, what does this have to do with the proxy that we are talking about? Did you notice that we did not say that in the client-side, I create a class that is very similar to the one in the server, and from within it, I hide the details that it makes a connection to the server and gives a request and gives a response and so on? This is also what we call a proxy.", "tokens": [8297, 30, 823, 11, 437, 775, 341, 362, 281, 360, 365, 264, 29690, 300, 321, 366, 1417, 466, 30, 2589, 291, 3449, 300, 321, 630, 406, 584, 300, 294, 264, 6423, 12, 1812, 11, 286, 1884, 257, 1508, 300, 307, 588, 2531, 281, 264, 472, 294, 264, 7154, 11, 293, 490, 1951, 309, 11, 286, 6479, 264, 4365, 300, 309, 1669, 257, 4984, 281, 264, 7154, 293, 2709, 257, 5308, 293, 2709, 257, 4134, 293, 370, 322, 30, 639, 307, 611, 437, 321, 818, 257, 29690, 13], "avg_logprob": -0.5390625203197653, "compression_ratio": 1.6849315068493151, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 1594.5800000000002, "end": 1594.94, "word": "Okay?", "probability": 0.1712646484375}, {"start": 1597.18, "end": 1597.54, "word": " Now,", "probability": 0.46337890625}, {"start": 1597.82, "end": 1598.12, "word": " what", "probability": 0.7080078125}, {"start": 1598.12, "end": 1598.12, "word": " does", "probability": 0.1715087890625}, {"start": 1598.12, "end": 1598.36, "word": " this", "probability": 0.6748046875}, {"start": 1598.36, "end": 1598.38, "word": " have", "probability": 0.75390625}, {"start": 1598.38, "end": 1598.58, "word": " to", "probability": 0.96630859375}, {"start": 1598.58, "end": 1598.66, "word": " do", "probability": 0.9677734375}, {"start": 1598.66, "end": 1598.8, "word": " with", "probability": 0.8916015625}, {"start": 1598.8, "end": 1598.94, "word": " the", "probability": 0.62451171875}, {"start": 1598.94, "end": 1599.2, "word": " proxy", "probability": 0.943359375}, {"start": 1599.2, "end": 1599.32, "word": " that", "probability": 0.5283203125}, {"start": 1599.32, "end": 1599.44, "word": " we", "probability": 0.7685546875}, {"start": 1599.44, "end": 1599.56, "word": " are", "probability": 0.39599609375}, {"start": 1599.56, "end": 1599.76, "word": " talking", "probability": 0.6044921875}, {"start": 1599.76, "end": 1600.14, "word": " about?", "probability": 0.89404296875}, {"start": 1600.36, "end": 1600.48, "word": " Did", "probability": 0.278076171875}, {"start": 1600.48, "end": 1600.6, "word": " you", "probability": 0.763671875}, {"start": 1600.6, "end": 1600.62, "word": " notice", "probability": 0.70654296875}, {"start": 1600.62, "end": 1600.72, "word": " that", "probability": 0.78369140625}, {"start": 1600.72, "end": 1600.76, "word": " we", "probability": 0.2486572265625}, {"start": 1600.76, "end": 1600.84, "word": " did", "probability": 0.4697265625}, {"start": 1600.84, "end": 1600.84, "word": " not", "probability": 0.884765625}, {"start": 1600.84, "end": 1601.04, "word": " say", "probability": 0.748046875}, {"start": 1601.04, "end": 1601.58, "word": " that", "probability": 0.76220703125}, {"start": 1601.58, "end": 1602.08, "word": " in", "probability": 0.69482421875}, {"start": 1602.08, "end": 1602.18, "word": " the", "probability": 0.6982421875}, {"start": 1602.18, "end": 1602.48, "word": " client", "probability": 0.83935546875}, {"start": 1602.48, "end": 1602.86, "word": "-side,", "probability": 0.748046875}, {"start": 1602.96, "end": 1603.06, "word": " I", "probability": 0.6044921875}, {"start": 1603.06, "end": 1603.22, "word": " create", "probability": 0.2156982421875}, {"start": 1603.22, "end": 1603.4, "word": " a", "probability": 0.80712890625}, {"start": 1603.4, "end": 1603.78, "word": " class", "probability": 0.9287109375}, {"start": 1603.78, "end": 1603.88, "word": " that", "probability": 0.3125}, {"start": 1603.88, "end": 1603.9, "word": " is", "probability": 0.7412109375}, {"start": 1603.9, "end": 1603.9, "word": " very", "probability": 0.7021484375}, {"start": 1603.9, "end": 1604.28, "word": " similar", "probability": 0.93505859375}, {"start": 1604.28, "end": 1604.28, "word": " to", "probability": 0.6630859375}, {"start": 1604.28, "end": 1605.32, "word": " the", "probability": 0.458984375}, {"start": 1605.32, "end": 1605.48, "word": " one", "probability": 0.6279296875}, {"start": 1605.48, "end": 1606.48, "word": " in", "probability": 0.2425537109375}, {"start": 1606.48, "end": 1606.6, "word": " the", "probability": 0.88916015625}, {"start": 1606.6, "end": 1606.92, "word": " server,", "probability": 0.83935546875}, {"start": 1607.42, "end": 1607.5, "word": " and", "probability": 0.68310546875}, {"start": 1607.5, "end": 1607.62, "word": " from", "probability": 0.4091796875}, {"start": 1607.62, "end": 1607.94, "word": " within", "probability": 0.53662109375}, {"start": 1607.94, "end": 1608.12, "word": " it,", "probability": 0.61083984375}, {"start": 1608.12, "end": 1608.3, "word": " I", "probability": 0.98974609375}, {"start": 1608.3, "end": 1608.62, "word": " hide", "probability": 0.724609375}, {"start": 1608.62, "end": 1608.76, "word": " the", "probability": 0.50439453125}, {"start": 1608.76, "end": 1609.06, "word": " details", "probability": 0.56640625}, {"start": 1609.06, "end": 1609.28, "word": " that", "probability": 0.301513671875}, {"start": 1609.28, "end": 1609.38, "word": " it", "probability": 0.57861328125}, {"start": 1609.38, "end": 1609.52, "word": " makes", "probability": 0.310546875}, {"start": 1609.52, "end": 1609.66, "word": " a", "probability": 0.53271484375}, {"start": 1609.66, "end": 1610.02, "word": " connection", "probability": 0.888671875}, {"start": 1610.02, "end": 1610.2, "word": " to", "probability": 0.6669921875}, {"start": 1610.2, "end": 1610.3, "word": " the", "probability": 0.9072265625}, {"start": 1610.3, "end": 1610.58, "word": " server", "probability": 0.9326171875}, {"start": 1610.58, "end": 1610.74, "word": " and", "probability": 0.372314453125}, {"start": 1610.74, "end": 1610.88, "word": " gives", "probability": 0.0999755859375}, {"start": 1610.88, "end": 1610.98, "word": " a", "probability": 0.73828125}, {"start": 1610.98, "end": 1611.34, "word": " request", "probability": 0.96435546875}, {"start": 1611.34, "end": 1611.52, "word": " and", "probability": 0.595703125}, {"start": 1611.52, "end": 1611.66, "word": " gives", "probability": 0.3642578125}, {"start": 1611.66, "end": 1611.76, "word": " a", "probability": 0.8505859375}, {"start": 1611.76, "end": 1612.24, "word": " response", "probability": 0.9609375}, {"start": 1612.24, "end": 1612.72, "word": " and", "probability": 0.3173828125}, {"start": 1612.72, "end": 1612.96, "word": " so", "probability": 0.2198486328125}, {"start": 1612.96, "end": 1613.12, "word": " on?", "probability": 0.82421875}, {"start": 1613.42, "end": 1613.66, "word": " This", "probability": 0.685546875}, {"start": 1613.66, "end": 1613.74, "word": " is", "probability": 0.7919921875}, {"start": 1613.74, "end": 1613.88, "word": " also", "probability": 0.66259765625}, {"start": 1613.88, "end": 1613.94, "word": " what", "probability": 0.53076171875}, {"start": 1613.94, "end": 1614.04, "word": " we", "probability": 0.92626953125}, {"start": 1614.04, "end": 1614.38, "word": " call", "probability": 0.8974609375}, {"start": 1614.38, "end": 1615.1, "word": " a", "probability": 0.64892578125}, {"start": 1615.1, "end": 1615.42, "word": " proxy.", "probability": 0.96875}], "temperature": 1.0}, {"id": 65, "seek": 163960, "start": 1616.96, "end": 1639.6, "text": "So the idea that I make a class similar to what is on the server, API, and I call the method on the server as if it is present on the local device, this class is also considered to be a proxy pattern. And this is the concept of remote method invocation, that you call a method that is far away as if this method is present on the local machine.", "tokens": [6455, 264, 1558, 300, 286, 652, 257, 1508, 2531, 281, 437, 307, 322, 264, 7154, 11, 9362, 11, 293, 286, 818, 264, 3170, 322, 264, 7154, 382, 498, 309, 307, 1974, 322, 264, 2654, 4302, 11, 341, 1508, 307, 611, 4888, 281, 312, 257, 29690, 5102, 13, 400, 341, 307, 264, 3410, 295, 8607, 3170, 1048, 27943, 11, 300, 291, 818, 257, 3170, 300, 307, 1400, 1314, 382, 498, 341, 3170, 307, 1974, 322, 264, 2654, 3479, 13], "avg_logprob": -0.37816456752487376, "compression_ratio": 1.7461928934010151, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 1616.9599999999998, "end": 1617.36, "word": "So", "probability": 0.315673828125}, {"start": 1617.36, "end": 1617.48, "word": " the", "probability": 0.56640625}, {"start": 1617.48, "end": 1617.66, "word": " idea", "probability": 0.75244140625}, {"start": 1617.66, "end": 1617.88, "word": " that", "probability": 0.359375}, {"start": 1617.88, "end": 1618.12, "word": " I", "probability": 0.7470703125}, {"start": 1618.12, "end": 1618.32, "word": " make", "probability": 0.2325439453125}, {"start": 1618.32, "end": 1618.46, "word": " a", "probability": 0.9140625}, {"start": 1618.46, "end": 1618.88, "word": " class", "probability": 0.9248046875}, {"start": 1618.88, "end": 1619.2, "word": " similar", "probability": 0.59765625}, {"start": 1619.2, "end": 1619.5, "word": " to", "probability": 0.95751953125}, {"start": 1619.5, "end": 1619.56, "word": " what", "probability": 0.58740234375}, {"start": 1619.56, "end": 1619.58, "word": " is", "probability": 0.5146484375}, {"start": 1619.58, "end": 1619.88, "word": " on", "probability": 0.375244140625}, {"start": 1619.88, "end": 1620.0, "word": " the", "probability": 0.7724609375}, {"start": 1620.0, "end": 1620.34, "word": " server,", "probability": 0.90869140625}, {"start": 1620.86, "end": 1621.22, "word": " API,", "probability": 0.56982421875}, {"start": 1622.34, "end": 1622.5, "word": " and", "probability": 0.8671875}, {"start": 1622.5, "end": 1622.7, "word": " I", "probability": 0.69921875}, {"start": 1622.7, "end": 1622.94, "word": " call", "probability": 0.52685546875}, {"start": 1622.94, "end": 1623.1, "word": " the", "probability": 0.67626953125}, {"start": 1623.1, "end": 1623.34, "word": " method", "probability": 0.93603515625}, {"start": 1623.34, "end": 1623.48, "word": " on", "probability": 0.75439453125}, {"start": 1623.48, "end": 1623.62, "word": " the", "probability": 0.8193359375}, {"start": 1623.62, "end": 1623.92, "word": " server", "probability": 0.958984375}, {"start": 1623.92, "end": 1624.16, "word": " as", "probability": 0.7587890625}, {"start": 1624.16, "end": 1624.34, "word": " if", "probability": 0.884765625}, {"start": 1624.34, "end": 1624.44, "word": " it", "probability": 0.9326171875}, {"start": 1624.44, "end": 1624.5, "word": " is", "probability": 0.52197265625}, {"start": 1624.5, "end": 1624.82, "word": " present", "probability": 0.358642578125}, {"start": 1624.82, "end": 1624.92, "word": " on", "probability": 0.8759765625}, {"start": 1624.92, "end": 1625.02, "word": " the", "probability": 0.74609375}, {"start": 1625.02, "end": 1625.18, "word": " local", "probability": 0.81640625}, {"start": 1625.18, "end": 1625.66, "word": " device,", "probability": 0.90576171875}, {"start": 1625.78, "end": 1625.88, "word": " this", "probability": 0.6494140625}, {"start": 1625.88, "end": 1626.82, "word": " class", "probability": 0.82275390625}, {"start": 1626.82, "end": 1627.1, "word": " is", "probability": 0.7666015625}, {"start": 1627.1, "end": 1627.26, "word": " also", "probability": 0.455078125}, {"start": 1627.26, "end": 1627.3, "word": " considered", "probability": 0.76318359375}, {"start": 1627.3, "end": 1627.36, "word": " to", "probability": 0.30712890625}, {"start": 1627.36, "end": 1627.98, "word": " be", "probability": 0.90185546875}, {"start": 1627.98, "end": 1628.14, "word": " a", "probability": 0.64501953125}, {"start": 1628.14, "end": 1628.54, "word": " proxy", "probability": 0.9814453125}, {"start": 1628.54, "end": 1631.34, "word": " pattern.", "probability": 0.82470703125}, {"start": 1631.4, "end": 1631.4, "word": " And", "probability": 0.3701171875}, {"start": 1631.4, "end": 1632.5, "word": " this", "probability": 0.89404296875}, {"start": 1632.5, "end": 1632.62, "word": " is", "probability": 0.92138671875}, {"start": 1632.62, "end": 1632.74, "word": " the", "probability": 0.80078125}, {"start": 1632.74, "end": 1632.94, "word": " concept", "probability": 0.7578125}, {"start": 1632.94, "end": 1633.08, "word": " of", "probability": 0.94580078125}, {"start": 1633.08, "end": 1633.38, "word": " remote", "probability": 0.515625}, {"start": 1633.38, "end": 1633.68, "word": " method", "probability": 0.94140625}, {"start": 1633.68, "end": 1634.26, "word": " invocation,", "probability": 0.953857421875}, {"start": 1634.9, "end": 1634.98, "word": " that", "probability": 0.3583984375}, {"start": 1634.98, "end": 1635.26, "word": " you", "probability": 0.9052734375}, {"start": 1635.26, "end": 1635.56, "word": " call", "probability": 0.7822265625}, {"start": 1635.56, "end": 1635.72, "word": " a", "probability": 0.8193359375}, {"start": 1635.72, "end": 1635.98, "word": " method", "probability": 0.92724609375}, {"start": 1635.98, "end": 1636.16, "word": " that", "probability": 0.492431640625}, {"start": 1636.16, "end": 1636.16, "word": " is", "probability": 0.8564453125}, {"start": 1636.16, "end": 1636.68, "word": " far", "probability": 0.6064453125}, {"start": 1636.68, "end": 1636.88, "word": " away", "probability": 0.82763671875}, {"start": 1636.88, "end": 1637.1, "word": " as", "probability": 0.68359375}, {"start": 1637.1, "end": 1637.32, "word": " if", "probability": 0.9462890625}, {"start": 1637.32, "end": 1637.44, "word": " this", "probability": 0.56396484375}, {"start": 1637.44, "end": 1637.66, "word": " method", "probability": 0.94287109375}, {"start": 1637.66, "end": 1637.82, "word": " is", "probability": 0.73779296875}, {"start": 1637.82, "end": 1638.18, "word": " present", "probability": 0.79443359375}, {"start": 1638.18, "end": 1638.96, "word": " on", "probability": 0.9375}, {"start": 1638.96, "end": 1639.04, "word": " the", "probability": 0.8408203125}, {"start": 1639.04, "end": 1639.24, "word": " local", "probability": 0.8984375}, {"start": 1639.24, "end": 1639.6, "word": " machine.", "probability": 0.83984375}], "temperature": 1.0}, {"id": 66, "seek": 165487, "start": 1641.97, "end": 1654.87, "text": "This is the client. Here it does remote object implementation. The same object or code in the client does its implementation here, but of course there are details", "tokens": [5723, 307, 264, 6423, 13, 1692, 309, 775, 8607, 2657, 11420, 13, 440, 912, 2657, 420, 3089, 294, 264, 6423, 775, 1080, 11420, 510, 11, 457, 295, 1164, 456, 366, 4365], "avg_logprob": -0.6284179612994194, "compression_ratio": 1.4594594594594594, "no_speech_prob": 2.7418136596679688e-06, "words": [{"start": 1641.97, "end": 1642.55, "word": "This", "probability": 0.114013671875}, {"start": 1642.55, "end": 1642.55, "word": " is", "probability": 0.74609375}, {"start": 1642.55, "end": 1643.71, "word": " the", "probability": 0.7080078125}, {"start": 1643.71, "end": 1645.67, "word": " client.", "probability": 0.71484375}, {"start": 1646.41, "end": 1647.09, "word": " Here", "probability": 0.1453857421875}, {"start": 1647.09, "end": 1647.21, "word": " it", "probability": 0.4794921875}, {"start": 1647.21, "end": 1647.55, "word": " does", "probability": 0.420166015625}, {"start": 1647.55, "end": 1648.55, "word": " remote", "probability": 0.474609375}, {"start": 1648.55, "end": 1648.99, "word": " object", "probability": 0.94677734375}, {"start": 1648.99, "end": 1649.79, "word": " implementation.", "probability": 0.888671875}, {"start": 1650.13, "end": 1650.43, "word": " The", "probability": 0.460693359375}, {"start": 1650.43, "end": 1650.43, "word": " same", "probability": 0.68359375}, {"start": 1650.43, "end": 1650.93, "word": " object", "probability": 0.78759765625}, {"start": 1650.93, "end": 1651.13, "word": " or", "probability": 0.560546875}, {"start": 1651.13, "end": 1651.69, "word": " code", "probability": 0.5703125}, {"start": 1651.69, "end": 1651.95, "word": " in", "probability": 0.1888427734375}, {"start": 1651.95, "end": 1652.09, "word": " the", "probability": 0.7119140625}, {"start": 1652.09, "end": 1652.35, "word": " client", "probability": 0.89453125}, {"start": 1652.35, "end": 1652.61, "word": " does", "probability": 0.70751953125}, {"start": 1652.61, "end": 1652.77, "word": " its", "probability": 0.464111328125}, {"start": 1652.77, "end": 1653.31, "word": " implementation", "probability": 0.814453125}, {"start": 1653.31, "end": 1653.83, "word": " here,", "probability": 0.66064453125}, {"start": 1653.89, "end": 1654.01, "word": " but", "probability": 0.82861328125}, {"start": 1654.01, "end": 1654.17, "word": " of", "probability": 0.45654296875}, {"start": 1654.17, "end": 1654.27, "word": " course", "probability": 0.95263671875}, {"start": 1654.27, "end": 1654.41, "word": " there", "probability": 0.71875}, {"start": 1654.41, "end": 1654.51, "word": " are", "probability": 0.904296875}, {"start": 1654.51, "end": 1654.87, "word": " details", "probability": 0.72607421875}], "temperature": 1.0}, {"id": 67, "seek": 167818, "start": 1657.12, "end": 1678.18, "text": "Connection, Response, Request and Response are hidden from us. But in the end, the shape of the object here is the same shape as the one on the server. And this is one of the applications of the proxy pattern. Here, of course, it lists the types of proxies. We talked about them, but now it has to classify them with specific names. There is the virtual proxy. What is the word virtual?", "tokens": [9838, 1569, 313, 11, 43937, 11, 1300, 20343, 293, 43937, 366, 7633, 490, 505, 13, 583, 294, 264, 917, 11, 264, 3909, 295, 264, 2657, 510, 307, 264, 912, 3909, 382, 264, 472, 322, 264, 7154, 13, 400, 341, 307, 472, 295, 264, 5821, 295, 264, 29690, 5102, 13, 1692, 11, 295, 1164, 11, 309, 14511, 264, 3467, 295, 447, 87, 530, 13, 492, 2825, 466, 552, 11, 457, 586, 309, 575, 281, 33872, 552, 365, 2685, 5288, 13, 821, 307, 264, 6374, 29690, 13, 708, 307, 264, 1349, 6374, 30], "avg_logprob": -0.5275135610414587, "compression_ratio": 1.6929824561403508, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 1657.12, "end": 1657.52, "word": "Connection,", "probability": 0.6100667317708334}, {"start": 1657.52, "end": 1657.92, "word": " Response,", "probability": 0.26708984375}, {"start": 1658.04, "end": 1658.4, "word": " Request", "probability": 0.6268310546875}, {"start": 1658.4, "end": 1658.54, "word": " and", "probability": 0.6337890625}, {"start": 1658.54, "end": 1658.96, "word": " Response", "probability": 0.9111328125}, {"start": 1658.96, "end": 1659.18, "word": " are", "probability": 0.52001953125}, {"start": 1659.18, "end": 1659.58, "word": " hidden", "probability": 0.599609375}, {"start": 1659.58, "end": 1659.82, "word": " from", "probability": 0.261474609375}, {"start": 1659.82, "end": 1660.02, "word": " us.", "probability": 0.58642578125}, {"start": 1660.34, "end": 1660.44, "word": " But", "probability": 0.47021484375}, {"start": 1660.44, "end": 1660.54, "word": " in", "probability": 0.2398681640625}, {"start": 1660.54, "end": 1660.64, "word": " the", "probability": 0.845703125}, {"start": 1660.64, "end": 1660.82, "word": " end,", "probability": 0.89208984375}, {"start": 1661.0, "end": 1661.0, "word": " the", "probability": 0.7685546875}, {"start": 1661.0, "end": 1661.18, "word": " shape", "probability": 0.408447265625}, {"start": 1661.18, "end": 1661.34, "word": " of", "probability": 0.95654296875}, {"start": 1661.34, "end": 1661.38, "word": " the", "probability": 0.7197265625}, {"start": 1661.38, "end": 1661.66, "word": " object", "probability": 0.9248046875}, {"start": 1661.66, "end": 1662.02, "word": " here", "probability": 0.39453125}, {"start": 1662.02, "end": 1662.18, "word": " is", "probability": 0.83935546875}, {"start": 1662.18, "end": 1662.3, "word": " the", "probability": 0.58203125}, {"start": 1662.3, "end": 1662.4, "word": " same", "probability": 0.8564453125}, {"start": 1662.4, "end": 1662.8, "word": " shape", "probability": 0.442138671875}, {"start": 1662.8, "end": 1663.6, "word": " as", "probability": 0.36376953125}, {"start": 1663.6, "end": 1663.6, "word": " the", "probability": 0.27880859375}, {"start": 1663.6, "end": 1663.6, "word": " one", "probability": 0.47265625}, {"start": 1663.6, "end": 1664.02, "word": " on", "probability": 0.66455078125}, {"start": 1664.02, "end": 1664.68, "word": " the", "probability": 0.9052734375}, {"start": 1664.68, "end": 1664.94, "word": " server.", "probability": 0.8642578125}, {"start": 1665.06, "end": 1665.08, "word": " And", "probability": 0.449462890625}, {"start": 1665.08, "end": 1665.18, "word": " this", "probability": 0.69970703125}, {"start": 1665.18, "end": 1665.22, "word": " is", "probability": 0.9228515625}, {"start": 1665.22, "end": 1665.42, "word": " one", "probability": 0.865234375}, {"start": 1665.42, "end": 1665.52, "word": " of", "probability": 0.86962890625}, {"start": 1665.52, "end": 1665.54, "word": " the", "probability": 0.8427734375}, {"start": 1665.54, "end": 1665.84, "word": " applications", "probability": 0.23388671875}, {"start": 1665.84, "end": 1666.02, "word": " of", "probability": 0.6826171875}, {"start": 1666.02, "end": 1666.1, "word": " the", "probability": 0.334716796875}, {"start": 1666.1, "end": 1666.46, "word": " proxy", "probability": 0.85986328125}, {"start": 1666.46, "end": 1668.34, "word": " pattern.", "probability": 0.84716796875}, {"start": 1669.02, "end": 1669.28, "word": " Here,", "probability": 0.171630859375}, {"start": 1669.42, "end": 1669.48, "word": " of", "probability": 0.399658203125}, {"start": 1669.48, "end": 1669.58, "word": " course,", "probability": 0.96044921875}, {"start": 1669.68, "end": 1669.68, "word": " it", "probability": 0.43212890625}, {"start": 1669.68, "end": 1670.02, "word": " lists", "probability": 0.447021484375}, {"start": 1670.02, "end": 1670.28, "word": " the", "probability": 0.55322265625}, {"start": 1670.28, "end": 1670.56, "word": " types", "probability": 0.7197265625}, {"start": 1670.56, "end": 1671.82, "word": " of", "probability": 0.97021484375}, {"start": 1671.82, "end": 1672.36, "word": " proxies.", "probability": 0.8898111979166666}, {"start": 1672.62, "end": 1672.86, "word": " We", "probability": 0.86279296875}, {"start": 1672.86, "end": 1673.14, "word": " talked", "probability": 0.332763671875}, {"start": 1673.14, "end": 1673.44, "word": " about", "probability": 0.9130859375}, {"start": 1673.44, "end": 1673.54, "word": " them,", "probability": 0.87646484375}, {"start": 1673.6, "end": 1673.74, "word": " but", "probability": 0.89892578125}, {"start": 1673.74, "end": 1673.92, "word": " now", "probability": 0.828125}, {"start": 1673.92, "end": 1674.04, "word": " it", "probability": 0.55078125}, {"start": 1674.04, "end": 1674.08, "word": " has", "probability": 0.120361328125}, {"start": 1674.08, "end": 1674.38, "word": " to", "probability": 0.7255859375}, {"start": 1674.38, "end": 1674.38, "word": " classify", "probability": 0.288330078125}, {"start": 1674.38, "end": 1674.52, "word": " them", "probability": 0.86279296875}, {"start": 1674.52, "end": 1674.64, "word": " with", "probability": 0.3583984375}, {"start": 1674.64, "end": 1674.7, "word": " specific", "probability": 0.6357421875}, {"start": 1674.7, "end": 1675.48, "word": " names.", "probability": 0.58837890625}, {"start": 1676.0, "end": 1676.24, "word": " There", "probability": 0.380859375}, {"start": 1676.24, "end": 1676.26, "word": " is", "probability": 0.80712890625}, {"start": 1676.26, "end": 1676.5, "word": " the", "probability": 0.302978515625}, {"start": 1676.5, "end": 1676.94, "word": " virtual", "probability": 0.8173828125}, {"start": 1676.94, "end": 1677.32, "word": " proxy.", "probability": 0.96044921875}, {"start": 1677.34, "end": 1677.48, "word": " What", "probability": 0.822265625}, {"start": 1677.48, "end": 1677.58, "word": " is", "probability": 0.75927734375}, {"start": 1677.58, "end": 1677.66, "word": " the", "probability": 0.82275390625}, {"start": 1677.66, "end": 1677.76, "word": " word", "probability": 0.6015625}, {"start": 1677.76, "end": 1678.18, "word": " virtual?", "probability": 0.75048828125}], "temperature": 1.0}, {"id": 68, "seek": 170714, "start": 1679.2, "end": 1707.14, "text": " Hypothetically, okay? Or it's not true here. It's like, what does this virtual proxy mean? Delaying the creation and instantiation of expensive objects until need. Like the proxy image that we made. Why is it called virtual? Because the proxy image is not the image. The image is what I'm wrapped inside. Okay? Why did I do this? To delay the construction of the object for the time I need. Okay? Remote proxies.", "tokens": [45649, 900, 22652, 11, 1392, 30, 1610, 309, 311, 406, 2074, 510, 13, 467, 311, 411, 11, 437, 775, 341, 6374, 29690, 914, 30, 5831, 32600, 264, 8016, 293, 9836, 6642, 295, 5124, 6565, 1826, 643, 13, 1743, 264, 29690, 3256, 300, 321, 1027, 13, 1545, 307, 309, 1219, 6374, 30, 1436, 264, 29690, 3256, 307, 406, 264, 3256, 13, 440, 3256, 307, 437, 286, 478, 14226, 1854, 13, 1033, 30, 1545, 630, 286, 360, 341, 30, 1407, 8577, 264, 6435, 295, 264, 2657, 337, 264, 565, 286, 643, 13, 1033, 30, 44858, 447, 87, 530, 13], "avg_logprob": -0.4244260106767927, "compression_ratio": 1.6586345381526104, "no_speech_prob": 1.9550323486328125e-05, "words": [{"start": 1679.2, "end": 1679.68, "word": " Hypothetically,", "probability": 0.5567423502604166}, {"start": 1680.02, "end": 1680.22, "word": " okay?", "probability": 0.2073974609375}, {"start": 1680.42, "end": 1680.66, "word": " Or", "probability": 0.83740234375}, {"start": 1680.66, "end": 1680.76, "word": " it's", "probability": 0.308746337890625}, {"start": 1680.76, "end": 1680.86, "word": " not", "probability": 0.62109375}, {"start": 1680.86, "end": 1681.2, "word": " true", "probability": 0.45068359375}, {"start": 1681.2, "end": 1681.54, "word": " here.", "probability": 0.497802734375}, {"start": 1681.8, "end": 1682.14, "word": " It's", "probability": 0.47503662109375}, {"start": 1682.14, "end": 1682.34, "word": " like,", "probability": 0.80908203125}, {"start": 1682.34, "end": 1682.8, "word": " what", "probability": 0.75634765625}, {"start": 1682.8, "end": 1682.96, "word": " does", "probability": 0.252685546875}, {"start": 1682.96, "end": 1683.38, "word": " this", "probability": 0.6826171875}, {"start": 1683.38, "end": 1683.8, "word": " virtual", "probability": 0.72900390625}, {"start": 1683.8, "end": 1684.28, "word": " proxy", "probability": 0.9755859375}, {"start": 1684.28, "end": 1684.28, "word": " mean?", "probability": 0.6015625}, {"start": 1684.76, "end": 1685.24, "word": " Delaying", "probability": 0.857421875}, {"start": 1685.24, "end": 1685.5, "word": " the", "probability": 0.88427734375}, {"start": 1685.5, "end": 1686.0, "word": " creation", "probability": 0.8974609375}, {"start": 1686.0, "end": 1686.38, "word": " and", "probability": 0.931640625}, {"start": 1686.38, "end": 1687.1, "word": " instantiation", "probability": 0.676513671875}, {"start": 1687.1, "end": 1687.46, "word": " of", "probability": 0.96875}, {"start": 1687.46, "end": 1688.16, "word": " expensive", "probability": 0.958984375}, {"start": 1688.16, "end": 1689.26, "word": " objects", "probability": 0.94677734375}, {"start": 1689.26, "end": 1689.76, "word": " until", "probability": 0.82080078125}, {"start": 1689.76, "end": 1690.86, "word": " need.", "probability": 0.53076171875}, {"start": 1692.32, "end": 1692.6, "word": " Like", "probability": 0.59765625}, {"start": 1692.6, "end": 1692.86, "word": " the", "probability": 0.787109375}, {"start": 1692.86, "end": 1693.12, "word": " proxy", "probability": 0.9697265625}, {"start": 1693.12, "end": 1693.34, "word": " image", "probability": 0.9345703125}, {"start": 1693.34, "end": 1693.46, "word": " that", "probability": 0.55224609375}, {"start": 1693.46, "end": 1693.6, "word": " we", "probability": 0.91845703125}, {"start": 1693.6, "end": 1693.82, "word": " made.", "probability": 0.48193359375}, {"start": 1694.34, "end": 1694.78, "word": " Why", "probability": 0.67138671875}, {"start": 1694.78, "end": 1694.84, "word": " is", "probability": 0.3486328125}, {"start": 1694.84, "end": 1694.84, "word": " it", "probability": 0.89501953125}, {"start": 1694.84, "end": 1695.04, "word": " called", "probability": 0.80078125}, {"start": 1695.04, "end": 1695.4, "word": " virtual?", "probability": 0.82373046875}, {"start": 1695.56, "end": 1695.72, "word": " Because", "probability": 0.919921875}, {"start": 1695.72, "end": 1695.9, "word": " the", "probability": 0.71923828125}, {"start": 1695.9, "end": 1696.1, "word": " proxy", "probability": 0.9765625}, {"start": 1696.1, "end": 1696.3, "word": " image", "probability": 0.9267578125}, {"start": 1696.3, "end": 1696.44, "word": " is", "probability": 0.861328125}, {"start": 1696.44, "end": 1696.46, "word": " not", "probability": 0.9462890625}, {"start": 1696.46, "end": 1696.7, "word": " the", "probability": 0.84228515625}, {"start": 1696.7, "end": 1696.92, "word": " image.", "probability": 0.51318359375}, {"start": 1697.4, "end": 1697.62, "word": " The", "probability": 0.8369140625}, {"start": 1697.62, "end": 1697.82, "word": " image", "probability": 0.80078125}, {"start": 1697.82, "end": 1698.0, "word": " is", "probability": 0.91943359375}, {"start": 1698.0, "end": 1698.36, "word": " what", "probability": 0.1865234375}, {"start": 1698.36, "end": 1699.16, "word": " I'm", "probability": 0.5296630859375}, {"start": 1699.16, "end": 1699.36, "word": " wrapped", "probability": 0.27490234375}, {"start": 1699.36, "end": 1699.66, "word": " inside.", "probability": 0.470947265625}, {"start": 1700.28, "end": 1700.48, "word": " Okay?", "probability": 0.5302734375}, {"start": 1700.84, "end": 1701.2, "word": " Why", "probability": 0.85498046875}, {"start": 1701.2, "end": 1701.3, "word": " did", "probability": 0.86328125}, {"start": 1701.3, "end": 1701.52, "word": " I", "probability": 0.9619140625}, {"start": 1701.52, "end": 1701.7, "word": " do", "probability": 0.54443359375}, {"start": 1701.7, "end": 1702.04, "word": " this?", "probability": 0.75146484375}, {"start": 1702.06, "end": 1702.26, "word": " To", "probability": 0.62548828125}, {"start": 1702.26, "end": 1702.62, "word": " delay", "probability": 0.79931640625}, {"start": 1702.62, "end": 1702.74, "word": " the", "probability": 0.865234375}, {"start": 1702.74, "end": 1702.9, "word": " construction", "probability": 0.47900390625}, {"start": 1702.9, "end": 1703.02, "word": " of", "probability": 0.96923828125}, {"start": 1703.02, "end": 1703.08, "word": " the", "probability": 0.87158203125}, {"start": 1703.08, "end": 1703.32, "word": " object", "probability": 0.9306640625}, {"start": 1703.32, "end": 1703.46, "word": " for", "probability": 0.48291015625}, {"start": 1703.46, "end": 1703.52, "word": " the", "probability": 0.857421875}, {"start": 1703.52, "end": 1703.68, "word": " time", "probability": 0.83935546875}, {"start": 1703.68, "end": 1703.9, "word": " I", "probability": 0.54931640625}, {"start": 1703.9, "end": 1704.24, "word": " need.", "probability": 0.91845703125}, {"start": 1704.78, "end": 1705.24, "word": " Okay?", "probability": 0.70166015625}, {"start": 1706.16, "end": 1706.6, "word": " Remote", "probability": 0.974609375}, {"start": 1706.6, "end": 1707.14, "word": " proxies.", "probability": 0.86669921875}], "temperature": 1.0}, {"id": 69, "seek": 173303, "start": 1708.51, "end": 1733.03, "text": "providing a local representation for an object that it is in a different address space which is like the idea of proxy that I use in the connection on API on the server providing a local representation for an object in a different space what does it mean different space? on another device this is very similar to", "tokens": [49911, 2819, 257, 2654, 10290, 337, 364, 2657, 300, 309, 307, 294, 257, 819, 2985, 1901, 597, 307, 411, 264, 1558, 295, 29690, 300, 286, 764, 294, 264, 4984, 322, 9362, 322, 264, 7154, 6530, 257, 2654, 10290, 337, 364, 2657, 294, 257, 819, 1901, 437, 775, 309, 914, 819, 1901, 30, 322, 1071, 4302, 341, 307, 588, 2531, 281], "avg_logprob": -0.3952356635547075, "compression_ratio": 1.8520710059171597, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 1708.51, "end": 1709.11, "word": "providing", "probability": 0.673095703125}, {"start": 1709.11, "end": 1709.41, "word": " a", "probability": 0.9765625}, {"start": 1709.41, "end": 1709.73, "word": " local", "probability": 0.85546875}, {"start": 1709.73, "end": 1710.47, "word": " representation", "probability": 0.88330078125}, {"start": 1710.47, "end": 1710.85, "word": " for", "probability": 0.86279296875}, {"start": 1710.85, "end": 1711.03, "word": " an", "probability": 0.93359375}, {"start": 1711.03, "end": 1711.41, "word": " object", "probability": 0.97998046875}, {"start": 1711.41, "end": 1711.71, "word": " that", "probability": 0.87548828125}, {"start": 1711.71, "end": 1711.93, "word": " it", "probability": 0.560546875}, {"start": 1711.93, "end": 1712.11, "word": " is", "probability": 0.93017578125}, {"start": 1712.11, "end": 1712.27, "word": " in", "probability": 0.94140625}, {"start": 1712.27, "end": 1712.45, "word": " a", "probability": 0.97314453125}, {"start": 1712.45, "end": 1712.81, "word": " different", "probability": 0.900390625}, {"start": 1712.81, "end": 1713.25, "word": " address", "probability": 0.9013671875}, {"start": 1713.25, "end": 1713.75, "word": " space", "probability": 0.904296875}, {"start": 1713.75, "end": 1714.63, "word": " which", "probability": 0.42529296875}, {"start": 1714.63, "end": 1714.75, "word": " is", "probability": 0.890625}, {"start": 1714.75, "end": 1714.89, "word": " like", "probability": 0.54541015625}, {"start": 1714.89, "end": 1714.99, "word": " the", "probability": 0.64990234375}, {"start": 1714.99, "end": 1715.13, "word": " idea", "probability": 0.58203125}, {"start": 1715.13, "end": 1716.49, "word": " of", "probability": 0.8857421875}, {"start": 1716.49, "end": 1716.99, "word": " proxy", "probability": 0.578125}, {"start": 1716.99, "end": 1717.27, "word": " that", "probability": 0.44482421875}, {"start": 1717.27, "end": 1717.39, "word": " I", "probability": 0.81787109375}, {"start": 1717.39, "end": 1717.81, "word": " use", "probability": 0.78662109375}, {"start": 1717.81, "end": 1718.51, "word": " in", "probability": 0.521484375}, {"start": 1718.51, "end": 1718.73, "word": " the", "probability": 0.2021484375}, {"start": 1718.73, "end": 1719.23, "word": " connection", "probability": 0.79296875}, {"start": 1719.23, "end": 1719.43, "word": " on", "probability": 0.30859375}, {"start": 1719.43, "end": 1719.77, "word": " API", "probability": 0.44921875}, {"start": 1719.77, "end": 1719.99, "word": " on", "probability": 0.5732421875}, {"start": 1719.99, "end": 1720.09, "word": " the", "probability": 0.53564453125}, {"start": 1720.09, "end": 1720.41, "word": " server", "probability": 0.90869140625}, {"start": 1720.41, "end": 1721.75, "word": " providing", "probability": 0.8291015625}, {"start": 1721.75, "end": 1722.17, "word": " a", "probability": 0.98876953125}, {"start": 1722.17, "end": 1722.47, "word": " local", "probability": 0.89697265625}, {"start": 1722.47, "end": 1723.31, "word": " representation", "probability": 0.92724609375}, {"start": 1723.31, "end": 1725.43, "word": " for", "probability": 0.307861328125}, {"start": 1725.43, "end": 1726.87, "word": " an", "probability": 0.446044921875}, {"start": 1726.87, "end": 1726.87, "word": " object", "probability": 0.98583984375}, {"start": 1726.87, "end": 1727.71, "word": " in", "probability": 0.90869140625}, {"start": 1727.71, "end": 1727.89, "word": " a", "probability": 0.974609375}, {"start": 1727.89, "end": 1728.19, "word": " different", "probability": 0.890625}, {"start": 1728.19, "end": 1729.03, "word": " space", "probability": 0.87451171875}, {"start": 1729.03, "end": 1729.49, "word": " what", "probability": 0.1922607421875}, {"start": 1729.49, "end": 1729.61, "word": " does", "probability": 0.5673828125}, {"start": 1729.61, "end": 1729.73, "word": " it", "probability": 0.484130859375}, {"start": 1729.73, "end": 1729.73, "word": " mean", "probability": 0.9609375}, {"start": 1729.73, "end": 1729.95, "word": " different", "probability": 0.36083984375}, {"start": 1729.95, "end": 1730.45, "word": " space?", "probability": 0.90087890625}, {"start": 1730.57, "end": 1730.71, "word": " on", "probability": 0.50634765625}, {"start": 1730.71, "end": 1730.95, "word": " another", "probability": 0.6220703125}, {"start": 1730.95, "end": 1731.41, "word": " device", "probability": 0.9267578125}, {"start": 1731.41, "end": 1732.47, "word": " this", "probability": 0.474609375}, {"start": 1732.47, "end": 1732.53, "word": " is", "probability": 0.81640625}, {"start": 1732.53, "end": 1732.59, "word": " very", "probability": 0.72216796875}, {"start": 1732.59, "end": 1732.89, "word": " similar", "probability": 0.9248046875}, {"start": 1732.89, "end": 1733.03, "word": " to", "probability": 0.91552734375}], "temperature": 1.0}, {"id": 70, "seek": 175342, "start": 1734.68, "end": 1753.42, "text": " in the classes on the server. The goal is to deal with the methods on the server as if they were on the local machine. A common example is Java RMI. This is one of the ways web services work in Java. The idea is that the stop object, which is the object that I created here,", "tokens": [294, 264, 5359, 322, 264, 7154, 13, 440, 3387, 307, 281, 2028, 365, 264, 7150, 322, 264, 7154, 382, 498, 436, 645, 322, 264, 2654, 3479, 13, 316, 2689, 1365, 307, 10745, 497, 13808, 13, 639, 307, 472, 295, 264, 2098, 3670, 3328, 589, 294, 10745, 13, 440, 1558, 307, 300, 264, 1590, 2657, 11, 597, 307, 264, 2657, 300, 286, 2942, 510, 11], "avg_logprob": -0.41875, "compression_ratio": 1.5988372093023255, "no_speech_prob": 1.0669231414794922e-05, "words": [{"start": 1734.68, "end": 1734.86, "word": " in", "probability": 0.160888671875}, {"start": 1734.86, "end": 1734.98, "word": " the", "probability": 0.72802734375}, {"start": 1734.98, "end": 1735.3, "word": " classes", "probability": 0.63134765625}, {"start": 1735.3, "end": 1735.84, "word": " on", "probability": 0.34814453125}, {"start": 1735.84, "end": 1736.7, "word": " the", "probability": 0.79052734375}, {"start": 1736.7, "end": 1737.04, "word": " server.", "probability": 0.8798828125}, {"start": 1737.48, "end": 1737.74, "word": " The", "probability": 0.70166015625}, {"start": 1737.74, "end": 1737.94, "word": " goal", "probability": 0.521484375}, {"start": 1737.94, "end": 1738.3, "word": " is", "probability": 0.54345703125}, {"start": 1738.3, "end": 1738.58, "word": " to", "probability": 0.9013671875}, {"start": 1738.58, "end": 1739.32, "word": " deal", "probability": 0.339111328125}, {"start": 1739.32, "end": 1739.64, "word": " with", "probability": 0.90283203125}, {"start": 1739.64, "end": 1739.76, "word": " the", "probability": 0.50927734375}, {"start": 1739.76, "end": 1740.06, "word": " methods", "probability": 0.74072265625}, {"start": 1740.06, "end": 1740.44, "word": " on", "probability": 0.7568359375}, {"start": 1740.44, "end": 1740.58, "word": " the", "probability": 0.85546875}, {"start": 1740.58, "end": 1740.92, "word": " server", "probability": 0.93701171875}, {"start": 1740.92, "end": 1741.16, "word": " as", "probability": 0.796875}, {"start": 1741.16, "end": 1741.32, "word": " if", "probability": 0.876953125}, {"start": 1741.32, "end": 1741.4, "word": " they", "probability": 0.78515625}, {"start": 1741.4, "end": 1741.44, "word": " were", "probability": 0.35595703125}, {"start": 1741.44, "end": 1741.8, "word": " on", "probability": 0.478271484375}, {"start": 1741.8, "end": 1741.92, "word": " the", "probability": 0.58447265625}, {"start": 1741.92, "end": 1742.26, "word": " local", "probability": 0.7939453125}, {"start": 1742.26, "end": 1743.38, "word": " machine.", "probability": 0.79443359375}, {"start": 1744.02, "end": 1744.22, "word": " A", "probability": 0.479248046875}, {"start": 1744.22, "end": 1744.42, "word": " common", "probability": 0.8828125}, {"start": 1744.42, "end": 1744.92, "word": " example", "probability": 0.9697265625}, {"start": 1744.92, "end": 1745.14, "word": " is", "probability": 0.9296875}, {"start": 1745.14, "end": 1745.42, "word": " Java", "probability": 0.623046875}, {"start": 1745.42, "end": 1745.98, "word": " RMI.", "probability": 0.79345703125}, {"start": 1746.3, "end": 1746.4, "word": " This", "probability": 0.65478515625}, {"start": 1746.4, "end": 1746.48, "word": " is", "probability": 0.92822265625}, {"start": 1746.48, "end": 1746.62, "word": " one", "probability": 0.88818359375}, {"start": 1746.62, "end": 1746.74, "word": " of", "probability": 0.80224609375}, {"start": 1746.74, "end": 1747.06, "word": " the", "probability": 0.87744140625}, {"start": 1747.06, "end": 1747.26, "word": " ways", "probability": 0.6298828125}, {"start": 1747.26, "end": 1748.02, "word": " web", "probability": 0.3955078125}, {"start": 1748.02, "end": 1748.5, "word": " services", "probability": 0.88916015625}, {"start": 1748.5, "end": 1748.52, "word": " work", "probability": 0.6337890625}, {"start": 1748.52, "end": 1748.64, "word": " in", "probability": 0.6962890625}, {"start": 1748.64, "end": 1749.0, "word": " Java.", "probability": 0.87353515625}, {"start": 1749.84, "end": 1749.92, "word": " The", "probability": 0.67626953125}, {"start": 1749.92, "end": 1750.14, "word": " idea", "probability": 0.68115234375}, {"start": 1750.14, "end": 1750.54, "word": " is", "probability": 0.51708984375}, {"start": 1750.54, "end": 1751.12, "word": " that", "probability": 0.4130859375}, {"start": 1751.12, "end": 1751.28, "word": " the", "probability": 0.78515625}, {"start": 1751.28, "end": 1751.58, "word": " stop", "probability": 0.70263671875}, {"start": 1751.58, "end": 1752.02, "word": " object,", "probability": 0.93701171875}, {"start": 1752.12, "end": 1752.18, "word": " which", "probability": 0.55126953125}, {"start": 1752.18, "end": 1752.22, "word": " is", "probability": 0.89501953125}, {"start": 1752.22, "end": 1752.32, "word": " the", "probability": 0.79638671875}, {"start": 1752.32, "end": 1752.62, "word": " object", "probability": 0.9658203125}, {"start": 1752.62, "end": 1752.76, "word": " that", "probability": 0.470947265625}, {"start": 1752.76, "end": 1752.92, "word": " I", "probability": 0.62939453125}, {"start": 1752.92, "end": 1753.1, "word": " created", "probability": 0.344970703125}, {"start": 1753.1, "end": 1753.42, "word": " here,", "probability": 0.806640625}], "temperature": 1.0}, {"id": 71, "seek": 177616, "start": 1754.44, "end": 1776.16, "text": "in the client, acts as a proxy, where invoking methods on the stub would cause the stub to communicate and invoke methods on a remote object found on a different machine. Meaning that when these methods are created from this class, this object actually creates the methods on the server. The last thing is protection proxies.", "tokens": [259, 264, 6423, 11, 10672, 382, 257, 29690, 11, 689, 1048, 5953, 7150, 322, 264, 20266, 576, 3082, 264, 20266, 281, 7890, 293, 41117, 7150, 322, 257, 8607, 2657, 1352, 322, 257, 819, 3479, 13, 19948, 300, 562, 613, 7150, 366, 2942, 490, 341, 1508, 11, 341, 2657, 767, 7829, 264, 7150, 322, 264, 7154, 13, 440, 1036, 551, 307, 6334, 447, 87, 530, 13], "avg_logprob": -0.39583334642829315, "compression_ratio": 1.675257731958763, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1754.44, "end": 1754.66, "word": "in", "probability": 0.365966796875}, {"start": 1754.66, "end": 1754.78, "word": " the", "probability": 0.80712890625}, {"start": 1754.78, "end": 1755.56, "word": " client,", "probability": 0.90869140625}, {"start": 1756.02, "end": 1756.46, "word": " acts", "probability": 0.80908203125}, {"start": 1756.46, "end": 1756.84, "word": " as", "probability": 0.96630859375}, {"start": 1756.84, "end": 1757.0, "word": " a", "probability": 0.955078125}, {"start": 1757.0, "end": 1757.4, "word": " proxy,", "probability": 0.97265625}, {"start": 1758.12, "end": 1759.58, "word": " where", "probability": 0.270751953125}, {"start": 1759.58, "end": 1760.16, "word": " invoking", "probability": 0.931884765625}, {"start": 1760.16, "end": 1760.62, "word": " methods", "probability": 0.7666015625}, {"start": 1760.62, "end": 1760.84, "word": " on", "probability": 0.8896484375}, {"start": 1760.84, "end": 1761.0, "word": " the", "probability": 0.91455078125}, {"start": 1761.0, "end": 1761.28, "word": " stub", "probability": 0.70166015625}, {"start": 1761.28, "end": 1762.0, "word": " would", "probability": 0.79052734375}, {"start": 1762.0, "end": 1762.4, "word": " cause", "probability": 0.85546875}, {"start": 1762.4, "end": 1762.62, "word": " the", "probability": 0.90478515625}, {"start": 1762.62, "end": 1762.84, "word": " stub", "probability": 0.97119140625}, {"start": 1762.84, "end": 1762.98, "word": " to", "probability": 0.9697265625}, {"start": 1762.98, "end": 1763.52, "word": " communicate", "probability": 0.8505859375}, {"start": 1763.52, "end": 1763.88, "word": " and", "probability": 0.92333984375}, {"start": 1763.88, "end": 1764.3, "word": " invoke", "probability": 0.849609375}, {"start": 1764.3, "end": 1764.64, "word": " methods", "probability": 0.884765625}, {"start": 1764.64, "end": 1764.78, "word": " on", "probability": 0.923828125}, {"start": 1764.78, "end": 1764.92, "word": " a", "probability": 0.96826171875}, {"start": 1764.92, "end": 1765.3, "word": " remote", "probability": 0.92626953125}, {"start": 1765.3, "end": 1765.96, "word": " object", "probability": 0.97265625}, {"start": 1765.96, "end": 1766.84, "word": " found", "probability": 0.865234375}, {"start": 1766.84, "end": 1767.02, "word": " on", "probability": 0.87548828125}, {"start": 1767.02, "end": 1767.12, "word": " a", "probability": 0.97509765625}, {"start": 1767.12, "end": 1767.4, "word": " different", "probability": 0.8759765625}, {"start": 1767.4, "end": 1767.82, "word": " machine.", "probability": 0.88037109375}, {"start": 1768.4, "end": 1768.42, "word": " Meaning", "probability": 0.156982421875}, {"start": 1768.42, "end": 1768.52, "word": " that", "probability": 0.423828125}, {"start": 1768.52, "end": 1768.58, "word": " when", "probability": 0.7919921875}, {"start": 1768.58, "end": 1768.98, "word": " these", "probability": 0.1282958984375}, {"start": 1768.98, "end": 1769.38, "word": " methods", "probability": 0.8359375}, {"start": 1769.38, "end": 1769.38, "word": " are", "probability": 0.334228515625}, {"start": 1769.38, "end": 1769.38, "word": " created", "probability": 0.093017578125}, {"start": 1769.38, "end": 1769.6, "word": " from", "probability": 0.61328125}, {"start": 1769.6, "end": 1769.76, "word": " this", "probability": 0.67333984375}, {"start": 1769.76, "end": 1770.08, "word": " class,", "probability": 0.7509765625}, {"start": 1770.48, "end": 1770.62, "word": " this", "probability": 0.59521484375}, {"start": 1770.62, "end": 1771.02, "word": " object", "probability": 0.9638671875}, {"start": 1771.02, "end": 1771.44, "word": " actually", "probability": 0.359130859375}, {"start": 1771.44, "end": 1771.74, "word": " creates", "probability": 0.70947265625}, {"start": 1771.74, "end": 1773.02, "word": " the", "probability": 0.7294921875}, {"start": 1773.02, "end": 1773.26, "word": " methods", "probability": 0.8408203125}, {"start": 1773.26, "end": 1773.62, "word": " on", "probability": 0.362548828125}, {"start": 1773.62, "end": 1773.78, "word": " the", "probability": 0.85400390625}, {"start": 1773.78, "end": 1774.04, "word": " server.", "probability": 0.92431640625}, {"start": 1774.3, "end": 1774.56, "word": " The", "probability": 0.28466796875}, {"start": 1774.56, "end": 1774.74, "word": " last", "probability": 0.85302734375}, {"start": 1774.74, "end": 1774.96, "word": " thing", "probability": 0.72265625}, {"start": 1774.96, "end": 1775.06, "word": " is", "probability": 0.68310546875}, {"start": 1775.06, "end": 1775.5, "word": " protection", "probability": 0.603515625}, {"start": 1775.5, "end": 1776.16, "word": " proxies.", "probability": 0.9490559895833334}], "temperature": 1.0}, {"id": 72, "seek": 180043, "start": 1776.87, "end": 1800.43, "text": "which is where a proxy controls access to real subject methods by giving access to some objects while denying access to others So when you start controlling the access of methods to objects like the example we saw methods that I can activate and methods that I can hide this is considered a protection proxy So these are the different uses of proxy Now this example is the same example", "tokens": [13690, 307, 689, 257, 29690, 9003, 2105, 281, 957, 3983, 7150, 538, 2902, 2105, 281, 512, 6565, 1339, 30363, 2105, 281, 2357, 407, 562, 291, 722, 14905, 264, 2105, 295, 7150, 281, 6565, 411, 264, 1365, 321, 1866, 7150, 300, 286, 393, 13615, 293, 7150, 300, 286, 393, 6479, 341, 307, 4888, 257, 6334, 29690, 407, 613, 366, 264, 819, 4960, 295, 29690, 823, 341, 1365, 307, 264, 912, 1365], "avg_logprob": -0.41285210092302776, "compression_ratio": 1.8872549019607843, "no_speech_prob": 4.112720489501953e-06, "words": [{"start": 1776.87, "end": 1777.13, "word": "which", "probability": 0.2396240234375}, {"start": 1777.13, "end": 1777.37, "word": " is", "probability": 0.7529296875}, {"start": 1777.37, "end": 1777.79, "word": " where", "probability": 0.5498046875}, {"start": 1777.79, "end": 1777.99, "word": " a", "probability": 0.95556640625}, {"start": 1777.99, "end": 1778.31, "word": " proxy", "probability": 0.9716796875}, {"start": 1778.31, "end": 1778.93, "word": " controls", "probability": 0.71240234375}, {"start": 1778.93, "end": 1779.33, "word": " access", "probability": 0.9248046875}, {"start": 1779.33, "end": 1779.61, "word": " to", "probability": 0.96240234375}, {"start": 1779.61, "end": 1779.79, "word": " real", "probability": 0.93115234375}, {"start": 1779.79, "end": 1780.21, "word": " subject", "probability": 0.84814453125}, {"start": 1780.21, "end": 1780.69, "word": " methods", "probability": 0.8564453125}, {"start": 1780.69, "end": 1781.35, "word": " by", "probability": 0.93359375}, {"start": 1781.35, "end": 1781.69, "word": " giving", "probability": 0.916015625}, {"start": 1781.69, "end": 1782.05, "word": " access", "probability": 0.90625}, {"start": 1782.05, "end": 1782.25, "word": " to", "probability": 0.9658203125}, {"start": 1782.25, "end": 1782.49, "word": " some", "probability": 0.8984375}, {"start": 1782.49, "end": 1782.89, "word": " objects", "probability": 0.96142578125}, {"start": 1782.89, "end": 1783.19, "word": " while", "probability": 0.8828125}, {"start": 1783.19, "end": 1783.55, "word": " denying", "probability": 0.97119140625}, {"start": 1783.55, "end": 1784.05, "word": " access", "probability": 0.912109375}, {"start": 1784.05, "end": 1784.33, "word": " to", "probability": 0.97021484375}, {"start": 1784.33, "end": 1785.19, "word": " others", "probability": 0.8671875}, {"start": 1785.19, "end": 1785.75, "word": " So", "probability": 0.08123779296875}, {"start": 1785.75, "end": 1785.97, "word": " when", "probability": 0.68310546875}, {"start": 1785.97, "end": 1786.07, "word": " you", "probability": 0.72705078125}, {"start": 1786.07, "end": 1786.27, "word": " start", "probability": 0.607421875}, {"start": 1786.27, "end": 1786.79, "word": " controlling", "probability": 0.50634765625}, {"start": 1786.79, "end": 1787.01, "word": " the", "probability": 0.39208984375}, {"start": 1787.01, "end": 1787.21, "word": " access", "probability": 0.60546875}, {"start": 1787.21, "end": 1787.41, "word": " of", "probability": 0.4140625}, {"start": 1787.41, "end": 1787.75, "word": " methods", "probability": 0.75341796875}, {"start": 1787.75, "end": 1787.91, "word": " to", "probability": 0.57275390625}, {"start": 1787.91, "end": 1788.21, "word": " objects", "probability": 0.828125}, {"start": 1788.21, "end": 1788.39, "word": " like", "probability": 0.377197265625}, {"start": 1788.39, "end": 1788.45, "word": " the", "probability": 0.55224609375}, {"start": 1788.45, "end": 1788.65, "word": " example", "probability": 0.3984375}, {"start": 1788.65, "end": 1788.77, "word": " we", "probability": 0.580078125}, {"start": 1788.77, "end": 1789.03, "word": " saw", "probability": 0.51220703125}, {"start": 1789.03, "end": 1789.97, "word": " methods", "probability": 0.41650390625}, {"start": 1789.97, "end": 1790.13, "word": " that", "probability": 0.35302734375}, {"start": 1790.13, "end": 1790.13, "word": " I", "probability": 0.61279296875}, {"start": 1790.13, "end": 1790.21, "word": " can", "probability": 0.49462890625}, {"start": 1790.21, "end": 1790.47, "word": " activate", "probability": 0.4765625}, {"start": 1790.47, "end": 1790.67, "word": " and", "probability": 0.484619140625}, {"start": 1790.67, "end": 1790.85, "word": " methods", "probability": 0.6171875}, {"start": 1790.85, "end": 1790.87, "word": " that", "probability": 0.88623046875}, {"start": 1790.87, "end": 1790.95, "word": " I", "probability": 0.939453125}, {"start": 1790.95, "end": 1791.01, "word": " can", "probability": 0.8837890625}, {"start": 1791.01, "end": 1791.21, "word": " hide", "probability": 0.7890625}, {"start": 1791.21, "end": 1792.11, "word": " this", "probability": 0.294677734375}, {"start": 1792.11, "end": 1792.19, "word": " is", "probability": 0.8623046875}, {"start": 1792.19, "end": 1792.49, "word": " considered", "probability": 0.6103515625}, {"start": 1792.49, "end": 1792.61, "word": " a", "probability": 0.498779296875}, {"start": 1792.61, "end": 1792.95, "word": " protection", "probability": 0.78125}, {"start": 1792.95, "end": 1794.01, "word": " proxy", "probability": 0.9599609375}, {"start": 1794.01, "end": 1794.39, "word": " So", "probability": 0.3740234375}, {"start": 1794.39, "end": 1794.53, "word": " these", "probability": 0.69580078125}, {"start": 1794.53, "end": 1794.57, "word": " are", "probability": 0.90869140625}, {"start": 1794.57, "end": 1794.63, "word": " the", "probability": 0.80615234375}, {"start": 1794.63, "end": 1794.75, "word": " different", "probability": 0.80810546875}, {"start": 1794.75, "end": 1795.57, "word": " uses", "probability": 0.671875}, {"start": 1795.57, "end": 1796.41, "word": " of", "probability": 0.681640625}, {"start": 1796.41, "end": 1797.31, "word": " proxy", "probability": 0.7001953125}, {"start": 1797.31, "end": 1798.09, "word": " Now", "probability": 0.301513671875}, {"start": 1798.09, "end": 1798.75, "word": " this", "probability": 0.75}, {"start": 1798.75, "end": 1799.23, "word": " example", "probability": 0.66357421875}, {"start": 1799.23, "end": 1799.69, "word": " is", "probability": 0.90869140625}, {"start": 1799.69, "end": 1799.85, "word": " the", "probability": 0.74462890625}, {"start": 1799.85, "end": 1799.97, "word": " same", "probability": 0.8818359375}, {"start": 1799.97, "end": 1800.43, "word": " example", "probability": 0.90966796875}], "temperature": 1.0}, {"id": 73, "seek": 181954, "start": 1801.66, "end": 1819.54, "text": "The image that we just saw has a slight difference. Here it says that I have a high-resolution image. This is like an image icon. It is a costly object. Creating it takes time. Okay? This is from the interface image. I made a proxy image, implemented it to the interface and used it.", "tokens": [2278, 3256, 300, 321, 445, 1866, 575, 257, 4036, 2649, 13, 1692, 309, 1619, 300, 286, 362, 257, 1090, 12, 495, 3386, 3256, 13, 639, 307, 411, 364, 3256, 6528, 13, 467, 307, 257, 28328, 2657, 13, 40002, 309, 2516, 565, 13, 1033, 30, 639, 307, 490, 264, 9226, 3256, 13, 286, 1027, 257, 29690, 3256, 11, 12270, 309, 281, 264, 9226, 293, 1143, 309, 13], "avg_logprob": -0.6249999911037843, "compression_ratio": 1.5133689839572193, "no_speech_prob": 1.1086463928222656e-05, "words": [{"start": 1801.66, "end": 1801.92, "word": "The", "probability": 0.2447509765625}, {"start": 1801.92, "end": 1802.2, "word": " image", "probability": 0.8779296875}, {"start": 1802.2, "end": 1802.3, "word": " that", "probability": 0.4013671875}, {"start": 1802.3, "end": 1802.48, "word": " we", "probability": 0.75341796875}, {"start": 1802.48, "end": 1802.58, "word": " just", "probability": 0.119873046875}, {"start": 1802.58, "end": 1802.78, "word": " saw", "probability": 0.75341796875}, {"start": 1802.78, "end": 1803.28, "word": " has", "probability": 0.2266845703125}, {"start": 1803.28, "end": 1803.38, "word": " a", "probability": 0.50634765625}, {"start": 1803.38, "end": 1803.84, "word": " slight", "probability": 0.210205078125}, {"start": 1803.84, "end": 1803.84, "word": " difference.", "probability": 0.7099609375}, {"start": 1804.06, "end": 1804.22, "word": " Here", "probability": 0.1964111328125}, {"start": 1804.22, "end": 1804.28, "word": " it", "probability": 0.424560546875}, {"start": 1804.28, "end": 1804.52, "word": " says", "probability": 0.376708984375}, {"start": 1804.52, "end": 1805.02, "word": " that", "probability": 0.3046875}, {"start": 1805.02, "end": 1805.22, "word": " I", "probability": 0.301025390625}, {"start": 1805.22, "end": 1805.46, "word": " have", "probability": 0.9013671875}, {"start": 1805.46, "end": 1805.56, "word": " a", "probability": 0.87890625}, {"start": 1805.56, "end": 1805.76, "word": " high", "probability": 0.7802734375}, {"start": 1805.76, "end": 1806.34, "word": "-resolution", "probability": 0.7823079427083334}, {"start": 1806.34, "end": 1806.7, "word": " image.", "probability": 0.9287109375}, {"start": 1806.84, "end": 1807.02, "word": " This", "probability": 0.44140625}, {"start": 1807.02, "end": 1807.1, "word": " is", "probability": 0.703125}, {"start": 1807.1, "end": 1807.2, "word": " like", "probability": 0.58984375}, {"start": 1807.2, "end": 1807.34, "word": " an", "probability": 0.345458984375}, {"start": 1807.34, "end": 1807.5, "word": " image", "probability": 0.93798828125}, {"start": 1807.5, "end": 1807.9, "word": " icon.", "probability": 0.90234375}, {"start": 1808.3, "end": 1808.34, "word": " It", "probability": 0.7255859375}, {"start": 1808.34, "end": 1808.42, "word": " is", "probability": 0.66650390625}, {"start": 1808.42, "end": 1808.54, "word": " a", "probability": 0.52880859375}, {"start": 1808.54, "end": 1808.84, "word": " costly", "probability": 0.71142578125}, {"start": 1808.84, "end": 1809.28, "word": " object.", "probability": 0.92333984375}, {"start": 1809.74, "end": 1810.0, "word": " Creating", "probability": 0.275146484375}, {"start": 1810.0, "end": 1810.1, "word": " it", "probability": 0.6884765625}, {"start": 1810.1, "end": 1810.32, "word": " takes", "probability": 0.73486328125}, {"start": 1810.32, "end": 1810.74, "word": " time.", "probability": 0.7470703125}, {"start": 1811.48, "end": 1811.58, "word": " Okay?", "probability": 0.197021484375}, {"start": 1812.6, "end": 1812.88, "word": " This", "probability": 0.765625}, {"start": 1812.88, "end": 1813.0, "word": " is", "probability": 0.86962890625}, {"start": 1813.0, "end": 1813.02, "word": " from", "probability": 0.442138671875}, {"start": 1813.02, "end": 1813.14, "word": " the", "probability": 0.71923828125}, {"start": 1813.14, "end": 1813.72, "word": " interface", "probability": 0.494873046875}, {"start": 1813.72, "end": 1814.48, "word": " image.", "probability": 0.56689453125}, {"start": 1814.88, "end": 1815.0, "word": " I", "probability": 0.83203125}, {"start": 1815.0, "end": 1815.3, "word": " made", "probability": 0.20703125}, {"start": 1815.3, "end": 1815.88, "word": " a", "probability": 0.9384765625}, {"start": 1815.88, "end": 1816.22, "word": " proxy", "probability": 0.9873046875}, {"start": 1816.22, "end": 1816.62, "word": " image,", "probability": 0.92919921875}, {"start": 1817.1, "end": 1817.54, "word": " implemented", "probability": 0.4169921875}, {"start": 1817.54, "end": 1817.74, "word": " it", "probability": 0.74072265625}, {"start": 1817.74, "end": 1817.8, "word": " to", "probability": 0.453369140625}, {"start": 1817.8, "end": 1817.82, "word": " the", "probability": 0.81201171875}, {"start": 1817.82, "end": 1818.36, "word": " interface", "probability": 0.50244140625}, {"start": 1818.36, "end": 1818.52, "word": " and", "probability": 0.2259521484375}, {"start": 1818.52, "end": 1818.92, "word": " used", "probability": 0.460205078125}, {"start": 1818.92, "end": 1819.54, "word": " it.", "probability": 0.79541015625}], "temperature": 1.0}, {"id": 74, "seek": 183458, "start": 1819.68, "end": 1834.58, "text": "The high-resolution image in the constructor calls load", "tokens": [2278, 1090, 12, 495, 3386, 3256, 294, 264, 47479, 5498, 3677], "avg_logprob": -0.7630208432674408, "compression_ratio": 0.9166666666666666, "no_speech_prob": 3.30805778503418e-05, "words": [{"start": 1819.68, "end": 1819.92, "word": "The", "probability": 0.374755859375}, {"start": 1819.92, "end": 1820.0, "word": " high", "probability": 0.2232666015625}, {"start": 1820.0, "end": 1820.52, "word": "-resolution", "probability": 0.7051595052083334}, {"start": 1820.52, "end": 1821.14, "word": " image", "probability": 0.77099609375}, {"start": 1821.14, "end": 1832.12, "word": " in", "probability": 0.16796875}, {"start": 1832.12, "end": 1833.16, "word": " the", "probability": 0.4384765625}, {"start": 1833.16, "end": 1833.74, "word": " constructor", "probability": 0.6689453125}, {"start": 1833.74, "end": 1834.2, "word": " calls", "probability": 0.39794921875}, {"start": 1834.2, "end": 1834.58, "word": " load", "probability": 0.603515625}], "temperature": 1.0}, {"id": 75, "seek": 184982, "start": 1835.64, "end": 1849.82, "text": "Load image is a costly method. It is what carries the object to the level. I want to delay the construction of the constructor. Show image does not take time. Because the method is actually carried in memory, so show image displays it.", "tokens": [31645, 345, 3256, 307, 257, 28328, 3170, 13, 467, 307, 437, 16402, 264, 2657, 281, 264, 1496, 13, 286, 528, 281, 8577, 264, 6435, 295, 264, 7690, 284, 13, 6895, 3256, 775, 406, 747, 565, 13, 1436, 264, 3170, 307, 767, 9094, 294, 4675, 11, 370, 855, 3256, 20119, 309, 13], "avg_logprob": -0.659254803107335, "compression_ratio": 1.5460526315789473, "no_speech_prob": 1.1324882507324219e-05, "words": [{"start": 1835.6399999999999, "end": 1836.08, "word": "Load", "probability": 0.63720703125}, {"start": 1836.08, "end": 1836.28, "word": " image", "probability": 0.7880859375}, {"start": 1836.28, "end": 1836.44, "word": " is", "probability": 0.78271484375}, {"start": 1836.44, "end": 1836.56, "word": " a", "probability": 0.5244140625}, {"start": 1836.56, "end": 1836.82, "word": " costly", "probability": 0.66015625}, {"start": 1836.82, "end": 1837.1, "word": " method.", "probability": 0.92333984375}, {"start": 1837.2, "end": 1837.24, "word": " It", "probability": 0.6083984375}, {"start": 1837.24, "end": 1837.28, "word": " is", "probability": 0.33544921875}, {"start": 1837.28, "end": 1837.34, "word": " what", "probability": 0.441650390625}, {"start": 1837.34, "end": 1837.76, "word": " carries", "probability": 0.160400390625}, {"start": 1837.76, "end": 1838.84, "word": " the", "probability": 0.63037109375}, {"start": 1838.84, "end": 1839.84, "word": " object", "probability": 0.78466796875}, {"start": 1839.84, "end": 1840.0, "word": " to", "probability": 0.45703125}, {"start": 1840.0, "end": 1840.06, "word": " the", "probability": 0.6533203125}, {"start": 1840.06, "end": 1840.24, "word": " level.", "probability": 0.241943359375}, {"start": 1840.6, "end": 1840.8, "word": " I", "probability": 0.7421875}, {"start": 1840.8, "end": 1841.06, "word": " want", "probability": 0.5263671875}, {"start": 1841.06, "end": 1841.46, "word": " to", "probability": 0.9521484375}, {"start": 1841.46, "end": 1841.46, "word": " delay", "probability": 0.6513671875}, {"start": 1841.46, "end": 1841.62, "word": " the", "probability": 0.7470703125}, {"start": 1841.62, "end": 1841.84, "word": " construction", "probability": 0.320068359375}, {"start": 1841.84, "end": 1843.08, "word": " of", "probability": 0.52099609375}, {"start": 1843.08, "end": 1843.16, "word": " the", "probability": 0.73828125}, {"start": 1843.16, "end": 1844.08, "word": " constructor.", "probability": 0.5877685546875}, {"start": 1844.32, "end": 1844.74, "word": " Show", "probability": 0.30029296875}, {"start": 1844.74, "end": 1845.12, "word": " image", "probability": 0.86767578125}, {"start": 1845.12, "end": 1845.36, "word": " does", "probability": 0.5126953125}, {"start": 1845.36, "end": 1845.52, "word": " not", "probability": 0.9365234375}, {"start": 1845.52, "end": 1845.82, "word": " take", "probability": 0.30517578125}, {"start": 1845.82, "end": 1846.04, "word": " time.", "probability": 0.1832275390625}, {"start": 1846.74, "end": 1846.94, "word": " Because", "probability": 0.5087890625}, {"start": 1846.94, "end": 1847.42, "word": " the", "probability": 0.50634765625}, {"start": 1847.42, "end": 1847.68, "word": " method", "probability": 0.9443359375}, {"start": 1847.68, "end": 1847.86, "word": " is", "probability": 0.75341796875}, {"start": 1847.86, "end": 1847.86, "word": " actually", "probability": 0.22216796875}, {"start": 1847.86, "end": 1848.12, "word": " carried", "probability": 0.2568359375}, {"start": 1848.12, "end": 1848.28, "word": " in", "probability": 0.63330078125}, {"start": 1848.28, "end": 1848.66, "word": " memory,", "probability": 0.49462890625}, {"start": 1848.86, "end": 1848.94, "word": " so", "probability": 0.53076171875}, {"start": 1848.94, "end": 1849.08, "word": " show", "probability": 0.67138671875}, {"start": 1849.08, "end": 1849.3, "word": " image", "probability": 0.91259765625}, {"start": 1849.3, "end": 1849.68, "word": " displays", "probability": 0.322265625}, {"start": 1849.68, "end": 1849.82, "word": " it.", "probability": 0.81689453125}], "temperature": 1.0}, {"id": 76, "seek": 187362, "start": 1850.86, "end": 1873.62, "text": " Now, how can I delay the creation of the high-resolution object? I will create an object called ImageProxy that also implements an image. Inside it, I have a high-resolution image. I have yet to create this null. And this is the path. Because when I create an ImageProxy, it only sends me the path of the file and stores it with it. But actually, what is this? I have yet to create a null.", "tokens": [823, 11, 577, 393, 286, 8577, 264, 8016, 295, 264, 1090, 12, 495, 3386, 2657, 30, 286, 486, 1884, 364, 2657, 1219, 29903, 12681, 12876, 300, 611, 704, 17988, 364, 3256, 13, 15123, 309, 11, 286, 362, 257, 1090, 12, 495, 3386, 3256, 13, 286, 362, 1939, 281, 1884, 341, 18184, 13, 400, 341, 307, 264, 3100, 13, 1436, 562, 286, 1884, 364, 29903, 12681, 12876, 11, 309, 787, 14790, 385, 264, 3100, 295, 264, 3991, 293, 9512, 309, 365, 309, 13, 583, 767, 11, 437, 307, 341, 30, 286, 362, 1939, 281, 1884, 257, 18184, 13], "avg_logprob": -0.5197703838348389, "compression_ratio": 1.7972350230414746, "no_speech_prob": 6.67572021484375e-06, "words": [{"start": 1850.86, "end": 1851.3, "word": " Now,", "probability": 0.11676025390625}, {"start": 1851.42, "end": 1851.62, "word": " how", "probability": 0.76708984375}, {"start": 1851.62, "end": 1851.74, "word": " can", "probability": 0.333251953125}, {"start": 1851.74, "end": 1851.92, "word": " I", "probability": 0.88916015625}, {"start": 1851.92, "end": 1852.5, "word": " delay", "probability": 0.291748046875}, {"start": 1852.5, "end": 1853.24, "word": " the", "probability": 0.55078125}, {"start": 1853.24, "end": 1853.46, "word": " creation", "probability": 0.435302734375}, {"start": 1853.46, "end": 1853.6, "word": " of", "probability": 0.96484375}, {"start": 1853.6, "end": 1853.64, "word": " the", "probability": 0.33740234375}, {"start": 1853.64, "end": 1854.1, "word": " high", "probability": 0.40234375}, {"start": 1854.1, "end": 1854.66, "word": "-resolution", "probability": 0.79296875}, {"start": 1854.66, "end": 1854.66, "word": " object?", "probability": 0.5888671875}, {"start": 1854.88, "end": 1855.2, "word": " I", "probability": 0.814453125}, {"start": 1855.2, "end": 1855.26, "word": " will", "probability": 0.482177734375}, {"start": 1855.26, "end": 1855.58, "word": " create", "probability": 0.58349609375}, {"start": 1855.58, "end": 1856.38, "word": " an", "probability": 0.80224609375}, {"start": 1856.38, "end": 1856.6, "word": " object", "probability": 0.9052734375}, {"start": 1856.6, "end": 1856.9, "word": " called", "probability": 0.5078125}, {"start": 1856.9, "end": 1857.58, "word": " ImageProxy", "probability": 0.7040201822916666}, {"start": 1857.58, "end": 1857.76, "word": " that", "probability": 0.453369140625}, {"start": 1857.76, "end": 1857.86, "word": " also", "probability": 0.65625}, {"start": 1857.86, "end": 1858.22, "word": " implements", "probability": 0.868896484375}, {"start": 1858.22, "end": 1858.86, "word": " an", "probability": 0.346923828125}, {"start": 1858.86, "end": 1858.86, "word": " image.", "probability": 0.91650390625}, {"start": 1859.32, "end": 1859.76, "word": " Inside", "probability": 0.5771484375}, {"start": 1859.76, "end": 1860.58, "word": " it,", "probability": 0.279052734375}, {"start": 1860.58, "end": 1860.86, "word": " I", "probability": 0.8603515625}, {"start": 1860.86, "end": 1860.96, "word": " have", "probability": 0.225341796875}, {"start": 1860.96, "end": 1861.38, "word": " a", "probability": 0.343994140625}, {"start": 1861.38, "end": 1861.56, "word": " high", "probability": 0.73388671875}, {"start": 1861.56, "end": 1862.04, "word": "-resolution", "probability": 0.95556640625}, {"start": 1862.04, "end": 1862.34, "word": " image.", "probability": 0.9072265625}, {"start": 1862.38, "end": 1862.66, "word": " I", "probability": 0.62744140625}, {"start": 1862.66, "end": 1862.72, "word": " have", "probability": 0.58740234375}, {"start": 1862.72, "end": 1862.72, "word": " yet", "probability": 0.1534423828125}, {"start": 1862.72, "end": 1862.72, "word": " to", "probability": 0.79931640625}, {"start": 1862.72, "end": 1862.88, "word": " create", "probability": 0.176025390625}, {"start": 1862.88, "end": 1863.16, "word": " this", "probability": 0.62744140625}, {"start": 1863.16, "end": 1863.38, "word": " null.", "probability": 0.72900390625}, {"start": 1864.5, "end": 1864.94, "word": " And", "probability": 0.51904296875}, {"start": 1864.94, "end": 1865.12, "word": " this", "probability": 0.77197265625}, {"start": 1865.12, "end": 1865.18, "word": " is", "probability": 0.89208984375}, {"start": 1865.18, "end": 1865.24, "word": " the", "probability": 0.77294921875}, {"start": 1865.24, "end": 1865.42, "word": " path.", "probability": 0.199462890625}, {"start": 1866.16, "end": 1866.44, "word": " Because", "probability": 0.4873046875}, {"start": 1866.44, "end": 1866.6, "word": " when", "probability": 0.7978515625}, {"start": 1866.6, "end": 1866.78, "word": " I", "probability": 0.98486328125}, {"start": 1866.78, "end": 1866.94, "word": " create", "probability": 0.875}, {"start": 1866.94, "end": 1867.22, "word": " an", "probability": 0.7373046875}, {"start": 1867.22, "end": 1867.78, "word": " ImageProxy,", "probability": 0.8226725260416666}, {"start": 1867.82, "end": 1867.9, "word": " it", "probability": 0.642578125}, {"start": 1867.9, "end": 1867.96, "word": " only", "probability": 0.441650390625}, {"start": 1867.96, "end": 1868.14, "word": " sends", "probability": 0.61962890625}, {"start": 1868.14, "end": 1868.54, "word": " me", "probability": 0.47998046875}, {"start": 1868.54, "end": 1868.92, "word": " the", "probability": 0.81298828125}, {"start": 1868.92, "end": 1869.16, "word": " path", "probability": 0.74951171875}, {"start": 1869.16, "end": 1869.26, "word": " of", "probability": 0.61962890625}, {"start": 1869.26, "end": 1869.32, "word": " the", "probability": 0.8466796875}, {"start": 1869.32, "end": 1869.56, "word": " file", "probability": 0.853515625}, {"start": 1869.56, "end": 1869.66, "word": " and", "probability": 0.708984375}, {"start": 1869.66, "end": 1869.96, "word": " stores", "probability": 0.5693359375}, {"start": 1869.96, "end": 1870.08, "word": " it", "probability": 0.87841796875}, {"start": 1870.08, "end": 1870.24, "word": " with", "probability": 0.2529296875}, {"start": 1870.24, "end": 1870.34, "word": " it.", "probability": 0.83154296875}, {"start": 1870.7, "end": 1870.96, "word": " But", "probability": 0.85595703125}, {"start": 1870.96, "end": 1871.3, "word": " actually,", "probability": 0.307861328125}, {"start": 1871.42, "end": 1871.46, "word": " what", "probability": 0.30029296875}, {"start": 1871.46, "end": 1871.46, "word": " is", "probability": 0.87841796875}, {"start": 1871.46, "end": 1871.64, "word": " this?", "probability": 0.892578125}, {"start": 1871.86, "end": 1872.16, "word": " I", "probability": 0.85205078125}, {"start": 1872.16, "end": 1872.16, "word": " have", "probability": 0.8330078125}, {"start": 1872.16, "end": 1872.32, "word": " yet", "probability": 0.275146484375}, {"start": 1872.32, "end": 1873.16, "word": " to", "probability": 0.970703125}, {"start": 1873.16, "end": 1873.32, "word": " create", "probability": 0.81201171875}, {"start": 1873.32, "end": 1873.52, "word": " a", "probability": 0.288818359375}, {"start": 1873.52, "end": 1873.62, "word": " null.", "probability": 0.9384765625}], "temperature": 1.0}, {"id": 77, "seek": 189528, "start": 1876.8, "end": 1895.28, "text": "The high-resolution image has a show image and this one also has a show image. Here in the show image, in the moment I show the picture, I tell it to go and run the high-resolution image. And then I tell it to run the show image. So look, I delayed the creation of the high-resolution image from the constructor and left it only at the execution of the show image.", "tokens": [2278, 1090, 12, 495, 3386, 3256, 575, 257, 855, 3256, 293, 341, 472, 611, 575, 257, 855, 3256, 13, 1692, 294, 264, 855, 3256, 11, 294, 264, 1623, 286, 855, 264, 3036, 11, 286, 980, 309, 281, 352, 293, 1190, 264, 1090, 12, 495, 3386, 3256, 13, 400, 550, 286, 980, 309, 281, 1190, 264, 855, 3256, 13, 407, 574, 11, 286, 20268, 264, 8016, 295, 264, 1090, 12, 495, 3386, 3256, 490, 264, 47479, 293, 1411, 309, 787, 412, 264, 15058, 295, 264, 855, 3256, 13], "avg_logprob": -0.40021307969635184, "compression_ratio": 2.0919540229885056, "no_speech_prob": 1.1682510375976562e-05, "words": [{"start": 1876.8, "end": 1877.02, "word": "The", "probability": 0.27783203125}, {"start": 1877.02, "end": 1877.18, "word": " high", "probability": 0.70654296875}, {"start": 1877.18, "end": 1877.64, "word": "-resolution", "probability": 0.7478841145833334}, {"start": 1877.64, "end": 1877.88, "word": " image", "probability": 0.8515625}, {"start": 1877.88, "end": 1878.14, "word": " has", "probability": 0.485595703125}, {"start": 1878.14, "end": 1878.26, "word": " a", "probability": 0.65283203125}, {"start": 1878.26, "end": 1878.38, "word": " show", "probability": 0.88427734375}, {"start": 1878.38, "end": 1878.62, "word": " image", "probability": 0.92626953125}, {"start": 1878.62, "end": 1878.74, "word": " and", "probability": 0.322509765625}, {"start": 1878.74, "end": 1878.82, "word": " this", "probability": 0.52685546875}, {"start": 1878.82, "end": 1878.86, "word": " one", "probability": 0.350830078125}, {"start": 1878.86, "end": 1879.1, "word": " also", "probability": 0.40283203125}, {"start": 1879.1, "end": 1879.22, "word": " has", "probability": 0.89208984375}, {"start": 1879.22, "end": 1879.3, "word": " a", "probability": 0.87646484375}, {"start": 1879.3, "end": 1879.44, "word": " show", "probability": 0.95263671875}, {"start": 1879.44, "end": 1879.7, "word": " image.", "probability": 0.9404296875}, {"start": 1880.38, "end": 1880.58, "word": " Here", "probability": 0.281982421875}, {"start": 1880.58, "end": 1880.74, "word": " in", "probability": 0.67822265625}, {"start": 1880.74, "end": 1880.84, "word": " the", "probability": 0.79931640625}, {"start": 1880.84, "end": 1881.0, "word": " show", "probability": 0.85546875}, {"start": 1881.0, "end": 1881.24, "word": " image,", "probability": 0.94482421875}, {"start": 1881.3, "end": 1881.38, "word": " in", "probability": 0.43115234375}, {"start": 1881.38, "end": 1881.48, "word": " the", "probability": 0.9072265625}, {"start": 1881.48, "end": 1881.74, "word": " moment", "probability": 0.88232421875}, {"start": 1881.74, "end": 1881.94, "word": " I", "probability": 0.38720703125}, {"start": 1881.94, "end": 1882.18, "word": " show", "probability": 0.5947265625}, {"start": 1882.18, "end": 1882.44, "word": " the", "probability": 0.60693359375}, {"start": 1882.44, "end": 1882.72, "word": " picture,", "probability": 0.392822265625}, {"start": 1883.42, "end": 1883.88, "word": " I", "probability": 0.87451171875}, {"start": 1883.88, "end": 1884.12, "word": " tell", "probability": 0.53857421875}, {"start": 1884.12, "end": 1884.4, "word": " it", "probability": 0.52197265625}, {"start": 1884.4, "end": 1885.0, "word": " to", "probability": 0.65234375}, {"start": 1885.0, "end": 1885.02, "word": " go", "probability": 0.58935546875}, {"start": 1885.02, "end": 1885.14, "word": " and", "probability": 0.45166015625}, {"start": 1885.14, "end": 1885.28, "word": " run", "probability": 0.180419921875}, {"start": 1885.28, "end": 1885.42, "word": " the", "probability": 0.88671875}, {"start": 1885.42, "end": 1885.56, "word": " high", "probability": 0.837890625}, {"start": 1885.56, "end": 1886.02, "word": "-resolution", "probability": 0.8916015625}, {"start": 1886.02, "end": 1886.3, "word": " image.", "probability": 0.9189453125}, {"start": 1887.34, "end": 1887.6, "word": " And", "probability": 0.572265625}, {"start": 1887.6, "end": 1887.84, "word": " then", "probability": 0.767578125}, {"start": 1887.84, "end": 1887.92, "word": " I", "probability": 0.74072265625}, {"start": 1887.92, "end": 1888.04, "word": " tell", "probability": 0.63232421875}, {"start": 1888.04, "end": 1888.12, "word": " it", "probability": 0.87744140625}, {"start": 1888.12, "end": 1888.24, "word": " to", "probability": 0.46923828125}, {"start": 1888.24, "end": 1888.34, "word": " run", "probability": 0.6650390625}, {"start": 1888.34, "end": 1888.36, "word": " the", "probability": 0.83349609375}, {"start": 1888.36, "end": 1888.64, "word": " show", "probability": 0.93994140625}, {"start": 1888.64, "end": 1889.54, "word": " image.", "probability": 0.9404296875}, {"start": 1889.78, "end": 1889.88, "word": " So", "probability": 0.56005859375}, {"start": 1889.88, "end": 1890.06, "word": " look,", "probability": 0.208251953125}, {"start": 1890.14, "end": 1890.26, "word": " I", "probability": 0.91259765625}, {"start": 1890.26, "end": 1890.56, "word": " delayed", "probability": 0.556640625}, {"start": 1890.56, "end": 1890.74, "word": " the", "probability": 0.61669921875}, {"start": 1890.74, "end": 1890.9, "word": " creation", "probability": 0.3359375}, {"start": 1890.9, "end": 1891.0, "word": " of", "probability": 0.970703125}, {"start": 1891.0, "end": 1891.06, "word": " the", "probability": 0.8203125}, {"start": 1891.06, "end": 1891.18, "word": " high", "probability": 0.857421875}, {"start": 1891.18, "end": 1891.52, "word": "-resolution", "probability": 0.9529622395833334}, {"start": 1891.52, "end": 1891.82, "word": " image", "probability": 0.9052734375}, {"start": 1891.82, "end": 1892.0, "word": " from", "probability": 0.70166015625}, {"start": 1892.0, "end": 1892.12, "word": " the", "probability": 0.88134765625}, {"start": 1892.12, "end": 1892.6, "word": " constructor", "probability": 0.88037109375}, {"start": 1892.6, "end": 1892.72, "word": " and", "probability": 0.37548828125}, {"start": 1892.72, "end": 1892.92, "word": " left", "probability": 0.765625}, {"start": 1892.92, "end": 1893.08, "word": " it", "probability": 0.91455078125}, {"start": 1893.08, "end": 1893.32, "word": " only", "probability": 0.6484375}, {"start": 1893.32, "end": 1893.82, "word": " at", "probability": 0.15966796875}, {"start": 1893.82, "end": 1894.46, "word": " the", "probability": 0.66796875}, {"start": 1894.46, "end": 1894.68, "word": " execution", "probability": 0.69873046875}, {"start": 1894.68, "end": 1894.84, "word": " of", "probability": 0.96533203125}, {"start": 1894.84, "end": 1894.9, "word": " the", "probability": 0.869140625}, {"start": 1894.9, "end": 1895.02, "word": " show", "probability": 0.9521484375}, {"start": 1895.02, "end": 1895.28, "word": " image.", "probability": 0.93212890625}], "temperature": 1.0}, {"id": 78, "seek": 192500, "start": 1895.94, "end": 1925.0, "text": " And this is the main code that shows me the difference. Here I created three image proxies. These, if I want, don't take a load on the memory because I only send them paths. In fact, the load happens on the memory when I run Show Image, and this is not a problem because it shows image after image. But on the other hand, if I create high-resolution images directly, this will load in the memory, so these are costly methods because it will load the images in the memory.", "tokens": [400, 341, 307, 264, 2135, 3089, 300, 3110, 385, 264, 2649, 13, 1692, 286, 2942, 1045, 3256, 447, 87, 530, 13, 1981, 11, 498, 286, 528, 11, 500, 380, 747, 257, 3677, 322, 264, 4675, 570, 286, 787, 2845, 552, 14518, 13, 682, 1186, 11, 264, 3677, 2314, 322, 264, 4675, 562, 286, 1190, 6895, 29903, 11, 293, 341, 307, 406, 257, 1154, 570, 309, 3110, 3256, 934, 3256, 13, 583, 322, 264, 661, 1011, 11, 498, 286, 1884, 1090, 12, 495, 3386, 5267, 3838, 11, 341, 486, 3677, 294, 264, 4675, 11, 370, 613, 366, 28328, 7150, 570, 309, 486, 3677, 264, 5267, 294, 264, 4675, 13], "avg_logprob": -0.5054472389571164, "compression_ratio": 1.8365758754863812, "no_speech_prob": 2.8014183044433594e-06, "words": [{"start": 1895.94, "end": 1896.18, "word": " And", "probability": 0.24462890625}, {"start": 1896.18, "end": 1896.42, "word": " this", "probability": 0.7626953125}, {"start": 1896.42, "end": 1896.56, "word": " is", "probability": 0.88818359375}, {"start": 1896.56, "end": 1896.74, "word": " the", "probability": 0.88525390625}, {"start": 1896.74, "end": 1896.98, "word": " main", "probability": 0.87939453125}, {"start": 1896.98, "end": 1897.38, "word": " code", "probability": 0.90380859375}, {"start": 1897.38, "end": 1897.96, "word": " that", "probability": 0.67919921875}, {"start": 1897.96, "end": 1898.2, "word": " shows", "probability": 0.501953125}, {"start": 1898.2, "end": 1898.38, "word": " me", "probability": 0.259033203125}, {"start": 1898.38, "end": 1898.46, "word": " the", "probability": 0.88671875}, {"start": 1898.46, "end": 1898.64, "word": " difference.", "probability": 0.822265625}, {"start": 1898.76, "end": 1899.0, "word": " Here", "probability": 0.306640625}, {"start": 1899.0, "end": 1899.28, "word": " I", "probability": 0.499755859375}, {"start": 1899.28, "end": 1899.52, "word": " created", "probability": 0.4189453125}, {"start": 1899.52, "end": 1900.52, "word": " three", "probability": 0.480224609375}, {"start": 1900.52, "end": 1901.68, "word": " image", "probability": 0.59716796875}, {"start": 1901.68, "end": 1902.12, "word": " proxies.", "probability": 0.763671875}, {"start": 1902.58, "end": 1902.92, "word": " These,", "probability": 0.463623046875}, {"start": 1903.0, "end": 1903.12, "word": " if", "probability": 0.232421875}, {"start": 1903.12, "end": 1903.26, "word": " I", "probability": 0.39111328125}, {"start": 1903.26, "end": 1903.26, "word": " want,", "probability": 0.587890625}, {"start": 1903.36, "end": 1903.5, "word": " don't", "probability": 0.6580810546875}, {"start": 1903.5, "end": 1903.76, "word": " take", "probability": 0.489990234375}, {"start": 1903.76, "end": 1903.98, "word": " a", "probability": 0.325927734375}, {"start": 1903.98, "end": 1904.2, "word": " load", "probability": 0.92431640625}, {"start": 1904.2, "end": 1904.66, "word": " on", "probability": 0.458740234375}, {"start": 1904.66, "end": 1904.74, "word": " the", "probability": 0.63818359375}, {"start": 1904.74, "end": 1904.94, "word": " memory", "probability": 0.8388671875}, {"start": 1904.94, "end": 1905.98, "word": " because", "probability": 0.37451171875}, {"start": 1905.98, "end": 1906.52, "word": " I", "probability": 0.48095703125}, {"start": 1906.52, "end": 1906.7, "word": " only", "probability": 0.367919921875}, {"start": 1906.7, "end": 1906.96, "word": " send", "probability": 0.74755859375}, {"start": 1906.96, "end": 1907.08, "word": " them", "probability": 0.332763671875}, {"start": 1907.08, "end": 1907.4, "word": " paths.", "probability": 0.1397705078125}, {"start": 1909.6, "end": 1910.04, "word": " In", "probability": 0.1676025390625}, {"start": 1910.04, "end": 1910.32, "word": " fact,", "probability": 0.6748046875}, {"start": 1910.64, "end": 1910.72, "word": " the", "probability": 0.47509765625}, {"start": 1910.72, "end": 1910.88, "word": " load", "probability": 0.74951171875}, {"start": 1910.88, "end": 1910.88, "word": " happens", "probability": 0.373779296875}, {"start": 1910.88, "end": 1911.0, "word": " on", "probability": 0.7978515625}, {"start": 1911.0, "end": 1911.06, "word": " the", "probability": 0.89208984375}, {"start": 1911.06, "end": 1911.24, "word": " memory", "probability": 0.83740234375}, {"start": 1911.24, "end": 1911.4, "word": " when", "probability": 0.8759765625}, {"start": 1911.4, "end": 1911.52, "word": " I", "probability": 0.97900390625}, {"start": 1911.52, "end": 1911.88, "word": " run", "probability": 0.39990234375}, {"start": 1911.88, "end": 1912.54, "word": " Show", "probability": 0.61767578125}, {"start": 1912.54, "end": 1912.78, "word": " Image,", "probability": 0.54638671875}, {"start": 1912.82, "end": 1912.88, "word": " and", "probability": 0.57177734375}, {"start": 1912.88, "end": 1913.0, "word": " this", "probability": 0.75341796875}, {"start": 1913.0, "end": 1913.08, "word": " is", "probability": 0.87109375}, {"start": 1913.08, "end": 1913.18, "word": " not", "probability": 0.85595703125}, {"start": 1913.18, "end": 1913.26, "word": " a", "probability": 0.95556640625}, {"start": 1913.26, "end": 1913.52, "word": " problem", "probability": 0.853515625}, {"start": 1913.52, "end": 1913.78, "word": " because", "probability": 0.806640625}, {"start": 1913.78, "end": 1913.92, "word": " it", "probability": 0.85302734375}, {"start": 1913.92, "end": 1914.14, "word": " shows", "probability": 0.38818359375}, {"start": 1914.14, "end": 1914.38, "word": " image", "probability": 0.277587890625}, {"start": 1914.38, "end": 1914.54, "word": " after", "probability": 0.541015625}, {"start": 1914.54, "end": 1914.66, "word": " image.", "probability": 0.89697265625}, {"start": 1916.14, "end": 1916.56, "word": " But", "probability": 0.59521484375}, {"start": 1916.56, "end": 1916.76, "word": " on", "probability": 0.341064453125}, {"start": 1916.76, "end": 1916.86, "word": " the", "probability": 0.93212890625}, {"start": 1916.86, "end": 1917.12, "word": " other", "probability": 0.63623046875}, {"start": 1917.12, "end": 1917.16, "word": " hand,", "probability": 0.89892578125}, {"start": 1917.26, "end": 1917.36, "word": " if", "probability": 0.91259765625}, {"start": 1917.36, "end": 1917.58, "word": " I", "probability": 0.990234375}, {"start": 1917.58, "end": 1917.86, "word": " create", "probability": 0.6240234375}, {"start": 1917.86, "end": 1918.26, "word": " high", "probability": 0.2464599609375}, {"start": 1918.26, "end": 1918.74, "word": "-resolution", "probability": 0.8181966145833334}, {"start": 1918.74, "end": 1919.08, "word": " images", "probability": 0.9296875}, {"start": 1919.08, "end": 1919.6, "word": " directly,", "probability": 0.859375}, {"start": 1919.86, "end": 1920.42, "word": " this", "probability": 0.494873046875}, {"start": 1920.42, "end": 1920.54, "word": " will", "probability": 0.62451171875}, {"start": 1920.54, "end": 1920.8, "word": " load", "probability": 0.70654296875}, {"start": 1920.8, "end": 1920.96, "word": " in", "probability": 0.404296875}, {"start": 1920.96, "end": 1921.04, "word": " the", "probability": 0.5283203125}, {"start": 1921.04, "end": 1921.24, "word": " memory,", "probability": 0.806640625}, {"start": 1921.38, "end": 1921.46, "word": " so", "probability": 0.56103515625}, {"start": 1921.46, "end": 1921.7, "word": " these", "probability": 0.78564453125}, {"start": 1921.7, "end": 1921.98, "word": " are", "probability": 0.54931640625}, {"start": 1921.98, "end": 1922.44, "word": " costly", "probability": 0.84619140625}, {"start": 1922.44, "end": 1922.88, "word": " methods", "probability": 0.87548828125}, {"start": 1922.88, "end": 1923.24, "word": " because", "probability": 0.779296875}, {"start": 1923.24, "end": 1923.3, "word": " it", "probability": 0.58984375}, {"start": 1923.3, "end": 1923.4, "word": " will", "probability": 0.69580078125}, {"start": 1923.4, "end": 1923.6, "word": " load", "probability": 0.93896484375}, {"start": 1923.6, "end": 1923.74, "word": " the", "probability": 0.63671875}, {"start": 1923.74, "end": 1924.02, "word": " images", "probability": 0.46044921875}, {"start": 1924.02, "end": 1924.66, "word": " in", "probability": 0.6005859375}, {"start": 1924.66, "end": 1924.78, "word": " the", "probability": 0.671875}, {"start": 1924.78, "end": 1925.0, "word": " memory.", "probability": 0.8857421875}], "temperature": 1.0}, {"id": 79, "seek": 195411, "start": 1925.99, "end": 1954.11, "text": "The last point in the proxy will separate you from the proxy pattern and some of the previous design patterns that we took. For example, we talked about the decorator. Let's start with the one below. What is the difference between the proxy and the decorator? Both have the same principle of operation. An object wraps an object inside, and both of them are of the same type. But the goal is different. The decorator added this functionality to control the object. And this is the same thing that is present here. Because there is another one that also wraps, which is the adapter.", "tokens": [2278, 1036, 935, 294, 264, 29690, 486, 4994, 291, 490, 264, 29690, 5102, 293, 512, 295, 264, 3894, 1715, 8294, 300, 321, 1890, 13, 1171, 1365, 11, 321, 2825, 466, 264, 7919, 1639, 13, 961, 311, 722, 365, 264, 472, 2507, 13, 708, 307, 264, 2649, 1296, 264, 29690, 293, 264, 7919, 1639, 30, 6767, 362, 264, 912, 8665, 295, 6916, 13, 1107, 2657, 25831, 364, 2657, 1854, 11, 293, 1293, 295, 552, 366, 295, 264, 912, 2010, 13, 583, 264, 3387, 307, 819, 13, 440, 7919, 1639, 3869, 341, 14980, 281, 1969, 264, 2657, 13, 400, 341, 307, 264, 912, 551, 300, 307, 1974, 510, 13, 1436, 456, 307, 1071, 472, 300, 611, 25831, 11, 597, 307, 264, 22860, 13], "avg_logprob": -0.43493853436141716, "compression_ratio": 1.832807570977918, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 1925.99, "end": 1926.19, "word": "The", "probability": 0.189697265625}, {"start": 1926.19, "end": 1926.35, "word": " last", "probability": 0.7822265625}, {"start": 1926.35, "end": 1926.59, "word": " point", "probability": 0.83203125}, {"start": 1926.59, "end": 1926.75, "word": " in", "probability": 0.3232421875}, {"start": 1926.75, "end": 1926.87, "word": " the", "probability": 0.50927734375}, {"start": 1926.87, "end": 1927.27, "word": " proxy", "probability": 0.88818359375}, {"start": 1927.27, "end": 1927.65, "word": " will", "probability": 0.2015380859375}, {"start": 1927.65, "end": 1928.01, "word": " separate", "probability": 0.340087890625}, {"start": 1928.01, "end": 1928.27, "word": " you", "probability": 0.366455078125}, {"start": 1928.27, "end": 1928.39, "word": " from", "probability": 0.52880859375}, {"start": 1928.39, "end": 1928.69, "word": " the", "probability": 0.54150390625}, {"start": 1928.69, "end": 1929.01, "word": " proxy", "probability": 0.5615234375}, {"start": 1929.01, "end": 1929.31, "word": " pattern", "probability": 0.49462890625}, {"start": 1929.31, "end": 1929.45, "word": " and", "probability": 0.72998046875}, {"start": 1929.45, "end": 1929.71, "word": " some", "probability": 0.62939453125}, {"start": 1929.71, "end": 1929.75, "word": " of", "probability": 0.65625}, {"start": 1929.75, "end": 1929.81, "word": " the", "probability": 0.8876953125}, {"start": 1929.81, "end": 1930.07, "word": " previous", "probability": 0.30126953125}, {"start": 1930.07, "end": 1930.11, "word": " design", "probability": 0.4931640625}, {"start": 1930.11, "end": 1930.51, "word": " patterns", "probability": 0.8857421875}, {"start": 1930.51, "end": 1931.01, "word": " that", "probability": 0.498779296875}, {"start": 1931.01, "end": 1931.15, "word": " we", "probability": 0.89306640625}, {"start": 1931.15, "end": 1931.39, "word": " took.", "probability": 0.3515625}, {"start": 1931.99, "end": 1932.43, "word": " For", "probability": 0.5849609375}, {"start": 1932.43, "end": 1932.79, "word": " example,", "probability": 0.9287109375}, {"start": 1933.51, "end": 1933.83, "word": " we", "probability": 0.37890625}, {"start": 1933.83, "end": 1933.83, "word": " talked", "probability": 0.3837890625}, {"start": 1933.83, "end": 1933.83, "word": " about", "probability": 0.90185546875}, {"start": 1933.83, "end": 1933.85, "word": " the", "probability": 0.59326171875}, {"start": 1933.85, "end": 1934.31, "word": " decorator.", "probability": 0.875}, {"start": 1934.93, "end": 1935.03, "word": " Let's", "probability": 0.70751953125}, {"start": 1935.03, "end": 1935.23, "word": " start", "probability": 0.85595703125}, {"start": 1935.23, "end": 1935.31, "word": " with", "probability": 0.59716796875}, {"start": 1935.31, "end": 1935.43, "word": " the", "probability": 0.8193359375}, {"start": 1935.43, "end": 1935.43, "word": " one", "probability": 0.469970703125}, {"start": 1935.43, "end": 1935.65, "word": " below.", "probability": 0.80322265625}, {"start": 1936.13, "end": 1936.31, "word": " What", "probability": 0.83056640625}, {"start": 1936.31, "end": 1936.31, "word": " is", "probability": 0.56689453125}, {"start": 1936.31, "end": 1936.47, "word": " the", "probability": 0.86181640625}, {"start": 1936.47, "end": 1936.61, "word": " difference", "probability": 0.86279296875}, {"start": 1936.61, "end": 1936.71, "word": " between", "probability": 0.86572265625}, {"start": 1936.71, "end": 1936.81, "word": " the", "probability": 0.61865234375}, {"start": 1936.81, "end": 1937.07, "word": " proxy", "probability": 0.7802734375}, {"start": 1937.07, "end": 1937.17, "word": " and", "probability": 0.9306640625}, {"start": 1937.17, "end": 1937.27, "word": " the", "probability": 0.5322265625}, {"start": 1937.27, "end": 1937.65, "word": " decorator?", "probability": 0.988037109375}, {"start": 1937.91, "end": 1938.35, "word": " Both", "probability": 0.6064453125}, {"start": 1938.35, "end": 1938.65, "word": " have", "probability": 0.399169921875}, {"start": 1938.65, "end": 1939.07, "word": " the", "probability": 0.87841796875}, {"start": 1939.07, "end": 1939.07, "word": " same", "probability": 0.890625}, {"start": 1939.07, "end": 1939.49, "word": " principle", "probability": 0.3876953125}, {"start": 1939.49, "end": 1939.65, "word": " of", "probability": 0.86572265625}, {"start": 1939.65, "end": 1939.89, "word": " operation.", "probability": 0.407470703125}, {"start": 1940.45, "end": 1940.67, "word": " An", "probability": 0.44677734375}, {"start": 1940.67, "end": 1940.99, "word": " object", "probability": 0.9658203125}, {"start": 1940.99, "end": 1941.33, "word": " wraps", "probability": 0.41845703125}, {"start": 1941.33, "end": 1941.55, "word": " an", "probability": 0.58349609375}, {"start": 1941.55, "end": 1941.79, "word": " object", "probability": 0.9501953125}, {"start": 1941.79, "end": 1942.07, "word": " inside,", "probability": 0.78759765625}, {"start": 1942.21, "end": 1942.27, "word": " and", "probability": 0.64208984375}, {"start": 1942.27, "end": 1942.51, "word": " both", "probability": 0.83154296875}, {"start": 1942.51, "end": 1942.63, "word": " of", "probability": 0.277099609375}, {"start": 1942.63, "end": 1942.73, "word": " them", "probability": 0.85009765625}, {"start": 1942.73, "end": 1942.85, "word": " are", "probability": 0.6220703125}, {"start": 1942.85, "end": 1942.85, "word": " of", "probability": 0.7109375}, {"start": 1942.85, "end": 1943.01, "word": " the", "probability": 0.9150390625}, {"start": 1943.01, "end": 1943.01, "word": " same", "probability": 0.89892578125}, {"start": 1943.01, "end": 1943.69, "word": " type.", "probability": 0.465087890625}, {"start": 1944.01, "end": 1944.21, "word": " But", "probability": 0.84619140625}, {"start": 1944.21, "end": 1944.73, "word": " the", "probability": 0.286376953125}, {"start": 1944.73, "end": 1945.07, "word": " goal", "probability": 0.58544921875}, {"start": 1945.07, "end": 1945.09, "word": " is", "probability": 0.79345703125}, {"start": 1945.09, "end": 1945.09, "word": " different.", "probability": 0.876953125}, {"start": 1945.65, "end": 1945.79, "word": " The", "probability": 0.7900390625}, {"start": 1945.79, "end": 1946.17, "word": " decorator", "probability": 0.984375}, {"start": 1946.17, "end": 1946.61, "word": " added", "probability": 0.33203125}, {"start": 1946.61, "end": 1947.47, "word": " this", "probability": 0.6591796875}, {"start": 1947.47, "end": 1947.47, "word": " functionality", "probability": 0.861328125}, {"start": 1947.47, "end": 1947.73, "word": " to", "probability": 0.8994140625}, {"start": 1947.73, "end": 1948.33, "word": " control", "probability": 0.478271484375}, {"start": 1948.33, "end": 1949.23, "word": " the", "probability": 0.90380859375}, {"start": 1949.23, "end": 1949.45, "word": " object.", "probability": 0.9736328125}, {"start": 1949.51, "end": 1949.59, "word": " And", "probability": 0.413330078125}, {"start": 1949.59, "end": 1949.69, "word": " this", "probability": 0.65966796875}, {"start": 1949.69, "end": 1949.73, "word": " is", "probability": 0.92626953125}, {"start": 1949.73, "end": 1949.91, "word": " the", "probability": 0.8212890625}, {"start": 1949.91, "end": 1949.91, "word": " same", "probability": 0.87109375}, {"start": 1949.91, "end": 1950.31, "word": " thing", "probability": 0.467041015625}, {"start": 1950.31, "end": 1950.85, "word": " that", "probability": 0.59033203125}, {"start": 1950.85, "end": 1950.91, "word": " is", "probability": 0.564453125}, {"start": 1950.91, "end": 1951.15, "word": " present", "probability": 0.369140625}, {"start": 1951.15, "end": 1951.35, "word": " here.", "probability": 0.8193359375}, {"start": 1951.73, "end": 1951.95, "word": " Because", "probability": 0.307861328125}, {"start": 1951.95, "end": 1952.13, "word": " there", "probability": 0.865234375}, {"start": 1952.13, "end": 1952.17, "word": " is", "probability": 0.89453125}, {"start": 1952.17, "end": 1952.57, "word": " another", "probability": 0.779296875}, {"start": 1952.57, "end": 1952.71, "word": " one", "probability": 0.386474609375}, {"start": 1952.71, "end": 1953.11, "word": " that", "probability": 0.80908203125}, {"start": 1953.11, "end": 1953.21, "word": " also", "probability": 0.59228515625}, {"start": 1953.21, "end": 1953.35, "word": " wraps,", "probability": 0.87744140625}, {"start": 1953.55, "end": 1953.63, "word": " which", "probability": 0.82421875}, {"start": 1953.63, "end": 1953.75, "word": " is", "probability": 0.9423828125}, {"start": 1953.75, "end": 1953.83, "word": " the", "probability": 0.8486328125}, {"start": 1953.83, "end": 1954.11, "word": " adapter.", "probability": 0.84765625}], "temperature": 1.0}, {"id": 80, "seek": 198117, "start": 1954.95, "end": 1981.17, "text": "The adapter wraps an object, but why did we use the adapter? If I want the client to use a certain library and I want him to use another library B, should we go and change the program to use B? He said, no, you create a new class from type A and wrap the class from type B. In fact, the adapter is also a wrapper, but it takes another type.", "tokens": [2278, 22860, 25831, 364, 2657, 11, 457, 983, 630, 321, 764, 264, 22860, 30, 759, 286, 528, 264, 6423, 281, 764, 257, 1629, 6405, 293, 286, 528, 796, 281, 764, 1071, 6405, 363, 11, 820, 321, 352, 293, 1319, 264, 1461, 281, 764, 363, 30, 634, 848, 11, 572, 11, 291, 1884, 257, 777, 1508, 490, 2010, 316, 293, 7019, 264, 1508, 490, 2010, 363, 13, 682, 1186, 11, 264, 22860, 307, 611, 257, 46906, 11, 457, 309, 2516, 1071, 2010, 13], "avg_logprob": -0.4807981906166996, "compression_ratio": 1.7171717171717171, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 1954.95, "end": 1955.19, "word": "The", "probability": 0.42529296875}, {"start": 1955.19, "end": 1955.53, "word": " adapter", "probability": 0.705078125}, {"start": 1955.53, "end": 1955.85, "word": " wraps", "probability": 0.4228515625}, {"start": 1955.85, "end": 1956.09, "word": " an", "probability": 0.2044677734375}, {"start": 1956.09, "end": 1956.27, "word": " object,", "probability": 0.97265625}, {"start": 1956.55, "end": 1956.69, "word": " but", "probability": 0.8193359375}, {"start": 1956.69, "end": 1957.23, "word": " why", "probability": 0.541015625}, {"start": 1957.23, "end": 1957.23, "word": " did", "probability": 0.443359375}, {"start": 1957.23, "end": 1957.23, "word": " we", "probability": 0.498291015625}, {"start": 1957.23, "end": 1957.59, "word": " use", "probability": 0.849609375}, {"start": 1957.59, "end": 1957.67, "word": " the", "probability": 0.353271484375}, {"start": 1957.67, "end": 1957.67, "word": " adapter?", "probability": 0.8857421875}, {"start": 1958.31, "end": 1958.87, "word": " If", "probability": 0.697265625}, {"start": 1958.87, "end": 1959.17, "word": " I", "probability": 0.7509765625}, {"start": 1959.17, "end": 1960.21, "word": " want", "probability": 0.60205078125}, {"start": 1960.21, "end": 1960.73, "word": " the", "probability": 0.43798828125}, {"start": 1960.73, "end": 1961.17, "word": " client", "probability": 0.91064453125}, {"start": 1961.17, "end": 1961.45, "word": " to", "probability": 0.869140625}, {"start": 1961.45, "end": 1962.17, "word": " use", "probability": 0.39306640625}, {"start": 1962.17, "end": 1962.33, "word": " a", "probability": 0.431884765625}, {"start": 1962.33, "end": 1962.39, "word": " certain", "probability": 0.433837890625}, {"start": 1962.39, "end": 1962.61, "word": " library", "probability": 0.72021484375}, {"start": 1962.61, "end": 1962.97, "word": " and", "probability": 0.58740234375}, {"start": 1962.97, "end": 1963.03, "word": " I", "probability": 0.471435546875}, {"start": 1963.03, "end": 1963.19, "word": " want", "probability": 0.81982421875}, {"start": 1963.19, "end": 1963.41, "word": " him", "probability": 0.82958984375}, {"start": 1963.41, "end": 1963.49, "word": " to", "probability": 0.86083984375}, {"start": 1963.49, "end": 1963.73, "word": " use", "probability": 0.86376953125}, {"start": 1963.73, "end": 1963.91, "word": " another", "probability": 0.81982421875}, {"start": 1963.91, "end": 1964.53, "word": " library", "probability": 0.87060546875}, {"start": 1964.53, "end": 1964.81, "word": " B,", "probability": 0.306884765625}, {"start": 1965.61, "end": 1966.15, "word": " should", "probability": 0.54248046875}, {"start": 1966.15, "end": 1966.41, "word": " we", "probability": 0.603515625}, {"start": 1966.41, "end": 1966.41, "word": " go", "probability": 0.213623046875}, {"start": 1966.41, "end": 1966.55, "word": " and", "probability": 0.50537109375}, {"start": 1966.55, "end": 1966.73, "word": " change", "probability": 0.342529296875}, {"start": 1966.73, "end": 1966.95, "word": " the", "probability": 0.7978515625}, {"start": 1966.95, "end": 1967.35, "word": " program", "probability": 0.77734375}, {"start": 1967.35, "end": 1967.59, "word": " to", "probability": 0.72998046875}, {"start": 1967.59, "end": 1968.01, "word": " use", "probability": 0.8310546875}, {"start": 1968.01, "end": 1968.33, "word": " B?", "probability": 0.810546875}, {"start": 1968.69, "end": 1968.93, "word": " He", "probability": 0.69580078125}, {"start": 1968.93, "end": 1968.99, "word": " said,", "probability": 0.4716796875}, {"start": 1969.09, "end": 1969.23, "word": " no,", "probability": 0.439453125}, {"start": 1969.67, "end": 1969.75, "word": " you", "probability": 0.45703125}, {"start": 1969.75, "end": 1969.95, "word": " create", "probability": 0.16162109375}, {"start": 1969.95, "end": 1970.49, "word": " a", "probability": 0.91162109375}, {"start": 1970.49, "end": 1970.49, "word": " new", "probability": 0.84765625}, {"start": 1970.49, "end": 1971.17, "word": " class", "probability": 0.80322265625}, {"start": 1971.17, "end": 1972.03, "word": " from", "probability": 0.483154296875}, {"start": 1972.03, "end": 1972.33, "word": " type", "probability": 0.1966552734375}, {"start": 1972.33, "end": 1972.63, "word": " A", "probability": 0.966796875}, {"start": 1972.63, "end": 1973.85, "word": " and", "probability": 0.73486328125}, {"start": 1973.85, "end": 1974.27, "word": " wrap", "probability": 0.72412109375}, {"start": 1974.27, "end": 1975.31, "word": " the", "probability": 0.59326171875}, {"start": 1975.31, "end": 1975.65, "word": " class", "probability": 0.88916015625}, {"start": 1975.65, "end": 1975.81, "word": " from", "probability": 0.59619140625}, {"start": 1975.81, "end": 1976.11, "word": " type", "probability": 0.90771484375}, {"start": 1976.11, "end": 1976.93, "word": " B.", "probability": 0.99560546875}, {"start": 1977.43, "end": 1977.53, "word": " In", "probability": 0.159912109375}, {"start": 1977.53, "end": 1977.81, "word": " fact,", "probability": 0.70849609375}, {"start": 1977.89, "end": 1977.97, "word": " the", "probability": 0.8037109375}, {"start": 1977.97, "end": 1978.25, "word": " adapter", "probability": 0.87646484375}, {"start": 1978.25, "end": 1978.47, "word": " is", "probability": 0.90966796875}, {"start": 1978.47, "end": 1978.59, "word": " also", "probability": 0.78857421875}, {"start": 1978.59, "end": 1978.99, "word": " a", "probability": 0.83935546875}, {"start": 1978.99, "end": 1979.27, "word": " wrapper,", "probability": 0.720703125}, {"start": 1980.13, "end": 1980.35, "word": " but", "probability": 0.8193359375}, {"start": 1980.35, "end": 1980.59, "word": " it", "probability": 0.845703125}, {"start": 1980.59, "end": 1980.87, "word": " takes", "probability": 0.69140625}, {"start": 1980.87, "end": 1980.99, "word": " another", "probability": 0.56982421875}, {"start": 1980.99, "end": 1981.17, "word": " type.", "probability": 0.89892578125}], "temperature": 1.0}, {"id": 81, "seek": 201174, "start": 1982.38, "end": 2011.74, "text": " Okay? The type of adapter is different from the type of object that is wrapped. But in the proxy and decorator, the type of class, which is the wrapper, whether it is decorator or proxy, is the same type of object that is wrapped. This is the difference here. This tells me that the adapter implements a different interface to the object it adapts. Okay, guys? Okay, so we have completed the proxy pattern. We will stop here for today. Okay, guys?", "tokens": [1033, 30, 440, 2010, 295, 22860, 307, 819, 490, 264, 2010, 295, 2657, 300, 307, 14226, 13, 583, 294, 264, 29690, 293, 7919, 1639, 11, 264, 2010, 295, 1508, 11, 597, 307, 264, 46906, 11, 1968, 309, 307, 7919, 1639, 420, 29690, 11, 307, 264, 912, 2010, 295, 2657, 300, 307, 14226, 13, 639, 307, 264, 2649, 510, 13, 639, 5112, 385, 300, 264, 22860, 704, 17988, 257, 819, 9226, 281, 264, 2657, 309, 23169, 1373, 13, 1033, 11, 1074, 30, 1033, 11, 370, 321, 362, 7365, 264, 29690, 5102, 13, 492, 486, 1590, 510, 337, 965, 13, 1033, 11, 1074, 30], "avg_logprob": -0.3874393111293756, "compression_ratio": 1.9478260869565218, "no_speech_prob": 9.715557098388672e-06, "words": [{"start": 1982.3799999999999, "end": 1982.82, "word": " Okay?", "probability": 0.11785888671875}, {"start": 1983.62, "end": 1983.98, "word": " The", "probability": 0.583984375}, {"start": 1983.98, "end": 1984.04, "word": " type", "probability": 0.51416015625}, {"start": 1984.04, "end": 1984.24, "word": " of", "probability": 0.97705078125}, {"start": 1984.24, "end": 1984.84, "word": " adapter", "probability": 0.63818359375}, {"start": 1984.84, "end": 1985.14, "word": " is", "probability": 0.366455078125}, {"start": 1985.14, "end": 1985.42, "word": " different", "probability": 0.86572265625}, {"start": 1985.42, "end": 1985.68, "word": " from", "probability": 0.65478515625}, {"start": 1985.68, "end": 1985.78, "word": " the", "probability": 0.8359375}, {"start": 1985.78, "end": 1985.88, "word": " type", "probability": 0.93408203125}, {"start": 1985.88, "end": 1985.98, "word": " of", "probability": 0.97216796875}, {"start": 1985.98, "end": 1986.26, "word": " object", "probability": 0.76611328125}, {"start": 1986.26, "end": 1986.38, "word": " that", "probability": 0.3359375}, {"start": 1986.38, "end": 1986.5, "word": " is", "probability": 0.47802734375}, {"start": 1986.5, "end": 1986.72, "word": " wrapped.", "probability": 0.373291015625}, {"start": 1987.16, "end": 1987.6, "word": " But", "probability": 0.6845703125}, {"start": 1987.6, "end": 1987.82, "word": " in", "probability": 0.6923828125}, {"start": 1987.82, "end": 1987.92, "word": " the", "probability": 0.50537109375}, {"start": 1987.92, "end": 1988.24, "word": " proxy", "probability": 0.8974609375}, {"start": 1988.24, "end": 1988.42, "word": " and", "probability": 0.90966796875}, {"start": 1988.42, "end": 1989.04, "word": " decorator,", "probability": 0.68603515625}, {"start": 1989.62, "end": 1989.7, "word": " the", "probability": 0.8017578125}, {"start": 1989.7, "end": 1989.92, "word": " type", "probability": 0.85595703125}, {"start": 1989.92, "end": 1990.4, "word": " of", "probability": 0.92529296875}, {"start": 1990.4, "end": 1991.14, "word": " class,", "probability": 0.76220703125}, {"start": 1991.74, "end": 1991.84, "word": " which", "probability": 0.47607421875}, {"start": 1991.84, "end": 1991.96, "word": " is", "probability": 0.908203125}, {"start": 1991.96, "end": 1992.06, "word": " the", "probability": 0.6572265625}, {"start": 1992.06, "end": 1992.34, "word": " wrapper,", "probability": 0.9443359375}, {"start": 1992.52, "end": 1992.62, "word": " whether", "probability": 0.74560546875}, {"start": 1992.62, "end": 1992.88, "word": " it", "probability": 0.90283203125}, {"start": 1992.88, "end": 1992.88, "word": " is", "probability": 0.64501953125}, {"start": 1992.88, "end": 1993.46, "word": " decorator", "probability": 0.7298583984375}, {"start": 1993.46, "end": 1993.64, "word": " or", "probability": 0.9609375}, {"start": 1993.64, "end": 1993.98, "word": " proxy,", "probability": 0.97119140625}, {"start": 1994.04, "end": 1994.2, "word": " is", "probability": 0.6513671875}, {"start": 1994.2, "end": 1994.24, "word": " the", "probability": 0.54052734375}, {"start": 1994.24, "end": 1994.34, "word": " same", "probability": 0.8359375}, {"start": 1994.34, "end": 1994.56, "word": " type", "probability": 0.77734375}, {"start": 1994.56, "end": 1994.64, "word": " of", "probability": 0.9208984375}, {"start": 1994.64, "end": 1995.06, "word": " object", "probability": 0.9287109375}, {"start": 1995.06, "end": 1995.72, "word": " that", "probability": 0.430908203125}, {"start": 1995.72, "end": 1995.88, "word": " is", "probability": 0.5625}, {"start": 1995.88, "end": 1996.08, "word": " wrapped.", "probability": 0.830078125}, {"start": 1996.2, "end": 1996.36, "word": " This", "probability": 0.433349609375}, {"start": 1996.36, "end": 1996.38, "word": " is", "probability": 0.8203125}, {"start": 1996.38, "end": 1996.44, "word": " the", "probability": 0.8955078125}, {"start": 1996.44, "end": 1996.68, "word": " difference", "probability": 0.818359375}, {"start": 1996.68, "end": 1996.88, "word": " here.", "probability": 0.7109375}, {"start": 1997.16, "end": 1997.26, "word": " This", "probability": 0.38525390625}, {"start": 1997.26, "end": 1997.46, "word": " tells", "probability": 0.36474609375}, {"start": 1997.46, "end": 1997.54, "word": " me", "probability": 0.77099609375}, {"start": 1997.54, "end": 1997.6, "word": " that", "probability": 0.77978515625}, {"start": 1997.6, "end": 1997.72, "word": " the", "probability": 0.77978515625}, {"start": 1997.72, "end": 1998.02, "word": " adapter", "probability": 0.80078125}, {"start": 1998.02, "end": 1998.6, "word": " implements", "probability": 0.91064453125}, {"start": 1998.6, "end": 1998.82, "word": " a", "probability": 0.98583984375}, {"start": 1998.82, "end": 1999.18, "word": " different", "probability": 0.88671875}, {"start": 1999.18, "end": 1999.68, "word": " interface", "probability": 0.90576171875}, {"start": 1999.68, "end": 1999.84, "word": " to", "probability": 0.9404296875}, {"start": 1999.84, "end": 1999.98, "word": " the", "probability": 0.92041015625}, {"start": 1999.98, "end": 2000.26, "word": " object", "probability": 0.94921875}, {"start": 2000.26, "end": 2000.46, "word": " it", "probability": 0.75}, {"start": 2000.46, "end": 2000.94, "word": " adapts.", "probability": 0.929443359375}, {"start": 2001.54, "end": 2001.86, "word": " Okay,", "probability": 0.66552734375}, {"start": 2001.88, "end": 2002.14, "word": " guys?", "probability": 0.767578125}, {"start": 2005.4, "end": 2005.84, "word": " Okay,", "probability": 0.52392578125}, {"start": 2005.9, "end": 2006.04, "word": " so", "probability": 0.323974609375}, {"start": 2006.04, "end": 2006.24, "word": " we", "probability": 0.52685546875}, {"start": 2006.24, "end": 2006.46, "word": " have", "probability": 0.227783203125}, {"start": 2006.46, "end": 2006.86, "word": " completed", "probability": 0.3486328125}, {"start": 2006.86, "end": 2007.92, "word": " the", "probability": 0.88818359375}, {"start": 2007.92, "end": 2008.18, "word": " proxy", "probability": 0.96337890625}, {"start": 2008.18, "end": 2008.62, "word": " pattern.", "probability": 0.896484375}, {"start": 2008.92, "end": 2009.36, "word": " We", "probability": 0.63330078125}, {"start": 2009.36, "end": 2009.44, "word": " will", "probability": 0.767578125}, {"start": 2009.44, "end": 2009.78, "word": " stop", "probability": 0.56005859375}, {"start": 2009.78, "end": 2010.72, "word": " here", "probability": 0.5810546875}, {"start": 2010.72, "end": 2011.04, "word": " for", "probability": 0.54443359375}, {"start": 2011.04, "end": 2011.14, "word": " today.", "probability": 0.7822265625}, {"start": 2011.26, "end": 2011.48, "word": " Okay,", "probability": 0.79150390625}, {"start": 2011.54, "end": 2011.74, "word": " guys?", "probability": 0.93017578125}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2011.962625, "duration_after_vad": 1955.655624999995} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/JjtUl0IeLFU_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/JjtUl0IeLFU_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..2e2017fbffc55a27ab59cd483580bca43ecc06c9 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/JjtUl0IeLFU_raw.srt @@ -0,0 +1,2340 @@ +1 +00:00:05,210 --> 00:00:08,970 +Ok guys, peace be upon you Today, God willing, + +2 +00:00:09,110 --> 00:00:11,790 +guys, we will continue the explanation of the + +3 +00:00:11,790 --> 00:00:14,930 +proxy pattern to see his elderly ground and other + +4 +00:00:14,930 --> 00:00:19,510 +uses of it In the last lecture, we talked about + +5 +00:00:19,510 --> 00:00:21,310 +the proxy pattern and we said that it is very + +6 +00:00:21,310 --> 00:00:23,970 +similar to the decorator It is really like the + +7 +00:00:23,970 --> 00:00:26,150 +idea of ​​the decorator that I have an object that + +8 +00:00:26,150 --> 00:00:29,750 +covers another object But why did he make another + +9 +00:00:29,750 --> 00:00:31,610 +design pattern? Because the goal is only to be + +10 +00:00:31,610 --> 00:00:34,150 +different from the goal of the proxy about the + +11 +00:00:34,150 --> 00:00:35,330 +goal of the decorator. The goal of the decorator + +12 +00:00:35,330 --> 00:00:37,730 +was to wrap an object with the goal of adding + +13 +00:00:37,730 --> 00:00:41,790 +additional functionality. But the proxy is to wrap + +14 +00:00:41,790 --> 00:00:45,170 +an object with the goal of controlling this object + +15 +00:00:45,170 --> 00:00:49,390 +and controlling it in a larger way. An example of + +16 +00:00:49,390 --> 00:00:51,910 +this, we saw in the previous lecture, is that when + +17 +00:00:51,910 --> 00:00:54,110 +I made an image gallery program that displayed a + +18 +00:00:54,110 --> 00:00:57,150 +group of images, and this program would load the + +19 +00:00:57,150 --> 00:01:00,500 +images as an image icon. The problem with image + +20 +00:01:00,500 --> 00:01:03,180 +icons is that when we used to create loops on the + +21 +00:01:03,180 --> 00:01:05,000 +paths of images and give them the name of the + +22 +00:01:05,000 --> 00:01:08,180 +image or the path of the image, when an object was + +23 +00:01:08,180 --> 00:01:10,060 +created, an image icon, it was a costly object. + +24 +00:01:10,820 --> 00:01:14,040 +Its creation takes up space in the memory. So if + +25 +00:01:14,040 --> 00:01:15,760 +you create 100 images, it means that 100 images + +26 +00:01:15,760 --> 00:01:17,720 +will be stored in the memory whether you show them + +27 +00:01:17,720 --> 00:01:20,440 +or not. You actually stored the image, but you + +28 +00:01:20,440 --> 00:01:26,440 +only showed one image. So we made a trick that we + +29 +00:01:26,440 --> 00:01:29,980 +wanted to delay the creation of this object.we + +30 +00:01:29,980 --> 00:01:32,120 +want to change it, but at the same time, I don't + +31 +00:01:32,120 --> 00:01:35,100 +want to change too much in my app so what did I + +32 +00:01:35,100 --> 00:01:37,860 +do? I created a new class called ImageProxy that + +33 +00:01:37,860 --> 00:01:41,160 +covers the image icon because the image is + +34 +00:01:41,160 --> 00:01:44,160 +basically an image icon, okay? so I created an + +35 +00:01:44,160 --> 00:01:46,540 +imaginary object or an imaginary class called + +36 +00:01:46,540 --> 00:01:50,160 +ImageProxy that covers the image icon all the idea + +37 +00:01:50,160 --> 00:01:52,900 +that exists is that I don't really want to create + +38 +00:01:52,900 --> 00:01:58,070 +the image icon unless I need toOkay? So in the + +39 +00:01:58,070 --> 00:02:00,450 +image proxy, the new class that I created, its + +40 +00:02:00,450 --> 00:02:04,430 +constructor does not create an object from an + +41 +00:02:04,430 --> 00:02:07,850 +image icon, it only sends a string to the image + +42 +00:02:07,850 --> 00:02:11,730 +and stores this string. So if I create a thousand + +43 +00:02:11,730 --> 00:02:14,290 +image proxies, they will not take anything from + +44 +00:02:14,290 --> 00:02:17,050 +the memory because each object is just a string, + +45 +00:02:17,190 --> 00:02:21,120 +which is the image string.Okay, actually image + +46 +00:02:21,120 --> 00:02:23,960 +proxy is not the image, right or not? There is no + +47 +00:02:23,960 --> 00:02:26,280 +image data, it wraps the image icon which is still + +48 +00:02:26,280 --> 00:02:30,440 +null, okay? When is the image icon actually + +49 +00:02:30,440 --> 00:02:32,640 +created? Because the image icon, when you go to + +50 +00:02:32,640 --> 00:02:34,480 +load the image, which is at the moment when you + +51 +00:02:34,480 --> 00:02:37,220 +click next and previous, and when he goes to paint + +52 +00:02:37,220 --> 00:02:40,480 +it, I tell him in this case, if you find the image + +53 +00:02:40,480 --> 00:02:43,900 +icon null, go and create it. So actually I delayed + +54 +00:02:43,900 --> 00:02:45,840 +the creation of the image icon for the moment I + +55 +00:02:45,840 --> 00:02:50,630 +need it. Now for the client, I made him use the + +56 +00:02:50,630 --> 00:02:53,470 +image proxy instead of the image icon. And he will + +57 +00:02:53,470 --> 00:02:58,330 +accept it because both are the same. Let's read + +58 +00:02:58,330 --> 00:03:00,690 +what is written here. Sometimes we need the + +59 +00:03:00,690 --> 00:03:05,710 +ability to control the access to an object. + +60 +00:03:06,290 --> 00:03:10,150 +For example, if we need to use only a few methods + +61 +00:03:10,150 --> 00:03:14,800 +of some cost objects,I have a costly object and it + +62 +00:03:14,800 --> 00:03:17,480 +costs a lot to create it and I need to use a + +63 +00:03:17,480 --> 00:03:23,040 +method from this object because in order to use + +64 +00:03:23,040 --> 00:03:25,120 +this method I need to create the object and this + +65 +00:03:25,120 --> 00:03:29,400 +object is costly so it costs me the idea now is + +66 +00:03:29,400 --> 00:03:33,440 +the solution until + +67 +00:03:33,440 --> 00:03:37,040 +that point when we need to use the method we can + +68 +00:03:37,040 --> 00:03:40,100 +use some light objects exposing the same interface + +69 +00:03:40,100 --> 00:03:45,620 +as the heavy objectsUntil you need the method to + +70 +00:03:45,620 --> 00:03:48,920 +claim it, I don't need the method. I created the + +71 +00:03:48,920 --> 00:03:54,000 +cost object and loaded it in my memory to claim + +72 +00:03:54,000 --> 00:03:56,620 +the method. Just like the image icon, we loaded it + +73 +00:03:56,620 --> 00:04:01,510 +in memory but we didn't show the image. until that + +74 +00:04:01,510 --> 00:04:06,050 +point + +75 +00:04:06,050 --> 00:04:13,350 +we can use some light objects exposing + +76 +00:04:13,350 --> 00:04:20,830 +the same interface as the heavy object these light + +77 +00:04:20,830 --> 00:04:25,210 +objects are called Proxies. In our example, the + +78 +00:04:25,210 --> 00:04:28,150 +image proxy is this light object, which has the + +79 +00:04:28,150 --> 00:04:30,830 +same interface as the image icon. Both of them are + +80 +00:04:30,830 --> 00:04:34,910 +image icons. So what do these light objects do? + +81 +00:04:35,030 --> 00:04:38,570 +These light objects are called proxies, and they + +82 +00:04:38,570 --> 00:04:42,090 +will instantiate those heavy objects when they are + +83 +00:04:42,090 --> 00:04:47,250 +really needed. This light object actually wraps + +84 +00:04:47,250 --> 00:04:50,380 +the heavy object.What I mean by that is the + +85 +00:04:50,380 --> 00:04:53,020 +important thing is the wrapped object inside. This + +86 +00:04:53,020 --> 00:04:54,820 +image approximate is the image. Am I right or not + +87 +00:04:54,820 --> 00:04:59,380 +guys? Because this is the important point. Light + +88 +00:04:59,380 --> 00:05:03,120 +object will instantiate those heavy objects when + +89 +00:05:03,120 --> 00:05:05,700 +they are really needed and by then we will use + +90 +00:05:05,700 --> 00:05:08,880 +some light objects instead. The client uses the + +91 +00:05:08,880 --> 00:05:13,800 +light object like the image icon, but actually the + +92 +00:05:13,800 --> 00:05:16,800 +wrapped object is what is created at the moment of + +93 +00:05:16,800 --> 00:05:22,780 +display of the image.Now, of course, I couldn't + +94 +00:05:22,780 --> 00:05:24,960 +read this sentence without looking at the example. + +95 +00:05:25,760 --> 00:05:27,400 +Right or wrong? If I didn't explain the example + +96 +00:05:27,400 --> 00:05:28,680 +and read the sentence, you won't understand what + +97 +00:05:28,680 --> 00:05:30,160 +is light and what is heavy. But with the example, + +98 +00:05:30,880 --> 00:05:33,880 +the sentence should be clearer. Now, the ability + +99 +00:05:33,880 --> 00:05:36,280 +to control the access to an object can be required + +100 +00:05:36,280 --> 00:05:40,260 +for a variety of reasons. Now, the ability to + +101 +00:05:40,260 --> 00:05:42,660 +control the access to an object is necessary in + +102 +00:05:42,660 --> 00:05:46,200 +multiple cases.What are these cases? The first + +103 +00:05:46,200 --> 00:05:48,600 +case is controlling when a caustic object needs to + +104 +00:05:48,600 --> 00:05:51,960 +be instantiated and initialized. The first case is + +105 +00:05:51,960 --> 00:05:55,140 +controlling when a caustic object is created. This + +106 +00:05:55,140 --> 00:05:57,380 +is similar to the example that we presented. Now + +107 +00:05:57,380 --> 00:06:00,640 +he is explaining what are the cases that need a + +108 +00:06:00,640 --> 00:06:03,640 +proxy pattern. The first case is to create a + +109 +00:06:03,640 --> 00:06:07,010 +virtual object that covers a real object.in order + +110 +00:06:07,010 --> 00:06:09,090 +to delay the creation of the real object at the + +111 +00:06:09,090 --> 00:06:11,990 +moment of need. Like the idea of singleton, I + +112 +00:06:11,990 --> 00:06:14,670 +don't create it when I don't need it yet. I don't + +113 +00:06:14,670 --> 00:06:17,490 +create the image when I don't show it yet. When I + +114 +00:06:17,490 --> 00:06:20,570 +show it at the moment, I let it create it. So this + +115 +00:06:20,570 --> 00:06:23,750 +is the first case. We only came up with a case + +116 +00:06:23,750 --> 00:06:27,010 +when we had to use the proxy pattern. What are the + +117 +00:06:27,010 --> 00:06:30,170 +other cases? The other cases give you different + +118 +00:06:30,170 --> 00:06:33,970 +access rights to an object.it gives the ability to + +119 +00:06:33,970 --> 00:06:36,130 +access the object we talked about in the previous + +120 +00:06:36,130 --> 00:06:38,810 +lecture when we explained in the beginning about + +121 +00:06:38,810 --> 00:06:42,650 +the proxy that I can have an object that has x, y + +122 +00:06:42,650 --> 00:06:46,810 +and z methods and I want the client to cancel this + +123 +00:06:46,810 --> 00:06:51,910 +z or delete the existing code I can actually wrap + +124 +00:06:51,910 --> 00:06:55,290 +it with an object of the same type put x and y and + +125 +00:06:55,290 --> 00:06:59,110 +don't put anything else zOf course this X will + +126 +00:06:59,110 --> 00:07:02,150 +make forward to whom? To the X inside and Y is the + +127 +00:07:02,150 --> 00:07:06,910 +same thing Z can be put empty on the basis that + +128 +00:07:06,910 --> 00:07:10,910 +the client keeps seeing this like this but the + +129 +00:07:10,910 --> 00:07:13,190 +method makes it empty or doesn't make forward as + +130 +00:07:13,190 --> 00:07:17,310 +if you blocked whom? This method In this second + +131 +00:07:17,310 --> 00:07:19,730 +case which is giving different access rights on + +132 +00:07:19,730 --> 00:07:23,490 +objectThe third case, as well as providing + +133 +00:07:23,490 --> 00:07:26,370 +sophisticated means of accessing and referencing + +134 +00:07:26,370 --> 00:07:29,410 +objects running in other processes or other + +135 +00:07:29,410 --> 00:07:34,190 +machines, which is to provide a way to access + +136 +00:07:34,190 --> 00:07:39,970 +objects on another process or machine. We will + +137 +00:07:39,970 --> 00:07:42,570 +talk about this point in a moment. The last point, + +138 +00:07:42,730 --> 00:07:47,210 +the third use of the proxy. Today, the diagram of + +139 +00:07:47,210 --> 00:07:48,890 +the proxy is very similar to that of the + +140 +00:07:48,890 --> 00:07:53,210 +decorator. I have this real subject, the object + +141 +00:07:53,210 --> 00:07:55,930 +that I want to control its access to, delay its + +142 +00:07:55,930 --> 00:07:59,270 +creation, it is a kind of subject, it is an + +143 +00:07:59,270 --> 00:08:02,710 +implementable interface I actually create a class + +144 +00:08:02,710 --> 00:08:06,390 +called proxy of the subject type and at the same + +145 +00:08:06,390 --> 00:08:10,130 +time it wraps the real subject and the same method + +146 +00:08:10,130 --> 00:08:13,190 +in the real subject is present in the do operation + +147 +00:08:13,190 --> 00:08:16,270 +but here of course there is a code that does not + +148 +00:08:16,270 --> 00:08:21,450 +control the subject In the end, this is the client + +149 +00:08:21,450 --> 00:08:24,930 +that will deal with the real subject It will deal + +150 +00:08:24,930 --> 00:08:26,930 +with the proxy in the same way because both of + +151 +00:08:26,930 --> 00:08:32,930 +them are the same type of interface Because + +152 +00:08:32,930 --> 00:08:35,530 +this explains today what diagram is left for you + +153 +00:08:35,530 --> 00:08:39,270 +This is also regular talk that explains how the + +154 +00:08:39,270 --> 00:08:44,710 +proxy works One of the most famous proxy + +155 +00:08:44,710 --> 00:08:49,790 +applications in the case of web services Or a + +156 +00:08:49,790 --> 00:08:51,970 +specific case that we call Remote Method + +157 +00:08:51,970 --> 00:08:55,430 +Invocation What is the word Remote? Remote. + +158 +00:08:55,550 --> 00:08:59,770 +Method. Remote method. Invocation. Invocation. + +159 +00:08:59,890 --> 00:09:00,250 +Remote method. + +160 +00:09:08,950 --> 00:09:09,670 +Invocation. Invocation. Invocation. Invocation. + +161 +00:09:09,670 --> 00:09:09,670 +Invocation. Invocation. Invocation. Invocation. + +162 +00:09:09,670 --> 00:09:09,670 +Invocation. Invocation. Invocation. Invocation. + +163 +00:09:09,670 --> 00:09:09,850 +Invocation. Invocation. Invocation. Invocation. + +164 +00:09:09,850 --> 00:09:09,850 +Invocation. Invocation. Invocation. Invocation. + +165 +00:09:09,850 --> 00:09:09,850 +Invocation. Invocation. Invocation. Invocation. + +166 +00:09:09,850 --> 00:09:09,850 +Invocation. Invocation. Invocation. Invocation. + +167 +00:09:09,850 --> 00:09:09,850 +Invocation. Invocation. Invocation. Invocation. + +168 +00:09:09,850 --> 00:09:09,950 +Invocation. Invocation. Invocation. Invocation. + +169 +00:09:09,950 --> 00:09:09,950 +Invocation. Invocation. Invocation. Invocation. + +170 +00:09:09,950 --> 00:09:09,950 +Invocation. Invocation. Invocation. Invocation. + +171 +00:09:09,950 --> 00:09:09,950 +Invocation. Invocation. Invocation. Invocation. + +172 +00:09:09,950 --> 00:09:09,950 +Invocation. Invocation. Invocation. Invocation. + +173 +00:09:09,950 --> 00:09:09,950 +Invocation. Invocation. Invocation. Invocation. + +174 +00:09:09,950 --> 00:09:09,950 +Invocation. Invocation. Invocation. Invocation. + +175 +00:09:09,950 --> 00:09:12,070 +Invocation. Invocation. Invocation. Inv + +176 +00:09:17,360 --> 00:09:20,720 +But let's give an introduction and explain what + +177 +00:09:20,720 --> 00:09:25,240 +web services are Now it is known that applications + +178 +00:09:25,240 --> 00:09:32,000 +are distributed on devices For example, a company + +179 +00:09:32,000 --> 00:09:34,660 +or an institution wants to make an application for + +180 +00:09:34,660 --> 00:09:39,640 +it It first makes a website and then makes a + +181 +00:09:39,640 --> 00:09:42,860 +mobile application And the principle is that the + +182 +00:09:42,860 --> 00:09:45,080 +mobile application and the website share the same + +183 +00:09:45,080 --> 00:09:48,120 +data I mean, I want to make a marketing program + +184 +00:09:48,120 --> 00:09:51,040 +whether you browse through the mobile application + +185 +00:09:51,040 --> 00:09:54,080 +or through the website Of course, the same data + +186 +00:09:54,080 --> 00:09:57,520 +will be available So actually, I have a website Of + +187 +00:09:57,520 --> 00:10:02,750 +course, the website is based on a database Okay? + +188 +00:10:03,470 --> 00:10:05,590 +And I read from it and I show it for example in + +189 +00:10:05,590 --> 00:10:09,330 +the pages that I have on the website. Now, I also + +190 +00:10:09,330 --> 00:10:12,490 +want to make a mobile application. Let's call this + +191 +00:10:12,490 --> 00:10:16,730 +mobile device. Of course, the mobile device must + +192 +00:10:16,730 --> 00:10:21,360 +make a connection toon the server. Now, how do + +193 +00:10:21,360 --> 00:10:26,120 +devices communicate with each other? Now, there + +194 +00:10:26,120 --> 00:10:29,060 +are different ways. There are ways using sockets. + +195 +00:10:29,260 --> 00:10:32,000 +You make a socket that connects to a certain port + +196 +00:10:32,000 --> 00:10:34,120 +and sends a message and receives a response from + +197 +00:10:34,120 --> 00:10:41,320 +the server. But today, all communication between + +198 +00:10:41,320 --> 00:10:46,160 +devices and applications is mostly done on the + +199 +00:10:46,160 --> 00:10:47,620 +HTTP protocol. + +200 +00:10:51,900 --> 00:10:56,200 +Through the internet network, through the HTTP + +201 +00:10:56,200 --> 00:10:59,880 +protocol, which is the same protocol that you use + +202 +00:10:59,880 --> 00:11:02,620 +when browsing the internet, when you type url and + +203 +00:11:02,620 --> 00:11:04,600 +press enter, this request goes to the server, + +204 +00:11:05,200 --> 00:11:06,940 +brings you the content of the page and returns it + +205 +00:11:06,940 --> 00:11:13,400 +to you. This is done through port 80 or 8080. What + +206 +00:11:13,400 --> 00:11:14,800 +is the advantage of communication through HTTP + +207 +00:11:14,800 --> 00:11:17,780 +protocol? Communication is secure because the port + +208 +00:11:17,780 --> 00:11:21,600 +on the internet is always open. Now companies and + +209 +00:11:21,600 --> 00:11:23,360 +institutions, because of security issues, close + +210 +00:11:23,360 --> 00:11:27,520 +all other ports and leave only the port of the + +211 +00:11:27,520 --> 00:11:30,800 +internet and more than one other port. They are + +212 +00:11:30,800 --> 00:11:33,500 +the only ones that are open and the connection is + +213 +00:11:33,500 --> 00:11:33,760 +working on them. + +214 +00:11:39,800 --> 00:11:42,520 +Actually, the mobile device communicates with the + +215 +00:11:42,520 --> 00:11:46,840 +server as if you are requesting a page from the + +216 +00:11:46,840 --> 00:11:49,520 +server and the server returns the content to it. + +217 +00:11:50,480 --> 00:11:52,600 +Of course, the HTTP protocol is also one of the + +218 +00:11:52,600 --> 00:11:54,660 +characteristics that the data is transmitted as + +219 +00:11:54,660 --> 00:11:58,820 +hypertext, as text. In the end, the data goes as a + +220 +00:11:58,820 --> 00:12:05,580 +request and returns as text. Now, as I said, we + +221 +00:12:05,580 --> 00:12:09,540 +will talk about what people call APIs, okay? But + +222 +00:12:09,540 --> 00:12:11,380 +this is also a word, the name is not correct. + +223 +00:12:12,720 --> 00:12:14,460 +Actually, this is an issue request that is sent. + +224 +00:12:14,680 --> 00:12:17,580 +You actually ask for a page on a mobile device. As + +225 +00:12:17,580 --> 00:12:20,440 +you type on the browser, the link is a page, a + +226 +00:12:20,440 --> 00:12:23,340 +mobile phone comes and asks for products that are + +227 +00:12:23,340 --> 00:12:26,580 +available on the server. For example, this is the + +228 +00:12:26,580 --> 00:12:32,250 +domain slash products.Okay? Slash, for example, + +229 +00:12:32,750 --> 00:12:35,170 +fifty-three. What does it mean? It wants the + +230 +00:12:35,170 --> 00:12:39,210 +product fifty-three. Here are its details. This is + +231 +00:12:39,210 --> 00:12:42,290 +the domain name slash product in the products + +232 +00:12:42,290 --> 00:12:44,950 +slash fifty-three which is ... This is the URL + +233 +00:12:44,950 --> 00:12:50,810 +link. It starts with HTTP or HTTPS Okay guys, this + +234 +00:12:50,810 --> 00:12:52,510 +link is sent to the server, and the server + +235 +00:12:52,510 --> 00:12:56,350 +prepares the result page for it and returns it to + +236 +00:12:56,350 --> 00:12:57,930 +it. But of course, the data is not returned as + +237 +00:12:57,930 --> 00:13:05,130 +HTML. HTML is made for human processing, to show a + +238 +00:13:05,130 --> 00:13:08,290 +visible page. But when devices communicate with + +239 +00:13:08,290 --> 00:13:12,510 +each other, the data is returned as a form that + +240 +00:13:12,510 --> 00:13:15,390 +the machine can understand. For example, like + +241 +00:13:15,390 --> 00:13:20,150 +JSON.and XML, did you hear about JSON and XML? + +242 +00:13:20,670 --> 00:13:26,210 +It's just a way to represent data. For example, I + +243 +00:13:26,210 --> 00:13:34,160 +want a person, I want the employee Ok, his ID is + +244 +00:13:34,160 --> 00:13:37,660 +53. This request reaches the server. This server + +245 +00:13:37,660 --> 00:13:41,000 +reaches the URL. It takes 53 and queries the + +246 +00:13:41,000 --> 00:13:43,580 +database. There is a code here. Select from + +247 +00:13:43,580 --> 00:13:46,360 +database. This is the ID of the employee. It gets + +248 +00:13:46,360 --> 00:13:48,180 +his information. Ok, who should this information + +249 +00:13:48,180 --> 00:13:51,040 +go back to? To the server. Why should it go back + +250 +00:13:51,040 --> 00:13:54,960 +to HTML? It goes back to either JSON or XML. Can I + +251 +00:13:54,960 --> 00:13:57,100 +enter the employee's data? For example, it was + +252 +00:13:57,100 --> 00:14:04,410 +Ali, 17. Yes, three, two, for example. So I got + +253 +00:14:04,410 --> 00:14:07,470 +these data. Do you understand what this is? These + +254 +00:14:07,470 --> 00:14:09,370 +are the employee's data. There is no explanation + +255 +00:14:09,370 --> 00:14:12,230 +for it. Okay, I understand, this is a name. But + +256 +00:14:12,230 --> 00:14:14,390 +what is seventeen? This is his age, the address + +257 +00:14:14,390 --> 00:14:17,270 +where he lives, he has seventeen children. Yes, + +258 +00:14:17,870 --> 00:14:20,310 +no, no, three, what is three? He has three + +259 +00:14:20,310 --> 00:14:23,150 +children, married three, I don't know what this + +260 +00:14:23,150 --> 00:14:25,890 +is. So I found that we need another information to + +261 +00:14:25,890 --> 00:14:28,490 +explain what this is. So we can say for example, + +262 +00:14:28,730 --> 00:14:35,930 +put key name, two dots like this, comma, age, two + +263 +00:14:35,930 --> 00:14:42,050 +dots, number of children, like this, okay? This is + +264 +00:14:42,050 --> 00:14:46,490 +the shape of the JSON file. JSON is what? Key and + +265 +00:14:46,490 --> 00:14:50,610 +value, okay? Key can have more than value, okay? + +266 +00:14:51,740 --> 00:14:55,680 +It's JSON object, JSON array It's a way to + +267 +00:14:55,680 --> 00:14:57,960 +represent the data Of course, this is for the + +268 +00:14:57,960 --> 00:15:01,560 +machine to read it It's not HTML, HTML is for the + +269 +00:15:01,560 --> 00:15:07,420 +user to see it This is like JSON Another way is + +270 +00:15:07,420 --> 00:15:10,960 +XML What's different from this? Nothing Instead of + +271 +00:15:10,960 --> 00:15:12,920 +writing a key before it, you put a tag before it + +272 +00:15:12,920 --> 00:15:16,940 +You say this is name and here is slash Name, + +273 +00:15:17,020 --> 00:15:19,700 +another way, but they use tags Here they use key + +274 +00:15:20,600 --> 00:15:23,540 +and value, okay? So it returns the data either as + +275 +00:15:23,540 --> 00:15:28,240 +xml or as json And then what does the client do? + +276 +00:15:30,280 --> 00:15:33,420 +In the client, it sends the data as json, it + +277 +00:15:33,420 --> 00:15:37,640 +extracts the data from the json, okay? And then it + +278 +00:15:37,640 --> 00:15:40,740 +shows it to you in the application Because this is + +279 +00:15:40,740 --> 00:15:43,020 +really the idea of how devices communicate with + +280 +00:15:43,020 --> 00:15:48,930 +the server Now, this process can be difficult to + +281 +00:15:48,930 --> 00:15:52,470 +do. For example, someone asks you how to create a + +282 +00:15:52,470 --> 00:15:55,130 +web service. Very simply, a web service is a page + +283 +00:15:55,130 --> 00:16:02,160 +with a link. The result of the page is JSON. It's + +284 +00:16:02,160 --> 00:16:05,220 +a simple web service, and if you create a page, + +285 +00:16:05,680 --> 00:16:10,320 +the link will look like this, slash, etc, etc, + +286 +00:16:10,400 --> 00:16:13,460 +domain, persons, etc, and here you send it the id, + +287 +00:16:13,960 --> 00:16:18,420 +for example. It can be slash 53, or it can even be + +288 +00:16:18,420 --> 00:16:23,480 +another form, for example, ID equals 53, whatever + +289 +00:16:23,480 --> 00:16:25,560 +the form of the link. The point is that this + +290 +00:16:25,560 --> 00:16:27,980 +request reaches the server, and the server knows + +291 +00:16:27,980 --> 00:16:31,880 +how to In PHP, it takes the parameters in the + +292 +00:16:31,880 --> 00:16:35,240 +request and then makes a query on the database. It + +293 +00:16:35,240 --> 00:16:38,140 +gets the data and forms it as JSON. JSON is text. + +294 +00:16:38,640 --> 00:16:41,900 +Or it makes a return to the server. But in real + +295 +00:16:41,900 --> 00:16:46,320 +applications, the number of requests can be large. + +296 +00:16:46,440 --> 00:16:50,480 +For example, this mobile device needs a certain + +297 +00:16:50,480 --> 00:16:54,140 +product. So it says, for example, slash products. + +298 +00:16:55,640 --> 00:17:03,320 +on their ID it could be slash products on for + +299 +00:17:03,320 --> 00:17:07,200 +example what + +300 +00:17:07,200 --> 00:17:13,420 +products are there? fruits right? + +301 +00:17:14,200 --> 00:17:18,000 +here what happened is like a category right? to + +302 +00:17:18,000 --> 00:17:21,280 +give you all the categories that are there it + +303 +00:17:21,280 --> 00:17:27,450 +could be slash persons by sending him the ID. It + +304 +00:17:27,450 --> 00:17:31,650 +can be a slash delivery. + +305 +00:17:34,530 --> 00:17:39,630 +Okay? The point is that mobile applications have + +306 +00:17:39,630 --> 00:17:41,710 +many screens, and each screen has different data. + +307 +00:17:43,250 --> 00:17:45,970 +So, each different data that he wants to request + +308 +00:17:45,970 --> 00:17:49,480 +must have a link. It's different, okay? For + +309 +00:17:49,480 --> 00:17:50,420 +example, I might need to request a certain number + +310 +00:17:50,420 --> 00:17:53,540 +of links during my application. 20 links, each + +311 +00:17:53,540 --> 00:17:57,120 +link represents a different request for data. It's + +312 +00:17:57,120 --> 00:17:59,780 +different, are you with me? This means that you + +313 +00:17:59,780 --> 00:18:01,140 +want to go to the server and create how many + +314 +00:18:01,140 --> 00:18:05,060 +pages? Approximately 20 pages in the number of + +315 +00:18:05,060 --> 00:18:07,460 +links. So what did Valgate do? They created + +316 +00:18:07,460 --> 00:18:11,980 +libraries that made it easier for us to know how + +317 +00:18:11,980 --> 00:18:17,890 +to create a web service and how to download it.I + +318 +00:18:17,890 --> 00:18:21,890 +will make it simple for you. This is what you call + +319 +00:18:21,890 --> 00:18:26,550 +in companies to make API. What is API? This name + +320 +00:18:26,550 --> 00:18:32,370 +is not accurate. The word API is short for what? + +321 +00:18:34,630 --> 00:18:38,850 +Abstract Programmable Interface. It is a interface + +322 +00:18:38,850 --> 00:18:43,370 +through which you connect to the application. Any + +323 +00:18:43,370 --> 00:18:46,370 +library that you create and provide methods or + +324 +00:18:46,370 --> 00:18:48,990 +classes that tell the client to use these classes + +325 +00:18:48,990 --> 00:18:51,090 +and methods in order to execute the operations + +326 +00:18:51,090 --> 00:18:55,630 +that you want, this is considered an API. When you + +327 +00:18:55,630 --> 00:18:57,930 +say that you provide a simple class and simple + +328 +00:18:57,930 --> 00:19:02,030 +methods through which the internal methods in the + +329 +00:19:02,030 --> 00:19:03,390 +library are created, this is considered an API. + +330 +00:19:05,020 --> 00:19:06,820 +Why do I call it abstract? Because it's + +331 +00:19:06,820 --> 00:19:12,480 +simplified. Okay? Short, miraculous. Okay? The API + +332 +00:19:12,480 --> 00:19:15,620 +we use for any interface, for any programming + +333 +00:19:15,620 --> 00:19:17,620 +interface, for a library that I use locally or on + +334 +00:19:17,620 --> 00:19:20,780 +the server, this is considered an API. Okay? But + +335 +00:19:20,780 --> 00:19:23,380 +what did they call it? It started to express + +336 +00:19:23,380 --> 00:19:26,140 +itself on the web service and call it API. Okay? + +337 +00:19:26,600 --> 00:19:28,380 +It's true that you make a programming interface, + +338 +00:19:29,700 --> 00:19:32,700 +Right? In the end, so that you can connect to the + +339 +00:19:32,700 --> 00:19:36,220 +server from your mobile device. But in the end, we + +340 +00:19:36,220 --> 00:19:39,500 +call it a web service. The word API is more + +341 +00:19:39,500 --> 00:19:41,920 +general than that. Anyway, let's go back to our + +342 +00:19:41,920 --> 00:19:44,040 +topic. Did you notice that making a web service is + +343 +00:19:44,040 --> 00:19:46,780 +a bit difficult? Because you really want to have + +344 +00:19:46,780 --> 00:19:49,760 +20 different links and each link has 20 pages + +345 +00:19:49,760 --> 00:19:52,480 +facing the server. So they made libraries on the + +346 +00:19:52,480 --> 00:19:55,660 +server to facilitate the creation of web services. + +347 +00:19:56,280 --> 00:19:58,380 +Of course, it varies. Those who work on Marvel + +348 +00:19:58,380 --> 00:20:01,340 +have a certain way of doing it Those who work on + +349 +00:20:01,340 --> 00:20:03,800 +Node.js have a different way Those who work on + +350 +00:20:03,800 --> 00:20:08,000 +Javaspring have a third way, okay? It's all simply + +351 +00:20:08,000 --> 00:20:11,040 +a simple process. What did they do? They all work + +352 +00:20:11,040 --> 00:20:13,860 +in almost the same way What do you do on the + +353 +00:20:13,860 --> 00:20:15,740 +server? I'll tell you where we're going The + +354 +00:20:15,740 --> 00:20:18,160 +framework that was created on the server told you + +355 +00:20:18,160 --> 00:20:22,180 +that in order to do the API or the web service, go + +356 +00:20:22,180 --> 00:20:25,680 +and create a class called, for example, MyService + +357 +00:20:30,080 --> 00:20:33,740 +How many requests do I have to make? 20 requests. + +358 +00:20:33,840 --> 00:20:37,200 +Each request is represented by a method. For + +359 +00:20:37,200 --> 00:20:41,180 +example, make a request called get product. + +360 +00:20:42,360 --> 00:20:46,820 +And this method takes what? String id. Regardless + +361 +00:20:46,820 --> 00:20:49,880 +of whether it is Java or not. And this method, + +362 +00:20:51,060 --> 00:20:54,090 +where did I turn it on? Did I find it?In the + +363 +00:20:54,090 --> 00:20:57,330 +server, ok? What do you put here? Connection to + +364 +00:20:57,330 --> 00:20:59,790 +the database, select it, get a query, get the + +365 +00:20:59,790 --> 00:21:02,850 +products, put them in the ArrayList, change it to + +366 +00:21:02,850 --> 00:21:06,930 +JSON twice No, even if I change it to JSON, ok? + +367 +00:21:07,410 --> 00:21:13,370 +Create them as a list of what? of product means as + +368 +00:21:13,370 --> 00:21:19,490 +if you are working on a database this method will + +369 +00:21:19,490 --> 00:21:21,990 +give you an id and return you a product not a + +370 +00:21:21,990 --> 00:21:24,590 +list, it is supposed to return you an id it is + +371 +00:21:24,590 --> 00:21:27,870 +supposed to return you one product this method + +372 +00:21:27,870 --> 00:21:32,150 +will return you all products you say for example + +373 +00:21:32,150 --> 00:21:38,590 +get all products and program it and make it return + +374 +00:21:38,590 --> 00:21:42,280 +a list of Products You have a method that returns + +375 +00:21:42,280 --> 00:21:46,020 +to people GetPersonById The method returns to all + +376 +00:21:46,020 --> 00:21:48,860 +people So, actually, what did it do? All that is + +377 +00:21:48,860 --> 00:21:51,060 +required for the client, you gave it a method + +378 +00:21:51,060 --> 00:21:53,760 +Then, what does it do simply? It tells you, this + +379 +00:21:53,760 --> 00:21:57,480 +method determines what is its URL It comes over + +380 +00:21:57,480 --> 00:21:59,860 +the method and puts a tag You tell it, this + +381 +00:21:59,860 --> 00:22:04,460 +method, its URL is this and this and this on + +382 +00:22:04,460 --> 00:22:12,200 +Products on ID It's like I'm making a mapping + +383 +00:22:12,200 --> 00:22:19,320 +link. If you find this link, learn this method. If + +384 +00:22:19,320 --> 00:22:24,380 +you find this link, learn this method. Instead of + +385 +00:22:24,380 --> 00:22:28,900 +making 20 pages, you make one class. The 20 + +386 +00:22:28,900 --> 00:22:31,200 +methods required for the target, you make them as + +387 +00:22:31,200 --> 00:22:35,080 +20 methods. And each method is linked to a URL. + +388 +00:22:35,220 --> 00:22:39,150 +This is how we prepared the web service.We + +389 +00:22:39,150 --> 00:22:43,150 +prepared the server-side, right? Are you with me + +390 +00:22:43,150 --> 00:22:48,320 +or not? Ok. I will get by that I prepared it.The + +391 +00:22:48,320 --> 00:22:51,560 +client side, which we prepared on the server, we + +392 +00:22:51,560 --> 00:22:54,400 +want to get it from where? From the client For + +393 +00:22:54,400 --> 00:22:58,440 +example, you want to get a certain product and ID + +394 +00:22:58,440 --> 00:23:01,820 +You can simply make an HTTP request + +395 +00:23:01,820 --> 00:23:05,960 +programmatically You create a link and make a + +396 +00:23:05,960 --> 00:23:08,660 +request on the server and the server will return + +397 +00:23:08,660 --> 00:23:12,160 +it to youjson. Of course here this office by + +398 +00:23:12,160 --> 00:23:14,820 +itself, yes it returns the product, but when the + +399 +00:23:14,820 --> 00:23:16,800 +client takes it by itself, it turns it into json + +400 +00:23:16,800 --> 00:23:21,940 +and returns to the client what? Text. Okay? So you + +401 +00:23:21,940 --> 00:23:24,620 +can come to the mobile device, send the link and + +402 +00:23:24,620 --> 00:23:27,020 +it returns json to you and then you take the json + +403 +00:23:27,020 --> 00:23:30,160 +value and analyze it and extract the data. But + +404 +00:23:30,160 --> 00:23:34,150 +this process is also difficult. Because it will + +405 +00:23:34,150 --> 00:23:35,970 +force you to analyze it. Look at how many JSON + +406 +00:23:35,970 --> 00:23:38,710 +files you have to analyze. So they also made + +407 +00:23:38,710 --> 00:23:43,290 +libraries here. What are these libraries? You come + +408 +00:23:43,290 --> 00:23:45,470 +to this library, what does it tell you? It tells + +409 +00:23:45,470 --> 00:23:53,370 +you, just give me how the methods on the server + +410 +00:23:53,370 --> 00:23:56,190 +look like. So you go and tell the server that + +411 +00:23:56,190 --> 00:24:00,150 +there is a method called get product. And what do + +412 +00:24:00,150 --> 00:24:03,750 +you return?the product and this one takes the id + +413 +00:24:03,750 --> 00:24:07,270 +and there is a method that looks like this and + +414 +00:24:07,270 --> 00:24:08,670 +this is the url of the method that looks like this + +415 +00:24:08,670 --> 00:24:11,170 +so you give it the method that is required in the + +416 +00:24:11,170 --> 00:24:15,350 +server and the url or you even just give it the + +417 +00:24:15,350 --> 00:24:18,930 +url so what does it do? it goes and sees the + +418 +00:24:18,930 --> 00:24:21,690 +classes on the server and makes one like this + +419 +00:24:21,690 --> 00:24:25,840 +exactlyon the client means on the client this get, + +420 +00:24:25,940 --> 00:24:29,440 +did you see the class my service? it will work on + +421 +00:24:29,440 --> 00:24:33,540 +the client also a class called my service what + +422 +00:24:33,540 --> 00:24:36,120 +does it have? it has the same methods the first + +423 +00:24:36,120 --> 00:24:39,640 +one is called get product and the second one is + +424 +00:24:39,640 --> 00:24:42,920 +called get all products and the third one is + +425 +00:24:42,920 --> 00:24:45,980 +called get person the same methods on the server I + +426 +00:24:45,980 --> 00:24:46,800 +will show you here + +427 +00:24:49,640 --> 00:24:51,620 +On the basis of what? That when you execute a git + +428 +00:24:51,620 --> 00:24:54,800 +product by itself from inside without you knowing + +429 +00:24:54,800 --> 00:24:57,980 +it, it gets the URL and makes a request to the + +430 +00:24:57,980 --> 00:25:01,960 +server and gets the JSON of it and turns the JSON + +431 +00:25:01,960 --> 00:25:04,120 +into an object of the product type and tells you + +432 +00:25:04,120 --> 00:25:07,120 +to go ahead with this product. So what happens is + +433 +00:25:07,120 --> 00:25:10,840 +that you deal with the methods on the server and + +434 +00:25:10,840 --> 00:25:14,260 +claim them as if they are present somewhere on the + +435 +00:25:14,260 --> 00:25:18,040 +device itself. Who does this? The library. + +436 +00:25:20,960 --> 00:25:24,240 +And this is easy to do, why? Because this is a + +437 +00:25:24,240 --> 00:25:26,360 +method that makes an HTTP request from within it, + +438 +00:25:26,440 --> 00:25:29,060 +puts the link, sends it and gets the JSON We can + +439 +00:25:29,060 --> 00:25:32,380 +do it manually without this library But the idea + +440 +00:25:32,380 --> 00:25:35,640 +is that this class makes you deal with the server + +441 +00:25:35,640 --> 00:25:39,880 +and hides the details to make a request, get the + +442 +00:25:39,880 --> 00:25:42,800 +JSON and analyze it and call the methods on the + +443 +00:25:42,800 --> 00:25:45,180 +server as if these methods are present somewhere + +444 +00:25:45,970 --> 00:25:48,970 +on the device. Libraries, for example on mobile, + +445 +00:25:49,150 --> 00:25:54,330 +like Volley and Retrofit, these are famous + +446 +00:25:54,330 --> 00:25:57,710 +libraries in Android and Kotlin to make requests + +447 +00:25:57,710 --> 00:26:01,390 +on the ... this is its benefit like this, you give + +448 +00:26:01,390 --> 00:26:03,990 +him the links and he himself creates the class for + +449 +00:26:03,990 --> 00:26:06,190 +you which allows you to learn the methods on the + +450 +00:26:06,190 --> 00:26:09,770 +server as if they exist. This is the API that the + +451 +00:26:09,770 --> 00:26:14,640 +library does for you. These libraries And there's + +452 +00:26:14,640 --> 00:26:19,360 +also this thing called .. I forgot the famous + +453 +00:26:19,360 --> 00:26:21,500 +program so that you can try to make a request to + +454 +00:26:21,500 --> 00:26:24,600 +the .. The postman, exactly. The postman himself, + +455 +00:26:25,080 --> 00:26:28,160 +if you give him a link to the web service, he can + +456 +00:26:28,160 --> 00:26:31,560 +make a code for the entire client in whatever + +457 +00:26:31,560 --> 00:26:38,380 +language you want.Okay? Now, what does this have + +458 +00:26:38,380 --> 00:26:40,140 +to do with the proxy that we are talking about? + +459 +00:26:40,360 --> 00:26:42,180 +Did you notice that we did not say that in the + +460 +00:26:42,180 --> 00:26:44,280 +client-side, I create a class that is very similar + +461 +00:26:44,280 --> 00:26:48,300 +to the one in the server, and from within it, I + +462 +00:26:48,300 --> 00:26:50,300 +hide the details that it makes a connection to the + +463 +00:26:50,300 --> 00:26:52,240 +server and gives a request and gives a response + +464 +00:26:52,240 --> 00:26:57,360 +and so on? This is also what we call a proxy.So + +465 +00:26:57,360 --> 00:26:59,880 +the idea that I make a class similar to what is on + +466 +00:26:59,880 --> 00:27:03,620 +the server, API, and I call the method on the + +467 +00:27:03,620 --> 00:27:05,660 +server as if it is present on the local device, + +468 +00:27:05,780 --> 00:27:08,540 +this class is also considered to be a proxy + +469 +00:27:08,540 --> 00:27:13,680 +pattern. And this is the concept of remote method + +470 +00:27:13,680 --> 00:27:16,680 +invocation, that you call a method that is far + +471 +00:27:16,680 --> 00:27:19,240 +away as if this method is present on the local + +472 +00:27:19,240 --> 00:27:28,550 +machine.This is the client. Here it does remote + +473 +00:27:28,550 --> 00:27:31,950 +object implementation. The same object or code in + +474 +00:27:31,950 --> 00:27:34,170 +the client does its implementation here, but of + +475 +00:27:34,170 --> 00:27:37,920 +course there are detailsConnection, Response, + +476 +00:27:38,040 --> 00:27:40,540 +Request and Response are hidden from us. But in + +477 +00:27:40,540 --> 00:27:42,400 +the end, the shape of the object here is the same + +478 +00:27:42,400 --> 00:27:45,520 +shape as the one on the server. And this is one of + +479 +00:27:45,520 --> 00:27:49,480 +the applications of the proxy pattern. Here, of + +480 +00:27:49,480 --> 00:27:53,140 +course, it lists the types of proxies. We talked + +481 +00:27:53,140 --> 00:27:54,640 +about them, but now it has to classify them with + +482 +00:27:54,640 --> 00:27:57,480 +specific names. There is the virtual proxy. What + +483 +00:27:57,480 --> 00:28:00,760 +is the word virtual? Hypothetically, okay? Or it's + +484 +00:28:00,760 --> 00:28:03,800 +not true here. It's like, what does this virtual + +485 +00:28:03,800 --> 00:28:06,380 +proxy mean? Delaying the creation and + +486 +00:28:06,380 --> 00:28:10,860 +instantiation of expensive objects until need. + +487 +00:28:12,320 --> 00:28:14,840 +Like the proxy image that we made. Why is it + +488 +00:28:14,840 --> 00:28:16,700 +called virtual? Because the proxy image is not the + +489 +00:28:16,700 --> 00:28:20,480 +image. The image is what I'm wrapped inside. Okay? + +490 +00:28:20,840 --> 00:28:23,020 +Why did I do this? To delay the construction of + +491 +00:28:23,020 --> 00:28:26,600 +the object for the time I need. Okay? Remote + +492 +00:28:26,600 --> 00:28:31,030 +proxies.providing a local representation for an + +493 +00:28:31,030 --> 00:28:33,750 +object that it is in a different address space + +494 +00:28:33,750 --> 00:28:38,730 +which is like the idea of proxy that I use in the + +495 +00:28:38,730 --> 00:28:42,470 +connection on API on the server providing a local + +496 +00:28:42,470 --> 00:28:49,030 +representation for an object in a different space + +497 +00:28:49,030 --> 00:28:50,950 +what does it mean different space? on another + +498 +00:28:50,950 --> 00:28:55,840 +device this is very similar to in the classes on + +499 +00:28:55,840 --> 00:29:00,060 +the server. The goal is to deal with the methods + +500 +00:29:00,060 --> 00:29:02,260 +on the server as if they were on the local + +501 +00:29:02,260 --> 00:29:06,620 +machine. A common example is Java RMI. This is one + +502 +00:29:06,620 --> 00:29:10,540 +of the ways web services work in Java. The idea is + +503 +00:29:10,540 --> 00:29:12,920 +that the stop object, which is the object that I + +504 +00:29:12,920 --> 00:29:19,580 +created here,in the client, acts as a proxy, where + +505 +00:29:19,580 --> 00:29:22,840 +invoking methods on the stub would cause the stub + +506 +00:29:22,840 --> 00:29:25,300 +to communicate and invoke methods on a remote + +507 +00:29:25,300 --> 00:29:28,520 +object found on a different machine. Meaning that + +508 +00:29:28,520 --> 00:29:30,080 +when these methods are created from this class, + +509 +00:29:30,480 --> 00:29:33,780 +this object actually creates the methods on the + +510 +00:29:33,780 --> 00:29:37,130 +server. The last thing is protection proxies.which + +511 +00:29:37,130 --> 00:29:40,210 +is where a proxy controls access to real subject + +512 +00:29:40,210 --> 00:29:43,190 +methods by giving access to some objects while + +513 +00:29:43,190 --> 00:29:46,270 +denying access to others So when you start + +514 +00:29:46,270 --> 00:29:48,390 +controlling the access of methods to objects like + +515 +00:29:48,390 --> 00:29:50,670 +the example we saw methods that I can activate and + +516 +00:29:50,670 --> 00:29:52,610 +methods that I can hide this is considered a + +517 +00:29:52,610 --> 00:29:55,570 +protection proxy So these are the different uses + +518 +00:29:55,570 --> 00:30:01,920 +of proxy Now this example is the same exampleThe + +519 +00:30:01,920 --> 00:30:03,840 +image that we just saw has a slight difference. + +520 +00:30:04,060 --> 00:30:06,700 +Here it says that I have a high-resolution image. + +521 +00:30:06,840 --> 00:30:09,280 +This is like an image icon. It is a costly object. + +522 +00:30:09,740 --> 00:30:13,140 +Creating it takes time. Okay? This is from the + +523 +00:30:13,140 --> 00:30:17,540 +interface image. I made a proxy image, implemented + +524 +00:30:17,540 --> 00:30:20,000 +it to the interface and used it.The high + +525 +00:30:20,000 --> 00:30:32,120 +-resolution image in + +526 +00:30:32,120 --> 00:30:36,820 +the constructor calls loadLoad image is a costly + +527 +00:30:36,820 --> 00:30:40,060 +method. It is what carries the object to the + +528 +00:30:40,060 --> 00:30:43,160 +level. I want to delay the construction of the + +529 +00:30:43,160 --> 00:30:46,040 +constructor. Show image does not take time. + +530 +00:30:46,740 --> 00:30:48,660 +Because the method is actually carried in memory, + +531 +00:30:48,860 --> 00:30:52,500 +so show image displays it. Now, how can I delay + +532 +00:30:52,500 --> 00:30:55,260 +the creation of the high-resolution object? I will + +533 +00:30:55,260 --> 00:30:57,860 +create an object called ImageProxy that also + +534 +00:30:57,860 --> 00:31:01,560 +implements an image. Inside it, I have a high + +535 +00:31:01,560 --> 00:31:03,380 +-resolution image. I have yet to create this null. + +536 +00:31:04,500 --> 00:31:07,220 +And this is the path. Because when I create an + +537 +00:31:07,220 --> 00:31:09,560 +ImageProxy, it only sends me the path of the file + +538 +00:31:09,560 --> 00:31:11,640 +and stores it with it. But actually, what is this? + +539 +00:31:11,860 --> 00:31:13,620 +I have yet to create a null. + +540 +00:31:16,800 --> 00:31:18,740 +The high-resolution image has a show image and + +541 +00:31:18,740 --> 00:31:21,000 +this one also has a show image. Here in the show + +542 +00:31:21,000 --> 00:31:24,400 +image, in the moment I show the picture, I tell it + +543 +00:31:24,400 --> 00:31:27,840 +to go and run the high-resolution image. And then + +544 +00:31:27,840 --> 00:31:30,260 +I tell it to run the show image. So look, I + +545 +00:31:30,260 --> 00:31:31,820 +delayed the creation of the high-resolution image + +546 +00:31:31,820 --> 00:31:34,460 +from the constructor and left it only at the + +547 +00:31:34,460 --> 00:31:36,980 +execution of the show image. And this is the main + +548 +00:31:36,980 --> 00:31:39,520 +code that shows me the difference. Here I created + +549 +00:31:39,520 --> 00:31:43,760 +three image proxies. These, if I want, don't take + +550 +00:31:43,760 --> 00:31:47,080 +a load on the memory because I only send them + +551 +00:31:47,080 --> 00:31:51,240 +paths. In fact, the load happens on the memory + +552 +00:31:51,240 --> 00:31:53,520 +when I run Show Image, and this is not a problem + +553 +00:31:53,520 --> 00:31:56,860 +because it shows image after image. But on the + +554 +00:31:56,860 --> 00:31:59,080 +other hand, if I create high-resolution images + +555 +00:31:59,080 --> 00:32:01,700 +directly, this will load in the memory, so these + +556 +00:32:01,700 --> 00:32:04,020 +are costly methods because it will load the images + +557 +00:32:04,020 --> 00:32:07,650 +in the memory.The last point in the proxy will + +558 +00:32:07,650 --> 00:32:09,750 +separate you from the proxy pattern and some of + +559 +00:32:09,750 --> 00:32:12,430 +the previous design patterns that we took. For + +560 +00:32:12,430 --> 00:32:15,030 +example, we talked about the decorator. Let's + +561 +00:32:15,030 --> 00:32:16,610 +start with the one below. What is the difference + +562 +00:32:16,610 --> 00:32:19,070 +between the proxy and the decorator? Both have the + +563 +00:32:19,070 --> 00:32:21,550 +same principle of operation. An object wraps an + +564 +00:32:21,550 --> 00:32:23,010 +object inside, and both of them are of the same + +565 +00:32:23,010 --> 00:32:26,170 +type. But the goal is different. The decorator + +566 +00:32:26,170 --> 00:32:29,450 +added this functionality to control the object. + +567 +00:32:29,510 --> 00:32:31,350 +And this is the same thing that is present here. + +568 +00:32:31,730 --> 00:32:33,350 +Because there is another one that also wraps, + +569 +00:32:33,550 --> 00:32:36,270 +which is the adapter.The adapter wraps an object, + +570 +00:32:36,550 --> 00:32:40,730 +but why did we use the adapter? If I want the + +571 +00:32:40,730 --> 00:32:43,490 +client to use a certain library and I want him to + +572 +00:32:43,490 --> 00:32:46,950 +use another library B, should we go and change the + +573 +00:32:46,950 --> 00:32:50,490 +program to use B? He said, no, you create a new + +574 +00:32:50,490 --> 00:32:56,930 +class from type A and wrap the class from type B. + +575 +00:32:57,430 --> 00:33:00,590 +In fact, the adapter is also a wrapper, but it + +576 +00:33:00,590 --> 00:33:05,140 +takes another type. Okay? The type of adapter is + +577 +00:33:05,140 --> 00:33:06,720 +different from the type of object that is wrapped. + +578 +00:33:07,160 --> 00:33:11,140 +But in the proxy and decorator, the type of class, + +579 +00:33:11,740 --> 00:33:13,640 +which is the wrapper, whether it is decorator or + +580 +00:33:13,640 --> 00:33:16,080 +proxy, is the same type of object that is wrapped. + +581 +00:33:16,200 --> 00:33:17,600 +This is the difference here. This tells me that + +582 +00:33:17,600 --> 00:33:19,840 +the adapter implements a different interface to + +583 +00:33:19,840 --> 00:33:22,140 +the object it adapts. Okay, guys? + +584 +00:33:25,400 --> 00:33:29,360 +Okay, so we have completed the proxy pattern. We + +585 +00:33:29,360 --> 00:33:31,740 +will stop here for today. Okay, guys? + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/L301dxAqllc_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/L301dxAqllc_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..929b11da3ea422a04fa0bdd555f896fd0b9dbbc8 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/L301dxAqllc_postprocess.srt @@ -0,0 +1,3036 @@ +1 +00:00:05,090 --> 00:00:06,390 +In the name of God, Most Gracious, Most Merciful + +2 +00:00:06,390 --> 00:00:10,450 +In the previous lectures, we finished reviewing + +3 +00:00:10,450 --> 00:00:13,730 +the concepts of Object Oriented Programming The + +4 +00:00:13,730 --> 00:00:16,670 +last lecture is the previous lecture in which we + +5 +00:00:16,670 --> 00:00:19,250 +focused on the concept of interface And we took + +6 +00:00:19,250 --> 00:00:21,790 +some examples from which we should benefit from + +7 +00:00:21,790 --> 00:00:25,090 +more than one thing For example, through the + +8 +00:00:25,090 --> 00:00:27,250 +drawing program that we saw The first thing or the + +9 +00:00:27,250 --> 00:00:28,610 +first principle that we learned is to always + +10 +00:00:28,610 --> 00:00:32,390 +separate the design of GUI and the user interface + +11 +00:00:32,390 --> 00:00:36,730 +from the model which is the logic and algorithms + +12 +00:00:36,730 --> 00:00:39,050 +that work on the database to separate them + +13 +00:00:39,050 --> 00:00:40,950 +completely from each other so that there is work + +14 +00:00:40,950 --> 00:00:44,890 +for the backend and work for the frontend. Don't + +15 +00:00:44,890 --> 00:00:46,670 +separate them. This is what we did in the last + +16 +00:00:46,670 --> 00:00:47,270 +lecture. + +17 +00:00:50,020 --> 00:00:52,840 +By using an object from another class for the GUI + +18 +00:00:52,840 --> 00:00:54,800 +class, which is called DrawManager, and it + +19 +00:00:54,800 --> 00:00:58,040 +transforms the parameters on it. Another point is + +20 +00:00:58,040 --> 00:01:04,960 +that by using the interface, we developed the + +21 +00:01:04,960 --> 00:01:07,760 +program and reduced the need to modify it. Because + +22 +00:01:07,760 --> 00:01:10,660 +the DrawManager, which represents the backend or + +23 +00:01:10,660 --> 00:01:14,840 +model, started to interact with the shape,Instead + +24 +00:01:14,840 --> 00:01:18,260 +of dealing with multiple types, if you add new + +25 +00:01:18,260 --> 00:01:23,620 +shapes and change them, the draw manager will not + +26 +00:01:23,620 --> 00:01:26,280 +be affected by using the interface, which is + +27 +00:01:26,280 --> 00:01:28,660 +useful to combine things that do not exist in + +28 +00:01:28,660 --> 00:01:32,520 +common to benefit from the polymorphism. + +29 +00:01:35,270 --> 00:01:37,870 +We will quickly go through something that you took + +30 +00:01:37,870 --> 00:01:41,870 +for granted which is UML class diagrams In + +31 +00:01:41,870 --> 00:01:45,710 +general, what is the benefit of UML diagrams? The + +32 +00:01:45,710 --> 00:01:48,850 +benefit is that you can do planning or planning + +33 +00:01:48,850 --> 00:01:51,610 +for the project that you want to do There are + +34 +00:01:51,610 --> 00:01:53,770 +different types of UML diagrams For example, we + +35 +00:01:53,770 --> 00:01:56,430 +have the use case diagrams, right? The benefits of + +36 +00:01:56,430 --> 00:01:57,990 +them is that you can understand who are the main + +37 +00:01:57,990 --> 00:02:00,530 +actors in the application and what are the main + +38 +00:02:00,530 --> 00:02:01,830 +functionalities + +39 +00:02:05,320 --> 00:02:08,620 +The use case diagram is like an overview that + +40 +00:02:08,620 --> 00:02:10,960 +shows you what functions will be used by whom. + +41 +00:02:11,400 --> 00:02:13,760 +There is another UML diagram, which is the class + +42 +00:02:13,760 --> 00:02:16,300 +diagram, which shows you how the code is + +43 +00:02:16,300 --> 00:02:19,440 +structured. This is the most important thing in + +44 +00:02:19,440 --> 00:02:22,900 +this course. All this course is a class diagram. + +45 +00:02:23,320 --> 00:02:26,720 +Because we study code design. Okay? And this is + +46 +00:02:26,720 --> 00:02:28,580 +what we will focus on in this lecture. There are + +47 +00:02:28,580 --> 00:02:30,720 +other types of UML diagrams, such as sequence + +48 +00:02:30,720 --> 00:02:32,840 +diagrams.What is the benefit of the sequence + +49 +00:02:32,840 --> 00:02:35,300 +diagram? It shows the behavior, how the program + +50 +00:02:35,300 --> 00:02:37,740 +works. This part is sent to this one, and this one + +51 +00:02:37,740 --> 00:02:39,220 +is sent to this one, and this one responds to this + +52 +00:02:39,220 --> 00:02:42,200 +one. The class diagram does not show you the work. + +53 +00:02:42,880 --> 00:02:45,480 +Right or wrong? It does not show the program in + +54 +00:02:45,480 --> 00:02:48,600 +action. It only shows that this is the code and + +55 +00:02:48,600 --> 00:02:50,600 +this is the relationship between them.We are + +56 +00:02:50,600 --> 00:02:55,960 +working on code design and structure in class + +57 +00:02:55,960 --> 00:02:59,800 +diagram and our topic today is a quick review of + +58 +00:02:59,800 --> 00:03:04,700 +the class diagram Why? Because when you see the + +59 +00:03:04,700 --> 00:03:08,820 +design pattern, I will tell you how to draw it You + +60 +00:03:08,820 --> 00:03:10,800 +need to see the drawing, read it, and understand + +61 +00:03:10,800 --> 00:03:13,480 +how this drawing can be converted into code. + +62 +00:03:13,940 --> 00:03:17,500 +Nowadays, all kinds of diagrams, especially class + +63 +00:03:17,500 --> 00:03:20,160 +diagrams, why did they do it? Programmers can work + +64 +00:03:20,160 --> 00:03:22,800 +in different languages. Those who run PHP, those + +65 +00:03:22,800 --> 00:03:25,900 +who run on a framework, those who run Java, all + +66 +00:03:25,900 --> 00:03:28,500 +right? Each person has a different syntax. But in + +67 +00:03:28,500 --> 00:03:31,220 +the end, they came up with a unified drawing, to + +68 +00:03:31,220 --> 00:03:34,320 +see this drawing and understand how the code is + +69 +00:03:34,320 --> 00:03:36,720 +designed, regardless of the language of this + +70 +00:03:36,720 --> 00:03:36,940 +program. + +71 +00:03:42,420 --> 00:03:49,740 +The class diagram is a structural diagram, not + +72 +00:03:49,740 --> 00:03:52,580 +behavioral. Structure shows you the structure of + +73 +00:03:52,580 --> 00:03:55,160 +the application Behavior shows you the behavior of + +74 +00:03:55,160 --> 00:03:57,840 +the application, how it works The sequence and + +75 +00:03:57,840 --> 00:04:01,280 +activity diagrams show you how the flow of the + +76 +00:04:01,280 --> 00:04:05,240 +application works But the class diagram shows you + +77 +00:04:05,240 --> 00:04:09,870 +the structure of the codeit is a central modeling + +78 +00:04:09,870 --> 00:04:12,290 +technique that runs through nearly all object + +79 +00:04:12,290 --> 00:04:15,370 +oriented methods it is used in object oriented + +80 +00:04:15,370 --> 00:04:17,970 +programming languages that show the structure of + +81 +00:04:17,970 --> 00:04:23,590 +the code any class diagram consists of the + +82 +00:04:23,590 --> 00:04:27,270 +following things all of them or some of them there + +83 +00:04:27,270 --> 00:04:31,290 +is something called class the attributes inside + +84 +00:04:31,290 --> 00:04:36,230 +the class the operations which are the methodsOf + +85 +00:04:36,230 --> 00:04:38,590 +course, why did he name it operations? Because + +86 +00:04:38,590 --> 00:04:40,510 +programming languages have different names, some + +87 +00:04:40,510 --> 00:04:45,910 +are Java methods, some are Python functions, ok? + +88 +00:04:46,250 --> 00:04:48,450 +So he told us that if we put a name that pleases + +89 +00:04:48,450 --> 00:04:51,280 +everyone, what should we call it? Co-operations + +90 +00:04:51,280 --> 00:04:53,340 +and the most important thing is relationships, + +91 +00:04:53,660 --> 00:04:58,300 +relationships between classes, this is the + +92 +00:04:58,300 --> 00:05:01,740 +structure, how classes use each other and are + +93 +00:05:01,740 --> 00:05:04,180 +connected to each other, these relationships are + +94 +00:05:04,180 --> 00:05:06,840 +four types of relationships, association, + +95 +00:05:07,500 --> 00:05:12,480 +generalization, dependency and realizationand + +96 +00:05:12,480 --> 00:05:16,100 +there are some constraints that are present on the + +97 +00:05:16,100 --> 00:05:18,740 +drawing we will explain them in these points and + +98 +00:05:18,740 --> 00:05:22,240 +give examples of them how do we represent a class + +99 +00:05:22,240 --> 00:05:27,560 +in a diagram? square or rectangle? usually this + +100 +00:05:27,560 --> 00:05:29,720 +rectangle is divided into three parts the first + +101 +00:05:29,720 --> 00:05:32,380 +part is the class name and the second part is the + +102 +00:05:32,380 --> 00:05:34,760 +attributes and the third part is operations or + +103 +00:05:34,760 --> 00:05:39,550 +methods of course how do we put attributes?The + +104 +00:05:39,550 --> 00:05:42,590 +name of the attribute is Nuha with two dots. The + +105 +00:05:42,590 --> 00:05:45,250 +name of the attribute is Nuha with two dots. Ok? + +106 +00:05:49,510 --> 00:05:52,570 +Ok, this shows you that the first part is class + +107 +00:05:52,570 --> 00:05:56,440 +name. In the second part, we put the attributes in + +108 +00:05:56,440 --> 00:06:00,000 +this way, each attribute and name, or type, pardon + +109 +00:06:00,000 --> 00:06:03,820 +me, okay? And sometimes, these are additional + +110 +00:06:03,820 --> 00:06:06,020 +details, I might need to show them or not, + +111 +00:06:06,320 --> 00:06:10,180 +depending on the application type, which is the + +112 +00:06:10,180 --> 00:06:14,100 +accessibility or scope of the attributes, okay? + +113 +00:06:14,640 --> 00:06:17,640 +The negative means that it is private, the + +114 +00:06:17,640 --> 00:06:19,880 +positive means public, and this hash is protected. + +115 +00:06:22,080 --> 00:06:28,520 +And these are the names of the operations Let's + +116 +00:06:28,520 --> 00:06:31,040 +look at this example because it also represents a + +117 +00:06:31,040 --> 00:06:36,480 +class It's not necessary to show all the parts. + +118 +00:06:37,360 --> 00:06:39,900 +Sometimes it's more meaningful to show the + +119 +00:06:39,900 --> 00:06:43,800 +relations between classesSo the details inside + +120 +00:06:43,800 --> 00:06:49,640 +don't need to be shown For example, + +121 +00:06:49,780 --> 00:06:52,000 +this represents a class, this is its name, I + +122 +00:06:52,000 --> 00:06:53,180 +didn't put any attributes, it doesn't mean that + +123 +00:06:53,180 --> 00:06:56,040 +there are no attributes, it doesn't mean that it + +124 +00:06:56,040 --> 00:07:00,360 +should be shown, because I put these operationsOf + +125 +00:07:00,360 --> 00:07:03,000 +course, how does the operation get written? I + +126 +00:07:03,000 --> 00:07:05,520 +write the name of the operation, then two dots, + +127 +00:07:05,760 --> 00:07:08,100 +what are the parameters that it takes? Which is + +128 +00:07:08,100 --> 00:07:10,000 +what is written? The name of the parameter, and + +129 +00:07:10,000 --> 00:07:13,660 +two dots, Null. Okay? Always the type that we put + +130 +00:07:13,660 --> 00:07:17,580 +after. If this value returns a value, okay? What + +131 +00:07:17,580 --> 00:07:20,440 +returns this value, where do we put it? In the + +132 +00:07:20,440 --> 00:07:25,100 +end, okay? It means that Java is the only language + +133 +00:07:25,100 --> 00:07:29,460 +that puts the return type in the beginning, okay? + +134 +00:07:31,850 --> 00:07:34,890 +For example, Kotlin and Swift are put in the end, + +135 +00:07:35,050 --> 00:07:36,290 +and Python and Pythonbot are put in the beginning. + +136 +00:07:44,310 --> 00:07:46,210 +The class in the end is represented by a square + +137 +00:07:46,210 --> 00:07:49,790 +You can find the details, you can't find the + +138 +00:07:49,790 --> 00:07:52,790 +details, depending on the drawing Suppose I have + +139 +00:07:52,790 --> 00:07:55,070 +many classes, I want to put in each class what + +140 +00:07:55,070 --> 00:07:56,630 +attributes and methods they have Sometimes it + +141 +00:07:56,630 --> 00:07:58,850 +doesn't matter to me to show these things I care + +142 +00:07:58,850 --> 00:08:01,670 +about the relationships between them So sometimes + +143 +00:08:01,670 --> 00:08:04,150 +you find the class is made only of what? Names, + +144 +00:08:04,230 --> 00:08:06,270 +sometimes they are made like this and they are + +145 +00:08:06,270 --> 00:08:09,410 +left empty Sometimes it only shows the methods, + +146 +00:08:09,490 --> 00:08:11,010 +sometimes it only shows the attributes, sometimes + +147 +00:08:11,010 --> 00:08:14,620 +it shows them all according to what you want to + +148 +00:08:14,620 --> 00:08:16,860 +apply according to the space available to you for + +149 +00:08:16,860 --> 00:08:21,800 +drawing this is for the class, now we come to the + +150 +00:08:21,800 --> 00:08:24,220 +second important part for us which is + +151 +00:08:24,220 --> 00:08:27,560 +relationships relationships that exist between + +152 +00:08:27,560 --> 00:08:30,200 +classes relationships are four types as I said + +153 +00:08:30,200 --> 00:08:34,000 +associations, dependencies, generalization and + +154 +00:08:34,000 --> 00:08:34,440 +realization + +155 +00:08:37,130 --> 00:08:38,470 +Okay, let's go to the first type of relationship, + +156 +00:08:38,650 --> 00:08:40,510 +which is the relationship of association What is + +157 +00:08:40,510 --> 00:08:43,710 +meant by association relationship? In short, when + +158 +00:08:43,710 --> 00:08:47,090 +you have a class and inside it is an attribute of + +159 +00:08:47,090 --> 00:08:52,050 +another class, this is an association relationship + +160 +00:08:52,050 --> 00:08:57,810 +For example, when you find for example a class + +161 +00:08:57,810 --> 00:09:01,450 +instructor, what does instructor mean? The + +162 +00:09:01,450 --> 00:09:05,570 +teacher, okay, and inside it is a reference or + +163 +00:09:05,570 --> 00:09:09,520 +object of a typecourse. This is an attribute for + +164 +00:09:09,520 --> 00:09:11,580 +the instructor, right or wrong? But this is from + +165 +00:09:11,580 --> 00:09:15,000 +another class, okay? We say that this relationship + +166 +00:09:15,000 --> 00:09:17,520 +between them is what? Association. We simply + +167 +00:09:17,520 --> 00:09:23,440 +represent it as this is the instructor and + +168 +00:09:23,440 --> 00:09:27,650 +this is the courseand you make a relationship + +169 +00:09:27,650 --> 00:09:30,430 +between them like a arrow like this you see that + +170 +00:09:30,430 --> 00:09:34,710 +the end of the arrow is important this is the + +171 +00:09:34,710 --> 00:09:37,710 +relationship that we call associative if you find + +172 +00:09:37,710 --> 00:09:39,890 +a drawing like this you will understand that this + +173 +00:09:39,890 --> 00:09:44,050 +class is using a reference or object from the + +174 +00:09:44,050 --> 00:09:48,530 +class course now here for example in the example + +175 +00:09:48,530 --> 00:09:51,930 +that we have we have a class instructor and they + +176 +00:09:51,930 --> 00:09:56,590 +entered a list of what? studentsAlso regardless of + +177 +00:09:56,590 --> 00:09:59,410 +whether it is one or a group, in the end it is an + +178 +00:09:59,410 --> 00:10:02,150 +association because the instructor uses objects + +179 +00:10:02,150 --> 00:10:05,210 +from which he is a student and how does he + +180 +00:10:05,210 --> 00:10:08,670 +represent it? He represents it like this, this is + +181 +00:10:08,670 --> 00:10:11,710 +the instructor and this is the student + +182 +00:10:14,520 --> 00:10:16,820 +It is preferable to put it in the direction of the + +183 +00:10:16,820 --> 00:10:21,180 +arrow to see who is using who So if the instructor + +184 +00:10:21,180 --> 00:10:23,520 +is using an object from the student, you put it in + +185 +00:10:23,520 --> 00:10:25,340 +the direction of the arrow like that, okay? + +186 +00:10:27,300 --> 00:10:29,680 +Sometimes the relationship is exchangeable, what + +187 +00:10:29,680 --> 00:10:33,100 +is exchangeable? So maybe the instructor inside + +188 +00:10:33,100 --> 00:10:37,540 +the class is using a list of students Also, if you + +189 +00:10:37,540 --> 00:10:39,580 +open the code of the class student, you will find + +190 +00:10:39,580 --> 00:10:42,600 +a reference to whom? To the instructor. In this + +191 +00:10:42,600 --> 00:10:44,260 +case, this is an exchangeable memory, it can put + +192 +00:10:44,260 --> 00:10:47,040 +two arrows on both sides and it can not put any + +193 +00:10:47,040 --> 00:10:49,320 +arrow to show that this relationship has no + +194 +00:10:49,320 --> 00:10:53,240 +exchange. In short, any class that uses a + +195 +00:10:53,240 --> 00:10:55,980 +reference or object from another class, this is + +196 +00:10:55,980 --> 00:10:59,140 +called an association relationship. For example, + +197 +00:10:59,280 --> 00:11:03,080 +in the last lecture, we made a class GUI, right or + +198 +00:11:03,080 --> 00:11:05,200 +wrong? And we made a class for the Draw Manager. + +199 +00:11:06,410 --> 00:11:08,370 +and the draw manager that we used from within who? + +200 +00:11:09,410 --> 00:11:13,070 +GUI. So here in this case we say that GUI and draw + +201 +00:11:13,070 --> 00:11:17,330 +manager have a relationship, association. Because + +202 +00:11:17,330 --> 00:11:19,630 +sometimes I tell you, you can write on the arrow, + +203 +00:11:20,350 --> 00:11:22,090 +an explanation that shows you what kind of + +204 +00:11:22,090 --> 00:11:24,150 +relationship it is, that the instructor instructs + +205 +00:11:24,150 --> 00:11:25,690 +the student. This is optional. + +206 +00:11:28,940 --> 00:11:31,520 +to multiplicity we are still in the relationship + +207 +00:11:31,520 --> 00:11:34,880 +of association from the optional things that you + +208 +00:11:34,880 --> 00:11:38,600 +can add to the relationship that exists in the + +209 +00:11:38,600 --> 00:11:43,780 +relationship of association numbers show how many + +210 +00:11:43,780 --> 00:11:47,840 +objects I use from the other class for example + +211 +00:11:47,840 --> 00:11:52,260 +let's go back to this example the instructor uses + +212 +00:11:52,260 --> 00:11:55,710 +an object from which course how many objects does + +213 +00:11:55,710 --> 00:11:58,930 +it use? one so we say here this is the instructor + +214 +00:11:58,930 --> 00:12:02,770 +and this is the course and then I put one here did + +215 +00:12:02,770 --> 00:12:05,730 +you see where I put one? so the instructor uses + +216 +00:12:05,730 --> 00:12:16,130 +course one okay if this is present as a list this + +217 +00:12:16,130 --> 00:12:19,370 +is present as a list and we call this courses okay + +218 +00:12:19,370 --> 00:12:24,320 +we can say for example from zero to a star, or + +219 +00:12:24,320 --> 00:12:25,280 +from one to the next to the next to the next to + +220 +00:12:25,280 --> 00:12:28,120 +the next to the next to the next to the next to + +221 +00:12:28,120 --> 00:12:28,520 +the next to the next to the next to the next to + +222 +00:12:28,520 --> 00:12:29,460 +the next to the next to the next to the next to + +223 +00:12:29,460 --> 00:12:32,680 +the next to the next to the next to the next to + +224 +00:12:32,680 --> 00:12:33,220 +the next to the next to the next to the next to + +225 +00:12:33,220 --> 00:12:37,640 +the next to the next to the next to the next to + +226 +00:12:37,640 --> 00:12:37,880 +the next to the next to the next to the next to + +227 +00:12:37,880 --> 00:12:38,100 +the next to the next to the next to the next to + +228 +00:12:38,100 --> 00:12:41,320 +the next to the next to the next to the next to + +229 +00:12:41,320 --> 00:12:42,780 +the next to the next to the next to the next to + +230 +00:12:42,780 --> 00:12:43,640 +the next to the next to the next to the next to + +231 +00:12:43,640 --> 00:12:48,240 +the next to the next to the next to + +232 +00:12:48,240 --> 00:12:52,620 +the next to the next to the because we have + +233 +00:12:52,620 --> 00:12:55,780 +instructor and student and this relation is + +234 +00:12:55,780 --> 00:13:01,020 +association ok? now how does the code look like? + +235 +00:13:01,080 --> 00:13:02,840 +what does the instructor have inside? who says + +236 +00:13:02,840 --> 00:13:05,780 +what? list of students why? because what is + +237 +00:13:05,780 --> 00:13:09,220 +written here on the instructor? one star this is a + +238 +00:13:09,220 --> 00:13:10,840 +negative number on who? because the instructor + +239 +00:13:10,840 --> 00:13:15,620 +uses one star from the student and now since the + +240 +00:13:15,620 --> 00:13:18,120 +number is on the other side it becomes clear that + +241 +00:13:18,120 --> 00:13:19,880 +there is also an exchange relation which means + +242 +00:13:19,880 --> 00:13:24,610 +that the student there is a list of instructors + +243 +00:13:24,610 --> 00:13:28,410 +inside it and this is normal, a student in a + +244 +00:13:28,410 --> 00:13:29,870 +university does not have one teacher, he has more + +245 +00:13:29,870 --> 00:13:32,070 +than one teacher, more than one subject there is + +246 +00:13:32,070 --> 00:13:35,070 +also a list of instructors because of this + +247 +00:13:35,070 --> 00:13:37,910 +example, I also have two classes, which are the + +248 +00:13:37,910 --> 00:13:40,290 +student and the course and there is also a + +249 +00:13:40,290 --> 00:13:42,910 +relationship between them, why? through the + +250 +00:13:42,910 --> 00:13:45,990 +numbers I know here the student has a list of + +251 +00:13:45,990 --> 00:13:49,210 +what?Of course, and I'm telling you that this list + +252 +00:13:49,210 --> 00:13:51,110 +must not decrease the number of courses in it from + +253 +00:13:51,110 --> 00:13:55,550 +three and the opposite is that the course has a + +254 +00:13:55,550 --> 00:13:58,890 +list of students and the number of students that + +255 +00:13:58,890 --> 00:14:00,830 +will be in the course must not decrease from + +256 +00:14:00,830 --> 00:14:04,110 +twelve, this is called multiplicity and this is + +257 +00:14:04,110 --> 00:14:07,110 +optional, that is, you may not find it on the + +258 +00:14:07,110 --> 00:14:07,870 +drawing, okay? + +259 +00:14:12,070 --> 00:14:14,490 +This shows you the interpretation of the numbers + +260 +00:14:14,490 --> 00:14:19,170 +of multiplicity 1 means exactly one, zero to a + +261 +00:14:19,170 --> 00:14:23,650 +star means one or more, one to a star means one or + +262 +00:14:23,650 --> 00:14:30,050 +more, zero to one means one or zero, and so on. We + +263 +00:14:30,050 --> 00:14:33,130 +are still working on the relationship of + +264 +00:14:33,130 --> 00:14:33,650 +association. + +265 +00:14:39,610 --> 00:14:41,270 +it is preferable that in the relation of + +266 +00:14:41,270 --> 00:14:44,810 +association you put the arrow pointing towards the + +267 +00:14:44,810 --> 00:14:48,310 +relation for example here in this case the unit is + +268 +00:14:48,310 --> 00:14:51,570 +wrong to be here because the unit what does it + +269 +00:14:51,570 --> 00:14:53,670 +mean? I don't understand why it is different but + +270 +00:14:53,670 --> 00:14:55,370 +here look towards the arrow where is it going? + +271 +00:14:56,130 --> 00:14:58,310 +towards the role you will understand that I have a + +272 +00:14:58,310 --> 00:15:03,070 +class car which has inside it a list of roles and + +273 +00:15:03,070 --> 00:15:07,010 +at least there should be two objects in this list + +274 +00:15:11,990 --> 00:15:13,990 +Okay, we are still working in any kind of + +275 +00:15:13,990 --> 00:15:16,470 +relationship, association, okay? Sometimes you + +276 +00:15:16,470 --> 00:15:21,090 +find a relationship like this, guys Okay? You can + +277 +00:15:21,090 --> 00:15:23,770 +find for example the class employee, the designer, + +278 +00:15:25,010 --> 00:15:28,950 +okay? And he made you an agreement like this Okay? + +279 +00:15:29,790 --> 00:15:32,790 +What does this mean? I understand that the class + +280 +00:15:32,790 --> 00:15:37,150 +employee has inside him ... No, I didn't say list, + +281 +00:15:37,310 --> 00:15:40,980 +how did you know it's a list?The multiplicity is + +282 +00:15:40,980 --> 00:15:43,300 +what tells you if it is a list or not. But what I + +283 +00:15:43,300 --> 00:15:46,400 +understand is that the employee has a reference to + +284 +00:15:46,400 --> 00:15:49,160 +the employee, also from the type of employee. For + +285 +00:15:49,160 --> 00:15:51,800 +example, this is the class employee. + +286 +00:15:53,820 --> 00:15:56,280 +This is how you imagine the code. If you open it, + +287 +00:15:56,860 --> 00:16:01,200 +you will find here for example employee. E for + +288 +00:16:01,200 --> 00:16:04,490 +example. And they will ask, why did the class use + +289 +00:16:04,490 --> 00:16:06,630 +objects from another class? Where did this happen + +290 +00:16:06,630 --> 00:16:10,570 +to us? For example, + +291 +00:16:10,910 --> 00:16:13,930 +an employee with a manager Yes, exactly. For + +292 +00:16:13,930 --> 00:16:16,250 +example, it could be a class employee. Who is his + +293 +00:16:16,250 --> 00:16:21,570 +manager? What kind of manager is he? Employee + +294 +00:16:21,570 --> 00:16:26,630 +Another example here, the course has + +295 +00:16:26,630 --> 00:16:30,530 +prerequisites + +296 +00:16:30,530 --> 00:16:32,860 +in itThe requirements of the course. This is the + +297 +00:16:32,860 --> 00:16:35,120 +class course. It has a list of course. What are + +298 +00:16:35,120 --> 00:16:36,880 +the requirements of the course? What are the + +299 +00:16:36,880 --> 00:16:40,460 +requirements of the course? In the data structure, + +300 +00:16:40,600 --> 00:16:44,020 +when you create a linked list or tree, the node + +301 +00:16:44,020 --> 00:16:49,200 +itself has children and parent. The parent node + +302 +00:16:49,200 --> 00:16:52,080 +and the children are also nodes. This is the + +303 +00:16:52,080 --> 00:16:54,160 +relationship between the class and the child. + +304 +00:16:58,490 --> 00:17:00,910 +because if there are numbers in it, it will tell + +305 +00:17:00,910 --> 00:17:04,750 +you to use one number or more. For example, in + +306 +00:17:04,750 --> 00:17:07,290 +this course, as long as there is an arrow, it + +307 +00:17:07,290 --> 00:17:10,330 +means that there are objects inside the course + +308 +00:17:10,330 --> 00:17:14,410 +called course. What is their number? From zero to + +309 +00:17:14,410 --> 00:17:16,050 +three. You understand that this is a list of + +310 +00:17:16,050 --> 00:17:19,990 +courses. This is a list or array. This is the same + +311 +00:17:19,990 --> 00:17:24,310 +thing with the employee.Less of employees in it. + +312 +00:17:24,530 --> 00:17:28,590 +Anyway, self-association is also part of the + +313 +00:17:28,590 --> 00:17:30,130 +relationship of association. Until now, we have + +314 +00:17:30,130 --> 00:17:32,050 +been working on the relationship of association. + +315 +00:17:35,270 --> 00:17:37,570 +Okay, we are still working on the relationship of + +316 +00:17:37,570 --> 00:17:39,630 +association, that an object uses another object + +317 +00:17:39,630 --> 00:17:41,970 +from another class. I say that the relationship of + +318 +00:17:41,970 --> 00:17:44,970 +association can also be of two types. It can be + +319 +00:17:44,970 --> 00:17:48,890 +the relationship of aggregation or composition. + +320 +00:17:49,840 --> 00:17:52,780 +And it remains an association What separates them + +321 +00:17:52,780 --> 00:17:54,420 +from each other? What is the word aggregate? + +322 +00:17:55,880 --> 00:17:58,440 +Tajmiyya Tajmiyya means that there are things that + +323 +00:17:58,440 --> 00:18:01,720 +are ready and I just take them and collect them In + +324 +00:18:01,720 --> 00:18:04,500 +short, did you find this example? Look at it with + +325 +00:18:04,500 --> 00:18:06,980 +me I always understand the relationship of + +326 +00:18:06,980 --> 00:18:10,300 +association, why? Because the car has two objects + +327 +00:18:10,300 --> 00:18:12,300 +inside it, from whom? This is an engine and this + +328 +00:18:12,300 --> 00:18:15,460 +is what? Transmission So I always understand that + +329 +00:18:15,460 --> 00:18:20,510 +I have a car and I have here this is the engine + +330 +00:18:20,510 --> 00:18:26,650 +and here is another class it is called + +331 +00:18:26,650 --> 00:18:31,490 +transmission and + +332 +00:18:31,490 --> 00:18:33,830 +there is an arrow like this and an arrow like + +333 +00:18:33,830 --> 00:18:37,110 +this, right? there are objects of different sizes, + +334 +00:18:37,470 --> 00:18:40,450 +okay? regardless of the number of objects, 3 or 4, + +335 +00:18:40,510 --> 00:18:44,130 +this is related to what?Association, that this + +336 +00:18:44,130 --> 00:18:45,510 +person is using an object from the engine and that + +337 +00:18:45,510 --> 00:18:47,830 +person is using an object from the transmission + +338 +00:18:47,830 --> 00:18:50,390 +Ok, what is the relation between aggregation and + +339 +00:18:50,390 --> 00:18:52,650 +aggregation? Aggregation says that these objects + +340 +00:18:52,650 --> 00:18:56,530 +were created here or they came from outside What + +341 +00:18:56,530 --> 00:18:57,770 +does it mean that they came from outside? It means + +342 +00:18:57,770 --> 00:19:01,030 +that these engines and transmissions were created + +343 +00:19:01,030 --> 00:19:05,570 +from the main and passed to the car through the + +344 +00:19:05,570 --> 00:19:09,640 +constructor or set method Are you with me or not, + +345 +00:19:09,720 --> 00:19:16,200 +guys? For example, I came here. Look with me. What + +346 +00:19:16,200 --> 00:19:20,260 +are the values of these references so far? None. + +347 +00:19:20,620 --> 00:19:24,720 +Right or wrong? Because what is this? This is a + +348 +00:19:24,720 --> 00:19:26,360 +constructor. A constructor is something that takes + +349 +00:19:26,360 --> 00:19:29,700 +an object from the engine and an object from the + +350 +00:19:29,700 --> 00:19:33,600 +transmission. To initialize whom?No, these two. + +351 +00:19:33,940 --> 00:19:36,500 +So, was the engine and the transmission built + +352 +00:19:36,500 --> 00:19:40,560 +inside the car or built outside? And they were + +353 +00:19:40,560 --> 00:19:43,960 +trained to... Yes, they were built outside and + +354 +00:19:43,960 --> 00:19:46,020 +they were trained. In this case, we say that the + +355 +00:19:46,020 --> 00:19:50,520 +car is only for assembly. Okay? It also means that + +356 +00:19:50,520 --> 00:19:55,210 +if this object dies, If you cancel the car, the + +357 +00:19:55,210 --> 00:19:57,470 +engine and the transmission will still be there. + +358 +00:19:57,830 --> 00:20:02,570 +So how will this code work? I will create an + +359 +00:20:02,570 --> 00:20:05,850 +engine in the main. E is equal to new engine. + +360 +00:20:06,670 --> 00:20:09,610 +Right? This is in the main. And I will create a + +361 +00:20:09,610 --> 00:20:17,010 +transmission. T is equal to new transmission. + +362 +00:20:18,210 --> 00:20:22,130 +And then I will create a car. C + +363 +00:20:25,410 --> 00:20:30,130 +is equal to the new car and I separate it from E + +364 +00:20:30,130 --> 00:20:34,230 +and T this is actually running the code which + +365 +00:20:34,230 --> 00:20:37,250 +means that if I remove this object these will not + +366 +00:20:37,250 --> 00:20:39,450 +affect each other which means that the car also + +367 +00:20:39,450 --> 00:20:47,070 +only runs aggregates this is the + +368 +00:20:47,070 --> 00:20:48,890 +car this is the engine + +369 +00:20:52,380 --> 00:20:57,160 +In terms of aggregation, the part can exist + +370 +00:20:57,160 --> 00:21:00,520 +independently from the aggregate. + +371 +00:21:08,050 --> 00:21:09,550 +Because this relationship is represented as + +372 +00:21:09,550 --> 00:21:12,110 +follows This is the car, this is the engine, and + +373 +00:21:12,110 --> 00:21:13,710 +this is the transmission And the relationship + +374 +00:21:13,710 --> 00:21:15,810 +between them is an association But there is + +375 +00:21:15,810 --> 00:21:19,050 +something that remains optional You can show it + +376 +00:21:19,050 --> 00:21:21,230 +sometimes, sometimes you can not show it It is + +377 +00:21:21,230 --> 00:21:23,930 +this specific thing, you see it? A specific vacuum + +378 +00:21:23,930 --> 00:21:27,890 +This is what you understand from it That it is an + +379 +00:21:27,890 --> 00:21:29,830 +association relationship The car uses the engine + +380 +00:21:29,830 --> 00:21:31,810 +and the transmission But these engines and + +381 +00:21:31,810 --> 00:21:35,830 +transmissions were not built inside the car How + +382 +00:21:35,830 --> 00:21:38,620 +did you understand this? From a certain + +383 +00:21:38,620 --> 00:21:42,520 +relationship, ok guys? Now, the second type, which + +384 +00:21:42,520 --> 00:21:45,100 +is the relationship of composition Which is what? + +385 +00:21:45,160 --> 00:21:50,540 +What did I do? Same class, same example Car uses + +386 +00:21:50,540 --> 00:21:52,120 +an object from engine and transmission, which is + +387 +00:21:52,120 --> 00:21:54,560 +the relationship of association But these two, I + +388 +00:21:54,560 --> 00:21:56,080 +didn't go through them in the constructor, I went, + +389 +00:21:56,120 --> 00:22:01,840 +what did I do here? New This became composition, I + +390 +00:22:01,840 --> 00:22:03,680 +mean, did the car come from .. what is + +391 +00:22:03,680 --> 00:22:08,830 +composition? Composition, ok?It means that if the + +392 +00:22:08,830 --> 00:22:13,470 +car dies, they die with it. They live and die as a + +393 +00:22:13,470 --> 00:22:20,450 +whole. It is an association, but the objects that + +394 +00:22:20,450 --> 00:22:25,590 +I use were created within the class itself.Who is + +395 +00:22:25,590 --> 00:22:28,690 +better, composition or aggregation? It depends on + +396 +00:22:28,690 --> 00:22:32,130 +the application. But in general, we prefer + +397 +00:22:32,130 --> 00:22:34,250 +aggregation. Why? Because it shows the meaning in + +398 +00:22:34,250 --> 00:22:37,210 +the design patterns in front of us. And concepts + +399 +00:22:37,210 --> 00:22:42,090 +like dependency, injection and others. How do we + +400 +00:22:42,090 --> 00:22:43,230 +represent the relationship between composition and + +401 +00:22:43,230 --> 00:22:44,030 +aggregation? It is the relationship of + +402 +00:22:44,030 --> 00:22:46,710 +association. It is a straight line. But what does + +403 +00:22:46,710 --> 00:22:50,590 +the determinant put? A dot. So this way you + +404 +00:22:50,590 --> 00:22:53,110 +understand that the car uses an object from engine + +405 +00:22:53,110 --> 00:22:54,970 +and transmission and that these objects were built + +406 +00:22:54,970 --> 00:22:58,050 +inside the car Did you get these things? + +407 +00:23:03,310 --> 00:23:07,730 +Now this + +408 +00:23:07,730 --> 00:23:13,130 +is another example about association Look at this + +409 +00:23:13,130 --> 00:23:18,820 +example I have a class called patient recordWhat + +410 +00:23:18,820 --> 00:23:22,240 +does it use inside? An object called patient and a + +411 +00:23:22,240 --> 00:23:22,920 +list of what? + +412 +00:23:25,740 --> 00:23:28,940 +Consultation, okay? What are these? What is this? + +413 +00:23:29,860 --> 00:23:32,660 +Constructor, I give him a patient. Because there + +414 +00:23:32,660 --> 00:23:34,960 +are relationships, associations, from whom to + +415 +00:23:34,960 --> 00:23:40,240 +whom?The patient record and the patient is related + +416 +00:23:40,240 --> 00:23:42,520 +to association, right? And also between the + +417 +00:23:42,520 --> 00:23:45,900 +patient record and consultation, this is related + +418 +00:23:45,900 --> 00:23:50,700 +to association. Okay, is it aggregation or + +419 +00:23:50,700 --> 00:23:53,000 +composition? Aggregation, because it doesn't + +420 +00:23:53,000 --> 00:23:55,600 +matter. Is there a U here? No, because this is + +421 +00:23:55,600 --> 00:23:57,060 +what represents the relationship, I make it like + +422 +00:23:57,060 --> 00:23:59,980 +this.this is patient record and this is + +423 +00:23:59,980 --> 00:24:02,800 +consultation and patient and you put an arrow and + +424 +00:24:02,800 --> 00:24:06,140 +here you put a sign for a certain thing of course + +425 +00:24:06,140 --> 00:24:09,600 +if you don't put the arrow and you put the + +426 +00:24:09,600 --> 00:24:11,560 +multiplicity of the numbers you will understand + +427 +00:24:11,560 --> 00:24:13,480 +that it is an interchangeable relationship which + +428 +00:24:13,480 --> 00:24:16,280 +means that the patient uses an object from the + +429 +00:24:16,280 --> 00:24:20,300 +patient and the patient also uses an object from + +430 +00:24:20,300 --> 00:24:24,710 +the patient recordPatient record uses a list of + +431 +00:24:24,710 --> 00:24:27,450 +consultations and the consultation has a reference + +432 +00:24:27,450 --> 00:24:31,210 +to whom? To the patient record The idea is that + +433 +00:24:31,210 --> 00:24:33,650 +you want to see the drawing and you want to + +434 +00:24:33,650 --> 00:24:40,750 +imagine the code directly The second + +435 +00:24:40,750 --> 00:24:45,950 +example is part of GUI Class window has a scroll + +436 +00:24:45,950 --> 00:24:49,390 +bar, title bar and a list of menusOkay, what is + +437 +00:24:49,390 --> 00:24:53,930 +this? Constructor. He created all of these. This + +438 +00:24:53,930 --> 00:24:56,290 +is also related to association. The window has a + +439 +00:24:56,290 --> 00:24:58,930 +relation with three classes, including the school + +440 +00:24:58,930 --> 00:25:03,790 +bar, the title bar and the menu. Okay? But what is + +441 +00:25:03,790 --> 00:25:07,250 +the relation? Composition. This window has a + +442 +00:25:07,250 --> 00:25:10,240 +relation with these three classes. Of course these + +443 +00:25:10,240 --> 00:25:12,400 +have attributes, but now because I'm explaining + +444 +00:25:12,400 --> 00:25:13,660 +the meaning of the relationship that appeared + +445 +00:25:13,660 --> 00:25:16,100 +inside the class And this is the relationship + +446 +00:25:16,100 --> 00:25:18,660 +between them, and notice what he did here, + +447 +00:25:19,160 --> 00:25:24,380 +composition Yes, + +448 +00:25:24,540 --> 00:25:25,880 +it is supposed that as long as there is an arrow, + +449 +00:25:26,740 --> 00:25:32,180 +he did not put the number H here Okay, we finished + +450 +00:25:32,180 --> 00:25:34,580 +the first relationship, which is the relationship + +451 +00:25:34,580 --> 00:25:37,790 +of what? AssociationBecause there is a similar + +452 +00:25:37,790 --> 00:25:41,310 +relation called Dependency Relation And it is very + +453 +00:25:41,310 --> 00:25:48,030 +short, okay? It is an object that uses another + +454 +00:25:48,030 --> 00:25:50,370 +object from another class, but on the level of the + +455 +00:25:50,370 --> 00:25:54,010 +method, not on the level of the attributes of the + +456 +00:25:54,010 --> 00:25:56,750 +class itself, okay? So here, for example, you + +457 +00:25:56,750 --> 00:25:58,450 +understand that you have a class called Course + +458 +00:25:58,450 --> 00:26:03,880 +ScheduleOkay, and we have a class called course + +459 +00:26:03,880 --> 00:26:06,800 +Now, there is a relationship between them, but the + +460 +00:26:06,800 --> 00:26:10,020 +line is crossed, not inheritance Dependency, as we + +461 +00:26:10,020 --> 00:26:13,180 +call it What does it mean? It means that the + +462 +00:26:13,180 --> 00:26:15,120 +course schedule uses an object from the course, + +463 +00:26:15,220 --> 00:26:17,720 +but on the level of a method Look, there is a + +464 +00:26:17,720 --> 00:26:21,940 +method called add What does it take? Course And + +465 +00:26:21,940 --> 00:26:26,040 +remove? Course Now, as long as the course schedule + +466 +00:26:26,040 --> 00:26:29,810 +has the word courseIt means that this relationship + +467 +00:26:29,810 --> 00:26:32,650 +has to be clear. But this course does not know + +468 +00:26:32,650 --> 00:26:36,410 +about the class level. It knows about the methods + +469 +00:26:36,410 --> 00:26:38,150 +level. So we represent it with a broken arrow like + +470 +00:26:38,150 --> 00:26:38,830 +this. + +471 +00:26:42,770 --> 00:26:44,530 +Either I know how to enter the method or I learn + +472 +00:26:44,530 --> 00:26:47,190 +it for the method. It means that there is nothing + +473 +00:26:47,190 --> 00:26:50,090 +among the attributes of the course schedule that + +474 +00:26:50,090 --> 00:26:53,330 +has anything to do with the course. The course + +475 +00:26:53,330 --> 00:26:56,270 +only sees what? within the method or as a + +476 +00:26:56,270 --> 00:26:58,530 +parameter of the method okay? outside of the + +477 +00:26:58,530 --> 00:27:00,690 +method I mean there is no .. I mean there is no + +478 +00:27:00,690 --> 00:27:03,910 +one of the attributes that is essential to the + +479 +00:27:03,910 --> 00:27:06,190 +relationship with the course if there is one, what + +480 +00:27:06,190 --> 00:27:10,350 +do you call it? association okay? dependency, the + +481 +00:27:10,350 --> 00:27:12,750 +arrow is crossed which means that the course + +482 +00:27:12,750 --> 00:27:15,710 +schedule uses the course but at the level of the + +483 +00:27:15,710 --> 00:27:21,090 +methods that's it. calm down guys because again, + +484 +00:27:21,370 --> 00:27:23,900 +the goal is that when you see the drawing Can you + +485 +00:27:23,900 --> 00:27:25,020 +imagine how the code is made? + +486 +00:27:28,740 --> 00:27:30,600 +The third type of relationships is the + +487 +00:27:30,600 --> 00:27:33,160 +relationship of generalization, which refers to + +488 +00:27:33,160 --> 00:27:35,760 +the relationship of inheritance. For example, when + +489 +00:27:35,760 --> 00:27:38,880 +you do extend to another class, which in Java is + +490 +00:27:38,880 --> 00:27:43,020 +called extend, but in Kotlin or in software it is + +491 +00:27:43,020 --> 00:27:46,060 +not called extend, it is put twice. That is why it + +492 +00:27:46,060 --> 00:27:49,740 +is called generalization. What is generalization? + +493 +00:27:49,980 --> 00:27:53,220 +It is when a class extends another class. How do + +494 +00:27:53,220 --> 00:27:57,120 +we represent it? With an arrow as well, but do you + +495 +00:27:57,120 --> 00:28:02,240 +see how the arrow ends? The association ends like + +496 +00:28:02,240 --> 00:28:03,680 +this. This is an association. + +497 +00:28:07,340 --> 00:28:11,840 +Dependency is excessive. Generalization is + +498 +00:28:11,840 --> 00:28:17,700 +inherited or extended. What does this mean? The + +499 +00:28:17,700 --> 00:28:22,260 +one who is inherited is the super class. who + +500 +00:28:22,260 --> 00:28:23,700 +thinks that sometimes there are people who get + +501 +00:28:23,700 --> 00:28:25,840 +confused. Okay? Because here the meaning is that + +502 +00:28:25,840 --> 00:28:29,600 +the student extends the person. Okay? And its + +503 +00:28:29,600 --> 00:28:33,380 +representation as a code is class student extends + +504 +00:28:33,380 --> 00:28:36,540 +person. Okay? And when I see this relationship, I + +505 +00:28:36,540 --> 00:28:39,500 +understand that this extends the class person. + +506 +00:28:43,680 --> 00:28:45,720 +This talks about inheritance, it says that the + +507 +00:28:45,720 --> 00:28:47,740 +subclass inherits everything in the superclass. + +508 +00:28:48,180 --> 00:28:50,300 +For example, this is an example, okay? This is + +509 +00:28:50,300 --> 00:28:53,460 +similar to the drawing that I saw, okay? That I + +510 +00:28:53,460 --> 00:28:57,120 +have a large superclass called doctor. I have + +511 +00:28:57,120 --> 00:28:59,520 +subclasses hospital doctor and general + +512 +00:28:59,520 --> 00:29:02,980 +practitioner, okay? And then this hospital doctor + +513 +00:29:02,980 --> 00:29:05,840 +came with me, he is a superclass for whom? For + +514 +00:29:05,840 --> 00:29:08,180 +consultant and team doctor. And who did the team + +515 +00:29:08,180 --> 00:29:11,940 +doctor join? For trainee doctor and qualified + +516 +00:29:11,940 --> 00:29:13,000 +doctor. + +517 +00:29:24,030 --> 00:29:30,390 +If you have attributes here, we know in + +518 +00:29:30,390 --> 00:29:32,790 +generalization or inheritance that the subclass + +519 +00:29:32,790 --> 00:29:36,550 +inherits Everything is in the superclass But there + +520 +00:29:36,550 --> 00:29:39,130 +is no need to repeat them below So the thing is + +521 +00:29:39,130 --> 00:29:42,950 +that the hospital doctor took who? The name, the + +522 +00:29:42,950 --> 00:29:45,090 +phone and the email You don't write them down here + +523 +00:29:45,090 --> 00:29:46,370 +But we are doing inheritance because we don't + +524 +00:29:46,370 --> 00:29:48,250 +write them down You write them down in the drawing + +525 +00:29:48,250 --> 00:29:55,410 +Yes, I understood that they went down Of course, + +526 +00:29:55,510 --> 00:29:58,510 +you won't see a drawing like this in Java Why? + +527 +00:29:59,090 --> 00:30:00,890 +Because we are maintaining inheritance There is no + +528 +00:30:00,890 --> 00:30:03,210 +class that extends to two classes + +529 +00:30:05,350 --> 00:30:08,890 +The last type of relationship is realization. What + +530 +00:30:08,890 --> 00:30:15,010 +is realization? When we say I will realize my + +531 +00:30:15,010 --> 00:30:20,010 +dreams, what does it mean? This realization is + +532 +00:30:20,010 --> 00:30:24,030 +related to the implementation of the interface.And + +533 +00:30:24,030 --> 00:30:30,690 +why is it different from the generalization? + +534 +00:30:31,230 --> 00:30:33,150 +The word generalization means that there was + +535 +00:30:33,150 --> 00:30:36,370 +something that didn't exist and I created it again + +536 +00:30:36,370 --> 00:30:40,490 +and again, I made it happen The generalization + +537 +00:30:40,490 --> 00:30:42,190 +means that there was something that existed and I + +538 +00:30:42,190 --> 00:30:46,030 +added something to it So the generalization is + +539 +00:30:46,030 --> 00:30:49,310 +that you made a complete implementationIt's like + +540 +00:30:49,310 --> 00:30:52,590 +if you have an empty interface and you made a full + +541 +00:30:52,590 --> 00:30:56,190 +implementation in the subclass. How do we + +542 +00:30:56,190 --> 00:30:59,070 +represent this relation? It's like the relation of + +543 +00:30:59,070 --> 00:31:02,990 +generalization, but its value is negated. So, look + +544 +00:31:02,990 --> 00:31:04,950 +now, these four are divided by negation of all the + +545 +00:31:04,950 --> 00:31:07,970 +relations.This is the relationship between + +546 +00:31:07,970 --> 00:31:12,410 +association and dependency. An object can use + +547 +00:31:12,410 --> 00:31:15,750 +another object only on the level of methods. This + +548 +00:31:15,750 --> 00:31:17,730 +is the relationship between generalization and + +549 +00:31:17,730 --> 00:31:19,090 +inheritance. This is the relationship between + +550 +00:31:19,090 --> 00:31:23,350 +implementation and realization. Notice what is + +551 +00:31:23,350 --> 00:31:25,630 +written here, interface. + +552 +00:31:28,850 --> 00:31:31,190 +Until we finish the parts of today's class + +553 +00:31:31,190 --> 00:31:33,010 +diagram, we will go back and take two exercises + +554 +00:31:33,010 --> 00:31:39,850 +Now this is a structure for a simple system The + +555 +00:31:39,850 --> 00:31:43,210 +first time you look at the drawing, you should + +556 +00:31:43,210 --> 00:31:47,630 +understand what it is Let's analyze this drawing + +557 +00:31:47,630 --> 00:31:52,690 +Look with me, let's start here in the middle What + +558 +00:31:52,690 --> 00:31:57,460 +is the name of this class? The traffic report is a + +559 +00:31:57,460 --> 00:32:01,400 +report for the traffic violations program I have a + +560 +00:32:01,400 --> 00:32:04,880 +class called traffic report The data of the + +561 +00:32:04,880 --> 00:32:06,780 +traffic report written by the police There is an + +562 +00:32:06,780 --> 00:32:11,000 +ID and a description explaining the report And I + +563 +00:32:11,000 --> 00:32:14,720 +have occurred at the date written in the report + +564 +00:32:14,720 --> 00:32:18,180 +Because I have other classes Let's take one by one + +565 +00:32:18,180 --> 00:32:20,460 +and see the relationship between them Because this + +566 +00:32:20,460 --> 00:32:23,500 +class is called offender What is the word + +567 +00:32:23,500 --> 00:32:27,660 +offender? from an offender, an offender, okay? I'm + +568 +00:32:27,660 --> 00:32:31,260 +telling you this is offensive, okay? The offender, + +569 +00:32:31,340 --> 00:32:32,900 +the one who made the mistake, okay? The one who + +570 +00:32:32,900 --> 00:32:36,380 +committed the offence, okay? This has a name and + +571 +00:32:36,380 --> 00:32:39,440 +what does it have? It has an ID. Because there is + +572 +00:32:39,440 --> 00:32:42,380 +a relationship between the traffic report and the + +573 +00:32:42,380 --> 00:32:44,640 +offender. What is this relationship? Association. + +574 +00:32:45,120 --> 00:32:47,940 +What do you understand from the attributes of the + +575 +00:32:47,940 --> 00:32:52,120 +traffic report? No, not a list. There is one + +576 +00:32:52,120 --> 00:32:57,570 +reference to whom? No, Offender. Okay, + +577 +00:33:01,610 --> 00:33:04,670 +okay. This is an association relationship. The + +578 +00:33:04,670 --> 00:33:07,610 +traffic report has a reference to whom? No, + +579 +00:33:07,650 --> 00:33:09,210 +Offender. And notice that it is not necessary that + +580 +00:33:09,210 --> 00:33:11,050 +it is written in the attributes. It is not written + +581 +00:33:11,050 --> 00:33:14,830 +here. Okay? But I understood it from where? From + +582 +00:33:14,830 --> 00:33:17,670 +the relationship. Of course, the report that I do, + +583 +00:33:17,770 --> 00:33:19,430 +Mr. Kharif, does not include the name of the + +584 +00:33:19,430 --> 00:33:24,860 +offender's data. Okay? Now, As long as there are + +585 +00:33:24,860 --> 00:33:27,320 +two numbers, I also understand the exchange + +586 +00:33:27,320 --> 00:33:30,460 +relationship. Meaning from within the offender to + +587 +00:33:30,460 --> 00:33:35,380 +his class, there is a list of traffic reports. + +588 +00:33:35,460 --> 00:33:37,580 +Because sometimes I look for a certain person, I + +589 +00:33:37,580 --> 00:33:38,920 +want to see what are the violations that he has + +590 +00:33:38,920 --> 00:33:42,620 +made, what are his faults. Okay? So I find a list + +591 +00:33:42,620 --> 00:33:44,800 +of traffic reports. This is also not represented, + +592 +00:33:45,400 --> 00:33:47,860 +but you want to understand it from the existing + +593 +00:33:47,860 --> 00:33:50,940 +relationship. Okay? So this is a reference for the + +594 +00:33:50,940 --> 00:33:53,730 +offender, and the offender has a list of Traffic + +595 +00:33:53,730 --> 00:33:58,350 +report. Well, we are not done yet. We have this + +596 +00:33:58,350 --> 00:34:00,170 +one. What is this? Violation. What is violation? + +597 +00:34:02,430 --> 00:34:05,590 +The violation that was done. The violation that + +598 +00:34:05,590 --> 00:34:11,470 +was done. The violation. Okay? And the past report + +599 +00:34:11,470 --> 00:34:13,310 +has a contribution. What does this contribution + +600 +00:34:13,310 --> 00:34:17,170 +mean? It is also an association. It means that in + +601 +00:34:17,170 --> 00:34:20,440 +the traffic report there is a list of what? List + +602 +00:34:20,440 --> 00:34:25,060 +of violations, okay? Passing a report may include + +603 +00:34:25,060 --> 00:34:29,180 +more than one violation in the event of an + +604 +00:34:29,180 --> 00:34:30,280 +accident. Okay? You want to write down the + +605 +00:34:30,280 --> 00:34:33,220 +violations committed by whom? The offender. Okay? + +606 +00:34:33,460 --> 00:34:37,180 +Yes, for example, speed. Two, he was drunk. Yes. + +607 +00:34:37,780 --> 00:34:41,080 +Three, he did not wear a seat belt. Four, what + +608 +00:34:41,080 --> 00:34:44,040 +will all these be? Violations. Okay? Violations. + +609 +00:34:44,280 --> 00:34:48,260 +Among whom? The report. Okay? And notice that this + +610 +00:34:48,260 --> 00:34:51,490 +is related to one direction.means this one has a + +611 +00:34:51,490 --> 00:34:52,730 +list of these things and notice what is the + +612 +00:34:52,730 --> 00:34:54,910 +relation between these things what you understand + +613 +00:34:54,910 --> 00:34:57,930 +is that these things are built outside and they + +614 +00:34:57,930 --> 00:35:00,410 +are trained here either through the constructor or + +615 +00:35:00,410 --> 00:35:02,690 +through a set of methods all this you need to + +616 +00:35:02,690 --> 00:35:05,410 +understand from what? from the drawing that is + +617 +00:35:05,410 --> 00:35:09,950 +there we finished these three, we come here, who + +618 +00:35:09,950 --> 00:35:13,080 +is this? Class of the traffic report, the police + +619 +00:35:13,080 --> 00:35:16,700 +who wrote the report. And there is also an + +620 +00:35:16,700 --> 00:35:19,460 +association relationship, which means that in the + +621 +00:35:19,460 --> 00:35:22,800 +traffic report there is also a reference to the + +622 +00:35:22,800 --> 00:35:24,240 +traffic police who wrote it. You need to know what + +623 +00:35:24,240 --> 00:35:25,300 +the traffic police wrote about the violations, + +624 +00:35:25,780 --> 00:35:29,680 +okay? And also the traffic police has a list of + +625 +00:35:29,680 --> 00:35:32,580 +traffic reports. We need to see what the traffic + +626 +00:35:32,580 --> 00:35:33,580 +police wrote about the violations or the reports + +627 +00:35:33,580 --> 00:35:38,460 +they wrote during the week, okay? And then I have + +628 +00:35:38,460 --> 00:35:42,250 +a class called Policeman. And there is a relation + +629 +00:35:42,250 --> 00:35:45,930 +between traffic policeman and policeman. What is + +630 +00:35:45,930 --> 00:35:47,970 +this generalization? That this person extends from + +631 +00:35:47,970 --> 00:35:50,510 +this person. On the basis that there can be more + +632 +00:35:50,510 --> 00:35:53,510 +than one policeman. They all share the same ID, + +633 +00:35:53,670 --> 00:35:56,010 +name and rank. And this person has two minuses + +634 +00:35:56,010 --> 00:35:59,890 +here. Do you understand how from the drawing I + +635 +00:35:59,890 --> 00:36:02,870 +read the code and understand what is inside the + +636 +00:36:02,870 --> 00:36:03,030 +code? + +637 +00:36:06,450 --> 00:36:10,120 +Now another example. He says, draw a class diagram + +638 +00:36:10,120 --> 00:36:12,340 +representing a book defined by the following + +639 +00:36:12,340 --> 00:36:15,360 +statement, a book is composed of a number of parts + +640 +00:36:15,360 --> 00:36:17,540 +which in turn are composed of a number of + +641 +00:36:17,540 --> 00:36:20,380 +chapters, chapters are composed of sections, + +642 +00:36:26,620 --> 00:36:29,640 +focus only on classes, relationships and + +643 +00:36:29,640 --> 00:36:33,440 +multiplicityBecause when he drew this, he drew it + +644 +00:36:33,440 --> 00:36:35,720 +like this. You can draw it horizontally or + +645 +00:36:35,720 --> 00:36:37,800 +vertically, whatever shape you want. Because as + +646 +00:36:37,800 --> 00:36:40,360 +long as I have a book, part, chapter and section, + +647 +00:36:40,440 --> 00:36:43,460 +each one is a class. Okay? And I put associations + +648 +00:36:43,460 --> 00:36:48,680 +between them.means that the book uses a part and + +649 +00:36:48,680 --> 00:36:51,540 +the part uses a chapter and the chapter uses a + +650 +00:36:51,540 --> 00:36:55,100 +section. Now, in the end, I will return to you as + +651 +00:36:55,100 --> 00:36:57,060 +a programmer. Here, of course, it is assumed that + +652 +00:36:57,060 --> 00:36:59,320 +the relationship is exchangeable. I did not talk + +653 +00:36:59,320 --> 00:37:00,680 +about the question, but it is assumed that it is + +654 +00:37:00,680 --> 00:37:02,740 +exchangeable. What does it mean? It means that + +655 +00:37:02,740 --> 00:37:06,430 +inside the book, There will be a list of what? Of + +656 +00:37:06,430 --> 00:37:08,450 +parts. How did you know it was a list? From the + +657 +00:37:08,450 --> 00:37:10,230 +star. And inside the part, there is a list of + +658 +00:37:10,230 --> 00:37:12,370 +chapters and chapters are lists of sections. And + +659 +00:37:12,370 --> 00:37:15,550 +also in each one, the part must know who it + +660 +00:37:15,550 --> 00:37:19,410 +belongs to.So logic says that inside the part, + +661 +00:37:19,590 --> 00:37:22,730 +there is a reference to the book. And this is + +662 +00:37:22,730 --> 00:37:25,930 +always one. And also, the chapter has a reference + +663 +00:37:25,930 --> 00:37:28,650 +to whom? Of course, the part belongs to one book. + +664 +00:37:28,810 --> 00:37:30,330 +It won't say that the part has more than one book. + +665 +00:37:30,790 --> 00:37:34,610 +But the book has more than one part. Okay? And + +666 +00:37:34,610 --> 00:37:36,870 +here, this is also not included in the question. + +667 +00:37:37,710 --> 00:37:40,830 +He decided to make the relationship aggregation. + +668 +00:37:41,050 --> 00:37:43,770 +Meaning that you create these and pass them on to + +669 +00:37:43,770 --> 00:37:43,930 +him. + +670 +00:38:00,090 --> 00:38:02,390 +extend the class diagram to include the following + +671 +00:38:03,460 --> 00:38:05,800 +Attributes. B is in the second attribute. The book + +672 +00:38:05,800 --> 00:38:08,720 +must have a publisher, publication date, and ISBN. + +673 +00:38:09,360 --> 00:38:11,200 +The part has a title and number, the chapter has a + +674 +00:38:11,200 --> 00:38:13,100 +title, number, and abstract, and the section has a + +675 +00:38:13,100 --> 00:38:16,840 +title and number. Calculate the drawing. This is + +676 +00:38:16,840 --> 00:38:19,120 +the same drawing, but I made it smaller to put the + +677 +00:38:19,120 --> 00:38:25,540 +attributes. The book has a part, more than a part, + +678 +00:38:25,600 --> 00:38:26,860 +and the part has more than a chapter, and the + +679 +00:38:26,860 --> 00:38:28,160 +chapter has more than a section. But who did I + +680 +00:38:28,160 --> 00:38:32,960 +put? the attributes in the classes until he said + +681 +00:38:32,960 --> 00:38:36,720 +to me note that the part, chapter and section + +682 +00:38:36,720 --> 00:38:39,820 +classes all include a title and number attribute + +683 +00:38:39,820 --> 00:38:44,760 +which means these three after I put the attributes + +684 +00:38:44,760 --> 00:38:46,600 +I found that they share something in common what + +685 +00:38:46,600 --> 00:38:50,140 +is it? the title and the number right or not guys? + +686 +00:38:50,540 --> 00:38:52,840 +right? so he said to me since they have common + +687 +00:38:52,840 --> 00:38:58,350 +attributes add a description In order to add an + +688 +00:38:58,350 --> 00:39:00,610 +abstract class that combines the shared things and + +689 +00:39:00,610 --> 00:39:04,810 +create a generalization relationship. Okay? So he + +690 +00:39:04,810 --> 00:39:09,270 +modified the drawing. He modified the drawing and + +691 +00:39:09,270 --> 00:39:14,910 +put a number component inside the string. It is + +692 +00:39:14,910 --> 00:39:18,310 +called title and integer is called number. And + +693 +00:39:18,310 --> 00:39:25,060 +these were extended to whom?to this class, okay? + +694 +00:39:25,440 --> 00:39:28,100 +Of course, the common things he took from here, he + +695 +00:39:28,100 --> 00:39:32,440 +put them here, he left only the different things, + +696 +00:39:32,700 --> 00:39:37,820 +okay? And sometimes, by the way, in this case, he + +697 +00:39:37,820 --> 00:39:41,120 +told me that it is abstract, right? Sometimes in + +698 +00:39:41,120 --> 00:39:43,640 +this class, I write the word abstract, and + +699 +00:39:43,640 --> 00:39:45,040 +sometimes I don't write it, but I put the name of + +700 +00:39:45,040 --> 00:39:48,980 +the class Italic, okay? You understand that this + +701 +00:39:48,980 --> 00:39:53,960 +is an abstract classThe last example is another + +702 +00:39:53,960 --> 00:39:56,960 +example, also the goal is that when you see the + +703 +00:39:56,960 --> 00:40:01,160 +diagram, you know how to convert it to code. So + +704 +00:40:01,160 --> 00:40:05,200 +let's look at the classes that I have here. Let's + +705 +00:40:05,200 --> 00:40:07,380 +start from here. This is the class that has a lot + +706 +00:40:07,380 --> 00:40:11,900 +of brackets. Who does this represent? Employee. + +707 +00:40:12,440 --> 00:40:14,380 +These are the attributes of the employee and these + +708 +00:40:14,380 --> 00:40:17,700 +are the existing methods. Come here. Who is this? + +709 +00:40:23,530 --> 00:40:29,210 +Contractor is a person who is employed but with a + +710 +00:40:29,210 --> 00:40:32,590 +contract. The duration of his contract is a method + +711 +00:40:32,590 --> 00:40:34,650 +here. Because this is one of the types of + +712 +00:40:34,650 --> 00:40:38,350 +employees. So he went and generalized it for the + +713 +00:40:38,350 --> 00:40:40,190 +employee. So he extended the employee. He took all + +714 +00:40:40,190 --> 00:40:42,450 +the attributes and added the duration of the + +715 +00:40:42,450 --> 00:40:43,110 +contract to it. + +716 +00:40:47,450 --> 00:40:54,210 +the company name and they put here a list of + +717 +00:40:54,210 --> 00:41:00,210 +employees this means that the company has a + +718 +00:41:00,210 --> 00:41:01,550 +relationship with the employees there is an + +719 +00:41:01,550 --> 00:41:05,870 +association relationship and what is written here + +720 +00:41:05,870 --> 00:41:09,990 +one to a star by the way even if you don't put + +721 +00:41:09,990 --> 00:41:14,410 +this list you have to understand it yourself and + +722 +00:41:14,410 --> 00:41:18,660 +it is written here works for And I also understand + +723 +00:41:18,660 --> 00:41:20,940 +that since he put employer here and wrote + +724 +00:41:20,940 --> 00:41:22,720 +employee, that this is an exchange relationship, + +725 +00:41:23,280 --> 00:41:30,940 +okay? That the employee can refer to whom? To the + +726 +00:41:30,940 --> 00:41:34,780 +company. Okay, let's come to this one. What is + +727 +00:41:34,780 --> 00:41:38,660 +written here? The manager, okay? There are two + +728 +00:41:38,660 --> 00:41:41,180 +relationships between the manager and the + +729 +00:41:41,180 --> 00:41:44,160 +employee. Generalization and association. It means + +730 +00:41:44,160 --> 00:41:51,280 +that the manager extends the employee and also the + +731 +00:41:51,280 --> 00:41:55,420 +manager has a list of employees this is really a + +732 +00:41:55,420 --> 00:42:06,300 +code it looks like this class manager extends + +733 +00:42:06,300 --> 00:42:12,260 +employee and + +734 +00:42:12,260 --> 00:42:13,320 +there is a list inside it + +735 +00:42:16,830 --> 00:42:17,730 +of employee. + +736 +00:42:20,790 --> 00:42:25,790 +Okay? He called it managers. It looks like this. + +737 +00:42:26,030 --> 00:42:27,850 +It took two relationships here. This is the + +738 +00:42:27,850 --> 00:42:30,070 +relationship of generalization and this is the + +739 +00:42:30,070 --> 00:42:31,930 +relationship of association. Well, why did he do + +740 +00:42:31,930 --> 00:42:35,050 +that? Of course, the manager supervises a group of + +741 +00:42:35,050 --> 00:42:38,450 +employees and made the manager an employee so that + +742 +00:42:38,450 --> 00:42:41,480 +the manager can have another manager. right or + +743 +00:42:41,480 --> 00:42:43,980 +not? so the manager himself will be added as an + +744 +00:42:43,980 --> 00:42:48,460 +employee to whom? to another manager okay? so this + +745 +00:42:48,460 --> 00:42:50,100 +allows the relationship that the manager is + +746 +00:42:50,100 --> 00:42:53,720 +himself an employee to another manager okay? so + +747 +00:42:53,720 --> 00:42:55,680 +let him take the type of employee to add him with + +748 +00:42:55,680 --> 00:43:01,300 +whom? with employees to another manager okay? all + +749 +00:43:01,300 --> 00:43:03,940 +this we have to understand guys from the drawing + +750 +00:43:03,940 --> 00:43:07,400 +because after this all the design patterns will + +751 +00:43:07,400 --> 00:43:09,630 +give you drawings like this and we understand + +752 +00:43:09,630 --> 00:43:12,110 +them. And then you turn it into code. And the + +753 +00:43:12,110 --> 00:43:14,530 +advantage of class diagram these days is that it + +754 +00:43:14,530 --> 00:43:16,190 +shows you relationships and you can translate + +755 +00:43:16,190 --> 00:43:20,170 +Java, Python, or PHP into any language. This is + +756 +00:43:20,170 --> 00:43:23,510 +standard. Today's concept is that it is standard. + +757 +00:43:24,690 --> 00:43:28,810 +You agree on it, and then everyone does coding in + +758 +00:43:28,810 --> 00:43:32,030 +the form or language they want. Does anyone have + +759 +00:43:32,030 --> 00:43:34,410 +any questions or inquiries? Thank you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/L301dxAqllc_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/L301dxAqllc_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..7afaa4161f83d5a0ac55475c0e51d170cd1a5583 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/L301dxAqllc_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 3075, "start": 5.09, "end": 30.75, "text": " In the name of God, Most Gracious, Most Merciful In the previous lectures, we finished reviewing the concepts of Object Oriented Programming The last lecture is the previous lecture in which we focused on the concept of interface And we took some examples from which we should benefit from more than one thing For example, through the drawing program that we saw The first thing or the first principle that we learned is to always separate the design of GUI", "tokens": [682, 264, 1315, 295, 1265, 11, 4534, 20586, 851, 11, 4534, 18897, 2069, 682, 264, 3894, 16564, 11, 321, 4335, 19576, 264, 10392, 295, 24753, 23621, 6003, 8338, 2810, 440, 1036, 7991, 307, 264, 3894, 7991, 294, 597, 321, 5178, 322, 264, 3410, 295, 9226, 400, 321, 1890, 512, 5110, 490, 597, 321, 820, 5121, 490, 544, 813, 472, 551, 1171, 1365, 11, 807, 264, 6316, 1461, 300, 321, 1866, 440, 700, 551, 420, 264, 700, 8665, 300, 321, 3264, 307, 281, 1009, 4994, 264, 1715, 295, 17917, 40], "avg_logprob": -0.448263892531395, "compression_ratio": 1.7751937984496124, "no_speech_prob": 2.8014183044433594e-06, "words": [{"start": 5.09, "end": 5.43, "word": " In", "probability": 0.39794921875}, {"start": 5.43, "end": 5.57, "word": " the", "probability": 0.91259765625}, {"start": 5.57, "end": 5.57, "word": " name", "probability": 0.400390625}, {"start": 5.57, "end": 5.67, "word": " of", "probability": 0.97509765625}, {"start": 5.67, "end": 5.75, "word": " God,", "probability": 0.52734375}, {"start": 5.81, "end": 6.13, "word": " Most", "probability": 0.300048828125}, {"start": 6.13, "end": 6.13, "word": " Gracious,", "probability": 0.739501953125}, {"start": 6.13, "end": 6.15, "word": " Most", "probability": 0.91064453125}, {"start": 6.15, "end": 6.39, "word": " Merciful", "probability": 0.93115234375}, {"start": 6.39, "end": 7.13, "word": " In", "probability": 0.12890625}, {"start": 7.13, "end": 7.39, "word": " the", "probability": 0.642578125}, {"start": 7.39, "end": 8.33, "word": " previous", "probability": 0.5078125}, {"start": 8.33, "end": 8.79, "word": " lectures,", "probability": 0.708984375}, {"start": 9.23, "end": 9.71, "word": " we", "probability": 0.82080078125}, {"start": 9.71, "end": 9.97, "word": " finished", "probability": 0.228271484375}, {"start": 9.97, "end": 10.45, "word": " reviewing", "probability": 0.6796875}, {"start": 10.45, "end": 11.15, "word": " the", "probability": 0.71630859375}, {"start": 11.15, "end": 11.43, "word": " concepts", "probability": 0.65185546875}, {"start": 11.43, "end": 11.55, "word": " of", "probability": 0.90283203125}, {"start": 11.55, "end": 11.81, "word": " Object", "probability": 0.386474609375}, {"start": 11.81, "end": 12.19, "word": " Oriented", "probability": 0.769775390625}, {"start": 12.19, "end": 12.89, "word": " Programming", "probability": 0.89208984375}, {"start": 12.89, "end": 13.73, "word": " The", "probability": 0.46337890625}, {"start": 13.73, "end": 13.91, "word": " last", "probability": 0.734375}, {"start": 13.91, "end": 14.31, "word": " lecture", "probability": 0.91943359375}, {"start": 14.31, "end": 14.45, "word": " is", "probability": 0.342041015625}, {"start": 14.45, "end": 14.55, "word": " the", "probability": 0.646484375}, {"start": 14.55, "end": 15.23, "word": " previous", "probability": 0.63720703125}, {"start": 15.23, "end": 15.25, "word": " lecture", "probability": 0.53662109375}, {"start": 15.25, "end": 15.77, "word": " in", "probability": 0.177734375}, {"start": 15.77, "end": 15.97, "word": " which", "probability": 0.9521484375}, {"start": 15.97, "end": 16.67, "word": " we", "probability": 0.939453125}, {"start": 16.67, "end": 17.01, "word": " focused", "probability": 0.7158203125}, {"start": 17.01, "end": 17.35, "word": " on", "probability": 0.93017578125}, {"start": 17.35, "end": 17.45, "word": " the", "probability": 0.84375}, {"start": 17.45, "end": 17.63, "word": " concept", "probability": 0.8759765625}, {"start": 17.63, "end": 17.71, "word": " of", "probability": 0.9677734375}, {"start": 17.71, "end": 18.33, "word": " interface", "probability": 0.371337890625}, {"start": 18.33, "end": 19.07, "word": " And", "probability": 0.353515625}, {"start": 19.07, "end": 19.25, "word": " we", "probability": 0.828125}, {"start": 19.25, "end": 19.25, "word": " took", "probability": 0.7470703125}, {"start": 19.25, "end": 19.51, "word": " some", "probability": 0.73193359375}, {"start": 19.51, "end": 19.91, "word": " examples", "probability": 0.78369140625}, {"start": 19.91, "end": 20.71, "word": " from", "probability": 0.196533203125}, {"start": 20.71, "end": 20.71, "word": " which", "probability": 0.92333984375}, {"start": 20.71, "end": 20.93, "word": " we", "probability": 0.93359375}, {"start": 20.93, "end": 21.13, "word": " should", "probability": 0.67724609375}, {"start": 21.13, "end": 21.63, "word": " benefit", "probability": 0.29736328125}, {"start": 21.63, "end": 21.79, "word": " from", "probability": 0.556640625}, {"start": 21.79, "end": 22.71, "word": " more", "probability": 0.67724609375}, {"start": 22.71, "end": 22.89, "word": " than", "probability": 0.9248046875}, {"start": 22.89, "end": 23.21, "word": " one", "probability": 0.75048828125}, {"start": 23.21, "end": 23.25, "word": " thing", "probability": 0.78759765625}, {"start": 23.25, "end": 24.01, "word": " For", "probability": 0.58740234375}, {"start": 24.01, "end": 24.25, "word": " example,", "probability": 0.873046875}, {"start": 24.35, "end": 24.49, "word": " through", "probability": 0.525390625}, {"start": 24.49, "end": 25.09, "word": " the", "probability": 0.837890625}, {"start": 25.09, "end": 25.29, "word": " drawing", "probability": 0.51611328125}, {"start": 25.29, "end": 25.29, "word": " program", "probability": 0.67529296875}, {"start": 25.29, "end": 25.41, "word": " that", "probability": 0.347900390625}, {"start": 25.41, "end": 25.41, "word": " we", "probability": 0.94384765625}, {"start": 25.41, "end": 25.71, "word": " saw", "probability": 0.72021484375}, {"start": 25.71, "end": 26.37, "word": " The", "probability": 0.322998046875}, {"start": 26.37, "end": 26.49, "word": " first", "probability": 0.86181640625}, {"start": 26.49, "end": 26.71, "word": " thing", "probability": 0.65234375}, {"start": 26.71, "end": 26.95, "word": " or", "probability": 0.458251953125}, {"start": 26.95, "end": 27.25, "word": " the", "probability": 0.79150390625}, {"start": 27.25, "end": 27.25, "word": " first", "probability": 0.828125}, {"start": 27.25, "end": 27.47, "word": " principle", "probability": 0.6298828125}, {"start": 27.47, "end": 27.57, "word": " that", "probability": 0.5341796875}, {"start": 27.57, "end": 27.67, "word": " we", "probability": 0.94775390625}, {"start": 27.67, "end": 27.83, "word": " learned", "probability": 0.748046875}, {"start": 27.83, "end": 28.29, "word": " is", "probability": 0.6923828125}, {"start": 28.29, "end": 28.61, "word": " to", "probability": 0.5771484375}, {"start": 28.61, "end": 28.61, "word": " always", "probability": 0.424072265625}, {"start": 28.61, "end": 29.13, "word": " separate", "probability": 0.78759765625}, {"start": 29.13, "end": 29.77, "word": " the", "probability": 0.88037109375}, {"start": 29.77, "end": 30.01, "word": " design", "probability": 0.6962890625}, {"start": 30.01, "end": 30.19, "word": " of", "probability": 0.947265625}, {"start": 30.19, "end": 30.75, "word": " GUI", "probability": 0.772705078125}], "temperature": 1.0}, {"id": 2, "seek": 4727, "start": 31.35, "end": 47.27, "text": " and the user interface from the model which is the logic and algorithms that work on the database to separate them completely from each other so that there is work for the backend and work for the frontend. Don't separate them. This is what we did in the last lecture.", "tokens": [293, 264, 4195, 9226, 490, 264, 2316, 597, 307, 264, 9952, 293, 14642, 300, 589, 322, 264, 8149, 281, 4994, 552, 2584, 490, 1184, 661, 370, 300, 456, 307, 589, 337, 264, 38087, 293, 589, 337, 264, 1868, 521, 13, 1468, 380, 4994, 552, 13, 639, 307, 437, 321, 630, 294, 264, 1036, 7991, 13], "avg_logprob": -0.5521763541868755, "compression_ratio": 1.6402439024390243, "no_speech_prob": 4.690885543823242e-05, "words": [{"start": 31.35, "end": 31.49, "word": " and", "probability": 0.132568359375}, {"start": 31.49, "end": 31.55, "word": " the", "probability": 0.2325439453125}, {"start": 31.55, "end": 31.73, "word": " user", "probability": 0.83154296875}, {"start": 31.73, "end": 32.39, "word": " interface", "probability": 0.8828125}, {"start": 32.39, "end": 32.77, "word": " from", "probability": 0.287109375}, {"start": 32.77, "end": 33.41, "word": " the", "probability": 0.81298828125}, {"start": 33.41, "end": 33.73, "word": " model", "probability": 0.85400390625}, {"start": 33.73, "end": 34.13, "word": " which", "probability": 0.45068359375}, {"start": 34.13, "end": 34.43, "word": " is", "probability": 0.76953125}, {"start": 34.43, "end": 35.09, "word": " the", "probability": 0.478515625}, {"start": 35.09, "end": 35.41, "word": " logic", "probability": 0.888671875}, {"start": 35.41, "end": 36.01, "word": " and", "probability": 0.309326171875}, {"start": 36.01, "end": 36.73, "word": " algorithms", "probability": 0.7568359375}, {"start": 36.73, "end": 36.91, "word": " that", "probability": 0.309326171875}, {"start": 36.91, "end": 37.07, "word": " work", "probability": 0.385986328125}, {"start": 37.07, "end": 37.29, "word": " on", "probability": 0.728515625}, {"start": 37.29, "end": 37.33, "word": " the", "probability": 0.77587890625}, {"start": 37.33, "end": 37.85, "word": " database", "probability": 0.90673828125}, {"start": 37.85, "end": 38.45, "word": " to", "probability": 0.204833984375}, {"start": 38.45, "end": 38.59, "word": " separate", "probability": 0.3515625}, {"start": 38.59, "end": 39.05, "word": " them", "probability": 0.82080078125}, {"start": 39.05, "end": 39.25, "word": " completely", "probability": 0.408203125}, {"start": 39.25, "end": 39.37, "word": " from", "probability": 0.64013671875}, {"start": 39.37, "end": 39.61, "word": " each", "probability": 0.91064453125}, {"start": 39.61, "end": 39.77, "word": " other", "probability": 0.88427734375}, {"start": 39.77, "end": 40.35, "word": " so", "probability": 0.1495361328125}, {"start": 40.35, "end": 40.71, "word": " that", "probability": 0.60400390625}, {"start": 40.71, "end": 40.75, "word": " there", "probability": 0.2142333984375}, {"start": 40.75, "end": 40.75, "word": " is", "probability": 0.68310546875}, {"start": 40.75, "end": 40.95, "word": " work", "probability": 0.82568359375}, {"start": 40.95, "end": 41.09, "word": " for", "probability": 0.8095703125}, {"start": 41.09, "end": 41.21, "word": " the", "probability": 0.86328125}, {"start": 41.21, "end": 41.57, "word": " backend", "probability": 0.5673828125}, {"start": 41.57, "end": 42.59, "word": " and", "probability": 0.8984375}, {"start": 42.59, "end": 42.79, "word": " work", "probability": 0.86181640625}, {"start": 42.79, "end": 43.07, "word": " for", "probability": 0.93994140625}, {"start": 43.07, "end": 43.83, "word": " the", "probability": 0.90673828125}, {"start": 43.83, "end": 44.43, "word": " frontend.", "probability": 0.7568359375}, {"start": 44.81, "end": 44.89, "word": " Don't", "probability": 0.670166015625}, {"start": 44.89, "end": 45.09, "word": " separate", "probability": 0.2008056640625}, {"start": 45.09, "end": 45.45, "word": " them.", "probability": 0.54541015625}, {"start": 45.93, "end": 46.19, "word": " This", "probability": 0.61865234375}, {"start": 46.19, "end": 46.23, "word": " is", "probability": 0.890625}, {"start": 46.23, "end": 46.29, "word": " what", "probability": 0.9033203125}, {"start": 46.29, "end": 46.31, "word": " we", "probability": 0.90478515625}, {"start": 46.31, "end": 46.49, "word": " did", "probability": 0.802734375}, {"start": 46.49, "end": 46.63, "word": " in", "probability": 0.76708984375}, {"start": 46.63, "end": 46.67, "word": " the", "probability": 0.833984375}, {"start": 46.67, "end": 46.67, "word": " last", "probability": 0.45556640625}, {"start": 46.67, "end": 47.27, "word": " lecture.", "probability": 0.82958984375}], "temperature": 1.0}, {"id": 3, "seek": 7292, "start": 50.02, "end": 72.92, "text": " By using an object from another class for the GUI class, which is called DrawManager, and it transforms the parameters on it. Another point is that by using the interface, we developed the program and reduced the need to modify it. Because the DrawManager, which represents the backend or model, started to interact with the shape,", "tokens": [3146, 1228, 364, 2657, 490, 1071, 1508, 337, 264, 17917, 40, 1508, 11, 597, 307, 1219, 20386, 6652, 3557, 11, 293, 309, 35592, 264, 9834, 322, 309, 13, 3996, 935, 307, 300, 538, 1228, 264, 9226, 11, 321, 4743, 264, 1461, 293, 9212, 264, 643, 281, 16927, 309, 13, 1436, 264, 20386, 6652, 3557, 11, 597, 8855, 264, 38087, 420, 2316, 11, 1409, 281, 4648, 365, 264, 3909, 11], "avg_logprob": -0.6133928724697658, "compression_ratio": 1.5961538461538463, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 50.02, "end": 50.56, "word": " By", "probability": 0.3564453125}, {"start": 50.56, "end": 51.1, "word": " using", "probability": 0.68701171875}, {"start": 51.1, "end": 51.3, "word": " an", "probability": 0.36767578125}, {"start": 51.3, "end": 51.56, "word": " object", "probability": 0.9423828125}, {"start": 51.56, "end": 51.78, "word": " from", "probability": 0.61962890625}, {"start": 51.78, "end": 52.42, "word": " another", "probability": 0.75048828125}, {"start": 52.42, "end": 52.84, "word": " class", "probability": 0.8857421875}, {"start": 52.84, "end": 52.84, "word": " for", "probability": 0.09588623046875}, {"start": 52.84, "end": 52.84, "word": " the", "probability": 0.4443359375}, {"start": 52.84, "end": 52.84, "word": " GUI", "probability": 0.8984375}, {"start": 52.84, "end": 52.84, "word": " class,", "probability": 0.8818359375}, {"start": 53.06, "end": 53.12, "word": " which", "probability": 0.347412109375}, {"start": 53.12, "end": 53.42, "word": " is", "probability": 0.3115234375}, {"start": 53.42, "end": 53.62, "word": " called", "probability": 0.6640625}, {"start": 53.62, "end": 54.62, "word": " DrawManager,", "probability": 0.6795247395833334}, {"start": 54.68, "end": 54.72, "word": " and", "probability": 0.419189453125}, {"start": 54.72, "end": 54.8, "word": " it", "probability": 0.267333984375}, {"start": 54.8, "end": 55.08, "word": " transforms", "probability": 0.2265625}, {"start": 55.08, "end": 55.2, "word": " the", "probability": 0.5458984375}, {"start": 55.2, "end": 55.46, "word": " parameters", "probability": 0.314208984375}, {"start": 55.46, "end": 55.66, "word": " on", "probability": 0.4013671875}, {"start": 55.66, "end": 55.84, "word": " it.", "probability": 0.7275390625}, {"start": 56.6, "end": 57.14, "word": " Another", "probability": 0.419921875}, {"start": 57.14, "end": 57.38, "word": " point", "probability": 0.74560546875}, {"start": 57.38, "end": 58.04, "word": " is", "probability": 0.264404296875}, {"start": 58.04, "end": 58.28, "word": " that", "probability": 0.69384765625}, {"start": 58.28, "end": 58.54, "word": " by", "probability": 0.583984375}, {"start": 58.54, "end": 60.24, "word": " using", "probability": 0.916015625}, {"start": 60.24, "end": 60.38, "word": " the", "probability": 0.728515625}, {"start": 60.38, "end": 61.06, "word": " interface,", "probability": 0.76806640625}, {"start": 62.86, "end": 64.54, "word": " we", "probability": 0.80029296875}, {"start": 64.54, "end": 64.8, "word": " developed", "probability": 0.237060546875}, {"start": 64.8, "end": 64.96, "word": " the", "probability": 0.83154296875}, {"start": 64.96, "end": 65.3, "word": " program", "probability": 0.73779296875}, {"start": 65.3, "end": 65.48, "word": " and", "probability": 0.763671875}, {"start": 65.48, "end": 65.82, "word": " reduced", "probability": 0.70751953125}, {"start": 65.82, "end": 66.0, "word": " the", "probability": 0.81884765625}, {"start": 66.0, "end": 66.28, "word": " need", "probability": 0.478515625}, {"start": 66.28, "end": 66.4, "word": " to", "probability": 0.6044921875}, {"start": 66.4, "end": 66.68, "word": " modify", "probability": 0.52197265625}, {"start": 66.68, "end": 67.04, "word": " it.", "probability": 0.935546875}, {"start": 67.48, "end": 67.76, "word": " Because", "probability": 0.732421875}, {"start": 67.76, "end": 68.24, "word": " the", "probability": 0.69287109375}, {"start": 68.24, "end": 68.88, "word": " DrawManager,", "probability": 0.8556315104166666}, {"start": 68.96, "end": 69.08, "word": " which", "probability": 0.88525390625}, {"start": 69.08, "end": 69.42, "word": " represents", "probability": 0.329833984375}, {"start": 69.42, "end": 70.0, "word": " the", "probability": 0.50830078125}, {"start": 70.0, "end": 70.34, "word": " backend", "probability": 0.4052734375}, {"start": 70.34, "end": 70.66, "word": " or", "probability": 0.6962890625}, {"start": 70.66, "end": 71.04, "word": " model,", "probability": 0.6357421875}, {"start": 71.74, "end": 72.02, "word": " started", "probability": 0.2030029296875}, {"start": 72.02, "end": 72.1, "word": " to", "probability": 0.5556640625}, {"start": 72.1, "end": 72.3, "word": " interact", "probability": 0.47802734375}, {"start": 72.3, "end": 72.5, "word": " with", "probability": 0.89111328125}, {"start": 72.5, "end": 72.64, "word": " the", "probability": 0.333984375}, {"start": 72.64, "end": 72.92, "word": " shape,", "probability": 0.86279296875}], "temperature": 1.0}, {"id": 4, "seek": 9252, "start": 74.38, "end": 92.52, "text": "Instead of dealing with multiple types, if you add new shapes and change them, the draw manager will not be affected by using the interface, which is useful to combine things that do not exist in common to benefit from the polymorphism.", "tokens": [28411, 2056, 295, 6260, 365, 3866, 3467, 11, 498, 291, 909, 777, 10854, 293, 1319, 552, 11, 264, 2642, 6598, 486, 406, 312, 8028, 538, 1228, 264, 9226, 11, 597, 307, 4420, 281, 10432, 721, 300, 360, 406, 2514, 294, 2689, 281, 5121, 490, 264, 6754, 76, 18191, 1434, 13], "avg_logprob": -0.6568627614600986, "compression_ratio": 1.4658385093167703, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 74.38, "end": 74.84, "word": "Instead", "probability": 0.532867431640625}, {"start": 74.84, "end": 75.1, "word": " of", "probability": 0.94970703125}, {"start": 75.1, "end": 75.46, "word": " dealing", "probability": 0.429443359375}, {"start": 75.46, "end": 75.62, "word": " with", "probability": 0.89306640625}, {"start": 75.62, "end": 76.62, "word": " multiple", "probability": 0.25634765625}, {"start": 76.62, "end": 76.76, "word": " types,", "probability": 0.59765625}, {"start": 76.98, "end": 77.04, "word": " if", "probability": 0.479248046875}, {"start": 77.04, "end": 77.24, "word": " you", "probability": 0.916015625}, {"start": 77.24, "end": 77.52, "word": " add", "probability": 0.61376953125}, {"start": 77.52, "end": 78.26, "word": " new", "probability": 0.3154296875}, {"start": 78.26, "end": 78.26, "word": " shapes", "probability": 0.470703125}, {"start": 78.26, "end": 78.44, "word": " and", "probability": 0.63037109375}, {"start": 78.44, "end": 78.74, "word": " change", "probability": 0.712890625}, {"start": 78.74, "end": 79.36, "word": " them,", "probability": 0.75439453125}, {"start": 79.44, "end": 81.62, "word": " the", "probability": 0.333251953125}, {"start": 81.62, "end": 82.44, "word": " draw", "probability": 0.347900390625}, {"start": 82.44, "end": 83.3, "word": " manager", "probability": 0.86279296875}, {"start": 83.3, "end": 83.62, "word": " will", "probability": 0.432373046875}, {"start": 83.62, "end": 83.62, "word": " not", "probability": 0.85400390625}, {"start": 83.62, "end": 83.62, "word": " be", "probability": 0.72314453125}, {"start": 83.62, "end": 83.62, "word": " affected", "probability": 0.80029296875}, {"start": 83.62, "end": 83.9, "word": " by", "probability": 0.48779296875}, {"start": 83.9, "end": 85.08, "word": " using", "probability": 0.272216796875}, {"start": 85.08, "end": 85.34, "word": " the", "probability": 0.6435546875}, {"start": 85.34, "end": 85.86, "word": " interface,", "probability": 0.86865234375}, {"start": 85.96, "end": 86.06, "word": " which", "probability": 0.71337890625}, {"start": 86.06, "end": 86.28, "word": " is", "probability": 0.2091064453125}, {"start": 86.28, "end": 86.78, "word": " useful", "probability": 0.265869140625}, {"start": 86.78, "end": 87.02, "word": " to", "probability": 0.487548828125}, {"start": 87.02, "end": 87.34, "word": " combine", "probability": 0.27197265625}, {"start": 87.34, "end": 88.1, "word": " things", "probability": 0.473388671875}, {"start": 88.1, "end": 88.42, "word": " that", "probability": 0.677734375}, {"start": 88.42, "end": 88.42, "word": " do", "probability": 0.3935546875}, {"start": 88.42, "end": 88.48, "word": " not", "probability": 0.94189453125}, {"start": 88.48, "end": 88.54, "word": " exist", "probability": 0.6767578125}, {"start": 88.54, "end": 88.66, "word": " in", "probability": 0.1666259765625}, {"start": 88.66, "end": 89.3, "word": " common", "probability": 0.67578125}, {"start": 89.3, "end": 90.6, "word": " to", "probability": 0.505859375}, {"start": 90.6, "end": 91.08, "word": " benefit", "probability": 0.5927734375}, {"start": 91.08, "end": 91.26, "word": " from", "probability": 0.8603515625}, {"start": 91.26, "end": 91.8, "word": " the", "probability": 0.43115234375}, {"start": 91.8, "end": 92.52, "word": " polymorphism.", "probability": 0.8447265625}], "temperature": 1.0}, {"id": 5, "seek": 12183, "start": 95.27, "end": 121.83, "text": " We will quickly go through something that you took for granted which is UML class diagrams In general, what is the benefit of UML diagrams? The benefit is that you can do planning or planning for the project that you want to do There are different types of UML diagrams For example, we have the use case diagrams, right? The benefits of them is that you can understand who are the main actors in the application and what are the main functionalities", "tokens": [492, 486, 2661, 352, 807, 746, 300, 291, 1890, 337, 12344, 597, 307, 624, 12683, 1508, 36709, 682, 2674, 11, 437, 307, 264, 5121, 295, 624, 12683, 36709, 30, 440, 5121, 307, 300, 291, 393, 360, 5038, 420, 5038, 337, 264, 1716, 300, 291, 528, 281, 360, 821, 366, 819, 3467, 295, 624, 12683, 36709, 1171, 1365, 11, 321, 362, 264, 764, 1389, 36709, 11, 558, 30, 440, 5311, 295, 552, 307, 300, 291, 393, 1223, 567, 366, 264, 2135, 10037, 294, 264, 3861, 293, 437, 366, 264, 2135, 11745, 1088], "avg_logprob": -0.5339673815861993, "compression_ratio": 1.829268292682927, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 95.27, "end": 95.47, "word": " We", "probability": 0.2452392578125}, {"start": 95.47, "end": 95.71, "word": " will", "probability": 0.57080078125}, {"start": 95.71, "end": 96.51, "word": " quickly", "probability": 0.2724609375}, {"start": 96.51, "end": 96.51, "word": " go", "probability": 0.480712890625}, {"start": 96.51, "end": 96.83, "word": " through", "probability": 0.5537109375}, {"start": 96.83, "end": 97.33, "word": " something", "probability": 0.402587890625}, {"start": 97.33, "end": 97.41, "word": " that", "probability": 0.481201171875}, {"start": 97.41, "end": 97.57, "word": " you", "probability": 0.8310546875}, {"start": 97.57, "end": 97.87, "word": " took", "probability": 0.2254638671875}, {"start": 97.87, "end": 98.49, "word": " for", "probability": 0.200439453125}, {"start": 98.49, "end": 98.75, "word": " granted", "probability": 0.58544921875}, {"start": 98.75, "end": 99.59, "word": " which", "probability": 0.303466796875}, {"start": 99.59, "end": 99.77, "word": " is", "probability": 0.8408203125}, {"start": 99.77, "end": 100.55, "word": " UML", "probability": 0.654541015625}, {"start": 100.55, "end": 101.21, "word": " class", "probability": 0.6259765625}, {"start": 101.21, "end": 101.59, "word": " diagrams", "probability": 0.79248046875}, {"start": 101.59, "end": 101.87, "word": " In", "probability": 0.25048828125}, {"start": 101.87, "end": 102.37, "word": " general,", "probability": 0.88525390625}, {"start": 102.89, "end": 103.05, "word": " what", "probability": 0.80419921875}, {"start": 103.05, "end": 103.05, "word": " is", "probability": 0.4462890625}, {"start": 103.05, "end": 103.05, "word": " the", "probability": 0.74951171875}, {"start": 103.05, "end": 103.05, "word": " benefit", "probability": 0.240478515625}, {"start": 103.05, "end": 103.05, "word": " of", "probability": 0.9541015625}, {"start": 103.05, "end": 103.27, "word": " UML", "probability": 0.864013671875}, {"start": 103.27, "end": 103.85, "word": " diagrams?", "probability": 0.5712890625}, {"start": 105.23, "end": 105.71, "word": " The", "probability": 0.258056640625}, {"start": 105.71, "end": 105.85, "word": " benefit", "probability": 0.685546875}, {"start": 105.85, "end": 106.13, "word": " is", "probability": 0.85791015625}, {"start": 106.13, "end": 106.21, "word": " that", "probability": 0.56787109375}, {"start": 106.21, "end": 106.37, "word": " you", "probability": 0.9482421875}, {"start": 106.37, "end": 106.43, "word": " can", "probability": 0.461669921875}, {"start": 106.43, "end": 106.73, "word": " do", "probability": 0.3125}, {"start": 106.73, "end": 107.41, "word": " planning", "probability": 0.9091796875}, {"start": 107.41, "end": 107.91, "word": " or", "probability": 0.459228515625}, {"start": 107.91, "end": 108.85, "word": " planning", "probability": 0.62939453125}, {"start": 108.85, "end": 109.29, "word": " for", "probability": 0.6689453125}, {"start": 109.29, "end": 109.49, "word": " the", "probability": 0.701171875}, {"start": 109.49, "end": 109.73, "word": " project", "probability": 0.94482421875}, {"start": 109.73, "end": 109.87, "word": " that", "probability": 0.66455078125}, {"start": 109.87, "end": 110.01, "word": " you", "probability": 0.96240234375}, {"start": 110.01, "end": 110.19, "word": " want", "probability": 0.734375}, {"start": 110.19, "end": 110.23, "word": " to", "probability": 0.95263671875}, {"start": 110.23, "end": 110.71, "word": " do", "probability": 0.54541015625}, {"start": 110.71, "end": 111.21, "word": " There", "probability": 0.28955078125}, {"start": 111.21, "end": 111.61, "word": " are", "probability": 0.90576171875}, {"start": 111.61, "end": 111.75, "word": " different", "probability": 0.32421875}, {"start": 111.75, "end": 111.93, "word": " types", "probability": 0.64990234375}, {"start": 111.93, "end": 112.07, "word": " of", "probability": 0.9697265625}, {"start": 112.07, "end": 112.31, "word": " UML", "probability": 0.937744140625}, {"start": 112.31, "end": 112.73, "word": " diagrams", "probability": 0.77783203125}, {"start": 112.73, "end": 113.39, "word": " For", "probability": 0.335693359375}, {"start": 113.39, "end": 113.69, "word": " example,", "probability": 0.90234375}, {"start": 113.77, "end": 113.77, "word": " we", "probability": 0.434326171875}, {"start": 113.77, "end": 113.91, "word": " have", "probability": 0.93408203125}, {"start": 113.91, "end": 113.99, "word": " the", "probability": 0.296142578125}, {"start": 113.99, "end": 114.21, "word": " use", "probability": 0.70703125}, {"start": 114.21, "end": 114.41, "word": " case", "probability": 0.82373046875}, {"start": 114.41, "end": 114.79, "word": " diagrams,", "probability": 0.486083984375}, {"start": 114.87, "end": 115.01, "word": " right?", "probability": 0.3876953125}, {"start": 115.19, "end": 115.63, "word": " The", "probability": 0.1583251953125}, {"start": 115.63, "end": 116.19, "word": " benefits", "probability": 0.3994140625}, {"start": 116.19, "end": 116.43, "word": " of", "probability": 0.68408203125}, {"start": 116.43, "end": 116.59, "word": " them", "probability": 0.52880859375}, {"start": 116.59, "end": 117.11, "word": " is", "probability": 0.4775390625}, {"start": 117.11, "end": 117.15, "word": " that", "probability": 0.7880859375}, {"start": 117.15, "end": 117.29, "word": " you", "probability": 0.93505859375}, {"start": 117.29, "end": 117.37, "word": " can", "probability": 0.40185546875}, {"start": 117.37, "end": 117.61, "word": " understand", "probability": 0.58837890625}, {"start": 117.61, "end": 117.87, "word": " who", "probability": 0.6533203125}, {"start": 117.87, "end": 117.95, "word": " are", "probability": 0.75048828125}, {"start": 117.95, "end": 117.99, "word": " the", "probability": 0.919921875}, {"start": 117.99, "end": 117.99, "word": " main", "probability": 0.62841796875}, {"start": 117.99, "end": 118.57, "word": " actors", "probability": 0.89990234375}, {"start": 118.57, "end": 119.31, "word": " in", "probability": 0.78466796875}, {"start": 119.31, "end": 119.45, "word": " the", "probability": 0.84912109375}, {"start": 119.45, "end": 119.87, "word": " application", "probability": 0.75732421875}, {"start": 119.87, "end": 120.07, "word": " and", "probability": 0.84130859375}, {"start": 120.07, "end": 120.27, "word": " what", "probability": 0.80859375}, {"start": 120.27, "end": 120.31, "word": " are", "probability": 0.8720703125}, {"start": 120.31, "end": 120.53, "word": " the", "probability": 0.76416015625}, {"start": 120.53, "end": 120.53, "word": " main", "probability": 0.46875}, {"start": 120.53, "end": 121.83, "word": " functionalities", "probability": 0.874267578125}], "temperature": 1.0}, {"id": 6, "seek": 15100, "start": 125.32, "end": 151.0, "text": " The use case diagram is like an overview that shows you what functions will be used by whom. There is another UML diagram, which is the class diagram, which shows you how the code is structured. This is the most important thing in this course. All this course is a class diagram. Because we study code design. Okay? And this is what we will focus on in this lecture. There are other types of UML diagrams, such as sequence diagrams.", "tokens": [440, 764, 1389, 10686, 307, 411, 364, 12492, 300, 3110, 291, 437, 6828, 486, 312, 1143, 538, 7101, 13, 821, 307, 1071, 624, 12683, 10686, 11, 597, 307, 264, 1508, 10686, 11, 597, 3110, 291, 577, 264, 3089, 307, 18519, 13, 639, 307, 264, 881, 1021, 551, 294, 341, 1164, 13, 1057, 341, 1164, 307, 257, 1508, 10686, 13, 1436, 321, 2979, 3089, 1715, 13, 1033, 30, 400, 341, 307, 437, 321, 486, 1879, 322, 294, 341, 7991, 13, 821, 366, 661, 3467, 295, 624, 12683, 36709, 11, 1270, 382, 8310, 36709, 13], "avg_logprob": -0.5455451937431984, "compression_ratio": 1.7892561983471074, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 125.32, "end": 125.84, "word": " The", "probability": 0.296142578125}, {"start": 125.84, "end": 126.36, "word": " use", "probability": 0.55615234375}, {"start": 126.36, "end": 126.56, "word": " case", "probability": 0.8037109375}, {"start": 126.56, "end": 126.88, "word": " diagram", "probability": 0.9169921875}, {"start": 126.88, "end": 127.66, "word": " is", "probability": 0.228515625}, {"start": 127.66, "end": 127.84, "word": " like", "probability": 0.3212890625}, {"start": 127.84, "end": 128.06, "word": " an", "probability": 0.71728515625}, {"start": 128.06, "end": 128.4, "word": " overview", "probability": 0.9296875}, {"start": 128.4, "end": 128.62, "word": " that", "probability": 0.369140625}, {"start": 128.62, "end": 128.96, "word": " shows", "probability": 0.289306640625}, {"start": 128.96, "end": 129.0, "word": " you", "probability": 0.382568359375}, {"start": 129.0, "end": 129.32, "word": " what", "probability": 0.38525390625}, {"start": 129.32, "end": 129.54, "word": " functions", "probability": 0.227783203125}, {"start": 129.54, "end": 130.18, "word": " will", "probability": 0.1397705078125}, {"start": 130.18, "end": 130.48, "word": " be", "probability": 0.76611328125}, {"start": 130.48, "end": 130.82, "word": " used", "probability": 0.8701171875}, {"start": 130.82, "end": 130.96, "word": " by", "probability": 0.5087890625}, {"start": 130.96, "end": 130.96, "word": " whom.", "probability": 0.6298828125}, {"start": 131.4, "end": 131.92, "word": " There", "probability": 0.326904296875}, {"start": 131.92, "end": 131.92, "word": " is", "probability": 0.7763671875}, {"start": 131.92, "end": 132.06, "word": " another", "probability": 0.74658203125}, {"start": 132.06, "end": 132.16, "word": " UML", "probability": 0.582275390625}, {"start": 132.16, "end": 132.56, "word": " diagram,", "probability": 0.8896484375}, {"start": 132.92, "end": 132.92, "word": " which", "probability": 0.396484375}, {"start": 132.92, "end": 133.06, "word": " is", "probability": 0.85302734375}, {"start": 133.06, "end": 133.42, "word": " the", "probability": 0.331787109375}, {"start": 133.42, "end": 133.76, "word": " class", "probability": 0.85107421875}, {"start": 133.76, "end": 134.08, "word": " diagram,", "probability": 0.89501953125}, {"start": 134.3, "end": 134.52, "word": " which", "probability": 0.58544921875}, {"start": 134.52, "end": 134.78, "word": " shows", "probability": 0.3427734375}, {"start": 134.78, "end": 135.3, "word": " you", "probability": 0.759765625}, {"start": 135.3, "end": 135.46, "word": " how", "probability": 0.54296875}, {"start": 135.46, "end": 135.62, "word": " the", "probability": 0.483642578125}, {"start": 135.62, "end": 136.06, "word": " code", "probability": 0.74560546875}, {"start": 136.06, "end": 136.3, "word": " is", "probability": 0.298828125}, {"start": 136.3, "end": 136.76, "word": " structured.", "probability": 0.87353515625}, {"start": 137.68, "end": 138.2, "word": " This", "probability": 0.1988525390625}, {"start": 138.2, "end": 138.2, "word": " is", "probability": 0.489013671875}, {"start": 138.2, "end": 138.42, "word": " the", "probability": 0.449951171875}, {"start": 138.42, "end": 138.48, "word": " most", "probability": 0.578125}, {"start": 138.48, "end": 139.1, "word": " important", "probability": 0.7099609375}, {"start": 139.1, "end": 139.12, "word": " thing", "probability": 0.5947265625}, {"start": 139.12, "end": 139.44, "word": " in", "probability": 0.3564453125}, {"start": 139.44, "end": 139.54, "word": " this", "probability": 0.64794921875}, {"start": 139.54, "end": 139.86, "word": " course.", "probability": 0.462890625}, {"start": 140.34, "end": 140.58, "word": " All", "probability": 0.51025390625}, {"start": 140.58, "end": 140.68, "word": " this", "probability": 0.339111328125}, {"start": 140.68, "end": 141.0, "word": " course", "probability": 0.8603515625}, {"start": 141.0, "end": 141.24, "word": " is", "probability": 0.89990234375}, {"start": 141.24, "end": 142.14, "word": " a", "probability": 0.45849609375}, {"start": 142.14, "end": 142.58, "word": " class", "probability": 0.93505859375}, {"start": 142.58, "end": 142.9, "word": " diagram.", "probability": 0.91162109375}, {"start": 143.32, "end": 143.6, "word": " Because", "probability": 0.78173828125}, {"start": 143.6, "end": 143.76, "word": " we", "probability": 0.8798828125}, {"start": 143.76, "end": 144.02, "word": " study", "probability": 0.35693359375}, {"start": 144.02, "end": 144.28, "word": " code", "probability": 0.853515625}, {"start": 144.28, "end": 144.68, "word": " design.", "probability": 0.97119140625}, {"start": 145.28, "end": 145.42, "word": " Okay?", "probability": 0.2320556640625}, {"start": 146.26, "end": 146.62, "word": " And", "probability": 0.34228515625}, {"start": 146.62, "end": 146.72, "word": " this", "probability": 0.2398681640625}, {"start": 146.72, "end": 146.72, "word": " is", "probability": 0.78662109375}, {"start": 146.72, "end": 146.72, "word": " what", "probability": 0.7880859375}, {"start": 146.72, "end": 146.8, "word": " we", "probability": 0.66064453125}, {"start": 146.8, "end": 146.84, "word": " will", "probability": 0.65625}, {"start": 146.84, "end": 147.1, "word": " focus", "probability": 0.853515625}, {"start": 147.1, "end": 147.32, "word": " on", "probability": 0.91748046875}, {"start": 147.32, "end": 147.46, "word": " in", "probability": 0.8017578125}, {"start": 147.46, "end": 147.5, "word": " this", "probability": 0.9033203125}, {"start": 147.5, "end": 147.88, "word": " lecture.", "probability": 0.8818359375}, {"start": 148.36, "end": 148.54, "word": " There", "probability": 0.814453125}, {"start": 148.54, "end": 148.58, "word": " are", "probability": 0.90771484375}, {"start": 148.58, "end": 148.64, "word": " other", "probability": 0.8017578125}, {"start": 148.64, "end": 148.88, "word": " types", "probability": 0.716796875}, {"start": 148.88, "end": 149.42, "word": " of", "probability": 0.9638671875}, {"start": 149.42, "end": 149.62, "word": " UML", "probability": 0.927734375}, {"start": 149.62, "end": 150.04, "word": " diagrams,", "probability": 0.71240234375}, {"start": 150.12, "end": 150.28, "word": " such", "probability": 0.6298828125}, {"start": 150.28, "end": 150.3, "word": " as", "probability": 0.97265625}, {"start": 150.3, "end": 150.72, "word": " sequence", "probability": 0.5869140625}, {"start": 150.72, "end": 151.0, "word": " diagrams.", "probability": 0.80322265625}], "temperature": 1.0}, {"id": 7, "seek": 16966, "start": 151.8, "end": 169.66, "text": "What is the benefit of the sequence diagram? It shows the behavior, how the program works. This part is sent to this one, and this one is sent to this one, and this one responds to this one. The class diagram does not show you the work. Right or wrong? It does not show the program in action. It only shows that this is the code and this is the relationship between them.", "tokens": [3748, 307, 264, 5121, 295, 264, 8310, 10686, 30, 467, 3110, 264, 5223, 11, 577, 264, 1461, 1985, 13, 639, 644, 307, 2279, 281, 341, 472, 11, 293, 341, 472, 307, 2279, 281, 341, 472, 11, 293, 341, 472, 27331, 281, 341, 472, 13, 440, 1508, 10686, 775, 406, 855, 291, 264, 589, 13, 1779, 420, 2085, 30, 467, 775, 406, 855, 264, 1461, 294, 3069, 13, 467, 787, 3110, 300, 341, 307, 264, 3089, 293, 341, 307, 264, 2480, 1296, 552, 13], "avg_logprob": -0.41145833226896467, "compression_ratio": 1.9322916666666667, "no_speech_prob": 0.0, "words": [{"start": 151.8, "end": 152.08, "word": "What", "probability": 0.37255859375}, {"start": 152.08, "end": 152.12, "word": " is", "probability": 0.53076171875}, {"start": 152.12, "end": 152.2, "word": " the", "probability": 0.693359375}, {"start": 152.2, "end": 152.34, "word": " benefit", "probability": 0.35546875}, {"start": 152.34, "end": 152.5, "word": " of", "probability": 0.9345703125}, {"start": 152.5, "end": 152.58, "word": " the", "probability": 0.192138671875}, {"start": 152.58, "end": 152.84, "word": " sequence", "probability": 0.833984375}, {"start": 152.84, "end": 153.1, "word": " diagram?", "probability": 0.82763671875}, {"start": 153.32, "end": 153.36, "word": " It", "probability": 0.51904296875}, {"start": 153.36, "end": 153.58, "word": " shows", "probability": 0.77294921875}, {"start": 153.58, "end": 153.72, "word": " the", "probability": 0.51416015625}, {"start": 153.72, "end": 154.18, "word": " behavior,", "probability": 0.64599609375}, {"start": 154.76, "end": 154.92, "word": " how", "probability": 0.72119140625}, {"start": 154.92, "end": 155.04, "word": " the", "probability": 0.65673828125}, {"start": 155.04, "end": 155.3, "word": " program", "probability": 0.8291015625}, {"start": 155.3, "end": 155.76, "word": " works.", "probability": 0.7314453125}, {"start": 156.24, "end": 156.42, "word": " This", "probability": 0.38916015625}, {"start": 156.42, "end": 156.74, "word": " part", "probability": 0.65234375}, {"start": 156.74, "end": 156.86, "word": " is", "probability": 0.1983642578125}, {"start": 156.86, "end": 157.04, "word": " sent", "probability": 0.5439453125}, {"start": 157.04, "end": 157.14, "word": " to", "probability": 0.92041015625}, {"start": 157.14, "end": 157.38, "word": " this", "probability": 0.76611328125}, {"start": 157.38, "end": 157.44, "word": " one,", "probability": 0.365966796875}, {"start": 157.52, "end": 157.58, "word": " and", "probability": 0.40234375}, {"start": 157.58, "end": 157.68, "word": " this", "probability": 0.666015625}, {"start": 157.68, "end": 157.74, "word": " one", "probability": 0.47021484375}, {"start": 157.74, "end": 157.78, "word": " is", "probability": 0.42138671875}, {"start": 157.78, "end": 157.92, "word": " sent", "probability": 0.7548828125}, {"start": 157.92, "end": 158.04, "word": " to", "probability": 0.94384765625}, {"start": 158.04, "end": 158.28, "word": " this", "probability": 0.833984375}, {"start": 158.28, "end": 158.3, "word": " one,", "probability": 0.9091796875}, {"start": 158.32, "end": 158.38, "word": " and", "probability": 0.8583984375}, {"start": 158.38, "end": 158.5, "word": " this", "probability": 0.873046875}, {"start": 158.5, "end": 158.56, "word": " one", "probability": 0.76171875}, {"start": 158.56, "end": 158.76, "word": " responds", "probability": 0.6904296875}, {"start": 158.76, "end": 158.94, "word": " to", "probability": 0.9560546875}, {"start": 158.94, "end": 159.22, "word": " this", "probability": 0.8828125}, {"start": 159.22, "end": 159.58, "word": " one.", "probability": 0.91259765625}, {"start": 160.38, "end": 160.76, "word": " The", "probability": 0.2861328125}, {"start": 160.76, "end": 161.06, "word": " class", "probability": 0.86767578125}, {"start": 161.06, "end": 161.32, "word": " diagram", "probability": 0.84765625}, {"start": 161.32, "end": 161.52, "word": " does", "probability": 0.6279296875}, {"start": 161.52, "end": 161.52, "word": " not", "probability": 0.94970703125}, {"start": 161.52, "end": 161.76, "word": " show", "probability": 0.86669921875}, {"start": 161.76, "end": 161.92, "word": " you", "probability": 0.56640625}, {"start": 161.92, "end": 162.0, "word": " the", "probability": 0.533203125}, {"start": 162.0, "end": 162.2, "word": " work.", "probability": 0.5771484375}, {"start": 162.88, "end": 163.04, "word": " Right", "probability": 0.472900390625}, {"start": 163.04, "end": 163.22, "word": " or", "probability": 0.70751953125}, {"start": 163.22, "end": 163.3, "word": " wrong?", "probability": 0.587890625}, {"start": 163.6, "end": 163.82, "word": " It", "probability": 0.607421875}, {"start": 163.82, "end": 163.9, "word": " does", "probability": 0.81787109375}, {"start": 163.9, "end": 163.9, "word": " not", "probability": 0.9521484375}, {"start": 163.9, "end": 164.16, "word": " show", "probability": 0.90234375}, {"start": 164.16, "end": 164.9, "word": " the", "probability": 0.61328125}, {"start": 164.9, "end": 165.3, "word": " program", "probability": 0.89990234375}, {"start": 165.3, "end": 165.48, "word": " in", "probability": 0.88818359375}, {"start": 165.48, "end": 165.88, "word": " action.", "probability": 0.92822265625}, {"start": 166.54, "end": 166.66, "word": " It", "probability": 0.84130859375}, {"start": 166.66, "end": 167.04, "word": " only", "probability": 0.61474609375}, {"start": 167.04, "end": 167.04, "word": " shows", "probability": 0.88525390625}, {"start": 167.04, "end": 167.62, "word": " that", "probability": 0.474365234375}, {"start": 167.62, "end": 167.98, "word": " this", "probability": 0.67822265625}, {"start": 167.98, "end": 167.98, "word": " is", "probability": 0.9130859375}, {"start": 167.98, "end": 168.1, "word": " the", "probability": 0.86962890625}, {"start": 168.1, "end": 168.4, "word": " code", "probability": 0.93603515625}, {"start": 168.4, "end": 168.6, "word": " and", "probability": 0.783203125}, {"start": 168.6, "end": 168.84, "word": " this", "probability": 0.4013671875}, {"start": 168.84, "end": 168.84, "word": " is", "probability": 0.92138671875}, {"start": 168.84, "end": 168.94, "word": " the", "probability": 0.890625}, {"start": 168.94, "end": 169.24, "word": " relationship", "probability": 0.85595703125}, {"start": 169.24, "end": 169.5, "word": " between", "probability": 0.84716796875}, {"start": 169.5, "end": 169.66, "word": " them.", "probability": 0.8955078125}], "temperature": 1.0}, {"id": 8, "seek": 18702, "start": 170.22, "end": 187.02, "text": "We are working on code design and structure in class diagram and our topic today is a quick review of the class diagram Why? Because when you see the design pattern, I will tell you how to draw it", "tokens": [4360, 366, 1364, 322, 3089, 1715, 293, 3877, 294, 1508, 10686, 293, 527, 4829, 965, 307, 257, 1702, 3131, 295, 264, 1508, 10686, 1545, 30, 1436, 562, 291, 536, 264, 1715, 5102, 11, 286, 486, 980, 291, 577, 281, 2642, 309], "avg_logprob": -0.5900297519706544, "compression_ratio": 1.4202898550724639, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 170.22, "end": 170.48, "word": "We", "probability": 0.2998046875}, {"start": 170.48, "end": 170.6, "word": " are", "probability": 0.42529296875}, {"start": 170.6, "end": 170.76, "word": " working", "probability": 0.281982421875}, {"start": 170.76, "end": 172.68, "word": " on", "probability": 0.409423828125}, {"start": 172.68, "end": 172.88, "word": " code", "probability": 0.537109375}, {"start": 172.88, "end": 173.3, "word": " design", "probability": 0.904296875}, {"start": 173.3, "end": 173.42, "word": " and", "probability": 0.74169921875}, {"start": 173.42, "end": 173.94, "word": " structure", "probability": 0.73876953125}, {"start": 173.94, "end": 174.7, "word": " in", "probability": 0.441162109375}, {"start": 174.7, "end": 175.96, "word": " class", "probability": 0.52490234375}, {"start": 175.96, "end": 176.3, "word": " diagram", "probability": 0.77587890625}, {"start": 176.3, "end": 176.42, "word": " and", "probability": 0.326416015625}, {"start": 176.42, "end": 176.5, "word": " our", "probability": 0.3876953125}, {"start": 176.5, "end": 176.7, "word": " topic", "probability": 0.62646484375}, {"start": 176.7, "end": 177.18, "word": " today", "probability": 0.5283203125}, {"start": 177.18, "end": 177.96, "word": " is", "probability": 0.9140625}, {"start": 177.96, "end": 178.2, "word": " a", "probability": 0.517578125}, {"start": 178.2, "end": 178.8, "word": " quick", "probability": 0.509765625}, {"start": 178.8, "end": 178.88, "word": " review", "probability": 0.76025390625}, {"start": 178.88, "end": 179.8, "word": " of", "probability": 0.6044921875}, {"start": 179.8, "end": 180.28, "word": " the", "probability": 0.50732421875}, {"start": 180.28, "end": 180.56, "word": " class", "probability": 0.951171875}, {"start": 180.56, "end": 180.96, "word": " diagram", "probability": 0.8896484375}, {"start": 180.96, "end": 181.3, "word": " Why?", "probability": 0.1163330078125}, {"start": 182.02, "end": 182.26, "word": " Because", "probability": 0.5888671875}, {"start": 182.26, "end": 182.8, "word": " when", "probability": 0.434814453125}, {"start": 182.8, "end": 182.96, "word": " you", "probability": 0.5869140625}, {"start": 182.96, "end": 184.54, "word": " see", "probability": 0.54736328125}, {"start": 184.54, "end": 184.7, "word": " the", "probability": 0.78173828125}, {"start": 184.7, "end": 184.98, "word": " design", "probability": 0.79736328125}, {"start": 184.98, "end": 185.02, "word": " pattern,", "probability": 0.68115234375}, {"start": 185.34, "end": 185.52, "word": " I", "probability": 0.6748046875}, {"start": 185.52, "end": 185.62, "word": " will", "probability": 0.69287109375}, {"start": 185.62, "end": 185.78, "word": " tell", "probability": 0.259765625}, {"start": 185.78, "end": 185.94, "word": " you", "probability": 0.9580078125}, {"start": 185.94, "end": 186.2, "word": " how", "probability": 0.56005859375}, {"start": 186.2, "end": 186.66, "word": " to", "probability": 0.339111328125}, {"start": 186.66, "end": 186.8, "word": " draw", "probability": 0.693359375}, {"start": 186.8, "end": 187.02, "word": " it", "probability": 0.82763671875}], "temperature": 1.0}, {"id": 9, "seek": 21694, "start": 188.68, "end": 216.94, "text": " You need to see the drawing, read it, and understand how this drawing can be converted into code. Nowadays, all kinds of diagrams, especially class diagrams, why did they do it? Programmers can work in different languages. Those who run PHP, those who run on a framework, those who run Java, all right? Each person has a different syntax. But in the end, they came up with a unified drawing, to see this drawing and understand how the code is designed, regardless of the language of this program.", "tokens": [509, 643, 281, 536, 264, 6316, 11, 1401, 309, 11, 293, 1223, 577, 341, 6316, 393, 312, 16424, 666, 3089, 13, 28908, 11, 439, 3685, 295, 36709, 11, 2318, 1508, 36709, 11, 983, 630, 436, 360, 309, 30, 8338, 18552, 393, 589, 294, 819, 8650, 13, 3950, 567, 1190, 47298, 11, 729, 567, 1190, 322, 257, 8388, 11, 729, 567, 1190, 10745, 11, 439, 558, 30, 6947, 954, 575, 257, 819, 28431, 13, 583, 294, 264, 917, 11, 436, 1361, 493, 365, 257, 26787, 6316, 11, 281, 536, 341, 6316, 293, 1223, 577, 264, 3089, 307, 4761, 11, 10060, 295, 264, 2856, 295, 341, 1461, 13], "avg_logprob": -0.4912383227704841, "compression_ratio": 1.7942238267148014, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 188.68, "end": 188.82, "word": " You", "probability": 0.453857421875}, {"start": 188.82, "end": 188.98, "word": " need", "probability": 0.294921875}, {"start": 188.98, "end": 189.08, "word": " to", "probability": 0.95947265625}, {"start": 189.08, "end": 189.28, "word": " see", "probability": 0.35791015625}, {"start": 189.28, "end": 189.38, "word": " the", "probability": 0.66455078125}, {"start": 189.38, "end": 189.54, "word": " drawing,", "probability": 0.384033203125}, {"start": 189.68, "end": 189.92, "word": " read", "probability": 0.9462890625}, {"start": 189.92, "end": 190.16, "word": " it,", "probability": 0.9228515625}, {"start": 190.28, "end": 190.42, "word": " and", "probability": 0.90380859375}, {"start": 190.42, "end": 190.8, "word": " understand", "probability": 0.56298828125}, {"start": 190.8, "end": 191.16, "word": " how", "probability": 0.91162109375}, {"start": 191.16, "end": 191.28, "word": " this", "probability": 0.16455078125}, {"start": 191.28, "end": 191.52, "word": " drawing", "probability": 0.80810546875}, {"start": 191.52, "end": 191.8, "word": " can", "probability": 0.73095703125}, {"start": 191.8, "end": 191.96, "word": " be", "probability": 0.88037109375}, {"start": 191.96, "end": 192.26, "word": " converted", "probability": 0.52197265625}, {"start": 192.26, "end": 193.16, "word": " into", "probability": 0.462158203125}, {"start": 193.16, "end": 193.48, "word": " code.", "probability": 0.83642578125}, {"start": 193.94, "end": 194.3, "word": " Nowadays,", "probability": 0.2437744140625}, {"start": 194.38, "end": 194.76, "word": " all", "probability": 0.61474609375}, {"start": 194.76, "end": 194.76, "word": " kinds", "probability": 0.31103515625}, {"start": 194.76, "end": 195.46, "word": " of", "probability": 0.9716796875}, {"start": 195.46, "end": 195.46, "word": " diagrams,", "probability": 0.2626953125}, {"start": 196.6, "end": 196.98, "word": " especially", "probability": 0.712890625}, {"start": 196.98, "end": 197.5, "word": " class", "probability": 0.71240234375}, {"start": 197.5, "end": 197.76, "word": " diagrams,", "probability": 0.91259765625}, {"start": 197.82, "end": 197.98, "word": " why", "probability": 0.2445068359375}, {"start": 197.98, "end": 198.22, "word": " did", "probability": 0.58447265625}, {"start": 198.22, "end": 198.3, "word": " they", "probability": 0.880859375}, {"start": 198.3, "end": 198.3, "word": " do", "probability": 0.63037109375}, {"start": 198.3, "end": 198.44, "word": " it?", "probability": 0.54248046875}, {"start": 199.2, "end": 199.68, "word": " Programmers", "probability": 0.6690673828125}, {"start": 199.68, "end": 199.94, "word": " can", "probability": 0.818359375}, {"start": 199.94, "end": 200.16, "word": " work", "probability": 0.8740234375}, {"start": 200.16, "end": 200.26, "word": " in", "probability": 0.76025390625}, {"start": 200.26, "end": 200.96, "word": " different", "probability": 0.7158203125}, {"start": 200.96, "end": 200.96, "word": " languages.", "probability": 0.97802734375}, {"start": 201.46, "end": 201.66, "word": " Those", "probability": 0.10614013671875}, {"start": 201.66, "end": 201.72, "word": " who", "probability": 0.81982421875}, {"start": 201.72, "end": 201.94, "word": " run", "probability": 0.5498046875}, {"start": 201.94, "end": 202.42, "word": " PHP,", "probability": 0.9482421875}, {"start": 202.8, "end": 202.8, "word": " those", "probability": 0.60986328125}, {"start": 202.8, "end": 202.88, "word": " who", "probability": 0.81396484375}, {"start": 202.88, "end": 203.26, "word": " run", "probability": 0.70458984375}, {"start": 203.26, "end": 203.44, "word": " on", "probability": 0.346435546875}, {"start": 203.44, "end": 203.54, "word": " a", "probability": 0.35888671875}, {"start": 203.54, "end": 203.96, "word": " framework,", "probability": 0.65087890625}, {"start": 204.12, "end": 204.22, "word": " those", "probability": 0.603515625}, {"start": 204.22, "end": 204.28, "word": " who", "probability": 0.89404296875}, {"start": 204.28, "end": 204.58, "word": " run", "probability": 0.818359375}, {"start": 204.58, "end": 204.96, "word": " Java,", "probability": 0.86474609375}, {"start": 205.06, "end": 205.9, "word": " all", "probability": 0.1612548828125}, {"start": 205.9, "end": 205.98, "word": " right?", "probability": 0.724609375}, {"start": 206.1, "end": 206.24, "word": " Each", "probability": 0.720703125}, {"start": 206.24, "end": 206.48, "word": " person", "probability": 0.3623046875}, {"start": 206.48, "end": 206.78, "word": " has", "probability": 0.93212890625}, {"start": 206.78, "end": 206.84, "word": " a", "probability": 0.771484375}, {"start": 206.84, "end": 206.84, "word": " different", "probability": 0.8955078125}, {"start": 206.84, "end": 207.18, "word": " syntax.", "probability": 0.9599609375}, {"start": 208.18, "end": 208.34, "word": " But", "probability": 0.7919921875}, {"start": 208.34, "end": 208.5, "word": " in", "probability": 0.371337890625}, {"start": 208.5, "end": 208.68, "word": " the", "probability": 0.9169921875}, {"start": 208.68, "end": 208.68, "word": " end,", "probability": 0.9169921875}, {"start": 208.8, "end": 208.92, "word": " they", "probability": 0.59619140625}, {"start": 208.92, "end": 209.08, "word": " came", "probability": 0.11468505859375}, {"start": 209.08, "end": 209.14, "word": " up", "probability": 0.37060546875}, {"start": 209.14, "end": 209.14, "word": " with", "probability": 0.8837890625}, {"start": 209.14, "end": 209.46, "word": " a", "probability": 0.87646484375}, {"start": 209.46, "end": 209.78, "word": " unified", "probability": 0.681640625}, {"start": 209.78, "end": 211.0, "word": " drawing,", "probability": 0.486328125}, {"start": 211.02, "end": 211.22, "word": " to", "probability": 0.496826171875}, {"start": 211.22, "end": 211.52, "word": " see", "probability": 0.61083984375}, {"start": 211.52, "end": 212.26, "word": " this", "probability": 0.74267578125}, {"start": 212.26, "end": 212.62, "word": " drawing", "probability": 0.923828125}, {"start": 212.62, "end": 212.88, "word": " and", "probability": 0.5146484375}, {"start": 212.88, "end": 213.06, "word": " understand", "probability": 0.7099609375}, {"start": 213.06, "end": 213.36, "word": " how", "probability": 0.93603515625}, {"start": 213.36, "end": 213.48, "word": " the", "probability": 0.75146484375}, {"start": 213.48, "end": 213.86, "word": " code", "probability": 0.93017578125}, {"start": 213.86, "end": 214.32, "word": " is", "probability": 0.78564453125}, {"start": 214.32, "end": 214.58, "word": " designed,", "probability": 0.71484375}, {"start": 214.7, "end": 214.94, "word": " regardless", "probability": 0.73291015625}, {"start": 214.94, "end": 215.76, "word": " of", "probability": 0.97216796875}, {"start": 215.76, "end": 215.94, "word": " the", "probability": 0.42919921875}, {"start": 215.94, "end": 216.1, "word": " language", "probability": 0.318359375}, {"start": 216.1, "end": 216.66, "word": " of", "probability": 0.91455078125}, {"start": 216.66, "end": 216.72, "word": " this", "probability": 0.68603515625}, {"start": 216.72, "end": 216.94, "word": " program.", "probability": 0.41748046875}], "temperature": 1.0}, {"id": 10, "seek": 24648, "start": 222.42, "end": 246.48, "text": "The class diagram is a structural diagram, not behavioral. Structure shows you the structure of the application Behavior shows you the behavior of the application, how it works The sequence and activity diagrams show you how the flow of the application works But the class diagram shows you the structure of the code", "tokens": [2278, 1508, 10686, 307, 257, 15067, 10686, 11, 406, 19124, 13, 745, 2885, 3110, 291, 264, 3877, 295, 264, 3861, 45807, 3110, 291, 264, 5223, 295, 264, 3861, 11, 577, 309, 1985, 440, 8310, 293, 5191, 36709, 855, 291, 577, 264, 3095, 295, 264, 3861, 1985, 583, 264, 1508, 10686, 3110, 291, 264, 3877, 295, 264, 3089], "avg_logprob": -0.4819504377143136, "compression_ratio": 2.0387096774193547, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 222.42, "end": 223.1, "word": "The", "probability": 0.0765380859375}, {"start": 223.1, "end": 223.42, "word": " class", "probability": 0.6806640625}, {"start": 223.42, "end": 223.84, "word": " diagram", "probability": 0.88916015625}, {"start": 223.84, "end": 224.2, "word": " is", "probability": 0.33642578125}, {"start": 224.2, "end": 226.02, "word": " a", "probability": 0.31103515625}, {"start": 226.02, "end": 227.16, "word": " structural", "probability": 0.76611328125}, {"start": 227.16, "end": 228.22, "word": " diagram,", "probability": 0.91845703125}, {"start": 229.62, "end": 229.74, "word": " not", "probability": 0.72900390625}, {"start": 229.74, "end": 230.24, "word": " behavioral.", "probability": 0.62841796875}, {"start": 230.3, "end": 230.78, "word": " Structure", "probability": 0.4898681640625}, {"start": 230.78, "end": 231.08, "word": " shows", "probability": 0.2509765625}, {"start": 231.08, "end": 231.22, "word": " you", "probability": 0.38330078125}, {"start": 231.22, "end": 232.08, "word": " the", "probability": 0.6025390625}, {"start": 232.08, "end": 232.36, "word": " structure", "probability": 0.5859375}, {"start": 232.36, "end": 232.58, "word": " of", "probability": 0.7705078125}, {"start": 232.58, "end": 232.74, "word": " the", "probability": 0.73046875}, {"start": 232.74, "end": 233.06, "word": " application", "probability": 0.8564453125}, {"start": 233.06, "end": 233.9, "word": " Behavior", "probability": 0.55859375}, {"start": 233.9, "end": 234.56, "word": " shows", "probability": 0.57568359375}, {"start": 234.56, "end": 234.76, "word": " you", "probability": 0.82666015625}, {"start": 234.76, "end": 234.84, "word": " the", "probability": 0.49462890625}, {"start": 234.84, "end": 235.06, "word": " behavior", "probability": 0.80810546875}, {"start": 235.06, "end": 235.16, "word": " of", "probability": 0.95849609375}, {"start": 235.16, "end": 235.22, "word": " the", "probability": 0.87353515625}, {"start": 235.22, "end": 235.56, "word": " application,", "probability": 0.884765625}, {"start": 235.58, "end": 235.84, "word": " how", "probability": 0.7705078125}, {"start": 235.84, "end": 235.88, "word": " it", "probability": 0.8212890625}, {"start": 235.88, "end": 236.28, "word": " works", "probability": 0.74951171875}, {"start": 236.28, "end": 237.26, "word": " The", "probability": 0.302490234375}, {"start": 237.26, "end": 237.6, "word": " sequence", "probability": 0.75}, {"start": 237.6, "end": 237.84, "word": " and", "probability": 0.8857421875}, {"start": 237.84, "end": 238.24, "word": " activity", "probability": 0.80419921875}, {"start": 238.24, "end": 238.78, "word": " diagrams", "probability": 0.92724609375}, {"start": 238.78, "end": 239.28, "word": " show", "probability": 0.845703125}, {"start": 239.28, "end": 239.66, "word": " you", "probability": 0.59326171875}, {"start": 239.66, "end": 239.8, "word": " how", "probability": 0.572265625}, {"start": 239.8, "end": 240.14, "word": " the", "probability": 0.615234375}, {"start": 240.14, "end": 240.46, "word": " flow", "probability": 0.763671875}, {"start": 240.46, "end": 241.02, "word": " of", "probability": 0.59814453125}, {"start": 241.02, "end": 241.28, "word": " the", "probability": 0.48046875}, {"start": 241.28, "end": 241.54, "word": " application", "probability": 0.91845703125}, {"start": 241.54, "end": 242.02, "word": " works", "probability": 0.363525390625}, {"start": 242.02, "end": 243.1, "word": " But", "probability": 0.50146484375}, {"start": 243.1, "end": 243.9, "word": " the", "probability": 0.673828125}, {"start": 243.9, "end": 244.3, "word": " class", "probability": 0.94482421875}, {"start": 244.3, "end": 244.68, "word": " diagram", "probability": 0.90625}, {"start": 244.68, "end": 245.1, "word": " shows", "probability": 0.57421875}, {"start": 245.1, "end": 245.24, "word": " you", "probability": 0.43359375}, {"start": 245.24, "end": 245.3, "word": " the", "probability": 0.84130859375}, {"start": 245.3, "end": 245.5, "word": " structure", "probability": 0.8662109375}, {"start": 245.5, "end": 246.06, "word": " of", "probability": 0.97021484375}, {"start": 246.06, "end": 246.2, "word": " the", "probability": 0.822265625}, {"start": 246.2, "end": 246.48, "word": " code", "probability": 0.939453125}], "temperature": 1.0}, {"id": 11, "seek": 27463, "start": 248.25, "end": 274.63, "text": "it is a central modeling technique that runs through nearly all object oriented methods it is used in object oriented programming languages that show the structure of the code any class diagram consists of the following things all of them or some of them there is something called class the attributes inside the class the operations which are the methods", "tokens": [270, 307, 257, 5777, 1072, 11031, 6532, 300, 6676, 807, 6217, 439, 2657, 21841, 7150, 309, 307, 1143, 294, 2657, 21841, 9410, 8650, 300, 855, 264, 3877, 295, 264, 3089, 604, 1508, 10686, 14689, 295, 264, 3480, 721, 439, 295, 552, 420, 512, 295, 552, 456, 307, 746, 1219, 1508, 264, 17212, 1854, 264, 1508, 264, 7705, 597, 366, 264, 7150], "avg_logprob": -0.5060483995945223, "compression_ratio": 1.792929292929293, "no_speech_prob": 0.0, "words": [{"start": 248.25, "end": 248.53, "word": "it", "probability": 0.2369384765625}, {"start": 248.53, "end": 248.77, "word": " is", "probability": 0.57080078125}, {"start": 248.77, "end": 249.09, "word": " a", "probability": 0.77734375}, {"start": 249.09, "end": 249.49, "word": " central", "probability": 0.65673828125}, {"start": 249.49, "end": 249.87, "word": " modeling", "probability": 0.47100830078125}, {"start": 249.87, "end": 250.33, "word": " technique", "probability": 0.91845703125}, {"start": 250.33, "end": 250.55, "word": " that", "probability": 0.79833984375}, {"start": 250.55, "end": 250.87, "word": " runs", "probability": 0.8427734375}, {"start": 250.87, "end": 251.11, "word": " through", "probability": 0.85693359375}, {"start": 251.11, "end": 251.63, "word": " nearly", "probability": 0.414794921875}, {"start": 251.63, "end": 251.95, "word": " all", "probability": 0.93994140625}, {"start": 251.95, "end": 252.29, "word": " object", "probability": 0.87548828125}, {"start": 252.29, "end": 252.67, "word": " oriented", "probability": 0.61474609375}, {"start": 252.67, "end": 253.61, "word": " methods", "probability": 0.81396484375}, {"start": 253.61, "end": 253.77, "word": " it", "probability": 0.126953125}, {"start": 253.77, "end": 253.91, "word": " is", "probability": 0.42431640625}, {"start": 253.91, "end": 254.13, "word": " used", "probability": 0.75732421875}, {"start": 254.13, "end": 254.55, "word": " in", "probability": 0.80078125}, {"start": 254.55, "end": 254.99, "word": " object", "probability": 0.78857421875}, {"start": 254.99, "end": 255.37, "word": " oriented", "probability": 0.91650390625}, {"start": 255.37, "end": 255.81, "word": " programming", "probability": 0.83837890625}, {"start": 255.81, "end": 256.87, "word": " languages", "probability": 0.73388671875}, {"start": 256.87, "end": 257.03, "word": " that", "probability": 0.2303466796875}, {"start": 257.03, "end": 257.33, "word": " show", "probability": 0.286865234375}, {"start": 257.33, "end": 257.43, "word": " the", "probability": 0.63330078125}, {"start": 257.43, "end": 257.77, "word": " structure", "probability": 0.69580078125}, {"start": 257.77, "end": 257.97, "word": " of", "probability": 0.958984375}, {"start": 257.97, "end": 258.07, "word": " the", "probability": 0.4404296875}, {"start": 258.07, "end": 258.35, "word": " code", "probability": 0.91357421875}, {"start": 258.35, "end": 259.49, "word": " any", "probability": 0.411865234375}, {"start": 259.49, "end": 259.79, "word": " class", "probability": 0.8583984375}, {"start": 259.79, "end": 260.25, "word": " diagram", "probability": 0.75146484375}, {"start": 260.25, "end": 261.69, "word": " consists", "probability": 0.35009765625}, {"start": 261.69, "end": 263.49, "word": " of", "probability": 0.7080078125}, {"start": 263.49, "end": 263.59, "word": " the", "probability": 0.19287109375}, {"start": 263.59, "end": 264.17, "word": " following", "probability": 0.79052734375}, {"start": 264.17, "end": 264.39, "word": " things", "probability": 0.333251953125}, {"start": 264.39, "end": 265.83, "word": " all", "probability": 0.46533203125}, {"start": 265.83, "end": 265.95, "word": " of", "probability": 0.431884765625}, {"start": 265.95, "end": 265.95, "word": " them", "probability": 0.84033203125}, {"start": 265.95, "end": 266.07, "word": " or", "probability": 0.90087890625}, {"start": 266.07, "end": 266.31, "word": " some", "probability": 0.83154296875}, {"start": 266.31, "end": 266.33, "word": " of", "probability": 0.8974609375}, {"start": 266.33, "end": 266.71, "word": " them", "probability": 0.89892578125}, {"start": 266.71, "end": 267.27, "word": " there", "probability": 0.5078125}, {"start": 267.27, "end": 267.47, "word": " is", "probability": 0.79931640625}, {"start": 267.47, "end": 267.97, "word": " something", "probability": 0.37548828125}, {"start": 267.97, "end": 268.33, "word": " called", "probability": 0.62451171875}, {"start": 268.33, "end": 268.83, "word": " class", "probability": 0.6943359375}, {"start": 268.83, "end": 270.25, "word": " the", "probability": 0.39794921875}, {"start": 270.25, "end": 270.75, "word": " attributes", "probability": 0.87841796875}, {"start": 270.75, "end": 271.29, "word": " inside", "probability": 0.20849609375}, {"start": 271.29, "end": 271.59, "word": " the", "probability": 0.78662109375}, {"start": 271.59, "end": 271.95, "word": " class", "probability": 0.96142578125}, {"start": 271.95, "end": 272.69, "word": " the", "probability": 0.548828125}, {"start": 272.69, "end": 273.23, "word": " operations", "probability": 0.9482421875}, {"start": 273.23, "end": 274.09, "word": " which", "probability": 0.53369140625}, {"start": 274.09, "end": 274.21, "word": " are", "probability": 0.8388671875}, {"start": 274.21, "end": 274.29, "word": " the", "probability": 0.57470703125}, {"start": 274.29, "end": 274.63, "word": " methods", "probability": 0.89990234375}], "temperature": 1.0}, {"id": 12, "seek": 28917, "start": 275.79, "end": 289.17, "text": "Of course, why did he name it operations? Because programming languages have different names, some are Java methods, some are Python functions, ok? So he told us that if we put a name that pleases everyone, what should we call it?", "tokens": [23919, 1164, 11, 983, 630, 415, 1315, 309, 7705, 30, 1436, 9410, 8650, 362, 819, 5288, 11, 512, 366, 10745, 7150, 11, 512, 366, 15329, 6828, 11, 3133, 30, 407, 415, 1907, 505, 300, 498, 321, 829, 257, 1315, 300, 3362, 1957, 1518, 11, 437, 820, 321, 818, 309, 30], "avg_logprob": -0.6519608053506589, "compression_ratio": 1.4285714285714286, "no_speech_prob": 0.0, "words": [{"start": 275.79, "end": 276.23, "word": "Of", "probability": 0.098876953125}, {"start": 276.23, "end": 276.39, "word": " course,", "probability": 0.85009765625}, {"start": 276.61, "end": 276.97, "word": " why", "probability": 0.55517578125}, {"start": 276.97, "end": 277.27, "word": " did", "probability": 0.354736328125}, {"start": 277.27, "end": 277.27, "word": " he", "probability": 0.71337890625}, {"start": 277.27, "end": 277.27, "word": " name", "probability": 0.1966552734375}, {"start": 277.27, "end": 277.59, "word": " it", "probability": 0.68359375}, {"start": 277.59, "end": 278.01, "word": " operations?", "probability": 0.64599609375}, {"start": 278.47, "end": 278.59, "word": " Because", "probability": 0.47705078125}, {"start": 278.59, "end": 279.27, "word": " programming", "probability": 0.312255859375}, {"start": 279.27, "end": 279.27, "word": " languages", "probability": 0.947265625}, {"start": 279.27, "end": 279.51, "word": " have", "probability": 0.67822265625}, {"start": 279.51, "end": 279.75, "word": " different", "probability": 0.6318359375}, {"start": 279.75, "end": 279.93, "word": " names,", "probability": 0.8134765625}, {"start": 280.43, "end": 280.51, "word": " some", "probability": 0.343994140625}, {"start": 280.51, "end": 280.65, "word": " are", "probability": 0.306396484375}, {"start": 280.65, "end": 281.79, "word": " Java", "probability": 0.422607421875}, {"start": 281.79, "end": 282.35, "word": " methods,", "probability": 0.712890625}, {"start": 282.77, "end": 283.19, "word": " some", "probability": 0.6298828125}, {"start": 283.19, "end": 283.31, "word": " are", "probability": 0.7724609375}, {"start": 283.31, "end": 283.63, "word": " Python", "probability": 0.54443359375}, {"start": 283.63, "end": 284.47, "word": " functions,", "probability": 0.5419921875}, {"start": 285.67, "end": 285.91, "word": " ok?", "probability": 0.1214599609375}, {"start": 286.25, "end": 286.39, "word": " So", "probability": 0.6162109375}, {"start": 286.39, "end": 286.47, "word": " he", "probability": 0.61181640625}, {"start": 286.47, "end": 286.63, "word": " told", "probability": 0.2958984375}, {"start": 286.63, "end": 286.79, "word": " us", "probability": 0.67041015625}, {"start": 286.79, "end": 286.97, "word": " that", "probability": 0.35498046875}, {"start": 286.97, "end": 287.07, "word": " if", "probability": 0.47119140625}, {"start": 287.07, "end": 287.19, "word": " we", "probability": 0.86669921875}, {"start": 287.19, "end": 287.39, "word": " put", "probability": 0.33837890625}, {"start": 287.39, "end": 287.49, "word": " a", "probability": 0.94482421875}, {"start": 287.49, "end": 287.77, "word": " name", "probability": 0.7734375}, {"start": 287.77, "end": 288.31, "word": " that", "probability": 0.66259765625}, {"start": 288.31, "end": 288.45, "word": " pleases", "probability": 0.56024169921875}, {"start": 288.45, "end": 288.69, "word": " everyone,", "probability": 0.78857421875}, {"start": 288.79, "end": 288.81, "word": " what", "probability": 0.41650390625}, {"start": 288.81, "end": 288.87, "word": " should", "probability": 0.61181640625}, {"start": 288.87, "end": 288.87, "word": " we", "probability": 0.64501953125}, {"start": 288.87, "end": 289.03, "word": " call", "probability": 0.517578125}, {"start": 289.03, "end": 289.17, "word": " it?", "probability": 0.9365234375}], "temperature": 1.0}, {"id": 13, "seek": 31086, "start": 290.62, "end": 310.86, "text": " Co-operations and the most important thing is relationships, relationships between classes, this is the structure, how classes use each other and are connected to each other, these relationships are four types of relationships, association, generalization, dependency and realization", "tokens": [3066, 12, 7192, 763, 293, 264, 881, 1021, 551, 307, 6159, 11, 6159, 1296, 5359, 11, 341, 307, 264, 3877, 11, 577, 5359, 764, 1184, 661, 293, 366, 4582, 281, 1184, 661, 11, 613, 6159, 366, 1451, 3467, 295, 6159, 11, 14598, 11, 2674, 2144, 11, 33621, 293, 25138], "avg_logprob": -0.6756249845027924, "compression_ratio": 1.8205128205128205, "no_speech_prob": 1.8477439880371094e-06, "words": [{"start": 290.62, "end": 290.7, "word": " Co", "probability": 0.12396240234375}, {"start": 290.7, "end": 291.28, "word": "-operations", "probability": 0.7672526041666666}, {"start": 291.28, "end": 291.82, "word": " and", "probability": 0.259521484375}, {"start": 291.82, "end": 291.98, "word": " the", "probability": 0.220703125}, {"start": 291.98, "end": 292.02, "word": " most", "probability": 0.6279296875}, {"start": 292.02, "end": 292.22, "word": " important", "probability": 0.8818359375}, {"start": 292.22, "end": 292.46, "word": " thing", "probability": 0.62744140625}, {"start": 292.46, "end": 292.58, "word": " is", "probability": 0.59814453125}, {"start": 292.58, "end": 293.34, "word": " relationships,", "probability": 0.468017578125}, {"start": 293.66, "end": 294.92, "word": " relationships", "probability": 0.346923828125}, {"start": 294.92, "end": 295.4, "word": " between", "probability": 0.529296875}, {"start": 295.4, "end": 296.1, "word": " classes,", "probability": 0.8037109375}, {"start": 296.82, "end": 297.86, "word": " this", "probability": 0.11590576171875}, {"start": 297.86, "end": 297.92, "word": " is", "probability": 0.448974609375}, {"start": 297.92, "end": 298.3, "word": " the", "probability": 0.76904296875}, {"start": 298.3, "end": 298.7, "word": " structure,", "probability": 0.873046875}, {"start": 298.78, "end": 298.9, "word": " how", "probability": 0.234375}, {"start": 298.9, "end": 300.38, "word": " classes", "probability": 0.322021484375}, {"start": 300.38, "end": 301.18, "word": " use", "probability": 0.39111328125}, {"start": 301.18, "end": 301.58, "word": " each", "probability": 0.7607421875}, {"start": 301.58, "end": 301.58, "word": " other", "probability": 0.84521484375}, {"start": 301.58, "end": 301.66, "word": " and", "probability": 0.5966796875}, {"start": 301.66, "end": 301.74, "word": " are", "probability": 0.49365234375}, {"start": 301.74, "end": 301.92, "word": " connected", "probability": 0.3896484375}, {"start": 301.92, "end": 302.14, "word": " to", "probability": 0.454345703125}, {"start": 302.14, "end": 302.68, "word": " each", "probability": 0.93798828125}, {"start": 302.68, "end": 302.68, "word": " other,", "probability": 0.89990234375}, {"start": 302.74, "end": 303.6, "word": " these", "probability": 0.262939453125}, {"start": 303.6, "end": 303.96, "word": " relationships", "probability": 0.603515625}, {"start": 303.96, "end": 304.18, "word": " are", "probability": 0.344482421875}, {"start": 304.18, "end": 305.04, "word": " four", "probability": 0.2420654296875}, {"start": 305.04, "end": 305.42, "word": " types", "probability": 0.50927734375}, {"start": 305.42, "end": 305.44, "word": " of", "probability": 0.53369140625}, {"start": 305.44, "end": 306.0, "word": " relationships,", "probability": 0.685546875}, {"start": 306.2, "end": 306.84, "word": " association,", "probability": 0.6875}, {"start": 307.5, "end": 308.46, "word": " generalization,", "probability": 0.934814453125}, {"start": 309.06, "end": 309.64, "word": " dependency", "probability": 0.86962890625}, {"start": 309.64, "end": 310.38, "word": " and", "probability": 0.689453125}, {"start": 310.38, "end": 310.86, "word": " realization", "probability": 0.86376953125}], "temperature": 1.0}, {"id": 14, "seek": 33738, "start": 312.3, "end": 337.38, "text": "and there are some constraints that are present on the drawing we will explain them in these points and give examples of them how do we represent a class in a diagram? square or rectangle? usually this rectangle is divided into three parts the first part is the class name and the second part is the attributes and the third part is operations or methods of course how do we put attributes?", "tokens": [474, 456, 366, 512, 18491, 300, 366, 1974, 322, 264, 6316, 321, 486, 2903, 552, 294, 613, 2793, 293, 976, 5110, 295, 552, 577, 360, 321, 2906, 257, 1508, 294, 257, 10686, 30, 3732, 420, 21930, 30, 2673, 341, 21930, 307, 6666, 666, 1045, 3166, 264, 700, 644, 307, 264, 1508, 1315, 293, 264, 1150, 644, 307, 264, 17212, 293, 264, 2636, 644, 307, 7705, 420, 7150, 295, 1164, 577, 360, 321, 829, 17212, 30], "avg_logprob": -0.6332236685250935, "compression_ratio": 1.8396226415094339, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 312.3, "end": 312.48, "word": "and", "probability": 0.1983642578125}, {"start": 312.48, "end": 312.62, "word": " there", "probability": 0.2041015625}, {"start": 312.62, "end": 312.62, "word": " are", "probability": 0.63916015625}, {"start": 312.62, "end": 313.38, "word": " some", "probability": 0.59033203125}, {"start": 313.38, "end": 314.04, "word": " constraints", "probability": 0.8232421875}, {"start": 314.04, "end": 314.72, "word": " that", "probability": 0.29638671875}, {"start": 314.72, "end": 314.96, "word": " are", "probability": 0.231689453125}, {"start": 314.96, "end": 315.28, "word": " present", "probability": 0.344970703125}, {"start": 315.28, "end": 315.54, "word": " on", "probability": 0.6552734375}, {"start": 315.54, "end": 316.1, "word": " the", "probability": 0.401611328125}, {"start": 316.1, "end": 316.36, "word": " drawing", "probability": 0.591796875}, {"start": 316.36, "end": 316.8, "word": " we", "probability": 0.2247314453125}, {"start": 316.8, "end": 316.88, "word": " will", "probability": 0.68212890625}, {"start": 316.88, "end": 317.2, "word": " explain", "probability": 0.468505859375}, {"start": 317.2, "end": 317.88, "word": " them", "probability": 0.25537109375}, {"start": 317.88, "end": 317.94, "word": " in", "probability": 0.355712890625}, {"start": 317.94, "end": 318.04, "word": " these", "probability": 0.2198486328125}, {"start": 318.04, "end": 318.44, "word": " points", "probability": 0.8291015625}, {"start": 318.44, "end": 318.74, "word": " and", "probability": 0.7744140625}, {"start": 318.74, "end": 319.0, "word": " give", "probability": 0.322021484375}, {"start": 319.0, "end": 320.26, "word": " examples", "probability": 0.7021484375}, {"start": 320.26, "end": 320.26, "word": " of", "probability": 0.2646484375}, {"start": 320.26, "end": 320.54, "word": " them", "probability": 0.81005859375}, {"start": 320.54, "end": 321.0, "word": " how", "probability": 0.1287841796875}, {"start": 321.0, "end": 321.28, "word": " do", "probability": 0.5048828125}, {"start": 321.28, "end": 321.9, "word": " we", "probability": 0.76025390625}, {"start": 321.9, "end": 322.24, "word": " represent", "probability": 0.462890625}, {"start": 322.24, "end": 322.24, "word": " a", "probability": 0.378173828125}, {"start": 322.24, "end": 322.24, "word": " class", "probability": 0.8720703125}, {"start": 322.24, "end": 322.38, "word": " in", "probability": 0.7998046875}, {"start": 322.38, "end": 322.46, "word": " a", "probability": 0.85107421875}, {"start": 322.46, "end": 322.94, "word": " diagram?", "probability": 0.099853515625}, {"start": 323.56, "end": 324.2, "word": " square", "probability": 0.3515625}, {"start": 324.2, "end": 324.38, "word": " or", "probability": 0.89599609375}, {"start": 324.38, "end": 324.72, "word": " rectangle?", "probability": 0.7451171875}, {"start": 326.0, "end": 326.64, "word": " usually", "probability": 0.30712890625}, {"start": 326.64, "end": 327.56, "word": " this", "probability": 0.35888671875}, {"start": 327.56, "end": 327.98, "word": " rectangle", "probability": 0.9296875}, {"start": 327.98, "end": 328.3, "word": " is", "probability": 0.65087890625}, {"start": 328.3, "end": 328.52, "word": " divided", "probability": 0.64794921875}, {"start": 328.52, "end": 328.64, "word": " into", "probability": 0.6552734375}, {"start": 328.64, "end": 328.84, "word": " three", "probability": 0.5458984375}, {"start": 328.84, "end": 329.18, "word": " parts", "probability": 0.86474609375}, {"start": 329.18, "end": 329.32, "word": " the", "probability": 0.47900390625}, {"start": 329.32, "end": 329.72, "word": " first", "probability": 0.87109375}, {"start": 329.72, "end": 329.72, "word": " part", "probability": 0.8515625}, {"start": 329.72, "end": 330.16, "word": " is", "probability": 0.460693359375}, {"start": 330.16, "end": 330.22, "word": " the", "probability": 0.268310546875}, {"start": 330.22, "end": 330.68, "word": " class", "probability": 0.54833984375}, {"start": 330.68, "end": 330.68, "word": " name", "probability": 0.87646484375}, {"start": 330.68, "end": 330.88, "word": " and", "probability": 0.39599609375}, {"start": 330.88, "end": 330.92, "word": " the", "probability": 0.84619140625}, {"start": 330.92, "end": 331.28, "word": " second", "probability": 0.8623046875}, {"start": 331.28, "end": 331.3, "word": " part", "probability": 0.76806640625}, {"start": 331.3, "end": 331.82, "word": " is", "probability": 0.77294921875}, {"start": 331.82, "end": 332.38, "word": " the", "probability": 0.425537109375}, {"start": 332.38, "end": 332.98, "word": " attributes", "probability": 0.87451171875}, {"start": 332.98, "end": 333.14, "word": " and", "probability": 0.7890625}, {"start": 333.14, "end": 333.54, "word": " the", "probability": 0.8203125}, {"start": 333.54, "end": 333.72, "word": " third", "probability": 0.87890625}, {"start": 333.72, "end": 333.72, "word": " part", "probability": 0.80322265625}, {"start": 333.72, "end": 333.94, "word": " is", "probability": 0.77587890625}, {"start": 333.94, "end": 334.56, "word": " operations", "probability": 0.505859375}, {"start": 334.56, "end": 334.76, "word": " or", "probability": 0.716796875}, {"start": 334.76, "end": 335.18, "word": " methods", "probability": 0.88134765625}, {"start": 335.18, "end": 336.06, "word": " of", "probability": 0.3193359375}, {"start": 336.06, "end": 336.16, "word": " course", "probability": 0.9599609375}, {"start": 336.16, "end": 336.8, "word": " how", "probability": 0.6455078125}, {"start": 336.8, "end": 336.98, "word": " do", "probability": 0.52978515625}, {"start": 336.98, "end": 336.98, "word": " we", "probability": 0.736328125}, {"start": 336.98, "end": 337.38, "word": " put", "probability": 0.36376953125}, {"start": 337.38, "end": 337.38, "word": " attributes?", "probability": 0.5517578125}], "temperature": 1.0}, {"id": 15, "seek": 35257, "start": 339.17, "end": 352.57, "text": "The name of the attribute is Nuha with two dots. The name of the attribute is Nuha with two dots. Ok? Ok, this shows you that the first part is class name.", "tokens": [2278, 1315, 295, 264, 19667, 307, 13612, 1641, 365, 732, 15026, 13, 440, 1315, 295, 264, 19667, 307, 13612, 1641, 365, 732, 15026, 13, 3477, 30, 3477, 11, 341, 3110, 291, 300, 264, 700, 644, 307, 1508, 1315, 13], "avg_logprob": -0.5874999940395356, "compression_ratio": 1.5816326530612246, "no_speech_prob": 0.0, "words": [{"start": 339.17, "end": 339.55, "word": "The", "probability": 0.173828125}, {"start": 339.55, "end": 339.55, "word": " name", "probability": 0.6982421875}, {"start": 339.55, "end": 339.63, "word": " of", "probability": 0.9541015625}, {"start": 339.63, "end": 339.67, "word": " the", "probability": 0.7900390625}, {"start": 339.67, "end": 340.09, "word": " attribute", "probability": 0.93798828125}, {"start": 340.09, "end": 340.33, "word": " is", "probability": 0.740234375}, {"start": 340.33, "end": 342.27, "word": " Nuha", "probability": 0.284942626953125}, {"start": 342.27, "end": 342.27, "word": " with", "probability": 0.11981201171875}, {"start": 342.27, "end": 342.27, "word": " two", "probability": 0.802734375}, {"start": 342.27, "end": 342.27, "word": " dots.", "probability": 0.658203125}, {"start": 342.35, "end": 342.59, "word": " The", "probability": 0.1829833984375}, {"start": 342.59, "end": 342.59, "word": " name", "probability": 0.458251953125}, {"start": 342.59, "end": 342.71, "word": " of", "probability": 0.96044921875}, {"start": 342.71, "end": 342.75, "word": " the", "probability": 0.91015625}, {"start": 342.75, "end": 343.03, "word": " attribute", "probability": 0.93212890625}, {"start": 343.03, "end": 343.29, "word": " is", "probability": 0.92529296875}, {"start": 343.29, "end": 344.69, "word": " Nuha", "probability": 0.9384765625}, {"start": 344.69, "end": 344.75, "word": " with", "probability": 0.90478515625}, {"start": 344.75, "end": 344.77, "word": " two", "probability": 0.9384765625}, {"start": 344.77, "end": 344.89, "word": " dots.", "probability": 0.90478515625}, {"start": 344.97, "end": 345.25, "word": " Ok?", "probability": 0.1632080078125}, {"start": 349.51, "end": 349.79, "word": " Ok,", "probability": 0.41162109375}, {"start": 349.87, "end": 350.05, "word": " this", "probability": 0.4921875}, {"start": 350.05, "end": 350.39, "word": " shows", "probability": 0.31640625}, {"start": 350.39, "end": 350.69, "word": " you", "probability": 0.51953125}, {"start": 350.69, "end": 351.01, "word": " that", "probability": 0.880859375}, {"start": 351.01, "end": 351.13, "word": " the", "probability": 0.8037109375}, {"start": 351.13, "end": 351.55, "word": " first", "probability": 0.76123046875}, {"start": 351.55, "end": 351.73, "word": " part", "probability": 0.6513671875}, {"start": 351.73, "end": 352.19, "word": " is", "probability": 0.66796875}, {"start": 352.19, "end": 352.57, "word": " class", "probability": 0.227294921875}, {"start": 352.57, "end": 352.57, "word": " name.", "probability": 0.8642578125}], "temperature": 1.0}, {"id": 16, "seek": 37988, "start": 354.2, "end": 379.88, "text": " In the second part, we put the attributes in this way, each attribute and name, or type, pardon me, okay? And sometimes, these are additional details, I might need to show them or not, depending on the application type, which is the accessibility or scope of the attributes, okay? The negative means that it is private, the positive means public, and this hash is protected.", "tokens": [682, 264, 1150, 644, 11, 321, 829, 264, 17212, 294, 341, 636, 11, 1184, 19667, 293, 1315, 11, 420, 2010, 11, 22440, 385, 11, 1392, 30, 400, 2171, 11, 613, 366, 4497, 4365, 11, 286, 1062, 643, 281, 855, 552, 420, 406, 11, 5413, 322, 264, 3861, 2010, 11, 597, 307, 264, 15002, 420, 11923, 295, 264, 17212, 11, 1392, 30, 440, 3671, 1355, 300, 309, 307, 4551, 11, 264, 3353, 1355, 1908, 11, 293, 341, 22019, 307, 10594, 13], "avg_logprob": -0.5451389006626459, "compression_ratio": 1.6666666666666667, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 354.2, "end": 354.38, "word": " In", "probability": 0.0989990234375}, {"start": 354.38, "end": 354.44, "word": " the", "probability": 0.81494140625}, {"start": 354.44, "end": 354.94, "word": " second", "probability": 0.78076171875}, {"start": 354.94, "end": 354.94, "word": " part,", "probability": 0.64892578125}, {"start": 355.2, "end": 355.2, "word": " we", "probability": 0.55224609375}, {"start": 355.2, "end": 355.42, "word": " put", "probability": 0.2296142578125}, {"start": 355.42, "end": 355.8, "word": " the", "probability": 0.383544921875}, {"start": 355.8, "end": 356.32, "word": " attributes", "probability": 0.7890625}, {"start": 356.32, "end": 356.44, "word": " in", "probability": 0.2783203125}, {"start": 356.44, "end": 356.98, "word": " this", "probability": 0.744140625}, {"start": 356.98, "end": 356.98, "word": " way,", "probability": 0.7548828125}, {"start": 357.08, "end": 357.22, "word": " each", "probability": 0.62939453125}, {"start": 357.22, "end": 357.72, "word": " attribute", "probability": 0.9033203125}, {"start": 357.72, "end": 358.38, "word": " and", "probability": 0.61572265625}, {"start": 358.38, "end": 358.76, "word": " name,", "probability": 0.321533203125}, {"start": 359.32, "end": 359.42, "word": " or", "probability": 0.6982421875}, {"start": 359.42, "end": 359.7, "word": " type,", "probability": 0.52734375}, {"start": 360.0, "end": 360.0, "word": " pardon", "probability": 0.2939453125}, {"start": 360.0, "end": 360.86, "word": " me,", "probability": 0.857421875}, {"start": 360.86, "end": 361.16, "word": " okay?", "probability": 0.337646484375}, {"start": 361.6, "end": 361.78, "word": " And", "probability": 0.66162109375}, {"start": 361.78, "end": 362.28, "word": " sometimes,", "probability": 0.8427734375}, {"start": 362.68, "end": 363.12, "word": " these", "probability": 0.5439453125}, {"start": 363.12, "end": 363.34, "word": " are", "probability": 0.7587890625}, {"start": 363.34, "end": 363.82, "word": " additional", "probability": 0.6904296875}, {"start": 363.82, "end": 363.86, "word": " details,", "probability": 0.80712890625}, {"start": 364.46, "end": 364.8, "word": " I", "probability": 0.2744140625}, {"start": 364.8, "end": 364.92, "word": " might", "probability": 0.41064453125}, {"start": 364.92, "end": 365.2, "word": " need", "probability": 0.8359375}, {"start": 365.2, "end": 365.3, "word": " to", "probability": 0.9658203125}, {"start": 365.3, "end": 365.44, "word": " show", "probability": 0.28955078125}, {"start": 365.44, "end": 365.6, "word": " them", "probability": 0.748046875}, {"start": 365.6, "end": 365.74, "word": " or", "probability": 0.52490234375}, {"start": 365.74, "end": 366.02, "word": " not,", "probability": 0.7353515625}, {"start": 366.32, "end": 366.62, "word": " depending", "probability": 0.568359375}, {"start": 366.62, "end": 366.8, "word": " on", "probability": 0.94482421875}, {"start": 366.8, "end": 367.12, "word": " the", "probability": 0.85986328125}, {"start": 367.12, "end": 367.4, "word": " application", "probability": 0.513671875}, {"start": 367.4, "end": 367.4, "word": " type,", "probability": 0.60107421875}, {"start": 368.14, "end": 368.24, "word": " which", "probability": 0.8271484375}, {"start": 368.24, "end": 368.68, "word": " is", "probability": 0.86083984375}, {"start": 368.68, "end": 370.18, "word": " the", "probability": 0.6943359375}, {"start": 370.18, "end": 370.64, "word": " accessibility", "probability": 0.68603515625}, {"start": 370.64, "end": 371.02, "word": " or", "probability": 0.53076171875}, {"start": 371.02, "end": 372.22, "word": " scope", "probability": 0.60693359375}, {"start": 372.22, "end": 372.5, "word": " of", "probability": 0.95458984375}, {"start": 372.5, "end": 372.62, "word": " the", "probability": 0.767578125}, {"start": 372.62, "end": 373.12, "word": " attributes,", "probability": 0.82373046875}, {"start": 373.74, "end": 374.1, "word": " okay?", "probability": 0.716796875}, {"start": 374.64, "end": 375.04, "word": " The", "probability": 0.47314453125}, {"start": 375.04, "end": 375.24, "word": " negative", "probability": 0.477783203125}, {"start": 375.24, "end": 375.6, "word": " means", "probability": 0.406982421875}, {"start": 375.6, "end": 376.0, "word": " that", "probability": 0.392333984375}, {"start": 376.0, "end": 376.64, "word": " it", "probability": 0.6953125}, {"start": 376.64, "end": 376.64, "word": " is", "probability": 0.64013671875}, {"start": 376.64, "end": 376.96, "word": " private,", "probability": 0.86962890625}, {"start": 377.5, "end": 377.64, "word": " the", "probability": 0.6689453125}, {"start": 377.64, "end": 377.84, "word": " positive", "probability": 0.5888671875}, {"start": 377.84, "end": 377.92, "word": " means", "probability": 0.53125}, {"start": 377.92, "end": 378.3, "word": " public,", "probability": 0.5869140625}, {"start": 378.5, "end": 378.58, "word": " and", "probability": 0.90869140625}, {"start": 378.58, "end": 378.82, "word": " this", "probability": 0.62744140625}, {"start": 378.82, "end": 379.22, "word": " hash", "probability": 0.68359375}, {"start": 379.22, "end": 379.4, "word": " is", "probability": 0.53125}, {"start": 379.4, "end": 379.88, "word": " protected.", "probability": 0.250244140625}], "temperature": 1.0}, {"id": 17, "seek": 40102, "start": 382.08, "end": 401.02, "text": "And these are the names of the operations Let's look at this example because it also represents a class It's not necessary to show all the parts. Sometimes it's more meaningful to show the relations between classes", "tokens": [5289, 613, 366, 264, 5288, 295, 264, 7705, 961, 311, 574, 412, 341, 1365, 570, 309, 611, 8855, 257, 1508, 467, 311, 406, 4818, 281, 855, 439, 264, 3166, 13, 4803, 309, 311, 544, 10995, 281, 855, 264, 2299, 1296, 5359], "avg_logprob": -0.5342262046677726, "compression_ratio": 1.4557823129251701, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 382.08, "end": 382.56, "word": "And", "probability": 0.31005859375}, {"start": 382.56, "end": 382.74, "word": " these", "probability": 0.5830078125}, {"start": 382.74, "end": 382.94, "word": " are", "probability": 0.9150390625}, {"start": 382.94, "end": 383.02, "word": " the", "probability": 0.6279296875}, {"start": 383.02, "end": 383.24, "word": " names", "probability": 0.453857421875}, {"start": 383.24, "end": 384.02, "word": " of", "probability": 0.9404296875}, {"start": 384.02, "end": 384.06, "word": " the", "probability": 0.5009765625}, {"start": 384.06, "end": 384.6, "word": " operations", "probability": 0.91357421875}, {"start": 384.6, "end": 388.52, "word": " Let's", "probability": 0.471435546875}, {"start": 388.52, "end": 388.66, "word": " look", "probability": 0.3955078125}, {"start": 388.66, "end": 388.72, "word": " at", "probability": 0.95556640625}, {"start": 388.72, "end": 388.78, "word": " this", "probability": 0.8486328125}, {"start": 388.78, "end": 389.06, "word": " example", "probability": 0.94384765625}, {"start": 389.06, "end": 389.82, "word": " because", "probability": 0.39892578125}, {"start": 389.82, "end": 390.1, "word": " it", "probability": 0.427734375}, {"start": 390.1, "end": 390.54, "word": " also", "probability": 0.5576171875}, {"start": 390.54, "end": 390.86, "word": " represents", "probability": 0.74560546875}, {"start": 390.86, "end": 391.04, "word": " a", "probability": 0.457275390625}, {"start": 391.04, "end": 391.36, "word": " class", "probability": 0.95556640625}, {"start": 391.36, "end": 393.96, "word": " It's", "probability": 0.453125}, {"start": 393.96, "end": 394.06, "word": " not", "probability": 0.93896484375}, {"start": 394.06, "end": 394.46, "word": " necessary", "probability": 0.34814453125}, {"start": 394.46, "end": 395.16, "word": " to", "probability": 0.83154296875}, {"start": 395.16, "end": 395.48, "word": " show", "probability": 0.435546875}, {"start": 395.48, "end": 396.04, "word": " all", "probability": 0.86279296875}, {"start": 396.04, "end": 396.12, "word": " the", "probability": 0.64111328125}, {"start": 396.12, "end": 396.48, "word": " parts.", "probability": 0.58203125}, {"start": 397.36, "end": 397.92, "word": " Sometimes", "probability": 0.76708984375}, {"start": 397.92, "end": 398.38, "word": " it's", "probability": 0.4600830078125}, {"start": 398.38, "end": 399.04, "word": " more", "probability": 0.77392578125}, {"start": 399.04, "end": 399.04, "word": " meaningful", "probability": 0.61865234375}, {"start": 399.04, "end": 399.52, "word": " to", "probability": 0.89892578125}, {"start": 399.52, "end": 399.76, "word": " show", "probability": 0.87548828125}, {"start": 399.76, "end": 399.9, "word": " the", "probability": 0.6064453125}, {"start": 399.9, "end": 400.24, "word": " relations", "probability": 0.404541015625}, {"start": 400.24, "end": 400.58, "word": " between", "probability": 0.7705078125}, {"start": 400.58, "end": 401.02, "word": " classes", "probability": 0.46630859375}], "temperature": 1.0}, {"id": 18, "seek": 41846, "start": 402.2, "end": 418.46, "text": "So the details inside don't need to be shown For example, this represents a class, this is its name, I didn't put any attributes, it doesn't mean that there are no attributes, it doesn't mean that it should be shown, because I put these operations", "tokens": [6455, 264, 4365, 1854, 500, 380, 643, 281, 312, 4898, 1171, 1365, 11, 341, 8855, 257, 1508, 11, 341, 307, 1080, 1315, 11, 286, 994, 380, 829, 604, 17212, 11, 309, 1177, 380, 914, 300, 456, 366, 572, 17212, 11, 309, 1177, 380, 914, 300, 309, 820, 312, 4898, 11, 570, 286, 829, 613, 7705], "avg_logprob": -0.6127232153500829, "compression_ratio": 1.6689189189189189, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 402.2, "end": 402.6, "word": "So", "probability": 0.305419921875}, {"start": 402.6, "end": 403.08, "word": " the", "probability": 0.2176513671875}, {"start": 403.08, "end": 403.38, "word": " details", "probability": 0.64453125}, {"start": 403.38, "end": 403.8, "word": " inside", "probability": 0.36328125}, {"start": 403.8, "end": 404.08, "word": " don't", "probability": 0.56243896484375}, {"start": 404.08, "end": 404.5, "word": " need", "probability": 0.7314453125}, {"start": 404.5, "end": 405.64, "word": " to", "probability": 0.58447265625}, {"start": 405.64, "end": 405.64, "word": " be", "probability": 0.7802734375}, {"start": 405.64, "end": 405.86, "word": " shown", "probability": 0.3017578125}, {"start": 405.86, "end": 406.72, "word": " For", "probability": 0.3681640625}, {"start": 406.72, "end": 409.64, "word": " example,", "probability": 0.8994140625}, {"start": 409.78, "end": 410.04, "word": " this", "probability": 0.70751953125}, {"start": 410.04, "end": 410.52, "word": " represents", "probability": 0.1717529296875}, {"start": 410.52, "end": 410.86, "word": " a", "probability": 0.763671875}, {"start": 410.86, "end": 411.0, "word": " class,", "probability": 0.9541015625}, {"start": 411.0, "end": 411.12, "word": " this", "probability": 0.292724609375}, {"start": 411.12, "end": 411.18, "word": " is", "probability": 0.84033203125}, {"start": 411.18, "end": 411.44, "word": " its", "probability": 0.59033203125}, {"start": 411.44, "end": 411.44, "word": " name,", "probability": 0.91259765625}, {"start": 411.52, "end": 412.0, "word": " I", "probability": 0.298583984375}, {"start": 412.0, "end": 412.1, "word": " didn't", "probability": 0.79296875}, {"start": 412.1, "end": 412.3, "word": " put", "probability": 0.50439453125}, {"start": 412.3, "end": 412.56, "word": " any", "probability": 0.26025390625}, {"start": 412.56, "end": 412.56, "word": " attributes,", "probability": 0.82421875}, {"start": 412.82, "end": 412.92, "word": " it", "probability": 0.54296875}, {"start": 412.92, "end": 413.0, "word": " doesn't", "probability": 0.900634765625}, {"start": 413.0, "end": 413.12, "word": " mean", "probability": 0.955078125}, {"start": 413.12, "end": 413.18, "word": " that", "probability": 0.336669921875}, {"start": 413.18, "end": 413.26, "word": " there", "probability": 0.833984375}, {"start": 413.26, "end": 413.26, "word": " are", "probability": 0.443603515625}, {"start": 413.26, "end": 413.34, "word": " no", "probability": 0.89990234375}, {"start": 413.34, "end": 414.36, "word": " attributes,", "probability": 0.86962890625}, {"start": 414.8, "end": 415.1, "word": " it", "probability": 0.537109375}, {"start": 415.1, "end": 415.26, "word": " doesn't", "probability": 0.855712890625}, {"start": 415.26, "end": 415.56, "word": " mean", "probability": 0.849609375}, {"start": 415.56, "end": 415.78, "word": " that", "probability": 0.421875}, {"start": 415.78, "end": 416.04, "word": " it", "probability": 0.3740234375}, {"start": 416.04, "end": 416.08, "word": " should", "probability": 0.4189453125}, {"start": 416.08, "end": 416.08, "word": " be", "probability": 0.77685546875}, {"start": 416.08, "end": 416.34, "word": " shown,", "probability": 0.736328125}, {"start": 416.86, "end": 417.08, "word": " because", "probability": 0.66943359375}, {"start": 417.08, "end": 417.72, "word": " I", "probability": 0.311767578125}, {"start": 417.72, "end": 417.72, "word": " put", "probability": 0.58740234375}, {"start": 417.72, "end": 417.72, "word": " these", "probability": 0.62646484375}, {"start": 417.72, "end": 418.46, "word": " operations", "probability": 0.92919921875}], "temperature": 1.0}, {"id": 19, "seek": 44946, "start": 420.14, "end": 449.46, "text": "Of course, how does the operation get written? I write the name of the operation, then two dots, what are the parameters that it takes? Which is what is written? The name of the parameter, and two dots, Null. Okay? Always the type that we put after. If this value returns a value, okay? What returns this value, where do we put it? In the end, okay? It means that Java is the only language that puts the return type in the beginning, okay?", "tokens": [23919, 1164, 11, 577, 775, 264, 6916, 483, 3720, 30, 286, 2464, 264, 1315, 295, 264, 6916, 11, 550, 732, 15026, 11, 437, 366, 264, 9834, 300, 309, 2516, 30, 3013, 307, 437, 307, 3720, 30, 440, 1315, 295, 264, 13075, 11, 293, 732, 15026, 11, 13612, 285, 13, 1033, 30, 967, 4151, 749, 264, 2010, 300, 321, 829, 934, 13, 759, 341, 2158, 11247, 257, 2158, 11, 1392, 30, 708, 11247, 341, 2158, 11, 689, 360, 321, 829, 309, 30, 682, 264, 917, 11, 1392, 30, 467, 1355, 300, 10745, 307, 264, 787, 2856, 300, 8137, 264, 2736, 2010, 294, 264, 2863, 11, 1392, 30], "avg_logprob": -0.5417640186915887, "compression_ratio": 1.8601694915254237, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 420.14, "end": 420.36, "word": "Of", "probability": 0.1641845703125}, {"start": 420.36, "end": 420.42, "word": " course,", "probability": 0.916015625}, {"start": 420.52, "end": 420.66, "word": " how", "probability": 0.77392578125}, {"start": 420.66, "end": 420.68, "word": " does", "probability": 0.256103515625}, {"start": 420.68, "end": 420.74, "word": " the", "probability": 0.56494140625}, {"start": 420.74, "end": 421.12, "word": " operation", "probability": 0.93896484375}, {"start": 421.12, "end": 421.38, "word": " get", "probability": 0.4052734375}, {"start": 421.38, "end": 421.64, "word": " written?", "probability": 0.8427734375}, {"start": 422.56, "end": 423.0, "word": " I", "probability": 0.361572265625}, {"start": 423.0, "end": 423.16, "word": " write", "probability": 0.73779296875}, {"start": 423.16, "end": 423.32, "word": " the", "probability": 0.744140625}, {"start": 423.32, "end": 423.44, "word": " name", "probability": 0.72900390625}, {"start": 423.44, "end": 423.52, "word": " of", "probability": 0.95703125}, {"start": 423.52, "end": 423.56, "word": " the", "probability": 0.86181640625}, {"start": 423.56, "end": 424.0, "word": " operation,", "probability": 0.94384765625}, {"start": 424.42, "end": 425.0, "word": " then", "probability": 0.43701171875}, {"start": 425.0, "end": 425.52, "word": " two", "probability": 0.1517333984375}, {"start": 425.52, "end": 425.52, "word": " dots,", "probability": 0.46435546875}, {"start": 425.76, "end": 425.98, "word": " what", "probability": 0.467529296875}, {"start": 425.98, "end": 426.02, "word": " are", "probability": 0.52294921875}, {"start": 426.02, "end": 426.1, "word": " the", "probability": 0.853515625}, {"start": 426.1, "end": 426.58, "word": " parameters", "probability": 0.96435546875}, {"start": 426.58, "end": 426.72, "word": " that", "probability": 0.52685546875}, {"start": 426.72, "end": 426.84, "word": " it", "probability": 0.393798828125}, {"start": 426.84, "end": 427.02, "word": " takes?", "probability": 0.53076171875}, {"start": 427.7, "end": 427.96, "word": " Which", "probability": 0.2880859375}, {"start": 427.96, "end": 428.1, "word": " is", "probability": 0.70751953125}, {"start": 428.1, "end": 428.28, "word": " what", "probability": 0.4150390625}, {"start": 428.28, "end": 428.34, "word": " is", "probability": 0.398193359375}, {"start": 428.34, "end": 428.58, "word": " written?", "probability": 0.89697265625}, {"start": 428.7, "end": 428.8, "word": " The", "probability": 0.6064453125}, {"start": 428.8, "end": 428.92, "word": " name", "probability": 0.7783203125}, {"start": 428.92, "end": 429.02, "word": " of", "probability": 0.96142578125}, {"start": 429.02, "end": 429.06, "word": " the", "probability": 0.89599609375}, {"start": 429.06, "end": 429.5, "word": " parameter,", "probability": 0.9609375}, {"start": 429.9, "end": 430.0, "word": " and", "probability": 0.62744140625}, {"start": 430.0, "end": 430.44, "word": " two", "probability": 0.90380859375}, {"start": 430.44, "end": 430.44, "word": " dots,", "probability": 0.76904296875}, {"start": 431.1, "end": 431.38, "word": " Null.", "probability": 0.21142578125}, {"start": 431.86, "end": 432.1, "word": " Okay?", "probability": 0.29345703125}, {"start": 432.2, "end": 432.44, "word": " Always", "probability": 0.633056640625}, {"start": 432.44, "end": 433.04, "word": " the", "probability": 0.51708984375}, {"start": 433.04, "end": 433.34, "word": " type", "probability": 0.9287109375}, {"start": 433.34, "end": 433.46, "word": " that", "probability": 0.49169921875}, {"start": 433.46, "end": 433.48, "word": " we", "probability": 0.309326171875}, {"start": 433.48, "end": 433.66, "word": " put", "probability": 0.47021484375}, {"start": 433.66, "end": 433.88, "word": " after.", "probability": 0.44384765625}, {"start": 434.56, "end": 434.9, "word": " If", "probability": 0.3173828125}, {"start": 434.9, "end": 435.02, "word": " this", "probability": 0.82275390625}, {"start": 435.02, "end": 435.2, "word": " value", "probability": 0.242919921875}, {"start": 435.2, "end": 435.74, "word": " returns", "probability": 0.63818359375}, {"start": 435.74, "end": 435.94, "word": " a", "probability": 0.7607421875}, {"start": 435.94, "end": 436.16, "word": " value,", "probability": 0.96875}, {"start": 437.16, "end": 437.36, "word": " okay?", "probability": 0.447021484375}, {"start": 437.44, "end": 437.58, "word": " What", "probability": 0.269775390625}, {"start": 437.58, "end": 437.92, "word": " returns", "probability": 0.4296875}, {"start": 437.92, "end": 438.06, "word": " this", "probability": 0.8232421875}, {"start": 438.06, "end": 438.24, "word": " value,", "probability": 0.95361328125}, {"start": 438.44, "end": 438.52, "word": " where", "probability": 0.8359375}, {"start": 438.52, "end": 438.56, "word": " do", "probability": 0.65185546875}, {"start": 438.56, "end": 438.56, "word": " we", "probability": 0.79833984375}, {"start": 438.56, "end": 438.78, "word": " put", "probability": 0.88720703125}, {"start": 438.78, "end": 438.9, "word": " it?", "probability": 0.92578125}, {"start": 439.9, "end": 440.34, "word": " In", "probability": 0.56396484375}, {"start": 440.34, "end": 440.44, "word": " the", "probability": 0.92041015625}, {"start": 440.44, "end": 440.6, "word": " end,", "probability": 0.75390625}, {"start": 440.72, "end": 441.42, "word": " okay?", "probability": 0.71142578125}, {"start": 442.3, "end": 442.62, "word": " It", "probability": 0.1837158203125}, {"start": 442.62, "end": 442.86, "word": " means", "probability": 0.387451171875}, {"start": 442.86, "end": 442.96, "word": " that", "probability": 0.72998046875}, {"start": 442.96, "end": 444.4, "word": " Java", "probability": 0.509765625}, {"start": 444.4, "end": 444.52, "word": " is", "probability": 0.828125}, {"start": 444.52, "end": 444.82, "word": " the", "probability": 0.9287109375}, {"start": 444.82, "end": 445.08, "word": " only", "probability": 0.919921875}, {"start": 445.08, "end": 445.1, "word": " language", "probability": 0.82373046875}, {"start": 445.1, "end": 445.48, "word": " that", "probability": 0.86181640625}, {"start": 445.48, "end": 445.82, "word": " puts", "probability": 0.82666015625}, {"start": 445.82, "end": 445.96, "word": " the", "probability": 0.72021484375}, {"start": 445.96, "end": 446.2, "word": " return", "probability": 0.62548828125}, {"start": 446.2, "end": 446.66, "word": " type", "probability": 0.9755859375}, {"start": 446.66, "end": 448.2, "word": " in", "probability": 0.56689453125}, {"start": 448.2, "end": 448.74, "word": " the", "probability": 0.9072265625}, {"start": 448.74, "end": 448.88, "word": " beginning,", "probability": 0.56689453125}, {"start": 449.08, "end": 449.46, "word": " okay?", "probability": 0.763671875}], "temperature": 1.0}, {"id": 20, "seek": 45629, "start": 451.85, "end": 456.29, "text": "For example, Kotlin and Swift are put in the end, and Python and Pythonbot are put in the beginning.", "tokens": [12587, 1365, 11, 30123, 5045, 293, 25539, 366, 829, 294, 264, 917, 11, 293, 15329, 293, 9953, 392, 266, 18870, 366, 829, 294, 264, 2863, 13], "avg_logprob": -0.8940972178070633, "compression_ratio": 1.2658227848101267, "no_speech_prob": 1.2636184692382812e-05, "words": [{"start": 451.84999999999997, "end": 452.21, "word": "For", "probability": 0.12176513671875}, {"start": 452.21, "end": 452.57, "word": " example,", "probability": 0.77392578125}, {"start": 452.73, "end": 453.05, "word": " Kotlin", "probability": 0.654296875}, {"start": 453.05, "end": 453.15, "word": " and", "probability": 0.87255859375}, {"start": 453.15, "end": 453.47, "word": " Swift", "probability": 0.7783203125}, {"start": 453.47, "end": 453.59, "word": " are", "probability": 0.3515625}, {"start": 453.59, "end": 453.79, "word": " put", "probability": 0.186279296875}, {"start": 453.79, "end": 454.59, "word": " in", "probability": 0.466796875}, {"start": 454.59, "end": 454.67, "word": " the", "probability": 0.7744140625}, {"start": 454.67, "end": 454.89, "word": " end,", "probability": 0.5458984375}, {"start": 455.05, "end": 455.19, "word": " and", "probability": 0.22900390625}, {"start": 455.19, "end": 455.45, "word": " Python", "probability": 0.7646484375}, {"start": 455.45, "end": 455.55, "word": " and", "probability": 0.720703125}, {"start": 455.55, "end": 455.69, "word": " Pythonbot", "probability": 0.43463134765625}, {"start": 455.69, "end": 455.81, "word": " are", "probability": 0.5810546875}, {"start": 455.81, "end": 455.99, "word": " put", "probability": 0.736328125}, {"start": 455.99, "end": 456.11, "word": " in", "probability": 0.2215576171875}, {"start": 456.11, "end": 456.29, "word": " the", "probability": 0.416748046875}, {"start": 456.29, "end": 456.29, "word": " beginning.", "probability": 0.418701171875}], "temperature": 1.0}, {"id": 21, "seek": 49301, "start": 464.31, "end": 493.01, "text": " The class in the end is represented by a square You can find the details, you can't find the details, depending on the drawing Suppose I have many classes, I want to put in each class what attributes and methods they have Sometimes it doesn't matter to me to show these things I care about the relationships between them So sometimes you find the class is made only of what? Names, sometimes they are made like this and they are left empty Sometimes it only shows the methods, sometimes it only shows the attributes, sometimes it shows them all according to", "tokens": [440, 1508, 294, 264, 917, 307, 10379, 538, 257, 3732, 509, 393, 915, 264, 4365, 11, 291, 393, 380, 915, 264, 4365, 11, 5413, 322, 264, 6316, 21360, 286, 362, 867, 5359, 11, 286, 528, 281, 829, 294, 1184, 1508, 437, 17212, 293, 7150, 436, 362, 4803, 309, 1177, 380, 1871, 281, 385, 281, 855, 613, 721, 286, 1127, 466, 264, 6159, 1296, 552, 407, 2171, 291, 915, 264, 1508, 307, 1027, 787, 295, 437, 30, 426, 1632, 11, 2171, 436, 366, 1027, 411, 341, 293, 436, 366, 1411, 6707, 4803, 309, 787, 3110, 264, 7150, 11, 2171, 309, 787, 3110, 264, 17212, 11, 2171, 309, 3110, 552, 439, 4650, 281], "avg_logprob": -0.5809151498334748, "compression_ratio": 1.9857651245551602, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 464.31, "end": 464.51, "word": " The", "probability": 0.31982421875}, {"start": 464.51, "end": 464.77, "word": " class", "probability": 0.90478515625}, {"start": 464.77, "end": 464.87, "word": " in", "probability": 0.39013671875}, {"start": 464.87, "end": 464.93, "word": " the", "probability": 0.85009765625}, {"start": 464.93, "end": 465.05, "word": " end", "probability": 0.85009765625}, {"start": 465.05, "end": 465.21, "word": " is", "probability": 0.5458984375}, {"start": 465.21, "end": 465.49, "word": " represented", "probability": 0.80615234375}, {"start": 465.49, "end": 465.57, "word": " by", "probability": 0.51318359375}, {"start": 465.57, "end": 465.99, "word": " a", "probability": 0.5888671875}, {"start": 465.99, "end": 466.21, "word": " square", "probability": 0.65087890625}, {"start": 466.21, "end": 467.05, "word": " You", "probability": 0.419189453125}, {"start": 467.05, "end": 467.29, "word": " can", "probability": 0.53759765625}, {"start": 467.29, "end": 467.57, "word": " find", "probability": 0.63818359375}, {"start": 467.57, "end": 467.71, "word": " the", "probability": 0.50390625}, {"start": 467.71, "end": 468.11, "word": " details,", "probability": 0.5830078125}, {"start": 468.45, "end": 468.65, "word": " you", "probability": 0.431640625}, {"start": 468.65, "end": 469.29, "word": " can't", "probability": 0.442626953125}, {"start": 469.29, "end": 469.65, "word": " find", "probability": 0.6845703125}, {"start": 469.65, "end": 469.79, "word": " the", "probability": 0.392822265625}, {"start": 469.79, "end": 470.09, "word": " details,", "probability": 0.85400390625}, {"start": 470.17, "end": 470.41, "word": " depending", "probability": 0.38232421875}, {"start": 470.41, "end": 470.93, "word": " on", "probability": 0.93994140625}, {"start": 470.93, "end": 471.09, "word": " the", "probability": 0.7275390625}, {"start": 471.09, "end": 471.33, "word": " drawing", "probability": 0.7509765625}, {"start": 471.33, "end": 472.39, "word": " Suppose", "probability": 0.1136474609375}, {"start": 472.39, "end": 472.59, "word": " I", "probability": 0.77392578125}, {"start": 472.59, "end": 472.79, "word": " have", "probability": 0.9306640625}, {"start": 472.79, "end": 472.85, "word": " many", "probability": 0.64111328125}, {"start": 472.85, "end": 473.47, "word": " classes,", "probability": 0.9189453125}, {"start": 473.85, "end": 473.95, "word": " I", "probability": 0.73681640625}, {"start": 473.95, "end": 474.05, "word": " want", "probability": 0.54931640625}, {"start": 474.05, "end": 474.13, "word": " to", "probability": 0.9638671875}, {"start": 474.13, "end": 474.27, "word": " put", "probability": 0.53125}, {"start": 474.27, "end": 474.35, "word": " in", "probability": 0.1993408203125}, {"start": 474.35, "end": 474.61, "word": " each", "probability": 0.810546875}, {"start": 474.61, "end": 474.93, "word": " class", "probability": 0.91650390625}, {"start": 474.93, "end": 475.07, "word": " what", "probability": 0.2822265625}, {"start": 475.07, "end": 475.47, "word": " attributes", "probability": 0.43798828125}, {"start": 475.47, "end": 475.89, "word": " and", "probability": 0.43603515625}, {"start": 475.89, "end": 476.21, "word": " methods", "probability": 0.869140625}, {"start": 476.21, "end": 476.21, "word": " they", "probability": 0.496337890625}, {"start": 476.21, "end": 476.21, "word": " have", "probability": 0.90478515625}, {"start": 476.21, "end": 476.49, "word": " Sometimes", "probability": 0.491943359375}, {"start": 476.49, "end": 476.63, "word": " it", "probability": 0.3916015625}, {"start": 476.63, "end": 476.79, "word": " doesn't", "probability": 0.81005859375}, {"start": 476.79, "end": 476.97, "word": " matter", "probability": 0.4404296875}, {"start": 476.97, "end": 477.13, "word": " to", "probability": 0.36279296875}, {"start": 477.13, "end": 477.15, "word": " me", "probability": 0.5810546875}, {"start": 477.15, "end": 477.15, "word": " to", "probability": 0.83056640625}, {"start": 477.15, "end": 477.31, "word": " show", "probability": 0.455810546875}, {"start": 477.31, "end": 477.57, "word": " these", "probability": 0.56201171875}, {"start": 477.57, "end": 477.97, "word": " things", "probability": 0.79248046875}, {"start": 477.97, "end": 478.57, "word": " I", "probability": 0.1790771484375}, {"start": 478.57, "end": 478.85, "word": " care", "probability": 0.53515625}, {"start": 478.85, "end": 479.25, "word": " about", "probability": 0.69482421875}, {"start": 479.25, "end": 479.89, "word": " the", "probability": 0.51123046875}, {"start": 479.89, "end": 480.29, "word": " relationships", "probability": 0.37841796875}, {"start": 480.29, "end": 480.59, "word": " between", "probability": 0.83642578125}, {"start": 480.59, "end": 480.69, "word": " them", "probability": 0.87939453125}, {"start": 480.69, "end": 480.79, "word": " So", "probability": 0.2802734375}, {"start": 480.79, "end": 481.67, "word": " sometimes", "probability": 0.6728515625}, {"start": 481.67, "end": 481.87, "word": " you", "probability": 0.7744140625}, {"start": 481.87, "end": 481.97, "word": " find", "probability": 0.453369140625}, {"start": 481.97, "end": 482.11, "word": " the", "probability": 0.463134765625}, {"start": 482.11, "end": 482.33, "word": " class", "probability": 0.953125}, {"start": 482.33, "end": 482.45, "word": " is", "probability": 0.3896484375}, {"start": 482.45, "end": 482.53, "word": " made", "probability": 0.4970703125}, {"start": 482.53, "end": 482.81, "word": " only", "probability": 0.2376708984375}, {"start": 482.81, "end": 482.87, "word": " of", "probability": 0.53271484375}, {"start": 482.87, "end": 483.15, "word": " what?", "probability": 0.140380859375}, {"start": 483.83, "end": 484.15, "word": " Names,", "probability": 0.794189453125}, {"start": 484.23, "end": 484.51, "word": " sometimes", "probability": 0.8759765625}, {"start": 484.51, "end": 484.65, "word": " they", "probability": 0.443603515625}, {"start": 484.65, "end": 484.85, "word": " are", "probability": 0.59033203125}, {"start": 484.85, "end": 485.07, "word": " made", "probability": 0.662109375}, {"start": 485.07, "end": 485.29, "word": " like", "probability": 0.81787109375}, {"start": 485.29, "end": 485.63, "word": " this", "probability": 0.4765625}, {"start": 485.63, "end": 485.71, "word": " and", "probability": 0.693359375}, {"start": 485.71, "end": 485.89, "word": " they", "probability": 0.39501953125}, {"start": 485.89, "end": 486.27, "word": " are", "probability": 0.48291015625}, {"start": 486.27, "end": 486.27, "word": " left", "probability": 0.724609375}, {"start": 486.27, "end": 486.87, "word": " empty", "probability": 0.297607421875}, {"start": 486.87, "end": 488.21, "word": " Sometimes", "probability": 0.57666015625}, {"start": 488.21, "end": 488.41, "word": " it", "probability": 0.755859375}, {"start": 488.41, "end": 488.51, "word": " only", "probability": 0.302734375}, {"start": 488.51, "end": 488.69, "word": " shows", "probability": 0.82177734375}, {"start": 488.69, "end": 489.11, "word": " the", "probability": 0.71484375}, {"start": 489.11, "end": 489.41, "word": " methods,", "probability": 0.90576171875}, {"start": 489.49, "end": 489.67, "word": " sometimes", "probability": 0.85400390625}, {"start": 489.67, "end": 489.77, "word": " it", "probability": 0.4814453125}, {"start": 489.77, "end": 489.85, "word": " only", "probability": 0.50048828125}, {"start": 489.85, "end": 490.01, "word": " shows", "probability": 0.87646484375}, {"start": 490.01, "end": 490.33, "word": " the", "probability": 0.86279296875}, {"start": 490.33, "end": 490.71, "word": " attributes,", "probability": 0.908203125}, {"start": 490.83, "end": 491.01, "word": " sometimes", "probability": 0.8935546875}, {"start": 491.01, "end": 491.13, "word": " it", "probability": 0.87353515625}, {"start": 491.13, "end": 491.35, "word": " shows", "probability": 0.78564453125}, {"start": 491.35, "end": 491.65, "word": " them", "probability": 0.8251953125}, {"start": 491.65, "end": 492.41, "word": " all", "probability": 0.5146484375}, {"start": 492.41, "end": 492.81, "word": " according", "probability": 0.416748046875}, {"start": 492.81, "end": 493.01, "word": " to", "probability": 0.9462890625}], "temperature": 1.0}, {"id": 22, "seek": 51444, "start": 493.74, "end": 514.44, "text": " what you want to apply according to the space available to you for drawing this is for the class, now we come to the second important part for us which is relationships relationships that exist between classes relationships are four types as I said associations, dependencies, generalization and realization", "tokens": [437, 291, 528, 281, 3079, 4650, 281, 264, 1901, 2435, 281, 291, 337, 6316, 341, 307, 337, 264, 1508, 11, 586, 321, 808, 281, 264, 1150, 1021, 644, 337, 505, 597, 307, 6159, 6159, 300, 2514, 1296, 5359, 6159, 366, 1451, 3467, 382, 286, 848, 26597, 11, 36606, 11, 2674, 2144, 293, 25138], "avg_logprob": -0.6047453935499545, "compression_ratio": 1.7303370786516854, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 493.74, "end": 494.04, "word": " what", "probability": 0.114013671875}, {"start": 494.04, "end": 494.26, "word": " you", "probability": 0.560546875}, {"start": 494.26, "end": 494.52, "word": " want", "probability": 0.201171875}, {"start": 494.52, "end": 494.62, "word": " to", "probability": 0.88232421875}, {"start": 494.62, "end": 495.22, "word": " apply", "probability": 0.25}, {"start": 495.22, "end": 495.5, "word": " according", "probability": 0.37548828125}, {"start": 495.5, "end": 495.64, "word": " to", "probability": 0.9443359375}, {"start": 495.64, "end": 495.7, "word": " the", "probability": 0.61962890625}, {"start": 495.7, "end": 495.98, "word": " space", "probability": 0.435302734375}, {"start": 495.98, "end": 496.5, "word": " available", "probability": 0.474853515625}, {"start": 496.5, "end": 496.76, "word": " to", "probability": 0.2822265625}, {"start": 496.76, "end": 496.76, "word": " you", "probability": 0.69287109375}, {"start": 496.76, "end": 496.86, "word": " for", "probability": 0.51171875}, {"start": 496.86, "end": 497.18, "word": " drawing", "probability": 0.6171875}, {"start": 497.18, "end": 499.7, "word": " this", "probability": 0.12408447265625}, {"start": 499.7, "end": 499.9, "word": " is", "probability": 0.62109375}, {"start": 499.9, "end": 500.12, "word": " for", "probability": 0.69970703125}, {"start": 500.12, "end": 500.3, "word": " the", "probability": 0.43408203125}, {"start": 500.3, "end": 500.56, "word": " class,", "probability": 0.615234375}, {"start": 500.6, "end": 500.86, "word": " now", "probability": 0.292236328125}, {"start": 500.86, "end": 501.08, "word": " we", "probability": 0.4189453125}, {"start": 501.08, "end": 501.16, "word": " come", "probability": 0.43798828125}, {"start": 501.16, "end": 501.44, "word": " to", "probability": 0.92724609375}, {"start": 501.44, "end": 501.8, "word": " the", "probability": 0.85888671875}, {"start": 501.8, "end": 502.04, "word": " second", "probability": 0.638671875}, {"start": 502.04, "end": 502.68, "word": " important", "probability": 0.3974609375}, {"start": 502.68, "end": 502.88, "word": " part", "probability": 0.73876953125}, {"start": 502.88, "end": 503.06, "word": " for", "probability": 0.39990234375}, {"start": 503.06, "end": 503.54, "word": " us", "probability": 0.92626953125}, {"start": 503.54, "end": 503.7, "word": " which", "probability": 0.417724609375}, {"start": 503.7, "end": 504.22, "word": " is", "probability": 0.76123046875}, {"start": 504.22, "end": 505.1, "word": " relationships", "probability": 0.45166015625}, {"start": 505.1, "end": 506.64, "word": " relationships", "probability": 0.5537109375}, {"start": 506.64, "end": 506.66, "word": " that", "probability": 0.55908203125}, {"start": 506.66, "end": 507.12, "word": " exist", "probability": 0.494384765625}, {"start": 507.12, "end": 507.56, "word": " between", "probability": 0.82861328125}, {"start": 507.56, "end": 508.14, "word": " classes", "probability": 0.77099609375}, {"start": 508.14, "end": 508.92, "word": " relationships", "probability": 0.5419921875}, {"start": 508.92, "end": 509.08, "word": " are", "probability": 0.5146484375}, {"start": 509.08, "end": 509.3, "word": " four", "probability": 0.4189453125}, {"start": 509.3, "end": 509.56, "word": " types", "probability": 0.56591796875}, {"start": 509.56, "end": 509.68, "word": " as", "probability": 0.55126953125}, {"start": 509.68, "end": 509.86, "word": " I", "probability": 0.85595703125}, {"start": 509.86, "end": 510.2, "word": " said", "probability": 0.73388671875}, {"start": 510.2, "end": 511.26, "word": " associations,", "probability": 0.74072265625}, {"start": 511.68, "end": 512.24, "word": " dependencies,", "probability": 0.8662109375}, {"start": 512.56, "end": 513.38, "word": " generalization", "probability": 0.734375}, {"start": 513.38, "end": 514.0, "word": " and", "probability": 0.74072265625}, {"start": 514.0, "end": 514.44, "word": " realization", "probability": 0.931640625}], "temperature": 1.0}, {"id": 23, "seek": 54637, "start": 517.13, "end": 546.37, "text": "Okay, let's go to the first type of relationship, which is the relationship of association What is meant by association relationship? In short, when you have a class and inside it is an attribute of another class, this is an association relationship For example, when you find for example a class instructor, what does instructor mean? The teacher, okay, and inside it is a reference or object of a type", "tokens": [8297, 11, 718, 311, 352, 281, 264, 700, 2010, 295, 2480, 11, 597, 307, 264, 2480, 295, 14598, 708, 307, 4140, 538, 14598, 2480, 30, 682, 2099, 11, 562, 291, 362, 257, 1508, 293, 1854, 309, 307, 364, 19667, 295, 1071, 1508, 11, 341, 307, 364, 14598, 2480, 1171, 1365, 11, 562, 291, 915, 337, 1365, 257, 1508, 18499, 11, 437, 775, 18499, 914, 30, 440, 5027, 11, 1392, 11, 293, 1854, 309, 307, 257, 6408, 420, 2657, 295, 257, 2010], "avg_logprob": -0.5407774368437325, "compression_ratio": 1.892018779342723, "no_speech_prob": 0.0, "words": [{"start": 517.13, "end": 517.37, "word": "Okay,", "probability": 0.0963134765625}, {"start": 517.41, "end": 517.49, "word": " let's", "probability": 0.77099609375}, {"start": 517.49, "end": 517.61, "word": " go", "probability": 0.13232421875}, {"start": 517.61, "end": 517.71, "word": " to", "probability": 0.689453125}, {"start": 517.71, "end": 517.87, "word": " the", "probability": 0.80810546875}, {"start": 517.87, "end": 517.87, "word": " first", "probability": 0.78857421875}, {"start": 517.87, "end": 518.01, "word": " type", "probability": 0.47314453125}, {"start": 518.01, "end": 518.17, "word": " of", "probability": 0.9208984375}, {"start": 518.17, "end": 518.47, "word": " relationship,", "probability": 0.6240234375}, {"start": 518.65, "end": 518.65, "word": " which", "probability": 0.6337890625}, {"start": 518.65, "end": 518.71, "word": " is", "probability": 0.94580078125}, {"start": 518.71, "end": 518.79, "word": " the", "probability": 0.43115234375}, {"start": 518.79, "end": 518.99, "word": " relationship", "probability": 0.38134765625}, {"start": 518.99, "end": 519.15, "word": " of", "probability": 0.90380859375}, {"start": 519.15, "end": 519.73, "word": " association", "probability": 0.77099609375}, {"start": 519.73, "end": 520.43, "word": " What", "probability": 0.55322265625}, {"start": 520.43, "end": 520.51, "word": " is", "probability": 0.371826171875}, {"start": 520.51, "end": 520.79, "word": " meant", "probability": 0.457275390625}, {"start": 520.79, "end": 520.91, "word": " by", "probability": 0.91552734375}, {"start": 520.91, "end": 521.53, "word": " association", "probability": 0.380126953125}, {"start": 521.53, "end": 521.87, "word": " relationship?", "probability": 0.54248046875}, {"start": 522.17, "end": 522.21, "word": " In", "probability": 0.48095703125}, {"start": 522.21, "end": 522.57, "word": " short,", "probability": 0.5556640625}, {"start": 523.05, "end": 523.71, "word": " when", "probability": 0.8212890625}, {"start": 523.71, "end": 523.87, "word": " you", "probability": 0.9208984375}, {"start": 523.87, "end": 524.23, "word": " have", "probability": 0.9208984375}, {"start": 524.23, "end": 524.61, "word": " a", "probability": 0.86767578125}, {"start": 524.61, "end": 525.01, "word": " class", "probability": 0.95263671875}, {"start": 525.01, "end": 525.75, "word": " and", "probability": 0.51953125}, {"start": 525.75, "end": 525.99, "word": " inside", "probability": 0.57470703125}, {"start": 525.99, "end": 526.17, "word": " it", "probability": 0.5615234375}, {"start": 526.17, "end": 526.17, "word": " is", "probability": 0.1915283203125}, {"start": 526.17, "end": 526.81, "word": " an", "probability": 0.6689453125}, {"start": 526.81, "end": 526.81, "word": " attribute", "probability": 0.91455078125}, {"start": 526.81, "end": 527.09, "word": " of", "probability": 0.457763671875}, {"start": 527.09, "end": 529.63, "word": " another", "probability": 0.61962890625}, {"start": 529.63, "end": 530.07, "word": " class,", "probability": 0.8427734375}, {"start": 530.45, "end": 531.39, "word": " this", "probability": 0.6513671875}, {"start": 531.39, "end": 531.43, "word": " is", "probability": 0.8662109375}, {"start": 531.43, "end": 531.73, "word": " an", "probability": 0.239990234375}, {"start": 531.73, "end": 532.03, "word": " association", "probability": 0.92431640625}, {"start": 532.03, "end": 532.05, "word": " relationship", "probability": 0.87060546875}, {"start": 532.05, "end": 533.19, "word": " For", "probability": 0.427734375}, {"start": 533.19, "end": 533.51, "word": " example,", "probability": 0.91259765625}, {"start": 533.81, "end": 533.93, "word": " when", "probability": 0.58642578125}, {"start": 533.93, "end": 534.15, "word": " you", "probability": 0.91064453125}, {"start": 534.15, "end": 534.55, "word": " find", "probability": 0.5947265625}, {"start": 534.55, "end": 535.25, "word": " for", "probability": 0.29150390625}, {"start": 535.25, "end": 535.95, "word": " example", "probability": 0.9033203125}, {"start": 535.95, "end": 537.37, "word": " a", "probability": 0.405029296875}, {"start": 537.37, "end": 537.81, "word": " class", "probability": 0.943359375}, {"start": 537.81, "end": 538.55, "word": " instructor,", "probability": 0.80419921875}, {"start": 539.21, "end": 539.43, "word": " what", "probability": 0.646484375}, {"start": 539.43, "end": 539.55, "word": " does", "probability": 0.42138671875}, {"start": 539.55, "end": 540.05, "word": " instructor", "probability": 0.83056640625}, {"start": 540.05, "end": 540.23, "word": " mean?", "probability": 0.9130859375}, {"start": 541.25, "end": 541.45, "word": " The", "probability": 0.134033203125}, {"start": 541.45, "end": 541.65, "word": " teacher,", "probability": 0.86474609375}, {"start": 542.27, "end": 542.89, "word": " okay,", "probability": 0.41455078125}, {"start": 543.87, "end": 544.07, "word": " and", "probability": 0.91455078125}, {"start": 544.07, "end": 544.27, "word": " inside", "probability": 0.78515625}, {"start": 544.27, "end": 544.63, "word": " it", "probability": 0.6064453125}, {"start": 544.63, "end": 544.63, "word": " is", "probability": 0.78515625}, {"start": 544.63, "end": 544.73, "word": " a", "probability": 0.86083984375}, {"start": 544.73, "end": 545.19, "word": " reference", "probability": 0.94921875}, {"start": 545.19, "end": 545.57, "word": " or", "probability": 0.890625}, {"start": 545.57, "end": 545.93, "word": " object", "probability": 0.68994140625}, {"start": 545.93, "end": 546.05, "word": " of", "probability": 0.89501953125}, {"start": 546.05, "end": 546.13, "word": " a", "probability": 0.250244140625}, {"start": 546.13, "end": 546.37, "word": " type", "probability": 0.5322265625}], "temperature": 1.0}, {"id": 24, "seek": 56420, "start": 547.56, "end": 564.2, "text": "course. This is an attribute for the instructor, right or wrong? But this is from another class, okay? We say that this relationship between them is what? Association. We simply represent it as this is the instructor and this is the course", "tokens": [31913, 13, 639, 307, 364, 19667, 337, 264, 18499, 11, 558, 420, 2085, 30, 583, 341, 307, 490, 1071, 1508, 11, 1392, 30, 492, 584, 300, 341, 2480, 1296, 552, 307, 437, 30, 10734, 13, 492, 2935, 2906, 309, 382, 341, 307, 264, 18499, 293, 341, 307, 264, 1164], "avg_logprob": -0.5043749785423279, "compression_ratio": 1.551948051948052, "no_speech_prob": 1.6570091247558594e-05, "words": [{"start": 547.56, "end": 548.0, "word": "course.", "probability": 0.6513671875}, {"start": 548.48, "end": 548.84, "word": " This", "probability": 0.5595703125}, {"start": 548.84, "end": 548.88, "word": " is", "probability": 0.84716796875}, {"start": 548.88, "end": 549.0, "word": " an", "probability": 0.487548828125}, {"start": 549.0, "end": 549.28, "word": " attribute", "probability": 0.93798828125}, {"start": 549.28, "end": 549.52, "word": " for", "probability": 0.416259765625}, {"start": 549.52, "end": 549.64, "word": " the", "probability": 0.494873046875}, {"start": 549.64, "end": 550.06, "word": " instructor,", "probability": 0.86083984375}, {"start": 550.28, "end": 550.34, "word": " right", "probability": 0.4140625}, {"start": 550.34, "end": 550.56, "word": " or", "probability": 0.48193359375}, {"start": 550.56, "end": 550.56, "word": " wrong?", "probability": 0.6064453125}, {"start": 551.06, "end": 551.24, "word": " But", "probability": 0.77294921875}, {"start": 551.24, "end": 551.44, "word": " this", "probability": 0.76953125}, {"start": 551.44, "end": 551.52, "word": " is", "probability": 0.73779296875}, {"start": 551.52, "end": 551.58, "word": " from", "probability": 0.51708984375}, {"start": 551.58, "end": 552.02, "word": " another", "probability": 0.7451171875}, {"start": 552.02, "end": 552.56, "word": " class,", "probability": 0.95703125}, {"start": 553.22, "end": 554.08, "word": " okay?", "probability": 0.40771484375}, {"start": 554.16, "end": 554.26, "word": " We", "probability": 0.64306640625}, {"start": 554.26, "end": 554.48, "word": " say", "probability": 0.68603515625}, {"start": 554.48, "end": 554.62, "word": " that", "probability": 0.4765625}, {"start": 554.62, "end": 554.7, "word": " this", "probability": 0.63037109375}, {"start": 554.7, "end": 555.0, "word": " relationship", "probability": 0.478515625}, {"start": 555.0, "end": 555.18, "word": " between", "probability": 0.52197265625}, {"start": 555.18, "end": 555.28, "word": " them", "probability": 0.84130859375}, {"start": 555.28, "end": 555.58, "word": " is", "probability": 0.77783203125}, {"start": 555.58, "end": 555.58, "word": " what?", "probability": 0.5478515625}, {"start": 556.44, "end": 556.88, "word": " Association.", "probability": 0.81298828125}, {"start": 557.06, "end": 557.14, "word": " We", "probability": 0.19580078125}, {"start": 557.14, "end": 557.52, "word": " simply", "probability": 0.646484375}, {"start": 557.52, "end": 557.52, "word": " represent", "probability": 0.56201171875}, {"start": 557.52, "end": 558.06, "word": " it", "probability": 0.7421875}, {"start": 558.06, "end": 558.2, "word": " as", "probability": 0.333740234375}, {"start": 558.2, "end": 559.02, "word": " this", "probability": 0.251953125}, {"start": 559.02, "end": 559.14, "word": " is", "probability": 0.76220703125}, {"start": 559.14, "end": 559.22, "word": " the", "probability": 0.87744140625}, {"start": 559.22, "end": 559.72, "word": " instructor", "probability": 0.92236328125}, {"start": 559.72, "end": 563.44, "word": " and", "probability": 0.72412109375}, {"start": 563.44, "end": 563.62, "word": " this", "probability": 0.91748046875}, {"start": 563.62, "end": 563.66, "word": " is", "probability": 0.9443359375}, {"start": 563.66, "end": 563.78, "word": " the", "probability": 0.91259765625}, {"start": 563.78, "end": 564.2, "word": " course", "probability": 0.9736328125}], "temperature": 1.0}, {"id": 25, "seek": 59389, "start": 566.31, "end": 593.89, "text": "and you make a relationship between them like a arrow like this you see that the end of the arrow is important this is the relationship that we call associative if you find a drawing like this you will understand that this class is using a reference or object from the class course now here for example in the example that we have we have a class instructor and they entered a list of what? students", "tokens": [474, 291, 652, 257, 2480, 1296, 552, 411, 257, 11610, 411, 341, 291, 536, 300, 264, 917, 295, 264, 11610, 307, 1021, 341, 307, 264, 2480, 300, 321, 818, 4180, 1166, 498, 291, 915, 257, 6316, 411, 341, 291, 486, 1223, 300, 341, 1508, 307, 1228, 257, 6408, 420, 2657, 490, 264, 1508, 1164, 586, 510, 337, 1365, 294, 264, 1365, 300, 321, 362, 321, 362, 257, 1508, 18499, 293, 436, 9065, 257, 1329, 295, 437, 30, 1731], "avg_logprob": -0.5957278254665906, "compression_ratio": 1.8732394366197183, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 566.31, "end": 566.73, "word": "and", "probability": 0.222900390625}, {"start": 566.73, "end": 566.87, "word": " you", "probability": 0.2113037109375}, {"start": 566.87, "end": 567.07, "word": " make", "probability": 0.390625}, {"start": 567.07, "end": 567.39, "word": " a", "probability": 0.57080078125}, {"start": 567.39, "end": 567.65, "word": " relationship", "probability": 0.069580078125}, {"start": 567.65, "end": 568.07, "word": " between", "probability": 0.47265625}, {"start": 568.07, "end": 568.07, "word": " them", "probability": 0.66455078125}, {"start": 568.07, "end": 568.35, "word": " like", "probability": 0.195556640625}, {"start": 568.35, "end": 568.51, "word": " a", "probability": 0.454345703125}, {"start": 568.51, "end": 568.55, "word": " arrow", "probability": 0.10321044921875}, {"start": 568.55, "end": 568.67, "word": " like", "probability": 0.1527099609375}, {"start": 568.67, "end": 569.47, "word": " this", "probability": 0.828125}, {"start": 569.47, "end": 569.95, "word": " you", "probability": 0.260009765625}, {"start": 569.95, "end": 570.17, "word": " see", "probability": 0.65625}, {"start": 570.17, "end": 570.43, "word": " that", "probability": 0.1553955078125}, {"start": 570.43, "end": 570.51, "word": " the", "probability": 0.61181640625}, {"start": 570.51, "end": 570.69, "word": " end", "probability": 0.7490234375}, {"start": 570.69, "end": 570.85, "word": " of", "probability": 0.9228515625}, {"start": 570.85, "end": 570.95, "word": " the", "probability": 0.6171875}, {"start": 570.95, "end": 571.17, "word": " arrow", "probability": 0.87890625}, {"start": 571.17, "end": 572.05, "word": " is", "probability": 0.8466796875}, {"start": 572.05, "end": 572.29, "word": " important", "probability": 0.60595703125}, {"start": 572.29, "end": 573.91, "word": " this", "probability": 0.3486328125}, {"start": 573.91, "end": 574.67, "word": " is", "probability": 0.7763671875}, {"start": 574.67, "end": 574.71, "word": " the", "probability": 0.419677734375}, {"start": 574.71, "end": 574.95, "word": " relationship", "probability": 0.837890625}, {"start": 574.95, "end": 575.23, "word": " that", "probability": 0.305419921875}, {"start": 575.23, "end": 575.43, "word": " we", "probability": 0.82763671875}, {"start": 575.43, "end": 575.79, "word": " call", "probability": 0.75634765625}, {"start": 575.79, "end": 576.71, "word": " associative", "probability": 0.605224609375}, {"start": 576.71, "end": 576.93, "word": " if", "probability": 0.69580078125}, {"start": 576.93, "end": 577.55, "word": " you", "probability": 0.94287109375}, {"start": 577.55, "end": 577.71, "word": " find", "probability": 0.58251953125}, {"start": 577.71, "end": 577.83, "word": " a", "probability": 0.446533203125}, {"start": 577.83, "end": 578.05, "word": " drawing", "probability": 0.53173828125}, {"start": 578.05, "end": 578.23, "word": " like", "probability": 0.86767578125}, {"start": 578.23, "end": 578.51, "word": " this", "probability": 0.73779296875}, {"start": 578.51, "end": 578.67, "word": " you", "probability": 0.296875}, {"start": 578.67, "end": 578.81, "word": " will", "probability": 0.52392578125}, {"start": 578.81, "end": 579.15, "word": " understand", "probability": 0.62353515625}, {"start": 579.15, "end": 579.69, "word": " that", "probability": 0.89697265625}, {"start": 579.69, "end": 579.89, "word": " this", "probability": 0.75732421875}, {"start": 579.89, "end": 580.41, "word": " class", "probability": 0.873046875}, {"start": 580.41, "end": 581.05, "word": " is", "probability": 0.440673828125}, {"start": 581.05, "end": 581.49, "word": " using", "probability": 0.74658203125}, {"start": 581.49, "end": 581.73, "word": " a", "probability": 0.55908203125}, {"start": 581.73, "end": 582.21, "word": " reference", "probability": 0.92724609375}, {"start": 582.21, "end": 582.43, "word": " or", "probability": 0.81494140625}, {"start": 582.43, "end": 582.83, "word": " object", "probability": 0.85009765625}, {"start": 582.83, "end": 583.07, "word": " from", "probability": 0.7607421875}, {"start": 583.07, "end": 584.05, "word": " the", "probability": 0.7607421875}, {"start": 584.05, "end": 584.31, "word": " class", "probability": 0.94677734375}, {"start": 584.31, "end": 584.81, "word": " course", "probability": 0.9765625}, {"start": 584.81, "end": 586.61, "word": " now", "probability": 0.2626953125}, {"start": 586.61, "end": 587.75, "word": " here", "probability": 0.435302734375}, {"start": 587.75, "end": 587.91, "word": " for", "probability": 0.433837890625}, {"start": 587.91, "end": 588.09, "word": " example", "probability": 0.94677734375}, {"start": 588.09, "end": 588.21, "word": " in", "probability": 0.472412109375}, {"start": 588.21, "end": 588.27, "word": " the", "probability": 0.361083984375}, {"start": 588.27, "end": 588.53, "word": " example", "probability": 0.9208984375}, {"start": 588.53, "end": 588.63, "word": " that", "probability": 0.427490234375}, {"start": 588.63, "end": 588.71, "word": " we", "probability": 0.9296875}, {"start": 588.71, "end": 588.93, "word": " have", "probability": 0.92626953125}, {"start": 588.93, "end": 589.61, "word": " we", "probability": 0.66357421875}, {"start": 589.61, "end": 589.77, "word": " have", "probability": 0.94482421875}, {"start": 589.77, "end": 589.87, "word": " a", "probability": 0.82080078125}, {"start": 589.87, "end": 590.07, "word": " class", "probability": 0.970703125}, {"start": 590.07, "end": 590.61, "word": " instructor", "probability": 0.91943359375}, {"start": 590.61, "end": 591.83, "word": " and", "probability": 0.81005859375}, {"start": 591.83, "end": 591.93, "word": " they", "probability": 0.258056640625}, {"start": 591.93, "end": 592.13, "word": " entered", "probability": 0.1435546875}, {"start": 592.13, "end": 592.25, "word": " a", "probability": 0.47802734375}, {"start": 592.25, "end": 592.43, "word": " list", "probability": 0.92138671875}, {"start": 592.43, "end": 592.61, "word": " of", "probability": 0.96142578125}, {"start": 592.61, "end": 592.89, "word": " what?", "probability": 0.468017578125}, {"start": 593.41, "end": 593.89, "word": " students", "probability": 0.8720703125}], "temperature": 1.0}, {"id": 26, "seek": 61171, "start": 595.53, "end": 611.71, "text": "Also regardless of whether it is one or a group, in the end it is an association because the instructor uses objects from which he is a student and how does he represent it? He represents it like this, this is the instructor and this is the student", "tokens": [9171, 539, 10060, 295, 1968, 309, 307, 472, 420, 257, 1594, 11, 294, 264, 917, 309, 307, 364, 14598, 570, 264, 18499, 4960, 6565, 490, 597, 415, 307, 257, 3107, 293, 577, 775, 415, 2906, 309, 30, 634, 8855, 309, 411, 341, 11, 341, 307, 264, 18499, 293, 341, 307, 264, 3107], "avg_logprob": -0.5032429290267656, "compression_ratio": 1.6644295302013423, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 595.53, "end": 595.87, "word": "Also", "probability": 0.586669921875}, {"start": 595.87, "end": 596.37, "word": " regardless", "probability": 0.18310546875}, {"start": 596.37, "end": 596.59, "word": " of", "probability": 0.6484375}, {"start": 596.59, "end": 596.87, "word": " whether", "probability": 0.30224609375}, {"start": 596.87, "end": 596.87, "word": " it", "probability": 0.48193359375}, {"start": 596.87, "end": 596.87, "word": " is", "probability": 0.578125}, {"start": 596.87, "end": 597.11, "word": " one", "probability": 0.57568359375}, {"start": 597.11, "end": 597.35, "word": " or", "probability": 0.51953125}, {"start": 597.35, "end": 597.49, "word": " a", "probability": 0.47412109375}, {"start": 597.49, "end": 597.79, "word": " group,", "probability": 0.87255859375}, {"start": 598.23, "end": 598.35, "word": " in", "probability": 0.30615234375}, {"start": 598.35, "end": 598.61, "word": " the", "probability": 0.88427734375}, {"start": 598.61, "end": 598.67, "word": " end", "probability": 0.908203125}, {"start": 598.67, "end": 599.21, "word": " it", "probability": 0.458251953125}, {"start": 599.21, "end": 599.29, "word": " is", "probability": 0.66650390625}, {"start": 599.29, "end": 599.41, "word": " an", "probability": 0.466064453125}, {"start": 599.41, "end": 600.13, "word": " association", "probability": 0.8935546875}, {"start": 600.13, "end": 600.75, "word": " because", "probability": 0.1649169921875}, {"start": 600.75, "end": 600.91, "word": " the", "probability": 0.74267578125}, {"start": 600.91, "end": 601.23, "word": " instructor", "probability": 0.880859375}, {"start": 601.23, "end": 601.71, "word": " uses", "probability": 0.716796875}, {"start": 601.71, "end": 602.15, "word": " objects", "probability": 0.767578125}, {"start": 602.15, "end": 602.27, "word": " from", "probability": 0.2283935546875}, {"start": 602.27, "end": 602.57, "word": " which", "probability": 0.59326171875}, {"start": 602.57, "end": 602.59, "word": " he", "probability": 0.85546875}, {"start": 602.59, "end": 602.63, "word": " is", "probability": 0.875}, {"start": 602.63, "end": 603.41, "word": " a", "probability": 0.68798828125}, {"start": 603.41, "end": 603.85, "word": " student", "probability": 0.95947265625}, {"start": 603.85, "end": 604.93, "word": " and", "probability": 0.25634765625}, {"start": 604.93, "end": 605.09, "word": " how", "probability": 0.6123046875}, {"start": 605.09, "end": 605.17, "word": " does", "probability": 0.521484375}, {"start": 605.17, "end": 605.21, "word": " he", "probability": 0.9072265625}, {"start": 605.21, "end": 605.45, "word": " represent", "probability": 0.556640625}, {"start": 605.45, "end": 605.71, "word": " it?", "probability": 0.50048828125}, {"start": 605.89, "end": 606.05, "word": " He", "probability": 0.69189453125}, {"start": 606.05, "end": 606.33, "word": " represents", "probability": 0.58203125}, {"start": 606.33, "end": 606.67, "word": " it", "probability": 0.90625}, {"start": 606.67, "end": 607.19, "word": " like", "probability": 0.406005859375}, {"start": 607.19, "end": 607.85, "word": " this,", "probability": 0.91650390625}, {"start": 608.47, "end": 608.63, "word": " this", "probability": 0.65185546875}, {"start": 608.63, "end": 608.67, "word": " is", "probability": 0.90966796875}, {"start": 608.67, "end": 608.89, "word": " the", "probability": 0.80712890625}, {"start": 608.89, "end": 609.25, "word": " instructor", "probability": 0.9130859375}, {"start": 609.25, "end": 610.05, "word": " and", "probability": 0.880859375}, {"start": 610.05, "end": 610.27, "word": " this", "probability": 0.91162109375}, {"start": 610.27, "end": 611.15, "word": " is", "probability": 0.93798828125}, {"start": 611.15, "end": 611.43, "word": " the", "probability": 0.9052734375}, {"start": 611.43, "end": 611.71, "word": " student", "probability": 0.966796875}], "temperature": 1.0}, {"id": 27, "seek": 63512, "start": 614.52, "end": 635.12, "text": "It is preferable to put it in the direction of the arrow to see who is using who So if the instructor is using an object from the student, you put it in the direction of the arrow like that, okay? Sometimes the relationship is exchangeable, what is exchangeable? So maybe the instructor inside the class is using a list of students", "tokens": [3522, 307, 4382, 712, 281, 829, 309, 294, 264, 3513, 295, 264, 11610, 281, 536, 567, 307, 1228, 567, 407, 498, 264, 18499, 307, 1228, 364, 2657, 490, 264, 3107, 11, 291, 829, 309, 294, 264, 3513, 295, 264, 11610, 411, 300, 11, 1392, 30, 4803, 264, 2480, 307, 7742, 712, 11, 437, 307, 7742, 712, 30, 407, 1310, 264, 18499, 1854, 264, 1508, 307, 1228, 257, 1329, 295, 1731], "avg_logprob": -0.5387323842921727, "compression_ratio": 1.9022988505747127, "no_speech_prob": 3.874301910400391e-06, "words": [{"start": 614.52, "end": 614.96, "word": "It", "probability": 0.1419677734375}, {"start": 614.96, "end": 615.06, "word": " is", "probability": 0.490966796875}, {"start": 615.06, "end": 615.58, "word": " preferable", "probability": 0.7076416015625}, {"start": 615.58, "end": 615.92, "word": " to", "probability": 0.67138671875}, {"start": 615.92, "end": 616.2, "word": " put", "probability": 0.457275390625}, {"start": 616.2, "end": 616.34, "word": " it", "probability": 0.2139892578125}, {"start": 616.34, "end": 616.42, "word": " in", "probability": 0.1744384765625}, {"start": 616.42, "end": 616.52, "word": " the", "probability": 0.541015625}, {"start": 616.52, "end": 616.56, "word": " direction", "probability": 0.3740234375}, {"start": 616.56, "end": 616.72, "word": " of", "probability": 0.95703125}, {"start": 616.72, "end": 616.82, "word": " the", "probability": 0.642578125}, {"start": 616.82, "end": 616.94, "word": " arrow", "probability": 0.7861328125}, {"start": 616.94, "end": 617.18, "word": " to", "probability": 0.41943359375}, {"start": 617.18, "end": 617.58, "word": " see", "probability": 0.281494140625}, {"start": 617.58, "end": 617.9, "word": " who", "probability": 0.654296875}, {"start": 617.9, "end": 618.02, "word": " is", "probability": 0.249267578125}, {"start": 618.02, "end": 618.46, "word": " using", "probability": 0.8115234375}, {"start": 618.46, "end": 619.36, "word": " who", "probability": 0.3212890625}, {"start": 619.36, "end": 620.06, "word": " So", "probability": 0.2091064453125}, {"start": 620.06, "end": 620.28, "word": " if", "probability": 0.79541015625}, {"start": 620.28, "end": 620.72, "word": " the", "probability": 0.76318359375}, {"start": 620.72, "end": 621.18, "word": " instructor", "probability": 0.865234375}, {"start": 621.18, "end": 621.74, "word": " is", "probability": 0.55517578125}, {"start": 621.74, "end": 622.02, "word": " using", "probability": 0.93701171875}, {"start": 622.02, "end": 622.18, "word": " an", "probability": 0.51416015625}, {"start": 622.18, "end": 622.34, "word": " object", "probability": 0.9833984375}, {"start": 622.34, "end": 622.54, "word": " from", "probability": 0.720703125}, {"start": 622.54, "end": 622.64, "word": " the", "probability": 0.7578125}, {"start": 622.64, "end": 622.86, "word": " student,", "probability": 0.429443359375}, {"start": 622.94, "end": 623.02, "word": " you", "probability": 0.48974609375}, {"start": 623.02, "end": 623.22, "word": " put", "probability": 0.5791015625}, {"start": 623.22, "end": 623.36, "word": " it", "probability": 0.74462890625}, {"start": 623.36, "end": 623.52, "word": " in", "probability": 0.68994140625}, {"start": 623.52, "end": 623.58, "word": " the", "probability": 0.8603515625}, {"start": 623.58, "end": 623.58, "word": " direction", "probability": 0.72802734375}, {"start": 623.58, "end": 623.7, "word": " of", "probability": 0.96826171875}, {"start": 623.7, "end": 623.76, "word": " the", "probability": 0.900390625}, {"start": 623.76, "end": 623.92, "word": " arrow", "probability": 0.90478515625}, {"start": 623.92, "end": 624.06, "word": " like", "probability": 0.396240234375}, {"start": 624.06, "end": 624.96, "word": " that,", "probability": 0.48779296875}, {"start": 624.96, "end": 625.34, "word": " okay?", "probability": 0.399169921875}, {"start": 627.3, "end": 627.74, "word": " Sometimes", "probability": 0.76904296875}, {"start": 627.74, "end": 628.34, "word": " the", "probability": 0.18994140625}, {"start": 628.34, "end": 628.58, "word": " relationship", "probability": 0.7421875}, {"start": 628.58, "end": 628.7, "word": " is", "probability": 0.6328125}, {"start": 628.7, "end": 629.34, "word": " exchangeable,", "probability": 0.6173095703125}, {"start": 629.5, "end": 629.68, "word": " what", "probability": 0.76806640625}, {"start": 629.68, "end": 629.78, "word": " is", "probability": 0.82470703125}, {"start": 629.78, "end": 630.38, "word": " exchangeable?", "probability": 0.844970703125}, {"start": 630.9, "end": 631.24, "word": " So", "probability": 0.54150390625}, {"start": 631.24, "end": 631.52, "word": " maybe", "probability": 0.369140625}, {"start": 631.52, "end": 631.7, "word": " the", "probability": 0.83740234375}, {"start": 631.7, "end": 632.3, "word": " instructor", "probability": 0.88134765625}, {"start": 632.3, "end": 633.1, "word": " inside", "probability": 0.344970703125}, {"start": 633.1, "end": 633.42, "word": " the", "probability": 0.85546875}, {"start": 633.42, "end": 633.84, "word": " class", "probability": 0.90966796875}, {"start": 633.84, "end": 634.04, "word": " is", "probability": 0.6025390625}, {"start": 634.04, "end": 634.34, "word": " using", "probability": 0.94873046875}, {"start": 634.34, "end": 634.5, "word": " a", "probability": 0.7177734375}, {"start": 634.5, "end": 634.62, "word": " list", "probability": 0.9111328125}, {"start": 634.62, "end": 634.78, "word": " of", "probability": 0.9716796875}, {"start": 634.78, "end": 635.12, "word": " students", "probability": 0.91650390625}], "temperature": 1.0}, {"id": 28, "seek": 66520, "start": 636.66, "end": 665.2, "text": " Also, if you open the code of the class student, you will find a reference to whom? To the instructor. In this case, this is an exchangeable memory, it can put two arrows on both sides and it can not put any arrow to show that this relationship has no exchange. In short, any class that uses a reference or object from another class, this is called an association relationship. For example, in the last lecture, we made a class GUI, right or wrong? And we made a class for the Draw Manager.", "tokens": [2743, 11, 498, 291, 1269, 264, 3089, 295, 264, 1508, 3107, 11, 291, 486, 915, 257, 6408, 281, 7101, 30, 1407, 264, 18499, 13, 682, 341, 1389, 11, 341, 307, 364, 7742, 712, 4675, 11, 309, 393, 829, 732, 19669, 322, 1293, 4881, 293, 309, 393, 406, 829, 604, 11610, 281, 855, 300, 341, 2480, 575, 572, 7742, 13, 682, 2099, 11, 604, 1508, 300, 4960, 257, 6408, 420, 2657, 490, 1071, 1508, 11, 341, 307, 1219, 364, 14598, 2480, 13, 1171, 1365, 11, 294, 264, 1036, 7991, 11, 321, 1027, 257, 1508, 17917, 40, 11, 558, 420, 2085, 30, 400, 321, 1027, 257, 1508, 337, 264, 20386, 13821, 13], "avg_logprob": -0.4932432453911584, "compression_ratio": 1.7473309608540926, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 636.66, "end": 636.9, "word": " Also,", "probability": 0.10601806640625}, {"start": 637.38, "end": 637.46, "word": " if", "probability": 0.66162109375}, {"start": 637.46, "end": 637.54, "word": " you", "probability": 0.92333984375}, {"start": 637.54, "end": 637.74, "word": " open", "probability": 0.669921875}, {"start": 637.74, "end": 637.94, "word": " the", "probability": 0.68359375}, {"start": 637.94, "end": 638.2, "word": " code", "probability": 0.6884765625}, {"start": 638.2, "end": 638.34, "word": " of", "probability": 0.51953125}, {"start": 638.34, "end": 638.44, "word": " the", "probability": 0.5556640625}, {"start": 638.44, "end": 638.66, "word": " class", "probability": 0.8193359375}, {"start": 638.66, "end": 639.04, "word": " student,", "probability": 0.6943359375}, {"start": 639.24, "end": 639.3, "word": " you", "probability": 0.90234375}, {"start": 639.3, "end": 639.42, "word": " will", "probability": 0.440673828125}, {"start": 639.42, "end": 639.58, "word": " find", "probability": 0.6357421875}, {"start": 639.58, "end": 640.28, "word": " a", "probability": 0.3212890625}, {"start": 640.28, "end": 640.66, "word": " reference", "probability": 0.81005859375}, {"start": 640.66, "end": 640.88, "word": " to", "probability": 0.397705078125}, {"start": 640.88, "end": 640.98, "word": " whom?", "probability": 0.5419921875}, {"start": 641.24, "end": 641.4, "word": " To", "probability": 0.369384765625}, {"start": 641.4, "end": 641.48, "word": " the", "probability": 0.865234375}, {"start": 641.48, "end": 641.84, "word": " instructor.", "probability": 0.84326171875}, {"start": 642.18, "end": 642.3, "word": " In", "probability": 0.66650390625}, {"start": 642.3, "end": 642.6, "word": " this", "probability": 0.56591796875}, {"start": 642.6, "end": 642.6, "word": " case,", "probability": 0.83154296875}, {"start": 642.72, "end": 642.82, "word": " this", "probability": 0.404296875}, {"start": 642.82, "end": 642.82, "word": " is", "probability": 0.292724609375}, {"start": 642.82, "end": 643.12, "word": " an", "probability": 0.1461181640625}, {"start": 643.12, "end": 643.66, "word": " exchangeable", "probability": 0.480224609375}, {"start": 643.66, "end": 643.66, "word": " memory,", "probability": 0.07952880859375}, {"start": 643.74, "end": 643.82, "word": " it", "probability": 0.2117919921875}, {"start": 643.82, "end": 644.0, "word": " can", "probability": 0.7724609375}, {"start": 644.0, "end": 644.26, "word": " put", "probability": 0.484130859375}, {"start": 644.26, "end": 644.6, "word": " two", "probability": 0.59130859375}, {"start": 644.6, "end": 644.6, "word": " arrows", "probability": 0.7021484375}, {"start": 644.6, "end": 644.78, "word": " on", "probability": 0.8564453125}, {"start": 644.78, "end": 645.12, "word": " both", "probability": 0.68017578125}, {"start": 645.12, "end": 645.12, "word": " sides", "probability": 0.84326171875}, {"start": 645.12, "end": 645.24, "word": " and", "probability": 0.51025390625}, {"start": 645.24, "end": 645.3, "word": " it", "probability": 0.3603515625}, {"start": 645.3, "end": 645.4, "word": " can", "probability": 0.356689453125}, {"start": 645.4, "end": 645.48, "word": " not", "probability": 0.74951171875}, {"start": 645.48, "end": 645.82, "word": " put", "probability": 0.78662109375}, {"start": 645.82, "end": 647.04, "word": " any", "probability": 0.8740234375}, {"start": 647.04, "end": 647.26, "word": " arrow", "probability": 0.6005859375}, {"start": 647.26, "end": 647.44, "word": " to", "probability": 0.6650390625}, {"start": 647.44, "end": 647.76, "word": " show", "probability": 0.7373046875}, {"start": 647.76, "end": 647.92, "word": " that", "probability": 0.5986328125}, {"start": 647.92, "end": 648.36, "word": " this", "probability": 0.50927734375}, {"start": 648.36, "end": 648.36, "word": " relationship", "probability": 0.60107421875}, {"start": 648.36, "end": 648.66, "word": " has", "probability": 0.6904296875}, {"start": 648.66, "end": 649.32, "word": " no", "probability": 0.79345703125}, {"start": 649.32, "end": 649.6, "word": " exchange.", "probability": 0.65576171875}, {"start": 649.92, "end": 650.32, "word": " In", "probability": 0.6669921875}, {"start": 650.32, "end": 650.72, "word": " short,", "probability": 0.62060546875}, {"start": 651.22, "end": 652.3, "word": " any", "probability": 0.86376953125}, {"start": 652.3, "end": 652.66, "word": " class", "probability": 0.94873046875}, {"start": 652.66, "end": 652.78, "word": " that", "probability": 0.5966796875}, {"start": 652.78, "end": 653.08, "word": " uses", "probability": 0.7841796875}, {"start": 653.08, "end": 653.24, "word": " a", "probability": 0.70849609375}, {"start": 653.24, "end": 653.64, "word": " reference", "probability": 0.93310546875}, {"start": 653.64, "end": 654.1, "word": " or", "probability": 0.89306640625}, {"start": 654.1, "end": 654.42, "word": " object", "probability": 0.80810546875}, {"start": 654.42, "end": 654.56, "word": " from", "probability": 0.8017578125}, {"start": 654.56, "end": 654.64, "word": " another", "probability": 0.88623046875}, {"start": 654.64, "end": 655.22, "word": " class,", "probability": 0.95849609375}, {"start": 655.72, "end": 655.9, "word": " this", "probability": 0.533203125}, {"start": 655.9, "end": 655.98, "word": " is", "probability": 0.7822265625}, {"start": 655.98, "end": 656.22, "word": " called", "probability": 0.66943359375}, {"start": 656.22, "end": 656.32, "word": " an", "probability": 0.52294921875}, {"start": 656.32, "end": 656.9, "word": " association", "probability": 0.85546875}, {"start": 656.9, "end": 657.5, "word": " relationship.", "probability": 0.724609375}, {"start": 657.64, "end": 658.1, "word": " For", "probability": 0.457275390625}, {"start": 658.1, "end": 659.14, "word": " example,", "probability": 0.94287109375}, {"start": 659.28, "end": 659.28, "word": " in", "probability": 0.662109375}, {"start": 659.28, "end": 659.32, "word": " the", "probability": 0.75341796875}, {"start": 659.32, "end": 659.88, "word": " last", "probability": 0.52490234375}, {"start": 659.88, "end": 659.88, "word": " lecture,", "probability": 0.87451171875}, {"start": 660.04, "end": 660.28, "word": " we", "probability": 0.91357421875}, {"start": 660.28, "end": 660.28, "word": " made", "probability": 0.2861328125}, {"start": 660.28, "end": 660.86, "word": " a", "probability": 0.87646484375}, {"start": 660.86, "end": 661.18, "word": " class", "probability": 0.6337890625}, {"start": 661.18, "end": 661.8, "word": " GUI,", "probability": 0.791259765625}, {"start": 662.68, "end": 662.9, "word": " right", "probability": 0.58984375}, {"start": 662.9, "end": 663.08, "word": " or", "probability": 0.7451171875}, {"start": 663.08, "end": 663.18, "word": " wrong?", "probability": 0.68603515625}, {"start": 663.34, "end": 663.56, "word": " And", "probability": 0.7294921875}, {"start": 663.56, "end": 663.82, "word": " we", "probability": 0.91357421875}, {"start": 663.82, "end": 663.82, "word": " made", "probability": 0.7529296875}, {"start": 663.82, "end": 663.94, "word": " a", "probability": 0.96484375}, {"start": 663.94, "end": 664.32, "word": " class", "probability": 0.94921875}, {"start": 664.32, "end": 664.6, "word": " for", "probability": 0.393310546875}, {"start": 664.6, "end": 664.74, "word": " the", "probability": 0.6494140625}, {"start": 664.74, "end": 664.88, "word": " Draw", "probability": 0.36962890625}, {"start": 664.88, "end": 665.2, "word": " Manager.", "probability": 0.90283203125}], "temperature": 1.0}, {"id": 29, "seek": 68569, "start": 666.41, "end": 685.69, "text": "and the draw manager that we used from within who? GUI. So here in this case we say that GUI and draw manager have a relationship, association. Because sometimes I tell you, you can write on the arrow, an explanation that shows you what kind of relationship it is, that the instructor instructs the student. This is optional.", "tokens": [474, 264, 2642, 6598, 300, 321, 1143, 490, 1951, 567, 30, 17917, 40, 13, 407, 510, 294, 341, 1389, 321, 584, 300, 17917, 40, 293, 2642, 6598, 362, 257, 2480, 11, 14598, 13, 1436, 2171, 286, 980, 291, 11, 291, 393, 2464, 322, 264, 11610, 11, 364, 10835, 300, 3110, 291, 437, 733, 295, 2480, 309, 307, 11, 300, 264, 18499, 7232, 82, 264, 3107, 13, 639, 307, 17312, 13], "avg_logprob": -0.5629401559561071, "compression_ratio": 1.608910891089109, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 666.41, "end": 666.61, "word": "and", "probability": 0.23388671875}, {"start": 666.61, "end": 666.69, "word": " the", "probability": 0.6201171875}, {"start": 666.69, "end": 666.83, "word": " draw", "probability": 0.359375}, {"start": 666.83, "end": 667.15, "word": " manager", "probability": 0.9375}, {"start": 667.15, "end": 667.27, "word": " that", "probability": 0.27392578125}, {"start": 667.27, "end": 667.71, "word": " we", "probability": 0.80712890625}, {"start": 667.71, "end": 667.71, "word": " used", "probability": 0.791015625}, {"start": 667.71, "end": 667.89, "word": " from", "probability": 0.151611328125}, {"start": 667.89, "end": 668.15, "word": " within", "probability": 0.385009765625}, {"start": 668.15, "end": 668.37, "word": " who?", "probability": 0.1888427734375}, {"start": 669.41, "end": 669.85, "word": " GUI.", "probability": 0.83349609375}, {"start": 669.99, "end": 670.35, "word": " So", "probability": 0.35546875}, {"start": 670.35, "end": 670.47, "word": " here", "probability": 0.58203125}, {"start": 670.47, "end": 670.55, "word": " in", "probability": 0.63916015625}, {"start": 670.55, "end": 670.67, "word": " this", "probability": 0.68212890625}, {"start": 670.67, "end": 670.81, "word": " case", "probability": 0.85693359375}, {"start": 670.81, "end": 670.99, "word": " we", "probability": 0.6015625}, {"start": 670.99, "end": 671.39, "word": " say", "probability": 0.62109375}, {"start": 671.39, "end": 671.69, "word": " that", "probability": 0.845703125}, {"start": 671.69, "end": 672.45, "word": " GUI", "probability": 0.865234375}, {"start": 672.45, "end": 672.61, "word": " and", "probability": 0.923828125}, {"start": 672.61, "end": 673.07, "word": " draw", "probability": 0.50927734375}, {"start": 673.07, "end": 673.41, "word": " manager", "probability": 0.93115234375}, {"start": 673.41, "end": 673.71, "word": " have", "probability": 0.609375}, {"start": 673.71, "end": 673.85, "word": " a", "probability": 0.443603515625}, {"start": 673.85, "end": 674.15, "word": " relationship,", "probability": 0.70703125}, {"start": 674.39, "end": 675.51, "word": " association.", "probability": 0.7177734375}, {"start": 677.11, "end": 677.33, "word": " Because", "probability": 0.315185546875}, {"start": 677.33, "end": 677.77, "word": " sometimes", "probability": 0.8515625}, {"start": 677.77, "end": 677.95, "word": " I", "probability": 0.673828125}, {"start": 677.95, "end": 678.13, "word": " tell", "probability": 0.456787109375}, {"start": 678.13, "end": 678.35, "word": " you,", "probability": 0.96484375}, {"start": 678.39, "end": 678.47, "word": " you", "probability": 0.9208984375}, {"start": 678.47, "end": 678.69, "word": " can", "probability": 0.908203125}, {"start": 678.69, "end": 679.03, "word": " write", "probability": 0.845703125}, {"start": 679.03, "end": 679.19, "word": " on", "probability": 0.82421875}, {"start": 679.19, "end": 679.35, "word": " the", "probability": 0.64501953125}, {"start": 679.35, "end": 679.63, "word": " arrow,", "probability": 0.051055908203125}, {"start": 680.35, "end": 680.49, "word": " an", "probability": 0.3154296875}, {"start": 680.49, "end": 680.65, "word": " explanation", "probability": 0.78564453125}, {"start": 680.65, "end": 680.89, "word": " that", "probability": 0.37744140625}, {"start": 680.89, "end": 681.21, "word": " shows", "probability": 0.384521484375}, {"start": 681.21, "end": 681.43, "word": " you", "probability": 0.7451171875}, {"start": 681.43, "end": 681.59, "word": " what", "probability": 0.7421875}, {"start": 681.59, "end": 681.77, "word": " kind", "probability": 0.59228515625}, {"start": 681.77, "end": 682.09, "word": " of", "probability": 0.9619140625}, {"start": 682.09, "end": 682.43, "word": " relationship", "probability": 0.8662109375}, {"start": 682.43, "end": 682.53, "word": " it", "probability": 0.39404296875}, {"start": 682.53, "end": 682.53, "word": " is,", "probability": 0.68017578125}, {"start": 682.61, "end": 682.79, "word": " that", "probability": 0.77685546875}, {"start": 682.79, "end": 682.93, "word": " the", "probability": 0.7646484375}, {"start": 682.93, "end": 683.41, "word": " instructor", "probability": 0.90478515625}, {"start": 683.41, "end": 684.15, "word": " instructs", "probability": 0.944091796875}, {"start": 684.15, "end": 684.39, "word": " the", "probability": 0.400634765625}, {"start": 684.39, "end": 684.79, "word": " student.", "probability": 0.89404296875}, {"start": 685.09, "end": 685.29, "word": " This", "probability": 0.740234375}, {"start": 685.29, "end": 685.35, "word": " is", "probability": 0.91259765625}, {"start": 685.35, "end": 685.69, "word": " optional.", "probability": 0.87353515625}], "temperature": 1.0}, {"id": 30, "seek": 71362, "start": 688.94, "end": 713.62, "text": " to multiplicity we are still in the relationship of association from the optional things that you can add to the relationship that exists in the relationship of association numbers show how many objects I use from the other class for example let's go back to this example the instructor uses an object from which", "tokens": [281, 17596, 507, 321, 366, 920, 294, 264, 2480, 295, 14598, 490, 264, 17312, 721, 300, 291, 393, 909, 281, 264, 2480, 300, 8198, 294, 264, 2480, 295, 14598, 3547, 855, 577, 867, 6565, 286, 764, 490, 264, 661, 1508, 337, 1365, 718, 311, 352, 646, 281, 341, 1365, 264, 18499, 4960, 364, 2657, 490, 597], "avg_logprob": -0.4777960526315789, "compression_ratio": 1.8092485549132948, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 688.94, "end": 689.18, "word": " to", "probability": 0.2010498046875}, {"start": 689.18, "end": 690.08, "word": " multiplicity", "probability": 0.92333984375}, {"start": 690.08, "end": 690.76, "word": " we", "probability": 0.2008056640625}, {"start": 690.76, "end": 690.92, "word": " are", "probability": 0.76806640625}, {"start": 690.92, "end": 690.92, "word": " still", "probability": 0.9072265625}, {"start": 690.92, "end": 691.2, "word": " in", "probability": 0.7685546875}, {"start": 691.2, "end": 691.3, "word": " the", "probability": 0.50537109375}, {"start": 691.3, "end": 691.52, "word": " relationship", "probability": 0.383056640625}, {"start": 691.52, "end": 691.66, "word": " of", "probability": 0.8193359375}, {"start": 691.66, "end": 692.22, "word": " association", "probability": 0.794921875}, {"start": 692.22, "end": 693.46, "word": " from", "probability": 0.1712646484375}, {"start": 693.46, "end": 693.66, "word": " the", "probability": 0.5400390625}, {"start": 693.66, "end": 694.42, "word": " optional", "probability": 0.91845703125}, {"start": 694.42, "end": 694.48, "word": " things", "probability": 0.6513671875}, {"start": 694.48, "end": 694.76, "word": " that", "probability": 0.5869140625}, {"start": 694.76, "end": 694.88, "word": " you", "probability": 0.8798828125}, {"start": 694.88, "end": 695.18, "word": " can", "probability": 0.87255859375}, {"start": 695.18, "end": 695.54, "word": " add", "probability": 0.8759765625}, {"start": 695.54, "end": 695.76, "word": " to", "probability": 0.8134765625}, {"start": 695.76, "end": 695.84, "word": " the", "probability": 0.76171875}, {"start": 695.84, "end": 696.24, "word": " relationship", "probability": 0.560546875}, {"start": 696.24, "end": 697.04, "word": " that", "probability": 0.427001953125}, {"start": 697.04, "end": 697.48, "word": " exists", "probability": 0.368896484375}, {"start": 697.48, "end": 698.0, "word": " in", "probability": 0.29541015625}, {"start": 698.0, "end": 698.6, "word": " the", "probability": 0.6640625}, {"start": 698.6, "end": 699.08, "word": " relationship", "probability": 0.73486328125}, {"start": 699.08, "end": 699.18, "word": " of", "probability": 0.94970703125}, {"start": 699.18, "end": 699.82, "word": " association", "probability": 0.8583984375}, {"start": 699.82, "end": 700.7, "word": " numbers", "probability": 0.50732421875}, {"start": 700.7, "end": 701.34, "word": " show", "probability": 0.37841796875}, {"start": 701.34, "end": 703.66, "word": " how", "probability": 0.79345703125}, {"start": 703.66, "end": 703.78, "word": " many", "probability": 0.83251953125}, {"start": 703.78, "end": 704.1, "word": " objects", "probability": 0.88916015625}, {"start": 704.1, "end": 704.24, "word": " I", "probability": 0.72998046875}, {"start": 704.24, "end": 704.68, "word": " use", "probability": 0.7333984375}, {"start": 704.68, "end": 704.84, "word": " from", "probability": 0.564453125}, {"start": 704.84, "end": 704.92, "word": " the", "probability": 0.7919921875}, {"start": 704.92, "end": 704.92, "word": " other", "probability": 0.414306640625}, {"start": 704.92, "end": 705.46, "word": " class", "probability": 0.91552734375}, {"start": 705.46, "end": 707.18, "word": " for", "probability": 0.2318115234375}, {"start": 707.18, "end": 707.84, "word": " example", "probability": 0.947265625}, {"start": 707.84, "end": 708.0, "word": " let's", "probability": 0.4998779296875}, {"start": 708.0, "end": 708.16, "word": " go", "probability": 0.65673828125}, {"start": 708.16, "end": 708.26, "word": " back", "probability": 0.87939453125}, {"start": 708.26, "end": 708.64, "word": " to", "probability": 0.8935546875}, {"start": 708.64, "end": 709.26, "word": " this", "probability": 0.44189453125}, {"start": 709.26, "end": 709.28, "word": " example", "probability": 0.91259765625}, {"start": 709.28, "end": 711.2, "word": " the", "probability": 0.71630859375}, {"start": 711.2, "end": 711.62, "word": " instructor", "probability": 0.8583984375}, {"start": 711.62, "end": 712.26, "word": " uses", "probability": 0.77294921875}, {"start": 712.26, "end": 713.04, "word": " an", "probability": 0.51904296875}, {"start": 713.04, "end": 713.24, "word": " object", "probability": 0.97802734375}, {"start": 713.24, "end": 713.38, "word": " from", "probability": 0.5595703125}, {"start": 713.38, "end": 713.62, "word": " which", "probability": 0.603515625}], "temperature": 1.0}, {"id": 31, "seek": 74223, "start": 714.37, "end": 742.23, "text": " course how many objects does it use? one so we say here this is the instructor and this is the course and then I put one here did you see where I put one? so the instructor uses course one okay if this is present as a list this is present as a list and we call this courses okay we can say for example from zero to", "tokens": [1164, 577, 867, 6565, 775, 309, 764, 30, 472, 370, 321, 584, 510, 341, 307, 264, 18499, 293, 341, 307, 264, 1164, 293, 550, 286, 829, 472, 510, 630, 291, 536, 689, 286, 829, 472, 30, 370, 264, 18499, 4960, 1164, 472, 1392, 498, 341, 307, 1974, 382, 257, 1329, 341, 307, 1974, 382, 257, 1329, 293, 321, 818, 341, 7712, 1392, 321, 393, 584, 337, 1365, 490, 4018, 281], "avg_logprob": -0.45818661719980375, "compression_ratio": 1.8975903614457832, "no_speech_prob": 3.2186508178710938e-06, "words": [{"start": 714.37, "end": 714.77, "word": " course", "probability": 0.20068359375}, {"start": 714.77, "end": 715.19, "word": " how", "probability": 0.278076171875}, {"start": 715.19, "end": 715.25, "word": " many", "probability": 0.86669921875}, {"start": 715.25, "end": 715.55, "word": " objects", "probability": 0.830078125}, {"start": 715.55, "end": 715.71, "word": " does", "probability": 0.472412109375}, {"start": 715.71, "end": 715.71, "word": " it", "probability": 0.810546875}, {"start": 715.71, "end": 716.03, "word": " use?", "probability": 0.80712890625}, {"start": 716.59, "end": 717.15, "word": " one", "probability": 0.67724609375}, {"start": 717.15, "end": 717.49, "word": " so", "probability": 0.34765625}, {"start": 717.49, "end": 717.65, "word": " we", "probability": 0.2196044921875}, {"start": 717.65, "end": 717.85, "word": " say", "probability": 0.556640625}, {"start": 717.85, "end": 718.13, "word": " here", "probability": 0.6923828125}, {"start": 718.13, "end": 718.43, "word": " this", "probability": 0.669921875}, {"start": 718.43, "end": 718.45, "word": " is", "probability": 0.86181640625}, {"start": 718.45, "end": 718.57, "word": " the", "probability": 0.492431640625}, {"start": 718.57, "end": 718.93, "word": " instructor", "probability": 0.888671875}, {"start": 718.93, "end": 719.07, "word": " and", "probability": 0.7783203125}, {"start": 719.07, "end": 719.15, "word": " this", "probability": 0.8984375}, {"start": 719.15, "end": 719.19, "word": " is", "probability": 0.9306640625}, {"start": 719.19, "end": 719.33, "word": " the", "probability": 0.87451171875}, {"start": 719.33, "end": 719.59, "word": " course", "probability": 0.96240234375}, {"start": 719.59, "end": 719.75, "word": " and", "probability": 0.63330078125}, {"start": 719.75, "end": 719.89, "word": " then", "probability": 0.58447265625}, {"start": 719.89, "end": 720.03, "word": " I", "probability": 0.697265625}, {"start": 720.03, "end": 720.29, "word": " put", "probability": 0.68701171875}, {"start": 720.29, "end": 721.11, "word": " one", "probability": 0.466552734375}, {"start": 721.11, "end": 722.45, "word": " here", "probability": 0.7421875}, {"start": 722.45, "end": 722.77, "word": " did", "probability": 0.1568603515625}, {"start": 722.77, "end": 722.77, "word": " you", "probability": 0.9638671875}, {"start": 722.77, "end": 722.89, "word": " see", "probability": 0.87939453125}, {"start": 722.89, "end": 723.05, "word": " where", "probability": 0.50537109375}, {"start": 723.05, "end": 723.45, "word": " I", "probability": 0.642578125}, {"start": 723.45, "end": 723.73, "word": " put", "probability": 0.87353515625}, {"start": 723.73, "end": 723.95, "word": " one?", "probability": 0.72412109375}, {"start": 724.27, "end": 724.71, "word": " so", "probability": 0.50439453125}, {"start": 724.71, "end": 724.83, "word": " the", "probability": 0.54345703125}, {"start": 724.83, "end": 725.23, "word": " instructor", "probability": 0.91943359375}, {"start": 725.23, "end": 725.73, "word": " uses", "probability": 0.8291015625}, {"start": 725.73, "end": 726.29, "word": " course", "probability": 0.705078125}, {"start": 726.29, "end": 727.75, "word": " one", "probability": 0.72412109375}, {"start": 727.75, "end": 728.79, "word": " okay", "probability": 0.2320556640625}, {"start": 728.79, "end": 729.95, "word": " if", "probability": 0.2034912109375}, {"start": 729.95, "end": 730.25, "word": " this", "probability": 0.81005859375}, {"start": 730.25, "end": 730.33, "word": " is", "probability": 0.427001953125}, {"start": 730.33, "end": 730.59, "word": " present", "probability": 0.370849609375}, {"start": 730.59, "end": 730.81, "word": " as", "probability": 0.90234375}, {"start": 730.81, "end": 730.89, "word": " a", "probability": 0.82080078125}, {"start": 730.89, "end": 732.77, "word": " list", "probability": 0.94482421875}, {"start": 732.77, "end": 736.13, "word": " this", "probability": 0.685546875}, {"start": 736.13, "end": 736.21, "word": " is", "probability": 0.8984375}, {"start": 736.21, "end": 736.47, "word": " present", "probability": 0.82421875}, {"start": 736.47, "end": 736.71, "word": " as", "probability": 0.951171875}, {"start": 736.71, "end": 736.77, "word": " a", "probability": 0.9638671875}, {"start": 736.77, "end": 736.99, "word": " list", "probability": 0.9326171875}, {"start": 736.99, "end": 737.09, "word": " and", "probability": 0.8115234375}, {"start": 737.09, "end": 737.25, "word": " we", "probability": 0.499755859375}, {"start": 737.25, "end": 737.49, "word": " call", "probability": 0.340576171875}, {"start": 737.49, "end": 737.61, "word": " this", "probability": 0.42529296875}, {"start": 737.61, "end": 738.21, "word": " courses", "probability": 0.65478515625}, {"start": 738.21, "end": 739.37, "word": " okay", "probability": 0.5458984375}, {"start": 739.37, "end": 739.91, "word": " we", "probability": 0.6513671875}, {"start": 739.91, "end": 740.11, "word": " can", "probability": 0.88330078125}, {"start": 740.11, "end": 740.43, "word": " say", "probability": 0.92626953125}, {"start": 740.43, "end": 740.77, "word": " for", "probability": 0.32861328125}, {"start": 740.77, "end": 741.09, "word": " example", "probability": 0.953125}, {"start": 741.09, "end": 741.63, "word": " from", "probability": 0.771484375}, {"start": 741.63, "end": 741.93, "word": " zero", "probability": 0.74365234375}, {"start": 741.93, "end": 742.23, "word": " to", "probability": 0.9521484375}], "temperature": 1.0}, {"id": 32, "seek": 77070, "start": 743.38, "end": 770.7, "text": " a star, or from one to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the next to the", "tokens": [257, 3543, 11, 420, 490, 472, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264, 958, 281, 264], "avg_logprob": -0.13951388888888888, "compression_ratio": 18.5625, "no_speech_prob": 5.066394805908203e-06, "words": [{"start": 743.38, "end": 743.8, "word": " a", "probability": 0.09466552734375}, {"start": 743.8, "end": 743.8, "word": " star,", "probability": 0.86474609375}, {"start": 744.1, "end": 744.32, "word": " or", "probability": 0.7275390625}, {"start": 744.32, "end": 744.42, "word": " from", "probability": 0.658203125}, {"start": 744.42, "end": 744.68, "word": " one", "probability": 0.59521484375}, {"start": 744.68, "end": 744.9, "word": " to", "probability": 0.84765625}, {"start": 744.9, "end": 745.04, "word": " the", "probability": 0.2457275390625}, {"start": 745.04, "end": 745.14, "word": " next", "probability": 0.357666015625}, {"start": 745.14, "end": 745.14, "word": " to", "probability": 0.2357177734375}, {"start": 745.14, "end": 745.14, "word": " the", "probability": 0.69287109375}, {"start": 745.14, "end": 745.2, "word": " next", "probability": 0.57861328125}, {"start": 745.2, "end": 745.2, "word": " to", "probability": 0.263427734375}, {"start": 745.2, "end": 745.26, "word": " the", "probability": 0.87158203125}, {"start": 745.26, "end": 745.26, "word": " next", "probability": 0.73193359375}, {"start": 745.26, "end": 745.28, "word": " to", "probability": 0.316650390625}, {"start": 745.28, "end": 745.28, "word": " the", "probability": 0.900390625}, {"start": 745.28, "end": 745.28, "word": " next", "probability": 0.81982421875}, {"start": 745.28, "end": 745.48, "word": " to", "probability": 0.37060546875}, {"start": 745.48, "end": 745.64, "word": " the", "probability": 0.908203125}, {"start": 745.64, "end": 745.64, "word": " next", "probability": 0.861328125}, {"start": 745.64, "end": 746.52, "word": " to", "probability": 0.430419921875}, {"start": 746.52, "end": 746.52, "word": " the", "probability": 0.9150390625}, {"start": 746.52, "end": 746.52, "word": " next", "probability": 0.87548828125}, {"start": 746.52, "end": 747.6, "word": " to", "probability": 0.476318359375}, {"start": 747.6, "end": 748.12, "word": " the", "probability": 0.921875}, {"start": 748.12, "end": 748.12, "word": " next", "probability": 0.89697265625}, {"start": 748.12, "end": 748.12, "word": " to", "probability": 0.57275390625}, {"start": 748.12, "end": 748.12, "word": " the", "probability": 0.9267578125}, {"start": 748.12, "end": 748.12, "word": " next", "probability": 0.91064453125}, {"start": 748.12, "end": 748.12, "word": " to", "probability": 0.6494140625}, {"start": 748.12, "end": 748.12, "word": " the", "probability": 0.9287109375}, {"start": 748.12, "end": 748.12, "word": " next", "probability": 0.91943359375}, {"start": 748.12, "end": 748.16, "word": " to", "probability": 0.70458984375}, {"start": 748.16, "end": 748.16, "word": " the", "probability": 0.93017578125}, {"start": 748.16, "end": 748.16, "word": " next", "probability": 0.92626953125}, {"start": 748.16, "end": 748.16, "word": " to", "probability": 0.7509765625}, {"start": 748.16, "end": 748.16, "word": " the", "probability": 0.9326171875}, {"start": 748.16, "end": 748.16, "word": " next", "probability": 0.9296875}, {"start": 748.16, "end": 748.52, "word": " to", "probability": 0.79052734375}, {"start": 748.52, "end": 748.8, "word": " the", "probability": 0.9326171875}, {"start": 748.8, "end": 748.8, "word": " next", "probability": 0.93212890625}, {"start": 748.8, "end": 749.4, "word": " to", "probability": 0.82470703125}, {"start": 749.4, "end": 749.4, "word": " the", "probability": 0.93408203125}, {"start": 749.4, "end": 749.4, "word": " next", "probability": 0.93505859375}, {"start": 749.4, "end": 749.4, "word": " to", "probability": 0.8486328125}, {"start": 749.4, "end": 749.4, "word": " the", "probability": 0.9345703125}, {"start": 749.4, "end": 749.4, "word": " next", "probability": 0.9375}, {"start": 749.4, "end": 749.44, "word": " to", "probability": 0.86669921875}, {"start": 749.44, "end": 749.46, "word": " the", "probability": 0.9345703125}, {"start": 749.46, "end": 749.46, "word": " next", "probability": 0.93994140625}, {"start": 749.46, "end": 749.46, "word": " to", "probability": 0.88037109375}, {"start": 749.46, "end": 750.06, "word": " the", "probability": 0.9345703125}, {"start": 750.06, "end": 750.06, "word": " next", "probability": 0.94091796875}, {"start": 750.06, "end": 750.18, "word": " to", "probability": 0.88916015625}, {"start": 750.18, "end": 750.42, "word": " the", "probability": 0.93505859375}, {"start": 750.42, "end": 750.42, "word": " next", "probability": 0.9423828125}, {"start": 750.42, "end": 750.66, "word": " to", "probability": 0.8994140625}, {"start": 750.66, "end": 752.3, "word": " the", "probability": 0.93408203125}, {"start": 752.3, "end": 752.3, "word": " next", "probability": 0.943359375}, {"start": 752.3, "end": 752.68, "word": " to", "probability": 0.9033203125}, {"start": 752.68, "end": 752.68, "word": " the", "probability": 0.93505859375}, {"start": 752.68, "end": 752.68, "word": " next", "probability": 0.9443359375}, {"start": 752.68, "end": 752.68, "word": " to", "probability": 0.9072265625}, {"start": 752.68, "end": 752.68, "word": " the", "probability": 0.93408203125}, {"start": 752.68, "end": 752.68, "word": " next", "probability": 0.9443359375}, {"start": 752.68, "end": 752.68, "word": " to", "probability": 0.9111328125}, {"start": 752.68, "end": 752.68, "word": " the", "probability": 0.93408203125}, {"start": 752.68, "end": 752.68, "word": " next", "probability": 0.94580078125}, {"start": 752.68, "end": 752.68, "word": " to", "probability": 0.9140625}, {"start": 752.68, "end": 752.68, "word": " the", "probability": 0.93408203125}, {"start": 752.68, "end": 752.68, "word": " next", "probability": 0.94580078125}, {"start": 752.68, "end": 752.72, "word": " to", "probability": 0.91552734375}, {"start": 752.72, "end": 752.72, "word": " the", "probability": 0.93408203125}, {"start": 752.72, "end": 752.84, "word": " next", "probability": 0.94580078125}, {"start": 752.84, "end": 753.22, "word": " to", "probability": 0.91650390625}, {"start": 753.22, "end": 754.84, "word": " the", "probability": 0.93505859375}, {"start": 754.84, "end": 754.84, "word": " next", "probability": 0.9462890625}, {"start": 754.84, "end": 755.36, "word": " to", "probability": 0.91796875}, {"start": 755.36, "end": 756.24, "word": " the", "probability": 0.93408203125}, {"start": 756.24, "end": 756.32, "word": " next", "probability": 0.9462890625}, {"start": 756.32, "end": 757.64, "word": " to", "probability": 0.91845703125}, {"start": 757.64, "end": 757.64, "word": " the", "probability": 0.9345703125}, {"start": 757.64, "end": 757.64, "word": " next", "probability": 0.94677734375}, {"start": 757.64, "end": 757.64, "word": " to", "probability": 0.9189453125}, {"start": 757.64, "end": 757.64, "word": " the", "probability": 0.93408203125}, {"start": 757.64, "end": 757.64, "word": " next", "probability": 0.94677734375}, {"start": 757.64, "end": 757.64, "word": " to", "probability": 0.919921875}, {"start": 757.64, "end": 757.64, "word": " the", "probability": 0.93408203125}, {"start": 757.64, "end": 757.64, "word": " next", "probability": 0.947265625}, {"start": 757.64, "end": 757.64, "word": " to", "probability": 0.92138671875}, {"start": 757.64, "end": 757.64, "word": " the", "probability": 0.93359375}, {"start": 757.64, "end": 757.64, "word": " next", "probability": 0.94775390625}, {"start": 757.64, "end": 757.74, "word": " to", "probability": 0.92138671875}, {"start": 757.74, "end": 757.84, "word": " the", "probability": 0.93408203125}, {"start": 757.84, "end": 757.84, "word": " next", "probability": 0.94873046875}, {"start": 757.84, "end": 757.84, "word": " to", "probability": 0.9228515625}, {"start": 757.84, "end": 757.88, "word": " the", "probability": 0.93408203125}, {"start": 757.88, "end": 757.88, "word": " next", "probability": 0.94775390625}, {"start": 757.88, "end": 757.88, "word": " to", "probability": 0.92333984375}, {"start": 757.88, "end": 757.88, "word": " the", "probability": 0.9345703125}, {"start": 757.88, "end": 757.88, "word": " next", "probability": 0.9482421875}, {"start": 757.88, "end": 757.88, "word": " to", "probability": 0.92431640625}, {"start": 757.88, "end": 757.88, "word": " the", "probability": 0.93408203125}, {"start": 757.88, "end": 757.88, "word": " next", "probability": 0.94873046875}, {"start": 757.88, "end": 758.1, "word": " to", "probability": 0.92431640625}, {"start": 758.1, "end": 758.1, "word": " the", "probability": 0.9326171875}, {"start": 758.1, "end": 758.1, "word": " next", "probability": 0.94921875}, {"start": 758.1, "end": 758.1, "word": " to", "probability": 0.92578125}, {"start": 758.1, "end": 758.1, "word": " the", "probability": 0.93408203125}, {"start": 758.1, "end": 758.1, "word": " next", "probability": 0.94970703125}, {"start": 758.1, "end": 758.1, "word": " to", "probability": 0.9267578125}, {"start": 758.1, "end": 758.1, "word": " the", "probability": 0.93310546875}, {"start": 758.1, "end": 758.1, "word": " next", "probability": 0.9501953125}, {"start": 758.1, "end": 758.1, "word": " to", "probability": 0.927734375}, {"start": 758.1, "end": 758.1, "word": " the", "probability": 0.93310546875}, {"start": 758.1, "end": 758.1, "word": " next", "probability": 0.95068359375}, {"start": 758.1, "end": 758.92, "word": " to", "probability": 0.9296875}, {"start": 758.92, "end": 760.72, "word": " the", "probability": 0.9326171875}, {"start": 760.72, "end": 760.72, "word": " next", "probability": 0.95068359375}, {"start": 760.72, "end": 760.9, "word": " to", "probability": 0.93017578125}, {"start": 760.9, "end": 761.02, "word": " the", "probability": 0.93115234375}, {"start": 761.02, "end": 761.26, "word": " next", "probability": 0.9521484375}, {"start": 761.26, "end": 761.32, "word": " to", "probability": 0.93212890625}, {"start": 761.32, "end": 761.74, "word": " the", "probability": 0.93359375}, {"start": 761.74, "end": 761.74, "word": " next", "probability": 0.9521484375}, {"start": 761.74, "end": 761.9, "word": " to", "probability": 0.93359375}, {"start": 761.9, "end": 762.02, "word": " the", "probability": 0.93359375}, {"start": 762.02, "end": 762.02, "word": " next", "probability": 0.95263671875}, {"start": 762.02, "end": 762.02, "word": " to", "probability": 0.9345703125}, {"start": 762.02, "end": 762.02, "word": " the", "probability": 0.9326171875}, {"start": 762.02, "end": 762.02, "word": " next", "probability": 0.953125}, {"start": 762.02, "end": 762.02, "word": " to", "probability": 0.935546875}, {"start": 762.02, "end": 762.02, "word": " the", "probability": 0.9326171875}, {"start": 762.02, "end": 762.1, "word": " next", "probability": 0.95361328125}, {"start": 762.1, "end": 762.78, "word": " to", "probability": 0.9375}, {"start": 762.78, "end": 762.96, "word": " the", "probability": 0.9326171875}, {"start": 762.96, "end": 762.96, "word": " next", "probability": 0.95458984375}, {"start": 762.96, "end": 763.16, "word": " to", "probability": 0.93896484375}, {"start": 763.16, "end": 763.46, "word": " the", "probability": 0.931640625}, {"start": 763.46, "end": 763.46, "word": " next", "probability": 0.95458984375}, {"start": 763.46, "end": 763.64, "word": " to", "probability": 0.93994140625}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.931640625}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95458984375}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.94189453125}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.9306640625}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.955078125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.94287109375}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.931640625}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95556640625}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.9443359375}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.93212890625}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.9560546875}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.94580078125}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.93212890625}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95654296875}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.94677734375}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.93115234375}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95654296875}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.94921875}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.93115234375}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95703125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.9501953125}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.93017578125}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95654296875}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.95166015625}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.93115234375}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95703125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.95263671875}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.92919921875}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95751953125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.95361328125}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.93017578125}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95751953125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.95458984375}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.93115234375}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95751953125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.9560546875}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.93017578125}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95703125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.95703125}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.93017578125}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.9580078125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.95751953125}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.93017578125}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.9580078125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.9580078125}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.92919921875}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95751953125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.958984375}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.93017578125}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.9580078125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.95947265625}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.92919921875}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95751953125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.96044921875}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.92919921875}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.9580078125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.96044921875}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.9296875}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95703125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.9609375}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.92822265625}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.9580078125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.96142578125}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.9296875}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95751953125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.9619140625}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.9296875}, {"start": 763.64, "end": 763.64, "word": " next", "probability": 0.95751953125}, {"start": 763.64, "end": 763.64, "word": " to", "probability": 0.96240234375}, {"start": 763.64, "end": 763.64, "word": " the", "probability": 0.9296875}, {"start": 763.64, "end": 763.88, "word": " next", "probability": 0.95654296875}, {"start": 763.88, "end": 763.88, "word": " to", "probability": 0.962890625}, {"start": 763.88, "end": 765.22, "word": " the", "probability": 0.9296875}, {"start": 765.22, "end": 765.22, "word": " next", "probability": 0.95654296875}, {"start": 765.22, "end": 768.24, "word": " to", "probability": 0.96337890625}, {"start": 768.24, "end": 769.56, "word": " the", "probability": 0.93017578125}, {"start": 769.56, "end": 769.7, "word": " next", "probability": 0.95703125}, {"start": 769.7, "end": 769.94, "word": " to", "probability": 0.9638671875}, {"start": 769.94, "end": 770.36, "word": " the", "probability": 0.92822265625}, {"start": 770.36, "end": 770.38, "word": " next", "probability": 0.9580078125}, {"start": 770.38, "end": 770.68, "word": " to", "probability": 0.96435546875}, {"start": 770.68, "end": 770.7, "word": " the", "probability": 0.92822265625}], "temperature": 1.0}, {"id": 33, "seek": 80058, "start": 772.1, "end": 800.58, "text": " because we have instructor and student and this relation is association ok? now how does the code look like? what does the instructor have inside? who says what? list of students why? because what is written here on the instructor? one star this is a negative number on who? because the instructor uses one star from the student and now since the number is on the other side it becomes clear that there is also an exchange relation which means that the student", "tokens": [570, 321, 362, 18499, 293, 3107, 293, 341, 9721, 307, 14598, 3133, 30, 586, 577, 775, 264, 3089, 574, 411, 30, 437, 775, 264, 18499, 362, 1854, 30, 567, 1619, 437, 30, 1329, 295, 1731, 983, 30, 570, 437, 307, 3720, 510, 322, 264, 18499, 30, 472, 3543, 341, 307, 257, 3671, 1230, 322, 567, 30, 570, 264, 18499, 4960, 472, 3543, 490, 264, 3107, 293, 586, 1670, 264, 1230, 307, 322, 264, 661, 1252, 309, 3643, 1850, 300, 456, 307, 611, 364, 7742, 9721, 597, 1355, 300, 264, 3107], "avg_logprob": -0.5339972789470966, "compression_ratio": 2.0398230088495577, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 772.1, "end": 772.4, "word": " because", "probability": 0.27197265625}, {"start": 772.4, "end": 772.62, "word": " we", "probability": 0.83251953125}, {"start": 772.62, "end": 772.62, "word": " have", "probability": 0.9296875}, {"start": 772.62, "end": 773.04, "word": " instructor", "probability": 0.5546875}, {"start": 773.04, "end": 773.3, "word": " and", "probability": 0.9287109375}, {"start": 773.3, "end": 773.76, "word": " student", "probability": 0.7509765625}, {"start": 773.76, "end": 774.68, "word": " and", "probability": 0.7138671875}, {"start": 774.68, "end": 774.92, "word": " this", "probability": 0.71533203125}, {"start": 774.92, "end": 775.38, "word": " relation", "probability": 0.3837890625}, {"start": 775.38, "end": 775.78, "word": " is", "probability": 0.80712890625}, {"start": 775.78, "end": 776.92, "word": " association", "probability": 0.58740234375}, {"start": 776.92, "end": 777.7, "word": " ok?", "probability": 0.123046875}, {"start": 778.34, "end": 778.64, "word": " now", "probability": 0.58984375}, {"start": 778.64, "end": 780.24, "word": " how", "probability": 0.50537109375}, {"start": 780.24, "end": 780.56, "word": " does", "probability": 0.50341796875}, {"start": 780.56, "end": 780.68, "word": " the", "probability": 0.59326171875}, {"start": 780.68, "end": 780.98, "word": " code", "probability": 0.912109375}, {"start": 780.98, "end": 780.98, "word": " look", "probability": 0.42626953125}, {"start": 780.98, "end": 781.02, "word": " like?", "probability": 0.70556640625}, {"start": 781.08, "end": 781.16, "word": " what", "probability": 0.74462890625}, {"start": 781.16, "end": 781.16, "word": " does", "probability": 0.46484375}, {"start": 781.16, "end": 781.2, "word": " the", "probability": 0.497314453125}, {"start": 781.2, "end": 781.6, "word": " instructor", "probability": 0.9150390625}, {"start": 781.6, "end": 782.08, "word": " have", "probability": 0.5439453125}, {"start": 782.08, "end": 782.34, "word": " inside?", "probability": 0.72021484375}, {"start": 782.52, "end": 782.64, "word": " who", "probability": 0.487060546875}, {"start": 782.64, "end": 782.84, "word": " says", "probability": 0.46044921875}, {"start": 782.84, "end": 782.98, "word": " what?", "probability": 0.87646484375}, {"start": 783.76, "end": 784.24, "word": " list", "probability": 0.5546875}, {"start": 784.24, "end": 784.4, "word": " of", "probability": 0.94873046875}, {"start": 784.4, "end": 784.84, "word": " students", "probability": 0.9287109375}, {"start": 784.84, "end": 785.2, "word": " why?", "probability": 0.533203125}, {"start": 785.34, "end": 785.56, "word": " because", "probability": 0.8818359375}, {"start": 785.56, "end": 785.78, "word": " what", "probability": 0.35302734375}, {"start": 785.78, "end": 785.78, "word": " is", "probability": 0.60205078125}, {"start": 785.78, "end": 786.62, "word": " written", "probability": 0.81298828125}, {"start": 786.62, "end": 786.86, "word": " here", "probability": 0.43017578125}, {"start": 786.86, "end": 786.98, "word": " on", "probability": 0.2119140625}, {"start": 786.98, "end": 786.98, "word": " the", "probability": 0.4677734375}, {"start": 786.98, "end": 786.98, "word": " instructor?", "probability": 0.7333984375}, {"start": 787.8, "end": 788.28, "word": " one", "probability": 0.431396484375}, {"start": 788.28, "end": 788.5, "word": " star", "probability": 0.341796875}, {"start": 788.5, "end": 788.72, "word": " this", "probability": 0.5576171875}, {"start": 788.72, "end": 789.16, "word": " is", "probability": 0.6015625}, {"start": 789.16, "end": 789.22, "word": " a", "probability": 0.340576171875}, {"start": 789.22, "end": 789.4, "word": " negative", "probability": 0.220458984375}, {"start": 789.4, "end": 789.4, "word": " number", "probability": 0.85693359375}, {"start": 789.4, "end": 789.64, "word": " on", "probability": 0.27978515625}, {"start": 789.64, "end": 789.82, "word": " who?", "probability": 0.313720703125}, {"start": 789.98, "end": 790.4, "word": " because", "probability": 0.716796875}, {"start": 790.4, "end": 790.56, "word": " the", "probability": 0.50341796875}, {"start": 790.56, "end": 790.84, "word": " instructor", "probability": 0.93115234375}, {"start": 790.84, "end": 791.28, "word": " uses", "probability": 0.697265625}, {"start": 791.28, "end": 791.72, "word": " one", "probability": 0.463623046875}, {"start": 791.72, "end": 792.16, "word": " star", "probability": 0.63623046875}, {"start": 792.16, "end": 792.6, "word": " from", "probability": 0.68798828125}, {"start": 792.6, "end": 793.7, "word": " the", "probability": 0.767578125}, {"start": 793.7, "end": 793.96, "word": " student", "probability": 0.91650390625}, {"start": 793.96, "end": 794.86, "word": " and", "probability": 0.74365234375}, {"start": 794.86, "end": 795.08, "word": " now", "probability": 0.77001953125}, {"start": 795.08, "end": 795.26, "word": " since", "probability": 0.355712890625}, {"start": 795.26, "end": 795.62, "word": " the", "probability": 0.82275390625}, {"start": 795.62, "end": 795.78, "word": " number", "probability": 0.93310546875}, {"start": 795.78, "end": 795.92, "word": " is", "probability": 0.8623046875}, {"start": 795.92, "end": 796.16, "word": " on", "probability": 0.68212890625}, {"start": 796.16, "end": 796.26, "word": " the", "probability": 0.8896484375}, {"start": 796.26, "end": 796.8, "word": " other", "probability": 0.81884765625}, {"start": 796.8, "end": 796.84, "word": " side", "probability": 0.73828125}, {"start": 796.84, "end": 797.56, "word": " it", "probability": 0.359619140625}, {"start": 797.56, "end": 797.66, "word": " becomes", "probability": 0.231689453125}, {"start": 797.66, "end": 797.9, "word": " clear", "probability": 0.75634765625}, {"start": 797.9, "end": 798.12, "word": " that", "probability": 0.93017578125}, {"start": 798.12, "end": 798.32, "word": " there", "probability": 0.271240234375}, {"start": 798.32, "end": 798.46, "word": " is", "probability": 0.92578125}, {"start": 798.46, "end": 798.46, "word": " also", "probability": 0.78564453125}, {"start": 798.46, "end": 798.56, "word": " an", "probability": 0.53564453125}, {"start": 798.56, "end": 799.1, "word": " exchange", "probability": 0.60888671875}, {"start": 799.1, "end": 799.36, "word": " relation", "probability": 0.6123046875}, {"start": 799.36, "end": 799.82, "word": " which", "probability": 0.2059326171875}, {"start": 799.82, "end": 799.88, "word": " means", "probability": 0.82373046875}, {"start": 799.88, "end": 799.98, "word": " that", "probability": 0.583984375}, {"start": 799.98, "end": 800.26, "word": " the", "probability": 0.69775390625}, {"start": 800.26, "end": 800.58, "word": " student", "probability": 0.9521484375}], "temperature": 1.0}, {"id": 34, "seek": 82625, "start": 801.67, "end": 826.25, "text": " there is a list of instructors inside it and this is normal, a student in a university does not have one teacher, he has more than one teacher, more than one subject there is also a list of instructors because of this example, I also have two classes, which are the student and the course and there is also a relationship between them, why? through the numbers I know here the student has a list of what?", "tokens": [456, 307, 257, 1329, 295, 28367, 1854, 309, 293, 341, 307, 2710, 11, 257, 3107, 294, 257, 5454, 775, 406, 362, 472, 5027, 11, 415, 575, 544, 813, 472, 5027, 11, 544, 813, 472, 3983, 456, 307, 611, 257, 1329, 295, 28367, 570, 295, 341, 1365, 11, 286, 611, 362, 732, 5359, 11, 597, 366, 264, 3107, 293, 264, 1164, 293, 456, 307, 611, 257, 2480, 1296, 552, 11, 983, 30, 807, 264, 3547, 286, 458, 510, 264, 3107, 575, 257, 1329, 295, 437, 30], "avg_logprob": -0.48292150677636614, "compression_ratio": 1.8925233644859814, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 801.6700000000001, "end": 802.07, "word": " there", "probability": 0.062286376953125}, {"start": 802.07, "end": 802.17, "word": " is", "probability": 0.7236328125}, {"start": 802.17, "end": 802.47, "word": " a", "probability": 0.463623046875}, {"start": 802.47, "end": 803.85, "word": " list", "probability": 0.7822265625}, {"start": 803.85, "end": 804.05, "word": " of", "probability": 0.89453125}, {"start": 804.05, "end": 804.61, "word": " instructors", "probability": 0.9169921875}, {"start": 804.61, "end": 804.61, "word": " inside", "probability": 0.439208984375}, {"start": 804.61, "end": 805.33, "word": " it", "probability": 0.354248046875}, {"start": 805.33, "end": 806.19, "word": " and", "probability": 0.37255859375}, {"start": 806.19, "end": 806.37, "word": " this", "probability": 0.46240234375}, {"start": 806.37, "end": 806.37, "word": " is", "probability": 0.908203125}, {"start": 806.37, "end": 806.71, "word": " normal,", "probability": 0.70263671875}, {"start": 806.91, "end": 807.91, "word": " a", "probability": 0.268310546875}, {"start": 807.91, "end": 808.07, "word": " student", "probability": 0.77001953125}, {"start": 808.07, "end": 808.27, "word": " in", "probability": 0.474609375}, {"start": 808.27, "end": 808.41, "word": " a", "probability": 0.284423828125}, {"start": 808.41, "end": 808.61, "word": " university", "probability": 0.85888671875}, {"start": 808.61, "end": 808.75, "word": " does", "probability": 0.40625}, {"start": 808.75, "end": 808.75, "word": " not", "probability": 0.912109375}, {"start": 808.75, "end": 808.87, "word": " have", "probability": 0.83349609375}, {"start": 808.87, "end": 809.01, "word": " one", "probability": 0.366943359375}, {"start": 809.01, "end": 809.27, "word": " teacher,", "probability": 0.74951171875}, {"start": 809.51, "end": 809.59, "word": " he", "probability": 0.62548828125}, {"start": 809.59, "end": 809.63, "word": " has", "probability": 0.78271484375}, {"start": 809.63, "end": 809.87, "word": " more", "probability": 0.75341796875}, {"start": 809.87, "end": 810.07, "word": " than", "probability": 0.35888671875}, {"start": 810.07, "end": 810.07, "word": " one", "probability": 0.7958984375}, {"start": 810.07, "end": 810.19, "word": " teacher,", "probability": 0.87109375}, {"start": 810.39, "end": 810.51, "word": " more", "probability": 0.80224609375}, {"start": 810.51, "end": 810.73, "word": " than", "probability": 0.92041015625}, {"start": 810.73, "end": 810.91, "word": " one", "probability": 0.7431640625}, {"start": 810.91, "end": 811.03, "word": " subject", "probability": 0.57080078125}, {"start": 811.03, "end": 811.69, "word": " there", "probability": 0.248291015625}, {"start": 811.69, "end": 812.07, "word": " is", "probability": 0.890625}, {"start": 812.07, "end": 812.07, "word": " also", "probability": 0.84033203125}, {"start": 812.07, "end": 812.33, "word": " a", "probability": 0.97412109375}, {"start": 812.33, "end": 812.57, "word": " list", "probability": 0.888671875}, {"start": 812.57, "end": 812.87, "word": " of", "probability": 0.96875}, {"start": 812.87, "end": 813.87, "word": " instructors", "probability": 0.82080078125}, {"start": 813.87, "end": 814.91, "word": " because", "probability": 0.355712890625}, {"start": 814.91, "end": 815.05, "word": " of", "probability": 0.5888671875}, {"start": 815.05, "end": 815.07, "word": " this", "probability": 0.90966796875}, {"start": 815.07, "end": 815.39, "word": " example,", "probability": 0.96435546875}, {"start": 816.43, "end": 816.67, "word": " I", "probability": 0.72509765625}, {"start": 816.67, "end": 816.77, "word": " also", "probability": 0.395751953125}, {"start": 816.77, "end": 816.97, "word": " have", "probability": 0.94091796875}, {"start": 816.97, "end": 817.17, "word": " two", "probability": 0.86376953125}, {"start": 817.17, "end": 817.55, "word": " classes,", "probability": 0.88134765625}, {"start": 817.69, "end": 817.69, "word": " which", "probability": 0.427978515625}, {"start": 817.69, "end": 817.79, "word": " are", "probability": 0.8427734375}, {"start": 817.79, "end": 817.91, "word": " the", "probability": 0.455810546875}, {"start": 817.91, "end": 818.13, "word": " student", "probability": 0.7685546875}, {"start": 818.13, "end": 818.31, "word": " and", "probability": 0.91748046875}, {"start": 818.31, "end": 818.43, "word": " the", "probability": 0.84228515625}, {"start": 818.43, "end": 818.73, "word": " course", "probability": 0.96728515625}, {"start": 818.73, "end": 819.65, "word": " and", "probability": 0.7392578125}, {"start": 819.65, "end": 819.81, "word": " there", "probability": 0.74169921875}, {"start": 819.81, "end": 819.93, "word": " is", "probability": 0.896484375}, {"start": 819.93, "end": 820.21, "word": " also", "probability": 0.8427734375}, {"start": 820.21, "end": 820.29, "word": " a", "probability": 0.7685546875}, {"start": 820.29, "end": 820.53, "word": " relationship", "probability": 0.4208984375}, {"start": 820.53, "end": 820.73, "word": " between", "probability": 0.7744140625}, {"start": 820.73, "end": 820.97, "word": " them,", "probability": 0.6435546875}, {"start": 821.13, "end": 821.63, "word": " why?", "probability": 0.77783203125}, {"start": 822.37, "end": 822.73, "word": " through", "probability": 0.5126953125}, {"start": 822.73, "end": 822.91, "word": " the", "probability": 0.451171875}, {"start": 822.91, "end": 823.13, "word": " numbers", "probability": 0.27734375}, {"start": 823.13, "end": 823.27, "word": " I", "probability": 0.44873046875}, {"start": 823.27, "end": 823.55, "word": " know", "probability": 0.147705078125}, {"start": 823.55, "end": 824.63, "word": " here", "probability": 0.34814453125}, {"start": 824.63, "end": 824.83, "word": " the", "probability": 0.5771484375}, {"start": 824.83, "end": 825.21, "word": " student", "probability": 0.89990234375}, {"start": 825.21, "end": 825.47, "word": " has", "probability": 0.6728515625}, {"start": 825.47, "end": 825.55, "word": " a", "probability": 0.97412109375}, {"start": 825.55, "end": 825.79, "word": " list", "probability": 0.9150390625}, {"start": 825.79, "end": 825.99, "word": " of", "probability": 0.9560546875}, {"start": 825.99, "end": 826.25, "word": " what?", "probability": 0.88818359375}], "temperature": 1.0}, {"id": 35, "seek": 84787, "start": 827.19, "end": 847.87, "text": "Of course, and I'm telling you that this list must not decrease the number of courses in it from three and the opposite is that the course has a list of students and the number of students that will be in the course must not decrease from twelve, this is called multiplicity and this is optional, that is, you may not find it on the drawing, okay?", "tokens": [23919, 1164, 11, 293, 286, 478, 3585, 291, 300, 341, 1329, 1633, 406, 11514, 264, 1230, 295, 7712, 294, 309, 490, 1045, 293, 264, 6182, 307, 300, 264, 1164, 575, 257, 1329, 295, 1731, 293, 264, 1230, 295, 1731, 300, 486, 312, 294, 264, 1164, 1633, 406, 11514, 490, 14390, 11, 341, 307, 1219, 17596, 507, 293, 341, 307, 17312, 11, 300, 307, 11, 291, 815, 406, 915, 309, 322, 264, 6316, 11, 1392, 30], "avg_logprob": -0.4687499941179627, "compression_ratio": 1.7794871794871794, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 827.19, "end": 827.41, "word": "Of", "probability": 0.29736328125}, {"start": 827.41, "end": 827.77, "word": " course,", "probability": 0.919921875}, {"start": 828.07, "end": 828.23, "word": " and", "probability": 0.433837890625}, {"start": 828.23, "end": 828.31, "word": " I'm", "probability": 0.25469970703125}, {"start": 828.31, "end": 828.43, "word": " telling", "probability": 0.65576171875}, {"start": 828.43, "end": 828.59, "word": " you", "probability": 0.9599609375}, {"start": 828.59, "end": 828.69, "word": " that", "probability": 0.55810546875}, {"start": 828.69, "end": 828.95, "word": " this", "probability": 0.337890625}, {"start": 828.95, "end": 829.21, "word": " list", "probability": 0.79736328125}, {"start": 829.21, "end": 829.51, "word": " must", "probability": 0.283203125}, {"start": 829.51, "end": 829.55, "word": " not", "probability": 0.5244140625}, {"start": 829.55, "end": 829.79, "word": " decrease", "probability": 0.305419921875}, {"start": 829.79, "end": 830.01, "word": " the", "probability": 0.591796875}, {"start": 830.01, "end": 830.21, "word": " number", "probability": 0.861328125}, {"start": 830.21, "end": 830.29, "word": " of", "probability": 0.962890625}, {"start": 830.29, "end": 830.59, "word": " courses", "probability": 0.63720703125}, {"start": 830.59, "end": 830.79, "word": " in", "probability": 0.1480712890625}, {"start": 830.79, "end": 830.91, "word": " it", "probability": 0.72265625}, {"start": 830.91, "end": 831.11, "word": " from", "probability": 0.72900390625}, {"start": 831.11, "end": 832.03, "word": " three", "probability": 0.492431640625}, {"start": 832.03, "end": 832.85, "word": " and", "probability": 0.264892578125}, {"start": 832.85, "end": 832.95, "word": " the", "probability": 0.365966796875}, {"start": 832.95, "end": 833.23, "word": " opposite", "probability": 0.77392578125}, {"start": 833.23, "end": 833.57, "word": " is", "probability": 0.46435546875}, {"start": 833.57, "end": 833.65, "word": " that", "probability": 0.81689453125}, {"start": 833.65, "end": 833.81, "word": " the", "probability": 0.830078125}, {"start": 833.81, "end": 834.23, "word": " course", "probability": 0.93994140625}, {"start": 834.23, "end": 835.41, "word": " has", "probability": 0.7197265625}, {"start": 835.41, "end": 835.55, "word": " a", "probability": 0.9580078125}, {"start": 835.55, "end": 835.77, "word": " list", "probability": 0.88427734375}, {"start": 835.77, "end": 836.07, "word": " of", "probability": 0.96630859375}, {"start": 836.07, "end": 837.25, "word": " students", "probability": 0.96728515625}, {"start": 837.25, "end": 838.05, "word": " and", "probability": 0.78955078125}, {"start": 838.05, "end": 838.17, "word": " the", "probability": 0.884765625}, {"start": 838.17, "end": 838.31, "word": " number", "probability": 0.9462890625}, {"start": 838.31, "end": 838.45, "word": " of", "probability": 0.9697265625}, {"start": 838.45, "end": 838.71, "word": " students", "probability": 0.962890625}, {"start": 838.71, "end": 838.89, "word": " that", "probability": 0.4892578125}, {"start": 838.89, "end": 839.01, "word": " will", "probability": 0.78662109375}, {"start": 839.01, "end": 839.23, "word": " be", "probability": 0.94580078125}, {"start": 839.23, "end": 839.35, "word": " in", "probability": 0.91748046875}, {"start": 839.35, "end": 839.51, "word": " the", "probability": 0.904296875}, {"start": 839.51, "end": 839.79, "word": " course", "probability": 0.95947265625}, {"start": 839.79, "end": 840.07, "word": " must", "probability": 0.65869140625}, {"start": 840.07, "end": 840.17, "word": " not", "probability": 0.919921875}, {"start": 840.17, "end": 840.41, "word": " decrease", "probability": 0.806640625}, {"start": 840.41, "end": 840.83, "word": " from", "probability": 0.8759765625}, {"start": 840.83, "end": 842.01, "word": " twelve,", "probability": 0.6923828125}, {"start": 842.13, "end": 842.27, "word": " this", "probability": 0.623046875}, {"start": 842.27, "end": 842.39, "word": " is", "probability": 0.54931640625}, {"start": 842.39, "end": 842.67, "word": " called", "probability": 0.509765625}, {"start": 842.67, "end": 843.63, "word": " multiplicity", "probability": 0.8447265625}, {"start": 843.63, "end": 843.77, "word": " and", "probability": 0.79833984375}, {"start": 843.77, "end": 844.05, "word": " this", "probability": 0.8740234375}, {"start": 844.05, "end": 844.11, "word": " is", "probability": 0.8662109375}, {"start": 844.11, "end": 844.53, "word": " optional,", "probability": 0.8837890625}, {"start": 845.23, "end": 845.31, "word": " that", "probability": 0.1490478515625}, {"start": 845.31, "end": 845.35, "word": " is,", "probability": 0.69482421875}, {"start": 845.43, "end": 845.45, "word": " you", "probability": 0.5927734375}, {"start": 845.45, "end": 845.51, "word": " may", "probability": 0.493896484375}, {"start": 845.51, "end": 845.97, "word": " not", "probability": 0.873046875}, {"start": 845.97, "end": 846.77, "word": " find", "probability": 0.73974609375}, {"start": 846.77, "end": 846.91, "word": " it", "probability": 0.47216796875}, {"start": 846.91, "end": 847.03, "word": " on", "probability": 0.7333984375}, {"start": 847.03, "end": 847.11, "word": " the", "probability": 0.72607421875}, {"start": 847.11, "end": 847.29, "word": " drawing,", "probability": 0.53369140625}, {"start": 847.65, "end": 847.87, "word": " okay?", "probability": 0.61669921875}], "temperature": 1.0}, {"id": 36, "seek": 87365, "start": 852.07, "end": 873.65, "text": "This shows you the interpretation of the numbers of multiplicity 1 means exactly one, zero to a star means one or more, one to a star means one or more, zero to one means one or zero, and so on. We are still working on the relationship of association.", "tokens": [5723, 3110, 291, 264, 14174, 295, 264, 3547, 295, 17596, 507, 502, 1355, 2293, 472, 11, 4018, 281, 257, 3543, 1355, 472, 420, 544, 11, 472, 281, 257, 3543, 1355, 472, 420, 544, 11, 4018, 281, 472, 1355, 472, 420, 4018, 11, 293, 370, 322, 13, 492, 366, 920, 1364, 322, 264, 2480, 295, 14598, 13], "avg_logprob": -0.559210501219097, "compression_ratio": 1.6845637583892616, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 852.07, "end": 852.33, "word": "This", "probability": 0.279052734375}, {"start": 852.33, "end": 852.63, "word": " shows", "probability": 0.321533203125}, {"start": 852.63, "end": 852.83, "word": " you", "probability": 0.66650390625}, {"start": 852.83, "end": 853.59, "word": " the", "probability": 0.42138671875}, {"start": 853.59, "end": 853.97, "word": " interpretation", "probability": 0.1148681640625}, {"start": 853.97, "end": 854.17, "word": " of", "probability": 0.9296875}, {"start": 854.17, "end": 854.19, "word": " the", "probability": 0.453857421875}, {"start": 854.19, "end": 854.49, "word": " numbers", "probability": 0.30029296875}, {"start": 854.49, "end": 854.73, "word": " of", "probability": 0.365966796875}, {"start": 854.73, "end": 855.57, "word": " multiplicity", "probability": 0.774169921875}, {"start": 855.57, "end": 856.69, "word": " 1", "probability": 0.287109375}, {"start": 856.69, "end": 857.11, "word": " means", "probability": 0.5068359375}, {"start": 857.11, "end": 857.67, "word": " exactly", "probability": 0.83837890625}, {"start": 857.67, "end": 858.01, "word": " one,", "probability": 0.48779296875}, {"start": 858.41, "end": 858.69, "word": " zero", "probability": 0.59326171875}, {"start": 858.69, "end": 858.87, "word": " to", "probability": 0.66455078125}, {"start": 858.87, "end": 859.17, "word": " a", "probability": 0.418212890625}, {"start": 859.17, "end": 859.17, "word": " star", "probability": 0.8642578125}, {"start": 859.17, "end": 859.43, "word": " means", "probability": 0.58447265625}, {"start": 859.43, "end": 859.63, "word": " one", "probability": 0.28955078125}, {"start": 859.63, "end": 860.25, "word": " or", "probability": 0.82177734375}, {"start": 860.25, "end": 861.05, "word": " more,", "probability": 0.90185546875}, {"start": 861.59, "end": 862.55, "word": " one", "probability": 0.8291015625}, {"start": 862.55, "end": 862.75, "word": " to", "probability": 0.9609375}, {"start": 862.75, "end": 863.03, "word": " a", "probability": 0.94970703125}, {"start": 863.03, "end": 863.03, "word": " star", "probability": 0.9482421875}, {"start": 863.03, "end": 863.25, "word": " means", "probability": 0.8984375}, {"start": 863.25, "end": 863.45, "word": " one", "probability": 0.919921875}, {"start": 863.45, "end": 863.65, "word": " or", "probability": 0.95556640625}, {"start": 863.65, "end": 863.97, "word": " more,", "probability": 0.92578125}, {"start": 864.59, "end": 865.29, "word": " zero", "probability": 0.73828125}, {"start": 865.29, "end": 865.47, "word": " to", "probability": 0.95947265625}, {"start": 865.47, "end": 865.79, "word": " one", "probability": 0.8916015625}, {"start": 865.79, "end": 865.99, "word": " means", "probability": 0.876953125}, {"start": 865.99, "end": 866.85, "word": " one", "probability": 0.88720703125}, {"start": 866.85, "end": 867.55, "word": " or", "probability": 0.94384765625}, {"start": 867.55, "end": 867.91, "word": " zero,", "probability": 0.90380859375}, {"start": 868.25, "end": 868.29, "word": " and", "probability": 0.56005859375}, {"start": 868.29, "end": 868.51, "word": " so", "probability": 0.8671875}, {"start": 868.51, "end": 869.07, "word": " on.", "probability": 0.8896484375}, {"start": 869.41, "end": 870.05, "word": " We", "probability": 0.2303466796875}, {"start": 870.05, "end": 870.35, "word": " are", "probability": 0.42529296875}, {"start": 870.35, "end": 870.53, "word": " still", "probability": 0.79833984375}, {"start": 870.53, "end": 871.11, "word": " working", "probability": 0.5546875}, {"start": 871.11, "end": 871.31, "word": " on", "probability": 0.662109375}, {"start": 871.31, "end": 871.45, "word": " the", "probability": 0.375732421875}, {"start": 871.45, "end": 871.87, "word": " relationship", "probability": 0.59716796875}, {"start": 871.87, "end": 873.13, "word": " of", "probability": 0.397216796875}, {"start": 873.13, "end": 873.65, "word": " association.", "probability": 0.6494140625}], "temperature": 1.0}, {"id": 37, "seek": 90701, "start": 879.61, "end": 907.01, "text": " it is preferable that in the relation of association you put the arrow pointing towards the relation for example here in this case the unit is wrong to be here because the unit what does it mean? I don't understand why it is different but here look towards the arrow where is it going? towards the role you will understand that I have a class car which has inside it a list of roles and at least there should be two objects in this list", "tokens": [309, 307, 4382, 712, 300, 294, 264, 9721, 295, 14598, 291, 829, 264, 11610, 12166, 281, 4151, 7800, 82, 264, 9721, 337, 1365, 510, 294, 341, 1389, 264, 4985, 307, 2085, 281, 312, 510, 570, 264, 4985, 437, 775, 309, 914, 30, 286, 500, 380, 1223, 983, 309, 307, 819, 457, 510, 574, 3030, 264, 11610, 689, 307, 309, 516, 30, 3030, 264, 3090, 291, 486, 1223, 300, 286, 362, 257, 1508, 1032, 597, 575, 1854, 309, 257, 1329, 295, 9604, 293, 412, 1935, 456, 820, 312, 732, 6565, 294, 341, 1329], "avg_logprob": -0.6058467716299077, "compression_ratio": 1.8595744680851063, "no_speech_prob": 4.410743713378906e-06, "words": [{"start": 879.61, "end": 879.83, "word": " it", "probability": 0.144287109375}, {"start": 879.83, "end": 879.93, "word": " is", "probability": 0.52392578125}, {"start": 879.93, "end": 880.37, "word": " preferable", "probability": 0.6878662109375}, {"start": 880.37, "end": 880.69, "word": " that", "probability": 0.314453125}, {"start": 880.69, "end": 880.83, "word": " in", "probability": 0.50341796875}, {"start": 880.83, "end": 880.93, "word": " the", "probability": 0.52197265625}, {"start": 880.93, "end": 881.13, "word": " relation", "probability": 0.281005859375}, {"start": 881.13, "end": 881.27, "word": " of", "probability": 0.634765625}, {"start": 881.27, "end": 881.79, "word": " association", "probability": 0.67724609375}, {"start": 881.79, "end": 882.03, "word": " you", "probability": 0.441162109375}, {"start": 882.03, "end": 882.23, "word": " put", "probability": 0.53955078125}, {"start": 882.23, "end": 882.43, "word": " the", "probability": 0.60791015625}, {"start": 882.43, "end": 882.63, "word": " arrow", "probability": 0.7099609375}, {"start": 882.63, "end": 883.35, "word": " pointing", "probability": 0.486572265625}, {"start": 883.35, "end": 884.75, "word": " towards", "probability": 0.614288330078125}, {"start": 884.75, "end": 884.81, "word": " the", "probability": 0.71728515625}, {"start": 884.81, "end": 885.07, "word": " relation", "probability": 0.91162109375}, {"start": 885.07, "end": 885.71, "word": " for", "probability": 0.09124755859375}, {"start": 885.71, "end": 886.21, "word": " example", "probability": 0.88330078125}, {"start": 886.21, "end": 886.59, "word": " here", "probability": 0.31689453125}, {"start": 886.59, "end": 886.87, "word": " in", "probability": 0.50830078125}, {"start": 886.87, "end": 886.99, "word": " this", "probability": 0.900390625}, {"start": 886.99, "end": 887.21, "word": " case", "probability": 0.71923828125}, {"start": 887.21, "end": 887.91, "word": " the", "probability": 0.2344970703125}, {"start": 887.91, "end": 888.09, "word": " unit", "probability": 0.55126953125}, {"start": 888.09, "end": 888.31, "word": " is", "probability": 0.322021484375}, {"start": 888.31, "end": 888.51, "word": " wrong", "probability": 0.64794921875}, {"start": 888.51, "end": 888.63, "word": " to", "probability": 0.3232421875}, {"start": 888.63, "end": 888.77, "word": " be", "probability": 0.90576171875}, {"start": 888.77, "end": 889.01, "word": " here", "probability": 0.7685546875}, {"start": 889.01, "end": 890.53, "word": " because", "probability": 0.53271484375}, {"start": 890.53, "end": 890.69, "word": " the", "probability": 0.409912109375}, {"start": 890.69, "end": 890.89, "word": " unit", "probability": 0.9443359375}, {"start": 890.89, "end": 891.09, "word": " what", "probability": 0.1971435546875}, {"start": 891.09, "end": 891.23, "word": " does", "probability": 0.486083984375}, {"start": 891.23, "end": 891.57, "word": " it", "probability": 0.83984375}, {"start": 891.57, "end": 891.57, "word": " mean?", "probability": 0.888671875}, {"start": 891.85, "end": 892.29, "word": " I", "probability": 0.23291015625}, {"start": 892.29, "end": 892.33, "word": " don't", "probability": 0.6947021484375}, {"start": 892.33, "end": 892.41, "word": " understand", "probability": 0.53466796875}, {"start": 892.41, "end": 892.63, "word": " why", "probability": 0.342041015625}, {"start": 892.63, "end": 892.63, "word": " it", "probability": 0.369384765625}, {"start": 892.63, "end": 892.63, "word": " is", "probability": 0.49267578125}, {"start": 892.63, "end": 892.85, "word": " different", "probability": 0.1190185546875}, {"start": 892.85, "end": 893.67, "word": " but", "probability": 0.552734375}, {"start": 893.67, "end": 893.91, "word": " here", "probability": 0.6396484375}, {"start": 893.91, "end": 894.17, "word": " look", "probability": 0.68212890625}, {"start": 894.17, "end": 894.47, "word": " towards", "probability": 0.302490234375}, {"start": 894.47, "end": 894.69, "word": " the", "probability": 0.892578125}, {"start": 894.69, "end": 894.87, "word": " arrow", "probability": 0.86083984375}, {"start": 894.87, "end": 895.03, "word": " where", "probability": 0.426025390625}, {"start": 895.03, "end": 895.09, "word": " is", "probability": 0.440673828125}, {"start": 895.09, "end": 895.09, "word": " it", "probability": 0.84375}, {"start": 895.09, "end": 895.37, "word": " going?", "probability": 0.775390625}, {"start": 896.13, "end": 896.57, "word": " towards", "probability": 0.51953125}, {"start": 896.57, "end": 896.81, "word": " the", "probability": 0.84375}, {"start": 896.81, "end": 896.95, "word": " role", "probability": 0.151611328125}, {"start": 896.95, "end": 897.45, "word": " you", "probability": 0.6826171875}, {"start": 897.45, "end": 897.55, "word": " will", "probability": 0.3115234375}, {"start": 897.55, "end": 897.73, "word": " understand", "probability": 0.7197265625}, {"start": 897.73, "end": 897.91, "word": " that", "probability": 0.9287109375}, {"start": 897.91, "end": 898.05, "word": " I", "probability": 0.90087890625}, {"start": 898.05, "end": 898.17, "word": " have", "probability": 0.947265625}, {"start": 898.17, "end": 898.31, "word": " a", "probability": 0.7021484375}, {"start": 898.31, "end": 898.53, "word": " class", "probability": 0.9423828125}, {"start": 898.53, "end": 898.87, "word": " car", "probability": 0.390380859375}, {"start": 898.87, "end": 899.89, "word": " which", "probability": 0.2049560546875}, {"start": 899.89, "end": 900.05, "word": " has", "probability": 0.744140625}, {"start": 900.05, "end": 900.27, "word": " inside", "probability": 0.5400390625}, {"start": 900.27, "end": 900.47, "word": " it", "probability": 0.304443359375}, {"start": 900.47, "end": 900.49, "word": " a", "probability": 0.8115234375}, {"start": 900.49, "end": 900.73, "word": " list", "probability": 0.935546875}, {"start": 900.73, "end": 901.09, "word": " of", "probability": 0.9658203125}, {"start": 901.09, "end": 902.43, "word": " roles", "probability": 0.5029296875}, {"start": 902.43, "end": 903.07, "word": " and", "probability": 0.488525390625}, {"start": 903.07, "end": 904.17, "word": " at", "probability": 0.8427734375}, {"start": 904.17, "end": 904.43, "word": " least", "probability": 0.9462890625}, {"start": 904.43, "end": 904.55, "word": " there", "probability": 0.6259765625}, {"start": 904.55, "end": 904.63, "word": " should", "probability": 0.58837890625}, {"start": 904.63, "end": 904.85, "word": " be", "probability": 0.8671875}, {"start": 904.85, "end": 905.13, "word": " two", "probability": 0.79736328125}, {"start": 905.13, "end": 905.63, "word": " objects", "probability": 0.95947265625}, {"start": 905.63, "end": 905.87, "word": " in", "probability": 0.54150390625}, {"start": 905.87, "end": 906.75, "word": " this", "probability": 0.66845703125}, {"start": 906.75, "end": 907.01, "word": " list", "probability": 0.931640625}], "temperature": 1.0}, {"id": 38, "seek": 93805, "start": 911.99, "end": 938.05, "text": " Okay, we are still working in any kind of relationship, association, okay? Sometimes you find a relationship like this, guys Okay? You can find for example the class employee, the designer, okay? And he made you an agreement like this Okay? What does this mean? I understand that the class employee has inside him ... No, I didn't say list, how did you know it's a list?", "tokens": [1033, 11, 321, 366, 920, 1364, 294, 604, 733, 295, 2480, 11, 14598, 11, 1392, 30, 4803, 291, 915, 257, 2480, 411, 341, 11, 1074, 1033, 30, 509, 393, 915, 337, 1365, 264, 1508, 10738, 11, 264, 11795, 11, 1392, 30, 400, 415, 1027, 291, 364, 8106, 411, 341, 1033, 30, 708, 775, 341, 914, 30, 286, 1223, 300, 264, 1508, 10738, 575, 1854, 796, 1097, 883, 11, 286, 994, 380, 584, 1329, 11, 577, 630, 291, 458, 309, 311, 257, 1329, 30], "avg_logprob": -0.49181546661115827, "compression_ratio": 1.6343612334801763, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 911.99, "end": 912.25, "word": " Okay,", "probability": 0.1761474609375}, {"start": 912.29, "end": 912.59, "word": " we", "probability": 0.5078125}, {"start": 912.59, "end": 912.59, "word": " are", "probability": 0.62060546875}, {"start": 912.59, "end": 912.59, "word": " still", "probability": 0.826171875}, {"start": 912.59, "end": 913.41, "word": " working", "probability": 0.8017578125}, {"start": 913.41, "end": 913.57, "word": " in", "probability": 0.3251953125}, {"start": 913.57, "end": 913.73, "word": " any", "probability": 0.6474609375}, {"start": 913.73, "end": 913.87, "word": " kind", "probability": 0.54931640625}, {"start": 913.87, "end": 913.99, "word": " of", "probability": 0.9697265625}, {"start": 913.99, "end": 914.35, "word": " relationship,", "probability": 0.309814453125}, {"start": 914.43, "end": 915.07, "word": " association,", "probability": 0.3720703125}, {"start": 915.61, "end": 915.85, "word": " okay?", "probability": 0.5693359375}, {"start": 916.01, "end": 916.29, "word": " Sometimes", "probability": 0.69091796875}, {"start": 916.29, "end": 916.47, "word": " you", "probability": 0.85302734375}, {"start": 916.47, "end": 916.65, "word": " find", "probability": 0.59228515625}, {"start": 916.65, "end": 916.75, "word": " a", "probability": 0.459228515625}, {"start": 916.75, "end": 917.01, "word": " relationship", "probability": 0.822265625}, {"start": 917.01, "end": 917.17, "word": " like", "probability": 0.890625}, {"start": 917.17, "end": 917.41, "word": " this,", "probability": 0.78564453125}, {"start": 917.51, "end": 917.79, "word": " guys", "probability": 0.439208984375}, {"start": 917.79, "end": 920.35, "word": " Okay?", "probability": 0.267822265625}, {"start": 920.65, "end": 920.93, "word": " You", "probability": 0.73828125}, {"start": 920.93, "end": 921.09, "word": " can", "probability": 0.55615234375}, {"start": 921.09, "end": 921.41, "word": " find", "probability": 0.849609375}, {"start": 921.41, "end": 921.57, "word": " for", "probability": 0.41015625}, {"start": 921.57, "end": 921.73, "word": " example", "probability": 0.9404296875}, {"start": 921.73, "end": 921.91, "word": " the", "probability": 0.2841796875}, {"start": 921.91, "end": 922.29, "word": " class", "probability": 0.9052734375}, {"start": 922.29, "end": 922.87, "word": " employee,", "probability": 0.70166015625}, {"start": 923.27, "end": 923.51, "word": " the", "probability": 0.63134765625}, {"start": 923.51, "end": 923.77, "word": " designer,", "probability": 0.08447265625}, {"start": 925.01, "end": 925.23, "word": " okay?", "probability": 0.72509765625}, {"start": 925.31, "end": 925.41, "word": " And", "probability": 0.72900390625}, {"start": 925.41, "end": 925.63, "word": " he", "probability": 0.71630859375}, {"start": 925.63, "end": 925.63, "word": " made", "probability": 0.357177734375}, {"start": 925.63, "end": 925.81, "word": " you", "probability": 0.489501953125}, {"start": 925.81, "end": 925.91, "word": " an", "probability": 0.57666015625}, {"start": 925.91, "end": 925.97, "word": " agreement", "probability": 0.44970703125}, {"start": 925.97, "end": 926.17, "word": " like", "probability": 0.736328125}, {"start": 926.17, "end": 926.67, "word": " this", "probability": 0.6953125}, {"start": 926.67, "end": 928.95, "word": " Okay?", "probability": 0.2017822265625}, {"start": 929.79, "end": 930.27, "word": " What", "probability": 0.7890625}, {"start": 930.27, "end": 930.27, "word": " does", "probability": 0.91943359375}, {"start": 930.27, "end": 930.43, "word": " this", "probability": 0.51806640625}, {"start": 930.43, "end": 930.67, "word": " mean?", "probability": 0.966796875}, {"start": 931.29, "end": 931.77, "word": " I", "probability": 0.8076171875}, {"start": 931.77, "end": 932.01, "word": " understand", "probability": 0.75732421875}, {"start": 932.01, "end": 932.25, "word": " that", "probability": 0.9326171875}, {"start": 932.25, "end": 932.41, "word": " the", "probability": 0.7626953125}, {"start": 932.41, "end": 932.79, "word": " class", "probability": 0.96728515625}, {"start": 932.79, "end": 933.35, "word": " employee", "probability": 0.84716796875}, {"start": 933.35, "end": 934.81, "word": " has", "probability": 0.78564453125}, {"start": 934.81, "end": 935.23, "word": " inside", "probability": 0.60009765625}, {"start": 935.23, "end": 935.65, "word": " him", "probability": 0.32763671875}, {"start": 935.65, "end": 935.91, "word": " ...", "probability": 0.239501953125}, {"start": 935.91, "end": 936.47, "word": " No,", "probability": 0.53125}, {"start": 936.57, "end": 936.59, "word": " I", "probability": 0.966796875}, {"start": 936.59, "end": 936.65, "word": " didn't", "probability": 0.7088623046875}, {"start": 936.65, "end": 936.87, "word": " say", "probability": 0.939453125}, {"start": 936.87, "end": 937.15, "word": " list,", "probability": 0.8193359375}, {"start": 937.31, "end": 937.51, "word": " how", "probability": 0.89013671875}, {"start": 937.51, "end": 937.59, "word": " did", "probability": 0.81298828125}, {"start": 937.59, "end": 937.77, "word": " you", "probability": 0.93359375}, {"start": 937.77, "end": 937.77, "word": " know", "probability": 0.83203125}, {"start": 937.77, "end": 937.87, "word": " it's", "probability": 0.6263427734375}, {"start": 937.87, "end": 937.93, "word": " a", "probability": 0.82373046875}, {"start": 937.93, "end": 938.05, "word": " list?", "probability": 0.92431640625}], "temperature": 1.0}, {"id": 39, "seek": 96136, "start": 939.98, "end": 961.36, "text": "The multiplicity is what tells you if it is a list or not. But what I understand is that the employee has a reference to the employee, also from the type of employee. For example, this is the class employee. This is how you imagine the code. If you open it, you will find here for example employee. E for example.", "tokens": [2278, 17596, 507, 307, 437, 5112, 291, 498, 309, 307, 257, 1329, 420, 406, 13, 583, 437, 286, 1223, 307, 300, 264, 10738, 575, 257, 6408, 281, 264, 10738, 11, 611, 490, 264, 2010, 295, 10738, 13, 1171, 1365, 11, 341, 307, 264, 1508, 10738, 13, 639, 307, 577, 291, 3811, 264, 3089, 13, 759, 291, 1269, 309, 11, 291, 486, 915, 510, 337, 1365, 10738, 13, 462, 337, 1365, 13], "avg_logprob": -0.5099826281269392, "compression_ratio": 1.7486033519553073, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 939.9799999999999, "end": 940.42, "word": "The", "probability": 0.1649169921875}, {"start": 940.42, "end": 940.86, "word": " multiplicity", "probability": 0.915771484375}, {"start": 940.86, "end": 940.98, "word": " is", "probability": 0.456298828125}, {"start": 940.98, "end": 941.04, "word": " what", "probability": 0.76220703125}, {"start": 941.04, "end": 941.24, "word": " tells", "probability": 0.477783203125}, {"start": 941.24, "end": 941.4, "word": " you", "probability": 0.8291015625}, {"start": 941.4, "end": 941.46, "word": " if", "probability": 0.38818359375}, {"start": 941.46, "end": 941.46, "word": " it", "probability": 0.67333984375}, {"start": 941.46, "end": 941.46, "word": " is", "probability": 0.54443359375}, {"start": 941.46, "end": 941.48, "word": " a", "probability": 0.6572265625}, {"start": 941.48, "end": 941.68, "word": " list", "probability": 0.93408203125}, {"start": 941.68, "end": 941.82, "word": " or", "probability": 0.91748046875}, {"start": 941.82, "end": 941.94, "word": " not.", "probability": 0.912109375}, {"start": 942.46, "end": 942.9, "word": " But", "probability": 0.36865234375}, {"start": 942.9, "end": 943.18, "word": " what", "probability": 0.51708984375}, {"start": 943.18, "end": 943.3, "word": " I", "probability": 0.9638671875}, {"start": 943.3, "end": 943.52, "word": " understand", "probability": 0.55908203125}, {"start": 943.52, "end": 944.02, "word": " is", "probability": 0.744140625}, {"start": 944.02, "end": 944.12, "word": " that", "probability": 0.84619140625}, {"start": 944.12, "end": 944.24, "word": " the", "probability": 0.361572265625}, {"start": 944.24, "end": 944.68, "word": " employee", "probability": 0.70068359375}, {"start": 944.68, "end": 945.16, "word": " has", "probability": 0.548828125}, {"start": 945.16, "end": 945.5, "word": " a", "probability": 0.46826171875}, {"start": 945.5, "end": 945.84, "word": " reference", "probability": 0.83056640625}, {"start": 945.84, "end": 946.4, "word": " to", "probability": 0.19970703125}, {"start": 946.4, "end": 947.02, "word": " the", "probability": 0.344482421875}, {"start": 947.02, "end": 947.32, "word": " employee,", "probability": 0.67626953125}, {"start": 947.54, "end": 947.98, "word": " also", "probability": 0.5}, {"start": 947.98, "end": 948.1, "word": " from", "probability": 0.291015625}, {"start": 948.1, "end": 948.2, "word": " the", "probability": 0.7373046875}, {"start": 948.2, "end": 948.3, "word": " type", "probability": 0.63330078125}, {"start": 948.3, "end": 948.44, "word": " of", "probability": 0.54931640625}, {"start": 948.44, "end": 948.68, "word": " employee.", "probability": 0.86279296875}, {"start": 948.94, "end": 949.16, "word": " For", "probability": 0.3984375}, {"start": 949.16, "end": 949.16, "word": " example,", "probability": 0.93115234375}, {"start": 949.16, "end": 949.3, "word": " this", "probability": 0.7080078125}, {"start": 949.3, "end": 949.68, "word": " is", "probability": 0.77734375}, {"start": 949.68, "end": 949.84, "word": " the", "probability": 0.669921875}, {"start": 949.84, "end": 950.34, "word": " class", "probability": 0.89990234375}, {"start": 950.34, "end": 951.8, "word": " employee.", "probability": 0.50537109375}, {"start": 953.82, "end": 954.04, "word": " This", "probability": 0.23828125}, {"start": 954.04, "end": 954.04, "word": " is", "probability": 0.74169921875}, {"start": 954.04, "end": 954.16, "word": " how", "probability": 0.373046875}, {"start": 954.16, "end": 954.22, "word": " you", "probability": 0.623046875}, {"start": 954.22, "end": 954.52, "word": " imagine", "probability": 0.63525390625}, {"start": 954.52, "end": 954.66, "word": " the", "probability": 0.85498046875}, {"start": 954.66, "end": 954.92, "word": " code.", "probability": 0.93896484375}, {"start": 955.36, "end": 955.66, "word": " If", "probability": 0.896484375}, {"start": 955.66, "end": 955.72, "word": " you", "probability": 0.91552734375}, {"start": 955.72, "end": 955.96, "word": " open", "probability": 0.86474609375}, {"start": 955.96, "end": 956.28, "word": " it,", "probability": 0.876953125}, {"start": 956.86, "end": 956.94, "word": " you", "probability": 0.91748046875}, {"start": 956.94, "end": 957.06, "word": " will", "probability": 0.75390625}, {"start": 957.06, "end": 957.28, "word": " find", "probability": 0.76708984375}, {"start": 957.28, "end": 957.82, "word": " here", "probability": 0.1422119140625}, {"start": 957.82, "end": 958.02, "word": " for", "probability": 0.35595703125}, {"start": 958.02, "end": 958.2, "word": " example", "probability": 0.96826171875}, {"start": 958.2, "end": 958.74, "word": " employee.", "probability": 0.58642578125}, {"start": 960.58, "end": 961.02, "word": " E", "probability": 0.6962890625}, {"start": 961.02, "end": 961.2, "word": " for", "probability": 0.81640625}, {"start": 961.2, "end": 961.36, "word": " example.", "probability": 0.9677734375}], "temperature": 1.0}, {"id": 40, "seek": 99053, "start": 962.55, "end": 990.53, "text": " And they will ask, why did the class use objects from another class? Where did this happen to us? For example, an employee with a manager Yes, exactly. For example, it could be a class employee. Who is his manager? What kind of manager is he? Employee Another example here, the course has prerequisites in it", "tokens": [400, 436, 486, 1029, 11, 983, 630, 264, 1508, 764, 6565, 490, 1071, 1508, 30, 2305, 630, 341, 1051, 281, 505, 30, 1171, 1365, 11, 364, 10738, 365, 257, 6598, 1079, 11, 2293, 13, 1171, 1365, 11, 309, 727, 312, 257, 1508, 10738, 13, 2102, 307, 702, 6598, 30, 708, 733, 295, 6598, 307, 415, 30, 26878, 1653, 3996, 1365, 510, 11, 264, 1164, 575, 38333, 15398, 3324, 294, 309], "avg_logprob": -0.5933098641919418, "compression_ratio": 1.6524064171122994, "no_speech_prob": 0.0, "words": [{"start": 962.55, "end": 962.75, "word": " And", "probability": 0.08184814453125}, {"start": 962.75, "end": 962.89, "word": " they", "probability": 0.27001953125}, {"start": 962.89, "end": 962.89, "word": " will", "probability": 0.310791015625}, {"start": 962.89, "end": 963.03, "word": " ask,", "probability": 0.5263671875}, {"start": 963.13, "end": 963.41, "word": " why", "probability": 0.56005859375}, {"start": 963.41, "end": 963.77, "word": " did", "probability": 0.28515625}, {"start": 963.77, "end": 963.85, "word": " the", "probability": 0.48388671875}, {"start": 963.85, "end": 964.07, "word": " class", "probability": 0.833984375}, {"start": 964.07, "end": 964.49, "word": " use", "probability": 0.55517578125}, {"start": 964.49, "end": 964.89, "word": " objects", "probability": 0.30859375}, {"start": 964.89, "end": 965.13, "word": " from", "probability": 0.7919921875}, {"start": 965.13, "end": 965.51, "word": " another", "probability": 0.76904296875}, {"start": 965.51, "end": 965.85, "word": " class?", "probability": 0.93994140625}, {"start": 966.07, "end": 966.19, "word": " Where", "probability": 0.2568359375}, {"start": 966.19, "end": 966.27, "word": " did", "probability": 0.84130859375}, {"start": 966.27, "end": 966.43, "word": " this", "probability": 0.445068359375}, {"start": 966.43, "end": 966.63, "word": " happen", "probability": 0.344482421875}, {"start": 966.63, "end": 966.87, "word": " to", "probability": 0.455078125}, {"start": 966.87, "end": 967.01, "word": " us?", "probability": 0.927734375}, {"start": 967.19, "end": 967.67, "word": " For", "probability": 0.242431640625}, {"start": 967.67, "end": 970.57, "word": " example,", "probability": 0.9072265625}, {"start": 970.91, "end": 970.91, "word": " an", "probability": 0.30859375}, {"start": 970.91, "end": 970.91, "word": " employee", "probability": 0.76025390625}, {"start": 970.91, "end": 971.11, "word": " with", "probability": 0.5078125}, {"start": 971.11, "end": 971.43, "word": " a", "probability": 0.52587890625}, {"start": 971.43, "end": 971.51, "word": " manager", "probability": 0.7509765625}, {"start": 971.51, "end": 972.79, "word": " Yes,", "probability": 0.1495361328125}, {"start": 972.95, "end": 973.21, "word": " exactly.", "probability": 0.73876953125}, {"start": 973.43, "end": 973.93, "word": " For", "probability": 0.658203125}, {"start": 973.93, "end": 974.15, "word": " example,", "probability": 0.94677734375}, {"start": 974.23, "end": 974.29, "word": " it", "probability": 0.426513671875}, {"start": 974.29, "end": 974.45, "word": " could", "probability": 0.428466796875}, {"start": 974.45, "end": 974.71, "word": " be", "probability": 0.916015625}, {"start": 974.71, "end": 974.85, "word": " a", "probability": 0.78369140625}, {"start": 974.85, "end": 975.11, "word": " class", "probability": 0.9560546875}, {"start": 975.11, "end": 975.57, "word": " employee.", "probability": 0.87890625}, {"start": 975.83, "end": 976.09, "word": " Who", "probability": 0.72607421875}, {"start": 976.09, "end": 976.21, "word": " is", "probability": 0.89306640625}, {"start": 976.21, "end": 976.25, "word": " his", "probability": 0.366455078125}, {"start": 976.25, "end": 976.61, "word": " manager?", "probability": 0.87548828125}, {"start": 977.69, "end": 978.21, "word": " What", "probability": 0.295166015625}, {"start": 978.21, "end": 978.35, "word": " kind", "probability": 0.2388916015625}, {"start": 978.35, "end": 978.35, "word": " of", "probability": 0.84326171875}, {"start": 978.35, "end": 978.69, "word": " manager", "probability": 0.94091796875}, {"start": 978.69, "end": 978.85, "word": " is", "probability": 0.80322265625}, {"start": 978.85, "end": 978.85, "word": " he?", "probability": 0.74462890625}, {"start": 981.05, "end": 981.57, "word": " Employee", "probability": 0.805908203125}, {"start": 981.57, "end": 982.07, "word": " Another", "probability": 0.350341796875}, {"start": 982.07, "end": 982.53, "word": " example", "probability": 0.9697265625}, {"start": 982.53, "end": 982.93, "word": " here,", "probability": 0.444091796875}, {"start": 982.93, "end": 983.09, "word": " the", "probability": 0.6171875}, {"start": 983.09, "end": 983.47, "word": " course", "probability": 0.9345703125}, {"start": 983.47, "end": 986.63, "word": " has", "probability": 0.50390625}, {"start": 986.63, "end": 990.53, "word": " prerequisites", "probability": 0.7181803385416666}, {"start": 990.53, "end": 990.53, "word": " in", "probability": 0.403076171875}, {"start": 990.53, "end": 990.53, "word": " it", "probability": 0.86376953125}], "temperature": 1.0}, {"id": 41, "seek": 101416, "start": 991.08, "end": 1014.16, "text": "The requirements of the course. This is the class course. It has a list of course. What are the requirements of the course? What are the requirements of the course? In the data structure, when you create a linked list or tree, the node itself has children and parent. The parent node and the children are also nodes. This is the relationship between the class and the child.", "tokens": [2278, 7728, 295, 264, 1164, 13, 639, 307, 264, 1508, 1164, 13, 467, 575, 257, 1329, 295, 1164, 13, 708, 366, 264, 7728, 295, 264, 1164, 30, 708, 366, 264, 7728, 295, 264, 1164, 30, 682, 264, 1412, 3877, 11, 562, 291, 1884, 257, 9408, 1329, 420, 4230, 11, 264, 9984, 2564, 575, 2227, 293, 2596, 13, 440, 2596, 9984, 293, 264, 2227, 366, 611, 13891, 13, 639, 307, 264, 2480, 1296, 264, 1508, 293, 264, 1440, 13], "avg_logprob": -0.5304588833941689, "compression_ratio": 2.0437158469945356, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 991.08, "end": 991.28, "word": "The", "probability": 0.132080078125}, {"start": 991.28, "end": 991.56, "word": " requirements", "probability": 0.4521484375}, {"start": 991.56, "end": 991.82, "word": " of", "probability": 0.85302734375}, {"start": 991.82, "end": 991.9, "word": " the", "probability": 0.7734375}, {"start": 991.9, "end": 992.16, "word": " course.", "probability": 0.9462890625}, {"start": 992.52, "end": 992.76, "word": " This", "probability": 0.447265625}, {"start": 992.76, "end": 992.82, "word": " is", "probability": 0.82470703125}, {"start": 992.82, "end": 992.86, "word": " the", "probability": 0.6611328125}, {"start": 992.86, "end": 993.14, "word": " class", "probability": 0.890625}, {"start": 993.14, "end": 993.44, "word": " course.", "probability": 0.92138671875}, {"start": 993.56, "end": 993.58, "word": " It", "probability": 0.35986328125}, {"start": 993.58, "end": 993.64, "word": " has", "probability": 0.591796875}, {"start": 993.64, "end": 994.0, "word": " a", "probability": 0.7822265625}, {"start": 994.0, "end": 994.2, "word": " list", "probability": 0.88134765625}, {"start": 994.2, "end": 994.38, "word": " of", "probability": 0.93359375}, {"start": 994.38, "end": 994.62, "word": " course.", "probability": 0.51123046875}, {"start": 994.64, "end": 994.78, "word": " What", "probability": 0.56982421875}, {"start": 994.78, "end": 995.12, "word": " are", "probability": 0.452880859375}, {"start": 995.12, "end": 995.22, "word": " the", "probability": 0.83203125}, {"start": 995.22, "end": 995.66, "word": " requirements", "probability": 0.72021484375}, {"start": 995.66, "end": 995.98, "word": " of", "probability": 0.75390625}, {"start": 995.98, "end": 996.12, "word": " the", "probability": 0.62451171875}, {"start": 996.12, "end": 996.12, "word": " course?", "probability": 0.93701171875}, {"start": 996.42, "end": 996.68, "word": " What", "probability": 0.22119140625}, {"start": 996.68, "end": 996.76, "word": " are", "probability": 0.58837890625}, {"start": 996.76, "end": 996.88, "word": " the", "probability": 0.69580078125}, {"start": 996.88, "end": 997.32, "word": " requirements", "probability": 0.841796875}, {"start": 997.32, "end": 997.54, "word": " of", "probability": 0.779296875}, {"start": 997.54, "end": 997.56, "word": " the", "probability": 0.54150390625}, {"start": 997.56, "end": 997.74, "word": " course?", "probability": 0.84326171875}, {"start": 999.3, "end": 999.78, "word": " In", "probability": 0.65673828125}, {"start": 999.78, "end": 999.88, "word": " the", "probability": 0.62841796875}, {"start": 999.88, "end": 1000.04, "word": " data", "probability": 0.78076171875}, {"start": 1000.04, "end": 1000.46, "word": " structure,", "probability": 0.88037109375}, {"start": 1000.6, "end": 1000.68, "word": " when", "probability": 0.82080078125}, {"start": 1000.68, "end": 1000.82, "word": " you", "probability": 0.923828125}, {"start": 1000.82, "end": 1000.96, "word": " create", "probability": 0.372314453125}, {"start": 1000.96, "end": 1001.06, "word": " a", "probability": 0.89599609375}, {"start": 1001.06, "end": 1001.24, "word": " linked", "probability": 0.853515625}, {"start": 1001.24, "end": 1001.68, "word": " list", "probability": 0.93212890625}, {"start": 1001.68, "end": 1002.5, "word": " or", "probability": 0.60205078125}, {"start": 1002.5, "end": 1002.86, "word": " tree,", "probability": 0.6904296875}, {"start": 1003.46, "end": 1003.84, "word": " the", "probability": 0.75439453125}, {"start": 1003.84, "end": 1004.02, "word": " node", "probability": 0.71728515625}, {"start": 1004.02, "end": 1004.54, "word": " itself", "probability": 0.595703125}, {"start": 1004.54, "end": 1006.4, "word": " has", "probability": 0.7578125}, {"start": 1006.4, "end": 1006.82, "word": " children", "probability": 0.7763671875}, {"start": 1006.82, "end": 1007.02, "word": " and", "probability": 0.87548828125}, {"start": 1007.02, "end": 1007.6, "word": " parent.", "probability": 0.5068359375}, {"start": 1008.12, "end": 1008.48, "word": " The", "probability": 0.343017578125}, {"start": 1008.48, "end": 1008.8, "word": " parent", "probability": 0.92236328125}, {"start": 1008.8, "end": 1009.2, "word": " node", "probability": 0.69384765625}, {"start": 1009.2, "end": 1009.84, "word": " and", "probability": 0.6435546875}, {"start": 1009.84, "end": 1009.9, "word": " the", "probability": 0.36572265625}, {"start": 1009.9, "end": 1010.14, "word": " children", "probability": 0.68017578125}, {"start": 1010.14, "end": 1010.34, "word": " are", "probability": 0.53271484375}, {"start": 1010.34, "end": 1010.52, "word": " also", "probability": 0.3828125}, {"start": 1010.52, "end": 1010.76, "word": " nodes.", "probability": 0.88232421875}, {"start": 1011.74, "end": 1011.92, "word": " This", "probability": 0.28076171875}, {"start": 1011.92, "end": 1012.0, "word": " is", "probability": 0.79345703125}, {"start": 1012.0, "end": 1012.08, "word": " the", "probability": 0.330322265625}, {"start": 1012.08, "end": 1012.34, "word": " relationship", "probability": 0.6787109375}, {"start": 1012.34, "end": 1012.88, "word": " between", "probability": 0.45361328125}, {"start": 1012.88, "end": 1013.04, "word": " the", "probability": 0.25537109375}, {"start": 1013.04, "end": 1013.16, "word": " class", "probability": 0.346435546875}, {"start": 1013.16, "end": 1013.26, "word": " and", "probability": 0.783203125}, {"start": 1013.26, "end": 1013.6, "word": " the", "probability": 0.6533203125}, {"start": 1013.6, "end": 1014.16, "word": " child.", "probability": 0.20849609375}], "temperature": 1.0}, {"id": 42, "seek": 104123, "start": 1018.49, "end": 1041.23, "text": "because if there are numbers in it, it will tell you to use one number or more. For example, in this course, as long as there is an arrow, it means that there are objects inside the course called course. What is their number? From zero to three. You understand that this is a list of courses. This is a list or array. This is the same thing with the employee.", "tokens": [17566, 498, 456, 366, 3547, 294, 309, 11, 309, 486, 980, 291, 281, 764, 472, 1230, 420, 544, 13, 1171, 1365, 11, 294, 341, 1164, 11, 382, 938, 382, 456, 307, 364, 11610, 11, 309, 1355, 300, 456, 366, 6565, 1854, 264, 1164, 1219, 1164, 13, 708, 307, 641, 1230, 30, 3358, 4018, 281, 1045, 13, 509, 1223, 300, 341, 307, 257, 1329, 295, 7712, 13, 639, 307, 257, 1329, 420, 10225, 13, 639, 307, 264, 912, 551, 365, 264, 10738, 13], "avg_logprob": -0.5485692986522812, "compression_ratio": 1.7095238095238094, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 1018.49, "end": 1018.79, "word": "because", "probability": 0.328125}, {"start": 1018.79, "end": 1019.01, "word": " if", "probability": 0.89404296875}, {"start": 1019.01, "end": 1019.25, "word": " there", "probability": 0.78515625}, {"start": 1019.25, "end": 1019.25, "word": " are", "probability": 0.66162109375}, {"start": 1019.25, "end": 1019.81, "word": " numbers", "probability": 0.7919921875}, {"start": 1019.81, "end": 1019.97, "word": " in", "probability": 0.1387939453125}, {"start": 1019.97, "end": 1020.13, "word": " it,", "probability": 0.32275390625}, {"start": 1020.13, "end": 1020.47, "word": " it", "probability": 0.5107421875}, {"start": 1020.47, "end": 1020.73, "word": " will", "probability": 0.2939453125}, {"start": 1020.73, "end": 1020.91, "word": " tell", "probability": 0.2802734375}, {"start": 1020.91, "end": 1021.05, "word": " you", "probability": 0.71728515625}, {"start": 1021.05, "end": 1021.25, "word": " to", "probability": 0.2296142578125}, {"start": 1021.25, "end": 1021.51, "word": " use", "probability": 0.8583984375}, {"start": 1021.51, "end": 1021.91, "word": " one", "probability": 0.63525390625}, {"start": 1021.91, "end": 1021.91, "word": " number", "probability": 0.219482421875}, {"start": 1021.91, "end": 1022.11, "word": " or", "probability": 0.79150390625}, {"start": 1022.11, "end": 1023.23, "word": " more.", "probability": 0.7158203125}, {"start": 1023.71, "end": 1024.11, "word": " For", "probability": 0.229736328125}, {"start": 1024.11, "end": 1024.57, "word": " example,", "probability": 0.91943359375}, {"start": 1024.71, "end": 1024.75, "word": " in", "probability": 0.1641845703125}, {"start": 1024.75, "end": 1024.79, "word": " this", "probability": 0.8095703125}, {"start": 1024.79, "end": 1025.15, "word": " course,", "probability": 0.7001953125}, {"start": 1025.29, "end": 1026.29, "word": " as", "probability": 0.275390625}, {"start": 1026.29, "end": 1026.73, "word": " long", "probability": 0.79736328125}, {"start": 1026.73, "end": 1026.87, "word": " as", "probability": 0.95849609375}, {"start": 1026.87, "end": 1026.87, "word": " there", "probability": 0.83203125}, {"start": 1026.87, "end": 1026.91, "word": " is", "probability": 0.8154296875}, {"start": 1026.91, "end": 1027.13, "word": " an", "probability": 0.32958984375}, {"start": 1027.13, "end": 1027.15, "word": " arrow,", "probability": 0.88818359375}, {"start": 1027.29, "end": 1027.29, "word": " it", "probability": 0.595703125}, {"start": 1027.29, "end": 1027.67, "word": " means", "probability": 0.81494140625}, {"start": 1027.67, "end": 1028.01, "word": " that", "probability": 0.73828125}, {"start": 1028.01, "end": 1028.55, "word": " there", "probability": 0.5322265625}, {"start": 1028.55, "end": 1029.89, "word": " are", "probability": 0.7099609375}, {"start": 1029.89, "end": 1030.23, "word": " objects", "probability": 0.80419921875}, {"start": 1030.23, "end": 1030.33, "word": " inside", "probability": 0.32763671875}, {"start": 1030.33, "end": 1030.33, "word": " the", "probability": 0.73681640625}, {"start": 1030.33, "end": 1030.33, "word": " course", "probability": 0.89453125}, {"start": 1030.33, "end": 1030.55, "word": " called", "probability": 0.17919921875}, {"start": 1030.55, "end": 1031.75, "word": " course.", "probability": 0.81005859375}, {"start": 1032.37, "end": 1032.79, "word": " What", "probability": 0.2783203125}, {"start": 1032.79, "end": 1032.79, "word": " is", "probability": 0.736328125}, {"start": 1032.79, "end": 1032.93, "word": " their", "probability": 0.70703125}, {"start": 1032.93, "end": 1033.17, "word": " number?", "probability": 0.9150390625}, {"start": 1033.71, "end": 1034.03, "word": " From", "probability": 0.296875}, {"start": 1034.03, "end": 1034.21, "word": " zero", "probability": 0.471435546875}, {"start": 1034.21, "end": 1034.41, "word": " to", "probability": 0.95556640625}, {"start": 1034.41, "end": 1034.47, "word": " three.", "probability": 0.82861328125}, {"start": 1034.51, "end": 1034.65, "word": " You", "probability": 0.37255859375}, {"start": 1034.65, "end": 1034.77, "word": " understand", "probability": 0.4541015625}, {"start": 1034.77, "end": 1034.95, "word": " that", "probability": 0.4833984375}, {"start": 1034.95, "end": 1035.15, "word": " this", "probability": 0.6552734375}, {"start": 1035.15, "end": 1035.31, "word": " is", "probability": 0.8935546875}, {"start": 1035.31, "end": 1035.59, "word": " a", "probability": 0.9111328125}, {"start": 1035.59, "end": 1035.87, "word": " list", "probability": 0.9228515625}, {"start": 1035.87, "end": 1036.05, "word": " of", "probability": 0.8701171875}, {"start": 1036.05, "end": 1036.35, "word": " courses.", "probability": 0.51220703125}, {"start": 1037.05, "end": 1037.19, "word": " This", "probability": 0.55810546875}, {"start": 1037.19, "end": 1037.25, "word": " is", "probability": 0.89599609375}, {"start": 1037.25, "end": 1037.31, "word": " a", "probability": 0.5673828125}, {"start": 1037.31, "end": 1037.49, "word": " list", "probability": 0.90673828125}, {"start": 1037.49, "end": 1037.67, "word": " or", "probability": 0.904296875}, {"start": 1037.67, "end": 1037.99, "word": " array.", "probability": 0.69970703125}, {"start": 1039.57, "end": 1039.75, "word": " This", "probability": 0.5263671875}, {"start": 1039.75, "end": 1039.83, "word": " is", "probability": 0.91650390625}, {"start": 1039.83, "end": 1039.95, "word": " the", "probability": 0.89111328125}, {"start": 1039.95, "end": 1039.99, "word": " same", "probability": 0.87548828125}, {"start": 1039.99, "end": 1040.37, "word": " thing", "probability": 0.7431640625}, {"start": 1040.37, "end": 1040.83, "word": " with", "probability": 0.1988525390625}, {"start": 1040.83, "end": 1040.89, "word": " the", "probability": 0.4453125}, {"start": 1040.89, "end": 1041.23, "word": " employee.", "probability": 0.7099609375}], "temperature": 1.0}, {"id": 43, "seek": 106889, "start": 1042.69, "end": 1068.89, "text": "Less of employees in it. Anyway, self-association is also part of the relationship of association. Until now, we have been working on the relationship of association. Okay, we are still working on the relationship of association, that an object uses another object from another class. I say that the relationship of association can also be of two types. It can be the relationship of aggregation or composition.", "tokens": [43, 442, 295, 6619, 294, 309, 13, 5684, 11, 2698, 12, 49146, 399, 307, 611, 644, 295, 264, 2480, 295, 14598, 13, 9088, 586, 11, 321, 362, 668, 1364, 322, 264, 2480, 295, 14598, 13, 1033, 11, 321, 366, 920, 1364, 322, 264, 2480, 295, 14598, 11, 300, 364, 2657, 4960, 1071, 2657, 490, 1071, 1508, 13, 286, 584, 300, 264, 2480, 295, 14598, 393, 611, 312, 295, 732, 3467, 13, 467, 393, 312, 264, 2480, 295, 16743, 399, 420, 12686, 13], "avg_logprob": -0.4623493983084897, "compression_ratio": 2.0969387755102042, "no_speech_prob": 2.9206275939941406e-06, "words": [{"start": 1042.69, "end": 1043.03, "word": "Less", "probability": 0.594482421875}, {"start": 1043.03, "end": 1043.21, "word": " of", "probability": 0.91064453125}, {"start": 1043.21, "end": 1043.65, "word": " employees", "probability": 0.57568359375}, {"start": 1043.65, "end": 1044.07, "word": " in", "probability": 0.146728515625}, {"start": 1044.07, "end": 1044.31, "word": " it.", "probability": 0.29931640625}, {"start": 1044.53, "end": 1044.79, "word": " Anyway,", "probability": 0.241455078125}, {"start": 1045.33, "end": 1046.99, "word": " self", "probability": 0.350341796875}, {"start": 1046.99, "end": 1047.65, "word": "-association", "probability": 0.80712890625}, {"start": 1047.65, "end": 1047.87, "word": " is", "probability": 0.81494140625}, {"start": 1047.87, "end": 1048.41, "word": " also", "probability": 0.351318359375}, {"start": 1048.41, "end": 1048.43, "word": " part", "probability": 0.330810546875}, {"start": 1048.43, "end": 1048.51, "word": " of", "probability": 0.970703125}, {"start": 1048.51, "end": 1048.59, "word": " the", "probability": 0.42041015625}, {"start": 1048.59, "end": 1048.81, "word": " relationship", "probability": 0.445068359375}, {"start": 1048.81, "end": 1048.91, "word": " of", "probability": 0.671875}, {"start": 1048.91, "end": 1049.37, "word": " association.", "probability": 0.8544921875}, {"start": 1049.53, "end": 1049.61, "word": " Until", "probability": 0.1864013671875}, {"start": 1049.61, "end": 1049.91, "word": " now,", "probability": 0.91552734375}, {"start": 1049.95, "end": 1050.05, "word": " we", "probability": 0.9375}, {"start": 1050.05, "end": 1050.13, "word": " have", "probability": 0.342041015625}, {"start": 1050.13, "end": 1050.15, "word": " been", "probability": 0.6484375}, {"start": 1050.15, "end": 1050.39, "word": " working", "probability": 0.8447265625}, {"start": 1050.39, "end": 1051.17, "word": " on", "probability": 0.476806640625}, {"start": 1051.17, "end": 1051.23, "word": " the", "probability": 0.62744140625}, {"start": 1051.23, "end": 1051.43, "word": " relationship", "probability": 0.85205078125}, {"start": 1051.43, "end": 1051.51, "word": " of", "probability": 0.9375}, {"start": 1051.51, "end": 1052.05, "word": " association.", "probability": 0.92919921875}, {"start": 1055.27, "end": 1055.65, "word": " Okay,", "probability": 0.2498779296875}, {"start": 1055.89, "end": 1056.09, "word": " we", "probability": 0.81689453125}, {"start": 1056.09, "end": 1056.37, "word": " are", "probability": 0.751953125}, {"start": 1056.37, "end": 1056.37, "word": " still", "probability": 0.71142578125}, {"start": 1056.37, "end": 1056.71, "word": " working", "probability": 0.8837890625}, {"start": 1056.71, "end": 1057.15, "word": " on", "probability": 0.89404296875}, {"start": 1057.15, "end": 1057.25, "word": " the", "probability": 0.86669921875}, {"start": 1057.25, "end": 1057.45, "word": " relationship", "probability": 0.8623046875}, {"start": 1057.45, "end": 1057.57, "word": " of", "probability": 0.96044921875}, {"start": 1057.57, "end": 1058.11, "word": " association,", "probability": 0.91748046875}, {"start": 1058.25, "end": 1058.39, "word": " that", "probability": 0.57275390625}, {"start": 1058.39, "end": 1058.53, "word": " an", "probability": 0.42529296875}, {"start": 1058.53, "end": 1058.79, "word": " object", "probability": 0.982421875}, {"start": 1058.79, "end": 1059.17, "word": " uses", "probability": 0.591796875}, {"start": 1059.17, "end": 1059.47, "word": " another", "probability": 0.53662109375}, {"start": 1059.47, "end": 1059.63, "word": " object", "probability": 0.98193359375}, {"start": 1059.63, "end": 1059.77, "word": " from", "probability": 0.70556640625}, {"start": 1059.77, "end": 1059.87, "word": " another", "probability": 0.4990234375}, {"start": 1059.87, "end": 1060.85, "word": " class.", "probability": 0.95166015625}, {"start": 1061.29, "end": 1061.37, "word": " I", "probability": 0.42724609375}, {"start": 1061.37, "end": 1061.51, "word": " say", "probability": 0.408447265625}, {"start": 1061.51, "end": 1061.59, "word": " that", "probability": 0.60107421875}, {"start": 1061.59, "end": 1061.63, "word": " the", "probability": 0.84716796875}, {"start": 1061.63, "end": 1061.85, "word": " relationship", "probability": 0.87939453125}, {"start": 1061.85, "end": 1061.97, "word": " of", "probability": 0.95703125}, {"start": 1061.97, "end": 1062.47, "word": " association", "probability": 0.90673828125}, {"start": 1062.47, "end": 1063.05, "word": " can", "probability": 0.7412109375}, {"start": 1063.05, "end": 1063.23, "word": " also", "probability": 0.430908203125}, {"start": 1063.23, "end": 1063.37, "word": " be", "probability": 0.876953125}, {"start": 1063.37, "end": 1063.47, "word": " of", "probability": 0.66064453125}, {"start": 1063.47, "end": 1063.75, "word": " two", "probability": 0.90673828125}, {"start": 1063.75, "end": 1063.75, "word": " types.", "probability": 0.56884765625}, {"start": 1064.43, "end": 1064.63, "word": " It", "probability": 0.75537109375}, {"start": 1064.63, "end": 1064.79, "word": " can", "probability": 0.79541015625}, {"start": 1064.79, "end": 1064.97, "word": " be", "probability": 0.9267578125}, {"start": 1064.97, "end": 1065.07, "word": " the", "probability": 0.478759765625}, {"start": 1065.07, "end": 1065.29, "word": " relationship", "probability": 0.79541015625}, {"start": 1065.29, "end": 1065.43, "word": " of", "probability": 0.94384765625}, {"start": 1065.43, "end": 1066.15, "word": " aggregation", "probability": 0.94970703125}, {"start": 1066.15, "end": 1067.17, "word": " or", "probability": 0.39453125}, {"start": 1067.17, "end": 1068.89, "word": " composition.", "probability": 0.53271484375}], "temperature": 1.0}, {"id": 44, "seek": 109835, "start": 1069.84, "end": 1098.36, "text": " And it remains an association What separates them from each other? What is the word aggregate? Tajmiyya Tajmiyya means that there are things that are ready and I just take them and collect them In short, did you find this example? Look at it with me I always understand the relationship of association, why? Because the car has two objects inside it, from whom? This is an engine and this is what? Transmission So I always understand that I have a car and I have here", "tokens": [400, 309, 7023, 364, 14598, 708, 34149, 552, 490, 1184, 661, 30, 708, 307, 264, 1349, 26118, 30, 314, 1805, 3057, 88, 3016, 314, 1805, 3057, 88, 3016, 1355, 300, 456, 366, 721, 300, 366, 1919, 293, 286, 445, 747, 552, 293, 2500, 552, 682, 2099, 11, 630, 291, 915, 341, 1365, 30, 2053, 412, 309, 365, 385, 286, 1009, 1223, 264, 2480, 295, 14598, 11, 983, 30, 1436, 264, 1032, 575, 732, 6565, 1854, 309, 11, 490, 7101, 30, 639, 307, 364, 2848, 293, 341, 307, 437, 30, 6531, 29797, 407, 286, 1009, 1223, 300, 286, 362, 257, 1032, 293, 286, 362, 510], "avg_logprob": -0.5589285487220401, "compression_ratio": 1.7205882352941178, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 1069.84, "end": 1070.08, "word": " And", "probability": 0.09295654296875}, {"start": 1070.08, "end": 1070.2, "word": " it", "probability": 0.6572265625}, {"start": 1070.2, "end": 1070.38, "word": " remains", "probability": 0.352294921875}, {"start": 1070.38, "end": 1070.72, "word": " an", "probability": 0.32763671875}, {"start": 1070.72, "end": 1071.64, "word": " association", "probability": 0.82568359375}, {"start": 1071.64, "end": 1072.34, "word": " What", "probability": 0.404296875}, {"start": 1072.34, "end": 1072.62, "word": " separates", "probability": 0.45703125}, {"start": 1072.62, "end": 1072.78, "word": " them", "probability": 0.80615234375}, {"start": 1072.78, "end": 1072.84, "word": " from", "probability": 0.68994140625}, {"start": 1072.84, "end": 1073.06, "word": " each", "probability": 0.9111328125}, {"start": 1073.06, "end": 1073.06, "word": " other?", "probability": 0.88134765625}, {"start": 1073.56, "end": 1073.7, "word": " What", "probability": 0.77099609375}, {"start": 1073.7, "end": 1073.82, "word": " is", "probability": 0.74853515625}, {"start": 1073.82, "end": 1073.9, "word": " the", "probability": 0.75}, {"start": 1073.9, "end": 1073.98, "word": " word", "probability": 0.6953125}, {"start": 1073.98, "end": 1074.42, "word": " aggregate?", "probability": 0.5205078125}, {"start": 1075.88, "end": 1076.32, "word": " Tajmiyya", "probability": 0.4272216796875}, {"start": 1076.32, "end": 1077.24, "word": " Tajmiyya", "probability": 0.77958984375}, {"start": 1077.24, "end": 1077.42, "word": " means", "probability": 0.8642578125}, {"start": 1077.42, "end": 1077.58, "word": " that", "probability": 0.375}, {"start": 1077.58, "end": 1077.7, "word": " there", "probability": 0.7705078125}, {"start": 1077.7, "end": 1077.74, "word": " are", "probability": 0.89697265625}, {"start": 1077.74, "end": 1077.98, "word": " things", "probability": 0.55419921875}, {"start": 1077.98, "end": 1078.44, "word": " that", "probability": 0.322509765625}, {"start": 1078.44, "end": 1078.44, "word": " are", "probability": 0.669921875}, {"start": 1078.44, "end": 1078.72, "word": " ready", "probability": 0.5166015625}, {"start": 1078.72, "end": 1078.8, "word": " and", "probability": 0.33740234375}, {"start": 1078.8, "end": 1078.94, "word": " I", "probability": 0.578125}, {"start": 1078.94, "end": 1079.06, "word": " just", "probability": 0.332763671875}, {"start": 1079.06, "end": 1079.16, "word": " take", "probability": 0.422607421875}, {"start": 1079.16, "end": 1079.74, "word": " them", "probability": 0.56005859375}, {"start": 1079.74, "end": 1080.72, "word": " and", "probability": 0.67724609375}, {"start": 1080.72, "end": 1081.2, "word": " collect", "probability": 0.443115234375}, {"start": 1081.2, "end": 1081.5, "word": " them", "probability": 0.79541015625}, {"start": 1081.5, "end": 1081.72, "word": " In", "probability": 0.472900390625}, {"start": 1081.72, "end": 1082.1, "word": " short,", "probability": 0.429931640625}, {"start": 1082.58, "end": 1083.1, "word": " did", "probability": 0.22802734375}, {"start": 1083.1, "end": 1083.3, "word": " you", "probability": 0.96728515625}, {"start": 1083.3, "end": 1083.3, "word": " find", "probability": 0.313232421875}, {"start": 1083.3, "end": 1083.54, "word": " this", "probability": 0.55224609375}, {"start": 1083.54, "end": 1083.9, "word": " example?", "probability": 0.88232421875}, {"start": 1084.1, "end": 1084.32, "word": " Look", "probability": 0.458740234375}, {"start": 1084.32, "end": 1084.44, "word": " at", "probability": 0.374755859375}, {"start": 1084.44, "end": 1084.5, "word": " it", "probability": 0.796875}, {"start": 1084.5, "end": 1084.5, "word": " with", "probability": 0.72509765625}, {"start": 1084.5, "end": 1084.72, "word": " me", "probability": 0.966796875}, {"start": 1084.72, "end": 1086.42, "word": " I", "probability": 0.7578125}, {"start": 1086.42, "end": 1086.42, "word": " always", "probability": 0.1912841796875}, {"start": 1086.42, "end": 1086.42, "word": " understand", "probability": 0.62890625}, {"start": 1086.42, "end": 1086.62, "word": " the", "probability": 0.541015625}, {"start": 1086.62, "end": 1086.86, "word": " relationship", "probability": 0.6787109375}, {"start": 1086.86, "end": 1086.98, "word": " of", "probability": 0.239990234375}, {"start": 1086.98, "end": 1087.46, "word": " association,", "probability": 0.71875}, {"start": 1087.72, "end": 1088.54, "word": " why?", "probability": 0.689453125}, {"start": 1088.58, "end": 1088.74, "word": " Because", "probability": 0.84423828125}, {"start": 1088.74, "end": 1088.9, "word": " the", "probability": 0.6201171875}, {"start": 1088.9, "end": 1089.14, "word": " car", "probability": 0.87939453125}, {"start": 1089.14, "end": 1089.32, "word": " has", "probability": 0.83935546875}, {"start": 1089.32, "end": 1089.88, "word": " two", "probability": 0.73828125}, {"start": 1089.88, "end": 1090.3, "word": " objects", "probability": 0.94287109375}, {"start": 1090.3, "end": 1090.3, "word": " inside", "probability": 0.78662109375}, {"start": 1090.3, "end": 1090.3, "word": " it,", "probability": 0.62646484375}, {"start": 1090.38, "end": 1090.44, "word": " from", "probability": 0.252197265625}, {"start": 1090.44, "end": 1090.7, "word": " whom?", "probability": 0.449462890625}, {"start": 1091.5, "end": 1091.7, "word": " This", "probability": 0.740234375}, {"start": 1091.7, "end": 1091.76, "word": " is", "probability": 0.697265625}, {"start": 1091.76, "end": 1091.88, "word": " an", "probability": 0.30859375}, {"start": 1091.88, "end": 1092.02, "word": " engine", "probability": 0.84814453125}, {"start": 1092.02, "end": 1092.16, "word": " and", "probability": 0.64208984375}, {"start": 1092.16, "end": 1092.3, "word": " this", "probability": 0.7099609375}, {"start": 1092.3, "end": 1092.36, "word": " is", "probability": 0.890625}, {"start": 1092.36, "end": 1092.54, "word": " what?", "probability": 0.340576171875}, {"start": 1093.66, "end": 1094.1, "word": " Transmission", "probability": 0.894775390625}, {"start": 1094.1, "end": 1094.48, "word": " So", "probability": 0.2459716796875}, {"start": 1094.48, "end": 1094.64, "word": " I", "probability": 0.779296875}, {"start": 1094.64, "end": 1094.7, "word": " always", "probability": 0.689453125}, {"start": 1094.7, "end": 1094.86, "word": " understand", "probability": 0.7490234375}, {"start": 1094.86, "end": 1095.46, "word": " that", "probability": 0.876953125}, {"start": 1095.46, "end": 1095.66, "word": " I", "probability": 0.76025390625}, {"start": 1095.66, "end": 1095.9, "word": " have", "probability": 0.93603515625}, {"start": 1095.9, "end": 1096.06, "word": " a", "probability": 0.900390625}, {"start": 1096.06, "end": 1096.34, "word": " car", "probability": 0.91748046875}, {"start": 1096.34, "end": 1097.74, "word": " and", "probability": 0.50927734375}, {"start": 1097.74, "end": 1097.92, "word": " I", "probability": 0.2298583984375}, {"start": 1097.92, "end": 1098.14, "word": " have", "probability": 0.92431640625}, {"start": 1098.14, "end": 1098.36, "word": " here", "probability": 0.37109375}], "temperature": 1.0}, {"id": 45, "seek": 112149, "start": 1099.73, "end": 1121.49, "text": " this is the engine and here is another class it is called transmission and there is an arrow like this and an arrow like this, right? there are objects of different sizes, okay? regardless of the number of objects, 3 or 4, this is related to what?", "tokens": [341, 307, 264, 2848, 293, 510, 307, 1071, 1508, 309, 307, 1219, 11574, 293, 456, 307, 364, 11610, 411, 341, 293, 364, 11610, 411, 341, 11, 558, 30, 456, 366, 6565, 295, 819, 11602, 11, 1392, 30, 10060, 295, 264, 1230, 295, 6565, 11, 805, 420, 1017, 11, 341, 307, 4077, 281, 437, 30], "avg_logprob": -0.7460227489471436, "compression_ratio": 1.6103896103896105, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1099.73, "end": 1100.01, "word": " this", "probability": 0.20654296875}, {"start": 1100.01, "end": 1100.03, "word": " is", "probability": 0.8583984375}, {"start": 1100.03, "end": 1100.15, "word": " the", "probability": 0.2076416015625}, {"start": 1100.15, "end": 1100.51, "word": " engine", "probability": 0.89892578125}, {"start": 1100.51, "end": 1102.39, "word": " and", "probability": 0.5322265625}, {"start": 1102.39, "end": 1102.87, "word": " here", "probability": 0.431396484375}, {"start": 1102.87, "end": 1103.01, "word": " is", "probability": 0.3037109375}, {"start": 1103.01, "end": 1103.23, "word": " another", "probability": 0.5751953125}, {"start": 1103.23, "end": 1103.59, "word": " class", "probability": 0.8603515625}, {"start": 1103.59, "end": 1106.33, "word": " it", "probability": 0.192626953125}, {"start": 1106.33, "end": 1106.43, "word": " is", "probability": 0.65380859375}, {"start": 1106.43, "end": 1106.65, "word": " called", "probability": 0.77099609375}, {"start": 1106.65, "end": 1107.87, "word": " transmission", "probability": 0.77099609375}, {"start": 1107.87, "end": 1111.49, "word": " and", "probability": 0.460205078125}, {"start": 1111.49, "end": 1111.87, "word": " there", "probability": 0.3818359375}, {"start": 1111.87, "end": 1111.93, "word": " is", "probability": 0.84619140625}, {"start": 1111.93, "end": 1112.09, "word": " an", "probability": 0.47509765625}, {"start": 1112.09, "end": 1112.21, "word": " arrow", "probability": 0.6748046875}, {"start": 1112.21, "end": 1112.39, "word": " like", "probability": 0.47802734375}, {"start": 1112.39, "end": 1112.89, "word": " this", "probability": 0.81640625}, {"start": 1112.89, "end": 1113.35, "word": " and", "probability": 0.8896484375}, {"start": 1113.35, "end": 1113.59, "word": " an", "probability": 0.162109375}, {"start": 1113.59, "end": 1113.59, "word": " arrow", "probability": 0.77197265625}, {"start": 1113.59, "end": 1113.83, "word": " like", "probability": 0.92138671875}, {"start": 1113.83, "end": 1114.19, "word": " this,", "probability": 0.7734375}, {"start": 1114.19, "end": 1114.51, "word": " right?", "probability": 0.50732421875}, {"start": 1115.63, "end": 1115.63, "word": " there", "probability": 0.08795166015625}, {"start": 1115.63, "end": 1115.95, "word": " are", "probability": 0.6298828125}, {"start": 1115.95, "end": 1116.19, "word": " objects", "probability": 0.48974609375}, {"start": 1116.19, "end": 1116.37, "word": " of", "probability": 0.2484130859375}, {"start": 1116.37, "end": 1116.77, "word": " different", "probability": 0.69140625}, {"start": 1116.77, "end": 1117.11, "word": " sizes,", "probability": 0.1258544921875}, {"start": 1117.47, "end": 1117.71, "word": " okay?", "probability": 0.1820068359375}, {"start": 1118.67, "end": 1119.13, "word": " regardless", "probability": 0.343994140625}, {"start": 1119.13, "end": 1119.39, "word": " of", "probability": 0.748046875}, {"start": 1119.39, "end": 1119.43, "word": " the", "probability": 0.40478515625}, {"start": 1119.43, "end": 1119.43, "word": " number", "probability": 0.327392578125}, {"start": 1119.43, "end": 1119.51, "word": " of", "probability": 0.56640625}, {"start": 1119.51, "end": 1119.77, "word": " objects,", "probability": 0.3388671875}, {"start": 1120.07, "end": 1120.07, "word": " 3", "probability": 0.24853515625}, {"start": 1120.07, "end": 1120.21, "word": " or", "probability": 0.5078125}, {"start": 1120.21, "end": 1120.45, "word": " 4,", "probability": 0.9921875}, {"start": 1120.51, "end": 1120.73, "word": " this", "probability": 0.2254638671875}, {"start": 1120.73, "end": 1120.79, "word": " is", "probability": 0.82421875}, {"start": 1120.79, "end": 1121.05, "word": " related", "probability": 0.375732421875}, {"start": 1121.05, "end": 1121.19, "word": " to", "probability": 0.96826171875}, {"start": 1121.19, "end": 1121.49, "word": " what?", "probability": 0.72900390625}], "temperature": 1.0}, {"id": 46, "seek": 114829, "start": 1122.75, "end": 1148.29, "text": "Association, that this person is using an object from the engine and that person is using an object from the transmission Ok, what is the relation between aggregation and aggregation? Aggregation says that these objects were created here or they came from outside What does it mean that they came from outside? It means that these engines and transmissions were created from the main and passed to the car through the constructor or set method", "tokens": [10884, 3276, 399, 11, 300, 341, 954, 307, 1228, 364, 2657, 490, 264, 2848, 293, 300, 954, 307, 1228, 364, 2657, 490, 264, 11574, 3477, 11, 437, 307, 264, 9721, 1296, 16743, 399, 293, 16743, 399, 30, 41512, 20167, 1619, 300, 613, 6565, 645, 2942, 510, 420, 436, 1361, 490, 2380, 708, 775, 309, 914, 300, 436, 1361, 490, 2380, 30, 467, 1355, 300, 613, 12982, 293, 7715, 7922, 645, 2942, 490, 264, 2135, 293, 4678, 281, 264, 1032, 807, 264, 47479, 420, 992, 3170], "avg_logprob": -0.5505087451879368, "compression_ratio": 2.050925925925926, "no_speech_prob": 1.1622905731201172e-05, "words": [{"start": 1122.75, "end": 1123.27, "word": "Association,", "probability": 0.6802978515625}, {"start": 1123.41, "end": 1123.83, "word": " that", "probability": 0.1492919921875}, {"start": 1123.83, "end": 1124.13, "word": " this", "probability": 0.3828125}, {"start": 1124.13, "end": 1124.19, "word": " person", "probability": 0.1583251953125}, {"start": 1124.19, "end": 1124.33, "word": " is", "probability": 0.2008056640625}, {"start": 1124.33, "end": 1124.53, "word": " using", "probability": 0.8994140625}, {"start": 1124.53, "end": 1124.69, "word": " an", "probability": 0.60400390625}, {"start": 1124.69, "end": 1124.87, "word": " object", "probability": 0.91357421875}, {"start": 1124.87, "end": 1125.01, "word": " from", "probability": 0.796875}, {"start": 1125.01, "end": 1125.11, "word": " the", "probability": 0.42431640625}, {"start": 1125.11, "end": 1125.31, "word": " engine", "probability": 0.8818359375}, {"start": 1125.31, "end": 1125.41, "word": " and", "probability": 0.705078125}, {"start": 1125.41, "end": 1125.51, "word": " that", "probability": 0.375244140625}, {"start": 1125.51, "end": 1125.51, "word": " person", "probability": 0.517578125}, {"start": 1125.51, "end": 1125.57, "word": " is", "probability": 0.837890625}, {"start": 1125.57, "end": 1125.75, "word": " using", "probability": 0.9345703125}, {"start": 1125.75, "end": 1125.93, "word": " an", "probability": 0.85498046875}, {"start": 1125.93, "end": 1126.05, "word": " object", "probability": 0.97119140625}, {"start": 1126.05, "end": 1126.35, "word": " from", "probability": 0.8701171875}, {"start": 1126.35, "end": 1127.37, "word": " the", "probability": 0.76318359375}, {"start": 1127.37, "end": 1127.83, "word": " transmission", "probability": 0.9365234375}, {"start": 1127.83, "end": 1128.55, "word": " Ok,", "probability": 0.2034912109375}, {"start": 1128.85, "end": 1129.51, "word": " what", "probability": 0.697265625}, {"start": 1129.51, "end": 1129.51, "word": " is", "probability": 0.75439453125}, {"start": 1129.51, "end": 1129.61, "word": " the", "probability": 0.8828125}, {"start": 1129.61, "end": 1129.69, "word": " relation", "probability": 0.307373046875}, {"start": 1129.69, "end": 1129.81, "word": " between", "probability": 0.5927734375}, {"start": 1129.81, "end": 1130.25, "word": " aggregation", "probability": 0.872802734375}, {"start": 1130.25, "end": 1130.39, "word": " and", "probability": 0.46142578125}, {"start": 1130.39, "end": 1130.75, "word": " aggregation?", "probability": 0.6605224609375}, {"start": 1130.83, "end": 1131.35, "word": " Aggregation", "probability": 0.87060546875}, {"start": 1131.35, "end": 1131.61, "word": " says", "probability": 0.18505859375}, {"start": 1131.61, "end": 1131.75, "word": " that", "probability": 0.42578125}, {"start": 1131.75, "end": 1132.07, "word": " these", "probability": 0.61181640625}, {"start": 1132.07, "end": 1132.65, "word": " objects", "probability": 0.9580078125}, {"start": 1132.65, "end": 1133.71, "word": " were", "probability": 0.57373046875}, {"start": 1133.71, "end": 1134.13, "word": " created", "probability": 0.435546875}, {"start": 1134.13, "end": 1134.51, "word": " here", "probability": 0.66650390625}, {"start": 1134.51, "end": 1134.75, "word": " or", "probability": 0.75634765625}, {"start": 1134.75, "end": 1134.85, "word": " they", "probability": 0.29833984375}, {"start": 1134.85, "end": 1134.99, "word": " came", "probability": 0.5390625}, {"start": 1134.99, "end": 1135.13, "word": " from", "probability": 0.849609375}, {"start": 1135.13, "end": 1135.39, "word": " outside", "probability": 0.77197265625}, {"start": 1135.39, "end": 1136.53, "word": " What", "probability": 0.25048828125}, {"start": 1136.53, "end": 1136.67, "word": " does", "probability": 0.328125}, {"start": 1136.67, "end": 1136.71, "word": " it", "probability": 0.58935546875}, {"start": 1136.71, "end": 1136.71, "word": " mean", "probability": 0.94970703125}, {"start": 1136.71, "end": 1136.75, "word": " that", "probability": 0.2496337890625}, {"start": 1136.75, "end": 1136.75, "word": " they", "probability": 0.5986328125}, {"start": 1136.75, "end": 1136.85, "word": " came", "probability": 0.80712890625}, {"start": 1136.85, "end": 1137.01, "word": " from", "probability": 0.87646484375}, {"start": 1137.01, "end": 1137.23, "word": " outside?", "probability": 0.8798828125}, {"start": 1137.53, "end": 1137.77, "word": " It", "probability": 0.386474609375}, {"start": 1137.77, "end": 1137.77, "word": " means", "probability": 0.89990234375}, {"start": 1137.77, "end": 1138.13, "word": " that", "probability": 0.90478515625}, {"start": 1138.13, "end": 1138.31, "word": " these", "probability": 0.59619140625}, {"start": 1138.31, "end": 1138.91, "word": " engines", "probability": 0.180419921875}, {"start": 1138.91, "end": 1139.37, "word": " and", "probability": 0.83349609375}, {"start": 1139.37, "end": 1140.07, "word": " transmissions", "probability": 0.748291015625}, {"start": 1140.07, "end": 1140.73, "word": " were", "probability": 0.67578125}, {"start": 1140.73, "end": 1141.03, "word": " created", "probability": 0.63330078125}, {"start": 1141.03, "end": 1141.31, "word": " from", "probability": 0.78515625}, {"start": 1141.31, "end": 1141.53, "word": " the", "probability": 0.62353515625}, {"start": 1141.53, "end": 1141.69, "word": " main", "probability": 0.5654296875}, {"start": 1141.69, "end": 1142.51, "word": " and", "probability": 0.27294921875}, {"start": 1142.51, "end": 1142.79, "word": " passed", "probability": 0.2386474609375}, {"start": 1142.79, "end": 1143.11, "word": " to", "probability": 0.4970703125}, {"start": 1143.11, "end": 1143.27, "word": " the", "probability": 0.8095703125}, {"start": 1143.27, "end": 1143.61, "word": " car", "probability": 0.796875}, {"start": 1143.61, "end": 1145.29, "word": " through", "probability": 0.6328125}, {"start": 1145.29, "end": 1145.57, "word": " the", "probability": 0.59619140625}, {"start": 1145.57, "end": 1146.05, "word": " constructor", "probability": 0.7470703125}, {"start": 1146.05, "end": 1146.45, "word": " or", "probability": 0.92822265625}, {"start": 1146.45, "end": 1147.91, "word": " set", "probability": 0.49169921875}, {"start": 1147.91, "end": 1148.29, "word": " method", "probability": 0.93505859375}], "temperature": 1.0}, {"id": 47, "seek": 117154, "start": 1149.08, "end": 1171.54, "text": " Are you with me or not, guys? For example, I came here. Look with me. What are the values of these references so far? None. Right or wrong? Because what is this? This is a constructor. A constructor is something that takes an object from the engine and an object from the transmission. To initialize whom?", "tokens": [2014, 291, 365, 385, 420, 406, 11, 1074, 30, 1171, 1365, 11, 286, 1361, 510, 13, 2053, 365, 385, 13, 708, 366, 264, 4190, 295, 613, 15400, 370, 1400, 30, 14492, 13, 1779, 420, 2085, 30, 1436, 437, 307, 341, 30, 639, 307, 257, 47479, 13, 316, 47479, 307, 746, 300, 2516, 364, 2657, 490, 264, 2848, 293, 364, 2657, 490, 264, 11574, 13, 1407, 5883, 1125, 7101, 30], "avg_logprob": -0.46473215690680914, "compression_ratio": 1.5073891625615763, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 1149.08, "end": 1149.3, "word": " Are", "probability": 0.1419677734375}, {"start": 1149.3, "end": 1149.3, "word": " you", "probability": 0.91162109375}, {"start": 1149.3, "end": 1149.34, "word": " with", "probability": 0.5556640625}, {"start": 1149.34, "end": 1149.44, "word": " me", "probability": 0.955078125}, {"start": 1149.44, "end": 1149.5, "word": " or", "probability": 0.4677734375}, {"start": 1149.5, "end": 1149.64, "word": " not,", "probability": 0.90576171875}, {"start": 1149.72, "end": 1149.92, "word": " guys?", "probability": 0.6767578125}, {"start": 1150.58, "end": 1150.98, "word": " For", "probability": 0.340087890625}, {"start": 1150.98, "end": 1151.24, "word": " example,", "probability": 0.8876953125}, {"start": 1151.92, "end": 1152.0, "word": " I", "probability": 0.1397705078125}, {"start": 1152.0, "end": 1152.24, "word": " came", "probability": 0.50048828125}, {"start": 1152.24, "end": 1152.62, "word": " here.", "probability": 0.81982421875}, {"start": 1152.8, "end": 1153.18, "word": " Look", "probability": 0.4599609375}, {"start": 1153.18, "end": 1153.34, "word": " with", "probability": 0.43896484375}, {"start": 1153.34, "end": 1153.54, "word": " me.", "probability": 0.96435546875}, {"start": 1155.76, "end": 1156.2, "word": " What", "probability": 0.250732421875}, {"start": 1156.2, "end": 1156.2, "word": " are", "probability": 0.54150390625}, {"start": 1156.2, "end": 1156.2, "word": " the", "probability": 0.7333984375}, {"start": 1156.2, "end": 1156.2, "word": " values", "probability": 0.77978515625}, {"start": 1156.2, "end": 1156.2, "word": " of", "probability": 0.7314453125}, {"start": 1156.2, "end": 1156.2, "word": " these", "probability": 0.4951171875}, {"start": 1156.2, "end": 1157.42, "word": " references", "probability": 0.7666015625}, {"start": 1157.42, "end": 1159.1, "word": " so", "probability": 0.276123046875}, {"start": 1159.1, "end": 1159.56, "word": " far?", "probability": 0.94287109375}, {"start": 1159.94, "end": 1160.26, "word": " None.", "probability": 0.73486328125}, {"start": 1160.62, "end": 1160.82, "word": " Right", "probability": 0.426025390625}, {"start": 1160.82, "end": 1160.98, "word": " or", "probability": 0.83544921875}, {"start": 1160.98, "end": 1161.08, "word": " wrong?", "probability": 0.55322265625}, {"start": 1161.46, "end": 1161.74, "word": " Because", "probability": 0.52783203125}, {"start": 1161.74, "end": 1161.98, "word": " what", "probability": 0.689453125}, {"start": 1161.98, "end": 1161.98, "word": " is", "probability": 0.8857421875}, {"start": 1161.98, "end": 1162.26, "word": " this?", "probability": 0.80712890625}, {"start": 1164.02, "end": 1164.46, "word": " This", "probability": 0.552734375}, {"start": 1164.46, "end": 1164.56, "word": " is", "probability": 0.90576171875}, {"start": 1164.56, "end": 1164.72, "word": " a", "probability": 0.58544921875}, {"start": 1164.72, "end": 1164.94, "word": " constructor.", "probability": 0.8447265625}, {"start": 1165.08, "end": 1165.2, "word": " A", "probability": 0.324951171875}, {"start": 1165.2, "end": 1165.54, "word": " constructor", "probability": 0.85888671875}, {"start": 1165.54, "end": 1165.72, "word": " is", "probability": 0.830078125}, {"start": 1165.72, "end": 1165.84, "word": " something", "probability": 0.72021484375}, {"start": 1165.84, "end": 1165.94, "word": " that", "probability": 0.81201171875}, {"start": 1165.94, "end": 1166.36, "word": " takes", "probability": 0.779296875}, {"start": 1166.36, "end": 1167.82, "word": " an", "probability": 0.5390625}, {"start": 1167.82, "end": 1168.06, "word": " object", "probability": 0.97021484375}, {"start": 1168.06, "end": 1168.18, "word": " from", "probability": 0.8740234375}, {"start": 1168.18, "end": 1168.28, "word": " the", "probability": 0.353515625}, {"start": 1168.28, "end": 1168.5, "word": " engine", "probability": 0.94384765625}, {"start": 1168.5, "end": 1168.64, "word": " and", "probability": 0.771484375}, {"start": 1168.64, "end": 1168.78, "word": " an", "probability": 0.587890625}, {"start": 1168.78, "end": 1168.92, "word": " object", "probability": 0.98291015625}, {"start": 1168.92, "end": 1169.22, "word": " from", "probability": 0.8896484375}, {"start": 1169.22, "end": 1169.7, "word": " the", "probability": 0.798828125}, {"start": 1169.7, "end": 1170.12, "word": " transmission.", "probability": 0.91845703125}, {"start": 1170.24, "end": 1170.42, "word": " To", "probability": 0.52392578125}, {"start": 1170.42, "end": 1171.26, "word": " initialize", "probability": 0.844482421875}, {"start": 1171.26, "end": 1171.54, "word": " whom?", "probability": 0.444580078125}], "temperature": 1.0}, {"id": 48, "seek": 119154, "start": 1172.9, "end": 1191.54, "text": "No, these two. So, was the engine and the transmission built inside the car or built outside? And they were trained to... Yes, they were built outside and they were trained. In this case, we say that the car is only for assembly. Okay? It also means that if this object dies,", "tokens": [4540, 11, 613, 732, 13, 407, 11, 390, 264, 2848, 293, 264, 11574, 3094, 1854, 264, 1032, 420, 3094, 2380, 30, 400, 436, 645, 8895, 281, 485, 1079, 11, 436, 645, 3094, 2380, 293, 436, 645, 8895, 13, 682, 341, 1389, 11, 321, 584, 300, 264, 1032, 307, 787, 337, 12103, 13, 1033, 30, 467, 611, 1355, 300, 498, 341, 2657, 2714, 11], "avg_logprob": -0.5888671707361937, "compression_ratio": 1.6566265060240963, "no_speech_prob": 7.408857345581055e-05, "words": [{"start": 1172.9, "end": 1173.12, "word": "No,", "probability": 0.2919921875}, {"start": 1173.14, "end": 1173.32, "word": " these", "probability": 0.318603515625}, {"start": 1173.32, "end": 1173.6, "word": " two.", "probability": 0.77880859375}, {"start": 1173.94, "end": 1174.46, "word": " So,", "probability": 0.17041015625}, {"start": 1174.6, "end": 1174.8, "word": " was", "probability": 0.2509765625}, {"start": 1174.8, "end": 1174.96, "word": " the", "probability": 0.81494140625}, {"start": 1174.96, "end": 1175.24, "word": " engine", "probability": 0.861328125}, {"start": 1175.24, "end": 1175.38, "word": " and", "probability": 0.89208984375}, {"start": 1175.38, "end": 1175.42, "word": " the", "probability": 0.3583984375}, {"start": 1175.42, "end": 1175.94, "word": " transmission", "probability": 0.9501953125}, {"start": 1175.94, "end": 1176.5, "word": " built", "probability": 0.364990234375}, {"start": 1176.5, "end": 1177.12, "word": " inside", "probability": 0.78271484375}, {"start": 1177.12, "end": 1177.36, "word": " the", "probability": 0.84619140625}, {"start": 1177.36, "end": 1177.64, "word": " car", "probability": 0.86328125}, {"start": 1177.64, "end": 1177.82, "word": " or", "probability": 0.70703125}, {"start": 1177.82, "end": 1178.44, "word": " built", "probability": 0.4150390625}, {"start": 1178.44, "end": 1178.8, "word": " outside?", "probability": 0.74072265625}, {"start": 1179.66, "end": 1180.18, "word": " And", "probability": 0.271484375}, {"start": 1180.18, "end": 1180.32, "word": " they", "probability": 0.16259765625}, {"start": 1180.32, "end": 1180.56, "word": " were", "probability": 0.5458984375}, {"start": 1180.56, "end": 1180.56, "word": " trained", "probability": 0.358154296875}, {"start": 1180.56, "end": 1181.36, "word": " to...", "probability": 0.22979736328125}, {"start": 1181.36, "end": 1181.48, "word": " Yes,", "probability": 0.257080078125}, {"start": 1182.88, "end": 1183.04, "word": " they", "probability": 0.3505859375}, {"start": 1183.04, "end": 1183.34, "word": " were", "probability": 0.865234375}, {"start": 1183.34, "end": 1183.34, "word": " built", "probability": 0.31884765625}, {"start": 1183.34, "end": 1183.7, "word": " outside", "probability": 0.748046875}, {"start": 1183.7, "end": 1183.96, "word": " and", "probability": 0.8134765625}, {"start": 1183.96, "end": 1184.04, "word": " they", "probability": 0.2034912109375}, {"start": 1184.04, "end": 1184.04, "word": " were", "probability": 0.7470703125}, {"start": 1184.04, "end": 1184.2, "word": " trained.", "probability": 0.7783203125}, {"start": 1184.62, "end": 1184.94, "word": " In", "probability": 0.72509765625}, {"start": 1184.94, "end": 1185.08, "word": " this", "probability": 0.8232421875}, {"start": 1185.08, "end": 1185.22, "word": " case,", "probability": 0.8759765625}, {"start": 1185.28, "end": 1185.4, "word": " we", "probability": 0.73828125}, {"start": 1185.4, "end": 1185.66, "word": " say", "probability": 0.424072265625}, {"start": 1185.66, "end": 1185.86, "word": " that", "probability": 0.87841796875}, {"start": 1185.86, "end": 1186.02, "word": " the", "probability": 0.81884765625}, {"start": 1186.02, "end": 1186.2, "word": " car", "probability": 0.89404296875}, {"start": 1186.2, "end": 1186.34, "word": " is", "probability": 0.26416015625}, {"start": 1186.34, "end": 1186.62, "word": " only", "probability": 0.60693359375}, {"start": 1186.62, "end": 1187.16, "word": " for", "probability": 0.52587890625}, {"start": 1187.16, "end": 1187.46, "word": " assembly.", "probability": 0.56884765625}, {"start": 1188.46, "end": 1188.66, "word": " Okay?", "probability": 0.326904296875}, {"start": 1189.36, "end": 1189.62, "word": " It", "probability": 0.6982421875}, {"start": 1189.62, "end": 1189.94, "word": " also", "probability": 0.7861328125}, {"start": 1189.94, "end": 1189.94, "word": " means", "probability": 0.9287109375}, {"start": 1189.94, "end": 1190.52, "word": " that", "probability": 0.904296875}, {"start": 1190.52, "end": 1190.7, "word": " if", "probability": 0.90771484375}, {"start": 1190.7, "end": 1191.18, "word": " this", "probability": 0.8359375}, {"start": 1191.18, "end": 1191.54, "word": " object", "probability": 0.97265625}, {"start": 1191.54, "end": 1191.54, "word": " dies,", "probability": 0.65283203125}], "temperature": 1.0}, {"id": 49, "seek": 122213, "start": 1193.03, "end": 1222.13, "text": " If you cancel the car, the engine and the transmission will still be there. So how will this code work? I will create an engine in the main. E is equal to new engine. Right? This is in the main. And I will create a transmission. T is equal to new transmission. And then I will create a car. C", "tokens": [759, 291, 10373, 264, 1032, 11, 264, 2848, 293, 264, 11574, 486, 920, 312, 456, 13, 407, 577, 486, 341, 3089, 589, 30, 286, 486, 1884, 364, 2848, 294, 264, 2135, 13, 462, 307, 2681, 281, 777, 2848, 13, 1779, 30, 639, 307, 294, 264, 2135, 13, 400, 286, 486, 1884, 257, 11574, 13, 314, 307, 2681, 281, 777, 11574, 13, 400, 550, 286, 486, 1884, 257, 1032, 13, 383], "avg_logprob": -0.4205545657117602, "compression_ratio": 1.83125, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 1193.03, "end": 1193.27, "word": " If", "probability": 0.37109375}, {"start": 1193.27, "end": 1193.37, "word": " you", "probability": 0.51416015625}, {"start": 1193.37, "end": 1193.55, "word": " cancel", "probability": 0.61962890625}, {"start": 1193.55, "end": 1193.77, "word": " the", "probability": 0.564453125}, {"start": 1193.77, "end": 1193.97, "word": " car,", "probability": 0.68994140625}, {"start": 1194.27, "end": 1195.21, "word": " the", "probability": 0.5810546875}, {"start": 1195.21, "end": 1195.45, "word": " engine", "probability": 0.79541015625}, {"start": 1195.45, "end": 1195.63, "word": " and", "probability": 0.8212890625}, {"start": 1195.63, "end": 1195.71, "word": " the", "probability": 0.435302734375}, {"start": 1195.71, "end": 1196.07, "word": " transmission", "probability": 0.9482421875}, {"start": 1196.07, "end": 1196.25, "word": " will", "probability": 0.56005859375}, {"start": 1196.25, "end": 1196.39, "word": " still", "probability": 0.1859130859375}, {"start": 1196.39, "end": 1197.03, "word": " be", "probability": 0.3916015625}, {"start": 1197.03, "end": 1197.47, "word": " there.", "probability": 0.484375}, {"start": 1197.83, "end": 1198.41, "word": " So", "probability": 0.36962890625}, {"start": 1198.41, "end": 1198.81, "word": " how", "probability": 0.30517578125}, {"start": 1198.81, "end": 1198.81, "word": " will", "probability": 0.343017578125}, {"start": 1198.81, "end": 1198.95, "word": " this", "probability": 0.72265625}, {"start": 1198.95, "end": 1199.27, "word": " code", "probability": 0.9130859375}, {"start": 1199.27, "end": 1200.67, "word": " work?", "probability": 0.685546875}, {"start": 1201.03, "end": 1201.49, "word": " I", "probability": 0.51025390625}, {"start": 1201.49, "end": 1201.99, "word": " will", "probability": 0.5107421875}, {"start": 1201.99, "end": 1202.41, "word": " create", "probability": 0.437744140625}, {"start": 1202.41, "end": 1202.57, "word": " an", "probability": 0.53125}, {"start": 1202.57, "end": 1202.91, "word": " engine", "probability": 0.9052734375}, {"start": 1202.91, "end": 1202.95, "word": " in", "probability": 0.54541015625}, {"start": 1202.95, "end": 1202.95, "word": " the", "probability": 0.407958984375}, {"start": 1202.95, "end": 1202.95, "word": " main.", "probability": 0.857421875}, {"start": 1204.05, "end": 1204.65, "word": " E", "probability": 0.72412109375}, {"start": 1204.65, "end": 1205.07, "word": " is", "probability": 0.04034423828125}, {"start": 1205.07, "end": 1205.25, "word": " equal", "probability": 0.70556640625}, {"start": 1205.25, "end": 1205.27, "word": " to", "probability": 0.97119140625}, {"start": 1205.27, "end": 1205.47, "word": " new", "probability": 0.69921875}, {"start": 1205.47, "end": 1205.85, "word": " engine.", "probability": 0.89697265625}, {"start": 1206.67, "end": 1206.91, "word": " Right?", "probability": 0.37646484375}, {"start": 1206.97, "end": 1207.07, "word": " This", "probability": 0.5556640625}, {"start": 1207.07, "end": 1207.09, "word": " is", "probability": 0.91357421875}, {"start": 1207.09, "end": 1207.25, "word": " in", "probability": 0.76513671875}, {"start": 1207.25, "end": 1207.33, "word": " the", "probability": 0.83935546875}, {"start": 1207.33, "end": 1207.45, "word": " main.", "probability": 0.90966796875}, {"start": 1208.03, "end": 1208.63, "word": " And", "probability": 0.5830078125}, {"start": 1208.63, "end": 1208.75, "word": " I", "probability": 0.8564453125}, {"start": 1208.75, "end": 1208.93, "word": " will", "probability": 0.7529296875}, {"start": 1208.93, "end": 1209.33, "word": " create", "probability": 0.68701171875}, {"start": 1209.33, "end": 1209.61, "word": " a", "probability": 0.94287109375}, {"start": 1209.61, "end": 1210.09, "word": " transmission.", "probability": 0.84912109375}, {"start": 1212.51, "end": 1213.11, "word": " T", "probability": 0.9541015625}, {"start": 1213.11, "end": 1213.69, "word": " is", "probability": 0.873046875}, {"start": 1213.69, "end": 1213.89, "word": " equal", "probability": 0.8994140625}, {"start": 1213.89, "end": 1213.93, "word": " to", "probability": 0.97265625}, {"start": 1213.93, "end": 1214.39, "word": " new", "probability": 0.892578125}, {"start": 1214.39, "end": 1217.01, "word": " transmission.", "probability": 0.90380859375}, {"start": 1218.21, "end": 1218.81, "word": " And", "probability": 0.67919921875}, {"start": 1218.81, "end": 1219.03, "word": " then", "probability": 0.703125}, {"start": 1219.03, "end": 1219.21, "word": " I", "probability": 0.85302734375}, {"start": 1219.21, "end": 1219.43, "word": " will", "probability": 0.8154296875}, {"start": 1219.43, "end": 1219.71, "word": " create", "probability": 0.75341796875}, {"start": 1219.71, "end": 1219.87, "word": " a", "probability": 0.96630859375}, {"start": 1219.87, "end": 1220.17, "word": " car.", "probability": 0.92822265625}, {"start": 1221.53, "end": 1222.13, "word": " C", "probability": 0.94580078125}], "temperature": 1.0}, {"id": 50, "seek": 124889, "start": 1225.41, "end": 1248.89, "text": " is equal to the new car and I separate it from E and T this is actually running the code which means that if I remove this object these will not affect each other which means that the car also only runs aggregates this is the car this is the engine", "tokens": [307, 2681, 281, 264, 777, 1032, 293, 286, 4994, 309, 490, 462, 293, 314, 341, 307, 767, 2614, 264, 3089, 597, 1355, 300, 498, 286, 4159, 341, 2657, 613, 486, 406, 3345, 1184, 661, 597, 1355, 300, 264, 1032, 611, 787, 6676, 16743, 1024, 341, 307, 264, 1032, 341, 307, 264, 2848], "avg_logprob": -0.6385613297516445, "compression_ratio": 1.6490066225165563, "no_speech_prob": 2.9265880584716797e-05, "words": [{"start": 1225.41, "end": 1225.67, "word": " is", "probability": 0.042144775390625}, {"start": 1225.67, "end": 1225.97, "word": " equal", "probability": 0.65478515625}, {"start": 1225.97, "end": 1226.13, "word": " to", "probability": 0.96142578125}, {"start": 1226.13, "end": 1226.21, "word": " the", "probability": 0.275634765625}, {"start": 1226.21, "end": 1226.43, "word": " new", "probability": 0.7373046875}, {"start": 1226.43, "end": 1226.83, "word": " car", "probability": 0.83251953125}, {"start": 1226.83, "end": 1228.49, "word": " and", "probability": 0.22265625}, {"start": 1228.49, "end": 1228.97, "word": " I", "probability": 0.2242431640625}, {"start": 1228.97, "end": 1229.19, "word": " separate", "probability": 0.10491943359375}, {"start": 1229.19, "end": 1229.43, "word": " it", "probability": 0.61279296875}, {"start": 1229.43, "end": 1229.67, "word": " from", "probability": 0.77490234375}, {"start": 1229.67, "end": 1230.13, "word": " E", "probability": 0.5498046875}, {"start": 1230.13, "end": 1231.81, "word": " and", "probability": 0.9052734375}, {"start": 1231.81, "end": 1231.99, "word": " T", "probability": 0.95556640625}, {"start": 1231.99, "end": 1232.23, "word": " this", "probability": 0.1890869140625}, {"start": 1232.23, "end": 1233.03, "word": " is", "probability": 0.76416015625}, {"start": 1233.03, "end": 1233.07, "word": " actually", "probability": 0.25439453125}, {"start": 1233.07, "end": 1233.43, "word": " running", "probability": 0.57373046875}, {"start": 1233.43, "end": 1233.59, "word": " the", "probability": 0.5986328125}, {"start": 1233.59, "end": 1233.77, "word": " code", "probability": 0.92041015625}, {"start": 1233.77, "end": 1234.23, "word": " which", "probability": 0.2294921875}, {"start": 1234.23, "end": 1234.39, "word": " means", "probability": 0.9287109375}, {"start": 1234.39, "end": 1234.55, "word": " that", "probability": 0.419189453125}, {"start": 1234.55, "end": 1234.59, "word": " if", "probability": 0.9189453125}, {"start": 1234.59, "end": 1234.81, "word": " I", "probability": 0.951171875}, {"start": 1234.81, "end": 1235.07, "word": " remove", "probability": 0.359130859375}, {"start": 1235.07, "end": 1235.39, "word": " this", "probability": 0.8271484375}, {"start": 1235.39, "end": 1235.97, "word": " object", "probability": 0.96826171875}, {"start": 1235.97, "end": 1237.01, "word": " these", "probability": 0.294189453125}, {"start": 1237.01, "end": 1237.15, "word": " will", "probability": 0.25390625}, {"start": 1237.15, "end": 1237.25, "word": " not", "probability": 0.8740234375}, {"start": 1237.25, "end": 1237.59, "word": " affect", "probability": 0.59716796875}, {"start": 1237.59, "end": 1238.07, "word": " each", "probability": 0.80029296875}, {"start": 1238.07, "end": 1238.21, "word": " other", "probability": 0.875}, {"start": 1238.21, "end": 1238.67, "word": " which", "probability": 0.7001953125}, {"start": 1238.67, "end": 1238.81, "word": " means", "probability": 0.8603515625}, {"start": 1238.81, "end": 1238.97, "word": " that", "probability": 0.87841796875}, {"start": 1238.97, "end": 1239.11, "word": " the", "probability": 0.80615234375}, {"start": 1239.11, "end": 1239.23, "word": " car", "probability": 0.900390625}, {"start": 1239.23, "end": 1239.45, "word": " also", "probability": 0.2822265625}, {"start": 1239.45, "end": 1239.63, "word": " only", "probability": 0.36767578125}, {"start": 1239.63, "end": 1240.03, "word": " runs", "probability": 0.419677734375}, {"start": 1240.03, "end": 1240.91, "word": " aggregates", "probability": 0.4276123046875}, {"start": 1240.91, "end": 1243.11, "word": " this", "probability": 0.1312255859375}, {"start": 1243.11, "end": 1243.33, "word": " is", "probability": 0.904296875}, {"start": 1243.33, "end": 1247.07, "word": " the", "probability": 0.54931640625}, {"start": 1247.07, "end": 1247.33, "word": " car", "probability": 0.58642578125}, {"start": 1247.33, "end": 1248.49, "word": " this", "probability": 0.450439453125}, {"start": 1248.49, "end": 1248.49, "word": " is", "probability": 0.92578125}, {"start": 1248.49, "end": 1248.61, "word": " the", "probability": 0.85498046875}, {"start": 1248.61, "end": 1248.89, "word": " engine", "probability": 0.9248046875}], "temperature": 1.0}, {"id": 51, "seek": 126052, "start": 1252.38, "end": 1260.52, "text": "In terms of aggregation, the part can exist independently from the aggregate.", "tokens": [4575, 2115, 295, 16743, 399, 11, 264, 644, 393, 2514, 21761, 490, 264, 26118, 13], "avg_logprob": -0.40429688058793545, "compression_ratio": 1.0405405405405406, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 1252.38, "end": 1253.16, "word": "In", "probability": 0.471923828125}, {"start": 1253.16, "end": 1253.4, "word": " terms", "probability": 0.1234130859375}, {"start": 1253.4, "end": 1253.58, "word": " of", "probability": 0.97021484375}, {"start": 1253.58, "end": 1254.26, "word": " aggregation,", "probability": 0.885498046875}, {"start": 1254.9, "end": 1255.04, "word": " the", "probability": 0.69140625}, {"start": 1255.04, "end": 1255.42, "word": " part", "probability": 0.6650390625}, {"start": 1255.42, "end": 1256.56, "word": " can", "probability": 0.73095703125}, {"start": 1256.56, "end": 1257.16, "word": " exist", "probability": 0.9736328125}, {"start": 1257.16, "end": 1258.04, "word": " independently", "probability": 0.92724609375}, {"start": 1258.04, "end": 1258.54, "word": " from", "probability": 0.8359375}, {"start": 1258.54, "end": 1259.42, "word": " the", "probability": 0.880859375}, {"start": 1259.42, "end": 1260.52, "word": " aggregate.", "probability": 0.8310546875}], "temperature": 1.0}, {"id": 52, "seek": 129649, "start": 1268.05, "end": 1296.49, "text": " Because this relationship is represented as follows This is the car, this is the engine, and this is the transmission And the relationship between them is an association But there is something that remains optional You can show it sometimes, sometimes you can not show it It is this specific thing, you see it? A specific vacuum This is what you understand from it That it is an association relationship The car uses the engine and the transmission But these engines and transmissions were not built inside the car How did you understand this?", "tokens": [1436, 341, 2480, 307, 10379, 382, 10002, 639, 307, 264, 1032, 11, 341, 307, 264, 2848, 11, 293, 341, 307, 264, 11574, 400, 264, 2480, 1296, 552, 307, 364, 14598, 583, 456, 307, 746, 300, 7023, 17312, 509, 393, 855, 309, 2171, 11, 2171, 291, 393, 406, 855, 309, 467, 307, 341, 2685, 551, 11, 291, 536, 309, 30, 316, 2685, 14224, 639, 307, 437, 291, 1223, 490, 309, 663, 309, 307, 364, 14598, 2480, 440, 1032, 4960, 264, 2848, 293, 264, 11574, 583, 613, 12982, 293, 7715, 7922, 645, 406, 3094, 1854, 264, 1032, 1012, 630, 291, 1223, 341, 30], "avg_logprob": -0.5162377480198356, "compression_ratio": 2.0763358778625953, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 1268.05, "end": 1268.35, "word": " Because", "probability": 0.1444091796875}, {"start": 1268.35, "end": 1268.63, "word": " this", "probability": 0.67724609375}, {"start": 1268.63, "end": 1268.97, "word": " relationship", "probability": 0.564453125}, {"start": 1268.97, "end": 1269.11, "word": " is", "probability": 0.60693359375}, {"start": 1269.11, "end": 1269.37, "word": " represented", "probability": 0.411376953125}, {"start": 1269.37, "end": 1269.55, "word": " as", "probability": 0.5}, {"start": 1269.55, "end": 1269.93, "word": " follows", "probability": 0.51611328125}, {"start": 1269.93, "end": 1270.47, "word": " This", "probability": 0.2412109375}, {"start": 1270.47, "end": 1270.53, "word": " is", "probability": 0.90234375}, {"start": 1270.53, "end": 1270.65, "word": " the", "probability": 0.62451171875}, {"start": 1270.65, "end": 1270.95, "word": " car,", "probability": 0.78857421875}, {"start": 1271.27, "end": 1271.41, "word": " this", "probability": 0.791015625}, {"start": 1271.41, "end": 1271.41, "word": " is", "probability": 0.92529296875}, {"start": 1271.41, "end": 1271.53, "word": " the", "probability": 0.8740234375}, {"start": 1271.53, "end": 1271.81, "word": " engine,", "probability": 0.9365234375}, {"start": 1271.99, "end": 1272.11, "word": " and", "probability": 0.7841796875}, {"start": 1272.11, "end": 1272.23, "word": " this", "probability": 0.89404296875}, {"start": 1272.23, "end": 1272.23, "word": " is", "probability": 0.93115234375}, {"start": 1272.23, "end": 1272.35, "word": " the", "probability": 0.853515625}, {"start": 1272.35, "end": 1272.73, "word": " transmission", "probability": 0.943359375}, {"start": 1272.73, "end": 1273.35, "word": " And", "probability": 0.424072265625}, {"start": 1273.35, "end": 1273.45, "word": " the", "probability": 0.78662109375}, {"start": 1273.45, "end": 1273.71, "word": " relationship", "probability": 0.73095703125}, {"start": 1273.71, "end": 1273.89, "word": " between", "probability": 0.82958984375}, {"start": 1273.89, "end": 1274.03, "word": " them", "probability": 0.853515625}, {"start": 1274.03, "end": 1274.11, "word": " is", "probability": 0.921875}, {"start": 1274.11, "end": 1274.19, "word": " an", "probability": 0.25634765625}, {"start": 1274.19, "end": 1274.67, "word": " association", "probability": 0.84765625}, {"start": 1274.67, "end": 1275.63, "word": " But", "probability": 0.7666015625}, {"start": 1275.63, "end": 1275.77, "word": " there", "probability": 0.0677490234375}, {"start": 1275.77, "end": 1275.81, "word": " is", "probability": 0.73974609375}, {"start": 1275.81, "end": 1276.11, "word": " something", "probability": 0.39208984375}, {"start": 1276.11, "end": 1276.39, "word": " that", "probability": 0.19775390625}, {"start": 1276.39, "end": 1277.37, "word": " remains", "probability": 0.489990234375}, {"start": 1277.37, "end": 1277.81, "word": " optional", "probability": 0.849609375}, {"start": 1277.81, "end": 1278.29, "word": " You", "probability": 0.365478515625}, {"start": 1278.29, "end": 1278.63, "word": " can", "probability": 0.71826171875}, {"start": 1278.63, "end": 1278.89, "word": " show", "probability": 0.515625}, {"start": 1278.89, "end": 1279.05, "word": " it", "probability": 0.828125}, {"start": 1279.05, "end": 1279.33, "word": " sometimes,", "probability": 0.6337890625}, {"start": 1279.49, "end": 1279.73, "word": " sometimes", "probability": 0.211181640625}, {"start": 1279.73, "end": 1279.81, "word": " you", "probability": 0.6279296875}, {"start": 1279.81, "end": 1279.81, "word": " can", "probability": 0.6083984375}, {"start": 1279.81, "end": 1279.85, "word": " not", "probability": 0.64306640625}, {"start": 1279.85, "end": 1280.41, "word": " show", "probability": 0.5810546875}, {"start": 1280.41, "end": 1280.69, "word": " it", "probability": 0.9013671875}, {"start": 1280.69, "end": 1281.11, "word": " It", "probability": 0.1260986328125}, {"start": 1281.11, "end": 1281.23, "word": " is", "probability": 0.7041015625}, {"start": 1281.23, "end": 1281.35, "word": " this", "probability": 0.7470703125}, {"start": 1281.35, "end": 1281.65, "word": " specific", "probability": 0.27587890625}, {"start": 1281.65, "end": 1281.85, "word": " thing,", "probability": 0.413330078125}, {"start": 1282.19, "end": 1282.23, "word": " you", "probability": 0.27734375}, {"start": 1282.23, "end": 1282.53, "word": " see", "probability": 0.91455078125}, {"start": 1282.53, "end": 1282.99, "word": " it?", "probability": 0.54541015625}, {"start": 1282.99, "end": 1283.29, "word": " A", "probability": 0.3935546875}, {"start": 1283.29, "end": 1283.51, "word": " specific", "probability": 0.58447265625}, {"start": 1283.51, "end": 1283.93, "word": " vacuum", "probability": 0.0389404296875}, {"start": 1283.93, "end": 1284.95, "word": " This", "probability": 0.444091796875}, {"start": 1284.95, "end": 1285.05, "word": " is", "probability": 0.69921875}, {"start": 1285.05, "end": 1285.13, "word": " what", "probability": 0.79736328125}, {"start": 1285.13, "end": 1285.31, "word": " you", "probability": 0.7587890625}, {"start": 1285.31, "end": 1285.51, "word": " understand", "probability": 0.642578125}, {"start": 1285.51, "end": 1285.67, "word": " from", "probability": 0.76806640625}, {"start": 1285.67, "end": 1285.87, "word": " it", "probability": 0.88330078125}, {"start": 1285.87, "end": 1286.69, "word": " That", "probability": 0.43603515625}, {"start": 1286.69, "end": 1287.73, "word": " it", "probability": 0.70751953125}, {"start": 1287.73, "end": 1287.77, "word": " is", "probability": 0.89501953125}, {"start": 1287.77, "end": 1287.89, "word": " an", "probability": 0.7431640625}, {"start": 1287.89, "end": 1288.59, "word": " association", "probability": 0.92041015625}, {"start": 1288.59, "end": 1288.61, "word": " relationship", "probability": 0.84375}, {"start": 1288.61, "end": 1288.87, "word": " The", "probability": 0.537109375}, {"start": 1288.87, "end": 1289.07, "word": " car", "probability": 0.9130859375}, {"start": 1289.07, "end": 1289.51, "word": " uses", "probability": 0.85498046875}, {"start": 1289.51, "end": 1289.63, "word": " the", "probability": 0.43701171875}, {"start": 1289.63, "end": 1289.83, "word": " engine", "probability": 0.94091796875}, {"start": 1289.83, "end": 1289.97, "word": " and", "probability": 0.935546875}, {"start": 1289.97, "end": 1290.05, "word": " the", "probability": 0.428466796875}, {"start": 1290.05, "end": 1290.45, "word": " transmission", "probability": 0.9482421875}, {"start": 1290.45, "end": 1291.09, "word": " But", "probability": 0.79150390625}, {"start": 1291.09, "end": 1291.41, "word": " these", "probability": 0.654296875}, {"start": 1291.41, "end": 1291.65, "word": " engines", "probability": 0.5927734375}, {"start": 1291.65, "end": 1291.81, "word": " and", "probability": 0.93798828125}, {"start": 1291.81, "end": 1292.29, "word": " transmissions", "probability": 0.832275390625}, {"start": 1292.29, "end": 1292.45, "word": " were", "probability": 0.78662109375}, {"start": 1292.45, "end": 1292.55, "word": " not", "probability": 0.9296875}, {"start": 1292.55, "end": 1293.05, "word": " built", "probability": 0.662109375}, {"start": 1293.05, "end": 1293.55, "word": " inside", "probability": 0.607421875}, {"start": 1293.55, "end": 1294.55, "word": " the", "probability": 0.8544921875}, {"start": 1294.55, "end": 1294.79, "word": " car", "probability": 0.91162109375}, {"start": 1294.79, "end": 1295.83, "word": " How", "probability": 0.47509765625}, {"start": 1295.83, "end": 1295.83, "word": " did", "probability": 0.66162109375}, {"start": 1295.83, "end": 1296.07, "word": " you", "probability": 0.77880859375}, {"start": 1296.07, "end": 1296.37, "word": " understand", "probability": 0.66943359375}, {"start": 1296.37, "end": 1296.49, "word": " this?", "probability": 0.70703125}], "temperature": 1.0}, {"id": 53, "seek": 132610, "start": 1297.7, "end": 1326.1, "text": " From a certain relationship, ok guys? Now, the second type, which is the relationship of composition Which is what? What did I do? Same class, same example Car uses an object from engine and transmission, which is the relationship of association But these two, I didn't go through them in the constructor, I went, what did I do here? New This became composition, I mean, did the car come from .. what is composition? Composition, ok?", "tokens": [3358, 257, 1629, 2480, 11, 3133, 1074, 30, 823, 11, 264, 1150, 2010, 11, 597, 307, 264, 2480, 295, 12686, 3013, 307, 437, 30, 708, 630, 286, 360, 30, 10635, 1508, 11, 912, 1365, 2741, 4960, 364, 2657, 490, 2848, 293, 11574, 11, 597, 307, 264, 2480, 295, 14598, 583, 613, 732, 11, 286, 994, 380, 352, 807, 552, 294, 264, 47479, 11, 286, 1437, 11, 437, 630, 286, 360, 510, 30, 1873, 639, 3062, 12686, 11, 286, 914, 11, 630, 264, 1032, 808, 490, 4386, 437, 307, 12686, 30, 6620, 5830, 11, 3133, 30], "avg_logprob": -0.5097656386593977, "compression_ratio": 1.757085020242915, "no_speech_prob": 7.510185241699219e-06, "words": [{"start": 1297.7, "end": 1297.94, "word": " From", "probability": 0.1573486328125}, {"start": 1297.94, "end": 1298.02, "word": " a", "probability": 0.634765625}, {"start": 1298.02, "end": 1298.62, "word": " certain", "probability": 0.286376953125}, {"start": 1298.62, "end": 1298.62, "word": " relationship,", "probability": 0.5546875}, {"start": 1298.86, "end": 1299.12, "word": " ok", "probability": 0.254150390625}, {"start": 1299.12, "end": 1299.54, "word": " guys?", "probability": 0.64990234375}, {"start": 1301.16, "end": 1301.48, "word": " Now,", "probability": 0.662109375}, {"start": 1301.56, "end": 1301.66, "word": " the", "probability": 0.77197265625}, {"start": 1301.66, "end": 1301.68, "word": " second", "probability": 0.71142578125}, {"start": 1301.68, "end": 1302.12, "word": " type,", "probability": 0.69921875}, {"start": 1302.48, "end": 1302.52, "word": " which", "probability": 0.69873046875}, {"start": 1302.52, "end": 1302.64, "word": " is", "probability": 0.9072265625}, {"start": 1302.64, "end": 1302.68, "word": " the", "probability": 0.6337890625}, {"start": 1302.68, "end": 1302.84, "word": " relationship", "probability": 0.5732421875}, {"start": 1302.84, "end": 1302.94, "word": " of", "probability": 0.66015625}, {"start": 1302.94, "end": 1303.5, "word": " composition", "probability": 0.86083984375}, {"start": 1303.5, "end": 1304.7, "word": " Which", "probability": 0.4345703125}, {"start": 1304.7, "end": 1304.86, "word": " is", "probability": 0.87646484375}, {"start": 1304.86, "end": 1305.1, "word": " what?", "probability": 0.404541015625}, {"start": 1305.16, "end": 1305.32, "word": " What", "probability": 0.69384765625}, {"start": 1305.32, "end": 1305.4, "word": " did", "probability": 0.84765625}, {"start": 1305.4, "end": 1305.76, "word": " I", "probability": 0.96728515625}, {"start": 1305.76, "end": 1305.76, "word": " do?", "probability": 0.9521484375}, {"start": 1307.56, "end": 1307.96, "word": " Same", "probability": 0.5}, {"start": 1307.96, "end": 1308.3, "word": " class,", "probability": 0.89013671875}, {"start": 1308.38, "end": 1308.58, "word": " same", "probability": 0.88525390625}, {"start": 1308.58, "end": 1308.94, "word": " example", "probability": 0.95556640625}, {"start": 1308.94, "end": 1309.36, "word": " Car", "probability": 0.462890625}, {"start": 1309.36, "end": 1310.54, "word": " uses", "probability": 0.485107421875}, {"start": 1310.54, "end": 1310.72, "word": " an", "probability": 0.55615234375}, {"start": 1310.72, "end": 1310.88, "word": " object", "probability": 0.9736328125}, {"start": 1310.88, "end": 1311.06, "word": " from", "probability": 0.75439453125}, {"start": 1311.06, "end": 1311.36, "word": " engine", "probability": 0.74951171875}, {"start": 1311.36, "end": 1311.48, "word": " and", "probability": 0.84716796875}, {"start": 1311.48, "end": 1311.88, "word": " transmission,", "probability": 0.91748046875}, {"start": 1312.0, "end": 1312.06, "word": " which", "probability": 0.417724609375}, {"start": 1312.06, "end": 1312.12, "word": " is", "probability": 0.73193359375}, {"start": 1312.12, "end": 1312.18, "word": " the", "probability": 0.468505859375}, {"start": 1312.18, "end": 1312.38, "word": " relationship", "probability": 0.72412109375}, {"start": 1312.38, "end": 1312.48, "word": " of", "probability": 0.89599609375}, {"start": 1312.48, "end": 1313.0, "word": " association", "probability": 0.83251953125}, {"start": 1313.0, "end": 1313.68, "word": " But", "probability": 0.8310546875}, {"start": 1313.68, "end": 1313.94, "word": " these", "probability": 0.40576171875}, {"start": 1313.94, "end": 1314.32, "word": " two,", "probability": 0.89794921875}, {"start": 1314.46, "end": 1314.56, "word": " I", "probability": 0.93017578125}, {"start": 1314.56, "end": 1314.58, "word": " didn't", "probability": 0.762939453125}, {"start": 1314.58, "end": 1314.78, "word": " go", "probability": 0.298095703125}, {"start": 1314.78, "end": 1314.96, "word": " through", "probability": 0.82568359375}, {"start": 1314.96, "end": 1315.04, "word": " them", "probability": 0.7294921875}, {"start": 1315.04, "end": 1315.3, "word": " in", "probability": 0.533203125}, {"start": 1315.3, "end": 1315.42, "word": " the", "probability": 0.560546875}, {"start": 1315.42, "end": 1315.86, "word": " constructor,", "probability": 0.83251953125}, {"start": 1315.96, "end": 1315.98, "word": " I", "probability": 0.4755859375}, {"start": 1315.98, "end": 1316.08, "word": " went,", "probability": 0.8427734375}, {"start": 1316.12, "end": 1316.24, "word": " what", "probability": 0.89208984375}, {"start": 1316.24, "end": 1316.3, "word": " did", "probability": 0.95263671875}, {"start": 1316.3, "end": 1316.3, "word": " I", "probability": 0.861328125}, {"start": 1316.3, "end": 1316.52, "word": " do", "probability": 0.96337890625}, {"start": 1316.52, "end": 1316.78, "word": " here?", "probability": 0.77685546875}, {"start": 1317.36, "end": 1317.68, "word": " New", "probability": 0.53076171875}, {"start": 1317.68, "end": 1320.28, "word": " This", "probability": 0.60546875}, {"start": 1320.28, "end": 1320.54, "word": " became", "probability": 0.5732421875}, {"start": 1320.54, "end": 1321.32, "word": " composition,", "probability": 0.72021484375}, {"start": 1321.72, "end": 1321.84, "word": " I", "probability": 0.39892578125}, {"start": 1321.84, "end": 1321.86, "word": " mean,", "probability": 0.32861328125}, {"start": 1321.94, "end": 1322.08, "word": " did", "probability": 0.5654296875}, {"start": 1322.08, "end": 1322.44, "word": " the", "probability": 0.441162109375}, {"start": 1322.44, "end": 1322.64, "word": " car", "probability": 0.84814453125}, {"start": 1322.64, "end": 1322.64, "word": " come", "probability": 0.5654296875}, {"start": 1322.64, "end": 1322.84, "word": " from", "probability": 0.28173828125}, {"start": 1322.84, "end": 1323.46, "word": " ..", "probability": 0.29833984375}, {"start": 1323.46, "end": 1323.6, "word": " what", "probability": 0.490966796875}, {"start": 1323.6, "end": 1323.68, "word": " is", "probability": 0.875}, {"start": 1323.68, "end": 1324.06, "word": " composition?", "probability": 0.78125}, {"start": 1325.1, "end": 1325.5, "word": " Composition,", "probability": 0.391357421875}, {"start": 1325.88, "end": 1326.1, "word": " ok?", "probability": 0.422607421875}], "temperature": 1.0}, {"id": 54, "seek": 134373, "start": 1327.81, "end": 1343.73, "text": "It means that if the car dies, they die with it. They live and die as a whole. It is an association, but the objects that I use were created within the class itself.", "tokens": [3522, 1355, 300, 498, 264, 1032, 2714, 11, 436, 978, 365, 309, 13, 814, 1621, 293, 978, 382, 257, 1379, 13, 467, 307, 364, 14598, 11, 457, 264, 6565, 300, 286, 764, 645, 2942, 1951, 264, 1508, 2564, 13], "avg_logprob": -0.5359374716877937, "compression_ratio": 1.375, "no_speech_prob": 0.0, "words": [{"start": 1327.81, "end": 1327.99, "word": "It", "probability": 0.387451171875}, {"start": 1327.99, "end": 1328.13, "word": " means", "probability": 0.8818359375}, {"start": 1328.13, "end": 1328.29, "word": " that", "probability": 0.471923828125}, {"start": 1328.29, "end": 1328.37, "word": " if", "probability": 0.87451171875}, {"start": 1328.37, "end": 1328.83, "word": " the", "probability": 0.658203125}, {"start": 1328.83, "end": 1329.11, "word": " car", "probability": 0.77587890625}, {"start": 1329.11, "end": 1329.13, "word": " dies,", "probability": 0.1170654296875}, {"start": 1329.61, "end": 1330.51, "word": " they", "probability": 0.27490234375}, {"start": 1330.51, "end": 1330.51, "word": " die", "probability": 0.468994140625}, {"start": 1330.51, "end": 1331.23, "word": " with", "probability": 0.431396484375}, {"start": 1331.23, "end": 1331.49, "word": " it.", "probability": 0.8232421875}, {"start": 1331.81, "end": 1332.01, "word": " They", "probability": 0.2763671875}, {"start": 1332.01, "end": 1332.79, "word": " live", "probability": 0.89990234375}, {"start": 1332.79, "end": 1333.01, "word": " and", "probability": 0.93994140625}, {"start": 1333.01, "end": 1333.19, "word": " die", "probability": 0.900390625}, {"start": 1333.19, "end": 1333.35, "word": " as", "probability": 0.56005859375}, {"start": 1333.35, "end": 1333.47, "word": " a", "probability": 0.9482421875}, {"start": 1333.47, "end": 1333.65, "word": " whole.", "probability": 0.896484375}, {"start": 1335.89, "end": 1336.01, "word": " It", "probability": 0.43115234375}, {"start": 1336.01, "end": 1336.05, "word": " is", "probability": 0.5126953125}, {"start": 1336.05, "end": 1337.17, "word": " an", "probability": 0.67578125}, {"start": 1337.17, "end": 1337.71, "word": " association,", "probability": 0.92529296875}, {"start": 1337.91, "end": 1338.13, "word": " but", "probability": 0.8056640625}, {"start": 1338.13, "end": 1339.05, "word": " the", "probability": 0.79541015625}, {"start": 1339.05, "end": 1340.19, "word": " objects", "probability": 0.451416015625}, {"start": 1340.19, "end": 1340.45, "word": " that", "probability": 0.263671875}, {"start": 1340.45, "end": 1340.55, "word": " I", "probability": 0.86376953125}, {"start": 1340.55, "end": 1340.95, "word": " use", "probability": 0.69287109375}, {"start": 1340.95, "end": 1341.25, "word": " were", "probability": 0.37939453125}, {"start": 1341.25, "end": 1341.65, "word": " created", "probability": 0.457763671875}, {"start": 1341.65, "end": 1342.13, "word": " within", "probability": 0.43505859375}, {"start": 1342.13, "end": 1343.11, "word": " the", "probability": 0.83837890625}, {"start": 1343.11, "end": 1343.39, "word": " class", "probability": 0.87939453125}, {"start": 1343.39, "end": 1343.73, "word": " itself.", "probability": 0.456298828125}], "temperature": 1.0}, {"id": 55, "seek": 136803, "start": 1345.09, "end": 1368.03, "text": "Who is better, composition or aggregation? It depends on the application. But in general, we prefer aggregation. Why? Because it shows the meaning in the design patterns in front of us. And concepts like dependency, injection and others. How do we represent the relationship between composition and aggregation? It is the relationship of association. It is a straight line. But what does the determinant put? A dot.", "tokens": [10927, 307, 1101, 11, 12686, 420, 16743, 399, 30, 467, 5946, 322, 264, 3861, 13, 583, 294, 2674, 11, 321, 4382, 16743, 399, 13, 1545, 30, 1436, 309, 3110, 264, 3620, 294, 264, 1715, 8294, 294, 1868, 295, 505, 13, 400, 10392, 411, 33621, 11, 22873, 293, 2357, 13, 1012, 360, 321, 2906, 264, 2480, 1296, 12686, 293, 16743, 399, 30, 467, 307, 264, 2480, 295, 14598, 13, 467, 307, 257, 2997, 1622, 13, 583, 437, 775, 264, 41296, 829, 30, 316, 5893, 13], "avg_logprob": -0.584191156836117, "compression_ratio": 1.7364016736401673, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1345.09, "end": 1345.51, "word": "Who", "probability": 0.2313232421875}, {"start": 1345.51, "end": 1345.59, "word": " is", "probability": 0.51220703125}, {"start": 1345.59, "end": 1345.79, "word": " better,", "probability": 0.72265625}, {"start": 1345.87, "end": 1346.41, "word": " composition", "probability": 0.318115234375}, {"start": 1346.41, "end": 1346.79, "word": " or", "probability": 0.79443359375}, {"start": 1346.79, "end": 1347.47, "word": " aggregation?", "probability": 0.947265625}, {"start": 1347.57, "end": 1347.85, "word": " It", "probability": 0.322509765625}, {"start": 1347.85, "end": 1347.93, "word": " depends", "probability": 0.7958984375}, {"start": 1347.93, "end": 1348.69, "word": " on", "probability": 0.78271484375}, {"start": 1348.69, "end": 1348.99, "word": " the", "probability": 0.50634765625}, {"start": 1348.99, "end": 1349.33, "word": " application.", "probability": 0.8486328125}, {"start": 1349.83, "end": 1350.03, "word": " But", "probability": 0.6748046875}, {"start": 1350.03, "end": 1350.29, "word": " in", "probability": 0.2442626953125}, {"start": 1350.29, "end": 1350.93, "word": " general,", "probability": 0.865234375}, {"start": 1351.23, "end": 1351.83, "word": " we", "probability": 0.685546875}, {"start": 1351.83, "end": 1352.13, "word": " prefer", "probability": 0.94580078125}, {"start": 1352.13, "end": 1352.75, "word": " aggregation.", "probability": 0.934814453125}, {"start": 1353.01, "end": 1353.45, "word": " Why?", "probability": 0.6708984375}, {"start": 1353.47, "end": 1353.63, "word": " Because", "probability": 0.441650390625}, {"start": 1353.63, "end": 1353.63, "word": " it", "probability": 0.5185546875}, {"start": 1353.63, "end": 1353.85, "word": " shows", "probability": 0.225830078125}, {"start": 1353.85, "end": 1354.03, "word": " the", "probability": 0.387451171875}, {"start": 1354.03, "end": 1354.13, "word": " meaning", "probability": 0.6259765625}, {"start": 1354.13, "end": 1354.25, "word": " in", "probability": 0.38525390625}, {"start": 1354.25, "end": 1354.31, "word": " the", "probability": 0.67138671875}, {"start": 1354.31, "end": 1354.55, "word": " design", "probability": 0.7099609375}, {"start": 1354.55, "end": 1354.91, "word": " patterns", "probability": 0.8017578125}, {"start": 1354.91, "end": 1355.03, "word": " in", "probability": 0.3427734375}, {"start": 1355.03, "end": 1355.17, "word": " front", "probability": 0.81982421875}, {"start": 1355.17, "end": 1355.17, "word": " of", "probability": 0.54931640625}, {"start": 1355.17, "end": 1355.73, "word": " us.", "probability": 0.298095703125}, {"start": 1356.53, "end": 1356.97, "word": " And", "probability": 0.343505859375}, {"start": 1356.97, "end": 1357.21, "word": " concepts", "probability": 0.71630859375}, {"start": 1357.21, "end": 1357.51, "word": " like", "probability": 0.65966796875}, {"start": 1357.51, "end": 1358.05, "word": " dependency,", "probability": 0.73828125}, {"start": 1358.17, "end": 1358.51, "word": " injection", "probability": 0.93994140625}, {"start": 1358.51, "end": 1358.67, "word": " and", "probability": 0.49853515625}, {"start": 1358.67, "end": 1358.89, "word": " others.", "probability": 0.408447265625}, {"start": 1361.51, "end": 1361.95, "word": " How", "probability": 0.91259765625}, {"start": 1361.95, "end": 1362.01, "word": " do", "probability": 0.6201171875}, {"start": 1362.01, "end": 1362.09, "word": " we", "probability": 0.921875}, {"start": 1362.09, "end": 1362.31, "word": " represent", "probability": 0.615234375}, {"start": 1362.31, "end": 1362.43, "word": " the", "probability": 0.5166015625}, {"start": 1362.43, "end": 1362.57, "word": " relationship", "probability": 0.52001953125}, {"start": 1362.57, "end": 1362.73, "word": " between", "probability": 0.50830078125}, {"start": 1362.73, "end": 1363.07, "word": " composition", "probability": 0.8701171875}, {"start": 1363.07, "end": 1363.23, "word": " and", "probability": 0.6533203125}, {"start": 1363.23, "end": 1363.23, "word": " aggregation?", "probability": 0.933837890625}, {"start": 1363.41, "end": 1363.59, "word": " It", "probability": 0.7197265625}, {"start": 1363.59, "end": 1363.65, "word": " is", "probability": 0.728515625}, {"start": 1363.65, "end": 1363.71, "word": " the", "probability": 0.2744140625}, {"start": 1363.71, "end": 1363.91, "word": " relationship", "probability": 0.57080078125}, {"start": 1363.91, "end": 1364.03, "word": " of", "probability": 0.69677734375}, {"start": 1364.03, "end": 1364.51, "word": " association.", "probability": 0.75732421875}, {"start": 1364.65, "end": 1364.69, "word": " It", "probability": 0.58203125}, {"start": 1364.69, "end": 1364.79, "word": " is", "probability": 0.8623046875}, {"start": 1364.79, "end": 1365.01, "word": " a", "probability": 0.583984375}, {"start": 1365.01, "end": 1365.35, "word": " straight", "probability": 0.53662109375}, {"start": 1365.35, "end": 1365.35, "word": " line.", "probability": 0.33935546875}, {"start": 1366.25, "end": 1366.59, "word": " But", "probability": 0.80908203125}, {"start": 1366.59, "end": 1366.71, "word": " what", "probability": 0.47314453125}, {"start": 1366.71, "end": 1366.71, "word": " does", "probability": 0.40673828125}, {"start": 1366.71, "end": 1366.73, "word": " the", "probability": 0.71337890625}, {"start": 1366.73, "end": 1366.97, "word": " determinant", "probability": 0.032379150390625}, {"start": 1366.97, "end": 1367.41, "word": " put?", "probability": 0.331298828125}, {"start": 1367.81, "end": 1368.03, "word": " A", "probability": 0.356201171875}, {"start": 1368.03, "end": 1368.03, "word": " dot.", "probability": 0.201171875}], "temperature": 1.0}, {"id": 56, "seek": 139751, "start": 1369.67, "end": 1397.51, "text": " So this way you understand that the car uses an object from engine and transmission and that these objects were built inside the car Did you get these things? Now this is another example about association Look at this example I have a class called patient record", "tokens": [407, 341, 636, 291, 1223, 300, 264, 1032, 4960, 364, 2657, 490, 2848, 293, 11574, 293, 300, 613, 6565, 645, 3094, 1854, 264, 1032, 2589, 291, 483, 613, 721, 30, 823, 341, 307, 1071, 1365, 466, 14598, 2053, 412, 341, 1365, 286, 362, 257, 1508, 1219, 4537, 2136], "avg_logprob": -0.6221300825780752, "compression_ratio": 1.5748502994011977, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1369.67, "end": 1370.23, "word": " So", "probability": 0.1524658203125}, {"start": 1370.23, "end": 1370.43, "word": " this", "probability": 0.295166015625}, {"start": 1370.43, "end": 1370.43, "word": " way", "probability": 0.572265625}, {"start": 1370.43, "end": 1370.59, "word": " you", "probability": 0.82080078125}, {"start": 1370.59, "end": 1370.95, "word": " understand", "probability": 0.28076171875}, {"start": 1370.95, "end": 1371.49, "word": " that", "probability": 0.82373046875}, {"start": 1371.49, "end": 1371.65, "word": " the", "probability": 0.35595703125}, {"start": 1371.65, "end": 1371.75, "word": " car", "probability": 0.81982421875}, {"start": 1371.75, "end": 1372.15, "word": " uses", "probability": 0.6416015625}, {"start": 1372.15, "end": 1372.41, "word": " an", "probability": 0.40283203125}, {"start": 1372.41, "end": 1372.59, "word": " object", "probability": 0.880859375}, {"start": 1372.59, "end": 1372.79, "word": " from", "probability": 0.611328125}, {"start": 1372.79, "end": 1373.11, "word": " engine", "probability": 0.46337890625}, {"start": 1373.11, "end": 1373.25, "word": " and", "probability": 0.78759765625}, {"start": 1373.25, "end": 1373.75, "word": " transmission", "probability": 0.943359375}, {"start": 1373.75, "end": 1374.03, "word": " and", "probability": 0.55419921875}, {"start": 1374.03, "end": 1374.21, "word": " that", "probability": 0.35791015625}, {"start": 1374.21, "end": 1374.39, "word": " these", "probability": 0.364501953125}, {"start": 1374.39, "end": 1374.53, "word": " objects", "probability": 0.58740234375}, {"start": 1374.53, "end": 1374.65, "word": " were", "probability": 0.64208984375}, {"start": 1374.65, "end": 1374.97, "word": " built", "probability": 0.31396484375}, {"start": 1374.97, "end": 1375.39, "word": " inside", "probability": 0.63427734375}, {"start": 1375.39, "end": 1376.17, "word": " the", "probability": 0.8310546875}, {"start": 1376.17, "end": 1376.41, "word": " car", "probability": 0.91357421875}, {"start": 1376.41, "end": 1377.27, "word": " Did", "probability": 0.280029296875}, {"start": 1377.27, "end": 1377.33, "word": " you", "probability": 0.9140625}, {"start": 1377.33, "end": 1377.53, "word": " get", "probability": 0.1973876953125}, {"start": 1377.53, "end": 1377.77, "word": " these", "probability": 0.423095703125}, {"start": 1377.77, "end": 1378.05, "word": " things?", "probability": 0.46826171875}, {"start": 1383.31, "end": 1383.87, "word": " Now", "probability": 0.2403564453125}, {"start": 1383.87, "end": 1387.73, "word": " this", "probability": 0.71826171875}, {"start": 1387.73, "end": 1387.77, "word": " is", "probability": 0.89794921875}, {"start": 1387.77, "end": 1387.79, "word": " another", "probability": 0.7939453125}, {"start": 1387.79, "end": 1388.15, "word": " example", "probability": 0.95654296875}, {"start": 1388.15, "end": 1389.17, "word": " about", "probability": 0.1895751953125}, {"start": 1389.17, "end": 1391.27, "word": " association", "probability": 0.583984375}, {"start": 1391.27, "end": 1392.51, "word": " Look", "probability": 0.334228515625}, {"start": 1392.51, "end": 1392.83, "word": " at", "probability": 0.921875}, {"start": 1392.83, "end": 1393.13, "word": " this", "probability": 0.4775390625}, {"start": 1393.13, "end": 1395.57, "word": " example", "probability": 0.91064453125}, {"start": 1395.57, "end": 1396.03, "word": " I", "probability": 0.296630859375}, {"start": 1396.03, "end": 1396.17, "word": " have", "probability": 0.9345703125}, {"start": 1396.17, "end": 1396.27, "word": " a", "probability": 0.64013671875}, {"start": 1396.27, "end": 1396.59, "word": " class", "probability": 0.9658203125}, {"start": 1396.59, "end": 1396.75, "word": " called", "probability": 0.227294921875}, {"start": 1396.75, "end": 1396.99, "word": " patient", "probability": 0.7001953125}, {"start": 1396.99, "end": 1397.51, "word": " record", "probability": 0.8984375}], "temperature": 1.0}, {"id": 57, "seek": 141512, "start": 1398.56, "end": 1415.12, "text": "What does it use inside? An object called patient and a list of what? Consultation, okay? What are these? What is this? Constructor, I give him a patient. Because there are relationships, associations, from whom to whom?", "tokens": [3748, 775, 309, 764, 1854, 30, 1107, 2657, 1219, 4537, 293, 257, 1329, 295, 437, 30, 40057, 399, 11, 1392, 30, 708, 366, 613, 30, 708, 307, 341, 30, 8574, 14535, 11, 286, 976, 796, 257, 1947, 1053, 83, 13, 1436, 456, 366, 6159, 11, 26597, 11, 490, 7101, 281, 7101, 30], "avg_logprob": -0.633844330625714, "compression_ratio": 1.4285714285714286, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1398.56, "end": 1398.82, "word": "What", "probability": 0.30419921875}, {"start": 1398.82, "end": 1398.9, "word": " does", "probability": 0.6611328125}, {"start": 1398.9, "end": 1398.96, "word": " it", "probability": 0.52880859375}, {"start": 1398.96, "end": 1399.26, "word": " use", "probability": 0.79345703125}, {"start": 1399.26, "end": 1399.58, "word": " inside?", "probability": 0.57666015625}, {"start": 1400.26, "end": 1400.46, "word": " An", "probability": 0.0985107421875}, {"start": 1400.46, "end": 1400.66, "word": " object", "probability": 0.96435546875}, {"start": 1400.66, "end": 1400.92, "word": " called", "probability": 0.33203125}, {"start": 1400.92, "end": 1401.48, "word": " patient", "probability": 0.71875}, {"start": 1401.48, "end": 1402.12, "word": " and", "probability": 0.65380859375}, {"start": 1402.12, "end": 1402.24, "word": " a", "probability": 0.391357421875}, {"start": 1402.24, "end": 1402.44, "word": " list", "probability": 0.9091796875}, {"start": 1402.44, "end": 1402.64, "word": " of", "probability": 0.92236328125}, {"start": 1402.64, "end": 1402.92, "word": " what?", "probability": 0.56689453125}, {"start": 1405.74, "end": 1406.22, "word": " Consultation,", "probability": 0.7900390625}, {"start": 1406.52, "end": 1406.9, "word": " okay?", "probability": 0.24365234375}, {"start": 1407.1, "end": 1407.1, "word": " What", "probability": 0.450439453125}, {"start": 1407.1, "end": 1408.02, "word": " are", "probability": 0.4228515625}, {"start": 1408.02, "end": 1408.36, "word": " these?", "probability": 0.7822265625}, {"start": 1408.7, "end": 1408.74, "word": " What", "probability": 0.62109375}, {"start": 1408.74, "end": 1408.74, "word": " is", "probability": 0.5234375}, {"start": 1408.74, "end": 1408.94, "word": " this?", "probability": 0.9013671875}, {"start": 1409.86, "end": 1410.34, "word": " Constructor,", "probability": 0.836181640625}, {"start": 1410.44, "end": 1410.5, "word": " I", "probability": 0.1854248046875}, {"start": 1410.5, "end": 1410.7, "word": " give", "probability": 0.314453125}, {"start": 1410.7, "end": 1410.94, "word": " him", "probability": 0.377685546875}, {"start": 1410.94, "end": 1411.22, "word": " a", "probability": 0.2169189453125}, {"start": 1411.22, "end": 1411.76, "word": " patient.", "probability": 0.665283203125}, {"start": 1411.94, "end": 1412.16, "word": " Because", "probability": 0.4248046875}, {"start": 1412.16, "end": 1412.66, "word": " there", "probability": 0.77099609375}, {"start": 1412.66, "end": 1413.08, "word": " are", "probability": 0.81201171875}, {"start": 1413.08, "end": 1413.08, "word": " relationships,", "probability": 0.248046875}, {"start": 1413.28, "end": 1414.42, "word": " associations,", "probability": 0.79296875}, {"start": 1414.58, "end": 1414.72, "word": " from", "probability": 0.56591796875}, {"start": 1414.72, "end": 1414.86, "word": " whom", "probability": 0.72314453125}, {"start": 1414.86, "end": 1414.96, "word": " to", "probability": 0.428466796875}, {"start": 1414.96, "end": 1415.12, "word": " whom?", "probability": 0.97216796875}], "temperature": 1.0}, {"id": 58, "seek": 143740, "start": 1417.46, "end": 1437.4, "text": "The patient record and the patient is related to association, right? And also between the patient record and consultation, this is related to association. Okay, is it aggregation or composition? Aggregation, because it doesn't matter. Is there a U here? No, because this is what represents the relationship, I make it like this.", "tokens": [2278, 4537, 2136, 293, 264, 4537, 307, 4077, 281, 14598, 11, 558, 30, 400, 611, 1296, 264, 4537, 2136, 293, 20932, 11, 341, 307, 4077, 281, 14598, 13, 1033, 11, 307, 309, 16743, 399, 420, 12686, 30, 41512, 20167, 11, 570, 309, 1177, 380, 1871, 13, 1119, 456, 257, 624, 510, 30, 883, 11, 570, 341, 307, 437, 8855, 264, 2480, 11, 286, 652, 309, 411, 341, 13], "avg_logprob": -0.46354167184967926, "compression_ratio": 1.7826086956521738, "no_speech_prob": 1.9073486328125e-06, "words": [{"start": 1417.46, "end": 1417.72, "word": "The", "probability": 0.3251953125}, {"start": 1417.72, "end": 1418.0, "word": " patient", "probability": 0.8701171875}, {"start": 1418.0, "end": 1418.4, "word": " record", "probability": 0.87939453125}, {"start": 1418.4, "end": 1418.56, "word": " and", "probability": 0.57861328125}, {"start": 1418.56, "end": 1418.66, "word": " the", "probability": 0.475341796875}, {"start": 1418.66, "end": 1418.98, "word": " patient", "probability": 0.90966796875}, {"start": 1418.98, "end": 1419.96, "word": " is", "probability": 0.270263671875}, {"start": 1419.96, "end": 1420.24, "word": " related", "probability": 0.214111328125}, {"start": 1420.24, "end": 1420.32, "word": " to", "probability": 0.8134765625}, {"start": 1420.32, "end": 1420.82, "word": " association,", "probability": 0.78857421875}, {"start": 1420.96, "end": 1421.16, "word": " right?", "probability": 0.60888671875}, {"start": 1421.54, "end": 1421.84, "word": " And", "probability": 0.57666015625}, {"start": 1421.84, "end": 1422.16, "word": " also", "probability": 0.67822265625}, {"start": 1422.16, "end": 1422.36, "word": " between", "probability": 0.5703125}, {"start": 1422.36, "end": 1422.52, "word": " the", "probability": 0.62109375}, {"start": 1422.52, "end": 1422.8, "word": " patient", "probability": 0.94287109375}, {"start": 1422.8, "end": 1423.34, "word": " record", "probability": 0.90380859375}, {"start": 1423.34, "end": 1424.4, "word": " and", "probability": 0.916015625}, {"start": 1424.4, "end": 1425.08, "word": " consultation,", "probability": 0.708984375}, {"start": 1425.48, "end": 1425.64, "word": " this", "probability": 0.4775390625}, {"start": 1425.64, "end": 1425.7, "word": " is", "probability": 0.888671875}, {"start": 1425.7, "end": 1425.9, "word": " related", "probability": 0.60400390625}, {"start": 1425.9, "end": 1426.0, "word": " to", "probability": 0.966796875}, {"start": 1426.0, "end": 1426.52, "word": " association.", "probability": 0.89892578125}, {"start": 1426.98, "end": 1427.32, "word": " Okay,", "probability": 0.277587890625}, {"start": 1427.64, "end": 1427.84, "word": " is", "probability": 0.83642578125}, {"start": 1427.84, "end": 1428.08, "word": " it", "probability": 0.861328125}, {"start": 1428.08, "end": 1429.98, "word": " aggregation", "probability": 0.905517578125}, {"start": 1429.98, "end": 1430.7, "word": " or", "probability": 0.8740234375}, {"start": 1430.7, "end": 1431.24, "word": " composition?", "probability": 0.92822265625}, {"start": 1432.04, "end": 1432.52, "word": " Aggregation,", "probability": 0.94580078125}, {"start": 1432.64, "end": 1432.8, "word": " because", "probability": 0.72216796875}, {"start": 1432.8, "end": 1432.9, "word": " it", "probability": 0.33056640625}, {"start": 1432.9, "end": 1433.0, "word": " doesn't", "probability": 0.65283203125}, {"start": 1433.0, "end": 1433.14, "word": " matter.", "probability": 0.82373046875}, {"start": 1433.24, "end": 1433.36, "word": " Is", "probability": 0.82177734375}, {"start": 1433.36, "end": 1433.44, "word": " there", "probability": 0.8642578125}, {"start": 1433.44, "end": 1433.44, "word": " a", "probability": 0.78466796875}, {"start": 1433.44, "end": 1433.64, "word": " U", "probability": 0.25439453125}, {"start": 1433.64, "end": 1433.86, "word": " here?", "probability": 0.73583984375}, {"start": 1434.18, "end": 1434.66, "word": " No,", "probability": 0.935546875}, {"start": 1435.08, "end": 1435.34, "word": " because", "probability": 0.83642578125}, {"start": 1435.34, "end": 1435.58, "word": " this", "probability": 0.462646484375}, {"start": 1435.58, "end": 1435.6, "word": " is", "probability": 0.55419921875}, {"start": 1435.6, "end": 1435.72, "word": " what", "probability": 0.467041015625}, {"start": 1435.72, "end": 1436.02, "word": " represents", "probability": 0.61767578125}, {"start": 1436.02, "end": 1436.18, "word": " the", "probability": 0.82470703125}, {"start": 1436.18, "end": 1436.5, "word": " relationship,", "probability": 0.7822265625}, {"start": 1436.56, "end": 1436.66, "word": " I", "probability": 0.31396484375}, {"start": 1436.66, "end": 1436.78, "word": " make", "probability": 0.23095703125}, {"start": 1436.78, "end": 1436.9, "word": " it", "probability": 0.92529296875}, {"start": 1436.9, "end": 1437.06, "word": " like", "probability": 0.29296875}, {"start": 1437.06, "end": 1437.4, "word": " this.", "probability": 0.8916015625}], "temperature": 1.0}, {"id": 59, "seek": 146094, "start": 1438.32, "end": 1460.94, "text": "this is patient record and this is consultation and patient and you put an arrow and here you put a sign for a certain thing of course if you don't put the arrow and you put the multiplicity of the numbers you will understand that it is an interchangeable relationship which means that the patient uses an object from the patient and the patient also uses an object from the patient record", "tokens": [11176, 307, 4537, 2136, 293, 341, 307, 20932, 293, 4537, 293, 291, 829, 364, 11610, 293, 510, 291, 829, 257, 1465, 337, 257, 1629, 551, 295, 1164, 498, 291, 500, 380, 829, 264, 11610, 293, 291, 829, 264, 17596, 507, 295, 264, 3547, 291, 486, 1223, 300, 309, 307, 364, 30358, 712, 2480, 597, 1355, 300, 264, 4537, 4960, 364, 2657, 490, 264, 4537, 293, 264, 4537, 611, 4960, 364, 2657, 490, 264, 4537, 2136], "avg_logprob": -0.682565785552326, "compression_ratio": 2.0155440414507773, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1438.32, "end": 1438.56, "word": "this", "probability": 0.2216796875}, {"start": 1438.56, "end": 1438.58, "word": " is", "probability": 0.87109375}, {"start": 1438.58, "end": 1438.9, "word": " patient", "probability": 0.5693359375}, {"start": 1438.9, "end": 1439.32, "word": " record", "probability": 0.927734375}, {"start": 1439.32, "end": 1439.86, "word": " and", "probability": 0.357666015625}, {"start": 1439.86, "end": 1439.96, "word": " this", "probability": 0.7578125}, {"start": 1439.96, "end": 1439.98, "word": " is", "probability": 0.904296875}, {"start": 1439.98, "end": 1440.52, "word": " consultation", "probability": 0.8818359375}, {"start": 1440.52, "end": 1440.7, "word": " and", "probability": 0.437255859375}, {"start": 1440.7, "end": 1441.02, "word": " patient", "probability": 0.8173828125}, {"start": 1441.02, "end": 1441.16, "word": " and", "probability": 0.31396484375}, {"start": 1441.16, "end": 1441.4, "word": " you", "probability": 0.1478271484375}, {"start": 1441.4, "end": 1441.4, "word": " put", "probability": 0.52880859375}, {"start": 1441.4, "end": 1441.74, "word": " an", "probability": 0.251220703125}, {"start": 1441.74, "end": 1441.74, "word": " arrow", "probability": 0.84814453125}, {"start": 1441.74, "end": 1442.8, "word": " and", "probability": 0.328125}, {"start": 1442.8, "end": 1443.6, "word": " here", "probability": 0.276611328125}, {"start": 1443.6, "end": 1443.68, "word": " you", "probability": 0.488525390625}, {"start": 1443.68, "end": 1443.68, "word": " put", "probability": 0.7470703125}, {"start": 1443.68, "end": 1443.72, "word": " a", "probability": 0.53125}, {"start": 1443.72, "end": 1443.92, "word": " sign", "probability": 0.08837890625}, {"start": 1443.92, "end": 1444.06, "word": " for", "probability": 0.1590576171875}, {"start": 1444.06, "end": 1444.36, "word": " a", "probability": 0.4580078125}, {"start": 1444.36, "end": 1444.66, "word": " certain", "probability": 0.2471923828125}, {"start": 1444.66, "end": 1445.36, "word": " thing", "probability": 0.08819580078125}, {"start": 1445.36, "end": 1445.36, "word": " of", "probability": 0.129150390625}, {"start": 1445.36, "end": 1446.14, "word": " course", "probability": 0.94091796875}, {"start": 1446.14, "end": 1446.68, "word": " if", "probability": 0.378173828125}, {"start": 1446.68, "end": 1446.94, "word": " you", "probability": 0.91845703125}, {"start": 1446.94, "end": 1446.94, "word": " don't", "probability": 0.75634765625}, {"start": 1446.94, "end": 1447.16, "word": " put", "probability": 0.81396484375}, {"start": 1447.16, "end": 1447.34, "word": " the", "probability": 0.275146484375}, {"start": 1447.34, "end": 1448.42, "word": " arrow", "probability": 0.81884765625}, {"start": 1448.42, "end": 1448.9, "word": " and", "probability": 0.379150390625}, {"start": 1448.9, "end": 1449.22, "word": " you", "probability": 0.457763671875}, {"start": 1449.22, "end": 1449.5, "word": " put", "probability": 0.814453125}, {"start": 1449.5, "end": 1449.6, "word": " the", "probability": 0.414794921875}, {"start": 1449.6, "end": 1450.24, "word": " multiplicity", "probability": 0.844970703125}, {"start": 1450.24, "end": 1450.34, "word": " of", "probability": 0.50341796875}, {"start": 1450.34, "end": 1450.42, "word": " the", "probability": 0.27197265625}, {"start": 1450.42, "end": 1450.72, "word": " numbers", "probability": 0.79296875}, {"start": 1450.72, "end": 1451.32, "word": " you", "probability": 0.60888671875}, {"start": 1451.32, "end": 1451.4, "word": " will", "probability": 0.345458984375}, {"start": 1451.4, "end": 1451.56, "word": " understand", "probability": 0.62548828125}, {"start": 1451.56, "end": 1451.68, "word": " that", "probability": 0.8095703125}, {"start": 1451.68, "end": 1451.78, "word": " it", "probability": 0.3759765625}, {"start": 1451.78, "end": 1451.78, "word": " is", "probability": 0.68505859375}, {"start": 1451.78, "end": 1452.04, "word": " an", "probability": 0.4453125}, {"start": 1452.04, "end": 1452.94, "word": " interchangeable", "probability": 0.410888671875}, {"start": 1452.94, "end": 1452.94, "word": " relationship", "probability": 0.444091796875}, {"start": 1452.94, "end": 1453.48, "word": " which", "probability": 0.12249755859375}, {"start": 1453.48, "end": 1453.84, "word": " means", "probability": 0.92431640625}, {"start": 1453.84, "end": 1453.96, "word": " that", "probability": 0.51025390625}, {"start": 1453.96, "end": 1454.02, "word": " the", "probability": 0.70703125}, {"start": 1454.02, "end": 1454.36, "word": " patient", "probability": 0.92333984375}, {"start": 1454.36, "end": 1454.9, "word": " uses", "probability": 0.59619140625}, {"start": 1454.9, "end": 1455.36, "word": " an", "probability": 0.312744140625}, {"start": 1455.36, "end": 1455.58, "word": " object", "probability": 0.96923828125}, {"start": 1455.58, "end": 1456.06, "word": " from", "probability": 0.4521484375}, {"start": 1456.06, "end": 1456.28, "word": " the", "probability": 0.1541748046875}, {"start": 1456.28, "end": 1457.4, "word": " patient", "probability": 0.80126953125}, {"start": 1457.4, "end": 1457.58, "word": " and", "probability": 0.53173828125}, {"start": 1457.58, "end": 1457.74, "word": " the", "probability": 0.66455078125}, {"start": 1457.74, "end": 1458.16, "word": " patient", "probability": 0.90771484375}, {"start": 1458.16, "end": 1458.58, "word": " also", "probability": 0.4873046875}, {"start": 1458.58, "end": 1459.78, "word": " uses", "probability": 0.84619140625}, {"start": 1459.78, "end": 1459.94, "word": " an", "probability": 0.66357421875}, {"start": 1459.94, "end": 1460.12, "word": " object", "probability": 0.97802734375}, {"start": 1460.12, "end": 1460.3, "word": " from", "probability": 0.82373046875}, {"start": 1460.3, "end": 1460.38, "word": " the", "probability": 0.71044921875}, {"start": 1460.38, "end": 1460.58, "word": " patient", "probability": 0.9365234375}, {"start": 1460.58, "end": 1460.94, "word": " record", "probability": 0.86279296875}], "temperature": 1.0}, {"id": 60, "seek": 148787, "start": 1463.21, "end": 1487.87, "text": "Patient record uses a list of consultations and the consultation has a reference to whom? To the patient record The idea is that you want to see the drawing and you want to imagine the code directly The second example is part of GUI Class window has a scroll bar, title bar and a list of menus", "tokens": [29331, 1196, 2136, 4960, 257, 1329, 295, 7189, 763, 293, 264, 20932, 575, 257, 6408, 281, 7101, 30, 1407, 264, 4537, 2136, 440, 1558, 307, 300, 291, 528, 281, 536, 264, 6316, 293, 291, 528, 281, 3811, 264, 3089, 3838, 440, 1150, 1365, 307, 644, 295, 17917, 40, 9471, 4910, 575, 257, 11369, 2159, 11, 4876, 2159, 293, 257, 1329, 295, 30347], "avg_logprob": -0.52777780237652, "compression_ratio": 1.646067415730337, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 1463.21, "end": 1463.77, "word": "Patient", "probability": 0.492095947265625}, {"start": 1463.77, "end": 1463.93, "word": " record", "probability": 0.54296875}, {"start": 1463.93, "end": 1464.21, "word": " uses", "probability": 0.429443359375}, {"start": 1464.21, "end": 1464.41, "word": " a", "probability": 0.32470703125}, {"start": 1464.41, "end": 1464.59, "word": " list", "probability": 0.8837890625}, {"start": 1464.59, "end": 1464.71, "word": " of", "probability": 0.9658203125}, {"start": 1464.71, "end": 1465.55, "word": " consultations", "probability": 0.795166015625}, {"start": 1465.55, "end": 1466.11, "word": " and", "probability": 0.306640625}, {"start": 1466.11, "end": 1466.21, "word": " the", "probability": 0.343994140625}, {"start": 1466.21, "end": 1466.69, "word": " consultation", "probability": 0.394775390625}, {"start": 1466.69, "end": 1467.09, "word": " has", "probability": 0.482666015625}, {"start": 1467.09, "end": 1467.17, "word": " a", "probability": 0.5380859375}, {"start": 1467.17, "end": 1467.45, "word": " reference", "probability": 0.91650390625}, {"start": 1467.45, "end": 1467.71, "word": " to", "probability": 0.70166015625}, {"start": 1467.71, "end": 1467.83, "word": " whom?", "probability": 0.356689453125}, {"start": 1468.25, "end": 1468.77, "word": " To", "probability": 0.38623046875}, {"start": 1468.77, "end": 1469.03, "word": " the", "probability": 0.78125}, {"start": 1469.03, "end": 1469.27, "word": " patient", "probability": 0.8388671875}, {"start": 1469.27, "end": 1469.71, "word": " record", "probability": 0.8798828125}, {"start": 1469.71, "end": 1470.55, "word": " The", "probability": 0.2469482421875}, {"start": 1470.55, "end": 1470.77, "word": " idea", "probability": 0.828125}, {"start": 1470.77, "end": 1470.95, "word": " is", "probability": 0.76220703125}, {"start": 1470.95, "end": 1471.21, "word": " that", "probability": 0.5166015625}, {"start": 1471.21, "end": 1471.23, "word": " you", "probability": 0.849609375}, {"start": 1471.23, "end": 1471.35, "word": " want", "probability": 0.3349609375}, {"start": 1471.35, "end": 1471.47, "word": " to", "probability": 0.9609375}, {"start": 1471.47, "end": 1471.67, "word": " see", "probability": 0.69482421875}, {"start": 1471.67, "end": 1471.97, "word": " the", "probability": 0.755859375}, {"start": 1471.97, "end": 1472.23, "word": " drawing", "probability": 0.53369140625}, {"start": 1472.23, "end": 1473.41, "word": " and", "probability": 0.802734375}, {"start": 1473.41, "end": 1473.41, "word": " you", "probability": 0.2705078125}, {"start": 1473.41, "end": 1473.55, "word": " want", "probability": 0.6298828125}, {"start": 1473.55, "end": 1473.65, "word": " to", "probability": 0.96337890625}, {"start": 1473.65, "end": 1474.11, "word": " imagine", "probability": 0.7568359375}, {"start": 1474.11, "end": 1475.09, "word": " the", "probability": 0.8525390625}, {"start": 1475.09, "end": 1475.29, "word": " code", "probability": 0.88720703125}, {"start": 1475.29, "end": 1475.91, "word": " directly", "probability": 0.276611328125}, {"start": 1475.91, "end": 1477.51, "word": " The", "probability": 0.205322265625}, {"start": 1477.51, "end": 1480.75, "word": " second", "probability": 0.69775390625}, {"start": 1480.75, "end": 1480.75, "word": " example", "probability": 0.95654296875}, {"start": 1480.75, "end": 1481.93, "word": " is", "probability": 0.5439453125}, {"start": 1481.93, "end": 1482.75, "word": " part", "probability": 0.39111328125}, {"start": 1482.75, "end": 1482.97, "word": " of", "probability": 0.96630859375}, {"start": 1482.97, "end": 1483.57, "word": " GUI", "probability": 0.94140625}, {"start": 1483.57, "end": 1484.43, "word": " Class", "probability": 0.36474609375}, {"start": 1484.43, "end": 1484.83, "word": " window", "probability": 0.70361328125}, {"start": 1484.83, "end": 1485.35, "word": " has", "probability": 0.24609375}, {"start": 1485.35, "end": 1485.49, "word": " a", "probability": 0.5322265625}, {"start": 1485.49, "end": 1485.95, "word": " scroll", "probability": 0.50927734375}, {"start": 1485.95, "end": 1486.37, "word": " bar,", "probability": 0.73583984375}, {"start": 1486.43, "end": 1486.79, "word": " title", "probability": 0.95068359375}, {"start": 1486.79, "end": 1487.15, "word": " bar", "probability": 0.93408203125}, {"start": 1487.15, "end": 1487.25, "word": " and", "probability": 0.51806640625}, {"start": 1487.25, "end": 1487.27, "word": " a", "probability": 0.468505859375}, {"start": 1487.27, "end": 1487.45, "word": " list", "probability": 0.9423828125}, {"start": 1487.45, "end": 1487.59, "word": " of", "probability": 0.96142578125}, {"start": 1487.59, "end": 1487.87, "word": " menus", "probability": 0.57568359375}], "temperature": 1.0}, {"id": 61, "seek": 150835, "start": 1488.91, "end": 1508.35, "text": "Okay, what is this? Constructor. He created all of these. This is also related to association. The window has a relation with three classes, including the school bar, the title bar and the menu. Okay? But what is the relation? Composition. This window has a relation with these three classes.", "tokens": [8297, 11, 437, 307, 341, 30, 8574, 14535, 13, 634, 2942, 439, 295, 613, 13, 639, 307, 611, 4077, 281, 14598, 13, 440, 4910, 575, 257, 9721, 365, 1045, 5359, 11, 3009, 264, 1395, 2159, 11, 264, 4876, 2159, 293, 264, 6510, 13, 1033, 30, 583, 437, 307, 264, 9721, 30, 6620, 5830, 13, 639, 4910, 575, 257, 9721, 365, 613, 1045, 5359, 13], "avg_logprob": -0.41177884615384613, "compression_ratio": 1.697674418604651, "no_speech_prob": 1.5556812286376953e-05, "words": [{"start": 1488.91, "end": 1489.17, "word": "Okay,", "probability": 0.14501953125}, {"start": 1489.23, "end": 1489.39, "word": " what", "probability": 0.51416015625}, {"start": 1489.39, "end": 1489.39, "word": " is", "probability": 0.79296875}, {"start": 1489.39, "end": 1489.67, "word": " this?", "probability": 0.837890625}, {"start": 1490.73, "end": 1491.19, "word": " Constructor.", "probability": 0.721435546875}, {"start": 1491.53, "end": 1491.75, "word": " He", "probability": 0.414794921875}, {"start": 1491.75, "end": 1491.95, "word": " created", "probability": 0.58154296875}, {"start": 1491.95, "end": 1492.77, "word": " all", "probability": 0.603515625}, {"start": 1492.77, "end": 1492.85, "word": " of", "probability": 0.56103515625}, {"start": 1492.85, "end": 1492.85, "word": " these.", "probability": 0.41357421875}, {"start": 1493.47, "end": 1493.93, "word": " This", "probability": 0.400390625}, {"start": 1493.93, "end": 1494.11, "word": " is", "probability": 0.59521484375}, {"start": 1494.11, "end": 1494.21, "word": " also", "probability": 0.779296875}, {"start": 1494.21, "end": 1494.43, "word": " related", "probability": 0.19140625}, {"start": 1494.43, "end": 1494.57, "word": " to", "probability": 0.962890625}, {"start": 1494.57, "end": 1495.09, "word": " association.", "probability": 0.78759765625}, {"start": 1495.43, "end": 1495.53, "word": " The", "probability": 0.5126953125}, {"start": 1495.53, "end": 1495.73, "word": " window", "probability": 0.89501953125}, {"start": 1495.73, "end": 1495.93, "word": " has", "probability": 0.83251953125}, {"start": 1495.93, "end": 1496.29, "word": " a", "probability": 0.33837890625}, {"start": 1496.29, "end": 1496.29, "word": " relation", "probability": 0.5537109375}, {"start": 1496.29, "end": 1496.47, "word": " with", "probability": 0.57470703125}, {"start": 1496.47, "end": 1496.83, "word": " three", "probability": 0.66552734375}, {"start": 1496.83, "end": 1497.27, "word": " classes,", "probability": 0.88916015625}, {"start": 1497.37, "end": 1497.55, "word": " including", "probability": 0.2281494140625}, {"start": 1497.55, "end": 1498.67, "word": " the", "probability": 0.59033203125}, {"start": 1498.67, "end": 1498.93, "word": " school", "probability": 0.7841796875}, {"start": 1498.93, "end": 1499.23, "word": " bar,", "probability": 0.8955078125}, {"start": 1499.39, "end": 1499.45, "word": " the", "probability": 0.68310546875}, {"start": 1499.45, "end": 1499.69, "word": " title", "probability": 0.95703125}, {"start": 1499.69, "end": 1500.03, "word": " bar", "probability": 0.95166015625}, {"start": 1500.03, "end": 1500.21, "word": " and", "probability": 0.64892578125}, {"start": 1500.21, "end": 1500.27, "word": " the", "probability": 0.87646484375}, {"start": 1500.27, "end": 1500.47, "word": " menu.", "probability": 0.96484375}, {"start": 1501.51, "end": 1501.79, "word": " Okay?", "probability": 0.56103515625}, {"start": 1503.21, "end": 1503.67, "word": " But", "probability": 0.83837890625}, {"start": 1503.67, "end": 1503.79, "word": " what", "probability": 0.75146484375}, {"start": 1503.79, "end": 1503.79, "word": " is", "probability": 0.8564453125}, {"start": 1503.79, "end": 1503.85, "word": " the", "probability": 0.86181640625}, {"start": 1503.85, "end": 1504.09, "word": " relation?", "probability": 0.76025390625}, {"start": 1505.29, "end": 1505.75, "word": " Composition.", "probability": 0.9423828125}, {"start": 1506.09, "end": 1506.27, "word": " This", "probability": 0.53857421875}, {"start": 1506.27, "end": 1506.95, "word": " window", "probability": 0.75732421875}, {"start": 1506.95, "end": 1507.15, "word": " has", "probability": 0.84716796875}, {"start": 1507.15, "end": 1507.25, "word": " a", "probability": 0.8916015625}, {"start": 1507.25, "end": 1507.41, "word": " relation", "probability": 0.93994140625}, {"start": 1507.41, "end": 1507.59, "word": " with", "probability": 0.8408203125}, {"start": 1507.59, "end": 1507.73, "word": " these", "probability": 0.5556640625}, {"start": 1507.73, "end": 1507.97, "word": " three", "probability": 0.92822265625}, {"start": 1507.97, "end": 1508.35, "word": " classes.", "probability": 0.9033203125}], "temperature": 1.0}, {"id": 62, "seek": 153572, "start": 1509.38, "end": 1535.72, "text": " Of course these have attributes, but now because I'm explaining the meaning of the relationship that appeared inside the class And this is the relationship between them, and notice what he did here, composition Yes, it is supposed that as long as there is an arrow, he did not put the number H here Okay, we finished the first relationship, which is the relationship of what? Association", "tokens": [2720, 1164, 613, 362, 17212, 11, 457, 586, 570, 286, 478, 13468, 264, 3620, 295, 264, 2480, 300, 8516, 1854, 264, 1508, 400, 341, 307, 264, 2480, 1296, 552, 11, 293, 3449, 437, 415, 630, 510, 11, 12686, 1079, 11, 309, 307, 3442, 300, 382, 938, 382, 456, 307, 364, 11610, 11, 415, 630, 406, 829, 264, 1230, 389, 510, 1033, 11, 321, 4335, 264, 700, 2480, 11, 597, 307, 264, 2480, 295, 437, 30, 10734], "avg_logprob": -0.5892857019003336, "compression_ratio": 1.7321428571428572, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 1509.38, "end": 1509.68, "word": " Of", "probability": 0.44873046875}, {"start": 1509.68, "end": 1509.8, "word": " course", "probability": 0.94921875}, {"start": 1509.8, "end": 1510.24, "word": " these", "probability": 0.2059326171875}, {"start": 1510.24, "end": 1510.46, "word": " have", "probability": 0.477294921875}, {"start": 1510.46, "end": 1511.0, "word": " attributes,", "probability": 0.6806640625}, {"start": 1511.32, "end": 1511.44, "word": " but", "probability": 0.81298828125}, {"start": 1511.44, "end": 1511.76, "word": " now", "probability": 0.1529541015625}, {"start": 1511.76, "end": 1512.0, "word": " because", "probability": 0.34814453125}, {"start": 1512.0, "end": 1512.2, "word": " I'm", "probability": 0.54638671875}, {"start": 1512.2, "end": 1512.4, "word": " explaining", "probability": 0.1929931640625}, {"start": 1512.4, "end": 1512.46, "word": " the", "probability": 0.5771484375}, {"start": 1512.46, "end": 1512.46, "word": " meaning", "probability": 0.57177734375}, {"start": 1512.46, "end": 1512.8, "word": " of", "probability": 0.3310546875}, {"start": 1512.8, "end": 1512.84, "word": " the", "probability": 0.6953125}, {"start": 1512.84, "end": 1513.08, "word": " relationship", "probability": 0.50830078125}, {"start": 1513.08, "end": 1513.24, "word": " that", "probability": 0.4052734375}, {"start": 1513.24, "end": 1513.66, "word": " appeared", "probability": 0.335693359375}, {"start": 1513.66, "end": 1514.44, "word": " inside", "probability": 0.66064453125}, {"start": 1514.44, "end": 1514.6, "word": " the", "probability": 0.806640625}, {"start": 1514.6, "end": 1514.92, "word": " class", "probability": 0.92822265625}, {"start": 1514.92, "end": 1515.6, "word": " And", "probability": 0.305419921875}, {"start": 1515.6, "end": 1515.74, "word": " this", "probability": 0.3310546875}, {"start": 1515.74, "end": 1515.8, "word": " is", "probability": 0.904296875}, {"start": 1515.8, "end": 1515.84, "word": " the", "probability": 0.8935546875}, {"start": 1515.84, "end": 1516.1, "word": " relationship", "probability": 0.81689453125}, {"start": 1516.1, "end": 1516.38, "word": " between", "probability": 0.818359375}, {"start": 1516.38, "end": 1516.96, "word": " them,", "probability": 0.8857421875}, {"start": 1517.14, "end": 1517.34, "word": " and", "probability": 0.298583984375}, {"start": 1517.34, "end": 1517.8, "word": " notice", "probability": 0.68505859375}, {"start": 1517.8, "end": 1517.96, "word": " what", "probability": 0.59765625}, {"start": 1517.96, "end": 1517.98, "word": " he", "probability": 0.33935546875}, {"start": 1517.98, "end": 1518.16, "word": " did", "probability": 0.662109375}, {"start": 1518.16, "end": 1518.66, "word": " here,", "probability": 0.54248046875}, {"start": 1519.16, "end": 1519.72, "word": " composition", "probability": 0.78662109375}, {"start": 1519.72, "end": 1524.38, "word": " Yes,", "probability": 0.263671875}, {"start": 1524.54, "end": 1524.54, "word": " it", "probability": 0.41943359375}, {"start": 1524.54, "end": 1524.64, "word": " is", "probability": 0.450927734375}, {"start": 1524.64, "end": 1524.94, "word": " supposed", "probability": 0.78857421875}, {"start": 1524.94, "end": 1525.06, "word": " that", "probability": 0.296142578125}, {"start": 1525.06, "end": 1525.16, "word": " as", "probability": 0.5458984375}, {"start": 1525.16, "end": 1525.34, "word": " long", "probability": 0.8671875}, {"start": 1525.34, "end": 1525.34, "word": " as", "probability": 0.9619140625}, {"start": 1525.34, "end": 1525.5, "word": " there", "probability": 0.88916015625}, {"start": 1525.5, "end": 1525.5, "word": " is", "probability": 0.880859375}, {"start": 1525.5, "end": 1525.7, "word": " an", "probability": 0.282470703125}, {"start": 1525.7, "end": 1525.88, "word": " arrow,", "probability": 0.79345703125}, {"start": 1526.74, "end": 1526.8, "word": " he", "probability": 0.1683349609375}, {"start": 1526.8, "end": 1526.88, "word": " did", "probability": 0.43115234375}, {"start": 1526.88, "end": 1526.88, "word": " not", "probability": 0.943359375}, {"start": 1526.88, "end": 1527.12, "word": " put", "probability": 0.765625}, {"start": 1527.12, "end": 1527.34, "word": " the", "probability": 0.70361328125}, {"start": 1527.34, "end": 1527.58, "word": " number", "probability": 0.888671875}, {"start": 1527.58, "end": 1527.88, "word": " H", "probability": 0.34326171875}, {"start": 1527.88, "end": 1529.2, "word": " here", "probability": 0.407470703125}, {"start": 1529.2, "end": 1531.48, "word": " Okay,", "probability": 0.378662109375}, {"start": 1531.76, "end": 1531.9, "word": " we", "probability": 0.89111328125}, {"start": 1531.9, "end": 1532.18, "word": " finished", "probability": 0.475830078125}, {"start": 1532.18, "end": 1532.52, "word": " the", "probability": 0.8916015625}, {"start": 1532.52, "end": 1533.08, "word": " first", "probability": 0.875}, {"start": 1533.08, "end": 1533.14, "word": " relationship,", "probability": 0.82568359375}, {"start": 1534.08, "end": 1534.18, "word": " which", "probability": 0.88525390625}, {"start": 1534.18, "end": 1534.32, "word": " is", "probability": 0.93701171875}, {"start": 1534.32, "end": 1534.38, "word": " the", "probability": 0.6787109375}, {"start": 1534.38, "end": 1534.58, "word": " relationship", "probability": 0.69580078125}, {"start": 1534.58, "end": 1534.72, "word": " of", "probability": 0.7265625}, {"start": 1534.72, "end": 1534.94, "word": " what?", "probability": 0.4560546875}, {"start": 1535.28, "end": 1535.72, "word": " Association", "probability": 0.44384765625}], "temperature": 1.0}, {"id": 63, "seek": 155897, "start": 1536.75, "end": 1558.97, "text": "Because there is a similar relation called Dependency Relation And it is very short, okay? It is an object that uses another object from another class, but on the level of the method, not on the level of the attributes of the class itself, okay? So here, for example, you understand that you have a class called Course Schedule", "tokens": [21831, 456, 307, 257, 2531, 9721, 1219, 4056, 521, 3020, 8738, 399, 400, 309, 307, 588, 2099, 11, 1392, 30, 467, 307, 364, 2657, 300, 4960, 1071, 2657, 490, 1071, 1508, 11, 457, 322, 264, 1496, 295, 264, 3170, 11, 406, 322, 264, 1496, 295, 264, 17212, 295, 264, 1508, 2564, 11, 1392, 30, 407, 510, 11, 337, 1365, 11, 291, 1223, 300, 291, 362, 257, 1508, 1219, 27327, 44926, 2271], "avg_logprob": -0.504774298104975, "compression_ratio": 1.676923076923077, "no_speech_prob": 0.0, "words": [{"start": 1536.75, "end": 1537.05, "word": "Because", "probability": 0.231201171875}, {"start": 1537.05, "end": 1537.25, "word": " there", "probability": 0.515625}, {"start": 1537.25, "end": 1537.25, "word": " is", "probability": 0.6962890625}, {"start": 1537.25, "end": 1537.33, "word": " a", "probability": 0.72802734375}, {"start": 1537.33, "end": 1537.79, "word": " similar", "probability": 0.576171875}, {"start": 1537.79, "end": 1537.93, "word": " relation", "probability": 0.451904296875}, {"start": 1537.93, "end": 1538.47, "word": " called", "probability": 0.240478515625}, {"start": 1538.47, "end": 1539.41, "word": " Dependency", "probability": 0.7347819010416666}, {"start": 1539.41, "end": 1540.53, "word": " Relation", "probability": 0.637451171875}, {"start": 1540.53, "end": 1541.01, "word": " And", "probability": 0.1585693359375}, {"start": 1541.01, "end": 1541.17, "word": " it", "probability": 0.7041015625}, {"start": 1541.17, "end": 1541.31, "word": " is", "probability": 0.60986328125}, {"start": 1541.31, "end": 1541.31, "word": " very", "probability": 0.259521484375}, {"start": 1541.31, "end": 1541.71, "word": " short,", "probability": 0.43212890625}, {"start": 1542.53, "end": 1542.89, "word": " okay?", "probability": 0.37646484375}, {"start": 1544.39, "end": 1544.39, "word": " It", "probability": 0.79833984375}, {"start": 1544.39, "end": 1544.67, "word": " is", "probability": 0.62646484375}, {"start": 1544.67, "end": 1545.09, "word": " an", "probability": 0.429443359375}, {"start": 1545.09, "end": 1547.07, "word": " object", "probability": 0.96337890625}, {"start": 1547.07, "end": 1547.21, "word": " that", "probability": 0.318115234375}, {"start": 1547.21, "end": 1547.63, "word": " uses", "probability": 0.42041015625}, {"start": 1547.63, "end": 1548.03, "word": " another", "probability": 0.299560546875}, {"start": 1548.03, "end": 1548.33, "word": " object", "probability": 0.8701171875}, {"start": 1548.33, "end": 1548.55, "word": " from", "probability": 0.693359375}, {"start": 1548.55, "end": 1548.83, "word": " another", "probability": 0.7783203125}, {"start": 1548.83, "end": 1549.15, "word": " class,", "probability": 0.95751953125}, {"start": 1549.45, "end": 1549.71, "word": " but", "probability": 0.8818359375}, {"start": 1549.71, "end": 1549.89, "word": " on", "probability": 0.3310546875}, {"start": 1549.89, "end": 1550.01, "word": " the", "probability": 0.783203125}, {"start": 1550.01, "end": 1550.25, "word": " level", "probability": 0.67578125}, {"start": 1550.25, "end": 1550.35, "word": " of", "probability": 0.96826171875}, {"start": 1550.35, "end": 1550.37, "word": " the", "probability": 0.414794921875}, {"start": 1550.37, "end": 1550.69, "word": " method,", "probability": 0.94677734375}, {"start": 1550.91, "end": 1551.01, "word": " not", "probability": 0.82470703125}, {"start": 1551.01, "end": 1551.15, "word": " on", "probability": 0.7353515625}, {"start": 1551.15, "end": 1551.27, "word": " the", "probability": 0.89453125}, {"start": 1551.27, "end": 1551.51, "word": " level", "probability": 0.828125}, {"start": 1551.51, "end": 1552.45, "word": " of", "probability": 0.96337890625}, {"start": 1552.45, "end": 1552.51, "word": " the", "probability": 0.5625}, {"start": 1552.51, "end": 1553.09, "word": " attributes", "probability": 0.8916015625}, {"start": 1553.09, "end": 1553.75, "word": " of", "probability": 0.8701171875}, {"start": 1553.75, "end": 1554.01, "word": " the", "probability": 0.8896484375}, {"start": 1554.01, "end": 1554.29, "word": " class", "probability": 0.84228515625}, {"start": 1554.29, "end": 1554.69, "word": " itself,", "probability": 0.57080078125}, {"start": 1554.69, "end": 1555.31, "word": " okay?", "probability": 0.81005859375}, {"start": 1555.77, "end": 1556.05, "word": " So", "probability": 0.445068359375}, {"start": 1556.05, "end": 1556.23, "word": " here,", "probability": 0.60498046875}, {"start": 1556.33, "end": 1556.41, "word": " for", "probability": 0.83349609375}, {"start": 1556.41, "end": 1556.57, "word": " example,", "probability": 0.939453125}, {"start": 1556.63, "end": 1556.75, "word": " you", "probability": 0.8740234375}, {"start": 1556.75, "end": 1557.07, "word": " understand", "probability": 0.54150390625}, {"start": 1557.07, "end": 1557.35, "word": " that", "probability": 0.59326171875}, {"start": 1557.35, "end": 1557.59, "word": " you", "probability": 0.443603515625}, {"start": 1557.59, "end": 1557.59, "word": " have", "probability": 0.94140625}, {"start": 1557.59, "end": 1557.65, "word": " a", "probability": 0.966796875}, {"start": 1557.65, "end": 1557.91, "word": " class", "probability": 0.96142578125}, {"start": 1557.91, "end": 1558.09, "word": " called", "probability": 0.689453125}, {"start": 1558.09, "end": 1558.45, "word": " Course", "probability": 0.51904296875}, {"start": 1558.45, "end": 1558.97, "word": " Schedule", "probability": 0.942626953125}], "temperature": 1.0}, {"id": 64, "seek": 158718, "start": 1561.1, "end": 1587.18, "text": "Okay, and we have a class called course Now, there is a relationship between them, but the line is crossed, not inheritance Dependency, as we call it What does it mean? It means that the course schedule uses an object from the course, but on the level of a method Look, there is a method called add What does it take? Course And remove? Course Now, as long as the course schedule has the word course", "tokens": [8297, 11, 293, 321, 362, 257, 1508, 1219, 1164, 823, 11, 456, 307, 257, 2480, 1296, 552, 11, 457, 264, 1622, 307, 14622, 11, 406, 32122, 4056, 521, 3020, 11, 382, 321, 818, 309, 708, 775, 309, 914, 30, 467, 1355, 300, 264, 1164, 7567, 4960, 364, 2657, 490, 264, 1164, 11, 457, 322, 264, 1496, 295, 257, 3170, 2053, 11, 456, 307, 257, 3170, 1219, 909, 708, 775, 309, 747, 30, 27327, 400, 4159, 30, 27327, 823, 11, 382, 938, 382, 264, 1164, 7567, 575, 264, 1349, 1164], "avg_logprob": -0.46388889617390106, "compression_ratio": 1.78125, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1561.1, "end": 1561.4, "word": "Okay,", "probability": 0.183837890625}, {"start": 1561.5, "end": 1561.62, "word": " and", "probability": 0.51611328125}, {"start": 1561.62, "end": 1561.86, "word": " we", "probability": 0.6103515625}, {"start": 1561.86, "end": 1561.86, "word": " have", "probability": 0.916015625}, {"start": 1561.86, "end": 1562.1, "word": " a", "probability": 0.708984375}, {"start": 1562.1, "end": 1562.4, "word": " class", "probability": 0.95458984375}, {"start": 1562.4, "end": 1562.66, "word": " called", "probability": 0.472900390625}, {"start": 1562.66, "end": 1563.88, "word": " course", "probability": 0.68310546875}, {"start": 1563.88, "end": 1564.84, "word": " Now,", "probability": 0.305419921875}, {"start": 1564.94, "end": 1565.1, "word": " there", "probability": 0.46484375}, {"start": 1565.1, "end": 1565.1, "word": " is", "probability": 0.67724609375}, {"start": 1565.1, "end": 1565.54, "word": " a", "probability": 0.62451171875}, {"start": 1565.54, "end": 1565.8, "word": " relationship", "probability": 0.480712890625}, {"start": 1565.8, "end": 1566.02, "word": " between", "probability": 0.78466796875}, {"start": 1566.02, "end": 1566.02, "word": " them,", "probability": 0.826171875}, {"start": 1566.14, "end": 1566.28, "word": " but", "probability": 0.85302734375}, {"start": 1566.28, "end": 1566.8, "word": " the", "probability": 0.46240234375}, {"start": 1566.8, "end": 1567.04, "word": " line", "probability": 0.037109375}, {"start": 1567.04, "end": 1567.88, "word": " is", "probability": 0.7490234375}, {"start": 1567.88, "end": 1568.28, "word": " crossed,", "probability": 0.2822265625}, {"start": 1568.4, "end": 1568.56, "word": " not", "probability": 0.5732421875}, {"start": 1568.56, "end": 1569.0, "word": " inheritance", "probability": 0.919921875}, {"start": 1569.0, "end": 1569.86, "word": " Dependency,", "probability": 0.6241048177083334}, {"start": 1569.88, "end": 1569.98, "word": " as", "probability": 0.30517578125}, {"start": 1569.98, "end": 1570.02, "word": " we", "probability": 0.71728515625}, {"start": 1570.02, "end": 1570.28, "word": " call", "probability": 0.82177734375}, {"start": 1570.28, "end": 1570.68, "word": " it", "probability": 0.91650390625}, {"start": 1570.68, "end": 1571.12, "word": " What", "probability": 0.59765625}, {"start": 1571.12, "end": 1571.2, "word": " does", "probability": 0.81298828125}, {"start": 1571.2, "end": 1571.54, "word": " it", "probability": 0.69873046875}, {"start": 1571.54, "end": 1571.54, "word": " mean?", "probability": 0.96142578125}, {"start": 1571.58, "end": 1571.7, "word": " It", "probability": 0.85107421875}, {"start": 1571.7, "end": 1571.94, "word": " means", "probability": 0.943359375}, {"start": 1571.94, "end": 1572.98, "word": " that", "probability": 0.84619140625}, {"start": 1572.98, "end": 1573.18, "word": " the", "probability": 0.4013671875}, {"start": 1573.18, "end": 1573.4, "word": " course", "probability": 0.93212890625}, {"start": 1573.4, "end": 1573.82, "word": " schedule", "probability": 0.86767578125}, {"start": 1573.82, "end": 1574.26, "word": " uses", "probability": 0.7626953125}, {"start": 1574.26, "end": 1574.48, "word": " an", "probability": 0.505859375}, {"start": 1574.48, "end": 1574.62, "word": " object", "probability": 0.978515625}, {"start": 1574.62, "end": 1574.84, "word": " from", "probability": 0.78662109375}, {"start": 1574.84, "end": 1574.94, "word": " the", "probability": 0.78564453125}, {"start": 1574.94, "end": 1575.12, "word": " course,", "probability": 0.94921875}, {"start": 1575.22, "end": 1575.34, "word": " but", "probability": 0.869140625}, {"start": 1575.34, "end": 1575.5, "word": " on", "probability": 0.32763671875}, {"start": 1575.5, "end": 1575.62, "word": " the", "probability": 0.174072265625}, {"start": 1575.62, "end": 1575.88, "word": " level", "probability": 0.73193359375}, {"start": 1575.88, "end": 1576.08, "word": " of", "probability": 0.91015625}, {"start": 1576.08, "end": 1576.52, "word": " a", "probability": 0.35009765625}, {"start": 1576.52, "end": 1577.2, "word": " method", "probability": 0.923828125}, {"start": 1577.2, "end": 1577.44, "word": " Look,", "probability": 0.2010498046875}, {"start": 1577.54, "end": 1577.66, "word": " there", "probability": 0.8466796875}, {"start": 1577.66, "end": 1577.66, "word": " is", "probability": 0.82470703125}, {"start": 1577.66, "end": 1577.72, "word": " a", "probability": 0.95654296875}, {"start": 1577.72, "end": 1577.92, "word": " method", "probability": 0.951171875}, {"start": 1577.92, "end": 1578.18, "word": " called", "probability": 0.82080078125}, {"start": 1578.18, "end": 1578.62, "word": " add", "probability": 0.7919921875}, {"start": 1578.62, "end": 1579.8, "word": " What", "probability": 0.292236328125}, {"start": 1579.8, "end": 1579.92, "word": " does", "probability": 0.8740234375}, {"start": 1579.92, "end": 1580.0, "word": " it", "probability": 0.92626953125}, {"start": 1580.0, "end": 1580.28, "word": " take?", "probability": 0.70751953125}, {"start": 1580.82, "end": 1581.3, "word": " Course", "probability": 0.77392578125}, {"start": 1581.3, "end": 1581.94, "word": " And", "probability": 0.595703125}, {"start": 1581.94, "end": 1582.38, "word": " remove?", "probability": 0.9208984375}, {"start": 1582.82, "end": 1583.3, "word": " Course", "probability": 0.87939453125}, {"start": 1583.3, "end": 1584.36, "word": " Now,", "probability": 0.81787109375}, {"start": 1584.48, "end": 1584.64, "word": " as", "probability": 0.53564453125}, {"start": 1584.64, "end": 1585.24, "word": " long", "probability": 0.72900390625}, {"start": 1585.24, "end": 1585.24, "word": " as", "probability": 0.97021484375}, {"start": 1585.24, "end": 1585.4, "word": " the", "probability": 0.65478515625}, {"start": 1585.4, "end": 1585.62, "word": " course", "probability": 0.9619140625}, {"start": 1585.62, "end": 1586.04, "word": " schedule", "probability": 0.9287109375}, {"start": 1586.04, "end": 1586.28, "word": " has", "probability": 0.59130859375}, {"start": 1586.28, "end": 1586.46, "word": " the", "probability": 0.77392578125}, {"start": 1586.46, "end": 1586.64, "word": " word", "probability": 0.90185546875}, {"start": 1586.64, "end": 1587.18, "word": " course", "probability": 0.92431640625}], "temperature": 1.0}, {"id": 65, "seek": 161431, "start": 1588.51, "end": 1614.31, "text": "It means that this relationship has to be clear. But this course does not know about the class level. It knows about the methods level. So we represent it with a broken arrow like this. Either I know how to enter the method or I learn it for the method. It means that there is nothing among the attributes of the course schedule that has anything to do with the course. The course only sees what?", "tokens": [3522, 1355, 300, 341, 2480, 575, 281, 312, 1850, 13, 583, 341, 1164, 775, 406, 458, 466, 264, 1508, 1496, 13, 467, 3255, 466, 264, 7150, 1496, 13, 407, 321, 2906, 309, 365, 257, 5463, 11610, 411, 341, 13, 13746, 286, 458, 577, 281, 3242, 264, 3170, 420, 286, 1466, 309, 337, 264, 3170, 13, 467, 1355, 300, 456, 307, 1825, 3654, 264, 17212, 295, 264, 1164, 7567, 300, 575, 1340, 281, 360, 365, 264, 1164, 13, 440, 1164, 787, 8194, 437, 30], "avg_logprob": -0.5777529967682702, "compression_ratio": 1.81651376146789, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1588.51, "end": 1588.69, "word": "It", "probability": 0.258056640625}, {"start": 1588.69, "end": 1588.81, "word": " means", "probability": 0.6943359375}, {"start": 1588.81, "end": 1589.15, "word": " that", "probability": 0.6044921875}, {"start": 1589.15, "end": 1589.51, "word": " this", "probability": 0.326904296875}, {"start": 1589.51, "end": 1589.81, "word": " relationship", "probability": 0.47021484375}, {"start": 1589.81, "end": 1589.95, "word": " has", "probability": 0.177734375}, {"start": 1589.95, "end": 1589.95, "word": " to", "probability": 0.96484375}, {"start": 1589.95, "end": 1589.95, "word": " be", "probability": 0.70947265625}, {"start": 1589.95, "end": 1589.95, "word": " clear.", "probability": 0.29833984375}, {"start": 1590.75, "end": 1591.15, "word": " But", "probability": 0.265869140625}, {"start": 1591.15, "end": 1591.89, "word": " this", "probability": 0.7685546875}, {"start": 1591.89, "end": 1592.15, "word": " course", "probability": 0.9638671875}, {"start": 1592.15, "end": 1592.33, "word": " does", "probability": 0.51318359375}, {"start": 1592.33, "end": 1592.33, "word": " not", "probability": 0.93505859375}, {"start": 1592.33, "end": 1592.65, "word": " know", "probability": 0.68603515625}, {"start": 1592.65, "end": 1592.79, "word": " about", "probability": 0.48486328125}, {"start": 1592.79, "end": 1592.85, "word": " the", "probability": 0.61669921875}, {"start": 1592.85, "end": 1593.57, "word": " class", "probability": 0.7783203125}, {"start": 1593.57, "end": 1593.63, "word": " level.", "probability": 0.7421875}, {"start": 1594.07, "end": 1594.47, "word": " It", "probability": 0.669921875}, {"start": 1594.47, "end": 1594.69, "word": " knows", "probability": 0.54736328125}, {"start": 1594.69, "end": 1594.93, "word": " about", "probability": 0.68408203125}, {"start": 1594.93, "end": 1594.93, "word": " the", "probability": 0.45654296875}, {"start": 1594.93, "end": 1596.41, "word": " methods", "probability": 0.464599609375}, {"start": 1596.41, "end": 1596.51, "word": " level.", "probability": 0.85888671875}, {"start": 1597.07, "end": 1597.27, "word": " So", "probability": 0.5302734375}, {"start": 1597.27, "end": 1597.41, "word": " we", "probability": 0.282470703125}, {"start": 1597.41, "end": 1597.63, "word": " represent", "probability": 0.22314453125}, {"start": 1597.63, "end": 1597.77, "word": " it", "probability": 0.83837890625}, {"start": 1597.77, "end": 1597.85, "word": " with", "probability": 0.5771484375}, {"start": 1597.85, "end": 1597.91, "word": " a", "probability": 0.75390625}, {"start": 1597.91, "end": 1597.91, "word": " broken", "probability": 0.047515869140625}, {"start": 1597.91, "end": 1598.05, "word": " arrow", "probability": 0.313720703125}, {"start": 1598.05, "end": 1598.15, "word": " like", "probability": 0.4775390625}, {"start": 1598.15, "end": 1598.83, "word": " this.", "probability": 0.73583984375}, {"start": 1602.77, "end": 1603.17, "word": " Either", "probability": 0.57861328125}, {"start": 1603.17, "end": 1603.35, "word": " I", "probability": 0.765625}, {"start": 1603.35, "end": 1603.51, "word": " know", "probability": 0.8388671875}, {"start": 1603.51, "end": 1603.67, "word": " how", "probability": 0.1510009765625}, {"start": 1603.67, "end": 1603.67, "word": " to", "probability": 0.96435546875}, {"start": 1603.67, "end": 1603.73, "word": " enter", "probability": 0.38720703125}, {"start": 1603.73, "end": 1603.87, "word": " the", "probability": 0.712890625}, {"start": 1603.87, "end": 1604.03, "word": " method", "probability": 0.94287109375}, {"start": 1604.03, "end": 1604.17, "word": " or", "probability": 0.78271484375}, {"start": 1604.17, "end": 1604.31, "word": " I", "probability": 0.87841796875}, {"start": 1604.31, "end": 1604.53, "word": " learn", "probability": 0.1495361328125}, {"start": 1604.53, "end": 1604.83, "word": " it", "probability": 0.407470703125}, {"start": 1604.83, "end": 1605.43, "word": " for", "probability": 0.37646484375}, {"start": 1605.43, "end": 1605.51, "word": " the", "probability": 0.88720703125}, {"start": 1605.51, "end": 1605.79, "word": " method.", "probability": 0.9580078125}, {"start": 1606.35, "end": 1606.65, "word": " It", "probability": 0.1949462890625}, {"start": 1606.65, "end": 1606.71, "word": " means", "probability": 0.91455078125}, {"start": 1606.71, "end": 1606.77, "word": " that", "probability": 0.78076171875}, {"start": 1606.77, "end": 1606.87, "word": " there", "probability": 0.72021484375}, {"start": 1606.87, "end": 1607.15, "word": " is", "probability": 0.75732421875}, {"start": 1607.15, "end": 1607.19, "word": " nothing", "probability": 0.5146484375}, {"start": 1607.19, "end": 1607.51, "word": " among", "probability": 0.16015625}, {"start": 1607.51, "end": 1607.69, "word": " the", "probability": 0.8896484375}, {"start": 1607.69, "end": 1608.23, "word": " attributes", "probability": 0.7734375}, {"start": 1608.23, "end": 1608.41, "word": " of", "probability": 0.53369140625}, {"start": 1608.41, "end": 1608.55, "word": " the", "probability": 0.81494140625}, {"start": 1608.55, "end": 1608.77, "word": " course", "probability": 0.95458984375}, {"start": 1608.77, "end": 1609.31, "word": " schedule", "probability": 0.837890625}, {"start": 1609.31, "end": 1610.09, "word": " that", "probability": 0.2362060546875}, {"start": 1610.09, "end": 1610.49, "word": " has", "probability": 0.79052734375}, {"start": 1610.49, "end": 1610.65, "word": " anything", "probability": 0.6259765625}, {"start": 1610.65, "end": 1610.73, "word": " to", "probability": 0.9541015625}, {"start": 1610.73, "end": 1610.75, "word": " do", "probability": 0.962890625}, {"start": 1610.75, "end": 1610.85, "word": " with", "probability": 0.90087890625}, {"start": 1610.85, "end": 1611.21, "word": " the", "probability": 0.78076171875}, {"start": 1611.21, "end": 1611.21, "word": " course.", "probability": 0.96875}, {"start": 1612.65, "end": 1613.05, "word": " The", "probability": 0.50537109375}, {"start": 1613.05, "end": 1613.33, "word": " course", "probability": 0.9755859375}, {"start": 1613.33, "end": 1613.47, "word": " only", "probability": 0.453369140625}, {"start": 1613.47, "end": 1613.71, "word": " sees", "probability": 0.69287109375}, {"start": 1613.71, "end": 1614.31, "word": " what?", "probability": 0.68115234375}], "temperature": 1.0}, {"id": 66, "seek": 164275, "start": 1615.07, "end": 1642.75, "text": " within the method or as a parameter of the method okay? outside of the method I mean there is no .. I mean there is no one of the attributes that is essential to the relationship with the course if there is one, what do you call it? association okay? dependency, the arrow is crossed which means that the course schedule uses the course but at the level of the methods that's it. calm down guys because again, the goal is that when you see the drawing", "tokens": [1951, 264, 3170, 420, 382, 257, 13075, 295, 264, 3170, 1392, 30, 2380, 295, 264, 3170, 286, 914, 456, 307, 572, 4386, 286, 914, 456, 307, 572, 472, 295, 264, 17212, 300, 307, 7115, 281, 264, 2480, 365, 264, 1164, 498, 456, 307, 472, 11, 437, 360, 291, 818, 309, 30, 14598, 1392, 30, 33621, 11, 264, 11610, 307, 14622, 597, 1355, 300, 264, 1164, 7567, 4960, 264, 1164, 457, 412, 264, 1496, 295, 264, 7150, 300, 311, 309, 13, 7151, 760, 1074, 570, 797, 11, 264, 3387, 307, 300, 562, 291, 536, 264, 6316], "avg_logprob": -0.5908203000823656, "compression_ratio": 1.9234042553191488, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1615.07, "end": 1615.43, "word": " within", "probability": 0.1533203125}, {"start": 1615.43, "end": 1615.61, "word": " the", "probability": 0.81103515625}, {"start": 1615.61, "end": 1615.85, "word": " method", "probability": 0.92431640625}, {"start": 1615.85, "end": 1616.05, "word": " or", "probability": 0.75341796875}, {"start": 1616.05, "end": 1616.21, "word": " as", "probability": 0.79443359375}, {"start": 1616.21, "end": 1616.27, "word": " a", "probability": 0.6484375}, {"start": 1616.27, "end": 1616.65, "word": " parameter", "probability": 0.96630859375}, {"start": 1616.65, "end": 1616.79, "word": " of", "probability": 0.43359375}, {"start": 1616.79, "end": 1616.87, "word": " the", "probability": 0.84716796875}, {"start": 1616.87, "end": 1617.19, "word": " method", "probability": 0.9453125}, {"start": 1617.19, "end": 1618.09, "word": " okay?", "probability": 0.08758544921875}, {"start": 1618.25, "end": 1618.37, "word": " outside", "probability": 0.2841796875}, {"start": 1618.37, "end": 1618.49, "word": " of", "probability": 0.486083984375}, {"start": 1618.49, "end": 1618.53, "word": " the", "probability": 0.8095703125}, {"start": 1618.53, "end": 1618.67, "word": " method", "probability": 0.89697265625}, {"start": 1618.67, "end": 1618.81, "word": " I", "probability": 0.12451171875}, {"start": 1618.81, "end": 1618.89, "word": " mean", "probability": 0.916015625}, {"start": 1618.89, "end": 1619.19, "word": " there", "probability": 0.488525390625}, {"start": 1619.19, "end": 1619.41, "word": " is", "probability": 0.63818359375}, {"start": 1619.41, "end": 1619.65, "word": " no", "probability": 0.76318359375}, {"start": 1619.65, "end": 1619.65, "word": " ..", "probability": 0.1778564453125}, {"start": 1619.65, "end": 1619.87, "word": " I", "probability": 0.284912109375}, {"start": 1619.87, "end": 1620.15, "word": " mean", "probability": 0.826171875}, {"start": 1620.15, "end": 1620.47, "word": " there", "probability": 0.65625}, {"start": 1620.47, "end": 1620.51, "word": " is", "probability": 0.75830078125}, {"start": 1620.51, "end": 1620.69, "word": " no", "probability": 0.61474609375}, {"start": 1620.69, "end": 1620.77, "word": " one", "probability": 0.273681640625}, {"start": 1620.77, "end": 1620.95, "word": " of", "probability": 0.72314453125}, {"start": 1620.95, "end": 1621.05, "word": " the", "probability": 0.86376953125}, {"start": 1621.05, "end": 1621.75, "word": " attributes", "probability": 0.75146484375}, {"start": 1621.75, "end": 1622.99, "word": " that", "probability": 0.300537109375}, {"start": 1622.99, "end": 1623.05, "word": " is", "probability": 0.607421875}, {"start": 1623.05, "end": 1623.41, "word": " essential", "probability": 0.5615234375}, {"start": 1623.41, "end": 1623.67, "word": " to", "probability": 0.261474609375}, {"start": 1623.67, "end": 1623.91, "word": " the", "probability": 0.39306640625}, {"start": 1623.91, "end": 1624.11, "word": " relationship", "probability": 0.5458984375}, {"start": 1624.11, "end": 1624.27, "word": " with", "probability": 0.354736328125}, {"start": 1624.27, "end": 1624.31, "word": " the", "probability": 0.66943359375}, {"start": 1624.31, "end": 1624.55, "word": " course", "probability": 0.97265625}, {"start": 1624.55, "end": 1625.47, "word": " if", "probability": 0.6552734375}, {"start": 1625.47, "end": 1625.73, "word": " there", "probability": 0.7392578125}, {"start": 1625.73, "end": 1625.79, "word": " is", "probability": 0.798828125}, {"start": 1625.79, "end": 1625.89, "word": " one,", "probability": 0.342041015625}, {"start": 1626.09, "end": 1626.19, "word": " what", "probability": 0.48779296875}, {"start": 1626.19, "end": 1626.19, "word": " do", "probability": 0.321044921875}, {"start": 1626.19, "end": 1626.29, "word": " you", "probability": 0.94287109375}, {"start": 1626.29, "end": 1626.45, "word": " call", "probability": 0.474609375}, {"start": 1626.45, "end": 1626.59, "word": " it?", "probability": 0.87158203125}, {"start": 1627.79, "end": 1628.21, "word": " association", "probability": 0.48974609375}, {"start": 1628.21, "end": 1629.23, "word": " okay?", "probability": 0.56591796875}, {"start": 1629.53, "end": 1629.95, "word": " dependency,", "probability": 0.68359375}, {"start": 1630.23, "end": 1630.35, "word": " the", "probability": 0.425537109375}, {"start": 1630.35, "end": 1630.49, "word": " arrow", "probability": 0.1561279296875}, {"start": 1630.49, "end": 1630.65, "word": " is", "probability": 0.361083984375}, {"start": 1630.65, "end": 1630.97, "word": " crossed", "probability": 0.5849609375}, {"start": 1630.97, "end": 1631.15, "word": " which", "probability": 0.366943359375}, {"start": 1631.15, "end": 1631.45, "word": " means", "probability": 0.9375}, {"start": 1631.45, "end": 1632.41, "word": " that", "probability": 0.380126953125}, {"start": 1632.41, "end": 1632.53, "word": " the", "probability": 0.7646484375}, {"start": 1632.53, "end": 1632.75, "word": " course", "probability": 0.9638671875}, {"start": 1632.75, "end": 1633.11, "word": " schedule", "probability": 0.88330078125}, {"start": 1633.11, "end": 1633.51, "word": " uses", "probability": 0.6025390625}, {"start": 1633.51, "end": 1633.79, "word": " the", "probability": 0.8720703125}, {"start": 1633.79, "end": 1634.09, "word": " course", "probability": 0.970703125}, {"start": 1634.09, "end": 1634.31, "word": " but", "probability": 0.4970703125}, {"start": 1634.31, "end": 1634.43, "word": " at", "probability": 0.248046875}, {"start": 1634.43, "end": 1634.59, "word": " the", "probability": 0.83154296875}, {"start": 1634.59, "end": 1634.81, "word": " level", "probability": 0.76513671875}, {"start": 1634.81, "end": 1635.65, "word": " of", "probability": 0.96240234375}, {"start": 1635.65, "end": 1635.71, "word": " the", "probability": 0.68115234375}, {"start": 1635.71, "end": 1636.05, "word": " methods", "probability": 0.693359375}, {"start": 1636.05, "end": 1636.43, "word": " that's", "probability": 0.666748046875}, {"start": 1636.43, "end": 1636.75, "word": " it.", "probability": 0.67626953125}, {"start": 1637.97, "end": 1638.39, "word": " calm", "probability": 0.1282958984375}, {"start": 1638.39, "end": 1638.41, "word": " down", "probability": 0.76708984375}, {"start": 1638.41, "end": 1638.91, "word": " guys", "probability": 0.67431640625}, {"start": 1638.91, "end": 1640.73, "word": " because", "probability": 0.461669921875}, {"start": 1640.73, "end": 1641.09, "word": " again,", "probability": 0.68212890625}, {"start": 1641.37, "end": 1641.41, "word": " the", "probability": 0.765625}, {"start": 1641.41, "end": 1641.61, "word": " goal", "probability": 0.6474609375}, {"start": 1641.61, "end": 1641.77, "word": " is", "probability": 0.87451171875}, {"start": 1641.77, "end": 1641.85, "word": " that", "probability": 0.68212890625}, {"start": 1641.85, "end": 1642.11, "word": " when", "probability": 0.8837890625}, {"start": 1642.11, "end": 1642.19, "word": " you", "probability": 0.96728515625}, {"start": 1642.19, "end": 1642.37, "word": " see", "probability": 0.81982421875}, {"start": 1642.37, "end": 1642.47, "word": " the", "probability": 0.83447265625}, {"start": 1642.47, "end": 1642.75, "word": " drawing", "probability": 0.54736328125}], "temperature": 1.0}, {"id": 67, "seek": 167174, "start": 1643.74, "end": 1671.74, "text": " Can you imagine how the code is made? The third type of relationships is the relationship of generalization, which refers to the relationship of inheritance. For example, when you do extend to another class, which in Java is called extend, but in Kotlin or in software it is not called extend, it is put twice. That is why it is called generalization. What is generalization? It is when a class extends another class.", "tokens": [1664, 291, 3811, 577, 264, 3089, 307, 1027, 30, 440, 2636, 2010, 295, 6159, 307, 264, 2480, 295, 2674, 2144, 11, 597, 14942, 281, 264, 2480, 295, 32122, 13, 1171, 1365, 11, 562, 291, 360, 10101, 281, 1071, 1508, 11, 597, 294, 10745, 307, 1219, 10101, 11, 457, 294, 30123, 5045, 420, 294, 2787, 6925, 68, 309, 307, 406, 1219, 10101, 11, 309, 307, 829, 6091, 13, 663, 307, 983, 309, 307, 1219, 2674, 2144, 13, 708, 307, 2674, 2144, 30, 467, 307, 562, 257, 1508, 26448, 1071, 1508, 13], "avg_logprob": -0.47390108907615747, "compression_ratio": 1.9, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1643.74, "end": 1643.86, "word": " Can", "probability": 0.0867919921875}, {"start": 1643.86, "end": 1643.9, "word": " you", "probability": 0.931640625}, {"start": 1643.9, "end": 1644.18, "word": " imagine", "probability": 0.8994140625}, {"start": 1644.18, "end": 1644.32, "word": " how", "probability": 0.303955078125}, {"start": 1644.32, "end": 1644.32, "word": " the", "probability": 0.51318359375}, {"start": 1644.32, "end": 1644.5, "word": " code", "probability": 0.9091796875}, {"start": 1644.5, "end": 1644.72, "word": " is", "probability": 0.66357421875}, {"start": 1644.72, "end": 1645.02, "word": " made?", "probability": 0.58251953125}, {"start": 1648.74, "end": 1649.18, "word": " The", "probability": 0.7822265625}, {"start": 1649.18, "end": 1649.58, "word": " third", "probability": 0.8515625}, {"start": 1649.58, "end": 1649.68, "word": " type", "probability": 0.64208984375}, {"start": 1649.68, "end": 1649.82, "word": " of", "probability": 0.82275390625}, {"start": 1649.82, "end": 1650.12, "word": " relationships", "probability": 0.465087890625}, {"start": 1650.12, "end": 1650.52, "word": " is", "probability": 0.671875}, {"start": 1650.52, "end": 1650.6, "word": " the", "probability": 0.389892578125}, {"start": 1650.6, "end": 1650.88, "word": " relationship", "probability": 0.208984375}, {"start": 1650.88, "end": 1651.38, "word": " of", "probability": 0.84130859375}, {"start": 1651.38, "end": 1652.2, "word": " generalization,", "probability": 0.78564453125}, {"start": 1652.42, "end": 1652.5, "word": " which", "probability": 0.81591796875}, {"start": 1652.5, "end": 1653.02, "word": " refers", "probability": 0.47998046875}, {"start": 1653.02, "end": 1653.16, "word": " to", "probability": 0.97216796875}, {"start": 1653.16, "end": 1653.2, "word": " the", "probability": 0.84765625}, {"start": 1653.2, "end": 1653.48, "word": " relationship", "probability": 0.8330078125}, {"start": 1653.48, "end": 1653.64, "word": " of", "probability": 0.8603515625}, {"start": 1653.64, "end": 1654.2, "word": " inheritance.", "probability": 0.88671875}, {"start": 1655.24, "end": 1655.66, "word": " For", "probability": 0.2822265625}, {"start": 1655.66, "end": 1655.66, "word": " example,", "probability": 0.87890625}, {"start": 1655.66, "end": 1655.76, "word": " when", "probability": 0.548828125}, {"start": 1655.76, "end": 1655.88, "word": " you", "probability": 0.95654296875}, {"start": 1655.88, "end": 1656.02, "word": " do", "probability": 0.1724853515625}, {"start": 1656.02, "end": 1656.54, "word": " extend", "probability": 0.68017578125}, {"start": 1656.54, "end": 1656.7, "word": " to", "probability": 0.4306640625}, {"start": 1656.7, "end": 1657.2, "word": " another", "probability": 0.875}, {"start": 1657.2, "end": 1657.2, "word": " class,", "probability": 0.953125}, {"start": 1657.62, "end": 1657.74, "word": " which", "probability": 0.50048828125}, {"start": 1657.74, "end": 1657.84, "word": " in", "probability": 0.36669921875}, {"start": 1657.84, "end": 1658.74, "word": " Java", "probability": 0.853515625}, {"start": 1658.74, "end": 1658.88, "word": " is", "probability": 0.6826171875}, {"start": 1658.88, "end": 1659.04, "word": " called", "probability": 0.72998046875}, {"start": 1659.04, "end": 1659.46, "word": " extend,", "probability": 0.82177734375}, {"start": 1659.76, "end": 1659.9, "word": " but", "probability": 0.81494140625}, {"start": 1659.9, "end": 1661.5, "word": " in", "probability": 0.74267578125}, {"start": 1661.5, "end": 1662.16, "word": " Kotlin", "probability": 0.9208984375}, {"start": 1662.16, "end": 1662.34, "word": " or", "probability": 0.76513671875}, {"start": 1662.34, "end": 1662.46, "word": " in", "probability": 0.336669921875}, {"start": 1662.46, "end": 1662.76, "word": " software", "probability": 0.6324869791666666}, {"start": 1662.76, "end": 1662.88, "word": " it", "probability": 0.62548828125}, {"start": 1662.88, "end": 1663.02, "word": " is", "probability": 0.61865234375}, {"start": 1663.02, "end": 1663.02, "word": " not", "probability": 0.7373046875}, {"start": 1663.02, "end": 1663.14, "word": " called", "probability": 0.57763671875}, {"start": 1663.14, "end": 1663.54, "word": " extend,", "probability": 0.89892578125}, {"start": 1663.58, "end": 1663.62, "word": " it", "probability": 0.432861328125}, {"start": 1663.62, "end": 1663.68, "word": " is", "probability": 0.6689453125}, {"start": 1663.68, "end": 1663.8, "word": " put", "probability": 0.14599609375}, {"start": 1663.8, "end": 1664.22, "word": " twice.", "probability": 0.2132568359375}, {"start": 1665.28, "end": 1665.72, "word": " That", "probability": 0.446533203125}, {"start": 1665.72, "end": 1665.84, "word": " is", "probability": 0.4482421875}, {"start": 1665.84, "end": 1665.92, "word": " why", "probability": 0.92529296875}, {"start": 1665.92, "end": 1666.06, "word": " it", "probability": 0.7958984375}, {"start": 1666.06, "end": 1666.12, "word": " is", "probability": 0.84130859375}, {"start": 1666.12, "end": 1666.46, "word": " called", "probability": 0.88330078125}, {"start": 1666.46, "end": 1668.58, "word": " generalization.", "probability": 0.87744140625}, {"start": 1668.72, "end": 1668.82, "word": " What", "probability": 0.56689453125}, {"start": 1668.82, "end": 1668.96, "word": " is", "probability": 0.5869140625}, {"start": 1668.96, "end": 1669.74, "word": " generalization?", "probability": 0.890869140625}, {"start": 1669.98, "end": 1670.32, "word": " It", "probability": 0.5283203125}, {"start": 1670.32, "end": 1670.32, "word": " is", "probability": 0.53271484375}, {"start": 1670.32, "end": 1670.36, "word": " when", "probability": 0.537109375}, {"start": 1670.36, "end": 1670.84, "word": " a", "probability": 0.70849609375}, {"start": 1670.84, "end": 1670.84, "word": " class", "probability": 0.96044921875}, {"start": 1670.84, "end": 1671.3, "word": " extends", "probability": 0.87109375}, {"start": 1671.3, "end": 1671.44, "word": " another", "probability": 0.8349609375}, {"start": 1671.44, "end": 1671.74, "word": " class.", "probability": 0.92138671875}], "temperature": 1.0}, {"id": 68, "seek": 169948, "start": 1672.88, "end": 1699.48, "text": " How do we represent it? With an arrow as well, but do you see how the arrow ends? The association ends like this. This is an association. Dependency is excessive. Generalization is inherited or extended. What does this mean? The one who is inherited is the super class.", "tokens": [1012, 360, 321, 2906, 309, 30, 2022, 364, 11610, 382, 731, 11, 457, 360, 291, 536, 577, 264, 11610, 5314, 30, 440, 14598, 5314, 411, 341, 13, 639, 307, 364, 14598, 13, 4056, 521, 3020, 307, 22704, 13, 6996, 2144, 307, 27091, 420, 10913, 13, 708, 775, 341, 914, 30, 440, 472, 567, 307, 27091, 307, 264, 1687, 1508, 13], "avg_logprob": -0.6178278805779629, "compression_ratio": 1.569767441860465, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 1672.88, "end": 1673.14, "word": " How", "probability": 0.236572265625}, {"start": 1673.14, "end": 1673.22, "word": " do", "probability": 0.389404296875}, {"start": 1673.22, "end": 1673.26, "word": " we", "probability": 0.469970703125}, {"start": 1673.26, "end": 1673.54, "word": " represent", "probability": 0.63330078125}, {"start": 1673.54, "end": 1673.78, "word": " it?", "probability": 0.69873046875}, {"start": 1674.52, "end": 1675.04, "word": " With", "probability": 0.32568359375}, {"start": 1675.04, "end": 1675.26, "word": " an", "probability": 0.266357421875}, {"start": 1675.26, "end": 1675.28, "word": " arrow", "probability": 0.7763671875}, {"start": 1675.28, "end": 1675.54, "word": " as", "probability": 0.1737060546875}, {"start": 1675.54, "end": 1675.64, "word": " well,", "probability": 0.919921875}, {"start": 1676.0, "end": 1676.64, "word": " but", "probability": 0.75146484375}, {"start": 1676.64, "end": 1676.94, "word": " do", "probability": 0.2113037109375}, {"start": 1676.94, "end": 1677.12, "word": " you", "probability": 0.96630859375}, {"start": 1677.12, "end": 1677.28, "word": " see", "probability": 0.83642578125}, {"start": 1677.28, "end": 1677.6, "word": " how", "probability": 0.71728515625}, {"start": 1677.6, "end": 1677.88, "word": " the", "probability": 0.441650390625}, {"start": 1677.88, "end": 1677.88, "word": " arrow", "probability": 0.63623046875}, {"start": 1677.88, "end": 1678.3, "word": " ends?", "probability": 0.4326171875}, {"start": 1679.04, "end": 1679.72, "word": " The", "probability": 0.340087890625}, {"start": 1679.72, "end": 1680.4, "word": " association", "probability": 0.62158203125}, {"start": 1680.4, "end": 1681.8, "word": " ends", "probability": 0.76025390625}, {"start": 1681.8, "end": 1682.24, "word": " like", "probability": 0.55517578125}, {"start": 1682.24, "end": 1682.66, "word": " this.", "probability": 0.88916015625}, {"start": 1682.92, "end": 1683.04, "word": " This", "probability": 0.373046875}, {"start": 1683.04, "end": 1683.1, "word": " is", "probability": 0.93115234375}, {"start": 1683.1, "end": 1683.2, "word": " an", "probability": 0.4052734375}, {"start": 1683.2, "end": 1683.68, "word": " association.", "probability": 0.87353515625}, {"start": 1687.34, "end": 1688.02, "word": " Dependency", "probability": 0.7189127604166666}, {"start": 1688.02, "end": 1688.22, "word": " is", "probability": 0.6396484375}, {"start": 1688.22, "end": 1689.34, "word": " excessive.", "probability": 0.0628662109375}, {"start": 1690.92, "end": 1691.6, "word": " Generalization", "probability": 0.801025390625}, {"start": 1691.6, "end": 1691.84, "word": " is", "probability": 0.556640625}, {"start": 1691.84, "end": 1692.32, "word": " inherited", "probability": 0.697265625}, {"start": 1692.32, "end": 1692.52, "word": " or", "probability": 0.578125}, {"start": 1692.52, "end": 1693.18, "word": " extended.", "probability": 0.5625}, {"start": 1695.16, "end": 1695.2, "word": " What", "probability": 0.2156982421875}, {"start": 1695.2, "end": 1695.2, "word": " does", "probability": 0.78271484375}, {"start": 1695.2, "end": 1696.3, "word": " this", "probability": 0.64208984375}, {"start": 1696.3, "end": 1696.72, "word": " mean?", "probability": 0.94287109375}, {"start": 1697.14, "end": 1697.7, "word": " The", "probability": 0.3818359375}, {"start": 1697.7, "end": 1697.7, "word": " one", "probability": 0.53955078125}, {"start": 1697.7, "end": 1697.72, "word": " who", "probability": 0.482177734375}, {"start": 1697.72, "end": 1698.0, "word": " is", "probability": 0.338134765625}, {"start": 1698.0, "end": 1698.08, "word": " inherited", "probability": 0.66650390625}, {"start": 1698.08, "end": 1698.72, "word": " is", "probability": 0.451904296875}, {"start": 1698.72, "end": 1698.88, "word": " the", "probability": 0.66162109375}, {"start": 1698.88, "end": 1699.06, "word": " super", "probability": 0.8349609375}, {"start": 1699.06, "end": 1699.48, "word": " class.", "probability": 0.495849609375}], "temperature": 1.0}, {"id": 69, "seek": 171950, "start": 1701.94, "end": 1719.5, "text": " who thinks that sometimes there are people who get confused. Okay? Because here the meaning is that the student extends the person. Okay? And its representation as a code is class student extends person. Okay? And when I see this relationship, I understand that this extends the class person.", "tokens": [567, 7309, 300, 2171, 456, 366, 561, 567, 483, 9019, 13, 1033, 30, 1436, 510, 264, 3620, 307, 300, 264, 3107, 26448, 264, 954, 13, 1033, 30, 400, 1080, 10290, 382, 257, 3089, 307, 1508, 3107, 26448, 954, 13, 1033, 30, 400, 562, 286, 536, 341, 2480, 11, 286, 1223, 300, 341, 26448, 264, 1508, 954, 13], "avg_logprob": -0.48383620638271857, "compression_ratio": 1.744047619047619, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1701.94, "end": 1702.26, "word": " who", "probability": 0.03924560546875}, {"start": 1702.26, "end": 1702.52, "word": " thinks", "probability": 0.25}, {"start": 1702.52, "end": 1702.8, "word": " that", "probability": 0.6806640625}, {"start": 1702.8, "end": 1703.16, "word": " sometimes", "probability": 0.845703125}, {"start": 1703.16, "end": 1703.4, "word": " there", "probability": 0.20703125}, {"start": 1703.4, "end": 1703.4, "word": " are", "probability": 0.8447265625}, {"start": 1703.4, "end": 1703.54, "word": " people", "probability": 0.79638671875}, {"start": 1703.54, "end": 1703.64, "word": " who", "probability": 0.7666015625}, {"start": 1703.64, "end": 1703.7, "word": " get", "probability": 0.275146484375}, {"start": 1703.7, "end": 1704.04, "word": " confused.", "probability": 0.92578125}, {"start": 1704.52, "end": 1704.72, "word": " Okay?", "probability": 0.135009765625}, {"start": 1704.98, "end": 1705.2, "word": " Because", "probability": 0.33251953125}, {"start": 1705.2, "end": 1705.4, "word": " here", "probability": 0.45361328125}, {"start": 1705.4, "end": 1705.48, "word": " the", "probability": 0.51513671875}, {"start": 1705.48, "end": 1705.66, "word": " meaning", "probability": 0.62060546875}, {"start": 1705.66, "end": 1705.78, "word": " is", "probability": 0.70361328125}, {"start": 1705.78, "end": 1705.84, "word": " that", "probability": 0.323974609375}, {"start": 1705.84, "end": 1705.9, "word": " the", "probability": 0.53662109375}, {"start": 1705.9, "end": 1706.2, "word": " student", "probability": 0.89794921875}, {"start": 1706.2, "end": 1707.0, "word": " extends", "probability": 0.85888671875}, {"start": 1707.0, "end": 1708.26, "word": " the", "probability": 0.85302734375}, {"start": 1708.26, "end": 1708.62, "word": " person.", "probability": 0.92724609375}, {"start": 1708.98, "end": 1709.3, "word": " Okay?", "probability": 0.66552734375}, {"start": 1709.38, "end": 1709.52, "word": " And", "probability": 0.85888671875}, {"start": 1709.52, "end": 1709.6, "word": " its", "probability": 0.373046875}, {"start": 1709.6, "end": 1709.84, "word": " representation", "probability": 0.68212890625}, {"start": 1709.84, "end": 1710.12, "word": " as", "probability": 0.685546875}, {"start": 1710.12, "end": 1710.22, "word": " a", "probability": 0.837890625}, {"start": 1710.22, "end": 1710.52, "word": " code", "probability": 0.931640625}, {"start": 1710.52, "end": 1710.76, "word": " is", "probability": 0.9130859375}, {"start": 1710.76, "end": 1712.08, "word": " class", "probability": 0.451416015625}, {"start": 1712.08, "end": 1712.58, "word": " student", "probability": 0.7900390625}, {"start": 1712.58, "end": 1713.38, "word": " extends", "probability": 0.89306640625}, {"start": 1713.38, "end": 1714.68, "word": " person.", "probability": 0.87158203125}, {"start": 1714.98, "end": 1715.32, "word": " Okay?", "probability": 0.7978515625}, {"start": 1715.4, "end": 1715.5, "word": " And", "probability": 0.424072265625}, {"start": 1715.5, "end": 1715.6, "word": " when", "probability": 0.6513671875}, {"start": 1715.6, "end": 1715.7, "word": " I", "probability": 0.9775390625}, {"start": 1715.7, "end": 1715.88, "word": " see", "probability": 0.79931640625}, {"start": 1715.88, "end": 1716.0, "word": " this", "probability": 0.88427734375}, {"start": 1716.0, "end": 1716.28, "word": " relationship,", "probability": 0.67919921875}, {"start": 1716.48, "end": 1716.54, "word": " I", "probability": 0.97412109375}, {"start": 1716.54, "end": 1716.7, "word": " understand", "probability": 0.67724609375}, {"start": 1716.7, "end": 1716.84, "word": " that", "probability": 0.931640625}, {"start": 1716.84, "end": 1717.0, "word": " this", "probability": 0.75146484375}, {"start": 1717.0, "end": 1717.56, "word": " extends", "probability": 0.50732421875}, {"start": 1717.56, "end": 1718.9, "word": " the", "probability": 0.5009765625}, {"start": 1718.9, "end": 1719.14, "word": " class", "probability": 0.95751953125}, {"start": 1719.14, "end": 1719.5, "word": " person.", "probability": 0.865234375}], "temperature": 1.0}, {"id": 70, "seek": 175300, "start": 1723.68, "end": 1753.0, "text": " This talks about inheritance, it says that the subclass inherits everything in the superclass. For example, this is an example, okay? This is similar to the drawing that I saw, okay? That I have a large superclass called doctor. I have subclasses hospital doctor and general practitioner, okay? And then this hospital doctor came with me, he is a superclass for whom? For consultant and team doctor. And who did the team doctor join? For trainee doctor and qualified doctor.", "tokens": [639, 6686, 466, 32122, 11, 309, 1619, 300, 264, 1422, 11665, 9484, 1208, 1203, 294, 264, 1687, 11665, 13, 1171, 1365, 11, 341, 307, 364, 1365, 11, 1392, 30, 639, 307, 2531, 281, 264, 6316, 300, 286, 1866, 11, 1392, 30, 663, 286, 362, 257, 2416, 1687, 11665, 1219, 4631, 13, 286, 362, 1422, 11665, 279, 4530, 4631, 293, 2674, 32125, 11, 1392, 30, 400, 550, 341, 4530, 4631, 1361, 365, 385, 11, 415, 307, 257, 1687, 11665, 337, 7101, 30, 1171, 24676, 293, 1469, 4631, 13, 400, 567, 630, 264, 1469, 4631, 3917, 30, 1171, 40350, 4631, 293, 15904, 4631, 13], "avg_logprob": -0.4326456403269351, "compression_ratio": 1.9230769230769231, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1723.68, "end": 1723.94, "word": " This", "probability": 0.274658203125}, {"start": 1723.94, "end": 1724.16, "word": " talks", "probability": 0.1241455078125}, {"start": 1724.16, "end": 1724.4, "word": " about", "probability": 0.90478515625}, {"start": 1724.4, "end": 1725.14, "word": " inheritance,", "probability": 0.66357421875}, {"start": 1725.32, "end": 1725.32, "word": " it", "probability": 0.1864013671875}, {"start": 1725.32, "end": 1725.48, "word": " says", "probability": 0.6591796875}, {"start": 1725.48, "end": 1725.68, "word": " that", "probability": 0.69287109375}, {"start": 1725.68, "end": 1725.72, "word": " the", "probability": 0.5302734375}, {"start": 1725.72, "end": 1726.12, "word": " subclass", "probability": 0.871337890625}, {"start": 1726.12, "end": 1726.54, "word": " inherits", "probability": 0.609619140625}, {"start": 1726.54, "end": 1726.84, "word": " everything", "probability": 0.8427734375}, {"start": 1726.84, "end": 1727.02, "word": " in", "probability": 0.65869140625}, {"start": 1727.02, "end": 1727.14, "word": " the", "probability": 0.88037109375}, {"start": 1727.14, "end": 1727.74, "word": " superclass.", "probability": 0.65673828125}, {"start": 1728.18, "end": 1728.46, "word": " For", "probability": 0.481689453125}, {"start": 1728.46, "end": 1728.64, "word": " example,", "probability": 0.9375}, {"start": 1728.72, "end": 1728.88, "word": " this", "probability": 0.65625}, {"start": 1728.88, "end": 1728.88, "word": " is", "probability": 0.412841796875}, {"start": 1728.88, "end": 1729.22, "word": " an", "probability": 0.82470703125}, {"start": 1729.22, "end": 1729.22, "word": " example,", "probability": 0.978515625}, {"start": 1729.76, "end": 1729.96, "word": " okay?", "probability": 0.311767578125}, {"start": 1730.08, "end": 1730.26, "word": " This", "probability": 0.58984375}, {"start": 1730.26, "end": 1730.3, "word": " is", "probability": 0.49609375}, {"start": 1730.3, "end": 1730.48, "word": " similar", "probability": 0.415283203125}, {"start": 1730.48, "end": 1730.78, "word": " to", "probability": 0.92138671875}, {"start": 1730.78, "end": 1730.92, "word": " the", "probability": 0.79052734375}, {"start": 1730.92, "end": 1731.14, "word": " drawing", "probability": 0.46142578125}, {"start": 1731.14, "end": 1731.22, "word": " that", "probability": 0.496337890625}, {"start": 1731.22, "end": 1731.36, "word": " I", "probability": 0.99169921875}, {"start": 1731.36, "end": 1731.62, "word": " saw,", "probability": 0.6396484375}, {"start": 1732.34, "end": 1732.56, "word": " okay?", "probability": 0.74462890625}, {"start": 1732.84, "end": 1733.14, "word": " That", "probability": 0.4052734375}, {"start": 1733.14, "end": 1733.46, "word": " I", "probability": 0.96630859375}, {"start": 1733.46, "end": 1733.48, "word": " have", "probability": 0.93408203125}, {"start": 1733.48, "end": 1733.56, "word": " a", "probability": 0.98779296875}, {"start": 1733.56, "end": 1733.56, "word": " large", "probability": 0.3935546875}, {"start": 1733.56, "end": 1734.22, "word": " superclass", "probability": 0.91064453125}, {"start": 1734.22, "end": 1735.6, "word": " called", "probability": 0.546875}, {"start": 1735.6, "end": 1736.0, "word": " doctor.", "probability": 0.51806640625}, {"start": 1736.58, "end": 1736.84, "word": " I", "probability": 0.7021484375}, {"start": 1736.84, "end": 1737.12, "word": " have", "probability": 0.91748046875}, {"start": 1737.12, "end": 1738.18, "word": " subclasses", "probability": 0.669921875}, {"start": 1738.18, "end": 1738.38, "word": " hospital", "probability": 0.3349609375}, {"start": 1738.38, "end": 1738.96, "word": " doctor", "probability": 0.82568359375}, {"start": 1738.96, "end": 1739.22, "word": " and", "probability": 0.89404296875}, {"start": 1739.22, "end": 1739.52, "word": " general", "probability": 0.908203125}, {"start": 1739.52, "end": 1740.12, "word": " practitioner,", "probability": 0.8818359375}, {"start": 1740.3, "end": 1741.16, "word": " okay?", "probability": 0.76708984375}, {"start": 1741.36, "end": 1741.52, "word": " And", "probability": 0.734375}, {"start": 1741.52, "end": 1741.76, "word": " then", "probability": 0.78515625}, {"start": 1741.76, "end": 1742.12, "word": " this", "probability": 0.8642578125}, {"start": 1742.12, "end": 1742.48, "word": " hospital", "probability": 0.81689453125}, {"start": 1742.48, "end": 1742.98, "word": " doctor", "probability": 0.89599609375}, {"start": 1742.98, "end": 1743.74, "word": " came", "probability": 0.16259765625}, {"start": 1743.74, "end": 1743.92, "word": " with", "probability": 0.446533203125}, {"start": 1743.92, "end": 1743.98, "word": " me,", "probability": 0.3642578125}, {"start": 1744.02, "end": 1744.2, "word": " he", "probability": 0.5244140625}, {"start": 1744.2, "end": 1744.26, "word": " is", "probability": 0.72314453125}, {"start": 1744.26, "end": 1744.36, "word": " a", "probability": 0.513671875}, {"start": 1744.36, "end": 1744.92, "word": " superclass", "probability": 0.929931640625}, {"start": 1744.92, "end": 1745.14, "word": " for", "probability": 0.81689453125}, {"start": 1745.14, "end": 1745.3, "word": " whom?", "probability": 0.88623046875}, {"start": 1745.62, "end": 1745.84, "word": " For", "probability": 0.71337890625}, {"start": 1745.84, "end": 1746.32, "word": " consultant", "probability": 0.66357421875}, {"start": 1746.32, "end": 1746.68, "word": " and", "probability": 0.92724609375}, {"start": 1746.68, "end": 1746.94, "word": " team", "probability": 0.98095703125}, {"start": 1746.94, "end": 1747.28, "word": " doctor.", "probability": 0.94384765625}, {"start": 1747.6, "end": 1747.86, "word": " And", "probability": 0.90673828125}, {"start": 1747.86, "end": 1747.96, "word": " who", "probability": 0.234130859375}, {"start": 1747.96, "end": 1747.96, "word": " did", "probability": 0.62109375}, {"start": 1747.96, "end": 1747.96, "word": " the", "probability": 0.84423828125}, {"start": 1747.96, "end": 1748.18, "word": " team", "probability": 0.97119140625}, {"start": 1748.18, "end": 1748.48, "word": " doctor", "probability": 0.9208984375}, {"start": 1748.48, "end": 1748.84, "word": " join?", "probability": 0.3134765625}, {"start": 1749.44, "end": 1749.82, "word": " For", "probability": 0.73388671875}, {"start": 1749.82, "end": 1750.18, "word": " trainee", "probability": 0.81005859375}, {"start": 1750.18, "end": 1750.68, "word": " doctor", "probability": 0.90576171875}, {"start": 1750.68, "end": 1751.28, "word": " and", "probability": 0.91748046875}, {"start": 1751.28, "end": 1751.94, "word": " qualified", "probability": 0.94140625}, {"start": 1751.94, "end": 1753.0, "word": " doctor.", "probability": 0.92626953125}], "temperature": 1.0}, {"id": 71, "seek": 177325, "start": 1764.03, "end": 1773.25, "text": " If you have attributes here, we know in generalization or inheritance that the subclass inherits", "tokens": [759, 291, 362, 17212, 510, 11, 321, 458, 294, 2674, 2144, 420, 32122, 300, 264, 1422, 11665, 9484, 1208], "avg_logprob": -0.5644531518220901, "compression_ratio": 1.1547619047619047, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 1764.0300000000002, "end": 1764.8700000000001, "word": " If", "probability": 0.072509765625}, {"start": 1764.8700000000001, "end": 1765.71, "word": " you", "probability": 0.82958984375}, {"start": 1765.71, "end": 1766.05, "word": " have", "probability": 0.69775390625}, {"start": 1766.05, "end": 1766.69, "word": " attributes", "probability": 0.6484375}, {"start": 1766.69, "end": 1767.07, "word": " here,", "probability": 0.61083984375}, {"start": 1767.29, "end": 1767.47, "word": " we", "probability": 0.360595703125}, {"start": 1767.47, "end": 1768.05, "word": " know", "probability": 0.607421875}, {"start": 1768.05, "end": 1770.39, "word": " in", "probability": 0.2578125}, {"start": 1770.39, "end": 1771.35, "word": " generalization", "probability": 0.732666015625}, {"start": 1771.35, "end": 1771.51, "word": " or", "probability": 0.70263671875}, {"start": 1771.51, "end": 1771.93, "word": " inheritance", "probability": 0.9296875}, {"start": 1771.93, "end": 1772.25, "word": " that", "probability": 0.75537109375}, {"start": 1772.25, "end": 1772.37, "word": " the", "probability": 0.671875}, {"start": 1772.37, "end": 1772.79, "word": " subclass", "probability": 0.90478515625}, {"start": 1772.79, "end": 1773.25, "word": " inherits", "probability": 0.640869140625}], "temperature": 1.0}, {"id": 72, "seek": 180321, "start": 1774.27, "end": 1803.21, "text": " Everything is in the superclass But there is no need to repeat them below So the thing is that the hospital doctor took who? The name, the phone and the email You don't write them down here But we are doing inheritance because we don't write them down You write them down in the drawing Yes, I understood that they went down Of course, you won't see a drawing like this in Java Why? Because we are maintaining inheritance There is no class that extends to two classes", "tokens": [5471, 307, 294, 264, 1687, 11665, 583, 456, 307, 572, 643, 281, 7149, 552, 2507, 407, 264, 551, 307, 300, 264, 4530, 4631, 1890, 567, 30, 440, 1315, 11, 264, 2593, 293, 264, 3796, 509, 500, 380, 2464, 552, 760, 510, 583, 321, 366, 884, 32122, 570, 321, 500, 380, 2464, 552, 760, 509, 2464, 552, 760, 294, 264, 6316, 1079, 11, 286, 7320, 300, 436, 1437, 760, 2720, 1164, 11, 291, 1582, 380, 536, 257, 6316, 411, 341, 294, 10745, 1545, 30, 1436, 321, 366, 14916, 32122, 821, 307, 572, 1508, 300, 26448, 281, 732, 5359], "avg_logprob": -0.6575255235847162, "compression_ratio": 1.849802371541502, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1774.27, "end": 1774.55, "word": " Everything", "probability": 0.396240234375}, {"start": 1774.55, "end": 1774.75, "word": " is", "probability": 0.61767578125}, {"start": 1774.75, "end": 1774.99, "word": " in", "probability": 0.34033203125}, {"start": 1774.99, "end": 1775.11, "word": " the", "probability": 0.64306640625}, {"start": 1775.11, "end": 1775.65, "word": " superclass", "probability": 0.692626953125}, {"start": 1775.65, "end": 1776.25, "word": " But", "probability": 0.389404296875}, {"start": 1776.25, "end": 1776.55, "word": " there", "probability": 0.375732421875}, {"start": 1776.55, "end": 1776.55, "word": " is", "probability": 0.70654296875}, {"start": 1776.55, "end": 1776.61, "word": " no", "probability": 0.908203125}, {"start": 1776.61, "end": 1776.85, "word": " need", "probability": 0.64013671875}, {"start": 1776.85, "end": 1776.97, "word": " to", "probability": 0.9130859375}, {"start": 1776.97, "end": 1777.19, "word": " repeat", "probability": 0.74609375}, {"start": 1777.19, "end": 1777.37, "word": " them", "probability": 0.5927734375}, {"start": 1777.37, "end": 1777.83, "word": " below", "probability": 0.1865234375}, {"start": 1777.83, "end": 1778.51, "word": " So", "probability": 0.2174072265625}, {"start": 1778.51, "end": 1778.73, "word": " the", "probability": 0.25390625}, {"start": 1778.73, "end": 1778.73, "word": " thing", "probability": 0.31396484375}, {"start": 1778.73, "end": 1779.13, "word": " is", "probability": 0.69580078125}, {"start": 1779.13, "end": 1779.71, "word": " that", "probability": 0.2462158203125}, {"start": 1779.71, "end": 1780.23, "word": " the", "probability": 0.438720703125}, {"start": 1780.23, "end": 1780.49, "word": " hospital", "probability": 0.109130859375}, {"start": 1780.49, "end": 1780.91, "word": " doctor", "probability": 0.763671875}, {"start": 1780.91, "end": 1781.19, "word": " took", "probability": 0.81494140625}, {"start": 1781.19, "end": 1781.51, "word": " who?", "probability": 0.25537109375}, {"start": 1782.05, "end": 1782.53, "word": " The", "probability": 0.501953125}, {"start": 1782.53, "end": 1782.73, "word": " name,", "probability": 0.611328125}, {"start": 1782.89, "end": 1782.95, "word": " the", "probability": 0.236083984375}, {"start": 1782.95, "end": 1783.09, "word": " phone", "probability": 0.88330078125}, {"start": 1783.09, "end": 1783.19, "word": " and", "probability": 0.5947265625}, {"start": 1783.19, "end": 1783.25, "word": " the", "probability": 0.7998046875}, {"start": 1783.25, "end": 1783.49, "word": " email", "probability": 0.8759765625}, {"start": 1783.49, "end": 1783.77, "word": " You", "probability": 0.30810546875}, {"start": 1783.77, "end": 1783.85, "word": " don't", "probability": 0.711181640625}, {"start": 1783.85, "end": 1784.17, "word": " write", "probability": 0.3798828125}, {"start": 1784.17, "end": 1784.39, "word": " them", "probability": 0.728515625}, {"start": 1784.39, "end": 1784.49, "word": " down", "probability": 0.28125}, {"start": 1784.49, "end": 1785.09, "word": " here", "probability": 0.595703125}, {"start": 1785.09, "end": 1785.25, "word": " But", "probability": 0.12939453125}, {"start": 1785.25, "end": 1785.43, "word": " we", "probability": 0.77880859375}, {"start": 1785.43, "end": 1785.51, "word": " are", "probability": 0.473876953125}, {"start": 1785.51, "end": 1785.63, "word": " doing", "probability": 0.69189453125}, {"start": 1785.63, "end": 1785.93, "word": " inheritance", "probability": 0.95751953125}, {"start": 1785.93, "end": 1786.19, "word": " because", "probability": 0.371337890625}, {"start": 1786.19, "end": 1786.37, "word": " we", "probability": 0.84033203125}, {"start": 1786.37, "end": 1786.37, "word": " don't", "probability": 0.837890625}, {"start": 1786.37, "end": 1786.59, "word": " write", "probability": 0.7451171875}, {"start": 1786.59, "end": 1786.89, "word": " them", "probability": 0.255615234375}, {"start": 1786.89, "end": 1787.23, "word": " down", "probability": 0.5869140625}, {"start": 1787.23, "end": 1787.37, "word": " You", "probability": 0.4892578125}, {"start": 1787.37, "end": 1787.65, "word": " write", "probability": 0.65234375}, {"start": 1787.65, "end": 1787.77, "word": " them", "probability": 0.66650390625}, {"start": 1787.77, "end": 1787.89, "word": " down", "probability": 0.465576171875}, {"start": 1787.89, "end": 1787.95, "word": " in", "probability": 0.70166015625}, {"start": 1787.95, "end": 1788.05, "word": " the", "probability": 0.7529296875}, {"start": 1788.05, "end": 1788.25, "word": " drawing", "probability": 0.309326171875}, {"start": 1788.25, "end": 1788.91, "word": " Yes,", "probability": 0.2132568359375}, {"start": 1789.19, "end": 1789.29, "word": " I", "probability": 0.1715087890625}, {"start": 1789.29, "end": 1789.79, "word": " understood", "probability": 0.270263671875}, {"start": 1789.79, "end": 1790.01, "word": " that", "probability": 0.305908203125}, {"start": 1790.01, "end": 1790.65, "word": " they", "probability": 0.29833984375}, {"start": 1790.65, "end": 1790.89, "word": " went", "probability": 0.32763671875}, {"start": 1790.89, "end": 1791.21, "word": " down", "probability": 0.46728515625}, {"start": 1791.21, "end": 1792.95, "word": " Of", "probability": 0.1900634765625}, {"start": 1792.95, "end": 1795.41, "word": " course,", "probability": 0.9521484375}, {"start": 1795.51, "end": 1795.85, "word": " you", "probability": 0.4287109375}, {"start": 1795.85, "end": 1796.39, "word": " won't", "probability": 0.6844482421875}, {"start": 1796.39, "end": 1796.65, "word": " see", "probability": 0.7373046875}, {"start": 1796.65, "end": 1796.65, "word": " a", "probability": 0.5498046875}, {"start": 1796.65, "end": 1796.65, "word": " drawing", "probability": 0.89892578125}, {"start": 1796.65, "end": 1796.65, "word": " like", "probability": 0.92431640625}, {"start": 1796.65, "end": 1796.65, "word": " this", "probability": 0.4951171875}, {"start": 1796.65, "end": 1796.79, "word": " in", "probability": 0.880859375}, {"start": 1796.79, "end": 1797.13, "word": " Java", "probability": 0.57275390625}, {"start": 1797.13, "end": 1798.51, "word": " Why?", "probability": 0.79052734375}, {"start": 1799.09, "end": 1799.31, "word": " Because", "probability": 0.83251953125}, {"start": 1799.31, "end": 1799.87, "word": " we", "probability": 0.61328125}, {"start": 1799.87, "end": 1799.99, "word": " are", "probability": 0.3134765625}, {"start": 1799.99, "end": 1800.21, "word": " maintaining", "probability": 0.04705810546875}, {"start": 1800.21, "end": 1800.55, "word": " inheritance", "probability": 0.74560546875}, {"start": 1800.55, "end": 1800.73, "word": " There", "probability": 0.47412109375}, {"start": 1800.73, "end": 1800.81, "word": " is", "probability": 0.82177734375}, {"start": 1800.81, "end": 1800.89, "word": " no", "probability": 0.91748046875}, {"start": 1800.89, "end": 1801.17, "word": " class", "probability": 0.9296875}, {"start": 1801.17, "end": 1801.27, "word": " that", "probability": 0.64404296875}, {"start": 1801.27, "end": 1801.81, "word": " extends", "probability": 0.5166015625}, {"start": 1801.81, "end": 1801.99, "word": " to", "probability": 0.86669921875}, {"start": 1801.99, "end": 1802.25, "word": " two", "probability": 0.6611328125}, {"start": 1802.25, "end": 1803.21, "word": " classes", "probability": 0.8837890625}], "temperature": 1.0}, {"id": 73, "seek": 182271, "start": 1805.35, "end": 1822.71, "text": "The last type of relationship is realization. What is realization? When we say I will realize my dreams, what does it mean? This realization is related to the implementation of the interface.", "tokens": [2278, 1036, 2010, 295, 2480, 307, 25138, 13, 708, 307, 25138, 30, 1133, 321, 584, 286, 486, 4325, 452, 7505, 11, 437, 775, 309, 914, 30, 639, 25138, 307, 4077, 281, 264, 11420, 295, 264, 9226, 13], "avg_logprob": -0.4893092199375755, "compression_ratio": 1.5158730158730158, "no_speech_prob": 0.0, "words": [{"start": 1805.35, "end": 1805.63, "word": "The", "probability": 0.154541015625}, {"start": 1805.63, "end": 1805.83, "word": " last", "probability": 0.8017578125}, {"start": 1805.83, "end": 1806.05, "word": " type", "probability": 0.458251953125}, {"start": 1806.05, "end": 1806.19, "word": " of", "probability": 0.90576171875}, {"start": 1806.19, "end": 1806.53, "word": " relationship", "probability": 0.48681640625}, {"start": 1806.53, "end": 1806.79, "word": " is", "probability": 0.77197265625}, {"start": 1806.79, "end": 1807.61, "word": " realization.", "probability": 0.6826171875}, {"start": 1808.29, "end": 1808.89, "word": " What", "probability": 0.7099609375}, {"start": 1808.89, "end": 1808.99, "word": " is", "probability": 0.69921875}, {"start": 1808.99, "end": 1809.71, "word": " realization?", "probability": 0.435546875}, {"start": 1811.51, "end": 1811.93, "word": " When", "probability": 0.373046875}, {"start": 1811.93, "end": 1812.83, "word": " we", "probability": 0.251953125}, {"start": 1812.83, "end": 1812.95, "word": " say", "probability": 0.93701171875}, {"start": 1812.95, "end": 1814.01, "word": " I", "probability": 0.548828125}, {"start": 1814.01, "end": 1814.27, "word": " will", "probability": 0.83154296875}, {"start": 1814.27, "end": 1814.81, "word": " realize", "probability": 0.8837890625}, {"start": 1814.81, "end": 1815.01, "word": " my", "probability": 0.96240234375}, {"start": 1815.01, "end": 1815.35, "word": " dreams,", "probability": 0.85009765625}, {"start": 1815.47, "end": 1815.57, "word": " what", "probability": 0.552734375}, {"start": 1815.57, "end": 1815.73, "word": " does", "probability": 0.81787109375}, {"start": 1815.73, "end": 1815.73, "word": " it", "probability": 0.60205078125}, {"start": 1815.73, "end": 1815.81, "word": " mean?", "probability": 0.95947265625}, {"start": 1818.65, "end": 1819.31, "word": " This", "probability": 0.192626953125}, {"start": 1819.31, "end": 1819.79, "word": " realization", "probability": 0.853515625}, {"start": 1819.79, "end": 1820.01, "word": " is", "probability": 0.712890625}, {"start": 1820.01, "end": 1820.31, "word": " related", "probability": 0.26416015625}, {"start": 1820.31, "end": 1820.79, "word": " to", "probability": 0.8818359375}, {"start": 1820.79, "end": 1820.91, "word": " the", "probability": 0.5947265625}, {"start": 1820.91, "end": 1821.29, "word": " implementation", "probability": 0.417236328125}, {"start": 1821.29, "end": 1822.09, "word": " of", "probability": 0.82568359375}, {"start": 1822.09, "end": 1822.15, "word": " the", "probability": 0.68359375}, {"start": 1822.15, "end": 1822.71, "word": " interface.", "probability": 0.87939453125}], "temperature": 1.0}, {"id": 74, "seek": 184733, "start": 1823.53, "end": 1847.33, "text": "And why is it different from the generalization? The word generalization means that there was something that didn't exist and I created it again and again, I made it happen The generalization means that there was something that existed and I added something to it So the generalization is that you made a complete implementation", "tokens": [5289, 983, 307, 309, 819, 490, 264, 2674, 2144, 30, 440, 1349, 2674, 2144, 1355, 300, 456, 390, 746, 300, 994, 380, 2514, 293, 286, 2942, 309, 797, 293, 797, 11, 286, 1027, 309, 1051, 440, 2674, 2144, 1355, 300, 456, 390, 746, 300, 13135, 293, 286, 3869, 746, 281, 309, 407, 264, 2674, 2144, 307, 300, 291, 1027, 257, 3566, 11420], "avg_logprob": -0.5634920540310088, "compression_ratio": 1.9523809523809523, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1823.53, "end": 1824.03, "word": "And", "probability": 0.11138916015625}, {"start": 1824.03, "end": 1824.19, "word": " why", "probability": 0.69580078125}, {"start": 1824.19, "end": 1824.55, "word": " is", "probability": 0.40966796875}, {"start": 1824.55, "end": 1824.55, "word": " it", "probability": 0.87939453125}, {"start": 1824.55, "end": 1824.59, "word": " different", "probability": 0.8125}, {"start": 1824.59, "end": 1824.83, "word": " from", "probability": 0.67431640625}, {"start": 1824.83, "end": 1826.29, "word": " the", "probability": 0.416015625}, {"start": 1826.29, "end": 1830.69, "word": " generalization?", "probability": 0.574462890625}, {"start": 1831.23, "end": 1831.57, "word": " The", "probability": 0.6474609375}, {"start": 1831.57, "end": 1831.73, "word": " word", "probability": 0.5361328125}, {"start": 1831.73, "end": 1832.37, "word": " generalization", "probability": 0.83447265625}, {"start": 1832.37, "end": 1832.63, "word": " means", "probability": 0.83984375}, {"start": 1832.63, "end": 1833.03, "word": " that", "probability": 0.478515625}, {"start": 1833.03, "end": 1833.15, "word": " there", "probability": 0.6357421875}, {"start": 1833.15, "end": 1833.15, "word": " was", "probability": 0.73974609375}, {"start": 1833.15, "end": 1833.55, "word": " something", "probability": 0.7353515625}, {"start": 1833.55, "end": 1833.99, "word": " that", "probability": 0.58740234375}, {"start": 1833.99, "end": 1834.11, "word": " didn't", "probability": 0.6610107421875}, {"start": 1834.11, "end": 1834.55, "word": " exist", "probability": 0.9130859375}, {"start": 1834.55, "end": 1835.73, "word": " and", "probability": 0.39208984375}, {"start": 1835.73, "end": 1835.89, "word": " I", "probability": 0.8134765625}, {"start": 1835.89, "end": 1836.19, "word": " created", "probability": 0.322021484375}, {"start": 1836.19, "end": 1836.37, "word": " it", "probability": 0.892578125}, {"start": 1836.37, "end": 1836.37, "word": " again", "probability": 0.2509765625}, {"start": 1836.37, "end": 1836.37, "word": " and", "probability": 0.365234375}, {"start": 1836.37, "end": 1836.89, "word": " again,", "probability": 0.94287109375}, {"start": 1837.13, "end": 1837.41, "word": " I", "probability": 0.54638671875}, {"start": 1837.41, "end": 1837.95, "word": " made", "probability": 0.31787109375}, {"start": 1837.95, "end": 1838.27, "word": " it", "probability": 0.91943359375}, {"start": 1838.27, "end": 1838.57, "word": " happen", "probability": 0.5029296875}, {"start": 1838.57, "end": 1839.23, "word": " The", "probability": 0.359130859375}, {"start": 1839.23, "end": 1840.49, "word": " generalization", "probability": 0.89794921875}, {"start": 1840.49, "end": 1840.69, "word": " means", "probability": 0.86669921875}, {"start": 1840.69, "end": 1840.85, "word": " that", "probability": 0.830078125}, {"start": 1840.85, "end": 1841.07, "word": " there", "probability": 0.85009765625}, {"start": 1841.07, "end": 1841.11, "word": " was", "probability": 0.8798828125}, {"start": 1841.11, "end": 1841.35, "word": " something", "probability": 0.81640625}, {"start": 1841.35, "end": 1841.61, "word": " that", "probability": 0.32373046875}, {"start": 1841.61, "end": 1841.61, "word": " existed", "probability": 0.74267578125}, {"start": 1841.61, "end": 1841.75, "word": " and", "probability": 0.771484375}, {"start": 1841.75, "end": 1842.19, "word": " I", "probability": 0.96630859375}, {"start": 1842.19, "end": 1843.29, "word": " added", "probability": 0.30859375}, {"start": 1843.29, "end": 1843.89, "word": " something", "probability": 0.402099609375}, {"start": 1843.89, "end": 1844.05, "word": " to", "probability": 0.72509765625}, {"start": 1844.05, "end": 1844.59, "word": " it", "probability": 0.9287109375}, {"start": 1844.59, "end": 1845.33, "word": " So", "probability": 0.447509765625}, {"start": 1845.33, "end": 1845.39, "word": " the", "probability": 0.237060546875}, {"start": 1845.39, "end": 1845.89, "word": " generalization", "probability": 0.7449951171875}, {"start": 1845.89, "end": 1846.03, "word": " is", "probability": 0.54248046875}, {"start": 1846.03, "end": 1846.21, "word": " that", "probability": 0.436279296875}, {"start": 1846.21, "end": 1846.57, "word": " you", "probability": 0.81689453125}, {"start": 1846.57, "end": 1846.79, "word": " made", "probability": 0.311279296875}, {"start": 1846.79, "end": 1846.93, "word": " a", "probability": 0.2303466796875}, {"start": 1846.93, "end": 1846.93, "word": " complete", "probability": 0.47900390625}, {"start": 1846.93, "end": 1847.33, "word": " implementation", "probability": 0.76220703125}], "temperature": 1.0}, {"id": 75, "seek": 186525, "start": 1848.87, "end": 1865.25, "text": "It's like if you have an empty interface and you made a full implementation in the subclass. How do we represent this relation? It's like the relation of generalization, but its value is negated. So, look now, these four are divided by negation of all the relations.", "tokens": [3522, 311, 411, 498, 291, 362, 364, 6707, 9226, 293, 291, 1027, 257, 1577, 11420, 294, 264, 1422, 11665, 13, 1012, 360, 321, 2906, 341, 9721, 30, 467, 311, 411, 264, 9721, 295, 2674, 2144, 11, 457, 1080, 2158, 307, 2485, 770, 13, 407, 11, 574, 586, 11, 613, 1451, 366, 6666, 538, 2485, 399, 295, 439, 264, 2299, 13], "avg_logprob": -0.7079917876446833, "compression_ratio": 1.5375722543352601, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 1848.87, "end": 1849.25, "word": "It's", "probability": 0.318359375}, {"start": 1849.25, "end": 1849.31, "word": " like", "probability": 0.77880859375}, {"start": 1849.31, "end": 1849.41, "word": " if", "probability": 0.24267578125}, {"start": 1849.41, "end": 1849.71, "word": " you", "probability": 0.91552734375}, {"start": 1849.71, "end": 1849.71, "word": " have", "probability": 0.71142578125}, {"start": 1849.71, "end": 1849.89, "word": " an", "probability": 0.74853515625}, {"start": 1849.89, "end": 1849.89, "word": " empty", "probability": 0.748046875}, {"start": 1849.89, "end": 1850.87, "word": " interface", "probability": 0.79150390625}, {"start": 1850.87, "end": 1851.73, "word": " and", "probability": 0.6669921875}, {"start": 1851.73, "end": 1851.93, "word": " you", "probability": 0.87158203125}, {"start": 1851.93, "end": 1852.43, "word": " made", "probability": 0.1544189453125}, {"start": 1852.43, "end": 1852.55, "word": " a", "probability": 0.36865234375}, {"start": 1852.55, "end": 1852.59, "word": " full", "probability": 0.429443359375}, {"start": 1852.59, "end": 1853.13, "word": " implementation", "probability": 0.837890625}, {"start": 1853.13, "end": 1854.41, "word": " in", "probability": 0.49072265625}, {"start": 1854.41, "end": 1854.53, "word": " the", "probability": 0.58837890625}, {"start": 1854.53, "end": 1855.03, "word": " subclass.", "probability": 0.865234375}, {"start": 1855.45, "end": 1855.87, "word": " How", "probability": 0.281982421875}, {"start": 1855.87, "end": 1856.17, "word": " do", "probability": 0.456787109375}, {"start": 1856.17, "end": 1856.19, "word": " we", "probability": 0.8134765625}, {"start": 1856.19, "end": 1856.47, "word": " represent", "probability": 0.6923828125}, {"start": 1856.47, "end": 1856.61, "word": " this", "probability": 0.67919921875}, {"start": 1856.61, "end": 1856.97, "word": " relation?", "probability": 0.398681640625}, {"start": 1858.03, "end": 1858.47, "word": " It's", "probability": 0.610595703125}, {"start": 1858.47, "end": 1858.57, "word": " like", "probability": 0.63525390625}, {"start": 1858.57, "end": 1858.67, "word": " the", "probability": 0.59814453125}, {"start": 1858.67, "end": 1858.87, "word": " relation", "probability": 0.7265625}, {"start": 1858.87, "end": 1859.07, "word": " of", "probability": 0.44775390625}, {"start": 1859.07, "end": 1859.67, "word": " generalization,", "probability": 0.812255859375}, {"start": 1859.77, "end": 1859.85, "word": " but", "probability": 0.7646484375}, {"start": 1859.85, "end": 1860.03, "word": " its", "probability": 0.2137451171875}, {"start": 1860.03, "end": 1860.23, "word": " value", "probability": 0.201171875}, {"start": 1860.23, "end": 1861.79, "word": " is", "probability": 0.85693359375}, {"start": 1861.79, "end": 1862.29, "word": " negated.", "probability": 0.431488037109375}, {"start": 1862.67, "end": 1862.79, "word": " So,", "probability": 0.264892578125}, {"start": 1862.97, "end": 1862.99, "word": " look", "probability": 0.438720703125}, {"start": 1862.99, "end": 1863.23, "word": " now,", "probability": 0.29931640625}, {"start": 1863.29, "end": 1863.39, "word": " these", "probability": 0.20654296875}, {"start": 1863.39, "end": 1863.69, "word": " four", "probability": 0.68017578125}, {"start": 1863.69, "end": 1863.95, "word": " are", "probability": 0.253662109375}, {"start": 1863.95, "end": 1864.13, "word": " divided", "probability": 0.462158203125}, {"start": 1864.13, "end": 1864.37, "word": " by", "probability": 0.6884765625}, {"start": 1864.37, "end": 1864.61, "word": " negation", "probability": 0.36016845703125}, {"start": 1864.61, "end": 1864.75, "word": " of", "probability": 0.759765625}, {"start": 1864.75, "end": 1864.89, "word": " all", "probability": 0.85888671875}, {"start": 1864.89, "end": 1864.95, "word": " the", "probability": 0.34521484375}, {"start": 1864.95, "end": 1865.25, "word": " relations.", "probability": 0.783203125}], "temperature": 1.0}, {"id": 76, "seek": 188563, "start": 1866.41, "end": 1885.63, "text": "This is the relationship between association and dependency. An object can use another object only on the level of methods. This is the relationship between generalization and inheritance. This is the relationship between implementation and realization. Notice what is written here, interface.", "tokens": [5723, 307, 264, 2480, 1296, 14598, 293, 33621, 13, 1107, 2657, 393, 764, 1071, 2657, 787, 322, 264, 1496, 295, 7150, 13, 639, 307, 264, 2480, 1296, 2674, 2144, 293, 32122, 13, 639, 307, 264, 2480, 1296, 11420, 293, 25138, 13, 13428, 437, 307, 3720, 510, 11, 9226, 13], "avg_logprob": -0.5575000262260437, "compression_ratio": 1.8662420382165605, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1866.41, "end": 1867.03, "word": "This", "probability": 0.384521484375}, {"start": 1867.03, "end": 1867.13, "word": " is", "probability": 0.78271484375}, {"start": 1867.13, "end": 1867.17, "word": " the", "probability": 0.363037109375}, {"start": 1867.17, "end": 1867.45, "word": " relationship", "probability": 0.412353515625}, {"start": 1867.45, "end": 1867.97, "word": " between", "probability": 0.48876953125}, {"start": 1867.97, "end": 1868.95, "word": " association", "probability": 0.763671875}, {"start": 1868.95, "end": 1869.63, "word": " and", "probability": 0.89794921875}, {"start": 1869.63, "end": 1870.59, "word": " dependency.", "probability": 0.85400390625}, {"start": 1871.13, "end": 1871.25, "word": " An", "probability": 0.15966796875}, {"start": 1871.25, "end": 1871.89, "word": " object", "probability": 0.9560546875}, {"start": 1871.89, "end": 1872.09, "word": " can", "probability": 0.2431640625}, {"start": 1872.09, "end": 1872.41, "word": " use", "probability": 0.4697265625}, {"start": 1872.41, "end": 1873.17, "word": " another", "probability": 0.6748046875}, {"start": 1873.17, "end": 1873.17, "word": " object", "probability": 0.9501953125}, {"start": 1873.17, "end": 1873.41, "word": " only", "probability": 0.1593017578125}, {"start": 1873.41, "end": 1873.55, "word": " on", "probability": 0.3017578125}, {"start": 1873.55, "end": 1873.67, "word": " the", "probability": 0.66943359375}, {"start": 1873.67, "end": 1873.97, "word": " level", "probability": 0.49560546875}, {"start": 1873.97, "end": 1874.21, "word": " of", "probability": 0.96240234375}, {"start": 1874.21, "end": 1875.11, "word": " methods.", "probability": 0.292236328125}, {"start": 1875.49, "end": 1875.75, "word": " This", "probability": 0.61083984375}, {"start": 1875.75, "end": 1875.87, "word": " is", "probability": 0.8798828125}, {"start": 1875.87, "end": 1875.89, "word": " the", "probability": 0.76904296875}, {"start": 1875.89, "end": 1876.17, "word": " relationship", "probability": 0.6806640625}, {"start": 1876.17, "end": 1876.31, "word": " between", "probability": 0.84423828125}, {"start": 1876.31, "end": 1877.15, "word": " generalization", "probability": 0.732666015625}, {"start": 1877.15, "end": 1877.73, "word": " and", "probability": 0.900390625}, {"start": 1877.73, "end": 1878.07, "word": " inheritance.", "probability": 0.62353515625}, {"start": 1878.37, "end": 1878.61, "word": " This", "probability": 0.5419921875}, {"start": 1878.61, "end": 1878.67, "word": " is", "probability": 0.89697265625}, {"start": 1878.67, "end": 1878.95, "word": " the", "probability": 0.86572265625}, {"start": 1878.95, "end": 1878.97, "word": " relationship", "probability": 0.791015625}, {"start": 1878.97, "end": 1879.09, "word": " between", "probability": 0.87353515625}, {"start": 1879.09, "end": 1879.53, "word": " implementation", "probability": 0.3828125}, {"start": 1879.53, "end": 1880.61, "word": " and", "probability": 0.9306640625}, {"start": 1880.61, "end": 1880.61, "word": " realization.", "probability": 0.755859375}, {"start": 1882.23, "end": 1882.83, "word": " Notice", "probability": 0.273193359375}, {"start": 1882.83, "end": 1883.29, "word": " what", "probability": 0.6591796875}, {"start": 1883.29, "end": 1883.35, "word": " is", "probability": 0.474365234375}, {"start": 1883.35, "end": 1883.53, "word": " written", "probability": 0.8671875}, {"start": 1883.53, "end": 1883.91, "word": " here,", "probability": 0.77099609375}, {"start": 1884.43, "end": 1885.63, "word": " interface.", "probability": 0.386474609375}], "temperature": 1.0}, {"id": 77, "seek": 191327, "start": 1888.85, "end": 1913.27, "text": "Until we finish the parts of today's class diagram, we will go back and take two exercises Now this is a structure for a simple system The first time you look at the drawing, you should understand what it is Let's analyze this drawing Look with me, let's start here in the middle What is the name of this class?", "tokens": [52, 580, 388, 321, 2413, 264, 3166, 295, 965, 311, 1508, 10686, 11, 321, 486, 352, 646, 293, 747, 732, 11900, 823, 341, 307, 257, 3877, 337, 257, 2199, 1185, 440, 700, 565, 291, 574, 412, 264, 6316, 11, 291, 820, 1223, 437, 309, 307, 961, 311, 12477, 341, 6316, 2053, 365, 385, 11, 718, 311, 722, 510, 294, 264, 2808, 708, 307, 264, 1315, 295, 341, 1508, 30], "avg_logprob": -0.566517846924918, "compression_ratio": 1.5170731707317073, "no_speech_prob": 0.0, "words": [{"start": 1888.85, "end": 1889.09, "word": "Until", "probability": 0.7041015625}, {"start": 1889.09, "end": 1889.25, "word": " we", "probability": 0.875}, {"start": 1889.25, "end": 1889.53, "word": " finish", "probability": 0.6650390625}, {"start": 1889.53, "end": 1890.05, "word": " the", "probability": 0.2479248046875}, {"start": 1890.05, "end": 1890.27, "word": " parts", "probability": 0.249267578125}, {"start": 1890.27, "end": 1890.45, "word": " of", "probability": 0.86962890625}, {"start": 1890.45, "end": 1890.77, "word": " today's", "probability": 0.66015625}, {"start": 1890.77, "end": 1891.19, "word": " class", "probability": 0.90625}, {"start": 1891.19, "end": 1891.69, "word": " diagram,", "probability": 0.8125}, {"start": 1892.15, "end": 1892.21, "word": " we", "probability": 0.63525390625}, {"start": 1892.21, "end": 1892.23, "word": " will", "probability": 0.5517578125}, {"start": 1892.23, "end": 1892.33, "word": " go", "probability": 0.191162109375}, {"start": 1892.33, "end": 1892.39, "word": " back", "probability": 0.7314453125}, {"start": 1892.39, "end": 1892.49, "word": " and", "probability": 0.517578125}, {"start": 1892.49, "end": 1892.59, "word": " take", "probability": 0.395751953125}, {"start": 1892.59, "end": 1893.01, "word": " two", "probability": 0.3076171875}, {"start": 1893.01, "end": 1893.01, "word": " exercises", "probability": 0.54443359375}, {"start": 1893.01, "end": 1894.03, "word": " Now", "probability": 0.454833984375}, {"start": 1894.03, "end": 1894.29, "word": " this", "probability": 0.6826171875}, {"start": 1894.29, "end": 1894.49, "word": " is", "probability": 0.88818359375}, {"start": 1894.49, "end": 1894.91, "word": " a", "probability": 0.7138671875}, {"start": 1894.91, "end": 1895.29, "word": " structure", "probability": 0.5810546875}, {"start": 1895.29, "end": 1895.59, "word": " for", "probability": 0.6943359375}, {"start": 1895.59, "end": 1897.13, "word": " a", "probability": 0.83642578125}, {"start": 1897.13, "end": 1898.75, "word": " simple", "probability": 0.69140625}, {"start": 1898.75, "end": 1898.83, "word": " system", "probability": 0.90185546875}, {"start": 1898.83, "end": 1899.85, "word": " The", "probability": 0.1268310546875}, {"start": 1899.85, "end": 1900.39, "word": " first", "probability": 0.84765625}, {"start": 1900.39, "end": 1900.57, "word": " time", "probability": 0.2408447265625}, {"start": 1900.57, "end": 1900.57, "word": " you", "probability": 0.55859375}, {"start": 1900.57, "end": 1900.81, "word": " look", "probability": 0.454833984375}, {"start": 1900.81, "end": 1900.95, "word": " at", "probability": 0.8251953125}, {"start": 1900.95, "end": 1901.05, "word": " the", "probability": 0.7314453125}, {"start": 1901.05, "end": 1901.27, "word": " drawing,", "probability": 0.37841796875}, {"start": 1902.45, "end": 1902.61, "word": " you", "probability": 0.57958984375}, {"start": 1902.61, "end": 1903.21, "word": " should", "probability": 0.376953125}, {"start": 1903.21, "end": 1903.41, "word": " understand", "probability": 0.62353515625}, {"start": 1903.41, "end": 1904.09, "word": " what", "probability": 0.72119140625}, {"start": 1904.09, "end": 1904.21, "word": " it", "probability": 0.1842041015625}, {"start": 1904.21, "end": 1904.53, "word": " is", "probability": 0.67431640625}, {"start": 1904.53, "end": 1906.09, "word": " Let's", "probability": 0.5804443359375}, {"start": 1906.09, "end": 1906.49, "word": " analyze", "probability": 0.71337890625}, {"start": 1906.49, "end": 1907.45, "word": " this", "probability": 0.83447265625}, {"start": 1907.45, "end": 1907.63, "word": " drawing", "probability": 0.75146484375}, {"start": 1907.63, "end": 1908.51, "word": " Look", "probability": 0.1688232421875}, {"start": 1908.51, "end": 1908.85, "word": " with", "probability": 0.46923828125}, {"start": 1908.85, "end": 1908.99, "word": " me,", "probability": 0.96630859375}, {"start": 1909.03, "end": 1909.15, "word": " let's", "probability": 0.74658203125}, {"start": 1909.15, "end": 1909.29, "word": " start", "probability": 0.8759765625}, {"start": 1909.29, "end": 1909.91, "word": " here", "probability": 0.159912109375}, {"start": 1909.91, "end": 1910.97, "word": " in", "probability": 0.37451171875}, {"start": 1910.97, "end": 1911.29, "word": " the", "probability": 0.8955078125}, {"start": 1911.29, "end": 1911.51, "word": " middle", "probability": 0.84814453125}, {"start": 1911.51, "end": 1912.69, "word": " What", "probability": 0.353271484375}, {"start": 1912.69, "end": 1912.69, "word": " is", "probability": 0.83056640625}, {"start": 1912.69, "end": 1912.69, "word": " the", "probability": 0.58984375}, {"start": 1912.69, "end": 1912.69, "word": " name", "probability": 0.89794921875}, {"start": 1912.69, "end": 1912.69, "word": " of", "probability": 0.9716796875}, {"start": 1912.69, "end": 1912.93, "word": " this", "probability": 0.9326171875}, {"start": 1912.93, "end": 1913.27, "word": " class?", "probability": 0.966796875}], "temperature": 1.0}, {"id": 78, "seek": 194390, "start": 1915.48, "end": 1943.9, "text": " The traffic report is a report for the traffic violations program I have a class called traffic report The data of the traffic report written by the police There is an ID and a description explaining the report And I have occurred at the date written in the report Because I have other classes Let's take one by one and see the relationship between them Because this class is called offender What is the word offender?", "tokens": [440, 6419, 2275, 307, 257, 2275, 337, 264, 6419, 30405, 1461, 286, 362, 257, 1508, 1219, 6419, 2275, 440, 1412, 295, 264, 6419, 2275, 3720, 538, 264, 3804, 821, 307, 364, 7348, 293, 257, 3855, 13468, 264, 2275, 400, 286, 362, 11068, 412, 264, 4002, 3720, 294, 264, 2275, 1436, 286, 362, 661, 5359, 961, 311, 747, 472, 538, 472, 293, 536, 264, 2480, 1296, 552, 1436, 341, 1508, 307, 1219, 766, 3216, 708, 307, 264, 1349, 766, 3216, 30], "avg_logprob": -0.5069444208969305, "compression_ratio": 1.9045454545454545, "no_speech_prob": 2.6226043701171875e-06, "words": [{"start": 1915.48, "end": 1916.0, "word": " The", "probability": 0.087646484375}, {"start": 1916.0, "end": 1916.24, "word": " traffic", "probability": 0.5830078125}, {"start": 1916.24, "end": 1916.62, "word": " report", "probability": 0.93994140625}, {"start": 1916.62, "end": 1917.46, "word": " is", "probability": 0.364990234375}, {"start": 1917.46, "end": 1917.46, "word": " a", "probability": 0.72509765625}, {"start": 1917.46, "end": 1917.64, "word": " report", "probability": 0.75927734375}, {"start": 1917.64, "end": 1917.88, "word": " for", "probability": 0.1810302734375}, {"start": 1917.88, "end": 1918.38, "word": " the", "probability": 0.302001953125}, {"start": 1918.38, "end": 1918.6, "word": " traffic", "probability": 0.2083740234375}, {"start": 1918.6, "end": 1919.88, "word": " violations", "probability": 0.5888671875}, {"start": 1919.88, "end": 1919.96, "word": " program", "probability": 0.3603515625}, {"start": 1919.96, "end": 1920.66, "word": " I", "probability": 0.335693359375}, {"start": 1920.66, "end": 1921.32, "word": " have", "probability": 0.89599609375}, {"start": 1921.32, "end": 1921.4, "word": " a", "probability": 0.93701171875}, {"start": 1921.4, "end": 1921.64, "word": " class", "probability": 0.95166015625}, {"start": 1921.64, "end": 1921.88, "word": " called", "probability": 0.669921875}, {"start": 1921.88, "end": 1922.18, "word": " traffic", "probability": 0.4970703125}, {"start": 1922.18, "end": 1922.68, "word": " report", "probability": 0.92724609375}, {"start": 1922.68, "end": 1923.5, "word": " The", "probability": 0.4892578125}, {"start": 1923.5, "end": 1923.76, "word": " data", "probability": 0.6142578125}, {"start": 1923.76, "end": 1924.16, "word": " of", "probability": 0.58544921875}, {"start": 1924.16, "end": 1924.88, "word": " the", "probability": 0.736328125}, {"start": 1924.88, "end": 1925.04, "word": " traffic", "probability": 0.44287109375}, {"start": 1925.04, "end": 1925.12, "word": " report", "probability": 0.888671875}, {"start": 1925.12, "end": 1925.4, "word": " written", "probability": 0.2418212890625}, {"start": 1925.4, "end": 1925.58, "word": " by", "probability": 0.919921875}, {"start": 1925.58, "end": 1925.82, "word": " the", "probability": 0.75830078125}, {"start": 1925.82, "end": 1925.82, "word": " police", "probability": 0.6396484375}, {"start": 1925.82, "end": 1926.52, "word": " There", "probability": 0.1845703125}, {"start": 1926.52, "end": 1926.64, "word": " is", "probability": 0.7392578125}, {"start": 1926.64, "end": 1926.78, "word": " an", "probability": 0.50341796875}, {"start": 1926.78, "end": 1926.98, "word": " ID", "probability": 0.7548828125}, {"start": 1926.98, "end": 1928.08, "word": " and", "probability": 0.68701171875}, {"start": 1928.08, "end": 1928.24, "word": " a", "probability": 0.41162109375}, {"start": 1928.24, "end": 1928.86, "word": " description", "probability": 0.90380859375}, {"start": 1928.86, "end": 1929.34, "word": " explaining", "probability": 0.2763671875}, {"start": 1929.34, "end": 1929.6, "word": " the", "probability": 0.81298828125}, {"start": 1929.6, "end": 1929.98, "word": " report", "probability": 0.9140625}, {"start": 1929.98, "end": 1930.6, "word": " And", "probability": 0.405029296875}, {"start": 1930.6, "end": 1931.0, "word": " I", "probability": 0.23046875}, {"start": 1931.0, "end": 1931.0, "word": " have", "probability": 0.78564453125}, {"start": 1931.0, "end": 1931.9, "word": " occurred", "probability": 0.3896484375}, {"start": 1931.9, "end": 1932.24, "word": " at", "probability": 0.875}, {"start": 1932.24, "end": 1932.46, "word": " the", "probability": 0.327880859375}, {"start": 1932.46, "end": 1932.7, "word": " date", "probability": 0.84326171875}, {"start": 1932.7, "end": 1933.4, "word": " written", "probability": 0.2064208984375}, {"start": 1933.4, "end": 1933.6, "word": " in", "probability": 0.80078125}, {"start": 1933.6, "end": 1934.4, "word": " the", "probability": 0.8818359375}, {"start": 1934.4, "end": 1934.72, "word": " report", "probability": 0.9287109375}, {"start": 1934.72, "end": 1935.68, "word": " Because", "probability": 0.240478515625}, {"start": 1935.68, "end": 1935.84, "word": " I", "probability": 0.51708984375}, {"start": 1935.84, "end": 1935.98, "word": " have", "probability": 0.9150390625}, {"start": 1935.98, "end": 1936.0, "word": " other", "probability": 0.67919921875}, {"start": 1936.0, "end": 1936.5, "word": " classes", "probability": 0.91455078125}, {"start": 1936.5, "end": 1937.48, "word": " Let's", "probability": 0.689453125}, {"start": 1937.48, "end": 1937.68, "word": " take", "probability": 0.255126953125}, {"start": 1937.68, "end": 1937.88, "word": " one", "probability": 0.62939453125}, {"start": 1937.88, "end": 1938.12, "word": " by", "probability": 0.78564453125}, {"start": 1938.12, "end": 1938.18, "word": " one", "probability": 0.927734375}, {"start": 1938.18, "end": 1938.3, "word": " and", "probability": 0.80029296875}, {"start": 1938.3, "end": 1938.46, "word": " see", "probability": 0.7783203125}, {"start": 1938.46, "end": 1938.6, "word": " the", "probability": 0.7451171875}, {"start": 1938.6, "end": 1938.86, "word": " relationship", "probability": 0.7294921875}, {"start": 1938.86, "end": 1939.04, "word": " between", "probability": 0.8291015625}, {"start": 1939.04, "end": 1939.78, "word": " them", "probability": 0.8828125}, {"start": 1939.78, "end": 1940.28, "word": " Because", "probability": 0.7802734375}, {"start": 1940.28, "end": 1940.46, "word": " this", "probability": 0.90966796875}, {"start": 1940.46, "end": 1940.74, "word": " class", "probability": 0.9169921875}, {"start": 1940.74, "end": 1940.86, "word": " is", "probability": 0.880859375}, {"start": 1940.86, "end": 1941.18, "word": " called", "probability": 0.84619140625}, {"start": 1941.18, "end": 1942.26, "word": " offender", "probability": 0.726806640625}, {"start": 1942.26, "end": 1943.18, "word": " What", "probability": 0.61572265625}, {"start": 1943.18, "end": 1943.3, "word": " is", "probability": 0.8388671875}, {"start": 1943.3, "end": 1943.5, "word": " the", "probability": 0.8974609375}, {"start": 1943.5, "end": 1943.5, "word": " word", "probability": 0.74609375}, {"start": 1943.5, "end": 1943.9, "word": " offender?", "probability": 0.80908203125}], "temperature": 1.0}, {"id": 79, "seek": 197410, "start": 1945.52, "end": 1974.1, "text": " from an offender, an offender, okay? I'm telling you this is offensive, okay? The offender, the one who made the mistake, okay? The one who committed the offence, okay? This has a name and what does it have? It has an ID. Because there is a relationship between the traffic report and the offender. What is this relationship? Association. What do you understand from the attributes of the traffic report? No, not a list. There is one reference to whom?", "tokens": [490, 364, 766, 3216, 11, 364, 766, 3216, 11, 1392, 30, 286, 478, 3585, 291, 341, 307, 15710, 11, 1392, 30, 440, 766, 3216, 11, 264, 472, 567, 1027, 264, 6146, 11, 1392, 30, 440, 472, 567, 7784, 264, 766, 655, 11, 1392, 30, 639, 575, 257, 1315, 293, 437, 775, 309, 362, 30, 467, 575, 364, 7348, 13, 1436, 456, 307, 257, 2480, 1296, 264, 6419, 2275, 293, 264, 766, 3216, 13, 708, 307, 341, 2480, 30, 10734, 13, 708, 360, 291, 1223, 490, 264, 17212, 295, 264, 6419, 2275, 30, 883, 11, 406, 257, 1329, 13, 821, 307, 472, 6408, 281, 7101, 30], "avg_logprob": -0.42865566065851246, "compression_ratio": 1.8641975308641976, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1945.52, "end": 1945.7, "word": " from", "probability": 0.169189453125}, {"start": 1945.7, "end": 1945.86, "word": " an", "probability": 0.25244140625}, {"start": 1945.86, "end": 1946.1, "word": " offender,", "probability": 0.58453369140625}, {"start": 1946.18, "end": 1946.24, "word": " an", "probability": 0.17578125}, {"start": 1946.24, "end": 1946.52, "word": " offender,", "probability": 0.7880859375}, {"start": 1947.2, "end": 1947.42, "word": " okay?", "probability": 0.2291259765625}, {"start": 1947.54, "end": 1947.66, "word": " I'm", "probability": 0.342529296875}, {"start": 1947.66, "end": 1947.74, "word": " telling", "probability": 0.37353515625}, {"start": 1947.74, "end": 1947.84, "word": " you", "probability": 0.95068359375}, {"start": 1947.84, "end": 1947.94, "word": " this", "probability": 0.51904296875}, {"start": 1947.94, "end": 1947.98, "word": " is", "probability": 0.84033203125}, {"start": 1947.98, "end": 1948.4, "word": " offensive,", "probability": 0.8466796875}, {"start": 1948.66, "end": 1949.12, "word": " okay?", "probability": 0.66162109375}, {"start": 1950.44, "end": 1950.92, "word": " The", "probability": 0.323486328125}, {"start": 1950.92, "end": 1951.26, "word": " offender,", "probability": 0.874267578125}, {"start": 1951.34, "end": 1951.44, "word": " the", "probability": 0.421142578125}, {"start": 1951.44, "end": 1951.44, "word": " one", "probability": 0.734375}, {"start": 1951.44, "end": 1951.52, "word": " who", "probability": 0.72998046875}, {"start": 1951.52, "end": 1951.64, "word": " made", "probability": 0.484619140625}, {"start": 1951.64, "end": 1951.78, "word": " the", "probability": 0.75830078125}, {"start": 1951.78, "end": 1952.02, "word": " mistake,", "probability": 0.919921875}, {"start": 1952.48, "end": 1952.64, "word": " okay?", "probability": 0.54296875}, {"start": 1952.74, "end": 1952.88, "word": " The", "probability": 0.73291015625}, {"start": 1952.88, "end": 1952.88, "word": " one", "probability": 0.7353515625}, {"start": 1952.88, "end": 1952.9, "word": " who", "probability": 0.86767578125}, {"start": 1952.9, "end": 1953.16, "word": " committed", "probability": 0.7529296875}, {"start": 1953.16, "end": 1953.3, "word": " the", "probability": 0.66162109375}, {"start": 1953.3, "end": 1953.68, "word": " offence,", "probability": 0.5489501953125}, {"start": 1954.18, "end": 1954.42, "word": " okay?", "probability": 0.83837890625}, {"start": 1954.98, "end": 1955.34, "word": " This", "probability": 0.67529296875}, {"start": 1955.34, "end": 1955.62, "word": " has", "probability": 0.388427734375}, {"start": 1955.62, "end": 1955.7, "word": " a", "probability": 0.91943359375}, {"start": 1955.7, "end": 1956.0, "word": " name", "probability": 0.85498046875}, {"start": 1956.0, "end": 1956.38, "word": " and", "probability": 0.7509765625}, {"start": 1956.38, "end": 1956.84, "word": " what", "probability": 0.383056640625}, {"start": 1956.84, "end": 1956.84, "word": " does", "probability": 0.333740234375}, {"start": 1956.84, "end": 1956.84, "word": " it", "probability": 0.828125}, {"start": 1956.84, "end": 1956.84, "word": " have?", "probability": 0.89404296875}, {"start": 1957.38, "end": 1957.86, "word": " It", "probability": 0.7412109375}, {"start": 1957.86, "end": 1957.96, "word": " has", "probability": 0.93603515625}, {"start": 1957.96, "end": 1958.2, "word": " an", "probability": 0.71142578125}, {"start": 1958.2, "end": 1958.44, "word": " ID.", "probability": 0.83203125}, {"start": 1958.98, "end": 1959.22, "word": " Because", "probability": 0.82080078125}, {"start": 1959.22, "end": 1959.42, "word": " there", "probability": 0.869140625}, {"start": 1959.42, "end": 1959.44, "word": " is", "probability": 0.6484375}, {"start": 1959.44, "end": 1959.54, "word": " a", "probability": 0.96435546875}, {"start": 1959.54, "end": 1959.8, "word": " relationship", "probability": 0.435546875}, {"start": 1959.8, "end": 1960.08, "word": " between", "probability": 0.86962890625}, {"start": 1960.08, "end": 1960.26, "word": " the", "probability": 0.68798828125}, {"start": 1960.26, "end": 1960.46, "word": " traffic", "probability": 0.8056640625}, {"start": 1960.46, "end": 1960.92, "word": " report", "probability": 0.9501953125}, {"start": 1960.92, "end": 1962.28, "word": " and", "probability": 0.908203125}, {"start": 1962.28, "end": 1962.38, "word": " the", "probability": 0.84814453125}, {"start": 1962.38, "end": 1962.66, "word": " offender.", "probability": 0.881591796875}, {"start": 1963.04, "end": 1963.22, "word": " What", "probability": 0.52685546875}, {"start": 1963.22, "end": 1963.22, "word": " is", "probability": 0.576171875}, {"start": 1963.22, "end": 1963.26, "word": " this", "probability": 0.84912109375}, {"start": 1963.26, "end": 1963.52, "word": " relationship?", "probability": 0.83447265625}, {"start": 1964.16, "end": 1964.64, "word": " Association.", "probability": 0.85888671875}, {"start": 1965.12, "end": 1965.38, "word": " What", "probability": 0.62841796875}, {"start": 1965.38, "end": 1965.48, "word": " do", "probability": 0.409912109375}, {"start": 1965.48, "end": 1965.56, "word": " you", "probability": 0.955078125}, {"start": 1965.56, "end": 1965.9, "word": " understand", "probability": 0.7236328125}, {"start": 1965.9, "end": 1966.6, "word": " from", "probability": 0.41943359375}, {"start": 1966.6, "end": 1967.04, "word": " the", "probability": 0.529296875}, {"start": 1967.04, "end": 1967.52, "word": " attributes", "probability": 0.50634765625}, {"start": 1967.52, "end": 1967.8, "word": " of", "probability": 0.90869140625}, {"start": 1967.8, "end": 1967.94, "word": " the", "probability": 0.79736328125}, {"start": 1967.94, "end": 1968.18, "word": " traffic", "probability": 0.85888671875}, {"start": 1968.18, "end": 1968.6, "word": " report?", "probability": 0.94921875}, {"start": 1969.68, "end": 1970.16, "word": " No,", "probability": 0.60888671875}, {"start": 1970.2, "end": 1970.34, "word": " not", "probability": 0.7529296875}, {"start": 1970.34, "end": 1970.46, "word": " a", "probability": 0.64453125}, {"start": 1970.46, "end": 1970.62, "word": " list.", "probability": 0.9267578125}, {"start": 1971.48, "end": 1971.96, "word": " There", "probability": 0.728515625}, {"start": 1971.96, "end": 1972.02, "word": " is", "probability": 0.8525390625}, {"start": 1972.02, "end": 1972.12, "word": " one", "probability": 0.423095703125}, {"start": 1972.12, "end": 1972.96, "word": " reference", "probability": 0.90771484375}, {"start": 1972.96, "end": 1973.82, "word": " to", "probability": 0.394287109375}, {"start": 1973.82, "end": 1974.1, "word": " whom?", "probability": 0.90771484375}], "temperature": 1.0}, {"id": 80, "seek": 200283, "start": 1974.91, "end": 2002.83, "text": " No, Offender. Okay, okay. This is an association relationship. The traffic report has a reference to whom? No, Offender. And notice that it is not necessary that it is written in the attributes. It is not written here. Okay? But I understood it from where? From the relationship. Of course, the report that I do, Mr. Kharif, does not include the name of the offender's data. Okay? Now,", "tokens": [883, 11, 6318, 3216, 13, 1033, 11, 1392, 13, 639, 307, 364, 14598, 2480, 13, 440, 6419, 2275, 575, 257, 6408, 281, 7101, 30, 883, 11, 6318, 3216, 13, 400, 3449, 300, 309, 307, 406, 4818, 300, 309, 307, 3720, 294, 264, 17212, 13, 467, 307, 406, 3720, 510, 13, 1033, 30, 583, 286, 7320, 309, 490, 689, 30, 3358, 264, 2480, 13, 2720, 1164, 11, 264, 2275, 300, 286, 360, 11, 2221, 13, 591, 5854, 351, 11, 775, 406, 4090, 264, 1315, 295, 264, 766, 3216, 311, 1412, 13, 1033, 30, 823, 11], "avg_logprob": -0.5029605087481047, "compression_ratio": 1.6929824561403508, "no_speech_prob": 5.066394805908203e-06, "words": [{"start": 1974.91, "end": 1975.13, "word": " No,", "probability": 0.120361328125}, {"start": 1975.21, "end": 1975.55, "word": " Offender.", "probability": 0.59423828125}, {"start": 1977.13, "end": 1977.57, "word": " Okay,", "probability": 0.1943359375}, {"start": 1981.61, "end": 1981.89, "word": " okay.", "probability": 0.51123046875}, {"start": 1982.83, "end": 1983.27, "word": " This", "probability": 0.6064453125}, {"start": 1983.27, "end": 1983.35, "word": " is", "probability": 0.86328125}, {"start": 1983.35, "end": 1983.71, "word": " an", "probability": 0.2381591796875}, {"start": 1983.71, "end": 1984.05, "word": " association", "probability": 0.8779296875}, {"start": 1984.05, "end": 1984.25, "word": " relationship.", "probability": 0.71484375}, {"start": 1984.55, "end": 1984.67, "word": " The", "probability": 0.185791015625}, {"start": 1984.67, "end": 1984.93, "word": " traffic", "probability": 0.6826171875}, {"start": 1984.93, "end": 1985.37, "word": " report", "probability": 0.923828125}, {"start": 1985.37, "end": 1985.73, "word": " has", "probability": 0.66748046875}, {"start": 1985.73, "end": 1985.95, "word": " a", "probability": 0.63330078125}, {"start": 1985.95, "end": 1986.29, "word": " reference", "probability": 0.90283203125}, {"start": 1986.29, "end": 1986.55, "word": " to", "probability": 0.7294921875}, {"start": 1986.55, "end": 1986.69, "word": " whom?", "probability": 0.51318359375}, {"start": 1987.17, "end": 1987.61, "word": " No,", "probability": 0.3330078125}, {"start": 1987.65, "end": 1987.93, "word": " Offender.", "probability": 0.82958984375}, {"start": 1988.19, "end": 1988.41, "word": " And", "probability": 0.35009765625}, {"start": 1988.41, "end": 1988.67, "word": " notice", "probability": 0.446044921875}, {"start": 1988.67, "end": 1988.83, "word": " that", "probability": 0.51513671875}, {"start": 1988.83, "end": 1988.83, "word": " it", "probability": 0.7177734375}, {"start": 1988.83, "end": 1988.89, "word": " is", "probability": 0.434326171875}, {"start": 1988.89, "end": 1988.91, "word": " not", "probability": 0.93505859375}, {"start": 1988.91, "end": 1989.09, "word": " necessary", "probability": 0.31396484375}, {"start": 1989.09, "end": 1989.21, "word": " that", "probability": 0.50830078125}, {"start": 1989.21, "end": 1989.21, "word": " it", "probability": 0.74462890625}, {"start": 1989.21, "end": 1989.35, "word": " is", "probability": 0.6748046875}, {"start": 1989.35, "end": 1989.57, "word": " written", "probability": 0.81982421875}, {"start": 1989.57, "end": 1989.73, "word": " in", "probability": 0.8759765625}, {"start": 1989.73, "end": 1989.81, "word": " the", "probability": 0.88037109375}, {"start": 1989.81, "end": 1990.25, "word": " attributes.", "probability": 0.76220703125}, {"start": 1990.39, "end": 1990.53, "word": " It", "probability": 0.1888427734375}, {"start": 1990.53, "end": 1990.59, "word": " is", "probability": 0.5654296875}, {"start": 1990.59, "end": 1990.77, "word": " not", "probability": 0.92724609375}, {"start": 1990.77, "end": 1991.05, "word": " written", "probability": 0.89306640625}, {"start": 1991.05, "end": 1991.35, "word": " here.", "probability": 0.78271484375}, {"start": 1992.11, "end": 1992.47, "word": " Okay?", "probability": 0.58154296875}, {"start": 1992.59, "end": 1992.77, "word": " But", "probability": 0.88623046875}, {"start": 1992.77, "end": 1992.99, "word": " I", "probability": 0.63818359375}, {"start": 1992.99, "end": 1993.27, "word": " understood", "probability": 0.65673828125}, {"start": 1993.27, "end": 1993.41, "word": " it", "probability": 0.52490234375}, {"start": 1993.41, "end": 1993.47, "word": " from", "probability": 0.81689453125}, {"start": 1993.47, "end": 1993.69, "word": " where?", "probability": 0.86669921875}, {"start": 1994.39, "end": 1994.83, "word": " From", "probability": 0.72607421875}, {"start": 1994.83, "end": 1994.91, "word": " the", "probability": 0.888671875}, {"start": 1994.91, "end": 1995.23, "word": " relationship.", "probability": 0.7861328125}, {"start": 1995.85, "end": 1996.13, "word": " Of", "probability": 0.703125}, {"start": 1996.13, "end": 1996.21, "word": " course,", "probability": 0.962890625}, {"start": 1996.33, "end": 1996.43, "word": " the", "probability": 0.708984375}, {"start": 1996.43, "end": 1996.87, "word": " report", "probability": 0.8916015625}, {"start": 1996.87, "end": 1997.31, "word": " that", "probability": 0.70263671875}, {"start": 1997.31, "end": 1997.47, "word": " I", "probability": 0.99072265625}, {"start": 1997.47, "end": 1997.67, "word": " do,", "probability": 0.332275390625}, {"start": 1997.77, "end": 1997.87, "word": " Mr.", "probability": 0.204833984375}, {"start": 1997.87, "end": 1998.03, "word": " Kharif,", "probability": 0.41943359375}, {"start": 1998.11, "end": 1998.23, "word": " does", "probability": 0.284423828125}, {"start": 1998.23, "end": 1998.23, "word": " not", "probability": 0.94775390625}, {"start": 1998.23, "end": 1998.47, "word": " include", "probability": 0.376953125}, {"start": 1998.47, "end": 1998.69, "word": " the", "probability": 0.80908203125}, {"start": 1998.69, "end": 1998.81, "word": " name", "probability": 0.82080078125}, {"start": 1998.81, "end": 1999.43, "word": " of", "probability": 0.96484375}, {"start": 1999.43, "end": 1999.43, "word": " the", "probability": 0.88525390625}, {"start": 1999.43, "end": 2000.47, "word": " offender's", "probability": 0.6486002604166666}, {"start": 2000.47, "end": 2000.47, "word": " data.", "probability": 0.51806640625}, {"start": 2000.83, "end": 2001.27, "word": " Okay?", "probability": 0.68798828125}, {"start": 2002.43, "end": 2002.83, "word": " Now,", "probability": 0.85888671875}], "temperature": 1.0}, {"id": 81, "seek": 203264, "start": 2003.92, "end": 2032.64, "text": " As long as there are two numbers, I also understand the exchange relationship. Meaning from within the offender to his class, there is a list of traffic reports. Because sometimes I look for a certain person, I want to see what are the violations that he has made, what are his faults. Okay? So I find a list of traffic reports. This is also not represented, but you want to understand it from the existing relationship. Okay? So this is a reference for the offender, and the offender has a list of", "tokens": [1018, 938, 382, 456, 366, 732, 3547, 11, 286, 611, 1223, 264, 7742, 2480, 13, 19948, 490, 1951, 264, 766, 3216, 281, 702, 1508, 11, 456, 307, 257, 1329, 295, 6419, 7122, 13, 1436, 2171, 286, 574, 337, 257, 1629, 954, 11, 286, 528, 281, 536, 437, 366, 264, 30405, 300, 415, 575, 1027, 11, 437, 366, 702, 36090, 13, 1033, 30, 407, 286, 915, 257, 1329, 295, 6419, 7122, 13, 639, 307, 611, 406, 10379, 11, 457, 291, 528, 281, 1223, 309, 490, 264, 6741, 2480, 13, 1033, 30, 407, 341, 307, 257, 6408, 337, 264, 766, 3216, 11, 293, 264, 766, 3216, 575, 257, 1329, 295], "avg_logprob": -0.48165136958480975, "compression_ratio": 1.8550185873605949, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2003.92, "end": 2004.24, "word": " As", "probability": 0.112548828125}, {"start": 2004.24, "end": 2004.7, "word": " long", "probability": 0.7958984375}, {"start": 2004.7, "end": 2004.72, "word": " as", "probability": 0.96142578125}, {"start": 2004.72, "end": 2004.84, "word": " there", "probability": 0.599609375}, {"start": 2004.84, "end": 2004.86, "word": " are", "probability": 0.79345703125}, {"start": 2004.86, "end": 2005.28, "word": " two", "probability": 0.68115234375}, {"start": 2005.28, "end": 2005.28, "word": " numbers,", "probability": 0.57470703125}, {"start": 2005.62, "end": 2006.28, "word": " I", "probability": 0.69091796875}, {"start": 2006.28, "end": 2006.28, "word": " also", "probability": 0.1595458984375}, {"start": 2006.28, "end": 2006.52, "word": " understand", "probability": 0.65673828125}, {"start": 2006.52, "end": 2006.82, "word": " the", "probability": 0.73828125}, {"start": 2006.82, "end": 2007.32, "word": " exchange", "probability": 0.350341796875}, {"start": 2007.32, "end": 2007.58, "word": " relationship.", "probability": 0.53515625}, {"start": 2007.92, "end": 2008.2, "word": " Meaning", "probability": 0.2093505859375}, {"start": 2008.2, "end": 2008.38, "word": " from", "probability": 0.264892578125}, {"start": 2008.38, "end": 2008.68, "word": " within", "probability": 0.400390625}, {"start": 2008.68, "end": 2008.82, "word": " the", "probability": 0.89697265625}, {"start": 2008.82, "end": 2009.26, "word": " offender", "probability": 0.7333984375}, {"start": 2009.26, "end": 2010.46, "word": " to", "probability": 0.370849609375}, {"start": 2010.46, "end": 2010.5, "word": " his", "probability": 0.8828125}, {"start": 2010.5, "end": 2011.1, "word": " class,", "probability": 0.81591796875}, {"start": 2012.48, "end": 2012.68, "word": " there", "probability": 0.61669921875}, {"start": 2012.68, "end": 2012.68, "word": " is", "probability": 0.8134765625}, {"start": 2012.68, "end": 2013.5, "word": " a", "probability": 0.94970703125}, {"start": 2013.5, "end": 2013.76, "word": " list", "probability": 0.87109375}, {"start": 2013.76, "end": 2013.94, "word": " of", "probability": 0.9404296875}, {"start": 2013.94, "end": 2014.96, "word": " traffic", "probability": 0.3154296875}, {"start": 2014.96, "end": 2015.38, "word": " reports.", "probability": 0.65283203125}, {"start": 2015.46, "end": 2015.8, "word": " Because", "probability": 0.40576171875}, {"start": 2015.8, "end": 2016.14, "word": " sometimes", "probability": 0.8583984375}, {"start": 2016.14, "end": 2016.34, "word": " I", "probability": 0.87548828125}, {"start": 2016.34, "end": 2016.58, "word": " look", "probability": 0.418701171875}, {"start": 2016.58, "end": 2016.76, "word": " for", "probability": 0.89892578125}, {"start": 2016.76, "end": 2016.88, "word": " a", "probability": 0.7431640625}, {"start": 2016.88, "end": 2017.44, "word": " certain", "probability": 0.2939453125}, {"start": 2017.44, "end": 2017.44, "word": " person,", "probability": 0.90380859375}, {"start": 2017.52, "end": 2017.58, "word": " I", "probability": 0.86376953125}, {"start": 2017.58, "end": 2017.7, "word": " want", "probability": 0.79296875}, {"start": 2017.7, "end": 2017.78, "word": " to", "probability": 0.97021484375}, {"start": 2017.78, "end": 2017.9, "word": " see", "probability": 0.65966796875}, {"start": 2017.9, "end": 2018.08, "word": " what", "probability": 0.697265625}, {"start": 2018.08, "end": 2018.08, "word": " are", "probability": 0.254150390625}, {"start": 2018.08, "end": 2018.16, "word": " the", "probability": 0.6748046875}, {"start": 2018.16, "end": 2018.46, "word": " violations", "probability": 0.437744140625}, {"start": 2018.46, "end": 2018.74, "word": " that", "probability": 0.33837890625}, {"start": 2018.74, "end": 2018.82, "word": " he", "probability": 0.74560546875}, {"start": 2018.82, "end": 2018.92, "word": " has", "probability": 0.26123046875}, {"start": 2018.92, "end": 2018.96, "word": " made,", "probability": 0.304443359375}, {"start": 2019.16, "end": 2019.3, "word": " what", "probability": 0.84619140625}, {"start": 2019.3, "end": 2019.32, "word": " are", "probability": 0.826171875}, {"start": 2019.32, "end": 2019.38, "word": " his", "probability": 0.74853515625}, {"start": 2019.38, "end": 2019.68, "word": " faults.", "probability": 0.0977783203125}, {"start": 2020.86, "end": 2021.1, "word": " Okay?", "probability": 0.284423828125}, {"start": 2021.62, "end": 2021.76, "word": " So", "probability": 0.810546875}, {"start": 2021.76, "end": 2021.92, "word": " I", "probability": 0.8466796875}, {"start": 2021.92, "end": 2022.08, "word": " find", "probability": 0.74365234375}, {"start": 2022.08, "end": 2022.32, "word": " a", "probability": 0.56396484375}, {"start": 2022.32, "end": 2022.62, "word": " list", "probability": 0.9033203125}, {"start": 2022.62, "end": 2022.82, "word": " of", "probability": 0.955078125}, {"start": 2022.82, "end": 2023.26, "word": " traffic", "probability": 0.779296875}, {"start": 2023.26, "end": 2023.48, "word": " reports.", "probability": 0.90283203125}, {"start": 2023.58, "end": 2023.9, "word": " This", "probability": 0.67919921875}, {"start": 2023.9, "end": 2023.98, "word": " is", "probability": 0.5078125}, {"start": 2023.98, "end": 2024.18, "word": " also", "probability": 0.7421875}, {"start": 2024.18, "end": 2024.36, "word": " not", "probability": 0.83984375}, {"start": 2024.36, "end": 2024.8, "word": " represented,", "probability": 0.623046875}, {"start": 2025.4, "end": 2025.62, "word": " but", "probability": 0.73388671875}, {"start": 2025.62, "end": 2025.78, "word": " you", "probability": 0.94580078125}, {"start": 2025.78, "end": 2025.94, "word": " want", "probability": 0.447021484375}, {"start": 2025.94, "end": 2026.06, "word": " to", "probability": 0.97216796875}, {"start": 2026.06, "end": 2026.28, "word": " understand", "probability": 0.73046875}, {"start": 2026.28, "end": 2026.42, "word": " it", "probability": 0.59716796875}, {"start": 2026.42, "end": 2026.84, "word": " from", "probability": 0.65185546875}, {"start": 2026.84, "end": 2027.56, "word": " the", "probability": 0.86767578125}, {"start": 2027.56, "end": 2027.86, "word": " existing", "probability": 0.58154296875}, {"start": 2027.86, "end": 2027.86, "word": " relationship.", "probability": 0.494873046875}, {"start": 2028.94, "end": 2029.26, "word": " Okay?", "probability": 0.578125}, {"start": 2029.62, "end": 2029.82, "word": " So", "probability": 0.453125}, {"start": 2029.82, "end": 2030.06, "word": " this", "probability": 0.60498046875}, {"start": 2030.06, "end": 2030.16, "word": " is", "probability": 0.71435546875}, {"start": 2030.16, "end": 2030.34, "word": " a", "probability": 0.86767578125}, {"start": 2030.34, "end": 2030.68, "word": " reference", "probability": 0.908203125}, {"start": 2030.68, "end": 2030.86, "word": " for", "probability": 0.490966796875}, {"start": 2030.86, "end": 2030.94, "word": " the", "probability": 0.89453125}, {"start": 2030.94, "end": 2031.24, "word": " offender,", "probability": 0.88720703125}, {"start": 2031.3, "end": 2031.38, "word": " and", "probability": 0.900390625}, {"start": 2031.38, "end": 2031.44, "word": " the", "probability": 0.865234375}, {"start": 2031.44, "end": 2031.74, "word": " offender", "probability": 0.892578125}, {"start": 2031.74, "end": 2032.0, "word": " has", "probability": 0.87109375}, {"start": 2032.0, "end": 2032.06, "word": " a", "probability": 0.98388671875}, {"start": 2032.06, "end": 2032.28, "word": " list", "probability": 0.93408203125}, {"start": 2032.28, "end": 2032.64, "word": " of", "probability": 0.96240234375}], "temperature": 1.0}, {"id": 82, "seek": 205896, "start": 2033.39, "end": 2058.97, "text": " Traffic report. Well, we are not done yet. We have this one. What is this? Violation. What is violation? The violation that was done. The violation that was done. The violation. Okay? And the past report has a contribution. What does this contribution mean? It is also an association. It means that in the traffic report there is a list of what?", "tokens": [46950, 2275, 13, 1042, 11, 321, 366, 406, 1096, 1939, 13, 492, 362, 341, 472, 13, 708, 307, 341, 30, 24383, 399, 13, 708, 307, 22840, 30, 440, 22840, 300, 390, 1096, 13, 440, 22840, 300, 390, 1096, 13, 440, 22840, 13, 1033, 30, 400, 264, 1791, 2275, 575, 257, 13150, 13, 708, 775, 341, 13150, 914, 30, 467, 307, 611, 364, 14598, 13, 467, 1355, 300, 294, 264, 6419, 2275, 456, 307, 257, 1329, 295, 437, 30], "avg_logprob": -0.5079113878781283, "compression_ratio": 1.9329608938547487, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 2033.39, "end": 2033.73, "word": " Traffic", "probability": 0.79052734375}, {"start": 2033.73, "end": 2034.13, "word": " report.", "probability": 0.62890625}, {"start": 2036.07, "end": 2036.25, "word": " Well,", "probability": 0.115234375}, {"start": 2036.31, "end": 2036.45, "word": " we", "probability": 0.7919921875}, {"start": 2036.45, "end": 2036.49, "word": " are", "probability": 0.259521484375}, {"start": 2036.49, "end": 2036.49, "word": " not", "probability": 0.82373046875}, {"start": 2036.49, "end": 2036.77, "word": " done", "probability": 0.6025390625}, {"start": 2036.77, "end": 2036.99, "word": " yet.", "probability": 0.80712890625}, {"start": 2037.05, "end": 2037.05, "word": " We", "probability": 0.334228515625}, {"start": 2037.05, "end": 2037.33, "word": " have", "probability": 0.8818359375}, {"start": 2037.33, "end": 2038.35, "word": " this", "probability": 0.58837890625}, {"start": 2038.35, "end": 2038.43, "word": " one.", "probability": 0.5185546875}, {"start": 2038.51, "end": 2038.79, "word": " What", "probability": 0.8681640625}, {"start": 2038.79, "end": 2038.85, "word": " is", "probability": 0.890625}, {"start": 2038.85, "end": 2039.03, "word": " this?", "probability": 0.6884765625}, {"start": 2039.13, "end": 2039.57, "word": " Violation.", "probability": 0.75146484375}, {"start": 2039.59, "end": 2039.69, "word": " What", "probability": 0.84619140625}, {"start": 2039.69, "end": 2039.79, "word": " is", "probability": 0.86376953125}, {"start": 2039.79, "end": 2040.17, "word": " violation?", "probability": 0.68115234375}, {"start": 2042.43, "end": 2042.83, "word": " The", "probability": 0.2449951171875}, {"start": 2042.83, "end": 2044.49, "word": " violation", "probability": 0.6787109375}, {"start": 2044.49, "end": 2044.61, "word": " that", "probability": 0.1759033203125}, {"start": 2044.61, "end": 2044.69, "word": " was", "probability": 0.44580078125}, {"start": 2044.69, "end": 2044.87, "word": " done.", "probability": 0.3173828125}, {"start": 2044.99, "end": 2045.03, "word": " The", "probability": 0.32421875}, {"start": 2045.03, "end": 2045.41, "word": " violation", "probability": 0.86279296875}, {"start": 2045.41, "end": 2045.59, "word": " that", "probability": 0.385498046875}, {"start": 2045.59, "end": 2045.65, "word": " was", "probability": 0.8310546875}, {"start": 2045.65, "end": 2045.85, "word": " done.", "probability": 0.81591796875}, {"start": 2046.45, "end": 2046.77, "word": " The", "probability": 0.44677734375}, {"start": 2046.77, "end": 2047.07, "word": " violation.", "probability": 0.83544921875}, {"start": 2047.75, "end": 2047.99, "word": " Okay?", "probability": 0.2215576171875}, {"start": 2048.95, "end": 2049.23, "word": " And", "probability": 0.80322265625}, {"start": 2049.23, "end": 2050.65, "word": " the", "probability": 0.4912109375}, {"start": 2050.65, "end": 2050.71, "word": " past", "probability": 0.1549072265625}, {"start": 2050.71, "end": 2051.47, "word": " report", "probability": 0.7890625}, {"start": 2051.47, "end": 2052.07, "word": " has", "probability": 0.383056640625}, {"start": 2052.07, "end": 2052.25, "word": " a", "probability": 0.417724609375}, {"start": 2052.25, "end": 2052.45, "word": " contribution.", "probability": 0.302490234375}, {"start": 2052.61, "end": 2053.01, "word": " What", "probability": 0.64794921875}, {"start": 2053.01, "end": 2053.01, "word": " does", "probability": 0.64892578125}, {"start": 2053.01, "end": 2053.13, "word": " this", "probability": 0.83056640625}, {"start": 2053.13, "end": 2053.31, "word": " contribution", "probability": 0.8837890625}, {"start": 2053.31, "end": 2053.67, "word": " mean?", "probability": 0.95703125}, {"start": 2054.29, "end": 2054.73, "word": " It", "probability": 0.184814453125}, {"start": 2054.73, "end": 2055.11, "word": " is", "probability": 0.638671875}, {"start": 2055.11, "end": 2055.19, "word": " also", "probability": 0.8125}, {"start": 2055.19, "end": 2055.27, "word": " an", "probability": 0.7294921875}, {"start": 2055.27, "end": 2055.65, "word": " association.", "probability": 0.89208984375}, {"start": 2056.35, "end": 2056.57, "word": " It", "probability": 0.31640625}, {"start": 2056.57, "end": 2056.87, "word": " means", "probability": 0.9130859375}, {"start": 2056.87, "end": 2057.17, "word": " that", "probability": 0.86083984375}, {"start": 2057.17, "end": 2057.17, "word": " in", "probability": 0.4912109375}, {"start": 2057.17, "end": 2057.29, "word": " the", "probability": 0.57421875}, {"start": 2057.29, "end": 2057.49, "word": " traffic", "probability": 0.85107421875}, {"start": 2057.49, "end": 2057.89, "word": " report", "probability": 0.947265625}, {"start": 2057.89, "end": 2058.11, "word": " there", "probability": 0.5712890625}, {"start": 2058.11, "end": 2058.19, "word": " is", "probability": 0.9228515625}, {"start": 2058.19, "end": 2058.27, "word": " a", "probability": 0.98486328125}, {"start": 2058.27, "end": 2058.49, "word": " list", "probability": 0.9326171875}, {"start": 2058.49, "end": 2058.65, "word": " of", "probability": 0.943359375}, {"start": 2058.65, "end": 2058.97, "word": " what?", "probability": 0.88134765625}], "temperature": 1.0}, {"id": 83, "seek": 208908, "start": 2060.08, "end": 2089.08, "text": " List of violations, okay? Passing a report may include more than one violation in the event of an accident. Okay? You want to write down the violations committed by whom? The offender. Okay? Yes, for example, speed. Two, he was drunk. Yes. Three, he did not wear a seat belt. Four, what will all these be? Violations. Okay? Violations. Among whom? The report. Okay? And notice that this is related to one direction.", "tokens": [17668, 295, 30405, 11, 1392, 30, 10319, 278, 257, 2275, 815, 4090, 544, 813, 472, 22840, 294, 264, 2280, 295, 364, 6398, 13, 1033, 30, 509, 528, 281, 2464, 760, 264, 30405, 7784, 538, 7101, 30, 440, 766, 3216, 13, 1033, 30, 1079, 11, 337, 1365, 11, 3073, 13, 4453, 11, 415, 390, 11192, 13, 1079, 13, 6244, 11, 415, 630, 406, 3728, 257, 6121, 10750, 13, 7451, 11, 437, 486, 439, 613, 312, 30, 24383, 763, 13, 1033, 30, 24383, 763, 13, 16119, 7101, 30, 440, 2275, 13, 1033, 30, 400, 3449, 300, 341, 307, 4077, 281, 472, 3513, 13], "avg_logprob": -0.4788602897349526, "compression_ratio": 1.6706827309236947, "no_speech_prob": 3.1888484954833984e-05, "words": [{"start": 2060.08, "end": 2060.44, "word": " List", "probability": 0.60888671875}, {"start": 2060.44, "end": 2060.64, "word": " of", "probability": 0.953125}, {"start": 2060.64, "end": 2061.1, "word": " violations,", "probability": 0.65673828125}, {"start": 2061.96, "end": 2062.22, "word": " okay?", "probability": 0.20703125}, {"start": 2063.36, "end": 2063.88, "word": " Passing", "probability": 0.4627685546875}, {"start": 2063.88, "end": 2063.88, "word": " a", "probability": 0.327880859375}, {"start": 2063.88, "end": 2063.88, "word": " report", "probability": 0.8701171875}, {"start": 2063.88, "end": 2064.64, "word": " may", "probability": 0.177001953125}, {"start": 2064.64, "end": 2065.06, "word": " include", "probability": 0.68359375}, {"start": 2065.06, "end": 2065.56, "word": " more", "probability": 0.64599609375}, {"start": 2065.56, "end": 2065.64, "word": " than", "probability": 0.78955078125}, {"start": 2065.64, "end": 2065.9, "word": " one", "probability": 0.869140625}, {"start": 2065.9, "end": 2066.18, "word": " violation", "probability": 0.70068359375}, {"start": 2066.18, "end": 2067.04, "word": " in", "probability": 0.228271484375}, {"start": 2067.04, "end": 2067.8, "word": " the", "probability": 0.415771484375}, {"start": 2067.8, "end": 2068.6, "word": " event", "probability": 0.4208984375}, {"start": 2068.6, "end": 2068.66, "word": " of", "probability": 0.292236328125}, {"start": 2068.66, "end": 2069.18, "word": " an", "probability": 0.7607421875}, {"start": 2069.18, "end": 2069.18, "word": " accident.", "probability": 0.6142578125}, {"start": 2069.64, "end": 2069.76, "word": " Okay?", "probability": 0.490966796875}, {"start": 2069.8, "end": 2069.88, "word": " You", "probability": 0.67578125}, {"start": 2069.88, "end": 2070.04, "word": " want", "probability": 0.208984375}, {"start": 2070.04, "end": 2070.04, "word": " to", "probability": 0.8427734375}, {"start": 2070.04, "end": 2070.18, "word": " write", "probability": 0.66162109375}, {"start": 2070.18, "end": 2070.28, "word": " down", "probability": 0.42724609375}, {"start": 2070.28, "end": 2070.28, "word": " the", "probability": 0.6845703125}, {"start": 2070.28, "end": 2070.68, "word": " violations", "probability": 0.80126953125}, {"start": 2070.68, "end": 2071.06, "word": " committed", "probability": 0.21630859375}, {"start": 2071.06, "end": 2071.16, "word": " by", "probability": 0.9384765625}, {"start": 2071.16, "end": 2071.36, "word": " whom?", "probability": 0.58935546875}, {"start": 2072.08, "end": 2072.08, "word": " The", "probability": 0.611328125}, {"start": 2072.08, "end": 2072.42, "word": " offender.", "probability": 0.813232421875}, {"start": 2073.06, "end": 2073.22, "word": " Okay?", "probability": 0.40576171875}, {"start": 2073.46, "end": 2073.86, "word": " Yes,", "probability": 0.5185546875}, {"start": 2073.94, "end": 2074.06, "word": " for", "probability": 0.8271484375}, {"start": 2074.06, "end": 2074.22, "word": " example,", "probability": 0.94580078125}, {"start": 2074.34, "end": 2074.62, "word": " speed.", "probability": 0.58349609375}, {"start": 2075.02, "end": 2075.4, "word": " Two,", "probability": 0.82861328125}, {"start": 2075.58, "end": 2075.6, "word": " he", "probability": 0.7451171875}, {"start": 2075.6, "end": 2075.76, "word": " was", "probability": 0.90576171875}, {"start": 2075.76, "end": 2075.98, "word": " drunk.", "probability": 0.92431640625}, {"start": 2076.84, "end": 2077.18, "word": " Yes.", "probability": 0.53564453125}, {"start": 2077.78, "end": 2078.3, "word": " Three,", "probability": 0.9228515625}, {"start": 2078.48, "end": 2078.86, "word": " he", "probability": 0.73291015625}, {"start": 2078.86, "end": 2078.86, "word": " did", "probability": 0.576171875}, {"start": 2078.86, "end": 2078.86, "word": " not", "probability": 0.94189453125}, {"start": 2078.86, "end": 2079.3, "word": " wear", "probability": 0.53759765625}, {"start": 2079.3, "end": 2079.4, "word": " a", "probability": 0.7705078125}, {"start": 2079.4, "end": 2079.5, "word": " seat", "probability": 0.63330078125}, {"start": 2079.5, "end": 2079.56, "word": " belt.", "probability": 0.69384765625}, {"start": 2080.22, "end": 2080.74, "word": " Four,", "probability": 0.927734375}, {"start": 2080.94, "end": 2081.08, "word": " what", "probability": 0.367919921875}, {"start": 2081.08, "end": 2081.08, "word": " will", "probability": 0.36767578125}, {"start": 2081.08, "end": 2081.32, "word": " all", "probability": 0.541015625}, {"start": 2081.32, "end": 2081.32, "word": " these", "probability": 0.48291015625}, {"start": 2081.32, "end": 2081.42, "word": " be?", "probability": 0.89892578125}, {"start": 2081.98, "end": 2082.5, "word": " Violations.", "probability": 0.7264404296875}, {"start": 2083.18, "end": 2083.34, "word": " Okay?", "probability": 0.78466796875}, {"start": 2083.52, "end": 2084.04, "word": " Violations.", "probability": 0.935546875}, {"start": 2084.28, "end": 2084.46, "word": " Among", "probability": 0.262451171875}, {"start": 2084.46, "end": 2084.94, "word": " whom?", "probability": 0.87109375}, {"start": 2086.1, "end": 2086.48, "word": " The", "probability": 0.66455078125}, {"start": 2086.48, "end": 2086.8, "word": " report.", "probability": 0.92333984375}, {"start": 2087.12, "end": 2087.52, "word": " Okay?", "probability": 0.796875}, {"start": 2087.7, "end": 2087.88, "word": " And", "probability": 0.72119140625}, {"start": 2087.88, "end": 2088.04, "word": " notice", "probability": 0.701171875}, {"start": 2088.04, "end": 2088.16, "word": " that", "probability": 0.53662109375}, {"start": 2088.16, "end": 2088.26, "word": " this", "probability": 0.6669921875}, {"start": 2088.26, "end": 2088.28, "word": " is", "probability": 0.375}, {"start": 2088.28, "end": 2088.48, "word": " related", "probability": 0.434814453125}, {"start": 2088.48, "end": 2088.6, "word": " to", "probability": 0.6455078125}, {"start": 2088.6, "end": 2089.08, "word": " one", "probability": 0.59521484375}, {"start": 2089.08, "end": 2089.08, "word": " direction.", "probability": 0.837890625}], "temperature": 1.0}, {"id": 84, "seek": 211025, "start": 2090.25, "end": 2110.25, "text": "means this one has a list of these things and notice what is the relation between these things what you understand is that these things are built outside and they are trained here either through the constructor or through a set of methods all this you need to understand from what? from the drawing that is there we finished these three, we come here, who is this?", "tokens": [1398, 599, 341, 472, 575, 257, 1329, 295, 613, 721, 293, 3449, 437, 307, 264, 9721, 1296, 613, 721, 437, 291, 1223, 307, 300, 613, 721, 366, 3094, 2380, 293, 436, 366, 8895, 510, 2139, 807, 264, 47479, 420, 807, 257, 992, 295, 7150, 439, 341, 291, 643, 281, 1223, 490, 437, 30, 490, 264, 6316, 300, 307, 456, 321, 4335, 613, 1045, 11, 321, 808, 510, 11, 567, 307, 341, 30], "avg_logprob": -0.7123287540592559, "compression_ratio": 1.8666666666666667, "no_speech_prob": 2.6226043701171875e-05, "words": [{"start": 2090.25, "end": 2090.73, "word": "means", "probability": 0.425872802734375}, {"start": 2090.73, "end": 2091.21, "word": " this", "probability": 0.251953125}, {"start": 2091.21, "end": 2091.21, "word": " one", "probability": 0.20263671875}, {"start": 2091.21, "end": 2091.41, "word": " has", "probability": 0.7724609375}, {"start": 2091.41, "end": 2091.49, "word": " a", "probability": 0.6416015625}, {"start": 2091.49, "end": 2091.69, "word": " list", "probability": 0.8681640625}, {"start": 2091.69, "end": 2091.83, "word": " of", "probability": 0.7744140625}, {"start": 2091.83, "end": 2092.01, "word": " these", "probability": 0.1622314453125}, {"start": 2092.01, "end": 2092.03, "word": " things", "probability": 0.256591796875}, {"start": 2092.03, "end": 2092.17, "word": " and", "probability": 0.292724609375}, {"start": 2092.17, "end": 2092.39, "word": " notice", "probability": 0.5947265625}, {"start": 2092.39, "end": 2092.63, "word": " what", "probability": 0.35302734375}, {"start": 2092.63, "end": 2092.63, "word": " is", "probability": 0.2274169921875}, {"start": 2092.63, "end": 2092.73, "word": " the", "probability": 0.61279296875}, {"start": 2092.73, "end": 2092.97, "word": " relation", "probability": 0.482421875}, {"start": 2092.97, "end": 2093.35, "word": " between", "probability": 0.5986328125}, {"start": 2093.35, "end": 2093.49, "word": " these", "probability": 0.44140625}, {"start": 2093.49, "end": 2093.65, "word": " things", "probability": 0.35302734375}, {"start": 2093.65, "end": 2094.37, "word": " what", "probability": 0.2381591796875}, {"start": 2094.37, "end": 2094.55, "word": " you", "probability": 0.173583984375}, {"start": 2094.55, "end": 2094.91, "word": " understand", "probability": 0.529296875}, {"start": 2094.91, "end": 2095.51, "word": " is", "probability": 0.68798828125}, {"start": 2095.51, "end": 2095.59, "word": " that", "probability": 0.7373046875}, {"start": 2095.59, "end": 2095.75, "word": " these", "probability": 0.7109375}, {"start": 2095.75, "end": 2095.85, "word": " things", "probability": 0.469970703125}, {"start": 2095.85, "end": 2096.03, "word": " are", "probability": 0.87158203125}, {"start": 2096.03, "end": 2096.35, "word": " built", "probability": 0.239013671875}, {"start": 2096.35, "end": 2096.79, "word": " outside", "probability": 0.60888671875}, {"start": 2096.79, "end": 2097.91, "word": " and", "probability": 0.74072265625}, {"start": 2097.91, "end": 2097.93, "word": " they", "probability": 0.1859130859375}, {"start": 2097.93, "end": 2098.21, "word": " are", "probability": 0.79931640625}, {"start": 2098.21, "end": 2098.53, "word": " trained", "probability": 0.1549072265625}, {"start": 2098.53, "end": 2098.91, "word": " here", "probability": 0.67724609375}, {"start": 2098.91, "end": 2099.35, "word": " either", "probability": 0.78125}, {"start": 2099.35, "end": 2099.63, "word": " through", "probability": 0.77294921875}, {"start": 2099.63, "end": 2099.83, "word": " the", "probability": 0.642578125}, {"start": 2099.83, "end": 2100.23, "word": " constructor", "probability": 0.87353515625}, {"start": 2100.23, "end": 2100.41, "word": " or", "probability": 0.9482421875}, {"start": 2100.41, "end": 2100.71, "word": " through", "probability": 0.84814453125}, {"start": 2100.71, "end": 2100.85, "word": " a", "probability": 0.12420654296875}, {"start": 2100.85, "end": 2101.07, "word": " set", "probability": 0.9677734375}, {"start": 2101.07, "end": 2101.67, "word": " of", "probability": 0.958984375}, {"start": 2101.67, "end": 2101.95, "word": " methods", "probability": 0.841796875}, {"start": 2101.95, "end": 2102.19, "word": " all", "probability": 0.333251953125}, {"start": 2102.19, "end": 2102.35, "word": " this", "probability": 0.41650390625}, {"start": 2102.35, "end": 2102.45, "word": " you", "probability": 0.86328125}, {"start": 2102.45, "end": 2102.57, "word": " need", "probability": 0.318115234375}, {"start": 2102.57, "end": 2102.69, "word": " to", "probability": 0.9716796875}, {"start": 2102.69, "end": 2102.83, "word": " understand", "probability": 0.72412109375}, {"start": 2102.83, "end": 2103.03, "word": " from", "probability": 0.76708984375}, {"start": 2103.03, "end": 2103.31, "word": " what?", "probability": 0.62060546875}, {"start": 2104.17, "end": 2104.65, "word": " from", "probability": 0.5849609375}, {"start": 2104.65, "end": 2104.77, "word": " the", "probability": 0.8125}, {"start": 2104.77, "end": 2104.99, "word": " drawing", "probability": 0.75341796875}, {"start": 2104.99, "end": 2105.35, "word": " that", "probability": 0.37890625}, {"start": 2105.35, "end": 2105.41, "word": " is", "probability": 0.485595703125}, {"start": 2105.41, "end": 2105.73, "word": " there", "probability": 0.27490234375}, {"start": 2105.73, "end": 2106.41, "word": " we", "probability": 0.401123046875}, {"start": 2106.41, "end": 2106.71, "word": " finished", "probability": 0.341796875}, {"start": 2106.71, "end": 2107.01, "word": " these", "probability": 0.39501953125}, {"start": 2107.01, "end": 2107.47, "word": " three,", "probability": 0.767578125}, {"start": 2108.17, "end": 2108.73, "word": " we", "probability": 0.25537109375}, {"start": 2108.73, "end": 2108.93, "word": " come", "probability": 0.49267578125}, {"start": 2108.93, "end": 2109.25, "word": " here,", "probability": 0.771484375}, {"start": 2109.71, "end": 2109.95, "word": " who", "probability": 0.86083984375}, {"start": 2109.95, "end": 2110.01, "word": " is", "probability": 0.91796875}, {"start": 2110.01, "end": 2110.25, "word": " this?", "probability": 0.85888671875}], "temperature": 1.0}, {"id": 85, "seek": 214066, "start": 2111.38, "end": 2140.66, "text": " Class of the traffic report, the police who wrote the report. And there is also an association relationship, which means that in the traffic report there is also a reference to the traffic police who wrote it. You need to know what the traffic police wrote about the violations, okay? And also the traffic police has a list of traffic reports. We need to see what the traffic police wrote about the violations or the reports they wrote during the week, okay? And then I have a class called Policeman.", "tokens": [9471, 295, 264, 6419, 2275, 11, 264, 3804, 567, 4114, 264, 2275, 13, 400, 456, 307, 611, 364, 14598, 2480, 11, 597, 1355, 300, 294, 264, 6419, 2275, 456, 307, 611, 257, 6408, 281, 264, 6419, 3804, 567, 4114, 309, 13, 509, 643, 281, 458, 437, 264, 6419, 3804, 4114, 466, 264, 30405, 11, 1392, 30, 400, 611, 264, 6419, 3804, 575, 257, 1329, 295, 6419, 7122, 13, 492, 643, 281, 536, 437, 264, 6419, 3804, 4114, 466, 264, 30405, 420, 264, 7122, 436, 4114, 1830, 264, 1243, 11, 1392, 30, 400, 550, 286, 362, 257, 1508, 1219, 3635, 299, 15023, 13], "avg_logprob": -0.4975728375240437, "compression_ratio": 2.2266666666666666, "no_speech_prob": 9.894371032714844e-06, "words": [{"start": 2111.38, "end": 2111.76, "word": " Class", "probability": 0.17578125}, {"start": 2111.76, "end": 2111.88, "word": " of", "probability": 0.580078125}, {"start": 2111.88, "end": 2111.92, "word": " the", "probability": 0.468017578125}, {"start": 2111.92, "end": 2112.1, "word": " traffic", "probability": 0.697265625}, {"start": 2112.1, "end": 2112.48, "word": " report,", "probability": 0.92236328125}, {"start": 2112.6, "end": 2112.86, "word": " the", "probability": 0.314208984375}, {"start": 2112.86, "end": 2113.08, "word": " police", "probability": 0.6611328125}, {"start": 2113.08, "end": 2113.28, "word": " who", "probability": 0.24951171875}, {"start": 2113.28, "end": 2113.52, "word": " wrote", "probability": 0.84619140625}, {"start": 2113.52, "end": 2114.06, "word": " the", "probability": 0.599609375}, {"start": 2114.06, "end": 2114.36, "word": " report.", "probability": 0.88232421875}, {"start": 2115.02, "end": 2115.2, "word": " And", "probability": 0.560546875}, {"start": 2115.2, "end": 2115.38, "word": " there", "probability": 0.312255859375}, {"start": 2115.38, "end": 2115.44, "word": " is", "probability": 0.66748046875}, {"start": 2115.44, "end": 2115.72, "word": " also", "probability": 0.802734375}, {"start": 2115.72, "end": 2116.7, "word": " an", "probability": 0.1864013671875}, {"start": 2116.7, "end": 2117.7, "word": " association", "probability": 0.87841796875}, {"start": 2117.7, "end": 2117.78, "word": " relationship,", "probability": 0.43603515625}, {"start": 2118.26, "end": 2118.56, "word": " which", "probability": 0.313232421875}, {"start": 2118.56, "end": 2118.88, "word": " means", "probability": 0.90234375}, {"start": 2118.88, "end": 2119.32, "word": " that", "probability": 0.642578125}, {"start": 2119.32, "end": 2119.32, "word": " in", "probability": 0.233642578125}, {"start": 2119.32, "end": 2119.46, "word": " the", "probability": 0.828125}, {"start": 2119.46, "end": 2119.72, "word": " traffic", "probability": 0.85400390625}, {"start": 2119.72, "end": 2120.18, "word": " report", "probability": 0.93798828125}, {"start": 2120.18, "end": 2120.52, "word": " there", "probability": 0.5771484375}, {"start": 2120.52, "end": 2120.62, "word": " is", "probability": 0.896484375}, {"start": 2120.62, "end": 2120.92, "word": " also", "probability": 0.69873046875}, {"start": 2120.92, "end": 2121.08, "word": " a", "probability": 0.90966796875}, {"start": 2121.08, "end": 2121.58, "word": " reference", "probability": 0.88330078125}, {"start": 2121.58, "end": 2122.38, "word": " to", "probability": 0.8720703125}, {"start": 2122.38, "end": 2122.8, "word": " the", "probability": 0.8623046875}, {"start": 2122.8, "end": 2122.98, "word": " traffic", "probability": 0.32958984375}, {"start": 2122.98, "end": 2123.04, "word": " police", "probability": 0.76708984375}, {"start": 2123.04, "end": 2123.24, "word": " who", "probability": 0.794921875}, {"start": 2123.24, "end": 2123.48, "word": " wrote", "probability": 0.9345703125}, {"start": 2123.48, "end": 2123.72, "word": " it.", "probability": 0.326416015625}, {"start": 2123.76, "end": 2123.82, "word": " You", "probability": 0.359375}, {"start": 2123.82, "end": 2123.98, "word": " need", "probability": 0.39990234375}, {"start": 2123.98, "end": 2124.0, "word": " to", "probability": 0.9697265625}, {"start": 2124.0, "end": 2124.1, "word": " know", "probability": 0.8564453125}, {"start": 2124.1, "end": 2124.24, "word": " what", "probability": 0.6572265625}, {"start": 2124.24, "end": 2124.24, "word": " the", "probability": 0.2432861328125}, {"start": 2124.24, "end": 2124.42, "word": " traffic", "probability": 0.493896484375}, {"start": 2124.42, "end": 2124.42, "word": " police", "probability": 0.869140625}, {"start": 2124.42, "end": 2124.94, "word": " wrote", "probability": 0.8623046875}, {"start": 2124.94, "end": 2125.08, "word": " about", "probability": 0.281494140625}, {"start": 2125.08, "end": 2125.08, "word": " the", "probability": 0.560546875}, {"start": 2125.08, "end": 2125.3, "word": " violations,", "probability": 0.51904296875}, {"start": 2125.78, "end": 2126.16, "word": " okay?", "probability": 0.3564453125}, {"start": 2126.44, "end": 2126.82, "word": " And", "probability": 0.8115234375}, {"start": 2126.82, "end": 2127.2, "word": " also", "probability": 0.56982421875}, {"start": 2127.2, "end": 2127.56, "word": " the", "probability": 0.260009765625}, {"start": 2127.56, "end": 2127.56, "word": " traffic", "probability": 0.9072265625}, {"start": 2127.56, "end": 2127.56, "word": " police", "probability": 0.890625}, {"start": 2127.56, "end": 2129.12, "word": " has", "probability": 0.60205078125}, {"start": 2129.12, "end": 2129.22, "word": " a", "probability": 0.97021484375}, {"start": 2129.22, "end": 2129.5, "word": " list", "probability": 0.9052734375}, {"start": 2129.5, "end": 2129.68, "word": " of", "probability": 0.9677734375}, {"start": 2129.68, "end": 2130.0, "word": " traffic", "probability": 0.52587890625}, {"start": 2130.0, "end": 2130.5, "word": " reports.", "probability": 0.9091796875}, {"start": 2131.12, "end": 2131.2, "word": " We", "probability": 0.451171875}, {"start": 2131.2, "end": 2131.32, "word": " need", "probability": 0.533203125}, {"start": 2131.32, "end": 2131.38, "word": " to", "probability": 0.96923828125}, {"start": 2131.38, "end": 2131.5, "word": " see", "probability": 0.603515625}, {"start": 2131.5, "end": 2132.14, "word": " what", "probability": 0.79248046875}, {"start": 2132.14, "end": 2132.34, "word": " the", "probability": 0.28955078125}, {"start": 2132.34, "end": 2132.58, "word": " traffic", "probability": 0.71826171875}, {"start": 2132.58, "end": 2132.76, "word": " police", "probability": 0.87158203125}, {"start": 2132.76, "end": 2132.76, "word": " wrote", "probability": 0.69873046875}, {"start": 2132.76, "end": 2132.8, "word": " about", "probability": 0.728515625}, {"start": 2132.8, "end": 2132.8, "word": " the", "probability": 0.68896484375}, {"start": 2132.8, "end": 2132.8, "word": " violations", "probability": 0.86962890625}, {"start": 2132.8, "end": 2133.1, "word": " or", "probability": 0.67919921875}, {"start": 2133.1, "end": 2133.22, "word": " the", "probability": 0.3173828125}, {"start": 2133.22, "end": 2133.58, "word": " reports", "probability": 0.80859375}, {"start": 2133.58, "end": 2133.74, "word": " they", "probability": 0.2646484375}, {"start": 2133.74, "end": 2134.04, "word": " wrote", "probability": 0.9287109375}, {"start": 2134.04, "end": 2134.36, "word": " during", "probability": 0.55224609375}, {"start": 2134.36, "end": 2134.54, "word": " the", "probability": 0.640625}, {"start": 2134.54, "end": 2135.02, "word": " week,", "probability": 0.79931640625}, {"start": 2135.38, "end": 2135.94, "word": " okay?", "probability": 0.74169921875}, {"start": 2137.34, "end": 2137.86, "word": " And", "probability": 0.79052734375}, {"start": 2137.86, "end": 2138.16, "word": " then", "probability": 0.82763671875}, {"start": 2138.16, "end": 2138.38, "word": " I", "probability": 0.87939453125}, {"start": 2138.38, "end": 2138.46, "word": " have", "probability": 0.93310546875}, {"start": 2138.46, "end": 2138.58, "word": " a", "probability": 0.95263671875}, {"start": 2138.58, "end": 2138.88, "word": " class", "probability": 0.9755859375}, {"start": 2138.88, "end": 2139.16, "word": " called", "probability": 0.72265625}, {"start": 2139.16, "end": 2140.66, "word": " Policeman.", "probability": 0.674072265625}], "temperature": 1.0}, {"id": 86, "seek": 216733, "start": 2141.59, "end": 2167.33, "text": " And there is a relation between traffic policeman and policeman. What is this generalization? That this person extends from this person. On the basis that there can be more than one policeman. They all share the same ID, name and rank. And this person has two minuses here. Do you understand how from the drawing I read the code and understand what is inside the code? Now another example.", "tokens": [400, 456, 307, 257, 9721, 1296, 6419, 42658, 293, 42658, 13, 708, 307, 341, 2674, 2144, 30, 663, 341, 954, 26448, 490, 341, 954, 13, 1282, 264, 5143, 300, 456, 393, 312, 544, 813, 472, 3804, 1601, 13, 814, 439, 2073, 264, 912, 7348, 11, 1315, 293, 6181, 13, 400, 341, 954, 575, 732, 3175, 279, 510, 13, 1144, 291, 1223, 577, 490, 264, 6316, 286, 1401, 264, 3089, 293, 1223, 437, 307, 1854, 264, 3089, 30, 823, 1071, 1365, 13], "avg_logprob": -0.6753048729605791, "compression_ratio": 1.7180616740088106, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2141.59, "end": 2141.79, "word": " And", "probability": 0.1429443359375}, {"start": 2141.79, "end": 2141.93, "word": " there", "probability": 0.65576171875}, {"start": 2141.93, "end": 2141.95, "word": " is", "probability": 0.68798828125}, {"start": 2141.95, "end": 2142.05, "word": " a", "probability": 0.8447265625}, {"start": 2142.05, "end": 2142.25, "word": " relation", "probability": 0.55859375}, {"start": 2142.25, "end": 2142.45, "word": " between", "probability": 0.86767578125}, {"start": 2142.45, "end": 2142.81, "word": " traffic", "probability": 0.5361328125}, {"start": 2142.81, "end": 2143.49, "word": " policeman", "probability": 0.72119140625}, {"start": 2143.49, "end": 2144.23, "word": " and", "probability": 0.8623046875}, {"start": 2144.23, "end": 2144.77, "word": " policeman.", "probability": 0.61962890625}, {"start": 2145.61, "end": 2145.87, "word": " What", "probability": 0.12322998046875}, {"start": 2145.87, "end": 2145.93, "word": " is", "probability": 0.47900390625}, {"start": 2145.93, "end": 2146.05, "word": " this", "probability": 0.359375}, {"start": 2146.05, "end": 2146.55, "word": " generalization?", "probability": 0.616455078125}, {"start": 2146.65, "end": 2146.77, "word": " That", "probability": 0.2392578125}, {"start": 2146.77, "end": 2147.13, "word": " this", "probability": 0.6318359375}, {"start": 2147.13, "end": 2147.17, "word": " person", "probability": 0.1737060546875}, {"start": 2147.17, "end": 2147.65, "word": " extends", "probability": 0.37939453125}, {"start": 2147.65, "end": 2147.97, "word": " from", "probability": 0.3583984375}, {"start": 2147.97, "end": 2148.19, "word": " this", "probability": 0.54638671875}, {"start": 2148.19, "end": 2149.05, "word": " person.", "probability": 0.662109375}, {"start": 2149.17, "end": 2149.45, "word": " On", "probability": 0.06689453125}, {"start": 2149.45, "end": 2149.53, "word": " the", "probability": 0.79541015625}, {"start": 2149.53, "end": 2149.67, "word": " basis", "probability": 0.7197265625}, {"start": 2149.67, "end": 2149.77, "word": " that", "probability": 0.8662109375}, {"start": 2149.77, "end": 2149.85, "word": " there", "probability": 0.69189453125}, {"start": 2149.85, "end": 2149.97, "word": " can", "probability": 0.240478515625}, {"start": 2149.97, "end": 2150.23, "word": " be", "probability": 0.93701171875}, {"start": 2150.23, "end": 2150.51, "word": " more", "probability": 0.83544921875}, {"start": 2150.51, "end": 2150.63, "word": " than", "probability": 0.8369140625}, {"start": 2150.63, "end": 2151.13, "word": " one", "probability": 0.77880859375}, {"start": 2151.13, "end": 2151.61, "word": " policeman.", "probability": 0.436279296875}, {"start": 2151.69, "end": 2151.87, "word": " They", "probability": 0.294921875}, {"start": 2151.87, "end": 2151.91, "word": " all", "probability": 0.73583984375}, {"start": 2151.91, "end": 2152.27, "word": " share", "probability": 0.2587890625}, {"start": 2152.27, "end": 2153.23, "word": " the", "probability": 0.37744140625}, {"start": 2153.23, "end": 2153.51, "word": " same", "probability": 0.6953125}, {"start": 2153.51, "end": 2153.51, "word": " ID,", "probability": 0.77099609375}, {"start": 2153.67, "end": 2153.97, "word": " name", "probability": 0.78857421875}, {"start": 2153.97, "end": 2154.49, "word": " and", "probability": 0.703125}, {"start": 2154.49, "end": 2154.75, "word": " rank.", "probability": 0.99169921875}, {"start": 2154.75, "end": 2154.87, "word": " And", "probability": 0.72412109375}, {"start": 2154.87, "end": 2155.01, "word": " this", "probability": 0.6044921875}, {"start": 2155.01, "end": 2155.11, "word": " person", "probability": 0.43115234375}, {"start": 2155.11, "end": 2155.21, "word": " has", "probability": 0.373046875}, {"start": 2155.21, "end": 2155.59, "word": " two", "probability": 0.264892578125}, {"start": 2155.59, "end": 2156.01, "word": " minuses", "probability": 0.36773681640625}, {"start": 2156.01, "end": 2156.27, "word": " here.", "probability": 0.6494140625}, {"start": 2156.97, "end": 2157.49, "word": " Do", "probability": 0.07275390625}, {"start": 2157.49, "end": 2158.25, "word": " you", "probability": 0.95263671875}, {"start": 2158.25, "end": 2158.25, "word": " understand", "probability": 0.595703125}, {"start": 2158.25, "end": 2159.05, "word": " how", "probability": 0.3857421875}, {"start": 2159.05, "end": 2159.29, "word": " from", "probability": 0.2734375}, {"start": 2159.29, "end": 2159.39, "word": " the", "probability": 0.31494140625}, {"start": 2159.39, "end": 2159.63, "word": " drawing", "probability": 0.54345703125}, {"start": 2159.63, "end": 2159.89, "word": " I", "probability": 0.7607421875}, {"start": 2159.89, "end": 2161.11, "word": " read", "probability": 0.30810546875}, {"start": 2161.11, "end": 2161.31, "word": " the", "probability": 0.80419921875}, {"start": 2161.31, "end": 2161.53, "word": " code", "probability": 0.9267578125}, {"start": 2161.53, "end": 2161.61, "word": " and", "probability": 0.67724609375}, {"start": 2161.61, "end": 2161.87, "word": " understand", "probability": 0.414794921875}, {"start": 2161.87, "end": 2162.15, "word": " what", "probability": 0.87109375}, {"start": 2162.15, "end": 2162.53, "word": " is", "probability": 0.479736328125}, {"start": 2162.53, "end": 2162.71, "word": " inside", "probability": 0.6416015625}, {"start": 2162.71, "end": 2162.87, "word": " the", "probability": 0.65771484375}, {"start": 2162.87, "end": 2163.03, "word": " code?", "probability": 0.94384765625}, {"start": 2166.45, "end": 2166.97, "word": " Now", "probability": 0.55224609375}, {"start": 2166.97, "end": 2167.05, "word": " another", "probability": 0.53076171875}, {"start": 2167.05, "end": 2167.33, "word": " example.", "probability": 0.96826171875}], "temperature": 1.0}, {"id": 87, "seek": 219032, "start": 2168.72, "end": 2190.32, "text": " He says, draw a class diagram representing a book defined by the following statement, a book is composed of a number of parts which in turn are composed of a number of chapters, chapters are composed of sections, focus only on classes, relationships and multiplicity", "tokens": [634, 1619, 11, 2642, 257, 1508, 10686, 13460, 257, 1446, 7642, 538, 264, 3480, 5629, 11, 257, 1446, 307, 18204, 295, 257, 1230, 295, 3166, 597, 294, 1261, 366, 18204, 295, 257, 1230, 295, 20013, 11, 20013, 366, 18204, 295, 10863, 11, 1879, 787, 322, 5359, 11, 6159, 293, 17596, 507], "avg_logprob": -0.23828125315216872, "compression_ratio": 1.66875, "no_speech_prob": 0.0, "words": [{"start": 2168.72, "end": 2168.94, "word": " He", "probability": 0.32080078125}, {"start": 2168.94, "end": 2169.06, "word": " says,", "probability": 0.485595703125}, {"start": 2169.28, "end": 2169.28, "word": " draw", "probability": 0.19970703125}, {"start": 2169.28, "end": 2169.5, "word": " a", "probability": 0.9873046875}, {"start": 2169.5, "end": 2169.74, "word": " class", "probability": 0.9482421875}, {"start": 2169.74, "end": 2170.12, "word": " diagram", "probability": 0.880859375}, {"start": 2170.12, "end": 2170.7, "word": " representing", "probability": 0.63525390625}, {"start": 2170.7, "end": 2171.04, "word": " a", "probability": 0.98583984375}, {"start": 2171.04, "end": 2171.24, "word": " book", "probability": 0.962890625}, {"start": 2171.24, "end": 2171.66, "word": " defined", "probability": 0.8046875}, {"start": 2171.66, "end": 2171.9, "word": " by", "probability": 0.96044921875}, {"start": 2171.9, "end": 2172.06, "word": " the", "probability": 0.90234375}, {"start": 2172.06, "end": 2172.34, "word": " following", "probability": 0.86376953125}, {"start": 2172.34, "end": 2172.98, "word": " statement,", "probability": 0.87158203125}, {"start": 2173.34, "end": 2173.46, "word": " a", "probability": 0.7265625}, {"start": 2173.46, "end": 2173.64, "word": " book", "probability": 0.95849609375}, {"start": 2173.64, "end": 2173.82, "word": " is", "probability": 0.94970703125}, {"start": 2173.82, "end": 2174.28, "word": " composed", "probability": 0.93701171875}, {"start": 2174.28, "end": 2174.46, "word": " of", "probability": 0.97021484375}, {"start": 2174.46, "end": 2174.56, "word": " a", "probability": 0.96142578125}, {"start": 2174.56, "end": 2174.78, "word": " number", "probability": 0.9375}, {"start": 2174.78, "end": 2174.98, "word": " of", "probability": 0.970703125}, {"start": 2174.98, "end": 2175.36, "word": " parts", "probability": 0.8603515625}, {"start": 2175.36, "end": 2175.9, "word": " which", "probability": 0.5166015625}, {"start": 2175.9, "end": 2176.14, "word": " in", "probability": 0.90478515625}, {"start": 2176.14, "end": 2176.36, "word": " turn", "probability": 0.8271484375}, {"start": 2176.36, "end": 2176.56, "word": " are", "probability": 0.9072265625}, {"start": 2176.56, "end": 2176.94, "word": " composed", "probability": 0.92822265625}, {"start": 2176.94, "end": 2177.1, "word": " of", "probability": 0.966796875}, {"start": 2177.1, "end": 2177.18, "word": " a", "probability": 0.96142578125}, {"start": 2177.18, "end": 2177.36, "word": " number", "probability": 0.935546875}, {"start": 2177.36, "end": 2177.54, "word": " of", "probability": 0.96875}, {"start": 2177.54, "end": 2178.08, "word": " chapters,", "probability": 0.91259765625}, {"start": 2178.52, "end": 2178.88, "word": " chapters", "probability": 0.927734375}, {"start": 2178.88, "end": 2179.2, "word": " are", "probability": 0.9423828125}, {"start": 2179.2, "end": 2179.66, "word": " composed", "probability": 0.93505859375}, {"start": 2179.66, "end": 2179.86, "word": " of", "probability": 0.970703125}, {"start": 2179.86, "end": 2180.38, "word": " sections,", "probability": 0.8896484375}, {"start": 2186.62, "end": 2187.42, "word": " focus", "probability": 0.72021484375}, {"start": 2187.42, "end": 2187.9, "word": " only", "probability": 0.88720703125}, {"start": 2187.9, "end": 2188.28, "word": " on", "probability": 0.9443359375}, {"start": 2188.28, "end": 2188.68, "word": " classes,", "probability": 0.8408203125}, {"start": 2188.84, "end": 2189.34, "word": " relationships", "probability": 0.83154296875}, {"start": 2189.34, "end": 2189.64, "word": " and", "probability": 0.79296875}, {"start": 2189.64, "end": 2190.32, "word": " multiplicity", "probability": 0.8974609375}], "temperature": 1.0}, {"id": 88, "seek": 220354, "start": 2191.32, "end": 2203.54, "text": "Because when he drew this, he drew it like this. You can draw it horizontally or vertically, whatever shape you want. Because as long as I have a book, part, chapter and section, each one is a class. Okay? And I put associations between them.", "tokens": [21831, 562, 415, 12804, 341, 11, 415, 12804, 309, 411, 341, 13, 509, 393, 2642, 309, 33796, 420, 28450, 11, 2035, 3909, 291, 528, 13, 1436, 382, 938, 382, 286, 362, 257, 1446, 11, 644, 11, 7187, 293, 3541, 11, 1184, 472, 307, 257, 1508, 13, 1033, 30, 400, 286, 829, 26597, 1296, 552, 13], "avg_logprob": -0.4919084959796497, "compression_ratio": 1.4404761904761905, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2191.32, "end": 2191.58, "word": "Because", "probability": 0.14501953125}, {"start": 2191.58, "end": 2191.96, "word": " when", "probability": 0.484130859375}, {"start": 2191.96, "end": 2192.1, "word": " he", "probability": 0.21533203125}, {"start": 2192.1, "end": 2192.3, "word": " drew", "probability": 0.7236328125}, {"start": 2192.3, "end": 2192.4, "word": " this,", "probability": 0.55078125}, {"start": 2192.46, "end": 2192.6, "word": " he", "probability": 0.87158203125}, {"start": 2192.6, "end": 2192.8, "word": " drew", "probability": 0.8837890625}, {"start": 2192.8, "end": 2193.44, "word": " it", "probability": 0.66015625}, {"start": 2193.44, "end": 2193.46, "word": " like", "probability": 0.390625}, {"start": 2193.46, "end": 2193.94, "word": " this.", "probability": 0.84326171875}, {"start": 2194.14, "end": 2194.24, "word": " You", "probability": 0.8134765625}, {"start": 2194.24, "end": 2194.4, "word": " can", "probability": 0.91015625}, {"start": 2194.4, "end": 2194.6, "word": " draw", "probability": 0.454833984375}, {"start": 2194.6, "end": 2194.7, "word": " it", "probability": 0.77099609375}, {"start": 2194.7, "end": 2194.94, "word": " horizontally", "probability": 0.33984375}, {"start": 2194.94, "end": 2195.72, "word": " or", "probability": 0.67431640625}, {"start": 2195.72, "end": 2195.72, "word": " vertically,", "probability": 0.89111328125}, {"start": 2195.74, "end": 2195.92, "word": " whatever", "probability": 0.43603515625}, {"start": 2195.92, "end": 2196.08, "word": " shape", "probability": 0.452392578125}, {"start": 2196.08, "end": 2196.18, "word": " you", "probability": 0.95361328125}, {"start": 2196.18, "end": 2196.5, "word": " want.", "probability": 0.65380859375}, {"start": 2197.22, "end": 2197.44, "word": " Because", "probability": 0.7001953125}, {"start": 2197.44, "end": 2197.8, "word": " as", "probability": 0.23388671875}, {"start": 2197.8, "end": 2197.96, "word": " long", "probability": 0.8935546875}, {"start": 2197.96, "end": 2197.96, "word": " as", "probability": 0.966796875}, {"start": 2197.96, "end": 2198.0, "word": " I", "probability": 0.9716796875}, {"start": 2198.0, "end": 2198.32, "word": " have", "probability": 0.9306640625}, {"start": 2198.32, "end": 2198.8, "word": " a", "probability": 0.62060546875}, {"start": 2198.8, "end": 2199.02, "word": " book,", "probability": 0.767578125}, {"start": 2199.16, "end": 2199.46, "word": " part,", "probability": 0.56689453125}, {"start": 2199.6, "end": 2199.96, "word": " chapter", "probability": 0.83935546875}, {"start": 2199.96, "end": 2200.08, "word": " and", "probability": 0.57177734375}, {"start": 2200.08, "end": 2200.36, "word": " section,", "probability": 0.86962890625}, {"start": 2200.44, "end": 2200.58, "word": " each", "probability": 0.8623046875}, {"start": 2200.58, "end": 2200.74, "word": " one", "probability": 0.58544921875}, {"start": 2200.74, "end": 2200.82, "word": " is", "probability": 0.80908203125}, {"start": 2200.82, "end": 2200.84, "word": " a", "probability": 0.72314453125}, {"start": 2200.84, "end": 2201.12, "word": " class.", "probability": 0.95947265625}, {"start": 2202.2, "end": 2202.42, "word": " Okay?", "probability": 0.40576171875}, {"start": 2202.98, "end": 2203.1, "word": " And", "probability": 0.82373046875}, {"start": 2203.1, "end": 2203.18, "word": " I", "probability": 0.29443359375}, {"start": 2203.18, "end": 2203.36, "word": " put", "probability": 0.5341796875}, {"start": 2203.36, "end": 2203.46, "word": " associations", "probability": 0.26708984375}, {"start": 2203.46, "end": 2203.46, "word": " between", "probability": 0.78857421875}, {"start": 2203.46, "end": 2203.54, "word": " them.", "probability": 0.8134765625}], "temperature": 1.0}, {"id": 89, "seek": 222316, "start": 2206.16, "end": 2223.16, "text": "means that the book uses a part and the part uses a chapter and the chapter uses a section. Now, in the end, I will return to you as a programmer. Here, of course, it is assumed that the relationship is exchangeable. I did not talk about the question, but it is assumed that it is exchangeable. What does it mean? It means that inside the book,", "tokens": [1398, 599, 300, 264, 1446, 4960, 257, 644, 293, 264, 644, 4960, 257, 7187, 293, 264, 7187, 4960, 257, 3541, 13, 823, 11, 294, 264, 917, 11, 286, 486, 2736, 281, 291, 382, 257, 32116, 13, 1692, 11, 295, 1164, 11, 309, 307, 15895, 300, 264, 2480, 307, 7742, 712, 13, 286, 630, 406, 751, 466, 264, 1168, 11, 457, 309, 307, 15895, 300, 309, 307, 7742, 712, 13, 708, 775, 309, 914, 30, 467, 1355, 300, 1854, 264, 1446, 11], "avg_logprob": -0.4554115751894509, "compression_ratio": 1.7461928934010151, "no_speech_prob": 7.075071334838867e-05, "words": [{"start": 2206.16, "end": 2206.52, "word": "means", "probability": 0.49212646484375}, {"start": 2206.52, "end": 2206.64, "word": " that", "probability": 0.587890625}, {"start": 2206.64, "end": 2206.68, "word": " the", "probability": 0.66845703125}, {"start": 2206.68, "end": 2206.86, "word": " book", "probability": 0.9375}, {"start": 2206.86, "end": 2207.4, "word": " uses", "probability": 0.65625}, {"start": 2207.4, "end": 2208.3, "word": " a", "probability": 0.1881103515625}, {"start": 2208.3, "end": 2208.48, "word": " part", "probability": 0.78369140625}, {"start": 2208.48, "end": 2208.68, "word": " and", "probability": 0.6328125}, {"start": 2208.68, "end": 2208.78, "word": " the", "probability": 0.6748046875}, {"start": 2208.78, "end": 2209.0, "word": " part", "probability": 0.8037109375}, {"start": 2209.0, "end": 2209.5, "word": " uses", "probability": 0.87548828125}, {"start": 2209.5, "end": 2210.12, "word": " a", "probability": 0.93701171875}, {"start": 2210.12, "end": 2210.4, "word": " chapter", "probability": 0.88916015625}, {"start": 2210.4, "end": 2210.54, "word": " and", "probability": 0.80126953125}, {"start": 2210.54, "end": 2210.62, "word": " the", "probability": 0.68505859375}, {"start": 2210.62, "end": 2210.9, "word": " chapter", "probability": 0.87060546875}, {"start": 2210.9, "end": 2211.34, "word": " uses", "probability": 0.91845703125}, {"start": 2211.34, "end": 2211.54, "word": " a", "probability": 0.9375}, {"start": 2211.54, "end": 2212.26, "word": " section.", "probability": 0.87255859375}, {"start": 2212.94, "end": 2213.28, "word": " Now,", "probability": 0.42919921875}, {"start": 2213.7, "end": 2214.02, "word": " in", "probability": 0.26611328125}, {"start": 2214.02, "end": 2214.12, "word": " the", "probability": 0.833984375}, {"start": 2214.12, "end": 2214.26, "word": " end,", "probability": 0.90283203125}, {"start": 2214.42, "end": 2214.42, "word": " I", "probability": 0.5830078125}, {"start": 2214.42, "end": 2214.46, "word": " will", "probability": 0.267822265625}, {"start": 2214.46, "end": 2214.58, "word": " return", "probability": 0.194580078125}, {"start": 2214.58, "end": 2214.68, "word": " to", "probability": 0.896484375}, {"start": 2214.68, "end": 2215.0, "word": " you", "probability": 0.546875}, {"start": 2215.0, "end": 2215.1, "word": " as", "probability": 0.8857421875}, {"start": 2215.1, "end": 2215.22, "word": " a", "probability": 0.91552734375}, {"start": 2215.22, "end": 2215.48, "word": " programmer.", "probability": 0.8955078125}, {"start": 2215.66, "end": 2215.82, "word": " Here,", "probability": 0.2452392578125}, {"start": 2215.82, "end": 2215.82, "word": " of", "probability": 0.239501953125}, {"start": 2215.82, "end": 2216.1, "word": " course,", "probability": 0.96240234375}, {"start": 2216.52, "end": 2216.56, "word": " it", "probability": 0.2451171875}, {"start": 2216.56, "end": 2216.62, "word": " is", "probability": 0.5986328125}, {"start": 2216.62, "end": 2216.84, "word": " assumed", "probability": 0.80419921875}, {"start": 2216.84, "end": 2217.06, "word": " that", "probability": 0.92041015625}, {"start": 2217.06, "end": 2217.18, "word": " the", "probability": 0.82373046875}, {"start": 2217.18, "end": 2217.52, "word": " relationship", "probability": 0.83984375}, {"start": 2217.52, "end": 2218.46, "word": " is", "probability": 0.87060546875}, {"start": 2218.46, "end": 2218.98, "word": " exchangeable.", "probability": 0.5538330078125}, {"start": 2219.0, "end": 2219.08, "word": " I", "probability": 0.6767578125}, {"start": 2219.08, "end": 2219.12, "word": " did", "probability": 0.63525390625}, {"start": 2219.12, "end": 2219.12, "word": " not", "probability": 0.94775390625}, {"start": 2219.12, "end": 2219.32, "word": " talk", "probability": 0.240966796875}, {"start": 2219.32, "end": 2219.54, "word": " about", "probability": 0.85888671875}, {"start": 2219.54, "end": 2219.64, "word": " the", "probability": 0.429443359375}, {"start": 2219.64, "end": 2219.82, "word": " question,", "probability": 0.93994140625}, {"start": 2220.02, "end": 2220.14, "word": " but", "probability": 0.91064453125}, {"start": 2220.14, "end": 2220.26, "word": " it", "probability": 0.6337890625}, {"start": 2220.26, "end": 2220.26, "word": " is", "probability": 0.87451171875}, {"start": 2220.26, "end": 2220.44, "word": " assumed", "probability": 0.8359375}, {"start": 2220.44, "end": 2220.56, "word": " that", "probability": 0.54345703125}, {"start": 2220.56, "end": 2220.62, "word": " it", "probability": 0.82666015625}, {"start": 2220.62, "end": 2220.68, "word": " is", "probability": 0.93115234375}, {"start": 2220.68, "end": 2221.12, "word": " exchangeable.", "probability": 0.9580078125}, {"start": 2221.18, "end": 2221.36, "word": " What", "probability": 0.75830078125}, {"start": 2221.36, "end": 2221.52, "word": " does", "probability": 0.89794921875}, {"start": 2221.52, "end": 2221.66, "word": " it", "probability": 0.365966796875}, {"start": 2221.66, "end": 2221.66, "word": " mean?", "probability": 0.966796875}, {"start": 2222.16, "end": 2222.3, "word": " It", "probability": 0.35205078125}, {"start": 2222.3, "end": 2222.4, "word": " means", "probability": 0.92431640625}, {"start": 2222.4, "end": 2222.74, "word": " that", "probability": 0.89501953125}, {"start": 2222.74, "end": 2222.74, "word": " inside", "probability": 0.392333984375}, {"start": 2222.74, "end": 2222.92, "word": " the", "probability": 0.8955078125}, {"start": 2222.92, "end": 2223.16, "word": " book,", "probability": 0.95556640625}], "temperature": 1.0}, {"id": 90, "seek": 223598, "start": 2224.39, "end": 2235.99, "text": " There will be a list of what? Of parts. How did you know it was a list? From the star. And inside the part, there is a list of chapters and chapters are lists of sections. And also in each one, the part must know who it belongs to.", "tokens": [821, 486, 312, 257, 1329, 295, 437, 30, 2720, 3166, 13, 1012, 630, 291, 458, 309, 390, 257, 1329, 30, 3358, 264, 3543, 13, 400, 1854, 264, 644, 11, 456, 307, 257, 1329, 295, 20013, 293, 20013, 366, 14511, 295, 10863, 13, 400, 611, 294, 1184, 472, 11, 264, 644, 1633, 458, 567, 309, 12953, 281, 13], "avg_logprob": -0.4768318934687253, "compression_ratio": 1.4967741935483871, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 2224.39, "end": 2224.61, "word": " There", "probability": 0.09295654296875}, {"start": 2224.61, "end": 2224.61, "word": " will", "probability": 0.63671875}, {"start": 2224.61, "end": 2224.89, "word": " be", "probability": 0.90625}, {"start": 2224.89, "end": 2225.03, "word": " a", "probability": 0.7607421875}, {"start": 2225.03, "end": 2225.23, "word": " list", "probability": 0.798828125}, {"start": 2225.23, "end": 2225.39, "word": " of", "probability": 0.833984375}, {"start": 2225.39, "end": 2225.61, "word": " what?", "probability": 0.48291015625}, {"start": 2226.07, "end": 2226.43, "word": " Of", "probability": 0.250244140625}, {"start": 2226.43, "end": 2226.57, "word": " parts.", "probability": 0.697265625}, {"start": 2226.65, "end": 2226.75, "word": " How", "probability": 0.87451171875}, {"start": 2226.75, "end": 2226.83, "word": " did", "probability": 0.7275390625}, {"start": 2226.83, "end": 2226.83, "word": " you", "probability": 0.81201171875}, {"start": 2226.83, "end": 2227.01, "word": " know", "probability": 0.55078125}, {"start": 2227.01, "end": 2227.15, "word": " it", "probability": 0.60302734375}, {"start": 2227.15, "end": 2227.15, "word": " was", "probability": 0.31201171875}, {"start": 2227.15, "end": 2227.23, "word": " a", "probability": 0.95556640625}, {"start": 2227.23, "end": 2227.45, "word": " list?", "probability": 0.87109375}, {"start": 2227.93, "end": 2228.29, "word": " From", "probability": 0.5947265625}, {"start": 2228.29, "end": 2228.45, "word": " the", "probability": 0.6005859375}, {"start": 2228.45, "end": 2228.63, "word": " star.", "probability": 0.869140625}, {"start": 2229.15, "end": 2229.29, "word": " And", "probability": 0.671875}, {"start": 2229.29, "end": 2229.47, "word": " inside", "probability": 0.7490234375}, {"start": 2229.47, "end": 2229.67, "word": " the", "probability": 0.61865234375}, {"start": 2229.67, "end": 2229.87, "word": " part,", "probability": 0.4970703125}, {"start": 2229.95, "end": 2230.01, "word": " there", "probability": 0.440185546875}, {"start": 2230.01, "end": 2230.01, "word": " is", "probability": 0.4326171875}, {"start": 2230.01, "end": 2230.01, "word": " a", "probability": 0.89013671875}, {"start": 2230.01, "end": 2230.13, "word": " list", "probability": 0.7451171875}, {"start": 2230.13, "end": 2230.23, "word": " of", "probability": 0.95703125}, {"start": 2230.23, "end": 2230.61, "word": " chapters", "probability": 0.65185546875}, {"start": 2230.61, "end": 2230.73, "word": " and", "probability": 0.61376953125}, {"start": 2230.73, "end": 2231.01, "word": " chapters", "probability": 0.70166015625}, {"start": 2231.01, "end": 2231.17, "word": " are", "probability": 0.53466796875}, {"start": 2231.17, "end": 2231.33, "word": " lists", "probability": 0.6640625}, {"start": 2231.33, "end": 2231.47, "word": " of", "probability": 0.96240234375}, {"start": 2231.47, "end": 2231.83, "word": " sections.", "probability": 0.90625}, {"start": 2232.31, "end": 2232.37, "word": " And", "probability": 0.65576171875}, {"start": 2232.37, "end": 2232.63, "word": " also", "probability": 0.57666015625}, {"start": 2232.63, "end": 2232.79, "word": " in", "probability": 0.331787109375}, {"start": 2232.79, "end": 2233.05, "word": " each", "probability": 0.85888671875}, {"start": 2233.05, "end": 2233.49, "word": " one,", "probability": 0.53564453125}, {"start": 2234.23, "end": 2234.35, "word": " the", "probability": 0.364013671875}, {"start": 2234.35, "end": 2234.99, "word": " part", "probability": 0.69775390625}, {"start": 2234.99, "end": 2235.03, "word": " must", "probability": 0.595703125}, {"start": 2235.03, "end": 2235.27, "word": " know", "probability": 0.8076171875}, {"start": 2235.27, "end": 2235.47, "word": " who", "probability": 0.211181640625}, {"start": 2235.47, "end": 2235.55, "word": " it", "probability": 0.464599609375}, {"start": 2235.55, "end": 2235.85, "word": " belongs", "probability": 0.55322265625}, {"start": 2235.85, "end": 2235.99, "word": " to.", "probability": 0.97314453125}], "temperature": 1.0}, {"id": 91, "seek": 226392, "start": 2237.37, "end": 2263.93, "text": "So logic says that inside the part, there is a reference to the book. And this is always one. And also, the chapter has a reference to whom? Of course, the part belongs to one book. It won't say that the part has more than one book. But the book has more than one part. Okay? And here, this is also not included in the question. He decided to make the relationship aggregation. Meaning that you create these and pass them on to him.", "tokens": [6455, 9952, 1619, 300, 1854, 264, 644, 11, 456, 307, 257, 6408, 281, 264, 1446, 13, 400, 341, 307, 1009, 472, 13, 400, 611, 11, 264, 7187, 575, 257, 6408, 281, 7101, 30, 2720, 1164, 11, 264, 644, 12953, 281, 472, 1446, 13, 467, 1582, 380, 584, 300, 264, 644, 575, 544, 813, 472, 1446, 13, 583, 264, 1446, 575, 544, 813, 472, 644, 13, 1033, 30, 400, 510, 11, 341, 307, 611, 406, 5556, 294, 264, 1168, 13, 634, 3047, 281, 652, 264, 2480, 16743, 399, 13, 19948, 300, 291, 1884, 613, 293, 1320, 552, 322, 281, 796, 13], "avg_logprob": -0.41460394859313965, "compression_ratio": 1.7851239669421488, "no_speech_prob": 2.9206275939941406e-06, "words": [{"start": 2237.37, "end": 2237.81, "word": "So", "probability": 0.1962890625}, {"start": 2237.81, "end": 2238.17, "word": " logic", "probability": 0.304443359375}, {"start": 2238.17, "end": 2238.53, "word": " says", "probability": 0.490478515625}, {"start": 2238.53, "end": 2238.75, "word": " that", "probability": 0.81884765625}, {"start": 2238.75, "end": 2238.91, "word": " inside", "probability": 0.378662109375}, {"start": 2238.91, "end": 2239.09, "word": " the", "probability": 0.64794921875}, {"start": 2239.09, "end": 2239.41, "word": " part,", "probability": 0.7666015625}, {"start": 2239.59, "end": 2240.23, "word": " there", "probability": 0.87451171875}, {"start": 2240.23, "end": 2240.29, "word": " is", "probability": 0.75439453125}, {"start": 2240.29, "end": 2240.35, "word": " a", "probability": 0.64453125}, {"start": 2240.35, "end": 2240.71, "word": " reference", "probability": 0.89306640625}, {"start": 2240.71, "end": 2240.93, "word": " to", "probability": 0.6904296875}, {"start": 2240.93, "end": 2241.83, "word": " the", "probability": 0.78857421875}, {"start": 2241.83, "end": 2242.07, "word": " book.", "probability": 0.943359375}, {"start": 2242.43, "end": 2242.53, "word": " And", "probability": 0.57861328125}, {"start": 2242.53, "end": 2242.67, "word": " this", "probability": 0.439697265625}, {"start": 2242.67, "end": 2242.73, "word": " is", "probability": 0.68115234375}, {"start": 2242.73, "end": 2242.75, "word": " always", "probability": 0.599609375}, {"start": 2242.75, "end": 2243.05, "word": " one.", "probability": 0.55322265625}, {"start": 2243.81, "end": 2244.11, "word": " And", "probability": 0.6767578125}, {"start": 2244.11, "end": 2244.43, "word": " also,", "probability": 0.420654296875}, {"start": 2244.67, "end": 2244.85, "word": " the", "probability": 0.414306640625}, {"start": 2244.85, "end": 2245.29, "word": " chapter", "probability": 0.87939453125}, {"start": 2245.29, "end": 2245.53, "word": " has", "probability": 0.64208984375}, {"start": 2245.53, "end": 2245.59, "word": " a", "probability": 0.81201171875}, {"start": 2245.59, "end": 2245.93, "word": " reference", "probability": 0.8984375}, {"start": 2245.93, "end": 2246.15, "word": " to", "probability": 0.9111328125}, {"start": 2246.15, "end": 2246.29, "word": " whom?", "probability": 0.8798828125}, {"start": 2246.45, "end": 2246.89, "word": " Of", "probability": 0.60791015625}, {"start": 2246.89, "end": 2247.05, "word": " course,", "probability": 0.95947265625}, {"start": 2247.41, "end": 2247.55, "word": " the", "probability": 0.78369140625}, {"start": 2247.55, "end": 2247.77, "word": " part", "probability": 0.8779296875}, {"start": 2247.77, "end": 2248.03, "word": " belongs", "probability": 0.47509765625}, {"start": 2248.03, "end": 2248.17, "word": " to", "probability": 0.970703125}, {"start": 2248.17, "end": 2248.65, "word": " one", "probability": 0.69091796875}, {"start": 2248.65, "end": 2248.65, "word": " book.", "probability": 0.95751953125}, {"start": 2248.81, "end": 2248.91, "word": " It", "probability": 0.484619140625}, {"start": 2248.91, "end": 2248.95, "word": " won't", "probability": 0.5611572265625}, {"start": 2248.95, "end": 2249.15, "word": " say", "probability": 0.6201171875}, {"start": 2249.15, "end": 2249.27, "word": " that", "probability": 0.775390625}, {"start": 2249.27, "end": 2249.33, "word": " the", "probability": 0.68359375}, {"start": 2249.33, "end": 2249.51, "word": " part", "probability": 0.83984375}, {"start": 2249.51, "end": 2249.65, "word": " has", "probability": 0.328857421875}, {"start": 2249.65, "end": 2249.87, "word": " more", "probability": 0.91748046875}, {"start": 2249.87, "end": 2249.99, "word": " than", "probability": 0.796875}, {"start": 2249.99, "end": 2250.11, "word": " one", "probability": 0.9111328125}, {"start": 2250.11, "end": 2250.33, "word": " book.", "probability": 0.943359375}, {"start": 2250.79, "end": 2251.07, "word": " But", "probability": 0.91064453125}, {"start": 2251.07, "end": 2251.27, "word": " the", "probability": 0.7705078125}, {"start": 2251.27, "end": 2251.45, "word": " book", "probability": 0.951171875}, {"start": 2251.45, "end": 2251.67, "word": " has", "probability": 0.8984375}, {"start": 2251.67, "end": 2252.01, "word": " more", "probability": 0.9287109375}, {"start": 2252.01, "end": 2252.99, "word": " than", "probability": 0.89794921875}, {"start": 2252.99, "end": 2253.13, "word": " one", "probability": 0.88720703125}, {"start": 2253.13, "end": 2253.31, "word": " part.", "probability": 0.91748046875}, {"start": 2253.75, "end": 2253.95, "word": " Okay?", "probability": 0.2685546875}, {"start": 2254.39, "end": 2254.61, "word": " And", "probability": 0.84716796875}, {"start": 2254.61, "end": 2254.87, "word": " here,", "probability": 0.677734375}, {"start": 2255.05, "end": 2255.25, "word": " this", "probability": 0.81591796875}, {"start": 2255.25, "end": 2255.33, "word": " is", "probability": 0.50146484375}, {"start": 2255.33, "end": 2255.53, "word": " also", "probability": 0.66357421875}, {"start": 2255.53, "end": 2255.81, "word": " not", "probability": 0.88525390625}, {"start": 2255.81, "end": 2256.19, "word": " included", "probability": 0.215087890625}, {"start": 2256.19, "end": 2256.33, "word": " in", "probability": 0.79248046875}, {"start": 2256.33, "end": 2256.61, "word": " the", "probability": 0.9169921875}, {"start": 2256.61, "end": 2256.87, "word": " question.", "probability": 0.92431640625}, {"start": 2257.71, "end": 2258.15, "word": " He", "probability": 0.88427734375}, {"start": 2258.15, "end": 2258.51, "word": " decided", "probability": 0.9306640625}, {"start": 2258.51, "end": 2258.75, "word": " to", "probability": 0.9306640625}, {"start": 2258.75, "end": 2258.93, "word": " make", "probability": 0.646484375}, {"start": 2258.93, "end": 2259.07, "word": " the", "probability": 0.81689453125}, {"start": 2259.07, "end": 2259.45, "word": " relationship", "probability": 0.64013671875}, {"start": 2259.45, "end": 2260.83, "word": " aggregation.", "probability": 0.7744140625}, {"start": 2261.05, "end": 2261.25, "word": " Meaning", "probability": 0.321044921875}, {"start": 2261.25, "end": 2261.39, "word": " that", "probability": 0.63330078125}, {"start": 2261.39, "end": 2261.61, "word": " you", "probability": 0.8837890625}, {"start": 2261.61, "end": 2262.05, "word": " create", "probability": 0.2222900390625}, {"start": 2262.05, "end": 2262.33, "word": " these", "probability": 0.65576171875}, {"start": 2262.33, "end": 2262.65, "word": " and", "probability": 0.469970703125}, {"start": 2262.65, "end": 2262.93, "word": " pass", "probability": 0.493896484375}, {"start": 2262.93, "end": 2263.19, "word": " them", "probability": 0.84521484375}, {"start": 2263.19, "end": 2263.23, "word": " on", "probability": 0.5}, {"start": 2263.23, "end": 2263.77, "word": " to", "probability": 0.6298828125}, {"start": 2263.77, "end": 2263.93, "word": " him.", "probability": 0.6943359375}], "temperature": 1.0}, {"id": 92, "seek": 228239, "start": 2280.09, "end": 2282.39, "text": "extend the class diagram to include the following", "tokens": [3828, 521, 264, 1508, 10686, 281, 4090, 264, 3480], "avg_logprob": -0.4492187529802322, "compression_ratio": 0.9245283018867925, "no_speech_prob": 2.7418136596679688e-06, "words": [{"start": 2280.09, "end": 2280.65, "word": "extend", "probability": 0.449615478515625}, {"start": 2280.65, "end": 2280.83, "word": " the", "probability": 0.81884765625}, {"start": 2280.83, "end": 2281.07, "word": " class", "probability": 0.916015625}, {"start": 2281.07, "end": 2281.39, "word": " diagram", "probability": 0.8291015625}, {"start": 2281.39, "end": 2281.57, "word": " to", "probability": 0.95068359375}, {"start": 2281.57, "end": 2281.91, "word": " include", "probability": 0.833984375}, {"start": 2281.91, "end": 2282.07, "word": " the", "probability": 0.90966796875}, {"start": 2282.07, "end": 2282.39, "word": " following", "probability": 0.89697265625}], "temperature": 1.0}, {"id": 93, "seek": 230816, "start": 2283.46, "end": 2308.16, "text": " Attributes. B is in the second attribute. The book must have a publisher, publication date, and ISBN. The part has a title and number, the chapter has a title, number, and abstract, and the section has a title and number. Calculate the drawing. This is the same drawing, but I made it smaller to put the attributes. The book has a part, more than a part, and the part has more than a chapter, and the chapter has more than a section. But who did I put?", "tokens": [7298, 2024, 1819, 13, 363, 307, 294, 264, 1150, 19667, 13, 440, 1446, 1633, 362, 257, 25088, 11, 19953, 4002, 11, 293, 47874, 13, 440, 644, 575, 257, 4876, 293, 1230, 11, 264, 7187, 575, 257, 4876, 11, 1230, 11, 293, 12649, 11, 293, 264, 3541, 575, 257, 4876, 293, 1230, 13, 3511, 2444, 473, 264, 6316, 13, 639, 307, 264, 912, 6316, 11, 457, 286, 1027, 309, 4356, 281, 829, 264, 17212, 13, 440, 1446, 575, 257, 644, 11, 544, 813, 257, 644, 11, 293, 264, 644, 575, 544, 813, 257, 7187, 11, 293, 264, 7187, 575, 544, 813, 257, 3541, 13, 583, 567, 630, 286, 829, 30], "avg_logprob": -0.4193181866949255, "compression_ratio": 2.0405405405405403, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2283.46, "end": 2283.86, "word": " Attributes.", "probability": 0.8673502604166666}, {"start": 2284.46, "end": 2284.62, "word": " B", "probability": 0.30029296875}, {"start": 2284.62, "end": 2284.74, "word": " is", "probability": 0.50048828125}, {"start": 2284.74, "end": 2284.78, "word": " in", "probability": 0.5400390625}, {"start": 2284.78, "end": 2284.8, "word": " the", "probability": 0.80419921875}, {"start": 2284.8, "end": 2285.4, "word": " second", "probability": 0.44384765625}, {"start": 2285.4, "end": 2285.4, "word": " attribute.", "probability": 0.8232421875}, {"start": 2285.52, "end": 2285.64, "word": " The", "probability": 0.5517578125}, {"start": 2285.64, "end": 2285.8, "word": " book", "probability": 0.94287109375}, {"start": 2285.8, "end": 2286.06, "word": " must", "probability": 0.5205078125}, {"start": 2286.06, "end": 2286.36, "word": " have", "probability": 0.39453125}, {"start": 2286.36, "end": 2286.58, "word": " a", "probability": 0.69873046875}, {"start": 2286.58, "end": 2286.92, "word": " publisher,", "probability": 0.861328125}, {"start": 2287.08, "end": 2287.6, "word": " publication", "probability": 0.80517578125}, {"start": 2287.6, "end": 2288.0, "word": " date,", "probability": 0.8837890625}, {"start": 2288.34, "end": 2288.36, "word": " and", "probability": 0.78271484375}, {"start": 2288.36, "end": 2288.72, "word": " ISBN.", "probability": 0.50830078125}, {"start": 2289.36, "end": 2289.44, "word": " The", "probability": 0.48388671875}, {"start": 2289.44, "end": 2289.68, "word": " part", "probability": 0.75634765625}, {"start": 2289.68, "end": 2289.84, "word": " has", "probability": 0.58935546875}, {"start": 2289.84, "end": 2289.9, "word": " a", "probability": 0.51171875}, {"start": 2289.9, "end": 2290.18, "word": " title", "probability": 0.9609375}, {"start": 2290.18, "end": 2290.28, "word": " and", "probability": 0.880859375}, {"start": 2290.28, "end": 2290.48, "word": " number,", "probability": 0.9052734375}, {"start": 2290.6, "end": 2290.68, "word": " the", "probability": 0.7431640625}, {"start": 2290.68, "end": 2290.92, "word": " chapter", "probability": 0.89111328125}, {"start": 2290.92, "end": 2291.1, "word": " has", "probability": 0.865234375}, {"start": 2291.1, "end": 2291.2, "word": " a", "probability": 0.87353515625}, {"start": 2291.2, "end": 2291.42, "word": " title,", "probability": 0.97802734375}, {"start": 2291.54, "end": 2291.74, "word": " number,", "probability": 0.876953125}, {"start": 2291.86, "end": 2291.9, "word": " and", "probability": 0.88720703125}, {"start": 2291.9, "end": 2292.18, "word": " abstract,", "probability": 0.7216796875}, {"start": 2292.42, "end": 2292.5, "word": " and", "probability": 0.73876953125}, {"start": 2292.5, "end": 2292.54, "word": " the", "probability": 0.84716796875}, {"start": 2292.54, "end": 2292.74, "word": " section", "probability": 0.86474609375}, {"start": 2292.74, "end": 2293.0, "word": " has", "probability": 0.90478515625}, {"start": 2293.0, "end": 2293.1, "word": " a", "probability": 0.80126953125}, {"start": 2293.1, "end": 2293.46, "word": " title", "probability": 0.97900390625}, {"start": 2293.46, "end": 2294.2, "word": " and", "probability": 0.86279296875}, {"start": 2294.2, "end": 2294.58, "word": " number.", "probability": 0.91845703125}, {"start": 2295.4, "end": 2295.76, "word": " Calculate", "probability": 0.677276611328125}, {"start": 2295.76, "end": 2295.92, "word": " the", "probability": 0.79345703125}, {"start": 2295.92, "end": 2296.2, "word": " drawing.", "probability": 0.5068359375}, {"start": 2296.62, "end": 2296.8, "word": " This", "probability": 0.52294921875}, {"start": 2296.8, "end": 2296.84, "word": " is", "probability": 0.84619140625}, {"start": 2296.84, "end": 2297.08, "word": " the", "probability": 0.81494140625}, {"start": 2297.08, "end": 2297.08, "word": " same", "probability": 0.8740234375}, {"start": 2297.08, "end": 2297.36, "word": " drawing,", "probability": 0.87890625}, {"start": 2297.66, "end": 2297.74, "word": " but", "probability": 0.76806640625}, {"start": 2297.74, "end": 2297.98, "word": " I", "probability": 0.473876953125}, {"start": 2297.98, "end": 2298.06, "word": " made", "probability": 0.2293701171875}, {"start": 2298.06, "end": 2298.24, "word": " it", "probability": 0.8466796875}, {"start": 2298.24, "end": 2298.24, "word": " smaller", "probability": 0.13720703125}, {"start": 2298.24, "end": 2298.6, "word": " to", "probability": 0.56298828125}, {"start": 2298.6, "end": 2298.94, "word": " put", "probability": 0.3408203125}, {"start": 2298.94, "end": 2299.12, "word": " the", "probability": 0.728515625}, {"start": 2299.12, "end": 2300.04, "word": " attributes.", "probability": 0.77734375}, {"start": 2301.92, "end": 2302.32, "word": " The", "probability": 0.385009765625}, {"start": 2302.32, "end": 2303.14, "word": " book", "probability": 0.9521484375}, {"start": 2303.14, "end": 2303.46, "word": " has", "probability": 0.88330078125}, {"start": 2303.46, "end": 2304.0, "word": " a", "probability": 0.377685546875}, {"start": 2304.0, "end": 2304.22, "word": " part,", "probability": 0.83642578125}, {"start": 2304.58, "end": 2305.06, "word": " more", "probability": 0.83349609375}, {"start": 2305.06, "end": 2305.22, "word": " than", "probability": 0.91455078125}, {"start": 2305.22, "end": 2305.34, "word": " a", "probability": 0.64013671875}, {"start": 2305.34, "end": 2305.54, "word": " part,", "probability": 0.91162109375}, {"start": 2305.6, "end": 2305.66, "word": " and", "probability": 0.85546875}, {"start": 2305.66, "end": 2305.74, "word": " the", "probability": 0.73681640625}, {"start": 2305.74, "end": 2305.9, "word": " part", "probability": 0.890625}, {"start": 2305.9, "end": 2306.02, "word": " has", "probability": 0.8681640625}, {"start": 2306.02, "end": 2306.22, "word": " more", "probability": 0.888671875}, {"start": 2306.22, "end": 2306.36, "word": " than", "probability": 0.84423828125}, {"start": 2306.36, "end": 2306.46, "word": " a", "probability": 0.892578125}, {"start": 2306.46, "end": 2306.7, "word": " chapter,", "probability": 0.89306640625}, {"start": 2306.76, "end": 2306.86, "word": " and", "probability": 0.87109375}, {"start": 2306.86, "end": 2306.86, "word": " the", "probability": 0.8125}, {"start": 2306.86, "end": 2307.06, "word": " chapter", "probability": 0.88330078125}, {"start": 2307.06, "end": 2307.16, "word": " has", "probability": 0.61572265625}, {"start": 2307.16, "end": 2307.28, "word": " more", "probability": 0.9326171875}, {"start": 2307.28, "end": 2307.4, "word": " than", "probability": 0.9248046875}, {"start": 2307.4, "end": 2307.48, "word": " a", "probability": 0.85205078125}, {"start": 2307.48, "end": 2307.64, "word": " section.", "probability": 0.8984375}, {"start": 2307.76, "end": 2307.88, "word": " But", "probability": 0.76025390625}, {"start": 2307.88, "end": 2308.16, "word": " who", "probability": 0.3935546875}, {"start": 2308.16, "end": 2308.16, "word": " did", "probability": 0.3291015625}, {"start": 2308.16, "end": 2308.16, "word": " I", "probability": 0.58349609375}, {"start": 2308.16, "end": 2308.16, "word": " put?", "probability": 0.572265625}], "temperature": 1.0}, {"id": 94, "seek": 233610, "start": 2309.54, "end": 2336.1, "text": " the attributes in the classes until he said to me note that the part, chapter and section classes all include a title and number attribute which means these three after I put the attributes I found that they share something in common what is it? the title and the number right or not guys? right? so he said to me since they have common attributes add a description", "tokens": [264, 17212, 294, 264, 5359, 1826, 415, 848, 281, 385, 3637, 300, 264, 644, 11, 7187, 293, 3541, 5359, 439, 4090, 257, 4876, 293, 1230, 19667, 597, 1355, 613, 1045, 934, 286, 829, 264, 17212, 286, 1352, 300, 436, 2073, 746, 294, 2689, 437, 307, 309, 30, 264, 4876, 293, 264, 1230, 558, 420, 406, 1074, 30, 558, 30, 370, 415, 848, 281, 385, 1670, 436, 362, 2689, 17212, 909, 257, 3855], "avg_logprob": -0.6194349053787859, "compression_ratio": 1.8029556650246306, "no_speech_prob": 9.775161743164062e-06, "words": [{"start": 2309.54, "end": 2309.78, "word": " the", "probability": 0.148681640625}, {"start": 2309.78, "end": 2310.18, "word": " attributes", "probability": 0.69970703125}, {"start": 2310.18, "end": 2310.5, "word": " in", "probability": 0.4560546875}, {"start": 2310.5, "end": 2311.14, "word": " the", "probability": 0.57763671875}, {"start": 2311.14, "end": 2311.68, "word": " classes", "probability": 0.72509765625}, {"start": 2311.68, "end": 2312.66, "word": " until", "probability": 0.1304931640625}, {"start": 2312.66, "end": 2312.9, "word": " he", "probability": 0.5966796875}, {"start": 2312.9, "end": 2312.96, "word": " said", "probability": 0.29345703125}, {"start": 2312.96, "end": 2313.06, "word": " to", "probability": 0.1712646484375}, {"start": 2313.06, "end": 2313.32, "word": " me", "probability": 0.92919921875}, {"start": 2313.32, "end": 2313.72, "word": " note", "probability": 0.35009765625}, {"start": 2313.72, "end": 2314.16, "word": " that", "probability": 0.93798828125}, {"start": 2314.16, "end": 2315.46, "word": " the", "probability": 0.697265625}, {"start": 2315.46, "end": 2315.8, "word": " part,", "probability": 0.7041015625}, {"start": 2315.92, "end": 2316.22, "word": " chapter", "probability": 0.88916015625}, {"start": 2316.22, "end": 2316.46, "word": " and", "probability": 0.75439453125}, {"start": 2316.46, "end": 2316.72, "word": " section", "probability": 0.8935546875}, {"start": 2316.72, "end": 2317.18, "word": " classes", "probability": 0.861328125}, {"start": 2317.18, "end": 2317.54, "word": " all", "probability": 0.896484375}, {"start": 2317.54, "end": 2318.0, "word": " include", "probability": 0.7685546875}, {"start": 2318.0, "end": 2318.2, "word": " a", "probability": 0.93505859375}, {"start": 2318.2, "end": 2318.5, "word": " title", "probability": 0.953125}, {"start": 2318.5, "end": 2318.72, "word": " and", "probability": 0.892578125}, {"start": 2318.72, "end": 2319.04, "word": " number", "probability": 0.900390625}, {"start": 2319.04, "end": 2319.82, "word": " attribute", "probability": 0.81494140625}, {"start": 2319.82, "end": 2320.54, "word": " which", "probability": 0.159423828125}, {"start": 2320.54, "end": 2320.54, "word": " means", "probability": 0.8916015625}, {"start": 2320.54, "end": 2321.02, "word": " these", "probability": 0.309814453125}, {"start": 2321.02, "end": 2323.34, "word": " three", "probability": 0.72265625}, {"start": 2323.34, "end": 2323.86, "word": " after", "probability": 0.446533203125}, {"start": 2323.86, "end": 2323.98, "word": " I", "probability": 0.36669921875}, {"start": 2323.98, "end": 2324.2, "word": " put", "probability": 0.35009765625}, {"start": 2324.2, "end": 2324.36, "word": " the", "probability": 0.7216796875}, {"start": 2324.36, "end": 2324.76, "word": " attributes", "probability": 0.8349609375}, {"start": 2324.76, "end": 2324.9, "word": " I", "probability": 0.52294921875}, {"start": 2324.9, "end": 2325.06, "word": " found", "probability": 0.6845703125}, {"start": 2325.06, "end": 2325.16, "word": " that", "probability": 0.4951171875}, {"start": 2325.16, "end": 2325.28, "word": " they", "probability": 0.8408203125}, {"start": 2325.28, "end": 2325.58, "word": " share", "probability": 0.1683349609375}, {"start": 2325.58, "end": 2326.02, "word": " something", "probability": 0.3701171875}, {"start": 2326.02, "end": 2326.42, "word": " in", "probability": 0.42236328125}, {"start": 2326.42, "end": 2326.42, "word": " common", "probability": 0.93310546875}, {"start": 2326.42, "end": 2326.6, "word": " what", "probability": 0.263427734375}, {"start": 2326.6, "end": 2326.76, "word": " is", "probability": 0.80078125}, {"start": 2326.76, "end": 2327.16, "word": " it?", "probability": 0.68798828125}, {"start": 2327.18, "end": 2327.76, "word": " the", "probability": 0.432861328125}, {"start": 2327.76, "end": 2328.04, "word": " title", "probability": 0.96337890625}, {"start": 2328.04, "end": 2328.22, "word": " and", "probability": 0.93505859375}, {"start": 2328.22, "end": 2328.3, "word": " the", "probability": 0.3896484375}, {"start": 2328.3, "end": 2328.56, "word": " number", "probability": 0.95556640625}, {"start": 2328.56, "end": 2329.56, "word": " right", "probability": 0.25927734375}, {"start": 2329.56, "end": 2329.82, "word": " or", "probability": 0.6064453125}, {"start": 2329.82, "end": 2329.82, "word": " not", "probability": 0.54931640625}, {"start": 2329.82, "end": 2330.14, "word": " guys?", "probability": 0.5849609375}, {"start": 2330.54, "end": 2331.12, "word": " right?", "probability": 0.1400146484375}, {"start": 2331.42, "end": 2331.68, "word": " so", "probability": 0.57861328125}, {"start": 2331.68, "end": 2331.82, "word": " he", "probability": 0.76611328125}, {"start": 2331.82, "end": 2331.96, "word": " said", "probability": 0.6396484375}, {"start": 2331.96, "end": 2332.08, "word": " to", "probability": 0.345703125}, {"start": 2332.08, "end": 2332.08, "word": " me", "probability": 0.96533203125}, {"start": 2332.08, "end": 2332.24, "word": " since", "probability": 0.471435546875}, {"start": 2332.24, "end": 2332.66, "word": " they", "probability": 0.8291015625}, {"start": 2332.66, "end": 2332.78, "word": " have", "probability": 0.49462890625}, {"start": 2332.78, "end": 2332.84, "word": " common", "probability": 0.40966796875}, {"start": 2332.84, "end": 2333.74, "word": " attributes", "probability": 0.90771484375}, {"start": 2333.74, "end": 2334.8, "word": " add", "probability": 0.493408203125}, {"start": 2334.8, "end": 2335.88, "word": " a", "probability": 0.2359619140625}, {"start": 2335.88, "end": 2336.1, "word": " description", "probability": 0.14892578125}], "temperature": 1.0}, {"id": 95, "seek": 236227, "start": 2336.97, "end": 2362.27, "text": " In order to add an abstract class that combines the shared things and create a generalization relationship. Okay? So he modified the drawing. He modified the drawing and put a number component inside the string. It is called title and integer is called number. And these were extended to whom?", "tokens": [682, 1668, 281, 909, 364, 12649, 1508, 300, 29520, 264, 5507, 721, 293, 1884, 257, 2674, 2144, 2480, 13, 1033, 30, 407, 415, 15873, 264, 6316, 13, 634, 15873, 264, 6316, 293, 829, 257, 1230, 6542, 1854, 264, 6798, 13, 467, 307, 1219, 4876, 293, 24922, 307, 1219, 1230, 13, 400, 613, 645, 10913, 281, 7101, 30], "avg_logprob": -0.7429956670465141, "compression_ratio": 1.6065573770491803, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 2336.97, "end": 2337.33, "word": " In", "probability": 0.05755615234375}, {"start": 2337.33, "end": 2337.33, "word": " order", "probability": 0.8330078125}, {"start": 2337.33, "end": 2337.41, "word": " to", "probability": 0.9619140625}, {"start": 2337.41, "end": 2337.81, "word": " add", "probability": 0.65234375}, {"start": 2337.81, "end": 2338.35, "word": " an", "probability": 0.31103515625}, {"start": 2338.35, "end": 2338.61, "word": " abstract", "probability": 0.81396484375}, {"start": 2338.61, "end": 2339.09, "word": " class", "probability": 0.9169921875}, {"start": 2339.09, "end": 2339.31, "word": " that", "probability": 0.388671875}, {"start": 2339.31, "end": 2339.51, "word": " combines", "probability": 0.405517578125}, {"start": 2339.51, "end": 2339.75, "word": " the", "probability": 0.297119140625}, {"start": 2339.75, "end": 2340.31, "word": " shared", "probability": 0.207275390625}, {"start": 2340.31, "end": 2340.43, "word": " things", "probability": 0.1820068359375}, {"start": 2340.43, "end": 2340.61, "word": " and", "probability": 0.453369140625}, {"start": 2340.61, "end": 2340.83, "word": " create", "probability": 0.1361083984375}, {"start": 2340.83, "end": 2340.93, "word": " a", "probability": 0.810546875}, {"start": 2340.93, "end": 2342.13, "word": " generalization", "probability": 0.65283203125}, {"start": 2342.13, "end": 2342.65, "word": " relationship.", "probability": 0.479736328125}, {"start": 2342.89, "end": 2343.19, "word": " Okay?", "probability": 0.1754150390625}, {"start": 2344.35, "end": 2344.67, "word": " So", "probability": 0.55859375}, {"start": 2344.67, "end": 2344.81, "word": " he", "probability": 0.445068359375}, {"start": 2344.81, "end": 2345.07, "word": " modified", "probability": 0.278076171875}, {"start": 2345.07, "end": 2345.21, "word": " the", "probability": 0.86083984375}, {"start": 2345.21, "end": 2345.53, "word": " drawing.", "probability": 0.66748046875}, {"start": 2347.47, "end": 2348.15, "word": " He", "probability": 0.410400390625}, {"start": 2348.15, "end": 2348.35, "word": " modified", "probability": 0.74462890625}, {"start": 2348.35, "end": 2348.89, "word": " the", "probability": 0.859375}, {"start": 2348.89, "end": 2348.89, "word": " drawing", "probability": 0.93359375}, {"start": 2348.89, "end": 2349.27, "word": " and", "probability": 0.59423828125}, {"start": 2349.27, "end": 2349.51, "word": " put", "probability": 0.368408203125}, {"start": 2349.51, "end": 2350.03, "word": " a", "probability": 0.3388671875}, {"start": 2350.03, "end": 2350.73, "word": " number", "probability": 0.278564453125}, {"start": 2350.73, "end": 2351.61, "word": " component", "probability": 0.7490234375}, {"start": 2351.61, "end": 2352.35, "word": " inside", "probability": 0.369384765625}, {"start": 2352.35, "end": 2353.09, "word": " the", "probability": 0.55712890625}, {"start": 2353.09, "end": 2353.49, "word": " string.", "probability": 0.861328125}, {"start": 2353.95, "end": 2354.63, "word": " It", "probability": 0.13330078125}, {"start": 2354.63, "end": 2354.91, "word": " is", "probability": 0.38916015625}, {"start": 2354.91, "end": 2355.01, "word": " called", "probability": 0.58056640625}, {"start": 2355.01, "end": 2355.41, "word": " title", "probability": 0.5830078125}, {"start": 2355.41, "end": 2355.73, "word": " and", "probability": 0.82373046875}, {"start": 2355.73, "end": 2356.07, "word": " integer", "probability": 0.7470703125}, {"start": 2356.07, "end": 2356.27, "word": " is", "probability": 0.49560546875}, {"start": 2356.27, "end": 2356.65, "word": " called", "probability": 0.58837890625}, {"start": 2356.65, "end": 2357.65, "word": " number.", "probability": 0.9091796875}, {"start": 2358.21, "end": 2358.31, "word": " And", "probability": 0.72705078125}, {"start": 2358.31, "end": 2358.65, "word": " these", "probability": 0.4716796875}, {"start": 2358.65, "end": 2359.17, "word": " were", "probability": 0.11187744140625}, {"start": 2359.17, "end": 2361.73, "word": " extended", "probability": 0.5859375}, {"start": 2361.73, "end": 2362.03, "word": " to", "probability": 0.86083984375}, {"start": 2362.03, "end": 2362.27, "word": " whom?", "probability": 0.72900390625}], "temperature": 1.0}, {"id": 96, "seek": 239048, "start": 2363.48, "end": 2390.48, "text": "to this class, okay? Of course, the common things he took from here, he put them here, he left only the different things, okay? And sometimes, by the way, in this case, he told me that it is abstract, right? Sometimes in this class, I write the word abstract, and sometimes I don't write it, but I put the name of the class Italic, okay? You understand that this is an abstract class", "tokens": [1353, 341, 1508, 11, 1392, 30, 2720, 1164, 11, 264, 2689, 721, 415, 1890, 490, 510, 11, 415, 829, 552, 510, 11, 415, 1411, 787, 264, 819, 721, 11, 1392, 30, 400, 2171, 11, 538, 264, 636, 11, 294, 341, 1389, 11, 415, 1907, 385, 300, 309, 307, 12649, 11, 558, 30, 4803, 294, 341, 1508, 11, 286, 2464, 264, 1349, 12649, 11, 293, 2171, 286, 500, 380, 2464, 309, 11, 457, 286, 829, 264, 1315, 295, 264, 1508, 8158, 299, 11, 1392, 30, 509, 1223, 300, 341, 307, 364, 12649, 1508], "avg_logprob": -0.493279577583395, "compression_ratio": 1.8151658767772512, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 2363.48, "end": 2363.48, "word": "to", "probability": 0.07373046875}, {"start": 2363.48, "end": 2363.92, "word": " this", "probability": 0.81640625}, {"start": 2363.92, "end": 2364.3, "word": " class,", "probability": 0.95068359375}, {"start": 2364.46, "end": 2365.06, "word": " okay?", "probability": 0.2091064453125}, {"start": 2365.44, "end": 2365.78, "word": " Of", "probability": 0.50537109375}, {"start": 2365.78, "end": 2365.78, "word": " course,", "probability": 0.943359375}, {"start": 2365.84, "end": 2365.94, "word": " the", "probability": 0.60888671875}, {"start": 2365.94, "end": 2365.94, "word": " common", "probability": 0.63525390625}, {"start": 2365.94, "end": 2366.64, "word": " things", "probability": 0.42333984375}, {"start": 2366.64, "end": 2366.9, "word": " he", "probability": 0.3134765625}, {"start": 2366.9, "end": 2367.12, "word": " took", "probability": 0.69189453125}, {"start": 2367.12, "end": 2367.74, "word": " from", "probability": 0.541015625}, {"start": 2367.74, "end": 2367.98, "word": " here,", "probability": 0.62890625}, {"start": 2368.04, "end": 2368.1, "word": " he", "probability": 0.498046875}, {"start": 2368.1, "end": 2368.28, "word": " put", "probability": 0.57763671875}, {"start": 2368.28, "end": 2368.36, "word": " them", "probability": 0.6328125}, {"start": 2368.36, "end": 2368.56, "word": " here,", "probability": 0.32763671875}, {"start": 2368.96, "end": 2369.38, "word": " he", "probability": 0.495361328125}, {"start": 2369.38, "end": 2369.58, "word": " left", "probability": 0.30078125}, {"start": 2369.58, "end": 2369.8, "word": " only", "probability": 0.5205078125}, {"start": 2369.8, "end": 2370.46, "word": " the", "probability": 0.457275390625}, {"start": 2370.46, "end": 2371.38, "word": " different", "probability": 0.45654296875}, {"start": 2371.38, "end": 2372.44, "word": " things,", "probability": 0.63232421875}, {"start": 2372.7, "end": 2373.0, "word": " okay?", "probability": 0.783203125}, {"start": 2373.6, "end": 2373.74, "word": " And", "probability": 0.73828125}, {"start": 2373.74, "end": 2374.06, "word": " sometimes,", "probability": 0.8505859375}, {"start": 2374.16, "end": 2374.24, "word": " by", "probability": 0.212890625}, {"start": 2374.24, "end": 2374.32, "word": " the", "probability": 0.55078125}, {"start": 2374.32, "end": 2374.48, "word": " way,", "probability": 0.95703125}, {"start": 2374.96, "end": 2375.3, "word": " in", "probability": 0.45654296875}, {"start": 2375.3, "end": 2375.84, "word": " this", "probability": 0.57275390625}, {"start": 2375.84, "end": 2376.98, "word": " case,", "probability": 0.1976318359375}, {"start": 2377.62, "end": 2377.82, "word": " he", "probability": 0.84326171875}, {"start": 2377.82, "end": 2378.04, "word": " told", "probability": 0.1710205078125}, {"start": 2378.04, "end": 2378.12, "word": " me", "probability": 0.841796875}, {"start": 2378.12, "end": 2378.22, "word": " that", "probability": 0.485595703125}, {"start": 2378.22, "end": 2378.26, "word": " it", "probability": 0.83056640625}, {"start": 2378.26, "end": 2378.26, "word": " is", "probability": 0.4853515625}, {"start": 2378.26, "end": 2378.7, "word": " abstract,", "probability": 0.70654296875}, {"start": 2379.02, "end": 2379.32, "word": " right?", "probability": 0.85498046875}, {"start": 2380.58, "end": 2381.02, "word": " Sometimes", "probability": 0.79931640625}, {"start": 2381.02, "end": 2381.12, "word": " in", "probability": 0.60546875}, {"start": 2381.12, "end": 2381.2, "word": " this", "probability": 0.53173828125}, {"start": 2381.2, "end": 2381.38, "word": " class,", "probability": 0.9541015625}, {"start": 2381.5, "end": 2381.76, "word": " I", "probability": 0.521484375}, {"start": 2381.76, "end": 2381.96, "word": " write", "probability": 0.798828125}, {"start": 2381.96, "end": 2382.08, "word": " the", "probability": 0.78369140625}, {"start": 2382.08, "end": 2382.28, "word": " word", "probability": 0.9306640625}, {"start": 2382.28, "end": 2382.62, "word": " abstract,", "probability": 0.71142578125}, {"start": 2383.14, "end": 2383.64, "word": " and", "probability": 0.875}, {"start": 2383.64, "end": 2383.88, "word": " sometimes", "probability": 0.89404296875}, {"start": 2383.88, "end": 2384.0, "word": " I", "probability": 0.89013671875}, {"start": 2384.0, "end": 2384.0, "word": " don't", "probability": 0.889892578125}, {"start": 2384.0, "end": 2384.22, "word": " write", "probability": 0.8291015625}, {"start": 2384.22, "end": 2384.36, "word": " it,", "probability": 0.81787109375}, {"start": 2384.4, "end": 2384.56, "word": " but", "probability": 0.7509765625}, {"start": 2384.56, "end": 2384.62, "word": " I", "probability": 0.916015625}, {"start": 2384.62, "end": 2384.76, "word": " put", "probability": 0.5224609375}, {"start": 2384.76, "end": 2385.0, "word": " the", "probability": 0.86279296875}, {"start": 2385.0, "end": 2385.0, "word": " name", "probability": 0.826171875}, {"start": 2385.0, "end": 2385.04, "word": " of", "probability": 0.97412109375}, {"start": 2385.04, "end": 2385.12, "word": " the", "probability": 0.83984375}, {"start": 2385.12, "end": 2385.48, "word": " class", "probability": 0.9677734375}, {"start": 2385.48, "end": 2387.12, "word": " Italic,", "probability": 0.57647705078125}, {"start": 2387.18, "end": 2387.42, "word": " okay?", "probability": 0.226318359375}, {"start": 2388.14, "end": 2388.3, "word": " You", "probability": 0.716796875}, {"start": 2388.3, "end": 2388.5, "word": " understand", "probability": 0.62109375}, {"start": 2388.5, "end": 2388.68, "word": " that", "probability": 0.921875}, {"start": 2388.68, "end": 2388.98, "word": " this", "probability": 0.85302734375}, {"start": 2388.98, "end": 2389.04, "word": " is", "probability": 0.845703125}, {"start": 2389.04, "end": 2389.76, "word": " an", "probability": 0.70361328125}, {"start": 2389.76, "end": 2389.94, "word": " abstract", "probability": 0.85595703125}, {"start": 2389.94, "end": 2390.48, "word": " class", "probability": 0.96337890625}], "temperature": 1.0}, {"id": 97, "seek": 241769, "start": 2391.96, "end": 2417.7, "text": "The last example is another example, also the goal is that when you see the diagram, you know how to convert it to code. So let's look at the classes that I have here. Let's start from here. This is the class that has a lot of brackets. Who does this represent? Employee. These are the attributes of the employee and these are the existing methods. Come here. Who is this?", "tokens": [2278, 1036, 1365, 307, 1071, 1365, 11, 611, 264, 3387, 307, 300, 562, 291, 536, 264, 10686, 11, 291, 458, 577, 281, 7620, 309, 281, 3089, 13, 407, 718, 311, 574, 412, 264, 5359, 300, 286, 362, 510, 13, 961, 311, 722, 490, 510, 13, 639, 307, 264, 1508, 300, 575, 257, 688, 295, 26179, 13, 2102, 775, 341, 2906, 30, 26878, 1653, 13, 1981, 366, 264, 17212, 295, 264, 10738, 293, 613, 366, 264, 6741, 7150, 13, 2492, 510, 13, 2102, 307, 341, 30], "avg_logprob": -0.48473836897417555, "compression_ratio": 1.6533333333333333, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2391.96, "end": 2392.28, "word": "The", "probability": 0.11474609375}, {"start": 2392.28, "end": 2392.48, "word": " last", "probability": 0.54541015625}, {"start": 2392.48, "end": 2392.9, "word": " example", "probability": 0.9208984375}, {"start": 2392.9, "end": 2393.34, "word": " is", "probability": 0.736328125}, {"start": 2393.34, "end": 2393.96, "word": " another", "probability": 0.56396484375}, {"start": 2393.96, "end": 2394.68, "word": " example,", "probability": 0.833984375}, {"start": 2394.86, "end": 2395.32, "word": " also", "probability": 0.1729736328125}, {"start": 2395.32, "end": 2395.58, "word": " the", "probability": 0.56884765625}, {"start": 2395.58, "end": 2395.84, "word": " goal", "probability": 0.5380859375}, {"start": 2395.84, "end": 2396.1, "word": " is", "probability": 0.79248046875}, {"start": 2396.1, "end": 2396.16, "word": " that", "probability": 0.458740234375}, {"start": 2396.16, "end": 2396.44, "word": " when", "probability": 0.71435546875}, {"start": 2396.44, "end": 2396.58, "word": " you", "probability": 0.951171875}, {"start": 2396.58, "end": 2396.8, "word": " see", "probability": 0.7822265625}, {"start": 2396.8, "end": 2396.96, "word": " the", "probability": 0.84228515625}, {"start": 2396.96, "end": 2397.4, "word": " diagram,", "probability": 0.84228515625}, {"start": 2398.2, "end": 2398.92, "word": " you", "probability": 0.79443359375}, {"start": 2398.92, "end": 2399.2, "word": " know", "probability": 0.51708984375}, {"start": 2399.2, "end": 2399.46, "word": " how", "probability": 0.8984375}, {"start": 2399.46, "end": 2399.6, "word": " to", "probability": 0.60888671875}, {"start": 2399.6, "end": 2399.82, "word": " convert", "probability": 0.40478515625}, {"start": 2399.82, "end": 2400.02, "word": " it", "probability": 0.8525390625}, {"start": 2400.02, "end": 2400.02, "word": " to", "probability": 0.4580078125}, {"start": 2400.02, "end": 2400.22, "word": " code.", "probability": 0.85400390625}, {"start": 2400.78, "end": 2401.16, "word": " So", "probability": 0.29150390625}, {"start": 2401.16, "end": 2401.54, "word": " let's", "probability": 0.836181640625}, {"start": 2401.54, "end": 2402.12, "word": " look", "probability": 0.58349609375}, {"start": 2402.12, "end": 2402.34, "word": " at", "probability": 0.94384765625}, {"start": 2402.34, "end": 2402.96, "word": " the", "probability": 0.83349609375}, {"start": 2402.96, "end": 2403.34, "word": " classes", "probability": 0.85595703125}, {"start": 2403.34, "end": 2403.48, "word": " that", "probability": 0.28759765625}, {"start": 2403.48, "end": 2403.56, "word": " I", "probability": 0.423095703125}, {"start": 2403.56, "end": 2403.94, "word": " have", "probability": 0.9091796875}, {"start": 2403.94, "end": 2404.22, "word": " here.", "probability": 0.763671875}, {"start": 2404.9, "end": 2405.2, "word": " Let's", "probability": 0.715087890625}, {"start": 2405.2, "end": 2405.4, "word": " start", "probability": 0.88427734375}, {"start": 2405.4, "end": 2405.54, "word": " from", "probability": 0.5322265625}, {"start": 2405.54, "end": 2405.76, "word": " here.", "probability": 0.72314453125}, {"start": 2405.96, "end": 2406.16, "word": " This", "probability": 0.77587890625}, {"start": 2406.16, "end": 2406.2, "word": " is", "probability": 0.7041015625}, {"start": 2406.2, "end": 2406.28, "word": " the", "probability": 0.74365234375}, {"start": 2406.28, "end": 2406.56, "word": " class", "probability": 0.9423828125}, {"start": 2406.56, "end": 2406.7, "word": " that", "probability": 0.56494140625}, {"start": 2406.7, "end": 2406.94, "word": " has", "probability": 0.85302734375}, {"start": 2406.94, "end": 2407.2, "word": " a", "probability": 0.1845703125}, {"start": 2407.2, "end": 2407.38, "word": " lot", "probability": 0.95751953125}, {"start": 2407.38, "end": 2408.26, "word": " of", "probability": 0.9677734375}, {"start": 2408.26, "end": 2408.6, "word": " brackets.", "probability": 0.031219482421875}, {"start": 2409.64, "end": 2409.82, "word": " Who", "probability": 0.37841796875}, {"start": 2409.82, "end": 2409.82, "word": " does", "probability": 0.402099609375}, {"start": 2409.82, "end": 2409.88, "word": " this", "probability": 0.767578125}, {"start": 2409.88, "end": 2410.28, "word": " represent?", "probability": 0.572265625}, {"start": 2411.38, "end": 2411.9, "word": " Employee.", "probability": 0.7861328125}, {"start": 2412.44, "end": 2412.82, "word": " These", "probability": 0.71484375}, {"start": 2412.82, "end": 2413.0, "word": " are", "probability": 0.93408203125}, {"start": 2413.0, "end": 2413.02, "word": " the", "probability": 0.88134765625}, {"start": 2413.02, "end": 2413.5, "word": " attributes", "probability": 0.70361328125}, {"start": 2413.5, "end": 2413.72, "word": " of", "probability": 0.94384765625}, {"start": 2413.72, "end": 2413.84, "word": " the", "probability": 0.81494140625}, {"start": 2413.84, "end": 2414.14, "word": " employee", "probability": 0.7890625}, {"start": 2414.14, "end": 2414.28, "word": " and", "probability": 0.51904296875}, {"start": 2414.28, "end": 2414.38, "word": " these", "probability": 0.81884765625}, {"start": 2414.38, "end": 2414.5, "word": " are", "probability": 0.9111328125}, {"start": 2414.5, "end": 2414.56, "word": " the", "probability": 0.8779296875}, {"start": 2414.56, "end": 2415.74, "word": " existing", "probability": 0.37841796875}, {"start": 2415.74, "end": 2415.74, "word": " methods.", "probability": 0.90673828125}, {"start": 2416.44, "end": 2416.9, "word": " Come", "probability": 0.6923828125}, {"start": 2416.9, "end": 2417.18, "word": " here.", "probability": 0.837890625}, {"start": 2417.42, "end": 2417.58, "word": " Who", "probability": 0.81982421875}, {"start": 2417.58, "end": 2417.58, "word": " is", "probability": 0.91796875}, {"start": 2417.58, "end": 2417.7, "word": " this?", "probability": 0.90625}], "temperature": 1.0}, {"id": 98, "seek": 244311, "start": 2423.53, "end": 2443.11, "text": "Contractor is a person who is employed but with a contract. The duration of his contract is a method here. Because this is one of the types of employees. So he went and generalized it for the employee. So he extended the employee. He took all the attributes and added the duration of the contract to it.", "tokens": [29821, 1897, 284, 307, 257, 954, 567, 307, 20115, 457, 365, 257, 4364, 13, 440, 16365, 295, 702, 4364, 307, 257, 3170, 510, 13, 1436, 341, 307, 472, 295, 264, 3467, 295, 6619, 13, 407, 415, 1437, 293, 44498, 309, 337, 264, 10738, 13, 407, 415, 10913, 264, 10738, 13, 634, 1890, 439, 264, 17212, 293, 3869, 264, 16365, 295, 264, 4364, 281, 309, 13], "avg_logprob": -0.6287878706599727, "compression_ratio": 1.7215909090909092, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 2423.5299999999997, "end": 2423.93, "word": "Contractor", "probability": 0.7686360677083334}, {"start": 2423.93, "end": 2423.99, "word": " is", "probability": 0.26904296875}, {"start": 2423.99, "end": 2426.85, "word": " a", "probability": 0.54931640625}, {"start": 2426.85, "end": 2428.09, "word": " person", "probability": 0.31982421875}, {"start": 2428.09, "end": 2428.33, "word": " who", "probability": 0.54833984375}, {"start": 2428.33, "end": 2428.59, "word": " is", "probability": 0.2998046875}, {"start": 2428.59, "end": 2428.79, "word": " employed", "probability": 0.6005859375}, {"start": 2428.79, "end": 2429.03, "word": " but", "probability": 0.28955078125}, {"start": 2429.03, "end": 2429.13, "word": " with", "probability": 0.2880859375}, {"start": 2429.13, "end": 2429.21, "word": " a", "probability": 0.3359375}, {"start": 2429.21, "end": 2429.41, "word": " contract.", "probability": 0.8564453125}, {"start": 2430.51, "end": 2430.91, "word": " The", "probability": 0.1939697265625}, {"start": 2430.91, "end": 2431.07, "word": " duration", "probability": 0.2049560546875}, {"start": 2431.07, "end": 2431.19, "word": " of", "probability": 0.95361328125}, {"start": 2431.19, "end": 2431.31, "word": " his", "probability": 0.392822265625}, {"start": 2431.31, "end": 2431.63, "word": " contract", "probability": 0.814453125}, {"start": 2431.63, "end": 2432.27, "word": " is", "probability": 0.76611328125}, {"start": 2432.27, "end": 2432.35, "word": " a", "probability": 0.2978515625}, {"start": 2432.35, "end": 2432.59, "word": " method", "probability": 0.9541015625}, {"start": 2432.59, "end": 2433.23, "word": " here.", "probability": 0.375244140625}, {"start": 2433.41, "end": 2433.55, "word": " Because", "probability": 0.49462890625}, {"start": 2433.55, "end": 2433.81, "word": " this", "probability": 0.57666015625}, {"start": 2433.81, "end": 2433.93, "word": " is", "probability": 0.6708984375}, {"start": 2433.93, "end": 2434.25, "word": " one", "probability": 0.7392578125}, {"start": 2434.25, "end": 2434.37, "word": " of", "probability": 0.763671875}, {"start": 2434.37, "end": 2434.37, "word": " the", "probability": 0.80712890625}, {"start": 2434.37, "end": 2434.49, "word": " types", "probability": 0.59716796875}, {"start": 2434.49, "end": 2434.65, "word": " of", "probability": 0.970703125}, {"start": 2434.65, "end": 2434.97, "word": " employees.", "probability": 0.62646484375}, {"start": 2435.85, "end": 2436.25, "word": " So", "probability": 0.55517578125}, {"start": 2436.25, "end": 2436.41, "word": " he", "probability": 0.486083984375}, {"start": 2436.41, "end": 2436.41, "word": " went", "probability": 0.369140625}, {"start": 2436.41, "end": 2436.59, "word": " and", "probability": 0.5078125}, {"start": 2436.59, "end": 2436.81, "word": " generalized", "probability": 0.64013671875}, {"start": 2436.81, "end": 2436.93, "word": " it", "probability": 0.179443359375}, {"start": 2436.93, "end": 2438.11, "word": " for", "probability": 0.427490234375}, {"start": 2438.11, "end": 2438.35, "word": " the", "probability": 0.72900390625}, {"start": 2438.35, "end": 2438.59, "word": " employee.", "probability": 0.73828125}, {"start": 2438.67, "end": 2438.73, "word": " So", "probability": 0.2064208984375}, {"start": 2438.73, "end": 2438.89, "word": " he", "probability": 0.494384765625}, {"start": 2438.89, "end": 2439.31, "word": " extended", "probability": 0.417724609375}, {"start": 2439.31, "end": 2439.49, "word": " the", "probability": 0.7763671875}, {"start": 2439.49, "end": 2439.69, "word": " employee.", "probability": 0.80517578125}, {"start": 2439.77, "end": 2439.83, "word": " He", "probability": 0.85400390625}, {"start": 2439.83, "end": 2439.99, "word": " took", "probability": 0.79296875}, {"start": 2439.99, "end": 2440.19, "word": " all", "probability": 0.91162109375}, {"start": 2440.19, "end": 2440.29, "word": " the", "probability": 0.689453125}, {"start": 2440.29, "end": 2440.65, "word": " attributes", "probability": 0.91064453125}, {"start": 2440.65, "end": 2440.89, "word": " and", "probability": 0.81640625}, {"start": 2440.89, "end": 2441.23, "word": " added", "probability": 0.75048828125}, {"start": 2441.23, "end": 2442.09, "word": " the", "probability": 0.424560546875}, {"start": 2442.09, "end": 2442.27, "word": " duration", "probability": 0.91162109375}, {"start": 2442.27, "end": 2442.37, "word": " of", "probability": 0.9013671875}, {"start": 2442.37, "end": 2442.45, "word": " the", "probability": 0.642578125}, {"start": 2442.45, "end": 2442.65, "word": " contract", "probability": 0.83837890625}, {"start": 2442.65, "end": 2442.83, "word": " to", "probability": 0.38525390625}, {"start": 2442.83, "end": 2443.11, "word": " it.", "probability": 0.78125}], "temperature": 1.0}, {"id": 99, "seek": 247575, "start": 2447.45, "end": 2475.75, "text": " the company name and they put here a list of employees this means that the company has a relationship with the employees there is an association relationship and what is written here one to a star by the way even if you don't put this list you have to understand it yourself and it is written here works for", "tokens": [264, 2237, 1315, 293, 436, 829, 510, 257, 1329, 295, 6619, 341, 1355, 300, 264, 2237, 575, 257, 2480, 365, 264, 6619, 456, 307, 364, 14598, 2480, 293, 437, 307, 3720, 510, 472, 281, 257, 3543, 538, 264, 636, 754, 498, 291, 500, 380, 829, 341, 1329, 291, 362, 281, 1223, 309, 1803, 293, 309, 307, 3720, 510, 1985, 337], "avg_logprob": -0.5753073926831855, "compression_ratio": 1.8224852071005917, "no_speech_prob": 4.649162292480469e-06, "words": [{"start": 2447.45, "end": 2447.69, "word": " the", "probability": 0.150634765625}, {"start": 2447.69, "end": 2448.07, "word": " company", "probability": 0.83837890625}, {"start": 2448.07, "end": 2450.07, "word": " name", "probability": 0.268310546875}, {"start": 2450.07, "end": 2452.73, "word": " and", "probability": 0.485595703125}, {"start": 2452.73, "end": 2452.81, "word": " they", "probability": 0.1751708984375}, {"start": 2452.81, "end": 2453.09, "word": " put", "probability": 0.359130859375}, {"start": 2453.09, "end": 2453.37, "word": " here", "probability": 0.40869140625}, {"start": 2453.37, "end": 2453.67, "word": " a", "probability": 0.1875}, {"start": 2453.67, "end": 2453.91, "word": " list", "probability": 0.88525390625}, {"start": 2453.91, "end": 2454.21, "word": " of", "probability": 0.96044921875}, {"start": 2454.21, "end": 2455.47, "word": " employees", "probability": 0.86474609375}, {"start": 2455.47, "end": 2456.83, "word": " this", "probability": 0.382080078125}, {"start": 2456.83, "end": 2457.09, "word": " means", "probability": 0.82080078125}, {"start": 2457.09, "end": 2457.29, "word": " that", "probability": 0.826171875}, {"start": 2457.29, "end": 2457.41, "word": " the", "probability": 0.67822265625}, {"start": 2457.41, "end": 2457.75, "word": " company", "probability": 0.90673828125}, {"start": 2457.75, "end": 2458.81, "word": " has", "probability": 0.495361328125}, {"start": 2458.81, "end": 2460.21, "word": " a", "probability": 0.587890625}, {"start": 2460.21, "end": 2460.47, "word": " relationship", "probability": 0.65625}, {"start": 2460.47, "end": 2460.65, "word": " with", "probability": 0.861328125}, {"start": 2460.65, "end": 2460.79, "word": " the", "probability": 0.487548828125}, {"start": 2460.79, "end": 2461.03, "word": " employees", "probability": 0.69140625}, {"start": 2461.03, "end": 2461.25, "word": " there", "probability": 0.2017822265625}, {"start": 2461.25, "end": 2461.37, "word": " is", "probability": 0.79638671875}, {"start": 2461.37, "end": 2461.55, "word": " an", "probability": 0.54833984375}, {"start": 2461.55, "end": 2462.19, "word": " association", "probability": 0.91943359375}, {"start": 2462.19, "end": 2462.71, "word": " relationship", "probability": 0.3388671875}, {"start": 2462.71, "end": 2464.11, "word": " and", "probability": 0.453857421875}, {"start": 2464.11, "end": 2464.61, "word": " what", "probability": 0.1292724609375}, {"start": 2464.61, "end": 2465.33, "word": " is", "probability": 0.72607421875}, {"start": 2465.33, "end": 2465.61, "word": " written", "probability": 0.84130859375}, {"start": 2465.61, "end": 2465.87, "word": " here", "probability": 0.57275390625}, {"start": 2465.87, "end": 2466.21, "word": " one", "probability": 0.177001953125}, {"start": 2466.21, "end": 2466.47, "word": " to", "probability": 0.82568359375}, {"start": 2466.47, "end": 2467.87, "word": " a", "probability": 0.33642578125}, {"start": 2467.87, "end": 2467.87, "word": " star", "probability": 0.9404296875}, {"start": 2467.87, "end": 2468.87, "word": " by", "probability": 0.5185546875}, {"start": 2468.87, "end": 2469.13, "word": " the", "probability": 0.9326171875}, {"start": 2469.13, "end": 2469.17, "word": " way", "probability": 0.95849609375}, {"start": 2469.17, "end": 2469.49, "word": " even", "probability": 0.5537109375}, {"start": 2469.49, "end": 2469.65, "word": " if", "probability": 0.916015625}, {"start": 2469.65, "end": 2469.73, "word": " you", "probability": 0.8935546875}, {"start": 2469.73, "end": 2469.75, "word": " don't", "probability": 0.713134765625}, {"start": 2469.75, "end": 2469.99, "word": " put", "probability": 0.73779296875}, {"start": 2469.99, "end": 2470.21, "word": " this", "probability": 0.83447265625}, {"start": 2470.21, "end": 2470.49, "word": " list", "probability": 0.90234375}, {"start": 2470.49, "end": 2471.35, "word": " you", "probability": 0.75048828125}, {"start": 2471.35, "end": 2471.55, "word": " have", "probability": 0.38916015625}, {"start": 2471.55, "end": 2471.63, "word": " to", "probability": 0.97216796875}, {"start": 2471.63, "end": 2471.85, "word": " understand", "probability": 0.6630859375}, {"start": 2471.85, "end": 2471.97, "word": " it", "probability": 0.77294921875}, {"start": 2471.97, "end": 2472.33, "word": " yourself", "probability": 0.392333984375}, {"start": 2472.33, "end": 2474.41, "word": " and", "probability": 0.630859375}, {"start": 2474.41, "end": 2474.51, "word": " it", "probability": 0.3349609375}, {"start": 2474.51, "end": 2474.69, "word": " is", "probability": 0.3720703125}, {"start": 2474.69, "end": 2474.69, "word": " written", "probability": 0.85546875}, {"start": 2474.69, "end": 2475.13, "word": " here", "probability": 0.267578125}, {"start": 2475.13, "end": 2475.41, "word": " works", "probability": 0.66943359375}, {"start": 2475.41, "end": 2475.75, "word": " for", "probability": 0.94189453125}], "temperature": 1.0}, {"id": 100, "seek": 250562, "start": 2477.72, "end": 2505.62, "text": " And I also understand that since he put employer here and wrote employee, that this is an exchange relationship, okay? That the employee can refer to whom? To the company. Okay, let's come to this one. What is written here? The manager, okay? There are two relationships between the manager and the employee. Generalization and association. It means that the manager extends", "tokens": [400, 286, 611, 1223, 300, 1670, 415, 829, 16205, 510, 293, 4114, 10738, 11, 300, 341, 307, 364, 7742, 2480, 11, 1392, 30, 663, 264, 10738, 393, 2864, 281, 7101, 30, 1407, 264, 2237, 13, 1033, 11, 718, 311, 808, 281, 341, 472, 13, 708, 307, 3720, 510, 30, 440, 6598, 11, 1392, 30, 821, 366, 732, 2299, 7640, 1296, 264, 6598, 293, 264, 10738, 13, 6996, 2144, 293, 14598, 13, 467, 1355, 300, 264, 6598, 26448], "avg_logprob": -0.47956732106514466, "compression_ratio": 1.7361111111111112, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 2477.72, "end": 2478.3, "word": " And", "probability": 0.209228515625}, {"start": 2478.3, "end": 2478.46, "word": " I", "probability": 0.78125}, {"start": 2478.46, "end": 2478.64, "word": " also", "probability": 0.32177734375}, {"start": 2478.64, "end": 2478.66, "word": " understand", "probability": 0.60107421875}, {"start": 2478.66, "end": 2479.1, "word": " that", "probability": 0.7021484375}, {"start": 2479.1, "end": 2479.32, "word": " since", "probability": 0.492919921875}, {"start": 2479.32, "end": 2479.5, "word": " he", "probability": 0.18505859375}, {"start": 2479.5, "end": 2479.66, "word": " put", "probability": 0.38232421875}, {"start": 2479.66, "end": 2480.22, "word": " employer", "probability": 0.269287109375}, {"start": 2480.22, "end": 2480.44, "word": " here", "probability": 0.4052734375}, {"start": 2480.44, "end": 2480.72, "word": " and", "probability": 0.7138671875}, {"start": 2480.72, "end": 2480.94, "word": " wrote", "probability": 0.55908203125}, {"start": 2480.94, "end": 2481.38, "word": " employee,", "probability": 0.8955078125}, {"start": 2481.44, "end": 2481.54, "word": " that", "probability": 0.289306640625}, {"start": 2481.54, "end": 2481.74, "word": " this", "probability": 0.58349609375}, {"start": 2481.74, "end": 2481.8, "word": " is", "probability": 0.8603515625}, {"start": 2481.8, "end": 2482.14, "word": " an", "probability": 0.6669921875}, {"start": 2482.14, "end": 2482.38, "word": " exchange", "probability": 0.56640625}, {"start": 2482.38, "end": 2482.72, "word": " relationship,", "probability": 0.650390625}, {"start": 2483.28, "end": 2483.58, "word": " okay?", "probability": 0.274169921875}, {"start": 2484.16, "end": 2484.34, "word": " That", "probability": 0.490234375}, {"start": 2484.34, "end": 2484.74, "word": " the", "probability": 0.476318359375}, {"start": 2484.74, "end": 2485.24, "word": " employee", "probability": 0.85302734375}, {"start": 2485.24, "end": 2486.18, "word": " can", "probability": 0.5146484375}, {"start": 2486.18, "end": 2487.4, "word": " refer", "probability": 0.2188720703125}, {"start": 2487.4, "end": 2487.86, "word": " to", "probability": 0.8720703125}, {"start": 2487.86, "end": 2488.02, "word": " whom?", "probability": 0.76123046875}, {"start": 2489.06, "end": 2489.7, "word": " To", "probability": 0.697265625}, {"start": 2489.7, "end": 2490.94, "word": " the", "probability": 0.88037109375}, {"start": 2490.94, "end": 2491.34, "word": " company.", "probability": 0.9150390625}, {"start": 2492.66, "end": 2492.88, "word": " Okay,", "probability": 0.497802734375}, {"start": 2492.9, "end": 2493.04, "word": " let's", "probability": 0.924560546875}, {"start": 2493.04, "end": 2493.14, "word": " come", "probability": 0.33740234375}, {"start": 2493.14, "end": 2493.22, "word": " to", "probability": 0.91943359375}, {"start": 2493.22, "end": 2493.52, "word": " this", "probability": 0.916015625}, {"start": 2493.52, "end": 2494.26, "word": " one.", "probability": 0.4296875}, {"start": 2494.26, "end": 2494.78, "word": " What", "probability": 0.84130859375}, {"start": 2494.78, "end": 2494.78, "word": " is", "probability": 0.63916015625}, {"start": 2494.78, "end": 2495.18, "word": " written", "probability": 0.771484375}, {"start": 2495.18, "end": 2495.18, "word": " here?", "probability": 0.62158203125}, {"start": 2495.44, "end": 2496.08, "word": " The", "probability": 0.4267578125}, {"start": 2496.08, "end": 2496.4, "word": " manager,", "probability": 0.92626953125}, {"start": 2496.8, "end": 2497.3, "word": " okay?", "probability": 0.76611328125}, {"start": 2497.88, "end": 2498.14, "word": " There", "probability": 0.8173828125}, {"start": 2498.14, "end": 2498.22, "word": " are", "probability": 0.9033203125}, {"start": 2498.22, "end": 2498.66, "word": " two", "probability": 0.80224609375}, {"start": 2498.66, "end": 2498.88, "word": " relationships", "probability": 0.57958984375}, {"start": 2498.88, "end": 2499.04, "word": " between", "probability": 0.87939453125}, {"start": 2499.04, "end": 2499.18, "word": " the", "probability": 0.74609375}, {"start": 2499.18, "end": 2499.5, "word": " manager", "probability": 0.94921875}, {"start": 2499.5, "end": 2501.06, "word": " and", "probability": 0.9404296875}, {"start": 2501.06, "end": 2501.18, "word": " the", "probability": 0.8955078125}, {"start": 2501.18, "end": 2501.5, "word": " employee.", "probability": 0.888671875}, {"start": 2502.16, "end": 2502.8, "word": " Generalization", "probability": 0.941162109375}, {"start": 2502.8, "end": 2502.96, "word": " and", "probability": 0.873046875}, {"start": 2502.96, "end": 2503.4, "word": " association.", "probability": 0.486328125}, {"start": 2503.8, "end": 2504.0, "word": " It", "probability": 0.22900390625}, {"start": 2504.0, "end": 2504.16, "word": " means", "probability": 0.94677734375}, {"start": 2504.16, "end": 2504.34, "word": " that", "probability": 0.89013671875}, {"start": 2504.34, "end": 2504.42, "word": " the", "probability": 0.896484375}, {"start": 2504.42, "end": 2504.78, "word": " manager", "probability": 0.94970703125}, {"start": 2504.78, "end": 2505.62, "word": " extends", "probability": 0.7421875}], "temperature": 1.0}, {"id": 101, "seek": 253332, "start": 2506.44, "end": 2533.32, "text": " the employee and also the manager has a list of employees this is really a code it looks like this class manager extends employee and there is a list inside it", "tokens": [264, 10738, 293, 611, 264, 6598, 575, 257, 1329, 295, 6619, 341, 307, 534, 257, 3089, 309, 1542, 411, 341, 1508, 6598, 26448, 10738, 293, 456, 307, 257, 1329, 1854, 309], "avg_logprob": -0.6577148661017418, "compression_ratio": 1.5686274509803921, "no_speech_prob": 2.3245811462402344e-06, "words": [{"start": 2506.44, "end": 2506.66, "word": " the", "probability": 0.1290283203125}, {"start": 2506.66, "end": 2506.96, "word": " employee", "probability": 0.7744140625}, {"start": 2506.96, "end": 2508.9, "word": " and", "probability": 0.078857421875}, {"start": 2508.9, "end": 2511.06, "word": " also", "probability": 0.282958984375}, {"start": 2511.06, "end": 2511.28, "word": " the", "probability": 0.63623046875}, {"start": 2511.28, "end": 2511.62, "word": " manager", "probability": 0.9326171875}, {"start": 2511.62, "end": 2512.12, "word": " has", "probability": 0.208740234375}, {"start": 2512.12, "end": 2512.4, "word": " a", "probability": 0.87744140625}, {"start": 2512.4, "end": 2512.7, "word": " list", "probability": 0.8955078125}, {"start": 2512.7, "end": 2512.96, "word": " of", "probability": 0.94873046875}, {"start": 2512.96, "end": 2514.08, "word": " employees", "probability": 0.76171875}, {"start": 2514.08, "end": 2514.66, "word": " this", "probability": 0.1900634765625}, {"start": 2514.66, "end": 2514.8, "word": " is", "probability": 0.58349609375}, {"start": 2514.8, "end": 2515.12, "word": " really", "probability": 0.2261962890625}, {"start": 2515.12, "end": 2515.42, "word": " a", "probability": 0.5185546875}, {"start": 2515.42, "end": 2516.06, "word": " code", "probability": 0.89404296875}, {"start": 2516.06, "end": 2517.06, "word": " it", "probability": 0.170166015625}, {"start": 2517.06, "end": 2517.38, "word": " looks", "probability": 0.68017578125}, {"start": 2517.38, "end": 2517.62, "word": " like", "probability": 0.90380859375}, {"start": 2517.62, "end": 2518.44, "word": " this", "probability": 0.8935546875}, {"start": 2518.44, "end": 2521.38, "word": " class", "probability": 0.8515625}, {"start": 2521.38, "end": 2522.56, "word": " manager", "probability": 0.8310546875}, {"start": 2522.56, "end": 2526.3, "word": " extends", "probability": 0.935546875}, {"start": 2526.3, "end": 2529.14, "word": " employee", "probability": 0.80859375}, {"start": 2529.14, "end": 2532.26, "word": " and", "probability": 0.54638671875}, {"start": 2532.26, "end": 2532.46, "word": " there", "probability": 0.20947265625}, {"start": 2532.46, "end": 2532.5, "word": " is", "probability": 0.8095703125}, {"start": 2532.5, "end": 2532.78, "word": " a", "probability": 0.44873046875}, {"start": 2532.78, "end": 2532.78, "word": " list", "probability": 0.88671875}, {"start": 2532.78, "end": 2532.78, "word": " inside", "probability": 0.70654296875}, {"start": 2532.78, "end": 2533.32, "word": " it", "probability": 0.54248046875}], "temperature": 1.0}, {"id": 102, "seek": 255981, "start": 2536.83, "end": 2559.81, "text": " of employee. Okay? He called it managers. It looks like this. It took two relationships here. This is the relationship of generalization and this is the relationship of association. Well, why did he do that? Of course, the manager supervises a group of employees and made the manager an employee so that the manager can have another manager.", "tokens": [295, 10738, 13, 1033, 30, 634, 1219, 309, 14084, 13, 467, 1542, 411, 341, 13, 467, 1890, 732, 6159, 510, 13, 639, 307, 264, 2480, 295, 2674, 2144, 293, 341, 307, 264, 2480, 295, 14598, 13, 1042, 11, 983, 630, 415, 360, 300, 30, 2720, 1164, 11, 264, 6598, 37971, 3598, 257, 1594, 295, 6619, 293, 1027, 264, 6598, 364, 10738, 370, 300, 264, 6598, 393, 362, 1071, 6598, 13], "avg_logprob": -0.435299298293154, "compression_ratio": 1.78125, "no_speech_prob": 5.125999450683594e-06, "words": [{"start": 2536.83, "end": 2537.13, "word": " of", "probability": 0.436279296875}, {"start": 2537.13, "end": 2537.73, "word": " employee.", "probability": 0.70068359375}, {"start": 2540.79, "end": 2541.31, "word": " Okay?", "probability": 0.155029296875}, {"start": 2541.57, "end": 2541.99, "word": " He", "probability": 0.318603515625}, {"start": 2541.99, "end": 2542.27, "word": " called", "probability": 0.469482421875}, {"start": 2542.27, "end": 2542.41, "word": " it", "probability": 0.53173828125}, {"start": 2542.41, "end": 2542.85, "word": " managers.", "probability": 0.484375}, {"start": 2544.87, "end": 2545.17, "word": " It", "probability": 0.58642578125}, {"start": 2545.17, "end": 2545.41, "word": " looks", "probability": 0.374755859375}, {"start": 2545.41, "end": 2545.61, "word": " like", "probability": 0.9248046875}, {"start": 2545.61, "end": 2545.79, "word": " this.", "probability": 0.79541015625}, {"start": 2546.03, "end": 2546.17, "word": " It", "probability": 0.390380859375}, {"start": 2546.17, "end": 2546.43, "word": " took", "probability": 0.277099609375}, {"start": 2546.43, "end": 2546.93, "word": " two", "probability": 0.81640625}, {"start": 2546.93, "end": 2546.93, "word": " relationships", "probability": 0.3779296875}, {"start": 2546.93, "end": 2547.35, "word": " here.", "probability": 0.68359375}, {"start": 2547.59, "end": 2547.73, "word": " This", "probability": 0.677734375}, {"start": 2547.73, "end": 2547.79, "word": " is", "probability": 0.66943359375}, {"start": 2547.79, "end": 2547.85, "word": " the", "probability": 0.66259765625}, {"start": 2547.85, "end": 2548.03, "word": " relationship", "probability": 0.8173828125}, {"start": 2548.03, "end": 2548.15, "word": " of", "probability": 0.689453125}, {"start": 2548.15, "end": 2548.85, "word": " generalization", "probability": 0.927978515625}, {"start": 2548.85, "end": 2549.89, "word": " and", "probability": 0.66650390625}, {"start": 2549.89, "end": 2549.99, "word": " this", "probability": 0.89892578125}, {"start": 2549.99, "end": 2550.03, "word": " is", "probability": 0.84765625}, {"start": 2550.03, "end": 2550.07, "word": " the", "probability": 0.85107421875}, {"start": 2550.07, "end": 2550.33, "word": " relationship", "probability": 0.892578125}, {"start": 2550.33, "end": 2550.67, "word": " of", "probability": 0.95947265625}, {"start": 2550.67, "end": 2551.15, "word": " association.", "probability": 0.47705078125}, {"start": 2551.29, "end": 2551.37, "word": " Well,", "probability": 0.1788330078125}, {"start": 2551.45, "end": 2551.71, "word": " why", "probability": 0.900390625}, {"start": 2551.71, "end": 2551.77, "word": " did", "probability": 0.89453125}, {"start": 2551.77, "end": 2551.77, "word": " he", "probability": 0.9150390625}, {"start": 2551.77, "end": 2551.93, "word": " do", "probability": 0.92724609375}, {"start": 2551.93, "end": 2552.19, "word": " that?", "probability": 0.487548828125}, {"start": 2552.55, "end": 2552.81, "word": " Of", "probability": 0.50634765625}, {"start": 2552.81, "end": 2552.91, "word": " course,", "probability": 0.96044921875}, {"start": 2552.97, "end": 2553.03, "word": " the", "probability": 0.80322265625}, {"start": 2553.03, "end": 2553.29, "word": " manager", "probability": 0.81787109375}, {"start": 2553.29, "end": 2554.15, "word": " supervises", "probability": 0.6732177734375}, {"start": 2554.15, "end": 2554.37, "word": " a", "probability": 0.7763671875}, {"start": 2554.37, "end": 2554.69, "word": " group", "probability": 0.9677734375}, {"start": 2554.69, "end": 2555.05, "word": " of", "probability": 0.95654296875}, {"start": 2555.05, "end": 2555.93, "word": " employees", "probability": 0.828125}, {"start": 2555.93, "end": 2556.85, "word": " and", "probability": 0.58251953125}, {"start": 2556.85, "end": 2557.11, "word": " made", "probability": 0.52197265625}, {"start": 2557.11, "end": 2557.27, "word": " the", "probability": 0.89111328125}, {"start": 2557.27, "end": 2557.57, "word": " manager", "probability": 0.958984375}, {"start": 2557.57, "end": 2557.71, "word": " an", "probability": 0.4111328125}, {"start": 2557.71, "end": 2558.03, "word": " employee", "probability": 0.87939453125}, {"start": 2558.03, "end": 2558.27, "word": " so", "probability": 0.36572265625}, {"start": 2558.27, "end": 2558.45, "word": " that", "probability": 0.8564453125}, {"start": 2558.45, "end": 2558.95, "word": " the", "probability": 0.75537109375}, {"start": 2558.95, "end": 2559.29, "word": " manager", "probability": 0.9501953125}, {"start": 2559.29, "end": 2559.35, "word": " can", "probability": 0.45166015625}, {"start": 2559.35, "end": 2559.45, "word": " have", "probability": 0.55126953125}, {"start": 2559.45, "end": 2559.49, "word": " another", "probability": 0.88232421875}, {"start": 2559.49, "end": 2559.81, "word": " manager.", "probability": 0.93310546875}], "temperature": 1.0}, {"id": 103, "seek": 258848, "start": 2561.0, "end": 2588.48, "text": " right or not? so the manager himself will be added as an employee to whom? to another manager okay? so this allows the relationship that the manager is himself an employee to another manager okay? so let him take the type of employee to add him with whom? with employees to another manager okay? all this we have to understand guys from the drawing because after this all the design patterns will give you drawings like this", "tokens": [558, 420, 406, 30, 370, 264, 6598, 3647, 486, 312, 3869, 382, 364, 10738, 281, 7101, 30, 281, 1071, 6598, 1392, 30, 370, 341, 4045, 264, 2480, 300, 264, 6598, 307, 3647, 364, 10738, 281, 1071, 6598, 1392, 30, 370, 718, 796, 747, 264, 2010, 295, 10738, 281, 909, 796, 365, 7101, 30, 365, 6619, 281, 1071, 6598, 1392, 30, 439, 341, 321, 362, 281, 1223, 1074, 490, 264, 6316, 570, 934, 341, 439, 264, 1715, 8294, 486, 976, 291, 18618, 411, 341], "avg_logprob": -0.41145833226896467, "compression_ratio": 2.073170731707317, "no_speech_prob": 1.9669532775878906e-06, "words": [{"start": 2561.0, "end": 2561.28, "word": " right", "probability": 0.1568603515625}, {"start": 2561.28, "end": 2561.48, "word": " or", "probability": 0.6123046875}, {"start": 2561.48, "end": 2561.54, "word": " not?", "probability": 0.51904296875}, {"start": 2561.7, "end": 2562.18, "word": " so", "probability": 0.324462890625}, {"start": 2562.18, "end": 2562.28, "word": " the", "probability": 0.73095703125}, {"start": 2562.28, "end": 2562.62, "word": " manager", "probability": 0.93798828125}, {"start": 2562.62, "end": 2563.06, "word": " himself", "probability": 0.59423828125}, {"start": 2563.06, "end": 2563.42, "word": " will", "probability": 0.69677734375}, {"start": 2563.42, "end": 2563.52, "word": " be", "probability": 0.8232421875}, {"start": 2563.52, "end": 2563.64, "word": " added", "probability": 0.80615234375}, {"start": 2563.64, "end": 2563.84, "word": " as", "probability": 0.8154296875}, {"start": 2563.84, "end": 2563.98, "word": " an", "probability": 0.58251953125}, {"start": 2563.98, "end": 2564.46, "word": " employee", "probability": 0.86376953125}, {"start": 2564.46, "end": 2565.5, "word": " to", "probability": 0.385986328125}, {"start": 2565.5, "end": 2565.82, "word": " whom?", "probability": 0.35009765625}, {"start": 2566.48, "end": 2566.76, "word": " to", "probability": 0.6728515625}, {"start": 2566.76, "end": 2566.88, "word": " another", "probability": 0.86572265625}, {"start": 2566.88, "end": 2567.14, "word": " manager", "probability": 0.9541015625}, {"start": 2567.14, "end": 2568.18, "word": " okay?", "probability": 0.1680908203125}, {"start": 2568.24, "end": 2568.34, "word": " so", "probability": 0.7509765625}, {"start": 2568.34, "end": 2568.46, "word": " this", "probability": 0.787109375}, {"start": 2568.46, "end": 2568.76, "word": " allows", "probability": 0.61572265625}, {"start": 2568.76, "end": 2568.92, "word": " the", "probability": 0.69775390625}, {"start": 2568.92, "end": 2569.16, "word": " relationship", "probability": 0.7822265625}, {"start": 2569.16, "end": 2569.34, "word": " that", "probability": 0.66015625}, {"start": 2569.34, "end": 2569.44, "word": " the", "probability": 0.81689453125}, {"start": 2569.44, "end": 2569.7, "word": " manager", "probability": 0.95947265625}, {"start": 2569.7, "end": 2570.1, "word": " is", "probability": 0.4453125}, {"start": 2570.1, "end": 2570.8, "word": " himself", "probability": 0.6748046875}, {"start": 2570.8, "end": 2570.92, "word": " an", "probability": 0.703125}, {"start": 2570.92, "end": 2571.16, "word": " employee", "probability": 0.85595703125}, {"start": 2571.16, "end": 2571.3, "word": " to", "probability": 0.61962890625}, {"start": 2571.3, "end": 2571.38, "word": " another", "probability": 0.9013671875}, {"start": 2571.38, "end": 2572.14, "word": " manager", "probability": 0.95068359375}, {"start": 2572.14, "end": 2573.14, "word": " okay?", "probability": 0.6376953125}, {"start": 2573.44, "end": 2573.72, "word": " so", "probability": 0.8857421875}, {"start": 2573.72, "end": 2573.98, "word": " let", "probability": 0.4892578125}, {"start": 2573.98, "end": 2574.08, "word": " him", "probability": 0.8447265625}, {"start": 2574.08, "end": 2574.28, "word": " take", "probability": 0.7705078125}, {"start": 2574.28, "end": 2574.42, "word": " the", "probability": 0.619140625}, {"start": 2574.42, "end": 2574.46, "word": " type", "probability": 0.5009765625}, {"start": 2574.46, "end": 2574.58, "word": " of", "probability": 0.93701171875}, {"start": 2574.58, "end": 2574.96, "word": " employee", "probability": 0.84716796875}, {"start": 2574.96, "end": 2575.18, "word": " to", "probability": 0.46044921875}, {"start": 2575.18, "end": 2575.46, "word": " add", "probability": 0.626953125}, {"start": 2575.46, "end": 2575.6, "word": " him", "probability": 0.787109375}, {"start": 2575.6, "end": 2575.68, "word": " with", "probability": 0.5576171875}, {"start": 2575.68, "end": 2575.92, "word": " whom?", "probability": 0.6943359375}, {"start": 2577.08, "end": 2577.26, "word": " with", "probability": 0.82421875}, {"start": 2577.26, "end": 2577.84, "word": " employees", "probability": 0.806640625}, {"start": 2577.84, "end": 2578.46, "word": " to", "probability": 0.47314453125}, {"start": 2578.46, "end": 2579.12, "word": " another", "probability": 0.876953125}, {"start": 2579.12, "end": 2579.42, "word": " manager", "probability": 0.8134765625}, {"start": 2579.42, "end": 2580.72, "word": " okay?", "probability": 0.71728515625}, {"start": 2581.1, "end": 2581.3, "word": " all", "probability": 0.58203125}, {"start": 2581.3, "end": 2581.48, "word": " this", "probability": 0.57470703125}, {"start": 2581.48, "end": 2581.6, "word": " we", "probability": 0.35205078125}, {"start": 2581.6, "end": 2581.64, "word": " have", "probability": 0.311279296875}, {"start": 2581.64, "end": 2581.8, "word": " to", "probability": 0.97607421875}, {"start": 2581.8, "end": 2582.02, "word": " understand", "probability": 0.70751953125}, {"start": 2582.02, "end": 2582.74, "word": " guys", "probability": 0.638671875}, {"start": 2582.74, "end": 2583.62, "word": " from", "probability": 0.77490234375}, {"start": 2583.62, "end": 2583.7, "word": " the", "probability": 0.45751953125}, {"start": 2583.7, "end": 2583.94, "word": " drawing", "probability": 0.5185546875}, {"start": 2583.94, "end": 2585.02, "word": " because", "probability": 0.8583984375}, {"start": 2585.02, "end": 2585.28, "word": " after", "probability": 0.64404296875}, {"start": 2585.28, "end": 2585.52, "word": " this", "probability": 0.496826171875}, {"start": 2585.52, "end": 2585.76, "word": " all", "probability": 0.5771484375}, {"start": 2585.76, "end": 2585.86, "word": " the", "probability": 0.4619140625}, {"start": 2585.86, "end": 2586.14, "word": " design", "probability": 0.6337890625}, {"start": 2586.14, "end": 2586.68, "word": " patterns", "probability": 0.85546875}, {"start": 2586.68, "end": 2587.4, "word": " will", "probability": 0.80908203125}, {"start": 2587.4, "end": 2587.52, "word": " give", "probability": 0.84912109375}, {"start": 2587.52, "end": 2587.66, "word": " you", "probability": 0.87646484375}, {"start": 2587.66, "end": 2587.9, "word": " drawings", "probability": 0.8076171875}, {"start": 2587.9, "end": 2588.16, "word": " like", "probability": 0.92626953125}, {"start": 2588.16, "end": 2588.48, "word": " this", "probability": 0.7978515625}], "temperature": 1.0}, {"id": 104, "seek": 261441, "start": 2589.25, "end": 2614.41, "text": " and we understand them. And then you turn it into code. And the advantage of class diagram these days is that it shows you relationships and you can translate Java, Python, or PHP into any language. This is standard. Today's concept is that it is standard. You agree on it, and then everyone does coding in the form or language they want. Does anyone have any questions or inquiries? Thank you.", "tokens": [293, 321, 1223, 552, 13, 400, 550, 291, 1261, 309, 666, 3089, 13, 400, 264, 5002, 295, 1508, 10686, 613, 1708, 307, 300, 309, 3110, 291, 6159, 293, 291, 393, 13799, 10745, 11, 15329, 11, 420, 47298, 666, 604, 2856, 13, 639, 307, 3832, 13, 2692, 311, 3410, 307, 300, 309, 307, 3832, 13, 509, 3986, 322, 309, 11, 293, 550, 1518, 775, 17720, 294, 264, 1254, 420, 2856, 436, 528, 13, 4402, 2878, 362, 604, 1651, 420, 13570, 38619, 30, 1044, 291, 13], "avg_logprob": -0.600735299727496, "compression_ratio": 1.6458333333333333, "no_speech_prob": 3.534555435180664e-05, "words": [{"start": 2589.25, "end": 2589.39, "word": " and", "probability": 0.29833984375}, {"start": 2589.39, "end": 2589.49, "word": " we", "probability": 0.330322265625}, {"start": 2589.49, "end": 2589.63, "word": " understand", "probability": 0.32470703125}, {"start": 2589.63, "end": 2590.05, "word": " them.", "probability": 0.5927734375}, {"start": 2590.69, "end": 2590.83, "word": " And", "probability": 0.489990234375}, {"start": 2590.83, "end": 2591.05, "word": " then", "probability": 0.216064453125}, {"start": 2591.05, "end": 2591.23, "word": " you", "probability": 0.806640625}, {"start": 2591.23, "end": 2591.49, "word": " turn", "probability": 0.2406005859375}, {"start": 2591.49, "end": 2591.59, "word": " it", "probability": 0.60791015625}, {"start": 2591.59, "end": 2591.69, "word": " into", "probability": 0.8076171875}, {"start": 2591.69, "end": 2591.91, "word": " code.", "probability": 0.7734375}, {"start": 2591.95, "end": 2592.03, "word": " And", "probability": 0.51904296875}, {"start": 2592.03, "end": 2592.11, "word": " the", "probability": 0.49267578125}, {"start": 2592.11, "end": 2592.33, "word": " advantage", "probability": 0.356689453125}, {"start": 2592.33, "end": 2592.45, "word": " of", "probability": 0.7041015625}, {"start": 2592.45, "end": 2593.05, "word": " class", "probability": 0.29248046875}, {"start": 2593.05, "end": 2593.41, "word": " diagram", "probability": 0.630859375}, {"start": 2593.41, "end": 2593.41, "word": " these", "probability": 0.17529296875}, {"start": 2593.41, "end": 2593.41, "word": " days", "probability": 0.9296875}, {"start": 2593.41, "end": 2594.23, "word": " is", "probability": 0.71533203125}, {"start": 2594.23, "end": 2594.27, "word": " that", "probability": 0.802734375}, {"start": 2594.27, "end": 2594.53, "word": " it", "probability": 0.72021484375}, {"start": 2594.53, "end": 2594.81, "word": " shows", "probability": 0.67626953125}, {"start": 2594.81, "end": 2594.97, "word": " you", "probability": 0.4130859375}, {"start": 2594.97, "end": 2595.35, "word": " relationships", "probability": 0.607421875}, {"start": 2595.35, "end": 2595.51, "word": " and", "probability": 0.289794921875}, {"start": 2595.51, "end": 2595.69, "word": " you", "probability": 0.904296875}, {"start": 2595.69, "end": 2595.91, "word": " can", "probability": 0.4482421875}, {"start": 2595.91, "end": 2596.19, "word": " translate", "probability": 0.7109375}, {"start": 2596.19, "end": 2597.13, "word": " Java,", "probability": 0.48193359375}, {"start": 2597.45, "end": 2598.03, "word": " Python,", "probability": 0.87841796875}, {"start": 2598.31, "end": 2598.47, "word": " or", "probability": 0.2266845703125}, {"start": 2598.47, "end": 2598.81, "word": " PHP", "probability": 0.87158203125}, {"start": 2598.81, "end": 2598.97, "word": " into", "probability": 0.460205078125}, {"start": 2598.97, "end": 2599.11, "word": " any", "probability": 0.736328125}, {"start": 2599.11, "end": 2599.37, "word": " language.", "probability": 0.75634765625}, {"start": 2599.95, "end": 2600.15, "word": " This", "probability": 0.56982421875}, {"start": 2600.15, "end": 2600.17, "word": " is", "probability": 0.93359375}, {"start": 2600.17, "end": 2600.61, "word": " standard.", "probability": 0.7333984375}, {"start": 2600.97, "end": 2601.49, "word": " Today's", "probability": 0.49481201171875}, {"start": 2601.49, "end": 2601.77, "word": " concept", "probability": 0.55126953125}, {"start": 2601.77, "end": 2602.25, "word": " is", "probability": 0.87548828125}, {"start": 2602.25, "end": 2602.33, "word": " that", "probability": 0.387451171875}, {"start": 2602.33, "end": 2602.95, "word": " it", "probability": 0.375244140625}, {"start": 2602.95, "end": 2602.95, "word": " is", "probability": 0.52001953125}, {"start": 2602.95, "end": 2603.51, "word": " standard.", "probability": 0.488037109375}, {"start": 2604.69, "end": 2605.21, "word": " You", "probability": 0.479736328125}, {"start": 2605.21, "end": 2605.81, "word": " agree", "probability": 0.5927734375}, {"start": 2605.81, "end": 2606.01, "word": " on", "probability": 0.59130859375}, {"start": 2606.01, "end": 2606.29, "word": " it,", "probability": 0.74365234375}, {"start": 2606.69, "end": 2607.29, "word": " and", "probability": 0.6748046875}, {"start": 2607.29, "end": 2607.57, "word": " then", "probability": 0.671875}, {"start": 2607.57, "end": 2607.91, "word": " everyone", "probability": 0.2724609375}, {"start": 2607.91, "end": 2608.17, "word": " does", "probability": 0.42333984375}, {"start": 2608.17, "end": 2608.65, "word": " coding", "probability": 0.712890625}, {"start": 2608.65, "end": 2608.81, "word": " in", "probability": 0.5888671875}, {"start": 2608.81, "end": 2608.91, "word": " the", "probability": 0.7587890625}, {"start": 2608.91, "end": 2609.13, "word": " form", "probability": 0.320556640625}, {"start": 2609.13, "end": 2609.35, "word": " or", "probability": 0.7666015625}, {"start": 2609.35, "end": 2609.67, "word": " language", "probability": 0.60205078125}, {"start": 2609.67, "end": 2609.89, "word": " they", "probability": 0.4072265625}, {"start": 2609.89, "end": 2610.73, "word": " want.", "probability": 0.72998046875}, {"start": 2611.25, "end": 2611.65, "word": " Does", "probability": 0.69189453125}, {"start": 2611.65, "end": 2611.85, "word": " anyone", "probability": 0.8759765625}, {"start": 2611.85, "end": 2612.03, "word": " have", "probability": 0.92431640625}, {"start": 2612.03, "end": 2612.19, "word": " any", "probability": 0.740234375}, {"start": 2612.19, "end": 2612.41, "word": " questions", "probability": 0.71484375}, {"start": 2612.41, "end": 2612.53, "word": " or", "probability": 0.60888671875}, {"start": 2612.53, "end": 2612.85, "word": " inquiries?", "probability": 0.532470703125}, {"start": 2613.81, "end": 2614.33, "word": " Thank", "probability": 0.325927734375}, {"start": 2614.33, "end": 2614.41, "word": " you.", "probability": 0.95751953125}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2615.07775, "duration_after_vad": 2523.1462499999934} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/NVgnPaSjKJs.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/NVgnPaSjKJs.srt new file mode 100644 index 0000000000000000000000000000000000000000..28b2c26b64229d037fcb83861ecd0f95237455d3 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/NVgnPaSjKJs.srt @@ -0,0 +1,3037 @@ + +1 +00:00:05,160 --> 00:00:09,520 +طب يا جماعة السلام عليكم اليوم إن شاء الله يا + +2 +00:00:09,520 --> 00:00:13,460 +جماعة هنكمل ما تبقى من موضوع ال decorator pattern + +3 +00:00:13,460 --> 00:00:16,560 +ونبدأ إن شاء الله ب design pattern جديد اللي هو ال + +4 +00:00:16,560 --> 00:00:22,050 +proxy pattern Let's remind ourselves about the + +5 +00:00:22,050 --> 00:00:25,570 +decorator pattern We said that if I have any class + +6 +00:00:25,570 --> 00:00:28,670 +and I want to add a new functionality to it, I + +7 +00:00:28,670 --> 00:00:31,090 +have two ways The traditional way that we are used + +8 +00:00:31,090 --> 00:00:34,170 +to is the inheritance or subclassing way That is, + +9 +00:00:34,170 --> 00:00:36,050 +if a class wants to add new things to it, it will + +10 +00:00:36,050 --> 00:00:39,350 +extend it and add additional things to it And this + +11 +00:00:39,350 --> 00:00:42,250 +means that you don't need to rewrite the previous + +12 +00:00:42,250 --> 00:00:44,970 +things again, you only focus on the additional + +13 +00:00:44,970 --> 00:00:48,450 +things But let's say that the way of subclassing is + +14 +00:00:48,450 --> 00:00:51,970 +sometimes negative and produces explosion of + +15 +00:00:51,970 --> 00:00:57,970 +classes For example, let's say I have three + +16 +00:00:57,970 --> 00:01:00,450 +classes A, B, C I want to add functionality to these + +17 +00:01:00,450 --> 00:01:04,130 +three classes So you need to create three + +18 +00:01:04,130 --> 00:01:07,370 +subclasses to add functionality to these three + +19 +00:01:07,370 --> 00:01:11,190 +classes If you have two functionalities and you + +20 +00:01:11,190 --> 00:01:13,970 +want to add them to these three classes it means + +21 +00:01:13,970 --> 00:01:16,530 +that from each class you can make two subclasses + +22 +00:01:16,530 --> 00:01:19,190 +to add the first functionality or to add the + +23 +00:01:19,190 --> 00:01:22,490 +second functionality and see for example that if I + +24 +00:01:22,490 --> 00:01:25,210 +have shapes in the example given in the previous + +25 +00:01:25,210 --> 00:01:28,170 +lecture circle, rectangle and I want to add a + +26 +00:01:28,170 --> 00:01:31,590 +border to these shapes the traditional way is that + +27 +00:01:31,590 --> 00:01:34,510 +first we make a circle with border and you will + +28 +00:01:34,510 --> 00:01:36,690 +have to make another class called rectangle with + +29 +00:01:36,690 --> 00:01:40,010 +border this is using subclassing but we say that + +30 +00:01:40,010 --> 00:01:43,680 +the best way is to use the decorator It's the idea + +31 +00:01:43,680 --> 00:01:46,780 +that I'm making a class that encloses another + +32 +00:01:46,780 --> 00:01:50,640 +class The idea of the decorator is that I have + +33 +00:01:50,640 --> 00:01:54,120 +this class that I want to add something new to it + +34 +00:01:54,120 --> 00:01:59,460 +Actually, I create another class, this is the + +35 +00:01:59,460 --> 00:02:03,520 +decorator It encloses an object from the class + +36 +00:02:03,520 --> 00:02:06,420 +that I want to add something new to it For + +37 +00:02:06,420 --> 00:02:10,620 +example, this class or object has methods x and y + +38 +00:02:12,520 --> 00:02:16,120 +I will add a new method, all that I need to do is + +39 +00:02:16,120 --> 00:02:19,920 +to do here in this envelope, here there is x and y + +40 +00:02:19,920 --> 00:02:25,100 +I will add a new method, I will create a class + +41 +00:02:25,100 --> 00:02:30,080 +decorator containing an object inside it and here + +42 +00:02:30,080 --> 00:02:32,760 +I will add the new method to z and of course you + +43 +00:02:32,760 --> 00:02:37,690 +have to put here x and y to direct and this is the + +44 +00:02:37,690 --> 00:02:40,450 +negativity of the decorator because all the + +45 +00:02:40,450 --> 00:02:43,070 +methods inside must be done outside so that the + +46 +00:02:43,070 --> 00:02:46,610 +client sees the decorator as he sees the object + +47 +00:02:46,610 --> 00:02:50,850 +inside it wants to modify a certain method from + +48 +00:02:50,850 --> 00:02:54,450 +these you overwrite it, you add the extra code and + +49 +00:02:54,450 --> 00:02:57,150 +then you close the method inside and this is what + +50 +00:02:57,150 --> 00:03:00,130 +we did when we added a border to the circle + +51 +00:03:05,710 --> 00:03:11,130 +we created a class named border class border I + +52 +00:03:11,130 --> 00:03:14,390 +made it to implement I shape and I remove the + +53 +00:03:14,390 --> 00:03:17,090 +object from I shape why did I make it to take the + +54 +00:03:17,090 --> 00:03:19,190 +type of I shape? so that the client sees it as he + +55 +00:03:19,190 --> 00:03:21,950 +sees the circle and rectangle actually this border + +56 +00:03:21,950 --> 00:03:25,450 +is not a border to itself it is a border to a + +57 +00:03:25,450 --> 00:03:29,630 +shape in the end, the result is a new shape that + +58 +00:03:29,630 --> 00:03:34,560 +has a frame it wraps a shape So I'm actually + +59 +00:03:34,560 --> 00:03:39,000 +passing shape to it, and look here, the shape has + +60 +00:03:39,000 --> 00:03:41,040 +a draw method, you have to write it here, we wrote + +61 +00:03:41,040 --> 00:03:43,580 +the draw, and the shape has a describe method, we + +62 +00:03:43,580 --> 00:03:46,300 +also wrote the method describe, but inside it we + +63 +00:03:46,300 --> 00:03:50,680 +say shape.describe and the draw follows methods or + +64 +00:03:50,680 --> 00:03:52,480 +additional code, which is a personal border, then + +65 +00:03:52,480 --> 00:03:56,180 +we say shape.draw So this is a way to add + +66 +00:03:56,180 --> 00:04:00,300 +functionality using the decorator It has a + +67 +00:04:00,300 --> 00:04:02,360 +disadvantage that you will have to rewrite the + +68 +00:04:02,360 --> 00:04:06,300 +methods inside the object here and modify them or + +69 +00:04:06,300 --> 00:04:09,420 +redirect them to the methods inside it But its + +70 +00:04:09,420 --> 00:04:13,740 +advantage is that this decorator, for example the + +71 +00:04:13,740 --> 00:04:16,520 +border here, takes an object from it as a shape + +72 +00:04:18,020 --> 00:04:20,600 +Correct or not, guys? It means that it takes an + +73 +00:04:20,600 --> 00:04:22,820 +object from it and shapes it. It means that I can + +74 +00:04:22,820 --> 00:04:26,440 +give it a circle or a rectangle or any additional + +75 +00:04:26,440 --> 00:04:28,660 +shape that I want to give it. Because I want to + +76 +00:04:28,660 --> 00:04:32,060 +add a border to any shape that I have. So, if I + +77 +00:04:32,060 --> 00:04:35,200 +have 5 shapes and I want to add a border to all of + +78 +00:04:35,200 --> 00:04:38,780 +them, I actually create a class called border. + +79 +00:04:43,720 --> 00:04:47,120 +Now, based on this talk, let's go to the slides. + +80 +00:04:48,160 --> 00:04:51,880 +Let's read it. The intent of the border is to + +81 +00:04:51,880 --> 00:04:55,620 +attach additional responsibilities to an object + +82 +00:04:55,620 --> 00:04:57,340 +dynamically. Pay attention to the definition. + +83 +00:04:57,480 --> 00:05:00,020 +Every word has an importance. The first thing is + +84 +00:05:00,020 --> 00:05:03,700 +to attach additional responsibilities, adding new + +85 +00:05:03,700 --> 00:05:06,440 +responsibilities and functions to an object. + +86 +00:05:06,740 --> 00:05:09,400 +Notice that there is no space for class. What did + +87 +00:05:09,400 --> 00:05:13,980 +he say? To object, so I don't add functionality to + +88 +00:05:13,980 --> 00:05:17,520 +class Subclassing or inheritance is what adds to + +89 +00:05:17,520 --> 00:05:20,880 +the class You have a class and you extend it But + +90 +00:05:20,880 --> 00:05:24,640 +here I add functionality to object, how? Look with + +91 +00:05:24,640 --> 00:05:29,980 +me, when we used border, this is the method that I + +92 +00:05:29,980 --> 00:05:33,900 +add border to So first thing I create object from + +93 +00:05:33,900 --> 00:05:37,470 +where? From rectangle, I created the object from + +94 +00:05:37,470 --> 00:05:40,430 +rectangle without border at first I wanted to add + +95 +00:05:40,430 --> 00:05:43,330 +a border, I created an object from border and + +96 +00:05:43,330 --> 00:05:47,530 +passed it to rectangle So I actually added the new + +97 +00:05:47,530 --> 00:05:52,250 +functionality of border to rectangle object So I + +98 +00:05:52,250 --> 00:05:54,890 +added it to object, and this makes me able to add + +99 +00:05:54,890 --> 00:05:58,430 +it during runtime means that the object was created + +100 +00:05:58,430 --> 00:06:00,210 +first without borders and then borders were added + +101 +00:06:00,210 --> 00:06:03,410 +during runtime and this is the meaning of the + +102 +00:06:03,410 --> 00:06:05,550 +sentence attach responsibilities to an object + +103 +00:06:05,550 --> 00:06:13,290 +dynamically during runtime decorator provides a + +104 +00:06:13,290 --> 00:06:17,090 +flexible alternative substitute for subclassing + +105 +00:06:17,090 --> 00:06:20,130 +for extending functionality this is the meaning of + +106 +00:06:20,130 --> 00:06:23,670 +this sentence also known as wrapper Also the + +107 +00:06:23,670 --> 00:06:27,390 +decorator is called wrapper because it is like + +108 +00:06:27,390 --> 00:06:31,950 +wrapping another object Motivation for using it + +109 +00:06:31,950 --> 00:06:35,370 +for example we want to add properties such as + +110 +00:06:35,370 --> 00:06:38,690 +borders or scroll bars to a GUI component we can + +111 +00:06:38,690 --> 00:06:40,910 +do this with inheritance but this limits our + +112 +00:06:40,910 --> 00:06:44,390 +flexibility a better way is to use composition as + +113 +00:06:44,390 --> 00:06:48,950 +I said I have a GUI component TextView, TextArea, + +114 +00:06:49,250 --> 00:06:55,390 +I want to add border or scrollbar I have 20 GUI + +115 +00:06:55,390 --> 00:06:56,990 +shapes, I want to make them border, I will not + +116 +00:06:56,990 --> 00:07:00,130 +make 20 subclasses, I will make one object called + +117 +00:07:00,130 --> 00:07:04,130 +border that covers any one of the UI components to + +118 +00:07:04,130 --> 00:07:06,790 +add border to it and the same thing if I want to + +119 +00:07:06,790 --> 00:07:09,110 +make a scrollbar for these shapes, I do not need + +120 +00:07:09,110 --> 00:07:13,030 +to make 20 subclasses to add a scrollbar to each + +121 +00:07:13,030 --> 00:07:15,670 +one of the shapes I only make a class called + +122 +00:07:15,670 --> 00:07:19,290 +scrollbar which is a decorator that wraps the UI + +123 +00:07:19,290 --> 00:07:25,090 +component The + +124 +00:07:25,090 --> 00:07:27,170 +decorator object is designed to have the same + +125 +00:07:27,170 --> 00:07:31,890 +interface as the underlying object The decorator, + +126 +00:07:32,730 --> 00:07:35,710 +for example, let's make it a shape and it takes a + +127 +00:07:35,710 --> 00:07:39,070 +shape Why? Because in the end, the client wants to + +128 +00:07:39,070 --> 00:07:40,790 +see the decorator as he is, as any other shape. + +129 +00:07:42,190 --> 00:07:44,090 +It's true that it's called border, but it really + +130 +00:07:44,090 --> 00:07:48,240 +looks like a border. So the client has to deal with + +131 +00:07:48,240 --> 00:07:50,540 +it the same way he deals with any other object + +132 +00:07:50,540 --> 00:07:55,880 +This allows a client object to interact with the + +133 +00:07:55,880 --> 00:07:58,660 +decorator object in exactly the same manner as it + +134 +00:07:58,660 --> 00:08:01,500 +would with the underlying actual object So as we + +135 +00:08:01,500 --> 00:08:04,340 +said, it deals with the decorator object exactly + +136 +00:08:04,340 --> 00:08:07,620 +the same way it deals with the object that covers + +137 +00:08:07,620 --> 00:08:10,770 +the decorator object The decorator objects contains + +138 +00:08:10,770 --> 00:08:17,850 +a reference to the actual object. The decorator + +139 +00:08:17,850 --> 00:08:20,450 +object receives all request calls from a client. + +140 +00:08:20,970 --> 00:08:23,750 +It in turn forwards these calls to the underlying + +141 +00:08:23,750 --> 00:08:27,730 +object. The same thing that we said that the + +142 +00:08:27,730 --> 00:08:31,210 +decorator should forward the request to the + +143 +00:08:31,210 --> 00:08:33,250 +underlying object. What is the underlying object? + +144 +00:08:33,310 --> 00:08:36,170 +It is the internal object. Like here for example, + +145 +00:08:36,250 --> 00:08:40,130 +I need to call x and y inside. I have to call x and + +146 +00:08:40,130 --> 00:08:44,010 +y under the decorator, and this object is called + +147 +00:08:44,010 --> 00:08:49,010 +dot. Just like when we made the border, we didn't + +148 +00:08:49,010 --> 00:08:53,430 +use the method getDescription() and inside it we + +149 +00:08:53,430 --> 00:08:57,310 +called shape to describe, and the same thing to + +150 +00:08:57,310 --> 00:08:59,630 +draw, we called shape to draw inside it. So this + +151 +00:08:59,630 --> 00:09:04,010 +is what makes the discourse forward to the + +152 +00:09:04,010 --> 00:09:07,920 +underlying object. The last point is the decorator + +153 +00:09:07,920 --> 00:09:11,800 +objects add some additional functionality before + +154 +00:09:11,800 --> 00:09:14,040 +or after forwarding a request to the underlying + +155 +00:09:14,040 --> 00:09:17,080 +object. Why did I create the decorator? Not just + +156 +00:09:17,080 --> 00:09:19,360 +to change the commands and that's it, but to add + +157 +00:09:19,360 --> 00:09:23,540 +new things. For example, in the border, before I + +158 +00:09:23,540 --> 00:09:26,960 +change the call to method draw, look here, this is + +159 +00:09:26,960 --> 00:09:29,300 +the class border that we explained in the previous + +160 +00:09:29,300 --> 00:09:32,460 +lecture, and it has method draw, and from inside + +161 +00:09:32,460 --> 00:09:35,820 +it I'm looking for shape dot draw. But before you + +162 +00:09:35,820 --> 00:09:38,920 +call shape.draw, you have to run the code that + +163 +00:09:38,920 --> 00:09:44,060 +sends me the border This is the code that puts the + +164 +00:09:44,060 --> 00:09:47,540 +border settings, then I say shape.draw This is the + +165 +00:09:47,540 --> 00:09:52,780 +additional code that I created this decorator for + +166 +00:09:52,780 --> 00:09:59,220 +I call it, then I say shape.draw And this is the + +167 +00:09:59,220 --> 00:09:59,660 +last sentence + +168 +00:10:05,300 --> 00:10:08,200 +Add some additional functionality before or after + +169 +00:10:08,200 --> 00:10:10,500 +forwarding request to the underlying object This + +170 +00:10:10,500 --> 00:10:12,620 +ensures that the additional functionality can be + +171 +00:10:12,620 --> 00:10:15,760 +added to a given object externally at runtime + +172 +00:10:15,760 --> 00:10:19,260 +without modifying its structure Meaning that the + +173 +00:10:19,260 --> 00:10:21,160 +functionality is added during the runtime without + +174 +00:10:21,160 --> 00:10:25,640 +having to do subclassing and so on When do you use + +175 +00:10:25,640 --> 00:10:27,900 +applicability? To add responsibilities to + +176 +00:10:27,900 --> 00:10:30,100 +individual objects dynamically without affecting + +177 +00:10:30,100 --> 00:10:32,320 +other objects Meaning that I have objects that I + +178 +00:10:32,320 --> 00:10:35,650 +want to add to them new functionalities during the + +179 +00:10:35,650 --> 00:10:38,730 +runtime For example, I have a rectangle, I want to + +180 +00:10:38,730 --> 00:10:41,130 +add it to my functionalities, I created an object + +181 +00:10:41,130 --> 00:10:43,410 +from the rectangle, then I create a border and + +182 +00:10:43,410 --> 00:10:45,930 +wrap the object in it from a rectangle So the + +183 +00:10:45,930 --> 00:10:48,090 +rectangle now, I created it in the first place, it + +184 +00:10:48,090 --> 00:10:49,890 +was a normal object without borders, then I added + +185 +00:10:49,890 --> 00:10:50,310 +it to it + +186 +00:10:53,790 --> 00:10:56,050 +Also when we use the decorator when the + +187 +00:10:56,050 --> 00:11:00,630 +subclassing is impractical + +188 +00:11:00,630 --> 00:11:04,770 +When + +189 +00:11:04,770 --> 00:11:10,770 +you notice that the subclassing produces from it a + +190 +00:11:10,770 --> 00:11:13,130 +large number of classes, an explosion of classes, + +191 +00:11:13,190 --> 00:11:15,910 +you avoid using the subclasses and resort to the + +192 +00:11:15,910 --> 00:11:16,370 +decorator + +193 +00:11:20,360 --> 00:11:22,840 +Okay, this is today's diagram of the decorator + +194 +00:11:22,840 --> 00:11:24,940 +pattern, let's see it and follow the example we + +195 +00:11:24,940 --> 00:11:29,260 +explained in the previous lecture Okay, first of + +196 +00:11:29,260 --> 00:11:32,100 +all, I have an interface which is a component, and + +197 +00:11:32,100 --> 00:11:35,020 +I have a shape which is a concrete component What + +198 +00:11:35,020 --> 00:11:37,2 + +223 +00:12:53,690 --> 00:12:56,890 +object from the rectangle or circle outside and + +224 +00:12:56,890 --> 00:13:00,790 +then we pass it to the decorator Because the idea + +225 +00:13:00,790 --> 00:13:02,750 +of ​​the decorator is to add functionalities to + +226 +00:13:02,750 --> 00:13:05,590 +the existing objects So I create the object in the + +227 +00:13:05,590 --> 00:13:10,170 +first place and pass it to the decorator So this + +228 +00:13:10,170 --> 00:13:14,210 +is supposed to be what guys? Extended, not fixed + +229 +00:13:14,210 --> 00:13:20,300 +like that Okay guys?Okay, now there is also a + +230 +00:13:20,300 --> 00:13:22,540 +slight difference from what I did here I made a + +231 +00:13:22,540 --> 00:13:26,920 +class named decorator and then when it likes to + +232 +00:13:26,920 --> 00:13:30,480 +add functionalities, I made extend to whom? this + +233 +00:13:30,480 --> 00:13:34,200 +is an abstract class, I can't create an object + +234 +00:13:34,200 --> 00:13:35,980 +from it why did I make it? so that it creates a + +235 +00:13:35,980 --> 00:13:39,520 +constructor in it, it is not a constructor, it + +236 +00:13:39,520 --> 00:13:43,400 +takes object from it as a component because I + +237 +00:13:43,400 --> 00:13:45,460 +wanted to add a decorator to make a border for + +238 +00:13:45,460 --> 00:13:48,110 +example I go and create a new class for example + +239 +00:13:48,110 --> 00:13:51,670 +border decorator and I tell it to extend main + +240 +00:13:51,670 --> 00:13:54,670 +decorator The advantage here is that the + +241 +00:13:54,670 --> 00:13:58,690 +constructor you have to create a constructor here + +242 +00:13:58,690 --> 00:14:01,730 +and add the function that says do operation that + +243 +00:14:01,730 --> 00:14:03,910 +changes what you want it to do or do additional + +244 +00:14:03,910 --> 00:14:06,870 +operations So the difference from what you did, of + +245 +00:14:06,870 --> 00:14:10,060 +course when I came and created border I didn't make + +246 +00:14:10,060 --> 00:14:12,960 +a class decorator, I made a border from it. I made + +247 +00:14:12,960 --> 00:14:16,660 +a border right away, okay? Implement this and use + +248 +00:14:16,660 --> 00:14:20,540 +whose component? I want to make a scroll bar, I + +249 +00:14:20,540 --> 00:14:22,700 +want to make another class, implement this and use + +250 +00:14:22,700 --> 00:14:25,680 +a component. He doesn't, he tells you to make an + +251 +00:14:25,680 --> 00:14:30,170 +abstract class called decorator and from it make a + +252 +00:14:30,170 --> 00:14:34,190 +border and a scroll bar same thing but here the + +253 +00:14:34,190 --> 00:14:37,230 +advantage is that when you make extend for this + +254 +00:14:37,230 --> 00:14:39,650 +class it will force you to put the constructor + +255 +00:14:39,650 --> 00:14:43,010 +that you want to pass as a component but when you + +256 +00:14:43,010 --> 00:14:48,170 +make a class for each decorator + +257 +00:14:48,170 --> 00:14:50,850 +class you have to put the constructor that you + +258 +00:14:50,850 --> 00:14:52,650 +want to pass as a component with which language + +259 +00:14:52,650 --> 00:14:59,660 +guys?Okay, it is similar or not different from the + +260 +00:14:59,660 --> 00:15:04,480 +code that we did Okay, + +261 +00:15:04,580 --> 00:15:07,520 +here they give us an example that is very similar + +262 +00:15:07,520 --> 00:15:12,100 +to what we talked about to convince me why the + +263 +00:15:12,100 --> 00:15:14,780 +decorator is necessary because you have text view + +264 +00:15:16,010 --> 00:15:19,870 +GUI component And if you want to add new features + +265 +00:15:19,870 --> 00:15:21,150 +to the TextView What are the new features that we + +266 +00:15:21,150 --> 00:15:24,330 +want to add? First, we want to add a border to the + +267 +00:15:24,330 --> 00:15:29,350 +TextView And we can add a plain border, 3D border, + +268 +00:15:29,550 --> 00:15:31,130 +or fancy border to the TextView These are + +269 +00:15:31,130 --> 00:15:36,090 +different types of borders We can also add a + +270 +00:15:36,090 --> 00:15:39,590 +scroll bar Horizontal scroll bar, vertical scroll + +271 +00:15:39,590 --> 00:15:43,610 +bar, or vertical and horizontal scroll bar + +272 +00:15:45,710 --> 00:15:50,710 +Actually, you can have a text view with border + +273 +00:15:50,710 --> 00:15:55,110 +only, and you can have a text view with scroll bar + +274 +00:15:55,110 --> 00:15:58,010 +and you can have a text view with scroll bar and + +275 +00:15:58,010 --> 00:16:02,030 +border. Right or wrong? You can control it as you + +276 +00:16:02,030 --> 00:16:05,910 +want. Because in this case, if you want to do it + +277 +00:16:05,910 --> 00:16:09,310 +in subclassing, you have to make every existing + +278 +00:16:09,310 --> 00:16:13,000 +possibility Subclass, for example, I want to create + +279 +00:16:13,000 --> 00:16:17,780 +a TextView with a plane border So what do you do? + +280 +00:16:17,880 --> 00:16:21,360 +You go to the TextView and extend it to a class + +281 +00:16:21,360 --> 00:16:25,600 +called TextViewPlane So that you can override the + +282 +00:16:25,600 --> 00:16:30,180 +draw method to draw the border and say super dot + +283 +00:16:30,180 --> 00:16:35,720 +draw This is if I want to use the subclass Okay, + +284 +00:16:35,800 --> 00:16:37,720 +this is just the only possibility I have, what + +285 +00:16:37,720 --> 00:16:41,200 +else do I have? 3D border and fancy border. What + +286 +00:16:41,200 --> 00:16:44,680 +does each person want? Subclass. So these people + +287 +00:16:44,680 --> 00:16:47,060 +need three subclasses to make a text view with + +288 +00:16:47,060 --> 00:16:50,100 +plain border, fancy border and 3D border. Okay, + +289 +00:16:50,240 --> 00:16:53,140 +are these just the possibilities that exist? No, I + +290 +00:16:53,140 --> 00:16:56,400 +have other possibilities. Because Scrollbar needs + +291 +00:16:56,400 --> 00:16:59,420 +a text view with a scrollbar. The scrollbar is a + +292 +00:16:59,420 --> 00:17:02,860 +new component that needs to be created To create a + +293 +00:17:02,860 --> 00:17:04,960 +scrollbar, you need to create a new class TextView + +294 +00:17:04,960 --> 00:17:08,860 +.HorizontalExtendedTextView So that when it draws, + +295 +00:17:09,060 --> 00:17:13,060 +it draws a horizontal scrollbar And another + +296 +00:17:13,060 --> 00:17:16,240 +possibility is vertical, I have a vertical and a + +297 +00:17:16,240 --> 00:17:19,280 +horizontal Each one needs a class if it depends on + +298 +00:17:19,280 --> 00:17:21,560 +the subclass And then sometimes you need to create + +299 +00:17:21,560 --> 00:17:26,120 +a border with the TextView of any of the three + +300 +00:17:26,930 --> 00:17:30,710 +Borders that I have with scroll bar So you have to + +301 +00:17:30,710 --> 00:17:33,790 +put all possibilities For example, text view with + +302 +00:17:33,790 --> 00:17:38,790 +plane, border with horizontal, scroll bar Text + +303 +00:17:38,790 --> 00:17:42,290 +view with plane, border with vertical, scroll bar + +304 +00:17:42,290 --> 00:17:45,030 +Text view with plane, with horizontal, vertical, + +305 +00:17:45,530 --> 00:17:47,330 +scroll bar All of this needs subclassing, so here + +306 +00:17:47,330 --> 00:17:52,330 +I don't have a lot of subclassing The solution is + +307 +00:17:52,330 --> 00:17:55,210 +how to improve this design using the decorator + +308 +00:17:55,210 --> 00:17:58,250 +pattern. Because this is the new design that I + +309 +00:17:58,250 --> 00:18:01,610 +want to make using the decorator pattern. Now I + +310 +00:18:01,610 --> 00:18:04,730 +say, wait a minute, now you have a few new + +311 +00:18:04,730 --> 00:18:07,930 +features, let's count them. I have a plain border, + +312 +00:18:08,850 --> 00:18:14,070 +fancy, 3D, right? These three. Then I have scroll + +313 +00:18:14,070 --> 00:18:18,770 +bar, horizontal, vertical and horizontal-vertical. + +314 +00:18:19,370 --> 00:18:23,310 +It means 6 additional functionalities So I tell + +315 +00:18:23,310 --> 00:18:28,070 +them to make 6 classes out of them and each one of + +316 +00:18:28,070 --> 00:18:34,850 +them is a decorator So notice that this TextView + +317 +00:18:34,850 --> 00:18:38,250 +is a type of component I will make a super + +318 +00:18:38,250 --> 00:18:41,910 +abstract class called decorator Implement the + +319 +00:18:41,910 --> 00:18:44,150 +component and use a component inside it Notice + +320 +00:18:44,150 --> 00:18:48,030 +that it fixed the parameter because in the end, I + +321 +00:18:48,030 --> 00:18:50,350 +will create a text view and pass it to whom? to + +322 +00:18:50,350 --> 00:18:53,190 +the decorator and then this decorator, of course + +323 +00:18:53,190 --> 00:18:56,210 +it is his job this decorator, I will put the + +324 +00:18:56,210 --> 00:18:58,890 +constructor in it only on the basis of it, I will + +325 +00:18:58,890 --> 00:19:02,970 +create two subclasses border and scrollbar and + +326 +00:19:02,970 --> 00:19:07,350 +both extend from which? the border the decorator, + +327 +00:19:07,470 --> 00:19:09,790 +excuse me so really, when I create an object from + +328 +00:19:09,790 --> 00:19:12,690 +a border like this, I will pass it to whom? text + +329 +00:19:12,690 --> 00:19:17,050 +view And then from the border, he made a plain + +330 +00:19:17,050 --> 00:19:19,810 +border and a 3D border and on the basis of all the + +331 +00:19:19,810 --> 00:19:23,530 +borders, they can have common features. For + +332 +00:19:23,530 --> 00:19:25,370 +example, the color of the line, its size, where + +333 +00:19:25,370 --> 00:19:28,050 +did he put them? In the class border. And the same + +334 +00:19:28,050 --> 00:19:30,070 +thing, in the scroll bar, there are common + +335 +00:19:30,070 --> 00:19:32,030 +features for action and events that happen and so + +336 +00:19:32,030 --> 00:19:36,410 +on. He made a superclass and they made a subclass. + +337 +00:19:37,390 --> 00:19:39,270 +Regardless of the fact that all these subclasses + +338 +00:19:39,270 --> 00:19:43,920 +remain the same type, How to use them? For + +339 +00:19:43,920 --> 00:19:51,120 +example, I want to create a text view and put a + +340 +00:19:51,120 --> 00:19:54,820 +plain border on it. What do you have to do? You + +341 +00:19:54,820 --> 00:19:57,820 +have to simply create a text view. + +342 +00:20:06,790 --> 00:20:09,050 +TextView, we created it, we want it to have a + +343 +00:20:09,050 --> 00:20:11,770 +Plane Border, all prisms have to have a Plane + +344 +00:20:11,770 --> 00:20:16,570 +Border This + +345 +00:20:16,570 --> 00:20:25,570 +is PB equals New Plane Border And I pass it to + +346 +00:20:25,570 --> 00:20:29,950 +whom? The V And then what do I draw with the + +347 +00:20:29,950 --> 00:20:33,250 +screen? This Right? Because this is a kind of + +348 +00:20:33,250 --> 00:20:37,460 +shape, this is a kind of component in the end Okay, + +349 +00:20:37,560 --> 00:20:40,160 +I want to create a TextView with a Horizontal + +350 +00:20:40,160 --> 00:20:42,620 +Scrollbar. Nothing else, just a Horizontal + +351 +00:20:42,620 --> 00:20:48,320 +Scrollbar and a TextView. Another nice point is + +352 +00:20:48,320 --> 00:20:50,960 +that you can add more than one TextView + +353 +00:20:50,960 --> 00:20:53,480 +functionality together. For example, I want to + +354 +00:20:53,480 --> 00:20:59,040 +create a TextView with a 3D Border and a + +355 +00:20:59,040 --> 00:21:03,600 +Horizontal-Vertical Scrollbar. What does it do? It + +356 +00:21:03,600 --> 00:21:06,860 +simply covers the object with both. For example, + +357 +00:21:07,480 --> 00:21:10,580 +what did I ask for? I asked for a TextView with a + +358 +00:21:10,580 --> 00:21:13,560 +3D border and a horizontal-vertical scrollbar. + +359 +00:21:13,800 --> 00:21:18,020 +This is the V. The first thing it does is create a + +360 +00:21:18,020 --> 00:21:23,820 +3D border. It creates a new 3D border. What does + +361 +00:21:23,820 --> 00:21:31,760 +it create? The V. Then it creates a new HV + +362 +00:21:31,760 --> 00:21:36,040 +scrollbar. + +363 +00:21:36,820 --> 00:21:41,140 +Look, new HV scrollbar, and this one I passed to + +364 +00:21:41,140 --> 00:21:46,260 +it, new 3D portal, and this one I passed to it, + +365 +00:21:46,640 --> 00:21:49,700 +the V. This is the benefit that this one is also a + +366 +00:21:49,700 --> 00:21:54,420 +component, that the HV scrollbar will take a + +367 +00:21:54,420 --> 00:21:56,960 +component, right or wrong, not in the end, this + +368 +00:21:56,960 --> 00:22:01,000 +one, any one of these, the parameter follows and + +369 +00:22:01,000 --> 00:22:04,700 +becomes a component. So when you have a 3D border + +370 +00:22:04,700 --> 00:22:08,920 +component, you can call it HVScrollbar. Do you see + +371 +00:22:08,920 --> 00:22:11,520 +how I created it? In the end, when I draw any + +372 +00:22:11,520 --> 00:22:14,400 +shape, for example, this is the new HVScrollbar + +373 +00:22:14,400 --> 00:22:17,340 +named O, the object. In the end, when I draw this, + +374 +00:22:17,360 --> 00:22:20,780 +what do I call it? I call it O dot draw. And + +375 +00:22:20,780 --> 00:22:26,840 +actually, for this draw, whose O dot draw belongs + +376 +00:22:26,840 --> 00:22:30,380 +to? The scrollbar. So there will be a code that + +377 +00:22:30,380 --> 00:22:35,520 +draws what? the scroll bar and from inside it + +378 +00:22:35,520 --> 00:22:39,860 +calls the draw of the border for example let's + +379 +00:22:39,860 --> 00:22:43,000 +call it O2 this is O1 and this is O2 so O1 dot + +380 +00:22:43,000 --> 00:22:45,760 +draw will execute the code to draw the scroll bar + +381 +00:22:45,760 --> 00:22:50,460 +and it will go to O2 dot draw right? this is the + +382 +00:22:50,460 --> 00:22:56,380 +draw of the border and the draw of the border will + +383 +00:22:56,380 --> 00:23:02,480 +execute the code to draw the meme draw border And + +384 +00:23:02,480 --> 00:23:06,800 +then you will go and copy the V You will see that + +385 +00:23:06,800 --> 00:23:11,100 +they overlap each other So see how easy it is to + +386 +00:23:11,100 --> 00:23:16,000 +add two functionalities to an object and wrap it + +387 +00:23:16,000 --> 00:23:22,540 +twice Now there is homework that I will add to the + +388 +00:23:22,540 --> 00:23:24,860 +decorator Did you see the example that we + +389 +00:23:24,860 --> 00:23:26,660 +explained? We will discuss what we did in our + +390 +00:23:26,660 --> 00:23:28,900 +example I want to add a border that does not have + +391 +00:23:28,900 --> 00:23:30,320 +a shape, that is a circle and rectangle And we + +392 +00:23:30,320 --> 00:23:33,200 +made a class called border I would like to add a + +393 +00:23:33,200 --> 00:23:35,080 +new functionality, which is that we make the shape + +394 +00:23:35,080 --> 00:23:41,120 +constant. For example, when we draw a circle, we + +395 +00:23:41,120 --> 00:23:43,620 +can draw a circle that is filled with green and + +396 +00:23:43,620 --> 00:23:49,940 +has a circle in red. This filling is a new + +397 +00:23:49,940 --> 00:23:53,690 +functionality. I'm not going to make a solid circle + +398 +00:23:53,690 --> 00:23:55,470 +and extend circle to fill it up because that's how + +399 +00:23:55,470 --> 00:23:58,070 +I'm going to force Ash to make a solid circle, + +400 +00:23:58,190 --> 00:24:01,030 +solid rectangle, solid triangle, solid whatever. + +401 +00:24:01,930 --> 00:24:04,970 +No. We're going to add this solid property as + +402 +00:24:04,970 --> 00:24:07,650 +what? As a decorator. So you're going to make a + +403 +00:24:07,650 --> 00:24:11,250 +class called solid. What's its idea? That it + +404 +00:24:11,250 --> 00:24:16,450 +covers a shape. Okay? And we have a draw. You fill + +405 +00:24:16,450 --> 00:24:20,830 +it up and then you draw on it. Think about how you + +406 +00:24:20,830 --> 00:24:27,730 +do it. I can also tell you to add two features to + +407 +00:24:27,730 --> 00:24:31,210 +the shape. It should have a border and should be + +408 +00:24:31,210 --> 00:24:35,590 +fixed. So you use a method like this. For example, + +409 +00:24:35,670 --> 00:24:37,470 +you make a circle and you cover it with a border. + +410 +00:24:40,290 --> 00:24:43,610 +solid. Of course, if we change the order, it will + +411 +00:24:43,610 --> 00:24:45,710 +make a difference. If we put the V and change it + +412 +00:24:45,710 --> 00:24:48,890 +to HV School bar and then 3 border, it will not + +413 +00:24:48,890 --> 00:24:55,030 +make a difference. It will only execute this + +414 +00:24:55,030 --> 00:2 + +445 +00:26:38,210 --> 00:26:40,810 +lecture about the input stream and output stream. + +446 +00:26:41,270 --> 00:26:44,290 +Actually, I create a decorator that wraps another + +447 +00:26:44,290 --> 00:26:47,530 +object to add additional functionality to it. Last + +448 +00:26:47,530 --> 00:26:48,990 +time, we explained that in the output stream, + +449 +00:26:49,250 --> 00:26:51,290 +there is a method that writes bytes. And this is + +450 +00:26:51,290 --> 00:26:53,810 +not appropriate if I want to write a string. Okay? + +451 +00:26:54,030 --> 00:26:56,170 +So, actually, we wrapped it in another object + +452 +00:26:56,170 --> 00:26:59,540 +called PrintWriter. It takes an object of type + +453 +00:26:59,540 --> 00:27:02,180 +FileOutputString And in PrintWriter, we added an + +454 +00:27:02,180 --> 00:27:04,940 +additional method which is Println() Which + +455 +00:27:04,940 --> 00:27:07,960 +actually takes a string, converts it into bytes + +456 +00:27:07,960 --> 00:27:12,170 +and calls writeBytes() from the inner object So + +457 +00:27:12,170 --> 00:27:14,850 +when you used to stock up on files and create an + +458 +00:27:14,850 --> 00:27:16,410 +out of stream file and wrap it with a print writer + +459 +00:27:16,410 --> 00:27:18,670 +or an out of stream object and wrap it with an out + +460 +00:27:18,670 --> 00:27:20,590 +of stream file and wrap it with an out of stream + +461 +00:27:20,590 --> 00:27:21,850 +object, you were actually implementing the + +462 +00:27:21,850 --> 00:27:25,030 +property of the decorator, wrapping objects inside + +463 +00:27:25,030 --> 00:27:28,090 +objects to add additional functionality to help + +464 +00:27:28,090 --> 00:27:31,070 +you in writing or reading objects. + +465 +00:27:33,070 --> 00:27:34,950 +Okay, so this is what we talked about last time. + +466 +00:27:39,470 --> 00:27:43,450 +The last point is a quick comparison between the + +467 +00:27:43,450 --> 00:27:46,750 +decorator pattern and inheritance or subclassing. + +468 +00:27:46,750 --> 00:27:50,970 +In the decorator used to extend the functionality + +469 +00:27:50,970 --> 00:27:54,530 +of a particular object But in the inheritance used + +470 +00:27:54,530 --> 00:27:56,770 +to extend the functionality of a class of objects + +471 +00:27:56,770 --> 00:28:01,230 +You do here extend the class, you add a new code + +472 +00:28:01,230 --> 00:28:03,970 +But here you add the functionality of the existing + +473 +00:28:03,970 --> 00:28:08,390 +object. You create the object and then you add the + +474 +00:28:08,390 --> 00:28:12,670 +function to wrap it in the decorator. It does not + +475 +00:28:12,670 --> 00:28:14,090 +require subclassing, this one requires + +476 +00:28:14,090 --> 00:28:15,990 +subclassing, this one is dynamic and this one is + +477 +00:28:15,990 --> 00:28:20,910 +static So here you have to create the class Before + +478 +00:28:20,910 --> 00:28:24,450 +you run the program. Here, during the runtime, you + +479 +00:28:24,450 --> 00:28:28,050 +create the object and wrap it directly. The + +480 +00:28:28,050 --> 00:28:31,350 +functionality is added during the runtime. And this + +481 +00:28:31,350 --> 00:28:34,010 +means that runtime assignment of responsibilities + +482 +00:28:34,010 --> 00:28:36,570 +and here compile-time assignment of + +483 +00:28:36,570 --> 00:28:40,470 +responsibilities Prevents the proliferation of + +484 +00:28:40,470 --> 00:28:42,370 +subclasses. What is proliferation? It is the + +485 +00:28:42,370 --> 00:28:44,490 +proliferation of subclasses. It prevents the + +486 +00:28:44,490 --> 00:28:47,150 +exclusion of classes that we talked about in the + +487 +00:28:47,150 --> 00:28:51,150 +previous lecture, but in inheritance it could lead + +488 +00:28:51,150 --> 00:28:54,310 +to numerous subclasses. It could lead to a large + +489 +00:28:54,310 --> 00:28:57,470 +number of subclasses. More flexible, still + +490 +00:28:57,470 --> 00:28:59,510 +flexible, of course. I'm not with this statement at + +491 +00:28:59,510 --> 00:29:02,210 +all. We said that in the normal situation you + +492 +00:29:02,210 --> 00:29:05,670 +always resort to subclassing except if you notice + +493 +00:29:05,670 --> 00:29:08,210 +that it produces a large number of subclasses so + +494 +00:29:08,210 --> 00:29:09,850 +you stay on the decorator. + +495 +00:29:12,640 --> 00:29:15,040 +Possible to have different decorator objects for a + +496 +00:29:15,040 --> 00:29:18,120 +given object simultaneously, meaning that the + +497 +00:29:18,120 --> 00:29:20,360 +object itself can have more than one decorator to + +498 +00:29:20,360 --> 00:29:23,080 +add more features to it, but in the case of + +499 +00:29:23,080 --> 00:29:25,740 +subclassing, each feature has to have an + +500 +00:29:25,740 --> 00:29:30,540 +additional subclass. Easy to add a combination of + +501 +00:29:30,540 --> 00:29:32,960 +capabilities, to add more than one capability at + +502 +00:29:32,960 --> 00:29:35,140 +the same time, but here it is difficult because + +503 +00:29:35,140 --> 00:29:37,240 +each feature needs an additional subclass. + +504 +00:29:41,540 --> 00:29:44,160 +Ok guys, now we have finished the decorator + +505 +00:29:44,160 --> 00:29:48,700 +pattern Now we are going to talk about another + +506 +00:29:48,700 --> 00:29:52,860 +design pattern similar to the decorator pattern + +507 +00:29:52,860 --> 00:29:57,260 +But + +508 +00:29:57,260 --> 00:30:04,100 +it has another use. The + +509 +00:30:04,100 --> 00:30:05,980 +design pattern that we are going to talk about is + +510 +00:30:05,980 --> 00:30:10,360 +called proxy pattern. The word proxy has been used + +511 +00:30:13,410 --> 00:30:16,610 +Yes, I took the networks, okay? I still haven't + +512 +00:30:16,610 --> 00:30:18,670 +taken the networks. Now, in the networks, there is + +513 +00:30:18,670 --> 00:30:22,530 +a concept called the proxy server. Simply put, the + +514 +00:30:22,530 --> 00:30:26,090 +proxy server, when I have a user who uses the + +515 +00:30:26,090 --> 00:30:28,870 +internet, and here is the internet provider, this + +516 +00:30:28,870 --> 00:30:32,910 +is the internet service provider, okay? Usually, + +517 +00:30:33,050 --> 00:30:34,950 +when I connect to the internet service provider, I + +518 +00:30:34,950 --> 00:30:39,050 +have a proxy. This internet service provider can be + +519 +00:30:39,050 --> 00:30:41,390 +the main unit in the network that provides + +520 +00:30:41,390 --> 00:30:45,790 +internet service and internet companies are not + +521 +00:30:45,790 --> 00:30:47,670 +the ones that provide internet service. Internet + +522 +00:30:47,670 --> 00:30:50,150 +companies actually take the line from the internet + +523 +00:30:50,150 --> 00:30:54,190 +service provider and I connect to their server + +524 +00:30:54,190 --> 00:30:58,250 +because their server is like a proxy. It is not + +525 +00:30:58,250 --> 00:31:00,070 +them that provides internet service, it is them + +526 +00:31:00,070 --> 00:31:01,810 +that connects me to the internet. There is a + +527 +00:31:01,810 --> 00:31:03,830 +difference between the two words. This is the + +528 +00:31:03,830 --> 00:31:05,770 +source of the internet and this is just a + +529 +00:31:05,770 --> 00:31:10,300 +connection. But through this server, he controls it. + +530 +00:31:11,000 --> 00:31:14,380 +Here, I add the existing restrictions, such as the + +531 +00:31:14,380 --> 00:31:18,000 +speed of my communication, the date of the + +532 +00:31:18,000 --> 00:31:21,160 +subscription, what I am allowed to do, what are my + +533 +00:31:21,160 --> 00:31:24,300 +rights, everything is controlled through the + +534 +00:31:24,300 --> 00:31:27,460 +server. This is what we call the proxy server, + +535 +00:31:28,020 --> 00:31:28,560 +which is the literal translation of the word + +536 +00:31:28,560 --> 00:31:32,900 +proxy, the agent, or in our language, we call it + +537 +00:31:32,900 --> 00:31:34,240 +the intermediary, for example, because it comes + +538 +00:31:34,240 --> 00:31:37,020 +from somewhere in between the two. So, actually, + +539 +00:31:37,180 --> 00:31:41,900 +the proxy does control. What does control mean? It + +540 +00:31:41,900 --> 00:31:46,980 +means to control. Ok? Now, the term proxy server + +541 +00:31:46,980 --> 00:31:49,240 +was actually born in the networks. Now, the same + +542 +00:31:49,240 --> 00:31:52,560 +concept that I do something in the middle that is + +543 +00:31:52,560 --> 00:31:56,440 +controlled by me in terms of internet + +544 +00:31:56,440 --> 00:32:01,840 +capabilities, we can apply the same idea to object + +545 +00:32:01,840 --> 00:32:07,560 +-oriented programming. Now, how do we apply it? + +546 +00:32:11,220 --> 00:32:16,140 +For example, I have an object here and I want to + +547 +00:32:16,140 --> 00:32:20,360 +restrict access to it or control it. How? For + +548 +00:32:20,360 --> 00:32:23,240 +example, there can be a set of methods. There is a + +549 +00:32:23,240 --> 00:32:25,140 +method that I want to cancel. The client does not + +550 +00:32:25,140 --> 00:32:28,500 +want to see it or use it. Or, for example, there + +551 +00:32:28,500 --> 00:32:33,420 +is a method that I want to postpone its adoption. + +552 +00:32:36,540 --> 00:32:39,660 +In other words, I want to make a control or change + +553 +00:32:39,660 --> 00:32:44,640 +in order to execute this object So how do I make + +554 +00:32:44,640 --> 00:32:47,100 +this change? The same idea as the decorator, that + +555 +00:32:47,100 --> 00:32:50,760 +this object that I control, I wrap it in another + +556 +00:32:50,760 --> 00:32:57,120 +object. For example, there are methods x, y and z. + +557 +00:32:57,120 --> 00:33:01,620 +For example, I can delete z. + +558 +00:33:05,170 --> 00:33:09,510 +The idea behind the decorator is that you create + +559 +00:33:09,510 --> 00:33:11,570 +the same methods x, y, and z, and then what do you + +560 +00:33:11,570 --> 00:33:16,690 +do? You change them, right? Because if I create x, + +561 +00:33:16,810 --> 00:33:22,910 +y, and z, it is as if I blocked someone and the + +562 +00:33:22,910 --> 00:33:27,440 +method stopped working. On the client, right? The + +563 +00:33:27,440 --> 00:33:31,660 +client will use the decorator. He will see x and y + +564 +00:33:31,660 --> 00:33:33,800 +that leads to the object inside, but the z that it + +565 +00:33:33,800 --> 00:33:39,160 +has, I deleted it, okay? And another control, we + +566 +00:33:39,160 --> 00:33:42,260 +will see examples of it through the example that + +567 +00:33:42,260 --> 00:33:45,780 +we will see now. So really the proxy pattern is a + +568 +00:33:45,780 --> 00:33:49,220 +decorator pattern. It is an object that encloses + +569 +00:33:49,220 --> 00:33:51,380 +another object. Why did they separate it into a + +570 +00:33:51,380 --> 00:33:54,540 +design pattern? Because it has another goal. The + +571 +00:33:54,540 --> 00:33:57,700 +decorator's goal is not to change the object + +572 +00:33:57,700 --> 00:34:04,160 +inside, but to add a new functionality. Because + +573 +00:34:04,160 --> 00:34:06,920 +this object encloses this object, but with another + +574 +00:34:06,920 --> 00:34:10,460 +goal to control it and make restrictions on it. + +575 +00:34:10,740 --> 00:34:14,520 +That's it. It is a decorator pattern, but its goal + +576 +00:34:14,520 --> 00:34:17,490 +is different. The goal is to control the object + +577 +00:34:17,490 --> 00:34:21,730 +inside, not to add a new functionality to it. + +578 +00:34:22,570 --> 00:34:25,530 +Before we read this speech, and to understand this + +579 +00:34:25,530 --> 00:34:28,210 +speech when we read it, let's see a practical + +580 +00:34:28,210 --> 00:34:34,210 +example using the decorator petal, excuse me, the + +581 +00:34:34,210 --> 00:34:38,110 +proxy petal. Let me close. + +582 +00:34:59,400 --> 00:35:01,460 +Ok guys, I'm going to show you a simple program + +583 +00:35:01,460 --> 00:35:07,220 +I'm going to run it, and this program is an image + +584 +00:35:07,220 --> 00:35:09,660 +gallery. We all know image gallery, which is images + +585 +00:35:09,660 --> 00:35:12,960 +that do next and previous, you see what, a group + +586 +00:35:12,960 --> 00:35:14,860 +of images. Because this, for example, of course, + +587 +00:35:14,960 --> 00:35:16,700 +when the program starts working, it loads a group + +588 +00:35:16,700 --> 00:35:19,080 +of images, and then down here, but it's not clear, + +589 +00:35:19,860 --> 00:35:21,460 +it's not clear, yes, there are two buttons, their + +590 +00:35:21,460 --> 00:35:24,340 +name is next and previous, okay? These are clear, + +591 +00:35:24,460 --> 00:35:27,030 +that is, part of them. It's not about the design, I + +592 +00:35:27,030 --> 00:35:29,690 +did it quickly, yesterday, okay? So when you come + +593 +00:35:29,690 --> 00:35:32,850 +and do, for example, next, what do I do? Yes, I go + +594 +00:35:32,850 --> 00:35:35,850 +to the second picture, and so on, okay? And then I + +595 +00:35:35,850 --> 00:35:40,810 +go back to what? To the first one. This is a common + +596 +00:35:40,810 --> 00:35:42,190 +application, you can find it on the web, you can + +597 +00:35:42,190 --> 00:35:47,740 +find it on mobile, on any program. Now, the idea in + +598 +00:35:47,740 --> 00:35:49,980 +this application is to quickly go through the + +599 +00:35:49,980 --> 00:35:51,700 +code. We are not talking about the GUI, but we + +600 +00:35:51,700 --> 00:35:54,460 +want to see how it is done. Actually, the first + +601 +00:35:54,460 --> 00:35:58,940 +thing I run is mainly the image paths. All the + +602 +00:35:58,940 --> 00:36:03,080 +photos are in the working directory, so I just put + +603 +00:36:03,080 --> 00:36:07,000 +their names. Then I have a playlist here of the + +604 +00:36:07,000 --> 00:36:11,550 +image icon type. This array will be empty. The + +605 +00:36:11,550 --> 00:36:13,930 +idea is that when the program starts, it will go + +606 +00:36:13,930 --> 00:36:17,270 +to these images, read them, download them as image + +607 +00:36:17,270 --> 00:36:20,610 +icons, and put them in this array. And then it + +608 +00:36:20,610 --> 00:36:23,250 +will go away from where? From this array. Its name + +609 +00:36:23,250 --> 00:36:27,010 +is images. Okay? So the image path is tracks, and + +610 +00:36:27,010 --> 00:36:30,330 +this is where we put the images. So really, as + +611 +00:36:30,330 --> 00:36:32,170 +soon as the program starts, it is supposed to + +612 +00:36:32,170 --> 00:36:36,590 +download these images and upload them to this + +613 +00:36:36,590 --> 00:36:40,930 +array. Are you with me guys? Okay. Because this is + +614 +00:36:40,930 --> 00:36:43,750 +an index made for tracking, not for decreasing or + +615 +00:36:43,750 --> 00:36:43,930 +decreasing. + +616 +00:36:47,850 --> 00:36:51,370 +Because this is a GUI code, we come to the main + +617 +00:36:51,370 --> 00:36:53,850 +code. This is the code of the constructor. This is + +618 +00:36:53,850 --> 00:36:56,610 +the constructor of the current class. As soon as + +619 +00:36:56,610 --> 00:36:59,490 +it starts working, it executes this code. Look at + +620 +00:36:59,490 --> 00:37:03,030 +it. It creates a loop. Loop on whom? On the + +621 +00:37:03,030 --> 00:37:05,970 +tracks. Every track that it creates, it creates an + +622 +00:37:05,970 --> 00:37:12,300 +image icon and puts it on this array. And then it + +623 +00:37:12,300 --> 00:37:16,260 +executes a method called update image. What is + +624 +00:37:16,260 --> 00:37:21,320 +update image? It is a simple method. When I click + +625 +00:37:21,320 --> 00:37:23,540 +on the button, there is no next or previous button. + +626 +00:37:23,540 --> 00:37:27,760 +It only changes the index, previous goes with + +627 +00:37:27,760 --> 00:37:35,070 +minus one and plus increases with one. Of course, I + +628 +00:37:35,070 --> 00:37:37,770 +did something, when I reach the end, I go back to + +629 +00:37:37,770 --> 00:37:39,690 +the beginning, and whenever it changes the index, + +630 +00:37:39,730 --> 00:37:42,650 +it executes the method update. What does the + +631 +00:37:42,650 --> 00:37:44,510 +method update do? Very simple, I go to the image + +632 +00:37:44,510 --> 00:37:49,850 +label, which is in the middle, the user interface + +633 +00:37:49,850 --> 00:37:52,090 +is simple, there is an image label, there is a + +634 +00:37:52,090 --> 00:37:54,930 +next button and a previous button, so whenever I + +635 +00:37:54,930 --> 00:37:57,210 +say next or previous, it will go and edit the + +636 +00:37:57,210 --> 00:37:59,530 +index and tell it to go to the image label and set + +637 +00:37:59,530 --> 00:38:02,420 +icon, and change the image and go to the array + +638 +00:38:02 + +667 +00:39:39,230 --> 00:39:42,270 +thousand images and each image takes half a + +668 +00:39:42,270 --> 00:39:45,830 +millisecond, it will take a long time when it runs + +669 +00:39:45,830 --> 00:39:48,890 +but I want it to run and show only the first image + +670 +00:39:48,890 --> 00:39:52,710 +and then when it does next or previous, it will + +671 +00:39:52,710 --> 00:39:56,050 +load the next image or the previous one, I want to + +672 +00:39:56,050 --> 00:40:00,720 +delay the process of loading images when needed. How + +673 +00:40:00,720 --> 00:40:03,240 +can I do it with a simple trick without changing + +674 +00:40:03,240 --> 00:40:08,960 +the client's code? Where is the trick? The class + +675 +00:40:08,960 --> 00:40:13,100 +ImageIcon is the problem. If I create an ImageIcon + +676 +00:40:13,100 --> 00:40:16,880 +and pass a path to it, this creation of the + +677 +00:40:16,880 --> 00:40:20,460 +ImageIcon is costly. The process of creating a new + +678 +00:40:20,460 --> 00:40:26,000 +ImageIcon is costly. Are you with me or not guys? + +679 +00:40:26,720 --> 00:40:29,780 +This line, the new image icon, is what takes all + +680 +00:40:29,780 --> 00:40:32,600 +the time. So if you execute 10 times on 10 images, + +681 +00:40:32,700 --> 00:40:35,980 +it will take a long time. So I want to do a trick, + +682 +00:40:36,460 --> 00:40:40,920 +that this new image icon, we want to delay it for + +683 +00:40:40,920 --> 00:40:43,460 +the moment of need. Are you with me or not guys? + +684 +00:40:44,760 --> 00:40:47,360 +Yes, for the moment of need. So what should I do? + +685 +00:40:47,660 --> 00:40:49,720 +Take it out with me. And at the same time, I don't + +686 +00:40:49,720 --> 00:40:52,810 +want to change in the code that I wrote, this is + +687 +00:40:52,810 --> 00:40:55,370 +the code for a simple interface, imagine if the + +688 +00:40:55,370 --> 00:40:57,370 +interface was complicated and you search for the + +689 +00:40:57,370 --> 00:41:00,370 +code, no, we don't modify anything in it. I went + +690 +00:41:00,370 --> 00:41:03,670 +and made a new class, look at it with me, I made a + +691 +00:41:03,670 --> 00:41:07,910 +new class, what is it called? Image proxy, and I + +692 +00:41:07,910 --> 00:41:12,060 +made it from the type ImageIcon, in the end, why + +693 +00:41:12,060 --> 00:41:14,120 +did I make it like that? So that the program sees + +694 +00:41:14,120 --> 00:41:17,600 +in this class the object like what? Like the + +695 +00:41:17,600 --> 00:41:20,060 +ImageIcon. And actually it's not ImageIcon, it's + +696 +00:41:20,060 --> 00:41:22,020 +actually going to be wrapped inside ImageIcon + +697 +00:41:22,020 --> 00:41:25,160 +Look, it's the same idea as the decorator. It's a + +698 +00:41:25,160 --> 00:41:28,520 +kind of component, and it contains inside it a + +699 +00:41:28,520 --> 00:41:30,900 +component. It's a kind of ImageIcon, and it + +700 +00:41:30,900 --> 00:41:35,140 +contains inside it an ImageIcon. Okay? And why did + +701 +00:41:35,140 --> 00:41:37,000 +I make it stored here? I put another parameter, + +702 +00:41:37,320 --> 00:41:41,210 +what's it called? ImagePath. And now look at what + +703 +00:41:41,210 --> 00:41:45,590 +this is. The constructor. Actually, what does the + +704 +00:41:45,590 --> 00:41:49,910 +constructor pass to it? Let it take the imagePath + +705 +00:41:49,910 --> 00:41:53,690 +and take the imagePath and store it here because + +706 +00:41:53,690 --> 00:41:56,230 +we also know that as long as this class extends + +707 +00:41:56,230 --> 00:42:00,410 +imageIcon then it will block the super. But which + +708 +00:42:00,410 --> 00:42:04,830 +super will block the super? Empty. Of course, it + +709 +00:42:04,830 --> 00:42:08,580 +should be front only. This is there even if I + +710 +00:42:08,580 --> 00:42:11,260 +didn't write it. Of course, super-empty will not + +711 +00:42:11,260 --> 00:42:13,600 +load the image. Right or wrong? When is the + +712 +00:42:13,600 --> 00:42:16,500 +problem? If you put image path here, it will load + +713 +00:42:16,500 --> 00:42:16,880 +it here. + +714 +00:42:19,800 --> 00:42:23,000 +Here, we ruined the world. Why? It will load it in + +715 +00:42:23,000 --> 00:42:25,220 +memory. We don't want it to do that. We want to + +716 +00:42:25,220 --> 00:42:29,360 +make it believe that because if I leave it blank, + +717 +00:42:29,620 --> 00:42:33,940 +it won't load the image. So actually, I created an + +718 +00:42:33,940 --> 00:42:36,740 +image proxy. It's an image icon, and it wraps the + +719 +00:42:36,740 --> 00:42:40,700 +image icon. But this image icon still has a null. + +720 +00:42:41,420 --> 00:42:47,400 +Am I right, guys? So if I come to my application, + +721 +00:42:48,160 --> 00:42:51,400 +this is the loop that creates the image icon. And + +722 +00:42:51,400 --> 00:42:54,540 +instead of an image icon, I wrote an image here. + +723 +00:42:56,120 --> 00:43:01,840 +proxy. That's it. We changed it to image proxy. It + +724 +00:43:01,840 --> 00:43:04,300 +actually creates how many image proxies? With the + +725 +00:43:04,300 --> 00:43:07,240 +number of images. What does the image proxy do? + +726 +00:43:07,760 --> 00:43:11,360 +Nothing. It takes the path and puts it here. Did + +727 +00:43:11,360 --> 00:43:13,580 +it load images in the memory? Did it create an + +728 +00:43:13,580 --> 00:43:17,200 +image icon? No. It did create five or six image + +729 +00:43:17,200 --> 00:43:20,120 +proxies, but all of them have an image icon. What + +730 +00:43:20,120 --> 00:43:24,350 +is its value? Their value. Okay, now the problem is + +731 +00:43:24,350 --> 00:43:27,810 +here, if we do this, + +732 +00:43:30,370 --> 00:43:34,950 +we said that this is a proxy, so when I use this, + +733 +00:43:34,970 --> 00:43:38,850 +who should he use? The image icon, so who is the + +734 +00:43:38,850 --> 00:43:42,750 +main inside this? Did you see what I did? I went + +735 +00:43:42,750 --> 00:43:46,020 +to all the methods in the image icon, I made an + +736 +00:43:46,020 --> 00:43:48,560 +override for it, which means for example, getImage + +737 +00:43:48,560 --> 00:43:52,240 +and paintIcon and getIconWidth and getIconHeight + +738 +00:43:52,240 --> 00:43:54,820 +How did you know these things? Because I didn't + +739 +00:43:54,820 --> 00:43:58,360 +memorize them. Just click on control space and you + +740 +00:43:58,360 --> 00:44:04,860 +will find all the methods in the superclass. All + +741 +00:44:04,860 --> 00:44:09,680 +these methods are in the superclass, I made them + +742 +00:44:09,680 --> 00:44:13,910 +all overwrite and I did a simple thing. Look with + +743 +00:44:13,910 --> 00:44:16,610 +me until I got an image. Of course, I got an image, + +744 +00:44:16,690 --> 00:44:19,330 +I'm not the one who will claim it. Actually, when he + +745 +00:44:19,330 --> 00:44:22,290 +comes to do next and previous, he will do work and + +746 +00:44:22,290 --> 00:44:24,410 +claim to get an image and get width and height to + +747 +00:44:24,410 --> 00:44:27,830 +draw the image icon, but I did something to him. I + +748 +00:44:27,830 --> 00:44:30,790 +told him, if you claim to get an image and you find + +749 +00:44:30,790 --> 00:44:33,950 +the image icon empty, if you return it to him, go + +750 +00:44:33,950 --> 00:44:39,070 +and do what? Take the buff and remove it. It means you + +751 +00:44:39,070 --> 00:44:39,970 +let him remove it. + +752 +00:44:43,040 --> 00:44:45,460 +When he comes to create a get image, when he comes + +753 +00:44:45,460 --> 00:44:48,980 +to draw actually, when he starts the application, + +754 +00:44:49,720 --> 00:44:51,560 +the image proxy does not create an object, it just + +755 +00:44:51,560 --> 00:44:56,100 +takes a path and stores it. When the artist comes + +756 +00:44:56,100 --> 00:44:58,580 +to create next and previous, he sees the image + +757 +00:44:58,580 --> 00:45:00,980 +icon, if it is not a channel, he goes and sees it. + +758 +00:45:01,080 --> 00:45:04,020 +Notice now that this idea here is that I made a + +759 +00:45:04,020 --> 00:45:06,280 +control for the constructor. The constructor + +760 +00:45:06,280 --> 00:45:09,500 +delayed its use for how long? When it comes to + +761 +00:45:09,500 --> 00:45:12,820 +create a get image. Like the idea of singleton, + +762 +00:45:13,140 --> 00:45:16,180 +right? So if I get null, do it. But why did I put + +763 +00:45:16,180 --> 00:45:17,540 +the condition? Because after that, if the teacher + +764 +00:45:17,540 --> 00:45:21,020 +gets an image, there is no teacher to return it to + +765 +00:45:21,020 --> 00:45:22,880 +you. Of course, here I also do a redirect. I go + +766 +00:45:22,880 --> 00:45:26,040 +and tell him imageicon.get image. So I actually + +767 +00:45:26,040 --> 00:45:29,380 +use the object inside because I wrapped it. Okay? + +768 +00:45:29,780 --> 00:45:32,420 +And there is also a method called paint icon. What + +769 +00:45:32,420 --> 00:45:34,280 +does this do? It sends. What does it do? It has no + +770 +00:45:34,280 --> 00:45:36,360 +application. What does it do? But I told him, if + +771 +00:45:36,360 --> 00:45:39,520 +you get a paint icon, go and make sure if the + +772 +00:45:39,520 --> 00:45:42,860 +image icon is null, create it, then go to the + +773 +00:45:42,860 --> 00:45:46,300 +image icon and click on the paint icon. This is a + +774 +00:45:46,300 --> 00:45:49,600 +code not to add a new functionality, but to create + +775 +00:45:49,600 --> 00:45:52,540 +a control. Okay? And it's the same thing with get + +776 +00:45:52,540 --> 00:45:57,680 +-width and get-height. They need the swing to draw + +777 +00:45:57,680 --> 00:46:01,780 +the picture. Also, if it's null, go and create it. + +778 +00:46:03,120 --> 00:46:04,360 +Then click on the image icon and click on get + +779 +00:46:04,360 --> 00:46:06,880 +-width. So really, the real object that I'm + +780 +00:46:06,880 --> 00:46:10,670 +dealing with is this object inside. This is the + +781 +00:46:10,670 --> 00:46:14,450 +truth. This is just a cover. I make fun of the + +782 +00:46:14,450 --> 00:46:17,310 +client that this image proxy is a client just like + +783 +00:46:17,310 --> 00:46:20,230 +the image icon. Okay? But he is covering the image + +784 +00:46:20,230 --> 00:46:24,490 +icon. The whole idea is that I'm not going to tell + +785 +00:46:24,490 --> 00:46:28,250 +him super and give him an image path. I delayed + +786 +00:46:28,250 --> 00:46:31,450 +this step. If you give him an image path, this is + +787 +00:46:31,450 --> 00:46:33,650 +a disaster. Why? This is how they bear on memory. + +788 +00:46:33,910 --> 00:46:37,910 +I delayed this step. When did I delay it? When he + +789 +00:46:37,910 --> 00:46:38,450 +clings to it. + +790 +00:46:44,340 --> 00:46:48,900 +Paint.getImage.getIconHigh Because this idea is + +791 +00:46:48,900 --> 00:46:51,240 +exactly like the idea of the decorator. As I used + +792 +00:46:51,240 --> 00:46:56,460 +to make a circle that contains a shape and then in + +793 +00:46:56,460 --> 00:46:59,480 +the draw, I say shape.draw, or in the describe, I say + +794 +00:46:59,480 --> 00:47:02,000 +shape.describe, right or not? This is the same + +795 +00:47:02,000 --> 00:47:05,880 +thing, I go and say getIconWidth, I go to the image + +796 +00:47:05,880 --> 00:47:10,130 +icon and say getIconWidthGetIconHeight. It goes to + +797 +00:47:10,130 --> 00:47:12,330 +ImageIcon and says, GetIconHeight, but it creates a + +798 +00:47:12,330 --> 00:47:15,430 +code and gives it a control to make sure that if + +799 +00:47:15,430 --> 00:47:18,730 +it is not created, then create it. Let's see how + +800 +00:47:18,730 --> 00:47:20,070 +this step will make a difference. This is my + +801 +00:47:20,070 --> 00:47:22,610 +application. The application that I changed has + +802 +00:47:22,610 --> 00:47:26,600 +only one thing. It's exactly the same code and + +803 +00:47:26,600 --> 00:47:29,340 +same loop, but now it's saying don't create an + +804 +00:47:29,340 --> 00:47:32,540 +image icon, create an image proxy. So it's going + +805 +00:47:32,540 --> 00:47:36,440 +to create 5 or 6 image proxies, each one + +806 +00:47:36,440 --> 00:47:39,080 +containing only the path of the image. It's not + +807 +00:47:39,080 --> 00:47:41,460 +going to load anything on the memory. What is it + +808 +00:47:41,460 --> 00:47:44,040 +going to load? When it says in the method update, + +809 +00:47:44,500 --> 00:47:48,790 +which appears when I click on the button, I go to + +810 +00:47:48,790 --> 00:47:51,730 +the image label and say set icon and go to images + +811 +00:47:51,730 --> 00:47:54,230 +and say get current image. This set icon + +812 +00:47:54,230 --> 00:47:57,490 +automatically calls the get image and calls the + +813 +00:47:57,490 --> 00:48:00,150 +paint and so on. So when it calls it, if I click + +814 +00:48:00,150 --> 00:48:03,230 +on it, it runs it and then it does the paint and + +815 +00:48:03,230 --> 00:48:06,570 +gets the width and height and so on. Now, how do I + +816 +00:48:06,570 --> 00:48:09,630 +make sure that my code is better? We want to see + +817 +00:48:09,630 --> 00:48:12,710 +the time it took. I changed one line, okay? And + +818 +00:48:12,710 --> 00:48:17,050 +let's make a run for the program. Let's see if I + +819 +00:48:17,050 --> 00:48:24,010 +found the code that gave me 1.44 milliseconds. It + +820 +00:48:24,010 --> 00:48:28,570 +was 300 milliseconds. 300 became 1.44 because I + +821 +00:48:28,570 --> 00:48:31,610 +did not load the image on my memory. It is just to + +822 +00:48:31,610 --> 00:48:36,750 +put the lines. When do you load the image? At the + +823 +00:48:36,750 --> 00:48:39,170 +moment when you press the next button and the + +824 +00:48:39,170 --> 00:48:43,250 +previous button only. It will run because the two + +825 +00:48:43,250 --> 00:48:46,430 +buttons are not visible, this is for example next + +826 +00:48:46,430 --> 00:48:48,870 +it shows the second picture and the third picture + +827 +00:48:48,870 --> 00:48:53,950 +it is actually now with each next it executes the + +828 +00:48:53,950 --> 00:48:57,830 +method which is draw or get image if it returns + +829 +00:48:57,830 --> 00:49:00,990 +null, it creates and then it says get image, so the + +830 +00:49:00,990 --> 00:49:04,050 +picture is actually loaded only during drawing. + +831 +00:49:04,050 --> 00:49:08,360 +This is an example that shows me the proxyPattern, + +832 +00:49:08,500 --> 00:49:11,820 +which is exactly the same as the decorator. It is + +833 +00:49:11,820 --> 00:49:14,200 +a decorator pattern. An object wraps another + +834 +00:49:14,200 --> 00:49:16,640 +object, but its purpose is different. The + +835 +00:49:16,640 --> 00:49:19,280 +decorator was an addition of functionality. This + +836 +00:49:19,280 --> 00:49:24,500 +is a control for the object that I wrap. For + +837 +00:49:24,500 --> 00:49:27,700 +example, to delay certain things or to change the + +838 +00:49:27,700 --> 00:49:32,560 +methods available in a certain way. This is an + +839 +00:49:32,560 --> 00:49:33,940 +example that we explained about proxy pattern, + +840 +00:49:34,020 --> 00:49:37,140 +next time we will continue to read the explanation + +841 +00:49:37,140 --> 00:49:40,200 +of proxy pattern and we will see a new design + +842 +00:49:40,200 --> 00:49:45,720 +pattern. Do you have any questions, guys? Thank you diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/NVgnPaSjKJs_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/NVgnPaSjKJs_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..5f259a9e81fc7d707c868fb9a0f715287d5fbd77 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/NVgnPaSjKJs_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 1723, "start": 5.16, "end": 17.24, "text": "طب يا جماعة السلام عليكم اليوم ان شاء الله يا جماعة هنكمل ما تبقى من موضوع ال decorator pattern ونبدأ ان شاء الله ب design pattern جديد اللى هو ال proxy pattern", "tokens": [9566, 3555, 35186, 10874, 15042, 27884, 21136, 37440, 25894, 24793, 45595, 20498, 16472, 13412, 16606, 21984, 35186, 10874, 15042, 27884, 8032, 1863, 24793, 1211, 19446, 6055, 3555, 4587, 7578, 9154, 3714, 2407, 11242, 45367, 2423, 7919, 1639, 5102, 4032, 1863, 44510, 10721, 16472, 13412, 16606, 21984, 4724, 1715, 5102, 10874, 16254, 3215, 13672, 7578, 31439, 2423, 29690, 5102], "avg_logprob": -0.13367319864741825, "compression_ratio": 1.5897435897435896, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 5.16, "end": 5.44, "word": "طب", "probability": 0.62548828125}, {"start": 5.44, "end": 5.54, "word": " يا", "probability": 0.9208984375}, {"start": 5.54, "end": 5.68, "word": " جماعة", "probability": 0.9871419270833334}, {"start": 5.68, "end": 5.94, "word": " السلام", "probability": 0.94775390625}, {"start": 5.94, "end": 6.34, "word": " عليكم", "probability": 0.921630859375}, {"start": 6.34, "end": 9.1, "word": " اليوم", "probability": 0.824951171875}, {"start": 9.1, "end": 9.18, "word": " ان", "probability": 0.37939453125}, {"start": 9.18, "end": 9.36, "word": " شاء", "probability": 0.9609375}, {"start": 9.36, "end": 9.42, "word": " الله", "probability": 0.857421875}, {"start": 9.42, "end": 9.52, "word": " يا", "probability": 0.6787109375}, {"start": 9.52, "end": 9.82, "word": " جماعة", "probability": 0.99365234375}, {"start": 9.82, "end": 10.52, "word": " هنكمل", "probability": 0.9798583984375}, {"start": 10.52, "end": 10.96, "word": " ما", "probability": 0.67626953125}, {"start": 10.96, "end": 11.66, "word": " تبقى", "probability": 0.9716796875}, {"start": 11.66, "end": 11.96, "word": " من", "probability": 0.96728515625}, {"start": 11.96, "end": 12.4, "word": " موضوع", "probability": 0.9747314453125}, {"start": 12.4, "end": 12.58, "word": " ال", "probability": 0.896484375}, {"start": 12.58, "end": 13.08, "word": " decorator", "probability": 0.908447265625}, {"start": 13.08, "end": 13.46, "word": " pattern", "probability": 0.9296875}, {"start": 13.46, "end": 14.08, "word": " ونبدأ", "probability": 0.8868408203125}, {"start": 14.08, "end": 14.16, "word": " ان", "probability": 0.377197265625}, {"start": 14.16, "end": 14.32, "word": " شاء", "probability": 0.97802734375}, {"start": 14.32, "end": 14.46, "word": " الله", "probability": 0.89697265625}, {"start": 14.46, "end": 14.6, "word": " ب", "probability": 0.8896484375}, {"start": 14.6, "end": 14.86, "word": " design", "probability": 0.83154296875}, {"start": 14.86, "end": 15.18, "word": " pattern", "probability": 0.9404296875}, {"start": 15.18, "end": 15.66, "word": " جديد", "probability": 0.9794921875}, {"start": 15.66, "end": 15.76, "word": " اللى", "probability": 0.837890625}, {"start": 15.76, "end": 16.14, "word": " هو", "probability": 0.70947265625}, {"start": 16.14, "end": 16.56, "word": " ال", "probability": 0.93505859375}, {"start": 16.56, "end": 16.9, "word": " proxy", "probability": 0.98046875}, {"start": 16.9, "end": 17.24, "word": " pattern", "probability": 0.9052734375}], "temperature": 1.0}, {"id": 2, "seek": 4553, "start": 19.29, "end": 45.53, "text": " Let's remind ourselves about the decorator pattern We said that if I have any class and I want to add a new functionality to it, I have two ways The traditional way that we are used to is the inheritance or subclassing way That is, if a class wants to add new things to it, it will extend it and add additional things to it And this means that you don't need to rewrite the previous things again, you only focus on the additional things", "tokens": [961, 311, 4160, 4175, 466, 264, 7919, 1639, 5102, 492, 848, 300, 498, 286, 362, 604, 1508, 293, 286, 528, 281, 909, 257, 777, 14980, 281, 309, 11, 286, 362, 732, 2098, 440, 5164, 636, 300, 321, 366, 1143, 281, 307, 264, 32122, 420, 1422, 11665, 278, 636, 663, 307, 11, 498, 257, 1508, 2738, 281, 909, 777, 721, 281, 309, 11, 309, 486, 10101, 309, 293, 909, 4497, 721, 281, 309, 400, 341, 1355, 300, 291, 500, 380, 643, 281, 28132, 264, 3894, 721, 797, 11, 291, 787, 1879, 322, 264, 4497, 721], "avg_logprob": -0.5161184461493241, "compression_ratio": 1.790983606557377, "no_speech_prob": 3.2186508178710938e-06, "words": [{"start": 19.29, "end": 19.77, "word": " Let's", "probability": 0.530029296875}, {"start": 19.77, "end": 20.05, "word": " remind", "probability": 0.1656494140625}, {"start": 20.05, "end": 20.55, "word": " ourselves", "probability": 0.27734375}, {"start": 20.55, "end": 21.49, "word": " about", "probability": 0.2310791015625}, {"start": 21.49, "end": 22.05, "word": " the", "probability": 0.55859375}, {"start": 22.05, "end": 22.53, "word": " decorator", "probability": 0.76708984375}, {"start": 22.53, "end": 22.89, "word": " pattern", "probability": 0.84375}, {"start": 22.89, "end": 23.11, "word": " We", "probability": 0.1937255859375}, {"start": 23.11, "end": 23.35, "word": " said", "probability": 0.626953125}, {"start": 23.35, "end": 23.85, "word": " that", "probability": 0.58837890625}, {"start": 23.85, "end": 23.97, "word": " if", "probability": 0.8076171875}, {"start": 23.97, "end": 24.19, "word": " I", "probability": 0.8466796875}, {"start": 24.19, "end": 24.47, "word": " have", "probability": 0.767578125}, {"start": 24.47, "end": 25.17, "word": " any", "probability": 0.50537109375}, {"start": 25.17, "end": 25.57, "word": " class", "probability": 0.92138671875}, {"start": 25.57, "end": 25.77, "word": " and", "probability": 0.59130859375}, {"start": 25.77, "end": 25.89, "word": " I", "probability": 0.75537109375}, {"start": 25.89, "end": 26.09, "word": " want", "probability": 0.76171875}, {"start": 26.09, "end": 26.19, "word": " to", "probability": 0.96337890625}, {"start": 26.19, "end": 26.41, "word": " add", "probability": 0.8994140625}, {"start": 26.41, "end": 26.71, "word": " a", "probability": 0.280029296875}, {"start": 26.71, "end": 26.73, "word": " new", "probability": 0.82666015625}, {"start": 26.73, "end": 27.21, "word": " functionality", "probability": 0.87939453125}, {"start": 27.21, "end": 27.67, "word": " to", "probability": 0.54296875}, {"start": 27.67, "end": 27.67, "word": " it,", "probability": 0.9501953125}, {"start": 27.95, "end": 28.67, "word": " I", "probability": 0.6142578125}, {"start": 28.67, "end": 28.79, "word": " have", "probability": 0.75341796875}, {"start": 28.79, "end": 28.93, "word": " two", "probability": 0.72900390625}, {"start": 28.93, "end": 29.19, "word": " ways", "probability": 0.43017578125}, {"start": 29.19, "end": 29.57, "word": " The", "probability": 0.3203125}, {"start": 29.57, "end": 30.13, "word": " traditional", "probability": 0.734375}, {"start": 30.13, "end": 30.31, "word": " way", "probability": 0.8408203125}, {"start": 30.31, "end": 30.43, "word": " that", "probability": 0.492431640625}, {"start": 30.43, "end": 30.57, "word": " we", "probability": 0.91748046875}, {"start": 30.57, "end": 30.61, "word": " are", "probability": 0.595703125}, {"start": 30.61, "end": 31.09, "word": " used", "probability": 0.70166015625}, {"start": 31.09, "end": 31.43, "word": " to", "probability": 0.94580078125}, {"start": 31.43, "end": 31.67, "word": " is", "probability": 0.6103515625}, {"start": 31.67, "end": 31.81, "word": " the", "probability": 0.418701171875}, {"start": 31.81, "end": 32.43, "word": " inheritance", "probability": 0.81396484375}, {"start": 32.43, "end": 32.85, "word": " or", "probability": 0.68115234375}, {"start": 32.85, "end": 33.67, "word": " subclassing", "probability": 0.8385416666666666}, {"start": 33.67, "end": 33.67, "word": " way", "probability": 0.44091796875}, {"start": 33.67, "end": 34.17, "word": " That", "probability": 0.1959228515625}, {"start": 34.17, "end": 34.17, "word": " is,", "probability": 0.556640625}, {"start": 34.17, "end": 34.31, "word": " if", "probability": 0.466796875}, {"start": 34.31, "end": 34.59, "word": " a", "probability": 0.411376953125}, {"start": 34.59, "end": 34.59, "word": " class", "probability": 0.943359375}, {"start": 34.59, "end": 34.83, "word": " wants", "probability": 0.5966796875}, {"start": 34.83, "end": 34.89, "word": " to", "probability": 0.96630859375}, {"start": 34.89, "end": 35.07, "word": " add", "probability": 0.91015625}, {"start": 35.07, "end": 35.75, "word": " new", "probability": 0.72314453125}, {"start": 35.75, "end": 35.75, "word": " things", "probability": 0.55908203125}, {"start": 35.75, "end": 35.87, "word": " to", "probability": 0.51513671875}, {"start": 35.87, "end": 35.87, "word": " it,", "probability": 0.9306640625}, {"start": 35.95, "end": 35.97, "word": " it", "probability": 0.4833984375}, {"start": 35.97, "end": 36.05, "word": " will", "probability": 0.26904296875}, {"start": 36.05, "end": 36.55, "word": " extend", "probability": 0.4404296875}, {"start": 36.55, "end": 36.69, "word": " it", "probability": 0.66796875}, {"start": 36.69, "end": 36.77, "word": " and", "probability": 0.8095703125}, {"start": 36.77, "end": 36.95, "word": " add", "probability": 0.857421875}, {"start": 36.95, "end": 38.41, "word": " additional", "probability": 0.47412109375}, {"start": 38.41, "end": 38.41, "word": " things", "probability": 0.75}, {"start": 38.41, "end": 38.41, "word": " to", "probability": 0.436767578125}, {"start": 38.41, "end": 39.03, "word": " it", "probability": 0.939453125}, {"start": 39.03, "end": 39.19, "word": " And", "probability": 0.302001953125}, {"start": 39.19, "end": 39.35, "word": " this", "probability": 0.71826171875}, {"start": 39.35, "end": 39.55, "word": " means", "probability": 0.260009765625}, {"start": 39.55, "end": 39.87, "word": " that", "probability": 0.91015625}, {"start": 39.87, "end": 41.31, "word": " you", "probability": 0.468017578125}, {"start": 41.31, "end": 41.45, "word": " don't", "probability": 0.791259765625}, {"start": 41.45, "end": 41.83, "word": " need", "probability": 0.59423828125}, {"start": 41.83, "end": 41.95, "word": " to", "probability": 0.966796875}, {"start": 41.95, "end": 42.15, "word": " rewrite", "probability": 0.365966796875}, {"start": 42.15, "end": 42.25, "word": " the", "probability": 0.52880859375}, {"start": 42.25, "end": 42.25, "word": " previous", "probability": 0.6279296875}, {"start": 42.25, "end": 42.25, "word": " things", "probability": 0.6064453125}, {"start": 42.25, "end": 43.13, "word": " again,", "probability": 0.56005859375}, {"start": 43.21, "end": 43.35, "word": " you", "probability": 0.47705078125}, {"start": 43.35, "end": 43.43, "word": " only", "probability": 0.349853515625}, {"start": 43.43, "end": 43.69, "word": " focus", "probability": 0.7626953125}, {"start": 43.69, "end": 44.21, "word": " on", "probability": 0.93896484375}, {"start": 44.21, "end": 44.89, "word": " the", "probability": 0.71142578125}, {"start": 44.89, "end": 44.97, "word": " additional", "probability": 0.75341796875}, {"start": 44.97, "end": 45.53, "word": " things", "probability": 0.75537109375}], "temperature": 1.0}, {"id": 3, "seek": 7275, "start": 46.29, "end": 72.75, "text": "But let's say that the way of subclassing is sometimes negative and produces explosion of classes For example, let's say I have three classes A,B,C I want to add functionality to these three classes So you need to create three subclasses to add functionality to these three classes If you have two functionalities and you want to add them to these three classes", "tokens": [7835, 718, 311, 584, 300, 264, 636, 295, 1422, 11665, 278, 307, 2171, 3671, 293, 14725, 15673, 295, 5359, 1171, 1365, 11, 718, 311, 584, 286, 362, 1045, 5359, 316, 11, 33, 11, 34, 286, 528, 281, 909, 14980, 281, 613, 1045, 5359, 407, 291, 643, 281, 1884, 1045, 1422, 11665, 279, 281, 909, 14980, 281, 613, 1045, 5359, 759, 291, 362, 732, 11745, 1088, 293, 291, 528, 281, 909, 552, 281, 613, 1045, 5359], "avg_logprob": -0.4056332338797419, "compression_ratio": 1.9726775956284153, "no_speech_prob": 0.0, "words": [{"start": 46.29, "end": 46.61, "word": "But", "probability": 0.2354736328125}, {"start": 46.61, "end": 46.71, "word": " let's", "probability": 0.5679931640625}, {"start": 46.71, "end": 46.89, "word": " say", "probability": 0.861328125}, {"start": 46.89, "end": 47.07, "word": " that", "probability": 0.7041015625}, {"start": 47.07, "end": 47.13, "word": " the", "probability": 0.63037109375}, {"start": 47.13, "end": 47.33, "word": " way", "probability": 0.5322265625}, {"start": 47.33, "end": 47.49, "word": " of", "probability": 0.6494140625}, {"start": 47.49, "end": 48.23, "word": " subclassing", "probability": 0.87353515625}, {"start": 48.23, "end": 48.45, "word": " is", "probability": 0.398193359375}, {"start": 48.45, "end": 48.95, "word": " sometimes", "probability": 0.6083984375}, {"start": 48.95, "end": 50.17, "word": " negative", "probability": 0.76220703125}, {"start": 50.17, "end": 50.45, "word": " and", "probability": 0.6494140625}, {"start": 50.45, "end": 50.79, "word": " produces", "probability": 0.3173828125}, {"start": 50.79, "end": 51.71, "word": " explosion", "probability": 0.3984375}, {"start": 51.71, "end": 51.97, "word": " of", "probability": 0.96337890625}, {"start": 51.97, "end": 52.41, "word": " classes", "probability": 0.896484375}, {"start": 52.41, "end": 54.03, "word": " For", "probability": 0.223388671875}, {"start": 54.03, "end": 54.53, "word": " example,", "probability": 0.90576171875}, {"start": 54.81, "end": 54.91, "word": " let's", "probability": 0.7027587890625}, {"start": 54.91, "end": 54.91, "word": " say", "probability": 0.9150390625}, {"start": 54.91, "end": 54.97, "word": " I", "probability": 0.68115234375}, {"start": 54.97, "end": 55.69, "word": " have", "probability": 0.9189453125}, {"start": 55.69, "end": 57.97, "word": " three", "probability": 0.459228515625}, {"start": 57.97, "end": 58.39, "word": " classes", "probability": 0.6259765625}, {"start": 58.39, "end": 58.59, "word": " A", "probability": 0.6533203125}, {"start": 58.59, "end": 58.75, "word": ",B", "probability": 0.6484375}, {"start": 58.75, "end": 58.93, "word": ",C", "probability": 0.798583984375}, {"start": 58.93, "end": 59.15, "word": " I", "probability": 0.345703125}, {"start": 59.15, "end": 59.35, "word": " want", "probability": 0.5419921875}, {"start": 59.35, "end": 59.45, "word": " to", "probability": 0.96826171875}, {"start": 59.45, "end": 59.57, "word": " add", "probability": 0.92236328125}, {"start": 59.57, "end": 60.17, "word": " functionality", "probability": 0.734375}, {"start": 60.17, "end": 60.35, "word": " to", "probability": 0.83203125}, {"start": 60.35, "end": 60.45, "word": " these", "probability": 0.491455078125}, {"start": 60.45, "end": 60.69, "word": " three", "probability": 0.68017578125}, {"start": 60.69, "end": 61.17, "word": " classes", "probability": 0.91162109375}, {"start": 61.17, "end": 62.13, "word": " So", "probability": 0.3583984375}, {"start": 62.13, "end": 62.45, "word": " you", "probability": 0.34912109375}, {"start": 62.45, "end": 62.67, "word": " need", "probability": 0.257080078125}, {"start": 62.67, "end": 62.83, "word": " to", "probability": 0.94384765625}, {"start": 62.83, "end": 63.13, "word": " create", "probability": 0.332763671875}, {"start": 63.13, "end": 64.13, "word": " three", "probability": 0.495361328125}, {"start": 64.13, "end": 65.67, "word": " subclasses", "probability": 0.9269205729166666}, {"start": 65.67, "end": 65.67, "word": " to", "probability": 0.384521484375}, {"start": 65.67, "end": 65.95, "word": " add", "probability": 0.89404296875}, {"start": 65.95, "end": 66.61, "word": " functionality", "probability": 0.84619140625}, {"start": 66.61, "end": 66.73, "word": " to", "probability": 0.931640625}, {"start": 66.73, "end": 66.89, "word": " these", "probability": 0.68310546875}, {"start": 66.89, "end": 67.37, "word": " three", "probability": 0.7626953125}, {"start": 67.37, "end": 68.25, "word": " classes", "probability": 0.8837890625}, {"start": 68.25, "end": 69.61, "word": " If", "probability": 0.85546875}, {"start": 69.61, "end": 69.81, "word": " you", "probability": 0.958984375}, {"start": 69.81, "end": 70.01, "word": " have", "probability": 0.92578125}, {"start": 70.01, "end": 70.31, "word": " two", "probability": 0.908203125}, {"start": 70.31, "end": 71.05, "word": " functionalities", "probability": 0.895751953125}, {"start": 71.05, "end": 71.15, "word": " and", "probability": 0.74462890625}, {"start": 71.15, "end": 71.19, "word": " you", "probability": 0.60302734375}, {"start": 71.19, "end": 71.33, "word": " want", "probability": 0.83154296875}, {"start": 71.33, "end": 71.47, "word": " to", "probability": 0.9638671875}, {"start": 71.47, "end": 71.67, "word": " add", "probability": 0.92138671875}, {"start": 71.67, "end": 71.85, "word": " them", "probability": 0.74462890625}, {"start": 71.85, "end": 71.97, "word": " to", "probability": 0.95751953125}, {"start": 71.97, "end": 72.07, "word": " these", "probability": 0.319580078125}, {"start": 72.07, "end": 72.29, "word": " three", "probability": 0.87646484375}, {"start": 72.29, "end": 72.75, "word": " classes", "probability": 0.90234375}], "temperature": 1.0}, {"id": 4, "seek": 10223, "start": 73.61, "end": 102.23, "text": " it means that from each class you can make two subclasses to add the first functionality or to add the second functionality and see for example that if I have shapes in the example given in the previous lecture circle, rectangle and I want to add a border to these shapes the traditional way is that first we make a circle with border and you will have to make another class called rectangle with border this is using subclassing but we say that the best way is to use the decorator", "tokens": [309, 1355, 300, 490, 1184, 1508, 291, 393, 652, 732, 1422, 11665, 279, 281, 909, 264, 700, 14980, 420, 281, 909, 264, 1150, 14980, 293, 536, 337, 1365, 300, 498, 286, 362, 10854, 294, 264, 1365, 2212, 294, 264, 3894, 7991, 6329, 11, 21930, 293, 286, 528, 281, 909, 257, 7838, 281, 613, 10854, 264, 5164, 636, 307, 300, 700, 321, 652, 257, 6329, 365, 7838, 293, 291, 486, 362, 281, 652, 1071, 1508, 1219, 21930, 365, 7838, 341, 307, 1228, 1422, 11665, 278, 457, 321, 584, 300, 264, 1151, 636, 307, 281, 764, 264, 7919, 1639], "avg_logprob": -0.44228316934741274, "compression_ratio": 1.9475806451612903, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 73.61, "end": 73.83, "word": " it", "probability": 0.0902099609375}, {"start": 73.83, "end": 73.97, "word": " means", "probability": 0.890625}, {"start": 73.97, "end": 74.19, "word": " that", "probability": 0.453857421875}, {"start": 74.19, "end": 74.19, "word": " from", "probability": 0.269775390625}, {"start": 74.19, "end": 74.47, "word": " each", "probability": 0.60205078125}, {"start": 74.47, "end": 74.89, "word": " class", "probability": 0.8671875}, {"start": 74.89, "end": 75.11, "word": " you", "probability": 0.33837890625}, {"start": 75.11, "end": 75.29, "word": " can", "probability": 0.6171875}, {"start": 75.29, "end": 75.55, "word": " make", "probability": 0.49658203125}, {"start": 75.55, "end": 75.73, "word": " two", "probability": 0.57373046875}, {"start": 75.73, "end": 76.53, "word": " subclasses", "probability": 0.7315266927083334}, {"start": 76.53, "end": 76.75, "word": " to", "probability": 0.65869140625}, {"start": 76.75, "end": 76.97, "word": " add", "probability": 0.8427734375}, {"start": 76.97, "end": 77.13, "word": " the", "probability": 0.5927734375}, {"start": 77.13, "end": 77.87, "word": " first", "probability": 0.763671875}, {"start": 77.87, "end": 77.87, "word": " functionality", "probability": 0.81298828125}, {"start": 77.87, "end": 78.73, "word": " or", "probability": 0.7626953125}, {"start": 78.73, "end": 78.89, "word": " to", "probability": 0.3671875}, {"start": 78.89, "end": 79.05, "word": " add", "probability": 0.90869140625}, {"start": 79.05, "end": 79.19, "word": " the", "probability": 0.578125}, {"start": 79.19, "end": 80.09, "word": " second", "probability": 0.70703125}, {"start": 80.09, "end": 80.85, "word": " functionality", "probability": 0.8896484375}, {"start": 80.85, "end": 81.27, "word": " and", "probability": 0.466552734375}, {"start": 81.27, "end": 81.45, "word": " see", "probability": 0.2041015625}, {"start": 81.45, "end": 81.59, "word": " for", "probability": 0.382568359375}, {"start": 81.59, "end": 81.95, "word": " example", "probability": 0.89892578125}, {"start": 81.95, "end": 82.27, "word": " that", "probability": 0.52880859375}, {"start": 82.27, "end": 82.49, "word": " if", "probability": 0.482666015625}, {"start": 82.49, "end": 82.49, "word": " I", "probability": 0.88671875}, {"start": 82.49, "end": 82.71, "word": " have", "probability": 0.8955078125}, {"start": 82.71, "end": 83.19, "word": " shapes", "probability": 0.54443359375}, {"start": 83.19, "end": 84.27, "word": " in", "probability": 0.6708984375}, {"start": 84.27, "end": 84.43, "word": " the", "probability": 0.77685546875}, {"start": 84.43, "end": 84.67, "word": " example", "probability": 0.84619140625}, {"start": 84.67, "end": 84.99, "word": " given", "probability": 0.2315673828125}, {"start": 84.99, "end": 85.15, "word": " in", "probability": 0.7021484375}, {"start": 85.15, "end": 85.21, "word": " the", "probability": 0.7890625}, {"start": 85.21, "end": 85.21, "word": " previous", "probability": 0.46826171875}, {"start": 85.21, "end": 85.51, "word": " lecture", "probability": 0.70556640625}, {"start": 85.51, "end": 86.23, "word": " circle,", "probability": 0.6640625}, {"start": 86.33, "end": 86.81, "word": " rectangle", "probability": 0.916015625}, {"start": 86.81, "end": 87.45, "word": " and", "probability": 0.66259765625}, {"start": 87.45, "end": 87.59, "word": " I", "probability": 0.9326171875}, {"start": 87.59, "end": 87.71, "word": " want", "probability": 0.6123046875}, {"start": 87.71, "end": 87.81, "word": " to", "probability": 0.96630859375}, {"start": 87.81, "end": 88.03, "word": " add", "probability": 0.9228515625}, {"start": 88.03, "end": 88.17, "word": " a", "probability": 0.3046875}, {"start": 88.17, "end": 88.45, "word": " border", "probability": 0.8603515625}, {"start": 88.45, "end": 88.67, "word": " to", "probability": 0.740234375}, {"start": 88.67, "end": 88.81, "word": " these", "probability": 0.72412109375}, {"start": 88.81, "end": 89.23, "word": " shapes", "probability": 0.91845703125}, {"start": 89.23, "end": 90.49, "word": " the", "probability": 0.666015625}, {"start": 90.49, "end": 91.03, "word": " traditional", "probability": 0.724609375}, {"start": 91.03, "end": 91.15, "word": " way", "probability": 0.80322265625}, {"start": 91.15, "end": 91.45, "word": " is", "probability": 0.6669921875}, {"start": 91.45, "end": 91.59, "word": " that", "probability": 0.495361328125}, {"start": 91.59, "end": 91.99, "word": " first", "probability": 0.352783203125}, {"start": 91.99, "end": 92.19, "word": " we", "probability": 0.65234375}, {"start": 92.19, "end": 92.39, "word": " make", "probability": 0.56591796875}, {"start": 92.39, "end": 92.57, "word": " a", "probability": 0.412841796875}, {"start": 92.57, "end": 92.89, "word": " circle", "probability": 0.96923828125}, {"start": 92.89, "end": 93.13, "word": " with", "probability": 0.90478515625}, {"start": 93.13, "end": 93.49, "word": " border", "probability": 0.7294921875}, {"start": 93.49, "end": 94.33, "word": " and", "probability": 0.66796875}, {"start": 94.33, "end": 94.45, "word": " you", "probability": 0.434326171875}, {"start": 94.45, "end": 94.51, "word": " will", "probability": 0.34619140625}, {"start": 94.51, "end": 94.63, "word": " have", "probability": 0.7705078125}, {"start": 94.63, "end": 94.79, "word": " to", "probability": 0.96728515625}, {"start": 94.79, "end": 94.97, "word": " make", "probability": 0.91748046875}, {"start": 94.97, "end": 95.03, "word": " another", "probability": 0.74560546875}, {"start": 95.03, "end": 95.27, "word": " class", "probability": 0.90771484375}, {"start": 95.27, "end": 95.77, "word": " called", "probability": 0.2415771484375}, {"start": 95.77, "end": 96.43, "word": " rectangle", "probability": 0.90234375}, {"start": 96.43, "end": 96.69, "word": " with", "probability": 0.9111328125}, {"start": 96.69, "end": 97.05, "word": " border", "probability": 0.84033203125}, {"start": 97.05, "end": 97.77, "word": " this", "probability": 0.4482421875}, {"start": 97.77, "end": 97.81, "word": " is", "probability": 0.6103515625}, {"start": 97.81, "end": 98.13, "word": " using", "probability": 0.5478515625}, {"start": 98.13, "end": 99.05, "word": " subclassing", "probability": 0.8714192708333334}, {"start": 99.05, "end": 99.67, "word": " but", "probability": 0.78515625}, {"start": 99.67, "end": 99.77, "word": " we", "probability": 0.481689453125}, {"start": 99.77, "end": 99.87, "word": " say", "probability": 0.70361328125}, {"start": 99.87, "end": 100.01, "word": " that", "probability": 0.56103515625}, {"start": 100.01, "end": 100.03, "word": " the", "probability": 0.84765625}, {"start": 100.03, "end": 100.55, "word": " best", "probability": 0.79345703125}, {"start": 100.55, "end": 100.59, "word": " way", "probability": 0.89794921875}, {"start": 100.59, "end": 100.81, "word": " is", "probability": 0.8076171875}, {"start": 100.81, "end": 100.97, "word": " to", "probability": 0.78369140625}, {"start": 100.97, "end": 101.35, "word": " use", "probability": 0.8837890625}, {"start": 101.35, "end": 101.59, "word": " the", "probability": 0.57568359375}, {"start": 101.59, "end": 102.23, "word": " decorator", "probability": 0.976806640625}], "temperature": 1.0}, {"id": 5, "seek": 13062, "start": 103.04, "end": 130.62, "text": "It's the idea that I'm making a class that encloses another class The idea of the decorator is that I have this class that I want to add something new to it Actually, I create another class, this is the decorator It encloses an object from the class that I want to add something new to it For example, this class or object has methods x and y", "tokens": [3522, 311, 264, 1558, 300, 286, 478, 1455, 257, 1508, 300, 20987, 4201, 1071, 1508, 440, 1558, 295, 264, 7919, 1639, 307, 300, 286, 362, 341, 1508, 300, 286, 528, 281, 909, 746, 777, 281, 309, 5135, 11, 286, 1884, 1071, 1508, 11, 341, 307, 264, 7919, 1639, 467, 20987, 4201, 364, 2657, 490, 264, 1508, 300, 286, 528, 281, 909, 746, 777, 281, 309, 1171, 1365, 11, 341, 1508, 420, 2657, 575, 7150, 2031, 293, 288], "avg_logprob": -0.3752003094324699, "compression_ratio": 1.9883720930232558, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 103.04, "end": 103.38, "word": "It's", "probability": 0.3607177734375}, {"start": 103.38, "end": 103.48, "word": " the", "probability": 0.580078125}, {"start": 103.48, "end": 103.68, "word": " idea", "probability": 0.73583984375}, {"start": 103.68, "end": 104.18, "word": " that", "probability": 0.57958984375}, {"start": 104.18, "end": 104.68, "word": " I'm", "probability": 0.572265625}, {"start": 104.68, "end": 104.82, "word": " making", "probability": 0.343994140625}, {"start": 104.82, "end": 105.58, "word": " a", "probability": 0.6806640625}, {"start": 105.58, "end": 106.0, "word": " class", "probability": 0.884765625}, {"start": 106.0, "end": 106.18, "word": " that", "probability": 0.6103515625}, {"start": 106.18, "end": 106.54, "word": " encloses", "probability": 0.519805908203125}, {"start": 106.54, "end": 106.78, "word": " another", "probability": 0.861328125}, {"start": 106.78, "end": 107.42, "word": " class", "probability": 0.8935546875}, {"start": 107.42, "end": 108.94, "word": " The", "probability": 0.1929931640625}, {"start": 108.94, "end": 109.3, "word": " idea", "probability": 0.79296875}, {"start": 109.3, "end": 109.46, "word": " of", "probability": 0.6845703125}, {"start": 109.46, "end": 109.56, "word": " the", "probability": 0.39306640625}, {"start": 109.56, "end": 110.02, "word": " decorator", "probability": 0.94287109375}, {"start": 110.02, "end": 110.2, "word": " is", "probability": 0.869140625}, {"start": 110.2, "end": 110.3, "word": " that", "probability": 0.712890625}, {"start": 110.3, "end": 110.4, "word": " I", "probability": 0.861328125}, {"start": 110.4, "end": 110.64, "word": " have", "probability": 0.853515625}, {"start": 110.64, "end": 111.26, "word": " this", "probability": 0.80126953125}, {"start": 111.26, "end": 111.68, "word": " class", "probability": 0.89453125}, {"start": 111.68, "end": 111.84, "word": " that", "probability": 0.52001953125}, {"start": 111.84, "end": 112.04, "word": " I", "probability": 0.97900390625}, {"start": 112.04, "end": 112.58, "word": " want", "probability": 0.67626953125}, {"start": 112.58, "end": 112.66, "word": " to", "probability": 0.96923828125}, {"start": 112.66, "end": 112.84, "word": " add", "probability": 0.91259765625}, {"start": 112.84, "end": 113.26, "word": " something", "probability": 0.4072265625}, {"start": 113.26, "end": 113.58, "word": " new", "probability": 0.6171875}, {"start": 113.58, "end": 113.68, "word": " to", "probability": 0.5654296875}, {"start": 113.68, "end": 114.12, "word": " it", "probability": 0.8271484375}, {"start": 114.12, "end": 114.68, "word": " Actually,", "probability": 0.365478515625}, {"start": 115.06, "end": 115.36, "word": " I", "probability": 0.7255859375}, {"start": 115.36, "end": 115.76, "word": " create", "probability": 0.42919921875}, {"start": 115.76, "end": 116.44, "word": " another", "probability": 0.80029296875}, {"start": 116.44, "end": 117.68, "word": " class,", "probability": 0.95654296875}, {"start": 118.58, "end": 119.34, "word": " this", "probability": 0.615234375}, {"start": 119.34, "end": 119.36, "word": " is", "probability": 0.80712890625}, {"start": 119.36, "end": 119.46, "word": " the", "probability": 0.83984375}, {"start": 119.46, "end": 120.02, "word": " decorator", "probability": 0.98974609375}, {"start": 120.02, "end": 122.12, "word": " It", "probability": 0.314697265625}, {"start": 122.12, "end": 122.42, "word": " encloses", "probability": 0.918212890625}, {"start": 122.42, "end": 122.6, "word": " an", "probability": 0.58349609375}, {"start": 122.6, "end": 122.84, "word": " object", "probability": 0.97607421875}, {"start": 122.84, "end": 123.06, "word": " from", "probability": 0.689453125}, {"start": 123.06, "end": 123.18, "word": " the", "probability": 0.810546875}, {"start": 123.18, "end": 123.52, "word": " class", "probability": 0.8623046875}, {"start": 123.52, "end": 123.74, "word": " that", "probability": 0.84375}, {"start": 123.74, "end": 123.86, "word": " I", "probability": 0.8896484375}, {"start": 123.86, "end": 124.0, "word": " want", "probability": 0.8310546875}, {"start": 124.0, "end": 124.0, "word": " to", "probability": 0.96923828125}, {"start": 124.0, "end": 124.18, "word": " add", "probability": 0.92626953125}, {"start": 124.18, "end": 124.62, "word": " something", "probability": 0.64453125}, {"start": 124.62, "end": 124.92, "word": " new", "probability": 0.84375}, {"start": 124.92, "end": 124.92, "word": " to", "probability": 0.912109375}, {"start": 124.92, "end": 125.82, "word": " it", "probability": 0.8330078125}, {"start": 125.82, "end": 126.42, "word": " For", "probability": 0.7880859375}, {"start": 126.42, "end": 126.98, "word": " example,", "probability": 0.92626953125}, {"start": 127.12, "end": 127.34, "word": " this", "probability": 0.720703125}, {"start": 127.34, "end": 127.82, "word": " class", "probability": 0.67724609375}, {"start": 127.82, "end": 128.66, "word": " or", "probability": 0.71923828125}, {"start": 128.66, "end": 129.08, "word": " object", "probability": 0.83935546875}, {"start": 129.08, "end": 129.5, "word": " has", "probability": 0.8310546875}, {"start": 129.5, "end": 129.9, "word": " methods", "probability": 0.72119140625}, {"start": 129.9, "end": 130.2, "word": " x", "probability": 0.73046875}, {"start": 130.2, "end": 130.4, "word": " and", "probability": 0.91015625}, {"start": 130.4, "end": 130.62, "word": " y", "probability": 0.998046875}], "temperature": 1.0}, {"id": 6, "seek": 15536, "start": 132.52, "end": 155.36, "text": " I will add a new method, all that I need to do is to do here in this envelope, here there is x and y I will add a new method, I will create a class decorator containing an object inside it and here I will add the new method to z and of course you have to put here x and y to direct", "tokens": [286, 486, 909, 257, 777, 3170, 11, 439, 300, 286, 643, 281, 360, 307, 281, 360, 510, 294, 341, 19989, 11, 510, 456, 307, 2031, 293, 288, 286, 486, 909, 257, 777, 3170, 11, 286, 486, 1884, 257, 1508, 7919, 1639, 19273, 364, 2657, 1854, 309, 293, 510, 286, 486, 909, 264, 777, 3170, 281, 710, 293, 295, 1164, 291, 362, 281, 829, 510, 2031, 293, 288, 281, 2047], "avg_logprob": -0.4533482053450176, "compression_ratio": 1.7848101265822784, "no_speech_prob": 1.2099742889404297e-05, "words": [{"start": 132.51999999999998, "end": 133.04, "word": " I", "probability": 0.337646484375}, {"start": 133.04, "end": 133.2, "word": " will", "probability": 0.61181640625}, {"start": 133.2, "end": 133.48, "word": " add", "probability": 0.81494140625}, {"start": 133.48, "end": 133.68, "word": " a", "probability": 0.82177734375}, {"start": 133.68, "end": 133.68, "word": " new", "probability": 0.87939453125}, {"start": 133.68, "end": 133.94, "word": " method,", "probability": 0.93701171875}, {"start": 134.54, "end": 135.14, "word": " all", "probability": 0.300048828125}, {"start": 135.14, "end": 135.24, "word": " that", "probability": 0.250244140625}, {"start": 135.24, "end": 135.32, "word": " I", "probability": 0.7080078125}, {"start": 135.32, "end": 135.58, "word": " need", "probability": 0.7783203125}, {"start": 135.58, "end": 135.7, "word": " to", "probability": 0.888671875}, {"start": 135.7, "end": 135.86, "word": " do", "probability": 0.86669921875}, {"start": 135.86, "end": 136.12, "word": " is", "probability": 0.75}, {"start": 136.12, "end": 136.2, "word": " to", "probability": 0.5927734375}, {"start": 136.2, "end": 136.36, "word": " do", "probability": 0.2822265625}, {"start": 136.36, "end": 136.64, "word": " here", "probability": 0.475341796875}, {"start": 136.64, "end": 137.78, "word": " in", "probability": 0.685546875}, {"start": 137.78, "end": 137.88, "word": " this", "probability": 0.74853515625}, {"start": 137.88, "end": 138.26, "word": " envelope,", "probability": 0.40478515625}, {"start": 138.8, "end": 138.94, "word": " here", "probability": 0.68212890625}, {"start": 138.94, "end": 139.38, "word": " there", "probability": 0.365478515625}, {"start": 139.38, "end": 139.38, "word": " is", "probability": 0.91064453125}, {"start": 139.38, "end": 139.62, "word": " x", "probability": 0.7001953125}, {"start": 139.62, "end": 139.78, "word": " and", "probability": 0.8828125}, {"start": 139.78, "end": 139.92, "word": " y", "probability": 0.98095703125}, {"start": 139.92, "end": 140.96, "word": " I", "probability": 0.31201171875}, {"start": 140.96, "end": 142.7, "word": " will", "probability": 0.81787109375}, {"start": 142.7, "end": 142.94, "word": " add", "probability": 0.89013671875}, {"start": 142.94, "end": 143.06, "word": " a", "probability": 0.9599609375}, {"start": 143.06, "end": 143.6, "word": " new", "probability": 0.9052734375}, {"start": 143.6, "end": 143.6, "word": " method,", "probability": 0.94580078125}, {"start": 144.08, "end": 144.34, "word": " I", "probability": 0.88525390625}, {"start": 144.34, "end": 144.34, "word": " will", "probability": 0.568359375}, {"start": 144.34, "end": 144.54, "word": " create", "probability": 0.244873046875}, {"start": 144.54, "end": 144.8, "word": " a", "probability": 0.68896484375}, {"start": 144.8, "end": 145.1, "word": " class", "probability": 0.95068359375}, {"start": 145.1, "end": 145.76, "word": " decorator", "probability": 0.92822265625}, {"start": 145.76, "end": 147.26, "word": " containing", "probability": 0.32275390625}, {"start": 147.26, "end": 147.58, "word": " an", "probability": 0.61083984375}, {"start": 147.58, "end": 148.02, "word": " object", "probability": 0.95166015625}, {"start": 148.02, "end": 149.46, "word": " inside", "probability": 0.73046875}, {"start": 149.46, "end": 149.78, "word": " it", "probability": 0.73681640625}, {"start": 149.78, "end": 149.92, "word": " and", "probability": 0.53271484375}, {"start": 149.92, "end": 150.08, "word": " here", "probability": 0.7275390625}, {"start": 150.08, "end": 150.22, "word": " I", "probability": 0.9638671875}, {"start": 150.22, "end": 150.24, "word": " will", "probability": 0.407470703125}, {"start": 150.24, "end": 150.34, "word": " add", "probability": 0.91162109375}, {"start": 150.34, "end": 150.5, "word": " the", "probability": 0.69384765625}, {"start": 150.5, "end": 150.54, "word": " new", "probability": 0.88525390625}, {"start": 150.54, "end": 151.06, "word": " method", "probability": 0.97216796875}, {"start": 151.06, "end": 151.32, "word": " to", "probability": 0.55859375}, {"start": 151.32, "end": 151.46, "word": " z", "probability": 0.666015625}, {"start": 151.46, "end": 152.04, "word": " and", "probability": 0.468505859375}, {"start": 152.04, "end": 152.3, "word": " of", "probability": 0.80322265625}, {"start": 152.3, "end": 152.38, "word": " course", "probability": 0.95849609375}, {"start": 152.38, "end": 152.76, "word": " you", "probability": 0.65283203125}, {"start": 152.76, "end": 152.86, "word": " have", "probability": 0.32470703125}, {"start": 152.86, "end": 153.0, "word": " to", "probability": 0.96484375}, {"start": 153.0, "end": 153.3, "word": " put", "probability": 0.7119140625}, {"start": 153.3, "end": 153.66, "word": " here", "probability": 0.63525390625}, {"start": 153.66, "end": 154.4, "word": " x", "probability": 0.96826171875}, {"start": 154.4, "end": 154.58, "word": " and", "probability": 0.93212890625}, {"start": 154.58, "end": 154.84, "word": " y", "probability": 0.9951171875}, {"start": 154.84, "end": 155.04, "word": " to", "probability": 0.2178955078125}, {"start": 155.04, "end": 155.36, "word": " direct", "probability": 0.5927734375}], "temperature": 1.0}, {"id": 7, "seek": 18013, "start": 156.61, "end": 180.13, "text": " and this is the negativity of the decorator because all the methods inside must be done outside so that the client sees the decorator as he sees the object inside it wants to modify a certain method from these you overwrite it, you add the extra code and then you close the method inside and this is what we did when we added a border to the circle", "tokens": [293, 341, 307, 264, 2485, 10662, 507, 295, 264, 7919, 1639, 570, 439, 264, 7150, 1854, 1633, 312, 1096, 2380, 370, 300, 264, 6423, 8194, 264, 7919, 1639, 382, 415, 8194, 264, 2657, 1854, 309, 2738, 281, 16927, 257, 1629, 3170, 490, 613, 291, 670, 21561, 309, 11, 291, 909, 264, 2857, 3089, 293, 550, 291, 1998, 264, 3170, 1854, 293, 341, 307, 437, 321, 630, 562, 321, 3869, 257, 7838, 281, 264, 6329], "avg_logprob": -0.5499999809265137, "compression_ratio": 1.8082901554404145, "no_speech_prob": 8.505582809448242e-05, "words": [{"start": 156.60999999999999, "end": 157.13, "word": " and", "probability": 0.0894775390625}, {"start": 157.13, "end": 157.55, "word": " this", "probability": 0.62841796875}, {"start": 157.55, "end": 157.63, "word": " is", "probability": 0.80615234375}, {"start": 157.63, "end": 157.69, "word": " the", "probability": 0.5087890625}, {"start": 157.69, "end": 158.07, "word": " negativity", "probability": 0.4106852213541667}, {"start": 158.07, "end": 158.23, "word": " of", "probability": 0.85986328125}, {"start": 158.23, "end": 158.35, "word": " the", "probability": 0.56103515625}, {"start": 158.35, "end": 158.85, "word": " decorator", "probability": 0.886474609375}, {"start": 158.85, "end": 159.05, "word": " because", "probability": 0.391845703125}, {"start": 159.05, "end": 160.31, "word": " all", "probability": 0.5517578125}, {"start": 160.31, "end": 160.45, "word": " the", "probability": 0.45751953125}, {"start": 160.45, "end": 160.73, "word": " methods", "probability": 0.78857421875}, {"start": 160.73, "end": 161.41, "word": " inside", "probability": 0.488525390625}, {"start": 161.41, "end": 161.79, "word": " must", "probability": 0.2509765625}, {"start": 161.79, "end": 161.91, "word": " be", "probability": 0.82470703125}, {"start": 161.91, "end": 162.13, "word": " done", "probability": 0.21044921875}, {"start": 162.13, "end": 162.39, "word": " outside", "probability": 0.7060546875}, {"start": 162.39, "end": 162.59, "word": " so", "probability": 0.40234375}, {"start": 162.59, "end": 162.93, "word": " that", "probability": 0.77734375}, {"start": 162.93, "end": 163.07, "word": " the", "probability": 0.8076171875}, {"start": 163.07, "end": 163.47, "word": " client", "probability": 0.9130859375}, {"start": 163.47, "end": 164.21, "word": " sees", "probability": 0.474609375}, {"start": 164.21, "end": 164.39, "word": " the", "probability": 0.86279296875}, {"start": 164.39, "end": 164.87, "word": " decorator", "probability": 0.960693359375}, {"start": 164.87, "end": 164.99, "word": " as", "probability": 0.66259765625}, {"start": 164.99, "end": 165.15, "word": " he", "probability": 0.287841796875}, {"start": 165.15, "end": 165.53, "word": " sees", "probability": 0.92724609375}, {"start": 165.53, "end": 166.33, "word": " the", "probability": 0.86279296875}, {"start": 166.33, "end": 166.61, "word": " object", "probability": 0.79541015625}, {"start": 166.61, "end": 167.79, "word": " inside", "probability": 0.658203125}, {"start": 167.79, "end": 169.33, "word": " it", "probability": 0.130615234375}, {"start": 169.33, "end": 169.37, "word": " wants", "probability": 0.256591796875}, {"start": 169.37, "end": 169.51, "word": " to", "probability": 0.95703125}, {"start": 169.51, "end": 169.87, "word": " modify", "probability": 0.52001953125}, {"start": 169.87, "end": 170.03, "word": " a", "probability": 0.8134765625}, {"start": 170.03, "end": 170.53, "word": " certain", "probability": 0.30859375}, {"start": 170.53, "end": 170.71, "word": " method", "probability": 0.94970703125}, {"start": 170.71, "end": 170.85, "word": " from", "probability": 0.3583984375}, {"start": 170.85, "end": 171.17, "word": " these", "probability": 0.39892578125}, {"start": 171.17, "end": 172.03, "word": " you", "probability": 0.253662109375}, {"start": 172.03, "end": 173.03, "word": " overwrite", "probability": 0.5811767578125}, {"start": 173.03, "end": 173.03, "word": " it,", "probability": 0.85107421875}, {"start": 173.11, "end": 173.17, "word": " you", "probability": 0.41162109375}, {"start": 173.17, "end": 173.35, "word": " add", "probability": 0.8896484375}, {"start": 173.35, "end": 173.53, "word": " the", "probability": 0.509765625}, {"start": 173.53, "end": 174.01, "word": " extra", "probability": 0.468505859375}, {"start": 174.01, "end": 174.01, "word": " code", "probability": 0.947265625}, {"start": 174.01, "end": 174.45, "word": " and", "probability": 0.6474609375}, {"start": 174.45, "end": 174.71, "word": " then", "probability": 0.66357421875}, {"start": 174.71, "end": 174.85, "word": " you", "probability": 0.60400390625}, {"start": 174.85, "end": 175.11, "word": " close", "probability": 0.1617431640625}, {"start": 175.11, "end": 175.27, "word": " the", "probability": 0.86376953125}, {"start": 175.27, "end": 175.63, "word": " method", "probability": 0.9013671875}, {"start": 175.63, "end": 176.15, "word": " inside", "probability": 0.83056640625}, {"start": 176.15, "end": 176.87, "word": " and", "probability": 0.53515625}, {"start": 176.87, "end": 177.03, "word": " this", "probability": 0.81640625}, {"start": 177.03, "end": 177.09, "word": " is", "probability": 0.90283203125}, {"start": 177.09, "end": 177.15, "word": " what", "probability": 0.9384765625}, {"start": 177.15, "end": 177.45, "word": " we", "probability": 0.89794921875}, {"start": 177.45, "end": 177.45, "word": " did", "probability": 0.892578125}, {"start": 177.45, "end": 177.67, "word": " when", "probability": 0.89306640625}, {"start": 177.67, "end": 177.91, "word": " we", "probability": 0.94580078125}, {"start": 177.91, "end": 178.15, "word": " added", "probability": 0.87451171875}, {"start": 178.15, "end": 178.37, "word": " a", "probability": 0.52587890625}, {"start": 178.37, "end": 178.69, "word": " border", "probability": 0.87939453125}, {"start": 178.69, "end": 179.67, "word": " to", "probability": 0.81298828125}, {"start": 179.67, "end": 179.79, "word": " the", "probability": 0.8779296875}, {"start": 179.79, "end": 180.13, "word": " circle", "probability": 0.5654296875}], "temperature": 1.0}, {"id": 8, "seek": 21201, "start": 185.71, "end": 212.01, "text": "we created a class named border class border I made it to implement I shape and I remove the object from I shape why did I make it to take the type of I shape? so that the client sees it as he sees the circle and rectangle actually this border is not a border to itself it is a border to a shape in the end, the result is a new shape that has a frame it wraps a shape", "tokens": [826, 2942, 257, 1508, 4926, 7838, 1508, 7838, 286, 1027, 309, 281, 4445, 286, 3909, 293, 286, 4159, 264, 2657, 490, 286, 3909, 983, 630, 286, 652, 309, 281, 747, 264, 2010, 295, 286, 3909, 30, 370, 300, 264, 6423, 8194, 309, 382, 415, 8194, 264, 6329, 293, 21930, 767, 341, 7838, 307, 406, 257, 7838, 281, 2564, 309, 307, 257, 7838, 281, 257, 3909, 294, 264, 917, 11, 264, 1874, 307, 257, 777, 3909, 300, 575, 257, 3920, 309, 25831, 257, 3909], "avg_logprob": -0.5777529967682702, "compression_ratio": 1.882051282051282, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 185.71, "end": 185.95, "word": "we", "probability": 0.2176513671875}, {"start": 185.95, "end": 186.29, "word": " created", "probability": 0.340087890625}, {"start": 186.29, "end": 186.49, "word": " a", "probability": 0.8408203125}, {"start": 186.49, "end": 186.81, "word": " class", "probability": 0.9365234375}, {"start": 186.81, "end": 187.15, "word": " named", "probability": 0.364501953125}, {"start": 187.15, "end": 188.27, "word": " border", "probability": 0.59033203125}, {"start": 188.27, "end": 189.85, "word": " class", "probability": 0.6328125}, {"start": 189.85, "end": 190.41, "word": " border", "probability": 0.73291015625}, {"start": 190.41, "end": 191.13, "word": " I", "probability": 0.11529541015625}, {"start": 191.13, "end": 191.43, "word": " made", "probability": 0.455078125}, {"start": 191.43, "end": 191.53, "word": " it", "probability": 0.544921875}, {"start": 191.53, "end": 191.59, "word": " to", "probability": 0.2314453125}, {"start": 191.59, "end": 192.21, "word": " implement", "probability": 0.60888671875}, {"start": 192.21, "end": 192.57, "word": " I", "probability": 0.343505859375}, {"start": 192.57, "end": 192.91, "word": " shape", "probability": 0.783203125}, {"start": 192.91, "end": 193.87, "word": " and", "probability": 0.65087890625}, {"start": 193.87, "end": 193.97, "word": " I", "probability": 0.2724609375}, {"start": 193.97, "end": 194.21, "word": " remove", "probability": 0.04095458984375}, {"start": 194.21, "end": 194.39, "word": " the", "probability": 0.5390625}, {"start": 194.39, "end": 194.65, "word": " object", "probability": 0.91943359375}, {"start": 194.65, "end": 194.81, "word": " from", "probability": 0.7021484375}, {"start": 194.81, "end": 195.01, "word": " I", "probability": 0.64697265625}, {"start": 195.01, "end": 195.25, "word": " shape", "probability": 0.88818359375}, {"start": 195.25, "end": 196.35, "word": " why", "probability": 0.48779296875}, {"start": 196.35, "end": 196.45, "word": " did", "probability": 0.5205078125}, {"start": 196.45, "end": 196.45, "word": " I", "probability": 0.892578125}, {"start": 196.45, "end": 196.63, "word": " make", "probability": 0.6181640625}, {"start": 196.63, "end": 196.77, "word": " it", "probability": 0.765625}, {"start": 196.77, "end": 196.79, "word": " to", "probability": 0.52392578125}, {"start": 196.79, "end": 196.99, "word": " take", "probability": 0.54248046875}, {"start": 196.99, "end": 197.09, "word": " the", "probability": 0.4013671875}, {"start": 197.09, "end": 197.23, "word": " type", "probability": 0.392578125}, {"start": 197.23, "end": 197.35, "word": " of", "probability": 0.794921875}, {"start": 197.35, "end": 197.51, "word": " I", "probability": 0.9189453125}, {"start": 197.51, "end": 197.75, "word": " shape?", "probability": 0.890625}, {"start": 197.83, "end": 197.95, "word": " so", "probability": 0.465087890625}, {"start": 197.95, "end": 198.11, "word": " that", "probability": 0.60498046875}, {"start": 198.11, "end": 198.23, "word": " the", "probability": 0.716796875}, {"start": 198.23, "end": 198.51, "word": " client", "probability": 0.83642578125}, {"start": 198.51, "end": 198.85, "word": " sees", "probability": 0.483642578125}, {"start": 198.85, "end": 198.95, "word": " it", "probability": 0.39404296875}, {"start": 198.95, "end": 199.01, "word": " as", "probability": 0.5546875}, {"start": 199.01, "end": 199.19, "word": " he", "probability": 0.354248046875}, {"start": 199.19, "end": 199.41, "word": " sees", "probability": 0.935546875}, {"start": 199.41, "end": 199.57, "word": " the", "probability": 0.54833984375}, {"start": 199.57, "end": 199.85, "word": " circle", "probability": 0.91162109375}, {"start": 199.85, "end": 199.99, "word": " and", "probability": 0.87158203125}, {"start": 199.99, "end": 200.45, "word": " rectangle", "probability": 0.86962890625}, {"start": 200.45, "end": 201.17, "word": " actually", "probability": 0.369384765625}, {"start": 201.17, "end": 201.51, "word": " this", "probability": 0.68212890625}, {"start": 201.51, "end": 201.95, "word": " border", "probability": 0.783203125}, {"start": 201.95, "end": 202.25, "word": " is", "probability": 0.89111328125}, {"start": 202.25, "end": 202.45, "word": " not", "probability": 0.91357421875}, {"start": 202.45, "end": 202.57, "word": " a", "probability": 0.47314453125}, {"start": 202.57, "end": 202.81, "word": " border", "probability": 0.615234375}, {"start": 202.81, "end": 203.01, "word": " to", "probability": 0.236083984375}, {"start": 203.01, "end": 203.29, "word": " itself", "probability": 0.433837890625}, {"start": 203.29, "end": 203.93, "word": " it", "probability": 0.6923828125}, {"start": 203.93, "end": 204.67, "word": " is", "probability": 0.72509765625}, {"start": 204.67, "end": 204.77, "word": " a", "probability": 0.85693359375}, {"start": 204.77, "end": 205.07, "word": " border", "probability": 0.8125}, {"start": 205.07, "end": 205.35, "word": " to", "probability": 0.8154296875}, {"start": 205.35, "end": 205.45, "word": " a", "probability": 0.37646484375}, {"start": 205.45, "end": 205.63, "word": " shape", "probability": 0.86328125}, {"start": 205.63, "end": 206.47, "word": " in", "probability": 0.3916015625}, {"start": 206.47, "end": 206.57, "word": " the", "probability": 0.78955078125}, {"start": 206.57, "end": 206.83, "word": " end,", "probability": 0.89599609375}, {"start": 206.89, "end": 206.97, "word": " the", "probability": 0.80029296875}, {"start": 206.97, "end": 207.29, "word": " result", "probability": 0.72314453125}, {"start": 207.29, "end": 207.73, "word": " is", "probability": 0.3193359375}, {"start": 207.73, "end": 208.21, "word": " a", "probability": 0.70703125}, {"start": 208.21, "end": 208.91, "word": " new", "probability": 0.85302734375}, {"start": 208.91, "end": 208.91, "word": " shape", "probability": 0.88232421875}, {"start": 208.91, "end": 209.63, "word": " that", "probability": 0.342041015625}, {"start": 209.63, "end": 209.73, "word": " has", "probability": 0.9150390625}, {"start": 209.73, "end": 209.77, "word": " a", "probability": 0.92138671875}, {"start": 209.77, "end": 210.05, "word": " frame", "probability": 0.490234375}, {"start": 210.05, "end": 211.17, "word": " it", "probability": 0.5068359375}, {"start": 211.17, "end": 211.53, "word": " wraps", "probability": 0.265625}, {"start": 211.53, "end": 211.79, "word": " a", "probability": 0.4404296875}, {"start": 211.79, "end": 212.01, "word": " shape", "probability": 0.849609375}], "temperature": 1.0}, {"id": 9, "seek": 23876, "start": 213.96, "end": 238.76, "text": " So I'm actually passing shape to it, and look here, the shape has a draw method, you have to write it here, we wrote the draw, and the shape has a describe method, we also wrote the method describe, but inside it we say shape.describe and the draw follows methods or additional code, which is a personal border, then we say shape.draw So this is a way to add functionality using the decorator", "tokens": [407, 286, 478, 767, 8437, 3909, 281, 309, 11, 293, 574, 510, 11, 264, 3909, 575, 257, 2642, 3170, 11, 291, 362, 281, 2464, 309, 510, 11, 321, 4114, 264, 2642, 11, 293, 264, 3909, 575, 257, 6786, 3170, 11, 321, 611, 4114, 264, 3170, 6786, 11, 457, 1854, 309, 321, 584, 3909, 13, 14792, 8056, 293, 264, 2642, 10002, 7150, 420, 4497, 3089, 11, 597, 307, 257, 2973, 7838, 11, 550, 321, 584, 3909, 13, 48848, 407, 341, 307, 257, 636, 281, 909, 14980, 1228, 264, 7919, 1639], "avg_logprob": -0.5711805740992228, "compression_ratio": 1.8803827751196172, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 213.96, "end": 214.14, "word": " So", "probability": 0.1529541015625}, {"start": 214.14, "end": 214.56, "word": " I'm", "probability": 0.384368896484375}, {"start": 214.56, "end": 214.56, "word": " actually", "probability": 0.270751953125}, {"start": 214.56, "end": 214.9, "word": " passing", "probability": 0.66162109375}, {"start": 214.9, "end": 215.4, "word": " shape", "probability": 0.42236328125}, {"start": 215.4, "end": 215.78, "word": " to", "probability": 0.56103515625}, {"start": 215.78, "end": 215.78, "word": " it,", "probability": 0.64599609375}, {"start": 216.14, "end": 216.18, "word": " and", "probability": 0.720703125}, {"start": 216.18, "end": 216.88, "word": " look", "probability": 0.271240234375}, {"start": 216.88, "end": 217.3, "word": " here,", "probability": 0.3125}, {"start": 217.46, "end": 218.6, "word": " the", "probability": 0.260498046875}, {"start": 218.6, "end": 218.84, "word": " shape", "probability": 0.810546875}, {"start": 218.84, "end": 219.0, "word": " has", "probability": 0.82275390625}, {"start": 219.0, "end": 219.28, "word": " a", "probability": 0.59912109375}, {"start": 219.28, "end": 219.46, "word": " draw", "probability": 0.390625}, {"start": 219.46, "end": 219.48, "word": " method,", "probability": 0.91162109375}, {"start": 219.5, "end": 219.62, "word": " you", "probability": 0.46044921875}, {"start": 219.62, "end": 219.72, "word": " have", "probability": 0.420166015625}, {"start": 219.72, "end": 219.82, "word": " to", "probability": 0.9716796875}, {"start": 219.82, "end": 220.08, "word": " write", "probability": 0.7841796875}, {"start": 220.08, "end": 220.18, "word": " it", "probability": 0.87744140625}, {"start": 220.18, "end": 220.38, "word": " here,", "probability": 0.68896484375}, {"start": 220.58, "end": 220.72, "word": " we", "probability": 0.316162109375}, {"start": 220.72, "end": 221.04, "word": " wrote", "probability": 0.68408203125}, {"start": 221.04, "end": 221.3, "word": " the", "probability": 0.5390625}, {"start": 221.3, "end": 221.5, "word": " draw,", "probability": 0.89892578125}, {"start": 221.88, "end": 222.2, "word": " and", "probability": 0.76708984375}, {"start": 222.2, "end": 222.3, "word": " the", "probability": 0.5185546875}, {"start": 222.3, "end": 222.52, "word": " shape", "probability": 0.89794921875}, {"start": 222.52, "end": 222.66, "word": " has", "probability": 0.79736328125}, {"start": 222.66, "end": 222.76, "word": " a", "probability": 0.474853515625}, {"start": 222.76, "end": 223.08, "word": " describe", "probability": 0.8486328125}, {"start": 223.08, "end": 223.28, "word": " method,", "probability": 0.499267578125}, {"start": 223.42, "end": 223.58, "word": " we", "probability": 0.7353515625}, {"start": 223.58, "end": 223.58, "word": " also", "probability": 0.54345703125}, {"start": 223.58, "end": 223.86, "word": " wrote", "probability": 0.908203125}, {"start": 223.86, "end": 224.0, "word": " the", "probability": 0.73388671875}, {"start": 224.0, "end": 224.38, "word": " method", "probability": 0.599609375}, {"start": 224.38, "end": 225.5, "word": " describe,", "probability": 0.43505859375}, {"start": 225.6, "end": 225.72, "word": " but", "probability": 0.763671875}, {"start": 225.72, "end": 226.06, "word": " inside", "probability": 0.685546875}, {"start": 226.06, "end": 226.2, "word": " it", "probability": 0.55712890625}, {"start": 226.2, "end": 226.3, "word": " we", "probability": 0.63525390625}, {"start": 226.3, "end": 226.46, "word": " say", "probability": 0.40185546875}, {"start": 226.46, "end": 226.88, "word": " shape", "probability": 0.88525390625}, {"start": 226.88, "end": 228.46, "word": ".describe", "probability": 0.87255859375}, {"start": 228.46, "end": 229.14, "word": " and", "probability": 0.366455078125}, {"start": 229.14, "end": 229.24, "word": " the", "probability": 0.50341796875}, {"start": 229.24, "end": 229.44, "word": " draw", "probability": 0.908203125}, {"start": 229.44, "end": 229.78, "word": " follows", "probability": 0.082763671875}, {"start": 229.78, "end": 230.3, "word": " methods", "probability": 0.350830078125}, {"start": 230.3, "end": 230.68, "word": " or", "probability": 0.84765625}, {"start": 230.68, "end": 230.74, "word": " additional", "probability": 0.4482421875}, {"start": 230.74, "end": 231.28, "word": " code,", "probability": 0.90234375}, {"start": 231.42, "end": 231.44, "word": " which", "probability": 0.763671875}, {"start": 231.44, "end": 231.54, "word": " is", "probability": 0.92529296875}, {"start": 231.54, "end": 231.6, "word": " a", "probability": 0.31494140625}, {"start": 231.6, "end": 231.82, "word": " personal", "probability": 0.81201171875}, {"start": 231.82, "end": 232.22, "word": " border,", "probability": 0.8076171875}, {"start": 232.3, "end": 232.48, "word": " then", "probability": 0.59814453125}, {"start": 232.48, "end": 232.54, "word": " we", "probability": 0.388427734375}, {"start": 232.54, "end": 232.7, "word": " say", "probability": 0.60400390625}, {"start": 232.7, "end": 233.08, "word": " shape", "probability": 0.9130859375}, {"start": 233.08, "end": 234.42, "word": ".draw", "probability": 0.951416015625}, {"start": 234.42, "end": 235.24, "word": " So", "probability": 0.1820068359375}, {"start": 235.24, "end": 235.38, "word": " this", "probability": 0.82666015625}, {"start": 235.38, "end": 235.5, "word": " is", "probability": 0.86376953125}, {"start": 235.5, "end": 235.5, "word": " a", "probability": 0.2435302734375}, {"start": 235.5, "end": 235.66, "word": " way", "probability": 0.77587890625}, {"start": 235.66, "end": 235.92, "word": " to", "probability": 0.78076171875}, {"start": 235.92, "end": 236.18, "word": " add", "probability": 0.818359375}, {"start": 236.18, "end": 236.86, "word": " functionality", "probability": 0.77099609375}, {"start": 236.86, "end": 237.36, "word": " using", "probability": 0.67724609375}, {"start": 237.36, "end": 238.28, "word": " the", "probability": 0.6748046875}, {"start": 238.28, "end": 238.76, "word": " decorator", "probability": 0.96923828125}], "temperature": 1.0}, {"id": 10, "seek": 25652, "start": 239.66, "end": 256.52, "text": "It has a disadvantage that you will have to rewrite the methods inside the object here and modify them or redirect them to the methods inside it But its advantage is that this decorator, for example the border here, takes an object from it as a shape", "tokens": [3522, 575, 257, 24292, 300, 291, 486, 362, 281, 28132, 264, 7150, 1854, 264, 2657, 510, 293, 16927, 552, 420, 29066, 552, 281, 264, 7150, 1854, 309, 583, 1080, 5002, 307, 300, 341, 7919, 1639, 11, 337, 1365, 264, 7838, 510, 11, 2516, 364, 2657, 490, 309, 382, 257, 3909], "avg_logprob": -0.6053921638750562, "compression_ratio": 1.6129032258064515, "no_speech_prob": 0.0, "words": [{"start": 239.66, "end": 240.04, "word": "It", "probability": 0.417724609375}, {"start": 240.04, "end": 240.16, "word": " has", "probability": 0.7431640625}, {"start": 240.16, "end": 240.3, "word": " a", "probability": 0.58642578125}, {"start": 240.3, "end": 240.62, "word": " disadvantage", "probability": 0.170654296875}, {"start": 240.62, "end": 240.88, "word": " that", "probability": 0.4267578125}, {"start": 240.88, "end": 241.12, "word": " you", "probability": 0.822265625}, {"start": 241.12, "end": 241.26, "word": " will", "probability": 0.3984375}, {"start": 241.26, "end": 241.54, "word": " have", "probability": 0.7451171875}, {"start": 241.54, "end": 241.7, "word": " to", "probability": 0.97265625}, {"start": 241.7, "end": 241.86, "word": " rewrite", "probability": 0.40283203125}, {"start": 241.86, "end": 242.36, "word": " the", "probability": 0.7646484375}, {"start": 242.36, "end": 242.7, "word": " methods", "probability": 0.46240234375}, {"start": 242.7, "end": 243.22, "word": " inside", "probability": 0.31787109375}, {"start": 243.22, "end": 243.42, "word": " the", "probability": 0.75634765625}, {"start": 243.42, "end": 243.76, "word": " object", "probability": 0.78173828125}, {"start": 243.76, "end": 244.1, "word": " here", "probability": 0.3837890625}, {"start": 244.1, "end": 245.4, "word": " and", "probability": 0.392333984375}, {"start": 245.4, "end": 245.7, "word": " modify", "probability": 0.2493896484375}, {"start": 245.7, "end": 246.14, "word": " them", "probability": 0.3447265625}, {"start": 246.14, "end": 246.3, "word": " or", "probability": 0.58935546875}, {"start": 246.3, "end": 246.84, "word": " redirect", "probability": 0.2374267578125}, {"start": 246.84, "end": 247.3, "word": " them", "probability": 0.32666015625}, {"start": 247.3, "end": 247.36, "word": " to", "probability": 0.63525390625}, {"start": 247.36, "end": 247.44, "word": " the", "probability": 0.775390625}, {"start": 247.44, "end": 247.74, "word": " methods", "probability": 0.73046875}, {"start": 247.74, "end": 248.08, "word": " inside", "probability": 0.76806640625}, {"start": 248.08, "end": 248.84, "word": " it", "probability": 0.417724609375}, {"start": 248.84, "end": 249.26, "word": " But", "probability": 0.422607421875}, {"start": 249.26, "end": 249.42, "word": " its", "probability": 0.280517578125}, {"start": 249.42, "end": 249.62, "word": " advantage", "probability": 0.72314453125}, {"start": 249.62, "end": 249.92, "word": " is", "probability": 0.888671875}, {"start": 249.92, "end": 250.12, "word": " that", "probability": 0.88916015625}, {"start": 250.12, "end": 250.62, "word": " this", "probability": 0.51123046875}, {"start": 250.62, "end": 251.38, "word": " decorator,", "probability": 0.958984375}, {"start": 252.82, "end": 253.02, "word": " for", "probability": 0.705078125}, {"start": 253.02, "end": 253.24, "word": " example", "probability": 0.91455078125}, {"start": 253.24, "end": 253.74, "word": " the", "probability": 0.202392578125}, {"start": 253.74, "end": 254.14, "word": " border", "probability": 0.8251953125}, {"start": 254.14, "end": 254.18, "word": " here,", "probability": 0.60498046875}, {"start": 254.26, "end": 254.62, "word": " takes", "probability": 0.5634765625}, {"start": 254.62, "end": 255.74, "word": " an", "probability": 0.42724609375}, {"start": 255.74, "end": 255.94, "word": " object", "probability": 0.97265625}, {"start": 255.94, "end": 256.12, "word": " from", "probability": 0.335693359375}, {"start": 256.12, "end": 256.22, "word": " it", "probability": 0.765625}, {"start": 256.22, "end": 256.26, "word": " as", "probability": 0.315185546875}, {"start": 256.26, "end": 256.34, "word": " a", "probability": 0.77587890625}, {"start": 256.34, "end": 256.52, "word": " shape", "probability": 0.90283203125}], "temperature": 1.0}, {"id": 11, "seek": 28712, "start": 258.02, "end": 287.12, "text": "Correct or not, guys? It means that it takes an object from it and shapes it. It means that I can give it a circle or a rectangle or any additional shape that I want to give it. Because I want to add a border to any shape that I have. So, if I have 5 shapes and I want to add a border to all of them, I actually create a class called border. Now, based on this talk, let's go to the slides.", "tokens": [29020, 2554, 420, 406, 11, 1074, 30, 467, 1355, 300, 309, 2516, 364, 2657, 490, 309, 293, 10854, 309, 13, 467, 1355, 300, 286, 393, 976, 309, 257, 6329, 420, 257, 21930, 420, 604, 4497, 3909, 300, 286, 528, 281, 976, 309, 13, 1436, 286, 528, 281, 909, 257, 7838, 281, 604, 3909, 300, 286, 362, 13, 407, 11, 498, 286, 362, 1025, 10854, 293, 286, 528, 281, 909, 257, 7838, 281, 439, 295, 552, 11, 286, 767, 1884, 257, 1508, 1219, 7838, 13, 823, 11, 2361, 322, 341, 751, 11, 718, 311, 352, 281, 264, 9788, 13], "avg_logprob": -0.5744949410660098, "compression_ratio": 1.7727272727272727, "no_speech_prob": 6.67572021484375e-06, "words": [{"start": 258.02, "end": 258.28, "word": "Correct", "probability": 0.517486572265625}, {"start": 258.28, "end": 258.5, "word": " or", "probability": 0.424072265625}, {"start": 258.5, "end": 258.5, "word": " not,", "probability": 0.58935546875}, {"start": 258.7, "end": 258.82, "word": " guys?", "probability": 0.51806640625}, {"start": 259.34, "end": 259.52, "word": " It", "probability": 0.1290283203125}, {"start": 259.52, "end": 259.52, "word": " means", "probability": 0.603515625}, {"start": 259.52, "end": 259.56, "word": " that", "probability": 0.587890625}, {"start": 259.56, "end": 259.94, "word": " it", "probability": 0.158935546875}, {"start": 259.94, "end": 260.28, "word": " takes", "probability": 0.49853515625}, {"start": 260.28, "end": 260.6, "word": " an", "probability": 0.60009765625}, {"start": 260.6, "end": 260.6, "word": " object", "probability": 0.89306640625}, {"start": 260.6, "end": 260.78, "word": " from", "probability": 0.3095703125}, {"start": 260.78, "end": 261.04, "word": " it", "probability": 0.38525390625}, {"start": 261.04, "end": 261.22, "word": " and", "probability": 0.345703125}, {"start": 261.22, "end": 261.5, "word": " shapes", "probability": 0.1278076171875}, {"start": 261.5, "end": 261.78, "word": " it.", "probability": 0.8935546875}, {"start": 261.88, "end": 262.22, "word": " It", "probability": 0.36962890625}, {"start": 262.22, "end": 262.22, "word": " means", "probability": 0.82763671875}, {"start": 262.22, "end": 262.38, "word": " that", "probability": 0.84716796875}, {"start": 262.38, "end": 262.5, "word": " I", "probability": 0.91162109375}, {"start": 262.5, "end": 262.82, "word": " can", "probability": 0.87890625}, {"start": 262.82, "end": 263.02, "word": " give", "probability": 0.208984375}, {"start": 263.02, "end": 263.34, "word": " it", "probability": 0.8857421875}, {"start": 263.34, "end": 263.6, "word": " a", "probability": 0.93212890625}, {"start": 263.6, "end": 263.96, "word": " circle", "probability": 0.90478515625}, {"start": 263.96, "end": 264.26, "word": " or", "probability": 0.382568359375}, {"start": 264.26, "end": 265.0, "word": " a", "probability": 0.332275390625}, {"start": 265.0, "end": 265.52, "word": " rectangle", "probability": 0.9228515625}, {"start": 265.52, "end": 265.76, "word": " or", "probability": 0.5029296875}, {"start": 265.76, "end": 265.92, "word": " any", "probability": 0.70263671875}, {"start": 265.92, "end": 266.44, "word": " additional", "probability": 0.39013671875}, {"start": 266.44, "end": 266.48, "word": " shape", "probability": 0.8291015625}, {"start": 266.48, "end": 266.64, "word": " that", "probability": 0.2042236328125}, {"start": 266.64, "end": 266.64, "word": " I", "probability": 0.94677734375}, {"start": 266.64, "end": 267.02, "word": " want", "probability": 0.492919921875}, {"start": 267.02, "end": 267.02, "word": " to", "probability": 0.53564453125}, {"start": 267.02, "end": 267.02, "word": " give", "probability": 0.4541015625}, {"start": 267.02, "end": 267.24, "word": " it.", "probability": 0.8759765625}, {"start": 267.8, "end": 268.32, "word": " Because", "probability": 0.13671875}, {"start": 268.32, "end": 268.62, "word": " I", "probability": 0.7900390625}, {"start": 268.62, "end": 268.66, "word": " want", "probability": 0.497802734375}, {"start": 268.66, "end": 268.66, "word": " to", "probability": 0.9619140625}, {"start": 268.66, "end": 268.84, "word": " add", "probability": 0.7919921875}, {"start": 268.84, "end": 268.96, "word": " a", "probability": 0.5849609375}, {"start": 268.96, "end": 269.2, "word": " border", "probability": 0.85986328125}, {"start": 269.2, "end": 269.38, "word": " to", "probability": 0.81494140625}, {"start": 269.38, "end": 269.56, "word": " any", "probability": 0.7451171875}, {"start": 269.56, "end": 269.92, "word": " shape", "probability": 0.77685546875}, {"start": 269.92, "end": 270.88, "word": " that", "probability": 0.634765625}, {"start": 270.88, "end": 270.88, "word": " I", "probability": 0.409423828125}, {"start": 270.88, "end": 270.92, "word": " have.", "probability": 0.67578125}, {"start": 271.24, "end": 271.52, "word": " So,", "probability": 0.6015625}, {"start": 271.62, "end": 271.62, "word": " if", "probability": 0.62158203125}, {"start": 271.62, "end": 272.06, "word": " I", "probability": 0.96728515625}, {"start": 272.06, "end": 272.32, "word": " have", "probability": 0.74072265625}, {"start": 272.32, "end": 272.66, "word": " 5", "probability": 0.50341796875}, {"start": 272.66, "end": 273.12, "word": " shapes", "probability": 0.81494140625}, {"start": 273.12, "end": 273.48, "word": " and", "probability": 0.541015625}, {"start": 273.48, "end": 273.84, "word": " I", "probability": 0.92138671875}, {"start": 273.84, "end": 274.04, "word": " want", "probability": 0.765625}, {"start": 274.04, "end": 274.08, "word": " to", "probability": 0.96728515625}, {"start": 274.08, "end": 274.26, "word": " add", "probability": 0.8837890625}, {"start": 274.26, "end": 274.4, "word": " a", "probability": 0.8974609375}, {"start": 274.4, "end": 274.6, "word": " border", "probability": 0.8603515625}, {"start": 274.6, "end": 274.72, "word": " to", "probability": 0.8671875}, {"start": 274.72, "end": 274.84, "word": " all", "probability": 0.3505859375}, {"start": 274.84, "end": 275.2, "word": " of", "probability": 0.5224609375}, {"start": 275.2, "end": 275.3, "word": " them,", "probability": 0.82421875}, {"start": 275.66, "end": 275.82, "word": " I", "probability": 0.52587890625}, {"start": 275.82, "end": 275.94, "word": " actually", "probability": 0.146728515625}, {"start": 275.94, "end": 276.24, "word": " create", "probability": 0.279541015625}, {"start": 276.24, "end": 276.34, "word": " a", "probability": 0.8671875}, {"start": 276.34, "end": 276.62, "word": " class", "probability": 0.947265625}, {"start": 276.62, "end": 277.2, "word": " called", "probability": 0.45703125}, {"start": 277.2, "end": 278.78, "word": " border.", "probability": 0.498291015625}, {"start": 283.72, "end": 284.24, "word": " Now,", "probability": 0.47509765625}, {"start": 284.32, "end": 284.54, "word": " based", "probability": 0.7021484375}, {"start": 284.54, "end": 284.68, "word": " on", "probability": 0.94921875}, {"start": 284.68, "end": 284.84, "word": " this", "probability": 0.3251953125}, {"start": 284.84, "end": 285.02, "word": " talk,", "probability": 0.282958984375}, {"start": 285.22, "end": 285.68, "word": " let's", "probability": 0.90673828125}, {"start": 285.68, "end": 286.14, "word": " go", "probability": 0.474365234375}, {"start": 286.14, "end": 286.56, "word": " to", "probability": 0.63671875}, {"start": 286.56, "end": 286.68, "word": " the", "probability": 0.8046875}, {"start": 286.68, "end": 287.12, "word": " slides.", "probability": 0.9501953125}], "temperature": 1.0}, {"id": 12, "seek": 30806, "start": 288.16, "end": 308.06, "text": "Let's read it. The intent of the border is to attach additional responsibilities to an object dynamically. Pay attention to the definition. Every word has an importance. The first thing is to attach additional responsibilities, adding new responsibilities and functions to an object. Notice that there is no space for class.", "tokens": [8373, 311, 1401, 309, 13, 440, 8446, 295, 264, 7838, 307, 281, 5085, 4497, 16190, 281, 364, 2657, 43492, 13, 11431, 3202, 281, 264, 7123, 13, 2048, 1349, 575, 364, 7379, 13, 440, 700, 551, 307, 281, 5085, 4497, 16190, 11, 5127, 777, 16190, 293, 6828, 281, 364, 2657, 13, 13428, 300, 456, 307, 572, 1901, 337, 1508, 13], "avg_logprob": -0.47343748857577644, "compression_ratio": 1.7608695652173914, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 288.16, "end": 288.4, "word": "Let's", "probability": 0.492095947265625}, {"start": 288.4, "end": 288.64, "word": " read", "probability": 0.9033203125}, {"start": 288.64, "end": 289.14, "word": " it.", "probability": 0.8564453125}, {"start": 289.4, "end": 289.9, "word": " The", "probability": 0.63671875}, {"start": 289.9, "end": 290.22, "word": " intent", "probability": 0.4072265625}, {"start": 290.22, "end": 290.46, "word": " of", "probability": 0.83544921875}, {"start": 290.46, "end": 290.56, "word": " the", "probability": 0.7470703125}, {"start": 290.56, "end": 290.88, "word": " border", "probability": 0.68310546875}, {"start": 290.88, "end": 291.88, "word": " is", "probability": 0.38916015625}, {"start": 291.88, "end": 291.88, "word": " to", "probability": 0.70263671875}, {"start": 291.88, "end": 292.26, "word": " attach", "probability": 0.6826171875}, {"start": 292.26, "end": 292.92, "word": " additional", "probability": 0.8525390625}, {"start": 292.92, "end": 293.98, "word": " responsibilities", "probability": 0.923828125}, {"start": 293.98, "end": 295.08, "word": " to", "probability": 0.9501953125}, {"start": 295.08, "end": 295.26, "word": " an", "probability": 0.94091796875}, {"start": 295.26, "end": 295.62, "word": " object", "probability": 0.97705078125}, {"start": 295.62, "end": 296.24, "word": " dynamically.", "probability": 0.8369140625}, {"start": 296.54, "end": 296.64, "word": " Pay", "probability": 0.1787109375}, {"start": 296.64, "end": 296.84, "word": " attention", "probability": 0.92236328125}, {"start": 296.84, "end": 297.02, "word": " to", "probability": 0.90380859375}, {"start": 297.02, "end": 297.06, "word": " the", "probability": 0.6650390625}, {"start": 297.06, "end": 297.34, "word": " definition.", "probability": 0.666015625}, {"start": 297.48, "end": 297.68, "word": " Every", "probability": 0.40771484375}, {"start": 297.68, "end": 297.86, "word": " word", "probability": 0.87744140625}, {"start": 297.86, "end": 298.06, "word": " has", "probability": 0.7490234375}, {"start": 298.06, "end": 298.18, "word": " an", "probability": 0.51171875}, {"start": 298.18, "end": 298.4, "word": " importance.", "probability": 0.73681640625}, {"start": 299.34, "end": 299.62, "word": " The", "probability": 0.36767578125}, {"start": 299.62, "end": 299.7, "word": " first", "probability": 0.82373046875}, {"start": 299.7, "end": 299.96, "word": " thing", "probability": 0.6494140625}, {"start": 299.96, "end": 300.02, "word": " is", "probability": 0.60302734375}, {"start": 300.02, "end": 300.12, "word": " to", "probability": 0.73583984375}, {"start": 300.12, "end": 300.36, "word": " attach", "probability": 0.91162109375}, {"start": 300.36, "end": 300.84, "word": " additional", "probability": 0.87353515625}, {"start": 300.84, "end": 301.66, "word": " responsibilities,", "probability": 0.9375}, {"start": 302.12, "end": 302.86, "word": " adding", "probability": 0.265625}, {"start": 302.86, "end": 303.7, "word": " new", "probability": 0.7802734375}, {"start": 303.7, "end": 304.22, "word": " responsibilities", "probability": 0.81591796875}, {"start": 304.22, "end": 304.68, "word": " and", "probability": 0.286865234375}, {"start": 304.68, "end": 305.06, "word": " functions", "probability": 0.7001953125}, {"start": 305.06, "end": 305.84, "word": " to", "probability": 0.92236328125}, {"start": 305.84, "end": 306.02, "word": " an", "probability": 0.9287109375}, {"start": 306.02, "end": 306.44, "word": " object.", "probability": 0.9814453125}, {"start": 306.74, "end": 307.14, "word": " Notice", "probability": 0.76953125}, {"start": 307.14, "end": 307.26, "word": " that", "probability": 0.5693359375}, {"start": 307.26, "end": 307.3, "word": " there", "probability": 0.265380859375}, {"start": 307.3, "end": 307.3, "word": " is", "probability": 0.73828125}, {"start": 307.3, "end": 307.3, "word": " no", "probability": 0.912109375}, {"start": 307.3, "end": 307.62, "word": " space", "probability": 0.21728515625}, {"start": 307.62, "end": 307.7, "word": " for", "probability": 0.81787109375}, {"start": 307.7, "end": 308.06, "word": " class.", "probability": 0.8310546875}], "temperature": 1.0}, {"id": 13, "seek": 33414, "start": 308.98, "end": 334.14, "text": "What did he say? To object, so I don't add functionality to class Subclassing or inheritance is what adds to the class You have a class and you extend it But here I add functionality to object, how? Look with me, when we used border, this is the method that I add border to So first thing I create object from where?", "tokens": [3748, 630, 415, 584, 30, 1407, 2657, 11, 370, 286, 500, 380, 909, 14980, 281, 1508, 8511, 11665, 278, 420, 32122, 307, 437, 10860, 281, 264, 1508, 509, 362, 257, 1508, 293, 291, 10101, 309, 583, 510, 286, 909, 14980, 281, 2657, 11, 577, 30, 2053, 365, 385, 11, 562, 321, 1143, 7838, 11, 341, 307, 264, 3170, 300, 286, 909, 7838, 281, 407, 700, 551, 286, 1884, 2657, 490, 689, 30], "avg_logprob": -0.5547945205479452, "compression_ratio": 1.58, "no_speech_prob": 2.0265579223632812e-06, "words": [{"start": 308.98, "end": 309.22, "word": "What", "probability": 0.257568359375}, {"start": 309.22, "end": 309.4, "word": " did", "probability": 0.8447265625}, {"start": 309.4, "end": 309.42, "word": " he", "probability": 0.70947265625}, {"start": 309.42, "end": 309.42, "word": " say?", "probability": 0.70458984375}, {"start": 309.76, "end": 310.26, "word": " To", "probability": 0.175537109375}, {"start": 310.26, "end": 310.58, "word": " object,", "probability": 0.6328125}, {"start": 310.82, "end": 311.0, "word": " so", "probability": 0.1912841796875}, {"start": 311.0, "end": 311.18, "word": " I", "probability": 0.5703125}, {"start": 311.18, "end": 312.74, "word": " don't", "probability": 0.62164306640625}, {"start": 312.74, "end": 313.04, "word": " add", "probability": 0.5400390625}, {"start": 313.04, "end": 313.68, "word": " functionality", "probability": 0.7724609375}, {"start": 313.68, "end": 313.98, "word": " to", "probability": 0.91015625}, {"start": 313.98, "end": 314.38, "word": " class", "probability": 0.775390625}, {"start": 314.38, "end": 316.3, "word": " Subclassing", "probability": 0.6102701822916666}, {"start": 316.3, "end": 316.4, "word": " or", "probability": 0.7275390625}, {"start": 316.4, "end": 316.88, "word": " inheritance", "probability": 0.97900390625}, {"start": 316.88, "end": 317.08, "word": " is", "probability": 0.32861328125}, {"start": 317.08, "end": 317.18, "word": " what", "probability": 0.80517578125}, {"start": 317.18, "end": 317.38, "word": " adds", "probability": 0.40087890625}, {"start": 317.38, "end": 317.52, "word": " to", "probability": 0.7265625}, {"start": 317.52, "end": 317.62, "word": " the", "probability": 0.458984375}, {"start": 317.62, "end": 317.9, "word": " class", "probability": 0.9619140625}, {"start": 317.9, "end": 318.44, "word": " You", "probability": 0.308349609375}, {"start": 318.44, "end": 318.7, "word": " have", "probability": 0.55029296875}, {"start": 318.7, "end": 318.94, "word": " a", "probability": 0.4951171875}, {"start": 318.94, "end": 319.18, "word": " class", "probability": 0.97607421875}, {"start": 319.18, "end": 319.26, "word": " and", "probability": 0.67919921875}, {"start": 319.26, "end": 319.34, "word": " you", "probability": 0.76416015625}, {"start": 319.34, "end": 319.84, "word": " extend", "probability": 0.68701171875}, {"start": 319.84, "end": 320.5, "word": " it", "probability": 0.93603515625}, {"start": 320.5, "end": 320.88, "word": " But", "probability": 0.50732421875}, {"start": 320.88, "end": 321.1, "word": " here", "probability": 0.734375}, {"start": 321.1, "end": 321.3, "word": " I", "probability": 0.86865234375}, {"start": 321.3, "end": 321.52, "word": " add", "probability": 0.814453125}, {"start": 321.52, "end": 322.04, "word": " functionality", "probability": 0.76806640625}, {"start": 322.04, "end": 322.22, "word": " to", "probability": 0.9658203125}, {"start": 322.22, "end": 322.72, "word": " object,", "probability": 0.86328125}, {"start": 323.04, "end": 323.32, "word": " how?", "probability": 0.65869140625}, {"start": 323.94, "end": 324.44, "word": " Look", "probability": 0.39306640625}, {"start": 324.44, "end": 324.64, "word": " with", "probability": 0.30078125}, {"start": 324.64, "end": 324.78, "word": " me,", "probability": 0.958984375}, {"start": 325.38, "end": 325.5, "word": " when", "probability": 0.455322265625}, {"start": 325.5, "end": 325.88, "word": " we", "probability": 0.890625}, {"start": 325.88, "end": 326.36, "word": " used", "probability": 0.57568359375}, {"start": 326.36, "end": 327.84, "word": " border,", "probability": 0.469970703125}, {"start": 328.64, "end": 328.82, "word": " this", "probability": 0.69140625}, {"start": 328.82, "end": 328.9, "word": " is", "probability": 0.86279296875}, {"start": 328.9, "end": 328.94, "word": " the", "probability": 0.80810546875}, {"start": 328.94, "end": 329.32, "word": " method", "probability": 0.947265625}, {"start": 329.32, "end": 329.88, "word": " that", "probability": 0.32421875}, {"start": 329.88, "end": 329.98, "word": " I", "probability": 0.81396484375}, {"start": 329.98, "end": 330.22, "word": " add", "probability": 0.62255859375}, {"start": 330.22, "end": 330.74, "word": " border", "probability": 0.8359375}, {"start": 330.74, "end": 331.4, "word": " to", "probability": 0.65771484375}, {"start": 331.4, "end": 331.58, "word": " So", "probability": 0.33642578125}, {"start": 331.58, "end": 332.76, "word": " first", "probability": 0.239013671875}, {"start": 332.76, "end": 333.04, "word": " thing", "probability": 0.48046875}, {"start": 333.04, "end": 333.12, "word": " I", "probability": 0.60498046875}, {"start": 333.12, "end": 333.36, "word": " create", "probability": 0.6220703125}, {"start": 333.36, "end": 333.7, "word": " object", "probability": 0.69287109375}, {"start": 333.7, "end": 333.9, "word": " from", "probability": 0.70947265625}, {"start": 333.9, "end": 334.14, "word": " where?", "probability": 0.1917724609375}], "temperature": 1.0}, {"id": 14, "seek": 35567, "start": 335.49, "end": 355.67, "text": "From rectangle, I created the object from rectangle without border at first I wanted to add a border, I created an object from border and passed it to rectangle So I actually added the new functionality of border to rectangle object So I added it to object, and this makes me able to add it during runtime", "tokens": [26219, 21930, 11, 286, 2942, 264, 2657, 490, 21930, 1553, 7838, 412, 700, 286, 1415, 281, 909, 257, 7838, 11, 286, 2942, 364, 2657, 490, 7838, 293, 4678, 309, 281, 21930, 407, 286, 767, 3869, 264, 777, 14980, 295, 7838, 281, 21930, 2657, 407, 286, 3869, 309, 281, 2657, 11, 293, 341, 1669, 385, 1075, 281, 909, 309, 1830, 34474], "avg_logprob": -0.6050204644437696, "compression_ratio": 1.8484848484848484, "no_speech_prob": 2.580881118774414e-05, "words": [{"start": 335.49, "end": 335.69, "word": "From", "probability": 0.09259033203125}, {"start": 335.69, "end": 336.11, "word": " rectangle,", "probability": 0.6220703125}, {"start": 336.25, "end": 336.53, "word": " I", "probability": 0.327392578125}, {"start": 336.53, "end": 336.93, "word": " created", "probability": 0.62451171875}, {"start": 336.93, "end": 337.09, "word": " the", "probability": 0.437744140625}, {"start": 337.09, "end": 337.33, "word": " object", "probability": 0.65625}, {"start": 337.33, "end": 337.47, "word": " from", "probability": 0.52197265625}, {"start": 337.47, "end": 337.91, "word": " rectangle", "probability": 0.849609375}, {"start": 337.91, "end": 338.49, "word": " without", "probability": 0.402587890625}, {"start": 338.49, "end": 338.99, "word": " border", "probability": 0.6591796875}, {"start": 338.99, "end": 339.31, "word": " at", "probability": 0.286865234375}, {"start": 339.31, "end": 339.31, "word": " first", "probability": 0.7333984375}, {"start": 339.31, "end": 339.69, "word": " I", "probability": 0.68603515625}, {"start": 339.69, "end": 340.09, "word": " wanted", "probability": 0.62353515625}, {"start": 340.09, "end": 340.23, "word": " to", "probability": 0.966796875}, {"start": 340.23, "end": 340.43, "word": " add", "probability": 0.88623046875}, {"start": 340.43, "end": 340.63, "word": " a", "probability": 0.1480712890625}, {"start": 340.63, "end": 340.91, "word": " border,", "probability": 0.89013671875}, {"start": 341.47, "end": 341.67, "word": " I", "probability": 0.6162109375}, {"start": 341.67, "end": 342.05, "word": " created", "probability": 0.716796875}, {"start": 342.05, "end": 342.23, "word": " an", "probability": 0.61572265625}, {"start": 342.23, "end": 342.45, "word": " object", "probability": 0.96875}, {"start": 342.45, "end": 342.63, "word": " from", "probability": 0.8173828125}, {"start": 342.63, "end": 343.07, "word": " border", "probability": 0.78759765625}, {"start": 343.07, "end": 343.33, "word": " and", "probability": 0.7138671875}, {"start": 343.33, "end": 343.57, "word": " passed", "probability": 0.0987548828125}, {"start": 343.57, "end": 344.03, "word": " it", "probability": 0.71826171875}, {"start": 344.03, "end": 345.59, "word": " to", "probability": 0.317626953125}, {"start": 345.59, "end": 346.01, "word": " rectangle", "probability": 0.765625}, {"start": 346.01, "end": 346.47, "word": " So", "probability": 0.5986328125}, {"start": 346.47, "end": 346.93, "word": " I", "probability": 0.7392578125}, {"start": 346.93, "end": 346.93, "word": " actually", "probability": 0.188232421875}, {"start": 346.93, "end": 347.33, "word": " added", "probability": 0.83935546875}, {"start": 347.33, "end": 347.49, "word": " the", "probability": 0.64501953125}, {"start": 347.49, "end": 347.53, "word": " new", "probability": 0.6279296875}, {"start": 347.53, "end": 348.03, "word": " functionality", "probability": 0.60888671875}, {"start": 348.03, "end": 348.53, "word": " of", "probability": 0.61376953125}, {"start": 348.53, "end": 349.01, "word": " border", "probability": 0.67919921875}, {"start": 349.01, "end": 349.67, "word": " to", "probability": 0.73974609375}, {"start": 349.67, "end": 351.75, "word": " rectangle", "probability": 0.47119140625}, {"start": 351.75, "end": 352.09, "word": " object", "probability": 0.53515625}, {"start": 352.09, "end": 352.19, "word": " So", "probability": 0.2476806640625}, {"start": 352.19, "end": 352.25, "word": " I", "probability": 0.83740234375}, {"start": 352.25, "end": 352.45, "word": " added", "probability": 0.82275390625}, {"start": 352.45, "end": 352.59, "word": " it", "probability": 0.72607421875}, {"start": 352.59, "end": 352.81, "word": " to", "probability": 0.9443359375}, {"start": 352.81, "end": 353.09, "word": " object,", "probability": 0.419921875}, {"start": 353.23, "end": 353.29, "word": " and", "probability": 0.5595703125}, {"start": 353.29, "end": 353.39, "word": " this", "probability": 0.376708984375}, {"start": 353.39, "end": 353.65, "word": " makes", "probability": 0.2244873046875}, {"start": 353.65, "end": 354.35, "word": " me", "probability": 0.525390625}, {"start": 354.35, "end": 354.47, "word": " able", "probability": 0.279541015625}, {"start": 354.47, "end": 354.71, "word": " to", "probability": 0.96337890625}, {"start": 354.71, "end": 354.89, "word": " add", "probability": 0.884765625}, {"start": 354.89, "end": 354.97, "word": " it", "probability": 0.66748046875}, {"start": 354.97, "end": 355.25, "word": " during", "probability": 0.54736328125}, {"start": 355.25, "end": 355.67, "word": " runtime", "probability": 0.61083984375}], "temperature": 1.0}, {"id": 15, "seek": 38205, "start": 357.07, "end": 382.05, "text": "means that the object was created first without borders and then borders were added during runtime and this is the meaning of the sentence attach responsibilities to an object dynamically during runtime decorator provides a flexible alternative substitute for subclassing for extending functionality this is the meaning of this sentence also known as wrapper", "tokens": [1398, 599, 300, 264, 2657, 390, 2942, 700, 1553, 16287, 293, 550, 16287, 645, 3869, 1830, 34474, 293, 341, 307, 264, 3620, 295, 264, 8174, 5085, 16190, 281, 364, 2657, 43492, 1830, 34474, 7919, 1639, 6417, 257, 11358, 8535, 15802, 337, 1422, 11665, 278, 337, 24360, 14980, 341, 307, 264, 3620, 295, 341, 8174, 611, 2570, 382, 46906], "avg_logprob": -0.47881354517855884, "compression_ratio": 1.8080808080808082, "no_speech_prob": 0.0, "words": [{"start": 357.07, "end": 357.37, "word": "means", "probability": 0.4683837890625}, {"start": 357.37, "end": 357.45, "word": " that", "probability": 0.325927734375}, {"start": 357.45, "end": 357.49, "word": " the", "probability": 0.599609375}, {"start": 357.49, "end": 357.89, "word": " object", "probability": 0.7978515625}, {"start": 357.89, "end": 358.09, "word": " was", "probability": 0.46240234375}, {"start": 358.09, "end": 358.43, "word": " created", "probability": 0.4365234375}, {"start": 358.43, "end": 358.71, "word": " first", "probability": 0.278564453125}, {"start": 358.71, "end": 359.17, "word": " without", "probability": 0.7685546875}, {"start": 359.17, "end": 359.59, "word": " borders", "probability": 0.454345703125}, {"start": 359.59, "end": 359.75, "word": " and", "probability": 0.375732421875}, {"start": 359.75, "end": 359.89, "word": " then", "probability": 0.712890625}, {"start": 359.89, "end": 359.99, "word": " borders", "probability": 0.25244140625}, {"start": 359.99, "end": 359.99, "word": " were", "probability": 0.63232421875}, {"start": 359.99, "end": 360.21, "word": " added", "probability": 0.779296875}, {"start": 360.21, "end": 361.61, "word": " during", "probability": 0.591796875}, {"start": 361.61, "end": 362.25, "word": " runtime", "probability": 0.408935546875}, {"start": 362.25, "end": 362.89, "word": " and", "probability": 0.3125}, {"start": 362.89, "end": 363.05, "word": " this", "probability": 0.75537109375}, {"start": 363.05, "end": 363.11, "word": " is", "probability": 0.61328125}, {"start": 363.11, "end": 363.23, "word": " the", "probability": 0.697265625}, {"start": 363.23, "end": 363.23, "word": " meaning", "probability": 0.79296875}, {"start": 363.23, "end": 363.39, "word": " of", "probability": 0.94189453125}, {"start": 363.39, "end": 363.41, "word": " the", "probability": 0.80322265625}, {"start": 363.41, "end": 363.59, "word": " sentence", "probability": 0.6845703125}, {"start": 363.59, "end": 363.93, "word": " attach", "probability": 0.298583984375}, {"start": 363.93, "end": 364.71, "word": " responsibilities", "probability": 0.88671875}, {"start": 364.71, "end": 364.97, "word": " to", "probability": 0.96240234375}, {"start": 364.97, "end": 365.11, "word": " an", "probability": 0.7568359375}, {"start": 365.11, "end": 365.55, "word": " object", "probability": 0.9716796875}, {"start": 365.55, "end": 366.49, "word": " dynamically", "probability": 0.87548828125}, {"start": 366.49, "end": 367.35, "word": " during", "probability": 0.45849609375}, {"start": 367.35, "end": 368.91, "word": " runtime", "probability": 0.82275390625}, {"start": 368.91, "end": 370.97, "word": " decorator", "probability": 0.6820068359375}, {"start": 370.97, "end": 373.05, "word": " provides", "probability": 0.89794921875}, {"start": 373.05, "end": 373.29, "word": " a", "probability": 0.978515625}, {"start": 373.29, "end": 373.73, "word": " flexible", "probability": 0.8623046875}, {"start": 373.73, "end": 374.55, "word": " alternative", "probability": 0.947265625}, {"start": 374.55, "end": 375.63, "word": " substitute", "probability": 0.125244140625}, {"start": 375.63, "end": 376.25, "word": " for", "probability": 0.5234375}, {"start": 376.25, "end": 377.09, "word": " subclassing", "probability": 0.7900390625}, {"start": 377.09, "end": 377.31, "word": " for", "probability": 0.91943359375}, {"start": 377.31, "end": 377.81, "word": " extending", "probability": 0.83740234375}, {"start": 377.81, "end": 378.79, "word": " functionality", "probability": 0.951171875}, {"start": 378.79, "end": 379.65, "word": " this", "probability": 0.4814453125}, {"start": 379.65, "end": 379.65, "word": " is", "probability": 0.1678466796875}, {"start": 379.65, "end": 379.69, "word": " the", "probability": 0.84033203125}, {"start": 379.69, "end": 379.89, "word": " meaning", "probability": 0.65283203125}, {"start": 379.89, "end": 380.13, "word": " of", "probability": 0.94140625}, {"start": 380.13, "end": 380.25, "word": " this", "probability": 0.5537109375}, {"start": 380.25, "end": 380.51, "word": " sentence", "probability": 0.87939453125}, {"start": 380.51, "end": 381.35, "word": " also", "probability": 0.716796875}, {"start": 381.35, "end": 381.65, "word": " known", "probability": 0.8779296875}, {"start": 381.65, "end": 381.81, "word": " as", "probability": 0.97265625}, {"start": 381.81, "end": 382.05, "word": " wrapper", "probability": 0.49072265625}], "temperature": 1.0}, {"id": 16, "seek": 40575, "start": 382.93, "end": 405.75, "text": "Also the decorator is called wrapper because it is like wrapping another object Motivation for using it for example we want to add properties such as borders or scroll bars to a GUI component we can do this with inheritance but this limits our flexibility a better way is to use composition as I said I have a GUI component", "tokens": [9171, 539, 264, 7919, 1639, 307, 1219, 46906, 570, 309, 307, 411, 21993, 1071, 2657, 8956, 592, 399, 337, 1228, 309, 337, 1365, 321, 528, 281, 909, 7221, 1270, 382, 16287, 420, 11369, 10228, 281, 257, 17917, 40, 6542, 321, 393, 360, 341, 365, 32122, 457, 341, 10406, 527, 12635, 257, 1101, 636, 307, 281, 764, 12686, 382, 286, 848, 286, 362, 257, 17917, 40, 6542], "avg_logprob": -0.3929571037861838, "compression_ratio": 1.5833333333333333, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 382.92999999999995, "end": 383.53, "word": "Also", "probability": 0.52587890625}, {"start": 383.53, "end": 383.67, "word": " the", "probability": 0.167724609375}, {"start": 383.67, "end": 384.11, "word": " decorator", "probability": 0.72314453125}, {"start": 384.11, "end": 384.27, "word": " is", "probability": 0.55126953125}, {"start": 384.27, "end": 384.53, "word": " called", "probability": 0.65478515625}, {"start": 384.53, "end": 384.97, "word": " wrapper", "probability": 0.501953125}, {"start": 384.97, "end": 386.67, "word": " because", "probability": 0.227783203125}, {"start": 386.67, "end": 386.91, "word": " it", "probability": 0.335693359375}, {"start": 386.91, "end": 387.39, "word": " is", "probability": 0.364501953125}, {"start": 387.39, "end": 387.39, "word": " like", "probability": 0.423095703125}, {"start": 387.39, "end": 388.23, "word": " wrapping", "probability": 0.4443359375}, {"start": 388.23, "end": 388.43, "word": " another", "probability": 0.59033203125}, {"start": 388.43, "end": 388.69, "word": " object", "probability": 0.9248046875}, {"start": 388.69, "end": 390.23, "word": " Motivation", "probability": 0.8094075520833334}, {"start": 390.23, "end": 391.27, "word": " for", "probability": 0.240234375}, {"start": 391.27, "end": 391.63, "word": " using", "probability": 0.2388916015625}, {"start": 391.63, "end": 391.95, "word": " it", "probability": 0.7333984375}, {"start": 391.95, "end": 392.79, "word": " for", "probability": 0.172607421875}, {"start": 392.79, "end": 392.97, "word": " example", "probability": 0.92822265625}, {"start": 392.97, "end": 393.29, "word": " we", "probability": 0.3896484375}, {"start": 393.29, "end": 393.53, "word": " want", "probability": 0.87255859375}, {"start": 393.53, "end": 393.63, "word": " to", "probability": 0.9697265625}, {"start": 393.63, "end": 393.93, "word": " add", "probability": 0.91650390625}, {"start": 393.93, "end": 394.79, "word": " properties", "probability": 0.849609375}, {"start": 394.79, "end": 395.11, "word": " such", "probability": 0.859375}, {"start": 395.11, "end": 395.37, "word": " as", "probability": 0.9423828125}, {"start": 395.37, "end": 395.79, "word": " borders", "probability": 0.83203125}, {"start": 395.79, "end": 396.11, "word": " or", "probability": 0.904296875}, {"start": 396.11, "end": 396.43, "word": " scroll", "probability": 0.9716796875}, {"start": 396.43, "end": 396.79, "word": " bars", "probability": 0.646484375}, {"start": 396.79, "end": 396.95, "word": " to", "probability": 0.951171875}, {"start": 396.95, "end": 397.11, "word": " a", "probability": 0.9091796875}, {"start": 397.11, "end": 397.43, "word": " GUI", "probability": 0.97802734375}, {"start": 397.43, "end": 397.91, "word": " component", "probability": 0.8447265625}, {"start": 397.91, "end": 398.51, "word": " we", "probability": 0.347900390625}, {"start": 398.51, "end": 398.69, "word": " can", "probability": 0.943359375}, {"start": 398.69, "end": 398.85, "word": " do", "probability": 0.94287109375}, {"start": 398.85, "end": 399.09, "word": " this", "probability": 0.9287109375}, {"start": 399.09, "end": 399.27, "word": " with", "probability": 0.875}, {"start": 399.27, "end": 399.67, "word": " inheritance", "probability": 0.8310546875}, {"start": 399.67, "end": 400.03, "word": " but", "probability": 0.8115234375}, {"start": 400.03, "end": 400.27, "word": " this", "probability": 0.91552734375}, {"start": 400.27, "end": 400.65, "word": " limits", "probability": 0.96240234375}, {"start": 400.65, "end": 400.91, "word": " our", "probability": 0.87060546875}, {"start": 400.91, "end": 401.49, "word": " flexibility", "probability": 0.96923828125}, {"start": 401.49, "end": 402.25, "word": " a", "probability": 0.6279296875}, {"start": 402.25, "end": 402.47, "word": " better", "probability": 0.90673828125}, {"start": 402.47, "end": 402.69, "word": " way", "probability": 0.95458984375}, {"start": 402.69, "end": 402.83, "word": " is", "probability": 0.90576171875}, {"start": 402.83, "end": 402.93, "word": " to", "probability": 0.955078125}, {"start": 402.93, "end": 403.09, "word": " use", "probability": 0.87548828125}, {"start": 403.09, "end": 403.59, "word": " composition", "probability": 0.88916015625}, {"start": 403.59, "end": 404.39, "word": " as", "probability": 0.53515625}, {"start": 404.39, "end": 404.47, "word": " I", "probability": 0.58740234375}, {"start": 404.47, "end": 404.67, "word": " said", "probability": 0.67138671875}, {"start": 404.67, "end": 404.79, "word": " I", "probability": 0.79736328125}, {"start": 404.79, "end": 404.91, "word": " have", "probability": 0.92138671875}, {"start": 404.91, "end": 405.01, "word": " a", "probability": 0.8994140625}, {"start": 405.01, "end": 405.27, "word": " GUI", "probability": 0.97265625}, {"start": 405.27, "end": 405.75, "word": " component", "probability": 0.8564453125}], "temperature": 1.0}, {"id": 17, "seek": 42957, "start": 407.99, "end": 429.57, "text": " TextView, TextArea, I want to add border or scrollbar I have 20 GUI shapes, I want to make them border, I will not make 20 subclasses, I will make one object called border that covers any one of the UI components to add border to it and the same thing if I want to make a scrollbar for these shapes, I do not need to make", "tokens": [18643, 30203, 11, 18643, 32, 12057, 11, 286, 528, 281, 909, 7838, 420, 11369, 5356, 286, 362, 945, 17917, 40, 10854, 11, 286, 528, 281, 652, 552, 7838, 11, 286, 486, 406, 652, 945, 1422, 11665, 279, 11, 286, 486, 652, 472, 2657, 1219, 7838, 300, 10538, 604, 472, 295, 264, 15682, 6677, 281, 909, 7838, 281, 309, 293, 264, 912, 551, 498, 286, 528, 281, 652, 257, 11369, 5356, 337, 613, 10854, 11, 286, 360, 406, 643, 281, 652], "avg_logprob": -0.5435956554648317, "compression_ratio": 1.7692307692307692, "no_speech_prob": 2.3365020751953125e-05, "words": [{"start": 407.98999999999995, "end": 408.46999999999997, "word": " TextView,", "probability": 0.25762939453125}, {"start": 408.46999999999997, "end": 408.95, "word": " TextArea,", "probability": 0.8935546875}, {"start": 409.25, "end": 409.37, "word": " I", "probability": 0.453857421875}, {"start": 409.37, "end": 409.53, "word": " want", "probability": 0.265869140625}, {"start": 409.53, "end": 409.61, "word": " to", "probability": 0.9501953125}, {"start": 409.61, "end": 409.79, "word": " add", "probability": 0.84130859375}, {"start": 409.79, "end": 410.89, "word": " border", "probability": 0.276611328125}, {"start": 410.89, "end": 411.33, "word": " or", "probability": 0.72998046875}, {"start": 411.33, "end": 412.65, "word": " scrollbar", "probability": 0.7265625}, {"start": 412.65, "end": 413.67, "word": " I", "probability": 0.21142578125}, {"start": 413.67, "end": 414.19, "word": " have", "probability": 0.6728515625}, {"start": 414.19, "end": 414.61, "word": " 20", "probability": 0.69287109375}, {"start": 414.61, "end": 415.39, "word": " GUI", "probability": 0.617431640625}, {"start": 415.39, "end": 415.39, "word": " shapes,", "probability": 0.47119140625}, {"start": 415.43, "end": 415.61, "word": " I", "probability": 0.81591796875}, {"start": 415.61, "end": 415.73, "word": " want", "probability": 0.75927734375}, {"start": 415.73, "end": 415.73, "word": " to", "probability": 0.8662109375}, {"start": 415.73, "end": 415.89, "word": " make", "probability": 0.43017578125}, {"start": 415.89, "end": 416.05, "word": " them", "probability": 0.71826171875}, {"start": 416.05, "end": 416.29, "word": " border,", "probability": 0.57080078125}, {"start": 416.61, "end": 416.91, "word": " I", "probability": 0.587890625}, {"start": 416.91, "end": 416.93, "word": " will", "probability": 0.18701171875}, {"start": 416.93, "end": 416.99, "word": " not", "probability": 0.6796875}, {"start": 416.99, "end": 417.27, "word": " make", "probability": 0.68212890625}, {"start": 417.27, "end": 417.81, "word": " 20", "probability": 0.74365234375}, {"start": 417.81, "end": 418.75, "word": " subclasses,", "probability": 0.7027994791666666}, {"start": 418.75, "end": 419.07, "word": " I", "probability": 0.8857421875}, {"start": 419.07, "end": 419.11, "word": " will", "probability": 0.68115234375}, {"start": 419.11, "end": 419.21, "word": " make", "probability": 0.89990234375}, {"start": 419.21, "end": 419.37, "word": " one", "probability": 0.52734375}, {"start": 419.37, "end": 419.65, "word": " object", "probability": 0.890625}, {"start": 419.65, "end": 420.13, "word": " called", "probability": 0.2403564453125}, {"start": 420.13, "end": 420.57, "word": " border", "probability": 0.7919921875}, {"start": 420.57, "end": 420.87, "word": " that", "probability": 0.292236328125}, {"start": 420.87, "end": 421.17, "word": " covers", "probability": 0.25}, {"start": 421.17, "end": 421.59, "word": " any", "probability": 0.5400390625}, {"start": 421.59, "end": 422.09, "word": " one", "probability": 0.45458984375}, {"start": 422.09, "end": 422.75, "word": " of", "probability": 0.64697265625}, {"start": 422.75, "end": 422.89, "word": " the", "probability": 0.73193359375}, {"start": 422.89, "end": 423.23, "word": " UI", "probability": 0.564453125}, {"start": 423.23, "end": 423.91, "word": " components", "probability": 0.4189453125}, {"start": 423.91, "end": 424.13, "word": " to", "probability": 0.296875}, {"start": 424.13, "end": 424.41, "word": " add", "probability": 0.822265625}, {"start": 424.41, "end": 425.49, "word": " border", "probability": 0.69287109375}, {"start": 425.49, "end": 425.63, "word": " to", "probability": 0.47900390625}, {"start": 425.63, "end": 425.77, "word": " it", "probability": 0.86572265625}, {"start": 425.77, "end": 426.01, "word": " and", "probability": 0.24072265625}, {"start": 426.01, "end": 426.13, "word": " the", "probability": 0.376953125}, {"start": 426.13, "end": 426.21, "word": " same", "probability": 0.90625}, {"start": 426.21, "end": 426.45, "word": " thing", "probability": 0.677734375}, {"start": 426.45, "end": 426.53, "word": " if", "probability": 0.7294921875}, {"start": 426.53, "end": 426.67, "word": " I", "probability": 0.95556640625}, {"start": 426.67, "end": 426.79, "word": " want", "probability": 0.80224609375}, {"start": 426.79, "end": 426.79, "word": " to", "probability": 0.96240234375}, {"start": 426.79, "end": 426.87, "word": " make", "probability": 0.83203125}, {"start": 426.87, "end": 426.99, "word": " a", "probability": 0.346923828125}, {"start": 426.99, "end": 427.45, "word": " scrollbar", "probability": 0.912353515625}, {"start": 427.45, "end": 427.57, "word": " for", "probability": 0.61962890625}, {"start": 427.57, "end": 427.67, "word": " these", "probability": 0.7109375}, {"start": 427.67, "end": 428.01, "word": " shapes,", "probability": 0.79833984375}, {"start": 428.67, "end": 428.75, "word": " I", "probability": 0.90185546875}, {"start": 428.75, "end": 428.79, "word": " do", "probability": 0.452880859375}, {"start": 428.79, "end": 428.79, "word": " not", "probability": 0.94189453125}, {"start": 428.79, "end": 429.11, "word": " need", "probability": 0.81005859375}, {"start": 429.11, "end": 429.29, "word": " to", "probability": 0.96337890625}, {"start": 429.29, "end": 429.57, "word": " make", "probability": 0.6162109375}], "temperature": 1.0}, {"id": 18, "seek": 45591, "start": 430.87, "end": 455.91, "text": " 20 subclasses to add a scrollbar to each one of the shapes I only make a class called scrollbar which is a decorator that wraps the UI component The decorator object is designed to have the same interface as the underlying object The decorator, for example, let's make it a shape and it takes a shape", "tokens": [945, 1422, 11665, 279, 281, 909, 257, 11369, 5356, 281, 1184, 472, 295, 264, 10854, 286, 787, 652, 257, 1508, 1219, 11369, 5356, 597, 307, 257, 7919, 1639, 300, 25831, 264, 15682, 6542, 440, 7919, 1639, 2657, 307, 4761, 281, 362, 264, 912, 9226, 382, 264, 14217, 2657, 440, 7919, 1639, 11, 337, 1365, 11, 718, 311, 652, 309, 257, 3909, 293, 309, 2516, 257, 3909], "avg_logprob": -0.46222016348767636, "compression_ratio": 1.627027027027027, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 430.87000000000006, "end": 431.39000000000004, "word": " 20", "probability": 0.183837890625}, {"start": 431.39000000000004, "end": 431.91, "word": " subclasses", "probability": 0.72802734375}, {"start": 431.91, "end": 431.91, "word": " to", "probability": 0.56298828125}, {"start": 431.91, "end": 432.13, "word": " add", "probability": 0.80419921875}, {"start": 432.13, "end": 432.27, "word": " a", "probability": 0.395751953125}, {"start": 432.27, "end": 432.63, "word": " scrollbar", "probability": 0.716064453125}, {"start": 432.63, "end": 432.79, "word": " to", "probability": 0.60546875}, {"start": 432.79, "end": 433.03, "word": " each", "probability": 0.8662109375}, {"start": 433.03, "end": 433.25, "word": " one", "probability": 0.1639404296875}, {"start": 433.25, "end": 433.39, "word": " of", "probability": 0.85546875}, {"start": 433.39, "end": 433.47, "word": " the", "probability": 0.55224609375}, {"start": 433.47, "end": 433.73, "word": " shapes", "probability": 0.46923828125}, {"start": 433.73, "end": 434.01, "word": " I", "probability": 0.50927734375}, {"start": 434.01, "end": 434.15, "word": " only", "probability": 0.2054443359375}, {"start": 434.15, "end": 434.21, "word": " make", "probability": 0.39599609375}, {"start": 434.21, "end": 434.53, "word": " a", "probability": 0.72119140625}, {"start": 434.53, "end": 434.89, "word": " class", "probability": 0.87255859375}, {"start": 434.89, "end": 435.67, "word": " called", "probability": 0.303955078125}, {"start": 435.67, "end": 436.15, "word": " scrollbar", "probability": 0.81689453125}, {"start": 436.15, "end": 436.29, "word": " which", "probability": 0.344970703125}, {"start": 436.29, "end": 436.49, "word": " is", "probability": 0.6328125}, {"start": 436.49, "end": 437.17, "word": " a", "probability": 0.47216796875}, {"start": 437.17, "end": 437.89, "word": " decorator", "probability": 0.84765625}, {"start": 437.89, "end": 438.51, "word": " that", "probability": 0.3134765625}, {"start": 438.51, "end": 438.75, "word": " wraps", "probability": 0.400390625}, {"start": 438.75, "end": 438.93, "word": " the", "probability": 0.58056640625}, {"start": 438.93, "end": 439.29, "word": " UI", "probability": 0.92626953125}, {"start": 439.29, "end": 440.47, "word": " component", "probability": 0.7041015625}, {"start": 440.47, "end": 445.09, "word": " The", "probability": 0.5703125}, {"start": 445.09, "end": 445.55, "word": " decorator", "probability": 0.970947265625}, {"start": 445.55, "end": 445.87, "word": " object", "probability": 0.96044921875}, {"start": 445.87, "end": 446.11, "word": " is", "probability": 0.95458984375}, {"start": 446.11, "end": 446.47, "word": " designed", "probability": 0.865234375}, {"start": 446.47, "end": 446.67, "word": " to", "probability": 0.97021484375}, {"start": 446.67, "end": 446.85, "word": " have", "probability": 0.94873046875}, {"start": 446.85, "end": 446.99, "word": " the", "probability": 0.9072265625}, {"start": 446.99, "end": 447.17, "word": " same", "probability": 0.90673828125}, {"start": 447.17, "end": 447.67, "word": " interface", "probability": 0.88037109375}, {"start": 447.67, "end": 447.91, "word": " as", "probability": 0.95458984375}, {"start": 447.91, "end": 448.09, "word": " the", "probability": 0.90625}, {"start": 448.09, "end": 448.45, "word": " underlying", "probability": 0.70458984375}, {"start": 448.45, "end": 449.67, "word": " object", "probability": 0.9677734375}, {"start": 449.67, "end": 451.29, "word": " The", "probability": 0.369140625}, {"start": 451.29, "end": 451.89, "word": " decorator,", "probability": 0.991455078125}, {"start": 452.73, "end": 453.19, "word": " for", "probability": 0.52734375}, {"start": 453.19, "end": 453.89, "word": " example,", "probability": 0.9111328125}, {"start": 454.01, "end": 454.43, "word": " let's", "probability": 0.6358642578125}, {"start": 454.43, "end": 454.45, "word": " make", "probability": 0.322265625}, {"start": 454.45, "end": 454.67, "word": " it", "probability": 0.68359375}, {"start": 454.67, "end": 454.71, "word": " a", "probability": 0.460693359375}, {"start": 454.71, "end": 454.99, "word": " shape", "probability": 0.87646484375}, {"start": 454.99, "end": 455.09, "word": " and", "probability": 0.451904296875}, {"start": 455.09, "end": 455.27, "word": " it", "probability": 0.8251953125}, {"start": 455.27, "end": 455.57, "word": " takes", "probability": 0.50439453125}, {"start": 455.57, "end": 455.71, "word": " a", "probability": 0.352783203125}, {"start": 455.71, "end": 455.91, "word": " shape", "probability": 0.916015625}], "temperature": 1.0}, {"id": 19, "seek": 46589, "start": 456.67, "end": 465.89, "text": "Why? Because in the end, the client wants to see the decorator as he is, as any other shape. It's true that it's called border, but it really looks like a border.", "tokens": [8429, 30, 1436, 294, 264, 917, 11, 264, 6423, 2738, 281, 536, 264, 7919, 1639, 382, 415, 307, 11, 382, 604, 661, 3909, 13, 467, 311, 2074, 300, 309, 311, 1219, 7838, 11, 457, 309, 534, 1542, 411, 257, 7838, 13], "avg_logprob": -0.44903273170902613, "compression_ratio": 1.3278688524590163, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 456.67, "end": 456.99, "word": "Why?", "probability": 0.457763671875}, {"start": 457.45, "end": 457.77, "word": " Because", "probability": 0.7783203125}, {"start": 457.77, "end": 457.89, "word": " in", "probability": 0.50830078125}, {"start": 457.89, "end": 457.97, "word": " the", "probability": 0.87158203125}, {"start": 457.97, "end": 458.17, "word": " end,", "probability": 0.8916015625}, {"start": 458.33, "end": 458.39, "word": " the", "probability": 0.81201171875}, {"start": 458.39, "end": 458.75, "word": " client", "probability": 0.8837890625}, {"start": 458.75, "end": 459.01, "word": " wants", "probability": 0.62939453125}, {"start": 459.01, "end": 459.07, "word": " to", "probability": 0.95166015625}, {"start": 459.07, "end": 459.23, "word": " see", "probability": 0.86474609375}, {"start": 459.23, "end": 459.35, "word": " the", "probability": 0.720703125}, {"start": 459.35, "end": 459.81, "word": " decorator", "probability": 0.898681640625}, {"start": 459.81, "end": 459.93, "word": " as", "probability": 0.4345703125}, {"start": 459.93, "end": 460.09, "word": " he", "probability": 0.435791015625}, {"start": 460.09, "end": 460.09, "word": " is,", "probability": 0.669921875}, {"start": 460.13, "end": 460.21, "word": " as", "probability": 0.376708984375}, {"start": 460.21, "end": 460.39, "word": " any", "probability": 0.56787109375}, {"start": 460.39, "end": 460.79, "word": " other", "probability": 0.70751953125}, {"start": 460.79, "end": 460.79, "word": " shape.", "probability": 0.7958984375}, {"start": 462.19, "end": 462.51, "word": " It's", "probability": 0.40155029296875}, {"start": 462.51, "end": 462.59, "word": " true", "probability": 0.5576171875}, {"start": 462.59, "end": 462.71, "word": " that", "probability": 0.73291015625}, {"start": 462.71, "end": 462.77, "word": " it's", "probability": 0.6312255859375}, {"start": 462.77, "end": 462.93, "word": " called", "probability": 0.642578125}, {"start": 462.93, "end": 463.25, "word": " border,", "probability": 0.72900390625}, {"start": 463.35, "end": 463.53, "word": " but", "probability": 0.919921875}, {"start": 463.53, "end": 463.61, "word": " it", "probability": 0.68994140625}, {"start": 463.61, "end": 464.09, "word": " really", "probability": 0.31103515625}, {"start": 464.09, "end": 465.41, "word": " looks", "probability": 0.425048828125}, {"start": 465.41, "end": 465.59, "word": " like", "probability": 0.8583984375}, {"start": 465.59, "end": 465.69, "word": " a", "probability": 0.55126953125}, {"start": 465.69, "end": 465.89, "word": " border.", "probability": 0.8876953125}], "temperature": 1.0}, {"id": 20, "seek": 48828, "start": 466.52, "end": 488.28, "text": "So the client has to deal with it the same way he deals with any other object This allows a client object to interact with the decorator object in exactly the same manner as it would with the underlying actual object So as we said, it deals with the decorator object exactly the same way it deals with the object that covers the decorator object", "tokens": [6455, 264, 6423, 575, 281, 2028, 365, 309, 264, 912, 636, 415, 11215, 365, 604, 661, 2657, 639, 4045, 257, 6423, 2657, 281, 4648, 365, 264, 7919, 1639, 2657, 294, 2293, 264, 912, 9060, 382, 309, 576, 365, 264, 14217, 3539, 2657, 407, 382, 321, 848, 11, 309, 11215, 365, 264, 7919, 1639, 2657, 2293, 264, 912, 636, 309, 11215, 365, 264, 2657, 300, 10538, 264, 7919, 1639, 2657], "avg_logprob": -0.42254463391644614, "compression_ratio": 2.090909090909091, "no_speech_prob": 0.0, "words": [{"start": 466.52, "end": 467.02, "word": "So", "probability": 0.456787109375}, {"start": 467.02, "end": 467.36, "word": " the", "probability": 0.56591796875}, {"start": 467.36, "end": 467.64, "word": " client", "probability": 0.91796875}, {"start": 467.64, "end": 467.82, "word": " has", "probability": 0.2386474609375}, {"start": 467.82, "end": 467.82, "word": " to", "probability": 0.97216796875}, {"start": 467.82, "end": 468.06, "word": " deal", "probability": 0.285400390625}, {"start": 468.06, "end": 468.24, "word": " with", "probability": 0.890625}, {"start": 468.24, "end": 468.36, "word": " it", "probability": 0.771484375}, {"start": 468.36, "end": 468.46, "word": " the", "probability": 0.1866455078125}, {"start": 468.46, "end": 468.5, "word": " same", "probability": 0.69091796875}, {"start": 468.5, "end": 468.54, "word": " way", "probability": 0.87158203125}, {"start": 468.54, "end": 468.66, "word": " he", "probability": 0.234375}, {"start": 468.66, "end": 469.08, "word": " deals", "probability": 0.5576171875}, {"start": 469.08, "end": 469.9, "word": " with", "probability": 0.88623046875}, {"start": 469.9, "end": 470.06, "word": " any", "probability": 0.7255859375}, {"start": 470.06, "end": 470.54, "word": " other", "probability": 0.7763671875}, {"start": 470.54, "end": 470.54, "word": " object", "probability": 0.53857421875}, {"start": 470.54, "end": 471.42, "word": " This", "probability": 0.366943359375}, {"start": 471.42, "end": 472.92, "word": " allows", "probability": 0.8583984375}, {"start": 472.92, "end": 473.22, "word": " a", "probability": 0.94384765625}, {"start": 473.22, "end": 473.6, "word": " client", "probability": 0.9453125}, {"start": 473.6, "end": 473.96, "word": " object", "probability": 0.95068359375}, {"start": 473.96, "end": 474.2, "word": " to", "probability": 0.9677734375}, {"start": 474.2, "end": 474.68, "word": " interact", "probability": 0.921875}, {"start": 474.68, "end": 474.92, "word": " with", "probability": 0.90087890625}, {"start": 474.92, "end": 475.88, "word": " the", "probability": 0.68359375}, {"start": 475.88, "end": 476.42, "word": " decorator", "probability": 0.970458984375}, {"start": 476.42, "end": 476.8, "word": " object", "probability": 0.95068359375}, {"start": 476.8, "end": 477.02, "word": " in", "probability": 0.90234375}, {"start": 477.02, "end": 477.5, "word": " exactly", "probability": 0.8916015625}, {"start": 477.5, "end": 477.76, "word": " the", "probability": 0.91943359375}, {"start": 477.76, "end": 478.02, "word": " same", "probability": 0.90087890625}, {"start": 478.02, "end": 478.26, "word": " manner", "probability": 0.9658203125}, {"start": 478.26, "end": 478.52, "word": " as", "probability": 0.90966796875}, {"start": 478.52, "end": 478.66, "word": " it", "probability": 0.912109375}, {"start": 478.66, "end": 478.88, "word": " would", "probability": 0.921875}, {"start": 478.88, "end": 479.04, "word": " with", "probability": 0.86328125}, {"start": 479.04, "end": 479.2, "word": " the", "probability": 0.82568359375}, {"start": 479.2, "end": 479.56, "word": " underlying", "probability": 0.9580078125}, {"start": 479.56, "end": 480.02, "word": " actual", "probability": 0.63623046875}, {"start": 480.02, "end": 480.36, "word": " object", "probability": 0.97265625}, {"start": 480.36, "end": 481.12, "word": " So", "probability": 0.26416015625}, {"start": 481.12, "end": 481.22, "word": " as", "probability": 0.2283935546875}, {"start": 481.22, "end": 481.5, "word": " we", "probability": 0.68017578125}, {"start": 481.5, "end": 481.5, "word": " said,", "probability": 0.6767578125}, {"start": 481.56, "end": 481.58, "word": " it", "probability": 0.332763671875}, {"start": 481.58, "end": 481.88, "word": " deals", "probability": 0.49365234375}, {"start": 481.88, "end": 482.12, "word": " with", "probability": 0.88232421875}, {"start": 482.12, "end": 482.38, "word": " the", "probability": 0.5537109375}, {"start": 482.38, "end": 484.14, "word": " decorator", "probability": 0.6607666015625}, {"start": 484.14, "end": 484.16, "word": " object", "probability": 0.87060546875}, {"start": 484.16, "end": 484.34, "word": " exactly", "probability": 0.326416015625}, {"start": 484.34, "end": 484.34, "word": " the", "probability": 0.50048828125}, {"start": 484.34, "end": 484.34, "word": " same", "probability": 0.8134765625}, {"start": 484.34, "end": 484.34, "word": " way", "probability": 0.8876953125}, {"start": 484.34, "end": 484.46, "word": " it", "probability": 0.650390625}, {"start": 484.46, "end": 485.02, "word": " deals", "probability": 0.85546875}, {"start": 485.02, "end": 486.24, "word": " with", "probability": 0.89208984375}, {"start": 486.24, "end": 486.34, "word": " the", "probability": 0.7099609375}, {"start": 486.34, "end": 486.56, "word": " object", "probability": 0.673828125}, {"start": 486.56, "end": 487.32, "word": " that", "probability": 0.31884765625}, {"start": 487.32, "end": 487.62, "word": " covers", "probability": 0.2452392578125}, {"start": 487.62, "end": 487.8, "word": " the", "probability": 0.451416015625}, {"start": 487.8, "end": 488.24, "word": " decorator", "probability": 0.985107421875}, {"start": 488.24, "end": 488.28, "word": " object", "probability": 0.9228515625}], "temperature": 1.0}, {"id": 21, "seek": 51804, "start": 489.27, "end": 518.05, "text": "The decorator objects contains a reference to the actual object. The decorator object receives all request calls from a client. It in turn forwards these calls to the underlying object. The same thing that we said that the decorator should forward the request to the underlying object. What is the underlying object? It is the internal object. Like here for example, I need to call x and y inside.", "tokens": [2278, 7919, 1639, 6565, 8306, 257, 6408, 281, 264, 3539, 2657, 13, 440, 7919, 1639, 2657, 20717, 439, 5308, 5498, 490, 257, 6423, 13, 467, 294, 1261, 30126, 613, 5498, 281, 264, 14217, 2657, 13, 440, 912, 551, 300, 321, 848, 300, 264, 7919, 1639, 820, 2128, 264, 5308, 281, 264, 14217, 2657, 13, 708, 307, 264, 14217, 2657, 30, 467, 307, 264, 6920, 2657, 13, 1743, 510, 337, 1365, 11, 286, 643, 281, 818, 2031, 293, 288, 1854, 13], "avg_logprob": -0.43209876543209874, "compression_ratio": 1.9365853658536585, "no_speech_prob": 3.814697265625e-06, "words": [{"start": 489.27, "end": 489.51, "word": "The", "probability": 0.62939453125}, {"start": 489.51, "end": 489.93, "word": " decorator", "probability": 0.86279296875}, {"start": 489.93, "end": 490.27, "word": " objects", "probability": 0.76171875}, {"start": 490.27, "end": 490.77, "word": " contains", "probability": 0.7919921875}, {"start": 490.77, "end": 490.99, "word": " a", "probability": 0.95263671875}, {"start": 490.99, "end": 491.29, "word": " reference", "probability": 0.900390625}, {"start": 491.29, "end": 491.51, "word": " to", "probability": 0.96484375}, {"start": 491.51, "end": 491.63, "word": " the", "probability": 0.91357421875}, {"start": 491.63, "end": 491.91, "word": " actual", "probability": 0.8876953125}, {"start": 491.91, "end": 492.25, "word": " object.", "probability": 0.9345703125}, {"start": 492.75, "end": 493.31, "word": " The", "probability": 0.1832275390625}, {"start": 493.31, "end": 497.85, "word": " decorator", "probability": 0.910400390625}, {"start": 497.85, "end": 498.19, "word": " object", "probability": 0.6005859375}, {"start": 498.19, "end": 498.63, "word": " receives", "probability": 0.8837890625}, {"start": 498.63, "end": 498.91, "word": " all", "probability": 0.92724609375}, {"start": 498.91, "end": 499.31, "word": " request", "probability": 0.7197265625}, {"start": 499.31, "end": 499.69, "word": " calls", "probability": 0.83154296875}, {"start": 499.69, "end": 499.97, "word": " from", "probability": 0.880859375}, {"start": 499.97, "end": 500.15, "word": " a", "probability": 0.9638671875}, {"start": 500.15, "end": 500.45, "word": " client.", "probability": 0.94873046875}, {"start": 500.97, "end": 500.97, "word": " It", "probability": 0.76953125}, {"start": 500.97, "end": 501.69, "word": " in", "probability": 0.43798828125}, {"start": 501.69, "end": 501.97, "word": " turn", "probability": 0.83642578125}, {"start": 501.97, "end": 502.59, "word": " forwards", "probability": 0.6279296875}, {"start": 502.59, "end": 502.87, "word": " these", "probability": 0.84521484375}, {"start": 502.87, "end": 503.15, "word": " calls", "probability": 0.85888671875}, {"start": 503.15, "end": 503.31, "word": " to", "probability": 0.9638671875}, {"start": 503.31, "end": 503.45, "word": " the", "probability": 0.8447265625}, {"start": 503.45, "end": 503.75, "word": " underlying", "probability": 0.91162109375}, {"start": 503.75, "end": 504.91, "word": " object.", "probability": 0.92578125}, {"start": 505.43, "end": 505.49, "word": " The", "probability": 0.283935546875}, {"start": 505.49, "end": 505.57, "word": " same", "probability": 0.86474609375}, {"start": 505.57, "end": 505.89, "word": " thing", "probability": 0.294189453125}, {"start": 505.89, "end": 506.01, "word": " that", "probability": 0.320556640625}, {"start": 506.01, "end": 506.03, "word": " we", "probability": 0.77880859375}, {"start": 506.03, "end": 506.25, "word": " said", "probability": 0.54931640625}, {"start": 506.25, "end": 506.95, "word": " that", "probability": 0.241943359375}, {"start": 506.95, "end": 507.73, "word": " the", "probability": 0.56884765625}, {"start": 507.73, "end": 508.17, "word": " decorator", "probability": 0.977783203125}, {"start": 508.17, "end": 508.29, "word": " should", "probability": 0.492919921875}, {"start": 508.29, "end": 508.85, "word": " forward", "probability": 0.69189453125}, {"start": 508.85, "end": 509.25, "word": " the", "probability": 0.45263671875}, {"start": 509.25, "end": 509.71, "word": " request", "probability": 0.8271484375}, {"start": 509.71, "end": 511.13, "word": " to", "probability": 0.82080078125}, {"start": 511.13, "end": 511.21, "word": " the", "probability": 0.8427734375}, {"start": 511.21, "end": 511.63, "word": " underlying", "probability": 0.96435546875}, {"start": 511.63, "end": 512.09, "word": " object.", "probability": 0.94482421875}, {"start": 512.15, "end": 512.23, "word": " What", "probability": 0.436279296875}, {"start": 512.23, "end": 512.31, "word": " is", "probability": 0.72705078125}, {"start": 512.31, "end": 512.43, "word": " the", "probability": 0.345947265625}, {"start": 512.43, "end": 512.75, "word": " underlying", "probability": 0.8857421875}, {"start": 512.75, "end": 513.25, "word": " object?", "probability": 0.974609375}, {"start": 513.31, "end": 513.37, "word": " It", "probability": 0.36767578125}, {"start": 513.37, "end": 513.37, "word": " is", "probability": 0.52197265625}, {"start": 513.37, "end": 513.39, "word": " the", "probability": 0.728515625}, {"start": 513.39, "end": 514.11, "word": " internal", "probability": 0.40576171875}, {"start": 514.11, "end": 514.11, "word": " object.", "probability": 0.90283203125}, {"start": 515.13, "end": 515.69, "word": " Like", "probability": 0.34619140625}, {"start": 515.69, "end": 515.93, "word": " here", "probability": 0.5546875}, {"start": 515.93, "end": 516.09, "word": " for", "probability": 0.460205078125}, {"start": 516.09, "end": 516.17, "word": " example,", "probability": 0.91064453125}, {"start": 516.25, "end": 516.45, "word": " I", "probability": 0.92236328125}, {"start": 516.45, "end": 516.85, "word": " need", "probability": 0.89892578125}, {"start": 516.85, "end": 516.99, "word": " to", "probability": 0.82470703125}, {"start": 516.99, "end": 517.21, "word": " call", "probability": 0.038330078125}, {"start": 517.21, "end": 517.49, "word": " x", "probability": 0.724609375}, {"start": 517.49, "end": 517.63, "word": " and", "probability": 0.41357421875}, {"start": 517.63, "end": 517.79, "word": " y", "probability": 0.986328125}, {"start": 517.79, "end": 518.05, "word": " inside.", "probability": 0.58056640625}], "temperature": 1.0}, {"id": 22, "seek": 54557, "start": 518.99, "end": 545.57, "text": "I have to call x and y under the decorator, and this object is called dot. Just like when we made the border, we didn't use the method getDescription() and inside it we called shape to describe, and the same thing to draw, we called shape to draw inside it. So this is what makes the discourse forward to the underlying object.", "tokens": [40, 362, 281, 818, 2031, 293, 288, 833, 264, 7919, 1639, 11, 293, 341, 2657, 307, 1219, 5893, 13, 1449, 411, 562, 321, 1027, 264, 7838, 11, 321, 994, 380, 764, 264, 3170, 483, 29543, 12432, 45191, 293, 1854, 309, 321, 1219, 3909, 281, 6786, 11, 293, 264, 912, 551, 281, 2642, 11, 321, 1219, 3909, 281, 2642, 1854, 309, 13, 407, 341, 307, 437, 1669, 264, 23938, 2128, 281, 264, 14217, 2657, 13], "avg_logprob": -0.5416666746139527, "compression_ratio": 1.64321608040201, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 518.99, "end": 519.27, "word": "I", "probability": 0.321533203125}, {"start": 519.27, "end": 519.27, "word": " have", "probability": 0.40869140625}, {"start": 519.27, "end": 519.51, "word": " to", "probability": 0.96240234375}, {"start": 519.51, "end": 519.67, "word": " call", "probability": 0.17333984375}, {"start": 519.67, "end": 519.95, "word": " x", "probability": 0.4541015625}, {"start": 519.95, "end": 520.13, "word": " and", "probability": 0.8212890625}, {"start": 520.13, "end": 520.29, "word": " y", "probability": 0.99267578125}, {"start": 520.29, "end": 520.47, "word": " under", "probability": 0.2021484375}, {"start": 520.47, "end": 520.61, "word": " the", "probability": 0.81396484375}, {"start": 520.61, "end": 521.09, "word": " decorator,", "probability": 0.77490234375}, {"start": 521.17, "end": 521.71, "word": " and", "probability": 0.7919921875}, {"start": 521.71, "end": 521.99, "word": " this", "probability": 0.52490234375}, {"start": 521.99, "end": 522.87, "word": " object", "probability": 0.18505859375}, {"start": 522.87, "end": 522.87, "word": " is", "probability": 0.331298828125}, {"start": 522.87, "end": 524.01, "word": " called", "probability": 0.79052734375}, {"start": 524.01, "end": 526.13, "word": " dot.", "probability": 0.388427734375}, {"start": 526.93, "end": 527.05, "word": " Just", "probability": 0.38037109375}, {"start": 527.05, "end": 527.13, "word": " like", "probability": 0.8544921875}, {"start": 527.13, "end": 527.71, "word": " when", "probability": 0.55126953125}, {"start": 527.71, "end": 528.11, "word": " we", "probability": 0.92333984375}, {"start": 528.11, "end": 528.27, "word": " made", "probability": 0.2454833984375}, {"start": 528.27, "end": 528.45, "word": " the", "probability": 0.64501953125}, {"start": 528.45, "end": 528.73, "word": " border,", "probability": 0.837890625}, {"start": 528.87, "end": 529.01, "word": " we", "probability": 0.7919921875}, {"start": 529.01, "end": 529.01, "word": " didn't", "probability": 0.690673828125}, {"start": 529.01, "end": 530.03, "word": " use", "probability": 0.52294921875}, {"start": 530.03, "end": 530.21, "word": " the", "probability": 0.7412109375}, {"start": 530.21, "end": 530.45, "word": " method", "probability": 0.84228515625}, {"start": 530.45, "end": 532.73, "word": " getDescription", "probability": 0.6796061197916666}, {"start": 532.73, "end": 532.91, "word": "()", "probability": 0.45263671875}, {"start": 532.91, "end": 532.97, "word": " and", "probability": 0.416259765625}, {"start": 532.97, "end": 533.15, "word": " inside", "probability": 0.52392578125}, {"start": 533.15, "end": 533.39, "word": " it", "probability": 0.60986328125}, {"start": 533.39, "end": 533.43, "word": " we", "probability": 0.351318359375}, {"start": 533.43, "end": 533.67, "word": " called", "probability": 0.447509765625}, {"start": 533.67, "end": 534.23, "word": " shape", "probability": 0.7939453125}, {"start": 534.23, "end": 534.49, "word": " to", "probability": 0.60205078125}, {"start": 534.49, "end": 535.13, "word": " describe,", "probability": 0.845703125}, {"start": 535.73, "end": 536.69, "word": " and", "probability": 0.84423828125}, {"start": 536.69, "end": 536.83, "word": " the", "probability": 0.5986328125}, {"start": 536.83, "end": 536.91, "word": " same", "probability": 0.86865234375}, {"start": 536.91, "end": 537.19, "word": " thing", "probability": 0.765625}, {"start": 537.19, "end": 537.31, "word": " to", "probability": 0.195068359375}, {"start": 537.31, "end": 537.51, "word": " draw,", "probability": 0.89111328125}, {"start": 537.61, "end": 537.67, "word": " we", "probability": 0.59326171875}, {"start": 537.67, "end": 537.79, "word": " called", "probability": 0.8173828125}, {"start": 537.79, "end": 538.53, "word": " shape", "probability": 0.64013671875}, {"start": 538.53, "end": 538.73, "word": " to", "probability": 0.9228515625}, {"start": 538.73, "end": 539.11, "word": " draw", "probability": 0.912109375}, {"start": 539.11, "end": 539.11, "word": " inside", "probability": 0.347900390625}, {"start": 539.11, "end": 539.11, "word": " it.", "probability": 0.6904296875}, {"start": 539.37, "end": 539.49, "word": " So", "probability": 0.5205078125}, {"start": 539.49, "end": 539.63, "word": " this", "probability": 0.70849609375}, {"start": 539.63, "end": 539.81, "word": " is", "probability": 0.68505859375}, {"start": 539.81, "end": 540.67, "word": " what", "probability": 0.479736328125}, {"start": 540.67, "end": 541.97, "word": " makes", "probability": 0.3994140625}, {"start": 541.97, "end": 542.71, "word": " the", "probability": 0.404541015625}, {"start": 542.71, "end": 543.59, "word": " discourse", "probability": 0.91357421875}, {"start": 543.59, "end": 543.65, "word": " forward", "probability": 0.86376953125}, {"start": 543.65, "end": 543.89, "word": " to", "probability": 0.93017578125}, {"start": 543.89, "end": 544.01, "word": " the", "probability": 0.90283203125}, {"start": 544.01, "end": 544.45, "word": " underlying", "probability": 0.8876953125}, {"start": 544.45, "end": 545.57, "word": " object.", "probability": 0.96142578125}], "temperature": 1.0}, {"id": 23, "seek": 57379, "start": 546.5, "end": 573.8, "text": "The last point is the decorator objects add some additional functionality before or after forwarding a request to the underlying object. Why did I create the decorator? Not just to change the commands and that's it, but to add new things. For example, in the border, before I change the call to method draw, look here, this is the class border that we explained in the previous lecture, and it has method draw, and from inside it I'm looking for shape dot draw.", "tokens": [2278, 1036, 935, 307, 264, 7919, 1639, 6565, 909, 512, 4497, 14980, 949, 420, 934, 2128, 278, 257, 5308, 281, 264, 14217, 2657, 13, 1545, 630, 286, 1884, 264, 7919, 1639, 30, 1726, 445, 281, 1319, 264, 16901, 293, 300, 311, 309, 11, 457, 281, 909, 777, 721, 13, 1171, 1365, 11, 294, 264, 7838, 11, 949, 286, 1319, 264, 818, 281, 3170, 2642, 11, 574, 510, 11, 341, 307, 264, 1508, 7838, 300, 321, 8825, 294, 264, 3894, 7991, 11, 293, 309, 575, 3170, 2642, 11, 293, 490, 1854, 309, 286, 478, 1237, 337, 3909, 5893, 2642, 13], "avg_logprob": -0.5053125196695327, "compression_ratio": 1.7137546468401488, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 546.5, "end": 546.7, "word": "The", "probability": 0.353515625}, {"start": 546.7, "end": 546.86, "word": " last", "probability": 0.8154296875}, {"start": 546.86, "end": 547.08, "word": " point", "probability": 0.8955078125}, {"start": 547.08, "end": 547.24, "word": " is", "probability": 0.54296875}, {"start": 547.24, "end": 547.32, "word": " the", "probability": 0.216552734375}, {"start": 547.32, "end": 547.92, "word": " decorator", "probability": 0.852294921875}, {"start": 547.92, "end": 548.52, "word": " objects", "probability": 0.8447265625}, {"start": 548.52, "end": 549.08, "word": " add", "probability": 0.70458984375}, {"start": 549.08, "end": 549.5, "word": " some", "probability": 0.87451171875}, {"start": 549.5, "end": 549.98, "word": " additional", "probability": 0.853515625}, {"start": 549.98, "end": 550.66, "word": " functionality", "probability": 0.892578125}, {"start": 550.66, "end": 551.8, "word": " before", "probability": 0.63427734375}, {"start": 551.8, "end": 552.06, "word": " or", "probability": 0.87109375}, {"start": 552.06, "end": 552.44, "word": " after", "probability": 0.83349609375}, {"start": 552.44, "end": 553.1, "word": " forwarding", "probability": 0.90966796875}, {"start": 553.1, "end": 553.22, "word": " a", "probability": 0.233642578125}, {"start": 553.22, "end": 553.46, "word": " request", "probability": 0.96337890625}, {"start": 553.46, "end": 553.62, "word": " to", "probability": 0.95361328125}, {"start": 553.62, "end": 553.74, "word": " the", "probability": 0.7783203125}, {"start": 553.74, "end": 554.04, "word": " underlying", "probability": 0.93359375}, {"start": 554.04, "end": 554.52, "word": " object.", "probability": 0.9267578125}, {"start": 555.16, "end": 555.42, "word": " Why", "probability": 0.1971435546875}, {"start": 555.42, "end": 555.42, "word": " did", "probability": 0.462158203125}, {"start": 555.42, "end": 555.88, "word": " I", "probability": 0.9677734375}, {"start": 555.88, "end": 556.1, "word": " create", "probability": 0.3759765625}, {"start": 556.1, "end": 556.22, "word": " the", "probability": 0.33544921875}, {"start": 556.22, "end": 556.68, "word": " decorator?", "probability": 0.96435546875}, {"start": 556.7, "end": 556.86, "word": " Not", "probability": 0.69677734375}, {"start": 556.86, "end": 557.08, "word": " just", "probability": 0.3037109375}, {"start": 557.08, "end": 557.14, "word": " to", "probability": 0.84375}, {"start": 557.14, "end": 557.48, "word": " change", "probability": 0.4052734375}, {"start": 557.48, "end": 557.82, "word": " the", "probability": 0.599609375}, {"start": 557.82, "end": 558.02, "word": " commands", "probability": 0.55859375}, {"start": 558.02, "end": 558.18, "word": " and", "probability": 0.470458984375}, {"start": 558.18, "end": 558.42, "word": " that's", "probability": 0.736328125}, {"start": 558.42, "end": 558.42, "word": " it,", "probability": 0.81787109375}, {"start": 558.9, "end": 559.18, "word": " but", "probability": 0.669921875}, {"start": 559.18, "end": 559.18, "word": " to", "probability": 0.8203125}, {"start": 559.18, "end": 559.36, "word": " add", "probability": 0.8955078125}, {"start": 559.36, "end": 560.54, "word": " new", "probability": 0.54638671875}, {"start": 560.54, "end": 560.54, "word": " things.", "probability": 0.51513671875}, {"start": 560.94, "end": 561.46, "word": " For", "probability": 0.203857421875}, {"start": 561.46, "end": 561.7, "word": " example,", "probability": 0.8662109375}, {"start": 561.86, "end": 562.02, "word": " in", "probability": 0.447021484375}, {"start": 562.02, "end": 562.16, "word": " the", "probability": 0.69287109375}, {"start": 562.16, "end": 562.5, "word": " border,", "probability": 0.78955078125}, {"start": 562.94, "end": 563.34, "word": " before", "probability": 0.80126953125}, {"start": 563.34, "end": 563.54, "word": " I", "probability": 0.654296875}, {"start": 563.54, "end": 563.88, "word": " change", "probability": 0.378662109375}, {"start": 563.88, "end": 564.5, "word": " the", "probability": 0.6484375}, {"start": 564.5, "end": 564.78, "word": " call", "probability": 0.40087890625}, {"start": 564.78, "end": 564.92, "word": " to", "probability": 0.8515625}, {"start": 564.92, "end": 565.18, "word": " method", "probability": 0.5810546875}, {"start": 565.18, "end": 565.52, "word": " draw,", "probability": 0.495361328125}, {"start": 566.28, "end": 566.54, "word": " look", "probability": 0.493896484375}, {"start": 566.54, "end": 566.8, "word": " here,", "probability": 0.334716796875}, {"start": 566.84, "end": 566.96, "word": " this", "probability": 0.7607421875}, {"start": 566.96, "end": 566.96, "word": " is", "probability": 0.80078125}, {"start": 566.96, "end": 567.08, "word": " the", "probability": 0.79443359375}, {"start": 567.08, "end": 567.34, "word": " class", "probability": 0.92724609375}, {"start": 567.34, "end": 567.66, "word": " border", "probability": 0.81201171875}, {"start": 567.66, "end": 568.64, "word": " that", "probability": 0.429443359375}, {"start": 568.64, "end": 568.78, "word": " we", "probability": 0.83984375}, {"start": 568.78, "end": 569.0, "word": " explained", "probability": 0.5068359375}, {"start": 569.0, "end": 569.24, "word": " in", "probability": 0.8662109375}, {"start": 569.24, "end": 569.26, "word": " the", "probability": 0.84033203125}, {"start": 569.26, "end": 569.3, "word": " previous", "probability": 0.5556640625}, {"start": 569.3, "end": 569.62, "word": " lecture,", "probability": 0.845703125}, {"start": 570.34, "end": 570.52, "word": " and", "probability": 0.5859375}, {"start": 570.52, "end": 570.68, "word": " it", "probability": 0.73681640625}, {"start": 570.68, "end": 570.7, "word": " has", "probability": 0.66259765625}, {"start": 570.7, "end": 571.02, "word": " method", "probability": 0.6318359375}, {"start": 571.02, "end": 571.34, "word": " draw,", "probability": 0.88720703125}, {"start": 571.8, "end": 572.12, "word": " and", "probability": 0.80712890625}, {"start": 572.12, "end": 572.2, "word": " from", "probability": 0.251953125}, {"start": 572.2, "end": 572.46, "word": " inside", "probability": 0.4658203125}, {"start": 572.46, "end": 572.54, "word": " it", "probability": 0.59716796875}, {"start": 572.54, "end": 572.64, "word": " I'm", "probability": 0.36676025390625}, {"start": 572.64, "end": 572.82, "word": " looking", "probability": 0.2783203125}, {"start": 572.82, "end": 572.92, "word": " for", "probability": 0.9296875}, {"start": 572.92, "end": 573.32, "word": " shape", "probability": 0.6435546875}, {"start": 573.32, "end": 573.52, "word": " dot", "probability": 0.36279296875}, {"start": 573.52, "end": 573.8, "word": " draw.", "probability": 0.92431640625}], "temperature": 1.0}, {"id": 24, "seek": 59966, "start": 574.58, "end": 599.66, "text": "But before you call shape.draw, you have to run the code that sends me the border This is the code that puts the border settings, then I say shape.draw This is the additional code that I created this decorator for I call it, then I say shape.draw And this is the last sentence", "tokens": [7835, 949, 291, 818, 3909, 13, 48848, 11, 291, 362, 281, 1190, 264, 3089, 300, 14790, 385, 264, 7838, 639, 307, 264, 3089, 300, 8137, 264, 7838, 6257, 11, 550, 286, 584, 3909, 13, 48848, 639, 307, 264, 4497, 3089, 300, 286, 2942, 341, 7919, 1639, 337, 286, 818, 309, 11, 550, 286, 584, 3909, 13, 48848, 400, 341, 307, 264, 1036, 8174], "avg_logprob": -0.5253906156867743, "compression_ratio": 1.8157894736842106, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 574.58, "end": 574.86, "word": "But", "probability": 0.316162109375}, {"start": 574.86, "end": 575.54, "word": " before", "probability": 0.85205078125}, {"start": 575.54, "end": 575.82, "word": " you", "probability": 0.378173828125}, {"start": 575.82, "end": 575.92, "word": " call", "probability": 0.2177734375}, {"start": 575.92, "end": 576.2, "word": " shape", "probability": 0.78271484375}, {"start": 576.2, "end": 576.6, "word": ".draw,", "probability": 0.862548828125}, {"start": 576.72, "end": 577.02, "word": " you", "probability": 0.1884765625}, {"start": 577.02, "end": 577.02, "word": " have", "probability": 0.247314453125}, {"start": 577.02, "end": 577.16, "word": " to", "probability": 0.95458984375}, {"start": 577.16, "end": 577.34, "word": " run", "probability": 0.245361328125}, {"start": 577.34, "end": 577.5, "word": " the", "probability": 0.51806640625}, {"start": 577.5, "end": 577.86, "word": " code", "probability": 0.8720703125}, {"start": 577.86, "end": 578.92, "word": " that", "probability": 0.5419921875}, {"start": 578.92, "end": 579.16, "word": " sends", "probability": 0.266845703125}, {"start": 579.16, "end": 579.34, "word": " me", "probability": 0.39111328125}, {"start": 579.34, "end": 579.44, "word": " the", "probability": 0.6845703125}, {"start": 579.44, "end": 579.66, "word": " border", "probability": 0.85986328125}, {"start": 579.66, "end": 582.02, "word": " This", "probability": 0.319091796875}, {"start": 582.02, "end": 583.1, "word": " is", "probability": 0.77392578125}, {"start": 583.1, "end": 583.32, "word": " the", "probability": 0.87451171875}, {"start": 583.32, "end": 583.62, "word": " code", "probability": 0.93359375}, {"start": 583.62, "end": 583.76, "word": " that", "probability": 0.83349609375}, {"start": 583.76, "end": 583.98, "word": " puts", "probability": 0.342041015625}, {"start": 583.98, "end": 584.06, "word": " the", "probability": 0.70654296875}, {"start": 584.06, "end": 584.8, "word": " border", "probability": 0.60498046875}, {"start": 584.8, "end": 584.8, "word": " settings,", "probability": 0.3369140625}, {"start": 584.92, "end": 585.14, "word": " then", "probability": 0.51171875}, {"start": 585.14, "end": 585.4, "word": " I", "probability": 0.81591796875}, {"start": 585.4, "end": 585.64, "word": " say", "probability": 0.36669921875}, {"start": 585.64, "end": 585.98, "word": " shape", "probability": 0.8291015625}, {"start": 585.98, "end": 587.2, "word": ".draw", "probability": 0.9345703125}, {"start": 587.2, "end": 587.42, "word": " This", "probability": 0.568359375}, {"start": 587.42, "end": 587.46, "word": " is", "probability": 0.9140625}, {"start": 587.46, "end": 587.54, "word": " the", "probability": 0.7919921875}, {"start": 587.54, "end": 588.08, "word": " additional", "probability": 0.5166015625}, {"start": 588.08, "end": 588.18, "word": " code", "probability": 0.9404296875}, {"start": 588.18, "end": 588.5, "word": " that", "probability": 0.4384765625}, {"start": 588.5, "end": 588.64, "word": " I", "probability": 0.74560546875}, {"start": 588.64, "end": 589.8, "word": " created", "probability": 0.401123046875}, {"start": 589.8, "end": 591.82, "word": " this", "probability": 0.43505859375}, {"start": 591.82, "end": 592.42, "word": " decorator", "probability": 0.933837890625}, {"start": 592.42, "end": 592.78, "word": " for", "probability": 0.66943359375}, {"start": 592.78, "end": 593.92, "word": " I", "probability": 0.25634765625}, {"start": 593.92, "end": 594.16, "word": " call", "probability": 0.352783203125}, {"start": 594.16, "end": 594.38, "word": " it,", "probability": 0.83056640625}, {"start": 594.38, "end": 594.64, "word": " then", "probability": 0.58984375}, {"start": 594.64, "end": 594.74, "word": " I", "probability": 0.841796875}, {"start": 594.74, "end": 594.92, "word": " say", "probability": 0.76806640625}, {"start": 594.92, "end": 595.38, "word": " shape", "probability": 0.8916015625}, {"start": 595.38, "end": 596.58, "word": ".draw", "probability": 0.96240234375}, {"start": 596.58, "end": 598.72, "word": " And", "probability": 0.53271484375}, {"start": 598.72, "end": 598.9, "word": " this", "probability": 0.7333984375}, {"start": 598.9, "end": 599.0, "word": " is", "probability": 0.81884765625}, {"start": 599.0, "end": 599.22, "word": " the", "probability": 0.7021484375}, {"start": 599.22, "end": 599.66, "word": " last", "probability": 0.74658203125}, {"start": 599.66, "end": 599.66, "word": " sentence", "probability": 0.759765625}], "temperature": 1.0}, {"id": 25, "seek": 63286, "start": 605.3, "end": 632.86, "text": "Add some additional functionality before or after forwarding request to the underlying object This ensures that the additional functionality can be added to a given object externally at runtime without modifying its structure Meaning that the functionality is added during the runtime without having to do subclassing and so on When do you use applicability? To add responsibilities to individual objects dynamically without affecting other objects Meaning that I have objects that I want to add to them", "tokens": [36189, 512, 4497, 14980, 949, 420, 934, 2128, 278, 5308, 281, 264, 14217, 2657, 639, 28111, 300, 264, 4497, 14980, 393, 312, 3869, 281, 257, 2212, 2657, 40899, 412, 34474, 1553, 42626, 1080, 3877, 19948, 300, 264, 14980, 307, 3869, 1830, 264, 34474, 1553, 1419, 281, 360, 1422, 11665, 278, 293, 370, 322, 1133, 360, 291, 764, 2580, 2310, 30, 1407, 909, 16190, 281, 2609, 6565, 43492, 1553, 17476, 661, 6565, 19948, 300, 286, 362, 6565, 300, 286, 528, 281, 909, 281, 552], "avg_logprob": -0.3037574262846084, "compression_ratio": 1.9053030303030303, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 605.3, "end": 605.7, "word": "Add", "probability": 0.2427978515625}, {"start": 605.7, "end": 606.0, "word": " some", "probability": 0.8837890625}, {"start": 606.0, "end": 606.48, "word": " additional", "probability": 0.87646484375}, {"start": 606.48, "end": 607.06, "word": " functionality", "probability": 0.9111328125}, {"start": 607.06, "end": 607.6, "word": " before", "probability": 0.85205078125}, {"start": 607.6, "end": 607.84, "word": " or", "probability": 0.94384765625}, {"start": 607.84, "end": 608.2, "word": " after", "probability": 0.83251953125}, {"start": 608.2, "end": 608.92, "word": " forwarding", "probability": 0.942138671875}, {"start": 608.92, "end": 609.28, "word": " request", "probability": 0.65625}, {"start": 609.28, "end": 609.44, "word": " to", "probability": 0.89697265625}, {"start": 609.44, "end": 609.52, "word": " the", "probability": 0.8388671875}, {"start": 609.52, "end": 609.82, "word": " underlying", "probability": 0.90087890625}, {"start": 609.82, "end": 610.2, "word": " object", "probability": 0.921875}, {"start": 610.2, "end": 610.5, "word": " This", "probability": 0.399169921875}, {"start": 610.5, "end": 610.94, "word": " ensures", "probability": 0.85888671875}, {"start": 610.94, "end": 611.2, "word": " that", "probability": 0.91796875}, {"start": 611.2, "end": 611.3, "word": " the", "probability": 0.495849609375}, {"start": 611.3, "end": 611.62, "word": " additional", "probability": 0.85986328125}, {"start": 611.62, "end": 612.18, "word": " functionality", "probability": 0.94189453125}, {"start": 612.18, "end": 612.48, "word": " can", "probability": 0.939453125}, {"start": 612.48, "end": 612.62, "word": " be", "probability": 0.95947265625}, {"start": 612.62, "end": 612.86, "word": " added", "probability": 0.865234375}, {"start": 612.86, "end": 613.04, "word": " to", "probability": 0.9697265625}, {"start": 613.04, "end": 613.2, "word": " a", "probability": 0.97607421875}, {"start": 613.2, "end": 613.4, "word": " given", "probability": 0.9150390625}, {"start": 613.4, "end": 613.82, "word": " object", "probability": 0.9755859375}, {"start": 613.82, "end": 614.98, "word": " externally", "probability": 0.8203125}, {"start": 614.98, "end": 615.38, "word": " at", "probability": 0.947265625}, {"start": 615.38, "end": 615.76, "word": " runtime", "probability": 0.60791015625}, {"start": 615.76, "end": 616.84, "word": " without", "probability": 0.8115234375}, {"start": 616.84, "end": 617.44, "word": " modifying", "probability": 0.9140625}, {"start": 617.44, "end": 617.88, "word": " its", "probability": 0.8466796875}, {"start": 617.88, "end": 618.36, "word": " structure", "probability": 0.857421875}, {"start": 618.36, "end": 619.04, "word": " Meaning", "probability": 0.1787109375}, {"start": 619.04, "end": 619.14, "word": " that", "probability": 0.55419921875}, {"start": 619.14, "end": 619.26, "word": " the", "probability": 0.59423828125}, {"start": 619.26, "end": 619.6, "word": " functionality", "probability": 0.9404296875}, {"start": 619.6, "end": 619.84, "word": " is", "probability": 0.5107421875}, {"start": 619.84, "end": 620.12, "word": " added", "probability": 0.875}, {"start": 620.12, "end": 620.4, "word": " during", "probability": 0.7900390625}, {"start": 620.4, "end": 620.6, "word": " the", "probability": 0.415771484375}, {"start": 620.6, "end": 620.92, "word": " runtime", "probability": 0.845703125}, {"start": 620.92, "end": 621.16, "word": " without", "probability": 0.71826171875}, {"start": 621.16, "end": 621.44, "word": " having", "probability": 0.2391357421875}, {"start": 621.44, "end": 621.68, "word": " to", "probability": 0.958984375}, {"start": 621.68, "end": 621.82, "word": " do", "probability": 0.666015625}, {"start": 621.82, "end": 623.28, "word": " subclassing", "probability": 0.8006184895833334}, {"start": 623.28, "end": 623.42, "word": " and", "probability": 0.2412109375}, {"start": 623.42, "end": 623.62, "word": " so", "probability": 0.68896484375}, {"start": 623.62, "end": 623.92, "word": " on", "probability": 0.82763671875}, {"start": 623.92, "end": 624.98, "word": " When", "probability": 0.259521484375}, {"start": 624.98, "end": 625.12, "word": " do", "probability": 0.343017578125}, {"start": 625.12, "end": 625.2, "word": " you", "probability": 0.8203125}, {"start": 625.2, "end": 625.64, "word": " use", "probability": 0.78515625}, {"start": 625.64, "end": 625.64, "word": " applicability?", "probability": 0.7939453125}, {"start": 626.16, "end": 626.7, "word": " To", "probability": 0.87255859375}, {"start": 626.7, "end": 626.96, "word": " add", "probability": 0.9189453125}, {"start": 626.96, "end": 627.68, "word": " responsibilities", "probability": 0.85009765625}, {"start": 627.68, "end": 627.9, "word": " to", "probability": 0.96826171875}, {"start": 627.9, "end": 628.36, "word": " individual", "probability": 0.87744140625}, {"start": 628.36, "end": 628.7, "word": " objects", "probability": 0.94677734375}, {"start": 628.7, "end": 629.18, "word": " dynamically", "probability": 0.759765625}, {"start": 629.18, "end": 629.66, "word": " without", "probability": 0.88720703125}, {"start": 629.66, "end": 630.1, "word": " affecting", "probability": 0.90673828125}, {"start": 630.1, "end": 630.98, "word": " other", "probability": 0.85400390625}, {"start": 630.98, "end": 631.38, "word": " objects", "probability": 0.96240234375}, {"start": 631.38, "end": 631.66, "word": " Meaning", "probability": 0.4267578125}, {"start": 631.66, "end": 631.7, "word": " that", "probability": 0.80029296875}, {"start": 631.7, "end": 631.88, "word": " I", "probability": 0.75732421875}, {"start": 631.88, "end": 631.88, "word": " have", "probability": 0.91650390625}, {"start": 631.88, "end": 632.18, "word": " objects", "probability": 0.873046875}, {"start": 632.18, "end": 632.28, "word": " that", "probability": 0.677734375}, {"start": 632.28, "end": 632.32, "word": " I", "probability": 0.908203125}, {"start": 632.32, "end": 632.4, "word": " want", "probability": 0.55126953125}, {"start": 632.4, "end": 632.4, "word": " to", "probability": 0.96826171875}, {"start": 632.4, "end": 632.56, "word": " add", "probability": 0.921875}, {"start": 632.56, "end": 632.7, "word": " to", "probability": 0.73486328125}, {"start": 632.7, "end": 632.86, "word": " them", "probability": 0.7978515625}], "temperature": 1.0}, {"id": 26, "seek": 65030, "start": 634.11, "end": 650.31, "text": "New functionalities during the runtime For example, I have a rectangle, I want to add it to my functionalities, I created an object from the rectangle, then I create a border and wrap the object in it from a rectangle So the rectangle now, I created it in the first place, it was a normal object without borders, then I added it to it", "tokens": [18278, 11745, 1088, 1830, 264, 34474, 1171, 1365, 11, 286, 362, 257, 21930, 11, 286, 528, 281, 909, 309, 281, 452, 11745, 1088, 11, 286, 2942, 364, 2657, 490, 264, 21930, 11, 550, 286, 1884, 257, 7838, 293, 7019, 264, 2657, 294, 309, 490, 257, 21930, 407, 264, 21930, 586, 11, 286, 2942, 309, 294, 264, 700, 1081, 11, 309, 390, 257, 2710, 2657, 1553, 16287, 11, 550, 286, 3869, 309, 281, 309], "avg_logprob": -0.5472973262941515, "compression_ratio": 1.8453038674033149, "no_speech_prob": 2.1338462829589844e-05, "words": [{"start": 634.11, "end": 634.51, "word": "New", "probability": 0.12030029296875}, {"start": 634.51, "end": 634.91, "word": " functionalities", "probability": 0.6766357421875}, {"start": 634.91, "end": 635.45, "word": " during", "probability": 0.67626953125}, {"start": 635.45, "end": 635.65, "word": " the", "probability": 0.319580078125}, {"start": 635.65, "end": 635.97, "word": " runtime", "probability": 0.63720703125}, {"start": 635.97, "end": 636.73, "word": " For", "probability": 0.2193603515625}, {"start": 636.73, "end": 637.01, "word": " example,", "probability": 0.88037109375}, {"start": 637.11, "end": 637.11, "word": " I", "probability": 0.61279296875}, {"start": 637.11, "end": 637.23, "word": " have", "probability": 0.8046875}, {"start": 637.23, "end": 637.33, "word": " a", "probability": 0.712890625}, {"start": 637.33, "end": 637.77, "word": " rectangle,", "probability": 0.94775390625}, {"start": 638.21, "end": 638.59, "word": " I", "probability": 0.72607421875}, {"start": 638.59, "end": 638.71, "word": " want", "probability": 0.284912109375}, {"start": 638.71, "end": 638.73, "word": " to", "probability": 0.96484375}, {"start": 638.73, "end": 638.85, "word": " add", "probability": 0.904296875}, {"start": 638.85, "end": 638.99, "word": " it", "probability": 0.201416015625}, {"start": 638.99, "end": 638.99, "word": " to", "probability": 0.78759765625}, {"start": 638.99, "end": 639.05, "word": " my", "probability": 0.86279296875}, {"start": 639.05, "end": 639.93, "word": " functionalities,", "probability": 0.7222900390625}, {"start": 640.35, "end": 640.47, "word": " I", "probability": 0.7470703125}, {"start": 640.47, "end": 640.73, "word": " created", "probability": 0.50048828125}, {"start": 640.73, "end": 640.95, "word": " an", "probability": 0.7998046875}, {"start": 640.95, "end": 641.13, "word": " object", "probability": 0.9638671875}, {"start": 641.13, "end": 641.31, "word": " from", "probability": 0.7041015625}, {"start": 641.31, "end": 641.39, "word": " the", "probability": 0.51123046875}, {"start": 641.39, "end": 641.77, "word": " rectangle,", "probability": 0.96240234375}, {"start": 641.85, "end": 642.05, "word": " then", "probability": 0.65673828125}, {"start": 642.05, "end": 642.19, "word": " I", "probability": 0.81396484375}, {"start": 642.19, "end": 642.39, "word": " create", "probability": 0.71142578125}, {"start": 642.39, "end": 642.57, "word": " a", "probability": 0.87060546875}, {"start": 642.57, "end": 642.83, "word": " border", "probability": 0.84765625}, {"start": 642.83, "end": 643.41, "word": " and", "probability": 0.50244140625}, {"start": 643.41, "end": 643.79, "word": " wrap", "probability": 0.61279296875}, {"start": 643.79, "end": 644.27, "word": " the", "probability": 0.57373046875}, {"start": 644.27, "end": 644.53, "word": " object", "probability": 0.86181640625}, {"start": 644.53, "end": 644.63, "word": " in", "probability": 0.1959228515625}, {"start": 644.63, "end": 644.63, "word": " it", "probability": 0.6552734375}, {"start": 644.63, "end": 644.67, "word": " from", "probability": 0.35546875}, {"start": 644.67, "end": 644.81, "word": " a", "probability": 0.1453857421875}, {"start": 644.81, "end": 645.27, "word": " rectangle", "probability": 0.95361328125}, {"start": 645.27, "end": 645.87, "word": " So", "probability": 0.28076171875}, {"start": 645.87, "end": 645.93, "word": " the", "probability": 0.3828125}, {"start": 645.93, "end": 646.31, "word": " rectangle", "probability": 0.9765625}, {"start": 646.31, "end": 646.65, "word": " now,", "probability": 0.337890625}, {"start": 646.77, "end": 646.95, "word": " I", "probability": 0.7294921875}, {"start": 646.95, "end": 647.29, "word": " created", "probability": 0.6572265625}, {"start": 647.29, "end": 647.43, "word": " it", "probability": 0.6142578125}, {"start": 647.43, "end": 647.45, "word": " in", "probability": 0.26220703125}, {"start": 647.45, "end": 647.55, "word": " the", "probability": 0.900390625}, {"start": 647.55, "end": 647.75, "word": " first", "probability": 0.693359375}, {"start": 647.75, "end": 647.99, "word": " place,", "probability": 0.26025390625}, {"start": 648.09, "end": 648.09, "word": " it", "probability": 0.634765625}, {"start": 648.09, "end": 648.09, "word": " was", "probability": 0.904296875}, {"start": 648.09, "end": 648.21, "word": " a", "probability": 0.484619140625}, {"start": 648.21, "end": 648.75, "word": " normal", "probability": 0.67431640625}, {"start": 648.75, "end": 648.75, "word": " object", "probability": 0.95703125}, {"start": 648.75, "end": 648.97, "word": " without", "probability": 0.78466796875}, {"start": 648.97, "end": 649.33, "word": " borders,", "probability": 0.33642578125}, {"start": 649.45, "end": 649.59, "word": " then", "probability": 0.568359375}, {"start": 649.59, "end": 649.69, "word": " I", "probability": 0.88720703125}, {"start": 649.69, "end": 649.89, "word": " added", "probability": 0.8583984375}, {"start": 649.89, "end": 650.11, "word": " it", "probability": 0.880859375}, {"start": 650.11, "end": 650.25, "word": " to", "probability": 0.8115234375}, {"start": 650.25, "end": 650.31, "word": " it", "probability": 0.9130859375}], "temperature": 1.0}, {"id": 27, "seek": 67637, "start": 653.79, "end": 676.37, "text": "Also when we use the decorator when the subclassing is impractical When you notice that the subclassing produces from it a large number of classes, an explosion of classes, you avoid using the subclasses and resort to the decorator", "tokens": [9171, 539, 562, 321, 764, 264, 7919, 1639, 562, 264, 1422, 11665, 278, 307, 704, 1897, 804, 1133, 291, 3449, 300, 264, 1422, 11665, 278, 14725, 490, 309, 257, 2416, 1230, 295, 5359, 11, 364, 15673, 295, 5359, 11, 291, 5042, 1228, 264, 1422, 11665, 279, 293, 19606, 281, 264, 7919, 1639], "avg_logprob": -0.36409198113207547, "compression_ratio": 1.6618705035971224, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 653.79, "end": 654.17, "word": "Also", "probability": 0.830078125}, {"start": 654.17, "end": 654.29, "word": " when", "probability": 0.5771484375}, {"start": 654.29, "end": 654.41, "word": " we", "probability": 0.4931640625}, {"start": 654.41, "end": 654.69, "word": " use", "probability": 0.8798828125}, {"start": 654.69, "end": 654.85, "word": " the", "probability": 0.5947265625}, {"start": 654.85, "end": 655.29, "word": " decorator", "probability": 0.7900390625}, {"start": 655.29, "end": 655.53, "word": " when", "probability": 0.6416015625}, {"start": 655.53, "end": 656.05, "word": " the", "probability": 0.45654296875}, {"start": 656.05, "end": 656.77, "word": " subclassing", "probability": 0.88916015625}, {"start": 656.77, "end": 657.07, "word": " is", "probability": 0.91015625}, {"start": 657.07, "end": 660.63, "word": " impractical", "probability": 0.9679361979166666}, {"start": 660.63, "end": 664.77, "word": " When", "probability": 0.0728759765625}, {"start": 664.77, "end": 666.47, "word": " you", "probability": 0.7412109375}, {"start": 666.47, "end": 668.29, "word": " notice", "probability": 0.77783203125}, {"start": 668.29, "end": 668.49, "word": " that", "probability": 0.8564453125}, {"start": 668.49, "end": 668.59, "word": " the", "probability": 0.634765625}, {"start": 668.59, "end": 669.23, "word": " subclassing", "probability": 0.8782552083333334}, {"start": 669.23, "end": 669.59, "word": " produces", "probability": 0.24755859375}, {"start": 669.59, "end": 669.83, "word": " from", "probability": 0.42626953125}, {"start": 669.83, "end": 670.09, "word": " it", "probability": 0.826171875}, {"start": 670.09, "end": 670.77, "word": " a", "probability": 0.51171875}, {"start": 670.77, "end": 670.85, "word": " large", "probability": 0.459228515625}, {"start": 670.85, "end": 671.09, "word": " number", "probability": 0.87646484375}, {"start": 671.09, "end": 671.41, "word": " of", "probability": 0.95556640625}, {"start": 671.41, "end": 671.83, "word": " classes,", "probability": 0.87646484375}, {"start": 671.91, "end": 671.99, "word": " an", "probability": 0.4521484375}, {"start": 671.99, "end": 672.37, "word": " explosion", "probability": 0.72216796875}, {"start": 672.37, "end": 672.69, "word": " of", "probability": 0.94921875}, {"start": 672.69, "end": 673.13, "word": " classes,", "probability": 0.89794921875}, {"start": 673.19, "end": 673.29, "word": " you", "probability": 0.498779296875}, {"start": 673.29, "end": 673.61, "word": " avoid", "probability": 0.78125}, {"start": 673.61, "end": 674.13, "word": " using", "probability": 0.88525390625}, {"start": 674.13, "end": 674.27, "word": " the", "probability": 0.476806640625}, {"start": 674.27, "end": 674.79, "word": " subclasses", "probability": 0.9069010416666666}, {"start": 674.79, "end": 674.89, "word": " and", "probability": 0.87841796875}, {"start": 674.89, "end": 675.11, "word": " resort", "probability": 0.60595703125}, {"start": 675.11, "end": 675.77, "word": " to", "probability": 0.947265625}, {"start": 675.77, "end": 675.91, "word": " the", "probability": 0.78564453125}, {"start": 675.91, "end": 676.37, "word": " decorator", "probability": 0.979248046875}], "temperature": 1.0}, {"id": 28, "seek": 70510, "start": 680.36, "end": 705.1, "text": "Okay, this is today's diagram of the decorator pattern, let's see it and follow the example we explained in the previous lecture Okay, first of all, I have an interface which is a component, and I have a shape which is a concrete component What does this represent in our program? The interface shape, which has a method draw and describe, and then came from it circle and rectangle, which represent the concrete components", "tokens": [8297, 11, 341, 307, 965, 311, 10686, 295, 264, 7919, 1639, 5102, 11, 718, 311, 536, 309, 293, 1524, 264, 1365, 321, 8825, 294, 264, 3894, 7991, 1033, 11, 700, 295, 439, 11, 286, 362, 364, 9226, 597, 307, 257, 6542, 11, 293, 286, 362, 257, 3909, 597, 307, 257, 9859, 6542, 708, 775, 341, 2906, 294, 527, 1461, 30, 440, 9226, 3909, 11, 597, 575, 257, 3170, 2642, 293, 6786, 11, 293, 550, 1361, 490, 309, 6329, 293, 21930, 11, 597, 2906, 264, 9859, 6677], "avg_logprob": -0.48491380338011114, "compression_ratio": 1.7625, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 680.36, "end": 680.7, "word": "Okay,", "probability": 0.2294921875}, {"start": 681.12, "end": 681.4, "word": " this", "probability": 0.5322265625}, {"start": 681.4, "end": 681.52, "word": " is", "probability": 0.83447265625}, {"start": 681.52, "end": 681.7, "word": " today's", "probability": 0.6134033203125}, {"start": 681.7, "end": 682.12, "word": " diagram", "probability": 0.392822265625}, {"start": 682.12, "end": 682.34, "word": " of", "probability": 0.62841796875}, {"start": 682.34, "end": 682.46, "word": " the", "probability": 0.4326171875}, {"start": 682.46, "end": 682.84, "word": " decorator", "probability": 0.836669921875}, {"start": 682.84, "end": 683.16, "word": " pattern,", "probability": 0.865234375}, {"start": 683.22, "end": 683.52, "word": " let's", "probability": 0.861328125}, {"start": 683.52, "end": 683.78, "word": " see", "probability": 0.37060546875}, {"start": 683.78, "end": 684.0, "word": " it", "probability": 0.386962890625}, {"start": 684.0, "end": 684.06, "word": " and", "probability": 0.65673828125}, {"start": 684.06, "end": 684.2, "word": " follow", "probability": 0.1533203125}, {"start": 684.2, "end": 684.52, "word": " the", "probability": 0.56982421875}, {"start": 684.52, "end": 684.78, "word": " example", "probability": 0.9140625}, {"start": 684.78, "end": 684.94, "word": " we", "probability": 0.3828125}, {"start": 684.94, "end": 685.14, "word": " explained", "probability": 0.451171875}, {"start": 685.14, "end": 685.36, "word": " in", "probability": 0.833984375}, {"start": 685.36, "end": 685.38, "word": " the", "probability": 0.791015625}, {"start": 685.38, "end": 685.38, "word": " previous", "probability": 0.482177734375}, {"start": 685.38, "end": 686.0, "word": " lecture", "probability": 0.73828125}, {"start": 686.0, "end": 688.6, "word": " Okay,", "probability": 0.39501953125}, {"start": 688.7, "end": 688.96, "word": " first", "probability": 0.51806640625}, {"start": 688.96, "end": 689.26, "word": " of", "probability": 0.368408203125}, {"start": 689.26, "end": 689.26, "word": " all,", "probability": 0.9521484375}, {"start": 689.36, "end": 689.42, "word": " I", "probability": 0.94140625}, {"start": 689.42, "end": 689.7, "word": " have", "probability": 0.93701171875}, {"start": 689.7, "end": 690.42, "word": " an", "probability": 0.74853515625}, {"start": 690.42, "end": 690.94, "word": " interface", "probability": 0.9111328125}, {"start": 690.94, "end": 691.2, "word": " which", "probability": 0.2008056640625}, {"start": 691.2, "end": 691.34, "word": " is", "probability": 0.82470703125}, {"start": 691.34, "end": 691.46, "word": " a", "probability": 0.87939453125}, {"start": 691.46, "end": 691.86, "word": " component,", "probability": 0.841796875}, {"start": 691.98, "end": 692.1, "word": " and", "probability": 0.84423828125}, {"start": 692.1, "end": 692.16, "word": " I", "probability": 0.7783203125}, {"start": 692.16, "end": 692.32, "word": " have", "probability": 0.904296875}, {"start": 692.32, "end": 692.42, "word": " a", "probability": 0.4697265625}, {"start": 692.42, "end": 692.72, "word": " shape", "probability": 0.8154296875}, {"start": 692.72, "end": 693.14, "word": " which", "probability": 0.7451171875}, {"start": 693.14, "end": 693.18, "word": " is", "probability": 0.9423828125}, {"start": 693.18, "end": 693.24, "word": " a", "probability": 0.88330078125}, {"start": 693.24, "end": 693.62, "word": " concrete", "probability": 0.8623046875}, {"start": 693.62, "end": 694.22, "word": " component", "probability": 0.88037109375}, {"start": 694.22, "end": 695.02, "word": " What", "probability": 0.42626953125}, {"start": 695.02, "end": 695.02, "word": " does", "probability": 0.77587890625}, {"start": 695.02, "end": 695.14, "word": " this", "probability": 0.8408203125}, {"start": 695.14, "end": 695.6, "word": " represent", "probability": 0.703125}, {"start": 695.6, "end": 695.76, "word": " in", "probability": 0.89306640625}, {"start": 695.76, "end": 695.82, "word": " our", "probability": 0.876953125}, {"start": 695.82, "end": 696.24, "word": " program?", "probability": 0.79833984375}, {"start": 696.72, "end": 696.84, "word": " The", "probability": 0.76416015625}, {"start": 696.84, "end": 697.22, "word": " interface", "probability": 0.380615234375}, {"start": 697.22, "end": 697.68, "word": " shape,", "probability": 0.88720703125}, {"start": 698.2, "end": 698.32, "word": " which", "probability": 0.75634765625}, {"start": 698.32, "end": 698.46, "word": " has", "probability": 0.69580078125}, {"start": 698.46, "end": 698.58, "word": " a", "probability": 0.4755859375}, {"start": 698.58, "end": 698.8, "word": " method", "probability": 0.73486328125}, {"start": 698.8, "end": 699.06, "word": " draw", "probability": 0.438720703125}, {"start": 699.06, "end": 699.5, "word": " and", "probability": 0.625}, {"start": 699.5, "end": 700.04, "word": " describe,", "probability": 0.7919921875}, {"start": 700.6, "end": 701.34, "word": " and", "probability": 0.66650390625}, {"start": 701.34, "end": 701.56, "word": " then", "probability": 0.77197265625}, {"start": 701.56, "end": 701.78, "word": " came", "probability": 0.260986328125}, {"start": 701.78, "end": 701.88, "word": " from", "probability": 0.344482421875}, {"start": 701.88, "end": 702.08, "word": " it", "probability": 0.796875}, {"start": 702.08, "end": 702.58, "word": " circle", "probability": 0.50927734375}, {"start": 702.58, "end": 702.86, "word": " and", "probability": 0.89990234375}, {"start": 702.86, "end": 703.38, "word": " rectangle,", "probability": 0.93408203125}, {"start": 703.52, "end": 703.62, "word": " which", "probability": 0.437255859375}, {"start": 703.62, "end": 703.94, "word": " represent", "probability": 0.363037109375}, {"start": 703.94, "end": 704.08, "word": " the", "probability": 0.48095703125}, {"start": 704.08, "end": 704.5, "word": " concrete", "probability": 0.92236328125}, {"start": 704.5, "end": 705.1, "word": " components", "probability": 0.85107421875}], "temperature": 1.0}, {"id": 29, "seek": 71839, "start": 706.31, "end": 718.39, "text": "My goal is to add a new functionality to the concrete component, the traditional way is to make a subclass for this, the alternative way is as follows, you make a new class", "tokens": [8506, 3387, 307, 281, 909, 257, 777, 14980, 281, 264, 9859, 6542, 11, 264, 5164, 636, 307, 281, 652, 257, 1422, 11665, 337, 341, 11, 264, 8535, 636, 307, 382, 10002, 11, 291, 652, 257, 777, 1508], "avg_logprob": -0.4584704025795585, "compression_ratio": 1.4700854700854702, "no_speech_prob": 4.649162292480469e-06, "words": [{"start": 706.31, "end": 706.89, "word": "My", "probability": 0.4794921875}, {"start": 706.89, "end": 707.19, "word": " goal", "probability": 0.703125}, {"start": 707.19, "end": 707.45, "word": " is", "probability": 0.8330078125}, {"start": 707.45, "end": 707.65, "word": " to", "probability": 0.91259765625}, {"start": 707.65, "end": 707.87, "word": " add", "probability": 0.7705078125}, {"start": 707.87, "end": 708.09, "word": " a", "probability": 0.498291015625}, {"start": 708.09, "end": 708.83, "word": " new", "probability": 0.8720703125}, {"start": 708.83, "end": 708.83, "word": " functionality", "probability": 0.501953125}, {"start": 708.83, "end": 709.99, "word": " to", "probability": 0.6181640625}, {"start": 709.99, "end": 710.09, "word": " the", "probability": 0.61474609375}, {"start": 710.09, "end": 710.47, "word": " concrete", "probability": 0.78369140625}, {"start": 710.47, "end": 711.05, "word": " component,", "probability": 0.765625}, {"start": 711.35, "end": 711.71, "word": " the", "probability": 0.42626953125}, {"start": 711.71, "end": 712.27, "word": " traditional", "probability": 0.59521484375}, {"start": 712.27, "end": 712.37, "word": " way", "probability": 0.74560546875}, {"start": 712.37, "end": 712.63, "word": " is", "probability": 0.8095703125}, {"start": 712.63, "end": 712.67, "word": " to", "probability": 0.7177734375}, {"start": 712.67, "end": 712.91, "word": " make", "probability": 0.44482421875}, {"start": 712.91, "end": 712.99, "word": " a", "probability": 0.763671875}, {"start": 712.99, "end": 713.43, "word": " subclass", "probability": 0.76513671875}, {"start": 713.43, "end": 713.59, "word": " for", "probability": 0.59228515625}, {"start": 713.59, "end": 713.79, "word": " this,", "probability": 0.47607421875}, {"start": 714.77, "end": 715.15, "word": " the", "probability": 0.61865234375}, {"start": 715.15, "end": 715.77, "word": " alternative", "probability": 0.82080078125}, {"start": 715.77, "end": 715.79, "word": " way", "probability": 0.67236328125}, {"start": 715.79, "end": 716.61, "word": " is", "probability": 0.5576171875}, {"start": 716.61, "end": 716.89, "word": " as", "probability": 0.373291015625}, {"start": 716.89, "end": 717.21, "word": " follows,", "probability": 0.6865234375}, {"start": 717.61, "end": 717.75, "word": " you", "probability": 0.468017578125}, {"start": 717.75, "end": 717.97, "word": " make", "probability": 0.56298828125}, {"start": 717.97, "end": 718.09, "word": " a", "probability": 0.97265625}, {"start": 718.09, "end": 718.09, "word": " new", "probability": 0.90869140625}, {"start": 718.09, "end": 718.39, "word": " class", "probability": 0.96875}], "temperature": 1.0}, {"id": 30, "seek": 73947, "start": 720.89, "end": 739.47, "text": "Implement the component, it takes the same type of component and uses it as a component, there are two arrows here, this is what it means to implement and use the component from inside it It takes the same type of interface, so that the client sees this and this as one thing, and actually it wraps the object in a type of component", "tokens": [31128, 43704, 264, 6542, 11, 309, 2516, 264, 912, 2010, 295, 6542, 293, 4960, 309, 382, 257, 6542, 11, 456, 366, 732, 19669, 510, 11, 341, 307, 437, 309, 1355, 281, 4445, 293, 764, 264, 6542, 490, 1854, 309, 467, 2516, 264, 912, 2010, 295, 9226, 11, 370, 300, 264, 6423, 8194, 341, 293, 341, 382, 472, 551, 11, 293, 767, 309, 25831, 264, 2657, 294, 257, 2010, 295, 6542], "avg_logprob": -0.6069542488581697, "compression_ratio": 1.9190751445086704, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 720.89, "end": 721.37, "word": "Implement", "probability": 0.6800537109375}, {"start": 721.37, "end": 721.63, "word": " the", "probability": 0.66748046875}, {"start": 721.63, "end": 722.05, "word": " component,", "probability": 0.75439453125}, {"start": 722.25, "end": 722.33, "word": " it", "probability": 0.287109375}, {"start": 722.33, "end": 722.51, "word": " takes", "probability": 0.5869140625}, {"start": 722.51, "end": 722.87, "word": " the", "probability": 0.8408203125}, {"start": 722.87, "end": 722.87, "word": " same", "probability": 0.818359375}, {"start": 722.87, "end": 723.07, "word": " type", "probability": 0.459716796875}, {"start": 723.07, "end": 723.15, "word": " of", "probability": 0.94970703125}, {"start": 723.15, "end": 723.75, "word": " component", "probability": 0.7900390625}, {"start": 723.75, "end": 724.59, "word": " and", "probability": 0.68701171875}, {"start": 724.59, "end": 725.13, "word": " uses", "probability": 0.64208984375}, {"start": 725.13, "end": 725.85, "word": " it", "probability": 0.55126953125}, {"start": 725.85, "end": 725.89, "word": " as", "probability": 0.36572265625}, {"start": 725.89, "end": 725.89, "word": " a", "probability": 0.5}, {"start": 725.89, "end": 725.89, "word": " component,", "probability": 0.69580078125}, {"start": 726.07, "end": 726.25, "word": " there", "probability": 0.377685546875}, {"start": 726.25, "end": 726.27, "word": " are", "probability": 0.80908203125}, {"start": 726.27, "end": 726.67, "word": " two", "probability": 0.8115234375}, {"start": 726.67, "end": 726.69, "word": " arrows", "probability": 0.21875}, {"start": 726.69, "end": 726.93, "word": " here,", "probability": 0.1173095703125}, {"start": 727.27, "end": 727.79, "word": " this", "probability": 0.295166015625}, {"start": 727.79, "end": 727.91, "word": " is", "probability": 0.630859375}, {"start": 727.91, "end": 727.97, "word": " what", "probability": 0.65185546875}, {"start": 727.97, "end": 728.17, "word": " it", "probability": 0.342529296875}, {"start": 728.17, "end": 728.17, "word": " means", "probability": 0.8857421875}, {"start": 728.17, "end": 728.23, "word": " to", "probability": 0.39404296875}, {"start": 728.23, "end": 728.59, "word": " implement", "probability": 0.84033203125}, {"start": 728.59, "end": 728.81, "word": " and", "probability": 0.6259765625}, {"start": 728.81, "end": 729.23, "word": " use", "probability": 0.7177734375}, {"start": 729.23, "end": 730.59, "word": " the", "probability": 0.58251953125}, {"start": 730.59, "end": 730.91, "word": " component", "probability": 0.6640625}, {"start": 730.91, "end": 730.91, "word": " from", "probability": 0.493408203125}, {"start": 730.91, "end": 730.91, "word": " inside", "probability": 0.4228515625}, {"start": 730.91, "end": 731.19, "word": " it", "probability": 0.3935546875}, {"start": 731.19, "end": 731.71, "word": " It", "probability": 0.372314453125}, {"start": 731.71, "end": 731.95, "word": " takes", "probability": 0.326904296875}, {"start": 731.95, "end": 732.15, "word": " the", "probability": 0.9052734375}, {"start": 732.15, "end": 732.27, "word": " same", "probability": 0.88818359375}, {"start": 732.27, "end": 732.53, "word": " type", "probability": 0.83642578125}, {"start": 732.53, "end": 732.65, "word": " of", "probability": 0.96826171875}, {"start": 732.65, "end": 733.05, "word": " interface,", "probability": 0.8759765625}, {"start": 733.17, "end": 733.25, "word": " so", "probability": 0.73388671875}, {"start": 733.25, "end": 733.39, "word": " that", "probability": 0.54931640625}, {"start": 733.39, "end": 733.47, "word": " the", "probability": 0.8515625}, {"start": 733.47, "end": 733.73, "word": " client", "probability": 0.90234375}, {"start": 733.73, "end": 734.09, "word": " sees", "probability": 0.6357421875}, {"start": 734.09, "end": 734.41, "word": " this", "probability": 0.297119140625}, {"start": 734.41, "end": 734.53, "word": " and", "probability": 0.75830078125}, {"start": 734.53, "end": 734.77, "word": " this", "probability": 0.4814453125}, {"start": 734.77, "end": 735.03, "word": " as", "probability": 0.44775390625}, {"start": 735.03, "end": 735.25, "word": " one", "probability": 0.61474609375}, {"start": 735.25, "end": 735.47, "word": " thing,", "probability": 0.359130859375}, {"start": 736.37, "end": 736.53, "word": " and", "probability": 0.7880859375}, {"start": 736.53, "end": 737.09, "word": " actually", "probability": 0.263427734375}, {"start": 737.09, "end": 737.33, "word": " it", "probability": 0.43115234375}, {"start": 737.33, "end": 737.63, "word": " wraps", "probability": 0.5}, {"start": 737.63, "end": 737.79, "word": " the", "probability": 0.53271484375}, {"start": 737.79, "end": 738.05, "word": " object", "probability": 0.93994140625}, {"start": 738.05, "end": 738.17, "word": " in", "probability": 0.258544921875}, {"start": 738.17, "end": 738.49, "word": " a", "probability": 0.72265625}, {"start": 738.49, "end": 738.49, "word": " type", "probability": 0.32275390625}, {"start": 738.49, "end": 739.09, "word": " of", "probability": 0.9306640625}, {"start": 739.09, "end": 739.47, "word": " component", "probability": 0.8359375}], "temperature": 1.0}, {"id": 31, "seek": 76995, "start": 742.23, "end": 769.95, "text": "Okay, now notice this specific object, what is it made of? It is solid, right or wrong? We said that a specific object has two forms, hollow and solid What separates them from each other? Composition and aggregation So, when this is solid, it means that this object inside, which is a component, was built inside the decorator When it is hollow, it means that it was built outside and it was reused by the decorator Because this one here is wrong, based on our example", "tokens": [8297, 11, 586, 3449, 341, 2685, 2657, 11, 437, 307, 309, 1027, 295, 30, 467, 307, 5100, 11, 558, 420, 2085, 30, 492, 848, 300, 257, 2685, 2657, 575, 732, 6422, 11, 23972, 293, 5100, 708, 34149, 552, 490, 1184, 661, 30, 6620, 5830, 293, 16743, 399, 407, 11, 562, 341, 307, 5100, 11, 309, 1355, 300, 341, 2657, 1854, 11, 597, 307, 257, 6542, 11, 390, 3094, 1854, 264, 7919, 1639, 1133, 309, 307, 23972, 11, 309, 1355, 300, 309, 390, 3094, 2380, 293, 309, 390, 319, 4717, 538, 264, 7919, 1639, 1436, 341, 472, 510, 307, 2085, 11, 2361, 322, 527, 1365], "avg_logprob": -0.4866071542104085, "compression_ratio": 1.821011673151751, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 742.23, "end": 742.67, "word": "Okay,", "probability": 0.2435302734375}, {"start": 743.51, "end": 743.91, "word": " now", "probability": 0.5517578125}, {"start": 743.91, "end": 744.25, "word": " notice", "probability": 0.69921875}, {"start": 744.25, "end": 744.47, "word": " this", "probability": 0.4052734375}, {"start": 744.47, "end": 744.75, "word": " specific", "probability": 0.192138671875}, {"start": 744.75, "end": 744.87, "word": " object,", "probability": 0.273681640625}, {"start": 744.99, "end": 745.15, "word": " what", "probability": 0.60302734375}, {"start": 745.15, "end": 745.19, "word": " is", "probability": 0.54931640625}, {"start": 745.19, "end": 745.25, "word": " it", "probability": 0.84619140625}, {"start": 745.25, "end": 745.37, "word": " made", "probability": 0.72509765625}, {"start": 745.37, "end": 746.19, "word": " of?", "probability": 0.87451171875}, {"start": 746.49, "end": 746.55, "word": " It", "probability": 0.329833984375}, {"start": 746.55, "end": 746.55, "word": " is", "probability": 0.615234375}, {"start": 746.55, "end": 746.73, "word": " solid,", "probability": 0.31787109375}, {"start": 746.99, "end": 747.27, "word": " right", "probability": 0.469970703125}, {"start": 747.27, "end": 747.43, "word": " or", "probability": 0.53955078125}, {"start": 747.43, "end": 747.51, "word": " wrong?", "probability": 0.51318359375}, {"start": 747.63, "end": 747.81, "word": " We", "probability": 0.5048828125}, {"start": 747.81, "end": 747.95, "word": " said", "probability": 0.352783203125}, {"start": 747.95, "end": 748.05, "word": " that", "probability": 0.744140625}, {"start": 748.05, "end": 748.15, "word": " a", "probability": 0.3193359375}, {"start": 748.15, "end": 748.27, "word": " specific", "probability": 0.68896484375}, {"start": 748.27, "end": 748.33, "word": " object", "probability": 0.9599609375}, {"start": 748.33, "end": 748.49, "word": " has", "probability": 0.8544921875}, {"start": 748.49, "end": 748.91, "word": " two", "probability": 0.734375}, {"start": 748.91, "end": 748.91, "word": " forms,", "probability": 0.44873046875}, {"start": 749.23, "end": 749.65, "word": " hollow", "probability": 0.365966796875}, {"start": 749.65, "end": 749.87, "word": " and", "probability": 0.88623046875}, {"start": 749.87, "end": 750.15, "word": " solid", "probability": 0.95849609375}, {"start": 750.15, "end": 750.71, "word": " What", "probability": 0.3251953125}, {"start": 750.71, "end": 751.01, "word": " separates", "probability": 0.1396484375}, {"start": 751.01, "end": 751.11, "word": " them", "probability": 0.859375}, {"start": 751.11, "end": 751.21, "word": " from", "probability": 0.76806640625}, {"start": 751.21, "end": 751.39, "word": " each", "probability": 0.92724609375}, {"start": 751.39, "end": 751.39, "word": " other?", "probability": 0.89404296875}, {"start": 752.71, "end": 753.15, "word": " Composition", "probability": 0.880859375}, {"start": 753.15, "end": 753.33, "word": " and", "probability": 0.701171875}, {"start": 753.33, "end": 753.95, "word": " aggregation", "probability": 0.712646484375}, {"start": 753.95, "end": 754.95, "word": " So,", "probability": 0.18212890625}, {"start": 755.11, "end": 755.25, "word": " when", "probability": 0.57958984375}, {"start": 755.25, "end": 755.45, "word": " this", "probability": 0.70556640625}, {"start": 755.45, "end": 755.81, "word": " is", "probability": 0.357666015625}, {"start": 755.81, "end": 756.13, "word": " solid,", "probability": 0.9501953125}, {"start": 756.25, "end": 756.27, "word": " it", "probability": 0.71337890625}, {"start": 756.27, "end": 756.49, "word": " means", "probability": 0.93359375}, {"start": 756.49, "end": 756.87, "word": " that", "probability": 0.8955078125}, {"start": 756.87, "end": 757.21, "word": " this", "probability": 0.81884765625}, {"start": 757.21, "end": 757.77, "word": " object", "probability": 0.84130859375}, {"start": 757.77, "end": 758.21, "word": " inside,", "probability": 0.783203125}, {"start": 758.83, "end": 758.99, "word": " which", "probability": 0.80419921875}, {"start": 758.99, "end": 759.09, "word": " is", "probability": 0.90380859375}, {"start": 759.09, "end": 759.23, "word": " a", "probability": 0.6220703125}, {"start": 759.23, "end": 759.79, "word": " component,", "probability": 0.83544921875}, {"start": 759.89, "end": 760.15, "word": " was", "probability": 0.787109375}, {"start": 760.15, "end": 760.49, "word": " built", "probability": 0.49267578125}, {"start": 760.49, "end": 760.97, "word": " inside", "probability": 0.8466796875}, {"start": 760.97, "end": 761.81, "word": " the", "probability": 0.87744140625}, {"start": 761.81, "end": 762.29, "word": " decorator", "probability": 0.962890625}, {"start": 762.29, "end": 763.03, "word": " When", "probability": 0.8173828125}, {"start": 763.03, "end": 763.15, "word": " it", "probability": 0.73828125}, {"start": 763.15, "end": 763.33, "word": " is", "probability": 0.81494140625}, {"start": 763.33, "end": 763.63, "word": " hollow,", "probability": 0.990234375}, {"start": 763.79, "end": 763.83, "word": " it", "probability": 0.9189453125}, {"start": 763.83, "end": 763.97, "word": " means", "probability": 0.9169921875}, {"start": 763.97, "end": 764.13, "word": " that", "probability": 0.60986328125}, {"start": 764.13, "end": 764.13, "word": " it", "probability": 0.89453125}, {"start": 764.13, "end": 764.29, "word": " was", "probability": 0.8935546875}, {"start": 764.29, "end": 764.55, "word": " built", "probability": 0.92529296875}, {"start": 764.55, "end": 764.91, "word": " outside", "probability": 0.787109375}, {"start": 764.91, "end": 765.61, "word": " and", "probability": 0.7861328125}, {"start": 765.61, "end": 765.65, "word": " it", "probability": 0.04705810546875}, {"start": 765.65, "end": 765.73, "word": " was", "probability": 0.50341796875}, {"start": 765.73, "end": 765.93, "word": " reused", "probability": 0.1797027587890625}, {"start": 765.93, "end": 766.05, "word": " by", "probability": 0.83984375}, {"start": 766.05, "end": 766.11, "word": " the", "probability": 0.740234375}, {"start": 766.11, "end": 766.49, "word": " decorator", "probability": 0.9697265625}, {"start": 766.49, "end": 767.13, "word": " Because", "probability": 0.501953125}, {"start": 767.13, "end": 767.43, "word": " this", "probability": 0.6181640625}, {"start": 767.43, "end": 767.51, "word": " one", "probability": 0.351318359375}, {"start": 767.51, "end": 767.77, "word": " here", "probability": 0.6494140625}, {"start": 767.77, "end": 768.11, "word": " is", "probability": 0.84814453125}, {"start": 768.11, "end": 768.43, "word": " wrong,", "probability": 0.85595703125}, {"start": 769.27, "end": 769.49, "word": " based", "probability": 0.705078125}, {"start": 769.49, "end": 769.59, "word": " on", "probability": 0.94921875}, {"start": 769.59, "end": 769.69, "word": " our", "probability": 0.87158203125}, {"start": 769.69, "end": 769.95, "word": " example", "probability": 0.9697265625}], "temperature": 1.0}, {"id": 32, "seek": 79583, "start": 771.17, "end": 795.83, "text": "When we work, we create an object from the rectangle or circle outside and then we pass it to the decorator Because the idea of ​​the decorator is to add functionalities to the existing objects So I create the object in the first place and pass it to the decorator So this is supposed to be what guys? Extended, not fixed like that Okay guys?", "tokens": [11645, 321, 589, 11, 321, 1884, 364, 2657, 490, 264, 21930, 420, 6329, 2380, 293, 550, 321, 1320, 309, 281, 264, 7919, 1639, 1436, 264, 1558, 295, 8701, 3322, 7919, 1639, 307, 281, 909, 11745, 1088, 281, 264, 6741, 6565, 407, 286, 1884, 264, 2657, 294, 264, 700, 1081, 293, 1320, 309, 281, 264, 7919, 1639, 407, 341, 307, 3442, 281, 312, 437, 1074, 30, 9881, 3502, 11, 406, 6806, 411, 300, 1033, 1074, 30], "avg_logprob": -0.58881581613892, "compression_ratio": 1.6398104265402844, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 771.1700000000001, "end": 771.73, "word": "When", "probability": 0.335693359375}, {"start": 771.73, "end": 771.95, "word": " we", "probability": 0.8515625}, {"start": 771.95, "end": 772.23, "word": " work,", "probability": 0.1983642578125}, {"start": 772.83, "end": 773.21, "word": " we", "probability": 0.86669921875}, {"start": 773.21, "end": 773.49, "word": " create", "probability": 0.424560546875}, {"start": 773.49, "end": 773.69, "word": " an", "probability": 0.58203125}, {"start": 773.69, "end": 773.89, "word": " object", "probability": 0.9384765625}, {"start": 773.89, "end": 774.09, "word": " from", "probability": 0.53125}, {"start": 774.09, "end": 774.15, "word": " the", "probability": 0.2099609375}, {"start": 774.15, "end": 774.57, "word": " rectangle", "probability": 0.8642578125}, {"start": 774.57, "end": 774.77, "word": " or", "probability": 0.77880859375}, {"start": 774.77, "end": 775.25, "word": " circle", "probability": 0.90869140625}, {"start": 775.25, "end": 776.35, "word": " outside", "probability": 0.2247314453125}, {"start": 776.35, "end": 776.89, "word": " and", "probability": 0.428466796875}, {"start": 776.89, "end": 777.19, "word": " then", "probability": 0.5498046875}, {"start": 777.19, "end": 777.31, "word": " we", "probability": 0.50439453125}, {"start": 777.31, "end": 777.49, "word": " pass", "probability": 0.45947265625}, {"start": 777.49, "end": 777.73, "word": " it", "probability": 0.8798828125}, {"start": 777.73, "end": 777.81, "word": " to", "probability": 0.81103515625}, {"start": 777.81, "end": 778.37, "word": " the", "probability": 0.55908203125}, {"start": 778.37, "end": 779.27, "word": " decorator", "probability": 0.97314453125}, {"start": 779.27, "end": 779.99, "word": " Because", "probability": 0.517578125}, {"start": 779.99, "end": 780.59, "word": " the", "probability": 0.405517578125}, {"start": 780.59, "end": 780.79, "word": " idea", "probability": 0.72900390625}, {"start": 780.79, "end": 780.93, "word": " of", "probability": 0.78466796875}, {"start": 780.93, "end": 781.01, "word": " ​​the", "probability": 0.5858154296875}, {"start": 781.01, "end": 781.47, "word": " decorator", "probability": 0.987548828125}, {"start": 781.47, "end": 781.73, "word": " is", "probability": 0.6962890625}, {"start": 781.73, "end": 781.73, "word": " to", "probability": 0.71240234375}, {"start": 781.73, "end": 781.91, "word": " add", "probability": 0.8359375}, {"start": 781.91, "end": 782.61, "word": " functionalities", "probability": 0.6009521484375}, {"start": 782.61, "end": 782.75, "word": " to", "probability": 0.8740234375}, {"start": 782.75, "end": 782.77, "word": " the", "probability": 0.282470703125}, {"start": 782.77, "end": 783.59, "word": " existing", "probability": 0.74267578125}, {"start": 783.59, "end": 783.59, "word": " objects", "probability": 0.9208984375}, {"start": 783.59, "end": 784.57, "word": " So", "probability": 0.67236328125}, {"start": 784.57, "end": 784.71, "word": " I", "probability": 0.75048828125}, {"start": 784.71, "end": 784.97, "word": " create", "probability": 0.249755859375}, {"start": 784.97, "end": 785.11, "word": " the", "probability": 0.72607421875}, {"start": 785.11, "end": 785.35, "word": " object", "probability": 0.935546875}, {"start": 785.35, "end": 785.47, "word": " in", "probability": 0.350341796875}, {"start": 785.47, "end": 785.59, "word": " the", "probability": 0.89990234375}, {"start": 785.59, "end": 785.83, "word": " first", "probability": 0.62890625}, {"start": 785.83, "end": 785.95, "word": " place", "probability": 0.3310546875}, {"start": 785.95, "end": 786.77, "word": " and", "probability": 0.73388671875}, {"start": 786.77, "end": 787.05, "word": " pass", "probability": 0.55615234375}, {"start": 787.05, "end": 787.21, "word": " it", "probability": 0.7919921875}, {"start": 787.21, "end": 787.35, "word": " to", "probability": 0.92431640625}, {"start": 787.35, "end": 788.21, "word": " the", "probability": 0.86474609375}, {"start": 788.21, "end": 788.87, "word": " decorator", "probability": 0.99072265625}, {"start": 788.87, "end": 789.35, "word": " So", "probability": 0.69384765625}, {"start": 789.35, "end": 790.17, "word": " this", "probability": 0.5478515625}, {"start": 790.17, "end": 790.49, "word": " is", "probability": 0.09124755859375}, {"start": 790.49, "end": 790.49, "word": " supposed", "probability": 0.8291015625}, {"start": 790.49, "end": 790.49, "word": " to", "probability": 0.9677734375}, {"start": 790.49, "end": 790.91, "word": " be", "probability": 0.927734375}, {"start": 790.91, "end": 791.03, "word": " what", "probability": 0.14794921875}, {"start": 791.03, "end": 791.47, "word": " guys?", "probability": 0.481201171875}, {"start": 792.85, "end": 793.41, "word": " Extended,", "probability": 0.12886810302734375}, {"start": 793.61, "end": 793.85, "word": " not", "probability": 0.8916015625}, {"start": 793.85, "end": 794.21, "word": " fixed", "probability": 0.158935546875}, {"start": 794.21, "end": 794.33, "word": " like", "probability": 0.58447265625}, {"start": 794.33, "end": 794.83, "word": " that", "probability": 0.787109375}, {"start": 794.83, "end": 795.51, "word": " Okay", "probability": 0.324951171875}, {"start": 795.51, "end": 795.83, "word": " guys?", "probability": 0.79931640625}], "temperature": 1.0}, {"id": 33, "seek": 82560, "start": 798.38, "end": 825.6, "text": "Okay, now there is also a slight difference from what I did here I made a class named decorator and then when it likes to add functionalities, I made extend to whom? this is an abstract class, I can't create an object from it why did I make it? so that it creates a constructor in it, it is not a constructor, it takes object from it as a component because I wanted to add a decorator to make a border for example", "tokens": [8297, 11, 586, 456, 307, 611, 257, 4036, 2649, 490, 437, 286, 630, 510, 286, 1027, 257, 1508, 4926, 7919, 1639, 293, 550, 562, 309, 5902, 281, 909, 11745, 1088, 11, 286, 1027, 10101, 281, 7101, 30, 341, 307, 364, 12649, 1508, 11, 286, 393, 380, 1884, 364, 2657, 490, 309, 983, 630, 286, 652, 309, 30, 370, 300, 309, 7829, 257, 47479, 294, 309, 11, 309, 307, 406, 257, 47479, 11, 309, 2516, 2657, 490, 309, 382, 257, 6542, 570, 286, 1415, 281, 909, 257, 7919, 1639, 281, 652, 257, 7838, 337, 1365], "avg_logprob": -0.5470394987809031, "compression_ratio": 1.7574468085106383, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 798.38, "end": 798.9, "word": "Okay,", "probability": 0.158447265625}, {"start": 798.9, "end": 799.42, "word": " now", "probability": 0.50048828125}, {"start": 799.42, "end": 799.84, "word": " there", "probability": 0.673828125}, {"start": 799.84, "end": 799.84, "word": " is", "probability": 0.724609375}, {"start": 799.84, "end": 799.84, "word": " also", "probability": 0.2137451171875}, {"start": 799.84, "end": 800.3, "word": " a", "probability": 0.93798828125}, {"start": 800.3, "end": 800.56, "word": " slight", "probability": 0.261474609375}, {"start": 800.56, "end": 800.56, "word": " difference", "probability": 0.75048828125}, {"start": 800.56, "end": 800.8, "word": " from", "probability": 0.37060546875}, {"start": 800.8, "end": 800.86, "word": " what", "probability": 0.82861328125}, {"start": 800.86, "end": 801.0, "word": " I", "probability": 0.92236328125}, {"start": 801.0, "end": 801.3, "word": " did", "probability": 0.53271484375}, {"start": 801.3, "end": 801.92, "word": " here", "probability": 0.15771484375}, {"start": 801.92, "end": 802.2, "word": " I", "probability": 0.284912109375}, {"start": 802.2, "end": 802.38, "word": " made", "probability": 0.414794921875}, {"start": 802.38, "end": 802.54, "word": " a", "probability": 0.90625}, {"start": 802.54, "end": 802.92, "word": " class", "probability": 0.95361328125}, {"start": 802.92, "end": 803.26, "word": " named", "probability": 0.358642578125}, {"start": 803.26, "end": 803.92, "word": " decorator", "probability": 0.84912109375}, {"start": 803.92, "end": 805.02, "word": " and", "probability": 0.49755859375}, {"start": 805.02, "end": 805.42, "word": " then", "probability": 0.515625}, {"start": 805.42, "end": 805.9, "word": " when", "probability": 0.7373046875}, {"start": 805.9, "end": 806.08, "word": " it", "probability": 0.56982421875}, {"start": 806.08, "end": 806.82, "word": " likes", "probability": 0.307861328125}, {"start": 806.82, "end": 806.92, "word": " to", "probability": 0.81787109375}, {"start": 806.92, "end": 807.1, "word": " add", "probability": 0.8837890625}, {"start": 807.1, "end": 808.0, "word": " functionalities,", "probability": 0.783203125}, {"start": 808.58, "end": 808.7, "word": " I", "probability": 0.7177734375}, {"start": 808.7, "end": 808.84, "word": " made", "probability": 0.3603515625}, {"start": 808.84, "end": 809.28, "word": " extend", "probability": 0.6552734375}, {"start": 809.28, "end": 809.5, "word": " to", "probability": 0.70703125}, {"start": 809.5, "end": 809.68, "word": " whom?", "probability": 0.47314453125}, {"start": 810.08, "end": 810.48, "word": " this", "probability": 0.1939697265625}, {"start": 810.48, "end": 810.78, "word": " is", "probability": 0.83642578125}, {"start": 810.78, "end": 811.06, "word": " an", "probability": 0.5244140625}, {"start": 811.06, "end": 811.4, "word": " abstract", "probability": 0.90380859375}, {"start": 811.4, "end": 811.92, "word": " class,", "probability": 0.9638671875}, {"start": 812.3, "end": 812.46, "word": " I", "probability": 0.904296875}, {"start": 812.46, "end": 812.66, "word": " can't", "probability": 0.662353515625}, {"start": 812.66, "end": 812.98, "word": " create", "probability": 0.69970703125}, {"start": 812.98, "end": 813.48, "word": " an", "probability": 0.427978515625}, {"start": 813.48, "end": 814.2, "word": " object", "probability": 0.98388671875}, {"start": 814.2, "end": 814.2, "word": " from", "probability": 0.77734375}, {"start": 814.2, "end": 814.22, "word": " it", "probability": 0.9130859375}, {"start": 814.22, "end": 814.74, "word": " why", "probability": 0.46875}, {"start": 814.74, "end": 814.86, "word": " did", "probability": 0.70458984375}, {"start": 814.86, "end": 814.86, "word": " I", "probability": 0.81396484375}, {"start": 814.86, "end": 814.98, "word": " make", "probability": 0.4931640625}, {"start": 814.98, "end": 815.08, "word": " it?", "probability": 0.892578125}, {"start": 815.1, "end": 815.32, "word": " so", "probability": 0.336181640625}, {"start": 815.32, "end": 815.58, "word": " that", "probability": 0.76708984375}, {"start": 815.58, "end": 815.66, "word": " it", "probability": 0.365234375}, {"start": 815.66, "end": 815.86, "word": " creates", "probability": 0.2421875}, {"start": 815.86, "end": 815.98, "word": " a", "probability": 0.93798828125}, {"start": 815.98, "end": 816.48, "word": " constructor", "probability": 0.86181640625}, {"start": 816.48, "end": 816.68, "word": " in", "probability": 0.470458984375}, {"start": 816.68, "end": 816.84, "word": " it,", "probability": 0.9013671875}, {"start": 817.5, "end": 817.58, "word": " it", "probability": 0.3564453125}, {"start": 817.58, "end": 817.6, "word": " is", "probability": 0.33349609375}, {"start": 817.6, "end": 817.82, "word": " not", "probability": 0.85498046875}, {"start": 817.82, "end": 817.98, "word": " a", "probability": 0.1680908203125}, {"start": 817.98, "end": 819.2, "word": " constructor,", "probability": 0.81640625}, {"start": 819.28, "end": 819.52, "word": " it", "probability": 0.7119140625}, {"start": 819.52, "end": 819.76, "word": " takes", "probability": 0.7119140625}, {"start": 819.76, "end": 820.74, "word": " object", "probability": 0.249755859375}, {"start": 820.74, "end": 821.0, "word": " from", "probability": 0.5732421875}, {"start": 821.0, "end": 821.3, "word": " it", "probability": 0.60693359375}, {"start": 821.3, "end": 821.9, "word": " as", "probability": 0.30419921875}, {"start": 821.9, "end": 821.9, "word": " a", "probability": 0.751953125}, {"start": 821.9, "end": 822.28, "word": " component", "probability": 0.8427734375}, {"start": 822.28, "end": 822.88, "word": " because", "probability": 0.67333984375}, {"start": 822.88, "end": 823.4, "word": " I", "probability": 0.8837890625}, {"start": 823.4, "end": 823.76, "word": " wanted", "probability": 0.76806640625}, {"start": 823.76, "end": 823.88, "word": " to", "probability": 0.95751953125}, {"start": 823.88, "end": 824.08, "word": " add", "probability": 0.88330078125}, {"start": 824.08, "end": 824.2, "word": " a", "probability": 0.5341796875}, {"start": 824.2, "end": 824.6, "word": " decorator", "probability": 0.984130859375}, {"start": 824.6, "end": 824.72, "word": " to", "probability": 0.45703125}, {"start": 824.72, "end": 824.84, "word": " make", "probability": 0.69189453125}, {"start": 824.84, "end": 824.96, "word": " a", "probability": 0.68212890625}, {"start": 824.96, "end": 825.26, "word": " border", "probability": 0.8818359375}, {"start": 825.26, "end": 825.46, "word": " for", "probability": 0.732421875}, {"start": 825.46, "end": 825.6, "word": " example", "probability": 0.96142578125}], "temperature": 1.0}, {"id": 34, "seek": 84797, "start": 826.35, "end": 847.97, "text": "I go and create a new class for example border decorator and I tell it to extend main decorator The advantage here is that the constructor you have to create a constructor here and add the function that says do operation that changes what you want it to do or do additional operations So the difference from what you did, of course when I came and created border", "tokens": [40, 352, 293, 1884, 257, 777, 1508, 337, 1365, 7838, 7919, 1639, 293, 286, 980, 309, 281, 10101, 2135, 7919, 1639, 440, 5002, 510, 307, 300, 264, 47479, 291, 362, 281, 1884, 257, 47479, 510, 293, 909, 264, 2445, 300, 1619, 360, 6916, 300, 2962, 437, 291, 528, 309, 281, 360, 420, 360, 4497, 7705, 407, 264, 2649, 490, 437, 291, 630, 11, 295, 1164, 562, 286, 1361, 293, 2942, 7838], "avg_logprob": -0.68880205684238, "compression_ratio": 1.7920792079207921, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 826.35, "end": 826.59, "word": "I", "probability": 0.468994140625}, {"start": 826.59, "end": 826.71, "word": " go", "probability": 0.1998291015625}, {"start": 826.71, "end": 826.81, "word": " and", "probability": 0.47021484375}, {"start": 826.81, "end": 827.01, "word": " create", "probability": 0.6044921875}, {"start": 827.01, "end": 827.11, "word": " a", "probability": 0.900390625}, {"start": 827.11, "end": 827.11, "word": " new", "probability": 0.876953125}, {"start": 827.11, "end": 827.41, "word": " class", "probability": 0.94384765625}, {"start": 827.41, "end": 827.93, "word": " for", "probability": 0.244873046875}, {"start": 827.93, "end": 828.11, "word": " example", "probability": 0.79150390625}, {"start": 828.11, "end": 828.55, "word": " border", "probability": 0.478271484375}, {"start": 828.55, "end": 829.91, "word": " decorator", "probability": 0.901123046875}, {"start": 829.91, "end": 830.43, "word": " and", "probability": 0.69140625}, {"start": 830.43, "end": 830.51, "word": " I", "probability": 0.376220703125}, {"start": 830.51, "end": 830.67, "word": " tell", "probability": 0.26708984375}, {"start": 830.67, "end": 830.79, "word": " it", "probability": 0.71484375}, {"start": 830.79, "end": 830.93, "word": " to", "probability": 0.61767578125}, {"start": 830.93, "end": 831.33, "word": " extend", "probability": 0.873046875}, {"start": 831.33, "end": 831.67, "word": " main", "probability": 0.332275390625}, {"start": 831.67, "end": 832.81, "word": " decorator", "probability": 0.857421875}, {"start": 832.81, "end": 833.57, "word": " The", "probability": 0.173583984375}, {"start": 833.57, "end": 833.79, "word": " advantage", "probability": 0.355224609375}, {"start": 833.79, "end": 833.99, "word": " here", "probability": 0.5078125}, {"start": 833.99, "end": 834.15, "word": " is", "probability": 0.87744140625}, {"start": 834.15, "end": 834.55, "word": " that", "probability": 0.81298828125}, {"start": 834.55, "end": 834.67, "word": " the", "probability": 0.57470703125}, {"start": 834.67, "end": 835.19, "word": " constructor", "probability": 0.701171875}, {"start": 835.19, "end": 835.33, "word": " you", "probability": 0.11767578125}, {"start": 835.33, "end": 835.53, "word": " have", "probability": 0.307861328125}, {"start": 835.53, "end": 835.97, "word": " to", "probability": 0.64208984375}, {"start": 835.97, "end": 836.35, "word": " create", "probability": 0.493896484375}, {"start": 836.35, "end": 837.83, "word": " a", "probability": 0.46142578125}, {"start": 837.83, "end": 838.33, "word": " constructor", "probability": 0.8330078125}, {"start": 838.33, "end": 838.69, "word": " here", "probability": 0.6201171875}, {"start": 838.69, "end": 839.55, "word": " and", "probability": 0.396240234375}, {"start": 839.55, "end": 840.29, "word": " add", "probability": 0.578125}, {"start": 840.29, "end": 840.49, "word": " the", "probability": 0.292236328125}, {"start": 840.49, "end": 840.73, "word": " function", "probability": 0.6552734375}, {"start": 840.73, "end": 840.89, "word": " that", "probability": 0.14501953125}, {"start": 840.89, "end": 841.01, "word": " says", "probability": 0.1680908203125}, {"start": 841.01, "end": 841.15, "word": " do", "probability": 0.796875}, {"start": 841.15, "end": 841.57, "word": " operation", "probability": 0.90576171875}, {"start": 841.57, "end": 841.73, "word": " that", "probability": 0.169677734375}, {"start": 841.73, "end": 841.99, "word": " changes", "probability": 0.468994140625}, {"start": 841.99, "end": 842.37, "word": " what", "probability": 0.3544921875}, {"start": 842.37, "end": 842.47, "word": " you", "probability": 0.81494140625}, {"start": 842.47, "end": 842.69, "word": " want", "probability": 0.82373046875}, {"start": 842.69, "end": 842.77, "word": " it", "probability": 0.1915283203125}, {"start": 842.77, "end": 842.83, "word": " to", "probability": 0.91259765625}, {"start": 842.83, "end": 842.87, "word": " do", "probability": 0.5166015625}, {"start": 842.87, "end": 842.97, "word": " or", "probability": 0.68701171875}, {"start": 842.97, "end": 843.39, "word": " do", "probability": 0.280517578125}, {"start": 843.39, "end": 843.91, "word": " additional", "probability": 0.8330078125}, {"start": 843.91, "end": 845.05, "word": " operations", "probability": 0.509765625}, {"start": 845.05, "end": 845.59, "word": " So", "probability": 0.1162109375}, {"start": 845.59, "end": 845.73, "word": " the", "probability": 0.7392578125}, {"start": 845.73, "end": 846.03, "word": " difference", "probability": 0.85205078125}, {"start": 846.03, "end": 846.19, "word": " from", "probability": 0.3388671875}, {"start": 846.19, "end": 846.27, "word": " what", "probability": 0.87548828125}, {"start": 846.27, "end": 846.31, "word": " you", "probability": 0.53759765625}, {"start": 846.31, "end": 846.51, "word": " did,", "probability": 0.61572265625}, {"start": 846.61, "end": 846.87, "word": " of", "probability": 0.328857421875}, {"start": 846.87, "end": 846.91, "word": " course", "probability": 0.95849609375}, {"start": 846.91, "end": 847.11, "word": " when", "probability": 0.64697265625}, {"start": 847.11, "end": 847.23, "word": " I", "probability": 0.95166015625}, {"start": 847.23, "end": 847.37, "word": " came", "probability": 0.3466796875}, {"start": 847.37, "end": 847.45, "word": " and", "probability": 0.417724609375}, {"start": 847.45, "end": 847.59, "word": " created", "probability": 0.42919921875}, {"start": 847.59, "end": 847.97, "word": " border", "probability": 0.71044921875}], "temperature": 1.0}, {"id": 35, "seek": 86740, "start": 849.42, "end": 867.4, "text": "I didn't make a class decorator, I made a border from it. I made a border right away, okay? Implement this and use whose component? I want to make a scroll bar, I want to make another class, implement this and use a component. He doesn't, he tells you to make an abstract class called decorator", "tokens": [40, 994, 380, 652, 257, 1508, 7919, 1639, 11, 286, 1027, 257, 7838, 490, 309, 13, 286, 1027, 257, 7838, 558, 1314, 11, 1392, 30, 4331, 43704, 341, 293, 764, 6104, 6542, 30, 286, 528, 281, 652, 257, 11369, 2159, 11, 286, 528, 281, 652, 1071, 1508, 11, 4445, 341, 293, 764, 257, 6542, 13, 634, 1177, 380, 11, 415, 5112, 291, 281, 652, 364, 12649, 1508, 1219, 7919, 1639], "avg_logprob": -0.484154933774975, "compression_ratio": 1.7710843373493976, "no_speech_prob": 2.0265579223632812e-06, "words": [{"start": 849.42, "end": 849.78, "word": "I", "probability": 0.80419921875}, {"start": 849.78, "end": 849.84, "word": " didn't", "probability": 0.6824951171875}, {"start": 849.84, "end": 850.06, "word": " make", "probability": 0.416015625}, {"start": 850.06, "end": 850.22, "word": " a", "probability": 0.49169921875}, {"start": 850.22, "end": 850.42, "word": " class", "probability": 0.919921875}, {"start": 850.42, "end": 850.82, "word": " decorator,", "probability": 0.838134765625}, {"start": 850.88, "end": 850.9, "word": " I", "probability": 0.62841796875}, {"start": 850.9, "end": 851.12, "word": " made", "probability": 0.7822265625}, {"start": 851.12, "end": 851.4, "word": " a", "probability": 0.72802734375}, {"start": 851.4, "end": 852.26, "word": " border", "probability": 0.73046875}, {"start": 852.26, "end": 852.3, "word": " from", "probability": 0.373046875}, {"start": 852.3, "end": 852.3, "word": " it.", "probability": 0.86328125}, {"start": 852.4, "end": 852.56, "word": " I", "probability": 0.341796875}, {"start": 852.56, "end": 852.96, "word": " made", "probability": 0.353515625}, {"start": 852.96, "end": 853.14, "word": " a", "probability": 0.8427734375}, {"start": 853.14, "end": 853.46, "word": " border", "probability": 0.7919921875}, {"start": 853.46, "end": 853.46, "word": " right", "probability": 0.164306640625}, {"start": 853.46, "end": 853.46, "word": " away,", "probability": 0.84716796875}, {"start": 854.22, "end": 854.5, "word": " okay?", "probability": 0.1505126953125}, {"start": 855.42, "end": 855.86, "word": " Implement", "probability": 0.81103515625}, {"start": 855.86, "end": 856.18, "word": " this", "probability": 0.8369140625}, {"start": 856.18, "end": 856.26, "word": " and", "probability": 0.5947265625}, {"start": 856.26, "end": 856.66, "word": " use", "probability": 0.73681640625}, {"start": 856.66, "end": 856.94, "word": " whose", "probability": 0.259033203125}, {"start": 856.94, "end": 857.98, "word": " component?", "probability": 0.853515625}, {"start": 859.0, "end": 859.44, "word": " I", "probability": 0.4599609375}, {"start": 859.44, "end": 859.56, "word": " want", "probability": 0.52197265625}, {"start": 859.56, "end": 859.7, "word": " to", "probability": 0.97021484375}, {"start": 859.7, "end": 859.78, "word": " make", "probability": 0.77099609375}, {"start": 859.78, "end": 859.9, "word": " a", "probability": 0.87451171875}, {"start": 859.9, "end": 860.08, "word": " scroll", "probability": 0.89794921875}, {"start": 860.08, "end": 860.38, "word": " bar,", "probability": 0.5126953125}, {"start": 860.52, "end": 860.54, "word": " I", "probability": 0.6142578125}, {"start": 860.54, "end": 860.64, "word": " want", "probability": 0.31787109375}, {"start": 860.64, "end": 860.7, "word": " to", "probability": 0.9638671875}, {"start": 860.7, "end": 860.7, "word": " make", "probability": 0.8984375}, {"start": 860.7, "end": 860.78, "word": " another", "probability": 0.69775390625}, {"start": 860.78, "end": 861.16, "word": " class,", "probability": 0.95703125}, {"start": 861.6, "end": 861.96, "word": " implement", "probability": 0.79052734375}, {"start": 861.96, "end": 862.28, "word": " this", "probability": 0.88427734375}, {"start": 862.28, "end": 862.36, "word": " and", "probability": 0.8427734375}, {"start": 862.36, "end": 862.7, "word": " use", "probability": 0.87060546875}, {"start": 862.7, "end": 863.48, "word": " a", "probability": 0.2449951171875}, {"start": 863.48, "end": 863.82, "word": " component.", "probability": 0.8642578125}, {"start": 863.94, "end": 864.08, "word": " He", "probability": 0.58056640625}, {"start": 864.08, "end": 864.22, "word": " doesn't,", "probability": 0.5887451171875}, {"start": 864.28, "end": 864.44, "word": " he", "probability": 0.896484375}, {"start": 864.44, "end": 864.64, "word": " tells", "probability": 0.50537109375}, {"start": 864.64, "end": 865.08, "word": " you", "probability": 0.8857421875}, {"start": 865.08, "end": 865.34, "word": " to", "probability": 0.72021484375}, {"start": 865.34, "end": 865.46, "word": " make", "probability": 0.65966796875}, {"start": 865.46, "end": 865.68, "word": " an", "probability": 0.6494140625}, {"start": 865.68, "end": 865.78, "word": " abstract", "probability": 0.91748046875}, {"start": 865.78, "end": 866.3, "word": " class", "probability": 0.9716796875}, {"start": 866.3, "end": 866.6, "word": " called", "probability": 0.68505859375}, {"start": 866.6, "end": 867.4, "word": " decorator", "probability": 0.944091796875}], "temperature": 1.0}, {"id": 36, "seek": 89295, "start": 868.61, "end": 892.95, "text": "and from it make a border and a scroll bar same thing but here the advantage is that when you make extend for this class it will force you to put the constructor that you want to pass as a component but when you make a class for each decorator class you have to put the constructor that you want to pass as a component with which language guys?", "tokens": [474, 490, 309, 652, 257, 7838, 293, 257, 11369, 2159, 912, 551, 457, 510, 264, 5002, 307, 300, 562, 291, 652, 10101, 337, 341, 1508, 309, 486, 3464, 291, 281, 829, 264, 47479, 300, 291, 528, 281, 1320, 382, 257, 6542, 457, 562, 291, 652, 257, 1508, 337, 1184, 7919, 1639, 1508, 291, 362, 281, 829, 264, 47479, 300, 291, 528, 281, 1320, 382, 257, 6542, 365, 597, 2856, 1074, 30], "avg_logprob": -0.578993059694767, "compression_ratio": 1.9545454545454546, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 868.61, "end": 869.11, "word": "and", "probability": 0.13525390625}, {"start": 869.11, "end": 869.23, "word": " from", "probability": 0.397216796875}, {"start": 869.23, "end": 869.41, "word": " it", "probability": 0.1748046875}, {"start": 869.41, "end": 869.75, "word": " make", "probability": 0.2939453125}, {"start": 869.75, "end": 870.17, "word": " a", "probability": 0.5205078125}, {"start": 870.17, "end": 870.49, "word": " border", "probability": 0.693359375}, {"start": 870.49, "end": 870.67, "word": " and", "probability": 0.81787109375}, {"start": 870.67, "end": 871.57, "word": " a", "probability": 0.50537109375}, {"start": 871.57, "end": 871.95, "word": " scroll", "probability": 0.96923828125}, {"start": 871.95, "end": 872.19, "word": " bar", "probability": 0.61181640625}, {"start": 872.19, "end": 872.51, "word": " same", "probability": 0.2332763671875}, {"start": 872.51, "end": 872.91, "word": " thing", "probability": 0.60107421875}, {"start": 872.91, "end": 873.75, "word": " but", "probability": 0.369873046875}, {"start": 873.75, "end": 874.11, "word": " here", "probability": 0.3115234375}, {"start": 874.11, "end": 874.19, "word": " the", "probability": 0.591796875}, {"start": 874.19, "end": 874.41, "word": " advantage", "probability": 0.5712890625}, {"start": 874.41, "end": 875.11, "word": " is", "probability": 0.52734375}, {"start": 875.11, "end": 875.61, "word": " that", "probability": 0.55712890625}, {"start": 875.61, "end": 876.13, "word": " when", "probability": 0.66796875}, {"start": 876.13, "end": 876.33, "word": " you", "probability": 0.94970703125}, {"start": 876.33, "end": 876.49, "word": " make", "probability": 0.2049560546875}, {"start": 876.49, "end": 876.95, "word": " extend", "probability": 0.54638671875}, {"start": 876.95, "end": 877.13, "word": " for", "probability": 0.403564453125}, {"start": 877.13, "end": 877.23, "word": " this", "probability": 0.7373046875}, {"start": 877.23, "end": 877.59, "word": " class", "probability": 0.96240234375}, {"start": 877.59, "end": 878.47, "word": " it", "probability": 0.50390625}, {"start": 878.47, "end": 878.53, "word": " will", "probability": 0.379150390625}, {"start": 878.53, "end": 878.67, "word": " force", "probability": 0.87353515625}, {"start": 878.67, "end": 878.81, "word": " you", "probability": 0.9384765625}, {"start": 878.81, "end": 879.01, "word": " to", "probability": 0.95703125}, {"start": 879.01, "end": 879.01, "word": " put", "probability": 0.50146484375}, {"start": 879.01, "end": 879.17, "word": " the", "probability": 0.5517578125}, {"start": 879.17, "end": 879.65, "word": " constructor", "probability": 0.85888671875}, {"start": 879.65, "end": 879.85, "word": " that", "probability": 0.380615234375}, {"start": 879.85, "end": 880.31, "word": " you", "probability": 0.91796875}, {"start": 880.31, "end": 880.31, "word": " want", "probability": 0.7275390625}, {"start": 880.31, "end": 880.41, "word": " to", "probability": 0.931640625}, {"start": 880.41, "end": 880.63, "word": " pass", "probability": 0.43603515625}, {"start": 880.63, "end": 880.93, "word": " as", "probability": 0.1756591796875}, {"start": 880.93, "end": 881.45, "word": " a", "probability": 0.343994140625}, {"start": 881.45, "end": 881.67, "word": " component", "probability": 0.7822265625}, {"start": 881.67, "end": 882.47, "word": " but", "probability": 0.59228515625}, {"start": 882.47, "end": 882.87, "word": " when", "probability": 0.6923828125}, {"start": 882.87, "end": 883.01, "word": " you", "probability": 0.95751953125}, {"start": 883.01, "end": 883.17, "word": " make", "probability": 0.8525390625}, {"start": 883.17, "end": 883.31, "word": " a", "probability": 0.63427734375}, {"start": 883.31, "end": 883.59, "word": " class", "probability": 0.95166015625}, {"start": 883.59, "end": 883.97, "word": " for", "probability": 0.39892578125}, {"start": 883.97, "end": 885.13, "word": " each", "probability": 0.1683349609375}, {"start": 885.13, "end": 888.17, "word": " decorator", "probability": 0.772705078125}, {"start": 888.17, "end": 888.65, "word": " class", "probability": 0.92138671875}, {"start": 888.65, "end": 888.87, "word": " you", "probability": 0.7353515625}, {"start": 888.87, "end": 889.03, "word": " have", "probability": 0.4716796875}, {"start": 889.03, "end": 889.05, "word": " to", "probability": 0.966796875}, {"start": 889.05, "end": 889.25, "word": " put", "probability": 0.669921875}, {"start": 889.25, "end": 889.53, "word": " the", "probability": 0.406982421875}, {"start": 889.53, "end": 890.11, "word": " constructor", "probability": 0.8818359375}, {"start": 890.11, "end": 890.65, "word": " that", "probability": 0.6826171875}, {"start": 890.65, "end": 890.85, "word": " you", "probability": 0.943359375}, {"start": 890.85, "end": 890.87, "word": " want", "probability": 0.8251953125}, {"start": 890.87, "end": 890.91, "word": " to", "probability": 0.951171875}, {"start": 890.91, "end": 891.13, "word": " pass", "probability": 0.80859375}, {"start": 891.13, "end": 891.39, "word": " as", "probability": 0.86376953125}, {"start": 891.39, "end": 891.83, "word": " a", "probability": 0.71435546875}, {"start": 891.83, "end": 892.19, "word": " component", "probability": 0.89306640625}, {"start": 892.19, "end": 892.37, "word": " with", "probability": 0.345947265625}, {"start": 892.37, "end": 892.49, "word": " which", "probability": 0.51416015625}, {"start": 892.49, "end": 892.65, "word": " language", "probability": 0.07281494140625}, {"start": 892.65, "end": 892.95, "word": " guys?", "probability": 0.44580078125}], "temperature": 1.0}, {"id": 37, "seek": 91478, "start": 893.98, "end": 914.78, "text": "Okay, it is similar or not different from the code that we did Okay, here they give us an example that is very similar to what we talked about to convince me why the decorator is necessary because you have text view", "tokens": [8297, 11, 309, 307, 2531, 420, 406, 819, 490, 264, 3089, 300, 321, 630, 1033, 11, 510, 436, 976, 505, 364, 1365, 300, 307, 588, 2531, 281, 437, 321, 2825, 466, 281, 13447, 385, 983, 264, 7919, 1639, 307, 4818, 570, 291, 362, 2487, 1910], "avg_logprob": -0.5546874714934308, "compression_ratio": 1.4827586206896552, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 893.98, "end": 894.58, "word": "Okay,", "probability": 0.1588134765625}, {"start": 895.76, "end": 895.96, "word": " it", "probability": 0.36767578125}, {"start": 895.96, "end": 896.1, "word": " is", "probability": 0.40869140625}, {"start": 896.1, "end": 896.4, "word": " similar", "probability": 0.47509765625}, {"start": 896.4, "end": 897.24, "word": " or", "probability": 0.478759765625}, {"start": 897.24, "end": 897.38, "word": " not", "probability": 0.455322265625}, {"start": 897.38, "end": 897.72, "word": " different", "probability": 0.79248046875}, {"start": 897.72, "end": 898.14, "word": " from", "probability": 0.7060546875}, {"start": 898.14, "end": 899.66, "word": " the", "probability": 0.79150390625}, {"start": 899.66, "end": 899.9, "word": " code", "probability": 0.85791015625}, {"start": 899.9, "end": 900.0, "word": " that", "probability": 0.50439453125}, {"start": 900.0, "end": 900.2, "word": " we", "probability": 0.89306640625}, {"start": 900.2, "end": 900.5, "word": " did", "probability": 0.19384765625}, {"start": 900.5, "end": 904.48, "word": " Okay,", "probability": 0.250244140625}, {"start": 904.58, "end": 904.86, "word": " here", "probability": 0.72802734375}, {"start": 904.86, "end": 905.2, "word": " they", "probability": 0.479248046875}, {"start": 905.2, "end": 905.54, "word": " give", "probability": 0.475830078125}, {"start": 905.54, "end": 905.74, "word": " us", "probability": 0.74853515625}, {"start": 905.74, "end": 905.78, "word": " an", "probability": 0.453857421875}, {"start": 905.78, "end": 906.06, "word": " example", "probability": 0.955078125}, {"start": 906.06, "end": 906.72, "word": " that", "probability": 0.257568359375}, {"start": 906.72, "end": 907.18, "word": " is", "probability": 0.9072265625}, {"start": 907.18, "end": 907.2, "word": " very", "probability": 0.619140625}, {"start": 907.2, "end": 907.52, "word": " similar", "probability": 0.94189453125}, {"start": 907.52, "end": 907.88, "word": " to", "probability": 0.8291015625}, {"start": 907.88, "end": 907.96, "word": " what", "probability": 0.82958984375}, {"start": 907.96, "end": 908.14, "word": " we", "probability": 0.94775390625}, {"start": 908.14, "end": 908.38, "word": " talked", "probability": 0.2529296875}, {"start": 908.38, "end": 909.2, "word": " about", "probability": 0.8515625}, {"start": 909.2, "end": 910.68, "word": " to", "probability": 0.46728515625}, {"start": 910.68, "end": 911.64, "word": " convince", "probability": 0.826171875}, {"start": 911.64, "end": 911.84, "word": " me", "probability": 0.65478515625}, {"start": 911.84, "end": 911.98, "word": " why", "probability": 0.60009765625}, {"start": 911.98, "end": 912.1, "word": " the", "probability": 0.44384765625}, {"start": 912.1, "end": 912.62, "word": " decorator", "probability": 0.946533203125}, {"start": 912.62, "end": 912.76, "word": " is", "probability": 0.325927734375}, {"start": 912.76, "end": 913.12, "word": " necessary", "probability": 0.318603515625}, {"start": 913.12, "end": 913.66, "word": " because", "probability": 0.449462890625}, {"start": 913.66, "end": 913.9, "word": " you", "probability": 0.81591796875}, {"start": 913.9, "end": 914.12, "word": " have", "probability": 0.93798828125}, {"start": 914.12, "end": 914.42, "word": " text", "probability": 0.5341796875}, {"start": 914.42, "end": 914.78, "word": " view", "probability": 0.82177734375}], "temperature": 1.0}, {"id": 38, "seek": 94361, "start": 916.01, "end": 943.61, "text": "GUI component And if you want to add new features to the TextView What are the new features that we want to add? First, we want to add a border to the TextView And we can add a plain border, 3D border, or fancy border to the TextView These are different types of borders We can also add a scroll bar Horizontal scroll bar, vertical scroll bar, or vertical and horizontal scroll bar", "tokens": [32298, 40, 6542, 400, 498, 291, 528, 281, 909, 777, 4122, 281, 264, 18643, 30203, 708, 366, 264, 777, 4122, 300, 321, 528, 281, 909, 30, 2386, 11, 321, 528, 281, 909, 257, 7838, 281, 264, 18643, 30203, 400, 321, 393, 909, 257, 11121, 7838, 11, 805, 35, 7838, 11, 420, 10247, 7838, 281, 264, 18643, 30203, 1981, 366, 819, 3467, 295, 16287, 492, 393, 611, 909, 257, 11369, 2159, 42141, 896, 304, 11369, 2159, 11, 9429, 11369, 2159, 11, 420, 9429, 293, 12750, 11369, 2159], "avg_logprob": -0.3846982751769581, "compression_ratio": 1.9947643979057592, "no_speech_prob": 1.3709068298339844e-06, "words": [{"start": 916.01, "end": 916.53, "word": "GUI", "probability": 0.93359375}, {"start": 916.53, "end": 917.11, "word": " component", "probability": 0.6259765625}, {"start": 917.11, "end": 918.07, "word": " And", "probability": 0.181640625}, {"start": 918.07, "end": 918.31, "word": " if", "probability": 0.388916015625}, {"start": 918.31, "end": 918.41, "word": " you", "probability": 0.383056640625}, {"start": 918.41, "end": 918.41, "word": " want", "probability": 0.51025390625}, {"start": 918.41, "end": 919.01, "word": " to", "probability": 0.4853515625}, {"start": 919.01, "end": 919.25, "word": " add", "probability": 0.82373046875}, {"start": 919.25, "end": 919.87, "word": " new", "probability": 0.406005859375}, {"start": 919.87, "end": 919.87, "word": " features", "probability": 0.483154296875}, {"start": 919.87, "end": 919.99, "word": " to", "probability": 0.72314453125}, {"start": 919.99, "end": 919.99, "word": " the", "probability": 0.485595703125}, {"start": 919.99, "end": 919.99, "word": " TextView", "probability": 0.755859375}, {"start": 919.99, "end": 920.21, "word": " What", "probability": 0.25341796875}, {"start": 920.21, "end": 920.33, "word": " are", "probability": 0.63427734375}, {"start": 920.33, "end": 920.41, "word": " the", "probability": 0.7333984375}, {"start": 920.41, "end": 920.91, "word": " new", "probability": 0.57421875}, {"start": 920.91, "end": 920.91, "word": " features", "probability": 0.77978515625}, {"start": 920.91, "end": 921.05, "word": " that", "probability": 0.5576171875}, {"start": 921.05, "end": 921.15, "word": " we", "probability": 0.69287109375}, {"start": 921.15, "end": 921.37, "word": " want", "probability": 0.6162109375}, {"start": 921.37, "end": 921.43, "word": " to", "probability": 0.96240234375}, {"start": 921.43, "end": 921.69, "word": " add?", "probability": 0.9228515625}, {"start": 922.25, "end": 922.81, "word": " First,", "probability": 0.440185546875}, {"start": 923.13, "end": 923.19, "word": " we", "probability": 0.89794921875}, {"start": 923.19, "end": 923.33, "word": " want", "probability": 0.67431640625}, {"start": 923.33, "end": 923.43, "word": " to", "probability": 0.96435546875}, {"start": 923.43, "end": 923.67, "word": " add", "probability": 0.86865234375}, {"start": 923.67, "end": 923.81, "word": " a", "probability": 0.62548828125}, {"start": 923.81, "end": 924.07, "word": " border", "probability": 0.75537109375}, {"start": 924.07, "end": 924.27, "word": " to", "probability": 0.6728515625}, {"start": 924.27, "end": 924.33, "word": " the", "probability": 0.79052734375}, {"start": 924.33, "end": 924.79, "word": " TextView", "probability": 0.945068359375}, {"start": 924.79, "end": 925.87, "word": " And", "probability": 0.48291015625}, {"start": 925.87, "end": 926.47, "word": " we", "probability": 0.454833984375}, {"start": 926.47, "end": 926.81, "word": " can", "probability": 0.921875}, {"start": 926.81, "end": 927.11, "word": " add", "probability": 0.50341796875}, {"start": 927.11, "end": 927.25, "word": " a", "probability": 0.63623046875}, {"start": 927.25, "end": 927.53, "word": " plain", "probability": 0.55029296875}, {"start": 927.53, "end": 927.95, "word": " border,", "probability": 0.8203125}, {"start": 928.41, "end": 928.87, "word": " 3D", "probability": 0.843017578125}, {"start": 928.87, "end": 929.35, "word": " border,", "probability": 0.794921875}, {"start": 929.55, "end": 929.71, "word": " or", "probability": 0.93798828125}, {"start": 929.71, "end": 930.13, "word": " fancy", "probability": 0.62353515625}, {"start": 930.13, "end": 930.85, "word": " border", "probability": 0.78125}, {"start": 930.85, "end": 930.85, "word": " to", "probability": 0.5537109375}, {"start": 930.85, "end": 930.85, "word": " the", "probability": 0.8359375}, {"start": 930.85, "end": 930.85, "word": " TextView", "probability": 0.9462890625}, {"start": 930.85, "end": 931.07, "word": " These", "probability": 0.55859375}, {"start": 931.07, "end": 931.13, "word": " are", "probability": 0.8173828125}, {"start": 931.13, "end": 931.71, "word": " different", "probability": 0.740234375}, {"start": 931.71, "end": 931.87, "word": " types", "probability": 0.4501953125}, {"start": 931.87, "end": 932.05, "word": " of", "probability": 0.9404296875}, {"start": 932.05, "end": 932.41, "word": " borders", "probability": 0.79150390625}, {"start": 932.41, "end": 933.47, "word": " We", "probability": 0.16943359375}, {"start": 933.47, "end": 934.27, "word": " can", "probability": 0.92041015625}, {"start": 934.27, "end": 934.53, "word": " also", "probability": 0.87109375}, {"start": 934.53, "end": 934.95, "word": " add", "probability": 0.5732421875}, {"start": 934.95, "end": 936.09, "word": " a", "probability": 0.85009765625}, {"start": 936.09, "end": 936.37, "word": " scroll", "probability": 0.65380859375}, {"start": 936.37, "end": 936.63, "word": " bar", "probability": 0.5791015625}, {"start": 936.63, "end": 937.91, "word": " Horizontal", "probability": 0.7943522135416666}, {"start": 937.91, "end": 938.13, "word": " scroll", "probability": 0.9521484375}, {"start": 938.13, "end": 938.53, "word": " bar,", "probability": 0.833984375}, {"start": 938.77, "end": 939.15, "word": " vertical", "probability": 0.76904296875}, {"start": 939.15, "end": 939.59, "word": " scroll", "probability": 0.974609375}, {"start": 939.59, "end": 939.89, "word": " bar,", "probability": 0.9423828125}, {"start": 940.01, "end": 940.23, "word": " or", "probability": 0.91015625}, {"start": 940.23, "end": 941.27, "word": " vertical", "probability": 0.845703125}, {"start": 941.27, "end": 941.57, "word": " and", "probability": 0.88525390625}, {"start": 941.57, "end": 941.99, "word": " horizontal", "probability": 0.87548828125}, {"start": 941.99, "end": 943.35, "word": " scroll", "probability": 0.966796875}, {"start": 943.35, "end": 943.61, "word": " bar", "probability": 0.87451171875}], "temperature": 1.0}, {"id": 39, "seek": 96931, "start": 945.71, "end": 969.31, "text": "Actually, you can have a text view with border only, and you can have a text view with scroll bar and you can have a text view with scroll bar and border. Right or wrong? You can control it as you want. Because in this case, if you want to do it in subclassing, you have to make every existing possibility", "tokens": [30338, 671, 11, 291, 393, 362, 257, 2487, 1910, 365, 7838, 787, 11, 293, 291, 393, 362, 257, 2487, 1910, 365, 11369, 2159, 293, 291, 393, 362, 257, 2487, 1910, 365, 11369, 2159, 293, 7838, 13, 1779, 420, 2085, 30, 509, 393, 1969, 309, 382, 291, 528, 13, 1436, 294, 341, 1389, 11, 498, 291, 528, 281, 360, 309, 294, 1422, 11665, 278, 11, 291, 362, 281, 652, 633, 6741, 7959], "avg_logprob": -0.5368923528326882, "compression_ratio": 1.882716049382716, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 945.71, "end": 946.23, "word": "Actually,", "probability": 0.48687744140625}, {"start": 946.23, "end": 946.75, "word": " you", "probability": 0.6708984375}, {"start": 946.75, "end": 947.01, "word": " can", "probability": 0.51171875}, {"start": 947.01, "end": 947.27, "word": " have", "probability": 0.80517578125}, {"start": 947.27, "end": 947.59, "word": " a", "probability": 0.55517578125}, {"start": 947.59, "end": 947.81, "word": " text", "probability": 0.63427734375}, {"start": 947.81, "end": 948.15, "word": " view", "probability": 0.76220703125}, {"start": 948.15, "end": 948.33, "word": " with", "probability": 0.26416015625}, {"start": 948.33, "end": 950.71, "word": " border", "probability": 0.385498046875}, {"start": 950.71, "end": 951.07, "word": " only,", "probability": 0.488525390625}, {"start": 952.13, "end": 952.53, "word": " and", "probability": 0.260009765625}, {"start": 952.53, "end": 953.27, "word": " you", "probability": 0.55419921875}, {"start": 953.27, "end": 953.41, "word": " can", "probability": 0.93359375}, {"start": 953.41, "end": 953.69, "word": " have", "probability": 0.841796875}, {"start": 953.69, "end": 953.87, "word": " a", "probability": 0.8330078125}, {"start": 953.87, "end": 954.05, "word": " text", "probability": 0.95361328125}, {"start": 954.05, "end": 954.33, "word": " view", "probability": 0.869140625}, {"start": 954.33, "end": 954.51, "word": " with", "probability": 0.87646484375}, {"start": 954.51, "end": 954.81, "word": " scroll", "probability": 0.7705078125}, {"start": 954.81, "end": 955.11, "word": " bar", "probability": 0.57080078125}, {"start": 955.11, "end": 955.67, "word": " and", "probability": 0.4736328125}, {"start": 955.67, "end": 955.77, "word": " you", "probability": 0.671875}, {"start": 955.77, "end": 955.97, "word": " can", "probability": 0.9521484375}, {"start": 955.97, "end": 956.27, "word": " have", "probability": 0.908203125}, {"start": 956.27, "end": 956.51, "word": " a", "probability": 0.9248046875}, {"start": 956.51, "end": 956.65, "word": " text", "probability": 0.95556640625}, {"start": 956.65, "end": 957.01, "word": " view", "probability": 0.88427734375}, {"start": 957.01, "end": 957.23, "word": " with", "probability": 0.88427734375}, {"start": 957.23, "end": 957.49, "word": " scroll", "probability": 0.58154296875}, {"start": 957.49, "end": 957.81, "word": " bar", "probability": 0.927734375}, {"start": 957.81, "end": 958.01, "word": " and", "probability": 0.5654296875}, {"start": 958.01, "end": 959.29, "word": " border.", "probability": 0.7802734375}, {"start": 959.85, "end": 960.33, "word": " Right", "probability": 0.372314453125}, {"start": 960.33, "end": 960.49, "word": " or", "probability": 0.59912109375}, {"start": 960.49, "end": 960.57, "word": " wrong?", "probability": 0.55712890625}, {"start": 960.67, "end": 960.83, "word": " You", "probability": 0.7216796875}, {"start": 960.83, "end": 961.23, "word": " can", "probability": 0.6962890625}, {"start": 961.23, "end": 961.65, "word": " control", "probability": 0.54931640625}, {"start": 961.65, "end": 961.81, "word": " it", "probability": 0.234619140625}, {"start": 961.81, "end": 961.89, "word": " as", "probability": 0.446533203125}, {"start": 961.89, "end": 962.03, "word": " you", "probability": 0.9345703125}, {"start": 962.03, "end": 962.25, "word": " want.", "probability": 0.401123046875}, {"start": 963.67, "end": 963.87, "word": " Because", "probability": 0.155029296875}, {"start": 963.87, "end": 964.27, "word": " in", "probability": 0.408203125}, {"start": 964.27, "end": 964.35, "word": " this", "probability": 0.8681640625}, {"start": 964.35, "end": 964.67, "word": " case,", "probability": 0.748046875}, {"start": 964.93, "end": 965.01, "word": " if", "probability": 0.89501953125}, {"start": 965.01, "end": 965.27, "word": " you", "probability": 0.96142578125}, {"start": 965.27, "end": 965.45, "word": " want", "probability": 0.7939453125}, {"start": 965.45, "end": 965.57, "word": " to", "probability": 0.96533203125}, {"start": 965.57, "end": 965.77, "word": " do", "probability": 0.6669921875}, {"start": 965.77, "end": 965.91, "word": " it", "probability": 0.57177734375}, {"start": 965.91, "end": 966.03, "word": " in", "probability": 0.646484375}, {"start": 966.03, "end": 966.81, "word": " subclassing,", "probability": 0.8289388020833334}, {"start": 967.43, "end": 967.49, "word": " you", "probability": 0.9091796875}, {"start": 967.49, "end": 967.71, "word": " have", "probability": 0.365966796875}, {"start": 967.71, "end": 968.01, "word": " to", "probability": 0.9716796875}, {"start": 968.01, "end": 968.19, "word": " make", "probability": 0.375}, {"start": 968.19, "end": 968.53, "word": " every", "probability": 0.3896484375}, {"start": 968.53, "end": 969.31, "word": " existing", "probability": 0.3037109375}, {"start": 969.31, "end": 969.31, "word": " possibility", "probability": 0.4345703125}], "temperature": 1.0}, {"id": 40, "seek": 99462, "start": 970.7, "end": 994.62, "text": "Subclass, for example, I want to create a TextView with a plane border So what do you do? You go to the TextView and extend it to a class called TextViewPlane So that you can override the draw method to draw the border and say super dot draw This is if I want to use the subclass", "tokens": [39582, 11665, 11, 337, 1365, 11, 286, 528, 281, 1884, 257, 18643, 30203, 365, 257, 5720, 7838, 407, 437, 360, 291, 360, 30, 509, 352, 281, 264, 18643, 30203, 293, 10101, 309, 281, 257, 1508, 1219, 18643, 30203, 33710, 1929, 407, 300, 291, 393, 42321, 264, 2642, 3170, 281, 2642, 264, 7838, 293, 584, 1687, 5893, 2642, 639, 307, 498, 286, 528, 281, 764, 264, 1422, 11665], "avg_logprob": -0.5459559112787247, "compression_ratio": 1.5942857142857143, "no_speech_prob": 4.589557647705078e-06, "words": [{"start": 970.7, "end": 971.26, "word": "Subclass,", "probability": 0.65283203125}, {"start": 971.54, "end": 972.02, "word": " for", "probability": 0.3642578125}, {"start": 972.02, "end": 972.24, "word": " example,", "probability": 0.90185546875}, {"start": 972.36, "end": 972.48, "word": " I", "probability": 0.6845703125}, {"start": 972.48, "end": 972.78, "word": " want", "probability": 0.5693359375}, {"start": 972.78, "end": 972.84, "word": " to", "probability": 0.95263671875}, {"start": 972.84, "end": 973.0, "word": " create", "probability": 0.3984375}, {"start": 973.0, "end": 973.1, "word": " a", "probability": 0.5537109375}, {"start": 973.1, "end": 973.58, "word": " TextView", "probability": 0.75341796875}, {"start": 973.58, "end": 973.9, "word": " with", "probability": 0.8173828125}, {"start": 973.9, "end": 974.76, "word": " a", "probability": 0.43994140625}, {"start": 974.76, "end": 975.0, "word": " plane", "probability": 0.246337890625}, {"start": 975.0, "end": 975.36, "word": " border", "probability": 0.814453125}, {"start": 975.36, "end": 977.28, "word": " So", "probability": 0.2822265625}, {"start": 977.28, "end": 977.42, "word": " what", "probability": 0.449462890625}, {"start": 977.42, "end": 977.52, "word": " do", "probability": 0.409912109375}, {"start": 977.52, "end": 977.58, "word": " you", "probability": 0.9189453125}, {"start": 977.58, "end": 977.78, "word": " do?", "probability": 0.65966796875}, {"start": 977.88, "end": 977.98, "word": " You", "probability": 0.462890625}, {"start": 977.98, "end": 978.08, "word": " go", "probability": 0.77197265625}, {"start": 978.08, "end": 978.18, "word": " to", "probability": 0.91162109375}, {"start": 978.18, "end": 978.3, "word": " the", "probability": 0.5380859375}, {"start": 978.3, "end": 978.7, "word": " TextView", "probability": 0.90283203125}, {"start": 978.7, "end": 978.8, "word": " and", "probability": 0.67822265625}, {"start": 978.8, "end": 979.46, "word": " extend", "probability": 0.1546630859375}, {"start": 979.46, "end": 980.12, "word": " it", "probability": 0.83544921875}, {"start": 980.12, "end": 981.02, "word": " to", "probability": 0.7138671875}, {"start": 981.02, "end": 981.1, "word": " a", "probability": 0.748046875}, {"start": 981.1, "end": 981.36, "word": " class", "probability": 0.88037109375}, {"start": 981.36, "end": 981.62, "word": " called", "probability": 0.477294921875}, {"start": 981.62, "end": 983.26, "word": " TextViewPlane", "probability": 0.7808837890625}, {"start": 983.26, "end": 984.26, "word": " So", "probability": 0.17578125}, {"start": 984.26, "end": 984.46, "word": " that", "probability": 0.48291015625}, {"start": 984.46, "end": 984.68, "word": " you", "probability": 0.892578125}, {"start": 984.68, "end": 984.82, "word": " can", "probability": 0.28271484375}, {"start": 984.82, "end": 985.24, "word": " override", "probability": 0.424560546875}, {"start": 985.24, "end": 985.6, "word": " the", "probability": 0.7978515625}, {"start": 985.6, "end": 986.1, "word": " draw", "probability": 0.2452392578125}, {"start": 986.1, "end": 986.64, "word": " method", "probability": 0.86572265625}, {"start": 986.64, "end": 987.62, "word": " to", "probability": 0.4833984375}, {"start": 987.62, "end": 987.96, "word": " draw", "probability": 0.66943359375}, {"start": 987.96, "end": 988.84, "word": " the", "probability": 0.71044921875}, {"start": 988.84, "end": 989.2, "word": " border", "probability": 0.73974609375}, {"start": 989.2, "end": 989.38, "word": " and", "probability": 0.75927734375}, {"start": 989.38, "end": 989.58, "word": " say", "probability": 0.1844482421875}, {"start": 989.58, "end": 989.9, "word": " super", "probability": 0.63623046875}, {"start": 989.9, "end": 990.18, "word": " dot", "probability": 0.360107421875}, {"start": 990.18, "end": 990.46, "word": " draw", "probability": 0.884765625}, {"start": 990.46, "end": 992.0, "word": " This", "probability": 0.10699462890625}, {"start": 992.0, "end": 992.62, "word": " is", "probability": 0.68212890625}, {"start": 992.62, "end": 992.7, "word": " if", "probability": 0.64306640625}, {"start": 992.7, "end": 992.88, "word": " I", "probability": 0.94091796875}, {"start": 992.88, "end": 993.02, "word": " want", "probability": 0.708984375}, {"start": 993.02, "end": 993.12, "word": " to", "probability": 0.96826171875}, {"start": 993.12, "end": 993.6, "word": " use", "probability": 0.87353515625}, {"start": 993.6, "end": 994.16, "word": " the", "probability": 0.492919921875}, {"start": 994.16, "end": 994.62, "word": " subclass", "probability": 0.893310546875}], "temperature": 1.0}, {"id": 41, "seek": 101788, "start": 995.4, "end": 1017.88, "text": "Okay, this is just the only possibility I have, what else do I have? 3D border and fancy border. What does each person want? Subclass. So these people need three subclasses to make a text view with plain border, fancy border and 3D border. Okay, are these just the possibilities that exist? No, I have other possibilities. Because Scrollbar needs a text view with a scrollbar.", "tokens": [8297, 11, 341, 307, 445, 264, 787, 7959, 286, 362, 11, 437, 1646, 360, 286, 362, 30, 805, 35, 7838, 293, 10247, 7838, 13, 708, 775, 1184, 954, 528, 30, 8511, 11665, 13, 407, 613, 561, 643, 1045, 1422, 11665, 279, 281, 652, 257, 2487, 1910, 365, 11121, 7838, 11, 10247, 7838, 293, 805, 35, 7838, 13, 1033, 11, 366, 613, 445, 264, 12178, 300, 2514, 30, 883, 11, 286, 362, 661, 12178, 13, 1436, 35395, 5356, 2203, 257, 2487, 1910, 365, 257, 11369, 5356, 13], "avg_logprob": -0.47306034208714276, "compression_ratio": 1.7407407407407407, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 995.4, "end": 995.72, "word": "Okay,", "probability": 0.188232421875}, {"start": 995.8, "end": 996.22, "word": " this", "probability": 0.288818359375}, {"start": 996.22, "end": 996.28, "word": " is", "probability": 0.91162109375}, {"start": 996.28, "end": 996.42, "word": " just", "probability": 0.296875}, {"start": 996.42, "end": 996.52, "word": " the", "probability": 0.434814453125}, {"start": 996.52, "end": 997.1, "word": " only", "probability": 0.68212890625}, {"start": 997.1, "end": 997.16, "word": " possibility", "probability": 0.447265625}, {"start": 997.16, "end": 997.28, "word": " I", "probability": 0.57177734375}, {"start": 997.28, "end": 997.46, "word": " have,", "probability": 0.90234375}, {"start": 997.56, "end": 997.72, "word": " what", "probability": 0.252197265625}, {"start": 997.72, "end": 997.74, "word": " else", "probability": 0.7939453125}, {"start": 997.74, "end": 997.82, "word": " do", "probability": 0.62255859375}, {"start": 997.82, "end": 998.0, "word": " I", "probability": 0.794921875}, {"start": 998.0, "end": 998.0, "word": " have?", "probability": 0.84619140625}, {"start": 999.12, "end": 999.6, "word": " 3D", "probability": 0.85107421875}, {"start": 999.6, "end": 999.86, "word": " border", "probability": 0.64697265625}, {"start": 999.86, "end": 1000.04, "word": " and", "probability": 0.85400390625}, {"start": 1000.04, "end": 1000.3, "word": " fancy", "probability": 0.8828125}, {"start": 1000.3, "end": 1000.64, "word": " border.", "probability": 0.8515625}, {"start": 1000.98, "end": 1001.2, "word": " What", "probability": 0.353271484375}, {"start": 1001.2, "end": 1001.2, "word": " does", "probability": 0.57080078125}, {"start": 1001.2, "end": 1001.32, "word": " each", "probability": 0.489013671875}, {"start": 1001.32, "end": 1001.64, "word": " person", "probability": 0.48583984375}, {"start": 1001.64, "end": 1002.06, "word": " want?", "probability": 0.36669921875}, {"start": 1003.28, "end": 1003.76, "word": " Subclass.", "probability": 0.80810546875}, {"start": 1004.34, "end": 1004.46, "word": " So", "probability": 0.474853515625}, {"start": 1004.46, "end": 1004.64, "word": " these", "probability": 0.188720703125}, {"start": 1004.64, "end": 1004.68, "word": " people", "probability": 0.56982421875}, {"start": 1004.68, "end": 1004.84, "word": " need", "probability": 0.73486328125}, {"start": 1004.84, "end": 1005.24, "word": " three", "probability": 0.56103515625}, {"start": 1005.24, "end": 1005.86, "word": " subclasses", "probability": 0.8229166666666666}, {"start": 1005.86, "end": 1006.06, "word": " to", "probability": 0.87109375}, {"start": 1006.06, "end": 1006.32, "word": " make", "probability": 0.46337890625}, {"start": 1006.32, "end": 1006.44, "word": " a", "probability": 0.60302734375}, {"start": 1006.44, "end": 1006.58, "word": " text", "probability": 0.78662109375}, {"start": 1006.58, "end": 1006.88, "word": " view", "probability": 0.8125}, {"start": 1006.88, "end": 1007.06, "word": " with", "probability": 0.8544921875}, {"start": 1007.06, "end": 1007.4, "word": " plain", "probability": 0.342529296875}, {"start": 1007.4, "end": 1007.78, "word": " border,", "probability": 0.828125}, {"start": 1007.94, "end": 1008.26, "word": " fancy", "probability": 0.93994140625}, {"start": 1008.26, "end": 1008.64, "word": " border", "probability": 0.84765625}, {"start": 1008.64, "end": 1008.8, "word": " and", "probability": 0.74951171875}, {"start": 1008.8, "end": 1009.12, "word": " 3D", "probability": 0.93408203125}, {"start": 1009.12, "end": 1009.44, "word": " border.", "probability": 0.87451171875}, {"start": 1009.86, "end": 1010.1, "word": " Okay,", "probability": 0.248779296875}, {"start": 1010.24, "end": 1010.26, "word": " are", "probability": 0.38623046875}, {"start": 1010.26, "end": 1010.36, "word": " these", "probability": 0.74609375}, {"start": 1010.36, "end": 1010.54, "word": " just", "probability": 0.440673828125}, {"start": 1010.54, "end": 1010.82, "word": " the", "probability": 0.673828125}, {"start": 1010.82, "end": 1011.2, "word": " possibilities", "probability": 0.67822265625}, {"start": 1011.2, "end": 1011.34, "word": " that", "probability": 0.2474365234375}, {"start": 1011.34, "end": 1011.62, "word": " exist?", "probability": 0.7138671875}, {"start": 1012.24, "end": 1012.54, "word": " No,", "probability": 0.92724609375}, {"start": 1013.04, "end": 1013.14, "word": " I", "probability": 0.716796875}, {"start": 1013.14, "end": 1013.3, "word": " have", "probability": 0.92529296875}, {"start": 1013.3, "end": 1013.34, "word": " other", "probability": 0.8115234375}, {"start": 1013.34, "end": 1014.02, "word": " possibilities.", "probability": 0.84765625}, {"start": 1014.3, "end": 1014.6, "word": " Because", "probability": 0.296142578125}, {"start": 1014.6, "end": 1015.2, "word": " Scrollbar", "probability": 0.4771728515625}, {"start": 1015.2, "end": 1016.4, "word": " needs", "probability": 0.68310546875}, {"start": 1016.4, "end": 1016.52, "word": " a", "probability": 0.84375}, {"start": 1016.52, "end": 1016.74, "word": " text", "probability": 0.908203125}, {"start": 1016.74, "end": 1017.04, "word": " view", "probability": 0.84814453125}, {"start": 1017.04, "end": 1017.26, "word": " with", "probability": 0.80859375}, {"start": 1017.26, "end": 1017.44, "word": " a", "probability": 0.387451171875}, {"start": 1017.44, "end": 1017.88, "word": " scrollbar.", "probability": 0.856201171875}], "temperature": 1.0}, {"id": 42, "seek": 104611, "start": 1018.5, "end": 1046.12, "text": "The scrollbar is a new component that needs to be created To create a scrollbar, you need to create a new class TextView.HorizontalExtendedTextView So that when it draws, it draws a horizontal scrollbar And another possibility is vertical, I have a vertical and a horizontal Each one needs a class if it depends on the subclass And then sometimes you need to create a border with the TextView of any of the three", "tokens": [2278, 11369, 5356, 307, 257, 777, 6542, 300, 2203, 281, 312, 2942, 1407, 1884, 257, 11369, 5356, 11, 291, 643, 281, 1884, 257, 777, 1508, 18643, 30203, 13, 39, 284, 590, 896, 304, 36, 734, 3502, 50198, 30203, 407, 300, 562, 309, 20045, 11, 309, 20045, 257, 12750, 11369, 5356, 400, 1071, 7959, 307, 9429, 11, 286, 362, 257, 9429, 293, 257, 12750, 6947, 472, 2203, 257, 1508, 498, 309, 5946, 322, 264, 1422, 11665, 400, 550, 2171, 291, 643, 281, 1884, 257, 7838, 365, 264, 18643, 30203, 295, 604, 295, 264, 1045], "avg_logprob": -0.5285904521637774, "compression_ratio": 1.8311111111111111, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 1018.5, "end": 1018.68, "word": "The", "probability": 0.047821044921875}, {"start": 1018.68, "end": 1019.12, "word": " scrollbar", "probability": 0.656982421875}, {"start": 1019.12, "end": 1019.28, "word": " is", "probability": 0.74072265625}, {"start": 1019.28, "end": 1019.42, "word": " a", "probability": 0.77001953125}, {"start": 1019.42, "end": 1019.48, "word": " new", "probability": 0.8740234375}, {"start": 1019.48, "end": 1019.82, "word": " component", "probability": 0.46240234375}, {"start": 1019.82, "end": 1021.0, "word": " that", "probability": 0.1500244140625}, {"start": 1021.0, "end": 1021.42, "word": " needs", "probability": 0.2344970703125}, {"start": 1021.42, "end": 1021.42, "word": " to", "probability": 0.9296875}, {"start": 1021.42, "end": 1021.5, "word": " be", "probability": 0.9287109375}, {"start": 1021.5, "end": 1021.76, "word": " created", "probability": 0.424560546875}, {"start": 1021.76, "end": 1022.48, "word": " To", "probability": 0.2303466796875}, {"start": 1022.48, "end": 1022.74, "word": " create", "probability": 0.65966796875}, {"start": 1022.74, "end": 1022.86, "word": " a", "probability": 0.8544921875}, {"start": 1022.86, "end": 1023.36, "word": " scrollbar,", "probability": 0.9482421875}, {"start": 1023.46, "end": 1023.48, "word": " you", "probability": 0.72021484375}, {"start": 1023.48, "end": 1023.58, "word": " need", "probability": 0.7568359375}, {"start": 1023.58, "end": 1023.62, "word": " to", "probability": 0.7509765625}, {"start": 1023.62, "end": 1023.76, "word": " create", "probability": 0.76513671875}, {"start": 1023.76, "end": 1023.88, "word": " a", "probability": 0.951171875}, {"start": 1023.88, "end": 1023.88, "word": " new", "probability": 0.83056640625}, {"start": 1023.88, "end": 1024.18, "word": " class", "probability": 0.85107421875}, {"start": 1024.18, "end": 1024.96, "word": " TextView", "probability": 0.7252197265625}, {"start": 1024.96, "end": 1027.2, "word": ".HorizontalExtendedTextView", "probability": 0.7520640980113636}, {"start": 1027.2, "end": 1028.16, "word": " So", "probability": 0.371337890625}, {"start": 1028.16, "end": 1028.34, "word": " that", "probability": 0.47705078125}, {"start": 1028.34, "end": 1028.36, "word": " when", "probability": 0.81640625}, {"start": 1028.36, "end": 1028.64, "word": " it", "probability": 0.296630859375}, {"start": 1028.64, "end": 1028.86, "word": " draws,", "probability": 0.3466796875}, {"start": 1029.06, "end": 1029.12, "word": " it", "probability": 0.82958984375}, {"start": 1029.12, "end": 1029.44, "word": " draws", "probability": 0.66357421875}, {"start": 1029.44, "end": 1029.64, "word": " a", "probability": 0.7919921875}, {"start": 1029.64, "end": 1030.06, "word": " horizontal", "probability": 0.70947265625}, {"start": 1030.06, "end": 1032.0, "word": " scrollbar", "probability": 0.91064453125}, {"start": 1032.0, "end": 1032.8, "word": " And", "probability": 0.39208984375}, {"start": 1032.8, "end": 1033.06, "word": " another", "probability": 0.483642578125}, {"start": 1033.06, "end": 1033.34, "word": " possibility", "probability": 0.3994140625}, {"start": 1033.34, "end": 1033.8, "word": " is", "probability": 0.35009765625}, {"start": 1033.8, "end": 1034.2, "word": " vertical,", "probability": 0.6962890625}, {"start": 1034.62, "end": 1034.98, "word": " I", "probability": 0.309814453125}, {"start": 1034.98, "end": 1034.98, "word": " have", "probability": 0.84130859375}, {"start": 1034.98, "end": 1035.08, "word": " a", "probability": 0.47119140625}, {"start": 1035.08, "end": 1035.54, "word": " vertical", "probability": 0.85107421875}, {"start": 1035.54, "end": 1035.92, "word": " and", "probability": 0.5869140625}, {"start": 1035.92, "end": 1036.24, "word": " a", "probability": 0.5908203125}, {"start": 1036.24, "end": 1036.58, "word": " horizontal", "probability": 0.89892578125}, {"start": 1036.58, "end": 1036.84, "word": " Each", "probability": 0.2646484375}, {"start": 1036.84, "end": 1037.16, "word": " one", "probability": 0.4072265625}, {"start": 1037.16, "end": 1037.4, "word": " needs", "probability": 0.60986328125}, {"start": 1037.4, "end": 1038.16, "word": " a", "probability": 0.90283203125}, {"start": 1038.16, "end": 1038.44, "word": " class", "probability": 0.8935546875}, {"start": 1038.44, "end": 1038.62, "word": " if", "probability": 0.38232421875}, {"start": 1038.62, "end": 1038.82, "word": " it", "probability": 0.323974609375}, {"start": 1038.82, "end": 1039.14, "word": " depends", "probability": 0.371826171875}, {"start": 1039.14, "end": 1039.28, "word": " on", "probability": 0.95068359375}, {"start": 1039.28, "end": 1039.38, "word": " the", "probability": 0.78857421875}, {"start": 1039.38, "end": 1039.8, "word": " subclass", "probability": 0.859375}, {"start": 1039.8, "end": 1040.42, "word": " And", "probability": 0.343017578125}, {"start": 1040.42, "end": 1040.7, "word": " then", "probability": 0.3759765625}, {"start": 1040.7, "end": 1040.94, "word": " sometimes", "probability": 0.80615234375}, {"start": 1040.94, "end": 1041.06, "word": " you", "probability": 0.9033203125}, {"start": 1041.06, "end": 1041.22, "word": " need", "probability": 0.72119140625}, {"start": 1041.22, "end": 1041.32, "word": " to", "probability": 0.962890625}, {"start": 1041.32, "end": 1041.56, "word": " create", "probability": 0.7138671875}, {"start": 1041.56, "end": 1041.72, "word": " a", "probability": 0.483154296875}, {"start": 1041.72, "end": 1041.72, "word": " border", "probability": 0.78662109375}, {"start": 1041.72, "end": 1041.72, "word": " with", "probability": 0.783203125}, {"start": 1041.72, "end": 1041.92, "word": " the", "probability": 0.421875}, {"start": 1041.92, "end": 1042.5, "word": " TextView", "probability": 0.8857421875}, {"start": 1042.5, "end": 1045.1, "word": " of", "probability": 0.258544921875}, {"start": 1045.1, "end": 1045.3, "word": " any", "probability": 0.90673828125}, {"start": 1045.3, "end": 1045.54, "word": " of", "probability": 0.33056640625}, {"start": 1045.54, "end": 1045.78, "word": " the", "probability": 0.82080078125}, {"start": 1045.78, "end": 1046.12, "word": " three", "probability": 0.83447265625}], "temperature": 1.0}, {"id": 43, "seek": 106991, "start": 1046.93, "end": 1069.91, "text": "Borders that I have with scroll bar So you have to put all possibilities For example, text view with plane, border with horizontal, scroll bar Text view with plane, border with vertical, scroll bar Text view with plane, with horizontal, vertical, scroll bar All of this needs subclassing, so here I don't have a lot of subclassing", "tokens": [33, 10400, 300, 286, 362, 365, 11369, 2159, 407, 291, 362, 281, 829, 439, 12178, 1171, 1365, 11, 2487, 1910, 365, 5720, 11, 7838, 365, 12750, 11, 11369, 2159, 18643, 1910, 365, 5720, 11, 7838, 365, 9429, 11, 11369, 2159, 18643, 1910, 365, 5720, 11, 365, 12750, 11, 9429, 11, 11369, 2159, 1057, 295, 341, 2203, 1422, 11665, 278, 11, 370, 510, 286, 500, 380, 362, 257, 688, 295, 1422, 11665, 278], "avg_logprob": -0.41288526417457894, "compression_ratio": 2.0, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1046.93, "end": 1047.39, "word": "Borders", "probability": 0.47320556640625}, {"start": 1047.39, "end": 1047.61, "word": " that", "probability": 0.180908203125}, {"start": 1047.61, "end": 1047.71, "word": " I", "probability": 0.91796875}, {"start": 1047.71, "end": 1047.85, "word": " have", "probability": 0.88916015625}, {"start": 1047.85, "end": 1048.15, "word": " with", "probability": 0.5361328125}, {"start": 1048.15, "end": 1048.73, "word": " scroll", "probability": 0.611328125}, {"start": 1048.73, "end": 1049.03, "word": " bar", "probability": 0.5068359375}, {"start": 1049.03, "end": 1050.39, "word": " So", "probability": 0.322265625}, {"start": 1050.39, "end": 1050.53, "word": " you", "probability": 0.49609375}, {"start": 1050.53, "end": 1050.63, "word": " have", "probability": 0.358642578125}, {"start": 1050.63, "end": 1050.71, "word": " to", "probability": 0.9599609375}, {"start": 1050.71, "end": 1050.89, "word": " put", "probability": 0.41064453125}, {"start": 1050.89, "end": 1051.11, "word": " all", "probability": 0.66796875}, {"start": 1051.11, "end": 1051.69, "word": " possibilities", "probability": 0.319580078125}, {"start": 1051.69, "end": 1052.75, "word": " For", "probability": 0.368408203125}, {"start": 1052.75, "end": 1052.99, "word": " example,", "probability": 0.9208984375}, {"start": 1053.15, "end": 1053.27, "word": " text", "probability": 0.52001953125}, {"start": 1053.27, "end": 1053.59, "word": " view", "probability": 0.80224609375}, {"start": 1053.59, "end": 1053.79, "word": " with", "probability": 0.8837890625}, {"start": 1053.79, "end": 1054.29, "word": " plane,", "probability": 0.450439453125}, {"start": 1055.21, "end": 1055.73, "word": " border", "probability": 0.59228515625}, {"start": 1055.73, "end": 1055.95, "word": " with", "probability": 0.8701171875}, {"start": 1055.95, "end": 1056.41, "word": " horizontal,", "probability": 0.78125}, {"start": 1057.77, "end": 1058.07, "word": " scroll", "probability": 0.88330078125}, {"start": 1058.07, "end": 1058.37, "word": " bar", "probability": 0.86962890625}, {"start": 1058.37, "end": 1058.79, "word": " Text", "probability": 0.6962890625}, {"start": 1058.79, "end": 1059.09, "word": " view", "probability": 0.89013671875}, {"start": 1059.09, "end": 1059.31, "word": " with", "probability": 0.90673828125}, {"start": 1059.31, "end": 1059.65, "word": " plane,", "probability": 0.7333984375}, {"start": 1059.75, "end": 1059.95, "word": " border", "probability": 0.77099609375}, {"start": 1059.95, "end": 1060.15, "word": " with", "probability": 0.89990234375}, {"start": 1060.15, "end": 1060.63, "word": " vertical,", "probability": 0.89111328125}, {"start": 1061.71, "end": 1061.93, "word": " scroll", "probability": 0.966796875}, {"start": 1061.93, "end": 1062.29, "word": " bar", "probability": 0.9541015625}, {"start": 1062.29, "end": 1062.85, "word": " Text", "probability": 0.89794921875}, {"start": 1062.85, "end": 1063.15, "word": " view", "probability": 0.89404296875}, {"start": 1063.15, "end": 1063.35, "word": " with", "probability": 0.9140625}, {"start": 1063.35, "end": 1063.73, "word": " plane,", "probability": 0.8125}, {"start": 1063.89, "end": 1063.93, "word": " with", "probability": 0.580078125}, {"start": 1063.93, "end": 1064.33, "word": " horizontal,", "probability": 0.869140625}, {"start": 1064.57, "end": 1065.03, "word": " vertical,", "probability": 0.88134765625}, {"start": 1065.53, "end": 1065.75, "word": " scroll", "probability": 0.92822265625}, {"start": 1065.75, "end": 1065.83, "word": " bar", "probability": 0.6708984375}, {"start": 1065.83, "end": 1066.05, "word": " All", "probability": 0.63720703125}, {"start": 1066.05, "end": 1066.17, "word": " of", "probability": 0.52783203125}, {"start": 1066.17, "end": 1066.23, "word": " this", "probability": 0.44970703125}, {"start": 1066.23, "end": 1066.41, "word": " needs", "probability": 0.322998046875}, {"start": 1066.41, "end": 1067.05, "word": " subclassing,", "probability": 0.8505859375}, {"start": 1067.11, "end": 1067.19, "word": " so", "probability": 0.64208984375}, {"start": 1067.19, "end": 1067.33, "word": " here", "probability": 0.560546875}, {"start": 1067.33, "end": 1067.41, "word": " I", "probability": 0.7958984375}, {"start": 1067.41, "end": 1067.49, "word": " don't", "probability": 0.844482421875}, {"start": 1067.49, "end": 1067.67, "word": " have", "probability": 0.94873046875}, {"start": 1067.67, "end": 1067.73, "word": " a", "probability": 0.4560546875}, {"start": 1067.73, "end": 1068.11, "word": " lot", "probability": 0.35205078125}, {"start": 1068.11, "end": 1068.35, "word": " of", "probability": 0.96240234375}, {"start": 1068.35, "end": 1069.91, "word": " subclassing", "probability": 0.8108723958333334}], "temperature": 1.0}, {"id": 44, "seek": 109877, "start": 1071.31, "end": 1098.77, "text": "The solution is how to improve this design using the decorator pattern. Because this is the new design that I want to make using the decorator pattern. Now I say, wait a minute, now you have a few new features, let's count them. I have a plain border, fancy, 3D, right? These three. Then I have scroll bar, horizontal, vertical and horizontal-vertical.", "tokens": [2278, 3827, 307, 577, 281, 3470, 341, 1715, 1228, 264, 7919, 1639, 5102, 13, 1436, 341, 307, 264, 777, 1715, 300, 286, 528, 281, 652, 1228, 264, 7919, 1639, 5102, 13, 823, 286, 584, 11, 1699, 257, 3456, 11, 586, 291, 362, 257, 1326, 777, 4122, 11, 718, 311, 1207, 552, 13, 286, 362, 257, 11121, 7838, 11, 10247, 11, 805, 35, 11, 558, 30, 1981, 1045, 13, 1396, 286, 362, 11369, 2159, 11, 12750, 11, 9429, 293, 12750, 12, 3281, 804, 13], "avg_logprob": -0.46763391828253154, "compression_ratio": 1.6221198156682028, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1071.31, "end": 1071.61, "word": "The", "probability": 0.08740234375}, {"start": 1071.61, "end": 1071.85, "word": " solution", "probability": 0.8525390625}, {"start": 1071.85, "end": 1072.33, "word": " is", "probability": 0.63427734375}, {"start": 1072.33, "end": 1072.47, "word": " how", "probability": 0.40625}, {"start": 1072.47, "end": 1073.07, "word": " to", "probability": 0.495849609375}, {"start": 1073.07, "end": 1073.41, "word": " improve", "probability": 0.393798828125}, {"start": 1073.41, "end": 1073.61, "word": " this", "probability": 0.490966796875}, {"start": 1073.61, "end": 1073.93, "word": " design", "probability": 0.8359375}, {"start": 1073.93, "end": 1074.51, "word": " using", "probability": 0.431640625}, {"start": 1074.51, "end": 1074.75, "word": " the", "probability": 0.43896484375}, {"start": 1074.75, "end": 1075.21, "word": " decorator", "probability": 0.88818359375}, {"start": 1075.21, "end": 1075.57, "word": " pattern.", "probability": 0.87548828125}, {"start": 1075.97, "end": 1076.29, "word": " Because", "probability": 0.5390625}, {"start": 1076.29, "end": 1076.49, "word": " this", "probability": 0.77880859375}, {"start": 1076.49, "end": 1076.57, "word": " is", "probability": 0.85498046875}, {"start": 1076.57, "end": 1076.63, "word": " the", "probability": 0.65625}, {"start": 1076.63, "end": 1077.23, "word": " new", "probability": 0.82470703125}, {"start": 1077.23, "end": 1077.23, "word": " design", "probability": 0.9052734375}, {"start": 1077.23, "end": 1078.07, "word": " that", "probability": 0.60546875}, {"start": 1078.07, "end": 1078.25, "word": " I", "probability": 0.94482421875}, {"start": 1078.25, "end": 1078.45, "word": " want", "probability": 0.6201171875}, {"start": 1078.45, "end": 1078.53, "word": " to", "probability": 0.9638671875}, {"start": 1078.53, "end": 1078.71, "word": " make", "probability": 0.284912109375}, {"start": 1078.71, "end": 1079.09, "word": " using", "probability": 0.79296875}, {"start": 1079.09, "end": 1079.39, "word": " the", "probability": 0.626953125}, {"start": 1079.39, "end": 1079.81, "word": " decorator", "probability": 0.9833984375}, {"start": 1079.81, "end": 1080.19, "word": " pattern.", "probability": 0.8876953125}, {"start": 1080.87, "end": 1081.53, "word": " Now", "probability": 0.397216796875}, {"start": 1081.53, "end": 1081.61, "word": " I", "probability": 0.429931640625}, {"start": 1081.61, "end": 1081.75, "word": " say,", "probability": 0.47900390625}, {"start": 1081.83, "end": 1081.93, "word": " wait", "probability": 0.442626953125}, {"start": 1081.93, "end": 1082.59, "word": " a", "probability": 0.8544921875}, {"start": 1082.59, "end": 1082.59, "word": " minute,", "probability": 0.65771484375}, {"start": 1082.81, "end": 1083.25, "word": " now", "probability": 0.264404296875}, {"start": 1083.25, "end": 1083.31, "word": " you", "probability": 0.8974609375}, {"start": 1083.31, "end": 1083.57, "word": " have", "probability": 0.9375}, {"start": 1083.57, "end": 1083.67, "word": " a", "probability": 0.2314453125}, {"start": 1083.67, "end": 1083.81, "word": " few", "probability": 0.7998046875}, {"start": 1083.81, "end": 1084.73, "word": " new", "probability": 0.85400390625}, {"start": 1084.73, "end": 1084.73, "word": " features,", "probability": 0.313720703125}, {"start": 1085.79, "end": 1085.95, "word": " let's", "probability": 0.77880859375}, {"start": 1085.95, "end": 1086.11, "word": " count", "probability": 0.62890625}, {"start": 1086.11, "end": 1086.37, "word": " them.", "probability": 0.8759765625}, {"start": 1086.73, "end": 1086.91, "word": " I", "probability": 0.63818359375}, {"start": 1086.91, "end": 1087.11, "word": " have", "probability": 0.93994140625}, {"start": 1087.11, "end": 1087.21, "word": " a", "probability": 0.346923828125}, {"start": 1087.21, "end": 1087.43, "word": " plain", "probability": 0.411865234375}, {"start": 1087.43, "end": 1087.93, "word": " border,", "probability": 0.86669921875}, {"start": 1088.85, "end": 1089.37, "word": " fancy,", "probability": 0.93896484375}, {"start": 1090.33, "end": 1090.81, "word": " 3D,", "probability": 0.8115234375}, {"start": 1091.17, "end": 1091.43, "word": " right?", "probability": 0.775390625}, {"start": 1091.89, "end": 1092.07, "word": " These", "probability": 0.5947265625}, {"start": 1092.07, "end": 1092.41, "word": " three.", "probability": 0.419189453125}, {"start": 1093.01, "end": 1093.49, "word": " Then", "probability": 0.5146484375}, {"start": 1093.49, "end": 1093.65, "word": " I", "probability": 0.875}, {"start": 1093.65, "end": 1093.75, "word": " have", "probability": 0.94091796875}, {"start": 1093.75, "end": 1094.07, "word": " scroll", "probability": 0.62158203125}, {"start": 1094.07, "end": 1094.43, "word": " bar,", "probability": 0.60302734375}, {"start": 1094.81, "end": 1095.31, "word": " horizontal,", "probability": 0.62744140625}, {"start": 1096.23, "end": 1096.83, "word": " vertical", "probability": 0.81005859375}, {"start": 1096.83, "end": 1097.79, "word": " and", "probability": 0.51611328125}, {"start": 1097.79, "end": 1098.13, "word": " horizontal", "probability": 0.76708984375}, {"start": 1098.13, "end": 1098.77, "word": "-vertical.", "probability": 0.7354329427083334}], "temperature": 1.0}, {"id": 45, "seek": 112619, "start": 1099.37, "end": 1126.19, "text": "It means 6 additional functionalities So I tell them to make 6 classes out of them and each one of them is a decorator So notice that this TextView is a type of component I will make a super abstract class called decorator Implement the component and use a component inside it Notice that it fixed the parameter", "tokens": [3522, 1355, 1386, 4497, 11745, 1088, 407, 286, 980, 552, 281, 652, 1386, 5359, 484, 295, 552, 293, 1184, 472, 295, 552, 307, 257, 7919, 1639, 407, 3449, 300, 341, 18643, 30203, 307, 257, 2010, 295, 6542, 286, 486, 652, 257, 1687, 12649, 1508, 1219, 7919, 1639, 4331, 43704, 264, 6542, 293, 764, 257, 6542, 1854, 309, 13428, 300, 309, 6806, 264, 13075], "avg_logprob": -0.6513671670109034, "compression_ratio": 1.681081081081081, "no_speech_prob": 0.0, "words": [{"start": 1099.37, "end": 1099.63, "word": "It", "probability": 0.0987548828125}, {"start": 1099.63, "end": 1099.71, "word": " means", "probability": 0.6083984375}, {"start": 1099.71, "end": 1100.03, "word": " 6", "probability": 0.43701171875}, {"start": 1100.03, "end": 1100.11, "word": " additional", "probability": 0.7666015625}, {"start": 1100.11, "end": 1101.81, "word": " functionalities", "probability": 0.8232421875}, {"start": 1101.81, "end": 1103.15, "word": " So", "probability": 0.313232421875}, {"start": 1103.15, "end": 1103.29, "word": " I", "probability": 0.3515625}, {"start": 1103.29, "end": 1103.31, "word": " tell", "probability": 0.125732421875}, {"start": 1103.31, "end": 1103.45, "word": " them", "probability": 0.296630859375}, {"start": 1103.45, "end": 1104.15, "word": " to", "probability": 0.63134765625}, {"start": 1104.15, "end": 1104.55, "word": " make", "probability": 0.492919921875}, {"start": 1104.55, "end": 1105.29, "word": " 6", "probability": 0.4599609375}, {"start": 1105.29, "end": 1105.85, "word": " classes", "probability": 0.82177734375}, {"start": 1105.85, "end": 1106.05, "word": " out", "probability": 0.253662109375}, {"start": 1106.05, "end": 1106.05, "word": " of", "probability": 0.9736328125}, {"start": 1106.05, "end": 1106.05, "word": " them", "probability": 0.44677734375}, {"start": 1106.05, "end": 1106.67, "word": " and", "probability": 0.1280517578125}, {"start": 1106.67, "end": 1107.65, "word": " each", "probability": 0.7666015625}, {"start": 1107.65, "end": 1107.99, "word": " one", "probability": 0.3427734375}, {"start": 1107.99, "end": 1108.07, "word": " of", "probability": 0.66943359375}, {"start": 1108.07, "end": 1108.41, "word": " them", "probability": 0.62939453125}, {"start": 1108.41, "end": 1108.73, "word": " is", "probability": 0.53662109375}, {"start": 1108.73, "end": 1109.09, "word": " a", "probability": 0.66015625}, {"start": 1109.09, "end": 1110.75, "word": " decorator", "probability": 0.9677734375}, {"start": 1110.75, "end": 1112.85, "word": " So", "probability": 0.289794921875}, {"start": 1112.85, "end": 1113.21, "word": " notice", "probability": 0.50537109375}, {"start": 1113.21, "end": 1113.95, "word": " that", "probability": 0.28564453125}, {"start": 1113.95, "end": 1114.31, "word": " this", "probability": 0.297119140625}, {"start": 1114.31, "end": 1114.85, "word": " TextView", "probability": 0.6685791015625}, {"start": 1114.85, "end": 1115.09, "word": " is", "probability": 0.85009765625}, {"start": 1115.09, "end": 1115.25, "word": " a", "probability": 0.6875}, {"start": 1115.25, "end": 1115.49, "word": " type", "probability": 0.1964111328125}, {"start": 1115.49, "end": 1116.05, "word": " of", "probability": 0.896484375}, {"start": 1116.05, "end": 1116.39, "word": " component", "probability": 0.685546875}, {"start": 1116.39, "end": 1117.27, "word": " I", "probability": 0.443115234375}, {"start": 1117.27, "end": 1117.39, "word": " will", "probability": 0.435791015625}, {"start": 1117.39, "end": 1117.63, "word": " make", "probability": 0.73681640625}, {"start": 1117.63, "end": 1117.97, "word": " a", "probability": 0.89404296875}, {"start": 1117.97, "end": 1118.25, "word": " super", "probability": 0.8701171875}, {"start": 1118.25, "end": 1118.79, "word": " abstract", "probability": 0.9384765625}, {"start": 1118.79, "end": 1119.17, "word": " class", "probability": 0.9638671875}, {"start": 1119.17, "end": 1119.47, "word": " called", "probability": 0.34423828125}, {"start": 1119.47, "end": 1120.81, "word": " decorator", "probability": 0.94921875}, {"start": 1120.81, "end": 1121.73, "word": " Implement", "probability": 0.57257080078125}, {"start": 1121.73, "end": 1121.91, "word": " the", "probability": 0.61328125}, {"start": 1121.91, "end": 1122.27, "word": " component", "probability": 0.85107421875}, {"start": 1122.27, "end": 1122.39, "word": " and", "probability": 0.74609375}, {"start": 1122.39, "end": 1122.81, "word": " use", "probability": 0.68115234375}, {"start": 1122.81, "end": 1123.23, "word": " a", "probability": 0.611328125}, {"start": 1123.23, "end": 1123.55, "word": " component", "probability": 0.83837890625}, {"start": 1123.55, "end": 1123.55, "word": " inside", "probability": 0.402099609375}, {"start": 1123.55, "end": 1123.85, "word": " it", "probability": 0.470947265625}, {"start": 1123.85, "end": 1124.15, "word": " Notice", "probability": 0.72705078125}, {"start": 1124.15, "end": 1124.41, "word": " that", "probability": 0.55908203125}, {"start": 1124.41, "end": 1124.65, "word": " it", "probability": 0.3251953125}, {"start": 1124.65, "end": 1124.91, "word": " fixed", "probability": 0.320556640625}, {"start": 1124.91, "end": 1125.25, "word": " the", "probability": 0.63037109375}, {"start": 1125.25, "end": 1126.19, "word": " parameter", "probability": 0.1763916015625}], "temperature": 1.0}, {"id": 46, "seek": 115363, "start": 1127.01, "end": 1153.63, "text": "because in the end, I will create a text view and pass it to whom? to the decorator and then this decorator, of course it is his job this decorator, I will put the constructor in it only on the basis of it, I will create two subclasses border and scrollbar and both extend from which? the border the decorator, excuse me so really, when I create an object from a border like this, I will pass it to whom? text view", "tokens": [17566, 294, 264, 917, 11, 286, 486, 1884, 257, 2487, 1910, 293, 1320, 309, 281, 7101, 30, 281, 264, 7919, 1639, 293, 550, 341, 7919, 1639, 11, 295, 1164, 309, 307, 702, 1691, 341, 7919, 1639, 11, 286, 486, 829, 264, 47479, 294, 309, 787, 322, 264, 5143, 295, 309, 11, 286, 486, 1884, 732, 1422, 11665, 279, 7838, 293, 11369, 5356, 293, 1293, 10101, 490, 597, 30, 264, 7838, 264, 7919, 1639, 11, 8960, 385, 370, 534, 11, 562, 286, 1884, 364, 2657, 490, 257, 7838, 411, 341, 11, 286, 486, 1320, 309, 281, 7101, 30, 2487, 1910], "avg_logprob": -0.503749971985817, "compression_ratio": 1.9345794392523366, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1127.01, "end": 1127.27, "word": "because", "probability": 0.20947265625}, {"start": 1127.27, "end": 1127.53, "word": " in", "probability": 0.24755859375}, {"start": 1127.53, "end": 1127.63, "word": " the", "probability": 0.88134765625}, {"start": 1127.63, "end": 1127.87, "word": " end,", "probability": 0.87109375}, {"start": 1128.03, "end": 1128.03, "word": " I", "probability": 0.63671875}, {"start": 1128.03, "end": 1128.11, "word": " will", "probability": 0.48291015625}, {"start": 1128.11, "end": 1128.29, "word": " create", "probability": 0.6357421875}, {"start": 1128.29, "end": 1128.41, "word": " a", "probability": 0.86376953125}, {"start": 1128.41, "end": 1128.55, "word": " text", "probability": 0.5546875}, {"start": 1128.55, "end": 1128.83, "word": " view", "probability": 0.64208984375}, {"start": 1128.83, "end": 1128.99, "word": " and", "probability": 0.779296875}, {"start": 1128.99, "end": 1129.15, "word": " pass", "probability": 0.59716796875}, {"start": 1129.15, "end": 1129.29, "word": " it", "probability": 0.8984375}, {"start": 1129.29, "end": 1129.41, "word": " to", "probability": 0.83544921875}, {"start": 1129.41, "end": 1129.57, "word": " whom?", "probability": 0.349365234375}, {"start": 1130.07, "end": 1130.35, "word": " to", "probability": 0.51708984375}, {"start": 1130.35, "end": 1130.47, "word": " the", "probability": 0.8564453125}, {"start": 1130.47, "end": 1130.87, "word": " decorator", "probability": 0.9697265625}, {"start": 1130.87, "end": 1131.43, "word": " and", "probability": 0.5673828125}, {"start": 1131.43, "end": 1131.67, "word": " then", "probability": 0.66259765625}, {"start": 1131.67, "end": 1131.83, "word": " this", "probability": 0.6728515625}, {"start": 1131.83, "end": 1132.37, "word": " decorator,", "probability": 0.990234375}, {"start": 1132.79, "end": 1133.15, "word": " of", "probability": 0.55859375}, {"start": 1133.15, "end": 1133.19, "word": " course", "probability": 0.94677734375}, {"start": 1133.19, "end": 1133.37, "word": " it", "probability": 0.267333984375}, {"start": 1133.37, "end": 1133.37, "word": " is", "probability": 0.615234375}, {"start": 1133.37, "end": 1133.51, "word": " his", "probability": 0.12255859375}, {"start": 1133.51, "end": 1133.91, "word": " job", "probability": 0.48974609375}, {"start": 1133.91, "end": 1135.17, "word": " this", "probability": 0.2169189453125}, {"start": 1135.17, "end": 1135.39, "word": " decorator,", "probability": 0.765869140625}, {"start": 1135.53, "end": 1135.83, "word": " I", "probability": 0.51904296875}, {"start": 1135.83, "end": 1135.89, "word": " will", "probability": 0.389892578125}, {"start": 1135.89, "end": 1136.03, "word": " put", "probability": 0.3681640625}, {"start": 1136.03, "end": 1136.21, "word": " the", "probability": 0.1500244140625}, {"start": 1136.21, "end": 1136.75, "word": " constructor", "probability": 0.87939453125}, {"start": 1136.75, "end": 1136.85, "word": " in", "probability": 0.258544921875}, {"start": 1136.85, "end": 1136.85, "word": " it", "probability": 0.81396484375}, {"start": 1136.85, "end": 1137.11, "word": " only", "probability": 0.66259765625}, {"start": 1137.11, "end": 1137.97, "word": " on", "probability": 0.2841796875}, {"start": 1137.97, "end": 1138.11, "word": " the", "probability": 0.66162109375}, {"start": 1138.11, "end": 1138.25, "word": " basis", "probability": 0.8984375}, {"start": 1138.25, "end": 1138.39, "word": " of", "probability": 0.93017578125}, {"start": 1138.39, "end": 1138.63, "word": " it,", "probability": 0.54345703125}, {"start": 1138.71, "end": 1138.83, "word": " I", "probability": 0.9853515625}, {"start": 1138.83, "end": 1138.89, "word": " will", "probability": 0.85009765625}, {"start": 1138.89, "end": 1139.07, "word": " create", "probability": 0.492919921875}, {"start": 1139.07, "end": 1139.33, "word": " two", "probability": 0.78369140625}, {"start": 1139.33, "end": 1140.19, "word": " subclasses", "probability": 0.7763671875}, {"start": 1140.19, "end": 1140.55, "word": " border", "probability": 0.763671875}, {"start": 1140.55, "end": 1141.85, "word": " and", "probability": 0.87841796875}, {"start": 1141.85, "end": 1142.45, "word": " scrollbar", "probability": 0.810791015625}, {"start": 1142.45, "end": 1142.97, "word": " and", "probability": 0.828125}, {"start": 1142.97, "end": 1143.55, "word": " both", "probability": 0.366455078125}, {"start": 1143.55, "end": 1144.83, "word": " extend", "probability": 0.7021484375}, {"start": 1144.83, "end": 1145.13, "word": " from", "probability": 0.41015625}, {"start": 1145.13, "end": 1145.15, "word": " which?", "probability": 0.257080078125}, {"start": 1145.49, "end": 1145.91, "word": " the", "probability": 0.36376953125}, {"start": 1145.91, "end": 1146.25, "word": " border", "probability": 0.77294921875}, {"start": 1146.25, "end": 1146.87, "word": " the", "probability": 0.33349609375}, {"start": 1146.87, "end": 1147.35, "word": " decorator,", "probability": 0.98779296875}, {"start": 1147.47, "end": 1147.53, "word": " excuse", "probability": 0.33154296875}, {"start": 1147.53, "end": 1147.93, "word": " me", "probability": 0.96484375}, {"start": 1147.93, "end": 1148.37, "word": " so", "probability": 0.290771484375}, {"start": 1148.37, "end": 1148.71, "word": " really,", "probability": 0.285888671875}, {"start": 1148.83, "end": 1149.05, "word": " when", "probability": 0.8916015625}, {"start": 1149.05, "end": 1149.19, "word": " I", "probability": 0.984375}, {"start": 1149.19, "end": 1149.31, "word": " create", "probability": 0.83935546875}, {"start": 1149.31, "end": 1149.45, "word": " an", "probability": 0.85546875}, {"start": 1149.45, "end": 1149.63, "word": " object", "probability": 0.9765625}, {"start": 1149.63, "end": 1149.79, "word": " from", "probability": 0.8134765625}, {"start": 1149.79, "end": 1149.89, "word": " a", "probability": 0.74755859375}, {"start": 1149.89, "end": 1150.11, "word": " border", "probability": 0.89501953125}, {"start": 1150.11, "end": 1150.45, "word": " like", "probability": 0.87890625}, {"start": 1150.45, "end": 1150.75, "word": " this,", "probability": 0.923828125}, {"start": 1150.89, "end": 1150.93, "word": " I", "probability": 0.6865234375}, {"start": 1150.93, "end": 1151.01, "word": " will", "probability": 0.363037109375}, {"start": 1151.01, "end": 1151.25, "word": " pass", "probability": 0.8076171875}, {"start": 1151.25, "end": 1151.41, "word": " it", "probability": 0.4580078125}, {"start": 1151.41, "end": 1151.59, "word": " to", "probability": 0.53076171875}, {"start": 1151.59, "end": 1151.61, "word": " whom?", "probability": 0.95458984375}, {"start": 1152.41, "end": 1152.69, "word": " text", "probability": 0.80419921875}, {"start": 1152.69, "end": 1153.63, "word": " view", "probability": 0.6142578125}], "temperature": 1.0}, {"id": 47, "seek": 118003, "start": 1154.55, "end": 1180.03, "text": "And then from the border, he made a plain border and a 3D border and on the basis of all the borders, they can have common features. For example, the color of the line, its size, where did he put them? In the class border. And the same thing, in the scroll bar, there are common features for action and events that happen and so on. He made a superclass and they made a subclass. Regardless of the fact that all these subclasses remain the same type,", "tokens": [5289, 550, 490, 264, 7838, 11, 415, 1027, 257, 11121, 7838, 293, 257, 805, 35, 7838, 293, 322, 264, 5143, 295, 439, 264, 16287, 11, 436, 393, 362, 2689, 4122, 13, 1171, 1365, 11, 264, 2017, 295, 264, 1622, 11, 1080, 2744, 11, 689, 630, 415, 829, 552, 30, 682, 264, 1508, 7838, 13, 400, 264, 912, 551, 11, 294, 264, 11369, 2159, 11, 456, 366, 2689, 4122, 337, 3069, 293, 3931, 300, 1051, 293, 370, 322, 13, 634, 1027, 257, 1687, 11665, 293, 436, 1027, 257, 1422, 11665, 13, 25148, 295, 264, 1186, 300, 439, 613, 1422, 11665, 279, 6222, 264, 912, 2010, 11], "avg_logprob": -0.48378537988887643, "compression_ratio": 1.836734693877551, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1154.55, "end": 1154.73, "word": "And", "probability": 0.13671875}, {"start": 1154.73, "end": 1155.03, "word": " then", "probability": 0.49658203125}, {"start": 1155.03, "end": 1155.23, "word": " from", "probability": 0.62646484375}, {"start": 1155.23, "end": 1155.39, "word": " the", "probability": 0.66162109375}, {"start": 1155.39, "end": 1155.81, "word": " border,", "probability": 0.70556640625}, {"start": 1156.53, "end": 1156.53, "word": " he", "probability": 0.40576171875}, {"start": 1156.53, "end": 1156.69, "word": " made", "probability": 0.479736328125}, {"start": 1156.69, "end": 1156.83, "word": " a", "probability": 0.892578125}, {"start": 1156.83, "end": 1157.05, "word": " plain", "probability": 0.43505859375}, {"start": 1157.05, "end": 1157.57, "word": " border", "probability": 0.84228515625}, {"start": 1157.57, "end": 1157.95, "word": " and", "probability": 0.65966796875}, {"start": 1157.95, "end": 1158.01, "word": " a", "probability": 0.50732421875}, {"start": 1158.01, "end": 1158.31, "word": " 3D", "probability": 0.890625}, {"start": 1158.31, "end": 1158.71, "word": " border", "probability": 0.8701171875}, {"start": 1158.71, "end": 1158.83, "word": " and", "probability": 0.236083984375}, {"start": 1158.83, "end": 1159.17, "word": " on", "probability": 0.1695556640625}, {"start": 1159.17, "end": 1159.29, "word": " the", "probability": 0.77783203125}, {"start": 1159.29, "end": 1159.45, "word": " basis", "probability": 0.91796875}, {"start": 1159.45, "end": 1159.55, "word": " of", "probability": 0.9541015625}, {"start": 1159.55, "end": 1159.73, "word": " all", "probability": 0.71337890625}, {"start": 1159.73, "end": 1159.81, "word": " the", "probability": 0.367919921875}, {"start": 1159.81, "end": 1160.17, "word": " borders,", "probability": 0.85205078125}, {"start": 1160.31, "end": 1160.31, "word": " they", "probability": 0.4775390625}, {"start": 1160.31, "end": 1160.47, "word": " can", "probability": 0.330810546875}, {"start": 1160.47, "end": 1160.79, "word": " have", "probability": 0.64013671875}, {"start": 1160.79, "end": 1160.85, "word": " common", "probability": 0.517578125}, {"start": 1160.85, "end": 1162.29, "word": " features.", "probability": 0.281494140625}, {"start": 1163.13, "end": 1163.53, "word": " For", "probability": 0.2005615234375}, {"start": 1163.53, "end": 1163.53, "word": " example,", "probability": 0.94384765625}, {"start": 1163.77, "end": 1163.87, "word": " the", "probability": 0.60400390625}, {"start": 1163.87, "end": 1163.93, "word": " color", "probability": 0.66162109375}, {"start": 1163.93, "end": 1164.09, "word": " of", "probability": 0.93896484375}, {"start": 1164.09, "end": 1164.11, "word": " the", "probability": 0.837890625}, {"start": 1164.11, "end": 1164.31, "word": " line,", "probability": 0.76220703125}, {"start": 1164.75, "end": 1164.77, "word": " its", "probability": 0.40087890625}, {"start": 1164.77, "end": 1165.01, "word": " size,", "probability": 0.806640625}, {"start": 1165.19, "end": 1165.37, "word": " where", "probability": 0.50927734375}, {"start": 1165.37, "end": 1165.41, "word": " did", "probability": 0.603515625}, {"start": 1165.41, "end": 1165.43, "word": " he", "probability": 0.865234375}, {"start": 1165.43, "end": 1165.43, "word": " put", "probability": 0.6748046875}, {"start": 1165.43, "end": 1165.59, "word": " them?", "probability": 0.62890625}, {"start": 1166.23, "end": 1166.53, "word": " In", "probability": 0.75830078125}, {"start": 1166.53, "end": 1166.63, "word": " the", "probability": 0.8857421875}, {"start": 1166.63, "end": 1166.89, "word": " class", "probability": 0.89501953125}, {"start": 1166.89, "end": 1167.15, "word": " border.", "probability": 0.79833984375}, {"start": 1167.77, "end": 1167.89, "word": " And", "probability": 0.70458984375}, {"start": 1167.89, "end": 1168.05, "word": " the", "probability": 0.71435546875}, {"start": 1168.05, "end": 1168.05, "word": " same", "probability": 0.89111328125}, {"start": 1168.05, "end": 1168.37, "word": " thing,", "probability": 0.7998046875}, {"start": 1168.45, "end": 1168.47, "word": " in", "probability": 0.385009765625}, {"start": 1168.47, "end": 1168.55, "word": " the", "probability": 0.79345703125}, {"start": 1168.55, "end": 1168.81, "word": " scroll", "probability": 0.94384765625}, {"start": 1168.81, "end": 1169.17, "word": " bar,", "probability": 0.5625}, {"start": 1169.37, "end": 1169.49, "word": " there", "probability": 0.84716796875}, {"start": 1169.49, "end": 1169.59, "word": " are", "probability": 0.90478515625}, {"start": 1169.59, "end": 1170.07, "word": " common", "probability": 0.78955078125}, {"start": 1170.07, "end": 1170.27, "word": " features", "probability": 0.44287109375}, {"start": 1170.27, "end": 1170.51, "word": " for", "probability": 0.2626953125}, {"start": 1170.51, "end": 1170.81, "word": " action", "probability": 0.484130859375}, {"start": 1170.81, "end": 1170.97, "word": " and", "probability": 0.79638671875}, {"start": 1170.97, "end": 1171.39, "word": " events", "probability": 0.495361328125}, {"start": 1171.39, "end": 1171.45, "word": " that", "probability": 0.67626953125}, {"start": 1171.45, "end": 1171.75, "word": " happen", "probability": 0.5361328125}, {"start": 1171.75, "end": 1171.87, "word": " and", "probability": 0.433837890625}, {"start": 1171.87, "end": 1172.03, "word": " so", "probability": 0.74560546875}, {"start": 1172.03, "end": 1172.73, "word": " on.", "probability": 0.90234375}, {"start": 1172.93, "end": 1173.27, "word": " He", "probability": 0.436279296875}, {"start": 1173.27, "end": 1173.53, "word": " made", "probability": 0.7607421875}, {"start": 1173.53, "end": 1174.17, "word": " a", "probability": 0.70947265625}, {"start": 1174.17, "end": 1174.87, "word": " superclass", "probability": 0.799560546875}, {"start": 1174.87, "end": 1175.43, "word": " and", "probability": 0.80712890625}, {"start": 1175.43, "end": 1175.73, "word": " they", "probability": 0.63330078125}, {"start": 1175.73, "end": 1175.73, "word": " made", "probability": 0.7275390625}, {"start": 1175.73, "end": 1175.91, "word": " a", "probability": 0.720703125}, {"start": 1175.91, "end": 1176.41, "word": " subclass.", "probability": 0.954833984375}, {"start": 1177.39, "end": 1177.69, "word": " Regardless", "probability": 0.67041015625}, {"start": 1177.69, "end": 1177.79, "word": " of", "probability": 0.7587890625}, {"start": 1177.79, "end": 1178.07, "word": " the", "probability": 0.44677734375}, {"start": 1178.07, "end": 1178.07, "word": " fact", "probability": 0.78662109375}, {"start": 1178.07, "end": 1178.27, "word": " that", "probability": 0.90966796875}, {"start": 1178.27, "end": 1178.45, "word": " all", "probability": 0.85107421875}, {"start": 1178.45, "end": 1178.57, "word": " these", "probability": 0.62255859375}, {"start": 1178.57, "end": 1179.27, "word": " subclasses", "probability": 0.9361979166666666}, {"start": 1179.27, "end": 1179.59, "word": " remain", "probability": 0.44873046875}, {"start": 1179.59, "end": 1179.75, "word": " the", "probability": 0.4697265625}, {"start": 1179.75, "end": 1179.91, "word": " same", "probability": 0.896484375}, {"start": 1179.91, "end": 1180.03, "word": " type,", "probability": 0.64697265625}], "temperature": 1.0}, {"id": 48, "seek": 119782, "start": 1181.4, "end": 1197.82, "text": " How to use them? For example, I want to create a text view and put a plain border on it. What do you have to do? You have to simply create a text view.", "tokens": [1012, 281, 764, 552, 30, 1171, 1365, 11, 286, 528, 281, 1884, 257, 2487, 1910, 293, 829, 257, 11121, 7838, 322, 309, 13, 708, 360, 291, 362, 281, 360, 30, 509, 362, 281, 2935, 1884, 257, 2487, 1910, 13], "avg_logprob": -0.6195312693715096, "compression_ratio": 1.345132743362832, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 1181.3999999999999, "end": 1182.06, "word": " How", "probability": 0.135498046875}, {"start": 1182.06, "end": 1182.64, "word": " to", "probability": 0.416748046875}, {"start": 1182.64, "end": 1183.0, "word": " use", "probability": 0.873046875}, {"start": 1183.0, "end": 1183.36, "word": " them?", "probability": 0.20068359375}, {"start": 1183.7, "end": 1183.92, "word": " For", "probability": 0.53173828125}, {"start": 1183.92, "end": 1184.08, "word": " example,", "probability": 0.91357421875}, {"start": 1184.36, "end": 1184.36, "word": " I", "probability": 0.405517578125}, {"start": 1184.36, "end": 1184.52, "word": " want", "probability": 0.623046875}, {"start": 1184.52, "end": 1186.56, "word": " to", "probability": 0.76123046875}, {"start": 1186.56, "end": 1188.98, "word": " create", "probability": 0.51318359375}, {"start": 1188.98, "end": 1189.26, "word": " a", "probability": 0.7783203125}, {"start": 1189.26, "end": 1189.48, "word": " text", "probability": 0.55078125}, {"start": 1189.48, "end": 1189.86, "word": " view", "probability": 0.64501953125}, {"start": 1189.86, "end": 1190.0, "word": " and", "probability": 0.62890625}, {"start": 1190.0, "end": 1190.34, "word": " put", "probability": 0.291748046875}, {"start": 1190.34, "end": 1191.12, "word": " a", "probability": 0.56591796875}, {"start": 1191.12, "end": 1191.42, "word": " plain", "probability": 0.6708984375}, {"start": 1191.42, "end": 1191.82, "word": " border", "probability": 0.85986328125}, {"start": 1191.82, "end": 1191.84, "word": " on", "probability": 0.2919921875}, {"start": 1191.84, "end": 1191.84, "word": " it.", "probability": 0.806640625}, {"start": 1192.34, "end": 1193.0, "word": " What", "probability": 0.6015625}, {"start": 1193.0, "end": 1193.14, "word": " do", "probability": 0.450439453125}, {"start": 1193.14, "end": 1193.2, "word": " you", "probability": 0.468994140625}, {"start": 1193.2, "end": 1193.3, "word": " have", "probability": 0.5029296875}, {"start": 1193.3, "end": 1193.42, "word": " to", "probability": 0.97216796875}, {"start": 1193.42, "end": 1193.74, "word": " do?", "probability": 0.95849609375}, {"start": 1194.34, "end": 1194.82, "word": " You", "probability": 0.546875}, {"start": 1194.82, "end": 1194.94, "word": " have", "probability": 0.43408203125}, {"start": 1194.94, "end": 1195.2, "word": " to", "probability": 0.9609375}, {"start": 1195.2, "end": 1196.42, "word": " simply", "probability": 0.23095703125}, {"start": 1196.42, "end": 1197.1, "word": " create", "probability": 0.56103515625}, {"start": 1197.1, "end": 1197.28, "word": " a", "probability": 0.880859375}, {"start": 1197.28, "end": 1197.46, "word": " text", "probability": 0.66748046875}, {"start": 1197.46, "end": 1197.82, "word": " view.", "probability": 0.79833984375}], "temperature": 1.0}, {"id": 49, "seek": 123519, "start": 1206.79, "end": 1235.19, "text": "TextView, we created it, we want it to have a Plane Border, all prisms have to have a Plane Border This is PB equals New Plane Border And I pass it to whom? The V And then what do I draw with the screen? This Right? Because this is a kind of shape, this is a kind of component in the end", "tokens": [50198, 30203, 11, 321, 2942, 309, 11, 321, 528, 309, 281, 362, 257, 2149, 1929, 36985, 11, 439, 582, 13539, 362, 281, 362, 257, 2149, 1929, 36985, 639, 307, 24056, 6915, 1873, 2149, 1929, 36985, 400, 286, 1320, 309, 281, 7101, 30, 440, 691, 400, 550, 437, 360, 286, 2642, 365, 264, 2568, 30, 639, 1779, 30, 1436, 341, 307, 257, 733, 295, 3909, 11, 341, 307, 257, 733, 295, 6542, 294, 264, 917], "avg_logprob": -0.6437499856948853, "compression_ratio": 1.6686046511627908, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1206.7900000000002, "end": 1207.15, "word": "TextView,", "probability": 0.4791259765625}, {"start": 1207.27, "end": 1207.41, "word": " we", "probability": 0.3447265625}, {"start": 1207.41, "end": 1207.73, "word": " created", "probability": 0.3828125}, {"start": 1207.73, "end": 1208.11, "word": " it,", "probability": 0.56103515625}, {"start": 1208.21, "end": 1208.37, "word": " we", "probability": 0.65283203125}, {"start": 1208.37, "end": 1208.53, "word": " want", "probability": 0.44580078125}, {"start": 1208.53, "end": 1208.69, "word": " it", "probability": 0.3232421875}, {"start": 1208.69, "end": 1208.69, "word": " to", "probability": 0.91162109375}, {"start": 1208.69, "end": 1208.87, "word": " have", "probability": 0.6318359375}, {"start": 1208.87, "end": 1209.05, "word": " a", "probability": 0.7490234375}, {"start": 1209.05, "end": 1209.27, "word": " Plane", "probability": 0.5252685546875}, {"start": 1209.27, "end": 1209.61, "word": " Border,", "probability": 0.66845703125}, {"start": 1209.93, "end": 1210.21, "word": " all", "probability": 0.336669921875}, {"start": 1210.21, "end": 1210.51, "word": " prisms", "probability": 0.35107421875}, {"start": 1210.51, "end": 1210.77, "word": " have", "probability": 0.2022705078125}, {"start": 1210.77, "end": 1210.77, "word": " to", "probability": 0.296875}, {"start": 1210.77, "end": 1211.01, "word": " have", "probability": 0.6513671875}, {"start": 1211.01, "end": 1211.47, "word": " a", "probability": 0.62841796875}, {"start": 1211.47, "end": 1211.77, "word": " Plane", "probability": 0.797607421875}, {"start": 1211.77, "end": 1212.19, "word": " Border", "probability": 0.9208984375}, {"start": 1212.19, "end": 1216.57, "word": " This", "probability": 0.221923828125}, {"start": 1216.57, "end": 1216.69, "word": " is", "probability": 0.39501953125}, {"start": 1216.69, "end": 1217.51, "word": " PB", "probability": 0.75830078125}, {"start": 1217.51, "end": 1219.03, "word": " equals", "probability": 0.1358642578125}, {"start": 1219.03, "end": 1219.49, "word": " New", "probability": 0.252197265625}, {"start": 1219.49, "end": 1221.35, "word": " Plane", "probability": 0.8994140625}, {"start": 1221.35, "end": 1222.31, "word": " Border", "probability": 0.90771484375}, {"start": 1222.31, "end": 1225.03, "word": " And", "probability": 0.33349609375}, {"start": 1225.03, "end": 1225.17, "word": " I", "probability": 0.53662109375}, {"start": 1225.17, "end": 1225.31, "word": " pass", "probability": 0.2108154296875}, {"start": 1225.31, "end": 1225.53, "word": " it", "probability": 0.3212890625}, {"start": 1225.53, "end": 1225.57, "word": " to", "probability": 0.662109375}, {"start": 1225.57, "end": 1225.69, "word": " whom?", "probability": 0.56103515625}, {"start": 1227.49, "end": 1227.85, "word": " The", "probability": 0.322998046875}, {"start": 1227.85, "end": 1228.03, "word": " V", "probability": 0.37939453125}, {"start": 1228.03, "end": 1228.83, "word": " And", "probability": 0.454833984375}, {"start": 1228.83, "end": 1229.11, "word": " then", "probability": 0.615234375}, {"start": 1229.11, "end": 1229.29, "word": " what", "probability": 0.599609375}, {"start": 1229.29, "end": 1229.41, "word": " do", "probability": 0.36767578125}, {"start": 1229.41, "end": 1229.49, "word": " I", "probability": 0.96875}, {"start": 1229.49, "end": 1229.65, "word": " draw", "probability": 0.51513671875}, {"start": 1229.65, "end": 1229.83, "word": " with", "probability": 0.459716796875}, {"start": 1229.83, "end": 1229.95, "word": " the", "probability": 0.8349609375}, {"start": 1229.95, "end": 1230.21, "word": " screen?", "probability": 0.82470703125}, {"start": 1230.79, "end": 1231.15, "word": " This", "probability": 0.8212890625}, {"start": 1231.15, "end": 1232.55, "word": " Right?", "probability": 0.134765625}, {"start": 1232.67, "end": 1232.77, "word": " Because", "probability": 0.703125}, {"start": 1232.77, "end": 1232.95, "word": " this", "probability": 0.76513671875}, {"start": 1232.95, "end": 1232.97, "word": " is", "probability": 0.88037109375}, {"start": 1232.97, "end": 1233.05, "word": " a", "probability": 0.60791015625}, {"start": 1233.05, "end": 1233.21, "word": " kind", "probability": 0.1986083984375}, {"start": 1233.21, "end": 1233.25, "word": " of", "probability": 0.97265625}, {"start": 1233.25, "end": 1233.47, "word": " shape,", "probability": 0.607421875}, {"start": 1233.57, "end": 1233.69, "word": " this", "probability": 0.396484375}, {"start": 1233.69, "end": 1233.75, "word": " is", "probability": 0.9150390625}, {"start": 1233.75, "end": 1233.83, "word": " a", "probability": 0.9189453125}, {"start": 1233.83, "end": 1234.01, "word": " kind", "probability": 0.755859375}, {"start": 1234.01, "end": 1234.27, "word": " of", "probability": 0.97509765625}, {"start": 1234.27, "end": 1234.81, "word": " component", "probability": 0.828125}, {"start": 1234.81, "end": 1234.97, "word": " in", "probability": 0.287109375}, {"start": 1234.97, "end": 1235.03, "word": " the", "probability": 0.9033203125}, {"start": 1235.03, "end": 1235.19, "word": " end", "probability": 0.90966796875}], "temperature": 1.0}, {"id": 50, "seek": 126546, "start": 1237.1, "end": 1265.46, "text": "Okay, I want to create a TextView with a Horizontal Scrollbar. Nothing else, just a Horizontal Scrollbar and a TextView. Another nice point is that you can add more than one TextView functionality together. For example, I want to create a TextView with a 3D Border and a Horizontal-Vertical Scrollbar. What does it do? It simply covers the object with both.", "tokens": [8297, 11, 286, 528, 281, 1884, 257, 18643, 30203, 365, 257, 42141, 896, 304, 35395, 5356, 13, 6693, 1646, 11, 445, 257, 42141, 896, 304, 35395, 5356, 293, 257, 18643, 30203, 13, 3996, 1481, 935, 307, 300, 291, 393, 909, 544, 813, 472, 18643, 30203, 14980, 1214, 13, 1171, 1365, 11, 286, 528, 281, 1884, 257, 18643, 30203, 365, 257, 805, 35, 36985, 293, 257, 42141, 896, 304, 12, 53, 911, 804, 35395, 5356, 13, 708, 775, 309, 360, 30, 467, 2935, 10538, 264, 2657, 365, 1293, 13], "avg_logprob": -0.47261237294486397, "compression_ratio": 1.7246376811594204, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1237.1, "end": 1237.46, "word": "Okay,", "probability": 0.1903076171875}, {"start": 1237.56, "end": 1237.7, "word": " I", "probability": 0.48291015625}, {"start": 1237.7, "end": 1237.84, "word": " want", "probability": 0.498779296875}, {"start": 1237.84, "end": 1237.9, "word": " to", "probability": 0.95361328125}, {"start": 1237.9, "end": 1238.06, "word": " create", "probability": 0.3916015625}, {"start": 1238.06, "end": 1238.14, "word": " a", "probability": 0.79150390625}, {"start": 1238.14, "end": 1238.62, "word": " TextView", "probability": 0.646728515625}, {"start": 1238.62, "end": 1238.88, "word": " with", "probability": 0.7958984375}, {"start": 1238.88, "end": 1239.68, "word": " a", "probability": 0.7734375}, {"start": 1239.68, "end": 1240.16, "word": " Horizontal", "probability": 0.7449544270833334}, {"start": 1240.16, "end": 1240.7, "word": " Scrollbar.", "probability": 0.7197265625}, {"start": 1241.14, "end": 1241.74, "word": " Nothing", "probability": 0.257080078125}, {"start": 1241.74, "end": 1241.9, "word": " else,", "probability": 0.1434326171875}, {"start": 1241.9, "end": 1242.08, "word": " just", "probability": 0.2410888671875}, {"start": 1242.08, "end": 1242.24, "word": " a", "probability": 0.40966796875}, {"start": 1242.24, "end": 1242.62, "word": " Horizontal", "probability": 0.8211263020833334}, {"start": 1242.62, "end": 1243.26, "word": " Scrollbar", "probability": 0.935302734375}, {"start": 1243.26, "end": 1244.08, "word": " and", "probability": 0.533203125}, {"start": 1244.08, "end": 1244.32, "word": " a", "probability": 0.40625}, {"start": 1244.32, "end": 1245.38, "word": " TextView.", "probability": 0.913818359375}, {"start": 1246.18, "end": 1246.78, "word": " Another", "probability": 0.326904296875}, {"start": 1246.78, "end": 1247.58, "word": " nice", "probability": 0.3681640625}, {"start": 1247.58, "end": 1247.58, "word": " point", "probability": 0.5634765625}, {"start": 1247.58, "end": 1248.32, "word": " is", "probability": 0.712890625}, {"start": 1248.32, "end": 1248.38, "word": " that", "probability": 0.86376953125}, {"start": 1248.38, "end": 1248.56, "word": " you", "probability": 0.87255859375}, {"start": 1248.56, "end": 1248.92, "word": " can", "probability": 0.9208984375}, {"start": 1248.92, "end": 1249.14, "word": " add", "probability": 0.876953125}, {"start": 1249.14, "end": 1249.54, "word": " more", "probability": 0.6357421875}, {"start": 1249.54, "end": 1249.64, "word": " than", "probability": 0.8173828125}, {"start": 1249.64, "end": 1249.88, "word": " one", "probability": 0.56640625}, {"start": 1249.88, "end": 1250.96, "word": " TextView", "probability": 0.7587890625}, {"start": 1250.96, "end": 1250.96, "word": " functionality", "probability": 0.59326171875}, {"start": 1250.96, "end": 1251.3, "word": " together.", "probability": 0.2001953125}, {"start": 1252.24, "end": 1252.76, "word": " For", "probability": 0.6318359375}, {"start": 1252.76, "end": 1252.92, "word": " example,", "probability": 0.88330078125}, {"start": 1253.04, "end": 1253.16, "word": " I", "probability": 0.86328125}, {"start": 1253.16, "end": 1253.34, "word": " want", "probability": 0.76513671875}, {"start": 1253.34, "end": 1253.48, "word": " to", "probability": 0.43603515625}, {"start": 1253.48, "end": 1253.48, "word": " create", "probability": 0.7392578125}, {"start": 1253.48, "end": 1253.48, "word": " a", "probability": 0.96630859375}, {"start": 1253.48, "end": 1254.0, "word": " TextView", "probability": 0.862060546875}, {"start": 1254.0, "end": 1255.54, "word": " with", "probability": 0.7265625}, {"start": 1255.54, "end": 1255.64, "word": " a", "probability": 0.8486328125}, {"start": 1255.64, "end": 1256.0, "word": " 3D", "probability": 0.939697265625}, {"start": 1256.0, "end": 1256.4, "word": " Border", "probability": 0.50341796875}, {"start": 1256.4, "end": 1257.56, "word": " and", "probability": 0.79638671875}, {"start": 1257.56, "end": 1259.04, "word": " a", "probability": 0.85302734375}, {"start": 1259.04, "end": 1259.58, "word": " Horizontal", "probability": 0.9244791666666666}, {"start": 1259.58, "end": 1260.16, "word": "-Vertical", "probability": 0.76934814453125}, {"start": 1260.16, "end": 1261.32, "word": " Scrollbar.", "probability": 0.877197265625}, {"start": 1261.38, "end": 1261.68, "word": " What", "probability": 0.56298828125}, {"start": 1261.68, "end": 1261.78, "word": " does", "probability": 0.5654296875}, {"start": 1261.78, "end": 1261.86, "word": " it", "probability": 0.52880859375}, {"start": 1261.86, "end": 1262.06, "word": " do?", "probability": 0.923828125}, {"start": 1263.0, "end": 1263.6, "word": " It", "probability": 0.428466796875}, {"start": 1263.6, "end": 1263.84, "word": " simply", "probability": 0.26611328125}, {"start": 1263.84, "end": 1264.02, "word": " covers", "probability": 0.181640625}, {"start": 1264.02, "end": 1264.22, "word": " the", "probability": 0.7421875}, {"start": 1264.22, "end": 1264.54, "word": " object", "probability": 0.72998046875}, {"start": 1264.54, "end": 1264.74, "word": " with", "probability": 0.6220703125}, {"start": 1264.74, "end": 1265.46, "word": " both.", "probability": 0.304931640625}], "temperature": 1.0}, {"id": 51, "seek": 129604, "start": 1266.3, "end": 1296.04, "text": " For example, what did I ask for? I asked for a TextView with a 3D border and a horizontal-vertical scrollbar. This is the V. The first thing it does is create a 3D border. It creates a new 3D border. What does it create? The V. Then it creates a new HV scrollbar.", "tokens": [1171, 1365, 11, 437, 630, 286, 1029, 337, 30, 286, 2351, 337, 257, 18643, 30203, 365, 257, 805, 35, 7838, 293, 257, 12750, 12, 3281, 804, 11369, 5356, 13, 639, 307, 264, 691, 13, 440, 700, 551, 309, 775, 307, 1884, 257, 805, 35, 7838, 13, 467, 7829, 257, 777, 805, 35, 7838, 13, 708, 775, 309, 1884, 30, 440, 691, 13, 1396, 309, 7829, 257, 777, 389, 53, 11369, 5356, 13], "avg_logprob": -0.5286815329773785, "compression_ratio": 1.6296296296296295, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1266.3, "end": 1266.62, "word": " For", "probability": 0.404052734375}, {"start": 1266.62, "end": 1266.86, "word": " example,", "probability": 0.8974609375}, {"start": 1267.48, "end": 1267.64, "word": " what", "probability": 0.468017578125}, {"start": 1267.64, "end": 1267.66, "word": " did", "probability": 0.353271484375}, {"start": 1267.66, "end": 1268.06, "word": " I", "probability": 0.495849609375}, {"start": 1268.06, "end": 1268.06, "word": " ask", "probability": 0.51611328125}, {"start": 1268.06, "end": 1268.14, "word": " for?", "probability": 0.480224609375}, {"start": 1268.74, "end": 1269.32, "word": " I", "probability": 0.55029296875}, {"start": 1269.32, "end": 1269.38, "word": " asked", "probability": 0.341064453125}, {"start": 1269.38, "end": 1269.46, "word": " for", "probability": 0.88037109375}, {"start": 1269.46, "end": 1269.6, "word": " a", "probability": 0.2822265625}, {"start": 1269.6, "end": 1270.14, "word": " TextView", "probability": 0.626953125}, {"start": 1270.14, "end": 1270.46, "word": " with", "probability": 0.7177734375}, {"start": 1270.46, "end": 1270.58, "word": " a", "probability": 0.455810546875}, {"start": 1270.58, "end": 1270.86, "word": " 3D", "probability": 0.9306640625}, {"start": 1270.86, "end": 1271.2, "word": " border", "probability": 0.65673828125}, {"start": 1271.2, "end": 1271.48, "word": " and", "probability": 0.72021484375}, {"start": 1271.48, "end": 1272.26, "word": " a", "probability": 0.771484375}, {"start": 1272.26, "end": 1272.62, "word": " horizontal", "probability": 0.4267578125}, {"start": 1272.62, "end": 1273.04, "word": "-vertical", "probability": 0.6599934895833334}, {"start": 1273.04, "end": 1273.56, "word": " scrollbar.", "probability": 0.76123046875}, {"start": 1273.8, "end": 1274.16, "word": " This", "probability": 0.4931640625}, {"start": 1274.16, "end": 1274.2, "word": " is", "probability": 0.875}, {"start": 1274.2, "end": 1274.32, "word": " the", "probability": 0.384765625}, {"start": 1274.32, "end": 1274.52, "word": " V.", "probability": 0.271728515625}, {"start": 1276.3, "end": 1276.88, "word": " The", "probability": 0.059600830078125}, {"start": 1276.88, "end": 1277.26, "word": " first", "probability": 0.72412109375}, {"start": 1277.26, "end": 1277.5, "word": " thing", "probability": 0.72412109375}, {"start": 1277.5, "end": 1277.5, "word": " it", "probability": 0.197265625}, {"start": 1277.5, "end": 1277.5, "word": " does", "probability": 0.29248046875}, {"start": 1277.5, "end": 1277.84, "word": " is", "probability": 0.6806640625}, {"start": 1277.84, "end": 1278.0, "word": " create", "probability": 0.310302734375}, {"start": 1278.0, "end": 1278.02, "word": " a", "probability": 0.94140625}, {"start": 1278.02, "end": 1278.26, "word": " 3D", "probability": 0.6890869140625}, {"start": 1278.26, "end": 1278.56, "word": " border.", "probability": 0.83642578125}, {"start": 1278.66, "end": 1278.8, "word": " It", "probability": 0.347900390625}, {"start": 1278.8, "end": 1279.08, "word": " creates", "probability": 0.697265625}, {"start": 1279.08, "end": 1279.22, "word": " a", "probability": 0.89990234375}, {"start": 1279.22, "end": 1279.54, "word": " new", "probability": 0.7939453125}, {"start": 1279.54, "end": 1281.5, "word": " 3D", "probability": 0.96728515625}, {"start": 1281.5, "end": 1283.4, "word": " border.", "probability": 0.8759765625}, {"start": 1283.62, "end": 1283.82, "word": " What", "probability": 0.276611328125}, {"start": 1283.82, "end": 1283.82, "word": " does", "probability": 0.6259765625}, {"start": 1283.82, "end": 1283.92, "word": " it", "probability": 0.53076171875}, {"start": 1283.92, "end": 1284.08, "word": " create?", "probability": 0.283935546875}, {"start": 1284.58, "end": 1285.16, "word": " The", "probability": 0.5302734375}, {"start": 1285.16, "end": 1285.34, "word": " V.", "probability": 0.84130859375}, {"start": 1285.94, "end": 1286.46, "word": " Then", "probability": 0.40673828125}, {"start": 1286.46, "end": 1286.72, "word": " it", "probability": 0.6513671875}, {"start": 1286.72, "end": 1287.04, "word": " creates", "probability": 0.78759765625}, {"start": 1287.04, "end": 1287.26, "word": " a", "probability": 0.96142578125}, {"start": 1287.26, "end": 1288.44, "word": " new", "probability": 0.90234375}, {"start": 1288.44, "end": 1291.76, "word": " HV", "probability": 0.80810546875}, {"start": 1291.76, "end": 1296.04, "word": " scrollbar.", "probability": 0.78466796875}], "temperature": 1.0}, {"id": 52, "seek": 132160, "start": 1296.82, "end": 1321.6, "text": "Look, new HV scrollbar, and this one I passed to it, new 3D portal, and this one I passed to it, the V. This is the benefit that this one is also a component, that the HV scrollbar will take a component, right or wrong, not in the end, this one, any one of these, the parameter follows and becomes a component.", "tokens": [12863, 11, 777, 389, 53, 11369, 5356, 11, 293, 341, 472, 286, 4678, 281, 309, 11, 777, 805, 35, 14982, 11, 293, 341, 472, 286, 4678, 281, 309, 11, 264, 691, 13, 639, 307, 264, 5121, 300, 341, 472, 307, 611, 257, 6542, 11, 300, 264, 389, 53, 11369, 5356, 486, 747, 257, 6542, 11, 558, 420, 2085, 11, 406, 294, 264, 917, 11, 341, 472, 11, 604, 472, 295, 613, 11, 264, 13075, 10002, 293, 3643, 257, 6542, 13], "avg_logprob": -0.5563271487200702, "compression_ratio": 1.802325581395349, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 1296.82, "end": 1297.3, "word": "Look,", "probability": 0.288818359375}, {"start": 1297.52, "end": 1297.92, "word": " new", "probability": 0.419921875}, {"start": 1297.92, "end": 1299.26, "word": " HV", "probability": 0.61328125}, {"start": 1299.26, "end": 1299.86, "word": " scrollbar,", "probability": 0.4990234375}, {"start": 1300.08, "end": 1300.14, "word": " and", "probability": 0.7470703125}, {"start": 1300.14, "end": 1300.5, "word": " this", "probability": 0.395263671875}, {"start": 1300.5, "end": 1300.54, "word": " one", "probability": 0.2457275390625}, {"start": 1300.54, "end": 1300.64, "word": " I", "probability": 0.2734375}, {"start": 1300.64, "end": 1300.9, "word": " passed", "probability": 0.24267578125}, {"start": 1300.9, "end": 1301.14, "word": " to", "probability": 0.2763671875}, {"start": 1301.14, "end": 1301.32, "word": " it,", "probability": 0.64697265625}, {"start": 1302.28, "end": 1302.9, "word": " new", "probability": 0.493408203125}, {"start": 1302.9, "end": 1303.68, "word": " 3D", "probability": 0.79296875}, {"start": 1303.68, "end": 1304.02, "word": " portal,", "probability": 0.345947265625}, {"start": 1304.66, "end": 1305.32, "word": " and", "probability": 0.92578125}, {"start": 1305.32, "end": 1305.5, "word": " this", "probability": 0.87890625}, {"start": 1305.5, "end": 1305.58, "word": " one", "probability": 0.88818359375}, {"start": 1305.58, "end": 1305.62, "word": " I", "probability": 0.88037109375}, {"start": 1305.62, "end": 1305.84, "word": " passed", "probability": 0.7236328125}, {"start": 1305.84, "end": 1306.08, "word": " to", "probability": 0.8623046875}, {"start": 1306.08, "end": 1306.26, "word": " it,", "probability": 0.921875}, {"start": 1306.64, "end": 1306.82, "word": " the", "probability": 0.2435302734375}, {"start": 1306.82, "end": 1306.96, "word": " V.", "probability": 0.490966796875}, {"start": 1307.76, "end": 1308.24, "word": " This", "probability": 0.6513671875}, {"start": 1308.24, "end": 1308.26, "word": " is", "probability": 0.3642578125}, {"start": 1308.26, "end": 1308.32, "word": " the", "probability": 0.2279052734375}, {"start": 1308.32, "end": 1308.58, "word": " benefit", "probability": 0.495361328125}, {"start": 1308.58, "end": 1308.86, "word": " that", "probability": 0.55078125}, {"start": 1308.86, "end": 1309.12, "word": " this", "probability": 0.70849609375}, {"start": 1309.12, "end": 1309.18, "word": " one", "probability": 0.2237548828125}, {"start": 1309.18, "end": 1309.56, "word": " is", "probability": 0.50146484375}, {"start": 1309.56, "end": 1309.56, "word": " also", "probability": 0.65966796875}, {"start": 1309.56, "end": 1309.7, "word": " a", "probability": 0.492919921875}, {"start": 1309.7, "end": 1310.3, "word": " component,", "probability": 0.783203125}, {"start": 1310.74, "end": 1311.02, "word": " that", "probability": 0.6396484375}, {"start": 1311.02, "end": 1312.86, "word": " the", "probability": 0.6396484375}, {"start": 1312.86, "end": 1313.3, "word": " HV", "probability": 0.976318359375}, {"start": 1313.3, "end": 1313.94, "word": " scrollbar", "probability": 0.962890625}, {"start": 1313.94, "end": 1314.08, "word": " will", "probability": 0.45556640625}, {"start": 1314.08, "end": 1314.32, "word": " take", "probability": 0.7216796875}, {"start": 1314.32, "end": 1314.42, "word": " a", "probability": 0.5009765625}, {"start": 1314.42, "end": 1314.84, "word": " component,", "probability": 0.876953125}, {"start": 1315.32, "end": 1315.56, "word": " right", "probability": 0.603515625}, {"start": 1315.56, "end": 1315.74, "word": " or", "probability": 0.8125}, {"start": 1315.74, "end": 1315.8, "word": " wrong,", "probability": 0.53369140625}, {"start": 1315.88, "end": 1316.08, "word": " not", "probability": 0.478515625}, {"start": 1316.08, "end": 1316.32, "word": " in", "probability": 0.1964111328125}, {"start": 1316.32, "end": 1316.44, "word": " the", "probability": 0.90625}, {"start": 1316.44, "end": 1316.68, "word": " end,", "probability": 0.87841796875}, {"start": 1316.78, "end": 1316.96, "word": " this", "probability": 0.5380859375}, {"start": 1316.96, "end": 1317.02, "word": " one,", "probability": 0.5791015625}, {"start": 1317.06, "end": 1317.24, "word": " any", "probability": 0.72705078125}, {"start": 1317.24, "end": 1317.46, "word": " one", "probability": 0.75341796875}, {"start": 1317.46, "end": 1317.66, "word": " of", "probability": 0.95068359375}, {"start": 1317.66, "end": 1317.94, "word": " these,", "probability": 0.638671875}, {"start": 1318.8, "end": 1320.12, "word": " the", "probability": 0.7275390625}, {"start": 1320.12, "end": 1320.54, "word": " parameter", "probability": 0.3974609375}, {"start": 1320.54, "end": 1320.86, "word": " follows", "probability": 0.6552734375}, {"start": 1320.86, "end": 1321.0, "word": " and", "probability": 0.591796875}, {"start": 1321.0, "end": 1321.16, "word": " becomes", "probability": 0.7568359375}, {"start": 1321.16, "end": 1321.28, "word": " a", "probability": 0.91357421875}, {"start": 1321.28, "end": 1321.6, "word": " component.", "probability": 0.87060546875}], "temperature": 1.0}, {"id": 53, "seek": 135128, "start": 1323.18, "end": 1351.28, "text": " So when you have a 3D border component, you can call it HVScrollbar. Do you see how I created it? In the end, when I draw any shape, for example, this is the new HVScrollbar named O, the object. In the end, when I draw this, what do I call it? I call it O dot draw. And actually, for this draw, whose O dot draw belongs to? The scrollbar. So there will be a code that draws what?", "tokens": [407, 562, 291, 362, 257, 805, 35, 7838, 6542, 11, 291, 393, 818, 309, 389, 53, 16806, 3970, 5356, 13, 1144, 291, 536, 577, 286, 2942, 309, 30, 682, 264, 917, 11, 562, 286, 2642, 604, 3909, 11, 337, 1365, 11, 341, 307, 264, 777, 389, 53, 16806, 3970, 5356, 4926, 422, 11, 264, 2657, 13, 682, 264, 917, 11, 562, 286, 2642, 341, 11, 437, 360, 286, 818, 309, 30, 286, 818, 309, 422, 5893, 2642, 13, 400, 767, 11, 337, 341, 2642, 11, 6104, 422, 5893, 2642, 12953, 281, 30, 440, 11369, 5356, 13, 407, 456, 486, 312, 257, 3089, 300, 20045, 437, 30], "avg_logprob": -0.47342289663920895, "compression_ratio": 1.704035874439462, "no_speech_prob": 9.357929229736328e-06, "words": [{"start": 1323.1799999999998, "end": 1323.62, "word": " So", "probability": 0.1690673828125}, {"start": 1323.62, "end": 1323.76, "word": " when", "probability": 0.64306640625}, {"start": 1323.76, "end": 1323.86, "word": " you", "probability": 0.2626953125}, {"start": 1323.86, "end": 1324.06, "word": " have", "probability": 0.55908203125}, {"start": 1324.06, "end": 1324.18, "word": " a", "probability": 0.42919921875}, {"start": 1324.18, "end": 1324.46, "word": " 3D", "probability": 0.84375}, {"start": 1324.46, "end": 1324.7, "word": " border", "probability": 0.73876953125}, {"start": 1324.7, "end": 1325.28, "word": " component,", "probability": 0.80419921875}, {"start": 1325.52, "end": 1325.88, "word": " you", "probability": 0.8369140625}, {"start": 1325.88, "end": 1326.06, "word": " can", "probability": 0.8212890625}, {"start": 1326.06, "end": 1326.34, "word": " call", "probability": 0.11151123046875}, {"start": 1326.34, "end": 1326.68, "word": " it", "probability": 0.84716796875}, {"start": 1326.68, "end": 1328.12, "word": " HVScrollbar.", "probability": 0.62744140625}, {"start": 1328.54, "end": 1328.76, "word": " Do", "probability": 0.1229248046875}, {"start": 1328.76, "end": 1328.76, "word": " you", "probability": 0.96533203125}, {"start": 1328.76, "end": 1328.92, "word": " see", "probability": 0.19970703125}, {"start": 1328.92, "end": 1329.22, "word": " how", "probability": 0.65380859375}, {"start": 1329.22, "end": 1329.38, "word": " I", "probability": 0.54931640625}, {"start": 1329.38, "end": 1329.6, "word": " created", "probability": 0.484619140625}, {"start": 1329.6, "end": 1329.66, "word": " it?", "probability": 0.443359375}, {"start": 1330.1, "end": 1330.46, "word": " In", "probability": 0.2783203125}, {"start": 1330.46, "end": 1330.52, "word": " the", "probability": 0.7314453125}, {"start": 1330.52, "end": 1330.7, "word": " end,", "probability": 0.86962890625}, {"start": 1330.88, "end": 1331.0, "word": " when", "probability": 0.7333984375}, {"start": 1331.0, "end": 1331.14, "word": " I", "probability": 0.95849609375}, {"start": 1331.14, "end": 1331.3, "word": " draw", "probability": 0.8486328125}, {"start": 1331.3, "end": 1331.52, "word": " any", "probability": 0.390380859375}, {"start": 1331.52, "end": 1331.78, "word": " shape,", "probability": 0.7939453125}, {"start": 1331.88, "end": 1332.2, "word": " for", "probability": 0.358642578125}, {"start": 1332.2, "end": 1332.54, "word": " example,", "probability": 0.91796875}, {"start": 1332.56, "end": 1332.56, "word": " this", "probability": 0.759765625}, {"start": 1332.56, "end": 1332.56, "word": " is", "probability": 0.78369140625}, {"start": 1332.56, "end": 1333.26, "word": " the", "probability": 0.402587890625}, {"start": 1333.26, "end": 1333.44, "word": " new", "probability": 0.6689453125}, {"start": 1333.44, "end": 1334.4, "word": " HVScrollbar", "probability": 0.9546875}, {"start": 1334.4, "end": 1334.68, "word": " named", "probability": 0.20947265625}, {"start": 1334.68, "end": 1334.94, "word": " O,", "probability": 0.7802734375}, {"start": 1335.02, "end": 1335.16, "word": " the", "probability": 0.73779296875}, {"start": 1335.16, "end": 1335.48, "word": " object.", "probability": 0.93798828125}, {"start": 1336.2, "end": 1336.36, "word": " In", "probability": 0.491455078125}, {"start": 1336.36, "end": 1336.46, "word": " the", "probability": 0.9130859375}, {"start": 1336.46, "end": 1336.54, "word": " end,", "probability": 0.90283203125}, {"start": 1336.68, "end": 1336.7, "word": " when", "probability": 0.8544921875}, {"start": 1336.7, "end": 1336.84, "word": " I", "probability": 0.98828125}, {"start": 1336.84, "end": 1337.04, "word": " draw", "probability": 0.91650390625}, {"start": 1337.04, "end": 1337.34, "word": " this,", "probability": 0.8349609375}, {"start": 1337.36, "end": 1337.56, "word": " what", "probability": 0.6337890625}, {"start": 1337.56, "end": 1337.64, "word": " do", "probability": 0.841796875}, {"start": 1337.64, "end": 1337.64, "word": " I", "probability": 0.9755859375}, {"start": 1337.64, "end": 1337.84, "word": " call", "probability": 0.398193359375}, {"start": 1337.84, "end": 1337.86, "word": " it?", "probability": 0.794921875}, {"start": 1337.86, "end": 1337.9, "word": " I", "probability": 0.814453125}, {"start": 1337.9, "end": 1338.06, "word": " call", "probability": 0.6552734375}, {"start": 1338.06, "end": 1338.16, "word": " it", "probability": 0.9140625}, {"start": 1338.16, "end": 1338.42, "word": " O", "probability": 0.87158203125}, {"start": 1338.42, "end": 1338.72, "word": " dot", "probability": 0.78076171875}, {"start": 1338.72, "end": 1340.14, "word": " draw.", "probability": 0.279052734375}, {"start": 1340.54, "end": 1340.78, "word": " And", "probability": 0.64404296875}, {"start": 1340.78, "end": 1341.24, "word": " actually,", "probability": 0.63720703125}, {"start": 1341.8, "end": 1341.92, "word": " for", "probability": 0.5244140625}, {"start": 1341.92, "end": 1342.48, "word": " this", "probability": 0.8955078125}, {"start": 1342.48, "end": 1342.48, "word": " draw,", "probability": 0.80615234375}, {"start": 1344.28, "end": 1345.38, "word": " whose", "probability": 0.18408203125}, {"start": 1345.38, "end": 1346.32, "word": " O", "probability": 0.77978515625}, {"start": 1346.32, "end": 1346.46, "word": " dot", "probability": 0.55908203125}, {"start": 1346.46, "end": 1346.82, "word": " draw", "probability": 0.89697265625}, {"start": 1346.82, "end": 1346.84, "word": " belongs", "probability": 0.2734375}, {"start": 1346.84, "end": 1346.96, "word": " to?", "probability": 0.9228515625}, {"start": 1347.54, "end": 1347.98, "word": " The", "probability": 0.38525390625}, {"start": 1347.98, "end": 1348.44, "word": " scrollbar.", "probability": 0.701416015625}, {"start": 1348.58, "end": 1349.02, "word": " So", "probability": 0.609375}, {"start": 1349.02, "end": 1349.22, "word": " there", "probability": 0.72021484375}, {"start": 1349.22, "end": 1349.22, "word": " will", "probability": 0.63232421875}, {"start": 1349.22, "end": 1349.48, "word": " be", "probability": 0.947265625}, {"start": 1349.48, "end": 1349.64, "word": " a", "probability": 0.623046875}, {"start": 1349.64, "end": 1350.04, "word": " code", "probability": 0.94189453125}, {"start": 1350.04, "end": 1350.38, "word": " that", "probability": 0.5078125}, {"start": 1350.38, "end": 1350.9, "word": " draws", "probability": 0.483154296875}, {"start": 1350.9, "end": 1351.28, "word": " what?", "probability": 0.55859375}], "temperature": 1.0}, {"id": 54, "seek": 138138, "start": 1352.26, "end": 1381.38, "text": " the scroll bar and from inside it calls the draw of the border for example let's call it O2 this is O1 and this is O2 so O1 dot draw will execute the code to draw the scroll bar and it will go to O2 dot draw right? this is the draw of the border and the draw of the border will execute the code to draw the meme draw border", "tokens": [264, 11369, 2159, 293, 490, 1854, 309, 5498, 264, 2642, 295, 264, 7838, 337, 1365, 718, 311, 818, 309, 422, 17, 341, 307, 422, 16, 293, 341, 307, 422, 17, 370, 422, 16, 5893, 2642, 486, 14483, 264, 3089, 281, 2642, 264, 11369, 2159, 293, 309, 486, 352, 281, 422, 17, 5893, 2642, 558, 30, 341, 307, 264, 2642, 295, 264, 7838, 293, 264, 2642, 295, 264, 7838, 486, 14483, 264, 3089, 281, 2642, 264, 21701, 2642, 7838], "avg_logprob": -0.36016613018663624, "compression_ratio": 2.1315789473684212, "no_speech_prob": 1.1801719665527344e-05, "words": [{"start": 1352.26, "end": 1352.48, "word": " the", "probability": 0.156005859375}, {"start": 1352.48, "end": 1352.72, "word": " scroll", "probability": 0.91748046875}, {"start": 1352.72, "end": 1353.08, "word": " bar", "probability": 0.60986328125}, {"start": 1353.08, "end": 1354.36, "word": " and", "probability": 0.63525390625}, {"start": 1354.36, "end": 1354.48, "word": " from", "probability": 0.57470703125}, {"start": 1354.48, "end": 1354.9, "word": " inside", "probability": 0.53857421875}, {"start": 1354.9, "end": 1355.52, "word": " it", "probability": 0.46728515625}, {"start": 1355.52, "end": 1355.88, "word": " calls", "probability": 0.09637451171875}, {"start": 1355.88, "end": 1357.84, "word": " the", "probability": 0.66162109375}, {"start": 1357.84, "end": 1358.06, "word": " draw", "probability": 0.498291015625}, {"start": 1358.06, "end": 1358.26, "word": " of", "probability": 0.7099609375}, {"start": 1358.26, "end": 1358.52, "word": " the", "probability": 0.78955078125}, {"start": 1358.52, "end": 1358.76, "word": " border", "probability": 0.8603515625}, {"start": 1358.76, "end": 1359.38, "word": " for", "probability": 0.17724609375}, {"start": 1359.38, "end": 1359.62, "word": " example", "probability": 0.92041015625}, {"start": 1359.62, "end": 1359.86, "word": " let's", "probability": 0.5732421875}, {"start": 1359.86, "end": 1360.02, "word": " call", "probability": 0.6640625}, {"start": 1360.02, "end": 1360.16, "word": " it", "probability": 0.73388671875}, {"start": 1360.16, "end": 1360.56, "word": " O2", "probability": 0.792236328125}, {"start": 1360.56, "end": 1360.86, "word": " this", "probability": 0.403564453125}, {"start": 1360.86, "end": 1360.92, "word": " is", "probability": 0.83154296875}, {"start": 1360.92, "end": 1361.32, "word": " O1", "probability": 0.967529296875}, {"start": 1361.32, "end": 1361.5, "word": " and", "probability": 0.64697265625}, {"start": 1361.5, "end": 1361.62, "word": " this", "probability": 0.888671875}, {"start": 1361.62, "end": 1361.62, "word": " is", "probability": 0.923828125}, {"start": 1361.62, "end": 1362.04, "word": " O2", "probability": 0.991455078125}, {"start": 1362.04, "end": 1362.3, "word": " so", "probability": 0.323974609375}, {"start": 1362.3, "end": 1362.82, "word": " O1", "probability": 0.903564453125}, {"start": 1362.82, "end": 1363.0, "word": " dot", "probability": 0.4794921875}, {"start": 1363.0, "end": 1363.32, "word": " draw", "probability": 0.86669921875}, {"start": 1363.32, "end": 1364.04, "word": " will", "probability": 0.5}, {"start": 1364.04, "end": 1364.42, "word": " execute", "probability": 0.6044921875}, {"start": 1364.42, "end": 1364.6, "word": " the", "probability": 0.828125}, {"start": 1364.6, "end": 1364.82, "word": " code", "probability": 0.93408203125}, {"start": 1364.82, "end": 1364.94, "word": " to", "probability": 0.560546875}, {"start": 1364.94, "end": 1365.14, "word": " draw", "probability": 0.87451171875}, {"start": 1365.14, "end": 1365.34, "word": " the", "probability": 0.83935546875}, {"start": 1365.34, "end": 1365.52, "word": " scroll", "probability": 0.96484375}, {"start": 1365.52, "end": 1365.76, "word": " bar", "probability": 0.84716796875}, {"start": 1365.76, "end": 1365.86, "word": " and", "probability": 0.60791015625}, {"start": 1365.86, "end": 1365.92, "word": " it", "probability": 0.2607421875}, {"start": 1365.92, "end": 1365.94, "word": " will", "probability": 0.75146484375}, {"start": 1365.94, "end": 1366.08, "word": " go", "probability": 0.8115234375}, {"start": 1366.08, "end": 1366.2, "word": " to", "probability": 0.90576171875}, {"start": 1366.2, "end": 1366.8, "word": " O2", "probability": 0.9853515625}, {"start": 1366.8, "end": 1368.24, "word": " dot", "probability": 0.94677734375}, {"start": 1368.24, "end": 1368.54, "word": " draw", "probability": 0.8662109375}, {"start": 1368.54, "end": 1369.06, "word": " right?", "probability": 0.422607421875}, {"start": 1369.82, "end": 1370.1, "word": " this", "probability": 0.78173828125}, {"start": 1370.1, "end": 1370.42, "word": " is", "probability": 0.90576171875}, {"start": 1370.42, "end": 1370.46, "word": " the", "probability": 0.849609375}, {"start": 1370.46, "end": 1370.68, "word": " draw", "probability": 0.869140625}, {"start": 1370.68, "end": 1370.84, "word": " of", "probability": 0.9501953125}, {"start": 1370.84, "end": 1371.08, "word": " the", "probability": 0.880859375}, {"start": 1371.08, "end": 1371.36, "word": " border", "probability": 0.85595703125}, {"start": 1371.36, "end": 1372.06, "word": " and", "probability": 0.87646484375}, {"start": 1372.06, "end": 1372.18, "word": " the", "probability": 0.84521484375}, {"start": 1372.18, "end": 1372.38, "word": " draw", "probability": 0.85595703125}, {"start": 1372.38, "end": 1372.52, "word": " of", "probability": 0.96875}, {"start": 1372.52, "end": 1372.78, "word": " the", "probability": 0.90966796875}, {"start": 1372.78, "end": 1373.2, "word": " border", "probability": 0.85009765625}, {"start": 1373.2, "end": 1376.38, "word": " will", "probability": 0.810546875}, {"start": 1376.38, "end": 1376.72, "word": " execute", "probability": 0.94140625}, {"start": 1376.72, "end": 1376.9, "word": " the", "probability": 0.56201171875}, {"start": 1376.9, "end": 1377.22, "word": " code", "probability": 0.93359375}, {"start": 1377.22, "end": 1377.64, "word": " to", "probability": 0.943359375}, {"start": 1377.64, "end": 1377.82, "word": " draw", "probability": 0.90283203125}, {"start": 1377.82, "end": 1378.06, "word": " the", "probability": 0.3857421875}, {"start": 1378.06, "end": 1378.2, "word": " meme", "probability": 0.6953125}, {"start": 1378.2, "end": 1380.08, "word": " draw", "probability": 0.80615234375}, {"start": 1380.08, "end": 1381.38, "word": " border", "probability": 0.814453125}], "temperature": 1.0}, {"id": 55, "seek": 141140, "start": 1382.26, "end": 1411.4, "text": " And then you will go and copy the V You will see that they overlap each other So see how easy it is to add two functionalities to an object and wrap it twice Now there is homework that I will add to the decorator Did you see the example that we explained? We will discuss what we did in our example I want to add a border that does not have a shape, that is a circle and rectangle And we made a class called border", "tokens": [400, 550, 291, 486, 352, 293, 5055, 264, 691, 509, 486, 536, 300, 436, 19959, 1184, 661, 407, 536, 577, 1858, 309, 307, 281, 909, 732, 11745, 1088, 281, 364, 2657, 293, 7019, 309, 6091, 823, 456, 307, 14578, 300, 286, 486, 909, 281, 264, 7919, 1639, 2589, 291, 536, 264, 1365, 300, 321, 8825, 30, 492, 486, 2248, 437, 321, 630, 294, 527, 1365, 286, 528, 281, 909, 257, 7838, 300, 775, 406, 362, 257, 3909, 11, 300, 307, 257, 6329, 293, 21930, 400, 321, 1027, 257, 1508, 1219, 7838], "avg_logprob": -0.5866168368121852, "compression_ratio": 1.6938775510204083, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1382.26, "end": 1382.48, "word": " And", "probability": 0.2061767578125}, {"start": 1382.48, "end": 1382.78, "word": " then", "probability": 0.5498046875}, {"start": 1382.78, "end": 1383.02, "word": " you", "probability": 0.521484375}, {"start": 1383.02, "end": 1383.02, "word": " will", "probability": 0.3876953125}, {"start": 1383.02, "end": 1383.12, "word": " go", "probability": 0.09765625}, {"start": 1383.12, "end": 1383.24, "word": " and", "probability": 0.544921875}, {"start": 1383.24, "end": 1383.46, "word": " copy", "probability": 0.1822509765625}, {"start": 1383.46, "end": 1383.66, "word": " the", "probability": 0.6064453125}, {"start": 1383.66, "end": 1383.96, "word": " V", "probability": 0.28271484375}, {"start": 1383.96, "end": 1386.14, "word": " You", "probability": 0.06634521484375}, {"start": 1386.14, "end": 1386.22, "word": " will", "probability": 0.384765625}, {"start": 1386.22, "end": 1386.38, "word": " see", "probability": 0.41845703125}, {"start": 1386.38, "end": 1386.8, "word": " that", "probability": 0.258544921875}, {"start": 1386.8, "end": 1386.86, "word": " they", "probability": 0.49609375}, {"start": 1386.86, "end": 1387.2, "word": " overlap", "probability": 0.2442626953125}, {"start": 1387.2, "end": 1388.56, "word": " each", "probability": 0.5693359375}, {"start": 1388.56, "end": 1388.7, "word": " other", "probability": 0.8623046875}, {"start": 1388.7, "end": 1389.8, "word": " So", "probability": 0.56689453125}, {"start": 1389.8, "end": 1390.12, "word": " see", "probability": 0.328369140625}, {"start": 1390.12, "end": 1390.44, "word": " how", "probability": 0.83154296875}, {"start": 1390.44, "end": 1390.74, "word": " easy", "probability": 0.744140625}, {"start": 1390.74, "end": 1390.94, "word": " it", "probability": 0.87158203125}, {"start": 1390.94, "end": 1390.94, "word": " is", "probability": 0.93115234375}, {"start": 1390.94, "end": 1391.1, "word": " to", "probability": 0.162109375}, {"start": 1391.1, "end": 1392.74, "word": " add", "probability": 0.716796875}, {"start": 1392.74, "end": 1393.08, "word": " two", "probability": 0.66455078125}, {"start": 1393.08, "end": 1393.78, "word": " functionalities", "probability": 0.80615234375}, {"start": 1393.78, "end": 1393.9, "word": " to", "probability": 0.8857421875}, {"start": 1393.9, "end": 1394.0, "word": " an", "probability": 0.693359375}, {"start": 1394.0, "end": 1394.26, "word": " object", "probability": 0.9736328125}, {"start": 1394.26, "end": 1394.42, "word": " and", "probability": 0.53271484375}, {"start": 1394.42, "end": 1394.7, "word": " wrap", "probability": 0.26708984375}, {"start": 1394.7, "end": 1396.0, "word": " it", "probability": 0.82177734375}, {"start": 1396.0, "end": 1396.46, "word": " twice", "probability": 0.5234375}, {"start": 1396.46, "end": 1398.66, "word": " Now", "probability": 0.242919921875}, {"start": 1398.66, "end": 1400.84, "word": " there", "probability": 0.3798828125}, {"start": 1400.84, "end": 1400.84, "word": " is", "probability": 0.8173828125}, {"start": 1400.84, "end": 1401.22, "word": " homework", "probability": 0.495849609375}, {"start": 1401.22, "end": 1401.38, "word": " that", "probability": 0.53076171875}, {"start": 1401.38, "end": 1401.38, "word": " I", "probability": 0.91064453125}, {"start": 1401.38, "end": 1401.46, "word": " will", "probability": 0.783203125}, {"start": 1401.46, "end": 1401.6, "word": " add", "probability": 0.814453125}, {"start": 1401.6, "end": 1401.76, "word": " to", "probability": 0.5634765625}, {"start": 1401.76, "end": 1402.54, "word": " the", "probability": 0.791015625}, {"start": 1402.54, "end": 1403.12, "word": " decorator", "probability": 0.849853515625}, {"start": 1403.12, "end": 1403.66, "word": " Did", "probability": 0.21923828125}, {"start": 1403.66, "end": 1404.14, "word": " you", "probability": 0.97021484375}, {"start": 1404.14, "end": 1404.26, "word": " see", "probability": 0.830078125}, {"start": 1404.26, "end": 1404.38, "word": " the", "probability": 0.76318359375}, {"start": 1404.38, "end": 1404.62, "word": " example", "probability": 0.9677734375}, {"start": 1404.62, "end": 1404.72, "word": " that", "probability": 0.68115234375}, {"start": 1404.72, "end": 1404.86, "word": " we", "probability": 0.673828125}, {"start": 1404.86, "end": 1405.08, "word": " explained?", "probability": 0.40185546875}, {"start": 1405.8, "end": 1406.06, "word": " We", "probability": 0.3203125}, {"start": 1406.06, "end": 1406.06, "word": " will", "probability": 0.461181640625}, {"start": 1406.06, "end": 1406.16, "word": " discuss", "probability": 0.7431640625}, {"start": 1406.16, "end": 1406.36, "word": " what", "probability": 0.80419921875}, {"start": 1406.36, "end": 1406.48, "word": " we", "probability": 0.8154296875}, {"start": 1406.48, "end": 1406.48, "word": " did", "probability": 0.84130859375}, {"start": 1406.48, "end": 1406.58, "word": " in", "probability": 0.7626953125}, {"start": 1406.58, "end": 1406.66, "word": " our", "probability": 0.72314453125}, {"start": 1406.66, "end": 1406.96, "word": " example", "probability": 0.9619140625}, {"start": 1406.96, "end": 1407.96, "word": " I", "probability": 0.48974609375}, {"start": 1407.96, "end": 1408.08, "word": " want", "probability": 0.269287109375}, {"start": 1408.08, "end": 1408.1, "word": " to", "probability": 0.96826171875}, {"start": 1408.1, "end": 1408.28, "word": " add", "probability": 0.91259765625}, {"start": 1408.28, "end": 1408.42, "word": " a", "probability": 0.89892578125}, {"start": 1408.42, "end": 1408.64, "word": " border", "probability": 0.54296875}, {"start": 1408.64, "end": 1408.78, "word": " that", "probability": 0.4814453125}, {"start": 1408.78, "end": 1408.84, "word": " does", "probability": 0.282958984375}, {"start": 1408.84, "end": 1408.86, "word": " not", "probability": 0.93017578125}, {"start": 1408.86, "end": 1408.9, "word": " have", "probability": 0.56591796875}, {"start": 1408.9, "end": 1408.9, "word": " a", "probability": 0.64892578125}, {"start": 1408.9, "end": 1409.1, "word": " shape,", "probability": 0.830078125}, {"start": 1409.24, "end": 1409.34, "word": " that", "probability": 0.2298583984375}, {"start": 1409.34, "end": 1409.34, "word": " is", "probability": 0.84814453125}, {"start": 1409.34, "end": 1409.36, "word": " a", "probability": 0.40966796875}, {"start": 1409.36, "end": 1409.62, "word": " circle", "probability": 0.9404296875}, {"start": 1409.62, "end": 1409.72, "word": " and", "probability": 0.50830078125}, {"start": 1409.72, "end": 1410.06, "word": " rectangle", "probability": 0.62939453125}, {"start": 1410.06, "end": 1410.18, "word": " And", "probability": 0.37451171875}, {"start": 1410.18, "end": 1410.32, "word": " we", "probability": 0.91259765625}, {"start": 1410.32, "end": 1410.46, "word": " made", "probability": 0.52734375}, {"start": 1410.46, "end": 1410.6, "word": " a", "probability": 0.96923828125}, {"start": 1410.6, "end": 1410.82, "word": " class", "probability": 0.9716796875}, {"start": 1410.82, "end": 1411.08, "word": " called", "probability": 0.5419921875}, {"start": 1411.08, "end": 1411.4, "word": " border", "probability": 0.6240234375}], "temperature": 1.0}, {"id": 56, "seek": 143044, "start": 1412.42, "end": 1430.44, "text": "I would like to add a new functionality, which is that we make the shape constant. For example, when we draw a circle, we can draw a circle that is filled with green and has a circle in red. This filling is a new functionality.", "tokens": [40, 576, 411, 281, 909, 257, 777, 14980, 11, 597, 307, 300, 321, 652, 264, 3909, 5754, 13, 1171, 1365, 11, 562, 321, 2642, 257, 6329, 11, 321, 393, 2642, 257, 6329, 300, 307, 6412, 365, 3092, 293, 575, 257, 6329, 294, 2182, 13, 639, 10623, 307, 257, 777, 14980, 13], "avg_logprob": -0.5943509535147593, "compression_ratio": 1.5985915492957747, "no_speech_prob": 4.112720489501953e-06, "words": [{"start": 1412.42, "end": 1412.58, "word": "I", "probability": 0.2861328125}, {"start": 1412.58, "end": 1412.7, "word": " would", "probability": 0.06817626953125}, {"start": 1412.7, "end": 1412.74, "word": " like", "probability": 0.5078125}, {"start": 1412.74, "end": 1412.9, "word": " to", "probability": 0.93603515625}, {"start": 1412.9, "end": 1413.1, "word": " add", "probability": 0.79150390625}, {"start": 1413.1, "end": 1413.2, "word": " a", "probability": 0.66357421875}, {"start": 1413.2, "end": 1413.22, "word": " new", "probability": 0.8779296875}, {"start": 1413.22, "end": 1413.64, "word": " functionality,", "probability": 0.71630859375}, {"start": 1414.26, "end": 1414.32, "word": " which", "probability": 0.2232666015625}, {"start": 1414.32, "end": 1414.32, "word": " is", "probability": 0.79052734375}, {"start": 1414.32, "end": 1414.32, "word": " that", "probability": 0.1761474609375}, {"start": 1414.32, "end": 1414.5, "word": " we", "probability": 0.79931640625}, {"start": 1414.5, "end": 1414.72, "word": " make", "probability": 0.2196044921875}, {"start": 1414.72, "end": 1414.9, "word": " the", "probability": 0.46875}, {"start": 1414.9, "end": 1415.08, "word": " shape", "probability": 0.74658203125}, {"start": 1415.08, "end": 1415.56, "word": " constant.", "probability": 0.06268310546875}, {"start": 1417.4, "end": 1417.92, "word": " For", "probability": 0.360107421875}, {"start": 1417.92, "end": 1418.18, "word": " example,", "probability": 0.90087890625}, {"start": 1418.92, "end": 1419.26, "word": " when", "probability": 0.51220703125}, {"start": 1419.26, "end": 1419.42, "word": " we", "probability": 0.82421875}, {"start": 1419.42, "end": 1419.58, "word": " draw", "probability": 0.88525390625}, {"start": 1419.58, "end": 1419.76, "word": " a", "probability": 0.94970703125}, {"start": 1419.76, "end": 1420.0, "word": " circle,", "probability": 0.93505859375}, {"start": 1420.58, "end": 1421.12, "word": " we", "probability": 0.6728515625}, {"start": 1421.12, "end": 1421.3, "word": " can", "probability": 0.80810546875}, {"start": 1421.3, "end": 1421.56, "word": " draw", "probability": 0.7119140625}, {"start": 1421.56, "end": 1421.76, "word": " a", "probability": 0.69384765625}, {"start": 1421.76, "end": 1422.06, "word": " circle", "probability": 0.72705078125}, {"start": 1422.06, "end": 1422.12, "word": " that", "probability": 0.304931640625}, {"start": 1422.12, "end": 1422.12, "word": " is", "probability": 0.8154296875}, {"start": 1422.12, "end": 1422.38, "word": " filled", "probability": 0.443603515625}, {"start": 1422.38, "end": 1422.82, "word": " with", "probability": 0.8427734375}, {"start": 1422.82, "end": 1423.16, "word": " green", "probability": 0.69970703125}, {"start": 1423.16, "end": 1423.62, "word": " and", "probability": 0.52392578125}, {"start": 1423.62, "end": 1423.92, "word": " has", "probability": 0.52001953125}, {"start": 1423.92, "end": 1424.04, "word": " a", "probability": 0.86865234375}, {"start": 1424.04, "end": 1424.16, "word": " circle", "probability": 0.490234375}, {"start": 1424.16, "end": 1425.14, "word": " in", "probability": 0.255859375}, {"start": 1425.14, "end": 1425.52, "word": " red.", "probability": 0.8994140625}, {"start": 1427.5, "end": 1428.02, "word": " This", "probability": 0.484619140625}, {"start": 1428.02, "end": 1428.46, "word": " filling", "probability": 0.55078125}, {"start": 1428.46, "end": 1429.52, "word": " is", "probability": 0.83349609375}, {"start": 1429.52, "end": 1429.84, "word": " a", "probability": 0.85791015625}, {"start": 1429.84, "end": 1429.94, "word": " new", "probability": 0.88623046875}, {"start": 1429.94, "end": 1430.44, "word": " functionality.", "probability": 0.8447265625}], "temperature": 1.0}, {"id": 57, "seek": 145441, "start": 1431.69, "end": 1454.41, "text": "I'm not going to make a solid circle and extend circle to fill it up because that's how I'm going to force Ash to make a solid circle, solid rectangle, solid triangle, solid whatever. No. We're going to add this solid property as what? As a decorator. So you're going to make a class called solid. What's its idea? That it covers a shape. Okay? And we have a draw.", "tokens": [40, 478, 406, 516, 281, 652, 257, 5100, 6329, 293, 10101, 6329, 281, 2836, 309, 493, 570, 300, 311, 577, 286, 478, 516, 281, 3464, 316, 2716, 281, 652, 257, 5100, 6329, 11, 5100, 21930, 11, 5100, 13369, 11, 5100, 2035, 13, 883, 13, 492, 434, 516, 281, 909, 341, 5100, 4707, 382, 437, 30, 1018, 257, 7919, 1639, 13, 407, 291, 434, 516, 281, 652, 257, 1508, 1219, 5100, 13, 708, 311, 1080, 1558, 30, 663, 309, 10538, 257, 3909, 13, 1033, 30, 400, 321, 362, 257, 2642, 13], "avg_logprob": -0.5377747134847956, "compression_ratio": 1.7251184834123223, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1431.69, "end": 1431.93, "word": "I'm", "probability": 0.529541015625}, {"start": 1431.93, "end": 1432.05, "word": " not", "probability": 0.93017578125}, {"start": 1432.05, "end": 1432.19, "word": " going", "probability": 0.7431640625}, {"start": 1432.19, "end": 1432.27, "word": " to", "probability": 0.96826171875}, {"start": 1432.27, "end": 1432.51, "word": " make", "probability": 0.377685546875}, {"start": 1432.51, "end": 1433.09, "word": " a", "probability": 0.1815185546875}, {"start": 1433.09, "end": 1433.27, "word": " solid", "probability": 0.93701171875}, {"start": 1433.27, "end": 1433.69, "word": " circle", "probability": 0.78173828125}, {"start": 1433.69, "end": 1433.81, "word": " and", "probability": 0.35546875}, {"start": 1433.81, "end": 1434.11, "word": " extend", "probability": 0.61669921875}, {"start": 1434.11, "end": 1434.57, "word": " circle", "probability": 0.7275390625}, {"start": 1434.57, "end": 1434.73, "word": " to", "probability": 0.62158203125}, {"start": 1434.73, "end": 1435.01, "word": " fill", "probability": 0.7509765625}, {"start": 1435.01, "end": 1435.13, "word": " it", "probability": 0.57373046875}, {"start": 1435.13, "end": 1435.13, "word": " up", "probability": 0.2254638671875}, {"start": 1435.13, "end": 1435.27, "word": " because", "probability": 0.321533203125}, {"start": 1435.27, "end": 1435.47, "word": " that's", "probability": 0.293701171875}, {"start": 1435.47, "end": 1435.47, "word": " how", "probability": 0.299560546875}, {"start": 1435.47, "end": 1435.73, "word": " I'm", "probability": 0.443115234375}, {"start": 1435.73, "end": 1435.75, "word": " going", "probability": 0.85205078125}, {"start": 1435.75, "end": 1435.75, "word": " to", "probability": 0.962890625}, {"start": 1435.75, "end": 1435.85, "word": " force", "probability": 0.17724609375}, {"start": 1435.85, "end": 1436.19, "word": " Ash", "probability": 0.2896728515625}, {"start": 1436.19, "end": 1436.87, "word": " to", "probability": 0.853515625}, {"start": 1436.87, "end": 1437.25, "word": " make", "probability": 0.68994140625}, {"start": 1437.25, "end": 1437.39, "word": " a", "probability": 0.446044921875}, {"start": 1437.39, "end": 1437.55, "word": " solid", "probability": 0.96630859375}, {"start": 1437.55, "end": 1438.07, "word": " circle,", "probability": 0.60546875}, {"start": 1438.19, "end": 1438.37, "word": " solid", "probability": 0.67138671875}, {"start": 1438.37, "end": 1439.01, "word": " rectangle,", "probability": 0.5244140625}, {"start": 1439.23, "end": 1439.53, "word": " solid", "probability": 0.8125}, {"start": 1439.53, "end": 1440.23, "word": " triangle,", "probability": 0.845703125}, {"start": 1440.35, "end": 1440.57, "word": " solid", "probability": 0.78515625}, {"start": 1440.57, "end": 1441.03, "word": " whatever.", "probability": 0.125732421875}, {"start": 1441.93, "end": 1442.29, "word": " No.", "probability": 0.80419921875}, {"start": 1443.07, "end": 1443.39, "word": " We're", "probability": 0.5389404296875}, {"start": 1443.39, "end": 1443.47, "word": " going", "probability": 0.7138671875}, {"start": 1443.47, "end": 1443.47, "word": " to", "probability": 0.96728515625}, {"start": 1443.47, "end": 1443.67, "word": " add", "probability": 0.8701171875}, {"start": 1443.67, "end": 1444.31, "word": " this", "probability": 0.2763671875}, {"start": 1444.31, "end": 1444.51, "word": " solid", "probability": 0.912109375}, {"start": 1444.51, "end": 1444.65, "word": " property", "probability": 0.466064453125}, {"start": 1444.65, "end": 1444.97, "word": " as", "probability": 0.5322265625}, {"start": 1444.97, "end": 1445.27, "word": " what?", "probability": 0.69384765625}, {"start": 1445.65, "end": 1445.91, "word": " As", "probability": 0.935546875}, {"start": 1445.91, "end": 1446.01, "word": " a", "probability": 0.66552734375}, {"start": 1446.01, "end": 1446.45, "word": " decorator.", "probability": 0.984375}, {"start": 1446.91, "end": 1447.07, "word": " So", "probability": 0.83544921875}, {"start": 1447.07, "end": 1447.23, "word": " you're", "probability": 0.45947265625}, {"start": 1447.23, "end": 1447.29, "word": " going", "probability": 0.90478515625}, {"start": 1447.29, "end": 1447.39, "word": " to", "probability": 0.96435546875}, {"start": 1447.39, "end": 1447.53, "word": " make", "probability": 0.79638671875}, {"start": 1447.53, "end": 1447.65, "word": " a", "probability": 0.9833984375}, {"start": 1447.65, "end": 1447.91, "word": " class", "probability": 0.9765625}, {"start": 1447.91, "end": 1448.21, "word": " called", "probability": 0.677734375}, {"start": 1448.21, "end": 1449.23, "word": " solid.", "probability": 0.52099609375}, {"start": 1450.13, "end": 1450.39, "word": " What's", "probability": 0.700927734375}, {"start": 1450.39, "end": 1450.43, "word": " its", "probability": 0.39404296875}, {"start": 1450.43, "end": 1450.67, "word": " idea?", "probability": 0.8125}, {"start": 1450.95, "end": 1451.09, "word": " That", "probability": 0.5693359375}, {"start": 1451.09, "end": 1451.25, "word": " it", "probability": 0.87646484375}, {"start": 1451.25, "end": 1451.55, "word": " covers", "probability": 0.2020263671875}, {"start": 1451.55, "end": 1451.79, "word": " a", "probability": 0.491943359375}, {"start": 1451.79, "end": 1452.11, "word": " shape.", "probability": 0.87255859375}, {"start": 1452.91, "end": 1453.21, "word": " Okay?", "probability": 0.39990234375}, {"start": 1453.59, "end": 1453.85, "word": " And", "probability": 0.8837890625}, {"start": 1453.85, "end": 1454.13, "word": " we", "probability": 0.49951171875}, {"start": 1454.13, "end": 1454.13, "word": " have", "probability": 0.833984375}, {"start": 1454.13, "end": 1454.23, "word": " a", "probability": 0.364990234375}, {"start": 1454.23, "end": 1454.41, "word": " draw.", "probability": 0.80810546875}], "temperature": 1.0}, {"id": 58, "seek": 147747, "start": 1455.91, "end": 1477.47, "text": "You fill it up and then you draw on it. Think about how you do it. I can also tell you to add two features to the shape. It should have a border and should be fixed. So you use a method like this. For example, you make a circle and you cover it with a border.", "tokens": [3223, 2836, 309, 493, 293, 550, 291, 2642, 322, 309, 13, 6557, 466, 577, 291, 360, 309, 13, 286, 393, 611, 980, 291, 281, 909, 732, 4122, 281, 264, 3909, 13, 467, 820, 362, 257, 7838, 293, 820, 312, 6806, 13, 407, 291, 764, 257, 3170, 411, 341, 13, 1171, 1365, 11, 291, 652, 257, 6329, 293, 291, 2060, 309, 365, 257, 7838, 13], "avg_logprob": -0.6322115384615384, "compression_ratio": 1.505813953488372, "no_speech_prob": 5.185604095458984e-06, "words": [{"start": 1455.91, "end": 1456.11, "word": "You", "probability": 0.218017578125}, {"start": 1456.11, "end": 1456.45, "word": " fill", "probability": 0.60400390625}, {"start": 1456.45, "end": 1456.65, "word": " it", "probability": 0.55322265625}, {"start": 1456.65, "end": 1456.65, "word": " up", "probability": 0.30517578125}, {"start": 1456.65, "end": 1457.43, "word": " and", "probability": 0.49658203125}, {"start": 1457.43, "end": 1457.59, "word": " then", "probability": 0.55078125}, {"start": 1457.59, "end": 1457.75, "word": " you", "probability": 0.49658203125}, {"start": 1457.75, "end": 1458.01, "word": " draw", "probability": 0.0965576171875}, {"start": 1458.01, "end": 1459.05, "word": " on", "probability": 0.1556396484375}, {"start": 1459.05, "end": 1459.05, "word": " it.", "probability": 0.6220703125}, {"start": 1459.51, "end": 1459.99, "word": " Think", "probability": 0.595703125}, {"start": 1459.99, "end": 1460.15, "word": " about", "probability": 0.568359375}, {"start": 1460.15, "end": 1460.39, "word": " how", "probability": 0.84375}, {"start": 1460.39, "end": 1460.83, "word": " you", "probability": 0.67431640625}, {"start": 1460.83, "end": 1461.01, "word": " do", "probability": 0.681640625}, {"start": 1461.01, "end": 1461.29, "word": " it.", "probability": 0.80419921875}, {"start": 1461.73, "end": 1462.21, "word": " I", "probability": 0.120849609375}, {"start": 1462.21, "end": 1463.49, "word": " can", "probability": 0.7724609375}, {"start": 1463.49, "end": 1463.73, "word": " also", "probability": 0.5263671875}, {"start": 1463.73, "end": 1463.81, "word": " tell", "probability": 0.69921875}, {"start": 1463.81, "end": 1464.51, "word": " you", "probability": 0.962890625}, {"start": 1464.51, "end": 1464.91, "word": " to", "probability": 0.372802734375}, {"start": 1464.91, "end": 1465.43, "word": " add", "probability": 0.395751953125}, {"start": 1465.43, "end": 1466.19, "word": " two", "probability": 0.52294921875}, {"start": 1466.19, "end": 1467.63, "word": " features", "probability": 0.296875}, {"start": 1467.63, "end": 1467.73, "word": " to", "probability": 0.82373046875}, {"start": 1467.73, "end": 1467.73, "word": " the", "probability": 0.72705078125}, {"start": 1467.73, "end": 1467.73, "word": " shape.", "probability": 0.75146484375}, {"start": 1467.97, "end": 1468.11, "word": " It", "probability": 0.3515625}, {"start": 1468.11, "end": 1468.25, "word": " should", "probability": 0.50830078125}, {"start": 1468.25, "end": 1468.47, "word": " have", "probability": 0.7705078125}, {"start": 1468.47, "end": 1468.61, "word": " a", "probability": 0.685546875}, {"start": 1468.61, "end": 1468.95, "word": " border", "probability": 0.830078125}, {"start": 1468.95, "end": 1469.75, "word": " and", "probability": 0.82177734375}, {"start": 1469.75, "end": 1470.31, "word": " should", "probability": 0.23486328125}, {"start": 1470.31, "end": 1471.21, "word": " be", "probability": 0.74658203125}, {"start": 1471.21, "end": 1471.49, "word": " fixed.", "probability": 0.1390380859375}, {"start": 1472.21, "end": 1472.53, "word": " So", "probability": 0.29443359375}, {"start": 1472.53, "end": 1472.83, "word": " you", "probability": 0.7314453125}, {"start": 1472.83, "end": 1473.15, "word": " use", "probability": 0.7109375}, {"start": 1473.15, "end": 1473.33, "word": " a", "probability": 0.278076171875}, {"start": 1473.33, "end": 1473.67, "word": " method", "probability": 0.61962890625}, {"start": 1473.67, "end": 1474.35, "word": " like", "probability": 0.7490234375}, {"start": 1474.35, "end": 1474.69, "word": " this.", "probability": 0.9140625}, {"start": 1475.21, "end": 1475.39, "word": " For", "probability": 0.50048828125}, {"start": 1475.39, "end": 1475.59, "word": " example,", "probability": 0.90380859375}, {"start": 1475.67, "end": 1475.75, "word": " you", "probability": 0.875}, {"start": 1475.75, "end": 1475.89, "word": " make", "probability": 0.57861328125}, {"start": 1475.89, "end": 1476.03, "word": " a", "probability": 0.98095703125}, {"start": 1476.03, "end": 1476.37, "word": " circle", "probability": 0.958984375}, {"start": 1476.37, "end": 1476.55, "word": " and", "probability": 0.56787109375}, {"start": 1476.55, "end": 1476.59, "word": " you", "probability": 0.50341796875}, {"start": 1476.59, "end": 1476.79, "word": " cover", "probability": 0.2347412109375}, {"start": 1476.79, "end": 1477.01, "word": " it", "probability": 0.87060546875}, {"start": 1477.01, "end": 1477.11, "word": " with", "probability": 0.82958984375}, {"start": 1477.11, "end": 1477.23, "word": " a", "probability": 0.6064453125}, {"start": 1477.23, "end": 1477.47, "word": " border.", "probability": 0.853515625}], "temperature": 1.0}, {"id": 59, "seek": 150545, "start": 1480.29, "end": 1505.45, "text": " solid. Of course, if we change the order, it will make a difference. If we put the V and change it to HV School bar and then 3 border, it will not make a difference. It will only execute this before this code. But in the end, it will execute both together. So the required code is the same example that was explained in the lecture, but it is added to it.", "tokens": [5100, 13, 2720, 1164, 11, 498, 321, 1319, 264, 1668, 11, 309, 486, 652, 257, 2649, 13, 759, 321, 829, 264, 691, 293, 1319, 309, 281, 389, 53, 5070, 2159, 293, 550, 805, 7838, 11, 309, 486, 406, 652, 257, 2649, 13, 467, 486, 787, 14483, 341, 949, 341, 3089, 13, 583, 294, 264, 917, 11, 309, 486, 14483, 1293, 1214, 13, 407, 264, 4739, 3089, 307, 264, 912, 1365, 300, 390, 8825, 294, 264, 7991, 11, 457, 309, 307, 3869, 281, 309, 13], "avg_logprob": -0.5823529580060174, "compression_ratio": 1.6872037914691944, "no_speech_prob": 4.214048385620117e-05, "words": [{"start": 1480.29, "end": 1480.73, "word": " solid.", "probability": 0.154541015625}, {"start": 1481.33, "end": 1481.33, "word": " Of", "probability": 0.426025390625}, {"start": 1481.33, "end": 1481.99, "word": " course,", "probability": 0.9423828125}, {"start": 1482.57, "end": 1482.69, "word": " if", "probability": 0.8837890625}, {"start": 1482.69, "end": 1482.79, "word": " we", "probability": 0.83984375}, {"start": 1482.79, "end": 1482.97, "word": " change", "probability": 0.1265869140625}, {"start": 1482.97, "end": 1483.17, "word": " the", "probability": 0.8037109375}, {"start": 1483.17, "end": 1483.39, "word": " order,", "probability": 0.740234375}, {"start": 1483.55, "end": 1483.59, "word": " it", "probability": 0.81201171875}, {"start": 1483.59, "end": 1483.61, "word": " will", "probability": 0.2607421875}, {"start": 1483.61, "end": 1483.79, "word": " make", "probability": 0.25048828125}, {"start": 1483.79, "end": 1483.79, "word": " a", "probability": 0.57470703125}, {"start": 1483.79, "end": 1483.79, "word": " difference.", "probability": 0.8408203125}, {"start": 1484.05, "end": 1484.21, "word": " If", "probability": 0.4111328125}, {"start": 1484.21, "end": 1484.33, "word": " we", "probability": 0.90234375}, {"start": 1484.33, "end": 1484.53, "word": " put", "probability": 0.306396484375}, {"start": 1484.53, "end": 1484.77, "word": " the", "probability": 0.392578125}, {"start": 1484.77, "end": 1484.97, "word": " V", "probability": 0.266357421875}, {"start": 1484.97, "end": 1485.13, "word": " and", "probability": 0.441650390625}, {"start": 1485.13, "end": 1485.35, "word": " change", "probability": 0.1861572265625}, {"start": 1485.35, "end": 1485.71, "word": " it", "probability": 0.63232421875}, {"start": 1485.71, "end": 1486.25, "word": " to", "probability": 0.52001953125}, {"start": 1486.25, "end": 1486.67, "word": " HV", "probability": 0.759521484375}, {"start": 1486.67, "end": 1487.01, "word": " School", "probability": 0.14892578125}, {"start": 1487.01, "end": 1487.23, "word": " bar", "probability": 0.415771484375}, {"start": 1487.23, "end": 1487.45, "word": " and", "probability": 0.482421875}, {"start": 1487.45, "end": 1487.55, "word": " then", "probability": 0.60791015625}, {"start": 1487.55, "end": 1487.75, "word": " 3", "probability": 0.451416015625}, {"start": 1487.75, "end": 1488.15, "word": " border,", "probability": 0.391357421875}, {"start": 1488.39, "end": 1488.73, "word": " it", "probability": 0.85498046875}, {"start": 1488.73, "end": 1488.89, "word": " will", "probability": 0.47998046875}, {"start": 1488.89, "end": 1488.89, "word": " not", "probability": 0.810546875}, {"start": 1488.89, "end": 1489.13, "word": " make", "probability": 0.849609375}, {"start": 1489.13, "end": 1489.13, "word": " a", "probability": 0.857421875}, {"start": 1489.13, "end": 1489.25, "word": " difference.", "probability": 0.8544921875}, {"start": 1490.27, "end": 1490.49, "word": " It", "probability": 0.389892578125}, {"start": 1490.49, "end": 1491.63, "word": " will", "probability": 0.480224609375}, {"start": 1491.63, "end": 1491.79, "word": " only", "probability": 0.27294921875}, {"start": 1491.79, "end": 1494.77, "word": " execute", "probability": 0.568359375}, {"start": 1494.77, "end": 1495.03, "word": " this", "probability": 0.65576171875}, {"start": 1495.03, "end": 1495.25, "word": " before", "probability": 0.38623046875}, {"start": 1495.25, "end": 1495.51, "word": " this", "probability": 0.7216796875}, {"start": 1495.51, "end": 1495.81, "word": " code.", "probability": 0.8740234375}, {"start": 1496.49, "end": 1496.91, "word": " But", "probability": 0.54345703125}, {"start": 1496.91, "end": 1497.01, "word": " in", "probability": 0.52783203125}, {"start": 1497.01, "end": 1497.07, "word": " the", "probability": 0.8330078125}, {"start": 1497.07, "end": 1497.23, "word": " end,", "probability": 0.85595703125}, {"start": 1497.35, "end": 1497.41, "word": " it", "probability": 0.802734375}, {"start": 1497.41, "end": 1497.49, "word": " will", "probability": 0.6455078125}, {"start": 1497.49, "end": 1497.69, "word": " execute", "probability": 0.90185546875}, {"start": 1497.69, "end": 1498.15, "word": " both", "probability": 0.77197265625}, {"start": 1498.15, "end": 1499.23, "word": " together.", "probability": 0.521484375}, {"start": 1500.05, "end": 1500.49, "word": " So", "probability": 0.39990234375}, {"start": 1500.49, "end": 1500.63, "word": " the", "probability": 0.544921875}, {"start": 1500.63, "end": 1500.69, "word": " required", "probability": 0.69091796875}, {"start": 1500.69, "end": 1501.39, "word": " code", "probability": 0.9443359375}, {"start": 1501.39, "end": 1502.01, "word": " is", "probability": 0.81005859375}, {"start": 1502.01, "end": 1502.41, "word": " the", "probability": 0.8115234375}, {"start": 1502.41, "end": 1502.41, "word": " same", "probability": 0.87744140625}, {"start": 1502.41, "end": 1502.85, "word": " example", "probability": 0.7001953125}, {"start": 1502.85, "end": 1502.95, "word": " that", "probability": 0.56103515625}, {"start": 1502.95, "end": 1503.03, "word": " was", "probability": 0.64404296875}, {"start": 1503.03, "end": 1503.23, "word": " explained", "probability": 0.60791015625}, {"start": 1503.23, "end": 1503.41, "word": " in", "probability": 0.92431640625}, {"start": 1503.41, "end": 1503.47, "word": " the", "probability": 0.86083984375}, {"start": 1503.47, "end": 1503.83, "word": " lecture,", "probability": 0.90478515625}, {"start": 1504.47, "end": 1504.83, "word": " but", "probability": 0.8408203125}, {"start": 1504.83, "end": 1504.93, "word": " it", "probability": 0.1939697265625}, {"start": 1504.93, "end": 1505.23, "word": " is", "probability": 0.412109375}, {"start": 1505.23, "end": 1505.23, "word": " added", "probability": 0.7138671875}, {"start": 1505.23, "end": 1505.39, "word": " to", "probability": 0.33935546875}, {"start": 1505.39, "end": 1505.45, "word": " it.", "probability": 0.91943359375}], "temperature": 1.0}, {"id": 60, "seek": 152629, "start": 1506.53, "end": 1526.29, "text": "To create a new decorator that executes the process of solid and to create an example of any shape and put the properties in it. Solid with border. And the code that I used in the lecture is available on the model. You can download it, edit it and upload the code again.", "tokens": [13342, 1884, 257, 777, 7919, 1639, 300, 4454, 1819, 264, 1399, 295, 5100, 293, 281, 1884, 364, 1365, 295, 604, 3909, 293, 829, 264, 7221, 294, 309, 13, 26664, 365, 7838, 13, 400, 264, 3089, 300, 286, 1143, 294, 264, 7991, 307, 2435, 322, 264, 2316, 13, 509, 393, 5484, 309, 11, 8129, 309, 293, 6580, 264, 3089, 797, 13], "avg_logprob": -0.7443647697323659, "compression_ratio": 1.5517241379310345, "no_speech_prob": 1.531839370727539e-05, "words": [{"start": 1506.53, "end": 1507.09, "word": "To", "probability": 0.05804443359375}, {"start": 1507.09, "end": 1507.45, "word": " create", "probability": 0.364990234375}, {"start": 1507.45, "end": 1508.01, "word": " a", "probability": 0.85400390625}, {"start": 1508.01, "end": 1508.01, "word": " new", "probability": 0.7607421875}, {"start": 1508.01, "end": 1508.57, "word": " decorator", "probability": 0.945556640625}, {"start": 1508.57, "end": 1509.03, "word": " that", "probability": 0.46044921875}, {"start": 1509.03, "end": 1509.33, "word": " executes", "probability": 0.549102783203125}, {"start": 1509.33, "end": 1509.49, "word": " the", "probability": 0.53955078125}, {"start": 1509.49, "end": 1509.63, "word": " process", "probability": 0.058929443359375}, {"start": 1509.63, "end": 1510.47, "word": " of", "probability": 0.91064453125}, {"start": 1510.47, "end": 1510.69, "word": " solid", "probability": 0.6240234375}, {"start": 1510.69, "end": 1511.43, "word": " and", "probability": 0.353271484375}, {"start": 1511.43, "end": 1511.61, "word": " to", "probability": 0.205322265625}, {"start": 1511.61, "end": 1511.83, "word": " create", "probability": 0.421630859375}, {"start": 1511.83, "end": 1511.95, "word": " an", "probability": 0.2103271484375}, {"start": 1511.95, "end": 1512.31, "word": " example", "probability": 0.6337890625}, {"start": 1512.31, "end": 1512.61, "word": " of", "probability": 0.1722412109375}, {"start": 1512.61, "end": 1513.11, "word": " any", "probability": 0.431396484375}, {"start": 1513.11, "end": 1513.45, "word": " shape", "probability": 0.55322265625}, {"start": 1513.45, "end": 1513.59, "word": " and", "probability": 0.50439453125}, {"start": 1513.59, "end": 1513.85, "word": " put", "probability": 0.302978515625}, {"start": 1513.85, "end": 1514.73, "word": " the", "probability": 0.1947021484375}, {"start": 1514.73, "end": 1515.03, "word": " properties", "probability": 0.263916015625}, {"start": 1515.03, "end": 1515.25, "word": " in", "probability": 0.364013671875}, {"start": 1515.25, "end": 1515.29, "word": " it.", "probability": 0.82373046875}, {"start": 1515.33, "end": 1515.79, "word": " Solid", "probability": 0.308349609375}, {"start": 1515.79, "end": 1516.09, "word": " with", "probability": 0.49609375}, {"start": 1516.09, "end": 1517.29, "word": " border.", "probability": 0.62451171875}, {"start": 1517.85, "end": 1518.41, "word": " And", "probability": 0.239990234375}, {"start": 1518.41, "end": 1518.55, "word": " the", "probability": 0.79443359375}, {"start": 1518.55, "end": 1518.73, "word": " code", "probability": 0.76220703125}, {"start": 1518.73, "end": 1519.61, "word": " that", "probability": 0.301025390625}, {"start": 1519.61, "end": 1520.73, "word": " I", "probability": 0.8505859375}, {"start": 1520.73, "end": 1521.41, "word": " used", "probability": 0.27197265625}, {"start": 1521.41, "end": 1521.55, "word": " in", "probability": 0.63232421875}, {"start": 1521.55, "end": 1521.67, "word": " the", "probability": 0.77978515625}, {"start": 1521.67, "end": 1522.05, "word": " lecture", "probability": 0.6982421875}, {"start": 1522.05, "end": 1522.21, "word": " is", "probability": 0.720703125}, {"start": 1522.21, "end": 1522.41, "word": " available", "probability": 0.1904296875}, {"start": 1522.41, "end": 1522.57, "word": " on", "probability": 0.767578125}, {"start": 1522.57, "end": 1522.69, "word": " the", "probability": 0.46875}, {"start": 1522.69, "end": 1522.93, "word": " model.", "probability": 0.43505859375}, {"start": 1523.23, "end": 1523.41, "word": " You", "probability": 0.85888671875}, {"start": 1523.41, "end": 1523.61, "word": " can", "probability": 0.9130859375}, {"start": 1523.61, "end": 1523.91, "word": " download", "probability": 0.8681640625}, {"start": 1523.91, "end": 1524.05, "word": " it,", "probability": 0.7158203125}, {"start": 1524.09, "end": 1524.35, "word": " edit", "probability": 0.341796875}, {"start": 1524.35, "end": 1524.69, "word": " it", "probability": 0.9228515625}, {"start": 1524.69, "end": 1524.85, "word": " and", "probability": 0.68505859375}, {"start": 1524.85, "end": 1525.05, "word": " upload", "probability": 0.39990234375}, {"start": 1525.05, "end": 1525.19, "word": " the", "probability": 0.64697265625}, {"start": 1525.19, "end": 1525.51, "word": " code", "probability": 0.72119140625}, {"start": 1525.51, "end": 1526.29, "word": " again.", "probability": 0.68798828125}], "temperature": 1.0}, {"id": 61, "seek": 154322, "start": 1528.86, "end": 1543.22, "text": "Okay guys, because this code, I will explain to you how it looks related to the diagram that we saw a while ago For example, this code TextView has a method called what? Draw Because this fancy border extends", "tokens": [8297, 1074, 11, 570, 341, 3089, 11, 286, 486, 2903, 281, 291, 577, 309, 1542, 4077, 281, 264, 10686, 300, 321, 1866, 257, 1339, 2057, 1171, 1365, 11, 341, 3089, 18643, 30203, 575, 257, 3170, 1219, 437, 30, 20386, 1436, 341, 10247, 7838, 26448], "avg_logprob": -0.6704861164093018, "compression_ratio": 1.3594771241830066, "no_speech_prob": 9.655952453613281e-06, "words": [{"start": 1528.8600000000001, "end": 1529.38, "word": "Okay", "probability": 0.2042236328125}, {"start": 1529.38, "end": 1529.9, "word": " guys,", "probability": 0.471435546875}, {"start": 1530.16, "end": 1530.28, "word": " because", "probability": 0.326171875}, {"start": 1530.28, "end": 1530.48, "word": " this", "probability": 0.828125}, {"start": 1530.48, "end": 1530.94, "word": " code,", "probability": 0.76611328125}, {"start": 1531.44, "end": 1531.8, "word": " I", "probability": 0.391845703125}, {"start": 1531.8, "end": 1531.92, "word": " will", "probability": 0.26171875}, {"start": 1531.92, "end": 1532.18, "word": " explain", "probability": 0.64404296875}, {"start": 1532.18, "end": 1532.3, "word": " to", "probability": 0.35009765625}, {"start": 1532.3, "end": 1532.48, "word": " you", "probability": 0.9658203125}, {"start": 1532.48, "end": 1532.64, "word": " how", "probability": 0.62744140625}, {"start": 1532.64, "end": 1532.68, "word": " it", "probability": 0.10498046875}, {"start": 1532.68, "end": 1532.96, "word": " looks", "probability": 0.484375}, {"start": 1532.96, "end": 1534.7, "word": " related", "probability": 0.15087890625}, {"start": 1534.7, "end": 1534.9, "word": " to", "probability": 0.927734375}, {"start": 1534.9, "end": 1535.0, "word": " the", "probability": 0.52392578125}, {"start": 1535.0, "end": 1535.42, "word": " diagram", "probability": 0.32421875}, {"start": 1535.42, "end": 1535.62, "word": " that", "probability": 0.44677734375}, {"start": 1535.62, "end": 1535.64, "word": " we", "probability": 0.890625}, {"start": 1535.64, "end": 1535.86, "word": " saw", "probability": 0.599609375}, {"start": 1535.86, "end": 1536.08, "word": " a", "probability": 0.2607421875}, {"start": 1536.08, "end": 1536.34, "word": " while", "probability": 0.6123046875}, {"start": 1536.34, "end": 1536.68, "word": " ago", "probability": 0.83935546875}, {"start": 1536.68, "end": 1537.16, "word": " For", "probability": 0.38330078125}, {"start": 1537.16, "end": 1537.44, "word": " example,", "probability": 0.916015625}, {"start": 1537.54, "end": 1537.68, "word": " this", "probability": 0.77587890625}, {"start": 1537.68, "end": 1537.94, "word": " code", "probability": 0.257568359375}, {"start": 1537.94, "end": 1538.5, "word": " TextView", "probability": 0.6754150390625}, {"start": 1538.5, "end": 1538.7, "word": " has", "probability": 0.78271484375}, {"start": 1538.7, "end": 1538.8, "word": " a", "probability": 0.6357421875}, {"start": 1538.8, "end": 1539.04, "word": " method", "probability": 0.77880859375}, {"start": 1539.04, "end": 1539.28, "word": " called", "probability": 0.51708984375}, {"start": 1539.28, "end": 1539.28, "word": " what?", "probability": 0.1396484375}, {"start": 1539.88, "end": 1540.28, "word": " Draw", "probability": 0.6943359375}, {"start": 1540.28, "end": 1541.44, "word": " Because", "probability": 0.310302734375}, {"start": 1541.44, "end": 1541.76, "word": " this", "probability": 0.86962890625}, {"start": 1541.76, "end": 1542.2, "word": " fancy", "probability": 0.95947265625}, {"start": 1542.2, "end": 1542.6, "word": " border", "probability": 0.83447265625}, {"start": 1542.6, "end": 1543.22, "word": " extends", "probability": 0.87109375}], "temperature": 1.0}, {"id": 62, "seek": 157257, "start": 1544.23, "end": 1572.57, "text": "Decorator, it doesn't look like I'm classed as decorator, but it always goes to fancy border, one of them. This is for sure, there's a reference to whom? To a component, and it takes an object from the component, and then to draw it actually, I go and execute component.draw, and then I tell it code to draw fancy border. So this is the additional code. Okay? So if I want to add fancy border to TextView, this is TextView, and then it makes fancy border that takes what?", "tokens": [35, 3045, 284, 1639, 11, 309, 1177, 380, 574, 411, 286, 478, 1508, 292, 382, 7919, 1639, 11, 457, 309, 1009, 1709, 281, 10247, 7838, 11, 472, 295, 552, 13, 639, 307, 337, 988, 11, 456, 311, 257, 6408, 281, 7101, 30, 1407, 257, 6542, 11, 293, 309, 2516, 364, 2657, 490, 264, 6542, 11, 293, 550, 281, 2642, 309, 767, 11, 286, 352, 293, 14483, 6542, 13, 48848, 11, 293, 550, 286, 980, 309, 3089, 281, 2642, 10247, 7838, 13, 407, 341, 307, 264, 4497, 3089, 13, 1033, 30, 407, 498, 286, 528, 281, 909, 10247, 7838, 281, 18643, 30203, 11, 341, 307, 18643, 30203, 11, 293, 550, 309, 1669, 10247, 7838, 300, 2516, 437, 30], "avg_logprob": -0.5534957334146662, "compression_ratio": 1.83984375, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 1544.23, "end": 1544.59, "word": "Decorator,", "probability": 0.7227859497070312}, {"start": 1544.63, "end": 1544.71, "word": " it", "probability": 0.325439453125}, {"start": 1544.71, "end": 1544.77, "word": " doesn't", "probability": 0.606201171875}, {"start": 1544.77, "end": 1544.97, "word": " look", "probability": 0.40380859375}, {"start": 1544.97, "end": 1545.11, "word": " like", "probability": 0.82861328125}, {"start": 1545.11, "end": 1545.23, "word": " I'm", "probability": 0.666015625}, {"start": 1545.23, "end": 1545.55, "word": " classed", "probability": 0.549560546875}, {"start": 1545.55, "end": 1545.59, "word": " as", "probability": 0.419921875}, {"start": 1545.59, "end": 1546.05, "word": " decorator,", "probability": 0.857666015625}, {"start": 1546.15, "end": 1546.33, "word": " but", "probability": 0.79443359375}, {"start": 1546.33, "end": 1546.89, "word": " it", "probability": 0.2060546875}, {"start": 1546.89, "end": 1547.07, "word": " always", "probability": 0.08013916015625}, {"start": 1547.07, "end": 1547.23, "word": " goes", "probability": 0.4296875}, {"start": 1547.23, "end": 1547.51, "word": " to", "probability": 0.5576171875}, {"start": 1547.51, "end": 1548.17, "word": " fancy", "probability": 0.61474609375}, {"start": 1548.17, "end": 1548.45, "word": " border,", "probability": 0.73779296875}, {"start": 1548.49, "end": 1548.71, "word": " one", "probability": 0.6220703125}, {"start": 1548.71, "end": 1548.89, "word": " of", "probability": 0.95849609375}, {"start": 1548.89, "end": 1549.07, "word": " them.", "probability": 0.87744140625}, {"start": 1549.41, "end": 1549.65, "word": " This", "probability": 0.364990234375}, {"start": 1549.65, "end": 1549.71, "word": " is", "probability": 0.445068359375}, {"start": 1549.71, "end": 1550.03, "word": " for", "probability": 0.264892578125}, {"start": 1550.03, "end": 1550.03, "word": " sure,", "probability": 0.87158203125}, {"start": 1550.41, "end": 1550.93, "word": " there's", "probability": 0.5521240234375}, {"start": 1550.93, "end": 1551.01, "word": " a", "probability": 0.65283203125}, {"start": 1551.01, "end": 1551.39, "word": " reference", "probability": 0.8955078125}, {"start": 1551.39, "end": 1551.55, "word": " to", "probability": 0.489013671875}, {"start": 1551.55, "end": 1551.73, "word": " whom?", "probability": 0.60546875}, {"start": 1551.99, "end": 1552.27, "word": " To", "probability": 0.55419921875}, {"start": 1552.27, "end": 1552.43, "word": " a", "probability": 0.405029296875}, {"start": 1552.43, "end": 1552.73, "word": " component,", "probability": 0.79541015625}, {"start": 1552.91, "end": 1553.03, "word": " and", "probability": 0.262451171875}, {"start": 1553.03, "end": 1553.11, "word": " it", "probability": 0.352294921875}, {"start": 1553.11, "end": 1553.45, "word": " takes", "probability": 0.6572265625}, {"start": 1553.45, "end": 1553.55, "word": " an", "probability": 0.50341796875}, {"start": 1553.55, "end": 1553.73, "word": " object", "probability": 0.97119140625}, {"start": 1553.73, "end": 1553.91, "word": " from", "probability": 0.85546875}, {"start": 1553.91, "end": 1554.05, "word": " the", "probability": 0.66162109375}, {"start": 1554.05, "end": 1554.39, "word": " component,", "probability": 0.83154296875}, {"start": 1554.67, "end": 1554.93, "word": " and", "probability": 0.73974609375}, {"start": 1554.93, "end": 1555.15, "word": " then", "probability": 0.7724609375}, {"start": 1555.15, "end": 1555.31, "word": " to", "probability": 0.365234375}, {"start": 1555.31, "end": 1555.49, "word": " draw", "probability": 0.818359375}, {"start": 1555.49, "end": 1555.63, "word": " it", "probability": 0.64794921875}, {"start": 1555.63, "end": 1555.93, "word": " actually,", "probability": 0.2274169921875}, {"start": 1556.37, "end": 1556.75, "word": " I", "probability": 0.78662109375}, {"start": 1556.75, "end": 1556.87, "word": " go", "probability": 0.708984375}, {"start": 1556.87, "end": 1556.99, "word": " and", "probability": 0.62451171875}, {"start": 1556.99, "end": 1557.25, "word": " execute", "probability": 0.365478515625}, {"start": 1557.25, "end": 1557.79, "word": " component", "probability": 0.6640625}, {"start": 1557.79, "end": 1558.37, "word": ".draw,", "probability": 0.79541015625}, {"start": 1558.49, "end": 1558.59, "word": " and", "probability": 0.822265625}, {"start": 1558.59, "end": 1558.83, "word": " then", "probability": 0.80419921875}, {"start": 1558.83, "end": 1558.95, "word": " I", "probability": 0.78759765625}, {"start": 1558.95, "end": 1559.09, "word": " tell", "probability": 0.480224609375}, {"start": 1559.09, "end": 1559.23, "word": " it", "probability": 0.6875}, {"start": 1559.23, "end": 1559.59, "word": " code", "probability": 0.2607421875}, {"start": 1559.59, "end": 1559.77, "word": " to", "probability": 0.955078125}, {"start": 1559.77, "end": 1560.07, "word": " draw", "probability": 0.9091796875}, {"start": 1560.07, "end": 1561.31, "word": " fancy", "probability": 0.7734375}, {"start": 1561.31, "end": 1561.53, "word": " border.", "probability": 0.8203125}, {"start": 1561.61, "end": 1561.69, "word": " So", "probability": 0.31396484375}, {"start": 1561.69, "end": 1561.85, "word": " this", "probability": 0.69287109375}, {"start": 1561.85, "end": 1561.95, "word": " is", "probability": 0.92578125}, {"start": 1561.95, "end": 1561.97, "word": " the", "probability": 0.76220703125}, {"start": 1561.97, "end": 1561.97, "word": " additional", "probability": 0.5166015625}, {"start": 1561.97, "end": 1562.59, "word": " code.", "probability": 0.93994140625}, {"start": 1563.97, "end": 1564.19, "word": " Okay?", "probability": 0.257080078125}, {"start": 1566.55, "end": 1566.91, "word": " So", "probability": 0.1873779296875}, {"start": 1566.91, "end": 1567.03, "word": " if", "probability": 0.63232421875}, {"start": 1567.03, "end": 1567.23, "word": " I", "probability": 0.7529296875}, {"start": 1567.23, "end": 1567.33, "word": " want", "probability": 0.3671875}, {"start": 1567.33, "end": 1567.33, "word": " to", "probability": 0.9736328125}, {"start": 1567.33, "end": 1567.49, "word": " add", "probability": 0.69677734375}, {"start": 1567.49, "end": 1567.87, "word": " fancy", "probability": 0.6533203125}, {"start": 1567.87, "end": 1568.19, "word": " border", "probability": 0.84423828125}, {"start": 1568.19, "end": 1568.37, "word": " to", "probability": 0.66552734375}, {"start": 1568.37, "end": 1568.79, "word": " TextView,", "probability": 0.6278076171875}, {"start": 1568.85, "end": 1568.95, "word": " this", "probability": 0.339111328125}, {"start": 1568.95, "end": 1568.97, "word": " is", "probability": 0.8232421875}, {"start": 1568.97, "end": 1569.51, "word": " TextView,", "probability": 0.904052734375}, {"start": 1570.13, "end": 1570.29, "word": " and", "probability": 0.853515625}, {"start": 1570.29, "end": 1570.51, "word": " then", "probability": 0.7470703125}, {"start": 1570.51, "end": 1570.67, "word": " it", "probability": 0.72802734375}, {"start": 1570.67, "end": 1570.97, "word": " makes", "probability": 0.270263671875}, {"start": 1570.97, "end": 1571.55, "word": " fancy", "probability": 0.6279296875}, {"start": 1571.55, "end": 1571.89, "word": " border", "probability": 0.8427734375}, {"start": 1571.89, "end": 1572.09, "word": " that", "probability": 0.266357421875}, {"start": 1572.09, "end": 1572.27, "word": " takes", "probability": 0.79248046875}, {"start": 1572.27, "end": 1572.57, "word": " what?", "probability": 0.82275390625}], "temperature": 1.0}, {"id": 63, "seek": 158705, "start": 1573.63, "end": 1587.05, "text": "He wanted to add a horizontal scroll bar to it, so he created a new horizontal scroll bar and called it border data. This is almost the same idea that I did here, but I did it in one line and he did it in two or three lines.", "tokens": [5205, 1415, 281, 909, 257, 12750, 11369, 2159, 281, 309, 11, 370, 415, 2942, 257, 777, 12750, 11369, 2159, 293, 1219, 309, 7838, 1412, 13, 639, 307, 1920, 264, 912, 1558, 300, 286, 630, 510, 11, 457, 286, 630, 309, 294, 472, 1622, 293, 415, 630, 309, 294, 732, 420, 1045, 3876, 13], "avg_logprob": -0.45081019235981834, "compression_ratio": 1.6231884057971016, "no_speech_prob": 1.4007091522216797e-05, "words": [{"start": 1573.6299999999999, "end": 1574.07, "word": "He", "probability": 0.207275390625}, {"start": 1574.07, "end": 1574.37, "word": " wanted", "probability": 0.310546875}, {"start": 1574.37, "end": 1574.59, "word": " to", "probability": 0.94287109375}, {"start": 1574.59, "end": 1574.69, "word": " add", "probability": 0.72802734375}, {"start": 1574.69, "end": 1575.19, "word": " a", "probability": 0.339599609375}, {"start": 1575.19, "end": 1576.59, "word": " horizontal", "probability": 0.638671875}, {"start": 1576.59, "end": 1576.99, "word": " scroll", "probability": 0.96826171875}, {"start": 1576.99, "end": 1577.31, "word": " bar", "probability": 0.48681640625}, {"start": 1577.31, "end": 1577.31, "word": " to", "probability": 0.576171875}, {"start": 1577.31, "end": 1577.31, "word": " it,", "probability": 0.658203125}, {"start": 1577.51, "end": 1577.81, "word": " so", "probability": 0.344970703125}, {"start": 1577.81, "end": 1577.81, "word": " he", "probability": 0.904296875}, {"start": 1577.81, "end": 1578.01, "word": " created", "probability": 0.30078125}, {"start": 1578.01, "end": 1578.21, "word": " a", "probability": 0.91162109375}, {"start": 1578.21, "end": 1578.31, "word": " new", "probability": 0.71630859375}, {"start": 1578.31, "end": 1578.71, "word": " horizontal", "probability": 0.74267578125}, {"start": 1578.71, "end": 1579.05, "word": " scroll", "probability": 0.9560546875}, {"start": 1579.05, "end": 1579.27, "word": " bar", "probability": 0.859375}, {"start": 1579.27, "end": 1579.41, "word": " and", "probability": 0.68505859375}, {"start": 1579.41, "end": 1579.63, "word": " called", "probability": 0.07281494140625}, {"start": 1579.63, "end": 1579.87, "word": " it", "probability": 0.90283203125}, {"start": 1579.87, "end": 1580.13, "word": " border", "probability": 0.578125}, {"start": 1580.13, "end": 1581.65, "word": " data.", "probability": 0.63671875}, {"start": 1581.91, "end": 1582.35, "word": " This", "probability": 0.541015625}, {"start": 1582.35, "end": 1582.51, "word": " is", "probability": 0.88037109375}, {"start": 1582.51, "end": 1582.83, "word": " almost", "probability": 0.267333984375}, {"start": 1582.83, "end": 1582.99, "word": " the", "probability": 0.87158203125}, {"start": 1582.99, "end": 1583.17, "word": " same", "probability": 0.87744140625}, {"start": 1583.17, "end": 1583.49, "word": " idea", "probability": 0.70556640625}, {"start": 1583.49, "end": 1583.63, "word": " that", "probability": 0.4345703125}, {"start": 1583.63, "end": 1583.77, "word": " I", "probability": 0.96728515625}, {"start": 1583.77, "end": 1584.01, "word": " did", "probability": 0.403076171875}, {"start": 1584.01, "end": 1584.23, "word": " here,", "probability": 0.75634765625}, {"start": 1584.27, "end": 1584.39, "word": " but", "probability": 0.85986328125}, {"start": 1584.39, "end": 1584.49, "word": " I", "probability": 0.77392578125}, {"start": 1584.49, "end": 1584.67, "word": " did", "probability": 0.7939453125}, {"start": 1584.67, "end": 1584.77, "word": " it", "probability": 0.85205078125}, {"start": 1584.77, "end": 1584.79, "word": " in", "probability": 0.8720703125}, {"start": 1584.79, "end": 1585.03, "word": " one", "probability": 0.5791015625}, {"start": 1585.03, "end": 1585.03, "word": " line", "probability": 0.861328125}, {"start": 1585.03, "end": 1585.31, "word": " and", "probability": 0.487060546875}, {"start": 1585.31, "end": 1585.39, "word": " he", "probability": 0.92041015625}, {"start": 1585.39, "end": 1585.61, "word": " did", "probability": 0.78955078125}, {"start": 1585.61, "end": 1585.79, "word": " it", "probability": 0.8203125}, {"start": 1585.79, "end": 1586.33, "word": " in", "probability": 0.81298828125}, {"start": 1586.33, "end": 1586.47, "word": " two", "probability": 0.74267578125}, {"start": 1586.47, "end": 1586.67, "word": " or", "probability": 0.7490234375}, {"start": 1586.67, "end": 1587.05, "word": " three", "probability": 0.94091796875}, {"start": 1587.05, "end": 1587.05, "word": " lines.", "probability": 0.859375}], "temperature": 1.0}, {"id": 64, "seek": 161743, "start": 1589.99, "end": 1617.43, "text": "Okay? The second example, and I explained this in the previous lecture, I say to the decorator, for example, where are his applications in Java? We explained in the previous lecture about the input stream and output stream. Actually, I create a decorator that wraps another object to add additional functionality to it. Last time, we explained that in the output stream, there is a method that writes bytes. And this is not appropriate if I want to write a string. Okay? So, actually, we wrapped it in another object called PrintWriter.", "tokens": [8297, 30, 440, 1150, 1365, 11, 293, 286, 8825, 341, 294, 264, 3894, 7991, 11, 286, 584, 281, 264, 7919, 1639, 11, 337, 1365, 11, 689, 366, 702, 5821, 294, 10745, 30, 492, 8825, 294, 264, 3894, 7991, 466, 264, 4846, 4309, 293, 5598, 4309, 13, 5135, 11, 286, 1884, 257, 7919, 1639, 300, 25831, 1071, 2657, 281, 909, 4497, 14980, 281, 309, 13, 5264, 565, 11, 321, 8825, 300, 294, 264, 5598, 4309, 11, 456, 307, 257, 3170, 300, 13657, 36088, 13, 400, 341, 307, 406, 6854, 498, 286, 528, 281, 2464, 257, 6798, 13, 1033, 30, 407, 11, 767, 11, 321, 14226, 309, 294, 1071, 2657, 1219, 34439, 54, 81, 1681, 13], "avg_logprob": -0.41983695030212403, "compression_ratio": 1.867595818815331, "no_speech_prob": 5.185604095458984e-06, "words": [{"start": 1589.99, "end": 1590.45, "word": "Okay?", "probability": 0.083251953125}, {"start": 1590.45, "end": 1590.91, "word": " The", "probability": 0.32421875}, {"start": 1590.91, "end": 1590.91, "word": " second", "probability": 0.77880859375}, {"start": 1590.91, "end": 1591.71, "word": " example,", "probability": 0.9609375}, {"start": 1592.21, "end": 1592.31, "word": " and", "probability": 0.351318359375}, {"start": 1592.31, "end": 1592.47, "word": " I", "probability": 0.6484375}, {"start": 1592.47, "end": 1592.67, "word": " explained", "probability": 0.3798828125}, {"start": 1592.67, "end": 1592.71, "word": " this", "probability": 0.646484375}, {"start": 1592.71, "end": 1592.85, "word": " in", "probability": 0.83544921875}, {"start": 1592.85, "end": 1592.89, "word": " the", "probability": 0.646484375}, {"start": 1592.89, "end": 1593.51, "word": " previous", "probability": 0.49560546875}, {"start": 1593.51, "end": 1593.51, "word": " lecture,", "probability": 0.7861328125}, {"start": 1593.93, "end": 1594.17, "word": " I", "probability": 0.399169921875}, {"start": 1594.17, "end": 1594.31, "word": " say", "probability": 0.32763671875}, {"start": 1594.31, "end": 1594.41, "word": " to", "probability": 0.1549072265625}, {"start": 1594.41, "end": 1594.47, "word": " the", "probability": 0.74951171875}, {"start": 1594.47, "end": 1594.93, "word": " decorator,", "probability": 0.939453125}, {"start": 1595.05, "end": 1595.13, "word": " for", "probability": 0.83447265625}, {"start": 1595.13, "end": 1595.33, "word": " example,", "probability": 0.908203125}, {"start": 1595.49, "end": 1595.69, "word": " where", "probability": 0.6064453125}, {"start": 1595.69, "end": 1595.79, "word": " are", "probability": 0.6259765625}, {"start": 1595.79, "end": 1595.83, "word": " his", "probability": 0.6376953125}, {"start": 1595.83, "end": 1596.11, "word": " applications", "probability": 0.418212890625}, {"start": 1596.11, "end": 1596.35, "word": " in", "probability": 0.90966796875}, {"start": 1596.35, "end": 1596.77, "word": " Java?", "probability": 0.54443359375}, {"start": 1597.67, "end": 1597.81, "word": " We", "probability": 0.64208984375}, {"start": 1597.81, "end": 1597.99, "word": " explained", "probability": 0.6904296875}, {"start": 1597.99, "end": 1598.17, "word": " in", "probability": 0.6220703125}, {"start": 1598.17, "end": 1598.17, "word": " the", "probability": 0.8583984375}, {"start": 1598.17, "end": 1598.21, "word": " previous", "probability": 0.6630859375}, {"start": 1598.21, "end": 1598.61, "word": " lecture", "probability": 0.9130859375}, {"start": 1598.61, "end": 1598.91, "word": " about", "probability": 0.402587890625}, {"start": 1598.91, "end": 1599.01, "word": " the", "probability": 0.389892578125}, {"start": 1599.01, "end": 1599.31, "word": " input", "probability": 0.8720703125}, {"start": 1599.31, "end": 1599.85, "word": " stream", "probability": 0.8857421875}, {"start": 1599.85, "end": 1600.01, "word": " and", "probability": 0.9365234375}, {"start": 1600.01, "end": 1600.37, "word": " output", "probability": 0.63037109375}, {"start": 1600.37, "end": 1600.81, "word": " stream.", "probability": 0.94140625}, {"start": 1601.27, "end": 1601.61, "word": " Actually,", "probability": 0.388916015625}, {"start": 1601.71, "end": 1601.83, "word": " I", "probability": 0.94873046875}, {"start": 1601.83, "end": 1602.01, "word": " create", "probability": 0.30712890625}, {"start": 1602.01, "end": 1602.13, "word": " a", "probability": 0.96337890625}, {"start": 1602.13, "end": 1602.65, "word": " decorator", "probability": 0.990478515625}, {"start": 1602.65, "end": 1603.39, "word": " that", "probability": 0.60205078125}, {"start": 1603.39, "end": 1603.69, "word": " wraps", "probability": 0.630859375}, {"start": 1603.69, "end": 1604.29, "word": " another", "probability": 0.625}, {"start": 1604.29, "end": 1604.65, "word": " object", "probability": 0.978515625}, {"start": 1604.65, "end": 1604.99, "word": " to", "probability": 0.6181640625}, {"start": 1604.99, "end": 1605.27, "word": " add", "probability": 0.87548828125}, {"start": 1605.27, "end": 1605.53, "word": " additional", "probability": 0.497314453125}, {"start": 1605.53, "end": 1606.01, "word": " functionality", "probability": 0.89599609375}, {"start": 1606.01, "end": 1606.29, "word": " to", "probability": 0.5234375}, {"start": 1606.29, "end": 1606.45, "word": " it.", "probability": 0.94873046875}, {"start": 1607.07, "end": 1607.53, "word": " Last", "probability": 0.368896484375}, {"start": 1607.53, "end": 1607.87, "word": " time,", "probability": 0.8720703125}, {"start": 1608.05, "end": 1608.05, "word": " we", "probability": 0.87939453125}, {"start": 1608.05, "end": 1608.05, "word": " explained", "probability": 0.7958984375}, {"start": 1608.05, "end": 1608.19, "word": " that", "probability": 0.8662109375}, {"start": 1608.19, "end": 1608.21, "word": " in", "probability": 0.499267578125}, {"start": 1608.21, "end": 1608.31, "word": " the", "probability": 0.8212890625}, {"start": 1608.31, "end": 1608.55, "word": " output", "probability": 0.9248046875}, {"start": 1608.55, "end": 1608.99, "word": " stream,", "probability": 0.94970703125}, {"start": 1609.25, "end": 1609.51, "word": " there", "probability": 0.9111328125}, {"start": 1609.51, "end": 1609.51, "word": " is", "probability": 0.79443359375}, {"start": 1609.51, "end": 1609.57, "word": " a", "probability": 0.982421875}, {"start": 1609.57, "end": 1609.79, "word": " method", "probability": 0.9375}, {"start": 1609.79, "end": 1609.93, "word": " that", "probability": 0.84912109375}, {"start": 1609.93, "end": 1610.11, "word": " writes", "probability": 0.70556640625}, {"start": 1610.11, "end": 1610.53, "word": " bytes.", "probability": 0.9443359375}, {"start": 1610.85, "end": 1611.07, "word": " And", "probability": 0.548828125}, {"start": 1611.07, "end": 1611.23, "word": " this", "probability": 0.6845703125}, {"start": 1611.23, "end": 1611.29, "word": " is", "probability": 0.78955078125}, {"start": 1611.29, "end": 1611.39, "word": " not", "probability": 0.85107421875}, {"start": 1611.39, "end": 1611.71, "word": " appropriate", "probability": 0.398193359375}, {"start": 1611.71, "end": 1611.95, "word": " if", "probability": 0.37109375}, {"start": 1611.95, "end": 1612.07, "word": " I", "probability": 0.37841796875}, {"start": 1612.07, "end": 1612.21, "word": " want", "probability": 0.77294921875}, {"start": 1612.21, "end": 1612.27, "word": " to", "probability": 0.97216796875}, {"start": 1612.27, "end": 1612.37, "word": " write", "probability": 0.908203125}, {"start": 1612.37, "end": 1612.47, "word": " a", "probability": 0.73291015625}, {"start": 1612.47, "end": 1612.83, "word": " string.", "probability": 0.89892578125}, {"start": 1613.57, "end": 1613.81, "word": " Okay?", "probability": 0.56884765625}, {"start": 1614.03, "end": 1614.29, "word": " So,", "probability": 0.8525390625}, {"start": 1614.39, "end": 1614.55, "word": " actually,", "probability": 0.400634765625}, {"start": 1614.63, "end": 1614.99, "word": " we", "probability": 0.91552734375}, {"start": 1614.99, "end": 1614.99, "word": " wrapped", "probability": 0.6640625}, {"start": 1614.99, "end": 1615.37, "word": " it", "probability": 0.53271484375}, {"start": 1615.37, "end": 1615.43, "word": " in", "probability": 0.83447265625}, {"start": 1615.43, "end": 1615.49, "word": " another", "probability": 0.8310546875}, {"start": 1615.49, "end": 1616.17, "word": " object", "probability": 0.9853515625}, {"start": 1616.17, "end": 1616.59, "word": " called", "probability": 0.63134765625}, {"start": 1616.59, "end": 1617.43, "word": " PrintWriter.", "probability": 0.7667236328125}], "temperature": 1.0}, {"id": 65, "seek": 163066, "start": 1618.36, "end": 1630.66, "text": "It takes an object of type FileOutputString And in PrintWriter, we added an additional method which is Println() Which actually takes a string, converts it into bytes and calls writeBytes() from the inner object", "tokens": [3522, 2516, 364, 2657, 295, 2010, 26196, 28353, 2582, 4520, 2937, 400, 294, 34439, 54, 81, 1681, 11, 321, 3869, 364, 4497, 3170, 597, 307, 34439, 75, 77, 45191, 3013, 767, 2516, 257, 6798, 11, 38874, 309, 666, 36088, 293, 5498, 2464, 33, 43673, 45191, 490, 264, 7284, 2657], "avg_logprob": -0.5593750107288361, "compression_ratio": 1.37012987012987, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1618.36, "end": 1618.52, "word": "It", "probability": 0.28857421875}, {"start": 1618.52, "end": 1618.86, "word": " takes", "probability": 0.471435546875}, {"start": 1618.86, "end": 1619.04, "word": " an", "probability": 0.36572265625}, {"start": 1619.04, "end": 1619.24, "word": " object", "probability": 0.93310546875}, {"start": 1619.24, "end": 1619.34, "word": " of", "probability": 0.328125}, {"start": 1619.34, "end": 1619.54, "word": " type", "probability": 0.32373046875}, {"start": 1619.54, "end": 1620.44, "word": " FileOutputString", "probability": 0.7615234375}, {"start": 1620.44, "end": 1621.1, "word": " And", "probability": 0.31201171875}, {"start": 1621.1, "end": 1621.18, "word": " in", "probability": 0.6328125}, {"start": 1621.18, "end": 1621.82, "word": " PrintWriter,", "probability": 0.7640380859375}, {"start": 1621.88, "end": 1621.9, "word": " we", "probability": 0.6728515625}, {"start": 1621.9, "end": 1622.04, "word": " added", "probability": 0.61962890625}, {"start": 1622.04, "end": 1622.18, "word": " an", "probability": 0.7021484375}, {"start": 1622.18, "end": 1622.18, "word": " additional", "probability": 0.54736328125}, {"start": 1622.18, "end": 1622.82, "word": " method", "probability": 0.9208984375}, {"start": 1622.82, "end": 1623.0, "word": " which", "probability": 0.350341796875}, {"start": 1623.0, "end": 1623.16, "word": " is", "probability": 0.87890625}, {"start": 1623.16, "end": 1624.04, "word": " Println", "probability": 0.6263834635416666}, {"start": 1624.04, "end": 1624.66, "word": "()", "probability": 0.5029296875}, {"start": 1624.66, "end": 1624.94, "word": " Which", "probability": 0.28955078125}, {"start": 1624.94, "end": 1625.5, "word": " actually", "probability": 0.419677734375}, {"start": 1625.5, "end": 1625.94, "word": " takes", "probability": 0.77978515625}, {"start": 1625.94, "end": 1626.08, "word": " a", "probability": 0.491455078125}, {"start": 1626.08, "end": 1626.48, "word": " string,", "probability": 0.73193359375}, {"start": 1627.18, "end": 1627.4, "word": " converts", "probability": 0.53759765625}, {"start": 1627.4, "end": 1627.54, "word": " it", "probability": 0.935546875}, {"start": 1627.54, "end": 1627.62, "word": " into", "probability": 0.4951171875}, {"start": 1627.62, "end": 1627.96, "word": " bytes", "probability": 0.8955078125}, {"start": 1627.96, "end": 1628.1, "word": " and", "probability": 0.5419921875}, {"start": 1628.1, "end": 1628.6, "word": " calls", "probability": 0.268798828125}, {"start": 1628.6, "end": 1629.92, "word": " writeBytes", "probability": 0.612548828125}, {"start": 1629.92, "end": 1630.12, "word": "()", "probability": 0.31689453125}, {"start": 1630.12, "end": 1630.26, "word": " from", "probability": 0.576171875}, {"start": 1630.26, "end": 1630.34, "word": " the", "probability": 0.78662109375}, {"start": 1630.34, "end": 1630.38, "word": " inner", "probability": 0.35498046875}, {"start": 1630.38, "end": 1630.66, "word": " object", "probability": 0.9228515625}], "temperature": 1.0}, {"id": 66, "seek": 165495, "start": 1631.95, "end": 1654.95, "text": " So when you used to stock up on files and create an out of stream file and wrap it with a print writer or an out of stream object and wrap it with an out of stream file and wrap it with an out of stream object, you were actually implementing the property of the decorator, wrapping objects inside objects to add additional functionality to help you in writing or reading objects. Okay, so this is what we talked about last time.", "tokens": [407, 562, 291, 1143, 281, 4127, 493, 322, 7098, 293, 1884, 364, 484, 295, 4309, 3991, 293, 7019, 309, 365, 257, 4482, 9936, 420, 364, 484, 295, 4309, 2657, 293, 7019, 309, 365, 364, 484, 295, 4309, 3991, 293, 7019, 309, 365, 364, 484, 295, 4309, 2657, 11, 291, 645, 767, 18114, 264, 4707, 295, 264, 7919, 1639, 11, 21993, 6565, 1854, 6565, 281, 909, 4497, 14980, 281, 854, 291, 294, 3579, 420, 3760, 6565, 13, 1033, 11, 370, 341, 307, 437, 321, 2825, 466, 1036, 565, 13], "avg_logprob": -0.49894665064436666, "compression_ratio": 1.9589041095890412, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1631.95, "end": 1632.17, "word": " So", "probability": 0.309814453125}, {"start": 1632.17, "end": 1632.57, "word": " when", "probability": 0.442138671875}, {"start": 1632.57, "end": 1633.19, "word": " you", "probability": 0.923828125}, {"start": 1633.19, "end": 1633.31, "word": " used", "probability": 0.0697021484375}, {"start": 1633.31, "end": 1633.31, "word": " to", "probability": 0.9296875}, {"start": 1633.31, "end": 1633.45, "word": " stock", "probability": 0.28759765625}, {"start": 1633.45, "end": 1633.61, "word": " up", "probability": 0.317138671875}, {"start": 1633.61, "end": 1633.75, "word": " on", "probability": 0.84033203125}, {"start": 1633.75, "end": 1634.15, "word": " files", "probability": 0.72021484375}, {"start": 1634.15, "end": 1634.29, "word": " and", "probability": 0.6279296875}, {"start": 1634.29, "end": 1634.55, "word": " create", "probability": 0.40380859375}, {"start": 1634.55, "end": 1634.85, "word": " an", "probability": 0.2156982421875}, {"start": 1634.85, "end": 1634.97, "word": " out", "probability": 0.453369140625}, {"start": 1634.97, "end": 1635.11, "word": " of", "probability": 0.76025390625}, {"start": 1635.11, "end": 1635.31, "word": " stream", "probability": 0.9033203125}, {"start": 1635.31, "end": 1635.31, "word": " file", "probability": 0.779296875}, {"start": 1635.31, "end": 1635.45, "word": " and", "probability": 0.73046875}, {"start": 1635.45, "end": 1635.67, "word": " wrap", "probability": 0.5361328125}, {"start": 1635.67, "end": 1635.81, "word": " it", "probability": 0.83740234375}, {"start": 1635.81, "end": 1635.83, "word": " with", "probability": 0.55615234375}, {"start": 1635.83, "end": 1635.89, "word": " a", "probability": 0.260498046875}, {"start": 1635.89, "end": 1636.03, "word": " print", "probability": 0.82958984375}, {"start": 1636.03, "end": 1636.41, "word": " writer", "probability": 0.79296875}, {"start": 1636.41, "end": 1636.63, "word": " or", "probability": 0.475341796875}, {"start": 1636.63, "end": 1637.07, "word": " an", "probability": 0.51171875}, {"start": 1637.07, "end": 1637.57, "word": " out", "probability": 0.59375}, {"start": 1637.57, "end": 1637.73, "word": " of", "probability": 0.947265625}, {"start": 1637.73, "end": 1637.93, "word": " stream", "probability": 0.9443359375}, {"start": 1637.93, "end": 1637.93, "word": " object", "probability": 0.65625}, {"start": 1637.93, "end": 1638.03, "word": " and", "probability": 0.6416015625}, {"start": 1638.03, "end": 1638.23, "word": " wrap", "probability": 0.7705078125}, {"start": 1638.23, "end": 1638.27, "word": " it", "probability": 0.65869140625}, {"start": 1638.27, "end": 1638.67, "word": " with", "probability": 0.77783203125}, {"start": 1638.67, "end": 1638.67, "word": " an", "probability": 0.6318359375}, {"start": 1638.67, "end": 1638.67, "word": " out", "probability": 0.87939453125}, {"start": 1638.67, "end": 1638.67, "word": " of", "probability": 0.95849609375}, {"start": 1638.67, "end": 1638.67, "word": " stream", "probability": 0.9501953125}, {"start": 1638.67, "end": 1638.87, "word": " file", "probability": 0.69775390625}, {"start": 1638.87, "end": 1639.37, "word": " and", "probability": 0.36328125}, {"start": 1639.37, "end": 1639.61, "word": " wrap", "probability": 0.76708984375}, {"start": 1639.61, "end": 1639.67, "word": " it", "probability": 0.93310546875}, {"start": 1639.67, "end": 1639.77, "word": " with", "probability": 0.89453125}, {"start": 1639.77, "end": 1639.85, "word": " an", "probability": 0.9228515625}, {"start": 1639.85, "end": 1640.19, "word": " out", "probability": 0.9091796875}, {"start": 1640.19, "end": 1640.37, "word": " of", "probability": 0.97119140625}, {"start": 1640.37, "end": 1640.59, "word": " stream", "probability": 0.9560546875}, {"start": 1640.59, "end": 1640.59, "word": " object,", "probability": 0.95458984375}, {"start": 1640.69, "end": 1641.01, "word": " you", "probability": 0.873046875}, {"start": 1641.01, "end": 1641.01, "word": " were", "probability": 0.4072265625}, {"start": 1641.01, "end": 1641.31, "word": " actually", "probability": 0.71826171875}, {"start": 1641.31, "end": 1641.77, "word": " implementing", "probability": 0.1263427734375}, {"start": 1641.77, "end": 1641.85, "word": " the", "probability": 0.8173828125}, {"start": 1641.85, "end": 1642.19, "word": " property", "probability": 0.2120361328125}, {"start": 1642.19, "end": 1643.07, "word": " of", "probability": 0.951171875}, {"start": 1643.07, "end": 1643.17, "word": " the", "probability": 0.77294921875}, {"start": 1643.17, "end": 1643.67, "word": " decorator,", "probability": 0.943359375}, {"start": 1644.09, "end": 1644.37, "word": " wrapping", "probability": 0.453857421875}, {"start": 1644.37, "end": 1644.79, "word": " objects", "probability": 0.94384765625}, {"start": 1644.79, "end": 1645.03, "word": " inside", "probability": 0.6494140625}, {"start": 1645.03, "end": 1645.37, "word": " objects", "probability": 0.384033203125}, {"start": 1645.37, "end": 1645.85, "word": " to", "probability": 0.6064453125}, {"start": 1645.85, "end": 1646.11, "word": " add", "probability": 0.87890625}, {"start": 1646.11, "end": 1647.09, "word": " additional", "probability": 0.322021484375}, {"start": 1647.09, "end": 1647.09, "word": " functionality", "probability": 0.85400390625}, {"start": 1647.09, "end": 1647.87, "word": " to", "probability": 0.52490234375}, {"start": 1647.87, "end": 1648.09, "word": " help", "probability": 0.75732421875}, {"start": 1648.09, "end": 1648.29, "word": " you", "probability": 0.9287109375}, {"start": 1648.29, "end": 1648.37, "word": " in", "probability": 0.284912109375}, {"start": 1648.37, "end": 1648.91, "word": " writing", "probability": 0.87744140625}, {"start": 1648.91, "end": 1649.21, "word": " or", "probability": 0.8193359375}, {"start": 1649.21, "end": 1649.59, "word": " reading", "probability": 0.96240234375}, {"start": 1649.59, "end": 1651.07, "word": " objects.", "probability": 0.669921875}, {"start": 1653.07, "end": 1653.51, "word": " Okay,", "probability": 0.3544921875}, {"start": 1653.63, "end": 1653.71, "word": " so", "probability": 0.59765625}, {"start": 1653.71, "end": 1653.85, "word": " this", "probability": 0.58837890625}, {"start": 1653.85, "end": 1653.85, "word": " is", "probability": 0.78173828125}, {"start": 1653.85, "end": 1653.95, "word": " what", "probability": 0.89013671875}, {"start": 1653.95, "end": 1653.95, "word": " we", "probability": 0.8857421875}, {"start": 1653.95, "end": 1654.15, "word": " talked", "probability": 0.10260009765625}, {"start": 1654.15, "end": 1654.27, "word": " about", "probability": 0.908203125}, {"start": 1654.27, "end": 1654.43, "word": " last", "probability": 0.75732421875}, {"start": 1654.43, "end": 1654.95, "word": " time.", "probability": 0.86328125}], "temperature": 1.0}, {"id": 67, "seek": 168441, "start": 1659.47, "end": 1684.41, "text": "The last point is a quick comparison between the decorator pattern and inheritance or subclassing In the decorator used to extend the functionality of a particular object But in the inheritance used to extend the functionality of a class of objects You do here extend the class, you add a new code But here you add the functionality of the existing object", "tokens": [2278, 1036, 935, 307, 257, 1702, 9660, 1296, 264, 7919, 1639, 5102, 293, 32122, 420, 1422, 11665, 278, 682, 264, 7919, 1639, 1143, 281, 10101, 264, 14980, 295, 257, 1729, 2657, 583, 294, 264, 32122, 1143, 281, 10101, 264, 14980, 295, 257, 1508, 295, 6565, 509, 360, 510, 10101, 264, 1508, 11, 291, 909, 257, 777, 3089, 583, 510, 291, 909, 264, 14980, 295, 264, 6741, 2657], "avg_logprob": -0.3570772199069752, "compression_ratio": 1.9398907103825136, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1659.47, "end": 1660.17, "word": "The", "probability": 0.1328125}, {"start": 1660.17, "end": 1660.51, "word": " last", "probability": 0.8154296875}, {"start": 1660.51, "end": 1660.85, "word": " point", "probability": 0.8642578125}, {"start": 1660.85, "end": 1661.39, "word": " is", "probability": 0.619140625}, {"start": 1661.39, "end": 1661.53, "word": " a", "probability": 0.64990234375}, {"start": 1661.53, "end": 1662.19, "word": " quick", "probability": 0.62109375}, {"start": 1662.19, "end": 1662.19, "word": " comparison", "probability": 0.88525390625}, {"start": 1662.19, "end": 1663.21, "word": " between", "probability": 0.853515625}, {"start": 1663.21, "end": 1663.45, "word": " the", "probability": 0.52001953125}, {"start": 1663.45, "end": 1663.91, "word": " decorator", "probability": 0.90185546875}, {"start": 1663.91, "end": 1664.31, "word": " pattern", "probability": 0.82958984375}, {"start": 1664.31, "end": 1665.17, "word": " and", "probability": 0.888671875}, {"start": 1665.17, "end": 1665.65, "word": " inheritance", "probability": 0.6064453125}, {"start": 1665.65, "end": 1665.93, "word": " or", "probability": 0.6162109375}, {"start": 1665.93, "end": 1666.75, "word": " subclassing", "probability": 0.841796875}, {"start": 1666.75, "end": 1668.01, "word": " In", "probability": 0.218017578125}, {"start": 1668.01, "end": 1668.89, "word": " the", "probability": 0.505859375}, {"start": 1668.89, "end": 1669.43, "word": " decorator", "probability": 0.953857421875}, {"start": 1669.43, "end": 1669.81, "word": " used", "probability": 0.248779296875}, {"start": 1669.81, "end": 1669.99, "word": " to", "probability": 0.9638671875}, {"start": 1669.99, "end": 1670.37, "word": " extend", "probability": 0.9365234375}, {"start": 1670.37, "end": 1670.55, "word": " the", "probability": 0.87890625}, {"start": 1670.55, "end": 1670.97, "word": " functionality", "probability": 0.89453125}, {"start": 1670.97, "end": 1671.23, "word": " of", "probability": 0.9658203125}, {"start": 1671.23, "end": 1671.39, "word": " a", "probability": 0.947265625}, {"start": 1671.39, "end": 1671.83, "word": " particular", "probability": 0.9208984375}, {"start": 1671.83, "end": 1672.25, "word": " object", "probability": 0.95556640625}, {"start": 1672.25, "end": 1673.43, "word": " But", "probability": 0.3505859375}, {"start": 1673.43, "end": 1673.59, "word": " in", "probability": 0.861328125}, {"start": 1673.59, "end": 1673.69, "word": " the", "probability": 0.427001953125}, {"start": 1673.69, "end": 1674.05, "word": " inheritance", "probability": 0.908203125}, {"start": 1674.05, "end": 1674.53, "word": " used", "probability": 0.75390625}, {"start": 1674.53, "end": 1674.69, "word": " to", "probability": 0.96435546875}, {"start": 1674.69, "end": 1674.99, "word": " extend", "probability": 0.92529296875}, {"start": 1674.99, "end": 1675.13, "word": " the", "probability": 0.87255859375}, {"start": 1675.13, "end": 1675.51, "word": " functionality", "probability": 0.94482421875}, {"start": 1675.51, "end": 1675.77, "word": " of", "probability": 0.96240234375}, {"start": 1675.77, "end": 1675.93, "word": " a", "probability": 0.95751953125}, {"start": 1675.93, "end": 1676.25, "word": " class", "probability": 0.9609375}, {"start": 1676.25, "end": 1676.43, "word": " of", "probability": 0.9384765625}, {"start": 1676.43, "end": 1676.77, "word": " objects", "probability": 0.935546875}, {"start": 1676.77, "end": 1677.07, "word": " You", "probability": 0.50341796875}, {"start": 1677.07, "end": 1677.33, "word": " do", "probability": 0.2120361328125}, {"start": 1677.33, "end": 1677.85, "word": " here", "probability": 0.5205078125}, {"start": 1677.85, "end": 1678.57, "word": " extend", "probability": 0.70849609375}, {"start": 1678.57, "end": 1678.73, "word": " the", "probability": 0.37451171875}, {"start": 1678.73, "end": 1679.09, "word": " class,", "probability": 0.955078125}, {"start": 1679.53, "end": 1679.53, "word": " you", "probability": 0.56494140625}, {"start": 1679.53, "end": 1679.77, "word": " add", "probability": 0.849609375}, {"start": 1679.77, "end": 1680.73, "word": " a", "probability": 0.76611328125}, {"start": 1680.73, "end": 1680.77, "word": " new", "probability": 0.890625}, {"start": 1680.77, "end": 1681.23, "word": " code", "probability": 0.87451171875}, {"start": 1681.23, "end": 1682.15, "word": " But", "probability": 0.493408203125}, {"start": 1682.15, "end": 1682.43, "word": " here", "probability": 0.7568359375}, {"start": 1682.43, "end": 1682.77, "word": " you", "probability": 0.88720703125}, {"start": 1682.77, "end": 1683.01, "word": " add", "probability": 0.87744140625}, {"start": 1683.01, "end": 1683.13, "word": " the", "probability": 0.260009765625}, {"start": 1683.13, "end": 1683.49, "word": " functionality", "probability": 0.9248046875}, {"start": 1683.49, "end": 1683.75, "word": " of", "probability": 0.84521484375}, {"start": 1683.75, "end": 1683.97, "word": " the", "probability": 0.55224609375}, {"start": 1683.97, "end": 1683.97, "word": " existing", "probability": 0.83984375}, {"start": 1683.97, "end": 1684.41, "word": " object", "probability": 0.92626953125}], "temperature": 1.0}, {"id": 68, "seek": 169975, "start": 1685.59, "end": 1699.75, "text": "You create the object and then you add the function to wrap it in the decorator It does not require subclassing, this one requires subclassing, this one is dynamic and this one is static So here you have to create the class", "tokens": [3223, 1884, 264, 2657, 293, 550, 291, 909, 264, 2445, 281, 7019, 309, 294, 264, 7919, 1639, 467, 775, 406, 3651, 1422, 11665, 278, 11, 341, 472, 7029, 1422, 11665, 278, 11, 341, 472, 307, 8546, 293, 341, 472, 307, 13437, 407, 510, 291, 362, 281, 1884, 264, 1508], "avg_logprob": -0.49218749165534975, "compression_ratio": 1.6397058823529411, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1685.59, "end": 1685.89, "word": "You", "probability": 0.25146484375}, {"start": 1685.89, "end": 1686.15, "word": " create", "probability": 0.7236328125}, {"start": 1686.15, "end": 1687.13, "word": " the", "probability": 0.389892578125}, {"start": 1687.13, "end": 1687.35, "word": " object", "probability": 0.5859375}, {"start": 1687.35, "end": 1687.57, "word": " and", "probability": 0.473388671875}, {"start": 1687.57, "end": 1687.83, "word": " then", "probability": 0.449951171875}, {"start": 1687.83, "end": 1688.03, "word": " you", "probability": 0.28662109375}, {"start": 1688.03, "end": 1688.23, "word": " add", "probability": 0.55859375}, {"start": 1688.23, "end": 1688.39, "word": " the", "probability": 0.197021484375}, {"start": 1688.39, "end": 1688.67, "word": " function", "probability": 0.48828125}, {"start": 1688.67, "end": 1688.97, "word": " to", "probability": 0.73876953125}, {"start": 1688.97, "end": 1689.41, "word": " wrap", "probability": 0.5791015625}, {"start": 1689.41, "end": 1689.53, "word": " it", "probability": 0.78466796875}, {"start": 1689.53, "end": 1689.59, "word": " in", "probability": 0.5234375}, {"start": 1689.59, "end": 1689.69, "word": " the", "probability": 0.433349609375}, {"start": 1689.69, "end": 1690.13, "word": " decorator", "probability": 0.963623046875}, {"start": 1690.13, "end": 1692.31, "word": " It", "probability": 0.338134765625}, {"start": 1692.31, "end": 1692.49, "word": " does", "probability": 0.77880859375}, {"start": 1692.49, "end": 1692.67, "word": " not", "probability": 0.947265625}, {"start": 1692.67, "end": 1693.03, "word": " require", "probability": 0.892578125}, {"start": 1693.03, "end": 1693.73, "word": " subclassing,", "probability": 0.8987630208333334}, {"start": 1693.79, "end": 1693.89, "word": " this", "probability": 0.495849609375}, {"start": 1693.89, "end": 1693.93, "word": " one", "probability": 0.20703125}, {"start": 1693.93, "end": 1694.09, "word": " requires", "probability": 0.4501953125}, {"start": 1694.09, "end": 1694.93, "word": " subclassing,", "probability": 0.9318033854166666}, {"start": 1695.03, "end": 1695.21, "word": " this", "probability": 0.8837890625}, {"start": 1695.21, "end": 1695.27, "word": " one", "probability": 0.853515625}, {"start": 1695.27, "end": 1695.29, "word": " is", "probability": 0.56103515625}, {"start": 1695.29, "end": 1695.69, "word": " dynamic", "probability": 0.6962890625}, {"start": 1695.69, "end": 1695.85, "word": " and", "probability": 0.55810546875}, {"start": 1695.85, "end": 1695.93, "word": " this", "probability": 0.884765625}, {"start": 1695.93, "end": 1695.93, "word": " one", "probability": 0.8671875}, {"start": 1695.93, "end": 1695.99, "word": " is", "probability": 0.68603515625}, {"start": 1695.99, "end": 1696.41, "word": " static", "probability": 0.95458984375}, {"start": 1696.41, "end": 1697.11, "word": " So", "probability": 0.1650390625}, {"start": 1697.11, "end": 1697.33, "word": " here", "probability": 0.5615234375}, {"start": 1697.33, "end": 1698.23, "word": " you", "probability": 0.52783203125}, {"start": 1698.23, "end": 1698.35, "word": " have", "probability": 0.40771484375}, {"start": 1698.35, "end": 1698.63, "word": " to", "probability": 0.96484375}, {"start": 1698.63, "end": 1699.07, "word": " create", "probability": 0.85498046875}, {"start": 1699.07, "end": 1699.29, "word": " the", "probability": 0.71435546875}, {"start": 1699.29, "end": 1699.75, "word": " class", "probability": 0.96240234375}], "temperature": 1.0}, {"id": 69, "seek": 172757, "start": 1700.51, "end": 1727.57, "text": " Before you run the program Here, during the runtime, you create the object and wrap it directly The functionality is added during the runtime And this means that runtime assignment of responsibilities and here compile-time assignment of responsibilities Prevents the proliferation of subclasses What is proliferation? It is the proliferation of subclasses It prevents the exclusion of classes that we talked about in the previous lecture", "tokens": [4546, 291, 1190, 264, 1461, 1692, 11, 1830, 264, 34474, 11, 291, 1884, 264, 2657, 293, 7019, 309, 3838, 440, 14980, 307, 3869, 1830, 264, 34474, 400, 341, 1355, 300, 34474, 15187, 295, 16190, 293, 510, 31413, 12, 3766, 15187, 295, 16190, 6001, 85, 791, 264, 24398, 44987, 295, 1422, 11665, 279, 708, 307, 24398, 44987, 30, 467, 307, 264, 24398, 44987, 295, 1422, 11665, 279, 467, 22367, 264, 33049, 295, 5359, 300, 321, 2825, 466, 294, 264, 3894, 7991], "avg_logprob": -0.4625771663807057, "compression_ratio": 1.9380530973451326, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 1700.51, "end": 1700.91, "word": " Before", "probability": 0.2288818359375}, {"start": 1700.91, "end": 1701.09, "word": " you", "probability": 0.2327880859375}, {"start": 1701.09, "end": 1701.37, "word": " run", "probability": 0.461181640625}, {"start": 1701.37, "end": 1701.63, "word": " the", "probability": 0.5380859375}, {"start": 1701.63, "end": 1702.03, "word": " program", "probability": 0.81689453125}, {"start": 1702.03, "end": 1702.77, "word": " Here,", "probability": 0.1473388671875}, {"start": 1703.33, "end": 1703.55, "word": " during", "probability": 0.403564453125}, {"start": 1703.55, "end": 1703.85, "word": " the", "probability": 0.375244140625}, {"start": 1703.85, "end": 1704.15, "word": " runtime,", "probability": 0.591796875}, {"start": 1704.33, "end": 1704.45, "word": " you", "probability": 0.472412109375}, {"start": 1704.45, "end": 1704.65, "word": " create", "probability": 0.11474609375}, {"start": 1704.65, "end": 1704.75, "word": " the", "probability": 0.55517578125}, {"start": 1704.75, "end": 1705.11, "word": " object", "probability": 0.9091796875}, {"start": 1705.11, "end": 1705.83, "word": " and", "probability": 0.79541015625}, {"start": 1705.83, "end": 1706.13, "word": " wrap", "probability": 0.60107421875}, {"start": 1706.13, "end": 1706.65, "word": " it", "probability": 0.916015625}, {"start": 1706.65, "end": 1707.39, "word": " directly", "probability": 0.189208984375}, {"start": 1707.39, "end": 1708.05, "word": " The", "probability": 0.17724609375}, {"start": 1708.05, "end": 1708.59, "word": " functionality", "probability": 0.89111328125}, {"start": 1708.59, "end": 1708.79, "word": " is", "probability": 0.325439453125}, {"start": 1708.79, "end": 1709.13, "word": " added", "probability": 0.417724609375}, {"start": 1709.13, "end": 1709.43, "word": " during", "probability": 0.81982421875}, {"start": 1709.43, "end": 1710.31, "word": " the", "probability": 0.68017578125}, {"start": 1710.31, "end": 1710.69, "word": " runtime", "probability": 0.86376953125}, {"start": 1710.69, "end": 1711.19, "word": " And", "probability": 0.253173828125}, {"start": 1711.19, "end": 1711.35, "word": " this", "probability": 0.7490234375}, {"start": 1711.35, "end": 1711.65, "word": " means", "probability": 0.76123046875}, {"start": 1711.65, "end": 1712.07, "word": " that", "probability": 0.5478515625}, {"start": 1712.07, "end": 1712.37, "word": " runtime", "probability": 0.5712890625}, {"start": 1712.37, "end": 1713.07, "word": " assignment", "probability": 0.6162109375}, {"start": 1713.07, "end": 1713.29, "word": " of", "probability": 0.9326171875}, {"start": 1713.29, "end": 1714.01, "word": " responsibilities", "probability": 0.919921875}, {"start": 1714.01, "end": 1714.19, "word": " and", "probability": 0.52685546875}, {"start": 1714.19, "end": 1714.31, "word": " here", "probability": 0.6044921875}, {"start": 1714.31, "end": 1714.79, "word": " compile", "probability": 0.5546875}, {"start": 1714.79, "end": 1715.19, "word": "-time", "probability": 0.74365234375}, {"start": 1715.19, "end": 1716.31, "word": " assignment", "probability": 0.94921875}, {"start": 1716.31, "end": 1716.57, "word": " of", "probability": 0.9677734375}, {"start": 1716.57, "end": 1717.29, "word": " responsibilities", "probability": 0.94189453125}, {"start": 1717.29, "end": 1719.29, "word": " Prevents", "probability": 0.8253580729166666}, {"start": 1719.29, "end": 1719.57, "word": " the", "probability": 0.751953125}, {"start": 1719.57, "end": 1720.17, "word": " proliferation", "probability": 0.9755859375}, {"start": 1720.17, "end": 1720.47, "word": " of", "probability": 0.9716796875}, {"start": 1720.47, "end": 1721.09, "word": " subclasses", "probability": 0.8976236979166666}, {"start": 1721.09, "end": 1721.15, "word": " What", "probability": 0.4130859375}, {"start": 1721.15, "end": 1721.31, "word": " is", "probability": 0.76220703125}, {"start": 1721.31, "end": 1721.91, "word": " proliferation?", "probability": 0.96240234375}, {"start": 1722.09, "end": 1722.11, "word": " It", "probability": 0.7265625}, {"start": 1722.11, "end": 1722.25, "word": " is", "probability": 0.57080078125}, {"start": 1722.25, "end": 1722.37, "word": " the", "probability": 0.67236328125}, {"start": 1722.37, "end": 1722.79, "word": " proliferation", "probability": 0.8583984375}, {"start": 1722.79, "end": 1723.05, "word": " of", "probability": 0.9501953125}, {"start": 1723.05, "end": 1723.91, "word": " subclasses", "probability": 0.9158528645833334}, {"start": 1723.91, "end": 1724.03, "word": " It", "probability": 0.55126953125}, {"start": 1724.03, "end": 1724.33, "word": " prevents", "probability": 0.79638671875}, {"start": 1724.33, "end": 1724.49, "word": " the", "probability": 0.80615234375}, {"start": 1724.49, "end": 1724.91, "word": " exclusion", "probability": 0.6123046875}, {"start": 1724.91, "end": 1725.15, "word": " of", "probability": 0.91064453125}, {"start": 1725.15, "end": 1725.51, "word": " classes", "probability": 0.58447265625}, {"start": 1725.51, "end": 1725.67, "word": " that", "probability": 0.38671875}, {"start": 1725.67, "end": 1725.67, "word": " we", "probability": 0.830078125}, {"start": 1725.67, "end": 1725.91, "word": " talked", "probability": 0.46533203125}, {"start": 1725.91, "end": 1726.13, "word": " about", "probability": 0.89990234375}, {"start": 1726.13, "end": 1727.07, "word": " in", "probability": 0.81494140625}, {"start": 1727.07, "end": 1727.15, "word": " the", "probability": 0.82861328125}, {"start": 1727.15, "end": 1727.23, "word": " previous", "probability": 0.46142578125}, {"start": 1727.23, "end": 1727.57, "word": " lecture", "probability": 0.87841796875}], "temperature": 1.0}, {"id": 70, "seek": 174985, "start": 1728.71, "end": 1749.85, "text": "but in inheritance it could lead to numerous subclasses it could lead to a large number of subclasses more flexible, still flexible, of course I'm not with this statement at all we said that in the normal situation you always resort to subclassing except if you notice that it produces a large number of subclasses so you stay on the decorator", "tokens": [5955, 294, 32122, 309, 727, 1477, 281, 12546, 1422, 11665, 279, 309, 727, 1477, 281, 257, 2416, 1230, 295, 1422, 11665, 279, 544, 11358, 11, 920, 11358, 11, 295, 1164, 286, 478, 406, 365, 341, 5629, 412, 439, 321, 848, 300, 294, 264, 2710, 2590, 291, 1009, 19606, 281, 1422, 11665, 278, 3993, 498, 291, 3449, 300, 309, 14725, 257, 2416, 1230, 295, 1422, 11665, 279, 370, 291, 1754, 322, 264, 7919, 1639], "avg_logprob": -0.444256767227843, "compression_ratio": 1.805263157894737, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1728.71, "end": 1729.03, "word": "but", "probability": 0.25732421875}, {"start": 1729.03, "end": 1729.19, "word": " in", "probability": 0.607421875}, {"start": 1729.19, "end": 1729.83, "word": " inheritance", "probability": 0.92236328125}, {"start": 1729.83, "end": 1730.03, "word": " it", "probability": 0.61083984375}, {"start": 1730.03, "end": 1730.21, "word": " could", "probability": 0.75927734375}, {"start": 1730.21, "end": 1731.15, "word": " lead", "probability": 0.908203125}, {"start": 1731.15, "end": 1731.41, "word": " to", "probability": 0.9541015625}, {"start": 1731.41, "end": 1731.87, "word": " numerous", "probability": 0.7939453125}, {"start": 1731.87, "end": 1733.19, "word": " subclasses", "probability": 0.80029296875}, {"start": 1733.19, "end": 1733.25, "word": " it", "probability": 0.1873779296875}, {"start": 1733.25, "end": 1733.43, "word": " could", "probability": 0.499267578125}, {"start": 1733.43, "end": 1733.73, "word": " lead", "probability": 0.884765625}, {"start": 1733.73, "end": 1733.87, "word": " to", "probability": 0.96044921875}, {"start": 1733.87, "end": 1733.91, "word": " a", "probability": 0.2247314453125}, {"start": 1733.91, "end": 1734.31, "word": " large", "probability": 0.38330078125}, {"start": 1734.31, "end": 1734.37, "word": " number", "probability": 0.88916015625}, {"start": 1734.37, "end": 1735.21, "word": " of", "probability": 0.94580078125}, {"start": 1735.21, "end": 1736.33, "word": " subclasses", "probability": 0.9454752604166666}, {"start": 1736.33, "end": 1736.71, "word": " more", "probability": 0.67236328125}, {"start": 1736.71, "end": 1737.17, "word": " flexible,", "probability": 0.87255859375}, {"start": 1737.31, "end": 1737.47, "word": " still", "probability": 0.5009765625}, {"start": 1737.47, "end": 1737.93, "word": " flexible,", "probability": 0.82861328125}, {"start": 1738.01, "end": 1738.13, "word": " of", "probability": 0.56689453125}, {"start": 1738.13, "end": 1738.21, "word": " course", "probability": 0.939453125}, {"start": 1738.21, "end": 1738.55, "word": " I'm", "probability": 0.5865478515625}, {"start": 1738.55, "end": 1738.79, "word": " not", "probability": 0.9072265625}, {"start": 1738.79, "end": 1738.93, "word": " with", "probability": 0.341796875}, {"start": 1738.93, "end": 1739.09, "word": " this", "probability": 0.54736328125}, {"start": 1739.09, "end": 1739.27, "word": " statement", "probability": 0.300537109375}, {"start": 1739.27, "end": 1739.51, "word": " at", "probability": 0.7529296875}, {"start": 1739.51, "end": 1740.03, "word": " all", "probability": 0.95849609375}, {"start": 1740.03, "end": 1740.73, "word": " we", "probability": 0.46630859375}, {"start": 1740.73, "end": 1740.93, "word": " said", "probability": 0.658203125}, {"start": 1740.93, "end": 1741.17, "word": " that", "probability": 0.464599609375}, {"start": 1741.17, "end": 1741.19, "word": " in", "probability": 0.7666015625}, {"start": 1741.19, "end": 1741.25, "word": " the", "probability": 0.27978515625}, {"start": 1741.25, "end": 1741.71, "word": " normal", "probability": 0.5}, {"start": 1741.71, "end": 1741.83, "word": " situation", "probability": 0.6962890625}, {"start": 1741.83, "end": 1742.21, "word": " you", "probability": 0.7109375}, {"start": 1742.21, "end": 1742.41, "word": " always", "probability": 0.68212890625}, {"start": 1742.41, "end": 1742.75, "word": " resort", "probability": 0.37255859375}, {"start": 1742.75, "end": 1743.43, "word": " to", "probability": 0.9716796875}, {"start": 1743.43, "end": 1744.55, "word": " subclassing", "probability": 0.8732096354166666}, {"start": 1744.55, "end": 1744.81, "word": " except", "probability": 0.238037109375}, {"start": 1744.81, "end": 1745.07, "word": " if", "probability": 0.85107421875}, {"start": 1745.07, "end": 1745.41, "word": " you", "probability": 0.552734375}, {"start": 1745.41, "end": 1745.67, "word": " notice", "probability": 0.479736328125}, {"start": 1745.67, "end": 1745.91, "word": " that", "probability": 0.74853515625}, {"start": 1745.91, "end": 1746.01, "word": " it", "probability": 0.51123046875}, {"start": 1746.01, "end": 1746.35, "word": " produces", "probability": 0.404541015625}, {"start": 1746.35, "end": 1746.69, "word": " a", "probability": 0.82470703125}, {"start": 1746.69, "end": 1746.73, "word": " large", "probability": 0.826171875}, {"start": 1746.73, "end": 1746.95, "word": " number", "probability": 0.921875}, {"start": 1746.95, "end": 1747.31, "word": " of", "probability": 0.96484375}, {"start": 1747.31, "end": 1748.11, "word": " subclasses", "probability": 0.9669596354166666}, {"start": 1748.11, "end": 1748.21, "word": " so", "probability": 0.228759765625}, {"start": 1748.21, "end": 1748.53, "word": " you", "probability": 0.9140625}, {"start": 1748.53, "end": 1748.53, "word": " stay", "probability": 0.441650390625}, {"start": 1748.53, "end": 1748.77, "word": " on", "probability": 0.58447265625}, {"start": 1748.77, "end": 1749.41, "word": " the", "probability": 0.7216796875}, {"start": 1749.41, "end": 1749.85, "word": " decorator", "probability": 0.960205078125}], "temperature": 1.0}, {"id": 71, "seek": 177724, "start": 1752.64, "end": 1777.24, "text": "Possible to have different decorator objects for a given object simultaneously, meaning that the object itself can have more than one decorator to add more features to it, but in the case of subclassing, each feature has to have an additional subclass.Easy to add a combination of capabilities, to add more than one capability at the same time, but here it is difficult because each feature needs an additional subclass.", "tokens": [47, 5785, 281, 362, 819, 7919, 1639, 6565, 337, 257, 2212, 2657, 16561, 11, 3620, 300, 264, 2657, 2564, 393, 362, 544, 813, 472, 7919, 1639, 281, 909, 544, 4122, 281, 309, 11, 457, 294, 264, 1389, 295, 1422, 11665, 278, 11, 1184, 4111, 575, 281, 362, 364, 4497, 1422, 11665, 13, 36, 5871, 281, 909, 257, 6562, 295, 10862, 11, 281, 909, 544, 813, 472, 13759, 412, 264, 912, 565, 11, 457, 510, 309, 307, 2252, 570, 1184, 4111, 2203, 364, 4497, 1422, 11665, 13], "avg_logprob": -0.3893678249983952, "compression_ratio": 1.9004524886877827, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 1752.6399999999999, "end": 1753.12, "word": "Possible", "probability": 0.770751953125}, {"start": 1753.12, "end": 1753.32, "word": " to", "probability": 0.97412109375}, {"start": 1753.32, "end": 1753.48, "word": " have", "probability": 0.93994140625}, {"start": 1753.48, "end": 1753.88, "word": " different", "probability": 0.89208984375}, {"start": 1753.88, "end": 1754.38, "word": " decorator", "probability": 0.9111328125}, {"start": 1754.38, "end": 1754.74, "word": " objects", "probability": 0.96337890625}, {"start": 1754.74, "end": 1754.92, "word": " for", "probability": 0.923828125}, {"start": 1754.92, "end": 1755.04, "word": " a", "probability": 0.94921875}, {"start": 1755.04, "end": 1755.26, "word": " given", "probability": 0.92626953125}, {"start": 1755.26, "end": 1755.76, "word": " object", "probability": 0.5498046875}, {"start": 1755.76, "end": 1757.42, "word": " simultaneously,", "probability": 0.7626953125}, {"start": 1757.6, "end": 1757.72, "word": " meaning", "probability": 0.3681640625}, {"start": 1757.72, "end": 1758.06, "word": " that", "probability": 0.57861328125}, {"start": 1758.06, "end": 1758.12, "word": " the", "probability": 0.70263671875}, {"start": 1758.12, "end": 1758.42, "word": " object", "probability": 0.81640625}, {"start": 1758.42, "end": 1758.78, "word": " itself", "probability": 0.289306640625}, {"start": 1758.78, "end": 1758.92, "word": " can", "probability": 0.59619140625}, {"start": 1758.92, "end": 1759.2, "word": " have", "probability": 0.434326171875}, {"start": 1759.2, "end": 1759.5, "word": " more", "probability": 0.65625}, {"start": 1759.5, "end": 1759.62, "word": " than", "probability": 0.451171875}, {"start": 1759.62, "end": 1759.8, "word": " one", "probability": 0.80615234375}, {"start": 1759.8, "end": 1760.2, "word": " decorator", "probability": 0.973876953125}, {"start": 1760.2, "end": 1760.36, "word": " to", "probability": 0.402099609375}, {"start": 1760.36, "end": 1760.66, "word": " add", "probability": 0.57861328125}, {"start": 1760.66, "end": 1761.08, "word": " more", "probability": 0.7626953125}, {"start": 1761.08, "end": 1761.66, "word": " features", "probability": 0.336181640625}, {"start": 1761.66, "end": 1761.86, "word": " to", "probability": 0.28271484375}, {"start": 1761.86, "end": 1761.86, "word": " it,", "probability": 0.90966796875}, {"start": 1761.9, "end": 1762.56, "word": " but", "probability": 0.7490234375}, {"start": 1762.56, "end": 1762.7, "word": " in", "probability": 0.79150390625}, {"start": 1762.7, "end": 1762.82, "word": " the", "probability": 0.58349609375}, {"start": 1762.82, "end": 1762.98, "word": " case", "probability": 0.837890625}, {"start": 1762.98, "end": 1763.08, "word": " of", "probability": 0.96875}, {"start": 1763.08, "end": 1763.68, "word": " subclassing,", "probability": 0.9186197916666666}, {"start": 1763.86, "end": 1764.58, "word": " each", "probability": 0.677734375}, {"start": 1764.58, "end": 1765.18, "word": " feature", "probability": 0.87109375}, {"start": 1765.18, "end": 1765.38, "word": " has", "probability": 0.228515625}, {"start": 1765.38, "end": 1765.38, "word": " to", "probability": 0.9169921875}, {"start": 1765.38, "end": 1765.64, "word": " have", "probability": 0.2373046875}, {"start": 1765.64, "end": 1765.74, "word": " an", "probability": 0.64306640625}, {"start": 1765.74, "end": 1765.74, "word": " additional", "probability": 0.5625}, {"start": 1765.74, "end": 1766.4, "word": " subclass", "probability": 0.939208984375}, {"start": 1766.4, "end": 1769.2, "word": ".Easy", "probability": 0.6254069010416666}, {"start": 1769.2, "end": 1769.4, "word": " to", "probability": 0.970703125}, {"start": 1769.4, "end": 1769.62, "word": " add", "probability": 0.8935546875}, {"start": 1769.62, "end": 1769.72, "word": " a", "probability": 0.97314453125}, {"start": 1769.72, "end": 1770.3, "word": " combination", "probability": 0.9150390625}, {"start": 1770.3, "end": 1770.54, "word": " of", "probability": 0.97119140625}, {"start": 1770.54, "end": 1771.06, "word": " capabilities,", "probability": 0.8642578125}, {"start": 1771.42, "end": 1771.52, "word": " to", "probability": 0.21630859375}, {"start": 1771.52, "end": 1771.7, "word": " add", "probability": 0.87255859375}, {"start": 1771.7, "end": 1772.04, "word": " more", "probability": 0.77099609375}, {"start": 1772.04, "end": 1772.2, "word": " than", "probability": 0.58349609375}, {"start": 1772.2, "end": 1772.4, "word": " one", "probability": 0.83740234375}, {"start": 1772.4, "end": 1772.76, "word": " capability", "probability": 0.736328125}, {"start": 1772.76, "end": 1772.96, "word": " at", "probability": 0.7138671875}, {"start": 1772.96, "end": 1773.14, "word": " the", "probability": 0.6640625}, {"start": 1773.14, "end": 1773.14, "word": " same", "probability": 0.90869140625}, {"start": 1773.14, "end": 1773.42, "word": " time,", "probability": 0.8916015625}, {"start": 1773.56, "end": 1773.7, "word": " but", "probability": 0.837890625}, {"start": 1773.7, "end": 1773.94, "word": " here", "probability": 0.572265625}, {"start": 1773.94, "end": 1773.96, "word": " it", "probability": 0.6962890625}, {"start": 1773.96, "end": 1774.48, "word": " is", "probability": 0.724609375}, {"start": 1774.48, "end": 1774.88, "word": " difficult", "probability": 0.8076171875}, {"start": 1774.88, "end": 1775.14, "word": " because", "probability": 0.58984375}, {"start": 1775.14, "end": 1776.04, "word": " each", "probability": 0.462646484375}, {"start": 1776.04, "end": 1776.38, "word": " feature", "probability": 0.9365234375}, {"start": 1776.38, "end": 1776.6, "word": " needs", "probability": 0.298583984375}, {"start": 1776.6, "end": 1776.7, "word": " an", "probability": 0.771484375}, {"start": 1776.7, "end": 1776.7, "word": " additional", "probability": 0.77978515625}, {"start": 1776.7, "end": 1777.24, "word": " subclass.", "probability": 0.965087890625}], "temperature": 1.0}, {"id": 72, "seek": 181036, "start": 1781.54, "end": 1810.36, "text": " Ok guys, now we have finished the decorator pattern Now we are going to talk about another design pattern similar to the decorator pattern But it has another use The design pattern that we are going to talk about is called proxy pattern The word proxy has been used before", "tokens": [3477, 1074, 11, 586, 321, 362, 4335, 264, 7919, 1639, 5102, 823, 321, 366, 516, 281, 751, 466, 1071, 1715, 5102, 2531, 281, 264, 7919, 1639, 5102, 583, 309, 575, 1071, 764, 440, 1715, 5102, 300, 321, 366, 516, 281, 751, 466, 307, 1219, 29690, 5102, 440, 1349, 29690, 575, 668, 1143, 949], "avg_logprob": -0.49652776232472173, "compression_ratio": 1.8079470198675496, "no_speech_prob": 0.0, "words": [{"start": 1781.54, "end": 1781.82, "word": " Ok", "probability": 0.31005859375}, {"start": 1781.82, "end": 1782.06, "word": " guys,", "probability": 0.638671875}, {"start": 1782.18, "end": 1782.3, "word": " now", "probability": 0.31787109375}, {"start": 1782.3, "end": 1782.52, "word": " we", "probability": 0.6669921875}, {"start": 1782.52, "end": 1782.74, "word": " have", "probability": 0.391357421875}, {"start": 1782.74, "end": 1783.12, "word": " finished", "probability": 0.364013671875}, {"start": 1783.12, "end": 1783.58, "word": " the", "probability": 0.61474609375}, {"start": 1783.58, "end": 1784.16, "word": " decorator", "probability": 0.842529296875}, {"start": 1784.16, "end": 1784.58, "word": " pattern", "probability": 0.89794921875}, {"start": 1784.58, "end": 1786.38, "word": " Now", "probability": 0.250732421875}, {"start": 1786.38, "end": 1787.78, "word": " we", "probability": 0.6513671875}, {"start": 1787.78, "end": 1787.8, "word": " are", "probability": 0.26416015625}, {"start": 1787.8, "end": 1787.84, "word": " going", "probability": 0.916015625}, {"start": 1787.84, "end": 1787.86, "word": " to", "probability": 0.96728515625}, {"start": 1787.86, "end": 1788.1, "word": " talk", "probability": 0.6875}, {"start": 1788.1, "end": 1788.34, "word": " about", "probability": 0.89501953125}, {"start": 1788.34, "end": 1788.7, "word": " another", "probability": 0.6953125}, {"start": 1788.7, "end": 1789.08, "word": " design", "probability": 0.50146484375}, {"start": 1789.08, "end": 1789.92, "word": " pattern", "probability": 0.919921875}, {"start": 1789.92, "end": 1791.44, "word": " similar", "probability": 0.4140625}, {"start": 1791.44, "end": 1791.78, "word": " to", "probability": 0.9736328125}, {"start": 1791.78, "end": 1791.94, "word": " the", "probability": 0.52978515625}, {"start": 1791.94, "end": 1792.66, "word": " decorator", "probability": 0.978759765625}, {"start": 1792.66, "end": 1792.86, "word": " pattern", "probability": 0.55322265625}, {"start": 1792.86, "end": 1797.26, "word": " But", "probability": 0.484619140625}, {"start": 1797.26, "end": 1797.46, "word": " it", "probability": 0.431640625}, {"start": 1797.46, "end": 1797.48, "word": " has", "probability": 0.85302734375}, {"start": 1797.48, "end": 1798.44, "word": " another", "probability": 0.54443359375}, {"start": 1798.44, "end": 1798.92, "word": " use", "probability": 0.4912109375}, {"start": 1798.92, "end": 1804.1, "word": " The", "probability": 0.3125}, {"start": 1804.1, "end": 1804.66, "word": " design", "probability": 0.91064453125}, {"start": 1804.66, "end": 1804.98, "word": " pattern", "probability": 0.90576171875}, {"start": 1804.98, "end": 1805.04, "word": " that", "probability": 0.3505859375}, {"start": 1805.04, "end": 1805.12, "word": " we", "probability": 0.87255859375}, {"start": 1805.12, "end": 1805.12, "word": " are", "probability": 0.7841796875}, {"start": 1805.12, "end": 1805.16, "word": " going", "probability": 0.904296875}, {"start": 1805.16, "end": 1805.16, "word": " to", "probability": 0.97021484375}, {"start": 1805.16, "end": 1805.32, "word": " talk", "probability": 0.82275390625}, {"start": 1805.32, "end": 1805.52, "word": " about", "probability": 0.8525390625}, {"start": 1805.52, "end": 1805.98, "word": " is", "probability": 0.5517578125}, {"start": 1805.98, "end": 1806.46, "word": " called", "probability": 0.475341796875}, {"start": 1806.46, "end": 1807.06, "word": " proxy", "probability": 0.853515625}, {"start": 1807.06, "end": 1807.44, "word": " pattern", "probability": 0.90283203125}, {"start": 1807.44, "end": 1809.22, "word": " The", "probability": 0.1925048828125}, {"start": 1809.22, "end": 1809.88, "word": " word", "probability": 0.81005859375}, {"start": 1809.88, "end": 1810.36, "word": " proxy", "probability": 0.94580078125}, {"start": 1810.36, "end": 1810.36, "word": " has", "probability": 0.437255859375}, {"start": 1810.36, "end": 1810.36, "word": " been", "probability": 0.6220703125}, {"start": 1810.36, "end": 1810.36, "word": " used", "probability": 0.55712890625}, {"start": 1810.36, "end": 1810.36, "word": " before", "probability": 0.252685546875}], "temperature": 1.0}, {"id": 73, "seek": 183575, "start": 1813.41, "end": 1835.75, "text": " Yes, I took the networks, okay? I still haven't taken the networks. Now, in the networks, there is a concept called the proxy server. Simply put, the proxy server, when I have a user who uses the internet, and here is the internet provider, this is the internet service provider, okay? Usually, when I connect to the internet service provider, I have a proxy.", "tokens": [1079, 11, 286, 1890, 264, 9590, 11, 1392, 30, 286, 920, 2378, 380, 2726, 264, 9590, 13, 823, 11, 294, 264, 9590, 11, 456, 307, 257, 3410, 1219, 264, 29690, 7154, 13, 19596, 829, 11, 264, 29690, 7154, 11, 562, 286, 362, 257, 4195, 567, 4960, 264, 4705, 11, 293, 510, 307, 264, 4705, 12398, 11, 341, 307, 264, 4705, 2643, 12398, 11, 1392, 30, 11419, 11, 562, 286, 1745, 281, 264, 4705, 2643, 12398, 11, 286, 362, 257, 29690, 13], "avg_logprob": -0.4005335296799497, "compression_ratio": 1.9565217391304348, "no_speech_prob": 1.8477439880371094e-06, "words": [{"start": 1813.41, "end": 1813.89, "word": " Yes,", "probability": 0.1453857421875}, {"start": 1814.01, "end": 1814.09, "word": " I", "probability": 0.90283203125}, {"start": 1814.09, "end": 1814.27, "word": " took", "probability": 0.425537109375}, {"start": 1814.27, "end": 1814.37, "word": " the", "probability": 0.364990234375}, {"start": 1814.37, "end": 1814.73, "word": " networks,", "probability": 0.53564453125}, {"start": 1815.37, "end": 1815.67, "word": " okay?", "probability": 0.2371826171875}, {"start": 1816.23, "end": 1816.45, "word": " I", "probability": 0.83984375}, {"start": 1816.45, "end": 1816.49, "word": " still", "probability": 0.4208984375}, {"start": 1816.49, "end": 1816.61, "word": " haven't", "probability": 0.7412109375}, {"start": 1816.61, "end": 1816.75, "word": " taken", "probability": 0.74853515625}, {"start": 1816.75, "end": 1816.89, "word": " the", "probability": 0.72802734375}, {"start": 1816.89, "end": 1817.25, "word": " networks.", "probability": 0.810546875}, {"start": 1817.69, "end": 1817.81, "word": " Now,", "probability": 0.17041015625}, {"start": 1817.93, "end": 1818.01, "word": " in", "probability": 0.62548828125}, {"start": 1818.01, "end": 1818.15, "word": " the", "probability": 0.517578125}, {"start": 1818.15, "end": 1818.41, "word": " networks,", "probability": 0.86962890625}, {"start": 1818.59, "end": 1818.63, "word": " there", "probability": 0.89697265625}, {"start": 1818.63, "end": 1818.67, "word": " is", "probability": 0.7919921875}, {"start": 1818.67, "end": 1818.75, "word": " a", "probability": 0.77880859375}, {"start": 1818.75, "end": 1818.99, "word": " concept", "probability": 0.7509765625}, {"start": 1818.99, "end": 1819.41, "word": " called", "probability": 0.86279296875}, {"start": 1819.41, "end": 1819.97, "word": " the", "probability": 0.258056640625}, {"start": 1819.97, "end": 1820.23, "word": " proxy", "probability": 0.91455078125}, {"start": 1820.23, "end": 1820.65, "word": " server.", "probability": 0.90869140625}, {"start": 1821.63, "end": 1821.91, "word": " Simply", "probability": 0.5126953125}, {"start": 1821.91, "end": 1822.25, "word": " put,", "probability": 0.6611328125}, {"start": 1822.37, "end": 1822.53, "word": " the", "probability": 0.60546875}, {"start": 1822.53, "end": 1822.79, "word": " proxy", "probability": 0.97607421875}, {"start": 1822.79, "end": 1823.23, "word": " server,", "probability": 0.916015625}, {"start": 1823.73, "end": 1823.89, "word": " when", "probability": 0.87060546875}, {"start": 1823.89, "end": 1824.35, "word": " I", "probability": 0.94384765625}, {"start": 1824.35, "end": 1824.71, "word": " have", "probability": 0.9375}, {"start": 1824.71, "end": 1825.09, "word": " a", "probability": 0.75048828125}, {"start": 1825.09, "end": 1825.43, "word": " user", "probability": 0.9267578125}, {"start": 1825.43, "end": 1825.57, "word": " who", "probability": 0.414794921875}, {"start": 1825.57, "end": 1825.93, "word": " uses", "probability": 0.81103515625}, {"start": 1825.93, "end": 1826.09, "word": " the", "probability": 0.8681640625}, {"start": 1826.09, "end": 1826.51, "word": " internet,", "probability": 0.65234375}, {"start": 1826.99, "end": 1827.13, "word": " and", "probability": 0.765625}, {"start": 1827.13, "end": 1827.31, "word": " here", "probability": 0.6142578125}, {"start": 1827.31, "end": 1827.61, "word": " is", "probability": 0.45947265625}, {"start": 1827.61, "end": 1827.81, "word": " the", "probability": 0.79296875}, {"start": 1827.81, "end": 1828.49, "word": " internet", "probability": 0.7041015625}, {"start": 1828.49, "end": 1828.49, "word": " provider,", "probability": 0.5517578125}, {"start": 1828.73, "end": 1828.87, "word": " this", "probability": 0.71630859375}, {"start": 1828.87, "end": 1828.91, "word": " is", "probability": 0.91455078125}, {"start": 1828.91, "end": 1828.99, "word": " the", "probability": 0.751953125}, {"start": 1828.99, "end": 1829.29, "word": " internet", "probability": 0.900390625}, {"start": 1829.29, "end": 1829.85, "word": " service", "probability": 0.90966796875}, {"start": 1829.85, "end": 1830.95, "word": " provider,", "probability": 0.95166015625}, {"start": 1831.59, "end": 1831.83, "word": " okay?", "probability": 0.60498046875}, {"start": 1832.53, "end": 1832.91, "word": " Usually,", "probability": 0.7158203125}, {"start": 1833.05, "end": 1833.25, "word": " when", "probability": 0.9345703125}, {"start": 1833.25, "end": 1833.37, "word": " I", "probability": 0.99609375}, {"start": 1833.37, "end": 1833.57, "word": " connect", "probability": 0.345703125}, {"start": 1833.57, "end": 1833.77, "word": " to", "probability": 0.86083984375}, {"start": 1833.77, "end": 1833.83, "word": " the", "probability": 0.83642578125}, {"start": 1833.83, "end": 1834.11, "word": " internet", "probability": 0.9189453125}, {"start": 1834.11, "end": 1834.45, "word": " service", "probability": 0.8916015625}, {"start": 1834.45, "end": 1834.77, "word": " provider,", "probability": 0.94775390625}, {"start": 1834.85, "end": 1834.95, "word": " I", "probability": 0.93017578125}, {"start": 1834.95, "end": 1835.23, "word": " have", "probability": 0.72119140625}, {"start": 1835.23, "end": 1835.45, "word": " a", "probability": 0.95166015625}, {"start": 1835.45, "end": 1835.75, "word": " proxy.", "probability": 0.982421875}], "temperature": 1.0}, {"id": 74, "seek": 186597, "start": 1837.15, "end": 1865.97, "text": "this internet service provider can be the main unit in the network that provides internet service and internet companies are not the ones that provide internet service internet companies actually take the line from the internet service provider and I connect to their server because their server is like a proxy it is not them that provides internet service, it is them that connects me to the internet there is a difference between the two words this is the source of the internet and this is just a connection", "tokens": [11176, 4705, 2643, 12398, 393, 312, 264, 2135, 4985, 294, 264, 3209, 300, 6417, 4705, 2643, 293, 4705, 3431, 366, 406, 264, 2306, 300, 2893, 4705, 2643, 4705, 3431, 767, 747, 264, 1622, 490, 264, 4705, 2643, 12398, 293, 286, 1745, 281, 641, 7154, 570, 641, 7154, 307, 411, 257, 29690, 309, 307, 406, 552, 300, 6417, 4705, 2643, 11, 309, 307, 552, 300, 16967, 385, 281, 264, 4705, 456, 307, 257, 2649, 1296, 264, 732, 2283, 341, 307, 264, 4009, 295, 264, 4705, 293, 341, 307, 445, 257, 4984], "avg_logprob": -0.5192307456509098, "compression_ratio": 2.3440366972477062, "no_speech_prob": 6.020069122314453e-06, "words": [{"start": 1837.15, "end": 1837.45, "word": "this", "probability": 0.304443359375}, {"start": 1837.45, "end": 1837.81, "word": " internet", "probability": 0.65478515625}, {"start": 1837.81, "end": 1838.09, "word": " service", "probability": 0.86083984375}, {"start": 1838.09, "end": 1838.57, "word": " provider", "probability": 0.93310546875}, {"start": 1838.57, "end": 1838.79, "word": " can", "probability": 0.451171875}, {"start": 1838.79, "end": 1839.05, "word": " be", "probability": 0.919921875}, {"start": 1839.05, "end": 1839.21, "word": " the", "probability": 0.80908203125}, {"start": 1839.21, "end": 1839.81, "word": " main", "probability": 0.701171875}, {"start": 1839.81, "end": 1839.87, "word": " unit", "probability": 0.07818603515625}, {"start": 1839.87, "end": 1840.41, "word": " in", "probability": 0.4765625}, {"start": 1840.41, "end": 1840.53, "word": " the", "probability": 0.669921875}, {"start": 1840.53, "end": 1840.75, "word": " network", "probability": 0.366455078125}, {"start": 1840.75, "end": 1841.21, "word": " that", "probability": 0.335205078125}, {"start": 1841.21, "end": 1841.39, "word": " provides", "probability": 0.295654296875}, {"start": 1841.39, "end": 1841.89, "word": " internet", "probability": 0.4931640625}, {"start": 1841.89, "end": 1841.99, "word": " service", "probability": 0.297607421875}, {"start": 1841.99, "end": 1842.93, "word": " and", "probability": 0.267822265625}, {"start": 1842.93, "end": 1844.29, "word": " internet", "probability": 0.56005859375}, {"start": 1844.29, "end": 1844.59, "word": " companies", "probability": 0.81201171875}, {"start": 1844.59, "end": 1844.93, "word": " are", "probability": 0.290283203125}, {"start": 1844.93, "end": 1845.79, "word": " not", "probability": 0.77783203125}, {"start": 1845.79, "end": 1845.99, "word": " the", "probability": 0.444580078125}, {"start": 1845.99, "end": 1845.99, "word": " ones", "probability": 0.5283203125}, {"start": 1845.99, "end": 1846.01, "word": " that", "probability": 0.2763671875}, {"start": 1846.01, "end": 1846.31, "word": " provide", "probability": 0.69677734375}, {"start": 1846.31, "end": 1846.47, "word": " internet", "probability": 0.7294921875}, {"start": 1846.47, "end": 1847.09, "word": " service", "probability": 0.5234375}, {"start": 1847.09, "end": 1847.67, "word": " internet", "probability": 0.353515625}, {"start": 1847.67, "end": 1848.13, "word": " companies", "probability": 0.8662109375}, {"start": 1848.13, "end": 1848.47, "word": " actually", "probability": 0.321044921875}, {"start": 1848.47, "end": 1848.91, "word": " take", "probability": 0.5234375}, {"start": 1848.91, "end": 1849.05, "word": " the", "probability": 0.67041015625}, {"start": 1849.05, "end": 1849.27, "word": " line", "probability": 0.67333984375}, {"start": 1849.27, "end": 1849.49, "word": " from", "probability": 0.7900390625}, {"start": 1849.49, "end": 1849.83, "word": " the", "probability": 0.60888671875}, {"start": 1849.83, "end": 1850.15, "word": " internet", "probability": 0.890625}, {"start": 1850.15, "end": 1850.45, "word": " service", "probability": 0.87060546875}, {"start": 1850.45, "end": 1851.07, "word": " provider", "probability": 0.93603515625}, {"start": 1851.07, "end": 1851.89, "word": " and", "probability": 0.438232421875}, {"start": 1851.89, "end": 1852.95, "word": " I", "probability": 0.459716796875}, {"start": 1852.95, "end": 1853.13, "word": " connect", "probability": 0.7998046875}, {"start": 1853.13, "end": 1853.51, "word": " to", "probability": 0.6328125}, {"start": 1853.51, "end": 1853.73, "word": " their", "probability": 0.78173828125}, {"start": 1853.73, "end": 1854.19, "word": " server", "probability": 0.818359375}, {"start": 1854.19, "end": 1855.43, "word": " because", "probability": 0.79541015625}, {"start": 1855.43, "end": 1855.71, "word": " their", "probability": 0.65234375}, {"start": 1855.71, "end": 1856.07, "word": " server", "probability": 0.90625}, {"start": 1856.07, "end": 1856.41, "word": " is", "probability": 0.88916015625}, {"start": 1856.41, "end": 1856.81, "word": " like", "probability": 0.272705078125}, {"start": 1856.81, "end": 1856.99, "word": " a", "probability": 0.74560546875}, {"start": 1856.99, "end": 1857.31, "word": " proxy", "probability": 0.9716796875}, {"start": 1857.31, "end": 1858.11, "word": " it", "probability": 0.42724609375}, {"start": 1858.11, "end": 1858.19, "word": " is", "probability": 0.385986328125}, {"start": 1858.19, "end": 1858.25, "word": " not", "probability": 0.908203125}, {"start": 1858.25, "end": 1858.41, "word": " them", "probability": 0.250244140625}, {"start": 1858.41, "end": 1858.45, "word": " that", "probability": 0.587890625}, {"start": 1858.45, "end": 1858.69, "word": " provides", "probability": 0.759765625}, {"start": 1858.69, "end": 1859.11, "word": " internet", "probability": 0.68896484375}, {"start": 1859.11, "end": 1859.39, "word": " service,", "probability": 0.73046875}, {"start": 1859.49, "end": 1859.57, "word": " it", "probability": 0.5234375}, {"start": 1859.57, "end": 1859.57, "word": " is", "probability": 0.75439453125}, {"start": 1859.57, "end": 1860.07, "word": " them", "probability": 0.3974609375}, {"start": 1860.07, "end": 1860.11, "word": " that", "probability": 0.736328125}, {"start": 1860.11, "end": 1860.37, "word": " connects", "probability": 0.68798828125}, {"start": 1860.37, "end": 1860.59, "word": " me", "probability": 0.6962890625}, {"start": 1860.59, "end": 1860.69, "word": " to", "probability": 0.72705078125}, {"start": 1860.69, "end": 1860.73, "word": " the", "probability": 0.55419921875}, {"start": 1860.73, "end": 1861.17, "word": " internet", "probability": 0.88525390625}, {"start": 1861.17, "end": 1861.69, "word": " there", "probability": 0.625}, {"start": 1861.69, "end": 1861.73, "word": " is", "probability": 0.85986328125}, {"start": 1861.73, "end": 1861.81, "word": " a", "probability": 0.88134765625}, {"start": 1861.81, "end": 1861.93, "word": " difference", "probability": 0.83642578125}, {"start": 1861.93, "end": 1862.11, "word": " between", "probability": 0.80712890625}, {"start": 1862.11, "end": 1862.19, "word": " the", "probability": 0.3779296875}, {"start": 1862.19, "end": 1862.57, "word": " two", "probability": 0.837890625}, {"start": 1862.57, "end": 1862.57, "word": " words", "probability": 0.7607421875}, {"start": 1862.57, "end": 1863.53, "word": " this", "probability": 0.625}, {"start": 1863.53, "end": 1863.65, "word": " is", "probability": 0.91455078125}, {"start": 1863.65, "end": 1863.83, "word": " the", "probability": 0.88232421875}, {"start": 1863.83, "end": 1864.01, "word": " source", "probability": 0.64013671875}, {"start": 1864.01, "end": 1864.11, "word": " of", "probability": 0.9443359375}, {"start": 1864.11, "end": 1864.19, "word": " the", "probability": 0.4609375}, {"start": 1864.19, "end": 1864.53, "word": " internet", "probability": 0.91796875}, {"start": 1864.53, "end": 1865.19, "word": " and", "probability": 0.28271484375}, {"start": 1865.19, "end": 1865.29, "word": " this", "probability": 0.84716796875}, {"start": 1865.29, "end": 1865.35, "word": " is", "probability": 0.8916015625}, {"start": 1865.35, "end": 1865.57, "word": " just", "probability": 0.560546875}, {"start": 1865.57, "end": 1865.77, "word": " a", "probability": 0.66552734375}, {"start": 1865.77, "end": 1865.97, "word": " connection", "probability": 0.64013671875}], "temperature": 1.0}, {"id": 75, "seek": 187030, "start": 1867.02, "end": 1870.3, "text": "But through this saver, he controls it", "tokens": [7835, 807, 341, 601, 331, 11, 415, 9003, 309], "avg_logprob": -0.6671874761581421, "compression_ratio": 0.8636363636363636, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1867.02, "end": 1867.7, "word": "But", "probability": 0.1949462890625}, {"start": 1867.7, "end": 1868.04, "word": " through", "probability": 0.62841796875}, {"start": 1868.04, "end": 1868.34, "word": " this", "probability": 0.72412109375}, {"start": 1868.34, "end": 1868.68, "word": " saver,", "probability": 0.6190185546875}, {"start": 1869.44, "end": 1869.6, "word": " he", "probability": 0.69140625}, {"start": 1869.6, "end": 1870.0, "word": " controls", "probability": 0.47314453125}, {"start": 1870.0, "end": 1870.3, "word": " it", "probability": 0.435302734375}], "temperature": 1.0}, {"id": 76, "seek": 189854, "start": 1871.0, "end": 1898.54, "text": "Here, I add the existing restrictions, such as the speed of my communication, the date of the subscription, what I am allowed to do, what are my rights, everything is controlled through the server. This is what we call the proxy server, which is the literal translation of the word proxy, the agent, or in our language, we call it the intermediary, for example, because it comes from somewhere in between the two. So, actually, the proxy does control.", "tokens": [17685, 11, 286, 909, 264, 6741, 14191, 11, 1270, 382, 264, 3073, 295, 452, 6101, 11, 264, 4002, 295, 264, 17231, 11, 437, 286, 669, 4350, 281, 360, 11, 437, 366, 452, 4601, 11, 1203, 307, 10164, 807, 264, 7154, 13, 639, 307, 437, 321, 818, 264, 29690, 7154, 11, 597, 307, 264, 20411, 12853, 295, 264, 1349, 29690, 11, 264, 9461, 11, 420, 294, 527, 2856, 11, 321, 818, 309, 264, 15184, 822, 11, 337, 1365, 11, 570, 309, 1487, 490, 4079, 294, 1296, 264, 732, 13, 407, 11, 767, 11, 264, 29690, 775, 1969, 13], "avg_logprob": -0.55325257109136, "compression_ratio": 1.7346153846153847, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1871.0, "end": 1871.28, "word": "Here,", "probability": 0.459716796875}, {"start": 1871.36, "end": 1871.4, "word": " I", "probability": 0.84912109375}, {"start": 1871.4, "end": 1871.54, "word": " add", "probability": 0.55126953125}, {"start": 1871.54, "end": 1871.7, "word": " the", "probability": 0.6142578125}, {"start": 1871.7, "end": 1872.46, "word": " existing", "probability": 0.416259765625}, {"start": 1872.46, "end": 1872.76, "word": " restrictions,", "probability": 0.7724609375}, {"start": 1873.54, "end": 1874.06, "word": " such", "probability": 0.4560546875}, {"start": 1874.06, "end": 1874.18, "word": " as", "probability": 0.978515625}, {"start": 1874.18, "end": 1874.38, "word": " the", "probability": 0.253173828125}, {"start": 1874.38, "end": 1874.58, "word": " speed", "probability": 0.80126953125}, {"start": 1874.58, "end": 1874.7, "word": " of", "probability": 0.92041015625}, {"start": 1874.7, "end": 1875.06, "word": " my", "probability": 0.366455078125}, {"start": 1875.06, "end": 1875.32, "word": " communication,", "probability": 0.2056884765625}, {"start": 1876.22, "end": 1876.64, "word": " the", "probability": 0.455810546875}, {"start": 1876.64, "end": 1877.44, "word": " date", "probability": 0.280029296875}, {"start": 1877.44, "end": 1877.82, "word": " of", "probability": 0.416015625}, {"start": 1877.82, "end": 1878.0, "word": " the", "probability": 0.244140625}, {"start": 1878.0, "end": 1879.08, "word": " subscription,", "probability": 0.44189453125}, {"start": 1879.5, "end": 1879.94, "word": " what", "probability": 0.43505859375}, {"start": 1879.94, "end": 1880.04, "word": " I", "probability": 0.274658203125}, {"start": 1880.04, "end": 1880.08, "word": " am", "probability": 0.465576171875}, {"start": 1880.08, "end": 1880.42, "word": " allowed", "probability": 0.87158203125}, {"start": 1880.42, "end": 1880.54, "word": " to", "probability": 0.97314453125}, {"start": 1880.54, "end": 1880.82, "word": " do,", "probability": 0.94384765625}, {"start": 1880.98, "end": 1881.1, "word": " what", "probability": 0.45703125}, {"start": 1881.1, "end": 1881.12, "word": " are", "probability": 0.6953125}, {"start": 1881.12, "end": 1881.16, "word": " my", "probability": 0.96923828125}, {"start": 1881.16, "end": 1881.5, "word": " rights,", "probability": 0.515625}, {"start": 1881.8, "end": 1881.98, "word": " everything", "probability": 0.1861572265625}, {"start": 1881.98, "end": 1882.12, "word": " is", "probability": 0.794921875}, {"start": 1882.12, "end": 1882.44, "word": " controlled", "probability": 0.72900390625}, {"start": 1882.44, "end": 1882.94, "word": " through", "probability": 0.418212890625}, {"start": 1882.94, "end": 1884.3, "word": " the", "probability": 0.76220703125}, {"start": 1884.3, "end": 1884.6, "word": " server.", "probability": 0.76171875}, {"start": 1884.74, "end": 1884.86, "word": " This", "probability": 0.445556640625}, {"start": 1884.86, "end": 1885.04, "word": " is", "probability": 0.85205078125}, {"start": 1885.04, "end": 1885.18, "word": " what", "probability": 0.7275390625}, {"start": 1885.18, "end": 1885.36, "word": " we", "probability": 0.92431640625}, {"start": 1885.36, "end": 1885.6, "word": " call", "probability": 0.89306640625}, {"start": 1885.6, "end": 1886.16, "word": " the", "probability": 0.44384765625}, {"start": 1886.16, "end": 1886.56, "word": " proxy", "probability": 0.9501953125}, {"start": 1886.56, "end": 1887.46, "word": " server,", "probability": 0.89599609375}, {"start": 1888.02, "end": 1888.06, "word": " which", "probability": 0.85107421875}, {"start": 1888.06, "end": 1888.24, "word": " is", "probability": 0.7802734375}, {"start": 1888.24, "end": 1888.36, "word": " the", "probability": 0.765625}, {"start": 1888.36, "end": 1888.44, "word": " literal", "probability": 0.1878662109375}, {"start": 1888.44, "end": 1888.44, "word": " translation", "probability": 0.69677734375}, {"start": 1888.44, "end": 1888.56, "word": " of", "probability": 0.79931640625}, {"start": 1888.56, "end": 1888.56, "word": " the", "probability": 0.5712890625}, {"start": 1888.56, "end": 1888.56, "word": " word", "probability": 0.876953125}, {"start": 1888.56, "end": 1888.96, "word": " proxy,", "probability": 0.9443359375}, {"start": 1889.9, "end": 1890.08, "word": " the", "probability": 0.2861328125}, {"start": 1890.08, "end": 1890.52, "word": " agent,", "probability": 0.5869140625}, {"start": 1891.32, "end": 1891.6, "word": " or", "probability": 0.8935546875}, {"start": 1891.6, "end": 1891.82, "word": " in", "probability": 0.71923828125}, {"start": 1891.82, "end": 1892.22, "word": " our", "probability": 0.82666015625}, {"start": 1892.22, "end": 1892.4, "word": " language,", "probability": 0.70556640625}, {"start": 1892.56, "end": 1892.56, "word": " we", "probability": 0.6162109375}, {"start": 1892.56, "end": 1892.8, "word": " call", "probability": 0.8515625}, {"start": 1892.8, "end": 1892.9, "word": " it", "probability": 0.7041015625}, {"start": 1892.9, "end": 1893.0, "word": " the", "probability": 0.501953125}, {"start": 1893.0, "end": 1893.28, "word": " intermediary,", "probability": 0.581298828125}, {"start": 1893.4, "end": 1893.5, "word": " for", "probability": 0.580078125}, {"start": 1893.5, "end": 1893.64, "word": " example,", "probability": 0.9580078125}, {"start": 1893.84, "end": 1894.02, "word": " because", "probability": 0.87109375}, {"start": 1894.02, "end": 1894.16, "word": " it", "probability": 0.36279296875}, {"start": 1894.16, "end": 1894.24, "word": " comes", "probability": 0.438720703125}, {"start": 1894.24, "end": 1894.46, "word": " from", "probability": 0.525390625}, {"start": 1894.46, "end": 1894.6, "word": " somewhere", "probability": 0.368408203125}, {"start": 1894.6, "end": 1895.14, "word": " in", "probability": 0.331298828125}, {"start": 1895.14, "end": 1895.42, "word": " between", "probability": 0.69189453125}, {"start": 1895.42, "end": 1895.74, "word": " the", "probability": 0.359130859375}, {"start": 1895.74, "end": 1895.96, "word": " two.", "probability": 0.923828125}, {"start": 1896.48, "end": 1896.68, "word": " So,", "probability": 0.76318359375}, {"start": 1896.72, "end": 1897.02, "word": " actually,", "probability": 0.35888671875}, {"start": 1897.18, "end": 1897.3, "word": " the", "probability": 0.76171875}, {"start": 1897.3, "end": 1897.62, "word": " proxy", "probability": 0.97119140625}, {"start": 1897.62, "end": 1897.86, "word": " does", "probability": 0.4951171875}, {"start": 1897.86, "end": 1898.54, "word": " control.", "probability": 0.62646484375}], "temperature": 1.0}, {"id": 77, "seek": 192756, "start": 1900.28, "end": 1927.56, "text": "What does control mean? It means to control. Ok? Now, the term proxy server was actually born in the networks. Now, the same concept that I do something in the middle that is controlled by me in terms of internet capabilities, we can apply the same idea to object-oriented programming. Now, how do we apply it?", "tokens": [3748, 775, 1969, 914, 30, 467, 1355, 281, 1969, 13, 3477, 30, 823, 11, 264, 1433, 29690, 7154, 390, 767, 4232, 294, 264, 9590, 13, 823, 11, 264, 912, 3410, 300, 286, 360, 746, 294, 264, 2808, 300, 307, 10164, 538, 385, 294, 2115, 295, 4705, 10862, 11, 321, 393, 3079, 264, 912, 1558, 281, 2657, 12, 27414, 9410, 13, 823, 11, 577, 360, 321, 3079, 309, 30], "avg_logprob": -0.639492746712505, "compression_ratio": 1.5897435897435896, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 1900.28, "end": 1900.56, "word": "What", "probability": 0.370361328125}, {"start": 1900.56, "end": 1900.66, "word": " does", "probability": 0.591796875}, {"start": 1900.66, "end": 1901.2, "word": " control", "probability": 0.4462890625}, {"start": 1901.2, "end": 1901.22, "word": " mean?", "probability": 0.91357421875}, {"start": 1901.72, "end": 1901.9, "word": " It", "probability": 0.1907958984375}, {"start": 1901.9, "end": 1901.9, "word": " means", "probability": 0.1722412109375}, {"start": 1901.9, "end": 1901.9, "word": " to", "probability": 0.486572265625}, {"start": 1901.9, "end": 1902.14, "word": " control.", "probability": 0.642578125}, {"start": 1903.04, "end": 1903.18, "word": " Ok?", "probability": 0.19921875}, {"start": 1903.84, "end": 1904.16, "word": " Now,", "probability": 0.168701171875}, {"start": 1904.9, "end": 1905.52, "word": " the", "probability": 0.255126953125}, {"start": 1905.52, "end": 1906.26, "word": " term", "probability": 0.7001953125}, {"start": 1906.26, "end": 1906.6, "word": " proxy", "probability": 0.8994140625}, {"start": 1906.6, "end": 1906.98, "word": " server", "probability": 0.82958984375}, {"start": 1906.98, "end": 1907.04, "word": " was", "probability": 0.370361328125}, {"start": 1907.04, "end": 1907.16, "word": " actually", "probability": 0.310546875}, {"start": 1907.16, "end": 1907.24, "word": " born", "probability": 0.363037109375}, {"start": 1907.24, "end": 1907.36, "word": " in", "probability": 0.425537109375}, {"start": 1907.36, "end": 1907.46, "word": " the", "probability": 0.427734375}, {"start": 1907.46, "end": 1907.76, "word": " networks.", "probability": 0.2227783203125}, {"start": 1908.72, "end": 1908.9, "word": " Now,", "probability": 0.483642578125}, {"start": 1908.96, "end": 1909.24, "word": " the", "probability": 0.62451171875}, {"start": 1909.24, "end": 1909.24, "word": " same", "probability": 0.7880859375}, {"start": 1909.24, "end": 1909.7, "word": " concept", "probability": 0.7060546875}, {"start": 1909.7, "end": 1910.62, "word": " that", "probability": 0.446044921875}, {"start": 1910.62, "end": 1910.82, "word": " I", "probability": 0.83935546875}, {"start": 1910.82, "end": 1911.12, "word": " do", "probability": 0.53466796875}, {"start": 1911.12, "end": 1911.44, "word": " something", "probability": 0.82373046875}, {"start": 1911.44, "end": 1911.58, "word": " in", "probability": 0.81298828125}, {"start": 1911.58, "end": 1911.74, "word": " the", "probability": 0.6923828125}, {"start": 1911.74, "end": 1911.9, "word": " middle", "probability": 0.556640625}, {"start": 1911.9, "end": 1912.42, "word": " that", "probability": 0.11627197265625}, {"start": 1912.42, "end": 1912.56, "word": " is", "probability": 0.2415771484375}, {"start": 1912.56, "end": 1913.1, "word": " controlled", "probability": 0.70654296875}, {"start": 1913.1, "end": 1913.9, "word": " by", "probability": 0.56591796875}, {"start": 1913.9, "end": 1914.08, "word": " me", "probability": 0.469970703125}, {"start": 1914.08, "end": 1914.46, "word": " in", "probability": 0.489501953125}, {"start": 1914.46, "end": 1914.66, "word": " terms", "probability": 0.2861328125}, {"start": 1914.66, "end": 1915.22, "word": " of", "probability": 0.96923828125}, {"start": 1915.22, "end": 1916.44, "word": " internet", "probability": 0.51611328125}, {"start": 1916.44, "end": 1916.62, "word": " capabilities,", "probability": 0.131103515625}, {"start": 1916.98, "end": 1918.08, "word": " we", "probability": 0.34375}, {"start": 1918.08, "end": 1918.88, "word": " can", "probability": 0.89990234375}, {"start": 1918.88, "end": 1919.2, "word": " apply", "probability": 0.487548828125}, {"start": 1919.2, "end": 1919.4, "word": " the", "probability": 0.7939453125}, {"start": 1919.4, "end": 1919.56, "word": " same", "probability": 0.8818359375}, {"start": 1919.56, "end": 1920.02, "word": " idea", "probability": 0.6396484375}, {"start": 1920.02, "end": 1920.58, "word": " to", "probability": 0.54833984375}, {"start": 1920.58, "end": 1921.84, "word": " object", "probability": 0.78857421875}, {"start": 1921.84, "end": 1922.38, "word": "-oriented", "probability": 0.70654296875}, {"start": 1922.38, "end": 1923.1, "word": " programming.", "probability": 0.88720703125}, {"start": 1924.52, "end": 1925.16, "word": " Now,", "probability": 0.7978515625}, {"start": 1925.28, "end": 1925.64, "word": " how", "probability": 0.923828125}, {"start": 1925.64, "end": 1925.7, "word": " do", "probability": 0.271728515625}, {"start": 1925.7, "end": 1927.04, "word": " we", "probability": 0.90576171875}, {"start": 1927.04, "end": 1927.32, "word": " apply", "probability": 0.72998046875}, {"start": 1927.32, "end": 1927.56, "word": " it?", "probability": 0.55859375}], "temperature": 1.0}, {"id": 78, "seek": 195342, "start": 1931.22, "end": 1953.42, "text": " For example, I have an object here and I want to restrict access to it or control it. How? For example, there can be a set of methods. There is a method that I want to cancel. The client does not want to see it or use it. Or, for example, there is a method that I want to postpone its adoption.", "tokens": [1171, 1365, 11, 286, 362, 364, 2657, 510, 293, 286, 528, 281, 7694, 2105, 281, 309, 420, 1969, 309, 13, 1012, 30, 1171, 1365, 11, 456, 393, 312, 257, 992, 295, 7150, 13, 821, 307, 257, 3170, 300, 286, 528, 281, 10373, 13, 440, 6423, 775, 406, 528, 281, 536, 309, 420, 764, 309, 13, 1610, 11, 337, 1365, 11, 456, 307, 257, 3170, 300, 286, 528, 281, 28973, 546, 1080, 19215, 13], "avg_logprob": -0.4594594707360139, "compression_ratio": 1.7878787878787878, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1931.22, "end": 1931.46, "word": " For", "probability": 0.19775390625}, {"start": 1931.46, "end": 1931.84, "word": " example,", "probability": 0.8857421875}, {"start": 1932.58, "end": 1932.74, "word": " I", "probability": 0.3701171875}, {"start": 1932.74, "end": 1932.86, "word": " have", "probability": 0.76220703125}, {"start": 1932.86, "end": 1933.16, "word": " an", "probability": 0.7216796875}, {"start": 1933.16, "end": 1933.38, "word": " object", "probability": 0.96337890625}, {"start": 1933.38, "end": 1933.7, "word": " here", "probability": 0.56982421875}, {"start": 1933.7, "end": 1934.92, "word": " and", "probability": 0.481201171875}, {"start": 1934.92, "end": 1935.1, "word": " I", "probability": 0.9580078125}, {"start": 1935.1, "end": 1935.28, "word": " want", "probability": 0.6630859375}, {"start": 1935.28, "end": 1936.14, "word": " to", "probability": 0.90576171875}, {"start": 1936.14, "end": 1936.5, "word": " restrict", "probability": 0.1644287109375}, {"start": 1936.5, "end": 1936.86, "word": " access", "probability": 0.487060546875}, {"start": 1936.86, "end": 1937.14, "word": " to", "probability": 0.87890625}, {"start": 1937.14, "end": 1937.24, "word": " it", "probability": 0.55615234375}, {"start": 1937.24, "end": 1937.58, "word": " or", "probability": 0.515625}, {"start": 1937.58, "end": 1938.0, "word": " control", "probability": 0.52294921875}, {"start": 1938.0, "end": 1938.38, "word": " it.", "probability": 0.90185546875}, {"start": 1938.9, "end": 1939.22, "word": " How?", "probability": 0.6015625}, {"start": 1939.88, "end": 1940.36, "word": " For", "probability": 0.55908203125}, {"start": 1940.36, "end": 1940.52, "word": " example,", "probability": 0.94189453125}, {"start": 1940.62, "end": 1940.68, "word": " there", "probability": 0.79345703125}, {"start": 1940.68, "end": 1940.8, "word": " can", "probability": 0.25634765625}, {"start": 1940.8, "end": 1941.12, "word": " be", "probability": 0.95654296875}, {"start": 1941.12, "end": 1941.28, "word": " a", "probability": 0.82958984375}, {"start": 1941.28, "end": 1941.52, "word": " set", "probability": 0.51220703125}, {"start": 1941.52, "end": 1941.72, "word": " of", "probability": 0.9697265625}, {"start": 1941.72, "end": 1942.12, "word": " methods.", "probability": 0.89697265625}, {"start": 1942.94, "end": 1943.14, "word": " There", "probability": 0.31640625}, {"start": 1943.14, "end": 1943.14, "word": " is", "probability": 0.59912109375}, {"start": 1943.14, "end": 1943.24, "word": " a", "probability": 0.85205078125}, {"start": 1943.24, "end": 1943.44, "word": " method", "probability": 0.92626953125}, {"start": 1943.44, "end": 1943.76, "word": " that", "probability": 0.47412109375}, {"start": 1943.76, "end": 1943.84, "word": " I", "probability": 0.912109375}, {"start": 1943.84, "end": 1943.98, "word": " want", "probability": 0.80419921875}, {"start": 1943.98, "end": 1944.08, "word": " to", "probability": 0.9716796875}, {"start": 1944.08, "end": 1944.26, "word": " cancel.", "probability": 0.7734375}, {"start": 1944.44, "end": 1944.8, "word": " The", "probability": 0.47802734375}, {"start": 1944.8, "end": 1945.14, "word": " client", "probability": 0.93994140625}, {"start": 1945.14, "end": 1945.14, "word": " does", "probability": 0.52099609375}, {"start": 1945.14, "end": 1945.14, "word": " not", "probability": 0.94775390625}, {"start": 1945.14, "end": 1945.14, "word": " want", "probability": 0.69580078125}, {"start": 1945.14, "end": 1945.24, "word": " to", "probability": 0.96044921875}, {"start": 1945.24, "end": 1945.48, "word": " see", "probability": 0.658203125}, {"start": 1945.48, "end": 1945.56, "word": " it", "probability": 0.7470703125}, {"start": 1945.56, "end": 1945.68, "word": " or", "probability": 0.81884765625}, {"start": 1945.68, "end": 1945.96, "word": " use", "probability": 0.87744140625}, {"start": 1945.96, "end": 1946.94, "word": " it.", "probability": 0.95068359375}, {"start": 1947.38, "end": 1947.86, "word": " Or,", "probability": 0.9326171875}, {"start": 1948.02, "end": 1948.04, "word": " for", "probability": 0.67724609375}, {"start": 1948.04, "end": 1948.2, "word": " example,", "probability": 0.958984375}, {"start": 1948.4, "end": 1948.5, "word": " there", "probability": 0.8291015625}, {"start": 1948.5, "end": 1948.54, "word": " is", "probability": 0.9091796875}, {"start": 1948.54, "end": 1948.64, "word": " a", "probability": 0.98193359375}, {"start": 1948.64, "end": 1949.02, "word": " method", "probability": 0.9287109375}, {"start": 1949.02, "end": 1949.96, "word": " that", "probability": 0.85546875}, {"start": 1949.96, "end": 1949.96, "word": " I", "probability": 0.94775390625}, {"start": 1949.96, "end": 1952.54, "word": " want", "probability": 0.767578125}, {"start": 1952.54, "end": 1952.54, "word": " to", "probability": 0.96533203125}, {"start": 1952.54, "end": 1952.9, "word": " postpone", "probability": 0.665283203125}, {"start": 1952.9, "end": 1953.1, "word": " its", "probability": 0.51318359375}, {"start": 1953.1, "end": 1953.42, "word": " adoption.", "probability": 0.1024169921875}], "temperature": 1.0}, {"id": 79, "seek": 198162, "start": 1956.54, "end": 1981.62, "text": "In other words, I want to make a control or change in order to execute this object So how do I make this change? The same idea as the decorator, that this object that I control, I wrap it in another object For example, there are methods x, y and z For example, I can delete z", "tokens": [4575, 661, 2283, 11, 286, 528, 281, 652, 257, 1969, 420, 1319, 294, 1668, 281, 14483, 341, 2657, 407, 577, 360, 286, 652, 341, 1319, 30, 440, 912, 1558, 382, 264, 7919, 1639, 11, 300, 341, 2657, 300, 286, 1969, 11, 286, 7019, 309, 294, 1071, 2657, 1171, 1365, 11, 456, 366, 7150, 2031, 11, 288, 293, 710, 1171, 1365, 11, 286, 393, 12097, 710], "avg_logprob": -0.5757576001412941, "compression_ratio": 1.608187134502924, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1956.5400000000002, "end": 1957.1000000000001, "word": "In", "probability": 0.109619140625}, {"start": 1957.1000000000001, "end": 1957.66, "word": " other", "probability": 0.71923828125}, {"start": 1957.66, "end": 1957.66, "word": " words,", "probability": 0.8701171875}, {"start": 1957.86, "end": 1957.98, "word": " I", "probability": 0.5595703125}, {"start": 1957.98, "end": 1958.2, "word": " want", "probability": 0.3486328125}, {"start": 1958.2, "end": 1958.26, "word": " to", "probability": 0.96142578125}, {"start": 1958.26, "end": 1958.42, "word": " make", "probability": 0.2098388671875}, {"start": 1958.42, "end": 1958.62, "word": " a", "probability": 0.734375}, {"start": 1958.62, "end": 1958.94, "word": " control", "probability": 0.70263671875}, {"start": 1958.94, "end": 1959.18, "word": " or", "probability": 0.53466796875}, {"start": 1959.18, "end": 1959.66, "word": " change", "probability": 0.64306640625}, {"start": 1959.66, "end": 1959.9, "word": " in", "probability": 0.441162109375}, {"start": 1959.9, "end": 1960.28, "word": " order", "probability": 0.154541015625}, {"start": 1960.28, "end": 1960.44, "word": " to", "probability": 0.96728515625}, {"start": 1960.44, "end": 1960.96, "word": " execute", "probability": 0.474853515625}, {"start": 1960.96, "end": 1961.82, "word": " this", "probability": 0.59765625}, {"start": 1961.82, "end": 1962.2, "word": " object", "probability": 0.93359375}, {"start": 1962.2, "end": 1963.56, "word": " So", "probability": 0.341064453125}, {"start": 1963.56, "end": 1963.88, "word": " how", "probability": 0.62548828125}, {"start": 1963.88, "end": 1963.88, "word": " do", "probability": 0.3876953125}, {"start": 1963.88, "end": 1964.42, "word": " I", "probability": 0.9462890625}, {"start": 1964.42, "end": 1964.64, "word": " make", "probability": 0.33642578125}, {"start": 1964.64, "end": 1964.64, "word": " this", "probability": 0.78857421875}, {"start": 1964.64, "end": 1964.64, "word": " change?", "probability": 0.89794921875}, {"start": 1964.94, "end": 1965.44, "word": " The", "probability": 0.25439453125}, {"start": 1965.44, "end": 1965.44, "word": " same", "probability": 0.85791015625}, {"start": 1965.44, "end": 1965.8, "word": " idea", "probability": 0.2471923828125}, {"start": 1965.8, "end": 1965.92, "word": " as", "probability": 0.3466796875}, {"start": 1965.92, "end": 1966.0, "word": " the", "probability": 0.393798828125}, {"start": 1966.0, "end": 1966.54, "word": " decorator,", "probability": 0.914306640625}, {"start": 1966.96, "end": 1967.1, "word": " that", "probability": 0.42626953125}, {"start": 1967.1, "end": 1967.36, "word": " this", "probability": 0.48486328125}, {"start": 1967.36, "end": 1967.8, "word": " object", "probability": 0.7705078125}, {"start": 1967.8, "end": 1968.02, "word": " that", "probability": 0.34814453125}, {"start": 1968.02, "end": 1968.56, "word": " I", "probability": 0.75146484375}, {"start": 1968.56, "end": 1968.86, "word": " control,", "probability": 0.36279296875}, {"start": 1969.14, "end": 1969.28, "word": " I", "probability": 0.496337890625}, {"start": 1969.28, "end": 1969.56, "word": " wrap", "probability": 0.59033203125}, {"start": 1969.56, "end": 1969.76, "word": " it", "probability": 0.75}, {"start": 1969.76, "end": 1969.78, "word": " in", "probability": 0.36962890625}, {"start": 1969.78, "end": 1970.76, "word": " another", "probability": 0.57080078125}, {"start": 1970.76, "end": 1973.5, "word": " object", "probability": 0.970703125}, {"start": 1973.5, "end": 1974.02, "word": " For", "probability": 0.63232421875}, {"start": 1974.02, "end": 1974.86, "word": " example,", "probability": 0.9072265625}, {"start": 1975.16, "end": 1975.42, "word": " there", "probability": 0.329833984375}, {"start": 1975.42, "end": 1975.52, "word": " are", "probability": 0.87353515625}, {"start": 1975.52, "end": 1975.92, "word": " methods", "probability": 0.84814453125}, {"start": 1975.92, "end": 1976.28, "word": " x,", "probability": 0.67138671875}, {"start": 1976.44, "end": 1976.72, "word": " y", "probability": 0.82275390625}, {"start": 1976.72, "end": 1976.9, "word": " and", "probability": 0.4853515625}, {"start": 1976.9, "end": 1977.12, "word": " z", "probability": 0.99951171875}, {"start": 1977.12, "end": 1979.98, "word": " For", "probability": 0.43310546875}, {"start": 1979.98, "end": 1980.74, "word": " example,", "probability": 0.92919921875}, {"start": 1980.84, "end": 1980.94, "word": " I", "probability": 0.8818359375}, {"start": 1980.94, "end": 1981.04, "word": " can", "probability": 0.52099609375}, {"start": 1981.04, "end": 1981.24, "word": " delete", "probability": 0.35009765625}, {"start": 1981.24, "end": 1981.62, "word": " z", "probability": 0.72021484375}], "temperature": 1.0}, {"id": 80, "seek": 200341, "start": 1985.17, "end": 2003.41, "text": "The idea behind the decorator is that you create the same methods x, y, and z, and then what do you do? You change them, right? Because if I create x, y, and z, it is as if I blocked someone and the method stopped working.", "tokens": [2278, 1558, 2261, 264, 7919, 1639, 307, 300, 291, 1884, 264, 912, 7150, 2031, 11, 288, 11, 293, 710, 11, 293, 550, 437, 360, 291, 360, 30, 509, 1319, 552, 11, 558, 30, 1436, 498, 286, 1884, 2031, 11, 288, 11, 293, 710, 11, 309, 307, 382, 498, 286, 15470, 1580, 293, 264, 3170, 5936, 1364, 13], "avg_logprob": -0.7063577586206896, "compression_ratio": 1.48, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1985.1699999999998, "end": 1985.59, "word": "The", "probability": 0.2012939453125}, {"start": 1985.59, "end": 1986.01, "word": " idea", "probability": 0.57470703125}, {"start": 1986.01, "end": 1986.17, "word": " behind", "probability": 0.591796875}, {"start": 1986.17, "end": 1986.27, "word": " the", "probability": 0.4306640625}, {"start": 1986.27, "end": 1986.75, "word": " decorator", "probability": 0.709716796875}, {"start": 1986.75, "end": 1986.89, "word": " is", "probability": 0.78857421875}, {"start": 1986.89, "end": 1986.97, "word": " that", "probability": 0.58251953125}, {"start": 1986.97, "end": 1988.33, "word": " you", "probability": 0.395751953125}, {"start": 1988.33, "end": 1989.51, "word": " create", "probability": 0.1954345703125}, {"start": 1989.51, "end": 1990.21, "word": " the", "probability": 0.33203125}, {"start": 1990.21, "end": 1990.21, "word": " same", "probability": 0.73095703125}, {"start": 1990.21, "end": 1990.21, "word": " methods", "probability": 0.65087890625}, {"start": 1990.21, "end": 1990.21, "word": " x,", "probability": 0.1854248046875}, {"start": 1990.41, "end": 1990.61, "word": " y,", "probability": 0.595703125}, {"start": 1990.71, "end": 1990.83, "word": " and", "probability": 0.475830078125}, {"start": 1990.83, "end": 1990.99, "word": " z,", "probability": 0.99658203125}, {"start": 1991.03, "end": 1991.11, "word": " and", "probability": 0.57080078125}, {"start": 1991.11, "end": 1991.35, "word": " then", "probability": 0.60302734375}, {"start": 1991.35, "end": 1991.47, "word": " what", "probability": 0.2144775390625}, {"start": 1991.47, "end": 1991.53, "word": " do", "probability": 0.52978515625}, {"start": 1991.53, "end": 1991.57, "word": " you", "probability": 0.95751953125}, {"start": 1991.57, "end": 1991.85, "word": " do?", "probability": 0.92578125}, {"start": 1992.75, "end": 1993.01, "word": " You", "probability": 0.5693359375}, {"start": 1993.01, "end": 1993.19, "word": " change", "probability": 0.1611328125}, {"start": 1993.19, "end": 1994.27, "word": " them,", "probability": 0.5322265625}, {"start": 1994.31, "end": 1994.61, "word": " right?", "probability": 0.654296875}, {"start": 1995.07, "end": 1995.43, "word": " Because", "probability": 0.3125}, {"start": 1995.43, "end": 1995.65, "word": " if", "probability": 0.6748046875}, {"start": 1995.65, "end": 1996.29, "word": " I", "probability": 0.56298828125}, {"start": 1996.29, "end": 1996.45, "word": " create", "probability": 0.28076171875}, {"start": 1996.45, "end": 1996.69, "word": " x,", "probability": 0.84423828125}, {"start": 1996.81, "end": 1997.07, "word": " y,", "probability": 0.7841796875}, {"start": 1997.15, "end": 1997.15, "word": " and", "probability": 0.80712890625}, {"start": 1997.15, "end": 1997.71, "word": " z,", "probability": 0.50732421875}, {"start": 1997.95, "end": 1998.07, "word": " it", "probability": 0.5244140625}, {"start": 1998.07, "end": 2000.57, "word": " is", "probability": 0.35693359375}, {"start": 2000.57, "end": 2000.63, "word": " as", "probability": 0.488037109375}, {"start": 2000.63, "end": 2000.83, "word": " if", "probability": 0.87841796875}, {"start": 2000.83, "end": 2001.01, "word": " I", "probability": 0.8740234375}, {"start": 2001.01, "end": 2001.31, "word": " blocked", "probability": 0.146240234375}, {"start": 2001.31, "end": 2001.65, "word": " someone", "probability": 0.466796875}, {"start": 2001.65, "end": 2002.59, "word": " and", "probability": 0.1588134765625}, {"start": 2002.59, "end": 2002.91, "word": " the", "probability": 0.6943359375}, {"start": 2002.91, "end": 2003.15, "word": " method", "probability": 0.93798828125}, {"start": 2003.15, "end": 2003.35, "word": " stopped", "probability": 0.1805419921875}, {"start": 2003.35, "end": 2003.41, "word": " working.", "probability": 0.441162109375}], "temperature": 1.0}, {"id": 81, "seek": 202660, "start": 2005.78, "end": 2026.6, "text": "On the client, right? The client will use the decorator He will see x and y that leads to the object inside, but the z that it has, I deleted it, okay? And another control, we will see examples of it through the example that we will see now So really the proxy pattern is a decorator pattern", "tokens": [11747, 264, 6423, 11, 558, 30, 440, 6423, 486, 764, 264, 7919, 1639, 634, 486, 536, 2031, 293, 288, 300, 6689, 281, 264, 2657, 1854, 11, 457, 264, 710, 300, 309, 575, 11, 286, 22981, 309, 11, 1392, 30, 400, 1071, 1969, 11, 321, 486, 536, 5110, 295, 309, 807, 264, 1365, 300, 321, 486, 536, 586, 407, 534, 264, 29690, 5102, 307, 257, 7919, 1639, 5102], "avg_logprob": -0.5758271988700417, "compression_ratio": 1.6440677966101696, "no_speech_prob": 3.874301910400391e-06, "words": [{"start": 2005.78, "end": 2006.02, "word": "On", "probability": 0.147216796875}, {"start": 2006.02, "end": 2006.14, "word": " the", "probability": 0.7373046875}, {"start": 2006.14, "end": 2006.52, "word": " client,", "probability": 0.900390625}, {"start": 2007.14, "end": 2007.3, "word": " right?", "probability": 0.1724853515625}, {"start": 2007.34, "end": 2007.44, "word": " The", "probability": 0.380126953125}, {"start": 2007.44, "end": 2007.68, "word": " client", "probability": 0.935546875}, {"start": 2007.68, "end": 2007.94, "word": " will", "probability": 0.446533203125}, {"start": 2007.94, "end": 2008.7, "word": " use", "probability": 0.69677734375}, {"start": 2008.7, "end": 2009.72, "word": " the", "probability": 0.43701171875}, {"start": 2009.72, "end": 2010.24, "word": " decorator", "probability": 0.841064453125}, {"start": 2010.24, "end": 2010.56, "word": " He", "probability": 0.1181640625}, {"start": 2010.56, "end": 2010.9, "word": " will", "probability": 0.70361328125}, {"start": 2010.9, "end": 2011.1, "word": " see", "probability": 0.75830078125}, {"start": 2011.1, "end": 2011.32, "word": " x", "probability": 0.62646484375}, {"start": 2011.32, "end": 2011.5, "word": " and", "probability": 0.89404296875}, {"start": 2011.5, "end": 2011.66, "word": " y", "probability": 0.99462890625}, {"start": 2011.66, "end": 2011.78, "word": " that", "probability": 0.25634765625}, {"start": 2011.78, "end": 2012.1, "word": " leads", "probability": 0.3134765625}, {"start": 2012.1, "end": 2012.26, "word": " to", "probability": 0.919921875}, {"start": 2012.26, "end": 2012.32, "word": " the", "probability": 0.85205078125}, {"start": 2012.32, "end": 2012.56, "word": " object", "probability": 0.5849609375}, {"start": 2012.56, "end": 2012.88, "word": " inside,", "probability": 0.4912109375}, {"start": 2012.96, "end": 2013.14, "word": " but", "probability": 0.8515625}, {"start": 2013.14, "end": 2013.28, "word": " the", "probability": 0.375}, {"start": 2013.28, "end": 2013.44, "word": " z", "probability": 0.82958984375}, {"start": 2013.44, "end": 2013.6, "word": " that", "probability": 0.294677734375}, {"start": 2013.6, "end": 2013.8, "word": " it", "probability": 0.330078125}, {"start": 2013.8, "end": 2014.18, "word": " has,", "probability": 0.70654296875}, {"start": 2014.68, "end": 2014.78, "word": " I", "probability": 0.377685546875}, {"start": 2014.78, "end": 2015.02, "word": " deleted", "probability": 0.48046875}, {"start": 2015.02, "end": 2015.92, "word": " it,", "probability": 0.6767578125}, {"start": 2015.92, "end": 2016.32, "word": " okay?", "probability": 0.2919921875}, {"start": 2017.22, "end": 2017.54, "word": " And", "probability": 0.712890625}, {"start": 2017.54, "end": 2017.68, "word": " another", "probability": 0.783203125}, {"start": 2017.68, "end": 2018.56, "word": " control,", "probability": 0.475830078125}, {"start": 2019.04, "end": 2019.16, "word": " we", "probability": 0.395751953125}, {"start": 2019.16, "end": 2019.28, "word": " will", "probability": 0.7802734375}, {"start": 2019.28, "end": 2019.5, "word": " see", "probability": 0.7490234375}, {"start": 2019.5, "end": 2020.34, "word": " examples", "probability": 0.68212890625}, {"start": 2020.34, "end": 2020.54, "word": " of", "probability": 0.81494140625}, {"start": 2020.54, "end": 2020.78, "word": " it", "probability": 0.70068359375}, {"start": 2020.78, "end": 2021.6, "word": " through", "probability": 0.57177734375}, {"start": 2021.6, "end": 2021.82, "word": " the", "probability": 0.78125}, {"start": 2021.82, "end": 2022.0, "word": " example", "probability": 0.3583984375}, {"start": 2022.0, "end": 2022.26, "word": " that", "probability": 0.4228515625}, {"start": 2022.26, "end": 2022.42, "word": " we", "probability": 0.8642578125}, {"start": 2022.42, "end": 2022.46, "word": " will", "probability": 0.64111328125}, {"start": 2022.46, "end": 2022.64, "word": " see", "probability": 0.8916015625}, {"start": 2022.64, "end": 2022.9, "word": " now", "probability": 0.85400390625}, {"start": 2022.9, "end": 2023.58, "word": " So", "probability": 0.56103515625}, {"start": 2023.58, "end": 2024.0, "word": " really", "probability": 0.29736328125}, {"start": 2024.0, "end": 2024.42, "word": " the", "probability": 0.419677734375}, {"start": 2024.42, "end": 2024.72, "word": " proxy", "probability": 0.9794921875}, {"start": 2024.72, "end": 2025.14, "word": " pattern", "probability": 0.8984375}, {"start": 2025.14, "end": 2025.44, "word": " is", "probability": 0.91455078125}, {"start": 2025.44, "end": 2025.78, "word": " a", "probability": 0.59619140625}, {"start": 2025.78, "end": 2026.3, "word": " decorator", "probability": 0.94140625}, {"start": 2026.3, "end": 2026.6, "word": " pattern", "probability": 0.88623046875}], "temperature": 1.0}, {"id": 82, "seek": 205504, "start": 2027.48, "end": 2055.04, "text": "It is an object that encloses another object. Why did they separate it into a design pattern? Because it has another goal. The decorator's goal is not to change the object inside, but to add a new functionality. Because this object encloses this object, but with another goal to control it and make restrictions on it. That's it. It is a decorator pattern, but its goal is different.", "tokens": [3522, 307, 364, 2657, 300, 20987, 4201, 1071, 2657, 13, 1545, 630, 436, 4994, 309, 666, 257, 1715, 5102, 30, 1436, 309, 575, 1071, 3387, 13, 440, 7919, 1639, 311, 3387, 307, 406, 281, 1319, 264, 2657, 1854, 11, 457, 281, 909, 257, 777, 14980, 13, 1436, 341, 2657, 20987, 4201, 341, 2657, 11, 457, 365, 1071, 3387, 281, 1969, 309, 293, 652, 14191, 322, 309, 13, 663, 311, 309, 13, 467, 307, 257, 7919, 1639, 5102, 11, 457, 1080, 3387, 307, 819, 13], "avg_logprob": -0.41874999298768883, "compression_ratio": 1.7897196261682242, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 2027.48, "end": 2027.96, "word": "It", "probability": 0.2890625}, {"start": 2027.96, "end": 2028.1, "word": " is", "probability": 0.388427734375}, {"start": 2028.1, "end": 2028.42, "word": " an", "probability": 0.403076171875}, {"start": 2028.42, "end": 2028.82, "word": " object", "probability": 0.9736328125}, {"start": 2028.82, "end": 2029.0, "word": " that", "probability": 0.369873046875}, {"start": 2029.0, "end": 2029.22, "word": " encloses", "probability": 0.55108642578125}, {"start": 2029.22, "end": 2029.4, "word": " another", "probability": 0.876953125}, {"start": 2029.4, "end": 2029.68, "word": " object.", "probability": 0.9560546875}, {"start": 2030.26, "end": 2030.84, "word": " Why", "probability": 0.427001953125}, {"start": 2030.84, "end": 2030.96, "word": " did", "probability": 0.61865234375}, {"start": 2030.96, "end": 2030.96, "word": " they", "probability": 0.63525390625}, {"start": 2030.96, "end": 2031.16, "word": " separate", "probability": 0.2232666015625}, {"start": 2031.16, "end": 2031.32, "word": " it", "probability": 0.54248046875}, {"start": 2031.32, "end": 2031.32, "word": " into", "probability": 0.313232421875}, {"start": 2031.32, "end": 2031.38, "word": " a", "probability": 0.433837890625}, {"start": 2031.38, "end": 2031.58, "word": " design", "probability": 0.67138671875}, {"start": 2031.58, "end": 2031.9, "word": " pattern?", "probability": 0.8828125}, {"start": 2032.32, "end": 2032.8, "word": " Because", "probability": 0.86376953125}, {"start": 2032.8, "end": 2033.0, "word": " it", "probability": 0.720703125}, {"start": 2033.0, "end": 2033.32, "word": " has", "probability": 0.90185546875}, {"start": 2033.32, "end": 2033.9, "word": " another", "probability": 0.6279296875}, {"start": 2033.9, "end": 2033.9, "word": " goal.", "probability": 0.360107421875}, {"start": 2034.26, "end": 2034.54, "word": " The", "probability": 0.65869140625}, {"start": 2034.54, "end": 2035.14, "word": " decorator's", "probability": 0.7037760416666666}, {"start": 2035.14, "end": 2035.38, "word": " goal", "probability": 0.91796875}, {"start": 2035.38, "end": 2036.5, "word": " is", "probability": 0.75}, {"start": 2036.5, "end": 2036.78, "word": " not", "probability": 0.32763671875}, {"start": 2036.78, "end": 2036.98, "word": " to", "probability": 0.927734375}, {"start": 2036.98, "end": 2037.24, "word": " change", "probability": 0.7939453125}, {"start": 2037.24, "end": 2037.42, "word": " the", "probability": 0.8291015625}, {"start": 2037.42, "end": 2037.7, "word": " object", "probability": 0.76123046875}, {"start": 2037.7, "end": 2038.06, "word": " inside,", "probability": 0.6748046875}, {"start": 2038.88, "end": 2039.48, "word": " but", "probability": 0.57958984375}, {"start": 2039.48, "end": 2040.38, "word": " to", "probability": 0.77978515625}, {"start": 2040.38, "end": 2040.54, "word": " add", "probability": 0.77685546875}, {"start": 2040.54, "end": 2042.16, "word": " a", "probability": 0.52978515625}, {"start": 2042.16, "end": 2042.22, "word": " new", "probability": 0.85791015625}, {"start": 2042.22, "end": 2042.22, "word": " functionality.", "probability": 0.86181640625}, {"start": 2043.56, "end": 2044.16, "word": " Because", "probability": 0.5595703125}, {"start": 2044.16, "end": 2044.38, "word": " this", "probability": 0.75439453125}, {"start": 2044.38, "end": 2044.82, "word": " object", "probability": 0.94189453125}, {"start": 2044.82, "end": 2045.18, "word": " encloses", "probability": 0.672607421875}, {"start": 2045.18, "end": 2045.38, "word": " this", "probability": 0.53662109375}, {"start": 2045.38, "end": 2045.72, "word": " object,", "probability": 0.921875}, {"start": 2046.1, "end": 2046.22, "word": " but", "probability": 0.8017578125}, {"start": 2046.22, "end": 2046.36, "word": " with", "probability": 0.7333984375}, {"start": 2046.36, "end": 2046.92, "word": " another", "probability": 0.81787109375}, {"start": 2046.92, "end": 2046.98, "word": " goal", "probability": 0.845703125}, {"start": 2046.98, "end": 2047.82, "word": " to", "probability": 0.227294921875}, {"start": 2047.82, "end": 2048.3, "word": " control", "probability": 0.58203125}, {"start": 2048.3, "end": 2048.66, "word": " it", "probability": 0.8642578125}, {"start": 2048.66, "end": 2048.76, "word": " and", "probability": 0.76025390625}, {"start": 2048.76, "end": 2048.96, "word": " make", "probability": 0.580078125}, {"start": 2048.96, "end": 2049.76, "word": " restrictions", "probability": 0.81591796875}, {"start": 2049.76, "end": 2050.0, "word": " on", "probability": 0.8369140625}, {"start": 2050.0, "end": 2050.46, "word": " it.", "probability": 0.92041015625}, {"start": 2050.74, "end": 2051.26, "word": " That's", "probability": 0.651611328125}, {"start": 2051.26, "end": 2051.34, "word": " it.", "probability": 0.66845703125}, {"start": 2052.52, "end": 2052.72, "word": " It", "probability": 0.912109375}, {"start": 2052.72, "end": 2052.82, "word": " is", "probability": 0.7724609375}, {"start": 2052.82, "end": 2053.14, "word": " a", "probability": 0.81494140625}, {"start": 2053.14, "end": 2053.62, "word": " decorator", "probability": 0.863525390625}, {"start": 2053.62, "end": 2053.98, "word": " pattern,", "probability": 0.87158203125}, {"start": 2054.1, "end": 2054.22, "word": " but", "probability": 0.91455078125}, {"start": 2054.22, "end": 2054.34, "word": " its", "probability": 0.54541015625}, {"start": 2054.34, "end": 2054.52, "word": " goal", "probability": 0.791015625}, {"start": 2054.52, "end": 2054.72, "word": " is", "probability": 0.93212890625}, {"start": 2054.72, "end": 2055.04, "word": " different.", "probability": 0.873046875}], "temperature": 1.0}, {"id": 83, "seek": 207811, "start": 2055.83, "end": 2078.11, "text": "The goal is to control the object inside, not to add a new functionality to it. Before we read this speech, and to understand this speech when we read it, let's see a practical example using the decorator petal, excuse me, the proxy petal. Let me close.", "tokens": [2278, 3387, 307, 281, 1969, 264, 2657, 1854, 11, 406, 281, 909, 257, 777, 14980, 281, 309, 13, 4546, 321, 1401, 341, 6218, 11, 293, 281, 1223, 341, 6218, 562, 321, 1401, 309, 11, 718, 311, 536, 257, 8496, 1365, 1228, 264, 7919, 1639, 3817, 304, 11, 8960, 385, 11, 264, 29690, 3817, 304, 13, 961, 385, 1998, 13], "avg_logprob": -0.5184895704189937, "compression_ratio": 1.505952380952381, "no_speech_prob": 3.5762786865234375e-06, "words": [{"start": 2055.83, "end": 2056.27, "word": "The", "probability": 0.281494140625}, {"start": 2056.27, "end": 2056.33, "word": " goal", "probability": 0.4423828125}, {"start": 2056.33, "end": 2056.55, "word": " is", "probability": 0.67138671875}, {"start": 2056.55, "end": 2056.59, "word": " to", "probability": 0.8896484375}, {"start": 2056.59, "end": 2056.97, "word": " control", "probability": 0.599609375}, {"start": 2056.97, "end": 2057.21, "word": " the", "probability": 0.716796875}, {"start": 2057.21, "end": 2057.49, "word": " object", "probability": 0.6689453125}, {"start": 2057.49, "end": 2057.85, "word": " inside,", "probability": 0.603515625}, {"start": 2058.19, "end": 2058.43, "word": " not", "probability": 0.53076171875}, {"start": 2058.43, "end": 2058.55, "word": " to", "probability": 0.6396484375}, {"start": 2058.55, "end": 2058.75, "word": " add", "probability": 0.87890625}, {"start": 2058.75, "end": 2059.85, "word": " a", "probability": 0.362548828125}, {"start": 2059.85, "end": 2059.85, "word": " new", "probability": 0.873046875}, {"start": 2059.85, "end": 2060.53, "word": " functionality", "probability": 0.75830078125}, {"start": 2060.53, "end": 2061.19, "word": " to", "probability": 0.552734375}, {"start": 2061.19, "end": 2061.73, "word": " it.", "probability": 0.93505859375}, {"start": 2062.57, "end": 2063.09, "word": " Before", "probability": 0.1727294921875}, {"start": 2063.09, "end": 2063.41, "word": " we", "probability": 0.41162109375}, {"start": 2063.41, "end": 2063.59, "word": " read", "probability": 0.85693359375}, {"start": 2063.59, "end": 2063.73, "word": " this", "probability": 0.70751953125}, {"start": 2063.73, "end": 2064.01, "word": " speech,", "probability": 0.1920166015625}, {"start": 2064.75, "end": 2064.81, "word": " and", "probability": 0.5986328125}, {"start": 2064.81, "end": 2065.05, "word": " to", "probability": 0.75}, {"start": 2065.05, "end": 2065.37, "word": " understand", "probability": 0.66943359375}, {"start": 2065.37, "end": 2065.53, "word": " this", "probability": 0.27001953125}, {"start": 2065.53, "end": 2065.79, "word": " speech", "probability": 0.951171875}, {"start": 2065.79, "end": 2065.99, "word": " when", "probability": 0.56884765625}, {"start": 2065.99, "end": 2066.25, "word": " we", "probability": 0.90087890625}, {"start": 2066.25, "end": 2066.47, "word": " read", "probability": 0.70849609375}, {"start": 2066.47, "end": 2066.71, "word": " it,", "probability": 0.931640625}, {"start": 2066.93, "end": 2067.29, "word": " let's", "probability": 0.88720703125}, {"start": 2067.29, "end": 2067.47, "word": " see", "probability": 0.611328125}, {"start": 2067.47, "end": 2067.91, "word": " a", "probability": 0.4833984375}, {"start": 2067.91, "end": 2068.21, "word": " practical", "probability": 0.93994140625}, {"start": 2068.21, "end": 2068.21, "word": " example", "probability": 0.96533203125}, {"start": 2068.21, "end": 2068.79, "word": " using", "probability": 0.6875}, {"start": 2068.79, "end": 2071.55, "word": " the", "probability": 0.71875}, {"start": 2071.55, "end": 2072.05, "word": " decorator", "probability": 0.62255859375}, {"start": 2072.05, "end": 2072.45, "word": " petal,", "probability": 0.7509765625}, {"start": 2073.89, "end": 2073.97, "word": " excuse", "probability": 0.1929931640625}, {"start": 2073.97, "end": 2074.11, "word": " me,", "probability": 0.9267578125}, {"start": 2074.15, "end": 2074.21, "word": " the", "probability": 0.751953125}, {"start": 2074.21, "end": 2074.47, "word": " proxy", "probability": 0.96337890625}, {"start": 2074.47, "end": 2074.97, "word": " petal.", "probability": 0.970703125}, {"start": 2077.09, "end": 2077.61, "word": " Let", "probability": 0.69580078125}, {"start": 2077.61, "end": 2077.81, "word": " me", "probability": 0.87646484375}, {"start": 2077.81, "end": 2078.11, "word": " close.", "probability": 0.67138671875}], "temperature": 1.0}, {"id": 84, "seek": 212512, "start": 2099.4, "end": 2125.12, "text": " Ok guys, I'm going to show you a simple program I'm going to run it, and this program is an image gallery We all know image gallery, which is images that do next and previous, you see what, a group of images Because this, for example, of course, when the program starts working, it loads a group of images, and then down here, but it's not clear, it's not clear, yes, there are two buttons, their name is next and previous, okay? These are clear, that is, part of them", "tokens": [3477, 1074, 11, 286, 478, 516, 281, 855, 291, 257, 2199, 1461, 286, 478, 516, 281, 1190, 309, 11, 293, 341, 1461, 307, 364, 3256, 18378, 492, 439, 458, 3256, 18378, 11, 597, 307, 5267, 300, 360, 958, 293, 3894, 11, 291, 536, 437, 11, 257, 1594, 295, 5267, 1436, 341, 11, 337, 1365, 11, 295, 1164, 11, 562, 264, 1461, 3719, 1364, 11, 309, 12668, 257, 1594, 295, 5267, 11, 293, 550, 760, 510, 11, 457, 309, 311, 406, 1850, 11, 309, 311, 406, 1850, 11, 2086, 11, 456, 366, 732, 9905, 11, 641, 1315, 307, 958, 293, 3894, 11, 1392, 30, 1981, 366, 1850, 11, 300, 307, 11, 644, 295, 552], "avg_logprob": -0.5526315731960431, "compression_ratio": 1.8685258964143425, "no_speech_prob": 6.496906280517578e-06, "words": [{"start": 2099.4, "end": 2099.66, "word": " Ok", "probability": 0.253662109375}, {"start": 2099.66, "end": 2099.98, "word": " guys,", "probability": 0.580078125}, {"start": 2100.04, "end": 2100.22, "word": " I'm", "probability": 0.3009033203125}, {"start": 2100.22, "end": 2100.22, "word": " going", "probability": 0.267578125}, {"start": 2100.22, "end": 2100.44, "word": " to", "probability": 0.96435546875}, {"start": 2100.44, "end": 2100.64, "word": " show", "probability": 0.7490234375}, {"start": 2100.64, "end": 2100.72, "word": " you", "probability": 0.84130859375}, {"start": 2100.72, "end": 2100.76, "word": " a", "probability": 0.84423828125}, {"start": 2100.76, "end": 2101.46, "word": " simple", "probability": 0.818359375}, {"start": 2101.46, "end": 2101.46, "word": " program", "probability": 0.625}, {"start": 2101.46, "end": 2103.7, "word": " I'm", "probability": 0.5518798828125}, {"start": 2103.7, "end": 2103.7, "word": " going", "probability": 0.88818359375}, {"start": 2103.7, "end": 2103.7, "word": " to", "probability": 0.970703125}, {"start": 2103.7, "end": 2104.12, "word": " run", "probability": 0.59423828125}, {"start": 2104.12, "end": 2104.24, "word": " it,", "probability": 0.765625}, {"start": 2104.32, "end": 2104.94, "word": " and", "probability": 0.568359375}, {"start": 2104.94, "end": 2105.18, "word": " this", "probability": 0.84326171875}, {"start": 2105.18, "end": 2105.78, "word": " program", "probability": 0.8388671875}, {"start": 2105.78, "end": 2106.68, "word": " is", "probability": 0.90771484375}, {"start": 2106.68, "end": 2107.02, "word": " an", "probability": 0.28076171875}, {"start": 2107.02, "end": 2107.22, "word": " image", "probability": 0.830078125}, {"start": 2107.22, "end": 2107.54, "word": " gallery", "probability": 0.98095703125}, {"start": 2107.54, "end": 2108.02, "word": " We", "probability": 0.366943359375}, {"start": 2108.02, "end": 2108.14, "word": " all", "probability": 0.763671875}, {"start": 2108.14, "end": 2108.4, "word": " know", "probability": 0.87841796875}, {"start": 2108.4, "end": 2108.72, "word": " image", "probability": 0.32275390625}, {"start": 2108.72, "end": 2109.0, "word": " gallery,", "probability": 0.787109375}, {"start": 2109.06, "end": 2109.14, "word": " which", "probability": 0.412841796875}, {"start": 2109.14, "end": 2109.28, "word": " is", "probability": 0.64306640625}, {"start": 2109.28, "end": 2109.66, "word": " images", "probability": 0.2188720703125}, {"start": 2109.66, "end": 2109.98, "word": " that", "probability": 0.35205078125}, {"start": 2109.98, "end": 2110.2, "word": " do", "probability": 0.1513671875}, {"start": 2110.2, "end": 2110.48, "word": " next", "probability": 0.76806640625}, {"start": 2110.48, "end": 2110.66, "word": " and", "probability": 0.8564453125}, {"start": 2110.66, "end": 2111.08, "word": " previous,", "probability": 0.8984375}, {"start": 2111.12, "end": 2111.26, "word": " you", "probability": 0.294189453125}, {"start": 2111.26, "end": 2111.48, "word": " see", "probability": 0.76416015625}, {"start": 2111.48, "end": 2111.82, "word": " what,", "probability": 0.62353515625}, {"start": 2112.5, "end": 2112.72, "word": " a", "probability": 0.56396484375}, {"start": 2112.72, "end": 2112.96, "word": " group", "probability": 0.4912109375}, {"start": 2112.96, "end": 2113.1, "word": " of", "probability": 0.96923828125}, {"start": 2113.1, "end": 2113.32, "word": " images", "probability": 0.630859375}, {"start": 2113.32, "end": 2113.9, "word": " Because", "probability": 0.43896484375}, {"start": 2113.9, "end": 2114.12, "word": " this,", "probability": 0.72412109375}, {"start": 2114.24, "end": 2114.3, "word": " for", "probability": 0.80126953125}, {"start": 2114.3, "end": 2114.48, "word": " example,", "probability": 0.95556640625}, {"start": 2114.68, "end": 2114.78, "word": " of", "probability": 0.406982421875}, {"start": 2114.78, "end": 2114.86, "word": " course,", "probability": 0.9658203125}, {"start": 2114.96, "end": 2115.08, "word": " when", "probability": 0.2353515625}, {"start": 2115.08, "end": 2115.14, "word": " the", "probability": 0.70458984375}, {"start": 2115.14, "end": 2115.42, "word": " program", "probability": 0.87109375}, {"start": 2115.42, "end": 2115.9, "word": " starts", "probability": 0.41943359375}, {"start": 2115.9, "end": 2116.02, "word": " working,", "probability": 0.269775390625}, {"start": 2116.04, "end": 2116.12, "word": " it", "probability": 0.85595703125}, {"start": 2116.12, "end": 2116.36, "word": " loads", "probability": 0.705078125}, {"start": 2116.36, "end": 2116.5, "word": " a", "probability": 0.94580078125}, {"start": 2116.5, "end": 2116.7, "word": " group", "probability": 0.89453125}, {"start": 2116.7, "end": 2116.84, "word": " of", "probability": 0.9658203125}, {"start": 2116.84, "end": 2117.1, "word": " images,", "probability": 0.75341796875}, {"start": 2117.6, "end": 2117.68, "word": " and", "probability": 0.67578125}, {"start": 2117.68, "end": 2117.9, "word": " then", "probability": 0.8330078125}, {"start": 2117.9, "end": 2118.16, "word": " down", "probability": 0.409912109375}, {"start": 2118.16, "end": 2118.4, "word": " here,", "probability": 0.83740234375}, {"start": 2118.46, "end": 2118.56, "word": " but", "probability": 0.76171875}, {"start": 2118.56, "end": 2118.76, "word": " it's", "probability": 0.45843505859375}, {"start": 2118.76, "end": 2118.78, "word": " not", "probability": 0.9111328125}, {"start": 2118.78, "end": 2119.08, "word": " clear,", "probability": 0.58203125}, {"start": 2119.86, "end": 2120.02, "word": " it's", "probability": 0.6021728515625}, {"start": 2120.02, "end": 2120.08, "word": " not", "probability": 0.82421875}, {"start": 2120.08, "end": 2120.36, "word": " clear,", "probability": 0.6767578125}, {"start": 2120.52, "end": 2120.6, "word": " yes,", "probability": 0.37939453125}, {"start": 2120.66, "end": 2120.84, "word": " there", "probability": 0.79638671875}, {"start": 2120.84, "end": 2120.86, "word": " are", "probability": 0.9189453125}, {"start": 2120.86, "end": 2121.16, "word": " two", "probability": 0.91455078125}, {"start": 2121.16, "end": 2121.16, "word": " buttons,", "probability": 0.89892578125}, {"start": 2121.3, "end": 2121.46, "word": " their", "probability": 0.21826171875}, {"start": 2121.46, "end": 2121.46, "word": " name", "probability": 0.61474609375}, {"start": 2121.46, "end": 2121.6, "word": " is", "probability": 0.9111328125}, {"start": 2121.6, "end": 2121.86, "word": " next", "probability": 0.8330078125}, {"start": 2121.86, "end": 2122.54, "word": " and", "probability": 0.8984375}, {"start": 2122.54, "end": 2123.0, "word": " previous,", "probability": 0.9189453125}, {"start": 2123.28, "end": 2123.54, "word": " okay?", "probability": 0.45263671875}, {"start": 2123.88, "end": 2124.06, "word": " These", "probability": 0.245849609375}, {"start": 2124.06, "end": 2124.1, "word": " are", "probability": 0.7783203125}, {"start": 2124.1, "end": 2124.34, "word": " clear,", "probability": 0.1885986328125}, {"start": 2124.46, "end": 2124.56, "word": " that", "probability": 0.2235107421875}, {"start": 2124.56, "end": 2124.58, "word": " is,", "probability": 0.81298828125}, {"start": 2124.58, "end": 2124.82, "word": " part", "probability": 0.53271484375}, {"start": 2124.82, "end": 2124.94, "word": " of", "probability": 0.974609375}, {"start": 2124.94, "end": 2125.12, "word": " them", "probability": 0.87255859375}], "temperature": 1.0}, {"id": 85, "seek": 214405, "start": 2126.05, "end": 2144.05, "text": "It's not about the design, I did it quickly, yesterday, okay? So when you come and do, for example, next, what do I do? Yes, I go to the second picture, and so on, okay? And then I go back to what? To the first one This is a common application, you can find it on the web, you can find it on mobile, on any program", "tokens": [3522, 311, 406, 466, 264, 1715, 11, 286, 630, 309, 2661, 11, 5186, 11, 1392, 30, 407, 562, 291, 808, 293, 360, 11, 337, 1365, 11, 958, 11, 437, 360, 286, 360, 30, 1079, 11, 286, 352, 281, 264, 1150, 3036, 11, 293, 370, 322, 11, 1392, 30, 400, 550, 286, 352, 646, 281, 437, 30, 1407, 264, 700, 472, 639, 307, 257, 2689, 3861, 11, 291, 393, 915, 309, 322, 264, 3670, 11, 291, 393, 915, 309, 322, 6013, 11, 322, 604, 1461], "avg_logprob": -0.42463235294117646, "compression_ratio": 1.57, "no_speech_prob": 1.3947486877441406e-05, "words": [{"start": 2126.05, "end": 2126.19, "word": "It's", "probability": 0.4049072265625}, {"start": 2126.19, "end": 2126.29, "word": " not", "probability": 0.822265625}, {"start": 2126.29, "end": 2126.35, "word": " about", "probability": 0.249755859375}, {"start": 2126.35, "end": 2126.55, "word": " the", "probability": 0.478515625}, {"start": 2126.55, "end": 2126.83, "word": " design,", "probability": 0.91162109375}, {"start": 2126.89, "end": 2127.03, "word": " I", "probability": 0.62841796875}, {"start": 2127.03, "end": 2127.19, "word": " did", "probability": 0.5029296875}, {"start": 2127.19, "end": 2127.31, "word": " it", "probability": 0.8837890625}, {"start": 2127.31, "end": 2127.63, "word": " quickly,", "probability": 0.28857421875}, {"start": 2127.89, "end": 2128.23, "word": " yesterday,", "probability": 0.51123046875}, {"start": 2128.71, "end": 2128.93, "word": " okay?", "probability": 0.3212890625}, {"start": 2129.03, "end": 2129.19, "word": " So", "probability": 0.7470703125}, {"start": 2129.19, "end": 2129.47, "word": " when", "probability": 0.6513671875}, {"start": 2129.47, "end": 2129.59, "word": " you", "probability": 0.912109375}, {"start": 2129.59, "end": 2129.69, "word": " come", "probability": 0.26904296875}, {"start": 2129.69, "end": 2129.77, "word": " and", "probability": 0.44189453125}, {"start": 2129.77, "end": 2129.95, "word": " do,", "probability": 0.587890625}, {"start": 2130.05, "end": 2130.23, "word": " for", "probability": 0.845703125}, {"start": 2130.23, "end": 2130.23, "word": " example,", "probability": 0.93408203125}, {"start": 2130.31, "end": 2130.55, "word": " next,", "probability": 0.42919921875}, {"start": 2130.93, "end": 2131.21, "word": " what", "probability": 0.86572265625}, {"start": 2131.21, "end": 2131.25, "word": " do", "probability": 0.7958984375}, {"start": 2131.25, "end": 2131.31, "word": " I", "probability": 0.81982421875}, {"start": 2131.31, "end": 2131.49, "word": " do?", "probability": 0.9599609375}, {"start": 2132.25, "end": 2132.57, "word": " Yes,", "probability": 0.2174072265625}, {"start": 2132.67, "end": 2132.75, "word": " I", "probability": 0.810546875}, {"start": 2132.75, "end": 2132.85, "word": " go", "probability": 0.42724609375}, {"start": 2132.85, "end": 2132.99, "word": " to", "probability": 0.61083984375}, {"start": 2132.99, "end": 2133.09, "word": " the", "probability": 0.80029296875}, {"start": 2133.09, "end": 2133.59, "word": " second", "probability": 0.5947265625}, {"start": 2133.59, "end": 2133.59, "word": " picture,", "probability": 0.409423828125}, {"start": 2133.77, "end": 2133.83, "word": " and", "probability": 0.5595703125}, {"start": 2133.83, "end": 2133.93, "word": " so", "probability": 0.857421875}, {"start": 2133.93, "end": 2134.69, "word": " on,", "probability": 0.89306640625}, {"start": 2134.71, "end": 2135.25, "word": " okay?", "probability": 0.76513671875}, {"start": 2135.43, "end": 2135.53, "word": " And", "probability": 0.79736328125}, {"start": 2135.53, "end": 2135.69, "word": " then", "probability": 0.82177734375}, {"start": 2135.69, "end": 2135.85, "word": " I", "probability": 0.88671875}, {"start": 2135.85, "end": 2135.87, "word": " go", "probability": 0.740234375}, {"start": 2135.87, "end": 2136.03, "word": " back", "probability": 0.83984375}, {"start": 2136.03, "end": 2136.15, "word": " to", "probability": 0.93017578125}, {"start": 2136.15, "end": 2136.39, "word": " what?", "probability": 0.7236328125}, {"start": 2137.25, "end": 2137.57, "word": " To", "probability": 0.71435546875}, {"start": 2137.57, "end": 2137.65, "word": " the", "probability": 0.91552734375}, {"start": 2137.65, "end": 2137.83, "word": " first", "probability": 0.78369140625}, {"start": 2137.83, "end": 2138.11, "word": " one", "probability": 0.62744140625}, {"start": 2138.11, "end": 2140.09, "word": " This", "probability": 0.468994140625}, {"start": 2140.09, "end": 2140.49, "word": " is", "probability": 0.5576171875}, {"start": 2140.49, "end": 2140.53, "word": " a", "probability": 0.6611328125}, {"start": 2140.53, "end": 2140.81, "word": " common", "probability": 0.7255859375}, {"start": 2140.81, "end": 2140.81, "word": " application,", "probability": 0.80615234375}, {"start": 2140.87, "end": 2141.03, "word": " you", "probability": 0.8115234375}, {"start": 2141.03, "end": 2141.13, "word": " can", "probability": 0.62255859375}, {"start": 2141.13, "end": 2141.27, "word": " find", "probability": 0.8603515625}, {"start": 2141.27, "end": 2141.51, "word": " it", "probability": 0.916015625}, {"start": 2141.51, "end": 2141.65, "word": " on", "probability": 0.91845703125}, {"start": 2141.65, "end": 2141.73, "word": " the", "probability": 0.87646484375}, {"start": 2141.73, "end": 2141.95, "word": " web,", "probability": 0.8388671875}, {"start": 2142.07, "end": 2142.15, "word": " you", "probability": 0.56982421875}, {"start": 2142.15, "end": 2142.19, "word": " can", "probability": 0.88916015625}, {"start": 2142.19, "end": 2142.33, "word": " find", "probability": 0.884765625}, {"start": 2142.33, "end": 2142.43, "word": " it", "probability": 0.93212890625}, {"start": 2142.43, "end": 2142.51, "word": " on", "probability": 0.94091796875}, {"start": 2142.51, "end": 2142.91, "word": " mobile,", "probability": 0.55322265625}, {"start": 2143.07, "end": 2143.21, "word": " on", "probability": 0.833984375}, {"start": 2143.21, "end": 2143.73, "word": " any", "probability": 0.91455078125}, {"start": 2143.73, "end": 2144.05, "word": " program", "probability": 0.50390625}], "temperature": 1.0}, {"id": 86, "seek": 216904, "start": 2146.46, "end": 2169.04, "text": " Now, the idea in this application is to quickly go through the code. We are not talking about the GUI, but we want to see how it is done. Actually, the first thing I run is mainly the image paths. All the photos are in the working directory, so I just put their names. Then I have a playlist here of the image icon type.", "tokens": [823, 11, 264, 1558, 294, 341, 3861, 307, 281, 2661, 352, 807, 264, 3089, 13, 492, 366, 406, 1417, 466, 264, 17917, 40, 11, 457, 321, 528, 281, 536, 577, 309, 307, 1096, 13, 5135, 11, 264, 700, 551, 286, 1190, 307, 8704, 264, 3256, 14518, 13, 1057, 264, 5787, 366, 294, 264, 1364, 21120, 11, 370, 286, 445, 829, 641, 5288, 13, 1396, 286, 362, 257, 16788, 510, 295, 264, 3256, 6528, 2010, 13], "avg_logprob": -0.585115132363219, "compression_ratio": 1.5285714285714285, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 2146.46, "end": 2146.9, "word": " Now,", "probability": 0.386474609375}, {"start": 2147.18, "end": 2147.38, "word": " the", "probability": 0.64111328125}, {"start": 2147.38, "end": 2147.62, "word": " idea", "probability": 0.81689453125}, {"start": 2147.62, "end": 2147.74, "word": " in", "probability": 0.389404296875}, {"start": 2147.74, "end": 2147.86, "word": " this", "probability": 0.5712890625}, {"start": 2147.86, "end": 2148.1, "word": " application", "probability": 0.52294921875}, {"start": 2148.1, "end": 2148.3, "word": " is", "probability": 0.63134765625}, {"start": 2148.3, "end": 2148.66, "word": " to", "probability": 0.32470703125}, {"start": 2148.66, "end": 2148.94, "word": " quickly", "probability": 0.08441162109375}, {"start": 2148.94, "end": 2149.48, "word": " go", "probability": 0.29541015625}, {"start": 2149.48, "end": 2149.86, "word": " through", "probability": 0.4140625}, {"start": 2149.86, "end": 2149.98, "word": " the", "probability": 0.82861328125}, {"start": 2149.98, "end": 2150.26, "word": " code.", "probability": 0.84814453125}, {"start": 2150.32, "end": 2150.48, "word": " We", "probability": 0.318603515625}, {"start": 2150.48, "end": 2150.52, "word": " are", "probability": 0.453125}, {"start": 2150.52, "end": 2150.62, "word": " not", "probability": 0.9267578125}, {"start": 2150.62, "end": 2150.9, "word": " talking", "probability": 0.1790771484375}, {"start": 2150.9, "end": 2151.06, "word": " about", "probability": 0.8955078125}, {"start": 2151.06, "end": 2151.14, "word": " the", "probability": 0.405517578125}, {"start": 2151.14, "end": 2151.52, "word": " GUI,", "probability": 0.953857421875}, {"start": 2151.56, "end": 2151.68, "word": " but", "probability": 0.7490234375}, {"start": 2151.68, "end": 2151.7, "word": " we", "probability": 0.24365234375}, {"start": 2151.7, "end": 2151.84, "word": " want", "probability": 0.410888671875}, {"start": 2151.84, "end": 2151.84, "word": " to", "probability": 0.96875}, {"start": 2151.84, "end": 2152.04, "word": " see", "probability": 0.78515625}, {"start": 2152.04, "end": 2152.3, "word": " how", "probability": 0.83935546875}, {"start": 2152.3, "end": 2152.86, "word": " it", "probability": 0.8017578125}, {"start": 2152.86, "end": 2152.96, "word": " is", "probability": 0.55908203125}, {"start": 2152.96, "end": 2153.22, "word": " done.", "probability": 0.438232421875}, {"start": 2153.52, "end": 2154.04, "word": " Actually,", "probability": 0.128173828125}, {"start": 2154.34, "end": 2154.44, "word": " the", "probability": 0.267578125}, {"start": 2154.44, "end": 2154.46, "word": " first", "probability": 0.83251953125}, {"start": 2154.46, "end": 2154.64, "word": " thing", "probability": 0.65234375}, {"start": 2154.64, "end": 2154.68, "word": " I", "probability": 0.80615234375}, {"start": 2154.68, "end": 2154.88, "word": " run", "probability": 0.16259765625}, {"start": 2154.88, "end": 2155.18, "word": " is", "probability": 0.392333984375}, {"start": 2155.18, "end": 2155.78, "word": " mainly", "probability": 0.45068359375}, {"start": 2155.78, "end": 2157.06, "word": " the", "probability": 0.342529296875}, {"start": 2157.06, "end": 2157.28, "word": " image", "probability": 0.82470703125}, {"start": 2157.28, "end": 2157.7, "word": " paths.", "probability": 0.84619140625}, {"start": 2158.94, "end": 2158.94, "word": " All", "probability": 0.6904296875}, {"start": 2158.94, "end": 2158.94, "word": " the", "probability": 0.5400390625}, {"start": 2158.94, "end": 2159.58, "word": " photos", "probability": 0.275634765625}, {"start": 2159.58, "end": 2159.86, "word": " are", "probability": 0.8994140625}, {"start": 2159.86, "end": 2160.14, "word": " in", "probability": 0.338623046875}, {"start": 2160.14, "end": 2160.58, "word": " the", "probability": 0.8955078125}, {"start": 2160.58, "end": 2161.0, "word": " working", "probability": 0.7490234375}, {"start": 2161.0, "end": 2161.52, "word": " directory,", "probability": 0.9306640625}, {"start": 2161.92, "end": 2162.04, "word": " so", "probability": 0.493896484375}, {"start": 2162.04, "end": 2162.8, "word": " I", "probability": 0.943359375}, {"start": 2162.8, "end": 2163.08, "word": " just", "probability": 0.5185546875}, {"start": 2163.08, "end": 2163.08, "word": " put", "probability": 0.66943359375}, {"start": 2163.08, "end": 2163.34, "word": " their", "probability": 0.92578125}, {"start": 2163.34, "end": 2163.58, "word": " names.", "probability": 0.86181640625}, {"start": 2165.28, "end": 2165.6, "word": " Then", "probability": 0.460693359375}, {"start": 2165.6, "end": 2165.9, "word": " I", "probability": 0.49609375}, {"start": 2165.9, "end": 2165.98, "word": " have", "probability": 0.91064453125}, {"start": 2165.98, "end": 2166.08, "word": " a", "probability": 0.58837890625}, {"start": 2166.08, "end": 2166.44, "word": " playlist", "probability": 0.61474609375}, {"start": 2166.44, "end": 2166.72, "word": " here", "probability": 0.64013671875}, {"start": 2166.72, "end": 2166.84, "word": " of", "probability": 0.5908203125}, {"start": 2166.84, "end": 2167.0, "word": " the", "probability": 0.41455078125}, {"start": 2167.0, "end": 2167.44, "word": " image", "probability": 0.484130859375}, {"start": 2167.44, "end": 2169.04, "word": " icon", "probability": 0.75244140625}, {"start": 2169.04, "end": 2169.04, "word": " type.", "probability": 0.66455078125}], "temperature": 1.0}, {"id": 87, "seek": 219896, "start": 2170.07, "end": 2198.97, "text": " This array will be empty. The idea is that when the program starts, it will go to these images, read them, download them as image icons, and put them in this array. And then it will go away from where? From this array. Its name is images. Okay? So the image path is tracks, and this is where we put the images. So really, as soon as the program starts, it is supposed to download these images and upload them to this array. Are you with me guys? Okay.", "tokens": [639, 10225, 486, 312, 6707, 13, 440, 1558, 307, 300, 562, 264, 1461, 3719, 11, 309, 486, 352, 281, 613, 5267, 11, 1401, 552, 11, 5484, 552, 382, 3256, 23308, 11, 293, 829, 552, 294, 341, 10225, 13, 400, 550, 309, 486, 352, 1314, 490, 689, 30, 3358, 341, 10225, 13, 6953, 1315, 307, 5267, 13, 1033, 30, 407, 264, 3256, 3100, 307, 10218, 11, 293, 341, 307, 689, 321, 829, 264, 5267, 13, 407, 534, 11, 382, 2321, 382, 264, 1461, 3719, 11, 309, 307, 3442, 281, 5484, 613, 5267, 293, 6580, 552, 281, 341, 10225, 13, 2014, 291, 365, 385, 1074, 30, 1033, 13], "avg_logprob": -0.4848130885685716, "compression_ratio": 1.891213389121339, "no_speech_prob": 4.369020462036133e-05, "words": [{"start": 2170.07, "end": 2170.45, "word": " This", "probability": 0.1734619140625}, {"start": 2170.45, "end": 2170.67, "word": " array", "probability": 0.80859375}, {"start": 2170.67, "end": 2170.93, "word": " will", "probability": 0.34521484375}, {"start": 2170.93, "end": 2171.07, "word": " be", "probability": 0.82470703125}, {"start": 2171.07, "end": 2171.31, "word": " empty.", "probability": 0.62353515625}, {"start": 2171.47, "end": 2171.55, "word": " The", "probability": 0.63134765625}, {"start": 2171.55, "end": 2171.79, "word": " idea", "probability": 0.8310546875}, {"start": 2171.79, "end": 2172.05, "word": " is", "probability": 0.85107421875}, {"start": 2172.05, "end": 2172.15, "word": " that", "probability": 0.70654296875}, {"start": 2172.15, "end": 2172.45, "word": " when", "probability": 0.36962890625}, {"start": 2172.45, "end": 2172.79, "word": " the", "probability": 0.57666015625}, {"start": 2172.79, "end": 2172.79, "word": " program", "probability": 0.501953125}, {"start": 2172.79, "end": 2173.03, "word": " starts,", "probability": 0.50439453125}, {"start": 2173.61, "end": 2173.75, "word": " it", "probability": 0.78759765625}, {"start": 2173.75, "end": 2173.81, "word": " will", "probability": 0.556640625}, {"start": 2173.81, "end": 2173.93, "word": " go", "probability": 0.52392578125}, {"start": 2173.93, "end": 2174.03, "word": " to", "probability": 0.8740234375}, {"start": 2174.03, "end": 2174.19, "word": " these", "probability": 0.55615234375}, {"start": 2174.19, "end": 2174.41, "word": " images,", "probability": 0.455078125}, {"start": 2174.69, "end": 2174.87, "word": " read", "probability": 0.90869140625}, {"start": 2174.87, "end": 2175.17, "word": " them,", "probability": 0.8330078125}, {"start": 2175.71, "end": 2176.01, "word": " download", "probability": 0.388916015625}, {"start": 2176.01, "end": 2176.37, "word": " them", "probability": 0.8896484375}, {"start": 2176.37, "end": 2176.99, "word": " as", "probability": 0.84130859375}, {"start": 2176.99, "end": 2177.27, "word": " image", "probability": 0.61669921875}, {"start": 2177.27, "end": 2177.65, "word": " icons,", "probability": 0.7880859375}, {"start": 2177.75, "end": 2177.79, "word": " and", "probability": 0.86376953125}, {"start": 2177.79, "end": 2177.97, "word": " put", "probability": 0.426513671875}, {"start": 2177.97, "end": 2178.05, "word": " them", "probability": 0.88134765625}, {"start": 2178.05, "end": 2178.13, "word": " in", "probability": 0.81982421875}, {"start": 2178.13, "end": 2178.21, "word": " this", "probability": 0.775390625}, {"start": 2178.21, "end": 2178.53, "word": " array.", "probability": 0.890625}, {"start": 2179.85, "end": 2180.19, "word": " And", "probability": 0.487060546875}, {"start": 2180.19, "end": 2180.41, "word": " then", "probability": 0.73681640625}, {"start": 2180.41, "end": 2180.61, "word": " it", "probability": 0.3818359375}, {"start": 2180.61, "end": 2180.61, "word": " will", "probability": 0.349609375}, {"start": 2180.61, "end": 2180.73, "word": " go", "probability": 0.1768798828125}, {"start": 2180.73, "end": 2180.95, "word": " away", "probability": 0.791015625}, {"start": 2180.95, "end": 2181.13, "word": " from", "probability": 0.75537109375}, {"start": 2181.13, "end": 2181.35, "word": " where?", "probability": 0.568359375}, {"start": 2181.93, "end": 2182.41, "word": " From", "probability": 0.7119140625}, {"start": 2182.41, "end": 2182.67, "word": " this", "probability": 0.9130859375}, {"start": 2182.67, "end": 2182.91, "word": " array.", "probability": 0.92138671875}, {"start": 2182.95, "end": 2183.01, "word": " Its", "probability": 0.37646484375}, {"start": 2183.01, "end": 2183.25, "word": " name", "probability": 0.8828125}, {"start": 2183.25, "end": 2183.39, "word": " is", "probability": 0.951171875}, {"start": 2183.39, "end": 2183.75, "word": " images.", "probability": 0.52978515625}, {"start": 2184.33, "end": 2184.59, "word": " Okay?", "probability": 0.3837890625}, {"start": 2184.73, "end": 2184.83, "word": " So", "probability": 0.775390625}, {"start": 2184.83, "end": 2184.91, "word": " the", "probability": 0.30810546875}, {"start": 2184.91, "end": 2185.13, "word": " image", "probability": 0.9091796875}, {"start": 2185.13, "end": 2185.45, "word": " path", "probability": 0.5986328125}, {"start": 2185.45, "end": 2185.59, "word": " is", "probability": 0.73876953125}, {"start": 2185.59, "end": 2186.23, "word": " tracks,", "probability": 0.1859130859375}, {"start": 2186.75, "end": 2187.01, "word": " and", "probability": 0.8544921875}, {"start": 2187.01, "end": 2187.25, "word": " this", "probability": 0.33544921875}, {"start": 2187.25, "end": 2187.47, "word": " is", "probability": 0.85009765625}, {"start": 2187.47, "end": 2187.75, "word": " where", "probability": 0.8935546875}, {"start": 2187.75, "end": 2187.75, "word": " we", "probability": 0.69140625}, {"start": 2187.75, "end": 2187.97, "word": " put", "probability": 0.8154296875}, {"start": 2187.97, "end": 2188.17, "word": " the", "probability": 0.58447265625}, {"start": 2188.17, "end": 2188.37, "word": " images.", "probability": 0.5673828125}, {"start": 2189.27, "end": 2189.75, "word": " So", "probability": 0.88232421875}, {"start": 2189.75, "end": 2190.01, "word": " really,", "probability": 0.3662109375}, {"start": 2190.23, "end": 2190.33, "word": " as", "probability": 0.3173828125}, {"start": 2190.33, "end": 2190.41, "word": " soon", "probability": 0.9541015625}, {"start": 2190.41, "end": 2190.49, "word": " as", "probability": 0.9716796875}, {"start": 2190.49, "end": 2190.97, "word": " the", "probability": 0.904296875}, {"start": 2190.97, "end": 2191.29, "word": " program", "probability": 0.90185546875}, {"start": 2191.29, "end": 2191.57, "word": " starts,", "probability": 0.74169921875}, {"start": 2191.71, "end": 2191.75, "word": " it", "probability": 0.83056640625}, {"start": 2191.75, "end": 2191.75, "word": " is", "probability": 0.360107421875}, {"start": 2191.75, "end": 2192.03, "word": " supposed", "probability": 0.9443359375}, {"start": 2192.03, "end": 2192.17, "word": " to", "probability": 0.97021484375}, {"start": 2192.17, "end": 2192.65, "word": " download", "probability": 0.66552734375}, {"start": 2192.65, "end": 2193.35, "word": " these", "probability": 0.822265625}, {"start": 2193.35, "end": 2193.35, "word": " images", "probability": 0.84765625}, {"start": 2193.35, "end": 2194.55, "word": " and", "probability": 0.59033203125}, {"start": 2194.55, "end": 2194.85, "word": " upload", "probability": 0.10693359375}, {"start": 2194.85, "end": 2194.99, "word": " them", "probability": 0.75146484375}, {"start": 2194.99, "end": 2196.25, "word": " to", "probability": 0.59912109375}, {"start": 2196.25, "end": 2196.59, "word": " this", "probability": 0.83154296875}, {"start": 2196.59, "end": 2196.87, "word": " array.", "probability": 0.93115234375}, {"start": 2197.25, "end": 2197.43, "word": " Are", "probability": 0.312255859375}, {"start": 2197.43, "end": 2197.43, "word": " you", "probability": 0.939453125}, {"start": 2197.43, "end": 2197.47, "word": " with", "probability": 0.65625}, {"start": 2197.47, "end": 2197.61, "word": " me", "probability": 0.96630859375}, {"start": 2197.61, "end": 2197.85, "word": " guys?", "probability": 0.314453125}, {"start": 2198.57, "end": 2198.97, "word": " Okay.", "probability": 0.6181640625}], "temperature": 1.0}, {"id": 88, "seek": 222957, "start": 2200.21, "end": 2229.57, "text": " Because this is an index made for tracking, not for decreasing or decreasing. Because this is a GUI code, we come to the main code. This is the code of the constructor. This is the constructor of the current class. As soon as it starts working, it executes this code. Look at it. It creates a loop. Loop on whom? On the tracks. Every track that it creates, it creates an image icon and puts it on this array.", "tokens": [1436, 341, 307, 364, 8186, 1027, 337, 11603, 11, 406, 337, 23223, 420, 23223, 13, 1436, 341, 307, 257, 17917, 40, 3089, 11, 321, 808, 281, 264, 2135, 3089, 13, 639, 307, 264, 3089, 295, 264, 47479, 13, 639, 307, 264, 47479, 295, 264, 2190, 1508, 13, 1018, 2321, 382, 309, 3719, 1364, 11, 309, 4454, 1819, 341, 3089, 13, 2053, 412, 309, 13, 467, 7829, 257, 6367, 13, 45660, 322, 7101, 30, 1282, 264, 10218, 13, 2048, 2837, 300, 309, 7829, 11, 309, 7829, 364, 3256, 6528, 293, 8137, 309, 322, 341, 10225, 13], "avg_logprob": -0.5569661563883225, "compression_ratio": 1.8258928571428572, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 2200.21, "end": 2200.53, "word": " Because", "probability": 0.26416015625}, {"start": 2200.53, "end": 2200.87, "word": " this", "probability": 0.74560546875}, {"start": 2200.87, "end": 2200.93, "word": " is", "probability": 0.50732421875}, {"start": 2200.93, "end": 2201.21, "word": " an", "probability": 0.67041015625}, {"start": 2201.21, "end": 2201.59, "word": " index", "probability": 0.87548828125}, {"start": 2201.59, "end": 2202.27, "word": " made", "probability": 0.220458984375}, {"start": 2202.27, "end": 2202.59, "word": " for", "probability": 0.529296875}, {"start": 2202.59, "end": 2203.07, "word": " tracking,", "probability": 0.064208984375}, {"start": 2203.19, "end": 2203.33, "word": " not", "probability": 0.72900390625}, {"start": 2203.33, "end": 2203.61, "word": " for", "probability": 0.28466796875}, {"start": 2203.61, "end": 2203.61, "word": " decreasing", "probability": 0.311279296875}, {"start": 2203.61, "end": 2203.75, "word": " or", "probability": 0.37890625}, {"start": 2203.75, "end": 2203.93, "word": " decreasing.", "probability": 0.50244140625}, {"start": 2207.85, "end": 2208.23, "word": " Because", "probability": 0.292236328125}, {"start": 2208.23, "end": 2209.61, "word": " this", "probability": 0.88330078125}, {"start": 2209.61, "end": 2209.67, "word": " is", "probability": 0.91357421875}, {"start": 2209.67, "end": 2209.91, "word": " a", "probability": 0.525390625}, {"start": 2209.91, "end": 2210.49, "word": " GUI", "probability": 0.84765625}, {"start": 2210.49, "end": 2210.49, "word": " code,", "probability": 0.83984375}, {"start": 2210.71, "end": 2210.71, "word": " we", "probability": 0.2493896484375}, {"start": 2210.71, "end": 2210.77, "word": " come", "probability": 0.377685546875}, {"start": 2210.77, "end": 2210.89, "word": " to", "probability": 0.9140625}, {"start": 2210.89, "end": 2210.99, "word": " the", "probability": 0.859375}, {"start": 2210.99, "end": 2211.37, "word": " main", "probability": 0.35595703125}, {"start": 2211.37, "end": 2211.43, "word": " code.", "probability": 0.87255859375}, {"start": 2211.61, "end": 2212.05, "word": " This", "probability": 0.48681640625}, {"start": 2212.05, "end": 2212.21, "word": " is", "probability": 0.86474609375}, {"start": 2212.21, "end": 2212.53, "word": " the", "probability": 0.51953125}, {"start": 2212.53, "end": 2212.65, "word": " code", "probability": 0.28271484375}, {"start": 2212.65, "end": 2212.79, "word": " of", "probability": 0.80224609375}, {"start": 2212.79, "end": 2212.83, "word": " the", "probability": 0.74365234375}, {"start": 2212.83, "end": 2213.25, "word": " constructor.", "probability": 0.89990234375}, {"start": 2213.57, "end": 2213.79, "word": " This", "probability": 0.55810546875}, {"start": 2213.79, "end": 2213.85, "word": " is", "probability": 0.92724609375}, {"start": 2213.85, "end": 2213.99, "word": " the", "probability": 0.86572265625}, {"start": 2213.99, "end": 2214.41, "word": " constructor", "probability": 0.8798828125}, {"start": 2214.41, "end": 2214.63, "word": " of", "probability": 0.87353515625}, {"start": 2214.63, "end": 2214.73, "word": " the", "probability": 0.7861328125}, {"start": 2214.73, "end": 2214.73, "word": " current", "probability": 0.62255859375}, {"start": 2214.73, "end": 2215.25, "word": " class.", "probability": 0.95947265625}, {"start": 2216.05, "end": 2216.49, "word": " As", "probability": 0.31787109375}, {"start": 2216.49, "end": 2216.55, "word": " soon", "probability": 0.9521484375}, {"start": 2216.55, "end": 2216.61, "word": " as", "probability": 0.97119140625}, {"start": 2216.61, "end": 2216.71, "word": " it", "probability": 0.65185546875}, {"start": 2216.71, "end": 2216.89, "word": " starts", "probability": 0.435791015625}, {"start": 2216.89, "end": 2217.11, "word": " working,", "probability": 0.654296875}, {"start": 2217.51, "end": 2217.65, "word": " it", "probability": 0.81689453125}, {"start": 2217.65, "end": 2218.13, "word": " executes", "probability": 0.60064697265625}, {"start": 2218.13, "end": 2218.29, "word": " this", "probability": 0.73974609375}, {"start": 2218.29, "end": 2218.55, "word": " code.", "probability": 0.91943359375}, {"start": 2219.11, "end": 2219.31, "word": " Look", "probability": 0.49853515625}, {"start": 2219.31, "end": 2219.49, "word": " at", "probability": 0.85595703125}, {"start": 2219.49, "end": 2219.71, "word": " it.", "probability": 0.70166015625}, {"start": 2220.17, "end": 2220.37, "word": " It", "probability": 0.44091796875}, {"start": 2220.37, "end": 2220.69, "word": " creates", "probability": 0.2301025390625}, {"start": 2220.69, "end": 2220.83, "word": " a", "probability": 0.84912109375}, {"start": 2220.83, "end": 2221.01, "word": " loop.", "probability": 0.95068359375}, {"start": 2221.15, "end": 2221.43, "word": " Loop", "probability": 0.304931640625}, {"start": 2221.43, "end": 2221.57, "word": " on", "probability": 0.521484375}, {"start": 2221.57, "end": 2221.81, "word": " whom?", "probability": 0.63232421875}, {"start": 2222.73, "end": 2222.95, "word": " On", "probability": 0.496826171875}, {"start": 2222.95, "end": 2223.03, "word": " the", "probability": 0.41552734375}, {"start": 2223.03, "end": 2223.29, "word": " tracks.", "probability": 0.23876953125}, {"start": 2224.03, "end": 2224.41, "word": " Every", "probability": 0.328125}, {"start": 2224.41, "end": 2224.75, "word": " track", "probability": 0.91015625}, {"start": 2224.75, "end": 2224.87, "word": " that", "probability": 0.2403564453125}, {"start": 2224.87, "end": 2224.93, "word": " it", "probability": 0.58642578125}, {"start": 2224.93, "end": 2225.05, "word": " creates,", "probability": 0.638671875}, {"start": 2225.15, "end": 2225.25, "word": " it", "probability": 0.69677734375}, {"start": 2225.25, "end": 2225.57, "word": " creates", "probability": 0.2347412109375}, {"start": 2225.57, "end": 2225.97, "word": " an", "probability": 0.60791015625}, {"start": 2225.97, "end": 2227.15, "word": " image", "probability": 0.845703125}, {"start": 2227.15, "end": 2227.55, "word": " icon", "probability": 0.767578125}, {"start": 2227.55, "end": 2227.65, "word": " and", "probability": 0.5703125}, {"start": 2227.65, "end": 2227.95, "word": " puts", "probability": 0.2822265625}, {"start": 2227.95, "end": 2228.07, "word": " it", "probability": 0.85791015625}, {"start": 2228.07, "end": 2228.23, "word": " on", "probability": 0.91357421875}, {"start": 2228.23, "end": 2229.35, "word": " this", "probability": 0.61669921875}, {"start": 2229.35, "end": 2229.57, "word": " array.", "probability": 0.857421875}], "temperature": 1.0}, {"id": 89, "seek": 225278, "start": 2231.04, "end": 2252.78, "text": "and then it executes a method called update image what is update image? it is a simple method when I click on the button, there is no next or previous button it only changes the index, previous goes with minus one and plus increases with one", "tokens": [474, 550, 309, 4454, 1819, 257, 3170, 1219, 5623, 3256, 437, 307, 5623, 3256, 30, 309, 307, 257, 2199, 3170, 562, 286, 2052, 322, 264, 2960, 11, 456, 307, 572, 958, 420, 3894, 2960, 309, 787, 2962, 264, 8186, 11, 3894, 1709, 365, 3175, 472, 293, 1804, 8637, 365, 472], "avg_logprob": -0.7071078407998178, "compression_ratio": 1.5855263157894737, "no_speech_prob": 4.7147274017333984e-05, "words": [{"start": 2231.04, "end": 2231.72, "word": "and", "probability": 0.10205078125}, {"start": 2231.72, "end": 2232.06, "word": " then", "probability": 0.56005859375}, {"start": 2232.06, "end": 2232.3, "word": " it", "probability": 0.57958984375}, {"start": 2232.3, "end": 2232.8, "word": " executes", "probability": 0.554901123046875}, {"start": 2232.8, "end": 2232.9, "word": " a", "probability": 0.58984375}, {"start": 2232.9, "end": 2233.14, "word": " method", "probability": 0.92578125}, {"start": 2233.14, "end": 2233.52, "word": " called", "probability": 0.62255859375}, {"start": 2233.52, "end": 2235.02, "word": " update", "probability": 0.6796875}, {"start": 2235.02, "end": 2235.46, "word": " image", "probability": 0.454833984375}, {"start": 2235.46, "end": 2236.16, "word": " what", "probability": 0.38916015625}, {"start": 2236.16, "end": 2236.26, "word": " is", "probability": 0.77783203125}, {"start": 2236.26, "end": 2236.54, "word": " update", "probability": 0.72705078125}, {"start": 2236.54, "end": 2236.88, "word": " image?", "probability": 0.935546875}, {"start": 2236.94, "end": 2237.06, "word": " it", "probability": 0.60888671875}, {"start": 2237.06, "end": 2237.06, "word": " is", "probability": 0.6201171875}, {"start": 2237.06, "end": 2237.12, "word": " a", "probability": 0.79345703125}, {"start": 2237.12, "end": 2237.12, "word": " simple", "probability": 0.8125}, {"start": 2237.12, "end": 2237.7, "word": " method", "probability": 0.90673828125}, {"start": 2237.7, "end": 2239.04, "word": " when", "probability": 0.1348876953125}, {"start": 2239.04, "end": 2241.12, "word": " I", "probability": 0.448974609375}, {"start": 2241.12, "end": 2241.32, "word": " click", "probability": 0.300048828125}, {"start": 2241.32, "end": 2241.5, "word": " on", "probability": 0.7783203125}, {"start": 2241.5, "end": 2241.6, "word": " the", "probability": 0.546875}, {"start": 2241.6, "end": 2241.74, "word": " button,", "probability": 0.298828125}, {"start": 2242.22, "end": 2242.32, "word": " there", "probability": 0.40283203125}, {"start": 2242.32, "end": 2242.44, "word": " is", "probability": 0.79541015625}, {"start": 2242.44, "end": 2242.44, "word": " no", "probability": 0.79541015625}, {"start": 2242.44, "end": 2242.9, "word": " next", "probability": 0.0911865234375}, {"start": 2242.9, "end": 2243.06, "word": " or", "probability": 0.362060546875}, {"start": 2243.06, "end": 2243.54, "word": " previous", "probability": 0.85791015625}, {"start": 2243.54, "end": 2243.54, "word": " button", "probability": 0.394287109375}, {"start": 2243.54, "end": 2244.2, "word": " it", "probability": 0.23388671875}, {"start": 2244.2, "end": 2244.34, "word": " only", "probability": 0.3349609375}, {"start": 2244.34, "end": 2244.62, "word": " changes", "probability": 0.7470703125}, {"start": 2244.62, "end": 2245.98, "word": " the", "probability": 0.63427734375}, {"start": 2245.98, "end": 2246.42, "word": " index,", "probability": 0.87890625}, {"start": 2246.76, "end": 2247.42, "word": " previous", "probability": 0.311279296875}, {"start": 2247.42, "end": 2247.64, "word": " goes", "probability": 0.415771484375}, {"start": 2247.64, "end": 2247.76, "word": " with", "probability": 0.340087890625}, {"start": 2247.76, "end": 2247.96, "word": " minus", "probability": 0.435302734375}, {"start": 2247.96, "end": 2248.36, "word": " one", "probability": 0.51953125}, {"start": 2248.36, "end": 2250.04, "word": " and", "probability": 0.685546875}, {"start": 2250.04, "end": 2250.4, "word": " plus", "probability": 0.5322265625}, {"start": 2250.4, "end": 2251.04, "word": " increases", "probability": 0.258056640625}, {"start": 2251.04, "end": 2251.46, "word": " with", "probability": 0.45947265625}, {"start": 2251.46, "end": 2252.78, "word": " one", "probability": 0.869140625}], "temperature": 1.0}, {"id": 90, "seek": 228001, "start": 2253.87, "end": 2280.01, "text": " Of course, I did something, when I reach the end, I go back to the beginning, and whenever it changes the index, it executes the method update. What does the method update do? Very simple, I go to the image label, which is in the middle, the user interface is simple, there is an image label, there is a next button and a previous button, so whenever I say next or previous, it will go and edit the index and tell it to go to the image label and set icon,", "tokens": [2720, 1164, 11, 286, 630, 746, 11, 562, 286, 2524, 264, 917, 11, 286, 352, 646, 281, 264, 2863, 11, 293, 5699, 309, 2962, 264, 8186, 11, 309, 4454, 1819, 264, 3170, 5623, 13, 708, 775, 264, 3170, 5623, 360, 30, 4372, 2199, 11, 286, 352, 281, 264, 3256, 7645, 11, 597, 307, 294, 264, 2808, 11, 264, 4195, 9226, 307, 2199, 11, 456, 307, 364, 3256, 7645, 11, 456, 307, 257, 958, 2960, 293, 257, 3894, 2960, 11, 370, 5699, 286, 584, 958, 420, 3894, 11, 309, 486, 352, 293, 8129, 264, 8186, 293, 980, 309, 281, 352, 281, 264, 3256, 7645, 293, 992, 6528, 11], "avg_logprob": -0.45630786209194746, "compression_ratio": 1.9322033898305084, "no_speech_prob": 1.0073184967041016e-05, "words": [{"start": 2253.87, "end": 2254.23, "word": " Of", "probability": 0.06756591796875}, {"start": 2254.23, "end": 2254.59, "word": " course,", "probability": 0.92919921875}, {"start": 2254.75, "end": 2255.07, "word": " I", "probability": 0.81884765625}, {"start": 2255.07, "end": 2255.29, "word": " did", "probability": 0.41259765625}, {"start": 2255.29, "end": 2255.55, "word": " something,", "probability": 0.615234375}, {"start": 2255.67, "end": 2255.77, "word": " when", "probability": 0.29833984375}, {"start": 2255.77, "end": 2255.89, "word": " I", "probability": 0.58251953125}, {"start": 2255.89, "end": 2256.09, "word": " reach", "probability": 0.41162109375}, {"start": 2256.09, "end": 2256.25, "word": " the", "probability": 0.63720703125}, {"start": 2256.25, "end": 2256.45, "word": " end,", "probability": 0.64453125}, {"start": 2256.63, "end": 2256.63, "word": " I", "probability": 0.77978515625}, {"start": 2256.63, "end": 2256.73, "word": " go", "probability": 0.533203125}, {"start": 2256.73, "end": 2256.79, "word": " back", "probability": 0.71923828125}, {"start": 2256.79, "end": 2257.77, "word": " to", "probability": 0.880859375}, {"start": 2257.77, "end": 2257.85, "word": " the", "probability": 0.64501953125}, {"start": 2257.85, "end": 2258.11, "word": " beginning,", "probability": 0.5087890625}, {"start": 2258.73, "end": 2258.73, "word": " and", "probability": 0.7021484375}, {"start": 2258.73, "end": 2258.97, "word": " whenever", "probability": 0.394287109375}, {"start": 2258.97, "end": 2259.07, "word": " it", "probability": 0.411376953125}, {"start": 2259.07, "end": 2259.29, "word": " changes", "probability": 0.71533203125}, {"start": 2259.29, "end": 2259.41, "word": " the", "probability": 0.62060546875}, {"start": 2259.41, "end": 2259.69, "word": " index,", "probability": 0.9033203125}, {"start": 2259.73, "end": 2260.01, "word": " it", "probability": 0.5107421875}, {"start": 2260.01, "end": 2260.27, "word": " executes", "probability": 0.6201171875}, {"start": 2260.27, "end": 2260.39, "word": " the", "probability": 0.376953125}, {"start": 2260.39, "end": 2260.81, "word": " method", "probability": 0.54736328125}, {"start": 2260.81, "end": 2261.95, "word": " update.", "probability": 0.5546875}, {"start": 2262.07, "end": 2262.25, "word": " What", "probability": 0.646484375}, {"start": 2262.25, "end": 2262.43, "word": " does", "probability": 0.67626953125}, {"start": 2262.43, "end": 2262.65, "word": " the", "probability": 0.56103515625}, {"start": 2262.65, "end": 2262.85, "word": " method", "probability": 0.8466796875}, {"start": 2262.85, "end": 2263.15, "word": " update", "probability": 0.89599609375}, {"start": 2263.15, "end": 2263.15, "word": " do?", "probability": 0.9091796875}, {"start": 2263.25, "end": 2263.31, "word": " Very", "probability": 0.400146484375}, {"start": 2263.31, "end": 2263.63, "word": " simple,", "probability": 0.84130859375}, {"start": 2263.93, "end": 2264.01, "word": " I", "probability": 0.468017578125}, {"start": 2264.01, "end": 2264.13, "word": " go", "probability": 0.92041015625}, {"start": 2264.13, "end": 2264.25, "word": " to", "probability": 0.9521484375}, {"start": 2264.25, "end": 2264.33, "word": " the", "probability": 0.75390625}, {"start": 2264.33, "end": 2264.51, "word": " image", "probability": 0.81103515625}, {"start": 2264.51, "end": 2264.91, "word": " label,", "probability": 0.9287109375}, {"start": 2265.41, "end": 2265.63, "word": " which", "probability": 0.55908203125}, {"start": 2265.63, "end": 2266.91, "word": " is", "probability": 0.86767578125}, {"start": 2266.91, "end": 2267.03, "word": " in", "probability": 0.52490234375}, {"start": 2267.03, "end": 2267.17, "word": " the", "probability": 0.90576171875}, {"start": 2267.17, "end": 2267.37, "word": " middle,", "probability": 0.8994140625}, {"start": 2267.83, "end": 2268.41, "word": " the", "probability": 0.250244140625}, {"start": 2268.41, "end": 2269.39, "word": " user", "probability": 0.86376953125}, {"start": 2269.39, "end": 2269.85, "word": " interface", "probability": 0.86279296875}, {"start": 2269.85, "end": 2270.05, "word": " is", "probability": 0.7275390625}, {"start": 2270.05, "end": 2270.43, "word": " simple,", "probability": 0.55322265625}, {"start": 2270.51, "end": 2270.63, "word": " there", "probability": 0.71533203125}, {"start": 2270.63, "end": 2270.65, "word": " is", "probability": 0.7646484375}, {"start": 2270.65, "end": 2270.77, "word": " an", "probability": 0.470947265625}, {"start": 2270.77, "end": 2270.91, "word": " image", "probability": 0.90966796875}, {"start": 2270.91, "end": 2271.31, "word": " label,", "probability": 0.95263671875}, {"start": 2271.83, "end": 2271.83, "word": " there", "probability": 0.464599609375}, {"start": 2271.83, "end": 2271.93, "word": " is", "probability": 0.92138671875}, {"start": 2271.93, "end": 2272.09, "word": " a", "probability": 0.75732421875}, {"start": 2272.09, "end": 2272.35, "word": " next", "probability": 0.6474609375}, {"start": 2272.35, "end": 2272.49, "word": " button", "probability": 0.6572265625}, {"start": 2272.49, "end": 2273.19, "word": " and", "probability": 0.54736328125}, {"start": 2273.19, "end": 2273.37, "word": " a", "probability": 0.80615234375}, {"start": 2273.37, "end": 2273.85, "word": " previous", "probability": 0.90283203125}, {"start": 2273.85, "end": 2273.87, "word": " button,", "probability": 0.83642578125}, {"start": 2274.45, "end": 2274.59, "word": " so", "probability": 0.77294921875}, {"start": 2274.59, "end": 2274.81, "word": " whenever", "probability": 0.8359375}, {"start": 2274.81, "end": 2274.93, "word": " I", "probability": 0.669921875}, {"start": 2274.93, "end": 2275.07, "word": " say", "probability": 0.51904296875}, {"start": 2275.07, "end": 2275.43, "word": " next", "probability": 0.87451171875}, {"start": 2275.43, "end": 2275.71, "word": " or", "probability": 0.93017578125}, {"start": 2275.71, "end": 2276.23, "word": " previous,", "probability": 0.904296875}, {"start": 2276.37, "end": 2276.57, "word": " it", "probability": 0.87890625}, {"start": 2276.57, "end": 2276.63, "word": " will", "probability": 0.52587890625}, {"start": 2276.63, "end": 2276.71, "word": " go", "probability": 0.302490234375}, {"start": 2276.71, "end": 2276.81, "word": " and", "probability": 0.53076171875}, {"start": 2276.81, "end": 2277.03, "word": " edit", "probability": 0.329833984375}, {"start": 2277.03, "end": 2277.21, "word": " the", "probability": 0.9150390625}, {"start": 2277.21, "end": 2277.61, "word": " index", "probability": 0.86181640625}, {"start": 2277.61, "end": 2278.15, "word": " and", "probability": 0.5439453125}, {"start": 2278.15, "end": 2278.33, "word": " tell", "probability": 0.37841796875}, {"start": 2278.33, "end": 2278.45, "word": " it", "probability": 0.479736328125}, {"start": 2278.45, "end": 2278.49, "word": " to", "probability": 0.87060546875}, {"start": 2278.49, "end": 2278.53, "word": " go", "probability": 0.93017578125}, {"start": 2278.53, "end": 2278.65, "word": " to", "probability": 0.94775390625}, {"start": 2278.65, "end": 2278.73, "word": " the", "probability": 0.8681640625}, {"start": 2278.73, "end": 2278.93, "word": " image", "probability": 0.912109375}, {"start": 2278.93, "end": 2279.23, "word": " label", "probability": 0.931640625}, {"start": 2279.23, "end": 2279.35, "word": " and", "probability": 0.81884765625}, {"start": 2279.35, "end": 2279.53, "word": " set", "probability": 0.77685546875}, {"start": 2279.53, "end": 2280.01, "word": " icon,", "probability": 0.720703125}], "temperature": 1.0}, {"id": 91, "seek": 230696, "start": 2280.86, "end": 2306.96, "text": " and change the image and go to the array images and get mail and so on until now is there a difficult case? yes? no? did you find it guys? where is the problem in this application? the problem in the application is that as soon as it works it will go here here is the problem did you see this loop? it will go and download all the images and put them in the array images this means that I have for example 1000 images", "tokens": [293, 1319, 264, 3256, 293, 352, 281, 264, 10225, 5267, 293, 483, 10071, 293, 370, 322, 1826, 586, 307, 456, 257, 2252, 1389, 30, 2086, 30, 572, 30, 630, 291, 915, 309, 1074, 30, 689, 307, 264, 1154, 294, 341, 3861, 30, 264, 1154, 294, 264, 3861, 307, 300, 382, 2321, 382, 309, 1985, 309, 486, 352, 510, 510, 307, 264, 1154, 630, 291, 536, 341, 6367, 30, 309, 486, 352, 293, 5484, 439, 264, 5267, 293, 829, 552, 294, 264, 10225, 5267, 341, 1355, 300, 286, 362, 337, 1365, 9714, 5267], "avg_logprob": -0.5147849488001998, "compression_ratio": 1.9624413145539905, "no_speech_prob": 1.4722347259521484e-05, "words": [{"start": 2280.86, "end": 2281.08, "word": " and", "probability": 0.191162109375}, {"start": 2281.08, "end": 2281.3, "word": " change", "probability": 0.69384765625}, {"start": 2281.3, "end": 2281.46, "word": " the", "probability": 0.7451171875}, {"start": 2281.46, "end": 2281.58, "word": " image", "probability": 0.338623046875}, {"start": 2281.58, "end": 2281.72, "word": " and", "probability": 0.170654296875}, {"start": 2281.72, "end": 2281.84, "word": " go", "probability": 0.671875}, {"start": 2281.84, "end": 2281.98, "word": " to", "probability": 0.9404296875}, {"start": 2281.98, "end": 2282.12, "word": " the", "probability": 0.59375}, {"start": 2282.12, "end": 2282.42, "word": " array", "probability": 0.51416015625}, {"start": 2282.42, "end": 2282.94, "word": " images", "probability": 0.6376953125}, {"start": 2282.94, "end": 2283.08, "word": " and", "probability": 0.7490234375}, {"start": 2283.08, "end": 2283.24, "word": " get", "probability": 0.71875}, {"start": 2283.24, "end": 2283.56, "word": " mail", "probability": 0.443359375}, {"start": 2283.56, "end": 2284.42, "word": " and", "probability": 0.2293701171875}, {"start": 2284.42, "end": 2284.64, "word": " so", "probability": 0.2376708984375}, {"start": 2284.64, "end": 2284.84, "word": " on", "probability": 0.865234375}, {"start": 2284.84, "end": 2285.22, "word": " until", "probability": 0.10406494140625}, {"start": 2285.22, "end": 2285.46, "word": " now", "probability": 0.89501953125}, {"start": 2285.46, "end": 2285.56, "word": " is", "probability": 0.303466796875}, {"start": 2285.56, "end": 2285.6, "word": " there", "probability": 0.8125}, {"start": 2285.6, "end": 2285.64, "word": " a", "probability": 0.40234375}, {"start": 2285.64, "end": 2286.02, "word": " difficult", "probability": 0.55078125}, {"start": 2286.02, "end": 2286.02, "word": " case?", "probability": 0.5458984375}, {"start": 2286.46, "end": 2286.78, "word": " yes?", "probability": 0.2060546875}, {"start": 2286.96, "end": 2287.18, "word": " no?", "probability": 0.7099609375}, {"start": 2287.68, "end": 2287.96, "word": " did", "probability": 0.40380859375}, {"start": 2287.96, "end": 2287.96, "word": " you", "probability": 0.95166015625}, {"start": 2287.96, "end": 2288.1, "word": " find", "probability": 0.4814453125}, {"start": 2288.1, "end": 2288.2, "word": " it", "probability": 0.411865234375}, {"start": 2288.2, "end": 2288.34, "word": " guys?", "probability": 0.546875}, {"start": 2288.44, "end": 2288.56, "word": " where", "probability": 0.55322265625}, {"start": 2288.56, "end": 2288.64, "word": " is", "probability": 0.87158203125}, {"start": 2288.64, "end": 2288.72, "word": " the", "probability": 0.90966796875}, {"start": 2288.72, "end": 2288.92, "word": " problem", "probability": 0.85302734375}, {"start": 2288.92, "end": 2289.08, "word": " in", "probability": 0.697265625}, {"start": 2289.08, "end": 2289.18, "word": " this", "probability": 0.8818359375}, {"start": 2289.18, "end": 2289.54, "word": " application?", "probability": 0.69580078125}, {"start": 2291.42, "end": 2291.82, "word": " the", "probability": 0.84228515625}, {"start": 2291.82, "end": 2292.04, "word": " problem", "probability": 0.86962890625}, {"start": 2292.04, "end": 2292.2, "word": " in", "probability": 0.7177734375}, {"start": 2292.2, "end": 2292.32, "word": " the", "probability": 0.607421875}, {"start": 2292.32, "end": 2292.66, "word": " application", "probability": 0.9111328125}, {"start": 2292.66, "end": 2292.98, "word": " is", "probability": 0.81591796875}, {"start": 2292.98, "end": 2293.12, "word": " that", "probability": 0.767578125}, {"start": 2293.12, "end": 2293.32, "word": " as", "probability": 0.408935546875}, {"start": 2293.32, "end": 2293.4, "word": " soon", "probability": 0.95654296875}, {"start": 2293.4, "end": 2293.46, "word": " as", "probability": 0.97021484375}, {"start": 2293.46, "end": 2293.6, "word": " it", "probability": 0.7734375}, {"start": 2293.6, "end": 2293.96, "word": " works", "probability": 0.354736328125}, {"start": 2293.96, "end": 2295.02, "word": " it", "probability": 0.402587890625}, {"start": 2295.02, "end": 2295.12, "word": " will", "probability": 0.2169189453125}, {"start": 2295.12, "end": 2295.36, "word": " go", "probability": 0.8330078125}, {"start": 2295.36, "end": 2295.68, "word": " here", "probability": 0.384521484375}, {"start": 2295.68, "end": 2296.0, "word": " here", "probability": 0.270751953125}, {"start": 2296.0, "end": 2296.08, "word": " is", "probability": 0.76416015625}, {"start": 2296.08, "end": 2296.12, "word": " the", "probability": 0.9091796875}, {"start": 2296.12, "end": 2296.32, "word": " problem", "probability": 0.865234375}, {"start": 2296.32, "end": 2296.46, "word": " did", "probability": 0.383544921875}, {"start": 2296.46, "end": 2296.46, "word": " you", "probability": 0.96826171875}, {"start": 2296.46, "end": 2296.64, "word": " see", "probability": 0.90185546875}, {"start": 2296.64, "end": 2296.76, "word": " this", "probability": 0.78369140625}, {"start": 2296.76, "end": 2296.98, "word": " loop?", "probability": 0.89990234375}, {"start": 2298.12, "end": 2298.4, "word": " it", "probability": 0.2264404296875}, {"start": 2298.4, "end": 2299.18, "word": " will", "probability": 0.740234375}, {"start": 2299.18, "end": 2299.34, "word": " go", "probability": 0.7177734375}, {"start": 2299.34, "end": 2299.58, "word": " and", "probability": 0.394287109375}, {"start": 2299.58, "end": 2299.58, "word": " download", "probability": 0.5458984375}, {"start": 2299.58, "end": 2299.72, "word": " all", "probability": 0.86865234375}, {"start": 2299.72, "end": 2299.88, "word": " the", "probability": 0.74853515625}, {"start": 2299.88, "end": 2300.12, "word": " images", "probability": 0.55078125}, {"start": 2300.12, "end": 2301.78, "word": " and", "probability": 0.892578125}, {"start": 2301.78, "end": 2302.02, "word": " put", "probability": 0.6220703125}, {"start": 2302.02, "end": 2302.12, "word": " them", "probability": 0.85791015625}, {"start": 2302.12, "end": 2302.22, "word": " in", "probability": 0.89794921875}, {"start": 2302.22, "end": 2302.3, "word": " the", "probability": 0.78125}, {"start": 2302.3, "end": 2302.48, "word": " array", "probability": 0.8759765625}, {"start": 2302.48, "end": 2302.92, "word": " images", "probability": 0.83642578125}, {"start": 2302.92, "end": 2304.74, "word": " this", "probability": 0.5537109375}, {"start": 2304.74, "end": 2305.0, "word": " means", "probability": 0.91796875}, {"start": 2305.0, "end": 2305.22, "word": " that", "probability": 0.6318359375}, {"start": 2305.22, "end": 2305.34, "word": " I", "probability": 0.50830078125}, {"start": 2305.34, "end": 2305.5, "word": " have", "probability": 0.90673828125}, {"start": 2305.5, "end": 2305.64, "word": " for", "probability": 0.486572265625}, {"start": 2305.64, "end": 2305.92, "word": " example", "probability": 0.9599609375}, {"start": 2305.92, "end": 2306.66, "word": " 1000", "probability": 0.41943359375}, {"start": 2306.66, "end": 2306.96, "word": " images", "probability": 0.75927734375}], "temperature": 1.0}, {"id": 92, "seek": 232441, "start": 2307.77, "end": 2324.41, "text": "and the pictures are big, it will take a lot of time and to show you the time, I did a simple thing, I calculated the time before you download it, yes, in the beginning, this line brings the start time, and after downloading, what did you bring here?", "tokens": [474, 264, 5242, 366, 955, 11, 309, 486, 747, 257, 688, 295, 565, 293, 281, 855, 291, 264, 565, 11, 286, 630, 257, 2199, 551, 11, 286, 15598, 264, 565, 949, 291, 5484, 309, 11, 2086, 11, 294, 264, 2863, 11, 341, 1622, 5607, 264, 722, 565, 11, 293, 934, 32529, 11, 437, 630, 291, 1565, 510, 30], "avg_logprob": -0.6175847639471798, "compression_ratio": 1.5923566878980893, "no_speech_prob": 2.7298927307128906e-05, "words": [{"start": 2307.77, "end": 2307.99, "word": "and", "probability": 0.2093505859375}, {"start": 2307.99, "end": 2308.11, "word": " the", "probability": 0.4658203125}, {"start": 2308.11, "end": 2308.25, "word": " pictures", "probability": 0.245849609375}, {"start": 2308.25, "end": 2308.39, "word": " are", "probability": 0.3125}, {"start": 2308.39, "end": 2308.89, "word": " big,", "probability": 0.3720703125}, {"start": 2309.13, "end": 2309.97, "word": " it", "probability": 0.5693359375}, {"start": 2309.97, "end": 2310.05, "word": " will", "probability": 0.64013671875}, {"start": 2310.05, "end": 2310.27, "word": " take", "probability": 0.857421875}, {"start": 2310.27, "end": 2310.75, "word": " a", "probability": 0.439697265625}, {"start": 2310.75, "end": 2311.07, "word": " lot", "probability": 0.666015625}, {"start": 2311.07, "end": 2311.07, "word": " of", "probability": 0.958984375}, {"start": 2311.07, "end": 2311.59, "word": " time", "probability": 0.81787109375}, {"start": 2311.59, "end": 2311.99, "word": " and", "probability": 0.2144775390625}, {"start": 2311.99, "end": 2312.29, "word": " to", "probability": 0.66748046875}, {"start": 2312.29, "end": 2312.61, "word": " show", "probability": 0.90234375}, {"start": 2312.61, "end": 2312.81, "word": " you", "probability": 0.92822265625}, {"start": 2312.81, "end": 2312.83, "word": " the", "probability": 0.5556640625}, {"start": 2312.83, "end": 2313.01, "word": " time,", "probability": 0.45947265625}, {"start": 2313.39, "end": 2313.57, "word": " I", "probability": 0.76708984375}, {"start": 2313.57, "end": 2313.75, "word": " did", "probability": 0.7900390625}, {"start": 2313.75, "end": 2314.03, "word": " a", "probability": 0.6123046875}, {"start": 2314.03, "end": 2314.29, "word": " simple", "probability": 0.89453125}, {"start": 2314.29, "end": 2314.41, "word": " thing,", "probability": 0.83251953125}, {"start": 2314.57, "end": 2314.75, "word": " I", "probability": 0.7138671875}, {"start": 2314.75, "end": 2315.17, "word": " calculated", "probability": 0.492919921875}, {"start": 2315.17, "end": 2315.31, "word": " the", "probability": 0.810546875}, {"start": 2315.31, "end": 2315.57, "word": " time", "probability": 0.8642578125}, {"start": 2315.57, "end": 2316.61, "word": " before", "probability": 0.78173828125}, {"start": 2316.61, "end": 2317.47, "word": " you", "probability": 0.08538818359375}, {"start": 2317.47, "end": 2317.63, "word": " download", "probability": 0.59130859375}, {"start": 2317.63, "end": 2317.89, "word": " it,", "probability": 0.60888671875}, {"start": 2317.99, "end": 2318.15, "word": " yes,", "probability": 0.27587890625}, {"start": 2318.63, "end": 2319.29, "word": " in", "probability": 0.264892578125}, {"start": 2319.29, "end": 2319.43, "word": " the", "probability": 0.9052734375}, {"start": 2319.43, "end": 2319.67, "word": " beginning,", "probability": 0.61181640625}, {"start": 2319.83, "end": 2319.91, "word": " this", "probability": 0.6572265625}, {"start": 2319.91, "end": 2320.17, "word": " line", "probability": 0.84619140625}, {"start": 2320.17, "end": 2321.07, "word": " brings", "probability": 0.337890625}, {"start": 2321.07, "end": 2321.27, "word": " the", "probability": 0.521484375}, {"start": 2321.27, "end": 2321.55, "word": " start", "probability": 0.912109375}, {"start": 2321.55, "end": 2321.85, "word": " time,", "probability": 0.8486328125}, {"start": 2322.41, "end": 2322.59, "word": " and", "probability": 0.810546875}, {"start": 2322.59, "end": 2322.83, "word": " after", "probability": 0.74169921875}, {"start": 2322.83, "end": 2323.35, "word": " downloading,", "probability": 0.443359375}, {"start": 2323.77, "end": 2323.99, "word": " what", "probability": 0.43310546875}, {"start": 2323.99, "end": 2323.99, "word": " did", "probability": 0.66455078125}, {"start": 2323.99, "end": 2324.19, "word": " you", "probability": 0.83056640625}, {"start": 2324.19, "end": 2324.19, "word": " bring", "probability": 0.521484375}, {"start": 2324.19, "end": 2324.41, "word": " here?", "probability": 0.78076171875}], "temperature": 1.0}, {"id": 93, "seek": 234115, "start": 2325.19, "end": 2341.15, "text": "The end time, then I put the end time minus the start time and divided it by a million to get me the time in milliseconds, okay? So now if I run this program, it will work and it wrote to me that it took 301 milliseconds", "tokens": [2278, 917, 565, 11, 550, 286, 829, 264, 917, 565, 3175, 264, 722, 565, 293, 6666, 309, 538, 257, 2459, 281, 483, 385, 264, 565, 294, 34184, 11, 1392, 30, 407, 586, 498, 286, 1190, 341, 1461, 11, 309, 486, 589, 293, 309, 4114, 281, 385, 300, 309, 1890, 2217, 16, 34184], "avg_logprob": -0.6196933917279513, "compression_ratio": 1.5068493150684932, "no_speech_prob": 4.607439041137695e-05, "words": [{"start": 2325.19, "end": 2325.39, "word": "The", "probability": 0.05255126953125}, {"start": 2325.39, "end": 2325.61, "word": " end", "probability": 0.634765625}, {"start": 2325.61, "end": 2325.85, "word": " time,", "probability": 0.640625}, {"start": 2326.17, "end": 2326.51, "word": " then", "probability": 0.382568359375}, {"start": 2326.51, "end": 2326.67, "word": " I", "probability": 0.78515625}, {"start": 2326.67, "end": 2326.99, "word": " put", "probability": 0.040771484375}, {"start": 2326.99, "end": 2327.13, "word": " the", "probability": 0.537109375}, {"start": 2327.13, "end": 2327.39, "word": " end", "probability": 0.6708984375}, {"start": 2327.39, "end": 2327.65, "word": " time", "probability": 0.826171875}, {"start": 2327.65, "end": 2327.93, "word": " minus", "probability": 0.7470703125}, {"start": 2327.93, "end": 2328.11, "word": " the", "probability": 0.64990234375}, {"start": 2328.11, "end": 2328.37, "word": " start", "probability": 0.9296875}, {"start": 2328.37, "end": 2328.61, "word": " time", "probability": 0.87353515625}, {"start": 2328.61, "end": 2328.75, "word": " and", "probability": 0.52392578125}, {"start": 2328.75, "end": 2329.09, "word": " divided", "probability": 0.50634765625}, {"start": 2329.09, "end": 2329.25, "word": " it", "probability": 0.533203125}, {"start": 2329.25, "end": 2329.35, "word": " by", "probability": 0.44677734375}, {"start": 2329.35, "end": 2329.49, "word": " a", "probability": 0.314208984375}, {"start": 2329.49, "end": 2329.65, "word": " million", "probability": 0.841796875}, {"start": 2329.65, "end": 2329.97, "word": " to", "probability": 0.72265625}, {"start": 2329.97, "end": 2330.23, "word": " get", "probability": 0.521484375}, {"start": 2330.23, "end": 2330.39, "word": " me", "probability": 0.46875}, {"start": 2330.39, "end": 2330.39, "word": " the", "probability": 0.64990234375}, {"start": 2330.39, "end": 2330.61, "word": " time", "probability": 0.73046875}, {"start": 2330.61, "end": 2330.79, "word": " in", "probability": 0.70947265625}, {"start": 2330.79, "end": 2331.65, "word": " milliseconds,", "probability": 0.78955078125}, {"start": 2332.39, "end": 2332.83, "word": " okay?", "probability": 0.357421875}, {"start": 2333.51, "end": 2333.63, "word": " So", "probability": 0.52880859375}, {"start": 2333.63, "end": 2333.81, "word": " now", "probability": 0.64794921875}, {"start": 2333.81, "end": 2333.97, "word": " if", "probability": 0.720703125}, {"start": 2333.97, "end": 2334.21, "word": " I", "probability": 0.98046875}, {"start": 2334.21, "end": 2334.73, "word": " run", "probability": 0.386474609375}, {"start": 2334.73, "end": 2335.03, "word": " this", "probability": 0.5546875}, {"start": 2335.03, "end": 2335.55, "word": " program,", "probability": 0.82763671875}, {"start": 2336.45, "end": 2337.01, "word": " it", "probability": 0.71875}, {"start": 2337.01, "end": 2337.07, "word": " will", "probability": 0.6923828125}, {"start": 2337.07, "end": 2337.47, "word": " work", "probability": 0.59765625}, {"start": 2337.47, "end": 2337.95, "word": " and", "probability": 0.68115234375}, {"start": 2337.95, "end": 2338.23, "word": " it", "probability": 0.55712890625}, {"start": 2338.23, "end": 2338.45, "word": " wrote", "probability": 0.1861572265625}, {"start": 2338.45, "end": 2338.55, "word": " to", "probability": 0.186767578125}, {"start": 2338.55, "end": 2338.71, "word": " me", "probability": 0.81201171875}, {"start": 2338.71, "end": 2339.31, "word": " that", "probability": 0.6083984375}, {"start": 2339.31, "end": 2339.45, "word": " it", "probability": 0.79296875}, {"start": 2339.45, "end": 2339.67, "word": " took", "probability": 0.88134765625}, {"start": 2339.67, "end": 2340.55, "word": " 301", "probability": 0.8583984375}, {"start": 2340.55, "end": 2341.15, "word": " milliseconds", "probability": 0.8701171875}], "temperature": 1.0}, {"id": 94, "seek": 236800, "start": 2342.42, "end": 2368.0, "text": " It's not a lot of images, it's simple. It's 0.3 per second, okay? Someone says, okay, it's working. This is a small number of images, and the images are actually small. But if you bring big images, and the number of images is big, this image is going to get smaller and smaller. Okay? We at GATE want to do the following. My goal is that the program does not load all the images at once.", "tokens": [467, 311, 406, 257, 688, 295, 5267, 11, 309, 311, 2199, 13, 467, 311, 1958, 13, 18, 680, 1150, 11, 1392, 30, 8734, 1619, 11, 1392, 11, 309, 311, 1364, 13, 639, 307, 257, 1359, 1230, 295, 5267, 11, 293, 264, 5267, 366, 767, 1359, 13, 583, 498, 291, 1565, 955, 5267, 11, 293, 264, 1230, 295, 5267, 307, 955, 11, 341, 3256, 307, 516, 281, 483, 4356, 293, 4356, 13, 1033, 30, 492, 412, 460, 20047, 528, 281, 360, 264, 3480, 13, 1222, 3387, 307, 300, 264, 1461, 775, 406, 3677, 439, 264, 5267, 412, 1564, 13], "avg_logprob": -0.6717171464303527, "compression_ratio": 1.6869565217391305, "no_speech_prob": 1.8417835235595703e-05, "words": [{"start": 2342.42, "end": 2342.64, "word": " It's", "probability": 0.389434814453125}, {"start": 2342.64, "end": 2342.68, "word": " not", "probability": 0.7138671875}, {"start": 2342.68, "end": 2342.76, "word": " a", "probability": 0.2135009765625}, {"start": 2342.76, "end": 2342.94, "word": " lot", "probability": 0.88427734375}, {"start": 2342.94, "end": 2343.08, "word": " of", "probability": 0.57958984375}, {"start": 2343.08, "end": 2343.18, "word": " images,", "probability": 0.2464599609375}, {"start": 2343.28, "end": 2343.36, "word": " it's", "probability": 0.76171875}, {"start": 2343.36, "end": 2343.66, "word": " simple.", "probability": 0.55029296875}, {"start": 2345.12, "end": 2345.52, "word": " It's", "probability": 0.49725341796875}, {"start": 2345.52, "end": 2345.66, "word": " 0", "probability": 0.29931640625}, {"start": 2345.66, "end": 2346.76, "word": ".3", "probability": 0.980224609375}, {"start": 2346.76, "end": 2346.94, "word": " per", "probability": 0.1883544921875}, {"start": 2346.94, "end": 2347.34, "word": " second,", "probability": 0.93798828125}, {"start": 2347.44, "end": 2347.98, "word": " okay?", "probability": 0.27685546875}, {"start": 2348.7, "end": 2349.1, "word": " Someone", "probability": 0.298095703125}, {"start": 2349.1, "end": 2349.32, "word": " says,", "probability": 0.226806640625}, {"start": 2349.44, "end": 2349.8, "word": " okay,", "probability": 0.370361328125}, {"start": 2349.92, "end": 2350.06, "word": " it's", "probability": 0.4893798828125}, {"start": 2350.06, "end": 2350.34, "word": " working.", "probability": 0.497802734375}, {"start": 2350.46, "end": 2350.76, "word": " This", "probability": 0.37548828125}, {"start": 2350.76, "end": 2350.86, "word": " is", "probability": 0.8837890625}, {"start": 2350.86, "end": 2351.06, "word": " a", "probability": 0.8037109375}, {"start": 2351.06, "end": 2351.72, "word": " small", "probability": 0.75830078125}, {"start": 2351.72, "end": 2351.78, "word": " number", "probability": 0.748046875}, {"start": 2351.78, "end": 2352.0, "word": " of", "probability": 0.94287109375}, {"start": 2352.0, "end": 2352.16, "word": " images,", "probability": 0.61328125}, {"start": 2352.26, "end": 2352.32, "word": " and", "probability": 0.6865234375}, {"start": 2352.32, "end": 2352.36, "word": " the", "probability": 0.6875}, {"start": 2352.36, "end": 2352.5, "word": " images", "probability": 0.36865234375}, {"start": 2352.5, "end": 2352.58, "word": " are", "probability": 0.54638671875}, {"start": 2352.58, "end": 2352.82, "word": " actually", "probability": 0.143310546875}, {"start": 2352.82, "end": 2353.18, "word": " small.", "probability": 0.77490234375}, {"start": 2354.24, "end": 2354.64, "word": " But", "probability": 0.58935546875}, {"start": 2354.64, "end": 2354.76, "word": " if", "probability": 0.7490234375}, {"start": 2354.76, "end": 2354.92, "word": " you", "probability": 0.51416015625}, {"start": 2354.92, "end": 2354.92, "word": " bring", "probability": 0.355224609375}, {"start": 2354.92, "end": 2354.96, "word": " big", "probability": 0.295166015625}, {"start": 2354.96, "end": 2355.54, "word": " images,", "probability": 0.615234375}, {"start": 2356.02, "end": 2356.04, "word": " and", "probability": 0.274658203125}, {"start": 2356.04, "end": 2356.18, "word": " the", "probability": 0.421142578125}, {"start": 2356.18, "end": 2356.18, "word": " number", "probability": 0.6083984375}, {"start": 2356.18, "end": 2356.32, "word": " of", "probability": 0.802734375}, {"start": 2356.32, "end": 2356.46, "word": " images", "probability": 0.50537109375}, {"start": 2356.46, "end": 2356.56, "word": " is", "probability": 0.82177734375}, {"start": 2356.56, "end": 2356.84, "word": " big,", "probability": 0.6630859375}, {"start": 2357.1, "end": 2357.18, "word": " this", "probability": 0.255615234375}, {"start": 2357.18, "end": 2357.34, "word": " image", "probability": 0.1435546875}, {"start": 2357.34, "end": 2357.82, "word": " is", "probability": 0.1473388671875}, {"start": 2357.82, "end": 2357.98, "word": " going", "probability": 0.728515625}, {"start": 2357.98, "end": 2358.8, "word": " to", "probability": 0.96923828125}, {"start": 2358.8, "end": 2358.96, "word": " get", "probability": 0.26220703125}, {"start": 2358.96, "end": 2359.2, "word": " smaller", "probability": 0.1177978515625}, {"start": 2359.2, "end": 2359.44, "word": " and", "probability": 0.84619140625}, {"start": 2359.44, "end": 2360.04, "word": " smaller.", "probability": 0.87939453125}, {"start": 2360.16, "end": 2360.34, "word": " Okay?", "probability": 0.345703125}, {"start": 2360.88, "end": 2361.14, "word": " We", "probability": 0.6435546875}, {"start": 2361.14, "end": 2361.24, "word": " at", "probability": 0.306884765625}, {"start": 2361.24, "end": 2361.5, "word": " GATE", "probability": 0.5758056640625}, {"start": 2361.5, "end": 2361.7, "word": " want", "probability": 0.68115234375}, {"start": 2361.7, "end": 2361.78, "word": " to", "probability": 0.96728515625}, {"start": 2361.78, "end": 2361.98, "word": " do", "probability": 0.884765625}, {"start": 2361.98, "end": 2362.14, "word": " the", "probability": 0.8154296875}, {"start": 2362.14, "end": 2362.34, "word": " following.", "probability": 0.857421875}, {"start": 2362.8, "end": 2363.1, "word": " My", "probability": 0.2293701171875}, {"start": 2363.1, "end": 2363.1, "word": " goal", "probability": 0.87841796875}, {"start": 2363.1, "end": 2363.3, "word": " is", "probability": 0.892578125}, {"start": 2363.3, "end": 2364.04, "word": " that", "probability": 0.7275390625}, {"start": 2364.04, "end": 2364.34, "word": " the", "probability": 0.55517578125}, {"start": 2364.34, "end": 2364.88, "word": " program", "probability": 0.77783203125}, {"start": 2364.88, "end": 2365.82, "word": " does", "probability": 0.556640625}, {"start": 2365.82, "end": 2366.06, "word": " not", "probability": 0.9482421875}, {"start": 2366.06, "end": 2367.0, "word": " load", "probability": 0.216064453125}, {"start": 2367.0, "end": 2367.18, "word": " all", "probability": 0.8115234375}, {"start": 2367.18, "end": 2367.18, "word": " the", "probability": 0.560546875}, {"start": 2367.18, "end": 2367.4, "word": " images", "probability": 0.78564453125}, {"start": 2367.4, "end": 2367.82, "word": " at", "probability": 0.85791015625}, {"start": 2367.82, "end": 2368.0, "word": " once.", "probability": 0.85693359375}], "temperature": 1.0}, {"id": 95, "seek": 239911, "start": 2370.15, "end": 2399.11, "text": " to load the image only when I press next or previous Ok, it's true that when I press next, it will take some time but it's better than waiting for example if I have a thousand images and each image takes half a millisecond it will take a long time when it runs but I want it to run and show only the first image and then when it does next or previous it will load the next image or the previous one I want to delay the process of loading images when needed", "tokens": [281, 3677, 264, 3256, 787, 562, 286, 1886, 958, 420, 3894, 3477, 11, 309, 311, 2074, 300, 562, 286, 1886, 958, 11, 309, 486, 747, 512, 565, 457, 309, 311, 1101, 813, 3806, 337, 1365, 498, 286, 362, 257, 4714, 5267, 293, 1184, 3256, 2516, 1922, 257, 27940, 18882, 309, 486, 747, 257, 938, 565, 562, 309, 6676, 457, 286, 528, 309, 281, 1190, 293, 855, 787, 264, 700, 3256, 293, 550, 562, 309, 775, 958, 420, 3894, 309, 486, 3677, 264, 958, 3256, 420, 264, 3894, 472, 286, 528, 281, 8577, 264, 1399, 295, 15114, 5267, 562, 2978], "avg_logprob": -0.5278124982118606, "compression_ratio": 1.9364406779661016, "no_speech_prob": 2.9206275939941406e-06, "words": [{"start": 2370.15, "end": 2370.59, "word": " to", "probability": 0.09356689453125}, {"start": 2370.59, "end": 2371.01, "word": " load", "probability": 0.685546875}, {"start": 2371.01, "end": 2371.25, "word": " the", "probability": 0.4658203125}, {"start": 2371.25, "end": 2371.47, "word": " image", "probability": 0.38671875}, {"start": 2371.47, "end": 2371.77, "word": " only", "probability": 0.69482421875}, {"start": 2371.77, "end": 2372.01, "word": " when", "probability": 0.57666015625}, {"start": 2372.01, "end": 2372.15, "word": " I", "probability": 0.81201171875}, {"start": 2372.15, "end": 2372.29, "word": " press", "probability": 0.4306640625}, {"start": 2372.29, "end": 2372.69, "word": " next", "probability": 0.5439453125}, {"start": 2372.69, "end": 2373.67, "word": " or", "probability": 0.7890625}, {"start": 2373.67, "end": 2374.07, "word": " previous", "probability": 0.84130859375}, {"start": 2374.07, "end": 2374.91, "word": " Ok,", "probability": 0.1365966796875}, {"start": 2375.03, "end": 2375.13, "word": " it's", "probability": 0.3665771484375}, {"start": 2375.13, "end": 2375.23, "word": " true", "probability": 0.53369140625}, {"start": 2375.23, "end": 2375.37, "word": " that", "probability": 0.70361328125}, {"start": 2375.37, "end": 2375.55, "word": " when", "probability": 0.1837158203125}, {"start": 2375.55, "end": 2375.57, "word": " I", "probability": 0.55810546875}, {"start": 2375.57, "end": 2375.57, "word": " press", "probability": 0.5888671875}, {"start": 2375.57, "end": 2375.83, "word": " next,", "probability": 0.884765625}, {"start": 2375.91, "end": 2375.97, "word": " it", "probability": 0.85791015625}, {"start": 2375.97, "end": 2376.05, "word": " will", "probability": 0.32421875}, {"start": 2376.05, "end": 2376.23, "word": " take", "probability": 0.8515625}, {"start": 2376.23, "end": 2376.51, "word": " some", "probability": 0.5068359375}, {"start": 2376.51, "end": 2376.51, "word": " time", "probability": 0.87158203125}, {"start": 2376.51, "end": 2377.61, "word": " but", "probability": 0.393310546875}, {"start": 2377.61, "end": 2377.83, "word": " it's", "probability": 0.430908203125}, {"start": 2377.83, "end": 2377.91, "word": " better", "probability": 0.5478515625}, {"start": 2377.91, "end": 2378.05, "word": " than", "probability": 0.71728515625}, {"start": 2378.05, "end": 2378.39, "word": " waiting", "probability": 0.61669921875}, {"start": 2378.39, "end": 2378.79, "word": " for", "probability": 0.487060546875}, {"start": 2378.79, "end": 2378.79, "word": " example", "probability": 0.732421875}, {"start": 2378.79, "end": 2378.93, "word": " if", "probability": 0.452880859375}, {"start": 2378.93, "end": 2379.09, "word": " I", "probability": 0.916015625}, {"start": 2379.09, "end": 2379.17, "word": " have", "probability": 0.84375}, {"start": 2379.17, "end": 2379.23, "word": " a", "probability": 0.278076171875}, {"start": 2379.23, "end": 2379.37, "word": " thousand", "probability": 0.78173828125}, {"start": 2379.37, "end": 2379.69, "word": " images", "probability": 0.810546875}, {"start": 2379.69, "end": 2380.73, "word": " and", "probability": 0.5771484375}, {"start": 2380.73, "end": 2380.95, "word": " each", "probability": 0.6875}, {"start": 2380.95, "end": 2381.21, "word": " image", "probability": 0.7763671875}, {"start": 2381.21, "end": 2381.75, "word": " takes", "probability": 0.4814453125}, {"start": 2381.75, "end": 2382.15, "word": " half", "probability": 0.591796875}, {"start": 2382.15, "end": 2382.27, "word": " a", "probability": 0.62646484375}, {"start": 2382.27, "end": 2382.85, "word": " millisecond", "probability": 0.928466796875}, {"start": 2382.85, "end": 2383.61, "word": " it", "probability": 0.64599609375}, {"start": 2383.61, "end": 2383.71, "word": " will", "probability": 0.703125}, {"start": 2383.71, "end": 2383.87, "word": " take", "probability": 0.86572265625}, {"start": 2383.87, "end": 2384.33, "word": " a", "probability": 0.720703125}, {"start": 2384.33, "end": 2384.71, "word": " long", "probability": 0.572265625}, {"start": 2384.71, "end": 2384.71, "word": " time", "probability": 0.87451171875}, {"start": 2384.71, "end": 2385.59, "word": " when", "probability": 0.42724609375}, {"start": 2385.59, "end": 2385.65, "word": " it", "probability": 0.76025390625}, {"start": 2385.65, "end": 2385.83, "word": " runs", "probability": 0.403076171875}, {"start": 2385.83, "end": 2386.87, "word": " but", "probability": 0.72021484375}, {"start": 2386.87, "end": 2387.09, "word": " I", "probability": 0.78466796875}, {"start": 2387.09, "end": 2387.25, "word": " want", "probability": 0.6748046875}, {"start": 2387.25, "end": 2387.35, "word": " it", "probability": 0.7822265625}, {"start": 2387.35, "end": 2387.35, "word": " to", "probability": 0.953125}, {"start": 2387.35, "end": 2387.67, "word": " run", "probability": 0.83251953125}, {"start": 2387.67, "end": 2388.05, "word": " and", "probability": 0.75390625}, {"start": 2388.05, "end": 2388.31, "word": " show", "probability": 0.50244140625}, {"start": 2388.31, "end": 2388.41, "word": " only", "probability": 0.37744140625}, {"start": 2388.41, "end": 2388.61, "word": " the", "probability": 0.8720703125}, {"start": 2388.61, "end": 2388.61, "word": " first", "probability": 0.87939453125}, {"start": 2388.61, "end": 2388.89, "word": " image", "probability": 0.8251953125}, {"start": 2388.89, "end": 2390.35, "word": " and", "probability": 0.2371826171875}, {"start": 2390.35, "end": 2390.83, "word": " then", "probability": 0.5185546875}, {"start": 2390.83, "end": 2391.01, "word": " when", "probability": 0.86962890625}, {"start": 2391.01, "end": 2391.09, "word": " it", "probability": 0.77197265625}, {"start": 2391.09, "end": 2391.29, "word": " does", "probability": 0.275634765625}, {"start": 2391.29, "end": 2391.63, "word": " next", "probability": 0.89208984375}, {"start": 2391.63, "end": 2392.11, "word": " or", "probability": 0.9140625}, {"start": 2392.11, "end": 2392.49, "word": " previous", "probability": 0.8955078125}, {"start": 2392.49, "end": 2392.67, "word": " it", "probability": 0.55712890625}, {"start": 2392.67, "end": 2392.71, "word": " will", "probability": 0.373291015625}, {"start": 2392.71, "end": 2392.93, "word": " load", "probability": 0.8544921875}, {"start": 2392.93, "end": 2393.09, "word": " the", "probability": 0.8916015625}, {"start": 2393.09, "end": 2393.59, "word": " next", "probability": 0.81201171875}, {"start": 2393.59, "end": 2393.69, "word": " image", "probability": 0.499267578125}, {"start": 2393.69, "end": 2393.89, "word": " or", "probability": 0.59228515625}, {"start": 2393.89, "end": 2394.61, "word": " the", "probability": 0.75341796875}, {"start": 2394.61, "end": 2394.81, "word": " previous", "probability": 0.5556640625}, {"start": 2394.81, "end": 2394.95, "word": " one", "probability": 0.6298828125}, {"start": 2394.95, "end": 2395.63, "word": " I", "probability": 0.483642578125}, {"start": 2395.63, "end": 2395.91, "word": " want", "probability": 0.5390625}, {"start": 2395.91, "end": 2396.05, "word": " to", "probability": 0.92578125}, {"start": 2396.05, "end": 2396.33, "word": " delay", "probability": 0.82373046875}, {"start": 2396.33, "end": 2396.47, "word": " the", "probability": 0.8388671875}, {"start": 2396.47, "end": 2396.67, "word": " process", "probability": 0.397216796875}, {"start": 2396.67, "end": 2396.97, "word": " of", "probability": 0.94580078125}, {"start": 2396.97, "end": 2397.21, "word": " loading", "probability": 0.73974609375}, {"start": 2397.21, "end": 2397.77, "word": " images", "probability": 0.42333984375}, {"start": 2397.77, "end": 2398.19, "word": " when", "probability": 0.422607421875}, {"start": 2398.19, "end": 2399.11, "word": " needed", "probability": 0.275146484375}], "temperature": 1.0}, {"id": 96, "seek": 242423, "start": 2400.08, "end": 2424.24, "text": "How can I do it with a simple trick without changing the client's code? Where is the trick? The class ImageIcon is the problem. If I create an ImageIcon and pass a path to it, this creation of the ImageIcon is costly. The process of creating a new ImageIcon is costly.", "tokens": [6462, 393, 286, 360, 309, 365, 257, 2199, 4282, 1553, 4473, 264, 6423, 311, 3089, 30, 2305, 307, 264, 4282, 30, 440, 1508, 29903, 40, 1671, 307, 264, 1154, 13, 759, 286, 1884, 364, 29903, 40, 1671, 293, 1320, 257, 3100, 281, 309, 11, 341, 8016, 295, 264, 29903, 40, 1671, 307, 28328, 13, 440, 1399, 295, 4084, 257, 777, 29903, 40, 1671, 307, 28328, 13], "avg_logprob": -0.5830223898389446, "compression_ratio": 1.6441717791411044, "no_speech_prob": 1.3232231140136719e-05, "words": [{"start": 2400.08, "end": 2400.72, "word": "How", "probability": 0.2841796875}, {"start": 2400.72, "end": 2400.86, "word": " can", "probability": 0.271240234375}, {"start": 2400.86, "end": 2400.88, "word": " I", "probability": 0.80615234375}, {"start": 2400.88, "end": 2401.08, "word": " do", "probability": 0.55908203125}, {"start": 2401.08, "end": 2401.36, "word": " it", "probability": 0.6337890625}, {"start": 2401.36, "end": 2401.76, "word": " with", "probability": 0.362548828125}, {"start": 2401.76, "end": 2401.86, "word": " a", "probability": 0.57080078125}, {"start": 2401.86, "end": 2402.36, "word": " simple", "probability": 0.86376953125}, {"start": 2402.36, "end": 2402.36, "word": " trick", "probability": 0.88623046875}, {"start": 2402.36, "end": 2402.8, "word": " without", "probability": 0.4921875}, {"start": 2402.8, "end": 2403.24, "word": " changing", "probability": 0.75146484375}, {"start": 2403.24, "end": 2403.36, "word": " the", "probability": 0.486083984375}, {"start": 2403.36, "end": 2404.04, "word": " client's", "probability": 0.61181640625}, {"start": 2404.04, "end": 2404.04, "word": " code?", "probability": 0.81982421875}, {"start": 2406.36, "end": 2407.0, "word": " Where", "probability": 0.12445068359375}, {"start": 2407.0, "end": 2407.08, "word": " is", "probability": 0.55029296875}, {"start": 2407.08, "end": 2407.24, "word": " the", "probability": 0.7734375}, {"start": 2407.24, "end": 2407.48, "word": " trick?", "probability": 0.8037109375}, {"start": 2408.3, "end": 2408.66, "word": " The", "probability": 0.471923828125}, {"start": 2408.66, "end": 2408.96, "word": " class", "probability": 0.71826171875}, {"start": 2408.96, "end": 2409.6, "word": " ImageIcon", "probability": 0.8209635416666666}, {"start": 2409.6, "end": 2410.16, "word": " is", "probability": 0.51708984375}, {"start": 2410.16, "end": 2410.34, "word": " the", "probability": 0.818359375}, {"start": 2410.34, "end": 2410.6, "word": " problem.", "probability": 0.732421875}, {"start": 2411.18, "end": 2411.5, "word": " If", "probability": 0.2413330078125}, {"start": 2411.5, "end": 2412.16, "word": " I", "probability": 0.67919921875}, {"start": 2412.16, "end": 2412.4, "word": " create", "probability": 0.431884765625}, {"start": 2412.4, "end": 2412.58, "word": " an", "probability": 0.69482421875}, {"start": 2412.58, "end": 2413.1, "word": " ImageIcon", "probability": 0.8274739583333334}, {"start": 2413.1, "end": 2413.2, "word": " and", "probability": 0.7734375}, {"start": 2413.2, "end": 2413.5, "word": " pass", "probability": 0.310791015625}, {"start": 2413.5, "end": 2413.76, "word": " a", "probability": 0.273681640625}, {"start": 2413.76, "end": 2414.22, "word": " path", "probability": 0.546875}, {"start": 2414.22, "end": 2414.44, "word": " to", "probability": 0.419189453125}, {"start": 2414.44, "end": 2414.44, "word": " it,", "probability": 0.88427734375}, {"start": 2415.94, "end": 2416.26, "word": " this", "probability": 0.332763671875}, {"start": 2416.26, "end": 2416.68, "word": " creation", "probability": 0.1063232421875}, {"start": 2416.68, "end": 2416.82, "word": " of", "probability": 0.85888671875}, {"start": 2416.82, "end": 2416.88, "word": " the", "probability": 0.47265625}, {"start": 2416.88, "end": 2417.72, "word": " ImageIcon", "probability": 0.7566731770833334}, {"start": 2417.72, "end": 2417.84, "word": " is", "probability": 0.58740234375}, {"start": 2417.84, "end": 2418.34, "word": " costly.", "probability": 0.262939453125}, {"start": 2419.14, "end": 2419.24, "word": " The", "probability": 0.3037109375}, {"start": 2419.24, "end": 2419.52, "word": " process", "probability": 0.426513671875}, {"start": 2419.52, "end": 2420.08, "word": " of", "probability": 0.74755859375}, {"start": 2420.08, "end": 2420.28, "word": " creating", "probability": 0.62939453125}, {"start": 2420.28, "end": 2420.28, "word": " a", "probability": 0.76416015625}, {"start": 2420.28, "end": 2420.46, "word": " new", "probability": 0.8720703125}, {"start": 2420.46, "end": 2421.24, "word": " ImageIcon", "probability": 0.9713541666666666}, {"start": 2421.24, "end": 2423.78, "word": " is", "probability": 0.326904296875}, {"start": 2423.78, "end": 2424.24, "word": " costly.", "probability": 0.265869140625}], "temperature": 1.0}, {"id": 97, "seek": 245012, "start": 2425.24, "end": 2450.12, "text": " Are you with me or not guys? This line, the new image icon, is what takes all the time. So if you execute 10 times on 10 images, it will take a long time. So I want to do a trick, that this new image icon, we want to delay it for the moment of need. Are you with me or not guys? Yes, for the moment of need. So what should I do? Take it out with me. And at the same time, I don't want to change", "tokens": [2014, 291, 365, 385, 420, 406, 1074, 30, 639, 1622, 11, 264, 777, 3256, 6528, 11, 307, 437, 2516, 439, 264, 565, 13, 407, 498, 291, 14483, 1266, 1413, 322, 1266, 5267, 11, 309, 486, 747, 257, 938, 565, 13, 407, 286, 528, 281, 360, 257, 4282, 11, 300, 341, 777, 3256, 6528, 11, 321, 528, 281, 8577, 309, 337, 264, 1623, 295, 643, 13, 2014, 291, 365, 385, 420, 406, 1074, 30, 1079, 11, 337, 264, 1623, 295, 643, 13, 407, 437, 820, 286, 360, 30, 3664, 309, 484, 365, 385, 13, 400, 412, 264, 912, 565, 11, 286, 500, 380, 528, 281, 1319], "avg_logprob": -0.46020047563426897, "compression_ratio": 1.8632075471698113, "no_speech_prob": 4.8279762268066406e-05, "words": [{"start": 2425.24, "end": 2425.44, "word": " Are", "probability": 0.040802001953125}, {"start": 2425.44, "end": 2425.44, "word": " you", "probability": 0.9326171875}, {"start": 2425.44, "end": 2425.48, "word": " with", "probability": 0.625}, {"start": 2425.48, "end": 2425.6, "word": " me", "probability": 0.9580078125}, {"start": 2425.6, "end": 2425.66, "word": " or", "probability": 0.54638671875}, {"start": 2425.66, "end": 2425.8, "word": " not", "probability": 0.908203125}, {"start": 2425.8, "end": 2426.0, "word": " guys?", "probability": 0.320556640625}, {"start": 2426.72, "end": 2427.12, "word": " This", "probability": 0.58740234375}, {"start": 2427.12, "end": 2427.42, "word": " line,", "probability": 0.78369140625}, {"start": 2427.5, "end": 2427.58, "word": " the", "probability": 0.29443359375}, {"start": 2427.58, "end": 2427.76, "word": " new", "probability": 0.76171875}, {"start": 2427.76, "end": 2428.0, "word": " image", "probability": 0.91455078125}, {"start": 2428.0, "end": 2428.48, "word": " icon,", "probability": 0.88720703125}, {"start": 2429.02, "end": 2429.14, "word": " is", "probability": 0.489501953125}, {"start": 2429.14, "end": 2429.26, "word": " what", "probability": 0.6357421875}, {"start": 2429.26, "end": 2429.54, "word": " takes", "probability": 0.63134765625}, {"start": 2429.54, "end": 2429.78, "word": " all", "probability": 0.5361328125}, {"start": 2429.78, "end": 2429.88, "word": " the", "probability": 0.7529296875}, {"start": 2429.88, "end": 2430.18, "word": " time.", "probability": 0.86865234375}, {"start": 2430.56, "end": 2430.78, "word": " So", "probability": 0.61962890625}, {"start": 2430.78, "end": 2430.88, "word": " if", "probability": 0.759765625}, {"start": 2430.88, "end": 2431.28, "word": " you", "probability": 0.377197265625}, {"start": 2431.28, "end": 2431.28, "word": " execute", "probability": 0.2476806640625}, {"start": 2431.28, "end": 2431.5, "word": " 10", "probability": 0.38037109375}, {"start": 2431.5, "end": 2431.86, "word": " times", "probability": 0.64306640625}, {"start": 2431.86, "end": 2432.06, "word": " on", "probability": 0.30126953125}, {"start": 2432.06, "end": 2432.28, "word": " 10", "probability": 0.92041015625}, {"start": 2432.28, "end": 2432.6, "word": " images,", "probability": 0.29296875}, {"start": 2432.7, "end": 2432.7, "word": " it", "probability": 0.5283203125}, {"start": 2432.7, "end": 2432.78, "word": " will", "probability": 0.40087890625}, {"start": 2432.78, "end": 2433.04, "word": " take", "probability": 0.845703125}, {"start": 2433.04, "end": 2433.24, "word": " a", "probability": 0.271240234375}, {"start": 2433.24, "end": 2433.9, "word": " long", "probability": 0.5}, {"start": 2433.9, "end": 2433.9, "word": " time.", "probability": 0.87841796875}, {"start": 2434.52, "end": 2434.92, "word": " So", "probability": 0.76708984375}, {"start": 2434.92, "end": 2435.12, "word": " I", "probability": 0.8701171875}, {"start": 2435.12, "end": 2435.3, "word": " want", "probability": 0.33837890625}, {"start": 2435.3, "end": 2435.38, "word": " to", "probability": 0.96826171875}, {"start": 2435.38, "end": 2435.5, "word": " do", "probability": 0.366943359375}, {"start": 2435.5, "end": 2435.66, "word": " a", "probability": 0.83251953125}, {"start": 2435.66, "end": 2435.98, "word": " trick,", "probability": 0.93408203125}, {"start": 2436.46, "end": 2436.54, "word": " that", "probability": 0.30712890625}, {"start": 2436.54, "end": 2437.1, "word": " this", "probability": 0.491455078125}, {"start": 2437.1, "end": 2437.26, "word": " new", "probability": 0.8671875}, {"start": 2437.26, "end": 2437.58, "word": " image", "probability": 0.9228515625}, {"start": 2437.58, "end": 2437.98, "word": " icon,", "probability": 0.9150390625}, {"start": 2438.52, "end": 2439.06, "word": " we", "probability": 0.57568359375}, {"start": 2439.06, "end": 2439.28, "word": " want", "probability": 0.475341796875}, {"start": 2439.28, "end": 2439.44, "word": " to", "probability": 0.96240234375}, {"start": 2439.44, "end": 2439.74, "word": " delay", "probability": 0.384765625}, {"start": 2439.74, "end": 2440.12, "word": " it", "probability": 0.83837890625}, {"start": 2440.12, "end": 2440.92, "word": " for", "probability": 0.379150390625}, {"start": 2440.92, "end": 2441.0, "word": " the", "probability": 0.54736328125}, {"start": 2441.0, "end": 2441.18, "word": " moment", "probability": 0.8857421875}, {"start": 2441.18, "end": 2441.36, "word": " of", "probability": 0.83642578125}, {"start": 2441.36, "end": 2441.62, "word": " need.", "probability": 0.78662109375}, {"start": 2442.72, "end": 2442.88, "word": " Are", "probability": 0.74609375}, {"start": 2442.88, "end": 2442.88, "word": " you", "probability": 0.9638671875}, {"start": 2442.88, "end": 2442.92, "word": " with", "probability": 0.86328125}, {"start": 2442.92, "end": 2443.0, "word": " me", "probability": 0.94140625}, {"start": 2443.0, "end": 2443.08, "word": " or", "probability": 0.927734375}, {"start": 2443.08, "end": 2443.22, "word": " not", "probability": 0.93603515625}, {"start": 2443.22, "end": 2443.46, "word": " guys?", "probability": 0.78125}, {"start": 2444.76, "end": 2445.16, "word": " Yes,", "probability": 0.32958984375}, {"start": 2445.24, "end": 2445.3, "word": " for", "probability": 0.79443359375}, {"start": 2445.3, "end": 2445.52, "word": " the", "probability": 0.580078125}, {"start": 2445.52, "end": 2445.52, "word": " moment", "probability": 0.9306640625}, {"start": 2445.52, "end": 2445.66, "word": " of", "probability": 0.59814453125}, {"start": 2445.66, "end": 2445.76, "word": " need.", "probability": 0.6494140625}, {"start": 2446.52, "end": 2446.92, "word": " So", "probability": 0.865234375}, {"start": 2446.92, "end": 2447.08, "word": " what", "probability": 0.751953125}, {"start": 2447.08, "end": 2447.16, "word": " should", "probability": 0.400390625}, {"start": 2447.16, "end": 2447.18, "word": " I", "probability": 0.94921875}, {"start": 2447.18, "end": 2447.36, "word": " do?", "probability": 0.96630859375}, {"start": 2447.66, "end": 2448.04, "word": " Take", "probability": 0.4482421875}, {"start": 2448.04, "end": 2448.14, "word": " it", "probability": 0.84619140625}, {"start": 2448.14, "end": 2448.24, "word": " out", "probability": 0.404296875}, {"start": 2448.24, "end": 2448.26, "word": " with", "probability": 0.734375}, {"start": 2448.26, "end": 2448.44, "word": " me.", "probability": 0.95751953125}, {"start": 2448.84, "end": 2448.94, "word": " And", "probability": 0.619140625}, {"start": 2448.94, "end": 2449.02, "word": " at", "probability": 0.8994140625}, {"start": 2449.02, "end": 2449.24, "word": " the", "probability": 0.93115234375}, {"start": 2449.24, "end": 2449.24, "word": " same", "probability": 0.9091796875}, {"start": 2449.24, "end": 2449.52, "word": " time,", "probability": 0.87744140625}, {"start": 2449.58, "end": 2449.7, "word": " I", "probability": 0.96435546875}, {"start": 2449.7, "end": 2449.72, "word": " don't", "probability": 0.78466796875}, {"start": 2449.72, "end": 2449.86, "word": " want", "probability": 0.85791015625}, {"start": 2449.86, "end": 2449.9, "word": " to", "probability": 0.9658203125}, {"start": 2449.9, "end": 2450.12, "word": " change", "probability": 0.89599609375}], "temperature": 1.0}, {"id": 98, "seek": 246875, "start": 2450.97, "end": 2468.75, "text": "In the code that I wrote, this is the code for a simple interface, imagine if the interface was complicated and you search for the code, no, we don't modify anything in it I went and made a new class, look at it with me, I made a new class, what is it called? Image proxy, and I made it from the type", "tokens": [4575, 264, 3089, 300, 286, 4114, 11, 341, 307, 264, 3089, 337, 257, 2199, 9226, 11, 3811, 498, 264, 9226, 390, 6179, 293, 291, 3164, 337, 264, 3089, 11, 572, 11, 321, 500, 380, 16927, 1340, 294, 309, 286, 1437, 293, 1027, 257, 777, 1508, 11, 574, 412, 309, 365, 385, 11, 286, 1027, 257, 777, 1508, 11, 437, 307, 309, 1219, 30, 29903, 29690, 11, 293, 286, 1027, 309, 490, 264, 2010], "avg_logprob": -0.6266892093258936, "compression_ratio": 1.6574585635359116, "no_speech_prob": 1.329183578491211e-05, "words": [{"start": 2450.97, "end": 2451.31, "word": "In", "probability": 0.06854248046875}, {"start": 2451.31, "end": 2451.47, "word": " the", "probability": 0.4765625}, {"start": 2451.47, "end": 2451.65, "word": " code", "probability": 0.794921875}, {"start": 2451.65, "end": 2451.77, "word": " that", "probability": 0.36474609375}, {"start": 2451.77, "end": 2451.81, "word": " I", "probability": 0.9296875}, {"start": 2451.81, "end": 2452.09, "word": " wrote,", "probability": 0.7626953125}, {"start": 2452.47, "end": 2452.75, "word": " this", "probability": 0.160888671875}, {"start": 2452.75, "end": 2452.81, "word": " is", "probability": 0.52587890625}, {"start": 2452.81, "end": 2452.91, "word": " the", "probability": 0.40576171875}, {"start": 2452.91, "end": 2453.11, "word": " code", "probability": 0.78271484375}, {"start": 2453.11, "end": 2453.23, "word": " for", "probability": 0.2939453125}, {"start": 2453.23, "end": 2453.33, "word": " a", "probability": 0.406982421875}, {"start": 2453.33, "end": 2454.03, "word": " simple", "probability": 0.76708984375}, {"start": 2454.03, "end": 2454.03, "word": " interface,", "probability": 0.8447265625}, {"start": 2454.53, "end": 2455.19, "word": " imagine", "probability": 0.55517578125}, {"start": 2455.19, "end": 2455.29, "word": " if", "probability": 0.5712890625}, {"start": 2455.29, "end": 2455.37, "word": " the", "probability": 0.546875}, {"start": 2455.37, "end": 2455.63, "word": " interface", "probability": 0.81982421875}, {"start": 2455.63, "end": 2455.81, "word": " was", "probability": 0.7373046875}, {"start": 2455.81, "end": 2456.17, "word": " complicated", "probability": 0.468994140625}, {"start": 2456.17, "end": 2456.31, "word": " and", "probability": 0.56982421875}, {"start": 2456.31, "end": 2456.53, "word": " you", "probability": 0.5849609375}, {"start": 2456.53, "end": 2456.79, "word": " search", "probability": 0.093017578125}, {"start": 2456.79, "end": 2456.91, "word": " for", "probability": 0.509765625}, {"start": 2456.91, "end": 2457.37, "word": " the", "probability": 0.1719970703125}, {"start": 2457.37, "end": 2457.67, "word": " code,", "probability": 0.87646484375}, {"start": 2457.95, "end": 2458.19, "word": " no,", "probability": 0.294677734375}, {"start": 2458.27, "end": 2458.37, "word": " we", "probability": 0.59521484375}, {"start": 2458.37, "end": 2458.43, "word": " don't", "probability": 0.711181640625}, {"start": 2458.43, "end": 2458.79, "word": " modify", "probability": 0.11138916015625}, {"start": 2458.79, "end": 2459.15, "word": " anything", "probability": 0.607421875}, {"start": 2459.15, "end": 2459.55, "word": " in", "probability": 0.53369140625}, {"start": 2459.55, "end": 2459.55, "word": " it", "probability": 0.8330078125}, {"start": 2459.55, "end": 2460.15, "word": " I", "probability": 0.322509765625}, {"start": 2460.15, "end": 2460.37, "word": " went", "probability": 0.4990234375}, {"start": 2460.37, "end": 2460.47, "word": " and", "probability": 0.74462890625}, {"start": 2460.47, "end": 2460.63, "word": " made", "probability": 0.42041015625}, {"start": 2460.63, "end": 2460.73, "word": " a", "probability": 0.97119140625}, {"start": 2460.73, "end": 2460.73, "word": " new", "probability": 0.908203125}, {"start": 2460.73, "end": 2461.05, "word": " class,", "probability": 0.9453125}, {"start": 2461.31, "end": 2461.51, "word": " look", "probability": 0.410888671875}, {"start": 2461.51, "end": 2461.55, "word": " at", "probability": 0.52587890625}, {"start": 2461.55, "end": 2461.71, "word": " it", "probability": 0.7568359375}, {"start": 2461.71, "end": 2461.71, "word": " with", "probability": 0.56591796875}, {"start": 2461.71, "end": 2461.95, "word": " me,", "probability": 0.966796875}, {"start": 2462.91, "end": 2463.35, "word": " I", "probability": 0.85693359375}, {"start": 2463.35, "end": 2463.53, "word": " made", "probability": 0.837890625}, {"start": 2463.53, "end": 2463.67, "word": " a", "probability": 0.91845703125}, {"start": 2463.67, "end": 2463.67, "word": " new", "probability": 0.86083984375}, {"start": 2463.67, "end": 2464.07, "word": " class,", "probability": 0.97021484375}, {"start": 2464.21, "end": 2464.29, "word": " what", "probability": 0.8232421875}, {"start": 2464.29, "end": 2464.35, "word": " is", "probability": 0.51806640625}, {"start": 2464.35, "end": 2464.59, "word": " it", "probability": 0.403564453125}, {"start": 2464.59, "end": 2464.59, "word": " called?", "probability": 0.85888671875}, {"start": 2466.17, "end": 2466.59, "word": " Image", "probability": 0.6875}, {"start": 2466.59, "end": 2467.01, "word": " proxy,", "probability": 0.56298828125}, {"start": 2467.47, "end": 2467.83, "word": " and", "probability": 0.84228515625}, {"start": 2467.83, "end": 2467.91, "word": " I", "probability": 0.82861328125}, {"start": 2467.91, "end": 2468.09, "word": " made", "probability": 0.517578125}, {"start": 2468.09, "end": 2468.33, "word": " it", "probability": 0.89404296875}, {"start": 2468.33, "end": 2468.39, "word": " from", "probability": 0.371337890625}, {"start": 2468.39, "end": 2468.55, "word": " the", "probability": 0.209716796875}, {"start": 2468.55, "end": 2468.75, "word": " type", "probability": 0.68701171875}], "temperature": 1.0}, {"id": 99, "seek": 249916, "start": 2469.96, "end": 2499.16, "text": "ImageIcon, in the end, why did I make it like that? So that the program sees in this class the object like what? Like the ImageIcon And actually it's not ImageIcon, it's actually going to be wrapped inside ImageIcon Look, it's the same idea as the decorator It's a kind of component, and it contains inside it a component It's a kind of ImageIcon, and it contains inside it an ImageIcon Okay? And why did I make it stored here? I put another parameter, what's it called? ImagePath", "tokens": [31128, 609, 40, 1671, 11, 294, 264, 917, 11, 983, 630, 286, 652, 309, 411, 300, 30, 407, 300, 264, 1461, 8194, 294, 341, 1508, 264, 2657, 411, 437, 30, 1743, 264, 29903, 40, 1671, 400, 767, 309, 311, 406, 29903, 40, 1671, 11, 309, 311, 767, 516, 281, 312, 14226, 1854, 29903, 40, 1671, 2053, 11, 309, 311, 264, 912, 1558, 382, 264, 7919, 1639, 467, 311, 257, 733, 295, 6542, 11, 293, 309, 8306, 1854, 309, 257, 6542, 467, 311, 257, 733, 295, 29903, 40, 1671, 11, 293, 309, 8306, 1854, 309, 364, 29903, 40, 1671, 1033, 30, 400, 983, 630, 286, 652, 309, 12187, 510, 30, 286, 829, 1071, 13075, 11, 437, 311, 309, 1219, 30, 29903, 47, 998], "avg_logprob": -0.5104166530981297, "compression_ratio": 1.9672131147540983, "no_speech_prob": 8.32676887512207e-05, "words": [{"start": 2469.96, "end": 2470.48, "word": "ImageIcon,", "probability": 0.603668212890625}, {"start": 2470.54, "end": 2470.78, "word": " in", "probability": 0.1466064453125}, {"start": 2470.78, "end": 2470.94, "word": " the", "probability": 0.734375}, {"start": 2470.94, "end": 2471.18, "word": " end,", "probability": 0.89990234375}, {"start": 2471.88, "end": 2472.06, "word": " why", "probability": 0.397216796875}, {"start": 2472.06, "end": 2472.12, "word": " did", "probability": 0.57373046875}, {"start": 2472.12, "end": 2472.12, "word": " I", "probability": 0.751953125}, {"start": 2472.12, "end": 2472.3, "word": " make", "probability": 0.27197265625}, {"start": 2472.3, "end": 2472.46, "word": " it", "probability": 0.84521484375}, {"start": 2472.46, "end": 2472.54, "word": " like", "probability": 0.20361328125}, {"start": 2472.54, "end": 2472.6, "word": " that?", "probability": 0.45703125}, {"start": 2472.8, "end": 2473.12, "word": " So", "probability": 0.3388671875}, {"start": 2473.12, "end": 2473.26, "word": " that", "probability": 0.67724609375}, {"start": 2473.26, "end": 2473.28, "word": " the", "probability": 0.62060546875}, {"start": 2473.28, "end": 2473.58, "word": " program", "probability": 0.55859375}, {"start": 2473.58, "end": 2474.12, "word": " sees", "probability": 0.48583984375}, {"start": 2474.12, "end": 2474.34, "word": " in", "probability": 0.458740234375}, {"start": 2474.34, "end": 2474.6, "word": " this", "probability": 0.79052734375}, {"start": 2474.6, "end": 2475.06, "word": " class", "probability": 0.90625}, {"start": 2475.06, "end": 2475.3, "word": " the", "probability": 0.2244873046875}, {"start": 2475.3, "end": 2475.66, "word": " object", "probability": 0.73193359375}, {"start": 2475.66, "end": 2476.0, "word": " like", "probability": 0.1563720703125}, {"start": 2476.0, "end": 2476.7, "word": " what?", "probability": 0.456787109375}, {"start": 2476.94, "end": 2477.46, "word": " Like", "probability": 0.5732421875}, {"start": 2477.46, "end": 2477.6, "word": " the", "probability": 0.6572265625}, {"start": 2477.6, "end": 2478.32, "word": " ImageIcon", "probability": 0.7799479166666666}, {"start": 2478.32, "end": 2478.7, "word": " And", "probability": 0.44873046875}, {"start": 2478.7, "end": 2479.06, "word": " actually", "probability": 0.29150390625}, {"start": 2479.06, "end": 2479.38, "word": " it's", "probability": 0.4346923828125}, {"start": 2479.38, "end": 2479.48, "word": " not", "probability": 0.72509765625}, {"start": 2479.48, "end": 2479.86, "word": " ImageIcon,", "probability": 0.8056640625}, {"start": 2479.96, "end": 2480.06, "word": " it's", "probability": 0.5474853515625}, {"start": 2480.06, "end": 2480.4, "word": " actually", "probability": 0.4775390625}, {"start": 2480.4, "end": 2480.66, "word": " going", "probability": 0.59521484375}, {"start": 2480.66, "end": 2480.66, "word": " to", "probability": 0.9609375}, {"start": 2480.66, "end": 2480.92, "word": " be", "probability": 0.17041015625}, {"start": 2480.92, "end": 2480.92, "word": " wrapped", "probability": 0.455322265625}, {"start": 2480.92, "end": 2481.16, "word": " inside", "probability": 0.55615234375}, {"start": 2481.16, "end": 2482.02, "word": " ImageIcon", "probability": 0.88720703125}, {"start": 2482.02, "end": 2482.36, "word": " Look,", "probability": 0.361328125}, {"start": 2482.98, "end": 2483.3, "word": " it's", "probability": 0.6365966796875}, {"start": 2483.3, "end": 2483.44, "word": " the", "probability": 0.810546875}, {"start": 2483.44, "end": 2483.44, "word": " same", "probability": 0.91259765625}, {"start": 2483.44, "end": 2483.7, "word": " idea", "probability": 0.37353515625}, {"start": 2483.7, "end": 2483.8, "word": " as", "probability": 0.53857421875}, {"start": 2483.8, "end": 2483.88, "word": " the", "probability": 0.39892578125}, {"start": 2483.88, "end": 2484.38, "word": " decorator", "probability": 0.892333984375}, {"start": 2484.38, "end": 2485.04, "word": " It's", "probability": 0.6817626953125}, {"start": 2485.04, "end": 2485.16, "word": " a", "probability": 0.431396484375}, {"start": 2485.16, "end": 2485.46, "word": " kind", "probability": 0.494873046875}, {"start": 2485.46, "end": 2486.52, "word": " of", "probability": 0.9736328125}, {"start": 2486.52, "end": 2487.2, "word": " component,", "probability": 0.75244140625}, {"start": 2487.5, "end": 2487.56, "word": " and", "probability": 0.623046875}, {"start": 2487.56, "end": 2487.64, "word": " it", "probability": 0.443115234375}, {"start": 2487.64, "end": 2487.92, "word": " contains", "probability": 0.54931640625}, {"start": 2487.92, "end": 2488.22, "word": " inside", "probability": 0.53662109375}, {"start": 2488.22, "end": 2488.36, "word": " it", "probability": 0.264892578125}, {"start": 2488.36, "end": 2488.52, "word": " a", "probability": 0.51806640625}, {"start": 2488.52, "end": 2488.94, "word": " component", "probability": 0.87890625}, {"start": 2488.94, "end": 2489.7, "word": " It's", "probability": 0.91943359375}, {"start": 2489.7, "end": 2489.84, "word": " a", "probability": 0.787109375}, {"start": 2489.84, "end": 2490.06, "word": " kind", "probability": 0.87841796875}, {"start": 2490.06, "end": 2490.1, "word": " of", "probability": 0.966796875}, {"start": 2490.1, "end": 2490.7, "word": " ImageIcon,", "probability": 0.9376627604166666}, {"start": 2490.76, "end": 2490.82, "word": " and", "probability": 0.8984375}, {"start": 2490.82, "end": 2490.9, "word": " it", "probability": 0.8349609375}, {"start": 2490.9, "end": 2491.14, "word": " contains", "probability": 0.88232421875}, {"start": 2491.14, "end": 2491.38, "word": " inside", "probability": 0.93115234375}, {"start": 2491.38, "end": 2491.82, "word": " it", "probability": 0.93408203125}, {"start": 2491.82, "end": 2492.96, "word": " an", "probability": 0.6279296875}, {"start": 2492.96, "end": 2493.6, "word": " ImageIcon", "probability": 0.9215494791666666}, {"start": 2493.6, "end": 2494.22, "word": " Okay?", "probability": 0.1278076171875}, {"start": 2494.46, "end": 2494.84, "word": " And", "probability": 0.759765625}, {"start": 2494.84, "end": 2495.14, "word": " why", "probability": 0.455322265625}, {"start": 2495.14, "end": 2495.14, "word": " did", "probability": 0.93603515625}, {"start": 2495.14, "end": 2495.22, "word": " I", "probability": 0.95166015625}, {"start": 2495.22, "end": 2495.22, "word": " make", "probability": 0.435302734375}, {"start": 2495.22, "end": 2495.48, "word": " it", "probability": 0.86767578125}, {"start": 2495.48, "end": 2495.82, "word": " stored", "probability": 0.4619140625}, {"start": 2495.82, "end": 2496.06, "word": " here?", "probability": 0.734375}, {"start": 2496.14, "end": 2496.24, "word": " I", "probability": 0.93603515625}, {"start": 2496.24, "end": 2496.44, "word": " put", "probability": 0.60546875}, {"start": 2496.44, "end": 2496.58, "word": " another", "probability": 0.7177734375}, {"start": 2496.58, "end": 2497.0, "word": " parameter,", "probability": 0.9716796875}, {"start": 2497.32, "end": 2497.42, "word": " what's", "probability": 0.673583984375}, {"start": 2497.42, "end": 2497.54, "word": " it", "probability": 0.43310546875}, {"start": 2497.54, "end": 2497.54, "word": " called?", "probability": 0.77734375}, {"start": 2498.64, "end": 2499.16, "word": " ImagePath", "probability": 0.8002115885416666}], "temperature": 1.0}, {"id": 100, "seek": 252569, "start": 2500.25, "end": 2525.69, "text": " And now look at what this is The constructor Actually, what does the constructor pass to it? Let it take the imagePath And take the imagePath and store it here Because we also know that as long as this class extends imageIcon Then it will block the super But which super will block the super? Empty Of course, it should be front only", "tokens": [400, 586, 574, 412, 437, 341, 307, 440, 47479, 5135, 11, 437, 775, 264, 47479, 1320, 281, 309, 30, 961, 309, 747, 264, 3256, 47, 998, 400, 747, 264, 3256, 47, 998, 293, 3531, 309, 510, 1436, 321, 611, 458, 300, 382, 938, 382, 341, 1508, 26448, 3256, 40, 1671, 1396, 309, 486, 3461, 264, 1687, 583, 597, 1687, 486, 3461, 264, 1687, 30, 3968, 39420, 2720, 1164, 11, 309, 820, 312, 1868, 787], "avg_logprob": -0.6083333603541057, "compression_ratio": 1.67, "no_speech_prob": 3.5762786865234375e-06, "words": [{"start": 2500.25, "end": 2500.47, "word": " And", "probability": 0.188720703125}, {"start": 2500.47, "end": 2500.75, "word": " now", "probability": 0.309326171875}, {"start": 2500.75, "end": 2500.75, "word": " look", "probability": 0.09954833984375}, {"start": 2500.75, "end": 2500.99, "word": " at", "probability": 0.5947265625}, {"start": 2500.99, "end": 2501.21, "word": " what", "probability": 0.6376953125}, {"start": 2501.21, "end": 2501.45, "word": " this", "probability": 0.469482421875}, {"start": 2501.45, "end": 2502.03, "word": " is", "probability": 0.4306640625}, {"start": 2502.03, "end": 2503.19, "word": " The", "probability": 0.340576171875}, {"start": 2503.19, "end": 2503.69, "word": " constructor", "probability": 0.802734375}, {"start": 2503.69, "end": 2504.75, "word": " Actually,", "probability": 0.05755615234375}, {"start": 2505.47, "end": 2505.51, "word": " what", "probability": 0.62451171875}, {"start": 2505.51, "end": 2505.51, "word": " does", "probability": 0.5048828125}, {"start": 2505.51, "end": 2505.59, "word": " the", "probability": 0.7529296875}, {"start": 2505.59, "end": 2506.07, "word": " constructor", "probability": 0.88525390625}, {"start": 2506.07, "end": 2506.49, "word": " pass", "probability": 0.1119384765625}, {"start": 2506.49, "end": 2506.65, "word": " to", "probability": 0.60888671875}, {"start": 2506.65, "end": 2506.79, "word": " it?", "probability": 0.544921875}, {"start": 2508.45, "end": 2508.97, "word": " Let", "probability": 0.408447265625}, {"start": 2508.97, "end": 2509.09, "word": " it", "probability": 0.70458984375}, {"start": 2509.09, "end": 2509.29, "word": " take", "probability": 0.78466796875}, {"start": 2509.29, "end": 2509.41, "word": " the", "probability": 0.7919921875}, {"start": 2509.41, "end": 2509.91, "word": " imagePath", "probability": 0.6942138671875}, {"start": 2509.91, "end": 2510.55, "word": " And", "probability": 0.226318359375}, {"start": 2510.55, "end": 2510.81, "word": " take", "probability": 0.3134765625}, {"start": 2510.81, "end": 2510.95, "word": " the", "probability": 0.82763671875}, {"start": 2510.95, "end": 2511.57, "word": " imagePath", "probability": 0.97119140625}, {"start": 2511.57, "end": 2511.93, "word": " and", "probability": 0.82373046875}, {"start": 2511.93, "end": 2512.17, "word": " store", "probability": 0.671875}, {"start": 2512.17, "end": 2513.07, "word": " it", "probability": 0.9013671875}, {"start": 2513.07, "end": 2513.07, "word": " here", "probability": 0.73046875}, {"start": 2513.07, "end": 2513.69, "word": " Because", "probability": 0.180419921875}, {"start": 2513.69, "end": 2513.87, "word": " we", "probability": 0.8486328125}, {"start": 2513.87, "end": 2514.01, "word": " also", "probability": 0.477783203125}, {"start": 2514.01, "end": 2514.23, "word": " know", "probability": 0.880859375}, {"start": 2514.23, "end": 2514.75, "word": " that", "probability": 0.85009765625}, {"start": 2514.75, "end": 2514.93, "word": " as", "probability": 0.2734375}, {"start": 2514.93, "end": 2515.05, "word": " long", "probability": 0.6484375}, {"start": 2515.05, "end": 2515.09, "word": " as", "probability": 0.96826171875}, {"start": 2515.09, "end": 2515.35, "word": " this", "probability": 0.84228515625}, {"start": 2515.35, "end": 2515.79, "word": " class", "probability": 0.96630859375}, {"start": 2515.79, "end": 2516.23, "word": " extends", "probability": 0.63818359375}, {"start": 2516.23, "end": 2516.91, "word": " imageIcon", "probability": 0.75341796875}, {"start": 2516.91, "end": 2517.69, "word": " Then", "probability": 0.2130126953125}, {"start": 2517.69, "end": 2517.85, "word": " it", "probability": 0.8271484375}, {"start": 2517.85, "end": 2518.05, "word": " will", "probability": 0.82080078125}, {"start": 2518.05, "end": 2518.31, "word": " block", "probability": 0.0433349609375}, {"start": 2518.31, "end": 2518.47, "word": " the", "probability": 0.82177734375}, {"start": 2518.47, "end": 2518.75, "word": " super", "probability": 0.81103515625}, {"start": 2518.75, "end": 2520.11, "word": " But", "probability": 0.395751953125}, {"start": 2520.11, "end": 2520.41, "word": " which", "probability": 0.708984375}, {"start": 2520.41, "end": 2520.75, "word": " super", "probability": 0.908203125}, {"start": 2520.75, "end": 2520.93, "word": " will", "probability": 0.6376953125}, {"start": 2520.93, "end": 2521.21, "word": " block", "probability": 0.89111328125}, {"start": 2521.21, "end": 2521.35, "word": " the", "probability": 0.86962890625}, {"start": 2521.35, "end": 2521.71, "word": " super?", "probability": 0.802734375}, {"start": 2522.15, "end": 2522.67, "word": " Empty", "probability": 0.649658203125}, {"start": 2522.67, "end": 2523.45, "word": " Of", "probability": 0.3671875}, {"start": 2523.45, "end": 2523.67, "word": " course,", "probability": 0.94677734375}, {"start": 2524.47, "end": 2524.83, "word": " it", "probability": 0.5390625}, {"start": 2524.83, "end": 2524.99, "word": " should", "probability": 0.393310546875}, {"start": 2524.99, "end": 2525.21, "word": " be", "probability": 0.7138671875}, {"start": 2525.21, "end": 2525.43, "word": " front", "probability": 0.241943359375}, {"start": 2525.43, "end": 2525.69, "word": " only", "probability": 0.67041015625}], "temperature": 1.0}, {"id": 101, "seek": 254586, "start": 2527.22, "end": 2545.86, "text": " This is there even if I didn't write it. Of course, super-empty will not load the image. Right or wrong? When is the problem? If you put image path here, it will load it here. Here, we ruined the world. Why? It will load it in memory. We don't want it to do that. We want to make it believe that", "tokens": [639, 307, 456, 754, 498, 286, 994, 380, 2464, 309, 13, 2720, 1164, 11, 1687, 12, 4543, 88, 486, 406, 3677, 264, 3256, 13, 1779, 420, 2085, 30, 1133, 307, 264, 1154, 30, 759, 291, 829, 3256, 3100, 510, 11, 309, 486, 3677, 309, 510, 13, 1692, 11, 321, 17013, 264, 1002, 13, 1545, 30, 467, 486, 3677, 309, 294, 4675, 13, 492, 500, 380, 528, 309, 281, 360, 300, 13, 492, 528, 281, 652, 309, 1697, 300], "avg_logprob": -0.5427214903167531, "compression_ratio": 1.5416666666666667, "no_speech_prob": 0.0005254745483398438, "words": [{"start": 2527.22, "end": 2527.62, "word": " This", "probability": 0.15576171875}, {"start": 2527.62, "end": 2527.7, "word": " is", "probability": 0.3623046875}, {"start": 2527.7, "end": 2528.04, "word": " there", "probability": 0.1092529296875}, {"start": 2528.04, "end": 2528.32, "word": " even", "probability": 0.73828125}, {"start": 2528.32, "end": 2528.44, "word": " if", "probability": 0.73876953125}, {"start": 2528.44, "end": 2528.58, "word": " I", "probability": 0.85693359375}, {"start": 2528.58, "end": 2528.64, "word": " didn't", "probability": 0.7154541015625}, {"start": 2528.64, "end": 2528.86, "word": " write", "probability": 0.72705078125}, {"start": 2528.86, "end": 2529.22, "word": " it.", "probability": 0.69384765625}, {"start": 2529.46, "end": 2529.78, "word": " Of", "probability": 0.47119140625}, {"start": 2529.78, "end": 2529.78, "word": " course,", "probability": 0.9443359375}, {"start": 2530.0, "end": 2530.16, "word": " super", "probability": 0.445556640625}, {"start": 2530.16, "end": 2530.58, "word": "-empty", "probability": 0.5342000325520834}, {"start": 2530.58, "end": 2531.0, "word": " will", "probability": 0.273193359375}, {"start": 2531.0, "end": 2531.26, "word": " not", "probability": 0.92724609375}, {"start": 2531.26, "end": 2531.5, "word": " load", "probability": 0.375}, {"start": 2531.5, "end": 2531.66, "word": " the", "probability": 0.5439453125}, {"start": 2531.66, "end": 2531.8, "word": " image.", "probability": 0.55322265625}, {"start": 2532.72, "end": 2532.96, "word": " Right", "probability": 0.28564453125}, {"start": 2532.96, "end": 2533.1, "word": " or", "probability": 0.72265625}, {"start": 2533.1, "end": 2533.1, "word": " wrong?", "probability": 0.5263671875}, {"start": 2533.18, "end": 2533.44, "word": " When", "probability": 0.260986328125}, {"start": 2533.44, "end": 2533.52, "word": " is", "probability": 0.59326171875}, {"start": 2533.52, "end": 2533.6, "word": " the", "probability": 0.87939453125}, {"start": 2533.6, "end": 2533.84, "word": " problem?", "probability": 0.80126953125}, {"start": 2534.22, "end": 2534.38, "word": " If", "probability": 0.8818359375}, {"start": 2534.38, "end": 2534.48, "word": " you", "probability": 0.73291015625}, {"start": 2534.48, "end": 2534.74, "word": " put", "probability": 0.4306640625}, {"start": 2534.74, "end": 2535.04, "word": " image", "probability": 0.7724609375}, {"start": 2535.04, "end": 2535.52, "word": " path", "probability": 0.564453125}, {"start": 2535.52, "end": 2536.3, "word": " here,", "probability": 0.25244140625}, {"start": 2536.3, "end": 2536.3, "word": " it", "probability": 0.5673828125}, {"start": 2536.3, "end": 2536.3, "word": " will", "probability": 0.7373046875}, {"start": 2536.3, "end": 2536.5, "word": " load", "probability": 0.583984375}, {"start": 2536.5, "end": 2536.66, "word": " it", "probability": 0.75146484375}, {"start": 2536.66, "end": 2536.88, "word": " here.", "probability": 0.40478515625}, {"start": 2539.8, "end": 2540.2, "word": " Here,", "probability": 0.46728515625}, {"start": 2540.26, "end": 2540.34, "word": " we", "probability": 0.88134765625}, {"start": 2540.34, "end": 2540.56, "word": " ruined", "probability": 0.29833984375}, {"start": 2540.56, "end": 2540.74, "word": " the", "probability": 0.446044921875}, {"start": 2540.74, "end": 2540.9, "word": " world.", "probability": 0.6357421875}, {"start": 2541.4, "end": 2541.8, "word": " Why?", "probability": 0.86376953125}, {"start": 2542.14, "end": 2542.54, "word": " It", "probability": 0.58349609375}, {"start": 2542.54, "end": 2542.58, "word": " will", "probability": 0.64013671875}, {"start": 2542.58, "end": 2542.78, "word": " load", "probability": 0.87744140625}, {"start": 2542.78, "end": 2542.9, "word": " it", "probability": 0.828125}, {"start": 2542.9, "end": 2543.0, "word": " in", "probability": 0.55419921875}, {"start": 2543.0, "end": 2543.26, "word": " memory.", "probability": 0.66552734375}, {"start": 2543.36, "end": 2543.56, "word": " We", "probability": 0.9208984375}, {"start": 2543.56, "end": 2543.7, "word": " don't", "probability": 0.894287109375}, {"start": 2543.7, "end": 2543.86, "word": " want", "probability": 0.876953125}, {"start": 2543.86, "end": 2543.98, "word": " it", "probability": 0.6611328125}, {"start": 2543.98, "end": 2544.02, "word": " to", "probability": 0.95556640625}, {"start": 2544.02, "end": 2544.14, "word": " do", "probability": 0.93505859375}, {"start": 2544.14, "end": 2544.4, "word": " that.", "probability": 0.5693359375}, {"start": 2544.76, "end": 2544.88, "word": " We", "probability": 0.70166015625}, {"start": 2544.88, "end": 2545.02, "word": " want", "probability": 0.591796875}, {"start": 2545.02, "end": 2545.22, "word": " to", "probability": 0.498779296875}, {"start": 2545.22, "end": 2545.22, "word": " make", "probability": 0.6240234375}, {"start": 2545.22, "end": 2545.4, "word": " it", "probability": 0.7412109375}, {"start": 2545.4, "end": 2545.6, "word": " believe", "probability": 0.50732421875}, {"start": 2545.6, "end": 2545.86, "word": " that", "probability": 0.77001953125}], "temperature": 1.0}, {"id": 102, "seek": 257454, "start": 2547.32, "end": 2574.54, "text": " Because if I leave it blank, it won't load the image. So actually, I created an image proxy. It's an image icon, and it wraps the image icon. But this image icon still has a null. Am I right, guys? So if I come to my application, this is the loop that creates the image icon. And instead of an image icon, I wrote an image here.", "tokens": [1436, 498, 286, 1856, 309, 8247, 11, 309, 1582, 380, 3677, 264, 3256, 13, 407, 767, 11, 286, 2942, 364, 3256, 29690, 13, 467, 311, 364, 3256, 6528, 11, 293, 309, 25831, 264, 3256, 6528, 13, 583, 341, 3256, 6528, 920, 575, 257, 18184, 13, 2012, 286, 558, 11, 1074, 30, 407, 498, 286, 808, 281, 452, 3861, 11, 341, 307, 264, 6367, 300, 7829, 264, 3256, 6528, 13, 400, 2602, 295, 364, 3256, 6528, 11, 286, 4114, 364, 3256, 510, 13], "avg_logprob": -0.5320029905043453, "compression_ratio": 1.7225130890052356, "no_speech_prob": 7.516145706176758e-05, "words": [{"start": 2547.32, "end": 2547.88, "word": " Because", "probability": 0.1766357421875}, {"start": 2547.88, "end": 2548.4, "word": " if", "probability": 0.6591796875}, {"start": 2548.4, "end": 2548.88, "word": " I", "probability": 0.256103515625}, {"start": 2548.88, "end": 2549.06, "word": " leave", "probability": 0.56982421875}, {"start": 2549.06, "end": 2549.18, "word": " it", "probability": 0.814453125}, {"start": 2549.18, "end": 2549.36, "word": " blank,", "probability": 0.419921875}, {"start": 2549.62, "end": 2549.82, "word": " it", "probability": 0.7333984375}, {"start": 2549.82, "end": 2549.86, "word": " won't", "probability": 0.6402587890625}, {"start": 2549.86, "end": 2550.28, "word": " load", "probability": 0.5791015625}, {"start": 2550.28, "end": 2551.0, "word": " the", "probability": 0.67529296875}, {"start": 2551.0, "end": 2551.18, "word": " image.", "probability": 0.51416015625}, {"start": 2551.38, "end": 2551.78, "word": " So", "probability": 0.630859375}, {"start": 2551.78, "end": 2552.14, "word": " actually,", "probability": 0.2265625}, {"start": 2552.64, "end": 2553.18, "word": " I", "probability": 0.96044921875}, {"start": 2553.18, "end": 2553.52, "word": " created", "probability": 0.54345703125}, {"start": 2553.52, "end": 2553.94, "word": " an", "probability": 0.62548828125}, {"start": 2553.94, "end": 2554.08, "word": " image", "probability": 0.79296875}, {"start": 2554.08, "end": 2554.52, "word": " proxy.", "probability": 0.95947265625}, {"start": 2554.78, "end": 2555.2, "word": " It's", "probability": 0.69921875}, {"start": 2555.2, "end": 2555.36, "word": " an", "probability": 0.375244140625}, {"start": 2555.36, "end": 2555.72, "word": " image", "probability": 0.83349609375}, {"start": 2555.72, "end": 2556.12, "word": " icon,", "probability": 0.8525390625}, {"start": 2556.14, "end": 2556.32, "word": " and", "probability": 0.5380859375}, {"start": 2556.32, "end": 2556.36, "word": " it", "probability": 0.81494140625}, {"start": 2556.36, "end": 2556.58, "word": " wraps", "probability": 0.34423828125}, {"start": 2556.58, "end": 2556.74, "word": " the", "probability": 0.29345703125}, {"start": 2556.74, "end": 2556.88, "word": " image", "probability": 0.943359375}, {"start": 2556.88, "end": 2557.14, "word": " icon.", "probability": 0.814453125}, {"start": 2557.2, "end": 2557.34, "word": " But", "probability": 0.89794921875}, {"start": 2557.34, "end": 2557.58, "word": " this", "probability": 0.462890625}, {"start": 2557.58, "end": 2557.8, "word": " image", "probability": 0.93798828125}, {"start": 2557.8, "end": 2558.1, "word": " icon", "probability": 0.92578125}, {"start": 2558.1, "end": 2558.66, "word": " still", "probability": 0.271728515625}, {"start": 2558.66, "end": 2559.0, "word": " has", "probability": 0.55322265625}, {"start": 2559.0, "end": 2560.5, "word": " a", "probability": 0.7412109375}, {"start": 2560.5, "end": 2560.7, "word": " null.", "probability": 0.86328125}, {"start": 2561.42, "end": 2561.98, "word": " Am", "probability": 0.1500244140625}, {"start": 2561.98, "end": 2562.04, "word": " I", "probability": 0.9453125}, {"start": 2562.04, "end": 2562.1, "word": " right,", "probability": 0.8623046875}, {"start": 2562.3, "end": 2562.46, "word": " guys?", "probability": 0.78515625}, {"start": 2563.06, "end": 2563.32, "word": " So", "probability": 0.5390625}, {"start": 2563.32, "end": 2564.68, "word": " if", "probability": 0.447021484375}, {"start": 2564.68, "end": 2565.36, "word": " I", "probability": 0.96728515625}, {"start": 2565.36, "end": 2565.8, "word": " come", "probability": 0.2027587890625}, {"start": 2565.8, "end": 2566.7, "word": " to", "probability": 0.837890625}, {"start": 2566.7, "end": 2566.86, "word": " my", "probability": 0.5224609375}, {"start": 2566.86, "end": 2567.4, "word": " application,", "probability": 0.74462890625}, {"start": 2568.16, "end": 2568.64, "word": " this", "probability": 0.49755859375}, {"start": 2568.64, "end": 2568.76, "word": " is", "probability": 0.8017578125}, {"start": 2568.76, "end": 2568.96, "word": " the", "probability": 0.5341796875}, {"start": 2568.96, "end": 2569.28, "word": " loop", "probability": 0.90625}, {"start": 2569.28, "end": 2569.52, "word": " that", "probability": 0.5283203125}, {"start": 2569.52, "end": 2569.78, "word": " creates", "probability": 0.53662109375}, {"start": 2569.78, "end": 2570.1, "word": " the", "probability": 0.548828125}, {"start": 2570.1, "end": 2570.24, "word": " image", "probability": 0.93408203125}, {"start": 2570.24, "end": 2570.6, "word": " icon.", "probability": 0.91259765625}, {"start": 2570.84, "end": 2571.4, "word": " And", "probability": 0.505859375}, {"start": 2571.4, "end": 2571.84, "word": " instead", "probability": 0.444580078125}, {"start": 2571.84, "end": 2571.84, "word": " of", "probability": 0.97021484375}, {"start": 2571.84, "end": 2572.12, "word": " an", "probability": 0.34375}, {"start": 2572.12, "end": 2572.28, "word": " image", "probability": 0.91943359375}, {"start": 2572.28, "end": 2572.76, "word": " icon,", "probability": 0.9345703125}, {"start": 2573.06, "end": 2573.62, "word": " I", "probability": 0.94580078125}, {"start": 2573.62, "end": 2573.88, "word": " wrote", "probability": 0.469970703125}, {"start": 2573.88, "end": 2574.22, "word": " an", "probability": 0.244873046875}, {"start": 2574.22, "end": 2574.52, "word": " image", "probability": 0.8955078125}, {"start": 2574.52, "end": 2574.54, "word": " here.", "probability": 0.7197265625}], "temperature": 1.0}, {"id": 103, "seek": 260184, "start": 2576.12, "end": 2601.84, "text": " proxy. That's it. We changed it to image proxy. It actually creates how many image proxy? With the number of images. What does the image proxy do? Nothing. It takes the path and puts it here. Did it load images in the memory? Did it create an image icon? No. It did create five or six image proxies, but all of them have an image icon. What is its value? Their value.", "tokens": [29690, 13, 663, 311, 309, 13, 492, 3105, 309, 281, 3256, 29690, 13, 467, 767, 7829, 577, 867, 3256, 29690, 30, 2022, 264, 1230, 295, 5267, 13, 708, 775, 264, 3256, 29690, 360, 30, 6693, 13, 467, 2516, 264, 3100, 293, 8137, 309, 510, 13, 2589, 309, 3677, 5267, 294, 264, 4675, 30, 2589, 309, 1884, 364, 3256, 6528, 30, 883, 13, 467, 630, 1884, 1732, 420, 2309, 3256, 447, 87, 530, 11, 457, 439, 295, 552, 362, 364, 3256, 6528, 13, 708, 307, 1080, 2158, 30, 6710, 2158, 13], "avg_logprob": -0.4100274646675194, "compression_ratio": 1.7440758293838863, "no_speech_prob": 0.00011599063873291016, "words": [{"start": 2576.12, "end": 2576.56, "word": " proxy.", "probability": 0.268798828125}, {"start": 2576.66, "end": 2576.86, "word": " That's", "probability": 0.619384765625}, {"start": 2576.86, "end": 2576.96, "word": " it.", "probability": 0.85595703125}, {"start": 2577.62, "end": 2577.78, "word": " We", "probability": 0.8017578125}, {"start": 2577.78, "end": 2577.9, "word": " changed", "probability": 0.67236328125}, {"start": 2577.9, "end": 2578.12, "word": " it", "probability": 0.85791015625}, {"start": 2578.12, "end": 2578.2, "word": " to", "probability": 0.9306640625}, {"start": 2578.2, "end": 2578.4, "word": " image", "probability": 0.677734375}, {"start": 2578.4, "end": 2578.78, "word": " proxy.", "probability": 0.884765625}, {"start": 2581.4, "end": 2581.84, "word": " It", "probability": 0.41455078125}, {"start": 2581.84, "end": 2582.08, "word": " actually", "probability": 0.36962890625}, {"start": 2582.08, "end": 2582.48, "word": " creates", "probability": 0.6142578125}, {"start": 2582.48, "end": 2582.72, "word": " how", "probability": 0.2135009765625}, {"start": 2582.72, "end": 2582.84, "word": " many", "probability": 0.84765625}, {"start": 2582.84, "end": 2583.18, "word": " image", "probability": 0.77685546875}, {"start": 2583.18, "end": 2583.58, "word": " proxy?", "probability": 0.685546875}, {"start": 2584.04, "end": 2584.24, "word": " With", "probability": 0.302490234375}, {"start": 2584.24, "end": 2584.3, "word": " the", "probability": 0.681640625}, {"start": 2584.3, "end": 2584.42, "word": " number", "probability": 0.81591796875}, {"start": 2584.42, "end": 2584.62, "word": " of", "probability": 0.9716796875}, {"start": 2584.62, "end": 2584.76, "word": " images.", "probability": 0.353759765625}, {"start": 2585.9, "end": 2586.34, "word": " What", "probability": 0.8505859375}, {"start": 2586.34, "end": 2586.4, "word": " does", "probability": 0.86474609375}, {"start": 2586.4, "end": 2586.48, "word": " the", "probability": 0.334716796875}, {"start": 2586.48, "end": 2586.62, "word": " image", "probability": 0.92333984375}, {"start": 2586.62, "end": 2586.94, "word": " proxy", "probability": 0.9736328125}, {"start": 2586.94, "end": 2587.24, "word": " do?", "probability": 0.947265625}, {"start": 2587.76, "end": 2588.0, "word": " Nothing.", "probability": 0.62548828125}, {"start": 2588.32, "end": 2588.42, "word": " It", "probability": 0.89208984375}, {"start": 2588.42, "end": 2588.64, "word": " takes", "probability": 0.7880859375}, {"start": 2588.64, "end": 2588.78, "word": " the", "probability": 0.81787109375}, {"start": 2588.78, "end": 2589.12, "word": " path", "probability": 0.76904296875}, {"start": 2589.12, "end": 2589.9, "word": " and", "probability": 0.85791015625}, {"start": 2589.9, "end": 2590.2, "word": " puts", "probability": 0.55712890625}, {"start": 2590.2, "end": 2590.3, "word": " it", "probability": 0.93017578125}, {"start": 2590.3, "end": 2590.52, "word": " here.", "probability": 0.77587890625}, {"start": 2591.08, "end": 2591.36, "word": " Did", "probability": 0.150390625}, {"start": 2591.36, "end": 2591.5, "word": " it", "probability": 0.7216796875}, {"start": 2591.5, "end": 2591.5, "word": " load", "probability": 0.5361328125}, {"start": 2591.5, "end": 2591.72, "word": " images", "probability": 0.6318359375}, {"start": 2591.72, "end": 2591.86, "word": " in", "probability": 0.6357421875}, {"start": 2591.86, "end": 2591.94, "word": " the", "probability": 0.470947265625}, {"start": 2591.94, "end": 2592.22, "word": " memory?", "probability": 0.77392578125}, {"start": 2592.82, "end": 2593.26, "word": " Did", "probability": 0.4013671875}, {"start": 2593.26, "end": 2593.26, "word": " it", "probability": 0.830078125}, {"start": 2593.26, "end": 2593.42, "word": " create", "probability": 0.861328125}, {"start": 2593.42, "end": 2593.58, "word": " an", "probability": 0.623046875}, {"start": 2593.58, "end": 2593.7, "word": " image", "probability": 0.93408203125}, {"start": 2593.7, "end": 2594.1, "word": " icon?", "probability": 0.916015625}, {"start": 2594.42, "end": 2594.62, "word": " No.", "probability": 0.9150390625}, {"start": 2595.04, "end": 2595.42, "word": " It", "probability": 0.39111328125}, {"start": 2595.42, "end": 2595.56, "word": " did", "probability": 0.63671875}, {"start": 2595.56, "end": 2595.88, "word": " create", "probability": 0.48193359375}, {"start": 2595.88, "end": 2596.4, "word": " five", "probability": 0.2724609375}, {"start": 2596.4, "end": 2596.72, "word": " or", "probability": 0.95068359375}, {"start": 2596.72, "end": 2596.96, "word": " six", "probability": 0.9501953125}, {"start": 2596.96, "end": 2597.2, "word": " image", "probability": 0.8642578125}, {"start": 2597.2, "end": 2597.62, "word": " proxies,", "probability": 0.93505859375}, {"start": 2598.18, "end": 2598.36, "word": " but", "probability": 0.72216796875}, {"start": 2598.36, "end": 2598.94, "word": " all", "probability": 0.404541015625}, {"start": 2598.94, "end": 2599.14, "word": " of", "probability": 0.95751953125}, {"start": 2599.14, "end": 2599.14, "word": " them", "probability": 0.89111328125}, {"start": 2599.14, "end": 2599.26, "word": " have", "probability": 0.61376953125}, {"start": 2599.26, "end": 2599.42, "word": " an", "probability": 0.259033203125}, {"start": 2599.42, "end": 2599.58, "word": " image", "probability": 0.9453125}, {"start": 2599.58, "end": 2599.94, "word": " icon.", "probability": 0.88134765625}, {"start": 2599.98, "end": 2600.12, "word": " What", "probability": 0.7646484375}, {"start": 2600.12, "end": 2600.16, "word": " is", "probability": 0.66064453125}, {"start": 2600.16, "end": 2600.18, "word": " its", "probability": 0.52587890625}, {"start": 2600.18, "end": 2600.38, "word": " value?", "probability": 0.955078125}, {"start": 2601.22, "end": 2601.66, "word": " Their", "probability": 0.1953125}, {"start": 2601.66, "end": 2601.84, "word": " value.", "probability": 0.93017578125}], "temperature": 1.0}, {"id": 104, "seek": 262445, "start": 2603.09, "end": 2624.45, "text": "Okay, now the problem is here, if we do this, we said that this is a proxy, so when I use this, who should he use? The image icon, so who is the main inside this? Did you see what I did? I went to all the methods in the image icon", "tokens": [8297, 11, 586, 264, 1154, 307, 510, 11, 498, 321, 360, 341, 11, 321, 848, 300, 341, 307, 257, 29690, 11, 370, 562, 286, 764, 341, 11, 567, 820, 415, 764, 30, 440, 3256, 6528, 11, 370, 567, 307, 264, 2135, 1854, 341, 30, 2589, 291, 536, 437, 286, 630, 30, 286, 1437, 281, 439, 264, 7150, 294, 264, 3256, 6528], "avg_logprob": -0.5942540495626388, "compression_ratio": 1.5231788079470199, "no_speech_prob": 1.6033649444580078e-05, "words": [{"start": 2603.09, "end": 2603.31, "word": "Okay,", "probability": 0.11968994140625}, {"start": 2603.51, "end": 2603.57, "word": " now", "probability": 0.396728515625}, {"start": 2603.57, "end": 2604.03, "word": " the", "probability": 0.591796875}, {"start": 2604.03, "end": 2604.23, "word": " problem", "probability": 0.794921875}, {"start": 2604.23, "end": 2604.35, "word": " is", "probability": 0.6796875}, {"start": 2604.35, "end": 2604.63, "word": " here,", "probability": 0.187255859375}, {"start": 2605.19, "end": 2605.51, "word": " if", "probability": 0.29345703125}, {"start": 2605.51, "end": 2607.17, "word": " we", "probability": 0.77685546875}, {"start": 2607.17, "end": 2607.35, "word": " do", "probability": 0.8095703125}, {"start": 2607.35, "end": 2607.81, "word": " this,", "probability": 0.548828125}, {"start": 2610.37, "end": 2611.45, "word": " we", "probability": 0.2476806640625}, {"start": 2611.45, "end": 2611.89, "word": " said", "probability": 0.460205078125}, {"start": 2611.89, "end": 2612.09, "word": " that", "probability": 0.55908203125}, {"start": 2612.09, "end": 2612.23, "word": " this", "probability": 0.7548828125}, {"start": 2612.23, "end": 2612.29, "word": " is", "probability": 0.841796875}, {"start": 2612.29, "end": 2612.69, "word": " a", "probability": 0.62890625}, {"start": 2612.69, "end": 2613.03, "word": " proxy,", "probability": 0.95556640625}, {"start": 2613.19, "end": 2613.27, "word": " so", "probability": 0.349853515625}, {"start": 2613.27, "end": 2613.55, "word": " when", "probability": 0.4677734375}, {"start": 2613.55, "end": 2614.21, "word": " I", "probability": 0.88720703125}, {"start": 2614.21, "end": 2614.61, "word": " use", "probability": 0.8466796875}, {"start": 2614.61, "end": 2614.95, "word": " this,", "probability": 0.83642578125}, {"start": 2614.97, "end": 2615.13, "word": " who", "probability": 0.407958984375}, {"start": 2615.13, "end": 2615.31, "word": " should", "probability": 0.428955078125}, {"start": 2615.31, "end": 2615.51, "word": " he", "probability": 0.141845703125}, {"start": 2615.51, "end": 2615.91, "word": " use?", "probability": 0.84814453125}, {"start": 2616.69, "end": 2617.17, "word": " The", "probability": 0.55126953125}, {"start": 2617.17, "end": 2617.33, "word": " image", "probability": 0.77880859375}, {"start": 2617.33, "end": 2617.65, "word": " icon,", "probability": 0.876953125}, {"start": 2617.75, "end": 2617.93, "word": " so", "probability": 0.298828125}, {"start": 2617.93, "end": 2618.45, "word": " who", "probability": 0.52490234375}, {"start": 2618.45, "end": 2618.61, "word": " is", "probability": 0.697265625}, {"start": 2618.61, "end": 2618.85, "word": " the", "probability": 0.6953125}, {"start": 2618.85, "end": 2618.85, "word": " main", "probability": 0.278564453125}, {"start": 2618.85, "end": 2619.17, "word": " inside", "probability": 0.1343994140625}, {"start": 2619.17, "end": 2619.57, "word": " this?", "probability": 0.53857421875}, {"start": 2620.05, "end": 2620.53, "word": " Did", "probability": 0.2259521484375}, {"start": 2620.53, "end": 2621.39, "word": " you", "probability": 0.96875}, {"start": 2621.39, "end": 2621.39, "word": " see", "probability": 0.3837890625}, {"start": 2621.39, "end": 2621.53, "word": " what", "probability": 0.9091796875}, {"start": 2621.53, "end": 2621.63, "word": " I", "probability": 0.90625}, {"start": 2621.63, "end": 2621.91, "word": " did?", "probability": 0.90380859375}, {"start": 2622.35, "end": 2622.59, "word": " I", "probability": 0.75}, {"start": 2622.59, "end": 2622.75, "word": " went", "probability": 0.5390625}, {"start": 2622.75, "end": 2622.99, "word": " to", "probability": 0.8349609375}, {"start": 2622.99, "end": 2623.21, "word": " all", "probability": 0.908203125}, {"start": 2623.21, "end": 2623.29, "word": " the", "probability": 0.52197265625}, {"start": 2623.29, "end": 2623.59, "word": " methods", "probability": 0.9208984375}, {"start": 2623.59, "end": 2623.77, "word": " in", "probability": 0.60302734375}, {"start": 2623.77, "end": 2623.87, "word": " the", "probability": 0.86767578125}, {"start": 2623.87, "end": 2624.03, "word": " image", "probability": 0.92919921875}, {"start": 2624.03, "end": 2624.45, "word": " icon", "probability": 0.91357421875}], "temperature": 1.0}, {"id": 105, "seek": 264996, "start": 2625.46, "end": 2649.96, "text": " I made an override for it, which means for example getImage and paintIcon and getIconWidth and getIconHeight How did you know these things? Because I didn't memorize them Just click on control space and you will find all the methods in the superclass All these methods are in the superclass I made them all", "tokens": [286, 1027, 364, 42321, 337, 309, 11, 597, 1355, 337, 1365, 483, 31128, 609, 293, 4225, 40, 1671, 293, 483, 40, 1671, 54, 327, 392, 293, 483, 40, 1671, 5205, 397, 1012, 630, 291, 458, 613, 721, 30, 1436, 286, 994, 380, 27478, 552, 1449, 2052, 322, 1969, 1901, 293, 291, 486, 915, 439, 264, 7150, 294, 264, 1687, 11665, 1057, 613, 7150, 366, 294, 264, 1687, 11665, 286, 1027, 552, 439], "avg_logprob": -0.541095883878943, "compression_ratio": 1.5989583333333333, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 2625.46, "end": 2625.64, "word": " I", "probability": 0.58935546875}, {"start": 2625.64, "end": 2625.82, "word": " made", "probability": 0.39453125}, {"start": 2625.82, "end": 2626.02, "word": " an", "probability": 0.347900390625}, {"start": 2626.02, "end": 2626.42, "word": " override", "probability": 0.85791015625}, {"start": 2626.42, "end": 2626.52, "word": " for", "probability": 0.40234375}, {"start": 2626.52, "end": 2626.52, "word": " it,", "probability": 0.4140625}, {"start": 2626.68, "end": 2626.68, "word": " which", "probability": 0.409423828125}, {"start": 2626.68, "end": 2627.04, "word": " means", "probability": 0.294189453125}, {"start": 2627.04, "end": 2627.16, "word": " for", "probability": 0.390869140625}, {"start": 2627.16, "end": 2627.4, "word": " example", "probability": 0.9345703125}, {"start": 2627.4, "end": 2628.56, "word": " getImage", "probability": 0.55126953125}, {"start": 2628.56, "end": 2629.02, "word": " and", "probability": 0.293701171875}, {"start": 2629.02, "end": 2629.92, "word": " paintIcon", "probability": 0.7445475260416666}, {"start": 2629.92, "end": 2630.48, "word": " and", "probability": 0.62451171875}, {"start": 2630.48, "end": 2631.38, "word": " getIconWidth", "probability": 0.9267578125}, {"start": 2631.38, "end": 2631.5, "word": " and", "probability": 0.89501953125}, {"start": 2631.5, "end": 2632.24, "word": " getIconHeight", "probability": 0.9599609375}, {"start": 2632.24, "end": 2632.88, "word": " How", "probability": 0.6865234375}, {"start": 2632.88, "end": 2633.04, "word": " did", "probability": 0.76220703125}, {"start": 2633.04, "end": 2633.24, "word": " you", "probability": 0.93310546875}, {"start": 2633.24, "end": 2633.24, "word": " know", "probability": 0.5419921875}, {"start": 2633.24, "end": 2633.52, "word": " these", "probability": 0.34375}, {"start": 2633.52, "end": 2633.64, "word": " things?", "probability": 0.360107421875}, {"start": 2634.14, "end": 2634.56, "word": " Because", "probability": 0.3310546875}, {"start": 2634.56, "end": 2634.74, "word": " I", "probability": 0.859375}, {"start": 2634.74, "end": 2634.82, "word": " didn't", "probability": 0.6895751953125}, {"start": 2634.82, "end": 2635.1, "word": " memorize", "probability": 0.57177734375}, {"start": 2635.1, "end": 2635.38, "word": " them", "probability": 0.83642578125}, {"start": 2635.38, "end": 2636.4, "word": " Just", "probability": 0.1280517578125}, {"start": 2636.4, "end": 2636.7, "word": " click", "probability": 0.2117919921875}, {"start": 2636.7, "end": 2636.74, "word": " on", "probability": 0.5791015625}, {"start": 2636.74, "end": 2637.26, "word": " control", "probability": 0.2200927734375}, {"start": 2637.26, "end": 2637.86, "word": " space", "probability": 0.438232421875}, {"start": 2637.86, "end": 2638.12, "word": " and", "probability": 0.35302734375}, {"start": 2638.12, "end": 2638.36, "word": " you", "probability": 0.8544921875}, {"start": 2638.36, "end": 2638.4, "word": " will", "probability": 0.583984375}, {"start": 2638.4, "end": 2638.62, "word": " find", "probability": 0.64892578125}, {"start": 2638.62, "end": 2639.74, "word": " all", "probability": 0.361572265625}, {"start": 2639.74, "end": 2639.74, "word": " the", "probability": 0.50390625}, {"start": 2639.74, "end": 2639.74, "word": " methods", "probability": 0.841796875}, {"start": 2639.74, "end": 2641.16, "word": " in", "probability": 0.42919921875}, {"start": 2641.16, "end": 2641.98, "word": " the", "probability": 0.69091796875}, {"start": 2641.98, "end": 2642.74, "word": " superclass", "probability": 0.787841796875}, {"start": 2642.74, "end": 2644.86, "word": " All", "probability": 0.13623046875}, {"start": 2644.86, "end": 2646.4, "word": " these", "probability": 0.64111328125}, {"start": 2646.4, "end": 2647.54, "word": " methods", "probability": 0.8193359375}, {"start": 2647.54, "end": 2647.7, "word": " are", "probability": 0.62109375}, {"start": 2647.7, "end": 2647.94, "word": " in", "probability": 0.471435546875}, {"start": 2647.94, "end": 2648.1, "word": " the", "probability": 0.85009765625}, {"start": 2648.1, "end": 2648.7, "word": " superclass", "probability": 0.965087890625}, {"start": 2648.7, "end": 2649.18, "word": " I", "probability": 0.313232421875}, {"start": 2649.18, "end": 2649.46, "word": " made", "probability": 0.484375}, {"start": 2649.46, "end": 2649.68, "word": " them", "probability": 0.5029296875}, {"start": 2649.68, "end": 2649.96, "word": " all", "probability": 0.86572265625}], "temperature": 1.0}, {"id": 106, "seek": 267997, "start": 2651.69, "end": 2679.97, "text": " overwrite and I did a simple thing look with me until I got an image of course I got an image, I'm not the one who will claim it actually when he comes to do next and previous he will do work and claim to get an image and get width and height to draw the image icon but I did something to him, I told him if you claim to get an image and you find the image icon empty if you return it to him, go and do what? take the buff and remove it means you let him remove it", "tokens": [670, 21561, 293, 286, 630, 257, 2199, 551, 574, 365, 385, 1826, 286, 658, 364, 3256, 295, 1164, 286, 658, 364, 3256, 11, 286, 478, 406, 264, 472, 567, 486, 3932, 309, 767, 562, 415, 1487, 281, 360, 958, 293, 3894, 415, 486, 360, 589, 293, 3932, 281, 483, 364, 3256, 293, 483, 11402, 293, 6681, 281, 2642, 264, 3256, 6528, 457, 286, 630, 746, 281, 796, 11, 286, 1907, 796, 498, 291, 3932, 281, 483, 364, 3256, 293, 291, 915, 264, 3256, 6528, 6707, 498, 291, 2736, 309, 281, 796, 11, 352, 293, 360, 437, 30, 747, 264, 9204, 293, 4159, 309, 1355, 291, 718, 796, 4159, 309], "avg_logprob": -0.5681818003004248, "compression_ratio": 1.9135802469135803, "no_speech_prob": 5.185604095458984e-06, "words": [{"start": 2651.6899999999996, "end": 2652.0899999999997, "word": " overwrite", "probability": 0.5147705078125}, {"start": 2652.0899999999997, "end": 2652.49, "word": " and", "probability": 0.46142578125}, {"start": 2652.49, "end": 2652.59, "word": " I", "probability": 0.5693359375}, {"start": 2652.59, "end": 2652.69, "word": " did", "probability": 0.755859375}, {"start": 2652.69, "end": 2652.97, "word": " a", "probability": 0.583984375}, {"start": 2652.97, "end": 2653.25, "word": " simple", "probability": 0.88232421875}, {"start": 2653.25, "end": 2653.37, "word": " thing", "probability": 0.76708984375}, {"start": 2653.37, "end": 2653.75, "word": " look", "probability": 0.300537109375}, {"start": 2653.75, "end": 2653.91, "word": " with", "probability": 0.5859375}, {"start": 2653.91, "end": 2654.27, "word": " me", "probability": 0.96240234375}, {"start": 2654.27, "end": 2654.67, "word": " until", "probability": 0.180419921875}, {"start": 2654.67, "end": 2654.87, "word": " I", "probability": 0.392333984375}, {"start": 2654.87, "end": 2654.91, "word": " got", "probability": 0.40283203125}, {"start": 2654.91, "end": 2655.03, "word": " an", "probability": 0.412353515625}, {"start": 2655.03, "end": 2655.23, "word": " image", "probability": 0.931640625}, {"start": 2655.23, "end": 2655.31, "word": " of", "probability": 0.39697265625}, {"start": 2655.31, "end": 2655.93, "word": " course", "probability": 0.9443359375}, {"start": 2655.93, "end": 2656.17, "word": " I", "probability": 0.6630859375}, {"start": 2656.17, "end": 2656.35, "word": " got", "probability": 0.54541015625}, {"start": 2656.35, "end": 2656.47, "word": " an", "probability": 0.56201171875}, {"start": 2656.47, "end": 2656.61, "word": " image,", "probability": 0.93017578125}, {"start": 2656.69, "end": 2656.87, "word": " I'm", "probability": 0.4429931640625}, {"start": 2656.87, "end": 2656.87, "word": " not", "probability": 0.93896484375}, {"start": 2656.87, "end": 2657.05, "word": " the", "probability": 0.449951171875}, {"start": 2657.05, "end": 2657.05, "word": " one", "probability": 0.91796875}, {"start": 2657.05, "end": 2657.07, "word": " who", "probability": 0.6435546875}, {"start": 2657.07, "end": 2657.15, "word": " will", "probability": 0.2734375}, {"start": 2657.15, "end": 2657.35, "word": " claim", "probability": 0.472412109375}, {"start": 2657.35, "end": 2657.61, "word": " it", "probability": 0.8740234375}, {"start": 2657.61, "end": 2658.33, "word": " actually", "probability": 0.263916015625}, {"start": 2658.33, "end": 2658.69, "word": " when", "probability": 0.2325439453125}, {"start": 2658.69, "end": 2659.33, "word": " he", "probability": 0.82421875}, {"start": 2659.33, "end": 2659.43, "word": " comes", "probability": 0.322998046875}, {"start": 2659.43, "end": 2659.51, "word": " to", "probability": 0.66552734375}, {"start": 2659.51, "end": 2659.63, "word": " do", "probability": 0.3681640625}, {"start": 2659.63, "end": 2659.89, "word": " next", "probability": 0.8984375}, {"start": 2659.89, "end": 2660.05, "word": " and", "probability": 0.5419921875}, {"start": 2660.05, "end": 2660.53, "word": " previous", "probability": 0.8876953125}, {"start": 2660.53, "end": 2661.37, "word": " he", "probability": 0.69580078125}, {"start": 2661.37, "end": 2661.49, "word": " will", "probability": 0.69091796875}, {"start": 2661.49, "end": 2661.67, "word": " do", "probability": 0.57470703125}, {"start": 2661.67, "end": 2662.03, "word": " work", "probability": 0.3974609375}, {"start": 2662.03, "end": 2662.29, "word": " and", "probability": 0.7646484375}, {"start": 2662.29, "end": 2662.59, "word": " claim", "probability": 0.74267578125}, {"start": 2662.59, "end": 2662.75, "word": " to", "probability": 0.29150390625}, {"start": 2662.75, "end": 2662.81, "word": " get", "probability": 0.865234375}, {"start": 2662.81, "end": 2662.97, "word": " an", "probability": 0.483154296875}, {"start": 2662.97, "end": 2663.09, "word": " image", "probability": 0.93505859375}, {"start": 2663.09, "end": 2663.25, "word": " and", "probability": 0.71728515625}, {"start": 2663.25, "end": 2663.43, "word": " get", "probability": 0.63525390625}, {"start": 2663.43, "end": 2663.67, "word": " width", "probability": 0.55419921875}, {"start": 2663.67, "end": 2663.81, "word": " and", "probability": 0.89599609375}, {"start": 2663.81, "end": 2664.13, "word": " height", "probability": 0.7294921875}, {"start": 2664.13, "end": 2664.41, "word": " to", "probability": 0.59130859375}, {"start": 2664.41, "end": 2664.71, "word": " draw", "probability": 0.494140625}, {"start": 2664.71, "end": 2665.89, "word": " the", "probability": 0.291259765625}, {"start": 2665.89, "end": 2666.15, "word": " image", "probability": 0.88818359375}, {"start": 2666.15, "end": 2666.41, "word": " icon", "probability": 0.75}, {"start": 2666.41, "end": 2666.89, "word": " but", "probability": 0.552734375}, {"start": 2666.89, "end": 2667.09, "word": " I", "probability": 0.9658203125}, {"start": 2667.09, "end": 2667.27, "word": " did", "probability": 0.77978515625}, {"start": 2667.27, "end": 2667.59, "word": " something", "probability": 0.642578125}, {"start": 2667.59, "end": 2667.71, "word": " to", "probability": 0.62548828125}, {"start": 2667.71, "end": 2667.71, "word": " him,", "probability": 0.9296875}, {"start": 2667.77, "end": 2667.83, "word": " I", "probability": 0.91748046875}, {"start": 2667.83, "end": 2667.95, "word": " told", "probability": 0.41015625}, {"start": 2667.95, "end": 2668.09, "word": " him", "probability": 0.93359375}, {"start": 2668.09, "end": 2668.43, "word": " if", "probability": 0.49658203125}, {"start": 2668.43, "end": 2668.65, "word": " you", "probability": 0.93017578125}, {"start": 2668.65, "end": 2668.85, "word": " claim", "probability": 0.6796875}, {"start": 2668.85, "end": 2669.13, "word": " to", "probability": 0.4921875}, {"start": 2669.13, "end": 2669.19, "word": " get", "probability": 0.9091796875}, {"start": 2669.19, "end": 2669.31, "word": " an", "probability": 0.68701171875}, {"start": 2669.31, "end": 2669.55, "word": " image", "probability": 0.9169921875}, {"start": 2669.55, "end": 2670.49, "word": " and", "probability": 0.78466796875}, {"start": 2670.49, "end": 2670.63, "word": " you", "probability": 0.55419921875}, {"start": 2670.63, "end": 2670.79, "word": " find", "probability": 0.7421875}, {"start": 2670.79, "end": 2670.97, "word": " the", "probability": 0.68359375}, {"start": 2670.97, "end": 2671.19, "word": " image", "probability": 0.27001953125}, {"start": 2671.19, "end": 2671.51, "word": " icon", "probability": 0.890625}, {"start": 2671.51, "end": 2671.91, "word": " empty", "probability": 0.50146484375}, {"start": 2671.91, "end": 2673.11, "word": " if", "probability": 0.76318359375}, {"start": 2673.11, "end": 2673.37, "word": " you", "probability": 0.91650390625}, {"start": 2673.37, "end": 2673.37, "word": " return", "probability": 0.1915283203125}, {"start": 2673.37, "end": 2673.51, "word": " it", "probability": 0.4033203125}, {"start": 2673.51, "end": 2673.55, "word": " to", "probability": 0.53076171875}, {"start": 2673.55, "end": 2673.69, "word": " him,", "probability": 0.62646484375}, {"start": 2673.81, "end": 2673.95, "word": " go", "probability": 0.71630859375}, {"start": 2673.95, "end": 2674.07, "word": " and", "probability": 0.546875}, {"start": 2674.07, "end": 2674.17, "word": " do", "probability": 0.8740234375}, {"start": 2674.17, "end": 2674.57, "word": " what?", "probability": 0.912109375}, {"start": 2676.25, "end": 2676.37, "word": " take", "probability": 0.48876953125}, {"start": 2676.37, "end": 2676.51, "word": " the", "probability": 0.8046875}, {"start": 2676.51, "end": 2676.71, "word": " buff", "probability": 0.49609375}, {"start": 2676.71, "end": 2678.05, "word": " and", "probability": 0.8994140625}, {"start": 2678.05, "end": 2678.25, "word": " remove", "probability": 0.07537841796875}, {"start": 2678.25, "end": 2678.41, "word": " it", "probability": 0.8427734375}, {"start": 2678.41, "end": 2678.95, "word": " means", "probability": 0.159912109375}, {"start": 2678.95, "end": 2679.07, "word": " you", "probability": 0.4208984375}, {"start": 2679.07, "end": 2679.35, "word": " let", "probability": 0.58984375}, {"start": 2679.35, "end": 2679.51, "word": " him", "probability": 0.7412109375}, {"start": 2679.51, "end": 2679.75, "word": " remove", "probability": 0.8046875}, {"start": 2679.75, "end": 2679.97, "word": " it", "probability": 0.638671875}], "temperature": 1.0}, {"id": 107, "seek": 271008, "start": 2683.04, "end": 2710.08, "text": " When he comes to create a get image, when he comes to draw actually, when he starts the application, the image proxy does not create an object, it just takes a path and stores it. When the artist comes to create next and previous, he sees the image icon, if it is not a channel, he goes and sees it. Notice now that this idea here is that I made a control for the constructor. The constructor delayed its use for how long when it comes to create a get image.", "tokens": [1133, 415, 1487, 281, 1884, 257, 483, 3256, 11, 562, 415, 1487, 281, 2642, 767, 11, 562, 415, 3719, 264, 3861, 11, 264, 3256, 29690, 775, 406, 1884, 364, 2657, 11, 309, 445, 2516, 257, 3100, 293, 9512, 309, 13, 1133, 264, 5748, 1487, 281, 1884, 958, 293, 3894, 11, 415, 8194, 264, 3256, 6528, 11, 498, 309, 307, 406, 257, 2269, 11, 415, 1709, 293, 8194, 309, 13, 13428, 586, 300, 341, 1558, 510, 307, 300, 286, 1027, 257, 1969, 337, 264, 47479, 13, 440, 47479, 20268, 1080, 764, 337, 577, 938, 562, 309, 1487, 281, 1884, 257, 483, 3256, 13], "avg_logprob": -0.5737257096373919, "compression_ratio": 1.8888888888888888, "no_speech_prob": 3.993511199951172e-06, "words": [{"start": 2683.04, "end": 2683.44, "word": " When", "probability": 0.11871337890625}, {"start": 2683.44, "end": 2683.84, "word": " he", "probability": 0.263671875}, {"start": 2683.84, "end": 2683.96, "word": " comes", "probability": 0.32763671875}, {"start": 2683.96, "end": 2683.98, "word": " to", "probability": 0.607421875}, {"start": 2683.98, "end": 2684.1, "word": " create", "probability": 0.2890625}, {"start": 2684.1, "end": 2684.22, "word": " a", "probability": 0.6806640625}, {"start": 2684.22, "end": 2684.34, "word": " get", "probability": 0.42431640625}, {"start": 2684.34, "end": 2684.64, "word": " image,", "probability": 0.61279296875}, {"start": 2685.02, "end": 2685.26, "word": " when", "probability": 0.474365234375}, {"start": 2685.26, "end": 2685.4, "word": " he", "probability": 0.91845703125}, {"start": 2685.4, "end": 2685.46, "word": " comes", "probability": 0.261962890625}, {"start": 2685.46, "end": 2685.54, "word": " to", "probability": 0.88623046875}, {"start": 2685.54, "end": 2685.72, "word": " draw", "probability": 0.71875}, {"start": 2685.72, "end": 2686.12, "word": " actually,", "probability": 0.25}, {"start": 2686.5, "end": 2686.86, "word": " when", "probability": 0.294677734375}, {"start": 2686.86, "end": 2687.06, "word": " he", "probability": 0.41650390625}, {"start": 2687.06, "end": 2688.32, "word": " starts", "probability": 0.2398681640625}, {"start": 2688.32, "end": 2688.54, "word": " the", "probability": 0.25634765625}, {"start": 2688.54, "end": 2688.98, "word": " application,", "probability": 0.7783203125}, {"start": 2689.72, "end": 2689.9, "word": " the", "probability": 0.658203125}, {"start": 2689.9, "end": 2690.1, "word": " image", "probability": 0.65625}, {"start": 2690.1, "end": 2690.52, "word": " proxy", "probability": 0.83251953125}, {"start": 2690.52, "end": 2690.74, "word": " does", "probability": 0.6103515625}, {"start": 2690.74, "end": 2690.74, "word": " not", "probability": 0.9306640625}, {"start": 2690.74, "end": 2690.92, "word": " create", "probability": 0.78662109375}, {"start": 2690.92, "end": 2691.08, "word": " an", "probability": 0.475830078125}, {"start": 2691.08, "end": 2691.24, "word": " object,", "probability": 0.974609375}, {"start": 2691.38, "end": 2691.54, "word": " it", "probability": 0.37109375}, {"start": 2691.54, "end": 2691.56, "word": " just", "probability": 0.469970703125}, {"start": 2691.56, "end": 2691.86, "word": " takes", "probability": 0.7333984375}, {"start": 2691.86, "end": 2691.94, "word": " a", "probability": 0.52734375}, {"start": 2691.94, "end": 2692.34, "word": " path", "probability": 0.79541015625}, {"start": 2692.34, "end": 2693.18, "word": " and", "probability": 0.830078125}, {"start": 2693.18, "end": 2693.46, "word": " stores", "probability": 0.81396484375}, {"start": 2693.46, "end": 2693.8, "word": " it.", "probability": 0.9384765625}, {"start": 2694.22, "end": 2694.6, "word": " When", "probability": 0.69189453125}, {"start": 2694.6, "end": 2694.7, "word": " the", "probability": 0.426513671875}, {"start": 2694.7, "end": 2695.04, "word": " artist", "probability": 0.25048828125}, {"start": 2695.04, "end": 2696.1, "word": " comes", "probability": 0.53173828125}, {"start": 2696.1, "end": 2696.18, "word": " to", "probability": 0.80859375}, {"start": 2696.18, "end": 2696.3, "word": " create", "probability": 0.447265625}, {"start": 2696.3, "end": 2696.56, "word": " next", "probability": 0.501953125}, {"start": 2696.56, "end": 2696.7, "word": " and", "probability": 0.5263671875}, {"start": 2696.7, "end": 2697.14, "word": " previous,", "probability": 0.9033203125}, {"start": 2697.32, "end": 2697.72, "word": " he", "probability": 0.64306640625}, {"start": 2697.72, "end": 2697.96, "word": " sees", "probability": 0.5048828125}, {"start": 2697.96, "end": 2698.36, "word": " the", "probability": 0.60693359375}, {"start": 2698.36, "end": 2698.58, "word": " image", "probability": 0.93212890625}, {"start": 2698.58, "end": 2698.88, "word": " icon,", "probability": 0.90625}, {"start": 2698.96, "end": 2699.08, "word": " if", "probability": 0.60302734375}, {"start": 2699.08, "end": 2699.16, "word": " it", "probability": 0.58837890625}, {"start": 2699.16, "end": 2699.16, "word": " is", "probability": 0.5361328125}, {"start": 2699.16, "end": 2699.28, "word": " not", "probability": 0.4287109375}, {"start": 2699.28, "end": 2699.4, "word": " a", "probability": 0.045440673828125}, {"start": 2699.4, "end": 2699.6, "word": " channel,", "probability": 0.576171875}, {"start": 2700.38, "end": 2700.52, "word": " he", "probability": 0.56396484375}, {"start": 2700.52, "end": 2700.62, "word": " goes", "probability": 0.68310546875}, {"start": 2700.62, "end": 2700.74, "word": " and", "probability": 0.595703125}, {"start": 2700.74, "end": 2700.9, "word": " sees", "probability": 0.420166015625}, {"start": 2700.9, "end": 2700.98, "word": " it.", "probability": 0.61328125}, {"start": 2701.08, "end": 2701.36, "word": " Notice", "probability": 0.59375}, {"start": 2701.36, "end": 2701.74, "word": " now", "probability": 0.3095703125}, {"start": 2701.74, "end": 2701.88, "word": " that", "probability": 0.4169921875}, {"start": 2701.88, "end": 2701.94, "word": " this", "probability": 0.44775390625}, {"start": 2701.94, "end": 2702.28, "word": " idea", "probability": 0.73046875}, {"start": 2702.28, "end": 2702.52, "word": " here", "probability": 0.60986328125}, {"start": 2702.52, "end": 2703.16, "word": " is", "probability": 0.6904296875}, {"start": 2703.16, "end": 2703.24, "word": " that", "probability": 0.828125}, {"start": 2703.24, "end": 2703.58, "word": " I", "probability": 0.98388671875}, {"start": 2703.58, "end": 2703.9, "word": " made", "probability": 0.3798828125}, {"start": 2703.9, "end": 2704.02, "word": " a", "probability": 0.39013671875}, {"start": 2704.02, "end": 2704.38, "word": " control", "probability": 0.81640625}, {"start": 2704.38, "end": 2704.56, "word": " for", "probability": 0.771484375}, {"start": 2704.56, "end": 2704.68, "word": " the", "probability": 0.90966796875}, {"start": 2704.68, "end": 2705.14, "word": " constructor.", "probability": 0.89990234375}, {"start": 2705.7, "end": 2705.84, "word": " The", "probability": 0.62744140625}, {"start": 2705.84, "end": 2706.28, "word": " constructor", "probability": 0.9091796875}, {"start": 2706.28, "end": 2706.84, "word": " delayed", "probability": 0.104248046875}, {"start": 2706.84, "end": 2707.18, "word": " its", "probability": 0.65380859375}, {"start": 2707.18, "end": 2708.1, "word": " use", "probability": 0.7958984375}, {"start": 2708.1, "end": 2708.26, "word": " for", "probability": 0.396240234375}, {"start": 2708.26, "end": 2708.46, "word": " how", "probability": 0.258544921875}, {"start": 2708.46, "end": 2708.62, "word": " long", "probability": 0.89990234375}, {"start": 2708.62, "end": 2709.28, "word": " when", "probability": 0.80517578125}, {"start": 2709.28, "end": 2709.36, "word": " it", "probability": 0.599609375}, {"start": 2709.36, "end": 2709.46, "word": " comes", "probability": 0.7265625}, {"start": 2709.46, "end": 2709.5, "word": " to", "probability": 0.95458984375}, {"start": 2709.5, "end": 2709.58, "word": " create", "probability": 0.72021484375}, {"start": 2709.58, "end": 2709.68, "word": " a", "probability": 0.8486328125}, {"start": 2709.68, "end": 2709.78, "word": " get", "probability": 0.92236328125}, {"start": 2709.78, "end": 2710.08, "word": " image.", "probability": 0.9169921875}], "temperature": 1.0}, {"id": 108, "seek": 274030, "start": 2711.68, "end": 2740.3, "text": " Like the idea of singleton, right? So if I get null, do it. But why did I put the condition? Because after that, if the teacher gets an image, there is no teacher to return it to you. Of course, here I also do a redirect. I go and tell him imageicon.get image. So I actually use the object inside because I wrapped it. Okay? And there is also a method called paint icon. What does this do? It sends. What does it do? It has no application. What does it do? But I told him, if you get a paint icon, go and make sure if the image icon is null,", "tokens": [1743, 264, 1558, 295, 1522, 14806, 11, 558, 30, 407, 498, 286, 483, 18184, 11, 360, 309, 13, 583, 983, 630, 286, 829, 264, 4188, 30, 1436, 934, 300, 11, 498, 264, 5027, 2170, 364, 3256, 11, 456, 307, 572, 5027, 281, 2736, 309, 281, 291, 13, 2720, 1164, 11, 510, 286, 611, 360, 257, 29066, 13, 286, 352, 293, 980, 796, 3256, 11911, 13, 847, 3256, 13, 407, 286, 767, 764, 264, 2657, 1854, 570, 286, 14226, 309, 13, 1033, 30, 400, 456, 307, 611, 257, 3170, 1219, 4225, 6528, 13, 708, 775, 341, 360, 30, 467, 14790, 13, 708, 775, 309, 360, 30, 467, 575, 572, 3861, 13, 708, 775, 309, 360, 30, 583, 286, 1907, 796, 11, 498, 291, 483, 257, 4225, 6528, 11, 352, 293, 652, 988, 498, 264, 3256, 6528, 307, 18184, 11], "avg_logprob": -0.4806654787749695, "compression_ratio": 1.777049180327869, "no_speech_prob": 4.9114227294921875e-05, "words": [{"start": 2711.68, "end": 2711.92, "word": " Like", "probability": 0.36572265625}, {"start": 2711.92, "end": 2712.04, "word": " the", "probability": 0.6298828125}, {"start": 2712.04, "end": 2712.18, "word": " idea", "probability": 0.564453125}, {"start": 2712.18, "end": 2712.32, "word": " of", "probability": 0.94189453125}, {"start": 2712.32, "end": 2712.82, "word": " singleton,", "probability": 0.7032470703125}, {"start": 2713.14, "end": 2713.34, "word": " right?", "probability": 0.35107421875}, {"start": 2713.54, "end": 2713.68, "word": " So", "probability": 0.29736328125}, {"start": 2713.68, "end": 2713.92, "word": " if", "probability": 0.78466796875}, {"start": 2713.92, "end": 2714.06, "word": " I", "probability": 0.450439453125}, {"start": 2714.06, "end": 2714.24, "word": " get", "probability": 0.444580078125}, {"start": 2714.24, "end": 2714.44, "word": " null,", "probability": 0.49169921875}, {"start": 2714.54, "end": 2714.7, "word": " do", "probability": 0.3701171875}, {"start": 2714.7, "end": 2714.94, "word": " it.", "probability": 0.8466796875}, {"start": 2715.44, "end": 2715.8, "word": " But", "probability": 0.2252197265625}, {"start": 2715.8, "end": 2715.98, "word": " why", "probability": 0.8525390625}, {"start": 2715.98, "end": 2716.04, "word": " did", "probability": 0.5869140625}, {"start": 2716.04, "end": 2716.04, "word": " I", "probability": 0.334228515625}, {"start": 2716.04, "end": 2716.18, "word": " put", "probability": 0.564453125}, {"start": 2716.18, "end": 2716.4, "word": " the", "probability": 0.324462890625}, {"start": 2716.4, "end": 2716.54, "word": " condition?", "probability": 0.88330078125}, {"start": 2716.62, "end": 2716.74, "word": " Because", "probability": 0.849609375}, {"start": 2716.74, "end": 2716.96, "word": " after", "probability": 0.451904296875}, {"start": 2716.96, "end": 2717.22, "word": " that,", "probability": 0.7939453125}, {"start": 2717.28, "end": 2717.34, "word": " if", "probability": 0.9013671875}, {"start": 2717.34, "end": 2717.52, "word": " the", "probability": 0.438232421875}, {"start": 2717.52, "end": 2717.54, "word": " teacher", "probability": 0.366943359375}, {"start": 2717.54, "end": 2717.8, "word": " gets", "probability": 0.3515625}, {"start": 2717.8, "end": 2717.94, "word": " an", "probability": 0.3095703125}, {"start": 2717.94, "end": 2718.16, "word": " image,", "probability": 0.9248046875}, {"start": 2718.82, "end": 2719.0, "word": " there", "probability": 0.1710205078125}, {"start": 2719.0, "end": 2719.22, "word": " is", "probability": 0.67529296875}, {"start": 2719.22, "end": 2719.34, "word": " no", "probability": 0.70556640625}, {"start": 2719.34, "end": 2720.12, "word": " teacher", "probability": 0.45458984375}, {"start": 2720.12, "end": 2720.44, "word": " to", "probability": 0.509765625}, {"start": 2720.44, "end": 2720.66, "word": " return", "probability": 0.2115478515625}, {"start": 2720.66, "end": 2720.74, "word": " it", "probability": 0.671875}, {"start": 2720.74, "end": 2721.02, "word": " to", "probability": 0.5166015625}, {"start": 2721.02, "end": 2721.02, "word": " you.", "probability": 0.748046875}, {"start": 2721.2, "end": 2721.38, "word": " Of", "probability": 0.75244140625}, {"start": 2721.38, "end": 2721.44, "word": " course,", "probability": 0.95703125}, {"start": 2721.52, "end": 2721.64, "word": " here", "probability": 0.7802734375}, {"start": 2721.64, "end": 2722.02, "word": " I", "probability": 0.521484375}, {"start": 2722.02, "end": 2722.02, "word": " also", "probability": 0.53369140625}, {"start": 2722.02, "end": 2722.2, "word": " do", "probability": 0.59716796875}, {"start": 2722.2, "end": 2722.34, "word": " a", "probability": 0.57275390625}, {"start": 2722.34, "end": 2722.62, "word": " redirect.", "probability": 0.70556640625}, {"start": 2722.72, "end": 2722.8, "word": " I", "probability": 0.95654296875}, {"start": 2722.8, "end": 2722.88, "word": " go", "probability": 0.5576171875}, {"start": 2722.88, "end": 2722.96, "word": " and", "probability": 0.7880859375}, {"start": 2722.96, "end": 2723.12, "word": " tell", "probability": 0.44873046875}, {"start": 2723.12, "end": 2723.2, "word": " him", "probability": 0.85693359375}, {"start": 2723.2, "end": 2723.78, "word": " imageicon", "probability": 0.4947509765625}, {"start": 2723.78, "end": 2724.4, "word": ".get", "probability": 0.923583984375}, {"start": 2724.4, "end": 2725.36, "word": " image.", "probability": 0.284912109375}, {"start": 2725.42, "end": 2725.52, "word": " So", "probability": 0.257568359375}, {"start": 2725.52, "end": 2725.68, "word": " I", "probability": 0.82177734375}, {"start": 2725.68, "end": 2726.04, "word": " actually", "probability": 0.330810546875}, {"start": 2726.04, "end": 2726.52, "word": " use", "probability": 0.87109375}, {"start": 2726.52, "end": 2727.04, "word": " the", "probability": 0.88916015625}, {"start": 2727.04, "end": 2727.46, "word": " object", "probability": 0.90966796875}, {"start": 2727.46, "end": 2727.8, "word": " inside", "probability": 0.6923828125}, {"start": 2727.8, "end": 2727.94, "word": " because", "probability": 0.52880859375}, {"start": 2727.94, "end": 2728.1, "word": " I", "probability": 0.97119140625}, {"start": 2728.1, "end": 2728.3, "word": " wrapped", "probability": 0.19189453125}, {"start": 2728.3, "end": 2728.48, "word": " it.", "probability": 0.9091796875}, {"start": 2729.18, "end": 2729.38, "word": " Okay?", "probability": 0.443115234375}, {"start": 2729.78, "end": 2729.94, "word": " And", "probability": 0.79541015625}, {"start": 2729.94, "end": 2730.2, "word": " there", "probability": 0.65576171875}, {"start": 2730.2, "end": 2730.2, "word": " is", "probability": 0.7978515625}, {"start": 2730.2, "end": 2730.2, "word": " also", "probability": 0.7822265625}, {"start": 2730.2, "end": 2730.3, "word": " a", "probability": 0.4482421875}, {"start": 2730.3, "end": 2730.56, "word": " method", "probability": 0.9697265625}, {"start": 2730.56, "end": 2730.86, "word": " called", "probability": 0.76416015625}, {"start": 2730.86, "end": 2731.2, "word": " paint", "probability": 0.390380859375}, {"start": 2731.2, "end": 2731.58, "word": " icon.", "probability": 0.703125}, {"start": 2732.2, "end": 2732.42, "word": " What", "probability": 0.833984375}, {"start": 2732.42, "end": 2732.46, "word": " does", "probability": 0.810546875}, {"start": 2732.46, "end": 2732.6, "word": " this", "probability": 0.546875}, {"start": 2732.6, "end": 2732.84, "word": " do?", "probability": 0.89990234375}, {"start": 2732.88, "end": 2732.98, "word": " It", "probability": 0.8271484375}, {"start": 2732.98, "end": 2733.16, "word": " sends.", "probability": 0.38525390625}, {"start": 2733.42, "end": 2733.64, "word": " What", "probability": 0.7216796875}, {"start": 2733.64, "end": 2733.74, "word": " does", "probability": 0.9462890625}, {"start": 2733.74, "end": 2733.86, "word": " it", "probability": 0.701171875}, {"start": 2733.86, "end": 2733.98, "word": " do?", "probability": 0.96435546875}, {"start": 2734.06, "end": 2734.12, "word": " It", "probability": 0.4453125}, {"start": 2734.12, "end": 2734.16, "word": " has", "probability": 0.38134765625}, {"start": 2734.16, "end": 2734.28, "word": " no", "probability": 0.90673828125}, {"start": 2734.28, "end": 2734.44, "word": " application.", "probability": 0.265380859375}, {"start": 2734.5, "end": 2734.6, "word": " What", "probability": 0.71728515625}, {"start": 2734.6, "end": 2734.62, "word": " does", "probability": 0.96240234375}, {"start": 2734.62, "end": 2734.76, "word": " it", "probability": 0.9248046875}, {"start": 2734.76, "end": 2734.92, "word": " do?", "probability": 0.96630859375}, {"start": 2735.3, "end": 2735.66, "word": " But", "probability": 0.92236328125}, {"start": 2735.66, "end": 2735.84, "word": " I", "probability": 0.74853515625}, {"start": 2735.84, "end": 2735.88, "word": " told", "probability": 0.75439453125}, {"start": 2735.88, "end": 2736.1, "word": " him,", "probability": 0.91259765625}, {"start": 2736.12, "end": 2736.36, "word": " if", "probability": 0.767578125}, {"start": 2736.36, "end": 2736.68, "word": " you", "probability": 0.95458984375}, {"start": 2736.68, "end": 2736.9, "word": " get", "probability": 0.439697265625}, {"start": 2736.9, "end": 2737.16, "word": " a", "probability": 0.482421875}, {"start": 2737.16, "end": 2737.38, "word": " paint", "probability": 0.7587890625}, {"start": 2737.38, "end": 2737.82, "word": " icon,", "probability": 0.94580078125}, {"start": 2738.54, "end": 2738.8, "word": " go", "probability": 0.81103515625}, {"start": 2738.8, "end": 2738.9, "word": " and", "probability": 0.72021484375}, {"start": 2738.9, "end": 2739.16, "word": " make", "probability": 0.51025390625}, {"start": 2739.16, "end": 2739.22, "word": " sure", "probability": 0.91162109375}, {"start": 2739.22, "end": 2739.4, "word": " if", "probability": 0.323486328125}, {"start": 2739.4, "end": 2739.52, "word": " the", "probability": 0.8544921875}, {"start": 2739.52, "end": 2739.68, "word": " image", "probability": 0.93408203125}, {"start": 2739.68, "end": 2740.06, "word": " icon", "probability": 0.8720703125}, {"start": 2740.06, "end": 2740.1, "word": " is", "probability": 0.8974609375}, {"start": 2740.1, "end": 2740.3, "word": " null,", "probability": 0.96484375}], "temperature": 1.0}, {"id": 109, "seek": 276898, "start": 2741.56, "end": 2768.98, "text": " Create it, then go to the image icon and click on the paint icon. This is a code not to add a new functionality, but to create a control. Okay? And it's the same thing with get-width and get-height. They need the swing to draw the picture. Also, if it's null, go and create it. Then click on the image icon and click on get-width. So really, the real object that I'm dealing with is this object inside.", "tokens": [20248, 309, 11, 550, 352, 281, 264, 3256, 6528, 293, 2052, 322, 264, 4225, 6528, 13, 639, 307, 257, 3089, 406, 281, 909, 257, 777, 14980, 11, 457, 281, 1884, 257, 1969, 13, 1033, 30, 400, 309, 311, 264, 912, 551, 365, 483, 12, 21271, 293, 483, 12, 675, 397, 13, 814, 643, 264, 11173, 281, 2642, 264, 3036, 13, 2743, 11, 498, 309, 311, 18184, 11, 352, 293, 1884, 309, 13, 1396, 2052, 322, 264, 3256, 6528, 293, 2052, 322, 483, 12, 21271, 13, 407, 534, 11, 264, 957, 2657, 300, 286, 478, 6260, 365, 307, 341, 2657, 1854, 13], "avg_logprob": -0.5511642413980821, "compression_ratio": 1.7370689655172413, "no_speech_prob": 2.580881118774414e-05, "words": [{"start": 2741.56, "end": 2741.96, "word": " Create", "probability": 0.08905029296875}, {"start": 2741.96, "end": 2742.16, "word": " it,", "probability": 0.56787109375}, {"start": 2742.2, "end": 2742.46, "word": " then", "probability": 0.439208984375}, {"start": 2742.46, "end": 2742.68, "word": " go", "probability": 0.59423828125}, {"start": 2742.68, "end": 2742.8, "word": " to", "probability": 0.9091796875}, {"start": 2742.8, "end": 2742.86, "word": " the", "probability": 0.7607421875}, {"start": 2742.86, "end": 2743.08, "word": " image", "probability": 0.65869140625}, {"start": 2743.08, "end": 2743.38, "word": " icon", "probability": 0.84228515625}, {"start": 2743.38, "end": 2743.62, "word": " and", "probability": 0.6650390625}, {"start": 2743.62, "end": 2743.7, "word": " click", "probability": 0.2225341796875}, {"start": 2743.7, "end": 2743.9, "word": " on", "probability": 0.5087890625}, {"start": 2743.9, "end": 2744.5, "word": " the", "probability": 0.298828125}, {"start": 2744.5, "end": 2745.02, "word": " paint", "probability": 0.49462890625}, {"start": 2745.02, "end": 2745.42, "word": " icon.", "probability": 0.9345703125}, {"start": 2745.74, "end": 2746.18, "word": " This", "probability": 0.7470703125}, {"start": 2746.18, "end": 2746.26, "word": " is", "probability": 0.72802734375}, {"start": 2746.26, "end": 2746.3, "word": " a", "probability": 0.3896484375}, {"start": 2746.3, "end": 2746.7, "word": " code", "probability": 0.84375}, {"start": 2746.7, "end": 2747.88, "word": " not", "probability": 0.51513671875}, {"start": 2747.88, "end": 2748.0, "word": " to", "probability": 0.37841796875}, {"start": 2748.0, "end": 2748.28, "word": " add", "probability": 0.876953125}, {"start": 2748.28, "end": 2748.48, "word": " a", "probability": 0.595703125}, {"start": 2748.48, "end": 2749.12, "word": " new", "probability": 0.87548828125}, {"start": 2749.12, "end": 2749.12, "word": " functionality,", "probability": 0.483642578125}, {"start": 2749.22, "end": 2749.38, "word": " but", "probability": 0.58984375}, {"start": 2749.38, "end": 2749.4, "word": " to", "probability": 0.830078125}, {"start": 2749.4, "end": 2749.6, "word": " create", "probability": 0.25244140625}, {"start": 2749.6, "end": 2749.72, "word": " a", "probability": 0.33447265625}, {"start": 2749.72, "end": 2750.06, "word": " control.", "probability": 0.83203125}, {"start": 2750.66, "end": 2751.08, "word": " Okay?", "probability": 0.1734619140625}, {"start": 2751.44, "end": 2751.64, "word": " And", "probability": 0.452880859375}, {"start": 2751.64, "end": 2751.74, "word": " it's", "probability": 0.4290771484375}, {"start": 2751.74, "end": 2751.86, "word": " the", "probability": 0.8603515625}, {"start": 2751.86, "end": 2751.86, "word": " same", "probability": 0.90185546875}, {"start": 2751.86, "end": 2752.18, "word": " thing", "probability": 0.42529296875}, {"start": 2752.18, "end": 2752.28, "word": " with", "probability": 0.405029296875}, {"start": 2752.28, "end": 2752.54, "word": " get", "probability": 0.440185546875}, {"start": 2752.54, "end": 2752.86, "word": "-width", "probability": 0.6539306640625}, {"start": 2752.86, "end": 2753.5, "word": " and", "probability": 0.90478515625}, {"start": 2753.5, "end": 2753.7, "word": " get", "probability": 0.94091796875}, {"start": 2753.7, "end": 2753.96, "word": "-height.", "probability": 0.9617513020833334}, {"start": 2754.0, "end": 2754.22, "word": " They", "probability": 0.30517578125}, {"start": 2754.22, "end": 2754.56, "word": " need", "probability": 0.0626220703125}, {"start": 2754.56, "end": 2756.62, "word": " the", "probability": 0.49658203125}, {"start": 2756.62, "end": 2756.98, "word": " swing", "probability": 0.80810546875}, {"start": 2756.98, "end": 2757.24, "word": " to", "probability": 0.410400390625}, {"start": 2757.24, "end": 2757.68, "word": " draw", "probability": 0.415283203125}, {"start": 2757.68, "end": 2758.24, "word": " the", "probability": 0.791015625}, {"start": 2758.24, "end": 2758.86, "word": " picture.", "probability": 0.38818359375}, {"start": 2759.58, "end": 2760.02, "word": " Also,", "probability": 0.347412109375}, {"start": 2760.14, "end": 2760.18, "word": " if", "probability": 0.8017578125}, {"start": 2760.18, "end": 2760.9, "word": " it's", "probability": 0.505859375}, {"start": 2760.9, "end": 2761.14, "word": " null,", "probability": 0.491455078125}, {"start": 2761.24, "end": 2761.36, "word": " go", "probability": 0.54052734375}, {"start": 2761.36, "end": 2761.48, "word": " and", "probability": 0.420654296875}, {"start": 2761.48, "end": 2761.58, "word": " create", "probability": 0.84814453125}, {"start": 2761.58, "end": 2761.78, "word": " it.", "probability": 0.89208984375}, {"start": 2763.12, "end": 2763.26, "word": " Then", "probability": 0.233154296875}, {"start": 2763.26, "end": 2763.42, "word": " click", "probability": 0.75390625}, {"start": 2763.42, "end": 2763.58, "word": " on", "probability": 0.8515625}, {"start": 2763.58, "end": 2763.64, "word": " the", "probability": 0.802734375}, {"start": 2763.64, "end": 2763.82, "word": " image", "probability": 0.9052734375}, {"start": 2763.82, "end": 2764.14, "word": " icon", "probability": 0.91845703125}, {"start": 2764.14, "end": 2764.22, "word": " and", "probability": 0.6533203125}, {"start": 2764.22, "end": 2764.3, "word": " click", "probability": 0.78125}, {"start": 2764.3, "end": 2764.3, "word": " on", "probability": 0.68408203125}, {"start": 2764.3, "end": 2764.36, "word": " get", "probability": 0.66845703125}, {"start": 2764.36, "end": 2764.54, "word": "-width.", "probability": 0.56640625}, {"start": 2764.8, "end": 2765.02, "word": " So", "probability": 0.371826171875}, {"start": 2765.02, "end": 2765.4, "word": " really,", "probability": 0.1669921875}, {"start": 2765.58, "end": 2765.74, "word": " the", "probability": 0.7744140625}, {"start": 2765.74, "end": 2766.44, "word": " real", "probability": 0.685546875}, {"start": 2766.44, "end": 2766.52, "word": " object", "probability": 0.9482421875}, {"start": 2766.52, "end": 2766.78, "word": " that", "probability": 0.47021484375}, {"start": 2766.78, "end": 2766.88, "word": " I'm", "probability": 0.79443359375}, {"start": 2766.88, "end": 2767.14, "word": " dealing", "probability": 0.693359375}, {"start": 2767.14, "end": 2767.54, "word": " with", "probability": 0.89013671875}, {"start": 2767.54, "end": 2768.2, "word": " is", "probability": 0.84326171875}, {"start": 2768.2, "end": 2768.32, "word": " this", "probability": 0.426025390625}, {"start": 2768.32, "end": 2768.58, "word": " object", "probability": 0.68359375}, {"start": 2768.58, "end": 2768.98, "word": " inside.", "probability": 0.48193359375}], "temperature": 1.0}, {"id": 110, "seek": 279845, "start": 2770.11, "end": 2798.45, "text": " This is the truth. This is just a cover. I make fun of the client that this image proxy is a client just like the image icon. Okay? But he is covering the image icon. The whole idea is that I'm not going to tell him super and give him an image path. I delayed this step. If you give him an image path, this is a disaster. Why? This is how they bear on memory. I delayed this step. When did I delay it? When he clings to it.", "tokens": [639, 307, 264, 3494, 13, 639, 307, 445, 257, 2060, 13, 286, 652, 1019, 295, 264, 6423, 300, 341, 3256, 29690, 307, 257, 6423, 445, 411, 264, 3256, 6528, 13, 1033, 30, 583, 415, 307, 10322, 264, 3256, 6528, 13, 440, 1379, 1558, 307, 300, 286, 478, 406, 516, 281, 980, 796, 1687, 293, 976, 796, 364, 3256, 3100, 13, 286, 20268, 341, 1823, 13, 759, 291, 976, 796, 364, 3256, 3100, 11, 341, 307, 257, 11293, 13, 1545, 30, 639, 307, 577, 436, 6155, 322, 4675, 13, 286, 20268, 341, 1823, 13, 1133, 630, 286, 8577, 309, 30, 1133, 415, 596, 1109, 281, 309, 13], "avg_logprob": -0.44217290332384196, "compression_ratio": 1.851528384279476, "no_speech_prob": 1.4781951904296875e-05, "words": [{"start": 2770.11, "end": 2770.41, "word": " This", "probability": 0.18798828125}, {"start": 2770.41, "end": 2770.55, "word": " is", "probability": 0.9228515625}, {"start": 2770.55, "end": 2770.67, "word": " the", "probability": 0.78955078125}, {"start": 2770.67, "end": 2770.99, "word": " truth.", "probability": 0.76318359375}, {"start": 2771.79, "end": 2771.99, "word": " This", "probability": 0.50146484375}, {"start": 2771.99, "end": 2772.07, "word": " is", "probability": 0.90380859375}, {"start": 2772.07, "end": 2772.51, "word": " just", "probability": 0.65869140625}, {"start": 2772.51, "end": 2773.23, "word": " a", "probability": 0.7978515625}, {"start": 2773.23, "end": 2773.45, "word": " cover.", "probability": 0.74365234375}, {"start": 2773.65, "end": 2773.81, "word": " I", "probability": 0.87548828125}, {"start": 2773.81, "end": 2774.03, "word": " make", "probability": 0.26220703125}, {"start": 2774.03, "end": 2774.09, "word": " fun", "probability": 0.8173828125}, {"start": 2774.09, "end": 2774.19, "word": " of", "probability": 0.93701171875}, {"start": 2774.19, "end": 2774.45, "word": " the", "probability": 0.63232421875}, {"start": 2774.45, "end": 2774.77, "word": " client", "probability": 0.88720703125}, {"start": 2774.77, "end": 2774.95, "word": " that", "probability": 0.372314453125}, {"start": 2774.95, "end": 2775.23, "word": " this", "probability": 0.64208984375}, {"start": 2775.23, "end": 2775.47, "word": " image", "probability": 0.5966796875}, {"start": 2775.47, "end": 2775.85, "word": " proxy", "probability": 0.853515625}, {"start": 2775.85, "end": 2776.11, "word": " is", "probability": 0.80078125}, {"start": 2776.11, "end": 2776.17, "word": " a", "probability": 0.378662109375}, {"start": 2776.17, "end": 2776.61, "word": " client", "probability": 0.86669921875}, {"start": 2776.61, "end": 2777.15, "word": " just", "probability": 0.1607666015625}, {"start": 2777.15, "end": 2777.31, "word": " like", "probability": 0.93359375}, {"start": 2777.31, "end": 2777.57, "word": " the", "probability": 0.208984375}, {"start": 2777.57, "end": 2777.73, "word": " image", "probability": 0.90478515625}, {"start": 2777.73, "end": 2778.07, "word": " icon.", "probability": 0.86279296875}, {"start": 2778.83, "end": 2779.07, "word": " Okay?", "probability": 0.2568359375}, {"start": 2779.19, "end": 2779.35, "word": " But", "probability": 0.83056640625}, {"start": 2779.35, "end": 2779.51, "word": " he", "probability": 0.44140625}, {"start": 2779.51, "end": 2779.59, "word": " is", "probability": 0.348876953125}, {"start": 2779.59, "end": 2779.85, "word": " covering", "probability": 0.34521484375}, {"start": 2779.85, "end": 2780.07, "word": " the", "probability": 0.61083984375}, {"start": 2780.07, "end": 2780.23, "word": " image", "probability": 0.9287109375}, {"start": 2780.23, "end": 2780.57, "word": " icon.", "probability": 0.908203125}, {"start": 2781.07, "end": 2781.17, "word": " The", "probability": 0.81201171875}, {"start": 2781.17, "end": 2781.17, "word": " whole", "probability": 0.76708984375}, {"start": 2781.17, "end": 2781.47, "word": " idea", "probability": 0.833984375}, {"start": 2781.47, "end": 2782.83, "word": " is", "probability": 0.833984375}, {"start": 2782.83, "end": 2782.93, "word": " that", "probability": 0.82861328125}, {"start": 2782.93, "end": 2783.83, "word": " I'm", "probability": 0.49322509765625}, {"start": 2783.83, "end": 2784.13, "word": " not", "probability": 0.5927734375}, {"start": 2784.13, "end": 2784.23, "word": " going", "probability": 0.8515625}, {"start": 2784.23, "end": 2784.29, "word": " to", "probability": 0.92431640625}, {"start": 2784.29, "end": 2784.49, "word": " tell", "probability": 0.55419921875}, {"start": 2784.49, "end": 2784.73, "word": " him", "probability": 0.86669921875}, {"start": 2784.73, "end": 2785.01, "word": " super", "probability": 0.351806640625}, {"start": 2785.01, "end": 2786.35, "word": " and", "probability": 0.78466796875}, {"start": 2786.35, "end": 2786.73, "word": " give", "probability": 0.5556640625}, {"start": 2786.73, "end": 2786.85, "word": " him", "probability": 0.91357421875}, {"start": 2786.85, "end": 2786.87, "word": " an", "probability": 0.479248046875}, {"start": 2786.87, "end": 2787.03, "word": " image", "probability": 0.9267578125}, {"start": 2787.03, "end": 2787.37, "word": " path.", "probability": 0.91064453125}, {"start": 2787.59, "end": 2787.97, "word": " I", "probability": 0.84716796875}, {"start": 2787.97, "end": 2788.25, "word": " delayed", "probability": 0.39599609375}, {"start": 2788.25, "end": 2788.55, "word": " this", "probability": 0.86083984375}, {"start": 2788.55, "end": 2788.83, "word": " step.", "probability": 0.91162109375}, {"start": 2789.21, "end": 2789.57, "word": " If", "probability": 0.92578125}, {"start": 2789.57, "end": 2789.63, "word": " you", "probability": 0.517578125}, {"start": 2789.63, "end": 2789.77, "word": " give", "probability": 0.599609375}, {"start": 2789.77, "end": 2789.97, "word": " him", "probability": 0.8642578125}, {"start": 2789.97, "end": 2789.99, "word": " an", "probability": 0.80029296875}, {"start": 2789.99, "end": 2790.13, "word": " image", "probability": 0.9296875}, {"start": 2790.13, "end": 2790.63, "word": " path,", "probability": 0.9443359375}, {"start": 2791.09, "end": 2791.35, "word": " this", "probability": 0.556640625}, {"start": 2791.35, "end": 2791.45, "word": " is", "probability": 0.9248046875}, {"start": 2791.45, "end": 2791.77, "word": " a", "probability": 0.8193359375}, {"start": 2791.77, "end": 2791.77, "word": " disaster.", "probability": 0.6220703125}, {"start": 2791.97, "end": 2792.29, "word": " Why?", "probability": 0.84765625}, {"start": 2792.53, "end": 2792.89, "word": " This", "probability": 0.36865234375}, {"start": 2792.89, "end": 2792.89, "word": " is", "probability": 0.78955078125}, {"start": 2792.89, "end": 2793.01, "word": " how", "probability": 0.8798828125}, {"start": 2793.01, "end": 2793.23, "word": " they", "probability": 0.38671875}, {"start": 2793.23, "end": 2793.23, "word": " bear", "probability": 0.15283203125}, {"start": 2793.23, "end": 2793.39, "word": " on", "probability": 0.35791015625}, {"start": 2793.39, "end": 2793.65, "word": " memory.", "probability": 0.68017578125}, {"start": 2793.91, "end": 2794.39, "word": " I", "probability": 0.93017578125}, {"start": 2794.39, "end": 2794.39, "word": " delayed", "probability": 0.63037109375}, {"start": 2794.39, "end": 2794.57, "word": " this", "probability": 0.9365234375}, {"start": 2794.57, "end": 2794.85, "word": " step.", "probability": 0.92333984375}, {"start": 2795.85, "end": 2796.33, "word": " When", "probability": 0.75048828125}, {"start": 2796.33, "end": 2796.33, "word": " did", "probability": 0.8916015625}, {"start": 2796.33, "end": 2796.63, "word": " I", "probability": 0.71484375}, {"start": 2796.63, "end": 2796.63, "word": " delay", "probability": 0.83056640625}, {"start": 2796.63, "end": 2797.09, "word": " it?", "probability": 0.86376953125}, {"start": 2797.41, "end": 2797.75, "word": " When", "probability": 0.86328125}, {"start": 2797.75, "end": 2797.91, "word": " he", "probability": 0.689453125}, {"start": 2797.91, "end": 2798.15, "word": " clings", "probability": 0.450103759765625}, {"start": 2798.15, "end": 2798.33, "word": " to", "probability": 0.7333984375}, {"start": 2798.33, "end": 2798.45, "word": " it.", "probability": 0.87548828125}], "temperature": 1.0}, {"id": 111, "seek": 282728, "start": 2804.34, "end": 2827.28, "text": "Paint.getImage.getIconHigh Because this idea is exactly like the idea of the decorator As I used to make a circle that contains a shape and then in the draw I say shape.draw Or in the describe I say shape.describe Right or not? This is the same thing I go and say getIconWidth I go to the image icon and say getIconWidth", "tokens": [47, 5114, 13, 847, 31128, 609, 13, 847, 40, 1671, 40185, 1436, 341, 1558, 307, 2293, 411, 264, 1558, 295, 264, 7919, 1639, 1018, 286, 1143, 281, 652, 257, 6329, 300, 8306, 257, 3909, 293, 550, 294, 264, 2642, 286, 584, 3909, 13, 48848, 1610, 294, 264, 6786, 286, 584, 3909, 13, 14792, 8056, 1779, 420, 406, 30, 639, 307, 264, 912, 551, 286, 352, 293, 584, 483, 40, 1671, 54, 327, 392, 286, 352, 281, 264, 3256, 6528, 293, 584, 483, 40, 1671, 54, 327, 392], "avg_logprob": -0.46164772693406453, "compression_ratio": 1.7486338797814207, "no_speech_prob": 2.384185791015625e-06, "words": [{"start": 2804.3399999999997, "end": 2804.7599999999998, "word": "Paint", "probability": 0.4046630859375}, {"start": 2804.7599999999998, "end": 2805.18, "word": ".getImage", "probability": 0.45281982421875}, {"start": 2805.18, "end": 2807.12, "word": ".getIconHigh", "probability": 0.53876953125}, {"start": 2807.12, "end": 2808.14, "word": " Because", "probability": 0.2091064453125}, {"start": 2808.14, "end": 2808.8, "word": " this", "probability": 0.53564453125}, {"start": 2808.8, "end": 2808.8, "word": " idea", "probability": 0.403076171875}, {"start": 2808.8, "end": 2808.9, "word": " is", "probability": 0.869140625}, {"start": 2808.9, "end": 2809.0, "word": " exactly", "probability": 0.35546875}, {"start": 2809.0, "end": 2809.08, "word": " like", "probability": 0.701171875}, {"start": 2809.08, "end": 2809.3, "word": " the", "probability": 0.5537109375}, {"start": 2809.3, "end": 2809.3, "word": " idea", "probability": 0.72314453125}, {"start": 2809.3, "end": 2809.38, "word": " of", "probability": 0.91455078125}, {"start": 2809.38, "end": 2809.44, "word": " the", "probability": 0.32421875}, {"start": 2809.44, "end": 2809.84, "word": " decorator", "probability": 0.852783203125}, {"start": 2809.84, "end": 2810.74, "word": " As", "probability": 0.1885986328125}, {"start": 2810.74, "end": 2811.02, "word": " I", "probability": 0.5732421875}, {"start": 2811.02, "end": 2811.24, "word": " used", "probability": 0.421875}, {"start": 2811.24, "end": 2811.32, "word": " to", "probability": 0.96875}, {"start": 2811.32, "end": 2811.46, "word": " make", "probability": 0.5703125}, {"start": 2811.46, "end": 2811.6, "word": " a", "probability": 0.82177734375}, {"start": 2811.6, "end": 2812.04, "word": " circle", "probability": 0.947265625}, {"start": 2812.04, "end": 2814.18, "word": " that", "probability": 0.1824951171875}, {"start": 2814.18, "end": 2814.52, "word": " contains", "probability": 0.43896484375}, {"start": 2814.52, "end": 2814.86, "word": " a", "probability": 0.64990234375}, {"start": 2814.86, "end": 2815.24, "word": " shape", "probability": 0.9013671875}, {"start": 2815.24, "end": 2816.0, "word": " and", "probability": 0.488037109375}, {"start": 2816.0, "end": 2816.26, "word": " then", "probability": 0.634765625}, {"start": 2816.26, "end": 2816.46, "word": " in", "probability": 0.537109375}, {"start": 2816.46, "end": 2816.58, "word": " the", "probability": 0.7109375}, {"start": 2816.58, "end": 2816.82, "word": " draw", "probability": 0.68798828125}, {"start": 2816.82, "end": 2817.0, "word": " I", "probability": 0.58154296875}, {"start": 2817.0, "end": 2817.18, "word": " say", "probability": 0.468505859375}, {"start": 2817.18, "end": 2817.5, "word": " shape", "probability": 0.78564453125}, {"start": 2817.5, "end": 2817.98, "word": ".draw", "probability": 0.813720703125}, {"start": 2817.98, "end": 2818.56, "word": " Or", "probability": 0.66357421875}, {"start": 2818.56, "end": 2818.72, "word": " in", "probability": 0.85546875}, {"start": 2818.72, "end": 2818.8, "word": " the", "probability": 0.67041015625}, {"start": 2818.8, "end": 2819.18, "word": " describe", "probability": 0.7763671875}, {"start": 2819.18, "end": 2819.3, "word": " I", "probability": 0.708984375}, {"start": 2819.3, "end": 2819.48, "word": " say", "probability": 0.88232421875}, {"start": 2819.48, "end": 2819.72, "word": " shape", "probability": 0.900390625}, {"start": 2819.72, "end": 2820.36, "word": ".describe", "probability": 0.9742838541666666}, {"start": 2820.36, "end": 2820.7, "word": " Right", "probability": 0.3408203125}, {"start": 2820.7, "end": 2820.86, "word": " or", "probability": 0.89013671875}, {"start": 2820.86, "end": 2821.0, "word": " not?", "probability": 0.47998046875}, {"start": 2821.54, "end": 2821.74, "word": " This", "probability": 0.54638671875}, {"start": 2821.74, "end": 2821.82, "word": " is", "probability": 0.9375}, {"start": 2821.82, "end": 2822.0, "word": " the", "probability": 0.87841796875}, {"start": 2822.0, "end": 2822.0, "word": " same", "probability": 0.9013671875}, {"start": 2822.0, "end": 2822.34, "word": " thing", "probability": 0.859375}, {"start": 2822.34, "end": 2822.46, "word": " I", "probability": 0.53515625}, {"start": 2822.46, "end": 2822.56, "word": " go", "probability": 0.4931640625}, {"start": 2822.56, "end": 2822.68, "word": " and", "probability": 0.6591796875}, {"start": 2822.68, "end": 2822.88, "word": " say", "probability": 0.62060546875}, {"start": 2822.88, "end": 2824.98, "word": " getIconWidth", "probability": 0.7888997395833334}, {"start": 2824.98, "end": 2825.34, "word": " I", "probability": 0.336669921875}, {"start": 2825.34, "end": 2825.48, "word": " go", "probability": 0.927734375}, {"start": 2825.48, "end": 2825.62, "word": " to", "probability": 0.94677734375}, {"start": 2825.62, "end": 2825.7, "word": " the", "probability": 0.8525390625}, {"start": 2825.7, "end": 2825.88, "word": " image", "probability": 0.783203125}, {"start": 2825.88, "end": 2826.18, "word": " icon", "probability": 0.77099609375}, {"start": 2826.18, "end": 2826.3, "word": " and", "probability": 0.85498046875}, {"start": 2826.3, "end": 2826.42, "word": " say", "probability": 0.68798828125}, {"start": 2826.42, "end": 2827.28, "word": " getIconWidth", "probability": 0.947509765625}], "temperature": 1.0}, {"id": 112, "seek": 284283, "start": 2829.25, "end": 2842.83, "text": "GetIconHeight goes to ImageIcon and says GetIconHeight, but it creates a code and gives it a control to make sure that if it is not created, then create it. Let's see how this step will make a difference. This is my application. The application that I changed has only one thing.", "tokens": [18133, 40, 1671, 5205, 397, 1709, 281, 29903, 40, 1671, 293, 1619, 3240, 40, 1671, 5205, 397, 11, 457, 309, 7829, 257, 3089, 293, 2709, 309, 257, 1969, 281, 652, 988, 300, 498, 309, 307, 406, 2942, 11, 550, 1884, 309, 13, 961, 311, 536, 577, 341, 1823, 486, 652, 257, 2649, 13, 639, 307, 452, 3861, 13, 440, 3861, 300, 286, 3105, 575, 787, 472, 551, 13], "avg_logprob": -0.548913067665653, "compression_ratio": 1.5674157303370786, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 2829.2499999999995, "end": 2829.6099999999997, "word": "GetIconHeight", "probability": 0.649169921875}, {"start": 2829.6099999999997, "end": 2829.97, "word": " goes", "probability": 0.1663818359375}, {"start": 2829.97, "end": 2830.13, "word": " to", "probability": 0.9287109375}, {"start": 2830.13, "end": 2830.55, "word": " ImageIcon", "probability": 0.6602376302083334}, {"start": 2830.55, "end": 2830.63, "word": " and", "probability": 0.6884765625}, {"start": 2830.63, "end": 2830.75, "word": " says", "probability": 0.22314453125}, {"start": 2830.75, "end": 2831.49, "word": " GetIconHeight,", "probability": 0.84765625}, {"start": 2831.67, "end": 2831.91, "word": " but", "probability": 0.76171875}, {"start": 2831.91, "end": 2832.03, "word": " it", "probability": 0.46484375}, {"start": 2832.03, "end": 2832.17, "word": " creates", "probability": 0.281494140625}, {"start": 2832.17, "end": 2832.33, "word": " a", "probability": 0.62060546875}, {"start": 2832.33, "end": 2832.65, "word": " code", "probability": 0.479736328125}, {"start": 2832.65, "end": 2833.09, "word": " and", "probability": 0.180908203125}, {"start": 2833.09, "end": 2833.25, "word": " gives", "probability": 0.374755859375}, {"start": 2833.25, "end": 2833.43, "word": " it", "probability": 0.377685546875}, {"start": 2833.43, "end": 2833.53, "word": " a", "probability": 0.430419921875}, {"start": 2833.53, "end": 2833.97, "word": " control", "probability": 0.748046875}, {"start": 2833.97, "end": 2834.45, "word": " to", "probability": 0.453125}, {"start": 2834.45, "end": 2834.57, "word": " make", "probability": 0.4814453125}, {"start": 2834.57, "end": 2834.91, "word": " sure", "probability": 0.9189453125}, {"start": 2834.91, "end": 2835.07, "word": " that", "probability": 0.662109375}, {"start": 2835.07, "end": 2835.43, "word": " if", "probability": 0.8212890625}, {"start": 2835.43, "end": 2835.67, "word": " it", "probability": 0.71484375}, {"start": 2835.67, "end": 2835.67, "word": " is", "probability": 0.421142578125}, {"start": 2835.67, "end": 2835.67, "word": " not", "probability": 0.900390625}, {"start": 2835.67, "end": 2835.91, "word": " created,", "probability": 0.415771484375}, {"start": 2836.13, "end": 2836.19, "word": " then", "probability": 0.382568359375}, {"start": 2836.19, "end": 2836.37, "word": " create", "probability": 0.6435546875}, {"start": 2836.37, "end": 2837.89, "word": " it.", "probability": 0.7841796875}, {"start": 2838.19, "end": 2838.45, "word": " Let's", "probability": 0.50909423828125}, {"start": 2838.45, "end": 2838.61, "word": " see", "probability": 0.77978515625}, {"start": 2838.61, "end": 2838.73, "word": " how", "probability": 0.84765625}, {"start": 2838.73, "end": 2838.73, "word": " this", "probability": 0.87890625}, {"start": 2838.73, "end": 2838.95, "word": " step", "probability": 0.70703125}, {"start": 2838.95, "end": 2839.39, "word": " will", "probability": 0.490234375}, {"start": 2839.39, "end": 2839.57, "word": " make", "probability": 0.30517578125}, {"start": 2839.57, "end": 2839.63, "word": " a", "probability": 0.80078125}, {"start": 2839.63, "end": 2839.65, "word": " difference.", "probability": 0.85546875}, {"start": 2839.73, "end": 2839.91, "word": " This", "probability": 0.48828125}, {"start": 2839.91, "end": 2839.97, "word": " is", "probability": 0.91650390625}, {"start": 2839.97, "end": 2840.07, "word": " my", "probability": 0.88916015625}, {"start": 2840.07, "end": 2840.39, "word": " application.", "probability": 0.6943359375}, {"start": 2841.33, "end": 2841.69, "word": " The", "probability": 0.5185546875}, {"start": 2841.69, "end": 2841.91, "word": " application", "probability": 0.7841796875}, {"start": 2841.91, "end": 2842.05, "word": " that", "probability": 0.44140625}, {"start": 2842.05, "end": 2842.17, "word": " I", "probability": 0.9736328125}, {"start": 2842.17, "end": 2842.43, "word": " changed", "probability": 0.64697265625}, {"start": 2842.43, "end": 2842.61, "word": " has", "probability": 0.447265625}, {"start": 2842.61, "end": 2842.67, "word": " only", "probability": 0.67724609375}, {"start": 2842.67, "end": 2842.67, "word": " one", "probability": 0.919921875}, {"start": 2842.67, "end": 2842.83, "word": " thing.", "probability": 0.80908203125}], "temperature": 1.0}, {"id": 113, "seek": 286688, "start": 2844.56, "end": 2866.88, "text": " It's exactly the same code and same loop, but now it's saying don't create an image icon, create an image proxy. So it's going to create 5 or 6 image proxies, each one containing only the path of the image. It's not going to load anything on the memory. What is it going to load? When it says in the method update, which appears when I click on the button,", "tokens": [467, 311, 2293, 264, 912, 3089, 293, 912, 6367, 11, 457, 586, 309, 311, 1566, 500, 380, 1884, 364, 3256, 6528, 11, 1884, 364, 3256, 29690, 13, 407, 309, 311, 516, 281, 1884, 1025, 420, 1386, 3256, 447, 87, 530, 11, 1184, 472, 19273, 787, 264, 3100, 295, 264, 3256, 13, 467, 311, 406, 516, 281, 3677, 1340, 322, 264, 4675, 13, 708, 307, 309, 516, 281, 3677, 30, 1133, 309, 1619, 294, 264, 3170, 5623, 11, 597, 7038, 562, 286, 2052, 322, 264, 2960, 11], "avg_logprob": -0.6045258483667483, "compression_ratio": 1.733009708737864, "no_speech_prob": 1.430511474609375e-05, "words": [{"start": 2844.56, "end": 2845.04, "word": " It's", "probability": 0.2230224609375}, {"start": 2845.04, "end": 2845.04, "word": " exactly", "probability": 0.363525390625}, {"start": 2845.04, "end": 2845.5, "word": " the", "probability": 0.87255859375}, {"start": 2845.5, "end": 2845.7, "word": " same", "probability": 0.90771484375}, {"start": 2845.7, "end": 2846.04, "word": " code", "probability": 0.83251953125}, {"start": 2846.04, "end": 2846.6, "word": " and", "probability": 0.6279296875}, {"start": 2846.6, "end": 2846.9, "word": " same", "probability": 0.199951171875}, {"start": 2846.9, "end": 2847.28, "word": " loop,", "probability": 0.92333984375}, {"start": 2847.82, "end": 2848.0, "word": " but", "probability": 0.751953125}, {"start": 2848.0, "end": 2848.26, "word": " now", "probability": 0.452880859375}, {"start": 2848.26, "end": 2848.58, "word": " it's", "probability": 0.3797607421875}, {"start": 2848.58, "end": 2848.58, "word": " saying", "probability": 0.0799560546875}, {"start": 2848.58, "end": 2848.8, "word": " don't", "probability": 0.6134033203125}, {"start": 2848.8, "end": 2849.06, "word": " create", "probability": 0.75}, {"start": 2849.06, "end": 2849.34, "word": " an", "probability": 0.23388671875}, {"start": 2849.34, "end": 2849.48, "word": " image", "probability": 0.85498046875}, {"start": 2849.48, "end": 2849.9, "word": " icon,", "probability": 0.6640625}, {"start": 2849.98, "end": 2850.26, "word": " create", "probability": 0.7060546875}, {"start": 2850.26, "end": 2850.4, "word": " an", "probability": 0.533203125}, {"start": 2850.4, "end": 2851.56, "word": " image", "probability": 0.923828125}, {"start": 2851.56, "end": 2851.94, "word": " proxy.", "probability": 0.9208984375}, {"start": 2852.04, "end": 2852.34, "word": " So", "probability": 0.5009765625}, {"start": 2852.34, "end": 2852.54, "word": " it's", "probability": 0.48974609375}, {"start": 2852.54, "end": 2852.54, "word": " going", "probability": 0.73828125}, {"start": 2852.54, "end": 2852.66, "word": " to", "probability": 0.96435546875}, {"start": 2852.66, "end": 2852.74, "word": " create", "probability": 0.7861328125}, {"start": 2852.74, "end": 2854.24, "word": " 5", "probability": 0.276611328125}, {"start": 2854.24, "end": 2854.48, "word": " or", "probability": 0.41845703125}, {"start": 2854.48, "end": 2854.76, "word": " 6", "probability": 0.99462890625}, {"start": 2854.76, "end": 2855.02, "word": " image", "probability": 0.73828125}, {"start": 2855.02, "end": 2855.64, "word": " proxies,", "probability": 0.9230143229166666}, {"start": 2855.66, "end": 2856.26, "word": " each", "probability": 0.77001953125}, {"start": 2856.26, "end": 2856.44, "word": " one", "probability": 0.5068359375}, {"start": 2856.44, "end": 2856.88, "word": " containing", "probability": 0.11102294921875}, {"start": 2856.88, "end": 2857.22, "word": " only", "probability": 0.5302734375}, {"start": 2857.22, "end": 2857.36, "word": " the", "probability": 0.414306640625}, {"start": 2857.36, "end": 2857.72, "word": " path", "probability": 0.45703125}, {"start": 2857.72, "end": 2858.44, "word": " of", "probability": 0.83056640625}, {"start": 2858.44, "end": 2858.52, "word": " the", "probability": 0.8291015625}, {"start": 2858.52, "end": 2858.74, "word": " image.", "probability": 0.59521484375}, {"start": 2858.88, "end": 2859.08, "word": " It's", "probability": 0.560302734375}, {"start": 2859.08, "end": 2859.08, "word": " not", "probability": 0.9228515625}, {"start": 2859.08, "end": 2859.34, "word": " going", "probability": 0.66748046875}, {"start": 2859.34, "end": 2859.4, "word": " to", "probability": 0.97021484375}, {"start": 2859.4, "end": 2859.4, "word": " load", "probability": 0.51904296875}, {"start": 2859.4, "end": 2859.9, "word": " anything", "probability": 0.7978515625}, {"start": 2859.9, "end": 2860.74, "word": " on", "probability": 0.385009765625}, {"start": 2860.74, "end": 2860.84, "word": " the", "probability": 0.71630859375}, {"start": 2860.84, "end": 2861.08, "word": " memory.", "probability": 0.59716796875}, {"start": 2861.16, "end": 2861.34, "word": " What", "probability": 0.302734375}, {"start": 2861.34, "end": 2861.4, "word": " is", "probability": 0.2281494140625}, {"start": 2861.4, "end": 2861.46, "word": " it", "probability": 0.59619140625}, {"start": 2861.46, "end": 2861.56, "word": " going", "probability": 0.93603515625}, {"start": 2861.56, "end": 2861.56, "word": " to", "probability": 0.9736328125}, {"start": 2861.56, "end": 2862.02, "word": " load?", "probability": 0.9326171875}, {"start": 2862.38, "end": 2862.64, "word": " When", "probability": 0.61181640625}, {"start": 2862.64, "end": 2862.72, "word": " it", "probability": 0.67333984375}, {"start": 2862.72, "end": 2862.94, "word": " says", "probability": 0.5263671875}, {"start": 2862.94, "end": 2863.28, "word": " in", "probability": 0.70263671875}, {"start": 2863.28, "end": 2863.38, "word": " the", "probability": 0.462158203125}, {"start": 2863.38, "end": 2863.6, "word": " method", "probability": 0.671875}, {"start": 2863.6, "end": 2864.04, "word": " update,", "probability": 0.82275390625}, {"start": 2864.5, "end": 2865.42, "word": " which", "probability": 0.6611328125}, {"start": 2865.42, "end": 2865.98, "word": " appears", "probability": 0.058197021484375}, {"start": 2865.98, "end": 2866.18, "word": " when", "probability": 0.88916015625}, {"start": 2866.18, "end": 2866.32, "word": " I", "probability": 0.82275390625}, {"start": 2866.32, "end": 2866.48, "word": " click", "probability": 0.55615234375}, {"start": 2866.48, "end": 2866.68, "word": " on", "probability": 0.779296875}, {"start": 2866.68, "end": 2866.72, "word": " the", "probability": 0.8369140625}, {"start": 2866.72, "end": 2866.88, "word": " button,", "probability": 0.74853515625}], "temperature": 1.0}, {"id": 114, "seek": 289425, "start": 2868.09, "end": 2894.25, "text": " I go to the image label and say set icon and go to images and say get current image. This set icon automatically calls the get image and calls the paint and so on. So when it calls it, if I click on it, it runs it and then it does the paint and gets the width and height and so on. Now, how do I make sure that my code is better? We want to see the time it took. I changed one line, okay? And let's make a run for the program.", "tokens": [286, 352, 281, 264, 3256, 7645, 293, 584, 992, 6528, 293, 352, 281, 5267, 293, 584, 483, 2190, 3256, 13, 639, 992, 6528, 6772, 5498, 264, 483, 3256, 293, 5498, 264, 4225, 293, 370, 322, 13, 407, 562, 309, 5498, 309, 11, 498, 286, 2052, 322, 309, 11, 309, 6676, 309, 293, 550, 309, 775, 264, 4225, 293, 2170, 264, 11402, 293, 6681, 293, 370, 322, 13, 823, 11, 577, 360, 286, 652, 988, 300, 452, 3089, 307, 1101, 30, 492, 528, 281, 536, 264, 565, 309, 1890, 13, 286, 3105, 472, 1622, 11, 1392, 30, 400, 718, 311, 652, 257, 1190, 337, 264, 1461, 13], "avg_logprob": -0.5408878705211889, "compression_ratio": 1.7717842323651452, "no_speech_prob": 1.2695789337158203e-05, "words": [{"start": 2868.0899999999997, "end": 2868.49, "word": " I", "probability": 0.232421875}, {"start": 2868.49, "end": 2868.65, "word": " go", "probability": 0.611328125}, {"start": 2868.65, "end": 2868.79, "word": " to", "probability": 0.9248046875}, {"start": 2868.79, "end": 2868.83, "word": " the", "probability": 0.5498046875}, {"start": 2868.83, "end": 2869.05, "word": " image", "probability": 0.68505859375}, {"start": 2869.05, "end": 2869.29, "word": " label", "probability": 0.90380859375}, {"start": 2869.29, "end": 2869.39, "word": " and", "probability": 0.54638671875}, {"start": 2869.39, "end": 2869.51, "word": " say", "probability": 0.16015625}, {"start": 2869.51, "end": 2869.79, "word": " set", "probability": 0.75830078125}, {"start": 2869.79, "end": 2870.25, "word": " icon", "probability": 0.8134765625}, {"start": 2870.25, "end": 2870.81, "word": " and", "probability": 0.4111328125}, {"start": 2870.81, "end": 2871.05, "word": " go", "probability": 0.164794921875}, {"start": 2871.05, "end": 2871.41, "word": " to", "probability": 0.91357421875}, {"start": 2871.41, "end": 2871.73, "word": " images", "probability": 0.466064453125}, {"start": 2871.73, "end": 2871.87, "word": " and", "probability": 0.80859375}, {"start": 2871.87, "end": 2872.03, "word": " say", "probability": 0.6328125}, {"start": 2872.03, "end": 2872.21, "word": " get", "probability": 0.8935546875}, {"start": 2872.21, "end": 2872.51, "word": " current", "probability": 0.8525390625}, {"start": 2872.51, "end": 2872.83, "word": " image.", "probability": 0.92138671875}, {"start": 2873.39, "end": 2873.67, "word": " This", "probability": 0.52587890625}, {"start": 2873.67, "end": 2873.95, "word": " set", "probability": 0.81103515625}, {"start": 2873.95, "end": 2874.23, "word": " icon", "probability": 0.892578125}, {"start": 2874.23, "end": 2875.23, "word": " automatically", "probability": 0.2861328125}, {"start": 2875.23, "end": 2876.27, "word": " calls", "probability": 0.09515380859375}, {"start": 2876.27, "end": 2876.41, "word": " the", "probability": 0.2386474609375}, {"start": 2876.41, "end": 2876.53, "word": " get", "probability": 0.81005859375}, {"start": 2876.53, "end": 2876.89, "word": " image", "probability": 0.91455078125}, {"start": 2876.89, "end": 2876.99, "word": " and", "probability": 0.72021484375}, {"start": 2876.99, "end": 2877.31, "word": " calls", "probability": 0.60595703125}, {"start": 2877.31, "end": 2877.49, "word": " the", "probability": 0.73291015625}, {"start": 2877.49, "end": 2877.83, "word": " paint", "probability": 0.8232421875}, {"start": 2877.83, "end": 2877.99, "word": " and", "probability": 0.488525390625}, {"start": 2877.99, "end": 2878.19, "word": " so", "probability": 0.60498046875}, {"start": 2878.19, "end": 2878.29, "word": " on.", "probability": 0.84521484375}, {"start": 2878.93, "end": 2879.01, "word": " So", "probability": 0.375244140625}, {"start": 2879.01, "end": 2879.13, "word": " when", "probability": 0.6904296875}, {"start": 2879.13, "end": 2879.23, "word": " it", "probability": 0.74169921875}, {"start": 2879.23, "end": 2879.49, "word": " calls", "probability": 0.72265625}, {"start": 2879.49, "end": 2879.71, "word": " it,", "probability": 0.466796875}, {"start": 2879.71, "end": 2879.87, "word": " if", "probability": 0.35107421875}, {"start": 2879.87, "end": 2879.99, "word": " I", "probability": 0.384521484375}, {"start": 2879.99, "end": 2880.15, "word": " click", "probability": 0.427490234375}, {"start": 2880.15, "end": 2880.17, "word": " on", "probability": 0.484375}, {"start": 2880.17, "end": 2880.45, "word": " it,", "probability": 0.80419921875}, {"start": 2880.59, "end": 2880.71, "word": " it", "probability": 0.86083984375}, {"start": 2880.71, "end": 2880.99, "word": " runs", "probability": 0.09429931640625}, {"start": 2880.99, "end": 2881.19, "word": " it", "probability": 0.61328125}, {"start": 2881.19, "end": 2881.29, "word": " and", "probability": 0.6181640625}, {"start": 2881.29, "end": 2881.67, "word": " then", "probability": 0.7041015625}, {"start": 2881.67, "end": 2882.41, "word": " it", "probability": 0.453369140625}, {"start": 2882.41, "end": 2882.57, "word": " does", "probability": 0.294189453125}, {"start": 2882.57, "end": 2882.75, "word": " the", "probability": 0.494873046875}, {"start": 2882.75, "end": 2883.03, "word": " paint", "probability": 0.87060546875}, {"start": 2883.03, "end": 2883.23, "word": " and", "probability": 0.740234375}, {"start": 2883.23, "end": 2883.39, "word": " gets", "probability": 0.28369140625}, {"start": 2883.39, "end": 2883.55, "word": " the", "probability": 0.8896484375}, {"start": 2883.55, "end": 2883.77, "word": " width", "probability": 0.900390625}, {"start": 2883.77, "end": 2883.97, "word": " and", "probability": 0.791015625}, {"start": 2883.97, "end": 2884.15, "word": " height", "probability": 0.8583984375}, {"start": 2884.15, "end": 2884.27, "word": " and", "probability": 0.75439453125}, {"start": 2884.27, "end": 2884.35, "word": " so", "probability": 0.56982421875}, {"start": 2884.35, "end": 2884.47, "word": " on.", "probability": 0.9326171875}, {"start": 2885.55, "end": 2885.83, "word": " Now,", "probability": 0.60595703125}, {"start": 2885.93, "end": 2886.43, "word": " how", "probability": 0.309326171875}, {"start": 2886.43, "end": 2886.49, "word": " do", "probability": 0.468017578125}, {"start": 2886.49, "end": 2886.57, "word": " I", "probability": 0.3154296875}, {"start": 2886.57, "end": 2886.83, "word": " make", "probability": 0.79931640625}, {"start": 2886.83, "end": 2886.97, "word": " sure", "probability": 0.89990234375}, {"start": 2886.97, "end": 2887.07, "word": " that", "probability": 0.5341796875}, {"start": 2887.07, "end": 2887.15, "word": " my", "probability": 0.6591796875}, {"start": 2887.15, "end": 2887.33, "word": " code", "probability": 0.94580078125}, {"start": 2887.33, "end": 2887.69, "word": " is", "probability": 0.55859375}, {"start": 2887.69, "end": 2888.01, "word": " better?", "probability": 0.7763671875}, {"start": 2888.91, "end": 2889.31, "word": " We", "probability": 0.82373046875}, {"start": 2889.31, "end": 2889.43, "word": " want", "probability": 0.447509765625}, {"start": 2889.43, "end": 2889.49, "word": " to", "probability": 0.97216796875}, {"start": 2889.49, "end": 2889.63, "word": " see", "probability": 0.6181640625}, {"start": 2889.63, "end": 2889.73, "word": " the", "probability": 0.74462890625}, {"start": 2889.73, "end": 2889.95, "word": " time", "probability": 0.2366943359375}, {"start": 2889.95, "end": 2890.11, "word": " it", "probability": 0.576171875}, {"start": 2890.11, "end": 2890.31, "word": " took.", "probability": 0.7919921875}, {"start": 2890.45, "end": 2890.83, "word": " I", "probability": 0.98095703125}, {"start": 2890.83, "end": 2891.07, "word": " changed", "probability": 0.82861328125}, {"start": 2891.07, "end": 2891.59, "word": " one", "probability": 0.62744140625}, {"start": 2891.59, "end": 2891.59, "word": " line,", "probability": 0.85595703125}, {"start": 2892.21, "end": 2892.39, "word": " okay?", "probability": 0.57763671875}, {"start": 2892.55, "end": 2892.71, "word": " And", "probability": 0.73486328125}, {"start": 2892.71, "end": 2892.91, "word": " let's", "probability": 0.6951904296875}, {"start": 2892.91, "end": 2893.15, "word": " make", "probability": 0.30078125}, {"start": 2893.15, "end": 2893.19, "word": " a", "probability": 0.736328125}, {"start": 2893.19, "end": 2893.37, "word": " run", "probability": 0.9052734375}, {"start": 2893.37, "end": 2893.69, "word": " for", "probability": 0.58154296875}, {"start": 2893.69, "end": 2893.83, "word": " the", "probability": 0.8828125}, {"start": 2893.83, "end": 2894.25, "word": " program.", "probability": 0.88037109375}], "temperature": 1.0}, {"id": 115, "seek": 291987, "start": 2896.11, "end": 2919.87, "text": " Let's see if I found the code that gave me 1.44 milliseconds. It was 300 milliseconds. 300 became 1.44 because I did not load the image on my memory. It is just to put the lines. When do you load the image? At the moment when you press the next button and the previous button only.", "tokens": [961, 311, 536, 498, 286, 1352, 264, 3089, 300, 2729, 385, 502, 13, 13912, 34184, 13, 467, 390, 6641, 34184, 13, 6641, 3062, 502, 13, 13912, 570, 286, 630, 406, 3677, 264, 3256, 322, 452, 4675, 13, 467, 307, 445, 281, 829, 264, 3876, 13, 1133, 360, 291, 3677, 264, 3256, 30, 1711, 264, 1623, 562, 291, 1886, 264, 958, 2960, 293, 264, 3894, 2960, 787, 13], "avg_logprob": -0.6603860399302315, "compression_ratio": 1.6022727272727273, "no_speech_prob": 1.0132789611816406e-05, "words": [{"start": 2896.11, "end": 2896.59, "word": " Let's", "probability": 0.4915771484375}, {"start": 2896.59, "end": 2896.75, "word": " see", "probability": 0.59375}, {"start": 2896.75, "end": 2896.85, "word": " if", "probability": 0.320068359375}, {"start": 2896.85, "end": 2897.05, "word": " I", "probability": 0.396728515625}, {"start": 2897.05, "end": 2897.05, "word": " found", "probability": 0.2626953125}, {"start": 2897.05, "end": 2897.21, "word": " the", "probability": 0.734375}, {"start": 2897.21, "end": 2897.45, "word": " code", "probability": 0.8212890625}, {"start": 2897.45, "end": 2897.57, "word": " that", "probability": 0.451416015625}, {"start": 2897.57, "end": 2897.85, "word": " gave", "probability": 0.08990478515625}, {"start": 2897.85, "end": 2898.27, "word": " me", "probability": 0.81884765625}, {"start": 2898.27, "end": 2899.81, "word": " 1", "probability": 0.2347412109375}, {"start": 2899.81, "end": 2901.25, "word": ".44", "probability": 0.9560546875}, {"start": 2901.25, "end": 2902.83, "word": " milliseconds.", "probability": 0.311279296875}, {"start": 2903.53, "end": 2904.01, "word": " It", "probability": 0.44873046875}, {"start": 2904.01, "end": 2904.09, "word": " was", "probability": 0.73974609375}, {"start": 2904.09, "end": 2904.93, "word": " 300", "probability": 0.6904296875}, {"start": 2904.93, "end": 2905.65, "word": " milliseconds.", "probability": 0.68896484375}, {"start": 2905.77, "end": 2906.11, "word": " 300", "probability": 0.49462890625}, {"start": 2906.11, "end": 2906.43, "word": " became", "probability": 0.1729736328125}, {"start": 2906.43, "end": 2906.69, "word": " 1", "probability": 0.9873046875}, {"start": 2906.69, "end": 2907.99, "word": ".44", "probability": 0.98486328125}, {"start": 2907.99, "end": 2908.23, "word": " because", "probability": 0.18115234375}, {"start": 2908.23, "end": 2908.57, "word": " I", "probability": 0.64794921875}, {"start": 2908.57, "end": 2908.69, "word": " did", "probability": 0.37890625}, {"start": 2908.69, "end": 2908.69, "word": " not", "probability": 0.94140625}, {"start": 2908.69, "end": 2908.89, "word": " load", "probability": 0.40869140625}, {"start": 2908.89, "end": 2909.09, "word": " the", "probability": 0.72314453125}, {"start": 2909.09, "end": 2909.21, "word": " image", "probability": 0.467529296875}, {"start": 2909.21, "end": 2909.33, "word": " on", "probability": 0.50537109375}, {"start": 2909.33, "end": 2909.41, "word": " my", "probability": 0.3896484375}, {"start": 2909.41, "end": 2909.65, "word": " memory.", "probability": 0.623046875}, {"start": 2910.61, "end": 2911.09, "word": " It", "probability": 0.42822265625}, {"start": 2911.09, "end": 2911.23, "word": " is", "probability": 0.46533203125}, {"start": 2911.23, "end": 2911.49, "word": " just", "probability": 0.374755859375}, {"start": 2911.49, "end": 2911.61, "word": " to", "probability": 0.132568359375}, {"start": 2911.61, "end": 2911.77, "word": " put", "probability": 0.272216796875}, {"start": 2911.77, "end": 2911.87, "word": " the", "probability": 0.6044921875}, {"start": 2911.87, "end": 2912.19, "word": " lines.", "probability": 0.22607421875}, {"start": 2913.91, "end": 2914.39, "word": " When", "probability": 0.76025390625}, {"start": 2914.39, "end": 2914.85, "word": " do", "probability": 0.33251953125}, {"start": 2914.85, "end": 2914.85, "word": " you", "probability": 0.92578125}, {"start": 2914.85, "end": 2915.27, "word": " load", "probability": 0.85498046875}, {"start": 2915.27, "end": 2915.45, "word": " the", "probability": 0.82470703125}, {"start": 2915.45, "end": 2915.73, "word": " image?", "probability": 0.8701171875}, {"start": 2916.19, "end": 2916.67, "word": " At", "probability": 0.272705078125}, {"start": 2916.67, "end": 2916.75, "word": " the", "probability": 0.91845703125}, {"start": 2916.75, "end": 2916.93, "word": " moment", "probability": 0.94140625}, {"start": 2916.93, "end": 2917.15, "word": " when", "probability": 0.5322265625}, {"start": 2917.15, "end": 2917.27, "word": " you", "probability": 0.9306640625}, {"start": 2917.27, "end": 2917.49, "word": " press", "probability": 0.53173828125}, {"start": 2917.49, "end": 2918.31, "word": " the", "probability": 0.410400390625}, {"start": 2918.31, "end": 2918.83, "word": " next", "probability": 0.57666015625}, {"start": 2918.83, "end": 2918.91, "word": " button", "probability": 0.59521484375}, {"start": 2918.91, "end": 2919.07, "word": " and", "probability": 0.6142578125}, {"start": 2919.07, "end": 2919.17, "word": " the", "probability": 0.36083984375}, {"start": 2919.17, "end": 2919.49, "word": " previous", "probability": 0.876953125}, {"start": 2919.49, "end": 2919.59, "word": " button", "probability": 0.423828125}, {"start": 2919.59, "end": 2919.87, "word": " only.", "probability": 0.72509765625}], "temperature": 1.0}, {"id": 116, "seek": 294703, "start": 2920.81, "end": 2947.03, "text": " it will run because the two buttons are not visible this is for example next it shows the second picture and the third picture it is actually now with each next it executes the method which is draw or get image if it returns null it creates and then it says get image so the picture is actually loaded only during drawing this is an example that shows me the proxy", "tokens": [309, 486, 1190, 570, 264, 732, 9905, 366, 406, 8974, 341, 307, 337, 1365, 958, 309, 3110, 264, 1150, 3036, 293, 264, 2636, 3036, 309, 307, 767, 586, 365, 1184, 958, 309, 4454, 1819, 264, 3170, 597, 307, 2642, 420, 483, 3256, 498, 309, 11247, 18184, 309, 7829, 293, 550, 309, 1619, 483, 3256, 370, 264, 3036, 307, 767, 13210, 787, 1830, 6316, 341, 307, 364, 1365, 300, 3110, 385, 264, 29690], "avg_logprob": -0.6699486170729546, "compression_ratio": 1.8341708542713568, "no_speech_prob": 1.0848045349121094e-05, "words": [{"start": 2920.81, "end": 2921.33, "word": " it", "probability": 0.1800537109375}, {"start": 2921.33, "end": 2921.49, "word": " will", "probability": 0.2005615234375}, {"start": 2921.49, "end": 2921.99, "word": " run", "probability": 0.42578125}, {"start": 2921.99, "end": 2922.77, "word": " because", "probability": 0.27392578125}, {"start": 2922.77, "end": 2923.01, "word": " the", "probability": 0.400146484375}, {"start": 2923.01, "end": 2923.25, "word": " two", "probability": 0.4326171875}, {"start": 2923.25, "end": 2923.25, "word": " buttons", "probability": 0.77587890625}, {"start": 2923.25, "end": 2923.41, "word": " are", "probability": 0.59521484375}, {"start": 2923.41, "end": 2923.41, "word": " not", "probability": 0.69921875}, {"start": 2923.41, "end": 2923.75, "word": " visible", "probability": 0.59619140625}, {"start": 2923.75, "end": 2925.73, "word": " this", "probability": 0.1929931640625}, {"start": 2925.73, "end": 2925.83, "word": " is", "probability": 0.7919921875}, {"start": 2925.83, "end": 2925.97, "word": " for", "probability": 0.386962890625}, {"start": 2925.97, "end": 2926.07, "word": " example", "probability": 0.93896484375}, {"start": 2926.07, "end": 2926.43, "word": " next", "probability": 0.442138671875}, {"start": 2926.43, "end": 2927.11, "word": " it", "probability": 0.1710205078125}, {"start": 2927.11, "end": 2927.27, "word": " shows", "probability": 0.444091796875}, {"start": 2927.27, "end": 2927.43, "word": " the", "probability": 0.701171875}, {"start": 2927.43, "end": 2927.93, "word": " second", "probability": 0.78466796875}, {"start": 2927.93, "end": 2928.03, "word": " picture", "probability": 0.2171630859375}, {"start": 2928.03, "end": 2928.47, "word": " and", "probability": 0.8212890625}, {"start": 2928.47, "end": 2928.61, "word": " the", "probability": 0.70703125}, {"start": 2928.61, "end": 2928.79, "word": " third", "probability": 0.923828125}, {"start": 2928.79, "end": 2928.87, "word": " picture", "probability": 0.417236328125}, {"start": 2928.87, "end": 2928.99, "word": " it", "probability": 0.32421875}, {"start": 2928.99, "end": 2929.05, "word": " is", "probability": 0.228759765625}, {"start": 2929.05, "end": 2929.45, "word": " actually", "probability": 0.31298828125}, {"start": 2929.45, "end": 2929.81, "word": " now", "probability": 0.241455078125}, {"start": 2929.81, "end": 2930.11, "word": " with", "probability": 0.302734375}, {"start": 2930.11, "end": 2930.37, "word": " each", "probability": 0.56689453125}, {"start": 2930.37, "end": 2930.79, "word": " next", "probability": 0.78173828125}, {"start": 2930.79, "end": 2932.65, "word": " it", "probability": 0.493408203125}, {"start": 2932.65, "end": 2933.79, "word": " executes", "probability": 0.6578369140625}, {"start": 2933.79, "end": 2933.95, "word": " the", "probability": 0.7939453125}, {"start": 2933.95, "end": 2934.23, "word": " method", "probability": 0.88134765625}, {"start": 2934.23, "end": 2934.37, "word": " which", "probability": 0.3828125}, {"start": 2934.37, "end": 2934.51, "word": " is", "probability": 0.92236328125}, {"start": 2934.51, "end": 2934.79, "word": " draw", "probability": 0.6943359375}, {"start": 2934.79, "end": 2935.51, "word": " or", "probability": 0.8056640625}, {"start": 2935.51, "end": 2936.11, "word": " get", "probability": 0.966796875}, {"start": 2936.11, "end": 2936.51, "word": " image", "probability": 0.74951171875}, {"start": 2936.51, "end": 2937.61, "word": " if", "probability": 0.69287109375}, {"start": 2937.61, "end": 2937.69, "word": " it", "probability": 0.300537109375}, {"start": 2937.69, "end": 2937.83, "word": " returns", "probability": 0.414794921875}, {"start": 2937.83, "end": 2938.09, "word": " null", "probability": 0.89599609375}, {"start": 2938.09, "end": 2938.35, "word": " it", "probability": 0.5166015625}, {"start": 2938.35, "end": 2938.45, "word": " creates", "probability": 0.2235107421875}, {"start": 2938.45, "end": 2938.67, "word": " and", "probability": 0.4658203125}, {"start": 2938.67, "end": 2938.87, "word": " then", "probability": 0.6064453125}, {"start": 2938.87, "end": 2938.93, "word": " it", "probability": 0.38134765625}, {"start": 2938.93, "end": 2939.09, "word": " says", "probability": 0.40966796875}, {"start": 2939.09, "end": 2939.31, "word": " get", "probability": 0.91455078125}, {"start": 2939.31, "end": 2939.63, "word": " image", "probability": 0.87890625}, {"start": 2939.63, "end": 2940.65, "word": " so", "probability": 0.427490234375}, {"start": 2940.65, "end": 2940.99, "word": " the", "probability": 0.29931640625}, {"start": 2940.99, "end": 2940.99, "word": " picture", "probability": 0.62109375}, {"start": 2940.99, "end": 2940.99, "word": " is", "probability": 0.37353515625}, {"start": 2940.99, "end": 2940.99, "word": " actually", "probability": 0.583984375}, {"start": 2940.99, "end": 2941.65, "word": " loaded", "probability": 0.403564453125}, {"start": 2941.65, "end": 2942.43, "word": " only", "probability": 0.347412109375}, {"start": 2942.43, "end": 2942.97, "word": " during", "probability": 0.6298828125}, {"start": 2942.97, "end": 2944.05, "word": " drawing", "probability": 0.72705078125}, {"start": 2944.05, "end": 2944.91, "word": " this", "probability": 0.57763671875}, {"start": 2944.91, "end": 2944.99, "word": " is", "probability": 0.481201171875}, {"start": 2944.99, "end": 2945.41, "word": " an", "probability": 0.87255859375}, {"start": 2945.41, "end": 2945.41, "word": " example", "probability": 0.97509765625}, {"start": 2945.41, "end": 2946.09, "word": " that", "probability": 0.52197265625}, {"start": 2946.09, "end": 2946.31, "word": " shows", "probability": 0.253662109375}, {"start": 2946.31, "end": 2946.53, "word": " me", "probability": 0.67919921875}, {"start": 2946.53, "end": 2946.63, "word": " the", "probability": 0.75}, {"start": 2946.63, "end": 2947.03, "word": " proxy", "probability": 0.95361328125}], "temperature": 1.0}, {"id": 117, "seek": 297020, "start": 2947.8, "end": 2970.2, "text": "Pattern, which is exactly the same as the decorator. It is a decorator pattern. An object wraps another object. But its purpose is different. The decorator was an addition of functionality. This is a control for the object that I wrap. For example, to delay certain things or to change the methods available in a certain way.", "tokens": [47, 1161, 77, 11, 597, 307, 2293, 264, 912, 382, 264, 7919, 1639, 13, 467, 307, 257, 7919, 1639, 5102, 13, 1107, 2657, 25831, 1071, 2657, 13, 583, 1080, 4334, 307, 819, 13, 440, 7919, 1639, 390, 364, 4500, 295, 14980, 13, 639, 307, 257, 1969, 337, 264, 2657, 300, 286, 7019, 13, 1171, 1365, 11, 281, 8577, 1629, 721, 420, 281, 1319, 264, 7150, 2435, 294, 257, 1629, 636, 13], "avg_logprob": -0.5468750049670538, "compression_ratio": 1.5853658536585367, "no_speech_prob": 0.00015676021575927734, "words": [{"start": 2947.8, "end": 2948.36, "word": "Pattern,", "probability": 0.6592610677083334}, {"start": 2948.5, "end": 2948.54, "word": " which", "probability": 0.728515625}, {"start": 2948.54, "end": 2948.68, "word": " is", "probability": 0.72412109375}, {"start": 2948.68, "end": 2949.08, "word": " exactly", "probability": 0.17041015625}, {"start": 2949.08, "end": 2949.52, "word": " the", "probability": 0.2197265625}, {"start": 2949.52, "end": 2949.72, "word": " same", "probability": 0.798828125}, {"start": 2949.72, "end": 2949.96, "word": " as", "probability": 0.77490234375}, {"start": 2949.96, "end": 2950.1, "word": " the", "probability": 0.52392578125}, {"start": 2950.1, "end": 2950.56, "word": " decorator.", "probability": 0.87158203125}, {"start": 2951.4, "end": 2951.72, "word": " It", "probability": 0.5791015625}, {"start": 2951.72, "end": 2951.82, "word": " is", "probability": 0.50390625}, {"start": 2951.82, "end": 2951.94, "word": " a", "probability": 0.479736328125}, {"start": 2951.94, "end": 2952.34, "word": " decorator", "probability": 0.925048828125}, {"start": 2952.34, "end": 2952.7, "word": " pattern.", "probability": 0.90234375}, {"start": 2953.08, "end": 2953.5, "word": " An", "probability": 0.43212890625}, {"start": 2953.5, "end": 2953.76, "word": " object", "probability": 0.97021484375}, {"start": 2953.76, "end": 2954.06, "word": " wraps", "probability": 0.46923828125}, {"start": 2954.06, "end": 2954.2, "word": " another", "probability": 0.72021484375}, {"start": 2954.2, "end": 2954.5, "word": " object.", "probability": 0.96826171875}, {"start": 2954.78, "end": 2954.86, "word": " But", "probability": 0.66552734375}, {"start": 2954.86, "end": 2954.96, "word": " its", "probability": 0.38232421875}, {"start": 2954.96, "end": 2955.18, "word": " purpose", "probability": 0.5439453125}, {"start": 2955.18, "end": 2955.74, "word": " is", "probability": 0.9072265625}, {"start": 2955.74, "end": 2956.1, "word": " different.", "probability": 0.86279296875}, {"start": 2956.54, "end": 2956.64, "word": " The", "probability": 0.64697265625}, {"start": 2956.64, "end": 2957.1, "word": " decorator", "probability": 0.98193359375}, {"start": 2957.1, "end": 2957.34, "word": " was", "probability": 0.3271484375}, {"start": 2957.34, "end": 2957.64, "word": " an", "probability": 0.343017578125}, {"start": 2957.64, "end": 2957.64, "word": " addition", "probability": 0.7939453125}, {"start": 2957.64, "end": 2957.82, "word": " of", "probability": 0.798828125}, {"start": 2957.82, "end": 2958.48, "word": " functionality.", "probability": 0.80810546875}, {"start": 2959.02, "end": 2959.28, "word": " This", "probability": 0.50390625}, {"start": 2959.28, "end": 2959.6, "word": " is", "probability": 0.6328125}, {"start": 2959.6, "end": 2961.4, "word": " a", "probability": 0.47607421875}, {"start": 2961.4, "end": 2961.88, "word": " control", "probability": 0.81640625}, {"start": 2961.88, "end": 2962.64, "word": " for", "probability": 0.332275390625}, {"start": 2962.64, "end": 2962.9, "word": " the", "probability": 0.876953125}, {"start": 2962.9, "end": 2963.18, "word": " object", "probability": 0.90966796875}, {"start": 2963.18, "end": 2963.32, "word": " that", "probability": 0.4912109375}, {"start": 2963.32, "end": 2963.48, "word": " I", "probability": 0.939453125}, {"start": 2963.48, "end": 2963.74, "word": " wrap.", "probability": 0.63330078125}, {"start": 2964.28, "end": 2964.5, "word": " For", "probability": 0.5234375}, {"start": 2964.5, "end": 2964.86, "word": " example,", "probability": 0.86279296875}, {"start": 2964.96, "end": 2965.04, "word": " to", "probability": 0.580078125}, {"start": 2965.04, "end": 2965.3, "word": " delay", "probability": 0.5673828125}, {"start": 2965.3, "end": 2965.78, "word": " certain", "probability": 0.76416015625}, {"start": 2965.78, "end": 2965.98, "word": " things", "probability": 0.72265625}, {"start": 2965.98, "end": 2966.66, "word": " or", "probability": 0.7509765625}, {"start": 2966.66, "end": 2967.16, "word": " to", "probability": 0.37158203125}, {"start": 2967.16, "end": 2967.46, "word": " change", "probability": 0.7890625}, {"start": 2967.46, "end": 2967.7, "word": " the", "probability": 0.62744140625}, {"start": 2967.7, "end": 2968.76, "word": " methods", "probability": 0.322998046875}, {"start": 2968.76, "end": 2969.3, "word": " available", "probability": 0.2315673828125}, {"start": 2969.3, "end": 2969.46, "word": " in", "probability": 0.4599609375}, {"start": 2969.46, "end": 2969.62, "word": " a", "probability": 0.6826171875}, {"start": 2969.62, "end": 2969.66, "word": " certain", "probability": 0.578125}, {"start": 2969.66, "end": 2970.2, "word": " way.", "probability": 0.92041015625}], "temperature": 1.0}, {"id": 118, "seek": 298572, "start": 2971.94, "end": 2985.72, "text": "This is an example that we explained about proxy pattern, next time we will continue to read the explanation of proxy pattern and we will see a new design pattern Do you have any questions guys? Thank you", "tokens": [5723, 307, 364, 1365, 300, 321, 8825, 466, 29690, 5102, 11, 958, 565, 321, 486, 2354, 281, 1401, 264, 10835, 295, 29690, 5102, 293, 321, 486, 536, 257, 777, 1715, 5102, 1144, 291, 362, 604, 1651, 1074, 30, 1044, 291], "avg_logprob": -0.6048018176381181, "compression_ratio": 1.4676258992805755, "no_speech_prob": 8.404254913330078e-06, "words": [{"start": 2971.94, "end": 2972.24, "word": "This", "probability": 0.32861328125}, {"start": 2972.24, "end": 2972.3, "word": " is", "probability": 0.4697265625}, {"start": 2972.3, "end": 2972.56, "word": " an", "probability": 0.66552734375}, {"start": 2972.56, "end": 2972.56, "word": " example", "probability": 0.97705078125}, {"start": 2972.56, "end": 2972.66, "word": " that", "probability": 0.343994140625}, {"start": 2972.66, "end": 2972.68, "word": " we", "probability": 0.7138671875}, {"start": 2972.68, "end": 2973.02, "word": " explained", "probability": 0.1978759765625}, {"start": 2973.02, "end": 2973.28, "word": " about", "probability": 0.52490234375}, {"start": 2973.28, "end": 2973.64, "word": " proxy", "probability": 0.8564453125}, {"start": 2973.64, "end": 2973.94, "word": " pattern,", "probability": 0.5771484375}, {"start": 2974.02, "end": 2974.1, "word": " next", "probability": 0.61083984375}, {"start": 2974.1, "end": 2974.34, "word": " time", "probability": 0.8203125}, {"start": 2974.34, "end": 2974.76, "word": " we", "probability": 0.81689453125}, {"start": 2974.76, "end": 2974.78, "word": " will", "probability": 0.7685546875}, {"start": 2974.78, "end": 2975.24, "word": " continue", "probability": 0.55615234375}, {"start": 2975.24, "end": 2975.52, "word": " to", "probability": 0.216552734375}, {"start": 2975.52, "end": 2975.78, "word": " read", "probability": 0.54052734375}, {"start": 2975.78, "end": 2976.28, "word": " the", "probability": 0.392578125}, {"start": 2976.28, "end": 2977.14, "word": " explanation", "probability": 0.53466796875}, {"start": 2977.14, "end": 2977.36, "word": " of", "probability": 0.432373046875}, {"start": 2977.36, "end": 2977.7, "word": " proxy", "probability": 0.830078125}, {"start": 2977.7, "end": 2978.16, "word": " pattern", "probability": 0.81787109375}, {"start": 2978.16, "end": 2979.02, "word": " and", "probability": 0.297119140625}, {"start": 2979.02, "end": 2979.02, "word": " we", "probability": 0.367919921875}, {"start": 2979.02, "end": 2979.36, "word": " will", "probability": 0.80078125}, {"start": 2979.36, "end": 2979.46, "word": " see", "probability": 0.73779296875}, {"start": 2979.46, "end": 2979.9, "word": " a", "probability": 0.55712890625}, {"start": 2979.9, "end": 2979.96, "word": " new", "probability": 0.8525390625}, {"start": 2979.96, "end": 2980.2, "word": " design", "probability": 0.6630859375}, {"start": 2980.2, "end": 2981.26, "word": " pattern", "probability": 0.8876953125}, {"start": 2981.26, "end": 2981.68, "word": " Do", "probability": 0.13037109375}, {"start": 2981.68, "end": 2982.36, "word": " you", "probability": 0.9111328125}, {"start": 2982.36, "end": 2982.36, "word": " have", "probability": 0.85791015625}, {"start": 2982.36, "end": 2982.5, "word": " any", "probability": 0.86376953125}, {"start": 2982.5, "end": 2982.74, "word": " questions", "probability": 0.45703125}, {"start": 2982.74, "end": 2983.16, "word": " guys?", "probability": 0.439453125}, {"start": 2985.0, "end": 2985.6, "word": " Thank", "probability": 0.3193359375}, {"start": 2985.6, "end": 2985.72, "word": " you", "probability": 0.921875}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2986.063, "duration_after_vad": 2869.1006249999896} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/NVgnPaSjKJs_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/NVgnPaSjKJs_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..47812b64e2bdbed78a93894cc438ff69e128ffd4 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/NVgnPaSjKJs_raw.srt @@ -0,0 +1,3372 @@ +1 +00:00:05,160 --> 00:00:09,520 +طب يا جماعة السلام عليكم اليوم ان شاء الله يا + +2 +00:00:09,520 --> 00:00:13,460 +جماعة هنكمل ما تبقى من موضوع ال decorator pattern + +3 +00:00:13,460 --> 00:00:16,560 +ونبدأ ان شاء الله ب design pattern جديد اللى هو ال + +4 +00:00:16,560 --> 00:00:22,050 +proxy pattern Let's remind ourselves about the + +5 +00:00:22,050 --> 00:00:25,570 +decorator pattern We said that if I have any class + +6 +00:00:25,570 --> 00:00:28,670 +and I want to add a new functionality to it, I + +7 +00:00:28,670 --> 00:00:31,090 +have two ways The traditional way that we are used + +8 +00:00:31,090 --> 00:00:34,170 +to is the inheritance or subclassing way That is, + +9 +00:00:34,170 --> 00:00:36,050 +if a class wants to add new things to it, it will + +10 +00:00:36,050 --> 00:00:39,350 +extend it and add additional things to it And this + +11 +00:00:39,350 --> 00:00:42,250 +means that you don't need to rewrite the previous + +12 +00:00:42,250 --> 00:00:44,970 +things again, you only focus on the additional + +13 +00:00:44,970 --> 00:00:48,450 +thingsBut let's say that the way of subclassing is + +14 +00:00:48,450 --> 00:00:51,970 +sometimes negative and produces explosion of + +15 +00:00:51,970 --> 00:00:57,970 +classes For example, let's say I have three + +16 +00:00:57,970 --> 00:01:00,450 +classes A,B,C I want to add functionality to these + +17 +00:01:00,450 --> 00:01:04,130 +three classes So you need to create three + +18 +00:01:04,130 --> 00:01:07,370 +subclasses to add functionality to these three + +19 +00:01:07,370 --> 00:01:11,190 +classes If you have two functionalities and you + +20 +00:01:11,190 --> 00:01:13,970 +want to add them to these three classes it means + +21 +00:01:13,970 --> 00:01:16,530 +that from each class you can make two subclasses + +22 +00:01:16,530 --> 00:01:19,190 +to add the first functionality or to add the + +23 +00:01:19,190 --> 00:01:22,490 +second functionality and see for example that if I + +24 +00:01:22,490 --> 00:01:25,210 +have shapes in the example given in the previous + +25 +00:01:25,210 --> 00:01:28,170 +lecture circle, rectangle and I want to add a + +26 +00:01:28,170 --> 00:01:31,590 +border to these shapes the traditional way is that + +27 +00:01:31,590 --> 00:01:34,510 +first we make a circle with border and you will + +28 +00:01:34,510 --> 00:01:36,690 +have to make another class called rectangle with + +29 +00:01:36,690 --> 00:01:40,010 +border this is using subclassing but we say that + +30 +00:01:40,010 --> 00:01:43,680 +the best way is to use the decoratorIt's the idea + +31 +00:01:43,680 --> 00:01:46,780 +that I'm making a class that encloses another + +32 +00:01:46,780 --> 00:01:50,640 +class The idea of the decorator is that I have + +33 +00:01:50,640 --> 00:01:54,120 +this class that I want to add something new to it + +34 +00:01:54,120 --> 00:01:59,460 +Actually, I create another class, this is the + +35 +00:01:59,460 --> 00:02:03,520 +decorator It encloses an object from the class + +36 +00:02:03,520 --> 00:02:06,420 +that I want to add something new to it For + +37 +00:02:06,420 --> 00:02:10,620 +example, this class or object has methods x and y + +38 +00:02:12,520 --> 00:02:16,120 +I will add a new method, all that I need to do is + +39 +00:02:16,120 --> 00:02:19,920 +to do here in this envelope, here there is x and y + +40 +00:02:19,920 --> 00:02:25,100 +I will add a new method, I will create a class + +41 +00:02:25,100 --> 00:02:30,080 +decorator containing an object inside it and here + +42 +00:02:30,080 --> 00:02:32,760 +I will add the new method to z and of course you + +43 +00:02:32,760 --> 00:02:37,690 +have to put here x and y to direct and this is the + +44 +00:02:37,690 --> 00:02:40,450 +negativity of the decorator because all the + +45 +00:02:40,450 --> 00:02:43,070 +methods inside must be done outside so that the + +46 +00:02:43,070 --> 00:02:46,610 +client sees the decorator as he sees the object + +47 +00:02:46,610 --> 00:02:50,850 +inside it wants to modify a certain method from + +48 +00:02:50,850 --> 00:02:54,450 +these you overwrite it, you add the extra code and + +49 +00:02:54,450 --> 00:02:57,150 +then you close the method inside and this is what + +50 +00:02:57,150 --> 00:03:00,130 +we did when we added a border to the circle + +51 +00:03:05,710 --> 00:03:11,130 +we created a class named border class border I + +52 +00:03:11,130 --> 00:03:14,390 +made it to implement I shape and I remove the + +53 +00:03:14,390 --> 00:03:17,090 +object from I shape why did I make it to take the + +54 +00:03:17,090 --> 00:03:19,190 +type of I shape? so that the client sees it as he + +55 +00:03:19,190 --> 00:03:21,950 +sees the circle and rectangle actually this border + +56 +00:03:21,950 --> 00:03:25,450 +is not a border to itself it is a border to a + +57 +00:03:25,450 --> 00:03:29,630 +shape in the end, the result is a new shape that + +58 +00:03:29,630 --> 00:03:34,560 +has a frame it wraps a shape So I'm actually + +59 +00:03:34,560 --> 00:03:39,000 +passing shape to it, and look here, the shape has + +60 +00:03:39,000 --> 00:03:41,040 +a draw method, you have to write it here, we wrote + +61 +00:03:41,040 --> 00:03:43,580 +the draw, and the shape has a describe method, we + +62 +00:03:43,580 --> 00:03:46,300 +also wrote the method describe, but inside it we + +63 +00:03:46,300 --> 00:03:50,680 +say shape.describe and the draw follows methods or + +64 +00:03:50,680 --> 00:03:52,480 +additional code, which is a personal border, then + +65 +00:03:52,480 --> 00:03:56,180 +we say shape.draw So this is a way to add + +66 +00:03:56,180 --> 00:04:00,300 +functionality using the decoratorIt has a + +67 +00:04:00,300 --> 00:04:02,360 +disadvantage that you will have to rewrite the + +68 +00:04:02,360 --> 00:04:06,300 +methods inside the object here and modify them or + +69 +00:04:06,300 --> 00:04:09,420 +redirect them to the methods inside it But its + +70 +00:04:09,420 --> 00:04:13,740 +advantage is that this decorator, for example the + +71 +00:04:13,740 --> 00:04:16,520 +border here, takes an object from it as a shape + +72 +00:04:18,020 --> 00:04:20,600 +Correct or not, guys? It means that it takes an + +73 +00:04:20,600 --> 00:04:22,820 +object from it and shapes it. It means that I can + +74 +00:04:22,820 --> 00:04:26,440 +give it a circle or a rectangle or any additional + +75 +00:04:26,440 --> 00:04:28,660 +shape that I want to give it. Because I want to + +76 +00:04:28,660 --> 00:04:32,060 +add a border to any shape that I have. So, if I + +77 +00:04:32,060 --> 00:04:35,200 +have 5 shapes and I want to add a border to all of + +78 +00:04:35,200 --> 00:04:38,780 +them, I actually create a class called border. + +79 +00:04:43,720 --> 00:04:47,120 +Now, based on this talk, let's go to the slides. + +80 +00:04:48,160 --> 00:04:51,880 +Let's read it. The intent of the border is to + +81 +00:04:51,880 --> 00:04:55,620 +attach additional responsibilities to an object + +82 +00:04:55,620 --> 00:04:57,340 +dynamically. Pay attention to the definition. + +83 +00:04:57,480 --> 00:05:00,020 +Every word has an importance. The first thing is + +84 +00:05:00,020 --> 00:05:03,700 +to attach additional responsibilities, adding new + +85 +00:05:03,700 --> 00:05:06,440 +responsibilities and functions to an object. + +86 +00:05:06,740 --> 00:05:09,400 +Notice that there is no space for class.What did + +87 +00:05:09,400 --> 00:05:13,980 +he say? To object, so I don't add functionality to + +88 +00:05:13,980 --> 00:05:17,520 +class Subclassing or inheritance is what adds to + +89 +00:05:17,520 --> 00:05:20,880 +the class You have a class and you extend it But + +90 +00:05:20,880 --> 00:05:24,640 +here I add functionality to object, how? Look with + +91 +00:05:24,640 --> 00:05:29,980 +me, when we used border, this is the method that I + +92 +00:05:29,980 --> 00:05:33,900 +add border to So first thing I create object from + +93 +00:05:33,900 --> 00:05:37,470 +where?From rectangle, I created the object from + +94 +00:05:37,470 --> 00:05:40,430 +rectangle without border at first I wanted to add + +95 +00:05:40,430 --> 00:05:43,330 +a border, I created an object from border and + +96 +00:05:43,330 --> 00:05:47,530 +passed it to rectangle So I actually added the new + +97 +00:05:47,530 --> 00:05:52,250 +functionality of border to rectangle object So I + +98 +00:05:52,250 --> 00:05:54,890 +added it to object, and this makes me able to add + +99 +00:05:54,890 --> 00:05:58,430 +it during runtimemeans that the object was created + +100 +00:05:58,430 --> 00:06:00,210 +first without borders and then borders were added + +101 +00:06:00,210 --> 00:06:03,410 +during runtime and this is the meaning of the + +102 +00:06:03,410 --> 00:06:05,550 +sentence attach responsibilities to an object + +103 +00:06:05,550 --> 00:06:13,290 +dynamically during runtime decorator provides a + +104 +00:06:13,290 --> 00:06:17,090 +flexible alternative substitute for subclassing + +105 +00:06:17,090 --> 00:06:20,130 +for extending functionality this is the meaning of + +106 +00:06:20,130 --> 00:06:23,670 +this sentence also known as wrapperAlso the + +107 +00:06:23,670 --> 00:06:27,390 +decorator is called wrapper because it is like + +108 +00:06:27,390 --> 00:06:31,950 +wrapping another object Motivation for using it + +109 +00:06:31,950 --> 00:06:35,370 +for example we want to add properties such as + +110 +00:06:35,370 --> 00:06:38,690 +borders or scroll bars to a GUI component we can + +111 +00:06:38,690 --> 00:06:40,910 +do this with inheritance but this limits our + +112 +00:06:40,910 --> 00:06:44,390 +flexibility a better way is to use composition as + +113 +00:06:44,390 --> 00:06:48,950 +I said I have a GUI component TextView, TextArea, + +114 +00:06:49,250 --> 00:06:55,390 +I want to add border or scrollbar I have 20 GUI + +115 +00:06:55,390 --> 00:06:56,990 +shapes, I want to make them border, I will not + +116 +00:06:56,990 --> 00:07:00,130 +make 20 subclasses, I will make one object called + +117 +00:07:00,130 --> 00:07:04,130 +border that covers any one of the UI components to + +118 +00:07:04,130 --> 00:07:06,790 +add border to it and the same thing if I want to + +119 +00:07:06,790 --> 00:07:09,110 +make a scrollbar for these shapes, I do not need + +120 +00:07:09,110 --> 00:07:13,030 +to make 20 subclasses to add a scrollbar to each + +121 +00:07:13,030 --> 00:07:15,670 +one of the shapes I only make a class called + +122 +00:07:15,670 --> 00:07:19,290 +scrollbar which is a decorator that wraps the UI + +123 +00:07:19,290 --> 00:07:25,090 +component The + +124 +00:07:25,090 --> 00:07:27,170 +decorator object is designed to have the same + +125 +00:07:27,170 --> 00:07:31,890 +interface as the underlying object The decorator, + +126 +00:07:32,730 --> 00:07:35,710 +for example, let's make it a shape and it takes a + +127 +00:07:35,710 --> 00:07:39,070 +shapeWhy? Because in the end, the client wants to + +128 +00:07:39,070 --> 00:07:40,790 +see the decorator as he is, as any other shape. + +129 +00:07:42,190 --> 00:07:44,090 +It's true that it's called border, but it really + +130 +00:07:44,090 --> 00:07:48,240 +looks like a border.So the client has to deal with + +131 +00:07:48,240 --> 00:07:50,540 +it the same way he deals with any other object + +132 +00:07:50,540 --> 00:07:55,880 +This allows a client object to interact with the + +133 +00:07:55,880 --> 00:07:58,660 +decorator object in exactly the same manner as it + +134 +00:07:58,660 --> 00:08:01,500 +would with the underlying actual object So as we + +135 +00:08:01,500 --> 00:08:04,340 +said, it deals with the decorator object exactly + +136 +00:08:04,340 --> 00:08:07,620 +the same way it deals with the object that covers + +137 +00:08:07,620 --> 00:08:10,770 +the decorator objectThe decorator objects contains + +138 +00:08:10,770 --> 00:08:17,850 +a reference to the actual object. The decorator + +139 +00:08:17,850 --> 00:08:20,450 +object receives all request calls from a client. + +140 +00:08:20,970 --> 00:08:23,750 +It in turn forwards these calls to the underlying + +141 +00:08:23,750 --> 00:08:27,730 +object. The same thing that we said that the + +142 +00:08:27,730 --> 00:08:31,210 +decorator should forward the request to the + +143 +00:08:31,210 --> 00:08:33,250 +underlying object. What is the underlying object? + +144 +00:08:33,310 --> 00:08:36,170 +It is the internal object. Like here for example, + +145 +00:08:36,250 --> 00:08:40,130 +I need to call x and y inside.I have to call x and + +146 +00:08:40,130 --> 00:08:44,010 +y under the decorator, and this object is called + +147 +00:08:44,010 --> 00:08:49,010 +dot. Just like when we made the border, we didn't + +148 +00:08:49,010 --> 00:08:53,430 +use the method getDescription() and inside it we + +149 +00:08:53,430 --> 00:08:57,310 +called shape to describe, and the same thing to + +150 +00:08:57,310 --> 00:08:59,630 +draw, we called shape to draw inside it. So this + +151 +00:08:59,630 --> 00:09:04,010 +is what makes the discourse forward to the + +152 +00:09:04,010 --> 00:09:07,920 +underlying object.The last point is the decorator + +153 +00:09:07,920 --> 00:09:11,800 +objects add some additional functionality before + +154 +00:09:11,800 --> 00:09:14,040 +or after forwarding a request to the underlying + +155 +00:09:14,040 --> 00:09:17,080 +object. Why did I create the decorator? Not just + +156 +00:09:17,080 --> 00:09:19,360 +to change the commands and that's it, but to add + +157 +00:09:19,360 --> 00:09:23,540 +new things. For example, in the border, before I + +158 +00:09:23,540 --> 00:09:26,960 +change the call to method draw, look here, this is + +159 +00:09:26,960 --> 00:09:29,300 +the class border that we explained in the previous + +160 +00:09:29,300 --> 00:09:32,460 +lecture, and it has method draw, and from inside + +161 +00:09:32,460 --> 00:09:35,820 +it I'm looking for shape dot draw.But before you + +162 +00:09:35,820 --> 00:09:38,920 +call shape.draw, you have to run the code that + +163 +00:09:38,920 --> 00:09:44,060 +sends me the border This is the code that puts the + +164 +00:09:44,060 --> 00:09:47,540 +border settings, then I say shape.draw This is the + +165 +00:09:47,540 --> 00:09:52,780 +additional code that I created this decorator for + +166 +00:09:52,780 --> 00:09:59,220 +I call it, then I say shape.draw And this is the + +167 +00:09:59,220 --> 00:09:59,660 +last sentence + +168 +00:10:05,300 --> 00:10:08,200 +Add some additional functionality before or after + +169 +00:10:08,200 --> 00:10:10,500 +forwarding request to the underlying object This + +170 +00:10:10,500 --> 00:10:12,620 +ensures that the additional functionality can be + +171 +00:10:12,620 --> 00:10:15,760 +added to a given object externally at runtime + +172 +00:10:15,760 --> 00:10:19,260 +without modifying its structure Meaning that the + +173 +00:10:19,260 --> 00:10:21,160 +functionality is added during the runtime without + +174 +00:10:21,160 --> 00:10:25,640 +having to do subclassing and so on When do you use + +175 +00:10:25,640 --> 00:10:27,900 +applicability? To add responsibilities to + +176 +00:10:27,900 --> 00:10:30,100 +individual objects dynamically without affecting + +177 +00:10:30,100 --> 00:10:32,320 +other objects Meaning that I have objects that I + +178 +00:10:32,320 --> 00:10:35,650 +want to add to themNew functionalities during the + +179 +00:10:35,650 --> 00:10:38,730 +runtime For example, I have a rectangle, I want to + +180 +00:10:38,730 --> 00:10:41,130 +add it to my functionalities, I created an object + +181 +00:10:41,130 --> 00:10:43,410 +from the rectangle, then I create a border and + +182 +00:10:43,410 --> 00:10:45,930 +wrap the object in it from a rectangle So the + +183 +00:10:45,930 --> 00:10:48,090 +rectangle now, I created it in the first place, it + +184 +00:10:48,090 --> 00:10:49,890 +was a normal object without borders, then I added + +185 +00:10:49,890 --> 00:10:50,310 +it to it + +186 +00:10:53,790 --> 00:10:56,050 +Also when we use the decorator when the + +187 +00:10:56,050 --> 00:11:00,630 +subclassing is impractical + +188 +00:11:00,630 --> 00:11:04,770 +When + +189 +00:11:04,770 --> 00:11:10,770 +you notice that the subclassing produces from it a + +190 +00:11:10,770 --> 00:11:13,130 +large number of classes, an explosion of classes, + +191 +00:11:13,190 --> 00:11:15,910 +you avoid using the subclasses and resort to the + +192 +00:11:15,910 --> 00:11:16,370 +decorator + +193 +00:11:20,360 --> 00:11:22,840 +Okay, this is today's diagram of the decorator + +194 +00:11:22,840 --> 00:11:24,940 +pattern, let's see it and follow the example we + +195 +00:11:24,940 --> 00:11:29,260 +explained in the previous lecture Okay, first of + +196 +00:11:29,260 --> 00:11:32,100 +all, I have an interface which is a component, and + +197 +00:11:32,100 --> 00:11:35,020 +I have a shape which is a concrete component What + +198 +00:11:35,020 --> 00:11:37,220 +does this represent in our program? The interface + +199 +00:11:37,220 --> 00:11:41,340 +shape, which has a method draw and describe, and + +200 +00:11:41,340 --> 00:11:43,620 +then came from it circle and rectangle, which + +201 +00:11:43,620 --> 00:11:47,870 +represent the concrete componentsMy goal is to add + +202 +00:11:47,870 --> 00:11:51,710 +a new functionality to the concrete component, the + +203 +00:11:51,710 --> 00:11:53,790 +traditional way is to make a subclass for this, + +204 +00:11:54,770 --> 00:11:58,090 +the alternative way is as follows, you make a new + +205 +00:11:58,090 --> 00:12:02,870 +classImplement the component, it takes the same + +206 +00:12:02,870 --> 00:12:05,890 +type of component and uses it as a component, + +207 +00:12:06,070 --> 00:12:08,170 +there are two arrows here, this is what it means + +208 +00:12:08,170 --> 00:12:11,190 +to implement and use the component from inside it + +209 +00:12:11,190 --> 00:12:13,470 +It takes the same type of interface, so that the + +210 +00:12:13,470 --> 00:12:16,530 +client sees this and this as one thing, and + +211 +00:12:16,530 --> 00:12:19,090 +actually it wraps the object in a type of + +212 +00:12:19,090 --> 00:12:19,470 +component + +213 +00:12:22,230 --> 00:12:25,250 +Okay, now notice this specific object, what is it + +214 +00:12:25,250 --> 00:12:28,050 +made of? It is solid, right or wrong? We said that + +215 +00:12:28,050 --> 00:12:30,150 +a specific object has two forms, hollow and solid + +216 +00:12:30,150 --> 00:12:33,150 +What separates them from each other? Composition + +217 +00:12:33,150 --> 00:12:36,490 +and aggregation So, when this is solid, it means + +218 +00:12:36,490 --> 00:12:40,150 +that this object inside, which is a component, was + +219 +00:12:40,150 --> 00:12:43,830 +built inside the decorator When it is hollow, it + +220 +00:12:43,830 --> 00:12:45,930 +means that it was built outside and it was reused + +221 +00:12:45,930 --> 00:12:48,430 +by the decorator Because this one here is wrong, + +222 +00:12:49,270 --> 00:12:53,690 +based on our exampleWhen we work, we create an + +223 +00:12:53,690 --> 00:12:56,890 +object from the rectangle or circle outside and + +224 +00:12:56,890 --> 00:13:00,790 +then we pass it to the decorator Because the idea + +225 +00:13:00,790 --> 00:13:02,750 +of ​​the decorator is to add functionalities to + +226 +00:13:02,750 --> 00:13:05,590 +the existing objects So I create the object in the + +227 +00:13:05,590 --> 00:13:10,170 +first place and pass it to the decorator So this + +228 +00:13:10,170 --> 00:13:14,210 +is supposed to be what guys? Extended, not fixed + +229 +00:13:14,210 --> 00:13:20,300 +like that Okay guys?Okay, now there is also a + +230 +00:13:20,300 --> 00:13:22,540 +slight difference from what I did here I made a + +231 +00:13:22,540 --> 00:13:26,920 +class named decorator and then when it likes to + +232 +00:13:26,920 --> 00:13:30,480 +add functionalities, I made extend to whom? this + +233 +00:13:30,480 --> 00:13:34,200 +is an abstract class, I can't create an object + +234 +00:13:34,200 --> 00:13:35,980 +from it why did I make it? so that it creates a + +235 +00:13:35,980 --> 00:13:39,520 +constructor in it, it is not a constructor, it + +236 +00:13:39,520 --> 00:13:43,400 +takes object from it as a component because I + +237 +00:13:43,400 --> 00:13:45,460 +wanted to add a decorator to make a border for + +238 +00:13:45,460 --> 00:13:48,110 +exampleI go and create a new class for example + +239 +00:13:48,110 --> 00:13:51,670 +border decorator and I tell it to extend main + +240 +00:13:51,670 --> 00:13:54,670 +decorator The advantage here is that the + +241 +00:13:54,670 --> 00:13:58,690 +constructor you have to create a constructor here + +242 +00:13:58,690 --> 00:14:01,730 +and add the function that says do operation that + +243 +00:14:01,730 --> 00:14:03,910 +changes what you want it to do or do additional + +244 +00:14:03,910 --> 00:14:06,870 +operations So the difference from what you did, of + +245 +00:14:06,870 --> 00:14:10,060 +course when I came and created borderI didn't make + +246 +00:14:10,060 --> 00:14:12,960 +a class decorator, I made a border from it. I made + +247 +00:14:12,960 --> 00:14:16,660 +a border right away, okay? Implement this and use + +248 +00:14:16,660 --> 00:14:20,540 +whose component? I want to make a scroll bar, I + +249 +00:14:20,540 --> 00:14:22,700 +want to make another class, implement this and use + +250 +00:14:22,700 --> 00:14:25,680 +a component. He doesn't, he tells you to make an + +251 +00:14:25,680 --> 00:14:30,170 +abstract class called decoratorand from it make a + +252 +00:14:30,170 --> 00:14:34,190 +border and a scroll bar same thing but here the + +253 +00:14:34,190 --> 00:14:37,230 +advantage is that when you make extend for this + +254 +00:14:37,230 --> 00:14:39,650 +class it will force you to put the constructor + +255 +00:14:39,650 --> 00:14:43,010 +that you want to pass as a component but when you + +256 +00:14:43,010 --> 00:14:48,170 +make a class for each decorator + +257 +00:14:48,170 --> 00:14:50,850 +class you have to put the constructor that you + +258 +00:14:50,850 --> 00:14:52,650 +want to pass as a component with which language + +259 +00:14:52,650 --> 00:14:59,660 +guys?Okay, it is similar or not different from the + +260 +00:14:59,660 --> 00:15:04,480 +code that we did Okay, + +261 +00:15:04,580 --> 00:15:07,520 +here they give us an example that is very similar + +262 +00:15:07,520 --> 00:15:12,100 +to what we talked about to convince me why the + +263 +00:15:12,100 --> 00:15:14,780 +decorator is necessary because you have text view + +264 +00:15:16,010 --> 00:15:19,870 +GUI component And if you want to add new features + +265 +00:15:19,870 --> 00:15:21,150 +to the TextView What are the new features that we + +266 +00:15:21,150 --> 00:15:24,330 +want to add? First, we want to add a border to the + +267 +00:15:24,330 --> 00:15:29,350 +TextView And we can add a plain border, 3D border, + +268 +00:15:29,550 --> 00:15:31,130 +or fancy border to the TextView These are + +269 +00:15:31,130 --> 00:15:36,090 +different types of borders We can also add a + +270 +00:15:36,090 --> 00:15:39,590 +scroll bar Horizontal scroll bar, vertical scroll + +271 +00:15:39,590 --> 00:15:43,610 +bar, or vertical and horizontal scroll bar + +272 +00:15:45,710 --> 00:15:50,710 +Actually, you can have a text view with border + +273 +00:15:50,710 --> 00:15:55,110 +only, and you can have a text view with scroll bar + +274 +00:15:55,110 --> 00:15:58,010 +and you can have a text view with scroll bar and + +275 +00:15:58,010 --> 00:16:02,030 +border. Right or wrong? You can control it as you + +276 +00:16:02,030 --> 00:16:05,910 +want. Because in this case, if you want to do it + +277 +00:16:05,910 --> 00:16:09,310 +in subclassing, you have to make every existing + +278 +00:16:09,310 --> 00:16:13,000 +possibilitySubclass, for example, I want to create + +279 +00:16:13,000 --> 00:16:17,780 +a TextView with a plane border So what do you do? + +280 +00:16:17,880 --> 00:16:21,360 +You go to the TextView and extend it to a class + +281 +00:16:21,360 --> 00:16:25,600 +called TextViewPlane So that you can override the + +282 +00:16:25,600 --> 00:16:30,180 +draw method to draw the border and say super dot + +283 +00:16:30,180 --> 00:16:35,720 +draw This is if I want to use the subclassOkay, + +284 +00:16:35,800 --> 00:16:37,720 +this is just the only possibility I have, what + +285 +00:16:37,720 --> 00:16:41,200 +else do I have? 3D border and fancy border. What + +286 +00:16:41,200 --> 00:16:44,680 +does each person want? Subclass. So these people + +287 +00:16:44,680 --> 00:16:47,060 +need three subclasses to make a text view with + +288 +00:16:47,060 --> 00:16:50,100 +plain border, fancy border and 3D border. Okay, + +289 +00:16:50,240 --> 00:16:53,140 +are these just the possibilities that exist? No, I + +290 +00:16:53,140 --> 00:16:56,400 +have other possibilities. Because Scrollbar needs + +291 +00:16:56,400 --> 00:16:59,420 +a text view with a scrollbar.The scrollbar is a + +292 +00:16:59,420 --> 00:17:02,860 +new component that needs to be created To create a + +293 +00:17:02,860 --> 00:17:04,960 +scrollbar, you need to create a new class TextView + +294 +00:17:04,960 --> 00:17:08,860 +.HorizontalExtendedTextView So that when it draws, + +295 +00:17:09,060 --> 00:17:13,060 +it draws a horizontal scrollbar And another + +296 +00:17:13,060 --> 00:17:16,240 +possibility is vertical, I have a vertical and a + +297 +00:17:16,240 --> 00:17:19,280 +horizontal Each one needs a class if it depends on + +298 +00:17:19,280 --> 00:17:21,560 +the subclass And then sometimes you need to create + +299 +00:17:21,560 --> 00:17:26,120 +a border with the TextView of any of the three + +300 +00:17:26,930 --> 00:17:30,710 +Borders that I have with scroll bar So you have to + +301 +00:17:30,710 --> 00:17:33,790 +put all possibilities For example, text view with + +302 +00:17:33,790 --> 00:17:38,790 +plane, border with horizontal, scroll bar Text + +303 +00:17:38,790 --> 00:17:42,290 +view with plane, border with vertical, scroll bar + +304 +00:17:42,290 --> 00:17:45,030 +Text view with plane, with horizontal, vertical, + +305 +00:17:45,530 --> 00:17:47,330 +scroll bar All of this needs subclassing, so here + +306 +00:17:47,330 --> 00:17:52,330 +I don't have a lot of subclassingThe solution is + +307 +00:17:52,330 --> 00:17:55,210 +how to improve this design using the decorator + +308 +00:17:55,210 --> 00:17:58,250 +pattern. Because this is the new design that I + +309 +00:17:58,250 --> 00:18:01,610 +want to make using the decorator pattern. Now I + +310 +00:18:01,610 --> 00:18:04,730 +say, wait a minute, now you have a few new + +311 +00:18:04,730 --> 00:18:07,930 +features, let's count them. I have a plain border, + +312 +00:18:08,850 --> 00:18:14,070 +fancy, 3D, right? These three. Then I have scroll + +313 +00:18:14,070 --> 00:18:18,770 +bar, horizontal, vertical and horizontal-vertical. + +314 +00:18:19,370 --> 00:18:23,310 +It means 6 additional functionalities So I tell + +315 +00:18:23,310 --> 00:18:28,070 +them to make 6 classes out of them and each one of + +316 +00:18:28,070 --> 00:18:34,850 +them is a decorator So notice that this TextView + +317 +00:18:34,850 --> 00:18:38,250 +is a type of component I will make a super + +318 +00:18:38,250 --> 00:18:41,910 +abstract class called decorator Implement the + +319 +00:18:41,910 --> 00:18:44,150 +component and use a component inside it Notice + +320 +00:18:44,150 --> 00:18:48,030 +that it fixed the parameterbecause in the end, I + +321 +00:18:48,030 --> 00:18:50,350 +will create a text view and pass it to whom? to + +322 +00:18:50,350 --> 00:18:53,190 +the decorator and then this decorator, of course + +323 +00:18:53,190 --> 00:18:56,210 +it is his job this decorator, I will put the + +324 +00:18:56,210 --> 00:18:58,890 +constructor in it only on the basis of it, I will + +325 +00:18:58,890 --> 00:19:02,970 +create two subclasses border and scrollbar and + +326 +00:19:02,970 --> 00:19:07,350 +both extend from which? the border the decorator, + +327 +00:19:07,470 --> 00:19:09,790 +excuse me so really, when I create an object from + +328 +00:19:09,790 --> 00:19:12,690 +a border like this, I will pass it to whom? text + +329 +00:19:12,690 --> 00:19:17,050 +viewAnd then from the border, he made a plain + +330 +00:19:17,050 --> 00:19:19,810 +border and a 3D border and on the basis of all the + +331 +00:19:19,810 --> 00:19:23,530 +borders, they can have common features. For + +332 +00:19:23,530 --> 00:19:25,370 +example, the color of the line, its size, where + +333 +00:19:25,370 --> 00:19:28,050 +did he put them? In the class border. And the same + +334 +00:19:28,050 --> 00:19:30,070 +thing, in the scroll bar, there are common + +335 +00:19:30,070 --> 00:19:32,030 +features for action and events that happen and so + +336 +00:19:32,030 --> 00:19:36,410 +on. He made a superclass and they made a subclass. + +337 +00:19:37,390 --> 00:19:39,270 +Regardless of the fact that all these subclasses + +338 +00:19:39,270 --> 00:19:43,920 +remain the same type, How to use them? For + +339 +00:19:43,920 --> 00:19:51,120 +example, I want to create a text view and put a + +340 +00:19:51,120 --> 00:19:54,820 +plain border on it. What do you have to do? You + +341 +00:19:54,820 --> 00:19:57,820 +have to simply create a text view. + +342 +00:20:06,790 --> 00:20:09,050 +TextView, we created it, we want it to have a + +343 +00:20:09,050 --> 00:20:11,770 +Plane Border, all prisms have to have a Plane + +344 +00:20:11,770 --> 00:20:16,570 +Border This + +345 +00:20:16,570 --> 00:20:25,570 +is PB equals New Plane Border And I pass it to + +346 +00:20:25,570 --> 00:20:29,950 +whom? The V And then what do I draw with the + +347 +00:20:29,950 --> 00:20:33,250 +screen? This Right? Because this is a kind of + +348 +00:20:33,250 --> 00:20:37,460 +shape, this is a kind of component in the endOkay, + +349 +00:20:37,560 --> 00:20:40,160 +I want to create a TextView with a Horizontal + +350 +00:20:40,160 --> 00:20:42,620 +Scrollbar. Nothing else, just a Horizontal + +351 +00:20:42,620 --> 00:20:48,320 +Scrollbar and a TextView. Another nice point is + +352 +00:20:48,320 --> 00:20:50,960 +that you can add more than one TextView + +353 +00:20:50,960 --> 00:20:53,480 +functionality together. For example, I want to + +354 +00:20:53,480 --> 00:20:59,040 +create a TextView with a 3D Border and a + +355 +00:20:59,040 --> 00:21:03,600 +Horizontal-Vertical Scrollbar. What does it do? It + +356 +00:21:03,600 --> 00:21:06,860 +simply covers the object with both. For example, + +357 +00:21:07,480 --> 00:21:10,580 +what did I ask for? I asked for a TextView with a + +358 +00:21:10,580 --> 00:21:13,560 +3D border and a horizontal-vertical scrollbar. + +359 +00:21:13,800 --> 00:21:18,020 +This is the V. The first thing it does is create a + +360 +00:21:18,020 --> 00:21:23,820 +3D border. It creates a new 3D border. What does + +361 +00:21:23,820 --> 00:21:31,760 +it create? The V. Then it creates a new HV + +362 +00:21:31,760 --> 00:21:36,040 +scrollbar. + +363 +00:21:36,820 --> 00:21:41,140 +Look, new HV scrollbar, and this one I passed to + +364 +00:21:41,140 --> 00:21:46,260 +it, new 3D portal, and this one I passed to it, + +365 +00:21:46,640 --> 00:21:49,700 +the V. This is the benefit that this one is also a + +366 +00:21:49,700 --> 00:21:54,420 +component, that the HV scrollbar will take a + +367 +00:21:54,420 --> 00:21:56,960 +component, right or wrong, not in the end, this + +368 +00:21:56,960 --> 00:22:01,000 +one, any one of these, the parameter follows and + +369 +00:22:01,000 --> 00:22:04,700 +becomes a component. So when you have a 3D border + +370 +00:22:04,700 --> 00:22:08,920 +component, you can call it HVScrollbar. Do you see + +371 +00:22:08,920 --> 00:22:11,520 +how I created it? In the end, when I draw any + +372 +00:22:11,520 --> 00:22:14,400 +shape, for example, this is the new HVScrollbar + +373 +00:22:14,400 --> 00:22:17,340 +named O, the object. In the end, when I draw this, + +374 +00:22:17,360 --> 00:22:20,780 +what do I call it? I call it O dot draw. And + +375 +00:22:20,780 --> 00:22:26,840 +actually, for this draw, whose O dot draw belongs + +376 +00:22:26,840 --> 00:22:30,380 +to? The scrollbar. So there will be a code that + +377 +00:22:30,380 --> 00:22:35,520 +draws what? the scroll bar and from inside it + +378 +00:22:35,520 --> 00:22:39,860 +calls the draw of the border for example let's + +379 +00:22:39,860 --> 00:22:43,000 +call it O2 this is O1 and this is O2 so O1 dot + +380 +00:22:43,000 --> 00:22:45,760 +draw will execute the code to draw the scroll bar + +381 +00:22:45,760 --> 00:22:50,460 +and it will go to O2 dot draw right? this is the + +382 +00:22:50,460 --> 00:22:56,380 +draw of the border and the draw of the border will + +383 +00:22:56,380 --> 00:23:02,480 +execute the code to draw the meme draw border And + +384 +00:23:02,480 --> 00:23:06,800 +then you will go and copy the V You will see that + +385 +00:23:06,800 --> 00:23:11,100 +they overlap each other So see how easy it is to + +386 +00:23:11,100 --> 00:23:16,000 +add two functionalities to an object and wrap it + +387 +00:23:16,000 --> 00:23:22,540 +twice Now there is homework that I will add to the + +388 +00:23:22,540 --> 00:23:24,860 +decorator Did you see the example that we + +389 +00:23:24,860 --> 00:23:26,660 +explained? We will discuss what we did in our + +390 +00:23:26,660 --> 00:23:28,900 +example I want to add a border that does not have + +391 +00:23:28,900 --> 00:23:30,320 +a shape, that is a circle and rectangle And we + +392 +00:23:30,320 --> 00:23:33,200 +made a class called borderI would like to add a + +393 +00:23:33,200 --> 00:23:35,080 +new functionality, which is that we make the shape + +394 +00:23:35,080 --> 00:23:41,120 +constant. For example, when we draw a circle, we + +395 +00:23:41,120 --> 00:23:43,620 +can draw a circle that is filled with green and + +396 +00:23:43,620 --> 00:23:49,940 +has a circle in red. This filling is a new + +397 +00:23:49,940 --> 00:23:53,690 +functionality.I'm not going to make a solid circle + +398 +00:23:53,690 --> 00:23:55,470 +and extend circle to fill it up because that's how + +399 +00:23:55,470 --> 00:23:58,070 +I'm going to force Ash to make a solid circle, + +400 +00:23:58,190 --> 00:24:01,030 +solid rectangle, solid triangle, solid whatever. + +401 +00:24:01,930 --> 00:24:04,970 +No. We're going to add this solid property as + +402 +00:24:04,970 --> 00:24:07,650 +what? As a decorator. So you're going to make a + +403 +00:24:07,650 --> 00:24:11,250 +class called solid. What's its idea? That it + +404 +00:24:11,250 --> 00:24:16,450 +covers a shape. Okay? And we have a draw.You fill + +405 +00:24:16,450 --> 00:24:20,830 +it up and then you draw on it. Think about how you + +406 +00:24:20,830 --> 00:24:27,730 +do it. I can also tell you to add two features to + +407 +00:24:27,730 --> 00:24:31,210 +the shape. It should have a border and should be + +408 +00:24:31,210 --> 00:24:35,590 +fixed. So you use a method like this. For example, + +409 +00:24:35,670 --> 00:24:37,470 +you make a circle and you cover it with a border. + +410 +00:24:40,290 --> 00:24:43,610 +solid. Of course, if we change the order, it will + +411 +00:24:43,610 --> 00:24:45,710 +make a difference. If we put the V and change it + +412 +00:24:45,710 --> 00:24:48,890 +to HV School bar and then 3 border, it will not + +413 +00:24:48,890 --> 00:24:55,030 +make a difference. It will only execute this + +414 +00:24:55,030 --> 00:24:57,690 +before this code. But in the end, it will execute + +415 +00:24:57,690 --> 00:25:02,410 +both together. So the required code is the same + +416 +00:25:02,410 --> 00:25:04,930 +example that was explained in the lecture, but it + +417 +00:25:04,930 --> 00:25:09,030 +is added to it.To create a new decorator that + +418 +00:25:09,030 --> 00:25:11,950 +executes the process of solid and to create an + +419 +00:25:11,950 --> 00:25:15,290 +example of any shape and put the properties in it. + +420 +00:25:15,330 --> 00:25:21,670 +Solid with border. And the code that I used in the + +421 +00:25:21,670 --> 00:25:23,610 +lecture is available on the model. You can + +422 +00:25:23,610 --> 00:25:26,290 +download it, edit it and upload the code again. + +423 +00:25:28,860 --> 00:25:32,300 +Okay guys, because this code, I will explain to + +424 +00:25:32,300 --> 00:25:35,640 +you how it looks related to the diagram that we + +425 +00:25:35,640 --> 00:25:38,500 +saw a while ago For example, this code TextView + +426 +00:25:38,500 --> 00:25:42,200 +has a method called what? Draw Because this fancy + +427 +00:25:42,200 --> 00:25:45,230 +border extendsDecorator, it doesn't look like I'm + +428 +00:25:45,230 --> 00:25:48,170 +classed as decorator, but it always goes to fancy + +429 +00:25:48,170 --> 00:25:51,010 +border, one of them. This is for sure, there's a + +430 +00:25:51,010 --> 00:25:53,550 +reference to whom? To a component, and it takes an + +431 +00:25:53,550 --> 00:25:55,630 +object from the component, and then to draw it + +432 +00:25:55,630 --> 00:25:58,590 +actually, I go and execute component.draw, and + +433 +00:25:58,590 --> 00:26:01,850 +then I tell it code to draw fancy border. So this + +434 +00:26:01,850 --> 00:26:07,490 +is the additional code. Okay? So if I want to add + +435 +00:26:07,490 --> 00:26:10,290 +fancy border to TextView, this is TextView, and + +436 +00:26:10,290 --> 00:26:14,070 +then it makes fancy border that takes what?He + +437 +00:26:14,070 --> 00:26:17,810 +wanted to add a horizontal scroll bar to it, so he + +438 +00:26:17,810 --> 00:26:19,870 +created a new horizontal scroll bar and called it + +439 +00:26:19,870 --> 00:26:23,770 +border data. This is almost the same idea that I + +440 +00:26:23,770 --> 00:26:25,790 +did here, but I did it in one line and he did it + +441 +00:26:25,790 --> 00:26:31,710 +in two or three lines.Okay? The second example, + +442 +00:26:32,210 --> 00:26:34,170 +and I explained this in the previous lecture, I + +443 +00:26:34,170 --> 00:26:35,830 +say to the decorator, for example, where are his + +444 +00:26:35,830 --> 00:26:38,210 +applications in Java? We explained in the previous + +445 +00:26:38,210 --> 00:26:40,810 +lecture about the input stream and output stream. + +446 +00:26:41,270 --> 00:26:44,290 +Actually, I create a decorator that wraps another + +447 +00:26:44,290 --> 00:26:47,530 +object to add additional functionality to it. Last + +448 +00:26:47,530 --> 00:26:48,990 +time, we explained that in the output stream, + +449 +00:26:49,250 --> 00:26:51,290 +there is a method that writes bytes. And this is + +450 +00:26:51,290 --> 00:26:53,810 +not appropriate if I want to write a string. Okay? + +451 +00:26:54,030 --> 00:26:56,170 +So, actually, we wrapped it in another object + +452 +00:26:56,170 --> 00:26:59,540 +called PrintWriter.It takes an object of type + +453 +00:26:59,540 --> 00:27:02,180 +FileOutputString And in PrintWriter, we added an + +454 +00:27:02,180 --> 00:27:04,940 +additional method which is Println() Which + +455 +00:27:04,940 --> 00:27:07,960 +actually takes a string, converts it into bytes + +456 +00:27:07,960 --> 00:27:12,170 +and calls writeBytes() from the inner object So + +457 +00:27:12,170 --> 00:27:14,850 +when you used to stock up on files and create an + +458 +00:27:14,850 --> 00:27:16,410 +out of stream file and wrap it with a print writer + +459 +00:27:16,410 --> 00:27:18,670 +or an out of stream object and wrap it with an out + +460 +00:27:18,670 --> 00:27:20,590 +of stream file and wrap it with an out of stream + +461 +00:27:20,590 --> 00:27:21,850 +object, you were actually implementing the + +462 +00:27:21,850 --> 00:27:25,030 +property of the decorator, wrapping objects inside + +463 +00:27:25,030 --> 00:27:28,090 +objects to add additional functionality to help + +464 +00:27:28,090 --> 00:27:31,070 +you in writing or reading objects. + +465 +00:27:33,070 --> 00:27:34,950 +Okay, so this is what we talked about last time. + +466 +00:27:39,470 --> 00:27:43,450 +The last point is a quick comparison between the + +467 +00:27:43,450 --> 00:27:46,750 +decorator pattern and inheritance or subclassing + +468 +00:27:46,750 --> 00:27:50,970 +In the decorator used to extend the functionality + +469 +00:27:50,970 --> 00:27:54,530 +of a particular object But in the inheritance used + +470 +00:27:54,530 --> 00:27:56,770 +to extend the functionality of a class of objects + +471 +00:27:56,770 --> 00:28:01,230 +You do here extend the class, you add a new code + +472 +00:28:01,230 --> 00:28:03,970 +But here you add the functionality of the existing + +473 +00:28:03,970 --> 00:28:08,390 +objectYou create the object and then you add the + +474 +00:28:08,390 --> 00:28:12,670 +function to wrap it in the decorator It does not + +475 +00:28:12,670 --> 00:28:14,090 +require subclassing, this one requires + +476 +00:28:14,090 --> 00:28:15,990 +subclassing, this one is dynamic and this one is + +477 +00:28:15,990 --> 00:28:20,910 +static So here you have to create the class Before + +478 +00:28:20,910 --> 00:28:24,450 +you run the program Here, during the runtime, you + +479 +00:28:24,450 --> 00:28:28,050 +create the object and wrap it directly The + +480 +00:28:28,050 --> 00:28:31,350 +functionality is added during the runtime And this + +481 +00:28:31,350 --> 00:28:34,010 +means that runtime assignment of responsibilities + +482 +00:28:34,010 --> 00:28:36,570 +and here compile-time assignment of + +483 +00:28:36,570 --> 00:28:40,470 +responsibilities Prevents the proliferation of + +484 +00:28:40,470 --> 00:28:42,370 +subclasses What is proliferation? It is the + +485 +00:28:42,370 --> 00:28:44,490 +proliferation of subclasses It prevents the + +486 +00:28:44,490 --> 00:28:47,150 +exclusion of classes that we talked about in the + +487 +00:28:47,150 --> 00:28:51,150 +previous lecturebut in inheritance it could lead + +488 +00:28:51,150 --> 00:28:54,310 +to numerous subclasses it could lead to a large + +489 +00:28:54,310 --> 00:28:57,470 +number of subclasses more flexible, still + +490 +00:28:57,470 --> 00:28:59,510 +flexible, of course I'm not with this statement at + +491 +00:28:59,510 --> 00:29:02,210 +all we said that in the normal situation you + +492 +00:29:02,210 --> 00:29:05,670 +always resort to subclassing except if you notice + +493 +00:29:05,670 --> 00:29:08,210 +that it produces a large number of subclasses so + +494 +00:29:08,210 --> 00:29:09,850 +you stay on the decorator + +495 +00:29:12,640 --> 00:29:15,040 +Possible to have different decorator objects for a + +496 +00:29:15,040 --> 00:29:18,120 +given object simultaneously, meaning that the + +497 +00:29:18,120 --> 00:29:20,360 +object itself can have more than one decorator to + +498 +00:29:20,360 --> 00:29:23,080 +add more features to it, but in the case of + +499 +00:29:23,080 --> 00:29:25,740 +subclassing, each feature has to have an + +500 +00:29:25,740 --> 00:29:30,540 +additional subclass.Easy to add a combination of + +501 +00:29:30,540 --> 00:29:32,960 +capabilities, to add more than one capability at + +502 +00:29:32,960 --> 00:29:35,140 +the same time, but here it is difficult because + +503 +00:29:35,140 --> 00:29:37,240 +each feature needs an additional subclass. + +504 +00:29:41,540 --> 00:29:44,160 +Ok guys, now we have finished the decorator + +505 +00:29:44,160 --> 00:29:48,700 +pattern Now we are going to talk about another + +506 +00:29:48,700 --> 00:29:52,860 +design pattern similar to the decorator pattern + +507 +00:29:52,860 --> 00:29:57,260 +But + +508 +00:29:57,260 --> 00:30:04,100 +it has another use The + +509 +00:30:04,100 --> 00:30:05,980 +design pattern that we are going to talk about is + +510 +00:30:05,980 --> 00:30:10,360 +called proxy pattern The word proxy has been used + +511 +00:30:10,360 --> 00:30:10,360 +before + +512 +00:30:13,410 --> 00:30:16,610 +Yes, I took the networks, okay? I still haven't + +513 +00:30:16,610 --> 00:30:18,670 +taken the networks. Now, in the networks, there is + +514 +00:30:18,670 --> 00:30:22,530 +a concept called the proxy server. Simply put, the + +515 +00:30:22,530 --> 00:30:26,090 +proxy server, when I have a user who uses the + +516 +00:30:26,090 --> 00:30:28,870 +internet, and here is the internet provider, this + +517 +00:30:28,870 --> 00:30:32,910 +is the internet service provider, okay? Usually, + +518 +00:30:33,050 --> 00:30:34,950 +when I connect to the internet service provider, I + +519 +00:30:34,950 --> 00:30:39,050 +have a proxy.this internet service provider can be + +520 +00:30:39,050 --> 00:30:41,390 +the main unit in the network that provides + +521 +00:30:41,390 --> 00:30:45,790 +internet service and internet companies are not + +522 +00:30:45,790 --> 00:30:47,670 +the ones that provide internet service internet + +523 +00:30:47,670 --> 00:30:50,150 +companies actually take the line from the internet + +524 +00:30:50,150 --> 00:30:54,190 +service provider and I connect to their server + +525 +00:30:54,190 --> 00:30:58,250 +because their server is like a proxy it is not + +526 +00:30:58,250 --> 00:31:00,070 +them that provides internet service, it is them + +527 +00:31:00,070 --> 00:31:01,810 +that connects me to the internet there is a + +528 +00:31:01,810 --> 00:31:03,830 +difference between the two words this is the + +529 +00:31:03,830 --> 00:31:05,770 +source of the internet and this is just a + +530 +00:31:05,770 --> 00:31:10,300 +connectionBut through this saver, he controls it + +531 +00:31:11,000 --> 00:31:14,380 +Here, I add the existing restrictions, such as the + +532 +00:31:14,380 --> 00:31:18,000 +speed of my communication, the date of the + +533 +00:31:18,000 --> 00:31:21,160 +subscription, what I am allowed to do, what are my + +534 +00:31:21,160 --> 00:31:24,300 +rights, everything is controlled through the + +535 +00:31:24,300 --> 00:31:27,460 +server. This is what we call the proxy server, + +536 +00:31:28,020 --> 00:31:28,560 +which is the literal translation of the word + +537 +00:31:28,560 --> 00:31:32,900 +proxy, the agent, or in our language, we call it + +538 +00:31:32,900 --> 00:31:34,240 +the intermediary, for example, because it comes + +539 +00:31:34,240 --> 00:31:37,020 +from somewhere in between the two. So, actually, + +540 +00:31:37,180 --> 00:31:41,900 +the proxy does control.What does control mean? It + +541 +00:31:41,900 --> 00:31:46,980 +means to control. Ok? Now, the term proxy server + +542 +00:31:46,980 --> 00:31:49,240 +was actually born in the networks. Now, the same + +543 +00:31:49,240 --> 00:31:52,560 +concept that I do something in the middle that is + +544 +00:31:52,560 --> 00:31:56,440 +controlled by me in terms of internet + +545 +00:31:56,440 --> 00:32:01,840 +capabilities, we can apply the same idea to object + +546 +00:32:01,840 --> 00:32:07,560 +-oriented programming. Now, how do we apply it? + +547 +00:32:11,220 --> 00:32:16,140 +For example, I have an object here and I want to + +548 +00:32:16,140 --> 00:32:20,360 +restrict access to it or control it. How? For + +549 +00:32:20,360 --> 00:32:23,240 +example, there can be a set of methods. There is a + +550 +00:32:23,240 --> 00:32:25,140 +method that I want to cancel. The client does not + +551 +00:32:25,140 --> 00:32:28,500 +want to see it or use it. Or, for example, there + +552 +00:32:28,500 --> 00:32:33,420 +is a method that I want to postpone its adoption. + +553 +00:32:36,540 --> 00:32:39,660 +In other words, I want to make a control or change + +554 +00:32:39,660 --> 00:32:44,640 +in order to execute this object So how do I make + +555 +00:32:44,640 --> 00:32:47,100 +this change? The same idea as the decorator, that + +556 +00:32:47,100 --> 00:32:50,760 +this object that I control, I wrap it in another + +557 +00:32:50,760 --> 00:32:57,120 +object For example, there are methods x, y and z + +558 +00:32:57,120 --> 00:33:01,620 +For example, I can delete z + +559 +00:33:05,170 --> 00:33:09,510 +The idea behind the decorator is that you create + +560 +00:33:09,510 --> 00:33:11,570 +the same methods x, y, and z, and then what do you + +561 +00:33:11,570 --> 00:33:16,690 +do? You change them, right? Because if I create x, + +562 +00:33:16,810 --> 00:33:22,910 +y, and z, it is as if I blocked someone and the + +563 +00:33:22,910 --> 00:33:27,440 +method stopped working.On the client, right? The + +564 +00:33:27,440 --> 00:33:31,660 +client will use the decorator He will see x and y + +565 +00:33:31,660 --> 00:33:33,800 +that leads to the object inside, but the z that it + +566 +00:33:33,800 --> 00:33:39,160 +has, I deleted it, okay? And another control, we + +567 +00:33:39,160 --> 00:33:42,260 +will see examples of it through the example that + +568 +00:33:42,260 --> 00:33:45,780 +we will see now So really the proxy pattern is a + +569 +00:33:45,780 --> 00:33:49,220 +decorator patternIt is an object that encloses + +570 +00:33:49,220 --> 00:33:51,380 +another object. Why did they separate it into a + +571 +00:33:51,380 --> 00:33:54,540 +design pattern? Because it has another goal. The + +572 +00:33:54,540 --> 00:33:57,700 +decorator's goal is not to change the object + +573 +00:33:57,700 --> 00:34:04,160 +inside, but to add a new functionality. Because + +574 +00:34:04,160 --> 00:34:06,920 +this object encloses this object, but with another + +575 +00:34:06,920 --> 00:34:10,460 +goal to control it and make restrictions on it. + +576 +00:34:10,740 --> 00:34:14,520 +That's it. It is a decorator pattern, but its goal + +577 +00:34:14,520 --> 00:34:17,490 +is different.The goal is to control the object + +578 +00:34:17,490 --> 00:34:21,730 +inside, not to add a new functionality to it. + +579 +00:34:22,570 --> 00:34:25,530 +Before we read this speech, and to understand this + +580 +00:34:25,530 --> 00:34:28,210 +speech when we read it, let's see a practical + +581 +00:34:28,210 --> 00:34:34,210 +example using the decorator petal, excuse me, the + +582 +00:34:34,210 --> 00:34:38,110 +proxy petal. Let me close. + +583 +00:34:59,400 --> 00:35:01,460 +Ok guys, I'm going to show you a simple program + +584 +00:35:01,460 --> 00:35:07,220 +I'm going to run it, and this program is an image + +585 +00:35:07,220 --> 00:35:09,660 +gallery We all know image gallery, which is images + +586 +00:35:09,660 --> 00:35:12,960 +that do next and previous, you see what, a group + +587 +00:35:12,960 --> 00:35:14,860 +of images Because this, for example, of course, + +588 +00:35:14,960 --> 00:35:16,700 +when the program starts working, it loads a group + +589 +00:35:16,700 --> 00:35:19,080 +of images, and then down here, but it's not clear, + +590 +00:35:19,860 --> 00:35:21,460 +it's not clear, yes, there are two buttons, their + +591 +00:35:21,460 --> 00:35:24,340 +name is next and previous, okay? These are clear, + +592 +00:35:24,460 --> 00:35:27,030 +that is, part of themIt's not about the design, I + +593 +00:35:27,030 --> 00:35:29,690 +did it quickly, yesterday, okay? So when you come + +594 +00:35:29,690 --> 00:35:32,850 +and do, for example, next, what do I do? Yes, I go + +595 +00:35:32,850 --> 00:35:35,850 +to the second picture, and so on, okay? And then I + +596 +00:35:35,850 --> 00:35:40,810 +go back to what? To the first one This is a common + +597 +00:35:40,810 --> 00:35:42,190 +application, you can find it on the web, you can + +598 +00:35:42,190 --> 00:35:47,740 +find it on mobile, on any program Now, the idea in + +599 +00:35:47,740 --> 00:35:49,980 +this application is to quickly go through the + +600 +00:35:49,980 --> 00:35:51,700 +code. We are not talking about the GUI, but we + +601 +00:35:51,700 --> 00:35:54,460 +want to see how it is done. Actually, the first + +602 +00:35:54,460 --> 00:35:58,940 +thing I run is mainly the image paths. All the + +603 +00:35:58,940 --> 00:36:03,080 +photos are in the working directory, so I just put + +604 +00:36:03,080 --> 00:36:07,000 +their names. Then I have a playlist here of the + +605 +00:36:07,000 --> 00:36:11,550 +image icon type. This array will be empty. The + +606 +00:36:11,550 --> 00:36:13,930 +idea is that when the program starts, it will go + +607 +00:36:13,930 --> 00:36:17,270 +to these images, read them, download them as image + +608 +00:36:17,270 --> 00:36:20,610 +icons, and put them in this array. And then it + +609 +00:36:20,610 --> 00:36:23,250 +will go away from where? From this array. Its name + +610 +00:36:23,250 --> 00:36:27,010 +is images. Okay? So the image path is tracks, and + +611 +00:36:27,010 --> 00:36:30,330 +this is where we put the images. So really, as + +612 +00:36:30,330 --> 00:36:32,170 +soon as the program starts, it is supposed to + +613 +00:36:32,170 --> 00:36:36,590 +download these images and upload them to this + +614 +00:36:36,590 --> 00:36:40,930 +array. Are you with me guys? Okay. Because this is + +615 +00:36:40,930 --> 00:36:43,750 +an index made for tracking, not for decreasing or + +616 +00:36:43,750 --> 00:36:43,930 +decreasing. + +617 +00:36:47,850 --> 00:36:51,370 +Because this is a GUI code, we come to the main + +618 +00:36:51,370 --> 00:36:53,850 +code. This is the code of the constructor. This is + +619 +00:36:53,850 --> 00:36:56,610 +the constructor of the current class. As soon as + +620 +00:36:56,610 --> 00:36:59,490 +it starts working, it executes this code. Look at + +621 +00:36:59,490 --> 00:37:03,030 +it. It creates a loop. Loop on whom? On the + +622 +00:37:03,030 --> 00:37:05,970 +tracks. Every track that it creates, it creates an + +623 +00:37:05,970 --> 00:37:12,300 +image icon and puts it on this array.and then it + +624 +00:37:12,300 --> 00:37:16,260 +executes a method called update image what is + +625 +00:37:16,260 --> 00:37:21,320 +update image? it is a simple method when I click + +626 +00:37:21,320 --> 00:37:23,540 +on the button, there is no next or previous button + +627 +00:37:23,540 --> 00:37:27,760 +it only changes the index, previous goes with + +628 +00:37:27,760 --> 00:37:35,070 +minus one and plus increases with one Of course, I + +629 +00:37:35,070 --> 00:37:37,770 +did something, when I reach the end, I go back to + +630 +00:37:37,770 --> 00:37:39,690 +the beginning, and whenever it changes the index, + +631 +00:37:39,730 --> 00:37:42,650 +it executes the method update. What does the + +632 +00:37:42,650 --> 00:37:44,510 +method update do? Very simple, I go to the image + +633 +00:37:44,510 --> 00:37:49,850 +label, which is in the middle, the user interface + +634 +00:37:49,850 --> 00:37:52,090 +is simple, there is an image label, there is a + +635 +00:37:52,090 --> 00:37:54,930 +next button and a previous button, so whenever I + +636 +00:37:54,930 --> 00:37:57,210 +say next or previous, it will go and edit the + +637 +00:37:57,210 --> 00:37:59,530 +index and tell it to go to the image label and set + +638 +00:37:59,530 --> 00:38:02,420 +icon, and change the image and go to the array + +639 +00:38:02,420 --> 00:38:05,640 +images and get mail and so on until now is there a + +640 +00:38:05,640 --> 00:38:08,340 +difficult case? yes? no? did you find it guys? + +641 +00:38:08,440 --> 00:38:11,820 +where is the problem in this application? the + +642 +00:38:11,820 --> 00:38:13,600 +problem in the application is that as soon as it + +643 +00:38:13,600 --> 00:38:16,460 +works it will go here here is the problem did you + +644 +00:38:16,460 --> 00:38:19,880 +see this loop? it will go and download all the + +645 +00:38:19,880 --> 00:38:25,000 +images and put them in the array images this means + +646 +00:38:25,000 --> 00:38:28,110 +that I have for example 1000 imagesand the + +647 +00:38:28,110 --> 00:38:31,990 +pictures are big, it will take a lot of time and + +648 +00:38:31,990 --> 00:38:34,750 +to show you the time, I did a simple thing, I + +649 +00:38:34,750 --> 00:38:38,150 +calculated the time before you download it, yes, + +650 +00:38:38,630 --> 00:38:41,850 +in the beginning, this line brings the start time, + +651 +00:38:42,410 --> 00:38:45,390 +and after downloading, what did you bring here?The + +652 +00:38:45,390 --> 00:38:48,370 +end time, then I put the end time minus the start + +653 +00:38:48,370 --> 00:38:50,390 +time and divided it by a million to get me the + +654 +00:38:50,390 --> 00:38:55,030 +time in milliseconds, okay? So now if I run this + +655 +00:38:55,030 --> 00:38:59,450 +program, it will work and it wrote to me that it + +656 +00:38:59,450 --> 00:39:03,180 +took 301 milliseconds It's not a lot of images, + +657 +00:39:03,280 --> 00:39:09,100 +it's simple. It's 0.3 per second, okay? Someone + +658 +00:39:09,100 --> 00:39:11,780 +says, okay, it's working. This is a small number + +659 +00:39:11,780 --> 00:39:14,640 +of images, and the images are actually small. But + +660 +00:39:14,640 --> 00:39:16,460 +if you bring big images, and the number of images + +661 +00:39:16,460 --> 00:39:19,440 +is big, this image is going to get smaller and + +662 +00:39:19,440 --> 00:39:22,140 +smaller. Okay? We at GATE want to do the + +663 +00:39:22,140 --> 00:39:26,060 +following. My goal is that the program does not + +664 +00:39:26,060 --> 00:39:31,470 +load all the images at once. to load the image + +665 +00:39:31,470 --> 00:39:35,230 +only when I press next or previous Ok, it's true + +666 +00:39:35,230 --> 00:39:37,610 +that when I press next, it will take some time but + +667 +00:39:37,610 --> 00:39:39,230 +it's better than waiting for example if I have a + +668 +00:39:39,230 --> 00:39:42,270 +thousand images and each image takes half a + +669 +00:39:42,270 --> 00:39:45,830 +millisecond it will take a long time when it runs + +670 +00:39:45,830 --> 00:39:48,890 +but I want it to run and show only the first image + +671 +00:39:48,890 --> 00:39:52,710 +and then when it does next or previous it will + +672 +00:39:52,710 --> 00:39:56,050 +load the next image or the previous one I want to + +673 +00:39:56,050 --> 00:40:00,720 +delay the process of loading images when neededHow + +674 +00:40:00,720 --> 00:40:03,240 +can I do it with a simple trick without changing + +675 +00:40:03,240 --> 00:40:08,960 +the client's code? Where is the trick? The class + +676 +00:40:08,960 --> 00:40:13,100 +ImageIcon is the problem. If I create an ImageIcon + +677 +00:40:13,100 --> 00:40:16,880 +and pass a path to it, this creation of the + +678 +00:40:16,880 --> 00:40:20,460 +ImageIcon is costly. The process of creating a new + +679 +00:40:20,460 --> 00:40:26,000 +ImageIcon is costly. Are you with me or not guys? + +680 +00:40:26,720 --> 00:40:29,780 +This line, the new image icon, is what takes all + +681 +00:40:29,780 --> 00:40:32,600 +the time. So if you execute 10 times on 10 images, + +682 +00:40:32,700 --> 00:40:35,980 +it will take a long time. So I want to do a trick, + +683 +00:40:36,460 --> 00:40:40,920 +that this new image icon, we want to delay it for + +684 +00:40:40,920 --> 00:40:43,460 +the moment of need. Are you with me or not guys? + +685 +00:40:44,760 --> 00:40:47,360 +Yes, for the moment of need. So what should I do? + +686 +00:40:47,660 --> 00:40:49,720 +Take it out with me. And at the same time, I don't + +687 +00:40:49,720 --> 00:40:52,810 +want to changeIn the code that I wrote, this is + +688 +00:40:52,810 --> 00:40:55,370 +the code for a simple interface, imagine if the + +689 +00:40:55,370 --> 00:40:57,370 +interface was complicated and you search for the + +690 +00:40:57,370 --> 00:41:00,370 +code, no, we don't modify anything in it I went + +691 +00:41:00,370 --> 00:41:03,670 +and made a new class, look at it with me, I made a + +692 +00:41:03,670 --> 00:41:07,910 +new class, what is it called? Image proxy, and I + +693 +00:41:07,910 --> 00:41:12,060 +made it from the typeImageIcon, in the end, why + +694 +00:41:12,060 --> 00:41:14,120 +did I make it like that? So that the program sees + +695 +00:41:14,120 --> 00:41:17,600 +in this class the object like what? Like the + +696 +00:41:17,600 --> 00:41:20,060 +ImageIcon And actually it's not ImageIcon, it's + +697 +00:41:20,060 --> 00:41:22,020 +actually going to be wrapped inside ImageIcon + +698 +00:41:22,020 --> 00:41:25,160 +Look, it's the same idea as the decorator It's a + +699 +00:41:25,160 --> 00:41:28,520 +kind of component, and it contains inside it a + +700 +00:41:28,520 --> 00:41:30,900 +component It's a kind of ImageIcon, and it + +701 +00:41:30,900 --> 00:41:35,140 +contains inside it an ImageIcon Okay? And why did + +702 +00:41:35,140 --> 00:41:37,000 +I make it stored here? I put another parameter, + +703 +00:41:37,320 --> 00:41:41,210 +what's it called? ImagePath And now look at what + +704 +00:41:41,210 --> 00:41:45,590 +this is The constructor Actually, what does the + +705 +00:41:45,590 --> 00:41:49,910 +constructor pass to it? Let it take the imagePath + +706 +00:41:49,910 --> 00:41:53,690 +And take the imagePath and store it here Because + +707 +00:41:53,690 --> 00:41:56,230 +we also know that as long as this class extends + +708 +00:41:56,230 --> 00:42:00,410 +imageIcon Then it will block the super But which + +709 +00:42:00,410 --> 00:42:04,830 +super will block the super? Empty Of course, it + +710 +00:42:04,830 --> 00:42:08,580 +should be front only This is there even if I + +711 +00:42:08,580 --> 00:42:11,260 +didn't write it. Of course, super-empty will not + +712 +00:42:11,260 --> 00:42:13,600 +load the image. Right or wrong? When is the + +713 +00:42:13,600 --> 00:42:16,500 +problem? If you put image path here, it will load + +714 +00:42:16,500 --> 00:42:16,880 +it here. + +715 +00:42:19,800 --> 00:42:23,000 +Here, we ruined the world. Why? It will load it in + +716 +00:42:23,000 --> 00:42:25,220 +memory. We don't want it to do that. We want to + +717 +00:42:25,220 --> 00:42:29,360 +make it believe that Because if I leave it blank, + +718 +00:42:29,620 --> 00:42:33,940 +it won't load the image. So actually, I created an + +719 +00:42:33,940 --> 00:42:36,740 +image proxy. It's an image icon, and it wraps the + +720 +00:42:36,740 --> 00:42:40,700 +image icon. But this image icon still has a null. + +721 +00:42:41,420 --> 00:42:47,400 +Am I right, guys? So if I come to my application, + +722 +00:42:48,160 --> 00:42:51,400 +this is the loop that creates the image icon. And + +723 +00:42:51,400 --> 00:42:54,540 +instead of an image icon, I wrote an image here. + +724 +00:42:56,120 --> 00:43:01,840 +proxy. That's it. We changed it to image proxy. It + +725 +00:43:01,840 --> 00:43:04,300 +actually creates how many image proxy? With the + +726 +00:43:04,300 --> 00:43:07,240 +number of images. What does the image proxy do? + +727 +00:43:07,760 --> 00:43:11,360 +Nothing. It takes the path and puts it here. Did + +728 +00:43:11,360 --> 00:43:13,580 +it load images in the memory? Did it create an + +729 +00:43:13,580 --> 00:43:17,200 +image icon? No. It did create five or six image + +730 +00:43:17,200 --> 00:43:20,120 +proxies, but all of them have an image icon. What + +731 +00:43:20,120 --> 00:43:24,350 +is its value? Their value.Okay, now the problem is + +732 +00:43:24,350 --> 00:43:27,810 +here, if we do this, + +733 +00:43:30,370 --> 00:43:34,950 +we said that this is a proxy, so when I use this, + +734 +00:43:34,970 --> 00:43:38,850 +who should he use? The image icon, so who is the + +735 +00:43:38,850 --> 00:43:42,750 +main inside this? Did you see what I did? I went + +736 +00:43:42,750 --> 00:43:46,020 +to all the methods in the image icon I made an + +737 +00:43:46,020 --> 00:43:48,560 +override for it, which means for example getImage + +738 +00:43:48,560 --> 00:43:52,240 +and paintIcon and getIconWidth and getIconHeight + +739 +00:43:52,240 --> 00:43:54,820 +How did you know these things? Because I didn't + +740 +00:43:54,820 --> 00:43:58,360 +memorize them Just click on control space and you + +741 +00:43:58,360 --> 00:44:04,860 +will find all the methods in the superclass All + +742 +00:44:04,860 --> 00:44:09,680 +these methods are in the superclass I made them + +743 +00:44:09,680 --> 00:44:13,910 +all overwrite and I did a simple thing look with + +744 +00:44:13,910 --> 00:44:16,610 +me until I got an image of course I got an image, + +745 +00:44:16,690 --> 00:44:19,330 +I'm not the one who will claim it actually when he + +746 +00:44:19,330 --> 00:44:22,290 +comes to do next and previous he will do work and + +747 +00:44:22,290 --> 00:44:24,410 +claim to get an image and get width and height to + +748 +00:44:24,410 --> 00:44:27,830 +draw the image icon but I did something to him, I + +749 +00:44:27,830 --> 00:44:30,790 +told him if you claim to get an image and you find + +750 +00:44:30,790 --> 00:44:33,950 +the image icon empty if you return it to him, go + +751 +00:44:33,950 --> 00:44:39,070 +and do what? take the buff and remove it means you + +752 +00:44:39,070 --> 00:44:39,970 +let him remove it + +753 +00:44:43,040 --> 00:44:45,460 +When he comes to create a get image, when he comes + +754 +00:44:45,460 --> 00:44:48,980 +to draw actually, when he starts the application, + +755 +00:44:49,720 --> 00:44:51,560 +the image proxy does not create an object, it just + +756 +00:44:51,560 --> 00:44:56,100 +takes a path and stores it. When the artist comes + +757 +00:44:56,100 --> 00:44:58,580 +to create next and previous, he sees the image + +758 +00:44:58,580 --> 00:45:00,980 +icon, if it is not a channel, he goes and sees it. + +759 +00:45:01,080 --> 00:45:04,020 +Notice now that this idea here is that I made a + +760 +00:45:04,020 --> 00:45:06,280 +control for the constructor. The constructor + +761 +00:45:06,280 --> 00:45:09,500 +delayed its use for how long when it comes to + +762 +00:45:09,500 --> 00:45:12,820 +create a get image. Like the idea of singleton, + +763 +00:45:13,140 --> 00:45:16,180 +right? So if I get null, do it. But why did I put + +764 +00:45:16,180 --> 00:45:17,540 +the condition? Because after that, if the teacher + +765 +00:45:17,540 --> 00:45:21,020 +gets an image, there is no teacher to return it to + +766 +00:45:21,020 --> 00:45:22,880 +you. Of course, here I also do a redirect. I go + +767 +00:45:22,880 --> 00:45:26,040 +and tell him imageicon.get image. So I actually + +768 +00:45:26,040 --> 00:45:29,380 +use the object inside because I wrapped it. Okay? + +769 +00:45:29,780 --> 00:45:32,420 +And there is also a method called paint icon. What + +770 +00:45:32,420 --> 00:45:34,280 +does this do? It sends. What does it do? It has no + +771 +00:45:34,280 --> 00:45:36,360 +application. What does it do? But I told him, if + +772 +00:45:36,360 --> 00:45:39,520 +you get a paint icon, go and make sure if the + +773 +00:45:39,520 --> 00:45:42,860 +image icon is null, Create it, then go to the + +774 +00:45:42,860 --> 00:45:46,300 +image icon and click on the paint icon. This is a + +775 +00:45:46,300 --> 00:45:49,600 +code not to add a new functionality, but to create + +776 +00:45:49,600 --> 00:45:52,540 +a control. Okay? And it's the same thing with get + +777 +00:45:52,540 --> 00:45:57,680 +-width and get-height. They need the swing to draw + +778 +00:45:57,680 --> 00:46:01,780 +the picture. Also, if it's null, go and create it. + +779 +00:46:03,120 --> 00:46:04,360 +Then click on the image icon and click on get + +780 +00:46:04,360 --> 00:46:06,880 +-width. So really, the real object that I'm + +781 +00:46:06,880 --> 00:46:10,670 +dealing with is this object inside. This is the + +782 +00:46:10,670 --> 00:46:14,450 +truth. This is just a cover. I make fun of the + +783 +00:46:14,450 --> 00:46:17,310 +client that this image proxy is a client just like + +784 +00:46:17,310 --> 00:46:20,230 +the image icon. Okay? But he is covering the image + +785 +00:46:20,230 --> 00:46:24,490 +icon. The whole idea is that I'm not going to tell + +786 +00:46:24,490 --> 00:46:28,250 +him super and give him an image path. I delayed + +787 +00:46:28,250 --> 00:46:31,450 +this step. If you give him an image path, this is + +788 +00:46:31,450 --> 00:46:33,650 +a disaster. Why? This is how they bear on memory. + +789 +00:46:33,910 --> 00:46:37,910 +I delayed this step. When did I delay it? When he + +790 +00:46:37,910 --> 00:46:38,450 +clings to it. + +791 +00:46:44,340 --> 00:46:48,900 +Paint.getImage.getIconHigh Because this idea is + +792 +00:46:48,900 --> 00:46:51,240 +exactly like the idea of the decorator As I used + +793 +00:46:51,240 --> 00:46:56,460 +to make a circle that contains a shape and then in + +794 +00:46:56,460 --> 00:46:59,480 +the draw I say shape.draw Or in the describe I say + +795 +00:46:59,480 --> 00:47:02,000 +shape.describe Right or not? This is the same + +796 +00:47:02,000 --> 00:47:05,880 +thing I go and say getIconWidth I go to the image + +797 +00:47:05,880 --> 00:47:10,130 +icon and say getIconWidthGetIconHeight goes to + +798 +00:47:10,130 --> 00:47:12,330 +ImageIcon and says GetIconHeight, but it creates a + +799 +00:47:12,330 --> 00:47:15,430 +code and gives it a control to make sure that if + +800 +00:47:15,430 --> 00:47:18,730 +it is not created, then create it. Let's see how + +801 +00:47:18,730 --> 00:47:20,070 +this step will make a difference. This is my + +802 +00:47:20,070 --> 00:47:22,610 +application. The application that I changed has + +803 +00:47:22,610 --> 00:47:26,600 +only one thing. It's exactly the same code and + +804 +00:47:26,600 --> 00:47:29,340 +same loop, but now it's saying don't create an + +805 +00:47:29,340 --> 00:47:32,540 +image icon, create an image proxy. So it's going + +806 +00:47:32,540 --> 00:47:36,440 +to create 5 or 6 image proxies, each one + +807 +00:47:36,440 --> 00:47:39,080 +containing only the path of the image. It's not + +808 +00:47:39,080 --> 00:47:41,460 +going to load anything on the memory. What is it + +809 +00:47:41,460 --> 00:47:44,040 +going to load? When it says in the method update, + +810 +00:47:44,500 --> 00:47:48,790 +which appears when I click on the button, I go to + +811 +00:47:48,790 --> 00:47:51,730 +the image label and say set icon and go to images + +812 +00:47:51,730 --> 00:47:54,230 +and say get current image. This set icon + +813 +00:47:54,230 --> 00:47:57,490 +automatically calls the get image and calls the + +814 +00:47:57,490 --> 00:48:00,150 +paint and so on. So when it calls it, if I click + +815 +00:48:00,150 --> 00:48:03,230 +on it, it runs it and then it does the paint and + +816 +00:48:03,230 --> 00:48:06,570 +gets the width and height and so on. Now, how do I + +817 +00:48:06,570 --> 00:48:09,630 +make sure that my code is better? We want to see + +818 +00:48:09,630 --> 00:48:12,710 +the time it took. I changed one line, okay? And + +819 +00:48:12,710 --> 00:48:17,050 +let's make a run for the program. Let's see if I + +820 +00:48:17,050 --> 00:48:24,010 +found the code that gave me 1.44 milliseconds. It + +821 +00:48:24,010 --> 00:48:28,570 +was 300 milliseconds. 300 became 1.44 because I + +822 +00:48:28,570 --> 00:48:31,610 +did not load the image on my memory. It is just to + +823 +00:48:31,610 --> 00:48:36,750 +put the lines. When do you load the image? At the + +824 +00:48:36,750 --> 00:48:39,170 +moment when you press the next button and the + +825 +00:48:39,170 --> 00:48:43,250 +previous button only. it will run because the two + +826 +00:48:43,250 --> 00:48:46,430 +buttons are not visible this is for example next + +827 +00:48:46,430 --> 00:48:48,870 +it shows the second picture and the third picture + +828 +00:48:48,870 --> 00:48:53,950 +it is actually now with each next it executes the + +829 +00:48:53,950 --> 00:48:57,830 +method which is draw or get image if it returns + +830 +00:48:57,830 --> 00:49:00,990 +null it creates and then it says get image so the + +831 +00:49:00,990 --> 00:49:04,050 +picture is actually loaded only during drawing + +832 +00:49:04,050 --> 00:49:08,360 +this is an example that shows me the proxyPattern, + +833 +00:49:08,500 --> 00:49:11,820 +which is exactly the same as the decorator. It is + +834 +00:49:11,820 --> 00:49:14,200 +a decorator pattern. An object wraps another + +835 +00:49:14,200 --> 00:49:16,640 +object. But its purpose is different. The + +836 +00:49:16,640 --> 00:49:19,280 +decorator was an addition of functionality. This + +837 +00:49:19,280 --> 00:49:24,500 +is a control for the object that I wrap. For + +838 +00:49:24,500 --> 00:49:27,700 +example, to delay certain things or to change the + +839 +00:49:27,700 --> 00:49:32,560 +methods available in a certain way.This is an + +840 +00:49:32,560 --> 00:49:33,940 +example that we explained about proxy pattern, + +841 +00:49:34,020 --> 00:49:37,140 +next time we will continue to read the explanation + +842 +00:49:37,140 --> 00:49:40,200 +of proxy pattern and we will see a new design + +843 +00:49:40,200 --> 00:49:45,720 +pattern Do you have any questions guys? Thank you + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Qby3s6rFTeo_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Qby3s6rFTeo_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..5c70bdcf972749f248dbbfef4ce7ae3c85c354bc --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Qby3s6rFTeo_postprocess.srt @@ -0,0 +1,2200 @@ +1 +00:00:05,060 --> 00:00:08,920 +Okay guys, peace be upon you. In this lecture, God + +2 +00:00:08,920 --> 00:00:12,320 +willing, we will go through the semi-trial and + +3 +00:00:12,320 --> 00:00:17,040 +solve it, guys. I mean, so that one knows what are + +4 +00:00:17,040 --> 00:00:21,300 +the correct solutions and the final, the final + +5 +00:00:21,300 --> 00:00:23,020 +test will probably be on the same level, + +6 +00:00:23,300 --> 00:00:26,220 +especially for questions that require UML and + +7 +00:00:26,220 --> 00:00:29,720 +analysis and coding, okay?Of course guys, this + +8 +00:00:29,720 --> 00:00:32,960 +exam has 30 marks, and the final score is 50, + +9 +00:00:33,360 --> 00:00:35,880 +okay? And there is no such thing as getting it + +10 +00:00:35,880 --> 00:00:36,800 +right in the final, getting it right in the + +11 +00:00:36,800 --> 00:00:39,600 +semifinal, it's half and half, and the final is + +12 +00:00:39,600 --> 00:00:45,720 +the final, okay? Then I confirmed something, I + +13 +00:00:45,720 --> 00:00:47,940 +mean I haven't started fixing it yet, but it + +14 +00:00:47,940 --> 00:00:52,820 +turned out that most of the papers were empty, and + +15 +00:00:52,820 --> 00:00:55,220 +this is because most of those who left their + +16 +00:00:55,220 --> 00:00:59,350 +papers empty did not attend Students didn't attend + +17 +00:00:59,350 --> 00:01:02,170 +it, they used to say that the lecture was + +18 +00:01:02,170 --> 00:01:03,990 +recorded, so I attended it And I didn't attend the + +19 +00:01:03,990 --> 00:01:07,670 +lecture that was recorded The advantage of + +20 +00:01:07,670 --> 00:01:09,850 +attending it is that you have obligation, you come + +21 +00:01:09,850 --> 00:01:12,570 +and attend it, you commit yourself to attend the + +22 +00:01:12,570 --> 00:01:15,090 +lecture and you understand it from the lecture, + +23 +00:01:15,210 --> 00:01:17,710 +ok? But the one who didn't attend it, he says that + +24 +00:01:17,710 --> 00:01:21,250 +he will attend it alone at home, and at home he is + +25 +00:01:21,250 --> 00:01:23,550 +lazy and didn't attend it, and he comes and says + +26 +00:01:23,550 --> 00:01:27,960 +that I didn't study all the materialOkay? And then + +27 +00:01:27,960 --> 00:01:29,240 +he comes and argues with me and tells me to + +28 +00:01:29,240 --> 00:01:31,700 +calculate the final and calculate it. So no, I + +29 +00:01:31,700 --> 00:01:33,820 +will not interfere in this matter at all. The half + +30 +00:01:33,820 --> 00:01:38,640 +is half and the final is final guys. Okay? Okay + +31 +00:01:38,640 --> 00:01:42,540 +guys, let's move on to the questions. Now, the + +32 +00:01:42,540 --> 00:01:46,040 +first question is simple, it is supposed to gather + +33 +00:01:46,040 --> 00:01:51,460 +marks from it, okay? And then it is matching, and + +34 +00:01:51,460 --> 00:01:54,760 +all the sentences that I brought in it are copy + +35 +00:01:54,760 --> 00:01:57,840 +-paste from the slide without changing any word or + +36 +00:01:57,840 --> 00:01:59,800 +style, so that you don't say English, you don't + +37 +00:01:59,800 --> 00:02:01,820 +know how to translate, it is the same thing that + +38 +00:02:01,820 --> 00:02:05,120 +is in the slide. Then, when I was explaining + +39 +00:02:05,120 --> 00:02:08,280 +design patterns, I was always focusing on + +40 +00:02:11,490 --> 00:02:14,770 +Singleton calls from anywhere and one object is + +41 +00:02:14,770 --> 00:02:20,010 +created. Factory method, I put the common code in + +42 +00:02:20,010 --> 00:02:22,630 +the superclass and I make the subclasses create + +43 +00:02:22,630 --> 00:02:24,630 +objects or put different code. + +44 +00:02:27,090 --> 00:02:30,990 +Strategy, instead of having F statements, I make + +45 +00:02:30,990 --> 00:02:34,550 +encapsulate for each algorithm in one class and I + +46 +00:02:34,550 --> 00:02:37,910 +change it. For example, I sent him the strategy to + +47 +00:02:37,910 --> 00:02:40,850 +work on it at any time, okay? So every design + +48 +00:02:40,850 --> 00:02:43,630 +pattern has key words that I always repeat and add + +49 +00:02:43,630 --> 00:02:47,750 +to it. These key words. And you usually look for + +50 +00:02:47,750 --> 00:02:50,110 +them in this question. Come and grab a part of it. + +51 +00:02:50,830 --> 00:02:53,910 +Now, the first thing is objects which behave + +52 +00:02:53,910 --> 00:02:58,070 +similar as the real object. But these mocks, I + +53 +00:02:58,070 --> 00:03:01,520 +mean here I am in the question Yes, I'm supposed + +54 +00:03:01,520 --> 00:03:05,740 +to remove it, it's a mistake The answer is in the + +55 +00:03:05,740 --> 00:03:08,160 +question But these MOOCs are not programmed, they + +56 +00:03:08,160 --> 00:03:10,560 +are configured to behave in a certain predefined + +57 +00:03:10,560 --> 00:03:14,720 +way We said that MOOCs are actually classifiers + +58 +00:03:14,720 --> 00:03:17,760 +for the main class And where do we use these in + +59 +00:03:17,760 --> 00:03:20,820 +MOOCs? In testing, okay? So this is the first + +60 +00:03:20,820 --> 00:03:27,400 +answer of MOOCs B, it defines Of course, you put + +61 +00:03:27,400 --> 00:03:32,050 +the answer here Okay, so you say A and you put 10 + +62 +00:03:32,050 --> 00:03:35,670 +for example It defines an interface for creating + +63 +00:03:35,670 --> 00:03:38,970 +an object, but let subclasses decide which class + +64 +00:03:38,970 --> 00:03:43,950 +to instantiate Let subclasses decide which class + +65 +00:03:43,950 --> 00:03:47,490 +to instantiate I encourage subclasses to create + +66 +00:03:47,490 --> 00:03:53,390 +this factory method right away Next, it provides a + +67 +00:03:53,390 --> 00:03:56,270 +global point of access to that instance That's it, + +68 +00:03:56,470 --> 00:03:59,250 +you don't have to continue readingThis is + +69 +00:03:59,250 --> 00:04:08,170 +singleton In this case, the same instance + +70 +00:04:08,170 --> 00:04:13,070 +can be used from everywhere Being + +71 +00:04:13,070 --> 00:04:15,570 +impossible to invoke directly the constructor + +72 +00:04:20,590 --> 00:04:26,390 +It lets subclasses redefine certain steps of an + +73 +00:04:26,390 --> 00:04:30,670 +algorithm without letting them to change the + +74 +00:04:30,670 --> 00:04:31,550 +algorithm structure + +75 +00:04:43,580 --> 00:04:47,040 +it is the concept in which objects get other + +76 +00:04:47,040 --> 00:04:52,640 +required objects from outside you get the object + +77 +00:04:52,640 --> 00:04:56,560 +you need from outside this is dependency injection + +78 +00:04:56,560 --> 00:05:00,160 +and it can also be aggregation but I didn't put + +79 +00:05:00,160 --> 00:05:03,440 +aggregation among the options so the answer is + +80 +00:05:03,440 --> 00:05:06,140 +dependency injection + +81 +00:05:09,470 --> 00:05:11,770 +The degree to which all elements of a component + +82 +00:05:11,770 --> 00:05:14,150 +are directed towards a single task and all + +83 +00:05:14,150 --> 00:05:16,910 +elements directed towards the task are contained + +84 +00:05:16,910 --> 00:05:19,950 +in a single component To what extent the + +85 +00:05:19,950 --> 00:05:22,770 +components have the same goal and serve the same + +86 +00:05:22,770 --> 00:05:25,990 +task? We said that there are two important + +87 +00:05:25,990 --> 00:05:30,170 +concepts which are coupling and cohesion Coupling + +88 +00:05:30,170 --> 00:05:31,950 +is the extent of the connection between different + +89 +00:05:31,950 --> 00:05:35,050 +parts which means that I imitate coupling Cohesion + +90 +00:05:35,050 --> 00:05:39,580 +is the part which consists of many classesI always + +91 +00:05:39,580 --> 00:05:43,640 +put the classes together or the methods that have + +92 +00:05:43,640 --> 00:05:46,340 +the same importance in the same class this is what + +93 +00:05:46,340 --> 00:05:51,740 +we call cohesion it + +94 +00:05:51,740 --> 00:05:56,700 +creates objects without exposing the instantiation + +95 +00:05:56,700 --> 00:05:58,940 +logic what does it mean? it creates objects + +96 +00:05:58,940 --> 00:06:02,510 +without showing the steps of creation or the way + +97 +00:06:02,510 --> 00:06:05,430 +of creation to the client and refers to the newly + +98 +00:06:05,430 --> 00:06:08,990 +created object through a common interface that is, + +99 +00:06:09,050 --> 00:06:11,590 +the object that is created is returned from the + +100 +00:06:11,590 --> 00:06:14,270 +original interface or from the previous type this + +101 +00:06:14,270 --> 00:06:18,150 +is of course the factor in the factor you say + +102 +00:06:18,150 --> 00:06:21,790 +create like this and the creation process or the + +103 +00:06:21,790 --> 00:06:25,030 +claim to new occurs in the class of the factor + +104 +00:06:25,030 --> 00:06:30,520 +itselfIt defines a family of algorithms + +105 +00:06:30,520 --> 00:06:37,200 +encapsulate each one in a separate class and + +106 +00:06:37,200 --> 00:06:45,860 +make them interchangeable it + +107 +00:06:45,860 --> 00:06:48,840 +lets the algorithm vary independently at runtime + +108 +00:06:48,840 --> 00:06:53,280 +from the clientAlgorithm is very independent, it + +109 +00:06:53,280 --> 00:06:55,340 +can change the algorithm and make a new algorithm + +110 +00:06:55,340 --> 00:06:58,980 +without changing the client. This explains the + +111 +00:06:58,980 --> 00:07:04,540 +strategy pattern. Next, it supports many-to-many + +112 +00:07:04,540 --> 00:07:08,180 +communication directly to the bus. + +113 +00:07:11,210 --> 00:07:13,810 +The last one is degree of dependence among + +114 +00:07:13,810 --> 00:07:16,510 +software components degree of dependence between + +115 +00:07:16,510 --> 00:07:19,950 +software components If you remove all the existing + +116 +00:07:19,950 --> 00:07:24,530 +options, you will still have the builder and the + +117 +00:07:24,530 --> 00:07:28,630 +lazy instantiation and coupling. What does this + +118 +00:07:28,630 --> 00:07:34,510 +mean? Coupling. Ok guys? How many people answered + +119 +00:07:34,510 --> 00:07:38,350 +this question correctly? Ok, good. How many marks + +120 +00:07:38,350 --> 00:07:38,790 +did you guarantee? 10 marks? + +121 +00:07:44,470 --> 00:07:48,650 +How many questions? 4 questions? Yes, out of 40, + +122 +00:07:48,770 --> 00:07:51,350 +and then it goes down to 30, okay? + +123 +00:07:53,250 --> 00:07:55,230 +Because the next question, in the UMLE class + +124 +00:07:55,230 --> 00:07:58,370 +diagram shown below, the class news publisher, + +125 +00:07:59,110 --> 00:08:03,270 +when you first see the news publisher, you already + +126 +00:08:03,270 --> 00:08:06,810 +have an example in the slides on the news + +127 +00:08:06,810 --> 00:08:10,210 +publisher.Okay, it is very similar to this + +128 +00:08:10,210 --> 00:08:14,210 +question The news publisher represents a software + +129 +00:08:14,210 --> 00:08:17,890 +component that retrieves news from different news + +130 +00:08:17,890 --> 00:08:20,150 +agencies, that is, it brings news from news + +131 +00:08:20,150 --> 00:08:21,930 +agencies, for example, it brought the news here + +132 +00:08:21,930 --> 00:08:26,150 +and then sends it to multiple subscribers, for + +133 +00:08:26,150 --> 00:08:30,550 +example, it sends it to the SMS subscriber and the + +134 +00:08:30,550 --> 00:08:32,630 +email subscriber, that is, it brings the news and + +135 +00:08:32,630 --> 00:08:35,790 +sends it to these twoOf course, in order for him + +136 +00:08:35,790 --> 00:08:38,110 +to be able to send this and that, in the current + +137 +00:08:38,110 --> 00:08:40,610 +design in front of you, he has a reference from + +138 +00:08:40,610 --> 00:08:43,710 +the SMS subscriber and from the email subscriber + +139 +00:08:43,710 --> 00:08:51,610 +The news publisher maintains reference to every + +140 +00:08:51,610 --> 00:08:55,210 +subscriber whom it needs to send the news to He + +141 +00:08:55,210 --> 00:08:58,090 +has a reference for the SMS subscriber and the + +142 +00:08:58,090 --> 00:09:02,110 +email subscriberThe first part is what is the + +143 +00:09:02,110 --> 00:09:06,790 +problem of the current design in terms of software + +144 +00:09:06,790 --> 00:09:07,590 +extensibility? + +145 +00:09:09,950 --> 00:09:13,610 +All the design patterns have a problem with the + +146 +00:09:13,610 --> 00:09:18,190 +high-capacity software. This is the main point. If + +147 +00:09:18,190 --> 00:09:21,090 +I add a new subscriber, I will have to edit the + +148 +00:09:21,090 --> 00:09:22,550 +newspaper. If I write this sentence, that's it. + +149 +00:09:25,110 --> 00:09:27,650 +Ok? This is the main point. It's not enough to say + +150 +00:09:27,650 --> 00:09:30,770 +that coupling is big. What is coupling big? You + +151 +00:09:30,770 --> 00:09:33,850 +have to explain it. Ok? All design patterns solve + +152 +00:09:33,850 --> 00:09:36,550 +the problem of coupling. You say that coupling + +153 +00:09:36,550 --> 00:09:39,130 +between a news publisher and every subscriber is + +154 +00:09:39,130 --> 00:09:43,050 +clear. Ok? The main point is that when you put a + +155 +00:09:43,050 --> 00:09:45,770 +new subscriber, you have to adjust to what? To the + +156 +00:09:45,770 --> 00:09:47,950 +news publisher. Then you use your brain. The + +157 +00:09:47,950 --> 00:09:51,490 +answer to this question is in the second category. + +158 +00:09:53,590 --> 00:09:57,070 +This is the second answer to the question. Look at + +159 +00:09:57,070 --> 00:09:59,890 +what I'm saying. Use the appropriate design + +160 +00:09:59,890 --> 00:10:07,570 +pattern. Why? To allow for + +161 +00:10:07,570 --> 00:10:10,850 +attaching a new subscriber to the system without + +162 +00:10:10,850 --> 00:10:15,830 +modifying a new publisher. This is the problem. I + +163 +00:10:15,830 --> 00:10:18,070 +explained to you. Create a design pattern to solve + +164 +00:10:18,070 --> 00:10:21,690 +this problem. Yes, this is the problem.Okay, if I + +165 +00:10:21,690 --> 00:10:23,890 +took this and wrote it here, that's it, in Arabic, + +166 +00:10:24,070 --> 00:10:29,650 +Hindi, anything, no problem. But I'm surprised by + +167 +00:10:29,650 --> 00:10:37,990 +what he left blank. Draw a UML class + +168 +00:10:37,990 --> 00:10:41,930 +diagram to demonstrate the solution. You should + +169 +00:10:41,930 --> 00:10:44,430 +show any changes, new attributes, methods, + +170 +00:10:44,610 --> 00:10:46,850 +relationships, and additional code when necessary. + +171 +00:10:47,910 --> 00:10:50,470 +Be careful guys, because there are many mistakes + +172 +00:10:50,470 --> 00:10:54,350 +in things. When I ask you to make a UML design + +173 +00:10:54,350 --> 00:10:58,650 +diagram, the important things that have to do with + +174 +00:10:58,650 --> 00:11:03,810 +the design pattern are shown. For example, here + +175 +00:11:03,810 --> 00:11:06,930 +this design pattern we have to count to apply it. + +176 +00:11:07,440 --> 00:11:11,720 +Okay? Of course, I didn't tell you to apply the + +177 +00:11:11,720 --> 00:11:14,120 +observer pattern Okay? I told you to look for a + +178 +00:11:14,120 --> 00:11:18,020 +suitable design pattern to improve this design So, + +179 +00:11:18,080 --> 00:11:21,420 +it is known as the observer that we apply So, the + +180 +00:11:21,420 --> 00:11:23,760 +first thing you have to do is to make an interface + +181 +00:11:23,760 --> 00:11:26,080 +of one type Which is, for example, what do we call + +182 +00:11:26,080 --> 00:11:32,040 +it? Subscriber And put in it a method NewsUpdated + +183 +00:11:32,040 --> 00:11:37,410 +Or update whatever you wantand this is in Noah's + +184 +00:11:37,410 --> 00:11:41,390 +string because this is an interface that I want to + +185 +00:11:41,390 --> 00:11:44,730 +make from it + +186 +00:11:44,730 --> 00:11:49,530 +and if I don't make it again, it's not a problem, + +187 +00:11:49,590 --> 00:11:53,050 +the idea is important this is for example SMS + +188 +00:11:53,050 --> 00:12:03,050 +subscriber and this is email and + +189 +00:12:03,050 --> 00:12:03,670 +this is what? + +190 +00:12:07,510 --> 00:12:12,050 +For Twitter Of course, everyone has to implement a + +191 +00:12:12,050 --> 00:12:15,950 +news update So if you write it and if you don't + +192 +00:12:15,950 --> 00:12:21,750 +write it, it's still clear, okay? Of course, there + +193 +00:12:21,750 --> 00:12:23,130 +are adjustments that we make, where? The main + +194 +00:12:23,130 --> 00:12:28,150 +adjustments are in the news publisher News + +195 +00:12:30,850 --> 00:12:33,450 +Publisher You have to explain to me all the + +196 +00:12:33,450 --> 00:12:35,510 +modifications that have to be done through the url + +197 +00:12:35,510 --> 00:12:38,330 +The first modification is that I have to have a + +198 +00:12:38,330 --> 00:12:41,710 +list of what? Of the subscriber type So here I + +199 +00:12:41,710 --> 00:12:44,930 +have to have listeners for example or subscribers + +200 +00:12:44,930 --> 00:12:52,710 +This listeners type is what? List of subscriber + +201 +00:12:52,710 --> 00:12:58,670 +type And what do you have here? Association + +202 +00:12:58,670 --> 00:13:03,450 +relationship Then, of course, since you did this, + +203 +00:13:03,490 --> 00:13:06,470 +you have to make a method add, listener or + +204 +00:13:06,470 --> 00:13:09,710 +subscriber Not a condition, if you don't put + +205 +00:13:09,710 --> 00:13:11,870 +remove, it's not a problem, it's not essential, + +206 +00:13:12,090 --> 00:13:18,210 +okay? S here means subscriber If you want to + +207 +00:13:18,210 --> 00:13:22,170 +remove, do it You also have to make a method + +208 +00:13:22,170 --> 00:13:27,030 +called publish or send to all, okay? I will make + +209 +00:13:27,030 --> 00:13:30,070 +the method publish to show me how the code looks + +210 +00:13:30,070 --> 00:13:34,080 +likeYes, this is what I want to see, I want to see + +211 +00:13:34,080 --> 00:13:37,000 +that you tell me that I want to do for each O for + +212 +00:13:37,000 --> 00:13:44,960 +example or for each in listeners for + +213 +00:13:44,960 --> 00:13:52,200 +each O in listeners O.news update + +214 +00:13:52,200 --> 00:13:54,380 +and you send him the news here for example + +215 +00:14:00,680 --> 00:14:02,740 +But if you do it like that, it's enough. These are + +216 +00:14:02,740 --> 00:14:05,040 +the basic things you need to know. Because there + +217 +00:14:05,040 --> 00:14:06,120 +are things here that you can write, for example, + +218 +00:14:06,280 --> 00:14:08,280 +string let it's do, it's okay if you write it but + +219 +00:14:08,280 --> 00:14:13,620 +don't write it. It doesn't mean much. Okay? These + +220 +00:14:13,620 --> 00:14:16,020 +are the things you need to know. This is the + +221 +00:14:16,020 --> 00:14:21,440 +solution. How? Yes, it's okay. Red, yellow, + +222 +00:14:21,460 --> 00:14:23,380 +whatever you want. Okay? It's okay. The important + +223 +00:14:23,380 --> 00:14:24,600 +thing is to explain the things you need to know. + +224 +00:14:25,100 --> 00:14:30,190 +Okay?So this is the answer to the simple question + +225 +00:14:30,190 --> 00:14:37,670 +Notice + +226 +00:14:37,670 --> 00:14:40,790 +that the questions are gradually becoming more + +227 +00:14:40,790 --> 00:14:45,890 +difficult Now the next question In the code + +228 +00:14:45,890 --> 00:14:49,210 +snippet shown below, the method assemble is + +229 +00:14:49,210 --> 00:14:53,190 +responsible for assembling a computer machineSo + +230 +00:14:53,190 --> 00:14:55,890 +you look at it, this method is simple, in it I + +231 +00:14:55,890 --> 00:15:02,230 +create a processor first, then I add speed, then I + +232 +00:15:02,230 --> 00:15:06,790 +add RAM, then I add size, then I add hard drive, + +233 +00:15:06,890 --> 00:15:09,490 +then I add size, then I add processor, link, ram, + +234 +00:15:09,610 --> 00:15:15,140 +link, driveSo when you look at this question, you + +235 +00:15:15,140 --> 00:15:17,880 +will remember the example of the maze, which we + +236 +00:15:17,880 --> 00:15:21,420 +took, right or not? So if you studied the maze, + +237 +00:15:21,660 --> 00:15:26,120 +you will remember the same shape, okay? So I tell + +238 +00:15:26,120 --> 00:15:28,540 +you here that the method assemble is responsible + +239 +00:15:28,540 --> 00:15:31,060 +for assembling a computer machine from its + +240 +00:15:31,060 --> 00:15:34,220 +elementary parts, processor, RAM, hard drive Now + +241 +00:15:34,220 --> 00:15:38,060 +you need to create other computer assemblers, for + +242 +00:15:38,060 --> 00:15:41,280 +example AMD computer assembler, MAC computer + +243 +00:15:41,280 --> 00:15:47,500 +assemblerThese two have to use the same logic but + +244 +00:15:47,500 --> 00:15:51,380 +using different parts. They have to use the same + +245 +00:15:51,380 --> 00:15:55,400 +logic, this one, but they have to change only the + +246 +00:15:55,400 --> 00:16:02,080 +objects they want to create. For example, AMD + +247 +00:16:02,080 --> 00:16:08,260 +computer assembler has to use AMD processor, these + +248 +00:16:08,260 --> 00:16:11,400 +types for example. Mac wants to use all the + +249 +00:16:11,400 --> 00:16:14,920 +components of Mac, for example. Because I'm + +250 +00:16:14,920 --> 00:16:17,580 +telling you here, what design pattern you need to + +251 +00:16:17,580 --> 00:16:21,940 +use to achieve this purpose. Okay? Rewrite the + +252 +00:16:21,940 --> 00:16:24,320 +computer assembly class to apply the pattern. Pay + +253 +00:16:24,320 --> 00:16:26,660 +attention to me here. By the way, two answers may + +254 +00:16:26,660 --> 00:16:31,980 +be correct. If you told me the factor method, it's + +255 +00:16:31,980 --> 00:16:34,920 +definitely correct. Okay? Why? Because the idea, + +256 +00:16:35,020 --> 00:16:36,640 +what did he tell you? This is the main point of + +257 +00:16:36,640 --> 00:16:41,120 +the question. Use the same logic.But using + +258 +00:16:41,120 --> 00:16:43,900 +different parts. Meaning that you have to modify + +259 +00:16:43,900 --> 00:16:47,440 +the design of this code in order to preserve the + +260 +00:16:47,440 --> 00:16:52,720 +logic itself, but allow the subclasses to create + +261 +00:16:52,720 --> 00:16:56,280 +objects of different types. Okay? So the idea is + +262 +00:16:56,280 --> 00:16:59,290 +that instead of U being present here, you have to + +263 +00:16:59,290 --> 00:17:02,310 +make it create processor and instead of sd-ram + +264 +00:17:02,310 --> 00:17:07,110 +create ram and instead of cgate create hard drive + +265 +00:17:07,110 --> 00:17:09,490 +on the basis of subclasses it makes override for + +266 +00:17:09,490 --> 00:17:12,330 +whom? for these methods anyway let's go back to + +267 +00:17:12,330 --> 00:17:14,390 +our question what is the design pattern? if you + +268 +00:17:14,390 --> 00:17:16,750 +wrote a factor method it is correct and if you + +269 +00:17:16,750 --> 00:17:20,850 +wrote a template it is also correct because the + +270 +00:17:20,850 --> 00:17:22,950 +same principle is that you have to keep the steps + +271 +00:17:24,260 --> 00:17:26,460 +Yes, but this changes some details, so whoever + +272 +00:17:26,460 --> 00:17:29,700 +wrote a template, in the end, see how there is + +273 +00:17:29,700 --> 00:17:33,060 +flexibility in the answers, okay? And when I + +274 +00:17:33,060 --> 00:17:34,460 +explained the factory method, I said that the + +275 +00:17:34,460 --> 00:17:36,540 +factory method is similar to what? In the + +276 +00:17:36,540 --> 00:17:38,180 +template, so if you understand this way or this + +277 +00:17:38,180 --> 00:17:42,380 +way, both of them are correct, even though the + +278 +00:17:42,380 --> 00:17:44,900 +closest is the factory method, because actually + +279 +00:17:44,900 --> 00:17:46,620 +the step that changes is the creation of the + +280 +00:17:46,620 --> 00:17:48,300 +object, so what does it have to do with creation, + +281 +00:17:48,480 --> 00:17:51,770 +so what is it? The factory methodBut I will + +282 +00:17:51,770 --> 00:17:54,330 +consider the creation as a step, it will change, + +283 +00:17:54,450 --> 00:17:56,630 +so I will consider the template also correct. + +284 +00:17:59,190 --> 00:17:59,590 +Okay, + +285 +00:18:02,250 --> 00:18:03,430 +what I am saying is that the template is also + +286 +00:18:03,430 --> 00:18:06,690 +correct. Because the important thing for me is to + +287 +00:18:06,690 --> 00:18:10,430 +rewrite the computer assembler class to apply the + +288 +00:18:10,430 --> 00:18:12,650 +pattern. Because here be careful because there is + +289 +00:18:12,650 --> 00:18:16,230 +also a mistake in this. Because I want to rewrite + +290 +00:18:16,230 --> 00:18:19,780 +the assembler class. But the new class that I want + +291 +00:18:19,780 --> 00:18:23,820 +to do must perform the same role as this class. + +292 +00:18:24,840 --> 00:18:27,040 +Okay? What does it mean? It means that you have to + +293 +00:18:27,040 --> 00:18:27,660 +do the following. + +294 +00:18:42,160 --> 00:18:43,940 +Is this better maybe? Yes. + +295 +00:18:47,590 --> 00:18:54,090 +Okay, public class computer + +296 +00:18:54,090 --> 00:18:58,490 +assembler He didn't tell you to make a super class + +297 +00:18:58,490 --> 00:19:01,590 +or something like that Then inside you have to put + +298 +00:19:01,590 --> 00:19:08,250 +the method which is public void assembler + +299 +00:19:15,430 --> 00:19:20,970 +The first line is processor P + +300 +00:19:20,970 --> 00:19:24,830 +for example, instead of new processor, you have to + +301 +00:19:24,830 --> 00:19:30,210 +write here create processor + +302 +00:19:30,210 --> 00:19:32,730 +And as long as we want this class not to change + +303 +00:19:32,730 --> 00:19:39,750 +its code, you come here and write public No, not + +304 +00:19:39,750 --> 00:19:41,230 +abstract, processor + +305 +00:19:53,760 --> 00:20:01,500 +create return new Intel + +306 +00:20:06,960 --> 00:20:08,420 +Processor, this is correct, the code should not + +307 +00:20:08,420 --> 00:20:11,360 +change for computer assembler, what they do before + +308 +00:20:11,360 --> 00:20:14,460 +should be the same as what they do after Now, what + +309 +00:20:14,460 --> 00:20:16,820 +abstract did with me is also correct, he + +310 +00:20:16,820 --> 00:20:19,100 +understood that he wants to make it abstract in + +311 +00:20:19,100 --> 00:20:24,640 +order to make it computer assembler, okay? But he + +312 +00:20:24,640 --> 00:20:27,300 +didn't do what I asked him to do, that I told you + +313 +00:20:27,300 --> 00:20:30,920 +to rewrite, write the same class so that its + +314 +00:20:30,920 --> 00:20:34,370 +function remains as it is, but you supportTo make + +315 +00:20:34,370 --> 00:20:37,130 +a new assembler with different components We + +316 +00:20:37,130 --> 00:20:42,230 +divide it into a simple thing The next thing is to + +317 +00:20:42,230 --> 00:20:45,710 +complete the code Do not waste your time and write + +318 +00:20:45,710 --> 00:20:50,490 +this next thing Just put dots Where do you go? On + +319 +00:20:50,490 --> 00:20:58,670 +RAM This RAM is equal to what? Instead of new RAM, + +320 +00:20:59,770 --> 00:21:01,950 +you say create RAM + +321 +00:21:03,680 --> 00:21:07,560 +And here it comes under public, ram, + +322 +00:21:11,940 --> 00:21:14,240 +it's done, create ram, there are many types, okay? + +323 +00:21:14,480 --> 00:21:20,400 +Create ram, and between them, what type do they + +324 +00:21:20,400 --> 00:21:22,460 +want to return? Return + +325 +00:21:25,870 --> 00:21:30,150 +new sdran And this is the proof that the factory + +326 +00:21:30,150 --> 00:21:32,750 +method is not necessarily an abstract method. Its + +327 +00:21:32,750 --> 00:21:34,990 +properties are abstract. I force the subclass to + +328 +00:21:34,990 --> 00:21:38,950 +override it. But it can be written and I override + +329 +00:21:38,950 --> 00:21:44,770 +it. Like the example of the maze. Put points and + +330 +00:21:44,770 --> 00:21:51,140 +then hard drive The things that don't give you + +331 +00:21:51,140 --> 00:21:53,660 +grades, don't waste your time writing them I'm not + +332 +00:21:53,660 --> 00:21:57,000 +going to give you a grade if you write 6 speed and + +333 +00:21:57,000 --> 00:22:00,460 +6 size That's it, that's the point that this code + +334 +00:22:00,460 --> 00:22:05,500 +exists and we're done Hard drive is equal to + +335 +00:22:05,500 --> 00:22:14,960 +create hard drive as well And here public hard + +336 +00:22:14,960 --> 00:22:26,450 +drivedrive create HD and + +337 +00:22:26,450 --> 00:22:31,410 +here return cgate + +338 +00:22:31,410 --> 00:22:35,330 +hard + +339 +00:22:35,330 --> 00:22:41,210 +drive and + +340 +00:22:41,210 --> 00:22:43,270 +the rest is nugget + +341 +00:22:45,450 --> 00:22:49,590 +Okay? So this is the solution to fear. Is it clear + +342 +00:22:49,590 --> 00:22:53,190 +guys? As I said, what I did was also abstract + +343 +00:22:58,030 --> 00:23:03,530 +We see it. From what I see, when we put a test, we + +344 +00:23:03,530 --> 00:23:07,470 +say students will solve it all. But from what I + +345 +00:23:07,470 --> 00:23:12,490 +see, the signs don't have it. I have to search for + +346 +00:23:12,490 --> 00:23:15,910 +the smell of health to put what. God will make it + +347 +00:23:15,910 --> 00:23:21,310 +easy. Next. The question is not finished yet. It + +348 +00:23:21,310 --> 00:23:23,630 +was the problem of the test in logic. It was not + +349 +00:23:23,630 --> 00:23:27,730 +logical. No, logic is good.No, no, it's good. The + +350 +00:23:27,730 --> 00:23:30,350 +first question, believe me, the first question, if + +351 +00:23:30,350 --> 00:23:32,930 +you, I mean, it's not supposed to take 10 minutes + +352 +00:23:32,930 --> 00:23:34,230 +from you. I don't know, but I wrote the code as + +353 +00:23:34,230 --> 00:23:37,510 +well. The first question. Okay, what's left in the + +354 +00:23:37,510 --> 00:23:39,290 +... What's left is the second question. The second + +355 +00:23:39,290 --> 00:23:42,770 +question is a UML drawing of the observer. There + +356 +00:23:42,770 --> 00:23:46,910 +is no coding in it. This is the only one that has + +357 +00:23:46,910 --> 00:23:49,250 +code. The third one is also UML. The last one is + +358 +00:23:49,250 --> 00:23:55,320 +also UML. No, just one line of code. Do you want + +359 +00:23:55,320 --> 00:24:01,820 +code? Also, there is a budget. But you are used to + +360 +00:24:01,820 --> 00:24:04,380 +finish in half an hour, and half an hour later you + +361 +00:24:04,380 --> 00:24:07,640 +are left with nothing. You look left and right. + +362 +00:24:07,880 --> 00:24:11,440 +No, this exam is enough for an hour. You finish + +363 +00:24:11,440 --> 00:24:15,940 +before two or three gigs. But it is really an + +364 +00:24:15,940 --> 00:24:20,560 +hour.The next step is to create a class named AMD + +365 +00:24:20,560 --> 00:24:23,700 +which we will apply the pattern that I told you + +366 +00:24:23,700 --> 00:24:25,240 +about The idea behind this is that when you create + +367 +00:24:25,240 --> 00:24:32,200 +a new assembler It needs to maintain the logic of + +368 +00:24:32,200 --> 00:24:39,060 +the objects that you create He told me to create a + +369 +00:24:39,060 --> 00:24:45,940 +class called AMD Computer Assembler Class AMD + +370 +00:24:50,270 --> 00:24:55,990 +computer assembler and this will be extends who? + +371 +00:24:57,410 --> 00:25:03,710 +computer assembler + +372 +00:25:03,710 --> 00:25:06,710 +what in short do you want to do with it? do you + +373 +00:25:06,710 --> 00:25:10,410 +see these three keys? that's it these three keys + +374 +00:25:10,410 --> 00:25:14,750 +you write them again here that's it, instead of + +375 +00:25:14,750 --> 00:25:22,510 +intel you put AMDinstead of sd-ram you say amd-ram + +376 +00:25:22,510 --> 00:25:30,190 +instead of c gate you say amd-ram instead + +377 +00:25:30,190 --> 00:25:36,210 +of sd-ram you say amd-ram instead of c gate you + +378 +00:25:36,210 --> 00:25:41,870 +instead of c gate you say amd-ram instead of sd + +379 +00:25:41,870 --> 00:25:45,760 +-ram you say amd-ram Put them here and let him + +380 +00:25:45,760 --> 00:25:50,800 +return the types he asked for in the question Ok + +381 +00:25:50,800 --> 00:25:54,680 +guys? Who solved the whole thing correctly? + +382 +00:25:58,000 --> 00:26:02,140 +Not a problem, I wrote it abstractly too. Even Bin + +383 +00:26:02,140 --> 00:26:04,380 +did it abstractly. Ok, excellent. + +384 +00:26:11,010 --> 00:26:12,830 +Yes, now pay attention with me, I brought this as + +385 +00:26:12,830 --> 00:26:14,750 +a goal, did you notice that when I gave you the + +386 +00:26:14,750 --> 00:26:17,610 +paper at the end, you will find that there are two + +387 +00:26:17,610 --> 00:26:22,790 +marks above it, okay? The semicolon mark is from + +388 +00:26:22,790 --> 00:26:28,450 +40 to 30, and you will also find the duty mark, + +389 +00:26:28,790 --> 00:26:31,770 +how many duties did we take at the factory? Two? + +390 +00:26:32,290 --> 00:26:35,630 +Two, okay? Two questions were there, okay? Now + +391 +00:26:35,630 --> 00:26:38,550 +this question is one of the duties questions The + +392 +00:26:38,550 --> 00:26:42,470 +duty mark of the whole factory will take it to the + +393 +00:26:42,470 --> 00:26:44,630 +question. This means that this question was solved + +394 +00:26:44,630 --> 00:26:47,430 +by taking the duty mark. If you didn't solve it, + +395 +00:26:47,950 --> 00:26:49,870 +you won't get the duty mark. If you give up, you + +396 +00:26:49,870 --> 00:26:52,450 +won't give up. If you solved it 100% by giving up, + +397 +00:26:52,710 --> 00:26:54,790 +you won't get the duty mark. If you didn't solve + +398 +00:26:54,790 --> 00:26:56,690 +it, it means that you cheated the person who gave + +399 +00:26:56,690 --> 00:26:58,850 +up. In the end, it's like this. I don't want you + +400 +00:26:58,850 --> 00:27:00,850 +to go and complain to me. Let's do an + +401 +00:27:00,850 --> 00:27:02,650 +investigation and see who is right and who is + +402 +00:27:02,650 --> 00:27:03,790 +wrong. Okay? + +403 +00:27:08,710 --> 00:27:10,550 +So this is the derbalco, you can also find it + +404 +00:27:10,550 --> 00:27:17,590 +where? In the final exam Another question so that + +405 +00:27:17,590 --> 00:27:22,330 +I don't fix the homework again This + +406 +00:27:22,330 --> 00:27:24,750 +is for those who are used to it, because I saw the + +407 +00:27:24,750 --> 00:27:28,030 +homeworks, all the students have passed the + +408 +00:27:28,030 --> 00:27:30,090 +homework, this is not logical that everyone has + +409 +00:27:30,090 --> 00:27:32,190 +passed it, especially because the homeworks that I + +410 +00:27:32,190 --> 00:27:36,480 +bringIt's not easy, she needs to work, she needs a + +411 +00:27:36,480 --> 00:27:41,740 +GUI, I don't expect all students to solve it, 90% + +412 +00:27:41,740 --> 00:27:45,340 +of students. So this is the goal of the question. + +413 +00:27:45,440 --> 00:27:48,580 +Now the question also has a simple solution, I + +414 +00:27:48,580 --> 00:27:56,340 +didn't ask for a GUI, I asked you to solve it. + +415 +00:28:07,580 --> 00:28:09,260 +So this is the mark of the question out of ten, + +416 +00:28:11,080 --> 00:28:13,440 +because of the ten marks, it will show you that it + +417 +00:28:13,440 --> 00:28:17,400 +is your mark in what? In the homework, okay? But + +418 +00:28:17,400 --> 00:28:19,740 +the homework will be less than ten, but it will + +419 +00:28:19,740 --> 00:28:21,560 +show up and you will calculate it, before you see + +420 +00:28:21,560 --> 00:28:24,600 +the final result, see the second homework Okay, + +421 +00:28:27,080 --> 00:28:29,520 +we don't want to read all of this, because all of + +422 +00:28:29,520 --> 00:28:33,810 +thisIt was there in the question, okay? Which is + +423 +00:28:33,810 --> 00:28:36,870 +the idea that I want to design a GUI, I want to + +424 +00:28:36,870 --> 00:28:39,110 +make a new tab or a new screen, everything I need + +425 +00:28:39,110 --> 00:28:42,970 +to do, I want to make a class of a certain type + +426 +00:28:42,970 --> 00:28:45,310 +and throw it in a folder and the tab will + +427 +00:28:45,310 --> 00:28:47,390 +automatically appear and work for me. What is the + +428 +00:28:47,390 --> 00:28:48,390 +purpose of the tab? + +429 +00:28:51,690 --> 00:28:56,970 +We use the factory method to achieve such a + +430 +00:28:56,970 --> 00:28:57,430 +design. + +431 +00:29:00,270 --> 00:29:05,970 +Draw the UML diagram that uses the factory pattern + +432 +00:29:05,970 --> 00:29:09,990 +to achieve the requested behavior of the above + +433 +00:29:09,990 --> 00:29:13,610 +app.Show all necessary class, method, attribute + +434 +00:29:13,610 --> 00:29:16,610 +and relation. The UML should not be generic, but + +435 +00:29:16,610 --> 00:29:18,770 +specific to the above example. What does it mean + +436 +00:29:18,770 --> 00:29:22,990 +by generic? It doesn't mean that you draw on the + +437 +00:29:22,990 --> 00:29:25,490 +factory's paper, or you go and tell him this and + +438 +00:29:25,490 --> 00:29:29,010 +that. No, it should be specific to this example. + +439 +00:29:29,650 --> 00:29:33,170 +This is very simple. We said that the goal is to + +440 +00:29:33,170 --> 00:29:36,500 +make a new class, Ok, from a certain type, and you + +441 +00:29:36,500 --> 00:29:40,160 +put it, and so on, you create an interface, for + +442 +00:29:40,160 --> 00:29:44,160 +example, you call it myTab Ok, + +443 +00:29:44,280 --> 00:29:46,440 +this is the interface that you have, and there + +444 +00:29:46,440 --> 00:29:50,120 +should be a method, one for example, called + +445 +00:29:50,120 --> 00:29:54,020 +createGUI, or drawGUI, or getGUI, or + +446 +00:29:54,020 --> 00:29:57,000 +getComponents, whatever you want. The important + +447 +00:29:57,000 --> 00:29:59,140 +thing is to show that there is a method that + +448 +00:29:59,140 --> 00:30:02,760 +creates the graphical user interface. Now, really, + +449 +00:30:02,980 --> 00:30:06,530 +all you have to do isYou need to create an + +450 +00:30:06,530 --> 00:30:09,310 +implement for this interface in order to create + +451 +00:30:09,310 --> 00:30:17,590 +your own tabs This is tab 1, tab 2, and tab 3 And + +452 +00:30:17,590 --> 00:30:19,370 +of course they all need to create an implement for + +453 +00:30:19,370 --> 00:30:26,770 +whom? To create GUI It + +454 +00:30:26,770 --> 00:30:30,240 +didn't ask for GUI codeThat's why this question is + +455 +00:30:30,240 --> 00:30:31,980 +easier than the answer to the question of duty. + +456 +00:30:32,280 --> 00:30:33,860 +You solved the question of duty, you solved it and + +457 +00:30:33,860 --> 00:30:35,160 +you say that you forgot about it during the exam. + +458 +00:30:35,360 --> 00:30:38,200 +You solved it during the exam, but you forgot + +459 +00:30:38,200 --> 00:30:39,120 +about it during the exam. No, it doesn't make + +460 +00:30:39,120 --> 00:30:41,780 +sense. This is easier. Okay? Now, let's look at + +461 +00:30:41,780 --> 00:30:46,460 +the class of the factory. Now, what should we call + +462 +00:30:46,460 --> 00:30:49,860 +it? For example, tab factory. + +463 +00:30:51,040 --> 00:30:52,760 +Now, the class of the factory has one method. + +464 +00:30:53,860 --> 00:30:59,710 +Okay? Which is createTab. And we asked for a + +465 +00:30:59,710 --> 00:31:07,830 +design with reflection. Ok? So, actually, T and + +466 +00:31:07,830 --> 00:31:09,550 +you take the path, for example, which is the + +467 +00:31:09,550 --> 00:31:12,810 +string. You have to take a parameter. You tell it + +468 +00:31:12,810 --> 00:31:16,630 +what you want it to do. Ok? Because this will have + +469 +00:31:16,630 --> 00:31:23,630 +a reference to whom? To myTab. We're done. This is + +470 +00:31:23,630 --> 00:31:27,440 +the answer to the question.Yes, but he has another + +471 +00:31:27,440 --> 00:31:30,520 +requirement. Ok? This is the answer to the + +472 +00:31:30,520 --> 00:31:35,140 +question. You can solve both questions, both + +473 +00:31:35,140 --> 00:31:37,380 +branches in the same question. You bring me a note + +474 +00:31:37,380 --> 00:31:41,780 +here and tell me what is the code here. Of course, + +475 +00:31:42,580 --> 00:31:45,980 +the create can be done in two ways. You can make + +476 +00:31:45,980 --> 00:31:51,300 +an if statement.Okay? If this string or integer + +477 +00:31:51,300 --> 00:31:55,680 +that you see here is one, make it tab one Two, tab + +478 +00:31:55,680 --> 00:32:02,660 +two. If you do it right, it's good Okay? Now? It's + +479 +00:32:02,660 --> 00:32:08,300 +not a problem. You have to put the J-panel as a + +480 +00:32:08,300 --> 00:32:11,480 +superclass It's clear that they extended to whom? + +481 +00:32:12,180 --> 00:32:15,580 +To J-panel It's correct Okay? The important thing + +482 +00:32:15,580 --> 00:32:16,480 +is to make it unified + +483 +00:32:28,810 --> 00:32:33,850 +Write the code of the factory class and use the + +484 +00:32:33,850 --> 00:32:39,930 +reflection API to dynamically create tabs Class + +485 +00:32:39,930 --> 00:32:46,610 +Tab + +486 +00:32:48,260 --> 00:32:52,180 +Factory Public + +487 +00:32:52,180 --> 00:33:05,520 +Static Create Tab + +488 +00:33:05,520 --> 00:33:10,520 +Reflection String String T + +489 +00:33:13,630 --> 00:33:16,070 +or the path to the class because here you want to + +490 +00:33:16,070 --> 00:33:24,190 +write line 1 little mytab + +491 +00:33:24,190 --> 00:33:29,010 +because there are two ways here some write class + +492 +00:33:29,010 --> 00:33:37,030 +dot forename and take the T dot and some write new + +493 +00:33:40,420 --> 00:33:43,780 +Instance, I think it has null and that's it, okay? + +494 +00:33:43,880 --> 00:33:48,080 +But this is deprecated, okay? What I used to work + +495 +00:33:48,080 --> 00:33:51,580 +on is running but deprecated, which is get + +496 +00:33:51,580 --> 00:33:55,500 +constructor I mean, I say bring me the empty + +497 +00:33:55,500 --> 00:34:01,240 +constructor, I give it null, okay? And then I say + +498 +00:34:01,240 --> 00:34:01,520 +new + +499 +00:34:04,900 --> 00:34:07,640 +instance and none. Regardless if I used these two + +500 +00:34:07,640 --> 00:34:10,220 +or these two, correct. What I'm looking for is + +501 +00:34:10,220 --> 00:34:13,540 +that it should be static and return what? My tab + +502 +00:34:13,540 --> 00:34:16,820 +and take a string to say class.forename and do + +503 +00:34:16,820 --> 00:34:19,660 +casting here for what? For my tab and there should + +504 +00:34:19,660 --> 00:34:25,160 +be what? A new instance. Okay? And if this line + +505 +00:34:25,160 --> 00:34:30,660 +you wrote here, correct. Okay? I will get of + +506 +00:34:30,660 --> 00:34:34,580 +course in the design it's possible that the + +507 +00:34:34,580 --> 00:34:37,780 +question has two parts in the first part it's not + +508 +00:34:37,780 --> 00:34:39,520 +required reflection where did reflection come + +509 +00:34:39,520 --> 00:34:42,440 +from? in the second part so people might say what + +510 +00:34:42,440 --> 00:34:46,040 +did she do if I didn't use reflection okay I have + +511 +00:34:46,040 --> 00:34:49,620 +to use the if statement if it's like this go + +512 +00:34:49,620 --> 00:34:59,060 +return new tab one if it's else if like this + +513 +00:34:59,060 --> 00:35:04,670 +return new tab oneTwo, in this case there will be + +514 +00:35:04,670 --> 00:35:09,850 +a relationship with whom? With these ties. This is + +515 +00:35:09,850 --> 00:35:13,190 +in design without reflection. Without reflection, + +516 +00:35:13,390 --> 00:35:15,250 +there is a problem or the coupling is bigger + +517 +00:35:15,250 --> 00:35:18,270 +because this is linked to whom? To these people. + +518 +00:35:18,690 --> 00:35:20,550 +But the advantage of reflection is that these + +519 +00:35:20,550 --> 00:35:22,690 +relationships have nothing to do with each other. + +520 +00:35:22,950 --> 00:35:24,550 +I removed them, right or not? + +521 +00:35:33,420 --> 00:35:35,960 +I put this one and that's it. Try catch, this one + +522 +00:35:35,960 --> 00:35:41,700 +doesn't have it, increase it. Okay guys, + +523 +00:35:41,940 --> 00:35:46,500 +it's clear. I put it in the seminal, I put it in + +524 +00:35:46,500 --> 00:35:48,780 +the jubilatory term. I didn't realize that it + +525 +00:35:48,780 --> 00:35:52,700 +could be aesthetic.Here in the UML, it is not + +526 +00:35:52,700 --> 00:35:54,820 +clear, but when you write the code, not from the + +527 +00:35:54,820 --> 00:35:56,260 +second branch, they tell you to write the code, it + +528 +00:35:56,260 --> 00:35:56,720 +is clear + +529 +00:36:03,630 --> 00:36:05,230 +Did you write this line? That's it, we're not + +530 +00:36:05,230 --> 00:36:08,190 +going to focus on aesthetics. It doesn't have to + +531 +00:36:08,190 --> 00:36:11,110 +be aesthetic at all, okay? I mean, it's aesthetic + +532 +00:36:11,110 --> 00:36:12,730 +so that you don't create an object from that + +533 +00:36:12,730 --> 00:36:15,050 +factory, but it's not a condition. It could even + +534 +00:36:15,050 --> 00:36:17,650 +be a singleton made by the factory. So this + +535 +00:36:17,650 --> 00:36:20,150 +aesthetic is not a constraint, okay? The most + +536 +00:36:20,150 --> 00:36:21,470 +important thing is that it shows that it returns + +537 +00:36:21,470 --> 00:36:23,610 +... I mean, when you write, you have to put the + +538 +00:36:23,610 --> 00:36:27,190 +cast here to know that it returns from the + +539 +00:36:27,190 --> 00:36:33,240 +father's type at the end, okay?So, the exam is + +540 +00:36:33,240 --> 00:36:41,220 +gradual. If you read the slides, the first + +541 +00:36:41,220 --> 00:36:44,420 +question, as I told you, is all copied from the + +542 +00:36:44,420 --> 00:36:46,880 +slides. The second question is on the news + +543 +00:36:46,880 --> 00:36:48,080 +publisher, it is exactly the same as the first + +544 +00:36:48,080 --> 00:36:52,140 +one. It is repeated in the slides. This is very + +545 +00:36:52,140 --> 00:36:55,940 +similar to the example of the maze. I took the + +546 +00:36:55,940 --> 00:37:00,250 +code of the maze and just changed the names.And + +547 +00:37:00,250 --> 00:37:04,050 +this is the last question that was with you. I'm + +548 +00:37:04,050 --> 00:37:05,190 +surprised that I told you that the exam was + +549 +00:37:05,190 --> 00:37:06,570 +difficult and we didn't know the answer and left + +550 +00:37:06,570 --> 00:37:07,970 +it blank. Ok guys + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Qby3s6rFTeo_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Qby3s6rFTeo_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..a78d6bd9ed5eb785d65bc87fc7dcd50581a7b63e --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Qby3s6rFTeo_raw.srt @@ -0,0 +1,2204 @@ +1 +00:00:05,060 --> 00:00:08,920 +Okay guys, peace be upon you. In this lecture, God + +2 +00:00:08,920 --> 00:00:12,320 +willing, we will go through the semi-trial and + +3 +00:00:12,320 --> 00:00:17,040 +solve it, guys. I mean, so that one knows what are + +4 +00:00:17,040 --> 00:00:21,300 +the correct solutions and the final, the final + +5 +00:00:21,300 --> 00:00:23,020 +test will probably be on the same level, + +6 +00:00:23,300 --> 00:00:26,220 +especially for questions that require UML and + +7 +00:00:26,220 --> 00:00:29,720 +analysis and coding, okay?Of course guys, this + +8 +00:00:29,720 --> 00:00:32,960 +exam has 30 marks, and the final score is 50, + +9 +00:00:33,360 --> 00:00:35,880 +okay? And there is no such thing as getting it + +10 +00:00:35,880 --> 00:00:36,800 +right in the final, getting it right in the + +11 +00:00:36,800 --> 00:00:39,600 +semifinal, it's half and half, and the final is + +12 +00:00:39,600 --> 00:00:45,720 +the final, okay? Then I confirmed something, I + +13 +00:00:45,720 --> 00:00:47,940 +mean I haven't started fixing it yet, but it + +14 +00:00:47,940 --> 00:00:52,820 +turned out that most of the papers were empty, and + +15 +00:00:52,820 --> 00:00:55,220 +this is because most of those who left their + +16 +00:00:55,220 --> 00:00:59,350 +papers empty did not attend Students didn't attend + +17 +00:00:59,350 --> 00:01:02,170 +it, they used to say that the lecture was + +18 +00:01:02,170 --> 00:01:03,990 +recorded, so I attended it And I didn't attend the + +19 +00:01:03,990 --> 00:01:07,670 +lecture that was recorded The advantage of + +20 +00:01:07,670 --> 00:01:09,850 +attending it is that you have obligation, you come + +21 +00:01:09,850 --> 00:01:12,570 +and attend it, you commit yourself to attend the + +22 +00:01:12,570 --> 00:01:15,090 +lecture and you understand it from the lecture, + +23 +00:01:15,210 --> 00:01:17,710 +ok? But the one who didn't attend it, he says that + +24 +00:01:17,710 --> 00:01:21,250 +he will attend it alone at home, and at home he is + +25 +00:01:21,250 --> 00:01:23,550 +lazy and didn't attend it, and he comes and says + +26 +00:01:23,550 --> 00:01:27,960 +that I didn't study all the materialOkay? And then + +27 +00:01:27,960 --> 00:01:29,240 +he comes and argues with me and tells me to + +28 +00:01:29,240 --> 00:01:31,700 +calculate the final and calculate it. So no, I + +29 +00:01:31,700 --> 00:01:33,820 +will not interfere in this matter at all. The half + +30 +00:01:33,820 --> 00:01:38,640 +is half and the final is final guys. Okay? Okay + +31 +00:01:38,640 --> 00:01:42,540 +guys, let's move on to the questions. Now, the + +32 +00:01:42,540 --> 00:01:46,040 +first question is simple, it is supposed to gather + +33 +00:01:46,040 --> 00:01:51,460 +marks from it, okay? And then it is matching, and + +34 +00:01:51,460 --> 00:01:54,760 +all the sentences that I brought in it are copy + +35 +00:01:54,760 --> 00:01:57,840 +-paste from the slide without changing any word or + +36 +00:01:57,840 --> 00:01:59,800 +style, so that you don't say English, you don't + +37 +00:01:59,800 --> 00:02:01,820 +know how to translate, it is the same thing that + +38 +00:02:01,820 --> 00:02:05,120 +is in the slide. Then, when I was explaining + +39 +00:02:05,120 --> 00:02:08,280 +design patterns, I was always focusing on + +40 +00:02:11,490 --> 00:02:14,770 +Singleton calls from anywhere and one object is + +41 +00:02:14,770 --> 00:02:20,010 +created. Factory method, I put the common code in + +42 +00:02:20,010 --> 00:02:22,630 +the superclass and I make the subclasses create + +43 +00:02:22,630 --> 00:02:24,630 +objects or put different code. + +44 +00:02:27,090 --> 00:02:30,990 +Strategy, instead of having F statements, I make + +45 +00:02:30,990 --> 00:02:34,550 +encapsulate for each algorithm in one class and I + +46 +00:02:34,550 --> 00:02:37,910 +change it. For example, I sent him the strategy to + +47 +00:02:37,910 --> 00:02:40,850 +work on it at any time, okay? So every design + +48 +00:02:40,850 --> 00:02:43,630 +pattern has key words that I always repeat and add + +49 +00:02:43,630 --> 00:02:47,750 +to it. These key words. And you usually look for + +50 +00:02:47,750 --> 00:02:50,110 +them in this question. Come and grab a part of it. + +51 +00:02:50,830 --> 00:02:53,910 +Now, the first thing is objects which behave + +52 +00:02:53,910 --> 00:02:58,070 +similar as the real object. But these mocks, I + +53 +00:02:58,070 --> 00:03:01,520 +mean here I am in the question Yes, I'm supposed + +54 +00:03:01,520 --> 00:03:05,740 +to remove it, it's a mistake The answer is in the + +55 +00:03:05,740 --> 00:03:08,160 +question But these MOOCs are not programmed, they + +56 +00:03:08,160 --> 00:03:10,560 +are configured to behave in a certain predefined + +57 +00:03:10,560 --> 00:03:14,720 +way We said that MOOCs are actually classifiers + +58 +00:03:14,720 --> 00:03:17,760 +for the main class And where do we use these in + +59 +00:03:17,760 --> 00:03:20,820 +MOOCs? In testing, okay? So this is the first + +60 +00:03:20,820 --> 00:03:27,400 +answer of MOOCs B, it defines Of course, you put + +61 +00:03:27,400 --> 00:03:32,050 +the answer here Okay, so you say A and you put 10 + +62 +00:03:32,050 --> 00:03:35,670 +for example It defines an interface for creating + +63 +00:03:35,670 --> 00:03:38,970 +an object, but let subclasses decide which class + +64 +00:03:38,970 --> 00:03:43,950 +to instantiate Let subclasses decide which class + +65 +00:03:43,950 --> 00:03:47,490 +to instantiate I encourage subclasses to create + +66 +00:03:47,490 --> 00:03:53,390 +this factory method right away Next, it provides a + +67 +00:03:53,390 --> 00:03:56,270 +global point of access to that instance That's it, + +68 +00:03:56,470 --> 00:03:59,250 +you don't have to continue readingThis is + +69 +00:03:59,250 --> 00:04:08,170 +singleton In this case, the same instance + +70 +00:04:08,170 --> 00:04:13,070 +can be used from everywhere Being + +71 +00:04:13,070 --> 00:04:15,570 +impossible to invoke directly the constructor + +72 +00:04:20,590 --> 00:04:26,390 +It lets subclasses redefine certain steps of an + +73 +00:04:26,390 --> 00:04:30,670 +algorithm without letting them to change the + +74 +00:04:30,670 --> 00:04:31,550 +algorithm structure + +75 +00:04:43,580 --> 00:04:47,040 +it is the concept in which objects get other + +76 +00:04:47,040 --> 00:04:52,640 +required objects from outside you get the object + +77 +00:04:52,640 --> 00:04:56,560 +you need from outside this is dependency injection + +78 +00:04:56,560 --> 00:05:00,160 +and it can also be aggregation but I didn't put + +79 +00:05:00,160 --> 00:05:03,440 +aggregation among the options so the answer is + +80 +00:05:03,440 --> 00:05:06,140 +dependency injection + +81 +00:05:09,470 --> 00:05:11,770 +The degree to which all elements of a component + +82 +00:05:11,770 --> 00:05:14,150 +are directed towards a single task and all + +83 +00:05:14,150 --> 00:05:16,910 +elements directed towards the task are contained + +84 +00:05:16,910 --> 00:05:19,950 +in a single component To what extent the + +85 +00:05:19,950 --> 00:05:22,770 +components have the same goal and serve the same + +86 +00:05:22,770 --> 00:05:25,990 +task? We said that there are two important + +87 +00:05:25,990 --> 00:05:30,170 +concepts which are coupling and cohesion Coupling + +88 +00:05:30,170 --> 00:05:31,950 +is the extent of the connection between different + +89 +00:05:31,950 --> 00:05:35,050 +parts which means that I imitate coupling Cohesion + +90 +00:05:35,050 --> 00:05:39,580 +is the part which consists of many classesI always + +91 +00:05:39,580 --> 00:05:43,640 +put the classes together or the methods that have + +92 +00:05:43,640 --> 00:05:46,340 +the same importance in the same class this is what + +93 +00:05:46,340 --> 00:05:51,740 +we call cohesion it + +94 +00:05:51,740 --> 00:05:56,700 +creates objects without exposing the instantiation + +95 +00:05:56,700 --> 00:05:58,940 +logic what does it mean? it creates objects + +96 +00:05:58,940 --> 00:06:02,510 +without showing the steps of creation or the way + +97 +00:06:02,510 --> 00:06:05,430 +of creation to the client and refers to the newly + +98 +00:06:05,430 --> 00:06:08,990 +created object through a common interface that is, + +99 +00:06:09,050 --> 00:06:11,590 +the object that is created is returned from the + +100 +00:06:11,590 --> 00:06:14,270 +original interface or from the previous type this + +101 +00:06:14,270 --> 00:06:18,150 +is of course the factor in the factor you say + +102 +00:06:18,150 --> 00:06:21,790 +create like this and the creation process or the + +103 +00:06:21,790 --> 00:06:25,030 +claim to new occurs in the class of the factor + +104 +00:06:25,030 --> 00:06:30,520 +itselfIt defines a family of algorithms + +105 +00:06:30,520 --> 00:06:37,200 +encapsulate each one in a separate class and + +106 +00:06:37,200 --> 00:06:45,860 +make them interchangeable it + +107 +00:06:45,860 --> 00:06:48,840 +lets the algorithm vary independently at runtime + +108 +00:06:48,840 --> 00:06:53,280 +from the clientAlgorithm is very independent, it + +109 +00:06:53,280 --> 00:06:55,340 +can change the algorithm and make a new algorithm + +110 +00:06:55,340 --> 00:06:58,980 +without changing the client. This explains the + +111 +00:06:58,980 --> 00:07:04,540 +strategy pattern. Next, it supports many-to-many + +112 +00:07:04,540 --> 00:07:08,180 +communication directly to the bus. + +113 +00:07:11,210 --> 00:07:13,810 +The last one is degree of dependence among + +114 +00:07:13,810 --> 00:07:16,510 +software components degree of dependence between + +115 +00:07:16,510 --> 00:07:19,950 +software components If you remove all the existing + +116 +00:07:19,950 --> 00:07:24,530 +options, you will still have the builder and the + +117 +00:07:24,530 --> 00:07:28,630 +lazy instantiation and coupling. What does this + +118 +00:07:28,630 --> 00:07:34,510 +mean? Coupling. Ok guys? How many people answered + +119 +00:07:34,510 --> 00:07:38,350 +this question correctly? Ok, good. How many marks + +120 +00:07:38,350 --> 00:07:38,790 +did you guarantee? 10 marks? + +121 +00:07:44,470 --> 00:07:48,650 +How many questions? 4 questions? Yes, out of 40, + +122 +00:07:48,770 --> 00:07:51,350 +and then it goes down to 30, okay? + +123 +00:07:53,250 --> 00:07:55,230 +Because the next question, in the UMLE class + +124 +00:07:55,230 --> 00:07:58,370 +diagram shown below, the class news publisher, + +125 +00:07:59,110 --> 00:08:03,270 +when you first see the news publisher, you already + +126 +00:08:03,270 --> 00:08:06,810 +have an example in the slides on the news + +127 +00:08:06,810 --> 00:08:10,210 +publisher.Okay, it is very similar to this + +128 +00:08:10,210 --> 00:08:14,210 +question The news publisher represents a software + +129 +00:08:14,210 --> 00:08:17,890 +component that retrieves news from different news + +130 +00:08:17,890 --> 00:08:20,150 +agencies, that is, it brings news from news + +131 +00:08:20,150 --> 00:08:21,930 +agencies, for example, it brought the news here + +132 +00:08:21,930 --> 00:08:26,150 +and then sends it to multiple subscribers, for + +133 +00:08:26,150 --> 00:08:30,550 +example, it sends it to the SMS subscriber and the + +134 +00:08:30,550 --> 00:08:32,630 +email subscriber, that is, it brings the news and + +135 +00:08:32,630 --> 00:08:35,790 +sends it to these twoOf course, in order for him + +136 +00:08:35,790 --> 00:08:38,110 +to be able to send this and that, in the current + +137 +00:08:38,110 --> 00:08:40,610 +design in front of you, he has a reference from + +138 +00:08:40,610 --> 00:08:43,710 +the SMS subscriber and from the email subscriber + +139 +00:08:43,710 --> 00:08:51,610 +The news publisher maintains reference to every + +140 +00:08:51,610 --> 00:08:55,210 +subscriber whom it needs to send the news to He + +141 +00:08:55,210 --> 00:08:58,090 +has a reference for the SMS subscriber and the + +142 +00:08:58,090 --> 00:09:02,110 +email subscriberThe first part is what is the + +143 +00:09:02,110 --> 00:09:06,790 +problem of the current design in terms of software + +144 +00:09:06,790 --> 00:09:07,590 +extensibility? + +145 +00:09:09,950 --> 00:09:13,610 +All the design patterns have a problem with the + +146 +00:09:13,610 --> 00:09:18,190 +high-capacity software. This is the main point. If + +147 +00:09:18,190 --> 00:09:21,090 +I add a new subscriber, I will have to edit the + +148 +00:09:21,090 --> 00:09:22,550 +newspaper. If I write this sentence, that's it. + +149 +00:09:25,110 --> 00:09:27,650 +Ok? This is the main point. It's not enough to say + +150 +00:09:27,650 --> 00:09:30,770 +that coupling is big. What is coupling big? You + +151 +00:09:30,770 --> 00:09:33,850 +have to explain it. Ok? All design patterns solve + +152 +00:09:33,850 --> 00:09:36,550 +the problem of coupling. You say that coupling + +153 +00:09:36,550 --> 00:09:39,130 +between a news publisher and every subscriber is + +154 +00:09:39,130 --> 00:09:43,050 +clear. Ok? The main point is that when you put a + +155 +00:09:43,050 --> 00:09:45,770 +new subscriber, you have to adjust to what? To the + +156 +00:09:45,770 --> 00:09:47,950 +news publisher. Then you use your brain. The + +157 +00:09:47,950 --> 00:09:51,490 +answer to this question is in the second category. + +158 +00:09:53,590 --> 00:09:57,070 +This is the second answer to the question. Look at + +159 +00:09:57,070 --> 00:09:59,890 +what I'm saying. Use the appropriate design + +160 +00:09:59,890 --> 00:10:07,570 +pattern. Why? To allow for + +161 +00:10:07,570 --> 00:10:10,850 +attaching a new subscriber to the system without + +162 +00:10:10,850 --> 00:10:15,830 +modifying a new publisher. This is the problem. I + +163 +00:10:15,830 --> 00:10:18,070 +explained to you. Create a design pattern to solve + +164 +00:10:18,070 --> 00:10:21,690 +this problem. Yes, this is the problem.Okay, if I + +165 +00:10:21,690 --> 00:10:23,890 +took this and wrote it here, that's it, in Arabic, + +166 +00:10:24,070 --> 00:10:29,650 +Hindi, anything, no problem. But I'm surprised by + +167 +00:10:29,650 --> 00:10:37,990 +what he left blank. Draw a UML class + +168 +00:10:37,990 --> 00:10:41,930 +diagram to demonstrate the solution. You should + +169 +00:10:41,930 --> 00:10:44,430 +show any changes, new attributes, methods, + +170 +00:10:44,610 --> 00:10:46,850 +relationships, and additional code when necessary. + +171 +00:10:47,910 --> 00:10:50,470 +Be careful guys, because there are many mistakes + +172 +00:10:50,470 --> 00:10:54,350 +in things. When I ask you to make a UML design + +173 +00:10:54,350 --> 00:10:58,650 +diagram, the important things that have to do with + +174 +00:10:58,650 --> 00:11:03,810 +the design pattern are shown. For example, here + +175 +00:11:03,810 --> 00:11:06,930 +this design pattern we have to count to apply it. + +176 +00:11:07,440 --> 00:11:11,720 +Okay? Of course, I didn't tell you to apply the + +177 +00:11:11,720 --> 00:11:14,120 +observer pattern Okay? I told you to look for a + +178 +00:11:14,120 --> 00:11:18,020 +suitable design pattern to improve this design So, + +179 +00:11:18,080 --> 00:11:21,420 +it is known as the observer that we apply So, the + +180 +00:11:21,420 --> 00:11:23,760 +first thing you have to do is to make an interface + +181 +00:11:23,760 --> 00:11:26,080 +of one type Which is, for example, what do we call + +182 +00:11:26,080 --> 00:11:32,040 +it? Subscriber And put in it a method NewsUpdated + +183 +00:11:32,040 --> 00:11:37,410 +Or update whatever you wantand this is in Noah's + +184 +00:11:37,410 --> 00:11:41,390 +string because this is an interface that I want to + +185 +00:11:41,390 --> 00:11:44,730 +make from it + +186 +00:11:44,730 --> 00:11:49,530 +and if I don't make it again, it's not a problem, + +187 +00:11:49,590 --> 00:11:53,050 +the idea is important this is for example SMS + +188 +00:11:53,050 --> 00:12:03,050 +subscriber and this is email and + +189 +00:12:03,050 --> 00:12:03,670 +this is what? + +190 +00:12:07,510 --> 00:12:12,050 +For Twitter Of course, everyone has to implement a + +191 +00:12:12,050 --> 00:12:15,950 +news update So if you write it and if you don't + +192 +00:12:15,950 --> 00:12:21,750 +write it, it's still clear, okay? Of course, there + +193 +00:12:21,750 --> 00:12:23,130 +are adjustments that we make, where? The main + +194 +00:12:23,130 --> 00:12:28,150 +adjustments are in the news publisher News + +195 +00:12:30,850 --> 00:12:33,450 +Publisher You have to explain to me all the + +196 +00:12:33,450 --> 00:12:35,510 +modifications that have to be done through the url + +197 +00:12:35,510 --> 00:12:38,330 +The first modification is that I have to have a + +198 +00:12:38,330 --> 00:12:41,710 +list of what? Of the subscriber type So here I + +199 +00:12:41,710 --> 00:12:44,930 +have to have listeners for example or subscribers + +200 +00:12:44,930 --> 00:12:52,710 +This listeners type is what? List of subscriber + +201 +00:12:52,710 --> 00:12:58,670 +type And what do you have here? Association + +202 +00:12:58,670 --> 00:13:03,450 +relationship Then, of course, since you did this, + +203 +00:13:03,490 --> 00:13:06,470 +you have to make a method add, listener or + +204 +00:13:06,470 --> 00:13:09,710 +subscriber Not a condition, if you don't put + +205 +00:13:09,710 --> 00:13:11,870 +remove, it's not a problem, it's not essential, + +206 +00:13:12,090 --> 00:13:18,210 +okay? S here means subscriber If you want to + +207 +00:13:18,210 --> 00:13:22,170 +remove, do it You also have to make a method + +208 +00:13:22,170 --> 00:13:27,030 +called publish or send to all, okay? I will make + +209 +00:13:27,030 --> 00:13:30,070 +the method publish to show me how the code looks + +210 +00:13:30,070 --> 00:13:34,080 +likeYes, this is what I want to see, I want to see + +211 +00:13:34,080 --> 00:13:37,000 +that you tell me that I want to do for each O for + +212 +00:13:37,000 --> 00:13:44,960 +example or for each in listeners for + +213 +00:13:44,960 --> 00:13:52,200 +each O in listeners O.news update + +214 +00:13:52,200 --> 00:13:54,380 +and you send him the news here for example + +215 +00:14:00,680 --> 00:14:02,740 +But if you do it like that, it's enough. These are + +216 +00:14:02,740 --> 00:14:05,040 +the basic things you need to know. Because there + +217 +00:14:05,040 --> 00:14:06,120 +are things here that you can write, for example, + +218 +00:14:06,280 --> 00:14:08,280 +string let it's do, it's okay if you write it but + +219 +00:14:08,280 --> 00:14:13,620 +don't write it. It doesn't mean much. Okay? These + +220 +00:14:13,620 --> 00:14:16,020 +are the things you need to know. This is the + +221 +00:14:16,020 --> 00:14:21,440 +solution. How? Yes, it's okay. Red, yellow, + +222 +00:14:21,460 --> 00:14:23,380 +whatever you want. Okay? It's okay. The important + +223 +00:14:23,380 --> 00:14:24,600 +thing is to explain the things you need to know. + +224 +00:14:25,100 --> 00:14:30,190 +Okay?So this is the answer to the simple question + +225 +00:14:30,190 --> 00:14:37,670 +Notice + +226 +00:14:37,670 --> 00:14:40,790 +that the questions are gradually becoming more + +227 +00:14:40,790 --> 00:14:45,890 +difficult Now the next question In the code + +228 +00:14:45,890 --> 00:14:49,210 +snippet shown below, the method assemble is + +229 +00:14:49,210 --> 00:14:53,190 +responsible for assembling a computer machineSo + +230 +00:14:53,190 --> 00:14:55,890 +you look at it, this method is simple, in it I + +231 +00:14:55,890 --> 00:15:02,230 +create a processor first, then I add speed, then I + +232 +00:15:02,230 --> 00:15:06,790 +add RAM, then I add size, then I add hard drive, + +233 +00:15:06,890 --> 00:15:09,490 +then I add size, then I add processor, link, ram, + +234 +00:15:09,610 --> 00:15:15,140 +link, driveSo when you look at this question, you + +235 +00:15:15,140 --> 00:15:17,880 +will remember the example of the maze, which we + +236 +00:15:17,880 --> 00:15:21,420 +took, right or not? So if you studied the maze, + +237 +00:15:21,660 --> 00:15:26,120 +you will remember the same shape, okay? So I tell + +238 +00:15:26,120 --> 00:15:28,540 +you here that the method assemble is responsible + +239 +00:15:28,540 --> 00:15:31,060 +for assembling a computer machine from its + +240 +00:15:31,060 --> 00:15:34,220 +elementary parts, processor, RAM, hard drive Now + +241 +00:15:34,220 --> 00:15:38,060 +you need to create other computer assemblers, for + +242 +00:15:38,060 --> 00:15:41,280 +example AMD computer assembler, MAC computer + +243 +00:15:41,280 --> 00:15:47,500 +assemblerThese two have to use the same logic but + +244 +00:15:47,500 --> 00:15:51,380 +using different parts. They have to use the same + +245 +00:15:51,380 --> 00:15:55,400 +logic, this one, but they have to change only the + +246 +00:15:55,400 --> 00:16:02,080 +objects they want to create. For example, AMD + +247 +00:16:02,080 --> 00:16:08,260 +computer assembler has to use AMD processor, these + +248 +00:16:08,260 --> 00:16:11,400 +types for example. Mac wants to use all the + +249 +00:16:11,400 --> 00:16:14,920 +components of Mac, for example. Because I'm + +250 +00:16:14,920 --> 00:16:17,580 +telling you here, what design pattern you need to + +251 +00:16:17,580 --> 00:16:21,940 +use to achieve this purpose. Okay? Rewrite the + +252 +00:16:21,940 --> 00:16:24,320 +computer assembly class to apply the pattern. Pay + +253 +00:16:24,320 --> 00:16:26,660 +attention to me here. By the way, two answers may + +254 +00:16:26,660 --> 00:16:31,980 +be correct. If you told me the factor method, it's + +255 +00:16:31,980 --> 00:16:34,920 +definitely correct. Okay? Why? Because the idea, + +256 +00:16:35,020 --> 00:16:36,640 +what did he tell you? This is the main point of + +257 +00:16:36,640 --> 00:16:41,120 +the question. Use the same logic.But using + +258 +00:16:41,120 --> 00:16:43,900 +different parts. Meaning that you have to modify + +259 +00:16:43,900 --> 00:16:47,440 +the design of this code in order to preserve the + +260 +00:16:47,440 --> 00:16:52,720 +logic itself, but allow the subclasses to create + +261 +00:16:52,720 --> 00:16:56,280 +objects of different types. Okay? So the idea is + +262 +00:16:56,280 --> 00:16:59,290 +that instead of U being present here, you have to + +263 +00:16:59,290 --> 00:17:02,310 +make it create processor and instead of sd-ram + +264 +00:17:02,310 --> 00:17:07,110 +create ram and instead of cgate create hard drive + +265 +00:17:07,110 --> 00:17:09,490 +on the basis of subclasses it makes override for + +266 +00:17:09,490 --> 00:17:12,330 +whom? for these methods anyway let's go back to + +267 +00:17:12,330 --> 00:17:14,390 +our question what is the design pattern? if you + +268 +00:17:14,390 --> 00:17:16,750 +wrote a factor method it is correct and if you + +269 +00:17:16,750 --> 00:17:20,850 +wrote a template it is also correct because the + +270 +00:17:20,850 --> 00:17:22,950 +same principle is that you have to keep the steps + +271 +00:17:24,260 --> 00:17:26,460 +Yes, but this changes some details, so whoever + +272 +00:17:26,460 --> 00:17:29,700 +wrote a template, in the end, see how there is + +273 +00:17:29,700 --> 00:17:33,060 +flexibility in the answers, okay? And when I + +274 +00:17:33,060 --> 00:17:34,460 +explained the factory method, I said that the + +275 +00:17:34,460 --> 00:17:36,540 +factory method is similar to what? In the + +276 +00:17:36,540 --> 00:17:38,180 +template, so if you understand this way or this + +277 +00:17:38,180 --> 00:17:42,380 +way, both of them are correct, even though the + +278 +00:17:42,380 --> 00:17:44,900 +closest is the factory method, because actually + +279 +00:17:44,900 --> 00:17:46,620 +the step that changes is the creation of the + +280 +00:17:46,620 --> 00:17:48,300 +object, so what does it have to do with creation, + +281 +00:17:48,480 --> 00:17:51,770 +so what is it? The factory methodBut I will + +282 +00:17:51,770 --> 00:17:54,330 +consider the creation as a step, it will change, + +283 +00:17:54,450 --> 00:17:56,630 +so I will consider the template also correct. + +284 +00:17:59,190 --> 00:17:59,590 +Okay, + +285 +00:18:02,250 --> 00:18:03,430 +what I am saying is that the template is also + +286 +00:18:03,430 --> 00:18:06,690 +correct. Because the important thing for me is to + +287 +00:18:06,690 --> 00:18:10,430 +rewrite the computer assembler class to apply the + +288 +00:18:10,430 --> 00:18:12,650 +pattern. Because here be careful because there is + +289 +00:18:12,650 --> 00:18:16,230 +also a mistake in this. Because I want to rewrite + +290 +00:18:16,230 --> 00:18:19,780 +the assembler class. But the new class that I want + +291 +00:18:19,780 --> 00:18:23,820 +to do must perform the same role as this class. + +292 +00:18:24,840 --> 00:18:27,040 +Okay? What does it mean? It means that you have to + +293 +00:18:27,040 --> 00:18:27,660 +do the following. + +294 +00:18:42,160 --> 00:18:43,940 +Is this better maybe? Yes. + +295 +00:18:47,590 --> 00:18:54,090 +Okay, public class computer + +296 +00:18:54,090 --> 00:18:58,490 +assembler He didn't tell you to make a super class + +297 +00:18:58,490 --> 00:19:01,590 +or something like that Then inside you have to put + +298 +00:19:01,590 --> 00:19:08,250 +the method which is public void assembler + +299 +00:19:15,430 --> 00:19:20,970 +The first line is processor P + +300 +00:19:20,970 --> 00:19:24,830 +for example, instead of new processor, you have to + +301 +00:19:24,830 --> 00:19:30,210 +write here create processor + +302 +00:19:30,210 --> 00:19:32,730 +And as long as we want this class not to change + +303 +00:19:32,730 --> 00:19:39,750 +its code, you come here and write public No, not + +304 +00:19:39,750 --> 00:19:41,230 +abstract, processor + +305 +00:19:53,760 --> 00:20:01,500 +create return new Intel + +306 +00:20:06,960 --> 00:20:08,420 +Processor, this is correct, the code should not + +307 +00:20:08,420 --> 00:20:11,360 +change for computer assembler, what they do before + +308 +00:20:11,360 --> 00:20:14,460 +should be the same as what they do after Now, what + +309 +00:20:14,460 --> 00:20:16,820 +abstract did with me is also correct, he + +310 +00:20:16,820 --> 00:20:19,100 +understood that he wants to make it abstract in + +311 +00:20:19,100 --> 00:20:24,640 +order to make it computer assembler, okay? But he + +312 +00:20:24,640 --> 00:20:27,300 +didn't do what I asked him to do, that I told you + +313 +00:20:27,300 --> 00:20:30,920 +to rewrite, write the same class so that its + +314 +00:20:30,920 --> 00:20:34,370 +function remains as it is, but you supportTo make + +315 +00:20:34,370 --> 00:20:37,130 +a new assembler with different components We + +316 +00:20:37,130 --> 00:20:42,230 +divide it into a simple thing The next thing is to + +317 +00:20:42,230 --> 00:20:45,710 +complete the code Do not waste your time and write + +318 +00:20:45,710 --> 00:20:50,490 +this next thing Just put dots Where do you go? On + +319 +00:20:50,490 --> 00:20:58,670 +RAM This RAM is equal to what? Instead of new RAM, + +320 +00:20:59,770 --> 00:21:01,950 +you say create RAM + +321 +00:21:03,680 --> 00:21:07,560 +And here it comes under public, ram, + +322 +00:21:11,940 --> 00:21:14,240 +it's done, create ram, there are many types, okay? + +323 +00:21:14,480 --> 00:21:20,400 +Create ram, and between them, what type do they + +324 +00:21:20,400 --> 00:21:22,460 +want to return? Return + +325 +00:21:25,870 --> 00:21:30,150 +new sdran And this is the proof that the factory + +326 +00:21:30,150 --> 00:21:32,750 +method is not necessarily an abstract method. Its + +327 +00:21:32,750 --> 00:21:34,990 +properties are abstract. I force the subclass to + +328 +00:21:34,990 --> 00:21:38,950 +override it. But it can be written and I override + +329 +00:21:38,950 --> 00:21:44,770 +it. Like the example of the maze. Put points and + +330 +00:21:44,770 --> 00:21:51,140 +then hard drive The things that don't give you + +331 +00:21:51,140 --> 00:21:53,660 +grades, don't waste your time writing them I'm not + +332 +00:21:53,660 --> 00:21:57,000 +going to give you a grade if you write 6 speed and + +333 +00:21:57,000 --> 00:22:00,460 +6 size That's it, that's the point that this code + +334 +00:22:00,460 --> 00:22:05,500 +exists and we're done Hard drive is equal to + +335 +00:22:05,500 --> 00:22:14,960 +create hard drive as well And here public hard + +336 +00:22:14,960 --> 00:22:26,450 +drivedrive create HD and + +337 +00:22:26,450 --> 00:22:31,410 +here return cgate + +338 +00:22:31,410 --> 00:22:35,330 +hard + +339 +00:22:35,330 --> 00:22:41,210 +drive and + +340 +00:22:41,210 --> 00:22:43,270 +the rest is nugget + +341 +00:22:45,450 --> 00:22:49,590 +Okay? So this is the solution to fear. Is it clear + +342 +00:22:49,590 --> 00:22:53,190 +guys? As I said, what I did was also abstract + +343 +00:22:58,030 --> 00:23:03,530 +We see it. From what I see, when we put a test, we + +344 +00:23:03,530 --> 00:23:07,470 +say students will solve it all. But from what I + +345 +00:23:07,470 --> 00:23:12,490 +see, the signs don't have it. I have to search for + +346 +00:23:12,490 --> 00:23:15,910 +the smell of health to put what. God will make it + +347 +00:23:15,910 --> 00:23:21,310 +easy. Next. The question is not finished yet. It + +348 +00:23:21,310 --> 00:23:23,630 +was the problem of the test in logic. It was not + +349 +00:23:23,630 --> 00:23:27,730 +logical. No, logic is good.No, no, it's good. The + +350 +00:23:27,730 --> 00:23:30,350 +first question, believe me, the first question, if + +351 +00:23:30,350 --> 00:23:32,930 +you, I mean, it's not supposed to take 10 minutes + +352 +00:23:32,930 --> 00:23:34,230 +from you. I don't know, but I wrote the code as + +353 +00:23:34,230 --> 00:23:37,510 +well. The first question. Okay, what's left in the + +354 +00:23:37,510 --> 00:23:39,290 +... What's left is the second question. The second + +355 +00:23:39,290 --> 00:23:42,770 +question is a UML drawing of the observer. There + +356 +00:23:42,770 --> 00:23:46,910 +is no coding in it. This is the only one that has + +357 +00:23:46,910 --> 00:23:49,250 +code. The third one is also UML. The last one is + +358 +00:23:49,250 --> 00:23:55,320 +also UML. No, just one line of code. Do you want + +359 +00:23:55,320 --> 00:24:01,820 +code? Also, there is a budget. But you are used to + +360 +00:24:01,820 --> 00:24:04,380 +finish in half an hour, and half an hour later you + +361 +00:24:04,380 --> 00:24:07,640 +are left with nothing. You look left and right. + +362 +00:24:07,880 --> 00:24:11,440 +No, this exam is enough for an hour. You finish + +363 +00:24:11,440 --> 00:24:15,940 +before two or three gigs. But it is really an + +364 +00:24:15,940 --> 00:24:20,560 +hour.The next step is to create a class named AMD + +365 +00:24:20,560 --> 00:24:23,700 +which we will apply the pattern that I told you + +366 +00:24:23,700 --> 00:24:25,240 +about The idea behind this is that when you create + +367 +00:24:25,240 --> 00:24:32,200 +a new assembler It needs to maintain the logic of + +368 +00:24:32,200 --> 00:24:39,060 +the objects that you create He told me to create a + +369 +00:24:39,060 --> 00:24:45,940 +class called AMD Computer Assembler Class AMD + +370 +00:24:50,270 --> 00:24:55,990 +computer assembler and this will be extends who? + +371 +00:24:57,410 --> 00:25:03,710 +computer assembler + +372 +00:25:03,710 --> 00:25:06,710 +what in short do you want to do with it? do you + +373 +00:25:06,710 --> 00:25:10,410 +see these three keys? that's it these three keys + +374 +00:25:10,410 --> 00:25:14,750 +you write them again here that's it, instead of + +375 +00:25:14,750 --> 00:25:22,510 +intel you put AMDinstead of sd-ram you say amd-ram + +376 +00:25:22,510 --> 00:25:30,190 +instead of c gate you say amd-ram instead + +377 +00:25:30,190 --> 00:25:36,210 +of sd-ram you say amd-ram instead of c gate you + +378 +00:25:36,210 --> 00:25:36,210 +say amd-ram instead of sd-ram you say amd-ram + +379 +00:25:36,210 --> 00:25:41,870 +instead of c gate you say amd-ram instead of sd + +380 +00:25:41,870 --> 00:25:45,760 +-ram you say amd-ram Put them here and let him + +381 +00:25:45,760 --> 00:25:50,800 +return the types he asked for in the question Ok + +382 +00:25:50,800 --> 00:25:54,680 +guys? Who solved the whole thing correctly? + +383 +00:25:58,000 --> 00:26:02,140 +Not a problem, I wrote it abstractly too. Even Bin + +384 +00:26:02,140 --> 00:26:04,380 +did it abstractly. Ok, excellent. + +385 +00:26:11,010 --> 00:26:12,830 +Yes, now pay attention with me, I brought this as + +386 +00:26:12,830 --> 00:26:14,750 +a goal, did you notice that when I gave you the + +387 +00:26:14,750 --> 00:26:17,610 +paper at the end, you will find that there are two + +388 +00:26:17,610 --> 00:26:22,790 +marks above it, okay? The semicolon mark is from + +389 +00:26:22,790 --> 00:26:28,450 +40 to 30, and you will also find the duty mark, + +390 +00:26:28,790 --> 00:26:31,770 +how many duties did we take at the factory? Two? + +391 +00:26:32,290 --> 00:26:35,630 +Two, okay? Two questions were there, okay? Now + +392 +00:26:35,630 --> 00:26:38,550 +this question is one of the duties questions The + +393 +00:26:38,550 --> 00:26:42,470 +duty mark of the whole factory will take it to the + +394 +00:26:42,470 --> 00:26:44,630 +question. This means that this question was solved + +395 +00:26:44,630 --> 00:26:47,430 +by taking the duty mark. If you didn't solve it, + +396 +00:26:47,950 --> 00:26:49,870 +you won't get the duty mark. If you give up, you + +397 +00:26:49,870 --> 00:26:52,450 +won't give up. If you solved it 100% by giving up, + +398 +00:26:52,710 --> 00:26:54,790 +you won't get the duty mark. If you didn't solve + +399 +00:26:54,790 --> 00:26:56,690 +it, it means that you cheated the person who gave + +400 +00:26:56,690 --> 00:26:58,850 +up. In the end, it's like this. I don't want you + +401 +00:26:58,850 --> 00:27:00,850 +to go and complain to me. Let's do an + +402 +00:27:00,850 --> 00:27:02,650 +investigation and see who is right and who is + +403 +00:27:02,650 --> 00:27:03,790 +wrong. Okay? + +404 +00:27:08,710 --> 00:27:10,550 +So this is the derbalco, you can also find it + +405 +00:27:10,550 --> 00:27:17,590 +where? In the final exam Another question so that + +406 +00:27:17,590 --> 00:27:22,330 +I don't fix the homework again This + +407 +00:27:22,330 --> 00:27:24,750 +is for those who are used to it, because I saw the + +408 +00:27:24,750 --> 00:27:28,030 +homeworks, all the students have passed the + +409 +00:27:28,030 --> 00:27:30,090 +homework, this is not logical that everyone has + +410 +00:27:30,090 --> 00:27:32,190 +passed it, especially because the homeworks that I + +411 +00:27:32,190 --> 00:27:36,480 +bringIt's not easy, she needs to work, she needs a + +412 +00:27:36,480 --> 00:27:41,740 +GUI, I don't expect all students to solve it, 90% + +413 +00:27:41,740 --> 00:27:45,340 +of students. So this is the goal of the question. + +414 +00:27:45,440 --> 00:27:48,580 +Now the question also has a simple solution, I + +415 +00:27:48,580 --> 00:27:56,340 +didn't ask for a GUI, I asked you to solve it. + +416 +00:28:07,580 --> 00:28:09,260 +So this is the mark of the question out of ten, + +417 +00:28:11,080 --> 00:28:13,440 +because of the ten marks, it will show you that it + +418 +00:28:13,440 --> 00:28:17,400 +is your mark in what? In the homework, okay? But + +419 +00:28:17,400 --> 00:28:19,740 +the homework will be less than ten, but it will + +420 +00:28:19,740 --> 00:28:21,560 +show up and you will calculate it, before you see + +421 +00:28:21,560 --> 00:28:24,600 +the final result, see the second homework Okay, + +422 +00:28:27,080 --> 00:28:29,520 +we don't want to read all of this, because all of + +423 +00:28:29,520 --> 00:28:33,810 +thisIt was there in the question, okay? Which is + +424 +00:28:33,810 --> 00:28:36,870 +the idea that I want to design a GUI, I want to + +425 +00:28:36,870 --> 00:28:39,110 +make a new tab or a new screen, everything I need + +426 +00:28:39,110 --> 00:28:42,970 +to do, I want to make a class of a certain type + +427 +00:28:42,970 --> 00:28:45,310 +and throw it in a folder and the tab will + +428 +00:28:45,310 --> 00:28:47,390 +automatically appear and work for me. What is the + +429 +00:28:47,390 --> 00:28:48,390 +purpose of the tab? + +430 +00:28:51,690 --> 00:28:56,970 +We use the factory method to achieve such a + +431 +00:28:56,970 --> 00:28:57,430 +design. + +432 +00:29:00,270 --> 00:29:05,970 +Draw the UML diagram that uses the factory pattern + +433 +00:29:05,970 --> 00:29:09,990 +to achieve the requested behavior of the above + +434 +00:29:09,990 --> 00:29:13,610 +app.Show all necessary class, method, attribute + +435 +00:29:13,610 --> 00:29:16,610 +and relation. The UML should not be generic, but + +436 +00:29:16,610 --> 00:29:18,770 +specific to the above example. What does it mean + +437 +00:29:18,770 --> 00:29:22,990 +by generic? It doesn't mean that you draw on the + +438 +00:29:22,990 --> 00:29:25,490 +factory's paper, or you go and tell him this and + +439 +00:29:25,490 --> 00:29:29,010 +that. No, it should be specific to this example. + +440 +00:29:29,650 --> 00:29:33,170 +This is very simple. We said that the goal is to + +441 +00:29:33,170 --> 00:29:36,500 +make a new class, Ok, from a certain type, and you + +442 +00:29:36,500 --> 00:29:40,160 +put it, and so on, you create an interface, for + +443 +00:29:40,160 --> 00:29:44,160 +example, you call it myTab Ok, + +444 +00:29:44,280 --> 00:29:46,440 +this is the interface that you have, and there + +445 +00:29:46,440 --> 00:29:50,120 +should be a method, one for example, called + +446 +00:29:50,120 --> 00:29:54,020 +createGUI, or drawGUI, or getGUI, or + +447 +00:29:54,020 --> 00:29:57,000 +getComponents, whatever you want. The important + +448 +00:29:57,000 --> 00:29:59,140 +thing is to show that there is a method that + +449 +00:29:59,140 --> 00:30:02,760 +creates the graphical user interface. Now, really, + +450 +00:30:02,980 --> 00:30:06,530 +all you have to do isYou need to create an + +451 +00:30:06,530 --> 00:30:09,310 +implement for this interface in order to create + +452 +00:30:09,310 --> 00:30:17,590 +your own tabs This is tab 1, tab 2, and tab 3 And + +453 +00:30:17,590 --> 00:30:19,370 +of course they all need to create an implement for + +454 +00:30:19,370 --> 00:30:26,770 +whom? To create GUI It + +455 +00:30:26,770 --> 00:30:30,240 +didn't ask for GUI codeThat's why this question is + +456 +00:30:30,240 --> 00:30:31,980 +easier than the answer to the question of duty. + +457 +00:30:32,280 --> 00:30:33,860 +You solved the question of duty, you solved it and + +458 +00:30:33,860 --> 00:30:35,160 +you say that you forgot about it during the exam. + +459 +00:30:35,360 --> 00:30:38,200 +You solved it during the exam, but you forgot + +460 +00:30:38,200 --> 00:30:39,120 +about it during the exam. No, it doesn't make + +461 +00:30:39,120 --> 00:30:41,780 +sense. This is easier. Okay? Now, let's look at + +462 +00:30:41,780 --> 00:30:46,460 +the class of the factory. Now, what should we call + +463 +00:30:46,460 --> 00:30:49,860 +it? For example, tab factory. + +464 +00:30:51,040 --> 00:30:52,760 +Now, the class of the factory has one method. + +465 +00:30:53,860 --> 00:30:59,710 +Okay? Which is createTab. And we asked for a + +466 +00:30:59,710 --> 00:31:07,830 +design with reflection. Ok? So, actually, T and + +467 +00:31:07,830 --> 00:31:09,550 +you take the path, for example, which is the + +468 +00:31:09,550 --> 00:31:12,810 +string. You have to take a parameter. You tell it + +469 +00:31:12,810 --> 00:31:16,630 +what you want it to do. Ok? Because this will have + +470 +00:31:16,630 --> 00:31:23,630 +a reference to whom? To myTab. We're done. This is + +471 +00:31:23,630 --> 00:31:27,440 +the answer to the question.Yes, but he has another + +472 +00:31:27,440 --> 00:31:30,520 +requirement. Ok? This is the answer to the + +473 +00:31:30,520 --> 00:31:35,140 +question. You can solve both questions, both + +474 +00:31:35,140 --> 00:31:37,380 +branches in the same question. You bring me a note + +475 +00:31:37,380 --> 00:31:41,780 +here and tell me what is the code here. Of course, + +476 +00:31:42,580 --> 00:31:45,980 +the create can be done in two ways. You can make + +477 +00:31:45,980 --> 00:31:51,300 +an if statement.Okay? If this string or integer + +478 +00:31:51,300 --> 00:31:55,680 +that you see here is one, make it tab one Two, tab + +479 +00:31:55,680 --> 00:32:02,660 +two. If you do it right, it's good Okay? Now? It's + +480 +00:32:02,660 --> 00:32:08,300 +not a problem. You have to put the J-panel as a + +481 +00:32:08,300 --> 00:32:11,480 +superclass It's clear that they extended to whom? + +482 +00:32:12,180 --> 00:32:15,580 +To J-panel It's correct Okay? The important thing + +483 +00:32:15,580 --> 00:32:16,480 +is to make it unified + +484 +00:32:28,810 --> 00:32:33,850 +Write the code of the factory class and use the + +485 +00:32:33,850 --> 00:32:39,930 +reflection API to dynamically create tabs Class + +486 +00:32:39,930 --> 00:32:46,610 +Tab + +487 +00:32:48,260 --> 00:32:52,180 +Factory Public + +488 +00:32:52,180 --> 00:33:05,520 +Static Create Tab + +489 +00:33:05,520 --> 00:33:10,520 +Reflection String String T + +490 +00:33:13,630 --> 00:33:16,070 +or the path to the class because here you want to + +491 +00:33:16,070 --> 00:33:24,190 +write line 1 little mytab + +492 +00:33:24,190 --> 00:33:29,010 +because there are two ways here some write class + +493 +00:33:29,010 --> 00:33:37,030 +dot forename and take the T dot and some write new + +494 +00:33:40,420 --> 00:33:43,780 +Instance, I think it has null and that's it, okay? + +495 +00:33:43,880 --> 00:33:48,080 +But this is deprecated, okay? What I used to work + +496 +00:33:48,080 --> 00:33:51,580 +on is running but deprecated, which is get + +497 +00:33:51,580 --> 00:33:55,500 +constructor I mean, I say bring me the empty + +498 +00:33:55,500 --> 00:34:01,240 +constructor, I give it null, okay? And then I say + +499 +00:34:01,240 --> 00:34:01,520 +new + +500 +00:34:04,900 --> 00:34:07,640 +instance and none. Regardless if I used these two + +501 +00:34:07,640 --> 00:34:10,220 +or these two, correct. What I'm looking for is + +502 +00:34:10,220 --> 00:34:13,540 +that it should be static and return what? My tab + +503 +00:34:13,540 --> 00:34:16,820 +and take a string to say class.forename and do + +504 +00:34:16,820 --> 00:34:19,660 +casting here for what? For my tab and there should + +505 +00:34:19,660 --> 00:34:25,160 +be what? A new instance. Okay? And if this line + +506 +00:34:25,160 --> 00:34:30,660 +you wrote here, correct. Okay? I will get of + +507 +00:34:30,660 --> 00:34:34,580 +course in the design it's possible that the + +508 +00:34:34,580 --> 00:34:37,780 +question has two parts in the first part it's not + +509 +00:34:37,780 --> 00:34:39,520 +required reflection where did reflection come + +510 +00:34:39,520 --> 00:34:42,440 +from? in the second part so people might say what + +511 +00:34:42,440 --> 00:34:46,040 +did she do if I didn't use reflection okay I have + +512 +00:34:46,040 --> 00:34:49,620 +to use the if statement if it's like this go + +513 +00:34:49,620 --> 00:34:59,060 +return new tab one if it's else if like this + +514 +00:34:59,060 --> 00:35:04,670 +return new tab oneTwo, in this case there will be + +515 +00:35:04,670 --> 00:35:09,850 +a relationship with whom? With these ties. This is + +516 +00:35:09,850 --> 00:35:13,190 +in design without reflection. Without reflection, + +517 +00:35:13,390 --> 00:35:15,250 +there is a problem or the coupling is bigger + +518 +00:35:15,250 --> 00:35:18,270 +because this is linked to whom? To these people. + +519 +00:35:18,690 --> 00:35:20,550 +But the advantage of reflection is that these + +520 +00:35:20,550 --> 00:35:22,690 +relationships have nothing to do with each other. + +521 +00:35:22,950 --> 00:35:24,550 +I removed them, right or not? + +522 +00:35:33,420 --> 00:35:35,960 +I put this one and that's it. Try catch, this one + +523 +00:35:35,960 --> 00:35:41,700 +doesn't have it, increase it. Okay guys, + +524 +00:35:41,940 --> 00:35:46,500 +it's clear. I put it in the seminal, I put it in + +525 +00:35:46,500 --> 00:35:48,780 +the jubilatory term. I didn't realize that it + +526 +00:35:48,780 --> 00:35:52,700 +could be aesthetic.Here in the UML, it is not + +527 +00:35:52,700 --> 00:35:54,820 +clear, but when you write the code, not from the + +528 +00:35:54,820 --> 00:35:56,260 +second branch, they tell you to write the code, it + +529 +00:35:56,260 --> 00:35:56,720 +is clear + +530 +00:36:03,630 --> 00:36:05,230 +Did you write this line? That's it, we're not + +531 +00:36:05,230 --> 00:36:08,190 +going to focus on aesthetics. It doesn't have to + +532 +00:36:08,190 --> 00:36:11,110 +be aesthetic at all, okay? I mean, it's aesthetic + +533 +00:36:11,110 --> 00:36:12,730 +so that you don't create an object from that + +534 +00:36:12,730 --> 00:36:15,050 +factory, but it's not a condition. It could even + +535 +00:36:15,050 --> 00:36:17,650 +be a singleton made by the factory. So this + +536 +00:36:17,650 --> 00:36:20,150 +aesthetic is not a constraint, okay? The most + +537 +00:36:20,150 --> 00:36:21,470 +important thing is that it shows that it returns + +538 +00:36:21,470 --> 00:36:23,610 +... I mean, when you write, you have to put the + +539 +00:36:23,610 --> 00:36:27,190 +cast here to know that it returns from the + +540 +00:36:27,190 --> 00:36:33,240 +father's type at the end, okay?So, the exam is + +541 +00:36:33,240 --> 00:36:41,220 +gradual. If you read the slides, the first + +542 +00:36:41,220 --> 00:36:44,420 +question, as I told you, is all copied from the + +543 +00:36:44,420 --> 00:36:46,880 +slides. The second question is on the news + +544 +00:36:46,880 --> 00:36:48,080 +publisher, it is exactly the same as the first + +545 +00:36:48,080 --> 00:36:52,140 +one. It is repeated in the slides. This is very + +546 +00:36:52,140 --> 00:36:55,940 +similar to the example of the maze. I took the + +547 +00:36:55,940 --> 00:37:00,250 +code of the maze and just changed the names.And + +548 +00:37:00,250 --> 00:37:04,050 +this is the last question that was with you. I'm + +549 +00:37:04,050 --> 00:37:05,190 +surprised that I told you that the exam was + +550 +00:37:05,190 --> 00:37:06,570 +difficult and we didn't know the answer and left + +551 +00:37:06,570 --> 00:37:07,970 +it blank. Ok guys + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Sber64Sc7AI.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Sber64Sc7AI.srt new file mode 100644 index 0000000000000000000000000000000000000000..0fdfab0677dc751c6c7ee586d13e1dee75938693 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Sber64Sc7AI.srt @@ -0,0 +1,2494 @@ + +1 +00:00:05,080 --> 00:00:08,220 +Ok guys, peace be upon you. In the last lecture, + +2 +00:00:08,400 --> 00:00:11,100 +we started with the first or the last group of + +3 +00:00:11,100 --> 00:00:13,660 +design patterns which are structural design + +4 +00:00:13,660 --> 00:00:15,200 +patterns and we took from them two design + +5 +00:00:15,200 --> 00:00:20,820 +patterns. One of them is called Facade, is to + +6 +00:00:20,820 --> 00:00:24,420 +provide a simple interface to use parts of your + +7 +00:00:24,420 --> 00:00:27,400 +system so that you don't involve the developer who + +8 +00:00:27,400 --> 00:00:30,680 +will use your library to implement many steps or + +9 +00:00:30,680 --> 00:00:34,140 +know the details of parts of your system and what + +10 +00:00:34,140 --> 00:00:36,060 +are the subsystems and the relationship between + +11 +00:00:36,060 --> 00:00:38,900 +them make it easy for him to provide him a simple + +12 +00:00:38,900 --> 00:00:41,740 +method, a simple interface through which he can + +13 +00:00:41,740 --> 00:00:44,670 +implement a specific process without knowing the + +14 +00:00:44,670 --> 00:00:49,370 +details. The details are hidden in this face. You + +15 +00:00:49,370 --> 00:00:53,650 +execute the commands and provide it with a single + +16 +00:00:53,650 --> 00:00:55,990 +method to execute the whole process. And this is + +17 +00:00:55,990 --> 00:00:59,550 +what we call the facade. The second design pattern + +18 +00:00:59,550 --> 00:01:01,330 +is the important design pattern called the + +19 +00:01:01,330 --> 00:01:04,980 +adapter. How if I have a system It needs to match + +20 +00:01:04,980 --> 00:01:08,420 +with a new office that I want to use I designed + +21 +00:01:08,420 --> 00:01:11,240 +the system to use a specific office And I want to + +22 +00:01:11,240 --> 00:01:13,480 +remove this office and use a new office instead + +23 +00:01:13,480 --> 00:01:15,760 +And this is a scenario that will stay with you all + +24 +00:01:15,760 --> 00:01:18,200 +your life That you remove offices and replace them + +25 +00:01:18,200 --> 00:01:22,500 +with new ones Is the logical solution to change + +26 +00:01:22,500 --> 00:01:27,010 +your entire client application that every call to + +27 +00:01:27,010 --> 00:01:31,050 +the new office becomes a call to the old office + +28 +00:01:31,050 --> 00:01:33,830 +becomes a call to the new office? No, this is not + +29 +00:01:33,830 --> 00:01:39,330 +going to work. Make an adapter so that the client + +30 +00:01:39,330 --> 00:01:41,930 +makes a call to the adapter and the adapter inside + +31 +00:01:41,930 --> 00:01:45,470 +turns into a call to the new office. A third + +32 +00:01:45,470 --> 00:01:47,730 +office is created after that. You only make a new + +33 +00:01:47,730 --> 00:01:51,630 +adapter. The program sends to the adapter and the + +34 +00:01:51,630 --> 00:01:55,090 +adapter turns into the third office. So your + +35 +00:01:55,090 --> 00:02:00,210 +client will be static and will only send request + +36 +00:02:00,210 --> 00:02:03,370 +to adapters and adapters will transform it to new + +37 +00:02:03,370 --> 00:02:08,010 +folders So your application will remain as it is + +38 +00:02:08,010 --> 00:02:10,470 +All you need to do is to create a new adapter when + +39 +00:02:10,470 --> 00:02:14,510 +you get a new library Today we will take a third + +40 +00:02:14,510 --> 00:02:16,510 +design pattern which is also one of the most + +41 +00:02:16,510 --> 00:02:19,230 +important design patterns It's called Decorator + +42 +00:02:19,230 --> 00:02:23,790 +Design Pattern Decorator means that it adds decor + +43 +00:02:24,900 --> 00:02:30,060 +For example, jewellery. We all know what decor + +44 +00:02:30,060 --> 00:02:34,200 +means. Okay, let's read the intent and try to + +45 +00:02:34,200 --> 00:02:37,120 +understand it. Then, let's look at a practical + +46 +00:02:37,120 --> 00:02:39,800 +example to explain what the decorator pattern is + +47 +00:02:39,800 --> 00:02:43,060 +and what it means. The intent or the goal of the + +48 +00:02:43,060 --> 00:02:45,300 +decorator pattern is to attach additional + +49 +00:02:45,300 --> 00:02:48,960 +responsibilities to an object dynamically. To add + +50 +00:02:48,960 --> 00:02:51,560 +new characteristics to the object dynamically. + +51 +00:02:54,350 --> 00:02:59,750 +2. Decorators provide a flexible alternative to + +52 +00:02:59,750 --> 00:03:04,550 +subclassing for extending functionality What does + +53 +00:03:04,550 --> 00:03:05,490 +this sentence mean? This is the most important + +54 +00:03:05,490 --> 00:03:09,750 +sentence Decorators provide a flexible alternative + +55 +00:03:09,750 --> 00:03:11,590 +What is a flexible alternative? It is an + +56 +00:03:11,590 --> 00:03:16,450 +alternative to subclassing for extending + +57 +00:03:16,450 --> 00:03:20,050 +functionality because we have always learned in + +58 +00:03:20,050 --> 00:03:22,270 +programming that if you have a class and you want + +59 +00:03:22,270 --> 00:03:25,070 +to add new features that don't exist in it, what + +60 +00:03:25,070 --> 00:03:28,990 +do you do? you modify its code? no, you create a + +61 +00:03:28,990 --> 00:03:32,110 +new class and extend it to the old one so that you + +62 +00:03:32,110 --> 00:03:34,430 +don't rewrite the code and then add new features + +63 +00:03:34,430 --> 00:03:35,930 +okay? + +64 +00:03:37,470 --> 00:03:39,930 +did you find that we want to learn something new? + +65 +00:03:41,030 --> 00:03:45,360 +what contradicts this belief? Let's change our + +66 +00:03:45,360 --> 00:03:47,940 +beliefs in programming, not in other things, okay? + +67 +00:03:48,580 --> 00:03:52,780 +That you learn all your life that you add + +68 +00:03:52,780 --> 00:03:54,840 +something new to the class and go and extend it + +69 +00:03:54,840 --> 00:03:57,280 +and add something new to it and you are happy with + +70 +00:03:57,280 --> 00:03:59,300 +it and the subclassing is always good and + +71 +00:03:59,300 --> 00:04:02,180 +excellent No, we will learn that the subclassing + +72 +00:04:02,180 --> 00:04:07,780 +in many cases is bad and we will see alternatives + +73 +00:04:07,780 --> 00:04:11,290 +to itHow can we add a new functionality without + +74 +00:04:11,290 --> 00:04:15,790 +subclassing? And to understand when subclassing is + +75 +00:04:15,790 --> 00:04:18,890 +bad, let's see a practical example and then we + +76 +00:04:18,890 --> 00:04:25,270 +will continue reading the slides. Let me explain + +77 +00:04:25,270 --> 00:04:27,630 +this subject to you. First, I will give you a + +78 +00:04:27,630 --> 00:04:30,950 +simple example, not very practical, to show you + +79 +00:04:30,950 --> 00:04:33,650 +what the meaning of the decorator is, where the + +80 +00:04:33,650 --> 00:04:36,710 +problem is, and how the decorator can solve this + +81 +00:04:36,710 --> 00:04:40,910 +problem.Then I will tell you or show you examples + +82 +00:04:40,910 --> 00:04:45,170 +where this decorator is actually used in famous + +83 +00:04:45,170 --> 00:04:49,790 +libraries such as Java SDK or JavaFX that you are + +84 +00:04:49,790 --> 00:04:53,670 +working on or Swing or Android to show you that + +85 +00:04:53,670 --> 00:04:56,990 +this design pattern is actually used in a big way. + +86 +00:04:57,570 --> 00:04:59,990 +And you used it but you don't know that you are + +87 +00:04:59,990 --> 00:05:04,320 +applying the decorator pattern.Exactly like when + +88 +00:05:04,320 --> 00:05:06,880 +you do add action on the button and you don't know + +89 +00:05:06,880 --> 00:05:11,660 +that it is an observer pattern Ok, let's + +90 +00:05:11,660 --> 00:05:14,460 +understand this example, I want to make a simple + +91 +00:05:14,460 --> 00:05:17,540 +application to draw shapes, ok? I have classes + +92 +00:05:17,540 --> 00:05:21,060 +that represent shapes, first I have an interface + +93 +00:05:21,060 --> 00:05:24,750 +called IShape On the basis that all shapes follow + +94 +00:05:24,750 --> 00:05:27,710 +this interface, there is a method called draw that + +95 +00:05:27,710 --> 00:05:29,190 +draws the shape and there is a method called + +96 +00:05:29,190 --> 00:05:32,550 +describe that gives me a description of my text on + +97 +00:05:32,550 --> 00:05:37,830 +this shape The first shape I made is called Circle + +98 +00:05:39,120 --> 00:05:42,500 +which is a circle that implements IShape and then + +99 +00:05:42,500 --> 00:05:44,360 +gives it the characteristics of the circle which + +100 +00:05:44,360 --> 00:05:48,960 +is center and radius half a line then this is a + +101 +00:05:48,960 --> 00:05:52,520 +constructor setters and getters and in the end + +102 +00:05:52,520 --> 00:05:55,040 +there are two methods implement that are present + +103 +00:05:55,040 --> 00:05:57,560 +in the interface one of them is called draw which + +104 +00:05:57,560 --> 00:05:58,560 +is supposed to happen when I call it + +105 +00:06:04,740 --> 00:06:08,580 +Draw oval means to draw an oval shape. If you give + +106 +00:06:08,580 --> 00:06:11,240 +the oval shape the center and half of the circle + +107 +00:06:11,240 --> 00:06:13,580 +twice, which is the oval shape, consider that + +108 +00:06:13,580 --> 00:06:16,060 +there are two circles. If you put them next to + +109 +00:06:16,060 --> 00:06:17,540 +each other, what happens to the oval shape? + +110 +00:06:18,120 --> 00:06:21,740 +Circle. Describe, just repeat that this is the + +111 +00:06:21,740 --> 00:06:23,950 +center of the circle.The most important thing is + +112 +00:06:23,950 --> 00:06:25,910 +that I made another class that represents a + +113 +00:06:25,910 --> 00:06:29,210 +rectangle, the name of the class is Rectangle, its + +114 +00:06:29,210 --> 00:06:33,630 +attributes are different, x and y are the point of + +115 +00:06:33,630 --> 00:06:37,950 +the rectangle's corner, and width and height are + +116 +00:06:37,950 --> 00:06:41,190 +length and width this is constructor and the same + +117 +00:06:41,190 --> 00:06:44,010 +thing, I implemented two methods, draw that makes + +118 +00:06:44,010 --> 00:06:49,210 +a rectangle and describe that makes a rectangle + +119 +00:06:49,210 --> 00:06:52,390 +now I made a simple frame that is a small face, so + +120 +00:06:52,390 --> 00:06:55,930 +that when I click on the button, it draws a + +121 +00:06:55,930 --> 00:06:58,290 +circle, do you understand what I mean? because + +122 +00:06:58,290 --> 00:07:00,490 +when I click on the button, it is an action + +123 +00:07:00,490 --> 00:07:04,310 +performed in this swing, okay? I created an object + +124 +00:07:04,310 --> 00:07:08,940 +from Circle Okay, and I give him the data of the circle, + +125 +00:07:09,420 --> 00:07:11,860 +which is the center, for example, and half of the + +126 +00:07:11,860 --> 00:07:17,140 +line is 100. Okay, and then I tell him c dot draw, + +127 +00:07:18,160 --> 00:07:20,460 +and you study it on the fragment itself, so I tell + +128 +00:07:20,460 --> 00:07:21,280 +him get graphics. + +129 +00:07:25,000 --> 00:07:28,320 +When will this code be executed? When I press the + +130 +00:07:28,320 --> 00:07:34,040 +button. Run. this is add shape and this is circle + +131 +00:07:34,040 --> 00:07:39,960 +if you want to draw a rectangle it's exactly the + +132 +00:07:39,960 --> 00:07:46,300 +same thing you say Rectangle R new Rectangle and + +133 +00:07:46,300 --> 00:07:51,600 +also give it a point 50 50 180 which is the width + +134 +00:07:51,600 --> 00:07:59,220 +and height Rectangle free + +135 +00:08:02,400 --> 00:08:12,460 +and then R.draw.getGraphics() and make it run and + +136 +00:08:12,460 --> 00:08:16,240 +this is add shape and this is draw rectangle until + +137 +00:08:16,240 --> 00:08:20,480 +now the subject is trivial right or not guys? okay + +138 +00:08:20,480 --> 00:08:27,060 +now I asked you to make a circle with border so we + +139 +00:08:27,060 --> 00:08:30,480 +want to make a circle around the circle What does + +140 +00:08:30,480 --> 00:08:33,280 +this mean? That we are going to add a new + +141 +00:08:33,280 --> 00:08:35,360 +functionality. In the traditional way, what are + +142 +00:08:35,360 --> 00:08:38,100 +you going to do? Simply say, go and create a new + +143 +00:08:38,100 --> 00:08:42,040 +class called CircleWithBorder. + +144 +00:08:43,580 --> 00:08:47,760 +Okay? And right away, tell it what? Extends Circle + +145 +00:08:47,760 --> 00:08:53,240 +and so on and so forth in everything in the app. + +146 +00:08:53,640 --> 00:08:59,560 +Okay? And then add new attributes and override + +147 +00:08:59,560 --> 00:09:02,000 +things that you want to override so you say for + +148 +00:09:02,000 --> 00:09:08,160 +example int borderWidth this is for the width of + +149 +00:09:08,160 --> 00:09:14,580 +the border and I have color borderColor + +150 +00:09:14,580 --> 00:09:18,520 +and + +151 +00:09:18,520 --> 00:09:20,380 +you want to put for example setters and getters + +152 +00:09:20,380 --> 00:09:21,580 +for whom? for the new attributes + +153 +00:09:28,190 --> 00:09:30,530 +We haven't drawn a border yet, we will give it an + +154 +00:09:30,530 --> 00:09:32,510 +attribute but we haven't drawn it yet So we will + +155 +00:09:32,510 --> 00:09:35,170 +change this gate to a method to draw, we will make + +156 +00:09:35,170 --> 00:09:38,210 +it overwrite The draw doesn't draw a border for + +157 +00:09:38,210 --> 00:09:40,050 +this gate So I will make it overwrite, I will tell + +158 +00:09:40,050 --> 00:09:45,470 +it to make an override for a method called draw It + +159 +00:09:45,470 --> 00:09:49,370 +doesn't need to be a super gate, I really want to + +160 +00:09:49,370 --> 00:09:51,710 +make a change I will show you how to make the + +161 +00:09:51,710 --> 00:09:54,630 +changeThe idea is not about how to make changes, + +162 +00:09:54,750 --> 00:09:57,270 +but about how to make changes. For example, I want + +163 +00:09:57,270 --> 00:10:00,730 +to make graphics 2D, + +164 +00:10:01,130 --> 00:10:02,090 +G2D. + +165 +00:10:41,670 --> 00:10:44,990 +Ok, these are the new additions, then I go and say + +166 +00:10:44,990 --> 00:10:51,870 +super or super + +167 +00:10:51,870 --> 00:10:59,710 +.draw Ok + +168 +00:10:59,710 --> 00:11:01,830 +guys, the idea of ​​the draw is to add a new + +169 +00:11:01,830 --> 00:11:04,870 +feature, which is to draw a border Which is what I + +170 +00:11:04,870 --> 00:11:08,430 +did to draw a border, I went and gave it color I + +171 +00:11:08,430 --> 00:11:12,450 +changed the color and gave it a stroke that takes + +172 +00:11:12,450 --> 00:11:16,050 +the width and then I told it to invoke the super + +173 +00:11:16,050 --> 00:11:19,330 +to draw it. It will invoke the super, it will draw + +174 +00:11:19,330 --> 00:11:23,570 +the circle, but after applying the new settings. + +175 +00:11:24,310 --> 00:11:26,650 +From the point of view, the point is not how to + +176 +00:11:26,650 --> 00:11:28,730 +draw a circle, the point is that I made an + +177 +00:11:28,730 --> 00:11:33,010 +override to add a new functionality, okay? And + +178 +00:11:33,010 --> 00:11:36,570 +this is also an override for whom? for describe, + +179 +00:11:37,210 --> 00:11:43,390 +here he used to say this is circle, so i want to + +180 +00:11:43,390 --> 00:11:51,070 +say return super dot describe plus with border of + +181 +00:11:51,070 --> 00:11:53,930 +color and with color for example, the important + +182 +00:11:53,930 --> 00:11:58,630 +thing is that we added a new feature that says + +183 +00:11:58,630 --> 00:12:02,530 +anything in the description with border Ok, the + +184 +00:12:02,530 --> 00:12:05,270 +speech now is simple Ok, until now we did the + +185 +00:12:05,270 --> 00:12:07,630 +class, but we didn't use it We need to go to my + +186 +00:12:07,630 --> 00:12:11,010 +frame Now, instead of creating a circle or + +187 +00:12:11,010 --> 00:12:14,230 +rectangle I found what I need to do I need to + +188 +00:12:14,230 --> 00:12:21,610 +create an object of type CircleWithBorder Ok + +189 +00:12:21,610 --> 00:12:29,230 +guys, this is cb new CircleWithBorder + +190 +00:12:30,780 --> 00:12:35,040 +and I give it the center and half of the line and + +191 +00:12:35,040 --> 00:12:37,900 +then go to the cb and give it the set border which + +192 +00:12:37,900 --> 00:12:46,160 +is the new attribute Color.red cb.width 3 for + +193 +00:12:46,160 --> 00:12:53,800 +example and then I tell it cb.draw get graphics + +194 +00:13:02,320 --> 00:13:07,280 +With me guys, make a run And it will add shape, it + +195 +00:13:07,280 --> + +223 +00:14:45,330 --> 00:14:49,030 +solid circle. Ok? This is a new feature. It needs + +224 +00:14:49,030 --> 00:14:52,210 +to fill the existing circle. So we need to modify + +225 +00:14:52,210 --> 00:14:56,170 +the main circle to make it. Where do we go to edit? + +226 +00:14:56,390 --> 00:14:58,510 +It has nothing to do with this border So you have + +227 +00:14:58,510 --> 00:15:04,310 +to make a new class called solid circle, C Extend + +228 +00:15:04,310 --> 00:15:08,850 +mean circle And you have to make a full rectangle + +229 +00:15:08,850 --> 00:15:13,430 +You have to make what? Solid rectangle Extend mean + +230 +00:15:13,430 --> 00:15:17,530 +rectangle So in order to add a solid feature to + +231 +00:15:17,530 --> 00:15:21,250 +the shapes I have I have to make them all extend I + +232 +00:15:21,250 --> 00:15:24,410 +have ten shapes and I have ten classes + +233 +00:15:26,550 --> 00:15:29,510 +So in order to add two features to a class, I need + +234 +00:15:29,510 --> 00:15:38,650 +to add 20 classes to the top 10. Is this a good + +235 +00:15:38,650 --> 00:15:41,650 +scenario or not? So every time I want to add a + +236 +00:15:41,650 --> 00:15:45,670 +feature to my 10 classes, I need to create 10 + +237 +00:15:45,670 --> 00:15:50,870 +subclasses. And this is bad. So will I have 10 + +238 +00:15:50,870 --> 00:15:52,050 +subclasses? Have you ever seen someone create a + +239 +00:15:52,050 --> 00:15:57,870 +GUI library? For example, JavaFX. It has a lot of + +240 +00:15:57,870 --> 00:16:00,590 +elements, right or not guys? All these elements + +241 +00:16:00,590 --> 00:16:03,230 +want to add borders to them. For example, you have + +242 +00:16:03,230 --> 00:16:07,150 +a text area, a combo box, a list drop list, and a + +243 +00:16:07,150 --> 00:16:11,610 +tab pane, right or not? There are many types of UI + +244 +00:16:11,610 --> 00:16:14,470 +components in Java, in X or any other library. + +245 +00:16:15,410 --> 00:16:19,990 +Okay? And we want to make a border for all the UI + +246 +00:16:19,990 --> 00:16:23,440 +components. For example, I have 30 UI components + +247 +00:16:23,440 --> 00:16:27,200 +in Javafix, at least this one. Each one of them + +248 +00:16:27,200 --> 00:16:30,680 +extends to add this feature. If I have 10 + +249 +00:16:30,680 --> 00:16:33,460 +features, I have to add them to the 30 UI + +250 +00:16:33,460 --> 00:16:37,320 +components. How many classes will I have? 10 + +251 +00:16:37,320 --> 00:16:43,980 +features in 30 main ones. I have 300 classes. This + +252 +00:16:43,980 --> 00:16:46,920 +is called the explosion of classes, like the + +253 +00:16:46,920 --> 00:16:51,470 +population explosion. This means that the + +254 +00:16:51,470 --> 00:16:54,830 +subclassing that we were happy with was good, we + +255 +00:16:54,830 --> 00:16:57,970 +did not say that it was invalid, but in some cases + +256 +00:16:57,970 --> 00:17:04,110 +it can cause a lot of classes. Because I want to + +257 +00:17:04,110 --> 00:17:08,210 +show you a way, I have 30 classes, I want to make + +258 +00:17:08,210 --> 00:17:10,190 +them a border, I want to make a single class, + +259 +00:17:11,570 --> 00:17:18,290 +that's it, I am a single feature In one class, add + +260 +00:17:18,290 --> 00:17:23,150 +up to 30. So if I have 10 features, I make only 10 + +261 +00:17:23,150 --> 00:17:28,170 +classes, instead of making 300 classes. Do you + +262 +00:17:28,170 --> 00:17:31,330 +agree with me or not? Let's see how to apply this. + +263 +00:17:38,150 --> 00:17:40,810 +Let me explain how to do it and then I will draw + +264 +00:17:40,810 --> 00:17:45,210 +the UML diagram. What do you think Halgate? In our + +265 +00:17:45,210 --> 00:17:46,970 +example here, I have two shapes, circle and + +266 +00:17:46,970 --> 00:17:49,910 +rectangle. To make them a border, I have to make + +267 +00:17:49,910 --> 00:17:53,810 +two classes, circle with border and rectangle with + +268 +00:17:53,810 --> 00:17:57,750 +border. I didn't do rectangle with border but it's + +269 +00:17:57,750 --> 00:18:01,110 +the same idea Now I don't want to make circle with + +270 +00:18:01,110 --> 00:18:03,210 +border and rectangle with border I want to make + +271 +00:18:03,210 --> 00:18:07,070 +one class called border and add to the frame the + +272 +00:18:07,070 --> 00:18:11,010 +two, three or ten shapes that I have So I found + +273 +00:18:11,010 --> 00:18:15,410 +that I want to make a new class called border + +274 +00:18:18,660 --> 00:18:22,760 +First of all, make this class from the same type + +275 +00:18:22,760 --> 00:18:25,880 +of shapes. What does it mean? Make it from the + +276 +00:18:25,880 --> 00:18:26,940 +Make it from the same type of shapes. What does it + +277 +00:18:26,940 --> 00:18:28,020 +mean? Make it from the same type of shapes. What + +278 +00:18:28,020 --> 00:18:28,200 +does it mean? Make it from the same type of + +279 +00:18:28,200 --> 00:18:28,640 +shapes. What does it mean? Make it from the same + +280 +00:18:28,640 --> 00:18:28,920 +type of shapes. What does it mean? Make it from + +281 +00:18:28,920 --> 00:18:29,140 +shapes. What does it mean? Make it from the same + +282 +00:18:29,140 --> 00:18:29,940 +the same type of shapes. What does it mean? Make + +283 +00:18:29,940 --> 00:18:35,820 +it from the same type of shapes. What does it + +284 +00:18:35,820 --> 00:18:38,600 +mean? Make it from the same type of shapes. What + +285 +00:18:38,600 --> 00:18:40,520 +does it mean? Make it from the same type of + +286 +00:18:40,520 --> 00:18:45,250 +shapes. an object of type .. pay attention to me + +287 +00:18:45,250 --> 00:18:47,450 +and then I will explain to you ok? an object of + +288 +00:18:47,450 --> 00:18:49,810 +type shape notice that there is a strange thing + +289 +00:18:49,810 --> 00:18:52,830 +that this is of type shape and inside it contains + +290 +00:18:52,830 --> 00:18:56,150 +what? an object of type shape of course this is a + +291 +00:18:56,150 --> 00:18:58,790 +null value so we need to create a constructor to + +292 +00:18:58,790 --> 00:19:06,990 +initialize it + +293 +00:19:06,990 --> 00:19:11,250 +ok + +294 +00:19:11,250 --> 00:19:18,640 +guys? ok we are almost done now look with me now + +295 +00:19:18,640 --> 00:19:24,000 +my goal is to add a border right? what are the + +296 +00:19:24,000 --> 00:19:29,480 +attributes of any border? I have border int border + +297 +00:19:29,480 --> 00:19:36,900 +-width and color border-color + +298 +00:19:36,900 --> 00:19:39,680 +and the same thing we want to do with these + +299 +00:19:39,680 --> 00:19:41,200 +setters + +300 +00:19:52,790 --> 00:19:56,810 +Okay, I got the idea that the shape that I want to + +301 +00:19:56,810 --> 00:20:02,610 +draw, okay? I want to add a frame to it. Now, what + +302 +00:20:02,610 --> 00:20:06,110 +does this constructor take? I shape. Why did you + +303 +00:20:06,110 --> 00:20:08,690 +let him take I shape? So that I can send him a + +304 +00:20:08,690 --> 00:20:11,470 +circle, rectangle, triangle and any other shape. + +305 +00:20:12,150 --> 00:20:15,870 +Okay? Then, in this draw, what do I really want to + +306 +00:20:15,870 --> 00:20:24,630 +do? Okay? I'm going to add my new code Do you + +307 +00:20:24,630 --> 00:20:27,790 +remember the code that we used to do? Circle with + +308 +00:20:27,790 --> 00:20:31,550 +rectangle Circle with border This is the code, do + +309 +00:20:31,550 --> 00:20:34,970 +you see it? What does it do? It applies the new + +310 +00:20:34,970 --> 00:20:44,230 +color and the new border width Why + +311 +00:20:44,230 --> 00:20:48,770 +can't I see the border? Width, what is this? We + +312 +00:20:48,770 --> 00:20:53,090 +wrote it wrong, so we go and edit it, but what? + +313 +00:20:53,270 --> 00:21:04,230 +Down here, border-width Where + +314 +00:21:04,230 --> 00:21:07,810 +is six? Yes, six border-width + +315 +00:21:10,500 --> 00:21:14,960 +okay, we came here in the draw this is the + +316 +00:21:14,960 --> 00:21:18,520 +border's draw do like this and then what do I do? + +317 +00:21:18,640 --> 00:21:23,460 +I tell him to go to shape and tell him to draw and + +318 +00:21:23,460 --> 00:21:29,100 +send me G to D now describe I want to describe the + +319 +00:21:29,100 --> 00:21:35,240 +shape I want to tell him to return shape.describe + +320 +00:21:35,240 --> 00:21:36,660 +and then here I tell him with + +321 +00:21:39,930 --> 00:21:42,590 +with border Okay, what did I do? You will say this + +322 +00:21:42,590 --> 00:21:46,030 +is the same thing we did No, look with me Because + +323 +00:21:46,030 --> 00:21:49,670 +I made a class called border Actually, this border + +324 +00:21:49,670 --> 00:21:54,790 +covers the shape It doesn't extend it, it covers + +325 +00:21:54,790 --> 00:22:00,190 +it Okay, look with me I + +326 +00:22:00,190 --> 00:22:05,610 +have two ways to add new features to any class + +327 +00:22:05,610 --> 00:22:07,330 +Subclassing + +328 +00:22:09,930 --> 00:22:12,270 +If we assume that I have a class that has + +329 +00:22:12,270 --> 00:22:15,130 +attributes, these attributes for example, and + +330 +00:22:15,130 --> 00:22:18,910 +methods, okay? These are one, two, three, and + +331 +00:22:18,910 --> 00:22:22,330 +these methods are one, two, three. I would like to + +332 +00:22:22,330 --> 00:22:24,630 +add a new functionality. What does a new + +333 +00:22:24,630 --> 00:22:27,550 +functionality mean? It means new attributes, new + +334 +00:22:27,550 --> 00:22:31,250 +methods, or modifying old methods. I go and create + +335 +00:22:31,250 --> 00:22:34,910 +a new class. What is the goal? Subclassing. + +336 +00:22:35,190 --> 00:22:43,470 +Extend, okay? I don't write 1,2,3 I write x4 and x5 + +337 +00:22:43,470 --> 00:22:48,750 +as new attributes and I don't write 1,2,3 I write + +338 +00:22:48,750 --> 00:22:54,890 +4 and five and if I want to modify one of these I + +339 +00:22:54,890 --> 00:22:58,170 +can override it and through it I can claim the + +340 +00:22:58,170 --> 00:23:00,750 +super for example or I can change the code in it + +341 +00:23:00,750 --> 00:23:04,250 +completely this is in the case of subclasses + +342 +00:23:04,250 --> 00:23:06,470 +beautiful and excellent and what makes it special + +343 +00:23:06,470 --> 00:23:09,570 +is that you will not rewrite the code in the app + +344 +00:23:09,570 --> 00:23:13,590 +as we learned but the problem is that if I have + +345 +00:23:13,590 --> 00:23:16,010 +ten classes and I want to add new features to them + +346 +00:23:16,010 --> 00:23:20,320 +you have to do x2 to the ten The second way is the + +347 +00:23:20,320 --> 00:23:22,680 +decorator way. + +348 +00:23:24,300 --> 00:23:25,720 +What does it mean? I want to add a new + +349 +00:23:25,720 --> 00:23:29,800 +functionality, I don't want to do subclassing, I + +350 +00:23:29,800 --> 00:23:32,440 +want to create an object from the old class And + +351 +00:23:32,440 --> 00:23:36,620 +wrap it with a new object This wrapping puts in + +352 +00:23:36,620 --> 00:23:39,480 +new things How for example, let's go back to the + +353 +00:23:39,480 --> 00:23:44,060 +same example This class has x x x and has a circle + +354 +00:23:44,060 --> 00:23:47,620 +circle circle This is feature 1,2,3 and this is 1 + +355 +00:23:47,620 --> 00:23:51,960 +,2,3 I would like to add new features, new + +356 +00:23:51,960 --> 00:23:55,820 +attributes, new methods, modifications to previous + +357 +00:23:55,820 --> 00:23:58,240 +methods Because if we assume that this class is + +358 +00:23:58,240 --> 00:24:05,530 +called A Go and create a new class Inside it, + +359 +00:24:05,850 --> 00:24:10,310 +create an object from what? From what? This is an + +360 +00:24:10,310 --> 00:24:15,110 +object from this, okay? So, this thing actually + +361 +00:24:15,110 --> 00:24:19,770 +contains on x x x one two three, right? And on a + +362 +00:24:19,770 --> 00:24:22,790 +circle circle circle one two three This is an + +363 +00:24:22,790 --> 00:24:27,910 +object, object from whom? From this class Okay, did + +364 +00:24:27,910 --> 00:24:31,970 +you notice that the class of addition, the client + +365 +00:24:31,970 --> 00:24:36,250 +sees it as this? What does addition mean? It is + +366 +00:24:36,250 --> 00:24:41,590 +supposed to be as if this includes this with + +367 +00:24:41,590 --> 00:24:45,170 +additions. But again, I confirm that this did not + +368 +00:24:45,170 --> 00:24:49,770 +extend. So really, I do not see anything inside + +369 +00:24:49,770 --> 00:24:51,270 +these. I am from outside, did you notice? This is + +370 +00:24:51,270 --> 00:24:53,110 +the class. When I create an object from it, is + +371 +00:24:53,110 --> 00:24:55,570 +there a method? No, the client will not see + +372 +00:24:56,370 --> 00:24:59,350 +Anything else, so he says what are you doing? Now, + +373 +00:25:00,150 --> 00:25:02,510 +why am I doing this? Because I want to add new + +374 +00:25:02,510 --> 00:25:05,670 +things What are the new things? They are xx which + +375 +00:25:05,670 --> 00:25:09,250 +are 4 and 5, they will add new attributes to us, + +376 +00:25:09,290 --> 00:25:13,990 +okay? Then you add a new method, put 4 and 5, + +377 +00:25:14,070 --> 00:25:17,350 +these are new methods for them But I still have a + +378 +00:25:17,350 --> 00:25:20,770 +problem that 1 and 2 and 3, I don't see them from + +379 +00:25:20,770 --> 00:25:24,170 +here, right? So he says 1 and 2 and 3, go back and + +380 +00:25:24,170 --> 00:25:30,330 +do what? write them again if there are ten methods + +381 +00:25:30,330 --> 00:25:33,050 +here you have to write the ten here but what does + +382 +00:25:33,050 --> 00:25:37,910 +it do when I call one of the covers one will call + +383 +00:25:37,910 --> 00:25:42,150 +one of the objects inside when I call two from + +384 +00:25:42,150 --> 00:25:45,530 +here this calls two from here when I call three + +385 +00:25:45,530 --> 00:25:50,990 +this calls three from here because my goal is that + +386 +00:25:50,990 --> 00:25:56,390 +I have to see this It's like this, but with new + +387 +00:25:56,390 --> 00:25:58,690 +features Because if I create an object from this, + +388 +00:25:59,990 --> 00:26:03,870 +I will see x1 and x1 and x1 and x1 and x1 and x1 + +389 +00:26:03,870 --> 00:26:04,930 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +390 +00:26:04,930 --> 00:26:05,050 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +391 +00:26:05,050 --> 00:26:06,670 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +392 +00:26:06,670 --> 00:26:08,570 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +393 +00:26:08,570 --> 00:26:10,690 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +394 +00:26:10,690 --> 00:26:13,870 +and x1 and x1 and x1 and x1 and x1 and + +395 +00:26:13,870 --> 00:26:18,810 +x1 I will see new things, yes I will see 4 and 5, + +396 +00:26:18,910 --> 00:26:22,390 +and I will see attributes 4 and 5, this is adding + +397 +00:26:22,390 --> 00:26:26,990 +new things to this, using the decorator method, or + +398 +00:26:26,990 --> 00:26:29,250 +sometimes we call it wrapper, what is a wrapper? + +399 +00:26:30,230 --> 00:26:31,610 +It is a cover, don't you hear the word chicken + +400 +00:26:31,610 --> 00:26:39,050 +wrap? Yes, this is a wrapper, a cover, now I added + +401 +00:26:39,050 --> 00:26:42,980 +new features, but it has pros and cons What are its + +402 +00:26:42,980 --> 00:26:48,100 +disadvantages? Notice that I had to rewrite the + +403 +00:26:48,100 --> 00:26:50,620 +same methods here with the conversion to the inner + +404 +00:26:50,620 --> 00:26:53,620 +object. Here, no, I did not need to write one, two + +405 +00:26:53,6 + +445 +00:29:35,180 --> 00:29:38,080 +to add a border to it. All you have to do is to + +446 +00:29:38,080 --> 00:29:40,500 +create an object from border B that is equal to + +447 +00:29:40,500 --> 00:29:45,360 +new border. And what happens to the minus sign? The + +448 +00:29:45,360 --> 00:29:50,620 +C will accept the C because C is a shapenow all + +449 +00:29:50,620 --> 00:29:54,260 +you need to do is to give him your border's + +450 +00:29:54,260 --> 00:29:56,880 +properties, which is border color, for example color + +451 +00:29:56,880 --> 00:30:06,960 +.red, and go b.set border width, for example, 3. And + +452 +00:30:06,960 --> 00:30:09,780 +the last step I should deal with the border as I + +453 +00:30:09,780 --> 00:30:11,960 +would deal with the circle; there is a method + +454 +00:30:11,960 --> 00:30:16,380 +called draw, and say get graphics + +455 +00:30:22,500 --> 00:30:27,820 +Let's create a circle with + +456 +00:30:27,820 --> 00:30:31,300 +a circle shape. Now I want to create a rectangle + +457 +00:30:31,300 --> 00:30:37,960 +with border. All you need to do is type rectangle R + +458 +00:30:37,960 --> 00:30:43,580 +new rectangle + +459 +00:30:43,580 --> 00:30:46,840 +180 + +460 +00:30:46,840 --> 00:30:47,440 +for example + +461 +00:30:52,710 --> 00:31:01,430 +and here R rectangle; I didn't make a new class. I + +462 +00:31:01,430 --> 00:31:04,010 +brought rectangle and made it the same object of + +463 +00:31:04,010 --> 00:31:09,410 +type border, and it will run add shape, and it will + +464 +00:31:09,410 --> 00:31:15,420 +add border to it, and if you have any other shape, I + +465 +00:31:15,420 --> 00:31:20,460 +mean, if I have 10 shapes, and I make only one + +466 +00:31:20,460 --> 00:31:23,260 +class for each of them, I add this new + +467 +00:31:26,820 --> 00:31:33,320 +Now, using the decorator method. I have two ways + +468 +00:31:33,320 --> 00:31:35,740 +to add any feature to a class. The first way is + +469 +00:31:35,740 --> 00:31:40,100 +subclassing; it means you were searched, right, or + +470 +00:31:40,100 --> 00:31:41,480 +wrong? We talked about it a lot, and it took you + +471 +00:31:41,480 --> 00:31:43,420 +two years, and you are happy with it. The second + +472 +00:31:43,420 --> 00:31:46,960 +way is to use the decorator method. I want to add + +473 +00:31:46,960 --> 00:31:49,700 +a new functionality to the class. You create an + +474 +00:31:49,700 --> 00:31:53,340 +object from your class and wrap it with another + +475 +00:31:53,340 --> 00:31:57,600 +object from the class. The way of wrapping this, + +476 +00:31:57,640 --> 00:32:00,870 +or the decorator, we call it, or the wrapper, it's + +477 +00:32:00,870 --> 00:32:03,590 +difficult because you have to use the methods in + +478 +00:32:03,590 --> 00:32:08,190 +your object to create it here because the client + +479 +00:32:08,190 --> 00:32:12,870 +sees the cover as it sees what's inside. So 1, 2, 3, + +480 +00:32:12,910 --> 00:32:15,870 +I made them here, 1, 2, 3, but I let it transform + +481 +00:32:15,870 --> 00:32:19,230 +from inside. We didn't do this here. We used to do + +482 +00:32:19,230 --> 00:32:20,990 +subclassing, missequation, because you don't want + +483 +00:32:20,990 --> 00:32:23,650 +to write code. Here, you want to write code with + +484 +00:32:23,650 --> 00:32:26,840 +transformation, and adding additional quotes. And + +485 +00:32:26,840 --> 00:32:29,960 +you can add more methods. For example, I will not + +486 +00:32:29,960 --> 00:32:33,020 +add more things here. Of course, what will be extra + +487 +00:32:33,020 --> 00:32:35,860 +if there are setters and getters for border width + +488 +00:32:35,860 --> 00:32:40,580 +and border color. These are considered four or five + +489 +00:32:40,580 --> 00:32:44,500 +but the advantage of the decorator method is that + +490 +00:32:44,500 --> 00:32:49,920 +I can change the inner object of different types, + +491 +00:32:50,140 --> 00:32:54,840 +so it's like a cover. It can cover any type of + +492 +00:32:54,840 --> 00:32:59,660 +shape. So the addition is made with one class only. + +493 +00:32:59,660 --> 00:33:02,900 +So if I have 30 classes, I want to add 10 + +494 +00:33:02,900 --> 00:33:09,380 +additions to them. For example, I made a border now, + +495 +00:33:09,380 --> 00:33:13,440 +we want to make a scroll bar for the shapes, or + +496 +00:33:13,440 --> 00:33:17,040 +solid shapes. You only need to make one class + +497 +00:33:17,040 --> 00:33:21,920 +called solid, and it takes any shape of the type + +498 +00:33:21,920 --> 00:33:25,840 +shape, and it creates an implement for the method + +499 +00:33:25,840 --> 00:33:30,680 +draw that you write to it so that you give it a + +500 +00:33:30,680 --> 00:33:33,420 +color, and tell it to fill it, and then it draws the + +501 +00:33:33,420 --> 00:33:37,220 +shape again to get shape.draw, not super.draw, + +502 +00:33:37,440 --> 00:33:42,720 +shape.draw. So, really, I only need one class to make + +503 +00:33:42,720 --> 00:33:47,280 +solid. So, each new feature is one class instead of + +504 +00:33:47,280 --> 00:33:51,560 +ten classes. As I said in JavaFX, I have many UI + +505 +00:33:51,560 --> 00:33:56,450 +components. I want to make a scrollbar for them. I + +506 +00:33:56,450 --> 00:33:58,890 +want to make a scrollbar for the text area, a + +507 +00:33:58,890 --> 00:34:01,130 +scrollbar for the tab pane. I want to add this + +508 +00:34:01,130 --> 00:34:06,250 +scrollbar, and tell it to make a text area with + +509 +00:34:06,250 --> 00:34:10,390 +scrollbar, and make it a new class Text area with + +510 +00:34:10,390 --> 00:34:12,330 +scrollbar with border, and make it a new class; + +511 +00:34:12,390 --> 00:34:15,830 +look at the possibilities it has, it increases. No, + +512 +00:34:16,230 --> 00:34:19,170 +make a class, one scrollbar, and wrap it in any + +513 +00:34:19,170 --> 00:34:25,500 +form of UI component. Now, where did we get the idea, + +514 +00:34:25,500 --> 00:34:28,700 +guys? So we have two ways of adding, the way of + +515 +00:34:28,700 --> 00:34:33,460 +subclassing, and the way of the decorator. Because + +516 +00:34:33,460 --> 00:34:37,080 +this doesn't mean that the subclassing is bad and + +517 +00:34:37,080 --> 00:34:40,180 +you don't use it, okay? No, you will say, okay, + +518 +00:34:40,320 --> 00:34:42,580 +the doctor came, the subclassing has a problem; + +519 +00:34:42,960 --> 00:34:47,320 +let's do what? The decorator, all his life? No, you + +520 +00:34:47,320 --> 00:34:50,970 +are supposed to use the subclassing, but let's say + +521 +00:34:50,970 --> 00:34:54,470 +that in some cases, using subclassing will cause + +522 +00:34:54,470 --> 00:34:57,250 +an explosion of classes, a large number of + +523 +00:34:57,250 --> 00:35:01,010 +classes. When you need to add these ten classes to + +524 +00:35:01,010 --> 00:35:04,250 +make another ten classes, there is a negativity + +525 +00:35:04,250 --> 00:35:07,270 +here. So you resort to using a decorator to make + +526 +00:35:07,270 --> 00:35:10,830 +one class to add the feature to the ten you have. + +527 +00:35:11,710 --> 00:35:14,290 +So, if the use of subclassing causes the creation + +528 +00:35:14,290 --> 00:35:16,270 +of a large number of classes, then you resort to + +529 +00:35:16,270 --> 00:35:17,490 +the decorator. + +530 +00:35:20,660 --> 00:35:27,960 +Now, based on this talk, let's see where we are in + +531 +00:35:27,960 --> 00:35:32,380 +Java, or + +532 +00:35:32,380 --> 00:35:36,560 +in JavaFX. We use the decorator pattern, and you + +533 +00:35:36,560 --> 00:35:39,940 +use the decorator pattern, and you don't know that + +534 +00:35:39,940 --> 00:35:41,380 +this is an application on the decorator. + +535 +00:35:44,140 --> 00:35:49,040 +I told you in Java how to write and read files. So + +536 +00:35:49,040 --> 00:35:52,100 +he used to say, for example, to write on file, go and + +537 +00:35:52,100 --> 00:36:00,980 +create an object from file output stream of + +538 +00:36:00,980 --> 00:36:05,360 +FOS, for example, that I named it, equals new file + +539 +00:36:05,360 --> 00:36:11,220 +output stream, and it takes an object from type, for + +540 +00:36:11,220 --> 00:36:14,830 +example, file. Now, if you want to write the output + +541 +00:36:14,830 --> 00:36:18,370 +stream file directly by using it, it is annoying + +542 +00:36:18,370 --> 00:36:20,590 +because it has a write method, and it takes binary + +543 +00:36:20,590 --> 00:36:23,730 +data, for example. Okay? So, it is difficult to use + +544 +00:36:23,730 --> 00:36:26,470 +it. So to make it easier to use it, it told you to + +545 +00:36:26,470 --> 00:36:32,610 +create another object from PrintWriter. pr + +546 +00:36:32,610 --> 00:36:37,750 +and you give it PrintWriter + +547 +00:36:37,750 --> 00:36:39,010 +and you give it the file + +548 +00:36:41,870 --> 00:36:43,610 +This is how they used to say, connect this one with + +549 +00:36:43,610 --> 00:36:46,250 +this one. So what is the advantage of the print + +550 +00:36:46,250 --> 00:36:49,750 +writer? You go and tell him, PR, and the print + +551 +00:36:49,750 --> 00:36:52,070 +writer tells you to write on the file, as if you + +552 +00:36:52,070 --> 00:36:53,970 +were writing on the screen. You don't have to make + +553 +00:36:53,970 --> 00:36:58,730 +a print lin like system.out. You write the text + +554 +00:36:58,730 --> 00:37:06,580 +you want on the file. For example, when you write + +555 +00:37:06,580 --> 00:37:09,580 +an object file, it will also tell you to create a + +556 +00:37:09,580 --> 00:37:11,920 +file output stream, then create an object output + +557 +00:37:11,920 --> 00:37:14,900 +stream, connect it to the output stream, and write + +558 +00:37:14,900 --> 00:37:17,120 +a write object. It will take the object that you + +559 +00:37:17,120 --> 00:37:19,640 +created, for example, a student or a course, and + +560 +00:37:19,640 --> 00:37:25,060 +serialize it and write it on the file. Okay, why + +561 +00:37:25,060 --> 00:37:26,800 +did we do it this way? They used to say, okay, do + +562 +00:37:26,800 --> 00:37:29,780 +it this way, we want to do it this way. Yes, do it + +563 +00:37:29,780 --> 00:37:31,540 +this way and connect it to this way, and it turns + +564 +00:37:31,540 --> 00:37:34,670 +out this way. Okay? So, why did they do it this way? + +565 +00:37:34,950 --> 00:37:37,390 +And why do you connect this with this? Okay? Pay + +566 +00:37:37,390 --> 00:37:40,910 +attention to me. In Java, we have different types + +567 +00:37:40,910 --> 00:37:45,070 +of output streams. Okay? For example, we have a + +568 +00:37:45,070 --> 00:37:46,190 +file output stream. + +569 +00:37:50,030 --> 00:37:53,290 +Which is what is in her hand to write on the file. + +570 +00:37:53,590 --> 00:37:55,770 +Binary data is written on the file. And for + +571 +00:37:55,770 --> 00:37:57,450 +example, we have a socket output stream. + +572 +00:38:02,700 --> 00:38:05,080 +What is it for? To write on the network. You give + +573 +00:38:05,080 --> 00:38:07,200 +it a specific IP, and it writes on the network. You + +574 +00:38:07,200 --> 00:38:10,360 +can make a chat program on another device, or send + +575 +00:38:10,360 --> 00:38:12,660 +files to another device. You use the output stream + +576 +00:38:12,660 --> 00:38:14,320 +socket. This is written on the file, and this is + +577 +00:38:14,320 --> 00:38:17,160 +written on the socket. And there are other types + +578 +00:38:17,160 --> 00:38:19,100 +of output streams. I did not bring them with me + +579 +00:38:19,100 --> 00:38:23,180 +this time. Now, all of these are output streams. + +580 +00:38:23,800 --> 00:38:25,480 +Actually, when you want to write data on them, you + +581 +00:38:25,480 --> 00:38:26,940 +want to write the data in binary data. That is, + +582 +00:38:26,940 --> 00:38:28,300 +you want to send a string; you have to turn the + +583 +00:38:28,300 --> 00:38:32,630 +string into characters and binary and a story. So, I + +584 +00:38:32,630 --> 00:38:34,770 +found that they made it easy for us; they let us + +585 +00:38:34,770 --> 00:38:36,950 +say whatever output stream you have, whatever you + +586 +00:38:36,950 --> 00:38:38,390 +send to the network, whatever you send to files, + +587 +00:38:38,530 --> 00:38:39,250 +whatever you send to whatever you send to whatever + +588 +00:38:39,250 --> 00:38:40,590 +you send to whatever you send to whatever you send + +589 +00:38:40,590 --> 00:38:40,650 +to whatever you send to whatever you send to + +590 +00:38:40,650 --> 00:38:40,710 +whatever you send to whatever you send to whatever + +591 +00:38:40,710 --> 00:38:40,730 +you send to whatever you send to whatever you send + +592 +00:38:40,730 --> 00:38:40,870 +to whatever you send to whatever you send to + +593 +00:38:40,870 --> 00:38:41,010 +whatever you send to whatever you send to whatever + +594 +00:38:41,010 --> 00:38:42,150 +you send to whatever you send to whatever you send + +595 +00:38:42,150 --> 00:38:42,390 +to whatever you send to whatever you send to + +596 +00:38:42,390 --> 00:38:42,690 +you send to whatever you send to whatever you send + +597 +00:38:42,690 --> 00:38:43,090 +to whatever you send to whatever you send to + +598 +00:38:43,090 --> 00:38:44,010 +whatever you send to whatever you send to whatever + +599 +00:38:44,010 --> 00:38:44,170 +you send to whatever you send to whatever you send + +600 +00:38:44,170 --> 00:38:44,190 +to whatever you send to whatever you send to + +601 +00:38:44,190 --> 00:38:44,990 +to whatever you send to whatever you send to + +602 +00:38:44,990 --> 00:38:45,530 +whatever you send to whatever you send to whatever + +603 +00:38:45,530 --> 00:38:50,890 +you send to whatever you send to whatever + +604 +00:38:50,890 --> 00:38:55,190 +you send to whatever you Simple, how do we do it? + +605 +00:38:55,330 --> 00:38:59,190 +We go to the file output stream and make an extend + +606 +00:38:59,190 --> 00:39:05,810 +to a new class called string writing file output + +607 +00:39:05,810 --> 00:39:13,270 +stream, and make an extend to this new class, and + +608 +00:39:13,270 --> 00:39:19,390 +make a method called println. This is where I made + +609 +00:39:19,390 --> 00:39:21,950 +this method. It takes a string. Where did I make + +610 +00:39:21,950 --> 00:39:25,210 +this method? In the new class, in the subclass on + +611 +00:39:25,210 --> 00:39:28,210 +the basis that in the print string it takes the + +612 +00:39:28,210 --> 00:39:31,030 +string and converts it to binary, and prepares it + +613 +00:39:31,030 --> 00:39:39,530 +as a byte array and calls super.writeBytes + +614 +00:39:39,530 --> 00:39:43,670 +for example there + +615 +00:39:43,670 --> 00:39:47,810 +is a new feature that I added to the subclass of + +616 +00:39:47,810 --> 00:39:49,690 +course, if I want to write on a file, I don't need + +617 +00:39:49,690 --> 00:39:52,130 +to create an object from it. I need to create an + +618 +00:39:52,130 --> 00:39:55,510 +object from the subclass and use it. And we live + +619 +00:39:55,510 --> 00:39:59,250 +our life happily. But wait; we have ten other + +620 +00:39:59,250 --> 00:40:02,230 +output streams. So, you will have to go to the + +621 +00:40:02,230 --> 00:40:05,110 +output stream socket and create a new subclass and + +622 +00:40:05,110 --> 00:40:08,790 +class, and create a print method in it, take a + +623 +00:40:08,790 --> 00:40:12,070 +string, and do the same conversion process, and + +624 +00:40:12,070 --> 00:40:12,910 +then say super, + +625 +00:40:16,330 --> 00:40:19,850 +.WriteBytesToSocket(), which is the method here or + +626 +00:40:19,850 --> 00:40:23,090 +write bytes, and give it to it to add the same + +627 +00:40:23,090 --> 00:40:27,950 +feature to this one. I had to do subclasses if I + +628 +00:40:27,950 --> 00:40:29,530 +have ten output streams, and this is what exists, + +629 +00:40:29,730 --> 00:40:31,570 +types of output streams. There is a buffered + +630 +00:40:31,570 --> 00:40:35,650 +output stream written on the memory. Each one has + +631 +00:40:35,650 --> 00:40:39,690 +to do what? Extend to add a new feature. What is + +632 +00:40:39,690 --> 00:40:43,100 +this story? Every time I have an output stream, and + +633 +00:40:43 + +667 +00:42:54,890 --> 00:42:59,590 +of output stream. This means that this print + +668 +00:42:59,590 --> 00:43:05,080 +writer is a wrapper to the output stream to add to + +669 +00:43:05,080 --> 00:43:09,180 +it the ability to write texts. Why did they do it + +670 +00:43:09,180 --> 00:43:10,580 +this way? They used to tell you to memorize it + +671 +00:43:10,580 --> 00:43:13,620 +this way. Why? That's it. Make a file output + +672 +00:43:13,620 --> 00:43:15,940 +stream and make a print writer and pass this to + +673 +00:43:15,940 --> 00:43:19,780 +this. Actually, this is an addition of a feature + +674 +00:43:19,780 --> 00:43:23,960 +to whom? To the object that you pass here. Without + +675 +00:43:23,960 --> 00:43:27,580 +this method, I had to add this feature to make a + +676 +00:43:27,580 --> 00:43:30,690 +subclass for each output stream is present on it. + +677 +00:43:31,270 --> 00:43:35,030 +So this is really an application for whom? For the + +678 +00:43:35,030 --> 00:43:37,490 +decorator. Any output stream that connects them + +679 +00:43:37,490 --> 00:43:40,030 +together, and in reading too, connects them + +680 +00:43:40,030 --> 00:43:41,970 +together, this is all an application for whom, + +681 +00:43:42,050 --> 00:43:44,930 +guys? For the decorator. It connects together and + +682 +00:43:44,930 --> 00:43:47,930 +you don't know what it is. No, did you get the + +683 +00:43:47,930 --> 00:43:50,510 +idea that this is an application for whom? For the + +684 +00:43:50,510 --> 00:43:54,310 +decorator. And we understood why they did that. I + +685 +00:43:54,310 --> 00:43:56,150 +could also tell you to make an object out of this + +686 +00:43:56,150 --> 00:43:59,370 +class and write on it.So why do I connect this + +687 +00:43:59,370 --> 00:44:02,650 +with this with this? To add new features to each + +688 +00:44:02,650 --> 00:44:05,610 +existing object. Because without this, it would + +689 +00:44:05,610 --> 00:44:10,050 +have to appear in a large number of subclasses. + +690 +00:44:10,950 --> 00:44:14,410 +Another example, in the java.fx that you use, I'm + +691 +00:44:14,410 --> 00:44:16,430 +sure you've taken it. What's the name of the text + +692 +00:44:16,430 --> 00:44:19,930 +area? Text area, and there's a text field, and + +693 +00:44:19,930 --> 00:44:21,390 +there's a tab, and there's I don't know what. + +694 +00:44:21,910 --> 00:44:25,130 +You'd like to add a border to any of these. Has + +695 +00:44:25,130 --> 00:44:27,910 +anyone tried to add a border to the text area in + +696 +00:44:27,910 --> 00:44:34,230 +java.fx? No, there is a class called border, + +697 +00:44:35,090 --> 00:44:39,130 +scroll type, scroll pane, there is scroll for + +698 +00:44:39,130 --> 00:44:43,830 +shapes I will go back to java swing, the swing + +699 +00:44:43,830 --> 00:44:49,710 +library, for example we have scroll paneIt means + +700 +00:44:49,710 --> 00:44:52,590 +you have to add to any scroll shape, create an + +701 +00:44:52,590 --> 00:44:55,010 +object of the type of scroll pane and give it the + +702 +00:44:55,010 --> 00:44:59,350 +shape you want. You add the scroll to it. This is + +703 +00:44:59,350 --> 00:45:02,470 +instead of going to every class and extend it to + +704 +00:45:02,470 --> 00:45:05,650 +add a scroll to the specific shape. This is also + +705 +00:45:05,650 --> 00:45:08,890 +an application for the border, for the decorator + +706 +00:45:08,890 --> 00:45:14,260 +pattern.Okay guys, there are two ways to add new + +707 +00:45:14,260 --> 00:45:17,800 +features, either subclassing or decorator The + +708 +00:45:17,800 --> 00:45:21,620 +original is always to use subclassing, because I + +709 +00:45:21,620 --> 00:45:24,730 +don't need to write what's already thereBut if the + +710 +00:45:24,730 --> 00:45:27,990 +result of using subclassing is a lot of classes, + +711 +00:45:28,070 --> 00:45:30,570 +like the examples we saw earlier, I prefer to use + +712 +00:45:30,570 --> 00:45:33,150 +the decorator which is a class that encloses + +713 +00:45:33,150 --> 00:45:35,570 +another class to add additional features to it. + +714 +00:45:35,770 --> 00:45:38,250 +Like when we made a circle and enclosed it with a + +715 +00:45:38,250 --> 00:45:41,370 +border, or a rectangle and enclosed it with a + +716 +00:45:41,370 --> 00:45:44,230 +border as well. I have ten shapes and I make one + +717 +00:45:44,230 --> 00:45:46,130 +class to add the feature, instead of having to + +718 +00:45:46,130 --> 00:45:49,370 +make ten classes for ten shapes, and this is the + +719 +00:45:49,370 --> 00:45:52,760 +idea of the decorator pattern.We took an example + +720 +00:45:52,760 --> 00:45:54,100 +today to clarify the decorator. In the next + +721 +00:45:54,100 --> 00:45:57,420 +lecture, we will read what is in the slides, see + +722 +00:45:57,420 --> 00:46:00,140 +the UML diagram of the decorator and see another + +723 +00:46:00,140 --> 00:46:01,580 +example, God willing, and God bless you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Sber64Sc7AI_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Sber64Sc7AI_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..f10ce5705bbba79bc14bdacd525057424a046289 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Sber64Sc7AI_postprocess.srt @@ -0,0 +1,2892 @@ +1 +00:00:05,080 --> 00:00:08,220 +Ok guys, peace be upon you. In the last lecture, + +2 +00:00:08,400 --> 00:00:11,100 +we started with the first or the last group of + +3 +00:00:11,100 --> 00:00:13,660 +design patterns which are structural design + +4 +00:00:13,660 --> 00:00:15,200 +patterns and we took from them two design + +5 +00:00:15,200 --> 00:00:20,820 +patterns. One of them is called Corruption. is to + +6 +00:00:20,820 --> 00:00:24,420 +provide a simple interface to use parts of your + +7 +00:00:24,420 --> 00:00:27,400 +system so that you don't involve the developer who + +8 +00:00:27,400 --> 00:00:30,680 +will use your library to implement many steps or + +9 +00:00:30,680 --> 00:00:34,140 +know the details of parts of your system and what + +10 +00:00:34,140 --> 00:00:36,060 +are the subsystems and the relationship between + +11 +00:00:36,060 --> 00:00:38,900 +them make it easy for him to provide him a simple + +12 +00:00:38,900 --> 00:00:41,740 +method, a simple interface through which he can + +13 +00:00:41,740 --> 00:00:44,670 +implement a specific process without knowing the + +14 +00:00:44,670 --> 00:00:49,370 +details. The details are hidden in this face. You + +15 +00:00:49,370 --> 00:00:53,650 +execute the commands and provide it with a single + +16 +00:00:53,650 --> 00:00:55,990 +method to execute the whole process. And this is + +17 +00:00:55,990 --> 00:00:59,550 +what we call the facade. The second design pattern + +18 +00:00:59,550 --> 00:01:01,330 +is the important design pattern called the + +19 +00:01:01,330 --> 00:01:04,980 +adapter. How if I have a systemIt needs to match + +20 +00:01:04,980 --> 00:01:08,420 +with a new office that I want to use I designed + +21 +00:01:08,420 --> 00:01:11,240 +the system to use a specific office And I want to + +22 +00:01:11,240 --> 00:01:13,480 +remove this office and use a new office instead + +23 +00:01:13,480 --> 00:01:15,760 +And this is a scenario that will stay with you all + +24 +00:01:15,760 --> 00:01:18,200 +your life That you remove offices and replace them + +25 +00:01:18,200 --> 00:01:22,500 +with new ones Is the logical solution to change + +26 +00:01:22,500 --> 00:01:27,010 +your entire client application that every call to + +27 +00:01:27,010 --> 00:01:31,050 +the new office becomes a call to the old office + +28 +00:01:31,050 --> 00:01:33,830 +becomes a call to the new office? No, this is not + +29 +00:01:33,830 --> 00:01:39,330 +going to work. Make an adapter so that the client + +30 +00:01:39,330 --> 00:01:41,930 +makes a call to the adapter and the adapter inside + +31 +00:01:41,930 --> 00:01:45,470 +turns into a call to the new office. A third + +32 +00:01:45,470 --> 00:01:47,730 +office is created after that. You only make a new + +33 +00:01:47,730 --> 00:01:51,630 +adapter. The program sends to the adapter and the + +34 +00:01:51,630 --> 00:01:55,090 +adapter turns into the third office. So your + +35 +00:01:55,090 --> 00:02:00,210 +client will be static and will only send request + +36 +00:02:00,210 --> 00:02:03,370 +to adapters and adapters will transform it to new + +37 +00:02:03,370 --> 00:02:08,010 +folders So your application will remain as it is + +38 +00:02:08,010 --> 00:02:10,470 +All you need to do is to create a new adapter when + +39 +00:02:10,470 --> 00:02:14,510 +you get a new library Today we will take a third + +40 +00:02:14,510 --> 00:02:16,510 +design pattern which is also one of the most + +41 +00:02:16,510 --> 00:02:19,230 +important design patterns It's called Decorator + +42 +00:02:19,230 --> 00:02:23,790 +Design Pattern Decorator means that it adds decor + +43 +00:02:24,900 --> 00:02:30,060 +For example, jewellery. We all know what decor + +44 +00:02:30,060 --> 00:02:34,200 +means. Okay, let's read the intent and try to + +45 +00:02:34,200 --> 00:02:37,120 +understand it. Then, let's look at a practical + +46 +00:02:37,120 --> 00:02:39,800 +example to explain what the decorator pattern is + +47 +00:02:39,800 --> 00:02:43,060 +and what it means. The intent or the goal of the + +48 +00:02:43,060 --> 00:02:45,300 +decorator pattern is to attach additional + +49 +00:02:45,300 --> 00:02:48,960 +responsibilities to an object dynamically. To add + +50 +00:02:48,960 --> 00:02:51,560 +new characteristics to the object dynamically. + +51 +00:02:54,350 --> 00:02:59,750 +2. Decorators provide a flexible alternative to + +52 +00:02:59,750 --> 00:03:04,550 +subclassing for extending functionality What does + +53 +00:03:04,550 --> 00:03:05,490 +this sentence mean? This is the most important + +54 +00:03:05,490 --> 00:03:09,750 +sentence Decorators provide a flexible alternative + +55 +00:03:09,750 --> 00:03:11,590 +What is a flexible alternative? It is an + +56 +00:03:11,590 --> 00:03:16,450 +alternative to subclassingfor extending + +57 +00:03:16,450 --> 00:03:20,050 +functionality because we have always learned in + +58 +00:03:20,050 --> 00:03:22,270 +programming that if you have a class and you want + +59 +00:03:22,270 --> 00:03:25,070 +to add new features that don't exist in it, what + +60 +00:03:25,070 --> 00:03:28,990 +do you do? you modify its code? no, you create a + +61 +00:03:28,990 --> 00:03:32,110 +new class and extend it to the old one so that you + +62 +00:03:32,110 --> 00:03:34,430 +don't rewrite the code and then add new features + +63 +00:03:34,430 --> 00:03:35,930 +okay? + +64 +00:03:37,470 --> 00:03:39,930 +did you find that we want to learn something new? + +65 +00:03:41,030 --> 00:03:45,360 +what contradicts this belief? Let's change our + +66 +00:03:45,360 --> 00:03:47,940 +beliefs in programming, not in other things, okay? + +67 +00:03:48,580 --> 00:03:52,780 +That you learn all your life that you add + +68 +00:03:52,780 --> 00:03:54,840 +something new to the class and go and extend it + +69 +00:03:54,840 --> 00:03:57,280 +and add something new to it and you are happy with + +70 +00:03:57,280 --> 00:03:59,300 +it and the subclassing is always good and + +71 +00:03:59,300 --> 00:04:02,180 +excellent No, we will learn that the subclassing + +72 +00:04:02,180 --> 00:04:07,780 +in many cases is bad and we will see alternatives + +73 +00:04:07,780 --> 00:04:11,290 +to itHow can we add a new functionality without + +74 +00:04:11,290 --> 00:04:15,790 +subclassing? And to understand when subclassing is + +75 +00:04:15,790 --> 00:04:18,890 +bad, let's see a practical example and then we + +76 +00:04:18,890 --> 00:04:25,270 +will continue reading the slides. Let me explain + +77 +00:04:25,270 --> 00:04:27,630 +this subject to you. First, I will give you a + +78 +00:04:27,630 --> 00:04:30,950 +simple example, not very practical, to show you + +79 +00:04:30,950 --> 00:04:33,650 +what the meaning of the decorator is, where the + +80 +00:04:33,650 --> 00:04:36,710 +problem is, and how the decorator can solve this + +81 +00:04:36,710 --> 00:04:40,910 +problem.Then I will tell you or show you examples + +82 +00:04:40,910 --> 00:04:45,170 +where this decorator is actually used in famous + +83 +00:04:45,170 --> 00:04:49,790 +libraries such as Java SDK or JavaFX that you are + +84 +00:04:49,790 --> 00:04:53,670 +working on or Swing or Android to show you that + +85 +00:04:53,670 --> 00:04:56,990 +this design pattern is actually used in a big way. + +86 +00:04:57,570 --> 00:04:59,990 +And you used it but you don't know that you are + +87 +00:04:59,990 --> 00:05:04,320 +applying the decorator pattern.Exactly like when + +88 +00:05:04,320 --> 00:05:06,880 +you do add action on the button and you don't know + +89 +00:05:06,880 --> 00:05:11,660 +that it is an observer pattern Ok, let's + +90 +00:05:11,660 --> 00:05:14,460 +understand this example, I want to make a simple + +91 +00:05:14,460 --> 00:05:17,540 +application to draw shapes, ok? I have classes + +92 +00:05:17,540 --> 00:05:21,060 +that represent shapes, first I have an interface + +93 +00:05:21,060 --> 00:05:24,750 +called I shapeOn the basis that all shapes follow + +94 +00:05:24,750 --> 00:05:27,710 +this interface, there is a method called draw that + +95 +00:05:27,710 --> 00:05:29,190 +draws the shape and there is a method called + +96 +00:05:29,190 --> 00:05:32,550 +describe that gives me a description of my text on + +97 +00:05:32,550 --> 00:05:37,830 +this shape The first shape I made is called circle + +98 +00:05:39,120 --> 00:05:42,500 +which is a circle that implements I shape and then + +99 +00:05:42,500 --> 00:05:44,360 +gives it the characteristics of the circle which + +100 +00:05:44,360 --> 00:05:48,960 +is center and radius half a line then this is a + +101 +00:05:48,960 --> 00:05:52,520 +constructor setters and getters and in the end + +102 +00:05:52,520 --> 00:05:55,040 +there are two methods implement that are present + +103 +00:05:55,040 --> 00:05:57,560 +in the interface one of them is called draw which + +104 +00:05:57,560 --> 00:05:58,560 +is supposed to happen when I call it + +105 +00:06:04,740 --> 00:06:08,580 +Draw oval means to draw an oval shape. If you give + +106 +00:06:08,580 --> 00:06:11,240 +the oval shape the center and half of the circle + +107 +00:06:11,240 --> 00:06:13,580 +twice, which is the oval shape, consider that + +108 +00:06:13,580 --> 00:06:16,060 +there are two circles. If you put them next to + +109 +00:06:16,060 --> 00:06:17,540 +each other, what happens to the oval shape? + +110 +00:06:18,120 --> 00:06:21,740 +Circle. Describe, just repeat that this is the + +111 +00:06:21,740 --> 00:06:23,950 +center of the circle.The most important thing is + +112 +00:06:23,950 --> 00:06:25,910 +that I made another class that represents a + +113 +00:06:25,910 --> 00:06:29,210 +rectangle, the name of the class is rectangle, its + +114 +00:06:29,210 --> 00:06:33,630 +attributes are different, x and y are the point of + +115 +00:06:33,630 --> 00:06:37,950 +the rectangle's corner, and width and height are + +116 +00:06:37,950 --> 00:06:41,190 +length and widththis is constructor and the same + +117 +00:06:41,190 --> 00:06:44,010 +thing, I implemented two methods, draw that makes + +118 +00:06:44,010 --> 00:06:49,210 +a rectangle and describe that makes a rectangle + +119 +00:06:49,210 --> 00:06:52,390 +now I made a simple frame that is a small face, so + +120 +00:06:52,390 --> 00:06:55,930 +that when I click on the button, it draws a + +121 +00:06:55,930 --> 00:06:58,290 +circle, do you understand what I mean? because + +122 +00:06:58,290 --> 00:07:00,490 +when I click on the button, it is an action + +123 +00:07:00,490 --> 00:07:04,310 +performed in this swing, okay? I created an object + +124 +00:07:04,310 --> 00:07:08,940 +from COkay, and I give him the data of the circle, + +125 +00:07:09,420 --> 00:07:11,860 +which is the center, for example, and half of the + +126 +00:07:11,860 --> 00:07:17,140 +line is 100. Okay, and then I tell him c dot draw, + +127 +00:07:18,160 --> 00:07:20,460 +and you study it on the fragment itself, so I tell + +128 +00:07:20,460 --> 00:07:21,280 +him get graphics. + +129 +00:07:25,000 --> 00:07:28,320 +When will this code be executed? When I press the + +130 +00:07:28,320 --> 00:07:34,040 +button. Run.this is add shape and this is circle + +131 +00:07:34,040 --> 00:07:39,960 +if you want to draw a rectangle it's exactly the + +132 +00:07:39,960 --> 00:07:46,300 +same thing you say rectangle R new rectangle and + +133 +00:07:46,300 --> 00:07:51,600 +also give it a point 50 50 180 which is the width + +134 +00:07:51,600 --> 00:07:59,220 +and height rectangle free + +135 +00:08:02,400 --> 00:08:12,460 +and then R.draw.getGraphics() and make it run and + +136 +00:08:12,460 --> 00:08:16,240 +this is add shape and this is draw rectangle until + +137 +00:08:16,240 --> 00:08:20,480 +now the subject is trivial right or not guys? okay + +138 +00:08:20,480 --> 00:08:27,060 +now I asked you to make a circle with border so we + +139 +00:08:27,060 --> 00:08:30,480 +want to make a circle around the circle What does + +140 +00:08:30,480 --> 00:08:33,280 +this mean? That we are going to add a new + +141 +00:08:33,280 --> 00:08:35,360 +functionality. In the traditional way, what are + +142 +00:08:35,360 --> 00:08:38,100 +you going to do? Simply say, go and create a new + +143 +00:08:38,100 --> 00:08:42,040 +class called CircleWithBorder. + +144 +00:08:43,580 --> 00:08:47,760 +Okay? And right away, tell it what? Extends Circle + +145 +00:08:47,760 --> 00:08:53,240 +and so on and so forth in everything in the app. + +146 +00:08:53,640 --> 00:08:59,560 +Okay? And thenadd new attributes and override + +147 +00:08:59,560 --> 00:09:02,000 +things that you want to override so you say for + +148 +00:09:02,000 --> 00:09:08,160 +example int border-width this is for the width of + +149 +00:09:08,160 --> 00:09:14,580 +the border and I have color border-color + +150 +00:09:14,580 --> 00:09:18,520 +and + +151 +00:09:18,520 --> 00:09:20,380 +you want to put for example setters and getters + +152 +00:09:20,380 --> 00:09:21,580 +for whom? for the new attributes + +153 +00:09:28,190 --> 00:09:30,530 +We haven't drawn a border yet, we will give it an + +154 +00:09:30,530 --> 00:09:32,510 +attribute but we haven't drawn it yet So we will + +155 +00:09:32,510 --> 00:09:35,170 +change this gate to a method to draw, we will make + +156 +00:09:35,170 --> 00:09:38,210 +it overwrite The draw doesn't draw a border for + +157 +00:09:38,210 --> 00:09:40,050 +this gate So I will make it overwrite, I will tell + +158 +00:09:40,050 --> 00:09:45,470 +it to make an override for a method called draw It + +159 +00:09:45,470 --> 00:09:49,370 +doesn't need to be a super gate, I really want to + +160 +00:09:49,370 --> 00:09:51,710 +make a change I will show you how to make the + +161 +00:09:51,710 --> 00:09:54,630 +changeThe idea is not about how to make changes, + +162 +00:09:54,750 --> 00:09:57,270 +but about how to make changes. For example, I want + +163 +00:09:57,270 --> 00:10:00,730 +to make graphics 2D, + +164 +00:10:01,130 --> 00:10:02,090 +G2D. + +165 +00:10:41,670 --> 00:10:44,990 +Ok, these are the new additions, then I go and say + +166 +00:10:44,990 --> 00:10:51,870 +super or super + +167 +00:10:51,870 --> 00:10:59,710 +.draw Ok + +168 +00:10:59,710 --> 00:11:01,830 +guys, the idea of ​​the draw is to add a new + +169 +00:11:01,830 --> 00:11:04,870 +feature, which is to draw a border Which is what I + +170 +00:11:04,870 --> 00:11:08,430 +did to draw a border, I went and gave it color I + +171 +00:11:08,430 --> 00:11:12,450 +changed the color and gave it a stroke that takes + +172 +00:11:12,450 --> 00:11:16,050 +the width and then I told it to invoke the super + +173 +00:11:16,050 --> 00:11:19,330 +to draw it. It will invoke the super, it will draw + +174 +00:11:19,330 --> 00:11:23,570 +the circle, but after applying the new settings. + +175 +00:11:24,310 --> 00:11:26,650 +From the point of view, the point is not how to + +176 +00:11:26,650 --> 00:11:28,730 +draw a circle, the point is that I made an + +177 +00:11:28,730 --> 00:11:33,010 +override to add a new functionality, okay? And + +178 +00:11:33,010 --> 00:11:36,570 +this is also an override for whom? for describe, + +179 +00:11:37,210 --> 00:11:43,390 +here he used to say this is circle, so i want to + +180 +00:11:43,390 --> 00:11:51,070 +say return super dot describe plus with border of + +181 +00:11:51,070 --> 00:11:53,930 +color and with color for example, the important + +182 +00:11:53,930 --> 00:11:58,630 +thing is that we added a new feature that says + +183 +00:11:58,630 --> 00:12:02,530 +anything in the description with border Ok, the + +184 +00:12:02,530 --> 00:12:05,270 +speech now is simple Ok, until now we did the + +185 +00:12:05,270 --> 00:12:07,630 +class, but we didn't use it We need to go to my + +186 +00:12:07,630 --> 00:12:11,010 +frame Now, instead of creating a circle or + +187 +00:12:11,010 --> 00:12:14,230 +rectangle I found what I need to do I need to + +188 +00:12:14,230 --> 00:12:21,610 +create an object of type circle with border Ok + +189 +00:12:21,610 --> 00:12:29,230 +guys, this is cbnewcirclewithborder + +190 +00:12:30,780 --> 00:12:35,040 +and I give it the center and half of the line and + +191 +00:12:35,040 --> 00:12:37,900 +then go to the cb and give it the set border which + +192 +00:12:37,900 --> 00:12:46,160 +is the new attribute highcolor.red cb.width 3 for + +193 +00:12:46,160 --> 00:12:53,800 +example and then I tell it cb.draw get graphics + +194 +00:13:02,320 --> 00:13:07,280 +With me guys, make a run And it will add shape, it + +195 +00:13:07,280 --> 00:13:11,960 +will add a circle shape in a circle Ok, where is + +196 +00:13:11,960 --> 00:13:15,380 +the problem? Pay attention with me Because I made + +197 +00:13:15,380 --> 00:13:18,700 +a circle, I want to add a rectangle with border + +198 +00:13:18,700 --> 00:13:22,000 +The rectangle needs to have a border What will we + +199 +00:13:22,000 --> 00:13:25,030 +do? You will create a new class with the name + +200 +00:13:25,030 --> 00:13:27,810 +rectangle with border and extend the rectangle and + +201 +00:13:27,810 --> 00:13:30,410 +create an override for the new attribute list + +202 +00:13:30,410 --> 00:13:34,230 +which is border width and color and create an + +203 +00:13:34,230 --> 00:13:39,530 +override for the draw and describe Now + +204 +00:13:39,530 --> 00:13:43,130 +suppose + +205 +00:13:43,130 --> 00:13:45,590 +I have not one shape or two shapes or three shapes + +206 +00:13:45,590 --> 00:13:51,370 +I have ten shapes I have circle and rectangle + +207 +00:13:55,730 --> 00:14:00,150 +and I have a triangle and another shape and a + +208 +00:14:00,150 --> 00:14:02,750 +third and a fourth and a fifth and I want to add a + +209 +00:14:02,750 --> 00:14:07,910 +border to these shapes what should I do now?You + +210 +00:14:07,910 --> 00:14:09,870 +have to add, we have agreed or we have learned + +211 +00:14:09,870 --> 00:14:11,530 +always and we are happy from the first year of + +212 +00:14:11,530 --> 00:14:13,650 +university that you have to add new things, go and + +213 +00:14:13,650 --> 00:14:15,890 +make extend for the class and add them So you have + +214 +00:14:15,890 --> 00:14:18,430 +to go and make extend for this one to make a class + +215 +00:14:18,430 --> 00:14:22,610 +called circle with border CWB circle with border + +216 +00:14:22,610 --> 00:14:25,850 +And this is extend to make a new class called + +217 +00:14:25,850 --> 00:14:29,670 +rectangle with border And this is triangle with + +218 +00:14:29,670 --> 00:14:34,710 +borderSo if you have 10 shapes, how many + +219 +00:14:34,710 --> 00:14:37,690 +subclasses do you need to make? 10 subclasses. Ok, + +220 +00:14:37,990 --> 00:14:41,950 +I told you that we need to make solid shapes. What + +221 +00:14:41,950 --> 00:14:43,030 +do I mean by solid shapes? It means that now the + +222 +00:14:43,030 --> 00:14:45,330 +circle I'm drawing is separated. We need to make a + +223 +00:14:45,330 --> 00:14:49,030 +solid circle. Ok? This is a new feature. It needs + +224 +00:14:49,030 --> 00:14:52,210 +to fill the existing circle. So we need to modify + +225 +00:14:52,210 --> 00:14:56,170 +the main circle to make it.Where do we go to edit? + +226 +00:14:56,390 --> 00:14:58,510 +It has nothing to do with this border So you have + +227 +00:14:58,510 --> 00:15:04,310 +to make a new class called solid circle, C Extend + +228 +00:15:04,310 --> 00:15:08,850 +mean circle And you have to make a full rectangle + +229 +00:15:08,850 --> 00:15:13,430 +You have to make what? Solid rectangle Extend mean + +230 +00:15:13,430 --> 00:15:17,530 +rectangle So in order to add a solid feature to + +231 +00:15:17,530 --> 00:15:21,250 +the shapes I have I have to make them all extend I + +232 +00:15:21,250 --> 00:15:24,410 +have ten shapes and I have ten classes + +233 +00:15:26,550 --> 00:15:29,510 +So in order to add two features to a class, I need + +234 +00:15:29,510 --> 00:15:38,650 +to add 20 classes to the top 10. Is this a good + +235 +00:15:38,650 --> 00:15:41,650 +scenario or not? So every time I want to add a + +236 +00:15:41,650 --> 00:15:45,670 +feature to my 10 classes, I need to create 10 + +237 +00:15:45,670 --> 00:15:50,870 +subclasses. And this is bad. So will I have 10 + +238 +00:15:50,870 --> 00:15:52,050 +subclasses? Have you ever seen someone create a + +239 +00:15:52,050 --> 00:15:57,870 +GUI library? For example, JavaFX.It has a lot of + +240 +00:15:57,870 --> 00:16:00,590 +elements, right or not guys? All these elements + +241 +00:16:00,590 --> 00:16:03,230 +want to add borders to them. For example, you have + +242 +00:16:03,230 --> 00:16:07,150 +a text area, a combo box, a list drop list, and a + +243 +00:16:07,150 --> 00:16:11,610 +tab pane, right or not? There are many types of UI + +244 +00:16:11,610 --> 00:16:14,470 +components in Java, in X or any other library. + +245 +00:16:15,410 --> 00:16:19,990 +Okay? And we want to make a border for all the UI + +246 +00:16:19,990 --> 00:16:23,440 +components. For example, I have 30 UI components + +247 +00:16:23,440 --> 00:16:27,200 +in Javafix, at least this one. Each one of them + +248 +00:16:27,200 --> 00:16:30,680 +extends to add this feature. If I have 10 + +249 +00:16:30,680 --> 00:16:33,460 +features, I have to add them to the 30 UI + +250 +00:16:33,460 --> 00:16:37,320 +components. How many classes will I have? 10 + +251 +00:16:37,320 --> 00:16:43,980 +features in 30 main ones. I have 300 classes. This + +252 +00:16:43,980 --> 00:16:46,920 +is called the explosion of classes, like the + +253 +00:16:46,920 --> 00:16:51,470 +population explosion.This means that the + +254 +00:16:51,470 --> 00:16:54,830 +subclassing that we were happy with was good, we + +255 +00:16:54,830 --> 00:16:57,970 +did not say that it was invalid, but in some cases + +256 +00:16:57,970 --> 00:17:04,110 +it can cause a lot of classes. Because I want to + +257 +00:17:04,110 --> 00:17:08,210 +show you a way, I have 30 classes, I want to make + +258 +00:17:08,210 --> 00:17:10,190 +them a border, I want to make a single class, + +259 +00:17:11,570 --> 00:17:18,290 +that's it, I am a single featureIn one class, add + +260 +00:17:18,290 --> 00:17:23,150 +up to 30. So if I have 10 features, I make only 10 + +261 +00:17:23,150 --> 00:17:28,170 +classes, instead of making 300 classes. Do you + +262 +00:17:28,170 --> 00:17:31,330 +agree with me or not? Let's see how to apply this. + +263 +00:17:38,150 --> 00:17:40,810 +Let me explain how to do it and then I will draw + +264 +00:17:40,810 --> 00:17:45,210 +the UML diagram. What do you think Halgate? In our + +265 +00:17:45,210 --> 00:17:46,970 +example here, I have two shapes, circle and + +266 +00:17:46,970 --> 00:17:49,910 +rectangle. To make them a border, I have to make + +267 +00:17:49,910 --> 00:17:53,810 +two classes, circle with border and rectangle with + +268 +00:17:53,810 --> 00:17:57,750 +border.I didn't do rectangle with border but it's + +269 +00:17:57,750 --> 00:18:01,110 +the same idea Now I don't want to make circle with + +270 +00:18:01,110 --> 00:18:03,210 +border and rectangle with border I want to make + +271 +00:18:03,210 --> 00:18:07,070 +one class called border and add to the frame the + +272 +00:18:07,070 --> 00:18:11,010 +two, three or ten shapes that I have So I found + +273 +00:18:11,010 --> 00:18:15,410 +that I want to make a new class called border + +274 +00:18:18,660 --> 00:18:22,760 +First of all, make this class from the same type + +275 +00:18:22,760 --> 00:18:25,880 +of shapes. What does it mean? Make it from the + +276 +00:18:25,880 --> 00:18:26,940 +Make it from the same type of shapes. What does it + +277 +00:18:26,940 --> 00:18:28,020 +mean? Make it from the same type of shapes. What + +278 +00:18:28,020 --> 00:18:28,200 +does it mean? Make it from the same type of + +279 +00:18:28,200 --> 00:18:28,640 +shapes. What does it mean? Make it from the same + +280 +00:18:28,640 --> 00:18:28,920 +type of shapes. What does it mean? Make it from + +281 +00:18:28,920 --> 00:18:29,140 +shapes. What does it mean? Make it from the same + +282 +00:18:29,140 --> 00:18:29,940 +the same type of shapes. What does it mean? Make + +283 +00:18:29,940 --> 00:18:35,820 +it from the same type of shapes. What does it + +284 +00:18:35,820 --> 00:18:38,600 +mean? Make it from the same type of shapes. What + +285 +00:18:38,600 --> 00:18:40,520 +does it mean? Make it from the same type of + +286 +00:18:40,520 --> 00:18:45,250 +shapes. an object of type .. pay attention to me + +287 +00:18:45,250 --> 00:18:47,450 +and then I will explain to you ok? an object of + +288 +00:18:47,450 --> 00:18:49,810 +type shape notice that there is a strange thing + +289 +00:18:49,810 --> 00:18:52,830 +that this is of type shape and inside it contains + +290 +00:18:52,830 --> 00:18:56,150 +what? an object of type shape of course this is a + +291 +00:18:56,150 --> 00:18:58,790 +null value so we need to create a constructor to + +292 +00:18:58,790 --> 00:19:06,990 +initialize it + +293 +00:19:06,990 --> 00:19:11,250 +ok + +294 +00:19:11,250 --> 00:19:18,640 +guys? ok we are almost done now look with me now + +295 +00:19:18,640 --> 00:19:24,000 +my goal is to add a border right? what are the + +296 +00:19:24,000 --> 00:19:29,480 +attributes of any border? I have border int border + +297 +00:19:29,480 --> 00:19:36,900 +-width and color border-color + +298 +00:19:36,900 --> 00:19:39,680 +and the same thing we want to do with these + +299 +00:19:39,680 --> 00:19:41,200 +setters + +300 +00:19:52,790 --> 00:19:56,810 +Okay, I got the idea that the shape that I want to + +301 +00:19:56,810 --> 00:20:02,610 +draw, okay? I want to add a frame to it. Now, what + +302 +00:20:02,610 --> 00:20:06,110 +does this constructor take? I shape. Why did you + +303 +00:20:06,110 --> 00:20:08,690 +let him take I shape? So that I can send him a + +304 +00:20:08,690 --> 00:20:11,470 +circle, rectangle, triangle and any other shape. + +305 +00:20:12,150 --> 00:20:15,870 +Okay? Then, in this draw, what do I really want to + +306 +00:20:15,870 --> 00:20:24,630 +do? Okay? I'm going to add my new code Do you + +307 +00:20:24,630 --> 00:20:27,790 +remember the code that we used to do? Circle with + +308 +00:20:27,790 --> 00:20:31,550 +rectangle Circle with border This is the code, do + +309 +00:20:31,550 --> 00:20:34,970 +you see it? What does it do? It applies the new + +310 +00:20:34,970 --> 00:20:44,230 +color and the new border width Why + +311 +00:20:44,230 --> 00:20:48,770 +can't I see the border?Width, what is this? We + +312 +00:20:48,770 --> 00:20:53,090 +wrote it wrong, so we go and edit it, but what? + +313 +00:20:53,270 --> 00:21:04,230 +Down here, border-width Where + +314 +00:21:04,230 --> 00:21:07,810 +is six? Yes, six border-width + +315 +00:21:10,500 --> 00:21:14,960 +okay, we came here in the draw this is the + +316 +00:21:14,960 --> 00:21:18,520 +border's draw do like this and then what do I do? + +317 +00:21:18,640 --> 00:21:23,460 +I tell him to go to shape and tell him to draw and + +318 +00:21:23,460 --> 00:21:29,100 +send me G to D now describe I want to describe the + +319 +00:21:29,100 --> 00:21:35,240 +shape I want to tell him to return shape.describe + +320 +00:21:35,240 --> 00:21:36,660 +and then here I tell him with + +321 +00:21:39,930 --> 00:21:42,590 +with border Okay, what did I do? You will say this + +322 +00:21:42,590 --> 00:21:46,030 +is the same thing we did No, look with me Because + +323 +00:21:46,030 --> 00:21:49,670 +I made a class called border Actually, this border + +324 +00:21:49,670 --> 00:21:54,790 +covers the shape It doesn't extend it, it covers + +325 +00:21:54,790 --> 00:22:00,190 +it Okay, look with me I + +326 +00:22:00,190 --> 00:22:05,610 +have two ways to add new features to any class + +327 +00:22:05,610 --> 00:22:07,330 +Subclassing + +328 +00:22:09,930 --> 00:22:12,270 +If we assume that I have a class that has + +329 +00:22:12,270 --> 00:22:15,130 +attributes, these attributes for example, and + +330 +00:22:15,130 --> 00:22:18,910 +methods, okay? These are one, two, three, and + +331 +00:22:18,910 --> 00:22:22,330 +these methods are one, two, three. I would like to + +332 +00:22:22,330 --> 00:22:24,630 +add a new functionality. What does a new + +333 +00:22:24,630 --> 00:22:27,550 +functionality mean? It means new attributes, new + +334 +00:22:27,550 --> 00:22:31,250 +methods, or modifying old methods. I go and create + +335 +00:22:31,250 --> 00:22:34,910 +a new class. What is the goal? Subclassing. + +336 +00:22:35,190 --> 00:22:43,470 +Extend, okay?I don't write 1,2,3 I write x4 and x5 + +337 +00:22:43,470 --> 00:22:48,750 +as new attributes and I don't write 1,2,3 I write + +338 +00:22:48,750 --> 00:22:54,890 +4 and five and if I want to modify one of these I + +339 +00:22:54,890 --> 00:22:58,170 +can override it and through it I can claim the + +340 +00:22:58,170 --> 00:23:00,750 +super for example or I can change the code in it + +341 +00:23:00,750 --> 00:23:04,250 +completely this is in the case of subclasses + +342 +00:23:04,250 --> 00:23:06,470 +beautiful and excellent and what makes it special + +343 +00:23:06,470 --> 00:23:09,570 +is that you will not rewrite the code in the app + +344 +00:23:09,570 --> 00:23:13,590 +as we learned but the problem is that if I have + +345 +00:23:13,590 --> 00:23:16,010 +ten classes and I want to add new features to them + +346 +00:23:16,010 --> 00:23:20,320 +you have to do x2 to the tenThe second way is the + +347 +00:23:20,320 --> 00:23:22,680 +decorator way. + +348 +00:23:24,300 --> 00:23:25,720 +What does it mean? I want to add a new + +349 +00:23:25,720 --> 00:23:29,800 +functionality, I don't want to do subclassing, I + +350 +00:23:29,800 --> 00:23:32,440 +want to create an object from the old classAnd + +351 +00:23:32,440 --> 00:23:36,620 +wrap it with a new object This wrapping puts in + +352 +00:23:36,620 --> 00:23:39,480 +new things How for example, let's go back to the + +353 +00:23:39,480 --> 00:23:44,060 +same example This class has x x x and has a circle + +354 +00:23:44,060 --> 00:23:47,620 +circle circle This is feature 1,2,3 and this is 1 + +355 +00:23:47,620 --> 00:23:51,960 +,2,3 I would like to add new features, new + +356 +00:23:51,960 --> 00:23:55,820 +attributes, new methods, modifications to previous + +357 +00:23:55,820 --> 00:23:58,240 +methods Because if we assume that this class is + +358 +00:23:58,240 --> 00:24:05,530 +called AGo and create a new class Inside it, + +359 +00:24:05,850 --> 00:24:10,310 +create an object from what? From what? This is an + +360 +00:24:10,310 --> 00:24:15,110 +object from this, okay? So, this thing actually + +361 +00:24:15,110 --> 00:24:19,770 +contains on x x x one two three, right? And on a + +362 +00:24:19,770 --> 00:24:22,790 +circle circle circle one two three This is an + +363 +00:24:22,790 --> 00:24:27,910 +object, object from whom? From this classOkay, did + +364 +00:24:27,910 --> 00:24:31,970 +you notice that the class of addition, the client + +365 +00:24:31,970 --> 00:24:36,250 +sees it as this? What does addition mean? It is + +366 +00:24:36,250 --> 00:24:41,590 +supposed to be as if this includes this with + +367 +00:24:41,590 --> 00:24:45,170 +additions. But again, I confirm that this did not + +368 +00:24:45,170 --> 00:24:49,770 +extend. So really, I do not see anything inside + +369 +00:24:49,770 --> 00:24:51,270 +these. I am from outside, did you notice? This is + +370 +00:24:51,270 --> 00:24:53,110 +the class. When I create an object from it, is + +371 +00:24:53,110 --> 00:24:55,570 +there a method? No, the client will not see + +372 +00:24:56,370 --> 00:24:59,350 +Anything else, so he says what are you doing? Now, + +373 +00:25:00,150 --> 00:25:02,510 +why am I doing this? Because I want to add new + +374 +00:25:02,510 --> 00:25:05,670 +things What are the new things? They are xx which + +375 +00:25:05,670 --> 00:25:09,250 +are 4 and 5, they will add new attributes to us, + +376 +00:25:09,290 --> 00:25:13,990 +okay? Then you add a new method, put 4 and 5, + +377 +00:25:14,070 --> 00:25:17,350 +these are new methods for them But I still have a + +378 +00:25:17,350 --> 00:25:20,770 +problem that 1 and 2 and 3, I don't see them from + +379 +00:25:20,770 --> 00:25:24,170 +here, right? So he says 1 and 2 and 3, go back and + +380 +00:25:24,170 --> 00:25:30,330 +do what? write them again if there are ten methods + +381 +00:25:30,330 --> 00:25:33,050 +here you have to write the ten here but what does + +382 +00:25:33,050 --> 00:25:37,910 +it do when I call one of the covers one will call + +383 +00:25:37,910 --> 00:25:42,150 +one of the objects inside when I call two from + +384 +00:25:42,150 --> 00:25:45,530 +here this calls two from here when I call three + +385 +00:25:45,530 --> 00:25:50,990 +this calls three from here because my goal is that + +386 +00:25:50,990 --> 00:25:56,390 +I have to see thisIt's like this, but with new + +387 +00:25:56,390 --> 00:25:58,690 +features Because if I create an object from this, + +388 +00:25:59,990 --> 00:26:03,870 +I will see x1 and x1 and x1 and x1 and x1 and x1 + +389 +00:26:03,870 --> 00:26:04,930 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +390 +00:26:04,930 --> 00:26:05,050 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +391 +00:26:05,050 --> 00:26:06,670 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +392 +00:26:06,670 --> 00:26:08,570 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +393 +00:26:08,570 --> 00:26:10,690 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +394 +00:26:10,690 --> 00:26:13,870 +and x1 and x1 and x1 and x1 and x1 and + +395 +00:26:13,870 --> 00:26:18,810 +x1I will see new things, yes I will see 4 and 5, + +396 +00:26:18,910 --> 00:26:22,390 +and I will see attributes 4 and 5, this is adding + +397 +00:26:22,390 --> 00:26:26,990 +new things to this, using the decorator method, or + +398 +00:26:26,990 --> 00:26:29,250 +sometimes we call it wrapper, what is a wrapper? + +399 +00:26:30,230 --> 00:26:31,610 +It is a cover, don't you hear the word chicken + +400 +00:26:31,610 --> 00:26:39,050 +wrap? Yes, this is a wrapper, a cover, now I added + +401 +00:26:39,050 --> 00:26:42,980 +new features, but it has pros and consWhat are its + +402 +00:26:42,980 --> 00:26:48,100 +disadvantages? Notice that I had to rewrite the + +403 +00:26:48,100 --> 00:26:50,620 +same methods here with the conversion to the inner + +404 +00:26:50,620 --> 00:26:53,620 +object. Here, no, I did not need to write one, two + +405 +00:26:53,620 --> 00:26:58,980 +and three. Okay, it overwhelmed us a bit, but the + +406 +00:26:58,980 --> 00:27:02,900 +idea that came up is that this cover can be + +407 +00:27:02,900 --> 00:27:06,260 +covered by anything, that is, if this is of the + +408 +00:27:06,260 --> 00:27:09,620 +type that takes a certain interface I, any object + +409 +00:27:09,620 --> 00:27:14,420 +of type I can be placed here.So this envelope goes + +410 +00:27:14,420 --> 00:27:19,920 +with any object of the type of the interface As if + +411 +00:27:19,920 --> 00:27:22,600 +you are making a frame and you change the image + +412 +00:27:22,600 --> 00:27:27,180 +inside it Now let's come to our example here We + +413 +00:27:27,180 --> 00:27:29,000 +haven't finished this example yet, let's apply it, + +414 +00:27:29,020 --> 00:27:33,000 +let's see how it works I actually made a class + +415 +00:27:33,000 --> 00:27:36,340 +called border, which is this class What wraps + +416 +00:27:36,340 --> 00:27:41,660 +inside it? Object of the type shape So this is the + +417 +00:27:41,660 --> 00:27:46,500 +inner object Now, what are the new attributes and + +418 +00:27:46,500 --> 00:27:49,460 +classes that I added? I added new attributes which + +419 +00:27:49,460 --> 00:27:53,500 +are border-width and border-color This is border + +420 +00:27:53,500 --> 00:27:59,520 +-width and border-color This is four and five This + +421 +00:27:59,520 --> 00:28:04,480 +is the constructor to send the shape inside Now, + +422 +00:28:04,640 --> 00:28:08,520 +this is the method of draw The inner object has a + +423 +00:28:08,520 --> 00:28:14,890 +drawwhich is for example 1 I am supposed to see + +424 +00:28:14,890 --> 00:28:20,390 +the cover as I see the real object so I wrote 1 in + +425 +00:28:20,390 --> 00:28:23,970 +the class this is 1 which I wrote in the class + +426 +00:28:23,970 --> 00:28:29,110 +this is class 1 but of course through 1 look with + +427 +00:28:29,110 --> 00:28:33,550 +me which is right 1 to draw I started shape.draw + +428 +00:28:34,650 --> 00:28:36,850 +What does it mean? It means that this draw is + +429 +00:28:36,850 --> 00:28:41,290 +equivalent to the draw that is in the shape. This + +430 +00:28:41,290 --> 00:28:45,030 +is the transformation. And also through describe, + +431 +00:28:46,530 --> 00:28:48,090 +the shape is equivalent to the describe. In the + +432 +00:28:48,090 --> 00:28:52,770 +past, we used to do super to describe. Okay? But + +433 +00:28:52,770 --> 00:28:56,650 +with some changes, which are what I want. That is, + +434 +00:28:56,710 --> 00:28:58,890 +when you make a draw, before you implement the + +435 +00:28:58,890 --> 00:29:01,830 +draw on your shape, add the adjustments that I + +436 +00:29:01,830 --> 00:29:05,670 +want, then make the draw.Describe is the same + +437 +00:29:05,670 --> 00:29:10,330 +thing. I want to make a shape and describe it and + +438 +00:29:10,330 --> 00:29:14,650 +add whatever I want to it. How many classes did I + +439 +00:29:14,650 --> 00:29:18,130 +make? One class takes shape. Let's take advantage + +440 +00:29:18,130 --> 00:29:22,550 +of it. Go to the frame that I have. Before I had + +441 +00:29:22,550 --> 00:29:24,770 +to make circle with border and rectangle with + +442 +00:29:24,770 --> 00:29:28,110 +border. Did you notice? All you have to do is to + +443 +00:29:28,110 --> 00:29:31,420 +make an object from circle, the basic class. With + +444 +00:29:31,420 --> 00:29:35,180 +me or not guys? Because this basic class we want + +445 +00:29:35,180 --> 00:29:38,080 +to add a border to it All you have to do is to + +446 +00:29:38,080 --> 00:29:40,500 +create an object from border B that is equal to + +447 +00:29:40,500 --> 00:29:45,360 +new border And what happens to the minus sign? The + +448 +00:29:45,360 --> 00:29:50,620 +C will accept the C because C is a shapenow all + +449 +00:29:50,620 --> 00:29:54,260 +you need to do is to give him your border's + +450 +00:29:54,260 --> 00:29:56,880 +properties which is border color for example color + +451 +00:29:56,880 --> 00:30:06,960 +.red and go b.set border width for example 3 and + +452 +00:30:06,960 --> 00:30:09,780 +the last step I should deal with the border as I + +453 +00:30:09,780 --> 00:30:11,960 +would deal with the circle there is a method + +454 +00:30:11,960 --> 00:30:16,380 +called draw and say get graphics + +455 +00:30:22,500 --> 00:30:27,820 +Let's create a circle with + +456 +00:30:27,820 --> 00:30:31,300 +a circle shape Now I want to create a rectangle + +457 +00:30:31,300 --> 00:30:37,960 +with border All you need to do is type rectangle R + +458 +00:30:37,960 --> 00:30:43,580 +new rectangle + +459 +00:30:43,580 --> 00:30:46,840 +180 + +460 +00:30:46,840 --> 00:30:47,440 +for example + +461 +00:30:52,710 --> 00:31:01,430 +and here R rectangle I didn't make a new class I + +462 +00:31:01,430 --> 00:31:04,010 +brought rectangle and made it the same object of + +463 +00:31:04,010 --> 00:31:09,410 +type border and it will run add shape and it will + +464 +00:31:09,410 --> 00:31:15,420 +add border to it and if you have any other shapeI + +465 +00:31:15,420 --> 00:31:20,460 +mean, if I have 10 shapes, and I make only one + +466 +00:31:20,460 --> 00:31:23,260 +class for each of them, I add this new + +467 +00:31:26,820 --> 00:31:33,320 +Now, using the decorator method. I have two ways + +468 +00:31:33,320 --> 00:31:35,740 +to add any feature to a class. The first way is + +469 +00:31:35,740 --> 00:31:40,100 +subclassing.means you were searched, right or + +470 +00:31:40,100 --> 00:31:41,480 +wrong, we talked about it a lot and it took you + +471 +00:31:41,480 --> 00:31:43,420 +two years and you are happy with it. The second + +472 +00:31:43,420 --> 00:31:46,960 +way is to use the decorator method. I want to add + +473 +00:31:46,960 --> 00:31:49,700 +a new functionality to the class. You create an + +474 +00:31:49,700 --> 00:31:53,340 +object from your class and wrap it with another + +475 +00:31:53,340 --> 00:31:57,600 +object from the class. The way of wrapping this, + +476 +00:31:57,640 --> 00:32:00,870 +or the decorator we call it, or the wrapperIt's + +477 +00:32:00,870 --> 00:32:03,590 +difficult because you have to use the methods in + +478 +00:32:03,590 --> 00:32:08,190 +your object to create it here because the client + +479 +00:32:08,190 --> 00:32:12,870 +sees the cover as it sees what's inside. So 1,2,3, + +480 +00:32:12,910 --> 00:32:15,870 +I made them here 1,2,3, but I let it transform + +481 +00:32:15,870 --> 00:32:19,230 +from inside. We didn't do this here. We used to do + +482 +00:32:19,230 --> 00:32:20,990 +subclassing, missequation, because you don't want + +483 +00:32:20,990 --> 00:32:23,650 +to write code. Here you want to write code with + +484 +00:32:23,650 --> 00:32:26,840 +transformation and adding additional quotes.And + +485 +00:32:26,840 --> 00:32:29,960 +you can add more methods For example, I will not + +486 +00:32:29,960 --> 00:32:33,020 +add more things here Of course, what will be extra + +487 +00:32:33,020 --> 00:32:35,860 +if there are setters and getters For border width + +488 +00:32:35,860 --> 00:32:40,580 +and border color These are considered four or five + +489 +00:32:40,580 --> 00:32:44,500 +But the advantage of the decorator method is that + +490 +00:32:44,500 --> 00:32:49,920 +I can change the inner object Of different types, + +491 +00:32:50,140 --> 00:32:54,840 +so it's like a cover It can cover any type of + +492 +00:32:54,840 --> 00:32:59,660 +shapeSo the addition is made with one class only + +493 +00:32:59,660 --> 00:33:02,900 +So if I have 30 classes, I want to add 10 + +494 +00:33:02,900 --> 00:33:09,380 +additions to them For example, I made a border now + +495 +00:33:09,380 --> 00:33:13,440 +We want to make a scroll bar for the shapes Or + +496 +00:33:13,440 --> 00:33:17,040 +solid shapes You only need to make one class + +497 +00:33:17,040 --> 00:33:21,920 +called solid And it takes any shape of the type + +498 +00:33:21,920 --> 00:33:25,840 +shape And it creates an implement for the method + +499 +00:33:25,840 --> 00:33:30,680 +draw that you write to it So that you give it a + +500 +00:33:30,680 --> 00:33:33,420 +color and tell it to fill it And then it draws the + +501 +00:33:33,420 --> 00:33:37,220 +shape again to get shape.draw Not super.draw, + +502 +00:33:37,440 --> 00:33:42,720 +shape.draw So really I only need one class to make + +503 +00:33:42,720 --> 00:33:47,280 +solid So each new feature is one class instead of + +504 +00:33:47,280 --> 00:33:51,560 +ten classes As I said in JavaFX, I have many UI + +505 +00:33:51,560 --> 00:33:56,450 +components I want to make a scrollbar for them I + +506 +00:33:56,450 --> 00:33:58,890 +want to make a scrollbar for the text area, a + +507 +00:33:58,890 --> 00:34:01,130 +scrollbar for the tab pane I want to add this + +508 +00:34:01,130 --> 00:34:06,250 +scrollbar and tell it to make a text area with + +509 +00:34:06,250 --> 00:34:10,390 +scrollbar and make it a new class Text area with + +510 +00:34:10,390 --> 00:34:12,330 +scrollbar with border and make it a new class, + +511 +00:34:12,390 --> 00:34:15,830 +look at the possibilities it has, it increases No, + +512 +00:34:16,230 --> 00:34:19,170 +make a class, one scrollbar and wrap it in any + +513 +00:34:19,170 --> 00:34:25,500 +form of UI componentNow, where did we get the idea + +514 +00:34:25,500 --> 00:34:28,700 +guys? So we have two ways of adding, the way of + +515 +00:34:28,700 --> 00:34:33,460 +subclassing and the way of the decorator Because + +516 +00:34:33,460 --> 00:34:37,080 +this doesn't mean that the subclassing is bad and + +517 +00:34:37,080 --> 00:34:40,180 +you don't use it, okay? No, you will say, okay, + +518 +00:34:40,320 --> 00:34:42,580 +the doctor came, the subclassing has a problem, + +519 +00:34:42,960 --> 00:34:47,320 +let's do what? The decorator all his life No, you + +520 +00:34:47,320 --> 00:34:50,970 +are supposed to use the subclassingBut let's say + +521 +00:34:50,970 --> 00:34:54,470 +that in some cases, using subclassing will cause + +522 +00:34:54,470 --> 00:34:57,250 +an explosion of classes, a large number of + +523 +00:34:57,250 --> 00:35:01,010 +classes. When you need to add these ten classes to + +524 +00:35:01,010 --> 00:35:04,250 +make another ten classes, there is a negativity + +525 +00:35:04,250 --> 00:35:07,270 +here. So you resort to using a decorator to make + +526 +00:35:07,270 --> 00:35:10,830 +one class to add the feature to the ten you have. + +527 +00:35:11,710 --> 00:35:14,290 +So if the use of subclassing causes the creation + +528 +00:35:14,290 --> 00:35:16,270 +of a large number of classes, then you resort to + +529 +00:35:16,270 --> 00:35:17,490 +the decorator. + +530 +00:35:20,660 --> 00:35:27,960 +Now, based on this talk, let's see where we are in + +531 +00:35:27,960 --> 00:35:32,380 +Java or + +532 +00:35:32,380 --> 00:35:36,560 +in JavaFX. We use the decorator pattern, and you + +533 +00:35:36,560 --> 00:35:39,940 +use the decorator pattern, and you don't know that + +534 +00:35:39,940 --> 00:35:41,380 +this is an application on the decorator. + +535 +00:35:44,140 --> 00:35:49,040 +I told you in Java how to write and read files.So + +536 +00:35:49,040 --> 00:35:52,100 +he used to say for example to write on file go and + +537 +00:35:52,100 --> 00:36:00,980 +create object from file output stream of + +538 +00:36:00,980 --> 00:36:05,360 +FOS for example that I named it equals new file + +539 +00:36:05,360 --> 00:36:11,220 +output stream and it takes object from type for + +540 +00:36:11,220 --> 00:36:14,830 +example file Now, if you want to write the output + +541 +00:36:14,830 --> 00:36:18,370 +stream file directly by using it, it is annoying + +542 +00:36:18,370 --> 00:36:20,590 +because it has a write method and it takes binary + +543 +00:36:20,590 --> 00:36:23,730 +data, for example. Okay? So it is difficult to use + +544 +00:36:23,730 --> 00:36:26,470 +it. So to make it easier to use it, it told you to + +545 +00:36:26,470 --> 00:36:32,610 +create another object from PrintWriter.pr + +546 +00:36:32,610 --> 00:36:37,750 +and you give it PrintWriter + +547 +00:36:37,750 --> 00:36:39,010 +and you give it the file + +548 +00:36:41,870 --> 00:36:43,610 +This is how they used to say connect this one with + +549 +00:36:43,610 --> 00:36:46,250 +this one. So what is the advantage of the print + +550 +00:36:46,250 --> 00:36:49,750 +writer? You go and tell him PR and the print + +551 +00:36:49,750 --> 00:36:52,070 +writer tells you to write on the file as if you + +552 +00:36:52,070 --> 00:36:53,970 +were writing on the screen. You don't have to make + +553 +00:36:53,970 --> 00:36:58,730 +a print lin like system.out. You write the text + +554 +00:36:58,730 --> 00:37:06,580 +you want on the file. For example, when you write + +555 +00:37:06,580 --> 00:37:09,580 +an object file, it will also tell you to create a + +556 +00:37:09,580 --> 00:37:11,920 +file output stream, then create an object output + +557 +00:37:11,920 --> 00:37:14,900 +stream, connect it to the output stream, and write + +558 +00:37:14,900 --> 00:37:17,120 +a write object. It will take the object that you + +559 +00:37:17,120 --> 00:37:19,640 +created, for example, a student or a course, and + +560 +00:37:19,640 --> 00:37:25,060 +serialize it and write it on the file. Okay, why + +561 +00:37:25,060 --> 00:37:26,800 +did we do it this way? They used to say, okay, do + +562 +00:37:26,800 --> 00:37:29,780 +it this way, we want to do it this way. Yes, do it + +563 +00:37:29,780 --> 00:37:31,540 +this way and connect it to this way, and it turns + +564 +00:37:31,540 --> 00:37:34,670 +out this way.Okay? So why did they do it this way? + +565 +00:37:34,950 --> 00:37:37,390 +And why do you connect this with this? Okay? Pay + +566 +00:37:37,390 --> 00:37:40,910 +attention to me. In Java, we have different types + +567 +00:37:40,910 --> 00:37:45,070 +of output streams. Okay? For example, we have a + +568 +00:37:45,070 --> 00:37:46,190 +file output stream. + +569 +00:37:50,030 --> 00:37:53,290 +Which is what is in her hand to write on the file. + +570 +00:37:53,590 --> 00:37:55,770 +Binary data is written on the file. And for + +571 +00:37:55,770 --> 00:37:57,450 +example, we have a socket output stream. + +572 +00:38:02,700 --> 00:38:05,080 +What is it for? To write on the network. You give + +573 +00:38:05,080 --> 00:38:07,200 +it a specific IP and it writes on the network. You + +574 +00:38:07,200 --> 00:38:10,360 +can make a chat program on another device or send + +575 +00:38:10,360 --> 00:38:12,660 +files to another device. You use the output stream + +576 +00:38:12,660 --> 00:38:14,320 +socket. This is written on the file and this is + +577 +00:38:14,320 --> 00:38:17,160 +written on the socket. And there are other types + +578 +00:38:17,160 --> 00:38:19,100 +of output streams. I did not bring them with me + +579 +00:38:19,100 --> 00:38:23,180 +this time. Now, all of these are output streams. + +580 +00:38:23,800 --> 00:38:25,480 +Actually, when you want to write data on them, you + +581 +00:38:25,480 --> 00:38:26,940 +want to write the data in binary data. That is, + +582 +00:38:26,940 --> 00:38:28,300 +you want to send a string, you have to turn the + +583 +00:38:28,300 --> 00:38:32,630 +string into characters and binary and a story.So I + +584 +00:38:32,630 --> 00:38:34,770 +found that they made it easy for us, they let us + +585 +00:38:34,770 --> 00:38:36,950 +say whatever output stream you have, whatever you + +586 +00:38:36,950 --> 00:38:38,390 +send to the network, whatever you send to files, + +587 +00:38:38,530 --> 00:38:39,250 +whatever you send to whatever you send to whatever + +588 +00:38:39,250 --> 00:38:40,590 +you send to whatever you send to whatever you send + +589 +00:38:40,590 --> 00:38:40,650 +to whatever you send to whatever you send to + +590 +00:38:40,650 --> 00:38:40,710 +whatever you send to whatever you send to whatever + +591 +00:38:40,710 --> 00:38:40,730 +you send to whatever you send to whatever you send + +592 +00:38:40,730 --> 00:38:40,870 +to whatever you send to whatever you send to + +593 +00:38:40,870 --> 00:38:41,010 +whatever you send to whatever you send to whatever + +594 +00:38:41,010 --> 00:38:42,150 +you send to whatever you send to whatever you send + +595 +00:38:42,150 --> 00:38:42,390 +to whatever you send to whatever you send to + +596 +00:38:42,390 --> 00:38:42,690 +you send to whatever you send to whatever you send + +597 +00:38:42,690 --> 00:38:43,090 +to whatever you send to whatever you send to + +598 +00:38:43,090 --> 00:38:44,010 +whatever you send to whatever you send to whatever + +599 +00:38:44,010 --> 00:38:44,170 +you send to whatever you send to whatever you send + +600 +00:38:44,170 --> 00:38:44,190 +to whatever you send to whatever you send to + +601 +00:38:44,190 --> 00:38:44,990 +to whatever you send to whatever you send to + +602 +00:38:44,990 --> 00:38:45,530 +whatever you send to whatever you send to whatever + +603 +00:38:45,530 --> 00:38:50,890 +you send to whatever you send to whatever + +604 +00:38:50,890 --> 00:38:55,190 +you send to whatever youSimple, how do we do it? + +605 +00:38:55,330 --> 00:38:59,190 +We go to the file output stream and make an extend + +606 +00:38:59,190 --> 00:39:05,810 +to a new class called string writing file output + +607 +00:39:05,810 --> 00:39:13,270 +stream and make an extend to this new class and + +608 +00:39:13,270 --> 00:39:19,390 +make a method called printlnthis is where I made + +609 +00:39:19,390 --> 00:39:21,950 +this method, it takes a string where did I make + +610 +00:39:21,950 --> 00:39:25,210 +this method? in the new class, in the subclass on + +611 +00:39:25,210 --> 00:39:28,210 +the basis that in the print string it takes the + +612 +00:39:28,210 --> 00:39:31,030 +string and converts it to binary and prepares it + +613 +00:39:31,030 --> 00:39:39,530 +as a byte array and calls super.writeBytes + +614 +00:39:39,530 --> 00:39:43,670 +for example there + +615 +00:39:43,670 --> 00:39:47,810 +is a new feature that I added to the subclassOf + +616 +00:39:47,810 --> 00:39:49,690 +course, if I want to write on a file, I don't need + +617 +00:39:49,690 --> 00:39:52,130 +to create an object from it. I need to create an + +618 +00:39:52,130 --> 00:39:55,510 +object from the subclass and use it. And we live + +619 +00:39:55,510 --> 00:39:59,250 +our life happily. But wait, we have ten other + +620 +00:39:59,250 --> 00:40:02,230 +output streams. So you will have to go to the + +621 +00:40:02,230 --> 00:40:05,110 +output stream socket and create a new subclass and + +622 +00:40:05,110 --> 00:40:08,790 +class, and create a print method in it, take a + +623 +00:40:08,790 --> 00:40:12,070 +string, and do the same conversion process, and + +624 +00:40:12,070 --> 00:40:12,910 +then say super, + +625 +00:40:16,330 --> 00:40:19,850 +.WriteBytesToSocket() which is the method here or + +626 +00:40:19,850 --> 00:40:23,090 +write bytes and give it to it to add the same + +627 +00:40:23,090 --> 00:40:27,950 +feature to this one I had to do subclasses if I + +628 +00:40:27,950 --> 00:40:29,530 +have ten output streams and this is what exists, + +629 +00:40:29,730 --> 00:40:31,570 +types of output streams, there is a buffered + +630 +00:40:31,570 --> 00:40:35,650 +output stream written on the memory each one has + +631 +00:40:35,650 --> 00:40:39,690 +to do what? extend to add a new feature what is + +632 +00:40:39,690 --> 00:40:43,100 +this story? every time I have an output streamAnd + +633 +00:40:43,100 --> 00:40:44,940 +in order to support her writing a string, I wanted + +634 +00:40:44,940 --> 00:40:47,260 +to extend it to a new class to add this feature, + +635 +00:40:47,720 --> 00:40:50,480 +and she said, no, we let you go She said, instead + +636 +00:40:50,480 --> 00:40:53,180 +of making this class, and this class, and this + +637 +00:40:53,180 --> 00:40:59,400 +class, we made one class, all of them with the + +638 +00:40:59,400 --> 00:41:02,780 +name PrintWriter + +639 +00:41:05,430 --> 00:41:07,670 +Okay? How did they design this print writer? + +640 +00:41:09,430 --> 00:41:12,270 +Inside it, it is wrapped with an object of the + +641 +00:41:12,270 --> 00:41:15,070 +type of output stream. + +642 +00:41:16,590 --> 00:41:23,130 +Just like we wrapped the circle or the shape, we + +643 +00:41:23,130 --> 00:41:27,130 +wrapped it with what? With a border. The output + +644 +00:41:27,130 --> 00:41:30,870 +stream was wrapped with what? Yes, with a print + +645 +00:41:30,870 --> 00:41:34,570 +writer.And of course, he made a constructor. I'm + +646 +00:41:34,570 --> 00:41:38,070 +sitting in this gate. Imagine how the print writer + +647 +00:41:38,070 --> 00:41:39,630 +looks like. He made a constructor called + +648 +00:41:39,630 --> 00:41:42,050 +printWriter. + +649 +00:41:42,910 --> 00:41:47,370 +It takes an object from it and outputs a stream, + +650 +00:41:47,590 --> 00:41:51,070 +which is OOS. To initialize to whom? To the OOS + +651 +00:41:51,070 --> 00:41:56,470 +here. Okay? And then he made a new method. Here, + +652 +00:41:56,670 --> 00:42:01,370 +public, void for example. Its name is printLin. + +653 +00:42:02,930 --> 00:42:07,750 +Okay? This thing takes a string. It needs to add a + +654 +00:42:07,750 --> 00:42:10,670 +new property that takes the string and converts it + +655 +00:42:10,670 --> 00:42:13,870 +to binary data and then comes to the output stream + +656 +00:42:13,870 --> 00:42:17,430 +and tells it to write bytes. + +657 +00:42:21,490 --> 00:42:24,630 +Am I right or not, guys? In this class, the output + +658 +00:42:24,630 --> 00:42:26,610 +stream is enclosed. What is the advantage of this + +659 +00:42:26,610 --> 00:42:29,030 +method? Because this output stream is the + +660 +00:42:29,030 --> 00:42:34,070 +interface for whom? All their fathers.You can + +661 +00:42:34,070 --> 00:42:36,950 +create an object from the print writer and send it + +662 +00:42:36,950 --> 00:42:40,530 +a file output stream, socket output stream, + +663 +00:42:41,190 --> 00:42:44,130 +buffered output stream, whatever output stream. + +664 +00:42:45,070 --> 00:42:49,410 +And all of them execute a print train. This gives + +665 +00:42:49,410 --> 00:42:51,970 +you a new feature, which is the ability to write + +666 +00:42:51,970 --> 00:42:54,890 +texts on the output stream regardless of the type + +667 +00:42:54,890 --> 00:42:59,590 +of output stream. This means that this print + +668 +00:42:59,590 --> 00:43:05,080 +writer is a wrapperto the output stream to add to + +669 +00:43:05,080 --> 00:43:09,180 +it the ability to write texts. Why did they do it + +670 +00:43:09,180 --> 00:43:10,580 +this way? They used to tell you to memorize it + +671 +00:43:10,580 --> 00:43:13,620 +this way. Why? That's it. Make a file output + +672 +00:43:13,620 --> 00:43:15,940 +stream and make a print writer and pass this to + +673 +00:43:15,940 --> 00:43:19,780 +this. Actually, this is an addition of a feature + +674 +00:43:19,780 --> 00:43:23,960 +to whom? To the object that you pass here. Without + +675 +00:43:23,960 --> 00:43:27,580 +this method, I had to add this feature to make a + +676 +00:43:27,580 --> 00:43:30,690 +subclass for eachoutput stream is present on it. + +677 +00:43:31,270 --> 00:43:35,030 +So this is really an application for whom? For the + +678 +00:43:35,030 --> 00:43:37,490 +decorator. Any output stream that connects them + +679 +00:43:37,490 --> 00:43:40,030 +together, and in reading too, connects them + +680 +00:43:40,030 --> 00:43:41,970 +together, this is all an application for whom, + +681 +00:43:42,050 --> 00:43:44,930 +guys? For the decorator. It connects together and + +682 +00:43:44,930 --> 00:43:47,930 +you don't know what it is. No, did you get the + +683 +00:43:47,930 --> 00:43:50,510 +idea that this is an application for whom? For the + +684 +00:43:50,510 --> 00:43:54,310 +decorator. And we understood why they did that. I + +685 +00:43:54,310 --> 00:43:56,150 +could also tell you to make an object out of this + +686 +00:43:56,150 --> 00:43:59,370 +class and write on it.So why do I connect this + +687 +00:43:59,370 --> 00:44:02,650 +with this with this? To add new features to each + +688 +00:44:02,650 --> 00:44:05,610 +existing object. Because without this, it would + +689 +00:44:05,610 --> 00:44:10,050 +have to appear in a large number of subclasses. + +690 +00:44:10,950 --> 00:44:14,410 +Another example, in the java.fx that you use, I'm + +691 +00:44:14,410 --> 00:44:16,430 +sure you've taken it. What's the name of the text + +692 +00:44:16,430 --> 00:44:19,930 +area? Text area, and there's a text field, and + +693 +00:44:19,930 --> 00:44:21,390 +there's a tab, and there's I don't know what. + +694 +00:44:21,910 --> 00:44:25,130 +You'd like to add a border to any of these. Has + +695 +00:44:25,130 --> 00:44:27,910 +anyone tried to add a border to the text area in + +696 +00:44:27,910 --> 00:44:34,230 +java.fx? No, there is a class called border, + +697 +00:44:35,090 --> 00:44:39,130 +scroll type, scroll pane, there is scroll for + +698 +00:44:39,130 --> 00:44:43,830 +shapes I will go back to java swing, the swing + +699 +00:44:43,830 --> 00:44:49,710 +library, for example we have scroll paneIt means + +700 +00:44:49,710 --> 00:44:52,590 +you have to add to any scroll shape, create an + +701 +00:44:52,590 --> 00:44:55,010 +object of the type of scroll pane and give it the + +702 +00:44:55,010 --> 00:44:59,350 +shape you want. You add the scroll to it. This is + +703 +00:44:59,350 --> 00:45:02,470 +instead of going to every class and extend it to + +704 +00:45:02,470 --> 00:45:05,650 +add a scroll to the specific shape. This is also + +705 +00:45:05,650 --> 00:45:08,890 +an application for the border, for the decorator + +706 +00:45:08,890 --> 00:45:14,260 +pattern.Okay guys, there are two ways to add new + +707 +00:45:14,260 --> 00:45:17,800 +features, either subclassing or decorator The + +708 +00:45:17,800 --> 00:45:21,620 +original is always to use subclassing, because I + +709 +00:45:21,620 --> 00:45:24,730 +don't need to write what's already thereBut if the + +710 +00:45:24,730 --> 00:45:27,990 +result of using subclassing is a lot of classes, + +711 +00:45:28,070 --> 00:45:30,570 +like the examples we saw earlier, I prefer to use + +712 +00:45:30,570 --> 00:45:33,150 +the decorator which is a class that encloses + +713 +00:45:33,150 --> 00:45:35,570 +another class to add additional features to it. + +714 +00:45:35,770 --> 00:45:38,250 +Like when we made a circle and enclosed it with a + +715 +00:45:38,250 --> 00:45:41,370 +border, or a rectangle and enclosed it with a + +716 +00:45:41,370 --> 00:45:44,230 +border as well. I have ten shapes and I make one + +717 +00:45:44,230 --> 00:45:46,130 +class to add the feature, instead of having to + +718 +00:45:46,130 --> 00:45:49,370 +make ten classes for ten shapes, and this is the + +719 +00:45:49,370 --> 00:45:52,760 +idea of the decorator pattern.We took an example + +720 +00:45:52,760 --> 00:45:54,100 +today to clarify the decorator. In the next + +721 +00:45:54,100 --> 00:45:57,420 +lecture, we will read what is in the slides, see + +722 +00:45:57,420 --> 00:46:00,140 +the UML diagram of the decorator and see another + +723 +00:46:00,140 --> 00:46:01,580 +example, God willing, and God bless you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Sber64Sc7AI_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Sber64Sc7AI_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..05e399e7fb266d5f7c22bc42d3a24fc891cb0c53 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Sber64Sc7AI_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 1868, "start": 5.08, "end": 18.68, "text": " Ok guys, peace be upon you. In the last lecture, we started with the first or the last group of design patterns which are structural design patterns and we took from them two design patterns. One of them is called Corruption.", "tokens": [3477, 1074, 11, 4336, 312, 3564, 291, 13, 682, 264, 1036, 7991, 11, 321, 1409, 365, 264, 700, 420, 264, 1036, 1594, 295, 1715, 8294, 597, 366, 15067, 1715, 8294, 293, 321, 1890, 490, 552, 732, 1715, 8294, 13, 1485, 295, 552, 307, 1219, 3925, 11266, 13], "avg_logprob": -0.4996744506061077, "compression_ratio": 1.5586206896551724, "no_speech_prob": 8.344650268554688e-06, "words": [{"start": 5.08, "end": 5.36, "word": " Ok", "probability": 0.1982421875}, {"start": 5.36, "end": 5.58, "word": " guys,", "probability": 0.5556640625}, {"start": 5.62, "end": 5.82, "word": " peace", "probability": 0.1956787109375}, {"start": 5.82, "end": 6.0, "word": " be", "probability": 0.88525390625}, {"start": 6.0, "end": 6.0, "word": " upon", "probability": 0.904296875}, {"start": 6.0, "end": 6.28, "word": " you.", "probability": 0.97412109375}, {"start": 7.0, "end": 7.52, "word": " In", "probability": 0.82421875}, {"start": 7.52, "end": 7.6, "word": " the", "probability": 0.77001953125}, {"start": 7.6, "end": 7.74, "word": " last", "probability": 0.480712890625}, {"start": 7.74, "end": 8.22, "word": " lecture,", "probability": 0.76025390625}, {"start": 8.4, "end": 8.66, "word": " we", "probability": 0.64990234375}, {"start": 8.66, "end": 8.92, "word": " started", "probability": 0.73583984375}, {"start": 8.92, "end": 9.06, "word": " with", "probability": 0.55078125}, {"start": 9.06, "end": 9.24, "word": " the", "probability": 0.65869140625}, {"start": 9.24, "end": 9.3, "word": " first", "probability": 0.40576171875}, {"start": 9.3, "end": 9.82, "word": " or", "probability": 0.6484375}, {"start": 9.82, "end": 10.14, "word": " the", "probability": 0.6767578125}, {"start": 10.14, "end": 10.2, "word": " last", "probability": 0.7685546875}, {"start": 10.2, "end": 10.84, "word": " group", "probability": 0.72509765625}, {"start": 10.84, "end": 11.1, "word": " of", "probability": 0.8017578125}, {"start": 11.1, "end": 11.44, "word": " design", "probability": 0.6669921875}, {"start": 11.44, "end": 11.86, "word": " patterns", "probability": 0.8642578125}, {"start": 11.86, "end": 12.04, "word": " which", "probability": 0.50390625}, {"start": 12.04, "end": 12.76, "word": " are", "probability": 0.5126953125}, {"start": 12.76, "end": 13.24, "word": " structural", "probability": 0.8251953125}, {"start": 13.24, "end": 13.66, "word": " design", "probability": 0.892578125}, {"start": 13.66, "end": 14.02, "word": " patterns", "probability": 0.8994140625}, {"start": 14.02, "end": 14.1, "word": " and", "probability": 0.59765625}, {"start": 14.1, "end": 14.2, "word": " we", "probability": 0.78515625}, {"start": 14.2, "end": 14.34, "word": " took", "probability": 0.69287109375}, {"start": 14.34, "end": 14.46, "word": " from", "probability": 0.3427734375}, {"start": 14.46, "end": 14.62, "word": " them", "probability": 0.8583984375}, {"start": 14.62, "end": 14.86, "word": " two", "probability": 0.74853515625}, {"start": 14.86, "end": 15.2, "word": " design", "probability": 0.95556640625}, {"start": 15.2, "end": 15.68, "word": " patterns.", "probability": 0.888671875}, {"start": 16.2, "end": 16.58, "word": " One", "probability": 0.705078125}, {"start": 16.58, "end": 16.9, "word": " of", "probability": 0.293701171875}, {"start": 16.9, "end": 17.58, "word": " them", "probability": 0.7490234375}, {"start": 17.58, "end": 17.88, "word": " is", "probability": 0.86328125}, {"start": 17.88, "end": 18.06, "word": " called", "probability": 0.73291015625}, {"start": 18.06, "end": 18.68, "word": " Corruption.", "probability": 0.658203125}], "temperature": 1.0}, {"id": 2, "seek": 4230, "start": 20.42, "end": 42.3, "text": " is to provide a simple interface to use parts of your system so that you don't involve the developer who will use your library to implement many steps or know the details of parts of your system and what are the subsystems and the relationship between them make it easy for him to provide him a simple method, a simple interface through which he can implement", "tokens": [307, 281, 2893, 257, 2199, 9226, 281, 764, 3166, 295, 428, 1185, 370, 300, 291, 500, 380, 9494, 264, 10754, 567, 486, 764, 428, 6405, 281, 4445, 867, 4439, 420, 458, 264, 4365, 295, 3166, 295, 428, 1185, 293, 437, 366, 264, 2090, 9321, 82, 293, 264, 2480, 1296, 552, 652, 309, 1858, 337, 796, 281, 2893, 796, 257, 2199, 3170, 11, 257, 2199, 9226, 807, 597, 415, 393, 4445], "avg_logprob": -0.49515844230920497, "compression_ratio": 1.8274111675126903, "no_speech_prob": 3.4809112548828125e-05, "words": [{"start": 20.42, "end": 20.62, "word": " is", "probability": 0.061981201171875}, {"start": 20.62, "end": 20.82, "word": " to", "probability": 0.654296875}, {"start": 20.82, "end": 21.16, "word": " provide", "probability": 0.32275390625}, {"start": 21.16, "end": 21.58, "word": " a", "probability": 0.70849609375}, {"start": 21.58, "end": 21.9, "word": " simple", "probability": 0.6328125}, {"start": 21.9, "end": 21.9, "word": " interface", "probability": 0.82080078125}, {"start": 21.9, "end": 22.84, "word": " to", "probability": 0.466796875}, {"start": 22.84, "end": 23.22, "word": " use", "probability": 0.640625}, {"start": 23.22, "end": 23.7, "word": " parts", "probability": 0.1966552734375}, {"start": 23.7, "end": 23.8, "word": " of", "probability": 0.962890625}, {"start": 23.8, "end": 24.42, "word": " your", "probability": 0.779296875}, {"start": 24.42, "end": 24.42, "word": " system", "probability": 0.71044921875}, {"start": 24.42, "end": 24.7, "word": " so", "probability": 0.2900390625}, {"start": 24.7, "end": 24.94, "word": " that", "probability": 0.70263671875}, {"start": 24.94, "end": 25.1, "word": " you", "probability": 0.60693359375}, {"start": 25.1, "end": 25.22, "word": " don't", "probability": 0.724365234375}, {"start": 25.22, "end": 25.64, "word": " involve", "probability": 0.2464599609375}, {"start": 25.64, "end": 26.22, "word": " the", "probability": 0.587890625}, {"start": 26.22, "end": 26.78, "word": " developer", "probability": 0.7607421875}, {"start": 26.78, "end": 27.4, "word": " who", "probability": 0.541015625}, {"start": 27.4, "end": 27.54, "word": " will", "probability": 0.564453125}, {"start": 27.54, "end": 27.88, "word": " use", "probability": 0.84619140625}, {"start": 27.88, "end": 28.02, "word": " your", "probability": 0.83837890625}, {"start": 28.02, "end": 28.4, "word": " library", "probability": 0.55029296875}, {"start": 28.4, "end": 28.84, "word": " to", "probability": 0.90478515625}, {"start": 28.84, "end": 29.14, "word": " implement", "probability": 0.322265625}, {"start": 29.14, "end": 29.24, "word": " many", "probability": 0.60302734375}, {"start": 29.24, "end": 29.68, "word": " steps", "probability": 0.83154296875}, {"start": 29.68, "end": 30.68, "word": " or", "probability": 0.8369140625}, {"start": 30.68, "end": 30.94, "word": " know", "probability": 0.384521484375}, {"start": 30.94, "end": 31.52, "word": " the", "probability": 0.319091796875}, {"start": 31.52, "end": 31.52, "word": " details", "probability": 0.7958984375}, {"start": 31.52, "end": 31.66, "word": " of", "probability": 0.6142578125}, {"start": 31.66, "end": 32.04, "word": " parts", "probability": 0.35205078125}, {"start": 32.04, "end": 32.28, "word": " of", "probability": 0.92529296875}, {"start": 32.28, "end": 32.7, "word": " your", "probability": 0.8232421875}, {"start": 32.7, "end": 33.58, "word": " system", "probability": 0.9267578125}, {"start": 33.58, "end": 34.02, "word": " and", "probability": 0.52587890625}, {"start": 34.02, "end": 34.14, "word": " what", "probability": 0.33349609375}, {"start": 34.14, "end": 34.22, "word": " are", "probability": 0.56103515625}, {"start": 34.22, "end": 34.3, "word": " the", "probability": 0.6259765625}, {"start": 34.3, "end": 35.2, "word": " subsystems", "probability": 0.830078125}, {"start": 35.2, "end": 35.52, "word": " and", "probability": 0.8662109375}, {"start": 35.52, "end": 35.62, "word": " the", "probability": 0.6103515625}, {"start": 35.62, "end": 35.86, "word": " relationship", "probability": 0.75732421875}, {"start": 35.86, "end": 36.06, "word": " between", "probability": 0.87890625}, {"start": 36.06, "end": 36.66, "word": " them", "probability": 0.8828125}, {"start": 36.66, "end": 36.94, "word": " make", "probability": 0.311279296875}, {"start": 36.94, "end": 37.26, "word": " it", "probability": 0.912109375}, {"start": 37.26, "end": 37.26, "word": " easy", "probability": 0.50927734375}, {"start": 37.26, "end": 37.38, "word": " for", "probability": 0.6513671875}, {"start": 37.38, "end": 37.84, "word": " him", "probability": 0.861328125}, {"start": 37.84, "end": 38.02, "word": " to", "probability": 0.5263671875}, {"start": 38.02, "end": 38.28, "word": " provide", "probability": 0.68798828125}, {"start": 38.28, "end": 38.52, "word": " him", "probability": 0.41015625}, {"start": 38.52, "end": 38.9, "word": " a", "probability": 0.70556640625}, {"start": 38.9, "end": 38.9, "word": " simple", "probability": 0.947265625}, {"start": 38.9, "end": 39.44, "word": " method,", "probability": 0.7568359375}, {"start": 39.72, "end": 39.78, "word": " a", "probability": 0.53466796875}, {"start": 39.78, "end": 40.28, "word": " simple", "probability": 0.955078125}, {"start": 40.28, "end": 40.28, "word": " interface", "probability": 0.93408203125}, {"start": 40.28, "end": 40.6, "word": " through", "probability": 0.83056640625}, {"start": 40.6, "end": 41.08, "word": " which", "probability": 0.86474609375}, {"start": 41.08, "end": 41.56, "word": " he", "probability": 0.7900390625}, {"start": 41.56, "end": 41.74, "word": " can", "probability": 0.8310546875}, {"start": 41.74, "end": 42.3, "word": " implement", "probability": 0.6611328125}], "temperature": 1.0}, {"id": 3, "seek": 6341, "start": 43.05, "end": 63.41, "text": " a specific process without knowing the details. The details are hidden in this face. You execute the commands and provide it with a single method to execute the whole process. And this is what we call the facade. The second design pattern is the important design pattern called the adapter. How if I have a system", "tokens": [257, 2685, 1399, 1553, 5276, 264, 4365, 13, 440, 4365, 366, 7633, 294, 341, 1851, 13, 509, 14483, 264, 16901, 293, 2893, 309, 365, 257, 2167, 3170, 281, 14483, 264, 1379, 1399, 13, 400, 341, 307, 437, 321, 818, 264, 283, 326, 762, 13, 440, 1150, 1715, 5102, 307, 264, 1021, 1715, 5102, 1219, 264, 22860, 13, 1012, 498, 286, 362, 257, 1185], "avg_logprob": -0.6113281399011612, "compression_ratio": 1.643979057591623, "no_speech_prob": 7.987022399902344e-06, "words": [{"start": 43.05, "end": 43.19, "word": " a", "probability": 0.128662109375}, {"start": 43.19, "end": 43.73, "word": " specific", "probability": 0.298095703125}, {"start": 43.73, "end": 43.87, "word": " process", "probability": 0.93603515625}, {"start": 43.87, "end": 44.15, "word": " without", "probability": 0.7060546875}, {"start": 44.15, "end": 44.53, "word": " knowing", "probability": 0.60546875}, {"start": 44.53, "end": 44.67, "word": " the", "probability": 0.47314453125}, {"start": 44.67, "end": 45.05, "word": " details.", "probability": 0.703125}, {"start": 45.35, "end": 45.45, "word": " The", "probability": 0.31005859375}, {"start": 45.45, "end": 45.79, "word": " details", "probability": 0.86328125}, {"start": 45.79, "end": 45.91, "word": " are", "probability": 0.332763671875}, {"start": 45.91, "end": 46.15, "word": " hidden", "probability": 0.68408203125}, {"start": 46.15, "end": 46.61, "word": " in", "probability": 0.376708984375}, {"start": 46.61, "end": 47.93, "word": " this", "probability": 0.328369140625}, {"start": 47.93, "end": 48.35, "word": " face.", "probability": 0.2191162109375}, {"start": 49.13, "end": 49.37, "word": " You", "probability": 0.7314453125}, {"start": 49.37, "end": 50.63, "word": " execute", "probability": 0.35205078125}, {"start": 50.63, "end": 50.85, "word": " the", "probability": 0.701171875}, {"start": 50.85, "end": 51.17, "word": " commands", "probability": 0.53515625}, {"start": 51.17, "end": 51.91, "word": " and", "probability": 0.68310546875}, {"start": 51.91, "end": 52.33, "word": " provide", "probability": 0.1700439453125}, {"start": 52.33, "end": 52.47, "word": " it", "probability": 0.1925048828125}, {"start": 52.47, "end": 52.71, "word": " with", "probability": 0.6064453125}, {"start": 52.71, "end": 53.13, "word": " a", "probability": 0.446533203125}, {"start": 53.13, "end": 53.65, "word": " single", "probability": 0.61328125}, {"start": 53.65, "end": 53.65, "word": " method", "probability": 0.92138671875}, {"start": 53.65, "end": 53.99, "word": " to", "probability": 0.59228515625}, {"start": 53.99, "end": 54.27, "word": " execute", "probability": 0.35791015625}, {"start": 54.27, "end": 54.35, "word": " the", "probability": 0.849609375}, {"start": 54.35, "end": 54.39, "word": " whole", "probability": 0.47119140625}, {"start": 54.39, "end": 54.97, "word": " process.", "probability": 0.88916015625}, {"start": 55.75, "end": 55.77, "word": " And", "probability": 0.302734375}, {"start": 55.77, "end": 55.91, "word": " this", "probability": 0.67578125}, {"start": 55.91, "end": 55.99, "word": " is", "probability": 0.89990234375}, {"start": 55.99, "end": 56.15, "word": " what", "probability": 0.69091796875}, {"start": 56.15, "end": 56.65, "word": " we", "probability": 0.92724609375}, {"start": 56.65, "end": 56.83, "word": " call", "probability": 0.71142578125}, {"start": 56.83, "end": 57.31, "word": " the", "probability": 0.2491455078125}, {"start": 57.31, "end": 57.71, "word": " facade.", "probability": 0.5285237630208334}, {"start": 58.53, "end": 58.87, "word": " The", "probability": 0.85986328125}, {"start": 58.87, "end": 59.09, "word": " second", "probability": 0.83544921875}, {"start": 59.09, "end": 59.17, "word": " design", "probability": 0.88671875}, {"start": 59.17, "end": 59.55, "word": " pattern", "probability": 0.9091796875}, {"start": 59.55, "end": 60.03, "word": " is", "probability": 0.81298828125}, {"start": 60.03, "end": 60.19, "word": " the", "probability": 0.498779296875}, {"start": 60.19, "end": 60.21, "word": " important", "probability": 0.52783203125}, {"start": 60.21, "end": 60.39, "word": " design", "probability": 0.6279296875}, {"start": 60.39, "end": 60.99, "word": " pattern", "probability": 0.88037109375}, {"start": 60.99, "end": 61.25, "word": " called", "probability": 0.50537109375}, {"start": 61.25, "end": 61.33, "word": " the", "probability": 0.447265625}, {"start": 61.33, "end": 61.77, "word": " adapter.", "probability": 0.73046875}, {"start": 62.25, "end": 62.49, "word": " How", "probability": 0.43701171875}, {"start": 62.49, "end": 62.65, "word": " if", "probability": 0.50927734375}, {"start": 62.65, "end": 62.83, "word": " I", "probability": 0.96728515625}, {"start": 62.83, "end": 62.99, "word": " have", "probability": 0.93212890625}, {"start": 62.99, "end": 63.15, "word": " a", "probability": 0.9228515625}, {"start": 63.15, "end": 63.41, "word": " system", "probability": 0.88427734375}], "temperature": 1.0}, {"id": 4, "seek": 8376, "start": 64.28, "end": 83.76, "text": "It needs to match with a new office that I want to use I designed the system to use a specific office And I want to remove this office and use a new office instead And this is a scenario that will stay with you all your life That you remove offices and replace them with new ones Is the logical solution to change your entire client application", "tokens": [3522, 2203, 281, 2995, 365, 257, 777, 3398, 300, 286, 528, 281, 764, 286, 4761, 264, 1185, 281, 764, 257, 2685, 3398, 400, 286, 528, 281, 4159, 341, 3398, 293, 764, 257, 777, 3398, 2602, 400, 341, 307, 257, 9005, 300, 486, 1754, 365, 291, 439, 428, 993, 663, 291, 4159, 14434, 293, 7406, 552, 365, 777, 2306, 1119, 264, 14978, 3827, 281, 1319, 428, 2302, 6423, 3861], "avg_logprob": -0.5344203002210977, "compression_ratio": 1.801047120418848, "no_speech_prob": 1.233816146850586e-05, "words": [{"start": 64.28, "end": 64.48, "word": "It", "probability": 0.026763916015625}, {"start": 64.48, "end": 64.66, "word": " needs", "probability": 0.33837890625}, {"start": 64.66, "end": 64.74, "word": " to", "probability": 0.7490234375}, {"start": 64.74, "end": 64.98, "word": " match", "probability": 0.298828125}, {"start": 64.98, "end": 65.74, "word": " with", "probability": 0.62158203125}, {"start": 65.74, "end": 66.2, "word": " a", "probability": 0.6806640625}, {"start": 66.2, "end": 66.28, "word": " new", "probability": 0.83154296875}, {"start": 66.28, "end": 66.5, "word": " office", "probability": 0.46142578125}, {"start": 66.5, "end": 67.02, "word": " that", "probability": 0.2454833984375}, {"start": 67.02, "end": 67.1, "word": " I", "probability": 0.61767578125}, {"start": 67.1, "end": 67.16, "word": " want", "probability": 0.5048828125}, {"start": 67.16, "end": 67.28, "word": " to", "probability": 0.95849609375}, {"start": 67.28, "end": 67.5, "word": " use", "probability": 0.8447265625}, {"start": 67.5, "end": 67.86, "word": " I", "probability": 0.384765625}, {"start": 67.86, "end": 68.42, "word": " designed", "probability": 0.321533203125}, {"start": 68.42, "end": 68.64, "word": " the", "probability": 0.619140625}, {"start": 68.64, "end": 68.86, "word": " system", "probability": 0.87255859375}, {"start": 68.86, "end": 69.04, "word": " to", "probability": 0.59716796875}, {"start": 69.04, "end": 69.36, "word": " use", "probability": 0.72412109375}, {"start": 69.36, "end": 69.48, "word": " a", "probability": 0.7861328125}, {"start": 69.48, "end": 70.06, "word": " specific", "probability": 0.39794921875}, {"start": 70.06, "end": 70.06, "word": " office", "probability": 0.83935546875}, {"start": 70.06, "end": 70.82, "word": " And", "probability": 0.32470703125}, {"start": 70.82, "end": 70.96, "word": " I", "probability": 0.8193359375}, {"start": 70.96, "end": 71.1, "word": " want", "probability": 0.6298828125}, {"start": 71.1, "end": 71.24, "word": " to", "probability": 0.95068359375}, {"start": 71.24, "end": 71.4, "word": " remove", "probability": 0.2105712890625}, {"start": 71.4, "end": 71.56, "word": " this", "probability": 0.673828125}, {"start": 71.56, "end": 71.84, "word": " office", "probability": 0.80517578125}, {"start": 71.84, "end": 72.22, "word": " and", "probability": 0.83837890625}, {"start": 72.22, "end": 72.58, "word": " use", "probability": 0.5654296875}, {"start": 72.58, "end": 72.92, "word": " a", "probability": 0.7763671875}, {"start": 72.92, "end": 72.92, "word": " new", "probability": 0.865234375}, {"start": 72.92, "end": 73.2, "word": " office", "probability": 0.51318359375}, {"start": 73.2, "end": 73.48, "word": " instead", "probability": 0.81103515625}, {"start": 73.48, "end": 74.16, "word": " And", "probability": 0.54736328125}, {"start": 74.16, "end": 74.42, "word": " this", "probability": 0.85400390625}, {"start": 74.42, "end": 74.5, "word": " is", "probability": 0.467041015625}, {"start": 74.5, "end": 74.56, "word": " a", "probability": 0.8642578125}, {"start": 74.56, "end": 74.94, "word": " scenario", "probability": 0.880859375}, {"start": 74.94, "end": 75.16, "word": " that", "probability": 0.841796875}, {"start": 75.16, "end": 75.24, "word": " will", "probability": 0.73681640625}, {"start": 75.24, "end": 75.4, "word": " stay", "probability": 0.485107421875}, {"start": 75.4, "end": 75.54, "word": " with", "probability": 0.865234375}, {"start": 75.54, "end": 75.66, "word": " you", "probability": 0.9521484375}, {"start": 75.66, "end": 75.76, "word": " all", "probability": 0.44482421875}, {"start": 75.76, "end": 75.86, "word": " your", "probability": 0.8837890625}, {"start": 75.86, "end": 76.18, "word": " life", "probability": 0.92822265625}, {"start": 76.18, "end": 76.6, "word": " That", "probability": 0.283203125}, {"start": 76.6, "end": 76.8, "word": " you", "probability": 0.95361328125}, {"start": 76.8, "end": 76.98, "word": " remove", "probability": 0.72314453125}, {"start": 76.98, "end": 77.4, "word": " offices", "probability": 0.58984375}, {"start": 77.4, "end": 77.54, "word": " and", "probability": 0.9130859375}, {"start": 77.54, "end": 77.72, "word": " replace", "probability": 0.2220458984375}, {"start": 77.72, "end": 78.2, "word": " them", "probability": 0.55517578125}, {"start": 78.2, "end": 78.2, "word": " with", "probability": 0.45263671875}, {"start": 78.2, "end": 79.04, "word": " new", "probability": 0.578125}, {"start": 79.04, "end": 80.12, "word": " ones", "probability": 0.59619140625}, {"start": 80.12, "end": 80.32, "word": " Is", "probability": 0.76904296875}, {"start": 80.32, "end": 80.8, "word": " the", "probability": 0.47607421875}, {"start": 80.8, "end": 81.68, "word": " logical", "probability": 0.358642578125}, {"start": 81.68, "end": 81.76, "word": " solution", "probability": 0.884765625}, {"start": 81.76, "end": 81.94, "word": " to", "probability": 0.64111328125}, {"start": 81.94, "end": 82.5, "word": " change", "probability": 0.583984375}, {"start": 82.5, "end": 82.74, "word": " your", "probability": 0.54833984375}, {"start": 82.74, "end": 82.78, "word": " entire", "probability": 0.5693359375}, {"start": 82.78, "end": 83.08, "word": " client", "probability": 0.8583984375}, {"start": 83.08, "end": 83.76, "word": " application", "probability": 0.9287109375}], "temperature": 1.0}, {"id": 5, "seek": 11279, "start": 85.13, "end": 112.79, "text": " that every call to the new office becomes a call to the old office becomes a call to the new office? No, this is not going to work. Make an adapter so that the client makes a call to the adapter and the adapter inside turns into a call to the new office. A third office is created after that. You only make a new adapter. The program sends to the adapter and the adapter turns into the third office.", "tokens": [300, 633, 818, 281, 264, 777, 3398, 3643, 257, 818, 281, 264, 1331, 3398, 3643, 257, 818, 281, 264, 777, 3398, 30, 883, 11, 341, 307, 406, 516, 281, 589, 13, 4387, 364, 22860, 370, 300, 264, 6423, 1669, 257, 818, 281, 264, 22860, 293, 264, 22860, 1854, 4523, 666, 257, 818, 281, 264, 777, 3398, 13, 316, 2636, 3398, 307, 2942, 934, 300, 13, 509, 787, 652, 257, 777, 22860, 13, 440, 1461, 14790, 281, 264, 22860, 293, 264, 22860, 4523, 666, 264, 2636, 3398, 13], "avg_logprob": -0.4968039718541232, "compression_ratio": 2.1390374331550803, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 85.13, "end": 85.41, "word": " that", "probability": 0.09149169921875}, {"start": 85.41, "end": 85.89, "word": " every", "probability": 0.423828125}, {"start": 85.89, "end": 86.73, "word": " call", "probability": 0.505859375}, {"start": 86.73, "end": 87.01, "word": " to", "probability": 0.26025390625}, {"start": 87.01, "end": 87.67, "word": " the", "probability": 0.705078125}, {"start": 87.67, "end": 88.35, "word": " new", "probability": 0.67138671875}, {"start": 88.35, "end": 88.39, "word": " office", "probability": 0.376708984375}, {"start": 88.39, "end": 88.87, "word": " becomes", "probability": 0.10748291015625}, {"start": 88.87, "end": 89.25, "word": " a", "probability": 0.79931640625}, {"start": 89.25, "end": 89.51, "word": " call", "probability": 0.810546875}, {"start": 89.51, "end": 89.65, "word": " to", "probability": 0.9345703125}, {"start": 89.65, "end": 89.73, "word": " the", "probability": 0.87939453125}, {"start": 89.73, "end": 89.83, "word": " old", "probability": 0.7978515625}, {"start": 89.83, "end": 91.05, "word": " office", "probability": 0.58056640625}, {"start": 91.05, "end": 91.27, "word": " becomes", "probability": 0.330078125}, {"start": 91.27, "end": 91.55, "word": " a", "probability": 0.9638671875}, {"start": 91.55, "end": 91.71, "word": " call", "probability": 0.87255859375}, {"start": 91.71, "end": 91.79, "word": " to", "probability": 0.96484375}, {"start": 91.79, "end": 91.87, "word": " the", "probability": 0.90576171875}, {"start": 91.87, "end": 91.89, "word": " new", "probability": 0.90673828125}, {"start": 91.89, "end": 92.51, "word": " office?", "probability": 0.8125}, {"start": 92.77, "end": 93.27, "word": " No,", "probability": 0.7548828125}, {"start": 93.39, "end": 93.55, "word": " this", "probability": 0.33251953125}, {"start": 93.55, "end": 93.73, "word": " is", "probability": 0.231689453125}, {"start": 93.73, "end": 93.83, "word": " not", "probability": 0.87060546875}, {"start": 93.83, "end": 94.01, "word": " going", "probability": 0.38623046875}, {"start": 94.01, "end": 94.07, "word": " to", "probability": 0.96875}, {"start": 94.07, "end": 94.37, "word": " work.", "probability": 0.436767578125}, {"start": 95.13, "end": 95.33, "word": " Make", "probability": 0.391845703125}, {"start": 95.33, "end": 95.49, "word": " an", "probability": 0.8525390625}, {"start": 95.49, "end": 95.91, "word": " adapter", "probability": 0.80029296875}, {"start": 95.91, "end": 98.43, "word": " so", "probability": 0.256591796875}, {"start": 98.43, "end": 98.83, "word": " that", "probability": 0.873046875}, {"start": 98.83, "end": 98.97, "word": " the", "probability": 0.85498046875}, {"start": 98.97, "end": 99.33, "word": " client", "probability": 0.89501953125}, {"start": 99.33, "end": 99.59, "word": " makes", "probability": 0.5498046875}, {"start": 99.59, "end": 99.79, "word": " a", "probability": 0.91650390625}, {"start": 99.79, "end": 99.93, "word": " call", "probability": 0.875}, {"start": 99.93, "end": 100.03, "word": " to", "probability": 0.9599609375}, {"start": 100.03, "end": 100.11, "word": " the", "probability": 0.90869140625}, {"start": 100.11, "end": 100.49, "word": " adapter", "probability": 0.8818359375}, {"start": 100.49, "end": 101.09, "word": " and", "probability": 0.76025390625}, {"start": 101.09, "end": 101.19, "word": " the", "probability": 0.765625}, {"start": 101.19, "end": 101.57, "word": " adapter", "probability": 0.9248046875}, {"start": 101.57, "end": 101.93, "word": " inside", "probability": 0.349853515625}, {"start": 101.93, "end": 102.21, "word": " turns", "probability": 0.344970703125}, {"start": 102.21, "end": 102.59, "word": " into", "probability": 0.41552734375}, {"start": 102.59, "end": 102.63, "word": " a", "probability": 0.88232421875}, {"start": 102.63, "end": 102.77, "word": " call", "probability": 0.8349609375}, {"start": 102.77, "end": 102.89, "word": " to", "probability": 0.95166015625}, {"start": 102.89, "end": 102.95, "word": " the", "probability": 0.89111328125}, {"start": 102.95, "end": 104.37, "word": " new", "probability": 0.9033203125}, {"start": 104.37, "end": 104.37, "word": " office.", "probability": 0.849609375}, {"start": 105.11, "end": 105.43, "word": " A", "probability": 0.409423828125}, {"start": 105.43, "end": 105.47, "word": " third", "probability": 0.88037109375}, {"start": 105.47, "end": 105.79, "word": " office", "probability": 0.8330078125}, {"start": 105.79, "end": 106.13, "word": " is", "probability": 0.23828125}, {"start": 106.13, "end": 106.13, "word": " created", "probability": 0.57958984375}, {"start": 106.13, "end": 106.33, "word": " after", "probability": 0.272216796875}, {"start": 106.33, "end": 106.67, "word": " that.", "probability": 0.572265625}, {"start": 107.03, "end": 107.27, "word": " You", "probability": 0.446533203125}, {"start": 107.27, "end": 107.33, "word": " only", "probability": 0.380615234375}, {"start": 107.33, "end": 107.49, "word": " make", "probability": 0.51806640625}, {"start": 107.49, "end": 107.73, "word": " a", "probability": 0.89013671875}, {"start": 107.73, "end": 107.73, "word": " new", "probability": 0.91845703125}, {"start": 107.73, "end": 108.05, "word": " adapter.", "probability": 0.87255859375}, {"start": 109.59, "end": 109.69, "word": " The", "probability": 0.87158203125}, {"start": 109.69, "end": 109.97, "word": " program", "probability": 0.62890625}, {"start": 109.97, "end": 110.77, "word": " sends", "probability": 0.79052734375}, {"start": 110.77, "end": 110.95, "word": " to", "probability": 0.23828125}, {"start": 110.95, "end": 110.99, "word": " the", "probability": 0.86865234375}, {"start": 110.99, "end": 111.35, "word": " adapter", "probability": 0.8447265625}, {"start": 111.35, "end": 111.51, "word": " and", "probability": 0.76806640625}, {"start": 111.51, "end": 111.63, "word": " the", "probability": 0.853515625}, {"start": 111.63, "end": 111.89, "word": " adapter", "probability": 0.89208984375}, {"start": 111.89, "end": 112.29, "word": " turns", "probability": 0.6513671875}, {"start": 112.29, "end": 112.47, "word": " into", "probability": 0.55224609375}, {"start": 112.47, "end": 112.55, "word": " the", "probability": 0.278564453125}, {"start": 112.55, "end": 112.79, "word": " third", "probability": 0.833984375}, {"start": 112.79, "end": 112.79, "word": " office.", "probability": 0.884765625}], "temperature": 1.0}, {"id": 6, "seek": 14379, "start": 114.23, "end": 143.79, "text": " So your client will be static and will only send request to adapters and adapters will transform it to new folders So your application will remain as it is All you need to do is to create a new adapter when you get a new library Today we will take a third design pattern which is also one of the most important design patterns It's called Decorator Design Pattern Decorator means that it adds decor", "tokens": [407, 428, 6423, 486, 312, 13437, 293, 486, 787, 2845, 5308, 281, 23169, 1559, 293, 23169, 1559, 486, 4088, 309, 281, 777, 31082, 407, 428, 3861, 486, 6222, 382, 309, 307, 1057, 291, 643, 281, 360, 307, 281, 1884, 257, 777, 22860, 562, 291, 483, 257, 777, 6405, 2692, 321, 486, 747, 257, 2636, 1715, 5102, 597, 307, 611, 472, 295, 264, 881, 1021, 1715, 8294, 467, 311, 1219, 12427, 284, 1639, 12748, 34367, 77, 12427, 284, 1639, 1355, 300, 309, 10860, 7919], "avg_logprob": -0.6082589328289032, "compression_ratio": 1.7347826086956522, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 114.23, "end": 114.71, "word": " So", "probability": 0.277099609375}, {"start": 114.71, "end": 115.09, "word": " your", "probability": 0.466552734375}, {"start": 115.09, "end": 115.55, "word": " client", "probability": 0.67529296875}, {"start": 115.55, "end": 116.11, "word": " will", "probability": 0.326416015625}, {"start": 116.11, "end": 116.75, "word": " be", "probability": 0.2978515625}, {"start": 116.75, "end": 117.19, "word": " static", "probability": 0.13623046875}, {"start": 117.19, "end": 117.37, "word": " and", "probability": 0.311279296875}, {"start": 117.37, "end": 119.03, "word": " will", "probability": 0.30419921875}, {"start": 119.03, "end": 119.07, "word": " only", "probability": 0.448974609375}, {"start": 119.07, "end": 119.25, "word": " send", "probability": 0.74169921875}, {"start": 119.25, "end": 120.21, "word": " request", "probability": 0.439453125}, {"start": 120.21, "end": 120.43, "word": " to", "probability": 0.6005859375}, {"start": 120.43, "end": 121.09, "word": " adapters", "probability": 0.696533203125}, {"start": 121.09, "end": 121.51, "word": " and", "probability": 0.492431640625}, {"start": 121.51, "end": 122.01, "word": " adapters", "probability": 0.6512451171875}, {"start": 122.01, "end": 122.25, "word": " will", "probability": 0.443603515625}, {"start": 122.25, "end": 122.61, "word": " transform", "probability": 0.1749267578125}, {"start": 122.61, "end": 122.73, "word": " it", "probability": 0.2900390625}, {"start": 122.73, "end": 122.99, "word": " to", "probability": 0.57373046875}, {"start": 122.99, "end": 123.37, "word": " new", "probability": 0.279296875}, {"start": 123.37, "end": 123.77, "word": " folders", "probability": 0.26318359375}, {"start": 123.77, "end": 125.21, "word": " So", "probability": 0.319091796875}, {"start": 125.21, "end": 125.69, "word": " your", "probability": 0.61669921875}, {"start": 125.69, "end": 126.29, "word": " application", "probability": 0.74365234375}, {"start": 126.29, "end": 126.81, "word": " will", "probability": 0.78271484375}, {"start": 126.81, "end": 126.81, "word": " remain", "probability": 0.31787109375}, {"start": 126.81, "end": 127.63, "word": " as", "probability": 0.32958984375}, {"start": 127.63, "end": 127.89, "word": " it", "probability": 0.8203125}, {"start": 127.89, "end": 128.01, "word": " is", "probability": 0.6455078125}, {"start": 128.01, "end": 128.35, "word": " All", "probability": 0.39208984375}, {"start": 128.35, "end": 128.51, "word": " you", "probability": 0.92919921875}, {"start": 128.51, "end": 128.83, "word": " need", "probability": 0.65478515625}, {"start": 128.83, "end": 128.95, "word": " to", "probability": 0.90966796875}, {"start": 128.95, "end": 129.09, "word": " do", "probability": 0.9453125}, {"start": 129.09, "end": 129.27, "word": " is", "probability": 0.8876953125}, {"start": 129.27, "end": 129.35, "word": " to", "probability": 0.4404296875}, {"start": 129.35, "end": 129.51, "word": " create", "probability": 0.54296875}, {"start": 129.51, "end": 129.61, "word": " a", "probability": 0.78515625}, {"start": 129.61, "end": 129.61, "word": " new", "probability": 0.91259765625}, {"start": 129.61, "end": 129.99, "word": " adapter", "probability": 0.62841796875}, {"start": 129.99, "end": 130.47, "word": " when", "probability": 0.75439453125}, {"start": 130.47, "end": 130.63, "word": " you", "probability": 0.9384765625}, {"start": 130.63, "end": 130.73, "word": " get", "probability": 0.276611328125}, {"start": 130.73, "end": 130.83, "word": " a", "probability": 0.9287109375}, {"start": 130.83, "end": 132.05, "word": " new", "probability": 0.89794921875}, {"start": 132.05, "end": 132.13, "word": " library", "probability": 0.54296875}, {"start": 132.13, "end": 134.03, "word": " Today", "probability": 0.262939453125}, {"start": 134.03, "end": 134.23, "word": " we", "probability": 0.7578125}, {"start": 134.23, "end": 134.23, "word": " will", "probability": 0.65673828125}, {"start": 134.23, "end": 134.39, "word": " take", "probability": 0.338623046875}, {"start": 134.39, "end": 134.49, "word": " a", "probability": 0.485107421875}, {"start": 134.49, "end": 134.51, "word": " third", "probability": 0.8125}, {"start": 134.51, "end": 134.73, "word": " design", "probability": 0.8525390625}, {"start": 134.73, "end": 135.33, "word": " pattern", "probability": 0.875}, {"start": 135.33, "end": 135.61, "word": " which", "probability": 0.51025390625}, {"start": 135.61, "end": 135.75, "word": " is", "probability": 0.91552734375}, {"start": 135.75, "end": 135.97, "word": " also", "probability": 0.587890625}, {"start": 135.97, "end": 136.11, "word": " one", "probability": 0.497314453125}, {"start": 136.11, "end": 136.19, "word": " of", "probability": 0.96533203125}, {"start": 136.19, "end": 136.27, "word": " the", "probability": 0.89111328125}, {"start": 136.27, "end": 136.51, "word": " most", "probability": 0.4208984375}, {"start": 136.51, "end": 136.51, "word": " important", "probability": 0.85546875}, {"start": 136.51, "end": 136.51, "word": " design", "probability": 0.583984375}, {"start": 136.51, "end": 137.39, "word": " patterns", "probability": 0.84716796875}, {"start": 137.39, "end": 138.13, "word": " It's", "probability": 0.3485107421875}, {"start": 138.13, "end": 138.41, "word": " called", "probability": 0.72265625}, {"start": 138.41, "end": 139.23, "word": " Decorator", "probability": 0.7665201822916666}, {"start": 139.23, "end": 140.13, "word": " Design", "probability": 0.488525390625}, {"start": 140.13, "end": 140.69, "word": " Pattern", "probability": 0.955810546875}, {"start": 140.69, "end": 141.73, "word": " Decorator", "probability": 0.8982747395833334}, {"start": 141.73, "end": 142.27, "word": " means", "probability": 0.68359375}, {"start": 142.27, "end": 142.79, "word": " that", "probability": 0.2384033203125}, {"start": 142.79, "end": 142.93, "word": " it", "probability": 0.2161865234375}, {"start": 142.93, "end": 143.13, "word": " adds", "probability": 0.62841796875}, {"start": 143.13, "end": 143.79, "word": " decor", "probability": 0.269287109375}], "temperature": 1.0}, {"id": 7, "seek": 17156, "start": 144.9, "end": 171.56, "text": "For example, jewellery. We all know what decor means. Okay, let's read the intent and try to understand it. Then, let's look at a practical example to explain what the decorator pattern is and what it means. The intent or the goal of the decorator pattern is to attach additional responsibilities to an object dynamically. To add new characteristics to the object dynamically.", "tokens": [12587, 1365, 11, 1506, 6326, 2109, 13, 492, 439, 458, 437, 7919, 1355, 13, 1033, 11, 718, 311, 1401, 264, 8446, 293, 853, 281, 1223, 309, 13, 1396, 11, 718, 311, 574, 412, 257, 8496, 1365, 281, 2903, 437, 264, 7919, 1639, 5102, 307, 293, 437, 309, 1355, 13, 440, 8446, 420, 264, 3387, 295, 264, 7919, 1639, 5102, 307, 281, 5085, 4497, 16190, 281, 364, 2657, 43492, 13, 1407, 909, 777, 10891, 281, 264, 2657, 43492, 13], "avg_logprob": -0.4580696315705022, "compression_ratio": 1.7570093457943925, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 144.9, "end": 145.2, "word": "For", "probability": 0.046783447265625}, {"start": 145.2, "end": 145.28, "word": " example,", "probability": 0.86376953125}, {"start": 145.28, "end": 145.8, "word": " jewellery.", "probability": 0.6011962890625}, {"start": 146.9, "end": 147.5, "word": " We", "probability": 0.27294921875}, {"start": 147.5, "end": 147.7, "word": " all", "probability": 0.78271484375}, {"start": 147.7, "end": 147.98, "word": " know", "probability": 0.8720703125}, {"start": 147.98, "end": 148.18, "word": " what", "probability": 0.85498046875}, {"start": 148.18, "end": 150.06, "word": " decor", "probability": 0.406982421875}, {"start": 150.06, "end": 150.28, "word": " means.", "probability": 0.72900390625}, {"start": 151.64, "end": 152.24, "word": " Okay,", "probability": 0.1597900390625}, {"start": 152.34, "end": 152.5, "word": " let's", "probability": 0.883544921875}, {"start": 152.5, "end": 152.82, "word": " read", "probability": 0.771484375}, {"start": 152.82, "end": 152.98, "word": " the", "probability": 0.85546875}, {"start": 152.98, "end": 153.38, "word": " intent", "probability": 0.8212890625}, {"start": 153.38, "end": 153.82, "word": " and", "probability": 0.411865234375}, {"start": 153.82, "end": 154.06, "word": " try", "probability": 0.845703125}, {"start": 154.06, "end": 154.2, "word": " to", "probability": 0.9638671875}, {"start": 154.2, "end": 154.42, "word": " understand", "probability": 0.7333984375}, {"start": 154.42, "end": 154.62, "word": " it.", "probability": 0.92822265625}, {"start": 155.5, "end": 156.1, "word": " Then,", "probability": 0.42236328125}, {"start": 156.22, "end": 156.36, "word": " let's", "probability": 0.7337646484375}, {"start": 156.36, "end": 156.48, "word": " look", "probability": 0.32373046875}, {"start": 156.48, "end": 156.56, "word": " at", "probability": 0.7998046875}, {"start": 156.56, "end": 156.86, "word": " a", "probability": 0.650390625}, {"start": 156.86, "end": 157.12, "word": " practical", "probability": 0.91796875}, {"start": 157.12, "end": 157.12, "word": " example", "probability": 0.9638671875}, {"start": 157.12, "end": 157.3, "word": " to", "probability": 0.5390625}, {"start": 157.3, "end": 157.6, "word": " explain", "probability": 0.437744140625}, {"start": 157.6, "end": 158.28, "word": " what", "probability": 0.646484375}, {"start": 158.28, "end": 158.54, "word": " the", "probability": 0.3232421875}, {"start": 158.54, "end": 158.98, "word": " decorator", "probability": 0.88427734375}, {"start": 158.98, "end": 159.44, "word": " pattern", "probability": 0.85302734375}, {"start": 159.44, "end": 159.8, "word": " is", "probability": 0.8193359375}, {"start": 159.8, "end": 160.18, "word": " and", "probability": 0.84033203125}, {"start": 160.18, "end": 160.36, "word": " what", "probability": 0.611328125}, {"start": 160.36, "end": 160.36, "word": " it", "probability": 0.347412109375}, {"start": 160.36, "end": 160.58, "word": " means.", "probability": 0.57666015625}, {"start": 161.32, "end": 161.92, "word": " The", "probability": 0.72265625}, {"start": 161.92, "end": 162.24, "word": " intent", "probability": 0.96533203125}, {"start": 162.24, "end": 162.48, "word": " or", "probability": 0.603515625}, {"start": 162.48, "end": 162.58, "word": " the", "probability": 0.48046875}, {"start": 162.58, "end": 162.76, "word": " goal", "probability": 0.6591796875}, {"start": 162.76, "end": 162.96, "word": " of", "probability": 0.9638671875}, {"start": 162.96, "end": 163.06, "word": " the", "probability": 0.818359375}, {"start": 163.06, "end": 163.44, "word": " decorator", "probability": 0.9873046875}, {"start": 163.44, "end": 163.86, "word": " pattern", "probability": 0.87548828125}, {"start": 163.86, "end": 164.42, "word": " is", "probability": 0.58642578125}, {"start": 164.42, "end": 164.48, "word": " to", "probability": 0.857421875}, {"start": 164.48, "end": 164.8, "word": " attach", "probability": 0.81396484375}, {"start": 164.8, "end": 165.3, "word": " additional", "probability": 0.8828125}, {"start": 165.3, "end": 166.12, "word": " responsibilities", "probability": 0.93408203125}, {"start": 166.12, "end": 166.42, "word": " to", "probability": 0.9716796875}, {"start": 166.42, "end": 166.6, "word": " an", "probability": 0.947265625}, {"start": 166.6, "end": 166.96, "word": " object", "probability": 0.97607421875}, {"start": 166.96, "end": 167.64, "word": " dynamically.", "probability": 0.85693359375}, {"start": 168.76, "end": 168.76, "word": " To", "probability": 0.24072265625}, {"start": 168.76, "end": 168.96, "word": " add", "probability": 0.81201171875}, {"start": 168.96, "end": 169.2, "word": " new", "probability": 0.81591796875}, {"start": 169.2, "end": 169.66, "word": " characteristics", "probability": 0.434326171875}, {"start": 169.66, "end": 170.14, "word": " to", "probability": 0.93798828125}, {"start": 170.14, "end": 170.24, "word": " the", "probability": 0.71044921875}, {"start": 170.24, "end": 170.7, "word": " object", "probability": 0.958984375}, {"start": 170.7, "end": 171.56, "word": " dynamically.", "probability": 0.8291015625}], "temperature": 1.0}, {"id": 8, "seek": 19417, "start": 174.35, "end": 194.17, "text": "2. Decorators provide a flexible alternative to subclassing for extending functionality What does this sentence mean? This is the most important sentence Decorators provide a flexible alternative What is a flexible alternative? It is an alternative to subclassing", "tokens": [17, 13, 12427, 284, 3391, 2893, 257, 11358, 8535, 281, 1422, 11665, 278, 337, 24360, 14980, 708, 775, 341, 8174, 914, 30, 639, 307, 264, 881, 1021, 8174, 12427, 284, 3391, 2893, 257, 11358, 8535, 708, 307, 257, 11358, 8535, 30, 467, 307, 364, 8535, 281, 1422, 11665, 278], "avg_logprob": -0.30593749284744265, "compression_ratio": 1.8785714285714286, "no_speech_prob": 0.0, "words": [{"start": 174.35, "end": 175.07, "word": "2.", "probability": 0.271240234375}, {"start": 175.67, "end": 176.37, "word": " Decorators", "probability": 0.93994140625}, {"start": 176.37, "end": 176.99, "word": " provide", "probability": 0.74365234375}, {"start": 176.99, "end": 178.45, "word": " a", "probability": 0.9560546875}, {"start": 178.45, "end": 178.87, "word": " flexible", "probability": 0.85107421875}, {"start": 178.87, "end": 179.51, "word": " alternative", "probability": 0.9326171875}, {"start": 179.51, "end": 179.75, "word": " to", "probability": 0.9599609375}, {"start": 179.75, "end": 180.47, "word": " subclassing", "probability": 0.9314778645833334}, {"start": 180.47, "end": 181.71, "word": " for", "probability": 0.7275390625}, {"start": 181.71, "end": 182.51, "word": " extending", "probability": 0.88037109375}, {"start": 182.51, "end": 183.73, "word": " functionality", "probability": 0.93701171875}, {"start": 183.73, "end": 184.37, "word": " What", "probability": 0.389404296875}, {"start": 184.37, "end": 184.55, "word": " does", "probability": 0.7041015625}, {"start": 184.55, "end": 184.63, "word": " this", "probability": 0.76611328125}, {"start": 184.63, "end": 184.79, "word": " sentence", "probability": 0.419677734375}, {"start": 184.79, "end": 184.83, "word": " mean?", "probability": 0.8876953125}, {"start": 185.05, "end": 185.19, "word": " This", "probability": 0.5205078125}, {"start": 185.19, "end": 185.23, "word": " is", "probability": 0.833984375}, {"start": 185.23, "end": 185.31, "word": " the", "probability": 0.830078125}, {"start": 185.31, "end": 185.41, "word": " most", "probability": 0.83056640625}, {"start": 185.41, "end": 185.49, "word": " important", "probability": 0.8642578125}, {"start": 185.49, "end": 185.81, "word": " sentence", "probability": 0.708984375}, {"start": 185.81, "end": 187.03, "word": " Decorators", "probability": 0.8033854166666666}, {"start": 187.03, "end": 187.77, "word": " provide", "probability": 0.93701171875}, {"start": 187.77, "end": 188.73, "word": " a", "probability": 0.9853515625}, {"start": 188.73, "end": 189.13, "word": " flexible", "probability": 0.8671875}, {"start": 189.13, "end": 189.75, "word": " alternative", "probability": 0.9482421875}, {"start": 189.75, "end": 189.91, "word": " What", "probability": 0.339111328125}, {"start": 189.91, "end": 190.05, "word": " is", "probability": 0.798828125}, {"start": 190.05, "end": 190.11, "word": " a", "probability": 0.572265625}, {"start": 190.11, "end": 190.37, "word": " flexible", "probability": 0.89599609375}, {"start": 190.37, "end": 191.03, "word": " alternative?", "probability": 0.9580078125}, {"start": 191.13, "end": 191.29, "word": " It", "probability": 0.42041015625}, {"start": 191.29, "end": 191.49, "word": " is", "probability": 0.6728515625}, {"start": 191.49, "end": 191.59, "word": " an", "probability": 0.47802734375}, {"start": 191.59, "end": 191.59, "word": " alternative", "probability": 0.9287109375}, {"start": 191.59, "end": 193.21, "word": " to", "probability": 0.29443359375}, {"start": 193.21, "end": 194.17, "word": " subclassing", "probability": 0.94140625}], "temperature": 1.0}, {"id": 9, "seek": 22323, "start": 195.45, "end": 223.23, "text": "for extending functionality because we have always learned in programming that if you have a class and you want to add new features that don't exist in it, what do you do? you modify its code? no, you create a new class and extend it to the old one so that you don't rewrite the code and then add new features okay? did you find that we want to learn something new? what contradicts this belief?", "tokens": [2994, 24360, 14980, 570, 321, 362, 1009, 3264, 294, 9410, 300, 498, 291, 362, 257, 1508, 293, 291, 528, 281, 909, 777, 4122, 300, 500, 380, 2514, 294, 309, 11, 437, 360, 291, 360, 30, 291, 16927, 1080, 3089, 30, 572, 11, 291, 1884, 257, 777, 1508, 293, 10101, 309, 281, 264, 1331, 472, 370, 300, 291, 500, 380, 28132, 264, 3089, 293, 550, 909, 777, 4122, 1392, 30, 630, 291, 915, 300, 321, 528, 281, 1466, 746, 777, 30, 437, 28900, 82, 341, 7107, 30], "avg_logprob": -0.507543117150493, "compression_ratio": 1.7792792792792793, "no_speech_prob": 4.5299530029296875e-06, "words": [{"start": 195.45, "end": 195.95, "word": "for", "probability": 0.424560546875}, {"start": 195.95, "end": 196.45, "word": " extending", "probability": 0.79345703125}, {"start": 196.45, "end": 197.23, "word": " functionality", "probability": 0.90966796875}, {"start": 197.23, "end": 197.69, "word": " because", "probability": 0.2410888671875}, {"start": 197.69, "end": 198.23, "word": " we", "probability": 0.552734375}, {"start": 198.23, "end": 198.23, "word": " have", "probability": 0.1951904296875}, {"start": 198.23, "end": 198.57, "word": " always", "probability": 0.73876953125}, {"start": 198.57, "end": 198.99, "word": " learned", "probability": 0.349609375}, {"start": 198.99, "end": 200.05, "word": " in", "probability": 0.463134765625}, {"start": 200.05, "end": 200.41, "word": " programming", "probability": 0.791015625}, {"start": 200.41, "end": 201.23, "word": " that", "probability": 0.73486328125}, {"start": 201.23, "end": 201.33, "word": " if", "probability": 0.62255859375}, {"start": 201.33, "end": 201.47, "word": " you", "probability": 0.90234375}, {"start": 201.47, "end": 201.57, "word": " have", "probability": 0.86962890625}, {"start": 201.57, "end": 201.73, "word": " a", "probability": 0.95703125}, {"start": 201.73, "end": 201.99, "word": " class", "probability": 0.90234375}, {"start": 201.99, "end": 202.07, "word": " and", "probability": 0.54833984375}, {"start": 202.07, "end": 202.15, "word": " you", "probability": 0.73193359375}, {"start": 202.15, "end": 202.27, "word": " want", "probability": 0.69873046875}, {"start": 202.27, "end": 202.33, "word": " to", "probability": 0.9599609375}, {"start": 202.33, "end": 202.51, "word": " add", "probability": 0.90478515625}, {"start": 202.51, "end": 202.73, "word": " new", "probability": 0.6298828125}, {"start": 202.73, "end": 203.41, "word": " features", "probability": 0.5107421875}, {"start": 203.41, "end": 204.27, "word": " that", "probability": 0.467041015625}, {"start": 204.27, "end": 204.41, "word": " don't", "probability": 0.658203125}, {"start": 204.41, "end": 204.71, "word": " exist", "probability": 0.1915283203125}, {"start": 204.71, "end": 204.85, "word": " in", "probability": 0.365966796875}, {"start": 204.85, "end": 204.97, "word": " it,", "probability": 0.67626953125}, {"start": 205.01, "end": 205.07, "word": " what", "probability": 0.5908203125}, {"start": 205.07, "end": 205.17, "word": " do", "probability": 0.72216796875}, {"start": 205.17, "end": 205.23, "word": " you", "probability": 0.96826171875}, {"start": 205.23, "end": 205.43, "word": " do?", "probability": 0.9462890625}, {"start": 206.13, "end": 206.31, "word": " you", "probability": 0.5078125}, {"start": 206.31, "end": 206.59, "word": " modify", "probability": 0.36962890625}, {"start": 206.59, "end": 206.75, "word": " its", "probability": 0.47265625}, {"start": 206.75, "end": 206.97, "word": " code?", "probability": 0.92724609375}, {"start": 207.59, "end": 207.93, "word": " no,", "probability": 0.64453125}, {"start": 208.01, "end": 208.15, "word": " you", "probability": 0.94091796875}, {"start": 208.15, "end": 208.45, "word": " create", "probability": 0.2384033203125}, {"start": 208.45, "end": 208.99, "word": " a", "probability": 0.92041015625}, {"start": 208.99, "end": 209.57, "word": " new", "probability": 0.91552734375}, {"start": 209.57, "end": 209.57, "word": " class", "probability": 0.93408203125}, {"start": 209.57, "end": 209.83, "word": " and", "probability": 0.6767578125}, {"start": 209.83, "end": 210.21, "word": " extend", "probability": 0.81396484375}, {"start": 210.21, "end": 210.37, "word": " it", "probability": 0.5400390625}, {"start": 210.37, "end": 210.37, "word": " to", "probability": 0.85986328125}, {"start": 210.37, "end": 210.73, "word": " the", "probability": 0.6533203125}, {"start": 210.73, "end": 210.89, "word": " old", "probability": 0.52490234375}, {"start": 210.89, "end": 211.05, "word": " one", "probability": 0.499267578125}, {"start": 211.05, "end": 211.69, "word": " so", "probability": 0.5146484375}, {"start": 211.69, "end": 212.07, "word": " that", "probability": 0.72314453125}, {"start": 212.07, "end": 212.11, "word": " you", "probability": 0.350341796875}, {"start": 212.11, "end": 212.21, "word": " don't", "probability": 0.89697265625}, {"start": 212.21, "end": 212.47, "word": " rewrite", "probability": 0.2481689453125}, {"start": 212.47, "end": 213.03, "word": " the", "probability": 0.67626953125}, {"start": 213.03, "end": 213.23, "word": " code", "probability": 0.7783203125}, {"start": 213.23, "end": 213.63, "word": " and", "probability": 0.277587890625}, {"start": 213.63, "end": 213.83, "word": " then", "probability": 0.50927734375}, {"start": 213.83, "end": 214.07, "word": " add", "probability": 0.5947265625}, {"start": 214.07, "end": 214.21, "word": " new", "probability": 0.71435546875}, {"start": 214.21, "end": 214.43, "word": " features", "probability": 0.436279296875}, {"start": 214.43, "end": 215.93, "word": " okay?", "probability": 0.2138671875}, {"start": 217.47, "end": 217.67, "word": " did", "probability": 0.235107421875}, {"start": 217.67, "end": 217.69, "word": " you", "probability": 0.96435546875}, {"start": 217.69, "end": 217.85, "word": " find", "probability": 0.5673828125}, {"start": 217.85, "end": 217.99, "word": " that", "probability": 0.2998046875}, {"start": 217.99, "end": 218.87, "word": " we", "probability": 0.39404296875}, {"start": 218.87, "end": 219.01, "word": " want", "probability": 0.44677734375}, {"start": 219.01, "end": 219.09, "word": " to", "probability": 0.96875}, {"start": 219.09, "end": 219.37, "word": " learn", "probability": 0.96533203125}, {"start": 219.37, "end": 219.59, "word": " something", "probability": 0.708984375}, {"start": 219.59, "end": 219.93, "word": " new?", "probability": 0.91015625}, {"start": 221.03, "end": 221.53, "word": " what", "probability": 0.546875}, {"start": 221.53, "end": 221.97, "word": " contradicts", "probability": 0.71337890625}, {"start": 221.97, "end": 222.87, "word": " this", "probability": 0.7939453125}, {"start": 222.87, "end": 223.23, "word": " belief?", "probability": 0.65234375}], "temperature": 1.0}, {"id": 10, "seek": 24812, "start": 224.54, "end": 248.12, "text": " Let's change our beliefs in programming, not in other things, okay? That you learn all your life that you add something new to the class and go and extend it and add something new to it and you are happy with it and the subclassing is always good and excellent No, we will learn that the subclassing in many cases is bad and we will see alternatives to it", "tokens": [961, 311, 1319, 527, 13585, 294, 9410, 11, 406, 294, 661, 721, 11, 1392, 30, 663, 291, 1466, 439, 428, 993, 300, 291, 909, 746, 777, 281, 264, 1508, 293, 352, 293, 10101, 309, 293, 909, 746, 777, 281, 309, 293, 291, 366, 2055, 365, 309, 293, 264, 1422, 11665, 278, 307, 1009, 665, 293, 7103, 883, 11, 321, 486, 1466, 300, 264, 1422, 11665, 278, 294, 867, 3331, 307, 1578, 293, 321, 486, 536, 20478, 281, 309], "avg_logprob": -0.5830696277980563, "compression_ratio": 1.7623762376237624, "no_speech_prob": 4.947185516357422e-06, "words": [{"start": 224.54, "end": 224.82, "word": " Let's", "probability": 0.47698974609375}, {"start": 224.82, "end": 225.04, "word": " change", "probability": 0.85498046875}, {"start": 225.04, "end": 225.36, "word": " our", "probability": 0.385009765625}, {"start": 225.36, "end": 225.76, "word": " beliefs", "probability": 0.27197265625}, {"start": 225.76, "end": 226.52, "word": " in", "probability": 0.39013671875}, {"start": 226.52, "end": 226.88, "word": " programming,", "probability": 0.83544921875}, {"start": 226.96, "end": 227.06, "word": " not", "probability": 0.65966796875}, {"start": 227.06, "end": 227.16, "word": " in", "probability": 0.51416015625}, {"start": 227.16, "end": 227.56, "word": " other", "probability": 0.50732421875}, {"start": 227.56, "end": 227.62, "word": " things,", "probability": 0.6240234375}, {"start": 227.7, "end": 227.94, "word": " okay?", "probability": 0.322509765625}, {"start": 228.58, "end": 228.9, "word": " That", "probability": 0.33154296875}, {"start": 228.9, "end": 229.2, "word": " you", "probability": 0.7265625}, {"start": 229.2, "end": 230.98, "word": " learn", "probability": 0.347900390625}, {"start": 230.98, "end": 231.08, "word": " all", "probability": 0.48583984375}, {"start": 231.08, "end": 231.08, "word": " your", "probability": 0.841796875}, {"start": 231.08, "end": 231.08, "word": " life", "probability": 0.919921875}, {"start": 231.08, "end": 231.7, "word": " that", "probability": 0.65234375}, {"start": 231.7, "end": 232.32, "word": " you", "probability": 0.348876953125}, {"start": 232.32, "end": 232.78, "word": " add", "probability": 0.59619140625}, {"start": 232.78, "end": 233.16, "word": " something", "probability": 0.380126953125}, {"start": 233.16, "end": 233.54, "word": " new", "probability": 0.78955078125}, {"start": 233.54, "end": 233.54, "word": " to", "probability": 0.8427734375}, {"start": 233.54, "end": 233.54, "word": " the", "probability": 0.63623046875}, {"start": 233.54, "end": 233.54, "word": " class", "probability": 0.92138671875}, {"start": 233.54, "end": 233.9, "word": " and", "probability": 0.6552734375}, {"start": 233.9, "end": 234.02, "word": " go", "probability": 0.1734619140625}, {"start": 234.02, "end": 234.1, "word": " and", "probability": 0.251220703125}, {"start": 234.1, "end": 234.58, "word": " extend", "probability": 0.69482421875}, {"start": 234.58, "end": 234.84, "word": " it", "probability": 0.89453125}, {"start": 234.84, "end": 235.3, "word": " and", "probability": 0.42919921875}, {"start": 235.3, "end": 235.48, "word": " add", "probability": 0.90576171875}, {"start": 235.48, "end": 235.82, "word": " something", "probability": 0.454833984375}, {"start": 235.82, "end": 236.2, "word": " new", "probability": 0.82177734375}, {"start": 236.2, "end": 236.2, "word": " to", "probability": 0.388671875}, {"start": 236.2, "end": 236.58, "word": " it", "probability": 0.9091796875}, {"start": 236.58, "end": 236.8, "word": " and", "probability": 0.224853515625}, {"start": 236.8, "end": 236.88, "word": " you", "probability": 0.315673828125}, {"start": 236.88, "end": 237.14, "word": " are", "probability": 0.441650390625}, {"start": 237.14, "end": 237.14, "word": " happy", "probability": 0.71435546875}, {"start": 237.14, "end": 237.28, "word": " with", "probability": 0.7607421875}, {"start": 237.28, "end": 237.54, "word": " it", "probability": 0.119140625}, {"start": 237.54, "end": 237.98, "word": " and", "probability": 0.611328125}, {"start": 237.98, "end": 238.38, "word": " the", "probability": 0.39794921875}, {"start": 238.38, "end": 239.0, "word": " subclassing", "probability": 0.85009765625}, {"start": 239.0, "end": 239.02, "word": " is", "probability": 0.8955078125}, {"start": 239.02, "end": 239.06, "word": " always", "probability": 0.6572265625}, {"start": 239.06, "end": 239.16, "word": " good", "probability": 0.467529296875}, {"start": 239.16, "end": 239.3, "word": " and", "probability": 0.7509765625}, {"start": 239.3, "end": 239.72, "word": " excellent", "probability": 0.66455078125}, {"start": 239.72, "end": 240.22, "word": " No,", "probability": 0.31884765625}, {"start": 240.28, "end": 240.4, "word": " we", "probability": 0.2081298828125}, {"start": 240.4, "end": 240.58, "word": " will", "probability": 0.521484375}, {"start": 240.58, "end": 241.04, "word": " learn", "probability": 0.8818359375}, {"start": 241.04, "end": 241.28, "word": " that", "probability": 0.7158203125}, {"start": 241.28, "end": 241.4, "word": " the", "probability": 0.406982421875}, {"start": 241.4, "end": 242.18, "word": " subclassing", "probability": 0.9700520833333334}, {"start": 242.18, "end": 242.84, "word": " in", "probability": 0.58837890625}, {"start": 242.84, "end": 243.16, "word": " many", "probability": 0.7275390625}, {"start": 243.16, "end": 244.32, "word": " cases", "probability": 0.88232421875}, {"start": 244.32, "end": 245.06, "word": " is", "probability": 0.81982421875}, {"start": 245.06, "end": 245.44, "word": " bad", "probability": 0.85205078125}, {"start": 245.44, "end": 246.96, "word": " and", "probability": 0.75}, {"start": 246.96, "end": 247.12, "word": " we", "probability": 0.92578125}, {"start": 247.12, "end": 247.12, "word": " will", "probability": 0.81396484375}, {"start": 247.12, "end": 247.32, "word": " see", "probability": 0.477294921875}, {"start": 247.32, "end": 247.78, "word": " alternatives", "probability": 0.57568359375}, {"start": 247.78, "end": 248.02, "word": " to", "probability": 0.65087890625}, {"start": 248.02, "end": 248.12, "word": " it", "probability": 0.927734375}], "temperature": 1.0}, {"id": 11, "seek": 27702, "start": 249.09, "end": 277.03, "text": "How can we add a new functionality without subclassing? And to understand when subclassing is bad, let's see a practical example and then we will continue reading the slides. Let me explain this subject to you. First, I will give you a simple example, not very practical, to show you what the meaning of the decorator is, where the problem is, and how the decorator can solve this problem.", "tokens": [6462, 393, 321, 909, 257, 777, 14980, 1553, 1422, 11665, 278, 30, 400, 281, 1223, 562, 1422, 11665, 278, 307, 1578, 11, 718, 311, 536, 257, 8496, 1365, 293, 550, 321, 486, 2354, 3760, 264, 9788, 13, 961, 385, 2903, 341, 3983, 281, 291, 13, 2386, 11, 286, 486, 976, 291, 257, 2199, 1365, 11, 406, 588, 8496, 11, 281, 855, 291, 437, 264, 3620, 295, 264, 7919, 1639, 307, 11, 689, 264, 1154, 307, 11, 293, 577, 264, 7919, 1639, 393, 5039, 341, 1154, 13], "avg_logprob": -0.4615660837326927, "compression_ratio": 1.6623931623931625, "no_speech_prob": 1.2993812561035156e-05, "words": [{"start": 249.09, "end": 249.41, "word": "How", "probability": 0.395751953125}, {"start": 249.41, "end": 249.69, "word": " can", "probability": 0.350341796875}, {"start": 249.69, "end": 249.75, "word": " we", "probability": 0.8828125}, {"start": 249.75, "end": 249.93, "word": " add", "probability": 0.80224609375}, {"start": 249.93, "end": 250.05, "word": " a", "probability": 0.33251953125}, {"start": 250.05, "end": 250.05, "word": " new", "probability": 0.8525390625}, {"start": 250.05, "end": 250.53, "word": " functionality", "probability": 0.669921875}, {"start": 250.53, "end": 251.29, "word": " without", "probability": 0.84619140625}, {"start": 251.29, "end": 252.85, "word": " subclassing?", "probability": 0.8243815104166666}, {"start": 253.25, "end": 253.39, "word": " And", "probability": 0.447021484375}, {"start": 253.39, "end": 253.61, "word": " to", "probability": 0.7490234375}, {"start": 253.61, "end": 253.91, "word": " understand", "probability": 0.6484375}, {"start": 253.91, "end": 254.69, "word": " when", "probability": 0.345703125}, {"start": 254.69, "end": 255.61, "word": " subclassing", "probability": 0.7985026041666666}, {"start": 255.61, "end": 255.79, "word": " is", "probability": 0.7421875}, {"start": 255.79, "end": 256.25, "word": " bad,", "probability": 0.59912109375}, {"start": 256.67, "end": 256.99, "word": " let's", "probability": 0.869140625}, {"start": 256.99, "end": 257.19, "word": " see", "probability": 0.587890625}, {"start": 257.19, "end": 258.03, "word": " a", "probability": 0.435302734375}, {"start": 258.03, "end": 258.35, "word": " practical", "probability": 0.84375}, {"start": 258.35, "end": 258.35, "word": " example", "probability": 0.9619140625}, {"start": 258.35, "end": 258.49, "word": " and", "probability": 0.37109375}, {"start": 258.49, "end": 258.69, "word": " then", "probability": 0.73046875}, {"start": 258.69, "end": 258.89, "word": " we", "probability": 0.437255859375}, {"start": 258.89, "end": 259.17, "word": " will", "probability": 0.2257080078125}, {"start": 259.17, "end": 259.41, "word": " continue", "probability": 0.4609375}, {"start": 259.41, "end": 259.79, "word": " reading", "probability": 0.7548828125}, {"start": 259.79, "end": 260.91, "word": " the", "probability": 0.72900390625}, {"start": 260.91, "end": 261.25, "word": " slides.", "probability": 0.9658203125}, {"start": 263.53, "end": 264.09, "word": " Let", "probability": 0.2249755859375}, {"start": 264.09, "end": 264.27, "word": " me", "probability": 0.467529296875}, {"start": 264.27, "end": 265.27, "word": " explain", "probability": 0.58447265625}, {"start": 265.27, "end": 265.59, "word": " this", "probability": 0.56640625}, {"start": 265.59, "end": 265.85, "word": " subject", "probability": 0.250244140625}, {"start": 265.85, "end": 265.99, "word": " to", "probability": 0.58203125}, {"start": 265.99, "end": 265.99, "word": " you.", "probability": 0.96875}, {"start": 266.03, "end": 266.49, "word": " First,", "probability": 0.669921875}, {"start": 266.77, "end": 266.83, "word": " I", "probability": 0.89013671875}, {"start": 266.83, "end": 266.93, "word": " will", "probability": 0.69970703125}, {"start": 266.93, "end": 267.03, "word": " give", "probability": 0.71875}, {"start": 267.03, "end": 267.19, "word": " you", "probability": 0.8525390625}, {"start": 267.19, "end": 267.63, "word": " a", "probability": 0.93994140625}, {"start": 267.63, "end": 268.29, "word": " simple", "probability": 0.7705078125}, {"start": 268.29, "end": 269.09, "word": " example,", "probability": 0.95458984375}, {"start": 269.51, "end": 269.63, "word": " not", "probability": 0.76953125}, {"start": 269.63, "end": 269.67, "word": " very", "probability": 0.263916015625}, {"start": 269.67, "end": 269.97, "word": " practical,", "probability": 0.88232421875}, {"start": 270.29, "end": 270.39, "word": " to", "probability": 0.86669921875}, {"start": 270.39, "end": 270.73, "word": " show", "probability": 0.4501953125}, {"start": 270.73, "end": 270.95, "word": " you", "probability": 0.904296875}, {"start": 270.95, "end": 271.15, "word": " what", "probability": 0.5654296875}, {"start": 271.15, "end": 271.25, "word": " the", "probability": 0.3876953125}, {"start": 271.25, "end": 271.49, "word": " meaning", "probability": 0.48046875}, {"start": 271.49, "end": 271.79, "word": " of", "probability": 0.91796875}, {"start": 271.79, "end": 271.89, "word": " the", "probability": 0.52001953125}, {"start": 271.89, "end": 272.45, "word": " decorator", "probability": 0.8720703125}, {"start": 272.45, "end": 272.53, "word": " is,", "probability": 0.55224609375}, {"start": 273.35, "end": 273.49, "word": " where", "probability": 0.77734375}, {"start": 273.49, "end": 273.65, "word": " the", "probability": 0.77734375}, {"start": 273.65, "end": 273.97, "word": " problem", "probability": 0.857421875}, {"start": 273.97, "end": 274.09, "word": " is,", "probability": 0.66552734375}, {"start": 274.57, "end": 275.41, "word": " and", "probability": 0.91455078125}, {"start": 275.41, "end": 275.57, "word": " how", "probability": 0.93994140625}, {"start": 275.57, "end": 275.71, "word": " the", "probability": 0.787109375}, {"start": 275.71, "end": 276.15, "word": " decorator", "probability": 0.990478515625}, {"start": 276.15, "end": 276.37, "word": " can", "probability": 0.225830078125}, {"start": 276.37, "end": 276.61, "word": " solve", "probability": 0.85302734375}, {"start": 276.61, "end": 276.71, "word": " this", "probability": 0.73046875}, {"start": 276.71, "end": 277.03, "word": " problem.", "probability": 0.84716796875}], "temperature": 1.0}, {"id": 12, "seek": 30225, "start": 277.85, "end": 302.25, "text": "Then I will tell you or show you examples where this decorator is actually used in famous libraries such as Java SDK or JavaFX that you are working on or Swing or Android to show you that this design pattern is actually used in a big way. And you used it but you don't know that you are applying the decorator pattern.", "tokens": [20371, 286, 486, 980, 291, 420, 855, 291, 5110, 689, 341, 7919, 1639, 307, 767, 1143, 294, 4618, 15148, 1270, 382, 10745, 37135, 420, 10745, 36092, 300, 291, 366, 1364, 322, 420, 3926, 278, 420, 8853, 281, 855, 291, 300, 341, 1715, 5102, 307, 767, 1143, 294, 257, 955, 636, 13, 400, 291, 1143, 309, 457, 291, 500, 380, 458, 300, 291, 366, 9275, 264, 7919, 1639, 5102, 13], "avg_logprob": -0.47678571811744147, "compression_ratio": 1.6307692307692307, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 277.85, "end": 278.19, "word": "Then", "probability": 0.282958984375}, {"start": 278.19, "end": 278.37, "word": " I", "probability": 0.748046875}, {"start": 278.37, "end": 278.45, "word": " will", "probability": 0.58642578125}, {"start": 278.45, "end": 278.67, "word": " tell", "probability": 0.2108154296875}, {"start": 278.67, "end": 279.09, "word": " you", "probability": 0.947265625}, {"start": 279.09, "end": 279.81, "word": " or", "probability": 0.376953125}, {"start": 279.81, "end": 280.21, "word": " show", "probability": 0.71875}, {"start": 280.21, "end": 280.47, "word": " you", "probability": 0.91943359375}, {"start": 280.47, "end": 280.91, "word": " examples", "probability": 0.4365234375}, {"start": 280.91, "end": 281.27, "word": " where", "probability": 0.353759765625}, {"start": 281.27, "end": 281.47, "word": " this", "probability": 0.80029296875}, {"start": 281.47, "end": 282.03, "word": " decorator", "probability": 0.904541015625}, {"start": 282.03, "end": 282.39, "word": " is", "probability": 0.76025390625}, {"start": 282.39, "end": 283.21, "word": " actually", "probability": 0.442626953125}, {"start": 283.21, "end": 283.21, "word": " used", "probability": 0.90283203125}, {"start": 283.21, "end": 284.23, "word": " in", "probability": 0.85107421875}, {"start": 284.23, "end": 285.17, "word": " famous", "probability": 0.55126953125}, {"start": 285.17, "end": 285.17, "word": " libraries", "probability": 0.9091796875}, {"start": 285.17, "end": 285.37, "word": " such", "probability": 0.411376953125}, {"start": 285.37, "end": 285.45, "word": " as", "probability": 0.9775390625}, {"start": 285.45, "end": 285.71, "word": " Java", "probability": 0.50439453125}, {"start": 285.71, "end": 286.09, "word": " SDK", "probability": 0.9296875}, {"start": 286.09, "end": 287.61, "word": " or", "probability": 0.3291015625}, {"start": 287.61, "end": 288.83, "word": " JavaFX", "probability": 0.59130859375}, {"start": 288.83, "end": 289.03, "word": " that", "probability": 0.3291015625}, {"start": 289.03, "end": 289.19, "word": " you", "probability": 0.9345703125}, {"start": 289.19, "end": 289.79, "word": " are", "probability": 0.1514892578125}, {"start": 289.79, "end": 289.99, "word": " working", "probability": 0.6142578125}, {"start": 289.99, "end": 290.37, "word": " on", "probability": 0.90869140625}, {"start": 290.37, "end": 291.29, "word": " or", "probability": 0.439208984375}, {"start": 291.29, "end": 291.95, "word": " Swing", "probability": 0.6683349609375}, {"start": 291.95, "end": 292.21, "word": " or", "probability": 0.85888671875}, {"start": 292.21, "end": 292.81, "word": " Android", "probability": 0.91162109375}, {"start": 292.81, "end": 293.03, "word": " to", "probability": 0.6044921875}, {"start": 293.03, "end": 293.31, "word": " show", "probability": 0.73486328125}, {"start": 293.31, "end": 293.49, "word": " you", "probability": 0.87646484375}, {"start": 293.49, "end": 293.67, "word": " that", "probability": 0.8154296875}, {"start": 293.67, "end": 293.91, "word": " this", "probability": 0.89794921875}, {"start": 293.91, "end": 294.25, "word": " design", "probability": 0.66455078125}, {"start": 294.25, "end": 294.53, "word": " pattern", "probability": 0.8525390625}, {"start": 294.53, "end": 294.69, "word": " is", "probability": 0.890625}, {"start": 294.69, "end": 295.57, "word": " actually", "probability": 0.4580078125}, {"start": 295.57, "end": 296.03, "word": " used", "probability": 0.78662109375}, {"start": 296.03, "end": 296.13, "word": " in", "probability": 0.245361328125}, {"start": 296.13, "end": 296.29, "word": " a", "probability": 0.430419921875}, {"start": 296.29, "end": 296.55, "word": " big", "probability": 0.44287109375}, {"start": 296.55, "end": 296.99, "word": " way.", "probability": 0.92041015625}, {"start": 297.57, "end": 297.65, "word": " And", "probability": 0.288330078125}, {"start": 297.65, "end": 297.87, "word": " you", "probability": 0.80517578125}, {"start": 297.87, "end": 298.11, "word": " used", "probability": 0.3720703125}, {"start": 298.11, "end": 298.69, "word": " it", "probability": 0.8271484375}, {"start": 298.69, "end": 298.85, "word": " but", "probability": 0.611328125}, {"start": 298.85, "end": 299.01, "word": " you", "probability": 0.46875}, {"start": 299.01, "end": 299.03, "word": " don't", "probability": 0.6876220703125}, {"start": 299.03, "end": 299.33, "word": " know", "probability": 0.87109375}, {"start": 299.33, "end": 299.47, "word": " that", "probability": 0.810546875}, {"start": 299.47, "end": 299.81, "word": " you", "probability": 0.94482421875}, {"start": 299.81, "end": 299.99, "word": " are", "probability": 0.8505859375}, {"start": 299.99, "end": 300.35, "word": " applying", "probability": 0.60986328125}, {"start": 300.35, "end": 301.53, "word": " the", "probability": 0.69189453125}, {"start": 301.53, "end": 301.91, "word": " decorator", "probability": 0.89013671875}, {"start": 301.91, "end": 302.25, "word": " pattern.", "probability": 0.89111328125}], "temperature": 1.0}, {"id": 13, "seek": 32220, "start": 303.56, "end": 322.2, "text": "Exactly like when you do add action on the button and you don't know that it is an observer pattern Ok, let's understand this example, I want to make a simple application to draw shapes, ok? I have classes that represent shapes, first I have an interface called I shape", "tokens": [11149, 46831, 411, 562, 291, 360, 909, 3069, 322, 264, 2960, 293, 291, 500, 380, 458, 300, 309, 307, 364, 27878, 5102, 3477, 11, 718, 311, 1223, 341, 1365, 11, 286, 528, 281, 652, 257, 2199, 3861, 281, 2642, 10854, 11, 3133, 30, 286, 362, 5359, 300, 2906, 10854, 11, 700, 286, 362, 364, 9226, 1219, 286, 3909], "avg_logprob": -0.495762736110364, "compression_ratio": 1.5112359550561798, "no_speech_prob": 7.331371307373047e-06, "words": [{"start": 303.56, "end": 304.16, "word": "Exactly", "probability": 0.50628662109375}, {"start": 304.16, "end": 304.22, "word": " like", "probability": 0.6337890625}, {"start": 304.22, "end": 304.32, "word": " when", "probability": 0.65185546875}, {"start": 304.32, "end": 304.64, "word": " you", "probability": 0.939453125}, {"start": 304.64, "end": 304.78, "word": " do", "probability": 0.09356689453125}, {"start": 304.78, "end": 305.16, "word": " add", "probability": 0.69970703125}, {"start": 305.16, "end": 305.6, "word": " action", "probability": 0.9423828125}, {"start": 305.6, "end": 305.78, "word": " on", "probability": 0.58837890625}, {"start": 305.78, "end": 305.92, "word": " the", "probability": 0.43115234375}, {"start": 305.92, "end": 306.16, "word": " button", "probability": 0.54248046875}, {"start": 306.16, "end": 306.32, "word": " and", "probability": 0.50439453125}, {"start": 306.32, "end": 306.46, "word": " you", "probability": 0.9345703125}, {"start": 306.46, "end": 306.6, "word": " don't", "probability": 0.878662109375}, {"start": 306.6, "end": 306.88, "word": " know", "probability": 0.8623046875}, {"start": 306.88, "end": 307.02, "word": " that", "probability": 0.3251953125}, {"start": 307.02, "end": 307.18, "word": " it", "probability": 0.46533203125}, {"start": 307.18, "end": 307.52, "word": " is", "probability": 0.495361328125}, {"start": 307.52, "end": 307.58, "word": " an", "probability": 0.630859375}, {"start": 307.58, "end": 308.86, "word": " observer", "probability": 0.5390625}, {"start": 308.86, "end": 309.78, "word": " pattern", "probability": 0.75390625}, {"start": 309.78, "end": 310.86, "word": " Ok,", "probability": 0.290283203125}, {"start": 311.3, "end": 311.66, "word": " let's", "probability": 0.65869140625}, {"start": 311.66, "end": 312.38, "word": " understand", "probability": 0.272705078125}, {"start": 312.38, "end": 312.52, "word": " this", "probability": 0.833984375}, {"start": 312.52, "end": 312.84, "word": " example,", "probability": 0.92431640625}, {"start": 313.22, "end": 313.4, "word": " I", "probability": 0.86181640625}, {"start": 313.4, "end": 313.58, "word": " want", "probability": 0.77783203125}, {"start": 313.58, "end": 313.64, "word": " to", "probability": 0.96875}, {"start": 313.64, "end": 313.72, "word": " make", "probability": 0.63623046875}, {"start": 313.72, "end": 313.9, "word": " a", "probability": 0.890625}, {"start": 313.9, "end": 314.46, "word": " simple", "probability": 0.89599609375}, {"start": 314.46, "end": 314.46, "word": " application", "probability": 0.5283203125}, {"start": 314.46, "end": 314.64, "word": " to", "probability": 0.79345703125}, {"start": 314.64, "end": 314.82, "word": " draw", "probability": 0.89990234375}, {"start": 314.82, "end": 315.26, "word": " shapes,", "probability": 0.83544921875}, {"start": 315.88, "end": 316.14, "word": " ok?", "probability": 0.4658203125}, {"start": 316.68, "end": 316.86, "word": " I", "probability": 0.72900390625}, {"start": 316.86, "end": 317.04, "word": " have", "probability": 0.92431640625}, {"start": 317.04, "end": 317.54, "word": " classes", "probability": 0.82080078125}, {"start": 317.54, "end": 317.72, "word": " that", "probability": 0.5185546875}, {"start": 317.72, "end": 318.08, "word": " represent", "probability": 0.62841796875}, {"start": 318.08, "end": 318.62, "word": " shapes,", "probability": 0.9248046875}, {"start": 319.32, "end": 319.66, "word": " first", "probability": 0.3193359375}, {"start": 319.66, "end": 320.3, "word": " I", "probability": 0.65673828125}, {"start": 320.3, "end": 320.5, "word": " have", "probability": 0.9462890625}, {"start": 320.5, "end": 320.6, "word": " an", "probability": 0.69970703125}, {"start": 320.6, "end": 321.06, "word": " interface", "probability": 0.88330078125}, {"start": 321.06, "end": 321.48, "word": " called", "probability": 0.63720703125}, {"start": 321.48, "end": 321.88, "word": " I", "probability": 0.5361328125}, {"start": 321.88, "end": 322.2, "word": " shape", "probability": 0.481689453125}], "temperature": 1.0}, {"id": 14, "seek": 33783, "start": 323.09, "end": 337.83, "text": "On the basis that all shapes follow this interface, there is a method called draw that draws the shape and there is a method called describe that gives me a description of my text on this shape The first shape I made is called circle", "tokens": [11747, 264, 5143, 300, 439, 10854, 1524, 341, 9226, 11, 456, 307, 257, 3170, 1219, 2642, 300, 20045, 264, 3909, 293, 456, 307, 257, 3170, 1219, 6786, 300, 2709, 385, 257, 3855, 295, 452, 2487, 322, 341, 3909, 440, 700, 3909, 286, 1027, 307, 1219, 6329], "avg_logprob": -0.4950132801177654, "compression_ratio": 1.6762589928057554, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 323.09, "end": 323.29, "word": "On", "probability": 0.038818359375}, {"start": 323.29, "end": 323.39, "word": " the", "probability": 0.80322265625}, {"start": 323.39, "end": 323.53, "word": " basis", "probability": 0.798828125}, {"start": 323.53, "end": 323.75, "word": " that", "probability": 0.810546875}, {"start": 323.75, "end": 323.91, "word": " all", "probability": 0.77783203125}, {"start": 323.91, "end": 324.27, "word": " shapes", "probability": 0.580078125}, {"start": 324.27, "end": 324.75, "word": " follow", "probability": 0.478515625}, {"start": 324.75, "end": 325.23, "word": " this", "probability": 0.7109375}, {"start": 325.23, "end": 325.79, "word": " interface,", "probability": 0.80615234375}, {"start": 326.03, "end": 326.13, "word": " there", "probability": 0.468505859375}, {"start": 326.13, "end": 326.17, "word": " is", "probability": 0.60498046875}, {"start": 326.17, "end": 326.37, "word": " a", "probability": 0.66650390625}, {"start": 326.37, "end": 326.37, "word": " method", "probability": 0.95361328125}, {"start": 326.37, "end": 326.67, "word": " called", "probability": 0.751953125}, {"start": 326.67, "end": 326.99, "word": " draw", "probability": 0.41064453125}, {"start": 326.99, "end": 327.71, "word": " that", "probability": 0.321533203125}, {"start": 327.71, "end": 327.93, "word": " draws", "probability": 0.7587890625}, {"start": 327.93, "end": 328.11, "word": " the", "probability": 0.5693359375}, {"start": 328.11, "end": 328.33, "word": " shape", "probability": 0.8544921875}, {"start": 328.33, "end": 328.47, "word": " and", "probability": 0.57421875}, {"start": 328.47, "end": 328.51, "word": " there", "probability": 0.66162109375}, {"start": 328.51, "end": 328.65, "word": " is", "probability": 0.92626953125}, {"start": 328.65, "end": 328.65, "word": " a", "probability": 0.461181640625}, {"start": 328.65, "end": 328.81, "word": " method", "probability": 0.9248046875}, {"start": 328.81, "end": 329.19, "word": " called", "probability": 0.853515625}, {"start": 329.19, "end": 330.43, "word": " describe", "probability": 0.83251953125}, {"start": 330.43, "end": 330.95, "word": " that", "probability": 0.79833984375}, {"start": 330.95, "end": 331.13, "word": " gives", "probability": 0.38232421875}, {"start": 331.13, "end": 331.27, "word": " me", "probability": 0.703125}, {"start": 331.27, "end": 331.47, "word": " a", "probability": 0.70263671875}, {"start": 331.47, "end": 331.73, "word": " description", "probability": 0.80615234375}, {"start": 331.73, "end": 331.91, "word": " of", "probability": 0.87744140625}, {"start": 331.91, "end": 332.27, "word": " my", "probability": 0.492919921875}, {"start": 332.27, "end": 332.27, "word": " text", "probability": 0.83740234375}, {"start": 332.27, "end": 332.55, "word": " on", "probability": 0.81591796875}, {"start": 332.55, "end": 333.17, "word": " this", "probability": 0.8447265625}, {"start": 333.17, "end": 333.45, "word": " shape", "probability": 0.87353515625}, {"start": 333.45, "end": 334.65, "word": " The", "probability": 0.1334228515625}, {"start": 334.65, "end": 334.93, "word": " first", "probability": 0.7109375}, {"start": 334.93, "end": 336.13, "word": " shape", "probability": 0.86474609375}, {"start": 336.13, "end": 336.23, "word": " I", "probability": 0.62939453125}, {"start": 336.23, "end": 336.47, "word": " made", "probability": 0.6328125}, {"start": 336.47, "end": 336.59, "word": " is", "probability": 0.316650390625}, {"start": 336.59, "end": 336.93, "word": " called", "probability": 0.67578125}, {"start": 336.93, "end": 337.83, "word": " circle", "probability": 0.74462890625}], "temperature": 1.0}, {"id": 15, "seek": 35856, "start": 339.12, "end": 358.56, "text": "which is a circle that implements I shape and then gives it the characteristics of the circle which is center and radius half a line then this is a constructor setters and getters and in the end there are two methods implement that are present in the interface one of them is called draw which is supposed to happen when I call it", "tokens": [13690, 307, 257, 6329, 300, 704, 17988, 286, 3909, 293, 550, 2709, 309, 264, 10891, 295, 264, 6329, 597, 307, 3056, 293, 15845, 1922, 257, 1622, 550, 341, 307, 257, 1817, 14535, 992, 1559, 293, 483, 1559, 293, 294, 264, 917, 456, 366, 732, 7150, 4445, 300, 366, 1974, 294, 264, 9226, 472, 295, 552, 307, 1219, 2642, 597, 307, 3442, 281, 1051, 562, 286, 818, 309], "avg_logprob": -0.5615808762171689, "compression_ratio": 1.8032786885245902, "no_speech_prob": 3.337860107421875e-06, "words": [{"start": 339.12, "end": 339.36, "word": "which", "probability": 0.2354736328125}, {"start": 339.36, "end": 339.62, "word": " is", "probability": 0.84814453125}, {"start": 339.62, "end": 339.92, "word": " a", "probability": 0.78759765625}, {"start": 339.92, "end": 340.14, "word": " circle", "probability": 0.79296875}, {"start": 340.14, "end": 340.68, "word": " that", "probability": 0.2275390625}, {"start": 340.68, "end": 341.08, "word": " implements", "probability": 0.751708984375}, {"start": 341.08, "end": 341.38, "word": " I", "probability": 0.751953125}, {"start": 341.38, "end": 341.68, "word": " shape", "probability": 0.70166015625}, {"start": 341.68, "end": 342.26, "word": " and", "probability": 0.5126953125}, {"start": 342.26, "end": 342.5, "word": " then", "probability": 0.473876953125}, {"start": 342.5, "end": 342.74, "word": " gives", "probability": 0.1298828125}, {"start": 342.74, "end": 342.9, "word": " it", "probability": 0.5625}, {"start": 342.9, "end": 342.9, "word": " the", "probability": 0.40576171875}, {"start": 342.9, "end": 343.22, "word": " characteristics", "probability": 0.255615234375}, {"start": 343.22, "end": 343.34, "word": " of", "probability": 0.94970703125}, {"start": 343.34, "end": 343.48, "word": " the", "probability": 0.759765625}, {"start": 343.48, "end": 343.68, "word": " circle", "probability": 0.92041015625}, {"start": 343.68, "end": 344.36, "word": " which", "probability": 0.515625}, {"start": 344.36, "end": 345.18, "word": " is", "probability": 0.775390625}, {"start": 345.18, "end": 345.62, "word": " center", "probability": 0.300048828125}, {"start": 345.62, "end": 346.48, "word": " and", "probability": 0.88037109375}, {"start": 346.48, "end": 346.9, "word": " radius", "probability": 0.970703125}, {"start": 346.9, "end": 347.22, "word": " half", "probability": 0.1937255859375}, {"start": 347.22, "end": 347.34, "word": " a", "probability": 0.326416015625}, {"start": 347.34, "end": 347.52, "word": " line", "probability": 0.5380859375}, {"start": 347.52, "end": 348.54, "word": " then", "probability": 0.30615234375}, {"start": 348.54, "end": 348.76, "word": " this", "probability": 0.611328125}, {"start": 348.76, "end": 348.82, "word": " is", "probability": 0.8076171875}, {"start": 348.82, "end": 348.96, "word": " a", "probability": 0.7763671875}, {"start": 348.96, "end": 349.42, "word": " constructor", "probability": 0.6217041015625}, {"start": 349.42, "end": 351.2, "word": " setters", "probability": 0.4910888671875}, {"start": 351.2, "end": 351.34, "word": " and", "probability": 0.93212890625}, {"start": 351.34, "end": 351.74, "word": " getters", "probability": 0.95849609375}, {"start": 351.74, "end": 352.18, "word": " and", "probability": 0.75537109375}, {"start": 352.18, "end": 352.26, "word": " in", "probability": 0.2322998046875}, {"start": 352.26, "end": 352.34, "word": " the", "probability": 0.92333984375}, {"start": 352.34, "end": 352.52, "word": " end", "probability": 0.892578125}, {"start": 352.52, "end": 352.76, "word": " there", "probability": 0.69482421875}, {"start": 352.76, "end": 352.8, "word": " are", "probability": 0.7900390625}, {"start": 352.8, "end": 353.06, "word": " two", "probability": 0.84423828125}, {"start": 353.06, "end": 353.48, "word": " methods", "probability": 0.8603515625}, {"start": 353.48, "end": 354.06, "word": " implement", "probability": 0.3212890625}, {"start": 354.06, "end": 354.72, "word": " that", "probability": 0.326416015625}, {"start": 354.72, "end": 354.8, "word": " are", "probability": 0.50439453125}, {"start": 354.8, "end": 355.04, "word": " present", "probability": 0.42333984375}, {"start": 355.04, "end": 355.16, "word": " in", "probability": 0.87548828125}, {"start": 355.16, "end": 355.26, "word": " the", "probability": 0.88134765625}, {"start": 355.26, "end": 355.74, "word": " interface", "probability": 0.8642578125}, {"start": 355.74, "end": 355.98, "word": " one", "probability": 0.666015625}, {"start": 355.98, "end": 356.06, "word": " of", "probability": 0.389404296875}, {"start": 356.06, "end": 356.12, "word": " them", "probability": 0.7421875}, {"start": 356.12, "end": 356.16, "word": " is", "probability": 0.87451171875}, {"start": 356.16, "end": 356.3, "word": " called", "probability": 0.7412109375}, {"start": 356.3, "end": 356.62, "word": " draw", "probability": 0.6455078125}, {"start": 356.62, "end": 357.56, "word": " which", "probability": 0.63232421875}, {"start": 357.56, "end": 357.64, "word": " is", "probability": 0.62158203125}, {"start": 357.64, "end": 357.84, "word": " supposed", "probability": 0.68603515625}, {"start": 357.84, "end": 357.94, "word": " to", "probability": 0.8525390625}, {"start": 357.94, "end": 357.94, "word": " happen", "probability": 0.150390625}, {"start": 357.94, "end": 358.0, "word": " when", "probability": 0.80712890625}, {"start": 358.0, "end": 358.14, "word": " I", "probability": 0.376220703125}, {"start": 358.14, "end": 358.38, "word": " call", "probability": 0.321044921875}, {"start": 358.38, "end": 358.56, "word": " it", "probability": 0.775390625}], "temperature": 1.0}, {"id": 16, "seek": 38174, "start": 364.74, "end": 381.74, "text": "Draw oval means to draw an oval shape. If you give the oval shape the center and half of the circle twice, which is the oval shape, consider that there are two circles. If you put them next to each other, what happens to the oval shape? Circle. Describe, just repeat that this is the center of the circle.", "tokens": [35, 5131, 37175, 1355, 281, 2642, 364, 37175, 3909, 13, 759, 291, 976, 264, 37175, 3909, 264, 3056, 293, 1922, 295, 264, 6329, 6091, 11, 597, 307, 264, 37175, 3909, 11, 1949, 300, 456, 366, 732, 13040, 13, 759, 291, 829, 552, 958, 281, 1184, 661, 11, 437, 2314, 281, 264, 37175, 3909, 30, 29381, 13, 3885, 8056, 11, 445, 7149, 300, 341, 307, 264, 3056, 295, 264, 6329, 13], "avg_logprob": -0.5127640677170014, "compression_ratio": 1.7836257309941521, "no_speech_prob": 6.198883056640625e-06, "words": [{"start": 364.74, "end": 365.18, "word": "Draw", "probability": 0.5767822265625}, {"start": 365.18, "end": 365.52, "word": " oval", "probability": 0.6962890625}, {"start": 365.52, "end": 366.46, "word": " means", "probability": 0.382568359375}, {"start": 366.46, "end": 366.72, "word": " to", "probability": 0.28125}, {"start": 366.72, "end": 366.72, "word": " draw", "probability": 0.89111328125}, {"start": 366.72, "end": 367.08, "word": " an", "probability": 0.375}, {"start": 367.08, "end": 367.26, "word": " oval", "probability": 0.7333984375}, {"start": 367.26, "end": 367.52, "word": " shape.", "probability": 0.7001953125}, {"start": 367.94, "end": 368.32, "word": " If", "probability": 0.67822265625}, {"start": 368.32, "end": 368.36, "word": " you", "probability": 0.513671875}, {"start": 368.36, "end": 368.58, "word": " give", "probability": 0.400634765625}, {"start": 368.58, "end": 368.74, "word": " the", "probability": 0.5615234375}, {"start": 368.74, "end": 369.3, "word": " oval", "probability": 0.56689453125}, {"start": 369.3, "end": 369.6, "word": " shape", "probability": 0.77978515625}, {"start": 369.6, "end": 369.8, "word": " the", "probability": 0.407958984375}, {"start": 369.8, "end": 370.22, "word": " center", "probability": 0.64111328125}, {"start": 370.22, "end": 370.74, "word": " and", "probability": 0.796875}, {"start": 370.74, "end": 370.9, "word": " half", "probability": 0.478759765625}, {"start": 370.9, "end": 371.04, "word": " of", "probability": 0.394287109375}, {"start": 371.04, "end": 371.08, "word": " the", "probability": 0.83935546875}, {"start": 371.08, "end": 371.24, "word": " circle", "probability": 0.2099609375}, {"start": 371.24, "end": 371.68, "word": " twice,", "probability": 0.8232421875}, {"start": 371.8, "end": 371.92, "word": " which", "probability": 0.2724609375}, {"start": 371.92, "end": 372.06, "word": " is", "probability": 0.77783203125}, {"start": 372.06, "end": 372.22, "word": " the", "probability": 0.62255859375}, {"start": 372.22, "end": 372.74, "word": " oval", "probability": 0.93359375}, {"start": 372.74, "end": 372.98, "word": " shape,", "probability": 0.8935546875}, {"start": 373.1, "end": 373.36, "word": " consider", "probability": 0.286865234375}, {"start": 373.36, "end": 373.58, "word": " that", "probability": 0.77490234375}, {"start": 373.58, "end": 373.74, "word": " there", "probability": 0.8212890625}, {"start": 373.74, "end": 373.76, "word": " are", "probability": 0.90234375}, {"start": 373.76, "end": 373.88, "word": " two", "probability": 0.890625}, {"start": 373.88, "end": 374.02, "word": " circles.", "probability": 0.72314453125}, {"start": 374.92, "end": 375.36, "word": " If", "probability": 0.86865234375}, {"start": 375.36, "end": 375.42, "word": " you", "probability": 0.86279296875}, {"start": 375.42, "end": 375.64, "word": " put", "probability": 0.68017578125}, {"start": 375.64, "end": 375.8, "word": " them", "probability": 0.86181640625}, {"start": 375.8, "end": 376.0, "word": " next", "probability": 0.751953125}, {"start": 376.0, "end": 376.06, "word": " to", "probability": 0.9765625}, {"start": 376.06, "end": 376.28, "word": " each", "probability": 0.95166015625}, {"start": 376.28, "end": 376.28, "word": " other,", "probability": 0.89892578125}, {"start": 376.38, "end": 376.46, "word": " what", "probability": 0.87548828125}, {"start": 376.46, "end": 376.66, "word": " happens", "probability": 0.53564453125}, {"start": 376.66, "end": 377.04, "word": " to", "probability": 0.869140625}, {"start": 377.04, "end": 377.06, "word": " the", "probability": 0.86767578125}, {"start": 377.06, "end": 377.24, "word": " oval", "probability": 0.8359375}, {"start": 377.24, "end": 377.54, "word": " shape?", "probability": 0.83251953125}, {"start": 378.12, "end": 378.42, "word": " Circle.", "probability": 0.422119140625}, {"start": 379.0, "end": 379.44, "word": " Describe,", "probability": 0.914794921875}, {"start": 379.86, "end": 380.04, "word": " just", "probability": 0.394287109375}, {"start": 380.04, "end": 380.2, "word": " repeat", "probability": 0.12347412109375}, {"start": 380.2, "end": 380.86, "word": " that", "probability": 0.4755859375}, {"start": 380.86, "end": 381.1, "word": " this", "probability": 0.83056640625}, {"start": 381.1, "end": 381.36, "word": " is", "probability": 0.92333984375}, {"start": 381.36, "end": 381.74, "word": " the", "probability": 0.302490234375}, {"start": 381.74, "end": 381.74, "word": " center", "probability": 0.413818359375}, {"start": 381.74, "end": 381.74, "word": " of", "probability": 0.48046875}, {"start": 381.74, "end": 381.74, "word": " the", "probability": 0.8154296875}, {"start": 381.74, "end": 381.74, "word": " circle.", "probability": 0.59130859375}], "temperature": 1.0}, {"id": 17, "seek": 39849, "start": 382.39, "end": 398.49, "text": "The most important thing is that I made another class that represents a rectangle, the name of the class is rectangle, its attributes are different, x and y are the point of the rectangle's corner, and width and height are length and width", "tokens": [2278, 881, 1021, 551, 307, 300, 286, 1027, 1071, 1508, 300, 8855, 257, 21930, 11, 264, 1315, 295, 264, 1508, 307, 21930, 11, 1080, 17212, 366, 819, 11, 2031, 293, 288, 366, 264, 935, 295, 264, 21930, 311, 4538, 11, 293, 11402, 293, 6681, 366, 4641, 293, 11402], "avg_logprob": -0.5746173664015166, "compression_ratio": 1.614864864864865, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 382.39, "end": 382.63, "word": "The", "probability": 0.116455078125}, {"start": 382.63, "end": 383.01, "word": " most", "probability": 0.4033203125}, {"start": 383.01, "end": 383.01, "word": " important", "probability": 0.875}, {"start": 383.01, "end": 383.45, "word": " thing", "probability": 0.480712890625}, {"start": 383.45, "end": 383.95, "word": " is", "probability": 0.6689453125}, {"start": 383.95, "end": 383.95, "word": " that", "probability": 0.456787109375}, {"start": 383.95, "end": 384.01, "word": " I", "probability": 0.63525390625}, {"start": 384.01, "end": 384.21, "word": " made", "probability": 0.31005859375}, {"start": 384.21, "end": 384.31, "word": " another", "probability": 0.525390625}, {"start": 384.31, "end": 384.57, "word": " class", "probability": 0.90966796875}, {"start": 384.57, "end": 384.97, "word": " that", "probability": 0.267822265625}, {"start": 384.97, "end": 385.45, "word": " represents", "probability": 0.552734375}, {"start": 385.45, "end": 385.91, "word": " a", "probability": 0.54150390625}, {"start": 385.91, "end": 386.33, "word": " rectangle,", "probability": 0.91064453125}, {"start": 387.21, "end": 387.49, "word": " the", "probability": 0.29248046875}, {"start": 387.49, "end": 387.65, "word": " name", "probability": 0.60693359375}, {"start": 387.65, "end": 387.77, "word": " of", "probability": 0.9130859375}, {"start": 387.77, "end": 387.83, "word": " the", "probability": 0.7392578125}, {"start": 387.83, "end": 388.05, "word": " class", "probability": 0.93798828125}, {"start": 388.05, "end": 388.13, "word": " is", "probability": 0.84716796875}, {"start": 388.13, "end": 388.59, "word": " rectangle,", "probability": 0.8359375}, {"start": 389.09, "end": 389.21, "word": " its", "probability": 0.2041015625}, {"start": 389.21, "end": 389.57, "word": " attributes", "probability": 0.8212890625}, {"start": 389.57, "end": 389.85, "word": " are", "probability": 0.89404296875}, {"start": 389.85, "end": 390.33, "word": " different,", "probability": 0.845703125}, {"start": 390.83, "end": 391.09, "word": " x", "probability": 0.67236328125}, {"start": 391.09, "end": 391.25, "word": " and", "probability": 0.63623046875}, {"start": 391.25, "end": 391.43, "word": " y", "probability": 0.98291015625}, {"start": 391.43, "end": 391.57, "word": " are", "probability": 0.42626953125}, {"start": 391.57, "end": 391.67, "word": " the", "probability": 0.35888671875}, {"start": 391.67, "end": 391.85, "word": " point", "probability": 0.34716796875}, {"start": 391.85, "end": 393.63, "word": " of", "probability": 0.493896484375}, {"start": 393.63, "end": 393.77, "word": " the", "probability": 0.6728515625}, {"start": 393.77, "end": 393.79, "word": " rectangle's", "probability": 0.5491943359375}, {"start": 393.79, "end": 395.15, "word": " corner,", "probability": 0.751953125}, {"start": 396.49, "end": 396.77, "word": " and", "probability": 0.305908203125}, {"start": 396.77, "end": 396.97, "word": " width", "probability": 0.90478515625}, {"start": 396.97, "end": 397.15, "word": " and", "probability": 0.85888671875}, {"start": 397.15, "end": 397.43, "word": " height", "probability": 0.96142578125}, {"start": 397.43, "end": 397.95, "word": " are", "probability": 0.58349609375}, {"start": 397.95, "end": 398.13, "word": " length", "probability": 0.322509765625}, {"start": 398.13, "end": 398.29, "word": " and", "probability": 0.94580078125}, {"start": 398.29, "end": 398.49, "word": " width", "probability": 0.92919921875}], "temperature": 1.0}, {"id": 18, "seek": 42487, "start": 400.09, "end": 424.87, "text": "this is constructor and the same thing, I implemented two methods, draw that makes a rectangle and describe that makes a rectangle now I made a simple frame that is a small face, so that when I click on the button, it draws a circle, do you understand what I mean? because when I click on the button, it is an action performed in this swing, okay? I created an object from C", "tokens": [11176, 307, 47479, 293, 264, 912, 551, 11, 286, 12270, 732, 7150, 11, 2642, 300, 1669, 257, 21930, 293, 6786, 300, 1669, 257, 21930, 586, 286, 1027, 257, 2199, 3920, 300, 307, 257, 1359, 1851, 11, 370, 300, 562, 286, 2052, 322, 264, 2960, 11, 309, 20045, 257, 6329, 11, 360, 291, 1223, 437, 286, 914, 30, 570, 562, 286, 2052, 322, 264, 2960, 11, 309, 307, 364, 3069, 10332, 294, 341, 11173, 11, 1392, 30, 286, 2942, 364, 2657, 490, 383], "avg_logprob": -0.583960860608572, "compression_ratio": 1.7725118483412323, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 400.09, "end": 400.33, "word": "this", "probability": 0.321044921875}, {"start": 400.33, "end": 400.39, "word": " is", "probability": 0.7880859375}, {"start": 400.39, "end": 400.87, "word": " constructor", "probability": 0.578125}, {"start": 400.87, "end": 401.01, "word": " and", "probability": 0.62255859375}, {"start": 401.01, "end": 401.07, "word": " the", "probability": 0.1334228515625}, {"start": 401.07, "end": 401.19, "word": " same", "probability": 0.86376953125}, {"start": 401.19, "end": 401.57, "word": " thing,", "probability": 0.6943359375}, {"start": 401.69, "end": 401.69, "word": " I", "probability": 0.441162109375}, {"start": 401.69, "end": 402.17, "word": " implemented", "probability": 0.2352294921875}, {"start": 402.17, "end": 402.63, "word": " two", "probability": 0.763671875}, {"start": 402.63, "end": 402.99, "word": " methods,", "probability": 0.89013671875}, {"start": 403.13, "end": 403.35, "word": " draw", "probability": 0.63427734375}, {"start": 403.35, "end": 403.67, "word": " that", "probability": 0.2044677734375}, {"start": 403.67, "end": 404.01, "word": " makes", "probability": 0.207275390625}, {"start": 404.01, "end": 404.61, "word": " a", "probability": 0.309326171875}, {"start": 404.61, "end": 405.21, "word": " rectangle", "probability": 0.751953125}, {"start": 405.21, "end": 406.29, "word": " and", "probability": 0.5341796875}, {"start": 406.29, "end": 406.63, "word": " describe", "probability": 0.6689453125}, {"start": 406.63, "end": 407.03, "word": " that", "probability": 0.64501953125}, {"start": 407.03, "end": 407.33, "word": " makes", "probability": 0.65087890625}, {"start": 407.33, "end": 407.71, "word": " a", "probability": 0.48095703125}, {"start": 407.71, "end": 409.21, "word": " rectangle", "probability": 0.9140625}, {"start": 409.21, "end": 410.03, "word": " now", "probability": 0.27978515625}, {"start": 410.03, "end": 410.19, "word": " I", "probability": 0.5595703125}, {"start": 410.19, "end": 410.39, "word": " made", "probability": 0.57666015625}, {"start": 410.39, "end": 410.53, "word": " a", "probability": 0.912109375}, {"start": 410.53, "end": 411.01, "word": " simple", "probability": 0.51220703125}, {"start": 411.01, "end": 411.01, "word": " frame", "probability": 0.87109375}, {"start": 411.01, "end": 411.23, "word": " that", "probability": 0.3935546875}, {"start": 411.23, "end": 411.33, "word": " is", "probability": 0.78125}, {"start": 411.33, "end": 411.43, "word": " a", "probability": 0.849609375}, {"start": 411.43, "end": 411.45, "word": " small", "probability": 0.8515625}, {"start": 411.45, "end": 411.67, "word": " face,", "probability": 0.454345703125}, {"start": 412.17, "end": 412.39, "word": " so", "probability": 0.44482421875}, {"start": 412.39, "end": 412.61, "word": " that", "probability": 0.53662109375}, {"start": 412.61, "end": 412.71, "word": " when", "probability": 0.87060546875}, {"start": 412.71, "end": 413.01, "word": " I", "probability": 0.939453125}, {"start": 413.01, "end": 413.23, "word": " click", "probability": 0.348876953125}, {"start": 413.23, "end": 413.39, "word": " on", "probability": 0.83642578125}, {"start": 413.39, "end": 413.51, "word": " the", "probability": 0.75341796875}, {"start": 413.51, "end": 413.73, "word": " button,", "probability": 0.66357421875}, {"start": 415.09, "end": 415.09, "word": " it", "probability": 0.75927734375}, {"start": 415.09, "end": 415.39, "word": " draws", "probability": 0.35107421875}, {"start": 415.39, "end": 415.93, "word": " a", "probability": 0.8671875}, {"start": 415.93, "end": 416.27, "word": " circle,", "probability": 0.9111328125}, {"start": 417.05, "end": 417.23, "word": " do", "probability": 0.1669921875}, {"start": 417.23, "end": 417.23, "word": " you", "probability": 0.9677734375}, {"start": 417.23, "end": 417.37, "word": " understand", "probability": 0.474365234375}, {"start": 417.37, "end": 417.51, "word": " what", "probability": 0.7099609375}, {"start": 417.51, "end": 417.57, "word": " I", "probability": 0.708984375}, {"start": 417.57, "end": 417.77, "word": " mean?", "probability": 0.357421875}, {"start": 418.01, "end": 418.29, "word": " because", "probability": 0.5068359375}, {"start": 418.29, "end": 418.47, "word": " when", "probability": 0.8623046875}, {"start": 418.47, "end": 418.57, "word": " I", "probability": 0.92138671875}, {"start": 418.57, "end": 418.77, "word": " click", "probability": 0.8173828125}, {"start": 418.77, "end": 418.95, "word": " on", "probability": 0.89453125}, {"start": 418.95, "end": 419.01, "word": " the", "probability": 0.8271484375}, {"start": 419.01, "end": 419.09, "word": " button,", "probability": 0.8583984375}, {"start": 419.25, "end": 419.25, "word": " it", "probability": 0.56396484375}, {"start": 419.25, "end": 419.37, "word": " is", "probability": 0.4951171875}, {"start": 419.37, "end": 420.11, "word": " an", "probability": 0.4267578125}, {"start": 420.11, "end": 420.49, "word": " action", "probability": 0.94384765625}, {"start": 420.49, "end": 421.55, "word": " performed", "probability": 0.62548828125}, {"start": 421.55, "end": 421.69, "word": " in", "probability": 0.5185546875}, {"start": 421.69, "end": 421.77, "word": " this", "probability": 0.47314453125}, {"start": 421.77, "end": 422.11, "word": " swing,", "probability": 0.900390625}, {"start": 422.83, "end": 423.07, "word": " okay?", "probability": 0.2408447265625}, {"start": 423.57, "end": 423.75, "word": " I", "probability": 0.75048828125}, {"start": 423.75, "end": 423.95, "word": " created", "probability": 0.544921875}, {"start": 423.95, "end": 424.11, "word": " an", "probability": 0.82666015625}, {"start": 424.11, "end": 424.31, "word": " object", "probability": 0.97314453125}, {"start": 424.31, "end": 424.57, "word": " from", "probability": 0.67138671875}, {"start": 424.57, "end": 424.87, "word": " C", "probability": 0.666015625}], "temperature": 1.0}, {"id": 19, "seek": 44922, "start": 427.14, "end": 449.22, "text": "Okay, and I give him the data of the circle, which is the center, for example, and half of the line is 100. Okay, and then I tell him c dot draw, and you study it on the fragment itself, so I tell him get graphics. When will this code be executed? When I press the button. Run.", "tokens": [8297, 11, 293, 286, 976, 796, 264, 1412, 295, 264, 6329, 11, 597, 307, 264, 3056, 11, 337, 1365, 11, 293, 1922, 295, 264, 1622, 307, 2319, 13, 1033, 11, 293, 550, 286, 980, 796, 269, 5893, 2642, 11, 293, 291, 2979, 309, 322, 264, 26424, 2564, 11, 370, 286, 980, 796, 483, 11837, 13, 1133, 486, 341, 3089, 312, 17577, 30, 1133, 286, 1886, 264, 2960, 13, 8950, 13], "avg_logprob": -0.5167253672237128, "compression_ratio": 1.5054347826086956, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 427.14, "end": 427.42, "word": "Okay,", "probability": 0.0631103515625}, {"start": 427.6, "end": 427.66, "word": " and", "probability": 0.515625}, {"start": 427.66, "end": 427.76, "word": " I", "probability": 0.60498046875}, {"start": 427.76, "end": 427.96, "word": " give", "probability": 0.443359375}, {"start": 427.96, "end": 428.14, "word": " him", "probability": 0.64404296875}, {"start": 428.14, "end": 428.16, "word": " the", "probability": 0.63037109375}, {"start": 428.16, "end": 428.34, "word": " data", "probability": 0.10260009765625}, {"start": 428.34, "end": 428.62, "word": " of", "probability": 0.68896484375}, {"start": 428.62, "end": 428.7, "word": " the", "probability": 0.73486328125}, {"start": 428.7, "end": 428.94, "word": " circle,", "probability": 0.83349609375}, {"start": 429.42, "end": 429.46, "word": " which", "probability": 0.63720703125}, {"start": 429.46, "end": 429.62, "word": " is", "probability": 0.88671875}, {"start": 429.62, "end": 429.96, "word": " the", "probability": 0.44189453125}, {"start": 429.96, "end": 430.24, "word": " center,", "probability": 0.71044921875}, {"start": 430.26, "end": 430.26, "word": " for", "probability": 0.43359375}, {"start": 430.26, "end": 430.26, "word": " example,", "probability": 0.95068359375}, {"start": 431.42, "end": 431.52, "word": " and", "probability": 0.8662109375}, {"start": 431.52, "end": 431.68, "word": " half", "probability": 0.6953125}, {"start": 431.68, "end": 431.8, "word": " of", "probability": 0.412841796875}, {"start": 431.8, "end": 431.86, "word": " the", "probability": 0.83740234375}, {"start": 431.86, "end": 432.12, "word": " line", "probability": 0.6728515625}, {"start": 432.12, "end": 432.54, "word": " is", "probability": 0.54736328125}, {"start": 432.54, "end": 432.84, "word": " 100.", "probability": 0.60546875}, {"start": 433.44, "end": 433.8, "word": " Okay,", "probability": 0.55419921875}, {"start": 434.44, "end": 434.64, "word": " and", "probability": 0.73681640625}, {"start": 434.64, "end": 434.82, "word": " then", "probability": 0.80517578125}, {"start": 434.82, "end": 434.94, "word": " I", "probability": 0.8681640625}, {"start": 434.94, "end": 435.12, "word": " tell", "probability": 0.42529296875}, {"start": 435.12, "end": 435.26, "word": " him", "probability": 0.90966796875}, {"start": 435.26, "end": 435.54, "word": " c", "probability": 0.33203125}, {"start": 435.54, "end": 435.96, "word": " dot", "probability": 0.392578125}, {"start": 435.96, "end": 437.14, "word": " draw,", "probability": 0.796875}, {"start": 438.16, "end": 438.36, "word": " and", "probability": 0.82421875}, {"start": 438.36, "end": 438.48, "word": " you", "probability": 0.2529296875}, {"start": 438.48, "end": 438.64, "word": " study", "probability": 0.69873046875}, {"start": 438.64, "end": 438.86, "word": " it", "probability": 0.66064453125}, {"start": 438.86, "end": 438.96, "word": " on", "probability": 0.81298828125}, {"start": 438.96, "end": 439.16, "word": " the", "probability": 0.91064453125}, {"start": 439.16, "end": 439.58, "word": " fragment", "probability": 0.7412109375}, {"start": 439.58, "end": 439.98, "word": " itself,", "probability": 0.78466796875}, {"start": 440.14, "end": 440.2, "word": " so", "probability": 0.72998046875}, {"start": 440.2, "end": 440.34, "word": " I", "probability": 0.96337890625}, {"start": 440.34, "end": 440.46, "word": " tell", "probability": 0.6259765625}, {"start": 440.46, "end": 440.56, "word": " him", "probability": 0.8974609375}, {"start": 440.56, "end": 440.76, "word": " get", "probability": 0.8125}, {"start": 440.76, "end": 441.28, "word": " graphics.", "probability": 0.8603515625}, {"start": 445.0, "end": 445.4, "word": " When", "probability": 0.4931640625}, {"start": 445.4, "end": 445.58, "word": " will", "probability": 0.6591796875}, {"start": 445.58, "end": 445.58, "word": " this", "probability": 0.87451171875}, {"start": 445.58, "end": 445.78, "word": " code", "probability": 0.93701171875}, {"start": 445.78, "end": 446.02, "word": " be", "probability": 0.6279296875}, {"start": 446.02, "end": 446.42, "word": " executed?", "probability": 0.76318359375}, {"start": 446.72, "end": 447.08, "word": " When", "probability": 0.82470703125}, {"start": 447.08, "end": 447.2, "word": " I", "probability": 0.880859375}, {"start": 447.2, "end": 447.42, "word": " press", "probability": 0.59130859375}, {"start": 447.42, "end": 448.32, "word": " the", "probability": 0.798828125}, {"start": 448.32, "end": 448.56, "word": " button.", "probability": 0.81787109375}, {"start": 448.9, "end": 449.22, "word": " Run.", "probability": 0.45068359375}], "temperature": 1.0}, {"id": 20, "seek": 47922, "start": 451.56, "end": 479.22, "text": "this is add shape and this is circle if you want to draw a rectangle it's exactly the same thing you say rectangle R new rectangle and also give it a point 50 50 180 which is the width and height rectangle free", "tokens": [11176, 307, 909, 3909, 293, 341, 307, 6329, 498, 291, 528, 281, 2642, 257, 21930, 309, 311, 2293, 264, 912, 551, 291, 584, 21930, 497, 777, 21930, 293, 611, 976, 309, 257, 935, 2625, 2625, 11971, 597, 307, 264, 11402, 293, 6681, 21930, 1737], "avg_logprob": -0.621527804268731, "compression_ratio": 1.5217391304347827, "no_speech_prob": 1.9669532775878906e-06, "words": [{"start": 451.56, "end": 451.88, "word": "this", "probability": 0.1043701171875}, {"start": 451.88, "end": 451.88, "word": " is", "probability": 0.57080078125}, {"start": 451.88, "end": 452.1, "word": " add", "probability": 0.4873046875}, {"start": 452.1, "end": 452.42, "word": " shape", "probability": 0.90234375}, {"start": 452.42, "end": 452.52, "word": " and", "probability": 0.4619140625}, {"start": 452.52, "end": 452.58, "word": " this", "probability": 0.82763671875}, {"start": 452.58, "end": 452.64, "word": " is", "probability": 0.79345703125}, {"start": 452.64, "end": 454.04, "word": " circle", "probability": 0.2198486328125}, {"start": 454.04, "end": 454.8, "word": " if", "probability": 0.45654296875}, {"start": 454.8, "end": 455.92, "word": " you", "probability": 0.91455078125}, {"start": 455.92, "end": 455.98, "word": " want", "probability": 0.70947265625}, {"start": 455.98, "end": 456.1, "word": " to", "probability": 0.83837890625}, {"start": 456.1, "end": 456.44, "word": " draw", "probability": 0.814453125}, {"start": 456.44, "end": 457.2, "word": " a", "probability": 0.287841796875}, {"start": 457.2, "end": 457.54, "word": " rectangle", "probability": 0.92236328125}, {"start": 457.54, "end": 459.74, "word": " it's", "probability": 0.23028564453125}, {"start": 459.74, "end": 459.9, "word": " exactly", "probability": 0.3740234375}, {"start": 459.9, "end": 459.96, "word": " the", "probability": 0.82470703125}, {"start": 459.96, "end": 460.2, "word": " same", "probability": 0.91259765625}, {"start": 460.2, "end": 460.22, "word": " thing", "probability": 0.3212890625}, {"start": 460.22, "end": 460.82, "word": " you", "probability": 0.338623046875}, {"start": 460.82, "end": 461.08, "word": " say", "probability": 0.309326171875}, {"start": 461.08, "end": 462.34, "word": " rectangle", "probability": 0.849609375}, {"start": 462.34, "end": 463.56, "word": " R", "probability": 0.4033203125}, {"start": 463.56, "end": 464.66, "word": " new", "probability": 0.71533203125}, {"start": 464.66, "end": 465.62, "word": " rectangle", "probability": 0.90625}, {"start": 465.62, "end": 466.3, "word": " and", "probability": 0.6318359375}, {"start": 466.3, "end": 466.5, "word": " also", "probability": 0.284423828125}, {"start": 466.5, "end": 466.5, "word": " give", "probability": 0.57421875}, {"start": 466.5, "end": 466.86, "word": " it", "probability": 0.67041015625}, {"start": 466.86, "end": 466.92, "word": " a", "probability": 0.7060546875}, {"start": 466.92, "end": 467.16, "word": " point", "probability": 0.74365234375}, {"start": 467.16, "end": 468.12, "word": " 50", "probability": 0.544921875}, {"start": 468.12, "end": 468.94, "word": " 50", "probability": 0.50830078125}, {"start": 468.94, "end": 470.08, "word": " 180", "probability": 0.72802734375}, {"start": 470.08, "end": 471.2, "word": " which", "probability": 0.759765625}, {"start": 471.2, "end": 471.34, "word": " is", "probability": 0.8984375}, {"start": 471.34, "end": 471.4, "word": " the", "probability": 0.52587890625}, {"start": 471.4, "end": 471.6, "word": " width", "probability": 0.921875}, {"start": 471.6, "end": 471.78, "word": " and", "probability": 0.94482421875}, {"start": 471.78, "end": 472.68, "word": " height", "probability": 0.58447265625}, {"start": 472.68, "end": 475.06, "word": " rectangle", "probability": 0.8701171875}, {"start": 475.06, "end": 479.22, "word": " free", "probability": 0.0789794921875}], "temperature": 1.0}, {"id": 21, "seek": 50932, "start": 482.4, "end": 509.32, "text": " and then R.draw.getGraphics() and make it run and this is add shape and this is draw rectangle until now the subject is trivial right or not guys? okay now I asked you to make a circle with border so we want to make a circle around the circle", "tokens": [293, 550, 497, 13, 48848, 13, 847, 38, 2662, 1167, 45191, 293, 652, 309, 1190, 293, 341, 307, 909, 3909, 293, 341, 307, 2642, 21930, 1826, 586, 264, 3983, 307, 26703, 558, 420, 406, 1074, 30, 1392, 586, 286, 2351, 291, 281, 652, 257, 6329, 365, 7838, 370, 321, 528, 281, 652, 257, 6329, 926, 264, 6329], "avg_logprob": -0.5625000215809921, "compression_ratio": 1.5477707006369428, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 482.4, "end": 482.62, "word": " and", "probability": 0.18701171875}, {"start": 482.62, "end": 482.86, "word": " then", "probability": 0.70166015625}, {"start": 482.86, "end": 483.24, "word": " R", "probability": 0.4091796875}, {"start": 483.24, "end": 484.74, "word": ".draw", "probability": 0.795654296875}, {"start": 484.74, "end": 487.02, "word": ".getGraphics", "probability": 0.6802734375}, {"start": 487.02, "end": 487.04, "word": "()", "probability": 0.322021484375}, {"start": 487.04, "end": 488.86, "word": " and", "probability": 0.61767578125}, {"start": 488.86, "end": 489.08, "word": " make", "probability": 0.1021728515625}, {"start": 489.08, "end": 489.14, "word": " it", "probability": 0.3564453125}, {"start": 489.14, "end": 489.36, "word": " run", "probability": 0.630859375}, {"start": 489.36, "end": 492.46, "word": " and", "probability": 0.58056640625}, {"start": 492.46, "end": 492.64, "word": " this", "probability": 0.40087890625}, {"start": 492.64, "end": 492.64, "word": " is", "probability": 0.8154296875}, {"start": 492.64, "end": 492.9, "word": " add", "probability": 0.55908203125}, {"start": 492.9, "end": 493.28, "word": " shape", "probability": 0.54443359375}, {"start": 493.28, "end": 494.02, "word": " and", "probability": 0.77880859375}, {"start": 494.02, "end": 494.16, "word": " this", "probability": 0.82958984375}, {"start": 494.16, "end": 494.2, "word": " is", "probability": 0.91357421875}, {"start": 494.2, "end": 494.52, "word": " draw", "probability": 0.501953125}, {"start": 494.52, "end": 495.6, "word": " rectangle", "probability": 0.55419921875}, {"start": 495.6, "end": 496.24, "word": " until", "probability": 0.1683349609375}, {"start": 496.24, "end": 496.64, "word": " now", "probability": 0.89404296875}, {"start": 496.64, "end": 496.72, "word": " the", "probability": 0.405517578125}, {"start": 496.72, "end": 497.0, "word": " subject", "probability": 0.413330078125}, {"start": 497.0, "end": 497.34, "word": " is", "probability": 0.7734375}, {"start": 497.34, "end": 497.96, "word": " trivial", "probability": 0.9130859375}, {"start": 497.96, "end": 498.36, "word": " right", "probability": 0.2120361328125}, {"start": 498.36, "end": 498.5, "word": " or", "probability": 0.69482421875}, {"start": 498.5, "end": 498.64, "word": " not", "probability": 0.76220703125}, {"start": 498.64, "end": 499.0, "word": " guys?", "probability": 0.505859375}, {"start": 499.88, "end": 500.48, "word": " okay", "probability": 0.1663818359375}, {"start": 500.48, "end": 501.2, "word": " now", "probability": 0.591796875}, {"start": 501.2, "end": 501.54, "word": " I", "probability": 0.5634765625}, {"start": 501.54, "end": 501.82, "word": " asked", "probability": 0.6669921875}, {"start": 501.82, "end": 502.3, "word": " you", "probability": 0.82177734375}, {"start": 502.3, "end": 502.7, "word": " to", "probability": 0.54150390625}, {"start": 502.7, "end": 503.06, "word": " make", "probability": 0.8134765625}, {"start": 503.06, "end": 503.68, "word": " a", "probability": 0.58447265625}, {"start": 503.68, "end": 504.16, "word": " circle", "probability": 0.94921875}, {"start": 504.16, "end": 505.1, "word": " with", "probability": 0.90283203125}, {"start": 505.1, "end": 505.48, "word": " border", "probability": 0.76708984375}, {"start": 505.48, "end": 506.92, "word": " so", "probability": 0.183837890625}, {"start": 506.92, "end": 507.06, "word": " we", "probability": 0.74755859375}, {"start": 507.06, "end": 507.14, "word": " want", "probability": 0.33837890625}, {"start": 507.14, "end": 507.22, "word": " to", "probability": 0.94287109375}, {"start": 507.22, "end": 507.34, "word": " make", "probability": 0.91552734375}, {"start": 507.34, "end": 507.46, "word": " a", "probability": 0.8828125}, {"start": 507.46, "end": 507.72, "word": " circle", "probability": 0.6640625}, {"start": 507.72, "end": 508.78, "word": " around", "probability": 0.68408203125}, {"start": 508.78, "end": 509.02, "word": " the", "probability": 0.7392578125}, {"start": 509.02, "end": 509.32, "word": " circle", "probability": 0.87890625}], "temperature": 1.0}, {"id": 22, "seek": 53510, "start": 510.08, "end": 535.1, "text": " What does this mean? That we are going to add a new functionality. In the traditional way, what are you going to do? Simply say, go and create a new class called CircleWithBorder. Okay? And right away, tell it what? Extends Circle and so on and so forth in everything in the app. Okay? And then", "tokens": [708, 775, 341, 914, 30, 663, 321, 366, 516, 281, 909, 257, 777, 14980, 13, 682, 264, 5164, 636, 11, 437, 366, 291, 516, 281, 360, 30, 19596, 584, 11, 352, 293, 1884, 257, 777, 1508, 1219, 29381, 20943, 33, 4687, 13, 1033, 30, 400, 558, 1314, 11, 980, 309, 437, 30, 9881, 2581, 29381, 293, 370, 322, 293, 370, 5220, 294, 1203, 294, 264, 724, 13, 1033, 30, 400, 550], "avg_logprob": -0.6072048669060072, "compression_ratio": 1.528497409326425, "no_speech_prob": 9.5367431640625e-06, "words": [{"start": 510.08, "end": 510.36, "word": " What", "probability": 0.131591796875}, {"start": 510.36, "end": 510.48, "word": " does", "probability": 0.58984375}, {"start": 510.48, "end": 510.64, "word": " this", "probability": 0.5341796875}, {"start": 510.64, "end": 510.82, "word": " mean?", "probability": 0.66455078125}, {"start": 511.16, "end": 511.24, "word": " That", "probability": 0.295166015625}, {"start": 511.24, "end": 511.4, "word": " we", "probability": 0.80078125}, {"start": 511.4, "end": 511.56, "word": " are", "probability": 0.2626953125}, {"start": 511.56, "end": 511.58, "word": " going", "probability": 0.270263671875}, {"start": 511.58, "end": 511.58, "word": " to", "probability": 0.96435546875}, {"start": 511.58, "end": 511.74, "word": " add", "probability": 0.91357421875}, {"start": 511.74, "end": 513.18, "word": " a", "probability": 0.798828125}, {"start": 513.18, "end": 513.28, "word": " new", "probability": 0.88037109375}, {"start": 513.28, "end": 513.28, "word": " functionality.", "probability": 0.7412109375}, {"start": 513.96, "end": 514.32, "word": " In", "probability": 0.357421875}, {"start": 514.32, "end": 514.42, "word": " the", "probability": 0.447021484375}, {"start": 514.42, "end": 514.94, "word": " traditional", "probability": 0.62939453125}, {"start": 514.94, "end": 514.96, "word": " way,", "probability": 0.7705078125}, {"start": 515.14, "end": 515.22, "word": " what", "probability": 0.708984375}, {"start": 515.22, "end": 515.36, "word": " are", "probability": 0.39794921875}, {"start": 515.36, "end": 515.38, "word": " you", "probability": 0.90966796875}, {"start": 515.38, "end": 515.5, "word": " going", "probability": 0.9248046875}, {"start": 515.5, "end": 515.58, "word": " to", "probability": 0.9716796875}, {"start": 515.58, "end": 515.74, "word": " do?", "probability": 0.947265625}, {"start": 516.32, "end": 516.68, "word": " Simply", "probability": 0.1844482421875}, {"start": 516.68, "end": 516.68, "word": " say,", "probability": 0.326171875}, {"start": 517.12, "end": 517.24, "word": " go", "probability": 0.529296875}, {"start": 517.24, "end": 517.34, "word": " and", "probability": 0.378173828125}, {"start": 517.34, "end": 517.46, "word": " create", "probability": 0.634765625}, {"start": 517.46, "end": 517.56, "word": " a", "probability": 0.97998046875}, {"start": 517.56, "end": 518.1, "word": " new", "probability": 0.9013671875}, {"start": 518.1, "end": 518.16, "word": " class", "probability": 0.94775390625}, {"start": 518.16, "end": 519.26, "word": " called", "probability": 0.27587890625}, {"start": 519.26, "end": 522.04, "word": " CircleWithBorder.", "probability": 0.71502685546875}, {"start": 523.58, "end": 523.94, "word": " Okay?", "probability": 0.33154296875}, {"start": 524.44, "end": 524.6, "word": " And", "probability": 0.6953125}, {"start": 524.6, "end": 524.78, "word": " right", "probability": 0.16796875}, {"start": 524.78, "end": 524.98, "word": " away,", "probability": 0.86962890625}, {"start": 525.1, "end": 525.16, "word": " tell", "probability": 0.5439453125}, {"start": 525.16, "end": 525.3, "word": " it", "probability": 0.623046875}, {"start": 525.3, "end": 525.64, "word": " what?", "probability": 0.1939697265625}, {"start": 526.3, "end": 526.66, "word": " Extends", "probability": 0.767822265625}, {"start": 526.66, "end": 527.76, "word": " Circle", "probability": 0.49853515625}, {"start": 527.76, "end": 527.98, "word": " and", "probability": 0.39599609375}, {"start": 527.98, "end": 528.16, "word": " so", "probability": 0.1348876953125}, {"start": 528.16, "end": 528.2, "word": " on", "probability": 0.80810546875}, {"start": 528.2, "end": 528.24, "word": " and", "probability": 0.260498046875}, {"start": 528.24, "end": 528.38, "word": " so", "probability": 0.55078125}, {"start": 528.38, "end": 528.38, "word": " forth", "probability": 0.93505859375}, {"start": 528.38, "end": 528.5, "word": " in", "probability": 0.5498046875}, {"start": 528.5, "end": 528.86, "word": " everything", "probability": 0.69189453125}, {"start": 528.86, "end": 530.76, "word": " in", "probability": 0.25048828125}, {"start": 530.76, "end": 532.26, "word": " the", "probability": 0.81689453125}, {"start": 532.26, "end": 533.24, "word": " app.", "probability": 0.60107421875}, {"start": 533.64, "end": 533.9, "word": " Okay?", "probability": 0.482177734375}, {"start": 534.46, "end": 534.8, "word": " And", "probability": 0.82470703125}, {"start": 534.8, "end": 535.1, "word": " then", "probability": 0.77099609375}], "temperature": 1.0}, {"id": 23, "seek": 56158, "start": 536.7, "end": 561.58, "text": "add new attributes and override things that you want to override so you say for example int border-width this is for the width of the border and I have color border-color and you want to put for example setters and getters for whom? for the new attributes", "tokens": [25224, 777, 17212, 293, 42321, 721, 300, 291, 528, 281, 42321, 370, 291, 584, 337, 1365, 560, 7838, 12, 21271, 341, 307, 337, 264, 11402, 295, 264, 7838, 293, 286, 362, 2017, 7838, 12, 23851, 293, 291, 528, 281, 829, 337, 1365, 992, 1559, 293, 483, 1559, 337, 7101, 30, 337, 264, 777, 17212], "avg_logprob": -0.5676136363636364, "compression_ratio": 1.7708333333333333, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 536.7, "end": 537.22, "word": "add", "probability": 0.164794921875}, {"start": 537.22, "end": 537.58, "word": " new", "probability": 0.4462890625}, {"start": 537.58, "end": 538.04, "word": " attributes", "probability": 0.88720703125}, {"start": 538.04, "end": 538.58, "word": " and", "probability": 0.399169921875}, {"start": 538.58, "end": 539.56, "word": " override", "probability": 0.759765625}, {"start": 539.56, "end": 539.56, "word": " things", "probability": 0.154541015625}, {"start": 539.56, "end": 539.96, "word": " that", "probability": 0.30126953125}, {"start": 539.96, "end": 539.96, "word": " you", "probability": 0.5634765625}, {"start": 539.96, "end": 539.96, "word": " want", "probability": 0.640625}, {"start": 539.96, "end": 540.04, "word": " to", "probability": 0.418212890625}, {"start": 540.04, "end": 540.94, "word": " override", "probability": 0.86865234375}, {"start": 540.94, "end": 541.48, "word": " so", "probability": 0.1396484375}, {"start": 541.48, "end": 541.62, "word": " you", "probability": 0.537109375}, {"start": 541.62, "end": 541.78, "word": " say", "probability": 0.408447265625}, {"start": 541.78, "end": 542.0, "word": " for", "probability": 0.4443359375}, {"start": 542.0, "end": 542.22, "word": " example", "probability": 0.93212890625}, {"start": 542.22, "end": 542.66, "word": " int", "probability": 0.298828125}, {"start": 542.66, "end": 543.2, "word": " border", "probability": 0.853515625}, {"start": 543.2, "end": 545.56, "word": "-width", "probability": 0.65771484375}, {"start": 545.56, "end": 547.04, "word": " this", "probability": 0.2103271484375}, {"start": 547.04, "end": 547.1, "word": " is", "probability": 0.798828125}, {"start": 547.1, "end": 547.3, "word": " for", "probability": 0.426025390625}, {"start": 547.3, "end": 547.72, "word": " the", "probability": 0.23974609375}, {"start": 547.72, "end": 548.02, "word": " width", "probability": 0.8037109375}, {"start": 548.02, "end": 548.16, "word": " of", "probability": 0.91650390625}, {"start": 548.16, "end": 548.2, "word": " the", "probability": 0.671875}, {"start": 548.2, "end": 548.48, "word": " border", "probability": 0.87646484375}, {"start": 548.48, "end": 549.0, "word": " and", "probability": 0.73876953125}, {"start": 549.0, "end": 549.22, "word": " I", "probability": 0.3125}, {"start": 549.22, "end": 549.48, "word": " have", "probability": 0.84765625}, {"start": 549.48, "end": 550.1, "word": " color", "probability": 0.71875}, {"start": 550.1, "end": 551.44, "word": " border", "probability": 0.77294921875}, {"start": 551.44, "end": 554.58, "word": "-color", "probability": 0.797607421875}, {"start": 554.58, "end": 558.52, "word": " and", "probability": 0.65869140625}, {"start": 558.52, "end": 558.6, "word": " you", "probability": 0.71435546875}, {"start": 558.6, "end": 558.74, "word": " want", "probability": 0.38427734375}, {"start": 558.74, "end": 558.88, "word": " to", "probability": 0.9619140625}, {"start": 558.88, "end": 559.12, "word": " put", "probability": 0.320556640625}, {"start": 559.12, "end": 559.24, "word": " for", "probability": 0.376220703125}, {"start": 559.24, "end": 559.48, "word": " example", "probability": 0.89599609375}, {"start": 559.48, "end": 559.9, "word": " setters", "probability": 0.729736328125}, {"start": 559.9, "end": 560.02, "word": " and", "probability": 0.900390625}, {"start": 560.02, "end": 560.38, "word": " getters", "probability": 0.965087890625}, {"start": 560.38, "end": 560.54, "word": " for", "probability": 0.60107421875}, {"start": 560.54, "end": 560.78, "word": " whom?", "probability": 0.46142578125}, {"start": 560.92, "end": 561.16, "word": " for", "probability": 0.51953125}, {"start": 561.16, "end": 561.2, "word": " the", "probability": 0.681640625}, {"start": 561.2, "end": 561.22, "word": " new", "probability": 0.89990234375}, {"start": 561.22, "end": 561.58, "word": " attributes", "probability": 0.8544921875}], "temperature": 1.0}, {"id": 24, "seek": 59171, "start": 568.19, "end": 591.71, "text": " We haven't drawn a border yet, we will give it an attribute but we haven't drawn it yet So we will change this gate to a method to draw, we will make it overwrite The draw doesn't draw a border for this gate So I will make it overwrite, I will tell it to make an override for a method called draw It doesn't need to be a super gate, I really want to make a change I will show you how to make the change", "tokens": [492, 2378, 380, 10117, 257, 7838, 1939, 11, 321, 486, 976, 309, 364, 19667, 457, 321, 2378, 380, 10117, 309, 1939, 407, 321, 486, 1319, 341, 8539, 281, 257, 3170, 281, 2642, 11, 321, 486, 652, 309, 670, 21561, 440, 2642, 1177, 380, 2642, 257, 7838, 337, 341, 8539, 407, 286, 486, 652, 309, 670, 21561, 11, 286, 486, 980, 309, 281, 652, 364, 42321, 337, 257, 3170, 1219, 2642, 467, 1177, 380, 643, 281, 312, 257, 1687, 8539, 11, 286, 534, 528, 281, 652, 257, 1319, 286, 486, 855, 291, 577, 281, 652, 264, 1319], "avg_logprob": -0.5470360824742269, "compression_ratio": 1.995049504950495, "no_speech_prob": 3.045797348022461e-05, "words": [{"start": 568.19, "end": 568.57, "word": " We", "probability": 0.09185791015625}, {"start": 568.57, "end": 568.95, "word": " haven't", "probability": 0.665283203125}, {"start": 568.95, "end": 569.23, "word": " drawn", "probability": 0.5048828125}, {"start": 569.23, "end": 569.41, "word": " a", "probability": 0.58154296875}, {"start": 569.41, "end": 569.59, "word": " border", "probability": 0.83740234375}, {"start": 569.59, "end": 569.65, "word": " yet,", "probability": 0.88037109375}, {"start": 569.71, "end": 569.99, "word": " we", "probability": 0.490966796875}, {"start": 569.99, "end": 570.05, "word": " will", "probability": 0.2271728515625}, {"start": 570.05, "end": 570.27, "word": " give", "probability": 0.384033203125}, {"start": 570.27, "end": 570.39, "word": " it", "probability": 0.70654296875}, {"start": 570.39, "end": 570.53, "word": " an", "probability": 0.61767578125}, {"start": 570.53, "end": 570.81, "word": " attribute", "probability": 0.953125}, {"start": 570.81, "end": 571.05, "word": " but", "probability": 0.411865234375}, {"start": 571.05, "end": 571.17, "word": " we", "probability": 0.493896484375}, {"start": 571.17, "end": 571.19, "word": " haven't", "probability": 0.774169921875}, {"start": 571.19, "end": 571.41, "word": " drawn", "probability": 0.86279296875}, {"start": 571.41, "end": 571.49, "word": " it", "probability": 0.63525390625}, {"start": 571.49, "end": 572.17, "word": " yet", "probability": 0.880859375}, {"start": 572.17, "end": 572.27, "word": " So", "probability": 0.3857421875}, {"start": 572.27, "end": 572.43, "word": " we", "probability": 0.7470703125}, {"start": 572.43, "end": 572.51, "word": " will", "probability": 0.319580078125}, {"start": 572.51, "end": 572.79, "word": " change", "probability": 0.8134765625}, {"start": 572.79, "end": 572.99, "word": " this", "probability": 0.7158203125}, {"start": 572.99, "end": 573.13, "word": " gate", "probability": 0.82373046875}, {"start": 573.13, "end": 573.27, "word": " to", "probability": 0.69482421875}, {"start": 573.27, "end": 573.31, "word": " a", "probability": 0.402587890625}, {"start": 573.31, "end": 573.79, "word": " method", "probability": 0.853515625}, {"start": 573.79, "end": 574.05, "word": " to", "probability": 0.209228515625}, {"start": 574.05, "end": 574.77, "word": " draw,", "probability": 0.83642578125}, {"start": 574.91, "end": 575.01, "word": " we", "probability": 0.5400390625}, {"start": 575.01, "end": 575.03, "word": " will", "probability": 0.7998046875}, {"start": 575.03, "end": 575.17, "word": " make", "probability": 0.697265625}, {"start": 575.17, "end": 575.29, "word": " it", "probability": 0.85888671875}, {"start": 575.29, "end": 575.83, "word": " overwrite", "probability": 0.669189453125}, {"start": 575.83, "end": 576.57, "word": " The", "probability": 0.2464599609375}, {"start": 576.57, "end": 576.85, "word": " draw", "probability": 0.40771484375}, {"start": 576.85, "end": 577.11, "word": " doesn't", "probability": 0.59942626953125}, {"start": 577.11, "end": 577.47, "word": " draw", "probability": 0.59765625}, {"start": 577.47, "end": 577.65, "word": " a", "probability": 0.314453125}, {"start": 577.65, "end": 578.11, "word": " border", "probability": 0.8369140625}, {"start": 578.11, "end": 578.21, "word": " for", "probability": 0.382568359375}, {"start": 578.21, "end": 578.21, "word": " this", "probability": 0.796875}, {"start": 578.21, "end": 578.21, "word": " gate", "probability": 0.94287109375}, {"start": 578.21, "end": 578.63, "word": " So", "probability": 0.46142578125}, {"start": 578.63, "end": 578.75, "word": " I", "probability": 0.85400390625}, {"start": 578.75, "end": 578.89, "word": " will", "probability": 0.51318359375}, {"start": 578.89, "end": 579.03, "word": " make", "probability": 0.765625}, {"start": 579.03, "end": 579.17, "word": " it", "probability": 0.87060546875}, {"start": 579.17, "end": 579.61, "word": " overwrite,", "probability": 0.90234375}, {"start": 579.73, "end": 579.77, "word": " I", "probability": 0.466552734375}, {"start": 579.77, "end": 579.83, "word": " will", "probability": 0.74853515625}, {"start": 579.83, "end": 580.05, "word": " tell", "probability": 0.50634765625}, {"start": 580.05, "end": 580.29, "word": " it", "probability": 0.6787109375}, {"start": 580.29, "end": 580.75, "word": " to", "probability": 0.7216796875}, {"start": 580.75, "end": 581.17, "word": " make", "probability": 0.38525390625}, {"start": 581.17, "end": 581.81, "word": " an", "probability": 0.54296875}, {"start": 581.81, "end": 582.13, "word": " override", "probability": 0.794921875}, {"start": 582.13, "end": 582.39, "word": " for", "probability": 0.4111328125}, {"start": 582.39, "end": 582.45, "word": " a", "probability": 0.7509765625}, {"start": 582.45, "end": 582.85, "word": " method", "probability": 0.94921875}, {"start": 582.85, "end": 583.73, "word": " called", "probability": 0.5302734375}, {"start": 583.73, "end": 584.33, "word": " draw", "probability": 0.74462890625}, {"start": 584.33, "end": 585.47, "word": " It", "probability": 0.2431640625}, {"start": 585.47, "end": 585.61, "word": " doesn't", "probability": 0.90478515625}, {"start": 585.61, "end": 585.77, "word": " need", "probability": 0.389892578125}, {"start": 585.77, "end": 585.83, "word": " to", "probability": 0.7744140625}, {"start": 585.83, "end": 585.97, "word": " be", "probability": 0.140380859375}, {"start": 585.97, "end": 586.13, "word": " a", "probability": 0.299072265625}, {"start": 586.13, "end": 586.39, "word": " super", "probability": 0.82861328125}, {"start": 586.39, "end": 586.81, "word": " gate,", "probability": 0.669921875}, {"start": 587.45, "end": 587.73, "word": " I", "probability": 0.68310546875}, {"start": 587.73, "end": 588.09, "word": " really", "probability": 0.260009765625}, {"start": 588.09, "end": 589.19, "word": " want", "probability": 0.447998046875}, {"start": 589.19, "end": 589.37, "word": " to", "probability": 0.96142578125}, {"start": 589.37, "end": 589.51, "word": " make", "probability": 0.57958984375}, {"start": 589.51, "end": 589.65, "word": " a", "probability": 0.9365234375}, {"start": 589.65, "end": 589.87, "word": " change", "probability": 0.89306640625}, {"start": 589.87, "end": 590.59, "word": " I", "probability": 0.28076171875}, {"start": 590.59, "end": 590.99, "word": " will", "probability": 0.501953125}, {"start": 590.99, "end": 591.19, "word": " show", "probability": 0.927734375}, {"start": 591.19, "end": 591.31, "word": " you", "probability": 0.9384765625}, {"start": 591.31, "end": 591.47, "word": " how", "probability": 0.9248046875}, {"start": 591.47, "end": 591.53, "word": " to", "probability": 0.91650390625}, {"start": 591.53, "end": 591.71, "word": " make", "probability": 0.65185546875}, {"start": 591.71, "end": 591.71, "word": " the", "probability": 0.45751953125}, {"start": 591.71, "end": 591.71, "word": " change", "probability": 0.88623046875}], "temperature": 1.0}, {"id": 25, "seek": 60209, "start": 592.61, "end": 602.09, "text": "The idea is not about how to make changes, but about how to make changes. For example, I want to make graphics 2D, G2D.", "tokens": [2278, 1558, 307, 406, 466, 577, 281, 652, 2962, 11, 457, 466, 577, 281, 652, 2962, 13, 1171, 1365, 11, 286, 528, 281, 652, 11837, 568, 35, 11, 460, 17, 35, 13], "avg_logprob": -0.5909090909090909, "compression_ratio": 1.3370786516853932, "no_speech_prob": 1.6689300537109375e-06, "words": [{"start": 592.61, "end": 592.87, "word": "The", "probability": 0.27734375}, {"start": 592.87, "end": 593.05, "word": " idea", "probability": 0.73681640625}, {"start": 593.05, "end": 593.15, "word": " is", "probability": 0.60546875}, {"start": 593.15, "end": 593.25, "word": " not", "probability": 0.89404296875}, {"start": 593.25, "end": 593.71, "word": " about", "probability": 0.237548828125}, {"start": 593.71, "end": 593.75, "word": " how", "probability": 0.70849609375}, {"start": 593.75, "end": 593.91, "word": " to", "probability": 0.430908203125}, {"start": 593.91, "end": 594.17, "word": " make", "probability": 0.475341796875}, {"start": 594.17, "end": 594.63, "word": " changes,", "probability": 0.36669921875}, {"start": 594.75, "end": 594.87, "word": " but", "probability": 0.346923828125}, {"start": 594.87, "end": 594.89, "word": " about", "probability": 0.400634765625}, {"start": 594.89, "end": 594.97, "word": " how", "probability": 0.36572265625}, {"start": 594.97, "end": 595.33, "word": " to", "probability": 0.56591796875}, {"start": 595.33, "end": 595.33, "word": " make", "probability": 0.5947265625}, {"start": 595.33, "end": 595.33, "word": " changes.", "probability": 0.51806640625}, {"start": 595.99, "end": 596.25, "word": " For", "probability": 0.3701171875}, {"start": 596.25, "end": 596.45, "word": " example,", "probability": 0.85302734375}, {"start": 596.59, "end": 596.59, "word": " I", "probability": 0.61767578125}, {"start": 596.59, "end": 597.27, "word": " want", "probability": 0.4619140625}, {"start": 597.27, "end": 597.33, "word": " to", "probability": 0.86572265625}, {"start": 597.33, "end": 597.47, "word": " make", "probability": 0.6630859375}, {"start": 597.47, "end": 598.01, "word": " graphics", "probability": 0.548828125}, {"start": 598.01, "end": 600.73, "word": " 2D,", "probability": 0.550537109375}, {"start": 601.13, "end": 602.09, "word": " G2D.", "probability": 0.8483072916666666}], "temperature": 1.0}, {"id": 26, "seek": 66693, "start": 641.67, "end": 666.93, "text": " Ok, these are the new additions, then I go and say super or super.draw Ok guys, the idea of ​​the draw is to add a new feature, which is to draw a border Which is what I did to draw a border, I went and gave it color", "tokens": [3477, 11, 613, 366, 264, 777, 35113, 11, 550, 286, 352, 293, 584, 1687, 420, 1687, 13, 48848, 3477, 1074, 11, 264, 1558, 295, 8701, 3322, 2642, 307, 281, 909, 257, 777, 4111, 11, 597, 307, 281, 2642, 257, 7838, 3013, 307, 437, 286, 630, 281, 2642, 257, 7838, 11, 286, 1437, 293, 2729, 309, 2017], "avg_logprob": -0.48547149122807015, "compression_ratio": 1.5034013605442176, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 641.6700000000001, "end": 642.07, "word": " Ok,", "probability": 0.1807861328125}, {"start": 642.61, "end": 642.93, "word": " these", "probability": 0.33544921875}, {"start": 642.93, "end": 642.99, "word": " are", "probability": 0.87451171875}, {"start": 642.99, "end": 643.07, "word": " the", "probability": 0.7001953125}, {"start": 643.07, "end": 643.63, "word": " new", "probability": 0.79736328125}, {"start": 643.63, "end": 643.63, "word": " additions,", "probability": 0.79931640625}, {"start": 643.97, "end": 644.33, "word": " then", "probability": 0.5166015625}, {"start": 644.33, "end": 644.61, "word": " I", "probability": 0.7041015625}, {"start": 644.61, "end": 644.65, "word": " go", "probability": 0.1875}, {"start": 644.65, "end": 644.81, "word": " and", "probability": 0.455810546875}, {"start": 644.81, "end": 644.99, "word": " say", "probability": 0.455078125}, {"start": 644.99, "end": 645.57, "word": " super", "probability": 0.73388671875}, {"start": 645.57, "end": 646.91, "word": " or", "probability": 0.362548828125}, {"start": 646.91, "end": 651.87, "word": " super", "probability": 0.79150390625}, {"start": 651.87, "end": 652.59, "word": ".draw", "probability": 0.776611328125}, {"start": 652.59, "end": 659.71, "word": " Ok", "probability": 0.576171875}, {"start": 659.71, "end": 660.01, "word": " guys,", "probability": 0.744140625}, {"start": 660.09, "end": 660.17, "word": " the", "probability": 0.81689453125}, {"start": 660.17, "end": 660.29, "word": " idea", "probability": 0.7958984375}, {"start": 660.29, "end": 660.45, "word": " of", "probability": 0.865234375}, {"start": 660.45, "end": 660.53, "word": " ​​the", "probability": 0.41796875}, {"start": 660.53, "end": 660.69, "word": " draw", "probability": 0.50830078125}, {"start": 660.69, "end": 660.79, "word": " is", "probability": 0.86279296875}, {"start": 660.79, "end": 660.97, "word": " to", "probability": 0.31591796875}, {"start": 660.97, "end": 661.21, "word": " add", "probability": 0.89208984375}, {"start": 661.21, "end": 661.31, "word": " a", "probability": 0.962890625}, {"start": 661.31, "end": 661.83, "word": " new", "probability": 0.8779296875}, {"start": 661.83, "end": 661.83, "word": " feature,", "probability": 0.63720703125}, {"start": 662.01, "end": 662.03, "word": " which", "probability": 0.88525390625}, {"start": 662.03, "end": 662.17, "word": " is", "probability": 0.92333984375}, {"start": 662.17, "end": 662.45, "word": " to", "probability": 0.638671875}, {"start": 662.45, "end": 662.45, "word": " draw", "probability": 0.90771484375}, {"start": 662.45, "end": 663.35, "word": " a", "probability": 0.66650390625}, {"start": 663.35, "end": 663.57, "word": " border", "probability": 0.85107421875}, {"start": 663.57, "end": 664.45, "word": " Which", "probability": 0.22802734375}, {"start": 664.45, "end": 664.59, "word": " is", "probability": 0.89404296875}, {"start": 664.59, "end": 664.79, "word": " what", "probability": 0.77734375}, {"start": 664.79, "end": 664.87, "word": " I", "probability": 0.26025390625}, {"start": 664.87, "end": 665.11, "word": " did", "probability": 0.904296875}, {"start": 665.11, "end": 665.31, "word": " to", "probability": 0.9404296875}, {"start": 665.31, "end": 665.57, "word": " draw", "probability": 0.9072265625}, {"start": 665.57, "end": 665.77, "word": " a", "probability": 0.919921875}, {"start": 665.77, "end": 665.99, "word": " border,", "probability": 0.85595703125}, {"start": 666.19, "end": 666.29, "word": " I", "probability": 0.73193359375}, {"start": 666.29, "end": 666.29, "word": " went", "probability": 0.1982421875}, {"start": 666.29, "end": 666.43, "word": " and", "probability": 0.6826171875}, {"start": 666.43, "end": 666.57, "word": " gave", "probability": 0.61279296875}, {"start": 666.57, "end": 666.71, "word": " it", "probability": 0.85888671875}, {"start": 666.71, "end": 666.93, "word": " color", "probability": 0.55224609375}], "temperature": 1.0}, {"id": 27, "seek": 69479, "start": 668.25, "end": 694.79, "text": " I changed the color and gave it a stroke that takes the width and then I told it to invoke the super to draw it. It will invoke the super, it will draw the circle, but after applying the new settings. From the point of view, the point is not how to draw a circle, the point is that I made an override to add a new functionality, okay? And this is also an override for whom?", "tokens": [286, 3105, 264, 2017, 293, 2729, 309, 257, 12403, 300, 2516, 264, 11402, 293, 550, 286, 1907, 309, 281, 41117, 264, 1687, 281, 2642, 309, 13, 467, 486, 41117, 264, 1687, 11, 309, 486, 2642, 264, 6329, 11, 457, 934, 9275, 264, 777, 6257, 13, 3358, 264, 935, 295, 1910, 11, 264, 935, 307, 406, 577, 281, 2642, 257, 6329, 11, 264, 935, 307, 300, 286, 1027, 364, 42321, 281, 909, 257, 777, 14980, 11, 1392, 30, 400, 341, 307, 611, 364, 42321, 337, 7101, 30], "avg_logprob": -0.47808909484709816, "compression_ratio": 1.7476635514018692, "no_speech_prob": 6.67572021484375e-06, "words": [{"start": 668.25, "end": 668.43, "word": " I", "probability": 0.447998046875}, {"start": 668.43, "end": 668.71, "word": " changed", "probability": 0.73876953125}, {"start": 668.71, "end": 668.89, "word": " the", "probability": 0.78369140625}, {"start": 668.89, "end": 669.11, "word": " color", "probability": 0.68798828125}, {"start": 669.11, "end": 670.03, "word": " and", "probability": 0.48828125}, {"start": 670.03, "end": 670.33, "word": " gave", "probability": 0.447998046875}, {"start": 670.33, "end": 670.61, "word": " it", "probability": 0.5263671875}, {"start": 670.61, "end": 670.91, "word": " a", "probability": 0.77734375}, {"start": 670.91, "end": 671.23, "word": " stroke", "probability": 0.8583984375}, {"start": 671.23, "end": 671.37, "word": " that", "probability": 0.392822265625}, {"start": 671.37, "end": 672.45, "word": " takes", "probability": 0.5341796875}, {"start": 672.45, "end": 672.59, "word": " the", "probability": 0.7294921875}, {"start": 672.59, "end": 672.83, "word": " width", "probability": 0.91796875}, {"start": 672.83, "end": 672.99, "word": " and", "probability": 0.365478515625}, {"start": 672.99, "end": 673.21, "word": " then", "probability": 0.7314453125}, {"start": 673.21, "end": 673.29, "word": " I", "probability": 0.70703125}, {"start": 673.29, "end": 673.45, "word": " told", "probability": 0.449462890625}, {"start": 673.45, "end": 673.67, "word": " it", "probability": 0.383056640625}, {"start": 673.67, "end": 673.89, "word": " to", "probability": 0.70947265625}, {"start": 673.89, "end": 674.15, "word": " invoke", "probability": 0.1475830078125}, {"start": 674.15, "end": 675.81, "word": " the", "probability": 0.66357421875}, {"start": 675.81, "end": 676.05, "word": " super", "probability": 0.609375}, {"start": 676.05, "end": 676.23, "word": " to", "probability": 0.1668701171875}, {"start": 676.23, "end": 676.39, "word": " draw", "probability": 0.53759765625}, {"start": 676.39, "end": 676.51, "word": " it.", "probability": 0.36962890625}, {"start": 676.61, "end": 676.69, "word": " It", "probability": 0.351806640625}, {"start": 676.69, "end": 676.81, "word": " will", "probability": 0.673828125}, {"start": 676.81, "end": 677.63, "word": " invoke", "probability": 0.96875}, {"start": 677.63, "end": 677.81, "word": " the", "probability": 0.8515625}, {"start": 677.81, "end": 678.09, "word": " super,", "probability": 0.9052734375}, {"start": 678.43, "end": 679.01, "word": " it", "probability": 0.62060546875}, {"start": 679.01, "end": 679.13, "word": " will", "probability": 0.53564453125}, {"start": 679.13, "end": 679.33, "word": " draw", "probability": 0.86279296875}, {"start": 679.33, "end": 679.53, "word": " the", "probability": 0.78955078125}, {"start": 679.53, "end": 679.75, "word": " circle,", "probability": 0.89111328125}, {"start": 679.89, "end": 680.07, "word": " but", "probability": 0.5498046875}, {"start": 680.07, "end": 681.23, "word": " after", "probability": 0.673828125}, {"start": 681.23, "end": 681.63, "word": " applying", "probability": 0.46826171875}, {"start": 681.63, "end": 683.23, "word": " the", "probability": 0.88671875}, {"start": 683.23, "end": 683.49, "word": " new", "probability": 0.66064453125}, {"start": 683.49, "end": 683.57, "word": " settings.", "probability": 0.58984375}, {"start": 684.31, "end": 684.75, "word": " From", "probability": 0.1129150390625}, {"start": 684.75, "end": 685.03, "word": " the", "probability": 0.287353515625}, {"start": 685.03, "end": 685.19, "word": " point", "probability": 0.630859375}, {"start": 685.19, "end": 685.19, "word": " of", "probability": 0.9794921875}, {"start": 685.19, "end": 685.25, "word": " view,", "probability": 0.87939453125}, {"start": 685.61, "end": 685.75, "word": " the", "probability": 0.482177734375}, {"start": 685.75, "end": 685.93, "word": " point", "probability": 0.67578125}, {"start": 685.93, "end": 686.09, "word": " is", "probability": 0.8583984375}, {"start": 686.09, "end": 686.23, "word": " not", "probability": 0.92822265625}, {"start": 686.23, "end": 686.49, "word": " how", "probability": 0.81787109375}, {"start": 686.49, "end": 686.65, "word": " to", "probability": 0.8056640625}, {"start": 686.65, "end": 686.83, "word": " draw", "probability": 0.939453125}, {"start": 686.83, "end": 687.01, "word": " a", "probability": 0.89208984375}, {"start": 687.01, "end": 687.25, "word": " circle,", "probability": 0.93994140625}, {"start": 687.45, "end": 687.53, "word": " the", "probability": 0.473388671875}, {"start": 687.53, "end": 687.71, "word": " point", "probability": 0.9375}, {"start": 687.71, "end": 687.89, "word": " is", "probability": 0.93994140625}, {"start": 687.89, "end": 688.07, "word": " that", "probability": 0.72705078125}, {"start": 688.07, "end": 688.35, "word": " I", "probability": 0.9892578125}, {"start": 688.35, "end": 688.57, "word": " made", "probability": 0.4404296875}, {"start": 688.57, "end": 688.73, "word": " an", "probability": 0.673828125}, {"start": 688.73, "end": 689.09, "word": " override", "probability": 0.93408203125}, {"start": 689.09, "end": 689.33, "word": " to", "probability": 0.8017578125}, {"start": 689.33, "end": 689.77, "word": " add", "probability": 0.93603515625}, {"start": 689.77, "end": 690.57, "word": " a", "probability": 0.66943359375}, {"start": 690.57, "end": 690.57, "word": " new", "probability": 0.8916015625}, {"start": 690.57, "end": 691.07, "word": " functionality,", "probability": 0.90625}, {"start": 692.13, "end": 692.33, "word": " okay?", "probability": 0.59326171875}, {"start": 692.81, "end": 693.01, "word": " And", "probability": 0.7548828125}, {"start": 693.01, "end": 693.17, "word": " this", "probability": 0.77197265625}, {"start": 693.17, "end": 693.45, "word": " is", "probability": 0.798828125}, {"start": 693.45, "end": 693.75, "word": " also", "probability": 0.76611328125}, {"start": 693.75, "end": 693.95, "word": " an", "probability": 0.712890625}, {"start": 693.95, "end": 694.29, "word": " override", "probability": 0.9794921875}, {"start": 694.29, "end": 694.59, "word": " for", "probability": 0.564453125}, {"start": 694.59, "end": 694.79, "word": " whom?", "probability": 0.6494140625}], "temperature": 1.0}, {"id": 28, "seek": 72095, "start": 695.97, "end": 720.95, "text": " for describe, here he used to say this is circle, so i want to say return super dot describe plus with border of color and with color for example, the important thing is that we added a new feature that says anything in the description with border", "tokens": [337, 6786, 11, 510, 415, 1143, 281, 584, 341, 307, 6329, 11, 370, 741, 528, 281, 584, 2736, 1687, 5893, 6786, 1804, 365, 7838, 295, 2017, 293, 365, 2017, 337, 1365, 11, 264, 1021, 551, 307, 300, 321, 3869, 257, 777, 4111, 300, 1619, 1340, 294, 264, 3855, 365, 7838], "avg_logprob": -0.6231617693807564, "compression_ratio": 1.6533333333333333, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 695.97, "end": 696.21, "word": " for", "probability": 0.060882568359375}, {"start": 696.21, "end": 696.57, "word": " describe,", "probability": 0.406494140625}, {"start": 697.21, "end": 697.63, "word": " here", "probability": 0.214599609375}, {"start": 697.63, "end": 698.57, "word": " he", "probability": 0.3251953125}, {"start": 698.57, "end": 698.77, "word": " used", "probability": 0.2364501953125}, {"start": 698.77, "end": 698.77, "word": " to", "probability": 0.96240234375}, {"start": 698.77, "end": 698.97, "word": " say", "probability": 0.6552734375}, {"start": 698.97, "end": 699.99, "word": " this", "probability": 0.128662109375}, {"start": 699.99, "end": 701.87, "word": " is", "probability": 0.69921875}, {"start": 701.87, "end": 702.27, "word": " circle,", "probability": 0.888671875}, {"start": 702.51, "end": 703.15, "word": " so", "probability": 0.39111328125}, {"start": 703.15, "end": 703.23, "word": " i", "probability": 0.42724609375}, {"start": 703.23, "end": 703.35, "word": " want", "probability": 0.34521484375}, {"start": 703.35, "end": 703.39, "word": " to", "probability": 0.9365234375}, {"start": 703.39, "end": 703.51, "word": " say", "probability": 0.68212890625}, {"start": 703.51, "end": 704.03, "word": " return", "probability": 0.83154296875}, {"start": 704.03, "end": 705.17, "word": " super", "probability": 0.8037109375}, {"start": 705.17, "end": 706.41, "word": " dot", "probability": 0.499267578125}, {"start": 706.41, "end": 707.07, "word": " describe", "probability": 0.82177734375}, {"start": 707.07, "end": 707.87, "word": " plus", "probability": 0.5546875}, {"start": 707.87, "end": 708.47, "word": " with", "probability": 0.814453125}, {"start": 708.47, "end": 710.73, "word": " border", "probability": 0.8173828125}, {"start": 710.73, "end": 711.07, "word": " of", "probability": 0.8642578125}, {"start": 711.07, "end": 711.47, "word": " color", "probability": 0.82080078125}, {"start": 711.47, "end": 711.89, "word": " and", "probability": 0.441162109375}, {"start": 711.89, "end": 712.15, "word": " with", "probability": 0.677734375}, {"start": 712.15, "end": 712.43, "word": " color", "probability": 0.65283203125}, {"start": 712.43, "end": 712.59, "word": " for", "probability": 0.303466796875}, {"start": 712.59, "end": 712.81, "word": " example,", "probability": 0.94970703125}, {"start": 713.35, "end": 713.71, "word": " the", "probability": 0.286376953125}, {"start": 713.71, "end": 713.93, "word": " important", "probability": 0.794921875}, {"start": 713.93, "end": 714.05, "word": " thing", "probability": 0.630859375}, {"start": 714.05, "end": 714.17, "word": " is", "probability": 0.85693359375}, {"start": 714.17, "end": 714.21, "word": " that", "probability": 0.39111328125}, {"start": 714.21, "end": 715.47, "word": " we", "probability": 0.8515625}, {"start": 715.47, "end": 716.07, "word": " added", "probability": 0.6474609375}, {"start": 716.07, "end": 716.27, "word": " a", "probability": 0.779296875}, {"start": 716.27, "end": 716.79, "word": " new", "probability": 0.7998046875}, {"start": 716.79, "end": 717.57, "word": " feature", "probability": 0.791015625}, {"start": 717.57, "end": 717.91, "word": " that", "probability": 0.47802734375}, {"start": 717.91, "end": 718.63, "word": " says", "probability": 0.1864013671875}, {"start": 718.63, "end": 718.63, "word": " anything", "probability": 0.315673828125}, {"start": 718.63, "end": 719.21, "word": " in", "probability": 0.6826171875}, {"start": 719.21, "end": 719.31, "word": " the", "probability": 0.59130859375}, {"start": 719.31, "end": 719.75, "word": " description", "probability": 0.92138671875}, {"start": 719.75, "end": 720.65, "word": " with", "probability": 0.86376953125}, {"start": 720.65, "end": 720.95, "word": " border", "probability": 0.8056640625}], "temperature": 1.0}, {"id": 29, "seek": 74923, "start": 721.79, "end": 749.23, "text": " Ok, the speech now is simple Ok, until now we did the class, but we didn't use it We need to go to my frame Now, instead of creating a circle or rectangle I found what I need to do I need to create an object of type circle with border Ok guys, this is cbnewcirclewithborder", "tokens": [3477, 11, 264, 6218, 586, 307, 2199, 3477, 11, 1826, 586, 321, 630, 264, 1508, 11, 457, 321, 994, 380, 764, 309, 492, 643, 281, 352, 281, 452, 3920, 823, 11, 2602, 295, 4084, 257, 6329, 420, 21930, 286, 1352, 437, 286, 643, 281, 360, 286, 643, 281, 1884, 364, 2657, 295, 2010, 6329, 365, 7838, 3477, 1074, 11, 341, 307, 269, 65, 7686, 23568, 2160, 11820, 65, 4687], "avg_logprob": -0.511607153075082, "compression_ratio": 1.5480225988700564, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 721.79, "end": 722.11, "word": " Ok,", "probability": 0.1591796875}, {"start": 722.37, "end": 722.53, "word": " the", "probability": 0.1976318359375}, {"start": 722.53, "end": 722.69, "word": " speech", "probability": 0.221435546875}, {"start": 722.69, "end": 722.95, "word": " now", "probability": 0.221435546875}, {"start": 722.95, "end": 723.03, "word": " is", "probability": 0.8037109375}, {"start": 723.03, "end": 723.35, "word": " simple", "probability": 0.73876953125}, {"start": 723.35, "end": 723.83, "word": " Ok,", "probability": 0.11749267578125}, {"start": 723.89, "end": 724.11, "word": " until", "probability": 0.0791015625}, {"start": 724.11, "end": 724.45, "word": " now", "probability": 0.93359375}, {"start": 724.45, "end": 724.93, "word": " we", "probability": 0.50048828125}, {"start": 724.93, "end": 725.11, "word": " did", "probability": 0.253662109375}, {"start": 725.11, "end": 725.27, "word": " the", "probability": 0.6708984375}, {"start": 725.27, "end": 725.49, "word": " class,", "probability": 0.91845703125}, {"start": 725.51, "end": 725.65, "word": " but", "probability": 0.89111328125}, {"start": 725.65, "end": 725.75, "word": " we", "probability": 0.7919921875}, {"start": 725.75, "end": 725.77, "word": " didn't", "probability": 0.7276611328125}, {"start": 725.77, "end": 726.09, "word": " use", "probability": 0.818359375}, {"start": 726.09, "end": 726.39, "word": " it", "probability": 0.9345703125}, {"start": 726.39, "end": 726.87, "word": " We", "probability": 0.24658203125}, {"start": 726.87, "end": 727.03, "word": " need", "probability": 0.325439453125}, {"start": 727.03, "end": 727.11, "word": " to", "probability": 0.95263671875}, {"start": 727.11, "end": 727.17, "word": " go", "probability": 0.7890625}, {"start": 727.17, "end": 727.35, "word": " to", "probability": 0.85205078125}, {"start": 727.35, "end": 727.63, "word": " my", "probability": 0.58984375}, {"start": 727.63, "end": 727.97, "word": " frame", "probability": 0.85009765625}, {"start": 727.97, "end": 729.05, "word": " Now,", "probability": 0.466796875}, {"start": 729.15, "end": 729.31, "word": " instead", "probability": 0.78662109375}, {"start": 729.31, "end": 729.69, "word": " of", "probability": 0.94970703125}, {"start": 729.69, "end": 730.01, "word": " creating", "probability": 0.61474609375}, {"start": 730.01, "end": 730.57, "word": " a", "probability": 0.595703125}, {"start": 730.57, "end": 730.91, "word": " circle", "probability": 0.8662109375}, {"start": 730.91, "end": 731.01, "word": " or", "probability": 0.623046875}, {"start": 731.01, "end": 731.49, "word": " rectangle", "probability": 0.85791015625}, {"start": 731.49, "end": 731.99, "word": " I", "probability": 0.4921875}, {"start": 731.99, "end": 732.31, "word": " found", "probability": 0.40234375}, {"start": 732.31, "end": 732.71, "word": " what", "probability": 0.63427734375}, {"start": 732.71, "end": 732.83, "word": " I", "probability": 0.87451171875}, {"start": 732.83, "end": 732.97, "word": " need", "probability": 0.47265625}, {"start": 732.97, "end": 733.01, "word": " to", "probability": 0.96240234375}, {"start": 733.01, "end": 733.31, "word": " do", "probability": 0.8642578125}, {"start": 733.31, "end": 733.91, "word": " I", "probability": 0.728515625}, {"start": 733.91, "end": 734.07, "word": " need", "probability": 0.76220703125}, {"start": 734.07, "end": 734.23, "word": " to", "probability": 0.9697265625}, {"start": 734.23, "end": 734.43, "word": " create", "probability": 0.884765625}, {"start": 734.43, "end": 735.65, "word": " an", "probability": 0.63525390625}, {"start": 735.65, "end": 735.97, "word": " object", "probability": 0.94775390625}, {"start": 735.97, "end": 736.07, "word": " of", "probability": 0.412841796875}, {"start": 736.07, "end": 736.29, "word": " type", "probability": 0.48681640625}, {"start": 736.29, "end": 736.79, "word": " circle", "probability": 0.873046875}, {"start": 736.79, "end": 738.09, "word": " with", "probability": 0.78662109375}, {"start": 738.09, "end": 739.31, "word": " border", "probability": 0.82763671875}, {"start": 739.31, "end": 741.61, "word": " Ok", "probability": 0.77490234375}, {"start": 741.61, "end": 742.03, "word": " guys,", "probability": 0.69677734375}, {"start": 742.55, "end": 742.75, "word": " this", "probability": 0.7783203125}, {"start": 742.75, "end": 742.83, "word": " is", "probability": 0.9072265625}, {"start": 742.83, "end": 749.23, "word": " cbnewcirclewithborder", "probability": 0.722259521484375}], "temperature": 1.0}, {"id": 30, "seek": 77380, "start": 750.78, "end": 773.8, "text": "and I give it the center and half of the line and then go to the cb and give it the set border which is the new attribute highcolor.red cb.width 3 for example and then I tell it cb.draw get graphics", "tokens": [474, 286, 976, 309, 264, 3056, 293, 1922, 295, 264, 1622, 293, 550, 352, 281, 264, 269, 65, 293, 976, 309, 264, 992, 7838, 597, 307, 264, 777, 19667, 1090, 23851, 13, 986, 269, 65, 13, 21271, 805, 337, 1365, 293, 550, 286, 980, 309, 269, 65, 13, 48848, 483, 11837], "avg_logprob": -0.5709134603922184, "compression_ratio": 1.523076923076923, "no_speech_prob": 0.0, "words": [{"start": 750.78, "end": 750.96, "word": "and", "probability": 0.08477783203125}, {"start": 750.96, "end": 751.06, "word": " I", "probability": 0.301513671875}, {"start": 751.06, "end": 751.24, "word": " give", "probability": 0.368408203125}, {"start": 751.24, "end": 751.48, "word": " it", "probability": 0.58935546875}, {"start": 751.48, "end": 752.66, "word": " the", "probability": 0.3505859375}, {"start": 752.66, "end": 753.12, "word": " center", "probability": 0.56005859375}, {"start": 753.12, "end": 753.44, "word": " and", "probability": 0.77197265625}, {"start": 753.44, "end": 753.6, "word": " half", "probability": 0.37451171875}, {"start": 753.6, "end": 753.74, "word": " of", "probability": 0.50390625}, {"start": 753.74, "end": 753.78, "word": " the", "probability": 0.67431640625}, {"start": 753.78, "end": 753.98, "word": " line", "probability": 0.343994140625}, {"start": 753.98, "end": 755.04, "word": " and", "probability": 0.5419921875}, {"start": 755.04, "end": 755.4, "word": " then", "probability": 0.4443359375}, {"start": 755.4, "end": 755.74, "word": " go", "probability": 0.40869140625}, {"start": 755.74, "end": 755.92, "word": " to", "probability": 0.94287109375}, {"start": 755.92, "end": 756.02, "word": " the", "probability": 0.61279296875}, {"start": 756.02, "end": 756.38, "word": " cb", "probability": 0.4005126953125}, {"start": 756.38, "end": 756.54, "word": " and", "probability": 0.68408203125}, {"start": 756.54, "end": 756.78, "word": " give", "probability": 0.6455078125}, {"start": 756.78, "end": 756.92, "word": " it", "probability": 0.8291015625}, {"start": 756.92, "end": 757.0, "word": " the", "probability": 0.370849609375}, {"start": 757.0, "end": 757.18, "word": " set", "probability": 0.89208984375}, {"start": 757.18, "end": 757.58, "word": " border", "probability": 0.6982421875}, {"start": 757.58, "end": 757.9, "word": " which", "probability": 0.1402587890625}, {"start": 757.9, "end": 758.2, "word": " is", "probability": 0.916015625}, {"start": 758.2, "end": 758.22, "word": " the", "probability": 0.66015625}, {"start": 758.22, "end": 758.22, "word": " new", "probability": 0.8310546875}, {"start": 758.22, "end": 758.58, "word": " attribute", "probability": 0.71044921875}, {"start": 758.58, "end": 760.44, "word": " highcolor", "probability": 0.5013427734375}, {"start": 760.44, "end": 761.48, "word": ".red", "probability": 0.912353515625}, {"start": 761.48, "end": 763.42, "word": " cb", "probability": 0.63818359375}, {"start": 763.42, "end": 765.18, "word": ".width", "probability": 0.944580078125}, {"start": 765.18, "end": 765.86, "word": " 3", "probability": 0.11859130859375}, {"start": 765.86, "end": 766.16, "word": " for", "probability": 0.3466796875}, {"start": 766.16, "end": 766.16, "word": " example", "probability": 0.9501953125}, {"start": 766.16, "end": 766.86, "word": " and", "probability": 0.73046875}, {"start": 766.86, "end": 767.2, "word": " then", "probability": 0.78564453125}, {"start": 767.2, "end": 767.36, "word": " I", "probability": 0.7939453125}, {"start": 767.36, "end": 767.52, "word": " tell", "probability": 0.29296875}, {"start": 767.52, "end": 767.66, "word": " it", "probability": 0.58154296875}, {"start": 767.66, "end": 768.64, "word": " cb", "probability": 0.881103515625}, {"start": 768.64, "end": 770.78, "word": ".draw", "probability": 0.89404296875}, {"start": 770.78, "end": 772.98, "word": " get", "probability": 0.462890625}, {"start": 772.98, "end": 773.8, "word": " graphics", "probability": 0.6904296875}], "temperature": 1.0}, {"id": 31, "seek": 80216, "start": 782.32, "end": 802.16, "text": " With me guys, make a run And it will add shape, it will add a circle shape in a circle Ok, where is the problem? Pay attention with me Because I made a circle, I want to add a rectangle with border The rectangle needs to have a border What will we do?", "tokens": [2022, 385, 1074, 11, 652, 257, 1190, 400, 309, 486, 909, 3909, 11, 309, 486, 909, 257, 6329, 3909, 294, 257, 6329, 3477, 11, 689, 307, 264, 1154, 30, 11431, 3202, 365, 385, 1436, 286, 1027, 257, 6329, 11, 286, 528, 281, 909, 257, 21930, 365, 7838, 440, 21930, 2203, 281, 362, 257, 7838, 708, 486, 321, 360, 30], "avg_logprob": -0.57760415772597, "compression_ratio": 1.5849056603773586, "no_speech_prob": 3.5762786865234375e-06, "words": [{"start": 782.32, "end": 782.52, "word": " With", "probability": 0.07427978515625}, {"start": 782.52, "end": 782.68, "word": " me", "probability": 0.9208984375}, {"start": 782.68, "end": 783.04, "word": " guys,", "probability": 0.556640625}, {"start": 783.32, "end": 783.68, "word": " make", "probability": 0.199951171875}, {"start": 783.68, "end": 783.72, "word": " a", "probability": 0.62353515625}, {"start": 783.72, "end": 783.96, "word": " run", "probability": 0.41552734375}, {"start": 783.96, "end": 786.26, "word": " And", "probability": 0.26025390625}, {"start": 786.26, "end": 786.4, "word": " it", "probability": 0.357177734375}, {"start": 786.4, "end": 786.42, "word": " will", "probability": 0.75537109375}, {"start": 786.42, "end": 786.66, "word": " add", "probability": 0.84130859375}, {"start": 786.66, "end": 786.98, "word": " shape,", "probability": 0.67626953125}, {"start": 787.1, "end": 787.28, "word": " it", "probability": 0.60986328125}, {"start": 787.28, "end": 787.38, "word": " will", "probability": 0.8544921875}, {"start": 787.38, "end": 787.66, "word": " add", "probability": 0.85546875}, {"start": 787.66, "end": 788.78, "word": " a", "probability": 0.642578125}, {"start": 788.78, "end": 789.08, "word": " circle", "probability": 0.5400390625}, {"start": 789.08, "end": 789.42, "word": " shape", "probability": 0.5927734375}, {"start": 789.42, "end": 789.54, "word": " in", "probability": 0.3115234375}, {"start": 789.54, "end": 789.6, "word": " a", "probability": 0.4326171875}, {"start": 789.6, "end": 789.78, "word": " circle", "probability": 0.4853515625}, {"start": 789.78, "end": 791.54, "word": " Ok,", "probability": 0.3271484375}, {"start": 791.7, "end": 791.86, "word": " where", "probability": 0.85546875}, {"start": 791.86, "end": 791.96, "word": " is", "probability": 0.82568359375}, {"start": 791.96, "end": 792.0, "word": " the", "probability": 0.87060546875}, {"start": 792.0, "end": 792.22, "word": " problem?", "probability": 0.8359375}, {"start": 792.76, "end": 793.06, "word": " Pay", "probability": 0.353759765625}, {"start": 793.06, "end": 793.2, "word": " attention", "probability": 0.93017578125}, {"start": 793.2, "end": 793.34, "word": " with", "probability": 0.77294921875}, {"start": 793.34, "end": 793.58, "word": " me", "probability": 0.96337890625}, {"start": 793.58, "end": 794.72, "word": " Because", "probability": 0.70361328125}, {"start": 794.72, "end": 795.08, "word": " I", "probability": 0.9091796875}, {"start": 795.08, "end": 795.38, "word": " made", "probability": 0.6875}, {"start": 795.38, "end": 795.54, "word": " a", "probability": 0.59765625}, {"start": 795.54, "end": 795.88, "word": " circle,", "probability": 0.96728515625}, {"start": 796.12, "end": 796.34, "word": " I", "probability": 0.27099609375}, {"start": 796.34, "end": 796.58, "word": " want", "probability": 0.6640625}, {"start": 796.58, "end": 796.72, "word": " to", "probability": 0.9658203125}, {"start": 796.72, "end": 797.06, "word": " add", "probability": 0.88330078125}, {"start": 797.06, "end": 797.6, "word": " a", "probability": 0.54443359375}, {"start": 797.6, "end": 798.06, "word": " rectangle", "probability": 0.93994140625}, {"start": 798.06, "end": 798.34, "word": " with", "probability": 0.8583984375}, {"start": 798.34, "end": 798.7, "word": " border", "probability": 0.6259765625}, {"start": 798.7, "end": 799.66, "word": " The", "probability": 0.2435302734375}, {"start": 799.66, "end": 800.0, "word": " rectangle", "probability": 0.837890625}, {"start": 800.0, "end": 800.22, "word": " needs", "probability": 0.304443359375}, {"start": 800.22, "end": 800.22, "word": " to", "probability": 0.457275390625}, {"start": 800.22, "end": 800.5, "word": " have", "probability": 0.6611328125}, {"start": 800.5, "end": 800.56, "word": " a", "probability": 0.65380859375}, {"start": 800.56, "end": 800.8, "word": " border", "probability": 0.83935546875}, {"start": 800.8, "end": 801.66, "word": " What", "probability": 0.52197265625}, {"start": 801.66, "end": 801.76, "word": " will", "probability": 0.255126953125}, {"start": 801.76, "end": 802.0, "word": " we", "probability": 0.46630859375}, {"start": 802.0, "end": 802.16, "word": " do?", "probability": 0.80908203125}], "temperature": 1.0}, {"id": 32, "seek": 83137, "start": 803.21, "end": 831.37, "text": " You will create a new class with the name rectangle with border and extend the rectangle and create an override for the new attribute list which is border width and color and create an override for the draw and describe Now suppose I have not one shape or two shapes or three shapes I have ten shapes I have circle and rectangle", "tokens": [509, 486, 1884, 257, 777, 1508, 365, 264, 1315, 21930, 365, 7838, 293, 10101, 264, 21930, 293, 1884, 364, 42321, 337, 264, 777, 19667, 1329, 597, 307, 7838, 11402, 293, 2017, 293, 1884, 364, 42321, 337, 264, 2642, 293, 6786, 823, 7297, 286, 362, 406, 472, 3909, 420, 732, 10854, 420, 1045, 10854, 286, 362, 2064, 10854, 286, 362, 6329, 293, 21930], "avg_logprob": -0.5833333049501691, "compression_ratio": 1.9127906976744187, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 803.21, "end": 803.45, "word": " You", "probability": 0.2083740234375}, {"start": 803.45, "end": 803.51, "word": " will", "probability": 0.56982421875}, {"start": 803.51, "end": 803.95, "word": " create", "probability": 0.5283203125}, {"start": 803.95, "end": 804.09, "word": " a", "probability": 0.91015625}, {"start": 804.09, "end": 804.09, "word": " new", "probability": 0.8525390625}, {"start": 804.09, "end": 804.41, "word": " class", "probability": 0.9287109375}, {"start": 804.41, "end": 804.87, "word": " with", "probability": 0.178955078125}, {"start": 804.87, "end": 805.03, "word": " the", "probability": 0.309326171875}, {"start": 805.03, "end": 805.03, "word": " name", "probability": 0.86474609375}, {"start": 805.03, "end": 805.89, "word": " rectangle", "probability": 0.490966796875}, {"start": 805.89, "end": 806.17, "word": " with", "probability": 0.7099609375}, {"start": 806.17, "end": 806.57, "word": " border", "probability": 0.765625}, {"start": 806.57, "end": 806.83, "word": " and", "probability": 0.3935546875}, {"start": 806.83, "end": 806.97, "word": " extend", "probability": 0.6142578125}, {"start": 806.97, "end": 807.21, "word": " the", "probability": 0.423828125}, {"start": 807.21, "end": 807.65, "word": " rectangle", "probability": 0.93017578125}, {"start": 807.65, "end": 807.81, "word": " and", "probability": 0.364990234375}, {"start": 807.81, "end": 807.99, "word": " create", "probability": 0.12176513671875}, {"start": 807.99, "end": 808.17, "word": " an", "probability": 0.38916015625}, {"start": 808.17, "end": 808.53, "word": " override", "probability": 0.93603515625}, {"start": 808.53, "end": 808.71, "word": " for", "probability": 0.456298828125}, {"start": 808.71, "end": 808.81, "word": " the", "probability": 0.430419921875}, {"start": 808.81, "end": 808.95, "word": " new", "probability": 0.2098388671875}, {"start": 808.95, "end": 809.77, "word": " attribute", "probability": 0.64990234375}, {"start": 809.77, "end": 810.41, "word": " list", "probability": 0.5390625}, {"start": 810.41, "end": 811.25, "word": " which", "probability": 0.331298828125}, {"start": 811.25, "end": 811.39, "word": " is", "probability": 0.77685546875}, {"start": 811.39, "end": 812.77, "word": " border", "probability": 0.57470703125}, {"start": 812.77, "end": 813.07, "word": " width", "probability": 0.40234375}, {"start": 813.07, "end": 813.25, "word": " and", "probability": 0.74462890625}, {"start": 813.25, "end": 813.53, "word": " color", "probability": 0.8173828125}, {"start": 813.53, "end": 813.73, "word": " and", "probability": 0.70556640625}, {"start": 813.73, "end": 814.05, "word": " create", "probability": 0.52490234375}, {"start": 814.05, "end": 814.23, "word": " an", "probability": 0.74951171875}, {"start": 814.23, "end": 814.57, "word": " override", "probability": 0.94970703125}, {"start": 814.57, "end": 814.87, "word": " for", "probability": 0.87744140625}, {"start": 814.87, "end": 814.95, "word": " the", "probability": 0.39599609375}, {"start": 814.95, "end": 815.23, "word": " draw", "probability": 0.65380859375}, {"start": 815.23, "end": 815.81, "word": " and", "probability": 0.8828125}, {"start": 815.81, "end": 816.35, "word": " describe", "probability": 0.6328125}, {"start": 816.35, "end": 819.53, "word": " Now", "probability": 0.0772705078125}, {"start": 819.53, "end": 823.13, "word": " suppose", "probability": 0.189208984375}, {"start": 823.13, "end": 823.37, "word": " I", "probability": 0.56640625}, {"start": 823.37, "end": 823.63, "word": " have", "probability": 0.69287109375}, {"start": 823.63, "end": 823.77, "word": " not", "probability": 0.453369140625}, {"start": 823.77, "end": 824.15, "word": " one", "probability": 0.495361328125}, {"start": 824.15, "end": 824.15, "word": " shape", "probability": 0.80078125}, {"start": 824.15, "end": 824.37, "word": " or", "probability": 0.43505859375}, {"start": 824.37, "end": 824.87, "word": " two", "probability": 0.8935546875}, {"start": 824.87, "end": 824.89, "word": " shapes", "probability": 0.75732421875}, {"start": 824.89, "end": 825.23, "word": " or", "probability": 0.69580078125}, {"start": 825.23, "end": 825.55, "word": " three", "probability": 0.8828125}, {"start": 825.55, "end": 825.59, "word": " shapes", "probability": 0.65380859375}, {"start": 825.59, "end": 825.69, "word": " I", "probability": 0.2861328125}, {"start": 825.69, "end": 825.79, "word": " have", "probability": 0.9365234375}, {"start": 825.79, "end": 826.03, "word": " ten", "probability": 0.61572265625}, {"start": 826.03, "end": 826.39, "word": " shapes", "probability": 0.78466796875}, {"start": 826.39, "end": 827.95, "word": " I", "probability": 0.751953125}, {"start": 827.95, "end": 828.25, "word": " have", "probability": 0.9453125}, {"start": 828.25, "end": 828.99, "word": " circle", "probability": 0.61572265625}, {"start": 828.99, "end": 830.31, "word": " and", "probability": 0.80126953125}, {"start": 830.31, "end": 831.37, "word": " rectangle", "probability": 0.8828125}], "temperature": 1.0}, {"id": 33, "seek": 84671, "start": 835.73, "end": 846.71, "text": "and I have a triangle and another shape and a third and a fourth and a fifth and I want to add a border to these shapes what should I do now?", "tokens": [474, 286, 362, 257, 13369, 293, 1071, 3909, 293, 257, 2636, 293, 257, 6409, 293, 257, 9266, 293, 286, 528, 281, 909, 257, 7838, 281, 613, 10854, 437, 820, 286, 360, 586, 30], "avg_logprob": -0.4427849308532827, "compression_ratio": 1.4536082474226804, "no_speech_prob": 2.6226043701171875e-06, "words": [{"start": 835.73, "end": 835.97, "word": "and", "probability": 0.1466064453125}, {"start": 835.97, "end": 836.23, "word": " I", "probability": 0.53515625}, {"start": 836.23, "end": 836.25, "word": " have", "probability": 0.853515625}, {"start": 836.25, "end": 836.37, "word": " a", "probability": 0.580078125}, {"start": 836.37, "end": 836.89, "word": " triangle", "probability": 0.91259765625}, {"start": 836.89, "end": 839.21, "word": " and", "probability": 0.284423828125}, {"start": 839.21, "end": 839.29, "word": " another", "probability": 0.3037109375}, {"start": 839.29, "end": 839.65, "word": " shape", "probability": 0.8125}, {"start": 839.65, "end": 840.09, "word": " and", "probability": 0.595703125}, {"start": 840.09, "end": 840.15, "word": " a", "probability": 0.2283935546875}, {"start": 840.15, "end": 840.37, "word": " third", "probability": 0.8134765625}, {"start": 840.37, "end": 840.59, "word": " and", "probability": 0.546875}, {"start": 840.59, "end": 840.67, "word": " a", "probability": 0.61669921875}, {"start": 840.67, "end": 840.85, "word": " fourth", "probability": 0.92431640625}, {"start": 840.85, "end": 841.01, "word": " and", "probability": 0.919921875}, {"start": 841.01, "end": 841.07, "word": " a", "probability": 0.9140625}, {"start": 841.07, "end": 841.39, "word": " fifth", "probability": 0.9541015625}, {"start": 841.39, "end": 842.17, "word": " and", "probability": 0.46923828125}, {"start": 842.17, "end": 842.29, "word": " I", "probability": 0.93603515625}, {"start": 842.29, "end": 842.41, "word": " want", "probability": 0.43994140625}, {"start": 842.41, "end": 842.47, "word": " to", "probability": 0.96875}, {"start": 842.47, "end": 842.63, "word": " add", "probability": 0.8447265625}, {"start": 842.63, "end": 842.75, "word": " a", "probability": 0.70751953125}, {"start": 842.75, "end": 843.07, "word": " border", "probability": 0.85205078125}, {"start": 843.07, "end": 843.73, "word": " to", "probability": 0.7392578125}, {"start": 843.73, "end": 843.85, "word": " these", "probability": 0.763671875}, {"start": 843.85, "end": 844.17, "word": " shapes", "probability": 0.857421875}, {"start": 844.17, "end": 845.31, "word": " what", "probability": 0.3046875}, {"start": 845.31, "end": 845.49, "word": " should", "probability": 0.72509765625}, {"start": 845.49, "end": 845.73, "word": " I", "probability": 0.97509765625}, {"start": 845.73, "end": 846.01, "word": " do", "probability": 0.96044921875}, {"start": 846.01, "end": 846.71, "word": " now?", "probability": 0.61572265625}], "temperature": 1.0}, {"id": 34, "seek": 87005, "start": 847.71, "end": 870.05, "text": "You have to add, we have agreed or we have learned always and we are happy from the first year of university that you have to add new things, go and make extend for the class and add them So you have to go and make extend for this one to make a class called circle with border CWB circle with border And this is extend to make a new class called rectangle with border And this is triangle with border", "tokens": [3223, 362, 281, 909, 11, 321, 362, 9166, 420, 321, 362, 3264, 1009, 293, 321, 366, 2055, 490, 264, 700, 1064, 295, 5454, 300, 291, 362, 281, 909, 777, 721, 11, 352, 293, 652, 10101, 337, 264, 1508, 293, 909, 552, 407, 291, 362, 281, 352, 293, 652, 10101, 337, 341, 472, 281, 652, 257, 1508, 1219, 6329, 365, 7838, 383, 54, 33, 6329, 365, 7838, 400, 341, 307, 10101, 281, 652, 257, 777, 1508, 1219, 21930, 365, 7838, 400, 341, 307, 13369, 365, 7838], "avg_logprob": -0.4414971016867216, "compression_ratio": 2.094240837696335, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 847.71, "end": 847.91, "word": "You", "probability": 0.167724609375}, {"start": 847.91, "end": 848.03, "word": " have", "probability": 0.157470703125}, {"start": 848.03, "end": 848.17, "word": " to", "probability": 0.96435546875}, {"start": 848.17, "end": 848.37, "word": " add,", "probability": 0.84521484375}, {"start": 848.49, "end": 848.63, "word": " we", "probability": 0.5703125}, {"start": 848.63, "end": 848.71, "word": " have", "probability": 0.256591796875}, {"start": 848.71, "end": 849.01, "word": " agreed", "probability": 0.56298828125}, {"start": 849.01, "end": 849.45, "word": " or", "probability": 0.4931640625}, {"start": 849.45, "end": 849.57, "word": " we", "probability": 0.62890625}, {"start": 849.57, "end": 849.57, "word": " have", "probability": 0.65087890625}, {"start": 849.57, "end": 849.87, "word": " learned", "probability": 0.30078125}, {"start": 849.87, "end": 850.23, "word": " always", "probability": 0.3447265625}, {"start": 850.23, "end": 850.33, "word": " and", "probability": 0.44140625}, {"start": 850.33, "end": 850.49, "word": " we", "probability": 0.8564453125}, {"start": 850.49, "end": 850.59, "word": " are", "probability": 0.79052734375}, {"start": 850.59, "end": 850.75, "word": " happy", "probability": 0.79150390625}, {"start": 850.75, "end": 851.01, "word": " from", "probability": 0.399169921875}, {"start": 851.01, "end": 851.35, "word": " the", "probability": 0.3828125}, {"start": 851.35, "end": 851.35, "word": " first", "probability": 0.71533203125}, {"start": 851.35, "end": 851.35, "word": " year", "probability": 0.86328125}, {"start": 851.35, "end": 851.53, "word": " of", "probability": 0.70361328125}, {"start": 851.53, "end": 851.71, "word": " university", "probability": 0.54833984375}, {"start": 851.71, "end": 851.93, "word": " that", "probability": 0.322021484375}, {"start": 851.93, "end": 852.05, "word": " you", "probability": 0.9189453125}, {"start": 852.05, "end": 852.17, "word": " have", "probability": 0.7958984375}, {"start": 852.17, "end": 852.31, "word": " to", "probability": 0.9638671875}, {"start": 852.31, "end": 852.59, "word": " add", "probability": 0.90966796875}, {"start": 852.59, "end": 852.69, "word": " new", "probability": 0.810546875}, {"start": 852.69, "end": 853.27, "word": " things,", "probability": 0.79833984375}, {"start": 853.43, "end": 853.57, "word": " go", "probability": 0.58056640625}, {"start": 853.57, "end": 853.65, "word": " and", "probability": 0.439208984375}, {"start": 853.65, "end": 853.77, "word": " make", "probability": 0.3359375}, {"start": 853.77, "end": 854.13, "word": " extend", "probability": 0.66015625}, {"start": 854.13, "end": 854.27, "word": " for", "probability": 0.422607421875}, {"start": 854.27, "end": 854.37, "word": " the", "probability": 0.681640625}, {"start": 854.37, "end": 854.63, "word": " class", "probability": 0.94384765625}, {"start": 854.63, "end": 854.75, "word": " and", "probability": 0.89501953125}, {"start": 854.75, "end": 854.93, "word": " add", "probability": 0.88037109375}, {"start": 854.93, "end": 855.15, "word": " them", "probability": 0.46337890625}, {"start": 855.15, "end": 855.69, "word": " So", "probability": 0.368408203125}, {"start": 855.69, "end": 855.85, "word": " you", "probability": 0.81396484375}, {"start": 855.85, "end": 855.89, "word": " have", "probability": 0.8291015625}, {"start": 855.89, "end": 856.03, "word": " to", "probability": 0.96533203125}, {"start": 856.03, "end": 856.17, "word": " go", "probability": 0.4951171875}, {"start": 856.17, "end": 856.29, "word": " and", "probability": 0.77587890625}, {"start": 856.29, "end": 856.49, "word": " make", "probability": 0.80322265625}, {"start": 856.49, "end": 856.97, "word": " extend", "probability": 0.8876953125}, {"start": 856.97, "end": 857.15, "word": " for", "probability": 0.8056640625}, {"start": 857.15, "end": 857.37, "word": " this", "probability": 0.841796875}, {"start": 857.37, "end": 857.45, "word": " one", "probability": 0.412353515625}, {"start": 857.45, "end": 857.67, "word": " to", "probability": 0.67333984375}, {"start": 857.67, "end": 857.99, "word": " make", "probability": 0.90576171875}, {"start": 857.99, "end": 858.15, "word": " a", "probability": 0.75}, {"start": 858.15, "end": 858.43, "word": " class", "probability": 0.93359375}, {"start": 858.43, "end": 858.75, "word": " called", "probability": 0.50732421875}, {"start": 858.75, "end": 859.23, "word": " circle", "probability": 0.68603515625}, {"start": 859.23, "end": 859.45, "word": " with", "probability": 0.89892578125}, {"start": 859.45, "end": 859.91, "word": " border", "probability": 0.796875}, {"start": 859.91, "end": 861.59, "word": " CWB", "probability": 0.5652262369791666}, {"start": 861.59, "end": 862.03, "word": " circle", "probability": 0.46337890625}, {"start": 862.03, "end": 862.25, "word": " with", "probability": 0.9189453125}, {"start": 862.25, "end": 862.61, "word": " border", "probability": 0.8037109375}, {"start": 862.61, "end": 863.27, "word": " And", "probability": 0.5283203125}, {"start": 863.27, "end": 863.47, "word": " this", "probability": 0.91748046875}, {"start": 863.47, "end": 863.51, "word": " is", "probability": 0.39990234375}, {"start": 863.51, "end": 863.93, "word": " extend", "probability": 0.85546875}, {"start": 863.93, "end": 864.17, "word": " to", "probability": 0.8974609375}, {"start": 864.17, "end": 864.55, "word": " make", "probability": 0.91455078125}, {"start": 864.55, "end": 864.83, "word": " a", "probability": 0.9423828125}, {"start": 864.83, "end": 864.83, "word": " new", "probability": 0.8984375}, {"start": 864.83, "end": 865.49, "word": " class", "probability": 0.95703125}, {"start": 865.49, "end": 865.85, "word": " called", "probability": 0.70068359375}, {"start": 865.85, "end": 866.31, "word": " rectangle", "probability": 0.90283203125}, {"start": 866.31, "end": 866.59, "word": " with", "probability": 0.91259765625}, {"start": 866.59, "end": 867.01, "word": " border", "probability": 0.8095703125}, {"start": 867.01, "end": 868.25, "word": " And", "probability": 0.68994140625}, {"start": 868.25, "end": 868.55, "word": " this", "probability": 0.93408203125}, {"start": 868.55, "end": 868.87, "word": " is", "probability": 0.84521484375}, {"start": 868.87, "end": 869.35, "word": " triangle", "probability": 0.86083984375}, {"start": 869.35, "end": 869.67, "word": " with", "probability": 0.9150390625}, {"start": 869.67, "end": 870.05, "word": " border", "probability": 0.818359375}], "temperature": 1.0}, {"id": 35, "seek": 89399, "start": 871.85, "end": 893.99, "text": "So if you have 10 shapes, how many subclasses do you need to make? 10 subclasses. Ok, I told you that we need to make solid shapes. What do I mean by solid shapes? It means that now the circle I'm drawing is separated. We need to make a solid circle. Ok? This is a new feature. It needs to fill the existing circle. So we need to modify the main circle to make it.", "tokens": [6455, 498, 291, 362, 1266, 10854, 11, 577, 867, 1422, 11665, 279, 360, 291, 643, 281, 652, 30, 1266, 1422, 11665, 279, 13, 3477, 11, 286, 1907, 291, 300, 321, 643, 281, 652, 5100, 10854, 13, 708, 360, 286, 914, 538, 5100, 10854, 30, 467, 1355, 300, 586, 264, 6329, 286, 478, 6316, 307, 12005, 13, 492, 643, 281, 652, 257, 5100, 6329, 13, 3477, 30, 639, 307, 257, 777, 4111, 13, 467, 2203, 281, 2836, 264, 6741, 6329, 13, 407, 321, 643, 281, 16927, 264, 2135, 6329, 281, 652, 309, 13], "avg_logprob": -0.535954285693425, "compression_ratio": 1.766990291262136, "no_speech_prob": 1.5437602996826172e-05, "words": [{"start": 871.8499999999999, "end": 872.29, "word": "So", "probability": 0.1973876953125}, {"start": 872.29, "end": 872.45, "word": " if", "probability": 0.45361328125}, {"start": 872.45, "end": 872.67, "word": " you", "probability": 0.91455078125}, {"start": 872.67, "end": 872.73, "word": " have", "probability": 0.904296875}, {"start": 872.73, "end": 873.01, "word": " 10", "probability": 0.7216796875}, {"start": 873.01, "end": 873.29, "word": " shapes,", "probability": 0.5791015625}, {"start": 873.81, "end": 874.41, "word": " how", "probability": 0.17822265625}, {"start": 874.41, "end": 874.71, "word": " many", "probability": 0.87939453125}, {"start": 874.71, "end": 875.43, "word": " subclasses", "probability": 0.7744140625}, {"start": 875.43, "end": 875.43, "word": " do", "probability": 0.462890625}, {"start": 875.43, "end": 875.43, "word": " you", "probability": 0.939453125}, {"start": 875.43, "end": 875.43, "word": " need", "probability": 0.484130859375}, {"start": 875.43, "end": 875.51, "word": " to", "probability": 0.6513671875}, {"start": 875.51, "end": 875.51, "word": " make?", "probability": 0.51416015625}, {"start": 875.57, "end": 875.85, "word": " 10", "probability": 0.60498046875}, {"start": 875.85, "end": 877.45, "word": " subclasses.", "probability": 0.8564453125}, {"start": 877.45, "end": 877.69, "word": " Ok,", "probability": 0.2159423828125}, {"start": 877.99, "end": 878.61, "word": " I", "probability": 0.491455078125}, {"start": 878.61, "end": 878.85, "word": " told", "probability": 0.62255859375}, {"start": 878.85, "end": 879.07, "word": " you", "probability": 0.96044921875}, {"start": 879.07, "end": 879.17, "word": " that", "probability": 0.203857421875}, {"start": 879.17, "end": 879.45, "word": " we", "probability": 0.61279296875}, {"start": 879.45, "end": 879.65, "word": " need", "probability": 0.428955078125}, {"start": 879.65, "end": 879.65, "word": " to", "probability": 0.849609375}, {"start": 879.65, "end": 879.93, "word": " make", "probability": 0.90625}, {"start": 879.93, "end": 880.55, "word": " solid", "probability": 0.0780029296875}, {"start": 880.55, "end": 880.81, "word": " shapes.", "probability": 0.78759765625}, {"start": 881.51, "end": 881.95, "word": " What", "probability": 0.1715087890625}, {"start": 881.95, "end": 882.07, "word": " do", "probability": 0.404052734375}, {"start": 882.07, "end": 882.07, "word": " I", "probability": 0.5185546875}, {"start": 882.07, "end": 882.21, "word": " mean", "probability": 0.97265625}, {"start": 882.21, "end": 882.21, "word": " by", "probability": 0.900390625}, {"start": 882.21, "end": 882.29, "word": " solid", "probability": 0.88134765625}, {"start": 882.29, "end": 882.47, "word": " shapes?", "probability": 0.5}, {"start": 882.55, "end": 882.63, "word": " It", "probability": 0.11187744140625}, {"start": 882.63, "end": 882.63, "word": " means", "probability": 0.77783203125}, {"start": 882.63, "end": 882.71, "word": " that", "probability": 0.611328125}, {"start": 882.71, "end": 882.89, "word": " now", "probability": 0.16650390625}, {"start": 882.89, "end": 883.03, "word": " the", "probability": 0.63671875}, {"start": 883.03, "end": 883.23, "word": " circle", "probability": 0.86181640625}, {"start": 883.23, "end": 883.43, "word": " I'm", "probability": 0.3046875}, {"start": 883.43, "end": 883.53, "word": " drawing", "probability": 0.83837890625}, {"start": 883.53, "end": 883.69, "word": " is", "probability": 0.83203125}, {"start": 883.69, "end": 884.07, "word": " separated.", "probability": 0.2318115234375}, {"start": 884.61, "end": 884.77, "word": " We", "probability": 0.82666015625}, {"start": 884.77, "end": 884.91, "word": " need", "probability": 0.57763671875}, {"start": 884.91, "end": 885.05, "word": " to", "probability": 0.96240234375}, {"start": 885.05, "end": 885.21, "word": " make", "probability": 0.833984375}, {"start": 885.21, "end": 885.33, "word": " a", "probability": 0.73681640625}, {"start": 885.33, "end": 885.53, "word": " solid", "probability": 0.95263671875}, {"start": 885.53, "end": 885.97, "word": " circle.", "probability": 0.9736328125}, {"start": 886.97, "end": 887.07, "word": " Ok?", "probability": 0.607421875}, {"start": 887.19, "end": 887.33, "word": " This", "probability": 0.3193359375}, {"start": 887.33, "end": 887.43, "word": " is", "probability": 0.8154296875}, {"start": 887.43, "end": 887.53, "word": " a", "probability": 0.80517578125}, {"start": 887.53, "end": 887.53, "word": " new", "probability": 0.88916015625}, {"start": 887.53, "end": 887.75, "word": " feature.", "probability": 0.912109375}, {"start": 888.43, "end": 888.87, "word": " It", "probability": 0.46728515625}, {"start": 888.87, "end": 889.03, "word": " needs", "probability": 0.321044921875}, {"start": 889.03, "end": 889.13, "word": " to", "probability": 0.9677734375}, {"start": 889.13, "end": 889.37, "word": " fill", "probability": 0.80029296875}, {"start": 889.37, "end": 890.15, "word": " the", "probability": 0.6044921875}, {"start": 890.15, "end": 890.81, "word": " existing", "probability": 0.8466796875}, {"start": 890.81, "end": 890.81, "word": " circle.", "probability": 0.93408203125}, {"start": 891.31, "end": 891.69, "word": " So", "probability": 0.892578125}, {"start": 891.69, "end": 891.87, "word": " we", "probability": 0.79296875}, {"start": 891.87, "end": 891.89, "word": " need", "probability": 0.76708984375}, {"start": 891.89, "end": 891.99, "word": " to", "probability": 0.96923828125}, {"start": 891.99, "end": 892.21, "word": " modify", "probability": 0.2705078125}, {"start": 892.21, "end": 892.53, "word": " the", "probability": 0.876953125}, {"start": 892.53, "end": 892.53, "word": " main", "probability": 0.26806640625}, {"start": 892.53, "end": 893.29, "word": " circle", "probability": 0.96044921875}, {"start": 893.29, "end": 893.51, "word": " to", "probability": 0.6220703125}, {"start": 893.51, "end": 893.79, "word": " make", "probability": 0.75634765625}, {"start": 893.79, "end": 893.99, "word": " it.", "probability": 0.9013671875}], "temperature": 1.0}, {"id": 36, "seek": 92441, "start": 895.25, "end": 924.41, "text": "Where do we go to edit? It has nothing to do with this border So you have to make a new class called solid circle, C Extend mean circle And you have to make a full rectangle You have to make what? Solid rectangle Extend mean rectangle So in order to add a solid feature to the shapes I have I have to make them all extend I have ten shapes and I have ten classes", "tokens": [14436, 360, 321, 352, 281, 8129, 30, 467, 575, 1825, 281, 360, 365, 341, 7838, 407, 291, 362, 281, 652, 257, 777, 1508, 1219, 5100, 6329, 11, 383, 9881, 521, 914, 6329, 400, 291, 362, 281, 652, 257, 1577, 21930, 509, 362, 281, 652, 437, 30, 26664, 21930, 9881, 521, 914, 21930, 407, 294, 1668, 281, 909, 257, 5100, 4111, 281, 264, 10854, 286, 362, 286, 362, 281, 652, 552, 439, 10101, 286, 362, 2064, 10854, 293, 286, 362, 2064, 5359], "avg_logprob": -0.4618902482637545, "compression_ratio": 1.865979381443299, "no_speech_prob": 6.318092346191406e-06, "words": [{"start": 895.25, "end": 895.51, "word": "Where", "probability": 0.1363525390625}, {"start": 895.51, "end": 895.67, "word": " do", "probability": 0.3212890625}, {"start": 895.67, "end": 895.79, "word": " we", "probability": 0.82080078125}, {"start": 895.79, "end": 895.79, "word": " go", "probability": 0.289794921875}, {"start": 895.79, "end": 895.95, "word": " to", "probability": 0.548828125}, {"start": 895.95, "end": 896.17, "word": " edit?", "probability": 0.377197265625}, {"start": 896.39, "end": 896.51, "word": " It", "probability": 0.5859375}, {"start": 896.51, "end": 896.61, "word": " has", "probability": 0.75634765625}, {"start": 896.61, "end": 896.77, "word": " nothing", "probability": 0.8330078125}, {"start": 896.77, "end": 896.93, "word": " to", "probability": 0.966796875}, {"start": 896.93, "end": 896.99, "word": " do", "probability": 0.96484375}, {"start": 896.99, "end": 897.11, "word": " with", "probability": 0.89404296875}, {"start": 897.11, "end": 897.21, "word": " this", "probability": 0.337890625}, {"start": 897.21, "end": 897.51, "word": " border", "probability": 0.80029296875}, {"start": 897.51, "end": 898.21, "word": " So", "probability": 0.4736328125}, {"start": 898.21, "end": 898.45, "word": " you", "probability": 0.7900390625}, {"start": 898.45, "end": 898.51, "word": " have", "probability": 0.400634765625}, {"start": 898.51, "end": 898.75, "word": " to", "probability": 0.96875}, {"start": 898.75, "end": 899.07, "word": " make", "probability": 0.437255859375}, {"start": 899.07, "end": 899.21, "word": " a", "probability": 0.95654296875}, {"start": 899.21, "end": 899.21, "word": " new", "probability": 0.90673828125}, {"start": 899.21, "end": 899.55, "word": " class", "probability": 0.939453125}, {"start": 899.55, "end": 901.05, "word": " called", "probability": 0.28173828125}, {"start": 901.05, "end": 901.45, "word": " solid", "probability": 0.475830078125}, {"start": 901.45, "end": 902.49, "word": " circle,", "probability": 0.437744140625}, {"start": 902.63, "end": 902.95, "word": " C", "probability": 0.33056640625}, {"start": 902.95, "end": 904.31, "word": " Extend", "probability": 0.822021484375}, {"start": 904.31, "end": 904.63, "word": " mean", "probability": 0.4453125}, {"start": 904.63, "end": 905.83, "word": " circle", "probability": 0.6689453125}, {"start": 905.83, "end": 906.41, "word": " And", "probability": 0.4560546875}, {"start": 906.41, "end": 906.53, "word": " you", "probability": 0.91064453125}, {"start": 906.53, "end": 906.65, "word": " have", "probability": 0.75439453125}, {"start": 906.65, "end": 906.73, "word": " to", "probability": 0.96875}, {"start": 906.73, "end": 907.07, "word": " make", "probability": 0.88525390625}, {"start": 907.07, "end": 907.75, "word": " a", "probability": 0.6943359375}, {"start": 907.75, "end": 908.73, "word": " full", "probability": 0.38525390625}, {"start": 908.73, "end": 908.85, "word": " rectangle", "probability": 0.96337890625}, {"start": 908.85, "end": 909.49, "word": " You", "probability": 0.216064453125}, {"start": 909.49, "end": 909.69, "word": " have", "probability": 0.87255859375}, {"start": 909.69, "end": 909.81, "word": " to", "probability": 0.96923828125}, {"start": 909.81, "end": 910.01, "word": " make", "probability": 0.876953125}, {"start": 910.01, "end": 910.27, "word": " what?", "probability": 0.40966796875}, {"start": 910.35, "end": 910.77, "word": " Solid", "probability": 0.791015625}, {"start": 910.77, "end": 912.25, "word": " rectangle", "probability": 0.89111328125}, {"start": 912.25, "end": 913.15, "word": " Extend", "probability": 0.6263427734375}, {"start": 913.15, "end": 913.43, "word": " mean", "probability": 0.8828125}, {"start": 913.43, "end": 914.53, "word": " rectangle", "probability": 0.955078125}, {"start": 914.53, "end": 915.01, "word": " So", "probability": 0.460205078125}, {"start": 915.01, "end": 915.27, "word": " in", "probability": 0.350341796875}, {"start": 915.27, "end": 915.27, "word": " order", "probability": 0.91162109375}, {"start": 915.27, "end": 915.31, "word": " to", "probability": 0.96923828125}, {"start": 915.31, "end": 915.73, "word": " add", "probability": 0.91015625}, {"start": 915.73, "end": 916.13, "word": " a", "probability": 0.56591796875}, {"start": 916.13, "end": 916.47, "word": " solid", "probability": 0.92822265625}, {"start": 916.47, "end": 917.23, "word": " feature", "probability": 0.947265625}, {"start": 917.23, "end": 917.53, "word": " to", "probability": 0.84375}, {"start": 917.53, "end": 917.65, "word": " the", "probability": 0.430419921875}, {"start": 917.65, "end": 917.99, "word": " shapes", "probability": 0.68994140625}, {"start": 917.99, "end": 918.17, "word": " I", "probability": 0.58544921875}, {"start": 918.17, "end": 918.43, "word": " have", "probability": 0.91845703125}, {"start": 918.43, "end": 919.09, "word": " I", "probability": 0.63623046875}, {"start": 919.09, "end": 919.21, "word": " have", "probability": 0.64990234375}, {"start": 919.21, "end": 919.39, "word": " to", "probability": 0.95947265625}, {"start": 919.39, "end": 919.89, "word": " make", "probability": 0.5888671875}, {"start": 919.89, "end": 920.09, "word": " them", "probability": 0.7470703125}, {"start": 920.09, "end": 920.23, "word": " all", "probability": 0.8671875}, {"start": 920.23, "end": 920.81, "word": " extend", "probability": 0.72265625}, {"start": 920.81, "end": 921.25, "word": " I", "probability": 0.701171875}, {"start": 921.25, "end": 921.45, "word": " have", "probability": 0.921875}, {"start": 921.45, "end": 921.69, "word": " ten", "probability": 0.48876953125}, {"start": 921.69, "end": 922.13, "word": " shapes", "probability": 0.78857421875}, {"start": 922.13, "end": 922.37, "word": " and", "probability": 0.315185546875}, {"start": 922.37, "end": 922.39, "word": " I", "probability": 0.410888671875}, {"start": 922.39, "end": 922.59, "word": " have", "probability": 0.69970703125}, {"start": 922.59, "end": 923.11, "word": " ten", "probability": 0.54345703125}, {"start": 923.11, "end": 924.41, "word": " classes", "probability": 0.732421875}], "temperature": 1.0}, {"id": 37, "seek": 95569, "start": 926.55, "end": 955.69, "text": " So in order to add two features to a class, I need to add 20 classes to the top 10. Is this a good scenario or not? So every time I want to add a feature to my 10 classes, I need to create 10 subclasses. And this is bad. So will I have 10 subclasses? Have you ever seen someone create a GUI library? For example, JavaFX.", "tokens": [407, 294, 1668, 281, 909, 732, 4122, 281, 257, 1508, 11, 286, 643, 281, 909, 945, 5359, 281, 264, 1192, 1266, 13, 1119, 341, 257, 665, 9005, 420, 406, 30, 407, 633, 565, 286, 528, 281, 909, 257, 4111, 281, 452, 1266, 5359, 11, 286, 643, 281, 1884, 1266, 1422, 11665, 279, 13, 400, 341, 307, 1578, 13, 407, 486, 286, 362, 1266, 1422, 11665, 279, 30, 3560, 291, 1562, 1612, 1580, 1884, 257, 17917, 40, 6405, 30, 1171, 1365, 11, 10745, 36092, 13], "avg_logprob": -0.5544117703157313, "compression_ratio": 1.6130653266331658, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 926.55, "end": 926.83, "word": " So", "probability": 0.1361083984375}, {"start": 926.83, "end": 927.19, "word": " in", "probability": 0.22705078125}, {"start": 927.19, "end": 927.25, "word": " order", "probability": 0.9140625}, {"start": 927.25, "end": 927.41, "word": " to", "probability": 0.94677734375}, {"start": 927.41, "end": 927.61, "word": " add", "probability": 0.85986328125}, {"start": 927.61, "end": 927.89, "word": " two", "probability": 0.61279296875}, {"start": 927.89, "end": 928.41, "word": " features", "probability": 0.5810546875}, {"start": 928.41, "end": 928.59, "word": " to", "probability": 0.833984375}, {"start": 928.59, "end": 928.71, "word": " a", "probability": 0.4072265625}, {"start": 928.71, "end": 929.07, "word": " class,", "probability": 0.9208984375}, {"start": 929.27, "end": 929.35, "word": " I", "probability": 0.86474609375}, {"start": 929.35, "end": 929.51, "word": " need", "probability": 0.343017578125}, {"start": 929.51, "end": 930.23, "word": " to", "probability": 0.9345703125}, {"start": 930.23, "end": 931.13, "word": " add", "probability": 0.6015625}, {"start": 931.13, "end": 932.03, "word": " 20", "probability": 0.335693359375}, {"start": 932.03, "end": 932.49, "word": " classes", "probability": 0.423095703125}, {"start": 932.49, "end": 933.17, "word": " to", "probability": 0.47509765625}, {"start": 933.17, "end": 934.27, "word": " the", "probability": 0.5244140625}, {"start": 934.27, "end": 934.45, "word": " top", "probability": 0.1661376953125}, {"start": 934.45, "end": 934.53, "word": " 10.", "probability": 0.54541015625}, {"start": 935.65, "end": 936.17, "word": " Is", "probability": 0.3916015625}, {"start": 936.17, "end": 936.23, "word": " this", "probability": 0.77880859375}, {"start": 936.23, "end": 936.77, "word": " a", "probability": 0.59228515625}, {"start": 936.77, "end": 938.65, "word": " good", "probability": 0.89599609375}, {"start": 938.65, "end": 938.75, "word": " scenario", "probability": 0.6123046875}, {"start": 938.75, "end": 938.89, "word": " or", "probability": 0.671875}, {"start": 938.89, "end": 938.95, "word": " not?", "probability": 0.703125}, {"start": 940.15, "end": 940.67, "word": " So", "probability": 0.271240234375}, {"start": 940.67, "end": 941.03, "word": " every", "probability": 0.2449951171875}, {"start": 941.03, "end": 941.11, "word": " time", "probability": 0.8505859375}, {"start": 941.11, "end": 941.19, "word": " I", "probability": 0.95361328125}, {"start": 941.19, "end": 941.37, "word": " want", "probability": 0.299072265625}, {"start": 941.37, "end": 941.37, "word": " to", "probability": 0.96533203125}, {"start": 941.37, "end": 941.51, "word": " add", "probability": 0.92822265625}, {"start": 941.51, "end": 941.65, "word": " a", "probability": 0.869140625}, {"start": 941.65, "end": 941.99, "word": " feature", "probability": 0.87451171875}, {"start": 941.99, "end": 942.33, "word": " to", "probability": 0.71484375}, {"start": 942.33, "end": 942.89, "word": " my", "probability": 0.3173828125}, {"start": 942.89, "end": 943.11, "word": " 10", "probability": 0.55126953125}, {"start": 943.11, "end": 943.37, "word": " classes,", "probability": 0.693359375}, {"start": 943.51, "end": 944.85, "word": " I", "probability": 0.70458984375}, {"start": 944.85, "end": 945.03, "word": " need", "probability": 0.42431640625}, {"start": 945.03, "end": 945.17, "word": " to", "probability": 0.931640625}, {"start": 945.17, "end": 945.37, "word": " create", "probability": 0.23193359375}, {"start": 945.37, "end": 945.67, "word": " 10", "probability": 0.822265625}, {"start": 945.67, "end": 947.07, "word": " subclasses.", "probability": 0.8263346354166666}, {"start": 947.07, "end": 947.21, "word": " And", "probability": 0.419677734375}, {"start": 947.21, "end": 947.37, "word": " this", "probability": 0.7333984375}, {"start": 947.37, "end": 947.39, "word": " is", "probability": 0.90673828125}, {"start": 947.39, "end": 947.69, "word": " bad.", "probability": 0.60107421875}, {"start": 949.61, "end": 949.79, "word": " So", "probability": 0.31689453125}, {"start": 949.79, "end": 949.97, "word": " will", "probability": 0.232177734375}, {"start": 949.97, "end": 950.17, "word": " I", "probability": 0.947265625}, {"start": 950.17, "end": 950.49, "word": " have", "probability": 0.8154296875}, {"start": 950.49, "end": 950.87, "word": " 10", "probability": 0.7529296875}, {"start": 950.87, "end": 950.95, "word": " subclasses?", "probability": 0.77294921875}, {"start": 951.03, "end": 951.35, "word": " Have", "probability": 0.15478515625}, {"start": 951.35, "end": 951.41, "word": " you", "probability": 0.8955078125}, {"start": 951.41, "end": 951.41, "word": " ever", "probability": 0.67138671875}, {"start": 951.41, "end": 951.41, "word": " seen", "probability": 0.383544921875}, {"start": 951.41, "end": 951.71, "word": " someone", "probability": 0.7109375}, {"start": 951.71, "end": 951.93, "word": " create", "probability": 0.48388671875}, {"start": 951.93, "end": 952.05, "word": " a", "probability": 0.94189453125}, {"start": 952.05, "end": 953.03, "word": " GUI", "probability": 0.930908203125}, {"start": 953.03, "end": 953.03, "word": " library?", "probability": 0.53369140625}, {"start": 953.97, "end": 954.49, "word": " For", "probability": 0.268798828125}, {"start": 954.49, "end": 954.91, "word": " example,", "probability": 0.93212890625}, {"start": 955.13, "end": 955.69, "word": " JavaFX.", "probability": 0.589599609375}], "temperature": 1.0}, {"id": 38, "seek": 98053, "start": 956.79, "end": 980.53, "text": "It has a lot of elements, right or not guys? All these elements want to add borders to them. For example, you have a text area, a combo box, a list drop list, and a tab pane, right or not? There are many types of UI components in Java, in X or any other library. Okay? And we want to make a border for all the UI components.", "tokens": [3522, 575, 257, 688, 295, 4959, 11, 558, 420, 406, 1074, 30, 1057, 613, 4959, 528, 281, 909, 16287, 281, 552, 13, 1171, 1365, 11, 291, 362, 257, 2487, 1859, 11, 257, 16859, 2424, 11, 257, 1329, 3270, 1329, 11, 293, 257, 4421, 32605, 11, 558, 420, 406, 30, 821, 366, 867, 3467, 295, 15682, 6677, 294, 10745, 11, 294, 1783, 420, 604, 661, 6405, 13, 1033, 30, 400, 321, 528, 281, 652, 257, 7838, 337, 439, 264, 15682, 6677, 13], "avg_logprob": -0.49733230398922434, "compression_ratio": 1.588235294117647, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 956.79, "end": 956.97, "word": "It", "probability": 0.23095703125}, {"start": 956.97, "end": 957.09, "word": " has", "probability": 0.6552734375}, {"start": 957.09, "end": 957.33, "word": " a", "probability": 0.1610107421875}, {"start": 957.33, "end": 957.87, "word": " lot", "probability": 0.9013671875}, {"start": 957.87, "end": 957.87, "word": " of", "probability": 0.96240234375}, {"start": 957.87, "end": 957.87, "word": " elements,", "probability": 0.802734375}, {"start": 958.11, "end": 958.89, "word": " right", "probability": 0.54638671875}, {"start": 958.89, "end": 959.11, "word": " or", "probability": 0.479248046875}, {"start": 959.11, "end": 959.11, "word": " not", "probability": 0.433349609375}, {"start": 959.11, "end": 959.39, "word": " guys?", "probability": 0.271240234375}, {"start": 960.01, "end": 960.15, "word": " All", "probability": 0.2281494140625}, {"start": 960.15, "end": 960.23, "word": " these", "probability": 0.55859375}, {"start": 960.23, "end": 960.59, "word": " elements", "probability": 0.9052734375}, {"start": 960.59, "end": 961.31, "word": " want", "probability": 0.105224609375}, {"start": 961.31, "end": 961.35, "word": " to", "probability": 0.80419921875}, {"start": 961.35, "end": 961.57, "word": " add", "probability": 0.65234375}, {"start": 961.57, "end": 962.01, "word": " borders", "probability": 0.468994140625}, {"start": 962.01, "end": 962.15, "word": " to", "probability": 0.5810546875}, {"start": 962.15, "end": 962.35, "word": " them.", "probability": 0.681640625}, {"start": 962.63, "end": 962.89, "word": " For", "probability": 0.513671875}, {"start": 962.89, "end": 962.91, "word": " example,", "probability": 0.92333984375}, {"start": 962.91, "end": 963.11, "word": " you", "probability": 0.51171875}, {"start": 963.11, "end": 963.23, "word": " have", "probability": 0.88623046875}, {"start": 963.23, "end": 963.37, "word": " a", "probability": 0.65966796875}, {"start": 963.37, "end": 963.55, "word": " text", "probability": 0.79248046875}, {"start": 963.55, "end": 963.93, "word": " area,", "probability": 0.79443359375}, {"start": 964.63, "end": 964.63, "word": " a", "probability": 0.2215576171875}, {"start": 964.63, "end": 964.95, "word": " combo", "probability": 0.58740234375}, {"start": 964.95, "end": 965.25, "word": " box,", "probability": 0.90625}, {"start": 965.51, "end": 965.65, "word": " a", "probability": 0.77294921875}, {"start": 965.65, "end": 965.81, "word": " list", "probability": 0.638671875}, {"start": 965.81, "end": 966.09, "word": " drop", "probability": 0.4755859375}, {"start": 966.09, "end": 966.41, "word": " list,", "probability": 0.814453125}, {"start": 966.89, "end": 966.89, "word": " and", "probability": 0.48193359375}, {"start": 966.89, "end": 967.15, "word": " a", "probability": 0.6591796875}, {"start": 967.15, "end": 967.43, "word": " tab", "probability": 0.80078125}, {"start": 967.43, "end": 967.77, "word": " pane,", "probability": 0.355224609375}, {"start": 968.37, "end": 968.49, "word": " right", "probability": 0.74755859375}, {"start": 968.49, "end": 968.67, "word": " or", "probability": 0.951171875}, {"start": 968.67, "end": 968.67, "word": " not?", "probability": 0.875}, {"start": 968.77, "end": 968.91, "word": " There", "probability": 0.2802734375}, {"start": 968.91, "end": 968.95, "word": " are", "probability": 0.91259765625}, {"start": 968.95, "end": 969.37, "word": " many", "probability": 0.7041015625}, {"start": 969.37, "end": 969.37, "word": " types", "probability": 0.6435546875}, {"start": 969.37, "end": 971.05, "word": " of", "probability": 0.97021484375}, {"start": 971.05, "end": 971.61, "word": " UI", "probability": 0.6044921875}, {"start": 971.61, "end": 972.29, "word": " components", "probability": 0.92333984375}, {"start": 972.29, "end": 972.89, "word": " in", "probability": 0.33935546875}, {"start": 972.89, "end": 973.27, "word": " Java,", "probability": 0.71484375}, {"start": 973.47, "end": 973.53, "word": " in", "probability": 0.488037109375}, {"start": 973.53, "end": 973.69, "word": " X", "probability": 0.7275390625}, {"start": 973.69, "end": 973.83, "word": " or", "probability": 0.5009765625}, {"start": 973.83, "end": 974.03, "word": " any", "probability": 0.796875}, {"start": 974.03, "end": 974.47, "word": " other", "probability": 0.86279296875}, {"start": 974.47, "end": 974.47, "word": " library.", "probability": 0.88525390625}, {"start": 975.41, "end": 975.63, "word": " Okay?", "probability": 0.33544921875}, {"start": 976.05, "end": 976.21, "word": " And", "probability": 0.62939453125}, {"start": 976.21, "end": 976.83, "word": " we", "probability": 0.81787109375}, {"start": 976.83, "end": 977.23, "word": " want", "probability": 0.677734375}, {"start": 977.23, "end": 977.59, "word": " to", "probability": 0.94970703125}, {"start": 977.59, "end": 977.79, "word": " make", "probability": 0.548828125}, {"start": 977.79, "end": 977.95, "word": " a", "probability": 0.6884765625}, {"start": 977.95, "end": 978.25, "word": " border", "probability": 0.8779296875}, {"start": 978.25, "end": 978.63, "word": " for", "probability": 0.55029296875}, {"start": 978.63, "end": 979.71, "word": " all", "probability": 0.8212890625}, {"start": 979.71, "end": 979.77, "word": " the", "probability": 0.42041015625}, {"start": 979.77, "end": 979.99, "word": " UI", "probability": 0.94921875}, {"start": 979.99, "end": 980.53, "word": " components.", "probability": 0.91943359375}], "temperature": 1.0}, {"id": 39, "seek": 100768, "start": 981.8, "end": 1007.68, "text": " For example, I have 30 UI components in Javafix, at least this one. Each one of them extends to add this feature. If I have 10 features, I have to add them to the 30 UI components. How many classes will I have? 10 features in 30 main ones. I have 300 classes. This is called the explosion of classes, like the population explosion.", "tokens": [1171, 1365, 11, 286, 362, 2217, 15682, 6677, 294, 508, 706, 2792, 970, 11, 412, 1935, 341, 472, 13, 6947, 472, 295, 552, 26448, 281, 909, 341, 4111, 13, 759, 286, 362, 1266, 4122, 11, 286, 362, 281, 909, 552, 281, 264, 2217, 15682, 6677, 13, 1012, 867, 5359, 486, 286, 362, 30, 1266, 4122, 294, 2217, 2135, 2306, 13, 286, 362, 6641, 5359, 13, 639, 307, 1219, 264, 15673, 295, 5359, 11, 411, 264, 4415, 15673, 13], "avg_logprob": -0.5043512477150446, "compression_ratio": 1.7202072538860103, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 981.8, "end": 982.12, "word": " For", "probability": 0.1290283203125}, {"start": 982.12, "end": 982.12, "word": " example,", "probability": 0.89697265625}, {"start": 982.12, "end": 982.12, "word": " I", "probability": 0.55078125}, {"start": 982.12, "end": 982.18, "word": " have", "probability": 0.9091796875}, {"start": 982.18, "end": 982.58, "word": " 30", "probability": 0.91552734375}, {"start": 982.58, "end": 982.88, "word": " UI", "probability": 0.86962890625}, {"start": 982.88, "end": 983.44, "word": " components", "probability": 0.83984375}, {"start": 983.44, "end": 983.86, "word": " in", "probability": 0.78369140625}, {"start": 983.86, "end": 984.48, "word": " Javafix,", "probability": 0.6580810546875}, {"start": 984.66, "end": 984.82, "word": " at", "probability": 0.353515625}, {"start": 984.82, "end": 985.18, "word": " least", "probability": 0.94580078125}, {"start": 985.18, "end": 985.46, "word": " this", "probability": 0.424560546875}, {"start": 985.46, "end": 985.66, "word": " one.", "probability": 0.37158203125}, {"start": 985.9, "end": 986.5, "word": " Each", "probability": 0.31982421875}, {"start": 986.5, "end": 986.8, "word": " one", "probability": 0.475830078125}, {"start": 986.8, "end": 986.94, "word": " of", "probability": 0.7490234375}, {"start": 986.94, "end": 987.2, "word": " them", "probability": 0.82861328125}, {"start": 987.2, "end": 987.88, "word": " extends", "probability": 0.261474609375}, {"start": 987.88, "end": 988.24, "word": " to", "probability": 0.310546875}, {"start": 988.24, "end": 988.48, "word": " add", "probability": 0.796875}, {"start": 988.48, "end": 988.64, "word": " this", "probability": 0.66064453125}, {"start": 988.64, "end": 988.96, "word": " feature.", "probability": 0.9169921875}, {"start": 989.92, "end": 990.12, "word": " If", "probability": 0.157470703125}, {"start": 990.12, "end": 990.4, "word": " I", "probability": 0.9658203125}, {"start": 990.4, "end": 990.42, "word": " have", "probability": 0.89990234375}, {"start": 990.42, "end": 990.68, "word": " 10", "probability": 0.744140625}, {"start": 990.68, "end": 991.32, "word": " features,", "probability": 0.67529296875}, {"start": 991.52, "end": 992.12, "word": " I", "probability": 0.493896484375}, {"start": 992.12, "end": 992.28, "word": " have", "probability": 0.1783447265625}, {"start": 992.28, "end": 992.28, "word": " to", "probability": 0.96337890625}, {"start": 992.28, "end": 992.46, "word": " add", "probability": 0.91259765625}, {"start": 992.46, "end": 992.6, "word": " them", "probability": 0.8076171875}, {"start": 992.6, "end": 992.72, "word": " to", "probability": 0.9169921875}, {"start": 992.72, "end": 992.82, "word": " the", "probability": 0.59521484375}, {"start": 992.82, "end": 993.14, "word": " 30", "probability": 0.87939453125}, {"start": 993.14, "end": 993.46, "word": " UI", "probability": 0.9326171875}, {"start": 993.46, "end": 994.04, "word": " components.", "probability": 0.9150390625}, {"start": 994.74, "end": 995.02, "word": " How", "probability": 0.71435546875}, {"start": 995.02, "end": 995.12, "word": " many", "probability": 0.87548828125}, {"start": 995.12, "end": 995.4, "word": " classes", "probability": 0.9130859375}, {"start": 995.4, "end": 995.54, "word": " will", "probability": 0.6416015625}, {"start": 995.54, "end": 995.9, "word": " I", "probability": 0.8642578125}, {"start": 995.9, "end": 995.9, "word": " have?", "probability": 0.460693359375}, {"start": 996.72, "end": 997.32, "word": " 10", "probability": 0.58056640625}, {"start": 997.32, "end": 998.72, "word": " features", "probability": 0.71142578125}, {"start": 998.72, "end": 999.42, "word": " in", "probability": 0.7197265625}, {"start": 999.42, "end": 999.96, "word": " 30", "probability": 0.76171875}, {"start": 999.96, "end": 1000.42, "word": " main", "probability": 0.2098388671875}, {"start": 1000.42, "end": 1000.86, "word": " ones.", "probability": 0.394775390625}, {"start": 1001.08, "end": 1001.38, "word": " I", "probability": 0.422607421875}, {"start": 1001.38, "end": 1001.56, "word": " have", "probability": 0.50634765625}, {"start": 1001.56, "end": 1001.96, "word": " 300", "probability": 0.90869140625}, {"start": 1001.96, "end": 1003.4, "word": " classes.", "probability": 0.89990234375}, {"start": 1003.64, "end": 1003.98, "word": " This", "probability": 0.77099609375}, {"start": 1003.98, "end": 1004.04, "word": " is", "probability": 0.85546875}, {"start": 1004.04, "end": 1004.38, "word": " called", "probability": 0.68505859375}, {"start": 1004.38, "end": 1004.5, "word": " the", "probability": 0.252685546875}, {"start": 1004.5, "end": 1004.86, "word": " explosion", "probability": 0.67626953125}, {"start": 1004.86, "end": 1005.24, "word": " of", "probability": 0.97314453125}, {"start": 1005.24, "end": 1005.66, "word": " classes,", "probability": 0.85791015625}, {"start": 1005.9, "end": 1006.8, "word": " like", "probability": 0.50439453125}, {"start": 1006.8, "end": 1006.92, "word": " the", "probability": 0.472900390625}, {"start": 1006.92, "end": 1007.56, "word": " population", "probability": 0.50634765625}, {"start": 1007.56, "end": 1007.68, "word": " explosion.", "probability": 0.80908203125}], "temperature": 1.0}, {"id": 40, "seek": 103441, "start": 1009.91, "end": 1034.41, "text": "This means that the subclassing that we were happy with was good, we did not say that it was invalid, but in some cases it can cause a lot of classes. Because I want to show you a way, I have 30 classes, I want to make them a border, I want to make a single class, that's it, I am a single feature", "tokens": [5723, 1355, 300, 264, 1422, 11665, 278, 300, 321, 645, 2055, 365, 390, 665, 11, 321, 630, 406, 584, 300, 309, 390, 34702, 11, 457, 294, 512, 3331, 309, 393, 3082, 257, 688, 295, 5359, 13, 1436, 286, 528, 281, 855, 291, 257, 636, 11, 286, 362, 2217, 5359, 11, 286, 528, 281, 652, 552, 257, 7838, 11, 286, 528, 281, 652, 257, 2167, 1508, 11, 300, 311, 309, 11, 286, 669, 257, 2167, 4111], "avg_logprob": -0.4753289352122106, "compression_ratio": 1.6318681318681318, "no_speech_prob": 4.172325134277344e-06, "words": [{"start": 1009.9100000000001, "end": 1010.47, "word": "This", "probability": 0.142333984375}, {"start": 1010.47, "end": 1010.81, "word": " means", "probability": 0.8603515625}, {"start": 1010.81, "end": 1011.19, "word": " that", "probability": 0.89111328125}, {"start": 1011.19, "end": 1011.47, "word": " the", "probability": 0.7158203125}, {"start": 1011.47, "end": 1012.25, "word": " subclassing", "probability": 0.8375651041666666}, {"start": 1012.25, "end": 1012.41, "word": " that", "probability": 0.4775390625}, {"start": 1012.41, "end": 1012.59, "word": " we", "probability": 0.892578125}, {"start": 1012.59, "end": 1012.81, "word": " were", "probability": 0.50537109375}, {"start": 1012.81, "end": 1013.15, "word": " happy", "probability": 0.5087890625}, {"start": 1013.15, "end": 1013.65, "word": " with", "probability": 0.69970703125}, {"start": 1013.65, "end": 1014.25, "word": " was", "probability": 0.289794921875}, {"start": 1014.25, "end": 1014.63, "word": " good,", "probability": 0.677734375}, {"start": 1014.83, "end": 1014.83, "word": " we", "probability": 0.6748046875}, {"start": 1014.83, "end": 1014.89, "word": " did", "probability": 0.31298828125}, {"start": 1014.89, "end": 1014.89, "word": " not", "probability": 0.93212890625}, {"start": 1014.89, "end": 1015.05, "word": " say", "probability": 0.75537109375}, {"start": 1015.05, "end": 1015.39, "word": " that", "probability": 0.54736328125}, {"start": 1015.39, "end": 1015.43, "word": " it", "probability": 0.919921875}, {"start": 1015.43, "end": 1015.45, "word": " was", "probability": 0.72021484375}, {"start": 1015.45, "end": 1015.71, "word": " invalid,", "probability": 0.20263671875}, {"start": 1015.99, "end": 1016.51, "word": " but", "probability": 0.429931640625}, {"start": 1016.51, "end": 1017.03, "word": " in", "probability": 0.681640625}, {"start": 1017.03, "end": 1017.33, "word": " some", "probability": 0.85009765625}, {"start": 1017.33, "end": 1017.97, "word": " cases", "probability": 0.8623046875}, {"start": 1017.97, "end": 1019.27, "word": " it", "probability": 0.59814453125}, {"start": 1019.27, "end": 1019.63, "word": " can", "probability": 0.54931640625}, {"start": 1019.63, "end": 1020.29, "word": " cause", "probability": 0.57763671875}, {"start": 1020.29, "end": 1020.51, "word": " a", "probability": 0.393798828125}, {"start": 1020.51, "end": 1020.97, "word": " lot", "probability": 0.650390625}, {"start": 1020.97, "end": 1021.47, "word": " of", "probability": 0.95263671875}, {"start": 1021.47, "end": 1021.97, "word": " classes.", "probability": 0.814453125}, {"start": 1023.11, "end": 1023.67, "word": " Because", "probability": 0.1793212890625}, {"start": 1023.67, "end": 1023.87, "word": " I", "probability": 0.92822265625}, {"start": 1023.87, "end": 1024.01, "word": " want", "probability": 0.7744140625}, {"start": 1024.01, "end": 1024.11, "word": " to", "probability": 0.970703125}, {"start": 1024.11, "end": 1024.25, "word": " show", "probability": 0.9296875}, {"start": 1024.25, "end": 1024.37, "word": " you", "probability": 0.9638671875}, {"start": 1024.37, "end": 1024.47, "word": " a", "probability": 0.87158203125}, {"start": 1024.47, "end": 1024.73, "word": " way,", "probability": 0.5087890625}, {"start": 1025.61, "end": 1025.99, "word": " I", "probability": 0.8740234375}, {"start": 1025.99, "end": 1026.17, "word": " have", "probability": 0.93896484375}, {"start": 1026.17, "end": 1026.57, "word": " 30", "probability": 0.67919921875}, {"start": 1026.57, "end": 1027.07, "word": " classes,", "probability": 0.87939453125}, {"start": 1027.67, "end": 1027.89, "word": " I", "probability": 0.890625}, {"start": 1027.89, "end": 1028.05, "word": " want", "probability": 0.71240234375}, {"start": 1028.05, "end": 1028.05, "word": " to", "probability": 0.9375}, {"start": 1028.05, "end": 1028.21, "word": " make", "probability": 0.82568359375}, {"start": 1028.21, "end": 1028.39, "word": " them", "probability": 0.7861328125}, {"start": 1028.39, "end": 1028.41, "word": " a", "probability": 0.380859375}, {"start": 1028.41, "end": 1028.65, "word": " border,", "probability": 0.86572265625}, {"start": 1029.15, "end": 1029.39, "word": " I", "probability": 0.77001953125}, {"start": 1029.39, "end": 1029.51, "word": " want", "probability": 0.67236328125}, {"start": 1029.51, "end": 1029.55, "word": " to", "probability": 0.9638671875}, {"start": 1029.55, "end": 1029.63, "word": " make", "probability": 0.9111328125}, {"start": 1029.63, "end": 1029.75, "word": " a", "probability": 0.361083984375}, {"start": 1029.75, "end": 1030.19, "word": " single", "probability": 0.57177734375}, {"start": 1030.19, "end": 1030.19, "word": " class,", "probability": 0.95703125}, {"start": 1031.57, "end": 1031.79, "word": " that's", "probability": 0.72802734375}, {"start": 1031.79, "end": 1031.91, "word": " it,", "probability": 0.68212890625}, {"start": 1033.65, "end": 1033.99, "word": " I", "probability": 0.52001953125}, {"start": 1033.99, "end": 1034.01, "word": " am", "probability": 0.266357421875}, {"start": 1034.01, "end": 1034.07, "word": " a", "probability": 0.4736328125}, {"start": 1034.07, "end": 1034.07, "word": " single", "probability": 0.9248046875}, {"start": 1034.07, "end": 1034.41, "word": " feature", "probability": 0.95458984375}], "temperature": 1.0}, {"id": 41, "seek": 105133, "start": 1036.73, "end": 1051.33, "text": "In one class, add up to 30. So if I have 10 features, I make only 10 classes, instead of making 300 classes. Do you agree with me or not? Let's see how to apply this.", "tokens": [4575, 472, 1508, 11, 909, 493, 281, 2217, 13, 407, 498, 286, 362, 1266, 4122, 11, 286, 652, 787, 1266, 5359, 11, 2602, 295, 1455, 6641, 5359, 13, 1144, 291, 3986, 365, 385, 420, 406, 30, 961, 311, 536, 577, 281, 3079, 341, 13], "avg_logprob": -0.6006944179534912, "compression_ratio": 1.2575757575757576, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1036.73, "end": 1036.91, "word": "In", "probability": 0.2076416015625}, {"start": 1036.91, "end": 1037.59, "word": " one", "probability": 0.7099609375}, {"start": 1037.59, "end": 1037.61, "word": " class,", "probability": 0.92333984375}, {"start": 1038.07, "end": 1038.29, "word": " add", "probability": 0.4658203125}, {"start": 1038.29, "end": 1038.49, "word": " up", "probability": 0.294189453125}, {"start": 1038.49, "end": 1038.51, "word": " to", "probability": 0.93310546875}, {"start": 1038.51, "end": 1038.93, "word": " 30.", "probability": 0.8271484375}, {"start": 1039.75, "end": 1040.19, "word": " So", "probability": 0.302001953125}, {"start": 1040.19, "end": 1040.31, "word": " if", "probability": 0.74169921875}, {"start": 1040.31, "end": 1040.43, "word": " I", "probability": 0.94970703125}, {"start": 1040.43, "end": 1040.55, "word": " have", "probability": 0.806640625}, {"start": 1040.55, "end": 1040.79, "word": " 10", "probability": 0.72802734375}, {"start": 1040.79, "end": 1041.33, "word": " features,", "probability": 0.5498046875}, {"start": 1042.27, "end": 1042.53, "word": " I", "probability": 0.857421875}, {"start": 1042.53, "end": 1042.73, "word": " make", "probability": 0.1563720703125}, {"start": 1042.73, "end": 1042.89, "word": " only", "probability": 0.57275390625}, {"start": 1042.89, "end": 1043.15, "word": " 10", "probability": 0.93798828125}, {"start": 1043.15, "end": 1043.57, "word": " classes,", "probability": 0.91259765625}, {"start": 1043.65, "end": 1043.83, "word": " instead", "probability": 0.66552734375}, {"start": 1043.83, "end": 1044.03, "word": " of", "probability": 0.96728515625}, {"start": 1044.03, "end": 1044.25, "word": " making", "probability": 0.424072265625}, {"start": 1044.25, "end": 1045.97, "word": " 300", "probability": 0.71142578125}, {"start": 1045.97, "end": 1046.77, "word": " classes.", "probability": 0.87255859375}, {"start": 1047.67, "end": 1048.11, "word": " Do", "probability": 0.1630859375}, {"start": 1048.11, "end": 1048.17, "word": " you", "probability": 0.859375}, {"start": 1048.17, "end": 1048.17, "word": " agree", "probability": 0.423095703125}, {"start": 1048.17, "end": 1048.17, "word": " with", "probability": 0.367919921875}, {"start": 1048.17, "end": 1048.31, "word": " me", "probability": 0.80078125}, {"start": 1048.31, "end": 1048.33, "word": " or", "probability": 0.488037109375}, {"start": 1048.33, "end": 1048.49, "word": " not?", "probability": 0.92138671875}, {"start": 1049.69, "end": 1050.13, "word": " Let's", "probability": 0.583251953125}, {"start": 1050.13, "end": 1050.27, "word": " see", "probability": 0.80517578125}, {"start": 1050.27, "end": 1050.43, "word": " how", "probability": 0.471923828125}, {"start": 1050.43, "end": 1050.83, "word": " to", "probability": 0.449462890625}, {"start": 1050.83, "end": 1051.19, "word": " apply", "probability": 0.53466796875}, {"start": 1051.19, "end": 1051.33, "word": " this.", "probability": 0.6015625}], "temperature": 1.0}, {"id": 42, "seek": 107381, "start": 1058.15, "end": 1073.81, "text": "Let me explain how to do it and then I will draw the UML diagram. What do you think Halgate? In our example here, I have two shapes, circle and rectangle. To make them a border, I have to make two classes, circle with border and rectangle with border.", "tokens": [8373, 385, 2903, 577, 281, 360, 309, 293, 550, 286, 486, 2642, 264, 624, 12683, 10686, 13, 708, 360, 291, 519, 13896, 22514, 30, 682, 527, 1365, 510, 11, 286, 362, 732, 10854, 11, 6329, 293, 21930, 13, 1407, 652, 552, 257, 7838, 11, 286, 362, 281, 652, 732, 5359, 11, 6329, 365, 7838, 293, 21930, 365, 7838, 13], "avg_logprob": -0.6093750218550364, "compression_ratio": 1.56875, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1058.15, "end": 1058.37, "word": "Let", "probability": 0.17529296875}, {"start": 1058.37, "end": 1058.61, "word": " me", "probability": 0.6611328125}, {"start": 1058.61, "end": 1058.77, "word": " explain", "probability": 0.69677734375}, {"start": 1058.77, "end": 1059.07, "word": " how", "probability": 0.60009765625}, {"start": 1059.07, "end": 1059.17, "word": " to", "probability": 0.44482421875}, {"start": 1059.17, "end": 1059.37, "word": " do", "probability": 0.5087890625}, {"start": 1059.37, "end": 1059.59, "word": " it", "probability": 0.74462890625}, {"start": 1059.59, "end": 1059.93, "word": " and", "probability": 0.3564453125}, {"start": 1059.93, "end": 1060.09, "word": " then", "probability": 0.650390625}, {"start": 1060.09, "end": 1060.17, "word": " I", "probability": 0.33740234375}, {"start": 1060.17, "end": 1060.63, "word": " will", "probability": 0.53076171875}, {"start": 1060.63, "end": 1060.81, "word": " draw", "probability": 0.72021484375}, {"start": 1060.81, "end": 1060.93, "word": " the", "probability": 0.525390625}, {"start": 1060.93, "end": 1061.17, "word": " UML", "probability": 0.68017578125}, {"start": 1061.17, "end": 1061.65, "word": " diagram.", "probability": 0.8427734375}, {"start": 1062.71, "end": 1062.89, "word": " What", "probability": 0.128662109375}, {"start": 1062.89, "end": 1063.05, "word": " do", "probability": 0.277099609375}, {"start": 1063.05, "end": 1063.09, "word": " you", "probability": 0.79833984375}, {"start": 1063.09, "end": 1063.29, "word": " think", "probability": 0.6103515625}, {"start": 1063.29, "end": 1063.65, "word": " Halgate?", "probability": 0.322662353515625}, {"start": 1064.27, "end": 1064.75, "word": " In", "probability": 0.41162109375}, {"start": 1064.75, "end": 1065.21, "word": " our", "probability": 0.399658203125}, {"start": 1065.21, "end": 1065.21, "word": " example", "probability": 0.90673828125}, {"start": 1065.21, "end": 1065.47, "word": " here,", "probability": 0.35595703125}, {"start": 1065.55, "end": 1065.59, "word": " I", "probability": 0.80029296875}, {"start": 1065.59, "end": 1065.77, "word": " have", "probability": 0.92919921875}, {"start": 1065.77, "end": 1066.13, "word": " two", "probability": 0.78076171875}, {"start": 1066.13, "end": 1066.13, "word": " shapes,", "probability": 0.6552734375}, {"start": 1066.49, "end": 1066.83, "word": " circle", "probability": 0.630859375}, {"start": 1066.83, "end": 1066.97, "word": " and", "probability": 0.9326171875}, {"start": 1066.97, "end": 1067.41, "word": " rectangle.", "probability": 0.94384765625}, {"start": 1068.15, "end": 1068.29, "word": " To", "probability": 0.466552734375}, {"start": 1068.29, "end": 1068.57, "word": " make", "probability": 0.6591796875}, {"start": 1068.57, "end": 1068.75, "word": " them", "probability": 0.841796875}, {"start": 1068.75, "end": 1068.83, "word": " a", "probability": 0.2861328125}, {"start": 1068.83, "end": 1069.09, "word": " border,", "probability": 0.853515625}, {"start": 1069.23, "end": 1069.29, "word": " I", "probability": 0.859375}, {"start": 1069.29, "end": 1069.33, "word": " have", "probability": 0.2335205078125}, {"start": 1069.33, "end": 1069.65, "word": " to", "probability": 0.95556640625}, {"start": 1069.65, "end": 1069.91, "word": " make", "probability": 0.61279296875}, {"start": 1069.91, "end": 1071.47, "word": " two", "probability": 0.5498046875}, {"start": 1071.47, "end": 1071.91, "word": " classes,", "probability": 0.87255859375}, {"start": 1072.09, "end": 1072.61, "word": " circle", "probability": 0.42626953125}, {"start": 1072.61, "end": 1072.89, "word": " with", "probability": 0.54931640625}, {"start": 1072.89, "end": 1073.33, "word": " border", "probability": 0.806640625}, {"start": 1073.33, "end": 1073.79, "word": " and", "probability": 0.41845703125}, {"start": 1073.79, "end": 1073.81, "word": " rectangle", "probability": 0.77880859375}, {"start": 1073.81, "end": 1073.81, "word": " with", "probability": 0.54638671875}, {"start": 1073.81, "end": 1073.81, "word": " border.", "probability": 0.7431640625}], "temperature": 1.0}, {"id": 43, "seek": 109541, "start": 1075.53, "end": 1095.41, "text": "I didn't do rectangle with border but it's the same idea Now I don't want to make circle with border and rectangle with border I want to make one class called border and add to the frame the two, three or ten shapes that I have So I found that I want to make a new class called border", "tokens": [40, 994, 380, 360, 21930, 365, 7838, 457, 309, 311, 264, 912, 1558, 823, 286, 500, 380, 528, 281, 652, 6329, 365, 7838, 293, 21930, 365, 7838, 286, 528, 281, 652, 472, 1508, 1219, 7838, 293, 909, 281, 264, 3920, 264, 732, 11, 1045, 420, 2064, 10854, 300, 286, 362, 407, 286, 1352, 300, 286, 528, 281, 652, 257, 777, 1508, 1219, 7838], "avg_logprob": -0.49365233816206455, "compression_ratio": 1.880794701986755, "no_speech_prob": 1.7881393432617188e-05, "words": [{"start": 1075.53, "end": 1075.99, "word": "I", "probability": 0.37060546875}, {"start": 1075.99, "end": 1076.07, "word": " didn't", "probability": 0.708740234375}, {"start": 1076.07, "end": 1076.31, "word": " do", "probability": 0.385009765625}, {"start": 1076.31, "end": 1076.83, "word": " rectangle", "probability": 0.61376953125}, {"start": 1076.83, "end": 1077.03, "word": " with", "probability": 0.8427734375}, {"start": 1077.03, "end": 1077.31, "word": " border", "probability": 0.767578125}, {"start": 1077.31, "end": 1077.49, "word": " but", "probability": 0.29833984375}, {"start": 1077.49, "end": 1077.75, "word": " it's", "probability": 0.5880126953125}, {"start": 1077.75, "end": 1077.87, "word": " the", "probability": 0.61083984375}, {"start": 1077.87, "end": 1078.01, "word": " same", "probability": 0.896484375}, {"start": 1078.01, "end": 1078.73, "word": " idea", "probability": 0.63623046875}, {"start": 1078.73, "end": 1079.15, "word": " Now", "probability": 0.454345703125}, {"start": 1079.15, "end": 1080.01, "word": " I", "probability": 0.6728515625}, {"start": 1080.01, "end": 1080.11, "word": " don't", "probability": 0.91552734375}, {"start": 1080.11, "end": 1080.35, "word": " want", "probability": 0.84423828125}, {"start": 1080.35, "end": 1080.39, "word": " to", "probability": 0.81591796875}, {"start": 1080.39, "end": 1080.51, "word": " make", "probability": 0.379638671875}, {"start": 1080.51, "end": 1080.89, "word": " circle", "probability": 0.59033203125}, {"start": 1080.89, "end": 1081.11, "word": " with", "probability": 0.8095703125}, {"start": 1081.11, "end": 1081.49, "word": " border", "probability": 0.82373046875}, {"start": 1081.49, "end": 1081.75, "word": " and", "probability": 0.63623046875}, {"start": 1081.75, "end": 1082.11, "word": " rectangle", "probability": 0.9248046875}, {"start": 1082.11, "end": 1082.37, "word": " with", "probability": 0.91748046875}, {"start": 1082.37, "end": 1082.69, "word": " border", "probability": 0.82763671875}, {"start": 1082.69, "end": 1082.85, "word": " I", "probability": 0.6171875}, {"start": 1082.85, "end": 1083.03, "word": " want", "probability": 0.78564453125}, {"start": 1083.03, "end": 1083.07, "word": " to", "probability": 0.951171875}, {"start": 1083.07, "end": 1083.21, "word": " make", "probability": 0.87060546875}, {"start": 1083.21, "end": 1083.33, "word": " one", "probability": 0.4755859375}, {"start": 1083.33, "end": 1084.01, "word": " class", "probability": 0.9345703125}, {"start": 1084.01, "end": 1084.93, "word": " called", "probability": 0.2408447265625}, {"start": 1084.93, "end": 1085.31, "word": " border", "probability": 0.77685546875}, {"start": 1085.31, "end": 1085.49, "word": " and", "probability": 0.54443359375}, {"start": 1085.49, "end": 1085.65, "word": " add", "probability": 0.66015625}, {"start": 1085.65, "end": 1085.79, "word": " to", "probability": 0.23486328125}, {"start": 1085.79, "end": 1085.83, "word": " the", "probability": 0.38232421875}, {"start": 1085.83, "end": 1086.21, "word": " frame", "probability": 0.402099609375}, {"start": 1086.21, "end": 1087.07, "word": " the", "probability": 0.297607421875}, {"start": 1087.07, "end": 1087.15, "word": " two,", "probability": 0.328369140625}, {"start": 1087.53, "end": 1088.15, "word": " three", "probability": 0.814453125}, {"start": 1088.15, "end": 1088.31, "word": " or", "probability": 0.814453125}, {"start": 1088.31, "end": 1088.65, "word": " ten", "probability": 0.89599609375}, {"start": 1088.65, "end": 1088.69, "word": " shapes", "probability": 0.3095703125}, {"start": 1088.69, "end": 1088.79, "word": " that", "probability": 0.39990234375}, {"start": 1088.79, "end": 1088.87, "word": " I", "probability": 0.96142578125}, {"start": 1088.87, "end": 1089.23, "word": " have", "probability": 0.82373046875}, {"start": 1089.23, "end": 1090.65, "word": " So", "probability": 0.43798828125}, {"start": 1090.65, "end": 1091.01, "word": " I", "probability": 0.81103515625}, {"start": 1091.01, "end": 1091.01, "word": " found", "probability": 0.2001953125}, {"start": 1091.01, "end": 1091.11, "word": " that", "probability": 0.46826171875}, {"start": 1091.11, "end": 1091.19, "word": " I", "probability": 0.9853515625}, {"start": 1091.19, "end": 1091.35, "word": " want", "probability": 0.421630859375}, {"start": 1091.35, "end": 1091.53, "word": " to", "probability": 0.96533203125}, {"start": 1091.53, "end": 1091.65, "word": " make", "probability": 0.779296875}, {"start": 1091.65, "end": 1091.79, "word": " a", "probability": 0.89892578125}, {"start": 1091.79, "end": 1091.79, "word": " new", "probability": 0.90673828125}, {"start": 1091.79, "end": 1092.47, "word": " class", "probability": 0.96044921875}, {"start": 1092.47, "end": 1094.97, "word": " called", "probability": 0.62744140625}, {"start": 1094.97, "end": 1095.41, "word": " border", "probability": 0.826171875}], "temperature": 1.0}, {"id": 44, "seek": 112166, "start": 1098.66, "end": 1121.66, "text": " First of all, make this class from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes.", "tokens": [2386, 295, 439, 11, 652, 341, 1508, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13], "avg_logprob": -0.16083333545260958, "compression_ratio": 9.945652173913043, "no_speech_prob": 3.993511199951172e-06, "words": [{"start": 1098.66, "end": 1099.26, "word": " First", "probability": 0.1436767578125}, {"start": 1099.26, "end": 1099.64, "word": " of", "probability": 0.26806640625}, {"start": 1099.64, "end": 1099.74, "word": " all,", "probability": 0.94580078125}, {"start": 1100.6, "end": 1100.96, "word": " make", "probability": 0.45361328125}, {"start": 1100.96, "end": 1101.14, "word": " this", "probability": 0.41796875}, {"start": 1101.14, "end": 1101.5, "word": " class", "probability": 0.87841796875}, {"start": 1101.5, "end": 1102.16, "word": " from", "probability": 0.097900390625}, {"start": 1102.16, "end": 1102.46, "word": " the", "probability": 0.64794921875}, {"start": 1102.46, "end": 1102.46, "word": " same", "probability": 0.79443359375}, {"start": 1102.46, "end": 1102.76, "word": " type", "probability": 0.281494140625}, {"start": 1102.76, "end": 1102.86, "word": " of", "probability": 0.75244140625}, {"start": 1102.86, "end": 1103.16, "word": " shapes.", "probability": 0.62744140625}, {"start": 1103.78, "end": 1103.92, "word": " What", "probability": 0.422119140625}, {"start": 1103.92, "end": 1104.12, "word": " does", "probability": 0.72412109375}, {"start": 1104.12, "end": 1104.18, "word": " it", "probability": 0.403076171875}, {"start": 1104.18, "end": 1104.18, "word": " mean?", "probability": 0.93408203125}, {"start": 1104.9, "end": 1105.2, "word": " Make", "probability": 0.615234375}, {"start": 1105.2, "end": 1105.34, "word": " it", "probability": 0.73583984375}, {"start": 1105.34, "end": 1105.66, "word": " from", "probability": 0.233154296875}, {"start": 1105.66, "end": 1105.88, "word": " the", "probability": 0.336669921875}, {"start": 1105.88, "end": 1105.88, "word": " same", "probability": 0.3857421875}, {"start": 1105.88, "end": 1105.88, "word": " type", "probability": 0.76416015625}, {"start": 1105.88, "end": 1105.88, "word": " of", "probability": 0.8955078125}, {"start": 1105.88, "end": 1105.88, "word": " shapes.", "probability": 0.89599609375}, {"start": 1105.88, "end": 1105.88, "word": " What", "probability": 0.343994140625}, {"start": 1105.88, "end": 1105.88, "word": " does", "probability": 0.91845703125}, {"start": 1105.88, "end": 1105.88, "word": " it", "probability": 0.88818359375}, {"start": 1105.88, "end": 1105.88, "word": " mean?", "probability": 0.96337890625}, {"start": 1105.88, "end": 1105.88, "word": " Make", "probability": 0.83984375}, {"start": 1105.88, "end": 1105.88, "word": " it", "probability": 0.9423828125}, {"start": 1105.88, "end": 1105.88, "word": " from", "probability": 0.7705078125}, {"start": 1105.88, "end": 1105.88, "word": " the", "probability": 0.91015625}, {"start": 1105.88, "end": 1105.88, "word": " same", "probability": 0.8837890625}, {"start": 1105.88, "end": 1105.88, "word": " type", "probability": 0.9814453125}, {"start": 1105.88, "end": 1105.88, "word": " of", "probability": 0.97314453125}, {"start": 1105.88, "end": 1105.88, "word": " shapes.", "probability": 0.93017578125}, {"start": 1105.88, "end": 1105.88, "word": " What", "probability": 0.7744140625}, {"start": 1105.88, "end": 1105.88, "word": " does", "probability": 0.9716796875}, {"start": 1105.88, "end": 1105.88, "word": " it", "probability": 0.94287109375}, {"start": 1105.88, "end": 1105.88, "word": " mean?", "probability": 0.9677734375}, {"start": 1105.88, "end": 1105.88, "word": " Make", "probability": 0.88037109375}, {"start": 1105.88, "end": 1105.88, "word": " it", "probability": 0.9482421875}, {"start": 1105.88, "end": 1105.88, "word": " from", "probability": 0.80078125}, {"start": 1105.88, "end": 1106.46, "word": " the", "probability": 0.9140625}, {"start": 1106.46, "end": 1106.46, "word": " same", "probability": 0.89111328125}, {"start": 1106.46, "end": 1106.46, "word": " type", "probability": 0.98291015625}, {"start": 1106.46, "end": 1106.46, "word": " of", "probability": 0.974609375}, {"start": 1106.46, "end": 1106.46, "word": " shapes.", "probability": 0.9326171875}, {"start": 1106.94, "end": 1106.94, "word": " What", "probability": 0.6044921875}, {"start": 1106.94, "end": 1106.94, "word": " does", "probability": 0.9658203125}, {"start": 1106.94, "end": 1106.94, "word": " it", "probability": 0.9482421875}, {"start": 1106.94, "end": 1106.94, "word": " mean?", "probability": 0.96923828125}, {"start": 1106.94, "end": 1106.94, "word": " Make", "probability": 0.87890625}, {"start": 1106.94, "end": 1106.94, "word": " it", "probability": 0.94677734375}, {"start": 1106.94, "end": 1106.94, "word": " from", "probability": 0.83154296875}, {"start": 1106.94, "end": 1107.08, "word": " the", "probability": 0.92236328125}, {"start": 1107.08, "end": 1107.66, "word": " same", "probability": 0.8955078125}, {"start": 1107.66, "end": 1107.66, "word": " type", "probability": 0.9833984375}, {"start": 1107.66, "end": 1107.7, "word": " of", "probability": 0.97509765625}, {"start": 1107.7, "end": 1107.7, "word": " shapes.", "probability": 0.93408203125}, {"start": 1108.02, "end": 1108.02, "word": " What", "probability": 0.54296875}, {"start": 1108.02, "end": 1108.02, "word": " does", "probability": 0.96337890625}, {"start": 1108.02, "end": 1108.1, "word": " it", "probability": 0.955078125}, {"start": 1108.1, "end": 1108.2, "word": " mean?", "probability": 0.96875}, {"start": 1108.2, "end": 1108.2, "word": " Make", "probability": 0.89111328125}, {"start": 1108.2, "end": 1108.2, "word": " it", "probability": 0.94677734375}, {"start": 1108.2, "end": 1108.2, "word": " from", "probability": 0.8544921875}, {"start": 1108.2, "end": 1108.2, "word": " the", "probability": 0.92822265625}, {"start": 1108.2, "end": 1108.2, "word": " same", "probability": 0.9033203125}, {"start": 1108.2, "end": 1108.2, "word": " type", "probability": 0.9853515625}, {"start": 1108.2, "end": 1108.2, "word": " of", "probability": 0.9765625}, {"start": 1108.2, "end": 1108.2, "word": " shapes.", "probability": 0.93408203125}, {"start": 1108.2, "end": 1108.64, "word": " What", "probability": 0.6103515625}, {"start": 1108.64, "end": 1108.64, "word": " does", "probability": 0.96875}, {"start": 1108.64, "end": 1108.64, "word": " it", "probability": 0.95849609375}, {"start": 1108.64, "end": 1108.64, "word": " mean?", "probability": 0.96875}, {"start": 1108.64, "end": 1108.64, "word": " Make", "probability": 0.9033203125}, {"start": 1108.64, "end": 1108.64, "word": " it", "probability": 0.9501953125}, {"start": 1108.64, "end": 1108.64, "word": " from", "probability": 0.87060546875}, {"start": 1108.64, "end": 1108.64, "word": " the", "probability": 0.93017578125}, {"start": 1108.64, "end": 1108.64, "word": " same", "probability": 0.90478515625}, {"start": 1108.64, "end": 1108.64, "word": " type", "probability": 0.98583984375}, {"start": 1108.64, "end": 1108.64, "word": " of", "probability": 0.9765625}, {"start": 1108.64, "end": 1108.64, "word": " shapes.", "probability": 0.9345703125}, {"start": 1108.64, "end": 1108.92, "word": " What", "probability": 0.67724609375}, {"start": 1108.92, "end": 1108.92, "word": " does", "probability": 0.97314453125}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.95947265625}, {"start": 1108.92, "end": 1108.92, "word": " mean?", "probability": 0.96923828125}, {"start": 1108.92, "end": 1108.92, "word": " Make", "probability": 0.9091796875}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.951171875}, {"start": 1108.92, "end": 1108.92, "word": " from", "probability": 0.8798828125}, {"start": 1108.92, "end": 1108.92, "word": " the", "probability": 0.93310546875}, {"start": 1108.92, "end": 1108.92, "word": " same", "probability": 0.90625}, {"start": 1108.92, "end": 1108.92, "word": " type", "probability": 0.98681640625}, {"start": 1108.92, "end": 1108.92, "word": " of", "probability": 0.97802734375}, {"start": 1108.92, "end": 1108.92, "word": " shapes.", "probability": 0.93359375}, {"start": 1108.92, "end": 1108.92, "word": " What", "probability": 0.708984375}, {"start": 1108.92, "end": 1108.92, "word": " does", "probability": 0.97607421875}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.95947265625}, {"start": 1108.92, "end": 1108.92, "word": " mean?", "probability": 0.96875}, {"start": 1108.92, "end": 1108.92, "word": " Make", "probability": 0.91162109375}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.953125}, {"start": 1108.92, "end": 1108.92, "word": " from", "probability": 0.88134765625}, {"start": 1108.92, "end": 1108.92, "word": " the", "probability": 0.93408203125}, {"start": 1108.92, "end": 1108.92, "word": " same", "probability": 0.90380859375}, {"start": 1108.92, "end": 1108.92, "word": " type", "probability": 0.9873046875}, {"start": 1108.92, "end": 1108.92, "word": " of", "probability": 0.97802734375}, {"start": 1108.92, "end": 1108.92, "word": " shapes.", "probability": 0.9326171875}, {"start": 1108.92, "end": 1108.92, "word": " What", "probability": 0.7216796875}, {"start": 1108.92, "end": 1108.92, "word": " does", "probability": 0.97802734375}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.96044921875}, {"start": 1108.92, "end": 1108.92, "word": " mean?", "probability": 0.9677734375}, {"start": 1108.92, "end": 1108.92, "word": " Make", "probability": 0.9150390625}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.955078125}, {"start": 1108.92, "end": 1108.92, "word": " from", "probability": 0.88671875}, {"start": 1108.92, "end": 1108.92, "word": " the", "probability": 0.93603515625}, {"start": 1108.92, "end": 1108.92, "word": " same", "probability": 0.9052734375}, {"start": 1108.92, "end": 1108.92, "word": " type", "probability": 0.98779296875}, {"start": 1108.92, "end": 1108.92, "word": " of", "probability": 0.978515625}, {"start": 1108.92, "end": 1108.92, "word": " shapes.", "probability": 0.931640625}, {"start": 1108.92, "end": 1108.92, "word": " What", "probability": 0.72021484375}, {"start": 1108.92, "end": 1108.92, "word": " does", "probability": 0.9794921875}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.96044921875}, {"start": 1108.92, "end": 1108.92, "word": " mean?", "probability": 0.96875}, {"start": 1108.92, "end": 1108.92, "word": " Make", "probability": 0.91748046875}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.955078125}, {"start": 1108.92, "end": 1108.92, "word": " from", "probability": 0.88427734375}, {"start": 1108.92, "end": 1108.92, "word": " the", "probability": 0.93603515625}, {"start": 1108.92, "end": 1108.92, "word": " same", "probability": 0.90771484375}, {"start": 1108.92, "end": 1108.92, "word": " type", "probability": 0.98828125}, {"start": 1108.92, "end": 1108.92, "word": " of", "probability": 0.978515625}, {"start": 1108.92, "end": 1108.92, "word": " shapes.", "probability": 0.93115234375}, {"start": 1108.92, "end": 1109.14, "word": " What", "probability": 0.71337890625}, {"start": 1109.14, "end": 1109.14, "word": " does", "probability": 0.98046875}, {"start": 1109.14, "end": 1109.14, "word": " it", "probability": 0.96044921875}, {"start": 1109.14, "end": 1109.14, "word": " mean?", "probability": 0.9677734375}, {"start": 1109.14, "end": 1109.14, "word": " Make", "probability": 0.91943359375}, {"start": 1109.14, "end": 1109.14, "word": " it", "probability": 0.9580078125}, {"start": 1109.14, "end": 1109.14, "word": " from", "probability": 0.88916015625}, {"start": 1109.14, "end": 1109.14, "word": " the", "probability": 0.93603515625}, {"start": 1109.14, "end": 1109.14, "word": " same", "probability": 0.90625}, {"start": 1109.14, "end": 1109.14, "word": " type", "probability": 0.98828125}, {"start": 1109.14, "end": 1109.14, "word": " of", "probability": 0.97900390625}, {"start": 1109.14, "end": 1109.14, "word": " shapes.", "probability": 0.9296875}, {"start": 1109.14, "end": 1109.14, "word": " What", "probability": 0.70556640625}, {"start": 1109.14, "end": 1109.14, "word": " does", "probability": 0.98193359375}, {"start": 1109.14, "end": 1109.14, "word": " it", "probability": 0.96044921875}, {"start": 1109.14, "end": 1109.14, "word": " mean?", "probability": 0.96826171875}, {"start": 1109.14, "end": 1109.14, "word": " Make", "probability": 0.91943359375}, {"start": 1109.14, "end": 1109.14, "word": " it", "probability": 0.9580078125}, {"start": 1109.14, "end": 1109.14, "word": " from", "probability": 0.888671875}, {"start": 1109.14, "end": 1109.14, "word": " the", "probability": 0.935546875}, {"start": 1109.14, "end": 1109.14, "word": " same", "probability": 0.90771484375}, {"start": 1109.14, "end": 1109.14, "word": " type", "probability": 0.98779296875}, {"start": 1109.14, "end": 1109.14, "word": " of", "probability": 0.97900390625}, {"start": 1109.14, "end": 1109.14, "word": " shapes.", "probability": 0.9296875}, {"start": 1109.34, "end": 1109.94, "word": " What", "probability": 0.68115234375}, {"start": 1109.94, "end": 1109.94, "word": " does", "probability": 0.982421875}, {"start": 1109.94, "end": 1109.94, "word": " it", "probability": 0.96142578125}, {"start": 1109.94, "end": 1109.94, "word": " mean?", "probability": 0.9677734375}, {"start": 1109.94, "end": 1109.94, "word": " Make", "probability": 0.92041015625}, {"start": 1109.94, "end": 1109.94, "word": " it", "probability": 0.958984375}, {"start": 1109.94, "end": 1110.5, "word": " from", "probability": 0.8896484375}, {"start": 1110.5, "end": 1113.08, "word": " the", "probability": 0.9345703125}, {"start": 1113.08, "end": 1113.08, "word": " same", "probability": 0.9052734375}, {"start": 1113.08, "end": 1113.08, "word": " type", "probability": 0.9873046875}, {"start": 1113.08, "end": 1113.08, "word": " of", "probability": 0.97900390625}, {"start": 1113.08, "end": 1113.08, "word": " shapes.", "probability": 0.9296875}, {"start": 1113.08, "end": 1113.08, "word": " What", "probability": 0.6474609375}, {"start": 1113.08, "end": 1115.82, "word": " does", "probability": 0.982421875}, {"start": 1115.82, "end": 1115.82, "word": " it", "probability": 0.9609375}, {"start": 1115.82, "end": 1115.82, "word": " mean?", "probability": 0.966796875}, {"start": 1116.22, "end": 1116.34, "word": " Make", "probability": 0.9189453125}, {"start": 1116.34, "end": 1116.34, "word": " it", "probability": 0.95947265625}, {"start": 1116.34, "end": 1117.04, "word": " from", "probability": 0.890625}, {"start": 1117.04, "end": 1117.5, "word": " the", "probability": 0.93115234375}, {"start": 1117.5, "end": 1117.62, "word": " same", "probability": 0.9013671875}, {"start": 1117.62, "end": 1117.62, "word": " type", "probability": 0.9853515625}, {"start": 1117.62, "end": 1117.62, "word": " of", "probability": 0.9794921875}, {"start": 1117.62, "end": 1117.8, "word": " shapes.", "probability": 0.927734375}, {"start": 1118.0, "end": 1118.6, "word": " What", "probability": 0.59765625}, {"start": 1118.6, "end": 1118.72, "word": " does", "probability": 0.9814453125}, {"start": 1118.72, "end": 1118.88, "word": " it", "probability": 0.96142578125}, {"start": 1118.88, "end": 1118.88, "word": " mean?", "probability": 0.96533203125}, {"start": 1119.16, "end": 1119.44, "word": " Make", "probability": 0.91259765625}, {"start": 1119.44, "end": 1119.8, "word": " it", "probability": 0.95947265625}, {"start": 1119.8, "end": 1120.08, "word": " from", "probability": 0.8916015625}, {"start": 1120.08, "end": 1120.48, "word": " the", "probability": 0.92431640625}, {"start": 1120.48, "end": 1120.52, "word": " same", "probability": 0.8916015625}, {"start": 1120.52, "end": 1120.52, "word": " type", "probability": 0.982421875}, {"start": 1120.52, "end": 1120.52, "word": " of", "probability": 0.97802734375}, {"start": 1120.52, "end": 1121.66, "word": " shapes.", "probability": 0.92236328125}], "temperature": 1.0}, {"id": 45, "seek": 115271, "start": 1123.25, "end": 1152.71, "text": " an object of type .. pay attention to me and then I will explain to you ok? an object of type shape notice that there is a strange thing that this is of type shape and inside it contains what? an object of type shape of course this is a null value so we need to create a constructor to initialize it ok guys? ok", "tokens": [364, 2657, 295, 2010, 4386, 1689, 3202, 281, 385, 293, 550, 286, 486, 2903, 281, 291, 3133, 30, 364, 2657, 295, 2010, 3909, 3449, 300, 456, 307, 257, 5861, 551, 300, 341, 307, 295, 2010, 3909, 293, 1854, 309, 8306, 437, 30, 364, 2657, 295, 2010, 3909, 295, 1164, 341, 307, 257, 18184, 2158, 370, 321, 643, 281, 1884, 257, 47479, 281, 5883, 1125, 309, 3133, 1074, 30, 3133], "avg_logprob": -0.5964285467352186, "compression_ratio": 1.7627118644067796, "no_speech_prob": 3.7550926208496094e-05, "words": [{"start": 1123.25, "end": 1123.51, "word": " an", "probability": 0.1280517578125}, {"start": 1123.51, "end": 1123.71, "word": " object", "probability": 0.93408203125}, {"start": 1123.71, "end": 1123.87, "word": " of", "probability": 0.775390625}, {"start": 1123.87, "end": 1124.17, "word": " type", "probability": 0.5517578125}, {"start": 1124.17, "end": 1124.29, "word": " ..", "probability": 0.126708984375}, {"start": 1124.29, "end": 1124.85, "word": " pay", "probability": 0.197509765625}, {"start": 1124.85, "end": 1125.03, "word": " attention", "probability": 0.92578125}, {"start": 1125.03, "end": 1125.15, "word": " to", "probability": 0.4169921875}, {"start": 1125.15, "end": 1125.25, "word": " me", "probability": 0.5576171875}, {"start": 1125.25, "end": 1125.39, "word": " and", "probability": 0.302734375}, {"start": 1125.39, "end": 1125.45, "word": " then", "probability": 0.5107421875}, {"start": 1125.45, "end": 1125.55, "word": " I", "probability": 0.7958984375}, {"start": 1125.55, "end": 1125.59, "word": " will", "probability": 0.5908203125}, {"start": 1125.59, "end": 1125.83, "word": " explain", "probability": 0.73388671875}, {"start": 1125.83, "end": 1125.91, "word": " to", "probability": 0.37158203125}, {"start": 1125.91, "end": 1126.13, "word": " you", "probability": 0.96875}, {"start": 1126.13, "end": 1126.85, "word": " ok?", "probability": 0.203369140625}, {"start": 1126.95, "end": 1127.31, "word": " an", "probability": 0.53759765625}, {"start": 1127.31, "end": 1127.31, "word": " object", "probability": 0.958984375}, {"start": 1127.31, "end": 1127.45, "word": " of", "probability": 0.953125}, {"start": 1127.45, "end": 1127.61, "word": " type", "probability": 0.8984375}, {"start": 1127.61, "end": 1127.85, "word": " shape", "probability": 0.80224609375}, {"start": 1127.85, "end": 1128.97, "word": " notice", "probability": 0.2431640625}, {"start": 1128.97, "end": 1129.15, "word": " that", "probability": 0.50146484375}, {"start": 1129.15, "end": 1129.35, "word": " there", "probability": 0.59814453125}, {"start": 1129.35, "end": 1129.35, "word": " is", "probability": 0.83544921875}, {"start": 1129.35, "end": 1129.45, "word": " a", "probability": 0.37841796875}, {"start": 1129.45, "end": 1129.81, "word": " strange", "probability": 0.6318359375}, {"start": 1129.81, "end": 1129.81, "word": " thing", "probability": 0.73388671875}, {"start": 1129.81, "end": 1129.97, "word": " that", "probability": 0.201416015625}, {"start": 1129.97, "end": 1130.27, "word": " this", "probability": 0.6171875}, {"start": 1130.27, "end": 1130.29, "word": " is", "probability": 0.37890625}, {"start": 1130.29, "end": 1130.37, "word": " of", "probability": 0.480712890625}, {"start": 1130.37, "end": 1130.65, "word": " type", "probability": 0.83251953125}, {"start": 1130.65, "end": 1131.03, "word": " shape", "probability": 0.8955078125}, {"start": 1131.03, "end": 1132.01, "word": " and", "probability": 0.70849609375}, {"start": 1132.01, "end": 1132.47, "word": " inside", "probability": 0.25830078125}, {"start": 1132.47, "end": 1132.83, "word": " it", "probability": 0.548828125}, {"start": 1132.83, "end": 1132.83, "word": " contains", "probability": 0.414306640625}, {"start": 1132.83, "end": 1133.09, "word": " what?", "probability": 0.466064453125}, {"start": 1133.29, "end": 1133.75, "word": " an", "probability": 0.347412109375}, {"start": 1133.75, "end": 1133.93, "word": " object", "probability": 0.96728515625}, {"start": 1133.93, "end": 1134.09, "word": " of", "probability": 0.96435546875}, {"start": 1134.09, "end": 1134.23, "word": " type", "probability": 0.93505859375}, {"start": 1134.23, "end": 1134.63, "word": " shape", "probability": 0.90771484375}, {"start": 1134.63, "end": 1135.41, "word": " of", "probability": 0.453125}, {"start": 1135.41, "end": 1135.43, "word": " course", "probability": 0.9580078125}, {"start": 1135.43, "end": 1135.63, "word": " this", "probability": 0.65869140625}, {"start": 1135.63, "end": 1135.67, "word": " is", "probability": 0.77294921875}, {"start": 1135.67, "end": 1136.15, "word": " a", "probability": 0.2445068359375}, {"start": 1136.15, "end": 1136.15, "word": " null", "probability": 0.165283203125}, {"start": 1136.15, "end": 1136.15, "word": " value", "probability": 0.7431640625}, {"start": 1136.15, "end": 1136.53, "word": " so", "probability": 0.53173828125}, {"start": 1136.53, "end": 1136.75, "word": " we", "probability": 0.90625}, {"start": 1136.75, "end": 1136.75, "word": " need", "probability": 0.26953125}, {"start": 1136.75, "end": 1137.15, "word": " to", "probability": 0.96337890625}, {"start": 1137.15, "end": 1137.15, "word": " create", "probability": 0.4052734375}, {"start": 1137.15, "end": 1138.03, "word": " a", "probability": 0.494384765625}, {"start": 1138.03, "end": 1138.57, "word": " constructor", "probability": 0.90380859375}, {"start": 1138.57, "end": 1138.79, "word": " to", "probability": 0.78759765625}, {"start": 1138.79, "end": 1139.73, "word": " initialize", "probability": 0.7125244140625}, {"start": 1139.73, "end": 1146.99, "word": " it", "probability": 0.8935546875}, {"start": 1146.99, "end": 1151.25, "word": " ok", "probability": 0.45068359375}, {"start": 1151.25, "end": 1151.57, "word": " guys?", "probability": 0.8154296875}, {"start": 1152.47, "end": 1152.71, "word": " ok", "probability": 0.60009765625}], "temperature": 1.0}, {"id": 46, "seek": 118120, "start": 1154.4, "end": 1181.2, "text": " we are almost done now look with me now my goal is to add a border right? what are the attributes of any border? I have border int border-width and color border-color and the same thing we want to do with these setters", "tokens": [321, 366, 1920, 1096, 586, 574, 365, 385, 586, 452, 3387, 307, 281, 909, 257, 7838, 558, 30, 437, 366, 264, 17212, 295, 604, 7838, 30, 286, 362, 7838, 560, 7838, 12, 21271, 293, 2017, 7838, 12, 23851, 293, 264, 912, 551, 321, 528, 281, 360, 365, 613, 992, 1559], "avg_logprob": -0.5373774790296367, "compression_ratio": 1.5642857142857143, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 1154.4, "end": 1154.8, "word": " we", "probability": 0.202880859375}, {"start": 1154.8, "end": 1154.8, "word": " are", "probability": 0.33544921875}, {"start": 1154.8, "end": 1154.8, "word": " almost", "probability": 0.56103515625}, {"start": 1154.8, "end": 1155.34, "word": " done", "probability": 0.72412109375}, {"start": 1155.34, "end": 1157.04, "word": " now", "probability": 0.4228515625}, {"start": 1157.04, "end": 1157.28, "word": " look", "probability": 0.402587890625}, {"start": 1157.28, "end": 1157.5, "word": " with", "probability": 0.4541015625}, {"start": 1157.5, "end": 1157.74, "word": " me", "probability": 0.9638671875}, {"start": 1157.74, "end": 1158.64, "word": " now", "probability": 0.63916015625}, {"start": 1158.64, "end": 1161.5, "word": " my", "probability": 0.363525390625}, {"start": 1161.5, "end": 1161.74, "word": " goal", "probability": 0.6728515625}, {"start": 1161.74, "end": 1162.16, "word": " is", "probability": 0.87841796875}, {"start": 1162.16, "end": 1162.34, "word": " to", "probability": 0.89013671875}, {"start": 1162.34, "end": 1162.54, "word": " add", "probability": 0.8330078125}, {"start": 1162.54, "end": 1162.64, "word": " a", "probability": 0.21875}, {"start": 1162.64, "end": 1162.9, "word": " border", "probability": 0.87255859375}, {"start": 1162.9, "end": 1163.64, "word": " right?", "probability": 0.228515625}, {"start": 1163.72, "end": 1163.88, "word": " what", "probability": 0.7080078125}, {"start": 1163.88, "end": 1163.96, "word": " are", "probability": 0.5439453125}, {"start": 1163.96, "end": 1164.0, "word": " the", "probability": 0.7626953125}, {"start": 1164.0, "end": 1164.46, "word": " attributes", "probability": 0.861328125}, {"start": 1164.46, "end": 1164.66, "word": " of", "probability": 0.92724609375}, {"start": 1164.66, "end": 1164.88, "word": " any", "probability": 0.802734375}, {"start": 1164.88, "end": 1165.26, "word": " border?", "probability": 0.875}, {"start": 1166.16, "end": 1166.3, "word": " I", "probability": 0.406494140625}, {"start": 1166.3, "end": 1166.5, "word": " have", "probability": 0.90576171875}, {"start": 1166.5, "end": 1167.02, "word": " border", "probability": 0.55908203125}, {"start": 1167.02, "end": 1168.76, "word": " int", "probability": 0.157958984375}, {"start": 1168.76, "end": 1169.48, "word": " border", "probability": 0.81640625}, {"start": 1169.48, "end": 1169.9, "word": "-width", "probability": 0.7490234375}, {"start": 1169.9, "end": 1172.02, "word": " and", "probability": 0.640625}, {"start": 1172.02, "end": 1172.38, "word": " color", "probability": 0.802734375}, {"start": 1172.38, "end": 1173.8, "word": " border", "probability": 0.81494140625}, {"start": 1173.8, "end": 1176.9, "word": "-color", "probability": 0.870849609375}, {"start": 1176.9, "end": 1177.96, "word": " and", "probability": 0.74267578125}, {"start": 1177.96, "end": 1178.06, "word": " the", "probability": 0.401123046875}, {"start": 1178.06, "end": 1178.16, "word": " same", "probability": 0.91455078125}, {"start": 1178.16, "end": 1178.58, "word": " thing", "probability": 0.6953125}, {"start": 1178.58, "end": 1178.72, "word": " we", "probability": 0.388671875}, {"start": 1178.72, "end": 1178.86, "word": " want", "probability": 0.16650390625}, {"start": 1178.86, "end": 1178.98, "word": " to", "probability": 0.95068359375}, {"start": 1178.98, "end": 1179.14, "word": " do", "probability": 0.355712890625}, {"start": 1179.14, "end": 1179.32, "word": " with", "probability": 0.27197265625}, {"start": 1179.32, "end": 1179.68, "word": " these", "probability": 0.73583984375}, {"start": 1179.68, "end": 1181.2, "word": " setters", "probability": 0.73486328125}], "temperature": 1.0}, {"id": 47, "seek": 121767, "start": 1192.79, "end": 1217.67, "text": "Okay, I got the idea that the shape that I want to draw, okay? I want to add a frame to it. Now, what does this constructor take? I shape. Why did you let him take I shape? So that I can send him a circle, rectangle, triangle and any other shape. Okay? Then, in this draw, what do I really want to do? Okay?", "tokens": [8297, 11, 286, 658, 264, 1558, 300, 264, 3909, 300, 286, 528, 281, 2642, 11, 1392, 30, 286, 528, 281, 909, 257, 3920, 281, 309, 13, 823, 11, 437, 775, 341, 47479, 747, 30, 286, 3909, 13, 1545, 630, 291, 718, 796, 747, 286, 3909, 30, 407, 300, 286, 393, 2845, 796, 257, 6329, 11, 21930, 11, 13369, 293, 604, 661, 3909, 13, 1033, 30, 1396, 11, 294, 341, 2642, 11, 437, 360, 286, 534, 528, 281, 360, 30, 1033, 30], "avg_logprob": -0.37080791556253667, "compression_ratio": 1.6868131868131868, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 1192.79, "end": 1193.15, "word": "Okay,", "probability": 0.2386474609375}, {"start": 1193.53, "end": 1193.73, "word": " I", "probability": 0.53955078125}, {"start": 1193.73, "end": 1193.87, "word": " got", "probability": 0.2203369140625}, {"start": 1193.87, "end": 1194.01, "word": " the", "probability": 0.6865234375}, {"start": 1194.01, "end": 1194.27, "word": " idea", "probability": 0.873046875}, {"start": 1194.27, "end": 1194.59, "word": " that", "probability": 0.77734375}, {"start": 1194.59, "end": 1194.89, "word": " the", "probability": 0.3818359375}, {"start": 1194.89, "end": 1195.25, "word": " shape", "probability": 0.84326171875}, {"start": 1195.25, "end": 1196.57, "word": " that", "probability": 0.447998046875}, {"start": 1196.57, "end": 1196.79, "word": " I", "probability": 0.96435546875}, {"start": 1196.79, "end": 1196.79, "word": " want", "probability": 0.6025390625}, {"start": 1196.79, "end": 1196.81, "word": " to", "probability": 0.96044921875}, {"start": 1196.81, "end": 1197.09, "word": " draw,", "probability": 0.84033203125}, {"start": 1197.91, "end": 1198.19, "word": " okay?", "probability": 0.1983642578125}, {"start": 1198.25, "end": 1198.33, "word": " I", "probability": 0.83203125}, {"start": 1198.33, "end": 1198.45, "word": " want", "probability": 0.5537109375}, {"start": 1198.45, "end": 1198.47, "word": " to", "probability": 0.96044921875}, {"start": 1198.47, "end": 1198.69, "word": " add", "probability": 0.84375}, {"start": 1198.69, "end": 1199.49, "word": " a", "probability": 0.783203125}, {"start": 1199.49, "end": 1199.71, "word": " frame", "probability": 0.654296875}, {"start": 1199.71, "end": 1200.05, "word": " to", "probability": 0.58251953125}, {"start": 1200.05, "end": 1200.35, "word": " it.", "probability": 0.939453125}, {"start": 1201.07, "end": 1201.55, "word": " Now,", "probability": 0.7900390625}, {"start": 1202.33, "end": 1202.61, "word": " what", "probability": 0.599609375}, {"start": 1202.61, "end": 1202.61, "word": " does", "probability": 0.787109375}, {"start": 1202.61, "end": 1202.75, "word": " this", "probability": 0.85888671875}, {"start": 1202.75, "end": 1203.71, "word": " constructor", "probability": 0.74365234375}, {"start": 1203.71, "end": 1204.35, "word": " take?", "probability": 0.67236328125}, {"start": 1204.95, "end": 1205.37, "word": " I", "probability": 0.7197265625}, {"start": 1205.37, "end": 1205.57, "word": " shape.", "probability": 0.810546875}, {"start": 1205.63, "end": 1205.77, "word": " Why", "probability": 0.85888671875}, {"start": 1205.77, "end": 1205.97, "word": " did", "probability": 0.9111328125}, {"start": 1205.97, "end": 1206.11, "word": " you", "probability": 0.323974609375}, {"start": 1206.11, "end": 1206.11, "word": " let", "probability": 0.4443359375}, {"start": 1206.11, "end": 1206.17, "word": " him", "probability": 0.468017578125}, {"start": 1206.17, "end": 1206.33, "word": " take", "probability": 0.84326171875}, {"start": 1206.33, "end": 1206.55, "word": " I", "probability": 0.82080078125}, {"start": 1206.55, "end": 1206.81, "word": " shape?", "probability": 0.90771484375}, {"start": 1207.39, "end": 1207.87, "word": " So", "probability": 0.69140625}, {"start": 1207.87, "end": 1208.03, "word": " that", "probability": 0.74365234375}, {"start": 1208.03, "end": 1208.17, "word": " I", "probability": 0.955078125}, {"start": 1208.17, "end": 1208.27, "word": " can", "probability": 0.86376953125}, {"start": 1208.27, "end": 1208.51, "word": " send", "probability": 0.55908203125}, {"start": 1208.51, "end": 1208.63, "word": " him", "probability": 0.83642578125}, {"start": 1208.63, "end": 1208.69, "word": " a", "probability": 0.8583984375}, {"start": 1208.69, "end": 1209.03, "word": " circle,", "probability": 0.93212890625}, {"start": 1209.43, "end": 1210.01, "word": " rectangle,", "probability": 0.84521484375}, {"start": 1210.41, "end": 1210.93, "word": " triangle", "probability": 0.84375}, {"start": 1210.93, "end": 1211.09, "word": " and", "probability": 0.4013671875}, {"start": 1211.09, "end": 1211.23, "word": " any", "probability": 0.66796875}, {"start": 1211.23, "end": 1211.25, "word": " other", "probability": 0.75732421875}, {"start": 1211.25, "end": 1211.47, "word": " shape.", "probability": 0.90869140625}, {"start": 1212.15, "end": 1212.43, "word": " Okay?", "probability": 0.6298828125}, {"start": 1212.91, "end": 1213.27, "word": " Then,", "probability": 0.7939453125}, {"start": 1213.53, "end": 1213.65, "word": " in", "probability": 0.767578125}, {"start": 1213.65, "end": 1213.77, "word": " this", "probability": 0.9189453125}, {"start": 1213.77, "end": 1213.99, "word": " draw,", "probability": 0.701171875}, {"start": 1214.63, "end": 1215.57, "word": " what", "probability": 0.904296875}, {"start": 1215.57, "end": 1215.65, "word": " do", "probability": 0.646484375}, {"start": 1215.65, "end": 1215.71, "word": " I", "probability": 0.90625}, {"start": 1215.71, "end": 1215.81, "word": " really", "probability": 0.436767578125}, {"start": 1215.81, "end": 1215.87, "word": " want", "probability": 0.84521484375}, {"start": 1215.87, "end": 1215.87, "word": " to", "probability": 0.96337890625}, {"start": 1215.87, "end": 1216.05, "word": " do?", "probability": 0.9462890625}, {"start": 1217.19, "end": 1217.67, "word": " Okay?", "probability": 0.7060546875}], "temperature": 1.0}, {"id": 48, "seek": 124507, "start": 1219.23, "end": 1245.07, "text": " I'm going to add my new code Do you remember the code that we used to do? Circle with rectangle Circle with border This is the code, do you see it? What does it do? It applies the new color and the new border width Why can't I see the border?", "tokens": [286, 478, 516, 281, 909, 452, 777, 3089, 1144, 291, 1604, 264, 3089, 300, 321, 1143, 281, 360, 30, 29381, 365, 21930, 29381, 365, 7838, 639, 307, 264, 3089, 11, 360, 291, 536, 309, 30, 708, 775, 309, 360, 30, 467, 13165, 264, 777, 2017, 293, 264, 777, 7838, 11402, 1545, 393, 380, 286, 536, 264, 7838, 30], "avg_logprob": -0.49788133370674265, "compression_ratio": 1.5576923076923077, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 1219.23, "end": 1219.53, "word": " I'm", "probability": 0.371826171875}, {"start": 1219.53, "end": 1219.63, "word": " going", "probability": 0.6640625}, {"start": 1219.63, "end": 1220.35, "word": " to", "probability": 0.962890625}, {"start": 1220.35, "end": 1220.55, "word": " add", "probability": 0.8447265625}, {"start": 1220.55, "end": 1221.19, "word": " my", "probability": 0.392578125}, {"start": 1221.19, "end": 1221.53, "word": " new", "probability": 0.84326171875}, {"start": 1221.53, "end": 1221.59, "word": " code", "probability": 0.8466796875}, {"start": 1221.59, "end": 1224.05, "word": " Do", "probability": 0.10333251953125}, {"start": 1224.05, "end": 1224.63, "word": " you", "probability": 0.96044921875}, {"start": 1224.63, "end": 1225.25, "word": " remember", "probability": 0.83447265625}, {"start": 1225.25, "end": 1225.45, "word": " the", "probability": 0.63720703125}, {"start": 1225.45, "end": 1225.65, "word": " code", "probability": 0.73486328125}, {"start": 1225.65, "end": 1225.77, "word": " that", "probability": 0.300048828125}, {"start": 1225.77, "end": 1225.99, "word": " we", "probability": 0.76318359375}, {"start": 1225.99, "end": 1225.99, "word": " used", "probability": 0.361572265625}, {"start": 1225.99, "end": 1226.05, "word": " to", "probability": 0.89453125}, {"start": 1226.05, "end": 1226.35, "word": " do?", "probability": 0.435546875}, {"start": 1227.01, "end": 1227.57, "word": " Circle", "probability": 0.271484375}, {"start": 1227.57, "end": 1227.79, "word": " with", "probability": 0.71142578125}, {"start": 1227.79, "end": 1228.37, "word": " rectangle", "probability": 0.8623046875}, {"start": 1228.37, "end": 1229.53, "word": " Circle", "probability": 0.371337890625}, {"start": 1229.53, "end": 1229.77, "word": " with", "probability": 0.90869140625}, {"start": 1229.77, "end": 1230.17, "word": " border", "probability": 0.7822265625}, {"start": 1230.17, "end": 1230.99, "word": " This", "probability": 0.311279296875}, {"start": 1230.99, "end": 1231.07, "word": " is", "probability": 0.4775390625}, {"start": 1231.07, "end": 1231.17, "word": " the", "probability": 0.87841796875}, {"start": 1231.17, "end": 1231.43, "word": " code,", "probability": 0.84765625}, {"start": 1231.51, "end": 1231.55, "word": " do", "probability": 0.2159423828125}, {"start": 1231.55, "end": 1231.55, "word": " you", "probability": 0.974609375}, {"start": 1231.55, "end": 1231.81, "word": " see", "probability": 0.9267578125}, {"start": 1231.81, "end": 1232.17, "word": " it?", "probability": 0.78466796875}, {"start": 1232.69, "end": 1232.89, "word": " What", "probability": 0.263916015625}, {"start": 1232.89, "end": 1233.23, "word": " does", "probability": 0.498779296875}, {"start": 1233.23, "end": 1233.23, "word": " it", "probability": 0.80078125}, {"start": 1233.23, "end": 1233.57, "word": " do?", "probability": 0.93115234375}, {"start": 1234.13, "end": 1234.37, "word": " It", "probability": 0.67578125}, {"start": 1234.37, "end": 1234.65, "word": " applies", "probability": 0.68505859375}, {"start": 1234.65, "end": 1234.93, "word": " the", "probability": 0.80615234375}, {"start": 1234.93, "end": 1234.97, "word": " new", "probability": 0.8544921875}, {"start": 1234.97, "end": 1235.31, "word": " color", "probability": 0.83740234375}, {"start": 1235.31, "end": 1237.83, "word": " and", "probability": 0.47412109375}, {"start": 1237.83, "end": 1237.91, "word": " the", "probability": 0.424072265625}, {"start": 1237.91, "end": 1238.75, "word": " new", "probability": 0.732421875}, {"start": 1238.75, "end": 1239.03, "word": " border", "probability": 0.58837890625}, {"start": 1239.03, "end": 1239.41, "word": " width", "probability": 0.62744140625}, {"start": 1239.41, "end": 1244.23, "word": " Why", "probability": 0.68798828125}, {"start": 1244.23, "end": 1244.37, "word": " can't", "probability": 0.642333984375}, {"start": 1244.37, "end": 1244.43, "word": " I", "probability": 0.86865234375}, {"start": 1244.43, "end": 1244.59, "word": " see", "probability": 0.9228515625}, {"start": 1244.59, "end": 1244.73, "word": " the", "probability": 0.85400390625}, {"start": 1244.73, "end": 1245.07, "word": " border?", "probability": 0.8203125}], "temperature": 1.0}, {"id": 49, "seek": 126781, "start": 1247.65, "end": 1267.81, "text": "Width, what is this? We wrote it wrong, so we go and edit it, but what? Down here, border-width Where is six? Yes, six border-width", "tokens": [54, 327, 392, 11, 437, 307, 341, 30, 492, 4114, 309, 2085, 11, 370, 321, 352, 293, 8129, 309, 11, 457, 437, 30, 9506, 510, 11, 7838, 12, 21271, 2305, 307, 2309, 30, 1079, 11, 2309, 7838, 12, 21271], "avg_logprob": -0.5679687470197677, "compression_ratio": 1.3232323232323233, "no_speech_prob": 0.0, "words": [{"start": 1247.65, "end": 1248.23, "word": "Width,", "probability": 0.6852823893229166}, {"start": 1248.25, "end": 1248.39, "word": " what", "probability": 0.420166015625}, {"start": 1248.39, "end": 1248.39, "word": " is", "probability": 0.442626953125}, {"start": 1248.39, "end": 1248.61, "word": " this?", "probability": 0.493408203125}, {"start": 1248.69, "end": 1248.77, "word": " We", "probability": 0.79150390625}, {"start": 1248.77, "end": 1248.97, "word": " wrote", "probability": 0.71240234375}, {"start": 1248.97, "end": 1250.07, "word": " it", "probability": 0.9208984375}, {"start": 1250.07, "end": 1250.35, "word": " wrong,", "probability": 0.8173828125}, {"start": 1250.83, "end": 1251.85, "word": " so", "probability": 0.8203125}, {"start": 1251.85, "end": 1252.03, "word": " we", "probability": 0.7177734375}, {"start": 1252.03, "end": 1252.11, "word": " go", "probability": 0.2244873046875}, {"start": 1252.11, "end": 1252.27, "word": " and", "probability": 0.346923828125}, {"start": 1252.27, "end": 1252.49, "word": " edit", "probability": 0.20751953125}, {"start": 1252.49, "end": 1252.67, "word": " it,", "probability": 0.875}, {"start": 1252.69, "end": 1252.79, "word": " but", "probability": 0.419189453125}, {"start": 1252.79, "end": 1253.09, "word": " what?", "probability": 0.87158203125}, {"start": 1253.27, "end": 1253.65, "word": " Down", "probability": 0.432373046875}, {"start": 1253.65, "end": 1254.03, "word": " here,", "probability": 0.83984375}, {"start": 1254.55, "end": 1254.95, "word": " border", "probability": 0.81787109375}, {"start": 1254.95, "end": 1255.43, "word": "-width", "probability": 0.642578125}, {"start": 1255.43, "end": 1264.23, "word": " Where", "probability": 0.60595703125}, {"start": 1264.23, "end": 1264.33, "word": " is", "probability": 0.62353515625}, {"start": 1264.33, "end": 1264.63, "word": " six?", "probability": 0.473388671875}, {"start": 1265.79, "end": 1266.37, "word": " Yes,", "probability": 0.41455078125}, {"start": 1266.59, "end": 1266.93, "word": " six", "probability": 0.89501953125}, {"start": 1266.93, "end": 1267.41, "word": " border", "probability": 0.59423828125}, {"start": 1267.41, "end": 1267.81, "word": "-width", "probability": 0.90576171875}], "temperature": 1.0}, {"id": 50, "seek": 129666, "start": 1270.5, "end": 1296.66, "text": " okay, we came here in the draw this is the border's draw do like this and then what do I do? I tell him to go to shape and tell him to draw and send me G to D now describe I want to describe the shape I want to tell him to return shape.describe and then here I tell him with", "tokens": [1392, 11, 321, 1361, 510, 294, 264, 2642, 341, 307, 264, 7838, 311, 2642, 360, 411, 341, 293, 550, 437, 360, 286, 360, 30, 286, 980, 796, 281, 352, 281, 3909, 293, 980, 796, 281, 2642, 293, 2845, 385, 460, 281, 413, 586, 6786, 286, 528, 281, 6786, 264, 3909, 286, 528, 281, 980, 796, 281, 2736, 3909, 13, 14792, 8056, 293, 550, 510, 286, 980, 796, 365], "avg_logprob": -0.5303442167199176, "compression_ratio": 1.7973856209150327, "no_speech_prob": 3.4570693969726562e-06, "words": [{"start": 1270.5, "end": 1271.02, "word": " okay,", "probability": 0.08135986328125}, {"start": 1271.74, "end": 1272.22, "word": " we", "probability": 0.32177734375}, {"start": 1272.22, "end": 1272.4, "word": " came", "probability": 0.265869140625}, {"start": 1272.4, "end": 1272.82, "word": " here", "probability": 0.71630859375}, {"start": 1272.82, "end": 1273.08, "word": " in", "probability": 0.54052734375}, {"start": 1273.08, "end": 1273.18, "word": " the", "probability": 0.6259765625}, {"start": 1273.18, "end": 1273.46, "word": " draw", "probability": 0.66064453125}, {"start": 1273.46, "end": 1274.36, "word": " this", "probability": 0.2186279296875}, {"start": 1274.36, "end": 1274.38, "word": " is", "probability": 0.6787109375}, {"start": 1274.38, "end": 1274.96, "word": " the", "probability": 0.63525390625}, {"start": 1274.96, "end": 1275.16, "word": " border's", "probability": 0.40447998046875}, {"start": 1275.16, "end": 1275.16, "word": " draw", "probability": 0.748046875}, {"start": 1275.16, "end": 1276.0, "word": " do", "probability": 0.2568359375}, {"start": 1276.0, "end": 1276.22, "word": " like", "probability": 0.42822265625}, {"start": 1276.22, "end": 1276.52, "word": " this", "probability": 0.8564453125}, {"start": 1276.52, "end": 1277.08, "word": " and", "probability": 0.40234375}, {"start": 1277.08, "end": 1277.56, "word": " then", "probability": 0.70166015625}, {"start": 1277.56, "end": 1278.08, "word": " what", "probability": 0.59228515625}, {"start": 1278.08, "end": 1278.2, "word": " do", "probability": 0.326416015625}, {"start": 1278.2, "end": 1278.2, "word": " I", "probability": 0.408935546875}, {"start": 1278.2, "end": 1278.52, "word": " do?", "probability": 0.94677734375}, {"start": 1278.64, "end": 1278.74, "word": " I", "probability": 0.8193359375}, {"start": 1278.74, "end": 1278.88, "word": " tell", "probability": 0.240966796875}, {"start": 1278.88, "end": 1278.98, "word": " him", "probability": 0.6318359375}, {"start": 1278.98, "end": 1279.04, "word": " to", "probability": 0.6474609375}, {"start": 1279.04, "end": 1279.12, "word": " go", "probability": 0.939453125}, {"start": 1279.12, "end": 1279.26, "word": " to", "probability": 0.9169921875}, {"start": 1279.26, "end": 1279.8, "word": " shape", "probability": 0.71240234375}, {"start": 1279.8, "end": 1281.28, "word": " and", "probability": 0.77978515625}, {"start": 1281.28, "end": 1281.5, "word": " tell", "probability": 0.62841796875}, {"start": 1281.5, "end": 1281.76, "word": " him", "probability": 0.935546875}, {"start": 1281.76, "end": 1282.42, "word": " to", "probability": 0.5205078125}, {"start": 1282.42, "end": 1282.7, "word": " draw", "probability": 0.8759765625}, {"start": 1282.7, "end": 1283.46, "word": " and", "probability": 0.83544921875}, {"start": 1283.46, "end": 1283.74, "word": " send", "probability": 0.55224609375}, {"start": 1283.74, "end": 1284.0, "word": " me", "probability": 0.6025390625}, {"start": 1284.0, "end": 1284.42, "word": " G", "probability": 0.499755859375}, {"start": 1284.42, "end": 1284.62, "word": " to", "probability": 0.919921875}, {"start": 1284.62, "end": 1284.78, "word": " D", "probability": 0.9912109375}, {"start": 1284.78, "end": 1286.94, "word": " now", "probability": 0.7548828125}, {"start": 1286.94, "end": 1287.38, "word": " describe", "probability": 0.66259765625}, {"start": 1287.38, "end": 1288.52, "word": " I", "probability": 0.13720703125}, {"start": 1288.52, "end": 1288.68, "word": " want", "probability": 0.430908203125}, {"start": 1288.68, "end": 1288.76, "word": " to", "probability": 0.93408203125}, {"start": 1288.76, "end": 1288.96, "word": " describe", "probability": 0.697265625}, {"start": 1288.96, "end": 1289.1, "word": " the", "probability": 0.8251953125}, {"start": 1289.1, "end": 1289.38, "word": " shape", "probability": 0.869140625}, {"start": 1289.38, "end": 1290.18, "word": " I", "probability": 0.7578125}, {"start": 1290.18, "end": 1290.26, "word": " want", "probability": 0.468505859375}, {"start": 1290.26, "end": 1290.32, "word": " to", "probability": 0.9638671875}, {"start": 1290.32, "end": 1290.4, "word": " tell", "probability": 0.56494140625}, {"start": 1290.4, "end": 1290.48, "word": " him", "probability": 0.845703125}, {"start": 1290.48, "end": 1290.54, "word": " to", "probability": 0.48779296875}, {"start": 1290.54, "end": 1290.96, "word": " return", "probability": 0.90087890625}, {"start": 1290.96, "end": 1292.7, "word": " shape", "probability": 0.896484375}, {"start": 1292.7, "end": 1295.24, "word": ".describe", "probability": 0.76708984375}, {"start": 1295.24, "end": 1295.68, "word": " and", "probability": 0.64794921875}, {"start": 1295.68, "end": 1295.9, "word": " then", "probability": 0.65625}, {"start": 1295.9, "end": 1296.02, "word": " here", "probability": 0.5673828125}, {"start": 1296.02, "end": 1296.18, "word": " I", "probability": 0.91064453125}, {"start": 1296.18, "end": 1296.3, "word": " tell", "probability": 0.5380859375}, {"start": 1296.3, "end": 1296.4, "word": " him", "probability": 0.88623046875}, {"start": 1296.4, "end": 1296.66, "word": " with", "probability": 0.66552734375}], "temperature": 1.0}, {"id": 51, "seek": 132733, "start": 1299.93, "end": 1327.33, "text": "with border Okay, what did I do? You will say this is the same thing we did No, look with me Because I made a class called border Actually, this border covers the shape It doesn't extend it, it covers it Okay, look with me I have two ways to add new features to any class Subclassing", "tokens": [11820, 7838, 1033, 11, 437, 630, 286, 360, 30, 509, 486, 584, 341, 307, 264, 912, 551, 321, 630, 883, 11, 574, 365, 385, 1436, 286, 1027, 257, 1508, 1219, 7838, 5135, 11, 341, 7838, 10538, 264, 3909, 467, 1177, 380, 10101, 309, 11, 309, 10538, 309, 1033, 11, 574, 365, 385, 286, 362, 732, 2098, 281, 909, 777, 4122, 281, 604, 1508, 8511, 11665, 278], "avg_logprob": -0.49113804635716907, "compression_ratio": 1.5635359116022098, "no_speech_prob": 9.161233901977539e-05, "words": [{"start": 1299.93, "end": 1300.19, "word": "with", "probability": 0.375}, {"start": 1300.19, "end": 1300.55, "word": " border", "probability": 0.80419921875}, {"start": 1300.55, "end": 1301.45, "word": " Okay,", "probability": 0.06634521484375}, {"start": 1301.47, "end": 1301.75, "word": " what", "probability": 0.6669921875}, {"start": 1301.75, "end": 1301.81, "word": " did", "probability": 0.7314453125}, {"start": 1301.81, "end": 1301.81, "word": " I", "probability": 0.93994140625}, {"start": 1301.81, "end": 1302.01, "word": " do?", "probability": 0.94189453125}, {"start": 1302.11, "end": 1302.19, "word": " You", "probability": 0.216552734375}, {"start": 1302.19, "end": 1302.25, "word": " will", "probability": 0.305419921875}, {"start": 1302.25, "end": 1302.43, "word": " say", "probability": 0.59130859375}, {"start": 1302.43, "end": 1302.59, "word": " this", "probability": 0.189208984375}, {"start": 1302.59, "end": 1302.59, "word": " is", "probability": 0.89990234375}, {"start": 1302.59, "end": 1303.27, "word": " the", "probability": 0.6103515625}, {"start": 1303.27, "end": 1303.49, "word": " same", "probability": 0.8837890625}, {"start": 1303.49, "end": 1303.61, "word": " thing", "probability": 0.404296875}, {"start": 1303.61, "end": 1303.69, "word": " we", "probability": 0.386474609375}, {"start": 1303.69, "end": 1304.11, "word": " did", "probability": 0.76025390625}, {"start": 1304.11, "end": 1304.47, "word": " No,", "probability": 0.343994140625}, {"start": 1304.65, "end": 1304.93, "word": " look", "probability": 0.76416015625}, {"start": 1304.93, "end": 1305.09, "word": " with", "probability": 0.431884765625}, {"start": 1305.09, "end": 1305.47, "word": " me", "probability": 0.9677734375}, {"start": 1305.47, "end": 1306.03, "word": " Because", "probability": 0.301025390625}, {"start": 1306.03, "end": 1306.21, "word": " I", "probability": 0.9296875}, {"start": 1306.21, "end": 1306.41, "word": " made", "probability": 0.455810546875}, {"start": 1306.41, "end": 1306.53, "word": " a", "probability": 0.5791015625}, {"start": 1306.53, "end": 1306.83, "word": " class", "probability": 0.93603515625}, {"start": 1306.83, "end": 1308.01, "word": " called", "probability": 0.35498046875}, {"start": 1308.01, "end": 1308.39, "word": " border", "probability": 0.7314453125}, {"start": 1308.39, "end": 1308.89, "word": " Actually,", "probability": 0.42041015625}, {"start": 1309.05, "end": 1309.15, "word": " this", "probability": 0.84814453125}, {"start": 1309.15, "end": 1309.67, "word": " border", "probability": 0.81689453125}, {"start": 1309.67, "end": 1310.27, "word": " covers", "probability": 0.37548828125}, {"start": 1310.27, "end": 1311.71, "word": " the", "probability": 0.65185546875}, {"start": 1311.71, "end": 1311.99, "word": " shape", "probability": 0.904296875}, {"start": 1311.99, "end": 1312.55, "word": " It", "probability": 0.347412109375}, {"start": 1312.55, "end": 1312.67, "word": " doesn't", "probability": 0.724609375}, {"start": 1312.67, "end": 1313.27, "word": " extend", "probability": 0.416015625}, {"start": 1313.27, "end": 1313.87, "word": " it,", "probability": 0.7978515625}, {"start": 1313.87, "end": 1314.55, "word": " it", "probability": 0.84033203125}, {"start": 1314.55, "end": 1314.79, "word": " covers", "probability": 0.7568359375}, {"start": 1314.79, "end": 1315.53, "word": " it", "probability": 0.91162109375}, {"start": 1315.53, "end": 1316.01, "word": " Okay,", "probability": 0.41015625}, {"start": 1316.31, "end": 1316.67, "word": " look", "probability": 0.89990234375}, {"start": 1316.67, "end": 1316.81, "word": " with", "probability": 0.875}, {"start": 1316.81, "end": 1317.11, "word": " me", "probability": 0.9658203125}, {"start": 1317.11, "end": 1320.19, "word": " I", "probability": 0.9619140625}, {"start": 1320.19, "end": 1320.43, "word": " have", "probability": 0.9365234375}, {"start": 1320.43, "end": 1320.97, "word": " two", "probability": 0.810546875}, {"start": 1320.97, "end": 1320.97, "word": " ways", "probability": 0.72802734375}, {"start": 1320.97, "end": 1323.31, "word": " to", "probability": 0.6484375}, {"start": 1323.31, "end": 1323.63, "word": " add", "probability": 0.9228515625}, {"start": 1323.63, "end": 1323.73, "word": " new", "probability": 0.7529296875}, {"start": 1323.73, "end": 1324.11, "word": " features", "probability": 0.300048828125}, {"start": 1324.11, "end": 1324.57, "word": " to", "probability": 0.82275390625}, {"start": 1324.57, "end": 1324.81, "word": " any", "probability": 0.84521484375}, {"start": 1324.81, "end": 1325.61, "word": " class", "probability": 0.95361328125}, {"start": 1325.61, "end": 1327.33, "word": " Subclassing", "probability": 0.76416015625}], "temperature": 1.0}, {"id": 52, "seek": 135647, "start": 1329.93, "end": 1356.47, "text": "If we assume that I have a class that has attributes, these attributes for example, and methods, okay? These are one, two, three, and these methods are one, two, three. I would like to add a new functionality. What does a new functionality mean? It means new attributes, new methods, or modifying old methods. I go and create a new class. What is the goal? Subclassing. Extend, okay?", "tokens": [8031, 321, 6552, 300, 286, 362, 257, 1508, 300, 575, 17212, 11, 613, 17212, 337, 1365, 11, 293, 7150, 11, 1392, 30, 1981, 366, 472, 11, 732, 11, 1045, 11, 293, 613, 7150, 366, 472, 11, 732, 11, 1045, 13, 286, 576, 411, 281, 909, 257, 777, 14980, 13, 708, 775, 257, 777, 14980, 914, 30, 467, 1355, 777, 17212, 11, 777, 7150, 11, 420, 42626, 1331, 7150, 13, 286, 352, 293, 1884, 257, 777, 1508, 13, 708, 307, 264, 3387, 30, 8511, 11665, 278, 13, 9881, 521, 11, 1392, 30], "avg_logprob": -0.4130434831199439, "compression_ratio": 1.8238095238095238, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1329.93, "end": 1330.17, "word": "If", "probability": 0.2169189453125}, {"start": 1330.17, "end": 1330.27, "word": " we", "probability": 0.404052734375}, {"start": 1330.27, "end": 1330.51, "word": " assume", "probability": 0.46435546875}, {"start": 1330.51, "end": 1330.69, "word": " that", "probability": 0.7626953125}, {"start": 1330.69, "end": 1330.83, "word": " I", "probability": 0.8740234375}, {"start": 1330.83, "end": 1331.03, "word": " have", "probability": 0.93017578125}, {"start": 1331.03, "end": 1331.15, "word": " a", "probability": 0.953125}, {"start": 1331.15, "end": 1331.51, "word": " class", "probability": 0.962890625}, {"start": 1331.51, "end": 1332.11, "word": " that", "probability": 0.267578125}, {"start": 1332.11, "end": 1332.27, "word": " has", "probability": 0.72900390625}, {"start": 1332.27, "end": 1333.03, "word": " attributes,", "probability": 0.85693359375}, {"start": 1333.17, "end": 1333.37, "word": " these", "probability": 0.358642578125}, {"start": 1333.37, "end": 1334.05, "word": " attributes", "probability": 0.58251953125}, {"start": 1334.05, "end": 1334.23, "word": " for", "probability": 0.2227783203125}, {"start": 1334.23, "end": 1334.53, "word": " example,", "probability": 0.93994140625}, {"start": 1334.99, "end": 1335.13, "word": " and", "probability": 0.86669921875}, {"start": 1335.13, "end": 1335.67, "word": " methods,", "probability": 0.681640625}, {"start": 1336.11, "end": 1337.23, "word": " okay?", "probability": 0.273681640625}, {"start": 1337.33, "end": 1337.51, "word": " These", "probability": 0.253662109375}, {"start": 1337.51, "end": 1337.59, "word": " are", "probability": 0.58203125}, {"start": 1337.59, "end": 1337.71, "word": " one,", "probability": 0.640625}, {"start": 1337.81, "end": 1337.99, "word": " two,", "probability": 0.93603515625}, {"start": 1338.15, "end": 1338.47, "word": " three,", "probability": 0.87890625}, {"start": 1338.59, "end": 1338.91, "word": " and", "probability": 0.90234375}, {"start": 1338.91, "end": 1339.05, "word": " these", "probability": 0.85205078125}, {"start": 1339.05, "end": 1339.49, "word": " methods", "probability": 0.67626953125}, {"start": 1339.49, "end": 1339.63, "word": " are", "probability": 0.7275390625}, {"start": 1339.63, "end": 1339.77, "word": " one,", "probability": 0.88232421875}, {"start": 1339.93, "end": 1340.17, "word": " two,", "probability": 0.93115234375}, {"start": 1340.91, "end": 1341.37, "word": " three.", "probability": 0.91015625}, {"start": 1341.59, "end": 1341.99, "word": " I", "probability": 0.91796875}, {"start": 1341.99, "end": 1342.19, "word": " would", "probability": 0.370849609375}, {"start": 1342.19, "end": 1342.25, "word": " like", "probability": 0.826171875}, {"start": 1342.25, "end": 1342.33, "word": " to", "probability": 0.96923828125}, {"start": 1342.33, "end": 1342.71, "word": " add", "probability": 0.93212890625}, {"start": 1342.71, "end": 1343.43, "word": " a", "probability": 0.79248046875}, {"start": 1343.43, "end": 1343.43, "word": " new", "probability": 0.90966796875}, {"start": 1343.43, "end": 1343.95, "word": " functionality.", "probability": 0.8955078125}, {"start": 1344.33, "end": 1344.43, "word": " What", "probability": 0.86181640625}, {"start": 1344.43, "end": 1344.53, "word": " does", "probability": 0.65576171875}, {"start": 1344.53, "end": 1344.63, "word": " a", "probability": 0.4169921875}, {"start": 1344.63, "end": 1344.63, "word": " new", "probability": 0.91845703125}, {"start": 1344.63, "end": 1344.99, "word": " functionality", "probability": 0.94091796875}, {"start": 1344.99, "end": 1345.39, "word": " mean?", "probability": 0.94287109375}, {"start": 1345.77, "end": 1345.91, "word": " It", "probability": 0.294677734375}, {"start": 1345.91, "end": 1346.01, "word": " means", "probability": 0.8974609375}, {"start": 1346.01, "end": 1346.07, "word": " new", "probability": 0.64697265625}, {"start": 1346.07, "end": 1346.73, "word": " attributes,", "probability": 0.888671875}, {"start": 1347.49, "end": 1347.55, "word": " new", "probability": 0.63134765625}, {"start": 1347.55, "end": 1347.91, "word": " methods,", "probability": 0.7744140625}, {"start": 1348.31, "end": 1348.45, "word": " or", "probability": 0.94873046875}, {"start": 1348.45, "end": 1348.83, "word": " modifying", "probability": 0.1580810546875}, {"start": 1348.83, "end": 1349.05, "word": " old", "probability": 0.78076171875}, {"start": 1349.05, "end": 1350.21, "word": " methods.", "probability": 0.90869140625}, {"start": 1350.47, "end": 1350.85, "word": " I", "probability": 0.96240234375}, {"start": 1350.85, "end": 1350.99, "word": " go", "probability": 0.61962890625}, {"start": 1350.99, "end": 1351.09, "word": " and", "probability": 0.53076171875}, {"start": 1351.09, "end": 1351.25, "word": " create", "probability": 0.52294921875}, {"start": 1351.25, "end": 1351.35, "word": " a", "probability": 0.99072265625}, {"start": 1351.35, "end": 1351.99, "word": " new", "probability": 0.9130859375}, {"start": 1351.99, "end": 1351.99, "word": " class.", "probability": 0.97021484375}, {"start": 1352.27, "end": 1352.43, "word": " What", "probability": 0.70166015625}, {"start": 1352.43, "end": 1352.43, "word": " is", "probability": 0.65771484375}, {"start": 1352.43, "end": 1352.49, "word": " the", "probability": 0.701171875}, {"start": 1352.49, "end": 1352.55, "word": " goal?", "probability": 0.62451171875}, {"start": 1354.47, "end": 1354.91, "word": " Subclassing.", "probability": 0.84814453125}, {"start": 1355.19, "end": 1355.63, "word": " Extend,", "probability": 0.8818359375}, {"start": 1356.13, "end": 1356.47, "word": " okay?", "probability": 0.74755859375}], "temperature": 1.0}, {"id": 53, "seek": 136951, "start": 1357.71, "end": 1369.51, "text": "I don't write 1,2,3 I write x4 and x5 as new attributes and I don't write 1,2,3 I write 4", "tokens": [40, 500, 380, 2464, 502, 11, 17, 11, 18, 286, 2464, 2031, 19, 293, 2031, 20, 382, 777, 17212, 293, 286, 500, 380, 2464, 502, 11, 17, 11, 18, 286, 2464, 1017], "avg_logprob": -0.36671401515151514, "compression_ratio": 1.390625, "no_speech_prob": 9.179115295410156e-06, "words": [{"start": 1357.71, "end": 1357.93, "word": "I", "probability": 0.552734375}, {"start": 1357.93, "end": 1358.19, "word": " don't", "probability": 0.858642578125}, {"start": 1358.19, "end": 1358.19, "word": " write", "probability": 0.281982421875}, {"start": 1358.19, "end": 1358.53, "word": " 1", "probability": 0.57958984375}, {"start": 1358.53, "end": 1358.81, "word": ",2", "probability": 0.66845703125}, {"start": 1358.81, "end": 1359.19, "word": ",3", "probability": 0.787841796875}, {"start": 1359.19, "end": 1359.99, "word": " I", "probability": 0.298095703125}, {"start": 1359.99, "end": 1360.57, "word": " write", "probability": 0.7607421875}, {"start": 1360.57, "end": 1362.01, "word": " x4", "probability": 0.72314453125}, {"start": 1362.01, "end": 1362.87, "word": " and", "probability": 0.73193359375}, {"start": 1362.87, "end": 1363.47, "word": " x5", "probability": 0.991455078125}, {"start": 1363.47, "end": 1363.97, "word": " as", "probability": 0.30859375}, {"start": 1363.97, "end": 1364.03, "word": " new", "probability": 0.489501953125}, {"start": 1364.03, "end": 1364.65, "word": " attributes", "probability": 0.87841796875}, {"start": 1364.65, "end": 1365.99, "word": " and", "probability": 0.38134765625}, {"start": 1365.99, "end": 1366.09, "word": " I", "probability": 0.7578125}, {"start": 1366.09, "end": 1366.39, "word": " don't", "probability": 0.947509765625}, {"start": 1366.39, "end": 1366.39, "word": " write", "probability": 0.88232421875}, {"start": 1366.39, "end": 1366.63, "word": " 1", "probability": 0.958984375}, {"start": 1366.63, "end": 1366.95, "word": ",2", "probability": 0.94873046875}, {"start": 1366.95, "end": 1367.41, "word": ",3", "probability": 0.966552734375}, {"start": 1367.41, "end": 1368.43, "word": " I", "probability": 0.73095703125}, {"start": 1368.43, "end": 1368.75, "word": " write", "probability": 0.853515625}, {"start": 1368.75, "end": 1369.51, "word": " 4", "probability": 0.55908203125}], "temperature": 1.0}, {"id": 54, "seek": 139801, "start": 1370.67, "end": 1398.01, "text": " and five and if I want to modify one of these I can override it and through it I can claim the super for example or I can change the code in it completely this is in the case of subclasses beautiful and excellent and what makes it special is that you will not rewrite the code in the app as we learned but the problem is that if I have ten classes and I want to add new features to them you have to do x2 to the ten", "tokens": [293, 1732, 293, 498, 286, 528, 281, 16927, 472, 295, 613, 286, 393, 42321, 309, 293, 807, 309, 286, 393, 3932, 264, 1687, 337, 1365, 420, 286, 393, 1319, 264, 3089, 294, 309, 2584, 341, 307, 294, 264, 1389, 295, 1422, 11665, 279, 2238, 293, 7103, 293, 437, 1669, 309, 2121, 307, 300, 291, 486, 406, 28132, 264, 3089, 294, 264, 724, 382, 321, 3264, 457, 264, 1154, 307, 300, 498, 286, 362, 2064, 5359, 293, 286, 528, 281, 909, 777, 4122, 281, 552, 291, 362, 281, 360, 2031, 17, 281, 264, 2064], "avg_logprob": -0.5352393819930705, "compression_ratio": 1.7854077253218885, "no_speech_prob": 4.7326087951660156e-05, "words": [{"start": 1370.67, "end": 1370.87, "word": " and", "probability": 0.333251953125}, {"start": 1370.87, "end": 1371.15, "word": " five", "probability": 0.40869140625}, {"start": 1371.15, "end": 1372.07, "word": " and", "probability": 0.392578125}, {"start": 1372.07, "end": 1372.33, "word": " if", "probability": 0.9326171875}, {"start": 1372.33, "end": 1372.57, "word": " I", "probability": 0.81982421875}, {"start": 1372.57, "end": 1372.93, "word": " want", "probability": 0.6865234375}, {"start": 1372.93, "end": 1373.07, "word": " to", "probability": 0.951171875}, {"start": 1373.07, "end": 1373.41, "word": " modify", "probability": 0.267333984375}, {"start": 1373.41, "end": 1373.87, "word": " one", "probability": 0.775390625}, {"start": 1373.87, "end": 1373.99, "word": " of", "probability": 0.92333984375}, {"start": 1373.99, "end": 1374.39, "word": " these", "probability": 0.412109375}, {"start": 1374.39, "end": 1374.89, "word": " I", "probability": 0.57421875}, {"start": 1374.89, "end": 1375.23, "word": " can", "probability": 0.271728515625}, {"start": 1375.23, "end": 1375.85, "word": " override", "probability": 0.72216796875}, {"start": 1375.85, "end": 1376.23, "word": " it", "probability": 0.80908203125}, {"start": 1376.23, "end": 1377.03, "word": " and", "probability": 0.59619140625}, {"start": 1377.03, "end": 1377.25, "word": " through", "probability": 0.1864013671875}, {"start": 1377.25, "end": 1377.69, "word": " it", "probability": 0.70361328125}, {"start": 1377.69, "end": 1377.75, "word": " I", "probability": 0.7841796875}, {"start": 1377.75, "end": 1377.79, "word": " can", "probability": 0.85791015625}, {"start": 1377.79, "end": 1378.03, "word": " claim", "probability": 0.09326171875}, {"start": 1378.03, "end": 1378.17, "word": " the", "probability": 0.556640625}, {"start": 1378.17, "end": 1378.37, "word": " super", "probability": 0.7861328125}, {"start": 1378.37, "end": 1378.55, "word": " for", "probability": 0.394287109375}, {"start": 1378.55, "end": 1378.77, "word": " example", "probability": 0.9169921875}, {"start": 1378.77, "end": 1379.21, "word": " or", "probability": 0.81103515625}, {"start": 1379.21, "end": 1379.69, "word": " I", "probability": 0.6005859375}, {"start": 1379.69, "end": 1379.69, "word": " can", "probability": 0.5908203125}, {"start": 1379.69, "end": 1379.87, "word": " change", "probability": 0.8251953125}, {"start": 1379.87, "end": 1380.05, "word": " the", "probability": 0.78125}, {"start": 1380.05, "end": 1380.21, "word": " code", "probability": 0.350341796875}, {"start": 1380.21, "end": 1380.63, "word": " in", "probability": 0.259521484375}, {"start": 1380.63, "end": 1380.75, "word": " it", "probability": 0.79150390625}, {"start": 1380.75, "end": 1381.11, "word": " completely", "probability": 0.457275390625}, {"start": 1381.11, "end": 1381.85, "word": " this", "probability": 0.27197265625}, {"start": 1381.85, "end": 1381.97, "word": " is", "probability": 0.69140625}, {"start": 1381.97, "end": 1382.01, "word": " in", "probability": 0.71240234375}, {"start": 1382.01, "end": 1382.11, "word": " the", "probability": 0.5}, {"start": 1382.11, "end": 1382.23, "word": " case", "probability": 0.84130859375}, {"start": 1382.23, "end": 1382.35, "word": " of", "probability": 0.966796875}, {"start": 1382.35, "end": 1384.25, "word": " subclasses", "probability": 0.5585123697916666}, {"start": 1384.25, "end": 1384.95, "word": " beautiful", "probability": 0.19482421875}, {"start": 1384.95, "end": 1385.23, "word": " and", "probability": 0.89013671875}, {"start": 1385.23, "end": 1385.71, "word": " excellent", "probability": 0.6416015625}, {"start": 1385.71, "end": 1385.85, "word": " and", "probability": 0.5859375}, {"start": 1385.85, "end": 1385.97, "word": " what", "probability": 0.306396484375}, {"start": 1385.97, "end": 1386.05, "word": " makes", "probability": 0.35546875}, {"start": 1386.05, "end": 1386.47, "word": " it", "probability": 0.7080078125}, {"start": 1386.47, "end": 1386.47, "word": " special", "probability": 0.57568359375}, {"start": 1386.47, "end": 1386.61, "word": " is", "probability": 0.80517578125}, {"start": 1386.61, "end": 1387.35, "word": " that", "probability": 0.896484375}, {"start": 1387.35, "end": 1387.57, "word": " you", "probability": 0.923828125}, {"start": 1387.57, "end": 1387.85, "word": " will", "probability": 0.5400390625}, {"start": 1387.85, "end": 1387.85, "word": " not", "probability": 0.89111328125}, {"start": 1387.85, "end": 1388.27, "word": " rewrite", "probability": 0.175048828125}, {"start": 1388.27, "end": 1388.89, "word": " the", "probability": 0.87353515625}, {"start": 1388.89, "end": 1389.11, "word": " code", "probability": 0.92138671875}, {"start": 1389.11, "end": 1389.29, "word": " in", "probability": 0.67529296875}, {"start": 1389.29, "end": 1389.39, "word": " the", "probability": 0.77197265625}, {"start": 1389.39, "end": 1389.57, "word": " app", "probability": 0.322998046875}, {"start": 1389.57, "end": 1390.61, "word": " as", "probability": 0.568359375}, {"start": 1390.61, "end": 1390.79, "word": " we", "probability": 0.91943359375}, {"start": 1390.79, "end": 1391.09, "word": " learned", "probability": 0.59619140625}, {"start": 1391.09, "end": 1392.33, "word": " but", "probability": 0.59521484375}, {"start": 1392.33, "end": 1392.45, "word": " the", "probability": 0.7001953125}, {"start": 1392.45, "end": 1392.69, "word": " problem", "probability": 0.82861328125}, {"start": 1392.69, "end": 1392.95, "word": " is", "probability": 0.8935546875}, {"start": 1392.95, "end": 1393.15, "word": " that", "probability": 0.74560546875}, {"start": 1393.15, "end": 1393.23, "word": " if", "probability": 0.8935546875}, {"start": 1393.23, "end": 1393.39, "word": " I", "probability": 0.8955078125}, {"start": 1393.39, "end": 1393.59, "word": " have", "probability": 0.921875}, {"start": 1393.59, "end": 1393.85, "word": " ten", "probability": 0.7275390625}, {"start": 1393.85, "end": 1394.41, "word": " classes", "probability": 0.91064453125}, {"start": 1394.41, "end": 1394.69, "word": " and", "probability": 0.5869140625}, {"start": 1394.69, "end": 1394.79, "word": " I", "probability": 0.7646484375}, {"start": 1394.79, "end": 1394.83, "word": " want", "probability": 0.375244140625}, {"start": 1394.83, "end": 1394.83, "word": " to", "probability": 0.9609375}, {"start": 1394.83, "end": 1394.95, "word": " add", "probability": 0.91650390625}, {"start": 1394.95, "end": 1395.23, "word": " new", "probability": 0.3076171875}, {"start": 1395.23, "end": 1395.67, "word": " features", "probability": 0.3447265625}, {"start": 1395.67, "end": 1395.87, "word": " to", "probability": 0.6787109375}, {"start": 1395.87, "end": 1396.01, "word": " them", "probability": 0.7294921875}, {"start": 1396.01, "end": 1396.89, "word": " you", "probability": 0.3720703125}, {"start": 1396.89, "end": 1397.03, "word": " have", "probability": 0.367919921875}, {"start": 1397.03, "end": 1397.11, "word": " to", "probability": 0.9677734375}, {"start": 1397.11, "end": 1397.29, "word": " do", "probability": 0.5146484375}, {"start": 1397.29, "end": 1397.67, "word": " x2", "probability": 0.62548828125}, {"start": 1397.67, "end": 1397.77, "word": " to", "probability": 0.60986328125}, {"start": 1397.77, "end": 1397.85, "word": " the", "probability": 0.4580078125}, {"start": 1397.85, "end": 1398.01, "word": " ten", "probability": 0.552734375}], "temperature": 1.0}, {"id": 55, "seek": 141100, "start": 1398.82, "end": 1411.0, "text": "The second way is the decorator way. What does it mean? I want to add a new functionality, I don't want to do subclassing, I want to create an object from the old class", "tokens": [2278, 1150, 636, 307, 264, 7919, 1639, 636, 13, 708, 775, 309, 914, 30, 286, 528, 281, 909, 257, 777, 14980, 11, 286, 500, 380, 528, 281, 360, 1422, 11665, 278, 11, 286, 528, 281, 1884, 364, 2657, 490, 264, 1331, 1508], "avg_logprob": -0.5032703211141187, "compression_ratio": 1.3548387096774193, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1398.8200000000002, "end": 1399.18, "word": "The", "probability": 0.50390625}, {"start": 1399.18, "end": 1399.54, "word": " second", "probability": 0.7333984375}, {"start": 1399.54, "end": 1399.54, "word": " way", "probability": 0.587890625}, {"start": 1399.54, "end": 1399.84, "word": " is", "probability": 0.86181640625}, {"start": 1399.84, "end": 1400.32, "word": " the", "probability": 0.393798828125}, {"start": 1400.32, "end": 1400.96, "word": " decorator", "probability": 0.914306640625}, {"start": 1400.96, "end": 1402.68, "word": " way.", "probability": 0.41357421875}, {"start": 1404.3, "end": 1404.34, "word": " What", "probability": 0.1710205078125}, {"start": 1404.34, "end": 1404.66, "word": " does", "probability": 0.59765625}, {"start": 1404.66, "end": 1404.66, "word": " it", "probability": 0.544921875}, {"start": 1404.66, "end": 1404.82, "word": " mean?", "probability": 0.45263671875}, {"start": 1404.96, "end": 1405.14, "word": " I", "probability": 0.274658203125}, {"start": 1405.14, "end": 1405.42, "word": " want", "probability": 0.60693359375}, {"start": 1405.42, "end": 1405.46, "word": " to", "probability": 0.9580078125}, {"start": 1405.46, "end": 1405.62, "word": " add", "probability": 0.9111328125}, {"start": 1405.62, "end": 1405.72, "word": " a", "probability": 0.7080078125}, {"start": 1405.72, "end": 1405.72, "word": " new", "probability": 0.8984375}, {"start": 1405.72, "end": 1406.44, "word": " functionality,", "probability": 0.7265625}, {"start": 1407.62, "end": 1408.7, "word": " I", "probability": 0.39697265625}, {"start": 1408.7, "end": 1408.76, "word": " don't", "probability": 0.65625}, {"start": 1408.76, "end": 1408.9, "word": " want", "probability": 0.450439453125}, {"start": 1408.9, "end": 1408.9, "word": " to", "probability": 0.79638671875}, {"start": 1408.9, "end": 1409.02, "word": " do", "probability": 0.5009765625}, {"start": 1409.02, "end": 1409.7, "word": " subclassing,", "probability": 0.8157552083333334}, {"start": 1409.78, "end": 1409.8, "word": " I", "probability": 0.81298828125}, {"start": 1409.8, "end": 1409.9, "word": " want", "probability": 0.66455078125}, {"start": 1409.9, "end": 1409.9, "word": " to", "probability": 0.9267578125}, {"start": 1409.9, "end": 1410.0, "word": " create", "probability": 0.38134765625}, {"start": 1410.0, "end": 1410.14, "word": " an", "probability": 0.79296875}, {"start": 1410.14, "end": 1410.38, "word": " object", "probability": 0.96875}, {"start": 1410.38, "end": 1410.58, "word": " from", "probability": 0.787109375}, {"start": 1410.58, "end": 1410.68, "word": " the", "probability": 0.82470703125}, {"start": 1410.68, "end": 1410.7, "word": " old", "probability": 0.63720703125}, {"start": 1410.7, "end": 1411.0, "word": " class", "probability": 0.9365234375}], "temperature": 1.0}, {"id": 56, "seek": 143870, "start": 1412.2, "end": 1438.7, "text": "And wrap it with a new object This wrapping puts in new things How for example, let's go back to the same example This class has x x x and has a circle circle circle This is feature 1,2,3 and this is 1,2,3 I would like to add new features, new attributes, new methods, modifications to previous methods Because if we assume that this class is called A", "tokens": [5289, 7019, 309, 365, 257, 777, 2657, 639, 21993, 8137, 294, 777, 721, 1012, 337, 1365, 11, 718, 311, 352, 646, 281, 264, 912, 1365, 639, 1508, 575, 2031, 2031, 2031, 293, 575, 257, 6329, 6329, 6329, 639, 307, 4111, 502, 11, 17, 11, 18, 293, 341, 307, 502, 11, 17, 11, 18, 286, 576, 411, 281, 909, 777, 4122, 11, 777, 17212, 11, 777, 7150, 11, 26881, 281, 3894, 7150, 1436, 498, 321, 6552, 300, 341, 1508, 307, 1219, 316], "avg_logprob": -0.48170732434202984, "compression_ratio": 1.6714285714285715, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1412.2, "end": 1412.44, "word": "And", "probability": 0.25048828125}, {"start": 1412.44, "end": 1412.74, "word": " wrap", "probability": 0.1849365234375}, {"start": 1412.74, "end": 1412.9, "word": " it", "probability": 0.73876953125}, {"start": 1412.9, "end": 1413.0, "word": " with", "probability": 0.76416015625}, {"start": 1413.0, "end": 1413.04, "word": " a", "probability": 0.82958984375}, {"start": 1413.04, "end": 1413.04, "word": " new", "probability": 0.89697265625}, {"start": 1413.04, "end": 1413.36, "word": " object", "probability": 0.94775390625}, {"start": 1413.36, "end": 1414.62, "word": " This", "probability": 0.361083984375}, {"start": 1414.62, "end": 1415.08, "word": " wrapping", "probability": 0.181396484375}, {"start": 1415.08, "end": 1416.5, "word": " puts", "probability": 0.2479248046875}, {"start": 1416.5, "end": 1416.62, "word": " in", "probability": 0.35107421875}, {"start": 1416.62, "end": 1416.7, "word": " new", "probability": 0.66845703125}, {"start": 1416.7, "end": 1417.14, "word": " things", "probability": 0.72998046875}, {"start": 1417.14, "end": 1418.04, "word": " How", "probability": 0.27978515625}, {"start": 1418.04, "end": 1418.22, "word": " for", "probability": 0.35009765625}, {"start": 1418.22, "end": 1418.5, "word": " example,", "probability": 0.93701171875}, {"start": 1418.88, "end": 1418.96, "word": " let's", "probability": 0.6365966796875}, {"start": 1418.96, "end": 1419.12, "word": " go", "probability": 0.63427734375}, {"start": 1419.12, "end": 1419.14, "word": " back", "probability": 0.8603515625}, {"start": 1419.14, "end": 1419.22, "word": " to", "probability": 0.9375}, {"start": 1419.22, "end": 1419.48, "word": " the", "probability": 0.8759765625}, {"start": 1419.48, "end": 1419.48, "word": " same", "probability": 0.76513671875}, {"start": 1419.48, "end": 1419.82, "word": " example", "probability": 0.94580078125}, {"start": 1419.82, "end": 1420.94, "word": " This", "probability": 0.68994140625}, {"start": 1420.94, "end": 1421.52, "word": " class", "probability": 0.595703125}, {"start": 1421.52, "end": 1422.14, "word": " has", "probability": 0.79150390625}, {"start": 1422.14, "end": 1422.48, "word": " x", "probability": 0.626953125}, {"start": 1422.48, "end": 1422.98, "word": " x", "probability": 0.51806640625}, {"start": 1422.98, "end": 1423.36, "word": " x", "probability": 0.92578125}, {"start": 1423.36, "end": 1423.56, "word": " and", "probability": 0.779296875}, {"start": 1423.56, "end": 1423.82, "word": " has", "probability": 0.2486572265625}, {"start": 1423.82, "end": 1423.92, "word": " a", "probability": 0.6875}, {"start": 1423.92, "end": 1424.06, "word": " circle", "probability": 0.83447265625}, {"start": 1424.06, "end": 1424.44, "word": " circle", "probability": 0.6455078125}, {"start": 1424.44, "end": 1424.82, "word": " circle", "probability": 0.8486328125}, {"start": 1424.82, "end": 1425.64, "word": " This", "probability": 0.456298828125}, {"start": 1425.64, "end": 1425.74, "word": " is", "probability": 0.275390625}, {"start": 1425.74, "end": 1426.0, "word": " feature", "probability": 0.50732421875}, {"start": 1426.0, "end": 1426.28, "word": " 1", "probability": 0.49853515625}, {"start": 1426.28, "end": 1426.56, "word": ",2", "probability": 0.5218505859375}, {"start": 1426.56, "end": 1427.0, "word": ",3", "probability": 0.761474609375}, {"start": 1427.0, "end": 1427.26, "word": " and", "probability": 0.76953125}, {"start": 1427.26, "end": 1427.4, "word": " this", "probability": 0.89892578125}, {"start": 1427.4, "end": 1427.48, "word": " is", "probability": 0.88818359375}, {"start": 1427.48, "end": 1427.62, "word": " 1", "probability": 0.8837890625}, {"start": 1427.62, "end": 1428.06, "word": ",2", "probability": 0.97412109375}, {"start": 1428.06, "end": 1429.3, "word": ",3", "probability": 0.92529296875}, {"start": 1429.3, "end": 1429.94, "word": " I", "probability": 0.8876953125}, {"start": 1429.94, "end": 1430.06, "word": " would", "probability": 0.2413330078125}, {"start": 1430.06, "end": 1430.66, "word": " like", "probability": 0.80126953125}, {"start": 1430.66, "end": 1430.72, "word": " to", "probability": 0.962890625}, {"start": 1430.72, "end": 1430.9, "word": " add", "probability": 0.88525390625}, {"start": 1430.9, "end": 1430.98, "word": " new", "probability": 0.85302734375}, {"start": 1430.98, "end": 1431.6, "word": " features,", "probability": 0.70947265625}, {"start": 1431.82, "end": 1431.96, "word": " new", "probability": 0.71337890625}, {"start": 1431.96, "end": 1432.72, "word": " attributes,", "probability": 0.89990234375}, {"start": 1433.3, "end": 1433.32, "word": " new", "probability": 0.728515625}, {"start": 1433.32, "end": 1433.68, "word": " methods,", "probability": 0.75146484375}, {"start": 1434.1, "end": 1434.34, "word": " modifications", "probability": 0.24267578125}, {"start": 1434.34, "end": 1434.52, "word": " to", "probability": 0.6474609375}, {"start": 1434.52, "end": 1435.82, "word": " previous", "probability": 0.67529296875}, {"start": 1435.82, "end": 1435.92, "word": " methods", "probability": 0.90185546875}, {"start": 1435.92, "end": 1436.58, "word": " Because", "probability": 0.314208984375}, {"start": 1436.58, "end": 1436.78, "word": " if", "probability": 0.82421875}, {"start": 1436.78, "end": 1437.16, "word": " we", "probability": 0.943359375}, {"start": 1437.16, "end": 1437.16, "word": " assume", "probability": 0.412841796875}, {"start": 1437.16, "end": 1437.54, "word": " that", "probability": 0.74609375}, {"start": 1437.54, "end": 1437.74, "word": " this", "probability": 0.88720703125}, {"start": 1437.74, "end": 1438.12, "word": " class", "probability": 0.9345703125}, {"start": 1438.12, "end": 1438.24, "word": " is", "probability": 0.58740234375}, {"start": 1438.24, "end": 1438.46, "word": " called", "probability": 0.68701171875}, {"start": 1438.46, "end": 1438.7, "word": " A", "probability": 0.249755859375}], "temperature": 1.0}, {"id": 57, "seek": 146563, "start": 1440.03, "end": 1465.63, "text": "Go and create a new class Inside it, create an object from what? From what? This is an object from this, okay? So, this thing actually contains on x x x one two three, right? And on a circle circle circle one two three This is an object, object from whom? From this class", "tokens": [12104, 293, 1884, 257, 777, 1508, 15123, 309, 11, 1884, 364, 2657, 490, 437, 30, 3358, 437, 30, 639, 307, 364, 2657, 490, 341, 11, 1392, 30, 407, 11, 341, 551, 767, 8306, 322, 2031, 2031, 2031, 472, 732, 1045, 11, 558, 30, 400, 322, 257, 6329, 6329, 6329, 472, 732, 1045, 639, 307, 364, 2657, 11, 2657, 490, 7101, 30, 3358, 341, 1508], "avg_logprob": -0.5524038461538462, "compression_ratio": 1.8187919463087248, "no_speech_prob": 4.231929779052734e-06, "words": [{"start": 1440.03, "end": 1440.67, "word": "Go", "probability": 0.16552734375}, {"start": 1440.67, "end": 1441.19, "word": " and", "probability": 0.47509765625}, {"start": 1441.19, "end": 1441.33, "word": " create", "probability": 0.5126953125}, {"start": 1441.33, "end": 1441.43, "word": " a", "probability": 0.90771484375}, {"start": 1441.43, "end": 1441.99, "word": " new", "probability": 0.8955078125}, {"start": 1441.99, "end": 1442.07, "word": " class", "probability": 0.9365234375}, {"start": 1442.07, "end": 1444.85, "word": " Inside", "probability": 0.1865234375}, {"start": 1444.85, "end": 1445.53, "word": " it,", "probability": 0.417236328125}, {"start": 1445.85, "end": 1446.07, "word": " create", "probability": 0.390380859375}, {"start": 1446.07, "end": 1446.53, "word": " an", "probability": 0.7041015625}, {"start": 1446.53, "end": 1446.53, "word": " object", "probability": 0.9697265625}, {"start": 1446.53, "end": 1446.69, "word": " from", "probability": 0.5517578125}, {"start": 1446.69, "end": 1446.89, "word": " what?", "probability": 0.2340087890625}, {"start": 1448.33, "end": 1448.97, "word": " From", "probability": 0.323974609375}, {"start": 1448.97, "end": 1449.15, "word": " what?", "probability": 0.5615234375}, {"start": 1449.79, "end": 1450.11, "word": " This", "probability": 0.61083984375}, {"start": 1450.11, "end": 1450.15, "word": " is", "probability": 0.51123046875}, {"start": 1450.15, "end": 1450.31, "word": " an", "probability": 0.7626953125}, {"start": 1450.31, "end": 1450.73, "word": " object", "probability": 0.97412109375}, {"start": 1450.73, "end": 1452.13, "word": " from", "probability": 0.6572265625}, {"start": 1452.13, "end": 1452.45, "word": " this,", "probability": 0.78515625}, {"start": 1453.21, "end": 1453.51, "word": " okay?", "probability": 0.324951171875}, {"start": 1453.97, "end": 1454.23, "word": " So,", "probability": 0.423095703125}, {"start": 1454.35, "end": 1454.81, "word": " this", "probability": 0.50244140625}, {"start": 1454.81, "end": 1455.07, "word": " thing", "probability": 0.294921875}, {"start": 1455.07, "end": 1455.11, "word": " actually", "probability": 0.250244140625}, {"start": 1455.11, "end": 1455.45, "word": " contains", "probability": 0.51220703125}, {"start": 1455.45, "end": 1456.35, "word": " on", "probability": 0.310546875}, {"start": 1456.35, "end": 1456.61, "word": " x", "probability": 0.583984375}, {"start": 1456.61, "end": 1456.91, "word": " x", "probability": 0.38671875}, {"start": 1456.91, "end": 1457.27, "word": " x", "probability": 0.9853515625}, {"start": 1457.27, "end": 1457.63, "word": " one", "probability": 0.31982421875}, {"start": 1457.63, "end": 1457.95, "word": " two", "probability": 0.61328125}, {"start": 1457.95, "end": 1458.37, "word": " three,", "probability": 0.74853515625}, {"start": 1458.45, "end": 1458.71, "word": " right?", "probability": 0.8203125}, {"start": 1459.05, "end": 1459.41, "word": " And", "probability": 0.73388671875}, {"start": 1459.41, "end": 1459.55, "word": " on", "probability": 0.8076171875}, {"start": 1459.55, "end": 1459.77, "word": " a", "probability": 0.4951171875}, {"start": 1459.77, "end": 1459.85, "word": " circle", "probability": 0.85791015625}, {"start": 1459.85, "end": 1460.21, "word": " circle", "probability": 0.62158203125}, {"start": 1460.21, "end": 1460.55, "word": " circle", "probability": 0.8173828125}, {"start": 1460.55, "end": 1460.95, "word": " one", "probability": 0.79833984375}, {"start": 1460.95, "end": 1461.35, "word": " two", "probability": 0.912109375}, {"start": 1461.35, "end": 1462.45, "word": " three", "probability": 0.8974609375}, {"start": 1462.45, "end": 1462.61, "word": " This", "probability": 0.479248046875}, {"start": 1462.61, "end": 1462.69, "word": " is", "probability": 0.91552734375}, {"start": 1462.69, "end": 1462.79, "word": " an", "probability": 0.86767578125}, {"start": 1462.79, "end": 1462.99, "word": " object,", "probability": 0.9736328125}, {"start": 1463.07, "end": 1463.33, "word": " object", "probability": 0.59228515625}, {"start": 1463.33, "end": 1463.51, "word": " from", "probability": 0.7578125}, {"start": 1463.51, "end": 1463.71, "word": " whom?", "probability": 0.44970703125}, {"start": 1464.37, "end": 1465.01, "word": " From", "probability": 0.392822265625}, {"start": 1465.01, "end": 1465.23, "word": " this", "probability": 0.93212890625}, {"start": 1465.23, "end": 1465.63, "word": " class", "probability": 0.9541015625}], "temperature": 1.0}, {"id": 58, "seek": 149557, "start": 1466.75, "end": 1495.57, "text": "Okay, did you notice that the class of addition, the client sees it as this? What does addition mean? It is supposed to be as if this includes this with additions. But again, I confirm that this did not extend. So really, I do not see anything inside these. I am from outside, did you notice? This is the class. When I create an object from it, is there a method? No, the client will not see", "tokens": [8297, 11, 630, 291, 3449, 300, 264, 596, 296, 82, 295, 4500, 11, 264, 6423, 8194, 309, 382, 341, 30, 708, 775, 4500, 914, 30, 467, 307, 3442, 281, 312, 382, 498, 341, 5974, 341, 365, 35113, 13, 583, 797, 11, 286, 9064, 300, 341, 630, 406, 10101, 13, 407, 534, 11, 286, 360, 406, 536, 1340, 1854, 613, 13, 286, 669, 490, 2380, 11, 630, 291, 3449, 30, 639, 307, 264, 1508, 13, 1133, 286, 1884, 364, 2657, 490, 309, 11, 307, 456, 257, 3170, 30, 883, 11, 264, 6423, 486, 406, 536], "avg_logprob": -0.46940789222717283, "compression_ratio": 1.7, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 1466.75, "end": 1467.27, "word": "Okay,", "probability": 0.37841796875}, {"start": 1467.61, "end": 1467.91, "word": " did", "probability": 0.278564453125}, {"start": 1467.91, "end": 1467.93, "word": " you", "probability": 0.923828125}, {"start": 1467.93, "end": 1467.93, "word": " notice", "probability": 0.494384765625}, {"start": 1467.93, "end": 1469.05, "word": " that", "probability": 0.80029296875}, {"start": 1469.05, "end": 1470.05, "word": " the", "probability": 0.64697265625}, {"start": 1470.05, "end": 1470.51, "word": " class", "probability": 0.64471435546875}, {"start": 1470.51, "end": 1470.69, "word": " of", "probability": 0.7470703125}, {"start": 1470.69, "end": 1471.03, "word": " addition,", "probability": 0.44775390625}, {"start": 1471.29, "end": 1471.43, "word": " the", "probability": 0.53564453125}, {"start": 1471.43, "end": 1471.97, "word": " client", "probability": 0.65966796875}, {"start": 1471.97, "end": 1473.55, "word": " sees", "probability": 0.51171875}, {"start": 1473.55, "end": 1473.87, "word": " it", "probability": 0.875}, {"start": 1473.87, "end": 1474.03, "word": " as", "probability": 0.73388671875}, {"start": 1474.03, "end": 1474.29, "word": " this?", "probability": 0.5009765625}, {"start": 1474.71, "end": 1475.15, "word": " What", "probability": 0.68310546875}, {"start": 1475.15, "end": 1475.33, "word": " does", "probability": 0.73876953125}, {"start": 1475.33, "end": 1475.71, "word": " addition", "probability": 0.74853515625}, {"start": 1475.71, "end": 1475.71, "word": " mean?", "probability": 0.9296875}, {"start": 1475.97, "end": 1476.09, "word": " It", "probability": 0.75}, {"start": 1476.09, "end": 1476.25, "word": " is", "probability": 0.43212890625}, {"start": 1476.25, "end": 1476.59, "word": " supposed", "probability": 0.7451171875}, {"start": 1476.59, "end": 1477.93, "word": " to", "probability": 0.9091796875}, {"start": 1477.93, "end": 1477.93, "word": " be", "probability": 0.552734375}, {"start": 1477.93, "end": 1478.43, "word": " as", "probability": 0.1536865234375}, {"start": 1478.43, "end": 1478.69, "word": " if", "probability": 0.91650390625}, {"start": 1478.69, "end": 1479.09, "word": " this", "probability": 0.7451171875}, {"start": 1479.09, "end": 1479.71, "word": " includes", "probability": 0.493896484375}, {"start": 1479.71, "end": 1480.21, "word": " this", "probability": 0.7939453125}, {"start": 1480.21, "end": 1481.59, "word": " with", "probability": 0.62841796875}, {"start": 1481.59, "end": 1481.99, "word": " additions.", "probability": 0.5615234375}, {"start": 1482.85, "end": 1483.37, "word": " But", "probability": 0.76171875}, {"start": 1483.37, "end": 1484.27, "word": " again,", "probability": 0.1641845703125}, {"start": 1484.39, "end": 1484.39, "word": " I", "probability": 0.90478515625}, {"start": 1484.39, "end": 1484.73, "word": " confirm", "probability": 0.2763671875}, {"start": 1484.73, "end": 1484.91, "word": " that", "probability": 0.8720703125}, {"start": 1484.91, "end": 1485.09, "word": " this", "probability": 0.8291015625}, {"start": 1485.09, "end": 1485.17, "word": " did", "probability": 0.362060546875}, {"start": 1485.17, "end": 1485.17, "word": " not", "probability": 0.94287109375}, {"start": 1485.17, "end": 1485.85, "word": " extend.", "probability": 0.6484375}, {"start": 1486.59, "end": 1486.83, "word": " So", "probability": 0.2303466796875}, {"start": 1486.83, "end": 1487.21, "word": " really,", "probability": 0.316650390625}, {"start": 1488.29, "end": 1488.53, "word": " I", "probability": 0.98291015625}, {"start": 1488.53, "end": 1488.73, "word": " do", "probability": 0.385009765625}, {"start": 1488.73, "end": 1488.73, "word": " not", "probability": 0.9404296875}, {"start": 1488.73, "end": 1489.11, "word": " see", "probability": 0.91943359375}, {"start": 1489.11, "end": 1489.49, "word": " anything", "probability": 0.81640625}, {"start": 1489.49, "end": 1489.77, "word": " inside", "probability": 0.69384765625}, {"start": 1489.77, "end": 1490.09, "word": " these.", "probability": 0.488525390625}, {"start": 1490.13, "end": 1490.31, "word": " I", "probability": 0.64794921875}, {"start": 1490.31, "end": 1490.31, "word": " am", "probability": 0.54833984375}, {"start": 1490.31, "end": 1490.43, "word": " from", "probability": 0.380615234375}, {"start": 1490.43, "end": 1490.65, "word": " outside,", "probability": 0.654296875}, {"start": 1490.75, "end": 1490.83, "word": " did", "probability": 0.833984375}, {"start": 1490.83, "end": 1491.01, "word": " you", "probability": 0.95556640625}, {"start": 1491.01, "end": 1491.01, "word": " notice?", "probability": 0.76513671875}, {"start": 1491.03, "end": 1491.19, "word": " This", "probability": 0.810546875}, {"start": 1491.19, "end": 1491.27, "word": " is", "probability": 0.92578125}, {"start": 1491.27, "end": 1491.31, "word": " the", "probability": 0.80810546875}, {"start": 1491.31, "end": 1491.63, "word": " class.", "probability": 0.9326171875}, {"start": 1491.73, "end": 1491.85, "word": " When", "probability": 0.82861328125}, {"start": 1491.85, "end": 1491.97, "word": " I", "probability": 0.94384765625}, {"start": 1491.97, "end": 1492.13, "word": " create", "probability": 0.75390625}, {"start": 1492.13, "end": 1492.37, "word": " an", "probability": 0.6640625}, {"start": 1492.37, "end": 1492.63, "word": " object", "probability": 0.9736328125}, {"start": 1492.63, "end": 1492.77, "word": " from", "probability": 0.75390625}, {"start": 1492.77, "end": 1492.77, "word": " it,", "probability": 0.9033203125}, {"start": 1492.93, "end": 1493.11, "word": " is", "probability": 0.51513671875}, {"start": 1493.11, "end": 1493.17, "word": " there", "probability": 0.908203125}, {"start": 1493.17, "end": 1493.23, "word": " a", "probability": 0.8720703125}, {"start": 1493.23, "end": 1493.53, "word": " method?", "probability": 0.96240234375}, {"start": 1494.13, "end": 1494.35, "word": " No,", "probability": 0.89892578125}, {"start": 1494.45, "end": 1494.63, "word": " the", "probability": 0.47509765625}, {"start": 1494.63, "end": 1494.89, "word": " client", "probability": 0.93359375}, {"start": 1494.89, "end": 1495.07, "word": " will", "probability": 0.75634765625}, {"start": 1495.07, "end": 1495.11, "word": " not", "probability": 0.93603515625}, {"start": 1495.11, "end": 1495.57, "word": " see", "probability": 0.89990234375}], "temperature": 1.0}, {"id": 59, "seek": 152429, "start": 1496.37, "end": 1524.29, "text": "Anything else, so he says what are you doing? Now, why am I doing this? Because I want to add new things What are the new things? They are xx which are 4 and 5, they will add new attributes to us, okay? Then you add a new method, put 4 and 5, these are new methods for them But I still have a problem that 1 and 2 and 3, I don't see them from here, right? So he says 1 and 2 and 3, go back and do what?", "tokens": [29647, 825, 1646, 11, 370, 415, 1619, 437, 366, 291, 884, 30, 823, 11, 983, 669, 286, 884, 341, 30, 1436, 286, 528, 281, 909, 777, 721, 708, 366, 264, 777, 721, 30, 814, 366, 2031, 87, 597, 366, 1017, 293, 1025, 11, 436, 486, 909, 777, 17212, 281, 505, 11, 1392, 30, 1396, 291, 909, 257, 777, 3170, 11, 829, 1017, 293, 1025, 11, 613, 366, 777, 7150, 337, 552, 583, 286, 920, 362, 257, 1154, 300, 502, 293, 568, 293, 805, 11, 286, 500, 380, 536, 552, 490, 510, 11, 558, 30, 407, 415, 1619, 502, 293, 568, 293, 805, 11, 352, 646, 293, 360, 437, 30], "avg_logprob": -0.521874982660467, "compression_ratio": 1.7253218884120172, "no_speech_prob": 1.2278556823730469e-05, "words": [{"start": 1496.37, "end": 1496.77, "word": "Anything", "probability": 0.26190185546875}, {"start": 1496.77, "end": 1496.99, "word": " else,", "probability": 0.798828125}, {"start": 1497.05, "end": 1497.13, "word": " so", "probability": 0.43701171875}, {"start": 1497.13, "end": 1497.25, "word": " he", "probability": 0.20947265625}, {"start": 1497.25, "end": 1497.33, "word": " says", "probability": 0.1739501953125}, {"start": 1497.33, "end": 1497.51, "word": " what", "probability": 0.358154296875}, {"start": 1497.51, "end": 1497.69, "word": " are", "probability": 0.4765625}, {"start": 1497.69, "end": 1497.69, "word": " you", "probability": 0.94677734375}, {"start": 1497.69, "end": 1497.91, "word": " doing?", "probability": 0.77294921875}, {"start": 1498.95, "end": 1499.35, "word": " Now,", "probability": 0.460693359375}, {"start": 1500.15, "end": 1500.93, "word": " why", "probability": 0.6875}, {"start": 1500.93, "end": 1500.99, "word": " am", "probability": 0.335693359375}, {"start": 1500.99, "end": 1500.99, "word": " I", "probability": 0.90087890625}, {"start": 1500.99, "end": 1501.25, "word": " doing", "probability": 0.6396484375}, {"start": 1501.25, "end": 1501.51, "word": " this?", "probability": 0.8271484375}, {"start": 1501.53, "end": 1501.67, "word": " Because", "probability": 0.242919921875}, {"start": 1501.67, "end": 1501.79, "word": " I", "probability": 0.6552734375}, {"start": 1501.79, "end": 1501.83, "word": " want", "probability": 0.396728515625}, {"start": 1501.83, "end": 1501.83, "word": " to", "probability": 0.9609375}, {"start": 1501.83, "end": 1501.95, "word": " add", "probability": 0.90087890625}, {"start": 1501.95, "end": 1502.51, "word": " new", "probability": 0.63525390625}, {"start": 1502.51, "end": 1502.51, "word": " things", "probability": 0.6640625}, {"start": 1502.51, "end": 1503.35, "word": " What", "probability": 0.189208984375}, {"start": 1503.35, "end": 1503.41, "word": " are", "probability": 0.70556640625}, {"start": 1503.41, "end": 1503.83, "word": " the", "probability": 0.57080078125}, {"start": 1503.83, "end": 1503.97, "word": " new", "probability": 0.9033203125}, {"start": 1503.97, "end": 1503.97, "word": " things?", "probability": 0.83544921875}, {"start": 1504.51, "end": 1504.63, "word": " They", "probability": 0.325927734375}, {"start": 1504.63, "end": 1504.77, "word": " are", "probability": 0.87841796875}, {"start": 1504.77, "end": 1505.47, "word": " xx", "probability": 0.4398193359375}, {"start": 1505.47, "end": 1505.67, "word": " which", "probability": 0.444091796875}, {"start": 1505.67, "end": 1505.79, "word": " are", "probability": 0.341796875}, {"start": 1505.79, "end": 1506.11, "word": " 4", "probability": 0.640625}, {"start": 1506.11, "end": 1506.77, "word": " and", "probability": 0.88525390625}, {"start": 1506.77, "end": 1506.97, "word": " 5,", "probability": 0.9921875}, {"start": 1507.09, "end": 1507.13, "word": " they", "probability": 0.224853515625}, {"start": 1507.13, "end": 1507.19, "word": " will", "probability": 0.576171875}, {"start": 1507.19, "end": 1507.31, "word": " add", "probability": 0.87255859375}, {"start": 1507.31, "end": 1507.49, "word": " new", "probability": 0.457763671875}, {"start": 1507.49, "end": 1507.99, "word": " attributes", "probability": 0.89794921875}, {"start": 1507.99, "end": 1508.01, "word": " to", "probability": 0.4951171875}, {"start": 1508.01, "end": 1509.25, "word": " us,", "probability": 0.471435546875}, {"start": 1509.29, "end": 1509.61, "word": " okay?", "probability": 0.237548828125}, {"start": 1510.05, "end": 1510.45, "word": " Then", "probability": 0.63671875}, {"start": 1510.45, "end": 1510.65, "word": " you", "probability": 0.28515625}, {"start": 1510.65, "end": 1510.93, "word": " add", "probability": 0.484619140625}, {"start": 1510.93, "end": 1511.03, "word": " a", "probability": 0.6650390625}, {"start": 1511.03, "end": 1511.49, "word": " new", "probability": 0.9052734375}, {"start": 1511.49, "end": 1511.49, "word": " method,", "probability": 0.9345703125}, {"start": 1511.77, "end": 1511.99, "word": " put", "probability": 0.39599609375}, {"start": 1511.99, "end": 1512.25, "word": " 4", "probability": 0.87353515625}, {"start": 1512.25, "end": 1513.73, "word": " and", "probability": 0.92041015625}, {"start": 1513.73, "end": 1513.99, "word": " 5,", "probability": 0.994140625}, {"start": 1514.07, "end": 1514.21, "word": " these", "probability": 0.68017578125}, {"start": 1514.21, "end": 1514.35, "word": " are", "probability": 0.59716796875}, {"start": 1514.35, "end": 1514.45, "word": " new", "probability": 0.33447265625}, {"start": 1514.45, "end": 1514.67, "word": " methods", "probability": 0.91552734375}, {"start": 1514.67, "end": 1514.81, "word": " for", "probability": 0.346923828125}, {"start": 1514.81, "end": 1515.39, "word": " them", "probability": 0.7021484375}, {"start": 1515.39, "end": 1516.71, "word": " But", "probability": 0.4267578125}, {"start": 1516.71, "end": 1516.99, "word": " I", "probability": 0.50341796875}, {"start": 1516.99, "end": 1516.99, "word": " still", "probability": 0.85888671875}, {"start": 1516.99, "end": 1517.17, "word": " have", "probability": 0.93994140625}, {"start": 1517.17, "end": 1517.35, "word": " a", "probability": 0.85009765625}, {"start": 1517.35, "end": 1517.59, "word": " problem", "probability": 0.8466796875}, {"start": 1517.59, "end": 1517.91, "word": " that", "probability": 0.32666015625}, {"start": 1517.91, "end": 1518.15, "word": " 1", "probability": 0.7744140625}, {"start": 1518.15, "end": 1518.31, "word": " and", "probability": 0.6064453125}, {"start": 1518.31, "end": 1518.45, "word": " 2", "probability": 0.99072265625}, {"start": 1518.45, "end": 1518.61, "word": " and", "probability": 0.9375}, {"start": 1518.61, "end": 1518.89, "word": " 3,", "probability": 0.99462890625}, {"start": 1519.95, "end": 1520.15, "word": " I", "probability": 0.96923828125}, {"start": 1520.15, "end": 1520.29, "word": " don't", "probability": 0.738525390625}, {"start": 1520.29, "end": 1520.49, "word": " see", "probability": 0.90771484375}, {"start": 1520.49, "end": 1520.67, "word": " them", "probability": 0.8662109375}, {"start": 1520.67, "end": 1520.77, "word": " from", "probability": 0.7255859375}, {"start": 1520.77, "end": 1520.97, "word": " here,", "probability": 0.818359375}, {"start": 1521.47, "end": 1521.77, "word": " right?", "probability": 0.822265625}, {"start": 1522.01, "end": 1522.23, "word": " So", "probability": 0.84375}, {"start": 1522.23, "end": 1522.35, "word": " he", "probability": 0.74072265625}, {"start": 1522.35, "end": 1522.47, "word": " says", "probability": 0.59375}, {"start": 1522.47, "end": 1522.79, "word": " 1", "probability": 0.6669921875}, {"start": 1522.79, "end": 1523.09, "word": " and", "probability": 0.90869140625}, {"start": 1523.09, "end": 1523.27, "word": " 2", "probability": 0.9892578125}, {"start": 1523.27, "end": 1523.43, "word": " and", "probability": 0.93798828125}, {"start": 1523.43, "end": 1523.65, "word": " 3,", "probability": 0.99609375}, {"start": 1523.79, "end": 1523.91, "word": " go", "probability": 0.58154296875}, {"start": 1523.91, "end": 1524.09, "word": " back", "probability": 0.84375}, {"start": 1524.09, "end": 1524.17, "word": " and", "probability": 0.57666015625}, {"start": 1524.17, "end": 1524.29, "word": " do", "probability": 0.60302734375}, {"start": 1524.29, "end": 1524.29, "word": " what?", "probability": 0.57958984375}], "temperature": 1.0}, {"id": 60, "seek": 155241, "start": 1526.65, "end": 1552.41, "text": " write them again if there are ten methods here you have to write the ten here but what does it do when I call one of the covers one will call one of the objects inside when I call two from here this calls two from here when I call three this calls three from here because my goal is that I have to see this", "tokens": [2464, 552, 797, 498, 456, 366, 2064, 7150, 510, 291, 362, 281, 2464, 264, 2064, 510, 457, 437, 775, 309, 360, 562, 286, 818, 472, 295, 264, 10538, 472, 486, 818, 472, 295, 264, 6565, 1854, 562, 286, 818, 732, 490, 510, 341, 5498, 732, 490, 510, 562, 286, 818, 1045, 341, 5498, 1045, 490, 510, 570, 452, 3387, 307, 300, 286, 362, 281, 536, 341], "avg_logprob": -0.4591884426216581, "compression_ratio": 2.0197368421052633, "no_speech_prob": 1.4543533325195312e-05, "words": [{"start": 1526.65, "end": 1526.93, "word": " write", "probability": 0.146728515625}, {"start": 1526.93, "end": 1527.21, "word": " them", "probability": 0.6591796875}, {"start": 1527.21, "end": 1527.53, "word": " again", "probability": 0.7568359375}, {"start": 1527.53, "end": 1529.49, "word": " if", "probability": 0.4384765625}, {"start": 1529.49, "end": 1529.71, "word": " there", "probability": 0.70361328125}, {"start": 1529.71, "end": 1529.71, "word": " are", "probability": 0.73193359375}, {"start": 1529.71, "end": 1529.99, "word": " ten", "probability": 0.442626953125}, {"start": 1529.99, "end": 1530.33, "word": " methods", "probability": 0.7392578125}, {"start": 1530.33, "end": 1530.65, "word": " here", "probability": 0.64453125}, {"start": 1530.65, "end": 1530.89, "word": " you", "probability": 0.468505859375}, {"start": 1530.89, "end": 1531.01, "word": " have", "probability": 0.351318359375}, {"start": 1531.01, "end": 1531.11, "word": " to", "probability": 0.9658203125}, {"start": 1531.11, "end": 1531.31, "word": " write", "probability": 0.85693359375}, {"start": 1531.31, "end": 1531.43, "word": " the", "probability": 0.3720703125}, {"start": 1531.43, "end": 1531.61, "word": " ten", "probability": 0.67919921875}, {"start": 1531.61, "end": 1532.37, "word": " here", "probability": 0.62841796875}, {"start": 1532.37, "end": 1532.73, "word": " but", "probability": 0.5888671875}, {"start": 1532.73, "end": 1532.97, "word": " what", "probability": 0.7958984375}, {"start": 1532.97, "end": 1533.05, "word": " does", "probability": 0.27978515625}, {"start": 1533.05, "end": 1533.09, "word": " it", "probability": 0.716796875}, {"start": 1533.09, "end": 1533.31, "word": " do", "probability": 0.89013671875}, {"start": 1533.31, "end": 1533.83, "word": " when", "probability": 0.50732421875}, {"start": 1533.83, "end": 1534.03, "word": " I", "probability": 0.63232421875}, {"start": 1534.03, "end": 1534.31, "word": " call", "probability": 0.2430419921875}, {"start": 1534.31, "end": 1534.73, "word": " one", "probability": 0.8271484375}, {"start": 1534.73, "end": 1535.67, "word": " of", "probability": 0.744140625}, {"start": 1535.67, "end": 1535.79, "word": " the", "probability": 0.833984375}, {"start": 1535.79, "end": 1536.21, "word": " covers", "probability": 0.26025390625}, {"start": 1536.21, "end": 1537.41, "word": " one", "probability": 0.52783203125}, {"start": 1537.41, "end": 1537.63, "word": " will", "probability": 0.58740234375}, {"start": 1537.63, "end": 1537.91, "word": " call", "probability": 0.765625}, {"start": 1537.91, "end": 1539.15, "word": " one", "probability": 0.483642578125}, {"start": 1539.15, "end": 1539.35, "word": " of", "probability": 0.77587890625}, {"start": 1539.35, "end": 1539.53, "word": " the", "probability": 0.89794921875}, {"start": 1539.53, "end": 1539.79, "word": " objects", "probability": 0.771484375}, {"start": 1539.79, "end": 1540.17, "word": " inside", "probability": 0.66748046875}, {"start": 1540.17, "end": 1541.29, "word": " when", "probability": 0.7587890625}, {"start": 1541.29, "end": 1541.47, "word": " I", "probability": 0.57568359375}, {"start": 1541.47, "end": 1541.61, "word": " call", "probability": 0.7978515625}, {"start": 1541.61, "end": 1541.97, "word": " two", "probability": 0.892578125}, {"start": 1541.97, "end": 1542.15, "word": " from", "probability": 0.712890625}, {"start": 1542.15, "end": 1542.45, "word": " here", "probability": 0.85498046875}, {"start": 1542.45, "end": 1543.23, "word": " this", "probability": 0.37646484375}, {"start": 1543.23, "end": 1543.53, "word": " calls", "probability": 0.345458984375}, {"start": 1543.53, "end": 1543.85, "word": " two", "probability": 0.744140625}, {"start": 1543.85, "end": 1543.99, "word": " from", "probability": 0.291259765625}, {"start": 1543.99, "end": 1544.21, "word": " here", "probability": 0.82666015625}, {"start": 1544.21, "end": 1544.69, "word": " when", "probability": 0.87646484375}, {"start": 1544.69, "end": 1544.89, "word": " I", "probability": 0.77392578125}, {"start": 1544.89, "end": 1545.03, "word": " call", "probability": 0.86083984375}, {"start": 1545.03, "end": 1545.53, "word": " three", "probability": 0.91357421875}, {"start": 1545.53, "end": 1546.23, "word": " this", "probability": 0.767578125}, {"start": 1546.23, "end": 1546.61, "word": " calls", "probability": 0.76611328125}, {"start": 1546.61, "end": 1546.99, "word": " three", "probability": 0.91845703125}, {"start": 1546.99, "end": 1547.13, "word": " from", "probability": 0.66064453125}, {"start": 1547.13, "end": 1548.11, "word": " here", "probability": 0.84716796875}, {"start": 1548.11, "end": 1549.71, "word": " because", "probability": 0.479736328125}, {"start": 1549.71, "end": 1549.95, "word": " my", "probability": 0.42138671875}, {"start": 1549.95, "end": 1550.25, "word": " goal", "probability": 0.888671875}, {"start": 1550.25, "end": 1550.79, "word": " is", "probability": 0.8955078125}, {"start": 1550.79, "end": 1550.99, "word": " that", "probability": 0.673828125}, {"start": 1550.99, "end": 1551.49, "word": " I", "probability": 0.73095703125}, {"start": 1551.49, "end": 1551.49, "word": " have", "probability": 0.5}, {"start": 1551.49, "end": 1551.85, "word": " to", "probability": 0.97412109375}, {"start": 1551.85, "end": 1552.25, "word": " see", "probability": 0.8896484375}, {"start": 1552.25, "end": 1552.41, "word": " this", "probability": 0.8037109375}], "temperature": 1.0}, {"id": 61, "seek": 157439, "start": 1553.39, "end": 1574.39, "text": "It's like this, but with new features Because if I create an object from this, I will see x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1", "tokens": [3522, 311, 411, 341, 11, 457, 365, 777, 4122, 1436, 498, 286, 1884, 364, 2657, 490, 341, 11, 286, 486, 536, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16], "avg_logprob": -0.13527777353922527, "compression_ratio": 6.0978260869565215, "no_speech_prob": 4.470348358154297e-06, "words": [{"start": 1553.39, "end": 1553.67, "word": "It's", "probability": 0.3245849609375}, {"start": 1553.67, "end": 1553.81, "word": " like", "probability": 0.6474609375}, {"start": 1553.81, "end": 1554.29, "word": " this,", "probability": 0.77978515625}, {"start": 1554.79, "end": 1555.01, "word": " but", "probability": 0.7783203125}, {"start": 1555.01, "end": 1555.15, "word": " with", "probability": 0.8203125}, {"start": 1555.15, "end": 1556.39, "word": " new", "probability": 0.6435546875}, {"start": 1556.39, "end": 1556.39, "word": " features", "probability": 0.31787109375}, {"start": 1556.39, "end": 1557.27, "word": " Because", "probability": 0.1685791015625}, {"start": 1557.27, "end": 1557.43, "word": " if", "probability": 0.8505859375}, {"start": 1557.43, "end": 1557.55, "word": " I", "probability": 0.888671875}, {"start": 1557.55, "end": 1557.79, "word": " create", "probability": 0.79931640625}, {"start": 1557.79, "end": 1557.97, "word": " an", "probability": 0.76025390625}, {"start": 1557.97, "end": 1558.15, "word": " object", "probability": 0.9716796875}, {"start": 1558.15, "end": 1558.37, "word": " from", "probability": 0.6865234375}, {"start": 1558.37, "end": 1558.69, "word": " this,", "probability": 0.7998046875}, {"start": 1559.99, "end": 1560.33, "word": " I", "probability": 0.732421875}, {"start": 1560.33, "end": 1560.43, "word": " will", "probability": 0.54736328125}, {"start": 1560.43, "end": 1560.61, "word": " see", "probability": 0.85107421875}, {"start": 1560.61, "end": 1561.29, "word": " x1", "probability": 0.4129638671875}, {"start": 1561.29, "end": 1561.53, "word": " and", "probability": 0.186279296875}, {"start": 1561.53, "end": 1562.99, "word": " x1", "probability": 0.6490478515625}, {"start": 1562.99, "end": 1563.19, "word": " and", "probability": 0.44091796875}, {"start": 1563.19, "end": 1563.37, "word": " x1", "probability": 0.837890625}, {"start": 1563.37, "end": 1563.49, "word": " and", "probability": 0.76416015625}, {"start": 1563.49, "end": 1563.49, "word": " x1", "probability": 0.731689453125}, {"start": 1563.49, "end": 1563.61, "word": " and", "probability": 0.64599609375}, {"start": 1563.61, "end": 1563.61, "word": " x1", "probability": 0.69189453125}, {"start": 1563.61, "end": 1563.87, "word": " and", "probability": 0.58251953125}, {"start": 1563.87, "end": 1563.87, "word": " x1", "probability": 0.717041015625}, {"start": 1563.87, "end": 1563.89, "word": " and", "probability": 0.61328125}, {"start": 1563.89, "end": 1563.89, "word": " x1", "probability": 0.7607421875}, {"start": 1563.89, "end": 1563.95, "word": " and", "probability": 0.68017578125}, {"start": 1563.95, "end": 1563.95, "word": " x1", "probability": 0.8095703125}, {"start": 1563.95, "end": 1563.95, "word": " and", "probability": 0.73046875}, {"start": 1563.95, "end": 1563.95, "word": " x1", "probability": 0.8544921875}, {"start": 1563.95, "end": 1563.97, "word": " and", "probability": 0.76904296875}, {"start": 1563.97, "end": 1563.97, "word": " x1", "probability": 0.892578125}, {"start": 1563.97, "end": 1564.67, "word": " and", "probability": 0.7939453125}, {"start": 1564.67, "end": 1564.83, "word": " x1", "probability": 0.921630859375}, {"start": 1564.83, "end": 1564.83, "word": " and", "probability": 0.8115234375}, {"start": 1564.83, "end": 1564.93, "word": " x1", "probability": 0.942626953125}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.82421875}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.957275390625}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.837890625}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.968017578125}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.8486328125}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.975341796875}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.85791015625}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.97998046875}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.86572265625}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.9833984375}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.87451171875}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.986328125}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.88232421875}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.988037109375}, {"start": 1564.93, "end": 1565.05, "word": " and", "probability": 0.88818359375}, {"start": 1565.05, "end": 1565.05, "word": " x1", "probability": 0.98974609375}, {"start": 1565.05, "end": 1565.05, "word": " and", "probability": 0.89306640625}, {"start": 1565.05, "end": 1565.05, "word": " x1", "probability": 0.990966796875}, {"start": 1565.05, "end": 1565.05, "word": " and", "probability": 0.89794921875}, {"start": 1565.05, "end": 1565.05, "word": " x1", "probability": 0.991943359375}, {"start": 1565.05, "end": 1565.05, "word": " and", "probability": 0.904296875}, {"start": 1565.05, "end": 1565.05, "word": " x1", "probability": 0.99267578125}, {"start": 1565.05, "end": 1565.41, "word": " and", "probability": 0.9072265625}, {"start": 1565.41, "end": 1565.41, "word": " x1", "probability": 0.9931640625}, {"start": 1565.41, "end": 1565.41, "word": " and", "probability": 0.91162109375}, {"start": 1565.41, "end": 1565.41, "word": " x1", "probability": 0.99365234375}, {"start": 1565.41, "end": 1566.67, "word": " and", "probability": 0.91552734375}, {"start": 1566.67, "end": 1566.67, "word": " x1", "probability": 0.994140625}, {"start": 1566.67, "end": 1566.67, "word": " and", "probability": 0.9189453125}, {"start": 1566.67, "end": 1566.67, "word": " x1", "probability": 0.99462890625}, {"start": 1566.67, "end": 1566.67, "word": " and", "probability": 0.92138671875}, {"start": 1566.67, "end": 1566.67, "word": " x1", "probability": 0.994873046875}, {"start": 1566.67, "end": 1566.67, "word": " and", "probability": 0.92431640625}, {"start": 1566.67, "end": 1566.67, "word": " x1", "probability": 0.994873046875}, {"start": 1566.67, "end": 1568.21, "word": " and", "probability": 0.9267578125}, {"start": 1568.21, "end": 1568.21, "word": " x1", "probability": 0.9951171875}, {"start": 1568.21, "end": 1568.21, "word": " and", "probability": 0.92724609375}, {"start": 1568.21, "end": 1568.21, "word": " x1", "probability": 0.995361328125}, {"start": 1568.21, "end": 1568.57, "word": " and", "probability": 0.93017578125}, {"start": 1568.57, "end": 1568.57, "word": " x1", "probability": 0.995361328125}, {"start": 1568.57, "end": 1568.57, "word": " and", "probability": 0.93115234375}, {"start": 1568.57, "end": 1568.57, "word": " x1", "probability": 0.995361328125}, {"start": 1568.57, "end": 1568.57, "word": " and", "probability": 0.931640625}, {"start": 1568.57, "end": 1568.57, "word": " x1", "probability": 0.995361328125}, {"start": 1568.57, "end": 1568.57, "word": " and", "probability": 0.9326171875}, {"start": 1568.57, "end": 1568.57, "word": " x1", "probability": 0.995361328125}, {"start": 1568.57, "end": 1568.57, "word": " and", "probability": 0.9345703125}, {"start": 1568.57, "end": 1568.57, "word": " x1", "probability": 0.995361328125}, {"start": 1568.57, "end": 1568.61, "word": " and", "probability": 0.9345703125}, {"start": 1568.61, "end": 1568.61, "word": " x1", "probability": 0.995361328125}, {"start": 1568.61, "end": 1568.61, "word": " and", "probability": 0.93603515625}, {"start": 1568.61, "end": 1568.61, "word": " x1", "probability": 0.995361328125}, {"start": 1568.61, "end": 1570.35, "word": " and", "probability": 0.93603515625}, {"start": 1570.35, "end": 1570.47, "word": " x1", "probability": 0.995361328125}, {"start": 1570.47, "end": 1570.67, "word": " and", "probability": 0.93603515625}, {"start": 1570.67, "end": 1570.69, "word": " x1", "probability": 0.995361328125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9365234375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.9951171875}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93701171875}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.9951171875}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.9951171875}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93798828125}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.99462890625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93798828125}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.99462890625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.99462890625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.994140625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93798828125}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.994140625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93798828125}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.993896484375}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93798828125}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.993896484375}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9384765625}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.993408203125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9384765625}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.9931640625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9384765625}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.99267578125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.99267578125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.992431640625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9384765625}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.991943359375}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.99169921875}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9384765625}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.991455078125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.9912109375}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9365234375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.990478515625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.990234375}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93798828125}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.989990234375}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93701171875}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.989501953125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.9892578125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.989013671875}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.98828125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93701171875}, {"start": 1570.69, "end": 1570.75, "word": " x1", "probability": 0.9892578125}, {"start": 1570.75, "end": 1573.87, "word": " and", "probability": 0.9375}, {"start": 1573.87, "end": 1574.39, "word": " x1", "probability": 0.98876953125}], "temperature": 1.0}, {"id": 62, "seek": 160115, "start": 1575.47, "end": 1601.15, "text": "I will see new things, yes I will see 4 and 5, and I will see attributes 4 and 5, this is adding new things to this, using the decorator method, or sometimes we call it wrapper, what is a wrapper? It is a cover, don't you hear the word chicken wrap? Yes, this is a wrapper, a cover, now I added new features, but it has pros and cons", "tokens": [40, 486, 536, 777, 721, 11, 2086, 286, 486, 536, 1017, 293, 1025, 11, 293, 286, 486, 536, 17212, 1017, 293, 1025, 11, 341, 307, 5127, 777, 721, 281, 341, 11, 1228, 264, 7919, 1639, 3170, 11, 420, 2171, 321, 818, 309, 46906, 11, 437, 307, 257, 46906, 30, 467, 307, 257, 2060, 11, 500, 380, 291, 1568, 264, 1349, 4662, 7019, 30, 1079, 11, 341, 307, 257, 46906, 11, 257, 2060, 11, 586, 286, 3869, 777, 4122, 11, 457, 309, 575, 6267, 293, 1014], "avg_logprob": -0.5025435949480811, "compression_ratio": 1.743455497382199, "no_speech_prob": 1.9073486328125e-06, "words": [{"start": 1575.47, "end": 1575.67, "word": "I", "probability": 0.7255859375}, {"start": 1575.67, "end": 1575.73, "word": " will", "probability": 0.58740234375}, {"start": 1575.73, "end": 1575.87, "word": " see", "probability": 0.7060546875}, {"start": 1575.87, "end": 1576.51, "word": " new", "probability": 0.471435546875}, {"start": 1576.51, "end": 1576.59, "word": " things,", "probability": 0.72998046875}, {"start": 1576.79, "end": 1576.89, "word": " yes", "probability": 0.341796875}, {"start": 1576.89, "end": 1577.01, "word": " I", "probability": 0.399169921875}, {"start": 1577.01, "end": 1577.07, "word": " will", "probability": 0.84814453125}, {"start": 1577.07, "end": 1577.19, "word": " see", "probability": 0.8896484375}, {"start": 1577.19, "end": 1577.49, "word": " 4", "probability": 0.5556640625}, {"start": 1577.49, "end": 1578.55, "word": " and", "probability": 0.7900390625}, {"start": 1578.55, "end": 1578.81, "word": " 5,", "probability": 0.9873046875}, {"start": 1578.91, "end": 1579.03, "word": " and", "probability": 0.6689453125}, {"start": 1579.03, "end": 1579.05, "word": " I", "probability": 0.62841796875}, {"start": 1579.05, "end": 1579.11, "word": " will", "probability": 0.86328125}, {"start": 1579.11, "end": 1579.29, "word": " see", "probability": 0.88671875}, {"start": 1579.29, "end": 1579.81, "word": " attributes", "probability": 0.615234375}, {"start": 1579.81, "end": 1580.13, "word": " 4", "probability": 0.92333984375}, {"start": 1580.13, "end": 1580.79, "word": " and", "probability": 0.9404296875}, {"start": 1580.79, "end": 1581.13, "word": " 5,", "probability": 0.99560546875}, {"start": 1581.63, "end": 1582.03, "word": " this", "probability": 0.3232421875}, {"start": 1582.03, "end": 1582.11, "word": " is", "probability": 0.1978759765625}, {"start": 1582.11, "end": 1582.39, "word": " adding", "probability": 0.458740234375}, {"start": 1582.39, "end": 1583.03, "word": " new", "probability": 0.85986328125}, {"start": 1583.03, "end": 1583.25, "word": " things", "probability": 0.8330078125}, {"start": 1583.25, "end": 1584.13, "word": " to", "probability": 0.5986328125}, {"start": 1584.13, "end": 1584.43, "word": " this,", "probability": 0.447021484375}, {"start": 1584.53, "end": 1584.99, "word": " using", "probability": 0.68701171875}, {"start": 1584.99, "end": 1585.79, "word": " the", "probability": 0.66845703125}, {"start": 1585.79, "end": 1586.73, "word": " decorator", "probability": 0.87060546875}, {"start": 1586.73, "end": 1586.73, "word": " method,", "probability": 0.452392578125}, {"start": 1586.83, "end": 1586.99, "word": " or", "probability": 0.744140625}, {"start": 1586.99, "end": 1587.27, "word": " sometimes", "probability": 0.459228515625}, {"start": 1587.27, "end": 1587.27, "word": " we", "probability": 0.7158203125}, {"start": 1587.27, "end": 1587.47, "word": " call", "probability": 0.85595703125}, {"start": 1587.47, "end": 1587.99, "word": " it", "probability": 0.79638671875}, {"start": 1587.99, "end": 1588.29, "word": " wrapper,", "probability": 0.8525390625}, {"start": 1588.69, "end": 1588.83, "word": " what", "probability": 0.7177734375}, {"start": 1588.83, "end": 1588.93, "word": " is", "probability": 0.8408203125}, {"start": 1588.93, "end": 1589.03, "word": " a", "probability": 0.1488037109375}, {"start": 1589.03, "end": 1589.25, "word": " wrapper?", "probability": 0.9248046875}, {"start": 1590.23, "end": 1590.45, "word": " It", "probability": 0.101806640625}, {"start": 1590.45, "end": 1590.45, "word": " is", "probability": 0.5625}, {"start": 1590.45, "end": 1590.45, "word": " a", "probability": 0.83984375}, {"start": 1590.45, "end": 1590.45, "word": " cover,", "probability": 0.5673828125}, {"start": 1590.63, "end": 1590.77, "word": " don't", "probability": 0.6934814453125}, {"start": 1590.77, "end": 1590.93, "word": " you", "probability": 0.88671875}, {"start": 1590.93, "end": 1591.03, "word": " hear", "probability": 0.8759765625}, {"start": 1591.03, "end": 1591.15, "word": " the", "probability": 0.84423828125}, {"start": 1591.15, "end": 1591.33, "word": " word", "probability": 0.8642578125}, {"start": 1591.33, "end": 1591.61, "word": " chicken", "probability": 0.7099609375}, {"start": 1591.61, "end": 1592.01, "word": " wrap?", "probability": 0.84375}, {"start": 1593.61, "end": 1594.05, "word": " Yes,", "probability": 0.12139892578125}, {"start": 1595.43, "end": 1595.69, "word": " this", "probability": 0.724609375}, {"start": 1595.69, "end": 1595.73, "word": " is", "probability": 0.9267578125}, {"start": 1595.73, "end": 1595.79, "word": " a", "probability": 0.78369140625}, {"start": 1595.79, "end": 1595.99, "word": " wrapper,", "probability": 0.90869140625}, {"start": 1596.07, "end": 1596.51, "word": " a", "probability": 0.474853515625}, {"start": 1596.51, "end": 1596.51, "word": " cover,", "probability": 0.94921875}, {"start": 1596.89, "end": 1598.03, "word": " now", "probability": 0.84375}, {"start": 1598.03, "end": 1598.81, "word": " I", "probability": 0.80419921875}, {"start": 1598.81, "end": 1599.05, "word": " added", "probability": 0.81396484375}, {"start": 1599.05, "end": 1599.79, "word": " new", "probability": 0.82470703125}, {"start": 1599.79, "end": 1599.79, "word": " features,", "probability": 0.35107421875}, {"start": 1600.13, "end": 1600.33, "word": " but", "probability": 0.88671875}, {"start": 1600.33, "end": 1600.45, "word": " it", "probability": 0.64501953125}, {"start": 1600.45, "end": 1600.55, "word": " has", "probability": 0.93310546875}, {"start": 1600.55, "end": 1600.75, "word": " pros", "probability": 0.1300048828125}, {"start": 1600.75, "end": 1601.15, "word": " and", "probability": 0.9375}, {"start": 1601.15, "end": 1601.15, "word": " cons", "probability": 0.96826171875}], "temperature": 1.0}, {"id": 63, "seek": 163144, "start": 1602.58, "end": 1631.44, "text": "What are its disadvantages? Notice that I had to rewrite the same methods here with the conversion to the inner object. Here, no, I did not need to write one, two and three. Okay, it overwhelmed us a bit, but the idea that came up is that this cover can be covered by anything, that is, if this is of the type that takes a certain interface I, any object of type I can be placed here.", "tokens": [3748, 366, 1080, 37431, 30, 13428, 300, 286, 632, 281, 28132, 264, 912, 7150, 510, 365, 264, 14298, 281, 264, 7284, 2657, 13, 1692, 11, 572, 11, 286, 630, 406, 643, 281, 2464, 472, 11, 732, 293, 1045, 13, 1033, 11, 309, 19042, 505, 257, 857, 11, 457, 264, 1558, 300, 1361, 493, 307, 300, 341, 2060, 393, 312, 5343, 538, 1340, 11, 300, 307, 11, 498, 341, 307, 295, 264, 2010, 300, 2516, 257, 1629, 9226, 286, 11, 604, 2657, 295, 2010, 286, 393, 312, 7074, 510, 13], "avg_logprob": -0.5201388974984487, "compression_ratio": 1.6551724137931034, "no_speech_prob": 5.364418029785156e-06, "words": [{"start": 1602.58, "end": 1602.88, "word": "What", "probability": 0.2138671875}, {"start": 1602.88, "end": 1602.88, "word": " are", "probability": 0.36376953125}, {"start": 1602.88, "end": 1602.98, "word": " its", "probability": 0.45849609375}, {"start": 1602.98, "end": 1603.28, "word": " disadvantages?", "probability": 0.625}, {"start": 1603.76, "end": 1604.22, "word": " Notice", "probability": 0.61669921875}, {"start": 1604.22, "end": 1604.48, "word": " that", "probability": 0.8671875}, {"start": 1604.48, "end": 1605.58, "word": " I", "probability": 0.30615234375}, {"start": 1605.58, "end": 1605.76, "word": " had", "probability": 0.64306640625}, {"start": 1605.76, "end": 1606.5, "word": " to", "probability": 0.9638671875}, {"start": 1606.5, "end": 1607.92, "word": " rewrite", "probability": 0.413330078125}, {"start": 1607.92, "end": 1608.1, "word": " the", "probability": 0.70166015625}, {"start": 1608.1, "end": 1608.18, "word": " same", "probability": 0.54541015625}, {"start": 1608.18, "end": 1608.18, "word": " methods", "probability": 0.505859375}, {"start": 1608.18, "end": 1608.18, "word": " here", "probability": 0.224853515625}, {"start": 1608.18, "end": 1608.52, "word": " with", "probability": 0.412353515625}, {"start": 1608.52, "end": 1608.72, "word": " the", "probability": 0.64208984375}, {"start": 1608.72, "end": 1609.04, "word": " conversion", "probability": 0.2469482421875}, {"start": 1609.04, "end": 1609.88, "word": " to", "probability": 0.7998046875}, {"start": 1609.88, "end": 1609.96, "word": " the", "probability": 0.79736328125}, {"start": 1609.96, "end": 1610.62, "word": " inner", "probability": 0.58642578125}, {"start": 1610.62, "end": 1610.62, "word": " object.", "probability": 0.92041015625}, {"start": 1611.46, "end": 1611.74, "word": " Here,", "probability": 0.329345703125}, {"start": 1611.86, "end": 1611.94, "word": " no,", "probability": 0.4755859375}, {"start": 1612.06, "end": 1612.2, "word": " I", "probability": 0.96337890625}, {"start": 1612.2, "end": 1612.26, "word": " did", "probability": 0.55078125}, {"start": 1612.26, "end": 1612.26, "word": " not", "probability": 0.94677734375}, {"start": 1612.26, "end": 1612.74, "word": " need", "probability": 0.51953125}, {"start": 1612.74, "end": 1612.94, "word": " to", "probability": 0.9580078125}, {"start": 1612.94, "end": 1613.08, "word": " write", "probability": 0.83935546875}, {"start": 1613.08, "end": 1613.26, "word": " one,", "probability": 0.401611328125}, {"start": 1613.4, "end": 1613.62, "word": " two", "probability": 0.9453125}, {"start": 1613.62, "end": 1614.48, "word": " and", "probability": 0.537109375}, {"start": 1614.48, "end": 1614.84, "word": " three.", "probability": 0.94580078125}, {"start": 1616.12, "end": 1616.58, "word": " Okay,", "probability": 0.38720703125}, {"start": 1617.58, "end": 1617.88, "word": " it", "probability": 0.31298828125}, {"start": 1617.88, "end": 1618.04, "word": " overwhelmed", "probability": 0.47216796875}, {"start": 1618.04, "end": 1618.32, "word": " us", "probability": 0.440673828125}, {"start": 1618.32, "end": 1618.38, "word": " a", "probability": 0.95361328125}, {"start": 1618.38, "end": 1618.58, "word": " bit,", "probability": 0.414794921875}, {"start": 1618.7, "end": 1618.86, "word": " but", "probability": 0.91796875}, {"start": 1618.86, "end": 1618.98, "word": " the", "probability": 0.76416015625}, {"start": 1618.98, "end": 1619.24, "word": " idea", "probability": 0.88525390625}, {"start": 1619.24, "end": 1619.42, "word": " that", "probability": 0.342529296875}, {"start": 1619.42, "end": 1619.6, "word": " came", "probability": 0.40234375}, {"start": 1619.6, "end": 1619.66, "word": " up", "probability": 0.33544921875}, {"start": 1619.66, "end": 1619.74, "word": " is", "probability": 0.60205078125}, {"start": 1619.74, "end": 1619.88, "word": " that", "probability": 0.880859375}, {"start": 1619.88, "end": 1620.34, "word": " this", "probability": 0.83154296875}, {"start": 1620.34, "end": 1620.88, "word": " cover", "probability": 0.2822265625}, {"start": 1620.88, "end": 1622.44, "word": " can", "probability": 0.74755859375}, {"start": 1622.44, "end": 1622.9, "word": " be", "probability": 0.29296875}, {"start": 1622.9, "end": 1623.2, "word": " covered", "probability": 0.39208984375}, {"start": 1623.2, "end": 1623.56, "word": " by", "probability": 0.59912109375}, {"start": 1623.56, "end": 1624.18, "word": " anything,", "probability": 0.8564453125}, {"start": 1625.34, "end": 1625.62, "word": " that", "probability": 0.33642578125}, {"start": 1625.62, "end": 1625.62, "word": " is,", "probability": 0.91943359375}, {"start": 1625.68, "end": 1625.78, "word": " if", "probability": 0.92724609375}, {"start": 1625.78, "end": 1626.02, "word": " this", "probability": 0.6953125}, {"start": 1626.02, "end": 1626.08, "word": " is", "probability": 0.72705078125}, {"start": 1626.08, "end": 1626.14, "word": " of", "probability": 0.58642578125}, {"start": 1626.14, "end": 1626.26, "word": " the", "probability": 0.6865234375}, {"start": 1626.26, "end": 1626.32, "word": " type", "probability": 0.76611328125}, {"start": 1626.32, "end": 1626.5, "word": " that", "probability": 0.68701171875}, {"start": 1626.5, "end": 1626.64, "word": " takes", "probability": 0.263427734375}, {"start": 1626.64, "end": 1626.84, "word": " a", "probability": 0.8173828125}, {"start": 1626.84, "end": 1627.54, "word": " certain", "probability": 0.49267578125}, {"start": 1627.54, "end": 1627.54, "word": " interface", "probability": 0.78759765625}, {"start": 1627.54, "end": 1628.0, "word": " I,", "probability": 0.400390625}, {"start": 1628.84, "end": 1629.2, "word": " any", "probability": 0.73291015625}, {"start": 1629.2, "end": 1629.62, "word": " object", "probability": 0.8828125}, {"start": 1629.62, "end": 1629.74, "word": " of", "probability": 0.955078125}, {"start": 1629.74, "end": 1629.98, "word": " type", "probability": 0.464111328125}, {"start": 1629.98, "end": 1630.36, "word": " I", "probability": 0.974609375}, {"start": 1630.36, "end": 1630.9, "word": " can", "probability": 0.88427734375}, {"start": 1630.9, "end": 1631.0, "word": " be", "probability": 0.64892578125}, {"start": 1631.0, "end": 1631.22, "word": " placed", "probability": 0.60107421875}, {"start": 1631.22, "end": 1631.44, "word": " here.", "probability": 0.8310546875}], "temperature": 1.0}, {"id": 64, "seek": 165984, "start": 1632.84, "end": 1659.84, "text": "So this envelope goes with any object of the type of the interface As if you are making a frame and you change the image inside it Now let's come to our example here We haven't finished this example yet, let's apply it, let's see how it works I actually made a class called border, which is this class What wraps inside it? Object of the type shape", "tokens": [6455, 341, 19989, 1709, 365, 604, 2657, 295, 264, 2010, 295, 264, 9226, 1018, 498, 291, 366, 1455, 257, 3920, 293, 291, 1319, 264, 3256, 1854, 309, 823, 718, 311, 808, 281, 527, 1365, 510, 492, 2378, 380, 4335, 341, 1365, 1939, 11, 718, 311, 3079, 309, 11, 718, 311, 536, 577, 309, 1985, 286, 767, 1027, 257, 1508, 1219, 7838, 11, 597, 307, 341, 1508, 708, 25831, 1854, 309, 30, 24753, 295, 264, 2010, 3909], "avg_logprob": -0.5227272789199631, "compression_ratio": 1.6111111111111112, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 1632.84, "end": 1633.06, "word": "So", "probability": 0.397705078125}, {"start": 1633.06, "end": 1633.5, "word": " this", "probability": 0.441650390625}, {"start": 1633.5, "end": 1633.88, "word": " envelope", "probability": 0.2349853515625}, {"start": 1633.88, "end": 1634.42, "word": " goes", "probability": 0.107666015625}, {"start": 1634.42, "end": 1634.66, "word": " with", "probability": 0.7275390625}, {"start": 1634.66, "end": 1636.44, "word": " any", "probability": 0.56396484375}, {"start": 1636.44, "end": 1636.84, "word": " object", "probability": 0.83935546875}, {"start": 1636.84, "end": 1636.94, "word": " of", "probability": 0.7744140625}, {"start": 1636.94, "end": 1637.06, "word": " the", "probability": 0.339111328125}, {"start": 1637.06, "end": 1637.3, "word": " type", "probability": 0.425048828125}, {"start": 1637.3, "end": 1638.36, "word": " of", "probability": 0.1981201171875}, {"start": 1638.36, "end": 1638.38, "word": " the", "probability": 0.3515625}, {"start": 1638.38, "end": 1638.94, "word": " interface", "probability": 0.74658203125}, {"start": 1638.94, "end": 1639.7, "word": " As", "probability": 0.2333984375}, {"start": 1639.7, "end": 1639.92, "word": " if", "probability": 0.916015625}, {"start": 1639.92, "end": 1640.16, "word": " you", "probability": 0.87451171875}, {"start": 1640.16, "end": 1640.38, "word": " are", "probability": 0.348388671875}, {"start": 1640.38, "end": 1640.38, "word": " making", "probability": 0.6162109375}, {"start": 1640.38, "end": 1640.5, "word": " a", "probability": 0.9345703125}, {"start": 1640.5, "end": 1640.94, "word": " frame", "probability": 0.71826171875}, {"start": 1640.94, "end": 1641.84, "word": " and", "probability": 0.6552734375}, {"start": 1641.84, "end": 1641.94, "word": " you", "probability": 0.350341796875}, {"start": 1641.94, "end": 1642.18, "word": " change", "probability": 0.61669921875}, {"start": 1642.18, "end": 1642.32, "word": " the", "probability": 0.85498046875}, {"start": 1642.32, "end": 1642.6, "word": " image", "probability": 0.466552734375}, {"start": 1642.6, "end": 1643.8, "word": " inside", "probability": 0.62744140625}, {"start": 1643.8, "end": 1644.92, "word": " it", "probability": 0.45361328125}, {"start": 1644.92, "end": 1645.46, "word": " Now", "probability": 0.407470703125}, {"start": 1645.46, "end": 1645.66, "word": " let's", "probability": 0.725341796875}, {"start": 1645.66, "end": 1645.78, "word": " come", "probability": 0.420654296875}, {"start": 1645.78, "end": 1645.92, "word": " to", "probability": 0.7255859375}, {"start": 1645.92, "end": 1646.08, "word": " our", "probability": 0.8115234375}, {"start": 1646.08, "end": 1646.36, "word": " example", "probability": 0.966796875}, {"start": 1646.36, "end": 1646.68, "word": " here", "probability": 0.75}, {"start": 1646.68, "end": 1647.18, "word": " We", "probability": 0.3818359375}, {"start": 1647.18, "end": 1647.64, "word": " haven't", "probability": 0.65673828125}, {"start": 1647.64, "end": 1647.96, "word": " finished", "probability": 0.60498046875}, {"start": 1647.96, "end": 1648.12, "word": " this", "probability": 0.6005859375}, {"start": 1648.12, "end": 1648.38, "word": " example", "probability": 0.95703125}, {"start": 1648.38, "end": 1648.62, "word": " yet,", "probability": 0.82177734375}, {"start": 1648.62, "end": 1648.7, "word": " let's", "probability": 0.732421875}, {"start": 1648.7, "end": 1648.9, "word": " apply", "probability": 0.548828125}, {"start": 1648.9, "end": 1649.0, "word": " it,", "probability": 0.9140625}, {"start": 1649.02, "end": 1649.14, "word": " let's", "probability": 0.863525390625}, {"start": 1649.14, "end": 1649.32, "word": " see", "probability": 0.8974609375}, {"start": 1649.32, "end": 1650.12, "word": " how", "probability": 0.90673828125}, {"start": 1650.12, "end": 1650.24, "word": " it", "probability": 0.86669921875}, {"start": 1650.24, "end": 1650.56, "word": " works", "probability": 0.70947265625}, {"start": 1650.56, "end": 1651.18, "word": " I", "probability": 0.7734375}, {"start": 1651.18, "end": 1651.66, "word": " actually", "probability": 0.615234375}, {"start": 1651.66, "end": 1652.58, "word": " made", "probability": 0.67822265625}, {"start": 1652.58, "end": 1652.72, "word": " a", "probability": 0.96630859375}, {"start": 1652.72, "end": 1653.0, "word": " class", "probability": 0.96142578125}, {"start": 1653.0, "end": 1653.28, "word": " called", "probability": 0.46240234375}, {"start": 1653.28, "end": 1653.7, "word": " border,", "probability": 0.60009765625}, {"start": 1653.96, "end": 1654.0, "word": " which", "probability": 0.7705078125}, {"start": 1654.0, "end": 1654.14, "word": " is", "probability": 0.92822265625}, {"start": 1654.14, "end": 1654.4, "word": " this", "probability": 0.92236328125}, {"start": 1654.4, "end": 1654.92, "word": " class", "probability": 0.95947265625}, {"start": 1654.92, "end": 1655.92, "word": " What", "probability": 0.6357421875}, {"start": 1655.92, "end": 1656.34, "word": " wraps", "probability": 0.250732421875}, {"start": 1656.34, "end": 1656.66, "word": " inside", "probability": 0.69775390625}, {"start": 1656.66, "end": 1658.22, "word": " it?", "probability": 0.71875}, {"start": 1658.74, "end": 1659.26, "word": " Object", "probability": 0.40380859375}, {"start": 1659.26, "end": 1659.42, "word": " of", "probability": 0.791015625}, {"start": 1659.42, "end": 1659.5, "word": " the", "probability": 0.4130859375}, {"start": 1659.5, "end": 1659.56, "word": " type", "probability": 0.58544921875}, {"start": 1659.56, "end": 1659.84, "word": " shape", "probability": 0.8056640625}], "temperature": 1.0}, {"id": 65, "seek": 168878, "start": 1660.84, "end": 1688.78, "text": " So this is the inner object Now, what are the new attributes and classes that I added? I added new attributes which are border-width and border-color This is border-width and border-color This is four and five This is the constructor to send the shape inside Now, this is the method of draw The inner object has a draw", "tokens": [407, 341, 307, 264, 7284, 2657, 823, 11, 437, 366, 264, 777, 17212, 293, 5359, 300, 286, 3869, 30, 286, 3869, 777, 17212, 597, 366, 7838, 12, 21271, 293, 7838, 12, 23851, 639, 307, 7838, 12, 21271, 293, 7838, 12, 23851, 639, 307, 1451, 293, 1732, 639, 307, 264, 47479, 281, 2845, 264, 3909, 1854, 823, 11, 341, 307, 264, 3170, 295, 2642, 440, 7284, 2657, 575, 257, 2642], "avg_logprob": -0.4593749859503337, "compression_ratio": 1.9216867469879517, "no_speech_prob": 1.6689300537109375e-06, "words": [{"start": 1660.84, "end": 1661.12, "word": " So", "probability": 0.0885009765625}, {"start": 1661.12, "end": 1661.38, "word": " this", "probability": 0.5625}, {"start": 1661.38, "end": 1661.54, "word": " is", "probability": 0.88330078125}, {"start": 1661.54, "end": 1661.66, "word": " the", "probability": 0.7763671875}, {"start": 1661.66, "end": 1662.4, "word": " inner", "probability": 0.62841796875}, {"start": 1662.4, "end": 1662.4, "word": " object", "probability": 0.787109375}, {"start": 1662.4, "end": 1664.22, "word": " Now,", "probability": 0.1817626953125}, {"start": 1664.38, "end": 1664.62, "word": " what", "probability": 0.6865234375}, {"start": 1664.62, "end": 1664.64, "word": " are", "probability": 0.364013671875}, {"start": 1664.64, "end": 1664.72, "word": " the", "probability": 0.84033203125}, {"start": 1664.72, "end": 1665.88, "word": " new", "probability": 0.374267578125}, {"start": 1665.88, "end": 1666.22, "word": " attributes", "probability": 0.314453125}, {"start": 1666.22, "end": 1666.5, "word": " and", "probability": 0.6552734375}, {"start": 1666.5, "end": 1667.02, "word": " classes", "probability": 0.8740234375}, {"start": 1667.02, "end": 1667.46, "word": " that", "probability": 0.5712890625}, {"start": 1667.46, "end": 1667.72, "word": " I", "probability": 0.736328125}, {"start": 1667.72, "end": 1667.72, "word": " added?", "probability": 0.6572265625}, {"start": 1668.16, "end": 1668.48, "word": " I", "probability": 0.6748046875}, {"start": 1668.48, "end": 1668.6, "word": " added", "probability": 0.85107421875}, {"start": 1668.6, "end": 1668.7, "word": " new", "probability": 0.43505859375}, {"start": 1668.7, "end": 1669.3, "word": " attributes", "probability": 0.8466796875}, {"start": 1669.3, "end": 1669.46, "word": " which", "probability": 0.2607421875}, {"start": 1669.46, "end": 1669.64, "word": " are", "probability": 0.8759765625}, {"start": 1669.64, "end": 1670.76, "word": " border", "probability": 0.420166015625}, {"start": 1670.76, "end": 1671.02, "word": "-width", "probability": 0.850341796875}, {"start": 1671.02, "end": 1671.18, "word": " and", "probability": 0.8955078125}, {"start": 1671.18, "end": 1671.4, "word": " border", "probability": 0.791015625}, {"start": 1671.4, "end": 1671.7, "word": "-color", "probability": 0.919921875}, {"start": 1671.7, "end": 1673.22, "word": " This", "probability": 0.29345703125}, {"start": 1673.22, "end": 1673.28, "word": " is", "probability": 0.8369140625}, {"start": 1673.28, "end": 1673.5, "word": " border", "probability": 0.82177734375}, {"start": 1673.5, "end": 1673.74, "word": "-width", "probability": 0.968017578125}, {"start": 1673.74, "end": 1673.9, "word": " and", "probability": 0.9296875}, {"start": 1673.9, "end": 1674.08, "word": " border", "probability": 0.66845703125}, {"start": 1674.08, "end": 1674.42, "word": "-color", "probability": 0.951904296875}, {"start": 1674.42, "end": 1676.66, "word": " This", "probability": 0.31591796875}, {"start": 1676.66, "end": 1676.88, "word": " is", "probability": 0.8291015625}, {"start": 1676.88, "end": 1677.22, "word": " four", "probability": 0.310791015625}, {"start": 1677.22, "end": 1677.34, "word": " and", "probability": 0.841796875}, {"start": 1677.34, "end": 1677.64, "word": " five", "probability": 0.76708984375}, {"start": 1677.64, "end": 1679.52, "word": " This", "probability": 0.33642578125}, {"start": 1679.52, "end": 1680.06, "word": " is", "probability": 0.8916015625}, {"start": 1680.06, "end": 1680.3, "word": " the", "probability": 0.49072265625}, {"start": 1680.3, "end": 1680.9, "word": " constructor", "probability": 0.74853515625}, {"start": 1680.9, "end": 1681.92, "word": " to", "probability": 0.302734375}, {"start": 1681.92, "end": 1682.22, "word": " send", "probability": 0.64013671875}, {"start": 1682.22, "end": 1682.5, "word": " the", "probability": 0.69140625}, {"start": 1682.5, "end": 1682.86, "word": " shape", "probability": 0.8828125}, {"start": 1682.86, "end": 1683.16, "word": " inside", "probability": 0.650390625}, {"start": 1683.16, "end": 1684.48, "word": " Now,", "probability": 0.60498046875}, {"start": 1684.64, "end": 1684.98, "word": " this", "probability": 0.92578125}, {"start": 1684.98, "end": 1685.06, "word": " is", "probability": 0.9130859375}, {"start": 1685.06, "end": 1685.28, "word": " the", "probability": 0.326171875}, {"start": 1685.28, "end": 1685.28, "word": " method", "probability": 0.73193359375}, {"start": 1685.28, "end": 1685.4, "word": " of", "probability": 0.66845703125}, {"start": 1685.4, "end": 1685.6, "word": " draw", "probability": 0.6845703125}, {"start": 1685.6, "end": 1687.5, "word": " The", "probability": 0.499267578125}, {"start": 1687.5, "end": 1688.2, "word": " inner", "probability": 0.91943359375}, {"start": 1688.2, "end": 1688.2, "word": " object", "probability": 0.95849609375}, {"start": 1688.2, "end": 1688.48, "word": " has", "probability": 0.82568359375}, {"start": 1688.48, "end": 1688.52, "word": " a", "probability": 0.58984375}, {"start": 1688.52, "end": 1688.78, "word": " draw", "probability": 0.89111328125}], "temperature": 1.0}, {"id": 66, "seek": 171355, "start": 1689.79, "end": 1713.55, "text": "which is for example 1 I am supposed to see the cover as I see the real object so I wrote 1 in the class this is 1 which I wrote in the class this is class 1 but of course through 1 look with me which is right 1 to draw I started shape.draw", "tokens": [13690, 307, 337, 1365, 502, 286, 669, 3442, 281, 536, 264, 2060, 382, 286, 536, 264, 957, 2657, 370, 286, 4114, 502, 294, 264, 1508, 341, 307, 502, 597, 286, 4114, 294, 264, 1508, 341, 307, 1508, 502, 457, 295, 1164, 807, 502, 574, 365, 385, 597, 307, 558, 502, 281, 2642, 286, 1409, 3909, 13, 48848], "avg_logprob": -0.598060347910585, "compression_ratio": 1.6216216216216217, "no_speech_prob": 5.543231964111328e-06, "words": [{"start": 1689.79, "end": 1690.27, "word": "which", "probability": 0.24072265625}, {"start": 1690.27, "end": 1690.45, "word": " is", "probability": 0.751953125}, {"start": 1690.45, "end": 1690.57, "word": " for", "probability": 0.33349609375}, {"start": 1690.57, "end": 1690.85, "word": " example", "probability": 0.8984375}, {"start": 1690.85, "end": 1692.19, "word": " 1", "probability": 0.3955078125}, {"start": 1692.19, "end": 1693.49, "word": " I", "probability": 0.1329345703125}, {"start": 1693.49, "end": 1693.81, "word": " am", "probability": 0.173095703125}, {"start": 1693.81, "end": 1694.05, "word": " supposed", "probability": 0.81298828125}, {"start": 1694.05, "end": 1694.55, "word": " to", "probability": 0.96923828125}, {"start": 1694.55, "end": 1694.89, "word": " see", "probability": 0.576171875}, {"start": 1694.89, "end": 1695.45, "word": " the", "probability": 0.794921875}, {"start": 1695.45, "end": 1695.93, "word": " cover", "probability": 0.362060546875}, {"start": 1695.93, "end": 1696.29, "word": " as", "probability": 0.69580078125}, {"start": 1696.29, "end": 1696.49, "word": " I", "probability": 0.6630859375}, {"start": 1696.49, "end": 1696.87, "word": " see", "probability": 0.86865234375}, {"start": 1696.87, "end": 1697.73, "word": " the", "probability": 0.8974609375}, {"start": 1697.73, "end": 1698.35, "word": " real", "probability": 0.4970703125}, {"start": 1698.35, "end": 1698.35, "word": " object", "probability": 0.9033203125}, {"start": 1698.35, "end": 1699.01, "word": " so", "probability": 0.222412109375}, {"start": 1699.01, "end": 1699.13, "word": " I", "probability": 0.92138671875}, {"start": 1699.13, "end": 1699.69, "word": " wrote", "probability": 0.41845703125}, {"start": 1699.69, "end": 1700.25, "word": " 1", "probability": 0.7021484375}, {"start": 1700.25, "end": 1700.39, "word": " in", "probability": 0.53125}, {"start": 1700.39, "end": 1700.79, "word": " the", "probability": 0.6328125}, {"start": 1700.79, "end": 1701.09, "word": " class", "probability": 0.8798828125}, {"start": 1701.09, "end": 1701.29, "word": " this", "probability": 0.2315673828125}, {"start": 1701.29, "end": 1701.33, "word": " is", "probability": 0.58740234375}, {"start": 1701.33, "end": 1701.69, "word": " 1", "probability": 0.70263671875}, {"start": 1701.69, "end": 1701.95, "word": " which", "probability": 0.3173828125}, {"start": 1701.95, "end": 1702.19, "word": " I", "probability": 0.630859375}, {"start": 1702.19, "end": 1702.45, "word": " wrote", "probability": 0.87255859375}, {"start": 1702.45, "end": 1702.81, "word": " in", "probability": 0.53271484375}, {"start": 1702.81, "end": 1703.63, "word": " the", "probability": 0.7470703125}, {"start": 1703.63, "end": 1703.97, "word": " class", "probability": 0.84716796875}, {"start": 1703.97, "end": 1705.43, "word": " this", "probability": 0.40576171875}, {"start": 1705.43, "end": 1705.51, "word": " is", "probability": 0.7275390625}, {"start": 1705.51, "end": 1705.89, "word": " class", "probability": 0.57080078125}, {"start": 1705.89, "end": 1706.23, "word": " 1", "probability": 0.89404296875}, {"start": 1706.23, "end": 1707.27, "word": " but", "probability": 0.295654296875}, {"start": 1707.27, "end": 1707.47, "word": " of", "probability": 0.492431640625}, {"start": 1707.47, "end": 1707.67, "word": " course", "probability": 0.92041015625}, {"start": 1707.67, "end": 1708.03, "word": " through", "probability": 0.462646484375}, {"start": 1708.03, "end": 1708.61, "word": " 1", "probability": 0.8154296875}, {"start": 1708.61, "end": 1708.91, "word": " look", "probability": 0.173095703125}, {"start": 1708.91, "end": 1709.11, "word": " with", "probability": 0.7265625}, {"start": 1709.11, "end": 1709.39, "word": " me", "probability": 0.9658203125}, {"start": 1709.39, "end": 1709.81, "word": " which", "probability": 0.662109375}, {"start": 1709.81, "end": 1709.89, "word": " is", "probability": 0.92529296875}, {"start": 1709.89, "end": 1710.03, "word": " right", "probability": 0.1319580078125}, {"start": 1710.03, "end": 1710.45, "word": " 1", "probability": 0.55224609375}, {"start": 1710.45, "end": 1711.19, "word": " to", "probability": 0.6533203125}, {"start": 1711.19, "end": 1711.45, "word": " draw", "probability": 0.525390625}, {"start": 1711.45, "end": 1712.25, "word": " I", "probability": 0.80126953125}, {"start": 1712.25, "end": 1712.55, "word": " started", "probability": 0.150390625}, {"start": 1712.55, "end": 1713.05, "word": " shape", "probability": 0.6953125}, {"start": 1713.05, "end": 1713.55, "word": ".draw", "probability": 0.750244140625}], "temperature": 1.0}, {"id": 67, "seek": 174313, "start": 1714.65, "end": 1743.13, "text": "What does it mean? It means that this draw is equivalent to the draw that is in the shape. This is the transformation. And also through describe, the shape is equivalent to the describe. In the past, we used to do super to describe. Okay? But with some changes, which are what I want. That is, when you make a draw, before you implement the draw on your shape, add the adjustments that I want, then make the draw.", "tokens": [3748, 775, 309, 914, 30, 467, 1355, 300, 341, 2642, 307, 10344, 281, 264, 2642, 300, 307, 294, 264, 3909, 13, 639, 307, 264, 9887, 13, 400, 611, 807, 6786, 11, 264, 3909, 307, 10344, 281, 264, 6786, 13, 682, 264, 1791, 11, 321, 1143, 281, 360, 1687, 281, 6786, 13, 1033, 30, 583, 365, 512, 2962, 11, 597, 366, 437, 286, 528, 13, 663, 307, 11, 562, 291, 652, 257, 2642, 11, 949, 291, 4445, 264, 2642, 322, 428, 3909, 11, 909, 264, 18624, 300, 286, 528, 11, 550, 652, 264, 2642, 13], "avg_logprob": -0.5615131591495715, "compression_ratio": 1.8034934497816595, "no_speech_prob": 3.6954879760742188e-06, "words": [{"start": 1714.65, "end": 1714.93, "word": "What", "probability": 0.19775390625}, {"start": 1714.93, "end": 1715.13, "word": " does", "probability": 0.78857421875}, {"start": 1715.13, "end": 1715.21, "word": " it", "probability": 0.52978515625}, {"start": 1715.21, "end": 1715.21, "word": " mean?", "probability": 0.95947265625}, {"start": 1715.49, "end": 1715.87, "word": " It", "probability": 0.462158203125}, {"start": 1715.87, "end": 1715.87, "word": " means", "probability": 0.90234375}, {"start": 1715.87, "end": 1716.15, "word": " that", "probability": 0.6123046875}, {"start": 1716.15, "end": 1716.21, "word": " this", "probability": 0.56005859375}, {"start": 1716.21, "end": 1716.53, "word": " draw", "probability": 0.287353515625}, {"start": 1716.53, "end": 1716.85, "word": " is", "probability": 0.2032470703125}, {"start": 1716.85, "end": 1717.13, "word": " equivalent", "probability": 0.336669921875}, {"start": 1717.13, "end": 1717.79, "word": " to", "probability": 0.91796875}, {"start": 1717.79, "end": 1718.05, "word": " the", "probability": 0.66162109375}, {"start": 1718.05, "end": 1718.39, "word": " draw", "probability": 0.422119140625}, {"start": 1718.39, "end": 1718.59, "word": " that", "probability": 0.271240234375}, {"start": 1718.59, "end": 1718.73, "word": " is", "probability": 0.4814453125}, {"start": 1718.73, "end": 1719.07, "word": " in", "probability": 0.281005859375}, {"start": 1719.07, "end": 1720.15, "word": " the", "probability": 0.470703125}, {"start": 1720.15, "end": 1720.39, "word": " shape.", "probability": 0.9267578125}, {"start": 1720.85, "end": 1721.29, "word": " This", "probability": 0.59814453125}, {"start": 1721.29, "end": 1721.35, "word": " is", "probability": 0.884765625}, {"start": 1721.35, "end": 1721.45, "word": " the", "probability": 0.4794921875}, {"start": 1721.45, "end": 1721.73, "word": " transformation.", "probability": 0.509765625}, {"start": 1723.03, "end": 1723.09, "word": " And", "probability": 0.458251953125}, {"start": 1723.09, "end": 1723.95, "word": " also", "probability": 0.469482421875}, {"start": 1723.95, "end": 1724.31, "word": " through", "probability": 0.60009765625}, {"start": 1724.31, "end": 1725.03, "word": " describe,", "probability": 0.3037109375}, {"start": 1726.53, "end": 1726.65, "word": " the", "probability": 0.39697265625}, {"start": 1726.65, "end": 1727.35, "word": " shape", "probability": 0.6650390625}, {"start": 1727.35, "end": 1727.39, "word": " is", "probability": 0.433837890625}, {"start": 1727.39, "end": 1727.39, "word": " equivalent", "probability": 0.70166015625}, {"start": 1727.39, "end": 1727.51, "word": " to", "probability": 0.953125}, {"start": 1727.51, "end": 1727.61, "word": " the", "probability": 0.673828125}, {"start": 1727.61, "end": 1727.87, "word": " describe.", "probability": 0.18994140625}, {"start": 1727.95, "end": 1728.03, "word": " In", "probability": 0.444091796875}, {"start": 1728.03, "end": 1728.09, "word": " the", "probability": 0.89111328125}, {"start": 1728.09, "end": 1728.15, "word": " past,", "probability": 0.79150390625}, {"start": 1728.27, "end": 1728.41, "word": " we", "probability": 0.86474609375}, {"start": 1728.41, "end": 1728.41, "word": " used", "probability": 0.5205078125}, {"start": 1728.41, "end": 1728.41, "word": " to", "probability": 0.94580078125}, {"start": 1728.41, "end": 1728.49, "word": " do", "probability": 0.311279296875}, {"start": 1728.49, "end": 1728.85, "word": " super", "probability": 0.60546875}, {"start": 1728.85, "end": 1729.03, "word": " to", "probability": 0.3505859375}, {"start": 1729.03, "end": 1729.39, "word": " describe.", "probability": 0.86767578125}, {"start": 1731.51, "end": 1731.81, "word": " Okay?", "probability": 0.28173828125}, {"start": 1732.53, "end": 1732.77, "word": " But", "probability": 0.80517578125}, {"start": 1732.77, "end": 1732.97, "word": " with", "probability": 0.64501953125}, {"start": 1732.97, "end": 1733.25, "word": " some", "probability": 0.84033203125}, {"start": 1733.25, "end": 1734.13, "word": " changes,", "probability": 0.6533203125}, {"start": 1734.29, "end": 1734.41, "word": " which", "probability": 0.607421875}, {"start": 1734.41, "end": 1734.51, "word": " are", "probability": 0.391845703125}, {"start": 1734.51, "end": 1734.57, "word": " what", "probability": 0.53759765625}, {"start": 1734.57, "end": 1734.69, "word": " I", "probability": 0.94287109375}, {"start": 1734.69, "end": 1734.91, "word": " want.", "probability": 0.80419921875}, {"start": 1736.21, "end": 1736.65, "word": " That", "probability": 0.1910400390625}, {"start": 1736.65, "end": 1736.65, "word": " is,", "probability": 0.7265625}, {"start": 1736.71, "end": 1736.83, "word": " when", "probability": 0.69677734375}, {"start": 1736.83, "end": 1736.99, "word": " you", "probability": 0.8486328125}, {"start": 1736.99, "end": 1737.21, "word": " make", "probability": 0.08465576171875}, {"start": 1737.21, "end": 1737.35, "word": " a", "probability": 0.90673828125}, {"start": 1737.35, "end": 1737.55, "word": " draw,", "probability": 0.7861328125}, {"start": 1737.89, "end": 1738.25, "word": " before", "probability": 0.8603515625}, {"start": 1738.25, "end": 1738.45, "word": " you", "probability": 0.487060546875}, {"start": 1738.45, "end": 1738.75, "word": " implement", "probability": 0.28173828125}, {"start": 1738.75, "end": 1738.89, "word": " the", "probability": 0.4140625}, {"start": 1738.89, "end": 1739.05, "word": " draw", "probability": 0.52880859375}, {"start": 1739.05, "end": 1739.25, "word": " on", "probability": 0.381103515625}, {"start": 1739.25, "end": 1739.37, "word": " your", "probability": 0.76953125}, {"start": 1739.37, "end": 1739.63, "word": " shape,", "probability": 0.79541015625}, {"start": 1740.81, "end": 1741.09, "word": " add", "probability": 0.595703125}, {"start": 1741.09, "end": 1741.27, "word": " the", "probability": 0.8583984375}, {"start": 1741.27, "end": 1741.53, "word": " adjustments", "probability": 0.68017578125}, {"start": 1741.53, "end": 1741.73, "word": " that", "probability": 0.767578125}, {"start": 1741.73, "end": 1741.83, "word": " I", "probability": 0.94677734375}, {"start": 1741.83, "end": 1742.09, "word": " want,", "probability": 0.85546875}, {"start": 1742.29, "end": 1742.53, "word": " then", "probability": 0.53173828125}, {"start": 1742.53, "end": 1742.81, "word": " make", "probability": 0.61083984375}, {"start": 1742.81, "end": 1742.93, "word": " the", "probability": 0.54541015625}, {"start": 1742.93, "end": 1743.13, "word": " draw.", "probability": 0.869140625}], "temperature": 1.0}, {"id": 68, "seek": 176977, "start": 1744.89, "end": 1769.77, "text": "Describe is the same thing. I want to make a shape and describe it and add whatever I want to it. How many classes did I make? One class takes shape. Let's take advantage of it. Go to the frame that I have. Before I had to make circle with border and rectangle with border. Did you notice? All you have to do is to make an object from circle, the basic class.", "tokens": [29543, 8056, 307, 264, 912, 551, 13, 286, 528, 281, 652, 257, 3909, 293, 6786, 309, 293, 909, 2035, 286, 528, 281, 309, 13, 1012, 867, 5359, 630, 286, 652, 30, 1485, 1508, 2516, 3909, 13, 961, 311, 747, 5002, 295, 309, 13, 1037, 281, 264, 3920, 300, 286, 362, 13, 4546, 286, 632, 281, 652, 6329, 365, 7838, 293, 21930, 365, 7838, 13, 2589, 291, 3449, 30, 1057, 291, 362, 281, 360, 307, 281, 652, 364, 2657, 490, 6329, 11, 264, 3875, 1508, 13], "avg_logprob": -0.4487645210221756, "compression_ratio": 1.669767441860465, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1744.8899999999999, "end": 1745.37, "word": "Describe", "probability": 0.841796875}, {"start": 1745.37, "end": 1745.49, "word": " is", "probability": 0.84814453125}, {"start": 1745.49, "end": 1745.67, "word": " the", "probability": 0.70361328125}, {"start": 1745.67, "end": 1745.67, "word": " same", "probability": 0.9072265625}, {"start": 1745.67, "end": 1746.07, "word": " thing.", "probability": 0.61083984375}, {"start": 1746.93, "end": 1747.41, "word": " I", "probability": 0.67578125}, {"start": 1747.41, "end": 1747.51, "word": " want", "probability": 0.494384765625}, {"start": 1747.51, "end": 1747.75, "word": " to", "probability": 0.94921875}, {"start": 1747.75, "end": 1747.89, "word": " make", "probability": 0.46923828125}, {"start": 1747.89, "end": 1748.03, "word": " a", "probability": 0.78076171875}, {"start": 1748.03, "end": 1748.19, "word": " shape", "probability": 0.80517578125}, {"start": 1748.19, "end": 1749.17, "word": " and", "probability": 0.135498046875}, {"start": 1749.17, "end": 1750.11, "word": " describe", "probability": 0.1610107421875}, {"start": 1750.11, "end": 1750.33, "word": " it", "probability": 0.765625}, {"start": 1750.33, "end": 1750.33, "word": " and", "probability": 0.27099609375}, {"start": 1750.33, "end": 1750.49, "word": " add", "probability": 0.6748046875}, {"start": 1750.49, "end": 1750.69, "word": " whatever", "probability": 0.34814453125}, {"start": 1750.69, "end": 1751.77, "word": " I", "probability": 0.427978515625}, {"start": 1751.77, "end": 1752.03, "word": " want", "probability": 0.732421875}, {"start": 1752.03, "end": 1752.03, "word": " to", "probability": 0.51953125}, {"start": 1752.03, "end": 1752.25, "word": " it.", "probability": 0.82470703125}, {"start": 1753.61, "end": 1754.09, "word": " How", "probability": 0.28759765625}, {"start": 1754.09, "end": 1754.35, "word": " many", "probability": 0.88330078125}, {"start": 1754.35, "end": 1754.59, "word": " classes", "probability": 0.7109375}, {"start": 1754.59, "end": 1754.65, "word": " did", "probability": 0.5751953125}, {"start": 1754.65, "end": 1754.65, "word": " I", "probability": 0.97216796875}, {"start": 1754.65, "end": 1754.87, "word": " make?", "probability": 0.55712890625}, {"start": 1755.19, "end": 1755.67, "word": " One", "probability": 0.4853515625}, {"start": 1755.67, "end": 1756.13, "word": " class", "probability": 0.8818359375}, {"start": 1756.13, "end": 1756.47, "word": " takes", "probability": 0.40234375}, {"start": 1756.47, "end": 1756.75, "word": " shape.", "probability": 0.6005859375}, {"start": 1756.91, "end": 1757.19, "word": " Let's", "probability": 0.77587890625}, {"start": 1757.19, "end": 1757.93, "word": " take", "probability": 0.26123046875}, {"start": 1757.93, "end": 1758.13, "word": " advantage", "probability": 0.76708984375}, {"start": 1758.13, "end": 1758.27, "word": " of", "probability": 0.91552734375}, {"start": 1758.27, "end": 1758.37, "word": " it.", "probability": 0.65673828125}, {"start": 1758.43, "end": 1758.61, "word": " Go", "probability": 0.5947265625}, {"start": 1758.61, "end": 1758.71, "word": " to", "probability": 0.91943359375}, {"start": 1758.71, "end": 1758.81, "word": " the", "probability": 0.6748046875}, {"start": 1758.81, "end": 1759.09, "word": " frame", "probability": 0.77685546875}, {"start": 1759.09, "end": 1759.87, "word": " that", "probability": 0.3232421875}, {"start": 1759.87, "end": 1760.09, "word": " I", "probability": 0.96484375}, {"start": 1760.09, "end": 1760.19, "word": " have.", "probability": 0.8671875}, {"start": 1761.73, "end": 1762.21, "word": " Before", "probability": 0.389892578125}, {"start": 1762.21, "end": 1762.45, "word": " I", "probability": 0.5390625}, {"start": 1762.45, "end": 1762.55, "word": " had", "probability": 0.8115234375}, {"start": 1762.55, "end": 1762.89, "word": " to", "probability": 0.96533203125}, {"start": 1762.89, "end": 1763.15, "word": " make", "probability": 0.7060546875}, {"start": 1763.15, "end": 1763.51, "word": " circle", "probability": 0.472412109375}, {"start": 1763.51, "end": 1763.69, "word": " with", "probability": 0.8701171875}, {"start": 1763.69, "end": 1764.01, "word": " border", "probability": 0.7998046875}, {"start": 1764.01, "end": 1764.19, "word": " and", "probability": 0.77490234375}, {"start": 1764.19, "end": 1764.49, "word": " rectangle", "probability": 0.93798828125}, {"start": 1764.49, "end": 1764.77, "word": " with", "probability": 0.91162109375}, {"start": 1764.77, "end": 1765.11, "word": " border.", "probability": 0.84228515625}, {"start": 1766.25, "end": 1766.41, "word": " Did", "probability": 0.56787109375}, {"start": 1766.41, "end": 1766.45, "word": " you", "probability": 0.966796875}, {"start": 1766.45, "end": 1766.71, "word": " notice?", "probability": 0.218994140625}, {"start": 1766.89, "end": 1767.09, "word": " All", "probability": 0.7861328125}, {"start": 1767.09, "end": 1767.41, "word": " you", "probability": 0.9326171875}, {"start": 1767.41, "end": 1767.47, "word": " have", "probability": 0.82275390625}, {"start": 1767.47, "end": 1767.51, "word": " to", "probability": 0.970703125}, {"start": 1767.51, "end": 1767.75, "word": " do", "probability": 0.9541015625}, {"start": 1767.75, "end": 1768.01, "word": " is", "probability": 0.921875}, {"start": 1768.01, "end": 1768.11, "word": " to", "probability": 0.392822265625}, {"start": 1768.11, "end": 1768.37, "word": " make", "probability": 0.7958984375}, {"start": 1768.37, "end": 1768.55, "word": " an", "probability": 0.74462890625}, {"start": 1768.55, "end": 1768.73, "word": " object", "probability": 0.947265625}, {"start": 1768.73, "end": 1768.97, "word": " from", "probability": 0.6982421875}, {"start": 1768.97, "end": 1769.33, "word": " circle,", "probability": 0.478759765625}, {"start": 1769.43, "end": 1769.51, "word": " the", "probability": 0.79638671875}, {"start": 1769.51, "end": 1769.51, "word": " basic", "probability": 0.381591796875}, {"start": 1769.51, "end": 1769.77, "word": " class.", "probability": 0.90576171875}], "temperature": 1.0}, {"id": 69, "seek": 178898, "start": 1771.2, "end": 1788.98, "text": " With me or not guys? Because this basic class we want to add a border to it All you have to do is to create an object from border B that is equal to new border And what happens to the minus sign? The C will accept the C because C is a shape", "tokens": [2022, 385, 420, 406, 1074, 30, 1436, 341, 3875, 1508, 321, 528, 281, 909, 257, 7838, 281, 309, 1057, 291, 362, 281, 360, 307, 281, 1884, 364, 2657, 490, 7838, 363, 300, 307, 2681, 281, 777, 7838, 400, 437, 2314, 281, 264, 3175, 1465, 30, 440, 383, 486, 3241, 264, 383, 570, 383, 307, 257, 3909], "avg_logprob": -0.5981359816434091, "compression_ratio": 1.50625, "no_speech_prob": 9.119510650634766e-06, "words": [{"start": 1771.2, "end": 1771.42, "word": " With", "probability": 0.04901123046875}, {"start": 1771.42, "end": 1771.54, "word": " me", "probability": 0.93798828125}, {"start": 1771.54, "end": 1771.64, "word": " or", "probability": 0.814453125}, {"start": 1771.64, "end": 1771.8, "word": " not", "probability": 0.875}, {"start": 1771.8, "end": 1772.14, "word": " guys?", "probability": 0.4130859375}, {"start": 1772.56, "end": 1772.88, "word": " Because", "probability": 0.440673828125}, {"start": 1772.88, "end": 1773.12, "word": " this", "probability": 0.60546875}, {"start": 1773.12, "end": 1773.24, "word": " basic", "probability": 0.2344970703125}, {"start": 1773.24, "end": 1773.96, "word": " class", "probability": 0.87451171875}, {"start": 1773.96, "end": 1774.6, "word": " we", "probability": 0.261962890625}, {"start": 1774.6, "end": 1775.18, "word": " want", "probability": 0.64990234375}, {"start": 1775.18, "end": 1775.4, "word": " to", "probability": 0.951171875}, {"start": 1775.4, "end": 1775.64, "word": " add", "probability": 0.5595703125}, {"start": 1775.64, "end": 1775.86, "word": " a", "probability": 0.385498046875}, {"start": 1775.86, "end": 1776.08, "word": " border", "probability": 0.84130859375}, {"start": 1776.08, "end": 1776.28, "word": " to", "probability": 0.60498046875}, {"start": 1776.28, "end": 1776.52, "word": " it", "probability": 0.837890625}, {"start": 1776.52, "end": 1776.98, "word": " All", "probability": 0.395751953125}, {"start": 1776.98, "end": 1777.12, "word": " you", "probability": 0.833984375}, {"start": 1777.12, "end": 1777.22, "word": " have", "probability": 0.666015625}, {"start": 1777.22, "end": 1777.34, "word": " to", "probability": 0.97021484375}, {"start": 1777.34, "end": 1777.64, "word": " do", "probability": 0.95947265625}, {"start": 1777.64, "end": 1778.04, "word": " is", "probability": 0.83642578125}, {"start": 1778.04, "end": 1778.08, "word": " to", "probability": 0.2724609375}, {"start": 1778.08, "end": 1778.26, "word": " create", "probability": 0.461181640625}, {"start": 1778.26, "end": 1778.38, "word": " an", "probability": 0.58251953125}, {"start": 1778.38, "end": 1778.64, "word": " object", "probability": 0.95654296875}, {"start": 1778.64, "end": 1778.82, "word": " from", "probability": 0.66796875}, {"start": 1778.82, "end": 1779.2, "word": " border", "probability": 0.75244140625}, {"start": 1779.2, "end": 1779.58, "word": " B", "probability": 0.5400390625}, {"start": 1779.58, "end": 1780.26, "word": " that", "probability": 0.25390625}, {"start": 1780.26, "end": 1780.28, "word": " is", "probability": 0.3828125}, {"start": 1780.28, "end": 1780.42, "word": " equal", "probability": 0.7373046875}, {"start": 1780.42, "end": 1780.5, "word": " to", "probability": 0.96923828125}, {"start": 1780.5, "end": 1780.84, "word": " new", "probability": 0.751953125}, {"start": 1780.84, "end": 1782.24, "word": " border", "probability": 0.7587890625}, {"start": 1782.24, "end": 1783.08, "word": " And", "probability": 0.587890625}, {"start": 1783.08, "end": 1783.3, "word": " what", "probability": 0.822265625}, {"start": 1783.3, "end": 1783.64, "word": " happens", "probability": 0.0718994140625}, {"start": 1783.64, "end": 1783.78, "word": " to", "probability": 0.495849609375}, {"start": 1783.78, "end": 1784.08, "word": " the", "probability": 0.2342529296875}, {"start": 1784.08, "end": 1784.3, "word": " minus", "probability": 0.353515625}, {"start": 1784.3, "end": 1784.52, "word": " sign?", "probability": 0.697265625}, {"start": 1784.92, "end": 1785.36, "word": " The", "probability": 0.2286376953125}, {"start": 1785.36, "end": 1785.58, "word": " C", "probability": 0.487548828125}, {"start": 1785.58, "end": 1786.84, "word": " will", "probability": 0.243408203125}, {"start": 1786.84, "end": 1787.08, "word": " accept", "probability": 0.8447265625}, {"start": 1787.08, "end": 1787.26, "word": " the", "probability": 0.356689453125}, {"start": 1787.26, "end": 1787.42, "word": " C", "probability": 0.88134765625}, {"start": 1787.42, "end": 1787.56, "word": " because", "probability": 0.703125}, {"start": 1787.56, "end": 1787.82, "word": " C", "probability": 0.44287109375}, {"start": 1787.82, "end": 1787.94, "word": " is", "probability": 0.84423828125}, {"start": 1787.94, "end": 1788.02, "word": " a", "probability": 0.591796875}, {"start": 1788.02, "end": 1788.98, "word": " shape", "probability": 0.77685546875}], "temperature": 1.0}, {"id": 70, "seek": 181638, "start": 1790.08, "end": 1816.38, "text": "now all you need to do is to give him your border's properties which is border color for example color.red and go b.set border width for example 3 and the last step I should deal with the border as I would deal with the circle there is a method called draw and say get graphics", "tokens": [3785, 439, 291, 643, 281, 360, 307, 281, 976, 796, 428, 7838, 311, 7221, 597, 307, 7838, 2017, 337, 1365, 2017, 13, 986, 293, 352, 272, 13, 3854, 7838, 11402, 337, 1365, 805, 293, 264, 1036, 1823, 286, 820, 2028, 365, 264, 7838, 382, 286, 576, 2028, 365, 264, 6329, 456, 307, 257, 3170, 1219, 2642, 293, 584, 483, 11837], "avg_logprob": -0.5238217017689689, "compression_ratio": 1.6390532544378698, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1790.08, "end": 1790.4, "word": "now", "probability": 0.2286376953125}, {"start": 1790.4, "end": 1790.62, "word": " all", "probability": 0.267822265625}, {"start": 1790.62, "end": 1790.78, "word": " you", "probability": 0.77978515625}, {"start": 1790.78, "end": 1791.06, "word": " need", "probability": 0.57861328125}, {"start": 1791.06, "end": 1791.24, "word": " to", "probability": 0.935546875}, {"start": 1791.24, "end": 1791.48, "word": " do", "probability": 0.9580078125}, {"start": 1791.48, "end": 1792.3, "word": " is", "probability": 0.869140625}, {"start": 1792.3, "end": 1792.3, "word": " to", "probability": 0.35009765625}, {"start": 1792.3, "end": 1792.58, "word": " give", "probability": 0.406982421875}, {"start": 1792.58, "end": 1792.74, "word": " him", "probability": 0.37646484375}, {"start": 1792.74, "end": 1792.84, "word": " your", "probability": 0.289794921875}, {"start": 1792.84, "end": 1794.26, "word": " border's", "probability": 0.39324951171875}, {"start": 1794.26, "end": 1794.26, "word": " properties", "probability": 0.333984375}, {"start": 1794.26, "end": 1794.98, "word": " which", "probability": 0.22705078125}, {"start": 1794.98, "end": 1795.12, "word": " is", "probability": 0.8251953125}, {"start": 1795.12, "end": 1795.4, "word": " border", "probability": 0.6904296875}, {"start": 1795.4, "end": 1795.8, "word": " color", "probability": 0.42529296875}, {"start": 1795.8, "end": 1796.34, "word": " for", "probability": 0.3935546875}, {"start": 1796.34, "end": 1796.52, "word": " example", "probability": 0.9111328125}, {"start": 1796.52, "end": 1796.88, "word": " color", "probability": 0.54345703125}, {"start": 1796.88, "end": 1797.44, "word": ".red", "probability": 0.872802734375}, {"start": 1797.44, "end": 1799.0, "word": " and", "probability": 0.765625}, {"start": 1799.0, "end": 1799.2, "word": " go", "probability": 0.271728515625}, {"start": 1799.2, "end": 1799.52, "word": " b", "probability": 0.2418212890625}, {"start": 1799.52, "end": 1801.1, "word": ".set", "probability": 0.904541015625}, {"start": 1801.1, "end": 1801.54, "word": " border", "probability": 0.51416015625}, {"start": 1801.54, "end": 1801.96, "word": " width", "probability": 0.72509765625}, {"start": 1801.96, "end": 1802.44, "word": " for", "probability": 0.63037109375}, {"start": 1802.44, "end": 1802.46, "word": " example", "probability": 0.9482421875}, {"start": 1802.46, "end": 1802.82, "word": " 3", "probability": 0.66650390625}, {"start": 1802.82, "end": 1806.96, "word": " and", "probability": 0.78564453125}, {"start": 1806.96, "end": 1807.12, "word": " the", "probability": 0.5458984375}, {"start": 1807.12, "end": 1807.22, "word": " last", "probability": 0.84912109375}, {"start": 1807.22, "end": 1807.6, "word": " step", "probability": 0.822265625}, {"start": 1807.6, "end": 1808.12, "word": " I", "probability": 0.359375}, {"start": 1808.12, "end": 1808.46, "word": " should", "probability": 0.437255859375}, {"start": 1808.46, "end": 1808.88, "word": " deal", "probability": 0.321044921875}, {"start": 1808.88, "end": 1809.08, "word": " with", "probability": 0.89697265625}, {"start": 1809.08, "end": 1809.22, "word": " the", "probability": 0.646484375}, {"start": 1809.22, "end": 1809.46, "word": " border", "probability": 0.8232421875}, {"start": 1809.46, "end": 1809.62, "word": " as", "probability": 0.5126953125}, {"start": 1809.62, "end": 1809.78, "word": " I", "probability": 0.875}, {"start": 1809.78, "end": 1810.04, "word": " would", "probability": 0.389404296875}, {"start": 1810.04, "end": 1810.28, "word": " deal", "probability": 0.73095703125}, {"start": 1810.28, "end": 1810.44, "word": " with", "probability": 0.900390625}, {"start": 1810.44, "end": 1810.56, "word": " the", "probability": 0.78857421875}, {"start": 1810.56, "end": 1810.88, "word": " circle", "probability": 0.962890625}, {"start": 1810.88, "end": 1811.26, "word": " there", "probability": 0.29052734375}, {"start": 1811.26, "end": 1811.64, "word": " is", "probability": 0.7578125}, {"start": 1811.64, "end": 1811.72, "word": " a", "probability": 0.892578125}, {"start": 1811.72, "end": 1811.96, "word": " method", "probability": 0.9501953125}, {"start": 1811.96, "end": 1812.34, "word": " called", "probability": 0.7138671875}, {"start": 1812.34, "end": 1813.58, "word": " draw", "probability": 0.625}, {"start": 1813.58, "end": 1814.46, "word": " and", "probability": 0.5478515625}, {"start": 1814.46, "end": 1814.62, "word": " say", "probability": 0.491455078125}, {"start": 1814.62, "end": 1814.98, "word": " get", "probability": 0.9248046875}, {"start": 1814.98, "end": 1816.38, "word": " graphics", "probability": 0.79541015625}], "temperature": 1.0}, {"id": 71, "seek": 184744, "start": 1822.5, "end": 1847.44, "text": " Let's create a circle with a circle shape Now I want to create a rectangle with border All you need to do is type rectangle R new rectangle 180 for example", "tokens": [961, 311, 1884, 257, 6329, 365, 257, 6329, 3909, 823, 286, 528, 281, 1884, 257, 21930, 365, 7838, 1057, 291, 643, 281, 360, 307, 2010, 21930, 497, 777, 21930, 11971, 337, 1365], "avg_logprob": -0.7585227272727273, "compression_ratio": 1.4054054054054055, "no_speech_prob": 2.1457672119140625e-06, "words": [{"start": 1822.5, "end": 1822.84, "word": " Let's", "probability": 0.51934814453125}, {"start": 1822.84, "end": 1823.06, "word": " create", "probability": 0.2113037109375}, {"start": 1823.06, "end": 1823.12, "word": " a", "probability": 0.77392578125}, {"start": 1823.12, "end": 1823.38, "word": " circle", "probability": 0.226806640625}, {"start": 1823.38, "end": 1827.82, "word": " with", "probability": 0.441162109375}, {"start": 1827.82, "end": 1827.9, "word": " a", "probability": 0.17626953125}, {"start": 1827.9, "end": 1828.02, "word": " circle", "probability": 0.419189453125}, {"start": 1828.02, "end": 1829.08, "word": " shape", "probability": 0.2724609375}, {"start": 1829.08, "end": 1829.76, "word": " Now", "probability": 0.1234130859375}, {"start": 1829.76, "end": 1830.08, "word": " I", "probability": 0.428466796875}, {"start": 1830.08, "end": 1830.3, "word": " want", "probability": 0.49951171875}, {"start": 1830.3, "end": 1830.64, "word": " to", "probability": 0.9580078125}, {"start": 1830.64, "end": 1830.82, "word": " create", "probability": 0.703125}, {"start": 1830.82, "end": 1830.92, "word": " a", "probability": 0.88525390625}, {"start": 1830.92, "end": 1831.3, "word": " rectangle", "probability": 0.908203125}, {"start": 1831.3, "end": 1831.56, "word": " with", "probability": 0.83740234375}, {"start": 1831.56, "end": 1831.92, "word": " border", "probability": 0.345458984375}, {"start": 1831.92, "end": 1833.3, "word": " All", "probability": 0.28125}, {"start": 1833.3, "end": 1833.46, "word": " you", "probability": 0.485595703125}, {"start": 1833.46, "end": 1833.76, "word": " need", "probability": 0.677734375}, {"start": 1833.76, "end": 1833.9, "word": " to", "probability": 0.91455078125}, {"start": 1833.9, "end": 1834.06, "word": " do", "probability": 0.89404296875}, {"start": 1834.06, "end": 1834.8, "word": " is", "probability": 0.58642578125}, {"start": 1834.8, "end": 1835.86, "word": " type", "probability": 0.1434326171875}, {"start": 1835.86, "end": 1837.12, "word": " rectangle", "probability": 0.44091796875}, {"start": 1837.12, "end": 1837.96, "word": " R", "probability": 0.201904296875}, {"start": 1837.96, "end": 1839.2, "word": " new", "probability": 0.52734375}, {"start": 1839.2, "end": 1843.58, "word": " rectangle", "probability": 0.9052734375}, {"start": 1843.58, "end": 1846.84, "word": " 180", "probability": 0.72998046875}, {"start": 1846.84, "end": 1847.3, "word": " for", "probability": 0.73095703125}, {"start": 1847.3, "end": 1847.44, "word": " example", "probability": 0.94140625}], "temperature": 1.0}, {"id": 72, "seek": 187261, "start": 1852.71, "end": 1872.61, "text": " and here R rectangle I didn't make a new class I brought rectangle and made it the same object of type border and it will run add shape and it will add border to it and if you have any other shape", "tokens": [293, 510, 497, 21930, 286, 994, 380, 652, 257, 777, 1508, 286, 3038, 21930, 293, 1027, 309, 264, 912, 2657, 295, 2010, 7838, 293, 309, 486, 1190, 909, 3909, 293, 309, 486, 909, 7838, 281, 309, 293, 498, 291, 362, 604, 661, 3909], "avg_logprob": -0.6164772754365747, "compression_ratio": 1.5271317829457365, "no_speech_prob": 3.159046173095703e-06, "words": [{"start": 1852.71, "end": 1853.23, "word": " and", "probability": 0.09381103515625}, {"start": 1853.23, "end": 1853.41, "word": " here", "probability": 0.55224609375}, {"start": 1853.41, "end": 1853.89, "word": " R", "probability": 0.54541015625}, {"start": 1853.89, "end": 1855.79, "word": " rectangle", "probability": 0.64208984375}, {"start": 1855.79, "end": 1858.49, "word": " I", "probability": 0.204345703125}, {"start": 1858.49, "end": 1859.69, "word": " didn't", "probability": 0.671875}, {"start": 1859.69, "end": 1859.81, "word": " make", "probability": 0.499267578125}, {"start": 1859.81, "end": 1859.89, "word": " a", "probability": 0.79248046875}, {"start": 1859.89, "end": 1860.37, "word": " new", "probability": 0.90283203125}, {"start": 1860.37, "end": 1860.37, "word": " class", "probability": 0.9228515625}, {"start": 1860.37, "end": 1861.43, "word": " I", "probability": 0.6005859375}, {"start": 1861.43, "end": 1861.61, "word": " brought", "probability": 0.2288818359375}, {"start": 1861.61, "end": 1862.15, "word": " rectangle", "probability": 0.429931640625}, {"start": 1862.15, "end": 1862.27, "word": " and", "probability": 0.8447265625}, {"start": 1862.27, "end": 1862.53, "word": " made", "probability": 0.152099609375}, {"start": 1862.53, "end": 1862.73, "word": " it", "probability": 0.6005859375}, {"start": 1862.73, "end": 1862.79, "word": " the", "probability": 0.147705078125}, {"start": 1862.79, "end": 1863.05, "word": " same", "probability": 0.873046875}, {"start": 1863.05, "end": 1863.87, "word": " object", "probability": 0.3974609375}, {"start": 1863.87, "end": 1864.01, "word": " of", "probability": 0.47998046875}, {"start": 1864.01, "end": 1864.31, "word": " type", "probability": 0.295166015625}, {"start": 1864.31, "end": 1865.33, "word": " border", "probability": 0.79833984375}, {"start": 1865.33, "end": 1865.75, "word": " and", "probability": 0.73583984375}, {"start": 1865.75, "end": 1865.97, "word": " it", "probability": 0.2156982421875}, {"start": 1865.97, "end": 1865.97, "word": " will", "probability": 0.689453125}, {"start": 1865.97, "end": 1866.21, "word": " run", "probability": 0.81689453125}, {"start": 1866.21, "end": 1868.81, "word": " add", "probability": 0.278564453125}, {"start": 1868.81, "end": 1869.13, "word": " shape", "probability": 0.88232421875}, {"start": 1869.13, "end": 1869.23, "word": " and", "probability": 0.71044921875}, {"start": 1869.23, "end": 1869.31, "word": " it", "probability": 0.505859375}, {"start": 1869.31, "end": 1869.41, "word": " will", "probability": 0.5205078125}, {"start": 1869.41, "end": 1869.53, "word": " add", "probability": 0.77197265625}, {"start": 1869.53, "end": 1871.07, "word": " border", "probability": 0.5927734375}, {"start": 1871.07, "end": 1871.19, "word": " to", "probability": 0.33447265625}, {"start": 1871.19, "end": 1871.19, "word": " it", "probability": 0.90576171875}, {"start": 1871.19, "end": 1871.55, "word": " and", "probability": 0.7578125}, {"start": 1871.55, "end": 1871.69, "word": " if", "probability": 0.9384765625}, {"start": 1871.69, "end": 1871.97, "word": " you", "probability": 0.9599609375}, {"start": 1871.97, "end": 1871.97, "word": " have", "probability": 0.93017578125}, {"start": 1871.97, "end": 1872.21, "word": " any", "probability": 0.67431640625}, {"start": 1872.21, "end": 1872.61, "word": " other", "probability": 0.791015625}, {"start": 1872.61, "end": 1872.61, "word": " shape", "probability": 0.7470703125}], "temperature": 1.0}, {"id": 73, "seek": 189648, "start": 1875.08, "end": 1896.48, "text": "I mean, if I have 10 shapes, and I make only one class for each of them, I add this new functionality. Now, using the decorator method. I have two ways to add any feature to a class. The first way is subclassing.", "tokens": [40, 914, 11, 498, 286, 362, 1266, 10854, 11, 293, 286, 652, 787, 472, 1508, 337, 1184, 295, 552, 11, 286, 909, 341, 777, 14980, 13, 823, 11, 1228, 264, 7919, 1639, 3170, 13, 286, 362, 732, 2098, 281, 909, 604, 4111, 281, 257, 1508, 13, 440, 700, 636, 307, 1422, 11665, 278, 13], "avg_logprob": -0.6034090714021163, "compression_ratio": 1.394736842105263, "no_speech_prob": 1.3172626495361328e-05, "words": [{"start": 1875.08, "end": 1875.42, "word": "I", "probability": 0.1025390625}, {"start": 1875.42, "end": 1875.42, "word": " mean,", "probability": 0.45263671875}, {"start": 1875.68, "end": 1875.72, "word": " if", "probability": 0.48193359375}, {"start": 1875.72, "end": 1877.48, "word": " I", "probability": 0.89794921875}, {"start": 1877.48, "end": 1877.62, "word": " have", "probability": 0.708984375}, {"start": 1877.62, "end": 1877.94, "word": " 10", "probability": 0.5322265625}, {"start": 1877.94, "end": 1878.32, "word": " shapes,", "probability": 0.367431640625}, {"start": 1878.9, "end": 1879.48, "word": " and", "probability": 0.292724609375}, {"start": 1879.48, "end": 1879.52, "word": " I", "probability": 0.78125}, {"start": 1879.52, "end": 1879.7, "word": " make", "probability": 0.142578125}, {"start": 1879.7, "end": 1880.16, "word": " only", "probability": 0.2763671875}, {"start": 1880.16, "end": 1880.46, "word": " one", "probability": 0.6962890625}, {"start": 1880.46, "end": 1880.52, "word": " class", "probability": 0.9326171875}, {"start": 1880.52, "end": 1881.36, "word": " for", "probability": 0.1663818359375}, {"start": 1881.36, "end": 1881.52, "word": " each", "probability": 0.6064453125}, {"start": 1881.52, "end": 1881.52, "word": " of", "probability": 0.28369140625}, {"start": 1881.52, "end": 1881.9, "word": " them,", "probability": 0.6806640625}, {"start": 1882.08, "end": 1882.1, "word": " I", "probability": 0.626953125}, {"start": 1882.1, "end": 1882.32, "word": " add", "probability": 0.5771484375}, {"start": 1882.32, "end": 1882.48, "word": " this", "probability": 0.4287109375}, {"start": 1882.48, "end": 1883.26, "word": " new", "probability": 0.6923828125}, {"start": 1883.26, "end": 1883.26, "word": " functionality.", "probability": 0.7578125}, {"start": 1886.82, "end": 1887.42, "word": " Now,", "probability": 0.462646484375}, {"start": 1888.14, "end": 1889.02, "word": " using", "probability": 0.345947265625}, {"start": 1889.02, "end": 1889.8, "word": " the", "probability": 0.59912109375}, {"start": 1889.8, "end": 1891.24, "word": " decorator", "probability": 0.862548828125}, {"start": 1891.24, "end": 1891.28, "word": " method.", "probability": 0.568359375}, {"start": 1891.38, "end": 1891.94, "word": " I", "probability": 0.26953125}, {"start": 1891.94, "end": 1892.8, "word": " have", "probability": 0.76806640625}, {"start": 1892.8, "end": 1892.98, "word": " two", "probability": 0.6982421875}, {"start": 1892.98, "end": 1893.32, "word": " ways", "probability": 0.5810546875}, {"start": 1893.32, "end": 1893.52, "word": " to", "probability": 0.7744140625}, {"start": 1893.52, "end": 1893.82, "word": " add", "probability": 0.91748046875}, {"start": 1893.82, "end": 1894.12, "word": " any", "probability": 0.6513671875}, {"start": 1894.12, "end": 1894.5, "word": " feature", "probability": 0.8193359375}, {"start": 1894.5, "end": 1894.66, "word": " to", "probability": 0.84326171875}, {"start": 1894.66, "end": 1894.78, "word": " a", "probability": 0.3720703125}, {"start": 1894.78, "end": 1895.02, "word": " class.", "probability": 0.96337890625}, {"start": 1895.1, "end": 1895.2, "word": " The", "probability": 0.69677734375}, {"start": 1895.2, "end": 1895.58, "word": " first", "probability": 0.8779296875}, {"start": 1895.58, "end": 1895.58, "word": " way", "probability": 0.56103515625}, {"start": 1895.58, "end": 1895.74, "word": " is", "probability": 0.921875}, {"start": 1895.74, "end": 1896.48, "word": " subclassing.", "probability": 0.7802734375}], "temperature": 1.0}, {"id": 74, "seek": 191938, "start": 1898.34, "end": 1919.38, "text": "means you were searched, right or wrong, we talked about it a lot and it took you two years and you are happy with it. The second way is to use the decorator method. I want to add a new functionality to the class. You create an object from your class and wrap it with another object from the class. The way of wrapping this, or the decorator we call it, or the wrapper", "tokens": [1398, 599, 291, 645, 22961, 11, 558, 420, 2085, 11, 321, 2825, 466, 309, 257, 688, 293, 309, 1890, 291, 732, 924, 293, 291, 366, 2055, 365, 309, 13, 440, 1150, 636, 307, 281, 764, 264, 7919, 1639, 3170, 13, 286, 528, 281, 909, 257, 777, 14980, 281, 264, 1508, 13, 509, 1884, 364, 2657, 490, 428, 1508, 293, 7019, 309, 365, 1071, 2657, 490, 264, 1508, 13, 440, 636, 295, 21993, 341, 11, 420, 264, 7919, 1639, 321, 818, 309, 11, 420, 264, 46906], "avg_logprob": -0.510174410287724, "compression_ratio": 1.7116279069767442, "no_speech_prob": 5.9604644775390625e-06, "words": [{"start": 1898.3400000000001, "end": 1898.7, "word": "means", "probability": 0.42913818359375}, {"start": 1898.7, "end": 1898.82, "word": " you", "probability": 0.44921875}, {"start": 1898.82, "end": 1898.94, "word": " were", "probability": 0.1856689453125}, {"start": 1898.94, "end": 1899.38, "word": " searched,", "probability": 0.314208984375}, {"start": 1899.66, "end": 1899.92, "word": " right", "probability": 0.40576171875}, {"start": 1899.92, "end": 1900.1, "word": " or", "probability": 0.67578125}, {"start": 1900.1, "end": 1900.18, "word": " wrong,", "probability": 0.6826171875}, {"start": 1900.24, "end": 1900.56, "word": " we", "probability": 0.42138671875}, {"start": 1900.56, "end": 1900.56, "word": " talked", "probability": 0.529296875}, {"start": 1900.56, "end": 1900.7, "word": " about", "probability": 0.77490234375}, {"start": 1900.7, "end": 1900.8, "word": " it", "probability": 0.7880859375}, {"start": 1900.8, "end": 1901.12, "word": " a", "probability": 0.342041015625}, {"start": 1901.12, "end": 1901.12, "word": " lot", "probability": 0.95751953125}, {"start": 1901.12, "end": 1901.26, "word": " and", "probability": 0.56689453125}, {"start": 1901.26, "end": 1901.38, "word": " it", "probability": 0.307861328125}, {"start": 1901.38, "end": 1901.42, "word": " took", "probability": 0.443603515625}, {"start": 1901.42, "end": 1901.48, "word": " you", "probability": 0.63916015625}, {"start": 1901.48, "end": 1901.78, "word": " two", "probability": 0.6044921875}, {"start": 1901.78, "end": 1901.78, "word": " years", "probability": 0.93310546875}, {"start": 1901.78, "end": 1901.9, "word": " and", "probability": 0.611328125}, {"start": 1901.9, "end": 1902.04, "word": " you", "probability": 0.94189453125}, {"start": 1902.04, "end": 1902.08, "word": " are", "probability": 0.459716796875}, {"start": 1902.08, "end": 1902.32, "word": " happy", "probability": 0.66650390625}, {"start": 1902.32, "end": 1902.5, "word": " with", "probability": 0.66796875}, {"start": 1902.5, "end": 1902.72, "word": " it.", "probability": 0.9189453125}, {"start": 1903.14, "end": 1903.36, "word": " The", "probability": 0.57177734375}, {"start": 1903.36, "end": 1903.42, "word": " second", "probability": 0.5732421875}, {"start": 1903.42, "end": 1904.04, "word": " way", "probability": 0.7412109375}, {"start": 1904.04, "end": 1904.56, "word": " is", "probability": 0.78125}, {"start": 1904.56, "end": 1904.66, "word": " to", "probability": 0.5302734375}, {"start": 1904.66, "end": 1904.92, "word": " use", "probability": 0.87353515625}, {"start": 1904.92, "end": 1905.34, "word": " the", "probability": 0.833984375}, {"start": 1905.34, "end": 1905.9, "word": " decorator", "probability": 0.859375}, {"start": 1905.9, "end": 1905.98, "word": " method.", "probability": 0.6083984375}, {"start": 1906.18, "end": 1906.54, "word": " I", "probability": 0.650390625}, {"start": 1906.54, "end": 1906.7, "word": " want", "probability": 0.517578125}, {"start": 1906.7, "end": 1906.78, "word": " to", "probability": 0.96875}, {"start": 1906.78, "end": 1906.96, "word": " add", "probability": 0.93359375}, {"start": 1906.96, "end": 1907.06, "word": " a", "probability": 0.7216796875}, {"start": 1907.06, "end": 1907.06, "word": " new", "probability": 0.88232421875}, {"start": 1907.06, "end": 1907.58, "word": " functionality", "probability": 0.86767578125}, {"start": 1907.58, "end": 1908.04, "word": " to", "probability": 0.91796875}, {"start": 1908.04, "end": 1908.14, "word": " the", "probability": 0.2490234375}, {"start": 1908.14, "end": 1908.5, "word": " class.", "probability": 0.9599609375}, {"start": 1909.08, "end": 1909.36, "word": " You", "probability": 0.55078125}, {"start": 1909.36, "end": 1909.54, "word": " create", "probability": 0.4287109375}, {"start": 1909.54, "end": 1909.7, "word": " an", "probability": 0.91796875}, {"start": 1909.7, "end": 1909.9, "word": " object", "probability": 0.97265625}, {"start": 1909.9, "end": 1910.14, "word": " from", "probability": 0.79052734375}, {"start": 1910.14, "end": 1910.26, "word": " your", "probability": 0.499267578125}, {"start": 1910.26, "end": 1910.84, "word": " class", "probability": 0.8515625}, {"start": 1910.84, "end": 1911.28, "word": " and", "probability": 0.70751953125}, {"start": 1911.28, "end": 1911.7, "word": " wrap", "probability": 0.444091796875}, {"start": 1911.7, "end": 1912.1, "word": " it", "probability": 0.9365234375}, {"start": 1912.1, "end": 1913.2, "word": " with", "probability": 0.794921875}, {"start": 1913.2, "end": 1913.34, "word": " another", "probability": 0.461181640625}, {"start": 1913.34, "end": 1913.5, "word": " object", "probability": 0.94384765625}, {"start": 1913.5, "end": 1913.7, "word": " from", "probability": 0.83984375}, {"start": 1913.7, "end": 1913.8, "word": " the", "probability": 0.63427734375}, {"start": 1913.8, "end": 1914.06, "word": " class.", "probability": 0.88134765625}, {"start": 1916.52, "end": 1916.68, "word": " The", "probability": 0.53369140625}, {"start": 1916.68, "end": 1916.84, "word": " way", "probability": 0.39794921875}, {"start": 1916.84, "end": 1917.0, "word": " of", "probability": 0.7138671875}, {"start": 1917.0, "end": 1917.3, "word": " wrapping", "probability": 0.6962890625}, {"start": 1917.3, "end": 1917.6, "word": " this,", "probability": 0.3017578125}, {"start": 1917.64, "end": 1917.78, "word": " or", "probability": 0.8056640625}, {"start": 1917.78, "end": 1917.86, "word": " the", "probability": 0.2900390625}, {"start": 1917.86, "end": 1918.3, "word": " decorator", "probability": 0.982666015625}, {"start": 1918.3, "end": 1918.42, "word": " we", "probability": 0.386962890625}, {"start": 1918.42, "end": 1918.74, "word": " call", "probability": 0.87939453125}, {"start": 1918.74, "end": 1918.9, "word": " it,", "probability": 0.91259765625}, {"start": 1918.94, "end": 1919.04, "word": " or", "probability": 0.939453125}, {"start": 1919.04, "end": 1919.12, "word": " the", "probability": 0.763671875}, {"start": 1919.12, "end": 1919.38, "word": " wrapper", "probability": 0.951171875}], "temperature": 1.0}, {"id": 75, "seek": 194565, "start": 1920.53, "end": 1945.65, "text": "It's difficult because you have to use the methods in your object to create it here because the client sees the cover as it sees what's inside. So 1,2,3, I made them here 1,2,3, but I let it transform from inside. We didn't do this here. We used to do subclassing, missequation, because you don't want to write code. Here you want to write code with transformation and adding additional quotes.", "tokens": [3522, 311, 2252, 570, 291, 362, 281, 764, 264, 7150, 294, 428, 2657, 281, 1884, 309, 510, 570, 264, 6423, 8194, 264, 2060, 382, 309, 8194, 437, 311, 1854, 13, 407, 502, 11, 17, 11, 18, 11, 286, 1027, 552, 510, 502, 11, 17, 11, 18, 11, 457, 286, 718, 309, 4088, 490, 1854, 13, 492, 994, 380, 360, 341, 510, 13, 492, 1143, 281, 360, 1422, 11665, 278, 11, 3346, 405, 358, 399, 11, 570, 291, 500, 380, 528, 281, 2464, 3089, 13, 1692, 291, 528, 281, 2464, 3089, 365, 9887, 293, 5127, 4497, 19963, 13], "avg_logprob": -0.6004464145825834, "compression_ratio": 1.7356828193832599, "no_speech_prob": 2.6166439056396484e-05, "words": [{"start": 1920.53, "end": 1920.87, "word": "It's", "probability": 0.3095703125}, {"start": 1920.87, "end": 1921.23, "word": " difficult", "probability": 0.329833984375}, {"start": 1921.23, "end": 1921.63, "word": " because", "probability": 0.391357421875}, {"start": 1921.63, "end": 1922.05, "word": " you", "probability": 0.8876953125}, {"start": 1922.05, "end": 1922.21, "word": " have", "probability": 0.515625}, {"start": 1922.21, "end": 1922.31, "word": " to", "probability": 0.966796875}, {"start": 1922.31, "end": 1922.65, "word": " use", "probability": 0.260986328125}, {"start": 1922.65, "end": 1922.75, "word": " the", "probability": 0.58642578125}, {"start": 1922.75, "end": 1923.09, "word": " methods", "probability": 0.71484375}, {"start": 1923.09, "end": 1923.59, "word": " in", "probability": 0.41259765625}, {"start": 1923.59, "end": 1923.69, "word": " your", "probability": 0.4482421875}, {"start": 1923.69, "end": 1923.99, "word": " object", "probability": 0.80810546875}, {"start": 1923.99, "end": 1925.47, "word": " to", "probability": 0.43310546875}, {"start": 1925.47, "end": 1925.75, "word": " create", "probability": 0.2110595703125}, {"start": 1925.75, "end": 1925.91, "word": " it", "probability": 0.43798828125}, {"start": 1925.91, "end": 1926.11, "word": " here", "probability": 0.33203125}, {"start": 1926.11, "end": 1926.45, "word": " because", "probability": 0.2890625}, {"start": 1926.45, "end": 1927.91, "word": " the", "probability": 0.70361328125}, {"start": 1927.91, "end": 1928.19, "word": " client", "probability": 0.9150390625}, {"start": 1928.19, "end": 1928.63, "word": " sees", "probability": 0.642578125}, {"start": 1928.63, "end": 1928.81, "word": " the", "probability": 0.83251953125}, {"start": 1928.81, "end": 1929.25, "word": " cover", "probability": 0.45703125}, {"start": 1929.25, "end": 1929.99, "word": " as", "probability": 0.595703125}, {"start": 1929.99, "end": 1930.15, "word": " it", "probability": 0.408447265625}, {"start": 1930.15, "end": 1930.39, "word": " sees", "probability": 0.89697265625}, {"start": 1930.39, "end": 1930.57, "word": " what's", "probability": 0.52301025390625}, {"start": 1930.57, "end": 1930.75, "word": " inside.", "probability": 0.85205078125}, {"start": 1931.47, "end": 1931.83, "word": " So", "probability": 0.22998046875}, {"start": 1931.83, "end": 1932.13, "word": " 1", "probability": 0.415771484375}, {"start": 1932.13, "end": 1932.49, "word": ",2", "probability": 0.5361328125}, {"start": 1932.49, "end": 1932.87, "word": ",3,", "probability": 0.80029296875}, {"start": 1932.91, "end": 1932.99, "word": " I", "probability": 0.57421875}, {"start": 1932.99, "end": 1933.19, "word": " made", "probability": 0.318603515625}, {"start": 1933.19, "end": 1933.33, "word": " them", "probability": 0.71728515625}, {"start": 1933.33, "end": 1933.49, "word": " here", "probability": 0.51904296875}, {"start": 1933.49, "end": 1933.65, "word": " 1", "probability": 0.77978515625}, {"start": 1933.65, "end": 1933.95, "word": ",2", "probability": 0.9580078125}, {"start": 1933.95, "end": 1934.33, "word": ",3,", "probability": 0.978515625}, {"start": 1934.35, "end": 1935.01, "word": " but", "probability": 0.86474609375}, {"start": 1935.01, "end": 1935.19, "word": " I", "probability": 0.69140625}, {"start": 1935.19, "end": 1935.37, "word": " let", "probability": 0.32958984375}, {"start": 1935.37, "end": 1935.55, "word": " it", "probability": 0.344970703125}, {"start": 1935.55, "end": 1935.87, "word": " transform", "probability": 0.290771484375}, {"start": 1935.87, "end": 1936.05, "word": " from", "probability": 0.6708984375}, {"start": 1936.05, "end": 1936.29, "word": " inside.", "probability": 0.59130859375}, {"start": 1936.79, "end": 1937.27, "word": " We", "probability": 0.4287109375}, {"start": 1937.27, "end": 1937.35, "word": " didn't", "probability": 0.650390625}, {"start": 1937.35, "end": 1937.83, "word": " do", "probability": 0.5078125}, {"start": 1937.83, "end": 1937.83, "word": " this", "probability": 0.56201171875}, {"start": 1937.83, "end": 1938.01, "word": " here.", "probability": 0.6171875}, {"start": 1938.55, "end": 1938.79, "word": " We", "probability": 0.371826171875}, {"start": 1938.79, "end": 1938.79, "word": " used", "probability": 0.30810546875}, {"start": 1938.79, "end": 1938.87, "word": " to", "probability": 0.67431640625}, {"start": 1938.87, "end": 1939.23, "word": " do", "probability": 0.266845703125}, {"start": 1939.23, "end": 1939.89, "word": " subclassing,", "probability": 0.7037760416666666}, {"start": 1939.91, "end": 1940.43, "word": " missequation,", "probability": 0.490814208984375}, {"start": 1940.47, "end": 1940.59, "word": " because", "probability": 0.55859375}, {"start": 1940.59, "end": 1940.71, "word": " you", "probability": 0.81884765625}, {"start": 1940.71, "end": 1940.81, "word": " don't", "probability": 0.884765625}, {"start": 1940.81, "end": 1940.99, "word": " want", "probability": 0.58154296875}, {"start": 1940.99, "end": 1941.15, "word": " to", "probability": 0.83642578125}, {"start": 1941.15, "end": 1941.29, "word": " write", "probability": 0.75146484375}, {"start": 1941.29, "end": 1942.35, "word": " code.", "probability": 0.8916015625}, {"start": 1942.41, "end": 1942.55, "word": " Here", "probability": 0.73974609375}, {"start": 1942.55, "end": 1942.71, "word": " you", "probability": 0.7314453125}, {"start": 1942.71, "end": 1942.89, "word": " want", "probability": 0.65771484375}, {"start": 1942.89, "end": 1943.01, "word": " to", "probability": 0.90380859375}, {"start": 1943.01, "end": 1943.13, "word": " write", "probability": 0.884765625}, {"start": 1943.13, "end": 1943.49, "word": " code", "probability": 0.86279296875}, {"start": 1943.49, "end": 1943.65, "word": " with", "probability": 0.716796875}, {"start": 1943.65, "end": 1944.13, "word": " transformation", "probability": 0.25634765625}, {"start": 1944.13, "end": 1944.81, "word": " and", "probability": 0.853515625}, {"start": 1944.81, "end": 1945.27, "word": " adding", "probability": 0.407470703125}, {"start": 1945.27, "end": 1945.41, "word": " additional", "probability": 0.61962890625}, {"start": 1945.41, "end": 1945.65, "word": " quotes.", "probability": 0.2362060546875}], "temperature": 1.0}, {"id": 76, "seek": 197506, "start": 1946.66, "end": 1975.06, "text": "And you can add more methods For example, I will not add more things here Of course, what will be extra if there are setters and getters For border width and border color These are considered four or five But the advantage of the decorator method is that I can change the inner object Of different types, so it's like a cover It can cover any type of shape", "tokens": [5289, 291, 393, 909, 544, 7150, 1171, 1365, 11, 286, 486, 406, 909, 544, 721, 510, 2720, 1164, 11, 437, 486, 312, 2857, 498, 456, 366, 992, 1559, 293, 483, 1559, 1171, 7838, 11402, 293, 7838, 2017, 1981, 366, 4888, 1451, 420, 1732, 583, 264, 5002, 295, 264, 7919, 1639, 3170, 307, 300, 286, 393, 1319, 264, 7284, 2657, 2720, 819, 3467, 11, 370, 309, 311, 411, 257, 2060, 467, 393, 2060, 604, 2010, 295, 3909], "avg_logprob": -0.5588474180791285, "compression_ratio": 1.5964125560538116, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1946.66, "end": 1946.84, "word": "And", "probability": 0.15576171875}, {"start": 1946.84, "end": 1946.9, "word": " you", "probability": 0.80126953125}, {"start": 1946.9, "end": 1947.1, "word": " can", "probability": 0.90966796875}, {"start": 1947.1, "end": 1947.32, "word": " add", "probability": 0.363037109375}, {"start": 1947.32, "end": 1948.7, "word": " more", "probability": 0.484619140625}, {"start": 1948.7, "end": 1948.7, "word": " methods", "probability": 0.810546875}, {"start": 1948.7, "end": 1949.22, "word": " For", "probability": 0.12188720703125}, {"start": 1949.22, "end": 1949.5, "word": " example,", "probability": 0.91259765625}, {"start": 1949.62, "end": 1949.8, "word": " I", "probability": 0.375732421875}, {"start": 1949.8, "end": 1949.96, "word": " will", "probability": 0.22119140625}, {"start": 1949.96, "end": 1949.96, "word": " not", "probability": 0.247802734375}, {"start": 1949.96, "end": 1950.08, "word": " add", "probability": 0.84619140625}, {"start": 1950.08, "end": 1950.9, "word": " more", "probability": 0.4794921875}, {"start": 1950.9, "end": 1950.96, "word": " things", "probability": 0.372802734375}, {"start": 1950.96, "end": 1951.48, "word": " here", "probability": 0.257568359375}, {"start": 1951.48, "end": 1951.56, "word": " Of", "probability": 0.345703125}, {"start": 1951.56, "end": 1952.22, "word": " course,", "probability": 0.9521484375}, {"start": 1952.36, "end": 1952.38, "word": " what", "probability": 0.662109375}, {"start": 1952.38, "end": 1952.46, "word": " will", "probability": 0.63671875}, {"start": 1952.46, "end": 1952.64, "word": " be", "probability": 0.80859375}, {"start": 1952.64, "end": 1953.02, "word": " extra", "probability": 0.188232421875}, {"start": 1953.02, "end": 1953.18, "word": " if", "probability": 0.498046875}, {"start": 1953.18, "end": 1953.44, "word": " there", "probability": 0.79541015625}, {"start": 1953.44, "end": 1953.44, "word": " are", "probability": 0.72998046875}, {"start": 1953.44, "end": 1953.76, "word": " setters", "probability": 0.733154296875}, {"start": 1953.76, "end": 1953.88, "word": " and", "probability": 0.91796875}, {"start": 1953.88, "end": 1954.28, "word": " getters", "probability": 0.95166015625}, {"start": 1954.28, "end": 1955.24, "word": " For", "probability": 0.413818359375}, {"start": 1955.24, "end": 1955.58, "word": " border", "probability": 0.6513671875}, {"start": 1955.58, "end": 1955.86, "word": " width", "probability": 0.94287109375}, {"start": 1955.86, "end": 1956.02, "word": " and", "probability": 0.88623046875}, {"start": 1956.02, "end": 1956.3, "word": " border", "probability": 0.73046875}, {"start": 1956.3, "end": 1957.28, "word": " color", "probability": 0.69775390625}, {"start": 1957.28, "end": 1957.88, "word": " These", "probability": 0.2249755859375}, {"start": 1957.88, "end": 1958.12, "word": " are", "probability": 0.55517578125}, {"start": 1958.12, "end": 1958.42, "word": " considered", "probability": 0.5751953125}, {"start": 1958.42, "end": 1959.0, "word": " four", "probability": 0.28076171875}, {"start": 1959.0, "end": 1960.32, "word": " or", "probability": 0.90234375}, {"start": 1960.32, "end": 1960.58, "word": " five", "probability": 0.8984375}, {"start": 1960.58, "end": 1962.02, "word": " But", "probability": 0.1964111328125}, {"start": 1962.02, "end": 1962.96, "word": " the", "probability": 0.83251953125}, {"start": 1962.96, "end": 1963.18, "word": " advantage", "probability": 0.55908203125}, {"start": 1963.18, "end": 1963.36, "word": " of", "probability": 0.71728515625}, {"start": 1963.36, "end": 1963.44, "word": " the", "probability": 0.462890625}, {"start": 1963.44, "end": 1964.3, "word": " decorator", "probability": 0.88916015625}, {"start": 1964.3, "end": 1964.3, "word": " method", "probability": 0.51708984375}, {"start": 1964.3, "end": 1964.46, "word": " is", "probability": 0.6396484375}, {"start": 1964.46, "end": 1964.5, "word": " that", "probability": 0.92236328125}, {"start": 1964.5, "end": 1964.66, "word": " I", "probability": 0.91162109375}, {"start": 1964.66, "end": 1964.96, "word": " can", "probability": 0.92626953125}, {"start": 1964.96, "end": 1965.26, "word": " change", "probability": 0.88134765625}, {"start": 1965.26, "end": 1965.42, "word": " the", "probability": 0.888671875}, {"start": 1965.42, "end": 1966.18, "word": " inner", "probability": 0.399169921875}, {"start": 1966.18, "end": 1967.02, "word": " object", "probability": 0.9189453125}, {"start": 1967.02, "end": 1968.86, "word": " Of", "probability": 0.43017578125}, {"start": 1968.86, "end": 1969.34, "word": " different", "probability": 0.74560546875}, {"start": 1969.34, "end": 1969.92, "word": " types,", "probability": 0.71875}, {"start": 1970.14, "end": 1970.28, "word": " so", "probability": 0.3623046875}, {"start": 1970.28, "end": 1970.64, "word": " it's", "probability": 0.5399169921875}, {"start": 1970.64, "end": 1971.06, "word": " like", "probability": 0.323486328125}, {"start": 1971.06, "end": 1971.72, "word": " a", "probability": 0.95849609375}, {"start": 1971.72, "end": 1971.72, "word": " cover", "probability": 0.63134765625}, {"start": 1971.72, "end": 1973.26, "word": " It", "probability": 0.3583984375}, {"start": 1973.26, "end": 1973.52, "word": " can", "probability": 0.93212890625}, {"start": 1973.52, "end": 1973.82, "word": " cover", "probability": 0.68994140625}, {"start": 1973.82, "end": 1974.38, "word": " any", "probability": 0.84326171875}, {"start": 1974.38, "end": 1974.66, "word": " type", "probability": 0.29052734375}, {"start": 1974.66, "end": 1974.84, "word": " of", "probability": 0.96826171875}, {"start": 1974.84, "end": 1975.06, "word": " shape", "probability": 0.65283203125}], "temperature": 1.0}, {"id": 77, "seek": 200216, "start": 1975.86, "end": 2002.16, "text": "So the addition is made with one class only So if I have 30 classes, I want to add 10 additions to them For example, I made a border now We want to make a scroll bar for the shapes Or solid shapes You only need to make one class called solid And it takes any shape of the type shape", "tokens": [6455, 264, 4500, 307, 1027, 365, 472, 1508, 787, 407, 498, 286, 362, 2217, 5359, 11, 286, 528, 281, 909, 1266, 35113, 281, 552, 1171, 1365, 11, 286, 1027, 257, 7838, 586, 492, 528, 281, 652, 257, 11369, 2159, 337, 264, 10854, 1610, 5100, 10854, 509, 787, 643, 281, 652, 472, 1508, 1219, 5100, 400, 309, 2516, 604, 3909, 295, 264, 2010, 3909], "avg_logprob": -0.5097656166180968, "compression_ratio": 1.6022727272727273, "no_speech_prob": 1.5079975128173828e-05, "words": [{"start": 1975.8600000000001, "end": 1976.42, "word": "So", "probability": 0.28515625}, {"start": 1976.42, "end": 1976.54, "word": " the", "probability": 0.394775390625}, {"start": 1976.54, "end": 1976.88, "word": " addition", "probability": 0.763671875}, {"start": 1976.88, "end": 1977.38, "word": " is", "probability": 0.384033203125}, {"start": 1977.38, "end": 1977.68, "word": " made", "probability": 0.296875}, {"start": 1977.68, "end": 1977.82, "word": " with", "probability": 0.4296875}, {"start": 1977.82, "end": 1978.96, "word": " one", "probability": 0.365966796875}, {"start": 1978.96, "end": 1978.96, "word": " class", "probability": 0.7958984375}, {"start": 1978.96, "end": 1979.66, "word": " only", "probability": 0.69287109375}, {"start": 1979.66, "end": 1980.2, "word": " So", "probability": 0.400634765625}, {"start": 1980.2, "end": 1980.36, "word": " if", "probability": 0.849609375}, {"start": 1980.36, "end": 1980.52, "word": " I", "probability": 0.94189453125}, {"start": 1980.52, "end": 1980.76, "word": " have", "probability": 0.8603515625}, {"start": 1980.76, "end": 1981.16, "word": " 30", "probability": 0.6943359375}, {"start": 1981.16, "end": 1981.6, "word": " classes,", "probability": 0.89990234375}, {"start": 1981.72, "end": 1981.76, "word": " I", "probability": 0.85400390625}, {"start": 1981.76, "end": 1981.96, "word": " want", "probability": 0.296875}, {"start": 1981.96, "end": 1982.04, "word": " to", "probability": 0.96484375}, {"start": 1982.04, "end": 1982.28, "word": " add", "probability": 0.89892578125}, {"start": 1982.28, "end": 1982.9, "word": " 10", "probability": 0.8173828125}, {"start": 1982.9, "end": 1983.24, "word": " additions", "probability": 0.892578125}, {"start": 1983.24, "end": 1983.62, "word": " to", "probability": 0.66845703125}, {"start": 1983.62, "end": 1983.96, "word": " them", "probability": 0.77392578125}, {"start": 1983.96, "end": 1985.28, "word": " For", "probability": 0.52587890625}, {"start": 1985.28, "end": 1985.58, "word": " example,", "probability": 0.92041015625}, {"start": 1985.96, "end": 1986.08, "word": " I", "probability": 0.485107421875}, {"start": 1986.08, "end": 1986.8, "word": " made", "probability": 0.40380859375}, {"start": 1986.8, "end": 1986.96, "word": " a", "probability": 0.5771484375}, {"start": 1986.96, "end": 1987.24, "word": " border", "probability": 0.85107421875}, {"start": 1987.24, "end": 1989.38, "word": " now", "probability": 0.464599609375}, {"start": 1989.38, "end": 1990.5, "word": " We", "probability": 0.65673828125}, {"start": 1990.5, "end": 1990.68, "word": " want", "probability": 0.4716796875}, {"start": 1990.68, "end": 1990.8, "word": " to", "probability": 0.96923828125}, {"start": 1990.8, "end": 1990.94, "word": " make", "probability": 0.806640625}, {"start": 1990.94, "end": 1991.06, "word": " a", "probability": 0.85693359375}, {"start": 1991.06, "end": 1991.3, "word": " scroll", "probability": 0.95751953125}, {"start": 1991.3, "end": 1991.58, "word": " bar", "probability": 0.6533203125}, {"start": 1991.58, "end": 1991.98, "word": " for", "probability": 0.6337890625}, {"start": 1991.98, "end": 1992.06, "word": " the", "probability": 0.380859375}, {"start": 1992.06, "end": 1992.34, "word": " shapes", "probability": 0.77880859375}, {"start": 1992.34, "end": 1993.44, "word": " Or", "probability": 0.564453125}, {"start": 1993.44, "end": 1994.18, "word": " solid", "probability": 0.40576171875}, {"start": 1994.18, "end": 1995.04, "word": " shapes", "probability": 0.60986328125}, {"start": 1995.04, "end": 1996.06, "word": " You", "probability": 0.413818359375}, {"start": 1996.06, "end": 1996.26, "word": " only", "probability": 0.294677734375}, {"start": 1996.26, "end": 1996.38, "word": " need", "probability": 0.3828125}, {"start": 1996.38, "end": 1996.38, "word": " to", "probability": 0.611328125}, {"start": 1996.38, "end": 1996.56, "word": " make", "probability": 0.75537109375}, {"start": 1996.56, "end": 1996.8, "word": " one", "probability": 0.65380859375}, {"start": 1996.8, "end": 1997.04, "word": " class", "probability": 0.93505859375}, {"start": 1997.04, "end": 1997.64, "word": " called", "probability": 0.302490234375}, {"start": 1997.64, "end": 1998.72, "word": " solid", "probability": 0.68115234375}, {"start": 1998.72, "end": 2000.22, "word": " And", "probability": 0.301513671875}, {"start": 2000.22, "end": 2000.56, "word": " it", "probability": 0.5234375}, {"start": 2000.56, "end": 2000.78, "word": " takes", "probability": 0.59033203125}, {"start": 2000.78, "end": 2001.16, "word": " any", "probability": 0.90625}, {"start": 2001.16, "end": 2001.62, "word": " shape", "probability": 0.74072265625}, {"start": 2001.62, "end": 2001.76, "word": " of", "probability": 0.7255859375}, {"start": 2001.76, "end": 2001.84, "word": " the", "probability": 0.44140625}, {"start": 2001.84, "end": 2001.92, "word": " type", "probability": 0.379150390625}, {"start": 2001.92, "end": 2002.16, "word": " shape", "probability": 0.875}], "temperature": 1.0}, {"id": 78, "seek": 203208, "start": 2004.34, "end": 2032.08, "text": " And it creates an implement for the method draw that you write to it So that you give it a color and tell it to fill it And then it draws the shape again to get shape.draw Not super.draw, shape.draw So really I only need one class to make solid So each new feature is one class instead of ten classes As I said in JavaFX, I have many UI components", "tokens": [400, 309, 7829, 364, 4445, 337, 264, 3170, 2642, 300, 291, 2464, 281, 309, 407, 300, 291, 976, 309, 257, 2017, 293, 980, 309, 281, 2836, 309, 400, 550, 309, 20045, 264, 3909, 797, 281, 483, 3909, 13, 48848, 1726, 1687, 13, 48848, 11, 3909, 13, 48848, 407, 534, 286, 787, 643, 472, 1508, 281, 652, 5100, 407, 1184, 777, 4111, 307, 472, 1508, 2602, 295, 2064, 5359, 1018, 286, 848, 294, 10745, 36092, 11, 286, 362, 867, 15682, 6677], "avg_logprob": -0.5833333215595763, "compression_ratio": 1.6186046511627907, "no_speech_prob": 0.0, "words": [{"start": 2004.34, "end": 2004.54, "word": " And", "probability": 0.1910400390625}, {"start": 2004.54, "end": 2004.7, "word": " it", "probability": 0.345703125}, {"start": 2004.7, "end": 2004.86, "word": " creates", "probability": 0.1666259765625}, {"start": 2004.86, "end": 2005.02, "word": " an", "probability": 0.76123046875}, {"start": 2005.02, "end": 2005.28, "word": " implement", "probability": 0.5}, {"start": 2005.28, "end": 2005.54, "word": " for", "probability": 0.81005859375}, {"start": 2005.54, "end": 2005.6, "word": " the", "probability": 0.50634765625}, {"start": 2005.6, "end": 2005.84, "word": " method", "probability": 0.494384765625}, {"start": 2005.84, "end": 2006.1, "word": " draw", "probability": 0.44775390625}, {"start": 2006.1, "end": 2006.4, "word": " that", "probability": 0.11676025390625}, {"start": 2006.4, "end": 2006.4, "word": " you", "probability": 0.6796875}, {"start": 2006.4, "end": 2006.64, "word": " write", "probability": 0.53564453125}, {"start": 2006.64, "end": 2007.46, "word": " to", "probability": 0.15283203125}, {"start": 2007.46, "end": 2008.04, "word": " it", "probability": 0.345703125}, {"start": 2008.04, "end": 2008.52, "word": " So", "probability": 0.24365234375}, {"start": 2008.52, "end": 2008.74, "word": " that", "probability": 0.71240234375}, {"start": 2008.74, "end": 2009.12, "word": " you", "probability": 0.8583984375}, {"start": 2009.12, "end": 2010.48, "word": " give", "probability": 0.384033203125}, {"start": 2010.48, "end": 2010.62, "word": " it", "probability": 0.86962890625}, {"start": 2010.62, "end": 2010.68, "word": " a", "probability": 0.4453125}, {"start": 2010.68, "end": 2010.9, "word": " color", "probability": 0.7802734375}, {"start": 2010.9, "end": 2011.04, "word": " and", "probability": 0.71337890625}, {"start": 2011.04, "end": 2011.22, "word": " tell", "probability": 0.44287109375}, {"start": 2011.22, "end": 2011.32, "word": " it", "probability": 0.919921875}, {"start": 2011.32, "end": 2011.4, "word": " to", "probability": 0.88818359375}, {"start": 2011.4, "end": 2011.58, "word": " fill", "probability": 0.779296875}, {"start": 2011.58, "end": 2011.94, "word": " it", "probability": 0.72705078125}, {"start": 2011.94, "end": 2012.3, "word": " And", "probability": 0.145263671875}, {"start": 2012.3, "end": 2012.62, "word": " then", "probability": 0.646484375}, {"start": 2012.62, "end": 2013.04, "word": " it", "probability": 0.3740234375}, {"start": 2013.04, "end": 2013.22, "word": " draws", "probability": 0.423095703125}, {"start": 2013.22, "end": 2013.42, "word": " the", "probability": 0.40283203125}, {"start": 2013.42, "end": 2013.72, "word": " shape", "probability": 0.86474609375}, {"start": 2013.72, "end": 2014.08, "word": " again", "probability": 0.55126953125}, {"start": 2014.08, "end": 2014.3, "word": " to", "probability": 0.12548828125}, {"start": 2014.3, "end": 2014.52, "word": " get", "probability": 0.3203125}, {"start": 2014.52, "end": 2014.9, "word": " shape", "probability": 0.7255859375}, {"start": 2014.9, "end": 2015.4, "word": ".draw", "probability": 0.83935546875}, {"start": 2015.4, "end": 2016.4, "word": " Not", "probability": 0.53125}, {"start": 2016.4, "end": 2016.72, "word": " super", "probability": 0.8701171875}, {"start": 2016.72, "end": 2017.22, "word": ".draw,", "probability": 0.858154296875}, {"start": 2017.44, "end": 2017.7, "word": " shape", "probability": 0.70947265625}, {"start": 2017.7, "end": 2018.94, "word": ".draw", "probability": 0.913818359375}, {"start": 2018.94, "end": 2019.14, "word": " So", "probability": 0.6416015625}, {"start": 2019.14, "end": 2019.44, "word": " really", "probability": 0.136962890625}, {"start": 2019.44, "end": 2019.78, "word": " I", "probability": 0.591796875}, {"start": 2019.78, "end": 2020.02, "word": " only", "probability": 0.17724609375}, {"start": 2020.02, "end": 2020.02, "word": " need", "probability": 0.8818359375}, {"start": 2020.02, "end": 2020.2, "word": " one", "probability": 0.80029296875}, {"start": 2020.2, "end": 2020.6, "word": " class", "probability": 0.94482421875}, {"start": 2020.6, "end": 2022.4, "word": " to", "probability": 0.8466796875}, {"start": 2022.4, "end": 2022.72, "word": " make", "probability": 0.61328125}, {"start": 2022.72, "end": 2023.02, "word": " solid", "probability": 0.40625}, {"start": 2023.02, "end": 2023.9, "word": " So", "probability": 0.35986328125}, {"start": 2023.9, "end": 2024.16, "word": " each", "probability": 0.34033203125}, {"start": 2024.16, "end": 2024.8, "word": " new", "probability": 0.6572265625}, {"start": 2024.8, "end": 2024.8, "word": " feature", "probability": 0.9248046875}, {"start": 2024.8, "end": 2025.34, "word": " is", "probability": 0.89013671875}, {"start": 2025.34, "end": 2025.7, "word": " one", "probability": 0.44677734375}, {"start": 2025.7, "end": 2026.12, "word": " class", "probability": 0.951171875}, {"start": 2026.12, "end": 2027.16, "word": " instead", "probability": 0.712890625}, {"start": 2027.16, "end": 2027.28, "word": " of", "probability": 0.97412109375}, {"start": 2027.28, "end": 2027.94, "word": " ten", "probability": 0.57763671875}, {"start": 2027.94, "end": 2029.0, "word": " classes", "probability": 0.77001953125}, {"start": 2029.0, "end": 2029.66, "word": " As", "probability": 0.705078125}, {"start": 2029.66, "end": 2029.8, "word": " I", "probability": 0.93017578125}, {"start": 2029.8, "end": 2029.98, "word": " said", "probability": 0.71630859375}, {"start": 2029.98, "end": 2030.1, "word": " in", "probability": 0.6953125}, {"start": 2030.1, "end": 2030.68, "word": " JavaFX,", "probability": 0.606201171875}, {"start": 2030.88, "end": 2031.12, "word": " I", "probability": 0.947265625}, {"start": 2031.12, "end": 2031.18, "word": " have", "probability": 0.94091796875}, {"start": 2031.18, "end": 2031.26, "word": " many", "probability": 0.5888671875}, {"start": 2031.26, "end": 2031.56, "word": " UI", "probability": 0.89990234375}, {"start": 2031.56, "end": 2032.08, "word": " components", "probability": 0.90966796875}], "temperature": 1.0}, {"id": 79, "seek": 206179, "start": 2033.81, "end": 2061.79, "text": " I want to make a scrollbar for them I want to make a scrollbar for the text area, a scrollbar for the tab pane I want to add this scrollbar and tell it to make a text area with scrollbar and make it a new class Text area with scrollbar with border and make it a new class, look at the possibilities it has, it increases No, make a class, one scrollbar and wrap it in any form of UI component", "tokens": [286, 528, 281, 652, 257, 11369, 5356, 337, 552, 286, 528, 281, 652, 257, 11369, 5356, 337, 264, 2487, 1859, 11, 257, 11369, 5356, 337, 264, 4421, 32605, 286, 528, 281, 909, 341, 11369, 5356, 293, 980, 309, 281, 652, 257, 2487, 1859, 365, 11369, 5356, 293, 652, 309, 257, 777, 1508, 18643, 1859, 365, 11369, 5356, 365, 7838, 293, 652, 309, 257, 777, 1508, 11, 574, 412, 264, 12178, 309, 575, 11, 309, 8637, 883, 11, 652, 257, 1508, 11, 472, 11369, 5356, 293, 7019, 309, 294, 604, 1254, 295, 15682, 6542], "avg_logprob": -0.5013297808931229, "compression_ratio": 2.2528735632183907, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 2033.81, "end": 2033.99, "word": " I", "probability": 0.6572265625}, {"start": 2033.99, "end": 2034.11, "word": " want", "probability": 0.4755859375}, {"start": 2034.11, "end": 2034.19, "word": " to", "probability": 0.83349609375}, {"start": 2034.19, "end": 2034.31, "word": " make", "probability": 0.459716796875}, {"start": 2034.31, "end": 2034.55, "word": " a", "probability": 0.5205078125}, {"start": 2034.55, "end": 2035.03, "word": " scrollbar", "probability": 0.6568603515625}, {"start": 2035.03, "end": 2035.13, "word": " for", "probability": 0.5283203125}, {"start": 2035.13, "end": 2035.13, "word": " them", "probability": 0.5068359375}, {"start": 2035.13, "end": 2036.45, "word": " I", "probability": 0.55078125}, {"start": 2036.45, "end": 2036.63, "word": " want", "probability": 0.73193359375}, {"start": 2036.63, "end": 2036.67, "word": " to", "probability": 0.9052734375}, {"start": 2036.67, "end": 2036.75, "word": " make", "probability": 0.71044921875}, {"start": 2036.75, "end": 2036.89, "word": " a", "probability": 0.9384765625}, {"start": 2036.89, "end": 2037.33, "word": " scrollbar", "probability": 0.945556640625}, {"start": 2037.33, "end": 2037.47, "word": " for", "probability": 0.849609375}, {"start": 2037.47, "end": 2037.53, "word": " the", "probability": 0.51708984375}, {"start": 2037.53, "end": 2037.73, "word": " text", "probability": 0.80517578125}, {"start": 2037.73, "end": 2038.09, "word": " area,", "probability": 0.65478515625}, {"start": 2038.27, "end": 2038.89, "word": " a", "probability": 0.32373046875}, {"start": 2038.89, "end": 2039.29, "word": " scrollbar", "probability": 0.943359375}, {"start": 2039.29, "end": 2039.45, "word": " for", "probability": 0.93505859375}, {"start": 2039.45, "end": 2039.51, "word": " the", "probability": 0.78564453125}, {"start": 2039.51, "end": 2039.79, "word": " tab", "probability": 0.71630859375}, {"start": 2039.79, "end": 2040.09, "word": " pane", "probability": 0.360595703125}, {"start": 2040.09, "end": 2041.05, "word": " I", "probability": 0.2132568359375}, {"start": 2041.05, "end": 2041.05, "word": " want", "probability": 0.62744140625}, {"start": 2041.05, "end": 2041.05, "word": " to", "probability": 0.9453125}, {"start": 2041.05, "end": 2041.05, "word": " add", "probability": 0.57861328125}, {"start": 2041.05, "end": 2041.13, "word": " this", "probability": 0.50634765625}, {"start": 2041.13, "end": 2041.81, "word": " scrollbar", "probability": 0.96044921875}, {"start": 2041.81, "end": 2042.67, "word": " and", "probability": 0.461669921875}, {"start": 2042.67, "end": 2043.35, "word": " tell", "probability": 0.2298583984375}, {"start": 2043.35, "end": 2043.55, "word": " it", "probability": 0.53759765625}, {"start": 2043.55, "end": 2043.65, "word": " to", "probability": 0.7802734375}, {"start": 2043.65, "end": 2043.89, "word": " make", "probability": 0.62548828125}, {"start": 2043.89, "end": 2045.21, "word": " a", "probability": 0.86083984375}, {"start": 2045.21, "end": 2045.45, "word": " text", "probability": 0.6396484375}, {"start": 2045.45, "end": 2045.87, "word": " area", "probability": 0.8193359375}, {"start": 2045.87, "end": 2046.25, "word": " with", "probability": 0.849609375}, {"start": 2046.25, "end": 2046.81, "word": " scrollbar", "probability": 0.810546875}, {"start": 2046.81, "end": 2046.93, "word": " and", "probability": 0.310546875}, {"start": 2046.93, "end": 2047.05, "word": " make", "probability": 0.6201171875}, {"start": 2047.05, "end": 2047.17, "word": " it", "probability": 0.69970703125}, {"start": 2047.17, "end": 2047.17, "word": " a", "probability": 0.79345703125}, {"start": 2047.17, "end": 2047.63, "word": " new", "probability": 0.89306640625}, {"start": 2047.63, "end": 2047.63, "word": " class", "probability": 0.94873046875}, {"start": 2047.63, "end": 2049.37, "word": " Text", "probability": 0.186767578125}, {"start": 2049.37, "end": 2050.13, "word": " area", "probability": 0.5673828125}, {"start": 2050.13, "end": 2050.39, "word": " with", "probability": 0.90673828125}, {"start": 2050.39, "end": 2051.03, "word": " scrollbar", "probability": 0.929931640625}, {"start": 2051.03, "end": 2051.25, "word": " with", "probability": 0.79150390625}, {"start": 2051.25, "end": 2051.63, "word": " border", "probability": 0.83984375}, {"start": 2051.63, "end": 2051.77, "word": " and", "probability": 0.411865234375}, {"start": 2051.77, "end": 2051.87, "word": " make", "probability": 0.888671875}, {"start": 2051.87, "end": 2052.03, "word": " it", "probability": 0.900390625}, {"start": 2052.03, "end": 2052.05, "word": " a", "probability": 0.94140625}, {"start": 2052.05, "end": 2052.33, "word": " new", "probability": 0.857421875}, {"start": 2052.33, "end": 2052.33, "word": " class,", "probability": 0.9580078125}, {"start": 2052.39, "end": 2052.57, "word": " look", "probability": 0.4482421875}, {"start": 2052.57, "end": 2052.63, "word": " at", "probability": 0.87548828125}, {"start": 2052.63, "end": 2052.67, "word": " the", "probability": 0.64794921875}, {"start": 2052.67, "end": 2053.13, "word": " possibilities", "probability": 0.654296875}, {"start": 2053.13, "end": 2053.27, "word": " it", "probability": 0.39599609375}, {"start": 2053.27, "end": 2053.71, "word": " has,", "probability": 0.8896484375}, {"start": 2053.71, "end": 2054.03, "word": " it", "probability": 0.69970703125}, {"start": 2054.03, "end": 2054.35, "word": " increases", "probability": 0.10809326171875}, {"start": 2054.35, "end": 2055.83, "word": " No,", "probability": 0.400146484375}, {"start": 2056.23, "end": 2056.45, "word": " make", "probability": 0.7958984375}, {"start": 2056.45, "end": 2056.59, "word": " a", "probability": 0.62939453125}, {"start": 2056.59, "end": 2056.81, "word": " class,", "probability": 0.78955078125}, {"start": 2056.93, "end": 2057.03, "word": " one", "probability": 0.53076171875}, {"start": 2057.03, "end": 2057.67, "word": " scrollbar", "probability": 0.95947265625}, {"start": 2057.67, "end": 2057.81, "word": " and", "probability": 0.1949462890625}, {"start": 2057.81, "end": 2058.25, "word": " wrap", "probability": 0.443603515625}, {"start": 2058.25, "end": 2058.85, "word": " it", "probability": 0.5966796875}, {"start": 2058.85, "end": 2059.01, "word": " in", "probability": 0.258544921875}, {"start": 2059.01, "end": 2059.17, "word": " any", "probability": 0.7705078125}, {"start": 2059.17, "end": 2059.45, "word": " form", "probability": 0.166748046875}, {"start": 2059.45, "end": 2060.73, "word": " of", "probability": 0.61181640625}, {"start": 2060.73, "end": 2061.11, "word": " UI", "probability": 0.392578125}, {"start": 2061.11, "end": 2061.79, "word": " component", "probability": 0.78662109375}], "temperature": 1.0}, {"id": 80, "seek": 208988, "start": 2063.98, "end": 2089.88, "text": "Now, where did we get the idea guys? So we have two ways of adding, the way of subclassing and the way of the decorator Because this doesn't mean that the subclassing is bad and you don't use it, okay? No, you will say, okay, the doctor came, the subclassing has a problem, let's do what? The decorator all his life No, you are supposed to use the subclassing", "tokens": [13267, 11, 689, 630, 321, 483, 264, 1558, 1074, 30, 407, 321, 362, 732, 2098, 295, 5127, 11, 264, 636, 295, 1422, 11665, 278, 293, 264, 636, 295, 264, 7919, 1639, 1436, 341, 1177, 380, 914, 300, 264, 1422, 11665, 278, 307, 1578, 293, 291, 500, 380, 764, 309, 11, 1392, 30, 883, 11, 291, 486, 584, 11, 1392, 11, 264, 4631, 1361, 11, 264, 1422, 11665, 278, 575, 257, 1154, 11, 718, 311, 360, 437, 30, 440, 7919, 1639, 439, 702, 993, 883, 11, 291, 366, 3442, 281, 764, 264, 1422, 11665, 278], "avg_logprob": -0.46381578947368424, "compression_ratio": 1.7598039215686274, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 2063.98, "end": 2064.32, "word": "Now,", "probability": 0.2457275390625}, {"start": 2064.78, "end": 2065.02, "word": " where", "probability": 0.1510009765625}, {"start": 2065.02, "end": 2065.02, "word": " did", "probability": 0.67919921875}, {"start": 2065.02, "end": 2065.22, "word": " we", "probability": 0.87353515625}, {"start": 2065.22, "end": 2065.22, "word": " get", "probability": 0.398193359375}, {"start": 2065.22, "end": 2065.32, "word": " the", "probability": 0.57958984375}, {"start": 2065.32, "end": 2065.5, "word": " idea", "probability": 0.77783203125}, {"start": 2065.5, "end": 2066.14, "word": " guys?", "probability": 0.270751953125}, {"start": 2066.56, "end": 2066.66, "word": " So", "probability": 0.2296142578125}, {"start": 2066.66, "end": 2066.8, "word": " we", "probability": 0.3232421875}, {"start": 2066.8, "end": 2067.04, "word": " have", "probability": 0.63134765625}, {"start": 2067.04, "end": 2067.28, "word": " two", "probability": 0.70849609375}, {"start": 2067.28, "end": 2067.54, "word": " ways", "probability": 0.6044921875}, {"start": 2067.54, "end": 2067.74, "word": " of", "probability": 0.414794921875}, {"start": 2067.74, "end": 2068.04, "word": " adding,", "probability": 0.56201171875}, {"start": 2068.32, "end": 2068.42, "word": " the", "probability": 0.452392578125}, {"start": 2068.42, "end": 2068.56, "word": " way", "probability": 0.50927734375}, {"start": 2068.56, "end": 2068.7, "word": " of", "probability": 0.9287109375}, {"start": 2068.7, "end": 2069.46, "word": " subclassing", "probability": 0.8712565104166666}, {"start": 2069.46, "end": 2069.64, "word": " and", "probability": 0.8916015625}, {"start": 2069.64, "end": 2069.7, "word": " the", "probability": 0.828125}, {"start": 2069.7, "end": 2069.86, "word": " way", "probability": 0.8701171875}, {"start": 2069.86, "end": 2070.02, "word": " of", "probability": 0.9619140625}, {"start": 2070.02, "end": 2071.14, "word": " the", "probability": 0.54638671875}, {"start": 2071.14, "end": 2071.7, "word": " decorator", "probability": 0.95654296875}, {"start": 2071.7, "end": 2073.46, "word": " Because", "probability": 0.521484375}, {"start": 2073.46, "end": 2073.7, "word": " this", "probability": 0.7509765625}, {"start": 2073.7, "end": 2074.54, "word": " doesn't", "probability": 0.77587890625}, {"start": 2074.54, "end": 2074.92, "word": " mean", "probability": 0.95166015625}, {"start": 2074.92, "end": 2075.18, "word": " that", "probability": 0.88427734375}, {"start": 2075.18, "end": 2075.3, "word": " the", "probability": 0.677734375}, {"start": 2075.3, "end": 2076.06, "word": " subclassing", "probability": 0.9557291666666666}, {"start": 2076.06, "end": 2076.22, "word": " is", "probability": 0.8916015625}, {"start": 2076.22, "end": 2076.52, "word": " bad", "probability": 0.8515625}, {"start": 2076.52, "end": 2077.08, "word": " and", "probability": 0.771484375}, {"start": 2077.08, "end": 2077.2, "word": " you", "probability": 0.611328125}, {"start": 2077.2, "end": 2077.2, "word": " don't", "probability": 0.897216796875}, {"start": 2077.2, "end": 2077.52, "word": " use", "probability": 0.8583984375}, {"start": 2077.52, "end": 2077.96, "word": " it,", "probability": 0.9462890625}, {"start": 2078.66, "end": 2078.92, "word": " okay?", "probability": 0.421630859375}, {"start": 2079.2, "end": 2079.36, "word": " No,", "probability": 0.431396484375}, {"start": 2079.42, "end": 2079.54, "word": " you", "probability": 0.65087890625}, {"start": 2079.54, "end": 2079.54, "word": " will", "probability": 0.275390625}, {"start": 2079.54, "end": 2079.68, "word": " say,", "probability": 0.88525390625}, {"start": 2079.72, "end": 2080.18, "word": " okay,", "probability": 0.264892578125}, {"start": 2080.32, "end": 2080.46, "word": " the", "probability": 0.74609375}, {"start": 2080.46, "end": 2080.68, "word": " doctor", "probability": 0.8525390625}, {"start": 2080.68, "end": 2080.9, "word": " came,", "probability": 0.415283203125}, {"start": 2081.32, "end": 2081.7, "word": " the", "probability": 0.712890625}, {"start": 2081.7, "end": 2082.1, "word": " subclassing", "probability": 0.8759765625}, {"start": 2082.1, "end": 2082.2, "word": " has", "probability": 0.75439453125}, {"start": 2082.2, "end": 2082.3, "word": " a", "probability": 0.9013671875}, {"start": 2082.3, "end": 2082.58, "word": " problem,", "probability": 0.85546875}, {"start": 2082.96, "end": 2083.22, "word": " let's", "probability": 0.788818359375}, {"start": 2083.22, "end": 2083.42, "word": " do", "probability": 0.83251953125}, {"start": 2083.42, "end": 2083.74, "word": " what?", "probability": 0.6484375}, {"start": 2084.54, "end": 2085.06, "word": " The", "probability": 0.0997314453125}, {"start": 2085.06, "end": 2085.52, "word": " decorator", "probability": 0.981689453125}, {"start": 2085.52, "end": 2085.52, "word": " all", "probability": 0.1390380859375}, {"start": 2085.52, "end": 2085.52, "word": " his", "probability": 0.56396484375}, {"start": 2085.52, "end": 2085.52, "word": " life", "probability": 0.9326171875}, {"start": 2085.52, "end": 2086.46, "word": " No,", "probability": 0.28173828125}, {"start": 2087.06, "end": 2087.32, "word": " you", "probability": 0.40185546875}, {"start": 2087.32, "end": 2087.34, "word": " are", "probability": 0.30029296875}, {"start": 2087.34, "end": 2087.78, "word": " supposed", "probability": 0.329345703125}, {"start": 2087.78, "end": 2088.7, "word": " to", "probability": 0.97119140625}, {"start": 2088.7, "end": 2089.1, "word": " use", "probability": 0.8916015625}, {"start": 2089.1, "end": 2089.28, "word": " the", "probability": 0.6904296875}, {"start": 2089.28, "end": 2089.88, "word": " subclassing", "probability": 0.951171875}], "temperature": 1.0}, {"id": 81, "seek": 211748, "start": 2090.39, "end": 2117.49, "text": "But let's say that in some cases, using subclassing will cause an explosion of classes, a large number of classes. When you need to add these ten classes to make another ten classes, there is a negativity here. So you resort to using a decorator to make one class to add the feature to the ten you have. So if the use of subclassing causes the creation of a large number of classes, then you resort to the decorator.", "tokens": [7835, 718, 311, 584, 300, 294, 512, 3331, 11, 1228, 1422, 11665, 278, 486, 3082, 364, 15673, 295, 5359, 11, 257, 2416, 1230, 295, 5359, 13, 1133, 291, 643, 281, 909, 613, 2064, 5359, 281, 652, 1071, 2064, 5359, 11, 456, 307, 257, 2485, 10662, 507, 510, 13, 407, 291, 19606, 281, 1228, 257, 7919, 1639, 281, 652, 472, 1508, 281, 909, 264, 4111, 281, 264, 2064, 291, 362, 13, 407, 498, 264, 764, 295, 1422, 11665, 278, 7700, 264, 8016, 295, 257, 2416, 1230, 295, 5359, 11, 550, 291, 19606, 281, 264, 7919, 1639, 13], "avg_logprob": -0.47068298969072164, "compression_ratio": 1.9439252336448598, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 2090.39, "end": 2090.69, "word": "But", "probability": 0.35302734375}, {"start": 2090.69, "end": 2090.97, "word": " let's", "probability": 0.56817626953125}, {"start": 2090.97, "end": 2090.97, "word": " say", "probability": 0.81494140625}, {"start": 2090.97, "end": 2091.15, "word": " that", "probability": 0.447021484375}, {"start": 2091.15, "end": 2091.17, "word": " in", "probability": 0.8134765625}, {"start": 2091.17, "end": 2091.51, "word": " some", "probability": 0.83203125}, {"start": 2091.51, "end": 2092.11, "word": " cases,", "probability": 0.86767578125}, {"start": 2092.81, "end": 2093.15, "word": " using", "probability": 0.6611328125}, {"start": 2093.15, "end": 2094.03, "word": " subclassing", "probability": 0.7828776041666666}, {"start": 2094.03, "end": 2094.19, "word": " will", "probability": 0.50146484375}, {"start": 2094.19, "end": 2094.47, "word": " cause", "probability": 0.5458984375}, {"start": 2094.47, "end": 2094.77, "word": " an", "probability": 0.50390625}, {"start": 2094.77, "end": 2094.99, "word": " explosion", "probability": 0.66064453125}, {"start": 2094.99, "end": 2095.39, "word": " of", "probability": 0.94580078125}, {"start": 2095.39, "end": 2095.87, "word": " classes,", "probability": 0.87060546875}, {"start": 2096.35, "end": 2096.61, "word": " a", "probability": 0.430908203125}, {"start": 2096.61, "end": 2097.07, "word": " large", "probability": 0.5380859375}, {"start": 2097.07, "end": 2097.07, "word": " number", "probability": 0.9052734375}, {"start": 2097.07, "end": 2097.25, "word": " of", "probability": 0.96484375}, {"start": 2097.25, "end": 2097.57, "word": " classes.", "probability": 0.9033203125}, {"start": 2097.65, "end": 2097.77, "word": " When", "probability": 0.57373046875}, {"start": 2097.77, "end": 2098.15, "word": " you", "probability": 0.9453125}, {"start": 2098.15, "end": 2098.41, "word": " need", "probability": 0.5244140625}, {"start": 2098.41, "end": 2098.61, "word": " to", "probability": 0.9482421875}, {"start": 2098.61, "end": 2099.05, "word": " add", "probability": 0.7373046875}, {"start": 2099.05, "end": 2099.69, "word": " these", "probability": 0.4541015625}, {"start": 2099.69, "end": 2100.37, "word": " ten", "probability": 0.36767578125}, {"start": 2100.37, "end": 2100.85, "word": " classes", "probability": 0.89794921875}, {"start": 2100.85, "end": 2101.01, "word": " to", "probability": 0.3603515625}, {"start": 2101.01, "end": 2101.11, "word": " make", "probability": 0.328369140625}, {"start": 2101.11, "end": 2101.57, "word": " another", "probability": 0.2041015625}, {"start": 2101.57, "end": 2101.89, "word": " ten", "probability": 0.939453125}, {"start": 2101.89, "end": 2102.29, "word": " classes,", "probability": 0.86865234375}, {"start": 2102.71, "end": 2103.69, "word": " there", "probability": 0.32421875}, {"start": 2103.69, "end": 2103.85, "word": " is", "probability": 0.623046875}, {"start": 2103.85, "end": 2103.97, "word": " a", "probability": 0.615234375}, {"start": 2103.97, "end": 2104.25, "word": " negativity", "probability": 0.5872395833333334}, {"start": 2104.25, "end": 2104.25, "word": " here.", "probability": 0.43212890625}, {"start": 2104.35, "end": 2104.39, "word": " So", "probability": 0.5791015625}, {"start": 2104.39, "end": 2104.59, "word": " you", "probability": 0.261474609375}, {"start": 2104.59, "end": 2104.71, "word": " resort", "probability": 0.54296875}, {"start": 2104.71, "end": 2104.95, "word": " to", "probability": 0.97216796875}, {"start": 2104.95, "end": 2106.05, "word": " using", "probability": 0.79248046875}, {"start": 2106.05, "end": 2106.29, "word": " a", "probability": 0.35107421875}, {"start": 2106.29, "end": 2106.75, "word": " decorator", "probability": 0.964111328125}, {"start": 2106.75, "end": 2107.01, "word": " to", "probability": 0.7880859375}, {"start": 2107.01, "end": 2107.27, "word": " make", "probability": 0.55859375}, {"start": 2107.27, "end": 2107.41, "word": " one", "probability": 0.55517578125}, {"start": 2107.41, "end": 2108.07, "word": " class", "probability": 0.92333984375}, {"start": 2108.07, "end": 2108.69, "word": " to", "probability": 0.1925048828125}, {"start": 2108.69, "end": 2108.87, "word": " add", "probability": 0.9013671875}, {"start": 2108.87, "end": 2109.03, "word": " the", "probability": 0.72216796875}, {"start": 2109.03, "end": 2109.29, "word": " feature", "probability": 0.84033203125}, {"start": 2109.29, "end": 2109.51, "word": " to", "probability": 0.50634765625}, {"start": 2109.51, "end": 2109.59, "word": " the", "probability": 0.796875}, {"start": 2109.59, "end": 2109.81, "word": " ten", "probability": 0.84814453125}, {"start": 2109.81, "end": 2110.55, "word": " you", "probability": 0.2998046875}, {"start": 2110.55, "end": 2110.83, "word": " have.", "probability": 0.81201171875}, {"start": 2111.71, "end": 2111.89, "word": " So", "probability": 0.71435546875}, {"start": 2111.89, "end": 2112.05, "word": " if", "probability": 0.86865234375}, {"start": 2112.05, "end": 2112.71, "word": " the", "probability": 0.279052734375}, {"start": 2112.71, "end": 2113.01, "word": " use", "probability": 0.69775390625}, {"start": 2113.01, "end": 2113.27, "word": " of", "probability": 0.97021484375}, {"start": 2113.27, "end": 2113.97, "word": " subclassing", "probability": 0.9480794270833334}, {"start": 2113.97, "end": 2113.99, "word": " causes", "probability": 0.285888671875}, {"start": 2113.99, "end": 2114.07, "word": " the", "probability": 0.51513671875}, {"start": 2114.07, "end": 2114.29, "word": " creation", "probability": 0.7666015625}, {"start": 2114.29, "end": 2114.43, "word": " of", "probability": 0.974609375}, {"start": 2114.43, "end": 2114.63, "word": " a", "probability": 0.453125}, {"start": 2114.63, "end": 2114.81, "word": " large", "probability": 0.841796875}, {"start": 2114.81, "end": 2114.87, "word": " number", "probability": 0.95166015625}, {"start": 2114.87, "end": 2114.99, "word": " of", "probability": 0.97119140625}, {"start": 2114.99, "end": 2115.29, "word": " classes,", "probability": 0.89892578125}, {"start": 2115.43, "end": 2115.49, "word": " then", "probability": 0.1822509765625}, {"start": 2115.49, "end": 2115.61, "word": " you", "probability": 0.5361328125}, {"start": 2115.61, "end": 2115.95, "word": " resort", "probability": 0.6162109375}, {"start": 2115.95, "end": 2116.27, "word": " to", "probability": 0.97265625}, {"start": 2116.27, "end": 2117.03, "word": " the", "probability": 0.69921875}, {"start": 2117.03, "end": 2117.49, "word": " decorator.", "probability": 0.9853515625}], "temperature": 1.0}, {"id": 82, "seek": 214760, "start": 2120.66, "end": 2147.6, "text": "Now, based on this talk, let's see where we are in Java or in JavaFX. We use the decorator pattern, and you use the decorator pattern, and you don't know that this is an application on the decorator. I told you in Java how to write and read files.", "tokens": [13267, 11, 2361, 322, 341, 751, 11, 718, 311, 536, 689, 321, 366, 294, 10745, 420, 294, 10745, 36092, 13, 492, 764, 264, 7919, 1639, 5102, 11, 293, 291, 764, 264, 7919, 1639, 5102, 11, 293, 291, 500, 380, 458, 300, 341, 307, 364, 3861, 322, 264, 7919, 1639, 13, 286, 1907, 291, 294, 10745, 577, 281, 2464, 293, 1401, 7098, 13], "avg_logprob": -0.49503970903063577, "compression_ratio": 1.6466666666666667, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 2120.66, "end": 2121.06, "word": "Now,", "probability": 0.295654296875}, {"start": 2121.14, "end": 2121.24, "word": " based", "probability": 0.61279296875}, {"start": 2121.24, "end": 2121.5, "word": " on", "probability": 0.94091796875}, {"start": 2121.5, "end": 2121.66, "word": " this", "probability": 0.5048828125}, {"start": 2121.66, "end": 2121.86, "word": " talk,", "probability": 0.2183837890625}, {"start": 2122.14, "end": 2124.96, "word": " let's", "probability": 0.6949462890625}, {"start": 2124.96, "end": 2125.94, "word": " see", "probability": 0.36572265625}, {"start": 2125.94, "end": 2126.34, "word": " where", "probability": 0.65234375}, {"start": 2126.34, "end": 2126.82, "word": " we", "probability": 0.6611328125}, {"start": 2126.82, "end": 2126.88, "word": " are", "probability": 0.6337890625}, {"start": 2126.88, "end": 2127.96, "word": " in", "probability": 0.63330078125}, {"start": 2127.96, "end": 2128.44, "word": " Java", "probability": 0.55126953125}, {"start": 2128.44, "end": 2132.38, "word": " or", "probability": 0.63427734375}, {"start": 2132.38, "end": 2132.58, "word": " in", "probability": 0.5087890625}, {"start": 2132.58, "end": 2133.34, "word": " JavaFX.", "probability": 0.6923828125}, {"start": 2134.14, "end": 2134.7, "word": " We", "probability": 0.3740234375}, {"start": 2134.7, "end": 2135.16, "word": " use", "probability": 0.5849609375}, {"start": 2135.16, "end": 2135.36, "word": " the", "probability": 0.73095703125}, {"start": 2135.36, "end": 2135.78, "word": " decorator", "probability": 0.904052734375}, {"start": 2135.78, "end": 2136.22, "word": " pattern,", "probability": 0.88427734375}, {"start": 2136.32, "end": 2136.4, "word": " and", "probability": 0.499267578125}, {"start": 2136.4, "end": 2136.56, "word": " you", "probability": 0.80078125}, {"start": 2136.56, "end": 2137.08, "word": " use", "probability": 0.329833984375}, {"start": 2137.08, "end": 2137.3, "word": " the", "probability": 0.44482421875}, {"start": 2137.3, "end": 2137.72, "word": " decorator", "probability": 0.97412109375}, {"start": 2137.72, "end": 2138.1, "word": " pattern,", "probability": 0.89111328125}, {"start": 2138.18, "end": 2138.24, "word": " and", "probability": 0.64794921875}, {"start": 2138.24, "end": 2138.42, "word": " you", "probability": 0.9150390625}, {"start": 2138.42, "end": 2138.56, "word": " don't", "probability": 0.7822265625}, {"start": 2138.56, "end": 2138.92, "word": " know", "probability": 0.533203125}, {"start": 2138.92, "end": 2139.94, "word": " that", "probability": 0.359619140625}, {"start": 2139.94, "end": 2140.22, "word": " this", "probability": 0.49365234375}, {"start": 2140.22, "end": 2140.36, "word": " is", "probability": 0.78662109375}, {"start": 2140.36, "end": 2140.4, "word": " an", "probability": 0.414306640625}, {"start": 2140.4, "end": 2140.68, "word": " application", "probability": 0.7373046875}, {"start": 2140.68, "end": 2140.84, "word": " on", "probability": 0.6357421875}, {"start": 2140.84, "end": 2140.94, "word": " the", "probability": 0.64501953125}, {"start": 2140.94, "end": 2141.38, "word": " decorator.", "probability": 0.986083984375}, {"start": 2144.14, "end": 2144.7, "word": " I", "probability": 0.74755859375}, {"start": 2144.7, "end": 2145.0, "word": " told", "probability": 0.331298828125}, {"start": 2145.0, "end": 2145.22, "word": " you", "probability": 0.9541015625}, {"start": 2145.22, "end": 2145.3, "word": " in", "probability": 0.7060546875}, {"start": 2145.3, "end": 2145.62, "word": " Java", "probability": 0.84521484375}, {"start": 2145.62, "end": 2145.86, "word": " how", "probability": 0.65380859375}, {"start": 2145.86, "end": 2146.3, "word": " to", "probability": 0.71826171875}, {"start": 2146.3, "end": 2146.6, "word": " write", "probability": 0.71435546875}, {"start": 2146.6, "end": 2146.8, "word": " and", "probability": 0.8896484375}, {"start": 2146.8, "end": 2147.04, "word": " read", "probability": 0.9814453125}, {"start": 2147.04, "end": 2147.6, "word": " files.", "probability": 0.71142578125}], "temperature": 1.0}, {"id": 83, "seek": 217202, "start": 2148.44, "end": 2172.02, "text": "So he used to say for example to write on file go and create object from file output stream of FOS for example that I named it equals new file output stream and it takes object from type for example file", "tokens": [6455, 415, 1143, 281, 584, 337, 1365, 281, 2464, 322, 3991, 352, 293, 1884, 2657, 490, 3991, 5598, 4309, 295, 479, 4367, 337, 1365, 300, 286, 4926, 309, 6915, 777, 3991, 5598, 4309, 293, 309, 2516, 2657, 490, 2010, 337, 1365, 3991], "avg_logprob": -0.5781249778215275, "compression_ratio": 1.6504065040650406, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 2148.44, "end": 2149.04, "word": "So", "probability": 0.1199951171875}, {"start": 2149.04, "end": 2149.24, "word": " he", "probability": 0.322021484375}, {"start": 2149.24, "end": 2149.32, "word": " used", "probability": 0.198974609375}, {"start": 2149.32, "end": 2149.32, "word": " to", "probability": 0.95361328125}, {"start": 2149.32, "end": 2149.48, "word": " say", "probability": 0.54150390625}, {"start": 2149.48, "end": 2149.7, "word": " for", "probability": 0.394287109375}, {"start": 2149.7, "end": 2149.92, "word": " example", "probability": 0.82958984375}, {"start": 2149.92, "end": 2150.26, "word": " to", "probability": 0.48486328125}, {"start": 2150.26, "end": 2150.54, "word": " write", "probability": 0.70068359375}, {"start": 2150.54, "end": 2150.72, "word": " on", "probability": 0.463134765625}, {"start": 2150.72, "end": 2151.04, "word": " file", "probability": 0.50341796875}, {"start": 2151.04, "end": 2151.92, "word": " go", "probability": 0.22265625}, {"start": 2151.92, "end": 2152.1, "word": " and", "probability": 0.55322265625}, {"start": 2152.1, "end": 2152.22, "word": " create", "probability": 0.794921875}, {"start": 2152.22, "end": 2152.72, "word": " object", "probability": 0.59521484375}, {"start": 2152.72, "end": 2152.98, "word": " from", "probability": 0.74365234375}, {"start": 2152.98, "end": 2154.26, "word": " file", "probability": 0.72607421875}, {"start": 2154.26, "end": 2156.78, "word": " output", "probability": 0.8310546875}, {"start": 2156.78, "end": 2157.88, "word": " stream", "probability": 0.88720703125}, {"start": 2157.88, "end": 2160.98, "word": " of", "probability": 0.40966796875}, {"start": 2160.98, "end": 2161.86, "word": " FOS", "probability": 0.629638671875}, {"start": 2161.86, "end": 2162.06, "word": " for", "probability": 0.368408203125}, {"start": 2162.06, "end": 2162.14, "word": " example", "probability": 0.9619140625}, {"start": 2162.14, "end": 2162.14, "word": " that", "probability": 0.1776123046875}, {"start": 2162.14, "end": 2162.24, "word": " I", "probability": 0.77490234375}, {"start": 2162.24, "end": 2162.58, "word": " named", "probability": 0.60009765625}, {"start": 2162.58, "end": 2162.94, "word": " it", "probability": 0.53173828125}, {"start": 2162.94, "end": 2163.4, "word": " equals", "probability": 0.3515625}, {"start": 2163.4, "end": 2163.82, "word": " new", "probability": 0.73583984375}, {"start": 2163.82, "end": 2165.36, "word": " file", "probability": 0.830078125}, {"start": 2165.36, "end": 2166.46, "word": " output", "probability": 0.95849609375}, {"start": 2166.46, "end": 2167.24, "word": " stream", "probability": 0.94775390625}, {"start": 2167.24, "end": 2169.88, "word": " and", "probability": 0.62841796875}, {"start": 2169.88, "end": 2169.98, "word": " it", "probability": 0.4755859375}, {"start": 2169.98, "end": 2170.16, "word": " takes", "probability": 0.62158203125}, {"start": 2170.16, "end": 2170.54, "word": " object", "probability": 0.7548828125}, {"start": 2170.54, "end": 2170.66, "word": " from", "probability": 0.666015625}, {"start": 2170.66, "end": 2170.98, "word": " type", "probability": 0.243896484375}, {"start": 2170.98, "end": 2171.22, "word": " for", "probability": 0.375244140625}, {"start": 2171.22, "end": 2171.46, "word": " example", "probability": 0.96630859375}, {"start": 2171.46, "end": 2172.02, "word": " file", "probability": 0.8544921875}], "temperature": 1.0}, {"id": 84, "seek": 219901, "start": 2173.75, "end": 2199.01, "text": " Now, if you want to write the output stream file directly by using it, it is annoying because it has a write method and it takes binary data, for example. Okay? So it is difficult to use it. So to make it easier to use it, it told you to create another object from PrintWriter.pr and you give it PrintWriter and you give it the file", "tokens": [823, 11, 498, 291, 528, 281, 2464, 264, 5598, 4309, 3991, 3838, 538, 1228, 309, 11, 309, 307, 11304, 570, 309, 575, 257, 2464, 3170, 293, 309, 2516, 17434, 1412, 11, 337, 1365, 13, 1033, 30, 407, 309, 307, 2252, 281, 764, 309, 13, 407, 281, 652, 309, 3571, 281, 764, 309, 11, 309, 1907, 291, 281, 1884, 1071, 2657, 490, 34439, 54, 81, 1681, 13, 1424, 293, 291, 976, 309, 34439, 54, 81, 1681, 293, 291, 976, 309, 264, 3991], "avg_logprob": -0.4561737772168183, "compression_ratio": 1.6243902439024391, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 2173.75, "end": 2174.11, "word": " Now,", "probability": 0.130859375}, {"start": 2174.29, "end": 2174.37, "word": " if", "probability": 0.33447265625}, {"start": 2174.37, "end": 2174.37, "word": " you", "probability": 0.93115234375}, {"start": 2174.37, "end": 2174.37, "word": " want", "probability": 0.7177734375}, {"start": 2174.37, "end": 2174.37, "word": " to", "probability": 0.923828125}, {"start": 2174.37, "end": 2174.37, "word": " write", "probability": 0.4658203125}, {"start": 2174.37, "end": 2174.37, "word": " the", "probability": 0.34814453125}, {"start": 2174.37, "end": 2174.83, "word": " output", "probability": 0.7822265625}, {"start": 2174.83, "end": 2175.29, "word": " stream", "probability": 0.8662109375}, {"start": 2175.29, "end": 2175.95, "word": " file", "probability": 0.3515625}, {"start": 2175.95, "end": 2176.53, "word": " directly", "probability": 0.76318359375}, {"start": 2176.53, "end": 2176.71, "word": " by", "probability": 0.275390625}, {"start": 2176.71, "end": 2177.05, "word": " using", "probability": 0.7705078125}, {"start": 2177.05, "end": 2177.41, "word": " it,", "probability": 0.8837890625}, {"start": 2177.87, "end": 2178.09, "word": " it", "probability": 0.7666015625}, {"start": 2178.09, "end": 2178.09, "word": " is", "probability": 0.5244140625}, {"start": 2178.09, "end": 2178.37, "word": " annoying", "probability": 0.485595703125}, {"start": 2178.37, "end": 2178.89, "word": " because", "probability": 0.529296875}, {"start": 2178.89, "end": 2179.03, "word": " it", "probability": 0.72509765625}, {"start": 2179.03, "end": 2179.25, "word": " has", "probability": 0.331298828125}, {"start": 2179.25, "end": 2179.41, "word": " a", "probability": 0.751953125}, {"start": 2179.41, "end": 2179.85, "word": " write", "probability": 0.54296875}, {"start": 2179.85, "end": 2179.89, "word": " method", "probability": 0.93359375}, {"start": 2179.89, "end": 2179.99, "word": " and", "probability": 0.61572265625}, {"start": 2179.99, "end": 2180.07, "word": " it", "probability": 0.304931640625}, {"start": 2180.07, "end": 2180.25, "word": " takes", "probability": 0.67431640625}, {"start": 2180.25, "end": 2180.59, "word": " binary", "probability": 0.845703125}, {"start": 2180.59, "end": 2180.91, "word": " data,", "probability": 0.9189453125}, {"start": 2181.03, "end": 2181.09, "word": " for", "probability": 0.72119140625}, {"start": 2181.09, "end": 2181.41, "word": " example.", "probability": 0.93701171875}, {"start": 2182.03, "end": 2182.23, "word": " Okay?", "probability": 0.2493896484375}, {"start": 2182.63, "end": 2182.93, "word": " So", "probability": 0.7841796875}, {"start": 2182.93, "end": 2183.15, "word": " it", "probability": 0.60009765625}, {"start": 2183.15, "end": 2183.15, "word": " is", "probability": 0.69921875}, {"start": 2183.15, "end": 2183.35, "word": " difficult", "probability": 0.5732421875}, {"start": 2183.35, "end": 2183.45, "word": " to", "probability": 0.9609375}, {"start": 2183.45, "end": 2183.73, "word": " use", "probability": 0.896484375}, {"start": 2183.73, "end": 2183.95, "word": " it.", "probability": 0.53271484375}, {"start": 2184.01, "end": 2184.09, "word": " So", "probability": 0.6611328125}, {"start": 2184.09, "end": 2184.31, "word": " to", "probability": 0.6328125}, {"start": 2184.31, "end": 2184.65, "word": " make", "probability": 0.73876953125}, {"start": 2184.65, "end": 2184.71, "word": " it", "probability": 0.493408203125}, {"start": 2184.71, "end": 2184.71, "word": " easier", "probability": 0.802734375}, {"start": 2184.71, "end": 2184.77, "word": " to", "probability": 0.8759765625}, {"start": 2184.77, "end": 2185.21, "word": " use", "probability": 0.89599609375}, {"start": 2185.21, "end": 2185.49, "word": " it,", "probability": 0.46630859375}, {"start": 2185.95, "end": 2186.11, "word": " it", "probability": 0.58935546875}, {"start": 2186.11, "end": 2186.23, "word": " told", "probability": 0.396240234375}, {"start": 2186.23, "end": 2186.39, "word": " you", "probability": 0.9052734375}, {"start": 2186.39, "end": 2186.47, "word": " to", "probability": 0.91552734375}, {"start": 2186.47, "end": 2186.63, "word": " create", "probability": 0.58740234375}, {"start": 2186.63, "end": 2186.75, "word": " another", "probability": 0.81396484375}, {"start": 2186.75, "end": 2187.05, "word": " object", "probability": 0.98046875}, {"start": 2187.05, "end": 2187.49, "word": " from", "probability": 0.732421875}, {"start": 2187.49, "end": 2188.25, "word": " PrintWriter", "probability": 0.685455322265625}, {"start": 2188.25, "end": 2192.61, "word": ".pr", "probability": 0.54290771484375}, {"start": 2192.61, "end": 2192.95, "word": " and", "probability": 0.6376953125}, {"start": 2192.95, "end": 2193.09, "word": " you", "probability": 0.483154296875}, {"start": 2193.09, "end": 2193.31, "word": " give", "probability": 0.72802734375}, {"start": 2193.31, "end": 2193.69, "word": " it", "probability": 0.9072265625}, {"start": 2193.69, "end": 2197.75, "word": " PrintWriter", "probability": 0.92919921875}, {"start": 2197.75, "end": 2198.09, "word": " and", "probability": 0.826171875}, {"start": 2198.09, "end": 2198.25, "word": " you", "probability": 0.8193359375}, {"start": 2198.25, "end": 2198.43, "word": " give", "probability": 0.8408203125}, {"start": 2198.43, "end": 2198.57, "word": " it", "probability": 0.875}, {"start": 2198.57, "end": 2198.67, "word": " the", "probability": 0.8544921875}, {"start": 2198.67, "end": 2199.01, "word": " file", "probability": 0.841796875}], "temperature": 1.0}, {"id": 85, "seek": 222223, "start": 2201.87, "end": 2222.23, "text": "This is how they used to say connect this one with this one. So what is the advantage of the print writer? You go and tell him PR and the print writer tells you to write on the file as if you were writing on the screen. You don't have to make a print lin like system.out. You write the text you want on the file.", "tokens": [5723, 307, 577, 436, 1143, 281, 584, 1745, 341, 472, 365, 341, 472, 13, 407, 437, 307, 264, 5002, 295, 264, 4482, 9936, 30, 509, 352, 293, 980, 796, 11568, 293, 264, 4482, 9936, 5112, 291, 281, 2464, 322, 264, 3991, 382, 498, 291, 645, 3579, 322, 264, 2568, 13, 509, 500, 380, 362, 281, 652, 257, 4482, 22896, 411, 1185, 13, 346, 13, 509, 2464, 264, 2487, 291, 528, 322, 264, 3991, 13], "avg_logprob": -0.6274999825159708, "compression_ratio": 1.7049180327868851, "no_speech_prob": 6.139278411865234e-06, "words": [{"start": 2201.87, "end": 2202.27, "word": "This", "probability": 0.0364990234375}, {"start": 2202.27, "end": 2202.37, "word": " is", "probability": 0.68359375}, {"start": 2202.37, "end": 2202.41, "word": " how", "probability": 0.5380859375}, {"start": 2202.41, "end": 2202.55, "word": " they", "probability": 0.62890625}, {"start": 2202.55, "end": 2202.61, "word": " used", "probability": 0.39013671875}, {"start": 2202.61, "end": 2202.61, "word": " to", "probability": 0.96923828125}, {"start": 2202.61, "end": 2202.73, "word": " say", "probability": 0.68994140625}, {"start": 2202.73, "end": 2203.09, "word": " connect", "probability": 0.31689453125}, {"start": 2203.09, "end": 2203.47, "word": " this", "probability": 0.44873046875}, {"start": 2203.47, "end": 2203.49, "word": " one", "probability": 0.11846923828125}, {"start": 2203.49, "end": 2203.61, "word": " with", "probability": 0.59912109375}, {"start": 2203.61, "end": 2203.87, "word": " this", "probability": 0.50146484375}, {"start": 2203.87, "end": 2204.15, "word": " one.", "probability": 0.87255859375}, {"start": 2204.95, "end": 2205.35, "word": " So", "probability": 0.287841796875}, {"start": 2205.35, "end": 2205.51, "word": " what", "probability": 0.7587890625}, {"start": 2205.51, "end": 2205.55, "word": " is", "probability": 0.56201171875}, {"start": 2205.55, "end": 2205.67, "word": " the", "probability": 0.5390625}, {"start": 2205.67, "end": 2205.81, "word": " advantage", "probability": 0.53564453125}, {"start": 2205.81, "end": 2205.95, "word": " of", "probability": 0.80517578125}, {"start": 2205.95, "end": 2206.05, "word": " the", "probability": 0.351806640625}, {"start": 2206.05, "end": 2206.25, "word": " print", "probability": 0.69775390625}, {"start": 2206.25, "end": 2206.63, "word": " writer?", "probability": 0.80517578125}, {"start": 2206.83, "end": 2207.11, "word": " You", "probability": 0.327392578125}, {"start": 2207.11, "end": 2207.39, "word": " go", "probability": 0.375}, {"start": 2207.39, "end": 2207.51, "word": " and", "probability": 0.58251953125}, {"start": 2207.51, "end": 2207.71, "word": " tell", "probability": 0.49853515625}, {"start": 2207.71, "end": 2207.85, "word": " him", "probability": 0.48779296875}, {"start": 2207.85, "end": 2208.27, "word": " PR", "probability": 0.5078125}, {"start": 2208.27, "end": 2209.05, "word": " and", "probability": 0.458740234375}, {"start": 2209.05, "end": 2209.45, "word": " the", "probability": 0.46826171875}, {"start": 2209.45, "end": 2209.75, "word": " print", "probability": 0.6767578125}, {"start": 2209.75, "end": 2210.07, "word": " writer", "probability": 0.88916015625}, {"start": 2210.07, "end": 2210.47, "word": " tells", "probability": 0.1844482421875}, {"start": 2210.47, "end": 2210.75, "word": " you", "probability": 0.95263671875}, {"start": 2210.75, "end": 2211.03, "word": " to", "probability": 0.80859375}, {"start": 2211.03, "end": 2211.23, "word": " write", "probability": 0.64501953125}, {"start": 2211.23, "end": 2211.37, "word": " on", "probability": 0.66796875}, {"start": 2211.37, "end": 2211.45, "word": " the", "probability": 0.5693359375}, {"start": 2211.45, "end": 2211.61, "word": " file", "probability": 0.802734375}, {"start": 2211.61, "end": 2211.79, "word": " as", "probability": 0.67431640625}, {"start": 2211.79, "end": 2211.91, "word": " if", "probability": 0.90087890625}, {"start": 2211.91, "end": 2212.07, "word": " you", "probability": 0.8935546875}, {"start": 2212.07, "end": 2212.07, "word": " were", "probability": 0.402587890625}, {"start": 2212.07, "end": 2212.21, "word": " writing", "probability": 0.849609375}, {"start": 2212.21, "end": 2212.31, "word": " on", "probability": 0.9169921875}, {"start": 2212.31, "end": 2212.41, "word": " the", "probability": 0.7373046875}, {"start": 2212.41, "end": 2212.63, "word": " screen.", "probability": 0.84619140625}, {"start": 2213.17, "end": 2213.57, "word": " You", "probability": 0.203369140625}, {"start": 2213.57, "end": 2213.71, "word": " don't", "probability": 0.585693359375}, {"start": 2213.71, "end": 2213.77, "word": " have", "probability": 0.2283935546875}, {"start": 2213.77, "end": 2213.81, "word": " to", "probability": 0.97119140625}, {"start": 2213.81, "end": 2213.97, "word": " make", "probability": 0.1444091796875}, {"start": 2213.97, "end": 2214.09, "word": " a", "probability": 0.60546875}, {"start": 2214.09, "end": 2214.45, "word": " print", "probability": 0.9365234375}, {"start": 2214.45, "end": 2215.89, "word": " lin", "probability": 0.1456298828125}, {"start": 2215.89, "end": 2216.97, "word": " like", "probability": 0.5009765625}, {"start": 2216.97, "end": 2217.37, "word": " system", "probability": 0.763671875}, {"start": 2217.37, "end": 2217.85, "word": ".out.", "probability": 0.826171875}, {"start": 2217.99, "end": 2218.19, "word": " You", "probability": 0.83056640625}, {"start": 2218.19, "end": 2218.41, "word": " write", "probability": 0.728515625}, {"start": 2218.41, "end": 2218.53, "word": " the", "probability": 0.50634765625}, {"start": 2218.53, "end": 2218.73, "word": " text", "probability": 0.88232421875}, {"start": 2218.73, "end": 2218.85, "word": " you", "probability": 0.4716796875}, {"start": 2218.85, "end": 2219.25, "word": " want", "probability": 0.81201171875}, {"start": 2219.25, "end": 2219.65, "word": " on", "probability": 0.2406005859375}, {"start": 2219.65, "end": 2221.93, "word": " the", "probability": 0.81396484375}, {"start": 2221.93, "end": 2222.23, "word": " file.", "probability": 0.89453125}], "temperature": 1.0}, {"id": 86, "seek": 225186, "start": 2224.28, "end": 2251.86, "text": " For example, when you write an object file, it will also tell you to create a file output stream, then create an object output stream, connect it to the output stream, and write a write object. It will take the object that you created, for example, a student or a course, and serialize it and write it on the file. Okay, why did we do it this way? They used to say, okay, do it this way, we want to do it this way. Yes, do it this way and connect it to this way, and it turns out this way.", "tokens": [1171, 1365, 11, 562, 291, 2464, 364, 2657, 3991, 11, 309, 486, 611, 980, 291, 281, 1884, 257, 3991, 5598, 4309, 11, 550, 1884, 364, 2657, 5598, 4309, 11, 1745, 309, 281, 264, 5598, 4309, 11, 293, 2464, 257, 2464, 2657, 13, 467, 486, 747, 264, 2657, 300, 291, 2942, 11, 337, 1365, 11, 257, 3107, 420, 257, 1164, 11, 293, 17436, 1125, 309, 293, 2464, 309, 322, 264, 3991, 13, 1033, 11, 983, 630, 321, 360, 309, 341, 636, 30, 814, 1143, 281, 584, 11, 1392, 11, 360, 309, 341, 636, 11, 321, 528, 281, 360, 309, 341, 636, 13, 1079, 11, 360, 309, 341, 636, 293, 1745, 309, 281, 341, 636, 11, 293, 309, 4523, 484, 341, 636, 13], "avg_logprob": -0.4933401690643342, "compression_ratio": 2.0762711864406778, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2224.28, "end": 2224.66, "word": " For", "probability": 0.220703125}, {"start": 2224.66, "end": 2225.06, "word": " example,", "probability": 0.890625}, {"start": 2225.76, "end": 2226.1, "word": " when", "probability": 0.740234375}, {"start": 2226.1, "end": 2226.24, "word": " you", "probability": 0.9443359375}, {"start": 2226.24, "end": 2226.58, "word": " write", "probability": 0.424072265625}, {"start": 2226.58, "end": 2226.8, "word": " an", "probability": 0.72265625}, {"start": 2226.8, "end": 2227.04, "word": " object", "probability": 0.8603515625}, {"start": 2227.04, "end": 2227.44, "word": " file,", "probability": 0.91259765625}, {"start": 2227.86, "end": 2228.54, "word": " it", "probability": 0.515625}, {"start": 2228.54, "end": 2228.6, "word": " will", "probability": 0.297119140625}, {"start": 2228.6, "end": 2228.6, "word": " also", "probability": 0.1649169921875}, {"start": 2228.6, "end": 2228.74, "word": " tell", "probability": 0.4287109375}, {"start": 2228.74, "end": 2228.88, "word": " you", "probability": 0.953125}, {"start": 2228.88, "end": 2228.98, "word": " to", "probability": 0.8544921875}, {"start": 2228.98, "end": 2229.14, "word": " create", "probability": 0.783203125}, {"start": 2229.14, "end": 2229.58, "word": " a", "probability": 0.382080078125}, {"start": 2229.58, "end": 2229.74, "word": " file", "probability": 0.673828125}, {"start": 2229.74, "end": 2230.04, "word": " output", "probability": 0.67138671875}, {"start": 2230.04, "end": 2230.4, "word": " stream,", "probability": 0.935546875}, {"start": 2230.78, "end": 2230.98, "word": " then", "probability": 0.448974609375}, {"start": 2230.98, "end": 2231.26, "word": " create", "probability": 0.410400390625}, {"start": 2231.26, "end": 2231.36, "word": " an", "probability": 0.72802734375}, {"start": 2231.36, "end": 2231.56, "word": " object", "probability": 0.94677734375}, {"start": 2231.56, "end": 2231.92, "word": " output", "probability": 0.89306640625}, {"start": 2231.92, "end": 2232.34, "word": " stream,", "probability": 0.9423828125}, {"start": 2232.76, "end": 2232.96, "word": " connect", "probability": 0.338134765625}, {"start": 2232.96, "end": 2233.16, "word": " it", "probability": 0.79833984375}, {"start": 2233.16, "end": 2233.26, "word": " to", "probability": 0.482177734375}, {"start": 2233.26, "end": 2233.36, "word": " the", "probability": 0.8017578125}, {"start": 2233.36, "end": 2233.64, "word": " output", "probability": 0.6025390625}, {"start": 2233.64, "end": 2234.1, "word": " stream,", "probability": 0.9501953125}, {"start": 2234.14, "end": 2234.74, "word": " and", "probability": 0.66796875}, {"start": 2234.74, "end": 2234.9, "word": " write", "probability": 0.63037109375}, {"start": 2234.9, "end": 2235.1, "word": " a", "probability": 0.2587890625}, {"start": 2235.1, "end": 2235.46, "word": " write", "probability": 0.71435546875}, {"start": 2235.46, "end": 2235.9, "word": " object.", "probability": 0.94677734375}, {"start": 2236.04, "end": 2236.24, "word": " It", "probability": 0.496337890625}, {"start": 2236.24, "end": 2236.26, "word": " will", "probability": 0.473876953125}, {"start": 2236.26, "end": 2236.42, "word": " take", "probability": 0.61767578125}, {"start": 2236.42, "end": 2236.54, "word": " the", "probability": 0.73681640625}, {"start": 2236.54, "end": 2236.8, "word": " object", "probability": 0.8681640625}, {"start": 2236.8, "end": 2236.94, "word": " that", "probability": 0.4287109375}, {"start": 2236.94, "end": 2237.12, "word": " you", "probability": 0.90576171875}, {"start": 2237.12, "end": 2237.38, "word": " created,", "probability": 0.298095703125}, {"start": 2237.48, "end": 2237.48, "word": " for", "probability": 0.4345703125}, {"start": 2237.48, "end": 2237.48, "word": " example,", "probability": 0.89794921875}, {"start": 2237.48, "end": 2237.5, "word": " a", "probability": 0.69140625}, {"start": 2237.5, "end": 2237.76, "word": " student", "probability": 0.90966796875}, {"start": 2237.76, "end": 2238.36, "word": " or", "probability": 0.8525390625}, {"start": 2238.36, "end": 2238.46, "word": " a", "probability": 0.435302734375}, {"start": 2238.46, "end": 2238.8, "word": " course,", "probability": 0.978515625}, {"start": 2239.4, "end": 2239.64, "word": " and", "probability": 0.41845703125}, {"start": 2239.64, "end": 2240.34, "word": " serialize", "probability": 0.6505126953125}, {"start": 2240.34, "end": 2240.5, "word": " it", "probability": 0.890625}, {"start": 2240.5, "end": 2240.56, "word": " and", "probability": 0.437255859375}, {"start": 2240.56, "end": 2240.76, "word": " write", "probability": 0.798828125}, {"start": 2240.76, "end": 2240.9, "word": " it", "probability": 0.8583984375}, {"start": 2240.9, "end": 2241.04, "word": " on", "probability": 0.64892578125}, {"start": 2241.04, "end": 2241.98, "word": " the", "probability": 0.794921875}, {"start": 2241.98, "end": 2242.24, "word": " file.", "probability": 0.82568359375}, {"start": 2244.36, "end": 2244.76, "word": " Okay,", "probability": 0.149169921875}, {"start": 2244.84, "end": 2245.06, "word": " why", "probability": 0.74951171875}, {"start": 2245.06, "end": 2245.24, "word": " did", "probability": 0.533203125}, {"start": 2245.24, "end": 2245.4, "word": " we", "probability": 0.9150390625}, {"start": 2245.4, "end": 2245.56, "word": " do", "probability": 0.70361328125}, {"start": 2245.56, "end": 2245.76, "word": " it", "probability": 0.2454833984375}, {"start": 2245.76, "end": 2245.82, "word": " this", "probability": 0.400390625}, {"start": 2245.82, "end": 2245.82, "word": " way?", "probability": 0.95654296875}, {"start": 2245.9, "end": 2246.04, "word": " They", "probability": 0.34375}, {"start": 2246.04, "end": 2246.08, "word": " used", "probability": 0.263671875}, {"start": 2246.08, "end": 2246.08, "word": " to", "probability": 0.9736328125}, {"start": 2246.08, "end": 2246.18, "word": " say,", "probability": 0.55224609375}, {"start": 2246.32, "end": 2246.48, "word": " okay,", "probability": 0.146484375}, {"start": 2246.6, "end": 2246.8, "word": " do", "probability": 0.50244140625}, {"start": 2246.8, "end": 2246.92, "word": " it", "probability": 0.60107421875}, {"start": 2246.92, "end": 2247.02, "word": " this", "probability": 0.78076171875}, {"start": 2247.02, "end": 2247.02, "word": " way,", "probability": 0.953125}, {"start": 2247.04, "end": 2247.2, "word": " we", "probability": 0.5791015625}, {"start": 2247.2, "end": 2247.42, "word": " want", "probability": 0.7998046875}, {"start": 2247.42, "end": 2247.64, "word": " to", "probability": 0.1900634765625}, {"start": 2247.64, "end": 2248.04, "word": " do", "probability": 0.8798828125}, {"start": 2248.04, "end": 2248.14, "word": " it", "probability": 0.8134765625}, {"start": 2248.14, "end": 2248.14, "word": " this", "probability": 0.8154296875}, {"start": 2248.14, "end": 2248.14, "word": " way.", "probability": 0.95458984375}, {"start": 2248.98, "end": 2249.12, "word": " Yes,", "probability": 0.327880859375}, {"start": 2249.26, "end": 2249.48, "word": " do", "probability": 0.591796875}, {"start": 2249.48, "end": 2249.78, "word": " it", "probability": 0.415771484375}, {"start": 2249.78, "end": 2249.8, "word": " this", "probability": 0.5546875}, {"start": 2249.8, "end": 2249.86, "word": " way", "probability": 0.94775390625}, {"start": 2249.86, "end": 2250.02, "word": " and", "probability": 0.5009765625}, {"start": 2250.02, "end": 2250.18, "word": " connect", "probability": 0.810546875}, {"start": 2250.18, "end": 2250.38, "word": " it", "probability": 0.8974609375}, {"start": 2250.38, "end": 2250.48, "word": " to", "probability": 0.51953125}, {"start": 2250.48, "end": 2250.78, "word": " this", "probability": 0.791015625}, {"start": 2250.78, "end": 2250.86, "word": " way,", "probability": 0.5234375}, {"start": 2251.08, "end": 2251.4, "word": " and", "probability": 0.494873046875}, {"start": 2251.4, "end": 2251.46, "word": " it", "probability": 0.75537109375}, {"start": 2251.46, "end": 2251.54, "word": " turns", "probability": 0.265380859375}, {"start": 2251.54, "end": 2251.6, "word": " out", "probability": 0.884765625}, {"start": 2251.6, "end": 2251.8, "word": " this", "probability": 0.445068359375}, {"start": 2251.8, "end": 2251.86, "word": " way.", "probability": 0.94775390625}], "temperature": 1.0}, {"id": 87, "seek": 227744, "start": 2252.69, "end": 2277.45, "text": "Okay? So why did they do it this way? And why do you connect this with this? Okay? Pay attention to me. In Java, we have different types of output streams. Okay? For example, we have a file output stream. Which is what is in her hand to write on the file. Binary data is written on the file. And for example, we have a socket output stream.", "tokens": [8297, 30, 407, 983, 630, 436, 360, 309, 341, 636, 30, 400, 983, 360, 291, 1745, 341, 365, 341, 30, 1033, 30, 11431, 3202, 281, 385, 13, 682, 10745, 11, 321, 362, 819, 3467, 295, 5598, 15842, 13, 1033, 30, 1171, 1365, 11, 321, 362, 257, 3991, 5598, 4309, 13, 3013, 307, 437, 307, 294, 720, 1011, 281, 2464, 322, 264, 3991, 13, 363, 4066, 1412, 307, 3720, 322, 264, 3991, 13, 400, 337, 1365, 11, 321, 362, 257, 19741, 5598, 4309, 13], "avg_logprob": -0.4211309633794285, "compression_ratio": 1.7171717171717171, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 2252.69, "end": 2252.95, "word": "Okay?", "probability": 0.11688232421875}, {"start": 2253.09, "end": 2253.23, "word": " So", "probability": 0.3017578125}, {"start": 2253.23, "end": 2253.69, "word": " why", "probability": 0.64990234375}, {"start": 2253.69, "end": 2253.93, "word": " did", "probability": 0.63916015625}, {"start": 2253.93, "end": 2254.01, "word": " they", "probability": 0.6171875}, {"start": 2254.01, "end": 2254.01, "word": " do", "probability": 0.64990234375}, {"start": 2254.01, "end": 2254.13, "word": " it", "probability": 0.775390625}, {"start": 2254.13, "end": 2254.33, "word": " this", "probability": 0.6669921875}, {"start": 2254.33, "end": 2254.67, "word": " way?", "probability": 0.955078125}, {"start": 2254.95, "end": 2255.05, "word": " And", "probability": 0.59912109375}, {"start": 2255.05, "end": 2255.21, "word": " why", "probability": 0.90185546875}, {"start": 2255.21, "end": 2255.29, "word": " do", "probability": 0.16748046875}, {"start": 2255.29, "end": 2255.37, "word": " you", "probability": 0.379638671875}, {"start": 2255.37, "end": 2255.51, "word": " connect", "probability": 0.6279296875}, {"start": 2255.51, "end": 2255.79, "word": " this", "probability": 0.4677734375}, {"start": 2255.79, "end": 2255.93, "word": " with", "probability": 0.412841796875}, {"start": 2255.93, "end": 2256.21, "word": " this?", "probability": 0.7109375}, {"start": 2256.67, "end": 2257.09, "word": " Okay?", "probability": 0.51806640625}, {"start": 2257.21, "end": 2257.39, "word": " Pay", "probability": 0.70654296875}, {"start": 2257.39, "end": 2257.51, "word": " attention", "probability": 0.93701171875}, {"start": 2257.51, "end": 2257.51, "word": " to", "probability": 0.57568359375}, {"start": 2257.51, "end": 2257.85, "word": " me.", "probability": 0.4248046875}, {"start": 2258.29, "end": 2258.73, "word": " In", "probability": 0.232666015625}, {"start": 2258.73, "end": 2259.29, "word": " Java,", "probability": 0.73095703125}, {"start": 2259.69, "end": 2259.69, "word": " we", "probability": 0.51806640625}, {"start": 2259.69, "end": 2260.45, "word": " have", "probability": 0.921875}, {"start": 2260.45, "end": 2260.57, "word": " different", "probability": 0.76904296875}, {"start": 2260.57, "end": 2260.91, "word": " types", "probability": 0.66650390625}, {"start": 2260.91, "end": 2261.57, "word": " of", "probability": 0.97021484375}, {"start": 2261.57, "end": 2261.93, "word": " output", "probability": 0.857421875}, {"start": 2261.93, "end": 2262.31, "word": " streams.", "probability": 0.75927734375}, {"start": 2263.11, "end": 2263.33, "word": " Okay?", "probability": 0.625}, {"start": 2263.73, "end": 2263.95, "word": " For", "probability": 0.79052734375}, {"start": 2263.95, "end": 2264.31, "word": " example,", "probability": 0.92724609375}, {"start": 2264.43, "end": 2264.43, "word": " we", "probability": 0.83251953125}, {"start": 2264.43, "end": 2264.73, "word": " have", "probability": 0.94677734375}, {"start": 2264.73, "end": 2265.07, "word": " a", "probability": 0.4423828125}, {"start": 2265.07, "end": 2265.41, "word": " file", "probability": 0.6962890625}, {"start": 2265.41, "end": 2265.77, "word": " output", "probability": 0.94287109375}, {"start": 2265.77, "end": 2266.19, "word": " stream.", "probability": 0.94580078125}, {"start": 2270.03, "end": 2270.59, "word": " Which", "probability": 0.6181640625}, {"start": 2270.59, "end": 2270.75, "word": " is", "probability": 0.833984375}, {"start": 2270.75, "end": 2270.95, "word": " what", "probability": 0.423095703125}, {"start": 2270.95, "end": 2271.05, "word": " is", "probability": 0.31396484375}, {"start": 2271.05, "end": 2271.07, "word": " in", "probability": 0.787109375}, {"start": 2271.07, "end": 2271.41, "word": " her", "probability": 0.389892578125}, {"start": 2271.41, "end": 2271.41, "word": " hand", "probability": 0.880859375}, {"start": 2271.41, "end": 2272.11, "word": " to", "probability": 0.61767578125}, {"start": 2272.11, "end": 2272.43, "word": " write", "probability": 0.8564453125}, {"start": 2272.43, "end": 2272.93, "word": " on", "probability": 0.7080078125}, {"start": 2272.93, "end": 2273.03, "word": " the", "probability": 0.693359375}, {"start": 2273.03, "end": 2273.29, "word": " file.", "probability": 0.814453125}, {"start": 2273.59, "end": 2273.89, "word": " Binary", "probability": 0.78759765625}, {"start": 2273.89, "end": 2274.21, "word": " data", "probability": 0.90869140625}, {"start": 2274.21, "end": 2274.29, "word": " is", "probability": 0.244140625}, {"start": 2274.29, "end": 2274.47, "word": " written", "probability": 0.89306640625}, {"start": 2274.47, "end": 2274.63, "word": " on", "probability": 0.9140625}, {"start": 2274.63, "end": 2274.71, "word": " the", "probability": 0.82421875}, {"start": 2274.71, "end": 2274.93, "word": " file.", "probability": 0.83642578125}, {"start": 2275.57, "end": 2275.67, "word": " And", "probability": 0.86279296875}, {"start": 2275.67, "end": 2275.77, "word": " for", "probability": 0.2210693359375}, {"start": 2275.77, "end": 2276.29, "word": " example,", "probability": 0.958984375}, {"start": 2276.35, "end": 2276.35, "word": " we", "probability": 0.8193359375}, {"start": 2276.35, "end": 2276.35, "word": " have", "probability": 0.9453125}, {"start": 2276.35, "end": 2276.47, "word": " a", "probability": 0.80517578125}, {"start": 2276.47, "end": 2276.71, "word": " socket", "probability": 0.876953125}, {"start": 2276.71, "end": 2277.07, "word": " output", "probability": 0.92724609375}, {"start": 2277.07, "end": 2277.45, "word": " stream.", "probability": 0.9384765625}], "temperature": 1.0}, {"id": 88, "seek": 231152, "start": 2282.7, "end": 2311.52, "text": "What is it for? To write on the network. You give it a specific IP and it writes on the network. You can make a chat program on another device or send files to another device. You use the output stream socket. This is written on the file and this is written on the socket. And there are other types of output streams. I did not bring them with me this time. Now, all of these are output streams. Actually, when you want to write data on them, you want to write the data in binary data. That is, you want to send a string, you have to turn the string into characters and binary and a story.", "tokens": [3748, 307, 309, 337, 30, 1407, 2464, 322, 264, 3209, 13, 509, 976, 309, 257, 2685, 8671, 293, 309, 13657, 322, 264, 3209, 13, 509, 393, 652, 257, 5081, 1461, 322, 1071, 4302, 420, 2845, 7098, 281, 1071, 4302, 13, 509, 764, 264, 5598, 4309, 19741, 13, 639, 307, 3720, 322, 264, 3991, 293, 341, 307, 3720, 322, 264, 19741, 13, 400, 456, 366, 661, 3467, 295, 5598, 15842, 13, 286, 630, 406, 1565, 552, 365, 385, 341, 565, 13, 823, 11, 439, 295, 613, 366, 5598, 15842, 13, 5135, 11, 562, 291, 528, 281, 2464, 1412, 322, 552, 11, 291, 528, 281, 2464, 264, 1412, 294, 17434, 1412, 13, 663, 307, 11, 291, 528, 281, 2845, 257, 6798, 11, 291, 362, 281, 1261, 264, 6798, 666, 4342, 293, 17434, 293, 257, 1657, 13], "avg_logprob": -0.4249999929357458, "compression_ratio": 2.038062283737024, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 2282.7, "end": 2283.02, "word": "What", "probability": 0.11041259765625}, {"start": 2283.02, "end": 2283.02, "word": " is", "probability": 0.544921875}, {"start": 2283.02, "end": 2283.24, "word": " it", "probability": 0.31005859375}, {"start": 2283.24, "end": 2283.28, "word": " for?", "probability": 0.51806640625}, {"start": 2283.48, "end": 2283.8, "word": " To", "probability": 0.447021484375}, {"start": 2283.8, "end": 2284.04, "word": " write", "probability": 0.55517578125}, {"start": 2284.04, "end": 2284.2, "word": " on", "probability": 0.5986328125}, {"start": 2284.2, "end": 2284.28, "word": " the", "probability": 0.61669921875}, {"start": 2284.28, "end": 2284.68, "word": " network.", "probability": 0.9140625}, {"start": 2284.82, "end": 2284.94, "word": " You", "probability": 0.424072265625}, {"start": 2284.94, "end": 2285.08, "word": " give", "probability": 0.489013671875}, {"start": 2285.08, "end": 2285.18, "word": " it", "probability": 0.82080078125}, {"start": 2285.18, "end": 2285.22, "word": " a", "probability": 0.89013671875}, {"start": 2285.22, "end": 2285.22, "word": " specific", "probability": 0.40234375}, {"start": 2285.22, "end": 2285.46, "word": " IP", "probability": 0.93505859375}, {"start": 2285.46, "end": 2285.98, "word": " and", "probability": 0.5478515625}, {"start": 2285.98, "end": 2286.08, "word": " it", "probability": 0.69384765625}, {"start": 2286.08, "end": 2286.18, "word": " writes", "probability": 0.7744140625}, {"start": 2286.18, "end": 2286.34, "word": " on", "probability": 0.8310546875}, {"start": 2286.34, "end": 2286.46, "word": " the", "probability": 0.85888671875}, {"start": 2286.46, "end": 2286.72, "word": " network.", "probability": 0.92041015625}, {"start": 2287.08, "end": 2287.2, "word": " You", "probability": 0.77978515625}, {"start": 2287.2, "end": 2287.26, "word": " can", "probability": 0.515625}, {"start": 2287.26, "end": 2287.42, "word": " make", "probability": 0.408203125}, {"start": 2287.42, "end": 2287.8, "word": " a", "probability": 0.89794921875}, {"start": 2287.8, "end": 2288.16, "word": " chat", "probability": 0.875}, {"start": 2288.16, "end": 2288.24, "word": " program", "probability": 0.763671875}, {"start": 2288.24, "end": 2289.48, "word": " on", "probability": 0.485595703125}, {"start": 2289.48, "end": 2289.56, "word": " another", "probability": 0.8359375}, {"start": 2289.56, "end": 2289.9, "word": " device", "probability": 0.9384765625}, {"start": 2289.9, "end": 2290.12, "word": " or", "probability": 0.60791015625}, {"start": 2290.12, "end": 2290.36, "word": " send", "probability": 0.55078125}, {"start": 2290.36, "end": 2290.72, "word": " files", "probability": 0.87060546875}, {"start": 2290.72, "end": 2290.9, "word": " to", "probability": 0.485595703125}, {"start": 2290.9, "end": 2291.26, "word": " another", "probability": 0.89892578125}, {"start": 2291.26, "end": 2291.26, "word": " device.", "probability": 0.96044921875}, {"start": 2291.28, "end": 2291.44, "word": " You", "probability": 0.4873046875}, {"start": 2291.44, "end": 2291.7, "word": " use", "probability": 0.75244140625}, {"start": 2291.7, "end": 2291.86, "word": " the", "probability": 0.315673828125}, {"start": 2291.86, "end": 2292.32, "word": " output", "probability": 0.78125}, {"start": 2292.32, "end": 2292.66, "word": " stream", "probability": 0.92724609375}, {"start": 2292.66, "end": 2292.66, "word": " socket.", "probability": 0.6435546875}, {"start": 2293.22, "end": 2293.44, "word": " This", "probability": 0.7197265625}, {"start": 2293.44, "end": 2293.5, "word": " is", "probability": 0.6474609375}, {"start": 2293.5, "end": 2293.68, "word": " written", "probability": 0.78662109375}, {"start": 2293.68, "end": 2293.8, "word": " on", "probability": 0.91650390625}, {"start": 2293.8, "end": 2293.88, "word": " the", "probability": 0.36865234375}, {"start": 2293.88, "end": 2294.04, "word": " file", "probability": 0.86474609375}, {"start": 2294.04, "end": 2294.16, "word": " and", "probability": 0.7705078125}, {"start": 2294.16, "end": 2294.28, "word": " this", "probability": 0.8701171875}, {"start": 2294.28, "end": 2294.32, "word": " is", "probability": 0.80908203125}, {"start": 2294.32, "end": 2294.52, "word": " written", "probability": 0.87451171875}, {"start": 2294.52, "end": 2294.72, "word": " on", "probability": 0.939453125}, {"start": 2294.72, "end": 2295.48, "word": " the", "probability": 0.83544921875}, {"start": 2295.48, "end": 2295.68, "word": " socket.", "probability": 0.83056640625}, {"start": 2296.46, "end": 2296.64, "word": " And", "probability": 0.69287109375}, {"start": 2296.64, "end": 2296.8, "word": " there", "probability": 0.9033203125}, {"start": 2296.8, "end": 2296.82, "word": " are", "probability": 0.9052734375}, {"start": 2296.82, "end": 2296.9, "word": " other", "probability": 0.84130859375}, {"start": 2296.9, "end": 2297.16, "word": " types", "probability": 0.79638671875}, {"start": 2297.16, "end": 2297.66, "word": " of", "probability": 0.962890625}, {"start": 2297.66, "end": 2297.94, "word": " output", "probability": 0.916015625}, {"start": 2297.94, "end": 2298.22, "word": " streams.", "probability": 0.6220703125}, {"start": 2298.28, "end": 2298.4, "word": " I", "probability": 0.919921875}, {"start": 2298.4, "end": 2298.54, "word": " did", "probability": 0.281494140625}, {"start": 2298.54, "end": 2298.54, "word": " not", "probability": 0.93408203125}, {"start": 2298.54, "end": 2298.76, "word": " bring", "probability": 0.240478515625}, {"start": 2298.76, "end": 2299.04, "word": " them", "probability": 0.82470703125}, {"start": 2299.04, "end": 2299.1, "word": " with", "probability": 0.294677734375}, {"start": 2299.1, "end": 2299.1, "word": " me", "probability": 0.9482421875}, {"start": 2299.1, "end": 2299.22, "word": " this", "probability": 0.2186279296875}, {"start": 2299.22, "end": 2299.4, "word": " time.", "probability": 0.63720703125}, {"start": 2301.4, "end": 2301.72, "word": " Now,", "probability": 0.7421875}, {"start": 2301.8, "end": 2301.92, "word": " all", "probability": 0.5849609375}, {"start": 2301.92, "end": 2301.92, "word": " of", "probability": 0.60205078125}, {"start": 2301.92, "end": 2302.06, "word": " these", "probability": 0.6787109375}, {"start": 2302.06, "end": 2302.4, "word": " are", "probability": 0.77197265625}, {"start": 2302.4, "end": 2302.72, "word": " output", "probability": 0.7392578125}, {"start": 2302.72, "end": 2303.18, "word": " streams.", "probability": 0.94189453125}, {"start": 2303.8, "end": 2304.0, "word": " Actually,", "probability": 0.366455078125}, {"start": 2304.1, "end": 2304.18, "word": " when", "probability": 0.91748046875}, {"start": 2304.18, "end": 2304.34, "word": " you", "probability": 0.96484375}, {"start": 2304.34, "end": 2304.46, "word": " want", "probability": 0.67041015625}, {"start": 2304.46, "end": 2304.54, "word": " to", "probability": 0.97216796875}, {"start": 2304.54, "end": 2304.76, "word": " write", "probability": 0.91015625}, {"start": 2304.76, "end": 2304.8, "word": " data", "probability": 0.71044921875}, {"start": 2304.8, "end": 2304.88, "word": " on", "probability": 0.86865234375}, {"start": 2304.88, "end": 2305.32, "word": " them,", "probability": 0.8759765625}, {"start": 2305.4, "end": 2305.48, "word": " you", "probability": 0.9267578125}, {"start": 2305.48, "end": 2305.56, "word": " want", "probability": 0.3046875}, {"start": 2305.56, "end": 2305.62, "word": " to", "probability": 0.9697265625}, {"start": 2305.62, "end": 2305.76, "word": " write", "probability": 0.9013671875}, {"start": 2305.76, "end": 2305.86, "word": " the", "probability": 0.322509765625}, {"start": 2305.86, "end": 2306.06, "word": " data", "probability": 0.91162109375}, {"start": 2306.06, "end": 2306.2, "word": " in", "probability": 0.53515625}, {"start": 2306.2, "end": 2306.5, "word": " binary", "probability": 0.8447265625}, {"start": 2306.5, "end": 2306.8, "word": " data.", "probability": 0.83544921875}, {"start": 2306.88, "end": 2306.94, "word": " That", "probability": 0.177490234375}, {"start": 2306.94, "end": 2306.94, "word": " is,", "probability": 0.7880859375}, {"start": 2306.94, "end": 2307.04, "word": " you", "probability": 0.92138671875}, {"start": 2307.04, "end": 2307.08, "word": " want", "probability": 0.36474609375}, {"start": 2307.08, "end": 2307.22, "word": " to", "probability": 0.96630859375}, {"start": 2307.22, "end": 2307.28, "word": " send", "probability": 0.66650390625}, {"start": 2307.28, "end": 2307.48, "word": " a", "probability": 0.82470703125}, {"start": 2307.48, "end": 2307.74, "word": " string,", "probability": 0.90234375}, {"start": 2307.82, "end": 2307.86, "word": " you", "probability": 0.546875}, {"start": 2307.86, "end": 2308.1, "word": " have", "probability": 0.370361328125}, {"start": 2308.1, "end": 2308.12, "word": " to", "probability": 0.97119140625}, {"start": 2308.12, "end": 2308.2, "word": " turn", "probability": 0.1337890625}, {"start": 2308.2, "end": 2308.3, "word": " the", "probability": 0.70654296875}, {"start": 2308.3, "end": 2308.7, "word": " string", "probability": 0.88330078125}, {"start": 2308.7, "end": 2309.66, "word": " into", "probability": 0.86376953125}, {"start": 2309.66, "end": 2310.22, "word": " characters", "probability": 0.8486328125}, {"start": 2310.22, "end": 2310.4, "word": " and", "probability": 0.60498046875}, {"start": 2310.4, "end": 2310.74, "word": " binary", "probability": 0.49658203125}, {"start": 2310.74, "end": 2311.2, "word": " and", "probability": 0.6611328125}, {"start": 2311.2, "end": 2311.52, "word": " a", "probability": 0.2235107421875}, {"start": 2311.52, "end": 2311.52, "word": " story.", "probability": 0.76611328125}], "temperature": 1.0}, {"id": 89, "seek": 233261, "start": 2312.31, "end": 2332.61, "text": "So I found that they made it easy for us, they let us say whatever output stream you have, whatever you send to the network, whatever you send to files, whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you", "tokens": [6455, 286, 1352, 300, 436, 1027, 309, 1858, 337, 505, 11, 436, 718, 505, 584, 2035, 5598, 4309, 291, 362, 11, 2035, 291, 2845, 281, 264, 3209, 11, 2035, 291, 2845, 281, 7098, 11, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291], "avg_logprob": -0.20583332697550455, "compression_ratio": 10.105263157894736, "no_speech_prob": 3.993511199951172e-06, "words": [{"start": 2312.31, "end": 2312.53, "word": "So", "probability": 0.29443359375}, {"start": 2312.53, "end": 2312.63, "word": " I", "probability": 0.11810302734375}, {"start": 2312.63, "end": 2312.75, "word": " found", "probability": 0.4384765625}, {"start": 2312.75, "end": 2312.83, "word": " that", "probability": 0.47607421875}, {"start": 2312.83, "end": 2312.97, "word": " they", "probability": 0.77978515625}, {"start": 2312.97, "end": 2313.11, "word": " made", "probability": 0.33740234375}, {"start": 2313.11, "end": 2313.11, "word": " it", "probability": 0.81689453125}, {"start": 2313.11, "end": 2313.31, "word": " easy", "probability": 0.5126953125}, {"start": 2313.31, "end": 2313.47, "word": " for", "probability": 0.8525390625}, {"start": 2313.47, "end": 2313.71, "word": " us,", "probability": 0.66796875}, {"start": 2314.17, "end": 2314.29, "word": " they", "probability": 0.5283203125}, {"start": 2314.29, "end": 2314.55, "word": " let", "probability": 0.184326171875}, {"start": 2314.55, "end": 2314.77, "word": " us", "probability": 0.8125}, {"start": 2314.77, "end": 2314.95, "word": " say", "probability": 0.36328125}, {"start": 2314.95, "end": 2315.39, "word": " whatever", "probability": 0.28515625}, {"start": 2315.39, "end": 2316.37, "word": " output", "probability": 0.7958984375}, {"start": 2316.37, "end": 2316.73, "word": " stream", "probability": 0.58447265625}, {"start": 2316.73, "end": 2316.75, "word": " you", "probability": 0.53564453125}, {"start": 2316.75, "end": 2316.75, "word": " have,", "probability": 0.779296875}, {"start": 2316.75, "end": 2316.91, "word": " whatever", "probability": 0.2095947265625}, {"start": 2316.91, "end": 2316.95, "word": " you", "probability": 0.37353515625}, {"start": 2316.95, "end": 2317.15, "word": " send", "probability": 0.6708984375}, {"start": 2317.15, "end": 2317.31, "word": " to", "probability": 0.464599609375}, {"start": 2317.31, "end": 2317.37, "word": " the", "probability": 0.46240234375}, {"start": 2317.37, "end": 2317.55, "word": " network,", "probability": 0.59912109375}, {"start": 2317.73, "end": 2317.79, "word": " whatever", "probability": 0.416015625}, {"start": 2317.79, "end": 2317.79, "word": " you", "probability": 0.66796875}, {"start": 2317.79, "end": 2318.03, "word": " send", "probability": 0.76953125}, {"start": 2318.03, "end": 2318.13, "word": " to", "probability": 0.91552734375}, {"start": 2318.13, "end": 2318.39, "word": " files,", "probability": 0.53173828125}, {"start": 2318.53, "end": 2318.59, "word": " whatever", "probability": 0.87060546875}, {"start": 2318.59, "end": 2318.65, "word": " you", "probability": 0.8935546875}, {"start": 2318.65, "end": 2318.77, "word": " send", "probability": 0.798828125}, {"start": 2318.77, "end": 2318.91, "word": " to", "probability": 0.91162109375}, {"start": 2318.91, "end": 2319.01, "word": " whatever", "probability": 0.359375}, {"start": 2319.01, "end": 2319.01, "word": " you", "probability": 0.42822265625}, {"start": 2319.01, "end": 2319.19, "word": " send", "probability": 0.66357421875}, {"start": 2319.19, "end": 2319.25, "word": " to", "probability": 0.91552734375}, {"start": 2319.25, "end": 2319.25, "word": " whatever", "probability": 0.391357421875}, {"start": 2319.25, "end": 2320.35, "word": " you", "probability": 0.5244140625}, {"start": 2320.35, "end": 2320.57, "word": " send", "probability": 0.6904296875}, {"start": 2320.57, "end": 2320.57, "word": " to", "probability": 0.93212890625}, {"start": 2320.57, "end": 2320.57, "word": " whatever", "probability": 0.460693359375}, {"start": 2320.57, "end": 2320.57, "word": " you", "probability": 0.64794921875}, {"start": 2320.57, "end": 2320.59, "word": " send", "probability": 0.748046875}, {"start": 2320.59, "end": 2320.59, "word": " to", "probability": 0.93896484375}, {"start": 2320.59, "end": 2320.59, "word": " whatever", "probability": 0.494873046875}, {"start": 2320.59, "end": 2320.59, "word": " you", "probability": 0.751953125}, {"start": 2320.59, "end": 2320.59, "word": " send", "probability": 0.77294921875}, {"start": 2320.59, "end": 2320.59, "word": " to", "probability": 0.94482421875}, {"start": 2320.59, "end": 2320.59, "word": " whatever", "probability": 0.65380859375}, {"start": 2320.59, "end": 2320.59, "word": " you", "probability": 0.83447265625}, {"start": 2320.59, "end": 2320.65, "word": " send", "probability": 0.78564453125}, {"start": 2320.65, "end": 2320.65, "word": " to", "probability": 0.95068359375}, {"start": 2320.65, "end": 2320.65, "word": " whatever", "probability": 0.73388671875}, {"start": 2320.65, "end": 2320.65, "word": " you", "probability": 0.88623046875}, {"start": 2320.65, "end": 2320.65, "word": " send", "probability": 0.79443359375}, {"start": 2320.65, "end": 2320.65, "word": " to", "probability": 0.9560546875}, {"start": 2320.65, "end": 2320.65, "word": " whatever", "probability": 0.78173828125}, {"start": 2320.65, "end": 2320.65, "word": " you", "probability": 0.9140625}, {"start": 2320.65, "end": 2320.65, "word": " send", "probability": 0.802734375}, {"start": 2320.65, "end": 2320.65, "word": " to", "probability": 0.95849609375}, {"start": 2320.65, "end": 2320.65, "word": " whatever", "probability": 0.81201171875}, {"start": 2320.65, "end": 2320.65, "word": " you", "probability": 0.93017578125}, {"start": 2320.65, "end": 2320.71, "word": " send", "probability": 0.8134765625}, {"start": 2320.71, "end": 2320.71, "word": " to", "probability": 0.96142578125}, {"start": 2320.71, "end": 2320.71, "word": " whatever", "probability": 0.83203125}, {"start": 2320.71, "end": 2320.71, "word": " you", "probability": 0.939453125}, {"start": 2320.71, "end": 2320.73, "word": " send", "probability": 0.82080078125}, {"start": 2320.73, "end": 2320.73, "word": " to", "probability": 0.96337890625}, {"start": 2320.73, "end": 2320.73, "word": " whatever", "probability": 0.849609375}, {"start": 2320.73, "end": 2320.73, "word": " you", "probability": 0.94677734375}, {"start": 2320.73, "end": 2320.73, "word": " send", "probability": 0.828125}, {"start": 2320.73, "end": 2320.73, "word": " to", "probability": 0.96484375}, {"start": 2320.73, "end": 2320.73, "word": " whatever", "probability": 0.8662109375}, {"start": 2320.73, "end": 2320.73, "word": " you", "probability": 0.95263671875}, {"start": 2320.73, "end": 2320.73, "word": " send", "probability": 0.83544921875}, {"start": 2320.73, "end": 2320.73, "word": " to", "probability": 0.96728515625}, {"start": 2320.73, "end": 2320.73, "word": " whatever", "probability": 0.87890625}, {"start": 2320.73, "end": 2320.73, "word": " you", "probability": 0.9560546875}, {"start": 2320.73, "end": 2320.73, "word": " send", "probability": 0.8408203125}, {"start": 2320.73, "end": 2320.73, "word": " to", "probability": 0.96875}, {"start": 2320.73, "end": 2320.73, "word": " whatever", "probability": 0.8896484375}, {"start": 2320.73, "end": 2320.73, "word": " you", "probability": 0.95947265625}, {"start": 2320.73, "end": 2320.73, "word": " send", "probability": 0.84375}, {"start": 2320.73, "end": 2320.87, "word": " to", "probability": 0.96923828125}, {"start": 2320.87, "end": 2320.87, "word": " whatever", "probability": 0.8984375}, {"start": 2320.87, "end": 2320.87, "word": " you", "probability": 0.96142578125}, {"start": 2320.87, "end": 2321.01, "word": " send", "probability": 0.84814453125}, {"start": 2321.01, "end": 2321.01, "word": " to", "probability": 0.97021484375}, {"start": 2321.01, "end": 2321.01, "word": " whatever", "probability": 0.90673828125}, {"start": 2321.01, "end": 2321.01, "word": " you", "probability": 0.9638671875}, {"start": 2321.01, "end": 2321.01, "word": " send", "probability": 0.8505859375}, {"start": 2321.01, "end": 2321.01, "word": " to", "probability": 0.97119140625}, {"start": 2321.01, "end": 2321.01, "word": " whatever", "probability": 0.91064453125}, {"start": 2321.01, "end": 2321.01, "word": " you", "probability": 0.96533203125}, {"start": 2321.01, "end": 2321.05, "word": " send", "probability": 0.85498046875}, {"start": 2321.05, "end": 2321.85, "word": " to", "probability": 0.9716796875}, {"start": 2321.85, "end": 2321.85, "word": " whatever", "probability": 0.91455078125}, {"start": 2321.85, "end": 2321.85, "word": " you", "probability": 0.966796875}, {"start": 2321.85, "end": 2321.85, "word": " send", "probability": 0.85693359375}, {"start": 2321.85, "end": 2321.91, "word": " to", "probability": 0.97265625}, {"start": 2321.91, "end": 2322.15, "word": " whatever", "probability": 0.91845703125}, {"start": 2322.15, "end": 2322.15, "word": " you", "probability": 0.9677734375}, {"start": 2322.15, "end": 2322.15, "word": " send", "probability": 0.8603515625}, {"start": 2322.15, "end": 2322.23, "word": " to", "probability": 0.9736328125}, {"start": 2322.23, "end": 2322.23, "word": " whatever", "probability": 0.9208984375}, {"start": 2322.23, "end": 2322.23, "word": " you", "probability": 0.96826171875}, {"start": 2322.23, "end": 2322.23, "word": " send", "probability": 0.861328125}, {"start": 2322.23, "end": 2322.23, "word": " to", "probability": 0.97314453125}, {"start": 2322.23, "end": 2322.23, "word": " whatever", "probability": 0.92333984375}, {"start": 2322.23, "end": 2322.23, "word": " you", "probability": 0.96875}, {"start": 2322.23, "end": 2322.23, "word": " send", "probability": 0.86474609375}, {"start": 2322.23, "end": 2322.39, "word": " to", "probability": 0.9736328125}, {"start": 2322.39, "end": 2322.39, "word": " whatever", "probability": 0.92529296875}, {"start": 2322.39, "end": 2322.39, "word": " you", "probability": 0.9697265625}, {"start": 2322.39, "end": 2322.39, "word": " send", "probability": 0.86669921875}, {"start": 2322.39, "end": 2322.39, "word": " to", "probability": 0.97412109375}, {"start": 2322.39, "end": 2322.39, "word": " whatever", "probability": 0.92578125}, {"start": 2322.39, "end": 2322.39, "word": " you", "probability": 0.97021484375}, {"start": 2322.39, "end": 2322.39, "word": " send", "probability": 0.8681640625}, {"start": 2322.39, "end": 2322.39, "word": " to", "probability": 0.97412109375}, {"start": 2322.39, "end": 2322.39, "word": " whatever", "probability": 0.9267578125}, {"start": 2322.39, "end": 2322.39, "word": " you", "probability": 0.97021484375}, {"start": 2322.39, "end": 2322.39, "word": " send", "probability": 0.869140625}, {"start": 2322.39, "end": 2322.43, "word": " to", "probability": 0.974609375}, {"start": 2322.43, "end": 2322.69, "word": " whatever", "probability": 0.92822265625}, {"start": 2322.69, "end": 2322.69, "word": " you", "probability": 0.97119140625}, {"start": 2322.69, "end": 2322.69, "word": " send", "probability": 0.87060546875}, {"start": 2322.69, "end": 2322.69, "word": " to", "probability": 0.974609375}, {"start": 2322.69, "end": 2322.69, "word": " whatever", "probability": 0.9306640625}, {"start": 2322.69, "end": 2322.69, "word": " you", "probability": 0.9716796875}, {"start": 2322.69, "end": 2322.69, "word": " send", "probability": 0.87060546875}, {"start": 2322.69, "end": 2322.69, "word": " to", "probability": 0.97412109375}, {"start": 2322.69, "end": 2323.09, "word": " whatever", "probability": 0.931640625}, {"start": 2323.09, "end": 2323.09, "word": " you", "probability": 0.97216796875}, {"start": 2323.09, "end": 2323.09, "word": " send", "probability": 0.8720703125}, {"start": 2323.09, "end": 2323.09, "word": " to", "probability": 0.97412109375}, {"start": 2323.09, "end": 2323.09, "word": " whatever", "probability": 0.9326171875}, {"start": 2323.09, "end": 2323.09, "word": " you", "probability": 0.9716796875}, {"start": 2323.09, "end": 2323.09, "word": " send", "probability": 0.873046875}, {"start": 2323.09, "end": 2323.09, "word": " to", "probability": 0.97509765625}, {"start": 2323.09, "end": 2324.01, "word": " whatever", "probability": 0.93359375}, {"start": 2324.01, "end": 2324.01, "word": " you", "probability": 0.97265625}, {"start": 2324.01, "end": 2324.01, "word": " send", "probability": 0.87353515625}, {"start": 2324.01, "end": 2324.01, "word": " to", "probability": 0.974609375}, {"start": 2324.01, "end": 2324.01, "word": " whatever", "probability": 0.935546875}, {"start": 2324.01, "end": 2324.01, "word": " you", "probability": 0.97265625}, {"start": 2324.01, "end": 2324.01, "word": " send", "probability": 0.873046875}, {"start": 2324.01, "end": 2324.01, "word": " to", "probability": 0.974609375}, {"start": 2324.01, "end": 2324.01, "word": " whatever", "probability": 0.93701171875}, {"start": 2324.01, "end": 2324.01, "word": " you", "probability": 0.97265625}, {"start": 2324.01, "end": 2324.01, "word": " send", "probability": 0.87451171875}, {"start": 2324.01, "end": 2324.01, "word": " to", "probability": 0.974609375}, {"start": 2324.01, "end": 2324.01, "word": " whatever", "probability": 0.93798828125}, {"start": 2324.01, "end": 2324.01, "word": " you", "probability": 0.97314453125}, {"start": 2324.01, "end": 2324.01, "word": " send", "probability": 0.87255859375}, {"start": 2324.01, "end": 2324.01, "word": " to", "probability": 0.9755859375}, {"start": 2324.01, "end": 2324.17, "word": " whatever", "probability": 0.93896484375}, {"start": 2324.17, "end": 2324.17, "word": " you", "probability": 0.97314453125}, {"start": 2324.17, "end": 2324.17, "word": " send", "probability": 0.87353515625}, {"start": 2324.17, "end": 2324.17, "word": " to", "probability": 0.974609375}, {"start": 2324.17, "end": 2324.19, "word": " whatever", "probability": 0.9404296875}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97412109375}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.873046875}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.974609375}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.94091796875}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97314453125}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.873046875}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.97509765625}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.94140625}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97314453125}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.873046875}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.97509765625}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.94287109375}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97412109375}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.87255859375}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.9755859375}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.943359375}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97412109375}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.87109375}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.97509765625}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.943359375}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97412109375}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.87060546875}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.9755859375}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.94287109375}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97412109375}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.87060546875}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.9755859375}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.94287109375}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97412109375}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.8701171875}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.9765625}, {"start": 2324.19, "end": 2324.39, "word": " whatever", "probability": 0.94189453125}, {"start": 2324.39, "end": 2324.59, "word": " you", "probability": 0.97412109375}, {"start": 2324.59, "end": 2324.99, "word": " send", "probability": 0.8701171875}, {"start": 2324.99, "end": 2324.99, "word": " to", "probability": 0.9755859375}, {"start": 2324.99, "end": 2324.99, "word": " whatever", "probability": 0.9423828125}, {"start": 2324.99, "end": 2324.99, "word": " you", "probability": 0.97412109375}, {"start": 2324.99, "end": 2324.99, "word": " send", "probability": 0.87158203125}, {"start": 2324.99, "end": 2324.99, "word": " to", "probability": 0.9765625}, {"start": 2324.99, "end": 2324.99, "word": " whatever", "probability": 0.9423828125}, {"start": 2324.99, "end": 2324.99, "word": " you", "probability": 0.97412109375}, {"start": 2324.99, "end": 2325.01, "word": " send", "probability": 0.87158203125}, {"start": 2325.01, "end": 2325.11, "word": " to", "probability": 0.9765625}, {"start": 2325.11, "end": 2325.53, "word": " whatever", "probability": 0.943359375}, {"start": 2325.53, "end": 2325.85, "word": " you", "probability": 0.9736328125}, {"start": 2325.85, "end": 2325.85, "word": " send", "probability": 0.87158203125}, {"start": 2325.85, "end": 2325.99, "word": " to", "probability": 0.9765625}, {"start": 2325.99, "end": 2326.45, "word": " whatever", "probability": 0.9423828125}, {"start": 2326.45, "end": 2327.05, "word": " you", "probability": 0.97412109375}, {"start": 2327.05, "end": 2327.05, "word": " send", "probability": 0.87109375}, {"start": 2327.05, "end": 2327.07, "word": " to", "probability": 0.9765625}, {"start": 2327.07, "end": 2330.89, "word": " whatever", "probability": 0.943359375}, {"start": 2330.89, "end": 2330.89, "word": " you", "probability": 0.97412109375}, {"start": 2330.89, "end": 2330.99, "word": " send", "probability": 0.873046875}, {"start": 2330.99, "end": 2330.99, "word": " to", "probability": 0.97705078125}, {"start": 2330.99, "end": 2332.61, "word": " whatever", "probability": 0.9423828125}, {"start": 2332.61, "end": 2332.61, "word": " you", "probability": 0.97412109375}], "temperature": 1.0}, {"id": 90, "seek": 235771, "start": 2334.01, "end": 2357.71, "text": "Simple, how do we do it? We go to the file output stream and make an extend to a new class called string writing file output stream and make an extend to this new class and make a method called println", "tokens": [39392, 781, 11, 577, 360, 321, 360, 309, 30, 492, 352, 281, 264, 3991, 5598, 4309, 293, 652, 364, 10101, 281, 257, 777, 1508, 1219, 6798, 3579, 3991, 5598, 4309, 293, 652, 364, 10101, 281, 341, 777, 1508, 293, 652, 257, 3170, 1219, 4482, 75, 77], "avg_logprob": -0.6160239260247413, "compression_ratio": 1.7033898305084745, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 2334.01, "end": 2334.47, "word": "Simple,", "probability": 0.50439453125}, {"start": 2334.57, "end": 2334.75, "word": " how", "probability": 0.529296875}, {"start": 2334.75, "end": 2334.87, "word": " do", "probability": 0.3740234375}, {"start": 2334.87, "end": 2334.89, "word": " we", "probability": 0.71826171875}, {"start": 2334.89, "end": 2335.07, "word": " do", "probability": 0.85986328125}, {"start": 2335.07, "end": 2335.19, "word": " it?", "probability": 0.68701171875}, {"start": 2335.33, "end": 2335.97, "word": " We", "probability": 0.2021484375}, {"start": 2335.97, "end": 2336.13, "word": " go", "probability": 0.71142578125}, {"start": 2336.13, "end": 2336.35, "word": " to", "probability": 0.9287109375}, {"start": 2336.35, "end": 2336.41, "word": " the", "probability": 0.4541015625}, {"start": 2336.41, "end": 2336.63, "word": " file", "probability": 0.72021484375}, {"start": 2336.63, "end": 2336.87, "word": " output", "probability": 0.55859375}, {"start": 2336.87, "end": 2337.23, "word": " stream", "probability": 0.517578125}, {"start": 2337.23, "end": 2337.87, "word": " and", "probability": 0.407470703125}, {"start": 2337.87, "end": 2338.13, "word": " make", "probability": 0.180419921875}, {"start": 2338.13, "end": 2338.65, "word": " an", "probability": 0.28369140625}, {"start": 2338.65, "end": 2339.19, "word": " extend", "probability": 0.458984375}, {"start": 2339.19, "end": 2339.55, "word": " to", "probability": 0.6640625}, {"start": 2339.55, "end": 2339.65, "word": " a", "probability": 0.7841796875}, {"start": 2339.65, "end": 2340.23, "word": " new", "probability": 0.8984375}, {"start": 2340.23, "end": 2340.31, "word": " class", "probability": 0.95458984375}, {"start": 2340.31, "end": 2341.29, "word": " called", "probability": 0.1376953125}, {"start": 2341.29, "end": 2343.91, "word": " string", "probability": 0.411376953125}, {"start": 2343.91, "end": 2345.03, "word": " writing", "probability": 0.626953125}, {"start": 2345.03, "end": 2345.49, "word": " file", "probability": 0.7890625}, {"start": 2345.49, "end": 2345.81, "word": " output", "probability": 0.9365234375}, {"start": 2345.81, "end": 2346.31, "word": " stream", "probability": 0.7646484375}, {"start": 2346.31, "end": 2348.21, "word": " and", "probability": 0.1795654296875}, {"start": 2348.21, "end": 2349.29, "word": " make", "probability": 0.353515625}, {"start": 2349.29, "end": 2349.43, "word": " an", "probability": 0.4638671875}, {"start": 2349.43, "end": 2349.43, "word": " extend", "probability": 0.76708984375}, {"start": 2349.43, "end": 2349.43, "word": " to", "probability": 0.44970703125}, {"start": 2349.43, "end": 2349.53, "word": " this", "probability": 0.59130859375}, {"start": 2349.53, "end": 2350.25, "word": " new", "probability": 0.6259765625}, {"start": 2350.25, "end": 2350.29, "word": " class", "probability": 0.939453125}, {"start": 2350.29, "end": 2353.27, "word": " and", "probability": 0.1810302734375}, {"start": 2353.27, "end": 2355.83, "word": " make", "probability": 0.521484375}, {"start": 2355.83, "end": 2356.11, "word": " a", "probability": 0.7177734375}, {"start": 2356.11, "end": 2356.35, "word": " method", "probability": 0.943359375}, {"start": 2356.35, "end": 2356.67, "word": " called", "probability": 0.67138671875}, {"start": 2356.67, "end": 2357.71, "word": " println", "probability": 0.6909993489583334}], "temperature": 1.0}, {"id": 91, "seek": 238592, "start": 2358.67, "end": 2385.93, "text": "this is where I made this method, it takes a string where did I make this method? in the new class, in the subclass on the basis that in the print string it takes the string and converts it to binary and prepares it as a byte array and calls super.writeBytes for example there is a new feature that I added to the subclass", "tokens": [11176, 307, 689, 286, 1027, 341, 3170, 11, 309, 2516, 257, 6798, 689, 630, 286, 652, 341, 3170, 30, 294, 264, 777, 1508, 11, 294, 264, 1422, 11665, 322, 264, 5143, 300, 294, 264, 4482, 6798, 309, 2516, 264, 6798, 293, 38874, 309, 281, 17434, 293, 39418, 309, 382, 257, 40846, 10225, 293, 5498, 1687, 13, 21561, 33, 43673, 337, 1365, 456, 307, 257, 777, 4111, 300, 286, 3869, 281, 264, 1422, 11665], "avg_logprob": -0.40392735278284225, "compression_ratio": 1.7692307692307692, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 2358.67, "end": 2358.91, "word": "this", "probability": 0.192138671875}, {"start": 2358.91, "end": 2359.01, "word": " is", "probability": 0.5478515625}, {"start": 2359.01, "end": 2359.09, "word": " where", "probability": 0.288330078125}, {"start": 2359.09, "end": 2359.17, "word": " I", "probability": 0.54443359375}, {"start": 2359.17, "end": 2359.39, "word": " made", "probability": 0.423583984375}, {"start": 2359.39, "end": 2359.55, "word": " this", "probability": 0.498291015625}, {"start": 2359.55, "end": 2359.79, "word": " method,", "probability": 0.91943359375}, {"start": 2359.85, "end": 2360.01, "word": " it", "probability": 0.53173828125}, {"start": 2360.01, "end": 2360.15, "word": " takes", "probability": 0.76416015625}, {"start": 2360.15, "end": 2360.29, "word": " a", "probability": 0.52099609375}, {"start": 2360.29, "end": 2360.59, "word": " string", "probability": 0.802734375}, {"start": 2360.59, "end": 2361.63, "word": " where", "probability": 0.2890625}, {"start": 2361.63, "end": 2361.79, "word": " did", "probability": 0.73193359375}, {"start": 2361.79, "end": 2361.95, "word": " I", "probability": 0.916015625}, {"start": 2361.95, "end": 2361.95, "word": " make", "probability": 0.77783203125}, {"start": 2361.95, "end": 2362.05, "word": " this", "probability": 0.92431640625}, {"start": 2362.05, "end": 2362.29, "word": " method?", "probability": 0.93603515625}, {"start": 2362.75, "end": 2363.17, "word": " in", "probability": 0.79150390625}, {"start": 2363.17, "end": 2363.27, "word": " the", "probability": 0.77880859375}, {"start": 2363.27, "end": 2363.27, "word": " new", "probability": 0.83154296875}, {"start": 2363.27, "end": 2363.85, "word": " class,", "probability": 0.7724609375}, {"start": 2363.91, "end": 2364.01, "word": " in", "probability": 0.798828125}, {"start": 2364.01, "end": 2364.07, "word": " the", "probability": 0.82080078125}, {"start": 2364.07, "end": 2364.57, "word": " subclass", "probability": 0.84619140625}, {"start": 2364.57, "end": 2365.21, "word": " on", "probability": 0.418212890625}, {"start": 2365.21, "end": 2365.39, "word": " the", "probability": 0.80078125}, {"start": 2365.39, "end": 2365.69, "word": " basis", "probability": 0.69140625}, {"start": 2365.69, "end": 2365.91, "word": " that", "probability": 0.85888671875}, {"start": 2365.91, "end": 2366.05, "word": " in", "probability": 0.64892578125}, {"start": 2366.05, "end": 2366.19, "word": " the", "probability": 0.47265625}, {"start": 2366.19, "end": 2366.51, "word": " print", "probability": 0.87646484375}, {"start": 2366.51, "end": 2367.25, "word": " string", "probability": 0.73193359375}, {"start": 2367.25, "end": 2367.81, "word": " it", "probability": 0.515625}, {"start": 2367.81, "end": 2368.01, "word": " takes", "probability": 0.791015625}, {"start": 2368.01, "end": 2368.21, "word": " the", "probability": 0.751953125}, {"start": 2368.21, "end": 2368.51, "word": " string", "probability": 0.84130859375}, {"start": 2368.51, "end": 2368.63, "word": " and", "probability": 0.6181640625}, {"start": 2368.63, "end": 2368.87, "word": " converts", "probability": 0.362060546875}, {"start": 2368.87, "end": 2368.99, "word": " it", "probability": 0.93896484375}, {"start": 2368.99, "end": 2369.05, "word": " to", "probability": 0.7021484375}, {"start": 2369.05, "end": 2369.47, "word": " binary", "probability": 0.67724609375}, {"start": 2369.47, "end": 2370.55, "word": " and", "probability": 0.64453125}, {"start": 2370.55, "end": 2370.85, "word": " prepares", "probability": 0.705078125}, {"start": 2370.85, "end": 2371.03, "word": " it", "probability": 0.90625}, {"start": 2371.03, "end": 2371.21, "word": " as", "probability": 0.83251953125}, {"start": 2371.21, "end": 2371.59, "word": " a", "probability": 0.681640625}, {"start": 2371.59, "end": 2371.93, "word": " byte", "probability": 0.9228515625}, {"start": 2371.93, "end": 2373.19, "word": " array", "probability": 0.72509765625}, {"start": 2373.19, "end": 2374.01, "word": " and", "probability": 0.85791015625}, {"start": 2374.01, "end": 2374.41, "word": " calls", "probability": 0.451904296875}, {"start": 2374.41, "end": 2375.35, "word": " super", "probability": 0.54638671875}, {"start": 2375.35, "end": 2379.53, "word": ".writeBytes", "probability": 0.656463623046875}, {"start": 2379.53, "end": 2379.71, "word": " for", "probability": 0.525390625}, {"start": 2379.71, "end": 2380.59, "word": " example", "probability": 0.9296875}, {"start": 2380.59, "end": 2383.67, "word": " there", "probability": 0.2008056640625}, {"start": 2383.67, "end": 2383.73, "word": " is", "probability": 0.69677734375}, {"start": 2383.73, "end": 2383.81, "word": " a", "probability": 0.92822265625}, {"start": 2383.81, "end": 2383.81, "word": " new", "probability": 0.90478515625}, {"start": 2383.81, "end": 2384.01, "word": " feature", "probability": 0.7666015625}, {"start": 2384.01, "end": 2384.45, "word": " that", "probability": 0.402587890625}, {"start": 2384.45, "end": 2384.49, "word": " I", "probability": 0.95751953125}, {"start": 2384.49, "end": 2384.73, "word": " added", "probability": 0.71533203125}, {"start": 2384.73, "end": 2384.99, "word": " to", "probability": 0.7431640625}, {"start": 2384.99, "end": 2385.47, "word": " the", "probability": 0.873046875}, {"start": 2385.47, "end": 2385.93, "word": " subclass", "probability": 0.965087890625}], "temperature": 1.0}, {"id": 92, "seek": 241291, "start": 2387.57, "end": 2412.91, "text": "Of course, if I want to write on a file, I don't need to create an object from it. I need to create an object from the subclass and use it. And we live our life happily. But wait, we have ten other output streams. So you will have to go to the output stream socket and create a new subclass and class, and create a print method in it, take a string, and do the same conversion process, and then say super,", "tokens": [23919, 1164, 11, 498, 286, 528, 281, 2464, 322, 257, 3991, 11, 286, 500, 380, 643, 281, 1884, 364, 2657, 490, 309, 13, 286, 643, 281, 1884, 364, 2657, 490, 264, 1422, 11665, 293, 764, 309, 13, 400, 321, 1621, 527, 993, 19909, 13, 583, 1699, 11, 321, 362, 2064, 661, 5598, 15842, 13, 407, 291, 486, 362, 281, 352, 281, 264, 5598, 4309, 19741, 293, 1884, 257, 777, 1422, 11665, 293, 1508, 11, 293, 1884, 257, 4482, 3170, 294, 309, 11, 747, 257, 6798, 11, 293, 360, 264, 912, 14298, 1399, 11, 293, 550, 584, 1687, 11], "avg_logprob": -0.5006313251726555, "compression_ratio": 1.7841409691629957, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2387.57, "end": 2387.81, "word": "Of", "probability": 0.159912109375}, {"start": 2387.81, "end": 2387.93, "word": " course,", "probability": 0.91845703125}, {"start": 2388.01, "end": 2388.11, "word": " if", "probability": 0.231201171875}, {"start": 2388.11, "end": 2388.27, "word": " I", "probability": 0.59326171875}, {"start": 2388.27, "end": 2388.47, "word": " want", "probability": 0.467529296875}, {"start": 2388.47, "end": 2388.53, "word": " to", "probability": 0.96728515625}, {"start": 2388.53, "end": 2388.67, "word": " write", "probability": 0.7041015625}, {"start": 2388.67, "end": 2388.81, "word": " on", "probability": 0.305908203125}, {"start": 2388.81, "end": 2388.91, "word": " a", "probability": 0.277099609375}, {"start": 2388.91, "end": 2389.13, "word": " file,", "probability": 0.70849609375}, {"start": 2389.23, "end": 2389.35, "word": " I", "probability": 0.93408203125}, {"start": 2389.35, "end": 2389.35, "word": " don't", "probability": 0.8388671875}, {"start": 2389.35, "end": 2389.69, "word": " need", "probability": 0.8232421875}, {"start": 2389.69, "end": 2390.01, "word": " to", "probability": 0.91162109375}, {"start": 2390.01, "end": 2390.01, "word": " create", "probability": 0.7822265625}, {"start": 2390.01, "end": 2390.17, "word": " an", "probability": 0.70556640625}, {"start": 2390.17, "end": 2390.35, "word": " object", "probability": 0.95068359375}, {"start": 2390.35, "end": 2390.59, "word": " from", "probability": 0.67529296875}, {"start": 2390.59, "end": 2390.85, "word": " it.", "probability": 0.383056640625}, {"start": 2391.33, "end": 2391.47, "word": " I", "probability": 0.9150390625}, {"start": 2391.47, "end": 2391.69, "word": " need", "probability": 0.413330078125}, {"start": 2391.69, "end": 2391.81, "word": " to", "probability": 0.95263671875}, {"start": 2391.81, "end": 2391.93, "word": " create", "probability": 0.8125}, {"start": 2391.93, "end": 2392.13, "word": " an", "probability": 0.8203125}, {"start": 2392.13, "end": 2392.27, "word": " object", "probability": 0.96533203125}, {"start": 2392.27, "end": 2392.83, "word": " from", "probability": 0.83203125}, {"start": 2392.83, "end": 2393.47, "word": " the", "probability": 0.70458984375}, {"start": 2393.47, "end": 2393.85, "word": " subclass", "probability": 0.85986328125}, {"start": 2393.85, "end": 2393.99, "word": " and", "probability": 0.7265625}, {"start": 2393.99, "end": 2394.27, "word": " use", "probability": 0.787109375}, {"start": 2394.27, "end": 2394.61, "word": " it.", "probability": 0.94580078125}, {"start": 2394.91, "end": 2395.31, "word": " And", "probability": 0.62060546875}, {"start": 2395.31, "end": 2395.51, "word": " we", "probability": 0.6259765625}, {"start": 2395.51, "end": 2395.51, "word": " live", "probability": 0.363525390625}, {"start": 2395.51, "end": 2395.61, "word": " our", "probability": 0.47021484375}, {"start": 2395.61, "end": 2395.85, "word": " life", "probability": 0.57080078125}, {"start": 2395.85, "end": 2396.15, "word": " happily.", "probability": 0.6357421875}, {"start": 2396.65, "end": 2396.79, "word": " But", "probability": 0.3466796875}, {"start": 2396.79, "end": 2397.11, "word": " wait,", "probability": 0.69482421875}, {"start": 2397.41, "end": 2397.59, "word": " we", "probability": 0.552734375}, {"start": 2397.59, "end": 2397.91, "word": " have", "probability": 0.79248046875}, {"start": 2397.91, "end": 2398.79, "word": " ten", "probability": 0.34423828125}, {"start": 2398.79, "end": 2399.25, "word": " other", "probability": 0.486083984375}, {"start": 2399.25, "end": 2400.21, "word": " output", "probability": 0.83740234375}, {"start": 2400.21, "end": 2400.49, "word": " streams.", "probability": 0.72509765625}, {"start": 2400.73, "end": 2401.17, "word": " So", "probability": 0.763671875}, {"start": 2401.17, "end": 2401.39, "word": " you", "probability": 0.7109375}, {"start": 2401.39, "end": 2401.47, "word": " will", "probability": 0.23486328125}, {"start": 2401.47, "end": 2401.71, "word": " have", "probability": 0.6884765625}, {"start": 2401.71, "end": 2401.83, "word": " to", "probability": 0.9677734375}, {"start": 2401.83, "end": 2401.99, "word": " go", "probability": 0.85595703125}, {"start": 2401.99, "end": 2402.11, "word": " to", "probability": 0.94482421875}, {"start": 2402.11, "end": 2402.23, "word": " the", "probability": 0.833984375}, {"start": 2402.23, "end": 2402.75, "word": " output", "probability": 0.453857421875}, {"start": 2402.75, "end": 2403.17, "word": " stream", "probability": 0.9267578125}, {"start": 2403.17, "end": 2403.17, "word": " socket", "probability": 0.4892578125}, {"start": 2403.17, "end": 2403.67, "word": " and", "probability": 0.5546875}, {"start": 2403.67, "end": 2403.99, "word": " create", "probability": 0.3779296875}, {"start": 2403.99, "end": 2404.41, "word": " a", "probability": 0.65966796875}, {"start": 2404.41, "end": 2404.51, "word": " new", "probability": 0.7705078125}, {"start": 2404.51, "end": 2404.93, "word": " subclass", "probability": 0.6685791015625}, {"start": 2404.93, "end": 2405.11, "word": " and", "probability": 0.52587890625}, {"start": 2405.11, "end": 2405.39, "word": " class,", "probability": 0.79443359375}, {"start": 2406.03, "end": 2406.27, "word": " and", "probability": 0.64111328125}, {"start": 2406.27, "end": 2406.55, "word": " create", "probability": 0.415771484375}, {"start": 2406.55, "end": 2406.79, "word": " a", "probability": 0.68701171875}, {"start": 2406.79, "end": 2407.37, "word": " print", "probability": 0.456298828125}, {"start": 2407.37, "end": 2407.63, "word": " method", "probability": 0.9541015625}, {"start": 2407.63, "end": 2407.63, "word": " in", "probability": 0.239501953125}, {"start": 2407.63, "end": 2407.63, "word": " it,", "probability": 0.91162109375}, {"start": 2408.27, "end": 2408.61, "word": " take", "probability": 0.66162109375}, {"start": 2408.61, "end": 2408.79, "word": " a", "probability": 0.483642578125}, {"start": 2408.79, "end": 2409.11, "word": " string,", "probability": 0.880859375}, {"start": 2409.79, "end": 2410.17, "word": " and", "probability": 0.77392578125}, {"start": 2410.17, "end": 2410.41, "word": " do", "probability": 0.55517578125}, {"start": 2410.41, "end": 2410.69, "word": " the", "probability": 0.9140625}, {"start": 2410.69, "end": 2410.69, "word": " same", "probability": 0.85888671875}, {"start": 2410.69, "end": 2411.35, "word": " conversion", "probability": 0.30126953125}, {"start": 2411.35, "end": 2411.53, "word": " process,", "probability": 0.66796875}, {"start": 2411.93, "end": 2412.07, "word": " and", "probability": 0.42578125}, {"start": 2412.07, "end": 2412.23, "word": " then", "probability": 0.72900390625}, {"start": 2412.23, "end": 2412.47, "word": " say", "probability": 0.311279296875}, {"start": 2412.47, "end": 2412.91, "word": " super,", "probability": 0.64892578125}], "temperature": 1.0}, {"id": 93, "seek": 244141, "start": 2416.33, "end": 2441.41, "text": ".WriteBytesToSocket() which is the method here or write bytes and give it to it to add the same feature to this one I had to do subclasses if I have ten output streams and this is what exists, types of output streams, there is a buffered output stream written on the memory each one has to do what? extend to add a new feature what is this story? every time I have an output stream", "tokens": [13, 54, 35002, 33, 43673, 13342, 50, 31380, 45191, 597, 307, 264, 3170, 510, 420, 2464, 36088, 293, 976, 309, 281, 309, 281, 909, 264, 912, 4111, 281, 341, 472, 286, 632, 281, 360, 1422, 11665, 279, 498, 286, 362, 2064, 5598, 15842, 293, 341, 307, 437, 8198, 11, 3467, 295, 5598, 15842, 11, 456, 307, 257, 9204, 4073, 5598, 4309, 3720, 322, 264, 4675, 1184, 472, 575, 281, 360, 437, 30, 10101, 281, 909, 257, 777, 4111, 437, 307, 341, 1657, 30, 633, 565, 286, 362, 364, 5598, 4309], "avg_logprob": -0.5329670159371345, "compression_ratio": 1.7720930232558139, "no_speech_prob": 2.4437904357910156e-06, "words": [{"start": 2416.33, "end": 2416.81, "word": ".WriteBytesToSocket", "probability": 0.6573028564453125}, {"start": 2416.81, "end": 2417.29, "word": "()", "probability": 0.404541015625}, {"start": 2417.29, "end": 2417.35, "word": " which", "probability": 0.11328125}, {"start": 2417.35, "end": 2417.89, "word": " is", "probability": 0.88232421875}, {"start": 2417.89, "end": 2417.91, "word": " the", "probability": 0.4541015625}, {"start": 2417.91, "end": 2418.13, "word": " method", "probability": 0.89599609375}, {"start": 2418.13, "end": 2418.61, "word": " here", "probability": 0.169189453125}, {"start": 2418.61, "end": 2419.85, "word": " or", "probability": 0.305419921875}, {"start": 2419.85, "end": 2420.01, "word": " write", "probability": 0.501953125}, {"start": 2420.01, "end": 2420.41, "word": " bytes", "probability": 0.92041015625}, {"start": 2420.41, "end": 2420.57, "word": " and", "probability": 0.7919921875}, {"start": 2420.57, "end": 2420.73, "word": " give", "probability": 0.101318359375}, {"start": 2420.73, "end": 2420.91, "word": " it", "probability": 0.6953125}, {"start": 2420.91, "end": 2420.99, "word": " to", "probability": 0.7353515625}, {"start": 2420.99, "end": 2421.23, "word": " it", "probability": 0.5556640625}, {"start": 2421.23, "end": 2421.95, "word": " to", "probability": 0.2034912109375}, {"start": 2421.95, "end": 2422.29, "word": " add", "probability": 0.8564453125}, {"start": 2422.29, "end": 2422.47, "word": " the", "probability": 0.497314453125}, {"start": 2422.47, "end": 2423.09, "word": " same", "probability": 0.6123046875}, {"start": 2423.09, "end": 2423.19, "word": " feature", "probability": 0.9287109375}, {"start": 2423.19, "end": 2424.39, "word": " to", "probability": 0.45556640625}, {"start": 2424.39, "end": 2424.75, "word": " this", "probability": 0.654296875}, {"start": 2424.75, "end": 2424.83, "word": " one", "probability": 0.46923828125}, {"start": 2424.83, "end": 2425.31, "word": " I", "probability": 0.49267578125}, {"start": 2425.31, "end": 2425.59, "word": " had", "probability": 0.431884765625}, {"start": 2425.59, "end": 2425.65, "word": " to", "probability": 0.9697265625}, {"start": 2425.65, "end": 2425.85, "word": " do", "probability": 0.39892578125}, {"start": 2425.85, "end": 2427.21, "word": " subclasses", "probability": 0.627197265625}, {"start": 2427.21, "end": 2427.69, "word": " if", "probability": 0.74072265625}, {"start": 2427.69, "end": 2427.95, "word": " I", "probability": 0.9443359375}, {"start": 2427.95, "end": 2427.97, "word": " have", "probability": 0.72802734375}, {"start": 2427.97, "end": 2428.23, "word": " ten", "probability": 0.415771484375}, {"start": 2428.23, "end": 2428.55, "word": " output", "probability": 0.951171875}, {"start": 2428.55, "end": 2428.81, "word": " streams", "probability": 0.9130859375}, {"start": 2428.81, "end": 2428.89, "word": " and", "probability": 0.5224609375}, {"start": 2428.89, "end": 2429.03, "word": " this", "probability": 0.5703125}, {"start": 2429.03, "end": 2429.09, "word": " is", "probability": 0.70849609375}, {"start": 2429.09, "end": 2429.13, "word": " what", "probability": 0.471923828125}, {"start": 2429.13, "end": 2429.53, "word": " exists,", "probability": 0.37353515625}, {"start": 2429.73, "end": 2430.09, "word": " types", "probability": 0.21044921875}, {"start": 2430.09, "end": 2430.25, "word": " of", "probability": 0.95849609375}, {"start": 2430.25, "end": 2430.51, "word": " output", "probability": 0.87255859375}, {"start": 2430.51, "end": 2430.81, "word": " streams,", "probability": 0.8408203125}, {"start": 2430.91, "end": 2431.07, "word": " there", "probability": 0.388916015625}, {"start": 2431.07, "end": 2431.09, "word": " is", "probability": 0.537109375}, {"start": 2431.09, "end": 2431.23, "word": " a", "probability": 0.7294921875}, {"start": 2431.23, "end": 2431.57, "word": " buffered", "probability": 0.720703125}, {"start": 2431.57, "end": 2431.91, "word": " output", "probability": 0.95166015625}, {"start": 2431.91, "end": 2432.23, "word": " stream", "probability": 0.9169921875}, {"start": 2432.23, "end": 2432.49, "word": " written", "probability": 0.5439453125}, {"start": 2432.49, "end": 2432.65, "word": " on", "probability": 0.8125}, {"start": 2432.65, "end": 2432.73, "word": " the", "probability": 0.6357421875}, {"start": 2432.73, "end": 2433.05, "word": " memory", "probability": 0.89599609375}, {"start": 2433.05, "end": 2435.17, "word": " each", "probability": 0.394287109375}, {"start": 2435.17, "end": 2435.49, "word": " one", "probability": 0.7509765625}, {"start": 2435.49, "end": 2435.65, "word": " has", "probability": 0.3427734375}, {"start": 2435.65, "end": 2435.91, "word": " to", "probability": 0.96826171875}, {"start": 2435.91, "end": 2436.11, "word": " do", "probability": 0.371826171875}, {"start": 2436.11, "end": 2436.47, "word": " what?", "probability": 0.81982421875}, {"start": 2437.03, "end": 2437.51, "word": " extend", "probability": 0.7392578125}, {"start": 2437.51, "end": 2437.77, "word": " to", "probability": 0.76904296875}, {"start": 2437.77, "end": 2438.03, "word": " add", "probability": 0.919921875}, {"start": 2438.03, "end": 2438.15, "word": " a", "probability": 0.744140625}, {"start": 2438.15, "end": 2438.71, "word": " new", "probability": 0.8955078125}, {"start": 2438.71, "end": 2438.71, "word": " feature", "probability": 0.4697265625}, {"start": 2438.71, "end": 2439.61, "word": " what", "probability": 0.230712890625}, {"start": 2439.61, "end": 2439.69, "word": " is", "probability": 0.806640625}, {"start": 2439.69, "end": 2439.79, "word": " this", "probability": 0.76904296875}, {"start": 2439.79, "end": 2440.03, "word": " story?", "probability": 0.78759765625}, {"start": 2440.15, "end": 2440.29, "word": " every", "probability": 0.288330078125}, {"start": 2440.29, "end": 2440.37, "word": " time", "probability": 0.775390625}, {"start": 2440.37, "end": 2440.57, "word": " I", "probability": 0.94091796875}, {"start": 2440.57, "end": 2440.71, "word": " have", "probability": 0.92529296875}, {"start": 2440.71, "end": 2440.83, "word": " an", "probability": 0.54345703125}, {"start": 2440.83, "end": 2441.01, "word": " output", "probability": 0.9765625}, {"start": 2441.01, "end": 2441.41, "word": " stream", "probability": 0.9580078125}], "temperature": 1.0}, {"id": 94, "seek": 246278, "start": 2442.84, "end": 2462.78, "text": "And in order to support her writing a string, I wanted to extend it to a new class to add this feature, and she said, no, we let you go She said, instead of making this class, and this class, and this class, we made one class, all of them with the name PrintWriter", "tokens": [5289, 294, 1668, 281, 1406, 720, 3579, 257, 6798, 11, 286, 1415, 281, 10101, 309, 281, 257, 777, 1508, 281, 909, 341, 4111, 11, 293, 750, 848, 11, 572, 11, 321, 718, 291, 352, 1240, 848, 11, 2602, 295, 1455, 341, 1508, 11, 293, 341, 1508, 11, 293, 341, 1508, 11, 321, 1027, 472, 1508, 11, 439, 295, 552, 365, 264, 1315, 34439, 54, 81, 1681], "avg_logprob": -0.6040111904713645, "compression_ratio": 1.6603773584905661, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 2442.84, "end": 2443.1, "word": "And", "probability": 0.268798828125}, {"start": 2443.1, "end": 2443.32, "word": " in", "probability": 0.2099609375}, {"start": 2443.32, "end": 2443.32, "word": " order", "probability": 0.9130859375}, {"start": 2443.32, "end": 2443.38, "word": " to", "probability": 0.86962890625}, {"start": 2443.38, "end": 2443.64, "word": " support", "probability": 0.58544921875}, {"start": 2443.64, "end": 2443.8, "word": " her", "probability": 0.338623046875}, {"start": 2443.8, "end": 2444.04, "word": " writing", "probability": 0.55810546875}, {"start": 2444.04, "end": 2444.26, "word": " a", "probability": 0.21923828125}, {"start": 2444.26, "end": 2444.54, "word": " string,", "probability": 0.455322265625}, {"start": 2444.72, "end": 2444.82, "word": " I", "probability": 0.50146484375}, {"start": 2444.82, "end": 2444.94, "word": " wanted", "probability": 0.1566162109375}, {"start": 2444.94, "end": 2445.32, "word": " to", "probability": 0.89208984375}, {"start": 2445.32, "end": 2445.66, "word": " extend", "probability": 0.56201171875}, {"start": 2445.66, "end": 2445.82, "word": " it", "probability": 0.174072265625}, {"start": 2445.82, "end": 2445.82, "word": " to", "probability": 0.6962890625}, {"start": 2445.82, "end": 2445.84, "word": " a", "probability": 0.58740234375}, {"start": 2445.84, "end": 2446.28, "word": " new", "probability": 0.84033203125}, {"start": 2446.28, "end": 2446.28, "word": " class", "probability": 0.94873046875}, {"start": 2446.28, "end": 2446.56, "word": " to", "probability": 0.383056640625}, {"start": 2446.56, "end": 2446.78, "word": " add", "probability": 0.81396484375}, {"start": 2446.78, "end": 2446.92, "word": " this", "probability": 0.7490234375}, {"start": 2446.92, "end": 2447.26, "word": " feature,", "probability": 0.85205078125}, {"start": 2447.72, "end": 2447.9, "word": " and", "probability": 0.53076171875}, {"start": 2447.9, "end": 2447.94, "word": " she", "probability": 0.471435546875}, {"start": 2447.94, "end": 2448.04, "word": " said,", "probability": 0.70947265625}, {"start": 2448.12, "end": 2448.2, "word": " no,", "probability": 0.318115234375}, {"start": 2448.28, "end": 2448.46, "word": " we", "probability": 0.7685546875}, {"start": 2448.46, "end": 2448.66, "word": " let", "probability": 0.1170654296875}, {"start": 2448.66, "end": 2449.02, "word": " you", "probability": 0.90625}, {"start": 2449.02, "end": 2449.02, "word": " go", "probability": 0.420166015625}, {"start": 2449.02, "end": 2449.92, "word": " She", "probability": 0.2425537109375}, {"start": 2449.92, "end": 2450.12, "word": " said,", "probability": 0.87158203125}, {"start": 2450.2, "end": 2450.48, "word": " instead", "probability": 0.59130859375}, {"start": 2450.48, "end": 2450.54, "word": " of", "probability": 0.96875}, {"start": 2450.54, "end": 2450.92, "word": " making", "probability": 0.45654296875}, {"start": 2450.92, "end": 2451.8, "word": " this", "probability": 0.356201171875}, {"start": 2451.8, "end": 2452.12, "word": " class,", "probability": 0.892578125}, {"start": 2452.2, "end": 2452.28, "word": " and", "probability": 0.476806640625}, {"start": 2452.28, "end": 2452.52, "word": " this", "probability": 0.77685546875}, {"start": 2452.52, "end": 2452.82, "word": " class,", "probability": 0.9013671875}, {"start": 2452.86, "end": 2452.96, "word": " and", "probability": 0.8828125}, {"start": 2452.96, "end": 2453.18, "word": " this", "probability": 0.88720703125}, {"start": 2453.18, "end": 2453.64, "word": " class,", "probability": 0.93603515625}, {"start": 2454.0, "end": 2454.38, "word": " we", "probability": 0.19921875}, {"start": 2454.38, "end": 2454.7, "word": " made", "probability": 0.611328125}, {"start": 2454.7, "end": 2455.56, "word": " one", "probability": 0.451904296875}, {"start": 2455.56, "end": 2455.78, "word": " class,", "probability": 0.939453125}, {"start": 2457.0, "end": 2457.64, "word": " all", "probability": 0.599609375}, {"start": 2457.64, "end": 2457.82, "word": " of", "probability": 0.865234375}, {"start": 2457.82, "end": 2457.94, "word": " them", "probability": 0.689453125}, {"start": 2457.94, "end": 2459.02, "word": " with", "probability": 0.20361328125}, {"start": 2459.02, "end": 2459.4, "word": " the", "probability": 0.49658203125}, {"start": 2459.4, "end": 2459.74, "word": " name", "probability": 0.87060546875}, {"start": 2459.74, "end": 2462.78, "word": " PrintWriter", "probability": 0.7882080078125}], "temperature": 1.0}, {"id": 95, "seek": 249121, "start": 2465.43, "end": 2491.21, "text": "Okay? How did they design this print writer? Inside it, it is wrapped with an object of the type of output stream. Just like we wrapped the circle or the shape, we wrapped it with what? With a border. The output stream was wrapped with what? Yes, with a print writer.", "tokens": [8297, 30, 1012, 630, 436, 1715, 341, 4482, 9936, 30, 15123, 309, 11, 309, 307, 14226, 365, 364, 2657, 295, 264, 2010, 295, 5598, 4309, 13, 1449, 411, 321, 14226, 264, 6329, 420, 264, 3909, 11, 321, 14226, 309, 365, 437, 30, 2022, 257, 7838, 13, 440, 5598, 4309, 390, 14226, 365, 437, 30, 1079, 11, 365, 257, 4482, 9936, 13], "avg_logprob": -0.5236895295881456, "compression_ratio": 1.6280487804878048, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 2465.4300000000003, "end": 2466.03, "word": "Okay?", "probability": 0.1436767578125}, {"start": 2466.77, "end": 2466.97, "word": " How", "probability": 0.291748046875}, {"start": 2466.97, "end": 2466.97, "word": " did", "probability": 0.3994140625}, {"start": 2466.97, "end": 2466.97, "word": " they", "probability": 0.7431640625}, {"start": 2466.97, "end": 2466.97, "word": " design", "probability": 0.89892578125}, {"start": 2466.97, "end": 2466.97, "word": " this", "probability": 0.29541015625}, {"start": 2466.97, "end": 2467.27, "word": " print", "probability": 0.630859375}, {"start": 2467.27, "end": 2467.67, "word": " writer?", "probability": 0.720703125}, {"start": 2469.43, "end": 2470.03, "word": " Inside", "probability": 0.60546875}, {"start": 2470.03, "end": 2470.65, "word": " it,", "probability": 0.50244140625}, {"start": 2470.65, "end": 2470.83, "word": " it", "probability": 0.58984375}, {"start": 2470.83, "end": 2470.95, "word": " is", "probability": 0.6806640625}, {"start": 2470.95, "end": 2471.23, "word": " wrapped", "probability": 0.454345703125}, {"start": 2471.23, "end": 2471.43, "word": " with", "probability": 0.5009765625}, {"start": 2471.43, "end": 2471.59, "word": " an", "probability": 0.60791015625}, {"start": 2471.59, "end": 2471.77, "word": " object", "probability": 0.8701171875}, {"start": 2471.77, "end": 2471.93, "word": " of", "probability": 0.7734375}, {"start": 2471.93, "end": 2472.27, "word": " the", "probability": 0.408203125}, {"start": 2472.27, "end": 2472.27, "word": " type", "probability": 0.491943359375}, {"start": 2472.27, "end": 2472.39, "word": " of", "probability": 0.36474609375}, {"start": 2472.39, "end": 2472.79, "word": " output", "probability": 0.71533203125}, {"start": 2472.79, "end": 2475.07, "word": " stream.", "probability": 0.71044921875}, {"start": 2476.59, "end": 2477.19, "word": " Just", "probability": 0.30810546875}, {"start": 2477.19, "end": 2477.31, "word": " like", "probability": 0.67626953125}, {"start": 2477.31, "end": 2477.67, "word": " we", "probability": 0.66796875}, {"start": 2477.67, "end": 2478.05, "word": " wrapped", "probability": 0.650390625}, {"start": 2478.05, "end": 2480.43, "word": " the", "probability": 0.6669921875}, {"start": 2480.43, "end": 2480.95, "word": " circle", "probability": 0.92333984375}, {"start": 2480.95, "end": 2481.65, "word": " or", "probability": 0.71728515625}, {"start": 2481.65, "end": 2481.79, "word": " the", "probability": 0.4423828125}, {"start": 2481.79, "end": 2482.81, "word": " shape,", "probability": 0.5478515625}, {"start": 2482.95, "end": 2483.13, "word": " we", "probability": 0.475341796875}, {"start": 2483.13, "end": 2483.35, "word": " wrapped", "probability": 0.83544921875}, {"start": 2483.35, "end": 2483.57, "word": " it", "probability": 0.8046875}, {"start": 2483.57, "end": 2483.71, "word": " with", "probability": 0.80810546875}, {"start": 2483.71, "end": 2483.91, "word": " what?", "probability": 0.501953125}, {"start": 2484.21, "end": 2484.69, "word": " With", "probability": 0.437255859375}, {"start": 2484.69, "end": 2484.77, "word": " a", "probability": 0.37548828125}, {"start": 2484.77, "end": 2484.99, "word": " border.", "probability": 0.81982421875}, {"start": 2486.43, "end": 2486.73, "word": " The", "probability": 0.1634521484375}, {"start": 2486.73, "end": 2487.13, "word": " output", "probability": 0.919921875}, {"start": 2487.13, "end": 2487.53, "word": " stream", "probability": 0.87939453125}, {"start": 2487.53, "end": 2487.67, "word": " was", "probability": 0.53759765625}, {"start": 2487.67, "end": 2487.85, "word": " wrapped", "probability": 0.7490234375}, {"start": 2487.85, "end": 2488.81, "word": " with", "probability": 0.7333984375}, {"start": 2488.81, "end": 2488.97, "word": " what?", "probability": 0.443115234375}, {"start": 2489.83, "end": 2490.17, "word": " Yes,", "probability": 0.5712890625}, {"start": 2490.49, "end": 2490.61, "word": " with", "probability": 0.70947265625}, {"start": 2490.61, "end": 2490.69, "word": " a", "probability": 0.75048828125}, {"start": 2490.69, "end": 2490.87, "word": " print", "probability": 0.93212890625}, {"start": 2490.87, "end": 2491.21, "word": " writer.", "probability": 0.90576171875}], "temperature": 1.0}, {"id": 96, "seek": 252137, "start": 2492.47, "end": 2521.37, "text": "And of course, he made a constructor. I'm sitting in this gate. Imagine how the print writer looks like. He made a constructor called printWriter. It takes an object from it and outputs a stream, which is OOS. To initialize to whom? To the OOS here. Okay? And then he made a new method. Here, public, void for example. Its name is printLin.", "tokens": [5289, 295, 1164, 11, 415, 1027, 257, 47479, 13, 286, 478, 3798, 294, 341, 8539, 13, 11739, 577, 264, 4482, 9936, 1542, 411, 13, 634, 1027, 257, 47479, 1219, 4482, 54, 81, 1681, 13, 467, 2516, 364, 2657, 490, 309, 293, 23930, 257, 4309, 11, 597, 307, 422, 4367, 13, 1407, 5883, 1125, 281, 7101, 30, 1407, 264, 422, 4367, 510, 13, 1033, 30, 400, 550, 415, 1027, 257, 777, 3170, 13, 1692, 11, 1908, 11, 22009, 337, 1365, 13, 6953, 1315, 307, 4482, 43, 259, 13], "avg_logprob": -0.5372869223356247, "compression_ratio": 1.5178571428571428, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2492.47, "end": 2492.69, "word": "And", "probability": 0.1943359375}, {"start": 2492.69, "end": 2492.87, "word": " of", "probability": 0.289306640625}, {"start": 2492.87, "end": 2492.99, "word": " course,", "probability": 0.94482421875}, {"start": 2493.19, "end": 2493.19, "word": " he", "probability": 0.607421875}, {"start": 2493.19, "end": 2493.19, "word": " made", "probability": 0.322021484375}, {"start": 2493.19, "end": 2493.39, "word": " a", "probability": 0.85498046875}, {"start": 2493.39, "end": 2493.89, "word": " constructor.", "probability": 0.79296875}, {"start": 2494.09, "end": 2494.57, "word": " I'm", "probability": 0.3980712890625}, {"start": 2494.57, "end": 2494.59, "word": " sitting", "probability": 0.2364501953125}, {"start": 2494.59, "end": 2494.73, "word": " in", "probability": 0.50927734375}, {"start": 2494.73, "end": 2494.83, "word": " this", "probability": 0.82666015625}, {"start": 2494.83, "end": 2495.09, "word": " gate.", "probability": 0.6455078125}, {"start": 2495.33, "end": 2495.81, "word": " Imagine", "probability": 0.55810546875}, {"start": 2495.81, "end": 2496.05, "word": " how", "probability": 0.63134765625}, {"start": 2496.05, "end": 2497.41, "word": " the", "probability": 0.186767578125}, {"start": 2497.41, "end": 2497.71, "word": " print", "probability": 0.70556640625}, {"start": 2497.71, "end": 2498.07, "word": " writer", "probability": 0.642578125}, {"start": 2498.07, "end": 2498.07, "word": " looks", "probability": 0.712890625}, {"start": 2498.07, "end": 2498.21, "word": " like.", "probability": 0.60888671875}, {"start": 2498.31, "end": 2498.59, "word": " He", "probability": 0.80078125}, {"start": 2498.59, "end": 2498.73, "word": " made", "probability": 0.78466796875}, {"start": 2498.73, "end": 2498.83, "word": " a", "probability": 0.9521484375}, {"start": 2498.83, "end": 2499.33, "word": " constructor", "probability": 0.80224609375}, {"start": 2499.33, "end": 2499.63, "word": " called", "probability": 0.463134765625}, {"start": 2499.63, "end": 2502.05, "word": " printWriter.", "probability": 0.7205810546875}, {"start": 2502.91, "end": 2503.39, "word": " It", "probability": 0.49609375}, {"start": 2503.39, "end": 2503.65, "word": " takes", "probability": 0.71875}, {"start": 2503.65, "end": 2503.83, "word": " an", "probability": 0.580078125}, {"start": 2503.83, "end": 2504.05, "word": " object", "probability": 0.93896484375}, {"start": 2504.05, "end": 2504.23, "word": " from", "probability": 0.51513671875}, {"start": 2504.23, "end": 2504.41, "word": " it", "probability": 0.814453125}, {"start": 2504.41, "end": 2504.67, "word": " and", "probability": 0.5107421875}, {"start": 2504.67, "end": 2504.97, "word": " outputs", "probability": 0.755859375}, {"start": 2504.97, "end": 2507.05, "word": " a", "probability": 0.55615234375}, {"start": 2507.05, "end": 2507.37, "word": " stream,", "probability": 0.6962890625}, {"start": 2507.59, "end": 2507.65, "word": " which", "probability": 0.84326171875}, {"start": 2507.65, "end": 2507.81, "word": " is", "probability": 0.931640625}, {"start": 2507.81, "end": 2508.21, "word": " OOS.", "probability": 0.2696533203125}, {"start": 2508.31, "end": 2508.49, "word": " To", "probability": 0.370361328125}, {"start": 2508.49, "end": 2509.43, "word": " initialize", "probability": 0.6734619140625}, {"start": 2509.43, "end": 2509.63, "word": " to", "probability": 0.26611328125}, {"start": 2509.63, "end": 2509.75, "word": " whom?", "probability": 0.59619140625}, {"start": 2510.17, "end": 2510.65, "word": " To", "probability": 0.82861328125}, {"start": 2510.65, "end": 2510.75, "word": " the", "probability": 0.369384765625}, {"start": 2510.75, "end": 2511.07, "word": " OOS", "probability": 0.86572265625}, {"start": 2511.07, "end": 2511.37, "word": " here.", "probability": 0.397216796875}, {"start": 2513.19, "end": 2513.43, "word": " Okay?", "probability": 0.21337890625}, {"start": 2513.85, "end": 2514.13, "word": " And", "probability": 0.7353515625}, {"start": 2514.13, "end": 2514.43, "word": " then", "probability": 0.80810546875}, {"start": 2514.43, "end": 2514.57, "word": " he", "probability": 0.7080078125}, {"start": 2514.57, "end": 2514.73, "word": " made", "probability": 0.78662109375}, {"start": 2514.73, "end": 2514.81, "word": " a", "probability": 0.91845703125}, {"start": 2514.81, "end": 2514.81, "word": " new", "probability": 0.91357421875}, {"start": 2514.81, "end": 2515.21, "word": " method.", "probability": 0.943359375}, {"start": 2516.19, "end": 2516.47, "word": " Here,", "probability": 0.5947265625}, {"start": 2516.67, "end": 2517.11, "word": " public,", "probability": 0.708984375}, {"start": 2517.39, "end": 2517.83, "word": " void", "probability": 0.861328125}, {"start": 2517.83, "end": 2517.99, "word": " for", "probability": 0.69189453125}, {"start": 2517.99, "end": 2518.25, "word": " example.", "probability": 0.9443359375}, {"start": 2518.75, "end": 2518.89, "word": " Its", "probability": 0.235107421875}, {"start": 2518.89, "end": 2519.07, "word": " name", "probability": 0.90625}, {"start": 2519.07, "end": 2519.19, "word": " is", "probability": 0.951171875}, {"start": 2519.19, "end": 2521.37, "word": " printLin.", "probability": 0.7791341145833334}], "temperature": 1.0}, {"id": 97, "seek": 255098, "start": 2522.93, "end": 2550.99, "text": "Okay? This thing takes a string. It needs to add a new property that takes the string and converts it to binary data and then comes to the output stream and tells it to write bytes. Am I right or not, guys? In this class, the output stream is enclosed. What is the advantage of this method? Because this output stream is the interface for whom? All their fathers.", "tokens": [8297, 30, 639, 551, 2516, 257, 6798, 13, 467, 2203, 281, 909, 257, 777, 4707, 300, 2516, 264, 6798, 293, 38874, 309, 281, 17434, 1412, 293, 550, 1487, 281, 264, 5598, 4309, 293, 5112, 309, 281, 2464, 36088, 13, 2012, 286, 558, 420, 406, 11, 1074, 30, 682, 341, 1508, 11, 264, 5598, 4309, 307, 42089, 13, 708, 307, 264, 5002, 295, 341, 3170, 30, 1436, 341, 5598, 4309, 307, 264, 9226, 337, 7101, 30, 1057, 641, 23450, 13], "avg_logprob": -0.519140613079071, "compression_ratio": 1.665137614678899, "no_speech_prob": 2.0265579223632812e-06, "words": [{"start": 2522.93, "end": 2523.25, "word": "Okay?", "probability": 0.1888427734375}, {"start": 2523.33, "end": 2523.49, "word": " This", "probability": 0.442626953125}, {"start": 2523.49, "end": 2523.65, "word": " thing", "probability": 0.418212890625}, {"start": 2523.65, "end": 2524.15, "word": " takes", "probability": 0.67529296875}, {"start": 2524.15, "end": 2525.15, "word": " a", "probability": 0.654296875}, {"start": 2525.15, "end": 2525.53, "word": " string.", "probability": 0.708984375}, {"start": 2526.73, "end": 2527.25, "word": " It", "probability": 0.5478515625}, {"start": 2527.25, "end": 2527.41, "word": " needs", "probability": 0.352294921875}, {"start": 2527.41, "end": 2527.47, "word": " to", "probability": 0.7841796875}, {"start": 2527.47, "end": 2527.63, "word": " add", "probability": 0.78076171875}, {"start": 2527.63, "end": 2527.75, "word": " a", "probability": 0.88916015625}, {"start": 2527.75, "end": 2528.27, "word": " new", "probability": 0.8798828125}, {"start": 2528.27, "end": 2528.27, "word": " property", "probability": 0.6005859375}, {"start": 2528.27, "end": 2528.57, "word": " that", "probability": 0.250732421875}, {"start": 2528.57, "end": 2528.87, "word": " takes", "probability": 0.50537109375}, {"start": 2528.87, "end": 2529.09, "word": " the", "probability": 0.732421875}, {"start": 2529.09, "end": 2529.49, "word": " string", "probability": 0.83740234375}, {"start": 2529.49, "end": 2530.23, "word": " and", "probability": 0.462646484375}, {"start": 2530.23, "end": 2530.53, "word": " converts", "probability": 0.46875}, {"start": 2530.53, "end": 2530.67, "word": " it", "probability": 0.931640625}, {"start": 2530.67, "end": 2530.75, "word": " to", "probability": 0.52978515625}, {"start": 2530.75, "end": 2531.05, "word": " binary", "probability": 0.71826171875}, {"start": 2531.05, "end": 2531.55, "word": " data", "probability": 0.9375}, {"start": 2531.55, "end": 2532.27, "word": " and", "probability": 0.37890625}, {"start": 2532.27, "end": 2532.57, "word": " then", "probability": 0.658203125}, {"start": 2532.57, "end": 2532.81, "word": " comes", "probability": 0.318359375}, {"start": 2532.81, "end": 2532.97, "word": " to", "probability": 0.91015625}, {"start": 2532.97, "end": 2533.07, "word": " the", "probability": 0.79443359375}, {"start": 2533.07, "end": 2533.35, "word": " output", "probability": 0.94921875}, {"start": 2533.35, "end": 2533.87, "word": " stream", "probability": 0.9248046875}, {"start": 2533.87, "end": 2535.39, "word": " and", "probability": 0.79296875}, {"start": 2535.39, "end": 2535.61, "word": " tells", "probability": 0.285400390625}, {"start": 2535.61, "end": 2535.71, "word": " it", "probability": 0.85791015625}, {"start": 2535.71, "end": 2535.77, "word": " to", "probability": 0.67041015625}, {"start": 2535.77, "end": 2536.11, "word": " write", "probability": 0.8857421875}, {"start": 2536.11, "end": 2537.43, "word": " bytes.", "probability": 0.91943359375}, {"start": 2541.49, "end": 2542.01, "word": " Am", "probability": 0.173828125}, {"start": 2542.01, "end": 2542.07, "word": " I", "probability": 0.91162109375}, {"start": 2542.07, "end": 2542.13, "word": " right", "probability": 0.8896484375}, {"start": 2542.13, "end": 2542.33, "word": " or", "probability": 0.55224609375}, {"start": 2542.33, "end": 2542.35, "word": " not,", "probability": 0.783203125}, {"start": 2542.45, "end": 2542.57, "word": " guys?", "probability": 0.77392578125}, {"start": 2543.01, "end": 2543.13, "word": " In", "probability": 0.56884765625}, {"start": 2543.13, "end": 2543.39, "word": " this", "probability": 0.87646484375}, {"start": 2543.39, "end": 2543.75, "word": " class,", "probability": 0.9580078125}, {"start": 2543.85, "end": 2544.37, "word": " the", "probability": 0.669921875}, {"start": 2544.37, "end": 2544.63, "word": " output", "probability": 0.93505859375}, {"start": 2544.63, "end": 2544.99, "word": " stream", "probability": 0.78466796875}, {"start": 2544.99, "end": 2544.99, "word": " is", "probability": 0.318603515625}, {"start": 2544.99, "end": 2544.99, "word": " enclosed.", "probability": 0.07843017578125}, {"start": 2545.81, "end": 2546.07, "word": " What", "probability": 0.86083984375}, {"start": 2546.07, "end": 2546.09, "word": " is", "probability": 0.63818359375}, {"start": 2546.09, "end": 2546.21, "word": " the", "probability": 0.61328125}, {"start": 2546.21, "end": 2546.39, "word": " advantage", "probability": 0.302978515625}, {"start": 2546.39, "end": 2546.53, "word": " of", "probability": 0.625}, {"start": 2546.53, "end": 2546.61, "word": " this", "probability": 0.9267578125}, {"start": 2546.61, "end": 2546.95, "word": " method?", "probability": 0.6708984375}, {"start": 2547.53, "end": 2547.81, "word": " Because", "probability": 0.177978515625}, {"start": 2547.81, "end": 2547.93, "word": " this", "probability": 0.5400390625}, {"start": 2547.93, "end": 2548.19, "word": " output", "probability": 0.8583984375}, {"start": 2548.19, "end": 2548.57, "word": " stream", "probability": 0.92236328125}, {"start": 2548.57, "end": 2548.91, "word": " is", "probability": 0.53173828125}, {"start": 2548.91, "end": 2549.03, "word": " the", "probability": 0.57861328125}, {"start": 2549.03, "end": 2549.63, "word": " interface", "probability": 0.859375}, {"start": 2549.63, "end": 2549.83, "word": " for", "probability": 0.5322265625}, {"start": 2549.83, "end": 2550.03, "word": " whom?", "probability": 0.2666015625}, {"start": 2550.39, "end": 2550.77, "word": " All", "probability": 0.369384765625}, {"start": 2550.77, "end": 2550.99, "word": " their", "probability": 0.65869140625}, {"start": 2550.99, "end": 2550.99, "word": " fathers.", "probability": 0.6962890625}], "temperature": 1.0}, {"id": 98, "seek": 258083, "start": 2552.73, "end": 2580.83, "text": "You can create an object from the print writer and send it a file output stream, socket output stream, buffered output stream, whatever output stream. And all of them execute a print train. This gives you a new feature, which is the ability to write texts on the output stream regardless of the type of output stream. This means that this print writer is a wrapper", "tokens": [3223, 393, 1884, 364, 2657, 490, 264, 4482, 9936, 293, 2845, 309, 257, 3991, 5598, 4309, 11, 19741, 5598, 4309, 11, 9204, 4073, 5598, 4309, 11, 2035, 5598, 4309, 13, 400, 439, 295, 552, 14483, 257, 4482, 3847, 13, 639, 2709, 291, 257, 777, 4111, 11, 597, 307, 264, 3485, 281, 2464, 15765, 322, 264, 5598, 4309, 10060, 295, 264, 2010, 295, 5598, 4309, 13, 639, 1355, 300, 341, 4482, 9936, 307, 257, 46906], "avg_logprob": -0.4687499944368998, "compression_ratio": 1.829145728643216, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 2552.73, "end": 2553.45, "word": "You", "probability": 0.11767578125}, {"start": 2553.45, "end": 2554.07, "word": " can", "probability": 0.79248046875}, {"start": 2554.07, "end": 2554.35, "word": " create", "probability": 0.70654296875}, {"start": 2554.35, "end": 2554.55, "word": " an", "probability": 0.76220703125}, {"start": 2554.55, "end": 2554.75, "word": " object", "probability": 0.96337890625}, {"start": 2554.75, "end": 2554.99, "word": " from", "probability": 0.736328125}, {"start": 2554.99, "end": 2555.13, "word": " the", "probability": 0.4169921875}, {"start": 2555.13, "end": 2555.35, "word": " print", "probability": 0.76953125}, {"start": 2555.35, "end": 2555.77, "word": " writer", "probability": 0.5654296875}, {"start": 2555.77, "end": 2556.43, "word": " and", "probability": 0.63232421875}, {"start": 2556.43, "end": 2556.67, "word": " send", "probability": 0.52001953125}, {"start": 2556.67, "end": 2556.95, "word": " it", "probability": 0.75390625}, {"start": 2556.95, "end": 2557.77, "word": " a", "probability": 0.313720703125}, {"start": 2557.77, "end": 2558.01, "word": " file", "probability": 0.64697265625}, {"start": 2558.01, "end": 2558.33, "word": " output", "probability": 0.89306640625}, {"start": 2558.33, "end": 2558.69, "word": " stream,", "probability": 0.9228515625}, {"start": 2559.09, "end": 2559.69, "word": " socket", "probability": 0.6787109375}, {"start": 2559.69, "end": 2560.09, "word": " output", "probability": 0.9365234375}, {"start": 2560.09, "end": 2560.53, "word": " stream,", "probability": 0.94287109375}, {"start": 2561.19, "end": 2561.61, "word": " buffered", "probability": 0.66748046875}, {"start": 2561.61, "end": 2561.93, "word": " output", "probability": 0.93896484375}, {"start": 2561.93, "end": 2562.43, "word": " stream,", "probability": 0.95068359375}, {"start": 2563.01, "end": 2563.33, "word": " whatever", "probability": 0.802734375}, {"start": 2563.33, "end": 2563.71, "word": " output", "probability": 0.9150390625}, {"start": 2563.71, "end": 2564.13, "word": " stream.", "probability": 0.94482421875}, {"start": 2565.07, "end": 2565.21, "word": " And", "probability": 0.5498046875}, {"start": 2565.21, "end": 2565.67, "word": " all", "probability": 0.381591796875}, {"start": 2565.67, "end": 2565.91, "word": " of", "probability": 0.7421875}, {"start": 2565.91, "end": 2565.91, "word": " them", "probability": 0.73779296875}, {"start": 2565.91, "end": 2566.53, "word": " execute", "probability": 0.31787109375}, {"start": 2566.53, "end": 2567.65, "word": " a", "probability": 0.481689453125}, {"start": 2567.65, "end": 2567.93, "word": " print", "probability": 0.59130859375}, {"start": 2567.93, "end": 2568.17, "word": " train.", "probability": 0.158447265625}, {"start": 2568.69, "end": 2569.19, "word": " This", "probability": 0.260009765625}, {"start": 2569.19, "end": 2569.41, "word": " gives", "probability": 0.1920166015625}, {"start": 2569.41, "end": 2569.85, "word": " you", "probability": 0.87158203125}, {"start": 2569.85, "end": 2569.89, "word": " a", "probability": 0.79736328125}, {"start": 2569.89, "end": 2569.89, "word": " new", "probability": 0.8486328125}, {"start": 2569.89, "end": 2570.35, "word": " feature,", "probability": 0.5361328125}, {"start": 2570.85, "end": 2570.89, "word": " which", "probability": 0.73486328125}, {"start": 2570.89, "end": 2571.05, "word": " is", "probability": 0.67626953125}, {"start": 2571.05, "end": 2571.15, "word": " the", "probability": 0.77099609375}, {"start": 2571.15, "end": 2571.51, "word": " ability", "probability": 0.82470703125}, {"start": 2571.51, "end": 2571.71, "word": " to", "probability": 0.96240234375}, {"start": 2571.71, "end": 2571.97, "word": " write", "probability": 0.8896484375}, {"start": 2571.97, "end": 2572.45, "word": " texts", "probability": 0.72900390625}, {"start": 2572.45, "end": 2572.67, "word": " on", "probability": 0.767578125}, {"start": 2572.67, "end": 2572.75, "word": " the", "probability": 0.68310546875}, {"start": 2572.75, "end": 2573.01, "word": " output", "probability": 0.9423828125}, {"start": 2573.01, "end": 2573.57, "word": " stream", "probability": 0.9521484375}, {"start": 2573.57, "end": 2574.25, "word": " regardless", "probability": 0.52197265625}, {"start": 2574.25, "end": 2574.71, "word": " of", "probability": 0.9658203125}, {"start": 2574.71, "end": 2574.73, "word": " the", "probability": 0.432373046875}, {"start": 2574.73, "end": 2574.89, "word": " type", "probability": 0.35888671875}, {"start": 2574.89, "end": 2575.01, "word": " of", "probability": 0.95947265625}, {"start": 2575.01, "end": 2575.41, "word": " output", "probability": 0.8017578125}, {"start": 2575.41, "end": 2576.57, "word": " stream.", "probability": 0.91796875}, {"start": 2577.15, "end": 2577.63, "word": " This", "probability": 0.296142578125}, {"start": 2577.63, "end": 2577.63, "word": " means", "probability": 0.42236328125}, {"start": 2577.63, "end": 2578.43, "word": " that", "probability": 0.83447265625}, {"start": 2578.43, "end": 2579.17, "word": " this", "probability": 0.751953125}, {"start": 2579.17, "end": 2579.59, "word": " print", "probability": 0.919921875}, {"start": 2579.59, "end": 2579.99, "word": " writer", "probability": 0.86328125}, {"start": 2579.99, "end": 2580.15, "word": " is", "probability": 0.89208984375}, {"start": 2580.15, "end": 2580.53, "word": " a", "probability": 0.325439453125}, {"start": 2580.53, "end": 2580.83, "word": " wrapper", "probability": 0.94482421875}], "temperature": 1.0}, {"id": 99, "seek": 260858, "start": 2582.6, "end": 2608.58, "text": "to the output stream to add to it the ability to write texts. Why did they do it this way? They used to tell you to memorize it this way. Why? That's it. Make a file output stream and make a print writer and pass this to this. Actually, this is an addition of a feature to whom? To the object that you pass here. Without this method, I had to add this feature to make a subclass for each", "tokens": [1353, 264, 5598, 4309, 281, 909, 281, 309, 264, 3485, 281, 2464, 15765, 13, 1545, 630, 436, 360, 309, 341, 636, 30, 814, 1143, 281, 980, 291, 281, 27478, 309, 341, 636, 13, 1545, 30, 663, 311, 309, 13, 4387, 257, 3991, 5598, 4309, 293, 652, 257, 4482, 9936, 293, 1320, 341, 281, 341, 13, 5135, 11, 341, 307, 364, 4500, 295, 257, 4111, 281, 7101, 30, 1407, 264, 2657, 300, 291, 1320, 510, 13, 9129, 341, 3170, 11, 286, 632, 281, 909, 341, 4111, 281, 652, 257, 1422, 11665, 337, 1184], "avg_logprob": -0.4700940937124273, "compression_ratio": 1.751131221719457, "no_speech_prob": 1.5079975128173828e-05, "words": [{"start": 2582.6, "end": 2583.08, "word": "to", "probability": 0.1361083984375}, {"start": 2583.08, "end": 2583.56, "word": " the", "probability": 0.36572265625}, {"start": 2583.56, "end": 2583.9, "word": " output", "probability": 0.80029296875}, {"start": 2583.9, "end": 2584.34, "word": " stream", "probability": 0.92138671875}, {"start": 2584.34, "end": 2584.58, "word": " to", "probability": 0.54833984375}, {"start": 2584.58, "end": 2584.92, "word": " add", "probability": 0.53515625}, {"start": 2584.92, "end": 2585.08, "word": " to", "probability": 0.2049560546875}, {"start": 2585.08, "end": 2585.24, "word": " it", "probability": 0.8701171875}, {"start": 2585.24, "end": 2585.44, "word": " the", "probability": 0.6943359375}, {"start": 2585.44, "end": 2585.86, "word": " ability", "probability": 0.45654296875}, {"start": 2585.86, "end": 2586.08, "word": " to", "probability": 0.8623046875}, {"start": 2586.08, "end": 2586.44, "word": " write", "probability": 0.8427734375}, {"start": 2586.44, "end": 2587.82, "word": " texts.", "probability": 0.6201171875}, {"start": 2588.38, "end": 2588.82, "word": " Why", "probability": 0.607421875}, {"start": 2588.82, "end": 2589.0, "word": " did", "probability": 0.65771484375}, {"start": 2589.0, "end": 2589.12, "word": " they", "probability": 0.58154296875}, {"start": 2589.12, "end": 2589.12, "word": " do", "probability": 0.85205078125}, {"start": 2589.12, "end": 2589.18, "word": " it", "probability": 0.740234375}, {"start": 2589.18, "end": 2589.32, "word": " this", "probability": 0.4853515625}, {"start": 2589.32, "end": 2589.4, "word": " way?", "probability": 0.95654296875}, {"start": 2589.5, "end": 2589.6, "word": " They", "probability": 0.238525390625}, {"start": 2589.6, "end": 2589.7, "word": " used", "probability": 0.6376953125}, {"start": 2589.7, "end": 2589.7, "word": " to", "probability": 0.970703125}, {"start": 2589.7, "end": 2589.8, "word": " tell", "probability": 0.6005859375}, {"start": 2589.8, "end": 2589.92, "word": " you", "probability": 0.88525390625}, {"start": 2589.92, "end": 2590.18, "word": " to", "probability": 0.487548828125}, {"start": 2590.18, "end": 2590.38, "word": " memorize", "probability": 0.482666015625}, {"start": 2590.38, "end": 2590.58, "word": " it", "probability": 0.345458984375}, {"start": 2590.58, "end": 2590.62, "word": " this", "probability": 0.428955078125}, {"start": 2590.62, "end": 2590.62, "word": " way.", "probability": 0.94482421875}, {"start": 2590.98, "end": 2591.46, "word": " Why?", "probability": 0.44384765625}, {"start": 2591.74, "end": 2592.14, "word": " That's", "probability": 0.5738525390625}, {"start": 2592.14, "end": 2592.14, "word": " it.", "probability": 0.6171875}, {"start": 2592.68, "end": 2593.14, "word": " Make", "probability": 0.374755859375}, {"start": 2593.14, "end": 2593.32, "word": " a", "probability": 0.438720703125}, {"start": 2593.32, "end": 2593.4, "word": " file", "probability": 0.70947265625}, {"start": 2593.4, "end": 2593.62, "word": " output", "probability": 0.6474609375}, {"start": 2593.62, "end": 2594.06, "word": " stream", "probability": 0.943359375}, {"start": 2594.06, "end": 2594.46, "word": " and", "probability": 0.4794921875}, {"start": 2594.46, "end": 2594.62, "word": " make", "probability": 0.345947265625}, {"start": 2594.62, "end": 2594.74, "word": " a", "probability": 0.7646484375}, {"start": 2594.74, "end": 2594.9, "word": " print", "probability": 0.92333984375}, {"start": 2594.9, "end": 2595.26, "word": " writer", "probability": 0.81591796875}, {"start": 2595.26, "end": 2595.46, "word": " and", "probability": 0.7568359375}, {"start": 2595.46, "end": 2595.6, "word": " pass", "probability": 0.65869140625}, {"start": 2595.6, "end": 2595.84, "word": " this", "probability": 0.255859375}, {"start": 2595.84, "end": 2595.94, "word": " to", "probability": 0.5341796875}, {"start": 2595.94, "end": 2596.18, "word": " this.", "probability": 0.74267578125}, {"start": 2597.44, "end": 2597.92, "word": " Actually,", "probability": 0.393310546875}, {"start": 2598.1, "end": 2598.36, "word": " this", "probability": 0.845703125}, {"start": 2598.36, "end": 2598.68, "word": " is", "probability": 0.8818359375}, {"start": 2598.68, "end": 2598.86, "word": " an", "probability": 0.278564453125}, {"start": 2598.86, "end": 2599.12, "word": " addition", "probability": 0.888671875}, {"start": 2599.12, "end": 2599.34, "word": " of", "probability": 0.896484375}, {"start": 2599.34, "end": 2599.48, "word": " a", "probability": 0.450927734375}, {"start": 2599.48, "end": 2599.78, "word": " feature", "probability": 0.9541015625}, {"start": 2599.78, "end": 2600.14, "word": " to", "probability": 0.6357421875}, {"start": 2600.14, "end": 2600.32, "word": " whom?", "probability": 0.75634765625}, {"start": 2600.72, "end": 2601.2, "word": " To", "probability": 0.841796875}, {"start": 2601.2, "end": 2601.3, "word": " the", "probability": 0.8984375}, {"start": 2601.3, "end": 2601.56, "word": " object", "probability": 0.9443359375}, {"start": 2601.56, "end": 2601.7, "word": " that", "probability": 0.50634765625}, {"start": 2601.7, "end": 2601.8, "word": " you", "probability": 0.2353515625}, {"start": 2601.8, "end": 2602.0, "word": " pass", "probability": 0.54541015625}, {"start": 2602.0, "end": 2602.3, "word": " here.", "probability": 0.71533203125}, {"start": 2603.66, "end": 2603.96, "word": " Without", "probability": 0.9306640625}, {"start": 2603.96, "end": 2604.12, "word": " this", "probability": 0.9130859375}, {"start": 2604.12, "end": 2604.5, "word": " method,", "probability": 0.7861328125}, {"start": 2604.76, "end": 2604.9, "word": " I", "probability": 0.93212890625}, {"start": 2604.9, "end": 2604.9, "word": " had", "probability": 0.85986328125}, {"start": 2604.9, "end": 2605.38, "word": " to", "probability": 0.97265625}, {"start": 2605.38, "end": 2606.2, "word": " add", "probability": 0.395263671875}, {"start": 2606.2, "end": 2606.56, "word": " this", "probability": 0.72509765625}, {"start": 2606.56, "end": 2606.88, "word": " feature", "probability": 0.93212890625}, {"start": 2606.88, "end": 2607.16, "word": " to", "probability": 0.6396484375}, {"start": 2607.16, "end": 2607.42, "word": " make", "probability": 0.638671875}, {"start": 2607.42, "end": 2607.58, "word": " a", "probability": 0.72998046875}, {"start": 2607.58, "end": 2608.04, "word": " subclass", "probability": 0.9189453125}, {"start": 2608.04, "end": 2608.24, "word": " for", "probability": 0.6953125}, {"start": 2608.24, "end": 2608.58, "word": " each", "probability": 0.5478515625}], "temperature": 1.0}, {"id": 100, "seek": 263783, "start": 2609.37, "end": 2637.83, "text": "output stream is present on it. So this is really an application for whom? For the decorator. Any output stream that connects them together, and in reading too, connects them together, this is all an application for whom, guys? For the decorator. It connects together and you don't know what it is. No, did you get the idea that this is an application for whom? For the decorator. And we understood why they did that. I could also tell you to make an object out of this class and write on it.", "tokens": [346, 2582, 4309, 307, 1974, 322, 309, 13, 407, 341, 307, 534, 364, 3861, 337, 7101, 30, 1171, 264, 7919, 1639, 13, 2639, 5598, 4309, 300, 16967, 552, 1214, 11, 293, 294, 3760, 886, 11, 16967, 552, 1214, 11, 341, 307, 439, 364, 3861, 337, 7101, 11, 1074, 30, 1171, 264, 7919, 1639, 13, 467, 16967, 1214, 293, 291, 500, 380, 458, 437, 309, 307, 13, 883, 11, 630, 291, 483, 264, 1558, 300, 341, 307, 364, 3861, 337, 7101, 30, 1171, 264, 7919, 1639, 13, 400, 321, 7320, 983, 436, 630, 300, 13, 286, 727, 611, 980, 291, 281, 652, 364, 2657, 484, 295, 341, 1508, 293, 2464, 322, 309, 13], "avg_logprob": -0.4781526548672566, "compression_ratio": 2.0246913580246915, "no_speech_prob": 2.9087066650390625e-05, "words": [{"start": 2609.37, "end": 2609.81, "word": "output", "probability": 0.549072265625}, {"start": 2609.81, "end": 2610.05, "word": " stream", "probability": 0.865234375}, {"start": 2610.05, "end": 2610.21, "word": " is", "probability": 0.34716796875}, {"start": 2610.21, "end": 2610.39, "word": " present", "probability": 0.2403564453125}, {"start": 2610.39, "end": 2610.53, "word": " on", "probability": 0.272705078125}, {"start": 2610.53, "end": 2610.69, "word": " it.", "probability": 0.66162109375}, {"start": 2611.27, "end": 2611.33, "word": " So", "probability": 0.56201171875}, {"start": 2611.33, "end": 2611.49, "word": " this", "probability": 0.5048828125}, {"start": 2611.49, "end": 2611.59, "word": " is", "probability": 0.73291015625}, {"start": 2611.59, "end": 2611.87, "word": " really", "probability": 0.328857421875}, {"start": 2611.87, "end": 2612.11, "word": " an", "probability": 0.51708984375}, {"start": 2612.11, "end": 2612.39, "word": " application", "probability": 0.86962890625}, {"start": 2612.39, "end": 2612.57, "word": " for", "probability": 0.595703125}, {"start": 2612.57, "end": 2612.75, "word": " whom?", "probability": 0.6416015625}, {"start": 2614.49, "end": 2614.93, "word": " For", "probability": 0.489501953125}, {"start": 2614.93, "end": 2615.03, "word": " the", "probability": 0.81103515625}, {"start": 2615.03, "end": 2615.47, "word": " decorator.", "probability": 0.921630859375}, {"start": 2615.59, "end": 2615.89, "word": " Any", "probability": 0.7939453125}, {"start": 2615.89, "end": 2616.39, "word": " output", "probability": 0.87060546875}, {"start": 2616.39, "end": 2616.79, "word": " stream", "probability": 0.9267578125}, {"start": 2616.79, "end": 2616.97, "word": " that", "probability": 0.388671875}, {"start": 2616.97, "end": 2617.29, "word": " connects", "probability": 0.250732421875}, {"start": 2617.29, "end": 2617.49, "word": " them", "probability": 0.7568359375}, {"start": 2617.49, "end": 2617.83, "word": " together,", "probability": 0.56396484375}, {"start": 2618.11, "end": 2618.43, "word": " and", "probability": 0.48974609375}, {"start": 2618.43, "end": 2618.53, "word": " in", "probability": 0.44677734375}, {"start": 2618.53, "end": 2618.95, "word": " reading", "probability": 0.76318359375}, {"start": 2618.95, "end": 2619.35, "word": " too,", "probability": 0.26123046875}, {"start": 2619.55, "end": 2619.81, "word": " connects", "probability": 0.39453125}, {"start": 2619.81, "end": 2620.03, "word": " them", "probability": 0.869140625}, {"start": 2620.03, "end": 2620.43, "word": " together,", "probability": 0.81396484375}, {"start": 2620.55, "end": 2620.71, "word": " this", "probability": 0.425048828125}, {"start": 2620.71, "end": 2620.85, "word": " is", "probability": 0.85595703125}, {"start": 2620.85, "end": 2620.97, "word": " all", "probability": 0.72509765625}, {"start": 2620.97, "end": 2621.33, "word": " an", "probability": 0.6728515625}, {"start": 2621.33, "end": 2621.63, "word": " application", "probability": 0.89990234375}, {"start": 2621.63, "end": 2621.83, "word": " for", "probability": 0.76953125}, {"start": 2621.83, "end": 2621.97, "word": " whom,", "probability": 0.8779296875}, {"start": 2622.05, "end": 2622.21, "word": " guys?", "probability": 0.75830078125}, {"start": 2622.79, "end": 2623.01, "word": " For", "probability": 0.89306640625}, {"start": 2623.01, "end": 2623.11, "word": " the", "probability": 0.8798828125}, {"start": 2623.11, "end": 2623.49, "word": " decorator.", "probability": 0.984375}, {"start": 2623.73, "end": 2623.99, "word": " It", "probability": 0.196044921875}, {"start": 2623.99, "end": 2624.13, "word": " connects", "probability": 0.6650390625}, {"start": 2624.13, "end": 2624.75, "word": " together", "probability": 0.312744140625}, {"start": 2624.75, "end": 2624.93, "word": " and", "probability": 0.462158203125}, {"start": 2624.93, "end": 2625.11, "word": " you", "probability": 0.66015625}, {"start": 2625.11, "end": 2625.67, "word": " don't", "probability": 0.6351318359375}, {"start": 2625.67, "end": 2626.47, "word": " know", "probability": 0.845703125}, {"start": 2626.47, "end": 2626.63, "word": " what", "probability": 0.8662109375}, {"start": 2626.63, "end": 2626.79, "word": " it", "probability": 0.35986328125}, {"start": 2626.79, "end": 2626.79, "word": " is.", "probability": 0.9091796875}, {"start": 2626.87, "end": 2627.01, "word": " No,", "probability": 0.58056640625}, {"start": 2627.05, "end": 2627.19, "word": " did", "probability": 0.333984375}, {"start": 2627.19, "end": 2627.55, "word": " you", "probability": 0.96533203125}, {"start": 2627.55, "end": 2627.79, "word": " get", "probability": 0.58056640625}, {"start": 2627.79, "end": 2627.93, "word": " the", "probability": 0.50048828125}, {"start": 2627.93, "end": 2628.17, "word": " idea", "probability": 0.87109375}, {"start": 2628.17, "end": 2628.39, "word": " that", "probability": 0.88525390625}, {"start": 2628.39, "end": 2628.53, "word": " this", "probability": 0.8564453125}, {"start": 2628.53, "end": 2628.61, "word": " is", "probability": 0.85205078125}, {"start": 2628.61, "end": 2628.95, "word": " an", "probability": 0.7861328125}, {"start": 2628.95, "end": 2629.25, "word": " application", "probability": 0.8955078125}, {"start": 2629.25, "end": 2629.47, "word": " for", "probability": 0.83837890625}, {"start": 2629.47, "end": 2629.61, "word": " whom?", "probability": 0.87158203125}, {"start": 2630.05, "end": 2630.43, "word": " For", "probability": 0.92822265625}, {"start": 2630.43, "end": 2630.51, "word": " the", "probability": 0.900390625}, {"start": 2630.51, "end": 2630.95, "word": " decorator.", "probability": 0.99072265625}, {"start": 2631.03, "end": 2631.15, "word": " And", "probability": 0.80126953125}, {"start": 2631.15, "end": 2631.43, "word": " we", "probability": 0.80322265625}, {"start": 2631.43, "end": 2631.43, "word": " understood", "probability": 0.43701171875}, {"start": 2631.43, "end": 2631.69, "word": " why", "probability": 0.91552734375}, {"start": 2631.69, "end": 2631.89, "word": " they", "probability": 0.85693359375}, {"start": 2631.89, "end": 2632.13, "word": " did", "probability": 0.92822265625}, {"start": 2632.13, "end": 2632.39, "word": " that.", "probability": 0.400634765625}, {"start": 2634.05, "end": 2634.31, "word": " I", "probability": 0.445556640625}, {"start": 2634.31, "end": 2634.45, "word": " could", "probability": 0.58447265625}, {"start": 2634.45, "end": 2634.57, "word": " also", "probability": 0.22119140625}, {"start": 2634.57, "end": 2634.79, "word": " tell", "probability": 0.2291259765625}, {"start": 2634.79, "end": 2635.17, "word": " you", "probability": 0.86572265625}, {"start": 2635.17, "end": 2635.25, "word": " to", "probability": 0.83447265625}, {"start": 2635.25, "end": 2635.37, "word": " make", "probability": 0.607421875}, {"start": 2635.37, "end": 2635.49, "word": " an", "probability": 0.72802734375}, {"start": 2635.49, "end": 2635.65, "word": " object", "probability": 0.9775390625}, {"start": 2635.65, "end": 2635.87, "word": " out", "probability": 0.257080078125}, {"start": 2635.87, "end": 2635.87, "word": " of", "probability": 0.97314453125}, {"start": 2635.87, "end": 2636.15, "word": " this", "probability": 0.67822265625}, {"start": 2636.15, "end": 2637.01, "word": " class", "probability": 0.1766357421875}, {"start": 2637.01, "end": 2637.17, "word": " and", "probability": 0.7939453125}, {"start": 2637.17, "end": 2637.45, "word": " write", "probability": 0.82568359375}, {"start": 2637.45, "end": 2637.57, "word": " on", "probability": 0.2281494140625}, {"start": 2637.57, "end": 2637.83, "word": " it.", "probability": 0.93017578125}], "temperature": 1.0}, {"id": 101, "seek": 266321, "start": 2638.39, "end": 2663.21, "text": "So why do I connect this with this with this? To add new features to each existing object. Because without this, it would have to appear in a large number of subclasses. Another example, in the java.fx that you use, I'm sure you've taken it. What's the name of the text area? Text area, and there's a text field, and there's a tab, and there's I don't know what. You'd like to add a border to any of these.", "tokens": [6455, 983, 360, 286, 1745, 341, 365, 341, 365, 341, 30, 1407, 909, 777, 4122, 281, 1184, 6741, 2657, 13, 1436, 1553, 341, 11, 309, 576, 362, 281, 4204, 294, 257, 2416, 1230, 295, 1422, 11665, 279, 13, 3996, 1365, 11, 294, 264, 361, 4061, 13, 69, 87, 300, 291, 764, 11, 286, 478, 988, 291, 600, 2726, 309, 13, 708, 311, 264, 1315, 295, 264, 2487, 1859, 30, 18643, 1859, 11, 293, 456, 311, 257, 2487, 2519, 11, 293, 456, 311, 257, 4421, 11, 293, 456, 311, 286, 500, 380, 458, 437, 13, 509, 1116, 411, 281, 909, 257, 7838, 281, 604, 295, 613, 13], "avg_logprob": -0.5408878705211889, "compression_ratio": 1.6571428571428573, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2638.39, "end": 2638.61, "word": "So", "probability": 0.417236328125}, {"start": 2638.61, "end": 2638.81, "word": " why", "probability": 0.6611328125}, {"start": 2638.81, "end": 2638.83, "word": " do", "probability": 0.12420654296875}, {"start": 2638.83, "end": 2638.93, "word": " I", "probability": 0.84521484375}, {"start": 2638.93, "end": 2639.15, "word": " connect", "probability": 0.422119140625}, {"start": 2639.15, "end": 2639.37, "word": " this", "probability": 0.2435302734375}, {"start": 2639.37, "end": 2639.49, "word": " with", "probability": 0.369384765625}, {"start": 2639.49, "end": 2639.73, "word": " this", "probability": 0.494873046875}, {"start": 2639.73, "end": 2639.87, "word": " with", "probability": 0.1978759765625}, {"start": 2639.87, "end": 2640.19, "word": " this?", "probability": 0.931640625}, {"start": 2640.51, "end": 2640.95, "word": " To", "probability": 0.38427734375}, {"start": 2640.95, "end": 2641.29, "word": " add", "probability": 0.88818359375}, {"start": 2641.29, "end": 2641.39, "word": " new", "probability": 0.7626953125}, {"start": 2641.39, "end": 2641.83, "word": " features", "probability": 0.744140625}, {"start": 2641.83, "end": 2642.33, "word": " to", "probability": 0.79443359375}, {"start": 2642.33, "end": 2642.65, "word": " each", "probability": 0.487548828125}, {"start": 2642.65, "end": 2643.55, "word": " existing", "probability": 0.85205078125}, {"start": 2643.55, "end": 2643.55, "word": " object.", "probability": 0.92431640625}, {"start": 2644.51, "end": 2644.79, "word": " Because", "probability": 0.755859375}, {"start": 2644.79, "end": 2645.01, "word": " without", "probability": 0.468505859375}, {"start": 2645.01, "end": 2645.37, "word": " this,", "probability": 0.322998046875}, {"start": 2645.49, "end": 2645.57, "word": " it", "probability": 0.35888671875}, {"start": 2645.57, "end": 2645.61, "word": " would", "probability": 0.399658203125}, {"start": 2645.61, "end": 2645.89, "word": " have", "probability": 0.5859375}, {"start": 2645.89, "end": 2645.95, "word": " to", "probability": 0.60205078125}, {"start": 2645.95, "end": 2646.37, "word": " appear", "probability": 0.2152099609375}, {"start": 2646.37, "end": 2646.99, "word": " in", "probability": 0.73193359375}, {"start": 2646.99, "end": 2647.07, "word": " a", "probability": 0.35302734375}, {"start": 2647.07, "end": 2647.61, "word": " large", "probability": 0.47216796875}, {"start": 2647.61, "end": 2647.63, "word": " number", "probability": 0.9130859375}, {"start": 2647.63, "end": 2648.83, "word": " of", "probability": 0.9609375}, {"start": 2648.83, "end": 2650.05, "word": " subclasses.", "probability": 0.8001302083333334}, {"start": 2650.95, "end": 2651.39, "word": " Another", "probability": 0.7548828125}, {"start": 2651.39, "end": 2651.75, "word": " example,", "probability": 0.97216796875}, {"start": 2652.25, "end": 2652.33, "word": " in", "probability": 0.80908203125}, {"start": 2652.33, "end": 2652.45, "word": " the", "probability": 0.40380859375}, {"start": 2652.45, "end": 2652.71, "word": " java", "probability": 0.4498291015625}, {"start": 2652.71, "end": 2653.13, "word": ".fx", "probability": 0.8971354166666666}, {"start": 2653.13, "end": 2653.25, "word": " that", "probability": 0.440185546875}, {"start": 2653.25, "end": 2653.41, "word": " you", "probability": 0.94677734375}, {"start": 2653.41, "end": 2653.87, "word": " use,", "probability": 0.6923828125}, {"start": 2654.03, "end": 2654.41, "word": " I'm", "probability": 0.29827880859375}, {"start": 2654.41, "end": 2655.21, "word": " sure", "probability": 0.904296875}, {"start": 2655.21, "end": 2655.33, "word": " you've", "probability": 0.53179931640625}, {"start": 2655.33, "end": 2655.57, "word": " taken", "probability": 0.4521484375}, {"start": 2655.57, "end": 2655.71, "word": " it.", "probability": 0.426513671875}, {"start": 2655.71, "end": 2655.87, "word": " What's", "probability": 0.693359375}, {"start": 2655.87, "end": 2656.05, "word": " the", "probability": 0.86181640625}, {"start": 2656.05, "end": 2656.05, "word": " name", "probability": 0.7626953125}, {"start": 2656.05, "end": 2656.11, "word": " of", "probability": 0.93994140625}, {"start": 2656.11, "end": 2656.23, "word": " the", "probability": 0.66650390625}, {"start": 2656.23, "end": 2656.43, "word": " text", "probability": 0.8271484375}, {"start": 2656.43, "end": 2656.79, "word": " area?", "probability": 0.74951171875}, {"start": 2658.09, "end": 2658.53, "word": " Text", "probability": 0.4873046875}, {"start": 2658.53, "end": 2658.91, "word": " area,", "probability": 0.45849609375}, {"start": 2658.99, "end": 2659.03, "word": " and", "probability": 0.3466796875}, {"start": 2659.03, "end": 2659.13, "word": " there's", "probability": 0.721923828125}, {"start": 2659.13, "end": 2659.23, "word": " a", "probability": 0.53173828125}, {"start": 2659.23, "end": 2659.37, "word": " text", "probability": 0.88623046875}, {"start": 2659.37, "end": 2659.75, "word": " field,", "probability": 0.8916015625}, {"start": 2659.91, "end": 2659.93, "word": " and", "probability": 0.84423828125}, {"start": 2659.93, "end": 2660.15, "word": " there's", "probability": 0.74462890625}, {"start": 2660.15, "end": 2660.15, "word": " a", "probability": 0.92431640625}, {"start": 2660.15, "end": 2660.47, "word": " tab,", "probability": 0.9375}, {"start": 2660.59, "end": 2660.63, "word": " and", "probability": 0.88525390625}, {"start": 2660.63, "end": 2660.77, "word": " there's", "probability": 0.7205810546875}, {"start": 2660.77, "end": 2660.91, "word": " I", "probability": 0.296875}, {"start": 2660.91, "end": 2660.95, "word": " don't", "probability": 0.960693359375}, {"start": 2660.95, "end": 2661.17, "word": " know", "probability": 0.8994140625}, {"start": 2661.17, "end": 2661.39, "word": " what.", "probability": 0.9208984375}, {"start": 2661.91, "end": 2662.31, "word": " You'd", "probability": 0.2044677734375}, {"start": 2662.31, "end": 2662.35, "word": " like", "probability": 0.42919921875}, {"start": 2662.35, "end": 2662.45, "word": " to", "probability": 0.8623046875}, {"start": 2662.45, "end": 2662.45, "word": " add", "probability": 0.8837890625}, {"start": 2662.45, "end": 2662.45, "word": " a", "probability": 0.405029296875}, {"start": 2662.45, "end": 2662.45, "word": " border", "probability": 0.9013671875}, {"start": 2662.45, "end": 2662.47, "word": " to", "probability": 0.8466796875}, {"start": 2662.47, "end": 2662.67, "word": " any", "probability": 0.74365234375}, {"start": 2662.67, "end": 2662.97, "word": " of", "probability": 0.58935546875}, {"start": 2662.97, "end": 2663.21, "word": " these.", "probability": 0.67138671875}], "temperature": 1.0}, {"id": 102, "seek": 268815, "start": 2664.97, "end": 2688.15, "text": " Has anyone tried to add a border to the text area in java.fx? No, there is a class called border, scroll type, scroll pane, there is scroll for shapes I will go back to java swing, the swing library, for example we have scroll pane", "tokens": [8646, 2878, 3031, 281, 909, 257, 7838, 281, 264, 2487, 1859, 294, 361, 4061, 13, 69, 87, 30, 883, 11, 456, 307, 257, 1508, 1219, 7838, 11, 11369, 2010, 11, 11369, 2462, 68, 11, 456, 307, 11369, 337, 10854, 286, 486, 352, 646, 281, 361, 4061, 11173, 11, 264, 11173, 6405, 11, 337, 1365, 321, 362, 11369, 2462, 68], "avg_logprob": -0.521614604194959, "compression_ratio": 1.5466666666666666, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2664.97, "end": 2665.13, "word": " Has", "probability": 0.133056640625}, {"start": 2665.13, "end": 2665.29, "word": " anyone", "probability": 0.82177734375}, {"start": 2665.29, "end": 2665.55, "word": " tried", "probability": 0.79736328125}, {"start": 2665.55, "end": 2665.65, "word": " to", "probability": 0.7958984375}, {"start": 2665.65, "end": 2665.79, "word": " add", "probability": 0.7841796875}, {"start": 2665.79, "end": 2665.93, "word": " a", "probability": 0.498291015625}, {"start": 2665.93, "end": 2666.17, "word": " border", "probability": 0.82373046875}, {"start": 2666.17, "end": 2666.45, "word": " to", "probability": 0.492919921875}, {"start": 2666.45, "end": 2666.69, "word": " the", "probability": 0.499755859375}, {"start": 2666.69, "end": 2666.87, "word": " text", "probability": 0.62060546875}, {"start": 2666.87, "end": 2667.23, "word": " area", "probability": 0.81494140625}, {"start": 2667.23, "end": 2667.91, "word": " in", "probability": 0.6748046875}, {"start": 2667.91, "end": 2668.15, "word": " java", "probability": 0.41015625}, {"start": 2668.15, "end": 2668.53, "word": ".fx?", "probability": 0.8619791666666666}, {"start": 2669.93, "end": 2670.49, "word": " No,", "probability": 0.1861572265625}, {"start": 2671.69, "end": 2671.85, "word": " there", "probability": 0.71826171875}, {"start": 2671.85, "end": 2671.99, "word": " is", "probability": 0.59814453125}, {"start": 2671.99, "end": 2673.21, "word": " a", "probability": 0.93505859375}, {"start": 2673.21, "end": 2673.57, "word": " class", "probability": 0.9423828125}, {"start": 2673.57, "end": 2673.83, "word": " called", "probability": 0.67138671875}, {"start": 2673.83, "end": 2674.23, "word": " border,", "probability": 0.4970703125}, {"start": 2675.09, "end": 2676.05, "word": " scroll", "probability": 0.51953125}, {"start": 2676.05, "end": 2676.35, "word": " type,", "probability": 0.264404296875}, {"start": 2676.47, "end": 2676.67, "word": " scroll", "probability": 0.82958984375}, {"start": 2676.67, "end": 2677.31, "word": " pane,", "probability": 0.6182861328125}, {"start": 2677.33, "end": 2677.51, "word": " there", "probability": 0.609375}, {"start": 2677.51, "end": 2677.55, "word": " is", "probability": 0.79541015625}, {"start": 2677.55, "end": 2677.93, "word": " scroll", "probability": 0.56591796875}, {"start": 2677.93, "end": 2679.13, "word": " for", "probability": 0.52099609375}, {"start": 2679.13, "end": 2679.61, "word": " shapes", "probability": 0.59716796875}, {"start": 2679.61, "end": 2681.53, "word": " I", "probability": 0.36962890625}, {"start": 2681.53, "end": 2681.59, "word": " will", "probability": 0.5029296875}, {"start": 2681.59, "end": 2681.67, "word": " go", "probability": 0.490966796875}, {"start": 2681.67, "end": 2681.81, "word": " back", "probability": 0.826171875}, {"start": 2681.81, "end": 2682.19, "word": " to", "probability": 0.685546875}, {"start": 2682.19, "end": 2682.59, "word": " java", "probability": 0.5037841796875}, {"start": 2682.59, "end": 2682.95, "word": " swing,", "probability": 0.748046875}, {"start": 2683.39, "end": 2683.59, "word": " the", "probability": 0.57666015625}, {"start": 2683.59, "end": 2683.83, "word": " swing", "probability": 0.60546875}, {"start": 2683.83, "end": 2684.75, "word": " library,", "probability": 0.75537109375}, {"start": 2685.25, "end": 2686.53, "word": " for", "probability": 0.6015625}, {"start": 2686.53, "end": 2687.17, "word": " example", "probability": 0.94140625}, {"start": 2687.17, "end": 2687.29, "word": " we", "probability": 0.408935546875}, {"start": 2687.29, "end": 2687.45, "word": " have", "probability": 0.9462890625}, {"start": 2687.45, "end": 2687.71, "word": " scroll", "probability": 0.8896484375}, {"start": 2687.71, "end": 2688.15, "word": " pane", "probability": 0.6748046875}], "temperature": 1.0}, {"id": 103, "seek": 270985, "start": 2689.33, "end": 2709.85, "text": "It means you have to add to any scroll shape, create an object of the type of scroll pane and give it the shape you want. You add the scroll to it. This is instead of going to every class and extend it to add a scroll to the specific shape. This is also an application for the border, for the decorator pattern.", "tokens": [3522, 1355, 291, 362, 281, 909, 281, 604, 11369, 3909, 11, 1884, 364, 2657, 295, 264, 2010, 295, 11369, 2462, 68, 293, 976, 309, 264, 3909, 291, 528, 13, 509, 909, 264, 11369, 281, 309, 13, 639, 307, 2602, 295, 516, 281, 633, 1508, 293, 10101, 309, 281, 909, 257, 11369, 281, 264, 2685, 3909, 13, 639, 307, 611, 364, 3861, 337, 264, 7838, 11, 337, 264, 7919, 1639, 5102, 13], "avg_logprob": -0.6119791890184084, "compression_ratio": 1.681081081081081, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2689.33, "end": 2689.71, "word": "It", "probability": 0.11688232421875}, {"start": 2689.71, "end": 2689.71, "word": " means", "probability": 0.76123046875}, {"start": 2689.71, "end": 2689.99, "word": " you", "probability": 0.34765625}, {"start": 2689.99, "end": 2690.13, "word": " have", "probability": 0.1478271484375}, {"start": 2690.13, "end": 2690.25, "word": " to", "probability": 0.9638671875}, {"start": 2690.25, "end": 2690.49, "word": " add", "probability": 0.80419921875}, {"start": 2690.49, "end": 2690.57, "word": " to", "probability": 0.18603515625}, {"start": 2690.57, "end": 2690.73, "word": " any", "probability": 0.6875}, {"start": 2690.73, "end": 2691.23, "word": " scroll", "probability": 0.441162109375}, {"start": 2691.23, "end": 2691.43, "word": " shape,", "probability": 0.464111328125}, {"start": 2692.05, "end": 2692.37, "word": " create", "probability": 0.59375}, {"start": 2692.37, "end": 2692.59, "word": " an", "probability": 0.73876953125}, {"start": 2692.59, "end": 2692.79, "word": " object", "probability": 0.90185546875}, {"start": 2692.79, "end": 2692.95, "word": " of", "probability": 0.26025390625}, {"start": 2692.95, "end": 2693.07, "word": " the", "probability": 0.3310546875}, {"start": 2693.07, "end": 2693.13, "word": " type", "probability": 0.390380859375}, {"start": 2693.13, "end": 2693.21, "word": " of", "probability": 0.427001953125}, {"start": 2693.21, "end": 2693.43, "word": " scroll", "probability": 0.8193359375}, {"start": 2693.43, "end": 2693.95, "word": " pane", "probability": 0.3414306640625}, {"start": 2693.95, "end": 2694.47, "word": " and", "probability": 0.5546875}, {"start": 2694.47, "end": 2694.69, "word": " give", "probability": 0.2362060546875}, {"start": 2694.69, "end": 2694.89, "word": " it", "probability": 0.87744140625}, {"start": 2694.89, "end": 2695.01, "word": " the", "probability": 0.220703125}, {"start": 2695.01, "end": 2695.33, "word": " shape", "probability": 0.7646484375}, {"start": 2695.33, "end": 2695.91, "word": " you", "probability": 0.494873046875}, {"start": 2695.91, "end": 2695.91, "word": " want.", "probability": 0.6015625}, {"start": 2695.95, "end": 2696.07, "word": " You", "probability": 0.12249755859375}, {"start": 2696.07, "end": 2696.25, "word": " add", "probability": 0.6328125}, {"start": 2696.25, "end": 2697.11, "word": " the", "probability": 0.392333984375}, {"start": 2697.11, "end": 2697.39, "word": " scroll", "probability": 0.9287109375}, {"start": 2697.39, "end": 2698.05, "word": " to", "probability": 0.43212890625}, {"start": 2698.05, "end": 2698.29, "word": " it.", "probability": 0.814453125}, {"start": 2698.81, "end": 2699.25, "word": " This", "probability": 0.371337890625}, {"start": 2699.25, "end": 2699.35, "word": " is", "probability": 0.6806640625}, {"start": 2699.35, "end": 2699.51, "word": " instead", "probability": 0.461181640625}, {"start": 2699.51, "end": 2700.23, "word": " of", "probability": 0.9521484375}, {"start": 2700.23, "end": 2700.47, "word": " going", "probability": 0.6025390625}, {"start": 2700.47, "end": 2700.65, "word": " to", "probability": 0.9189453125}, {"start": 2700.65, "end": 2700.93, "word": " every", "probability": 0.3837890625}, {"start": 2700.93, "end": 2701.33, "word": " class", "probability": 0.83251953125}, {"start": 2701.33, "end": 2701.43, "word": " and", "probability": 0.8671875}, {"start": 2701.43, "end": 2702.07, "word": " extend", "probability": 0.2529296875}, {"start": 2702.07, "end": 2702.27, "word": " it", "probability": 0.65625}, {"start": 2702.27, "end": 2702.47, "word": " to", "probability": 0.837890625}, {"start": 2702.47, "end": 2702.73, "word": " add", "probability": 0.876953125}, {"start": 2702.73, "end": 2702.87, "word": " a", "probability": 0.487060546875}, {"start": 2702.87, "end": 2703.05, "word": " scroll", "probability": 0.92724609375}, {"start": 2703.05, "end": 2703.21, "word": " to", "probability": 0.84228515625}, {"start": 2703.21, "end": 2704.17, "word": " the", "probability": 0.68896484375}, {"start": 2704.17, "end": 2704.49, "word": " specific", "probability": 0.28857421875}, {"start": 2704.49, "end": 2704.49, "word": " shape.", "probability": 0.7998046875}, {"start": 2705.09, "end": 2705.37, "word": " This", "probability": 0.51123046875}, {"start": 2705.37, "end": 2705.45, "word": " is", "probability": 0.88134765625}, {"start": 2705.45, "end": 2705.65, "word": " also", "probability": 0.71875}, {"start": 2705.65, "end": 2705.79, "word": " an", "probability": 0.65478515625}, {"start": 2705.79, "end": 2706.03, "word": " application", "probability": 0.88134765625}, {"start": 2706.03, "end": 2706.21, "word": " for", "probability": 0.5361328125}, {"start": 2706.21, "end": 2707.25, "word": " the", "probability": 0.3369140625}, {"start": 2707.25, "end": 2707.55, "word": " border,", "probability": 0.78857421875}, {"start": 2707.73, "end": 2708.01, "word": " for", "probability": 0.61865234375}, {"start": 2708.01, "end": 2708.23, "word": " the", "probability": 0.85546875}, {"start": 2708.23, "end": 2708.89, "word": " decorator", "probability": 0.9248046875}, {"start": 2708.89, "end": 2709.85, "word": " pattern.", "probability": 0.82861328125}], "temperature": 1.0}, {"id": 104, "seek": 272290, "start": 2711.66, "end": 2722.9, "text": "Okay guys, there are two ways to add new features, either subclassing or decorator The original is always to use subclassing, because I don't need to write what's already there", "tokens": [8297, 1074, 11, 456, 366, 732, 2098, 281, 909, 777, 4122, 11, 2139, 1422, 11665, 278, 420, 7919, 1639, 440, 3380, 307, 1009, 281, 764, 1422, 11665, 278, 11, 570, 286, 500, 380, 643, 281, 2464, 437, 311, 1217, 456], "avg_logprob": -0.45503049361996534, "compression_ratio": 1.3858267716535433, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2711.66, "end": 2711.98, "word": "Okay", "probability": 0.33056640625}, {"start": 2711.98, "end": 2712.4, "word": " guys,", "probability": 0.55126953125}, {"start": 2712.54, "end": 2712.58, "word": " there", "probability": 0.259765625}, {"start": 2712.58, "end": 2712.72, "word": " are", "probability": 0.70458984375}, {"start": 2712.72, "end": 2713.08, "word": " two", "probability": 0.60595703125}, {"start": 2713.08, "end": 2713.46, "word": " ways", "probability": 0.74462890625}, {"start": 2713.46, "end": 2713.68, "word": " to", "probability": 0.83740234375}, {"start": 2713.68, "end": 2714.06, "word": " add", "probability": 0.86376953125}, {"start": 2714.06, "end": 2714.26, "word": " new", "probability": 0.5615234375}, {"start": 2714.26, "end": 2714.64, "word": " features,", "probability": 0.7587890625}, {"start": 2714.94, "end": 2715.12, "word": " either", "probability": 0.7802734375}, {"start": 2715.12, "end": 2715.92, "word": " subclassing", "probability": 0.8234049479166666}, {"start": 2715.92, "end": 2716.42, "word": " or", "probability": 0.93896484375}, {"start": 2716.42, "end": 2717.02, "word": " decorator", "probability": 0.87255859375}, {"start": 2717.02, "end": 2717.8, "word": " The", "probability": 0.375244140625}, {"start": 2717.8, "end": 2718.04, "word": " original", "probability": 0.3603515625}, {"start": 2718.04, "end": 2718.18, "word": " is", "probability": 0.3798828125}, {"start": 2718.18, "end": 2718.34, "word": " always", "probability": 0.54296875}, {"start": 2718.34, "end": 2718.5, "word": " to", "probability": 0.7138671875}, {"start": 2718.5, "end": 2718.8, "word": " use", "probability": 0.8828125}, {"start": 2718.8, "end": 2719.76, "word": " subclassing,", "probability": 0.8836263020833334}, {"start": 2720.46, "end": 2721.06, "word": " because", "probability": 0.368896484375}, {"start": 2721.06, "end": 2721.62, "word": " I", "probability": 0.72509765625}, {"start": 2721.62, "end": 2721.76, "word": " don't", "probability": 0.820556640625}, {"start": 2721.76, "end": 2722.12, "word": " need", "probability": 0.5322265625}, {"start": 2722.12, "end": 2722.28, "word": " to", "probability": 0.9658203125}, {"start": 2722.28, "end": 2722.44, "word": " write", "probability": 0.63330078125}, {"start": 2722.44, "end": 2722.66, "word": " what's", "probability": 0.566162109375}, {"start": 2722.66, "end": 2722.86, "word": " already", "probability": 0.333984375}, {"start": 2722.86, "end": 2722.9, "word": " there", "probability": 0.54052734375}], "temperature": 1.0}, {"id": 105, "seek": 275113, "start": 2723.99, "end": 2751.13, "text": "But if the result of using subclassing is a lot of classes, like the examples we saw earlier, I prefer to use the decorator which is a class that encloses another class to add additional features to it. Like when we made a circle and enclosed it with a border, or a rectangle and enclosed it with a border as well. I have ten shapes and I make one class to add the feature, instead of having to make ten classes for ten shapes, and this is the idea of the decorator pattern.", "tokens": [7835, 498, 264, 1874, 295, 1228, 1422, 11665, 278, 307, 257, 688, 295, 5359, 11, 411, 264, 5110, 321, 1866, 3071, 11, 286, 4382, 281, 764, 264, 7919, 1639, 597, 307, 257, 1508, 300, 20987, 4201, 1071, 1508, 281, 909, 4497, 4122, 281, 309, 13, 1743, 562, 321, 1027, 257, 6329, 293, 42089, 309, 365, 257, 7838, 11, 420, 257, 21930, 293, 42089, 309, 365, 257, 7838, 382, 731, 13, 286, 362, 2064, 10854, 293, 286, 652, 472, 1508, 281, 909, 264, 4111, 11, 2602, 295, 1419, 281, 652, 2064, 5359, 337, 2064, 10854, 11, 293, 341, 307, 264, 1558, 295, 264, 7919, 1639, 5102, 13], "avg_logprob": -0.4824766343999132, "compression_ratio": 1.880952380952381, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 2723.99, "end": 2724.29, "word": "But", "probability": 0.385986328125}, {"start": 2724.29, "end": 2724.49, "word": " if", "probability": 0.8828125}, {"start": 2724.49, "end": 2724.73, "word": " the", "probability": 0.324462890625}, {"start": 2724.73, "end": 2724.73, "word": " result", "probability": 0.1790771484375}, {"start": 2724.73, "end": 2724.97, "word": " of", "probability": 0.78759765625}, {"start": 2724.97, "end": 2725.41, "word": " using", "probability": 0.406494140625}, {"start": 2725.41, "end": 2726.37, "word": " subclassing", "probability": 0.7423502604166666}, {"start": 2726.37, "end": 2727.03, "word": " is", "probability": 0.480224609375}, {"start": 2727.03, "end": 2727.03, "word": " a", "probability": 0.2110595703125}, {"start": 2727.03, "end": 2727.41, "word": " lot", "probability": 0.35693359375}, {"start": 2727.41, "end": 2727.57, "word": " of", "probability": 0.96044921875}, {"start": 2727.57, "end": 2727.99, "word": " classes,", "probability": 0.84423828125}, {"start": 2728.07, "end": 2728.23, "word": " like", "probability": 0.63232421875}, {"start": 2728.23, "end": 2728.33, "word": " the", "probability": 0.66748046875}, {"start": 2728.33, "end": 2728.55, "word": " examples", "probability": 0.48388671875}, {"start": 2728.55, "end": 2728.71, "word": " we", "probability": 0.490478515625}, {"start": 2728.71, "end": 2728.99, "word": " saw", "probability": 0.54345703125}, {"start": 2728.99, "end": 2729.63, "word": " earlier,", "probability": 0.258544921875}, {"start": 2729.63, "end": 2729.71, "word": " I", "probability": 0.234375}, {"start": 2729.71, "end": 2729.95, "word": " prefer", "probability": 0.30859375}, {"start": 2729.95, "end": 2730.09, "word": " to", "probability": 0.3505859375}, {"start": 2730.09, "end": 2730.57, "word": " use", "probability": 0.87158203125}, {"start": 2730.57, "end": 2731.31, "word": " the", "probability": 0.64501953125}, {"start": 2731.31, "end": 2731.75, "word": " decorator", "probability": 0.8330078125}, {"start": 2731.75, "end": 2731.89, "word": " which", "probability": 0.288818359375}, {"start": 2731.89, "end": 2732.05, "word": " is", "probability": 0.86474609375}, {"start": 2732.05, "end": 2732.27, "word": " a", "probability": 0.80029296875}, {"start": 2732.27, "end": 2732.71, "word": " class", "probability": 0.9140625}, {"start": 2732.71, "end": 2732.87, "word": " that", "probability": 0.5322265625}, {"start": 2732.87, "end": 2733.15, "word": " encloses", "probability": 0.5462646484375}, {"start": 2733.15, "end": 2733.79, "word": " another", "probability": 0.603515625}, {"start": 2733.79, "end": 2733.81, "word": " class", "probability": 0.927734375}, {"start": 2733.81, "end": 2734.09, "word": " to", "probability": 0.61767578125}, {"start": 2734.09, "end": 2734.35, "word": " add", "probability": 0.75830078125}, {"start": 2734.35, "end": 2734.51, "word": " additional", "probability": 0.396484375}, {"start": 2734.51, "end": 2735.01, "word": " features", "probability": 0.374755859375}, {"start": 2735.01, "end": 2735.43, "word": " to", "probability": 0.61865234375}, {"start": 2735.43, "end": 2735.57, "word": " it.", "probability": 0.92724609375}, {"start": 2735.77, "end": 2736.13, "word": " Like", "probability": 0.55615234375}, {"start": 2736.13, "end": 2736.27, "word": " when", "probability": 0.44287109375}, {"start": 2736.27, "end": 2736.49, "word": " we", "probability": 0.92529296875}, {"start": 2736.49, "end": 2736.49, "word": " made", "probability": 0.63134765625}, {"start": 2736.49, "end": 2736.59, "word": " a", "probability": 0.86962890625}, {"start": 2736.59, "end": 2736.95, "word": " circle", "probability": 0.951171875}, {"start": 2736.95, "end": 2737.09, "word": " and", "probability": 0.77978515625}, {"start": 2737.09, "end": 2737.31, "word": " enclosed", "probability": 0.385498046875}, {"start": 2737.31, "end": 2737.67, "word": " it", "probability": 0.61865234375}, {"start": 2737.67, "end": 2738.19, "word": " with", "probability": 0.640625}, {"start": 2738.19, "end": 2738.25, "word": " a", "probability": 0.67724609375}, {"start": 2738.25, "end": 2738.51, "word": " border,", "probability": 0.87451171875}, {"start": 2739.13, "end": 2739.45, "word": " or", "probability": 0.88427734375}, {"start": 2739.45, "end": 2739.51, "word": " a", "probability": 0.50439453125}, {"start": 2739.51, "end": 2739.91, "word": " rectangle", "probability": 0.95361328125}, {"start": 2739.91, "end": 2740.05, "word": " and", "probability": 0.87353515625}, {"start": 2740.05, "end": 2740.23, "word": " enclosed", "probability": 0.81884765625}, {"start": 2740.23, "end": 2740.65, "word": " it", "probability": 0.904296875}, {"start": 2740.65, "end": 2741.27, "word": " with", "probability": 0.88037109375}, {"start": 2741.27, "end": 2741.37, "word": " a", "probability": 0.8779296875}, {"start": 2741.37, "end": 2741.67, "word": " border", "probability": 0.85791015625}, {"start": 2741.67, "end": 2741.89, "word": " as", "probability": 0.50830078125}, {"start": 2741.89, "end": 2741.97, "word": " well.", "probability": 0.94287109375}, {"start": 2742.77, "end": 2743.15, "word": " I", "probability": 0.80908203125}, {"start": 2743.15, "end": 2743.17, "word": " have", "probability": 0.888671875}, {"start": 2743.17, "end": 2743.41, "word": " ten", "probability": 0.52099609375}, {"start": 2743.41, "end": 2743.77, "word": " shapes", "probability": 0.461669921875}, {"start": 2743.77, "end": 2743.97, "word": " and", "probability": 0.341552734375}, {"start": 2743.97, "end": 2743.97, "word": " I", "probability": 0.88818359375}, {"start": 2743.97, "end": 2744.07, "word": " make", "probability": 0.51171875}, {"start": 2744.07, "end": 2744.23, "word": " one", "probability": 0.58154296875}, {"start": 2744.23, "end": 2744.45, "word": " class", "probability": 0.9345703125}, {"start": 2744.45, "end": 2744.85, "word": " to", "probability": 0.92041015625}, {"start": 2744.85, "end": 2745.09, "word": " add", "probability": 0.90478515625}, {"start": 2745.09, "end": 2745.21, "word": " the", "probability": 0.4521484375}, {"start": 2745.21, "end": 2745.43, "word": " feature,", "probability": 0.92041015625}, {"start": 2745.55, "end": 2745.71, "word": " instead", "probability": 0.6123046875}, {"start": 2745.71, "end": 2745.81, "word": " of", "probability": 0.966796875}, {"start": 2745.81, "end": 2746.05, "word": " having", "probability": 0.45068359375}, {"start": 2746.05, "end": 2746.13, "word": " to", "probability": 0.91455078125}, {"start": 2746.13, "end": 2746.31, "word": " make", "probability": 0.8359375}, {"start": 2746.31, "end": 2746.55, "word": " ten", "probability": 0.86279296875}, {"start": 2746.55, "end": 2746.99, "word": " classes", "probability": 0.9052734375}, {"start": 2746.99, "end": 2747.15, "word": " for", "probability": 0.654296875}, {"start": 2747.15, "end": 2747.65, "word": " ten", "probability": 0.467529296875}, {"start": 2747.65, "end": 2748.77, "word": " shapes,", "probability": 0.87548828125}, {"start": 2748.93, "end": 2748.95, "word": " and", "probability": 0.8046875}, {"start": 2748.95, "end": 2749.11, "word": " this", "probability": 0.7587890625}, {"start": 2749.11, "end": 2749.23, "word": " is", "probability": 0.9208984375}, {"start": 2749.23, "end": 2749.37, "word": " the", "probability": 0.81005859375}, {"start": 2749.37, "end": 2749.53, "word": " idea", "probability": 0.7705078125}, {"start": 2749.53, "end": 2750.33, "word": " of", "probability": 0.6806640625}, {"start": 2750.33, "end": 2750.45, "word": " the", "probability": 0.405029296875}, {"start": 2750.45, "end": 2750.89, "word": " decorator", "probability": 0.835693359375}, {"start": 2750.89, "end": 2751.13, "word": " pattern.", "probability": 0.81298828125}], "temperature": 1.0}, {"id": 106, "seek": 276158, "start": 2752.02, "end": 2761.58, "text": "We took an example today to clarify the decorator. In the next lecture, we will read what is in the slides, see the UML diagram of the decorator and see another example, God willing, and God bless you.", "tokens": [4360, 1890, 364, 1365, 965, 281, 17594, 264, 7919, 1639, 13, 682, 264, 958, 7991, 11, 321, 486, 1401, 437, 307, 294, 264, 9788, 11, 536, 264, 624, 12683, 10686, 295, 264, 7919, 1639, 293, 536, 1071, 1365, 11, 1265, 4950, 11, 293, 1265, 5227, 291, 13], "avg_logprob": -0.3984374962747097, "compression_ratio": 1.425531914893617, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 2752.02, "end": 2752.2, "word": "We", "probability": 0.372802734375}, {"start": 2752.2, "end": 2752.4, "word": " took", "probability": 0.46923828125}, {"start": 2752.4, "end": 2752.76, "word": " an", "probability": 0.59033203125}, {"start": 2752.76, "end": 2752.76, "word": " example", "probability": 0.9697265625}, {"start": 2752.76, "end": 2753.0, "word": " today", "probability": 0.43115234375}, {"start": 2753.0, "end": 2753.12, "word": " to", "probability": 0.476806640625}, {"start": 2753.12, "end": 2753.32, "word": " clarify", "probability": 0.50048828125}, {"start": 2753.32, "end": 2753.44, "word": " the", "probability": 0.798828125}, {"start": 2753.44, "end": 2753.86, "word": " decorator.", "probability": 0.8017578125}, {"start": 2753.98, "end": 2754.04, "word": " In", "probability": 0.5009765625}, {"start": 2754.04, "end": 2754.1, "word": " the", "probability": 0.8701171875}, {"start": 2754.1, "end": 2754.1, "word": " next", "probability": 0.8447265625}, {"start": 2754.1, "end": 2754.44, "word": " lecture,", "probability": 0.845703125}, {"start": 2755.04, "end": 2755.84, "word": " we", "probability": 0.90673828125}, {"start": 2755.84, "end": 2755.94, "word": " will", "probability": 0.76611328125}, {"start": 2755.94, "end": 2756.12, "word": " read", "probability": 0.89599609375}, {"start": 2756.12, "end": 2756.28, "word": " what", "probability": 0.6298828125}, {"start": 2756.28, "end": 2756.36, "word": " is", "probability": 0.80615234375}, {"start": 2756.36, "end": 2756.56, "word": " in", "probability": 0.489013671875}, {"start": 2756.56, "end": 2756.68, "word": " the", "probability": 0.89501953125}, {"start": 2756.68, "end": 2757.08, "word": " slides,", "probability": 0.96826171875}, {"start": 2757.24, "end": 2757.42, "word": " see", "probability": 0.41552734375}, {"start": 2757.42, "end": 2757.62, "word": " the", "probability": 0.86181640625}, {"start": 2757.62, "end": 2757.84, "word": " UML", "probability": 0.791748046875}, {"start": 2757.84, "end": 2758.28, "word": " diagram", "probability": 0.84521484375}, {"start": 2758.28, "end": 2758.42, "word": " of", "probability": 0.8271484375}, {"start": 2758.42, "end": 2758.52, "word": " the", "probability": 0.72705078125}, {"start": 2758.52, "end": 2758.96, "word": " decorator", "probability": 0.975341796875}, {"start": 2758.96, "end": 2759.06, "word": " and", "probability": 0.61669921875}, {"start": 2759.06, "end": 2759.22, "word": " see", "probability": 0.6845703125}, {"start": 2759.22, "end": 2760.14, "word": " another", "probability": 0.8818359375}, {"start": 2760.14, "end": 2760.46, "word": " example,", "probability": 0.97314453125}, {"start": 2760.6, "end": 2760.92, "word": " God", "probability": 0.61767578125}, {"start": 2760.92, "end": 2760.94, "word": " willing,", "probability": 0.84619140625}, {"start": 2761.22, "end": 2761.26, "word": " and", "probability": 0.70751953125}, {"start": 2761.26, "end": 2761.36, "word": " God", "probability": 0.297119140625}, {"start": 2761.36, "end": 2761.48, "word": " bless", "probability": 0.81005859375}, {"start": 2761.48, "end": 2761.58, "word": " you.", "probability": 0.95556640625}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2762.08325, "duration_after_vad": 2593.74249999999} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Sber64Sc7AI_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Sber64Sc7AI_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..b701e547a69a525bfffc3863fb36d00ebe55355d --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/Sber64Sc7AI_raw.srt @@ -0,0 +1,2948 @@ +1 +00:00:05,080 --> 00:00:08,220 +Ok guys, peace be upon you. In the last lecture, + +2 +00:00:08,400 --> 00:00:11,100 +we started with the first or the last group of + +3 +00:00:11,100 --> 00:00:13,660 +design patterns which are structural design + +4 +00:00:13,660 --> 00:00:15,200 +patterns and we took from them two design + +5 +00:00:15,200 --> 00:00:20,820 +patterns. One of them is called Corruption. is to + +6 +00:00:20,820 --> 00:00:24,420 +provide a simple interface to use parts of your + +7 +00:00:24,420 --> 00:00:27,400 +system so that you don't involve the developer who + +8 +00:00:27,400 --> 00:00:30,680 +will use your library to implement many steps or + +9 +00:00:30,680 --> 00:00:34,140 +know the details of parts of your system and what + +10 +00:00:34,140 --> 00:00:36,060 +are the subsystems and the relationship between + +11 +00:00:36,060 --> 00:00:38,900 +them make it easy for him to provide him a simple + +12 +00:00:38,900 --> 00:00:41,740 +method, a simple interface through which he can + +13 +00:00:41,740 --> 00:00:44,670 +implement a specific process without knowing the + +14 +00:00:44,670 --> 00:00:49,370 +details. The details are hidden in this face. You + +15 +00:00:49,370 --> 00:00:53,650 +execute the commands and provide it with a single + +16 +00:00:53,650 --> 00:00:55,990 +method to execute the whole process. And this is + +17 +00:00:55,990 --> 00:00:59,550 +what we call the facade. The second design pattern + +18 +00:00:59,550 --> 00:01:01,330 +is the important design pattern called the + +19 +00:01:01,330 --> 00:01:04,980 +adapter. How if I have a systemIt needs to match + +20 +00:01:04,980 --> 00:01:08,420 +with a new office that I want to use I designed + +21 +00:01:08,420 --> 00:01:11,240 +the system to use a specific office And I want to + +22 +00:01:11,240 --> 00:01:13,480 +remove this office and use a new office instead + +23 +00:01:13,480 --> 00:01:15,760 +And this is a scenario that will stay with you all + +24 +00:01:15,760 --> 00:01:18,200 +your life That you remove offices and replace them + +25 +00:01:18,200 --> 00:01:22,500 +with new ones Is the logical solution to change + +26 +00:01:22,500 --> 00:01:27,010 +your entire client application that every call to + +27 +00:01:27,010 --> 00:01:31,050 +the new office becomes a call to the old office + +28 +00:01:31,050 --> 00:01:33,830 +becomes a call to the new office? No, this is not + +29 +00:01:33,830 --> 00:01:39,330 +going to work. Make an adapter so that the client + +30 +00:01:39,330 --> 00:01:41,930 +makes a call to the adapter and the adapter inside + +31 +00:01:41,930 --> 00:01:45,470 +turns into a call to the new office. A third + +32 +00:01:45,470 --> 00:01:47,730 +office is created after that. You only make a new + +33 +00:01:47,730 --> 00:01:51,630 +adapter. The program sends to the adapter and the + +34 +00:01:51,630 --> 00:01:55,090 +adapter turns into the third office. So your + +35 +00:01:55,090 --> 00:02:00,210 +client will be static and will only send request + +36 +00:02:00,210 --> 00:02:03,370 +to adapters and adapters will transform it to new + +37 +00:02:03,370 --> 00:02:08,010 +folders So your application will remain as it is + +38 +00:02:08,010 --> 00:02:10,470 +All you need to do is to create a new adapter when + +39 +00:02:10,470 --> 00:02:14,510 +you get a new library Today we will take a third + +40 +00:02:14,510 --> 00:02:16,510 +design pattern which is also one of the most + +41 +00:02:16,510 --> 00:02:19,230 +important design patterns It's called Decorator + +42 +00:02:19,230 --> 00:02:23,790 +Design Pattern Decorator means that it adds decor + +43 +00:02:24,900 --> 00:02:30,060 +For example, jewellery. We all know what decor + +44 +00:02:30,060 --> 00:02:34,200 +means. Okay, let's read the intent and try to + +45 +00:02:34,200 --> 00:02:37,120 +understand it. Then, let's look at a practical + +46 +00:02:37,120 --> 00:02:39,800 +example to explain what the decorator pattern is + +47 +00:02:39,800 --> 00:02:43,060 +and what it means. The intent or the goal of the + +48 +00:02:43,060 --> 00:02:45,300 +decorator pattern is to attach additional + +49 +00:02:45,300 --> 00:02:48,960 +responsibilities to an object dynamically. To add + +50 +00:02:48,960 --> 00:02:51,560 +new characteristics to the object dynamically. + +51 +00:02:54,350 --> 00:02:59,750 +2. Decorators provide a flexible alternative to + +52 +00:02:59,750 --> 00:03:04,550 +subclassing for extending functionality What does + +53 +00:03:04,550 --> 00:03:05,490 +this sentence mean? This is the most important + +54 +00:03:05,490 --> 00:03:09,750 +sentence Decorators provide a flexible alternative + +55 +00:03:09,750 --> 00:03:11,590 +What is a flexible alternative? It is an + +56 +00:03:11,590 --> 00:03:16,450 +alternative to subclassingfor extending + +57 +00:03:16,450 --> 00:03:20,050 +functionality because we have always learned in + +58 +00:03:20,050 --> 00:03:22,270 +programming that if you have a class and you want + +59 +00:03:22,270 --> 00:03:25,070 +to add new features that don't exist in it, what + +60 +00:03:25,070 --> 00:03:28,990 +do you do? you modify its code? no, you create a + +61 +00:03:28,990 --> 00:03:32,110 +new class and extend it to the old one so that you + +62 +00:03:32,110 --> 00:03:34,430 +don't rewrite the code and then add new features + +63 +00:03:34,430 --> 00:03:35,930 +okay? + +64 +00:03:37,470 --> 00:03:39,930 +did you find that we want to learn something new? + +65 +00:03:41,030 --> 00:03:45,360 +what contradicts this belief? Let's change our + +66 +00:03:45,360 --> 00:03:47,940 +beliefs in programming, not in other things, okay? + +67 +00:03:48,580 --> 00:03:52,780 +That you learn all your life that you add + +68 +00:03:52,780 --> 00:03:54,840 +something new to the class and go and extend it + +69 +00:03:54,840 --> 00:03:57,280 +and add something new to it and you are happy with + +70 +00:03:57,280 --> 00:03:59,300 +it and the subclassing is always good and + +71 +00:03:59,300 --> 00:04:02,180 +excellent No, we will learn that the subclassing + +72 +00:04:02,180 --> 00:04:07,780 +in many cases is bad and we will see alternatives + +73 +00:04:07,780 --> 00:04:11,290 +to itHow can we add a new functionality without + +74 +00:04:11,290 --> 00:04:15,790 +subclassing? And to understand when subclassing is + +75 +00:04:15,790 --> 00:04:18,890 +bad, let's see a practical example and then we + +76 +00:04:18,890 --> 00:04:25,270 +will continue reading the slides. Let me explain + +77 +00:04:25,270 --> 00:04:27,630 +this subject to you. First, I will give you a + +78 +00:04:27,630 --> 00:04:30,950 +simple example, not very practical, to show you + +79 +00:04:30,950 --> 00:04:33,650 +what the meaning of the decorator is, where the + +80 +00:04:33,650 --> 00:04:36,710 +problem is, and how the decorator can solve this + +81 +00:04:36,710 --> 00:04:40,910 +problem.Then I will tell you or show you examples + +82 +00:04:40,910 --> 00:04:45,170 +where this decorator is actually used in famous + +83 +00:04:45,170 --> 00:04:49,790 +libraries such as Java SDK or JavaFX that you are + +84 +00:04:49,790 --> 00:04:53,670 +working on or Swing or Android to show you that + +85 +00:04:53,670 --> 00:04:56,990 +this design pattern is actually used in a big way. + +86 +00:04:57,570 --> 00:04:59,990 +And you used it but you don't know that you are + +87 +00:04:59,990 --> 00:05:04,320 +applying the decorator pattern.Exactly like when + +88 +00:05:04,320 --> 00:05:06,880 +you do add action on the button and you don't know + +89 +00:05:06,880 --> 00:05:11,660 +that it is an observer pattern Ok, let's + +90 +00:05:11,660 --> 00:05:14,460 +understand this example, I want to make a simple + +91 +00:05:14,460 --> 00:05:17,540 +application to draw shapes, ok? I have classes + +92 +00:05:17,540 --> 00:05:21,060 +that represent shapes, first I have an interface + +93 +00:05:21,060 --> 00:05:24,750 +called I shapeOn the basis that all shapes follow + +94 +00:05:24,750 --> 00:05:27,710 +this interface, there is a method called draw that + +95 +00:05:27,710 --> 00:05:29,190 +draws the shape and there is a method called + +96 +00:05:29,190 --> 00:05:32,550 +describe that gives me a description of my text on + +97 +00:05:32,550 --> 00:05:37,830 +this shape The first shape I made is called circle + +98 +00:05:39,120 --> 00:05:42,500 +which is a circle that implements I shape and then + +99 +00:05:42,500 --> 00:05:44,360 +gives it the characteristics of the circle which + +100 +00:05:44,360 --> 00:05:48,960 +is center and radius half a line then this is a + +101 +00:05:48,960 --> 00:05:52,520 +constructor setters and getters and in the end + +102 +00:05:52,520 --> 00:05:55,040 +there are two methods implement that are present + +103 +00:05:55,040 --> 00:05:57,560 +in the interface one of them is called draw which + +104 +00:05:57,560 --> 00:05:58,560 +is supposed to happen when I call it + +105 +00:06:04,740 --> 00:06:08,580 +Draw oval means to draw an oval shape. If you give + +106 +00:06:08,580 --> 00:06:11,240 +the oval shape the center and half of the circle + +107 +00:06:11,240 --> 00:06:13,580 +twice, which is the oval shape, consider that + +108 +00:06:13,580 --> 00:06:16,060 +there are two circles. If you put them next to + +109 +00:06:16,060 --> 00:06:17,540 +each other, what happens to the oval shape? + +110 +00:06:18,120 --> 00:06:21,740 +Circle. Describe, just repeat that this is the + +111 +00:06:21,740 --> 00:06:23,950 +center of the circle.The most important thing is + +112 +00:06:23,950 --> 00:06:25,910 +that I made another class that represents a + +113 +00:06:25,910 --> 00:06:29,210 +rectangle, the name of the class is rectangle, its + +114 +00:06:29,210 --> 00:06:33,630 +attributes are different, x and y are the point of + +115 +00:06:33,630 --> 00:06:37,950 +the rectangle's corner, and width and height are + +116 +00:06:37,950 --> 00:06:41,190 +length and widththis is constructor and the same + +117 +00:06:41,190 --> 00:06:44,010 +thing, I implemented two methods, draw that makes + +118 +00:06:44,010 --> 00:06:49,210 +a rectangle and describe that makes a rectangle + +119 +00:06:49,210 --> 00:06:52,390 +now I made a simple frame that is a small face, so + +120 +00:06:52,390 --> 00:06:55,930 +that when I click on the button, it draws a + +121 +00:06:55,930 --> 00:06:58,290 +circle, do you understand what I mean? because + +122 +00:06:58,290 --> 00:07:00,490 +when I click on the button, it is an action + +123 +00:07:00,490 --> 00:07:04,310 +performed in this swing, okay? I created an object + +124 +00:07:04,310 --> 00:07:08,940 +from COkay, and I give him the data of the circle, + +125 +00:07:09,420 --> 00:07:11,860 +which is the center, for example, and half of the + +126 +00:07:11,860 --> 00:07:17,140 +line is 100. Okay, and then I tell him c dot draw, + +127 +00:07:18,160 --> 00:07:20,460 +and you study it on the fragment itself, so I tell + +128 +00:07:20,460 --> 00:07:21,280 +him get graphics. + +129 +00:07:25,000 --> 00:07:28,320 +When will this code be executed? When I press the + +130 +00:07:28,320 --> 00:07:34,040 +button. Run.this is add shape and this is circle + +131 +00:07:34,040 --> 00:07:39,960 +if you want to draw a rectangle it's exactly the + +132 +00:07:39,960 --> 00:07:46,300 +same thing you say rectangle R new rectangle and + +133 +00:07:46,300 --> 00:07:51,600 +also give it a point 50 50 180 which is the width + +134 +00:07:51,600 --> 00:07:59,220 +and height rectangle free + +135 +00:08:02,400 --> 00:08:12,460 +and then R.draw.getGraphics() and make it run and + +136 +00:08:12,460 --> 00:08:16,240 +this is add shape and this is draw rectangle until + +137 +00:08:16,240 --> 00:08:20,480 +now the subject is trivial right or not guys? okay + +138 +00:08:20,480 --> 00:08:27,060 +now I asked you to make a circle with border so we + +139 +00:08:27,060 --> 00:08:30,480 +want to make a circle around the circle What does + +140 +00:08:30,480 --> 00:08:33,280 +this mean? That we are going to add a new + +141 +00:08:33,280 --> 00:08:35,360 +functionality. In the traditional way, what are + +142 +00:08:35,360 --> 00:08:38,100 +you going to do? Simply say, go and create a new + +143 +00:08:38,100 --> 00:08:42,040 +class called CircleWithBorder. + +144 +00:08:43,580 --> 00:08:47,760 +Okay? And right away, tell it what? Extends Circle + +145 +00:08:47,760 --> 00:08:53,240 +and so on and so forth in everything in the app. + +146 +00:08:53,640 --> 00:08:59,560 +Okay? And thenadd new attributes and override + +147 +00:08:59,560 --> 00:09:02,000 +things that you want to override so you say for + +148 +00:09:02,000 --> 00:09:08,160 +example int border-width this is for the width of + +149 +00:09:08,160 --> 00:09:14,580 +the border and I have color border-color + +150 +00:09:14,580 --> 00:09:18,520 +and + +151 +00:09:18,520 --> 00:09:20,380 +you want to put for example setters and getters + +152 +00:09:20,380 --> 00:09:21,580 +for whom? for the new attributes + +153 +00:09:28,190 --> 00:09:30,530 +We haven't drawn a border yet, we will give it an + +154 +00:09:30,530 --> 00:09:32,510 +attribute but we haven't drawn it yet So we will + +155 +00:09:32,510 --> 00:09:35,170 +change this gate to a method to draw, we will make + +156 +00:09:35,170 --> 00:09:38,210 +it overwrite The draw doesn't draw a border for + +157 +00:09:38,210 --> 00:09:40,050 +this gate So I will make it overwrite, I will tell + +158 +00:09:40,050 --> 00:09:45,470 +it to make an override for a method called draw It + +159 +00:09:45,470 --> 00:09:49,370 +doesn't need to be a super gate, I really want to + +160 +00:09:49,370 --> 00:09:51,710 +make a change I will show you how to make the + +161 +00:09:51,710 --> 00:09:54,630 +changeThe idea is not about how to make changes, + +162 +00:09:54,750 --> 00:09:57,270 +but about how to make changes. For example, I want + +163 +00:09:57,270 --> 00:10:00,730 +to make graphics 2D, + +164 +00:10:01,130 --> 00:10:02,090 +G2D. + +165 +00:10:41,670 --> 00:10:44,990 +Ok, these are the new additions, then I go and say + +166 +00:10:44,990 --> 00:10:51,870 +super or super + +167 +00:10:51,870 --> 00:10:59,710 +.draw Ok + +168 +00:10:59,710 --> 00:11:01,830 +guys, the idea of ​​the draw is to add a new + +169 +00:11:01,830 --> 00:11:04,870 +feature, which is to draw a border Which is what I + +170 +00:11:04,870 --> 00:11:08,430 +did to draw a border, I went and gave it color I + +171 +00:11:08,430 --> 00:11:12,450 +changed the color and gave it a stroke that takes + +172 +00:11:12,450 --> 00:11:16,050 +the width and then I told it to invoke the super + +173 +00:11:16,050 --> 00:11:19,330 +to draw it. It will invoke the super, it will draw + +174 +00:11:19,330 --> 00:11:23,570 +the circle, but after applying the new settings. + +175 +00:11:24,310 --> 00:11:26,650 +From the point of view, the point is not how to + +176 +00:11:26,650 --> 00:11:28,730 +draw a circle, the point is that I made an + +177 +00:11:28,730 --> 00:11:33,010 +override to add a new functionality, okay? And + +178 +00:11:33,010 --> 00:11:36,570 +this is also an override for whom? for describe, + +179 +00:11:37,210 --> 00:11:43,390 +here he used to say this is circle, so i want to + +180 +00:11:43,390 --> 00:11:51,070 +say return super dot describe plus with border of + +181 +00:11:51,070 --> 00:11:53,930 +color and with color for example, the important + +182 +00:11:53,930 --> 00:11:58,630 +thing is that we added a new feature that says + +183 +00:11:58,630 --> 00:12:02,530 +anything in the description with border Ok, the + +184 +00:12:02,530 --> 00:12:05,270 +speech now is simple Ok, until now we did the + +185 +00:12:05,270 --> 00:12:07,630 +class, but we didn't use it We need to go to my + +186 +00:12:07,630 --> 00:12:11,010 +frame Now, instead of creating a circle or + +187 +00:12:11,010 --> 00:12:14,230 +rectangle I found what I need to do I need to + +188 +00:12:14,230 --> 00:12:21,610 +create an object of type circle with border Ok + +189 +00:12:21,610 --> 00:12:29,230 +guys, this is cbnewcirclewithborder + +190 +00:12:30,780 --> 00:12:35,040 +and I give it the center and half of the line and + +191 +00:12:35,040 --> 00:12:37,900 +then go to the cb and give it the set border which + +192 +00:12:37,900 --> 00:12:46,160 +is the new attribute highcolor.red cb.width 3 for + +193 +00:12:46,160 --> 00:12:53,800 +example and then I tell it cb.draw get graphics + +194 +00:13:02,320 --> 00:13:07,280 +With me guys, make a run And it will add shape, it + +195 +00:13:07,280 --> 00:13:11,960 +will add a circle shape in a circle Ok, where is + +196 +00:13:11,960 --> 00:13:15,380 +the problem? Pay attention with me Because I made + +197 +00:13:15,380 --> 00:13:18,700 +a circle, I want to add a rectangle with border + +198 +00:13:18,700 --> 00:13:22,000 +The rectangle needs to have a border What will we + +199 +00:13:22,000 --> 00:13:25,030 +do? You will create a new class with the name + +200 +00:13:25,030 --> 00:13:27,810 +rectangle with border and extend the rectangle and + +201 +00:13:27,810 --> 00:13:30,410 +create an override for the new attribute list + +202 +00:13:30,410 --> 00:13:34,230 +which is border width and color and create an + +203 +00:13:34,230 --> 00:13:39,530 +override for the draw and describe Now + +204 +00:13:39,530 --> 00:13:43,130 +suppose + +205 +00:13:43,130 --> 00:13:45,590 +I have not one shape or two shapes or three shapes + +206 +00:13:45,590 --> 00:13:51,370 +I have ten shapes I have circle and rectangle + +207 +00:13:55,730 --> 00:14:00,150 +and I have a triangle and another shape and a + +208 +00:14:00,150 --> 00:14:02,750 +third and a fourth and a fifth and I want to add a + +209 +00:14:02,750 --> 00:14:07,910 +border to these shapes what should I do now?You + +210 +00:14:07,910 --> 00:14:09,870 +have to add, we have agreed or we have learned + +211 +00:14:09,870 --> 00:14:11,530 +always and we are happy from the first year of + +212 +00:14:11,530 --> 00:14:13,650 +university that you have to add new things, go and + +213 +00:14:13,650 --> 00:14:15,890 +make extend for the class and add them So you have + +214 +00:14:15,890 --> 00:14:18,430 +to go and make extend for this one to make a class + +215 +00:14:18,430 --> 00:14:22,610 +called circle with border CWB circle with border + +216 +00:14:22,610 --> 00:14:25,850 +And this is extend to make a new class called + +217 +00:14:25,850 --> 00:14:29,670 +rectangle with border And this is triangle with + +218 +00:14:29,670 --> 00:14:34,710 +borderSo if you have 10 shapes, how many + +219 +00:14:34,710 --> 00:14:37,690 +subclasses do you need to make? 10 subclasses. Ok, + +220 +00:14:37,990 --> 00:14:41,950 +I told you that we need to make solid shapes. What + +221 +00:14:41,950 --> 00:14:43,030 +do I mean by solid shapes? It means that now the + +222 +00:14:43,030 --> 00:14:45,330 +circle I'm drawing is separated. We need to make a + +223 +00:14:45,330 --> 00:14:49,030 +solid circle. Ok? This is a new feature. It needs + +224 +00:14:49,030 --> 00:14:52,210 +to fill the existing circle. So we need to modify + +225 +00:14:52,210 --> 00:14:56,170 +the main circle to make it.Where do we go to edit? + +226 +00:14:56,390 --> 00:14:58,510 +It has nothing to do with this border So you have + +227 +00:14:58,510 --> 00:15:04,310 +to make a new class called solid circle, C Extend + +228 +00:15:04,310 --> 00:15:08,850 +mean circle And you have to make a full rectangle + +229 +00:15:08,850 --> 00:15:13,430 +You have to make what? Solid rectangle Extend mean + +230 +00:15:13,430 --> 00:15:17,530 +rectangle So in order to add a solid feature to + +231 +00:15:17,530 --> 00:15:21,250 +the shapes I have I have to make them all extend I + +232 +00:15:21,250 --> 00:15:24,410 +have ten shapes and I have ten classes + +233 +00:15:26,550 --> 00:15:29,510 +So in order to add two features to a class, I need + +234 +00:15:29,510 --> 00:15:38,650 +to add 20 classes to the top 10. Is this a good + +235 +00:15:38,650 --> 00:15:41,650 +scenario or not? So every time I want to add a + +236 +00:15:41,650 --> 00:15:45,670 +feature to my 10 classes, I need to create 10 + +237 +00:15:45,670 --> 00:15:50,870 +subclasses. And this is bad. So will I have 10 + +238 +00:15:50,870 --> 00:15:52,050 +subclasses? Have you ever seen someone create a + +239 +00:15:52,050 --> 00:15:57,870 +GUI library? For example, JavaFX.It has a lot of + +240 +00:15:57,870 --> 00:16:00,590 +elements, right or not guys? All these elements + +241 +00:16:00,590 --> 00:16:03,230 +want to add borders to them. For example, you have + +242 +00:16:03,230 --> 00:16:07,150 +a text area, a combo box, a list drop list, and a + +243 +00:16:07,150 --> 00:16:11,610 +tab pane, right or not? There are many types of UI + +244 +00:16:11,610 --> 00:16:14,470 +components in Java, in X or any other library. + +245 +00:16:15,410 --> 00:16:19,990 +Okay? And we want to make a border for all the UI + +246 +00:16:19,990 --> 00:16:23,440 +components. For example, I have 30 UI components + +247 +00:16:23,440 --> 00:16:27,200 +in Javafix, at least this one. Each one of them + +248 +00:16:27,200 --> 00:16:30,680 +extends to add this feature. If I have 10 + +249 +00:16:30,680 --> 00:16:33,460 +features, I have to add them to the 30 UI + +250 +00:16:33,460 --> 00:16:37,320 +components. How many classes will I have? 10 + +251 +00:16:37,320 --> 00:16:43,980 +features in 30 main ones. I have 300 classes. This + +252 +00:16:43,980 --> 00:16:46,920 +is called the explosion of classes, like the + +253 +00:16:46,920 --> 00:16:51,470 +population explosion.This means that the + +254 +00:16:51,470 --> 00:16:54,830 +subclassing that we were happy with was good, we + +255 +00:16:54,830 --> 00:16:57,970 +did not say that it was invalid, but in some cases + +256 +00:16:57,970 --> 00:17:04,110 +it can cause a lot of classes. Because I want to + +257 +00:17:04,110 --> 00:17:08,210 +show you a way, I have 30 classes, I want to make + +258 +00:17:08,210 --> 00:17:10,190 +them a border, I want to make a single class, + +259 +00:17:11,570 --> 00:17:18,290 +that's it, I am a single featureIn one class, add + +260 +00:17:18,290 --> 00:17:23,150 +up to 30. So if I have 10 features, I make only 10 + +261 +00:17:23,150 --> 00:17:28,170 +classes, instead of making 300 classes. Do you + +262 +00:17:28,170 --> 00:17:31,330 +agree with me or not? Let's see how to apply this. + +263 +00:17:38,150 --> 00:17:40,810 +Let me explain how to do it and then I will draw + +264 +00:17:40,810 --> 00:17:45,210 +the UML diagram. What do you think Halgate? In our + +265 +00:17:45,210 --> 00:17:46,970 +example here, I have two shapes, circle and + +266 +00:17:46,970 --> 00:17:49,910 +rectangle. To make them a border, I have to make + +267 +00:17:49,910 --> 00:17:53,810 +two classes, circle with border and rectangle with + +268 +00:17:53,810 --> 00:17:57,750 +border.I didn't do rectangle with border but it's + +269 +00:17:57,750 --> 00:18:01,110 +the same idea Now I don't want to make circle with + +270 +00:18:01,110 --> 00:18:03,210 +border and rectangle with border I want to make + +271 +00:18:03,210 --> 00:18:07,070 +one class called border and add to the frame the + +272 +00:18:07,070 --> 00:18:11,010 +two, three or ten shapes that I have So I found + +273 +00:18:11,010 --> 00:18:15,410 +that I want to make a new class called border + +274 +00:18:18,660 --> 00:18:22,760 +First of all, make this class from the same type + +275 +00:18:22,760 --> 00:18:25,880 +of shapes. What does it mean? Make it from the + +276 +00:18:25,880 --> 00:18:25,880 +same type of shapes. What does it mean? Make it + +277 +00:18:25,880 --> 00:18:25,880 +from the same type of shapes. What does it mean? + +278 +00:18:25,880 --> 00:18:26,940 +Make it from the same type of shapes. What does it + +279 +00:18:26,940 --> 00:18:28,020 +mean? Make it from the same type of shapes. What + +280 +00:18:28,020 --> 00:18:28,200 +does it mean? Make it from the same type of + +281 +00:18:28,200 --> 00:18:28,640 +shapes. What does it mean? Make it from the same + +282 +00:18:28,640 --> 00:18:28,920 +type of shapes. What does it mean? Make it from + +283 +00:18:28,920 --> 00:18:28,920 +the same type of shapes. What does it mean? Make + +284 +00:18:28,920 --> 00:18:28,920 +it from the same type of shapes. What does it + +285 +00:18:28,920 --> 00:18:28,920 +mean? Make it from the same type of shapes. What + +286 +00:18:28,920 --> 00:18:28,920 +does it mean? Make it from the same type of + +287 +00:18:28,920 --> 00:18:29,140 +shapes. What does it mean? Make it from the same + +288 +00:18:29,140 --> 00:18:29,140 +type of shapes. What does it mean? Make it from + +289 +00:18:29,140 --> 00:18:29,940 +the same type of shapes. What does it mean? Make + +290 +00:18:29,940 --> 00:18:35,820 +it from the same type of shapes. What does it + +291 +00:18:35,820 --> 00:18:38,600 +mean? Make it from the same type of shapes. What + +292 +00:18:38,600 --> 00:18:40,520 +does it mean? Make it from the same type of + +293 +00:18:40,520 --> 00:18:45,250 +shapes. an object of type .. pay attention to me + +294 +00:18:45,250 --> 00:18:47,450 +and then I will explain to you ok? an object of + +295 +00:18:47,450 --> 00:18:49,810 +type shape notice that there is a strange thing + +296 +00:18:49,810 --> 00:18:52,830 +that this is of type shape and inside it contains + +297 +00:18:52,830 --> 00:18:56,150 +what? an object of type shape of course this is a + +298 +00:18:56,150 --> 00:18:58,790 +null value so we need to create a constructor to + +299 +00:18:58,790 --> 00:19:06,990 +initialize it + +300 +00:19:06,990 --> 00:19:11,250 +ok + +301 +00:19:11,250 --> 00:19:18,640 +guys? ok we are almost done now look with me now + +302 +00:19:18,640 --> 00:19:24,000 +my goal is to add a border right? what are the + +303 +00:19:24,000 --> 00:19:29,480 +attributes of any border? I have border int border + +304 +00:19:29,480 --> 00:19:36,900 +-width and color border-color + +305 +00:19:36,900 --> 00:19:39,680 +and the same thing we want to do with these + +306 +00:19:39,680 --> 00:19:41,200 +setters + +307 +00:19:52,790 --> 00:19:56,810 +Okay, I got the idea that the shape that I want to + +308 +00:19:56,810 --> 00:20:02,610 +draw, okay? I want to add a frame to it. Now, what + +309 +00:20:02,610 --> 00:20:06,110 +does this constructor take? I shape. Why did you + +310 +00:20:06,110 --> 00:20:08,690 +let him take I shape? So that I can send him a + +311 +00:20:08,690 --> 00:20:11,470 +circle, rectangle, triangle and any other shape. + +312 +00:20:12,150 --> 00:20:15,870 +Okay? Then, in this draw, what do I really want to + +313 +00:20:15,870 --> 00:20:24,630 +do? Okay? I'm going to add my new code Do you + +314 +00:20:24,630 --> 00:20:27,790 +remember the code that we used to do? Circle with + +315 +00:20:27,790 --> 00:20:31,550 +rectangle Circle with border This is the code, do + +316 +00:20:31,550 --> 00:20:34,970 +you see it? What does it do? It applies the new + +317 +00:20:34,970 --> 00:20:44,230 +color and the new border width Why + +318 +00:20:44,230 --> 00:20:48,770 +can't I see the border?Width, what is this? We + +319 +00:20:48,770 --> 00:20:53,090 +wrote it wrong, so we go and edit it, but what? + +320 +00:20:53,270 --> 00:21:04,230 +Down here, border-width Where + +321 +00:21:04,230 --> 00:21:07,810 +is six? Yes, six border-width + +322 +00:21:10,500 --> 00:21:14,960 +okay, we came here in the draw this is the + +323 +00:21:14,960 --> 00:21:18,520 +border's draw do like this and then what do I do? + +324 +00:21:18,640 --> 00:21:23,460 +I tell him to go to shape and tell him to draw and + +325 +00:21:23,460 --> 00:21:29,100 +send me G to D now describe I want to describe the + +326 +00:21:29,100 --> 00:21:35,240 +shape I want to tell him to return shape.describe + +327 +00:21:35,240 --> 00:21:36,660 +and then here I tell him with + +328 +00:21:39,930 --> 00:21:42,590 +with border Okay, what did I do? You will say this + +329 +00:21:42,590 --> 00:21:46,030 +is the same thing we did No, look with me Because + +330 +00:21:46,030 --> 00:21:49,670 +I made a class called border Actually, this border + +331 +00:21:49,670 --> 00:21:54,790 +covers the shape It doesn't extend it, it covers + +332 +00:21:54,790 --> 00:22:00,190 +it Okay, look with me I + +333 +00:22:00,190 --> 00:22:05,610 +have two ways to add new features to any class + +334 +00:22:05,610 --> 00:22:07,330 +Subclassing + +335 +00:22:09,930 --> 00:22:12,270 +If we assume that I have a class that has + +336 +00:22:12,270 --> 00:22:15,130 +attributes, these attributes for example, and + +337 +00:22:15,130 --> 00:22:18,910 +methods, okay? These are one, two, three, and + +338 +00:22:18,910 --> 00:22:22,330 +these methods are one, two, three. I would like to + +339 +00:22:22,330 --> 00:22:24,630 +add a new functionality. What does a new + +340 +00:22:24,630 --> 00:22:27,550 +functionality mean? It means new attributes, new + +341 +00:22:27,550 --> 00:22:31,250 +methods, or modifying old methods. I go and create + +342 +00:22:31,250 --> 00:22:34,910 +a new class. What is the goal? Subclassing. + +343 +00:22:35,190 --> 00:22:43,470 +Extend, okay?I don't write 1,2,3 I write x4 and x5 + +344 +00:22:43,470 --> 00:22:48,750 +as new attributes and I don't write 1,2,3 I write + +345 +00:22:48,750 --> 00:22:54,890 +4 and five and if I want to modify one of these I + +346 +00:22:54,890 --> 00:22:58,170 +can override it and through it I can claim the + +347 +00:22:58,170 --> 00:23:00,750 +super for example or I can change the code in it + +348 +00:23:00,750 --> 00:23:04,250 +completely this is in the case of subclasses + +349 +00:23:04,250 --> 00:23:06,470 +beautiful and excellent and what makes it special + +350 +00:23:06,470 --> 00:23:09,570 +is that you will not rewrite the code in the app + +351 +00:23:09,570 --> 00:23:13,590 +as we learned but the problem is that if I have + +352 +00:23:13,590 --> 00:23:16,010 +ten classes and I want to add new features to them + +353 +00:23:16,010 --> 00:23:20,320 +you have to do x2 to the tenThe second way is the + +354 +00:23:20,320 --> 00:23:22,680 +decorator way. + +355 +00:23:24,300 --> 00:23:25,720 +What does it mean? I want to add a new + +356 +00:23:25,720 --> 00:23:29,800 +functionality, I don't want to do subclassing, I + +357 +00:23:29,800 --> 00:23:32,440 +want to create an object from the old classAnd + +358 +00:23:32,440 --> 00:23:36,620 +wrap it with a new object This wrapping puts in + +359 +00:23:36,620 --> 00:23:39,480 +new things How for example, let's go back to the + +360 +00:23:39,480 --> 00:23:44,060 +same example This class has x x x and has a circle + +361 +00:23:44,060 --> 00:23:47,620 +circle circle This is feature 1,2,3 and this is 1 + +362 +00:23:47,620 --> 00:23:51,960 +,2,3 I would like to add new features, new + +363 +00:23:51,960 --> 00:23:55,820 +attributes, new methods, modifications to previous + +364 +00:23:55,820 --> 00:23:58,240 +methods Because if we assume that this class is + +365 +00:23:58,240 --> 00:24:05,530 +called AGo and create a new class Inside it, + +366 +00:24:05,850 --> 00:24:10,310 +create an object from what? From what? This is an + +367 +00:24:10,310 --> 00:24:15,110 +object from this, okay? So, this thing actually + +368 +00:24:15,110 --> 00:24:19,770 +contains on x x x one two three, right? And on a + +369 +00:24:19,770 --> 00:24:22,790 +circle circle circle one two three This is an + +370 +00:24:22,790 --> 00:24:27,910 +object, object from whom? From this classOkay, did + +371 +00:24:27,910 --> 00:24:31,970 +you notice that the class of addition, the client + +372 +00:24:31,970 --> 00:24:36,250 +sees it as this? What does addition mean? It is + +373 +00:24:36,250 --> 00:24:41,590 +supposed to be as if this includes this with + +374 +00:24:41,590 --> 00:24:45,170 +additions. But again, I confirm that this did not + +375 +00:24:45,170 --> 00:24:49,770 +extend. So really, I do not see anything inside + +376 +00:24:49,770 --> 00:24:51,270 +these. I am from outside, did you notice? This is + +377 +00:24:51,270 --> 00:24:53,110 +the class. When I create an object from it, is + +378 +00:24:53,110 --> 00:24:55,570 +there a method? No, the client will not see + +379 +00:24:56,370 --> 00:24:59,350 +Anything else, so he says what are you doing? Now, + +380 +00:25:00,150 --> 00:25:02,510 +why am I doing this? Because I want to add new + +381 +00:25:02,510 --> 00:25:05,670 +things What are the new things? They are xx which + +382 +00:25:05,670 --> 00:25:09,250 +are 4 and 5, they will add new attributes to us, + +383 +00:25:09,290 --> 00:25:13,990 +okay? Then you add a new method, put 4 and 5, + +384 +00:25:14,070 --> 00:25:17,350 +these are new methods for them But I still have a + +385 +00:25:17,350 --> 00:25:20,770 +problem that 1 and 2 and 3, I don't see them from + +386 +00:25:20,770 --> 00:25:24,170 +here, right? So he says 1 and 2 and 3, go back and + +387 +00:25:24,170 --> 00:25:30,330 +do what? write them again if there are ten methods + +388 +00:25:30,330 --> 00:25:33,050 +here you have to write the ten here but what does + +389 +00:25:33,050 --> 00:25:37,910 +it do when I call one of the covers one will call + +390 +00:25:37,910 --> 00:25:42,150 +one of the objects inside when I call two from + +391 +00:25:42,150 --> 00:25:45,530 +here this calls two from here when I call three + +392 +00:25:45,530 --> 00:25:50,990 +this calls three from here because my goal is that + +393 +00:25:50,990 --> 00:25:56,390 +I have to see thisIt's like this, but with new + +394 +00:25:56,390 --> 00:25:58,690 +features Because if I create an object from this, + +395 +00:25:59,990 --> 00:26:03,870 +I will see x1 and x1 and x1 and x1 and x1 and x1 + +396 +00:26:03,870 --> 00:26:04,930 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +397 +00:26:04,930 --> 00:26:05,050 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +398 +00:26:05,050 --> 00:26:06,670 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +399 +00:26:06,670 --> 00:26:08,570 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +400 +00:26:08,570 --> 00:26:10,690 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +401 +00:26:10,690 --> 00:26:10,690 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +402 +00:26:10,690 --> 00:26:10,690 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +403 +00:26:10,690 --> 00:26:10,690 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +404 +00:26:10,690 --> 00:26:13,870 +and x1 and x1 and x1 and x1 and x1 and + +405 +00:26:13,870 --> 00:26:18,810 +x1I will see new things, yes I will see 4 and 5, + +406 +00:26:18,910 --> 00:26:22,390 +and I will see attributes 4 and 5, this is adding + +407 +00:26:22,390 --> 00:26:26,990 +new things to this, using the decorator method, or + +408 +00:26:26,990 --> 00:26:29,250 +sometimes we call it wrapper, what is a wrapper? + +409 +00:26:30,230 --> 00:26:31,610 +It is a cover, don't you hear the word chicken + +410 +00:26:31,610 --> 00:26:39,050 +wrap? Yes, this is a wrapper, a cover, now I added + +411 +00:26:39,050 --> 00:26:42,980 +new features, but it has pros and consWhat are its + +412 +00:26:42,980 --> 00:26:48,100 +disadvantages? Notice that I had to rewrite the + +413 +00:26:48,100 --> 00:26:50,620 +same methods here with the conversion to the inner + +414 +00:26:50,620 --> 00:26:53,620 +object. Here, no, I did not need to write one, two + +415 +00:26:53,620 --> 00:26:58,980 +and three. Okay, it overwhelmed us a bit, but the + +416 +00:26:58,980 --> 00:27:02,900 +idea that came up is that this cover can be + +417 +00:27:02,900 --> 00:27:06,260 +covered by anything, that is, if this is of the + +418 +00:27:06,260 --> 00:27:09,620 +type that takes a certain interface I, any object + +419 +00:27:09,620 --> 00:27:14,420 +of type I can be placed here.So this envelope goes + +420 +00:27:14,420 --> 00:27:19,920 +with any object of the type of the interface As if + +421 +00:27:19,920 --> 00:27:22,600 +you are making a frame and you change the image + +422 +00:27:22,600 --> 00:27:27,180 +inside it Now let's come to our example here We + +423 +00:27:27,180 --> 00:27:29,000 +haven't finished this example yet, let's apply it, + +424 +00:27:29,020 --> 00:27:33,000 +let's see how it works I actually made a class + +425 +00:27:33,000 --> 00:27:36,340 +called border, which is this class What wraps + +426 +00:27:36,340 --> 00:27:41,660 +inside it? Object of the type shape So this is the + +427 +00:27:41,660 --> 00:27:46,500 +inner object Now, what are the new attributes and + +428 +00:27:46,500 --> 00:27:49,460 +classes that I added? I added new attributes which + +429 +00:27:49,460 --> 00:27:53,500 +are border-width and border-color This is border + +430 +00:27:53,500 --> 00:27:59,520 +-width and border-color This is four and five This + +431 +00:27:59,520 --> 00:28:04,480 +is the constructor to send the shape inside Now, + +432 +00:28:04,640 --> 00:28:08,520 +this is the method of draw The inner object has a + +433 +00:28:08,520 --> 00:28:14,890 +drawwhich is for example 1 I am supposed to see + +434 +00:28:14,890 --> 00:28:20,390 +the cover as I see the real object so I wrote 1 in + +435 +00:28:20,390 --> 00:28:23,970 +the class this is 1 which I wrote in the class + +436 +00:28:23,970 --> 00:28:29,110 +this is class 1 but of course through 1 look with + +437 +00:28:29,110 --> 00:28:33,550 +me which is right 1 to draw I started shape.draw + +438 +00:28:34,650 --> 00:28:36,850 +What does it mean? It means that this draw is + +439 +00:28:36,850 --> 00:28:41,290 +equivalent to the draw that is in the shape. This + +440 +00:28:41,290 --> 00:28:45,030 +is the transformation. And also through describe, + +441 +00:28:46,530 --> 00:28:48,090 +the shape is equivalent to the describe. In the + +442 +00:28:48,090 --> 00:28:52,770 +past, we used to do super to describe. Okay? But + +443 +00:28:52,770 --> 00:28:56,650 +with some changes, which are what I want. That is, + +444 +00:28:56,710 --> 00:28:58,890 +when you make a draw, before you implement the + +445 +00:28:58,890 --> 00:29:01,830 +draw on your shape, add the adjustments that I + +446 +00:29:01,830 --> 00:29:05,670 +want, then make the draw.Describe is the same + +447 +00:29:05,670 --> 00:29:10,330 +thing. I want to make a shape and describe it and + +448 +00:29:10,330 --> 00:29:14,650 +add whatever I want to it. How many classes did I + +449 +00:29:14,650 --> 00:29:18,130 +make? One class takes shape. Let's take advantage + +450 +00:29:18,130 --> 00:29:22,550 +of it. Go to the frame that I have. Before I had + +451 +00:29:22,550 --> 00:29:24,770 +to make circle with border and rectangle with + +452 +00:29:24,770 --> 00:29:28,110 +border. Did you notice? All you have to do is to + +453 +00:29:28,110 --> 00:29:31,420 +make an object from circle, the basic class. With + +454 +00:29:31,420 --> 00:29:35,180 +me or not guys? Because this basic class we want + +455 +00:29:35,180 --> 00:29:38,080 +to add a border to it All you have to do is to + +456 +00:29:38,080 --> 00:29:40,500 +create an object from border B that is equal to + +457 +00:29:40,500 --> 00:29:45,360 +new border And what happens to the minus sign? The + +458 +00:29:45,360 --> 00:29:50,620 +C will accept the C because C is a shapenow all + +459 +00:29:50,620 --> 00:29:54,260 +you need to do is to give him your border's + +460 +00:29:54,260 --> 00:29:56,880 +properties which is border color for example color + +461 +00:29:56,880 --> 00:30:06,960 +.red and go b.set border width for example 3 and + +462 +00:30:06,960 --> 00:30:09,780 +the last step I should deal with the border as I + +463 +00:30:09,780 --> 00:30:11,960 +would deal with the circle there is a method + +464 +00:30:11,960 --> 00:30:16,380 +called draw and say get graphics + +465 +00:30:22,500 --> 00:30:27,820 +Let's create a circle with + +466 +00:30:27,820 --> 00:30:31,300 +a circle shape Now I want to create a rectangle + +467 +00:30:31,300 --> 00:30:37,960 +with border All you need to do is type rectangle R + +468 +00:30:37,960 --> 00:30:43,580 +new rectangle + +469 +00:30:43,580 --> 00:30:46,840 +180 + +470 +00:30:46,840 --> 00:30:47,440 +for example + +471 +00:30:52,710 --> 00:31:01,430 +and here R rectangle I didn't make a new class I + +472 +00:31:01,430 --> 00:31:04,010 +brought rectangle and made it the same object of + +473 +00:31:04,010 --> 00:31:09,410 +type border and it will run add shape and it will + +474 +00:31:09,410 --> 00:31:15,420 +add border to it and if you have any other shapeI + +475 +00:31:15,420 --> 00:31:20,460 +mean, if I have 10 shapes, and I make only one + +476 +00:31:20,460 --> 00:31:23,260 +class for each of them, I add this new + +477 +00:31:23,260 --> 00:31:23,260 +functionality. + +478 +00:31:26,820 --> 00:31:33,320 +Now, using the decorator method. I have two ways + +479 +00:31:33,320 --> 00:31:35,740 +to add any feature to a class. The first way is + +480 +00:31:35,740 --> 00:31:40,100 +subclassing.means you were searched, right or + +481 +00:31:40,100 --> 00:31:41,480 +wrong, we talked about it a lot and it took you + +482 +00:31:41,480 --> 00:31:43,420 +two years and you are happy with it. The second + +483 +00:31:43,420 --> 00:31:46,960 +way is to use the decorator method. I want to add + +484 +00:31:46,960 --> 00:31:49,700 +a new functionality to the class. You create an + +485 +00:31:49,700 --> 00:31:53,340 +object from your class and wrap it with another + +486 +00:31:53,340 --> 00:31:57,600 +object from the class. The way of wrapping this, + +487 +00:31:57,640 --> 00:32:00,870 +or the decorator we call it, or the wrapperIt's + +488 +00:32:00,870 --> 00:32:03,590 +difficult because you have to use the methods in + +489 +00:32:03,590 --> 00:32:08,190 +your object to create it here because the client + +490 +00:32:08,190 --> 00:32:12,870 +sees the cover as it sees what's inside. So 1,2,3, + +491 +00:32:12,910 --> 00:32:15,870 +I made them here 1,2,3, but I let it transform + +492 +00:32:15,870 --> 00:32:19,230 +from inside. We didn't do this here. We used to do + +493 +00:32:19,230 --> 00:32:20,990 +subclassing, missequation, because you don't want + +494 +00:32:20,990 --> 00:32:23,650 +to write code. Here you want to write code with + +495 +00:32:23,650 --> 00:32:26,840 +transformation and adding additional quotes.And + +496 +00:32:26,840 --> 00:32:29,960 +you can add more methods For example, I will not + +497 +00:32:29,960 --> 00:32:33,020 +add more things here Of course, what will be extra + +498 +00:32:33,020 --> 00:32:35,860 +if there are setters and getters For border width + +499 +00:32:35,860 --> 00:32:40,580 +and border color These are considered four or five + +500 +00:32:40,580 --> 00:32:44,500 +But the advantage of the decorator method is that + +501 +00:32:44,500 --> 00:32:49,920 +I can change the inner object Of different types, + +502 +00:32:50,140 --> 00:32:54,840 +so it's like a cover It can cover any type of + +503 +00:32:54,840 --> 00:32:59,660 +shapeSo the addition is made with one class only + +504 +00:32:59,660 --> 00:33:02,900 +So if I have 30 classes, I want to add 10 + +505 +00:33:02,900 --> 00:33:09,380 +additions to them For example, I made a border now + +506 +00:33:09,380 --> 00:33:13,440 +We want to make a scroll bar for the shapes Or + +507 +00:33:13,440 --> 00:33:17,040 +solid shapes You only need to make one class + +508 +00:33:17,040 --> 00:33:21,920 +called solid And it takes any shape of the type + +509 +00:33:21,920 --> 00:33:25,840 +shape And it creates an implement for the method + +510 +00:33:25,840 --> 00:33:30,680 +draw that you write to it So that you give it a + +511 +00:33:30,680 --> 00:33:33,420 +color and tell it to fill it And then it draws the + +512 +00:33:33,420 --> 00:33:37,220 +shape again to get shape.draw Not super.draw, + +513 +00:33:37,440 --> 00:33:42,720 +shape.draw So really I only need one class to make + +514 +00:33:42,720 --> 00:33:47,280 +solid So each new feature is one class instead of + +515 +00:33:47,280 --> 00:33:51,560 +ten classes As I said in JavaFX, I have many UI + +516 +00:33:51,560 --> 00:33:56,450 +components I want to make a scrollbar for them I + +517 +00:33:56,450 --> 00:33:58,890 +want to make a scrollbar for the text area, a + +518 +00:33:58,890 --> 00:34:01,130 +scrollbar for the tab pane I want to add this + +519 +00:34:01,130 --> 00:34:06,250 +scrollbar and tell it to make a text area with + +520 +00:34:06,250 --> 00:34:10,390 +scrollbar and make it a new class Text area with + +521 +00:34:10,390 --> 00:34:12,330 +scrollbar with border and make it a new class, + +522 +00:34:12,390 --> 00:34:15,830 +look at the possibilities it has, it increases No, + +523 +00:34:16,230 --> 00:34:19,170 +make a class, one scrollbar and wrap it in any + +524 +00:34:19,170 --> 00:34:25,500 +form of UI componentNow, where did we get the idea + +525 +00:34:25,500 --> 00:34:28,700 +guys? So we have two ways of adding, the way of + +526 +00:34:28,700 --> 00:34:33,460 +subclassing and the way of the decorator Because + +527 +00:34:33,460 --> 00:34:37,080 +this doesn't mean that the subclassing is bad and + +528 +00:34:37,080 --> 00:34:40,180 +you don't use it, okay? No, you will say, okay, + +529 +00:34:40,320 --> 00:34:42,580 +the doctor came, the subclassing has a problem, + +530 +00:34:42,960 --> 00:34:47,320 +let's do what? The decorator all his life No, you + +531 +00:34:47,320 --> 00:34:50,970 +are supposed to use the subclassingBut let's say + +532 +00:34:50,970 --> 00:34:54,470 +that in some cases, using subclassing will cause + +533 +00:34:54,470 --> 00:34:57,250 +an explosion of classes, a large number of + +534 +00:34:57,250 --> 00:35:01,010 +classes. When you need to add these ten classes to + +535 +00:35:01,010 --> 00:35:04,250 +make another ten classes, there is a negativity + +536 +00:35:04,250 --> 00:35:07,270 +here. So you resort to using a decorator to make + +537 +00:35:07,270 --> 00:35:10,830 +one class to add the feature to the ten you have. + +538 +00:35:11,710 --> 00:35:14,290 +So if the use of subclassing causes the creation + +539 +00:35:14,290 --> 00:35:16,270 +of a large number of classes, then you resort to + +540 +00:35:16,270 --> 00:35:17,490 +the decorator. + +541 +00:35:20,660 --> 00:35:27,960 +Now, based on this talk, let's see where we are in + +542 +00:35:27,960 --> 00:35:32,380 +Java or + +543 +00:35:32,380 --> 00:35:36,560 +in JavaFX. We use the decorator pattern, and you + +544 +00:35:36,560 --> 00:35:39,940 +use the decorator pattern, and you don't know that + +545 +00:35:39,940 --> 00:35:41,380 +this is an application on the decorator. + +546 +00:35:44,140 --> 00:35:49,040 +I told you in Java how to write and read files.So + +547 +00:35:49,040 --> 00:35:52,100 +he used to say for example to write on file go and + +548 +00:35:52,100 --> 00:36:00,980 +create object from file output stream of + +549 +00:36:00,980 --> 00:36:05,360 +FOS for example that I named it equals new file + +550 +00:36:05,360 --> 00:36:11,220 +output stream and it takes object from type for + +551 +00:36:11,220 --> 00:36:14,830 +example file Now, if you want to write the output + +552 +00:36:14,830 --> 00:36:18,370 +stream file directly by using it, it is annoying + +553 +00:36:18,370 --> 00:36:20,590 +because it has a write method and it takes binary + +554 +00:36:20,590 --> 00:36:23,730 +data, for example. Okay? So it is difficult to use + +555 +00:36:23,730 --> 00:36:26,470 +it. So to make it easier to use it, it told you to + +556 +00:36:26,470 --> 00:36:32,610 +create another object from PrintWriter.pr + +557 +00:36:32,610 --> 00:36:37,750 +and you give it PrintWriter + +558 +00:36:37,750 --> 00:36:39,010 +and you give it the file + +559 +00:36:41,870 --> 00:36:43,610 +This is how they used to say connect this one with + +560 +00:36:43,610 --> 00:36:46,250 +this one. So what is the advantage of the print + +561 +00:36:46,250 --> 00:36:49,750 +writer? You go and tell him PR and the print + +562 +00:36:49,750 --> 00:36:52,070 +writer tells you to write on the file as if you + +563 +00:36:52,070 --> 00:36:53,970 +were writing on the screen. You don't have to make + +564 +00:36:53,970 --> 00:36:58,730 +a print lin like system.out. You write the text + +565 +00:36:58,730 --> 00:37:06,580 +you want on the file. For example, when you write + +566 +00:37:06,580 --> 00:37:09,580 +an object file, it will also tell you to create a + +567 +00:37:09,580 --> 00:37:11,920 +file output stream, then create an object output + +568 +00:37:11,920 --> 00:37:14,900 +stream, connect it to the output stream, and write + +569 +00:37:14,900 --> 00:37:17,120 +a write object. It will take the object that you + +570 +00:37:17,120 --> 00:37:19,640 +created, for example, a student or a course, and + +571 +00:37:19,640 --> 00:37:25,060 +serialize it and write it on the file. Okay, why + +572 +00:37:25,060 --> 00:37:26,800 +did we do it this way? They used to say, okay, do + +573 +00:37:26,800 --> 00:37:29,780 +it this way, we want to do it this way. Yes, do it + +574 +00:37:29,780 --> 00:37:31,540 +this way and connect it to this way, and it turns + +575 +00:37:31,540 --> 00:37:34,670 +out this way.Okay? So why did they do it this way? + +576 +00:37:34,950 --> 00:37:37,390 +And why do you connect this with this? Okay? Pay + +577 +00:37:37,390 --> 00:37:40,910 +attention to me. In Java, we have different types + +578 +00:37:40,910 --> 00:37:45,070 +of output streams. Okay? For example, we have a + +579 +00:37:45,070 --> 00:37:46,190 +file output stream. + +580 +00:37:50,030 --> 00:37:53,290 +Which is what is in her hand to write on the file. + +581 +00:37:53,590 --> 00:37:55,770 +Binary data is written on the file. And for + +582 +00:37:55,770 --> 00:37:57,450 +example, we have a socket output stream. + +583 +00:38:02,700 --> 00:38:05,080 +What is it for? To write on the network. You give + +584 +00:38:05,080 --> 00:38:07,200 +it a specific IP and it writes on the network. You + +585 +00:38:07,200 --> 00:38:10,360 +can make a chat program on another device or send + +586 +00:38:10,360 --> 00:38:12,660 +files to another device. You use the output stream + +587 +00:38:12,660 --> 00:38:14,320 +socket. This is written on the file and this is + +588 +00:38:14,320 --> 00:38:17,160 +written on the socket. And there are other types + +589 +00:38:17,160 --> 00:38:19,100 +of output streams. I did not bring them with me + +590 +00:38:19,100 --> 00:38:23,180 +this time. Now, all of these are output streams. + +591 +00:38:23,800 --> 00:38:25,480 +Actually, when you want to write data on them, you + +592 +00:38:25,480 --> 00:38:26,940 +want to write the data in binary data. That is, + +593 +00:38:26,940 --> 00:38:28,300 +you want to send a string, you have to turn the + +594 +00:38:28,300 --> 00:38:32,630 +string into characters and binary and a story.So I + +595 +00:38:32,630 --> 00:38:34,770 +found that they made it easy for us, they let us + +596 +00:38:34,770 --> 00:38:36,950 +say whatever output stream you have, whatever you + +597 +00:38:36,950 --> 00:38:38,390 +send to the network, whatever you send to files, + +598 +00:38:38,530 --> 00:38:39,250 +whatever you send to whatever you send to whatever + +599 +00:38:39,250 --> 00:38:40,590 +you send to whatever you send to whatever you send + +600 +00:38:40,590 --> 00:38:40,650 +to whatever you send to whatever you send to + +601 +00:38:40,650 --> 00:38:40,710 +whatever you send to whatever you send to whatever + +602 +00:38:40,710 --> 00:38:40,730 +you send to whatever you send to whatever you send + +603 +00:38:40,730 --> 00:38:40,870 +to whatever you send to whatever you send to + +604 +00:38:40,870 --> 00:38:41,010 +whatever you send to whatever you send to whatever + +605 +00:38:41,010 --> 00:38:42,150 +you send to whatever you send to whatever you send + +606 +00:38:42,150 --> 00:38:42,390 +to whatever you send to whatever you send to + +607 +00:38:42,390 --> 00:38:42,390 +whatever you send to whatever you send to whatever + +608 +00:38:42,390 --> 00:38:42,690 +you send to whatever you send to whatever you send + +609 +00:38:42,690 --> 00:38:43,090 +to whatever you send to whatever you send to + +610 +00:38:43,090 --> 00:38:44,010 +whatever you send to whatever you send to whatever + +611 +00:38:44,010 --> 00:38:44,170 +you send to whatever you send to whatever you send + +612 +00:38:44,170 --> 00:38:44,190 +to whatever you send to whatever you send to + +613 +00:38:44,190 --> 00:38:44,190 +whatever you send to whatever you send to whatever + +614 +00:38:44,190 --> 00:38:44,190 +you send to whatever you send to whatever you send + +615 +00:38:44,190 --> 00:38:44,990 +to whatever you send to whatever you send to + +616 +00:38:44,990 --> 00:38:45,530 +whatever you send to whatever you send to whatever + +617 +00:38:45,530 --> 00:38:50,890 +you send to whatever you send to whatever + +618 +00:38:50,890 --> 00:38:55,190 +you send to whatever youSimple, how do we do it? + +619 +00:38:55,330 --> 00:38:59,190 +We go to the file output stream and make an extend + +620 +00:38:59,190 --> 00:39:05,810 +to a new class called string writing file output + +621 +00:39:05,810 --> 00:39:13,270 +stream and make an extend to this new class and + +622 +00:39:13,270 --> 00:39:19,390 +make a method called printlnthis is where I made + +623 +00:39:19,390 --> 00:39:21,950 +this method, it takes a string where did I make + +624 +00:39:21,950 --> 00:39:25,210 +this method? in the new class, in the subclass on + +625 +00:39:25,210 --> 00:39:28,210 +the basis that in the print string it takes the + +626 +00:39:28,210 --> 00:39:31,030 +string and converts it to binary and prepares it + +627 +00:39:31,030 --> 00:39:39,530 +as a byte array and calls super.writeBytes + +628 +00:39:39,530 --> 00:39:43,670 +for example there + +629 +00:39:43,670 --> 00:39:47,810 +is a new feature that I added to the subclassOf + +630 +00:39:47,810 --> 00:39:49,690 +course, if I want to write on a file, I don't need + +631 +00:39:49,690 --> 00:39:52,130 +to create an object from it. I need to create an + +632 +00:39:52,130 --> 00:39:55,510 +object from the subclass and use it. And we live + +633 +00:39:55,510 --> 00:39:59,250 +our life happily. But wait, we have ten other + +634 +00:39:59,250 --> 00:40:02,230 +output streams. So you will have to go to the + +635 +00:40:02,230 --> 00:40:05,110 +output stream socket and create a new subclass and + +636 +00:40:05,110 --> 00:40:08,790 +class, and create a print method in it, take a + +637 +00:40:08,790 --> 00:40:12,070 +string, and do the same conversion process, and + +638 +00:40:12,070 --> 00:40:12,910 +then say super, + +639 +00:40:16,330 --> 00:40:19,850 +.WriteBytesToSocket() which is the method here or + +640 +00:40:19,850 --> 00:40:23,090 +write bytes and give it to it to add the same + +641 +00:40:23,090 --> 00:40:27,950 +feature to this one I had to do subclasses if I + +642 +00:40:27,950 --> 00:40:29,530 +have ten output streams and this is what exists, + +643 +00:40:29,730 --> 00:40:31,570 +types of output streams, there is a buffered + +644 +00:40:31,570 --> 00:40:35,650 +output stream written on the memory each one has + +645 +00:40:35,650 --> 00:40:39,690 +to do what? extend to add a new feature what is + +646 +00:40:39,690 --> 00:40:43,100 +this story? every time I have an output streamAnd + +647 +00:40:43,100 --> 00:40:44,940 +in order to support her writing a string, I wanted + +648 +00:40:44,940 --> 00:40:47,260 +to extend it to a new class to add this feature, + +649 +00:40:47,720 --> 00:40:50,480 +and she said, no, we let you go She said, instead + +650 +00:40:50,480 --> 00:40:53,180 +of making this class, and this class, and this + +651 +00:40:53,180 --> 00:40:59,400 +class, we made one class, all of them with the + +652 +00:40:59,400 --> 00:41:02,780 +name PrintWriter + +653 +00:41:05,430 --> 00:41:07,670 +Okay? How did they design this print writer? + +654 +00:41:09,430 --> 00:41:12,270 +Inside it, it is wrapped with an object of the + +655 +00:41:12,270 --> 00:41:15,070 +type of output stream. + +656 +00:41:16,590 --> 00:41:23,130 +Just like we wrapped the circle or the shape, we + +657 +00:41:23,130 --> 00:41:27,130 +wrapped it with what? With a border. The output + +658 +00:41:27,130 --> 00:41:30,870 +stream was wrapped with what? Yes, with a print + +659 +00:41:30,870 --> 00:41:34,570 +writer.And of course, he made a constructor. I'm + +660 +00:41:34,570 --> 00:41:38,070 +sitting in this gate. Imagine how the print writer + +661 +00:41:38,070 --> 00:41:39,630 +looks like. He made a constructor called + +662 +00:41:39,630 --> 00:41:42,050 +printWriter. + +663 +00:41:42,910 --> 00:41:47,370 +It takes an object from it and outputs a stream, + +664 +00:41:47,590 --> 00:41:51,070 +which is OOS. To initialize to whom? To the OOS + +665 +00:41:51,070 --> 00:41:56,470 +here. Okay? And then he made a new method. Here, + +666 +00:41:56,670 --> 00:42:01,370 +public, void for example. Its name is printLin. + +667 +00:42:02,930 --> 00:42:07,750 +Okay? This thing takes a string. It needs to add a + +668 +00:42:07,750 --> 00:42:10,670 +new property that takes the string and converts it + +669 +00:42:10,670 --> 00:42:13,870 +to binary data and then comes to the output stream + +670 +00:42:13,870 --> 00:42:17,430 +and tells it to write bytes. + +671 +00:42:21,490 --> 00:42:24,630 +Am I right or not, guys? In this class, the output + +672 +00:42:24,630 --> 00:42:26,610 +stream is enclosed. What is the advantage of this + +673 +00:42:26,610 --> 00:42:29,030 +method? Because this output stream is the + +674 +00:42:29,030 --> 00:42:34,070 +interface for whom? All their fathers.You can + +675 +00:42:34,070 --> 00:42:36,950 +create an object from the print writer and send it + +676 +00:42:36,950 --> 00:42:40,530 +a file output stream, socket output stream, + +677 +00:42:41,190 --> 00:42:44,130 +buffered output stream, whatever output stream. + +678 +00:42:45,070 --> 00:42:49,410 +And all of them execute a print train. This gives + +679 +00:42:49,410 --> 00:42:51,970 +you a new feature, which is the ability to write + +680 +00:42:51,970 --> 00:42:54,890 +texts on the output stream regardless of the type + +681 +00:42:54,890 --> 00:42:59,590 +of output stream. This means that this print + +682 +00:42:59,590 --> 00:43:05,080 +writer is a wrapperto the output stream to add to + +683 +00:43:05,080 --> 00:43:09,180 +it the ability to write texts. Why did they do it + +684 +00:43:09,180 --> 00:43:10,580 +this way? They used to tell you to memorize it + +685 +00:43:10,580 --> 00:43:13,620 +this way. Why? That's it. Make a file output + +686 +00:43:13,620 --> 00:43:15,940 +stream and make a print writer and pass this to + +687 +00:43:15,940 --> 00:43:19,780 +this. Actually, this is an addition of a feature + +688 +00:43:19,780 --> 00:43:23,960 +to whom? To the object that you pass here. Without + +689 +00:43:23,960 --> 00:43:27,580 +this method, I had to add this feature to make a + +690 +00:43:27,580 --> 00:43:30,690 +subclass for eachoutput stream is present on it. + +691 +00:43:31,270 --> 00:43:35,030 +So this is really an application for whom? For the + +692 +00:43:35,030 --> 00:43:37,490 +decorator. Any output stream that connects them + +693 +00:43:37,490 --> 00:43:40,030 +together, and in reading too, connects them + +694 +00:43:40,030 --> 00:43:41,970 +together, this is all an application for whom, + +695 +00:43:42,050 --> 00:43:44,930 +guys? For the decorator. It connects together and + +696 +00:43:44,930 --> 00:43:47,930 +you don't know what it is. No, did you get the + +697 +00:43:47,930 --> 00:43:50,510 +idea that this is an application for whom? For the + +698 +00:43:50,510 --> 00:43:54,310 +decorator. And we understood why they did that. I + +699 +00:43:54,310 --> 00:43:56,150 +could also tell you to make an object out of this + +700 +00:43:56,150 --> 00:43:59,370 +class and write on it.So why do I connect this + +701 +00:43:59,370 --> 00:44:02,650 +with this with this? To add new features to each + +702 +00:44:02,650 --> 00:44:05,610 +existing object. Because without this, it would + +703 +00:44:05,610 --> 00:44:10,050 +have to appear in a large number of subclasses. + +704 +00:44:10,950 --> 00:44:14,410 +Another example, in the java.fx that you use, I'm + +705 +00:44:14,410 --> 00:44:16,430 +sure you've taken it. What's the name of the text + +706 +00:44:16,430 --> 00:44:19,930 +area? Text area, and there's a text field, and + +707 +00:44:19,930 --> 00:44:21,390 +there's a tab, and there's I don't know what. + +708 +00:44:21,910 --> 00:44:25,130 +You'd like to add a border to any of these. Has + +709 +00:44:25,130 --> 00:44:27,910 +anyone tried to add a border to the text area in + +710 +00:44:27,910 --> 00:44:34,230 +java.fx? No, there is a class called border, + +711 +00:44:35,090 --> 00:44:39,130 +scroll type, scroll pane, there is scroll for + +712 +00:44:39,130 --> 00:44:43,830 +shapes I will go back to java swing, the swing + +713 +00:44:43,830 --> 00:44:49,710 +library, for example we have scroll paneIt means + +714 +00:44:49,710 --> 00:44:52,590 +you have to add to any scroll shape, create an + +715 +00:44:52,590 --> 00:44:55,010 +object of the type of scroll pane and give it the + +716 +00:44:55,010 --> 00:44:59,350 +shape you want. You add the scroll to it. This is + +717 +00:44:59,350 --> 00:45:02,470 +instead of going to every class and extend it to + +718 +00:45:02,470 --> 00:45:05,650 +add a scroll to the specific shape. This is also + +719 +00:45:05,650 --> 00:45:08,890 +an application for the border, for the decorator + +720 +00:45:08,890 --> 00:45:14,260 +pattern.Okay guys, there are two ways to add new + +721 +00:45:14,260 --> 00:45:17,800 +features, either subclassing or decorator The + +722 +00:45:17,800 --> 00:45:21,620 +original is always to use subclassing, because I + +723 +00:45:21,620 --> 00:45:24,730 +don't need to write what's already thereBut if the + +724 +00:45:24,730 --> 00:45:27,990 +result of using subclassing is a lot of classes, + +725 +00:45:28,070 --> 00:45:30,570 +like the examples we saw earlier, I prefer to use + +726 +00:45:30,570 --> 00:45:33,150 +the decorator which is a class that encloses + +727 +00:45:33,150 --> 00:45:35,570 +another class to add additional features to it. + +728 +00:45:35,770 --> 00:45:38,250 +Like when we made a circle and enclosed it with a + +729 +00:45:38,250 --> 00:45:41,370 +border, or a rectangle and enclosed it with a + +730 +00:45:41,370 --> 00:45:44,230 +border as well. I have ten shapes and I make one + +731 +00:45:44,230 --> 00:45:46,130 +class to add the feature, instead of having to + +732 +00:45:46,130 --> 00:45:49,370 +make ten classes for ten shapes, and this is the + +733 +00:45:49,370 --> 00:45:52,760 +idea of the decorator pattern.We took an example + +734 +00:45:52,760 --> 00:45:54,100 +today to clarify the decorator. In the next + +735 +00:45:54,100 --> 00:45:57,420 +lecture, we will read what is in the slides, see + +736 +00:45:57,420 --> 00:46:00,140 +the UML diagram of the decorator and see another + +737 +00:46:00,140 --> 00:46:01,580 +example, God willing, and God bless you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/UqimOKHsJGg.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/UqimOKHsJGg.srt new file mode 100644 index 0000000000000000000000000000000000000000..9f940fabda68b736e3c91c5c4c950e19ee6c2da7 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/UqimOKHsJGg.srt @@ -0,0 +1,2278 @@ +1 +00:00:05,350 --> 00:00:08,710 +Good morning everyone, peace be upon you. Today, + +2 +00:00:08,830 --> 00:00:11,030 +God willing, we will continue with the topic of + +3 +00:00:11,030 --> 00:00:14,110 +the factory method design pattern. In the previous + +4 +00:00:14,110 --> 00:00:16,650 +lecture, we started talking about the factory + +5 +00:00:16,650 --> 00:00:19,290 +method. In short, the factory method is a design + +6 +00:00:19,290 --> 00:00:23,550 +pattern that enables the superclass to rely on the + +7 +00:00:23,550 --> 00:00:26,110 +subclasses to work on a part of the code that it + +8 +00:00:26,110 --> 00:00:29,210 +does not know what it is. What does this mean? It + +9 +00:00:29,210 --> 00:00:33,730 +means that sometimes I have code or a certain + +10 +00:00:33,730 --> 00:00:35,950 +function, a large part of it is common between + +11 +00:00:35,950 --> 00:00:37,930 +subclasses and there is a small part that is + +12 +00:00:37,930 --> 00:00:39,830 +different. Like what is a small part that is + +13 +00:00:39,830 --> 00:00:41,970 +different? It means that the object that I want to + +14 +00:00:41,970 --> 00:00:44,290 +create is different from subclass to subclass, but + +15 +00:00:44,290 --> 00:00:48,830 +the rest of the steps are constant. Because of + +16 +00:00:48,830 --> 00:00:50,930 +this difference, I could not put the code in the + +17 +00:00:50,930 --> 00:00:54,850 +superclass. To solve this problem, we took the + +18 +00:00:54,850 --> 00:00:58,210 +code and put it in the superclass, but the + +19 +00:00:58,210 --> 00:01:02,320 +different parts We imported it to the subclass by + +20 +00:01:02,320 --> 00:01:06,320 +using abstract method We put the code in the + +21 +00:01:06,320 --> 00:01:07,940 +subclass, and wherever there is a different part, + +22 +00:01:08,220 --> 00:01:10,670 +we put it in its place I came up with a method, + +23 +00:01:11,090 --> 00:01:14,490 +and this method was implemented in the subclass. + +24 +00:01:14,830 --> 00:01:18,570 +We saw this in the example we worked on in the + +25 +00:01:18,570 --> 00:01:23,370 +social network connectors and posters. How each + +26 +00:01:23,370 --> 00:01:25,690 +subclass makes a different connector, but the rest + +27 +00:01:25,690 --> 00:01:28,090 +of the steps are constant, so we created a create + +28 +00:01:28,090 --> 00:01:31,530 +connector that the subclass implements. In the + +29 +00:01:31,530 --> 00:01:35,590 +second example, I want to create a new maze. I want + +30 +00:01:35,590 --> 00:01:37,970 +to change the content, but the order of the maze + +31 +00:01:37,970 --> 00:01:40,550 +and its components should be the same. So the + +32 +00:01:40,550 --> 00:01:42,630 +method createMaze in the superclass remained the + +33 +00:01:42,630 --> 00:01:45,590 +same. But when it comes to createRoom and + +34 +00:01:45,590 --> 00:01:48,730 +createWall, those that create the room and the + +35 +00:01:48,730 --> 00:01:51,850 +wall, I made them methods, so that the superclass + +36 +00:01:51,850 --> 00:01:53,670 +can override them and change the type of object + +37 +00:01:53,670 --> 00:01:57,150 +that is created in them. Now let's look at another + +38 +00:01:57,150 --> 00:02:00,770 +example. How does the factory method make it easier + +39 +00:02:00,770 --> 00:02:05,070 +for me to create the user interface in the + +40 +00:02:05,070 --> 00:02:07,950 +applications? Now, guys, let's look at this + +41 +00:02:07,950 --> 00:02:10,630 +example. If I support a program that is related to + +42 +00:02:10,630 --> 00:02:16,010 +HR, or a program for employees, okay? Now, the + +43 +00:02:16,010 --> 00:02:19,750 +employee, since he has multiple data, we made a + +44 +00:02:19,750 --> 00:02:21,090 +class for him to be represented. For example, I + +45 +00:02:21,090 --> 00:02:23,590 +made a class here, employee, represent the basic + +46 +00:02:23,590 --> 00:02:27,520 +data of the employee. For example, Name, ID, + +47 +00:02:27,760 --> 00:02:30,960 +Address and Job Title And I made this class + +48 +00:02:30,960 --> 00:02:34,820 +abstract I don't want to create an object from an + +49 +00:02:34,820 --> 00:02:37,820 +employee I made it just to collect the shared + +50 +00:02:37,820 --> 00:02:42,540 +parts From the employee, I made subclasses I have + +51 +00:02:42,540 --> 00:02:45,700 +a full-time employee, this is an extended employee + +52 +00:02:45,700 --> 00:02:48,680 +And I added a new attribute Basic salary, level + +53 +00:02:48,680 --> 00:02:52,940 +and has insurance I also have a part-time employee + +54 +00:02:54,100 --> 00:02:56,320 +Extend Employee and add new attributes such as + +55 +00:02:56,320 --> 00:03:02,740 +number of hours and hour rate Now, I have the + +56 +00:03:02,740 --> 00:03:08,680 +objects I have a class called Employee + +57 +00:03:08,680 --> 00:03:13,600 +and it consists of full + +58 +00:03:13,600 --> 00:03:18,160 +-time employee class and part-time employee class + +59 +00:03:18,160 --> 00:03:22,950 +FTE and PTE Ok, now you want to create a program, + +60 +00:03:23,090 --> 00:03:25,170 +for sure you want to create input models, you want + +61 +00:03:25,170 --> 00:03:27,910 +to create an input model, a web page or a desktop + +62 +00:03:27,910 --> 00:03:31,850 +or a mobile screen, to create an employee, you + +63 +00:03:31,850 --> 00:03:34,770 +want to input data to a new employee, for sure how + +64 +00:03:34,770 --> 00:03:39,110 +many screens do you want to have? Two screens, one + +65 +00:03:39,110 --> 00:03:41,770 +for full-time and one for part-time, so you want + +66 +00:03:41,770 --> 00:03:45,410 +to have a screen for full-time employees, how does + +67 +00:03:45,410 --> 00:03:50,070 +it look like? It will be for example the name, ID, + +68 +00:03:51,870 --> 00:03:54,350 +Job Title, + +69 +00:03:56,550 --> 00:04:01,090 +Address, + +70 +00:04:04,410 --> 00:04:08,210 +Insurance, + +71 +00:04:10,730 --> 00:04:16,450 +Salary, etc and then at the end there is a button + +72 +00:04:16,450 --> 00:04:22,130 +submit or save which will actually read what the + +73 +00:04:22,130 --> 00:04:24,770 +user has entered and for example, create an object + +74 +00:04:24,770 --> 00:04:28,590 +from what? the data is still scattered, of course, + +75 +00:04:28,650 --> 00:04:30,970 +I want to collect them in an object, right or not? + +76 +00:04:31,650 --> 00:04:33,690 +when I press the save button, it will create an + +77 +00:04:33,690 --> 00:04:37,130 +object from full-time employee and read the data + +78 +00:04:37,130 --> 00:04:39,050 +from the screen and fill it in the object through + +79 +00:04:39,050 --> 00:04:41,570 +the setter methods okay, now I have an object, I + +80 +00:04:41,570 --> 00:04:43,090 +store it in an array and then I store it in the + +81 +00:04:43,090 --> 00:04:46,930 +database and so on okay, with the same mechanism, + +82 +00:04:47,650 --> 00:04:50,830 +I want to have another screen for the part-time + +83 +00:04:50,830 --> 00:04:54,190 +employee. So the first part of the second screen + +84 +00:04:54,190 --> 00:04:59,790 +is the same as this part, which is the name and + +85 +00:04:59,790 --> 00:05:04,910 +the ID and so on. So this whole part should repeat + +86 +00:05:04,910 --> 00:05:11,390 +itself here, right? Then the lower part should be + +87 +00:05:11,390 --> 00:05:12,970 +different, which is the number of hours. + +88 +00:05:15,910 --> 00:05:17,770 +This is the weight and the hour rate. + +89 +00:05:21,970 --> 00:05:28,090 +Ok? And then comes the safe button as well. This + +90 +00:05:28,090 --> 00:05:35,070 +does not change. The part here is different. Right + +91 +00:05:35,070 --> 00:05:38,550 +or wrong? The part here is one, but there is + +92 +00:05:38,550 --> 00:05:41,090 +another different thing as well. The action that + +93 +00:05:41,090 --> 00:05:43,520 +happens when you press the button. Right or wrong? + +94 +00:05:43,580 --> 00:05:45,300 +They are different. This one should create a full + +95 +00:05:45,300 --> 00:05:47,300 +-time employee object and fill it in. This one + +96 +00:05:47,300 --> 00:05:48,620 +should create a part-time employee object. So + +97 +00:05:48,620 --> 00:05:52,360 +there are two different parts. The front part and + +98 +00:05:52,360 --> 00:05:53,960 +the code that should be executed when pressed on + +99 +00:05:53,960 --> 00:06:01,060 +the button. Now, this design or work has a + +100 +00:06:01,060 --> 00:06:05,520 +problem. What is it? Repeat. Repeat. Okay? This + +101 +00:06:05,520 --> 00:06:08,280 +whole part is repeated. This means that if I want + +102 +00:06:08,280 --> 00:06:10,380 +to create a new employee, for example, a contract + +103 +00:06:10,380 --> 00:06:12,740 +employee, What do you need to do for the steps? Of + +104 +00:06:12,740 --> 00:06:14,260 +course you need to create a class that represents + +105 +00:06:14,260 --> 00:06:17,300 +the object, and of course you need to create a + +106 +00:06:17,300 --> 00:06:20,300 +screen or another class where you put the code of + +107 +00:06:20,300 --> 00:06:22,720 +the graphical user interface, where you repeat all + +108 +00:06:22,720 --> 00:06:27,420 +the code that creates this part, right? And then + +109 +00:06:27,420 --> 00:06:28,880 +you put the different part, which is the new + +110 +00:06:28,880 --> 00:06:31,600 +attributes of the new object, and you put a + +111 +00:06:31,600 --> 00:06:35,390 +different code where? So there is a big repetition, + +112 +00:06:35,690 --> 00:06:37,870 +of course this is a bad repetition, you have to + +113 +00:06:37,870 --> 00:06:41,950 +copy the code again on every new screen you want + +114 +00:06:41,950 --> 00:06:44,790 +to do it, then if you want to add a new attribute + +115 +00:06:44,790 --> 00:06:51,650 +to the employee, you have to modify them all, you + +116 +00:06:51,650 --> 00:06:52,550 +have to change colors + +117 +00:06:55,280 --> 00:06:59,180 +The type of brain, instead of being a drop list or + +118 +00:06:59,180 --> 00:07:02,540 +combo box, has to be modified, and this is the + +119 +00:07:02,540 --> 00:07:05,620 +result of repetition. Next, we will see how to use + +120 +00:07:05,620 --> 00:07:11,180 +the factor method to improve this design. Since we + +121 +00:07:11,180 --> 00:07:15,100 +have always learned that there is repetition, The + +122 +00:07:15,100 --> 00:07:17,980 +repeated part or the common part is put in the + +123 +00:07:17,980 --> 00:07:20,380 +parent Right or wrong? So the code that creates + +124 +00:07:20,380 --> 00:07:22,320 +these parts is put in the parent But the problem + +125 +00:07:22,320 --> 00:07:24,660 +that I face is the same problem that we talked + +126 +00:07:24,660 --> 00:07:28,840 +about That not all the code is common There is a + +127 +00:07:28,840 --> 00:07:32,540 +common code and there are different parts How can + +128 +00:07:32,540 --> 00:07:35,320 +we solve this problem? How? All the code cannot be + +129 +00:07:35,320 --> 00:07:37,300 +taken to the parent But what I see is that they + +130 +00:07:37,300 --> 00:07:39,700 +use the factory method That the common part is put + +131 +00:07:39,700 --> 00:07:42,220 +in the parent and the different one is allocated to + +132 +00:07:42,220 --> 00:07:45,240 +whom? to the subclass so how do we solve this + +133 +00:07:45,240 --> 00:07:48,900 +problem? we need to do the following did you find + +134 +00:07:48,900 --> 00:07:52,000 +it? I have a class called full-time employee and a + +135 +00:07:52,000 --> 00:07:54,960 +class called part-time employee this is called + +136 +00:07:54,960 --> 00:08:00,740 +form full-time employee form and this is part-time + +137 +00:08:00,740 --> 00:08:04,380 +employee form it has all this code which is drawn + +138 +00:08:04,380 --> 00:08:07,120 +this way because what I want to do is I want to + +139 +00:08:07,120 --> 00:08:10,000 +make a class here called employee + +140 +00:08:12,940 --> 00:08:13,260 +All right, + +141 +00:08:23,640 --> 00:08:25,740 +guys? What do I want to put in the data that says + +142 +00:08:25,740 --> 00:08:30,090 +build4? All the code. The one who creates this, I + +143 +00:08:30,090 --> 00:08:32,510 +will take it from here and put it where? I will + +144 +00:08:32,510 --> 00:08:34,310 +put it at the end. So here I will tell him, for + +145 +00:08:34,310 --> 00:08:37,450 +example, inside this method, imagine what's in it, + +146 +00:08:37,770 --> 00:08:41,530 +create the code of the name, and the code of the + +147 +00:08:41,530 --> 00:08:45,810 +ID, and the code of the job title, okay? And the + +148 +00:08:45,810 --> 00:08:49,710 +address. Okay, did you find that we have a + +149 +00:08:49,710 --> 00:08:49,890 +different part? + +150 +00:08:53,310 --> 00:08:56,590 +Right? Which is this one. She doesn't know what to + +151 +00:08:56,590 --> 00:08:59,070 +do. Right or not? So, she will do in return of + +152 +00:08:59,070 --> 00:09:06,850 +this, create specific GUI for example. This is a + +153 +00:09:06,850 --> 00:09:08,630 +method, but I will call it. Yes. What do I want to + +154 +00:09:08,630 --> 00:09:10,930 +put this? Here abstract. I will do this here, + +155 +00:09:11,090 --> 00:09:16,110 +create specific GUI. + +156 +00:09:19,390 --> 00:09:22,270 +This one is abstract, there is no code in it. Who + +157 +00:09:22,270 --> 00:09:25,770 +is going to implement it? The subclasses. But this + +158 +00:09:25,770 --> 00:09:29,410 +build form is going to claim this one, right? + +159 +00:09:30,010 --> 00:09:34,150 +Okay, and then I put the code of the save button. + +160 +00:09:35,510 --> 00:09:38,350 +Because when the save button is pressed, It's + +161 +00:09:38,350 --> 00:09:41,210 +supposed to execute a different code. So when I + +162 +00:09:41,210 --> 00:09:42,830 +click on the save button, it will ask for another + +163 +00:09:42,830 --> 00:09:48,290 +instruction called specific + +164 +00:09:48,290 --> 00:09:54,590 +action or do save, for example. And this one is + +165 +00:09:54,590 --> 00:09:57,450 +also going to do an abstract instruction called do + +166 +00:09:57,450 --> 00:10:02,590 +save. So now the superclass has how many abstract + +167 +00:10:02,590 --> 00:10:06,430 +data? Two. Why two? Why not one? Because I have + +168 +00:10:06,430 --> 00:10:09,150 +two different characters in two different places. + +169 +00:10:10,250 --> 00:10:12,950 +And really this is to work. You put the common + +170 +00:10:12,950 --> 00:10:14,070 +factor and every time you find something + +171 +00:10:14,070 --> 00:10:18,030 +different, you turn the client into the subclass. + +172 +00:10:19,240 --> 00:10:24,220 +Now, this class extends to this one, right? And + +173 +00:10:24,220 --> 00:10:26,180 +this one extends to this one. It will be required + +174 +00:10:26,180 --> 00:10:30,440 +to implement for whom? For these two methods. In + +175 +00:10:30,440 --> 00:10:33,020 +this method, it puts the code that is specific to + +176 +00:10:33,020 --> 00:10:36,400 +whom. It designs the design only for this part. + +177 +00:10:37,500 --> 00:10:40,160 +Okay? And in the save, it puts the code that will + +178 +00:10:40,160 --> 00:10:43,220 +be executed when I press the save button. When I + +179 +00:10:43,220 --> 00:10:44,680 +press the save button, here it will create an + +180 +00:10:44,680 --> 00:10:47,960 +object from part-time employee. When I click on + +181 +00:10:47,960 --> 00:10:49,260 +the save button here, it will create an object + +182 +00:10:49,260 --> 00:10:52,280 +from the full-time employee So when I click on + +183 +00:10:52,280 --> 00:10:55,180 +save, it will use the full-time and this one will + +184 +00:10:55,180 --> 00:10:58,580 +use the part-time Just like when we have a + +185 +00:10:58,580 --> 00:11:01,040 +Facebook poster, it creates an object from the + +186 +00:11:01,040 --> 00:11:08,000 +Facebook connector And so on Ok, let's see this + +187 +00:11:08,000 --> 00:11:12,400 +drawing as a code This idea, let's look at it as a + +188 +00:11:12,400 --> 00:11:12,560 +code + +189 +00:11:18,630 --> 00:11:22,430 +Now, of course, I know that the details of the GUI + +190 +00:11:22,430 --> 00:11:23,910 +are not available to you or you did not take it, + +191 +00:11:23,970 --> 00:11:28,750 +but the idea should + +223 +00:13:16,820 --> 00:13:19,900 +implement it? The subclass. What is this code? + +224 +00:13:20,240 --> 00:13:23,940 +What is written here? The save button. Okay? And + +225 +00:13:23,940 --> 00:13:25,900 +this is the action when I press the save button. + +226 +00:13:27,800 --> 00:13:29,620 +Because we said there is a problem when I press + +227 +00:13:29,620 --> 00:13:33,290 +the save button. It differs from one object to + +228 +00:13:33,290 --> 00:13:37,690 +another but in the end, any object is an employee + +229 +00:13:37,690 --> 00:13:42,670 +instead of saying new I don't know what new is + +230 +00:13:42,670 --> 00:13:44,730 +because I'm in the full or part field so I just + +231 +00:13:44,730 --> 00:13:48,950 +say create employee same as we did create social + +232 +00:13:48,950 --> 00:13:52,950 +network connector same as we did create maze here + +233 +00:13:52,950 --> 00:13:55,190 +I say create employee let the subclass define what + +234 +00:13:55,190 --> 00:13:57,390 +kind of object it is the employee returns what + +235 +00:13:57,390 --> 00:14:00,210 +does it fill it with? The common things that I + +236 +00:14:00,210 --> 00:14:05,370 +have here, name, ID and job title. Okay, it's + +237 +00:14:05,370 --> 00:14:08,530 +done. This is the rest of the GUI code. All this + +238 +00:14:08,530 --> 00:14:13,730 +code is in the constructor. So, when the + +239 +00:14:13,730 --> 00:14:15,750 +constructor is called, it executes all this code. + +240 +00:14:17,070 --> 00:14:19,430 +Of course, I can't create an object from an + +241 +00:14:19,430 --> 00:14:22,630 +employee form. How will the constructor call? I + +242 +00:14:22,630 --> 00:14:24,670 +will create an object from the subclass, and it is + +243 +00:14:24,670 --> 00:14:27,670 +known that the constructor of the subclass by the + +244 +00:14:27,670 --> 00:14:33,510 +constructor of the parent, okay? Okay, look down + +245 +00:14:33,510 --> 00:14:36,010 +here, you will find two abstract methods, what are + +246 +00:14:36,010 --> 00:14:39,030 +their names? CreateSubattributeUi and + +247 +00:14:39,030 --> 00:14:43,730 +CreateEmployee Now, I came here, look how simple + +248 +00:14:43,730 --> 00:14:46,290 +it is, I want to make a model for the full-time + +249 +00:14:46,290 --> 00:14:48,790 +employee I say, to make a simple model for the + +250 +00:14:48,790 --> 00:14:51,710 +full-time employee go and make a class called Full + +251 +00:14:51,710 --> 00:14:56,910 +-timeEmployeeForm and make it extend to where? to + +252 +00:14:56,910 --> 00:15:01,210 +the employee form it will ask you to implement two + +253 +00:15:01,210 --> 00:15:04,590 +methods create sub-attributes GUI and create + +254 +00:15:04,590 --> 00:15:09,810 +employee and here I just put the code again for + +255 +00:15:09,810 --> 00:15:12,250 +the GUI of the full-time employee for example, you + +256 +00:15:12,250 --> 00:15:17,650 +told me to create one for the salary and return it + +257 +00:15:17,650 --> 00:15:21,130 +to me I return it at the end of my panel so I just + +258 +00:15:21,130 --> 00:15:25,790 +created the code for the salary All of this says + +259 +00:15:25,790 --> 00:15:29,790 +inside create sub attribute UI Because I have + +260 +00:15:29,790 --> 00:15:31,770 +another method here called create employee When + +261 +00:15:31,770 --> 00:15:34,710 +will it be used? When it is pressed on the save, + +262 +00:15:35,170 --> 00:15:37,070 +okay? It tells you, you don't have a relationship, + +263 +00:15:37,150 --> 00:15:38,290 +what will happen when it is pressed on the save? + +264 +00:15:38,350 --> 00:15:41,630 +You are your job, what do you do? Yes, you create + +265 +00:15:41,630 --> 00:15:44,190 +the object and return it Of course, I create the + +266 +00:15:44,190 --> 00:15:46,530 +object and go to the object and tell it set basic + +267 +00:15:46,530 --> 00:15:48,950 +salary That is, you have to fill in the + +268 +00:15:48,950 --> 00:15:52,550 +information that you have because you entered it, + +269 +00:15:52,710 --> 00:15:56,290 +okay? And you tell it to return Employee, meaning + +270 +00:15:56,290 --> 00:15:57,950 +that you only created the different parts + +271 +00:15:57,950 --> 00:16:01,350 +everything else has nothing to do with it okay? + +272 +00:16:02,190 --> 00:16:06,550 +now look at this class this class is the part-time + +273 +00:16:06,550 --> 00:16:08,050 +employee the part-time employee has two rights + +274 +00:16:08,050 --> 00:16:10,610 +again which are what? hour rate and number of + +275 +00:16:10,610 --> 00:16:15,030 +hours okay? I also created extend employee for and + +276 +00:16:15,030 --> 00:16:17,070 +asked me to create implement for whom? to create + +277 +00:16:17,070 --> 00:16:20,490 +sub-attributes and create employee create sub + +278 +00:16:20,490 --> 00:16:22,190 +-attributes, you see it created only the GUI + +279 +00:16:22,190 --> 00:16:25,770 +specific to whom? in the hour rate and number of + +280 +00:16:25,770 --> 00:16:28,510 +hours, add them to the screen, and return them to + +281 +00:16:28,510 --> 00:16:30,890 +me. This is the code that adds these two brackets. + +282 +00:16:32,810 --> 00:16:35,110 +Okay? And below here, createEmployee, this is what + +283 +00:16:35,110 --> 00:16:38,930 +is pressed when you press the save button. It will + +284 +00:16:38,930 --> 00:16:42,570 +create a part-time employee, fill in the hour rate + +285 +00:16:42,570 --> 00:16:47,730 +and number of hours, and return it. Okay? Now, + +286 +00:16:47,850 --> 00:16:51,560 +this is the test UI used. If I want to show a + +287 +00:16:51,560 --> 00:16:54,540 +brain to imagine a part-time employee, what do I + +288 +00:16:54,540 --> 00:16:59,240 +do? I extract an object from whom? From a part + +289 +00:16:59,240 --> 00:17:00,860 +-time employee. The part-time employee, of course, + +290 +00:17:01,080 --> 00:17:02,760 +as soon as you extract the object, will learn that + +291 +00:17:02,760 --> 00:17:04,220 +you have to extract the constructor, right? Is + +292 +00:17:04,220 --> 00:17:06,720 +there a constructor here? Yes, it's empty. Yes, + +293 +00:17:06,780 --> 00:17:08,720 +it's empty, but it's known that the constructor of + +294 +00:17:08,720 --> 00:17:11,640 +the subclass will extract the constructor of the + +295 +00:17:11,640 --> 00:17:14,400 +superclass. It will immediately execute what? This + +296 +00:17:14,400 --> 00:17:23,420 +code.Employee4 will run YGH to createSub + +297 +00:17:23,420 --> 00:17:26,560 +-attributes. What does it create? The subclass. It + +298 +00:17:26,560 --> 00:17:29,060 +fills what's available. And then it turns on the + +299 +00:17:29,060 --> 00:17:31,160 +save button. When I click on the save button, it + +300 +00:17:31,160 --> 00:17:32,740 +creates an employee. It creates what's available + +301 +00:17:32,740 --> 00:17:34,840 +in the subclass. Which generates a part-time + +302 +00:17:34,840 --> 00:17:38,300 +employee. Let's see. For example, this is a part + +303 +00:17:38,300 --> 00:17:40,520 +-time employee. I made a run for it. Of course, + +304 +00:17:40,660 --> 00:17:45,260 +the initial GUI is available. But the idea is in + +305 +00:17:45,260 --> 00:17:49,800 +the content. For example, this is a job title. Our + +306 +00:17:49,800 --> 00:17:54,150 +rate. Name, ID, Job title, these are the + +307 +00:17:54,150 --> 00:17:57,750 +participants, okay? Then the number of hours and + +308 +00:17:57,750 --> 00:17:59,790 +hour rate, okay? + +309 +00:18:02,990 --> 00:18:06,510 +One, two, three, these two, number of hours, hour + +310 +00:18:06,510 --> 00:18:09,370 +rate, what do they have? They are different. Now, + +311 +00:18:09,430 --> 00:18:12,330 +if I came to the GUI too and changed it, I called + +312 +00:18:12,330 --> 00:18:16,370 +this full-time employee, + +313 +00:18:19,450 --> 00:18:24,390 +I put the salary but it will run and you will see + +314 +00:18:24,390 --> 00:18:28,610 +here this is the name, id, job title and this is + +315 +00:18:28,610 --> 00:18:32,390 +the salary and when I click on save it should read + +316 +00:18:32,390 --> 00:18:34,190 +what is written here and create an object from + +317 +00:18:34,190 --> 00:18:38,310 +full-time employee if you want to create a new + +318 +00:18:38,310 --> 00:18:41,730 +employee what do you have to do? you have to do + +319 +00:18:41,730 --> 00:18:44,950 +two things first thing you have to do is class to + +320 +00:18:44,950 --> 00:18:47,710 +method this one for example here is contract based + +321 +00:18:47,710 --> 00:18:51,470 +employee What is the attribute of his job? + +322 +00:18:52,870 --> 00:18:56,670 +startDate and endDate and then it creates a new + +323 +00:18:56,670 --> 00:18:59,990 +class contractBasedEmployeeFor which is also + +324 +00:18:59,990 --> 00:19:03,010 +called extendEmployeeFor and it puts a new value + +325 +00:19:03,010 --> 00:19:06,190 +in it which is called contractDuration which is + +326 +00:19:06,190 --> 00:19:11,750 +the length of the contract and createEmployee + +327 +00:19:11,750 --> 00:19:15,230 +which is an object from contractBasedEmployee and + +328 +00:19:15,230 --> 00:19:18,210 +in testUI it puts the name of the class + +329 +00:19:32,170 --> 00:19:35,830 +again ok and of course it will add to the new + +330 +00:19:35,830 --> 00:19:40,830 +contract here a duration ok so the important idea + +331 +00:19:42,280 --> 00:19:47,280 +You see that now the program is 100% extendable I + +332 +00:19:47,280 --> 00:19:50,780 +don't need to edit any line of code I don't need + +333 +00:19:50,780 --> 00:19:54,880 +to copy paste or repeat any line of code All I + +334 +00:19:54,880 --> 00:19:59,060 +need to do is create new classes Extend and add + +335 +00:19:59,060 --> 00:20:03,540 +the new parts that belong to it That's how editing + +336 +00:20:03,540 --> 00:20:07,560 +becomes much easier than before We also did this + +337 +00:20:07,560 --> 00:20:11,560 +using the factory method Now + +338 +00:20:23,760 --> 00:20:25,880 +This is the same example that I explained to you + +339 +00:20:25,880 --> 00:20:28,240 +in the previous lecture on Java, which is the + +340 +00:20:28,240 --> 00:20:30,420 +social network poster and the social network + +341 +00:20:30,420 --> 00:20:33,460 +connector When I got this example from the + +342 +00:20:33,460 --> 00:20:36,760 +internet, it is basically made of PHP The example + +343 +00:20:36,760 --> 00:20:39,760 +itself is PHP, but when I explained it, I + +344 +00:20:39,760 --> 00:20:44,560 +explained Java Of course, this code exists in PHP + +345 +00:20:45,420 --> 00:20:47,360 +so that you can see that object-oriented concepts + +346 +00:20:47,360 --> 00:20:51,880 +are present in all languages. For example, if you + +347 +00:20:51,880 --> 00:20:54,020 +remember the example from last time, I have + +348 +00:20:54,020 --> 00:20:57,380 +connectors, for example, Facebook connector, + +349 +00:20:57,600 --> 00:20:59,680 +Twitter, LinkedIn connectors, and then I have + +350 +00:20:59,680 --> 00:21:02,620 +posters. The poster uses the connector from inside + +351 +00:21:02,620 --> 00:21:05,320 +to connect to the social network and then make a + +352 +00:21:05,320 --> 00:21:08,440 +post and store it in the database and so on. For + +353 +00:21:08,440 --> 00:21:12,280 +example, if I want to make a post, the steps of + +354 +00:21:12,280 --> 00:21:15,230 +making the post are common, So I'm going to put it + +355 +00:21:15,230 --> 00:21:17,410 +in the superclass, it's called social network + +356 +00:21:17,410 --> 00:21:23,270 +poster And this is the method post Because the + +357 +00:21:23,270 --> 00:21:25,690 +method post wants to do four steps in it The first + +358 +00:21:25,690 --> 00:21:28,850 +step is to create the connector Because it doesn't + +359 +00:21:28,850 --> 00:21:30,290 +know what connector it creates Because the + +360 +00:21:30,290 --> 00:21:32,310 +connector differs from subclass to subclass, + +361 +00:21:32,370 --> 00:21:34,410 +right? So I'm going to create an abstract method + +362 +00:21:34,410 --> 00:21:37,510 +Abstract public function called + +363 +00:21:37,510 --> 00:21:40,470 +getSocialNetworkConnector, for example What does + +364 +00:21:40,470 --> 00:21:46,450 +it return? In the php, I go back to the social + +365 +00:21:46,450 --> 00:21:49,790 +network connector, and I get the social network + +366 +00:21:49,790 --> 00:21:55,050 +from the post, and I get the social network from + +367 +00:21:55,050 --> 00:21:57,930 +the post, and I get the social network from the + +368 +00:21:57,930 --> 00:21:58,270 +post, and I get the social network from the post, + +369 +00:21:58,270 --> 00:21:59,830 +and I get the social network from the post, and I + +370 +00:21:59,830 --> 00:22:00,830 +get the social network from the post, and I get + +371 +00:22:00,830 --> 00:22:02,770 +the social network from the post, Logout. These + +372 +00:22:02,770 --> 00:22:04,230 +are fixed steps that must be followed. Everyone + +373 +00:22:04,230 --> 00:22:06,790 +must follow them. What differs from this step is + +374 +00:22:06,790 --> 00:22:09,630 +that I entrust it to the subclasses through the + +375 +00:22:09,630 --> 00:22:13,010 +abstract method. Because these subclasses, for + +376 +00:22:13,010 --> 00:22:15,950 +example, this Facebook poster is made to extend to + +377 +00:22:15,950 --> 00:22:20,010 +a social network poster, okay? It is required that + +378 +00:22:20,010 --> 00:22:22,930 +it only implement to whom? To get social network, + +379 +00:22:23,210 --> 00:22:25,070 +which determines what kind of connector it wants + +380 +00:22:25,070 --> 00:22:29,010 +to use. Facebook connector. And this, for example, + +381 +00:22:30,640 --> 00:22:34,600 +Linked-in poster, get social network, it should + +382 +00:22:34,600 --> 00:22:38,880 +also have a linked-in connector. Okay? So it's the + +383 +00:22:38,880 --> 00:22:41,860 +same example. I got it on the internet, it's in + +384 +00:22:41,860 --> 00:22:44,480 +the PHP, but when I explained it to you, I + +385 +00:22:44,480 --> 00:22:48,720 +explained it in Java. Okay, guys? Okay, this way + +386 +00:22:48,720 --> 00:22:54,340 +we have completed the method factor. Before we + +387 +00:22:54,340 --> 00:22:57,420 +enter the new pattern design, there is a duty that + +388 +00:22:57,420 --> 00:22:59,240 +we have to take. Okay, guys? + +389 +00:23:12,620 --> 00:23:17,440 +Okay, the duty required was as follows Do you have + +390 +00:23:17,440 --> 00:23:20,980 +a duty, did you find it? No, one, these are two + +391 +00:23:20,980 --> 00:23:24,280 +questions in one duty Okay, that's it, if you + +392 +00:23:24,280 --> 00:23:25,440 +understood the first one, solve the second one, + +393 +00:23:26,080 --> 00:23:29,440 +okay? Same way Okay, did you find it? They tell + +394 +00:23:29,440 --> 00:23:33,120 +you that you make a program, for example, for + +395 +00:23:33,120 --> 00:23:35,860 +licenses or the ministry, for example, okay? They + +396 +00:23:35,860 --> 00:23:40,550 +have data input models Which is called Citizens + +397 +00:23:40,550 --> 00:23:42,970 +Requests For example, there is a request to add a + +398 +00:23:42,970 --> 00:23:45,070 +child, a request to prepare a passport, a request + +399 +00:23:45,070 --> 00:23:47,770 +to apply for travel, and each person has a common + +400 +00:23:47,770 --> 00:23:50,850 +data For example, here is a request to add a + +401 +00:23:50,850 --> 00:23:52,510 +child, the name of the applicant, the identity + +402 +00:23:52,510 --> 00:23:53,770 +number of the applicant, the title of the + +403 +00:23:53,770 --> 00:23:56,650 +applicant, and then the name of the child, date of + +404 +00:23:56,650 --> 00:23:58,670 +birth, and gender of the child, a request to renew + +405 +00:23:58,670 --> 00:24:01,030 +the passport, there is also the name of the + +406 +00:24:01,030 --> 00:24:03,470 +applicant, his identity number, his title, and + +407 +00:24:03,470 --> 00:24:05,050 +then the number of the passport and date of + +408 +00:24:05,050 --> 00:24:06,710 +completion, these are related to whom? The + +409 +00:24:06,710 --> 00:24:10,290 +passport Identification is the same thing Notice + +410 +00:24:10,290 --> 00:24:13,750 +in all applications You have to put the name of + +411 +00:24:13,750 --> 00:24:14,910 +the applicant, his or her ID number and his or her + +412 +00:24:14,910 --> 00:24:20,130 +address But there are different + +445 +00:26:24,320 --> 00:26:27,470 +present on the model. you can take it and change + +446 +00:26:27,470 --> 00:26:31,550 +it to make it like this or you can work on your + +447 +00:26:31,550 --> 00:26:35,030 +mobile on whatever you want the most important + +448 +00:26:35,030 --> 00:26:40,590 +thing is to apply the factory method how long does + +449 +00:26:40,590 --> 00:26:44,210 +it take for the old job? another 3 days to open + +450 +00:26:44,210 --> 00:26:49,550 +this job good right? but guys tomorrow as I said + +451 +00:26:49,550 --> 00:26:53,810 +surely in the exams there will be questions. It's + +452 +00:26:53,810 --> 00:26:56,270 +not the obligation itself, it's similar to it, if + +453 +00:26:56,270 --> 00:26:58,310 +you don't solve the problem in the exam, they will + +454 +00:26:58,310 --> 00:27:00,490 +give you zero in the obligation directly. Your + +455 +00:27:00,490 --> 00:27:02,750 +mark in the obligation, see I don't admit in the + +456 +00:27:02,750 --> 00:27:06,490 +obligation. Your mark in the obligation, I will + +457 +00:27:06,490 --> 00:27:09,830 +put it almost, it will be your mark in the exam. + +458 +00:27:10,800 --> 00:27:13,400 +It's obvious, because the questions in the exam + +459 +00:27:13,400 --> 00:27:16,060 +are the same as the questions in the assignment. In + +460 +00:27:16,060 --> 00:27:18,800 +the end, the questions in the exam are the same as + +461 +00:27:18,800 --> 00:27:21,020 +the questions in the assignment. So it's impossible + +462 +00:27:21,020 --> 00:27:24,520 +to give them 100%. Even if I give them 100%. You + +463 +00:27:24,520 --> 00:27:27,400 +didn't solve the question in the exam. Does it mean + +464 +00:27:27,400 --> 00:27:29,480 +that you solved it in the assignment? No, you + +465 +00:27:29,480 --> 00:27:32,380 +didn't solve it in the exam. So this assignment is + +466 +00:27:32,380 --> 00:27:35,560 +for you to practice. But in the end, you signed the + +467 +00:27:35,560 --> 00:27:37,710 +assignment. The same exam. + +468 +00:27:40,470 --> 00:27:46,150 +No, it's just that I open my homework, I see + +469 +00:27:46,150 --> 00:27:48,750 +random things, okay? I take my students and + +470 +00:27:48,750 --> 00:27:50,150 +sometimes they give me empty things like this. + +471 +00:27:51,170 --> 00:27:53,030 +Anyway, this homework is for you. You laugh at + +472 +00:27:53,030 --> 00:27:55,130 +yourself if you don't solve it, okay? Even the + +473 +00:27:55,130 --> 00:27:56,510 +exercises I give you, I don't give you homework + +474 +00:27:56,510 --> 00:27:58,230 +that I tell you to copy from the internet and + +475 +00:27:58,230 --> 00:28:00,350 +write it with your hand and I don't know what. No, + +476 +00:28:00,390 --> 00:28:04,270 +I give you questions. It's a whole process, and you + +477 +00:28:04,270 --> 00:28:06,030 +will face all of these in your life. For example, + +478 +00:28:06,030 --> 00:28:08,870 +you will create a program like this with screens. + +479 +00:28:09,610 --> 00:28:11,710 +Well, any program you will create tomorrow will + +480 +00:28:11,710 --> 00:28:13,590 +have screens, and there will also be shared things + +481 +00:28:13,590 --> 00:28:16,170 +and different things. So, this is the scenario you + +482 +00:28:16,170 --> 00:28:18,970 +face in your life. I personally work as a + +483 +00:28:18,970 --> 00:28:21,510 +developer, not as an academic. I find all these + +484 +00:28:21,510 --> 00:28:25,170 +things in my work. I mean, I give you ... what do + +485 +00:28:25,170 --> 00:28:29,330 +they call it? Butter? Yes, these things you will + +486 +00:28:29,330 --> 00:28:32,800 +face in your work in the market tomorrow. Okay + +487 +00:28:32,800 --> 00:28:35,280 +guys, let's start with a presentation on a new + +488 +00:28:35,280 --> 00:28:39,620 +design pattern called Singleton Design Pattern. + +489 +00:28:39,620 --> 00:28:41,980 +Okay, we're not going to do an implementation of + +490 +00:28:41,980 --> 00:28:44,300 +it, but we're going to present this lecture and + +491 +00:28:44,300 --> 00:28:46,560 +next time we'll start the implementation directly. + +492 +00:28:47,860 --> 00:28:50,840 +The single-tool pattern is necessary in the first + +493 +00:28:50,840 --> 00:28:52,800 +class of Design Patterns, which is the Creational + +494 +00:28:52,800 --> 00:28:56,100 +Design Pattern. All the design patterns that we + +495 +00:28:56,100 --> 00:28:58,300 +explained, the three of them, are related to the + +496 +00:28:58,300 --> 00:28:59,780 +construction of objects. But each one has a goal. + +497 +00:29:00,520 --> 00:29:02,700 +The factory collects the construction in one + +498 +00:29:02,700 --> 00:29:06,520 +class. The builder facilitates the construction of + +499 +00:29:06,520 --> 00:29:08,240 +the object, which the constructor takes many + +500 +00:29:08,240 --> 00:29:11,920 +parameters. The factory method allows the + +501 +00:29:11,920 --> 00:29:15,620 +subclasses to create the object. Okay? For those + +502 +00:29:15,620 --> 00:29:18,200 +who don't know and still have the common code in + +503 +00:29:18,200 --> 00:29:21,120 +the super, class. The fourth design pattern + +504 +00:29:21,120 --> 00:29:23,480 +related to creation is the singleton pattern. It + +505 +00:29:23,480 --> 00:29:26,300 +is one of the simplest design patterns and at the + +506 +00:29:26,300 --> 00:29:31,040 +same time important and widely used. In short, I + +507 +00:29:31,040 --> 00:29:32,900 +say singleton design pattern. It is a design + +508 +00:29:32,900 --> 00:29:36,960 +pattern that we use when we need to have a single + +509 +00:29:36,960 --> 00:29:39,860 +class. I want to create only one object in the + +510 +00:29:39,860 --> 00:29:42,360 +class. I want to use it in the entire application. + +511 +00:29:43,940 --> 00:29:48,400 +What does this mean? For example, sometimes you + +512 +00:29:48,400 --> 00:29:50,000 +create an application that has many screens, + +513 +00:29:51,060 --> 00:29:53,840 +whether it is a web page or a mobile application + +514 +00:29:53,840 --> 00:29:56,420 +that has screens, and from all the screens, you + +515 +00:29:56,420 --> 00:29:59,880 +need to connect to the database. This screen is + +516 +00:29:59,880 --> 00:30:03,280 +your model, you enter the data, you save it in the + +517 +00:30:03,280 --> 00:30:07,140 +database. The second screen is a view, it creates + +518 +00:30:07,140 --> 00:30:08,880 +a query on the database, it brings the data and + +519 +00:30:08,880 --> 00:30:12,330 +shows it to you. Okay? The third screen is also a + +520 +00:30:12,330 --> 00:30:14,910 +view, but it makes another table in the database. + +521 +00:30:15,170 --> 00:30:17,570 +That is, in fact, in each screen you need to make + +522 +00:30:17,570 --> 00:30:21,130 +a connect on the database and make a query. So + +523 +00:30:21,130 --> 00:30:24,950 +when you make a connect on the database, in each + +524 +00:30:24,950 --> 00:30:27,950 +screen, of course, the connection to the database + +525 +00:30:27,950 --> 00:30:31,430 +must be present in a class and a method. Okay? + +526 +00:30:32,010 --> 00:30:35,810 +Whenever I want to open a screen that needs to + +527 +00:30:35,810 --> 00:30:37,230 +connect to the database, I want to create the + +528 +00:30:37,230 --> 00:30:39,530 +object of this connection that needs to connect to + +529 +00:30:39,530 --> 00:30:42,660 +the database. Now this is a problem, why? Because + +530 +00:30:42,660 --> 00:30:45,680 +this object needs resources that it takes from the + +531 +00:30:45,680 --> 00:30:49,740 +memory and it needs time to work. So it's not a + +532 +00:30:49,740 --> 00:30:51,820 +good solution that whenever you want to connect to + +533 +00:30:51,820 --> 00:30:55,880 +the database, you need to create this connector. In + +534 +00:30:55,880 --> 00:30:58,040 +a situation like this, where I have 10 screens + +535 +00:30:58,040 --> 00:30:59,640 +that all interact with the database, I should + +536 +00:30:59,640 --> 00:31:04,680 +create one connector and use it anywhere. This is + +537 +00:31:04,680 --> 00:31:10,380 +one example. Another example, you make a game. In + +538 +00:31:10,380 --> 00:31:15,020 +the game, you need to handle textures, which are + +539 +00:31:15,020 --> 00:31:18,780 +drawn on shapes, you need to handle 3D objects, + +540 +00:31:19,200 --> 00:31:21,760 +you need to handle audio files for sound, pictures + +541 +00:31:21,760 --> 00:31:25,180 +and others. And these files that I downloaded, you + +542 +00:31:25,180 --> 00:31:29,460 +will use them throughout the game, level 1 and 2 + +543 +00:31:29,460 --> 00:31:34,820 +in design and so on. Does it make sense that every + +544 +00:31:34,820 --> 00:31:35,820 +time a student starts a new level, he should + +545 +00:31:35,820 --> 00:31:38,020 +download the same content over and over again? No, + +546 +00:31:38,060 --> 00:31:40,580 +he should download it and load it to one object + +547 +00:31:40,580 --> 00:31:44,200 +and use it everywhere in the application. Now, + +548 +00:31:44,260 --> 00:31:47,000 +from the bad practices that students or beginners + +549 +00:31:47,000 --> 00:31:54,450 +do, they do the following. I go to the first + +550 +00:31:54,450 --> 00:31:57,550 +screen, it needs a connection to the database, + +551 +00:31:58,130 --> 00:32:02,890 +okay? I go and create an object, DB connector + +552 +00:32:02,890 --> 00:32:10,550 +equals C equals new DB connector. + +553 +00:32:12,650 --> 00:32:18,470 +I create a new object and go to C and say query c + +554 +00:32:18,470 --> 00:32:23,930 +.insert database. It opens a new screen and I need + +555 +00:32:23,930 --> 00:32:27,510 +it to show from the database. I go to simple, this + +556 +00:32:27,510 --> 00:32:30,680 +is our knowledge, we do the U.New is free, right? + +557 +00:32:30,940 --> 00:32:34,240 +No. Here, I opened a new screen, I did what? New, + +558 +00:32:34,660 --> 00:32:36,360 +Connector, I connected it to the database and I + +559 +00:32:36,360 --> 00:32:39,280 +did a query again. In each screen, you have to do + +560 +00:32:39,280 --> 00:32:41,920 +a new, okay? But sometimes these screens don't + +561 +00:32:41,920 --> 00:32:45,800 +close, they stay closed. Okay? In the mobile, yes, + +562 +00:32:45,860 --> 00:32:49,300 +this remains in the back stack. Okay? Well, this + +563 +00:32:49,300 --> 00:32:51,340 +connector exists and this connector exists. This + +564 +00:32:51,340 --> 00:32:52,680 +takes from the memory and this takes from the + +565 +00:32:52,680 --> 00:32:54,600 +memory. Then, for example, in the mobile + +566 +00:32:54,600 --> 00:32:57,430 +specifically, you are with me. Battery. In the + +567 +00:32:57,430 --> 00:32:59,410 +battery, it should be efficient. The memory is + +568 +00:32:59,410 --> 00:33:01,770 +limited and the battery is limited. Right or + +569 +00:33:01,770 --> 00:33:03,770 +wrong? So in the memory, you take care of every + +570 +00:33:03,770 --> 00:33:06,770 +object you create, not like a desktop. Create + +571 +00:33:06,770 --> 00:33:11,730 +whatever you want. Okay? No. Here, one object + +572 +00:33:11,730 --> 00:33:16,950 +should be created and used everywhere. Okay? + +573 +00:33:17,090 --> 00:33:19,490 +Someone might say, I created it here. How can I + +574 +00:33:19,490 --> 00:33:22,890 +open this screen? Okay? I need to use what's on + +575 +00:33:22,890 --> 00:33:28,770 +that screen. Okay? One can say simply that this + +576 +00:33:28,770 --> 00:33:31,450 +screen is a class and you make objects from it. + +577 +00:33:31,770 --> 00:33:37,070 +When you create this, you send this to this one. + +578 +00:33:37,350 --> 00:33:41,310 +Parameter through method or constructor. Right or + +579 +00:33:41,310 --> 00:33:43,520 +wrong? Okay, this also won't solve the problem. + +580 +00:33:43,620 --> 00:33:45,940 +Why? Sometimes there is not only one screen, there + +581 +00:33:45,940 --> 00:33:49,440 +are 20-30 screens. You grab these guys and move + +582 +00:33:49,440 --> 00:33:52,360 +them all. Parameter for this, parameter for this, + +583 +00:33:52,420 --> 00:33:54,220 +parameter for this. You keep moving them. Okay? + +584 +00:33:55,040 --> 00:33:58,160 +No, I mean, what will happen to the program? There + +585 +00:33:58,160 --> 00:34:01,720 +is a big dependency. Basically, this is also not a + +586 +00:34:01,720 --> 00:34:03,720 +health sign, right or not? It means that you + +587 +00:34:03,720 --> 00:34:08,860 +changed here. It hit this one, right? Yes, there + +588 +00:34:08,860 --> 00:34:10,580 +is a lot of coupling when you keep sending + +589 +00:34:10,580 --> 00:34:12,700 +objects. Ok, it is true that you made one object, + +590 +00:34:13,240 --> 00:34:15,540 +but there is coupling that you need to send it + +591 +00:34:15,540 --> 00:34:19,300 +from one place to another, ok? Izmilk said + +592 +00:34:19,300 --> 00:34:20,560 +something good, we were going to talk about it + +593 +00:34:20,560 --> 00:34:23,040 +here. He said, it is simple, make a static and + +594 +00:34:23,040 --> 00:34:26,720 +send it anywhere. No, the static does not solve + +595 +00:34:26,720 --> 00:34:29,260 +the problem. Do you know why? Did you notice that + +596 +00:34:29,260 --> 00:34:35,080 +the static is good, but the problem is that even + +597 +00:34:35,080 --> 00:34:40,260 +if you don't need it. Okay? So this aesthetic, we + +598 +00:34:40,260 --> 00:34:42,260 +know that even if you didn't create an object from + +599 +00:34:42,260 --> 00:34:45,260 +scratch, even from all the screens, it will still + +600 +00:34:45,260 --> 00:34:48,700 +be there in your memory. This means, imagine for + +601 +00:34:48,700 --> 00:34:52,900 +example in a game, okay? You put all the audio, + +602 +00:34:53,620 --> 00:34:56,060 +textures, and 3D objects, all of them with + +603 +00:34:56,060 --> 00:34:57,880 +aesthetics, so that you can use them wherever you + +604 +00:34:57,880 --> 00:35:02,340 +want. So the game, as soon as it starts, it will + +605 +00:35:02,340 --> 00:35:05,700 +download and load all the Gigs, all the data, all + +606 +00:35:05,700 --> 00:35:09,550 +at once. No, we want a better solution that does + +607 +00:35:09,550 --> 00:35:12,370 +not create what you want it to create except in + +608 +00:35:12,370 --> 00:35:17,070 +the time that you need it to create. Okay? This + +609 +00:35:17,070 --> 00:35:18,910 +scenario explains to you what is the problem that + +610 +00:35:18,910 --> 00:35:22,210 +we are going to face. How can we create one object + +611 +00:35:22,210 --> 00:35:26,230 +from a class when it is needed only. Okay? And + +612 +00:35:26,230 --> 00:35:28,510 +when this object is created, we will use it + +613 +00:35:28,510 --> 00:35:33,710 +anywhere in the application. Okay? We create it + +614 +00:35:33,710 --> 00:35:37,320 +when it is needed only, and create it only once, + +615 +00:35:37,500 --> 00:35:41,760 +and use it everywhere in the application. This + +616 +00:35:41,760 --> 00:35:44,120 +will be applied by using the singleton pattern. + +617 +00:35:44,740 --> 00:35:46,840 +Where are the examples of applications for use? As + +618 +00:35:46,840 --> 00:35:48,500 +I said, I need to make a connection to the + +619 +00:35:48,500 --> 00:35:52,200 +database once and use it everywhere. I need to + +620 +00:35:52,200 --> 00:35:57,580 +load configuration data or large data once and use + +621 +00:35:57,580 --> 00:36:01,710 +it everywhere. Or for example one of the scenarios + +622 +00:36:01,710 --> 00:36:07,790 +here, sometimes it is important to have only one + +623 +00:36:07,790 --> 00:36:12,790 +instance for a class. For + +624 +00:36:12,790 --> 00:36:15,730 +example in a system there should be only one + +625 +00:36:15,730 --> 00:36:19,940 +window manager. For example, in some GUI + +626 +00:36:19,940 --> 00:36:20,860 +applications, they make something called Window + +627 +00:36:20,860 --> 00:36:23,740 +Manager to control the components of the screen + +628 +00:36:23,740 --> 00:36:27,880 +and sub-screens that appear. So this Window + +629 +00:36:27,880 --> 00:36:31,260 +Manager is supposed to be an object that you make + +630 +00:36:31,260 --> 00:36:35,700 +more than once. Another example is a file system + +631 +00:36:35,700 --> 00:36:38,760 +object that reads certain files. Or Print Spooler. + +632 +00:36:38,800 --> 00:36:40,480 +Do you know what Print Spooler is? It's printing. + +633 +00:36:41,220 --> 00:36 \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/UqimOKHsJGg_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/UqimOKHsJGg_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..d4b1cb794c542c7e5feefe69da6401fd28f74f31 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/UqimOKHsJGg_postprocess.srt @@ -0,0 +1,2628 @@ +1 +00:00:05,350 --> 00:00:08,710 +Good morning everyone, peace be upon you. Today, + +2 +00:00:08,830 --> 00:00:11,030 +God willing, we will continue with the topic of + +3 +00:00:11,030 --> 00:00:14,110 +the factory method design pattern. In the previous + +4 +00:00:14,110 --> 00:00:16,650 +lecture, we started talking about the factory + +5 +00:00:16,650 --> 00:00:19,290 +method. In short, the factory method is a design + +6 +00:00:19,290 --> 00:00:23,550 +pattern that enables the superclass to rely on the + +7 +00:00:23,550 --> 00:00:26,110 +subclasses to work on a part of the code that it + +8 +00:00:26,110 --> 00:00:29,210 +does not know what it is. What does this mean? It + +9 +00:00:29,210 --> 00:00:33,730 +means that sometimes I have code or a certain + +10 +00:00:33,730 --> 00:00:35,950 +function, a large part of it is common between + +11 +00:00:35,950 --> 00:00:37,930 +subclasses and there is a small part that is + +12 +00:00:37,930 --> 00:00:39,830 +different. Like what is a small part that is + +13 +00:00:39,830 --> 00:00:41,970 +different? It means that the object that I want to + +14 +00:00:41,970 --> 00:00:44,290 +create is different from subclass to subclass, but + +15 +00:00:44,290 --> 00:00:48,830 +the rest of the steps are constant. Because of + +16 +00:00:48,830 --> 00:00:50,930 +this difference, I could not put the code in the + +17 +00:00:50,930 --> 00:00:54,850 +superclass. To solve this problem, we took the + +18 +00:00:54,850 --> 00:00:58,210 +code and put it in the superclass, but the + +19 +00:00:58,210 --> 00:01:02,320 +different partsWe imported it to the subclass by + +20 +00:01:02,320 --> 00:01:06,320 +using abstract method We put the code in the + +21 +00:01:06,320 --> 00:01:07,940 +subclass, and wherever there is a different part, + +22 +00:01:08,220 --> 00:01:10,670 +we put it in its place I came up with a method, + +23 +00:01:11,090 --> 00:01:14,490 +and this method was implemented in the subclass. + +24 +00:01:14,830 --> 00:01:18,570 +We saw this in the example we worked on in the + +25 +00:01:18,570 --> 00:01:23,370 +social network connectors and posters. How each + +26 +00:01:23,370 --> 00:01:25,690 +subclass makes a different connector, but the rest + +27 +00:01:25,690 --> 00:01:28,090 +of the steps are constant, so we created a create + +28 +00:01:28,090 --> 00:01:31,530 +connector that the subclass implements. In the + +29 +00:01:31,530 --> 00:01:35,590 +second example,I want to create a new maze. I want + +30 +00:01:35,590 --> 00:01:37,970 +to change the content, but the order of the maze + +31 +00:01:37,970 --> 00:01:40,550 +and its components should be the same. So the + +32 +00:01:40,550 --> 00:01:42,630 +method createMaze in the superclass remained the + +33 +00:01:42,630 --> 00:01:45,590 +same. But when it comes to createRoom and + +34 +00:01:45,590 --> 00:01:48,730 +createWall, those that create the room and the + +35 +00:01:48,730 --> 00:01:51,850 +wall, I made them methods, so that the superclass + +36 +00:01:51,850 --> 00:01:53,670 +can override them and change the type of object + +37 +00:01:53,670 --> 00:01:57,150 +that is created in them. Now let's look at another + +38 +00:01:57,150 --> 00:02:00,770 +example.How does the factory method make it easier + +39 +00:02:00,770 --> 00:02:05,070 +for me to create the user interface in the + +40 +00:02:05,070 --> 00:02:07,950 +applications? Now, guys, let's look at this + +41 +00:02:07,950 --> 00:02:10,630 +example. If I support a program that is related to + +42 +00:02:10,630 --> 00:02:16,010 +HR, or a program for employees, okay? Now, the + +43 +00:02:16,010 --> 00:02:19,750 +employee, since he has multiple data, we made a + +44 +00:02:19,750 --> 00:02:21,090 +class for him to be represented. For example, I + +45 +00:02:21,090 --> 00:02:23,590 +made a class here, employee, represent the basic + +46 +00:02:23,590 --> 00:02:27,520 +data of the employee. For example, Name, ID, + +47 +00:02:27,760 --> 00:02:30,960 +Address and Job Title And I made this class + +48 +00:02:30,960 --> 00:02:34,820 +abstract I don't want to create an object from an + +49 +00:02:34,820 --> 00:02:37,820 +employee I made it just to collect the shared + +50 +00:02:37,820 --> 00:02:42,540 +parts From the employee, I made subclasses I have + +51 +00:02:42,540 --> 00:02:45,700 +a full-time employee, this is an extended employee + +52 +00:02:45,700 --> 00:02:48,680 +And I added a new attribute Basic salary, level + +53 +00:02:48,680 --> 00:02:52,940 +and has insurance I also have a part-time employee + +54 +00:02:54,100 --> 00:02:56,320 +Extend Employee and add new attributes such as + +55 +00:02:56,320 --> 00:03:02,740 +number of hours and hour rate Now, I have the + +56 +00:03:02,740 --> 00:03:08,680 +objects I have a class called Employee + +57 +00:03:08,680 --> 00:03:13,600 +and it consists of full + +58 +00:03:13,600 --> 00:03:18,160 +-time employee class and part-time employee class + +59 +00:03:18,160 --> 00:03:22,950 +FTE and PTE Ok, now you want to create a program, + +60 +00:03:23,090 --> 00:03:25,170 +for sure you want to create input models, you want + +61 +00:03:25,170 --> 00:03:27,910 +to create an input model, a web page or a desktop + +62 +00:03:27,910 --> 00:03:31,850 +or a mobile screen, to create an employee, you + +63 +00:03:31,850 --> 00:03:34,770 +want to input data to a new employee, for sure how + +64 +00:03:34,770 --> 00:03:39,110 +many screens do you want to have? Two screens, one + +65 +00:03:39,110 --> 00:03:41,770 +for full-time and one for part-time, so you want + +66 +00:03:41,770 --> 00:03:45,410 +to have a screen for full-time employees, how does + +67 +00:03:45,410 --> 00:03:50,070 +it look like? It will be for example the name,ID, + +68 +00:03:51,870 --> 00:03:54,350 +Job Title, + +69 +00:03:56,550 --> 00:04:01,090 +Address, + +70 +00:04:04,410 --> 00:04:08,210 +Insurance, + +71 +00:04:10,730 --> 00:04:16,450 +Salary, etc and then at the end there is a button + +72 +00:04:16,450 --> 00:04:22,130 +submit or savewhich will actually read what the + +73 +00:04:22,130 --> 00:04:24,770 +user has entered and for example, create an object + +74 +00:04:24,770 --> 00:04:28,590 +from what? the data is still scattered, of course, + +75 +00:04:28,650 --> 00:04:30,970 +I want to collect them in an object, right or not? + +76 +00:04:31,650 --> 00:04:33,690 +when I press the save button, it will create an + +77 +00:04:33,690 --> 00:04:37,130 +object from full-time employee and read the data + +78 +00:04:37,130 --> 00:04:39,050 +from the screen and fill it in the object through + +79 +00:04:39,050 --> 00:04:41,570 +the setter methods okay, now I have an object, I + +80 +00:04:41,570 --> 00:04:43,090 +store it in an array and then I store it in the + +81 +00:04:43,090 --> 00:04:46,930 +database and so on okay, with the same mechanism, + +82 +00:04:47,650 --> 00:04:50,830 +I want to have another screen for the part-time + +83 +00:04:50,830 --> 00:04:54,190 +employee. So the first part of the second screen + +84 +00:04:54,190 --> 00:04:59,790 +is the same as this part, which is the name and + +85 +00:04:59,790 --> 00:05:04,910 +the ID and so on. So this whole part should repeat + +86 +00:05:04,910 --> 00:05:11,390 +itself here, right? Then the lower part should be + +87 +00:05:11,390 --> 00:05:12,970 +different, which is the number of hours. + +88 +00:05:15,910 --> 00:05:17,770 +This is the weight and the hour rate. + +89 +00:05:21,970 --> 00:05:28,090 +Ok? And then comes the safe button as well. This + +90 +00:05:28,090 --> 00:05:35,070 +does not change. The part here is different. Right + +91 +00:05:35,070 --> 00:05:38,550 +or wrong? The part here is one, but there is + +92 +00:05:38,550 --> 00:05:41,090 +another different thing as well. The action that + +93 +00:05:41,090 --> 00:05:43,520 +happens when you press the button. Right or wrong? + +94 +00:05:43,580 --> 00:05:45,300 +They are different. This one should create a full + +95 +00:05:45,300 --> 00:05:47,300 +-time employee object and fill it in. This one + +96 +00:05:47,300 --> 00:05:48,620 +should create a part-time employee object. So + +97 +00:05:48,620 --> 00:05:52,360 +there are two different parts. The front part and + +98 +00:05:52,360 --> 00:05:53,960 +the code that should be executed when pressed on + +99 +00:05:53,960 --> 00:06:01,060 +the button. Now, this design or work has a + +100 +00:06:01,060 --> 00:06:05,520 +problem. What is it? Repeat. Repeat. Okay? This + +101 +00:06:05,520 --> 00:06:08,280 +whole part is repeated. This means that if I want + +102 +00:06:08,280 --> 00:06:10,380 +to create a new employee, for example, a contract + +103 +00:06:10,380 --> 00:06:12,740 +employee, What do you need to do for the steps? Of + +104 +00:06:12,740 --> 00:06:14,260 +course you need to create a class that represents + +105 +00:06:14,260 --> 00:06:17,300 +the object, and of course you need to create a + +106 +00:06:17,300 --> 00:06:20,300 +screen or another class where you put the code of + +107 +00:06:20,300 --> 00:06:22,720 +the graphical user interface, where you repeat all + +108 +00:06:22,720 --> 00:06:27,420 +the code that creates this part, right? And then + +109 +00:06:27,420 --> 00:06:28,880 +you put the different part, which is the new + +110 +00:06:28,880 --> 00:06:31,600 +attributes of the new object, and you put a + +111 +00:06:31,600 --> 00:06:35,390 +different code where?So there is a big repetition, + +112 +00:06:35,690 --> 00:06:37,870 +of course this is a bad repetition, you have to + +113 +00:06:37,870 --> 00:06:41,950 +copy the code again on every new screen you want + +114 +00:06:41,950 --> 00:06:44,790 +to do it, then if you want to add a new attribute + +115 +00:06:44,790 --> 00:06:51,650 +to the employee, you have to modify them all, you + +116 +00:06:51,650 --> 00:06:52,550 +have to change colors + +117 +00:06:55,280 --> 00:06:59,180 +The type of brain, instead of being a drop list or + +118 +00:06:59,180 --> 00:07:02,540 +combo box, has to be modified, and this is the + +119 +00:07:02,540 --> 00:07:05,620 +result of repetition. Next, we will see how to use + +120 +00:07:05,620 --> 00:07:11,180 +the factor method to improve this design. Since we + +121 +00:07:11,180 --> 00:07:15,100 +have always learned that there is repetition, The + +122 +00:07:15,100 --> 00:07:17,980 +repeated part or the common part is put in the + +123 +00:07:17,980 --> 00:07:20,380 +parent Right or wrong? So the code that creates + +124 +00:07:20,380 --> 00:07:22,320 +these parts is put in the parent But the problem + +125 +00:07:22,320 --> 00:07:24,660 +that I face is the same problem that we talked + +126 +00:07:24,660 --> 00:07:28,840 +about That not all the code is common There is a + +127 +00:07:28,840 --> 00:07:32,540 +common code and there are different parts How can + +128 +00:07:32,540 --> 00:07:35,320 +we solve this problem? How? All the code cannot be + +129 +00:07:35,320 --> 00:07:37,300 +taken to the parent But what I see is that they + +130 +00:07:37,300 --> 00:07:39,700 +use the factory method That the common part is put + +131 +00:07:39,700 --> 00:07:42,220 +in the parentand the different one is allocated to + +132 +00:07:42,220 --> 00:07:45,240 +whom? to the subclass so how do we solve this + +133 +00:07:45,240 --> 00:07:48,900 +problem? we need to do the following did you find + +134 +00:07:48,900 --> 00:07:52,000 +it? I have a class called full-time employee and a + +135 +00:07:52,000 --> 00:07:54,960 +class called part-time employee this is called + +136 +00:07:54,960 --> 00:08:00,740 +form full-time employee form and this is part-time + +137 +00:08:00,740 --> 00:08:04,380 +employee form it has all this code which is drawn + +138 +00:08:04,380 --> 00:08:07,120 +this way because what I want to do is I want to + +139 +00:08:07,120 --> 00:08:10,000 +make a class here called employee + +140 +00:08:12,940 --> 00:08:13,260 +All right, + +141 +00:08:23,640 --> 00:08:25,740 +guys? What do I want to put in the data that says + +142 +00:08:25,740 --> 00:08:30,090 +build4? All the code.The one who creates this, I + +143 +00:08:30,090 --> 00:08:32,510 +will take it from here and put it where? I will + +144 +00:08:32,510 --> 00:08:34,310 +put it at the end. So here I will tell him, for + +145 +00:08:34,310 --> 00:08:37,450 +example, inside this method, imagine what's in it, + +146 +00:08:37,770 --> 00:08:41,530 +create the code of the name, and the code of the + +147 +00:08:41,530 --> 00:08:45,810 +ID, and the code of the job title, okay? And the + +148 +00:08:45,810 --> 00:08:49,710 +address. Okay, did you find that we have a + +149 +00:08:49,710 --> 00:08:49,890 +different part? + +150 +00:08:53,310 --> 00:08:56,590 +Right? Which is this one. She doesn't know what to + +151 +00:08:56,590 --> 00:08:59,070 +do. Right or not? So, she will do in return of + +152 +00:08:59,070 --> 00:09:06,850 +this, create specific GUI for example. This is a + +153 +00:09:06,850 --> 00:09:08,630 +method, but I will call it. Yes. What do I want to + +154 +00:09:08,630 --> 00:09:10,930 +put this? Here abstract. I will do this here, + +155 +00:09:11,090 --> 00:09:16,110 +create specific GUI. + +156 +00:09:19,390 --> 00:09:22,270 +This one is abstract, there is no code in it. Who + +157 +00:09:22,270 --> 00:09:25,770 +is going to implement it? The subclasses. But this + +158 +00:09:25,770 --> 00:09:29,410 +build form is going to claim this one, right? + +159 +00:09:30,010 --> 00:09:34,150 +Okay, and then I put the code of the save button. + +160 +00:09:35,510 --> 00:09:38,350 +Because when the save button is pressed,It's + +161 +00:09:38,350 --> 00:09:41,210 +supposed to execute a different code. So when I + +162 +00:09:41,210 --> 00:09:42,830 +click on the save button, it will ask for another + +163 +00:09:42,830 --> 00:09:48,290 +instruction called specific + +164 +00:09:48,290 --> 00:09:54,590 +action or do save, for example. And this one is + +165 +00:09:54,590 --> 00:09:57,450 +also going to do an abstract instruction called do + +166 +00:09:57,450 --> 00:10:02,590 +save.So now the superclass has how many abstract + +167 +00:10:02,590 --> 00:10:06,430 +data? Two. Why two? Why not one? Because I have + +168 +00:10:06,430 --> 00:10:09,150 +two different characters in two different places. + +169 +00:10:10,250 --> 00:10:12,950 +And really this is to work. You put the common + +170 +00:10:12,950 --> 00:10:14,070 +factor and every time you find something + +171 +00:10:14,070 --> 00:10:18,030 +different, you turn the client into the subclass. + +172 +00:10:19,240 --> 00:10:24,220 +Now, this class extends to this one, right? And + +173 +00:10:24,220 --> 00:10:26,180 +this one extends to this one. It will be required + +174 +00:10:26,180 --> 00:10:30,440 +to implement for whom? For these two methods. In + +175 +00:10:30,440 --> 00:10:33,020 +this method, it puts the code that is specific to + +176 +00:10:33,020 --> 00:10:36,400 +whom. It designs the design only for this part. + +177 +00:10:37,500 --> 00:10:40,160 +Okay? And in the save, it puts the code that will + +178 +00:10:40,160 --> 00:10:43,220 +be executed when I press the save button. When I + +179 +00:10:43,220 --> 00:10:44,680 +press the save button, here it will create an + +180 +00:10:44,680 --> 00:10:47,960 +object from part-time employee. When I click on + +181 +00:10:47,960 --> 00:10:49,260 +the save button here, it will create an object + +182 +00:10:49,260 --> 00:10:52,280 +from the full-time employee So when I click on + +183 +00:10:52,280 --> 00:10:55,180 +save, it will use the full-time and this one will + +184 +00:10:55,180 --> 00:10:58,580 +use the part-time Just like when we have a + +185 +00:10:58,580 --> 00:11:01,040 +Facebook poster, it creates an object from the + +186 +00:11:01,040 --> 00:11:08,000 +Facebook connector And so on Ok, let's see this + +187 +00:11:08,000 --> 00:11:12,400 +drawing as a code This idea, let's look at it as a + +188 +00:11:12,400 --> 00:11:12,560 +code + +189 +00:11:18,630 --> 00:11:22,430 +Now, of course, I know that the details of the GUI + +190 +00:11:22,430 --> 00:11:23,910 +are not available to you or you did not take it, + +191 +00:11:23,970 --> 00:11:28,750 +but the idea should be clear. When you see the + +192 +00:11:28,750 --> 00:11:30,910 +code, you understand this code, I tell you that + +193 +00:11:30,910 --> 00:11:33,690 +this part is related to the GUI, okay? The idea is + +194 +00:11:33,690 --> 00:11:36,130 +important, but you can apply it in any programming + +195 +00:11:36,130 --> 00:11:36,270 +language. + +196 +00:11:39,430 --> 00:11:41,590 +Okay, there is an example on PHP But this is + +197 +00:11:41,590 --> 00:11:44,970 +another example, okay? Now, let's see here This + +198 +00:11:44,970 --> 00:11:49,030 +class is called EmployeeForm This is basically the + +199 +00:11:49,030 --> 00:11:51,830 +main class that I want to collect the common code + +200 +00:11:51,830 --> 00:11:56,070 +in Okay? Did you find this class extends JFrame? + +201 +00:11:56,210 --> 00:12:00,150 +And this is its constructor Now, this code that is + +202 +00:12:00,150 --> 00:12:03,550 +here, do you see it all? This is the GUI code for + +203 +00:12:03,550 --> 00:12:06,790 +common things I put here a comment that this is + +204 +00:12:06,790 --> 00:12:11,120 +the code that I want Name, I don't have the word + +205 +00:12:11,120 --> 00:12:12,940 +name and next to it is the right to enter the name + +206 +00:12:12,940 --> 00:12:15,340 +Okay, this is the code that they do He does + +207 +00:12:15,340 --> 00:12:20,440 +something called JTextField, JLabel, okay? And + +208 +00:12:20,440 --> 00:12:24,160 +this code creates the code specific to the ID + +209 +00:12:24,160 --> 00:12:27,400 +There is no line of ID And this creates the code + +210 +00:12:27,400 --> 00:12:30,240 +specific to the job title Okay, so these are all + +211 +00:12:30,240 --> 00:12:35,180 +the common parts Now, under the common parts, + +212 +00:12:35,380 --> 00:12:39,880 +there is a part that is differentWho is supposed + +213 +00:12:39,880 --> 00:12:42,680 +to do this different part? This class doesn't know + +214 +00:12:42,680 --> 00:12:46,220 +what to do. If it was full-time, they would do + +215 +00:12:46,220 --> 00:12:49,120 +something different from part-time. But I'm still + +216 +00:12:49,120 --> 00:12:53,220 +working in the superclass. So I came down here and + +217 +00:12:53,220 --> 00:12:58,940 +told him to create subattributes GUI Create + +218 +00:12:58,940 --> 00:13:04,160 +subattributes GUI This is an abstract method. It + +219 +00:13:04,160 --> 00:13:06,460 +creates things and collects them in a thing called + +220 +00:13:06,460 --> 00:13:09,020 +Jpanel. Like this. And I take this Jpanel and add + +221 +00:13:09,020 --> 00:13:14,460 +it to the screen. Okay? This method is an abstract + +222 +00:13:14,460 --> 00:13:16,820 +method. It is used by the superclass. But who will + +223 +00:13:16,820 --> 00:13:19,900 +implement it? The subclass. What is this code? + +224 +00:13:20,240 --> 00:13:23,940 +What is written here? The save button. Okay? And + +225 +00:13:23,940 --> 00:13:25,900 +this is the action when I press the save button. + +226 +00:13:27,800 --> 00:13:29,620 +Because we said there is a problem when I press + +227 +00:13:29,620 --> 00:13:33,290 +the save button. it differs from one object to + +228 +00:13:33,290 --> 00:13:37,690 +another but in the end, any object is an employee + +229 +00:13:37,690 --> 00:13:42,670 +instead of saying new I don't know what new is + +230 +00:13:42,670 --> 00:13:44,730 +because I'm in the full or part field so I just + +231 +00:13:44,730 --> 00:13:48,950 +say create employee same as we did create social + +232 +00:13:48,950 --> 00:13:52,950 +network connector same as we did create maze here + +233 +00:13:52,950 --> 00:13:55,190 +I say create employee let the subclass define what + +234 +00:13:55,190 --> 00:13:57,390 +kind of object it is the employee returns what + +235 +00:13:57,390 --> 00:14:00,210 +does it fill it with? The common things that I + +236 +00:14:00,210 --> 00:14:05,370 +have here, name, ID and job title. Okay, it's + +237 +00:14:05,370 --> 00:14:08,530 +done. This is the rest of the GUI code. All this + +238 +00:14:08,530 --> 00:14:13,730 +code is in the constructor. So, when the + +239 +00:14:13,730 --> 00:14:15,750 +constructor is called, it executes all this code. + +240 +00:14:17,070 --> 00:14:19,430 +Of course, I can't create an object from an + +241 +00:14:19,430 --> 00:14:22,630 +employee form. How will the constructor call? I + +242 +00:14:22,630 --> 00:14:24,670 +will create an object from the subclass, and it is + +243 +00:14:24,670 --> 00:14:27,670 +known that the constructor of the subclass by the + +244 +00:14:27,670 --> 00:14:33,510 +constructor of the parent, okay? Okay, look down + +245 +00:14:33,510 --> 00:14:36,010 +here, you will find two abstract methods, what are + +246 +00:14:36,010 --> 00:14:39,030 +their names? CreateSubattributeUi and + +247 +00:14:39,030 --> 00:14:43,730 +CreateEmployee Now, I came here, look how simple + +248 +00:14:43,730 --> 00:14:46,290 +it is, I want to make a model for the full-time + +249 +00:14:46,290 --> 00:14:48,790 +employee I say, to make a simple model for the + +250 +00:14:48,790 --> 00:14:51,710 +full-time employee go and make a class called Full + +251 +00:14:51,710 --> 00:14:56,910 +-timeEmployeeForm and make it extend to where?to + +252 +00:14:56,910 --> 00:15:01,210 +the employee form it will ask you to implement two + +253 +00:15:01,210 --> 00:15:04,590 +methods create sub-attributes GUI and create + +254 +00:15:04,590 --> 00:15:09,810 +employee and here I just put the code again for + +255 +00:15:09,810 --> 00:15:12,250 +the GUI of the full-time employee for example, you + +256 +00:15:12,250 --> 00:15:17,650 +told me to create one for the salary and return it + +257 +00:15:17,650 --> 00:15:21,130 +to me I return it at the end of my panel so I just + +258 +00:15:21,130 --> 00:15:25,790 +created the code for the salary All of this says + +259 +00:15:25,790 --> 00:15:29,790 +inside create sub attribute UI Because I have + +260 +00:15:29,790 --> 00:15:31,770 +another method here called create employee When + +261 +00:15:31,770 --> 00:15:34,710 +will it be used? When it is pressed on the safe, + +262 +00:15:35,170 --> 00:15:37,070 +okay? It tells you, you don't have a relationship, + +263 +00:15:37,150 --> 00:15:38,290 +what will happen when it is pressed on the safe? + +264 +00:15:38,350 --> 00:15:41,630 +You are your job, what do you do? Yes, you create + +265 +00:15:41,630 --> 00:15:44,190 +the object and return it Of course, I create the + +266 +00:15:44,190 --> 00:15:46,530 +object and go to the object and tell it set basic + +267 +00:15:46,530 --> 00:15:48,950 +salary That is, you have to fill in the + +268 +00:15:48,950 --> 00:15:52,550 +information that you have because you entered it, + +269 +00:15:52,710 --> 00:15:56,290 +okay? And you tell it to return Employee, meaning + +270 +00:15:56,290 --> 00:15:57,950 +that you only created the different parts + +271 +00:15:57,950 --> 00:16:01,350 +everything else has nothing to do with it okay? + +272 +00:16:02,190 --> 00:16:06,550 +now look at this class this class is the part-time + +273 +00:16:06,550 --> 00:16:08,050 +employee the part-time employee has two rights + +274 +00:16:08,050 --> 00:16:10,610 +again which are what? hour rate and number of + +275 +00:16:10,610 --> 00:16:15,030 +hours okay? I also created extend employee for and + +276 +00:16:15,030 --> 00:16:17,070 +asked me to create implement for whom? to create + +277 +00:16:17,070 --> 00:16:20,490 +sub-attributes and create employee create sub + +278 +00:16:20,490 --> 00:16:22,190 +-attributes, you see it created only the GUI + +279 +00:16:22,190 --> 00:16:25,770 +specific to whom? in the hour rate and number of + +280 +00:16:25,770 --> 00:16:28,510 +hours, add them to the screen, and return them to + +281 +00:16:28,510 --> 00:16:30,890 +me. This is the code that adds these two brackets. + +282 +00:16:32,810 --> 00:16:35,110 +Okay? And below here, createEmployee, this is what + +283 +00:16:35,110 --> 00:16:38,930 +is pressed when you press the save button. It will + +284 +00:16:38,930 --> 00:16:42,570 +create a part-time employee, fill in the hour rate + +285 +00:16:42,570 --> 00:16:47,730 +and number of hours, and return it. Okay? Now, + +286 +00:16:47,850 --> 00:16:51,560 +this is the test UI used. If I want to show a + +287 +00:16:51,560 --> 00:16:54,540 +brain to imagine a part-time employee, what do I + +288 +00:16:54,540 --> 00:16:59,240 +do? I extract an object from whom? From a part + +289 +00:16:59,240 --> 00:17:00,860 +-time employee. The part-time employee, of course, + +290 +00:17:01,080 --> 00:17:02,760 +as soon as you extract the object, will learn that + +291 +00:17:02,760 --> 00:17:04,220 +you have to extract the constructor, right? Is + +292 +00:17:04,220 --> 00:17:06,720 +there a constructor here? Yes, it's empty. Yes, + +293 +00:17:06,780 --> 00:17:08,720 +it's empty, but it's known that the constructor of + +294 +00:17:08,720 --> 00:17:11,640 +the subclass will extract the constructor of the + +295 +00:17:11,640 --> 00:17:14,400 +superclass. It will immediately execute what? This + +296 +00:17:14,400 --> 00:17:23,420 +code.Employee4 will run YGH to createSub + +297 +00:17:23,420 --> 00:17:26,560 +-attributes. What does it create? The subclass. It + +298 +00:17:26,560 --> 00:17:29,060 +fills what's available. And then it turns on the + +299 +00:17:29,060 --> 00:17:31,160 +save button. When I click on the save button, it + +300 +00:17:31,160 --> 00:17:32,740 +creates an employee. It creates what's available + +301 +00:17:32,740 --> 00:17:34,840 +in the subclass. Which generates a part-time + +302 +00:17:34,840 --> 00:17:38,300 +employee. Let's see. For example, this is a part + +303 +00:17:38,300 --> 00:17:40,520 +-time employee. I made a run for it. Of course, + +304 +00:17:40,660 --> 00:17:45,260 +the initial GUI is available. But the idea is in + +305 +00:17:45,260 --> 00:17:49,800 +the content. For example, this is a job title. Our + +306 +00:17:49,800 --> 00:17:54,150 +rate. Name, ID, Job title, these are the + +307 +00:17:54,150 --> 00:17:57,750 +participants, okay? Then the number of hours and + +308 +00:17:57,750 --> 00:17:59,790 +hour rate, okay? + +309 +00:18:02,990 --> 00:18:06,510 +One, two, three, these two, number of hours, hour + +310 +00:18:06,510 --> 00:18:09,370 +rate, what do they have? They are different. Now, + +311 +00:18:09,430 --> 00:18:12,330 +if I came to the GUI too and changed it, I called + +312 +00:18:12,330 --> 00:18:16,370 +this full-time employee, + +313 +00:18:19,450 --> 00:18:24,390 +I put the salary but it will run and you will see + +314 +00:18:24,390 --> 00:18:28,610 +here this is the name, id, job title and this is + +315 +00:18:28,610 --> 00:18:32,390 +the salary and when I click on save it should read + +316 +00:18:32,390 --> 00:18:34,190 +what is written here and create an object from + +317 +00:18:34,190 --> 00:18:38,310 +full-time employee if you want to create a new + +318 +00:18:38,310 --> 00:18:41,730 +employee what do you have to do? you have to do + +319 +00:18:41,730 --> 00:18:44,950 +two things first thing you have to do is class to + +320 +00:18:44,950 --> 00:18:47,710 +method this one for example here is contract based + +321 +00:18:47,710 --> 00:18:51,470 +employee What is the attribute of his job? + +322 +00:18:52,870 --> 00:18:56,670 +startDate and endDate and then it creates a new + +323 +00:18:56,670 --> 00:18:59,990 +class contractBasedEmployeeFor which is also + +324 +00:18:59,990 --> 00:19:03,010 +called extendEmployeeFor and it puts a new value + +325 +00:19:03,010 --> 00:19:06,190 +in it which is called contractDuration which is + +326 +00:19:06,190 --> 00:19:11,750 +the length of the contract and createEmployee + +327 +00:19:11,750 --> 00:19:15,230 +which is an object from contractBasedEmployee and + +328 +00:19:15,230 --> 00:19:18,210 +in testUI it puts the name of the class + +329 +00:19:32,170 --> 00:19:35,830 +again ok and of course it will add to the new + +330 +00:19:35,830 --> 00:19:40,830 +contract here a duration ok so the important idea + +331 +00:19:42,280 --> 00:19:47,280 +You see that now the program is 100% extendable I + +332 +00:19:47,280 --> 00:19:50,780 +don't need to edit any line of code I don't need + +333 +00:19:50,780 --> 00:19:54,880 +to copy paste or repeat any line of code All I + +334 +00:19:54,880 --> 00:19:59,060 +need to do is create new classes Extend and add + +335 +00:19:59,060 --> 00:20:03,540 +the new parts that belong to it That's how editing + +336 +00:20:03,540 --> 00:20:07,560 +becomes much easier than before We also did this + +337 +00:20:07,560 --> 00:20:11,560 +using the factory method Now + +338 +00:20:23,760 --> 00:20:25,880 +This is the same example that I explained to you + +339 +00:20:25,880 --> 00:20:28,240 +in the previous lecture on Java, which is the + +340 +00:20:28,240 --> 00:20:30,420 +social network poster and the social network + +341 +00:20:30,420 --> 00:20:33,460 +connector When I got this example from the + +342 +00:20:33,460 --> 00:20:36,760 +internet, it is basically made of PHP The example + +343 +00:20:36,760 --> 00:20:39,760 +itself is PHP, but when I explained it, I + +344 +00:20:39,760 --> 00:20:44,560 +explained Java Of course, this code exists in PHP + +345 +00:20:45,420 --> 00:20:47,360 +so that you can see that object-oriented concepts + +346 +00:20:47,360 --> 00:20:51,880 +are present in all languages. For example, if you + +347 +00:20:51,880 --> 00:20:54,020 +remember the example from last time, I have + +348 +00:20:54,020 --> 00:20:57,380 +connectors, for example, Facebook connector, + +349 +00:20:57,600 --> 00:20:59,680 +Twitter, LinkedIn connectors, and then I have + +350 +00:20:59,680 --> 00:21:02,620 +posters. The poster uses the connector from inside + +351 +00:21:02,620 --> 00:21:05,320 +to connect to the social network and then make a + +352 +00:21:05,320 --> 00:21:08,440 +post and store it in the database and so on. For + +353 +00:21:08,440 --> 00:21:12,280 +example, if I want to make a post, the steps of + +354 +00:21:12,280 --> 00:21:15,230 +making the post are common, So I'm going to put it + +355 +00:21:15,230 --> 00:21:17,410 +in the superclass, it's called social network + +356 +00:21:17,410 --> 00:21:23,270 +poster And this is the method post Because the + +357 +00:21:23,270 --> 00:21:25,690 +method post wants to do four steps in it The first + +358 +00:21:25,690 --> 00:21:28,850 +step is to create the connector Because it doesn't + +359 +00:21:28,850 --> 00:21:30,290 +know what connector it creates Because the + +360 +00:21:30,290 --> 00:21:32,310 +connector differs from subclass to subclass, + +361 +00:21:32,370 --> 00:21:34,410 +right? So I'm going to create an abstract method + +362 +00:21:34,410 --> 00:21:37,510 +Abstract public function called + +363 +00:21:37,510 --> 00:21:40,470 +getSocialNetworkConnector, for example What does + +364 +00:21:40,470 --> 00:21:46,450 +it return?In the php, I go back to the social + +365 +00:21:46,450 --> 00:21:49,790 +network connector, and I get the social network + +366 +00:21:49,790 --> 00:21:55,050 +from the post, and I get the social network from + +367 +00:21:55,050 --> 00:21:57,930 +the post, and I get the social network from the + +368 +00:21:57,930 --> 00:21:58,270 +post, and I get the social network from the post, + +369 +00:21:58,270 --> 00:21:59,830 +and I get the social network from the post, and I + +370 +00:21:59,830 --> 00:22:00,830 +get the social network from the post, and I get + +371 +00:22:00,830 --> 00:22:02,770 +the social network from the post, Logout. These + +372 +00:22:02,770 --> 00:22:04,230 +are fixed steps that must be followed. Everyone + +373 +00:22:04,230 --> 00:22:06,790 +must follow them. What differs from this step is + +374 +00:22:06,790 --> 00:22:09,630 +that I entrust it to the subclasses through the + +375 +00:22:09,630 --> 00:22:13,010 +abstract method. Because these subclasses, for + +376 +00:22:13,010 --> 00:22:15,950 +example, this Facebook poster is made to extend to + +377 +00:22:15,950 --> 00:22:20,010 +a social network poster, okay? It is required that + +378 +00:22:20,010 --> 00:22:22,930 +it only implement to whom? To get social network, + +379 +00:22:23,210 --> 00:22:25,070 +which determines what kind of connector it wants + +380 +00:22:25,070 --> 00:22:29,010 +to use. Facebook connector. And this, for example, + +381 +00:22:30,640 --> 00:22:34,600 +Linked-in poster, get social network, it should + +382 +00:22:34,600 --> 00:22:38,880 +also have a linked-in connector. Okay? So it's the + +383 +00:22:38,880 --> 00:22:41,860 +same example. I got it on the internet, it's in + +384 +00:22:41,860 --> 00:22:44,480 +the PHP, but when I explained it to you, I + +385 +00:22:44,480 --> 00:22:48,720 +explained it in Java. Okay, guys? Okay, this way + +386 +00:22:48,720 --> 00:22:54,340 +we have completed the method factor. Before we + +387 +00:22:54,340 --> 00:22:57,420 +enter the new pattern design, there is a duty that + +388 +00:22:57,420 --> 00:22:59,240 +we have to take. Okay, guys? + +389 +00:23:12,620 --> 00:23:17,440 +Okay, the duty required was as follows Do you have + +390 +00:23:17,440 --> 00:23:20,980 +a duty, did you find it? No, one, these are two + +391 +00:23:20,980 --> 00:23:24,280 +questions in one duty Okay, that's it, if you + +392 +00:23:24,280 --> 00:23:25,440 +understood the first one, solve the second one, + +393 +00:23:26,080 --> 00:23:29,440 +okay? Same way Okay, did you find it? They tell + +394 +00:23:29,440 --> 00:23:33,120 +you that you make a program, for example, for + +395 +00:23:33,120 --> 00:23:35,860 +licenses or the ministry, for example, okay? They + +396 +00:23:35,860 --> 00:23:40,550 +have data input models Which is called Citizens + +397 +00:23:40,550 --> 00:23:42,970 +Requests For example, there is a request to add a + +398 +00:23:42,970 --> 00:23:45,070 +child, a request to prepare a passport, a request + +399 +00:23:45,070 --> 00:23:47,770 +to apply for travel, and each person has a common + +400 +00:23:47,770 --> 00:23:50,850 +data For example, here is a request to add a + +401 +00:23:50,850 --> 00:23:52,510 +child, the name of the applicant, the identity + +402 +00:23:52,510 --> 00:23:53,770 +number of the applicant, the title of the + +403 +00:23:53,770 --> 00:23:56,650 +applicant, and then the name of the child, date of + +404 +00:23:56,650 --> 00:23:58,670 +birth, and gender of the child, a request to renew + +405 +00:23:58,670 --> 00:24:01,030 +the passport, there is also the name of the + +406 +00:24:01,030 --> 00:24:03,470 +applicant, his identity number, his title, and + +407 +00:24:03,470 --> 00:24:05,050 +then the number of the passport and date of + +408 +00:24:05,050 --> 00:24:06,710 +completion, these are related to whom? The + +409 +00:24:06,710 --> 00:24:10,290 +passport Identification is the same thing Notice + +410 +00:24:10,290 --> 00:24:13,750 +in all applications You have to put the name of + +411 +00:24:13,750 --> 00:24:14,910 +the applicant, his or her ID number and his or her + +412 +00:24:14,910 --> 00:24:20,130 +address But there are different data Now, + +413 +00:24:20,890 --> 00:24:26,830 +I am required to design in any way that I want for + +414 +00:24:26,830 --> 00:24:31,670 +these three modelsFor the three models, each model + +415 +00:24:31,670 --> 00:24:35,590 +must have all these fields Name of the student, ID + +416 +00:24:35,590 --> 00:24:38,550 +number, title, and specific elements in each + +417 +00:24:38,550 --> 00:24:41,510 +request And each request must have a safe key in + +418 +00:24:41,510 --> 00:24:44,250 +the end When I click on it, it will create an + +419 +00:24:44,250 --> 00:24:47,230 +object from each request So now, when you work, + +420 +00:24:47,430 --> 00:24:50,410 +before you make the models, the faces, you go and + +421 +00:24:50,410 --> 00:24:58,300 +make a class representing each requestadd baby + +422 +00:24:58,300 --> 00:25:03,180 +request visa + +423 +00:25:03,180 --> 00:25:03,200 +request + +424 +00:25:12,300 --> 00:25:15,560 +Or applications, whatever you want, okay? And + +425 +00:25:15,560 --> 00:25:19,280 +these represent the employee classes. We haven't + +426 +00:25:19,280 --> 00:25:22,580 +come to models yet. You want to make classes that + +427 +00:25:22,580 --> 00:25:25,880 +represent the object, okay? And these will be + +428 +00:25:25,880 --> 00:25:28,180 +attributes within the class. Of course, once they + +429 +00:25:28,180 --> 00:25:30,900 +join, there are three attributes that will be in + +430 +00:25:30,900 --> 00:25:35,360 +the parent. Once you finish the classes of these, + +431 +00:25:35,460 --> 00:25:39,150 +you want to go and make the faces.Factory methods + +432 +00:25:39,150 --> 00:25:43,330 +have common and different elements. It does not + +433 +00:25:43,330 --> 00:25:45,230 +need to design for each face in a single screen. + +434 +00:25:46,290 --> 00:25:49,870 +We need to develop it. We need to use the factory + +435 +00:25:49,870 --> 00:25:52,470 +method. That means you need to design for the + +436 +00:25:52,470 --> 00:25:58,250 +common elements and use the abstract methods, the + +437 +00:25:58,250 --> 00:26:00,410 +factory methods, so that the different elements + +438 +00:26:00,410 --> 00:26:03,750 +can be designed in the subclasses. And there + +439 +00:26:03,750 --> 00:26:08,020 +should be a safe button. You press it.It creates + +440 +00:26:08,020 --> 00:26:10,920 +an object from the request and prints its data for + +441 +00:26:10,920 --> 00:26:13,680 +you. It stores it in the object and prints the + +442 +00:26:13,680 --> 00:26:16,800 +object for you. It's the same example that I + +443 +00:26:16,800 --> 00:26:23,180 +explained. But it changes what? The example that I + +444 +00:26:23,180 --> 00:26:24,320 +explained has an effect on the code that is + +445 +00:26:24,320 --> 00:26:27,470 +present on the model. you can take it and change + +446 +00:26:27,470 --> 00:26:31,550 +it to make it like this or you can work on your + +447 +00:26:31,550 --> 00:26:35,030 +mobile on whatever you want the most important + +448 +00:26:35,030 --> 00:26:40,590 +thing is to apply the factory method how long does + +449 +00:26:40,590 --> 00:26:44,210 +it take for the old job? another 3 days to open + +450 +00:26:44,210 --> 00:26:49,550 +this job good right? but guys tomorrow as I said + +451 +00:26:49,550 --> 00:26:53,810 +surely in the exams there will be questionsIt's + +452 +00:26:53,810 --> 00:26:56,270 +not the obligation itself, it's similar to it, if + +453 +00:26:56,270 --> 00:26:58,310 +you don't solve the problem in the exam, they will + +454 +00:26:58,310 --> 00:27:00,490 +give you zero in the obligation directly. Your + +455 +00:27:00,490 --> 00:27:02,750 +mark in the obligation, see I don't admit in the + +456 +00:27:02,750 --> 00:27:06,490 +obligation. Your mark in the obligation, I will + +457 +00:27:06,490 --> 00:27:09,830 +put it almost, it will be your mark in the exam. + +458 +00:27:10,800 --> 00:27:13,400 +It's obvious, because the questions in the exam + +459 +00:27:13,400 --> 00:27:16,060 +are the same as the questions in the assignment In + +460 +00:27:16,060 --> 00:27:18,800 +the end, the questions in the exam are the same as + +461 +00:27:18,800 --> 00:27:21,020 +the questions in the assignment So it's impossible + +462 +00:27:21,020 --> 00:27:24,520 +to give them 100% Even if I give them 100% You + +463 +00:27:24,520 --> 00:27:27,400 +didn't solve the question in the exam Does it mean + +464 +00:27:27,400 --> 00:27:29,480 +that you solved it in the assignment? No, you + +465 +00:27:29,480 --> 00:27:32,380 +didn't solve it in the exam So this assignment is + +466 +00:27:32,380 --> 00:27:35,560 +for you to practice But in the end, you signed the + +467 +00:27:35,560 --> 00:27:37,710 +assignment The same exam. + +468 +00:27:40,470 --> 00:27:46,150 +No, it's just that I open my homework, I see + +469 +00:27:46,150 --> 00:27:48,750 +random things, okay? I take my students and + +470 +00:27:48,750 --> 00:27:50,150 +sometimes they give me empty things like this. + +471 +00:27:51,170 --> 00:27:53,030 +Anyway, this homework is for you. You laugh at + +472 +00:27:53,030 --> 00:27:55,130 +yourself if you don't solve it, okay? Even the + +473 +00:27:55,130 --> 00:27:56,510 +exercises I give you, I don't give you homework + +474 +00:27:56,510 --> 00:27:58,230 +that I tell you to copy from the internet and + +475 +00:27:58,230 --> 00:28:00,350 +write it with your hand and I don't know what. No, + +476 +00:28:00,390 --> 00:28:04,270 +I give you questions It's a whole process, and you + +477 +00:28:04,270 --> 00:28:06,030 +will face all of these in your life. For example, + +478 +00:28:06,030 --> 00:28:08,870 +you will create a program like this with screens. + +479 +00:28:09,610 --> 00:28:11,710 +Well, any program you will create tomorrow will + +480 +00:28:11,710 --> 00:28:13,590 +have screens, and there will also be shared things + +481 +00:28:13,590 --> 00:28:16,170 +and different things. So, this is the scenario you + +482 +00:28:16,170 --> 00:28:18,970 +face in your life. I personally work as a + +483 +00:28:18,970 --> 00:28:21,510 +developer, not as an academic. I find all these + +484 +00:28:21,510 --> 00:28:25,170 +things in my work. I mean, I give you ... what do + +485 +00:28:25,170 --> 00:28:29,330 +they call it? Butter? Yes, these things you will + +486 +00:28:29,330 --> 00:28:32,800 +face in your work in the market tomorrow.Okay + +487 +00:28:32,800 --> 00:28:35,280 +guys, let's start with a presentation on a new + +488 +00:28:35,280 --> 00:28:39,620 +design pattern called Singleton Design Pattern + +489 +00:28:39,620 --> 00:28:41,980 +Okay, we're not going to do an implementation of + +490 +00:28:41,980 --> 00:28:44,300 +it, but we're going to present this lecture and + +491 +00:28:44,300 --> 00:28:46,560 +next time we'll start the implementation directly + +492 +00:28:47,860 --> 00:28:50,840 +The single-tool pattern is necessary in the first + +493 +00:28:50,840 --> 00:28:52,800 +class of Design Patterns, which is the Creational + +494 +00:28:52,800 --> 00:28:56,100 +Design Pattern. All the design patterns that we + +495 +00:28:56,100 --> 00:28:58,300 +explained, the three of them, are related to the + +496 +00:28:58,300 --> 00:28:59,780 +construction of objects. But each one has a goal. + +497 +00:29:00,520 --> 00:29:02,700 +The factory collects the construction in one + +498 +00:29:02,700 --> 00:29:06,520 +class. The builder facilitates the construction of + +499 +00:29:06,520 --> 00:29:08,240 +the object, which the constructor takes many + +500 +00:29:08,240 --> 00:29:11,920 +parameters. The factory method allows the + +501 +00:29:11,920 --> 00:29:15,620 +subclasses to create the object.Okay? For those + +502 +00:29:15,620 --> 00:29:18,200 +who don't know and still have the common code in + +503 +00:29:18,200 --> 00:29:21,120 +the super, class. The fourth design pattern + +504 +00:29:21,120 --> 00:29:23,480 +related to creation is the singleton pattern. It + +505 +00:29:23,480 --> 00:29:26,300 +is one of the simplest design patterns and at the + +506 +00:29:26,300 --> 00:29:31,040 +same time important and widely used. In short, I + +507 +00:29:31,040 --> 00:29:32,900 +say singleton design pattern. It is a design + +508 +00:29:32,900 --> 00:29:36,960 +pattern that we use when we need to have a single + +509 +00:29:36,960 --> 00:29:39,860 +class. I want to create only one object in the + +510 +00:29:39,860 --> 00:29:42,360 +class. I want to use it in the entire application. + +511 +00:29:43,940 --> 00:29:48,400 +What does this mean? For example, sometimes you + +512 +00:29:48,400 --> 00:29:50,000 +create an application that has many screens, + +513 +00:29:51,060 --> 00:29:53,840 +whether it is a web page or a mobile application + +514 +00:29:53,840 --> 00:29:56,420 +that has screens, and from all the screens, you + +515 +00:29:56,420 --> 00:29:59,880 +need to connect to the database. This screen is + +516 +00:29:59,880 --> 00:30:03,280 +your model, you enter the data, you save it in the + +517 +00:30:03,280 --> 00:30:07,140 +database. The second screen is a view, it creates + +518 +00:30:07,140 --> 00:30:08,880 +a query on the database, it brings the data and + +519 +00:30:08,880 --> 00:30:12,330 +shows it to you. Okay? The third screen is also a + +520 +00:30:12,330 --> 00:30:14,910 +view, but it makes another table in the database. + +521 +00:30:15,170 --> 00:30:17,570 +That is, in fact, in each screen you need to make + +522 +00:30:17,570 --> 00:30:21,130 +a connect on the database and make a query. So + +523 +00:30:21,130 --> 00:30:24,950 +when you make a connect on the database, in each + +524 +00:30:24,950 --> 00:30:27,950 +screen, of course, the connection to the database + +525 +00:30:27,950 --> 00:30:31,430 +must be present in a class and a method. Okay? + +526 +00:30:32,010 --> 00:30:35,810 +Whenever I want to open a screen that needs to + +527 +00:30:35,810 --> 00:30:37,230 +connect to the database, I want to create the + +528 +00:30:37,230 --> 00:30:39,530 +object of this connection that needs to connect to + +529 +00:30:39,530 --> 00:30:42,660 +the database.Now this is a problem, why? Because + +530 +00:30:42,660 --> 00:30:45,680 +this object needs resources that it takes from the + +531 +00:30:45,680 --> 00:30:49,740 +memory and it needs time to work So it's not a + +532 +00:30:49,740 --> 00:30:51,820 +good solution that whenever you want to connect to + +533 +00:30:51,820 --> 00:30:55,880 +the database, you need to create this connector In + +534 +00:30:55,880 --> 00:30:58,040 +a situation like this, where I have 10 screens + +535 +00:30:58,040 --> 00:30:59,640 +that all interact with the database, I should + +536 +00:30:59,640 --> 00:31:04,680 +create one connector and use it anywhere This is + +537 +00:31:04,680 --> 00:31:10,380 +one example Another example, you make a game In + +538 +00:31:10,380 --> 00:31:15,020 +the game, you need to handle textures, which are + +539 +00:31:15,020 --> 00:31:18,780 +drawn on shapes, you need to handle 3D objects, + +540 +00:31:19,200 --> 00:31:21,760 +you need to handle audio files for sound, pictures + +541 +00:31:21,760 --> 00:31:25,180 +and others. And these files that I downloaded, you + +542 +00:31:25,180 --> 00:31:29,460 +will use them throughout the game, level 1 and 2 + +543 +00:31:29,460 --> 00:31:34,820 +in design and so on.Does it make sense that every + +544 +00:31:34,820 --> 00:31:35,820 +time a student starts a new level, he should + +545 +00:31:35,820 --> 00:31:38,020 +download the same content over and over again? No, + +546 +00:31:38,060 --> 00:31:40,580 +he should download it and load it to one object + +547 +00:31:40,580 --> 00:31:44,200 +and use it everywhere in the application. Now, + +548 +00:31:44,260 --> 00:31:47,000 +from the bad practices that students or beginners + +549 +00:31:47,000 --> 00:31:54,450 +do, they do the following.I go to the first + +550 +00:31:54,450 --> 00:31:57,550 +screen, it needs a connection to the database, + +551 +00:31:58,130 --> 00:32:02,890 +okay? I go and create an object, DB connector + +552 +00:32:02,890 --> 00:32:10,550 +equals C equals new DB connector + +553 +00:32:12,650 --> 00:32:18,470 +I create a new object and go to C and say query c + +554 +00:32:18,470 --> 00:32:23,930 +.insert database. It opens a new screen and I need + +555 +00:32:23,930 --> 00:32:27,510 +it to show from the database. I go to simple, this + +556 +00:32:27,510 --> 00:32:30,680 +is our knowledge, we do the U.New is free, right? + +557 +00:32:30,940 --> 00:32:34,240 +No. Here, I opened a new screen, I did what? New, + +558 +00:32:34,660 --> 00:32:36,360 +Connector, I connected it to the database and I + +559 +00:32:36,360 --> 00:32:39,280 +did a query again. In each screen, you have to do + +560 +00:32:39,280 --> 00:32:41,920 +a new, okay? But sometimes these screens don't + +561 +00:32:41,920 --> 00:32:45,800 +close, they stay closed. Okay? In the mobile, yes, + +562 +00:32:45,860 --> 00:32:49,300 +this remains in the back stack. Okay? Well, this + +563 +00:32:49,300 --> 00:32:51,340 +connector exists and this connector exists. This + +564 +00:32:51,340 --> 00:32:52,680 +takes from the memory and this takes from the + +565 +00:32:52,680 --> 00:32:54,600 +memory. Then, for example, in the mobile + +566 +00:32:54,600 --> 00:32:57,430 +specifically, you are with me. Battery. In the + +567 +00:32:57,430 --> 00:32:59,410 +battery, it should be efficient. The memory is + +568 +00:32:59,410 --> 00:33:01,770 +limited and the battery is limited. Right or + +569 +00:33:01,770 --> 00:33:03,770 +wrong? So in the memory, you take care of every + +570 +00:33:03,770 --> 00:33:06,770 +object you create, not like a desktop. Create + +571 +00:33:06,770 --> 00:33:11,730 +whatever you want. Okay? No. Here, one object + +572 +00:33:11,730 --> 00:33:16,950 +should be created and used everywhere. Okay? + +573 +00:33:17,090 --> 00:33:19,490 +Someone might say, I created it here. How can I + +574 +00:33:19,490 --> 00:33:22,890 +open this screen? Okay? I need to use what's on + +575 +00:33:22,890 --> 00:33:28,770 +that screen.Okay? One can say simply that this + +576 +00:33:28,770 --> 00:33:31,450 +screen is a class and you make objects from it. + +577 +00:33:31,770 --> 00:33:37,070 +When you create this, you send this to this one. + +578 +00:33:37,350 --> 00:33:41,310 +Parameter through method or constructor. Right or + +579 +00:33:41,310 --> 00:33:43,520 +wrong?Okay, this also won't solve the problem. + +580 +00:33:43,620 --> 00:33:45,940 +Why? Sometimes there is not only one screen, there + +581 +00:33:45,940 --> 00:33:49,440 +are 20-30 screens. You grab these guys and move + +582 +00:33:49,440 --> 00:33:52,360 +them all. Parameter for this, parameter for this, + +583 +00:33:52,420 --> 00:33:54,220 +parameter for this. You keep moving them. Okay? + +584 +00:33:55,040 --> 00:33:58,160 +No, I mean, what will happen to the program? There + +585 +00:33:58,160 --> 00:34:01,720 +is a big dependency. Basically, this is also not a + +586 +00:34:01,720 --> 00:34:03,720 +health sign, right or not? It means that you + +587 +00:34:03,720 --> 00:34:08,860 +changed here. It hit this one, right? Yes, there + +588 +00:34:08,860 --> 00:34:10,580 +is a lot of coupling when you keep sending + +589 +00:34:10,580 --> 00:34:12,700 +objects. Ok, it is true that you made one object, + +590 +00:34:13,240 --> 00:34:15,540 +but there is coupling that you need to send it + +591 +00:34:15,540 --> 00:34:19,300 +from one place to another, ok? Izmilk said + +592 +00:34:19,300 --> 00:34:20,560 +something good, we were going to talk about it + +593 +00:34:20,560 --> 00:34:23,040 +here. He said, it is simple, make a static and + +594 +00:34:23,040 --> 00:34:26,720 +send it anywhere. No, the static does not solve + +595 +00:34:26,720 --> 00:34:29,260 +the problem. Do you know why? Did you notice that + +596 +00:34:29,260 --> 00:34:35,080 +the static is good, but the problem is that even + +597 +00:34:35,080 --> 00:34:40,260 +if you don't need it.Okay? So this aesthetic, we + +598 +00:34:40,260 --> 00:34:42,260 +know that even if you didn't create an object from + +599 +00:34:42,260 --> 00:34:45,260 +scratch, even from all the screens, it will still + +600 +00:34:45,260 --> 00:34:48,700 +be there in your memory. This means, imagine for + +601 +00:34:48,700 --> 00:34:52,900 +example in a game, okay? You put all the audio, + +602 +00:34:53,620 --> 00:34:56,060 +textures, and 3D objects, all of them with + +603 +00:34:56,060 --> 00:34:57,880 +aesthetics, so that you can use them wherever you + +604 +00:34:57,880 --> 00:35:02,340 +want. So the game, as soon as it starts, it will + +605 +00:35:02,340 --> 00:35:05,700 +download and load all the Gigs, all the data, all + +606 +00:35:05,700 --> 00:35:09,550 +at once.No, we want a better solution that does + +607 +00:35:09,550 --> 00:35:12,370 +not create what you want it to create except in + +608 +00:35:12,370 --> 00:35:17,070 +the time that you need it to create. Okay? This + +609 +00:35:17,070 --> 00:35:18,910 +scenario explains to you what is the problem that + +610 +00:35:18,910 --> 00:35:22,210 +we are going to face. How can we create one object + +611 +00:35:22,210 --> 00:35:26,230 +from a class when it is needed only. Okay? And + +612 +00:35:26,230 --> 00:35:28,510 +when this object is created, we will use it + +613 +00:35:28,510 --> 00:35:33,710 +anywhere in the application. Okay? We create it + +614 +00:35:33,710 --> 00:35:37,320 +when it is needed.only, and create it only once, + +615 +00:35:37,500 --> 00:35:41,760 +and use it everywhere in the application. This + +616 +00:35:41,760 --> 00:35:44,120 +will be applied by using the singleton pattern. + +617 +00:35:44,740 --> 00:35:46,840 +Where are the examples of applications for use? As + +618 +00:35:46,840 --> 00:35:48,500 +I said, I need to make a connection to the + +619 +00:35:48,500 --> 00:35:52,200 +database once and use it everywhere. I need to + +620 +00:35:52,200 --> 00:35:57,580 +load configuration data or large data once and use + +621 +00:35:57,580 --> 00:36:01,710 +it everywhere.Or for example one of the scenarios + +622 +00:36:01,710 --> 00:36:07,790 +here, sometimes it is important to have only one + +623 +00:36:07,790 --> 00:36:12,790 +instance for a class For + +624 +00:36:12,790 --> 00:36:15,730 +example in a system there should be only one + +625 +00:36:15,730 --> 00:36:19,940 +window manager For example, in some GUI + +626 +00:36:19,940 --> 00:36:20,860 +applications, they make something called Window + +627 +00:36:20,860 --> 00:36:23,740 +Manager to control the components of the screen + +628 +00:36:23,740 --> 00:36:27,880 +and sub-screens that appear. So this Window + +629 +00:36:27,880 --> 00:36:31,260 +Manager is supposed to be an object that you make + +630 +00:36:31,260 --> 00:36:35,700 +more than once. Another example is a file system + +631 +00:36:35,700 --> 00:36:38,760 +object that reads certain files. Or Print Spooler. + +632 +00:36:38,800 --> 00:36:40,480 +Do you know what Print Spooler is? It's printing. + +633 +00:36:41,220 --> 00:36:44,900 +The printing service must be compatible with All + +634 +00:36:44,900 --> 00:36:46,960 +of them. Because the idea is that any printing + +635 +00:36:46,960 --> 00:36:49,280 +order that comes, they put it in a queue. Okay? + +636 +00:36:49,820 --> 00:36:52,220 +And they arrange it according to the incoming + +637 +00:36:52,220 --> 00:36:53,560 +orders. It doesn't make sense that every time you + +638 +00:36:53,560 --> 00:36:55,980 +want to open a new screen, they make a new queue + +639 +00:36:55,980 --> 00:36:59,080 +for you. Okay? And they even know where to connect + +640 +00:36:59,080 --> 00:37:02,830 +to a web service.Okay? Each screen needs to + +641 +00:37:02,830 --> 00:37:06,670 +connect with the API. This logic, whenever you + +642 +00:37:06,670 --> 00:37:08,430 +open a screen, creates a new connection to the + +643 +00:37:08,430 --> 00:37:12,630 +API, also takes resources from it. This is an + +644 +00:37:12,630 --> 00:37:15,070 +introduction to the importance of the Singleton + +645 +00:37:15,070 --> 00:37:17,700 +Design Pattern. Next time, we will see directlyHow + +646 +00:37:17,700 --> 00:37:21,220 +can we apply or make a class where we can create + +647 +00:37:21,220 --> 00:37:24,020 +one object and use it everywhere in the + +648 +00:37:24,020 --> 00:37:28,200 +application? Usually singletons are used for + +649 +00:37:28,200 --> 00:37:31,540 +centralized management of internal or external + +650 +00:37:31,540 --> 00:37:35,380 +resources. Centralized management. It is called + +651 +00:37:35,380 --> 00:37:37,020 +centralized because there is one object + +652 +00:37:37,020 --> 00:37:40,920 +responsible for more than one thing. And through + +653 +00:37:40,920 --> 00:37:44,290 +it, I use it everywhere in the application.and + +654 +00:37:44,290 --> 00:37:47,390 +they provide a global point of access to + +655 +00:37:47,390 --> 00:37:49,930 +themselves. What is a global point of access? It + +656 +00:37:49,930 --> 00:37:52,690 +is a single point of access that everyone can use. + +657 +00:37:54,170 --> 00:37:54,970 +God bless you all. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/UqimOKHsJGg_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/UqimOKHsJGg_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..a31e87ad01f90ba08624c8226fb8fbc5ed0af9df --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/UqimOKHsJGg_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 3189, "start": 5.35, "end": 31.89, "text": " Good morning everyone, peace be upon you. Today, God willing, we will continue with the topic of the factory method design pattern. In the previous lecture, we started talking about the factory method. In short, the factory method is a design pattern that enables the superclass to rely on the subclasses to work on a part of the code that it does not know what it is. What does this mean? It means that sometimes I have code", "tokens": [2205, 2446, 1518, 11, 4336, 312, 3564, 291, 13, 2692, 11, 1265, 4950, 11, 321, 486, 2354, 365, 264, 4829, 295, 264, 9265, 3170, 1715, 5102, 13, 682, 264, 3894, 7991, 11, 321, 1409, 1417, 466, 264, 9265, 3170, 13, 682, 2099, 11, 264, 9265, 3170, 307, 257, 1715, 5102, 300, 17077, 264, 1687, 11665, 281, 10687, 322, 264, 1422, 11665, 279, 281, 589, 322, 257, 644, 295, 264, 3089, 300, 309, 775, 406, 458, 437, 309, 307, 13, 708, 775, 341, 914, 30, 467, 1355, 300, 2171, 286, 362, 3089], "avg_logprob": -0.3892663069393324, "compression_ratio": 1.805084745762712, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 5.35, "end": 5.57, "word": " Good", "probability": 0.256103515625}, {"start": 5.57, "end": 5.71, "word": " morning", "probability": 0.38427734375}, {"start": 5.71, "end": 5.89, "word": " everyone,", "probability": 0.41748046875}, {"start": 5.91, "end": 6.09, "word": " peace", "probability": 0.2489013671875}, {"start": 6.09, "end": 6.27, "word": " be", "probability": 0.8173828125}, {"start": 6.27, "end": 6.27, "word": " upon", "probability": 0.8662109375}, {"start": 6.27, "end": 6.51, "word": " you.", "probability": 0.96923828125}, {"start": 8.23, "end": 8.71, "word": " Today,", "probability": 0.646484375}, {"start": 8.83, "end": 9.07, "word": " God", "probability": 0.469482421875}, {"start": 9.07, "end": 9.07, "word": " willing,", "probability": 0.76416015625}, {"start": 9.13, "end": 9.27, "word": " we", "probability": 0.890625}, {"start": 9.27, "end": 9.33, "word": " will", "probability": 0.697265625}, {"start": 9.33, "end": 9.75, "word": " continue", "probability": 0.81982421875}, {"start": 9.75, "end": 10.13, "word": " with", "probability": 0.28173828125}, {"start": 10.13, "end": 10.23, "word": " the", "probability": 0.69775390625}, {"start": 10.23, "end": 10.47, "word": " topic", "probability": 0.467529296875}, {"start": 10.47, "end": 11.03, "word": " of", "probability": 0.876953125}, {"start": 11.03, "end": 11.13, "word": " the", "probability": 0.51708984375}, {"start": 11.13, "end": 11.49, "word": " factory", "probability": 0.466552734375}, {"start": 11.49, "end": 11.83, "word": " method", "probability": 0.921875}, {"start": 11.83, "end": 12.15, "word": " design", "probability": 0.85400390625}, {"start": 12.15, "end": 12.61, "word": " pattern.", "probability": 0.875}, {"start": 13.61, "end": 14.09, "word": " In", "probability": 0.80859375}, {"start": 14.09, "end": 14.11, "word": " the", "probability": 0.84912109375}, {"start": 14.11, "end": 14.11, "word": " previous", "probability": 0.435791015625}, {"start": 14.11, "end": 14.79, "word": " lecture,", "probability": 0.8759765625}, {"start": 15.17, "end": 15.89, "word": " we", "probability": 0.93701171875}, {"start": 15.89, "end": 15.89, "word": " started", "probability": 0.7509765625}, {"start": 15.89, "end": 16.13, "word": " talking", "probability": 0.560546875}, {"start": 16.13, "end": 16.29, "word": " about", "probability": 0.90478515625}, {"start": 16.29, "end": 16.39, "word": " the", "probability": 0.845703125}, {"start": 16.39, "end": 16.65, "word": " factory", "probability": 0.85546875}, {"start": 16.65, "end": 16.97, "word": " method.", "probability": 0.9443359375}, {"start": 17.11, "end": 17.29, "word": " In", "probability": 0.291259765625}, {"start": 17.29, "end": 17.77, "word": " short,", "probability": 0.62939453125}, {"start": 18.11, "end": 18.21, "word": " the", "probability": 0.463623046875}, {"start": 18.21, "end": 18.47, "word": " factory", "probability": 0.89208984375}, {"start": 18.47, "end": 18.81, "word": " method", "probability": 0.9482421875}, {"start": 18.81, "end": 18.93, "word": " is", "probability": 0.9150390625}, {"start": 18.93, "end": 19.03, "word": " a", "probability": 0.91796875}, {"start": 19.03, "end": 19.29, "word": " design", "probability": 0.9326171875}, {"start": 19.29, "end": 19.61, "word": " pattern", "probability": 0.88037109375}, {"start": 19.61, "end": 19.75, "word": " that", "probability": 0.85595703125}, {"start": 19.75, "end": 20.83, "word": " enables", "probability": 0.59375}, {"start": 20.83, "end": 21.41, "word": " the", "probability": 0.5576171875}, {"start": 21.41, "end": 22.31, "word": " superclass", "probability": 0.739990234375}, {"start": 22.31, "end": 22.77, "word": " to", "probability": 0.87255859375}, {"start": 22.77, "end": 23.11, "word": " rely", "probability": 0.1302490234375}, {"start": 23.11, "end": 23.47, "word": " on", "probability": 0.9365234375}, {"start": 23.47, "end": 23.55, "word": " the", "probability": 0.5810546875}, {"start": 23.55, "end": 24.33, "word": " subclasses", "probability": 0.8330078125}, {"start": 24.33, "end": 24.39, "word": " to", "probability": 0.89501953125}, {"start": 24.39, "end": 24.87, "word": " work", "probability": 0.52001953125}, {"start": 24.87, "end": 25.09, "word": " on", "probability": 0.78662109375}, {"start": 25.09, "end": 25.13, "word": " a", "probability": 0.39404296875}, {"start": 25.13, "end": 25.27, "word": " part", "probability": 0.80078125}, {"start": 25.27, "end": 25.49, "word": " of", "probability": 0.97509765625}, {"start": 25.49, "end": 25.61, "word": " the", "probability": 0.86865234375}, {"start": 25.61, "end": 25.83, "word": " code", "probability": 0.9375}, {"start": 25.83, "end": 25.95, "word": " that", "probability": 0.497802734375}, {"start": 25.95, "end": 26.11, "word": " it", "probability": 0.525390625}, {"start": 26.11, "end": 26.25, "word": " does", "probability": 0.87109375}, {"start": 26.25, "end": 26.25, "word": " not", "probability": 0.9462890625}, {"start": 26.25, "end": 26.53, "word": " know", "probability": 0.87109375}, {"start": 26.53, "end": 26.73, "word": " what", "probability": 0.74755859375}, {"start": 26.73, "end": 26.87, "word": " it", "probability": 0.81689453125}, {"start": 26.87, "end": 26.99, "word": " is.", "probability": 0.92724609375}, {"start": 27.85, "end": 28.33, "word": " What", "probability": 0.371826171875}, {"start": 28.33, "end": 28.45, "word": " does", "probability": 0.853515625}, {"start": 28.45, "end": 28.61, "word": " this", "probability": 0.84326171875}, {"start": 28.61, "end": 28.81, "word": " mean?", "probability": 0.9326171875}, {"start": 29.13, "end": 29.21, "word": " It", "probability": 0.7275390625}, {"start": 29.21, "end": 29.43, "word": " means", "probability": 0.9345703125}, {"start": 29.43, "end": 29.97, "word": " that", "probability": 0.91552734375}, {"start": 29.97, "end": 30.75, "word": " sometimes", "probability": 0.8212890625}, {"start": 30.75, "end": 31.03, "word": " I", "probability": 0.916015625}, {"start": 31.03, "end": 31.33, "word": " have", "probability": 0.8701171875}, {"start": 31.33, "end": 31.89, "word": " code", "probability": 0.68115234375}], "temperature": 1.0}, {"id": 2, "seek": 5909, "start": 32.79, "end": 59.09, "text": " or a certain function, a large part of it is common between subclasses and there is a small part that is different. Like what is a small part that is different? It means that the object that I want to create is different from subclass to subclass, but the rest of the steps are constant. Because of this difference, I could not put the code in the superclass. To solve this problem, we took the code and put it in the superclass, but the different parts", "tokens": [420, 257, 1629, 2445, 11, 257, 2416, 644, 295, 309, 307, 2689, 1296, 1422, 11665, 279, 293, 456, 307, 257, 1359, 644, 300, 307, 819, 13, 1743, 437, 307, 257, 1359, 644, 300, 307, 819, 30, 467, 1355, 300, 264, 2657, 300, 286, 528, 281, 1884, 307, 819, 490, 1422, 11665, 281, 1422, 11665, 11, 457, 264, 1472, 295, 264, 4439, 366, 5754, 13, 1436, 295, 341, 2649, 11, 286, 727, 406, 829, 264, 3089, 294, 264, 1687, 11665, 13, 1407, 5039, 341, 1154, 11, 321, 1890, 264, 3089, 293, 829, 309, 294, 264, 1687, 11665, 11, 457, 264, 819, 3166], "avg_logprob": -0.3967524489351347, "compression_ratio": 1.9653679653679654, "no_speech_prob": 4.708766937255859e-06, "words": [{"start": 32.79, "end": 33.03, "word": " or", "probability": 0.464599609375}, {"start": 33.03, "end": 33.17, "word": " a", "probability": 0.6669921875}, {"start": 33.17, "end": 33.73, "word": " certain", "probability": 0.36474609375}, {"start": 33.73, "end": 33.79, "word": " function,", "probability": 0.94482421875}, {"start": 33.97, "end": 34.07, "word": " a", "probability": 0.38232421875}, {"start": 34.07, "end": 34.49, "word": " large", "probability": 0.5615234375}, {"start": 34.49, "end": 34.49, "word": " part", "probability": 0.724609375}, {"start": 34.49, "end": 34.73, "word": " of", "probability": 0.90869140625}, {"start": 34.73, "end": 34.95, "word": " it", "probability": 0.607421875}, {"start": 34.95, "end": 35.33, "word": " is", "probability": 0.79541015625}, {"start": 35.33, "end": 35.57, "word": " common", "probability": 0.29931640625}, {"start": 35.57, "end": 35.95, "word": " between", "probability": 0.5625}, {"start": 35.95, "end": 36.63, "word": " subclasses", "probability": 0.7814127604166666}, {"start": 36.63, "end": 36.69, "word": " and", "probability": 0.5615234375}, {"start": 36.69, "end": 36.83, "word": " there", "probability": 0.249267578125}, {"start": 36.83, "end": 36.83, "word": " is", "probability": 0.69677734375}, {"start": 36.83, "end": 37.15, "word": " a", "probability": 0.8505859375}, {"start": 37.15, "end": 37.27, "word": " small", "probability": 0.58837890625}, {"start": 37.27, "end": 37.47, "word": " part", "probability": 0.6796875}, {"start": 37.47, "end": 37.67, "word": " that", "probability": 0.419921875}, {"start": 37.67, "end": 37.93, "word": " is", "probability": 0.7919921875}, {"start": 37.93, "end": 38.35, "word": " different.", "probability": 0.84326171875}, {"start": 38.65, "end": 39.09, "word": " Like", "probability": 0.401123046875}, {"start": 39.09, "end": 39.25, "word": " what", "probability": 0.8115234375}, {"start": 39.25, "end": 39.33, "word": " is", "probability": 0.10467529296875}, {"start": 39.33, "end": 39.57, "word": " a", "probability": 0.280517578125}, {"start": 39.57, "end": 39.63, "word": " small", "probability": 0.82080078125}, {"start": 39.63, "end": 39.63, "word": " part", "probability": 0.740234375}, {"start": 39.63, "end": 39.83, "word": " that", "probability": 0.52392578125}, {"start": 39.83, "end": 39.83, "word": " is", "probability": 0.91552734375}, {"start": 39.83, "end": 40.03, "word": " different?", "probability": 0.890625}, {"start": 40.15, "end": 40.31, "word": " It", "probability": 0.27099609375}, {"start": 40.31, "end": 40.41, "word": " means", "probability": 0.8212890625}, {"start": 40.41, "end": 41.01, "word": " that", "probability": 0.72607421875}, {"start": 41.01, "end": 41.07, "word": " the", "probability": 0.87255859375}, {"start": 41.07, "end": 41.45, "word": " object", "probability": 0.92578125}, {"start": 41.45, "end": 41.59, "word": " that", "probability": 0.73779296875}, {"start": 41.59, "end": 41.71, "word": " I", "probability": 0.73828125}, {"start": 41.71, "end": 41.91, "word": " want", "probability": 0.74951171875}, {"start": 41.91, "end": 41.97, "word": " to", "probability": 0.9638671875}, {"start": 41.97, "end": 42.19, "word": " create", "probability": 0.65576171875}, {"start": 42.19, "end": 42.35, "word": " is", "probability": 0.8779296875}, {"start": 42.35, "end": 42.69, "word": " different", "probability": 0.8857421875}, {"start": 42.69, "end": 42.95, "word": " from", "probability": 0.7431640625}, {"start": 42.95, "end": 43.47, "word": " subclass", "probability": 0.89306640625}, {"start": 43.47, "end": 43.61, "word": " to", "probability": 0.94482421875}, {"start": 43.61, "end": 44.05, "word": " subclass,", "probability": 0.968017578125}, {"start": 44.15, "end": 44.29, "word": " but", "probability": 0.8193359375}, {"start": 44.29, "end": 44.45, "word": " the", "probability": 0.58544921875}, {"start": 44.45, "end": 44.61, "word": " rest", "probability": 0.80078125}, {"start": 44.61, "end": 44.75, "word": " of", "probability": 0.95458984375}, {"start": 44.75, "end": 44.77, "word": " the", "probability": 0.81884765625}, {"start": 44.77, "end": 45.03, "word": " steps", "probability": 0.7509765625}, {"start": 45.03, "end": 45.63, "word": " are", "probability": 0.85595703125}, {"start": 45.63, "end": 46.37, "word": " constant.", "probability": 0.3212890625}, {"start": 47.75, "end": 48.19, "word": " Because", "probability": 0.5126953125}, {"start": 48.19, "end": 48.83, "word": " of", "probability": 0.95068359375}, {"start": 48.83, "end": 48.97, "word": " this", "probability": 0.4677734375}, {"start": 48.97, "end": 49.41, "word": " difference,", "probability": 0.52099609375}, {"start": 49.43, "end": 49.83, "word": " I", "probability": 0.6982421875}, {"start": 49.83, "end": 49.95, "word": " could", "probability": 0.430908203125}, {"start": 49.95, "end": 50.09, "word": " not", "probability": 0.94580078125}, {"start": 50.09, "end": 50.39, "word": " put", "probability": 0.60498046875}, {"start": 50.39, "end": 50.53, "word": " the", "probability": 0.8466796875}, {"start": 50.53, "end": 50.73, "word": " code", "probability": 0.93505859375}, {"start": 50.73, "end": 50.83, "word": " in", "probability": 0.861328125}, {"start": 50.83, "end": 50.93, "word": " the", "probability": 0.80859375}, {"start": 50.93, "end": 51.49, "word": " superclass.", "probability": 0.932861328125}, {"start": 52.19, "end": 52.41, "word": " To", "probability": 0.489501953125}, {"start": 52.41, "end": 52.71, "word": " solve", "probability": 0.76318359375}, {"start": 52.71, "end": 52.81, "word": " this", "probability": 0.927734375}, {"start": 52.81, "end": 53.13, "word": " problem,", "probability": 0.70068359375}, {"start": 54.07, "end": 54.65, "word": " we", "probability": 0.78076171875}, {"start": 54.65, "end": 54.65, "word": " took", "probability": 0.451416015625}, {"start": 54.65, "end": 54.85, "word": " the", "probability": 0.8994140625}, {"start": 54.85, "end": 55.13, "word": " code", "probability": 0.9375}, {"start": 55.13, "end": 55.31, "word": " and", "probability": 0.8154296875}, {"start": 55.31, "end": 55.53, "word": " put", "probability": 0.720703125}, {"start": 55.53, "end": 55.71, "word": " it", "probability": 0.94091796875}, {"start": 55.71, "end": 55.83, "word": " in", "probability": 0.93115234375}, {"start": 55.83, "end": 55.93, "word": " the", "probability": 0.7041015625}, {"start": 55.93, "end": 56.57, "word": " superclass,", "probability": 0.970458984375}, {"start": 57.17, "end": 57.55, "word": " but", "probability": 0.418701171875}, {"start": 57.55, "end": 58.21, "word": " the", "probability": 0.83837890625}, {"start": 58.21, "end": 59.09, "word": " different", "probability": 0.7724609375}, {"start": 59.09, "end": 59.09, "word": " parts", "probability": 0.8271484375}], "temperature": 1.0}, {"id": 3, "seek": 6898, "start": 60.22, "end": 68.98, "text": "We imported it to the subclass by using abstract method We put the code in the subclass, and wherever there is a different part, we put it in its place", "tokens": [4360, 25524, 309, 281, 264, 1422, 11665, 538, 1228, 12649, 3170, 492, 829, 264, 3089, 294, 264, 1422, 11665, 11, 293, 8660, 456, 307, 257, 819, 644, 11, 321, 829, 309, 294, 1080, 1081], "avg_logprob": -0.7616071598870414, "compression_ratio": 1.3603603603603605, "no_speech_prob": 2.2470951080322266e-05, "words": [{"start": 60.22, "end": 60.66, "word": "We", "probability": 0.18115234375}, {"start": 60.66, "end": 61.06, "word": " imported", "probability": 0.049041748046875}, {"start": 61.06, "end": 61.28, "word": " it", "probability": 0.52734375}, {"start": 61.28, "end": 61.4, "word": " to", "probability": 0.52294921875}, {"start": 61.4, "end": 61.5, "word": " the", "probability": 0.568359375}, {"start": 61.5, "end": 61.9, "word": " subclass", "probability": 0.703125}, {"start": 61.9, "end": 62.32, "word": " by", "probability": 0.3310546875}, {"start": 62.32, "end": 62.7, "word": " using", "probability": 0.5625}, {"start": 62.7, "end": 63.12, "word": " abstract", "probability": 0.52880859375}, {"start": 63.12, "end": 63.78, "word": " method", "probability": 0.81201171875}, {"start": 63.78, "end": 65.46, "word": " We", "probability": 0.08612060546875}, {"start": 65.46, "end": 66.04, "word": " put", "probability": 0.347900390625}, {"start": 66.04, "end": 66.04, "word": " the", "probability": 0.61962890625}, {"start": 66.04, "end": 66.04, "word": " code", "probability": 0.8623046875}, {"start": 66.04, "end": 66.2, "word": " in", "probability": 0.671875}, {"start": 66.2, "end": 66.32, "word": " the", "probability": 0.77294921875}, {"start": 66.32, "end": 66.82, "word": " subclass,", "probability": 0.6707763671875}, {"start": 66.92, "end": 67.0, "word": " and", "probability": 0.351318359375}, {"start": 67.0, "end": 67.08, "word": " wherever", "probability": 0.2724609375}, {"start": 67.08, "end": 67.26, "word": " there", "probability": 0.806640625}, {"start": 67.26, "end": 67.34, "word": " is", "probability": 0.62109375}, {"start": 67.34, "end": 67.64, "word": " a", "probability": 0.70458984375}, {"start": 67.64, "end": 67.92, "word": " different", "probability": 0.52978515625}, {"start": 67.92, "end": 67.94, "word": " part,", "probability": 0.63818359375}, {"start": 68.22, "end": 68.36, "word": " we", "probability": 0.3974609375}, {"start": 68.36, "end": 68.64, "word": " put", "probability": 0.60693359375}, {"start": 68.64, "end": 68.78, "word": " it", "probability": 0.64306640625}, {"start": 68.78, "end": 68.8, "word": " in", "probability": 0.3486328125}, {"start": 68.8, "end": 68.8, "word": " its", "probability": 0.430908203125}, {"start": 68.8, "end": 68.98, "word": " place", "probability": 0.70703125}], "temperature": 1.0}, {"id": 4, "seek": 9199, "start": 69.79, "end": 91.99, "text": " I came up with a method, and this method was implemented in the subclass. We saw this in the example we worked on in the social network connectors and posters. How each subclass makes a different connector, but the rest of the steps are constant, so we created a create connector that the subclass implements. In the second example,", "tokens": [286, 1361, 493, 365, 257, 3170, 11, 293, 341, 3170, 390, 12270, 294, 264, 1422, 11665, 13, 492, 1866, 341, 294, 264, 1365, 321, 2732, 322, 294, 264, 2093, 3209, 31865, 293, 28172, 13, 1012, 1184, 1422, 11665, 1669, 257, 819, 19127, 11, 457, 264, 1472, 295, 264, 4439, 366, 5754, 11, 370, 321, 2942, 257, 1884, 19127, 300, 264, 1422, 11665, 704, 17988, 13, 682, 264, 1150, 1365, 11], "avg_logprob": -0.5176056102967598, "compression_ratio": 1.7903225806451613, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 69.79, "end": 70.11, "word": " I", "probability": 0.1539306640625}, {"start": 70.11, "end": 70.19, "word": " came", "probability": 0.11077880859375}, {"start": 70.19, "end": 70.23, "word": " up", "probability": 0.8017578125}, {"start": 70.23, "end": 70.29, "word": " with", "probability": 0.8974609375}, {"start": 70.29, "end": 70.41, "word": " a", "probability": 0.87548828125}, {"start": 70.41, "end": 70.67, "word": " method,", "probability": 0.92431640625}, {"start": 71.09, "end": 71.17, "word": " and", "probability": 0.5537109375}, {"start": 71.17, "end": 71.35, "word": " this", "probability": 0.57421875}, {"start": 71.35, "end": 71.85, "word": " method", "probability": 0.9189453125}, {"start": 71.85, "end": 72.15, "word": " was", "probability": 0.59716796875}, {"start": 72.15, "end": 72.71, "word": " implemented", "probability": 0.43212890625}, {"start": 72.71, "end": 73.95, "word": " in", "probability": 0.74755859375}, {"start": 73.95, "end": 74.07, "word": " the", "probability": 0.71630859375}, {"start": 74.07, "end": 74.49, "word": " subclass.", "probability": 0.882080078125}, {"start": 74.83, "end": 74.99, "word": " We", "probability": 0.77392578125}, {"start": 74.99, "end": 75.15, "word": " saw", "probability": 0.69580078125}, {"start": 75.15, "end": 75.45, "word": " this", "probability": 0.76123046875}, {"start": 75.45, "end": 75.95, "word": " in", "probability": 0.495849609375}, {"start": 75.95, "end": 76.53, "word": " the", "probability": 0.66162109375}, {"start": 76.53, "end": 77.09, "word": " example", "probability": 0.4765625}, {"start": 77.09, "end": 77.95, "word": " we", "probability": 0.405029296875}, {"start": 77.95, "end": 78.23, "word": " worked", "probability": 0.48583984375}, {"start": 78.23, "end": 78.43, "word": " on", "probability": 0.5712890625}, {"start": 78.43, "end": 78.57, "word": " in", "probability": 0.390869140625}, {"start": 78.57, "end": 78.57, "word": " the", "probability": 0.58935546875}, {"start": 78.57, "end": 78.75, "word": " social", "probability": 0.25537109375}, {"start": 78.75, "end": 79.83, "word": " network", "probability": 0.859375}, {"start": 79.83, "end": 80.73, "word": " connectors", "probability": 0.5869140625}, {"start": 80.73, "end": 81.15, "word": " and", "probability": 0.67236328125}, {"start": 81.15, "end": 81.63, "word": " posters.", "probability": 0.89599609375}, {"start": 82.25, "end": 82.81, "word": " How", "probability": 0.489013671875}, {"start": 82.81, "end": 83.37, "word": " each", "probability": 0.59765625}, {"start": 83.37, "end": 83.79, "word": " subclass", "probability": 0.940673828125}, {"start": 83.79, "end": 84.03, "word": " makes", "probability": 0.258056640625}, {"start": 84.03, "end": 84.21, "word": " a", "probability": 0.75537109375}, {"start": 84.21, "end": 84.95, "word": " different", "probability": 0.755859375}, {"start": 84.95, "end": 84.95, "word": " connector,", "probability": 0.88037109375}, {"start": 85.23, "end": 85.43, "word": " but", "probability": 0.84423828125}, {"start": 85.43, "end": 85.59, "word": " the", "probability": 0.6220703125}, {"start": 85.59, "end": 85.69, "word": " rest", "probability": 0.79541015625}, {"start": 85.69, "end": 85.77, "word": " of", "probability": 0.92724609375}, {"start": 85.77, "end": 85.85, "word": " the", "probability": 0.89013671875}, {"start": 85.85, "end": 86.11, "word": " steps", "probability": 0.81982421875}, {"start": 86.11, "end": 86.87, "word": " are", "probability": 0.783203125}, {"start": 86.87, "end": 87.17, "word": " constant,", "probability": 0.2120361328125}, {"start": 87.35, "end": 87.45, "word": " so", "probability": 0.748046875}, {"start": 87.45, "end": 87.69, "word": " we", "probability": 0.91845703125}, {"start": 87.69, "end": 87.69, "word": " created", "probability": 0.443603515625}, {"start": 87.69, "end": 87.81, "word": " a", "probability": 0.59130859375}, {"start": 87.81, "end": 88.09, "word": " create", "probability": 0.48095703125}, {"start": 88.09, "end": 88.63, "word": " connector", "probability": 0.88720703125}, {"start": 88.63, "end": 89.19, "word": " that", "probability": 0.46337890625}, {"start": 89.19, "end": 89.33, "word": " the", "probability": 0.65185546875}, {"start": 89.33, "end": 89.69, "word": " subclass", "probability": 0.957275390625}, {"start": 89.69, "end": 90.45, "word": " implements.", "probability": 0.61187744140625}, {"start": 90.93, "end": 91.45, "word": " In", "probability": 0.888671875}, {"start": 91.45, "end": 91.53, "word": " the", "probability": 0.87353515625}, {"start": 91.53, "end": 91.99, "word": " second", "probability": 0.84423828125}, {"start": 91.99, "end": 91.99, "word": " example,", "probability": 0.9140625}], "temperature": 1.0}, {"id": 5, "seek": 11749, "start": 93.67, "end": 117.49, "text": "I want to create a new maze. I want to change the content, but the order of the maze and its components should be the same. So the method createMaze in the superclass remained the same. But when it comes to createRoom and createWall, those that create the room and the wall, I made them methods, so that the superclass can override them and change the type of object that is created in them. Now let's look at another example.", "tokens": [40, 528, 281, 1884, 257, 777, 33032, 13, 286, 528, 281, 1319, 264, 2701, 11, 457, 264, 1668, 295, 264, 33032, 293, 1080, 6677, 820, 312, 264, 912, 13, 407, 264, 3170, 1884, 44, 13660, 294, 264, 1687, 11665, 12780, 264, 912, 13, 583, 562, 309, 1487, 281, 1884, 49, 78, 298, 293, 1884, 54, 336, 11, 729, 300, 1884, 264, 1808, 293, 264, 2929, 11, 286, 1027, 552, 7150, 11, 370, 300, 264, 1687, 11665, 393, 42321, 552, 293, 1319, 264, 2010, 295, 2657, 300, 307, 2942, 294, 552, 13, 823, 718, 311, 574, 412, 1071, 1365, 13], "avg_logprob": -0.43093749225139616, "compression_ratio": 1.8602620087336244, "no_speech_prob": 5.125999450683594e-06, "words": [{"start": 93.67, "end": 93.91, "word": "I", "probability": 0.67626953125}, {"start": 93.91, "end": 94.11, "word": " want", "probability": 0.72705078125}, {"start": 94.11, "end": 94.21, "word": " to", "probability": 0.9658203125}, {"start": 94.21, "end": 94.39, "word": " create", "probability": 0.423095703125}, {"start": 94.39, "end": 94.49, "word": " a", "probability": 0.9169921875}, {"start": 94.49, "end": 94.99, "word": " new", "probability": 0.84765625}, {"start": 94.99, "end": 94.99, "word": " maze.", "probability": 0.9130859375}, {"start": 95.43, "end": 95.59, "word": " I", "probability": 0.45166015625}, {"start": 95.59, "end": 95.59, "word": " want", "probability": 0.52685546875}, {"start": 95.59, "end": 95.59, "word": " to", "probability": 0.9443359375}, {"start": 95.59, "end": 95.95, "word": " change", "probability": 0.71142578125}, {"start": 95.95, "end": 96.27, "word": " the", "probability": 0.513671875}, {"start": 96.27, "end": 96.71, "word": " content,", "probability": 0.77490234375}, {"start": 96.89, "end": 97.03, "word": " but", "probability": 0.8232421875}, {"start": 97.03, "end": 97.19, "word": " the", "probability": 0.281005859375}, {"start": 97.19, "end": 97.47, "word": " order", "probability": 0.2237548828125}, {"start": 97.47, "end": 97.63, "word": " of", "probability": 0.8349609375}, {"start": 97.63, "end": 97.69, "word": " the", "probability": 0.8837890625}, {"start": 97.69, "end": 97.97, "word": " maze", "probability": 0.90673828125}, {"start": 97.97, "end": 98.13, "word": " and", "probability": 0.80419921875}, {"start": 98.13, "end": 98.21, "word": " its", "probability": 0.75439453125}, {"start": 98.21, "end": 98.61, "word": " components", "probability": 0.78125}, {"start": 98.61, "end": 99.39, "word": " should", "probability": 0.32080078125}, {"start": 99.39, "end": 99.39, "word": " be", "probability": 0.78955078125}, {"start": 99.39, "end": 99.51, "word": " the", "probability": 0.50244140625}, {"start": 99.51, "end": 99.51, "word": " same.", "probability": 0.89111328125}, {"start": 100.07, "end": 100.49, "word": " So", "probability": 0.454345703125}, {"start": 100.49, "end": 100.55, "word": " the", "probability": 0.62744140625}, {"start": 100.55, "end": 100.75, "word": " method", "probability": 0.888671875}, {"start": 100.75, "end": 101.45, "word": " createMaze", "probability": 0.641845703125}, {"start": 101.45, "end": 101.61, "word": " in", "probability": 0.41748046875}, {"start": 101.61, "end": 101.73, "word": " the", "probability": 0.60205078125}, {"start": 101.73, "end": 102.23, "word": " superclass", "probability": 0.83447265625}, {"start": 102.23, "end": 102.47, "word": " remained", "probability": 0.54052734375}, {"start": 102.47, "end": 102.63, "word": " the", "probability": 0.56005859375}, {"start": 102.63, "end": 102.79, "word": " same.", "probability": 0.8974609375}, {"start": 103.73, "end": 104.05, "word": " But", "probability": 0.81640625}, {"start": 104.05, "end": 104.23, "word": " when", "probability": 0.873046875}, {"start": 104.23, "end": 104.31, "word": " it", "probability": 0.5185546875}, {"start": 104.31, "end": 104.45, "word": " comes", "probability": 0.419189453125}, {"start": 104.45, "end": 104.57, "word": " to", "probability": 0.955078125}, {"start": 104.57, "end": 105.35, "word": " createRoom", "probability": 0.702392578125}, {"start": 105.35, "end": 105.59, "word": " and", "probability": 0.91357421875}, {"start": 105.59, "end": 106.29, "word": " createWall,", "probability": 0.9462890625}, {"start": 106.79, "end": 107.13, "word": " those", "probability": 0.1953125}, {"start": 107.13, "end": 107.65, "word": " that", "probability": 0.437255859375}, {"start": 107.65, "end": 107.95, "word": " create", "probability": 0.583984375}, {"start": 107.95, "end": 108.29, "word": " the", "probability": 0.62255859375}, {"start": 108.29, "end": 108.53, "word": " room", "probability": 0.6484375}, {"start": 108.53, "end": 108.65, "word": " and", "probability": 0.92578125}, {"start": 108.65, "end": 108.73, "word": " the", "probability": 0.68896484375}, {"start": 108.73, "end": 108.99, "word": " wall,", "probability": 0.84228515625}, {"start": 109.05, "end": 109.39, "word": " I", "probability": 0.304931640625}, {"start": 109.39, "end": 109.59, "word": " made", "probability": 0.34912109375}, {"start": 109.59, "end": 109.79, "word": " them", "probability": 0.85693359375}, {"start": 109.79, "end": 110.17, "word": " methods,", "probability": 0.826171875}, {"start": 110.67, "end": 111.09, "word": " so", "probability": 0.560546875}, {"start": 111.09, "end": 111.37, "word": " that", "probability": 0.8125}, {"start": 111.37, "end": 111.43, "word": " the", "probability": 0.8876953125}, {"start": 111.43, "end": 111.85, "word": " superclass", "probability": 0.8544921875}, {"start": 111.85, "end": 111.97, "word": " can", "probability": 0.56103515625}, {"start": 111.97, "end": 112.41, "word": " override", "probability": 0.87744140625}, {"start": 112.41, "end": 112.67, "word": " them", "probability": 0.79052734375}, {"start": 112.67, "end": 112.79, "word": " and", "probability": 0.85009765625}, {"start": 112.79, "end": 113.07, "word": " change", "probability": 0.85888671875}, {"start": 113.07, "end": 113.25, "word": " the", "probability": 0.8955078125}, {"start": 113.25, "end": 113.27, "word": " type", "probability": 0.63427734375}, {"start": 113.27, "end": 113.37, "word": " of", "probability": 0.97314453125}, {"start": 113.37, "end": 113.67, "word": " object", "probability": 0.66357421875}, {"start": 113.67, "end": 113.81, "word": " that", "probability": 0.544921875}, {"start": 113.81, "end": 113.99, "word": " is", "probability": 0.73681640625}, {"start": 113.99, "end": 114.39, "word": " created", "probability": 0.52880859375}, {"start": 114.39, "end": 115.15, "word": " in", "probability": 0.513671875}, {"start": 115.15, "end": 115.37, "word": " them.", "probability": 0.8623046875}, {"start": 115.87, "end": 116.29, "word": " Now", "probability": 0.73486328125}, {"start": 116.29, "end": 116.59, "word": " let's", "probability": 0.603759765625}, {"start": 116.59, "end": 116.81, "word": " look", "probability": 0.445556640625}, {"start": 116.81, "end": 116.95, "word": " at", "probability": 0.94775390625}, {"start": 116.95, "end": 117.15, "word": " another", "probability": 0.85498046875}, {"start": 117.15, "end": 117.49, "word": " example.", "probability": 0.96875}], "temperature": 1.0}, {"id": 6, "seek": 14513, "start": 118.95, "end": 145.13, "text": "How does the factory method make it easier for me to create the user interface in the applications? Now, guys, let's look at this example. If I support a program that is related to HR, or a program for employees, okay? Now, the employee, since he has multiple data, we made a class for him to be represented. For example, I made a class here, employee, represent the basic data of the employee.", "tokens": [6462, 775, 264, 9265, 3170, 652, 309, 3571, 337, 385, 281, 1884, 264, 4195, 9226, 294, 264, 5821, 30, 823, 11, 1074, 11, 718, 311, 574, 412, 341, 1365, 13, 759, 286, 1406, 257, 1461, 300, 307, 4077, 281, 19460, 11, 420, 257, 1461, 337, 6619, 11, 1392, 30, 823, 11, 264, 10738, 11, 1670, 415, 575, 3866, 1412, 11, 321, 1027, 257, 1508, 337, 796, 281, 312, 10379, 13, 1171, 1365, 11, 286, 1027, 257, 1508, 510, 11, 10738, 11, 2906, 264, 3875, 1412, 295, 264, 10738, 13], "avg_logprob": -0.4854166540834639, "compression_ratio": 1.6909871244635193, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 118.95, "end": 119.23, "word": "How", "probability": 0.236328125}, {"start": 119.23, "end": 119.31, "word": " does", "probability": 0.345947265625}, {"start": 119.31, "end": 119.39, "word": " the", "probability": 0.623046875}, {"start": 119.39, "end": 119.65, "word": " factory", "probability": 0.287353515625}, {"start": 119.65, "end": 120.05, "word": " method", "probability": 0.9423828125}, {"start": 120.05, "end": 120.49, "word": " make", "probability": 0.240478515625}, {"start": 120.49, "end": 120.49, "word": " it", "probability": 0.75341796875}, {"start": 120.49, "end": 120.77, "word": " easier", "probability": 0.8154296875}, {"start": 120.77, "end": 120.85, "word": " for", "probability": 0.58349609375}, {"start": 120.85, "end": 121.11, "word": " me", "probability": 0.8212890625}, {"start": 121.11, "end": 121.97, "word": " to", "probability": 0.8193359375}, {"start": 121.97, "end": 122.41, "word": " create", "probability": 0.5966796875}, {"start": 122.41, "end": 122.93, "word": " the", "probability": 0.387939453125}, {"start": 122.93, "end": 123.15, "word": " user", "probability": 0.89453125}, {"start": 123.15, "end": 123.85, "word": " interface", "probability": 0.87255859375}, {"start": 123.85, "end": 125.01, "word": " in", "probability": 0.744140625}, {"start": 125.01, "end": 125.07, "word": " the", "probability": 0.302978515625}, {"start": 125.07, "end": 125.51, "word": " applications?", "probability": 0.395263671875}, {"start": 126.53, "end": 127.01, "word": " Now,", "probability": 0.440673828125}, {"start": 127.15, "end": 127.29, "word": " guys,", "probability": 0.2705078125}, {"start": 127.43, "end": 127.55, "word": " let's", "probability": 0.785400390625}, {"start": 127.55, "end": 127.79, "word": " look", "probability": 0.478515625}, {"start": 127.79, "end": 127.87, "word": " at", "probability": 0.9599609375}, {"start": 127.87, "end": 127.95, "word": " this", "probability": 0.802734375}, {"start": 127.95, "end": 128.27, "word": " example.", "probability": 0.95751953125}, {"start": 128.51, "end": 128.63, "word": " If", "probability": 0.8310546875}, {"start": 128.63, "end": 128.99, "word": " I", "probability": 0.96630859375}, {"start": 128.99, "end": 129.23, "word": " support", "probability": 0.404052734375}, {"start": 129.23, "end": 129.37, "word": " a", "probability": 0.771484375}, {"start": 129.37, "end": 129.71, "word": " program", "probability": 0.6943359375}, {"start": 129.71, "end": 129.89, "word": " that", "probability": 0.4775390625}, {"start": 129.89, "end": 129.97, "word": " is", "probability": 0.304931640625}, {"start": 129.97, "end": 130.27, "word": " related", "probability": 0.8642578125}, {"start": 130.27, "end": 130.63, "word": " to", "probability": 0.97119140625}, {"start": 130.63, "end": 131.55, "word": " HR,", "probability": 0.9306640625}, {"start": 131.71, "end": 131.81, "word": " or", "probability": 0.7275390625}, {"start": 131.81, "end": 131.91, "word": " a", "probability": 0.21240234375}, {"start": 131.91, "end": 132.13, "word": " program", "probability": 0.533203125}, {"start": 132.13, "end": 132.43, "word": " for", "probability": 0.7197265625}, {"start": 132.43, "end": 132.93, "word": " employees,", "probability": 0.78759765625}, {"start": 133.31, "end": 133.55, "word": " okay?", "probability": 0.4208984375}, {"start": 134.37, "end": 134.71, "word": " Now,", "probability": 0.50732421875}, {"start": 135.85, "end": 136.01, "word": " the", "probability": 0.4443359375}, {"start": 136.01, "end": 136.35, "word": " employee,", "probability": 0.7412109375}, {"start": 136.85, "end": 136.91, "word": " since", "probability": 0.6650390625}, {"start": 136.91, "end": 138.41, "word": " he", "probability": 0.60888671875}, {"start": 138.41, "end": 138.47, "word": " has", "probability": 0.888671875}, {"start": 138.47, "end": 139.13, "word": " multiple", "probability": 0.7470703125}, {"start": 139.13, "end": 139.13, "word": " data,", "probability": 0.7138671875}, {"start": 139.25, "end": 139.45, "word": " we", "probability": 0.7099609375}, {"start": 139.45, "end": 139.55, "word": " made", "probability": 0.440185546875}, {"start": 139.55, "end": 139.75, "word": " a", "probability": 0.53173828125}, {"start": 139.75, "end": 139.99, "word": " class", "probability": 0.9443359375}, {"start": 139.99, "end": 140.11, "word": " for", "probability": 0.329345703125}, {"start": 140.11, "end": 140.21, "word": " him", "probability": 0.76171875}, {"start": 140.21, "end": 140.21, "word": " to", "probability": 0.72216796875}, {"start": 140.21, "end": 140.21, "word": " be", "probability": 0.39208984375}, {"start": 140.21, "end": 140.33, "word": " represented.", "probability": 0.75732421875}, {"start": 140.53, "end": 140.75, "word": " For", "probability": 0.865234375}, {"start": 140.75, "end": 140.87, "word": " example,", "probability": 0.94921875}, {"start": 140.97, "end": 141.09, "word": " I", "probability": 0.8818359375}, {"start": 141.09, "end": 141.29, "word": " made", "probability": 0.6708984375}, {"start": 141.29, "end": 141.51, "word": " a", "probability": 0.6611328125}, {"start": 141.51, "end": 141.83, "word": " class", "probability": 0.97509765625}, {"start": 141.83, "end": 141.93, "word": " here,", "probability": 0.5947265625}, {"start": 141.93, "end": 142.31, "word": " employee,", "probability": 0.464599609375}, {"start": 142.91, "end": 143.41, "word": " represent", "probability": 0.262451171875}, {"start": 143.41, "end": 143.59, "word": " the", "probability": 0.87548828125}, {"start": 143.59, "end": 143.59, "word": " basic", "probability": 0.494140625}, {"start": 143.59, "end": 143.93, "word": " data", "probability": 0.88916015625}, {"start": 143.93, "end": 144.69, "word": " of", "probability": 0.7138671875}, {"start": 144.69, "end": 144.79, "word": " the", "probability": 0.88134765625}, {"start": 144.79, "end": 145.13, "word": " employee.", "probability": 0.78857421875}], "temperature": 1.0}, {"id": 7, "seek": 17294, "start": 146.14, "end": 172.94, "text": " For example, Name, ID, Address and Job Title And I made this class abstract I don't want to create an object from an employee I made it just to collect the shared parts From the employee, I made subclasses I have a full-time employee, this is an extended employee And I added a new attribute Basic salary, level and has insurance I also have a part-time employee", "tokens": [1171, 1365, 11, 13866, 11, 7348, 11, 5349, 735, 293, 18602, 26768, 400, 286, 1027, 341, 1508, 12649, 286, 500, 380, 528, 281, 1884, 364, 2657, 490, 364, 10738, 286, 1027, 309, 445, 281, 2500, 264, 5507, 3166, 3358, 264, 10738, 11, 286, 1027, 1422, 11665, 279, 286, 362, 257, 1577, 12, 3766, 10738, 11, 341, 307, 364, 10913, 10738, 400, 286, 3869, 257, 777, 19667, 31598, 15360, 11, 1496, 293, 575, 7214, 286, 611, 362, 257, 644, 12, 3766, 10738], "avg_logprob": -0.44474086456182527, "compression_ratio": 1.6425339366515836, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 146.14, "end": 146.5, "word": " For", "probability": 0.144775390625}, {"start": 146.5, "end": 146.8, "word": " example,", "probability": 0.90380859375}, {"start": 146.92, "end": 147.06, "word": " Name,", "probability": 0.4443359375}, {"start": 147.18, "end": 147.52, "word": " ID,", "probability": 0.56884765625}, {"start": 147.76, "end": 148.3, "word": " Address", "probability": 0.809326171875}, {"start": 148.3, "end": 148.82, "word": " and", "probability": 0.591796875}, {"start": 148.82, "end": 149.0, "word": " Job", "probability": 0.90087890625}, {"start": 149.0, "end": 149.4, "word": " Title", "probability": 0.7216796875}, {"start": 149.4, "end": 150.04, "word": " And", "probability": 0.247314453125}, {"start": 150.04, "end": 150.48, "word": " I", "probability": 0.57373046875}, {"start": 150.48, "end": 150.84, "word": " made", "probability": 0.5068359375}, {"start": 150.84, "end": 150.96, "word": " this", "probability": 0.7646484375}, {"start": 150.96, "end": 150.96, "word": " class", "probability": 0.8994140625}, {"start": 150.96, "end": 152.5, "word": " abstract", "probability": 0.6220703125}, {"start": 152.5, "end": 153.02, "word": " I", "probability": 0.5380859375}, {"start": 153.02, "end": 153.16, "word": " don't", "probability": 0.848388671875}, {"start": 153.16, "end": 153.42, "word": " want", "probability": 0.79296875}, {"start": 153.42, "end": 153.44, "word": " to", "probability": 0.73828125}, {"start": 153.44, "end": 153.7, "word": " create", "probability": 0.5048828125}, {"start": 153.7, "end": 154.04, "word": " an", "probability": 0.50537109375}, {"start": 154.04, "end": 154.28, "word": " object", "probability": 0.95166015625}, {"start": 154.28, "end": 154.42, "word": " from", "probability": 0.7041015625}, {"start": 154.42, "end": 154.82, "word": " an", "probability": 0.42138671875}, {"start": 154.82, "end": 154.82, "word": " employee", "probability": 0.75439453125}, {"start": 154.82, "end": 155.06, "word": " I", "probability": 0.572265625}, {"start": 155.06, "end": 155.32, "word": " made", "probability": 0.319091796875}, {"start": 155.32, "end": 155.4, "word": " it", "probability": 0.84521484375}, {"start": 155.4, "end": 155.58, "word": " just", "probability": 0.337158203125}, {"start": 155.58, "end": 155.84, "word": " to", "probability": 0.830078125}, {"start": 155.84, "end": 156.28, "word": " collect", "probability": 0.317138671875}, {"start": 156.28, "end": 157.26, "word": " the", "probability": 0.64453125}, {"start": 157.26, "end": 157.82, "word": " shared", "probability": 0.1898193359375}, {"start": 157.82, "end": 157.92, "word": " parts", "probability": 0.4345703125}, {"start": 157.92, "end": 158.92, "word": " From", "probability": 0.310791015625}, {"start": 158.92, "end": 159.14, "word": " the", "probability": 0.487548828125}, {"start": 159.14, "end": 159.54, "word": " employee,", "probability": 0.779296875}, {"start": 159.7, "end": 159.74, "word": " I", "probability": 0.97607421875}, {"start": 159.74, "end": 160.02, "word": " made", "probability": 0.60205078125}, {"start": 160.02, "end": 162.06, "word": " subclasses", "probability": 0.7237955729166666}, {"start": 162.06, "end": 162.32, "word": " I", "probability": 0.82470703125}, {"start": 162.32, "end": 162.54, "word": " have", "probability": 0.86865234375}, {"start": 162.54, "end": 162.6, "word": " a", "probability": 0.4755859375}, {"start": 162.6, "end": 162.74, "word": " full", "probability": 0.89794921875}, {"start": 162.74, "end": 162.96, "word": "-time", "probability": 0.900390625}, {"start": 162.96, "end": 163.34, "word": " employee,", "probability": 0.8642578125}, {"start": 163.42, "end": 163.52, "word": " this", "probability": 0.466796875}, {"start": 163.52, "end": 163.54, "word": " is", "probability": 0.8720703125}, {"start": 163.54, "end": 163.64, "word": " an", "probability": 0.5400390625}, {"start": 163.64, "end": 164.06, "word": " extended", "probability": 0.365478515625}, {"start": 164.06, "end": 165.7, "word": " employee", "probability": 0.85595703125}, {"start": 165.7, "end": 166.0, "word": " And", "probability": 0.5205078125}, {"start": 166.0, "end": 166.06, "word": " I", "probability": 0.85400390625}, {"start": 166.06, "end": 166.22, "word": " added", "probability": 0.461669921875}, {"start": 166.22, "end": 166.3, "word": " a", "probability": 0.65185546875}, {"start": 166.3, "end": 166.3, "word": " new", "probability": 0.90185546875}, {"start": 166.3, "end": 166.94, "word": " attribute", "probability": 0.9501953125}, {"start": 166.94, "end": 167.9, "word": " Basic", "probability": 0.7431640625}, {"start": 167.9, "end": 168.26, "word": " salary,", "probability": 0.72998046875}, {"start": 168.44, "end": 168.68, "word": " level", "probability": 0.8388671875}, {"start": 168.68, "end": 168.82, "word": " and", "probability": 0.736328125}, {"start": 168.82, "end": 169.0, "word": " has", "probability": 0.68798828125}, {"start": 169.0, "end": 169.54, "word": " insurance", "probability": 0.88916015625}, {"start": 169.54, "end": 170.66, "word": " I", "probability": 0.67431640625}, {"start": 170.66, "end": 172.02, "word": " also", "probability": 0.541015625}, {"start": 172.02, "end": 172.02, "word": " have", "probability": 0.9453125}, {"start": 172.02, "end": 172.08, "word": " a", "probability": 0.83740234375}, {"start": 172.08, "end": 172.28, "word": " part", "probability": 0.93798828125}, {"start": 172.28, "end": 172.52, "word": "-time", "probability": 0.977783203125}, {"start": 172.52, "end": 172.94, "word": " employee", "probability": 0.84326171875}], "temperature": 1.0}, {"id": 8, "seek": 19910, "start": 174.1, "end": 199.1, "text": " Extend Employee and add new attributes such as number of hours and hour rate Now, I have the objects I have a class called Employee and it consists of full-time employee class and part-time employee class FTE and PTE", "tokens": [9881, 521, 26878, 1653, 293, 909, 777, 17212, 1270, 382, 1230, 295, 2496, 293, 1773, 3314, 823, 11, 286, 362, 264, 6565, 286, 362, 257, 1508, 1219, 26878, 1653, 293, 309, 14689, 295, 1577, 12, 3766, 10738, 1508, 293, 644, 12, 3766, 10738, 1508, 479, 13639, 293, 430, 13639], "avg_logprob": -0.6296874845027923, "compression_ratio": 1.55, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 174.1, "end": 174.62, "word": " Extend", "probability": 0.209136962890625}, {"start": 174.62, "end": 175.06, "word": " Employee", "probability": 0.7091064453125}, {"start": 175.06, "end": 175.22, "word": " and", "probability": 0.33203125}, {"start": 175.22, "end": 175.28, "word": " add", "probability": 0.338623046875}, {"start": 175.28, "end": 175.48, "word": " new", "probability": 0.50390625}, {"start": 175.48, "end": 175.88, "word": " attributes", "probability": 0.52001953125}, {"start": 175.88, "end": 176.28, "word": " such", "probability": 0.10943603515625}, {"start": 176.28, "end": 176.32, "word": " as", "probability": 0.97412109375}, {"start": 176.32, "end": 176.56, "word": " number", "probability": 0.822265625}, {"start": 176.56, "end": 176.78, "word": " of", "probability": 0.9560546875}, {"start": 176.78, "end": 177.08, "word": " hours", "probability": 0.9140625}, {"start": 177.08, "end": 177.2, "word": " and", "probability": 0.86669921875}, {"start": 177.2, "end": 177.42, "word": " hour", "probability": 0.48681640625}, {"start": 177.42, "end": 177.72, "word": " rate", "probability": 0.93505859375}, {"start": 177.72, "end": 180.52, "word": " Now,", "probability": 0.489990234375}, {"start": 180.66, "end": 180.94, "word": " I", "probability": 0.271484375}, {"start": 180.94, "end": 181.24, "word": " have", "probability": 0.81591796875}, {"start": 181.24, "end": 182.74, "word": " the", "probability": 0.202880859375}, {"start": 182.74, "end": 183.18, "word": " objects", "probability": 0.66455078125}, {"start": 183.18, "end": 183.38, "word": " I", "probability": 0.2174072265625}, {"start": 183.38, "end": 183.68, "word": " have", "probability": 0.8564453125}, {"start": 183.68, "end": 184.94, "word": " a", "probability": 0.489501953125}, {"start": 184.94, "end": 185.24, "word": " class", "probability": 0.94482421875}, {"start": 185.24, "end": 185.62, "word": " called", "probability": 0.50927734375}, {"start": 185.62, "end": 188.68, "word": " Employee", "probability": 0.603271484375}, {"start": 188.68, "end": 188.86, "word": " and", "probability": 0.1669921875}, {"start": 188.86, "end": 188.9, "word": " it", "probability": 0.1328125}, {"start": 188.9, "end": 189.16, "word": " consists", "probability": 0.249267578125}, {"start": 189.16, "end": 189.92, "word": " of", "probability": 0.95068359375}, {"start": 189.92, "end": 193.6, "word": " full", "probability": 0.3525390625}, {"start": 193.6, "end": 194.12, "word": "-time", "probability": 0.91796875}, {"start": 194.12, "end": 194.64, "word": " employee", "probability": 0.765625}, {"start": 194.64, "end": 195.16, "word": " class", "probability": 0.919921875}, {"start": 195.16, "end": 195.94, "word": " and", "probability": 0.87353515625}, {"start": 195.94, "end": 196.28, "word": " part", "probability": 0.9033203125}, {"start": 196.28, "end": 196.76, "word": "-time", "probability": 0.982666015625}, {"start": 196.76, "end": 198.06, "word": " employee", "probability": 0.82568359375}, {"start": 198.06, "end": 198.16, "word": " class", "probability": 0.51025390625}, {"start": 198.16, "end": 198.58, "word": " FTE", "probability": 0.821533203125}, {"start": 198.58, "end": 198.76, "word": " and", "probability": 0.9169921875}, {"start": 198.76, "end": 199.1, "word": " PTE", "probability": 0.940673828125}], "temperature": 1.0}, {"id": 9, "seek": 22855, "start": 200.33, "end": 228.55, "text": " Ok, now you want to create a program, for sure you want to create input models, you want to create an input model, a web page or a desktop or a mobile screen, to create an employee, you want to input data to a new employee, for sure how many screens do you want to have? Two screens, one for full-time and one for part-time, so you want to have a screen for full-time employees, how does it look like? It will be for example the name,", "tokens": [3477, 11, 586, 291, 528, 281, 1884, 257, 1461, 11, 337, 988, 291, 528, 281, 1884, 4846, 5245, 11, 291, 528, 281, 1884, 364, 4846, 2316, 11, 257, 3670, 3028, 420, 257, 14502, 420, 257, 6013, 2568, 11, 281, 1884, 364, 10738, 11, 291, 528, 281, 4846, 1412, 281, 257, 777, 10738, 11, 337, 988, 577, 867, 11171, 360, 291, 528, 281, 362, 30, 4453, 11171, 11, 472, 337, 1577, 12, 3766, 293, 472, 337, 644, 12, 3766, 11, 370, 291, 528, 281, 362, 257, 2568, 337, 1577, 12, 3766, 6619, 11, 577, 775, 309, 574, 411, 30, 467, 486, 312, 337, 1365, 264, 1315, 11], "avg_logprob": -0.439252350374917, "compression_ratio": 2.101449275362319, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 200.33, "end": 200.81, "word": " Ok,", "probability": 0.1658935546875}, {"start": 201.25, "end": 201.63, "word": " now", "probability": 0.76171875}, {"start": 201.63, "end": 201.91, "word": " you", "probability": 0.7060546875}, {"start": 201.91, "end": 202.09, "word": " want", "probability": 0.55419921875}, {"start": 202.09, "end": 202.19, "word": " to", "probability": 0.96923828125}, {"start": 202.19, "end": 202.35, "word": " create", "probability": 0.450439453125}, {"start": 202.35, "end": 202.59, "word": " a", "probability": 0.9033203125}, {"start": 202.59, "end": 202.95, "word": " program,", "probability": 0.61083984375}, {"start": 203.09, "end": 203.17, "word": " for", "probability": 0.171630859375}, {"start": 203.17, "end": 203.35, "word": " sure", "probability": 0.93798828125}, {"start": 203.35, "end": 203.45, "word": " you", "probability": 0.84033203125}, {"start": 203.45, "end": 203.67, "word": " want", "probability": 0.61962890625}, {"start": 203.67, "end": 203.67, "word": " to", "probability": 0.93994140625}, {"start": 203.67, "end": 203.87, "word": " create", "probability": 0.69091796875}, {"start": 203.87, "end": 204.63, "word": " input", "probability": 0.308837890625}, {"start": 204.63, "end": 204.63, "word": " models,", "probability": 0.5986328125}, {"start": 204.93, "end": 205.01, "word": " you", "probability": 0.363525390625}, {"start": 205.01, "end": 205.17, "word": " want", "probability": 0.73681640625}, {"start": 205.17, "end": 205.25, "word": " to", "probability": 0.96533203125}, {"start": 205.25, "end": 205.53, "word": " create", "probability": 0.72119140625}, {"start": 205.53, "end": 205.75, "word": " an", "probability": 0.421630859375}, {"start": 205.75, "end": 205.75, "word": " input", "probability": 0.927734375}, {"start": 205.75, "end": 206.11, "word": " model,", "probability": 0.78125}, {"start": 206.21, "end": 206.65, "word": " a", "probability": 0.345947265625}, {"start": 206.65, "end": 207.19, "word": " web", "probability": 0.7470703125}, {"start": 207.19, "end": 207.27, "word": " page", "probability": 0.81689453125}, {"start": 207.27, "end": 207.57, "word": " or", "probability": 0.4619140625}, {"start": 207.57, "end": 207.67, "word": " a", "probability": 0.454345703125}, {"start": 207.67, "end": 207.91, "word": " desktop", "probability": 0.86767578125}, {"start": 207.91, "end": 208.25, "word": " or", "probability": 0.859375}, {"start": 208.25, "end": 208.45, "word": " a", "probability": 0.9111328125}, {"start": 208.45, "end": 208.93, "word": " mobile", "probability": 0.8857421875}, {"start": 208.93, "end": 209.17, "word": " screen,", "probability": 0.7431640625}, {"start": 209.81, "end": 210.17, "word": " to", "probability": 0.58447265625}, {"start": 210.17, "end": 210.57, "word": " create", "probability": 0.60009765625}, {"start": 210.57, "end": 211.09, "word": " an", "probability": 0.56396484375}, {"start": 211.09, "end": 211.27, "word": " employee,", "probability": 0.80419921875}, {"start": 211.45, "end": 211.85, "word": " you", "probability": 0.8544921875}, {"start": 211.85, "end": 212.01, "word": " want", "probability": 0.74267578125}, {"start": 212.01, "end": 212.13, "word": " to", "probability": 0.96728515625}, {"start": 212.13, "end": 212.33, "word": " input", "probability": 0.297607421875}, {"start": 212.33, "end": 212.63, "word": " data", "probability": 0.54541015625}, {"start": 212.63, "end": 212.77, "word": " to", "probability": 0.280517578125}, {"start": 212.77, "end": 213.07, "word": " a", "probability": 0.7236328125}, {"start": 213.07, "end": 213.31, "word": " new", "probability": 0.900390625}, {"start": 213.31, "end": 213.31, "word": " employee,", "probability": 0.8173828125}, {"start": 214.33, "end": 214.47, "word": " for", "probability": 0.52685546875}, {"start": 214.47, "end": 214.61, "word": " sure", "probability": 0.9404296875}, {"start": 214.61, "end": 214.77, "word": " how", "probability": 0.63818359375}, {"start": 214.77, "end": 214.89, "word": " many", "probability": 0.88232421875}, {"start": 214.89, "end": 215.07, "word": " screens", "probability": 0.8671875}, {"start": 215.07, "end": 215.21, "word": " do", "probability": 0.417724609375}, {"start": 215.21, "end": 215.33, "word": " you", "probability": 0.9208984375}, {"start": 215.33, "end": 215.33, "word": " want", "probability": 0.712890625}, {"start": 215.33, "end": 215.75, "word": " to", "probability": 0.537109375}, {"start": 215.75, "end": 215.75, "word": " have?", "probability": 0.8974609375}, {"start": 216.77, "end": 217.25, "word": " Two", "probability": 0.509765625}, {"start": 217.25, "end": 217.69, "word": " screens,", "probability": 0.8759765625}, {"start": 217.93, "end": 219.11, "word": " one", "probability": 0.82421875}, {"start": 219.11, "end": 219.37, "word": " for", "probability": 0.875}, {"start": 219.37, "end": 219.59, "word": " full", "probability": 0.794921875}, {"start": 219.59, "end": 219.79, "word": "-time", "probability": 0.908203125}, {"start": 219.79, "end": 219.87, "word": " and", "probability": 0.50537109375}, {"start": 219.87, "end": 220.05, "word": " one", "probability": 0.873046875}, {"start": 220.05, "end": 220.61, "word": " for", "probability": 0.89501953125}, {"start": 220.61, "end": 221.01, "word": " part", "probability": 0.9404296875}, {"start": 221.01, "end": 221.21, "word": "-time,", "probability": 0.984375}, {"start": 221.29, "end": 221.59, "word": " so", "probability": 0.336669921875}, {"start": 221.59, "end": 221.65, "word": " you", "probability": 0.9169921875}, {"start": 221.65, "end": 221.77, "word": " want", "probability": 0.73974609375}, {"start": 221.77, "end": 221.77, "word": " to", "probability": 0.8642578125}, {"start": 221.77, "end": 222.09, "word": " have", "probability": 0.94677734375}, {"start": 222.09, "end": 222.23, "word": " a", "probability": 0.966796875}, {"start": 222.23, "end": 222.59, "word": " screen", "probability": 0.73095703125}, {"start": 222.59, "end": 224.05, "word": " for", "probability": 0.28662109375}, {"start": 224.05, "end": 224.35, "word": " full", "probability": 0.5009765625}, {"start": 224.35, "end": 224.63, "word": "-time", "probability": 0.98291015625}, {"start": 224.63, "end": 224.99, "word": " employees,", "probability": 0.67919921875}, {"start": 225.13, "end": 225.29, "word": " how", "probability": 0.50927734375}, {"start": 225.29, "end": 225.41, "word": " does", "probability": 0.31103515625}, {"start": 225.41, "end": 225.63, "word": " it", "probability": 0.802734375}, {"start": 225.63, "end": 225.63, "word": " look", "probability": 0.900390625}, {"start": 225.63, "end": 225.65, "word": " like?", "probability": 0.72021484375}, {"start": 226.49, "end": 226.97, "word": " It", "probability": 0.4501953125}, {"start": 226.97, "end": 227.09, "word": " will", "probability": 0.5947265625}, {"start": 227.09, "end": 227.33, "word": " be", "probability": 0.5517578125}, {"start": 227.33, "end": 227.47, "word": " for", "probability": 0.31884765625}, {"start": 227.47, "end": 227.77, "word": " example", "probability": 0.9541015625}, {"start": 227.77, "end": 228.23, "word": " the", "probability": 0.44873046875}, {"start": 228.23, "end": 228.55, "word": " name,", "probability": 0.873046875}], "temperature": 1.0}, {"id": 10, "seek": 25869, "start": 229.75, "end": 258.69, "text": "ID, Job Title, Address, Insurance, Salary, etc and then at the end there is a button submit or save", "tokens": [2777, 11, 18602, 26768, 11, 5349, 735, 11, 39971, 11, 5996, 822, 11, 5183, 293, 550, 412, 264, 917, 456, 307, 257, 2960, 10315, 420, 3155], "avg_logprob": -0.5949073809164541, "compression_ratio": 1.1123595505617978, "no_speech_prob": 2.2649765014648438e-06, "words": [{"start": 229.75, "end": 230.07, "word": "ID,", "probability": 0.1954345703125}, {"start": 231.87, "end": 232.99, "word": " Job", "probability": 0.6162109375}, {"start": 232.99, "end": 234.35, "word": " Title,", "probability": 0.3310546875}, {"start": 236.55, "end": 241.09, "word": " Address,", "probability": 0.737060546875}, {"start": 244.41, "end": 248.21, "word": " Insurance,", "probability": 0.521484375}, {"start": 250.73, "end": 251.93, "word": " Salary,", "probability": 0.815673828125}, {"start": 253.27, "end": 253.47, "word": " etc", "probability": 0.53857421875}, {"start": 253.47, "end": 254.53, "word": " and", "probability": 0.12109375}, {"start": 254.53, "end": 254.77, "word": " then", "probability": 0.397216796875}, {"start": 254.77, "end": 255.29, "word": " at", "probability": 0.50244140625}, {"start": 255.29, "end": 255.39, "word": " the", "probability": 0.8837890625}, {"start": 255.39, "end": 255.67, "word": " end", "probability": 0.87890625}, {"start": 255.67, "end": 256.21, "word": " there", "probability": 0.58740234375}, {"start": 256.21, "end": 256.21, "word": " is", "probability": 0.82666015625}, {"start": 256.21, "end": 256.45, "word": " a", "probability": 0.63037109375}, {"start": 256.45, "end": 256.45, "word": " button", "probability": 0.7392578125}, {"start": 256.45, "end": 258.05, "word": " submit", "probability": 0.4580078125}, {"start": 258.05, "end": 258.35, "word": " or", "probability": 0.88427734375}, {"start": 258.35, "end": 258.69, "word": " save", "probability": 0.93359375}], "temperature": 1.0}, {"id": 11, "seek": 28855, "start": 259.49, "end": 288.55, "text": "which will actually read what the user has entered and for example, create an object from what? the data is still scattered, of course, I want to collect them in an object, right or not? when I press the save button, it will create an object from full-time employee and read the data from the screen and fill it in the object through the setter methods okay, now I have an object, I store it in an array and then I store it in the database and so on okay, with the same mechanism, I want to have another screen", "tokens": [13690, 486, 767, 1401, 437, 264, 4195, 575, 9065, 293, 337, 1365, 11, 1884, 364, 2657, 490, 437, 30, 264, 1412, 307, 920, 21986, 11, 295, 1164, 11, 286, 528, 281, 2500, 552, 294, 364, 2657, 11, 558, 420, 406, 30, 562, 286, 1886, 264, 3155, 2960, 11, 309, 486, 1884, 364, 2657, 490, 1577, 12, 3766, 10738, 293, 1401, 264, 1412, 490, 264, 2568, 293, 2836, 309, 294, 264, 2657, 807, 264, 992, 391, 7150, 1392, 11, 586, 286, 362, 364, 2657, 11, 286, 3531, 309, 294, 364, 10225, 293, 550, 286, 3531, 309, 294, 264, 8149, 293, 370, 322, 1392, 11, 365, 264, 912, 7513, 11, 286, 528, 281, 362, 1071, 2568], "avg_logprob": -0.5168478043183037, "compression_ratio": 1.9465648854961832, "no_speech_prob": 2.7418136596679688e-06, "words": [{"start": 259.49000000000007, "end": 259.89000000000004, "word": "which", "probability": 0.198974609375}, {"start": 259.89000000000004, "end": 260.29, "word": " will", "probability": 0.56884765625}, {"start": 260.29, "end": 260.37, "word": " actually", "probability": 0.440673828125}, {"start": 260.37, "end": 260.63, "word": " read", "probability": 0.89208984375}, {"start": 260.63, "end": 261.21, "word": " what", "probability": 0.11376953125}, {"start": 261.21, "end": 262.13, "word": " the", "probability": 0.34228515625}, {"start": 262.13, "end": 262.51, "word": " user", "probability": 0.91748046875}, {"start": 262.51, "end": 262.51, "word": " has", "probability": 0.1763916015625}, {"start": 262.51, "end": 262.51, "word": " entered", "probability": 0.257568359375}, {"start": 262.51, "end": 263.47, "word": " and", "probability": 0.307861328125}, {"start": 263.47, "end": 263.55, "word": " for", "probability": 0.308837890625}, {"start": 263.55, "end": 263.75, "word": " example,", "probability": 0.890625}, {"start": 263.89, "end": 264.09, "word": " create", "probability": 0.26025390625}, {"start": 264.09, "end": 264.31, "word": " an", "probability": 0.6689453125}, {"start": 264.31, "end": 264.77, "word": " object", "probability": 0.95166015625}, {"start": 264.77, "end": 265.45, "word": " from", "probability": 0.53173828125}, {"start": 265.45, "end": 265.77, "word": " what?", "probability": 0.63818359375}, {"start": 267.23, "end": 267.63, "word": " the", "probability": 0.1231689453125}, {"start": 267.63, "end": 267.83, "word": " data", "probability": 0.72314453125}, {"start": 267.83, "end": 268.03, "word": " is", "probability": 0.625}, {"start": 268.03, "end": 268.13, "word": " still", "probability": 0.7470703125}, {"start": 268.13, "end": 268.39, "word": " scattered,", "probability": 0.157958984375}, {"start": 268.55, "end": 268.59, "word": " of", "probability": 0.27783203125}, {"start": 268.59, "end": 268.59, "word": " course,", "probability": 0.93701171875}, {"start": 268.65, "end": 268.67, "word": " I", "probability": 0.69921875}, {"start": 268.67, "end": 268.79, "word": " want", "probability": 0.59423828125}, {"start": 268.79, "end": 268.87, "word": " to", "probability": 0.962890625}, {"start": 268.87, "end": 269.05, "word": " collect", "probability": 0.57958984375}, {"start": 269.05, "end": 269.19, "word": " them", "probability": 0.81884765625}, {"start": 269.19, "end": 269.55, "word": " in", "probability": 0.57568359375}, {"start": 269.55, "end": 270.23, "word": " an", "probability": 0.6025390625}, {"start": 270.23, "end": 270.49, "word": " object,", "probability": 0.9736328125}, {"start": 270.57, "end": 270.69, "word": " right", "probability": 0.59716796875}, {"start": 270.69, "end": 270.83, "word": " or", "probability": 0.78173828125}, {"start": 270.83, "end": 270.97, "word": " not?", "probability": 0.427490234375}, {"start": 271.65, "end": 272.01, "word": " when", "probability": 0.275390625}, {"start": 272.01, "end": 272.15, "word": " I", "probability": 0.93212890625}, {"start": 272.15, "end": 272.33, "word": " press", "probability": 0.447021484375}, {"start": 272.33, "end": 272.59, "word": " the", "probability": 0.6484375}, {"start": 272.59, "end": 273.05, "word": " save", "probability": 0.56884765625}, {"start": 273.05, "end": 273.05, "word": " button,", "probability": 0.80419921875}, {"start": 273.11, "end": 273.15, "word": " it", "probability": 0.724609375}, {"start": 273.15, "end": 273.33, "word": " will", "probability": 0.499267578125}, {"start": 273.33, "end": 273.51, "word": " create", "probability": 0.82080078125}, {"start": 273.51, "end": 273.69, "word": " an", "probability": 0.91259765625}, {"start": 273.69, "end": 273.93, "word": " object", "probability": 0.97265625}, {"start": 273.93, "end": 274.27, "word": " from", "probability": 0.85302734375}, {"start": 274.27, "end": 275.57, "word": " full", "probability": 0.336669921875}, {"start": 275.57, "end": 275.75, "word": "-time", "probability": 0.81982421875}, {"start": 275.75, "end": 276.17, "word": " employee", "probability": 0.74853515625}, {"start": 276.17, "end": 276.53, "word": " and", "probability": 0.58642578125}, {"start": 276.53, "end": 276.79, "word": " read", "probability": 0.68310546875}, {"start": 276.79, "end": 276.93, "word": " the", "probability": 0.436767578125}, {"start": 276.93, "end": 277.13, "word": " data", "probability": 0.90869140625}, {"start": 277.13, "end": 277.45, "word": " from", "probability": 0.79150390625}, {"start": 277.45, "end": 277.59, "word": " the", "probability": 0.853515625}, {"start": 277.59, "end": 277.77, "word": " screen", "probability": 0.822265625}, {"start": 277.77, "end": 277.95, "word": " and", "probability": 0.810546875}, {"start": 277.95, "end": 278.19, "word": " fill", "probability": 0.60400390625}, {"start": 278.19, "end": 278.39, "word": " it", "probability": 0.775390625}, {"start": 278.39, "end": 278.49, "word": " in", "probability": 0.6279296875}, {"start": 278.49, "end": 278.57, "word": " the", "probability": 0.833984375}, {"start": 278.57, "end": 278.79, "word": " object", "probability": 0.93359375}, {"start": 278.79, "end": 279.05, "word": " through", "probability": 0.583984375}, {"start": 279.05, "end": 279.29, "word": " the", "probability": 0.6064453125}, {"start": 279.29, "end": 279.51, "word": " setter", "probability": 0.798095703125}, {"start": 279.51, "end": 279.91, "word": " methods", "probability": 0.59814453125}, {"start": 279.91, "end": 280.67, "word": " okay,", "probability": 0.139404296875}, {"start": 280.73, "end": 280.95, "word": " now", "probability": 0.4091796875}, {"start": 280.95, "end": 281.13, "word": " I", "probability": 0.95458984375}, {"start": 281.13, "end": 281.13, "word": " have", "probability": 0.9375}, {"start": 281.13, "end": 281.21, "word": " an", "probability": 0.86865234375}, {"start": 281.21, "end": 281.39, "word": " object,", "probability": 0.9697265625}, {"start": 281.45, "end": 281.57, "word": " I", "probability": 0.8837890625}, {"start": 281.57, "end": 281.77, "word": " store", "probability": 0.62939453125}, {"start": 281.77, "end": 281.87, "word": " it", "probability": 0.8916015625}, {"start": 281.87, "end": 281.93, "word": " in", "probability": 0.92529296875}, {"start": 281.93, "end": 282.03, "word": " an", "probability": 0.07781982421875}, {"start": 282.03, "end": 282.25, "word": " array", "probability": 0.92431640625}, {"start": 282.25, "end": 282.37, "word": " and", "probability": 0.5380859375}, {"start": 282.37, "end": 282.53, "word": " then", "probability": 0.76123046875}, {"start": 282.53, "end": 282.65, "word": " I", "probability": 0.50537109375}, {"start": 282.65, "end": 282.83, "word": " store", "probability": 0.85693359375}, {"start": 282.83, "end": 282.93, "word": " it", "probability": 0.91015625}, {"start": 282.93, "end": 282.99, "word": " in", "probability": 0.9375}, {"start": 282.99, "end": 283.09, "word": " the", "probability": 0.65234375}, {"start": 283.09, "end": 283.57, "word": " database", "probability": 0.93017578125}, {"start": 283.57, "end": 283.89, "word": " and", "probability": 0.767578125}, {"start": 283.89, "end": 284.07, "word": " so", "probability": 0.51025390625}, {"start": 284.07, "end": 284.41, "word": " on", "probability": 0.9189453125}, {"start": 284.41, "end": 284.97, "word": " okay,", "probability": 0.426025390625}, {"start": 285.99, "end": 286.25, "word": " with", "probability": 0.31005859375}, {"start": 286.25, "end": 286.55, "word": " the", "probability": 0.92041015625}, {"start": 286.55, "end": 286.55, "word": " same", "probability": 0.90625}, {"start": 286.55, "end": 286.93, "word": " mechanism,", "probability": 0.46044921875}, {"start": 287.65, "end": 287.77, "word": " I", "probability": 0.3818359375}, {"start": 287.77, "end": 287.89, "word": " want", "probability": 0.6923828125}, {"start": 287.89, "end": 287.91, "word": " to", "probability": 0.90185546875}, {"start": 287.91, "end": 288.19, "word": " have", "probability": 0.93701171875}, {"start": 288.19, "end": 288.31, "word": " another", "probability": 0.841796875}, {"start": 288.31, "end": 288.55, "word": " screen", "probability": 0.86474609375}], "temperature": 1.0}, {"id": 12, "seek": 31777, "start": 290.03, "end": 317.77, "text": " for the part-time employee. So the first part of the second screen is the same as this part, which is the name and the ID and so on. So this whole part should repeat itself here, right? Then the lower part should be different, which is the number of hours. This is the weight and the hour rate.", "tokens": [337, 264, 644, 12, 3766, 10738, 13, 407, 264, 700, 644, 295, 264, 1150, 2568, 307, 264, 912, 382, 341, 644, 11, 597, 307, 264, 1315, 293, 264, 7348, 293, 370, 322, 13, 407, 341, 1379, 644, 820, 7149, 2564, 510, 11, 558, 30, 1396, 264, 3126, 644, 820, 312, 819, 11, 597, 307, 264, 1230, 295, 2496, 13, 639, 307, 264, 3364, 293, 264, 1773, 3314, 13], "avg_logprob": -0.5235507246376812, "compression_ratio": 1.6954022988505748, "no_speech_prob": 7.212162017822266e-06, "words": [{"start": 290.03, "end": 290.29, "word": " for", "probability": 0.46923828125}, {"start": 290.29, "end": 290.35, "word": " the", "probability": 0.3662109375}, {"start": 290.35, "end": 290.59, "word": " part", "probability": 0.7685546875}, {"start": 290.59, "end": 290.83, "word": "-time", "probability": 0.920166015625}, {"start": 290.83, "end": 291.21, "word": " employee.", "probability": 0.51904296875}, {"start": 292.33, "end": 292.49, "word": " So", "probability": 0.2919921875}, {"start": 292.49, "end": 292.63, "word": " the", "probability": 0.361328125}, {"start": 292.63, "end": 293.71, "word": " first", "probability": 0.47314453125}, {"start": 293.71, "end": 294.09, "word": " part", "probability": 0.65283203125}, {"start": 294.09, "end": 294.19, "word": " of", "probability": 0.7685546875}, {"start": 294.19, "end": 294.19, "word": " the", "probability": 0.82177734375}, {"start": 294.19, "end": 294.19, "word": " second", "probability": 0.62451171875}, {"start": 294.19, "end": 294.19, "word": " screen", "probability": 0.7900390625}, {"start": 294.19, "end": 296.25, "word": " is", "probability": 0.38427734375}, {"start": 296.25, "end": 296.31, "word": " the", "probability": 0.5517578125}, {"start": 296.31, "end": 296.47, "word": " same", "probability": 0.8291015625}, {"start": 296.47, "end": 296.83, "word": " as", "probability": 0.287841796875}, {"start": 296.83, "end": 297.05, "word": " this", "probability": 0.5498046875}, {"start": 297.05, "end": 297.05, "word": " part,", "probability": 0.35986328125}, {"start": 297.19, "end": 297.31, "word": " which", "probability": 0.66259765625}, {"start": 297.31, "end": 297.43, "word": " is", "probability": 0.86279296875}, {"start": 297.43, "end": 297.57, "word": " the", "probability": 0.568359375}, {"start": 297.57, "end": 297.81, "word": " name", "probability": 0.79541015625}, {"start": 297.81, "end": 299.79, "word": " and", "probability": 0.52734375}, {"start": 299.79, "end": 299.85, "word": " the", "probability": 0.3359375}, {"start": 299.85, "end": 300.17, "word": " ID", "probability": 0.7685546875}, {"start": 300.17, "end": 300.31, "word": " and", "probability": 0.68408203125}, {"start": 300.31, "end": 300.47, "word": " so", "probability": 0.2183837890625}, {"start": 300.47, "end": 300.59, "word": " on.", "probability": 0.8818359375}, {"start": 300.71, "end": 300.87, "word": " So", "probability": 0.41162109375}, {"start": 300.87, "end": 301.15, "word": " this", "probability": 0.55419921875}, {"start": 301.15, "end": 301.81, "word": " whole", "probability": 0.53759765625}, {"start": 301.81, "end": 301.81, "word": " part", "probability": 0.7197265625}, {"start": 301.81, "end": 304.43, "word": " should", "probability": 0.13427734375}, {"start": 304.43, "end": 304.91, "word": " repeat", "probability": 0.471435546875}, {"start": 304.91, "end": 305.51, "word": " itself", "probability": 0.66064453125}, {"start": 305.51, "end": 306.87, "word": " here,", "probability": 0.7509765625}, {"start": 307.15, "end": 307.41, "word": " right?", "probability": 0.7294921875}, {"start": 308.95, "end": 309.31, "word": " Then", "probability": 0.40283203125}, {"start": 309.31, "end": 309.51, "word": " the", "probability": 0.5869140625}, {"start": 309.51, "end": 310.09, "word": " lower", "probability": 0.420166015625}, {"start": 310.09, "end": 310.27, "word": " part", "probability": 0.8935546875}, {"start": 310.27, "end": 311.29, "word": " should", "probability": 0.37890625}, {"start": 311.29, "end": 311.39, "word": " be", "probability": 0.91943359375}, {"start": 311.39, "end": 311.79, "word": " different,", "probability": 0.8564453125}, {"start": 311.93, "end": 312.03, "word": " which", "probability": 0.88720703125}, {"start": 312.03, "end": 312.13, "word": " is", "probability": 0.927734375}, {"start": 312.13, "end": 312.21, "word": " the", "probability": 0.70654296875}, {"start": 312.21, "end": 312.39, "word": " number", "probability": 0.9306640625}, {"start": 312.39, "end": 312.61, "word": " of", "probability": 0.97705078125}, {"start": 312.61, "end": 312.97, "word": " hours.", "probability": 0.9169921875}, {"start": 315.91, "end": 316.35, "word": " This", "probability": 0.73193359375}, {"start": 316.35, "end": 316.41, "word": " is", "probability": 0.83935546875}, {"start": 316.41, "end": 316.49, "word": " the", "probability": 0.388427734375}, {"start": 316.49, "end": 316.71, "word": " weight", "probability": 0.447021484375}, {"start": 316.71, "end": 317.11, "word": " and", "probability": 0.796875}, {"start": 317.11, "end": 317.17, "word": " the", "probability": 0.6953125}, {"start": 317.17, "end": 317.35, "word": " hour", "probability": 0.849609375}, {"start": 317.35, "end": 317.77, "word": " rate.", "probability": 0.9404296875}], "temperature": 1.0}, {"id": 13, "seek": 34201, "start": 321.97, "end": 342.01, "text": " Ok? And then comes the safe button as well. This does not change. The part here is different. Right or wrong? The part here is one, but there is another different thing as well. The action that happens when you press the button.", "tokens": [3477, 30, 400, 550, 1487, 264, 3273, 2960, 382, 731, 13, 639, 775, 406, 1319, 13, 440, 644, 510, 307, 819, 13, 1779, 420, 2085, 30, 440, 644, 510, 307, 472, 11, 457, 456, 307, 1071, 819, 551, 382, 731, 13, 440, 3069, 300, 2314, 562, 291, 1886, 264, 2960, 13], "avg_logprob": -0.5201322252933795, "compression_ratio": 1.5793103448275863, "no_speech_prob": 2.193450927734375e-05, "words": [{"start": 321.97, "end": 322.49, "word": " Ok?", "probability": 0.0496826171875}, {"start": 323.13, "end": 323.45, "word": " And", "probability": 0.57275390625}, {"start": 323.45, "end": 323.75, "word": " then", "probability": 0.60498046875}, {"start": 323.75, "end": 324.09, "word": " comes", "probability": 0.16796875}, {"start": 324.09, "end": 324.21, "word": " the", "probability": 0.7216796875}, {"start": 324.21, "end": 324.39, "word": " safe", "probability": 0.291015625}, {"start": 324.39, "end": 325.79, "word": " button", "probability": 0.7919921875}, {"start": 325.79, "end": 326.85, "word": " as", "probability": 0.2193603515625}, {"start": 326.85, "end": 326.87, "word": " well.", "probability": 0.93994140625}, {"start": 327.57, "end": 328.09, "word": " This", "probability": 0.2802734375}, {"start": 328.09, "end": 328.31, "word": " does", "probability": 0.2529296875}, {"start": 328.31, "end": 328.31, "word": " not", "probability": 0.9287109375}, {"start": 328.31, "end": 328.69, "word": " change.", "probability": 0.90625}, {"start": 329.39, "end": 329.87, "word": " The", "probability": 0.421875}, {"start": 329.87, "end": 330.07, "word": " part", "probability": 0.43798828125}, {"start": 330.07, "end": 330.53, "word": " here", "probability": 0.69287109375}, {"start": 330.53, "end": 332.61, "word": " is", "probability": 0.67431640625}, {"start": 332.61, "end": 333.11, "word": " different.", "probability": 0.83740234375}, {"start": 334.55, "end": 335.07, "word": " Right", "probability": 0.485595703125}, {"start": 335.07, "end": 335.29, "word": " or", "probability": 0.81201171875}, {"start": 335.29, "end": 335.35, "word": " wrong?", "probability": 0.60693359375}, {"start": 336.43, "end": 336.95, "word": " The", "probability": 0.68408203125}, {"start": 336.95, "end": 337.17, "word": " part", "probability": 0.8408203125}, {"start": 337.17, "end": 337.51, "word": " here", "probability": 0.8251953125}, {"start": 337.51, "end": 337.59, "word": " is", "probability": 0.91552734375}, {"start": 337.59, "end": 337.85, "word": " one,", "probability": 0.70947265625}, {"start": 338.01, "end": 338.37, "word": " but", "probability": 0.8876953125}, {"start": 338.37, "end": 338.53, "word": " there", "probability": 0.86962890625}, {"start": 338.53, "end": 338.55, "word": " is", "probability": 0.86962890625}, {"start": 338.55, "end": 338.95, "word": " another", "probability": 0.47314453125}, {"start": 338.95, "end": 339.31, "word": " different", "probability": 0.473876953125}, {"start": 339.31, "end": 339.39, "word": " thing", "probability": 0.471435546875}, {"start": 339.39, "end": 339.61, "word": " as", "probability": 0.455078125}, {"start": 339.61, "end": 340.35, "word": " well.", "probability": 0.94189453125}, {"start": 340.47, "end": 340.61, "word": " The", "probability": 0.82861328125}, {"start": 340.61, "end": 340.95, "word": " action", "probability": 0.9296875}, {"start": 340.95, "end": 341.09, "word": " that", "probability": 0.489013671875}, {"start": 341.09, "end": 341.35, "word": " happens", "probability": 0.496826171875}, {"start": 341.35, "end": 341.47, "word": " when", "probability": 0.93017578125}, {"start": 341.47, "end": 341.57, "word": " you", "probability": 0.8232421875}, {"start": 341.57, "end": 341.67, "word": " press", "probability": 0.599609375}, {"start": 341.67, "end": 341.85, "word": " the", "probability": 0.77294921875}, {"start": 341.85, "end": 342.01, "word": " button.", "probability": 0.8349609375}], "temperature": 1.0}, {"id": 14, "seek": 37040, "start": 343.0, "end": 370.4, "text": " Right or wrong? They are different. This one should create a full-time employee object and fill it in. This one should create a part-time employee object. So there are two different parts. The front part and the code that should be executed when pressed on the button. Now, this design or work has a problem. What is it? Repeat. Repeat. Okay? This whole part is repeated. This means that if I want to create a new employee, for example, a contract employee,", "tokens": [1779, 420, 2085, 30, 814, 366, 819, 13, 639, 472, 820, 1884, 257, 1577, 12, 3766, 10738, 2657, 293, 2836, 309, 294, 13, 639, 472, 820, 1884, 257, 644, 12, 3766, 10738, 2657, 13, 407, 456, 366, 732, 819, 3166, 13, 440, 1868, 644, 293, 264, 3089, 300, 820, 312, 17577, 562, 17355, 322, 264, 2960, 13, 823, 11, 341, 1715, 420, 589, 575, 257, 1154, 13, 708, 307, 309, 30, 28523, 13, 28523, 13, 1033, 30, 639, 1379, 644, 307, 10477, 13, 639, 1355, 300, 498, 286, 528, 281, 1884, 257, 777, 10738, 11, 337, 1365, 11, 257, 4364, 10738, 11], "avg_logprob": -0.43810681058365164, "compression_ratio": 1.8031496062992125, "no_speech_prob": 4.351139068603516e-06, "words": [{"start": 343.0, "end": 343.26, "word": " Right", "probability": 0.0902099609375}, {"start": 343.26, "end": 343.46, "word": " or", "probability": 0.77783203125}, {"start": 343.46, "end": 343.52, "word": " wrong?", "probability": 0.56298828125}, {"start": 343.58, "end": 343.66, "word": " They", "probability": 0.220458984375}, {"start": 343.66, "end": 343.7, "word": " are", "probability": 0.384765625}, {"start": 343.7, "end": 344.0, "word": " different.", "probability": 0.8212890625}, {"start": 344.18, "end": 344.56, "word": " This", "probability": 0.4130859375}, {"start": 344.56, "end": 344.62, "word": " one", "probability": 0.29052734375}, {"start": 344.62, "end": 344.8, "word": " should", "probability": 0.1522216796875}, {"start": 344.8, "end": 345.04, "word": " create", "probability": 0.449951171875}, {"start": 345.04, "end": 345.16, "word": " a", "probability": 0.67724609375}, {"start": 345.16, "end": 345.3, "word": " full", "probability": 0.86279296875}, {"start": 345.3, "end": 345.52, "word": "-time", "probability": 0.922607421875}, {"start": 345.52, "end": 345.82, "word": " employee", "probability": 0.86669921875}, {"start": 345.82, "end": 346.16, "word": " object", "probability": 0.97607421875}, {"start": 346.16, "end": 346.28, "word": " and", "probability": 0.52392578125}, {"start": 346.28, "end": 346.5, "word": " fill", "probability": 0.40185546875}, {"start": 346.5, "end": 346.72, "word": " it", "probability": 0.81787109375}, {"start": 346.72, "end": 346.72, "word": " in.", "probability": 0.28857421875}, {"start": 346.98, "end": 347.26, "word": " This", "probability": 0.5888671875}, {"start": 347.26, "end": 347.3, "word": " one", "probability": 0.80126953125}, {"start": 347.3, "end": 347.46, "word": " should", "probability": 0.93310546875}, {"start": 347.46, "end": 347.68, "word": " create", "probability": 0.8759765625}, {"start": 347.68, "end": 347.78, "word": " a", "probability": 0.81982421875}, {"start": 347.78, "end": 347.94, "word": " part", "probability": 0.94384765625}, {"start": 347.94, "end": 348.12, "word": "-time", "probability": 0.98388671875}, {"start": 348.12, "end": 348.42, "word": " employee", "probability": 0.8251953125}, {"start": 348.42, "end": 348.5, "word": " object.", "probability": 0.6591796875}, {"start": 348.54, "end": 348.62, "word": " So", "probability": 0.64208984375}, {"start": 348.62, "end": 348.76, "word": " there", "probability": 0.62451171875}, {"start": 348.76, "end": 348.76, "word": " are", "probability": 0.8994140625}, {"start": 348.76, "end": 349.1, "word": " two", "probability": 0.83056640625}, {"start": 349.1, "end": 349.44, "word": " different", "probability": 0.6650390625}, {"start": 349.44, "end": 349.52, "word": " parts.", "probability": 0.7578125}, {"start": 350.14, "end": 350.54, "word": " The", "probability": 0.6962890625}, {"start": 350.54, "end": 350.72, "word": " front", "probability": 0.276123046875}, {"start": 350.72, "end": 350.78, "word": " part", "probability": 0.63427734375}, {"start": 350.78, "end": 352.36, "word": " and", "probability": 0.80224609375}, {"start": 352.36, "end": 352.56, "word": " the", "probability": 0.8603515625}, {"start": 352.56, "end": 352.82, "word": " code", "probability": 0.69189453125}, {"start": 352.82, "end": 352.92, "word": " that", "probability": 0.7216796875}, {"start": 352.92, "end": 353.06, "word": " should", "probability": 0.4873046875}, {"start": 353.06, "end": 353.16, "word": " be", "probability": 0.734375}, {"start": 353.16, "end": 353.42, "word": " executed", "probability": 0.90771484375}, {"start": 353.42, "end": 353.6, "word": " when", "probability": 0.748046875}, {"start": 353.6, "end": 353.8, "word": " pressed", "probability": 0.22314453125}, {"start": 353.8, "end": 353.96, "word": " on", "probability": 0.8076171875}, {"start": 353.96, "end": 354.94, "word": " the", "probability": 0.81005859375}, {"start": 354.94, "end": 355.14, "word": " button.", "probability": 0.79345703125}, {"start": 357.24, "end": 357.64, "word": " Now,", "probability": 0.88818359375}, {"start": 358.82, "end": 359.92, "word": " this", "probability": 0.69189453125}, {"start": 359.92, "end": 360.32, "word": " design", "probability": 0.8271484375}, {"start": 360.32, "end": 360.56, "word": " or", "probability": 0.87646484375}, {"start": 360.56, "end": 360.78, "word": " work", "probability": 0.44140625}, {"start": 360.78, "end": 360.98, "word": " has", "probability": 0.759765625}, {"start": 360.98, "end": 361.06, "word": " a", "probability": 0.935546875}, {"start": 361.06, "end": 361.3, "word": " problem.", "probability": 0.81640625}, {"start": 362.06, "end": 362.3, "word": " What", "probability": 0.8564453125}, {"start": 362.3, "end": 362.44, "word": " is", "probability": 0.888671875}, {"start": 362.44, "end": 362.56, "word": " it?", "probability": 0.89013671875}, {"start": 362.96, "end": 362.96, "word": " Repeat.", "probability": 0.3427734375}, {"start": 364.34, "end": 364.34, "word": " Repeat.", "probability": 0.261962890625}, {"start": 364.78, "end": 365.14, "word": " Okay?", "probability": 0.375}, {"start": 365.32, "end": 365.52, "word": " This", "probability": 0.591796875}, {"start": 365.52, "end": 365.64, "word": " whole", "probability": 0.2607421875}, {"start": 365.64, "end": 365.8, "word": " part", "probability": 0.84228515625}, {"start": 365.8, "end": 366.18, "word": " is", "probability": 0.80126953125}, {"start": 366.18, "end": 366.46, "word": " repeated.", "probability": 0.90673828125}, {"start": 367.02, "end": 367.28, "word": " This", "probability": 0.74169921875}, {"start": 367.28, "end": 367.52, "word": " means", "probability": 0.9267578125}, {"start": 367.52, "end": 367.78, "word": " that", "probability": 0.82861328125}, {"start": 367.78, "end": 368.06, "word": " if", "probability": 0.9052734375}, {"start": 368.06, "end": 368.12, "word": " I", "probability": 0.99072265625}, {"start": 368.12, "end": 368.28, "word": " want", "probability": 0.84130859375}, {"start": 368.28, "end": 368.3, "word": " to", "probability": 0.97119140625}, {"start": 368.3, "end": 368.44, "word": " create", "probability": 0.51171875}, {"start": 368.44, "end": 368.54, "word": " a", "probability": 0.96728515625}, {"start": 368.54, "end": 368.54, "word": " new", "probability": 0.89453125}, {"start": 368.54, "end": 368.84, "word": " employee,", "probability": 0.86083984375}, {"start": 369.4, "end": 369.42, "word": " for", "probability": 0.84326171875}, {"start": 369.42, "end": 369.56, "word": " example,", "probability": 0.95751953125}, {"start": 369.7, "end": 370.14, "word": " a", "probability": 0.61865234375}, {"start": 370.14, "end": 370.38, "word": " contract", "probability": 0.69091796875}, {"start": 370.38, "end": 370.4, "word": " employee,", "probability": 0.5576171875}], "temperature": 1.0}, {"id": 15, "seek": 39242, "start": 371.3, "end": 392.42, "text": " What do you need to do for the steps? Of course you need to create a class that represents the object, and of course you need to create a screen or another class where you put the code of the graphical user interface, where you repeat all the code that creates this part, right? And then you put the different part, which is the new attributes of the new object, and you put a different code where?", "tokens": [708, 360, 291, 643, 281, 360, 337, 264, 4439, 30, 2720, 1164, 291, 643, 281, 1884, 257, 1508, 300, 8855, 264, 2657, 11, 293, 295, 1164, 291, 643, 281, 1884, 257, 2568, 420, 1071, 1508, 689, 291, 829, 264, 3089, 295, 264, 35942, 4195, 9226, 11, 689, 291, 7149, 439, 264, 3089, 300, 7829, 341, 644, 11, 558, 30, 400, 550, 291, 829, 264, 819, 644, 11, 597, 307, 264, 777, 17212, 295, 264, 777, 2657, 11, 293, 291, 829, 257, 819, 3089, 689, 30], "avg_logprob": -0.47856104928393695, "compression_ratio": 1.9655172413793103, "no_speech_prob": 5.0067901611328125e-06, "words": [{"start": 371.3, "end": 371.58, "word": " What", "probability": 0.142333984375}, {"start": 371.58, "end": 371.64, "word": " do", "probability": 0.228515625}, {"start": 371.64, "end": 371.76, "word": " you", "probability": 0.935546875}, {"start": 371.76, "end": 371.8, "word": " need", "probability": 0.3740234375}, {"start": 371.8, "end": 371.8, "word": " to", "probability": 0.96875}, {"start": 371.8, "end": 371.94, "word": " do", "probability": 0.9208984375}, {"start": 371.94, "end": 372.06, "word": " for", "probability": 0.2548828125}, {"start": 372.06, "end": 372.08, "word": " the", "probability": 0.6328125}, {"start": 372.08, "end": 372.32, "word": " steps?", "probability": 0.71533203125}, {"start": 372.6, "end": 372.74, "word": " Of", "probability": 0.461669921875}, {"start": 372.74, "end": 372.86, "word": " course", "probability": 0.9580078125}, {"start": 372.86, "end": 372.92, "word": " you", "probability": 0.6962890625}, {"start": 372.92, "end": 373.06, "word": " need", "probability": 0.75634765625}, {"start": 373.06, "end": 373.18, "word": " to", "probability": 0.93994140625}, {"start": 373.18, "end": 373.42, "word": " create", "probability": 0.32421875}, {"start": 373.42, "end": 373.58, "word": " a", "probability": 0.9052734375}, {"start": 373.58, "end": 373.9, "word": " class", "probability": 0.87158203125}, {"start": 373.9, "end": 374.06, "word": " that", "probability": 0.267578125}, {"start": 374.06, "end": 374.26, "word": " represents", "probability": 0.62255859375}, {"start": 374.26, "end": 374.42, "word": " the", "probability": 0.8056640625}, {"start": 374.42, "end": 374.72, "word": " object,", "probability": 0.939453125}, {"start": 375.1, "end": 375.88, "word": " and", "probability": 0.296875}, {"start": 375.88, "end": 376.56, "word": " of", "probability": 0.4453125}, {"start": 376.56, "end": 376.62, "word": " course", "probability": 0.9677734375}, {"start": 376.62, "end": 376.72, "word": " you", "probability": 0.85986328125}, {"start": 376.72, "end": 376.88, "word": " need", "probability": 0.84228515625}, {"start": 376.88, "end": 376.94, "word": " to", "probability": 0.9365234375}, {"start": 376.94, "end": 377.18, "word": " create", "probability": 0.7900390625}, {"start": 377.18, "end": 377.3, "word": " a", "probability": 0.626953125}, {"start": 377.3, "end": 377.58, "word": " screen", "probability": 0.77294921875}, {"start": 377.58, "end": 377.92, "word": " or", "probability": 0.83837890625}, {"start": 377.92, "end": 378.1, "word": " another", "probability": 0.78369140625}, {"start": 378.1, "end": 378.64, "word": " class", "probability": 0.90478515625}, {"start": 378.64, "end": 379.44, "word": " where", "probability": 0.1856689453125}, {"start": 379.44, "end": 379.44, "word": " you", "probability": 0.8994140625}, {"start": 379.44, "end": 379.6, "word": " put", "probability": 0.3681640625}, {"start": 379.6, "end": 379.96, "word": " the", "probability": 0.71875}, {"start": 379.96, "end": 380.2, "word": " code", "probability": 0.84326171875}, {"start": 380.2, "end": 380.3, "word": " of", "probability": 0.369873046875}, {"start": 380.3, "end": 380.66, "word": " the", "probability": 0.80126953125}, {"start": 380.66, "end": 380.98, "word": " graphical", "probability": 0.27734375}, {"start": 380.98, "end": 381.2, "word": " user", "probability": 0.8896484375}, {"start": 381.2, "end": 381.72, "word": " interface,", "probability": 0.85205078125}, {"start": 381.88, "end": 381.92, "word": " where", "probability": 0.33056640625}, {"start": 381.92, "end": 381.92, "word": " you", "probability": 0.4091796875}, {"start": 381.92, "end": 382.2, "word": " repeat", "probability": 0.4580078125}, {"start": 382.2, "end": 382.72, "word": " all", "probability": 0.615234375}, {"start": 382.72, "end": 382.88, "word": " the", "probability": 0.83251953125}, {"start": 382.88, "end": 383.26, "word": " code", "probability": 0.8759765625}, {"start": 383.26, "end": 383.92, "word": " that", "probability": 0.67041015625}, {"start": 383.92, "end": 384.2, "word": " creates", "probability": 0.3271484375}, {"start": 384.2, "end": 384.34, "word": " this", "probability": 0.7509765625}, {"start": 384.34, "end": 384.54, "word": " part,", "probability": 0.7177734375}, {"start": 385.04, "end": 385.3, "word": " right?", "probability": 0.5859375}, {"start": 386.22, "end": 386.58, "word": " And", "probability": 0.315673828125}, {"start": 386.58, "end": 387.42, "word": " then", "probability": 0.72705078125}, {"start": 387.42, "end": 387.58, "word": " you", "probability": 0.85546875}, {"start": 387.58, "end": 387.76, "word": " put", "probability": 0.62353515625}, {"start": 387.76, "end": 387.9, "word": " the", "probability": 0.8056640625}, {"start": 387.9, "end": 388.4, "word": " different", "probability": 0.65087890625}, {"start": 388.4, "end": 388.48, "word": " part,", "probability": 0.85107421875}, {"start": 388.62, "end": 388.7, "word": " which", "probability": 0.79296875}, {"start": 388.7, "end": 388.78, "word": " is", "probability": 0.564453125}, {"start": 388.78, "end": 388.88, "word": " the", "probability": 0.875}, {"start": 388.88, "end": 388.88, "word": " new", "probability": 0.8125}, {"start": 388.88, "end": 389.32, "word": " attributes", "probability": 0.8466796875}, {"start": 389.32, "end": 390.0, "word": " of", "probability": 0.57275390625}, {"start": 390.0, "end": 390.08, "word": " the", "probability": 0.88720703125}, {"start": 390.08, "end": 390.08, "word": " new", "probability": 0.78271484375}, {"start": 390.08, "end": 390.56, "word": " object,", "probability": 0.9697265625}, {"start": 391.16, "end": 391.3, "word": " and", "probability": 0.8662109375}, {"start": 391.3, "end": 391.38, "word": " you", "probability": 0.472900390625}, {"start": 391.38, "end": 391.5, "word": " put", "probability": 0.76416015625}, {"start": 391.5, "end": 391.6, "word": " a", "probability": 0.461669921875}, {"start": 391.6, "end": 392.02, "word": " different", "probability": 0.85595703125}, {"start": 392.02, "end": 392.08, "word": " code", "probability": 0.93603515625}, {"start": 392.08, "end": 392.42, "word": " where?", "probability": 0.6455078125}], "temperature": 1.0}, {"id": 16, "seek": 41255, "start": 393.79, "end": 412.55, "text": "So there is a big repetition, of course this is a bad repetition, you have to copy the code again on every new screen you want to do it, then if you want to add a new attribute to the employee, you have to modify them all, you have to change colors", "tokens": [6455, 456, 307, 257, 955, 30432, 11, 295, 1164, 341, 307, 257, 1578, 30432, 11, 291, 362, 281, 5055, 264, 3089, 797, 322, 633, 777, 2568, 291, 528, 281, 360, 309, 11, 550, 498, 291, 528, 281, 909, 257, 777, 19667, 281, 264, 10738, 11, 291, 362, 281, 16927, 552, 439, 11, 291, 362, 281, 1319, 4577], "avg_logprob": -0.4827586242864872, "compression_ratio": 1.7342657342657342, "no_speech_prob": 6.145238876342773e-05, "words": [{"start": 393.78999999999996, "end": 394.39, "word": "So", "probability": 0.1014404296875}, {"start": 394.39, "end": 394.55, "word": " there", "probability": 0.51220703125}, {"start": 394.55, "end": 394.57, "word": " is", "probability": 0.59814453125}, {"start": 394.57, "end": 394.75, "word": " a", "probability": 0.82861328125}, {"start": 394.75, "end": 395.03, "word": " big", "probability": 0.428466796875}, {"start": 395.03, "end": 395.39, "word": " repetition,", "probability": 0.6142578125}, {"start": 395.69, "end": 395.85, "word": " of", "probability": 0.1591796875}, {"start": 395.85, "end": 395.85, "word": " course", "probability": 0.9384765625}, {"start": 395.85, "end": 396.01, "word": " this", "probability": 0.464599609375}, {"start": 396.01, "end": 396.29, "word": " is", "probability": 0.5107421875}, {"start": 396.29, "end": 396.37, "word": " a", "probability": 0.87109375}, {"start": 396.37, "end": 396.63, "word": " bad", "probability": 0.86669921875}, {"start": 396.63, "end": 396.63, "word": " repetition,", "probability": 0.9638671875}, {"start": 397.29, "end": 397.59, "word": " you", "probability": 0.84619140625}, {"start": 397.59, "end": 397.75, "word": " have", "probability": 0.322509765625}, {"start": 397.75, "end": 397.87, "word": " to", "probability": 0.96142578125}, {"start": 397.87, "end": 398.17, "word": " copy", "probability": 0.7841796875}, {"start": 398.17, "end": 398.29, "word": " the", "probability": 0.8125}, {"start": 398.29, "end": 398.57, "word": " code", "probability": 0.90087890625}, {"start": 398.57, "end": 398.97, "word": " again", "probability": 0.84521484375}, {"start": 398.97, "end": 399.31, "word": " on", "probability": 0.767578125}, {"start": 399.31, "end": 399.89, "word": " every", "probability": 0.5341796875}, {"start": 399.89, "end": 401.11, "word": " new", "probability": 0.802734375}, {"start": 401.11, "end": 401.13, "word": " screen", "probability": 0.6728515625}, {"start": 401.13, "end": 401.69, "word": " you", "probability": 0.623046875}, {"start": 401.69, "end": 401.95, "word": " want", "probability": 0.54833984375}, {"start": 401.95, "end": 401.95, "word": " to", "probability": 0.931640625}, {"start": 401.95, "end": 402.19, "word": " do", "probability": 0.2880859375}, {"start": 402.19, "end": 402.33, "word": " it,", "probability": 0.69482421875}, {"start": 402.63, "end": 402.99, "word": " then", "probability": 0.60302734375}, {"start": 402.99, "end": 403.41, "word": " if", "probability": 0.85595703125}, {"start": 403.41, "end": 403.79, "word": " you", "probability": 0.66650390625}, {"start": 403.79, "end": 403.79, "word": " want", "probability": 0.492919921875}, {"start": 403.79, "end": 403.93, "word": " to", "probability": 0.6533203125}, {"start": 403.93, "end": 404.09, "word": " add", "probability": 0.84033203125}, {"start": 404.09, "end": 404.41, "word": " a", "probability": 0.57861328125}, {"start": 404.41, "end": 404.41, "word": " new", "probability": 0.91650390625}, {"start": 404.41, "end": 404.79, "word": " attribute", "probability": 0.95849609375}, {"start": 404.79, "end": 405.23, "word": " to", "probability": 0.48876953125}, {"start": 405.23, "end": 405.31, "word": " the", "probability": 0.7958984375}, {"start": 405.31, "end": 405.67, "word": " employee,", "probability": 0.83349609375}, {"start": 407.29, "end": 407.83, "word": " you", "probability": 0.53857421875}, {"start": 407.83, "end": 408.77, "word": " have", "probability": 0.6162109375}, {"start": 408.77, "end": 409.09, "word": " to", "probability": 0.970703125}, {"start": 409.09, "end": 409.47, "word": " modify", "probability": 0.1826171875}, {"start": 409.47, "end": 409.99, "word": " them", "probability": 0.55908203125}, {"start": 409.99, "end": 410.99, "word": " all,", "probability": 0.87255859375}, {"start": 411.53, "end": 411.65, "word": " you", "probability": 0.87353515625}, {"start": 411.65, "end": 411.77, "word": " have", "probability": 0.7587890625}, {"start": 411.77, "end": 411.87, "word": " to", "probability": 0.9677734375}, {"start": 411.87, "end": 412.11, "word": " change", "probability": 0.8974609375}, {"start": 412.11, "end": 412.55, "word": " colors", "probability": 0.57080078125}], "temperature": 1.0}, {"id": 17, "seek": 43292, "start": 415.28, "end": 432.92, "text": "The type of brain, instead of being a drop list or combo box, has to be modified, and this is the result of repetition. Next, we will see how to use the factor method to improve this design. Since we have always learned that there is repetition,", "tokens": [2278, 2010, 295, 3567, 11, 2602, 295, 885, 257, 3270, 1329, 420, 16859, 2424, 11, 575, 281, 312, 15873, 11, 293, 341, 307, 264, 1874, 295, 30432, 13, 3087, 11, 321, 486, 536, 577, 281, 764, 264, 5952, 3170, 281, 3470, 341, 1715, 13, 4162, 321, 362, 1009, 3264, 300, 456, 307, 30432, 11], "avg_logprob": -0.6250000151720914, "compression_ratio": 1.467065868263473, "no_speech_prob": 2.2172927856445312e-05, "words": [{"start": 415.28, "end": 415.84, "word": "The", "probability": 0.084228515625}, {"start": 415.84, "end": 416.0, "word": " type", "probability": 0.369384765625}, {"start": 416.0, "end": 416.14, "word": " of", "probability": 0.93408203125}, {"start": 416.14, "end": 416.46, "word": " brain,", "probability": 0.218017578125}, {"start": 416.62, "end": 416.8, "word": " instead", "probability": 0.68115234375}, {"start": 416.8, "end": 416.96, "word": " of", "probability": 0.9560546875}, {"start": 416.96, "end": 418.28, "word": " being", "probability": 0.218505859375}, {"start": 418.28, "end": 418.28, "word": " a", "probability": 0.4248046875}, {"start": 418.28, "end": 418.64, "word": " drop", "probability": 0.6982421875}, {"start": 418.64, "end": 418.94, "word": " list", "probability": 0.85693359375}, {"start": 418.94, "end": 419.18, "word": " or", "probability": 0.5341796875}, {"start": 419.18, "end": 419.58, "word": " combo", "probability": 0.68701171875}, {"start": 419.58, "end": 419.88, "word": " box,", "probability": 0.93798828125}, {"start": 420.4, "end": 420.92, "word": " has", "probability": 0.25927734375}, {"start": 420.92, "end": 421.2, "word": " to", "probability": 0.92236328125}, {"start": 421.2, "end": 421.3, "word": " be", "probability": 0.263671875}, {"start": 421.3, "end": 421.5, "word": " modified,", "probability": 0.57763671875}, {"start": 421.88, "end": 421.96, "word": " and", "probability": 0.46533203125}, {"start": 421.96, "end": 422.08, "word": " this", "probability": 0.62939453125}, {"start": 422.08, "end": 422.54, "word": " is", "probability": 0.78955078125}, {"start": 422.54, "end": 422.54, "word": " the", "probability": 0.666015625}, {"start": 422.54, "end": 422.54, "word": " result", "probability": 0.7490234375}, {"start": 422.54, "end": 423.0, "word": " of", "probability": 0.96630859375}, {"start": 423.0, "end": 423.46, "word": " repetition.", "probability": 0.8544921875}, {"start": 423.94, "end": 424.4, "word": " Next,", "probability": 0.300537109375}, {"start": 424.5, "end": 424.64, "word": " we", "probability": 0.8291015625}, {"start": 424.64, "end": 424.84, "word": " will", "probability": 0.286376953125}, {"start": 424.84, "end": 425.06, "word": " see", "probability": 0.623046875}, {"start": 425.06, "end": 425.24, "word": " how", "probability": 0.923828125}, {"start": 425.24, "end": 425.32, "word": " to", "probability": 0.357177734375}, {"start": 425.32, "end": 425.62, "word": " use", "probability": 0.63818359375}, {"start": 425.62, "end": 425.8, "word": " the", "probability": 0.708984375}, {"start": 425.8, "end": 426.06, "word": " factor", "probability": 0.265869140625}, {"start": 426.06, "end": 426.38, "word": " method", "probability": 0.791015625}, {"start": 426.38, "end": 426.66, "word": " to", "probability": 0.84423828125}, {"start": 426.66, "end": 426.94, "word": " improve", "probability": 0.6611328125}, {"start": 426.94, "end": 427.14, "word": " this", "probability": 0.394287109375}, {"start": 427.14, "end": 427.5, "word": " design.", "probability": 0.9560546875}, {"start": 429.56, "end": 430.12, "word": " Since", "probability": 0.09918212890625}, {"start": 430.12, "end": 431.18, "word": " we", "probability": 0.8203125}, {"start": 431.18, "end": 431.36, "word": " have", "probability": 0.57373046875}, {"start": 431.36, "end": 431.62, "word": " always", "probability": 0.5927734375}, {"start": 431.62, "end": 432.06, "word": " learned", "probability": 0.75927734375}, {"start": 432.06, "end": 432.32, "word": " that", "probability": 0.8955078125}, {"start": 432.32, "end": 432.46, "word": " there", "probability": 0.7861328125}, {"start": 432.46, "end": 432.46, "word": " is", "probability": 0.89306640625}, {"start": 432.46, "end": 432.92, "word": " repetition,", "probability": 0.87890625}], "temperature": 1.0}, {"id": 18, "seek": 46020, "start": 434.66, "end": 460.2, "text": " The repeated part or the common part is put in the parent Right or wrong? So the code that creates these parts is put in the parent But the problem that I face is the same problem that we talked about That not all the code is common There is a common code and there are different parts How can we solve this problem? How? All the code cannot be taken to the parent But what I see is that they use the factory method That the common part is put in the parent", "tokens": [440, 10477, 644, 420, 264, 2689, 644, 307, 829, 294, 264, 2596, 1779, 420, 2085, 30, 407, 264, 3089, 300, 7829, 613, 3166, 307, 829, 294, 264, 2596, 583, 264, 1154, 300, 286, 1851, 307, 264, 912, 1154, 300, 321, 2825, 466, 663, 406, 439, 264, 3089, 307, 2689, 821, 307, 257, 2689, 3089, 293, 456, 366, 819, 3166, 1012, 393, 321, 5039, 341, 1154, 30, 1012, 30, 1057, 264, 3089, 2644, 312, 2726, 281, 264, 2596, 583, 437, 286, 536, 307, 300, 436, 764, 264, 9265, 3170, 663, 264, 2689, 644, 307, 829, 294, 264, 2596], "avg_logprob": -0.5204081352876158, "compression_ratio": 2.081818181818182, "no_speech_prob": 6.9141387939453125e-06, "words": [{"start": 434.66, "end": 435.1, "word": " The", "probability": 0.343994140625}, {"start": 435.1, "end": 435.54, "word": " repeated", "probability": 0.3330078125}, {"start": 435.54, "end": 435.66, "word": " part", "probability": 0.50634765625}, {"start": 435.66, "end": 435.84, "word": " or", "probability": 0.44921875}, {"start": 435.84, "end": 435.94, "word": " the", "probability": 0.55810546875}, {"start": 435.94, "end": 436.2, "word": " common", "probability": 0.62646484375}, {"start": 436.2, "end": 436.3, "word": " part", "probability": 0.65869140625}, {"start": 436.3, "end": 436.6, "word": " is", "probability": 0.2186279296875}, {"start": 436.6, "end": 437.12, "word": " put", "probability": 0.2410888671875}, {"start": 437.12, "end": 437.86, "word": " in", "probability": 0.58837890625}, {"start": 437.86, "end": 437.98, "word": " the", "probability": 0.6337890625}, {"start": 437.98, "end": 438.24, "word": " parent", "probability": 0.8837890625}, {"start": 438.24, "end": 438.82, "word": " Right", "probability": 0.1356201171875}, {"start": 438.82, "end": 438.98, "word": " or", "probability": 0.80322265625}, {"start": 438.98, "end": 439.06, "word": " wrong?", "probability": 0.418701171875}, {"start": 439.38, "end": 439.58, "word": " So", "probability": 0.1973876953125}, {"start": 439.58, "end": 439.76, "word": " the", "probability": 0.65869140625}, {"start": 439.76, "end": 439.98, "word": " code", "probability": 0.783203125}, {"start": 439.98, "end": 440.12, "word": " that", "probability": 0.74072265625}, {"start": 440.12, "end": 440.38, "word": " creates", "probability": 0.45458984375}, {"start": 440.38, "end": 440.68, "word": " these", "probability": 0.435546875}, {"start": 440.68, "end": 440.9, "word": " parts", "probability": 0.67236328125}, {"start": 440.9, "end": 441.08, "word": " is", "probability": 0.66064453125}, {"start": 441.08, "end": 441.26, "word": " put", "probability": 0.70166015625}, {"start": 441.26, "end": 441.4, "word": " in", "probability": 0.8916015625}, {"start": 441.4, "end": 441.5, "word": " the", "probability": 0.7509765625}, {"start": 441.5, "end": 441.72, "word": " parent", "probability": 0.9169921875}, {"start": 441.72, "end": 441.92, "word": " But", "probability": 0.552734375}, {"start": 441.92, "end": 442.08, "word": " the", "probability": 0.85546875}, {"start": 442.08, "end": 442.32, "word": " problem", "probability": 0.7119140625}, {"start": 442.32, "end": 442.44, "word": " that", "probability": 0.362548828125}, {"start": 442.44, "end": 442.54, "word": " I", "probability": 0.68701171875}, {"start": 442.54, "end": 442.82, "word": " face", "probability": 0.55029296875}, {"start": 442.82, "end": 443.62, "word": " is", "probability": 0.515625}, {"start": 443.62, "end": 443.8, "word": " the", "probability": 0.81591796875}, {"start": 443.8, "end": 443.9, "word": " same", "probability": 0.826171875}, {"start": 443.9, "end": 444.32, "word": " problem", "probability": 0.6865234375}, {"start": 444.32, "end": 444.44, "word": " that", "probability": 0.69580078125}, {"start": 444.44, "end": 444.46, "word": " we", "probability": 0.71240234375}, {"start": 444.46, "end": 444.66, "word": " talked", "probability": 0.325439453125}, {"start": 444.66, "end": 445.0, "word": " about", "probability": 0.869140625}, {"start": 445.0, "end": 445.62, "word": " That", "probability": 0.2254638671875}, {"start": 445.62, "end": 445.94, "word": " not", "probability": 0.5712890625}, {"start": 445.94, "end": 446.16, "word": " all", "probability": 0.84375}, {"start": 446.16, "end": 446.28, "word": " the", "probability": 0.471435546875}, {"start": 446.28, "end": 446.64, "word": " code", "probability": 0.87744140625}, {"start": 446.64, "end": 447.26, "word": " is", "probability": 0.837890625}, {"start": 447.26, "end": 448.06, "word": " common", "probability": 0.74267578125}, {"start": 448.06, "end": 448.58, "word": " There", "probability": 0.5791015625}, {"start": 448.58, "end": 448.74, "word": " is", "probability": 0.53466796875}, {"start": 448.74, "end": 448.84, "word": " a", "probability": 0.484130859375}, {"start": 448.84, "end": 449.22, "word": " common", "probability": 0.9130859375}, {"start": 449.22, "end": 449.22, "word": " code", "probability": 0.91845703125}, {"start": 449.22, "end": 449.46, "word": " and", "probability": 0.6357421875}, {"start": 449.46, "end": 449.56, "word": " there", "probability": 0.4140625}, {"start": 449.56, "end": 449.64, "word": " are", "probability": 0.8154296875}, {"start": 449.64, "end": 450.92, "word": " different", "probability": 0.6884765625}, {"start": 450.92, "end": 450.92, "word": " parts", "probability": 0.86376953125}, {"start": 450.92, "end": 451.9, "word": " How", "probability": 0.3701171875}, {"start": 451.9, "end": 452.54, "word": " can", "probability": 0.76611328125}, {"start": 452.54, "end": 452.64, "word": " we", "probability": 0.77587890625}, {"start": 452.64, "end": 452.86, "word": " solve", "probability": 0.8154296875}, {"start": 452.86, "end": 452.94, "word": " this", "probability": 0.91357421875}, {"start": 452.94, "end": 453.3, "word": " problem?", "probability": 0.75244140625}, {"start": 453.68, "end": 453.84, "word": " How?", "probability": 0.64013671875}, {"start": 454.24, "end": 454.32, "word": " All", "probability": 0.40380859375}, {"start": 454.32, "end": 454.32, "word": " the", "probability": 0.72314453125}, {"start": 454.32, "end": 454.56, "word": " code", "probability": 0.88623046875}, {"start": 454.56, "end": 455.1, "word": " cannot", "probability": 0.449951171875}, {"start": 455.1, "end": 455.32, "word": " be", "probability": 0.40283203125}, {"start": 455.32, "end": 455.4, "word": " taken", "probability": 0.471923828125}, {"start": 455.4, "end": 455.52, "word": " to", "probability": 0.323974609375}, {"start": 455.52, "end": 455.6, "word": " the", "probability": 0.83154296875}, {"start": 455.6, "end": 455.9, "word": " parent", "probability": 0.912109375}, {"start": 455.9, "end": 456.6, "word": " But", "probability": 0.80224609375}, {"start": 456.6, "end": 456.78, "word": " what", "probability": 0.38916015625}, {"start": 456.78, "end": 456.9, "word": " I", "probability": 0.3408203125}, {"start": 456.9, "end": 457.0, "word": " see", "probability": 0.654296875}, {"start": 457.0, "end": 457.12, "word": " is", "probability": 0.2236328125}, {"start": 457.12, "end": 457.12, "word": " that", "probability": 0.68505859375}, {"start": 457.12, "end": 457.3, "word": " they", "probability": 0.345947265625}, {"start": 457.3, "end": 457.56, "word": " use", "probability": 0.60400390625}, {"start": 457.56, "end": 457.76, "word": " the", "probability": 0.74951171875}, {"start": 457.76, "end": 457.98, "word": " factory", "probability": 0.45654296875}, {"start": 457.98, "end": 458.34, "word": " method", "probability": 0.919921875}, {"start": 458.34, "end": 458.52, "word": " That", "probability": 0.5390625}, {"start": 458.52, "end": 458.68, "word": " the", "probability": 0.78369140625}, {"start": 458.68, "end": 458.68, "word": " common", "probability": 0.83447265625}, {"start": 458.68, "end": 459.16, "word": " part", "probability": 0.88134765625}, {"start": 459.16, "end": 459.46, "word": " is", "probability": 0.79443359375}, {"start": 459.46, "end": 459.7, "word": " put", "probability": 0.86767578125}, {"start": 459.7, "end": 459.84, "word": " in", "probability": 0.91748046875}, {"start": 459.84, "end": 459.96, "word": " the", "probability": 0.8984375}, {"start": 459.96, "end": 460.2, "word": " parent", "probability": 0.93994140625}], "temperature": 1.0}, {"id": 19, "seek": 49000, "start": 461.02, "end": 490.0, "text": "and the different one is allocated to whom? to the subclass so how do we solve this problem? we need to do the following did you find it? I have a class called full-time employee and a class called part-time employee this is called form full-time employee form and this is part-time employee form it has all this code which is drawn this way because what I want to do is I want to make a class here called employee", "tokens": [474, 264, 819, 472, 307, 29772, 281, 7101, 30, 281, 264, 1422, 11665, 370, 577, 360, 321, 5039, 341, 1154, 30, 321, 643, 281, 360, 264, 3480, 630, 291, 915, 309, 30, 286, 362, 257, 1508, 1219, 1577, 12, 3766, 10738, 293, 257, 1508, 1219, 644, 12, 3766, 10738, 341, 307, 1219, 1254, 1577, 12, 3766, 10738, 1254, 293, 341, 307, 644, 12, 3766, 10738, 1254, 309, 575, 439, 341, 3089, 597, 307, 10117, 341, 636, 570, 437, 286, 528, 281, 360, 307, 286, 528, 281, 652, 257, 1508, 510, 1219, 10738], "avg_logprob": -0.4969757782515659, "compression_ratio": 2.0097087378640777, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 461.02, "end": 461.26, "word": "and", "probability": 0.295654296875}, {"start": 461.26, "end": 461.34, "word": " the", "probability": 0.403076171875}, {"start": 461.34, "end": 461.62, "word": " different", "probability": 0.162841796875}, {"start": 461.62, "end": 461.7, "word": " one", "probability": 0.2279052734375}, {"start": 461.7, "end": 461.82, "word": " is", "probability": 0.3525390625}, {"start": 461.82, "end": 462.08, "word": " allocated", "probability": 0.1123046875}, {"start": 462.08, "end": 462.22, "word": " to", "probability": 0.88330078125}, {"start": 462.22, "end": 462.44, "word": " whom?", "probability": 0.416015625}, {"start": 463.22, "end": 463.7, "word": " to", "probability": 0.417236328125}, {"start": 463.7, "end": 463.76, "word": " the", "probability": 0.6689453125}, {"start": 463.76, "end": 464.22, "word": " subclass", "probability": 0.84814453125}, {"start": 464.22, "end": 464.66, "word": " so", "probability": 0.232666015625}, {"start": 464.66, "end": 464.84, "word": " how", "probability": 0.76904296875}, {"start": 464.84, "end": 464.94, "word": " do", "probability": 0.30224609375}, {"start": 464.94, "end": 464.94, "word": " we", "probability": 0.62109375}, {"start": 464.94, "end": 465.16, "word": " solve", "probability": 0.697265625}, {"start": 465.16, "end": 465.24, "word": " this", "probability": 0.861328125}, {"start": 465.24, "end": 465.6, "word": " problem?", "probability": 0.6455078125}, {"start": 466.04, "end": 466.14, "word": " we", "probability": 0.693359375}, {"start": 466.14, "end": 466.26, "word": " need", "probability": 0.26123046875}, {"start": 466.26, "end": 466.34, "word": " to", "probability": 0.9541015625}, {"start": 466.34, "end": 466.5, "word": " do", "probability": 0.80810546875}, {"start": 466.5, "end": 466.66, "word": " the", "probability": 0.60302734375}, {"start": 466.66, "end": 466.88, "word": " following", "probability": 0.82421875}, {"start": 466.88, "end": 468.7, "word": " did", "probability": 0.264404296875}, {"start": 468.7, "end": 468.7, "word": " you", "probability": 0.96240234375}, {"start": 468.7, "end": 468.9, "word": " find", "probability": 0.44677734375}, {"start": 468.9, "end": 469.12, "word": " it?", "probability": 0.62451171875}, {"start": 469.42, "end": 469.62, "word": " I", "probability": 0.76513671875}, {"start": 469.62, "end": 469.78, "word": " have", "probability": 0.92529296875}, {"start": 469.78, "end": 470.3, "word": " a", "probability": 0.896484375}, {"start": 470.3, "end": 470.58, "word": " class", "probability": 0.95751953125}, {"start": 470.58, "end": 470.86, "word": " called", "probability": 0.55322265625}, {"start": 470.86, "end": 471.14, "word": " full", "probability": 0.85595703125}, {"start": 471.14, "end": 471.36, "word": "-time", "probability": 0.893798828125}, {"start": 471.36, "end": 471.76, "word": " employee", "probability": 0.72802734375}, {"start": 471.76, "end": 471.9, "word": " and", "probability": 0.8330078125}, {"start": 471.9, "end": 472.0, "word": " a", "probability": 0.373291015625}, {"start": 472.0, "end": 472.2, "word": " class", "probability": 0.96533203125}, {"start": 472.2, "end": 472.48, "word": " called", "probability": 0.8623046875}, {"start": 472.48, "end": 473.14, "word": " part", "probability": 0.927734375}, {"start": 473.14, "end": 473.32, "word": "-time", "probability": 0.98291015625}, {"start": 473.32, "end": 473.76, "word": " employee", "probability": 0.84326171875}, {"start": 473.76, "end": 474.6, "word": " this", "probability": 0.305908203125}, {"start": 474.6, "end": 474.68, "word": " is", "probability": 0.329345703125}, {"start": 474.68, "end": 474.96, "word": " called", "probability": 0.7431640625}, {"start": 474.96, "end": 475.4, "word": " form", "probability": 0.669921875}, {"start": 475.4, "end": 477.14, "word": " full", "probability": 0.4794921875}, {"start": 477.14, "end": 477.46, "word": "-time", "probability": 0.968505859375}, {"start": 477.46, "end": 477.98, "word": " employee", "probability": 0.8330078125}, {"start": 477.98, "end": 478.62, "word": " form", "probability": 0.46044921875}, {"start": 478.62, "end": 479.98, "word": " and", "probability": 0.802734375}, {"start": 479.98, "end": 480.18, "word": " this", "probability": 0.7412109375}, {"start": 480.18, "end": 480.28, "word": " is", "probability": 0.7099609375}, {"start": 480.28, "end": 480.52, "word": " part", "probability": 0.8798828125}, {"start": 480.52, "end": 480.74, "word": "-time", "probability": 0.98583984375}, {"start": 480.74, "end": 481.18, "word": " employee", "probability": 0.837890625}, {"start": 481.18, "end": 482.22, "word": " form", "probability": 0.91552734375}, {"start": 482.22, "end": 482.66, "word": " it", "probability": 0.403564453125}, {"start": 482.66, "end": 482.76, "word": " has", "probability": 0.65087890625}, {"start": 482.76, "end": 482.92, "word": " all", "probability": 0.6357421875}, {"start": 482.92, "end": 482.92, "word": " this", "probability": 0.32861328125}, {"start": 482.92, "end": 483.56, "word": " code", "probability": 0.87451171875}, {"start": 483.56, "end": 483.94, "word": " which", "probability": 0.09857177734375}, {"start": 483.94, "end": 484.22, "word": " is", "probability": 0.33154296875}, {"start": 484.22, "end": 484.38, "word": " drawn", "probability": 0.5185546875}, {"start": 484.38, "end": 484.58, "word": " this", "probability": 0.24560546875}, {"start": 484.58, "end": 484.9, "word": " way", "probability": 0.8447265625}, {"start": 484.9, "end": 485.48, "word": " because", "probability": 0.31005859375}, {"start": 485.48, "end": 486.34, "word": " what", "probability": 0.71337890625}, {"start": 486.34, "end": 486.42, "word": " I", "probability": 0.912109375}, {"start": 486.42, "end": 486.48, "word": " want", "probability": 0.484619140625}, {"start": 486.48, "end": 486.56, "word": " to", "probability": 0.95751953125}, {"start": 486.56, "end": 486.76, "word": " do", "probability": 0.958984375}, {"start": 486.76, "end": 486.92, "word": " is", "probability": 0.54638671875}, {"start": 486.92, "end": 486.92, "word": " I", "probability": 0.2156982421875}, {"start": 486.92, "end": 487.08, "word": " want", "probability": 0.67822265625}, {"start": 487.08, "end": 487.12, "word": " to", "probability": 0.96240234375}, {"start": 487.12, "end": 487.3, "word": " make", "probability": 0.552734375}, {"start": 487.3, "end": 487.54, "word": " a", "probability": 0.79443359375}, {"start": 487.54, "end": 488.06, "word": " class", "probability": 0.9658203125}, {"start": 488.06, "end": 489.04, "word": " here", "probability": 0.56640625}, {"start": 489.04, "end": 489.4, "word": " called", "probability": 0.67919921875}, {"start": 489.4, "end": 490.0, "word": " employee", "probability": 0.84375}], "temperature": 1.0}, {"id": 20, "seek": 50762, "start": 492.94, "end": 507.62, "text": " All right, guys? What do I want to put in the data that says build4? All the code.", "tokens": [1057, 558, 11, 1074, 30, 708, 360, 286, 528, 281, 829, 294, 264, 1412, 300, 1619, 1322, 19, 30, 1057, 264, 3089, 13], "avg_logprob": -0.787109355131785, "compression_ratio": 1.0121951219512195, "no_speech_prob": 1.0073184967041016e-05, "words": [{"start": 492.94, "end": 493.26, "word": " All", "probability": 0.042572021484375}, {"start": 493.26, "end": 493.26, "word": " right,", "probability": 0.6689453125}, {"start": 503.64, "end": 503.88, "word": " guys?", "probability": 0.599609375}, {"start": 504.54, "end": 504.8, "word": " What", "probability": 0.744140625}, {"start": 504.8, "end": 504.9, "word": " do", "probability": 0.359130859375}, {"start": 504.9, "end": 504.98, "word": " I", "probability": 0.8544921875}, {"start": 504.98, "end": 505.02, "word": " want", "probability": 0.305908203125}, {"start": 505.02, "end": 505.02, "word": " to", "probability": 0.95849609375}, {"start": 505.02, "end": 505.16, "word": " put", "probability": 0.67578125}, {"start": 505.16, "end": 505.26, "word": " in", "probability": 0.84375}, {"start": 505.26, "end": 505.36, "word": " the", "probability": 0.34375}, {"start": 505.36, "end": 505.52, "word": " data", "probability": 0.1617431640625}, {"start": 505.52, "end": 505.68, "word": " that", "probability": 0.11785888671875}, {"start": 505.68, "end": 505.74, "word": " says", "probability": 0.404296875}, {"start": 505.74, "end": 506.18, "word": " build4?", "probability": 0.4979248046875}, {"start": 506.74, "end": 507.06, "word": " All", "probability": 0.86669921875}, {"start": 507.06, "end": 507.2, "word": " the", "probability": 0.59521484375}, {"start": 507.2, "end": 507.62, "word": " code.", "probability": 0.8701171875}], "temperature": 1.0}, {"id": 21, "seek": 52989, "start": 509.05, "end": 529.89, "text": "The one who creates this, I will take it from here and put it where? I will put it at the end. So here I will tell him, for example, inside this method, imagine what's in it, create the code of the name, and the code of the ID, and the code of the job title, okay? And the address. Okay, did you find that we have a different part?", "tokens": [2278, 472, 567, 7829, 341, 11, 286, 486, 747, 309, 490, 510, 293, 829, 309, 689, 30, 286, 486, 829, 309, 412, 264, 917, 13, 407, 510, 286, 486, 980, 796, 11, 337, 1365, 11, 1854, 341, 3170, 11, 3811, 437, 311, 294, 309, 11, 1884, 264, 3089, 295, 264, 1315, 11, 293, 264, 3089, 295, 264, 7348, 11, 293, 264, 3089, 295, 264, 1691, 4876, 11, 1392, 30, 400, 264, 2985, 13, 1033, 11, 630, 291, 915, 300, 321, 362, 257, 819, 644, 30], "avg_logprob": -0.5250726744186046, "compression_ratio": 1.6633165829145728, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 509.05, "end": 509.27, "word": "The", "probability": 0.1324462890625}, {"start": 509.27, "end": 509.47, "word": " one", "probability": 0.33740234375}, {"start": 509.47, "end": 509.47, "word": " who", "probability": 0.7177734375}, {"start": 509.47, "end": 509.53, "word": " creates", "probability": 0.439208984375}, {"start": 509.53, "end": 509.89, "word": " this,", "probability": 0.70849609375}, {"start": 509.97, "end": 510.09, "word": " I", "probability": 0.69921875}, {"start": 510.09, "end": 510.19, "word": " will", "probability": 0.278564453125}, {"start": 510.19, "end": 510.39, "word": " take", "probability": 0.403564453125}, {"start": 510.39, "end": 510.49, "word": " it", "probability": 0.4208984375}, {"start": 510.49, "end": 510.57, "word": " from", "probability": 0.7841796875}, {"start": 510.57, "end": 510.87, "word": " here", "probability": 0.82958984375}, {"start": 510.87, "end": 511.21, "word": " and", "probability": 0.73974609375}, {"start": 511.21, "end": 511.43, "word": " put", "probability": 0.60986328125}, {"start": 511.43, "end": 511.51, "word": " it", "probability": 0.90771484375}, {"start": 511.51, "end": 511.67, "word": " where?", "probability": 0.5380859375}, {"start": 512.23, "end": 512.47, "word": " I", "probability": 0.328125}, {"start": 512.47, "end": 512.51, "word": " will", "probability": 0.7099609375}, {"start": 512.51, "end": 512.67, "word": " put", "probability": 0.837890625}, {"start": 512.67, "end": 512.77, "word": " it", "probability": 0.91064453125}, {"start": 512.77, "end": 512.83, "word": " at", "probability": 0.37158203125}, {"start": 512.83, "end": 512.97, "word": " the", "probability": 0.70166015625}, {"start": 512.97, "end": 513.09, "word": " end.", "probability": 0.1318359375}, {"start": 513.21, "end": 513.45, "word": " So", "probability": 0.193115234375}, {"start": 513.45, "end": 513.67, "word": " here", "probability": 0.60595703125}, {"start": 513.67, "end": 513.75, "word": " I", "probability": 0.728515625}, {"start": 513.75, "end": 513.89, "word": " will", "probability": 0.546875}, {"start": 513.89, "end": 514.07, "word": " tell", "probability": 0.490234375}, {"start": 514.07, "end": 514.19, "word": " him,", "probability": 0.853515625}, {"start": 514.27, "end": 514.31, "word": " for", "probability": 0.64306640625}, {"start": 514.31, "end": 514.57, "word": " example,", "probability": 0.94921875}, {"start": 514.81, "end": 515.05, "word": " inside", "probability": 0.6572265625}, {"start": 515.05, "end": 515.21, "word": " this", "probability": 0.8955078125}, {"start": 515.21, "end": 515.73, "word": " method,", "probability": 0.96435546875}, {"start": 516.15, "end": 516.69, "word": " imagine", "probability": 0.708984375}, {"start": 516.69, "end": 516.97, "word": " what's", "probability": 0.56005859375}, {"start": 516.97, "end": 517.05, "word": " in", "probability": 0.413330078125}, {"start": 517.05, "end": 517.45, "word": " it,", "probability": 0.89306640625}, {"start": 517.77, "end": 518.13, "word": " create", "probability": 0.54736328125}, {"start": 518.13, "end": 519.19, "word": " the", "probability": 0.66455078125}, {"start": 519.19, "end": 519.43, "word": " code", "probability": 0.59716796875}, {"start": 519.43, "end": 519.53, "word": " of", "probability": 0.54052734375}, {"start": 519.53, "end": 519.65, "word": " the", "probability": 0.525390625}, {"start": 519.65, "end": 519.87, "word": " name,", "probability": 0.8603515625}, {"start": 520.41, "end": 520.45, "word": " and", "probability": 0.413330078125}, {"start": 520.45, "end": 520.57, "word": " the", "probability": 0.748046875}, {"start": 520.57, "end": 520.85, "word": " code", "probability": 0.876953125}, {"start": 520.85, "end": 521.23, "word": " of", "probability": 0.9443359375}, {"start": 521.23, "end": 521.53, "word": " the", "probability": 0.73779296875}, {"start": 521.53, "end": 522.33, "word": " ID,", "probability": 0.45263671875}, {"start": 522.63, "end": 522.71, "word": " and", "probability": 0.8466796875}, {"start": 522.71, "end": 522.83, "word": " the", "probability": 0.88818359375}, {"start": 522.83, "end": 523.01, "word": " code", "probability": 0.8408203125}, {"start": 523.01, "end": 523.17, "word": " of", "probability": 0.9609375}, {"start": 523.17, "end": 523.29, "word": " the", "probability": 0.87109375}, {"start": 523.29, "end": 523.49, "word": " job", "probability": 0.93798828125}, {"start": 523.49, "end": 524.05, "word": " title,", "probability": 0.9794921875}, {"start": 524.55, "end": 525.03, "word": " okay?", "probability": 0.263916015625}, {"start": 525.47, "end": 525.71, "word": " And", "probability": 0.71337890625}, {"start": 525.71, "end": 525.81, "word": " the", "probability": 0.85400390625}, {"start": 525.81, "end": 526.21, "word": " address.", "probability": 0.9150390625}, {"start": 528.69, "end": 528.87, "word": " Okay,", "probability": 0.5703125}, {"start": 528.95, "end": 529.09, "word": " did", "probability": 0.129150390625}, {"start": 529.09, "end": 529.13, "word": " you", "probability": 0.9638671875}, {"start": 529.13, "end": 529.23, "word": " find", "probability": 0.43115234375}, {"start": 529.23, "end": 529.31, "word": " that", "probability": 0.57763671875}, {"start": 529.31, "end": 529.41, "word": " we", "probability": 0.392578125}, {"start": 529.41, "end": 529.61, "word": " have", "probability": 0.62158203125}, {"start": 529.61, "end": 529.71, "word": " a", "probability": 0.83837890625}, {"start": 529.71, "end": 529.71, "word": " different", "probability": 0.8134765625}, {"start": 529.71, "end": 529.89, "word": " part?", "probability": 0.74462890625}], "temperature": 1.0}, {"id": 22, "seek": 55611, "start": 533.31, "end": 556.11, "text": "Right? Which is this one. She doesn't know what to do. Right or not? So, she will do in return of this, create specific GUI for example. This is a method, but I will call it. Yes. What do I want to put this? Here abstract. I will do this here, create specific GUI.", "tokens": [16964, 30, 3013, 307, 341, 472, 13, 1240, 1177, 380, 458, 437, 281, 360, 13, 1779, 420, 406, 30, 407, 11, 750, 486, 360, 294, 2736, 295, 341, 11, 1884, 2685, 17917, 40, 337, 1365, 13, 639, 307, 257, 3170, 11, 457, 286, 486, 818, 309, 13, 1079, 13, 708, 360, 286, 528, 281, 829, 341, 30, 1692, 12649, 13, 286, 486, 360, 341, 510, 11, 1884, 2685, 17917, 40, 13], "avg_logprob": -0.6137152794334624, "compression_ratio": 1.4915254237288136, "no_speech_prob": 4.470348358154297e-06, "words": [{"start": 533.3100000000001, "end": 533.71, "word": "Right?", "probability": 0.2239990234375}, {"start": 534.11, "end": 534.51, "word": " Which", "probability": 0.33154296875}, {"start": 534.51, "end": 534.69, "word": " is", "probability": 0.8876953125}, {"start": 534.69, "end": 534.97, "word": " this", "probability": 0.873046875}, {"start": 534.97, "end": 535.13, "word": " one.", "probability": 0.381103515625}, {"start": 535.47, "end": 535.87, "word": " She", "probability": 0.40625}, {"start": 535.87, "end": 536.01, "word": " doesn't", "probability": 0.790283203125}, {"start": 536.01, "end": 536.31, "word": " know", "probability": 0.88818359375}, {"start": 536.31, "end": 536.49, "word": " what", "probability": 0.66162109375}, {"start": 536.49, "end": 536.59, "word": " to", "probability": 0.37939453125}, {"start": 536.59, "end": 536.77, "word": " do.", "probability": 0.08709716796875}, {"start": 537.15, "end": 537.37, "word": " Right", "probability": 0.7158203125}, {"start": 537.37, "end": 537.55, "word": " or", "probability": 0.78857421875}, {"start": 537.55, "end": 537.57, "word": " not?", "probability": 0.441650390625}, {"start": 537.93, "end": 538.19, "word": " So,", "probability": 0.81494140625}, {"start": 538.27, "end": 538.39, "word": " she", "probability": 0.43994140625}, {"start": 538.39, "end": 538.39, "word": " will", "probability": 0.26123046875}, {"start": 538.39, "end": 538.71, "word": " do", "probability": 0.284423828125}, {"start": 538.71, "end": 538.85, "word": " in", "probability": 0.1339111328125}, {"start": 538.85, "end": 539.07, "word": " return", "probability": 0.85205078125}, {"start": 539.07, "end": 539.07, "word": " of", "probability": 0.2283935546875}, {"start": 539.07, "end": 539.31, "word": " this,", "probability": 0.82373046875}, {"start": 539.41, "end": 540.01, "word": " create", "probability": 0.64697265625}, {"start": 540.01, "end": 542.63, "word": " specific", "probability": 0.509765625}, {"start": 542.63, "end": 543.13, "word": " GUI", "probability": 0.974609375}, {"start": 543.13, "end": 543.31, "word": " for", "probability": 0.495361328125}, {"start": 543.31, "end": 544.35, "word": " example.", "probability": 0.92529296875}, {"start": 546.15, "end": 546.55, "word": " This", "probability": 0.6298828125}, {"start": 546.55, "end": 546.61, "word": " is", "probability": 0.52001953125}, {"start": 546.61, "end": 546.85, "word": " a", "probability": 0.478759765625}, {"start": 546.85, "end": 546.85, "word": " method,", "probability": 0.87646484375}, {"start": 546.93, "end": 547.01, "word": " but", "probability": 0.52197265625}, {"start": 547.01, "end": 547.13, "word": " I", "probability": 0.681640625}, {"start": 547.13, "end": 547.13, "word": " will", "probability": 0.2196044921875}, {"start": 547.13, "end": 547.31, "word": " call", "probability": 0.376220703125}, {"start": 547.31, "end": 547.45, "word": " it.", "probability": 0.90966796875}, {"start": 547.53, "end": 547.83, "word": " Yes.", "probability": 0.51220703125}, {"start": 548.21, "end": 548.39, "word": " What", "probability": 0.58544921875}, {"start": 548.39, "end": 548.39, "word": " do", "probability": 0.250244140625}, {"start": 548.39, "end": 548.55, "word": " I", "probability": 0.94384765625}, {"start": 548.55, "end": 548.63, "word": " want", "probability": 0.6923828125}, {"start": 548.63, "end": 548.63, "word": " to", "probability": 0.9453125}, {"start": 548.63, "end": 548.77, "word": " put", "probability": 0.78466796875}, {"start": 548.77, "end": 548.77, "word": " this?", "probability": 0.6025390625}, {"start": 549.33, "end": 549.73, "word": " Here", "probability": 0.57080078125}, {"start": 549.73, "end": 550.13, "word": " abstract.", "probability": 0.403076171875}, {"start": 550.25, "end": 550.37, "word": " I", "probability": 0.9375}, {"start": 550.37, "end": 550.37, "word": " will", "probability": 0.47314453125}, {"start": 550.37, "end": 550.53, "word": " do", "probability": 0.44384765625}, {"start": 550.53, "end": 550.75, "word": " this", "probability": 0.7138671875}, {"start": 550.75, "end": 550.93, "word": " here,", "probability": 0.364013671875}, {"start": 551.09, "end": 551.69, "word": " create", "probability": 0.87060546875}, {"start": 551.69, "end": 553.85, "word": " specific", "probability": 0.8671875}, {"start": 553.85, "end": 556.11, "word": " GUI.", "probability": 0.96044921875}], "temperature": 1.0}, {"id": 23, "seek": 57699, "start": 559.39, "end": 576.99, "text": "This one is abstract, there is no code in it. Who is going to implement it? The subclasses. But this build form is going to claim this one, right? Okay, and then I put the code of the save button. Because when the save button is pressed,", "tokens": [5723, 472, 307, 12649, 11, 456, 307, 572, 3089, 294, 309, 13, 2102, 307, 516, 281, 4445, 309, 30, 440, 1422, 11665, 279, 13, 583, 341, 1322, 1254, 307, 516, 281, 3932, 341, 472, 11, 558, 30, 1033, 11, 293, 550, 286, 829, 264, 3089, 295, 264, 3155, 2960, 13, 1436, 562, 264, 3155, 2960, 307, 17355, 11], "avg_logprob": -0.5293962127071316, "compression_ratio": 1.5095541401273886, "no_speech_prob": 1.4543533325195312e-05, "words": [{"start": 559.39, "end": 559.73, "word": "This", "probability": 0.310546875}, {"start": 559.73, "end": 559.79, "word": " one", "probability": 0.3369140625}, {"start": 559.79, "end": 559.91, "word": " is", "probability": 0.80859375}, {"start": 559.91, "end": 560.59, "word": " abstract,", "probability": 0.6328125}, {"start": 560.95, "end": 561.07, "word": " there", "probability": 0.33154296875}, {"start": 561.07, "end": 561.09, "word": " is", "probability": 0.71630859375}, {"start": 561.09, "end": 561.19, "word": " no", "probability": 0.91552734375}, {"start": 561.19, "end": 561.69, "word": " code", "probability": 0.90478515625}, {"start": 561.69, "end": 561.81, "word": " in", "probability": 0.37646484375}, {"start": 561.81, "end": 561.81, "word": " it.", "probability": 0.84521484375}, {"start": 561.95, "end": 562.27, "word": " Who", "probability": 0.75390625}, {"start": 562.27, "end": 562.43, "word": " is", "probability": 0.1976318359375}, {"start": 562.43, "end": 562.45, "word": " going", "probability": 0.779296875}, {"start": 562.45, "end": 562.45, "word": " to", "probability": 0.96728515625}, {"start": 562.45, "end": 563.01, "word": " implement", "probability": 0.61865234375}, {"start": 563.01, "end": 563.23, "word": " it?", "probability": 0.6826171875}, {"start": 563.63, "end": 564.11, "word": " The", "probability": 0.327392578125}, {"start": 564.11, "end": 565.21, "word": " subclasses.", "probability": 0.7902018229166666}, {"start": 565.21, "end": 565.39, "word": " But", "probability": 0.7392578125}, {"start": 565.39, "end": 565.77, "word": " this", "probability": 0.826171875}, {"start": 565.77, "end": 566.53, "word": " build", "probability": 0.51513671875}, {"start": 566.53, "end": 566.89, "word": " form", "probability": 0.755859375}, {"start": 566.89, "end": 567.13, "word": " is", "probability": 0.404296875}, {"start": 567.13, "end": 567.13, "word": " going", "probability": 0.9072265625}, {"start": 567.13, "end": 567.17, "word": " to", "probability": 0.96142578125}, {"start": 567.17, "end": 567.59, "word": " claim", "probability": 0.2398681640625}, {"start": 567.59, "end": 568.79, "word": " this", "probability": 0.77392578125}, {"start": 568.79, "end": 569.09, "word": " one,", "probability": 0.54150390625}, {"start": 569.17, "end": 569.41, "word": " right?", "probability": 0.7236328125}, {"start": 570.01, "end": 570.49, "word": " Okay,", "probability": 0.177978515625}, {"start": 571.67, "end": 572.31, "word": " and", "probability": 0.34033203125}, {"start": 572.31, "end": 572.59, "word": " then", "probability": 0.7490234375}, {"start": 572.59, "end": 572.79, "word": " I", "probability": 0.89697265625}, {"start": 572.79, "end": 573.03, "word": " put", "probability": 0.461181640625}, {"start": 573.03, "end": 573.19, "word": " the", "probability": 0.78564453125}, {"start": 573.19, "end": 573.41, "word": " code", "probability": 0.8935546875}, {"start": 573.41, "end": 573.55, "word": " of", "probability": 0.36279296875}, {"start": 573.55, "end": 573.57, "word": " the", "probability": 0.80419921875}, {"start": 573.57, "end": 574.13, "word": " save", "probability": 0.5224609375}, {"start": 574.13, "end": 574.15, "word": " button.", "probability": 0.86474609375}, {"start": 575.51, "end": 575.99, "word": " Because", "probability": 0.84814453125}, {"start": 575.99, "end": 576.09, "word": " when", "probability": 0.6513671875}, {"start": 576.09, "end": 576.09, "word": " the", "probability": 0.270751953125}, {"start": 576.09, "end": 576.53, "word": " save", "probability": 0.63525390625}, {"start": 576.53, "end": 576.61, "word": " button", "probability": 0.9150390625}, {"start": 576.61, "end": 576.75, "word": " is", "probability": 0.76220703125}, {"start": 576.75, "end": 576.99, "word": " pressed,", "probability": 0.5791015625}], "temperature": 1.0}, {"id": 24, "seek": 59787, "start": 578.19, "end": 597.87, "text": "It's supposed to execute a different code. So when I click on the save button, it will ask for another instruction called specific action or do save, for example. And this one is also going to do an abstract instruction called do save.", "tokens": [3522, 311, 3442, 281, 14483, 257, 819, 3089, 13, 407, 562, 286, 2052, 322, 264, 3155, 2960, 11, 309, 486, 1029, 337, 1071, 10951, 1219, 2685, 3069, 420, 360, 3155, 11, 337, 1365, 13, 400, 341, 472, 307, 611, 516, 281, 360, 364, 12649, 10951, 1219, 360, 3155, 13], "avg_logprob": -0.6290625286102295, "compression_ratio": 1.4968152866242037, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 578.19, "end": 578.35, "word": "It's", "probability": 0.2757568359375}, {"start": 578.35, "end": 578.55, "word": " supposed", "probability": 0.64892578125}, {"start": 578.55, "end": 578.65, "word": " to", "probability": 0.96630859375}, {"start": 578.65, "end": 578.91, "word": " execute", "probability": 0.71875}, {"start": 578.91, "end": 579.21, "word": " a", "probability": 0.625}, {"start": 579.21, "end": 579.55, "word": " different", "probability": 0.8681640625}, {"start": 579.55, "end": 579.55, "word": " code.", "probability": 0.908203125}, {"start": 580.37, "end": 580.39, "word": " So", "probability": 0.47412109375}, {"start": 580.39, "end": 580.95, "word": " when", "probability": 0.322265625}, {"start": 580.95, "end": 581.21, "word": " I", "probability": 0.8916015625}, {"start": 581.21, "end": 581.41, "word": " click", "probability": 0.2939453125}, {"start": 581.41, "end": 581.61, "word": " on", "probability": 0.82373046875}, {"start": 581.61, "end": 581.97, "word": " the", "probability": 0.63916015625}, {"start": 581.97, "end": 582.23, "word": " save", "probability": 0.417236328125}, {"start": 582.23, "end": 582.29, "word": " button,", "probability": 0.8046875}, {"start": 582.35, "end": 582.39, "word": " it", "probability": 0.65576171875}, {"start": 582.39, "end": 582.43, "word": " will", "probability": 0.233642578125}, {"start": 582.43, "end": 582.71, "word": " ask", "probability": 0.32373046875}, {"start": 582.71, "end": 582.83, "word": " for", "probability": 0.5966796875}, {"start": 582.83, "end": 582.83, "word": " another", "probability": 0.6689453125}, {"start": 582.83, "end": 583.09, "word": " instruction", "probability": 0.0596923828125}, {"start": 583.09, "end": 584.63, "word": " called", "probability": 0.253662109375}, {"start": 584.63, "end": 588.29, "word": " specific", "probability": 0.413818359375}, {"start": 588.29, "end": 588.85, "word": " action", "probability": 0.89794921875}, {"start": 588.85, "end": 589.07, "word": " or", "probability": 0.6689453125}, {"start": 589.07, "end": 589.31, "word": " do", "probability": 0.7490234375}, {"start": 589.31, "end": 590.63, "word": " save,", "probability": 0.82421875}, {"start": 590.81, "end": 590.83, "word": " for", "probability": 0.890625}, {"start": 590.83, "end": 590.97, "word": " example.", "probability": 0.94140625}, {"start": 593.55, "end": 594.05, "word": " And", "probability": 0.56982421875}, {"start": 594.05, "end": 594.35, "word": " this", "probability": 0.57080078125}, {"start": 594.35, "end": 594.43, "word": " one", "probability": 0.360595703125}, {"start": 594.43, "end": 594.59, "word": " is", "probability": 0.12457275390625}, {"start": 594.59, "end": 594.67, "word": " also", "probability": 0.488525390625}, {"start": 594.67, "end": 594.95, "word": " going", "probability": 0.51025390625}, {"start": 594.95, "end": 595.05, "word": " to", "probability": 0.97021484375}, {"start": 595.05, "end": 595.19, "word": " do", "probability": 0.271728515625}, {"start": 595.19, "end": 595.93, "word": " an", "probability": 0.728515625}, {"start": 595.93, "end": 596.47, "word": " abstract", "probability": 0.422119140625}, {"start": 596.47, "end": 596.69, "word": " instruction", "probability": 0.7470703125}, {"start": 596.69, "end": 597.19, "word": " called", "probability": 0.388671875}, {"start": 597.19, "end": 597.45, "word": " do", "probability": 0.7431640625}, {"start": 597.45, "end": 597.87, "word": " save.", "probability": 0.912109375}], "temperature": 1.0}, {"id": 25, "seek": 61803, "start": 599.65, "end": 618.03, "text": "So now the superclass has how many abstract data? Two. Why two? Why not one? Because I have two different characters in two different places. And really this is to work. You put the common factor and every time you find something different, you turn the client into the subclass.", "tokens": [6455, 586, 264, 1687, 11665, 575, 577, 867, 12649, 1412, 30, 4453, 13, 1545, 732, 30, 1545, 406, 472, 30, 1436, 286, 362, 732, 819, 4342, 294, 732, 819, 3190, 13, 400, 534, 341, 307, 281, 589, 13, 509, 829, 264, 2689, 5952, 293, 633, 565, 291, 915, 746, 819, 11, 291, 1261, 264, 6423, 666, 264, 1422, 11665, 13], "avg_logprob": -0.5425204800777748, "compression_ratio": 1.4840425531914894, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 599.65, "end": 599.93, "word": "So", "probability": 0.132568359375}, {"start": 599.93, "end": 600.27, "word": " now", "probability": 0.2042236328125}, {"start": 600.27, "end": 600.77, "word": " the", "probability": 0.332763671875}, {"start": 600.77, "end": 601.33, "word": " superclass", "probability": 0.655029296875}, {"start": 601.33, "end": 601.55, "word": " has", "probability": 0.79052734375}, {"start": 601.55, "end": 601.77, "word": " how", "probability": 0.1939697265625}, {"start": 601.77, "end": 601.87, "word": " many", "probability": 0.8955078125}, {"start": 601.87, "end": 602.59, "word": " abstract", "probability": 0.6025390625}, {"start": 602.59, "end": 602.71, "word": " data?", "probability": 0.2437744140625}, {"start": 603.19, "end": 603.71, "word": " Two.", "probability": 0.68017578125}, {"start": 603.89, "end": 604.23, "word": " Why", "probability": 0.7890625}, {"start": 604.23, "end": 604.49, "word": " two?", "probability": 0.83251953125}, {"start": 604.61, "end": 604.71, "word": " Why", "probability": 0.70703125}, {"start": 604.71, "end": 604.87, "word": " not", "probability": 0.92919921875}, {"start": 604.87, "end": 605.11, "word": " one?", "probability": 0.75390625}, {"start": 605.61, "end": 605.93, "word": " Because", "probability": 0.87939453125}, {"start": 605.93, "end": 606.13, "word": " I", "probability": 0.90380859375}, {"start": 606.13, "end": 606.43, "word": " have", "probability": 0.93212890625}, {"start": 606.43, "end": 606.89, "word": " two", "probability": 0.7587890625}, {"start": 606.89, "end": 607.21, "word": " different", "probability": 0.802734375}, {"start": 607.21, "end": 607.21, "word": " characters", "probability": 0.328369140625}, {"start": 607.21, "end": 607.61, "word": " in", "probability": 0.85693359375}, {"start": 607.61, "end": 607.73, "word": " two", "probability": 0.8759765625}, {"start": 607.73, "end": 607.73, "word": " different", "probability": 0.8515625}, {"start": 607.73, "end": 609.15, "word": " places.", "probability": 0.53076171875}, {"start": 610.25, "end": 610.37, "word": " And", "probability": 0.658203125}, {"start": 610.37, "end": 610.71, "word": " really", "probability": 0.296142578125}, {"start": 610.71, "end": 611.11, "word": " this", "probability": 0.394775390625}, {"start": 611.11, "end": 611.15, "word": " is", "probability": 0.564453125}, {"start": 611.15, "end": 611.39, "word": " to", "probability": 0.452880859375}, {"start": 611.39, "end": 611.91, "word": " work.", "probability": 0.806640625}, {"start": 612.13, "end": 612.27, "word": " You", "probability": 0.74951171875}, {"start": 612.27, "end": 612.53, "word": " put", "probability": 0.591796875}, {"start": 612.53, "end": 612.67, "word": " the", "probability": 0.66943359375}, {"start": 612.67, "end": 612.95, "word": " common", "probability": 0.53955078125}, {"start": 612.95, "end": 613.07, "word": " factor", "probability": 0.18505859375}, {"start": 613.07, "end": 613.23, "word": " and", "probability": 0.59521484375}, {"start": 613.23, "end": 613.45, "word": " every", "probability": 0.314208984375}, {"start": 613.45, "end": 613.53, "word": " time", "probability": 0.8486328125}, {"start": 613.53, "end": 613.65, "word": " you", "probability": 0.947265625}, {"start": 613.65, "end": 613.81, "word": " find", "probability": 0.82666015625}, {"start": 613.81, "end": 614.07, "word": " something", "probability": 0.70654296875}, {"start": 614.07, "end": 614.59, "word": " different,", "probability": 0.86328125}, {"start": 615.93, "end": 615.95, "word": " you", "probability": 0.4677734375}, {"start": 615.95, "end": 616.17, "word": " turn", "probability": 0.364990234375}, {"start": 616.17, "end": 616.59, "word": " the", "probability": 0.775390625}, {"start": 616.59, "end": 616.59, "word": " client", "probability": 0.481689453125}, {"start": 616.59, "end": 617.49, "word": " into", "probability": 0.465576171875}, {"start": 617.49, "end": 617.57, "word": " the", "probability": 0.81689453125}, {"start": 617.57, "end": 618.03, "word": " subclass.", "probability": 0.820068359375}], "temperature": 1.0}, {"id": 26, "seek": 64588, "start": 619.24, "end": 645.88, "text": "Now, this class extends to this one, right? And this one extends to this one. It will be required to implement for whom? For these two methods. In this method, it puts the code that is specific to whom. It designs the design only for this part. Okay? And in the save, it puts the code that will be executed when I press the save button. When I press the save button, here it will create an object from part-time employee.", "tokens": [13267, 11, 341, 1508, 26448, 281, 341, 472, 11, 558, 30, 400, 341, 472, 26448, 281, 341, 472, 13, 467, 486, 312, 4739, 281, 4445, 337, 7101, 30, 1171, 613, 732, 7150, 13, 682, 341, 3170, 11, 309, 8137, 264, 3089, 300, 307, 2685, 281, 7101, 13, 467, 11347, 264, 1715, 787, 337, 341, 644, 13, 1033, 30, 400, 294, 264, 3155, 11, 309, 8137, 264, 3089, 300, 486, 312, 17577, 562, 286, 1886, 264, 3155, 2960, 13, 1133, 286, 1886, 264, 3155, 2960, 11, 510, 309, 486, 1884, 364, 2657, 490, 644, 12, 3766, 10738, 13], "avg_logprob": -0.41836734237719553, "compression_ratio": 1.8384279475982532, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 619.2399999999999, "end": 619.68, "word": "Now,", "probability": 0.404296875}, {"start": 620.02, "end": 620.42, "word": " this", "probability": 0.84814453125}, {"start": 620.42, "end": 620.9, "word": " class", "probability": 0.9267578125}, {"start": 620.9, "end": 622.1, "word": " extends", "probability": 0.14013671875}, {"start": 622.1, "end": 623.04, "word": " to", "probability": 0.8544921875}, {"start": 623.04, "end": 623.28, "word": " this", "probability": 0.6826171875}, {"start": 623.28, "end": 623.3, "word": " one,", "probability": 0.306640625}, {"start": 623.36, "end": 623.56, "word": " right?", "probability": 0.60400390625}, {"start": 623.78, "end": 624.22, "word": " And", "probability": 0.366455078125}, {"start": 624.22, "end": 624.44, "word": " this", "probability": 0.83544921875}, {"start": 624.44, "end": 624.46, "word": " one", "probability": 0.38916015625}, {"start": 624.46, "end": 624.84, "word": " extends", "probability": 0.86279296875}, {"start": 624.84, "end": 624.98, "word": " to", "probability": 0.9560546875}, {"start": 624.98, "end": 625.18, "word": " this", "probability": 0.8642578125}, {"start": 625.18, "end": 625.28, "word": " one.", "probability": 0.9033203125}, {"start": 625.56, "end": 625.6, "word": " It", "probability": 0.32763671875}, {"start": 625.6, "end": 625.7, "word": " will", "probability": 0.45751953125}, {"start": 625.7, "end": 625.9, "word": " be", "probability": 0.7705078125}, {"start": 625.9, "end": 626.18, "word": " required", "probability": 0.576171875}, {"start": 626.18, "end": 626.48, "word": " to", "probability": 0.297119140625}, {"start": 626.48, "end": 627.28, "word": " implement", "probability": 0.7841796875}, {"start": 627.28, "end": 627.52, "word": " for", "probability": 0.25244140625}, {"start": 627.52, "end": 627.66, "word": " whom?", "probability": 0.78564453125}, {"start": 628.2, "end": 628.64, "word": " For", "probability": 0.7333984375}, {"start": 628.64, "end": 628.74, "word": " these", "probability": 0.65576171875}, {"start": 628.74, "end": 628.86, "word": " two", "probability": 0.8642578125}, {"start": 628.86, "end": 629.22, "word": " methods.", "probability": 0.91162109375}, {"start": 630.0, "end": 630.44, "word": " In", "probability": 0.85205078125}, {"start": 630.44, "end": 630.52, "word": " this", "probability": 0.91748046875}, {"start": 630.52, "end": 630.78, "word": " method,", "probability": 0.953125}, {"start": 631.06, "end": 631.1, "word": " it", "probability": 0.70751953125}, {"start": 631.1, "end": 631.3, "word": " puts", "probability": 0.4931640625}, {"start": 631.3, "end": 631.48, "word": " the", "probability": 0.705078125}, {"start": 631.48, "end": 631.68, "word": " code", "probability": 0.6298828125}, {"start": 631.68, "end": 631.84, "word": " that", "probability": 0.2401123046875}, {"start": 631.84, "end": 631.88, "word": " is", "probability": 0.53955078125}, {"start": 631.88, "end": 632.24, "word": " specific", "probability": 0.55908203125}, {"start": 632.24, "end": 633.02, "word": " to", "probability": 0.7880859375}, {"start": 633.02, "end": 633.3, "word": " whom.", "probability": 0.62890625}, {"start": 633.9, "end": 634.34, "word": " It", "probability": 0.282958984375}, {"start": 634.34, "end": 634.74, "word": " designs", "probability": 0.7978515625}, {"start": 634.74, "end": 635.0, "word": " the", "probability": 0.74951171875}, {"start": 635.0, "end": 635.4, "word": " design", "probability": 0.95263671875}, {"start": 635.4, "end": 635.72, "word": " only", "probability": 0.4541015625}, {"start": 635.72, "end": 635.96, "word": " for", "probability": 0.74267578125}, {"start": 635.96, "end": 636.14, "word": " this", "probability": 0.85498046875}, {"start": 636.14, "end": 636.4, "word": " part.", "probability": 0.7451171875}, {"start": 637.5, "end": 637.7, "word": " Okay?", "probability": 0.2239990234375}, {"start": 638.14, "end": 638.3, "word": " And", "probability": 0.84521484375}, {"start": 638.3, "end": 638.4, "word": " in", "probability": 0.87060546875}, {"start": 638.4, "end": 638.58, "word": " the", "probability": 0.587890625}, {"start": 638.58, "end": 638.88, "word": " save,", "probability": 0.6025390625}, {"start": 638.98, "end": 639.24, "word": " it", "probability": 0.88134765625}, {"start": 639.24, "end": 639.52, "word": " puts", "probability": 0.798828125}, {"start": 639.52, "end": 639.7, "word": " the", "probability": 0.8974609375}, {"start": 639.7, "end": 639.9, "word": " code", "probability": 0.93994140625}, {"start": 639.9, "end": 640.02, "word": " that", "probability": 0.8916015625}, {"start": 640.02, "end": 640.16, "word": " will", "probability": 0.478759765625}, {"start": 640.16, "end": 640.3, "word": " be", "probability": 0.74853515625}, {"start": 640.3, "end": 640.58, "word": " executed", "probability": 0.6982421875}, {"start": 640.58, "end": 640.82, "word": " when", "probability": 0.87060546875}, {"start": 640.82, "end": 640.94, "word": " I", "probability": 0.9169921875}, {"start": 640.94, "end": 641.14, "word": " press", "probability": 0.5732421875}, {"start": 641.14, "end": 641.92, "word": " the", "probability": 0.8212890625}, {"start": 641.92, "end": 642.48, "word": " save", "probability": 0.67822265625}, {"start": 642.48, "end": 642.5, "word": " button.", "probability": 0.830078125}, {"start": 642.84, "end": 643.12, "word": " When", "probability": 0.873046875}, {"start": 643.12, "end": 643.22, "word": " I", "probability": 0.9814453125}, {"start": 643.22, "end": 643.36, "word": " press", "probability": 0.802734375}, {"start": 643.36, "end": 643.72, "word": " the", "probability": 0.87744140625}, {"start": 643.72, "end": 643.96, "word": " save", "probability": 0.9091796875}, {"start": 643.96, "end": 643.96, "word": " button,", "probability": 0.86962890625}, {"start": 644.02, "end": 644.18, "word": " here", "probability": 0.5439453125}, {"start": 644.18, "end": 644.22, "word": " it", "probability": 0.2401123046875}, {"start": 644.22, "end": 644.38, "word": " will", "probability": 0.59375}, {"start": 644.38, "end": 644.54, "word": " create", "probability": 0.75537109375}, {"start": 644.54, "end": 644.68, "word": " an", "probability": 0.8818359375}, {"start": 644.68, "end": 644.86, "word": " object", "probability": 0.9697265625}, {"start": 644.86, "end": 645.08, "word": " from", "probability": 0.6044921875}, {"start": 645.08, "end": 645.3, "word": " part", "probability": 0.348876953125}, {"start": 645.3, "end": 645.54, "word": "-time", "probability": 0.93798828125}, {"start": 645.54, "end": 645.88, "word": " employee.", "probability": 0.658203125}], "temperature": 1.0}, {"id": 27, "seek": 67256, "start": 646.82, "end": 672.56, "text": " When I click on the save button here, it will create an object from the full-time employee So when I click on save, it will use the full-time and this one will use the part-time Just like when we have a Facebook poster, it creates an object from the Facebook connector And so on Ok, let's see this drawing as a code This idea, let's look at it as a code", "tokens": [1133, 286, 2052, 322, 264, 3155, 2960, 510, 11, 309, 486, 1884, 364, 2657, 490, 264, 1577, 12, 3766, 10738, 407, 562, 286, 2052, 322, 3155, 11, 309, 486, 764, 264, 1577, 12, 3766, 293, 341, 472, 486, 764, 264, 644, 12, 3766, 1449, 411, 562, 321, 362, 257, 4384, 17171, 11, 309, 7829, 364, 2657, 490, 264, 4384, 19127, 400, 370, 322, 3477, 11, 718, 311, 536, 341, 6316, 382, 257, 3089, 639, 1558, 11, 718, 311, 574, 412, 309, 382, 257, 3089], "avg_logprob": -0.47169117366566377, "compression_ratio": 1.7969543147208122, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 646.82, "end": 647.22, "word": " When", "probability": 0.2763671875}, {"start": 647.22, "end": 647.62, "word": " I", "probability": 0.8369140625}, {"start": 647.62, "end": 647.8, "word": " click", "probability": 0.50537109375}, {"start": 647.8, "end": 647.96, "word": " on", "probability": 0.7646484375}, {"start": 647.96, "end": 648.06, "word": " the", "probability": 0.525390625}, {"start": 648.06, "end": 648.38, "word": " save", "probability": 0.5185546875}, {"start": 648.38, "end": 648.42, "word": " button", "probability": 0.7060546875}, {"start": 648.42, "end": 648.56, "word": " here,", "probability": 0.385986328125}, {"start": 648.6, "end": 648.62, "word": " it", "probability": 0.71533203125}, {"start": 648.62, "end": 648.76, "word": " will", "probability": 0.50732421875}, {"start": 648.76, "end": 648.94, "word": " create", "probability": 0.708984375}, {"start": 648.94, "end": 649.1, "word": " an", "probability": 0.78173828125}, {"start": 649.1, "end": 649.26, "word": " object", "probability": 0.9208984375}, {"start": 649.26, "end": 649.56, "word": " from", "probability": 0.61572265625}, {"start": 649.56, "end": 650.06, "word": " the", "probability": 0.23193359375}, {"start": 650.06, "end": 650.2, "word": " full", "probability": 0.787109375}, {"start": 650.2, "end": 650.4, "word": "-time", "probability": 0.8876953125}, {"start": 650.4, "end": 650.66, "word": " employee", "probability": 0.81689453125}, {"start": 650.66, "end": 650.84, "word": " So", "probability": 0.14208984375}, {"start": 650.84, "end": 651.16, "word": " when", "probability": 0.4755859375}, {"start": 651.16, "end": 651.96, "word": " I", "probability": 0.92431640625}, {"start": 651.96, "end": 652.1, "word": " click", "probability": 0.85546875}, {"start": 652.1, "end": 652.28, "word": " on", "probability": 0.8486328125}, {"start": 652.28, "end": 652.5, "word": " save,", "probability": 0.421875}, {"start": 652.6, "end": 652.62, "word": " it", "probability": 0.48193359375}, {"start": 652.62, "end": 652.76, "word": " will", "probability": 0.84033203125}, {"start": 652.76, "end": 653.3, "word": " use", "probability": 0.763671875}, {"start": 653.3, "end": 654.02, "word": " the", "probability": 0.6005859375}, {"start": 654.02, "end": 654.22, "word": " full", "probability": 0.9150390625}, {"start": 654.22, "end": 654.54, "word": "-time", "probability": 0.967041015625}, {"start": 654.54, "end": 654.74, "word": " and", "probability": 0.332763671875}, {"start": 654.74, "end": 655.02, "word": " this", "probability": 0.52587890625}, {"start": 655.02, "end": 655.06, "word": " one", "probability": 0.521484375}, {"start": 655.06, "end": 655.18, "word": " will", "probability": 0.8193359375}, {"start": 655.18, "end": 655.7, "word": " use", "probability": 0.85107421875}, {"start": 655.7, "end": 656.6, "word": " the", "probability": 0.7734375}, {"start": 656.6, "end": 656.86, "word": " part", "probability": 0.935546875}, {"start": 656.86, "end": 657.02, "word": "-time", "probability": 0.980712890625}, {"start": 657.02, "end": 657.12, "word": " Just", "probability": 0.2401123046875}, {"start": 657.12, "end": 657.28, "word": " like", "probability": 0.8720703125}, {"start": 657.28, "end": 657.9, "word": " when", "probability": 0.1563720703125}, {"start": 657.9, "end": 658.12, "word": " we", "probability": 0.461669921875}, {"start": 658.12, "end": 658.12, "word": " have", "probability": 0.697265625}, {"start": 658.12, "end": 658.58, "word": " a", "probability": 0.61376953125}, {"start": 658.58, "end": 658.92, "word": " Facebook", "probability": 0.465576171875}, {"start": 658.92, "end": 659.46, "word": " poster,", "probability": 0.64306640625}, {"start": 659.76, "end": 660.1, "word": " it", "probability": 0.81298828125}, {"start": 660.1, "end": 660.2, "word": " creates", "probability": 0.52880859375}, {"start": 660.2, "end": 660.4, "word": " an", "probability": 0.9130859375}, {"start": 660.4, "end": 660.6, "word": " object", "probability": 0.970703125}, {"start": 660.6, "end": 660.9, "word": " from", "probability": 0.8525390625}, {"start": 660.9, "end": 661.04, "word": " the", "probability": 0.3408203125}, {"start": 661.04, "end": 661.32, "word": " Facebook", "probability": 0.69921875}, {"start": 661.32, "end": 661.88, "word": " connector", "probability": 0.77392578125}, {"start": 661.88, "end": 663.34, "word": " And", "probability": 0.217041015625}, {"start": 663.34, "end": 664.38, "word": " so", "probability": 0.473388671875}, {"start": 664.38, "end": 665.12, "word": " on", "probability": 0.88330078125}, {"start": 665.12, "end": 666.4, "word": " Ok,", "probability": 0.1607666015625}, {"start": 666.52, "end": 667.68, "word": " let's", "probability": 0.720947265625}, {"start": 667.68, "end": 668.0, "word": " see", "probability": 0.440673828125}, {"start": 668.0, "end": 668.0, "word": " this", "probability": 0.71435546875}, {"start": 668.0, "end": 668.0, "word": " drawing", "probability": 0.73095703125}, {"start": 668.0, "end": 668.54, "word": " as", "probability": 0.77685546875}, {"start": 668.54, "end": 668.64, "word": " a", "probability": 0.7041015625}, {"start": 668.64, "end": 668.82, "word": " code", "probability": 0.88134765625}, {"start": 668.82, "end": 670.36, "word": " This", "probability": 0.2149658203125}, {"start": 670.36, "end": 671.18, "word": " idea,", "probability": 0.85400390625}, {"start": 671.42, "end": 671.6, "word": " let's", "probability": 0.958251953125}, {"start": 671.6, "end": 671.88, "word": " look", "probability": 0.41357421875}, {"start": 671.88, "end": 672.06, "word": " at", "probability": 0.943359375}, {"start": 672.06, "end": 672.18, "word": " it", "probability": 0.939453125}, {"start": 672.18, "end": 672.28, "word": " as", "probability": 0.93017578125}, {"start": 672.28, "end": 672.4, "word": " a", "probability": 0.84521484375}, {"start": 672.4, "end": 672.56, "word": " code", "probability": 0.93798828125}], "temperature": 1.0}, {"id": 28, "seek": 69627, "start": 678.63, "end": 696.27, "text": "Now, of course, I know that the details of the GUI are not available to you or you did not take it, but the idea should be clear. When you see the code, you understand this code, I tell you that this part is related to the GUI, okay? The idea is important, but you can apply it in any programming language.", "tokens": [13267, 11, 295, 1164, 11, 286, 458, 300, 264, 4365, 295, 264, 17917, 40, 366, 406, 2435, 281, 291, 420, 291, 630, 406, 747, 309, 11, 457, 264, 1558, 820, 312, 1850, 13, 1133, 291, 536, 264, 3089, 11, 291, 1223, 341, 3089, 11, 286, 980, 291, 300, 341, 644, 307, 4077, 281, 264, 17917, 40, 11, 1392, 30, 440, 1558, 307, 1021, 11, 457, 291, 393, 3079, 309, 294, 604, 9410, 2856, 13], "avg_logprob": -0.4350000127156575, "compression_ratio": 1.5612244897959184, "no_speech_prob": 6.318092346191406e-06, "words": [{"start": 678.63, "end": 678.93, "word": "Now,", "probability": 0.322021484375}, {"start": 679.07, "end": 679.15, "word": " of", "probability": 0.63037109375}, {"start": 679.15, "end": 679.23, "word": " course,", "probability": 0.9521484375}, {"start": 680.25, "end": 681.13, "word": " I", "probability": 0.849609375}, {"start": 681.13, "end": 681.37, "word": " know", "probability": 0.84423828125}, {"start": 681.37, "end": 681.49, "word": " that", "probability": 0.607421875}, {"start": 681.49, "end": 681.59, "word": " the", "probability": 0.70263671875}, {"start": 681.59, "end": 681.83, "word": " details", "probability": 0.658203125}, {"start": 681.83, "end": 681.97, "word": " of", "probability": 0.91357421875}, {"start": 681.97, "end": 682.03, "word": " the", "probability": 0.290771484375}, {"start": 682.03, "end": 682.43, "word": " GUI", "probability": 0.97607421875}, {"start": 682.43, "end": 682.57, "word": " are", "probability": 0.58349609375}, {"start": 682.57, "end": 682.63, "word": " not", "probability": 0.87158203125}, {"start": 682.63, "end": 682.91, "word": " available", "probability": 0.363037109375}, {"start": 682.91, "end": 683.01, "word": " to", "probability": 0.382080078125}, {"start": 683.01, "end": 683.17, "word": " you", "probability": 0.921875}, {"start": 683.17, "end": 683.33, "word": " or", "probability": 0.4716796875}, {"start": 683.33, "end": 683.43, "word": " you", "probability": 0.6044921875}, {"start": 683.43, "end": 683.47, "word": " did", "probability": 0.245361328125}, {"start": 683.47, "end": 683.47, "word": " not", "probability": 0.93994140625}, {"start": 683.47, "end": 683.71, "word": " take", "probability": 0.327880859375}, {"start": 683.71, "end": 683.91, "word": " it,", "probability": 0.580078125}, {"start": 683.97, "end": 684.19, "word": " but", "probability": 0.8828125}, {"start": 684.19, "end": 684.53, "word": " the", "probability": 0.630859375}, {"start": 684.53, "end": 684.85, "word": " idea", "probability": 0.8837890625}, {"start": 684.85, "end": 687.41, "word": " should", "probability": 0.332763671875}, {"start": 687.41, "end": 687.67, "word": " be", "probability": 0.935546875}, {"start": 687.67, "end": 687.99, "word": " clear.", "probability": 0.7666015625}, {"start": 688.09, "end": 688.27, "word": " When", "probability": 0.81005859375}, {"start": 688.27, "end": 688.43, "word": " you", "probability": 0.9619140625}, {"start": 688.43, "end": 688.61, "word": " see", "probability": 0.75537109375}, {"start": 688.61, "end": 688.75, "word": " the", "probability": 0.88427734375}, {"start": 688.75, "end": 689.11, "word": " code,", "probability": 0.92822265625}, {"start": 689.41, "end": 689.55, "word": " you", "probability": 0.80517578125}, {"start": 689.55, "end": 689.79, "word": " understand", "probability": 0.59521484375}, {"start": 689.79, "end": 690.07, "word": " this", "probability": 0.74365234375}, {"start": 690.07, "end": 690.39, "word": " code,", "probability": 0.9306640625}, {"start": 690.43, "end": 690.51, "word": " I", "probability": 0.65576171875}, {"start": 690.51, "end": 690.65, "word": " tell", "probability": 0.414794921875}, {"start": 690.65, "end": 690.79, "word": " you", "probability": 0.96142578125}, {"start": 690.79, "end": 690.91, "word": " that", "probability": 0.58837890625}, {"start": 690.91, "end": 691.03, "word": " this", "probability": 0.859375}, {"start": 691.03, "end": 691.25, "word": " part", "probability": 0.82958984375}, {"start": 691.25, "end": 691.41, "word": " is", "probability": 0.350341796875}, {"start": 691.41, "end": 691.65, "word": " related", "probability": 0.9169921875}, {"start": 691.65, "end": 691.79, "word": " to", "probability": 0.96728515625}, {"start": 691.79, "end": 691.89, "word": " the", "probability": 0.744140625}, {"start": 691.89, "end": 692.39, "word": " GUI,", "probability": 0.966552734375}, {"start": 692.89, "end": 693.01, "word": " okay?", "probability": 0.26416015625}, {"start": 693.15, "end": 693.23, "word": " The", "probability": 0.53369140625}, {"start": 693.23, "end": 693.69, "word": " idea", "probability": 0.72607421875}, {"start": 693.69, "end": 693.69, "word": " is", "probability": 0.7939453125}, {"start": 693.69, "end": 693.69, "word": " important,", "probability": 0.80615234375}, {"start": 693.83, "end": 694.03, "word": " but", "probability": 0.6650390625}, {"start": 694.03, "end": 694.17, "word": " you", "probability": 0.84521484375}, {"start": 694.17, "end": 694.23, "word": " can", "probability": 0.666015625}, {"start": 694.23, "end": 694.47, "word": " apply", "probability": 0.7158203125}, {"start": 694.47, "end": 694.67, "word": " it", "probability": 0.9091796875}, {"start": 694.67, "end": 694.83, "word": " in", "probability": 0.425537109375}, {"start": 694.83, "end": 694.99, "word": " any", "probability": 0.90625}, {"start": 694.99, "end": 696.13, "word": " programming", "probability": 0.841796875}, {"start": 696.13, "end": 696.27, "word": " language.", "probability": 0.82177734375}], "temperature": 1.0}, {"id": 29, "seek": 72827, "start": 699.43, "end": 728.27, "text": " Okay, there is an example on PHP But this is another example, okay? Now, let's see here This class is called EmployeeForm This is basically the main class that I want to collect the common code in Okay? Did you find this class extends JFrame? And this is its constructor Now, this code that is here, do you see it all? This is the GUI code for common things I put here a comment that this is the code that I want", "tokens": [1033, 11, 456, 307, 364, 1365, 322, 47298, 583, 341, 307, 1071, 1365, 11, 1392, 30, 823, 11, 718, 311, 536, 510, 639, 1508, 307, 1219, 26878, 1653, 49855, 639, 307, 1936, 264, 2135, 1508, 300, 286, 528, 281, 2500, 264, 2689, 3089, 294, 1033, 30, 2589, 291, 915, 341, 1508, 26448, 508, 40305, 529, 30, 400, 341, 307, 1080, 47479, 823, 11, 341, 3089, 300, 307, 510, 11, 360, 291, 536, 309, 439, 30, 639, 307, 264, 17917, 40, 3089, 337, 2689, 721, 286, 829, 510, 257, 2871, 300, 341, 307, 264, 3089, 300, 286, 528], "avg_logprob": -0.44802296192062147, "compression_ratio": 1.7352941176470589, "no_speech_prob": 1.3887882232666016e-05, "words": [{"start": 699.43, "end": 699.79, "word": " Okay,", "probability": 0.140625}, {"start": 699.87, "end": 699.99, "word": " there", "probability": 0.67822265625}, {"start": 699.99, "end": 699.99, "word": " is", "probability": 0.61279296875}, {"start": 699.99, "end": 700.29, "word": " an", "probability": 0.7216796875}, {"start": 700.29, "end": 700.29, "word": " example", "probability": 0.97265625}, {"start": 700.29, "end": 700.45, "word": " on", "probability": 0.50537109375}, {"start": 700.45, "end": 700.85, "word": " PHP", "probability": 0.498779296875}, {"start": 700.85, "end": 701.39, "word": " But", "probability": 0.4150390625}, {"start": 701.39, "end": 701.53, "word": " this", "probability": 0.65478515625}, {"start": 701.53, "end": 701.59, "word": " is", "probability": 0.892578125}, {"start": 701.59, "end": 701.59, "word": " another", "probability": 0.7666015625}, {"start": 701.59, "end": 701.95, "word": " example,", "probability": 0.9541015625}, {"start": 702.15, "end": 702.39, "word": " okay?", "probability": 0.6142578125}, {"start": 703.11, "end": 703.57, "word": " Now,", "probability": 0.8486328125}, {"start": 703.75, "end": 704.05, "word": " let's", "probability": 0.902587890625}, {"start": 704.05, "end": 704.31, "word": " see", "probability": 0.6826171875}, {"start": 704.31, "end": 704.57, "word": " here", "probability": 0.76611328125}, {"start": 704.57, "end": 704.97, "word": " This", "probability": 0.56640625}, {"start": 704.97, "end": 705.57, "word": " class", "probability": 0.8828125}, {"start": 705.57, "end": 705.67, "word": " is", "probability": 0.63427734375}, {"start": 705.67, "end": 705.91, "word": " called", "probability": 0.6689453125}, {"start": 705.91, "end": 707.51, "word": " EmployeeForm", "probability": 0.5758056640625}, {"start": 707.51, "end": 708.43, "word": " This", "probability": 0.7080078125}, {"start": 708.43, "end": 708.49, "word": " is", "probability": 0.86572265625}, {"start": 708.49, "end": 708.89, "word": " basically", "probability": 0.3984375}, {"start": 708.89, "end": 709.03, "word": " the", "probability": 0.88525390625}, {"start": 709.03, "end": 709.03, "word": " main", "probability": 0.79296875}, {"start": 709.03, "end": 709.83, "word": " class", "probability": 0.92529296875}, {"start": 709.83, "end": 710.01, "word": " that", "probability": 0.231201171875}, {"start": 710.01, "end": 710.07, "word": " I", "probability": 0.73974609375}, {"start": 710.07, "end": 710.21, "word": " want", "probability": 0.6162109375}, {"start": 710.21, "end": 710.27, "word": " to", "probability": 0.95751953125}, {"start": 710.27, "end": 710.53, "word": " collect", "probability": 0.44091796875}, {"start": 710.53, "end": 711.59, "word": " the", "probability": 0.51904296875}, {"start": 711.59, "end": 711.63, "word": " common", "probability": 0.412353515625}, {"start": 711.63, "end": 711.83, "word": " code", "probability": 0.90478515625}, {"start": 711.83, "end": 712.35, "word": " in", "probability": 0.54833984375}, {"start": 712.35, "end": 713.27, "word": " Okay?", "probability": 0.335205078125}, {"start": 713.89, "end": 714.11, "word": " Did", "probability": 0.335693359375}, {"start": 714.11, "end": 714.35, "word": " you", "probability": 0.9541015625}, {"start": 714.35, "end": 714.35, "word": " find", "probability": 0.5400390625}, {"start": 714.35, "end": 714.59, "word": " this", "probability": 0.486328125}, {"start": 714.59, "end": 715.03, "word": " class", "probability": 0.9619140625}, {"start": 715.03, "end": 715.51, "word": " extends", "probability": 0.7861328125}, {"start": 715.51, "end": 716.07, "word": " JFrame?", "probability": 0.688232421875}, {"start": 716.21, "end": 716.67, "word": " And", "probability": 0.86181640625}, {"start": 716.67, "end": 716.87, "word": " this", "probability": 0.888671875}, {"start": 716.87, "end": 716.93, "word": " is", "probability": 0.91943359375}, {"start": 716.93, "end": 716.95, "word": " its", "probability": 0.6318359375}, {"start": 716.95, "end": 717.45, "word": " constructor", "probability": 0.900390625}, {"start": 717.45, "end": 718.79, "word": " Now,", "probability": 0.77587890625}, {"start": 719.25, "end": 719.67, "word": " this", "probability": 0.7080078125}, {"start": 719.67, "end": 720.01, "word": " code", "probability": 0.85009765625}, {"start": 720.01, "end": 720.11, "word": " that", "probability": 0.327880859375}, {"start": 720.11, "end": 720.15, "word": " is", "probability": 0.66845703125}, {"start": 720.15, "end": 720.63, "word": " here,", "probability": 0.51025390625}, {"start": 720.71, "end": 720.75, "word": " do", "probability": 0.26318359375}, {"start": 720.75, "end": 720.75, "word": " you", "probability": 0.9697265625}, {"start": 720.75, "end": 721.01, "word": " see", "probability": 0.89306640625}, {"start": 721.01, "end": 721.15, "word": " it", "probability": 0.7041015625}, {"start": 721.15, "end": 721.33, "word": " all?", "probability": 0.79052734375}, {"start": 721.95, "end": 722.17, "word": " This", "probability": 0.85888671875}, {"start": 722.17, "end": 722.23, "word": " is", "probability": 0.91650390625}, {"start": 722.23, "end": 722.31, "word": " the", "probability": 0.86376953125}, {"start": 722.31, "end": 723.43, "word": " GUI", "probability": 0.7244873046875}, {"start": 723.43, "end": 723.43, "word": " code", "probability": 0.85546875}, {"start": 723.43, "end": 723.55, "word": " for", "probability": 0.7431640625}, {"start": 723.55, "end": 723.59, "word": " common", "probability": 0.69580078125}, {"start": 723.59, "end": 724.35, "word": " things", "probability": 0.521484375}, {"start": 724.35, "end": 725.11, "word": " I", "probability": 0.638671875}, {"start": 725.11, "end": 725.45, "word": " put", "probability": 0.56787109375}, {"start": 725.45, "end": 725.65, "word": " here", "probability": 0.5}, {"start": 725.65, "end": 725.73, "word": " a", "probability": 0.4580078125}, {"start": 725.73, "end": 726.21, "word": " comment", "probability": 0.9296875}, {"start": 726.21, "end": 726.51, "word": " that", "probability": 0.568359375}, {"start": 726.51, "end": 726.73, "word": " this", "probability": 0.80615234375}, {"start": 726.73, "end": 726.79, "word": " is", "probability": 0.880859375}, {"start": 726.79, "end": 727.49, "word": " the", "probability": 0.283203125}, {"start": 727.49, "end": 727.89, "word": " code", "probability": 0.880859375}, {"start": 727.89, "end": 728.03, "word": " that", "probability": 0.76123046875}, {"start": 728.03, "end": 728.19, "word": " I", "probability": 0.302001953125}, {"start": 728.19, "end": 728.27, "word": " want", "probability": 0.60888671875}], "temperature": 1.0}, {"id": 30, "seek": 75670, "start": 729.94, "end": 756.7, "text": " Name, I don't have the word name and next to it is the right to enter the name Okay, this is the code that they do He does something called JTextField, JLabel, okay? And this code creates the code specific to the ID There is no line of ID And this creates the code specific to the job title Okay, so these are all the common parts Now, under the common parts, there is a part that is different", "tokens": [13866, 11, 286, 500, 380, 362, 264, 1349, 1315, 293, 958, 281, 309, 307, 264, 558, 281, 3242, 264, 1315, 1033, 11, 341, 307, 264, 3089, 300, 436, 360, 634, 775, 746, 1219, 508, 50198, 37, 1789, 11, 508, 43, 18657, 11, 1392, 30, 400, 341, 3089, 7829, 264, 3089, 2685, 281, 264, 7348, 821, 307, 572, 1622, 295, 7348, 400, 341, 7829, 264, 3089, 2685, 281, 264, 1691, 4876, 1033, 11, 370, 613, 366, 439, 264, 2689, 3166, 823, 11, 833, 264, 2689, 3166, 11, 456, 307, 257, 644, 300, 307, 819], "avg_logprob": -0.4943484045723651, "compression_ratio": 1.790909090909091, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 729.94, "end": 730.34, "word": " Name,", "probability": 0.38525390625}, {"start": 730.4, "end": 730.54, "word": " I", "probability": 0.2247314453125}, {"start": 730.54, "end": 730.54, "word": " don't", "probability": 0.7283935546875}, {"start": 730.54, "end": 730.84, "word": " have", "probability": 0.89794921875}, {"start": 730.84, "end": 730.92, "word": " the", "probability": 0.194091796875}, {"start": 730.92, "end": 731.12, "word": " word", "probability": 0.84716796875}, {"start": 731.12, "end": 731.46, "word": " name", "probability": 0.50927734375}, {"start": 731.46, "end": 731.6, "word": " and", "probability": 0.292236328125}, {"start": 731.6, "end": 731.76, "word": " next", "probability": 0.298828125}, {"start": 731.76, "end": 731.86, "word": " to", "probability": 0.9580078125}, {"start": 731.86, "end": 731.92, "word": " it", "probability": 0.88427734375}, {"start": 731.92, "end": 732.04, "word": " is", "probability": 0.28369140625}, {"start": 732.04, "end": 732.04, "word": " the", "probability": 0.5498046875}, {"start": 732.04, "end": 732.14, "word": " right", "probability": 0.69873046875}, {"start": 732.14, "end": 732.28, "word": " to", "probability": 0.904296875}, {"start": 732.28, "end": 732.6, "word": " enter", "probability": 0.346923828125}, {"start": 732.6, "end": 732.74, "word": " the", "probability": 0.5712890625}, {"start": 732.74, "end": 732.94, "word": " name", "probability": 0.8623046875}, {"start": 732.94, "end": 733.72, "word": " Okay,", "probability": 0.125}, {"start": 733.76, "end": 733.96, "word": " this", "probability": 0.7666015625}, {"start": 733.96, "end": 733.98, "word": " is", "probability": 0.9296875}, {"start": 733.98, "end": 734.08, "word": " the", "probability": 0.8388671875}, {"start": 734.08, "end": 734.24, "word": " code", "probability": 0.927734375}, {"start": 734.24, "end": 734.34, "word": " that", "probability": 0.2386474609375}, {"start": 734.34, "end": 734.42, "word": " they", "probability": 0.6875}, {"start": 734.42, "end": 734.66, "word": " do", "probability": 0.3603515625}, {"start": 734.66, "end": 735.14, "word": " He", "probability": 0.1365966796875}, {"start": 735.14, "end": 735.34, "word": " does", "probability": 0.417236328125}, {"start": 735.34, "end": 735.56, "word": " something", "probability": 0.7568359375}, {"start": 735.56, "end": 735.78, "word": " called", "probability": 0.822265625}, {"start": 735.78, "end": 736.68, "word": " JTextField,", "probability": 0.7708740234375}, {"start": 737.22, "end": 737.8, "word": " JLabel,", "probability": 0.89892578125}, {"start": 737.98, "end": 738.46, "word": " okay?", "probability": 0.59375}, {"start": 740.1, "end": 740.44, "word": " And", "probability": 0.73095703125}, {"start": 740.44, "end": 740.66, "word": " this", "probability": 0.92041015625}, {"start": 740.66, "end": 741.2, "word": " code", "probability": 0.9140625}, {"start": 741.2, "end": 742.58, "word": " creates", "probability": 0.57470703125}, {"start": 742.58, "end": 742.8, "word": " the", "probability": 0.58642578125}, {"start": 742.8, "end": 743.0, "word": " code", "probability": 0.42626953125}, {"start": 743.0, "end": 743.48, "word": " specific", "probability": 0.29296875}, {"start": 743.48, "end": 743.8, "word": " to", "probability": 0.86572265625}, {"start": 743.8, "end": 743.9, "word": " the", "probability": 0.7763671875}, {"start": 743.9, "end": 744.16, "word": " ID", "probability": 0.7529296875}, {"start": 744.16, "end": 744.96, "word": " There", "probability": 0.310302734375}, {"start": 744.96, "end": 745.06, "word": " is", "probability": 0.83251953125}, {"start": 745.06, "end": 745.12, "word": " no", "probability": 0.8818359375}, {"start": 745.12, "end": 745.32, "word": " line", "probability": 0.77685546875}, {"start": 745.32, "end": 745.46, "word": " of", "probability": 0.290771484375}, {"start": 745.46, "end": 745.68, "word": " ID", "probability": 0.615234375}, {"start": 745.68, "end": 746.48, "word": " And", "probability": 0.5498046875}, {"start": 746.48, "end": 746.74, "word": " this", "probability": 0.89404296875}, {"start": 746.74, "end": 746.98, "word": " creates", "probability": 0.5546875}, {"start": 746.98, "end": 747.18, "word": " the", "probability": 0.83056640625}, {"start": 747.18, "end": 747.4, "word": " code", "probability": 0.78955078125}, {"start": 747.4, "end": 747.86, "word": " specific", "probability": 0.86376953125}, {"start": 747.86, "end": 748.0, "word": " to", "probability": 0.96337890625}, {"start": 748.0, "end": 748.08, "word": " the", "probability": 0.8154296875}, {"start": 748.08, "end": 748.22, "word": " job", "probability": 0.62548828125}, {"start": 748.22, "end": 748.62, "word": " title", "probability": 0.970703125}, {"start": 748.62, "end": 749.56, "word": " Okay,", "probability": 0.5263671875}, {"start": 749.64, "end": 749.78, "word": " so", "probability": 0.1832275390625}, {"start": 749.78, "end": 749.96, "word": " these", "probability": 0.609375}, {"start": 749.96, "end": 750.08, "word": " are", "probability": 0.91943359375}, {"start": 750.08, "end": 750.24, "word": " all", "probability": 0.888671875}, {"start": 750.24, "end": 750.34, "word": " the", "probability": 0.61474609375}, {"start": 750.34, "end": 751.66, "word": " common", "probability": 0.501953125}, {"start": 751.66, "end": 751.82, "word": " parts", "probability": 0.69189453125}, {"start": 751.82, "end": 753.74, "word": " Now,", "probability": 0.8505859375}, {"start": 753.88, "end": 754.2, "word": " under", "probability": 0.80078125}, {"start": 754.2, "end": 754.36, "word": " the", "probability": 0.82763671875}, {"start": 754.36, "end": 754.48, "word": " common", "probability": 0.85595703125}, {"start": 754.48, "end": 755.18, "word": " parts,", "probability": 0.87255859375}, {"start": 755.38, "end": 755.56, "word": " there", "probability": 0.85205078125}, {"start": 755.56, "end": 755.62, "word": " is", "probability": 0.78857421875}, {"start": 755.62, "end": 755.74, "word": " a", "probability": 0.91015625}, {"start": 755.74, "end": 755.88, "word": " part", "probability": 0.49658203125}, {"start": 755.88, "end": 755.98, "word": " that", "probability": 0.84619140625}, {"start": 755.98, "end": 756.24, "word": " is", "probability": 0.291259765625}, {"start": 756.24, "end": 756.7, "word": " different", "probability": 0.75048828125}], "temperature": 1.0}, {"id": 31, "seek": 78058, "start": 758.48, "end": 780.58, "text": "Who is supposed to do this different part? This class doesn't know what to do. If it was full-time, they would do something different from part-time. But I'm still working in the superclass. So I came down here and told him to create subattributes GUI Create subattributes GUI", "tokens": [10927, 307, 3442, 281, 360, 341, 819, 644, 30, 639, 1508, 1177, 380, 458, 437, 281, 360, 13, 759, 309, 390, 1577, 12, 3766, 11, 436, 576, 360, 746, 819, 490, 644, 12, 3766, 13, 583, 286, 478, 920, 1364, 294, 264, 1687, 11665, 13, 407, 286, 1361, 760, 510, 293, 1907, 796, 281, 1884, 1422, 1591, 2024, 1819, 17917, 40, 20248, 1422, 1591, 2024, 1819, 17917, 40], "avg_logprob": -0.4796195600343787, "compression_ratio": 1.5333333333333334, "no_speech_prob": 1.4185905456542969e-05, "words": [{"start": 758.4799999999999, "end": 759.0799999999999, "word": "Who", "probability": 0.11517333984375}, {"start": 759.0799999999999, "end": 759.68, "word": " is", "probability": 0.323486328125}, {"start": 759.68, "end": 759.88, "word": " supposed", "probability": 0.791015625}, {"start": 759.88, "end": 760.02, "word": " to", "probability": 0.96435546875}, {"start": 760.02, "end": 760.18, "word": " do", "probability": 0.66650390625}, {"start": 760.18, "end": 760.4, "word": " this", "probability": 0.56591796875}, {"start": 760.4, "end": 760.9, "word": " different", "probability": 0.375}, {"start": 760.9, "end": 760.9, "word": " part?", "probability": 0.69580078125}, {"start": 761.28, "end": 761.88, "word": " This", "probability": 0.62255859375}, {"start": 761.88, "end": 762.22, "word": " class", "probability": 0.958984375}, {"start": 762.22, "end": 762.34, "word": " doesn't", "probability": 0.708251953125}, {"start": 762.34, "end": 762.68, "word": " know", "probability": 0.8662109375}, {"start": 762.68, "end": 762.84, "word": " what", "probability": 0.90869140625}, {"start": 762.84, "end": 763.04, "word": " to", "probability": 0.44775390625}, {"start": 763.04, "end": 763.28, "word": " do.", "probability": 0.9580078125}, {"start": 763.96, "end": 764.56, "word": " If", "probability": 0.80859375}, {"start": 764.56, "end": 764.8, "word": " it", "probability": 0.7880859375}, {"start": 764.8, "end": 764.8, "word": " was", "probability": 0.375}, {"start": 764.8, "end": 765.0, "word": " full", "probability": 0.8818359375}, {"start": 765.0, "end": 765.38, "word": "-time,", "probability": 0.8994140625}, {"start": 765.74, "end": 765.8, "word": " they", "probability": 0.348876953125}, {"start": 765.8, "end": 765.92, "word": " would", "probability": 0.513671875}, {"start": 765.92, "end": 766.22, "word": " do", "probability": 0.59619140625}, {"start": 766.22, "end": 766.62, "word": " something", "probability": 0.763671875}, {"start": 766.62, "end": 766.98, "word": " different", "probability": 0.84814453125}, {"start": 766.98, "end": 767.34, "word": " from", "probability": 0.50439453125}, {"start": 767.34, "end": 768.4, "word": " part", "probability": 0.5654296875}, {"start": 768.4, "end": 768.52, "word": "-time.", "probability": 0.961669921875}, {"start": 768.54, "end": 768.7, "word": " But", "probability": 0.73388671875}, {"start": 768.7, "end": 768.9, "word": " I'm", "probability": 0.39111328125}, {"start": 768.9, "end": 769.12, "word": " still", "probability": 0.5830078125}, {"start": 769.12, "end": 769.38, "word": " working", "probability": 0.72412109375}, {"start": 769.38, "end": 769.88, "word": " in", "probability": 0.78564453125}, {"start": 769.88, "end": 769.98, "word": " the", "probability": 0.55029296875}, {"start": 769.98, "end": 770.66, "word": " superclass.", "probability": 0.731201171875}, {"start": 771.02, "end": 771.26, "word": " So", "probability": 0.6953125}, {"start": 771.26, "end": 771.4, "word": " I", "probability": 0.59619140625}, {"start": 771.4, "end": 771.58, "word": " came", "probability": 0.48388671875}, {"start": 771.58, "end": 771.86, "word": " down", "probability": 0.256591796875}, {"start": 771.86, "end": 772.26, "word": " here", "probability": 0.80322265625}, {"start": 772.26, "end": 773.22, "word": " and", "probability": 0.62744140625}, {"start": 773.22, "end": 773.4, "word": " told", "probability": 0.3447265625}, {"start": 773.4, "end": 773.76, "word": " him", "probability": 0.75390625}, {"start": 773.76, "end": 774.06, "word": " to", "probability": 0.37646484375}, {"start": 774.06, "end": 774.54, "word": " create", "probability": 0.1953125}, {"start": 774.54, "end": 776.72, "word": " subattributes", "probability": 0.765380859375}, {"start": 776.72, "end": 777.68, "word": " GUI", "probability": 0.932373046875}, {"start": 777.68, "end": 778.94, "word": " Create", "probability": 0.38330078125}, {"start": 778.94, "end": 780.1, "word": " subattributes", "probability": 0.873779296875}, {"start": 780.1, "end": 780.58, "word": " GUI", "probability": 0.953857421875}], "temperature": 1.0}, {"id": 32, "seek": 81044, "start": 781.38, "end": 810.44, "text": " This is an abstract method. It creates things and collects them in a thing called Jpanel. Like this. And I take this Jpanel and add it to the screen. Okay? This method is an abstract method. It is used by the superclass. But who will implement it? The subclass. What is this code? What is written here? The save button. Okay? And this is the action when I press the save button. Because we said there is a problem when I press the save button.", "tokens": [639, 307, 364, 12649, 3170, 13, 467, 7829, 721, 293, 39897, 552, 294, 257, 551, 1219, 508, 6040, 338, 13, 1743, 341, 13, 400, 286, 747, 341, 508, 6040, 338, 293, 909, 309, 281, 264, 2568, 13, 1033, 30, 639, 3170, 307, 364, 12649, 3170, 13, 467, 307, 1143, 538, 264, 1687, 11665, 13, 583, 567, 486, 4445, 309, 30, 440, 1422, 11665, 13, 708, 307, 341, 3089, 30, 708, 307, 3720, 510, 30, 440, 3155, 2960, 13, 1033, 30, 400, 341, 307, 264, 3069, 562, 286, 1886, 264, 3155, 2960, 13, 1436, 321, 848, 456, 307, 257, 1154, 562, 286, 1886, 264, 3155, 2960, 13], "avg_logprob": -0.4191004700749834, "compression_ratio": 1.9137931034482758, "no_speech_prob": 5.4836273193359375e-06, "words": [{"start": 781.38, "end": 781.72, "word": " This", "probability": 0.5244140625}, {"start": 781.72, "end": 781.82, "word": " is", "probability": 0.85302734375}, {"start": 781.82, "end": 781.98, "word": " an", "probability": 0.51171875}, {"start": 781.98, "end": 782.2, "word": " abstract", "probability": 0.7275390625}, {"start": 782.2, "end": 783.46, "word": " method.", "probability": 0.9169921875}, {"start": 783.68, "end": 784.16, "word": " It", "probability": 0.6455078125}, {"start": 784.16, "end": 784.42, "word": " creates", "probability": 0.3740234375}, {"start": 784.42, "end": 785.04, "word": " things", "probability": 0.354248046875}, {"start": 785.04, "end": 785.44, "word": " and", "probability": 0.55078125}, {"start": 785.44, "end": 785.72, "word": " collects", "probability": 0.06915283203125}, {"start": 785.72, "end": 785.9, "word": " them", "probability": 0.85791015625}, {"start": 785.9, "end": 786.08, "word": " in", "probability": 0.377685546875}, {"start": 786.08, "end": 786.14, "word": " a", "probability": 0.3515625}, {"start": 786.14, "end": 786.22, "word": " thing", "probability": 0.359375}, {"start": 786.22, "end": 786.46, "word": " called", "probability": 0.8125}, {"start": 786.46, "end": 786.98, "word": " Jpanel.", "probability": 0.6904296875}, {"start": 787.04, "end": 787.16, "word": " Like", "probability": 0.2724609375}, {"start": 787.16, "end": 787.46, "word": " this.", "probability": 0.7119140625}, {"start": 787.52, "end": 787.58, "word": " And", "probability": 0.5732421875}, {"start": 787.58, "end": 787.7, "word": " I", "probability": 0.58642578125}, {"start": 787.7, "end": 787.7, "word": " take", "probability": 0.363525390625}, {"start": 787.7, "end": 787.76, "word": " this", "probability": 0.81103515625}, {"start": 787.76, "end": 788.26, "word": " Jpanel", "probability": 0.95654296875}, {"start": 788.26, "end": 788.8, "word": " and", "probability": 0.83349609375}, {"start": 788.8, "end": 789.02, "word": " add", "probability": 0.75048828125}, {"start": 789.02, "end": 789.18, "word": " it", "probability": 0.927734375}, {"start": 789.18, "end": 789.34, "word": " to", "probability": 0.64208984375}, {"start": 789.34, "end": 790.16, "word": " the", "probability": 0.85107421875}, {"start": 790.16, "end": 790.42, "word": " screen.", "probability": 0.869140625}, {"start": 791.56, "end": 791.78, "word": " Okay?", "probability": 0.2442626953125}, {"start": 791.96, "end": 792.4, "word": " This", "probability": 0.85595703125}, {"start": 792.4, "end": 792.94, "word": " method", "probability": 0.82275390625}, {"start": 792.94, "end": 793.22, "word": " is", "probability": 0.72412109375}, {"start": 793.22, "end": 794.22, "word": " an", "probability": 0.80859375}, {"start": 794.22, "end": 794.46, "word": " abstract", "probability": 0.84814453125}, {"start": 794.46, "end": 794.88, "word": " method.", "probability": 0.90478515625}, {"start": 794.94, "end": 794.96, "word": " It", "probability": 0.336669921875}, {"start": 794.96, "end": 795.06, "word": " is", "probability": 0.5859375}, {"start": 795.06, "end": 795.24, "word": " used", "probability": 0.300537109375}, {"start": 795.24, "end": 795.38, "word": " by", "probability": 0.9521484375}, {"start": 795.38, "end": 795.5, "word": " the", "probability": 0.69677734375}, {"start": 795.5, "end": 796.12, "word": " superclass.", "probability": 0.812744140625}, {"start": 796.26, "end": 796.52, "word": " But", "probability": 0.90185546875}, {"start": 796.52, "end": 796.7, "word": " who", "probability": 0.77734375}, {"start": 796.7, "end": 796.82, "word": " will", "probability": 0.2493896484375}, {"start": 796.82, "end": 797.22, "word": " implement", "probability": 0.671875}, {"start": 797.22, "end": 797.64, "word": " it?", "probability": 0.87451171875}, {"start": 797.74, "end": 797.9, "word": " The", "probability": 0.796875}, {"start": 797.9, "end": 798.4, "word": " subclass.", "probability": 0.95068359375}, {"start": 799.02, "end": 799.28, "word": " What", "probability": 0.23876953125}, {"start": 799.28, "end": 799.28, "word": " is", "probability": 0.7099609375}, {"start": 799.28, "end": 799.64, "word": " this", "probability": 0.82470703125}, {"start": 799.64, "end": 799.9, "word": " code?", "probability": 0.93603515625}, {"start": 800.24, "end": 800.48, "word": " What", "probability": 0.35205078125}, {"start": 800.48, "end": 800.48, "word": " is", "probability": 0.73095703125}, {"start": 800.48, "end": 800.9, "word": " written", "probability": 0.79833984375}, {"start": 800.9, "end": 800.98, "word": " here?", "probability": 0.53564453125}, {"start": 801.86, "end": 802.04, "word": " The", "probability": 0.625}, {"start": 802.04, "end": 802.6, "word": " save", "probability": 0.348876953125}, {"start": 802.6, "end": 802.64, "word": " button.", "probability": 0.8857421875}, {"start": 803.18, "end": 803.42, "word": " Okay?", "probability": 0.67236328125}, {"start": 803.68, "end": 803.94, "word": " And", "probability": 0.85107421875}, {"start": 803.94, "end": 804.14, "word": " this", "probability": 0.8115234375}, {"start": 804.14, "end": 804.22, "word": " is", "probability": 0.52099609375}, {"start": 804.22, "end": 804.22, "word": " the", "probability": 0.8515625}, {"start": 804.22, "end": 804.54, "word": " action", "probability": 0.9482421875}, {"start": 804.54, "end": 804.74, "word": " when", "probability": 0.857421875}, {"start": 804.74, "end": 804.9, "word": " I", "probability": 0.9599609375}, {"start": 804.9, "end": 805.16, "word": " press", "probability": 0.51513671875}, {"start": 805.16, "end": 805.44, "word": " the", "probability": 0.82666015625}, {"start": 805.44, "end": 805.9, "word": " save", "probability": 0.81591796875}, {"start": 805.9, "end": 805.9, "word": " button.", "probability": 0.88232421875}, {"start": 807.8, "end": 808.14, "word": " Because", "probability": 0.3505859375}, {"start": 808.14, "end": 808.46, "word": " we", "probability": 0.5166015625}, {"start": 808.46, "end": 808.66, "word": " said", "probability": 0.7705078125}, {"start": 808.66, "end": 808.88, "word": " there", "probability": 0.52099609375}, {"start": 808.88, "end": 808.9, "word": " is", "probability": 0.56005859375}, {"start": 808.9, "end": 808.98, "word": " a", "probability": 0.970703125}, {"start": 808.98, "end": 809.18, "word": " problem", "probability": 0.84033203125}, {"start": 809.18, "end": 809.32, "word": " when", "probability": 0.81884765625}, {"start": 809.32, "end": 809.44, "word": " I", "probability": 0.91943359375}, {"start": 809.44, "end": 809.62, "word": " press", "probability": 0.7626953125}, {"start": 809.62, "end": 810.04, "word": " the", "probability": 0.8779296875}, {"start": 810.04, "end": 810.44, "word": " save", "probability": 0.91357421875}, {"start": 810.44, "end": 810.44, "word": " button.", "probability": 0.869140625}], "temperature": 1.0}, {"id": 33, "seek": 83799, "start": 811.21, "end": 837.99, "text": " it differs from one object to another but in the end, any object is an employee instead of saying new I don't know what new is because I'm in the full or part field so I just say create employee same as we did create social network connector same as we did create maze here I say create employee let the subclass define what kind of object it is the employee returns what does it fill it with?", "tokens": [309, 37761, 490, 472, 2657, 281, 1071, 457, 294, 264, 917, 11, 604, 2657, 307, 364, 10738, 2602, 295, 1566, 777, 286, 500, 380, 458, 437, 777, 307, 570, 286, 478, 294, 264, 1577, 420, 644, 2519, 370, 286, 445, 584, 1884, 10738, 912, 382, 321, 630, 1884, 2093, 3209, 19127, 912, 382, 321, 630, 1884, 33032, 510, 286, 584, 1884, 10738, 718, 264, 1422, 11665, 6964, 437, 733, 295, 2657, 309, 307, 264, 10738, 11247, 437, 775, 309, 2836, 309, 365, 30], "avg_logprob": -0.5509672853208724, "compression_ratio": 1.8156682027649769, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 811.21, "end": 811.45, "word": " it", "probability": 0.09014892578125}, {"start": 811.45, "end": 811.69, "word": " differs", "probability": 0.287109375}, {"start": 811.69, "end": 812.25, "word": " from", "probability": 0.4404296875}, {"start": 812.25, "end": 813.05, "word": " one", "probability": 0.486328125}, {"start": 813.05, "end": 813.29, "word": " object", "probability": 0.347900390625}, {"start": 813.29, "end": 813.29, "word": " to", "probability": 0.830078125}, {"start": 813.29, "end": 813.55, "word": " another", "probability": 0.78271484375}, {"start": 813.55, "end": 814.35, "word": " but", "probability": 0.4736328125}, {"start": 814.35, "end": 814.55, "word": " in", "probability": 0.38037109375}, {"start": 814.55, "end": 814.75, "word": " the", "probability": 0.83935546875}, {"start": 814.75, "end": 814.97, "word": " end,", "probability": 0.89599609375}, {"start": 815.23, "end": 815.35, "word": " any", "probability": 0.47314453125}, {"start": 815.35, "end": 815.61, "word": " object", "probability": 0.86572265625}, {"start": 815.61, "end": 815.97, "word": " is", "probability": 0.1014404296875}, {"start": 815.97, "end": 816.39, "word": " an", "probability": 0.322998046875}, {"start": 816.39, "end": 817.69, "word": " employee", "probability": 0.78857421875}, {"start": 817.69, "end": 819.11, "word": " instead", "probability": 0.29248046875}, {"start": 819.11, "end": 819.51, "word": " of", "probability": 0.95947265625}, {"start": 819.51, "end": 819.79, "word": " saying", "probability": 0.68359375}, {"start": 819.79, "end": 820.23, "word": " new", "probability": 0.6357421875}, {"start": 820.23, "end": 821.77, "word": " I", "probability": 0.233154296875}, {"start": 821.77, "end": 821.91, "word": " don't", "probability": 0.860595703125}, {"start": 821.91, "end": 822.17, "word": " know", "probability": 0.8525390625}, {"start": 822.17, "end": 822.25, "word": " what", "probability": 0.8115234375}, {"start": 822.25, "end": 822.39, "word": " new", "probability": 0.501953125}, {"start": 822.39, "end": 822.67, "word": " is", "probability": 0.56005859375}, {"start": 822.67, "end": 823.19, "word": " because", "probability": 0.6220703125}, {"start": 823.19, "end": 823.35, "word": " I'm", "probability": 0.712646484375}, {"start": 823.35, "end": 823.47, "word": " in", "probability": 0.5556640625}, {"start": 823.47, "end": 823.57, "word": " the", "probability": 0.463134765625}, {"start": 823.57, "end": 823.99, "word": " full", "probability": 0.5}, {"start": 823.99, "end": 824.13, "word": " or", "probability": 0.6455078125}, {"start": 824.13, "end": 824.39, "word": " part", "probability": 0.89794921875}, {"start": 824.39, "end": 824.45, "word": " field", "probability": 0.2000732421875}, {"start": 824.45, "end": 824.57, "word": " so", "probability": 0.45654296875}, {"start": 824.57, "end": 824.67, "word": " I", "probability": 0.900390625}, {"start": 824.67, "end": 824.73, "word": " just", "probability": 0.2607421875}, {"start": 824.73, "end": 824.79, "word": " say", "probability": 0.8232421875}, {"start": 824.79, "end": 825.29, "word": " create", "probability": 0.869140625}, {"start": 825.29, "end": 825.77, "word": " employee", "probability": 0.630859375}, {"start": 825.77, "end": 826.99, "word": " same", "probability": 0.1658935546875}, {"start": 826.99, "end": 827.07, "word": " as", "probability": 0.6240234375}, {"start": 827.07, "end": 827.33, "word": " we", "probability": 0.62890625}, {"start": 827.33, "end": 827.33, "word": " did", "probability": 0.68603515625}, {"start": 827.33, "end": 828.01, "word": " create", "probability": 0.82177734375}, {"start": 828.01, "end": 828.95, "word": " social", "probability": 0.884765625}, {"start": 828.95, "end": 829.39, "word": " network", "probability": 0.97021484375}, {"start": 829.39, "end": 829.91, "word": " connector", "probability": 0.78759765625}, {"start": 829.91, "end": 830.45, "word": " same", "probability": 0.70556640625}, {"start": 830.45, "end": 830.51, "word": " as", "probability": 0.970703125}, {"start": 830.51, "end": 830.75, "word": " we", "probability": 0.91259765625}, {"start": 830.75, "end": 830.75, "word": " did", "probability": 0.91259765625}, {"start": 830.75, "end": 831.17, "word": " create", "probability": 0.92529296875}, {"start": 831.17, "end": 831.55, "word": " maze", "probability": 0.87939453125}, {"start": 831.55, "end": 832.95, "word": " here", "probability": 0.421875}, {"start": 832.95, "end": 833.05, "word": " I", "probability": 0.88623046875}, {"start": 833.05, "end": 833.19, "word": " say", "probability": 0.76123046875}, {"start": 833.19, "end": 833.53, "word": " create", "probability": 0.93798828125}, {"start": 833.53, "end": 833.87, "word": " employee", "probability": 0.85888671875}, {"start": 833.87, "end": 834.15, "word": " let", "probability": 0.55859375}, {"start": 834.15, "end": 834.27, "word": " the", "probability": 0.7529296875}, {"start": 834.27, "end": 834.65, "word": " subclass", "probability": 0.834228515625}, {"start": 834.65, "end": 834.99, "word": " define", "probability": 0.497802734375}, {"start": 834.99, "end": 835.19, "word": " what", "probability": 0.52685546875}, {"start": 835.19, "end": 835.29, "word": " kind", "probability": 0.44189453125}, {"start": 835.29, "end": 835.35, "word": " of", "probability": 0.96630859375}, {"start": 835.35, "end": 835.53, "word": " object", "probability": 0.9091796875}, {"start": 835.53, "end": 835.53, "word": " it", "probability": 0.407958984375}, {"start": 835.53, "end": 836.05, "word": " is", "probability": 0.86181640625}, {"start": 836.05, "end": 836.81, "word": " the", "probability": 0.2744140625}, {"start": 836.81, "end": 837.19, "word": " employee", "probability": 0.87109375}, {"start": 837.19, "end": 837.19, "word": " returns", "probability": 0.439697265625}, {"start": 837.19, "end": 837.39, "word": " what", "probability": 0.38623046875}, {"start": 837.39, "end": 837.45, "word": " does", "probability": 0.299560546875}, {"start": 837.45, "end": 837.51, "word": " it", "probability": 0.70654296875}, {"start": 837.51, "end": 837.69, "word": " fill", "probability": 0.509765625}, {"start": 837.69, "end": 837.99, "word": " it", "probability": 0.177978515625}, {"start": 837.99, "end": 837.99, "word": " with?", "probability": 0.70458984375}], "temperature": 1.0}, {"id": 34, "seek": 86651, "start": 839.09, "end": 866.51, "text": " The common things that I have here, name, ID and job title. Okay, it's done. This is the rest of the GUI code. All this code is in the constructor. So, when the constructor is called, it executes all this code. Of course, I can't create an object from an employee form. How will the constructor call? I will create an object from the subclass, and it is known that the constructor of the subclass", "tokens": [440, 2689, 721, 300, 286, 362, 510, 11, 1315, 11, 7348, 293, 1691, 4876, 13, 1033, 11, 309, 311, 1096, 13, 639, 307, 264, 1472, 295, 264, 17917, 40, 3089, 13, 1057, 341, 3089, 307, 294, 264, 47479, 13, 407, 11, 562, 264, 47479, 307, 1219, 11, 309, 4454, 1819, 439, 341, 3089, 13, 2720, 1164, 11, 286, 393, 380, 1884, 364, 2657, 490, 364, 10738, 1254, 13, 1012, 486, 264, 47479, 818, 30, 286, 486, 1884, 364, 2657, 490, 264, 1422, 11665, 11, 293, 309, 307, 2570, 300, 264, 47479, 295, 264, 1422, 11665], "avg_logprob": -0.49381510199358064, "compression_ratio": 1.748898678414097, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 839.09, "end": 839.33, "word": " The", "probability": 0.2066650390625}, {"start": 839.33, "end": 839.33, "word": " common", "probability": 0.434326171875}, {"start": 839.33, "end": 839.95, "word": " things", "probability": 0.236083984375}, {"start": 839.95, "end": 840.17, "word": " that", "probability": 0.2783203125}, {"start": 840.17, "end": 840.21, "word": " I", "probability": 0.88037109375}, {"start": 840.21, "end": 840.41, "word": " have", "probability": 0.85107421875}, {"start": 840.41, "end": 840.59, "word": " here,", "probability": 0.74267578125}, {"start": 840.67, "end": 840.99, "word": " name,", "probability": 0.360107421875}, {"start": 841.13, "end": 841.51, "word": " ID", "probability": 0.487548828125}, {"start": 841.51, "end": 842.07, "word": " and", "probability": 0.66064453125}, {"start": 842.07, "end": 842.27, "word": " job", "probability": 0.7822265625}, {"start": 842.27, "end": 842.59, "word": " title.", "probability": 0.9794921875}, {"start": 844.41, "end": 844.89, "word": " Okay,", "probability": 0.2017822265625}, {"start": 844.97, "end": 845.37, "word": " it's", "probability": 0.3358154296875}, {"start": 845.37, "end": 845.37, "word": " done.", "probability": 0.5029296875}, {"start": 845.69, "end": 845.91, "word": " This", "probability": 0.251953125}, {"start": 845.91, "end": 846.07, "word": " is", "probability": 0.87451171875}, {"start": 846.07, "end": 846.35, "word": " the", "probability": 0.525390625}, {"start": 846.35, "end": 846.47, "word": " rest", "probability": 0.845703125}, {"start": 846.47, "end": 846.59, "word": " of", "probability": 0.96728515625}, {"start": 846.59, "end": 846.65, "word": " the", "probability": 0.74072265625}, {"start": 846.65, "end": 847.55, "word": " GUI", "probability": 0.718505859375}, {"start": 847.55, "end": 847.55, "word": " code.", "probability": 0.89453125}, {"start": 847.97, "end": 848.15, "word": " All", "probability": 0.70263671875}, {"start": 848.15, "end": 848.53, "word": " this", "probability": 0.54248046875}, {"start": 848.53, "end": 848.75, "word": " code", "probability": 0.89306640625}, {"start": 848.75, "end": 848.87, "word": " is", "probability": 0.85546875}, {"start": 848.87, "end": 849.27, "word": " in", "probability": 0.252197265625}, {"start": 849.27, "end": 849.95, "word": " the", "probability": 0.75390625}, {"start": 849.95, "end": 850.43, "word": " constructor.", "probability": 0.89892578125}, {"start": 851.51, "end": 851.91, "word": " So,", "probability": 0.332763671875}, {"start": 852.07, "end": 852.65, "word": " when", "probability": 0.29443359375}, {"start": 852.65, "end": 853.73, "word": " the", "probability": 0.3720703125}, {"start": 853.73, "end": 854.63, "word": " constructor", "probability": 0.85693359375}, {"start": 854.63, "end": 854.63, "word": " is", "probability": 0.4658203125}, {"start": 854.63, "end": 854.63, "word": " called,", "probability": 0.50537109375}, {"start": 854.69, "end": 854.89, "word": " it", "probability": 0.56884765625}, {"start": 854.89, "end": 855.13, "word": " executes", "probability": 0.676025390625}, {"start": 855.13, "end": 855.33, "word": " all", "probability": 0.5654296875}, {"start": 855.33, "end": 855.33, "word": " this", "probability": 0.58349609375}, {"start": 855.33, "end": 855.75, "word": " code.", "probability": 0.93310546875}, {"start": 857.07, "end": 857.37, "word": " Of", "probability": 0.65087890625}, {"start": 857.37, "end": 857.37, "word": " course,", "probability": 0.9609375}, {"start": 857.41, "end": 857.49, "word": " I", "probability": 0.955078125}, {"start": 857.49, "end": 857.75, "word": " can't", "probability": 0.71484375}, {"start": 857.75, "end": 858.09, "word": " create", "probability": 0.79736328125}, {"start": 858.09, "end": 858.21, "word": " an", "probability": 0.75048828125}, {"start": 858.21, "end": 858.43, "word": " object", "probability": 0.96728515625}, {"start": 858.43, "end": 858.63, "word": " from", "probability": 0.7919921875}, {"start": 858.63, "end": 859.43, "word": " an", "probability": 0.254638671875}, {"start": 859.43, "end": 859.73, "word": " employee", "probability": 0.64599609375}, {"start": 859.73, "end": 860.11, "word": " form.", "probability": 0.791015625}, {"start": 860.69, "end": 861.11, "word": " How", "probability": 0.6015625}, {"start": 861.11, "end": 861.23, "word": " will", "probability": 0.38916015625}, {"start": 861.23, "end": 861.65, "word": " the", "probability": 0.79638671875}, {"start": 861.65, "end": 862.03, "word": " constructor", "probability": 0.8955078125}, {"start": 862.03, "end": 862.03, "word": " call?", "probability": 0.376953125}, {"start": 862.27, "end": 862.63, "word": " I", "probability": 0.93359375}, {"start": 862.63, "end": 862.73, "word": " will", "probability": 0.54931640625}, {"start": 862.73, "end": 862.89, "word": " create", "probability": 0.8818359375}, {"start": 862.89, "end": 863.11, "word": " an", "probability": 0.8837890625}, {"start": 863.11, "end": 863.27, "word": " object", "probability": 0.97607421875}, {"start": 863.27, "end": 863.47, "word": " from", "probability": 0.85302734375}, {"start": 863.47, "end": 863.57, "word": " the", "probability": 0.791015625}, {"start": 863.57, "end": 864.11, "word": " subclass,", "probability": 0.914794921875}, {"start": 864.53, "end": 864.59, "word": " and", "probability": 0.6328125}, {"start": 864.59, "end": 864.67, "word": " it", "probability": 0.8408203125}, {"start": 864.67, "end": 864.67, "word": " is", "probability": 0.5654296875}, {"start": 864.67, "end": 864.91, "word": " known", "probability": 0.62255859375}, {"start": 864.91, "end": 865.11, "word": " that", "probability": 0.93310546875}, {"start": 865.11, "end": 865.25, "word": " the", "probability": 0.87451171875}, {"start": 865.25, "end": 865.61, "word": " constructor", "probability": 0.6337890625}, {"start": 865.61, "end": 865.81, "word": " of", "probability": 0.833984375}, {"start": 865.81, "end": 865.95, "word": " the", "probability": 0.72705078125}, {"start": 865.95, "end": 866.51, "word": " subclass", "probability": 0.948486328125}], "temperature": 1.0}, {"id": 35, "seek": 89557, "start": 867.27, "end": 895.57, "text": " by the constructor of the parent, okay? Okay, look down here, you will find two abstract methods, what are their names? CreateSubattributeUi and CreateEmployee Now, I came here, look how simple it is, I want to make a model for the full-time employee I say, to make a simple model for the full-time employee go and make a class called Full-timeEmployeeForm and make it extend to where?", "tokens": [538, 264, 47479, 295, 264, 2596, 11, 1392, 30, 1033, 11, 574, 760, 510, 11, 291, 486, 915, 732, 12649, 7150, 11, 437, 366, 641, 5288, 30, 20248, 39582, 1591, 2024, 1169, 52, 72, 293, 20248, 22285, 2384, 1653, 823, 11, 286, 1361, 510, 11, 574, 577, 2199, 309, 307, 11, 286, 528, 281, 652, 257, 2316, 337, 264, 1577, 12, 3766, 10738, 286, 584, 11, 281, 652, 257, 2199, 2316, 337, 264, 1577, 12, 3766, 10738, 352, 293, 652, 257, 1508, 1219, 13841, 12, 3766, 22285, 2384, 1653, 49855, 293, 652, 309, 10101, 281, 689, 30], "avg_logprob": -0.4728954160700039, "compression_ratio": 1.7155555555555555, "no_speech_prob": 6.735324859619141e-06, "words": [{"start": 867.27, "end": 867.51, "word": " by", "probability": 0.09234619140625}, {"start": 867.51, "end": 867.67, "word": " the", "probability": 0.320556640625}, {"start": 867.67, "end": 868.21, "word": " constructor", "probability": 0.52197265625}, {"start": 868.21, "end": 868.57, "word": " of", "probability": 0.6416015625}, {"start": 868.57, "end": 869.37, "word": " the", "probability": 0.343017578125}, {"start": 869.37, "end": 869.77, "word": " parent,", "probability": 0.87158203125}, {"start": 869.81, "end": 870.33, "word": " okay?", "probability": 0.24072265625}, {"start": 872.63, "end": 872.93, "word": " Okay,", "probability": 0.163818359375}, {"start": 872.99, "end": 873.27, "word": " look", "probability": 0.64453125}, {"start": 873.27, "end": 873.51, "word": " down", "probability": 0.499267578125}, {"start": 873.51, "end": 873.81, "word": " here,", "probability": 0.76220703125}, {"start": 873.95, "end": 874.03, "word": " you", "probability": 0.8232421875}, {"start": 874.03, "end": 874.09, "word": " will", "probability": 0.5458984375}, {"start": 874.09, "end": 874.27, "word": " find", "probability": 0.78759765625}, {"start": 874.27, "end": 874.77, "word": " two", "probability": 0.2802734375}, {"start": 874.77, "end": 875.17, "word": " abstract", "probability": 0.853515625}, {"start": 875.17, "end": 875.75, "word": " methods,", "probability": 0.900390625}, {"start": 875.75, "end": 875.93, "word": " what", "probability": 0.81689453125}, {"start": 875.93, "end": 876.01, "word": " are", "probability": 0.8154296875}, {"start": 876.01, "end": 876.27, "word": " their", "probability": 0.5986328125}, {"start": 876.27, "end": 876.27, "word": " names?", "probability": 0.81005859375}, {"start": 878.47, "end": 878.89, "word": " CreateSubattributeUi", "probability": 0.5838099888392857}, {"start": 878.89, "end": 879.03, "word": " and", "probability": 0.7626953125}, {"start": 879.03, "end": 880.93, "word": " CreateEmployee", "probability": 0.90966796875}, {"start": 880.93, "end": 881.99, "word": " Now,", "probability": 0.7265625}, {"start": 882.13, "end": 882.19, "word": " I", "probability": 0.5927734375}, {"start": 882.19, "end": 882.37, "word": " came", "probability": 0.607421875}, {"start": 882.37, "end": 882.85, "word": " here,", "probability": 0.4033203125}, {"start": 883.07, "end": 883.25, "word": " look", "probability": 0.48291015625}, {"start": 883.25, "end": 883.47, "word": " how", "probability": 0.80322265625}, {"start": 883.47, "end": 883.73, "word": " simple", "probability": 0.380126953125}, {"start": 883.73, "end": 883.87, "word": " it", "probability": 0.7265625}, {"start": 883.87, "end": 883.87, "word": " is,", "probability": 0.9404296875}, {"start": 883.89, "end": 883.97, "word": " I", "probability": 0.9638671875}, {"start": 883.97, "end": 884.09, "word": " want", "probability": 0.65234375}, {"start": 884.09, "end": 884.17, "word": " to", "probability": 0.96630859375}, {"start": 884.17, "end": 884.37, "word": " make", "probability": 0.66552734375}, {"start": 884.37, "end": 884.49, "word": " a", "probability": 0.78955078125}, {"start": 884.49, "end": 884.81, "word": " model", "probability": 0.409912109375}, {"start": 884.81, "end": 885.85, "word": " for", "probability": 0.734375}, {"start": 885.85, "end": 885.95, "word": " the", "probability": 0.607421875}, {"start": 885.95, "end": 886.11, "word": " full", "probability": 0.814453125}, {"start": 886.11, "end": 886.29, "word": "-time", "probability": 0.93798828125}, {"start": 886.29, "end": 886.67, "word": " employee", "probability": 0.8271484375}, {"start": 886.67, "end": 887.57, "word": " I", "probability": 0.28271484375}, {"start": 887.57, "end": 887.73, "word": " say,", "probability": 0.6708984375}, {"start": 887.83, "end": 888.01, "word": " to", "probability": 0.45654296875}, {"start": 888.01, "end": 888.25, "word": " make", "probability": 0.89453125}, {"start": 888.25, "end": 888.35, "word": " a", "probability": 0.9287109375}, {"start": 888.35, "end": 888.55, "word": " simple", "probability": 0.49755859375}, {"start": 888.55, "end": 888.57, "word": " model", "probability": 0.73388671875}, {"start": 888.57, "end": 888.75, "word": " for", "probability": 0.8447265625}, {"start": 888.75, "end": 888.79, "word": " the", "probability": 0.568359375}, {"start": 888.79, "end": 888.95, "word": " full", "probability": 0.9404296875}, {"start": 888.95, "end": 889.13, "word": "-time", "probability": 0.983154296875}, {"start": 889.13, "end": 889.63, "word": " employee", "probability": 0.8720703125}, {"start": 889.63, "end": 890.31, "word": " go", "probability": 0.3349609375}, {"start": 890.31, "end": 890.51, "word": " and", "probability": 0.323486328125}, {"start": 890.51, "end": 890.63, "word": " make", "probability": 0.517578125}, {"start": 890.63, "end": 890.77, "word": " a", "probability": 0.951171875}, {"start": 890.77, "end": 891.11, "word": " class", "probability": 0.97265625}, {"start": 891.11, "end": 891.39, "word": " called", "probability": 0.5615234375}, {"start": 891.39, "end": 891.71, "word": " Full", "probability": 0.387451171875}, {"start": 891.71, "end": 893.65, "word": "-timeEmployeeForm", "probability": 0.817138671875}, {"start": 893.65, "end": 894.09, "word": " and", "probability": 0.7578125}, {"start": 894.09, "end": 894.35, "word": " make", "probability": 0.603515625}, {"start": 894.35, "end": 894.63, "word": " it", "probability": 0.74072265625}, {"start": 894.63, "end": 895.17, "word": " extend", "probability": 0.642578125}, {"start": 895.17, "end": 895.39, "word": " to", "probability": 0.81005859375}, {"start": 895.39, "end": 895.57, "word": " where?", "probability": 0.62109375}], "temperature": 1.0}, {"id": 36, "seek": 92413, "start": 896.69, "end": 924.13, "text": "to the employee form it will ask you to implement two methods create sub-attributes GUI and create employee and here I just put the code again for the GUI of the full-time employee for example, you told me to create one for the salary and return it to me I return it at the end of my panel so I just created the code for the salary", "tokens": [1353, 264, 10738, 1254, 309, 486, 1029, 291, 281, 4445, 732, 7150, 1884, 1422, 12, 1591, 2024, 1819, 17917, 40, 293, 1884, 10738, 293, 510, 286, 445, 829, 264, 3089, 797, 337, 264, 17917, 40, 295, 264, 1577, 12, 3766, 10738, 337, 1365, 11, 291, 1907, 385, 281, 1884, 472, 337, 264, 15360, 293, 2736, 309, 281, 385, 286, 2736, 309, 412, 264, 917, 295, 452, 4831, 370, 286, 445, 2942, 264, 3089, 337, 264, 15360], "avg_logprob": -0.6517856988039884, "compression_ratio": 1.828729281767956, "no_speech_prob": 1.8835067749023438e-05, "words": [{"start": 896.69, "end": 896.91, "word": "to", "probability": 0.1292724609375}, {"start": 896.91, "end": 897.01, "word": " the", "probability": 0.415283203125}, {"start": 897.01, "end": 897.31, "word": " employee", "probability": 0.67626953125}, {"start": 897.31, "end": 897.63, "word": " form", "probability": 0.475341796875}, {"start": 897.63, "end": 899.11, "word": " it", "probability": 0.10577392578125}, {"start": 899.11, "end": 899.15, "word": " will", "probability": 0.66455078125}, {"start": 899.15, "end": 899.31, "word": " ask", "probability": 0.356201171875}, {"start": 899.31, "end": 900.25, "word": " you", "probability": 0.87109375}, {"start": 900.25, "end": 900.37, "word": " to", "probability": 0.93017578125}, {"start": 900.37, "end": 900.91, "word": " implement", "probability": 0.7138671875}, {"start": 900.91, "end": 901.21, "word": " two", "probability": 0.458251953125}, {"start": 901.21, "end": 901.65, "word": " methods", "probability": 0.908203125}, {"start": 901.65, "end": 902.13, "word": " create", "probability": 0.498779296875}, {"start": 902.13, "end": 902.41, "word": " sub", "probability": 0.6025390625}, {"start": 902.41, "end": 902.91, "word": "-attributes", "probability": 0.727203369140625}, {"start": 902.91, "end": 903.47, "word": " GUI", "probability": 0.886962890625}, {"start": 903.47, "end": 904.05, "word": " and", "probability": 0.83056640625}, {"start": 904.05, "end": 904.59, "word": " create", "probability": 0.87109375}, {"start": 904.59, "end": 905.85, "word": " employee", "probability": 0.61865234375}, {"start": 905.85, "end": 906.75, "word": " and", "probability": 0.319580078125}, {"start": 906.75, "end": 906.93, "word": " here", "probability": 0.63134765625}, {"start": 906.93, "end": 907.17, "word": " I", "probability": 0.7509765625}, {"start": 907.17, "end": 907.17, "word": " just", "probability": 0.32470703125}, {"start": 907.17, "end": 907.49, "word": " put", "probability": 0.328857421875}, {"start": 907.49, "end": 907.65, "word": " the", "probability": 0.7998046875}, {"start": 907.65, "end": 908.07, "word": " code", "probability": 0.65576171875}, {"start": 908.07, "end": 909.41, "word": " again", "probability": 0.430419921875}, {"start": 909.41, "end": 909.81, "word": " for", "probability": 0.26904296875}, {"start": 909.81, "end": 910.07, "word": " the", "probability": 0.7890625}, {"start": 910.07, "end": 910.55, "word": " GUI", "probability": 0.78466796875}, {"start": 910.55, "end": 910.79, "word": " of", "probability": 0.5859375}, {"start": 910.79, "end": 910.93, "word": " the", "probability": 0.76123046875}, {"start": 910.93, "end": 911.09, "word": " full", "probability": 0.87353515625}, {"start": 911.09, "end": 911.35, "word": "-time", "probability": 0.930908203125}, {"start": 911.35, "end": 911.77, "word": " employee", "probability": 0.78076171875}, {"start": 911.77, "end": 912.17, "word": " for", "probability": 0.123291015625}, {"start": 912.17, "end": 912.17, "word": " example,", "probability": 0.88330078125}, {"start": 912.17, "end": 912.25, "word": " you", "probability": 0.32763671875}, {"start": 912.25, "end": 912.43, "word": " told", "probability": 0.39599609375}, {"start": 912.43, "end": 912.59, "word": " me", "probability": 0.67529296875}, {"start": 912.59, "end": 912.91, "word": " to", "probability": 0.86865234375}, {"start": 912.91, "end": 913.11, "word": " create", "probability": 0.26806640625}, {"start": 913.11, "end": 913.37, "word": " one", "probability": 0.25927734375}, {"start": 913.37, "end": 914.21, "word": " for", "probability": 0.89111328125}, {"start": 914.21, "end": 914.31, "word": " the", "probability": 0.439208984375}, {"start": 914.31, "end": 914.63, "word": " salary", "probability": 0.91845703125}, {"start": 914.63, "end": 917.11, "word": " and", "probability": 0.3037109375}, {"start": 917.11, "end": 917.45, "word": " return", "probability": 0.3515625}, {"start": 917.45, "end": 917.65, "word": " it", "probability": 0.80908203125}, {"start": 917.65, "end": 917.65, "word": " to", "probability": 0.5595703125}, {"start": 917.65, "end": 917.79, "word": " me", "probability": 0.8408203125}, {"start": 917.79, "end": 918.55, "word": " I", "probability": 0.1640625}, {"start": 918.55, "end": 918.75, "word": " return", "probability": 0.4404296875}, {"start": 918.75, "end": 918.85, "word": " it", "probability": 0.642578125}, {"start": 918.85, "end": 918.91, "word": " at", "probability": 0.24951171875}, {"start": 918.91, "end": 919.03, "word": " the", "probability": 0.91552734375}, {"start": 919.03, "end": 919.17, "word": " end", "probability": 0.77294921875}, {"start": 919.17, "end": 919.41, "word": " of", "probability": 0.287841796875}, {"start": 919.41, "end": 919.51, "word": " my", "probability": 0.1510009765625}, {"start": 919.51, "end": 920.07, "word": " panel", "probability": 0.37255859375}, {"start": 920.07, "end": 920.79, "word": " so", "probability": 0.1466064453125}, {"start": 920.79, "end": 921.13, "word": " I", "probability": 0.58544921875}, {"start": 921.13, "end": 921.13, "word": " just", "probability": 0.5625}, {"start": 921.13, "end": 921.45, "word": " created", "probability": 0.414306640625}, {"start": 921.45, "end": 921.63, "word": " the", "probability": 0.71533203125}, {"start": 921.63, "end": 921.97, "word": " code", "probability": 0.90673828125}, {"start": 921.97, "end": 922.41, "word": " for", "probability": 0.482177734375}, {"start": 922.41, "end": 922.87, "word": " the", "probability": 0.45703125}, {"start": 922.87, "end": 924.13, "word": " salary", "probability": 0.94189453125}], "temperature": 1.0}, {"id": 37, "seek": 95373, "start": 924.99, "end": 953.73, "text": " All of this says inside create sub attribute UI Because I have another method here called create employee When will it be used? When it is pressed on the safe, okay? It tells you, you don't have a relationship, what will happen when it is pressed on the safe? You are your job, what do you do? Yes, you create the object and return it Of course, I create the object and go to the object and tell it set basic salary That is, you have to fill in the information that you have because you entered it, okay? And you tell it to return", "tokens": [1057, 295, 341, 1619, 1854, 1884, 1422, 19667, 15682, 1436, 286, 362, 1071, 3170, 510, 1219, 1884, 10738, 1133, 486, 309, 312, 1143, 30, 1133, 309, 307, 17355, 322, 264, 3273, 11, 1392, 30, 467, 5112, 291, 11, 291, 500, 380, 362, 257, 2480, 11, 437, 486, 1051, 562, 309, 307, 17355, 322, 264, 3273, 30, 509, 366, 428, 1691, 11, 437, 360, 291, 360, 30, 1079, 11, 291, 1884, 264, 2657, 293, 2736, 309, 2720, 1164, 11, 286, 1884, 264, 2657, 293, 352, 281, 264, 2657, 293, 980, 309, 992, 3875, 15360, 663, 307, 11, 291, 362, 281, 2836, 294, 264, 1589, 300, 291, 362, 570, 291, 9065, 309, 11, 1392, 30, 400, 291, 980, 309, 281, 2736], "avg_logprob": -0.5505208263794581, "compression_ratio": 1.8896797153024911, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 924.99, "end": 925.37, "word": " All", "probability": 0.1639404296875}, {"start": 925.37, "end": 925.43, "word": " of", "probability": 0.40185546875}, {"start": 925.43, "end": 925.43, "word": " this", "probability": 0.59326171875}, {"start": 925.43, "end": 925.79, "word": " says", "probability": 0.27587890625}, {"start": 925.79, "end": 926.23, "word": " inside", "probability": 0.1568603515625}, {"start": 926.23, "end": 926.93, "word": " create", "probability": 0.44287109375}, {"start": 926.93, "end": 927.17, "word": " sub", "probability": 0.62841796875}, {"start": 927.17, "end": 927.47, "word": " attribute", "probability": 0.2449951171875}, {"start": 927.47, "end": 928.03, "word": " UI", "probability": 0.308837890625}, {"start": 928.03, "end": 929.45, "word": " Because", "probability": 0.172607421875}, {"start": 929.45, "end": 929.67, "word": " I", "probability": 0.55224609375}, {"start": 929.67, "end": 929.79, "word": " have", "probability": 0.908203125}, {"start": 929.79, "end": 929.97, "word": " another", "probability": 0.4765625}, {"start": 929.97, "end": 930.19, "word": " method", "probability": 0.51806640625}, {"start": 930.19, "end": 930.39, "word": " here", "probability": 0.37646484375}, {"start": 930.39, "end": 930.65, "word": " called", "probability": 0.33984375}, {"start": 930.65, "end": 930.97, "word": " create", "probability": 0.7724609375}, {"start": 930.97, "end": 931.43, "word": " employee", "probability": 0.57080078125}, {"start": 931.43, "end": 931.77, "word": " When", "probability": 0.5341796875}, {"start": 931.77, "end": 931.97, "word": " will", "probability": 0.5712890625}, {"start": 931.97, "end": 931.97, "word": " it", "probability": 0.443115234375}, {"start": 931.97, "end": 932.17, "word": " be", "probability": 0.6337890625}, {"start": 932.17, "end": 932.43, "word": " used?", "probability": 0.15185546875}, {"start": 933.49, "end": 933.87, "word": " When", "probability": 0.7314453125}, {"start": 933.87, "end": 934.01, "word": " it", "probability": 0.2216796875}, {"start": 934.01, "end": 934.05, "word": " is", "probability": 0.6728515625}, {"start": 934.05, "end": 934.23, "word": " pressed", "probability": 0.59912109375}, {"start": 934.23, "end": 934.39, "word": " on", "probability": 0.8544921875}, {"start": 934.39, "end": 934.47, "word": " the", "probability": 0.47900390625}, {"start": 934.47, "end": 934.71, "word": " safe,", "probability": 0.38916015625}, {"start": 935.17, "end": 935.45, "word": " okay?", "probability": 0.406005859375}, {"start": 935.73, "end": 935.91, "word": " It", "probability": 0.630859375}, {"start": 935.91, "end": 936.15, "word": " tells", "probability": 0.55712890625}, {"start": 936.15, "end": 936.25, "word": " you,", "probability": 0.93359375}, {"start": 936.31, "end": 936.45, "word": " you", "probability": 0.59765625}, {"start": 936.45, "end": 936.59, "word": " don't", "probability": 0.687255859375}, {"start": 936.59, "end": 936.71, "word": " have", "probability": 0.7548828125}, {"start": 936.71, "end": 936.83, "word": " a", "probability": 0.484619140625}, {"start": 936.83, "end": 937.07, "word": " relationship,", "probability": 0.599609375}, {"start": 937.15, "end": 937.23, "word": " what", "probability": 0.78955078125}, {"start": 937.23, "end": 937.35, "word": " will", "probability": 0.331787109375}, {"start": 937.35, "end": 937.57, "word": " happen", "probability": 0.76220703125}, {"start": 937.57, "end": 937.67, "word": " when", "probability": 0.56689453125}, {"start": 937.67, "end": 937.75, "word": " it", "probability": 0.469970703125}, {"start": 937.75, "end": 937.75, "word": " is", "probability": 0.82763671875}, {"start": 937.75, "end": 937.85, "word": " pressed", "probability": 0.6796875}, {"start": 937.85, "end": 937.99, "word": " on", "probability": 0.931640625}, {"start": 937.99, "end": 938.11, "word": " the", "probability": 0.8447265625}, {"start": 938.11, "end": 938.29, "word": " safe?", "probability": 0.9189453125}, {"start": 938.35, "end": 938.53, "word": " You", "probability": 0.63134765625}, {"start": 938.53, "end": 938.59, "word": " are", "probability": 0.53369140625}, {"start": 938.59, "end": 939.09, "word": " your", "probability": 0.74853515625}, {"start": 939.09, "end": 939.09, "word": " job,", "probability": 0.9072265625}, {"start": 939.51, "end": 939.77, "word": " what", "probability": 0.87939453125}, {"start": 939.77, "end": 939.83, "word": " do", "probability": 0.7705078125}, {"start": 939.83, "end": 939.83, "word": " you", "probability": 0.96728515625}, {"start": 939.83, "end": 940.09, "word": " do?", "probability": 0.9580078125}, {"start": 940.87, "end": 941.25, "word": " Yes,", "probability": 0.177734375}, {"start": 941.41, "end": 941.45, "word": " you", "probability": 0.6376953125}, {"start": 941.45, "end": 941.63, "word": " create", "probability": 0.407958984375}, {"start": 941.63, "end": 941.77, "word": " the", "probability": 0.7587890625}, {"start": 941.77, "end": 942.19, "word": " object", "probability": 0.974609375}, {"start": 942.19, "end": 942.71, "word": " and", "probability": 0.80419921875}, {"start": 942.71, "end": 942.97, "word": " return", "probability": 0.712890625}, {"start": 942.97, "end": 943.29, "word": " it", "probability": 0.86572265625}, {"start": 943.29, "end": 943.61, "word": " Of", "probability": 0.4189453125}, {"start": 943.61, "end": 943.77, "word": " course,", "probability": 0.958984375}, {"start": 943.83, "end": 943.95, "word": " I", "probability": 0.352294921875}, {"start": 943.95, "end": 944.09, "word": " create", "probability": 0.6083984375}, {"start": 944.09, "end": 944.19, "word": " the", "probability": 0.73193359375}, {"start": 944.19, "end": 944.57, "word": " object", "probability": 0.9755859375}, {"start": 944.57, "end": 945.17, "word": " and", "probability": 0.48193359375}, {"start": 945.17, "end": 945.29, "word": " go", "probability": 0.63037109375}, {"start": 945.29, "end": 945.39, "word": " to", "probability": 0.9541015625}, {"start": 945.39, "end": 945.47, "word": " the", "probability": 0.865234375}, {"start": 945.47, "end": 945.67, "word": " object", "probability": 0.97119140625}, {"start": 945.67, "end": 945.83, "word": " and", "probability": 0.8447265625}, {"start": 945.83, "end": 945.95, "word": " tell", "probability": 0.6640625}, {"start": 945.95, "end": 946.05, "word": " it", "probability": 0.716796875}, {"start": 946.05, "end": 946.25, "word": " set", "probability": 0.53662109375}, {"start": 946.25, "end": 946.53, "word": " basic", "probability": 0.85400390625}, {"start": 946.53, "end": 946.93, "word": " salary", "probability": 0.97900390625}, {"start": 946.93, "end": 947.91, "word": " That", "probability": 0.134521484375}, {"start": 947.91, "end": 947.97, "word": " is,", "probability": 0.6435546875}, {"start": 948.03, "end": 948.17, "word": " you", "probability": 0.95361328125}, {"start": 948.17, "end": 948.27, "word": " have", "probability": 0.302001953125}, {"start": 948.27, "end": 948.37, "word": " to", "probability": 0.9697265625}, {"start": 948.37, "end": 948.65, "word": " fill", "probability": 0.7333984375}, {"start": 948.65, "end": 948.85, "word": " in", "probability": 0.69189453125}, {"start": 948.85, "end": 948.95, "word": " the", "probability": 0.8720703125}, {"start": 948.95, "end": 949.47, "word": " information", "probability": 0.77734375}, {"start": 949.47, "end": 950.73, "word": " that", "probability": 0.494384765625}, {"start": 950.73, "end": 951.07, "word": " you", "probability": 0.52880859375}, {"start": 951.07, "end": 951.13, "word": " have", "probability": 0.87548828125}, {"start": 951.13, "end": 951.45, "word": " because", "probability": 0.157958984375}, {"start": 951.45, "end": 951.65, "word": " you", "probability": 0.93603515625}, {"start": 951.65, "end": 951.91, "word": " entered", "probability": 0.30615234375}, {"start": 951.91, "end": 952.55, "word": " it,", "probability": 0.77294921875}, {"start": 952.71, "end": 952.91, "word": " okay?", "probability": 0.83203125}, {"start": 952.95, "end": 953.09, "word": " And", "probability": 0.7353515625}, {"start": 953.09, "end": 953.17, "word": " you", "probability": 0.80029296875}, {"start": 953.17, "end": 953.25, "word": " tell", "probability": 0.61572265625}, {"start": 953.25, "end": 953.35, "word": " it", "probability": 0.76123046875}, {"start": 953.35, "end": 953.35, "word": " to", "probability": 0.42919921875}, {"start": 953.35, "end": 953.73, "word": " return", "probability": 0.77490234375}], "temperature": 1.0}, {"id": 38, "seek": 98279, "start": 954.91, "end": 982.79, "text": " Employee, meaning that you only created the different parts everything else has nothing to do with it okay? now look at this class this class is the part-time employee the part-time employee has two rights again which are what? hour rate and number of hours okay? I also created extend employee for and asked me to create implement for whom? to create sub-attributes and create employee create sub-attributes, you see it created only the GUI specific to whom?", "tokens": [26878, 1653, 11, 3620, 300, 291, 787, 2942, 264, 819, 3166, 1203, 1646, 575, 1825, 281, 360, 365, 309, 1392, 30, 586, 574, 412, 341, 1508, 341, 1508, 307, 264, 644, 12, 3766, 10738, 264, 644, 12, 3766, 10738, 575, 732, 4601, 797, 597, 366, 437, 30, 1773, 3314, 293, 1230, 295, 2496, 1392, 30, 286, 611, 2942, 10101, 10738, 337, 293, 2351, 385, 281, 1884, 4445, 337, 7101, 30, 281, 1884, 1422, 12, 1591, 2024, 1819, 293, 1884, 10738, 1884, 1422, 12, 1591, 2024, 1819, 11, 291, 536, 309, 2942, 787, 264, 17917, 40, 2685, 281, 7101, 30], "avg_logprob": -0.5521874749660491, "compression_ratio": 1.8852459016393444, "no_speech_prob": 7.510185241699219e-06, "words": [{"start": 954.91, "end": 955.43, "word": " Employee,", "probability": 0.546051025390625}, {"start": 955.87, "end": 956.29, "word": " meaning", "probability": 0.2008056640625}, {"start": 956.29, "end": 956.37, "word": " that", "probability": 0.325439453125}, {"start": 956.37, "end": 956.79, "word": " you", "probability": 0.79345703125}, {"start": 956.79, "end": 956.87, "word": " only", "probability": 0.44580078125}, {"start": 956.87, "end": 957.07, "word": " created", "probability": 0.362060546875}, {"start": 957.07, "end": 957.19, "word": " the", "probability": 0.427001953125}, {"start": 957.19, "end": 957.89, "word": " different", "probability": 0.447021484375}, {"start": 957.89, "end": 957.95, "word": " parts", "probability": 0.64453125}, {"start": 957.95, "end": 958.91, "word": " everything", "probability": 0.1434326171875}, {"start": 958.91, "end": 959.35, "word": " else", "probability": 0.52978515625}, {"start": 959.35, "end": 959.61, "word": " has", "probability": 0.44287109375}, {"start": 959.61, "end": 959.79, "word": " nothing", "probability": 0.84765625}, {"start": 959.79, "end": 960.11, "word": " to", "probability": 0.9638671875}, {"start": 960.11, "end": 960.27, "word": " do", "probability": 0.96533203125}, {"start": 960.27, "end": 960.37, "word": " with", "probability": 0.89990234375}, {"start": 960.37, "end": 960.83, "word": " it", "probability": 0.5185546875}, {"start": 960.83, "end": 961.35, "word": " okay?", "probability": 0.0806884765625}, {"start": 962.19, "end": 962.55, "word": " now", "probability": 0.306640625}, {"start": 962.55, "end": 963.09, "word": " look", "probability": 0.3388671875}, {"start": 963.09, "end": 963.83, "word": " at", "probability": 0.72509765625}, {"start": 963.83, "end": 964.03, "word": " this", "probability": 0.67529296875}, {"start": 964.03, "end": 964.43, "word": " class", "probability": 0.828125}, {"start": 964.43, "end": 964.69, "word": " this", "probability": 0.459228515625}, {"start": 964.69, "end": 965.19, "word": " class", "probability": 0.90869140625}, {"start": 965.19, "end": 966.07, "word": " is", "probability": 0.57763671875}, {"start": 966.07, "end": 966.15, "word": " the", "probability": 0.424072265625}, {"start": 966.15, "end": 966.37, "word": " part", "probability": 0.8828125}, {"start": 966.37, "end": 966.55, "word": "-time", "probability": 0.94677734375}, {"start": 966.55, "end": 966.87, "word": " employee", "probability": 0.77587890625}, {"start": 966.87, "end": 967.05, "word": " the", "probability": 0.1484375}, {"start": 967.05, "end": 967.25, "word": " part", "probability": 0.90234375}, {"start": 967.25, "end": 967.39, "word": "-time", "probability": 0.981689453125}, {"start": 967.39, "end": 967.63, "word": " employee", "probability": 0.77587890625}, {"start": 967.63, "end": 967.79, "word": " has", "probability": 0.87548828125}, {"start": 967.79, "end": 967.93, "word": " two", "probability": 0.69970703125}, {"start": 967.93, "end": 968.05, "word": " rights", "probability": 0.448974609375}, {"start": 968.05, "end": 968.53, "word": " again", "probability": 0.51171875}, {"start": 968.53, "end": 968.69, "word": " which", "probability": 0.53466796875}, {"start": 968.69, "end": 968.83, "word": " are", "probability": 0.70654296875}, {"start": 968.83, "end": 969.03, "word": " what?", "probability": 0.11151123046875}, {"start": 969.47, "end": 969.81, "word": " hour", "probability": 0.51220703125}, {"start": 969.81, "end": 970.09, "word": " rate", "probability": 0.96533203125}, {"start": 970.09, "end": 970.19, "word": " and", "probability": 0.87890625}, {"start": 970.19, "end": 970.39, "word": " number", "probability": 0.93115234375}, {"start": 970.39, "end": 970.61, "word": " of", "probability": 0.974609375}, {"start": 970.61, "end": 970.97, "word": " hours", "probability": 0.92236328125}, {"start": 970.97, "end": 971.85, "word": " okay?", "probability": 0.5283203125}, {"start": 972.33, "end": 972.71, "word": " I", "probability": 0.342041015625}, {"start": 972.71, "end": 972.71, "word": " also", "probability": 0.8193359375}, {"start": 972.71, "end": 972.93, "word": " created", "probability": 0.572265625}, {"start": 972.93, "end": 973.35, "word": " extend", "probability": 0.6982421875}, {"start": 973.35, "end": 973.73, "word": " employee", "probability": 0.487548828125}, {"start": 973.73, "end": 974.05, "word": " for", "probability": 0.5126953125}, {"start": 974.05, "end": 975.03, "word": " and", "probability": 0.642578125}, {"start": 975.03, "end": 975.25, "word": " asked", "probability": 0.394775390625}, {"start": 975.25, "end": 975.45, "word": " me", "probability": 0.288330078125}, {"start": 975.45, "end": 975.51, "word": " to", "probability": 0.95751953125}, {"start": 975.51, "end": 975.67, "word": " create", "probability": 0.4248046875}, {"start": 975.67, "end": 976.05, "word": " implement", "probability": 0.57666015625}, {"start": 976.05, "end": 976.27, "word": " for", "probability": 0.79541015625}, {"start": 976.27, "end": 976.47, "word": " whom?", "probability": 0.5517578125}, {"start": 976.59, "end": 976.73, "word": " to", "probability": 0.5966796875}, {"start": 976.73, "end": 977.07, "word": " create", "probability": 0.89013671875}, {"start": 977.07, "end": 977.41, "word": " sub", "probability": 0.921875}, {"start": 977.41, "end": 978.07, "word": "-attributes", "probability": 0.7935791015625}, {"start": 978.07, "end": 978.77, "word": " and", "probability": 0.86865234375}, {"start": 978.77, "end": 979.11, "word": " create", "probability": 0.91796875}, {"start": 979.11, "end": 979.53, "word": " employee", "probability": 0.78271484375}, {"start": 979.53, "end": 980.21, "word": " create", "probability": 0.583984375}, {"start": 980.21, "end": 980.49, "word": " sub", "probability": 0.8857421875}, {"start": 980.49, "end": 980.91, "word": "-attributes,", "probability": 0.88330078125}, {"start": 980.97, "end": 980.97, "word": " you", "probability": 0.2054443359375}, {"start": 980.97, "end": 981.15, "word": " see", "probability": 0.892578125}, {"start": 981.15, "end": 981.27, "word": " it", "probability": 0.21923828125}, {"start": 981.27, "end": 981.41, "word": " created", "probability": 0.37646484375}, {"start": 981.41, "end": 981.65, "word": " only", "probability": 0.7109375}, {"start": 981.65, "end": 981.79, "word": " the", "probability": 0.626953125}, {"start": 981.79, "end": 982.19, "word": " GUI", "probability": 0.79296875}, {"start": 982.19, "end": 982.49, "word": " specific", "probability": 0.224853515625}, {"start": 982.49, "end": 982.63, "word": " to", "probability": 0.62646484375}, {"start": 982.63, "end": 982.79, "word": " whom?", "probability": 0.82568359375}], "temperature": 1.0}, {"id": 39, "seek": 100901, "start": 984.15, "end": 1009.01, "text": " in the hour rate and number of hours, add them to the screen, and return them to me. This is the code that adds these two brackets. Okay? And below here, createEmployee, this is what is pressed when you press the save button. It will create a part-time employee, fill in the hour rate and number of hours, and return it. Okay? Now, this is the test UI used.", "tokens": [294, 264, 1773, 3314, 293, 1230, 295, 2496, 11, 909, 552, 281, 264, 2568, 11, 293, 2736, 552, 281, 385, 13, 639, 307, 264, 3089, 300, 10860, 613, 732, 26179, 13, 1033, 30, 400, 2507, 510, 11, 1884, 22285, 2384, 1653, 11, 341, 307, 437, 307, 17355, 562, 291, 1886, 264, 3155, 2960, 13, 467, 486, 1884, 257, 644, 12, 3766, 10738, 11, 2836, 294, 264, 1773, 3314, 293, 1230, 295, 2496, 11, 293, 2736, 309, 13, 1033, 30, 823, 11, 341, 307, 264, 1500, 15682, 1143, 13], "avg_logprob": -0.5098314606741573, "compression_ratio": 1.7810945273631842, "no_speech_prob": 5.0067901611328125e-06, "words": [{"start": 984.15, "end": 984.35, "word": " in", "probability": 0.13525390625}, {"start": 984.35, "end": 984.43, "word": " the", "probability": 0.401611328125}, {"start": 984.43, "end": 984.59, "word": " hour", "probability": 0.6591796875}, {"start": 984.59, "end": 985.03, "word": " rate", "probability": 0.91259765625}, {"start": 985.03, "end": 985.35, "word": " and", "probability": 0.86669921875}, {"start": 985.35, "end": 985.55, "word": " number", "probability": 0.8525390625}, {"start": 985.55, "end": 985.77, "word": " of", "probability": 0.9716796875}, {"start": 985.77, "end": 986.13, "word": " hours,", "probability": 0.9140625}, {"start": 986.39, "end": 986.55, "word": " add", "probability": 0.26953125}, {"start": 986.55, "end": 986.71, "word": " them", "probability": 0.7587890625}, {"start": 986.71, "end": 986.79, "word": " to", "probability": 0.63916015625}, {"start": 986.79, "end": 986.91, "word": " the", "probability": 0.8466796875}, {"start": 986.91, "end": 987.25, "word": " screen,", "probability": 0.81494140625}, {"start": 988.05, "end": 988.05, "word": " and", "probability": 0.46826171875}, {"start": 988.05, "end": 988.35, "word": " return", "probability": 0.364013671875}, {"start": 988.35, "end": 988.51, "word": " them", "probability": 0.64013671875}, {"start": 988.51, "end": 988.51, "word": " to", "probability": 0.544921875}, {"start": 988.51, "end": 988.75, "word": " me.", "probability": 0.71044921875}, {"start": 989.01, "end": 989.47, "word": " This", "probability": 0.69189453125}, {"start": 989.47, "end": 989.59, "word": " is", "probability": 0.91845703125}, {"start": 989.59, "end": 989.73, "word": " the", "probability": 0.8916015625}, {"start": 989.73, "end": 989.95, "word": " code", "probability": 0.9169921875}, {"start": 989.95, "end": 990.11, "word": " that", "probability": 0.82958984375}, {"start": 990.11, "end": 990.37, "word": " adds", "probability": 0.7421875}, {"start": 990.37, "end": 990.57, "word": " these", "probability": 0.378173828125}, {"start": 990.57, "end": 990.89, "word": " two", "probability": 0.513671875}, {"start": 990.89, "end": 990.89, "word": " brackets.", "probability": 0.11322021484375}, {"start": 992.81, "end": 993.09, "word": " Okay?", "probability": 0.28662109375}, {"start": 993.35, "end": 993.65, "word": " And", "probability": 0.5849609375}, {"start": 993.65, "end": 993.89, "word": " below", "probability": 0.422607421875}, {"start": 993.89, "end": 994.09, "word": " here,", "probability": 0.35009765625}, {"start": 994.17, "end": 994.87, "word": " createEmployee,", "probability": 0.68389892578125}, {"start": 994.89, "end": 995.03, "word": " this", "probability": 0.5673828125}, {"start": 995.03, "end": 995.05, "word": " is", "probability": 0.8232421875}, {"start": 995.05, "end": 995.11, "word": " what", "probability": 0.80029296875}, {"start": 995.11, "end": 995.23, "word": " is", "probability": 0.5146484375}, {"start": 995.23, "end": 995.45, "word": " pressed", "probability": 0.51171875}, {"start": 995.45, "end": 995.83, "word": " when", "probability": 0.5869140625}, {"start": 995.83, "end": 996.69, "word": " you", "probability": 0.1708984375}, {"start": 996.69, "end": 997.65, "word": " press", "probability": 0.48828125}, {"start": 997.65, "end": 997.91, "word": " the", "probability": 0.8251953125}, {"start": 997.91, "end": 998.33, "word": " save", "probability": 0.397216796875}, {"start": 998.33, "end": 998.37, "word": " button.", "probability": 0.85595703125}, {"start": 998.69, "end": 998.89, "word": " It", "probability": 0.50341796875}, {"start": 998.89, "end": 998.93, "word": " will", "probability": 0.6103515625}, {"start": 998.93, "end": 999.17, "word": " create", "probability": 0.86376953125}, {"start": 999.17, "end": 999.43, "word": " a", "probability": 0.5263671875}, {"start": 999.43, "end": 999.69, "word": " part", "probability": 0.81884765625}, {"start": 999.69, "end": 999.95, "word": "-time", "probability": 0.9775390625}, {"start": 999.95, "end": 1000.43, "word": " employee,", "probability": 0.830078125}, {"start": 1001.45, "end": 1001.69, "word": " fill", "probability": 0.430908203125}, {"start": 1001.69, "end": 1001.85, "word": " in", "probability": 0.5693359375}, {"start": 1001.85, "end": 1001.97, "word": " the", "probability": 0.90234375}, {"start": 1001.97, "end": 1002.13, "word": " hour", "probability": 0.8046875}, {"start": 1002.13, "end": 1002.57, "word": " rate", "probability": 0.94189453125}, {"start": 1002.57, "end": 1003.07, "word": " and", "probability": 0.8564453125}, {"start": 1003.07, "end": 1003.29, "word": " number", "probability": 0.84375}, {"start": 1003.29, "end": 1003.53, "word": " of", "probability": 0.97119140625}, {"start": 1003.53, "end": 1003.89, "word": " hours,", "probability": 0.91259765625}, {"start": 1003.89, "end": 1004.19, "word": " and", "probability": 0.8837890625}, {"start": 1004.19, "end": 1004.43, "word": " return", "probability": 0.728515625}, {"start": 1004.43, "end": 1004.63, "word": " it.", "probability": 0.52197265625}, {"start": 1006.15, "end": 1006.63, "word": " Okay?", "probability": 0.62451171875}, {"start": 1007.31, "end": 1007.73, "word": " Now,", "probability": 0.841796875}, {"start": 1007.85, "end": 1008.09, "word": " this", "probability": 0.7568359375}, {"start": 1008.09, "end": 1008.17, "word": " is", "probability": 0.263671875}, {"start": 1008.17, "end": 1008.17, "word": " the", "probability": 0.80908203125}, {"start": 1008.17, "end": 1008.35, "word": " test", "probability": 0.60546875}, {"start": 1008.35, "end": 1008.65, "word": " UI", "probability": 0.447265625}, {"start": 1008.65, "end": 1009.01, "word": " used.", "probability": 0.50048828125}], "temperature": 1.0}, {"id": 40, "seek": 103461, "start": 1010.68, "end": 1034.62, "text": " If I want to show a brain to imagine a part-time employee, what do I do? I extract an object from whom? From a part-time employee. The part-time employee, of course, as soon as you extract the object, will learn that you have to extract the constructor, right? Is there a constructor here? Yes, it's empty. Yes, it's empty, but it's known that the constructor of the subclass will extract the constructor of the superclass. It will immediately execute what? This code.", "tokens": [759, 286, 528, 281, 855, 257, 3567, 281, 3811, 257, 644, 12, 3766, 10738, 11, 437, 360, 286, 360, 30, 286, 8947, 364, 2657, 490, 7101, 30, 3358, 257, 644, 12, 3766, 10738, 13, 440, 644, 12, 3766, 10738, 11, 295, 1164, 11, 382, 2321, 382, 291, 8947, 264, 2657, 11, 486, 1466, 300, 291, 362, 281, 8947, 264, 47479, 11, 558, 30, 1119, 456, 257, 47479, 510, 30, 1079, 11, 309, 311, 6707, 13, 1079, 11, 309, 311, 6707, 11, 457, 309, 311, 2570, 300, 264, 47479, 295, 264, 1422, 11665, 486, 8947, 264, 47479, 295, 264, 1687, 11665, 13, 467, 486, 4258, 14483, 437, 30, 639, 3089, 13], "avg_logprob": -0.41835587035428295, "compression_ratio": 1.93801652892562, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 1010.68, "end": 1010.88, "word": " If", "probability": 0.10595703125}, {"start": 1010.88, "end": 1011.02, "word": " I", "probability": 0.890625}, {"start": 1011.02, "end": 1011.14, "word": " want", "probability": 0.61572265625}, {"start": 1011.14, "end": 1011.24, "word": " to", "probability": 0.923828125}, {"start": 1011.24, "end": 1011.42, "word": " show", "probability": 0.2166748046875}, {"start": 1011.42, "end": 1011.56, "word": " a", "probability": 0.34033203125}, {"start": 1011.56, "end": 1011.82, "word": " brain", "probability": 0.591796875}, {"start": 1011.82, "end": 1012.26, "word": " to", "probability": 0.6357421875}, {"start": 1012.26, "end": 1012.68, "word": " imagine", "probability": 0.10113525390625}, {"start": 1012.68, "end": 1012.84, "word": " a", "probability": 0.58251953125}, {"start": 1012.84, "end": 1013.06, "word": " part", "probability": 0.8642578125}, {"start": 1013.06, "end": 1013.24, "word": "-time", "probability": 0.945068359375}, {"start": 1013.24, "end": 1013.6, "word": " employee,", "probability": 0.8828125}, {"start": 1014.18, "end": 1014.42, "word": " what", "probability": 0.7548828125}, {"start": 1014.42, "end": 1014.48, "word": " do", "probability": 0.49658203125}, {"start": 1014.48, "end": 1014.54, "word": " I", "probability": 0.98779296875}, {"start": 1014.54, "end": 1014.88, "word": " do?", "probability": 0.76708984375}, {"start": 1015.76, "end": 1016.0, "word": " I", "probability": 0.78759765625}, {"start": 1016.0, "end": 1016.1, "word": " extract", "probability": 0.290771484375}, {"start": 1016.1, "end": 1016.28, "word": " an", "probability": 0.4736328125}, {"start": 1016.28, "end": 1016.5, "word": " object", "probability": 0.96728515625}, {"start": 1016.5, "end": 1016.7, "word": " from", "probability": 0.79150390625}, {"start": 1016.7, "end": 1016.94, "word": " whom?", "probability": 0.459716796875}, {"start": 1018.52, "end": 1018.92, "word": " From", "probability": 0.546875}, {"start": 1018.92, "end": 1019.02, "word": " a", "probability": 0.62109375}, {"start": 1019.02, "end": 1019.24, "word": " part", "probability": 0.89892578125}, {"start": 1019.24, "end": 1019.42, "word": "-time", "probability": 0.98681640625}, {"start": 1019.42, "end": 1019.72, "word": " employee.", "probability": 0.84375}, {"start": 1019.8, "end": 1019.88, "word": " The", "probability": 0.2568359375}, {"start": 1019.88, "end": 1020.1, "word": " part", "probability": 0.73583984375}, {"start": 1020.1, "end": 1020.24, "word": "-time", "probability": 0.98779296875}, {"start": 1020.24, "end": 1020.62, "word": " employee,", "probability": 0.84765625}, {"start": 1020.72, "end": 1020.8, "word": " of", "probability": 0.4384765625}, {"start": 1020.8, "end": 1020.86, "word": " course,", "probability": 0.96337890625}, {"start": 1021.08, "end": 1021.08, "word": " as", "probability": 0.489501953125}, {"start": 1021.08, "end": 1021.46, "word": " soon", "probability": 0.95556640625}, {"start": 1021.46, "end": 1021.46, "word": " as", "probability": 0.97216796875}, {"start": 1021.46, "end": 1021.68, "word": " you", "probability": 0.53466796875}, {"start": 1021.68, "end": 1021.78, "word": " extract", "probability": 0.8984375}, {"start": 1021.78, "end": 1021.92, "word": " the", "probability": 0.56298828125}, {"start": 1021.92, "end": 1022.14, "word": " object,", "probability": 0.97607421875}, {"start": 1022.28, "end": 1022.32, "word": " will", "probability": 0.349365234375}, {"start": 1022.32, "end": 1022.6, "word": " learn", "probability": 0.669921875}, {"start": 1022.6, "end": 1022.76, "word": " that", "probability": 0.5068359375}, {"start": 1022.76, "end": 1022.86, "word": " you", "probability": 0.248779296875}, {"start": 1022.86, "end": 1022.92, "word": " have", "probability": 0.222900390625}, {"start": 1022.92, "end": 1023.06, "word": " to", "probability": 0.8876953125}, {"start": 1023.06, "end": 1023.06, "word": " extract", "probability": 0.3818359375}, {"start": 1023.06, "end": 1023.24, "word": " the", "probability": 0.89697265625}, {"start": 1023.24, "end": 1023.66, "word": " constructor,", "probability": 0.91552734375}, {"start": 1023.8, "end": 1024.02, "word": " right?", "probability": 0.80078125}, {"start": 1024.1, "end": 1024.22, "word": " Is", "probability": 0.72705078125}, {"start": 1024.22, "end": 1024.28, "word": " there", "probability": 0.91015625}, {"start": 1024.28, "end": 1024.38, "word": " a", "probability": 0.93212890625}, {"start": 1024.38, "end": 1024.72, "word": " constructor", "probability": 0.8876953125}, {"start": 1024.72, "end": 1025.0, "word": " here?", "probability": 0.80615234375}, {"start": 1025.7, "end": 1025.88, "word": " Yes,", "probability": 0.477294921875}, {"start": 1025.96, "end": 1026.2, "word": " it's", "probability": 0.601318359375}, {"start": 1026.2, "end": 1026.2, "word": " empty.", "probability": 0.66357421875}, {"start": 1026.52, "end": 1026.72, "word": " Yes,", "probability": 0.64990234375}, {"start": 1026.78, "end": 1026.86, "word": " it's", "probability": 0.876708984375}, {"start": 1026.86, "end": 1027.1, "word": " empty,", "probability": 0.84521484375}, {"start": 1027.22, "end": 1027.38, "word": " but", "probability": 0.89306640625}, {"start": 1027.38, "end": 1027.52, "word": " it's", "probability": 0.588134765625}, {"start": 1027.52, "end": 1027.78, "word": " known", "probability": 0.56884765625}, {"start": 1027.78, "end": 1027.94, "word": " that", "probability": 0.9150390625}, {"start": 1027.94, "end": 1028.0, "word": " the", "probability": 0.86376953125}, {"start": 1028.0, "end": 1028.5, "word": " constructor", "probability": 0.806640625}, {"start": 1028.5, "end": 1028.72, "word": " of", "probability": 0.76904296875}, {"start": 1028.72, "end": 1028.86, "word": " the", "probability": 0.818359375}, {"start": 1028.86, "end": 1029.28, "word": " subclass", "probability": 0.92626953125}, {"start": 1029.28, "end": 1029.5, "word": " will", "probability": 0.79150390625}, {"start": 1029.5, "end": 1029.76, "word": " extract", "probability": 0.8046875}, {"start": 1029.76, "end": 1029.9, "word": " the", "probability": 0.92041015625}, {"start": 1029.9, "end": 1030.5, "word": " constructor", "probability": 0.90673828125}, {"start": 1030.5, "end": 1031.48, "word": " of", "probability": 0.95703125}, {"start": 1031.48, "end": 1031.64, "word": " the", "probability": 0.923828125}, {"start": 1031.64, "end": 1032.18, "word": " superclass.", "probability": 0.909912109375}, {"start": 1032.42, "end": 1032.56, "word": " It", "probability": 0.468505859375}, {"start": 1032.56, "end": 1032.74, "word": " will", "probability": 0.74267578125}, {"start": 1032.74, "end": 1033.02, "word": " immediately", "probability": 0.29443359375}, {"start": 1033.02, "end": 1033.38, "word": " execute", "probability": 0.646484375}, {"start": 1033.38, "end": 1033.68, "word": " what?", "probability": 0.484130859375}, {"start": 1034.16, "end": 1034.4, "word": " This", "probability": 0.235107421875}, {"start": 1034.4, "end": 1034.62, "word": " code.", "probability": 0.9296875}], "temperature": 1.0}, {"id": 41, "seek": 104153, "start": 1036.33, "end": 1041.53, "text": "Employee4 will run YGH to create", "tokens": [22285, 2384, 1653, 19, 486, 1190, 398, 4269, 281, 1884], "avg_logprob": -1.1761364069851963, "compression_ratio": 0.8, "no_speech_prob": 3.933906555175781e-06, "words": [{"start": 1036.33, "end": 1037.73, "word": "Employee4", "probability": 0.5272674560546875}, {"start": 1037.73, "end": 1038.25, "word": " will", "probability": 0.36376953125}, {"start": 1038.25, "end": 1038.47, "word": " run", "probability": 0.1800537109375}, {"start": 1038.47, "end": 1039.89, "word": " YGH", "probability": 0.6175537109375}, {"start": 1039.89, "end": 1040.59, "word": " to", "probability": 0.393798828125}, {"start": 1040.59, "end": 1041.53, "word": " create", "probability": 0.340576171875}], "temperature": 1.0}, {"id": 42, "seek": 107024, "start": 1043.02, "end": 1070.24, "text": "Sub-attributes. What does it create? The subclass. It fills what's available. And then it turns on the save button. When I click on the save button, it creates an employee. It creates what's available in the subclass. Which generates a part-time employee. Let's see. For example, this is a part-time employee. I made a run for it. Of course, the initial GUI is available. But the idea is in the content. For example, this is a job title. Our rate.", "tokens": [39582, 12, 1591, 2024, 1819, 13, 708, 775, 309, 1884, 30, 440, 1422, 11665, 13, 467, 22498, 437, 311, 2435, 13, 400, 550, 309, 4523, 322, 264, 3155, 2960, 13, 1133, 286, 2052, 322, 264, 3155, 2960, 11, 309, 7829, 364, 10738, 13, 467, 7829, 437, 311, 2435, 294, 264, 1422, 11665, 13, 3013, 23815, 257, 644, 12, 3766, 10738, 13, 961, 311, 536, 13, 1171, 1365, 11, 341, 307, 257, 644, 12, 3766, 10738, 13, 286, 1027, 257, 1190, 337, 309, 13, 2720, 1164, 11, 264, 5883, 17917, 40, 307, 2435, 13, 583, 264, 1558, 307, 294, 264, 2701, 13, 1171, 1365, 11, 341, 307, 257, 1691, 4876, 13, 2621, 3314, 13], "avg_logprob": -0.49643639462036, "compression_ratio": 1.8702928870292888, "no_speech_prob": 2.682209014892578e-06, "words": [{"start": 1043.0199999999998, "end": 1043.4199999999998, "word": "Sub", "probability": 0.52001953125}, {"start": 1043.4199999999998, "end": 1043.82, "word": "-attributes.", "probability": 0.7310791015625}, {"start": 1044.12, "end": 1044.22, "word": " What", "probability": 0.177978515625}, {"start": 1044.22, "end": 1044.22, "word": " does", "probability": 0.505859375}, {"start": 1044.22, "end": 1044.4, "word": " it", "probability": 0.484619140625}, {"start": 1044.4, "end": 1044.52, "word": " create?", "probability": 0.1412353515625}, {"start": 1045.56, "end": 1045.96, "word": " The", "probability": 0.358154296875}, {"start": 1045.96, "end": 1046.4, "word": " subclass.", "probability": 0.725830078125}, {"start": 1046.48, "end": 1046.56, "word": " It", "probability": 0.6796875}, {"start": 1046.56, "end": 1046.72, "word": " fills", "probability": 0.50244140625}, {"start": 1046.72, "end": 1046.92, "word": " what's", "probability": 0.3304443359375}, {"start": 1046.92, "end": 1047.16, "word": " available.", "probability": 0.428955078125}, {"start": 1047.42, "end": 1047.54, "word": " And", "probability": 0.41552734375}, {"start": 1047.54, "end": 1047.74, "word": " then", "probability": 0.73974609375}, {"start": 1047.74, "end": 1048.3, "word": " it", "probability": 0.5673828125}, {"start": 1048.3, "end": 1048.84, "word": " turns", "probability": 0.281005859375}, {"start": 1048.84, "end": 1048.92, "word": " on", "probability": 0.84912109375}, {"start": 1048.92, "end": 1049.06, "word": " the", "probability": 0.70166015625}, {"start": 1049.06, "end": 1049.26, "word": " save", "probability": 0.53173828125}, {"start": 1049.26, "end": 1049.28, "word": " button.", "probability": 0.30078125}, {"start": 1049.58, "end": 1049.7, "word": " When", "probability": 0.794921875}, {"start": 1049.7, "end": 1049.8, "word": " I", "probability": 0.83935546875}, {"start": 1049.8, "end": 1049.98, "word": " click", "probability": 0.41455078125}, {"start": 1049.98, "end": 1050.2, "word": " on", "probability": 0.66845703125}, {"start": 1050.2, "end": 1050.48, "word": " the", "probability": 0.80126953125}, {"start": 1050.48, "end": 1050.98, "word": " save", "probability": 0.8271484375}, {"start": 1050.98, "end": 1050.98, "word": " button,", "probability": 0.84375}, {"start": 1051.06, "end": 1051.16, "word": " it", "probability": 0.88330078125}, {"start": 1051.16, "end": 1051.58, "word": " creates", "probability": 0.52392578125}, {"start": 1051.58, "end": 1051.76, "word": " an", "probability": 0.63232421875}, {"start": 1051.76, "end": 1051.98, "word": " employee.", "probability": 0.8583984375}, {"start": 1052.06, "end": 1052.14, "word": " It", "probability": 0.69775390625}, {"start": 1052.14, "end": 1052.4, "word": " creates", "probability": 0.701171875}, {"start": 1052.4, "end": 1052.56, "word": " what's", "probability": 0.6339111328125}, {"start": 1052.56, "end": 1052.74, "word": " available", "probability": 0.400390625}, {"start": 1052.74, "end": 1052.86, "word": " in", "probability": 0.88818359375}, {"start": 1052.86, "end": 1052.96, "word": " the", "probability": 0.900390625}, {"start": 1052.96, "end": 1053.42, "word": " subclass.", "probability": 0.954345703125}, {"start": 1053.76, "end": 1053.86, "word": " Which", "probability": 0.39306640625}, {"start": 1053.86, "end": 1054.18, "word": " generates", "probability": 0.1370849609375}, {"start": 1054.18, "end": 1054.34, "word": " a", "probability": 0.82763671875}, {"start": 1054.34, "end": 1054.5, "word": " part", "probability": 0.87890625}, {"start": 1054.5, "end": 1054.84, "word": "-time", "probability": 0.978515625}, {"start": 1054.84, "end": 1055.84, "word": " employee.", "probability": 0.82568359375}, {"start": 1056.32, "end": 1056.72, "word": " Let's", "probability": 0.5958251953125}, {"start": 1056.72, "end": 1056.98, "word": " see.", "probability": 0.55126953125}, {"start": 1057.34, "end": 1057.54, "word": " For", "probability": 0.347900390625}, {"start": 1057.54, "end": 1057.84, "word": " example,", "probability": 0.93017578125}, {"start": 1057.9, "end": 1058.02, "word": " this", "probability": 0.8037109375}, {"start": 1058.02, "end": 1058.02, "word": " is", "probability": 0.81298828125}, {"start": 1058.02, "end": 1058.1, "word": " a", "probability": 0.943359375}, {"start": 1058.1, "end": 1058.3, "word": " part", "probability": 0.8896484375}, {"start": 1058.3, "end": 1058.48, "word": "-time", "probability": 0.98681640625}, {"start": 1058.48, "end": 1058.78, "word": " employee.", "probability": 0.8427734375}, {"start": 1058.88, "end": 1058.92, "word": " I", "probability": 0.336181640625}, {"start": 1058.92, "end": 1059.1, "word": " made", "probability": 0.3583984375}, {"start": 1059.1, "end": 1059.16, "word": " a", "probability": 0.8984375}, {"start": 1059.16, "end": 1059.4, "word": " run", "probability": 0.8662109375}, {"start": 1059.4, "end": 1059.54, "word": " for", "probability": 0.5615234375}, {"start": 1059.54, "end": 1059.68, "word": " it.", "probability": 0.468994140625}, {"start": 1060.2, "end": 1060.44, "word": " Of", "probability": 0.2236328125}, {"start": 1060.44, "end": 1060.52, "word": " course,", "probability": 0.958984375}, {"start": 1060.66, "end": 1060.72, "word": " the", "probability": 0.61669921875}, {"start": 1060.72, "end": 1060.86, "word": " initial", "probability": 0.7392578125}, {"start": 1060.86, "end": 1061.16, "word": " GUI", "probability": 0.949462890625}, {"start": 1061.16, "end": 1061.26, "word": " is", "probability": 0.861328125}, {"start": 1061.26, "end": 1061.76, "word": " available.", "probability": 0.3203125}, {"start": 1062.02, "end": 1062.1, "word": " But", "probability": 0.80908203125}, {"start": 1062.1, "end": 1062.4, "word": " the", "probability": 0.63916015625}, {"start": 1062.4, "end": 1063.64, "word": " idea", "probability": 0.78466796875}, {"start": 1063.64, "end": 1064.76, "word": " is", "probability": 0.69873046875}, {"start": 1064.76, "end": 1065.26, "word": " in", "probability": 0.5927734375}, {"start": 1065.26, "end": 1066.32, "word": " the", "probability": 0.5400390625}, {"start": 1066.32, "end": 1066.74, "word": " content.", "probability": 0.6083984375}, {"start": 1067.58, "end": 1067.98, "word": " For", "probability": 0.47607421875}, {"start": 1067.98, "end": 1068.28, "word": " example,", "probability": 0.96044921875}, {"start": 1068.36, "end": 1068.52, "word": " this", "probability": 0.81982421875}, {"start": 1068.52, "end": 1068.52, "word": " is", "probability": 0.71630859375}, {"start": 1068.52, "end": 1068.84, "word": " a", "probability": 0.283203125}, {"start": 1068.84, "end": 1069.0, "word": " job", "probability": 0.488525390625}, {"start": 1069.0, "end": 1069.52, "word": " title.", "probability": 0.9755859375}, {"start": 1069.52, "end": 1069.8, "word": " Our", "probability": 0.15869140625}, {"start": 1069.8, "end": 1070.24, "word": " rate.", "probability": 0.8056640625}], "temperature": 1.0}, {"id": 43, "seek": 109636, "start": 1070.75, "end": 1096.37, "text": " Name, ID, Job title, these are the participants, okay? Then the number of hours and hour rate, okay? One, two, three, these two, number of hours, hour rate, what do they have? They are different. Now, if I came to the GUI too and changed it, I called this full-time employee,", "tokens": [13866, 11, 7348, 11, 18602, 4876, 11, 613, 366, 264, 10503, 11, 1392, 30, 1396, 264, 1230, 295, 2496, 293, 1773, 3314, 11, 1392, 30, 1485, 11, 732, 11, 1045, 11, 613, 732, 11, 1230, 295, 2496, 11, 1773, 3314, 11, 437, 360, 436, 362, 30, 814, 366, 819, 13, 823, 11, 498, 286, 1361, 281, 264, 17917, 40, 886, 293, 3105, 309, 11, 286, 1219, 341, 1577, 12, 3766, 10738, 11], "avg_logprob": -0.4334332191780822, "compression_ratio": 1.5681818181818181, "no_speech_prob": 2.0265579223632812e-06, "words": [{"start": 1070.75, "end": 1071.23, "word": " Name,", "probability": 0.42822265625}, {"start": 1071.63, "end": 1072.03, "word": " ID,", "probability": 0.8134765625}, {"start": 1072.63, "end": 1072.81, "word": " Job", "probability": 0.7578125}, {"start": 1072.81, "end": 1073.35, "word": " title,", "probability": 0.400390625}, {"start": 1073.79, "end": 1073.93, "word": " these", "probability": 0.345703125}, {"start": 1073.93, "end": 1074.01, "word": " are", "probability": 0.685546875}, {"start": 1074.01, "end": 1074.15, "word": " the", "probability": 0.54052734375}, {"start": 1074.15, "end": 1074.49, "word": " participants,", "probability": 0.1788330078125}, {"start": 1075.19, "end": 1075.49, "word": " okay?", "probability": 0.2822265625}, {"start": 1075.59, "end": 1075.79, "word": " Then", "probability": 0.6435546875}, {"start": 1075.79, "end": 1075.91, "word": " the", "probability": 0.40771484375}, {"start": 1075.91, "end": 1076.13, "word": " number", "probability": 0.91259765625}, {"start": 1076.13, "end": 1076.31, "word": " of", "probability": 0.9755859375}, {"start": 1076.31, "end": 1076.65, "word": " hours", "probability": 0.90771484375}, {"start": 1076.65, "end": 1077.75, "word": " and", "probability": 0.58349609375}, {"start": 1077.75, "end": 1077.97, "word": " hour", "probability": 0.462890625}, {"start": 1077.97, "end": 1078.25, "word": " rate,", "probability": 0.966796875}, {"start": 1078.49, "end": 1079.79, "word": " okay?", "probability": 0.71533203125}, {"start": 1082.99, "end": 1083.47, "word": " One,", "probability": 0.50634765625}, {"start": 1083.59, "end": 1083.91, "word": " two,", "probability": 0.9306640625}, {"start": 1084.05, "end": 1084.41, "word": " three,", "probability": 0.9384765625}, {"start": 1084.61, "end": 1084.85, "word": " these", "probability": 0.77197265625}, {"start": 1084.85, "end": 1085.37, "word": " two,", "probability": 0.8759765625}, {"start": 1085.57, "end": 1085.87, "word": " number", "probability": 0.85791015625}, {"start": 1085.87, "end": 1086.07, "word": " of", "probability": 0.96923828125}, {"start": 1086.07, "end": 1086.31, "word": " hours,", "probability": 0.9111328125}, {"start": 1086.41, "end": 1086.51, "word": " hour", "probability": 0.89111328125}, {"start": 1086.51, "end": 1086.71, "word": " rate,", "probability": 0.94921875}, {"start": 1086.81, "end": 1086.97, "word": " what", "probability": 0.229736328125}, {"start": 1086.97, "end": 1087.15, "word": " do", "probability": 0.391357421875}, {"start": 1087.15, "end": 1087.25, "word": " they", "probability": 0.8916015625}, {"start": 1087.25, "end": 1087.25, "word": " have?", "probability": 0.787109375}, {"start": 1087.47, "end": 1087.95, "word": " They", "probability": 0.77099609375}, {"start": 1087.95, "end": 1088.01, "word": " are", "probability": 0.787109375}, {"start": 1088.01, "end": 1088.39, "word": " different.", "probability": 0.76416015625}, {"start": 1089.07, "end": 1089.37, "word": " Now,", "probability": 0.90478515625}, {"start": 1089.43, "end": 1089.55, "word": " if", "probability": 0.9267578125}, {"start": 1089.55, "end": 1089.75, "word": " I", "probability": 0.98681640625}, {"start": 1089.75, "end": 1090.07, "word": " came", "probability": 0.432373046875}, {"start": 1090.07, "end": 1090.25, "word": " to", "probability": 0.86669921875}, {"start": 1090.25, "end": 1090.39, "word": " the", "probability": 0.6298828125}, {"start": 1090.39, "end": 1090.79, "word": " GUI", "probability": 0.94580078125}, {"start": 1090.79, "end": 1091.09, "word": " too", "probability": 0.251708984375}, {"start": 1091.09, "end": 1091.31, "word": " and", "probability": 0.7626953125}, {"start": 1091.31, "end": 1091.65, "word": " changed", "probability": 0.83349609375}, {"start": 1091.65, "end": 1091.81, "word": " it,", "probability": 0.53759765625}, {"start": 1091.83, "end": 1092.01, "word": " I", "probability": 0.58935546875}, {"start": 1092.01, "end": 1092.33, "word": " called", "probability": 0.54736328125}, {"start": 1092.33, "end": 1092.61, "word": " this", "probability": 0.54248046875}, {"start": 1092.61, "end": 1093.19, "word": " full", "probability": 0.429443359375}, {"start": 1093.19, "end": 1095.43, "word": "-time", "probability": 0.933837890625}, {"start": 1095.43, "end": 1096.37, "word": " employee,", "probability": 0.8466796875}], "temperature": 1.0}, {"id": 44, "seek": 112815, "start": 1099.45, "end": 1128.15, "text": " I put the salary but it will run and you will see here this is the name, id, job title and this is the salary and when I click on save it should read what is written here and create an object from full-time employee if you want to create a new employee what do you have to do? you have to do two things first thing you have to do is class to method this one for example here is contract based employee", "tokens": [286, 829, 264, 15360, 457, 309, 486, 1190, 293, 291, 486, 536, 510, 341, 307, 264, 1315, 11, 4496, 11, 1691, 4876, 293, 341, 307, 264, 15360, 293, 562, 286, 2052, 322, 3155, 309, 820, 1401, 437, 307, 3720, 510, 293, 1884, 364, 2657, 490, 1577, 12, 3766, 10738, 498, 291, 528, 281, 1884, 257, 777, 10738, 437, 360, 291, 362, 281, 360, 30, 291, 362, 281, 360, 732, 721, 700, 551, 291, 362, 281, 360, 307, 1508, 281, 3170, 341, 472, 337, 1365, 510, 307, 4364, 2361, 10738], "avg_logprob": -0.5631944722599453, "compression_ratio": 1.8356164383561644, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 1099.45, "end": 1099.89, "word": " I", "probability": 0.485595703125}, {"start": 1099.89, "end": 1100.17, "word": " put", "probability": 0.2435302734375}, {"start": 1100.17, "end": 1100.33, "word": " the", "probability": 0.34326171875}, {"start": 1100.33, "end": 1100.57, "word": " salary", "probability": 0.9228515625}, {"start": 1100.57, "end": 1100.75, "word": " but", "probability": 0.158447265625}, {"start": 1100.75, "end": 1100.97, "word": " it", "probability": 0.42724609375}, {"start": 1100.97, "end": 1101.07, "word": " will", "probability": 0.1590576171875}, {"start": 1101.07, "end": 1102.71, "word": " run", "probability": 0.64013671875}, {"start": 1102.71, "end": 1103.95, "word": " and", "probability": 0.479248046875}, {"start": 1103.95, "end": 1104.07, "word": " you", "probability": 0.62451171875}, {"start": 1104.07, "end": 1104.15, "word": " will", "probability": 0.794921875}, {"start": 1104.15, "end": 1104.39, "word": " see", "probability": 0.404052734375}, {"start": 1104.39, "end": 1104.57, "word": " here", "probability": 0.54345703125}, {"start": 1104.57, "end": 1105.05, "word": " this", "probability": 0.1480712890625}, {"start": 1105.05, "end": 1106.51, "word": " is", "probability": 0.552734375}, {"start": 1106.51, "end": 1107.11, "word": " the", "probability": 0.55810546875}, {"start": 1107.11, "end": 1107.39, "word": " name,", "probability": 0.62548828125}, {"start": 1107.49, "end": 1107.77, "word": " id,", "probability": 0.34423828125}, {"start": 1107.89, "end": 1108.01, "word": " job", "probability": 0.943359375}, {"start": 1108.01, "end": 1108.35, "word": " title", "probability": 0.96484375}, {"start": 1108.35, "end": 1108.47, "word": " and", "probability": 0.69287109375}, {"start": 1108.47, "end": 1108.51, "word": " this", "probability": 0.48828125}, {"start": 1108.51, "end": 1108.61, "word": " is", "probability": 0.77392578125}, {"start": 1108.61, "end": 1108.77, "word": " the", "probability": 0.6318359375}, {"start": 1108.77, "end": 1110.07, "word": " salary", "probability": 0.6953125}, {"start": 1110.07, "end": 1110.21, "word": " and", "probability": 0.11749267578125}, {"start": 1110.21, "end": 1110.45, "word": " when", "probability": 0.7861328125}, {"start": 1110.45, "end": 1110.55, "word": " I", "probability": 0.6708984375}, {"start": 1110.55, "end": 1110.67, "word": " click", "probability": 0.5166015625}, {"start": 1110.67, "end": 1110.85, "word": " on", "probability": 0.4921875}, {"start": 1110.85, "end": 1110.99, "word": " save", "probability": 0.86181640625}, {"start": 1110.99, "end": 1111.09, "word": " it", "probability": 0.47509765625}, {"start": 1111.09, "end": 1111.43, "word": " should", "probability": 0.595703125}, {"start": 1111.43, "end": 1112.39, "word": " read", "probability": 0.47705078125}, {"start": 1112.39, "end": 1112.65, "word": " what", "probability": 0.225830078125}, {"start": 1112.65, "end": 1112.65, "word": " is", "probability": 0.783203125}, {"start": 1112.65, "end": 1112.67, "word": " written", "probability": 0.421142578125}, {"start": 1112.67, "end": 1112.87, "word": " here", "probability": 0.68603515625}, {"start": 1112.87, "end": 1112.97, "word": " and", "probability": 0.8671875}, {"start": 1112.97, "end": 1113.61, "word": " create", "probability": 0.72021484375}, {"start": 1113.61, "end": 1113.79, "word": " an", "probability": 0.44970703125}, {"start": 1113.79, "end": 1113.97, "word": " object", "probability": 0.9716796875}, {"start": 1113.97, "end": 1114.19, "word": " from", "probability": 0.69970703125}, {"start": 1114.19, "end": 1115.39, "word": " full", "probability": 0.199462890625}, {"start": 1115.39, "end": 1115.77, "word": "-time", "probability": 0.837646484375}, {"start": 1115.77, "end": 1116.71, "word": " employee", "probability": 0.68310546875}, {"start": 1116.71, "end": 1117.13, "word": " if", "probability": 0.263427734375}, {"start": 1117.13, "end": 1117.27, "word": " you", "probability": 0.96240234375}, {"start": 1117.27, "end": 1117.41, "word": " want", "probability": 0.75341796875}, {"start": 1117.41, "end": 1117.49, "word": " to", "probability": 0.96630859375}, {"start": 1117.49, "end": 1117.71, "word": " create", "probability": 0.595703125}, {"start": 1117.71, "end": 1118.27, "word": " a", "probability": 0.88037109375}, {"start": 1118.27, "end": 1118.31, "word": " new", "probability": 0.8994140625}, {"start": 1118.31, "end": 1118.99, "word": " employee", "probability": 0.7744140625}, {"start": 1118.99, "end": 1119.81, "word": " what", "probability": 0.537109375}, {"start": 1119.81, "end": 1119.95, "word": " do", "probability": 0.428955078125}, {"start": 1119.95, "end": 1119.95, "word": " you", "probability": 0.94384765625}, {"start": 1119.95, "end": 1120.07, "word": " have", "probability": 0.50830078125}, {"start": 1120.07, "end": 1120.21, "word": " to", "probability": 0.97314453125}, {"start": 1120.21, "end": 1120.55, "word": " do?", "probability": 0.9541015625}, {"start": 1121.21, "end": 1121.35, "word": " you", "probability": 0.64404296875}, {"start": 1121.35, "end": 1121.45, "word": " have", "probability": 0.7021484375}, {"start": 1121.45, "end": 1121.53, "word": " to", "probability": 0.9169921875}, {"start": 1121.53, "end": 1121.73, "word": " do", "probability": 0.6064453125}, {"start": 1121.73, "end": 1122.05, "word": " two", "probability": 0.73095703125}, {"start": 1122.05, "end": 1122.05, "word": " things", "probability": 0.8349609375}, {"start": 1122.05, "end": 1122.89, "word": " first", "probability": 0.63134765625}, {"start": 1122.89, "end": 1123.13, "word": " thing", "probability": 0.638671875}, {"start": 1123.13, "end": 1123.23, "word": " you", "probability": 0.69580078125}, {"start": 1123.23, "end": 1123.33, "word": " have", "probability": 0.7841796875}, {"start": 1123.33, "end": 1123.49, "word": " to", "probability": 0.97021484375}, {"start": 1123.49, "end": 1123.85, "word": " do", "probability": 0.869140625}, {"start": 1123.85, "end": 1124.47, "word": " is", "probability": 0.7470703125}, {"start": 1124.47, "end": 1124.81, "word": " class", "probability": 0.54833984375}, {"start": 1124.81, "end": 1124.95, "word": " to", "probability": 0.38134765625}, {"start": 1124.95, "end": 1125.25, "word": " method", "probability": 0.65185546875}, {"start": 1125.25, "end": 1125.71, "word": " this", "probability": 0.5693359375}, {"start": 1125.71, "end": 1125.77, "word": " one", "probability": 0.412841796875}, {"start": 1125.77, "end": 1126.05, "word": " for", "probability": 0.1571044921875}, {"start": 1126.05, "end": 1126.43, "word": " example", "probability": 0.94970703125}, {"start": 1126.43, "end": 1126.75, "word": " here", "probability": 0.1593017578125}, {"start": 1126.75, "end": 1126.79, "word": " is", "probability": 0.478271484375}, {"start": 1126.79, "end": 1127.19, "word": " contract", "probability": 0.685546875}, {"start": 1127.19, "end": 1127.71, "word": " based", "probability": 0.880859375}, {"start": 1127.71, "end": 1128.15, "word": " employee", "probability": 0.8310546875}], "temperature": 1.0}, {"id": 45, "seek": 115821, "start": 1130.15, "end": 1158.21, "text": " What is the attribute of his job? startDate and endDate and then it creates a new class contractBasedEmployeeFor which is also called extendEmployeeFor and it puts a new value in it which is called contractDuration which is the length of the contract and createEmployee which is an object from contractBasedEmployee and in testUI it puts the name of the class", "tokens": [708, 307, 264, 19667, 295, 702, 1691, 30, 722, 35, 473, 293, 917, 35, 473, 293, 550, 309, 7829, 257, 777, 1508, 4364, 33, 1937, 22285, 2384, 1653, 12587, 597, 307, 611, 1219, 10101, 22285, 2384, 1653, 12587, 293, 309, 8137, 257, 777, 2158, 294, 309, 597, 307, 1219, 4364, 35, 8167, 597, 307, 264, 4641, 295, 264, 4364, 293, 1884, 22285, 2384, 1653, 597, 307, 364, 2657, 490, 4364, 33, 1937, 22285, 2384, 1653, 293, 294, 1500, 46324, 309, 8137, 264, 1315, 295, 264, 1508], "avg_logprob": -0.5779454201117329, "compression_ratio": 1.8848167539267016, "no_speech_prob": 2.1457672119140625e-06, "words": [{"start": 1130.15, "end": 1130.67, "word": " What", "probability": 0.1790771484375}, {"start": 1130.67, "end": 1130.75, "word": " is", "probability": 0.66064453125}, {"start": 1130.75, "end": 1130.79, "word": " the", "probability": 0.444580078125}, {"start": 1130.79, "end": 1131.03, "word": " attribute", "probability": 0.128662109375}, {"start": 1131.03, "end": 1131.25, "word": " of", "probability": 0.435791015625}, {"start": 1131.25, "end": 1131.31, "word": " his", "probability": 0.2705078125}, {"start": 1131.31, "end": 1131.47, "word": " job?", "probability": 0.166015625}, {"start": 1132.87, "end": 1133.39, "word": " startDate", "probability": 0.5944010416666666}, {"start": 1133.39, "end": 1134.07, "word": " and", "probability": 0.78759765625}, {"start": 1134.07, "end": 1134.53, "word": " endDate", "probability": 0.93115234375}, {"start": 1134.53, "end": 1135.01, "word": " and", "probability": 0.16796875}, {"start": 1135.01, "end": 1135.33, "word": " then", "probability": 0.6572265625}, {"start": 1135.33, "end": 1135.51, "word": " it", "probability": 0.2822265625}, {"start": 1135.51, "end": 1135.91, "word": " creates", "probability": 0.28515625}, {"start": 1135.91, "end": 1136.05, "word": " a", "probability": 0.90380859375}, {"start": 1136.05, "end": 1136.67, "word": " new", "probability": 0.8388671875}, {"start": 1136.67, "end": 1136.67, "word": " class", "probability": 0.947265625}, {"start": 1136.67, "end": 1139.27, "word": " contractBasedEmployeeFor", "probability": 0.6606794084821429}, {"start": 1139.27, "end": 1139.91, "word": " which", "probability": 0.1956787109375}, {"start": 1139.91, "end": 1139.99, "word": " is", "probability": 0.333740234375}, {"start": 1139.99, "end": 1139.99, "word": " also", "probability": 0.6953125}, {"start": 1139.99, "end": 1140.23, "word": " called", "probability": 0.7138671875}, {"start": 1140.23, "end": 1141.79, "word": " extendEmployeeFor", "probability": 0.87939453125}, {"start": 1141.79, "end": 1142.11, "word": " and", "probability": 0.65673828125}, {"start": 1142.11, "end": 1142.21, "word": " it", "probability": 0.29296875}, {"start": 1142.21, "end": 1142.37, "word": " puts", "probability": 0.28662109375}, {"start": 1142.37, "end": 1142.63, "word": " a", "probability": 0.28662109375}, {"start": 1142.63, "end": 1142.89, "word": " new", "probability": 0.77880859375}, {"start": 1142.89, "end": 1143.01, "word": " value", "probability": 0.26025390625}, {"start": 1143.01, "end": 1143.39, "word": " in", "probability": 0.250244140625}, {"start": 1143.39, "end": 1143.39, "word": " it", "probability": 0.8349609375}, {"start": 1143.39, "end": 1143.59, "word": " which", "probability": 0.145263671875}, {"start": 1143.59, "end": 1144.39, "word": " is", "probability": 0.74267578125}, {"start": 1144.39, "end": 1144.41, "word": " called", "probability": 0.2393798828125}, {"start": 1144.41, "end": 1145.61, "word": " contractDuration", "probability": 0.8723958333333334}, {"start": 1145.61, "end": 1145.83, "word": " which", "probability": 0.264404296875}, {"start": 1145.83, "end": 1146.19, "word": " is", "probability": 0.64599609375}, {"start": 1146.19, "end": 1146.19, "word": " the", "probability": 0.517578125}, {"start": 1146.19, "end": 1146.19, "word": " length", "probability": 0.401123046875}, {"start": 1146.19, "end": 1147.25, "word": " of", "probability": 0.96240234375}, {"start": 1147.25, "end": 1147.63, "word": " the", "probability": 0.71240234375}, {"start": 1147.63, "end": 1147.97, "word": " contract", "probability": 0.888671875}, {"start": 1147.97, "end": 1148.71, "word": " and", "probability": 0.1990966796875}, {"start": 1148.71, "end": 1151.75, "word": " createEmployee", "probability": 0.89404296875}, {"start": 1151.75, "end": 1151.77, "word": " which", "probability": 0.27197265625}, {"start": 1151.77, "end": 1151.83, "word": " is", "probability": 0.51513671875}, {"start": 1151.83, "end": 1152.07, "word": " an", "probability": 0.348876953125}, {"start": 1152.07, "end": 1152.33, "word": " object", "probability": 0.97998046875}, {"start": 1152.33, "end": 1152.51, "word": " from", "probability": 0.447021484375}, {"start": 1152.51, "end": 1154.63, "word": " contractBasedEmployee", "probability": 0.8990071614583334}, {"start": 1154.63, "end": 1155.23, "word": " and", "probability": 0.751953125}, {"start": 1155.23, "end": 1155.35, "word": " in", "probability": 0.7958984375}, {"start": 1155.35, "end": 1155.97, "word": " testUI", "probability": 0.5201416015625}, {"start": 1155.97, "end": 1157.23, "word": " it", "probability": 0.52734375}, {"start": 1157.23, "end": 1157.43, "word": " puts", "probability": 0.453857421875}, {"start": 1157.43, "end": 1157.55, "word": " the", "probability": 0.65234375}, {"start": 1157.55, "end": 1157.67, "word": " name", "probability": 0.57763671875}, {"start": 1157.67, "end": 1157.77, "word": " of", "probability": 0.9677734375}, {"start": 1157.77, "end": 1157.81, "word": " the", "probability": 0.875}, {"start": 1157.81, "end": 1158.21, "word": " class", "probability": 0.951171875}], "temperature": 1.0}, {"id": 46, "seek": 118083, "start": 1172.17, "end": 1180.83, "text": " again ok and of course it will add to the new contract here a duration ok so the important idea", "tokens": [797, 3133, 293, 295, 1164, 309, 486, 909, 281, 264, 777, 4364, 510, 257, 16365, 3133, 370, 264, 1021, 1558], "avg_logprob": -1.0126488549368722, "compression_ratio": 1.2307692307692308, "no_speech_prob": 1.1324882507324219e-05, "words": [{"start": 1172.1699999999998, "end": 1172.85, "word": " again", "probability": 0.09271240234375}, {"start": 1172.85, "end": 1173.53, "word": " ok", "probability": 0.09564208984375}, {"start": 1173.53, "end": 1174.31, "word": " and", "probability": 0.5576171875}, {"start": 1174.31, "end": 1174.61, "word": " of", "probability": 0.603515625}, {"start": 1174.61, "end": 1174.61, "word": " course", "probability": 0.88037109375}, {"start": 1174.61, "end": 1174.95, "word": " it", "probability": 0.1693115234375}, {"start": 1174.95, "end": 1174.99, "word": " will", "probability": 0.5966796875}, {"start": 1174.99, "end": 1175.17, "word": " add", "probability": 0.794921875}, {"start": 1175.17, "end": 1175.29, "word": " to", "probability": 0.27392578125}, {"start": 1175.29, "end": 1175.35, "word": " the", "probability": 0.7568359375}, {"start": 1175.35, "end": 1175.83, "word": " new", "probability": 0.1727294921875}, {"start": 1175.83, "end": 1176.41, "word": " contract", "probability": 0.447265625}, {"start": 1176.41, "end": 1176.51, "word": " here", "probability": 0.26953125}, {"start": 1176.51, "end": 1176.67, "word": " a", "probability": 0.2423095703125}, {"start": 1176.67, "end": 1178.03, "word": " duration", "probability": 0.5615234375}, {"start": 1178.03, "end": 1179.29, "word": " ok", "probability": 0.40576171875}, {"start": 1179.29, "end": 1180.07, "word": " so", "probability": 0.146240234375}, {"start": 1180.07, "end": 1180.29, "word": " the", "probability": 0.66015625}, {"start": 1180.29, "end": 1180.45, "word": " important", "probability": 0.51513671875}, {"start": 1180.45, "end": 1180.83, "word": " idea", "probability": 0.41259765625}], "temperature": 1.0}, {"id": 47, "seek": 121156, "start": 1182.28, "end": 1211.56, "text": " You see that now the program is 100% extendable I don't need to edit any line of code I don't need to copy paste or repeat any line of code All I need to do is create new classes Extend and add the new parts that belong to it That's how editing becomes much easier than before We also did this using the factory method Now", "tokens": [509, 536, 300, 586, 264, 1461, 307, 2319, 4, 10101, 712, 286, 500, 380, 643, 281, 8129, 604, 1622, 295, 3089, 286, 500, 380, 643, 281, 5055, 9163, 420, 7149, 604, 1622, 295, 3089, 1057, 286, 643, 281, 360, 307, 1884, 777, 5359, 9881, 521, 293, 909, 264, 777, 3166, 300, 5784, 281, 309, 663, 311, 577, 10000, 3643, 709, 3571, 813, 949, 492, 611, 630, 341, 1228, 264, 9265, 3170, 823], "avg_logprob": -0.4738869863013699, "compression_ratio": 1.5911330049261083, "no_speech_prob": 0.00014150142669677734, "words": [{"start": 1182.28, "end": 1182.82, "word": " You", "probability": 0.141357421875}, {"start": 1182.82, "end": 1183.04, "word": " see", "probability": 0.5673828125}, {"start": 1183.04, "end": 1183.56, "word": " that", "probability": 0.303466796875}, {"start": 1183.56, "end": 1185.42, "word": " now", "probability": 0.2998046875}, {"start": 1185.42, "end": 1185.56, "word": " the", "probability": 0.67919921875}, {"start": 1185.56, "end": 1185.88, "word": " program", "probability": 0.7294921875}, {"start": 1185.88, "end": 1186.08, "word": " is", "probability": 0.7861328125}, {"start": 1186.08, "end": 1186.68, "word": " 100", "probability": 0.3994140625}, {"start": 1186.68, "end": 1187.06, "word": "%", "probability": 0.9716796875}, {"start": 1187.06, "end": 1187.06, "word": " extendable", "probability": 0.6761474609375}, {"start": 1187.06, "end": 1187.28, "word": " I", "probability": 0.56005859375}, {"start": 1187.28, "end": 1187.38, "word": " don't", "probability": 0.873291015625}, {"start": 1187.38, "end": 1187.68, "word": " need", "probability": 0.71728515625}, {"start": 1187.68, "end": 1187.78, "word": " to", "probability": 0.9501953125}, {"start": 1187.78, "end": 1188.08, "word": " edit", "probability": 0.2059326171875}, {"start": 1188.08, "end": 1189.02, "word": " any", "probability": 0.765625}, {"start": 1189.02, "end": 1189.2, "word": " line", "probability": 0.77001953125}, {"start": 1189.2, "end": 1189.58, "word": " of", "probability": 0.9501953125}, {"start": 1189.58, "end": 1189.58, "word": " code", "probability": 0.9365234375}, {"start": 1189.58, "end": 1190.32, "word": " I", "probability": 0.68994140625}, {"start": 1190.32, "end": 1190.4, "word": " don't", "probability": 0.95751953125}, {"start": 1190.4, "end": 1190.78, "word": " need", "probability": 0.904296875}, {"start": 1190.78, "end": 1190.98, "word": " to", "probability": 0.9013671875}, {"start": 1190.98, "end": 1191.46, "word": " copy", "probability": 0.8955078125}, {"start": 1191.46, "end": 1191.94, "word": " paste", "probability": 0.42041015625}, {"start": 1191.94, "end": 1192.66, "word": " or", "probability": 0.6787109375}, {"start": 1192.66, "end": 1193.16, "word": " repeat", "probability": 0.51318359375}, {"start": 1193.16, "end": 1193.62, "word": " any", "probability": 0.7216796875}, {"start": 1193.62, "end": 1193.78, "word": " line", "probability": 0.8974609375}, {"start": 1193.78, "end": 1193.94, "word": " of", "probability": 0.9609375}, {"start": 1193.94, "end": 1194.18, "word": " code", "probability": 0.93603515625}, {"start": 1194.18, "end": 1194.72, "word": " All", "probability": 0.7109375}, {"start": 1194.72, "end": 1194.88, "word": " I", "probability": 0.880859375}, {"start": 1194.88, "end": 1195.12, "word": " need", "probability": 0.865234375}, {"start": 1195.12, "end": 1195.32, "word": " to", "probability": 0.75341796875}, {"start": 1195.32, "end": 1195.48, "word": " do", "probability": 0.95556640625}, {"start": 1195.48, "end": 1196.18, "word": " is", "probability": 0.85693359375}, {"start": 1196.18, "end": 1196.48, "word": " create", "probability": 0.445068359375}, {"start": 1196.48, "end": 1196.58, "word": " new", "probability": 0.83154296875}, {"start": 1196.58, "end": 1197.02, "word": " classes", "probability": 0.916015625}, {"start": 1197.02, "end": 1198.68, "word": " Extend", "probability": 0.61572265625}, {"start": 1198.68, "end": 1198.8, "word": " and", "probability": 0.54443359375}, {"start": 1198.8, "end": 1199.06, "word": " add", "probability": 0.89599609375}, {"start": 1199.06, "end": 1199.24, "word": " the", "probability": 0.32275390625}, {"start": 1199.24, "end": 1199.84, "word": " new", "probability": 0.798828125}, {"start": 1199.84, "end": 1199.84, "word": " parts", "probability": 0.5751953125}, {"start": 1199.84, "end": 1200.12, "word": " that", "probability": 0.15234375}, {"start": 1200.12, "end": 1200.18, "word": " belong", "probability": 0.32421875}, {"start": 1200.18, "end": 1200.36, "word": " to", "probability": 0.89794921875}, {"start": 1200.36, "end": 1201.08, "word": " it", "probability": 0.63720703125}, {"start": 1201.08, "end": 1201.62, "word": " That's", "probability": 0.32000732421875}, {"start": 1201.62, "end": 1203.18, "word": " how", "probability": 0.78857421875}, {"start": 1203.18, "end": 1203.54, "word": " editing", "probability": 0.342041015625}, {"start": 1203.54, "end": 1204.08, "word": " becomes", "probability": 0.5234375}, {"start": 1204.08, "end": 1204.28, "word": " much", "probability": 0.416259765625}, {"start": 1204.28, "end": 1204.82, "word": " easier", "probability": 0.93408203125}, {"start": 1204.82, "end": 1205.06, "word": " than", "probability": 0.7158203125}, {"start": 1205.06, "end": 1206.1, "word": " before", "probability": 0.8212890625}, {"start": 1206.1, "end": 1207.04, "word": " We", "probability": 0.54833984375}, {"start": 1207.04, "end": 1207.26, "word": " also", "probability": 0.351806640625}, {"start": 1207.26, "end": 1207.46, "word": " did", "probability": 0.759765625}, {"start": 1207.46, "end": 1207.56, "word": " this", "probability": 0.58740234375}, {"start": 1207.56, "end": 1207.84, "word": " using", "probability": 0.529296875}, {"start": 1207.84, "end": 1208.12, "word": " the", "probability": 0.65234375}, {"start": 1208.12, "end": 1208.42, "word": " factory", "probability": 0.689453125}, {"start": 1208.42, "end": 1209.74, "word": " method", "probability": 0.9306640625}, {"start": 1209.74, "end": 1211.56, "word": " Now", "probability": 0.83203125}], "temperature": 1.0}, {"id": 48, "seek": 124456, "start": 1223.76, "end": 1244.56, "text": " This is the same example that I explained to you in the previous lecture on Java, which is the social network poster and the social network connector When I got this example from the internet, it is basically made of PHP The example itself is PHP, but when I explained it, I explained Java Of course, this code exists in PHP", "tokens": [639, 307, 264, 912, 1365, 300, 286, 8825, 281, 291, 294, 264, 3894, 7991, 322, 10745, 11, 597, 307, 264, 2093, 3209, 17171, 293, 264, 2093, 3209, 19127, 1133, 286, 658, 341, 1365, 490, 264, 4705, 11, 309, 307, 1936, 1027, 295, 47298, 440, 1365, 2564, 307, 47298, 11, 457, 562, 286, 8825, 309, 11, 286, 8825, 10745, 2720, 1164, 11, 341, 3089, 8198, 294, 47298], "avg_logprob": -0.443796651576882, "compression_ratio": 1.6414141414141414, "no_speech_prob": 3.0994415283203125e-06, "words": [{"start": 1223.76, "end": 1224.3, "word": " This", "probability": 0.435302734375}, {"start": 1224.3, "end": 1224.34, "word": " is", "probability": 0.890625}, {"start": 1224.34, "end": 1224.64, "word": " the", "probability": 0.79638671875}, {"start": 1224.64, "end": 1224.64, "word": " same", "probability": 0.81103515625}, {"start": 1224.64, "end": 1225.02, "word": " example", "probability": 0.9033203125}, {"start": 1225.02, "end": 1225.26, "word": " that", "probability": 0.36279296875}, {"start": 1225.26, "end": 1225.4, "word": " I", "probability": 0.9228515625}, {"start": 1225.4, "end": 1225.66, "word": " explained", "probability": 0.29638671875}, {"start": 1225.66, "end": 1225.88, "word": " to", "probability": 0.434814453125}, {"start": 1225.88, "end": 1225.88, "word": " you", "probability": 0.96875}, {"start": 1225.88, "end": 1226.04, "word": " in", "probability": 0.6298828125}, {"start": 1226.04, "end": 1226.1, "word": " the", "probability": 0.5234375}, {"start": 1226.1, "end": 1226.1, "word": " previous", "probability": 0.5185546875}, {"start": 1226.1, "end": 1226.42, "word": " lecture", "probability": 0.61376953125}, {"start": 1226.42, "end": 1226.86, "word": " on", "probability": 0.4521484375}, {"start": 1226.86, "end": 1227.24, "word": " Java,", "probability": 0.63037109375}, {"start": 1227.5, "end": 1227.6, "word": " which", "probability": 0.55322265625}, {"start": 1227.6, "end": 1227.98, "word": " is", "probability": 0.71728515625}, {"start": 1227.98, "end": 1228.24, "word": " the", "probability": 0.54541015625}, {"start": 1228.24, "end": 1228.6, "word": " social", "probability": 0.873046875}, {"start": 1228.6, "end": 1229.1, "word": " network", "probability": 0.93896484375}, {"start": 1229.1, "end": 1229.54, "word": " poster", "probability": 0.87548828125}, {"start": 1229.54, "end": 1229.74, "word": " and", "probability": 0.70556640625}, {"start": 1229.74, "end": 1229.84, "word": " the", "probability": 0.446533203125}, {"start": 1229.84, "end": 1230.12, "word": " social", "probability": 0.92333984375}, {"start": 1230.12, "end": 1230.42, "word": " network", "probability": 0.95166015625}, {"start": 1230.42, "end": 1231.06, "word": " connector", "probability": 0.85693359375}, {"start": 1231.06, "end": 1232.28, "word": " When", "probability": 0.1849365234375}, {"start": 1232.28, "end": 1232.64, "word": " I", "probability": 0.95556640625}, {"start": 1232.64, "end": 1232.64, "word": " got", "probability": 0.371337890625}, {"start": 1232.64, "end": 1232.7, "word": " this", "probability": 0.8857421875}, {"start": 1232.7, "end": 1232.94, "word": " example", "probability": 0.91259765625}, {"start": 1232.94, "end": 1233.4, "word": " from", "probability": 0.72265625}, {"start": 1233.4, "end": 1233.46, "word": " the", "probability": 0.77197265625}, {"start": 1233.46, "end": 1233.8, "word": " internet,", "probability": 0.79150390625}, {"start": 1234.26, "end": 1234.36, "word": " it", "probability": 0.84033203125}, {"start": 1234.36, "end": 1234.46, "word": " is", "probability": 0.3818359375}, {"start": 1234.46, "end": 1234.76, "word": " basically", "probability": 0.396728515625}, {"start": 1234.76, "end": 1234.96, "word": " made", "probability": 0.548828125}, {"start": 1234.96, "end": 1235.1, "word": " of", "probability": 0.355712890625}, {"start": 1235.1, "end": 1235.46, "word": " PHP", "probability": 0.93212890625}, {"start": 1235.46, "end": 1236.42, "word": " The", "probability": 0.2105712890625}, {"start": 1236.42, "end": 1236.76, "word": " example", "probability": 0.87744140625}, {"start": 1236.76, "end": 1237.16, "word": " itself", "probability": 0.283935546875}, {"start": 1237.16, "end": 1237.58, "word": " is", "probability": 0.9013671875}, {"start": 1237.58, "end": 1238.12, "word": " PHP,", "probability": 0.859375}, {"start": 1238.26, "end": 1238.4, "word": " but", "probability": 0.896484375}, {"start": 1238.4, "end": 1238.64, "word": " when", "probability": 0.76171875}, {"start": 1238.64, "end": 1238.74, "word": " I", "probability": 0.9892578125}, {"start": 1238.74, "end": 1238.96, "word": " explained", "probability": 0.67626953125}, {"start": 1238.96, "end": 1239.24, "word": " it,", "probability": 0.89599609375}, {"start": 1239.5, "end": 1239.76, "word": " I", "probability": 0.9453125}, {"start": 1239.76, "end": 1239.98, "word": " explained", "probability": 0.70849609375}, {"start": 1239.98, "end": 1241.0, "word": " Java", "probability": 0.6298828125}, {"start": 1241.0, "end": 1241.68, "word": " Of", "probability": 0.46240234375}, {"start": 1241.68, "end": 1243.0, "word": " course,", "probability": 0.958984375}, {"start": 1243.1, "end": 1243.2, "word": " this", "probability": 0.72900390625}, {"start": 1243.2, "end": 1243.78, "word": " code", "probability": 0.53515625}, {"start": 1243.78, "end": 1244.02, "word": " exists", "probability": 0.4775390625}, {"start": 1244.02, "end": 1244.18, "word": " in", "probability": 0.50244140625}, {"start": 1244.18, "end": 1244.56, "word": " PHP", "probability": 0.9599609375}], "temperature": 1.0}, {"id": 49, "seek": 127350, "start": 1245.42, "end": 1273.5, "text": "so that you can see that object-oriented concepts are present in all languages. For example, if you remember the example from last time, I have connectors, for example, Facebook connector, Twitter, LinkedIn connectors, and then I have posters. The poster uses the connector from inside to connect to the social network and then make a post and store it in the database and so on. For example, if I want to make a post, the steps of making the post are common,", "tokens": [539, 300, 291, 393, 536, 300, 2657, 12, 27414, 10392, 366, 1974, 294, 439, 8650, 13, 1171, 1365, 11, 498, 291, 1604, 264, 1365, 490, 1036, 565, 11, 286, 362, 31865, 11, 337, 1365, 11, 4384, 19127, 11, 5794, 11, 20657, 31865, 11, 293, 550, 286, 362, 28172, 13, 440, 17171, 4960, 264, 19127, 490, 1854, 281, 1745, 281, 264, 2093, 3209, 293, 550, 652, 257, 2183, 293, 3531, 309, 294, 264, 8149, 293, 370, 322, 13, 1171, 1365, 11, 498, 286, 528, 281, 652, 257, 2183, 11, 264, 4439, 295, 1455, 264, 2183, 366, 2689, 11], "avg_logprob": -0.4473852104678446, "compression_ratio": 1.904564315352697, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1245.42, "end": 1245.68, "word": "so", "probability": 0.187744140625}, {"start": 1245.68, "end": 1245.78, "word": " that", "probability": 0.6357421875}, {"start": 1245.78, "end": 1245.86, "word": " you", "probability": 0.67919921875}, {"start": 1245.86, "end": 1245.9, "word": " can", "probability": 0.490234375}, {"start": 1245.9, "end": 1246.02, "word": " see", "probability": 0.7451171875}, {"start": 1246.02, "end": 1246.14, "word": " that", "probability": 0.76953125}, {"start": 1246.14, "end": 1246.4, "word": " object", "probability": 0.228759765625}, {"start": 1246.4, "end": 1246.92, "word": "-oriented", "probability": 0.69091796875}, {"start": 1246.92, "end": 1247.36, "word": " concepts", "probability": 0.8056640625}, {"start": 1247.36, "end": 1247.62, "word": " are", "probability": 0.476806640625}, {"start": 1247.62, "end": 1247.84, "word": " present", "probability": 0.56689453125}, {"start": 1247.84, "end": 1247.98, "word": " in", "probability": 0.890625}, {"start": 1247.98, "end": 1248.36, "word": " all", "probability": 0.6298828125}, {"start": 1248.36, "end": 1249.34, "word": " languages.", "probability": 0.93212890625}, {"start": 1250.36, "end": 1250.82, "word": " For", "probability": 0.30224609375}, {"start": 1250.82, "end": 1251.76, "word": " example,", "probability": 0.861328125}, {"start": 1251.76, "end": 1251.76, "word": " if", "probability": 0.238037109375}, {"start": 1251.76, "end": 1251.88, "word": " you", "probability": 0.86376953125}, {"start": 1251.88, "end": 1252.14, "word": " remember", "probability": 0.6787109375}, {"start": 1252.14, "end": 1252.34, "word": " the", "probability": 0.377685546875}, {"start": 1252.34, "end": 1252.56, "word": " example", "probability": 0.75390625}, {"start": 1252.56, "end": 1252.7, "word": " from", "probability": 0.49267578125}, {"start": 1252.7, "end": 1253.06, "word": " last", "probability": 0.6728515625}, {"start": 1253.06, "end": 1253.26, "word": " time,", "probability": 0.71533203125}, {"start": 1253.64, "end": 1253.8, "word": " I", "probability": 0.55908203125}, {"start": 1253.8, "end": 1254.02, "word": " have", "probability": 0.8828125}, {"start": 1254.02, "end": 1254.72, "word": " connectors,", "probability": 0.6259765625}, {"start": 1255.26, "end": 1255.48, "word": " for", "probability": 0.494873046875}, {"start": 1255.48, "end": 1255.68, "word": " example,", "probability": 0.86669921875}, {"start": 1255.92, "end": 1256.88, "word": " Facebook", "probability": 0.56591796875}, {"start": 1256.88, "end": 1257.38, "word": " connector,", "probability": 0.578125}, {"start": 1257.6, "end": 1257.88, "word": " Twitter,", "probability": 0.85009765625}, {"start": 1258.04, "end": 1258.34, "word": " LinkedIn", "probability": 0.72265625}, {"start": 1258.34, "end": 1259.04, "word": " connectors,", "probability": 0.62646484375}, {"start": 1259.16, "end": 1259.22, "word": " and", "probability": 0.875}, {"start": 1259.22, "end": 1259.4, "word": " then", "probability": 0.64208984375}, {"start": 1259.4, "end": 1259.46, "word": " I", "probability": 0.84912109375}, {"start": 1259.46, "end": 1259.68, "word": " have", "probability": 0.908203125}, {"start": 1259.68, "end": 1260.1, "word": " posters.", "probability": 0.82763671875}, {"start": 1260.7, "end": 1261.0, "word": " The", "probability": 0.796875}, {"start": 1261.0, "end": 1261.32, "word": " poster", "probability": 0.765625}, {"start": 1261.32, "end": 1261.82, "word": " uses", "probability": 0.7587890625}, {"start": 1261.82, "end": 1262.28, "word": " the", "probability": 0.6455078125}, {"start": 1262.28, "end": 1262.62, "word": " connector", "probability": 0.453369140625}, {"start": 1262.62, "end": 1262.62, "word": " from", "probability": 0.410888671875}, {"start": 1262.62, "end": 1262.62, "word": " inside", "probability": 0.403564453125}, {"start": 1262.62, "end": 1263.38, "word": " to", "probability": 0.60009765625}, {"start": 1263.38, "end": 1263.66, "word": " connect", "probability": 0.84228515625}, {"start": 1263.66, "end": 1263.9, "word": " to", "probability": 0.912109375}, {"start": 1263.9, "end": 1263.98, "word": " the", "probability": 0.78466796875}, {"start": 1263.98, "end": 1264.18, "word": " social", "probability": 0.92333984375}, {"start": 1264.18, "end": 1264.64, "word": " network", "probability": 0.94580078125}, {"start": 1264.64, "end": 1264.74, "word": " and", "probability": 0.391845703125}, {"start": 1264.74, "end": 1264.96, "word": " then", "probability": 0.751953125}, {"start": 1264.96, "end": 1265.18, "word": " make", "probability": 0.28076171875}, {"start": 1265.18, "end": 1265.32, "word": " a", "probability": 0.642578125}, {"start": 1265.32, "end": 1265.54, "word": " post", "probability": 0.86865234375}, {"start": 1265.54, "end": 1265.68, "word": " and", "probability": 0.6650390625}, {"start": 1265.68, "end": 1265.92, "word": " store", "probability": 0.73828125}, {"start": 1265.92, "end": 1266.02, "word": " it", "probability": 0.6708984375}, {"start": 1266.02, "end": 1266.08, "word": " in", "probability": 0.919921875}, {"start": 1266.08, "end": 1266.18, "word": " the", "probability": 0.8720703125}, {"start": 1266.18, "end": 1266.56, "word": " database", "probability": 0.939453125}, {"start": 1266.56, "end": 1266.7, "word": " and", "probability": 0.5986328125}, {"start": 1266.7, "end": 1266.86, "word": " so", "probability": 0.7470703125}, {"start": 1266.86, "end": 1266.96, "word": " on.", "probability": 0.9140625}, {"start": 1267.98, "end": 1268.44, "word": " For", "probability": 0.33154296875}, {"start": 1268.44, "end": 1268.86, "word": " example,", "probability": 0.9287109375}, {"start": 1269.86, "end": 1269.86, "word": " if", "probability": 0.259033203125}, {"start": 1269.86, "end": 1269.88, "word": " I", "probability": 0.85546875}, {"start": 1269.88, "end": 1270.02, "word": " want", "probability": 0.810546875}, {"start": 1270.02, "end": 1270.12, "word": " to", "probability": 0.96923828125}, {"start": 1270.12, "end": 1270.24, "word": " make", "probability": 0.66064453125}, {"start": 1270.24, "end": 1270.38, "word": " a", "probability": 0.970703125}, {"start": 1270.38, "end": 1270.64, "word": " post,", "probability": 0.8720703125}, {"start": 1270.86, "end": 1271.4, "word": " the", "probability": 0.56103515625}, {"start": 1271.4, "end": 1271.68, "word": " steps", "probability": 0.646484375}, {"start": 1271.68, "end": 1272.28, "word": " of", "probability": 0.466796875}, {"start": 1272.28, "end": 1272.28, "word": " making", "probability": 0.391357421875}, {"start": 1272.28, "end": 1272.68, "word": " the", "probability": 0.490966796875}, {"start": 1272.68, "end": 1273.02, "word": " post", "probability": 0.85986328125}, {"start": 1273.02, "end": 1273.18, "word": " are", "probability": 0.8447265625}, {"start": 1273.18, "end": 1273.5, "word": " common,", "probability": 0.335693359375}], "temperature": 1.0}, {"id": 50, "seek": 130081, "start": 1274.45, "end": 1300.81, "text": " So I'm going to put it in the superclass, it's called social network poster And this is the method post Because the method post wants to do four steps in it The first step is to create the connector Because it doesn't know what connector it creates Because the connector differs from subclass to subclass, right? So I'm going to create an abstract method Abstract public function called getSocialNetworkConnector, for example What does it return?", "tokens": [407, 286, 478, 516, 281, 829, 309, 294, 264, 1687, 11665, 11, 309, 311, 1219, 2093, 3209, 17171, 400, 341, 307, 264, 3170, 2183, 1436, 264, 3170, 2183, 2738, 281, 360, 1451, 4439, 294, 309, 440, 700, 1823, 307, 281, 1884, 264, 19127, 1436, 309, 1177, 380, 458, 437, 19127, 309, 7829, 1436, 264, 19127, 37761, 490, 1422, 11665, 281, 1422, 11665, 11, 558, 30, 407, 286, 478, 516, 281, 1884, 364, 12649, 3170, 46853, 1897, 1908, 2445, 1219, 483, 6455, 1013, 31890, 1902, 9838, 1569, 284, 11, 337, 1365, 708, 775, 309, 2736, 30], "avg_logprob": -0.41731770305583876, "compression_ratio": 1.8170731707317074, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1274.4499999999998, "end": 1274.85, "word": " So", "probability": 0.1597900390625}, {"start": 1274.85, "end": 1275.03, "word": " I'm", "probability": 0.47052001953125}, {"start": 1275.03, "end": 1275.03, "word": " going", "probability": 0.7021484375}, {"start": 1275.03, "end": 1275.03, "word": " to", "probability": 0.96435546875}, {"start": 1275.03, "end": 1275.15, "word": " put", "probability": 0.59130859375}, {"start": 1275.15, "end": 1275.23, "word": " it", "probability": 0.73876953125}, {"start": 1275.23, "end": 1275.33, "word": " in", "probability": 0.80810546875}, {"start": 1275.33, "end": 1275.41, "word": " the", "probability": 0.59228515625}, {"start": 1275.41, "end": 1275.99, "word": " superclass,", "probability": 0.818603515625}, {"start": 1276.07, "end": 1276.25, "word": " it's", "probability": 0.5328369140625}, {"start": 1276.25, "end": 1276.45, "word": " called", "probability": 0.73779296875}, {"start": 1276.45, "end": 1276.83, "word": " social", "probability": 0.61181640625}, {"start": 1276.83, "end": 1277.41, "word": " network", "probability": 0.8525390625}, {"start": 1277.41, "end": 1278.51, "word": " poster", "probability": 0.833984375}, {"start": 1278.51, "end": 1279.89, "word": " And", "probability": 0.27099609375}, {"start": 1279.89, "end": 1280.07, "word": " this", "probability": 0.4423828125}, {"start": 1280.07, "end": 1280.07, "word": " is", "probability": 0.9033203125}, {"start": 1280.07, "end": 1280.17, "word": " the", "probability": 0.76416015625}, {"start": 1280.17, "end": 1280.41, "word": " method", "probability": 0.7265625}, {"start": 1280.41, "end": 1280.75, "word": " post", "probability": 0.71630859375}, {"start": 1280.75, "end": 1283.15, "word": " Because", "probability": 0.56298828125}, {"start": 1283.15, "end": 1283.27, "word": " the", "probability": 0.73974609375}, {"start": 1283.27, "end": 1283.51, "word": " method", "probability": 0.8935546875}, {"start": 1283.51, "end": 1283.83, "word": " post", "probability": 0.87353515625}, {"start": 1283.83, "end": 1284.03, "word": " wants", "probability": 0.1318359375}, {"start": 1284.03, "end": 1284.07, "word": " to", "probability": 0.96337890625}, {"start": 1284.07, "end": 1284.23, "word": " do", "probability": 0.4521484375}, {"start": 1284.23, "end": 1285.05, "word": " four", "probability": 0.50537109375}, {"start": 1285.05, "end": 1285.45, "word": " steps", "probability": 0.78955078125}, {"start": 1285.45, "end": 1285.47, "word": " in", "probability": 0.42333984375}, {"start": 1285.47, "end": 1285.47, "word": " it", "probability": 0.91943359375}, {"start": 1285.47, "end": 1285.65, "word": " The", "probability": 0.60498046875}, {"start": 1285.65, "end": 1285.69, "word": " first", "probability": 0.88134765625}, {"start": 1285.69, "end": 1285.89, "word": " step", "probability": 0.91162109375}, {"start": 1285.89, "end": 1286.23, "word": " is", "probability": 0.6962890625}, {"start": 1286.23, "end": 1286.27, "word": " to", "probability": 0.77734375}, {"start": 1286.27, "end": 1286.45, "word": " create", "probability": 0.84130859375}, {"start": 1286.45, "end": 1286.61, "word": " the", "probability": 0.6806640625}, {"start": 1286.61, "end": 1287.03, "word": " connector", "probability": 0.802734375}, {"start": 1287.03, "end": 1288.57, "word": " Because", "probability": 0.826171875}, {"start": 1288.57, "end": 1288.73, "word": " it", "probability": 0.5439453125}, {"start": 1288.73, "end": 1288.85, "word": " doesn't", "probability": 0.84423828125}, {"start": 1288.85, "end": 1289.11, "word": " know", "probability": 0.87646484375}, {"start": 1289.11, "end": 1289.27, "word": " what", "probability": 0.59619140625}, {"start": 1289.27, "end": 1289.65, "word": " connector", "probability": 0.5771484375}, {"start": 1289.65, "end": 1289.79, "word": " it", "probability": 0.32470703125}, {"start": 1289.79, "end": 1289.99, "word": " creates", "probability": 0.235595703125}, {"start": 1289.99, "end": 1290.17, "word": " Because", "probability": 0.3671875}, {"start": 1290.17, "end": 1290.29, "word": " the", "probability": 0.56689453125}, {"start": 1290.29, "end": 1290.57, "word": " connector", "probability": 0.89111328125}, {"start": 1290.57, "end": 1290.89, "word": " differs", "probability": 0.54345703125}, {"start": 1290.89, "end": 1291.17, "word": " from", "probability": 0.83740234375}, {"start": 1291.17, "end": 1291.71, "word": " subclass", "probability": 0.907958984375}, {"start": 1291.71, "end": 1291.85, "word": " to", "probability": 0.91015625}, {"start": 1291.85, "end": 1292.31, "word": " subclass,", "probability": 0.97509765625}, {"start": 1292.37, "end": 1292.59, "word": " right?", "probability": 0.84912109375}, {"start": 1293.11, "end": 1293.25, "word": " So", "probability": 0.93603515625}, {"start": 1293.25, "end": 1293.41, "word": " I'm", "probability": 0.86669921875}, {"start": 1293.41, "end": 1293.41, "word": " going", "probability": 0.93603515625}, {"start": 1293.41, "end": 1293.41, "word": " to", "probability": 0.9677734375}, {"start": 1293.41, "end": 1293.55, "word": " create", "probability": 0.39306640625}, {"start": 1293.55, "end": 1293.67, "word": " an", "probability": 0.55517578125}, {"start": 1293.67, "end": 1293.97, "word": " abstract", "probability": 0.89990234375}, {"start": 1293.97, "end": 1294.41, "word": " method", "probability": 0.94287109375}, {"start": 1294.41, "end": 1296.13, "word": " Abstract", "probability": 0.61187744140625}, {"start": 1296.13, "end": 1296.55, "word": " public", "probability": 0.8857421875}, {"start": 1296.55, "end": 1297.17, "word": " function", "probability": 0.9765625}, {"start": 1297.17, "end": 1297.51, "word": " called", "probability": 0.328125}, {"start": 1297.51, "end": 1299.37, "word": " getSocialNetworkConnector,", "probability": 0.825439453125}, {"start": 1299.37, "end": 1299.59, "word": " for", "probability": 0.84716796875}, {"start": 1299.59, "end": 1299.79, "word": " example", "probability": 0.94482421875}, {"start": 1299.79, "end": 1300.39, "word": " What", "probability": 0.552734375}, {"start": 1300.39, "end": 1300.47, "word": " does", "probability": 0.398681640625}, {"start": 1300.47, "end": 1300.59, "word": " it", "probability": 0.884765625}, {"start": 1300.59, "end": 1300.81, "word": " return?", "probability": 0.60546875}], "temperature": 1.0}, {"id": 51, "seek": 132085, "start": 1302.23, "end": 1320.85, "text": "In the php, I go back to the social network connector, and I get the social network from the post, and I get the social network from the post, and I get the social network from the post, and I get the social network from the post, and I get the social network from the post, and I get the social network from the post, and I get the social network from the post,", "tokens": [4575, 264, 903, 79, 11, 286, 352, 646, 281, 264, 2093, 3209, 19127, 11, 293, 286, 483, 264, 2093, 3209, 490, 264, 2183, 11, 293, 286, 483, 264, 2093, 3209, 490, 264, 2183, 11, 293, 286, 483, 264, 2093, 3209, 490, 264, 2183, 11, 293, 286, 483, 264, 2093, 3209, 490, 264, 2183, 11, 293, 286, 483, 264, 2093, 3209, 490, 264, 2183, 11, 293, 286, 483, 264, 2093, 3209, 490, 264, 2183, 11, 293, 286, 483, 264, 2093, 3209, 490, 264, 2183, 11], "avg_logprob": -0.6154411848853616, "compression_ratio": 4.469135802469136, "no_speech_prob": 4.649162292480469e-06, "words": [{"start": 1302.23, "end": 1302.73, "word": "In", "probability": 0.1842041015625}, {"start": 1302.73, "end": 1302.83, "word": " the", "probability": 0.56298828125}, {"start": 1302.83, "end": 1303.27, "word": " php,", "probability": 0.58099365234375}, {"start": 1303.71, "end": 1304.15, "word": " I", "probability": 0.311279296875}, {"start": 1304.15, "end": 1304.15, "word": " go", "probability": 0.25341796875}, {"start": 1304.15, "end": 1304.37, "word": " back", "probability": 0.796875}, {"start": 1304.37, "end": 1305.05, "word": " to", "probability": 0.83642578125}, {"start": 1305.05, "end": 1305.27, "word": " the", "probability": 0.3740234375}, {"start": 1305.27, "end": 1306.45, "word": " social", "probability": 0.31884765625}, {"start": 1306.45, "end": 1307.07, "word": " network", "probability": 0.95947265625}, {"start": 1307.07, "end": 1307.97, "word": " connector,", "probability": 0.4716796875}, {"start": 1308.21, "end": 1308.71, "word": " and", "probability": 0.220947265625}, {"start": 1308.71, "end": 1308.71, "word": " I", "probability": 0.301025390625}, {"start": 1308.71, "end": 1308.71, "word": " get", "probability": 0.18701171875}, {"start": 1308.71, "end": 1309.33, "word": " the", "probability": 0.26171875}, {"start": 1309.33, "end": 1309.51, "word": " social", "probability": 0.41943359375}, {"start": 1309.51, "end": 1309.79, "word": " network", "probability": 0.95849609375}, {"start": 1309.79, "end": 1310.11, "word": " from", "probability": 0.1737060546875}, {"start": 1310.11, "end": 1311.61, "word": " the", "probability": 0.499267578125}, {"start": 1311.61, "end": 1311.65, "word": " post,", "probability": 0.375732421875}, {"start": 1312.33, "end": 1313.43, "word": " and", "probability": 0.2332763671875}, {"start": 1313.43, "end": 1313.43, "word": " I", "probability": 0.5703125}, {"start": 1313.43, "end": 1313.43, "word": " get", "probability": 0.17041015625}, {"start": 1313.43, "end": 1314.05, "word": " the", "probability": 0.375732421875}, {"start": 1314.05, "end": 1314.21, "word": " social", "probability": 0.298095703125}, {"start": 1314.21, "end": 1314.65, "word": " network", "probability": 0.9501953125}, {"start": 1314.65, "end": 1315.05, "word": " from", "probability": 0.461181640625}, {"start": 1315.05, "end": 1315.35, "word": " the", "probability": 0.29541015625}, {"start": 1315.35, "end": 1315.69, "word": " post,", "probability": 0.70654296875}, {"start": 1316.05, "end": 1316.05, "word": " and", "probability": 0.50146484375}, {"start": 1316.05, "end": 1316.55, "word": " I", "probability": 0.64453125}, {"start": 1316.55, "end": 1316.77, "word": " get", "probability": 0.183349609375}, {"start": 1316.77, "end": 1317.45, "word": " the", "probability": 0.47900390625}, {"start": 1317.45, "end": 1317.71, "word": " social", "probability": 0.31787109375}, {"start": 1317.71, "end": 1317.71, "word": " network", "probability": 0.958984375}, {"start": 1317.71, "end": 1317.83, "word": " from", "probability": 0.399169921875}, {"start": 1317.83, "end": 1317.93, "word": " the", "probability": 0.8525390625}, {"start": 1317.93, "end": 1318.27, "word": " post,", "probability": 0.822265625}, {"start": 1318.27, "end": 1318.27, "word": " and", "probability": 0.6513671875}, {"start": 1318.27, "end": 1318.27, "word": " I", "probability": 0.67578125}, {"start": 1318.27, "end": 1318.27, "word": " get", "probability": 0.316650390625}, {"start": 1318.27, "end": 1318.27, "word": " the", "probability": 0.6884765625}, {"start": 1318.27, "end": 1318.27, "word": " social", "probability": 0.5751953125}, {"start": 1318.27, "end": 1318.27, "word": " network", "probability": 0.97021484375}, {"start": 1318.27, "end": 1318.27, "word": " from", "probability": 0.755859375}, {"start": 1318.27, "end": 1318.27, "word": " the", "probability": 0.90673828125}, {"start": 1318.27, "end": 1318.27, "word": " post,", "probability": 0.88525390625}, {"start": 1318.27, "end": 1318.37, "word": " and", "probability": 0.75830078125}, {"start": 1318.37, "end": 1318.51, "word": " I", "probability": 0.75537109375}, {"start": 1318.51, "end": 1318.75, "word": " get", "probability": 0.59912109375}, {"start": 1318.75, "end": 1318.83, "word": " the", "probability": 0.8466796875}, {"start": 1318.83, "end": 1319.45, "word": " social", "probability": 0.81298828125}, {"start": 1319.45, "end": 1319.45, "word": " network", "probability": 0.9736328125}, {"start": 1319.45, "end": 1319.45, "word": " from", "probability": 0.84716796875}, {"start": 1319.45, "end": 1319.59, "word": " the", "probability": 0.91748046875}, {"start": 1319.59, "end": 1319.59, "word": " post,", "probability": 0.9111328125}, {"start": 1319.59, "end": 1319.83, "word": " and", "probability": 0.83203125}, {"start": 1319.83, "end": 1319.83, "word": " I", "probability": 0.84814453125}, {"start": 1319.83, "end": 1319.93, "word": " get", "probability": 0.83447265625}, {"start": 1319.93, "end": 1320.09, "word": " the", "probability": 0.890625}, {"start": 1320.09, "end": 1320.15, "word": " social", "probability": 0.87890625}, {"start": 1320.15, "end": 1320.15, "word": " network", "probability": 0.974609375}, {"start": 1320.15, "end": 1320.15, "word": " from", "probability": 0.8701171875}, {"start": 1320.15, "end": 1320.15, "word": " the", "probability": 0.921875}, {"start": 1320.15, "end": 1320.15, "word": " post,", "probability": 0.92578125}, {"start": 1320.59, "end": 1320.59, "word": " and", "probability": 0.8740234375}, {"start": 1320.59, "end": 1320.59, "word": " I", "probability": 0.90966796875}, {"start": 1320.59, "end": 1320.83, "word": " get", "probability": 0.91552734375}, {"start": 1320.83, "end": 1320.85, "word": " the", "probability": 0.9033203125}, {"start": 1320.85, "end": 1320.85, "word": " social", "probability": 0.8974609375}, {"start": 1320.85, "end": 1320.85, "word": " network", "probability": 0.9755859375}, {"start": 1320.85, "end": 1320.85, "word": " from", "probability": 0.88037109375}, {"start": 1320.85, "end": 1320.85, "word": " the", "probability": 0.92578125}, {"start": 1320.85, "end": 1320.85, "word": " post,", "probability": 0.931640625}], "temperature": 1.0}, {"id": 52, "seek": 134901, "start": 1321.87, "end": 1349.01, "text": " Logout. These are fixed steps that must be followed. Everyone must follow them. What differs from this step is that I entrust it to the subclasses through the abstract method. Because these subclasses, for example, this Facebook poster is made to extend to a social network poster, okay? It is required that it only implement to whom? To get social network, which determines what kind of connector it wants to use. Facebook connector. And this, for example,", "tokens": [10824, 346, 13, 1981, 366, 6806, 4439, 300, 1633, 312, 6263, 13, 5198, 1633, 1524, 552, 13, 708, 37761, 490, 341, 1823, 307, 300, 286, 8041, 381, 309, 281, 264, 1422, 11665, 279, 807, 264, 12649, 3170, 13, 1436, 613, 1422, 11665, 279, 11, 337, 1365, 11, 341, 4384, 17171, 307, 1027, 281, 10101, 281, 257, 2093, 3209, 17171, 11, 1392, 30, 467, 307, 4739, 300, 309, 787, 4445, 281, 7101, 30, 1407, 483, 2093, 3209, 11, 597, 24799, 437, 733, 295, 19127, 309, 2738, 281, 764, 13, 4384, 19127, 13, 400, 341, 11, 337, 1365, 11], "avg_logprob": -0.5347576609679631, "compression_ratio": 1.6962962962962962, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 1321.87, "end": 1322.31, "word": " Logout.", "probability": 0.45892333984375}, {"start": 1322.53, "end": 1322.77, "word": " These", "probability": 0.560546875}, {"start": 1322.77, "end": 1323.09, "word": " are", "probability": 0.7138671875}, {"start": 1323.09, "end": 1323.43, "word": " fixed", "probability": 0.1175537109375}, {"start": 1323.43, "end": 1323.45, "word": " steps", "probability": 0.83544921875}, {"start": 1323.45, "end": 1323.63, "word": " that", "probability": 0.49072265625}, {"start": 1323.63, "end": 1323.77, "word": " must", "probability": 0.1431884765625}, {"start": 1323.77, "end": 1323.85, "word": " be", "probability": 0.5205078125}, {"start": 1323.85, "end": 1324.03, "word": " followed.", "probability": 0.5400390625}, {"start": 1324.11, "end": 1324.23, "word": " Everyone", "probability": 0.478759765625}, {"start": 1324.23, "end": 1324.45, "word": " must", "probability": 0.55224609375}, {"start": 1324.45, "end": 1324.75, "word": " follow", "probability": 0.5048828125}, {"start": 1324.75, "end": 1324.97, "word": " them.", "probability": 0.6728515625}, {"start": 1325.43, "end": 1325.65, "word": " What", "probability": 0.5166015625}, {"start": 1325.65, "end": 1325.87, "word": " differs", "probability": 0.284912109375}, {"start": 1325.87, "end": 1326.05, "word": " from", "probability": 0.5341796875}, {"start": 1326.05, "end": 1326.05, "word": " this", "probability": 0.49755859375}, {"start": 1326.05, "end": 1326.31, "word": " step", "probability": 0.85693359375}, {"start": 1326.31, "end": 1326.79, "word": " is", "probability": 0.65966796875}, {"start": 1326.79, "end": 1326.85, "word": " that", "probability": 0.66455078125}, {"start": 1326.85, "end": 1327.03, "word": " I", "probability": 0.919921875}, {"start": 1327.03, "end": 1327.53, "word": " entrust", "probability": 0.531768798828125}, {"start": 1327.53, "end": 1327.61, "word": " it", "probability": 0.439697265625}, {"start": 1327.61, "end": 1327.69, "word": " to", "probability": 0.95654296875}, {"start": 1327.69, "end": 1327.79, "word": " the", "probability": 0.52392578125}, {"start": 1327.79, "end": 1329.05, "word": " subclasses", "probability": 0.8251953125}, {"start": 1329.05, "end": 1329.39, "word": " through", "probability": 0.51806640625}, {"start": 1329.39, "end": 1329.63, "word": " the", "probability": 0.5517578125}, {"start": 1329.63, "end": 1330.13, "word": " abstract", "probability": 0.76220703125}, {"start": 1330.13, "end": 1331.21, "word": " method.", "probability": 0.95703125}, {"start": 1331.65, "end": 1331.81, "word": " Because", "probability": 0.44970703125}, {"start": 1331.81, "end": 1332.05, "word": " these", "probability": 0.763671875}, {"start": 1332.05, "end": 1332.85, "word": " subclasses,", "probability": 0.9482421875}, {"start": 1332.93, "end": 1333.01, "word": " for", "probability": 0.89697265625}, {"start": 1333.01, "end": 1333.23, "word": " example,", "probability": 0.92529296875}, {"start": 1333.85, "end": 1334.05, "word": " this", "probability": 0.6943359375}, {"start": 1334.05, "end": 1334.45, "word": " Facebook", "probability": 0.55419921875}, {"start": 1334.45, "end": 1334.87, "word": " poster", "probability": 0.6806640625}, {"start": 1334.87, "end": 1334.97, "word": " is", "probability": 0.283203125}, {"start": 1334.97, "end": 1335.05, "word": " made", "probability": 0.2220458984375}, {"start": 1335.05, "end": 1335.31, "word": " to", "probability": 0.3544921875}, {"start": 1335.31, "end": 1335.63, "word": " extend", "probability": 0.833984375}, {"start": 1335.63, "end": 1335.95, "word": " to", "probability": 0.81396484375}, {"start": 1335.95, "end": 1336.01, "word": " a", "probability": 0.56884765625}, {"start": 1336.01, "end": 1336.19, "word": " social", "probability": 0.93017578125}, {"start": 1336.19, "end": 1336.73, "word": " network", "probability": 0.93359375}, {"start": 1336.73, "end": 1337.83, "word": " poster,", "probability": 0.70556640625}, {"start": 1338.39, "end": 1338.69, "word": " okay?", "probability": 0.420654296875}, {"start": 1339.55, "end": 1339.57, "word": " It", "probability": 0.57763671875}, {"start": 1339.57, "end": 1339.63, "word": " is", "probability": 0.7119140625}, {"start": 1339.63, "end": 1339.85, "word": " required", "probability": 0.443359375}, {"start": 1339.85, "end": 1340.01, "word": " that", "probability": 0.5400390625}, {"start": 1340.01, "end": 1340.15, "word": " it", "probability": 0.67333984375}, {"start": 1340.15, "end": 1340.29, "word": " only", "probability": 0.4375}, {"start": 1340.29, "end": 1340.85, "word": " implement", "probability": 0.5244140625}, {"start": 1340.85, "end": 1341.21, "word": " to", "probability": 0.5048828125}, {"start": 1341.21, "end": 1341.37, "word": " whom?", "probability": 0.876953125}, {"start": 1341.81, "end": 1342.03, "word": " To", "probability": 0.78125}, {"start": 1342.03, "end": 1342.15, "word": " get", "probability": 0.529296875}, {"start": 1342.15, "end": 1342.43, "word": " social", "probability": 0.55419921875}, {"start": 1342.43, "end": 1342.93, "word": " network,", "probability": 0.9296875}, {"start": 1343.21, "end": 1343.47, "word": " which", "probability": 0.7041015625}, {"start": 1343.47, "end": 1343.89, "word": " determines", "probability": 0.63720703125}, {"start": 1343.89, "end": 1344.11, "word": " what", "probability": 0.75732421875}, {"start": 1344.11, "end": 1344.23, "word": " kind", "probability": 0.6142578125}, {"start": 1344.23, "end": 1344.33, "word": " of", "probability": 0.97216796875}, {"start": 1344.33, "end": 1344.75, "word": " connector", "probability": 0.6884765625}, {"start": 1344.75, "end": 1344.89, "word": " it", "probability": 0.62646484375}, {"start": 1344.89, "end": 1345.07, "word": " wants", "probability": 0.3818359375}, {"start": 1345.07, "end": 1345.13, "word": " to", "probability": 0.9580078125}, {"start": 1345.13, "end": 1345.47, "word": " use.", "probability": 0.87890625}, {"start": 1346.01, "end": 1346.45, "word": " Facebook", "probability": 0.40087890625}, {"start": 1346.45, "end": 1347.93, "word": " connector.", "probability": 0.62548828125}, {"start": 1348.15, "end": 1348.55, "word": " And", "probability": 0.81884765625}, {"start": 1348.55, "end": 1348.69, "word": " this,", "probability": 0.75146484375}, {"start": 1348.73, "end": 1348.89, "word": " for", "probability": 0.94970703125}, {"start": 1348.89, "end": 1349.01, "word": " example,", "probability": 0.96875}], "temperature": 1.0}, {"id": 53, "seek": 137924, "start": 1350.64, "end": 1379.24, "text": " Linked-in poster, get social network, it should also have a linked-in connector. Okay? So it's the same example. I got it on the internet, it's in the PHP, but when I explained it to you, I explained it in Java. Okay, guys? Okay, this way we have completed the method factor. Before we enter the new pattern design, there is a duty that we have to take. Okay, guys?", "tokens": [19322, 12, 259, 17171, 11, 483, 2093, 3209, 11, 309, 820, 611, 362, 257, 9408, 12, 259, 19127, 13, 1033, 30, 407, 309, 311, 264, 912, 1365, 13, 286, 658, 309, 322, 264, 4705, 11, 309, 311, 294, 264, 47298, 11, 457, 562, 286, 8825, 309, 281, 291, 11, 286, 8825, 309, 294, 10745, 13, 1033, 11, 1074, 30, 1033, 11, 341, 636, 321, 362, 7365, 264, 3170, 5952, 13, 4546, 321, 3242, 264, 777, 5102, 1715, 11, 456, 307, 257, 9776, 300, 321, 362, 281, 747, 13, 1033, 11, 1074, 30], "avg_logprob": -0.579973131097773, "compression_ratio": 1.6266666666666667, "no_speech_prob": 2.9206275939941406e-06, "words": [{"start": 1350.64, "end": 1351.0, "word": " Linked", "probability": 0.498291015625}, {"start": 1351.0, "end": 1351.26, "word": "-in", "probability": 0.64306640625}, {"start": 1351.26, "end": 1351.7, "word": " poster,", "probability": 0.7099609375}, {"start": 1352.72, "end": 1352.82, "word": " get", "probability": 0.70947265625}, {"start": 1352.82, "end": 1353.12, "word": " social", "probability": 0.869140625}, {"start": 1353.12, "end": 1353.72, "word": " network,", "probability": 0.92724609375}, {"start": 1354.1, "end": 1354.36, "word": " it", "probability": 0.0826416015625}, {"start": 1354.36, "end": 1354.6, "word": " should", "probability": 0.306396484375}, {"start": 1354.6, "end": 1354.62, "word": " also", "probability": 0.4423828125}, {"start": 1354.62, "end": 1355.02, "word": " have", "probability": 0.2919921875}, {"start": 1355.02, "end": 1355.68, "word": " a", "probability": 0.451904296875}, {"start": 1355.68, "end": 1356.5, "word": " linked", "probability": 0.484375}, {"start": 1356.5, "end": 1356.82, "word": "-in", "probability": 0.939208984375}, {"start": 1356.82, "end": 1356.96, "word": " connector.", "probability": 0.548828125}, {"start": 1357.4, "end": 1357.82, "word": " Okay?", "probability": 0.135986328125}, {"start": 1358.26, "end": 1358.52, "word": " So", "probability": 0.50830078125}, {"start": 1358.52, "end": 1358.68, "word": " it's", "probability": 0.47802734375}, {"start": 1358.68, "end": 1358.88, "word": " the", "probability": 0.80078125}, {"start": 1358.88, "end": 1358.88, "word": " same", "probability": 0.89990234375}, {"start": 1358.88, "end": 1359.34, "word": " example.", "probability": 0.8525390625}, {"start": 1359.86, "end": 1360.36, "word": " I", "probability": 0.91162109375}, {"start": 1360.36, "end": 1360.64, "word": " got", "probability": 0.1016845703125}, {"start": 1360.64, "end": 1360.98, "word": " it", "probability": 0.76025390625}, {"start": 1360.98, "end": 1361.04, "word": " on", "probability": 0.302490234375}, {"start": 1361.04, "end": 1361.12, "word": " the", "probability": 0.771484375}, {"start": 1361.12, "end": 1361.42, "word": " internet,", "probability": 0.7939453125}, {"start": 1361.46, "end": 1361.58, "word": " it's", "probability": 0.71337890625}, {"start": 1361.58, "end": 1361.86, "word": " in", "probability": 0.2235107421875}, {"start": 1361.86, "end": 1362.0, "word": " the", "probability": 0.63134765625}, {"start": 1362.0, "end": 1362.32, "word": " PHP,", "probability": 0.595703125}, {"start": 1362.54, "end": 1362.78, "word": " but", "probability": 0.8427734375}, {"start": 1362.78, "end": 1363.06, "word": " when", "probability": 0.65380859375}, {"start": 1363.06, "end": 1363.2, "word": " I", "probability": 0.97607421875}, {"start": 1363.2, "end": 1363.42, "word": " explained", "probability": 0.57861328125}, {"start": 1363.42, "end": 1364.0, "word": " it", "probability": 0.80908203125}, {"start": 1364.0, "end": 1364.24, "word": " to", "probability": 0.69140625}, {"start": 1364.24, "end": 1364.4, "word": " you,", "probability": 0.93310546875}, {"start": 1364.42, "end": 1364.48, "word": " I", "probability": 0.607421875}, {"start": 1364.48, "end": 1364.66, "word": " explained", "probability": 0.6865234375}, {"start": 1364.66, "end": 1364.78, "word": " it", "probability": 0.9140625}, {"start": 1364.78, "end": 1364.88, "word": " in", "probability": 0.64599609375}, {"start": 1364.88, "end": 1365.12, "word": " Java.", "probability": 0.84765625}, {"start": 1365.64, "end": 1366.04, "word": " Okay,", "probability": 0.76318359375}, {"start": 1366.1, "end": 1366.34, "word": " guys?", "probability": 0.72998046875}, {"start": 1368.0, "end": 1368.5, "word": " Okay,", "probability": 0.56689453125}, {"start": 1368.58, "end": 1368.72, "word": " this", "probability": 0.2451171875}, {"start": 1368.72, "end": 1368.72, "word": " way", "probability": 0.6142578125}, {"start": 1368.72, "end": 1368.98, "word": " we", "probability": 0.70361328125}, {"start": 1368.98, "end": 1368.98, "word": " have", "probability": 0.201171875}, {"start": 1368.98, "end": 1369.46, "word": " completed", "probability": 0.306884765625}, {"start": 1369.46, "end": 1372.12, "word": " the", "probability": 0.80615234375}, {"start": 1372.12, "end": 1373.86, "word": " method", "probability": 0.1943359375}, {"start": 1373.86, "end": 1373.88, "word": " factor.", "probability": 0.4990234375}, {"start": 1374.06, "end": 1374.2, "word": " Before", "probability": 0.63232421875}, {"start": 1374.2, "end": 1374.34, "word": " we", "probability": 0.59423828125}, {"start": 1374.34, "end": 1374.54, "word": " enter", "probability": 0.33447265625}, {"start": 1374.54, "end": 1374.72, "word": " the", "probability": 0.48876953125}, {"start": 1374.72, "end": 1374.8, "word": " new", "probability": 0.67578125}, {"start": 1374.8, "end": 1375.22, "word": " pattern", "probability": 0.388427734375}, {"start": 1375.22, "end": 1375.5, "word": " design,", "probability": 0.8515625}, {"start": 1375.78, "end": 1376.0, "word": " there", "probability": 0.55224609375}, {"start": 1376.0, "end": 1376.04, "word": " is", "probability": 0.74267578125}, {"start": 1376.04, "end": 1376.12, "word": " a", "probability": 0.73388671875}, {"start": 1376.12, "end": 1376.34, "word": " duty", "probability": 0.60546875}, {"start": 1376.34, "end": 1377.42, "word": " that", "probability": 0.54296875}, {"start": 1377.42, "end": 1377.44, "word": " we", "probability": 0.943359375}, {"start": 1377.44, "end": 1377.62, "word": " have", "probability": 0.2171630859375}, {"start": 1377.62, "end": 1377.62, "word": " to", "probability": 0.96875}, {"start": 1377.62, "end": 1377.88, "word": " take.", "probability": 0.249267578125}, {"start": 1378.58, "end": 1378.92, "word": " Okay,", "probability": 0.7998046875}, {"start": 1378.96, "end": 1379.24, "word": " guys?", "probability": 0.92578125}], "temperature": 1.0}, {"id": 54, "seek": 141730, "start": 1392.62, "end": 1417.3, "text": "Okay, the duty required was as follows Do you have a duty, did you find it? No, one, these are two questions in one duty Okay, that's it, if you understood the first one, solve the second one, okay? Same way Okay, did you find it? They tell you that you make a program, for example, for licenses or the ministry, for example, okay? They have data input models", "tokens": [8297, 11, 264, 9776, 4739, 390, 382, 10002, 1144, 291, 362, 257, 9776, 11, 630, 291, 915, 309, 30, 883, 11, 472, 11, 613, 366, 732, 1651, 294, 472, 9776, 1033, 11, 300, 311, 309, 11, 498, 291, 7320, 264, 700, 472, 11, 5039, 264, 1150, 472, 11, 1392, 30, 10635, 636, 1033, 11, 630, 291, 915, 309, 30, 814, 980, 291, 300, 291, 652, 257, 1461, 11, 337, 1365, 11, 337, 32821, 420, 264, 15024, 11, 337, 1365, 11, 1392, 30, 814, 362, 1412, 4846, 5245], "avg_logprob": -0.5166903510689735, "compression_ratio": 1.6933962264150944, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 1392.62, "end": 1392.94, "word": "Okay,", "probability": 0.2005615234375}, {"start": 1393.0, "end": 1393.12, "word": " the", "probability": 0.54248046875}, {"start": 1393.12, "end": 1393.34, "word": " duty", "probability": 0.2041015625}, {"start": 1393.34, "end": 1393.8, "word": " required", "probability": 0.407470703125}, {"start": 1393.8, "end": 1394.32, "word": " was", "probability": 0.76953125}, {"start": 1394.32, "end": 1394.6, "word": " as", "probability": 0.413330078125}, {"start": 1394.6, "end": 1395.48, "word": " follows", "probability": 0.85107421875}, {"start": 1395.48, "end": 1397.08, "word": " Do", "probability": 0.177001953125}, {"start": 1397.08, "end": 1397.22, "word": " you", "probability": 0.93994140625}, {"start": 1397.22, "end": 1397.44, "word": " have", "probability": 0.833984375}, {"start": 1397.44, "end": 1397.58, "word": " a", "probability": 0.6591796875}, {"start": 1397.58, "end": 1397.76, "word": " duty,", "probability": 0.9150390625}, {"start": 1397.86, "end": 1398.06, "word": " did", "probability": 0.66552734375}, {"start": 1398.06, "end": 1398.08, "word": " you", "probability": 0.96923828125}, {"start": 1398.08, "end": 1398.08, "word": " find", "probability": 0.52001953125}, {"start": 1398.08, "end": 1398.14, "word": " it?", "probability": 0.74072265625}, {"start": 1398.34, "end": 1398.66, "word": " No,", "probability": 0.38232421875}, {"start": 1399.98, "end": 1400.28, "word": " one,", "probability": 0.572265625}, {"start": 1400.36, "end": 1400.5, "word": " these", "probability": 0.37158203125}, {"start": 1400.5, "end": 1400.66, "word": " are", "probability": 0.79443359375}, {"start": 1400.66, "end": 1400.98, "word": " two", "probability": 0.87158203125}, {"start": 1400.98, "end": 1401.5, "word": " questions", "probability": 0.94921875}, {"start": 1401.5, "end": 1402.18, "word": " in", "probability": 0.2666015625}, {"start": 1402.18, "end": 1402.3, "word": " one", "probability": 0.8427734375}, {"start": 1402.3, "end": 1402.48, "word": " duty", "probability": 0.93310546875}, {"start": 1402.48, "end": 1403.06, "word": " Okay,", "probability": 0.457763671875}, {"start": 1403.76, "end": 1403.88, "word": " that's", "probability": 0.5540771484375}, {"start": 1403.88, "end": 1403.96, "word": " it,", "probability": 0.83837890625}, {"start": 1404.0, "end": 1404.08, "word": " if", "probability": 0.68359375}, {"start": 1404.08, "end": 1404.28, "word": " you", "probability": 0.9658203125}, {"start": 1404.28, "end": 1404.52, "word": " understood", "probability": 0.47021484375}, {"start": 1404.52, "end": 1404.64, "word": " the", "probability": 0.83984375}, {"start": 1404.64, "end": 1404.76, "word": " first", "probability": 0.8740234375}, {"start": 1404.76, "end": 1404.8, "word": " one,", "probability": 0.5458984375}, {"start": 1404.84, "end": 1405.1, "word": " solve", "probability": 0.378662109375}, {"start": 1405.1, "end": 1405.24, "word": " the", "probability": 0.908203125}, {"start": 1405.24, "end": 1405.4, "word": " second", "probability": 0.84375}, {"start": 1405.4, "end": 1405.44, "word": " one,", "probability": 0.71728515625}, {"start": 1406.08, "end": 1406.38, "word": " okay?", "probability": 0.5205078125}, {"start": 1406.56, "end": 1406.76, "word": " Same", "probability": 0.36474609375}, {"start": 1406.76, "end": 1407.16, "word": " way", "probability": 0.7265625}, {"start": 1407.16, "end": 1408.38, "word": " Okay,", "probability": 0.43505859375}, {"start": 1408.48, "end": 1408.64, "word": " did", "probability": 0.91796875}, {"start": 1408.64, "end": 1408.68, "word": " you", "probability": 0.97119140625}, {"start": 1408.68, "end": 1408.86, "word": " find", "probability": 0.861328125}, {"start": 1408.86, "end": 1409.02, "word": " it?", "probability": 0.427734375}, {"start": 1409.02, "end": 1409.22, "word": " They", "probability": 0.305419921875}, {"start": 1409.22, "end": 1409.44, "word": " tell", "probability": 0.416015625}, {"start": 1409.44, "end": 1409.6, "word": " you", "probability": 0.9541015625}, {"start": 1409.6, "end": 1409.64, "word": " that", "probability": 0.34033203125}, {"start": 1409.64, "end": 1409.78, "word": " you", "probability": 0.79638671875}, {"start": 1409.78, "end": 1409.94, "word": " make", "probability": 0.3388671875}, {"start": 1409.94, "end": 1410.06, "word": " a", "probability": 0.77734375}, {"start": 1410.06, "end": 1410.54, "word": " program,", "probability": 0.82861328125}, {"start": 1411.4, "end": 1411.9, "word": " for", "probability": 0.91748046875}, {"start": 1411.9, "end": 1412.14, "word": " example,", "probability": 0.9287109375}, {"start": 1412.3, "end": 1413.12, "word": " for", "probability": 0.90869140625}, {"start": 1413.12, "end": 1413.58, "word": " licenses", "probability": 0.25244140625}, {"start": 1413.58, "end": 1414.14, "word": " or", "probability": 0.70849609375}, {"start": 1414.14, "end": 1414.48, "word": " the", "probability": 0.5927734375}, {"start": 1414.48, "end": 1414.74, "word": " ministry,", "probability": 0.83251953125}, {"start": 1414.88, "end": 1414.92, "word": " for", "probability": 0.619140625}, {"start": 1414.92, "end": 1415.1, "word": " example,", "probability": 0.97216796875}, {"start": 1415.32, "end": 1415.56, "word": " okay?", "probability": 0.73974609375}, {"start": 1415.82, "end": 1415.86, "word": " They", "probability": 0.77734375}, {"start": 1415.86, "end": 1416.02, "word": " have", "probability": 0.93994140625}, {"start": 1416.02, "end": 1416.46, "word": " data", "probability": 0.26318359375}, {"start": 1416.46, "end": 1417.2, "word": " input", "probability": 0.36669921875}, {"start": 1417.2, "end": 1417.3, "word": " models", "probability": 0.74951171875}], "temperature": 1.0}, {"id": 55, "seek": 144689, "start": 1418.85, "end": 1446.89, "text": " Which is called Citizens Requests For example, there is a request to add a child, a request to prepare a passport, a request to apply for travel, and each person has a common data For example, here is a request to add a child, the name of the applicant, the identity number of the applicant, the title of the applicant, and then the name of the child, date of birth, and gender of the child, a request to renew the passport, there is also the name of the applicant, his identity number, his title, and then the number of the passport and date of completion, these are related to whom? The passport", "tokens": [3013, 307, 1219, 44120, 42029, 4409, 1171, 1365, 11, 456, 307, 257, 5308, 281, 909, 257, 1440, 11, 257, 5308, 281, 5940, 257, 24694, 11, 257, 5308, 281, 3079, 337, 3147, 11, 293, 1184, 954, 575, 257, 2689, 1412, 1171, 1365, 11, 510, 307, 257, 5308, 281, 909, 257, 1440, 11, 264, 1315, 295, 264, 30915, 11, 264, 6575, 1230, 295, 264, 30915, 11, 264, 4876, 295, 264, 30915, 11, 293, 550, 264, 1315, 295, 264, 1440, 11, 4002, 295, 3965, 11, 293, 7898, 295, 264, 1440, 11, 257, 5308, 281, 10162, 264, 24694, 11, 456, 307, 611, 264, 1315, 295, 264, 30915, 11, 702, 6575, 1230, 11, 702, 4876, 11, 293, 550, 264, 1230, 295, 264, 24694, 293, 4002, 295, 19372, 11, 613, 366, 4077, 281, 7101, 30, 440, 24694], "avg_logprob": -0.49526513932329236, "compression_ratio": 2.430894308943089, "no_speech_prob": 6.496906280517578e-06, "words": [{"start": 1418.8500000000001, "end": 1419.17, "word": " Which", "probability": 0.135986328125}, {"start": 1419.17, "end": 1419.49, "word": " is", "probability": 0.423828125}, {"start": 1419.49, "end": 1419.65, "word": " called", "probability": 0.390869140625}, {"start": 1419.65, "end": 1420.55, "word": " Citizens", "probability": 0.21240234375}, {"start": 1420.55, "end": 1420.55, "word": " Requests", "probability": 0.5989990234375}, {"start": 1420.55, "end": 1421.85, "word": " For", "probability": 0.1636962890625}, {"start": 1421.85, "end": 1421.99, "word": " example,", "probability": 0.8837890625}, {"start": 1421.99, "end": 1421.99, "word": " there", "probability": 0.68408203125}, {"start": 1421.99, "end": 1421.99, "word": " is", "probability": 0.62255859375}, {"start": 1421.99, "end": 1422.11, "word": " a", "probability": 0.80224609375}, {"start": 1422.11, "end": 1422.13, "word": " request", "probability": 0.80615234375}, {"start": 1422.13, "end": 1422.55, "word": " to", "probability": 0.332275390625}, {"start": 1422.55, "end": 1422.81, "word": " add", "probability": 0.7236328125}, {"start": 1422.81, "end": 1422.97, "word": " a", "probability": 0.54736328125}, {"start": 1422.97, "end": 1423.09, "word": " child,", "probability": 0.363525390625}, {"start": 1423.45, "end": 1423.51, "word": " a", "probability": 0.293212890625}, {"start": 1423.51, "end": 1423.61, "word": " request", "probability": 0.75927734375}, {"start": 1423.61, "end": 1423.79, "word": " to", "probability": 0.81005859375}, {"start": 1423.79, "end": 1424.09, "word": " prepare", "probability": 0.2041015625}, {"start": 1424.09, "end": 1424.25, "word": " a", "probability": 0.51953125}, {"start": 1424.25, "end": 1424.39, "word": " passport,", "probability": 0.6220703125}, {"start": 1424.85, "end": 1424.97, "word": " a", "probability": 0.52490234375}, {"start": 1424.97, "end": 1425.07, "word": " request", "probability": 0.88525390625}, {"start": 1425.07, "end": 1425.23, "word": " to", "probability": 0.88037109375}, {"start": 1425.23, "end": 1425.45, "word": " apply", "probability": 0.14697265625}, {"start": 1425.45, "end": 1425.59, "word": " for", "probability": 0.83154296875}, {"start": 1425.59, "end": 1425.85, "word": " travel,", "probability": 0.544921875}, {"start": 1426.47, "end": 1426.85, "word": " and", "probability": 0.244140625}, {"start": 1426.85, "end": 1427.35, "word": " each", "probability": 0.783203125}, {"start": 1427.35, "end": 1427.57, "word": " person", "probability": 0.52294921875}, {"start": 1427.57, "end": 1427.73, "word": " has", "probability": 0.912109375}, {"start": 1427.73, "end": 1427.77, "word": " a", "probability": 0.32373046875}, {"start": 1427.77, "end": 1427.77, "word": " common", "probability": 0.34814453125}, {"start": 1427.77, "end": 1428.15, "word": " data", "probability": 0.63134765625}, {"start": 1428.15, "end": 1429.57, "word": " For", "probability": 0.62451171875}, {"start": 1429.57, "end": 1430.11, "word": " example,", "probability": 0.95361328125}, {"start": 1430.25, "end": 1430.31, "word": " here", "probability": 0.302978515625}, {"start": 1430.31, "end": 1430.37, "word": " is", "probability": 0.5732421875}, {"start": 1430.37, "end": 1430.43, "word": " a", "probability": 0.23388671875}, {"start": 1430.43, "end": 1430.61, "word": " request", "probability": 0.9072265625}, {"start": 1430.61, "end": 1430.73, "word": " to", "probability": 0.76953125}, {"start": 1430.73, "end": 1430.73, "word": " add", "probability": 0.923828125}, {"start": 1430.73, "end": 1430.85, "word": " a", "probability": 0.92578125}, {"start": 1430.85, "end": 1431.03, "word": " child,", "probability": 0.841796875}, {"start": 1431.17, "end": 1431.23, "word": " the", "probability": 0.47607421875}, {"start": 1431.23, "end": 1431.37, "word": " name", "probability": 0.8173828125}, {"start": 1431.37, "end": 1431.51, "word": " of", "probability": 0.7900390625}, {"start": 1431.51, "end": 1431.55, "word": " the", "probability": 0.87548828125}, {"start": 1431.55, "end": 1431.73, "word": " applicant,", "probability": 0.396484375}, {"start": 1432.11, "end": 1432.19, "word": " the", "probability": 0.61181640625}, {"start": 1432.19, "end": 1432.51, "word": " identity", "probability": 0.279541015625}, {"start": 1432.51, "end": 1432.51, "word": " number", "probability": 0.8359375}, {"start": 1432.51, "end": 1432.69, "word": " of", "probability": 0.845703125}, {"start": 1432.69, "end": 1432.73, "word": " the", "probability": 0.92529296875}, {"start": 1432.73, "end": 1432.97, "word": " applicant,", "probability": 0.92333984375}, {"start": 1433.33, "end": 1433.35, "word": " the", "probability": 0.83056640625}, {"start": 1433.35, "end": 1433.55, "word": " title", "probability": 0.75537109375}, {"start": 1433.55, "end": 1433.69, "word": " of", "probability": 0.962890625}, {"start": 1433.69, "end": 1433.77, "word": " the", "probability": 0.92333984375}, {"start": 1433.77, "end": 1434.05, "word": " applicant,", "probability": 0.900390625}, {"start": 1434.73, "end": 1435.27, "word": " and", "probability": 0.5009765625}, {"start": 1435.27, "end": 1435.53, "word": " then", "probability": 0.77880859375}, {"start": 1435.53, "end": 1435.61, "word": " the", "probability": 0.8359375}, {"start": 1435.61, "end": 1435.77, "word": " name", "probability": 0.81298828125}, {"start": 1435.77, "end": 1435.87, "word": " of", "probability": 0.916015625}, {"start": 1435.87, "end": 1435.91, "word": " the", "probability": 0.91943359375}, {"start": 1435.91, "end": 1436.15, "word": " child,", "probability": 0.814453125}, {"start": 1436.35, "end": 1436.51, "word": " date", "probability": 0.2054443359375}, {"start": 1436.51, "end": 1436.65, "word": " of", "probability": 0.97802734375}, {"start": 1436.65, "end": 1436.81, "word": " birth,", "probability": 0.96240234375}, {"start": 1436.93, "end": 1437.01, "word": " and", "probability": 0.8271484375}, {"start": 1437.01, "end": 1437.17, "word": " gender", "probability": 0.321533203125}, {"start": 1437.17, "end": 1437.25, "word": " of", "probability": 0.89013671875}, {"start": 1437.25, "end": 1437.57, "word": " the", "probability": 0.8544921875}, {"start": 1437.57, "end": 1437.87, "word": " child,", "probability": 0.83837890625}, {"start": 1437.89, "end": 1438.23, "word": " a", "probability": 0.265625}, {"start": 1438.23, "end": 1438.37, "word": " request", "probability": 0.9404296875}, {"start": 1438.37, "end": 1438.51, "word": " to", "probability": 0.93994140625}, {"start": 1438.51, "end": 1438.67, "word": " renew", "probability": 0.9150390625}, {"start": 1438.67, "end": 1438.81, "word": " the", "probability": 0.3349609375}, {"start": 1438.81, "end": 1438.93, "word": " passport,", "probability": 0.8837890625}, {"start": 1439.57, "end": 1439.81, "word": " there", "probability": 0.70166015625}, {"start": 1439.81, "end": 1439.89, "word": " is", "probability": 0.892578125}, {"start": 1439.89, "end": 1440.17, "word": " also", "probability": 0.86669921875}, {"start": 1440.17, "end": 1440.39, "word": " the", "probability": 0.6435546875}, {"start": 1440.39, "end": 1440.49, "word": " name", "probability": 0.88427734375}, {"start": 1440.49, "end": 1440.65, "word": " of", "probability": 0.9638671875}, {"start": 1440.65, "end": 1441.03, "word": " the", "probability": 0.93017578125}, {"start": 1441.03, "end": 1441.03, "word": " applicant,", "probability": 0.9345703125}, {"start": 1441.35, "end": 1441.41, "word": " his", "probability": 0.484130859375}, {"start": 1441.41, "end": 1441.77, "word": " identity", "probability": 0.6689453125}, {"start": 1441.77, "end": 1441.77, "word": " number,", "probability": 0.94140625}, {"start": 1441.99, "end": 1442.01, "word": " his", "probability": 0.67138671875}, {"start": 1442.01, "end": 1442.37, "word": " title,", "probability": 0.9365234375}, {"start": 1443.45, "end": 1443.47, "word": " and", "probability": 0.720703125}, {"start": 1443.47, "end": 1443.71, "word": " then", "probability": 0.83251953125}, {"start": 1443.71, "end": 1443.85, "word": " the", "probability": 0.78515625}, {"start": 1443.85, "end": 1444.03, "word": " number", "probability": 0.62939453125}, {"start": 1444.03, "end": 1444.15, "word": " of", "probability": 0.8740234375}, {"start": 1444.15, "end": 1444.15, "word": " the", "probability": 0.67626953125}, {"start": 1444.15, "end": 1444.29, "word": " passport", "probability": 0.80322265625}, {"start": 1444.29, "end": 1444.73, "word": " and", "probability": 0.603515625}, {"start": 1444.73, "end": 1444.97, "word": " date", "probability": 0.444091796875}, {"start": 1444.97, "end": 1445.05, "word": " of", "probability": 0.96337890625}, {"start": 1445.05, "end": 1445.27, "word": " completion,", "probability": 0.281494140625}, {"start": 1445.41, "end": 1445.59, "word": " these", "probability": 0.29541015625}, {"start": 1445.59, "end": 1445.67, "word": " are", "probability": 0.56640625}, {"start": 1445.67, "end": 1445.95, "word": " related", "probability": 0.359130859375}, {"start": 1445.95, "end": 1446.15, "word": " to", "probability": 0.92919921875}, {"start": 1446.15, "end": 1446.37, "word": " whom?", "probability": 0.471923828125}, {"start": 1446.59, "end": 1446.71, "word": " The", "probability": 0.2445068359375}, {"start": 1446.71, "end": 1446.89, "word": " passport", "probability": 0.93408203125}], "temperature": 1.0}, {"id": 56, "seek": 146757, "start": 1448.27, "end": 1467.57, "text": " Identification is the same thing Notice in all applications You have to put the name of the applicant, his or her ID number and his or her address But there are different data Now, I am required to design in any way that I want for these three models", "tokens": [25905, 3774, 307, 264, 912, 551, 13428, 294, 439, 5821, 509, 362, 281, 829, 264, 1315, 295, 264, 30915, 11, 702, 420, 720, 7348, 1230, 293, 702, 420, 720, 2985, 583, 456, 366, 819, 1412, 823, 11, 286, 669, 4739, 281, 1715, 294, 604, 636, 300, 286, 528, 337, 613, 1045, 5245], "avg_logprob": -0.601415107835014, "compression_ratio": 1.5029940119760479, "no_speech_prob": 2.2649765014648438e-06, "words": [{"start": 1448.27, "end": 1448.83, "word": " Identification", "probability": 0.4315185546875}, {"start": 1448.83, "end": 1448.95, "word": " is", "probability": 0.80859375}, {"start": 1448.95, "end": 1449.15, "word": " the", "probability": 0.75830078125}, {"start": 1449.15, "end": 1449.15, "word": " same", "probability": 0.90087890625}, {"start": 1449.15, "end": 1449.57, "word": " thing", "probability": 0.60986328125}, {"start": 1449.57, "end": 1450.29, "word": " Notice", "probability": 0.5400390625}, {"start": 1450.29, "end": 1450.49, "word": " in", "probability": 0.4404296875}, {"start": 1450.49, "end": 1450.69, "word": " all", "probability": 0.7607421875}, {"start": 1450.69, "end": 1451.11, "word": " applications", "probability": 0.417724609375}, {"start": 1451.11, "end": 1452.61, "word": " You", "probability": 0.38427734375}, {"start": 1452.61, "end": 1452.81, "word": " have", "probability": 0.393798828125}, {"start": 1452.81, "end": 1452.89, "word": " to", "probability": 0.9599609375}, {"start": 1452.89, "end": 1453.11, "word": " put", "probability": 0.438232421875}, {"start": 1453.11, "end": 1453.19, "word": " the", "probability": 0.62353515625}, {"start": 1453.19, "end": 1453.33, "word": " name", "probability": 0.65673828125}, {"start": 1453.33, "end": 1453.75, "word": " of", "probability": 0.7978515625}, {"start": 1453.75, "end": 1453.75, "word": " the", "probability": 0.859375}, {"start": 1453.75, "end": 1453.75, "word": " applicant,", "probability": 0.5185546875}, {"start": 1454.11, "end": 1454.21, "word": " his", "probability": 0.273681640625}, {"start": 1454.21, "end": 1454.21, "word": " or", "probability": 0.226806640625}, {"start": 1454.21, "end": 1454.21, "word": " her", "probability": 0.98291015625}, {"start": 1454.21, "end": 1454.71, "word": " ID", "probability": 0.56396484375}, {"start": 1454.71, "end": 1454.77, "word": " number", "probability": 0.75732421875}, {"start": 1454.77, "end": 1454.87, "word": " and", "probability": 0.7353515625}, {"start": 1454.87, "end": 1454.91, "word": " his", "probability": 0.224365234375}, {"start": 1454.91, "end": 1454.91, "word": " or", "probability": 0.68505859375}, {"start": 1454.91, "end": 1454.91, "word": " her", "probability": 0.9736328125}, {"start": 1454.91, "end": 1455.19, "word": " address", "probability": 0.42041015625}, {"start": 1455.19, "end": 1457.15, "word": " But", "probability": 0.375}, {"start": 1457.15, "end": 1457.47, "word": " there", "probability": 0.63232421875}, {"start": 1457.47, "end": 1457.47, "word": " are", "probability": 0.91064453125}, {"start": 1457.47, "end": 1457.55, "word": " different", "probability": 0.623046875}, {"start": 1457.55, "end": 1457.73, "word": " data", "probability": 0.43212890625}, {"start": 1457.73, "end": 1460.13, "word": " Now,", "probability": 0.271728515625}, {"start": 1460.89, "end": 1460.89, "word": " I", "probability": 0.80224609375}, {"start": 1460.89, "end": 1460.99, "word": " am", "probability": 0.379638671875}, {"start": 1460.99, "end": 1461.31, "word": " required", "probability": 0.64404296875}, {"start": 1461.31, "end": 1462.73, "word": " to", "probability": 0.908203125}, {"start": 1462.73, "end": 1463.47, "word": " design", "probability": 0.86962890625}, {"start": 1463.47, "end": 1464.51, "word": " in", "probability": 0.35009765625}, {"start": 1464.51, "end": 1464.69, "word": " any", "probability": 0.54541015625}, {"start": 1464.69, "end": 1464.97, "word": " way", "probability": 0.8828125}, {"start": 1464.97, "end": 1465.07, "word": " that", "probability": 0.2298583984375}, {"start": 1465.07, "end": 1465.07, "word": " I", "probability": 0.70556640625}, {"start": 1465.07, "end": 1465.39, "word": " want", "probability": 0.607421875}, {"start": 1465.39, "end": 1466.83, "word": " for", "probability": 0.2181396484375}, {"start": 1466.83, "end": 1466.99, "word": " these", "probability": 0.453857421875}, {"start": 1466.99, "end": 1467.23, "word": " three", "probability": 0.7158203125}, {"start": 1467.23, "end": 1467.57, "word": " models", "probability": 0.5390625}], "temperature": 1.0}, {"id": 57, "seek": 149365, "start": 1469.69, "end": 1493.65, "text": "For the three models, each model must have all these fields Name of the student, ID number, title, and specific elements in each request And each request must have a safe key in the end When I click on it, it will create an object from each request So now, when you work, before you make the models, the faces, you go and make a class representing each request", "tokens": [12587, 264, 1045, 5245, 11, 1184, 2316, 1633, 362, 439, 613, 7909, 13866, 295, 264, 3107, 11, 7348, 1230, 11, 4876, 11, 293, 2685, 4959, 294, 1184, 5308, 400, 1184, 5308, 1633, 362, 257, 3273, 2141, 294, 264, 917, 1133, 286, 2052, 322, 309, 11, 309, 486, 1884, 364, 2657, 490, 1184, 5308, 407, 586, 11, 562, 291, 589, 11, 949, 291, 652, 264, 5245, 11, 264, 8475, 11, 291, 352, 293, 652, 257, 1508, 13460, 1184, 5308], "avg_logprob": -0.6337025361725047, "compression_ratio": 1.6589861751152073, "no_speech_prob": 5.424022674560547e-06, "words": [{"start": 1469.69, "end": 1469.91, "word": "For", "probability": 0.1109619140625}, {"start": 1469.91, "end": 1470.03, "word": " the", "probability": 0.28369140625}, {"start": 1470.03, "end": 1470.31, "word": " three", "probability": 0.55078125}, {"start": 1470.31, "end": 1470.75, "word": " models,", "probability": 0.63916015625}, {"start": 1471.01, "end": 1471.27, "word": " each", "probability": 0.5869140625}, {"start": 1471.27, "end": 1471.67, "word": " model", "probability": 0.77001953125}, {"start": 1471.67, "end": 1471.97, "word": " must", "probability": 0.31884765625}, {"start": 1471.97, "end": 1472.43, "word": " have", "probability": 0.50537109375}, {"start": 1472.43, "end": 1472.99, "word": " all", "probability": 0.548828125}, {"start": 1472.99, "end": 1473.51, "word": " these", "probability": 0.58740234375}, {"start": 1473.51, "end": 1473.51, "word": " fields", "probability": 0.734375}, {"start": 1473.51, "end": 1474.39, "word": " Name", "probability": 0.20068359375}, {"start": 1474.39, "end": 1474.57, "word": " of", "probability": 0.6474609375}, {"start": 1474.57, "end": 1474.57, "word": " the", "probability": 0.7431640625}, {"start": 1474.57, "end": 1474.57, "word": " student,", "probability": 0.26025390625}, {"start": 1475.13, "end": 1475.59, "word": " ID", "probability": 0.31591796875}, {"start": 1475.59, "end": 1475.75, "word": " number,", "probability": 0.461669921875}, {"start": 1475.79, "end": 1476.27, "word": " title,", "probability": 0.5537109375}, {"start": 1476.91, "end": 1476.91, "word": " and", "probability": 0.7451171875}, {"start": 1476.91, "end": 1477.69, "word": " specific", "probability": 0.1279296875}, {"start": 1477.69, "end": 1477.69, "word": " elements", "probability": 0.76806640625}, {"start": 1477.69, "end": 1478.35, "word": " in", "probability": 0.59912109375}, {"start": 1478.35, "end": 1478.55, "word": " each", "probability": 0.93603515625}, {"start": 1478.55, "end": 1478.83, "word": " request", "probability": 0.1148681640625}, {"start": 1478.83, "end": 1479.61, "word": " And", "probability": 0.33154296875}, {"start": 1479.61, "end": 1479.79, "word": " each", "probability": 0.630859375}, {"start": 1479.79, "end": 1480.01, "word": " request", "probability": 0.64501953125}, {"start": 1480.01, "end": 1480.17, "word": " must", "probability": 0.5439453125}, {"start": 1480.17, "end": 1480.17, "word": " have", "probability": 0.57080078125}, {"start": 1480.17, "end": 1480.77, "word": " a", "probability": 0.2381591796875}, {"start": 1480.77, "end": 1481.51, "word": " safe", "probability": 0.411865234375}, {"start": 1481.51, "end": 1481.51, "word": " key", "probability": 0.677734375}, {"start": 1481.51, "end": 1481.51, "word": " in", "probability": 0.162109375}, {"start": 1481.51, "end": 1481.51, "word": " the", "probability": 0.8935546875}, {"start": 1481.51, "end": 1481.51, "word": " end", "probability": 0.87353515625}, {"start": 1481.51, "end": 1482.45, "word": " When", "probability": 0.64111328125}, {"start": 1482.45, "end": 1482.59, "word": " I", "probability": 0.6982421875}, {"start": 1482.59, "end": 1482.77, "word": " click", "probability": 0.468017578125}, {"start": 1482.77, "end": 1482.97, "word": " on", "probability": 0.84716796875}, {"start": 1482.97, "end": 1483.11, "word": " it,", "probability": 0.9072265625}, {"start": 1483.31, "end": 1483.73, "word": " it", "probability": 0.50146484375}, {"start": 1483.73, "end": 1483.93, "word": " will", "probability": 0.339111328125}, {"start": 1483.93, "end": 1484.09, "word": " create", "probability": 0.76806640625}, {"start": 1484.09, "end": 1484.25, "word": " an", "probability": 0.83349609375}, {"start": 1484.25, "end": 1484.49, "word": " object", "probability": 0.974609375}, {"start": 1484.49, "end": 1484.71, "word": " from", "probability": 0.66162109375}, {"start": 1484.71, "end": 1484.97, "word": " each", "probability": 0.94287109375}, {"start": 1484.97, "end": 1485.19, "word": " request", "probability": 0.91162109375}, {"start": 1485.19, "end": 1485.37, "word": " So", "probability": 0.2509765625}, {"start": 1485.37, "end": 1485.77, "word": " now,", "probability": 0.6787109375}, {"start": 1486.41, "end": 1486.79, "word": " when", "probability": 0.50927734375}, {"start": 1486.79, "end": 1486.97, "word": " you", "probability": 0.95068359375}, {"start": 1486.97, "end": 1487.23, "word": " work,", "probability": 0.64404296875}, {"start": 1487.43, "end": 1487.81, "word": " before", "probability": 0.83056640625}, {"start": 1487.81, "end": 1488.01, "word": " you", "probability": 0.6728515625}, {"start": 1488.01, "end": 1488.23, "word": " make", "probability": 0.480224609375}, {"start": 1488.23, "end": 1488.35, "word": " the", "probability": 0.482421875}, {"start": 1488.35, "end": 1488.69, "word": " models,", "probability": 0.1650390625}, {"start": 1488.83, "end": 1488.85, "word": " the", "probability": 0.409912109375}, {"start": 1488.85, "end": 1489.31, "word": " faces,", "probability": 0.6533203125}, {"start": 1490.05, "end": 1490.11, "word": " you", "probability": 0.67236328125}, {"start": 1490.11, "end": 1490.27, "word": " go", "probability": 0.394287109375}, {"start": 1490.27, "end": 1490.41, "word": " and", "probability": 0.517578125}, {"start": 1490.41, "end": 1490.67, "word": " make", "probability": 0.65185546875}, {"start": 1490.67, "end": 1491.31, "word": " a", "probability": 0.9306640625}, {"start": 1491.31, "end": 1491.67, "word": " class", "probability": 0.96435546875}, {"start": 1491.67, "end": 1492.29, "word": " representing", "probability": 0.42578125}, {"start": 1492.29, "end": 1493.41, "word": " each", "probability": 0.94140625}, {"start": 1493.41, "end": 1493.65, "word": " request", "probability": 0.84326171875}], "temperature": 1.0}, {"id": 58, "seek": 150320, "start": 1495.94, "end": 1503.2, "text": "add baby request visa request", "tokens": [25224, 3186, 5308, 18589, 5308], "avg_logprob": -0.5725911259651184, "compression_ratio": 0.9666666666666667, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 1495.9399999999998, "end": 1497.34, "word": "add", "probability": 0.0904541015625}, {"start": 1497.34, "end": 1498.3, "word": " baby", "probability": 0.88330078125}, {"start": 1498.3, "end": 1499.34, "word": " request", "probability": 0.955078125}, {"start": 1499.34, "end": 1503.18, "word": " visa", "probability": 0.51708984375}, {"start": 1503.18, "end": 1503.2, "word": " request", "probability": 0.9609375}], "temperature": 1.0}, {"id": 59, "seek": 153750, "start": 1512.3, "end": 1537.5, "text": " Or applications, whatever you want, okay? And these represent the employee classes. We haven't come to models yet. You want to make classes that represent the object, okay? And these will be attributes within the class. Of course, once they join, there are three attributes that will be in the parent. Once you finish the classes of these, you want to go and make the faces.", "tokens": [1610, 5821, 11, 2035, 291, 528, 11, 1392, 30, 400, 613, 2906, 264, 10738, 5359, 13, 492, 2378, 380, 808, 281, 5245, 1939, 13, 509, 528, 281, 652, 5359, 300, 2906, 264, 2657, 11, 1392, 30, 400, 613, 486, 312, 17212, 1951, 264, 1508, 13, 2720, 1164, 11, 1564, 436, 3917, 11, 456, 366, 1045, 17212, 300, 486, 312, 294, 264, 2596, 13, 3443, 291, 2413, 264, 5359, 295, 613, 11, 291, 528, 281, 352, 293, 652, 264, 8475, 13], "avg_logprob": -0.5219907525144978, "compression_ratio": 1.7361111111111112, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1512.3, "end": 1512.54, "word": " Or", "probability": 0.1817626953125}, {"start": 1512.54, "end": 1513.1, "word": " applications,", "probability": 0.454833984375}, {"start": 1513.22, "end": 1513.32, "word": " whatever", "probability": 0.35302734375}, {"start": 1513.32, "end": 1513.56, "word": " you", "probability": 0.84912109375}, {"start": 1513.56, "end": 1513.58, "word": " want,", "probability": 0.6904296875}, {"start": 1513.92, "end": 1514.58, "word": " okay?", "probability": 0.302978515625}, {"start": 1515.46, "end": 1515.56, "word": " And", "probability": 0.2646484375}, {"start": 1515.56, "end": 1516.26, "word": " these", "probability": 0.430419921875}, {"start": 1516.26, "end": 1517.22, "word": " represent", "probability": 0.303955078125}, {"start": 1517.22, "end": 1517.66, "word": " the", "probability": 0.587890625}, {"start": 1517.66, "end": 1518.46, "word": " employee", "probability": 0.517578125}, {"start": 1518.46, "end": 1518.46, "word": " classes.", "probability": 0.81591796875}, {"start": 1519.06, "end": 1519.28, "word": " We", "probability": 0.8076171875}, {"start": 1519.28, "end": 1519.28, "word": " haven't", "probability": 0.66552734375}, {"start": 1519.28, "end": 1519.5, "word": " come", "probability": 0.177978515625}, {"start": 1519.5, "end": 1519.72, "word": " to", "probability": 0.65234375}, {"start": 1519.72, "end": 1520.32, "word": " models", "probability": 0.2423095703125}, {"start": 1520.32, "end": 1520.36, "word": " yet.", "probability": 0.91748046875}, {"start": 1520.84, "end": 1520.94, "word": " You", "probability": 0.92724609375}, {"start": 1520.94, "end": 1521.14, "word": " want", "probability": 0.466064453125}, {"start": 1521.14, "end": 1521.22, "word": " to", "probability": 0.95849609375}, {"start": 1521.22, "end": 1521.46, "word": " make", "probability": 0.64501953125}, {"start": 1521.46, "end": 1522.42, "word": " classes", "probability": 0.658203125}, {"start": 1522.42, "end": 1522.58, "word": " that", "probability": 0.6953125}, {"start": 1522.58, "end": 1522.94, "word": " represent", "probability": 0.67041015625}, {"start": 1522.94, "end": 1523.72, "word": " the", "probability": 0.5556640625}, {"start": 1523.72, "end": 1524.08, "word": " object,", "probability": 0.85595703125}, {"start": 1524.8, "end": 1525.0, "word": " okay?", "probability": 0.7626953125}, {"start": 1525.2, "end": 1525.3, "word": " And", "probability": 0.7841796875}, {"start": 1525.3, "end": 1525.48, "word": " these", "probability": 0.81005859375}, {"start": 1525.48, "end": 1525.64, "word": " will", "probability": 0.693359375}, {"start": 1525.64, "end": 1525.88, "word": " be", "probability": 0.92333984375}, {"start": 1525.88, "end": 1526.54, "word": " attributes", "probability": 0.943359375}, {"start": 1526.54, "end": 1526.92, "word": " within", "probability": 0.313720703125}, {"start": 1526.92, "end": 1527.08, "word": " the", "probability": 0.90087890625}, {"start": 1527.08, "end": 1527.34, "word": " class.", "probability": 0.88232421875}, {"start": 1527.46, "end": 1527.6, "word": " Of", "probability": 0.70556640625}, {"start": 1527.6, "end": 1527.72, "word": " course,", "probability": 0.96435546875}, {"start": 1527.84, "end": 1527.98, "word": " once", "probability": 0.1630859375}, {"start": 1527.98, "end": 1528.18, "word": " they", "probability": 0.7373046875}, {"start": 1528.18, "end": 1528.46, "word": " join,", "probability": 0.56787109375}, {"start": 1528.86, "end": 1529.56, "word": " there", "probability": 0.69287109375}, {"start": 1529.56, "end": 1529.66, "word": " are", "probability": 0.47119140625}, {"start": 1529.66, "end": 1529.94, "word": " three", "probability": 0.75146484375}, {"start": 1529.94, "end": 1530.52, "word": " attributes", "probability": 0.9365234375}, {"start": 1530.52, "end": 1530.62, "word": " that", "probability": 0.52197265625}, {"start": 1530.62, "end": 1530.68, "word": " will", "probability": 0.775390625}, {"start": 1530.68, "end": 1530.8, "word": " be", "probability": 0.921875}, {"start": 1530.8, "end": 1530.9, "word": " in", "probability": 0.80615234375}, {"start": 1530.9, "end": 1531.02, "word": " the", "probability": 0.8935546875}, {"start": 1531.02, "end": 1531.2, "word": " parent.", "probability": 0.95703125}, {"start": 1531.9, "end": 1532.24, "word": " Once", "probability": 0.167724609375}, {"start": 1532.24, "end": 1532.48, "word": " you", "probability": 0.87646484375}, {"start": 1532.48, "end": 1532.48, "word": " finish", "probability": 0.455078125}, {"start": 1532.48, "end": 1532.62, "word": " the", "probability": 0.7626953125}, {"start": 1532.62, "end": 1533.16, "word": " classes", "probability": 0.89599609375}, {"start": 1533.16, "end": 1534.2, "word": " of", "probability": 0.255859375}, {"start": 1534.2, "end": 1535.36, "word": " these,", "probability": 0.476318359375}, {"start": 1535.46, "end": 1535.5, "word": " you", "probability": 0.93408203125}, {"start": 1535.5, "end": 1535.64, "word": " want", "probability": 0.487060546875}, {"start": 1535.64, "end": 1535.78, "word": " to", "probability": 0.96728515625}, {"start": 1535.78, "end": 1535.86, "word": " go", "probability": 0.6591796875}, {"start": 1535.86, "end": 1536.1, "word": " and", "probability": 0.413818359375}, {"start": 1536.1, "end": 1536.46, "word": " make", "probability": 0.6220703125}, {"start": 1536.46, "end": 1537.22, "word": " the", "probability": 0.493896484375}, {"start": 1537.22, "end": 1537.5, "word": " faces.", "probability": 0.58837890625}], "temperature": 1.0}, {"id": 60, "seek": 156563, "start": 1538.43, "end": 1565.63, "text": "Factory methods have common and different elements. It does not need to design for each face in a single screen. We need to develop it. We need to use the factory method. That means you need to design for the common elements and use the abstract methods, the factory methods, so that the different elements can be designed in the subclasses. And there should be a safe button. You press it.", "tokens": [37, 578, 827, 7150, 362, 2689, 293, 819, 4959, 13, 467, 775, 406, 643, 281, 1715, 337, 1184, 1851, 294, 257, 2167, 2568, 13, 492, 643, 281, 1499, 309, 13, 492, 643, 281, 764, 264, 9265, 3170, 13, 663, 1355, 291, 643, 281, 1715, 337, 264, 2689, 4959, 293, 764, 264, 12649, 7150, 11, 264, 9265, 7150, 11, 370, 300, 264, 819, 4959, 393, 312, 4761, 294, 264, 1422, 11665, 279, 13, 400, 456, 820, 312, 257, 3273, 2960, 13, 509, 1886, 309, 13], "avg_logprob": -0.6661764621734619, "compression_ratio": 1.8660287081339713, "no_speech_prob": 1.5795230865478516e-05, "words": [{"start": 1538.43, "end": 1538.97, "word": "Factory", "probability": 0.43060302734375}, {"start": 1538.97, "end": 1539.15, "word": " methods", "probability": 0.394775390625}, {"start": 1539.15, "end": 1540.51, "word": " have", "probability": 0.2352294921875}, {"start": 1540.51, "end": 1540.69, "word": " common", "probability": 0.1998291015625}, {"start": 1540.69, "end": 1541.93, "word": " and", "probability": 0.18603515625}, {"start": 1541.93, "end": 1542.55, "word": " different", "probability": 0.71435546875}, {"start": 1542.55, "end": 1542.55, "word": " elements.", "probability": 0.6494140625}, {"start": 1542.79, "end": 1543.33, "word": " It", "probability": 0.1097412109375}, {"start": 1543.33, "end": 1543.33, "word": " does", "probability": 0.454345703125}, {"start": 1543.33, "end": 1543.33, "word": " not", "probability": 0.91015625}, {"start": 1543.33, "end": 1543.59, "word": " need", "probability": 0.1798095703125}, {"start": 1543.59, "end": 1543.61, "word": " to", "probability": 0.806640625}, {"start": 1543.61, "end": 1543.85, "word": " design", "probability": 0.75244140625}, {"start": 1543.85, "end": 1544.07, "word": " for", "probability": 0.32421875}, {"start": 1544.07, "end": 1544.25, "word": " each", "probability": 0.708984375}, {"start": 1544.25, "end": 1544.55, "word": " face", "probability": 0.21728515625}, {"start": 1544.55, "end": 1544.67, "word": " in", "probability": 0.423583984375}, {"start": 1544.67, "end": 1544.77, "word": " a", "probability": 0.36767578125}, {"start": 1544.77, "end": 1545.09, "word": " single", "probability": 0.65185546875}, {"start": 1545.09, "end": 1545.23, "word": " screen.", "probability": 0.7568359375}, {"start": 1546.29, "end": 1546.83, "word": " We", "probability": 0.429931640625}, {"start": 1546.83, "end": 1547.13, "word": " need", "probability": 0.374267578125}, {"start": 1547.13, "end": 1547.21, "word": " to", "probability": 0.943359375}, {"start": 1547.21, "end": 1547.57, "word": " develop", "probability": 0.31640625}, {"start": 1547.57, "end": 1547.73, "word": " it.", "probability": 0.1636962890625}, {"start": 1547.93, "end": 1547.95, "word": " We", "probability": 0.74609375}, {"start": 1547.95, "end": 1548.09, "word": " need", "probability": 0.69677734375}, {"start": 1548.09, "end": 1548.13, "word": " to", "probability": 0.9501953125}, {"start": 1548.13, "end": 1548.47, "word": " use", "probability": 0.7607421875}, {"start": 1548.47, "end": 1549.55, "word": " the", "probability": 0.391357421875}, {"start": 1549.55, "end": 1549.87, "word": " factory", "probability": 0.560546875}, {"start": 1549.87, "end": 1550.19, "word": " method.", "probability": 0.6865234375}, {"start": 1550.53, "end": 1550.93, "word": " That", "probability": 0.180908203125}, {"start": 1550.93, "end": 1550.95, "word": " means", "probability": 0.5849609375}, {"start": 1550.95, "end": 1551.05, "word": " you", "probability": 0.6455078125}, {"start": 1551.05, "end": 1551.21, "word": " need", "probability": 0.685546875}, {"start": 1551.21, "end": 1551.63, "word": " to", "probability": 0.9619140625}, {"start": 1551.63, "end": 1551.85, "word": " design", "probability": 0.837890625}, {"start": 1551.85, "end": 1552.39, "word": " for", "probability": 0.6884765625}, {"start": 1552.39, "end": 1552.47, "word": " the", "probability": 0.262451171875}, {"start": 1552.47, "end": 1553.11, "word": " common", "probability": 0.83447265625}, {"start": 1553.11, "end": 1553.35, "word": " elements", "probability": 0.46728515625}, {"start": 1553.35, "end": 1554.59, "word": " and", "probability": 0.44580078125}, {"start": 1554.59, "end": 1555.01, "word": " use", "probability": 0.2529296875}, {"start": 1555.01, "end": 1556.41, "word": " the", "probability": 0.5634765625}, {"start": 1556.41, "end": 1556.85, "word": " abstract", "probability": 0.81494140625}, {"start": 1556.85, "end": 1558.09, "word": " methods,", "probability": 0.62158203125}, {"start": 1558.09, "end": 1558.25, "word": " the", "probability": 0.60009765625}, {"start": 1558.25, "end": 1558.57, "word": " factory", "probability": 0.79345703125}, {"start": 1558.57, "end": 1559.09, "word": " methods,", "probability": 0.88427734375}, {"start": 1559.13, "end": 1559.39, "word": " so", "probability": 0.444580078125}, {"start": 1559.39, "end": 1559.61, "word": " that", "probability": 0.77978515625}, {"start": 1559.61, "end": 1559.65, "word": " the", "probability": 0.7265625}, {"start": 1559.65, "end": 1560.35, "word": " different", "probability": 0.77783203125}, {"start": 1560.35, "end": 1560.41, "word": " elements", "probability": 0.783203125}, {"start": 1560.41, "end": 1560.59, "word": " can", "probability": 0.481201171875}, {"start": 1560.59, "end": 1560.75, "word": " be", "probability": 0.91455078125}, {"start": 1560.75, "end": 1561.09, "word": " designed", "probability": 0.85986328125}, {"start": 1561.09, "end": 1561.57, "word": " in", "probability": 0.60107421875}, {"start": 1561.57, "end": 1562.45, "word": " the", "probability": 0.6474609375}, {"start": 1562.45, "end": 1563.19, "word": " subclasses.", "probability": 0.7088216145833334}, {"start": 1563.41, "end": 1563.55, "word": " And", "probability": 0.331787109375}, {"start": 1563.55, "end": 1563.75, "word": " there", "probability": 0.45458984375}, {"start": 1563.75, "end": 1563.75, "word": " should", "probability": 0.491943359375}, {"start": 1563.75, "end": 1564.03, "word": " be", "probability": 0.9296875}, {"start": 1564.03, "end": 1564.33, "word": " a", "probability": 0.884765625}, {"start": 1564.33, "end": 1564.67, "word": " safe", "probability": 0.1700439453125}, {"start": 1564.67, "end": 1564.73, "word": " button.", "probability": 0.837890625}, {"start": 1564.73, "end": 1565.01, "word": " You", "probability": 0.57177734375}, {"start": 1565.01, "end": 1565.23, "word": " press", "probability": 0.390869140625}, {"start": 1565.23, "end": 1565.63, "word": " it.", "probability": 0.78662109375}], "temperature": 1.0}, {"id": 61, "seek": 158492, "start": 1567.38, "end": 1584.92, "text": "It creates an object from the request and prints its data for you. It stores it in the object and prints the object for you. It's the same example that I explained. But it changes what? The example that I explained has an effect on the code that is present on the model.", "tokens": [3522, 7829, 364, 2657, 490, 264, 5308, 293, 22305, 1080, 1412, 337, 291, 13, 467, 9512, 309, 294, 264, 2657, 293, 22305, 264, 2657, 337, 291, 13, 467, 311, 264, 912, 1365, 300, 286, 8825, 13, 583, 309, 2962, 437, 30, 440, 1365, 300, 286, 8825, 575, 364, 1802, 322, 264, 3089, 300, 307, 1974, 322, 264, 2316, 13], "avg_logprob": -0.7052083164453506, "compression_ratio": 1.7197452229299364, "no_speech_prob": 5.626678466796875e-05, "words": [{"start": 1567.3799999999999, "end": 1567.78, "word": "It", "probability": 0.06072998046875}, {"start": 1567.78, "end": 1568.02, "word": " creates", "probability": 0.28515625}, {"start": 1568.02, "end": 1568.44, "word": " an", "probability": 0.57275390625}, {"start": 1568.44, "end": 1568.44, "word": " object", "probability": 0.931640625}, {"start": 1568.44, "end": 1568.6, "word": " from", "probability": 0.662109375}, {"start": 1568.6, "end": 1569.7, "word": " the", "probability": 0.304443359375}, {"start": 1569.7, "end": 1570.0, "word": " request", "probability": 0.6650390625}, {"start": 1570.0, "end": 1570.16, "word": " and", "probability": 0.430908203125}, {"start": 1570.16, "end": 1570.36, "word": " prints", "probability": 0.49609375}, {"start": 1570.36, "end": 1570.52, "word": " its", "probability": 0.1978759765625}, {"start": 1570.52, "end": 1570.78, "word": " data", "probability": 0.70654296875}, {"start": 1570.78, "end": 1570.92, "word": " for", "probability": 0.244384765625}, {"start": 1570.92, "end": 1570.92, "word": " you.", "probability": 0.9013671875}, {"start": 1571.82, "end": 1571.86, "word": " It", "probability": 0.29833984375}, {"start": 1571.86, "end": 1572.14, "word": " stores", "probability": 0.6416015625}, {"start": 1572.14, "end": 1572.3, "word": " it", "probability": 0.41015625}, {"start": 1572.3, "end": 1572.4, "word": " in", "probability": 0.79736328125}, {"start": 1572.4, "end": 1572.48, "word": " the", "probability": 0.744140625}, {"start": 1572.48, "end": 1572.88, "word": " object", "probability": 0.91455078125}, {"start": 1572.88, "end": 1573.22, "word": " and", "probability": 0.7705078125}, {"start": 1573.22, "end": 1573.48, "word": " prints", "probability": 0.912109375}, {"start": 1573.48, "end": 1573.68, "word": " the", "probability": 0.4130859375}, {"start": 1573.68, "end": 1574.0, "word": " object", "probability": 0.6806640625}, {"start": 1574.0, "end": 1574.14, "word": " for", "probability": 0.60205078125}, {"start": 1574.14, "end": 1574.14, "word": " you.", "probability": 0.95556640625}, {"start": 1575.58, "end": 1575.98, "word": " It's", "probability": 0.29779052734375}, {"start": 1575.98, "end": 1576.06, "word": " the", "probability": 0.68701171875}, {"start": 1576.06, "end": 1576.24, "word": " same", "probability": 0.89794921875}, {"start": 1576.24, "end": 1576.62, "word": " example", "probability": 0.7998046875}, {"start": 1576.62, "end": 1576.7, "word": " that", "probability": 0.1636962890625}, {"start": 1576.7, "end": 1576.8, "word": " I", "probability": 0.96337890625}, {"start": 1576.8, "end": 1577.1, "word": " explained.", "probability": 0.369384765625}, {"start": 1579.44, "end": 1579.84, "word": " But", "probability": 0.270263671875}, {"start": 1579.84, "end": 1580.02, "word": " it", "probability": 0.420654296875}, {"start": 1580.02, "end": 1580.24, "word": " changes", "probability": 0.5654296875}, {"start": 1580.24, "end": 1580.62, "word": " what?", "probability": 0.18408203125}, {"start": 1581.0, "end": 1581.4, "word": " The", "probability": 0.202392578125}, {"start": 1581.4, "end": 1582.9, "word": " example", "probability": 0.56982421875}, {"start": 1582.9, "end": 1583.08, "word": " that", "probability": 0.46240234375}, {"start": 1583.08, "end": 1583.18, "word": " I", "probability": 0.98486328125}, {"start": 1583.18, "end": 1583.42, "word": " explained", "probability": 0.6767578125}, {"start": 1583.42, "end": 1583.54, "word": " has", "probability": 0.2076416015625}, {"start": 1583.54, "end": 1583.72, "word": " an", "probability": 0.513671875}, {"start": 1583.72, "end": 1583.72, "word": " effect", "probability": 0.58984375}, {"start": 1583.72, "end": 1583.82, "word": " on", "probability": 0.8251953125}, {"start": 1583.82, "end": 1583.86, "word": " the", "probability": 0.79833984375}, {"start": 1583.86, "end": 1584.06, "word": " code", "probability": 0.62841796875}, {"start": 1584.06, "end": 1584.18, "word": " that", "probability": 0.47021484375}, {"start": 1584.18, "end": 1584.32, "word": " is", "probability": 0.485107421875}, {"start": 1584.32, "end": 1584.54, "word": " present", "probability": 0.21044921875}, {"start": 1584.54, "end": 1584.66, "word": " on", "probability": 0.73291015625}, {"start": 1584.66, "end": 1584.72, "word": " the", "probability": 0.71240234375}, {"start": 1584.72, "end": 1584.92, "word": " model.", "probability": 0.83056640625}], "temperature": 1.0}, {"id": 62, "seek": 161237, "start": 1585.95, "end": 1612.37, "text": " you can take it and change it to make it like this or you can work on your mobile on whatever you want the most important thing is to apply the factory method how long does it take for the old job? another 3 days to open this job good right? but guys tomorrow as I said surely in the exams there will be questions", "tokens": [291, 393, 747, 309, 293, 1319, 309, 281, 652, 309, 411, 341, 420, 291, 393, 589, 322, 428, 6013, 322, 2035, 291, 528, 264, 881, 1021, 551, 307, 281, 3079, 264, 9265, 3170, 577, 938, 775, 309, 747, 337, 264, 1331, 1691, 30, 1071, 805, 1708, 281, 1269, 341, 1691, 665, 558, 30, 457, 1074, 4153, 382, 286, 848, 11468, 294, 264, 20514, 456, 486, 312, 1651], "avg_logprob": -0.7072610522017759, "compression_ratio": 1.6185567010309279, "no_speech_prob": 3.653764724731445e-05, "words": [{"start": 1585.95, "end": 1586.55, "word": " you", "probability": 0.1671142578125}, {"start": 1586.55, "end": 1586.81, "word": " can", "probability": 0.66357421875}, {"start": 1586.81, "end": 1587.11, "word": " take", "probability": 0.2386474609375}, {"start": 1587.11, "end": 1587.21, "word": " it", "probability": 0.432861328125}, {"start": 1587.21, "end": 1587.23, "word": " and", "probability": 0.892578125}, {"start": 1587.23, "end": 1587.47, "word": " change", "probability": 0.72705078125}, {"start": 1587.47, "end": 1587.81, "word": " it", "probability": 0.63232421875}, {"start": 1587.81, "end": 1588.13, "word": " to", "probability": 0.439697265625}, {"start": 1588.13, "end": 1588.37, "word": " make", "probability": 0.28076171875}, {"start": 1588.37, "end": 1588.55, "word": " it", "probability": 0.63818359375}, {"start": 1588.55, "end": 1588.59, "word": " like", "probability": 0.45849609375}, {"start": 1588.59, "end": 1588.89, "word": " this", "probability": 0.80615234375}, {"start": 1588.89, "end": 1589.81, "word": " or", "probability": 0.62939453125}, {"start": 1589.81, "end": 1590.63, "word": " you", "probability": 0.8525390625}, {"start": 1590.63, "end": 1590.67, "word": " can", "probability": 0.6611328125}, {"start": 1590.67, "end": 1590.91, "word": " work", "probability": 0.5322265625}, {"start": 1590.91, "end": 1591.39, "word": " on", "probability": 0.68408203125}, {"start": 1591.39, "end": 1591.55, "word": " your", "probability": 0.3388671875}, {"start": 1591.55, "end": 1591.83, "word": " mobile", "probability": 0.5634765625}, {"start": 1591.83, "end": 1592.17, "word": " on", "probability": 0.189453125}, {"start": 1592.17, "end": 1592.59, "word": " whatever", "probability": 0.5048828125}, {"start": 1592.59, "end": 1593.15, "word": " you", "probability": 0.44580078125}, {"start": 1593.15, "end": 1593.51, "word": " want", "probability": 0.6533203125}, {"start": 1593.51, "end": 1594.69, "word": " the", "probability": 0.1824951171875}, {"start": 1594.69, "end": 1594.85, "word": " most", "probability": 0.40283203125}, {"start": 1594.85, "end": 1595.03, "word": " important", "probability": 0.87109375}, {"start": 1595.03, "end": 1595.13, "word": " thing", "probability": 0.671875}, {"start": 1595.13, "end": 1595.27, "word": " is", "probability": 0.859375}, {"start": 1595.27, "end": 1595.41, "word": " to", "probability": 0.58642578125}, {"start": 1595.41, "end": 1595.75, "word": " apply", "probability": 0.693359375}, {"start": 1595.75, "end": 1597.35, "word": " the", "probability": 0.2073974609375}, {"start": 1597.35, "end": 1597.81, "word": " factory", "probability": 0.58154296875}, {"start": 1597.81, "end": 1599.19, "word": " method", "probability": 0.92333984375}, {"start": 1599.19, "end": 1600.23, "word": " how", "probability": 0.45751953125}, {"start": 1600.23, "end": 1600.41, "word": " long", "probability": 0.49658203125}, {"start": 1600.41, "end": 1600.59, "word": " does", "probability": 0.1600341796875}, {"start": 1600.59, "end": 1600.65, "word": " it", "probability": 0.82958984375}, {"start": 1600.65, "end": 1600.65, "word": " take", "probability": 0.697265625}, {"start": 1600.65, "end": 1600.75, "word": " for", "probability": 0.20556640625}, {"start": 1600.75, "end": 1600.83, "word": " the", "probability": 0.67431640625}, {"start": 1600.83, "end": 1601.27, "word": " old", "probability": 0.64892578125}, {"start": 1601.27, "end": 1601.27, "word": " job?", "probability": 0.408935546875}, {"start": 1602.79, "end": 1603.21, "word": " another", "probability": 0.2081298828125}, {"start": 1603.21, "end": 1603.41, "word": " 3", "probability": 0.5146484375}, {"start": 1603.41, "end": 1603.83, "word": " days", "probability": 0.93115234375}, {"start": 1603.83, "end": 1604.01, "word": " to", "probability": 0.2529296875}, {"start": 1604.01, "end": 1604.21, "word": " open", "probability": 0.54345703125}, {"start": 1604.21, "end": 1604.79, "word": " this", "probability": 0.53076171875}, {"start": 1604.79, "end": 1604.93, "word": " job", "probability": 0.86572265625}, {"start": 1604.93, "end": 1605.23, "word": " good", "probability": 0.104248046875}, {"start": 1605.23, "end": 1605.49, "word": " right?", "probability": 0.401123046875}, {"start": 1607.49, "end": 1607.79, "word": " but", "probability": 0.2333984375}, {"start": 1607.79, "end": 1608.17, "word": " guys", "probability": 0.2186279296875}, {"start": 1608.17, "end": 1608.83, "word": " tomorrow", "probability": 0.49169921875}, {"start": 1608.83, "end": 1609.17, "word": " as", "probability": 0.55419921875}, {"start": 1609.17, "end": 1609.33, "word": " I", "probability": 0.83349609375}, {"start": 1609.33, "end": 1609.55, "word": " said", "probability": 0.814453125}, {"start": 1609.55, "end": 1610.45, "word": " surely", "probability": 0.1246337890625}, {"start": 1610.45, "end": 1610.97, "word": " in", "probability": 0.466796875}, {"start": 1610.97, "end": 1611.03, "word": " the", "probability": 0.70263671875}, {"start": 1611.03, "end": 1611.35, "word": " exams", "probability": 0.8505859375}, {"start": 1611.35, "end": 1611.85, "word": " there", "probability": 0.410400390625}, {"start": 1611.85, "end": 1611.89, "word": " will", "probability": 0.85107421875}, {"start": 1611.89, "end": 1612.07, "word": " be", "probability": 0.78759765625}, {"start": 1612.07, "end": 1612.37, "word": " questions", "probability": 0.921875}], "temperature": 1.0}, {"id": 63, "seek": 162983, "start": 1613.59, "end": 1629.83, "text": "It's not the obligation itself, it's similar to it, if you don't solve the problem in the exam, they will give you zero in the obligation directly. Your mark in the obligation, see I don't admit in the obligation. Your mark in the obligation, I will put it almost, it will be your mark in the exam.", "tokens": [3522, 311, 406, 264, 20326, 2564, 11, 309, 311, 2531, 281, 309, 11, 498, 291, 500, 380, 5039, 264, 1154, 294, 264, 1139, 11, 436, 486, 976, 291, 4018, 294, 264, 20326, 3838, 13, 2260, 1491, 294, 264, 20326, 11, 536, 286, 500, 380, 9796, 294, 264, 20326, 13, 2260, 1491, 294, 264, 20326, 11, 286, 486, 829, 309, 1920, 11, 309, 486, 312, 428, 1491, 294, 264, 1139, 13], "avg_logprob": -0.5598591582875856, "compression_ratio": 1.8980891719745223, "no_speech_prob": 2.0623207092285156e-05, "words": [{"start": 1613.59, "end": 1613.81, "word": "It's", "probability": 0.35235595703125}, {"start": 1613.81, "end": 1613.83, "word": " not", "probability": 0.6572265625}, {"start": 1613.83, "end": 1614.09, "word": " the", "probability": 0.0855712890625}, {"start": 1614.09, "end": 1614.45, "word": " obligation", "probability": 0.467529296875}, {"start": 1614.45, "end": 1614.93, "word": " itself,", "probability": 0.46630859375}, {"start": 1615.27, "end": 1615.53, "word": " it's", "probability": 0.760009765625}, {"start": 1615.53, "end": 1615.77, "word": " similar", "probability": 0.5693359375}, {"start": 1615.77, "end": 1615.97, "word": " to", "probability": 0.77734375}, {"start": 1615.97, "end": 1616.03, "word": " it,", "probability": 0.42236328125}, {"start": 1616.09, "end": 1616.27, "word": " if", "probability": 0.72509765625}, {"start": 1616.27, "end": 1616.55, "word": " you", "probability": 0.94287109375}, {"start": 1616.55, "end": 1616.59, "word": " don't", "probability": 0.752685546875}, {"start": 1616.59, "end": 1616.81, "word": " solve", "probability": 0.470703125}, {"start": 1616.81, "end": 1617.27, "word": " the", "probability": 0.432373046875}, {"start": 1617.27, "end": 1617.27, "word": " problem", "probability": 0.229248046875}, {"start": 1617.27, "end": 1617.39, "word": " in", "probability": 0.51708984375}, {"start": 1617.39, "end": 1617.47, "word": " the", "probability": 0.7509765625}, {"start": 1617.47, "end": 1617.71, "word": " exam,", "probability": 0.791015625}, {"start": 1618.05, "end": 1618.29, "word": " they", "probability": 0.2958984375}, {"start": 1618.29, "end": 1618.31, "word": " will", "probability": 0.461181640625}, {"start": 1618.31, "end": 1618.49, "word": " give", "probability": 0.65478515625}, {"start": 1618.49, "end": 1618.59, "word": " you", "probability": 0.9375}, {"start": 1618.59, "end": 1618.81, "word": " zero", "probability": 0.60205078125}, {"start": 1618.81, "end": 1618.95, "word": " in", "probability": 0.43994140625}, {"start": 1618.95, "end": 1619.03, "word": " the", "probability": 0.56640625}, {"start": 1619.03, "end": 1619.23, "word": " obligation", "probability": 0.857421875}, {"start": 1619.23, "end": 1619.79, "word": " directly.", "probability": 0.2152099609375}, {"start": 1620.29, "end": 1620.49, "word": " Your", "probability": 0.484619140625}, {"start": 1620.49, "end": 1620.75, "word": " mark", "probability": 0.36181640625}, {"start": 1620.75, "end": 1621.01, "word": " in", "probability": 0.8359375}, {"start": 1621.01, "end": 1621.13, "word": " the", "probability": 0.72119140625}, {"start": 1621.13, "end": 1621.39, "word": " obligation,", "probability": 0.88720703125}, {"start": 1621.85, "end": 1621.97, "word": " see", "probability": 0.373779296875}, {"start": 1621.97, "end": 1622.17, "word": " I", "probability": 0.81005859375}, {"start": 1622.17, "end": 1622.23, "word": " don't", "probability": 0.779296875}, {"start": 1622.23, "end": 1622.47, "word": " admit", "probability": 0.363525390625}, {"start": 1622.47, "end": 1622.67, "word": " in", "probability": 0.45458984375}, {"start": 1622.67, "end": 1622.75, "word": " the", "probability": 0.7587890625}, {"start": 1622.75, "end": 1622.93, "word": " obligation.", "probability": 0.9296875}, {"start": 1623.73, "end": 1624.17, "word": " Your", "probability": 0.493408203125}, {"start": 1624.17, "end": 1624.97, "word": " mark", "probability": 0.890625}, {"start": 1624.97, "end": 1625.19, "word": " in", "probability": 0.9296875}, {"start": 1625.19, "end": 1625.35, "word": " the", "probability": 0.84912109375}, {"start": 1625.35, "end": 1625.65, "word": " obligation,", "probability": 0.95458984375}, {"start": 1626.31, "end": 1626.37, "word": " I", "probability": 0.74267578125}, {"start": 1626.37, "end": 1626.49, "word": " will", "probability": 0.6640625}, {"start": 1626.49, "end": 1626.67, "word": " put", "probability": 0.751953125}, {"start": 1626.67, "end": 1627.73, "word": " it", "probability": 0.90185546875}, {"start": 1627.73, "end": 1628.19, "word": " almost,", "probability": 0.355712890625}, {"start": 1628.33, "end": 1628.43, "word": " it", "probability": 0.45654296875}, {"start": 1628.43, "end": 1628.49, "word": " will", "probability": 0.85302734375}, {"start": 1628.49, "end": 1628.69, "word": " be", "probability": 0.9033203125}, {"start": 1628.69, "end": 1628.99, "word": " your", "probability": 0.45263671875}, {"start": 1628.99, "end": 1629.23, "word": " mark", "probability": 0.74951171875}, {"start": 1629.23, "end": 1629.47, "word": " in", "probability": 0.873046875}, {"start": 1629.47, "end": 1629.59, "word": " the", "probability": 0.91796875}, {"start": 1629.59, "end": 1629.83, "word": " exam.", "probability": 0.93408203125}], "temperature": 1.0}, {"id": 64, "seek": 165582, "start": 1630.8, "end": 1655.82, "text": " It's obvious, because the questions in the exam are the same as the questions in the assignment In the end, the questions in the exam are the same as the questions in the assignment So it's impossible to give them 100% Even if I give them 100% You didn't solve the question in the exam Does it mean that you solved it in the assignment? No, you didn't solve it in the exam So this assignment is for you to practice But in the end, you signed the assignment", "tokens": [467, 311, 6322, 11, 570, 264, 1651, 294, 264, 1139, 366, 264, 912, 382, 264, 1651, 294, 264, 15187, 682, 264, 917, 11, 264, 1651, 294, 264, 1139, 366, 264, 912, 382, 264, 1651, 294, 264, 15187, 407, 309, 311, 6243, 281, 976, 552, 2319, 4, 2754, 498, 286, 976, 552, 2319, 4, 509, 994, 380, 5039, 264, 1168, 294, 264, 1139, 4402, 309, 914, 300, 291, 13041, 309, 294, 264, 15187, 30, 883, 11, 291, 994, 380, 5039, 309, 294, 264, 1139, 407, 341, 15187, 307, 337, 291, 281, 3124, 583, 294, 264, 917, 11, 291, 8175, 264, 15187], "avg_logprob": -0.5300123502712438, "compression_ratio": 2.27363184079602, "no_speech_prob": 1.1026859283447266e-05, "words": [{"start": 1630.7999999999997, "end": 1631.1999999999998, "word": " It's", "probability": 0.3819580078125}, {"start": 1631.1999999999998, "end": 1631.6, "word": " obvious,", "probability": 0.357421875}, {"start": 1631.9, "end": 1632.24, "word": " because", "probability": 0.82861328125}, {"start": 1632.24, "end": 1632.38, "word": " the", "probability": 0.703125}, {"start": 1632.38, "end": 1632.54, "word": " questions", "probability": 0.5830078125}, {"start": 1632.54, "end": 1632.9, "word": " in", "probability": 0.41796875}, {"start": 1632.9, "end": 1632.98, "word": " the", "probability": 0.70947265625}, {"start": 1632.98, "end": 1633.4, "word": " exam", "probability": 0.763671875}, {"start": 1633.4, "end": 1634.36, "word": " are", "probability": 0.7265625}, {"start": 1634.36, "end": 1634.48, "word": " the", "probability": 0.630859375}, {"start": 1634.48, "end": 1634.52, "word": " same", "probability": 0.853515625}, {"start": 1634.52, "end": 1634.88, "word": " as", "probability": 0.400634765625}, {"start": 1634.88, "end": 1634.94, "word": " the", "probability": 0.7861328125}, {"start": 1634.94, "end": 1635.1, "word": " questions", "probability": 0.5771484375}, {"start": 1635.1, "end": 1635.24, "word": " in", "probability": 0.666015625}, {"start": 1635.24, "end": 1635.3, "word": " the", "probability": 0.71728515625}, {"start": 1635.3, "end": 1635.52, "word": " assignment", "probability": 0.2454833984375}, {"start": 1635.52, "end": 1636.06, "word": " In", "probability": 0.1016845703125}, {"start": 1636.06, "end": 1636.14, "word": " the", "probability": 0.52880859375}, {"start": 1636.14, "end": 1636.38, "word": " end,", "probability": 0.765625}, {"start": 1636.56, "end": 1637.32, "word": " the", "probability": 0.498046875}, {"start": 1637.32, "end": 1637.54, "word": " questions", "probability": 0.52978515625}, {"start": 1637.54, "end": 1637.7, "word": " in", "probability": 0.86376953125}, {"start": 1637.7, "end": 1637.78, "word": " the", "probability": 0.9111328125}, {"start": 1637.78, "end": 1637.98, "word": " exam", "probability": 0.9609375}, {"start": 1637.98, "end": 1638.4, "word": " are", "probability": 0.89453125}, {"start": 1638.4, "end": 1638.5, "word": " the", "probability": 0.8740234375}, {"start": 1638.5, "end": 1638.56, "word": " same", "probability": 0.88525390625}, {"start": 1638.56, "end": 1638.8, "word": " as", "probability": 0.84375}, {"start": 1638.8, "end": 1638.92, "word": " the", "probability": 0.79296875}, {"start": 1638.92, "end": 1639.08, "word": " questions", "probability": 0.91552734375}, {"start": 1639.08, "end": 1639.2, "word": " in", "probability": 0.92041015625}, {"start": 1639.2, "end": 1639.28, "word": " the", "probability": 0.912109375}, {"start": 1639.28, "end": 1639.48, "word": " assignment", "probability": 0.9169921875}, {"start": 1639.48, "end": 1640.46, "word": " So", "probability": 0.52978515625}, {"start": 1640.46, "end": 1640.72, "word": " it's", "probability": 0.76123046875}, {"start": 1640.72, "end": 1641.02, "word": " impossible", "probability": 0.7919921875}, {"start": 1641.02, "end": 1641.14, "word": " to", "probability": 0.6005859375}, {"start": 1641.14, "end": 1641.28, "word": " give", "probability": 0.1630859375}, {"start": 1641.28, "end": 1641.5, "word": " them", "probability": 0.274658203125}, {"start": 1641.5, "end": 1641.84, "word": " 100", "probability": 0.286865234375}, {"start": 1641.84, "end": 1641.84, "word": "%", "probability": 0.92919921875}, {"start": 1641.84, "end": 1641.84, "word": " Even", "probability": 0.1337890625}, {"start": 1641.84, "end": 1642.02, "word": " if", "probability": 0.84033203125}, {"start": 1642.02, "end": 1642.36, "word": " I", "probability": 0.60986328125}, {"start": 1642.36, "end": 1642.5, "word": " give", "probability": 0.3798828125}, {"start": 1642.5, "end": 1642.64, "word": " them", "probability": 0.78662109375}, {"start": 1642.64, "end": 1642.92, "word": " 100", "probability": 0.314453125}, {"start": 1642.92, "end": 1643.94, "word": "%", "probability": 0.90478515625}, {"start": 1643.94, "end": 1644.52, "word": " You", "probability": 0.316650390625}, {"start": 1644.52, "end": 1645.98, "word": " didn't", "probability": 0.69580078125}, {"start": 1645.98, "end": 1646.2, "word": " solve", "probability": 0.63427734375}, {"start": 1646.2, "end": 1646.32, "word": " the", "probability": 0.8935546875}, {"start": 1646.32, "end": 1646.56, "word": " question", "probability": 0.64501953125}, {"start": 1646.56, "end": 1646.56, "word": " in", "probability": 0.85498046875}, {"start": 1646.56, "end": 1646.56, "word": " the", "probability": 0.908203125}, {"start": 1646.56, "end": 1646.56, "word": " exam", "probability": 0.94580078125}, {"start": 1646.56, "end": 1646.92, "word": " Does", "probability": 0.3603515625}, {"start": 1646.92, "end": 1647.4, "word": " it", "probability": 0.465576171875}, {"start": 1647.4, "end": 1647.4, "word": " mean", "probability": 0.9423828125}, {"start": 1647.4, "end": 1647.46, "word": " that", "probability": 0.414794921875}, {"start": 1647.46, "end": 1647.48, "word": " you", "probability": 0.8974609375}, {"start": 1647.48, "end": 1647.7, "word": " solved", "probability": 0.76708984375}, {"start": 1647.7, "end": 1647.78, "word": " it", "probability": 0.88916015625}, {"start": 1647.78, "end": 1647.86, "word": " in", "probability": 0.91162109375}, {"start": 1647.86, "end": 1647.94, "word": " the", "probability": 0.8330078125}, {"start": 1647.94, "end": 1648.14, "word": " assignment?", "probability": 0.8994140625}, {"start": 1649.06, "end": 1649.46, "word": " No,", "probability": 0.462646484375}, {"start": 1649.48, "end": 1649.48, "word": " you", "probability": 0.1990966796875}, {"start": 1649.48, "end": 1649.48, "word": " didn't", "probability": 0.6898193359375}, {"start": 1649.48, "end": 1649.52, "word": " solve", "probability": 0.438720703125}, {"start": 1649.52, "end": 1649.52, "word": " it", "probability": 0.84619140625}, {"start": 1649.52, "end": 1650.4, "word": " in", "probability": 0.55712890625}, {"start": 1650.4, "end": 1650.6, "word": " the", "probability": 0.859375}, {"start": 1650.6, "end": 1650.72, "word": " exam", "probability": 0.544921875}, {"start": 1650.72, "end": 1651.14, "word": " So", "probability": 0.423095703125}, {"start": 1651.14, "end": 1651.92, "word": " this", "probability": 0.159912109375}, {"start": 1651.92, "end": 1652.28, "word": " assignment", "probability": 0.66064453125}, {"start": 1652.28, "end": 1652.38, "word": " is", "probability": 0.84375}, {"start": 1652.38, "end": 1652.5, "word": " for", "probability": 0.406982421875}, {"start": 1652.5, "end": 1652.58, "word": " you", "probability": 0.9423828125}, {"start": 1652.58, "end": 1652.98, "word": " to", "probability": 0.955078125}, {"start": 1652.98, "end": 1653.34, "word": " practice", "probability": 0.322265625}, {"start": 1653.34, "end": 1654.68, "word": " But", "probability": 0.331787109375}, {"start": 1654.68, "end": 1654.84, "word": " in", "probability": 0.78173828125}, {"start": 1654.84, "end": 1654.92, "word": " the", "probability": 0.92578125}, {"start": 1654.92, "end": 1655.1, "word": " end,", "probability": 0.92431640625}, {"start": 1655.18, "end": 1655.24, "word": " you", "probability": 0.78857421875}, {"start": 1655.24, "end": 1655.38, "word": " signed", "probability": 0.1966552734375}, {"start": 1655.38, "end": 1655.56, "word": " the", "probability": 0.7822265625}, {"start": 1655.56, "end": 1655.82, "word": " assignment", "probability": 0.91796875}], "temperature": 1.0}, {"id": 65, "seek": 168125, "start": 1657.07, "end": 1681.25, "text": " The same exam. No, it's just that I open my homework, I see random things, okay? I take my students and sometimes they give me empty things like this. Anyway, this homework is for you. You laugh at yourself if you don't solve it, okay? Even the exercises I give you, I don't give you homework that I tell you to copy from the internet and write it with your hand and I don't know what. No, I give you questions", "tokens": [440, 912, 1139, 13, 883, 11, 309, 311, 445, 300, 286, 1269, 452, 14578, 11, 286, 536, 4974, 721, 11, 1392, 30, 286, 747, 452, 1731, 293, 2171, 436, 976, 385, 6707, 721, 411, 341, 13, 5684, 11, 341, 14578, 307, 337, 291, 13, 509, 5801, 412, 1803, 498, 291, 500, 380, 5039, 309, 11, 1392, 30, 2754, 264, 11900, 286, 976, 291, 11, 286, 500, 380, 976, 291, 14578, 300, 286, 980, 291, 281, 5055, 490, 264, 4705, 293, 2464, 309, 365, 428, 1011, 293, 286, 500, 380, 458, 437, 13, 883, 11, 286, 976, 291, 1651], "avg_logprob": -0.5482954364834409, "compression_ratio": 1.6639676113360324, "no_speech_prob": 2.6404857635498047e-05, "words": [{"start": 1657.07, "end": 1657.29, "word": " The", "probability": 0.2076416015625}, {"start": 1657.29, "end": 1657.43, "word": " same", "probability": 0.84814453125}, {"start": 1657.43, "end": 1657.71, "word": " exam.", "probability": 0.744140625}, {"start": 1660.47, "end": 1660.79, "word": " No,", "probability": 0.1414794921875}, {"start": 1662.87, "end": 1663.03, "word": " it's", "probability": 0.535888671875}, {"start": 1663.03, "end": 1663.09, "word": " just", "probability": 0.221435546875}, {"start": 1663.09, "end": 1663.35, "word": " that", "probability": 0.70556640625}, {"start": 1663.35, "end": 1663.35, "word": " I", "probability": 0.9228515625}, {"start": 1663.35, "end": 1665.33, "word": " open", "probability": 0.353271484375}, {"start": 1665.33, "end": 1665.49, "word": " my", "probability": 0.446044921875}, {"start": 1665.49, "end": 1665.77, "word": " homework,", "probability": 0.269287109375}, {"start": 1665.91, "end": 1666.01, "word": " I", "probability": 0.492431640625}, {"start": 1666.01, "end": 1666.15, "word": " see", "probability": 0.5009765625}, {"start": 1666.15, "end": 1666.61, "word": " random", "probability": 0.81005859375}, {"start": 1666.61, "end": 1666.97, "word": " things,", "probability": 0.55029296875}, {"start": 1667.25, "end": 1667.43, "word": " okay?", "probability": 0.283203125}, {"start": 1667.93, "end": 1668.13, "word": " I", "probability": 0.869140625}, {"start": 1668.13, "end": 1668.37, "word": " take", "probability": 0.1917724609375}, {"start": 1668.37, "end": 1668.53, "word": " my", "probability": 0.34130859375}, {"start": 1668.53, "end": 1668.61, "word": " students", "probability": 0.9287109375}, {"start": 1668.61, "end": 1668.75, "word": " and", "probability": 0.09613037109375}, {"start": 1668.75, "end": 1668.87, "word": " sometimes", "probability": 0.41015625}, {"start": 1668.87, "end": 1668.99, "word": " they", "probability": 0.74462890625}, {"start": 1668.99, "end": 1669.15, "word": " give", "probability": 0.270751953125}, {"start": 1669.15, "end": 1669.25, "word": " me", "probability": 0.57177734375}, {"start": 1669.25, "end": 1669.25, "word": " empty", "probability": 0.233642578125}, {"start": 1669.25, "end": 1669.73, "word": " things", "probability": 0.2294921875}, {"start": 1669.73, "end": 1669.89, "word": " like", "probability": 0.7392578125}, {"start": 1669.89, "end": 1670.15, "word": " this.", "probability": 0.6943359375}, {"start": 1671.17, "end": 1671.49, "word": " Anyway,", "probability": 0.399169921875}, {"start": 1671.61, "end": 1671.65, "word": " this", "probability": 0.595703125}, {"start": 1671.65, "end": 1671.89, "word": " homework", "probability": 0.5634765625}, {"start": 1671.89, "end": 1672.01, "word": " is", "probability": 0.859375}, {"start": 1672.01, "end": 1672.23, "word": " for", "probability": 0.400390625}, {"start": 1672.23, "end": 1672.33, "word": " you.", "probability": 0.95556640625}, {"start": 1672.41, "end": 1672.59, "word": " You", "probability": 0.90576171875}, {"start": 1672.59, "end": 1672.87, "word": " laugh", "probability": 0.378173828125}, {"start": 1672.87, "end": 1673.03, "word": " at", "probability": 0.9287109375}, {"start": 1673.03, "end": 1673.29, "word": " yourself", "probability": 0.84814453125}, {"start": 1673.29, "end": 1673.41, "word": " if", "probability": 0.90576171875}, {"start": 1673.41, "end": 1673.51, "word": " you", "probability": 0.76708984375}, {"start": 1673.51, "end": 1673.51, "word": " don't", "probability": 0.821533203125}, {"start": 1673.51, "end": 1673.69, "word": " solve", "probability": 0.724609375}, {"start": 1673.69, "end": 1673.83, "word": " it,", "probability": 0.90380859375}, {"start": 1674.01, "end": 1674.21, "word": " okay?", "probability": 0.85791015625}, {"start": 1674.69, "end": 1675.01, "word": " Even", "probability": 0.64990234375}, {"start": 1675.01, "end": 1675.13, "word": " the", "probability": 0.74853515625}, {"start": 1675.13, "end": 1675.39, "word": " exercises", "probability": 0.70361328125}, {"start": 1675.39, "end": 1675.55, "word": " I", "probability": 0.6796875}, {"start": 1675.55, "end": 1675.73, "word": " give", "probability": 0.849609375}, {"start": 1675.73, "end": 1675.89, "word": " you,", "probability": 0.369873046875}, {"start": 1675.89, "end": 1676.01, "word": " I", "probability": 0.9169921875}, {"start": 1676.01, "end": 1676.01, "word": " don't", "probability": 0.93212890625}, {"start": 1676.01, "end": 1676.15, "word": " give", "probability": 0.79638671875}, {"start": 1676.15, "end": 1676.35, "word": " you", "probability": 0.560546875}, {"start": 1676.35, "end": 1676.51, "word": " homework", "probability": 0.6171875}, {"start": 1676.51, "end": 1676.65, "word": " that", "probability": 0.246337890625}, {"start": 1676.65, "end": 1676.65, "word": " I", "probability": 0.3505859375}, {"start": 1676.65, "end": 1676.77, "word": " tell", "probability": 0.5751953125}, {"start": 1676.77, "end": 1676.89, "word": " you", "probability": 0.96630859375}, {"start": 1676.89, "end": 1677.05, "word": " to", "probability": 0.80908203125}, {"start": 1677.05, "end": 1677.23, "word": " copy", "probability": 0.48291015625}, {"start": 1677.23, "end": 1677.45, "word": " from", "probability": 0.70654296875}, {"start": 1677.45, "end": 1677.57, "word": " the", "probability": 0.8203125}, {"start": 1677.57, "end": 1677.77, "word": " internet", "probability": 0.62109375}, {"start": 1677.77, "end": 1678.23, "word": " and", "probability": 0.78564453125}, {"start": 1678.23, "end": 1678.43, "word": " write", "probability": 0.83154296875}, {"start": 1678.43, "end": 1678.55, "word": " it", "probability": 0.396240234375}, {"start": 1678.55, "end": 1678.59, "word": " with", "probability": 0.537109375}, {"start": 1678.59, "end": 1678.65, "word": " your", "probability": 0.533203125}, {"start": 1678.65, "end": 1678.95, "word": " hand", "probability": 0.230224609375}, {"start": 1678.95, "end": 1679.05, "word": " and", "probability": 0.478759765625}, {"start": 1679.05, "end": 1679.19, "word": " I", "probability": 0.30810546875}, {"start": 1679.19, "end": 1679.21, "word": " don't", "probability": 0.970703125}, {"start": 1679.21, "end": 1679.41, "word": " know", "probability": 0.8974609375}, {"start": 1679.41, "end": 1679.67, "word": " what.", "probability": 0.9365234375}, {"start": 1680.07, "end": 1680.35, "word": " No,", "probability": 0.77978515625}, {"start": 1680.39, "end": 1680.49, "word": " I", "probability": 0.97265625}, {"start": 1680.49, "end": 1680.61, "word": " give", "probability": 0.6962890625}, {"start": 1680.61, "end": 1680.75, "word": " you", "probability": 0.96142578125}, {"start": 1680.75, "end": 1681.25, "word": " questions", "probability": 0.91796875}], "temperature": 1.0}, {"id": 66, "seek": 171069, "start": 1682.55, "end": 1710.69, "text": " It's a whole process, and you will face all of these in your life. For example, you will create a program like this with screens. Well, any program you will create tomorrow will have screens, and there will also be shared things and different things. So, this is the scenario you face in your life. I personally work as a developer, not as an academic. I find all these things in my work. I mean, I give you ... what do they call it? Butter? Yes, these things you will face in your work in the market tomorrow.", "tokens": [467, 311, 257, 1379, 1399, 11, 293, 291, 486, 1851, 439, 295, 613, 294, 428, 993, 13, 1171, 1365, 11, 291, 486, 1884, 257, 1461, 411, 341, 365, 11171, 13, 1042, 11, 604, 1461, 291, 486, 1884, 4153, 486, 362, 11171, 11, 293, 456, 486, 611, 312, 5507, 721, 293, 819, 721, 13, 407, 11, 341, 307, 264, 9005, 291, 1851, 294, 428, 993, 13, 286, 5665, 589, 382, 257, 10754, 11, 406, 382, 364, 7778, 13, 286, 915, 439, 613, 721, 294, 452, 589, 13, 286, 914, 11, 286, 976, 291, 1097, 437, 360, 436, 818, 309, 30, 22646, 30, 1079, 11, 613, 721, 291, 486, 1851, 294, 428, 589, 294, 264, 2142, 4153, 13], "avg_logprob": -0.553952999604054, "compression_ratio": 1.8381294964028776, "no_speech_prob": 1.5735626220703125e-05, "words": [{"start": 1682.55, "end": 1682.89, "word": " It's", "probability": 0.552734375}, {"start": 1682.89, "end": 1682.95, "word": " a", "probability": 0.62548828125}, {"start": 1682.95, "end": 1682.97, "word": " whole", "probability": 0.350341796875}, {"start": 1682.97, "end": 1683.25, "word": " process,", "probability": 0.8984375}, {"start": 1683.63, "end": 1683.71, "word": " and", "probability": 0.57275390625}, {"start": 1683.71, "end": 1684.27, "word": " you", "probability": 0.57763671875}, {"start": 1684.27, "end": 1684.49, "word": " will", "probability": 0.2490234375}, {"start": 1684.49, "end": 1684.71, "word": " face", "probability": 0.75927734375}, {"start": 1684.71, "end": 1684.79, "word": " all", "probability": 0.41796875}, {"start": 1684.79, "end": 1684.79, "word": " of", "probability": 0.646484375}, {"start": 1684.79, "end": 1684.79, "word": " these", "probability": 0.301025390625}, {"start": 1684.79, "end": 1684.89, "word": " in", "probability": 0.366943359375}, {"start": 1684.89, "end": 1684.97, "word": " your", "probability": 0.8330078125}, {"start": 1684.97, "end": 1685.27, "word": " life.", "probability": 0.876953125}, {"start": 1685.75, "end": 1685.87, "word": " For", "probability": 0.161376953125}, {"start": 1685.87, "end": 1686.03, "word": " example,", "probability": 0.8642578125}, {"start": 1686.03, "end": 1686.03, "word": " you", "probability": 0.404052734375}, {"start": 1686.03, "end": 1686.15, "word": " will", "probability": 0.447998046875}, {"start": 1686.15, "end": 1687.23, "word": " create", "probability": 0.2125244140625}, {"start": 1687.23, "end": 1687.23, "word": " a", "probability": 0.83984375}, {"start": 1687.23, "end": 1687.61, "word": " program", "probability": 0.4375}, {"start": 1687.61, "end": 1687.81, "word": " like", "probability": 0.576171875}, {"start": 1687.81, "end": 1688.09, "word": " this", "probability": 0.8798828125}, {"start": 1688.09, "end": 1688.59, "word": " with", "probability": 0.1392822265625}, {"start": 1688.59, "end": 1688.87, "word": " screens.", "probability": 0.74365234375}, {"start": 1689.61, "end": 1689.81, "word": " Well,", "probability": 0.147705078125}, {"start": 1689.87, "end": 1690.03, "word": " any", "probability": 0.33447265625}, {"start": 1690.03, "end": 1690.37, "word": " program", "probability": 0.8017578125}, {"start": 1690.37, "end": 1690.75, "word": " you", "probability": 0.66943359375}, {"start": 1690.75, "end": 1690.75, "word": " will", "probability": 0.35302734375}, {"start": 1690.75, "end": 1691.03, "word": " create", "probability": 0.61572265625}, {"start": 1691.03, "end": 1691.21, "word": " tomorrow", "probability": 0.5986328125}, {"start": 1691.21, "end": 1691.71, "word": " will", "probability": 0.76171875}, {"start": 1691.71, "end": 1691.97, "word": " have", "probability": 0.73681640625}, {"start": 1691.97, "end": 1692.35, "word": " screens,", "probability": 0.90234375}, {"start": 1692.47, "end": 1692.53, "word": " and", "probability": 0.58740234375}, {"start": 1692.53, "end": 1692.57, "word": " there", "probability": 0.25244140625}, {"start": 1692.57, "end": 1692.63, "word": " will", "probability": 0.84912109375}, {"start": 1692.63, "end": 1693.11, "word": " also", "probability": 0.471923828125}, {"start": 1693.11, "end": 1693.17, "word": " be", "probability": 0.9521484375}, {"start": 1693.17, "end": 1693.17, "word": " shared", "probability": 0.254150390625}, {"start": 1693.17, "end": 1693.59, "word": " things", "probability": 0.423583984375}, {"start": 1693.59, "end": 1693.95, "word": " and", "probability": 0.5185546875}, {"start": 1693.95, "end": 1694.53, "word": " different", "probability": 0.75341796875}, {"start": 1694.53, "end": 1694.53, "word": " things.", "probability": 0.83740234375}, {"start": 1694.83, "end": 1695.23, "word": " So,", "probability": 0.361083984375}, {"start": 1695.23, "end": 1695.41, "word": " this", "probability": 0.71826171875}, {"start": 1695.41, "end": 1695.41, "word": " is", "probability": 0.91259765625}, {"start": 1695.41, "end": 1695.49, "word": " the", "probability": 0.59619140625}, {"start": 1695.49, "end": 1695.91, "word": " scenario", "probability": 0.88134765625}, {"start": 1695.91, "end": 1696.17, "word": " you", "probability": 0.65185546875}, {"start": 1696.17, "end": 1696.51, "word": " face", "probability": 0.4384765625}, {"start": 1696.51, "end": 1696.61, "word": " in", "probability": 0.92529296875}, {"start": 1696.61, "end": 1696.67, "word": " your", "probability": 0.85595703125}, {"start": 1696.67, "end": 1696.95, "word": " life.", "probability": 0.92041015625}, {"start": 1697.71, "end": 1697.99, "word": " I", "probability": 0.50830078125}, {"start": 1697.99, "end": 1698.37, "word": " personally", "probability": 0.4833984375}, {"start": 1698.37, "end": 1698.83, "word": " work", "probability": 0.4619140625}, {"start": 1698.83, "end": 1698.95, "word": " as", "probability": 0.9560546875}, {"start": 1698.95, "end": 1698.97, "word": " a", "probability": 0.98486328125}, {"start": 1698.97, "end": 1699.29, "word": " developer,", "probability": 0.84375}, {"start": 1699.57, "end": 1699.77, "word": " not", "probability": 0.4033203125}, {"start": 1699.77, "end": 1700.23, "word": " as", "probability": 0.28173828125}, {"start": 1700.23, "end": 1700.35, "word": " an", "probability": 0.91064453125}, {"start": 1700.35, "end": 1700.63, "word": " academic.", "probability": 0.943359375}, {"start": 1700.93, "end": 1701.29, "word": " I", "probability": 0.467041015625}, {"start": 1701.29, "end": 1701.29, "word": " find", "probability": 0.358642578125}, {"start": 1701.29, "end": 1701.29, "word": " all", "probability": 0.91650390625}, {"start": 1701.29, "end": 1701.51, "word": " these", "probability": 0.5625}, {"start": 1701.51, "end": 1701.85, "word": " things", "probability": 0.78759765625}, {"start": 1701.85, "end": 1702.63, "word": " in", "probability": 0.79296875}, {"start": 1702.63, "end": 1702.87, "word": " my", "probability": 0.951171875}, {"start": 1702.87, "end": 1702.87, "word": " work.", "probability": 0.53857421875}, {"start": 1703.33, "end": 1703.51, "word": " I", "probability": 0.398681640625}, {"start": 1703.51, "end": 1703.51, "word": " mean,", "probability": 0.2130126953125}, {"start": 1703.55, "end": 1703.69, "word": " I", "probability": 0.95703125}, {"start": 1703.69, "end": 1703.91, "word": " give", "probability": 0.6962890625}, {"start": 1703.91, "end": 1704.53, "word": " you", "probability": 0.9365234375}, {"start": 1704.53, "end": 1704.79, "word": " ...", "probability": 0.17431640625}, {"start": 1704.79, "end": 1705.07, "word": " what", "probability": 0.34814453125}, {"start": 1705.07, "end": 1705.17, "word": " do", "probability": 0.501953125}, {"start": 1705.17, "end": 1705.17, "word": " they", "probability": 0.4814453125}, {"start": 1705.17, "end": 1705.27, "word": " call", "probability": 0.89892578125}, {"start": 1705.27, "end": 1705.35, "word": " it?", "probability": 0.849609375}, {"start": 1705.53, "end": 1705.71, "word": " Butter?", "probability": 0.80859375}, {"start": 1706.59, "end": 1707.11, "word": " Yes,", "probability": 0.251220703125}, {"start": 1707.89, "end": 1708.53, "word": " these", "probability": 0.1116943359375}, {"start": 1708.53, "end": 1708.97, "word": " things", "probability": 0.382080078125}, {"start": 1708.97, "end": 1709.17, "word": " you", "probability": 0.75}, {"start": 1709.17, "end": 1709.33, "word": " will", "probability": 0.81787109375}, {"start": 1709.33, "end": 1709.55, "word": " face", "probability": 0.7333984375}, {"start": 1709.55, "end": 1709.75, "word": " in", "probability": 0.83544921875}, {"start": 1709.75, "end": 1709.75, "word": " your", "probability": 0.85595703125}, {"start": 1709.75, "end": 1709.89, "word": " work", "probability": 0.779296875}, {"start": 1709.89, "end": 1710.09, "word": " in", "probability": 0.73583984375}, {"start": 1710.09, "end": 1710.17, "word": " the", "probability": 0.90673828125}, {"start": 1710.17, "end": 1710.37, "word": " market", "probability": 0.75732421875}, {"start": 1710.37, "end": 1710.69, "word": " tomorrow.", "probability": 0.841796875}], "temperature": 1.0}, {"id": 67, "seek": 172656, "start": 1712.52, "end": 1726.56, "text": "Okay guys, let's start with a presentation on a new design pattern called Singleton Design Pattern Okay, we're not going to do an implementation of it, but we're going to present this lecture and next time we'll start the implementation directly", "tokens": [8297, 1074, 11, 718, 311, 722, 365, 257, 5860, 322, 257, 777, 1715, 5102, 1219, 7474, 14806, 12748, 34367, 77, 1033, 11, 321, 434, 406, 516, 281, 360, 364, 11420, 295, 309, 11, 457, 321, 434, 516, 281, 1974, 341, 7991, 293, 958, 565, 321, 603, 722, 264, 11420, 3838], "avg_logprob": -0.5416666760164148, "compression_ratio": 1.611842105263158, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 1712.52, "end": 1712.8, "word": "Okay", "probability": 0.10986328125}, {"start": 1712.8, "end": 1713.16, "word": " guys,", "probability": 0.467529296875}, {"start": 1713.32, "end": 1713.86, "word": " let's", "probability": 0.581298828125}, {"start": 1713.86, "end": 1714.06, "word": " start", "probability": 0.61376953125}, {"start": 1714.06, "end": 1714.2, "word": " with", "probability": 0.45947265625}, {"start": 1714.2, "end": 1714.78, "word": " a", "probability": 0.638671875}, {"start": 1714.78, "end": 1714.78, "word": " presentation", "probability": 0.303466796875}, {"start": 1714.78, "end": 1715.18, "word": " on", "probability": 0.6259765625}, {"start": 1715.18, "end": 1715.26, "word": " a", "probability": 0.82568359375}, {"start": 1715.26, "end": 1715.28, "word": " new", "probability": 0.85791015625}, {"start": 1715.28, "end": 1715.54, "word": " design", "probability": 0.66845703125}, {"start": 1715.54, "end": 1716.08, "word": " pattern", "probability": 0.88427734375}, {"start": 1716.08, "end": 1716.5, "word": " called", "probability": 0.4912109375}, {"start": 1716.5, "end": 1717.64, "word": " Singleton", "probability": 0.66357421875}, {"start": 1717.64, "end": 1718.6, "word": " Design", "probability": 0.841796875}, {"start": 1718.6, "end": 1719.62, "word": " Pattern", "probability": 0.9716796875}, {"start": 1719.62, "end": 1719.94, "word": " Okay,", "probability": 0.2303466796875}, {"start": 1720.16, "end": 1720.24, "word": " we're", "probability": 0.4747314453125}, {"start": 1720.24, "end": 1720.24, "word": " not", "probability": 0.9345703125}, {"start": 1720.24, "end": 1720.56, "word": " going", "probability": 0.796875}, {"start": 1720.56, "end": 1720.56, "word": " to", "probability": 0.96630859375}, {"start": 1720.56, "end": 1720.88, "word": " do", "probability": 0.1534423828125}, {"start": 1720.88, "end": 1721.34, "word": " an", "probability": 0.58251953125}, {"start": 1721.34, "end": 1721.72, "word": " implementation", "probability": 0.89697265625}, {"start": 1721.72, "end": 1721.98, "word": " of", "probability": 0.438720703125}, {"start": 1721.98, "end": 1722.02, "word": " it,", "probability": 0.6650390625}, {"start": 1722.06, "end": 1722.18, "word": " but", "probability": 0.77978515625}, {"start": 1722.18, "end": 1722.58, "word": " we're", "probability": 0.59716796875}, {"start": 1722.58, "end": 1722.64, "word": " going", "probability": 0.77294921875}, {"start": 1722.64, "end": 1722.7, "word": " to", "probability": 0.96923828125}, {"start": 1722.7, "end": 1722.9, "word": " present", "probability": 0.3173828125}, {"start": 1722.9, "end": 1723.18, "word": " this", "probability": 0.5947265625}, {"start": 1723.18, "end": 1723.54, "word": " lecture", "probability": 0.732421875}, {"start": 1723.54, "end": 1724.3, "word": " and", "probability": 0.463623046875}, {"start": 1724.3, "end": 1724.42, "word": " next", "probability": 0.55029296875}, {"start": 1724.42, "end": 1724.6, "word": " time", "probability": 0.86181640625}, {"start": 1724.6, "end": 1724.84, "word": " we'll", "probability": 0.6126708984375}, {"start": 1724.84, "end": 1724.96, "word": " start", "probability": 0.74462890625}, {"start": 1724.96, "end": 1725.04, "word": " the", "probability": 0.34765625}, {"start": 1725.04, "end": 1725.72, "word": " implementation", "probability": 0.87109375}, {"start": 1725.72, "end": 1726.56, "word": " directly", "probability": 0.724609375}], "temperature": 1.0}, {"id": 68, "seek": 175380, "start": 1727.86, "end": 1753.8, "text": "The single-tool pattern is necessary in the first class of Design Patterns, which is the Creational Design Pattern. All the design patterns that we explained, the three of them, are related to the construction of objects. But each one has a goal. The factory collects the construction in one class. The builder facilitates the construction of the object, which the constructor takes many parameters. The factory method allows the subclasses to create the object.", "tokens": [2278, 2167, 12, 83, 1092, 5102, 307, 4818, 294, 264, 700, 1508, 295, 12748, 34367, 3695, 11, 597, 307, 264, 11972, 1966, 12748, 34367, 77, 13, 1057, 264, 1715, 8294, 300, 321, 8825, 11, 264, 1045, 295, 552, 11, 366, 4077, 281, 264, 6435, 295, 6565, 13, 583, 1184, 472, 575, 257, 3387, 13, 440, 9265, 39897, 264, 6435, 294, 472, 1508, 13, 440, 27377, 10217, 30035, 264, 6435, 295, 264, 2657, 11, 597, 264, 47479, 2516, 867, 9834, 13, 440, 9265, 3170, 4045, 264, 1422, 11665, 279, 281, 1884, 264, 2657, 13], "avg_logprob": -0.43151595871499243, "compression_ratio": 1.9012345679012346, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1727.86, "end": 1728.1, "word": "The", "probability": 0.5712890625}, {"start": 1728.1, "end": 1728.34, "word": " single", "probability": 0.5634765625}, {"start": 1728.34, "end": 1728.54, "word": "-tool", "probability": 0.63232421875}, {"start": 1728.54, "end": 1728.84, "word": " pattern", "probability": 0.6748046875}, {"start": 1728.84, "end": 1729.1, "word": " is", "probability": 0.505859375}, {"start": 1729.1, "end": 1729.5, "word": " necessary", "probability": 0.107666015625}, {"start": 1729.5, "end": 1730.12, "word": " in", "probability": 0.70703125}, {"start": 1730.12, "end": 1730.24, "word": " the", "probability": 0.900390625}, {"start": 1730.24, "end": 1730.84, "word": " first", "probability": 0.85986328125}, {"start": 1730.84, "end": 1730.84, "word": " class", "probability": 0.6572265625}, {"start": 1730.84, "end": 1731.04, "word": " of", "probability": 0.43701171875}, {"start": 1731.04, "end": 1731.44, "word": " Design", "probability": 0.21728515625}, {"start": 1731.44, "end": 1731.84, "word": " Patterns,", "probability": 0.9287109375}, {"start": 1731.92, "end": 1731.92, "word": " which", "probability": 0.5888671875}, {"start": 1731.92, "end": 1732.0, "word": " is", "probability": 0.87255859375}, {"start": 1732.0, "end": 1732.14, "word": " the", "probability": 0.734375}, {"start": 1732.14, "end": 1732.8, "word": " Creational", "probability": 0.45001220703125}, {"start": 1732.8, "end": 1733.7, "word": " Design", "probability": 0.94775390625}, {"start": 1733.7, "end": 1734.0, "word": " Pattern.", "probability": 0.871337890625}, {"start": 1734.12, "end": 1734.28, "word": " All", "probability": 0.77099609375}, {"start": 1734.28, "end": 1735.36, "word": " the", "probability": 0.348388671875}, {"start": 1735.36, "end": 1735.74, "word": " design", "probability": 0.366455078125}, {"start": 1735.74, "end": 1736.02, "word": " patterns", "probability": 0.88916015625}, {"start": 1736.02, "end": 1736.1, "word": " that", "probability": 0.400390625}, {"start": 1736.1, "end": 1736.1, "word": " we", "probability": 0.89990234375}, {"start": 1736.1, "end": 1736.4, "word": " explained,", "probability": 0.28857421875}, {"start": 1736.62, "end": 1736.82, "word": " the", "probability": 0.440185546875}, {"start": 1736.82, "end": 1737.18, "word": " three", "probability": 0.84912109375}, {"start": 1737.18, "end": 1737.36, "word": " of", "probability": 0.6650390625}, {"start": 1737.36, "end": 1737.36, "word": " them,", "probability": 0.890625}, {"start": 1737.64, "end": 1737.82, "word": " are", "probability": 0.450439453125}, {"start": 1737.82, "end": 1738.06, "word": " related", "probability": 0.8212890625}, {"start": 1738.06, "end": 1738.26, "word": " to", "probability": 0.96923828125}, {"start": 1738.26, "end": 1738.3, "word": " the", "probability": 0.366943359375}, {"start": 1738.3, "end": 1738.48, "word": " construction", "probability": 0.6396484375}, {"start": 1738.48, "end": 1738.58, "word": " of", "probability": 0.9716796875}, {"start": 1738.58, "end": 1738.86, "word": " objects.", "probability": 0.50146484375}, {"start": 1738.98, "end": 1739.1, "word": " But", "probability": 0.79150390625}, {"start": 1739.1, "end": 1739.26, "word": " each", "probability": 0.90283203125}, {"start": 1739.26, "end": 1739.38, "word": " one", "probability": 0.40576171875}, {"start": 1739.38, "end": 1739.5, "word": " has", "probability": 0.818359375}, {"start": 1739.5, "end": 1739.54, "word": " a", "probability": 0.89697265625}, {"start": 1739.54, "end": 1739.78, "word": " goal.", "probability": 0.64208984375}, {"start": 1740.52, "end": 1740.66, "word": " The", "probability": 0.81005859375}, {"start": 1740.66, "end": 1741.02, "word": " factory", "probability": 0.7099609375}, {"start": 1741.02, "end": 1741.46, "word": " collects", "probability": 0.44140625}, {"start": 1741.46, "end": 1741.64, "word": " the", "probability": 0.440185546875}, {"start": 1741.64, "end": 1741.9, "word": " construction", "probability": 0.6455078125}, {"start": 1741.9, "end": 1742.6, "word": " in", "probability": 0.77392578125}, {"start": 1742.6, "end": 1742.7, "word": " one", "probability": 0.79296875}, {"start": 1742.7, "end": 1742.94, "word": " class.", "probability": 0.9599609375}, {"start": 1743.96, "end": 1744.2, "word": " The", "probability": 0.8740234375}, {"start": 1744.2, "end": 1744.68, "word": " builder", "probability": 0.92236328125}, {"start": 1744.68, "end": 1745.72, "word": " facilitates", "probability": 0.849853515625}, {"start": 1745.72, "end": 1745.82, "word": " the", "probability": 0.87646484375}, {"start": 1745.82, "end": 1746.34, "word": " construction", "probability": 0.80224609375}, {"start": 1746.34, "end": 1746.52, "word": " of", "probability": 0.87451171875}, {"start": 1746.52, "end": 1746.58, "word": " the", "probability": 0.4873046875}, {"start": 1746.58, "end": 1746.88, "word": " object,", "probability": 0.87841796875}, {"start": 1746.98, "end": 1747.06, "word": " which", "probability": 0.55126953125}, {"start": 1747.06, "end": 1747.12, "word": " the", "probability": 0.353515625}, {"start": 1747.12, "end": 1747.64, "word": " constructor", "probability": 0.89892578125}, {"start": 1747.64, "end": 1748.06, "word": " takes", "probability": 0.49462890625}, {"start": 1748.06, "end": 1748.24, "word": " many", "probability": 0.568359375}, {"start": 1748.24, "end": 1748.64, "word": " parameters.", "probability": 0.97021484375}, {"start": 1749.56, "end": 1750.04, "word": " The", "probability": 0.87548828125}, {"start": 1750.04, "end": 1750.34, "word": " factory", "probability": 0.83154296875}, {"start": 1750.34, "end": 1750.92, "word": " method", "probability": 0.9501953125}, {"start": 1750.92, "end": 1751.78, "word": " allows", "probability": 0.33740234375}, {"start": 1751.78, "end": 1751.92, "word": " the", "probability": 0.72802734375}, {"start": 1751.92, "end": 1752.68, "word": " subclasses", "probability": 0.8414713541666666}, {"start": 1752.68, "end": 1752.94, "word": " to", "probability": 0.9267578125}, {"start": 1752.94, "end": 1753.22, "word": " create", "probability": 0.320556640625}, {"start": 1753.22, "end": 1753.38, "word": " the", "probability": 0.8525390625}, {"start": 1753.38, "end": 1753.8, "word": " object.", "probability": 0.9140625}], "temperature": 1.0}, {"id": 69, "seek": 178236, "start": 1754.58, "end": 1782.36, "text": "Okay? For those who don't know and still have the common code in the super, class. The fourth design pattern related to creation is the singleton pattern. It is one of the simplest design patterns and at the same time important and widely used. In short, I say singleton design pattern. It is a design pattern that we use when we need to have a single class. I want to create only one object in the class. I want to use it in the entire application.", "tokens": [8297, 30, 1171, 729, 567, 500, 380, 458, 293, 920, 362, 264, 2689, 3089, 294, 264, 1687, 11, 1508, 13, 440, 6409, 1715, 5102, 4077, 281, 8016, 307, 264, 1522, 14806, 5102, 13, 467, 307, 472, 295, 264, 22811, 1715, 8294, 293, 412, 264, 912, 565, 1021, 293, 13371, 1143, 13, 682, 2099, 11, 286, 584, 1522, 14806, 1715, 5102, 13, 467, 307, 257, 1715, 5102, 300, 321, 764, 562, 321, 643, 281, 362, 257, 2167, 1508, 13, 286, 528, 281, 1884, 787, 472, 2657, 294, 264, 1508, 13, 286, 528, 281, 764, 309, 294, 264, 2302, 3861, 13], "avg_logprob": -0.4534375002980232, "compression_ratio": 1.8865546218487395, "no_speech_prob": 3.874301910400391e-06, "words": [{"start": 1754.58, "end": 1754.9, "word": "Okay?", "probability": 0.159423828125}, {"start": 1755.18, "end": 1755.6, "word": " For", "probability": 0.1666259765625}, {"start": 1755.6, "end": 1755.62, "word": " those", "probability": 0.7265625}, {"start": 1755.62, "end": 1755.66, "word": " who", "probability": 0.72216796875}, {"start": 1755.66, "end": 1756.22, "word": " don't", "probability": 0.76318359375}, {"start": 1756.22, "end": 1756.7, "word": " know", "probability": 0.82568359375}, {"start": 1756.7, "end": 1757.0, "word": " and", "probability": 0.287841796875}, {"start": 1757.0, "end": 1757.26, "word": " still", "probability": 0.159912109375}, {"start": 1757.26, "end": 1757.44, "word": " have", "probability": 0.285400390625}, {"start": 1757.44, "end": 1757.48, "word": " the", "probability": 0.69140625}, {"start": 1757.48, "end": 1757.94, "word": " common", "probability": 0.234619140625}, {"start": 1757.94, "end": 1758.02, "word": " code", "probability": 0.83251953125}, {"start": 1758.02, "end": 1758.2, "word": " in", "probability": 0.6455078125}, {"start": 1758.2, "end": 1758.32, "word": " the", "probability": 0.371337890625}, {"start": 1758.32, "end": 1758.56, "word": " super,", "probability": 0.541015625}, {"start": 1758.8, "end": 1759.5, "word": " class.", "probability": 0.30029296875}, {"start": 1760.0, "end": 1760.24, "word": " The", "probability": 0.80615234375}, {"start": 1760.24, "end": 1760.48, "word": " fourth", "probability": 0.88232421875}, {"start": 1760.48, "end": 1760.52, "word": " design", "probability": 0.787109375}, {"start": 1760.52, "end": 1761.12, "word": " pattern", "probability": 0.88818359375}, {"start": 1761.12, "end": 1761.52, "word": " related", "probability": 0.21728515625}, {"start": 1761.52, "end": 1761.8, "word": " to", "probability": 0.95166015625}, {"start": 1761.8, "end": 1762.2, "word": " creation", "probability": 0.8701171875}, {"start": 1762.2, "end": 1762.4, "word": " is", "probability": 0.876953125}, {"start": 1762.4, "end": 1762.54, "word": " the", "probability": 0.6083984375}, {"start": 1762.54, "end": 1762.86, "word": " singleton", "probability": 0.847900390625}, {"start": 1762.86, "end": 1763.2, "word": " pattern.", "probability": 0.89111328125}, {"start": 1763.38, "end": 1763.48, "word": " It", "probability": 0.81884765625}, {"start": 1763.48, "end": 1763.56, "word": " is", "probability": 0.72265625}, {"start": 1763.56, "end": 1763.82, "word": " one", "probability": 0.9091796875}, {"start": 1763.82, "end": 1764.16, "word": " of", "probability": 0.97265625}, {"start": 1764.16, "end": 1764.36, "word": " the", "probability": 0.923828125}, {"start": 1764.36, "end": 1764.58, "word": " simplest", "probability": 0.9091796875}, {"start": 1764.58, "end": 1765.04, "word": " design", "probability": 0.8896484375}, {"start": 1765.04, "end": 1765.5, "word": " patterns", "probability": 0.892578125}, {"start": 1765.5, "end": 1765.92, "word": " and", "probability": 0.42724609375}, {"start": 1765.92, "end": 1766.0, "word": " at", "probability": 0.57568359375}, {"start": 1766.0, "end": 1766.3, "word": " the", "probability": 0.927734375}, {"start": 1766.3, "end": 1766.3, "word": " same", "probability": 0.90576171875}, {"start": 1766.3, "end": 1766.78, "word": " time", "probability": 0.8564453125}, {"start": 1766.78, "end": 1767.9, "word": " important", "probability": 0.440673828125}, {"start": 1767.9, "end": 1768.16, "word": " and", "probability": 0.82861328125}, {"start": 1768.16, "end": 1768.72, "word": " widely", "probability": 0.78955078125}, {"start": 1768.72, "end": 1768.72, "word": " used.", "probability": 0.92431640625}, {"start": 1769.64, "end": 1769.82, "word": " In", "probability": 0.63916015625}, {"start": 1769.82, "end": 1770.16, "word": " short,", "probability": 0.55810546875}, {"start": 1770.64, "end": 1771.04, "word": " I", "probability": 0.325927734375}, {"start": 1771.04, "end": 1771.2, "word": " say", "probability": 0.5234375}, {"start": 1771.2, "end": 1771.68, "word": " singleton", "probability": 0.6064453125}, {"start": 1771.68, "end": 1771.98, "word": " design", "probability": 0.884765625}, {"start": 1771.98, "end": 1772.38, "word": " pattern.", "probability": 0.85009765625}, {"start": 1772.44, "end": 1772.56, "word": " It", "probability": 0.6669921875}, {"start": 1772.56, "end": 1772.56, "word": " is", "probability": 0.81494140625}, {"start": 1772.56, "end": 1772.64, "word": " a", "probability": 0.880859375}, {"start": 1772.64, "end": 1772.9, "word": " design", "probability": 0.91455078125}, {"start": 1772.9, "end": 1773.24, "word": " pattern", "probability": 0.87255859375}, {"start": 1773.24, "end": 1773.38, "word": " that", "probability": 0.64013671875}, {"start": 1773.38, "end": 1773.48, "word": " we", "probability": 0.8115234375}, {"start": 1773.48, "end": 1774.06, "word": " use", "probability": 0.86376953125}, {"start": 1774.06, "end": 1774.78, "word": " when", "probability": 0.8359375}, {"start": 1774.78, "end": 1775.0, "word": " we", "probability": 0.6259765625}, {"start": 1775.0, "end": 1775.4, "word": " need", "probability": 0.89697265625}, {"start": 1775.4, "end": 1775.78, "word": " to", "probability": 0.53466796875}, {"start": 1775.78, "end": 1776.2, "word": " have", "probability": 0.8466796875}, {"start": 1776.2, "end": 1776.34, "word": " a", "probability": 0.317626953125}, {"start": 1776.34, "end": 1776.96, "word": " single", "probability": 0.734375}, {"start": 1776.96, "end": 1777.02, "word": " class.", "probability": 0.9609375}, {"start": 1777.74, "end": 1778.26, "word": " I", "probability": 0.312255859375}, {"start": 1778.26, "end": 1778.52, "word": " want", "probability": 0.498046875}, {"start": 1778.52, "end": 1778.58, "word": " to", "probability": 0.95654296875}, {"start": 1778.58, "end": 1778.82, "word": " create", "probability": 0.69140625}, {"start": 1778.82, "end": 1779.26, "word": " only", "probability": 0.31005859375}, {"start": 1779.26, "end": 1779.52, "word": " one", "probability": 0.91552734375}, {"start": 1779.52, "end": 1779.84, "word": " object", "probability": 0.97705078125}, {"start": 1779.84, "end": 1779.86, "word": " in", "probability": 0.55908203125}, {"start": 1779.86, "end": 1779.86, "word": " the", "probability": 0.26708984375}, {"start": 1779.86, "end": 1779.86, "word": " class.", "probability": 0.892578125}, {"start": 1780.68, "end": 1781.2, "word": " I", "probability": 0.78076171875}, {"start": 1781.2, "end": 1781.32, "word": " want", "probability": 0.7275390625}, {"start": 1781.32, "end": 1781.38, "word": " to", "probability": 0.96142578125}, {"start": 1781.38, "end": 1781.64, "word": " use", "probability": 0.87841796875}, {"start": 1781.64, "end": 1781.72, "word": " it", "probability": 0.8701171875}, {"start": 1781.72, "end": 1781.8, "word": " in", "probability": 0.8369140625}, {"start": 1781.8, "end": 1781.98, "word": " the", "probability": 0.7978515625}, {"start": 1781.98, "end": 1781.98, "word": " entire", "probability": 0.517578125}, {"start": 1781.98, "end": 1782.36, "word": " application.", "probability": 0.75244140625}], "temperature": 1.0}, {"id": 70, "seek": 180930, "start": 1783.94, "end": 1809.3, "text": " What does this mean? For example, sometimes you create an application that has many screens, whether it is a web page or a mobile application that has screens, and from all the screens, you need to connect to the database. This screen is your model, you enter the data, you save it in the database. The second screen is a view, it creates a query on the database, it brings the data and shows it to you.", "tokens": [708, 775, 341, 914, 30, 1171, 1365, 11, 2171, 291, 1884, 364, 3861, 300, 575, 867, 11171, 11, 1968, 309, 307, 257, 3670, 3028, 420, 257, 6013, 3861, 300, 575, 11171, 11, 293, 490, 439, 264, 11171, 11, 291, 643, 281, 1745, 281, 264, 8149, 13, 639, 2568, 307, 428, 2316, 11, 291, 3242, 264, 1412, 11, 291, 3155, 309, 294, 264, 8149, 13, 440, 1150, 2568, 307, 257, 1910, 11, 309, 7829, 257, 14581, 322, 264, 8149, 11, 309, 5607, 264, 1412, 293, 3110, 309, 281, 291, 13], "avg_logprob": -0.46597221427493624, "compression_ratio": 1.853211009174312, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1783.94, "end": 1784.22, "word": " What", "probability": 0.0789794921875}, {"start": 1784.22, "end": 1784.26, "word": " does", "probability": 0.6337890625}, {"start": 1784.26, "end": 1784.5, "word": " this", "probability": 0.363037109375}, {"start": 1784.5, "end": 1784.5, "word": " mean?", "probability": 0.95751953125}, {"start": 1784.7, "end": 1784.74, "word": " For", "probability": 0.46533203125}, {"start": 1784.74, "end": 1784.86, "word": " example,", "probability": 0.86572265625}, {"start": 1785.84, "end": 1787.08, "word": " sometimes", "probability": 0.56201171875}, {"start": 1787.08, "end": 1788.4, "word": " you", "probability": 0.67333984375}, {"start": 1788.4, "end": 1788.66, "word": " create", "probability": 0.31005859375}, {"start": 1788.66, "end": 1788.82, "word": " an", "probability": 0.8564453125}, {"start": 1788.82, "end": 1789.1, "word": " application", "probability": 0.60888671875}, {"start": 1789.1, "end": 1789.24, "word": " that", "probability": 0.49658203125}, {"start": 1789.24, "end": 1789.36, "word": " has", "probability": 0.90185546875}, {"start": 1789.36, "end": 1790.0, "word": " many", "probability": 0.50732421875}, {"start": 1790.0, "end": 1790.0, "word": " screens,", "probability": 0.7958984375}, {"start": 1791.06, "end": 1791.32, "word": " whether", "probability": 0.36181640625}, {"start": 1791.32, "end": 1791.56, "word": " it", "probability": 0.431884765625}, {"start": 1791.56, "end": 1791.62, "word": " is", "probability": 0.4833984375}, {"start": 1791.62, "end": 1792.06, "word": " a", "probability": 0.81787109375}, {"start": 1792.06, "end": 1792.26, "word": " web", "probability": 0.82568359375}, {"start": 1792.26, "end": 1792.28, "word": " page", "probability": 0.70556640625}, {"start": 1792.28, "end": 1793.0, "word": " or", "probability": 0.60791015625}, {"start": 1793.0, "end": 1793.1, "word": " a", "probability": 0.89306640625}, {"start": 1793.1, "end": 1793.56, "word": " mobile", "probability": 0.9189453125}, {"start": 1793.56, "end": 1793.84, "word": " application", "probability": 0.71337890625}, {"start": 1793.84, "end": 1794.02, "word": " that", "probability": 0.388427734375}, {"start": 1794.02, "end": 1794.14, "word": " has", "probability": 0.8603515625}, {"start": 1794.14, "end": 1794.54, "word": " screens,", "probability": 0.736328125}, {"start": 1794.78, "end": 1794.96, "word": " and", "probability": 0.8046875}, {"start": 1794.96, "end": 1795.08, "word": " from", "probability": 0.50244140625}, {"start": 1795.08, "end": 1795.8, "word": " all", "probability": 0.7744140625}, {"start": 1795.8, "end": 1795.9, "word": " the", "probability": 0.31982421875}, {"start": 1795.9, "end": 1796.2, "word": " screens,", "probability": 0.93017578125}, {"start": 1796.32, "end": 1796.42, "word": " you", "probability": 0.935546875}, {"start": 1796.42, "end": 1796.68, "word": " need", "probability": 0.7294921875}, {"start": 1796.68, "end": 1796.92, "word": " to", "probability": 0.97021484375}, {"start": 1796.92, "end": 1797.42, "word": " connect", "probability": 0.501953125}, {"start": 1797.42, "end": 1797.66, "word": " to", "probability": 0.90625}, {"start": 1797.66, "end": 1797.74, "word": " the", "probability": 0.81201171875}, {"start": 1797.74, "end": 1798.02, "word": " database.", "probability": 0.91796875}, {"start": 1798.88, "end": 1799.32, "word": " This", "probability": 0.54296875}, {"start": 1799.32, "end": 1799.7, "word": " screen", "probability": 0.587890625}, {"start": 1799.7, "end": 1799.88, "word": " is", "probability": 0.86767578125}, {"start": 1799.88, "end": 1800.18, "word": " your", "probability": 0.427001953125}, {"start": 1800.18, "end": 1800.46, "word": " model,", "probability": 0.5615234375}, {"start": 1800.64, "end": 1800.68, "word": " you", "probability": 0.341552734375}, {"start": 1800.68, "end": 1800.92, "word": " enter", "probability": 0.419677734375}, {"start": 1800.92, "end": 1801.02, "word": " the", "probability": 0.49560546875}, {"start": 1801.02, "end": 1801.2, "word": " data,", "probability": 0.8388671875}, {"start": 1801.42, "end": 1801.58, "word": " you", "probability": 0.34228515625}, {"start": 1801.58, "end": 1802.04, "word": " save", "probability": 0.438232421875}, {"start": 1802.04, "end": 1802.12, "word": " it", "probability": 0.81396484375}, {"start": 1802.12, "end": 1803.18, "word": " in", "probability": 0.45947265625}, {"start": 1803.18, "end": 1803.28, "word": " the", "probability": 0.88818359375}, {"start": 1803.28, "end": 1803.62, "word": " database.", "probability": 0.9365234375}, {"start": 1804.76, "end": 1805.2, "word": " The", "probability": 0.8623046875}, {"start": 1805.2, "end": 1805.76, "word": " second", "probability": 0.46533203125}, {"start": 1805.76, "end": 1805.76, "word": " screen", "probability": 0.80712890625}, {"start": 1805.76, "end": 1805.96, "word": " is", "probability": 0.82470703125}, {"start": 1805.96, "end": 1806.32, "word": " a", "probability": 0.591796875}, {"start": 1806.32, "end": 1806.58, "word": " view,", "probability": 0.73779296875}, {"start": 1806.74, "end": 1806.98, "word": " it", "probability": 0.71142578125}, {"start": 1806.98, "end": 1807.14, "word": " creates", "probability": 0.294921875}, {"start": 1807.14, "end": 1807.26, "word": " a", "probability": 0.95458984375}, {"start": 1807.26, "end": 1807.42, "word": " query", "probability": 0.76171875}, {"start": 1807.42, "end": 1807.58, "word": " on", "probability": 0.59521484375}, {"start": 1807.58, "end": 1807.68, "word": " the", "probability": 0.91748046875}, {"start": 1807.68, "end": 1807.98, "word": " database,", "probability": 0.94921875}, {"start": 1808.1, "end": 1808.12, "word": " it", "probability": 0.42822265625}, {"start": 1808.12, "end": 1808.22, "word": " brings", "probability": 0.400634765625}, {"start": 1808.22, "end": 1808.34, "word": " the", "probability": 0.66162109375}, {"start": 1808.34, "end": 1808.56, "word": " data", "probability": 0.921875}, {"start": 1808.56, "end": 1808.88, "word": " and", "probability": 0.50439453125}, {"start": 1808.88, "end": 1809.08, "word": " shows", "probability": 0.54833984375}, {"start": 1809.08, "end": 1809.24, "word": " it", "probability": 0.60302734375}, {"start": 1809.24, "end": 1809.24, "word": " to", "probability": 0.921875}, {"start": 1809.24, "end": 1809.3, "word": " you.", "probability": 0.95703125}], "temperature": 1.0}, {"id": 71, "seek": 183987, "start": 1810.45, "end": 1839.87, "text": " Okay? The third screen is also a view, but it makes another table in the database. That is, in fact, in each screen you need to make a connect on the database and make a query. So when you make a connect on the database, in each screen, of course, the connection to the database must be present in a class and a method. Okay? Whenever I want to open a screen that needs to connect to the database, I want to create the object of this connection that needs to connect to the database.", "tokens": [1033, 30, 440, 2636, 2568, 307, 611, 257, 1910, 11, 457, 309, 1669, 1071, 3199, 294, 264, 8149, 13, 663, 307, 11, 294, 1186, 11, 294, 1184, 2568, 291, 643, 281, 652, 257, 1745, 322, 264, 8149, 293, 652, 257, 14581, 13, 407, 562, 291, 652, 257, 1745, 322, 264, 8149, 11, 294, 1184, 2568, 11, 295, 1164, 11, 264, 4984, 281, 264, 8149, 1633, 312, 1974, 294, 257, 1508, 293, 257, 3170, 13, 1033, 30, 14159, 286, 528, 281, 1269, 257, 2568, 300, 2203, 281, 1745, 281, 264, 8149, 11, 286, 528, 281, 1884, 264, 2657, 295, 341, 4984, 300, 2203, 281, 1745, 281, 264, 8149, 13], "avg_logprob": -0.37098624071943653, "compression_ratio": 2.11353711790393, "no_speech_prob": 5.245208740234375e-06, "words": [{"start": 1810.4499999999998, "end": 1810.85, "word": " Okay?", "probability": 0.0716552734375}, {"start": 1811.03, "end": 1811.39, "word": " The", "probability": 0.7822265625}, {"start": 1811.39, "end": 1811.87, "word": " third", "probability": 0.91015625}, {"start": 1811.87, "end": 1811.87, "word": " screen", "probability": 0.7646484375}, {"start": 1811.87, "end": 1812.07, "word": " is", "probability": 0.78369140625}, {"start": 1812.07, "end": 1812.25, "word": " also", "probability": 0.697265625}, {"start": 1812.25, "end": 1812.33, "word": " a", "probability": 0.44873046875}, {"start": 1812.33, "end": 1812.49, "word": " view,", "probability": 0.80615234375}, {"start": 1812.61, "end": 1812.69, "word": " but", "probability": 0.84375}, {"start": 1812.69, "end": 1812.81, "word": " it", "probability": 0.63525390625}, {"start": 1812.81, "end": 1812.95, "word": " makes", "probability": 0.1962890625}, {"start": 1812.95, "end": 1813.11, "word": " another", "probability": 0.4794921875}, {"start": 1813.11, "end": 1813.57, "word": " table", "probability": 0.763671875}, {"start": 1813.57, "end": 1814.49, "word": " in", "probability": 0.837890625}, {"start": 1814.49, "end": 1814.61, "word": " the", "probability": 0.91064453125}, {"start": 1814.61, "end": 1814.91, "word": " database.", "probability": 0.923828125}, {"start": 1815.17, "end": 1815.45, "word": " That", "probability": 0.169677734375}, {"start": 1815.45, "end": 1815.51, "word": " is,", "probability": 0.426513671875}, {"start": 1815.61, "end": 1815.65, "word": " in", "probability": 0.412353515625}, {"start": 1815.65, "end": 1815.85, "word": " fact,", "probability": 0.6044921875}, {"start": 1816.07, "end": 1816.21, "word": " in", "probability": 0.443603515625}, {"start": 1816.21, "end": 1816.43, "word": " each", "probability": 0.8046875}, {"start": 1816.43, "end": 1816.65, "word": " screen", "probability": 0.84619140625}, {"start": 1816.65, "end": 1816.81, "word": " you", "probability": 0.5791015625}, {"start": 1816.81, "end": 1817.31, "word": " need", "probability": 0.7568359375}, {"start": 1817.31, "end": 1817.45, "word": " to", "probability": 0.96484375}, {"start": 1817.45, "end": 1817.57, "word": " make", "probability": 0.29296875}, {"start": 1817.57, "end": 1817.69, "word": " a", "probability": 0.92333984375}, {"start": 1817.69, "end": 1818.03, "word": " connect", "probability": 0.59423828125}, {"start": 1818.03, "end": 1818.23, "word": " on", "probability": 0.533203125}, {"start": 1818.23, "end": 1818.33, "word": " the", "probability": 0.8935546875}, {"start": 1818.33, "end": 1818.57, "word": " database", "probability": 0.9404296875}, {"start": 1818.57, "end": 1818.73, "word": " and", "probability": 0.80859375}, {"start": 1818.73, "end": 1818.97, "word": " make", "probability": 0.6064453125}, {"start": 1818.97, "end": 1819.65, "word": " a", "probability": 0.9384765625}, {"start": 1819.65, "end": 1819.95, "word": " query.", "probability": 0.9453125}, {"start": 1820.81, "end": 1821.13, "word": " So", "probability": 0.79150390625}, {"start": 1821.13, "end": 1821.31, "word": " when", "probability": 0.662109375}, {"start": 1821.31, "end": 1821.39, "word": " you", "probability": 0.9345703125}, {"start": 1821.39, "end": 1821.77, "word": " make", "probability": 0.59814453125}, {"start": 1821.77, "end": 1822.05, "word": " a", "probability": 0.8662109375}, {"start": 1822.05, "end": 1822.39, "word": " connect", "probability": 0.8740234375}, {"start": 1822.39, "end": 1822.65, "word": " on", "probability": 0.81298828125}, {"start": 1822.65, "end": 1823.41, "word": " the", "probability": 0.861328125}, {"start": 1823.41, "end": 1823.89, "word": " database,", "probability": 0.943359375}, {"start": 1824.61, "end": 1824.69, "word": " in", "probability": 0.673828125}, {"start": 1824.69, "end": 1824.95, "word": " each", "probability": 0.89208984375}, {"start": 1824.95, "end": 1825.41, "word": " screen,", "probability": 0.861328125}, {"start": 1825.91, "end": 1826.03, "word": " of", "probability": 0.46923828125}, {"start": 1826.03, "end": 1826.21, "word": " course,", "probability": 0.96484375}, {"start": 1826.67, "end": 1826.95, "word": " the", "probability": 0.765625}, {"start": 1826.95, "end": 1827.27, "word": " connection", "probability": 0.87060546875}, {"start": 1827.27, "end": 1827.53, "word": " to", "probability": 0.55419921875}, {"start": 1827.53, "end": 1827.63, "word": " the", "probability": 0.9248046875}, {"start": 1827.63, "end": 1827.95, "word": " database", "probability": 0.94482421875}, {"start": 1827.95, "end": 1828.15, "word": " must", "probability": 0.370849609375}, {"start": 1828.15, "end": 1828.31, "word": " be", "probability": 0.8408203125}, {"start": 1828.31, "end": 1828.47, "word": " present", "probability": 0.583984375}, {"start": 1828.47, "end": 1828.61, "word": " in", "probability": 0.9365234375}, {"start": 1828.61, "end": 1828.69, "word": " a", "probability": 0.2249755859375}, {"start": 1828.69, "end": 1829.03, "word": " class", "probability": 0.97802734375}, {"start": 1829.03, "end": 1829.73, "word": " and", "probability": 0.441162109375}, {"start": 1829.73, "end": 1829.85, "word": " a", "probability": 0.205322265625}, {"start": 1829.85, "end": 1830.47, "word": " method.", "probability": 0.947265625}, {"start": 1831.03, "end": 1831.43, "word": " Okay?", "probability": 0.73095703125}, {"start": 1832.01, "end": 1832.41, "word": " Whenever", "probability": 0.51416015625}, {"start": 1832.41, "end": 1833.41, "word": " I", "probability": 0.98486328125}, {"start": 1833.41, "end": 1833.65, "word": " want", "probability": 0.77490234375}, {"start": 1833.65, "end": 1833.77, "word": " to", "probability": 0.9736328125}, {"start": 1833.77, "end": 1833.97, "word": " open", "probability": 0.8916015625}, {"start": 1833.97, "end": 1834.17, "word": " a", "probability": 0.98876953125}, {"start": 1834.17, "end": 1834.45, "word": " screen", "probability": 0.82666015625}, {"start": 1834.45, "end": 1834.83, "word": " that", "probability": 0.544921875}, {"start": 1834.83, "end": 1835.29, "word": " needs", "probability": 0.83837890625}, {"start": 1835.29, "end": 1835.81, "word": " to", "probability": 0.96435546875}, {"start": 1835.81, "end": 1835.97, "word": " connect", "probability": 0.517578125}, {"start": 1835.97, "end": 1836.13, "word": " to", "probability": 0.96728515625}, {"start": 1836.13, "end": 1836.29, "word": " the", "probability": 0.8681640625}, {"start": 1836.29, "end": 1836.57, "word": " database,", "probability": 0.94384765625}, {"start": 1836.63, "end": 1836.69, "word": " I", "probability": 0.775390625}, {"start": 1836.69, "end": 1836.81, "word": " want", "probability": 0.54248046875}, {"start": 1836.81, "end": 1836.93, "word": " to", "probability": 0.96923828125}, {"start": 1836.93, "end": 1837.07, "word": " create", "probability": 0.85791015625}, {"start": 1837.07, "end": 1837.23, "word": " the", "probability": 0.568359375}, {"start": 1837.23, "end": 1837.47, "word": " object", "probability": 0.8662109375}, {"start": 1837.47, "end": 1837.65, "word": " of", "probability": 0.42333984375}, {"start": 1837.65, "end": 1837.75, "word": " this", "probability": 0.833984375}, {"start": 1837.75, "end": 1838.25, "word": " connection", "probability": 0.86767578125}, {"start": 1838.25, "end": 1839.05, "word": " that", "probability": 0.8037109375}, {"start": 1839.05, "end": 1839.21, "word": " needs", "probability": 0.436279296875}, {"start": 1839.21, "end": 1839.27, "word": " to", "probability": 0.97265625}, {"start": 1839.27, "end": 1839.37, "word": " connect", "probability": 0.8046875}, {"start": 1839.37, "end": 1839.53, "word": " to", "probability": 0.96923828125}, {"start": 1839.53, "end": 1839.67, "word": " the", "probability": 0.92822265625}, {"start": 1839.67, "end": 1839.87, "word": " database.", "probability": 0.94775390625}], "temperature": 1.0}, {"id": 72, "seek": 186822, "start": 1841.16, "end": 1868.22, "text": "Now this is a problem, why? Because this object needs resources that it takes from the memory and it needs time to work So it's not a good solution that whenever you want to connect to the database, you need to create this connector In a situation like this, where I have 10 screens that all interact with the database, I should create one connector and use it anywhere This is one example Another example, you make a game", "tokens": [13267, 341, 307, 257, 1154, 11, 983, 30, 1436, 341, 2657, 2203, 3593, 300, 309, 2516, 490, 264, 4675, 293, 309, 2203, 565, 281, 589, 407, 309, 311, 406, 257, 665, 3827, 300, 5699, 291, 528, 281, 1745, 281, 264, 8149, 11, 291, 643, 281, 1884, 341, 19127, 682, 257, 2590, 411, 341, 11, 689, 286, 362, 1266, 11171, 300, 439, 4648, 365, 264, 8149, 11, 286, 820, 1884, 472, 19127, 293, 764, 309, 4992, 639, 307, 472, 1365, 3996, 1365, 11, 291, 652, 257, 1216], "avg_logprob": -0.475574703737237, "compression_ratio": 1.7016129032258065, "no_speech_prob": 2.384185791015625e-06, "words": [{"start": 1841.1599999999999, "end": 1841.6, "word": "Now", "probability": 0.2205810546875}, {"start": 1841.6, "end": 1841.76, "word": " this", "probability": 0.419677734375}, {"start": 1841.76, "end": 1841.8, "word": " is", "probability": 0.9033203125}, {"start": 1841.8, "end": 1841.86, "word": " a", "probability": 0.8671875}, {"start": 1841.86, "end": 1842.1, "word": " problem,", "probability": 0.837890625}, {"start": 1842.24, "end": 1842.44, "word": " why?", "probability": 0.409912109375}, {"start": 1842.5, "end": 1842.66, "word": " Because", "probability": 0.71484375}, {"start": 1842.66, "end": 1842.88, "word": " this", "probability": 0.72265625}, {"start": 1842.88, "end": 1843.3, "word": " object", "probability": 0.8876953125}, {"start": 1843.3, "end": 1843.92, "word": " needs", "probability": 0.4609375}, {"start": 1843.92, "end": 1844.58, "word": " resources", "probability": 0.90283203125}, {"start": 1844.58, "end": 1845.26, "word": " that", "probability": 0.129150390625}, {"start": 1845.26, "end": 1845.32, "word": " it", "probability": 0.58740234375}, {"start": 1845.32, "end": 1845.46, "word": " takes", "probability": 0.425537109375}, {"start": 1845.46, "end": 1845.58, "word": " from", "probability": 0.438720703125}, {"start": 1845.58, "end": 1845.68, "word": " the", "probability": 0.412353515625}, {"start": 1845.68, "end": 1845.96, "word": " memory", "probability": 0.8505859375}, {"start": 1845.96, "end": 1846.78, "word": " and", "probability": 0.6044921875}, {"start": 1846.78, "end": 1846.86, "word": " it", "probability": 0.490478515625}, {"start": 1846.86, "end": 1846.98, "word": " needs", "probability": 0.701171875}, {"start": 1846.98, "end": 1847.22, "word": " time", "probability": 0.8203125}, {"start": 1847.22, "end": 1847.42, "word": " to", "probability": 0.921875}, {"start": 1847.42, "end": 1847.9, "word": " work", "probability": 0.5615234375}, {"start": 1847.9, "end": 1848.94, "word": " So", "probability": 0.23486328125}, {"start": 1848.94, "end": 1849.54, "word": " it's", "probability": 0.5347900390625}, {"start": 1849.54, "end": 1849.58, "word": " not", "probability": 0.927734375}, {"start": 1849.58, "end": 1849.74, "word": " a", "probability": 0.92529296875}, {"start": 1849.74, "end": 1849.74, "word": " good", "probability": 0.8896484375}, {"start": 1849.74, "end": 1850.06, "word": " solution", "probability": 0.9091796875}, {"start": 1850.06, "end": 1850.62, "word": " that", "probability": 0.37158203125}, {"start": 1850.62, "end": 1851.04, "word": " whenever", "probability": 0.383544921875}, {"start": 1851.04, "end": 1851.24, "word": " you", "probability": 0.94873046875}, {"start": 1851.24, "end": 1851.54, "word": " want", "probability": 0.609375}, {"start": 1851.54, "end": 1851.54, "word": " to", "probability": 0.96728515625}, {"start": 1851.54, "end": 1851.66, "word": " connect", "probability": 0.79443359375}, {"start": 1851.66, "end": 1851.82, "word": " to", "probability": 0.8876953125}, {"start": 1851.82, "end": 1851.86, "word": " the", "probability": 0.471923828125}, {"start": 1851.86, "end": 1852.36, "word": " database,", "probability": 0.92724609375}, {"start": 1852.8, "end": 1852.86, "word": " you", "probability": 0.93408203125}, {"start": 1852.86, "end": 1852.98, "word": " need", "probability": 0.335693359375}, {"start": 1852.98, "end": 1853.26, "word": " to", "probability": 0.96435546875}, {"start": 1853.26, "end": 1853.26, "word": " create", "probability": 0.77294921875}, {"start": 1853.26, "end": 1853.4, "word": " this", "probability": 0.662109375}, {"start": 1853.4, "end": 1853.8, "word": " connector", "probability": 0.662109375}, {"start": 1853.8, "end": 1855.88, "word": " In", "probability": 0.61572265625}, {"start": 1855.88, "end": 1856.0, "word": " a", "probability": 0.49560546875}, {"start": 1856.0, "end": 1856.24, "word": " situation", "probability": 0.52490234375}, {"start": 1856.24, "end": 1856.38, "word": " like", "probability": 0.857421875}, {"start": 1856.38, "end": 1856.68, "word": " this,", "probability": 0.8212890625}, {"start": 1856.74, "end": 1856.88, "word": " where", "probability": 0.345947265625}, {"start": 1856.88, "end": 1857.02, "word": " I", "probability": 0.89404296875}, {"start": 1857.02, "end": 1857.32, "word": " have", "probability": 0.93310546875}, {"start": 1857.32, "end": 1857.66, "word": " 10", "probability": 0.6181640625}, {"start": 1857.66, "end": 1858.04, "word": " screens", "probability": 0.8154296875}, {"start": 1858.04, "end": 1858.2, "word": " that", "probability": 0.2939453125}, {"start": 1858.2, "end": 1858.3, "word": " all", "probability": 0.5078125}, {"start": 1858.3, "end": 1858.64, "word": " interact", "probability": 0.48779296875}, {"start": 1858.64, "end": 1858.84, "word": " with", "probability": 0.89013671875}, {"start": 1858.84, "end": 1858.98, "word": " the", "probability": 0.89794921875}, {"start": 1858.98, "end": 1859.3, "word": " database,", "probability": 0.939453125}, {"start": 1859.42, "end": 1859.42, "word": " I", "probability": 0.884765625}, {"start": 1859.42, "end": 1859.64, "word": " should", "probability": 0.5341796875}, {"start": 1859.64, "end": 1859.9, "word": " create", "probability": 0.80419921875}, {"start": 1859.9, "end": 1860.06, "word": " one", "probability": 0.58935546875}, {"start": 1860.06, "end": 1860.62, "word": " connector", "probability": 0.8046875}, {"start": 1860.62, "end": 1861.38, "word": " and", "probability": 0.89599609375}, {"start": 1861.38, "end": 1861.68, "word": " use", "probability": 0.86865234375}, {"start": 1861.68, "end": 1861.84, "word": " it", "probability": 0.93994140625}, {"start": 1861.84, "end": 1862.06, "word": " anywhere", "probability": 0.35302734375}, {"start": 1862.06, "end": 1863.58, "word": " This", "probability": 0.189697265625}, {"start": 1863.58, "end": 1864.68, "word": " is", "probability": 0.86181640625}, {"start": 1864.68, "end": 1865.34, "word": " one", "probability": 0.43896484375}, {"start": 1865.34, "end": 1866.32, "word": " example", "probability": 0.95556640625}, {"start": 1866.32, "end": 1866.92, "word": " Another", "probability": 0.38525390625}, {"start": 1866.92, "end": 1867.26, "word": " example,", "probability": 0.96044921875}, {"start": 1867.52, "end": 1867.66, "word": " you", "probability": 0.56396484375}, {"start": 1867.66, "end": 1867.94, "word": " make", "probability": 0.33447265625}, {"start": 1867.94, "end": 1868.06, "word": " a", "probability": 0.97119140625}, {"start": 1868.06, "end": 1868.22, "word": " game", "probability": 0.892578125}], "temperature": 1.0}, {"id": 73, "seek": 189040, "start": 1869.74, "end": 1890.4, "text": " In the game, you need to handle textures, which are drawn on shapes, you need to handle 3D objects, you need to handle audio files for sound, pictures and others. And these files that I downloaded, you will use them throughout the game, level 1 and 2 in design and so on.", "tokens": [682, 264, 1216, 11, 291, 643, 281, 4813, 24501, 11, 597, 366, 10117, 322, 10854, 11, 291, 643, 281, 4813, 805, 35, 6565, 11, 291, 643, 281, 4813, 6278, 7098, 337, 1626, 11, 5242, 293, 2357, 13, 400, 613, 7098, 300, 286, 21748, 11, 291, 486, 764, 552, 3710, 264, 1216, 11, 1496, 502, 293, 568, 294, 1715, 293, 370, 322, 13], "avg_logprob": -0.44791666477445574, "compression_ratio": 1.619047619047619, "no_speech_prob": 1.1861324310302734e-05, "words": [{"start": 1869.74, "end": 1870.38, "word": " In", "probability": 0.44140625}, {"start": 1870.38, "end": 1870.5, "word": " the", "probability": 0.325927734375}, {"start": 1870.5, "end": 1870.62, "word": " game,", "probability": 0.89111328125}, {"start": 1871.04, "end": 1871.26, "word": " you", "probability": 0.931640625}, {"start": 1871.26, "end": 1871.6, "word": " need", "probability": 0.5361328125}, {"start": 1871.6, "end": 1872.26, "word": " to", "probability": 0.95361328125}, {"start": 1872.26, "end": 1872.26, "word": " handle", "probability": 0.235107421875}, {"start": 1872.26, "end": 1874.5, "word": " textures,", "probability": 0.75390625}, {"start": 1874.84, "end": 1874.84, "word": " which", "probability": 0.328369140625}, {"start": 1874.84, "end": 1875.02, "word": " are", "probability": 0.51806640625}, {"start": 1875.02, "end": 1875.94, "word": " drawn", "probability": 0.44384765625}, {"start": 1875.94, "end": 1876.2, "word": " on", "probability": 0.82421875}, {"start": 1876.2, "end": 1876.7, "word": " shapes,", "probability": 0.498291015625}, {"start": 1876.86, "end": 1876.86, "word": " you", "probability": 0.61328125}, {"start": 1876.86, "end": 1877.2, "word": " need", "probability": 0.876953125}, {"start": 1877.2, "end": 1877.56, "word": " to", "probability": 0.95751953125}, {"start": 1877.56, "end": 1877.86, "word": " handle", "probability": 0.9365234375}, {"start": 1877.86, "end": 1878.28, "word": " 3D", "probability": 0.913330078125}, {"start": 1878.28, "end": 1878.78, "word": " objects,", "probability": 0.94189453125}, {"start": 1879.2, "end": 1879.2, "word": " you", "probability": 0.689453125}, {"start": 1879.2, "end": 1879.5, "word": " need", "probability": 0.90625}, {"start": 1879.5, "end": 1879.6, "word": " to", "probability": 0.93798828125}, {"start": 1879.6, "end": 1879.76, "word": " handle", "probability": 0.96826171875}, {"start": 1879.76, "end": 1880.62, "word": " audio", "probability": 0.9306640625}, {"start": 1880.62, "end": 1880.7, "word": " files", "probability": 0.89892578125}, {"start": 1880.7, "end": 1880.98, "word": " for", "probability": 0.69677734375}, {"start": 1880.98, "end": 1881.32, "word": " sound,", "probability": 0.36962890625}, {"start": 1881.42, "end": 1881.76, "word": " pictures", "probability": 0.365478515625}, {"start": 1881.76, "end": 1881.9, "word": " and", "probability": 0.54638671875}, {"start": 1881.9, "end": 1882.2, "word": " others.", "probability": 0.37353515625}, {"start": 1882.72, "end": 1883.34, "word": " And", "probability": 0.53515625}, {"start": 1883.34, "end": 1883.62, "word": " these", "probability": 0.7197265625}, {"start": 1883.62, "end": 1883.94, "word": " files", "probability": 0.93408203125}, {"start": 1883.94, "end": 1884.08, "word": " that", "probability": 0.6005859375}, {"start": 1884.08, "end": 1884.16, "word": " I", "probability": 0.50732421875}, {"start": 1884.16, "end": 1884.5, "word": " downloaded,", "probability": 0.391845703125}, {"start": 1884.94, "end": 1885.18, "word": " you", "probability": 0.8994140625}, {"start": 1885.18, "end": 1885.32, "word": " will", "probability": 0.75927734375}, {"start": 1885.32, "end": 1885.72, "word": " use", "probability": 0.88671875}, {"start": 1885.72, "end": 1886.58, "word": " them", "probability": 0.71826171875}, {"start": 1886.58, "end": 1886.94, "word": " throughout", "probability": 0.623046875}, {"start": 1886.94, "end": 1887.88, "word": " the", "probability": 0.91748046875}, {"start": 1887.88, "end": 1888.1, "word": " game,", "probability": 0.8779296875}, {"start": 1888.34, "end": 1888.64, "word": " level", "probability": 0.38720703125}, {"start": 1888.64, "end": 1888.98, "word": " 1", "probability": 0.6357421875}, {"start": 1888.98, "end": 1889.14, "word": " and", "probability": 0.9072265625}, {"start": 1889.14, "end": 1889.46, "word": " 2", "probability": 0.6123046875}, {"start": 1889.46, "end": 1889.62, "word": " in", "probability": 0.52880859375}, {"start": 1889.62, "end": 1889.98, "word": " design", "probability": 0.60595703125}, {"start": 1889.98, "end": 1890.14, "word": " and", "probability": 0.72265625}, {"start": 1890.14, "end": 1890.34, "word": " so", "probability": 0.74951171875}, {"start": 1890.34, "end": 1890.4, "word": " on.", "probability": 0.91650390625}], "temperature": 1.0}, {"id": 74, "seek": 191108, "start": 1893.18, "end": 1911.08, "text": "Does it make sense that every time a student starts a new level, he should download the same content over and over again? No, he should download it and load it to one object and use it everywhere in the application. Now, from the bad practices that students or beginners do, they do the following.", "tokens": [30323, 309, 652, 2020, 300, 633, 565, 257, 3107, 3719, 257, 777, 1496, 11, 415, 820, 5484, 264, 912, 2701, 670, 293, 670, 797, 30, 883, 11, 415, 820, 5484, 309, 293, 3677, 309, 281, 472, 2657, 293, 764, 309, 5315, 294, 264, 3861, 13, 823, 11, 490, 264, 1578, 7525, 300, 1731, 420, 26992, 360, 11, 436, 360, 264, 3480, 13], "avg_logprob": -0.6552579421845693, "compression_ratio": 1.6229508196721312, "no_speech_prob": 1.055002212524414e-05, "words": [{"start": 1893.1799999999998, "end": 1893.62, "word": "Does", "probability": 0.14501953125}, {"start": 1893.62, "end": 1894.06, "word": " it", "probability": 0.66943359375}, {"start": 1894.06, "end": 1894.06, "word": " make", "probability": 0.86865234375}, {"start": 1894.06, "end": 1894.4, "word": " sense", "probability": 0.76416015625}, {"start": 1894.4, "end": 1894.62, "word": " that", "probability": 0.37255859375}, {"start": 1894.62, "end": 1894.82, "word": " every", "probability": 0.225830078125}, {"start": 1894.82, "end": 1894.86, "word": " time", "probability": 0.53076171875}, {"start": 1894.86, "end": 1894.96, "word": " a", "probability": 0.484619140625}, {"start": 1894.96, "end": 1894.96, "word": " student", "probability": 0.1953125}, {"start": 1894.96, "end": 1895.16, "word": " starts", "probability": 0.2242431640625}, {"start": 1895.16, "end": 1895.38, "word": " a", "probability": 0.63671875}, {"start": 1895.38, "end": 1895.5, "word": " new", "probability": 0.82568359375}, {"start": 1895.5, "end": 1895.5, "word": " level,", "probability": 0.71484375}, {"start": 1895.68, "end": 1895.72, "word": " he", "probability": 0.65673828125}, {"start": 1895.72, "end": 1895.82, "word": " should", "probability": 0.1873779296875}, {"start": 1895.82, "end": 1896.14, "word": " download", "probability": 0.7392578125}, {"start": 1896.14, "end": 1896.28, "word": " the", "probability": 0.151123046875}, {"start": 1896.28, "end": 1896.72, "word": " same", "probability": 0.29150390625}, {"start": 1896.72, "end": 1896.72, "word": " content", "probability": 0.6435546875}, {"start": 1896.72, "end": 1896.98, "word": " over", "probability": 0.19921875}, {"start": 1896.98, "end": 1897.14, "word": " and", "probability": 0.857421875}, {"start": 1897.14, "end": 1897.14, "word": " over", "probability": 0.91845703125}, {"start": 1897.14, "end": 1897.42, "word": " again?", "probability": 0.75341796875}, {"start": 1897.82, "end": 1898.02, "word": " No,", "probability": 0.85205078125}, {"start": 1898.06, "end": 1898.16, "word": " he", "probability": 0.52783203125}, {"start": 1898.16, "end": 1898.38, "word": " should", "probability": 0.77099609375}, {"start": 1898.38, "end": 1898.72, "word": " download", "probability": 0.7177734375}, {"start": 1898.72, "end": 1898.9, "word": " it", "probability": 0.359375}, {"start": 1898.9, "end": 1899.02, "word": " and", "probability": 0.36669921875}, {"start": 1899.02, "end": 1899.56, "word": " load", "probability": 0.419677734375}, {"start": 1899.56, "end": 1899.72, "word": " it", "probability": 0.77490234375}, {"start": 1899.72, "end": 1899.82, "word": " to", "probability": 0.22021484375}, {"start": 1899.82, "end": 1899.92, "word": " one", "probability": 0.431396484375}, {"start": 1899.92, "end": 1900.58, "word": " object", "probability": 0.91455078125}, {"start": 1900.58, "end": 1901.08, "word": " and", "probability": 0.70166015625}, {"start": 1901.08, "end": 1901.4, "word": " use", "probability": 0.77490234375}, {"start": 1901.4, "end": 1901.6, "word": " it", "probability": 0.9228515625}, {"start": 1901.6, "end": 1901.98, "word": " everywhere", "probability": 0.33837890625}, {"start": 1901.98, "end": 1902.78, "word": " in", "probability": 0.73828125}, {"start": 1902.78, "end": 1902.88, "word": " the", "probability": 0.8603515625}, {"start": 1902.88, "end": 1903.22, "word": " application.", "probability": 0.55029296875}, {"start": 1903.94, "end": 1904.2, "word": " Now,", "probability": 0.28076171875}, {"start": 1904.26, "end": 1904.36, "word": " from", "probability": 0.1956787109375}, {"start": 1904.36, "end": 1904.5, "word": " the", "probability": 0.83154296875}, {"start": 1904.5, "end": 1905.26, "word": " bad", "probability": 0.74267578125}, {"start": 1905.26, "end": 1905.26, "word": " practices", "probability": 0.7783203125}, {"start": 1905.26, "end": 1905.78, "word": " that", "probability": 0.331298828125}, {"start": 1905.78, "end": 1906.16, "word": " students", "probability": 0.7841796875}, {"start": 1906.16, "end": 1906.62, "word": " or", "probability": 0.4970703125}, {"start": 1906.62, "end": 1907.0, "word": " beginners", "probability": 0.423095703125}, {"start": 1907.0, "end": 1908.32, "word": " do,", "probability": 0.425048828125}, {"start": 1908.68, "end": 1910.52, "word": " they", "probability": 0.380859375}, {"start": 1910.52, "end": 1910.7, "word": " do", "probability": 0.85546875}, {"start": 1910.7, "end": 1910.88, "word": " the", "probability": 0.77587890625}, {"start": 1910.88, "end": 1911.08, "word": " following.", "probability": 0.861328125}], "temperature": 1.0}, {"id": 75, "seek": 193055, "start": 1913.17, "end": 1930.55, "text": "I go to the first screen, it needs a connection to the database, okay? I go and create an object, DB connector equals C equals new DB connector", "tokens": [40, 352, 281, 264, 700, 2568, 11, 309, 2203, 257, 4984, 281, 264, 8149, 11, 1392, 30, 286, 352, 293, 1884, 364, 2657, 11, 26754, 19127, 6915, 383, 6915, 777, 26754, 19127], "avg_logprob": -0.5525568181818182, "compression_ratio": 1.361904761904762, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1913.17, "end": 1913.39, "word": "I", "probability": 0.30029296875}, {"start": 1913.39, "end": 1913.53, "word": " go", "probability": 0.60107421875}, {"start": 1913.53, "end": 1913.97, "word": " to", "probability": 0.69970703125}, {"start": 1913.97, "end": 1914.45, "word": " the", "probability": 0.75244140625}, {"start": 1914.45, "end": 1914.45, "word": " first", "probability": 0.771484375}, {"start": 1914.45, "end": 1914.81, "word": " screen,", "probability": 0.6220703125}, {"start": 1915.51, "end": 1915.91, "word": " it", "probability": 0.322998046875}, {"start": 1915.91, "end": 1916.19, "word": " needs", "probability": 0.74169921875}, {"start": 1916.19, "end": 1916.37, "word": " a", "probability": 0.31689453125}, {"start": 1916.37, "end": 1916.69, "word": " connection", "probability": 0.880859375}, {"start": 1916.69, "end": 1916.91, "word": " to", "probability": 0.7099609375}, {"start": 1916.91, "end": 1917.03, "word": " the", "probability": 0.71484375}, {"start": 1917.03, "end": 1917.55, "word": " database,", "probability": 0.896484375}, {"start": 1918.13, "end": 1918.35, "word": " okay?", "probability": 0.296630859375}, {"start": 1918.91, "end": 1919.03, "word": " I", "probability": 0.66552734375}, {"start": 1919.03, "end": 1919.19, "word": " go", "probability": 0.58984375}, {"start": 1919.19, "end": 1919.69, "word": " and", "probability": 0.262451171875}, {"start": 1919.69, "end": 1919.91, "word": " create", "probability": 0.66455078125}, {"start": 1919.91, "end": 1920.35, "word": " an", "probability": 0.81884765625}, {"start": 1920.35, "end": 1920.35, "word": " object,", "probability": 0.962890625}, {"start": 1920.65, "end": 1921.49, "word": " DB", "probability": 0.46728515625}, {"start": 1921.49, "end": 1922.89, "word": " connector", "probability": 0.6494140625}, {"start": 1922.89, "end": 1924.89, "word": " equals", "probability": 0.317138671875}, {"start": 1924.89, "end": 1926.17, "word": " C", "probability": 0.34912109375}, {"start": 1926.17, "end": 1927.23, "word": " equals", "probability": 0.65625}, {"start": 1927.23, "end": 1927.73, "word": " new", "probability": 0.6015625}, {"start": 1927.73, "end": 1929.03, "word": " DB", "probability": 0.89599609375}, {"start": 1929.03, "end": 1930.55, "word": " connector", "probability": 0.83642578125}], "temperature": 1.0}, {"id": 76, "seek": 194853, "start": 1932.65, "end": 1948.53, "text": "I create a new object and go to C and say query c.insert database. It opens a new screen and I need it to show from the database. I go to simple, this is our knowledge, we do the U.", "tokens": [40, 1884, 257, 777, 2657, 293, 352, 281, 383, 293, 584, 14581, 269, 13, 1292, 911, 8149, 13, 467, 9870, 257, 777, 2568, 293, 286, 643, 309, 281, 855, 490, 264, 8149, 13, 286, 352, 281, 2199, 11, 341, 307, 527, 3601, 11, 321, 360, 264, 624, 13], "avg_logprob": -0.6887755102040817, "compression_ratio": 1.3923076923076922, "no_speech_prob": 8.940696716308594e-06, "words": [{"start": 1932.6499999999999, "end": 1933.09, "word": "I", "probability": 0.20263671875}, {"start": 1933.09, "end": 1933.35, "word": " create", "probability": 0.74560546875}, {"start": 1933.35, "end": 1933.89, "word": " a", "probability": 0.72802734375}, {"start": 1933.89, "end": 1933.91, "word": " new", "probability": 0.8837890625}, {"start": 1933.91, "end": 1934.31, "word": " object", "probability": 0.89794921875}, {"start": 1934.31, "end": 1935.11, "word": " and", "probability": 0.58349609375}, {"start": 1935.11, "end": 1935.25, "word": " go", "probability": 0.31591796875}, {"start": 1935.25, "end": 1935.43, "word": " to", "probability": 0.93701171875}, {"start": 1935.43, "end": 1935.75, "word": " C", "probability": 0.517578125}, {"start": 1935.75, "end": 1935.99, "word": " and", "probability": 0.472412109375}, {"start": 1935.99, "end": 1936.21, "word": " say", "probability": 0.2061767578125}, {"start": 1936.21, "end": 1936.67, "word": " query", "probability": 0.65771484375}, {"start": 1936.67, "end": 1938.47, "word": " c", "probability": 0.2384033203125}, {"start": 1938.47, "end": 1939.89, "word": ".insert", "probability": 0.87109375}, {"start": 1939.89, "end": 1941.63, "word": " database.", "probability": 0.57958984375}, {"start": 1941.95, "end": 1942.39, "word": " It", "probability": 0.42138671875}, {"start": 1942.39, "end": 1942.63, "word": " opens", "probability": 0.77294921875}, {"start": 1942.63, "end": 1942.99, "word": " a", "probability": 0.91015625}, {"start": 1942.99, "end": 1943.27, "word": " new", "probability": 0.87353515625}, {"start": 1943.27, "end": 1943.29, "word": " screen", "probability": 0.58984375}, {"start": 1943.29, "end": 1943.69, "word": " and", "probability": 0.359130859375}, {"start": 1943.69, "end": 1943.69, "word": " I", "probability": 0.195556640625}, {"start": 1943.69, "end": 1943.93, "word": " need", "probability": 0.7255859375}, {"start": 1943.93, "end": 1944.13, "word": " it", "probability": 0.65185546875}, {"start": 1944.13, "end": 1944.15, "word": " to", "probability": 0.92822265625}, {"start": 1944.15, "end": 1944.33, "word": " show", "probability": 0.369873046875}, {"start": 1944.33, "end": 1944.45, "word": " from", "probability": 0.5517578125}, {"start": 1944.45, "end": 1944.55, "word": " the", "probability": 0.81494140625}, {"start": 1944.55, "end": 1945.01, "word": " database.", "probability": 0.92333984375}, {"start": 1946.11, "end": 1946.21, "word": " I", "probability": 0.50341796875}, {"start": 1946.21, "end": 1946.35, "word": " go", "probability": 0.394287109375}, {"start": 1946.35, "end": 1946.47, "word": " to", "probability": 0.3583984375}, {"start": 1946.47, "end": 1947.09, "word": " simple,", "probability": 0.155029296875}, {"start": 1947.29, "end": 1947.51, "word": " this", "probability": 0.409912109375}, {"start": 1947.51, "end": 1947.63, "word": " is", "probability": 0.81982421875}, {"start": 1947.63, "end": 1947.77, "word": " our", "probability": 0.30322265625}, {"start": 1947.77, "end": 1947.77, "word": " knowledge,", "probability": 0.432861328125}, {"start": 1947.97, "end": 1948.07, "word": " we", "probability": 0.732421875}, {"start": 1948.07, "end": 1948.21, "word": " do", "probability": 0.376708984375}, {"start": 1948.21, "end": 1948.35, "word": " the", "probability": 0.2098388671875}, {"start": 1948.35, "end": 1948.53, "word": " U.", "probability": 0.4267578125}], "temperature": 1.0}, {"id": 77, "seek": 197678, "start": 1949.4, "end": 1976.78, "text": "New is free, right? No. Here, I opened a new screen, I did what? New, Connector, I connected it to the database and I did a query again. In each screen, you have to do a new, okay? But sometimes these screens don't close, they stay closed. Okay? In the mobile, yes, this remains in the back stack. Okay? Well, this connector exists and this connector exists. This takes from the memory and this takes from the memory. Then, for example, in the mobile specifically, you are with me. Battery.", "tokens": [18278, 307, 1737, 11, 558, 30, 883, 13, 1692, 11, 286, 5625, 257, 777, 2568, 11, 286, 630, 437, 30, 1873, 11, 11653, 284, 11, 286, 4582, 309, 281, 264, 8149, 293, 286, 630, 257, 14581, 797, 13, 682, 1184, 2568, 11, 291, 362, 281, 360, 257, 777, 11, 1392, 30, 583, 2171, 613, 11171, 500, 380, 1998, 11, 436, 1754, 5395, 13, 1033, 30, 682, 264, 6013, 11, 2086, 11, 341, 7023, 294, 264, 646, 8630, 13, 1033, 30, 1042, 11, 341, 19127, 8198, 293, 341, 19127, 8198, 13, 639, 2516, 490, 264, 4675, 293, 341, 2516, 490, 264, 4675, 13, 1396, 11, 337, 1365, 11, 294, 264, 6013, 4682, 11, 291, 366, 365, 385, 13, 47410, 13], "avg_logprob": -0.5312499831120173, "compression_ratio": 1.8148148148148149, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 1949.4, "end": 1949.72, "word": "New", "probability": 0.2296142578125}, {"start": 1949.72, "end": 1949.82, "word": " is", "probability": 0.1881103515625}, {"start": 1949.82, "end": 1950.1, "word": " free,", "probability": 0.34228515625}, {"start": 1950.46, "end": 1950.68, "word": " right?", "probability": 0.55712890625}, {"start": 1950.94, "end": 1950.94, "word": " No.", "probability": 0.477294921875}, {"start": 1951.26, "end": 1951.66, "word": " Here,", "probability": 0.19091796875}, {"start": 1952.12, "end": 1952.52, "word": " I", "probability": 0.5087890625}, {"start": 1952.52, "end": 1952.72, "word": " opened", "probability": 0.42236328125}, {"start": 1952.72, "end": 1953.06, "word": " a", "probability": 0.95458984375}, {"start": 1953.06, "end": 1953.28, "word": " new", "probability": 0.89013671875}, {"start": 1953.28, "end": 1953.28, "word": " screen,", "probability": 0.61181640625}, {"start": 1953.46, "end": 1953.48, "word": " I", "probability": 0.4189453125}, {"start": 1953.48, "end": 1953.64, "word": " did", "probability": 0.1949462890625}, {"start": 1953.64, "end": 1953.9, "word": " what?", "probability": 0.541015625}, {"start": 1953.9, "end": 1954.24, "word": " New,", "probability": 0.64013671875}, {"start": 1954.66, "end": 1955.22, "word": " Connector,", "probability": 0.60009765625}, {"start": 1955.32, "end": 1955.4, "word": " I", "probability": 0.372314453125}, {"start": 1955.4, "end": 1955.52, "word": " connected", "probability": 0.5986328125}, {"start": 1955.52, "end": 1955.66, "word": " it", "probability": 0.465576171875}, {"start": 1955.66, "end": 1955.7, "word": " to", "probability": 0.923828125}, {"start": 1955.7, "end": 1955.82, "word": " the", "probability": 0.67138671875}, {"start": 1955.82, "end": 1956.16, "word": " database", "probability": 0.88671875}, {"start": 1956.16, "end": 1956.32, "word": " and", "probability": 0.6103515625}, {"start": 1956.32, "end": 1956.36, "word": " I", "probability": 0.409912109375}, {"start": 1956.36, "end": 1956.48, "word": " did", "probability": 0.411376953125}, {"start": 1956.48, "end": 1956.58, "word": " a", "probability": 0.53466796875}, {"start": 1956.58, "end": 1956.88, "word": " query", "probability": 0.8330078125}, {"start": 1956.88, "end": 1957.7, "word": " again.", "probability": 0.80322265625}, {"start": 1958.12, "end": 1958.38, "word": " In", "probability": 0.429931640625}, {"start": 1958.38, "end": 1958.58, "word": " each", "probability": 0.46826171875}, {"start": 1958.58, "end": 1958.82, "word": " screen,", "probability": 0.82421875}, {"start": 1958.86, "end": 1958.88, "word": " you", "probability": 0.8486328125}, {"start": 1958.88, "end": 1959.02, "word": " have", "probability": 0.26806640625}, {"start": 1959.02, "end": 1959.08, "word": " to", "probability": 0.96826171875}, {"start": 1959.08, "end": 1959.28, "word": " do", "probability": 0.732421875}, {"start": 1959.28, "end": 1959.4, "word": " a", "probability": 0.3291015625}, {"start": 1959.4, "end": 1959.6, "word": " new,", "probability": 0.66162109375}, {"start": 1960.14, "end": 1960.34, "word": " okay?", "probability": 0.289794921875}, {"start": 1960.56, "end": 1960.66, "word": " But", "probability": 0.2147216796875}, {"start": 1960.66, "end": 1961.22, "word": " sometimes", "probability": 0.7568359375}, {"start": 1961.22, "end": 1961.36, "word": " these", "probability": 0.544921875}, {"start": 1961.36, "end": 1961.6, "word": " screens", "probability": 0.89111328125}, {"start": 1961.6, "end": 1961.92, "word": " don't", "probability": 0.73583984375}, {"start": 1961.92, "end": 1962.32, "word": " close,", "probability": 0.75341796875}, {"start": 1962.44, "end": 1962.48, "word": " they", "probability": 0.7080078125}, {"start": 1962.48, "end": 1962.58, "word": " stay", "probability": 0.54638671875}, {"start": 1962.58, "end": 1962.84, "word": " closed.", "probability": 0.287841796875}, {"start": 1963.96, "end": 1964.36, "word": " Okay?", "probability": 0.342041015625}, {"start": 1964.42, "end": 1964.52, "word": " In", "probability": 0.8359375}, {"start": 1964.52, "end": 1964.62, "word": " the", "probability": 0.492919921875}, {"start": 1964.62, "end": 1964.92, "word": " mobile,", "probability": 0.90771484375}, {"start": 1965.64, "end": 1965.8, "word": " yes,", "probability": 0.3837890625}, {"start": 1965.86, "end": 1965.98, "word": " this", "probability": 0.481689453125}, {"start": 1965.98, "end": 1966.14, "word": " remains", "probability": 0.2666015625}, {"start": 1966.14, "end": 1966.32, "word": " in", "probability": 0.78125}, {"start": 1966.32, "end": 1966.4, "word": " the", "probability": 0.89892578125}, {"start": 1966.4, "end": 1966.54, "word": " back", "probability": 0.68701171875}, {"start": 1966.54, "end": 1966.94, "word": " stack.", "probability": 0.9013671875}, {"start": 1967.32, "end": 1967.68, "word": " Okay?", "probability": 0.57275390625}, {"start": 1968.92, "end": 1969.08, "word": " Well,", "probability": 0.246826171875}, {"start": 1969.14, "end": 1969.3, "word": " this", "probability": 0.87353515625}, {"start": 1969.3, "end": 1969.78, "word": " connector", "probability": 0.6982421875}, {"start": 1969.78, "end": 1970.06, "word": " exists", "probability": 0.634765625}, {"start": 1970.06, "end": 1970.26, "word": " and", "probability": 0.466064453125}, {"start": 1970.26, "end": 1970.42, "word": " this", "probability": 0.91845703125}, {"start": 1970.42, "end": 1970.88, "word": " connector", "probability": 0.80517578125}, {"start": 1970.88, "end": 1971.12, "word": " exists.", "probability": 0.935546875}, {"start": 1971.22, "end": 1971.34, "word": " This", "probability": 0.82763671875}, {"start": 1971.34, "end": 1971.6, "word": " takes", "probability": 0.384765625}, {"start": 1971.6, "end": 1971.74, "word": " from", "probability": 0.7412109375}, {"start": 1971.74, "end": 1971.86, "word": " the", "probability": 0.64208984375}, {"start": 1971.86, "end": 1972.0, "word": " memory", "probability": 0.35205078125}, {"start": 1972.0, "end": 1972.12, "word": " and", "probability": 0.82080078125}, {"start": 1972.12, "end": 1972.26, "word": " this", "probability": 0.90234375}, {"start": 1972.26, "end": 1972.48, "word": " takes", "probability": 0.73388671875}, {"start": 1972.48, "end": 1972.6, "word": " from", "probability": 0.88525390625}, {"start": 1972.6, "end": 1972.68, "word": " the", "probability": 0.81982421875}, {"start": 1972.68, "end": 1972.88, "word": " memory.", "probability": 0.89306640625}, {"start": 1973.3, "end": 1973.64, "word": " Then,", "probability": 0.468017578125}, {"start": 1973.82, "end": 1973.9, "word": " for", "probability": 0.9111328125}, {"start": 1973.9, "end": 1974.08, "word": " example,", "probability": 0.966796875}, {"start": 1974.18, "end": 1974.26, "word": " in", "probability": 0.68701171875}, {"start": 1974.26, "end": 1974.34, "word": " the", "probability": 0.65771484375}, {"start": 1974.34, "end": 1974.6, "word": " mobile", "probability": 0.94970703125}, {"start": 1974.6, "end": 1975.22, "word": " specifically,", "probability": 0.65966796875}, {"start": 1975.72, "end": 1975.94, "word": " you", "probability": 0.4658203125}, {"start": 1975.94, "end": 1976.0, "word": " are", "probability": 0.60205078125}, {"start": 1976.0, "end": 1976.06, "word": " with", "probability": 0.84521484375}, {"start": 1976.06, "end": 1976.3, "word": " me.", "probability": 0.93505859375}, {"start": 1976.44, "end": 1976.78, "word": " Battery.", "probability": 0.75830078125}], "temperature": 1.0}, {"id": 78, "seek": 200325, "start": 1977.07, "end": 2003.25, "text": " In the battery, it should be efficient. The memory is limited and the battery is limited. Right or wrong? So in the memory, you take care of every object you create, not like a desktop. Create whatever you want. Okay? No. Here, one object should be created and used everywhere. Okay? Someone might say, I created it here. How can I open this screen? Okay? I need to use what's on that screen.", "tokens": [682, 264, 5809, 11, 309, 820, 312, 7148, 13, 440, 4675, 307, 5567, 293, 264, 5809, 307, 5567, 13, 1779, 420, 2085, 30, 407, 294, 264, 4675, 11, 291, 747, 1127, 295, 633, 2657, 291, 1884, 11, 406, 411, 257, 14502, 13, 20248, 2035, 291, 528, 13, 1033, 30, 883, 13, 1692, 11, 472, 2657, 820, 312, 2942, 293, 1143, 5315, 13, 1033, 30, 8734, 1062, 584, 11, 286, 2942, 309, 510, 13, 1012, 393, 286, 1269, 341, 2568, 30, 1033, 30, 286, 643, 281, 764, 437, 311, 322, 300, 2568, 13], "avg_logprob": -0.5275537813863447, "compression_ratio": 1.7161572052401746, "no_speech_prob": 4.410743713378906e-06, "words": [{"start": 1977.07, "end": 1977.31, "word": " In", "probability": 0.092041015625}, {"start": 1977.31, "end": 1977.43, "word": " the", "probability": 0.301025390625}, {"start": 1977.43, "end": 1977.79, "word": " battery,", "probability": 0.63818359375}, {"start": 1978.03, "end": 1978.05, "word": " it", "probability": 0.50537109375}, {"start": 1978.05, "end": 1978.23, "word": " should", "probability": 0.580078125}, {"start": 1978.23, "end": 1978.31, "word": " be", "probability": 0.93359375}, {"start": 1978.31, "end": 1978.79, "word": " efficient.", "probability": 0.783203125}, {"start": 1979.01, "end": 1979.13, "word": " The", "probability": 0.42431640625}, {"start": 1979.13, "end": 1979.33, "word": " memory", "probability": 0.82080078125}, {"start": 1979.33, "end": 1979.41, "word": " is", "probability": 0.437744140625}, {"start": 1979.41, "end": 1979.77, "word": " limited", "probability": 0.89453125}, {"start": 1979.77, "end": 1979.93, "word": " and", "probability": 0.5478515625}, {"start": 1979.93, "end": 1979.99, "word": " the", "probability": 0.422607421875}, {"start": 1979.99, "end": 1980.29, "word": " battery", "probability": 0.8544921875}, {"start": 1980.29, "end": 1980.45, "word": " is", "probability": 0.76708984375}, {"start": 1980.45, "end": 1980.79, "word": " limited.", "probability": 0.8779296875}, {"start": 1981.35, "end": 1981.55, "word": " Right", "probability": 0.42626953125}, {"start": 1981.55, "end": 1981.77, "word": " or", "probability": 0.6884765625}, {"start": 1981.77, "end": 1981.77, "word": " wrong?", "probability": 0.693359375}, {"start": 1981.91, "end": 1982.09, "word": " So", "probability": 0.420654296875}, {"start": 1982.09, "end": 1982.35, "word": " in", "probability": 0.394287109375}, {"start": 1982.35, "end": 1982.45, "word": " the", "probability": 0.59228515625}, {"start": 1982.45, "end": 1982.63, "word": " memory,", "probability": 0.91796875}, {"start": 1982.77, "end": 1982.81, "word": " you", "probability": 0.69140625}, {"start": 1982.81, "end": 1982.91, "word": " take", "probability": 0.1236572265625}, {"start": 1982.91, "end": 1983.27, "word": " care", "probability": 0.5673828125}, {"start": 1983.27, "end": 1983.35, "word": " of", "probability": 0.35400390625}, {"start": 1983.35, "end": 1983.77, "word": " every", "probability": 0.264404296875}, {"start": 1983.77, "end": 1984.11, "word": " object", "probability": 0.9228515625}, {"start": 1984.11, "end": 1984.29, "word": " you", "probability": 0.71826171875}, {"start": 1984.29, "end": 1984.49, "word": " create,", "probability": 0.58740234375}, {"start": 1984.55, "end": 1984.67, "word": " not", "probability": 0.6611328125}, {"start": 1984.67, "end": 1984.83, "word": " like", "probability": 0.88232421875}, {"start": 1984.83, "end": 1984.95, "word": " a", "probability": 0.5791015625}, {"start": 1984.95, "end": 1985.23, "word": " desktop.", "probability": 0.80419921875}, {"start": 1986.37, "end": 1986.77, "word": " Create", "probability": 0.6064453125}, {"start": 1986.77, "end": 1986.89, "word": " whatever", "probability": 0.830078125}, {"start": 1986.89, "end": 1987.09, "word": " you", "probability": 0.92626953125}, {"start": 1987.09, "end": 1987.09, "word": " want.", "probability": 0.826171875}, {"start": 1987.63, "end": 1987.83, "word": " Okay?", "probability": 0.27978515625}, {"start": 1988.45, "end": 1988.69, "word": " No.", "probability": 0.80859375}, {"start": 1988.83, "end": 1989.05, "word": " Here,", "probability": 0.6328125}, {"start": 1989.49, "end": 1989.89, "word": " one", "probability": 0.28271484375}, {"start": 1989.89, "end": 1991.73, "word": " object", "probability": 0.61279296875}, {"start": 1991.73, "end": 1992.19, "word": " should", "probability": 0.74951171875}, {"start": 1992.19, "end": 1992.19, "word": " be", "probability": 0.9375}, {"start": 1992.19, "end": 1992.43, "word": " created", "probability": 0.7705078125}, {"start": 1992.43, "end": 1993.57, "word": " and", "probability": 0.80029296875}, {"start": 1993.57, "end": 1994.05, "word": " used", "probability": 0.91650390625}, {"start": 1994.05, "end": 1995.41, "word": " everywhere.", "probability": 0.55712890625}, {"start": 1996.55, "end": 1996.95, "word": " Okay?", "probability": 0.64697265625}, {"start": 1997.09, "end": 1997.39, "word": " Someone", "probability": 0.23291015625}, {"start": 1997.39, "end": 1997.55, "word": " might", "probability": 0.279296875}, {"start": 1997.55, "end": 1997.67, "word": " say,", "probability": 0.90625}, {"start": 1997.79, "end": 1997.97, "word": " I", "probability": 0.2100830078125}, {"start": 1997.97, "end": 1998.35, "word": " created", "probability": 0.5830078125}, {"start": 1998.35, "end": 1998.49, "word": " it", "probability": 0.79541015625}, {"start": 1998.49, "end": 1998.65, "word": " here.", "probability": 0.8095703125}, {"start": 1998.77, "end": 1999.15, "word": " How", "probability": 0.474853515625}, {"start": 1999.15, "end": 1999.33, "word": " can", "probability": 0.325439453125}, {"start": 1999.33, "end": 1999.49, "word": " I", "probability": 0.91259765625}, {"start": 1999.49, "end": 1999.67, "word": " open", "probability": 0.2218017578125}, {"start": 1999.67, "end": 1999.89, "word": " this", "probability": 0.8017578125}, {"start": 1999.89, "end": 2000.19, "word": " screen?", "probability": 0.84765625}, {"start": 2001.33, "end": 2001.57, "word": " Okay?", "probability": 0.53369140625}, {"start": 2001.73, "end": 2001.87, "word": " I", "probability": 0.82373046875}, {"start": 2001.87, "end": 2001.97, "word": " need", "probability": 0.360107421875}, {"start": 2001.97, "end": 2002.11, "word": " to", "probability": 0.96533203125}, {"start": 2002.11, "end": 2002.31, "word": " use", "probability": 0.8837890625}, {"start": 2002.31, "end": 2002.57, "word": " what's", "probability": 0.60693359375}, {"start": 2002.57, "end": 2002.89, "word": " on", "probability": 0.509765625}, {"start": 2002.89, "end": 2003.05, "word": " that", "probability": 0.5009765625}, {"start": 2003.05, "end": 2003.25, "word": " screen.", "probability": 0.90283203125}], "temperature": 1.0}, {"id": 79, "seek": 202135, "start": 2004.21, "end": 2021.35, "text": "Okay? One can say simply that this screen is a class and you make objects from it. When you create this, you send this to this one. Parameter through method or constructor. Right or wrong?", "tokens": [8297, 30, 1485, 393, 584, 2935, 300, 341, 2568, 307, 257, 1508, 293, 291, 652, 6565, 490, 309, 13, 1133, 291, 1884, 341, 11, 291, 2845, 341, 281, 341, 472, 13, 34882, 2398, 807, 3170, 420, 47479, 13, 1779, 420, 2085, 30], "avg_logprob": -0.626453485599784, "compression_ratio": 1.3623188405797102, "no_speech_prob": 0.00016808509826660156, "words": [{"start": 2004.21, "end": 2004.91, "word": "Okay?", "probability": 0.1864013671875}, {"start": 2005.77, "end": 2006.29, "word": " One", "probability": 0.256103515625}, {"start": 2006.29, "end": 2006.43, "word": " can", "probability": 0.495849609375}, {"start": 2006.43, "end": 2006.67, "word": " say", "probability": 0.67041015625}, {"start": 2006.67, "end": 2007.13, "word": " simply", "probability": 0.1275634765625}, {"start": 2007.13, "end": 2007.57, "word": " that", "probability": 0.54052734375}, {"start": 2007.57, "end": 2008.77, "word": " this", "probability": 0.6689453125}, {"start": 2008.77, "end": 2009.13, "word": " screen", "probability": 0.81396484375}, {"start": 2009.13, "end": 2009.47, "word": " is", "probability": 0.81640625}, {"start": 2009.47, "end": 2009.75, "word": " a", "probability": 0.238525390625}, {"start": 2009.75, "end": 2010.13, "word": " class", "probability": 0.9111328125}, {"start": 2010.13, "end": 2010.49, "word": " and", "probability": 0.1802978515625}, {"start": 2010.49, "end": 2010.63, "word": " you", "probability": 0.6572265625}, {"start": 2010.63, "end": 2010.89, "word": " make", "probability": 0.247314453125}, {"start": 2010.89, "end": 2011.43, "word": " objects", "probability": 0.7294921875}, {"start": 2011.43, "end": 2011.45, "word": " from", "probability": 0.49755859375}, {"start": 2011.45, "end": 2011.45, "word": " it.", "probability": 0.91015625}, {"start": 2011.77, "end": 2012.25, "word": " When", "probability": 0.327392578125}, {"start": 2012.25, "end": 2012.65, "word": " you", "probability": 0.8974609375}, {"start": 2012.65, "end": 2012.89, "word": " create", "probability": 0.80615234375}, {"start": 2012.89, "end": 2013.23, "word": " this,", "probability": 0.70458984375}, {"start": 2013.77, "end": 2014.03, "word": " you", "probability": 0.8115234375}, {"start": 2014.03, "end": 2014.17, "word": " send", "probability": 0.3984375}, {"start": 2014.17, "end": 2014.47, "word": " this", "probability": 0.53076171875}, {"start": 2014.47, "end": 2014.57, "word": " to", "probability": 0.3935546875}, {"start": 2014.57, "end": 2015.13, "word": " this", "probability": 0.63623046875}, {"start": 2015.13, "end": 2017.07, "word": " one.", "probability": 0.196533203125}, {"start": 2017.35, "end": 2018.05, "word": " Parameter", "probability": 0.788330078125}, {"start": 2018.05, "end": 2018.73, "word": " through", "probability": 0.65478515625}, {"start": 2018.73, "end": 2019.33, "word": " method", "probability": 0.787109375}, {"start": 2019.33, "end": 2019.75, "word": " or", "probability": 0.94140625}, {"start": 2019.75, "end": 2020.29, "word": " constructor.", "probability": 0.837890625}, {"start": 2020.97, "end": 2021.13, "word": " Right", "probability": 0.41650390625}, {"start": 2021.13, "end": 2021.31, "word": " or", "probability": 0.85498046875}, {"start": 2021.31, "end": 2021.35, "word": " wrong?", "probability": 0.60546875}], "temperature": 1.0}, {"id": 80, "seek": 204438, "start": 2022.18, "end": 2044.38, "text": "Okay, this also won't solve the problem. Why? Sometimes there is not only one screen, there are 20-30 screens. You grab these guys and move them all. Parameter for this, parameter for this, parameter for this. You keep moving them. Okay? No, I mean, what will happen to the program? There is a big dependency. Basically, this is also not a health sign, right or not? It means that you changed here.", "tokens": [8297, 11, 341, 611, 1582, 380, 5039, 264, 1154, 13, 1545, 30, 4803, 456, 307, 406, 787, 472, 2568, 11, 456, 366, 945, 12, 3446, 11171, 13, 509, 4444, 613, 1074, 293, 1286, 552, 439, 13, 34882, 2398, 337, 341, 11, 13075, 337, 341, 11, 13075, 337, 341, 13, 509, 1066, 2684, 552, 13, 1033, 30, 883, 11, 286, 914, 11, 437, 486, 1051, 281, 264, 1461, 30, 821, 307, 257, 955, 33621, 13, 8537, 11, 341, 307, 611, 406, 257, 1585, 1465, 11, 558, 420, 406, 30, 467, 1355, 300, 291, 3105, 510, 13], "avg_logprob": -0.6204427126795053, "compression_ratio": 1.6514522821576763, "no_speech_prob": 4.5299530029296875e-06, "words": [{"start": 2022.18, "end": 2022.4, "word": "Okay,", "probability": 0.0736083984375}, {"start": 2022.46, "end": 2022.6, "word": " this", "probability": 0.6328125}, {"start": 2022.6, "end": 2022.78, "word": " also", "probability": 0.1263427734375}, {"start": 2022.78, "end": 2022.96, "word": " won't", "probability": 0.640869140625}, {"start": 2022.96, "end": 2023.18, "word": " solve", "probability": 0.70458984375}, {"start": 2023.18, "end": 2023.32, "word": " the", "probability": 0.853515625}, {"start": 2023.32, "end": 2023.52, "word": " problem.", "probability": 0.796875}, {"start": 2023.62, "end": 2023.84, "word": " Why?", "probability": 0.7470703125}, {"start": 2024.18, "end": 2024.58, "word": " Sometimes", "probability": 0.73486328125}, {"start": 2024.58, "end": 2024.76, "word": " there", "probability": 0.517578125}, {"start": 2024.76, "end": 2024.78, "word": " is", "probability": 0.3134765625}, {"start": 2024.78, "end": 2024.78, "word": " not", "probability": 0.78759765625}, {"start": 2024.78, "end": 2025.06, "word": " only", "probability": 0.382568359375}, {"start": 2025.06, "end": 2025.6, "word": " one", "probability": 0.87451171875}, {"start": 2025.6, "end": 2025.6, "word": " screen,", "probability": 0.6953125}, {"start": 2025.74, "end": 2025.94, "word": " there", "probability": 0.49853515625}, {"start": 2025.94, "end": 2025.96, "word": " are", "probability": 0.755859375}, {"start": 2025.96, "end": 2026.4, "word": " 20", "probability": 0.482177734375}, {"start": 2026.4, "end": 2026.98, "word": "-30", "probability": 0.70166015625}, {"start": 2026.98, "end": 2027.86, "word": " screens.", "probability": 0.89501953125}, {"start": 2027.94, "end": 2028.02, "word": " You", "probability": 0.72314453125}, {"start": 2028.02, "end": 2028.36, "word": " grab", "probability": 0.1090087890625}, {"start": 2028.36, "end": 2028.66, "word": " these", "probability": 0.1688232421875}, {"start": 2028.66, "end": 2028.94, "word": " guys", "probability": 0.591796875}, {"start": 2028.94, "end": 2029.18, "word": " and", "probability": 0.8603515625}, {"start": 2029.18, "end": 2029.44, "word": " move", "probability": 0.145263671875}, {"start": 2029.44, "end": 2029.74, "word": " them", "probability": 0.51904296875}, {"start": 2029.74, "end": 2029.98, "word": " all.", "probability": 0.309814453125}, {"start": 2030.86, "end": 2031.3, "word": " Parameter", "probability": 0.7333984375}, {"start": 2031.3, "end": 2031.42, "word": " for", "probability": 0.66064453125}, {"start": 2031.42, "end": 2031.62, "word": " this,", "probability": 0.66650390625}, {"start": 2031.68, "end": 2031.96, "word": " parameter", "probability": 0.9306640625}, {"start": 2031.96, "end": 2032.18, "word": " for", "probability": 0.9404296875}, {"start": 2032.18, "end": 2032.36, "word": " this,", "probability": 0.2266845703125}, {"start": 2032.42, "end": 2032.58, "word": " parameter", "probability": 0.75634765625}, {"start": 2032.58, "end": 2032.58, "word": " for", "probability": 0.70751953125}, {"start": 2032.58, "end": 2032.68, "word": " this.", "probability": 0.6640625}, {"start": 2032.7, "end": 2032.82, "word": " You", "probability": 0.75830078125}, {"start": 2032.82, "end": 2032.94, "word": " keep", "probability": 0.456298828125}, {"start": 2032.94, "end": 2033.2, "word": " moving", "probability": 0.55810546875}, {"start": 2033.2, "end": 2033.5, "word": " them.", "probability": 0.4248046875}, {"start": 2033.84, "end": 2034.22, "word": " Okay?", "probability": 0.474853515625}, {"start": 2035.04, "end": 2035.4, "word": " No,", "probability": 0.501953125}, {"start": 2035.56, "end": 2035.56, "word": " I", "probability": 0.341796875}, {"start": 2035.56, "end": 2035.7, "word": " mean,", "probability": 0.95654296875}, {"start": 2035.9, "end": 2035.9, "word": " what", "probability": 0.71533203125}, {"start": 2035.9, "end": 2035.9, "word": " will", "probability": 0.5712890625}, {"start": 2035.9, "end": 2036.16, "word": " happen", "probability": 0.86376953125}, {"start": 2036.16, "end": 2036.66, "word": " to", "probability": 0.373291015625}, {"start": 2036.66, "end": 2036.68, "word": " the", "probability": 0.888671875}, {"start": 2036.68, "end": 2037.02, "word": " program?", "probability": 0.78515625}, {"start": 2037.72, "end": 2038.16, "word": " There", "probability": 0.71923828125}, {"start": 2038.16, "end": 2038.16, "word": " is", "probability": 0.432373046875}, {"start": 2038.16, "end": 2038.16, "word": " a", "probability": 0.88330078125}, {"start": 2038.16, "end": 2038.16, "word": " big", "probability": 0.58251953125}, {"start": 2038.16, "end": 2038.68, "word": " dependency.", "probability": 0.67041015625}, {"start": 2039.26, "end": 2039.56, "word": " Basically,", "probability": 0.1217041015625}, {"start": 2039.82, "end": 2039.9, "word": " this", "probability": 0.76416015625}, {"start": 2039.9, "end": 2040.04, "word": " is", "probability": 0.83251953125}, {"start": 2040.04, "end": 2040.18, "word": " also", "probability": 0.82373046875}, {"start": 2040.18, "end": 2041.58, "word": " not", "probability": 0.239013671875}, {"start": 2041.58, "end": 2041.72, "word": " a", "probability": 0.966796875}, {"start": 2041.72, "end": 2042.1, "word": " health", "probability": 0.658203125}, {"start": 2042.1, "end": 2042.28, "word": " sign,", "probability": 0.300537109375}, {"start": 2042.32, "end": 2042.5, "word": " right", "probability": 0.6787109375}, {"start": 2042.5, "end": 2042.62, "word": " or", "probability": 0.68505859375}, {"start": 2042.62, "end": 2042.7, "word": " not?", "probability": 0.44970703125}, {"start": 2043.14, "end": 2043.46, "word": " It", "probability": 0.473876953125}, {"start": 2043.46, "end": 2043.6, "word": " means", "probability": 0.943359375}, {"start": 2043.6, "end": 2043.7, "word": " that", "probability": 0.389892578125}, {"start": 2043.7, "end": 2043.72, "word": " you", "probability": 0.44140625}, {"start": 2043.72, "end": 2044.06, "word": " changed", "probability": 0.58056640625}, {"start": 2044.06, "end": 2044.38, "word": " here.", "probability": 0.52490234375}], "temperature": 1.0}, {"id": 81, "seek": 207336, "start": 2046.06, "end": 2073.36, "text": " It hit this one, right? Yes, there is a lot of coupling when you keep sending objects. Ok, it is true that you made one object, but there is coupling that you need to send it from one place to another, ok? Izmilk said something good, we were going to talk about it here. He said, it is simple, make a static and send it anywhere. No, the static does not solve the problem. Do you know why? Did you notice that the static is good, but the problem is that", "tokens": [467, 2045, 341, 472, 11, 558, 30, 1079, 11, 456, 307, 257, 688, 295, 37447, 562, 291, 1066, 7750, 6565, 13, 3477, 11, 309, 307, 2074, 300, 291, 1027, 472, 2657, 11, 457, 456, 307, 37447, 300, 291, 643, 281, 2845, 309, 490, 472, 1081, 281, 1071, 11, 3133, 30, 30296, 28674, 74, 848, 746, 665, 11, 321, 645, 516, 281, 751, 466, 309, 510, 13, 634, 848, 11, 309, 307, 2199, 11, 652, 257, 13437, 293, 2845, 309, 4992, 13, 883, 11, 264, 13437, 775, 406, 5039, 264, 1154, 13, 1144, 291, 458, 983, 30, 2589, 291, 3449, 300, 264, 13437, 307, 665, 11, 457, 264, 1154, 307, 300], "avg_logprob": -0.5259008719040467, "compression_ratio": 1.7734375, "no_speech_prob": 4.291534423828125e-06, "words": [{"start": 2046.06, "end": 2046.3, "word": " It", "probability": 0.11279296875}, {"start": 2046.3, "end": 2046.46, "word": " hit", "probability": 0.4033203125}, {"start": 2046.46, "end": 2046.82, "word": " this", "probability": 0.6796875}, {"start": 2046.82, "end": 2046.86, "word": " one,", "probability": 0.51611328125}, {"start": 2046.94, "end": 2047.18, "word": " right?", "probability": 0.69580078125}, {"start": 2047.44, "end": 2047.58, "word": " Yes,", "probability": 0.2030029296875}, {"start": 2048.36, "end": 2048.86, "word": " there", "probability": 0.1541748046875}, {"start": 2048.86, "end": 2048.86, "word": " is", "probability": 0.28955078125}, {"start": 2048.86, "end": 2048.94, "word": " a", "probability": 0.5615234375}, {"start": 2048.94, "end": 2048.94, "word": " lot", "probability": 0.802734375}, {"start": 2048.94, "end": 2048.94, "word": " of", "probability": 0.9619140625}, {"start": 2048.94, "end": 2049.32, "word": " coupling", "probability": 0.89208984375}, {"start": 2049.32, "end": 2050.04, "word": " when", "probability": 0.07330322265625}, {"start": 2050.04, "end": 2050.42, "word": " you", "probability": 0.86181640625}, {"start": 2050.42, "end": 2050.48, "word": " keep", "probability": 0.328857421875}, {"start": 2050.48, "end": 2050.58, "word": " sending", "probability": 0.6572265625}, {"start": 2050.58, "end": 2051.06, "word": " objects.", "probability": 0.650390625}, {"start": 2051.22, "end": 2051.46, "word": " Ok,", "probability": 0.27001953125}, {"start": 2051.58, "end": 2051.74, "word": " it", "probability": 0.494140625}, {"start": 2051.74, "end": 2051.74, "word": " is", "probability": 0.5146484375}, {"start": 2051.74, "end": 2051.88, "word": " true", "probability": 0.66455078125}, {"start": 2051.88, "end": 2052.02, "word": " that", "probability": 0.82763671875}, {"start": 2052.02, "end": 2052.1, "word": " you", "probability": 0.81982421875}, {"start": 2052.1, "end": 2052.3, "word": " made", "probability": 0.447509765625}, {"start": 2052.3, "end": 2052.64, "word": " one", "probability": 0.79931640625}, {"start": 2052.64, "end": 2052.7, "word": " object,", "probability": 0.4833984375}, {"start": 2053.24, "end": 2053.7, "word": " but", "probability": 0.86767578125}, {"start": 2053.7, "end": 2053.88, "word": " there", "probability": 0.607421875}, {"start": 2053.88, "end": 2053.92, "word": " is", "probability": 0.88671875}, {"start": 2053.92, "end": 2054.26, "word": " coupling", "probability": 0.6015625}, {"start": 2054.26, "end": 2054.42, "word": " that", "probability": 0.329833984375}, {"start": 2054.42, "end": 2054.48, "word": " you", "probability": 0.763671875}, {"start": 2054.48, "end": 2054.74, "word": " need", "probability": 0.50830078125}, {"start": 2054.74, "end": 2054.9, "word": " to", "probability": 0.96240234375}, {"start": 2054.9, "end": 2055.1, "word": " send", "probability": 0.830078125}, {"start": 2055.1, "end": 2055.54, "word": " it", "probability": 0.50634765625}, {"start": 2055.54, "end": 2055.84, "word": " from", "probability": 0.8134765625}, {"start": 2055.84, "end": 2056.1, "word": " one", "probability": 0.484130859375}, {"start": 2056.1, "end": 2056.14, "word": " place", "probability": 0.70556640625}, {"start": 2056.14, "end": 2056.24, "word": " to", "probability": 0.970703125}, {"start": 2056.24, "end": 2056.3, "word": " another,", "probability": 0.83056640625}, {"start": 2056.6, "end": 2057.02, "word": " ok?", "probability": 0.427001953125}, {"start": 2058.72, "end": 2059.16, "word": " Izmilk", "probability": 0.34381103515625}, {"start": 2059.16, "end": 2059.3, "word": " said", "probability": 0.416748046875}, {"start": 2059.3, "end": 2059.58, "word": " something", "probability": 0.59130859375}, {"start": 2059.58, "end": 2059.86, "word": " good,", "probability": 0.79638671875}, {"start": 2059.96, "end": 2060.14, "word": " we", "probability": 0.473388671875}, {"start": 2060.14, "end": 2060.16, "word": " were", "probability": 0.403564453125}, {"start": 2060.16, "end": 2060.3, "word": " going", "probability": 0.64697265625}, {"start": 2060.3, "end": 2060.3, "word": " to", "probability": 0.97119140625}, {"start": 2060.3, "end": 2060.44, "word": " talk", "probability": 0.689453125}, {"start": 2060.44, "end": 2060.56, "word": " about", "probability": 0.8798828125}, {"start": 2060.56, "end": 2060.56, "word": " it", "probability": 0.63720703125}, {"start": 2060.56, "end": 2060.76, "word": " here.", "probability": 0.5537109375}, {"start": 2060.84, "end": 2060.88, "word": " He", "probability": 0.76025390625}, {"start": 2060.88, "end": 2060.96, "word": " said,", "probability": 0.90185546875}, {"start": 2061.08, "end": 2061.14, "word": " it", "probability": 0.271240234375}, {"start": 2061.14, "end": 2061.14, "word": " is", "probability": 0.58447265625}, {"start": 2061.14, "end": 2061.46, "word": " simple,", "probability": 0.76513671875}, {"start": 2061.58, "end": 2061.74, "word": " make", "probability": 0.6328125}, {"start": 2061.74, "end": 2061.9, "word": " a", "probability": 0.85107421875}, {"start": 2061.9, "end": 2062.12, "word": " static", "probability": 0.87646484375}, {"start": 2062.12, "end": 2063.04, "word": " and", "probability": 0.650390625}, {"start": 2063.04, "end": 2063.92, "word": " send", "probability": 0.4267578125}, {"start": 2063.92, "end": 2064.02, "word": " it", "probability": 0.88232421875}, {"start": 2064.02, "end": 2064.38, "word": " anywhere.", "probability": 0.497802734375}, {"start": 2065.36, "end": 2065.78, "word": " No,", "probability": 0.880859375}, {"start": 2065.88, "end": 2065.96, "word": " the", "probability": 0.5185546875}, {"start": 2065.96, "end": 2066.2, "word": " static", "probability": 0.91748046875}, {"start": 2066.2, "end": 2066.56, "word": " does", "probability": 0.443115234375}, {"start": 2066.56, "end": 2066.56, "word": " not", "probability": 0.94189453125}, {"start": 2066.56, "end": 2066.72, "word": " solve", "probability": 0.88037109375}, {"start": 2066.72, "end": 2066.96, "word": " the", "probability": 0.88720703125}, {"start": 2066.96, "end": 2067.2, "word": " problem.", "probability": 0.82470703125}, {"start": 2067.26, "end": 2067.38, "word": " Do", "probability": 0.78662109375}, {"start": 2067.38, "end": 2067.38, "word": " you", "probability": 0.97314453125}, {"start": 2067.38, "end": 2067.5, "word": " know", "probability": 0.88671875}, {"start": 2067.5, "end": 2067.78, "word": " why?", "probability": 0.93798828125}, {"start": 2068.26, "end": 2068.48, "word": " Did", "probability": 0.62158203125}, {"start": 2068.48, "end": 2068.74, "word": " you", "probability": 0.96923828125}, {"start": 2068.74, "end": 2068.74, "word": " notice", "probability": 0.263916015625}, {"start": 2068.74, "end": 2069.26, "word": " that", "probability": 0.501953125}, {"start": 2069.26, "end": 2069.66, "word": " the", "probability": 0.783203125}, {"start": 2069.66, "end": 2069.98, "word": " static", "probability": 0.9384765625}, {"start": 2069.98, "end": 2070.32, "word": " is", "probability": 0.884765625}, {"start": 2070.32, "end": 2070.72, "word": " good,", "probability": 0.8544921875}, {"start": 2071.2, "end": 2071.82, "word": " but", "probability": 0.47509765625}, {"start": 2071.82, "end": 2072.0, "word": " the", "probability": 0.6826171875}, {"start": 2072.0, "end": 2072.3, "word": " problem", "probability": 0.810546875}, {"start": 2072.3, "end": 2072.68, "word": " is", "probability": 0.90771484375}, {"start": 2072.68, "end": 2073.36, "word": " that", "probability": 0.8955078125}], "temperature": 1.0}, {"id": 82, "seek": 207638, "start": 2074.56, "end": 2076.38, "text": " even if you don't need it.", "tokens": [754, 498, 291, 500, 380, 643, 309, 13], "avg_logprob": -0.4396701388888889, "compression_ratio": 0.7714285714285715, "no_speech_prob": 0.0, "words": [{"start": 2074.56, "end": 2075.08, "word": " even", "probability": 0.05584716796875}, {"start": 2075.08, "end": 2075.56, "word": " if", "probability": 0.884765625}, {"start": 2075.56, "end": 2075.72, "word": " you", "probability": 0.896484375}, {"start": 2075.72, "end": 2075.9, "word": " don't", "probability": 0.9306640625}, {"start": 2075.9, "end": 2076.24, "word": " need", "probability": 0.90380859375}, {"start": 2076.24, "end": 2076.38, "word": " it.", "probability": 0.72314453125}], "temperature": 1.0}, {"id": 83, "seek": 210636, "start": 2077.5, "end": 2106.36, "text": "Okay? So this aesthetic, we know that even if you didn't create an object from scratch, even from all the screens, it will still be there in your memory. This means, imagine for example in a game, okay? You put all the audio, textures, and 3D objects, all of them with aesthetics, so that you can use them wherever you want. So the game, as soon as it starts, it will download and load all the Gigs, all the data, all at once.", "tokens": [8297, 30, 407, 341, 20092, 11, 321, 458, 300, 754, 498, 291, 994, 380, 1884, 364, 2657, 490, 8459, 11, 754, 490, 439, 264, 11171, 11, 309, 486, 920, 312, 456, 294, 428, 4675, 13, 639, 1355, 11, 3811, 337, 1365, 294, 257, 1216, 11, 1392, 30, 509, 829, 439, 264, 6278, 11, 24501, 11, 293, 805, 35, 6565, 11, 439, 295, 552, 365, 35517, 11, 370, 300, 291, 393, 764, 552, 8660, 291, 528, 13, 407, 264, 1216, 11, 382, 2321, 382, 309, 3719, 11, 309, 486, 5484, 293, 3677, 439, 264, 460, 17156, 11, 439, 264, 1412, 11, 439, 412, 1564, 13], "avg_logprob": -0.58363097962879, "compression_ratio": 1.697211155378486, "no_speech_prob": 2.2292137145996094e-05, "words": [{"start": 2077.5, "end": 2078.02, "word": "Okay?", "probability": 0.182373046875}, {"start": 2078.94, "end": 2079.24, "word": " So", "probability": 0.198486328125}, {"start": 2079.24, "end": 2079.52, "word": " this", "probability": 0.36181640625}, {"start": 2079.52, "end": 2079.92, "word": " aesthetic,", "probability": 0.52978515625}, {"start": 2080.08, "end": 2080.26, "word": " we", "probability": 0.4248046875}, {"start": 2080.26, "end": 2080.58, "word": " know", "probability": 0.76708984375}, {"start": 2080.58, "end": 2080.78, "word": " that", "probability": 0.7822265625}, {"start": 2080.78, "end": 2081.16, "word": " even", "probability": 0.771484375}, {"start": 2081.16, "end": 2081.28, "word": " if", "probability": 0.8642578125}, {"start": 2081.28, "end": 2081.38, "word": " you", "probability": 0.923828125}, {"start": 2081.38, "end": 2081.4, "word": " didn't", "probability": 0.6527099609375}, {"start": 2081.4, "end": 2081.6, "word": " create", "probability": 0.61962890625}, {"start": 2081.6, "end": 2082.12, "word": " an", "probability": 0.58447265625}, {"start": 2082.12, "end": 2082.12, "word": " object", "probability": 0.96875}, {"start": 2082.12, "end": 2082.26, "word": " from", "probability": 0.6376953125}, {"start": 2082.26, "end": 2082.74, "word": " scratch,", "probability": 0.77783203125}, {"start": 2083.52, "end": 2084.04, "word": " even", "probability": 0.5478515625}, {"start": 2084.04, "end": 2084.22, "word": " from", "probability": 0.69873046875}, {"start": 2084.22, "end": 2084.32, "word": " all", "probability": 0.5361328125}, {"start": 2084.32, "end": 2084.32, "word": " the", "probability": 0.342529296875}, {"start": 2084.32, "end": 2084.6, "word": " screens,", "probability": 0.8291015625}, {"start": 2085.02, "end": 2085.02, "word": " it", "probability": 0.464599609375}, {"start": 2085.02, "end": 2085.08, "word": " will", "probability": 0.2320556640625}, {"start": 2085.08, "end": 2085.26, "word": " still", "probability": 0.36767578125}, {"start": 2085.26, "end": 2085.44, "word": " be", "probability": 0.4287109375}, {"start": 2085.44, "end": 2085.84, "word": " there", "probability": 0.420654296875}, {"start": 2085.84, "end": 2086.48, "word": " in", "probability": 0.80224609375}, {"start": 2086.48, "end": 2086.58, "word": " your", "probability": 0.343017578125}, {"start": 2086.58, "end": 2086.86, "word": " memory.", "probability": 0.82763671875}, {"start": 2087.44, "end": 2087.72, "word": " This", "probability": 0.6025390625}, {"start": 2087.72, "end": 2087.98, "word": " means,", "probability": 0.7138671875}, {"start": 2088.18, "end": 2088.5, "word": " imagine", "probability": 0.5048828125}, {"start": 2088.5, "end": 2088.7, "word": " for", "probability": 0.1912841796875}, {"start": 2088.7, "end": 2088.86, "word": " example", "probability": 0.900390625}, {"start": 2088.86, "end": 2089.0, "word": " in", "probability": 0.288330078125}, {"start": 2089.0, "end": 2089.1, "word": " a", "probability": 0.7158203125}, {"start": 2089.1, "end": 2089.32, "word": " game,", "probability": 0.8603515625}, {"start": 2090.04, "end": 2090.24, "word": " okay?", "probability": 0.54443359375}, {"start": 2090.7, "end": 2091.18, "word": " You", "probability": 0.87109375}, {"start": 2091.18, "end": 2091.76, "word": " put", "probability": 0.529296875}, {"start": 2091.76, "end": 2092.4, "word": " all", "probability": 0.8916015625}, {"start": 2092.4, "end": 2092.52, "word": " the", "probability": 0.77978515625}, {"start": 2092.52, "end": 2092.9, "word": " audio,", "probability": 0.96728515625}, {"start": 2093.62, "end": 2094.14, "word": " textures,", "probability": 0.802734375}, {"start": 2094.78, "end": 2094.88, "word": " and", "probability": 0.68896484375}, {"start": 2094.88, "end": 2095.24, "word": " 3D", "probability": 0.87158203125}, {"start": 2095.24, "end": 2095.56, "word": " objects,", "probability": 0.9501953125}, {"start": 2095.56, "end": 2095.76, "word": " all", "probability": 0.517578125}, {"start": 2095.76, "end": 2095.82, "word": " of", "probability": 0.5283203125}, {"start": 2095.82, "end": 2095.82, "word": " them", "probability": 0.7568359375}, {"start": 2095.82, "end": 2096.06, "word": " with", "probability": 0.2056884765625}, {"start": 2096.06, "end": 2096.44, "word": " aesthetics,", "probability": 0.55712890625}, {"start": 2096.48, "end": 2096.62, "word": " so", "probability": 0.397216796875}, {"start": 2096.62, "end": 2096.74, "word": " that", "probability": 0.446044921875}, {"start": 2096.74, "end": 2096.76, "word": " you", "probability": 0.93505859375}, {"start": 2096.76, "end": 2096.78, "word": " can", "probability": 0.69482421875}, {"start": 2096.78, "end": 2097.06, "word": " use", "probability": 0.900390625}, {"start": 2097.06, "end": 2097.26, "word": " them", "probability": 0.87109375}, {"start": 2097.26, "end": 2097.56, "word": " wherever", "probability": 0.4697265625}, {"start": 2097.56, "end": 2097.88, "word": " you", "probability": 0.734375}, {"start": 2097.88, "end": 2098.06, "word": " want.", "probability": 0.7734375}, {"start": 2098.74, "end": 2099.18, "word": " So", "probability": 0.25341796875}, {"start": 2099.18, "end": 2099.64, "word": " the", "probability": 0.487060546875}, {"start": 2099.64, "end": 2099.88, "word": " game,", "probability": 0.8603515625}, {"start": 2100.0, "end": 2100.1, "word": " as", "probability": 0.2802734375}, {"start": 2100.1, "end": 2100.18, "word": " soon", "probability": 0.94189453125}, {"start": 2100.18, "end": 2100.18, "word": " as", "probability": 0.97216796875}, {"start": 2100.18, "end": 2100.36, "word": " it", "probability": 0.5517578125}, {"start": 2100.36, "end": 2100.6, "word": " starts,", "probability": 0.67626953125}, {"start": 2101.76, "end": 2102.28, "word": " it", "probability": 0.23486328125}, {"start": 2102.28, "end": 2102.34, "word": " will", "probability": 0.67529296875}, {"start": 2102.34, "end": 2102.64, "word": " download", "probability": 0.1378173828125}, {"start": 2102.64, "end": 2102.76, "word": " and", "probability": 0.435302734375}, {"start": 2102.76, "end": 2103.28, "word": " load", "probability": 0.57373046875}, {"start": 2103.28, "end": 2103.64, "word": " all", "probability": 0.89404296875}, {"start": 2103.64, "end": 2103.76, "word": " the", "probability": 0.3076171875}, {"start": 2103.76, "end": 2104.14, "word": " Gigs,", "probability": 0.2611083984375}, {"start": 2104.42, "end": 2104.56, "word": " all", "probability": 0.3759765625}, {"start": 2104.56, "end": 2104.6, "word": " the", "probability": 0.7744140625}, {"start": 2104.6, "end": 2104.86, "word": " data,", "probability": 0.8681640625}, {"start": 2105.5, "end": 2105.7, "word": " all", "probability": 0.304443359375}, {"start": 2105.7, "end": 2106.32, "word": " at", "probability": 0.87890625}, {"start": 2106.32, "end": 2106.36, "word": " once.", "probability": 0.83447265625}], "temperature": 1.0}, {"id": 84, "seek": 213431, "start": 2107.31, "end": 2134.31, "text": "No, we want a better solution that does not create what you want it to create except in the time that you need it to create. Okay? This scenario explains to you what is the problem that we are going to face. How can we create one object from a class when it is needed only. Okay? And when this object is created, we will use it anywhere in the application. Okay? We create it when it is needed.", "tokens": [4540, 11, 321, 528, 257, 1101, 3827, 300, 775, 406, 1884, 437, 291, 528, 309, 281, 1884, 3993, 294, 264, 565, 300, 291, 643, 309, 281, 1884, 13, 1033, 30, 639, 9005, 13948, 281, 291, 437, 307, 264, 1154, 300, 321, 366, 516, 281, 1851, 13, 1012, 393, 321, 1884, 472, 2657, 490, 257, 1508, 562, 309, 307, 2978, 787, 13, 1033, 30, 400, 562, 341, 2657, 307, 2942, 11, 321, 486, 764, 309, 4992, 294, 264, 3861, 13, 1033, 30, 492, 1884, 309, 562, 309, 307, 2978, 13], "avg_logprob": -0.47361111607816486, "compression_ratio": 1.7828054298642535, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 2107.31, "end": 2107.61, "word": "No,", "probability": 0.39794921875}, {"start": 2107.63, "end": 2107.79, "word": " we", "probability": 0.7646484375}, {"start": 2107.79, "end": 2107.99, "word": " want", "probability": 0.4912109375}, {"start": 2107.99, "end": 2108.15, "word": " a", "probability": 0.796875}, {"start": 2108.15, "end": 2108.63, "word": " better", "probability": 0.80859375}, {"start": 2108.63, "end": 2108.63, "word": " solution", "probability": 0.9013671875}, {"start": 2108.63, "end": 2109.19, "word": " that", "probability": 0.39599609375}, {"start": 2109.19, "end": 2109.55, "word": " does", "probability": 0.1705322265625}, {"start": 2109.55, "end": 2109.55, "word": " not", "probability": 0.90966796875}, {"start": 2109.55, "end": 2111.27, "word": " create", "probability": 0.326904296875}, {"start": 2111.27, "end": 2111.39, "word": " what", "probability": 0.5810546875}, {"start": 2111.39, "end": 2111.47, "word": " you", "probability": 0.775390625}, {"start": 2111.47, "end": 2111.79, "word": " want", "probability": 0.650390625}, {"start": 2111.79, "end": 2111.79, "word": " it", "probability": 0.324951171875}, {"start": 2111.79, "end": 2111.79, "word": " to", "probability": 0.90966796875}, {"start": 2111.79, "end": 2111.99, "word": " create", "probability": 0.568359375}, {"start": 2111.99, "end": 2112.21, "word": " except", "probability": 0.533203125}, {"start": 2112.21, "end": 2112.37, "word": " in", "probability": 0.5078125}, {"start": 2112.37, "end": 2112.47, "word": " the", "probability": 0.67529296875}, {"start": 2112.47, "end": 2112.77, "word": " time", "probability": 0.677734375}, {"start": 2112.77, "end": 2113.93, "word": " that", "probability": 0.214111328125}, {"start": 2113.93, "end": 2114.07, "word": " you", "probability": 0.91796875}, {"start": 2114.07, "end": 2114.37, "word": " need", "probability": 0.8974609375}, {"start": 2114.37, "end": 2114.61, "word": " it", "probability": 0.484375}, {"start": 2114.61, "end": 2115.07, "word": " to", "probability": 0.370361328125}, {"start": 2115.07, "end": 2115.25, "word": " create.", "probability": 0.6123046875}, {"start": 2115.25, "end": 2115.51, "word": " Okay?", "probability": 0.1923828125}, {"start": 2116.55, "end": 2117.07, "word": " This", "probability": 0.8056640625}, {"start": 2117.07, "end": 2117.53, "word": " scenario", "probability": 0.861328125}, {"start": 2117.53, "end": 2117.89, "word": " explains", "probability": 0.68408203125}, {"start": 2117.89, "end": 2118.07, "word": " to", "probability": 0.53759765625}, {"start": 2118.07, "end": 2118.13, "word": " you", "probability": 0.947265625}, {"start": 2118.13, "end": 2118.33, "word": " what", "probability": 0.73828125}, {"start": 2118.33, "end": 2118.39, "word": " is", "probability": 0.338134765625}, {"start": 2118.39, "end": 2118.49, "word": " the", "probability": 0.85888671875}, {"start": 2118.49, "end": 2118.77, "word": " problem", "probability": 0.8193359375}, {"start": 2118.77, "end": 2118.91, "word": " that", "probability": 0.64794921875}, {"start": 2118.91, "end": 2119.11, "word": " we", "probability": 0.92626953125}, {"start": 2119.11, "end": 2119.19, "word": " are", "probability": 0.2381591796875}, {"start": 2119.19, "end": 2119.23, "word": " going", "probability": 0.59228515625}, {"start": 2119.23, "end": 2119.23, "word": " to", "probability": 0.97021484375}, {"start": 2119.23, "end": 2119.49, "word": " face.", "probability": 0.31982421875}, {"start": 2119.85, "end": 2120.17, "word": " How", "probability": 0.61474609375}, {"start": 2120.17, "end": 2120.73, "word": " can", "probability": 0.6181640625}, {"start": 2120.73, "end": 2121.13, "word": " we", "probability": 0.93896484375}, {"start": 2121.13, "end": 2121.43, "word": " create", "probability": 0.8349609375}, {"start": 2121.43, "end": 2121.85, "word": " one", "probability": 0.471923828125}, {"start": 2121.85, "end": 2122.21, "word": " object", "probability": 0.94580078125}, {"start": 2122.21, "end": 2122.65, "word": " from", "probability": 0.552734375}, {"start": 2122.65, "end": 2122.77, "word": " a", "probability": 0.376708984375}, {"start": 2122.77, "end": 2123.15, "word": " class", "probability": 0.9345703125}, {"start": 2123.15, "end": 2124.13, "word": " when", "probability": 0.3359375}, {"start": 2124.13, "end": 2124.39, "word": " it", "probability": 0.37109375}, {"start": 2124.39, "end": 2124.39, "word": " is", "probability": 0.7431640625}, {"start": 2124.39, "end": 2124.63, "word": " needed", "probability": 0.458740234375}, {"start": 2124.63, "end": 2125.05, "word": " only.", "probability": 0.436767578125}, {"start": 2125.71, "end": 2125.97, "word": " Okay?", "probability": 0.548828125}, {"start": 2126.09, "end": 2126.23, "word": " And", "probability": 0.6884765625}, {"start": 2126.23, "end": 2126.39, "word": " when", "probability": 0.9072265625}, {"start": 2126.39, "end": 2126.73, "word": " this", "probability": 0.490234375}, {"start": 2126.73, "end": 2127.07, "word": " object", "probability": 0.9794921875}, {"start": 2127.07, "end": 2127.09, "word": " is", "probability": 0.88427734375}, {"start": 2127.09, "end": 2127.09, "word": " created,", "probability": 0.8017578125}, {"start": 2127.33, "end": 2127.45, "word": " we", "probability": 0.880859375}, {"start": 2127.45, "end": 2127.53, "word": " will", "probability": 0.599609375}, {"start": 2127.53, "end": 2127.89, "word": " use", "probability": 0.87646484375}, {"start": 2127.89, "end": 2128.51, "word": " it", "probability": 0.92724609375}, {"start": 2128.51, "end": 2129.51, "word": " anywhere", "probability": 0.27685546875}, {"start": 2129.51, "end": 2130.95, "word": " in", "probability": 0.9130859375}, {"start": 2130.95, "end": 2131.07, "word": " the", "probability": 0.89794921875}, {"start": 2131.07, "end": 2131.33, "word": " application.", "probability": 0.78662109375}, {"start": 2132.11, "end": 2132.63, "word": " Okay?", "probability": 0.7705078125}, {"start": 2133.13, "end": 2133.45, "word": " We", "probability": 0.591796875}, {"start": 2133.45, "end": 2133.61, "word": " create", "probability": 0.7333984375}, {"start": 2133.61, "end": 2133.71, "word": " it", "probability": 0.87744140625}, {"start": 2133.71, "end": 2133.87, "word": " when", "probability": 0.8828125}, {"start": 2133.87, "end": 2134.03, "word": " it", "probability": 0.57080078125}, {"start": 2134.03, "end": 2134.03, "word": " is", "probability": 0.8837890625}, {"start": 2134.03, "end": 2134.31, "word": " needed.", "probability": 0.84130859375}], "temperature": 1.0}, {"id": 85, "seek": 215834, "start": 2135.32, "end": 2158.34, "text": "only, and create it only once, and use it everywhere in the application. This will be applied by using the singleton pattern. Where are the examples of applications for use? As I said, I need to make a connection to the database once and use it everywhere. I need to load configuration data or large data once and use it everywhere.", "tokens": [25202, 11, 293, 1884, 309, 787, 1564, 11, 293, 764, 309, 5315, 294, 264, 3861, 13, 639, 486, 312, 6456, 538, 1228, 264, 1522, 14806, 5102, 13, 2305, 366, 264, 5110, 295, 5821, 337, 764, 30, 1018, 286, 848, 11, 286, 643, 281, 652, 257, 4984, 281, 264, 8149, 1564, 293, 764, 309, 5315, 13, 286, 643, 281, 3677, 11694, 1412, 420, 2416, 1412, 1564, 293, 764, 309, 5315, 13], "avg_logprob": -0.4304577557133957, "compression_ratio": 1.7945945945945947, "no_speech_prob": 4.166364669799805e-05, "words": [{"start": 2135.32, "end": 2135.88, "word": "only,", "probability": 0.0728759765625}, {"start": 2136.22, "end": 2136.5, "word": " and", "probability": 0.54248046875}, {"start": 2136.5, "end": 2136.76, "word": " create", "probability": 0.51953125}, {"start": 2136.76, "end": 2136.92, "word": " it", "probability": 0.3583984375}, {"start": 2136.92, "end": 2136.98, "word": " only", "probability": 0.41259765625}, {"start": 2136.98, "end": 2137.32, "word": " once,", "probability": 0.8544921875}, {"start": 2137.5, "end": 2138.38, "word": " and", "probability": 0.8759765625}, {"start": 2138.38, "end": 2138.74, "word": " use", "probability": 0.79736328125}, {"start": 2138.74, "end": 2138.94, "word": " it", "probability": 0.92041015625}, {"start": 2138.94, "end": 2139.38, "word": " everywhere", "probability": 0.47021484375}, {"start": 2139.38, "end": 2140.74, "word": " in", "probability": 0.8427734375}, {"start": 2140.74, "end": 2140.84, "word": " the", "probability": 0.86376953125}, {"start": 2140.84, "end": 2141.14, "word": " application.", "probability": 0.6591796875}, {"start": 2141.44, "end": 2141.76, "word": " This", "probability": 0.58056640625}, {"start": 2141.76, "end": 2141.88, "word": " will", "probability": 0.406494140625}, {"start": 2141.88, "end": 2141.94, "word": " be", "probability": 0.58984375}, {"start": 2141.94, "end": 2142.14, "word": " applied", "probability": 0.5771484375}, {"start": 2142.14, "end": 2142.26, "word": " by", "probability": 0.445068359375}, {"start": 2142.26, "end": 2143.16, "word": " using", "probability": 0.8759765625}, {"start": 2143.16, "end": 2143.48, "word": " the", "probability": 0.5341796875}, {"start": 2143.48, "end": 2143.8, "word": " singleton", "probability": 0.759033203125}, {"start": 2143.8, "end": 2144.12, "word": " pattern.", "probability": 0.91650390625}, {"start": 2144.74, "end": 2145.0, "word": " Where", "probability": 0.40185546875}, {"start": 2145.0, "end": 2145.28, "word": " are", "probability": 0.230712890625}, {"start": 2145.28, "end": 2145.34, "word": " the", "probability": 0.400634765625}, {"start": 2145.34, "end": 2145.62, "word": " examples", "probability": 0.46044921875}, {"start": 2145.62, "end": 2145.8, "word": " of", "probability": 0.93994140625}, {"start": 2145.8, "end": 2146.14, "word": " applications", "probability": 0.72216796875}, {"start": 2146.14, "end": 2146.28, "word": " for", "probability": 0.317626953125}, {"start": 2146.28, "end": 2146.6, "word": " use?", "probability": 0.64599609375}, {"start": 2146.74, "end": 2146.84, "word": " As", "probability": 0.677734375}, {"start": 2146.84, "end": 2147.04, "word": " I", "probability": 0.92138671875}, {"start": 2147.04, "end": 2147.18, "word": " said,", "probability": 0.88720703125}, {"start": 2147.26, "end": 2147.36, "word": " I", "probability": 0.9345703125}, {"start": 2147.36, "end": 2147.56, "word": " need", "probability": 0.89404296875}, {"start": 2147.56, "end": 2147.7, "word": " to", "probability": 0.955078125}, {"start": 2147.7, "end": 2147.8, "word": " make", "probability": 0.677734375}, {"start": 2147.8, "end": 2147.94, "word": " a", "probability": 0.78857421875}, {"start": 2147.94, "end": 2148.24, "word": " connection", "probability": 0.73779296875}, {"start": 2148.24, "end": 2148.42, "word": " to", "probability": 0.82470703125}, {"start": 2148.42, "end": 2148.5, "word": " the", "probability": 0.86328125}, {"start": 2148.5, "end": 2148.96, "word": " database", "probability": 0.9404296875}, {"start": 2148.96, "end": 2149.3, "word": " once", "probability": 0.398681640625}, {"start": 2149.3, "end": 2149.72, "word": " and", "probability": 0.49365234375}, {"start": 2149.72, "end": 2150.0, "word": " use", "probability": 0.833984375}, {"start": 2150.0, "end": 2150.2, "word": " it", "probability": 0.931640625}, {"start": 2150.2, "end": 2150.44, "word": " everywhere.", "probability": 0.64599609375}, {"start": 2151.44, "end": 2151.7, "word": " I", "probability": 0.97216796875}, {"start": 2151.7, "end": 2151.98, "word": " need", "probability": 0.9111328125}, {"start": 2151.98, "end": 2152.2, "word": " to", "probability": 0.9609375}, {"start": 2152.2, "end": 2152.62, "word": " load", "probability": 0.67138671875}, {"start": 2152.62, "end": 2153.7, "word": " configuration", "probability": 0.4970703125}, {"start": 2153.7, "end": 2154.38, "word": " data", "probability": 0.9384765625}, {"start": 2154.38, "end": 2155.18, "word": " or", "probability": 0.60205078125}, {"start": 2155.18, "end": 2156.0, "word": " large", "probability": 0.6455078125}, {"start": 2156.0, "end": 2156.22, "word": " data", "probability": 0.66650390625}, {"start": 2156.22, "end": 2156.5, "word": " once", "probability": 0.73388671875}, {"start": 2156.5, "end": 2157.18, "word": " and", "probability": 0.798828125}, {"start": 2157.18, "end": 2157.58, "word": " use", "probability": 0.88671875}, {"start": 2157.58, "end": 2157.8, "word": " it", "probability": 0.78125}, {"start": 2157.8, "end": 2158.34, "word": " everywhere.", "probability": 0.7275390625}], "temperature": 1.0}, {"id": 86, "seek": 217635, "start": 2159.71, "end": 2176.35, "text": "Or for example one of the scenarios here, sometimes it is important to have only one instance for a class For example in a system there should be only one window manager", "tokens": [21520, 337, 1365, 472, 295, 264, 15077, 510, 11, 2171, 309, 307, 1021, 281, 362, 787, 472, 5197, 337, 257, 1508, 1171, 1365, 294, 257, 1185, 456, 820, 312, 787, 472, 4910, 6598], "avg_logprob": -0.32444853817715363, "compression_ratio": 1.4201680672268908, "no_speech_prob": 9.775161743164062e-06, "words": [{"start": 2159.71, "end": 2160.31, "word": "Or", "probability": 0.49658203125}, {"start": 2160.31, "end": 2160.63, "word": " for", "probability": 0.448486328125}, {"start": 2160.63, "end": 2160.83, "word": " example", "probability": 0.908203125}, {"start": 2160.83, "end": 2161.11, "word": " one", "probability": 0.494384765625}, {"start": 2161.11, "end": 2161.29, "word": " of", "probability": 0.916015625}, {"start": 2161.29, "end": 2161.43, "word": " the", "probability": 0.8134765625}, {"start": 2161.43, "end": 2161.71, "word": " scenarios", "probability": 0.8876953125}, {"start": 2161.71, "end": 2162.53, "word": " here,", "probability": 0.277099609375}, {"start": 2162.79, "end": 2164.67, "word": " sometimes", "probability": 0.257568359375}, {"start": 2164.67, "end": 2165.77, "word": " it", "probability": 0.8515625}, {"start": 2165.77, "end": 2165.87, "word": " is", "probability": 0.54833984375}, {"start": 2165.87, "end": 2166.37, "word": " important", "probability": 0.861328125}, {"start": 2166.37, "end": 2166.59, "word": " to", "probability": 0.955078125}, {"start": 2166.59, "end": 2166.87, "word": " have", "probability": 0.92138671875}, {"start": 2166.87, "end": 2167.31, "word": " only", "probability": 0.833984375}, {"start": 2167.31, "end": 2167.79, "word": " one", "probability": 0.8984375}, {"start": 2167.79, "end": 2168.29, "word": " instance", "probability": 0.98193359375}, {"start": 2168.29, "end": 2168.53, "word": " for", "probability": 0.88671875}, {"start": 2168.53, "end": 2168.69, "word": " a", "probability": 0.892578125}, {"start": 2168.69, "end": 2169.03, "word": " class", "probability": 0.97119140625}, {"start": 2169.03, "end": 2172.79, "word": " For", "probability": 0.3427734375}, {"start": 2172.79, "end": 2173.25, "word": " example", "probability": 0.96875}, {"start": 2173.25, "end": 2173.85, "word": " in", "probability": 0.499755859375}, {"start": 2173.85, "end": 2173.99, "word": " a", "probability": 0.982421875}, {"start": 2173.99, "end": 2174.35, "word": " system", "probability": 0.947265625}, {"start": 2174.35, "end": 2174.75, "word": " there", "probability": 0.794921875}, {"start": 2174.75, "end": 2174.95, "word": " should", "probability": 0.9638671875}, {"start": 2174.95, "end": 2175.17, "word": " be", "probability": 0.67236328125}, {"start": 2175.17, "end": 2175.45, "word": " only", "probability": 0.90185546875}, {"start": 2175.45, "end": 2175.73, "word": " one", "probability": 0.916015625}, {"start": 2175.73, "end": 2176.03, "word": " window", "probability": 0.92919921875}, {"start": 2176.03, "end": 2176.35, "word": " manager", "probability": 0.95263671875}], "temperature": 1.0}, {"id": 87, "seek": 220367, "start": 2177.14, "end": 2203.68, "text": " For example, in some GUI applications, they make something called Window Manager to control the components of the screen and sub-screens that appear. So this Window Manager is supposed to be an object that you make more than once. Another example is a file system object that reads certain files. Or Print Spooler. Do you know what Print Spooler is? It's printing. The printing service must be compatible with", "tokens": [1171, 1365, 11, 294, 512, 17917, 40, 5821, 11, 436, 652, 746, 1219, 44933, 13821, 281, 1969, 264, 6677, 295, 264, 2568, 293, 1422, 12, 4417, 9098, 300, 4204, 13, 407, 341, 44933, 13821, 307, 3442, 281, 312, 364, 2657, 300, 291, 652, 544, 813, 1564, 13, 3996, 1365, 307, 257, 3991, 1185, 2657, 300, 15700, 1629, 7098, 13, 1610, 34439, 1738, 1092, 260, 13, 1144, 291, 458, 437, 34439, 1738, 1092, 260, 307, 30, 467, 311, 14699, 13, 440, 14699, 2643, 1633, 312, 18218, 365], "avg_logprob": -0.5021551614520193, "compression_ratio": 1.64, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 2177.14, "end": 2177.48, "word": " For", "probability": 0.5732421875}, {"start": 2177.48, "end": 2177.82, "word": " example,", "probability": 0.861328125}, {"start": 2178.5, "end": 2178.62, "word": " in", "probability": 0.417236328125}, {"start": 2178.62, "end": 2178.9, "word": " some", "probability": 0.76953125}, {"start": 2178.9, "end": 2179.94, "word": " GUI", "probability": 0.661865234375}, {"start": 2179.94, "end": 2179.94, "word": " applications,", "probability": 0.55712890625}, {"start": 2180.04, "end": 2180.04, "word": " they", "probability": 0.55224609375}, {"start": 2180.04, "end": 2180.24, "word": " make", "probability": 0.2060546875}, {"start": 2180.24, "end": 2180.4, "word": " something", "probability": 0.49267578125}, {"start": 2180.4, "end": 2180.6, "word": " called", "probability": 0.88525390625}, {"start": 2180.6, "end": 2180.86, "word": " Window", "probability": 0.3134765625}, {"start": 2180.86, "end": 2181.22, "word": " Manager", "probability": 0.8994140625}, {"start": 2181.22, "end": 2181.54, "word": " to", "probability": 0.39501953125}, {"start": 2181.54, "end": 2182.04, "word": " control", "probability": 0.685546875}, {"start": 2182.04, "end": 2182.24, "word": " the", "probability": 0.72802734375}, {"start": 2182.24, "end": 2182.62, "word": " components", "probability": 0.2225341796875}, {"start": 2182.62, "end": 2183.44, "word": " of", "probability": 0.82177734375}, {"start": 2183.44, "end": 2183.5, "word": " the", "probability": 0.83447265625}, {"start": 2183.5, "end": 2183.74, "word": " screen", "probability": 0.6259765625}, {"start": 2183.74, "end": 2184.38, "word": " and", "probability": 0.340576171875}, {"start": 2184.38, "end": 2184.92, "word": " sub", "probability": 0.44775390625}, {"start": 2184.92, "end": 2185.66, "word": "-screens", "probability": 0.7211100260416666}, {"start": 2185.66, "end": 2186.2, "word": " that", "probability": 0.32470703125}, {"start": 2186.2, "end": 2186.48, "word": " appear.", "probability": 0.356689453125}, {"start": 2186.98, "end": 2187.4, "word": " So", "probability": 0.389892578125}, {"start": 2187.4, "end": 2187.68, "word": " this", "probability": 0.5888671875}, {"start": 2187.68, "end": 2187.88, "word": " Window", "probability": 0.8740234375}, {"start": 2187.88, "end": 2188.2, "word": " Manager", "probability": 0.9189453125}, {"start": 2188.2, "end": 2188.34, "word": " is", "probability": 0.46826171875}, {"start": 2188.34, "end": 2188.52, "word": " supposed", "probability": 0.82958984375}, {"start": 2188.52, "end": 2188.62, "word": " to", "probability": 0.9716796875}, {"start": 2188.62, "end": 2188.82, "word": " be", "probability": 0.440185546875}, {"start": 2188.82, "end": 2189.92, "word": " an", "probability": 0.38427734375}, {"start": 2189.92, "end": 2190.14, "word": " object", "probability": 0.966796875}, {"start": 2190.14, "end": 2190.36, "word": " that", "probability": 0.23583984375}, {"start": 2190.36, "end": 2191.1, "word": " you", "probability": 0.6240234375}, {"start": 2191.1, "end": 2191.26, "word": " make", "probability": 0.36865234375}, {"start": 2191.26, "end": 2191.46, "word": " more", "probability": 0.61328125}, {"start": 2191.46, "end": 2191.64, "word": " than", "probability": 0.79345703125}, {"start": 2191.64, "end": 2192.02, "word": " once.", "probability": 0.75732421875}, {"start": 2193.58, "end": 2194.14, "word": " Another", "probability": 0.296142578125}, {"start": 2194.14, "end": 2194.6, "word": " example", "probability": 0.95703125}, {"start": 2194.6, "end": 2194.96, "word": " is", "probability": 0.826171875}, {"start": 2194.96, "end": 2195.02, "word": " a", "probability": 0.580078125}, {"start": 2195.02, "end": 2195.22, "word": " file", "probability": 0.66943359375}, {"start": 2195.22, "end": 2195.7, "word": " system", "probability": 0.953125}, {"start": 2195.7, "end": 2196.28, "word": " object", "probability": 0.9521484375}, {"start": 2196.28, "end": 2196.78, "word": " that", "probability": 0.833984375}, {"start": 2196.78, "end": 2197.02, "word": " reads", "probability": 0.9267578125}, {"start": 2197.02, "end": 2197.12, "word": " certain", "probability": 0.4677734375}, {"start": 2197.12, "end": 2197.5, "word": " files.", "probability": 0.9052734375}, {"start": 2197.94, "end": 2198.04, "word": " Or", "probability": 0.86865234375}, {"start": 2198.04, "end": 2198.32, "word": " Print", "probability": 0.362060546875}, {"start": 2198.32, "end": 2198.76, "word": " Spooler.", "probability": 0.9093424479166666}, {"start": 2198.8, "end": 2198.84, "word": " Do", "probability": 0.78662109375}, {"start": 2198.84, "end": 2199.0, "word": " you", "probability": 0.96826171875}, {"start": 2199.0, "end": 2199.0, "word": " know", "probability": 0.88525390625}, {"start": 2199.0, "end": 2199.16, "word": " what", "probability": 0.896484375}, {"start": 2199.16, "end": 2199.4, "word": " Print", "probability": 0.74169921875}, {"start": 2199.4, "end": 2199.8, "word": " Spooler", "probability": 0.9510091145833334}, {"start": 2199.8, "end": 2199.82, "word": " is?", "probability": 0.919921875}, {"start": 2200.0, "end": 2200.0, "word": " It's", "probability": 0.584228515625}, {"start": 2200.0, "end": 2200.48, "word": " printing.", "probability": 0.358154296875}, {"start": 2201.22, "end": 2201.78, "word": " The", "probability": 0.450927734375}, {"start": 2201.78, "end": 2202.02, "word": " printing", "probability": 0.194580078125}, {"start": 2202.02, "end": 2202.12, "word": " service", "probability": 0.81787109375}, {"start": 2202.12, "end": 2202.86, "word": " must", "probability": 0.414306640625}, {"start": 2202.86, "end": 2203.08, "word": " be", "probability": 0.841796875}, {"start": 2203.08, "end": 2203.42, "word": " compatible", "probability": 0.1259765625}, {"start": 2203.42, "end": 2203.68, "word": " with", "probability": 0.78125}], "temperature": 1.0}, {"id": 88, "seek": 221980, "start": 2204.5, "end": 2219.8, "text": " All of them. Because the idea is that any printing order that comes, they put it in a queue. Okay? And they arrange it according to the incoming orders. It doesn't make sense that every time you want to open a new screen, they make a new queue for you. Okay? And they even know where to connect to a web service.", "tokens": [1057, 295, 552, 13, 1436, 264, 1558, 307, 300, 604, 14699, 1668, 300, 1487, 11, 436, 829, 309, 294, 257, 18639, 13, 1033, 30, 400, 436, 9424, 309, 4650, 281, 264, 22341, 9470, 13, 467, 1177, 380, 652, 2020, 300, 633, 565, 291, 528, 281, 1269, 257, 777, 2568, 11, 436, 652, 257, 777, 18639, 337, 291, 13, 1033, 30, 400, 436, 754, 458, 689, 281, 1745, 281, 257, 3670, 2643, 13], "avg_logprob": -0.49657532940172167, "compression_ratio": 1.6134020618556701, "no_speech_prob": 5.4836273193359375e-06, "words": [{"start": 2204.5, "end": 2204.9, "word": " All", "probability": 0.1260986328125}, {"start": 2204.9, "end": 2205.0, "word": " of", "probability": 0.619140625}, {"start": 2205.0, "end": 2205.0, "word": " them.", "probability": 0.75732421875}, {"start": 2205.36, "end": 2205.58, "word": " Because", "probability": 0.68310546875}, {"start": 2205.58, "end": 2205.8, "word": " the", "probability": 0.53369140625}, {"start": 2205.8, "end": 2206.02, "word": " idea", "probability": 0.7802734375}, {"start": 2206.02, "end": 2206.28, "word": " is", "probability": 0.8193359375}, {"start": 2206.28, "end": 2206.38, "word": " that", "probability": 0.681640625}, {"start": 2206.38, "end": 2206.5, "word": " any", "probability": 0.4697265625}, {"start": 2206.5, "end": 2206.96, "word": " printing", "probability": 0.1160888671875}, {"start": 2206.96, "end": 2207.02, "word": " order", "probability": 0.87158203125}, {"start": 2207.02, "end": 2207.36, "word": " that", "probability": 0.270263671875}, {"start": 2207.36, "end": 2207.36, "word": " comes,", "probability": 0.55419921875}, {"start": 2207.4, "end": 2207.48, "word": " they", "probability": 0.281005859375}, {"start": 2207.48, "end": 2207.64, "word": " put", "probability": 0.52099609375}, {"start": 2207.64, "end": 2207.74, "word": " it", "probability": 0.70703125}, {"start": 2207.74, "end": 2207.8, "word": " in", "probability": 0.86328125}, {"start": 2207.8, "end": 2207.88, "word": " a", "probability": 0.6953125}, {"start": 2207.88, "end": 2208.06, "word": " queue.", "probability": 0.9619140625}, {"start": 2209.06, "end": 2209.28, "word": " Okay?", "probability": 0.300537109375}, {"start": 2209.82, "end": 2210.22, "word": " And", "probability": 0.861328125}, {"start": 2210.22, "end": 2210.4, "word": " they", "probability": 0.5478515625}, {"start": 2210.4, "end": 2210.78, "word": " arrange", "probability": 0.368408203125}, {"start": 2210.78, "end": 2211.08, "word": " it", "probability": 0.64697265625}, {"start": 2211.08, "end": 2211.42, "word": " according", "probability": 0.763671875}, {"start": 2211.42, "end": 2211.58, "word": " to", "probability": 0.966796875}, {"start": 2211.58, "end": 2211.6, "word": " the", "probability": 0.5517578125}, {"start": 2211.6, "end": 2212.22, "word": " incoming", "probability": 0.34765625}, {"start": 2212.22, "end": 2212.22, "word": " orders.", "probability": 0.473388671875}, {"start": 2212.42, "end": 2212.42, "word": " It", "probability": 0.85302734375}, {"start": 2212.42, "end": 2212.52, "word": " doesn't", "probability": 0.6148681640625}, {"start": 2212.52, "end": 2212.64, "word": " make", "probability": 0.92919921875}, {"start": 2212.64, "end": 2212.8, "word": " sense", "probability": 0.79150390625}, {"start": 2212.8, "end": 2212.98, "word": " that", "probability": 0.623046875}, {"start": 2212.98, "end": 2213.16, "word": " every", "probability": 0.4306640625}, {"start": 2213.16, "end": 2213.22, "word": " time", "probability": 0.8681640625}, {"start": 2213.22, "end": 2213.56, "word": " you", "probability": 0.93115234375}, {"start": 2213.56, "end": 2213.56, "word": " want", "probability": 0.4453125}, {"start": 2213.56, "end": 2214.1, "word": " to", "probability": 0.95947265625}, {"start": 2214.1, "end": 2214.28, "word": " open", "probability": 0.81884765625}, {"start": 2214.28, "end": 2214.46, "word": " a", "probability": 0.94775390625}, {"start": 2214.46, "end": 2214.88, "word": " new", "probability": 0.87890625}, {"start": 2214.88, "end": 2214.88, "word": " screen,", "probability": 0.779296875}, {"start": 2215.04, "end": 2215.08, "word": " they", "probability": 0.35107421875}, {"start": 2215.08, "end": 2215.26, "word": " make", "probability": 0.424560546875}, {"start": 2215.26, "end": 2215.78, "word": " a", "probability": 0.5048828125}, {"start": 2215.78, "end": 2215.78, "word": " new", "probability": 0.89404296875}, {"start": 2215.78, "end": 2215.98, "word": " queue", "probability": 0.96142578125}, {"start": 2215.98, "end": 2216.14, "word": " for", "probability": 0.7392578125}, {"start": 2216.14, "end": 2216.18, "word": " you.", "probability": 0.9580078125}, {"start": 2216.8, "end": 2217.0, "word": " Okay?", "probability": 0.72265625}, {"start": 2217.56, "end": 2217.74, "word": " And", "probability": 0.7001953125}, {"start": 2217.74, "end": 2218.04, "word": " they", "probability": 0.320068359375}, {"start": 2218.04, "end": 2218.04, "word": " even", "probability": 0.57275390625}, {"start": 2218.04, "end": 2218.42, "word": " know", "probability": 0.5234375}, {"start": 2218.42, "end": 2218.68, "word": " where", "probability": 0.50830078125}, {"start": 2218.68, "end": 2218.88, "word": " to", "probability": 0.385986328125}, {"start": 2218.88, "end": 2219.08, "word": " connect", "probability": 0.7548828125}, {"start": 2219.08, "end": 2219.28, "word": " to", "probability": 0.6845703125}, {"start": 2219.28, "end": 2219.34, "word": " a", "probability": 0.7607421875}, {"start": 2219.34, "end": 2219.4, "word": " web", "probability": 0.7783203125}, {"start": 2219.4, "end": 2219.8, "word": " service.", "probability": 0.88623046875}], "temperature": 1.0}, {"id": 89, "seek": 223653, "start": 2220.75, "end": 2236.53, "text": "Okay? Each screen needs to connect with the API. This logic, whenever you open a screen, creates a new connection to the API, also takes resources from it. This is an introduction to the importance of the Singleton Design Pattern. Next time, we will see directly", "tokens": [8297, 30, 6947, 2568, 2203, 281, 1745, 365, 264, 9362, 13, 639, 9952, 11, 5699, 291, 1269, 257, 2568, 11, 7829, 257, 777, 4984, 281, 264, 9362, 11, 611, 2516, 3593, 490, 309, 13, 639, 307, 364, 9339, 281, 264, 7379, 295, 264, 7474, 14806, 12748, 34367, 77, 13, 3087, 565, 11, 321, 486, 536, 3838], "avg_logprob": -0.46765349622358354, "compression_ratio": 1.4475138121546962, "no_speech_prob": 1.7702579498291016e-05, "words": [{"start": 2220.75, "end": 2221.03, "word": "Okay?", "probability": 0.155029296875}, {"start": 2221.33, "end": 2221.49, "word": " Each", "probability": 0.4853515625}, {"start": 2221.49, "end": 2221.81, "word": " screen", "probability": 0.73828125}, {"start": 2221.81, "end": 2222.53, "word": " needs", "probability": 0.474609375}, {"start": 2222.53, "end": 2222.83, "word": " to", "probability": 0.9658203125}, {"start": 2222.83, "end": 2223.53, "word": " connect", "probability": 0.406494140625}, {"start": 2223.53, "end": 2223.75, "word": " with", "probability": 0.5068359375}, {"start": 2223.75, "end": 2223.93, "word": " the", "probability": 0.7001953125}, {"start": 2223.93, "end": 2224.31, "word": " API.", "probability": 0.90966796875}, {"start": 2224.97, "end": 2225.11, "word": " This", "probability": 0.3564453125}, {"start": 2225.11, "end": 2225.49, "word": " logic,", "probability": 0.912109375}, {"start": 2225.65, "end": 2225.97, "word": " whenever", "probability": 0.37548828125}, {"start": 2225.97, "end": 2226.67, "word": " you", "probability": 0.67822265625}, {"start": 2226.67, "end": 2226.85, "word": " open", "probability": 0.75439453125}, {"start": 2226.85, "end": 2227.01, "word": " a", "probability": 0.91943359375}, {"start": 2227.01, "end": 2227.17, "word": " screen,", "probability": 0.81396484375}, {"start": 2227.27, "end": 2227.43, "word": " creates", "probability": 0.1082763671875}, {"start": 2227.43, "end": 2227.55, "word": " a", "probability": 0.95556640625}, {"start": 2227.55, "end": 2227.55, "word": " new", "probability": 0.8408203125}, {"start": 2227.55, "end": 2227.95, "word": " connection", "probability": 0.796875}, {"start": 2227.95, "end": 2228.35, "word": " to", "probability": 0.62548828125}, {"start": 2228.35, "end": 2228.43, "word": " the", "probability": 0.892578125}, {"start": 2228.43, "end": 2228.83, "word": " API,", "probability": 0.919921875}, {"start": 2229.27, "end": 2229.47, "word": " also", "probability": 0.43994140625}, {"start": 2229.47, "end": 2229.81, "word": " takes", "probability": 0.509765625}, {"start": 2229.81, "end": 2230.97, "word": " resources", "probability": 0.68115234375}, {"start": 2230.97, "end": 2231.17, "word": " from", "probability": 0.56201171875}, {"start": 2231.17, "end": 2231.17, "word": " it.", "probability": 0.77880859375}, {"start": 2231.97, "end": 2232.43, "word": " This", "probability": 0.446044921875}, {"start": 2232.43, "end": 2232.55, "word": " is", "probability": 0.8447265625}, {"start": 2232.55, "end": 2232.63, "word": " an", "probability": 0.48388671875}, {"start": 2232.63, "end": 2232.87, "word": " introduction", "probability": 0.87841796875}, {"start": 2232.87, "end": 2233.05, "word": " to", "probability": 0.89794921875}, {"start": 2233.05, "end": 2233.13, "word": " the", "probability": 0.8974609375}, {"start": 2233.13, "end": 2233.41, "word": " importance", "probability": 0.92529296875}, {"start": 2233.41, "end": 2233.77, "word": " of", "probability": 0.96875}, {"start": 2233.77, "end": 2233.91, "word": " the", "probability": 0.68505859375}, {"start": 2233.91, "end": 2235.07, "word": " Singleton", "probability": 0.60467529296875}, {"start": 2235.07, "end": 2235.07, "word": " Design", "probability": 0.39306640625}, {"start": 2235.07, "end": 2235.09, "word": " Pattern.", "probability": 0.966796875}, {"start": 2235.19, "end": 2235.25, "word": " Next", "probability": 0.841796875}, {"start": 2235.25, "end": 2235.47, "word": " time,", "probability": 0.81494140625}, {"start": 2235.71, "end": 2235.71, "word": " we", "probability": 0.92919921875}, {"start": 2235.71, "end": 2235.79, "word": " will", "probability": 0.6630859375}, {"start": 2235.79, "end": 2235.99, "word": " see", "probability": 0.626953125}, {"start": 2235.99, "end": 2236.53, "word": " directly", "probability": 0.80078125}], "temperature": 1.0}, {"id": 90, "seek": 226348, "start": 2237.42, "end": 2263.48, "text": "How can we apply or make a class where we can create one object and use it everywhere in the application? Usually singletons are used for centralized management of internal or external resources. Centralized management. It is called centralized because there is one object responsible for more than one thing. And through it, I use it everywhere in the application.", "tokens": [6462, 393, 321, 3079, 420, 652, 257, 1508, 689, 321, 393, 1884, 472, 2657, 293, 764, 309, 5315, 294, 264, 3861, 30, 11419, 1522, 2631, 892, 366, 1143, 337, 32395, 4592, 295, 6920, 420, 8320, 3593, 13, 9701, 1602, 4592, 13, 467, 307, 1219, 32395, 570, 456, 307, 472, 2657, 6250, 337, 544, 813, 472, 551, 13, 400, 807, 309, 11, 286, 764, 309, 5315, 294, 264, 3861, 13], "avg_logprob": -0.378348223226411, "compression_ratio": 1.7464114832535884, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 2237.42, "end": 2237.7, "word": "How", "probability": 0.3408203125}, {"start": 2237.7, "end": 2237.84, "word": " can", "probability": 0.41357421875}, {"start": 2237.84, "end": 2237.9, "word": " we", "probability": 0.8818359375}, {"start": 2237.9, "end": 2238.22, "word": " apply", "probability": 0.2476806640625}, {"start": 2238.22, "end": 2238.46, "word": " or", "probability": 0.5556640625}, {"start": 2238.46, "end": 2238.84, "word": " make", "probability": 0.31005859375}, {"start": 2238.84, "end": 2239.74, "word": " a", "probability": 0.7802734375}, {"start": 2239.74, "end": 2240.2, "word": " class", "probability": 0.9287109375}, {"start": 2240.2, "end": 2240.66, "word": " where", "probability": 0.0921630859375}, {"start": 2240.66, "end": 2240.76, "word": " we", "probability": 0.71142578125}, {"start": 2240.76, "end": 2240.94, "word": " can", "probability": 0.7060546875}, {"start": 2240.94, "end": 2241.22, "word": " create", "probability": 0.51611328125}, {"start": 2241.22, "end": 2241.52, "word": " one", "probability": 0.53271484375}, {"start": 2241.52, "end": 2241.76, "word": " object", "probability": 0.95703125}, {"start": 2241.76, "end": 2242.04, "word": " and", "probability": 0.7470703125}, {"start": 2242.04, "end": 2242.36, "word": " use", "probability": 0.7666015625}, {"start": 2242.36, "end": 2242.54, "word": " it", "probability": 0.91552734375}, {"start": 2242.54, "end": 2242.86, "word": " everywhere", "probability": 0.4404296875}, {"start": 2242.86, "end": 2243.94, "word": " in", "probability": 0.75341796875}, {"start": 2243.94, "end": 2244.02, "word": " the", "probability": 0.8427734375}, {"start": 2244.02, "end": 2244.32, "word": " application?", "probability": 0.65869140625}, {"start": 2245.96, "end": 2246.56, "word": " Usually", "probability": 0.49560546875}, {"start": 2246.56, "end": 2247.4, "word": " singletons", "probability": 0.8359375}, {"start": 2247.4, "end": 2247.66, "word": " are", "probability": 0.93798828125}, {"start": 2247.66, "end": 2247.92, "word": " used", "probability": 0.90087890625}, {"start": 2247.92, "end": 2248.2, "word": " for", "probability": 0.9375}, {"start": 2248.2, "end": 2248.68, "word": " centralized", "probability": 0.77587890625}, {"start": 2248.68, "end": 2249.66, "word": " management", "probability": 0.89697265625}, {"start": 2249.66, "end": 2250.34, "word": " of", "probability": 0.8310546875}, {"start": 2250.34, "end": 2250.82, "word": " internal", "probability": 0.83935546875}, {"start": 2250.82, "end": 2251.08, "word": " or", "probability": 0.7119140625}, {"start": 2251.08, "end": 2251.54, "word": " external", "probability": 0.89501953125}, {"start": 2251.54, "end": 2252.12, "word": " resources.", "probability": 0.9072265625}, {"start": 2252.6, "end": 2253.2, "word": " Centralized", "probability": 0.810791015625}, {"start": 2253.2, "end": 2253.68, "word": " management.", "probability": 0.814453125}, {"start": 2254.34, "end": 2254.94, "word": " It", "probability": 0.2705078125}, {"start": 2254.94, "end": 2255.0, "word": " is", "probability": 0.5009765625}, {"start": 2255.0, "end": 2255.38, "word": " called", "probability": 0.78466796875}, {"start": 2255.38, "end": 2255.86, "word": " centralized", "probability": 0.8935546875}, {"start": 2255.86, "end": 2256.14, "word": " because", "probability": 0.78271484375}, {"start": 2256.14, "end": 2256.3, "word": " there", "probability": 0.669921875}, {"start": 2256.3, "end": 2256.32, "word": " is", "probability": 0.900390625}, {"start": 2256.32, "end": 2256.4, "word": " one", "probability": 0.759765625}, {"start": 2256.4, "end": 2257.02, "word": " object", "probability": 0.916015625}, {"start": 2257.02, "end": 2257.56, "word": " responsible", "probability": 0.634765625}, {"start": 2257.56, "end": 2258.54, "word": " for", "probability": 0.88916015625}, {"start": 2258.54, "end": 2258.84, "word": " more", "probability": 0.85107421875}, {"start": 2258.84, "end": 2259.0, "word": " than", "probability": 0.77880859375}, {"start": 2259.0, "end": 2259.04, "word": " one", "probability": 0.91748046875}, {"start": 2259.04, "end": 2259.34, "word": " thing.", "probability": 0.82568359375}, {"start": 2260.02, "end": 2260.62, "word": " And", "probability": 0.28564453125}, {"start": 2260.62, "end": 2260.92, "word": " through", "probability": 0.66845703125}, {"start": 2260.92, "end": 2261.2, "word": " it,", "probability": 0.65771484375}, {"start": 2261.22, "end": 2261.32, "word": " I", "probability": 0.79296875}, {"start": 2261.32, "end": 2261.7, "word": " use", "probability": 0.67431640625}, {"start": 2261.7, "end": 2261.86, "word": " it", "probability": 0.900390625}, {"start": 2261.86, "end": 2262.2, "word": " everywhere", "probability": 0.64697265625}, {"start": 2262.2, "end": 2263.06, "word": " in", "probability": 0.92529296875}, {"start": 2263.06, "end": 2263.18, "word": " the", "probability": 0.90380859375}, {"start": 2263.18, "end": 2263.48, "word": " application.", "probability": 0.93017578125}], "temperature": 1.0}, {"id": 91, "seek": 227496, "start": 2264.01, "end": 2274.97, "text": "and they provide a global point of access to themselves. What is a global point of access? It is a single point of access that everyone can use. God bless you all.", "tokens": [474, 436, 2893, 257, 4338, 935, 295, 2105, 281, 2969, 13, 708, 307, 257, 4338, 935, 295, 2105, 30, 467, 307, 257, 2167, 935, 295, 2105, 300, 1518, 393, 764, 13, 1265, 5227, 291, 439, 13], "avg_logprob": -0.37690032817221975, "compression_ratio": 1.5233644859813085, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 2264.01, "end": 2264.29, "word": "and", "probability": 0.356201171875}, {"start": 2264.29, "end": 2264.45, "word": " they", "probability": 0.865234375}, {"start": 2264.45, "end": 2265.09, "word": " provide", "probability": 0.9189453125}, {"start": 2265.09, "end": 2265.39, "word": " a", "probability": 0.97412109375}, {"start": 2265.39, "end": 2265.85, "word": " global", "probability": 0.92529296875}, {"start": 2265.85, "end": 2266.29, "word": " point", "probability": 0.9658203125}, {"start": 2266.29, "end": 2266.45, "word": " of", "probability": 0.97021484375}, {"start": 2266.45, "end": 2266.97, "word": " access", "probability": 0.9228515625}, {"start": 2266.97, "end": 2267.39, "word": " to", "probability": 0.90966796875}, {"start": 2267.39, "end": 2267.87, "word": " themselves.", "probability": 0.71044921875}, {"start": 2268.49, "end": 2268.61, "word": " What", "probability": 0.44189453125}, {"start": 2268.61, "end": 2268.65, "word": " is", "probability": 0.65380859375}, {"start": 2268.65, "end": 2268.73, "word": " a", "probability": 0.830078125}, {"start": 2268.73, "end": 2269.05, "word": " global", "probability": 0.85400390625}, {"start": 2269.05, "end": 2269.37, "word": " point", "probability": 0.97705078125}, {"start": 2269.37, "end": 2269.51, "word": " of", "probability": 0.96875}, {"start": 2269.51, "end": 2269.75, "word": " access?", "probability": 0.93505859375}, {"start": 2269.85, "end": 2269.93, "word": " It", "probability": 0.6728515625}, {"start": 2269.93, "end": 2269.93, "word": " is", "probability": 0.62255859375}, {"start": 2269.93, "end": 2269.97, "word": " a", "probability": 0.466064453125}, {"start": 2269.97, "end": 2270.15, "word": " single", "probability": 0.245849609375}, {"start": 2270.15, "end": 2270.15, "word": " point", "probability": 0.7021484375}, {"start": 2270.15, "end": 2270.29, "word": " of", "probability": 0.9169921875}, {"start": 2270.29, "end": 2270.79, "word": " access", "probability": 0.72021484375}, {"start": 2270.79, "end": 2271.75, "word": " that", "probability": 0.314697265625}, {"start": 2271.75, "end": 2272.01, "word": " everyone", "probability": 0.52685546875}, {"start": 2272.01, "end": 2272.23, "word": " can", "probability": 0.841796875}, {"start": 2272.23, "end": 2272.69, "word": " use.", "probability": 0.66650390625}, {"start": 2274.17, "end": 2274.71, "word": " God", "probability": 0.35009765625}, {"start": 2274.71, "end": 2274.81, "word": " bless", "probability": 0.84912109375}, {"start": 2274.81, "end": 2274.93, "word": " you", "probability": 0.81591796875}, {"start": 2274.93, "end": 2274.97, "word": " all.", "probability": 0.50537109375}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2275.5555, "duration_after_vad": 2182.4968749999935} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/UqimOKHsJGg_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/UqimOKHsJGg_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..d4b1cb794c542c7e5feefe69da6401fd28f74f31 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/UqimOKHsJGg_raw.srt @@ -0,0 +1,2628 @@ +1 +00:00:05,350 --> 00:00:08,710 +Good morning everyone, peace be upon you. Today, + +2 +00:00:08,830 --> 00:00:11,030 +God willing, we will continue with the topic of + +3 +00:00:11,030 --> 00:00:14,110 +the factory method design pattern. In the previous + +4 +00:00:14,110 --> 00:00:16,650 +lecture, we started talking about the factory + +5 +00:00:16,650 --> 00:00:19,290 +method. In short, the factory method is a design + +6 +00:00:19,290 --> 00:00:23,550 +pattern that enables the superclass to rely on the + +7 +00:00:23,550 --> 00:00:26,110 +subclasses to work on a part of the code that it + +8 +00:00:26,110 --> 00:00:29,210 +does not know what it is. What does this mean? It + +9 +00:00:29,210 --> 00:00:33,730 +means that sometimes I have code or a certain + +10 +00:00:33,730 --> 00:00:35,950 +function, a large part of it is common between + +11 +00:00:35,950 --> 00:00:37,930 +subclasses and there is a small part that is + +12 +00:00:37,930 --> 00:00:39,830 +different. Like what is a small part that is + +13 +00:00:39,830 --> 00:00:41,970 +different? It means that the object that I want to + +14 +00:00:41,970 --> 00:00:44,290 +create is different from subclass to subclass, but + +15 +00:00:44,290 --> 00:00:48,830 +the rest of the steps are constant. Because of + +16 +00:00:48,830 --> 00:00:50,930 +this difference, I could not put the code in the + +17 +00:00:50,930 --> 00:00:54,850 +superclass. To solve this problem, we took the + +18 +00:00:54,850 --> 00:00:58,210 +code and put it in the superclass, but the + +19 +00:00:58,210 --> 00:01:02,320 +different partsWe imported it to the subclass by + +20 +00:01:02,320 --> 00:01:06,320 +using abstract method We put the code in the + +21 +00:01:06,320 --> 00:01:07,940 +subclass, and wherever there is a different part, + +22 +00:01:08,220 --> 00:01:10,670 +we put it in its place I came up with a method, + +23 +00:01:11,090 --> 00:01:14,490 +and this method was implemented in the subclass. + +24 +00:01:14,830 --> 00:01:18,570 +We saw this in the example we worked on in the + +25 +00:01:18,570 --> 00:01:23,370 +social network connectors and posters. How each + +26 +00:01:23,370 --> 00:01:25,690 +subclass makes a different connector, but the rest + +27 +00:01:25,690 --> 00:01:28,090 +of the steps are constant, so we created a create + +28 +00:01:28,090 --> 00:01:31,530 +connector that the subclass implements. In the + +29 +00:01:31,530 --> 00:01:35,590 +second example,I want to create a new maze. I want + +30 +00:01:35,590 --> 00:01:37,970 +to change the content, but the order of the maze + +31 +00:01:37,970 --> 00:01:40,550 +and its components should be the same. So the + +32 +00:01:40,550 --> 00:01:42,630 +method createMaze in the superclass remained the + +33 +00:01:42,630 --> 00:01:45,590 +same. But when it comes to createRoom and + +34 +00:01:45,590 --> 00:01:48,730 +createWall, those that create the room and the + +35 +00:01:48,730 --> 00:01:51,850 +wall, I made them methods, so that the superclass + +36 +00:01:51,850 --> 00:01:53,670 +can override them and change the type of object + +37 +00:01:53,670 --> 00:01:57,150 +that is created in them. Now let's look at another + +38 +00:01:57,150 --> 00:02:00,770 +example.How does the factory method make it easier + +39 +00:02:00,770 --> 00:02:05,070 +for me to create the user interface in the + +40 +00:02:05,070 --> 00:02:07,950 +applications? Now, guys, let's look at this + +41 +00:02:07,950 --> 00:02:10,630 +example. If I support a program that is related to + +42 +00:02:10,630 --> 00:02:16,010 +HR, or a program for employees, okay? Now, the + +43 +00:02:16,010 --> 00:02:19,750 +employee, since he has multiple data, we made a + +44 +00:02:19,750 --> 00:02:21,090 +class for him to be represented. For example, I + +45 +00:02:21,090 --> 00:02:23,590 +made a class here, employee, represent the basic + +46 +00:02:23,590 --> 00:02:27,520 +data of the employee. For example, Name, ID, + +47 +00:02:27,760 --> 00:02:30,960 +Address and Job Title And I made this class + +48 +00:02:30,960 --> 00:02:34,820 +abstract I don't want to create an object from an + +49 +00:02:34,820 --> 00:02:37,820 +employee I made it just to collect the shared + +50 +00:02:37,820 --> 00:02:42,540 +parts From the employee, I made subclasses I have + +51 +00:02:42,540 --> 00:02:45,700 +a full-time employee, this is an extended employee + +52 +00:02:45,700 --> 00:02:48,680 +And I added a new attribute Basic salary, level + +53 +00:02:48,680 --> 00:02:52,940 +and has insurance I also have a part-time employee + +54 +00:02:54,100 --> 00:02:56,320 +Extend Employee and add new attributes such as + +55 +00:02:56,320 --> 00:03:02,740 +number of hours and hour rate Now, I have the + +56 +00:03:02,740 --> 00:03:08,680 +objects I have a class called Employee + +57 +00:03:08,680 --> 00:03:13,600 +and it consists of full + +58 +00:03:13,600 --> 00:03:18,160 +-time employee class and part-time employee class + +59 +00:03:18,160 --> 00:03:22,950 +FTE and PTE Ok, now you want to create a program, + +60 +00:03:23,090 --> 00:03:25,170 +for sure you want to create input models, you want + +61 +00:03:25,170 --> 00:03:27,910 +to create an input model, a web page or a desktop + +62 +00:03:27,910 --> 00:03:31,850 +or a mobile screen, to create an employee, you + +63 +00:03:31,850 --> 00:03:34,770 +want to input data to a new employee, for sure how + +64 +00:03:34,770 --> 00:03:39,110 +many screens do you want to have? Two screens, one + +65 +00:03:39,110 --> 00:03:41,770 +for full-time and one for part-time, so you want + +66 +00:03:41,770 --> 00:03:45,410 +to have a screen for full-time employees, how does + +67 +00:03:45,410 --> 00:03:50,070 +it look like? It will be for example the name,ID, + +68 +00:03:51,870 --> 00:03:54,350 +Job Title, + +69 +00:03:56,550 --> 00:04:01,090 +Address, + +70 +00:04:04,410 --> 00:04:08,210 +Insurance, + +71 +00:04:10,730 --> 00:04:16,450 +Salary, etc and then at the end there is a button + +72 +00:04:16,450 --> 00:04:22,130 +submit or savewhich will actually read what the + +73 +00:04:22,130 --> 00:04:24,770 +user has entered and for example, create an object + +74 +00:04:24,770 --> 00:04:28,590 +from what? the data is still scattered, of course, + +75 +00:04:28,650 --> 00:04:30,970 +I want to collect them in an object, right or not? + +76 +00:04:31,650 --> 00:04:33,690 +when I press the save button, it will create an + +77 +00:04:33,690 --> 00:04:37,130 +object from full-time employee and read the data + +78 +00:04:37,130 --> 00:04:39,050 +from the screen and fill it in the object through + +79 +00:04:39,050 --> 00:04:41,570 +the setter methods okay, now I have an object, I + +80 +00:04:41,570 --> 00:04:43,090 +store it in an array and then I store it in the + +81 +00:04:43,090 --> 00:04:46,930 +database and so on okay, with the same mechanism, + +82 +00:04:47,650 --> 00:04:50,830 +I want to have another screen for the part-time + +83 +00:04:50,830 --> 00:04:54,190 +employee. So the first part of the second screen + +84 +00:04:54,190 --> 00:04:59,790 +is the same as this part, which is the name and + +85 +00:04:59,790 --> 00:05:04,910 +the ID and so on. So this whole part should repeat + +86 +00:05:04,910 --> 00:05:11,390 +itself here, right? Then the lower part should be + +87 +00:05:11,390 --> 00:05:12,970 +different, which is the number of hours. + +88 +00:05:15,910 --> 00:05:17,770 +This is the weight and the hour rate. + +89 +00:05:21,970 --> 00:05:28,090 +Ok? And then comes the safe button as well. This + +90 +00:05:28,090 --> 00:05:35,070 +does not change. The part here is different. Right + +91 +00:05:35,070 --> 00:05:38,550 +or wrong? The part here is one, but there is + +92 +00:05:38,550 --> 00:05:41,090 +another different thing as well. The action that + +93 +00:05:41,090 --> 00:05:43,520 +happens when you press the button. Right or wrong? + +94 +00:05:43,580 --> 00:05:45,300 +They are different. This one should create a full + +95 +00:05:45,300 --> 00:05:47,300 +-time employee object and fill it in. This one + +96 +00:05:47,300 --> 00:05:48,620 +should create a part-time employee object. So + +97 +00:05:48,620 --> 00:05:52,360 +there are two different parts. The front part and + +98 +00:05:52,360 --> 00:05:53,960 +the code that should be executed when pressed on + +99 +00:05:53,960 --> 00:06:01,060 +the button. Now, this design or work has a + +100 +00:06:01,060 --> 00:06:05,520 +problem. What is it? Repeat. Repeat. Okay? This + +101 +00:06:05,520 --> 00:06:08,280 +whole part is repeated. This means that if I want + +102 +00:06:08,280 --> 00:06:10,380 +to create a new employee, for example, a contract + +103 +00:06:10,380 --> 00:06:12,740 +employee, What do you need to do for the steps? Of + +104 +00:06:12,740 --> 00:06:14,260 +course you need to create a class that represents + +105 +00:06:14,260 --> 00:06:17,300 +the object, and of course you need to create a + +106 +00:06:17,300 --> 00:06:20,300 +screen or another class where you put the code of + +107 +00:06:20,300 --> 00:06:22,720 +the graphical user interface, where you repeat all + +108 +00:06:22,720 --> 00:06:27,420 +the code that creates this part, right? And then + +109 +00:06:27,420 --> 00:06:28,880 +you put the different part, which is the new + +110 +00:06:28,880 --> 00:06:31,600 +attributes of the new object, and you put a + +111 +00:06:31,600 --> 00:06:35,390 +different code where?So there is a big repetition, + +112 +00:06:35,690 --> 00:06:37,870 +of course this is a bad repetition, you have to + +113 +00:06:37,870 --> 00:06:41,950 +copy the code again on every new screen you want + +114 +00:06:41,950 --> 00:06:44,790 +to do it, then if you want to add a new attribute + +115 +00:06:44,790 --> 00:06:51,650 +to the employee, you have to modify them all, you + +116 +00:06:51,650 --> 00:06:52,550 +have to change colors + +117 +00:06:55,280 --> 00:06:59,180 +The type of brain, instead of being a drop list or + +118 +00:06:59,180 --> 00:07:02,540 +combo box, has to be modified, and this is the + +119 +00:07:02,540 --> 00:07:05,620 +result of repetition. Next, we will see how to use + +120 +00:07:05,620 --> 00:07:11,180 +the factor method to improve this design. Since we + +121 +00:07:11,180 --> 00:07:15,100 +have always learned that there is repetition, The + +122 +00:07:15,100 --> 00:07:17,980 +repeated part or the common part is put in the + +123 +00:07:17,980 --> 00:07:20,380 +parent Right or wrong? So the code that creates + +124 +00:07:20,380 --> 00:07:22,320 +these parts is put in the parent But the problem + +125 +00:07:22,320 --> 00:07:24,660 +that I face is the same problem that we talked + +126 +00:07:24,660 --> 00:07:28,840 +about That not all the code is common There is a + +127 +00:07:28,840 --> 00:07:32,540 +common code and there are different parts How can + +128 +00:07:32,540 --> 00:07:35,320 +we solve this problem? How? All the code cannot be + +129 +00:07:35,320 --> 00:07:37,300 +taken to the parent But what I see is that they + +130 +00:07:37,300 --> 00:07:39,700 +use the factory method That the common part is put + +131 +00:07:39,700 --> 00:07:42,220 +in the parentand the different one is allocated to + +132 +00:07:42,220 --> 00:07:45,240 +whom? to the subclass so how do we solve this + +133 +00:07:45,240 --> 00:07:48,900 +problem? we need to do the following did you find + +134 +00:07:48,900 --> 00:07:52,000 +it? I have a class called full-time employee and a + +135 +00:07:52,000 --> 00:07:54,960 +class called part-time employee this is called + +136 +00:07:54,960 --> 00:08:00,740 +form full-time employee form and this is part-time + +137 +00:08:00,740 --> 00:08:04,380 +employee form it has all this code which is drawn + +138 +00:08:04,380 --> 00:08:07,120 +this way because what I want to do is I want to + +139 +00:08:07,120 --> 00:08:10,000 +make a class here called employee + +140 +00:08:12,940 --> 00:08:13,260 +All right, + +141 +00:08:23,640 --> 00:08:25,740 +guys? What do I want to put in the data that says + +142 +00:08:25,740 --> 00:08:30,090 +build4? All the code.The one who creates this, I + +143 +00:08:30,090 --> 00:08:32,510 +will take it from here and put it where? I will + +144 +00:08:32,510 --> 00:08:34,310 +put it at the end. So here I will tell him, for + +145 +00:08:34,310 --> 00:08:37,450 +example, inside this method, imagine what's in it, + +146 +00:08:37,770 --> 00:08:41,530 +create the code of the name, and the code of the + +147 +00:08:41,530 --> 00:08:45,810 +ID, and the code of the job title, okay? And the + +148 +00:08:45,810 --> 00:08:49,710 +address. Okay, did you find that we have a + +149 +00:08:49,710 --> 00:08:49,890 +different part? + +150 +00:08:53,310 --> 00:08:56,590 +Right? Which is this one. She doesn't know what to + +151 +00:08:56,590 --> 00:08:59,070 +do. Right or not? So, she will do in return of + +152 +00:08:59,070 --> 00:09:06,850 +this, create specific GUI for example. This is a + +153 +00:09:06,850 --> 00:09:08,630 +method, but I will call it. Yes. What do I want to + +154 +00:09:08,630 --> 00:09:10,930 +put this? Here abstract. I will do this here, + +155 +00:09:11,090 --> 00:09:16,110 +create specific GUI. + +156 +00:09:19,390 --> 00:09:22,270 +This one is abstract, there is no code in it. Who + +157 +00:09:22,270 --> 00:09:25,770 +is going to implement it? The subclasses. But this + +158 +00:09:25,770 --> 00:09:29,410 +build form is going to claim this one, right? + +159 +00:09:30,010 --> 00:09:34,150 +Okay, and then I put the code of the save button. + +160 +00:09:35,510 --> 00:09:38,350 +Because when the save button is pressed,It's + +161 +00:09:38,350 --> 00:09:41,210 +supposed to execute a different code. So when I + +162 +00:09:41,210 --> 00:09:42,830 +click on the save button, it will ask for another + +163 +00:09:42,830 --> 00:09:48,290 +instruction called specific + +164 +00:09:48,290 --> 00:09:54,590 +action or do save, for example. And this one is + +165 +00:09:54,590 --> 00:09:57,450 +also going to do an abstract instruction called do + +166 +00:09:57,450 --> 00:10:02,590 +save.So now the superclass has how many abstract + +167 +00:10:02,590 --> 00:10:06,430 +data? Two. Why two? Why not one? Because I have + +168 +00:10:06,430 --> 00:10:09,150 +two different characters in two different places. + +169 +00:10:10,250 --> 00:10:12,950 +And really this is to work. You put the common + +170 +00:10:12,950 --> 00:10:14,070 +factor and every time you find something + +171 +00:10:14,070 --> 00:10:18,030 +different, you turn the client into the subclass. + +172 +00:10:19,240 --> 00:10:24,220 +Now, this class extends to this one, right? And + +173 +00:10:24,220 --> 00:10:26,180 +this one extends to this one. It will be required + +174 +00:10:26,180 --> 00:10:30,440 +to implement for whom? For these two methods. In + +175 +00:10:30,440 --> 00:10:33,020 +this method, it puts the code that is specific to + +176 +00:10:33,020 --> 00:10:36,400 +whom. It designs the design only for this part. + +177 +00:10:37,500 --> 00:10:40,160 +Okay? And in the save, it puts the code that will + +178 +00:10:40,160 --> 00:10:43,220 +be executed when I press the save button. When I + +179 +00:10:43,220 --> 00:10:44,680 +press the save button, here it will create an + +180 +00:10:44,680 --> 00:10:47,960 +object from part-time employee. When I click on + +181 +00:10:47,960 --> 00:10:49,260 +the save button here, it will create an object + +182 +00:10:49,260 --> 00:10:52,280 +from the full-time employee So when I click on + +183 +00:10:52,280 --> 00:10:55,180 +save, it will use the full-time and this one will + +184 +00:10:55,180 --> 00:10:58,580 +use the part-time Just like when we have a + +185 +00:10:58,580 --> 00:11:01,040 +Facebook poster, it creates an object from the + +186 +00:11:01,040 --> 00:11:08,000 +Facebook connector And so on Ok, let's see this + +187 +00:11:08,000 --> 00:11:12,400 +drawing as a code This idea, let's look at it as a + +188 +00:11:12,400 --> 00:11:12,560 +code + +189 +00:11:18,630 --> 00:11:22,430 +Now, of course, I know that the details of the GUI + +190 +00:11:22,430 --> 00:11:23,910 +are not available to you or you did not take it, + +191 +00:11:23,970 --> 00:11:28,750 +but the idea should be clear. When you see the + +192 +00:11:28,750 --> 00:11:30,910 +code, you understand this code, I tell you that + +193 +00:11:30,910 --> 00:11:33,690 +this part is related to the GUI, okay? The idea is + +194 +00:11:33,690 --> 00:11:36,130 +important, but you can apply it in any programming + +195 +00:11:36,130 --> 00:11:36,270 +language. + +196 +00:11:39,430 --> 00:11:41,590 +Okay, there is an example on PHP But this is + +197 +00:11:41,590 --> 00:11:44,970 +another example, okay? Now, let's see here This + +198 +00:11:44,970 --> 00:11:49,030 +class is called EmployeeForm This is basically the + +199 +00:11:49,030 --> 00:11:51,830 +main class that I want to collect the common code + +200 +00:11:51,830 --> 00:11:56,070 +in Okay? Did you find this class extends JFrame? + +201 +00:11:56,210 --> 00:12:00,150 +And this is its constructor Now, this code that is + +202 +00:12:00,150 --> 00:12:03,550 +here, do you see it all? This is the GUI code for + +203 +00:12:03,550 --> 00:12:06,790 +common things I put here a comment that this is + +204 +00:12:06,790 --> 00:12:11,120 +the code that I want Name, I don't have the word + +205 +00:12:11,120 --> 00:12:12,940 +name and next to it is the right to enter the name + +206 +00:12:12,940 --> 00:12:15,340 +Okay, this is the code that they do He does + +207 +00:12:15,340 --> 00:12:20,440 +something called JTextField, JLabel, okay? And + +208 +00:12:20,440 --> 00:12:24,160 +this code creates the code specific to the ID + +209 +00:12:24,160 --> 00:12:27,400 +There is no line of ID And this creates the code + +210 +00:12:27,400 --> 00:12:30,240 +specific to the job title Okay, so these are all + +211 +00:12:30,240 --> 00:12:35,180 +the common parts Now, under the common parts, + +212 +00:12:35,380 --> 00:12:39,880 +there is a part that is differentWho is supposed + +213 +00:12:39,880 --> 00:12:42,680 +to do this different part? This class doesn't know + +214 +00:12:42,680 --> 00:12:46,220 +what to do. If it was full-time, they would do + +215 +00:12:46,220 --> 00:12:49,120 +something different from part-time. But I'm still + +216 +00:12:49,120 --> 00:12:53,220 +working in the superclass. So I came down here and + +217 +00:12:53,220 --> 00:12:58,940 +told him to create subattributes GUI Create + +218 +00:12:58,940 --> 00:13:04,160 +subattributes GUI This is an abstract method. It + +219 +00:13:04,160 --> 00:13:06,460 +creates things and collects them in a thing called + +220 +00:13:06,460 --> 00:13:09,020 +Jpanel. Like this. And I take this Jpanel and add + +221 +00:13:09,020 --> 00:13:14,460 +it to the screen. Okay? This method is an abstract + +222 +00:13:14,460 --> 00:13:16,820 +method. It is used by the superclass. But who will + +223 +00:13:16,820 --> 00:13:19,900 +implement it? The subclass. What is this code? + +224 +00:13:20,240 --> 00:13:23,940 +What is written here? The save button. Okay? And + +225 +00:13:23,940 --> 00:13:25,900 +this is the action when I press the save button. + +226 +00:13:27,800 --> 00:13:29,620 +Because we said there is a problem when I press + +227 +00:13:29,620 --> 00:13:33,290 +the save button. it differs from one object to + +228 +00:13:33,290 --> 00:13:37,690 +another but in the end, any object is an employee + +229 +00:13:37,690 --> 00:13:42,670 +instead of saying new I don't know what new is + +230 +00:13:42,670 --> 00:13:44,730 +because I'm in the full or part field so I just + +231 +00:13:44,730 --> 00:13:48,950 +say create employee same as we did create social + +232 +00:13:48,950 --> 00:13:52,950 +network connector same as we did create maze here + +233 +00:13:52,950 --> 00:13:55,190 +I say create employee let the subclass define what + +234 +00:13:55,190 --> 00:13:57,390 +kind of object it is the employee returns what + +235 +00:13:57,390 --> 00:14:00,210 +does it fill it with? The common things that I + +236 +00:14:00,210 --> 00:14:05,370 +have here, name, ID and job title. Okay, it's + +237 +00:14:05,370 --> 00:14:08,530 +done. This is the rest of the GUI code. All this + +238 +00:14:08,530 --> 00:14:13,730 +code is in the constructor. So, when the + +239 +00:14:13,730 --> 00:14:15,750 +constructor is called, it executes all this code. + +240 +00:14:17,070 --> 00:14:19,430 +Of course, I can't create an object from an + +241 +00:14:19,430 --> 00:14:22,630 +employee form. How will the constructor call? I + +242 +00:14:22,630 --> 00:14:24,670 +will create an object from the subclass, and it is + +243 +00:14:24,670 --> 00:14:27,670 +known that the constructor of the subclass by the + +244 +00:14:27,670 --> 00:14:33,510 +constructor of the parent, okay? Okay, look down + +245 +00:14:33,510 --> 00:14:36,010 +here, you will find two abstract methods, what are + +246 +00:14:36,010 --> 00:14:39,030 +their names? CreateSubattributeUi and + +247 +00:14:39,030 --> 00:14:43,730 +CreateEmployee Now, I came here, look how simple + +248 +00:14:43,730 --> 00:14:46,290 +it is, I want to make a model for the full-time + +249 +00:14:46,290 --> 00:14:48,790 +employee I say, to make a simple model for the + +250 +00:14:48,790 --> 00:14:51,710 +full-time employee go and make a class called Full + +251 +00:14:51,710 --> 00:14:56,910 +-timeEmployeeForm and make it extend to where?to + +252 +00:14:56,910 --> 00:15:01,210 +the employee form it will ask you to implement two + +253 +00:15:01,210 --> 00:15:04,590 +methods create sub-attributes GUI and create + +254 +00:15:04,590 --> 00:15:09,810 +employee and here I just put the code again for + +255 +00:15:09,810 --> 00:15:12,250 +the GUI of the full-time employee for example, you + +256 +00:15:12,250 --> 00:15:17,650 +told me to create one for the salary and return it + +257 +00:15:17,650 --> 00:15:21,130 +to me I return it at the end of my panel so I just + +258 +00:15:21,130 --> 00:15:25,790 +created the code for the salary All of this says + +259 +00:15:25,790 --> 00:15:29,790 +inside create sub attribute UI Because I have + +260 +00:15:29,790 --> 00:15:31,770 +another method here called create employee When + +261 +00:15:31,770 --> 00:15:34,710 +will it be used? When it is pressed on the safe, + +262 +00:15:35,170 --> 00:15:37,070 +okay? It tells you, you don't have a relationship, + +263 +00:15:37,150 --> 00:15:38,290 +what will happen when it is pressed on the safe? + +264 +00:15:38,350 --> 00:15:41,630 +You are your job, what do you do? Yes, you create + +265 +00:15:41,630 --> 00:15:44,190 +the object and return it Of course, I create the + +266 +00:15:44,190 --> 00:15:46,530 +object and go to the object and tell it set basic + +267 +00:15:46,530 --> 00:15:48,950 +salary That is, you have to fill in the + +268 +00:15:48,950 --> 00:15:52,550 +information that you have because you entered it, + +269 +00:15:52,710 --> 00:15:56,290 +okay? And you tell it to return Employee, meaning + +270 +00:15:56,290 --> 00:15:57,950 +that you only created the different parts + +271 +00:15:57,950 --> 00:16:01,350 +everything else has nothing to do with it okay? + +272 +00:16:02,190 --> 00:16:06,550 +now look at this class this class is the part-time + +273 +00:16:06,550 --> 00:16:08,050 +employee the part-time employee has two rights + +274 +00:16:08,050 --> 00:16:10,610 +again which are what? hour rate and number of + +275 +00:16:10,610 --> 00:16:15,030 +hours okay? I also created extend employee for and + +276 +00:16:15,030 --> 00:16:17,070 +asked me to create implement for whom? to create + +277 +00:16:17,070 --> 00:16:20,490 +sub-attributes and create employee create sub + +278 +00:16:20,490 --> 00:16:22,190 +-attributes, you see it created only the GUI + +279 +00:16:22,190 --> 00:16:25,770 +specific to whom? in the hour rate and number of + +280 +00:16:25,770 --> 00:16:28,510 +hours, add them to the screen, and return them to + +281 +00:16:28,510 --> 00:16:30,890 +me. This is the code that adds these two brackets. + +282 +00:16:32,810 --> 00:16:35,110 +Okay? And below here, createEmployee, this is what + +283 +00:16:35,110 --> 00:16:38,930 +is pressed when you press the save button. It will + +284 +00:16:38,930 --> 00:16:42,570 +create a part-time employee, fill in the hour rate + +285 +00:16:42,570 --> 00:16:47,730 +and number of hours, and return it. Okay? Now, + +286 +00:16:47,850 --> 00:16:51,560 +this is the test UI used. If I want to show a + +287 +00:16:51,560 --> 00:16:54,540 +brain to imagine a part-time employee, what do I + +288 +00:16:54,540 --> 00:16:59,240 +do? I extract an object from whom? From a part + +289 +00:16:59,240 --> 00:17:00,860 +-time employee. The part-time employee, of course, + +290 +00:17:01,080 --> 00:17:02,760 +as soon as you extract the object, will learn that + +291 +00:17:02,760 --> 00:17:04,220 +you have to extract the constructor, right? Is + +292 +00:17:04,220 --> 00:17:06,720 +there a constructor here? Yes, it's empty. Yes, + +293 +00:17:06,780 --> 00:17:08,720 +it's empty, but it's known that the constructor of + +294 +00:17:08,720 --> 00:17:11,640 +the subclass will extract the constructor of the + +295 +00:17:11,640 --> 00:17:14,400 +superclass. It will immediately execute what? This + +296 +00:17:14,400 --> 00:17:23,420 +code.Employee4 will run YGH to createSub + +297 +00:17:23,420 --> 00:17:26,560 +-attributes. What does it create? The subclass. It + +298 +00:17:26,560 --> 00:17:29,060 +fills what's available. And then it turns on the + +299 +00:17:29,060 --> 00:17:31,160 +save button. When I click on the save button, it + +300 +00:17:31,160 --> 00:17:32,740 +creates an employee. It creates what's available + +301 +00:17:32,740 --> 00:17:34,840 +in the subclass. Which generates a part-time + +302 +00:17:34,840 --> 00:17:38,300 +employee. Let's see. For example, this is a part + +303 +00:17:38,300 --> 00:17:40,520 +-time employee. I made a run for it. Of course, + +304 +00:17:40,660 --> 00:17:45,260 +the initial GUI is available. But the idea is in + +305 +00:17:45,260 --> 00:17:49,800 +the content. For example, this is a job title. Our + +306 +00:17:49,800 --> 00:17:54,150 +rate. Name, ID, Job title, these are the + +307 +00:17:54,150 --> 00:17:57,750 +participants, okay? Then the number of hours and + +308 +00:17:57,750 --> 00:17:59,790 +hour rate, okay? + +309 +00:18:02,990 --> 00:18:06,510 +One, two, three, these two, number of hours, hour + +310 +00:18:06,510 --> 00:18:09,370 +rate, what do they have? They are different. Now, + +311 +00:18:09,430 --> 00:18:12,330 +if I came to the GUI too and changed it, I called + +312 +00:18:12,330 --> 00:18:16,370 +this full-time employee, + +313 +00:18:19,450 --> 00:18:24,390 +I put the salary but it will run and you will see + +314 +00:18:24,390 --> 00:18:28,610 +here this is the name, id, job title and this is + +315 +00:18:28,610 --> 00:18:32,390 +the salary and when I click on save it should read + +316 +00:18:32,390 --> 00:18:34,190 +what is written here and create an object from + +317 +00:18:34,190 --> 00:18:38,310 +full-time employee if you want to create a new + +318 +00:18:38,310 --> 00:18:41,730 +employee what do you have to do? you have to do + +319 +00:18:41,730 --> 00:18:44,950 +two things first thing you have to do is class to + +320 +00:18:44,950 --> 00:18:47,710 +method this one for example here is contract based + +321 +00:18:47,710 --> 00:18:51,470 +employee What is the attribute of his job? + +322 +00:18:52,870 --> 00:18:56,670 +startDate and endDate and then it creates a new + +323 +00:18:56,670 --> 00:18:59,990 +class contractBasedEmployeeFor which is also + +324 +00:18:59,990 --> 00:19:03,010 +called extendEmployeeFor and it puts a new value + +325 +00:19:03,010 --> 00:19:06,190 +in it which is called contractDuration which is + +326 +00:19:06,190 --> 00:19:11,750 +the length of the contract and createEmployee + +327 +00:19:11,750 --> 00:19:15,230 +which is an object from contractBasedEmployee and + +328 +00:19:15,230 --> 00:19:18,210 +in testUI it puts the name of the class + +329 +00:19:32,170 --> 00:19:35,830 +again ok and of course it will add to the new + +330 +00:19:35,830 --> 00:19:40,830 +contract here a duration ok so the important idea + +331 +00:19:42,280 --> 00:19:47,280 +You see that now the program is 100% extendable I + +332 +00:19:47,280 --> 00:19:50,780 +don't need to edit any line of code I don't need + +333 +00:19:50,780 --> 00:19:54,880 +to copy paste or repeat any line of code All I + +334 +00:19:54,880 --> 00:19:59,060 +need to do is create new classes Extend and add + +335 +00:19:59,060 --> 00:20:03,540 +the new parts that belong to it That's how editing + +336 +00:20:03,540 --> 00:20:07,560 +becomes much easier than before We also did this + +337 +00:20:07,560 --> 00:20:11,560 +using the factory method Now + +338 +00:20:23,760 --> 00:20:25,880 +This is the same example that I explained to you + +339 +00:20:25,880 --> 00:20:28,240 +in the previous lecture on Java, which is the + +340 +00:20:28,240 --> 00:20:30,420 +social network poster and the social network + +341 +00:20:30,420 --> 00:20:33,460 +connector When I got this example from the + +342 +00:20:33,460 --> 00:20:36,760 +internet, it is basically made of PHP The example + +343 +00:20:36,760 --> 00:20:39,760 +itself is PHP, but when I explained it, I + +344 +00:20:39,760 --> 00:20:44,560 +explained Java Of course, this code exists in PHP + +345 +00:20:45,420 --> 00:20:47,360 +so that you can see that object-oriented concepts + +346 +00:20:47,360 --> 00:20:51,880 +are present in all languages. For example, if you + +347 +00:20:51,880 --> 00:20:54,020 +remember the example from last time, I have + +348 +00:20:54,020 --> 00:20:57,380 +connectors, for example, Facebook connector, + +349 +00:20:57,600 --> 00:20:59,680 +Twitter, LinkedIn connectors, and then I have + +350 +00:20:59,680 --> 00:21:02,620 +posters. The poster uses the connector from inside + +351 +00:21:02,620 --> 00:21:05,320 +to connect to the social network and then make a + +352 +00:21:05,320 --> 00:21:08,440 +post and store it in the database and so on. For + +353 +00:21:08,440 --> 00:21:12,280 +example, if I want to make a post, the steps of + +354 +00:21:12,280 --> 00:21:15,230 +making the post are common, So I'm going to put it + +355 +00:21:15,230 --> 00:21:17,410 +in the superclass, it's called social network + +356 +00:21:17,410 --> 00:21:23,270 +poster And this is the method post Because the + +357 +00:21:23,270 --> 00:21:25,690 +method post wants to do four steps in it The first + +358 +00:21:25,690 --> 00:21:28,850 +step is to create the connector Because it doesn't + +359 +00:21:28,850 --> 00:21:30,290 +know what connector it creates Because the + +360 +00:21:30,290 --> 00:21:32,310 +connector differs from subclass to subclass, + +361 +00:21:32,370 --> 00:21:34,410 +right? So I'm going to create an abstract method + +362 +00:21:34,410 --> 00:21:37,510 +Abstract public function called + +363 +00:21:37,510 --> 00:21:40,470 +getSocialNetworkConnector, for example What does + +364 +00:21:40,470 --> 00:21:46,450 +it return?In the php, I go back to the social + +365 +00:21:46,450 --> 00:21:49,790 +network connector, and I get the social network + +366 +00:21:49,790 --> 00:21:55,050 +from the post, and I get the social network from + +367 +00:21:55,050 --> 00:21:57,930 +the post, and I get the social network from the + +368 +00:21:57,930 --> 00:21:58,270 +post, and I get the social network from the post, + +369 +00:21:58,270 --> 00:21:59,830 +and I get the social network from the post, and I + +370 +00:21:59,830 --> 00:22:00,830 +get the social network from the post, and I get + +371 +00:22:00,830 --> 00:22:02,770 +the social network from the post, Logout. These + +372 +00:22:02,770 --> 00:22:04,230 +are fixed steps that must be followed. Everyone + +373 +00:22:04,230 --> 00:22:06,790 +must follow them. What differs from this step is + +374 +00:22:06,790 --> 00:22:09,630 +that I entrust it to the subclasses through the + +375 +00:22:09,630 --> 00:22:13,010 +abstract method. Because these subclasses, for + +376 +00:22:13,010 --> 00:22:15,950 +example, this Facebook poster is made to extend to + +377 +00:22:15,950 --> 00:22:20,010 +a social network poster, okay? It is required that + +378 +00:22:20,010 --> 00:22:22,930 +it only implement to whom? To get social network, + +379 +00:22:23,210 --> 00:22:25,070 +which determines what kind of connector it wants + +380 +00:22:25,070 --> 00:22:29,010 +to use. Facebook connector. And this, for example, + +381 +00:22:30,640 --> 00:22:34,600 +Linked-in poster, get social network, it should + +382 +00:22:34,600 --> 00:22:38,880 +also have a linked-in connector. Okay? So it's the + +383 +00:22:38,880 --> 00:22:41,860 +same example. I got it on the internet, it's in + +384 +00:22:41,860 --> 00:22:44,480 +the PHP, but when I explained it to you, I + +385 +00:22:44,480 --> 00:22:48,720 +explained it in Java. Okay, guys? Okay, this way + +386 +00:22:48,720 --> 00:22:54,340 +we have completed the method factor. Before we + +387 +00:22:54,340 --> 00:22:57,420 +enter the new pattern design, there is a duty that + +388 +00:22:57,420 --> 00:22:59,240 +we have to take. Okay, guys? + +389 +00:23:12,620 --> 00:23:17,440 +Okay, the duty required was as follows Do you have + +390 +00:23:17,440 --> 00:23:20,980 +a duty, did you find it? No, one, these are two + +391 +00:23:20,980 --> 00:23:24,280 +questions in one duty Okay, that's it, if you + +392 +00:23:24,280 --> 00:23:25,440 +understood the first one, solve the second one, + +393 +00:23:26,080 --> 00:23:29,440 +okay? Same way Okay, did you find it? They tell + +394 +00:23:29,440 --> 00:23:33,120 +you that you make a program, for example, for + +395 +00:23:33,120 --> 00:23:35,860 +licenses or the ministry, for example, okay? They + +396 +00:23:35,860 --> 00:23:40,550 +have data input models Which is called Citizens + +397 +00:23:40,550 --> 00:23:42,970 +Requests For example, there is a request to add a + +398 +00:23:42,970 --> 00:23:45,070 +child, a request to prepare a passport, a request + +399 +00:23:45,070 --> 00:23:47,770 +to apply for travel, and each person has a common + +400 +00:23:47,770 --> 00:23:50,850 +data For example, here is a request to add a + +401 +00:23:50,850 --> 00:23:52,510 +child, the name of the applicant, the identity + +402 +00:23:52,510 --> 00:23:53,770 +number of the applicant, the title of the + +403 +00:23:53,770 --> 00:23:56,650 +applicant, and then the name of the child, date of + +404 +00:23:56,650 --> 00:23:58,670 +birth, and gender of the child, a request to renew + +405 +00:23:58,670 --> 00:24:01,030 +the passport, there is also the name of the + +406 +00:24:01,030 --> 00:24:03,470 +applicant, his identity number, his title, and + +407 +00:24:03,470 --> 00:24:05,050 +then the number of the passport and date of + +408 +00:24:05,050 --> 00:24:06,710 +completion, these are related to whom? The + +409 +00:24:06,710 --> 00:24:10,290 +passport Identification is the same thing Notice + +410 +00:24:10,290 --> 00:24:13,750 +in all applications You have to put the name of + +411 +00:24:13,750 --> 00:24:14,910 +the applicant, his or her ID number and his or her + +412 +00:24:14,910 --> 00:24:20,130 +address But there are different data Now, + +413 +00:24:20,890 --> 00:24:26,830 +I am required to design in any way that I want for + +414 +00:24:26,830 --> 00:24:31,670 +these three modelsFor the three models, each model + +415 +00:24:31,670 --> 00:24:35,590 +must have all these fields Name of the student, ID + +416 +00:24:35,590 --> 00:24:38,550 +number, title, and specific elements in each + +417 +00:24:38,550 --> 00:24:41,510 +request And each request must have a safe key in + +418 +00:24:41,510 --> 00:24:44,250 +the end When I click on it, it will create an + +419 +00:24:44,250 --> 00:24:47,230 +object from each request So now, when you work, + +420 +00:24:47,430 --> 00:24:50,410 +before you make the models, the faces, you go and + +421 +00:24:50,410 --> 00:24:58,300 +make a class representing each requestadd baby + +422 +00:24:58,300 --> 00:25:03,180 +request visa + +423 +00:25:03,180 --> 00:25:03,200 +request + +424 +00:25:12,300 --> 00:25:15,560 +Or applications, whatever you want, okay? And + +425 +00:25:15,560 --> 00:25:19,280 +these represent the employee classes. We haven't + +426 +00:25:19,280 --> 00:25:22,580 +come to models yet. You want to make classes that + +427 +00:25:22,580 --> 00:25:25,880 +represent the object, okay? And these will be + +428 +00:25:25,880 --> 00:25:28,180 +attributes within the class. Of course, once they + +429 +00:25:28,180 --> 00:25:30,900 +join, there are three attributes that will be in + +430 +00:25:30,900 --> 00:25:35,360 +the parent. Once you finish the classes of these, + +431 +00:25:35,460 --> 00:25:39,150 +you want to go and make the faces.Factory methods + +432 +00:25:39,150 --> 00:25:43,330 +have common and different elements. It does not + +433 +00:25:43,330 --> 00:25:45,230 +need to design for each face in a single screen. + +434 +00:25:46,290 --> 00:25:49,870 +We need to develop it. We need to use the factory + +435 +00:25:49,870 --> 00:25:52,470 +method. That means you need to design for the + +436 +00:25:52,470 --> 00:25:58,250 +common elements and use the abstract methods, the + +437 +00:25:58,250 --> 00:26:00,410 +factory methods, so that the different elements + +438 +00:26:00,410 --> 00:26:03,750 +can be designed in the subclasses. And there + +439 +00:26:03,750 --> 00:26:08,020 +should be a safe button. You press it.It creates + +440 +00:26:08,020 --> 00:26:10,920 +an object from the request and prints its data for + +441 +00:26:10,920 --> 00:26:13,680 +you. It stores it in the object and prints the + +442 +00:26:13,680 --> 00:26:16,800 +object for you. It's the same example that I + +443 +00:26:16,800 --> 00:26:23,180 +explained. But it changes what? The example that I + +444 +00:26:23,180 --> 00:26:24,320 +explained has an effect on the code that is + +445 +00:26:24,320 --> 00:26:27,470 +present on the model. you can take it and change + +446 +00:26:27,470 --> 00:26:31,550 +it to make it like this or you can work on your + +447 +00:26:31,550 --> 00:26:35,030 +mobile on whatever you want the most important + +448 +00:26:35,030 --> 00:26:40,590 +thing is to apply the factory method how long does + +449 +00:26:40,590 --> 00:26:44,210 +it take for the old job? another 3 days to open + +450 +00:26:44,210 --> 00:26:49,550 +this job good right? but guys tomorrow as I said + +451 +00:26:49,550 --> 00:26:53,810 +surely in the exams there will be questionsIt's + +452 +00:26:53,810 --> 00:26:56,270 +not the obligation itself, it's similar to it, if + +453 +00:26:56,270 --> 00:26:58,310 +you don't solve the problem in the exam, they will + +454 +00:26:58,310 --> 00:27:00,490 +give you zero in the obligation directly. Your + +455 +00:27:00,490 --> 00:27:02,750 +mark in the obligation, see I don't admit in the + +456 +00:27:02,750 --> 00:27:06,490 +obligation. Your mark in the obligation, I will + +457 +00:27:06,490 --> 00:27:09,830 +put it almost, it will be your mark in the exam. + +458 +00:27:10,800 --> 00:27:13,400 +It's obvious, because the questions in the exam + +459 +00:27:13,400 --> 00:27:16,060 +are the same as the questions in the assignment In + +460 +00:27:16,060 --> 00:27:18,800 +the end, the questions in the exam are the same as + +461 +00:27:18,800 --> 00:27:21,020 +the questions in the assignment So it's impossible + +462 +00:27:21,020 --> 00:27:24,520 +to give them 100% Even if I give them 100% You + +463 +00:27:24,520 --> 00:27:27,400 +didn't solve the question in the exam Does it mean + +464 +00:27:27,400 --> 00:27:29,480 +that you solved it in the assignment? No, you + +465 +00:27:29,480 --> 00:27:32,380 +didn't solve it in the exam So this assignment is + +466 +00:27:32,380 --> 00:27:35,560 +for you to practice But in the end, you signed the + +467 +00:27:35,560 --> 00:27:37,710 +assignment The same exam. + +468 +00:27:40,470 --> 00:27:46,150 +No, it's just that I open my homework, I see + +469 +00:27:46,150 --> 00:27:48,750 +random things, okay? I take my students and + +470 +00:27:48,750 --> 00:27:50,150 +sometimes they give me empty things like this. + +471 +00:27:51,170 --> 00:27:53,030 +Anyway, this homework is for you. You laugh at + +472 +00:27:53,030 --> 00:27:55,130 +yourself if you don't solve it, okay? Even the + +473 +00:27:55,130 --> 00:27:56,510 +exercises I give you, I don't give you homework + +474 +00:27:56,510 --> 00:27:58,230 +that I tell you to copy from the internet and + +475 +00:27:58,230 --> 00:28:00,350 +write it with your hand and I don't know what. No, + +476 +00:28:00,390 --> 00:28:04,270 +I give you questions It's a whole process, and you + +477 +00:28:04,270 --> 00:28:06,030 +will face all of these in your life. For example, + +478 +00:28:06,030 --> 00:28:08,870 +you will create a program like this with screens. + +479 +00:28:09,610 --> 00:28:11,710 +Well, any program you will create tomorrow will + +480 +00:28:11,710 --> 00:28:13,590 +have screens, and there will also be shared things + +481 +00:28:13,590 --> 00:28:16,170 +and different things. So, this is the scenario you + +482 +00:28:16,170 --> 00:28:18,970 +face in your life. I personally work as a + +483 +00:28:18,970 --> 00:28:21,510 +developer, not as an academic. I find all these + +484 +00:28:21,510 --> 00:28:25,170 +things in my work. I mean, I give you ... what do + +485 +00:28:25,170 --> 00:28:29,330 +they call it? Butter? Yes, these things you will + +486 +00:28:29,330 --> 00:28:32,800 +face in your work in the market tomorrow.Okay + +487 +00:28:32,800 --> 00:28:35,280 +guys, let's start with a presentation on a new + +488 +00:28:35,280 --> 00:28:39,620 +design pattern called Singleton Design Pattern + +489 +00:28:39,620 --> 00:28:41,980 +Okay, we're not going to do an implementation of + +490 +00:28:41,980 --> 00:28:44,300 +it, but we're going to present this lecture and + +491 +00:28:44,300 --> 00:28:46,560 +next time we'll start the implementation directly + +492 +00:28:47,860 --> 00:28:50,840 +The single-tool pattern is necessary in the first + +493 +00:28:50,840 --> 00:28:52,800 +class of Design Patterns, which is the Creational + +494 +00:28:52,800 --> 00:28:56,100 +Design Pattern. All the design patterns that we + +495 +00:28:56,100 --> 00:28:58,300 +explained, the three of them, are related to the + +496 +00:28:58,300 --> 00:28:59,780 +construction of objects. But each one has a goal. + +497 +00:29:00,520 --> 00:29:02,700 +The factory collects the construction in one + +498 +00:29:02,700 --> 00:29:06,520 +class. The builder facilitates the construction of + +499 +00:29:06,520 --> 00:29:08,240 +the object, which the constructor takes many + +500 +00:29:08,240 --> 00:29:11,920 +parameters. The factory method allows the + +501 +00:29:11,920 --> 00:29:15,620 +subclasses to create the object.Okay? For those + +502 +00:29:15,620 --> 00:29:18,200 +who don't know and still have the common code in + +503 +00:29:18,200 --> 00:29:21,120 +the super, class. The fourth design pattern + +504 +00:29:21,120 --> 00:29:23,480 +related to creation is the singleton pattern. It + +505 +00:29:23,480 --> 00:29:26,300 +is one of the simplest design patterns and at the + +506 +00:29:26,300 --> 00:29:31,040 +same time important and widely used. In short, I + +507 +00:29:31,040 --> 00:29:32,900 +say singleton design pattern. It is a design + +508 +00:29:32,900 --> 00:29:36,960 +pattern that we use when we need to have a single + +509 +00:29:36,960 --> 00:29:39,860 +class. I want to create only one object in the + +510 +00:29:39,860 --> 00:29:42,360 +class. I want to use it in the entire application. + +511 +00:29:43,940 --> 00:29:48,400 +What does this mean? For example, sometimes you + +512 +00:29:48,400 --> 00:29:50,000 +create an application that has many screens, + +513 +00:29:51,060 --> 00:29:53,840 +whether it is a web page or a mobile application + +514 +00:29:53,840 --> 00:29:56,420 +that has screens, and from all the screens, you + +515 +00:29:56,420 --> 00:29:59,880 +need to connect to the database. This screen is + +516 +00:29:59,880 --> 00:30:03,280 +your model, you enter the data, you save it in the + +517 +00:30:03,280 --> 00:30:07,140 +database. The second screen is a view, it creates + +518 +00:30:07,140 --> 00:30:08,880 +a query on the database, it brings the data and + +519 +00:30:08,880 --> 00:30:12,330 +shows it to you. Okay? The third screen is also a + +520 +00:30:12,330 --> 00:30:14,910 +view, but it makes another table in the database. + +521 +00:30:15,170 --> 00:30:17,570 +That is, in fact, in each screen you need to make + +522 +00:30:17,570 --> 00:30:21,130 +a connect on the database and make a query. So + +523 +00:30:21,130 --> 00:30:24,950 +when you make a connect on the database, in each + +524 +00:30:24,950 --> 00:30:27,950 +screen, of course, the connection to the database + +525 +00:30:27,950 --> 00:30:31,430 +must be present in a class and a method. Okay? + +526 +00:30:32,010 --> 00:30:35,810 +Whenever I want to open a screen that needs to + +527 +00:30:35,810 --> 00:30:37,230 +connect to the database, I want to create the + +528 +00:30:37,230 --> 00:30:39,530 +object of this connection that needs to connect to + +529 +00:30:39,530 --> 00:30:42,660 +the database.Now this is a problem, why? Because + +530 +00:30:42,660 --> 00:30:45,680 +this object needs resources that it takes from the + +531 +00:30:45,680 --> 00:30:49,740 +memory and it needs time to work So it's not a + +532 +00:30:49,740 --> 00:30:51,820 +good solution that whenever you want to connect to + +533 +00:30:51,820 --> 00:30:55,880 +the database, you need to create this connector In + +534 +00:30:55,880 --> 00:30:58,040 +a situation like this, where I have 10 screens + +535 +00:30:58,040 --> 00:30:59,640 +that all interact with the database, I should + +536 +00:30:59,640 --> 00:31:04,680 +create one connector and use it anywhere This is + +537 +00:31:04,680 --> 00:31:10,380 +one example Another example, you make a game In + +538 +00:31:10,380 --> 00:31:15,020 +the game, you need to handle textures, which are + +539 +00:31:15,020 --> 00:31:18,780 +drawn on shapes, you need to handle 3D objects, + +540 +00:31:19,200 --> 00:31:21,760 +you need to handle audio files for sound, pictures + +541 +00:31:21,760 --> 00:31:25,180 +and others. And these files that I downloaded, you + +542 +00:31:25,180 --> 00:31:29,460 +will use them throughout the game, level 1 and 2 + +543 +00:31:29,460 --> 00:31:34,820 +in design and so on.Does it make sense that every + +544 +00:31:34,820 --> 00:31:35,820 +time a student starts a new level, he should + +545 +00:31:35,820 --> 00:31:38,020 +download the same content over and over again? No, + +546 +00:31:38,060 --> 00:31:40,580 +he should download it and load it to one object + +547 +00:31:40,580 --> 00:31:44,200 +and use it everywhere in the application. Now, + +548 +00:31:44,260 --> 00:31:47,000 +from the bad practices that students or beginners + +549 +00:31:47,000 --> 00:31:54,450 +do, they do the following.I go to the first + +550 +00:31:54,450 --> 00:31:57,550 +screen, it needs a connection to the database, + +551 +00:31:58,130 --> 00:32:02,890 +okay? I go and create an object, DB connector + +552 +00:32:02,890 --> 00:32:10,550 +equals C equals new DB connector + +553 +00:32:12,650 --> 00:32:18,470 +I create a new object and go to C and say query c + +554 +00:32:18,470 --> 00:32:23,930 +.insert database. It opens a new screen and I need + +555 +00:32:23,930 --> 00:32:27,510 +it to show from the database. I go to simple, this + +556 +00:32:27,510 --> 00:32:30,680 +is our knowledge, we do the U.New is free, right? + +557 +00:32:30,940 --> 00:32:34,240 +No. Here, I opened a new screen, I did what? New, + +558 +00:32:34,660 --> 00:32:36,360 +Connector, I connected it to the database and I + +559 +00:32:36,360 --> 00:32:39,280 +did a query again. In each screen, you have to do + +560 +00:32:39,280 --> 00:32:41,920 +a new, okay? But sometimes these screens don't + +561 +00:32:41,920 --> 00:32:45,800 +close, they stay closed. Okay? In the mobile, yes, + +562 +00:32:45,860 --> 00:32:49,300 +this remains in the back stack. Okay? Well, this + +563 +00:32:49,300 --> 00:32:51,340 +connector exists and this connector exists. This + +564 +00:32:51,340 --> 00:32:52,680 +takes from the memory and this takes from the + +565 +00:32:52,680 --> 00:32:54,600 +memory. Then, for example, in the mobile + +566 +00:32:54,600 --> 00:32:57,430 +specifically, you are with me. Battery. In the + +567 +00:32:57,430 --> 00:32:59,410 +battery, it should be efficient. The memory is + +568 +00:32:59,410 --> 00:33:01,770 +limited and the battery is limited. Right or + +569 +00:33:01,770 --> 00:33:03,770 +wrong? So in the memory, you take care of every + +570 +00:33:03,770 --> 00:33:06,770 +object you create, not like a desktop. Create + +571 +00:33:06,770 --> 00:33:11,730 +whatever you want. Okay? No. Here, one object + +572 +00:33:11,730 --> 00:33:16,950 +should be created and used everywhere. Okay? + +573 +00:33:17,090 --> 00:33:19,490 +Someone might say, I created it here. How can I + +574 +00:33:19,490 --> 00:33:22,890 +open this screen? Okay? I need to use what's on + +575 +00:33:22,890 --> 00:33:28,770 +that screen.Okay? One can say simply that this + +576 +00:33:28,770 --> 00:33:31,450 +screen is a class and you make objects from it. + +577 +00:33:31,770 --> 00:33:37,070 +When you create this, you send this to this one. + +578 +00:33:37,350 --> 00:33:41,310 +Parameter through method or constructor. Right or + +579 +00:33:41,310 --> 00:33:43,520 +wrong?Okay, this also won't solve the problem. + +580 +00:33:43,620 --> 00:33:45,940 +Why? Sometimes there is not only one screen, there + +581 +00:33:45,940 --> 00:33:49,440 +are 20-30 screens. You grab these guys and move + +582 +00:33:49,440 --> 00:33:52,360 +them all. Parameter for this, parameter for this, + +583 +00:33:52,420 --> 00:33:54,220 +parameter for this. You keep moving them. Okay? + +584 +00:33:55,040 --> 00:33:58,160 +No, I mean, what will happen to the program? There + +585 +00:33:58,160 --> 00:34:01,720 +is a big dependency. Basically, this is also not a + +586 +00:34:01,720 --> 00:34:03,720 +health sign, right or not? It means that you + +587 +00:34:03,720 --> 00:34:08,860 +changed here. It hit this one, right? Yes, there + +588 +00:34:08,860 --> 00:34:10,580 +is a lot of coupling when you keep sending + +589 +00:34:10,580 --> 00:34:12,700 +objects. Ok, it is true that you made one object, + +590 +00:34:13,240 --> 00:34:15,540 +but there is coupling that you need to send it + +591 +00:34:15,540 --> 00:34:19,300 +from one place to another, ok? Izmilk said + +592 +00:34:19,300 --> 00:34:20,560 +something good, we were going to talk about it + +593 +00:34:20,560 --> 00:34:23,040 +here. He said, it is simple, make a static and + +594 +00:34:23,040 --> 00:34:26,720 +send it anywhere. No, the static does not solve + +595 +00:34:26,720 --> 00:34:29,260 +the problem. Do you know why? Did you notice that + +596 +00:34:29,260 --> 00:34:35,080 +the static is good, but the problem is that even + +597 +00:34:35,080 --> 00:34:40,260 +if you don't need it.Okay? So this aesthetic, we + +598 +00:34:40,260 --> 00:34:42,260 +know that even if you didn't create an object from + +599 +00:34:42,260 --> 00:34:45,260 +scratch, even from all the screens, it will still + +600 +00:34:45,260 --> 00:34:48,700 +be there in your memory. This means, imagine for + +601 +00:34:48,700 --> 00:34:52,900 +example in a game, okay? You put all the audio, + +602 +00:34:53,620 --> 00:34:56,060 +textures, and 3D objects, all of them with + +603 +00:34:56,060 --> 00:34:57,880 +aesthetics, so that you can use them wherever you + +604 +00:34:57,880 --> 00:35:02,340 +want. So the game, as soon as it starts, it will + +605 +00:35:02,340 --> 00:35:05,700 +download and load all the Gigs, all the data, all + +606 +00:35:05,700 --> 00:35:09,550 +at once.No, we want a better solution that does + +607 +00:35:09,550 --> 00:35:12,370 +not create what you want it to create except in + +608 +00:35:12,370 --> 00:35:17,070 +the time that you need it to create. Okay? This + +609 +00:35:17,070 --> 00:35:18,910 +scenario explains to you what is the problem that + +610 +00:35:18,910 --> 00:35:22,210 +we are going to face. How can we create one object + +611 +00:35:22,210 --> 00:35:26,230 +from a class when it is needed only. Okay? And + +612 +00:35:26,230 --> 00:35:28,510 +when this object is created, we will use it + +613 +00:35:28,510 --> 00:35:33,710 +anywhere in the application. Okay? We create it + +614 +00:35:33,710 --> 00:35:37,320 +when it is needed.only, and create it only once, + +615 +00:35:37,500 --> 00:35:41,760 +and use it everywhere in the application. This + +616 +00:35:41,760 --> 00:35:44,120 +will be applied by using the singleton pattern. + +617 +00:35:44,740 --> 00:35:46,840 +Where are the examples of applications for use? As + +618 +00:35:46,840 --> 00:35:48,500 +I said, I need to make a connection to the + +619 +00:35:48,500 --> 00:35:52,200 +database once and use it everywhere. I need to + +620 +00:35:52,200 --> 00:35:57,580 +load configuration data or large data once and use + +621 +00:35:57,580 --> 00:36:01,710 +it everywhere.Or for example one of the scenarios + +622 +00:36:01,710 --> 00:36:07,790 +here, sometimes it is important to have only one + +623 +00:36:07,790 --> 00:36:12,790 +instance for a class For + +624 +00:36:12,790 --> 00:36:15,730 +example in a system there should be only one + +625 +00:36:15,730 --> 00:36:19,940 +window manager For example, in some GUI + +626 +00:36:19,940 --> 00:36:20,860 +applications, they make something called Window + +627 +00:36:20,860 --> 00:36:23,740 +Manager to control the components of the screen + +628 +00:36:23,740 --> 00:36:27,880 +and sub-screens that appear. So this Window + +629 +00:36:27,880 --> 00:36:31,260 +Manager is supposed to be an object that you make + +630 +00:36:31,260 --> 00:36:35,700 +more than once. Another example is a file system + +631 +00:36:35,700 --> 00:36:38,760 +object that reads certain files. Or Print Spooler. + +632 +00:36:38,800 --> 00:36:40,480 +Do you know what Print Spooler is? It's printing. + +633 +00:36:41,220 --> 00:36:44,900 +The printing service must be compatible with All + +634 +00:36:44,900 --> 00:36:46,960 +of them. Because the idea is that any printing + +635 +00:36:46,960 --> 00:36:49,280 +order that comes, they put it in a queue. Okay? + +636 +00:36:49,820 --> 00:36:52,220 +And they arrange it according to the incoming + +637 +00:36:52,220 --> 00:36:53,560 +orders. It doesn't make sense that every time you + +638 +00:36:53,560 --> 00:36:55,980 +want to open a new screen, they make a new queue + +639 +00:36:55,980 --> 00:36:59,080 +for you. Okay? And they even know where to connect + +640 +00:36:59,080 --> 00:37:02,830 +to a web service.Okay? Each screen needs to + +641 +00:37:02,830 --> 00:37:06,670 +connect with the API. This logic, whenever you + +642 +00:37:06,670 --> 00:37:08,430 +open a screen, creates a new connection to the + +643 +00:37:08,430 --> 00:37:12,630 +API, also takes resources from it. This is an + +644 +00:37:12,630 --> 00:37:15,070 +introduction to the importance of the Singleton + +645 +00:37:15,070 --> 00:37:17,700 +Design Pattern. Next time, we will see directlyHow + +646 +00:37:17,700 --> 00:37:21,220 +can we apply or make a class where we can create + +647 +00:37:21,220 --> 00:37:24,020 +one object and use it everywhere in the + +648 +00:37:24,020 --> 00:37:28,200 +application? Usually singletons are used for + +649 +00:37:28,200 --> 00:37:31,540 +centralized management of internal or external + +650 +00:37:31,540 --> 00:37:35,380 +resources. Centralized management. It is called + +651 +00:37:35,380 --> 00:37:37,020 +centralized because there is one object + +652 +00:37:37,020 --> 00:37:40,920 +responsible for more than one thing. And through + +653 +00:37:40,920 --> 00:37:44,290 +it, I use it everywhere in the application.and + +654 +00:37:44,290 --> 00:37:47,390 +they provide a global point of access to + +655 +00:37:47,390 --> 00:37:49,930 +themselves. What is a global point of access? It + +656 +00:37:49,930 --> 00:37:52,690 +is a single point of access that everyone can use. + +657 +00:37:54,170 --> 00:37:54,970 +God bless you all. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V2vuTWQOwJs.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V2vuTWQOwJs.srt new file mode 100644 index 0000000000000000000000000000000000000000..05f996153eae557c645dd359e827783e667bfd86 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V2vuTWQOwJs.srt @@ -0,0 +1,2598 @@ + +1 +00:00:04,930 --> 00:00:06,530 +In the name of God, Most Gracious, Most Merciful. + +2 +00:00:07,530 --> 00:00:13,810 +We will start today with a new design pattern. Let + +3 +00:00:13,810 --> 00:00:15,230 +me open the slides. + +4 +00:00:25,610 --> 00:00:31,450 +It is called the Observer design pattern, excuse + +5 +00:00:31,450 --> 00:00:34,030 +me, the data bus design pattern. In the previous + +6 +00:00:34,030 --> 00:00:36,370 +lecture, we took a design pattern, one of the most + +7 +00:00:36,370 --> 00:00:38,070 +important design patterns, which is the observer. + +8 +00:00:38,070 --> 00:00:41,230 +And we said that the observer's main interest is + +9 +00:00:41,230 --> 00:00:45,410 +to reduce the coupling between objects that need + +10 +00:00:45,410 --> 00:00:46,250 +to communicate with each other + +11 +00:00:49,720 --> 00:00:52,900 +Especially if I have a relationship between + +12 +00:00:52,900 --> 00:00:59,360 +objects, one to many. So the idea is that my object + +13 +00:00:59,360 --> 00:01:01,860 +that wants to communicate with others, instead of + +14 +00:01:01,860 --> 00:01:03,600 +knowing their types, in the end, deals with them + +15 +00:01:03,600 --> 00:01:05,700 +through some kind of interface. So if I have three + +16 +00:01:05,700 --> 00:01:08,720 +or four components that want to receive data from + +17 +00:01:08,720 --> 00:01:10,900 +another object, they register this object through + +18 +00:01:10,900 --> 00:01:13,660 +some kind of interface. So now it stops knowing the + +19 +00:01:13,660 --> 00:01:16,530 +types of these objects. I no longer need to modify + +20 +00:01:16,530 --> 00:01:20,570 +it whenever I want to change who receives data + +21 +00:01:20,570 --> 00:01:21,830 +from it. + +22 +00:01:24,870 --> 00:01:27,490 +In this lecture, we will take a design pattern + +23 +00:01:27,490 --> 00:01:30,350 +related to the observer. It is considered similar, + +24 +00:01:30,550 --> 00:01:33,670 +some people consider it the same observer, but + +25 +00:01:33,670 --> 00:01:36,810 +with different problems. Let's talk in the + +26 +00:01:36,810 --> 00:01:39,110 +beginning as we are used to. What is the + +27 +00:01:39,110 --> 00:01:42,620 +programming problem that I have, and how do we try + +28 +00:01:42,620 --> 00:01:46,700 +to solve it through the data bus pattern, which is + +29 +00:01:46,700 --> 00:01:50,720 +also one of the behavioral patterns, okay? Let's + +30 +00:01:50,720 --> 00:01:53,380 +take this scenario. If we assume that I have a + +31 +00:01:53,380 --> 00:01:56,320 +software that has three or four components, which + +32 +00:01:56,320 --> 00:02:02,340 +are A, B, C, and D. These can be classes, they can + +33 +00:02:02,340 --> 00:02:05,260 +be a number of components. For example in the system, + +34 +00:02:05,780 --> 00:02:08,900 +this is the finance department, this is the + +35 +00:02:08,900 --> 00:02:15,980 +inventory, this is for human resources, and so on. + +36 +00:02:16,100 --> 00:02:20,000 +Each one of these represents a part or component + +37 +00:02:20,000 --> 00:02:23,560 +in your application. Because these components need + +38 +00:02:23,560 --> 00:02:26,640 +to communicate with each other. How? For example, + +39 +00:02:27,140 --> 00:02:32,020 +A needs to send to B, C, and D, and once C needs to + +40 +00:02:32,020 --> 00:02:34,840 +send for example to B and D. And once D needs to + +41 +00:02:34,840 --> 00:02:38,640 +send to A and B, so now the relation between them + +42 +00:02:38,640 --> 00:02:41,460 +is that at any time one of the components needs to + +43 +00:02:41,460 --> 00:02:46,600 +send messages to the other components if + +44 +00:02:46,600 --> 00:02:52,260 +we assume that A wants to send data to B, C, and D + +45 +00:02:52,900 --> 00:02:56,640 +Because we took that you can use the observer + +46 +00:02:56,640 --> 00:03:01,100 +pattern to make A send to these components without + +47 +00:03:01,100 --> 00:03:07,160 +knowing them. How? For example, B, C, and D instead + +48 +00:03:07,160 --> 00:03:10,120 +of sending a reference to A, go and make a common + +49 +00:03:10,120 --> 00:03:13,800 +interface for example. I want to call it A + +50 +00:03:13,800 --> 00:03:19,820 +interface and make these implement to this + +51 +00:03:19,820 --> 00:03:24,880 +interface. And then you make a list here in A where + +52 +00:03:24,880 --> 00:03:29,280 +you register all B, C, and D because they are a + +53 +00:03:29,280 --> 00:03:32,800 +type of A interface, and you register them in A as + +54 +00:03:32,800 --> 00:03:37,800 +a list, and in A you tell them, if you get a message, + +55 +00:03:37,800 --> 00:03:41,600 +go and make a loop and send it to each one of the + +56 +00:03:41,600 --> 00:03:47,410 +types of AI. If I want A to send to B, C, and D. Okay, + +57 +00:03:47,450 --> 00:03:53,070 +if I want B to send to A, C, and D, okay? It's the + +58 +00:03:53,070 --> 00:03:57,350 +same idea. Instead of sending a reference to B, A, + +59 +00:03:57,530 --> 00:04:01,690 +C, and D and ask them to find a method for them. No, + +60 +00:04:01,870 --> 00:04:04,010 +as long as B wants to deal with them, you have to + +61 +00:04:04,010 --> 00:04:08,490 +create a B interface called B interface, BI, and + +62 +00:04:08,490 --> 00:04:12,030 +let them implement this interface + +63 +00:04:15,820 --> 00:04:20,160 +Okay? And then let the B put a list of the type of + +64 +00:04:20,160 --> 00:04:24,000 +B I. And then if the A wants to send, you tell him + +65 +00:04:24,000 --> 00:04:26,920 +to make a loop on each B I and send him the + +66 +00:04:26,920 --> 00:04:31,460 +message. Okay, you want C to send, them the same + +67 +00:04:31,460 --> 00:04:33,780 +idea, you want to make an interface and let them + +68 +00:04:33,780 --> 00:04:37,220 +implement the interface and register them in C, so + +69 +00:04:37,220 --> 00:04:39,700 +what happened? You notice that it became + +70 +00:04:39,700 --> 00:04:44,540 +temporary, that is, if the observer we took is an + +71 +00:04:44,540 --> 00:04:48,000 +excellent solution, if you know who sends for whom? + +72 +00:04:48,120 --> 00:04:50,980 +When you only have A sending to B, C, and D, and + +73 +00:04:50,980 --> 00:04:54,420 +that's it. But now we are in front of a scenario + +74 +00:04:54,420 --> 00:04:58,420 +where these four components need to send and + +75 +00:04:58,420 --> 00:05:01,790 +receive each other. At any time, this needs to + +76 +00:05:01,790 --> 00:05:05,670 +reach this, this needs to reach this, so applying + +77 +00:05:05,670 --> 00:05:07,710 +the observer pattern works, but the process + +78 +00:05:07,710 --> 00:05:10,090 +becomes complicated, that is, each one of these + +79 +00:05:10,090 --> 00:05:12,090 +needs this gate to make three interfaces + +80 +00:05:12,090 --> 00:05:16,070 +implement, right? A needs to be of type bi, and of + +81 +00:05:16,070 --> 00:05:19,930 +type di, and of type ci. And A needs to register + +82 +00:05:19,930 --> 00:05:23,640 +here and here and here. That's it. We did it for the + +83 +00:05:23,640 --> 00:05:25,820 +A, and you have to do the same thing for the B, C, + +84 +00:05:25,820 --> 00:05:27,820 +and D. It turns out that we have reached a stage + +85 +00:05:27,820 --> 00:05:29,960 +where applying the observer pattern in this case + +86 +00:05:29,960 --> 00:05:35,140 +is difficult. So we want to see an easy way to + +87 +00:05:35,140 --> 00:05:38,180 +make these four components send and receive each + +88 +00:05:38,180 --> 00:05:41,740 +other in the easiest way possible. So the observer + +89 +00:05:41,740 --> 00:05:44,760 +application is difficult, and even if you cache + +90 +00:05:44,760 --> 00:05:47,500 +the use of design patterns at once, that is, you + +91 +00:05:47,500 --> 00:05:50,940 +let A know B and C and D, and B knows C and D and + +92 +00:05:50,940 --> 00:05:53,700 +A, the process is also complicated, that is, each + +93 +00:05:53,700 --> 00:05:56,740 +person takes a reference or sends him references + +94 +00:05:56,740 --> 00:05:59,520 +from three to two in the process, which is also + +95 +00:05:59,520 --> 00:06:03,560 +complicated. So we go back and see that we need an + +96 +00:06:03,560 --> 00:06:04,300 +easy solution. + +97 +00:06:10,560 --> 00:06:17,280 +A, B, C, and D should communicate with each other + +98 +00:06:17,280 --> 00:06:21,160 +And this scenario is very common in apps. For + +99 +00:06:21,160 --> 00:06:23,580 +example, when I was working on Android apps, + +100 +00:06:23,780 --> 00:06:28,260 +sometimes when they design screens, they divide + +101 +00:06:28,260 --> 00:06:31,810 +them into parts and call them fragments, it can be + +102 +00:06:31,810 --> 00:06:35,170 +a part of the screen and another part of the + +103 +00:06:35,170 --> 00:06:38,030 +screen, and these parts are programmed separately + +104 +00:06:38,030 --> 00:06:41,590 +for example. This part is in the class and this part is + +105 +00:06:41,590 --> 00:06:43,690 +in the class and this part is in the class, but of course + +106 +00:06:43,690 --> 00:06:46,890 +these parts need to send data to each other for + +107 +00:06:46,890 --> 00:06:48,970 +example, this one has changed or I clicked on the + +108 +00:06:48,970 --> 00:06:51,750 +button and it wants to tell this one. This one has + +109 +00:06:51,750 --> 00:06:53,750 +changed the content many times, I click on + +110 +00:06:53,750 --> 00:06:55,450 +something, and it wants to change the list that is + +111 +00:06:55,450 --> 00:06:58,700 +displayed here. Now I press on a certain button, and + +112 +00:06:58,700 --> 00:07:01,900 +it will change here and here. Notice that they all + +113 +00:07:01,900 --> 00:07:06,600 +send and receive from each other. So applying the + +114 +00:07:06,600 --> 00:07:09,240 +observer pattern here is difficult. Okay, let's get + +115 +00:07:09,240 --> 00:07:12,220 +back to our topic. How these four components need + +116 +00:07:12,220 --> 00:07:15,160 +to communicate with each other easily. The idea we + +117 +00:07:15,160 --> 00:07:19,320 +are going to do is similar to by what happens in + +118 +00:07:19,320 --> 00:07:21,540 +the computer networks. If I have a computer network + +119 +00:07:21,540 --> 00:07:24,200 +and I have computers that I want to connect to one + +120 +00:07:24,200 --> 00:07:28,060 +network. What do we do? We make the ethernet + +121 +00:07:28,060 --> 00:07:31,820 +network where I have a bus topology, and each one + +122 +00:07:31,820 --> 00:07:38,200 +connects to whom? To the bus, like this. This + +123 +00:07:38,200 --> 00:07:41,740 +computer network will have a bus like this. This + +124 +00:07:41,740 --> 00:07:44,060 +bus is separated from them, right? No, it's in the + +125 +00:07:44,060 --> 00:07:46,390 +middle, but anyone who wants to connect to the + +126 +00:07:46,390 --> 00:07:49,390 +internet has to connect to the bus. What happens + +127 +00:07:49,390 --> 00:07:52,370 +now is that A wants to send a message to B, C, and + +128 +00:07:52,370 --> 00:07:56,850 +D. What does A do? A sends a message to whom? To + +129 +00:07:56,850 --> 00:08:00,510 +the bus. And what does the bus do? It broadcasts + +130 +00:08:00,510 --> 00:08:05,750 +the message. So this bus sends a message to B, D, + +131 +00:08:05,750 --> 00:08:11,070 +and C. Now the same idea, D wants to send a message + +132 +00:08:11,070 --> 00:08:15,010 +to A, B, and C. The B, and the D connects to the bus, + +133 +00:08:15,010 --> 00:08:17,510 +and the bus is the one that delivers the message + +134 +00:08:17,510 --> 00:08:21,530 +to everyone. If someone wants to publish for + +135 +00:08:21,530 --> 00:08:23,710 +everyone, but sometimes the A wants to send a + +136 +00:08:23,710 --> 00:08:26,690 +message to whom? To the D. The same idea will + +137 +00:08:26,690 --> 00:08:29,010 +happen, the A will send a message to the bus, but + +138 +00:08:29,010 --> 00:08:30,270 +the bus does not understand what it is doing. It + +139 +00:08:30,270 --> 00:08:32,710 +takes the message, and distributes it to everyone. + +140 +00:08:32,710 --> 00:08:38,260 +Now this D. He is supposed to receive it and these + +141 +00:08:38,260 --> 00:08:40,420 +guys don't have it. They are supposed to cancel it. + +142 +00:08:40,420 --> 00:08:43,440 +I mean, of course, how? For example, if B got a + +143 +00:08:43,440 --> 00:08:45,600 +message that doesn't have a meaning in it. How can + +144 +00:08:45,600 --> 00:08:47,500 +I know if it has a meaning or not? The message + +145 +00:08:47,500 --> 00:08:49,740 +itself is supposed to have information about who + +146 +00:08:49,740 --> 00:08:52,680 +is the sender, for example, and who is the + +147 +00:08:52,680 --> 00:08:55,280 +receiver, for example. So, for example, if B + +148 +00:08:55,280 --> 00:08:57,340 +doesn't have a meaning in the message. A, I see that + +149 +00:08:57,340 --> 00:09:01,760 +the message came from A. What does he do? Yes, + +150 +00:09:01,940 --> 00:09:04,560 +that's it. He discards it. He ignores it. Okay? + +151 +00:09:05,580 --> 00:09:07,920 +But in the end, the bus will distribute to whom? + +152 +00:09:08,160 --> 00:09:12,160 +To everyone. And the item or the component here + +153 +00:09:12,160 --> 00:09:14,700 +decides whether to receive the message or not. + +154 +00:09:15,040 --> 00:09:16,860 +Based on what? Based on the information of the + +155 +00:09:16,860 --> 00:09:19,120 +message, where did the message come from. And this + +156 +00:09:19,120 --> 00:09:21,260 +is what happens in networks. In networks, when we + +157 +00:09:21,260 --> 00:09:23,900 +send a packet to the network, the packet has the + +158 +00:09:23,900 --> 00:09:27,480 +IP address of the sender and the receiver. The + +159 +00:09:27,480 --> 00:09:30,200 +packet is not sent to everyone; it is the bus that + +160 +00:09:30,200 --> 00:09:32,960 +distributes it to everyone. The hub distributes it + +161 +00:09:32,960 --> 00:09:34,340 +to everyone, if you studied well. The hub + +162 +00:09:34,340 --> 00:09:37,460 +distributes it to everyone, okay? Those who have + +163 +00:09:37,460 --> 00:09:38,860 +meaning in the message receive it, and those who + +164 +00:09:38,860 --> 00:09:41,240 +do not have meaning in it remove it. This is a way + +165 +00:09:41,240 --> 00:09:44,820 +for the component to distinguish whether it + +166 +00:09:44,820 --> 00:09:48,940 +receives the message or not, or another way. As we + +167 +00:09:48,940 --> 00:09:52,040 +will see, the messages themselves are assigned to + +168 +00:09:52,040 --> 00:09:54,500 +us. For example, this message has to do with the + +169 +00:09:54,500 --> 00:09:58,040 +process of adding, for example. If I want to ask + +170 +00:09:58,040 --> 00:10:00,360 +for a component to add a certain task, this + +171 +00:10:00,360 --> 00:10:04,220 +message has to do with the invoices, this message + +172 +00:10:04,220 --> 00:10:10,100 +has to do with searching in the warehouse. Now the + +173 +00:10:10,100 --> 00:10:14,390 +message has to do with invoices, Invoice message + +174 +00:10:14,390 --> 00:10:17,110 +for example. I sent it; it should reach the + +175 +00:10:17,110 --> 00:10:20,130 +financial department. Now the financial department + +176 +00:10:20,130 --> 00:10:21,830 +receives a message. If it is a type of invoice + +177 +00:10:21,830 --> 00:10:26,210 +message, it receives it. If it is a type of search + +178 +00:10:26,210 --> 00:10:28,630 +or inventory or something like that, it cancels + +179 +00:10:28,630 --> 00:10:31,970 +it, depending on the type of message, it decides to + +180 +00:10:31,970 --> 00:10:36,130 +receive it or not. Now, this is the scenario that + +181 +00:10:36,130 --> 00:10:40,130 +happens in computer networks. We want to do the + +182 +00:10:40,130 --> 00:10:46,280 +same scenario in the code. Okay? So let's see how + +183 +00:10:46,280 --> 00:10:48,520 +to apply the scenario. Imagine that I have three + +184 +00:10:48,520 --> 00:10:52,660 +components. Let's assume that they are three + +185 +00:10:52,660 --> 00:10:55,400 +classes. A, B, and C, and these three begin to + +186 +00:10:55,400 --> 00:10:57,820 +communicate with each other. That is, I want A to + +187 +00:10:57,820 --> 00:11:01,800 +send B to C, and B to send C to A. Okay, and let's + +188 +00:11:01,800 --> 00:11:04,260 +see how to apply it using the database, and how it + +189 +00:11:04,260 --> 00:11:06,840 +will make it easier for me, because as we saw, the + +190 +00:11:06,840 --> 00:11:10,020 +Observer application here is complicated, right, or + +191 +00:11:10,020 --> 00:11 + +223 +00:13:43,190 --> 00:13:48,710 +say send to all hello, + +224 +00:13:49,550 --> 00:13:53,950 +this message is supposed to reach B, C and D and + +225 +00:13:53,950 --> 00:13:57,630 +so on, if it goes to C, I say send to all, it + +226 +00:13:57,630 --> 00:14:01,370 +should reach A, B and D, this is what I want to do + +227 +00:14:01,370 --> 00:14:03,910 +and it is not done yet. Now that we've done these + +228 +00:14:03,910 --> 00:14:07,250 +four elements, we want to do the get-mean, this + +229 +00:14:07,250 --> 00:14:09,990 +bus. The first point, notice that this bus is + +230 +00:14:09,990 --> 00:14:12,670 +separated from all of them, right? So this is + +231 +00:14:12,670 --> 00:14:16,590 +going to be a separate new class. We want to call + +232 +00:14:16,590 --> 00:14:24,170 +this class data bus. Okay? Okay. The second point + +233 +00:14:24,170 --> 00:14:28,590 +is a separate class, but also everyone needs to + +234 +00:14:28,590 --> 00:14:31,670 +communicate with the bus. The application should + +235 +00:14:31,670 --> 00:14:34,210 +have one bus and everyone should communicate with + +236 +00:14:34,210 --> 00:14:37,850 +it. So what should we do next? We should design + +237 +00:14:37,850 --> 00:14:40,710 +this bus as singleton. Why? Because it should have + +238 +00:14:40,710 --> 00:14:45,670 +one object and I can design it from anywhere. So + +239 +00:14:45,670 --> 00:14:49,030 +this class is made and now I want to design it as + +240 +00:14:49,030 --> 00:14:51,410 +singleton. How do we design it as singleton? We + +241 +00:14:51,410 --> 00:14:57,720 +create private static data bus. It's name is + +242 +00:14:57,720 --> 00:15:00,800 +instance, it's value is null, it's an object of + +243 +00:15:00,800 --> 00:15:05,200 +the kind of data bus. Okay, and then we close the + +244 +00:15:05,200 --> 00:15:10,320 +constructor. Right guys? So that no one removes the + +245 +00:15:10,320 --> 00:15:13,140 +object from it. And instead of constructor, we make + +246 +00:15:13,140 --> 00:15:22,940 +public static data bus get instance. Now + +247 +00:15:22,940 --> 00:15:28,960 +if the instance is equal to null, go to instance + +248 +00:15:28,960 --> 00:15:40,320 +and say new data base and then return instance + +249 +00:15:40,320 --> 00:15:42,260 +ok guys? + +250 +00:15:45,880 --> 00:15:52,240 +ok, the second part will make a class represents + +251 +00:15:52,240 --> 00:15:56,040 +the message that we want to send between the + +252 +00:15:56,040 --> 00:15:58,560 +compounds because someone says that this message + +253 +00:15:58,560 --> 00:16:00,800 +is a text. It is not necessary that I can send a + +254 +00:16:00,800 --> 00:16:04,720 +text, integer, array, correct or not and we also + +255 +00:16:04,720 --> 00:16:06,760 +want with the message from the useful information + +256 +00:16:06,760 --> 00:16:08,640 +to send for example with the message from the + +257 +00:16:08,640 --> 00:16:13,420 +sender from the sender. Why? because the future + +258 +00:16:13,420 --> 00:16:15,680 +when the economy comes knows where it came from + +259 +00:16:16,420 --> 00:16:19,800 +and for whom you can put it. So we came inside this + +260 +00:16:19,800 --> 00:16:24,980 +class we want to make public class something we + +261 +00:16:24,980 --> 00:16:31,300 +call bus message so a message to the bus this bus + +262 +00:16:31,300 --> 00:16:33,980 +message of course. How do I design it guys? I want + +263 +00:16:33,980 --> 00:16:37,780 +to make it generics. Why? because of the data I + +264 +00:16:37,780 --> 00:16:41,140 +control in which type it is. Now the bus message I + +265 +00:16:41,140 --> 00:16:46,220 +want to put two attributes in it. T data. And I want + +266 +00:16:46,220 --> 00:16:50,320 +to make in it the sender who wants to send the + +267 +00:16:50,320 --> 00:16:55,340 +data. Of course, the sender wants to make a kind of + +268 +00:16:55,340 --> 00:17:00,180 +subscriber called sender. Of course, you know what + +269 +00:17:00,180 --> 00:17:03,260 +is a subscriber, right? Of course, this type does + +270 +00:17:03,260 --> 00:17:07,260 +not exist yet. Okay? The idea of this gate is that + +271 +00:17:07,260 --> 00:17:10,320 +we want anyone, like the idea of ​​the observer, + +272 +00:17:11,040 --> 00:17:13,120 +not all of us in the observer, the people who want + +273 +00:17:13,120 --> 00:17:15,620 +to register at A, we want to work in the A + +274 +00:17:15,620 --> 00:17:19,240 +interface, okay? But in the observer that we apply + +275 +00:17:19,240 --> 00:17:21,620 +here, in each person we want to make an interface. + +276 +00:17:21,760 --> 00:17:23,820 +Not us, now all the young people want to register + +277 +00:17:23,820 --> 00:17:27,360 +at whom? At the database. Instead of each one + +278 +00:17:27,360 --> 00:17:29,420 +registering with the other one, why did we create + +279 +00:17:29,420 --> 00:17:31,580 +a database? It's the middle ground between them + +280 +00:17:31,580 --> 00:17:34,820 +all. So we want to create a database interface of + +281 +00:17:34,820 --> 00:17:37,620 +a kind, a subscriber, on the basis that anyone who + +282 +00:17:37,620 --> 00:17:40,800 +wants to send and receive others, we tell him to + +283 +00:17:40,800 --> 00:17:43,020 +register with the database. This is the + +284 +00:17:43,020 --> 00:17:45,120 +subscription service. which will be delivered to + +285 +00:17:45,120 --> 00:17:47,660 +the youth through SMS service to subscribe to them. + +286 +00:17:47,660 --> 00:17:50,880 +They want to subscribe as what? as a subscriber so + +287 +00:17:50,880 --> 00:17:54,820 +we came inside the database itself. We want to + +288 +00:17:54,820 --> 00:18:03,400 +create a public interface subscriber and + +289 +00:18:03,400 --> 00:18:06,620 +we want to create a method public void message + +290 +00:18:06,620 --> 00:18:11,140 +received for example. On the basis of this, anyone + +291 +00:18:11,140 --> 00:18:13,480 +who wants to implement for the subscriber, he + +292 +00:18:13,480 --> 00:18:15,080 +wants to state in this data what he wants to do + +293 +00:18:15,080 --> 00:18:18,800 +when he generates the data, okay? Because this + +294 +00:18:18,800 --> 00:18:23,440 +message received will be called a bus message, + +295 +00:18:23,520 --> 00:18:26,440 +okay? + +296 +00:18:27,460 --> 00:18:30,300 +So this is a message received, here the message + +297 +00:18:30,300 --> 00:18:32,140 +has arrived, it will arrive as what? As a bus + +298 +00:18:32,140 --> 00:18:34,740 +message and the data is inside this bus message + +299 +00:18:37,110 --> 00:18:39,110 +Okay, let's continue. This getter came to the bus + +300 +00:18:39,110 --> 00:18:45,030 +message. I just need to make a setter + +301 +00:18:45,030 --> 00:18:47,770 +and getter for the bus message. + +302 +00:19:00,450 --> 00:19:01,430 +Okay, let's continue. + +303 +00:19:04,410 --> 00:19:07,870 +Ok, we made the subscriber, as we did in the + +304 +00:19:07,870 --> 00:19:10,710 +observer, we want to make a list of subscribers, + +305 +00:19:10,950 --> 00:19:14,170 +so that everything that registers is stored in the + +306 +00:19:14,170 --> 00:19:16,350 +databus, not everything must connect with the + +307 +00:19:16,350 --> 00:19:20,390 +databus, ok? We must make a list of what? List of + +308 +00:19:20,390 --> 00:19:25,610 +what type? Subscribers, ok? So, we came up here in + +309 +00:19:25,610 --> 00:19:30,290 +the databus, private, list of what type? + +310 +00:19:36,760 --> 00:19:41,960 +subscribers, ok. And + +311 +00:19:41,960 --> 00:19:43,700 +in constructor, when it is created we say + +312 +00:19:43,700 --> 00:19:52,420 +subscribers is equal to new arraylist of + +313 +00:19:52,420 --> 00:19:54,340 +course. Why we didn't put new above it is normal + +314 +00:19:54,340 --> 00:19:56,120 +you can put it here, but I prefer to do it in + +315 +00:19:56,120 --> 00:19:59,180 +constructor because it is not created until the + +316 +00:19:59,180 --> 00:20:00,540 +object is created, ok. + +317 +00:20:02,870 --> 00:20:04,970 +Okay, just like you made a list of subscribers, + +318 +00:20:05,130 --> 00:20:08,670 +you need to make a tag to add to the subscribers, + +319 +00:20:09,190 --> 00:20:11,690 +okay? So we need to make a tag called subscribe + +320 +00:20:11,690 --> 00:20:15,610 +for example. All of you know what is subscribes, + +321 +00:20:15,710 --> 00:20:17,650 +right? If the video bothered you, I swear to God. + +322 +00:20:17,650 --> 00:20:22,750 +Yes. Subscriber, this is the subscriber, S, okay? + +323 +00:20:23,150 --> 00:20:30,030 +And then you say, if subscribers.contains, if it + +324 +00:20:30,030 --> 00:20:33,610 +does not contain the S, go to the subscribers and + +325 +00:20:33,610 --> 00:20:38,810 +say add the S. And as we did subscribe, if you want + +326 +00:20:38,810 --> 00:20:41,250 +to receive messages from the bus, you can say + +327 +00:20:41,250 --> 00:20:47,560 +what? Unsubscribe. This is a subscriber, in order to + +328 +00:20:47,560 --> 00:20:59,060 +cancel the subscription, subscribe and + +329 +00:20:59,060 --> 00:20:59,860 +what do we do with it? + +330 +00:21:02,820 --> 00:21:06,980 +remove to + +331 +00:21:06,980 --> 00:21:08,260 +the name, they didn't find it, that's it. + +332 +00:21:13,370 --> 00:21:15,950 +Like the idea of the observer, but there is a + +333 +00:21:15,950 --> 00:21:18,630 +difference. The data bus is designed as a + +334 +00:21:18,630 --> 00:21:21,550 +singleton, so that everyone can reach it from + +335 +00:21:21,550 --> 00:21:25,270 +anywhere, and there is only one copy of it. The + +336 +00:21:25,270 --> 00:21:26,470 +second point is that there is a list of + +337 +00:21:26,470 --> 00:21:28,490 +subscribers, so that people can register in it, + +338 +00:21:28,810 --> 00:21:30,370 +and there is an interface for the subscriber. + +339 +00:21:31,310 --> 00:21:33,110 +Anyone who wants to join the bus must take the + +340 +00:21:33,110 --> 00:21:36,690 +kind of interface and register in the existing + +341 +00:21:36,690 --> 00:21:40,130 +list, okay? And this is the message on the basis + +342 +00:21:40,130 --> 00:21:43,150 +that it wants to send, it must send the data and + +343 +00:21:43,150 --> 00:21:47,590 +who is with it, who sent the data. Now we have one + +344 +00:21:47,590 --> 00:21:50,670 +step left to finish this bus thing. It is all the + +345 +00:21:50,670 --> 00:21:56,090 +work in the bus. Now, in addition to subscribe and + +346 +00:21:56,090 --> 00:21:59,270 +unsubscribe, we want to do a tag called public + +347 +00:21:59,270 --> 00:22:05,230 +void publish. It takes a bus message. + +348 +00:22:08,300 --> 00:22:10,920 +What is this statement publish? This is at the + +349 +00:22:10,920 --> 00:22:12,520 +execution of this gate. What do they want to send + +350 +00:22:12,520 --> 00:22:15,240 +to them? They will go to the bus and tell him + +351 +00:22:15,240 --> 00:22:19,380 +what? Publish and send him the message. That is, + +352 +00:22:19,460 --> 00:22:21,940 +this statement publish is at the execution. + +353 +00:22:22,140 --> 00:22:25,780 +Everyone wants to send a message to others, go to + +354 +00:22:25,780 --> 00:22:28,980 +the bus and tell him what? Tell him publish. And + +355 +00:22:28,980 --> 00:22:30,760 +the data they want to send, they want to wrap it + +356 +00:22:30,760 --> 00:22:35,890 +up as what? As a bus message. Okay? Did you get + +357 +00:22:35,890 --> 00:22:38,170 +it? The message has reached the bus. What does the + +358 +00:22:38,170 --> 00:22:40,330 +bus want to do? It wants to make a loop on the + +359 +00:22:40,330 --> 00:22:44,250 +subscribers. And tell them what? Take the data. So + +360 +00:22:44,250 --> 00:22:51,170 +it wants to say to each subscriber, S, in + +361 +00:22:51,170 --> 00:22:58,350 +subscribers. Yes, see what I want to do, F s does + +362 +00:22:58,350 --> 00:23:03,870 +not equal message dot get sender. + +363 +00:23:07,560 --> 00:23:13,080 +You type in s.messagereceived. + +364 +00:23:13,080 --> 00:23:16,720 +This is in python, I thought I would write it in + +365 +00:23:16,720 --> 00:23:19,380 +python. Ok, for every subscriber, s is present in + +366 +00:23:19,380 --> 00:23:23,540 +subscribers because the idea is that we received a + +367 +00:23:23,540 --> 00:23:25,220 +message, I am supposed to send it to others + +368 +00:23:25,220 --> 00:23:27,600 +without returning it to the one I sent it to, + +369 +00:23:27,680 --> 00:23:29,940 +right or not? because I found the A sent a message + +370 +00:23:29,940 --> 00:23:33,880 +to the bus. He doesn't want to act stupid, he wants + +371 +00:23:33,880 --> 00:23:36,380 +to think about the message that came, he wants to + +372 +00:23:36,380 --> 00:23:38,640 +send it to B, C and D without returning it to A, + +373 +00:23:38,820 --> 00:23:42,180 +right or wrong? So when the message came to me, I + +374 +00:23:42,180 --> 00:23:46,080 +said to him, by God, let's do subscribers, okay? + +375 +00:23:46,260 --> 00:23:50,060 +So, for each subscriber, if it is not the sender, + +376 +00:23:51,060 --> 00:23:52,440 +what should I do? I should send a message + +377 +00:23:52,440 --> 00:23:56,680 +received, in order to send to each number that + +378 +00:23:56,680 --> 00:24:02,150 +sent the message. This way the bus is ready, ready + +379 +00:24:02,150 --> 00:24:05,370 +how to register in it, ready how to cancel the + +380 +00:24:05,370 --> 00:24:11,030 +registration and ready how to publish a message to + +381 +00:24:11,030 --> 00:24:16,750 +it. But we haven't used the bus yet, where are we + +382 +00:24:16,750 --> 00:24:19,250 +going to use it? In the mail, again I went to the + +383 +00:24:19,250 --> 00:24:23,990 +mail. These guys want to send data to each other. + +384 +00:24:23,990 --> 00:24:27,070 +And I don't know who wants to send data to whom. + +385 +00:24:27,070 --> 00:24:31,030 +The first step is that these guys have to register + +386 +00:24:31,030 --> 00:24:34,250 +in the bus. How do they register in the bus? They + +387 +00:24:34,250 --> 00:24:36,890 +have to go to the data bus. This is not a singleton + +388 +00:24:36,890 --> 00:24:40,990 +server. And I say get instance, and I say here + +389 +00:24:40,990 --> 00:24:52,870 +subscribe, and I want to register A, B, C and D. This + +390 +00:24:52,870 --> 00:24:55,950 +is A and B and C and D. This is a step that we + +391 +00:24:55,950 --> 00:24:58,410 +have to do. Everyone has to register and connect + +392 +00:24:58,410 --> 00:25:00,450 +with the bus. Of course, there will be errors + +393 +00:25:00,450 --> 00:25:03,810 +because they will say that they want to register + +394 +00:25:03,810 --> 00:25:07,850 +and you have to come as a subscriber. So, I will go + +395 +00:25:07,850 --> 00:25:12,220 +to each one and tell him to implement subscriber + +396 +00:25:12,220 --> 00:25:15,540 +as soon as you do implement for subscriber it will + +397 +00:25:15,540 --> 00:25:19,680 +tell you to do import and do what? the method + +398 +00:25:19,680 --> 00:25:26,300 +which name is what? message received, okay? Notice + +399 +00:25:26,300 --> 00:25:29,240 +that this A receives a message from a kind of bus + +400 +00:25:29,240 --> 00:25:32,840 +message, okay? Did you find here the A means what I + +401 +00:25:32,840 --> 00:25:35,260 +want to do? I want to print a message. I want to + +402 +00:25:35,260 --> 00:25:39,860 +tell him, A received + +403 +00:25:43,720 --> 00:25:47,240 +message.getdata. I want to type the message that + +404 +00:25:47,240 --> 00:25:50,180 +came to me, and I want to tell him, from. I want to + +405 +00:25:50,180 --> 00:25:53,220 +determine where the message came from because the + +406 +00:25:53,220 --> 00:25:55,580 +message does not have a sender. I want to tell him + +407 +00:25:55,580 --> 00:26:00,820 +message.get sender. I want to see the type of class. + +408 +00:26:00,820 --> 00:26:03,960 +get class, get name in order to know what type of + +409 +00:26:03,960 --> 00:26:12,650 +sender it is. The same thing I did in A. Begin doing + +410 +00:26:12,650 --> 00:26:16,710 +it in + +411 +00:26:16,710 --> 00:26:23,390 +the B, and the C, and the D. Begin + +412 +00:26:23,390 --> 00:26:30,850 +doing it + +413 +00:26:30,850 --> 00:26:35,230 +in the B and the C and the D. Begin doing + +4 + +445 +00:29:03,480 --> 00:29:05,260 +message is supposed to be sent to whom? To + +446 +00:29:05,260 --> 00:29:08,880 +everyone. Did you find this method send to all? It + +447 +00:29:08,880 --> 00:29:13,250 +should be available for whom? فى الكل تمام فى ال B + +448 +00:29:13,250 --> 00:29:20,790 +هى بس نسختها وحطيتها هنا و + +449 +00:29:20,790 --> 00:29:29,150 +فى ال C و + +450 +00:29:29,150 --> 00:29:36,750 +هى فى ال D تمام + +451 +00:29:36,750 --> 00:29:41,370 +خلصنا هيك تعالى الان sin to all look what will + +452 +00:29:41,370 --> 00:29:45,790 +happen hello to send to all run and look what is + +453 +00:29:45,790 --> 00:29:48,310 +printed on the screen what did it write? B + +454 +00:29:48,310 --> 00:29:53,030 +received hello, C received hello, D received hello + +455 +00:29:53,030 --> 00:29:59,730 +now we want C to send to others C dot send to all + +456 +00:29:59,730 --> 00:30:06,250 +hi hi B should receive A, B and D right? run + +457 +00:30:11,600 --> 00:30:13,280 +Of course, the first one to receive it is the one + +458 +00:30:13,280 --> 00:30:14,620 +who sent the message, the one who sent it is A + +459 +00:30:14,620 --> 00:30:18,080 +Now, C sent it, A accepted it, B accepted it, and + +460 +00:30:18,080 --> 00:30:20,880 +D accepted it So now, everything is sent to + +461 +00:30:20,880 --> 00:30:23,880 +everything without needing any complications There + +462 +00:30:23,880 --> 00:30:25,980 +is a new element that wants to join with them, + +463 +00:30:26,040 --> 00:30:29,120 +send and accept it All you have to do is create a + +464 +00:30:29,120 --> 00:30:31,420 +new class for the new element, implement + +465 +00:30:31,420 --> 00:30:33,860 +subscriber, and register it in the bus The bus + +466 +00:30:33,860 --> 00:30:38,420 +will not change at all now, okay? And you can take + +467 +00:30:38,420 --> 00:30:41,550 +the bus if you made this application, okay? and + +468 +00:30:41,550 --> 00:30:43,130 +you have elements that you want to send to each + +469 +00:30:43,130 --> 00:30:45,990 +other and you take only this class and you put it + +470 +00:30:45,990 --> 00:30:49,470 +in your application and you use it. In fact, when + +471 +00:30:49,470 --> 00:30:52,110 +I was working on Android, there were times when + +472 +00:30:52,110 --> 00:30:54,010 +there were libraries made on GitHub made by whom? + +473 +00:30:54,610 --> 00:30:57,090 +This data bus wants you to send between your + +474 +00:30:57,090 --> 00:31:00,450 +elements, use this library. Did you make the + +475 +00:31:00,450 --> 00:31:03,530 +library here? We did it in the lecture. This sends + +476 +00:31:03,530 --> 00:31:08,330 +to all the other elements.Now you can ask me, + +477 +00:31:08,630 --> 00:31:11,270 +sometimes A wants to send a message to B, but + +478 +00:31:11,270 --> 00:31:13,770 +doesn't send a message to the other two, there is + +479 +00:31:13,770 --> 00:31:15,010 +no one who sends a message to only one element, + +480 +00:31:15,610 --> 00:31:18,290 +you have to send a message to everyone, but then B + +481 +00:31:18,290 --> 00:31:23,290 +decides whether to receive the message or not, for + +482 +00:31:23,290 --> 00:31:26,190 +example, we can say that if C receives a message + +483 +00:31:26,190 --> 00:31:29,320 +from A, Ignore it, for example. That's it. The sem + +484 +00:31:29,320 --> 00:31:31,880 +doesn't mean it takes messages from whom? From + +485 +00:31:31,880 --> 00:31:35,140 +what? So it can do it this way. It can come before + +486 +00:31:35,140 --> 00:31:38,360 +it executes, it sees the message. If the message, + +487 +00:31:39,180 --> 00:31:45,600 +okay, get sender, get class, get .. or whatever. + +488 +00:31:45,840 --> 00:31:51,960 +If the sender is an instance of what? Okay. + +489 +00:31:55,400 --> 00:31:59,620 +for example ignore, don't do anything else, do + +490 +00:31:59,620 --> 00:32:04,660 +this thing or you can do not if it's not .. here I + +491 +00:32:04,660 --> 00:32:07,180 +told him if it's a here I'll tell him to do + +492 +00:32:07,180 --> 00:32:14,920 +nothing yes, what is this here? c does nothing to + +493 +00:32:14,920 --> 00:32:19,180 +enter the c so when you get a message from a he + +494 +00:32:19,180 --> 00:32:22,480 +will not do anything if I run this A sends a + +495 +00:32:22,480 --> 00:32:27,120 +message if C receives a message from A what does C + +496 +00:32:27,120 --> 00:32:31,200 +do? C does nothing this is one solution the other + +497 +00:32:31,200 --> 00:32:34,960 +solution is that you can specialize the messages + +498 +00:32:34,960 --> 00:32:40,520 +for example this is the financial department BGA + +499 +00:32:40,520 --> 00:32:43,640 +wants to send a financial message to whom? to the + +500 +00:32:43,640 --> 00:32:45,500 +financial department BGA makes a message of + +501 +00:32:45,500 --> 00:32:50,210 +finance message type and the finance message, all + +502 +00:32:50,210 --> 00:32:53,210 +the others check if the message is finance, if it + +503 +00:32:53,210 --> 00:32:55,190 +is finance, you don't receive it and this one says + +504 +00:32:55,190 --> 00:32:57,370 +if it is finance, you don't receive it, if it is + +505 +00:32:57,370 --> 00:33:00,770 +finance, you receive it how do we do this thing? + +506 +00:33:01,210 --> 00:33:06,390 +nothing, I don't have a class called bus message I + +507 +00:33:06,390 --> 00:33:09,970 +can make a new message called finance message, + +508 +00:33:10,030 --> 00:33:12,750 +this is a new class and I say this finance message + +509 +00:33:12,750 --> 00:33:21,380 +extends bus message and here also make it T and + +510 +00:33:21,380 --> 00:33:25,360 +here also T you can add new attributes specific to + +511 +00:33:25,360 --> 00:33:31,220 +whom in this message this message is related to + +512 +00:33:31,220 --> 00:33:34,620 +financial matters which should be followed only by + +513 +00:33:34,620 --> 00:33:39,520 +D now A wants to send a financial message instead + +514 +00:33:39,520 --> 00:33:42,680 +of getting an object from a bus message it gets an + +515 +00:33:42,680 --> 00:33:44,840 +object from finance message + +516 +00:33:47,530 --> 00:33:51,590 +high finance message. So you have to specify what + +517 +00:33:51,590 --> 00:33:56,190 +message you want to send. Now, who is supposed to + +518 +00:33:56,190 --> 00:34:00,400 +receive this message? Religion. D checks the + +519 +00:34:00,400 --> 00:34:05,380 +message, if in the end the method message received + +520 +00:34:05,380 --> 00:34:09,040 +receives a bus message, bus message means any kind + +521 +00:34:09,040 --> 00:34:11,680 +of subclass that you receive, but what do I do + +522 +00:34:11,680 --> 00:34:14,500 +here? I check if the message is an instance of + +523 +00:34:14,500 --> 00:34:22,590 +finance message هنا إيش بده يعمل؟ بده يستقبلها و + +524 +00:34:22,590 --> 00:34:27,050 +يعالجها تمام؟ أو حتى بده يكتب this is a final + +525 +00:34:27,050 --> 00:34:33,330 +finance messageThe rest should do what? If it's a + +526 +00:34:33,330 --> 00:34:36,550 +finance message, what should it do? Ignore it. + +527 +00:34:37,410 --> 00:34:39,390 +That's it. That's the idea. You can specialize + +528 +00:34:39,390 --> 00:34:42,530 +that the sender should receive the message. + +529 +00:34:42,630 --> 00:34:46,290 +Depending on the sender, if I get from A, I don't + +530 +00:34:46,290 --> 00:34:49,470 +have a meaning in A. I have a meaning only in B. D + +531 +00:34:49,470 --> 00:34:52,070 +has a meaning in B, for example. Through the + +532 +00:34:52,070 --> 00:34:55,910 +sender to distinguish. Or through specializing the + +533 +00:34:55,910 --> 00:34:59,130 +message.Okay, each person, each component receives + +534 +00:34:59,130 --> 00:35:02,030 +a specific type of message and delivers it by + +535 +00:35:02,030 --> 00:35:04,570 +using it. But in the end, the bus doesn't + +536 +00:35:04,570 --> 00:35:07,230 +understand. What does the bus do? It distributes + +537 +00:35:07,230 --> 00:35:08,930 +to all the elements that determine whether you + +538 +00:35:08,930 --> 00:35:10,630 +receive it or not. You can go to the point where + +539 +00:35:10,630 --> 00:35:13,330 +they say, well, security means that you delivered + +540 +00:35:13,330 --> 00:35:15,170 +the message like that, maybe they take the + +541 +00:35:15,170 --> 00:35:17,490 +information. We don't deal with distributed + +542 +00:35:17,490 --> 00:35:20,830 +systems and the internet. They are all elements in + +543 +00:35:20,830 --> 00:35:23,610 +the same network. Okay, there is no security. I am + +544 +00:35:23,610 --> 00:35:25,270 +the one who made them all and they are all present + +545 +00:35:25,270 --> 00:35:30,850 +together. Okay? Is the idea clear, guys? Okay, + +546 +00:35:30,930 --> 00:35:37,130 +let's move on to the slide, okay? Now, the data + +547 +00:35:37,130 --> 00:35:41,010 +bus, its goal, allows to send messages, events + +548 +00:35:41,010 --> 00:35:44,430 +between components of an application. It allows + +549 +00:35:44,430 --> 00:35:48,210 +sending messages or events between components in + +550 +00:35:48,210 --> 00:35:51,130 +your application without them needing to know + +551 +00:35:51,130 --> 00:35:54,650 +about each other.What does it mean? Notice that A, + +552 +00:35:54,810 --> 00:35:56,730 +B, C and D don't know anything about each other. + +553 +00:35:57,450 --> 00:36:00,950 +The link between them is the bus. That's why it + +554 +00:36:00,950 --> 00:36:06,090 +became easier. Okay? No one needs to be like the + +555 +00:36:06,090 --> 00:36:07,990 +observer, because these don't register with this + +556 +00:36:07,990 --> 00:36:10,590 +and these don't register with this. No, it's over. + +557 +00:36:11,190 --> 00:36:14,850 +The link between them is the bus. He acted like + +558 +00:36:14,850 --> 00:36:17,070 +the observer, but I made the observer independent + +559 +00:36:17,070 --> 00:36:20,230 +here, an element in the middle. without them + +560 +00:36:20,230 --> 00:36:23,270 +needing to know about each other they only need to + +561 +00:36:23,270 --> 00:36:25,950 +know about the type of the message even being sent + +562 +00:36:25,950 --> 00:36:30,010 +meaning that I just pick up the message and send + +563 +00:36:30,010 --> 00:36:33,130 +it to them and the future sees what kind of + +564 +00:36:33,130 --> 00:36:34,690 +message it is if it has a meaning to it, it takes + +565 +00:36:34,690 --> 00:36:36,410 +it if it doesn't have a meaning to it, it leaves + +566 +00:36:36,410 --> 00:36:42,170 +it he did like the observer pattern but means to a + +567 +00:36:42,170 --> 00:36:46,630 +supporting money to money communication + +568 +00:36:46,630 --> 00:36:51,000 +applicability when we use itUse data bus pattern + +569 +00:36:51,000 --> 00:36:53,720 +when you want your components to decide themselves + +570 +00:36:53,720 --> 00:36:59,580 +which messages even they want to receive يعني زي + +571 +00:36:59,580 --> 00:37:02,940 +ما شفنا أنه بدك أنت تبعت رسائل للجميع وكل عنصر + +572 +00:37:02,940 --> 00:37:06,680 +يحدد هو يستقبل الرسالة أو لاBased on the type of + +573 +00:37:06,680 --> 00:37:09,620 +message or sender for example You want to have + +574 +00:37:09,620 --> 00:37:11,800 +many-to-many communication, this is the main goal + +575 +00:37:11,800 --> 00:37:13,980 +that we use in the data bus You want your + +576 +00:37:13,980 --> 00:37:16,660 +components to know nothing about each other You + +577 +00:37:16,660 --> 00:37:18,480 +don't want to make complications that this must + +578 +00:37:18,480 --> 00:37:21,780 +have a reference from the three monkeys and so on + +579 +00:37:21,780 --> 00:37:24,140 +This is how we will enter into a big complexity of + +580 +00:37:24,140 --> 00:37:26,400 +the code All of them send each other without + +581 +00:37:26,400 --> 00:37:28,460 +knowing anything about each other They only know + +582 +00:37:28,460 --> 00:37:33,650 +about the data bus Because this is the scenario in + +583 +00:37:33,650 --> 00:37:35,810 +which we apply the data bus. This is the bus. + +584 +00:37:36,250 --> 00:37:39,130 +Because this application, for example, supports a + +585 +00:37:39,130 --> 00:37:41,870 +shopping website. Okay? If you find a shopping + +586 +00:37:41,870 --> 00:37:43,070 +website, this is the shopping application. From + +587 +00:37:43,070 --> 00:37:45,830 +here, the client chooses the product. Of course, + +588 +00:37:45,970 --> 00:37:48,470 +we have a database where we record the records. + +589 +00:37:48,550 --> 00:37:50,090 +What was sold, what was published, what orders + +590 +00:37:50,090 --> 00:37:52,550 +were made. We have an inventory system responsible + +591 +00:37:52,550 --> 00:37:54,970 +for the warehouse and the elements in it. How much + +592 +00:37:54,970 --> 00:37:56,170 +remained in the warehouse after it was published + +593 +00:37:56,170 --> 00:37:59,180 +and so on. I have a financial reporting department + +594 +00:37:59,180 --> 00:38:03,540 +that sends invoices, reports, and performs the + +595 +00:38:03,540 --> 00:38:06,340 +purchase and sale process. I also have a component + +596 +00:38:06,340 --> 00:38:09,800 +responsible for sending emails. Because in an + +597 +00:38:09,800 --> 00:38:12,080 +application like this, these components are + +598 +00:38:12,080 --> 00:38:15,040 +supposed to send and receive from each other. That + +599 +00:38:15,040 --> 00:38:17,000 +is, any order process that takes place here in the + +600 +00:38:17,000 --> 00:38:19,940 +application, there should be an update in the + +601 +00:38:19,940 --> 00:38:22,520 +warehouse to reduce the existing quantity. There + +602 +00:38:22,520 --> 00:38:24,560 +should be an update or a message to the financial + +603 +00:38:24,560 --> 00:38:26,160 +department that there is a new order for work. + +604 +00:38:27,210 --> 00:38:29,730 +There should be a change in the records on the + +605 +00:38:29,730 --> 00:38:32,710 +database Notifications should be sent to the + +606 +00:38:32,710 --> 00:38:35,310 +financial department and to the user that you made + +607 +00:38:35,310 --> 00:38:37,490 +an order, and so on And the same thing happens if + +608 +00:38:37,490 --> 00:38:39,890 +the bill is withdrawn from the financial + +609 +00:38:39,890 --> 00:38:42,720 +department It is supposed to send a message to the + +610 +00:38:42,720 --> 00:38:44,720 +email notifications so that it sends an email to + +611 +00:38:44,720 --> 00:38:47,420 +whom? To the user. It is supposed to send a + +612 +00:38:47,420 --> 00:38:49,340 +message to the application to update the interface + +613 +00:38:49,340 --> 00:38:51,960 +and send a message through the application. It is + +614 +00:38:51,960 --> 00:38:54,620 +supposed to update where? In the database. So + +615 +00:38:54,620 --> 00:38:56,760 +anyone who changes it is supposed to notify whom? + +616 +00:38:57,240 --> 00:38:59,540 +Others. So the simplest way, since everything is + +617 +00:38:59,540 --> 00:39:01,300 +supposed to communicate with everything, is to + +618 +00:39:01,300 --> 00:39:06,520 +make an email to the data bus. In the last slide, + +619 +00:39:06,580 --> 00:39:11,740 +we see The shape of the UML diagram of the data bus + +620 +00:39:11,740 --> 00:39:16,320 +pattern means that this drawing applies an example + +621 +00:39:16,320 --> 00:39:19,780 +to the data bus pattern. Let's follow it. Because + +622 +00:39:19,780 --> 00:39:22,200 +where is the class of the data bus? Here it is. Do + +623 +00:39:22,200 --> 00:39:26,040 +you see it? This is the class of the data bus.This + +624 +00:39:26,040 --> 00:39:31,760 +database class is made as a singleton, it is an + +625 +00:39:31,760 --> 00:39:36,880 +instance of a database and it is private + +626 +00:39:42,210 --> 00:39:44,610 +this is the constructor, but this constructor is + +627 +00:39:44,610 --> 00:39:49,830 +supposed to be private to apply singleton and this + +628 +00:39:49,830 --> 00:39:53,330 +is a delegate instance which returns a data bus + +629 +00:39:53,330 --> 00:39:59,710 +and then it has a list of membersIt's like a list + +630 +00:39:59,710 --> 00:40:03,490 +of subscribers, but it's called member here And + +631 +00:40:03,490 --> 00:40:08,050 +member is an interface, okay? Of course, we made + +632 +00:40:08,050 --> 00:40:11,310 +the interface inside the class Of course, in UML, + +633 +00:40:11,470 --> 00:40:13,830 +when you put a class inside another class, you + +634 +00:40:13,830 --> 00:40:15,830 + + +667 +00:42:02,690 --> 00:42:06,470 +an exam from it, the main message is called data + +668 +00:42:06,470 --> 00:42:09,810 +type, and what type is it? Interface, okay, so he + +669 +00:42:09,810 --> 00:42:14,280 +made an interface. So he made a method called + +670 +00:42:14,280 --> 00:42:17,520 +getDatabase and setDatabase. Of course, the message + +671 +00:42:17,520 --> 00:42:20,460 +that I made in my example did not send the + +672 +00:42:20,460 --> 00:42:25,260 +database. I sent data and sender. It was different, + +673 +00:42:25,420 --> 00:42:30,610 +it sent the whole database. You are free to decide + +674 +00:42:30,610 --> 00:42:33,110 +what you want to send. I prefer that you send the + +675 +00:42:33,110 --> 00:42:36,110 +data in a basic way, and you can put the password. + +676 +00:42:36,530 --> 00:42:38,830 +You must send the password so that the message + +677 +00:42:38,830 --> 00:42:41,110 +does not return to the password again. It is not + +678 +00:42:41,110 --> 00:42:45,510 +just the data to publish. He wants to see who sent + +679 +00:42:45,510 --> 00:42:46,670 +the message to him so that the message does not + +680 +00:42:46,670 --> 00:42:49,490 +return to him again. So the password must be put + +681 +00:42:49,490 --> 00:42:52,280 +in it. Because it is in his application, it + +682 +00:42:52,280 --> 00:42:54,480 +follows another way, it is not a problem. Because + +683 +00:42:54,480 --> 00:42:56,580 +the data type interface made of it an abstract + +684 +00:42:56,580 --> 00:43:01,100 +class called AbstractDataType + +685 +00:43:01,100 --> 00:43:07,400 +And this AbstractDataType made of it subclasses, + +686 +00:43:07,460 --> 00:43:09,220 +which are the messages. Called, for example, + +687 +00:43:09,320 --> 00:43:13,660 +MessageData, which takes this string. This, for + +688 +00:43:13,660 --> 00:43:16,920 +example, Starting and Stopping Data takes a date, + +689 +00:43:17,160 --> 00:43:22,000 +a time. This is like an attribute that is enclosed + +690 +00:43:22,000 --> 00:43:24,200 +inside a message. This is the content of the + +691 +00:43:24,200 --> 00:43:27,300 +message. Meaning that all of these are types of + +692 +00:43:27,300 --> 00:43:31,340 +messages, and each one has a different content. And + +693 +00:43:31,340 --> 00:43:35,400 +these are the constructors and getters. They + +694 +00:43:35,400 --> 00:43:38,240 +extended this. Because in the example I made, it + +695 +00:43:38,240 --> 00:43:39,320 +is simpler than that. I did not make this + +696 +00:43:39,320 --> 00:43:42,740 +interface. I immediately made what? I made a class + +697 +00:43:42,740 --> 00:43:48,540 +and made subclasses from it. This is optional, you + +698 +00:43:48,540 --> 00:43:52,960 +can arrange it however you want, but the basis of + +699 +00:43:52,960 --> 00:43:57,680 +this diagram is the class of the database and the + +700 +00:43:57,680 --> 00:44:02,220 +member interface and the message class. All of them + +701 +00:44:02,220 --> 00:44:09,520 +I made them in one file. And these + +702 +00:44:09,520 --> 00:44:12,460 +are the subscribers. I named them from outside + +703 +00:44:12,460 --> 00:44:14,600 +because this is the application class, which is + +704 +00:44:14,600 --> 00:44:16,780 +like the main class that I made, in which I + +705 +00:44:16,780 --> 00:44:19,500 +created all the objects and made them send each + +706 +00:44:19,500 --> 00:44:23,310 +other. This example is clear, guys. The importance + +707 +00:44:23,310 --> 00:44:25,370 +of the data bus is clear. It is similar to the + +708 +00:44:25,370 --> 00:44:28,450 +observer, but as I said, the summary is used in + +709 +00:44:28,450 --> 00:44:32,090 +the case of many-to-many. Everyone wants to + +710 +00:44:32,090 --> 00:44:34,010 +communicate with everyone. The application of the + +711 +00:44:34,010 --> 00:44:36,610 +observer is complicated, but the data bus, because + +712 +00:44:36,610 --> 00:44:38,150 +it is an elliptical element in the middle, + +713 +00:44:38,550 --> 00:44:40,930 +independent of them, becomes easy. Send to the + +714 +00:44:40,930 --> 00:44:43,410 +bus, and the bus sends the message to everyone. + +715 +00:44:43,830 --> 00:44:46,420 +Because the receiver determines he will receive + +716 +00:44:46,420 --> 00:44:48,960 +the message or not based on the sender or based on + +717 +00:44:48,960 --> 00:44:52,080 +the type of message that you can specify as you + +718 +00:44:52,080 --> 00:44:56,600 +want. Okay, calm down guys. Okay, I also downloaded + +719 +00:44:56,600 --> 00:45:02,440 +yesterday, it's a must, okay? on the data bus and + +720 +00:45:02,440 --> 00:45:05,440 +on the observer. I uploaded a video to the + +721 +00:45:05,440 --> 00:45:08,450 +observer. It will show you how the required things + +722 +00:45:08,450 --> 00:45:12,890 +look like in the course. The database explanation + +723 +00:45:12,890 --> 00:45:16,890 +of the course is available at the end of the + +724 +00:45:16,890 --> 00:45:19,250 +recorded lecture on Moodle. It's not going to be + +725 +00:45:19,250 --> 00:45:21,450 +available on the channel. It's going to be + +726 +00:45:21,450 --> 00:45:23,010 +available on Moodle. Not on Moodle, there are also + +727 +00:45:23,010 --> 00:45:25,290 +links to the lectures. It's been recorded since the + +728 +00:45:25,290 --> 00:45:28,090 +days of Corona. So you go to the end of the + +729 +00:45:28,090 --> 00:45:31,360 +lecture, you will find an explanation question. The + +730 +00:45:31,360 --> 00:45:33,140 +duty that is required for the part of the data + +731 +00:45:33,140 --> 00:45:35,700 +bus. So it is two branches of the question. One + +732 +00:45:35,700 --> 00:45:38,520 +for the observer, and one for whom? For the data + +733 +00:45:38,520 --> 00:45:42,840 +bus. Yes, seven days. + +734 +00:45:45,290 --> 00:45:47,170 +It's not going to beat you. No, it's by mistake, + +735 +00:45:47,270 --> 00:45:49,670 +okay? Actually, the data bus, did you see the + +736 +00:45:49,670 --> 00:45:52,250 +class that I made? Take it and put it in the + +737 +00:45:52,250 --> 00:45:54,250 +application, it will work. That's it, this data + +738 +00:45:54,250 --> 00:45:57,690 +bus, this class that I made, you can use it in any + +739 +00:45:57,690 --> 00:45:59,450 +application. I mean, it's not going to beat you. + +740 +00:46:00,370 --> 00:46:01,150 +Okay, guys? + +741 +00:46:04,130 --> 00:46:05,650 +Yes, the application of the data bus and the + +742 +00:46:05,650 --> 00:46:08,630 +observer, but on the application of GUI, okay? + +743 +00:46:11,050 --> 00:46:12,130 +Okay, thank you guys. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V2vuTWQOwJs_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V2vuTWQOwJs_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..8373b785adda5c05019b69e0e6e32617ca8ffdcc --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V2vuTWQOwJs_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 2769, "start": 4.93, "end": 27.69, "text": " In the name of God, Most Gracious, Most Merciful. We will start today with a new design pattern. Let me open the slides. It is called the Observer.", "tokens": [682, 264, 1315, 295, 1265, 11, 4534, 20586, 851, 11, 4534, 18897, 2069, 13, 492, 486, 722, 965, 365, 257, 777, 1715, 5102, 13, 961, 385, 1269, 264, 9788, 13, 467, 307, 1219, 264, 20707, 38241, 13], "avg_logprob": -0.4023437468629134, "compression_ratio": 1.2436974789915967, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 4.93, "end": 5.35, "word": " In", "probability": 0.1534423828125}, {"start": 5.35, "end": 5.73, "word": " the", "probability": 0.86474609375}, {"start": 5.73, "end": 5.73, "word": " name", "probability": 0.7890625}, {"start": 5.73, "end": 5.81, "word": " of", "probability": 0.97705078125}, {"start": 5.81, "end": 5.91, "word": " God,", "probability": 0.5595703125}, {"start": 5.95, "end": 6.31, "word": " Most", "probability": 0.3056640625}, {"start": 6.31, "end": 6.31, "word": " Gracious,", "probability": 0.834716796875}, {"start": 6.31, "end": 6.31, "word": " Most", "probability": 0.89794921875}, {"start": 6.31, "end": 6.53, "word": " Merciful.", "probability": 0.949462890625}, {"start": 7.53, "end": 8.25, "word": " We", "probability": 0.336669921875}, {"start": 8.25, "end": 8.37, "word": " will", "probability": 0.58251953125}, {"start": 8.37, "end": 8.59, "word": " start", "probability": 0.73681640625}, {"start": 8.59, "end": 9.27, "word": " today", "probability": 0.5712890625}, {"start": 9.27, "end": 9.59, "word": " with", "probability": 0.64111328125}, {"start": 9.59, "end": 10.65, "word": " a", "probability": 0.9375}, {"start": 10.65, "end": 10.65, "word": " new", "probability": 0.88037109375}, {"start": 10.65, "end": 10.99, "word": " design", "probability": 0.75048828125}, {"start": 10.99, "end": 11.99, "word": " pattern.", "probability": 0.8671875}, {"start": 13.09, "end": 13.81, "word": " Let", "probability": 0.6923828125}, {"start": 13.81, "end": 13.95, "word": " me", "probability": 0.927734375}, {"start": 13.95, "end": 14.35, "word": " open", "probability": 0.5380859375}, {"start": 14.35, "end": 14.63, "word": " the", "probability": 0.748046875}, {"start": 14.63, "end": 15.23, "word": " slides.", "probability": 0.953125}, {"start": 25.61, "end": 26.33, "word": " It", "probability": 0.39208984375}, {"start": 26.33, "end": 26.51, "word": " is", "probability": 0.69873046875}, {"start": 26.51, "end": 26.87, "word": " called", "probability": 0.7822265625}, {"start": 26.87, "end": 27.11, "word": " the", "probability": 0.482177734375}, {"start": 27.11, "end": 27.69, "word": " Observer.", "probability": 0.813720703125}], "temperature": 1.0}, {"id": 2, "seek": 4625, "start": 29.99, "end": 46.25, "text": "design pattern, excuse me, the data bus design pattern In the previous lecture, we took a design pattern, one of the most important design patterns, which is the observer And we said that the observer's main interest is to reduce the coupling between objects that need to communicate with each other", "tokens": [14792, 788, 5102, 11, 8960, 385, 11, 264, 1412, 1255, 1715, 5102, 682, 264, 3894, 7991, 11, 321, 1890, 257, 1715, 5102, 11, 472, 295, 264, 881, 1021, 1715, 8294, 11, 597, 307, 264, 27878, 400, 321, 848, 300, 264, 27878, 311, 2135, 1179, 307, 281, 5407, 264, 37447, 1296, 6565, 300, 643, 281, 7890, 365, 1184, 661], "avg_logprob": -0.45180085452936464, "compression_ratio": 1.7383720930232558, "no_speech_prob": 7.152557373046875e-06, "words": [{"start": 29.99, "end": 30.47, "word": "design", "probability": 0.5506591796875}, {"start": 30.47, "end": 30.81, "word": " pattern,", "probability": 0.71337890625}, {"start": 31.27, "end": 31.45, "word": " excuse", "probability": 0.178466796875}, {"start": 31.45, "end": 31.59, "word": " me,", "probability": 0.9384765625}, {"start": 31.67, "end": 31.71, "word": " the", "probability": 0.5458984375}, {"start": 31.71, "end": 31.91, "word": " data", "probability": 0.462890625}, {"start": 31.91, "end": 32.19, "word": " bus", "probability": 0.3583984375}, {"start": 32.19, "end": 32.49, "word": " design", "probability": 0.8876953125}, {"start": 32.49, "end": 32.87, "word": " pattern", "probability": 0.86328125}, {"start": 32.87, "end": 33.85, "word": " In", "probability": 0.22216796875}, {"start": 33.85, "end": 34.03, "word": " the", "probability": 0.74951171875}, {"start": 34.03, "end": 34.03, "word": " previous", "probability": 0.432373046875}, {"start": 34.03, "end": 34.63, "word": " lecture,", "probability": 0.828125}, {"start": 34.83, "end": 34.83, "word": " we", "probability": 0.9306640625}, {"start": 34.83, "end": 35.05, "word": " took", "probability": 0.337890625}, {"start": 35.05, "end": 35.27, "word": " a", "probability": 0.406494140625}, {"start": 35.27, "end": 35.51, "word": " design", "probability": 0.83544921875}, {"start": 35.51, "end": 35.85, "word": " pattern,", "probability": 0.87744140625}, {"start": 35.85, "end": 35.99, "word": " one", "probability": 0.7490234375}, {"start": 35.99, "end": 36.05, "word": " of", "probability": 0.96484375}, {"start": 36.05, "end": 36.37, "word": " the", "probability": 0.9130859375}, {"start": 36.37, "end": 36.37, "word": " most", "probability": 0.79443359375}, {"start": 36.37, "end": 36.37, "word": " important", "probability": 0.85107421875}, {"start": 36.37, "end": 36.91, "word": " design", "probability": 0.73876953125}, {"start": 36.91, "end": 37.29, "word": " patterns,", "probability": 0.86181640625}, {"start": 37.43, "end": 37.43, "word": " which", "probability": 0.67626953125}, {"start": 37.43, "end": 37.55, "word": " is", "probability": 0.92041015625}, {"start": 37.55, "end": 37.65, "word": " the", "probability": 0.74267578125}, {"start": 37.65, "end": 38.07, "word": " observer", "probability": 0.7451171875}, {"start": 38.07, "end": 38.89, "word": " And", "probability": 0.289794921875}, {"start": 38.89, "end": 39.05, "word": " we", "probability": 0.7080078125}, {"start": 39.05, "end": 39.05, "word": " said", "probability": 0.71044921875}, {"start": 39.05, "end": 39.15, "word": " that", "probability": 0.83447265625}, {"start": 39.15, "end": 39.21, "word": " the", "probability": 0.82080078125}, {"start": 39.21, "end": 40.17, "word": " observer's", "probability": 0.666748046875}, {"start": 40.17, "end": 40.21, "word": " main", "probability": 0.61962890625}, {"start": 40.21, "end": 40.75, "word": " interest", "probability": 0.268310546875}, {"start": 40.75, "end": 41.23, "word": " is", "probability": 0.9013671875}, {"start": 41.23, "end": 41.33, "word": " to", "probability": 0.92236328125}, {"start": 41.33, "end": 41.67, "word": " reduce", "probability": 0.62890625}, {"start": 41.67, "end": 41.87, "word": " the", "probability": 0.383056640625}, {"start": 41.87, "end": 42.37, "word": " coupling", "probability": 0.97021484375}, {"start": 42.37, "end": 43.15, "word": " between", "probability": 0.84912109375}, {"start": 43.15, "end": 44.13, "word": " objects", "probability": 0.82470703125}, {"start": 44.13, "end": 45.05, "word": " that", "probability": 0.73193359375}, {"start": 45.05, "end": 45.41, "word": " need", "probability": 0.87890625}, {"start": 45.41, "end": 45.53, "word": " to", "probability": 0.7119140625}, {"start": 45.53, "end": 45.85, "word": " communicate", "probability": 0.86572265625}, {"start": 45.85, "end": 46.03, "word": " with", "probability": 0.79541015625}, {"start": 46.03, "end": 46.25, "word": " each", "probability": 0.931640625}, {"start": 46.25, "end": 46.25, "word": " other", "probability": 0.89892578125}], "temperature": 1.0}, {"id": 3, "seek": 7436, "start": 49.72, "end": 74.36, "text": "Especially if I have a relationship between objects one to many So the idea is that my object that wants to communicate with others, instead of knowing their types, in the end deals with them through some kind of interface So if I have three or four components that want to receive data from another object, they register this object through some kind of interface So now it stops knowing the types of these objects", "tokens": [20442, 2084, 498, 286, 362, 257, 2480, 1296, 6565, 472, 281, 867, 407, 264, 1558, 307, 300, 452, 2657, 300, 2738, 281, 7890, 365, 2357, 11, 2602, 295, 5276, 641, 3467, 11, 294, 264, 917, 11215, 365, 552, 807, 512, 733, 295, 9226, 407, 498, 286, 362, 1045, 420, 1451, 6677, 300, 528, 281, 4774, 1412, 490, 1071, 2657, 11, 436, 7280, 341, 2657, 807, 512, 733, 295, 9226, 407, 586, 309, 10094, 5276, 264, 3467, 295, 613, 6565], "avg_logprob": -0.530078136920929, "compression_ratio": 1.828193832599119, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 49.72, "end": 50.22, "word": "Especially", "probability": 0.5042266845703125}, {"start": 50.22, "end": 50.72, "word": " if", "probability": 0.404296875}, {"start": 50.72, "end": 51.0, "word": " I", "probability": 0.52294921875}, {"start": 51.0, "end": 51.34, "word": " have", "probability": 0.765625}, {"start": 51.34, "end": 52.4, "word": " a", "probability": 0.44189453125}, {"start": 52.4, "end": 52.68, "word": " relationship", "probability": 0.443603515625}, {"start": 52.68, "end": 52.9, "word": " between", "probability": 0.7255859375}, {"start": 52.9, "end": 53.34, "word": " objects", "probability": 0.8154296875}, {"start": 53.34, "end": 53.58, "word": " one", "probability": 0.57373046875}, {"start": 53.58, "end": 53.74, "word": " to", "probability": 0.8330078125}, {"start": 53.74, "end": 53.96, "word": " many", "probability": 0.92822265625}, {"start": 53.96, "end": 54.22, "word": " So", "probability": 0.1077880859375}, {"start": 54.22, "end": 57.08, "word": " the", "probability": 0.344482421875}, {"start": 57.08, "end": 58.44, "word": " idea", "probability": 0.64013671875}, {"start": 58.44, "end": 58.74, "word": " is", "probability": 0.81591796875}, {"start": 58.74, "end": 58.82, "word": " that", "probability": 0.83740234375}, {"start": 58.82, "end": 58.9, "word": " my", "probability": 0.7431640625}, {"start": 58.9, "end": 59.36, "word": " object", "probability": 0.76318359375}, {"start": 59.36, "end": 59.74, "word": " that", "probability": 0.25634765625}, {"start": 59.74, "end": 59.94, "word": " wants", "probability": 0.2406005859375}, {"start": 59.94, "end": 60.0, "word": " to", "probability": 0.96484375}, {"start": 60.0, "end": 60.3, "word": " communicate", "probability": 0.70166015625}, {"start": 60.3, "end": 60.46, "word": " with", "probability": 0.86083984375}, {"start": 60.46, "end": 61.0, "word": " others,", "probability": 0.7275390625}, {"start": 61.62, "end": 61.76, "word": " instead", "probability": 0.65234375}, {"start": 61.76, "end": 61.86, "word": " of", "probability": 0.9697265625}, {"start": 61.86, "end": 62.12, "word": " knowing", "probability": 0.7275390625}, {"start": 62.12, "end": 62.2, "word": " their", "probability": 0.86572265625}, {"start": 62.2, "end": 62.48, "word": " types,", "probability": 0.392333984375}, {"start": 62.72, "end": 62.72, "word": " in", "probability": 0.1383056640625}, {"start": 62.72, "end": 62.82, "word": " the", "probability": 0.89453125}, {"start": 62.82, "end": 62.98, "word": " end", "probability": 0.90869140625}, {"start": 62.98, "end": 63.3, "word": " deals", "probability": 0.252685546875}, {"start": 63.3, "end": 63.46, "word": " with", "probability": 0.89111328125}, {"start": 63.46, "end": 63.6, "word": " them", "probability": 0.8427734375}, {"start": 63.6, "end": 63.7, "word": " through", "probability": 0.32421875}, {"start": 63.7, "end": 63.88, "word": " some", "probability": 0.25048828125}, {"start": 63.88, "end": 63.88, "word": " kind", "probability": 0.5703125}, {"start": 63.88, "end": 63.9, "word": " of", "probability": 0.97314453125}, {"start": 63.9, "end": 64.42, "word": " interface", "probability": 0.86962890625}, {"start": 64.42, "end": 65.1, "word": " So", "probability": 0.357177734375}, {"start": 65.1, "end": 65.26, "word": " if", "probability": 0.450927734375}, {"start": 65.26, "end": 65.26, "word": " I", "probability": 0.974609375}, {"start": 65.26, "end": 65.38, "word": " have", "probability": 0.931640625}, {"start": 65.38, "end": 65.7, "word": " three", "probability": 0.52587890625}, {"start": 65.7, "end": 66.52, "word": " or", "probability": 0.6884765625}, {"start": 66.52, "end": 67.06, "word": " four", "probability": 0.9345703125}, {"start": 67.06, "end": 67.12, "word": " components", "probability": 0.8994140625}, {"start": 67.12, "end": 67.64, "word": " that", "probability": 0.69140625}, {"start": 67.64, "end": 67.84, "word": " want", "probability": 0.7626953125}, {"start": 67.84, "end": 67.84, "word": " to", "probability": 0.9638671875}, {"start": 67.84, "end": 68.22, "word": " receive", "probability": 0.78125}, {"start": 68.22, "end": 68.54, "word": " data", "probability": 0.763671875}, {"start": 68.54, "end": 68.72, "word": " from", "probability": 0.84521484375}, {"start": 68.72, "end": 68.82, "word": " another", "probability": 0.78662109375}, {"start": 68.82, "end": 69.36, "word": " object,", "probability": 0.97314453125}, {"start": 69.46, "end": 69.6, "word": " they", "probability": 0.79833984375}, {"start": 69.6, "end": 69.84, "word": " register", "probability": 0.489013671875}, {"start": 69.84, "end": 70.12, "word": " this", "probability": 0.357177734375}, {"start": 70.12, "end": 70.52, "word": " object", "probability": 0.8759765625}, {"start": 70.52, "end": 70.9, "word": " through", "probability": 0.50537109375}, {"start": 70.9, "end": 71.02, "word": " some", "probability": 0.465576171875}, {"start": 71.02, "end": 71.1, "word": " kind", "probability": 0.7080078125}, {"start": 71.1, "end": 71.14, "word": " of", "probability": 0.9716796875}, {"start": 71.14, "end": 71.72, "word": " interface", "probability": 0.8330078125}, {"start": 71.72, "end": 72.44, "word": " So", "probability": 0.5859375}, {"start": 72.44, "end": 72.74, "word": " now", "probability": 0.59423828125}, {"start": 72.74, "end": 72.78, "word": " it", "probability": 0.426513671875}, {"start": 72.78, "end": 73.08, "word": " stops", "probability": 0.5595703125}, {"start": 73.08, "end": 73.42, "word": " knowing", "probability": 0.712890625}, {"start": 73.42, "end": 73.66, "word": " the", "probability": 0.27734375}, {"start": 73.66, "end": 73.86, "word": " types", "probability": 0.58837890625}, {"start": 73.86, "end": 73.96, "word": " of", "probability": 0.9677734375}, {"start": 73.96, "end": 74.02, "word": " these", "probability": 0.2529296875}, {"start": 74.02, "end": 74.36, "word": " objects", "probability": 0.9736328125}], "temperature": 1.0}, {"id": 4, "seek": 10061, "start": 75.21, "end": 100.61, "text": " I no longer need to modify it whenever I want to change who receives data from it. In this lecture, we will take a design pattern related to the observer. It is considered similar, some people consider it the same observer, but with different problems. Let's talk in the beginning as we are used to. What is the programming problem that I have?", "tokens": [286, 572, 2854, 643, 281, 16927, 309, 5699, 286, 528, 281, 1319, 567, 20717, 1412, 490, 309, 13, 682, 341, 7991, 11, 321, 486, 747, 257, 1715, 5102, 4077, 281, 264, 27878, 13, 467, 307, 4888, 2531, 11, 512, 561, 1949, 309, 264, 912, 27878, 11, 457, 365, 819, 2740, 13, 961, 311, 751, 294, 264, 2863, 382, 321, 366, 1143, 281, 13, 708, 307, 264, 9410, 1154, 300, 286, 362, 30], "avg_logprob": -0.4563356099063403, "compression_ratio": 1.5825688073394495, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 75.21, "end": 75.43, "word": " I", "probability": 0.5126953125}, {"start": 75.43, "end": 75.61, "word": " no", "probability": 0.07244873046875}, {"start": 75.61, "end": 75.69, "word": " longer", "probability": 0.9189453125}, {"start": 75.69, "end": 76.13, "word": " need", "probability": 0.697265625}, {"start": 76.13, "end": 76.31, "word": " to", "probability": 0.90185546875}, {"start": 76.31, "end": 76.53, "word": " modify", "probability": 0.305908203125}, {"start": 76.53, "end": 77.31, "word": " it", "probability": 0.458984375}, {"start": 77.31, "end": 77.71, "word": " whenever", "probability": 0.318603515625}, {"start": 77.71, "end": 78.17, "word": " I", "probability": 0.974609375}, {"start": 78.17, "end": 78.17, "word": " want", "probability": 0.7001953125}, {"start": 78.17, "end": 78.37, "word": " to", "probability": 0.94287109375}, {"start": 78.37, "end": 78.69, "word": " change", "probability": 0.861328125}, {"start": 78.69, "end": 78.91, "word": " who", "probability": 0.521484375}, {"start": 78.91, "end": 79.33, "word": " receives", "probability": 0.49072265625}, {"start": 79.33, "end": 80.57, "word": " data", "probability": 0.38134765625}, {"start": 80.57, "end": 81.83, "word": " from", "probability": 0.85595703125}, {"start": 81.83, "end": 81.83, "word": " it.", "probability": 0.857421875}, {"start": 84.87, "end": 85.37, "word": " In", "probability": 0.57763671875}, {"start": 85.37, "end": 85.61, "word": " this", "probability": 0.91943359375}, {"start": 85.61, "end": 85.97, "word": " lecture,", "probability": 0.80615234375}, {"start": 86.39, "end": 86.51, "word": " we", "probability": 0.9345703125}, {"start": 86.51, "end": 86.53, "word": " will", "probability": 0.66552734375}, {"start": 86.53, "end": 86.69, "word": " take", "probability": 0.390625}, {"start": 86.69, "end": 86.79, "word": " a", "probability": 0.8623046875}, {"start": 86.79, "end": 87.01, "word": " design", "probability": 0.89501953125}, {"start": 87.01, "end": 87.49, "word": " pattern", "probability": 0.8916015625}, {"start": 87.49, "end": 88.37, "word": " related", "probability": 0.432373046875}, {"start": 88.37, "end": 88.69, "word": " to", "probability": 0.9755859375}, {"start": 88.69, "end": 88.77, "word": " the", "probability": 0.7119140625}, {"start": 88.77, "end": 89.17, "word": " observer.", "probability": 0.712890625}, {"start": 89.45, "end": 89.57, "word": " It", "probability": 0.77880859375}, {"start": 89.57, "end": 89.71, "word": " is", "probability": 0.82373046875}, {"start": 89.71, "end": 89.97, "word": " considered", "probability": 0.20263671875}, {"start": 89.97, "end": 90.35, "word": " similar,", "probability": 0.89599609375}, {"start": 90.55, "end": 90.69, "word": " some", "probability": 0.58251953125}, {"start": 90.69, "end": 90.93, "word": " people", "probability": 0.8212890625}, {"start": 90.93, "end": 91.25, "word": " consider", "probability": 0.7099609375}, {"start": 91.25, "end": 91.35, "word": " it", "probability": 0.701171875}, {"start": 91.35, "end": 91.43, "word": " the", "probability": 0.62548828125}, {"start": 91.43, "end": 91.53, "word": " same", "probability": 0.9013671875}, {"start": 91.53, "end": 92.11, "word": " observer,", "probability": 0.7861328125}, {"start": 93.19, "end": 93.67, "word": " but", "probability": 0.85009765625}, {"start": 93.67, "end": 94.43, "word": " with", "probability": 0.486572265625}, {"start": 94.43, "end": 94.55, "word": " different", "probability": 0.6923828125}, {"start": 94.55, "end": 95.37, "word": " problems.", "probability": 0.6728515625}, {"start": 95.87, "end": 96.25, "word": " Let's", "probability": 0.843017578125}, {"start": 96.25, "end": 96.55, "word": " talk", "probability": 0.501953125}, {"start": 96.55, "end": 96.71, "word": " in", "probability": 0.24072265625}, {"start": 96.71, "end": 96.81, "word": " the", "probability": 0.912109375}, {"start": 96.81, "end": 97.01, "word": " beginning", "probability": 0.8984375}, {"start": 97.01, "end": 97.15, "word": " as", "probability": 0.58837890625}, {"start": 97.15, "end": 97.27, "word": " we", "probability": 0.7373046875}, {"start": 97.27, "end": 97.35, "word": " are", "probability": 0.44970703125}, {"start": 97.35, "end": 97.55, "word": " used", "probability": 0.8212890625}, {"start": 97.55, "end": 97.93, "word": " to.", "probability": 0.970703125}, {"start": 98.09, "end": 98.29, "word": " What", "probability": 0.857421875}, {"start": 98.29, "end": 98.37, "word": " is", "probability": 0.86767578125}, {"start": 98.37, "end": 99.11, "word": " the", "probability": 0.83740234375}, {"start": 99.11, "end": 99.37, "word": " programming", "probability": 0.32275390625}, {"start": 99.37, "end": 99.65, "word": " problem", "probability": 0.84619140625}, {"start": 99.65, "end": 100.05, "word": " that", "probability": 0.467041015625}, {"start": 100.05, "end": 100.13, "word": " I", "probability": 0.6865234375}, {"start": 100.13, "end": 100.61, "word": " have?", "probability": 0.927734375}], "temperature": 1.0}, {"id": 5, "seek": 11958, "start": 101.64, "end": 119.58, "text": "and how do we try to solve it through the data bus pattern, which is also one of the behavioral patterns, okay? Let's take this scenario, if we assume that I have a software that has three or four components, which are A, B, C, and D", "tokens": [474, 577, 360, 321, 853, 281, 5039, 309, 807, 264, 1412, 1255, 5102, 11, 597, 307, 611, 472, 295, 264, 19124, 8294, 11, 1392, 30, 961, 311, 747, 341, 9005, 11, 498, 321, 6552, 300, 286, 362, 257, 4722, 300, 575, 1045, 420, 1451, 6677, 11, 597, 366, 316, 11, 363, 11, 383, 11, 293, 413], "avg_logprob": -0.4314693066111782, "compression_ratio": 1.420731707317073, "no_speech_prob": 0.0, "words": [{"start": 101.64, "end": 101.92, "word": "and", "probability": 0.46923828125}, {"start": 101.92, "end": 102.14, "word": " how", "probability": 0.85400390625}, {"start": 102.14, "end": 102.3, "word": " do", "probability": 0.2061767578125}, {"start": 102.3, "end": 102.36, "word": " we", "probability": 0.9228515625}, {"start": 102.36, "end": 102.62, "word": " try", "probability": 0.490478515625}, {"start": 102.62, "end": 102.78, "word": " to", "probability": 0.82763671875}, {"start": 102.78, "end": 102.98, "word": " solve", "probability": 0.70068359375}, {"start": 102.98, "end": 103.08, "word": " it", "probability": 0.60205078125}, {"start": 103.08, "end": 103.42, "word": " through", "probability": 0.477783203125}, {"start": 103.42, "end": 104.12, "word": " the", "probability": 0.548828125}, {"start": 104.12, "end": 104.52, "word": " data", "probability": 0.4423828125}, {"start": 104.52, "end": 104.88, "word": " bus", "probability": 0.48681640625}, {"start": 104.88, "end": 105.4, "word": " pattern,", "probability": 0.86962890625}, {"start": 106.48, "end": 106.54, "word": " which", "probability": 0.85986328125}, {"start": 106.54, "end": 106.7, "word": " is", "probability": 0.92529296875}, {"start": 106.7, "end": 106.92, "word": " also", "probability": 0.59326171875}, {"start": 106.92, "end": 107.2, "word": " one", "probability": 0.755859375}, {"start": 107.2, "end": 107.44, "word": " of", "probability": 0.96484375}, {"start": 107.44, "end": 107.54, "word": " the", "probability": 0.85205078125}, {"start": 107.54, "end": 108.0, "word": " behavioral", "probability": 0.66015625}, {"start": 108.0, "end": 108.58, "word": " patterns,", "probability": 0.86376953125}, {"start": 108.6, "end": 108.92, "word": " okay?", "probability": 0.307861328125}, {"start": 110.2, "end": 110.72, "word": " Let's", "probability": 0.62353515625}, {"start": 110.72, "end": 110.96, "word": " take", "probability": 0.64990234375}, {"start": 110.96, "end": 111.08, "word": " this", "probability": 0.88525390625}, {"start": 111.08, "end": 111.48, "word": " scenario,", "probability": 0.85107421875}, {"start": 111.66, "end": 111.8, "word": " if", "probability": 0.312744140625}, {"start": 111.8, "end": 111.86, "word": " we", "probability": 0.8671875}, {"start": 111.86, "end": 112.12, "word": " assume", "probability": 0.52880859375}, {"start": 112.12, "end": 112.4, "word": " that", "probability": 0.865234375}, {"start": 112.4, "end": 112.56, "word": " I", "probability": 0.93505859375}, {"start": 112.56, "end": 112.82, "word": " have", "probability": 0.94189453125}, {"start": 112.82, "end": 113.38, "word": " a", "probability": 0.4169921875}, {"start": 113.38, "end": 113.82, "word": " software", "probability": 0.861328125}, {"start": 113.82, "end": 114.1, "word": " that", "probability": 0.33544921875}, {"start": 114.1, "end": 114.18, "word": " has", "probability": 0.85595703125}, {"start": 114.18, "end": 114.6, "word": " three", "probability": 0.54931640625}, {"start": 114.6, "end": 114.88, "word": " or", "probability": 0.9599609375}, {"start": 114.88, "end": 115.2, "word": " four", "probability": 0.93359375}, {"start": 115.2, "end": 115.86, "word": " components,", "probability": 0.9033203125}, {"start": 116.3, "end": 116.32, "word": " which", "probability": 0.6943359375}, {"start": 116.32, "end": 116.46, "word": " are", "probability": 0.8515625}, {"start": 116.46, "end": 116.76, "word": " A,", "probability": 0.78759765625}, {"start": 116.88, "end": 117.08, "word": " B,", "probability": 0.765625}, {"start": 117.34, "end": 117.6, "word": " C,", "probability": 0.970703125}, {"start": 118.5, "end": 119.42, "word": " and", "probability": 0.3935546875}, {"start": 119.42, "end": 119.58, "word": " D", "probability": 0.99365234375}], "temperature": 1.0}, {"id": 6, "seek": 14941, "start": 120.5, "end": 149.42, "text": "These can be classes, they can be a number of components, for example in system, this is the finance department, this is the inventory, this is for human resources, and so on. Each one of these represents a part or component in your application. Because these components need to communicate with each other. How? For example, A needs to send to B, C and D.", "tokens": [28858, 393, 312, 5359, 11, 436, 393, 312, 257, 1230, 295, 6677, 11, 337, 1365, 294, 1185, 11, 341, 307, 264, 10719, 5882, 11, 341, 307, 264, 14228, 11, 341, 307, 337, 1952, 3593, 11, 293, 370, 322, 13, 6947, 472, 295, 613, 8855, 257, 644, 420, 6542, 294, 428, 3861, 13, 1436, 613, 6677, 643, 281, 7890, 365, 1184, 661, 13, 1012, 30, 1171, 1365, 11, 316, 2203, 281, 2845, 281, 363, 11, 383, 293, 413, 13], "avg_logprob": -0.4438291003432455, "compression_ratio": 1.679245283018868, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 120.5, "end": 120.8, "word": "These", "probability": 0.2147216796875}, {"start": 120.8, "end": 121.06, "word": " can", "probability": 0.564453125}, {"start": 121.06, "end": 121.34, "word": " be", "probability": 0.93603515625}, {"start": 121.34, "end": 121.86, "word": " classes,", "probability": 0.84814453125}, {"start": 122.18, "end": 122.18, "word": " they", "probability": 0.09600830078125}, {"start": 122.18, "end": 122.34, "word": " can", "probability": 0.92724609375}, {"start": 122.34, "end": 122.7, "word": " be", "probability": 0.86181640625}, {"start": 122.7, "end": 122.8, "word": " a", "probability": 0.34375}, {"start": 122.8, "end": 123.02, "word": " number", "probability": 0.8095703125}, {"start": 123.02, "end": 123.28, "word": " of", "probability": 0.97265625}, {"start": 123.28, "end": 124.16, "word": " components,", "probability": 0.85888671875}, {"start": 124.34, "end": 124.48, "word": " for", "probability": 0.493896484375}, {"start": 124.48, "end": 124.64, "word": " example", "probability": 0.89794921875}, {"start": 124.64, "end": 124.78, "word": " in", "probability": 0.69873046875}, {"start": 124.78, "end": 125.26, "word": " system,", "probability": 0.55615234375}, {"start": 125.78, "end": 125.98, "word": " this", "probability": 0.73779296875}, {"start": 125.98, "end": 126.1, "word": " is", "probability": 0.91015625}, {"start": 126.1, "end": 126.8, "word": " the", "probability": 0.5322265625}, {"start": 126.8, "end": 127.14, "word": " finance", "probability": 0.95263671875}, {"start": 127.14, "end": 127.88, "word": " department,", "probability": 0.93115234375}, {"start": 128.38, "end": 128.66, "word": " this", "probability": 0.88671875}, {"start": 128.66, "end": 128.8, "word": " is", "probability": 0.9140625}, {"start": 128.8, "end": 128.9, "word": " the", "probability": 0.68603515625}, {"start": 128.9, "end": 129.42, "word": " inventory,", "probability": 0.8740234375}, {"start": 130.2, "end": 132.36, "word": " this", "probability": 0.58154296875}, {"start": 132.36, "end": 132.48, "word": " is", "probability": 0.8203125}, {"start": 132.48, "end": 133.0, "word": " for", "probability": 0.61083984375}, {"start": 133.0, "end": 133.24, "word": " human", "probability": 0.74169921875}, {"start": 133.24, "end": 133.9, "word": " resources,", "probability": 0.9140625}, {"start": 134.52, "end": 135.54, "word": " and", "probability": 0.421630859375}, {"start": 135.54, "end": 135.82, "word": " so", "probability": 0.82177734375}, {"start": 135.82, "end": 135.98, "word": " on.", "probability": 0.8974609375}, {"start": 136.1, "end": 136.52, "word": " Each", "probability": 0.72216796875}, {"start": 136.52, "end": 137.9, "word": " one", "probability": 0.548828125}, {"start": 137.9, "end": 138.02, "word": " of", "probability": 0.90625}, {"start": 138.02, "end": 138.3, "word": " these", "probability": 0.68798828125}, {"start": 138.3, "end": 138.66, "word": " represents", "probability": 0.4970703125}, {"start": 138.66, "end": 138.82, "word": " a", "probability": 0.78076171875}, {"start": 138.82, "end": 139.0, "word": " part", "probability": 0.62451171875}, {"start": 139.0, "end": 139.42, "word": " or", "probability": 0.451904296875}, {"start": 139.42, "end": 140.0, "word": " component", "probability": 0.73046875}, {"start": 140.0, "end": 140.18, "word": " in", "probability": 0.82421875}, {"start": 140.18, "end": 140.22, "word": " your", "probability": 0.576171875}, {"start": 140.22, "end": 140.62, "word": " application.", "probability": 0.8681640625}, {"start": 141.9, "end": 142.24, "word": " Because", "probability": 0.66796875}, {"start": 142.24, "end": 142.54, "word": " these", "probability": 0.84716796875}, {"start": 142.54, "end": 143.14, "word": " components", "probability": 0.9306640625}, {"start": 143.14, "end": 143.56, "word": " need", "probability": 0.87548828125}, {"start": 143.56, "end": 143.68, "word": " to", "probability": 0.939453125}, {"start": 143.68, "end": 144.02, "word": " communicate", "probability": 0.7333984375}, {"start": 144.02, "end": 144.24, "word": " with", "probability": 0.82568359375}, {"start": 144.24, "end": 144.6, "word": " each", "probability": 0.9326171875}, {"start": 144.6, "end": 144.6, "word": " other.", "probability": 0.89990234375}, {"start": 145.92, "end": 146.14, "word": " How?", "probability": 0.5927734375}, {"start": 146.4, "end": 146.64, "word": " For", "probability": 0.172607421875}, {"start": 146.64, "end": 146.64, "word": " example,", "probability": 0.77587890625}, {"start": 147.14, "end": 147.26, "word": " A", "probability": 0.44775390625}, {"start": 147.26, "end": 147.76, "word": " needs", "probability": 0.68798828125}, {"start": 147.76, "end": 147.88, "word": " to", "probability": 0.9736328125}, {"start": 147.88, "end": 148.02, "word": " send", "probability": 0.70703125}, {"start": 148.02, "end": 148.4, "word": " to", "probability": 0.268310546875}, {"start": 148.4, "end": 148.82, "word": " B,", "probability": 0.98583984375}, {"start": 148.96, "end": 149.12, "word": " C", "probability": 0.87060546875}, {"start": 149.12, "end": 149.24, "word": " and", "probability": 0.35009765625}, {"start": 149.24, "end": 149.42, "word": " D.", "probability": 0.998046875}], "temperature": 1.0}, {"id": 7, "seek": 17226, "start": 150.34, "end": 172.26, "text": "and once C needs to send for example to B and D and once D needs to send to A and B so now the relation between them is that at any time one of the components needs to send messages to the other components if we assume that A wants to send data to B, C and D", "tokens": [474, 1564, 383, 2203, 281, 2845, 337, 1365, 281, 363, 293, 413, 293, 1564, 413, 2203, 281, 2845, 281, 316, 293, 363, 370, 586, 264, 9721, 1296, 552, 307, 300, 412, 604, 565, 472, 295, 264, 6677, 2203, 281, 2845, 7897, 281, 264, 661, 6677, 498, 321, 6552, 300, 316, 2738, 281, 2845, 1412, 281, 363, 11, 383, 293, 413], "avg_logprob": -0.40394466431414494, "compression_ratio": 1.7432432432432432, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 150.34, "end": 150.56, "word": "and", "probability": 0.264404296875}, {"start": 150.56, "end": 150.8, "word": " once", "probability": 0.2091064453125}, {"start": 150.8, "end": 151.44, "word": " C", "probability": 0.6044921875}, {"start": 151.44, "end": 151.9, "word": " needs", "probability": 0.406494140625}, {"start": 151.9, "end": 152.02, "word": " to", "probability": 0.96142578125}, {"start": 152.02, "end": 152.1, "word": " send", "probability": 0.71337890625}, {"start": 152.1, "end": 152.3, "word": " for", "probability": 0.1717529296875}, {"start": 152.3, "end": 152.54, "word": " example", "probability": 0.78271484375}, {"start": 152.54, "end": 152.68, "word": " to", "probability": 0.67236328125}, {"start": 152.68, "end": 152.82, "word": " B", "probability": 0.92529296875}, {"start": 152.82, "end": 153.04, "word": " and", "probability": 0.85107421875}, {"start": 153.04, "end": 153.2, "word": " D", "probability": 0.96923828125}, {"start": 153.2, "end": 153.9, "word": " and", "probability": 0.64404296875}, {"start": 153.9, "end": 154.08, "word": " once", "probability": 0.79443359375}, {"start": 154.08, "end": 154.32, "word": " D", "probability": 0.876953125}, {"start": 154.32, "end": 154.64, "word": " needs", "probability": 0.83837890625}, {"start": 154.64, "end": 154.84, "word": " to", "probability": 0.96826171875}, {"start": 154.84, "end": 154.92, "word": " send", "probability": 0.81689453125}, {"start": 154.92, "end": 155.14, "word": " to", "probability": 0.81201171875}, {"start": 155.14, "end": 155.42, "word": " A", "probability": 0.98681640625}, {"start": 155.42, "end": 156.06, "word": " and", "probability": 0.93798828125}, {"start": 156.06, "end": 156.3, "word": " B", "probability": 0.99365234375}, {"start": 156.3, "end": 157.06, "word": " so", "probability": 0.09515380859375}, {"start": 157.06, "end": 157.5, "word": " now", "probability": 0.6015625}, {"start": 157.5, "end": 157.82, "word": " the", "probability": 0.7578125}, {"start": 157.82, "end": 158.14, "word": " relation", "probability": 0.50634765625}, {"start": 158.14, "end": 158.48, "word": " between", "probability": 0.77880859375}, {"start": 158.48, "end": 158.64, "word": " them", "probability": 0.88232421875}, {"start": 158.64, "end": 158.78, "word": " is", "probability": 0.7578125}, {"start": 158.78, "end": 158.84, "word": " that", "probability": 0.765625}, {"start": 158.84, "end": 158.96, "word": " at", "probability": 0.413330078125}, {"start": 158.96, "end": 159.18, "word": " any", "probability": 0.79833984375}, {"start": 159.18, "end": 159.44, "word": " time", "probability": 0.75244140625}, {"start": 159.44, "end": 160.1, "word": " one", "probability": 0.65283203125}, {"start": 160.1, "end": 160.3, "word": " of", "probability": 0.9052734375}, {"start": 160.3, "end": 160.4, "word": " the", "probability": 0.8837890625}, {"start": 160.4, "end": 160.88, "word": " components", "probability": 0.892578125}, {"start": 160.88, "end": 161.3, "word": " needs", "probability": 0.341552734375}, {"start": 161.3, "end": 161.46, "word": " to", "probability": 0.96728515625}, {"start": 161.46, "end": 161.58, "word": " send", "probability": 0.853515625}, {"start": 161.58, "end": 162.08, "word": " messages", "probability": 0.626953125}, {"start": 162.08, "end": 162.32, "word": " to", "probability": 0.95751953125}, {"start": 162.32, "end": 162.4, "word": " the", "probability": 0.60009765625}, {"start": 162.4, "end": 162.44, "word": " other", "probability": 0.873046875}, {"start": 162.44, "end": 163.42, "word": " components", "probability": 0.634765625}, {"start": 163.42, "end": 166.6, "word": " if", "probability": 0.1104736328125}, {"start": 166.6, "end": 168.0, "word": " we", "probability": 0.8251953125}, {"start": 168.0, "end": 168.3, "word": " assume", "probability": 0.53466796875}, {"start": 168.3, "end": 168.66, "word": " that", "probability": 0.89013671875}, {"start": 168.66, "end": 169.0, "word": " A", "probability": 0.810546875}, {"start": 169.0, "end": 169.76, "word": " wants", "probability": 0.377685546875}, {"start": 169.76, "end": 169.86, "word": " to", "probability": 0.96435546875}, {"start": 169.86, "end": 170.02, "word": " send", "probability": 0.8212890625}, {"start": 170.02, "end": 170.32, "word": " data", "probability": 0.703125}, {"start": 170.32, "end": 170.54, "word": " to", "probability": 0.95068359375}, {"start": 170.54, "end": 170.82, "word": " B,", "probability": 0.9697265625}, {"start": 171.22, "end": 171.48, "word": " C", "probability": 0.810546875}, {"start": 171.48, "end": 172.02, "word": " and", "probability": 0.68408203125}, {"start": 172.02, "end": 172.26, "word": " D", "probability": 0.9970703125}], "temperature": 1.0}, {"id": 8, "seek": 20044, "start": 172.9, "end": 200.44, "text": " Because we took that you can use the observer pattern to make A send to these components without knowing them How? For example, B, C and D instead of sending a reference to A, go and make a common interface for example, I want to call it A interface and make these implement to this interface", "tokens": [1436, 321, 1890, 300, 291, 393, 764, 264, 27878, 5102, 281, 652, 316, 2845, 281, 613, 6677, 1553, 5276, 552, 1012, 30, 1171, 1365, 11, 363, 11, 383, 293, 413, 2602, 295, 7750, 257, 6408, 281, 316, 11, 352, 293, 652, 257, 2689, 9226, 337, 1365, 11, 286, 528, 281, 818, 309, 316, 9226, 293, 652, 613, 4445, 281, 341, 9226], "avg_logprob": -0.5327621140787678, "compression_ratio": 1.6187845303867403, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 172.9, "end": 173.24, "word": " Because", "probability": 0.1661376953125}, {"start": 173.24, "end": 173.46, "word": " we", "probability": 0.81640625}, {"start": 173.46, "end": 173.72, "word": " took", "probability": 0.1458740234375}, {"start": 173.72, "end": 174.04, "word": " that", "probability": 0.378173828125}, {"start": 174.04, "end": 174.2, "word": " you", "probability": 0.810546875}, {"start": 174.2, "end": 174.48, "word": " can", "probability": 0.85107421875}, {"start": 174.48, "end": 176.1, "word": " use", "probability": 0.85009765625}, {"start": 176.1, "end": 176.24, "word": " the", "probability": 0.5556640625}, {"start": 176.24, "end": 176.64, "word": " observer", "probability": 0.67578125}, {"start": 176.64, "end": 177.14, "word": " pattern", "probability": 0.8818359375}, {"start": 177.14, "end": 178.04, "word": " to", "probability": 0.270751953125}, {"start": 178.04, "end": 178.96, "word": " make", "probability": 0.343505859375}, {"start": 178.96, "end": 179.38, "word": " A", "probability": 0.367919921875}, {"start": 179.38, "end": 179.9, "word": " send", "probability": 0.458740234375}, {"start": 179.9, "end": 180.06, "word": " to", "probability": 0.319091796875}, {"start": 180.06, "end": 180.28, "word": " these", "probability": 0.439697265625}, {"start": 180.28, "end": 180.88, "word": " components", "probability": 0.8984375}, {"start": 180.88, "end": 181.1, "word": " without", "probability": 0.87890625}, {"start": 181.1, "end": 181.48, "word": " knowing", "probability": 0.6318359375}, {"start": 181.48, "end": 181.84, "word": " them", "probability": 0.85888671875}, {"start": 181.84, "end": 182.56, "word": " How?", "probability": 0.403076171875}, {"start": 183.0, "end": 183.62, "word": " For", "probability": 0.52978515625}, {"start": 183.62, "end": 184.52, "word": " example,", "probability": 0.90673828125}, {"start": 184.98, "end": 185.2, "word": " B,", "probability": 0.46484375}, {"start": 185.46, "end": 185.66, "word": " C", "probability": 0.76123046875}, {"start": 185.66, "end": 185.84, "word": " and", "probability": 0.62939453125}, {"start": 185.84, "end": 186.04, "word": " D", "probability": 0.9970703125}, {"start": 186.04, "end": 187.16, "word": " instead", "probability": 0.40576171875}, {"start": 187.16, "end": 187.4, "word": " of", "probability": 0.9560546875}, {"start": 187.4, "end": 187.72, "word": " sending", "probability": 0.755859375}, {"start": 187.72, "end": 188.06, "word": " a", "probability": 0.30615234375}, {"start": 188.06, "end": 188.48, "word": " reference", "probability": 0.935546875}, {"start": 188.48, "end": 188.64, "word": " to", "probability": 0.908203125}, {"start": 188.64, "end": 189.16, "word": " A,", "probability": 0.76953125}, {"start": 189.46, "end": 189.72, "word": " go", "probability": 0.147705078125}, {"start": 189.72, "end": 189.86, "word": " and", "probability": 0.603515625}, {"start": 189.86, "end": 190.02, "word": " make", "probability": 0.53857421875}, {"start": 190.02, "end": 190.12, "word": " a", "probability": 0.96875}, {"start": 190.12, "end": 190.12, "word": " common", "probability": 0.493408203125}, {"start": 190.12, "end": 191.76, "word": " interface", "probability": 0.87158203125}, {"start": 191.76, "end": 192.66, "word": " for", "probability": 0.304443359375}, {"start": 192.66, "end": 192.8, "word": " example,", "probability": 0.75634765625}, {"start": 192.92, "end": 192.96, "word": " I", "probability": 0.93408203125}, {"start": 192.96, "end": 193.04, "word": " want", "probability": 0.54296875}, {"start": 193.04, "end": 193.16, "word": " to", "probability": 0.9716796875}, {"start": 193.16, "end": 193.3, "word": " call", "probability": 0.5185546875}, {"start": 193.3, "end": 193.56, "word": " it", "probability": 0.7666015625}, {"start": 193.56, "end": 193.8, "word": " A", "probability": 0.76708984375}, {"start": 193.8, "end": 194.54, "word": " interface", "probability": 0.63525390625}, {"start": 194.54, "end": 195.68, "word": " and", "probability": 0.693359375}, {"start": 195.68, "end": 195.94, "word": " make", "probability": 0.33056640625}, {"start": 195.94, "end": 196.28, "word": " these", "probability": 0.52294921875}, {"start": 196.28, "end": 196.7, "word": " implement", "probability": 0.34521484375}, {"start": 196.7, "end": 199.5, "word": " to", "probability": 0.65576171875}, {"start": 199.5, "end": 199.82, "word": " this", "probability": 0.8193359375}, {"start": 199.82, "end": 200.44, "word": " interface", "probability": 0.89208984375}], "temperature": 1.0}, {"id": 9, "seek": 22606, "start": 202.36, "end": 226.06, "text": "and then you make a list here in A where you register all B, C and D because they are a type of A interface and you register them in A as a list and in A you tell them if you get a message go and make a loop and send it to each one of the types of AI if I want A to send to B, C and D", "tokens": [474, 550, 291, 652, 257, 1329, 510, 294, 316, 689, 291, 7280, 439, 363, 11, 383, 293, 413, 570, 436, 366, 257, 2010, 295, 316, 9226, 293, 291, 7280, 552, 294, 316, 382, 257, 1329, 293, 294, 316, 291, 980, 552, 498, 291, 483, 257, 3636, 352, 293, 652, 257, 6367, 293, 2845, 309, 281, 1184, 472, 295, 264, 3467, 295, 7318, 498, 286, 528, 316, 281, 2845, 281, 363, 11, 383, 293, 413], "avg_logprob": -0.607083355585734, "compression_ratio": 1.7423312883435582, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 202.36, "end": 202.56, "word": "and", "probability": 0.193115234375}, {"start": 202.56, "end": 202.86, "word": " then", "probability": 0.6416015625}, {"start": 202.86, "end": 203.02, "word": " you", "probability": 0.52587890625}, {"start": 203.02, "end": 203.22, "word": " make", "probability": 0.35400390625}, {"start": 203.22, "end": 203.62, "word": " a", "probability": 0.62841796875}, {"start": 203.62, "end": 204.18, "word": " list", "probability": 0.79345703125}, {"start": 204.18, "end": 204.26, "word": " here", "probability": 0.167236328125}, {"start": 204.26, "end": 204.26, "word": " in", "probability": 0.36328125}, {"start": 204.26, "end": 204.26, "word": " A", "probability": 0.5380859375}, {"start": 204.26, "end": 204.88, "word": " where", "probability": 0.24658203125}, {"start": 204.88, "end": 204.88, "word": " you", "probability": 0.74609375}, {"start": 204.88, "end": 205.24, "word": " register", "probability": 0.208740234375}, {"start": 205.24, "end": 205.98, "word": " all", "probability": 0.48681640625}, {"start": 205.98, "end": 207.62, "word": " B,", "probability": 0.4033203125}, {"start": 207.98, "end": 208.28, "word": " C", "probability": 0.53759765625}, {"start": 208.28, "end": 208.46, "word": " and", "probability": 0.58251953125}, {"start": 208.46, "end": 208.62, "word": " D", "probability": 0.99755859375}, {"start": 208.62, "end": 208.8, "word": " because", "probability": 0.2232666015625}, {"start": 208.8, "end": 209.0, "word": " they", "probability": 0.6240234375}, {"start": 209.0, "end": 209.12, "word": " are", "probability": 0.48388671875}, {"start": 209.12, "end": 209.28, "word": " a", "probability": 0.0572509765625}, {"start": 209.28, "end": 209.7, "word": " type", "probability": 0.73779296875}, {"start": 209.7, "end": 209.84, "word": " of", "probability": 0.93115234375}, {"start": 209.84, "end": 210.06, "word": " A", "probability": 0.865234375}, {"start": 210.06, "end": 210.78, "word": " interface", "probability": 0.81103515625}, {"start": 210.78, "end": 211.48, "word": " and", "probability": 0.2161865234375}, {"start": 211.48, "end": 211.68, "word": " you", "probability": 0.66748046875}, {"start": 211.68, "end": 212.02, "word": " register", "probability": 0.66748046875}, {"start": 212.02, "end": 212.14, "word": " them", "probability": 0.466064453125}, {"start": 212.14, "end": 212.26, "word": " in", "probability": 0.33447265625}, {"start": 212.26, "end": 212.62, "word": " A", "probability": 0.615234375}, {"start": 212.62, "end": 212.8, "word": " as", "probability": 0.66796875}, {"start": 212.8, "end": 212.88, "word": " a", "probability": 0.7822265625}, {"start": 212.88, "end": 213.14, "word": " list", "probability": 0.90625}, {"start": 213.14, "end": 215.16, "word": " and", "probability": 0.207275390625}, {"start": 215.16, "end": 216.18, "word": " in", "probability": 0.6640625}, {"start": 216.18, "end": 216.52, "word": " A", "probability": 0.9482421875}, {"start": 216.52, "end": 216.64, "word": " you", "probability": 0.76513671875}, {"start": 216.64, "end": 216.82, "word": " tell", "probability": 0.4736328125}, {"start": 216.82, "end": 216.92, "word": " them", "probability": 0.66064453125}, {"start": 216.92, "end": 217.04, "word": " if", "probability": 0.56591796875}, {"start": 217.04, "end": 217.38, "word": " you", "probability": 0.58251953125}, {"start": 217.38, "end": 217.38, "word": " get", "probability": 0.3564453125}, {"start": 217.38, "end": 217.8, "word": " a", "probability": 0.94970703125}, {"start": 217.8, "end": 217.8, "word": " message", "probability": 0.744140625}, {"start": 217.8, "end": 218.18, "word": " go", "probability": 0.411865234375}, {"start": 218.18, "end": 218.3, "word": " and", "probability": 0.375244140625}, {"start": 218.3, "end": 218.46, "word": " make", "probability": 0.316650390625}, {"start": 218.46, "end": 218.6, "word": " a", "probability": 0.9541015625}, {"start": 218.6, "end": 218.82, "word": " loop", "probability": 0.95703125}, {"start": 218.82, "end": 219.0, "word": " and", "probability": 0.8505859375}, {"start": 219.0, "end": 219.16, "word": " send", "probability": 0.75830078125}, {"start": 219.16, "end": 219.3, "word": " it", "probability": 0.82421875}, {"start": 219.3, "end": 219.38, "word": " to", "probability": 0.94873046875}, {"start": 219.38, "end": 220.6, "word": " each", "probability": 0.60302734375}, {"start": 220.6, "end": 221.32, "word": " one", "probability": 0.261962890625}, {"start": 221.32, "end": 221.46, "word": " of", "probability": 0.87451171875}, {"start": 221.46, "end": 221.6, "word": " the", "probability": 0.302734375}, {"start": 221.6, "end": 221.72, "word": " types", "probability": 0.325927734375}, {"start": 221.72, "end": 221.8, "word": " of", "probability": 0.701171875}, {"start": 221.8, "end": 222.12, "word": " AI", "probability": 0.76025390625}, {"start": 222.12, "end": 223.38, "word": " if", "probability": 0.2210693359375}, {"start": 223.38, "end": 223.82, "word": " I", "probability": 0.86669921875}, {"start": 223.82, "end": 224.1, "word": " want", "probability": 0.6572265625}, {"start": 224.1, "end": 224.54, "word": " A", "probability": 0.49951171875}, {"start": 224.54, "end": 224.8, "word": " to", "probability": 0.65283203125}, {"start": 224.8, "end": 225.0, "word": " send", "probability": 0.7705078125}, {"start": 225.0, "end": 225.18, "word": " to", "probability": 0.4111328125}, {"start": 225.18, "end": 225.4, "word": " B,", "probability": 0.9638671875}, {"start": 225.54, "end": 225.74, "word": " C", "probability": 0.84521484375}, {"start": 225.74, "end": 225.88, "word": " and", "probability": 0.783203125}, {"start": 225.88, "end": 226.06, "word": " D", "probability": 0.9970703125}], "temperature": 1.0}, {"id": 10, "seek": 25203, "start": 227.15, "end": 252.03, "text": "Okay, if I want B to send to A, C and D, okay? It's the same idea, instead of sending a reference to B, A, C and D and ask them to find a method for them No, as long as B wants to deal with them, you have to create a B interface called B interface, BI and let them implement this interface", "tokens": [8297, 11, 498, 286, 528, 363, 281, 2845, 281, 316, 11, 383, 293, 413, 11, 1392, 30, 467, 311, 264, 912, 1558, 11, 2602, 295, 7750, 257, 6408, 281, 363, 11, 316, 11, 383, 293, 413, 293, 1029, 552, 281, 915, 257, 3170, 337, 552, 883, 11, 382, 938, 382, 363, 2738, 281, 2028, 365, 552, 11, 291, 362, 281, 1884, 257, 363, 9226, 1219, 363, 9226, 11, 23524, 293, 718, 552, 4445, 341, 9226], "avg_logprob": -0.5065789348200748, "compression_ratio": 1.5879120879120878, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 227.15, "end": 227.41, "word": "Okay,", "probability": 0.310302734375}, {"start": 227.45, "end": 227.57, "word": " if", "probability": 0.56640625}, {"start": 227.57, "end": 227.91, "word": " I", "probability": 0.935546875}, {"start": 227.91, "end": 227.91, "word": " want", "probability": 0.63916015625}, {"start": 227.91, "end": 229.25, "word": " B", "probability": 0.6787109375}, {"start": 229.25, "end": 229.99, "word": " to", "probability": 0.93798828125}, {"start": 229.99, "end": 230.13, "word": " send", "probability": 0.56005859375}, {"start": 230.13, "end": 230.29, "word": " to", "probability": 0.324462890625}, {"start": 230.29, "end": 230.61, "word": " A,", "probability": 0.95556640625}, {"start": 230.77, "end": 231.09, "word": " C", "probability": 0.8583984375}, {"start": 231.09, "end": 231.35, "word": " and", "probability": 0.5986328125}, {"start": 231.35, "end": 231.55, "word": " D,", "probability": 0.9970703125}, {"start": 231.75, "end": 232.49, "word": " okay?", "probability": 0.327392578125}, {"start": 232.83, "end": 232.85, "word": " It's", "probability": 0.5404052734375}, {"start": 232.85, "end": 233.07, "word": " the", "probability": 0.8759765625}, {"start": 233.07, "end": 233.07, "word": " same", "probability": 0.9013671875}, {"start": 233.07, "end": 233.41, "word": " idea,", "probability": 0.6640625}, {"start": 233.55, "end": 234.33, "word": " instead", "probability": 0.32177734375}, {"start": 234.33, "end": 235.91, "word": " of", "probability": 0.9521484375}, {"start": 235.91, "end": 236.19, "word": " sending", "probability": 0.73681640625}, {"start": 236.19, "end": 236.33, "word": " a", "probability": 0.31298828125}, {"start": 236.33, "end": 236.65, "word": " reference", "probability": 0.89208984375}, {"start": 236.65, "end": 236.83, "word": " to", "probability": 0.8955078125}, {"start": 236.83, "end": 237.03, "word": " B,", "probability": 0.80908203125}, {"start": 237.13, "end": 237.35, "word": " A,", "probability": 0.86474609375}, {"start": 237.53, "end": 237.75, "word": " C", "probability": 0.9736328125}, {"start": 237.75, "end": 237.89, "word": " and", "probability": 0.75830078125}, {"start": 237.89, "end": 238.01, "word": " D", "probability": 0.998046875}, {"start": 238.01, "end": 238.37, "word": " and", "probability": 0.478515625}, {"start": 238.37, "end": 238.71, "word": " ask", "probability": 0.18994140625}, {"start": 238.71, "end": 239.73, "word": " them", "probability": 0.72509765625}, {"start": 239.73, "end": 240.33, "word": " to", "probability": 0.85595703125}, {"start": 240.33, "end": 240.51, "word": " find", "probability": 0.296630859375}, {"start": 240.51, "end": 240.61, "word": " a", "probability": 0.8837890625}, {"start": 240.61, "end": 240.83, "word": " method", "probability": 0.92626953125}, {"start": 240.83, "end": 241.01, "word": " for", "probability": 0.333251953125}, {"start": 241.01, "end": 241.19, "word": " them", "probability": 0.50390625}, {"start": 241.19, "end": 241.69, "word": " No,", "probability": 0.288330078125}, {"start": 241.87, "end": 242.09, "word": " as", "probability": 0.19580078125}, {"start": 242.09, "end": 242.13, "word": " long", "probability": 0.76806640625}, {"start": 242.13, "end": 242.13, "word": " as", "probability": 0.95947265625}, {"start": 242.13, "end": 242.41, "word": " B", "probability": 0.9453125}, {"start": 242.41, "end": 242.87, "word": " wants", "probability": 0.6787109375}, {"start": 242.87, "end": 242.91, "word": " to", "probability": 0.96630859375}, {"start": 242.91, "end": 243.13, "word": " deal", "probability": 0.37890625}, {"start": 243.13, "end": 243.29, "word": " with", "probability": 0.9013671875}, {"start": 243.29, "end": 243.51, "word": " them,", "probability": 0.454345703125}, {"start": 243.69, "end": 243.89, "word": " you", "probability": 0.7109375}, {"start": 243.89, "end": 244.01, "word": " have", "probability": 0.2337646484375}, {"start": 244.01, "end": 244.01, "word": " to", "probability": 0.966796875}, {"start": 244.01, "end": 244.39, "word": " create", "probability": 0.2186279296875}, {"start": 244.39, "end": 244.59, "word": " a", "probability": 0.595703125}, {"start": 244.59, "end": 244.79, "word": " B", "probability": 0.765625}, {"start": 244.79, "end": 245.43, "word": " interface", "probability": 0.82080078125}, {"start": 245.43, "end": 245.73, "word": " called", "probability": 0.29833984375}, {"start": 245.73, "end": 246.33, "word": " B", "probability": 0.374267578125}, {"start": 246.33, "end": 247.07, "word": " interface,", "probability": 0.394287109375}, {"start": 247.15, "end": 247.55, "word": " BI", "probability": 0.435546875}, {"start": 247.55, "end": 248.49, "word": " and", "probability": 0.417236328125}, {"start": 248.49, "end": 248.79, "word": " let", "probability": 0.55712890625}, {"start": 248.79, "end": 249.21, "word": " them", "probability": 0.7421875}, {"start": 249.21, "end": 251.15, "word": " implement", "probability": 0.787109375}, {"start": 251.15, "end": 251.43, "word": " this", "probability": 0.70361328125}, {"start": 251.43, "end": 252.03, "word": " interface", "probability": 0.83544921875}], "temperature": 1.0}, {"id": 11, "seek": 26716, "start": 255.82, "end": 267.16, "text": "Okay? And then let the B put a list of the type of B I and then if the A wants to send, you tell him to make a loop on each B I and send him the message", "tokens": [8297, 30, 400, 550, 718, 264, 363, 829, 257, 1329, 295, 264, 2010, 295, 363, 286, 293, 550, 498, 264, 316, 2738, 281, 2845, 11, 291, 980, 796, 281, 652, 257, 6367, 322, 1184, 363, 286, 293, 2845, 796, 264, 3636], "avg_logprob": -0.45349701316583724, "compression_ratio": 1.3693693693693694, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 255.82, "end": 256.12, "word": "Okay?", "probability": 0.328857421875}, {"start": 256.34, "end": 256.46, "word": " And", "probability": 0.57861328125}, {"start": 256.46, "end": 256.86, "word": " then", "probability": 0.73828125}, {"start": 256.86, "end": 257.42, "word": " let", "probability": 0.36474609375}, {"start": 257.42, "end": 257.54, "word": " the", "probability": 0.466796875}, {"start": 257.54, "end": 257.68, "word": " B", "probability": 0.708984375}, {"start": 257.68, "end": 258.02, "word": " put", "probability": 0.61962890625}, {"start": 258.02, "end": 258.24, "word": " a", "probability": 0.6357421875}, {"start": 258.24, "end": 258.52, "word": " list", "probability": 0.8134765625}, {"start": 258.52, "end": 258.68, "word": " of", "probability": 0.7353515625}, {"start": 258.68, "end": 259.18, "word": " the", "probability": 0.404541015625}, {"start": 259.18, "end": 259.18, "word": " type", "probability": 0.52294921875}, {"start": 259.18, "end": 260.16, "word": " of", "probability": 0.77880859375}, {"start": 260.16, "end": 260.3, "word": " B", "probability": 0.28076171875}, {"start": 260.3, "end": 260.56, "word": " I", "probability": 0.354736328125}, {"start": 260.56, "end": 261.56, "word": " and", "probability": 0.236572265625}, {"start": 261.56, "end": 261.86, "word": " then", "probability": 0.69873046875}, {"start": 261.86, "end": 262.16, "word": " if", "probability": 0.92822265625}, {"start": 262.16, "end": 262.88, "word": " the", "probability": 0.410400390625}, {"start": 262.88, "end": 263.02, "word": " A", "probability": 0.9541015625}, {"start": 263.02, "end": 263.24, "word": " wants", "probability": 0.70068359375}, {"start": 263.24, "end": 263.28, "word": " to", "probability": 0.966796875}, {"start": 263.28, "end": 263.48, "word": " send,", "probability": 0.53125}, {"start": 263.68, "end": 263.76, "word": " you", "probability": 0.62451171875}, {"start": 263.76, "end": 263.92, "word": " tell", "probability": 0.6083984375}, {"start": 263.92, "end": 264.0, "word": " him", "probability": 0.88916015625}, {"start": 264.0, "end": 264.08, "word": " to", "probability": 0.90185546875}, {"start": 264.08, "end": 264.22, "word": " make", "probability": 0.580078125}, {"start": 264.22, "end": 264.4, "word": " a", "probability": 0.884765625}, {"start": 264.4, "end": 264.56, "word": " loop", "probability": 0.97412109375}, {"start": 264.56, "end": 264.74, "word": " on", "probability": 0.80078125}, {"start": 264.74, "end": 265.02, "word": " each", "probability": 0.89794921875}, {"start": 265.02, "end": 265.22, "word": " B", "probability": 0.890625}, {"start": 265.22, "end": 265.54, "word": " I", "probability": 0.97216796875}, {"start": 265.54, "end": 266.08, "word": " and", "probability": 0.8642578125}, {"start": 266.08, "end": 266.32, "word": " send", "probability": 0.398193359375}, {"start": 266.32, "end": 266.56, "word": " him", "probability": 0.748046875}, {"start": 266.56, "end": 266.92, "word": " the", "probability": 0.84521484375}, {"start": 266.92, "end": 267.16, "word": " message", "probability": 0.8857421875}], "temperature": 1.0}, {"id": 12, "seek": 28683, "start": 269.04, "end": 286.84, "text": "Okay, you want C to send them the same idea, you want to make an interface and let them implement the interface and register them in C, so what happened? You notice that it became temporary, that is, if the observer we took is an excellent solution if you know who sends", "tokens": [8297, 11, 291, 528, 383, 281, 2845, 552, 264, 912, 1558, 11, 291, 528, 281, 652, 364, 9226, 293, 718, 552, 4445, 264, 9226, 293, 7280, 552, 294, 383, 11, 370, 437, 2011, 30, 509, 3449, 300, 309, 3062, 13413, 11, 300, 307, 11, 498, 264, 27878, 321, 1890, 307, 364, 7103, 3827, 498, 291, 458, 567, 14790], "avg_logprob": -0.5577330488269612, "compression_ratio": 1.5789473684210527, "no_speech_prob": 2.6226043701171875e-06, "words": [{"start": 269.04, "end": 269.4, "word": "Okay,", "probability": 0.31298828125}, {"start": 269.6, "end": 269.66, "word": " you", "probability": 0.62451171875}, {"start": 269.66, "end": 269.78, "word": " want", "probability": 0.62939453125}, {"start": 269.78, "end": 270.36, "word": " C", "probability": 0.452880859375}, {"start": 270.36, "end": 270.58, "word": " to", "probability": 0.92529296875}, {"start": 270.58, "end": 270.76, "word": " send", "probability": 0.72314453125}, {"start": 270.76, "end": 271.22, "word": " them", "probability": 0.1552734375}, {"start": 271.22, "end": 271.38, "word": " the", "probability": 0.6376953125}, {"start": 271.38, "end": 271.46, "word": " same", "probability": 0.84326171875}, {"start": 271.46, "end": 271.84, "word": " idea,", "probability": 0.71826171875}, {"start": 271.92, "end": 271.96, "word": " you", "probability": 0.75732421875}, {"start": 271.96, "end": 272.04, "word": " want", "probability": 0.68408203125}, {"start": 272.04, "end": 272.2, "word": " to", "probability": 0.7294921875}, {"start": 272.2, "end": 272.36, "word": " make", "probability": 0.55126953125}, {"start": 272.36, "end": 272.52, "word": " an", "probability": 0.51220703125}, {"start": 272.52, "end": 272.92, "word": " interface", "probability": 0.8828125}, {"start": 272.92, "end": 273.2, "word": " and", "probability": 0.395263671875}, {"start": 273.2, "end": 273.46, "word": " let", "probability": 0.467529296875}, {"start": 273.46, "end": 273.78, "word": " them", "probability": 0.7626953125}, {"start": 273.78, "end": 274.48, "word": " implement", "probability": 0.77001953125}, {"start": 274.48, "end": 274.7, "word": " the", "probability": 0.391357421875}, {"start": 274.7, "end": 275.24, "word": " interface", "probability": 0.86767578125}, {"start": 275.24, "end": 275.38, "word": " and", "probability": 0.81494140625}, {"start": 275.38, "end": 275.68, "word": " register", "probability": 0.4833984375}, {"start": 275.68, "end": 275.92, "word": " them", "probability": 0.8115234375}, {"start": 275.92, "end": 276.02, "word": " in", "probability": 0.77294921875}, {"start": 276.02, "end": 276.38, "word": " C,", "probability": 0.876953125}, {"start": 277.1, "end": 277.22, "word": " so", "probability": 0.5654296875}, {"start": 277.22, "end": 277.36, "word": " what", "probability": 0.62841796875}, {"start": 277.36, "end": 277.88, "word": " happened?", "probability": 0.5673828125}, {"start": 278.34, "end": 278.52, "word": " You", "probability": 0.297119140625}, {"start": 278.52, "end": 278.9, "word": " notice", "probability": 0.346435546875}, {"start": 278.9, "end": 279.3, "word": " that", "probability": 0.448486328125}, {"start": 279.3, "end": 279.5, "word": " it", "probability": 0.787109375}, {"start": 279.5, "end": 279.7, "word": " became", "probability": 0.59228515625}, {"start": 279.7, "end": 280.12, "word": " temporary,", "probability": 0.087158203125}, {"start": 280.84, "end": 280.98, "word": " that", "probability": 0.21630859375}, {"start": 280.98, "end": 281.04, "word": " is,", "probability": 0.83251953125}, {"start": 281.18, "end": 281.3, "word": " if", "probability": 0.7607421875}, {"start": 281.3, "end": 282.64, "word": " the", "probability": 0.73486328125}, {"start": 282.64, "end": 283.12, "word": " observer", "probability": 0.72900390625}, {"start": 283.12, "end": 283.28, "word": " we", "probability": 0.54443359375}, {"start": 283.28, "end": 283.52, "word": " took", "probability": 0.75}, {"start": 283.52, "end": 284.2, "word": " is", "probability": 0.4228515625}, {"start": 284.2, "end": 284.54, "word": " an", "probability": 0.61669921875}, {"start": 284.54, "end": 284.76, "word": " excellent", "probability": 0.84814453125}, {"start": 284.76, "end": 285.04, "word": " solution", "probability": 0.95703125}, {"start": 285.04, "end": 285.34, "word": " if", "probability": 0.80810546875}, {"start": 285.34, "end": 285.64, "word": " you", "probability": 0.91552734375}, {"start": 285.64, "end": 286.08, "word": " know", "probability": 0.87890625}, {"start": 286.08, "end": 286.54, "word": " who", "probability": 0.88916015625}, {"start": 286.54, "end": 286.84, "word": " sends", "probability": 0.42529296875}], "temperature": 1.0}, {"id": 13, "seek": 29918, "start": 287.68, "end": 299.18, "text": "For whom? When you only have A sending to B, C and D and that's it. But now we are in front of a scenario where these four components need to send and receive each other.", "tokens": [12587, 7101, 30, 1133, 291, 787, 362, 316, 7750, 281, 363, 11, 383, 293, 413, 293, 300, 311, 309, 13, 583, 586, 321, 366, 294, 1868, 295, 257, 9005, 689, 613, 1451, 6677, 643, 281, 2845, 293, 4774, 1184, 661, 13], "avg_logprob": -0.5249256037530445, "compression_ratio": 1.2878787878787878, "no_speech_prob": 2.6226043701171875e-06, "words": [{"start": 287.68, "end": 287.84, "word": "For", "probability": 0.2047119140625}, {"start": 287.84, "end": 288.0, "word": " whom?", "probability": 0.56982421875}, {"start": 288.12, "end": 288.26, "word": " When", "probability": 0.36083984375}, {"start": 288.26, "end": 288.4, "word": " you", "probability": 0.75634765625}, {"start": 288.4, "end": 289.32, "word": " only", "probability": 0.260986328125}, {"start": 289.32, "end": 289.38, "word": " have", "probability": 0.8291015625}, {"start": 289.38, "end": 289.72, "word": " A", "probability": 0.64013671875}, {"start": 289.72, "end": 290.14, "word": " sending", "probability": 0.2100830078125}, {"start": 290.14, "end": 290.3, "word": " to", "probability": 0.395751953125}, {"start": 290.3, "end": 290.48, "word": " B,", "probability": 0.94970703125}, {"start": 290.56, "end": 290.72, "word": " C", "probability": 0.5986328125}, {"start": 290.72, "end": 290.8, "word": " and", "probability": 0.5732421875}, {"start": 290.8, "end": 290.92, "word": " D", "probability": 0.99609375}, {"start": 290.92, "end": 290.98, "word": " and", "probability": 0.499755859375}, {"start": 290.98, "end": 291.2, "word": " that's", "probability": 0.5728759765625}, {"start": 291.2, "end": 291.52, "word": " it.", "probability": 0.81591796875}, {"start": 292.8, "end": 292.9, "word": " But", "probability": 0.2418212890625}, {"start": 292.9, "end": 293.3, "word": " now", "probability": 0.7314453125}, {"start": 293.3, "end": 293.5, "word": " we", "probability": 0.65478515625}, {"start": 293.5, "end": 293.66, "word": " are", "probability": 0.4990234375}, {"start": 293.66, "end": 293.76, "word": " in", "probability": 0.286865234375}, {"start": 293.76, "end": 293.82, "word": " front", "probability": 0.890625}, {"start": 293.82, "end": 293.96, "word": " of", "probability": 0.9677734375}, {"start": 293.96, "end": 294.0, "word": " a", "probability": 0.6650390625}, {"start": 294.0, "end": 294.42, "word": " scenario", "probability": 0.93505859375}, {"start": 294.42, "end": 295.32, "word": " where", "probability": 0.51513671875}, {"start": 295.32, "end": 296.12, "word": " these", "probability": 0.611328125}, {"start": 296.12, "end": 296.76, "word": " four", "probability": 0.62255859375}, {"start": 296.76, "end": 297.44, "word": " components", "probability": 0.90478515625}, {"start": 297.44, "end": 297.92, "word": " need", "probability": 0.85595703125}, {"start": 297.92, "end": 298.1, "word": " to", "probability": 0.9541015625}, {"start": 298.1, "end": 298.24, "word": " send", "probability": 0.595703125}, {"start": 298.24, "end": 298.42, "word": " and", "probability": 0.84765625}, {"start": 298.42, "end": 298.7, "word": " receive", "probability": 0.9248046875}, {"start": 298.7, "end": 298.94, "word": " each", "probability": 0.440185546875}, {"start": 298.94, "end": 299.18, "word": " other.", "probability": 0.8935546875}], "temperature": 1.0}, {"id": 14, "seek": 32105, "start": 299.83, "end": 321.05, "text": "at any time, this needs to reach this, this needs to reach this, so applying the observer pattern works, but the process becomes complicated, that is, each one of these needs this gate to make three interfaces implement, right? A needs to be of type bi, and of type di, and of type ci, and A needs to register here and here and here", "tokens": [267, 604, 565, 11, 341, 2203, 281, 2524, 341, 11, 341, 2203, 281, 2524, 341, 11, 370, 9275, 264, 27878, 5102, 1985, 11, 457, 264, 1399, 3643, 6179, 11, 300, 307, 11, 1184, 472, 295, 613, 2203, 341, 8539, 281, 652, 1045, 28416, 4445, 11, 558, 30, 316, 2203, 281, 312, 295, 2010, 3228, 11, 293, 295, 2010, 1026, 11, 293, 295, 2010, 6983, 11, 293, 316, 2203, 281, 7280, 510, 293, 510, 293, 510], "avg_logprob": -0.5567434194840883, "compression_ratio": 1.8757062146892656, "no_speech_prob": 1.233816146850586e-05, "words": [{"start": 299.83, "end": 300.25, "word": "at", "probability": 0.06951904296875}, {"start": 300.25, "end": 300.47, "word": " any", "probability": 0.7001953125}, {"start": 300.47, "end": 300.77, "word": " time,", "probability": 0.64501953125}, {"start": 301.05, "end": 301.29, "word": " this", "probability": 0.43603515625}, {"start": 301.29, "end": 301.59, "word": " needs", "probability": 0.3544921875}, {"start": 301.59, "end": 301.79, "word": " to", "probability": 0.962890625}, {"start": 301.79, "end": 302.05, "word": " reach", "probability": 0.51904296875}, {"start": 302.05, "end": 302.35, "word": " this,", "probability": 0.292724609375}, {"start": 302.67, "end": 303.21, "word": " this", "probability": 0.52734375}, {"start": 303.21, "end": 303.49, "word": " needs", "probability": 0.8720703125}, {"start": 303.49, "end": 303.69, "word": " to", "probability": 0.96923828125}, {"start": 303.69, "end": 303.87, "word": " reach", "probability": 0.9150390625}, {"start": 303.87, "end": 304.35, "word": " this,", "probability": 0.669921875}, {"start": 304.75, "end": 305.27, "word": " so", "probability": 0.274169921875}, {"start": 305.27, "end": 305.67, "word": " applying", "probability": 0.293701171875}, {"start": 305.67, "end": 305.91, "word": " the", "probability": 0.59228515625}, {"start": 305.91, "end": 306.31, "word": " observer", "probability": 0.84130859375}, {"start": 306.31, "end": 306.77, "word": " pattern", "probability": 0.876953125}, {"start": 306.77, "end": 307.09, "word": " works,", "probability": 0.21142578125}, {"start": 307.29, "end": 307.41, "word": " but", "probability": 0.88427734375}, {"start": 307.41, "end": 307.51, "word": " the", "probability": 0.58349609375}, {"start": 307.51, "end": 307.71, "word": " process", "probability": 0.90234375}, {"start": 307.71, "end": 307.99, "word": " becomes", "probability": 0.4013671875}, {"start": 307.99, "end": 308.41, "word": " complicated,", "probability": 0.6591796875}, {"start": 309.01, "end": 309.17, "word": " that", "probability": 0.1607666015625}, {"start": 309.17, "end": 309.23, "word": " is,", "probability": 0.62744140625}, {"start": 309.35, "end": 309.49, "word": " each", "probability": 0.8974609375}, {"start": 309.49, "end": 309.75, "word": " one", "probability": 0.416015625}, {"start": 309.75, "end": 309.83, "word": " of", "probability": 0.79150390625}, {"start": 309.83, "end": 310.09, "word": " these", "probability": 0.578125}, {"start": 310.09, "end": 310.41, "word": " needs", "probability": 0.6943359375}, {"start": 310.41, "end": 310.63, "word": " this", "probability": 0.31982421875}, {"start": 310.63, "end": 310.79, "word": " gate", "probability": 0.79541015625}, {"start": 310.79, "end": 310.91, "word": " to", "probability": 0.92919921875}, {"start": 310.91, "end": 311.07, "word": " make", "probability": 0.33740234375}, {"start": 311.07, "end": 311.53, "word": " three", "probability": 0.6279296875}, {"start": 311.53, "end": 312.09, "word": " interfaces", "probability": 0.6806640625}, {"start": 312.09, "end": 312.45, "word": " implement,", "probability": 0.432373046875}, {"start": 313.05, "end": 313.29, "word": " right?", "probability": 0.572265625}, {"start": 313.87, "end": 314.13, "word": " A", "probability": 0.5107421875}, {"start": 314.13, "end": 314.37, "word": " needs", "probability": 0.334228515625}, {"start": 314.37, "end": 314.47, "word": " to", "probability": 0.9677734375}, {"start": 314.47, "end": 314.83, "word": " be", "probability": 0.5380859375}, {"start": 314.83, "end": 315.07, "word": " of", "probability": 0.62939453125}, {"start": 315.07, "end": 315.35, "word": " type", "probability": 0.401611328125}, {"start": 315.35, "end": 315.79, "word": " bi,", "probability": 0.288818359375}, {"start": 315.97, "end": 315.97, "word": " and", "probability": 0.348388671875}, {"start": 315.97, "end": 316.07, "word": " of", "probability": 0.85693359375}, {"start": 316.07, "end": 316.27, "word": " type", "probability": 0.970703125}, {"start": 316.27, "end": 316.57, "word": " di,", "probability": 0.927734375}, {"start": 316.85, "end": 316.91, "word": " and", "probability": 0.931640625}, {"start": 316.91, "end": 316.97, "word": " of", "probability": 0.9375}, {"start": 316.97, "end": 317.23, "word": " type", "probability": 0.98095703125}, {"start": 317.23, "end": 318.03, "word": " ci,", "probability": 0.9375}, {"start": 318.89, "end": 319.05, "word": " and", "probability": 0.9248046875}, {"start": 319.05, "end": 319.35, "word": " A", "probability": 0.86474609375}, {"start": 319.35, "end": 319.57, "word": " needs", "probability": 0.69970703125}, {"start": 319.57, "end": 319.65, "word": " to", "probability": 0.96728515625}, {"start": 319.65, "end": 319.93, "word": " register", "probability": 0.6142578125}, {"start": 319.93, "end": 320.23, "word": " here", "probability": 0.84326171875}, {"start": 320.23, "end": 320.41, "word": " and", "probability": 0.39990234375}, {"start": 320.41, "end": 320.67, "word": " here", "probability": 0.84619140625}, {"start": 320.67, "end": 320.83, "word": " and", "probability": 0.85009765625}, {"start": 320.83, "end": 321.05, "word": " here", "probability": 0.85009765625}], "temperature": 1.0}, {"id": 15, "seek": 34000, "start": 321.9, "end": 340.0, "text": "That's it, we did it for the A, and you have to do the same thing for the B, C and D. It turns out that we have reached a stage where applying the observer pattern in this case is difficult. So we want to see an easy way to make these four components send and receive each other in the easiest way possible.", "tokens": [6390, 311, 309, 11, 321, 630, 309, 337, 264, 316, 11, 293, 291, 362, 281, 360, 264, 912, 551, 337, 264, 363, 11, 383, 293, 413, 13, 467, 4523, 484, 300, 321, 362, 6488, 257, 3233, 689, 9275, 264, 27878, 5102, 294, 341, 1389, 307, 2252, 13, 407, 321, 528, 281, 536, 364, 1858, 636, 281, 652, 613, 1451, 6677, 2845, 293, 4774, 1184, 661, 294, 264, 12889, 636, 1944, 13], "avg_logprob": -0.5468750049670538, "compression_ratio": 1.5198019801980198, "no_speech_prob": 2.1517276763916016e-05, "words": [{"start": 321.9, "end": 322.28, "word": "That's", "probability": 0.5037841796875}, {"start": 322.28, "end": 322.32, "word": " it,", "probability": 0.70849609375}, {"start": 322.42, "end": 322.42, "word": " we", "probability": 0.36328125}, {"start": 322.42, "end": 322.58, "word": " did", "probability": 0.35302734375}, {"start": 322.58, "end": 322.74, "word": " it", "probability": 0.71826171875}, {"start": 322.74, "end": 322.8, "word": " for", "probability": 0.80322265625}, {"start": 322.8, "end": 323.64, "word": " the", "probability": 0.240966796875}, {"start": 323.64, "end": 323.8, "word": " A,", "probability": 0.469482421875}, {"start": 323.82, "end": 323.9, "word": " and", "probability": 0.443115234375}, {"start": 323.9, "end": 323.96, "word": " you", "probability": 0.3720703125}, {"start": 323.96, "end": 324.06, "word": " have", "probability": 0.2313232421875}, {"start": 324.06, "end": 324.16, "word": " to", "probability": 0.958984375}, {"start": 324.16, "end": 324.34, "word": " do", "probability": 0.841796875}, {"start": 324.34, "end": 324.56, "word": " the", "probability": 0.7431640625}, {"start": 324.56, "end": 324.7, "word": " same", "probability": 0.873046875}, {"start": 324.7, "end": 325.08, "word": " thing", "probability": 0.60400390625}, {"start": 325.08, "end": 325.2, "word": " for", "probability": 0.8779296875}, {"start": 325.2, "end": 325.3, "word": " the", "probability": 0.3505859375}, {"start": 325.3, "end": 325.44, "word": " B,", "probability": 0.955078125}, {"start": 325.56, "end": 325.82, "word": " C", "probability": 0.68798828125}, {"start": 325.82, "end": 326.04, "word": " and", "probability": 0.71484375}, {"start": 326.04, "end": 326.26, "word": " D.", "probability": 0.98681640625}, {"start": 326.72, "end": 326.84, "word": " It", "probability": 0.148193359375}, {"start": 326.84, "end": 326.92, "word": " turns", "probability": 0.1455078125}, {"start": 326.92, "end": 327.1, "word": " out", "probability": 0.88818359375}, {"start": 327.1, "end": 327.14, "word": " that", "probability": 0.78662109375}, {"start": 327.14, "end": 327.26, "word": " we", "probability": 0.65087890625}, {"start": 327.26, "end": 327.36, "word": " have", "probability": 0.5751953125}, {"start": 327.36, "end": 327.54, "word": " reached", "probability": 0.73779296875}, {"start": 327.54, "end": 327.72, "word": " a", "probability": 0.306396484375}, {"start": 327.72, "end": 327.82, "word": " stage", "probability": 0.71142578125}, {"start": 327.82, "end": 328.08, "word": " where", "probability": 0.67822265625}, {"start": 328.08, "end": 328.3, "word": " applying", "probability": 0.487060546875}, {"start": 328.3, "end": 328.5, "word": " the", "probability": 0.7431640625}, {"start": 328.5, "end": 328.86, "word": " observer", "probability": 0.5224609375}, {"start": 328.86, "end": 329.24, "word": " pattern", "probability": 0.87646484375}, {"start": 329.24, "end": 329.36, "word": " in", "probability": 0.64111328125}, {"start": 329.36, "end": 329.96, "word": " this", "probability": 0.8642578125}, {"start": 329.96, "end": 329.96, "word": " case", "probability": 0.6982421875}, {"start": 329.96, "end": 331.26, "word": " is", "probability": 0.87158203125}, {"start": 331.26, "end": 331.46, "word": " difficult.", "probability": 0.4013671875}, {"start": 332.14, "end": 332.28, "word": " So", "probability": 0.494384765625}, {"start": 332.28, "end": 332.42, "word": " we", "probability": 0.64794921875}, {"start": 332.42, "end": 332.54, "word": " want", "probability": 0.3388671875}, {"start": 332.54, "end": 332.64, "word": " to", "probability": 0.966796875}, {"start": 332.64, "end": 332.82, "word": " see", "probability": 0.44482421875}, {"start": 332.82, "end": 333.38, "word": " an", "probability": 0.62841796875}, {"start": 333.38, "end": 333.68, "word": " easy", "probability": 0.75537109375}, {"start": 333.68, "end": 334.1, "word": " way", "probability": 0.73291015625}, {"start": 334.1, "end": 335.14, "word": " to", "probability": 0.896484375}, {"start": 335.14, "end": 335.46, "word": " make", "probability": 0.5830078125}, {"start": 335.46, "end": 335.8, "word": " these", "probability": 0.54052734375}, {"start": 335.8, "end": 336.74, "word": " four", "probability": 0.6826171875}, {"start": 336.74, "end": 337.1, "word": " components", "probability": 0.90625}, {"start": 337.1, "end": 337.42, "word": " send", "probability": 0.11737060546875}, {"start": 337.42, "end": 337.64, "word": " and", "probability": 0.84423828125}, {"start": 337.64, "end": 337.92, "word": " receive", "probability": 0.91064453125}, {"start": 337.92, "end": 338.18, "word": " each", "probability": 0.81396484375}, {"start": 338.18, "end": 338.6, "word": " other", "probability": 0.89501953125}, {"start": 338.6, "end": 339.04, "word": " in", "probability": 0.85302734375}, {"start": 339.04, "end": 339.14, "word": " the", "probability": 0.701171875}, {"start": 339.14, "end": 339.32, "word": " easiest", "probability": 0.81982421875}, {"start": 339.32, "end": 339.78, "word": " way", "probability": 0.9345703125}, {"start": 339.78, "end": 340.0, "word": " possible.", "probability": 0.58349609375}], "temperature": 1.0}, {"id": 16, "seek": 36430, "start": 340.74, "end": 364.3, "text": " So the observer application is difficult, and even if you cache the use of design patterns at once, that is, you let A know B and C and D, and B knows C and D and A, the process is also complicated, that is, each person takes a reference or sends him references from three to two in the process, which is also complicated. So we go back and see that we need an easy solution.", "tokens": [407, 264, 27878, 3861, 307, 2252, 11, 293, 754, 498, 291, 19459, 264, 764, 295, 1715, 8294, 412, 1564, 11, 300, 307, 11, 291, 718, 316, 458, 363, 293, 383, 293, 413, 11, 293, 363, 3255, 383, 293, 413, 293, 316, 11, 264, 1399, 307, 611, 6179, 11, 300, 307, 11, 1184, 954, 2516, 257, 6408, 420, 14790, 796, 15400, 490, 1045, 281, 732, 294, 264, 1399, 11, 597, 307, 611, 6179, 13, 407, 321, 352, 646, 293, 536, 300, 321, 643, 364, 1858, 3827, 13], "avg_logprob": -0.536997109994121, "compression_ratio": 1.709090909090909, "no_speech_prob": 7.68899917602539e-06, "words": [{"start": 340.74, "end": 341.22, "word": " So", "probability": 0.1541748046875}, {"start": 341.22, "end": 341.32, "word": " the", "probability": 0.323974609375}, {"start": 341.32, "end": 341.74, "word": " observer", "probability": 0.5830078125}, {"start": 341.74, "end": 342.16, "word": " application", "probability": 0.572265625}, {"start": 342.16, "end": 342.28, "word": " is", "probability": 0.8271484375}, {"start": 342.28, "end": 342.54, "word": " difficult,", "probability": 0.411376953125}, {"start": 343.18, "end": 343.2, "word": " and", "probability": 0.4609375}, {"start": 343.2, "end": 343.46, "word": " even", "probability": 0.7041015625}, {"start": 343.46, "end": 343.64, "word": " if", "probability": 0.90234375}, {"start": 343.64, "end": 344.04, "word": " you", "probability": 0.9111328125}, {"start": 344.04, "end": 344.76, "word": " cache", "probability": 0.1827392578125}, {"start": 344.76, "end": 344.9, "word": " the", "probability": 0.54150390625}, {"start": 344.9, "end": 345.16, "word": " use", "probability": 0.13818359375}, {"start": 345.16, "end": 345.3, "word": " of", "probability": 0.95849609375}, {"start": 345.3, "end": 346.22, "word": " design", "probability": 0.57421875}, {"start": 346.22, "end": 346.56, "word": " patterns", "probability": 0.470703125}, {"start": 346.56, "end": 346.66, "word": " at", "probability": 0.28173828125}, {"start": 346.66, "end": 346.88, "word": " once,", "probability": 0.546875}, {"start": 347.04, "end": 347.04, "word": " that", "probability": 0.1790771484375}, {"start": 347.04, "end": 347.1, "word": " is,", "probability": 0.74267578125}, {"start": 347.36, "end": 347.5, "word": " you", "probability": 0.2423095703125}, {"start": 347.5, "end": 347.7, "word": " let", "probability": 0.314208984375}, {"start": 347.7, "end": 348.02, "word": " A", "probability": 0.7587890625}, {"start": 348.02, "end": 348.32, "word": " know", "probability": 0.74951171875}, {"start": 348.32, "end": 348.58, "word": " B", "probability": 0.93017578125}, {"start": 348.58, "end": 348.72, "word": " and", "probability": 0.348388671875}, {"start": 348.72, "end": 348.86, "word": " C", "probability": 0.9833984375}, {"start": 348.86, "end": 349.0, "word": " and", "probability": 0.9296875}, {"start": 349.0, "end": 349.14, "word": " D,", "probability": 0.99267578125}, {"start": 349.34, "end": 349.46, "word": " and", "probability": 0.81591796875}, {"start": 349.46, "end": 349.72, "word": " B", "probability": 0.9453125}, {"start": 349.72, "end": 350.14, "word": " knows", "probability": 0.5625}, {"start": 350.14, "end": 350.48, "word": " C", "probability": 0.9541015625}, {"start": 350.48, "end": 350.62, "word": " and", "probability": 0.87060546875}, {"start": 350.62, "end": 350.78, "word": " D", "probability": 0.99072265625}, {"start": 350.78, "end": 350.94, "word": " and", "probability": 0.87841796875}, {"start": 350.94, "end": 351.2, "word": " A,", "probability": 0.97216796875}, {"start": 351.46, "end": 351.88, "word": " the", "probability": 0.499267578125}, {"start": 351.88, "end": 352.12, "word": " process", "probability": 0.916015625}, {"start": 352.12, "end": 352.22, "word": " is", "probability": 0.8515625}, {"start": 352.22, "end": 352.22, "word": " also", "probability": 0.28662109375}, {"start": 352.22, "end": 352.52, "word": " complicated,", "probability": 0.7099609375}, {"start": 352.72, "end": 352.72, "word": " that", "probability": 0.40185546875}, {"start": 352.72, "end": 352.72, "word": " is,", "probability": 0.90625}, {"start": 352.82, "end": 353.7, "word": " each", "probability": 0.4072265625}, {"start": 353.7, "end": 354.04, "word": " person", "probability": 0.432373046875}, {"start": 354.04, "end": 354.24, "word": " takes", "probability": 0.438720703125}, {"start": 354.24, "end": 354.46, "word": " a", "probability": 0.80078125}, {"start": 354.46, "end": 354.88, "word": " reference", "probability": 0.91357421875}, {"start": 354.88, "end": 355.32, "word": " or", "probability": 0.62109375}, {"start": 355.32, "end": 355.58, "word": " sends", "probability": 0.505859375}, {"start": 355.58, "end": 355.92, "word": " him", "probability": 0.421142578125}, {"start": 355.92, "end": 356.74, "word": " references", "probability": 0.58203125}, {"start": 356.74, "end": 356.94, "word": " from", "probability": 0.77392578125}, {"start": 356.94, "end": 357.64, "word": " three", "probability": 0.5185546875}, {"start": 357.64, "end": 358.16, "word": " to", "probability": 0.261474609375}, {"start": 358.16, "end": 358.7, "word": " two", "probability": 0.88525390625}, {"start": 358.7, "end": 358.82, "word": " in", "probability": 0.43994140625}, {"start": 358.82, "end": 358.9, "word": " the", "probability": 0.8759765625}, {"start": 358.9, "end": 359.1, "word": " process,", "probability": 0.95361328125}, {"start": 359.24, "end": 359.32, "word": " which", "probability": 0.260009765625}, {"start": 359.32, "end": 359.52, "word": " is", "probability": 0.66015625}, {"start": 359.52, "end": 359.52, "word": " also", "probability": 0.8203125}, {"start": 359.52, "end": 360.58, "word": " complicated.", "probability": 0.84033203125}, {"start": 361.54, "end": 362.02, "word": " So", "probability": 0.78466796875}, {"start": 362.02, "end": 362.32, "word": " we", "probability": 0.65185546875}, {"start": 362.32, "end": 362.32, "word": " go", "probability": 0.146240234375}, {"start": 362.32, "end": 362.56, "word": " back", "probability": 0.85693359375}, {"start": 362.56, "end": 362.76, "word": " and", "probability": 0.54052734375}, {"start": 362.76, "end": 363.0, "word": " see", "probability": 0.759765625}, {"start": 363.0, "end": 363.16, "word": " that", "probability": 0.5673828125}, {"start": 363.16, "end": 363.2, "word": " we", "probability": 0.939453125}, {"start": 363.2, "end": 363.42, "word": " need", "probability": 0.80322265625}, {"start": 363.42, "end": 363.56, "word": " an", "probability": 0.845703125}, {"start": 363.56, "end": 364.22, "word": " easy", "probability": 0.8447265625}, {"start": 364.22, "end": 364.3, "word": " solution.", "probability": 0.9189453125}], "temperature": 1.0}, {"id": 17, "seek": 38976, "start": 370.56, "end": 389.76, "text": "A, B, C, and D should communicate with each other And this scenario is very common in apps For example, when I was working on Android apps, sometimes when they design screens, they divide them into parts and call them fragments", "tokens": [32, 11, 363, 11, 383, 11, 293, 413, 820, 7890, 365, 1184, 661, 400, 341, 9005, 307, 588, 2689, 294, 7733, 1171, 1365, 11, 562, 286, 390, 1364, 322, 8853, 7733, 11, 2171, 562, 436, 1715, 11171, 11, 436, 9845, 552, 666, 3166, 293, 818, 552, 29197], "avg_logprob": -0.6569010180731615, "compression_ratio": 1.4367088607594938, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 370.56, "end": 371.16, "word": "A,", "probability": 0.12042236328125}, {"start": 372.1, "end": 372.46, "word": " B,", "probability": 0.6337890625}, {"start": 373.92, "end": 374.34, "word": " C,", "probability": 0.9453125}, {"start": 375.52, "end": 375.58, "word": " and", "probability": 0.6318359375}, {"start": 375.58, "end": 375.8, "word": " D", "probability": 0.994140625}, {"start": 375.8, "end": 376.48, "word": " should", "probability": 0.153564453125}, {"start": 376.48, "end": 376.82, "word": " communicate", "probability": 0.244873046875}, {"start": 376.82, "end": 377.04, "word": " with", "probability": 0.69775390625}, {"start": 377.04, "end": 377.28, "word": " each", "probability": 0.9150390625}, {"start": 377.28, "end": 377.28, "word": " other", "probability": 0.884765625}, {"start": 377.28, "end": 377.38, "word": " And", "probability": 0.136474609375}, {"start": 377.38, "end": 377.56, "word": " this", "probability": 0.810546875}, {"start": 377.56, "end": 377.92, "word": " scenario", "probability": 0.61083984375}, {"start": 377.92, "end": 378.32, "word": " is", "probability": 0.359375}, {"start": 378.32, "end": 378.44, "word": " very", "probability": 0.30419921875}, {"start": 378.44, "end": 378.92, "word": " common", "probability": 0.25048828125}, {"start": 378.92, "end": 379.78, "word": " in", "probability": 0.595703125}, {"start": 379.78, "end": 380.24, "word": " apps", "probability": 0.452392578125}, {"start": 380.24, "end": 381.16, "word": " For", "probability": 0.416259765625}, {"start": 381.16, "end": 381.5, "word": " example,", "probability": 0.91650390625}, {"start": 381.74, "end": 382.18, "word": " when", "probability": 0.6103515625}, {"start": 382.18, "end": 382.48, "word": " I", "probability": 0.96923828125}, {"start": 382.48, "end": 382.48, "word": " was", "probability": 0.380126953125}, {"start": 382.48, "end": 382.64, "word": " working", "probability": 0.54052734375}, {"start": 382.64, "end": 382.76, "word": " on", "probability": 0.462646484375}, {"start": 382.76, "end": 383.52, "word": " Android", "probability": 0.48486328125}, {"start": 383.52, "end": 383.58, "word": " apps,", "probability": 0.7255859375}, {"start": 383.78, "end": 384.0, "word": " sometimes", "probability": 0.6005859375}, {"start": 384.0, "end": 386.0, "word": " when", "probability": 0.223388671875}, {"start": 386.0, "end": 386.6, "word": " they", "probability": 0.2900390625}, {"start": 386.6, "end": 386.88, "word": " design", "probability": 0.441162109375}, {"start": 386.88, "end": 387.4, "word": " screens,", "probability": 0.57958984375}, {"start": 387.5, "end": 387.62, "word": " they", "probability": 0.8212890625}, {"start": 387.62, "end": 388.26, "word": " divide", "probability": 0.62109375}, {"start": 388.26, "end": 388.46, "word": " them", "probability": 0.5126953125}, {"start": 388.46, "end": 388.58, "word": " into", "probability": 0.751953125}, {"start": 388.58, "end": 388.88, "word": " parts", "probability": 0.368896484375}, {"start": 388.88, "end": 389.0, "word": " and", "probability": 0.2939453125}, {"start": 389.0, "end": 389.18, "word": " call", "probability": 0.755859375}, {"start": 389.18, "end": 389.28, "word": " them", "probability": 0.787109375}, {"start": 389.28, "end": 389.76, "word": " fragments", "probability": 0.71630859375}], "temperature": 1.0}, {"id": 18, "seek": 41593, "start": 390.93, "end": 415.93, "text": " it can be a part of the screen and another part of the screen and these parts are programmed separately for example this part is in class and this part is in class and this part is in class but of course these parts need to send data to each other for example this one has changed or I clicked on the button and it wants to tell this one this one has changed the content many times I click on something and it wants to change the list that is displayed here", "tokens": [309, 393, 312, 257, 644, 295, 264, 2568, 293, 1071, 644, 295, 264, 2568, 293, 613, 3166, 366, 31092, 14759, 337, 1365, 341, 644, 307, 294, 1508, 293, 341, 644, 307, 294, 1508, 293, 341, 644, 307, 294, 1508, 457, 295, 1164, 613, 3166, 643, 281, 2845, 1412, 281, 1184, 661, 337, 1365, 341, 472, 575, 3105, 420, 286, 23370, 322, 264, 2960, 293, 309, 2738, 281, 980, 341, 472, 341, 472, 575, 3105, 264, 2701, 867, 1413, 286, 2052, 322, 746, 293, 309, 2738, 281, 1319, 264, 1329, 300, 307, 16372, 510], "avg_logprob": -0.5548536955042088, "compression_ratio": 2.21256038647343, "no_speech_prob": 4.589557647705078e-06, "words": [{"start": 390.93, "end": 391.35, "word": " it", "probability": 0.150146484375}, {"start": 391.35, "end": 391.57, "word": " can", "probability": 0.343994140625}, {"start": 391.57, "end": 391.81, "word": " be", "probability": 0.8505859375}, {"start": 391.81, "end": 392.09, "word": " a", "probability": 0.377685546875}, {"start": 392.09, "end": 392.27, "word": " part", "probability": 0.57861328125}, {"start": 392.27, "end": 392.41, "word": " of", "probability": 0.72802734375}, {"start": 392.41, "end": 392.53, "word": " the", "probability": 0.5537109375}, {"start": 392.53, "end": 392.79, "word": " screen", "probability": 0.79052734375}, {"start": 392.79, "end": 392.99, "word": " and", "probability": 0.54541015625}, {"start": 392.99, "end": 393.19, "word": " another", "probability": 0.58349609375}, {"start": 393.19, "end": 393.57, "word": " part", "probability": 0.814453125}, {"start": 393.57, "end": 395.17, "word": " of", "probability": 0.353515625}, {"start": 395.17, "end": 395.17, "word": " the", "probability": 0.529296875}, {"start": 395.17, "end": 395.17, "word": " screen", "probability": 0.84814453125}, {"start": 395.17, "end": 395.35, "word": " and", "probability": 0.607421875}, {"start": 395.35, "end": 395.43, "word": " these", "probability": 0.321044921875}, {"start": 395.43, "end": 395.77, "word": " parts", "probability": 0.79541015625}, {"start": 395.77, "end": 396.95, "word": " are", "probability": 0.6318359375}, {"start": 396.95, "end": 397.23, "word": " programmed", "probability": 0.42919921875}, {"start": 397.23, "end": 398.03, "word": " separately", "probability": 0.470703125}, {"start": 398.03, "end": 399.17, "word": " for", "probability": 0.1475830078125}, {"start": 399.17, "end": 399.17, "word": " example", "probability": 0.85888671875}, {"start": 399.17, "end": 399.35, "word": " this", "probability": 0.5693359375}, {"start": 399.35, "end": 399.45, "word": " part", "probability": 0.274169921875}, {"start": 399.45, "end": 399.59, "word": " is", "probability": 0.59814453125}, {"start": 399.59, "end": 400.53, "word": " in", "probability": 0.66064453125}, {"start": 400.53, "end": 401.23, "word": " class", "probability": 0.7392578125}, {"start": 401.23, "end": 401.35, "word": " and", "probability": 0.7861328125}, {"start": 401.35, "end": 401.49, "word": " this", "probability": 0.55615234375}, {"start": 401.49, "end": 401.51, "word": " part", "probability": 0.5419921875}, {"start": 401.51, "end": 401.59, "word": " is", "probability": 0.78466796875}, {"start": 401.59, "end": 401.65, "word": " in", "probability": 0.869140625}, {"start": 401.65, "end": 401.95, "word": " class", "probability": 0.9501953125}, {"start": 401.95, "end": 402.07, "word": " and", "probability": 0.638671875}, {"start": 402.07, "end": 402.17, "word": " this", "probability": 0.771484375}, {"start": 402.17, "end": 402.17, "word": " part", "probability": 0.79638671875}, {"start": 402.17, "end": 402.21, "word": " is", "probability": 0.88037109375}, {"start": 402.21, "end": 402.27, "word": " in", "probability": 0.91015625}, {"start": 402.27, "end": 402.59, "word": " class", "probability": 0.96435546875}, {"start": 402.59, "end": 403.31, "word": " but", "probability": 0.685546875}, {"start": 403.31, "end": 403.63, "word": " of", "probability": 0.1761474609375}, {"start": 403.63, "end": 403.69, "word": " course", "probability": 0.93212890625}, {"start": 403.69, "end": 403.87, "word": " these", "probability": 0.7294921875}, {"start": 403.87, "end": 404.19, "word": " parts", "probability": 0.87353515625}, {"start": 404.19, "end": 404.77, "word": " need", "probability": 0.5751953125}, {"start": 404.77, "end": 404.93, "word": " to", "probability": 0.962890625}, {"start": 404.93, "end": 405.11, "word": " send", "probability": 0.6953125}, {"start": 405.11, "end": 406.39, "word": " data", "probability": 0.446044921875}, {"start": 406.39, "end": 406.61, "word": " to", "probability": 0.90576171875}, {"start": 406.61, "end": 406.61, "word": " each", "probability": 0.9287109375}, {"start": 406.61, "end": 406.61, "word": " other", "probability": 0.8798828125}, {"start": 406.61, "end": 406.89, "word": " for", "probability": 0.3935546875}, {"start": 406.89, "end": 406.89, "word": " example", "probability": 0.90380859375}, {"start": 406.89, "end": 407.13, "word": " this", "probability": 0.52783203125}, {"start": 407.13, "end": 407.25, "word": " one", "probability": 0.2197265625}, {"start": 407.25, "end": 407.67, "word": " has", "probability": 0.1976318359375}, {"start": 407.67, "end": 408.17, "word": " changed", "probability": 0.513671875}, {"start": 408.17, "end": 408.41, "word": " or", "probability": 0.50732421875}, {"start": 408.41, "end": 408.45, "word": " I", "probability": 0.50830078125}, {"start": 408.45, "end": 408.69, "word": " clicked", "probability": 0.396484375}, {"start": 408.69, "end": 408.87, "word": " on", "probability": 0.80908203125}, {"start": 408.87, "end": 408.97, "word": " the", "probability": 0.45751953125}, {"start": 408.97, "end": 409.15, "word": " button", "probability": 0.8154296875}, {"start": 409.15, "end": 409.29, "word": " and", "probability": 0.3828125}, {"start": 409.29, "end": 409.29, "word": " it", "probability": 0.72412109375}, {"start": 409.29, "end": 409.43, "word": " wants", "probability": 0.2484130859375}, {"start": 409.43, "end": 409.43, "word": " to", "probability": 0.9677734375}, {"start": 409.43, "end": 409.61, "word": " tell", "probability": 0.13720703125}, {"start": 409.61, "end": 409.95, "word": " this", "probability": 0.499755859375}, {"start": 409.95, "end": 410.03, "word": " one", "probability": 0.607421875}, {"start": 410.03, "end": 411.21, "word": " this", "probability": 0.390380859375}, {"start": 411.21, "end": 411.49, "word": " one", "probability": 0.81787109375}, {"start": 411.49, "end": 411.75, "word": " has", "probability": 0.46337890625}, {"start": 411.75, "end": 412.31, "word": " changed", "probability": 0.80908203125}, {"start": 412.31, "end": 412.53, "word": " the", "probability": 0.27197265625}, {"start": 412.53, "end": 412.87, "word": " content", "probability": 0.8662109375}, {"start": 412.87, "end": 413.09, "word": " many", "probability": 0.197265625}, {"start": 413.09, "end": 413.25, "word": " times", "probability": 0.90380859375}, {"start": 413.25, "end": 413.43, "word": " I", "probability": 0.350830078125}, {"start": 413.43, "end": 413.57, "word": " click", "probability": 0.64892578125}, {"start": 413.57, "end": 413.75, "word": " on", "probability": 0.908203125}, {"start": 413.75, "end": 414.05, "word": " something", "probability": 0.69091796875}, {"start": 414.05, "end": 414.15, "word": " and", "probability": 0.77294921875}, {"start": 414.15, "end": 414.17, "word": " it", "probability": 0.833984375}, {"start": 414.17, "end": 414.29, "word": " wants", "probability": 0.56396484375}, {"start": 414.29, "end": 414.35, "word": " to", "probability": 0.96533203125}, {"start": 414.35, "end": 414.57, "word": " change", "probability": 0.8828125}, {"start": 414.57, "end": 414.71, "word": " the", "probability": 0.8837890625}, {"start": 414.71, "end": 414.95, "word": " list", "probability": 0.705078125}, {"start": 414.95, "end": 415.15, "word": " that", "probability": 0.404541015625}, {"start": 415.15, "end": 415.45, "word": " is", "probability": 0.51904296875}, {"start": 415.45, "end": 415.67, "word": " displayed", "probability": 0.54052734375}, {"start": 415.67, "end": 415.93, "word": " here", "probability": 0.7890625}], "temperature": 1.0}, {"id": 19, "seek": 43662, "start": 416.56, "end": 436.62, "text": " Now I press on a certain button and it will change here and here Notice that they all send and receive from each other So applying the observer pattern here is difficult Okay, let's get back to our topic How these four components need to communicate with each other easily The idea we are going to do is similar to", "tokens": [823, 286, 1886, 322, 257, 1629, 2960, 293, 309, 486, 1319, 510, 293, 510, 13428, 300, 436, 439, 2845, 293, 4774, 490, 1184, 661, 407, 9275, 264, 27878, 5102, 510, 307, 2252, 1033, 11, 718, 311, 483, 646, 281, 527, 4829, 1012, 613, 1451, 6677, 643, 281, 7890, 365, 1184, 661, 3612, 440, 1558, 321, 366, 516, 281, 360, 307, 2531, 281], "avg_logprob": -0.6170634901712811, "compression_ratio": 1.529126213592233, "no_speech_prob": 3.159046173095703e-06, "words": [{"start": 416.56, "end": 417.02, "word": " Now", "probability": 0.0662841796875}, {"start": 417.02, "end": 417.56, "word": " I", "probability": 0.412353515625}, {"start": 417.56, "end": 417.74, "word": " press", "probability": 0.283447265625}, {"start": 417.74, "end": 417.94, "word": " on", "probability": 0.398681640625}, {"start": 417.94, "end": 418.04, "word": " a", "probability": 0.65673828125}, {"start": 418.04, "end": 418.5, "word": " certain", "probability": 0.2210693359375}, {"start": 418.5, "end": 418.5, "word": " button", "probability": 0.806640625}, {"start": 418.5, "end": 418.7, "word": " and", "probability": 0.393798828125}, {"start": 418.7, "end": 418.7, "word": " it", "probability": 0.6845703125}, {"start": 418.7, "end": 418.78, "word": " will", "probability": 0.348876953125}, {"start": 418.78, "end": 419.06, "word": " change", "probability": 0.75244140625}, {"start": 419.06, "end": 419.36, "word": " here", "probability": 0.3232421875}, {"start": 419.36, "end": 419.54, "word": " and", "probability": 0.8017578125}, {"start": 419.54, "end": 420.78, "word": " here", "probability": 0.499267578125}, {"start": 420.78, "end": 421.18, "word": " Notice", "probability": 0.29833984375}, {"start": 421.18, "end": 421.5, "word": " that", "probability": 0.76806640625}, {"start": 421.5, "end": 421.9, "word": " they", "probability": 0.383544921875}, {"start": 421.9, "end": 421.9, "word": " all", "probability": 0.66748046875}, {"start": 421.9, "end": 422.28, "word": " send", "probability": 0.344482421875}, {"start": 422.28, "end": 422.48, "word": " and", "probability": 0.71142578125}, {"start": 422.48, "end": 422.7, "word": " receive", "probability": 0.93505859375}, {"start": 422.7, "end": 424.86, "word": " from", "probability": 0.490234375}, {"start": 424.86, "end": 425.14, "word": " each", "probability": 0.8876953125}, {"start": 425.14, "end": 425.26, "word": " other", "probability": 0.88623046875}, {"start": 425.26, "end": 426.12, "word": " So", "probability": 0.421630859375}, {"start": 426.12, "end": 426.42, "word": " applying", "probability": 0.491455078125}, {"start": 426.42, "end": 426.6, "word": " the", "probability": 0.66650390625}, {"start": 426.6, "end": 426.94, "word": " observer", "probability": 0.76123046875}, {"start": 426.94, "end": 427.36, "word": " pattern", "probability": 0.9013671875}, {"start": 427.36, "end": 427.6, "word": " here", "probability": 0.658203125}, {"start": 427.6, "end": 428.0, "word": " is", "probability": 0.89453125}, {"start": 428.0, "end": 428.26, "word": " difficult", "probability": 0.541015625}, {"start": 428.26, "end": 428.66, "word": " Okay,", "probability": 0.2008056640625}, {"start": 428.94, "end": 429.12, "word": " let's", "probability": 0.843017578125}, {"start": 429.12, "end": 429.24, "word": " get", "probability": 0.4443359375}, {"start": 429.24, "end": 429.3, "word": " back", "probability": 0.865234375}, {"start": 429.3, "end": 429.34, "word": " to", "probability": 0.9208984375}, {"start": 429.34, "end": 429.4, "word": " our", "probability": 0.64892578125}, {"start": 429.4, "end": 429.66, "word": " topic", "probability": 0.61669921875}, {"start": 429.66, "end": 430.04, "word": " How", "probability": 0.4638671875}, {"start": 430.04, "end": 430.74, "word": " these", "probability": 0.533203125}, {"start": 430.74, "end": 431.16, "word": " four", "probability": 0.64501953125}, {"start": 431.16, "end": 431.72, "word": " components", "probability": 0.92138671875}, {"start": 431.72, "end": 432.22, "word": " need", "probability": 0.11572265625}, {"start": 432.22, "end": 432.38, "word": " to", "probability": 0.97021484375}, {"start": 432.38, "end": 432.68, "word": " communicate", "probability": 0.343994140625}, {"start": 432.68, "end": 432.86, "word": " with", "probability": 0.64990234375}, {"start": 432.86, "end": 433.26, "word": " each", "probability": 0.94580078125}, {"start": 433.26, "end": 433.26, "word": " other", "probability": 0.89501953125}, {"start": 433.26, "end": 434.08, "word": " easily", "probability": 0.78076171875}, {"start": 434.08, "end": 434.7, "word": " The", "probability": 0.59375}, {"start": 434.7, "end": 434.98, "word": " idea", "probability": 0.8173828125}, {"start": 434.98, "end": 435.16, "word": " we", "probability": 0.457763671875}, {"start": 435.16, "end": 435.28, "word": " are", "probability": 0.25341796875}, {"start": 435.28, "end": 435.44, "word": " going", "probability": 0.256591796875}, {"start": 435.44, "end": 435.5, "word": " to", "probability": 0.9638671875}, {"start": 435.5, "end": 435.5, "word": " do", "probability": 0.29931640625}, {"start": 435.5, "end": 435.88, "word": " is", "probability": 0.83740234375}, {"start": 435.88, "end": 436.42, "word": " similar", "probability": 0.6181640625}, {"start": 436.42, "end": 436.62, "word": " to", "probability": 0.92919921875}], "temperature": 1.0}, {"id": 20, "seek": 46428, "start": 437.8, "end": 464.28, "text": " By what happens in the computer networks If I have a computer network and I have computers that I want to connect to one network What do we do? We make the ethernet network where I have a bus topology And each one connects to whom? To the bus, like this This computer network will have a bus like this This bus is separated from them, right? No, it's in the middle", "tokens": [3146, 437, 2314, 294, 264, 3820, 9590, 759, 286, 362, 257, 3820, 3209, 293, 286, 362, 10807, 300, 286, 528, 281, 1745, 281, 472, 3209, 708, 360, 321, 360, 30, 492, 652, 264, 37096, 7129, 3209, 689, 286, 362, 257, 1255, 1192, 1793, 400, 1184, 472, 16967, 281, 7101, 30, 1407, 264, 1255, 11, 411, 341, 639, 3820, 3209, 486, 362, 257, 1255, 411, 341, 639, 1255, 307, 12005, 490, 552, 11, 558, 30, 883, 11, 309, 311, 294, 264, 2808], "avg_logprob": -0.5503048591497468, "compression_ratio": 1.8622448979591837, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 437.8, "end": 438.16, "word": " By", "probability": 0.154541015625}, {"start": 438.16, "end": 438.58, "word": " what", "probability": 0.83251953125}, {"start": 438.58, "end": 439.02, "word": " happens", "probability": 0.74951171875}, {"start": 439.02, "end": 439.32, "word": " in", "probability": 0.65283203125}, {"start": 439.32, "end": 439.86, "word": " the", "probability": 0.2802734375}, {"start": 439.86, "end": 440.16, "word": " computer", "probability": 0.481689453125}, {"start": 440.16, "end": 440.24, "word": " networks", "probability": 0.82177734375}, {"start": 440.24, "end": 440.96, "word": " If", "probability": 0.137451171875}, {"start": 440.96, "end": 441.3, "word": " I", "probability": 0.451416015625}, {"start": 441.3, "end": 441.54, "word": " have", "probability": 0.55712890625}, {"start": 441.54, "end": 441.54, "word": " a", "probability": 0.23974609375}, {"start": 441.54, "end": 441.54, "word": " computer", "probability": 0.84521484375}, {"start": 441.54, "end": 441.54, "word": " network", "probability": 0.33544921875}, {"start": 441.54, "end": 442.28, "word": " and", "probability": 0.3759765625}, {"start": 442.28, "end": 442.48, "word": " I", "probability": 0.65283203125}, {"start": 442.48, "end": 442.48, "word": " have", "probability": 0.70703125}, {"start": 442.48, "end": 442.72, "word": " computers", "probability": 0.34423828125}, {"start": 442.72, "end": 443.3, "word": " that", "probability": 0.55322265625}, {"start": 443.3, "end": 443.4, "word": " I", "probability": 0.5654296875}, {"start": 443.4, "end": 443.5, "word": " want", "probability": 0.2088623046875}, {"start": 443.5, "end": 443.5, "word": " to", "probability": 0.96533203125}, {"start": 443.5, "end": 443.66, "word": " connect", "probability": 0.7880859375}, {"start": 443.66, "end": 443.84, "word": " to", "probability": 0.40234375}, {"start": 443.84, "end": 444.2, "word": " one", "probability": 0.144775390625}, {"start": 444.2, "end": 444.5, "word": " network", "probability": 0.80517578125}, {"start": 444.5, "end": 445.48, "word": " What", "probability": 0.497314453125}, {"start": 445.48, "end": 445.58, "word": " do", "probability": 0.72705078125}, {"start": 445.58, "end": 445.72, "word": " we", "probability": 0.80322265625}, {"start": 445.72, "end": 445.92, "word": " do?", "probability": 0.947265625}, {"start": 446.18, "end": 446.42, "word": " We", "probability": 0.646484375}, {"start": 446.42, "end": 446.78, "word": " make", "probability": 0.2978515625}, {"start": 446.78, "end": 447.56, "word": " the", "probability": 0.41455078125}, {"start": 447.56, "end": 448.06, "word": " ethernet", "probability": 0.7135009765625}, {"start": 448.06, "end": 448.06, "word": " network", "probability": 0.921875}, {"start": 448.06, "end": 448.34, "word": " where", "probability": 0.11328125}, {"start": 448.34, "end": 448.68, "word": " I", "probability": 0.75537109375}, {"start": 448.68, "end": 448.68, "word": " have", "probability": 0.8994140625}, {"start": 448.68, "end": 448.78, "word": " a", "probability": 0.84912109375}, {"start": 448.78, "end": 448.9, "word": " bus", "probability": 0.6923828125}, {"start": 448.9, "end": 449.42, "word": " topology", "probability": 0.93115234375}, {"start": 449.42, "end": 451.26, "word": " And", "probability": 0.384521484375}, {"start": 451.26, "end": 451.54, "word": " each", "probability": 0.6181640625}, {"start": 451.54, "end": 451.82, "word": " one", "probability": 0.466064453125}, {"start": 451.82, "end": 452.06, "word": " connects", "probability": 0.75244140625}, {"start": 452.06, "end": 452.3, "word": " to", "probability": 0.818359375}, {"start": 452.3, "end": 452.48, "word": " whom?", "probability": 0.358642578125}, {"start": 453.4, "end": 453.88, "word": " To", "probability": 0.4677734375}, {"start": 453.88, "end": 453.98, "word": " the", "probability": 0.88037109375}, {"start": 453.98, "end": 454.2, "word": " bus,", "probability": 0.94091796875}, {"start": 454.28, "end": 454.4, "word": " like", "probability": 0.352783203125}, {"start": 454.4, "end": 455.94, "word": " this", "probability": 0.85546875}, {"start": 455.94, "end": 458.2, "word": " This", "probability": 0.51806640625}, {"start": 458.2, "end": 458.58, "word": " computer", "probability": 0.67138671875}, {"start": 458.58, "end": 459.16, "word": " network", "probability": 0.96044921875}, {"start": 459.16, "end": 459.36, "word": " will", "probability": 0.2379150390625}, {"start": 459.36, "end": 459.6, "word": " have", "probability": 0.79345703125}, {"start": 459.6, "end": 459.76, "word": " a", "probability": 0.91650390625}, {"start": 459.76, "end": 459.98, "word": " bus", "probability": 0.9326171875}, {"start": 459.98, "end": 460.24, "word": " like", "probability": 0.8701171875}, {"start": 460.24, "end": 460.76, "word": " this", "probability": 0.93505859375}, {"start": 460.76, "end": 461.74, "word": " This", "probability": 0.6953125}, {"start": 461.74, "end": 462.02, "word": " bus", "probability": 0.947265625}, {"start": 462.02, "end": 462.2, "word": " is", "probability": 0.7880859375}, {"start": 462.2, "end": 462.5, "word": " separated", "probability": 0.48291015625}, {"start": 462.5, "end": 462.72, "word": " from", "probability": 0.8828125}, {"start": 462.72, "end": 462.9, "word": " them,", "probability": 0.783203125}, {"start": 463.04, "end": 463.2, "word": " right?", "probability": 0.568359375}, {"start": 463.38, "end": 463.5, "word": " No,", "probability": 0.701171875}, {"start": 463.54, "end": 463.7, "word": " it's", "probability": 0.514404296875}, {"start": 463.7, "end": 463.9, "word": " in", "probability": 0.25244140625}, {"start": 463.9, "end": 464.06, "word": " the", "probability": 0.787109375}, {"start": 464.06, "end": 464.28, "word": " middle", "probability": 0.9345703125}], "temperature": 1.0}, {"id": 21, "seek": 49241, "start": 465.09, "end": 492.41, "text": " But anyone who wants to connect to the internet has to connect to the bus What happens now is that A wants to send a message to B, C and D What does A do? A sends a message to whom? To the bus And what does the bus do? It broadcasts the message So this bus sends a message to B, D and C Now the same idea, D wants to send a message to A, B and C", "tokens": [583, 2878, 567, 2738, 281, 1745, 281, 264, 4705, 575, 281, 1745, 281, 264, 1255, 708, 2314, 586, 307, 300, 316, 2738, 281, 2845, 257, 3636, 281, 363, 11, 383, 293, 413, 708, 775, 316, 360, 30, 316, 14790, 257, 3636, 281, 7101, 30, 1407, 264, 1255, 400, 437, 775, 264, 1255, 360, 30, 467, 9975, 82, 264, 3636, 407, 341, 1255, 14790, 257, 3636, 281, 363, 11, 413, 293, 383, 823, 264, 912, 1558, 11, 413, 2738, 281, 2845, 257, 3636, 281, 316, 11, 363, 293, 383], "avg_logprob": -0.3806179828858108, "compression_ratio": 1.9548022598870056, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 465.09, "end": 465.37, "word": " But", "probability": 0.3564453125}, {"start": 465.37, "end": 465.65, "word": " anyone", "probability": 0.52734375}, {"start": 465.65, "end": 465.89, "word": " who", "probability": 0.58447265625}, {"start": 465.89, "end": 465.97, "word": " wants", "probability": 0.68505859375}, {"start": 465.97, "end": 465.97, "word": " to", "probability": 0.958984375}, {"start": 465.97, "end": 466.15, "word": " connect", "probability": 0.78125}, {"start": 466.15, "end": 466.29, "word": " to", "probability": 0.5009765625}, {"start": 466.29, "end": 466.39, "word": " the", "probability": 0.603515625}, {"start": 466.39, "end": 466.65, "word": " internet", "probability": 0.52880859375}, {"start": 466.65, "end": 466.85, "word": " has", "probability": 0.27978515625}, {"start": 466.85, "end": 467.05, "word": " to", "probability": 0.97021484375}, {"start": 467.05, "end": 467.21, "word": " connect", "probability": 0.60595703125}, {"start": 467.21, "end": 467.45, "word": " to", "probability": 0.64306640625}, {"start": 467.45, "end": 468.33, "word": " the", "probability": 0.368408203125}, {"start": 468.33, "end": 468.53, "word": " bus", "probability": 0.75537109375}, {"start": 468.53, "end": 469.13, "word": " What", "probability": 0.328369140625}, {"start": 469.13, "end": 469.39, "word": " happens", "probability": 0.62451171875}, {"start": 469.39, "end": 469.85, "word": " now", "probability": 0.83349609375}, {"start": 469.85, "end": 470.05, "word": " is", "probability": 0.6982421875}, {"start": 470.05, "end": 470.21, "word": " that", "probability": 0.5966796875}, {"start": 470.21, "end": 470.29, "word": " A", "probability": 0.421142578125}, {"start": 470.29, "end": 470.71, "word": " wants", "probability": 0.62890625}, {"start": 470.71, "end": 470.85, "word": " to", "probability": 0.96923828125}, {"start": 470.85, "end": 471.07, "word": " send", "probability": 0.7294921875}, {"start": 471.07, "end": 471.29, "word": " a", "probability": 0.356689453125}, {"start": 471.29, "end": 471.29, "word": " message", "probability": 0.85888671875}, {"start": 471.29, "end": 471.39, "word": " to", "probability": 0.9482421875}, {"start": 471.39, "end": 471.83, "word": " B,", "probability": 0.939453125}, {"start": 472.01, "end": 472.17, "word": " C", "probability": 0.66552734375}, {"start": 472.17, "end": 472.37, "word": " and", "probability": 0.488525390625}, {"start": 472.37, "end": 472.53, "word": " D", "probability": 0.99658203125}, {"start": 472.53, "end": 473.63, "word": " What", "probability": 0.48681640625}, {"start": 473.63, "end": 473.69, "word": " does", "probability": 0.75341796875}, {"start": 473.69, "end": 473.83, "word": " A", "probability": 0.6650390625}, {"start": 473.83, "end": 474.05, "word": " do?", "probability": 0.79736328125}, {"start": 474.21, "end": 474.53, "word": " A", "probability": 0.67431640625}, {"start": 474.53, "end": 475.07, "word": " sends", "probability": 0.248046875}, {"start": 475.07, "end": 475.29, "word": " a", "probability": 0.61181640625}, {"start": 475.29, "end": 475.51, "word": " message", "probability": 0.9150390625}, {"start": 475.51, "end": 475.69, "word": " to", "probability": 0.9365234375}, {"start": 475.69, "end": 475.81, "word": " whom?", "probability": 0.26806640625}, {"start": 476.41, "end": 476.85, "word": " To", "probability": 0.81689453125}, {"start": 476.85, "end": 476.95, "word": " the", "probability": 0.90087890625}, {"start": 476.95, "end": 477.19, "word": " bus", "probability": 0.92578125}, {"start": 477.19, "end": 477.81, "word": " And", "probability": 0.51611328125}, {"start": 477.81, "end": 477.95, "word": " what", "probability": 0.36181640625}, {"start": 477.95, "end": 477.95, "word": " does", "probability": 0.95458984375}, {"start": 477.95, "end": 477.97, "word": " the", "probability": 0.8642578125}, {"start": 477.97, "end": 478.15, "word": " bus", "probability": 0.93701171875}, {"start": 478.15, "end": 478.63, "word": " do?", "probability": 0.95166015625}, {"start": 478.77, "end": 478.89, "word": " It", "probability": 0.4150390625}, {"start": 478.89, "end": 480.51, "word": " broadcasts", "probability": 0.875}, {"start": 480.51, "end": 480.93, "word": " the", "probability": 0.73876953125}, {"start": 480.93, "end": 481.29, "word": " message", "probability": 0.90234375}, {"start": 481.29, "end": 481.85, "word": " So", "probability": 0.38623046875}, {"start": 481.85, "end": 482.15, "word": " this", "probability": 0.456787109375}, {"start": 482.15, "end": 482.43, "word": " bus", "probability": 0.861328125}, {"start": 482.43, "end": 483.35, "word": " sends", "probability": 0.45458984375}, {"start": 483.35, "end": 483.75, "word": " a", "probability": 0.587890625}, {"start": 483.75, "end": 483.75, "word": " message", "probability": 0.93505859375}, {"start": 483.75, "end": 483.81, "word": " to", "probability": 0.96826171875}, {"start": 483.81, "end": 484.09, "word": " B,", "probability": 0.974609375}, {"start": 485.29, "end": 485.75, "word": " D", "probability": 0.5830078125}, {"start": 485.75, "end": 486.77, "word": " and", "probability": 0.82080078125}, {"start": 486.77, "end": 487.29, "word": " C", "probability": 0.99072265625}, {"start": 487.29, "end": 489.31, "word": " Now", "probability": 0.41845703125}, {"start": 489.31, "end": 489.55, "word": " the", "probability": 0.357421875}, {"start": 489.55, "end": 489.55, "word": " same", "probability": 0.75927734375}, {"start": 489.55, "end": 489.93, "word": " idea,", "probability": 0.6572265625}, {"start": 490.07, "end": 490.39, "word": " D", "probability": 0.92724609375}, {"start": 490.39, "end": 490.57, "word": " wants", "probability": 0.64697265625}, {"start": 490.57, "end": 490.71, "word": " to", "probability": 0.9697265625}, {"start": 490.71, "end": 490.89, "word": " send", "probability": 0.763671875}, {"start": 490.89, "end": 491.07, "word": " a", "probability": 0.90625}, {"start": 491.07, "end": 491.07, "word": " message", "probability": 0.943359375}, {"start": 491.07, "end": 491.13, "word": " to", "probability": 0.97314453125}, {"start": 491.13, "end": 491.77, "word": " A,", "probability": 0.96240234375}, {"start": 491.89, "end": 492.05, "word": " B", "probability": 0.94384765625}, {"start": 492.05, "end": 492.17, "word": " and", "probability": 0.82470703125}, {"start": 492.17, "end": 492.41, "word": " C", "probability": 0.9990234375}], "temperature": 1.0}, {"id": 22, "seek": 51447, "start": 493.37, "end": 514.47, "text": " The B and the D connects to the bus and the bus is the one that delivers the message to everyone If someone wants to publish for everyone, but sometimes the A wants to send a message to whom? To the D The same idea will happen, the A will send a message to the bus, but the bus does not understand what it is doing, it takes the message and distributes it to everyone Now this D", "tokens": [440, 363, 293, 264, 413, 16967, 281, 264, 1255, 293, 264, 1255, 307, 264, 472, 300, 24860, 264, 3636, 281, 1518, 759, 1580, 2738, 281, 11374, 337, 1518, 11, 457, 2171, 264, 316, 2738, 281, 2845, 257, 3636, 281, 7101, 30, 1407, 264, 413, 440, 912, 1558, 486, 1051, 11, 264, 316, 486, 2845, 257, 3636, 281, 264, 1255, 11, 457, 264, 1255, 775, 406, 1223, 437, 309, 307, 884, 11, 309, 2516, 264, 3636, 293, 4400, 1819, 309, 281, 1518, 823, 341, 413], "avg_logprob": -0.5496323473313276, "compression_ratio": 1.895, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 493.37, "end": 493.65, "word": " The", "probability": 0.15283203125}, {"start": 493.65, "end": 493.85, "word": " B", "probability": 0.5654296875}, {"start": 493.85, "end": 494.09, "word": " and", "probability": 0.35498046875}, {"start": 494.09, "end": 494.11, "word": " the", "probability": 0.31689453125}, {"start": 494.11, "end": 494.23, "word": " D", "probability": 0.986328125}, {"start": 494.23, "end": 494.55, "word": " connects", "probability": 0.070556640625}, {"start": 494.55, "end": 494.79, "word": " to", "probability": 0.82861328125}, {"start": 494.79, "end": 494.89, "word": " the", "probability": 0.8671875}, {"start": 494.89, "end": 495.01, "word": " bus", "probability": 0.70068359375}, {"start": 495.01, "end": 495.13, "word": " and", "probability": 0.59423828125}, {"start": 495.13, "end": 495.25, "word": " the", "probability": 0.71630859375}, {"start": 495.25, "end": 495.43, "word": " bus", "probability": 0.9248046875}, {"start": 495.43, "end": 495.57, "word": " is", "probability": 0.285888671875}, {"start": 495.57, "end": 495.69, "word": " the", "probability": 0.26904296875}, {"start": 495.69, "end": 495.69, "word": " one", "probability": 0.58837890625}, {"start": 495.69, "end": 495.73, "word": " that", "probability": 0.5400390625}, {"start": 495.73, "end": 496.17, "word": " delivers", "probability": 0.112548828125}, {"start": 496.17, "end": 497.51, "word": " the", "probability": 0.65283203125}, {"start": 497.51, "end": 497.51, "word": " message", "probability": 0.445556640625}, {"start": 497.51, "end": 497.61, "word": " to", "probability": 0.52685546875}, {"start": 497.61, "end": 497.87, "word": " everyone", "probability": 0.62548828125}, {"start": 497.87, "end": 499.85, "word": " If", "probability": 0.164306640625}, {"start": 499.85, "end": 500.67, "word": " someone", "probability": 0.471435546875}, {"start": 500.67, "end": 500.89, "word": " wants", "probability": 0.5791015625}, {"start": 500.89, "end": 500.89, "word": " to", "probability": 0.970703125}, {"start": 500.89, "end": 501.33, "word": " publish", "probability": 0.7373046875}, {"start": 501.33, "end": 501.53, "word": " for", "probability": 0.2135009765625}, {"start": 501.53, "end": 501.79, "word": " everyone,", "probability": 0.69921875}, {"start": 502.21, "end": 502.45, "word": " but", "probability": 0.66796875}, {"start": 502.45, "end": 502.79, "word": " sometimes", "probability": 0.61572265625}, {"start": 502.79, "end": 503.01, "word": " the", "probability": 0.6162109375}, {"start": 503.01, "end": 503.15, "word": " A", "probability": 0.93798828125}, {"start": 503.15, "end": 503.33, "word": " wants", "probability": 0.41650390625}, {"start": 503.33, "end": 503.43, "word": " to", "probability": 0.966796875}, {"start": 503.43, "end": 503.53, "word": " send", "probability": 0.67041015625}, {"start": 503.53, "end": 503.71, "word": " a", "probability": 0.46923828125}, {"start": 503.71, "end": 503.81, "word": " message", "probability": 0.76708984375}, {"start": 503.81, "end": 504.01, "word": " to", "probability": 0.86083984375}, {"start": 504.01, "end": 504.09, "word": " whom?", "probability": 0.4931640625}, {"start": 504.99, "end": 505.23, "word": " To", "probability": 0.62890625}, {"start": 505.23, "end": 505.29, "word": " the", "probability": 0.79150390625}, {"start": 505.29, "end": 505.43, "word": " D", "probability": 0.9423828125}, {"start": 505.43, "end": 506.01, "word": " The", "probability": 0.38525390625}, {"start": 506.01, "end": 506.19, "word": " same", "probability": 0.8125}, {"start": 506.19, "end": 506.55, "word": " idea", "probability": 0.6396484375}, {"start": 506.55, "end": 506.69, "word": " will", "probability": 0.52685546875}, {"start": 506.69, "end": 507.03, "word": " happen,", "probability": 0.24853515625}, {"start": 507.49, "end": 507.61, "word": " the", "probability": 0.69140625}, {"start": 507.61, "end": 507.77, "word": " A", "probability": 0.9833984375}, {"start": 507.77, "end": 507.97, "word": " will", "probability": 0.5947265625}, {"start": 507.97, "end": 508.25, "word": " send", "probability": 0.308349609375}, {"start": 508.25, "end": 508.39, "word": " a", "probability": 0.466552734375}, {"start": 508.39, "end": 508.39, "word": " message", "probability": 0.8984375}, {"start": 508.39, "end": 508.41, "word": " to", "probability": 0.95703125}, {"start": 508.41, "end": 508.51, "word": " the", "probability": 0.9150390625}, {"start": 508.51, "end": 508.75, "word": " bus,", "probability": 0.9287109375}, {"start": 508.91, "end": 509.01, "word": " but", "probability": 0.5361328125}, {"start": 509.01, "end": 509.05, "word": " the", "probability": 0.90283203125}, {"start": 509.05, "end": 509.23, "word": " bus", "probability": 0.93212890625}, {"start": 509.23, "end": 509.35, "word": " does", "probability": 0.334228515625}, {"start": 509.35, "end": 509.35, "word": " not", "probability": 0.9189453125}, {"start": 509.35, "end": 509.61, "word": " understand", "probability": 0.564453125}, {"start": 509.61, "end": 509.87, "word": " what", "probability": 0.75244140625}, {"start": 509.87, "end": 509.91, "word": " it", "probability": 0.357666015625}, {"start": 509.91, "end": 509.93, "word": " is", "probability": 0.63623046875}, {"start": 509.93, "end": 510.09, "word": " doing,", "probability": 0.91650390625}, {"start": 510.21, "end": 510.27, "word": " it", "probability": 0.58642578125}, {"start": 510.27, "end": 510.43, "word": " takes", "probability": 0.4853515625}, {"start": 510.43, "end": 510.61, "word": " the", "probability": 0.8232421875}, {"start": 510.61, "end": 510.95, "word": " message", "probability": 0.8564453125}, {"start": 510.95, "end": 511.85, "word": " and", "probability": 0.884765625}, {"start": 511.85, "end": 512.19, "word": " distributes", "probability": 0.728271484375}, {"start": 512.19, "end": 512.33, "word": " it", "probability": 0.93115234375}, {"start": 512.33, "end": 512.47, "word": " to", "probability": 0.89892578125}, {"start": 512.47, "end": 512.71, "word": " everyone", "probability": 0.91064453125}, {"start": 512.71, "end": 513.97, "word": " Now", "probability": 0.58349609375}, {"start": 513.97, "end": 514.25, "word": " this", "probability": 0.595703125}, {"start": 514.25, "end": 514.47, "word": " D", "probability": 0.900390625}], "temperature": 1.0}, {"id": 23, "seek": 54455, "start": 516.76, "end": 544.56, "text": "He is supposed to receive it and these guys don't have it They are supposed to cancel it I mean, of course, how? For example, if B got a message that doesn't have a meaning in it How can I know if it has a meaning or not? The message itself is supposed to have information about who is the sender, for example, and who is the receiver, for example So, for example, if B doesn't have a meaning in the message A I see that the message came from A, what does he do? Yes, that's it, he discards it, he ignores it, okay?", "tokens": [5205, 307, 3442, 281, 4774, 309, 293, 613, 1074, 500, 380, 362, 309, 814, 366, 3442, 281, 10373, 309, 286, 914, 11, 295, 1164, 11, 577, 30, 1171, 1365, 11, 498, 363, 658, 257, 3636, 300, 1177, 380, 362, 257, 3620, 294, 309, 1012, 393, 286, 458, 498, 309, 575, 257, 3620, 420, 406, 30, 440, 3636, 2564, 307, 3442, 281, 362, 1589, 466, 567, 307, 264, 2845, 260, 11, 337, 1365, 11, 293, 567, 307, 264, 20086, 11, 337, 1365, 407, 11, 337, 1365, 11, 498, 363, 1177, 380, 362, 257, 3620, 294, 264, 3636, 316, 286, 536, 300, 264, 3636, 1361, 490, 316, 11, 437, 775, 415, 360, 30, 1079, 11, 300, 311, 309, 11, 415, 2983, 2287, 309, 11, 415, 5335, 2706, 309, 11, 1392, 30], "avg_logprob": -0.5168269033615406, "compression_ratio": 2.019607843137255, "no_speech_prob": 7.092952728271484e-06, "words": [{"start": 516.76, "end": 517.0, "word": "He", "probability": 0.1739501953125}, {"start": 517.0, "end": 517.08, "word": " is", "probability": 0.35205078125}, {"start": 517.08, "end": 517.38, "word": " supposed", "probability": 0.630859375}, {"start": 517.38, "end": 517.44, "word": " to", "probability": 0.97021484375}, {"start": 517.44, "end": 517.74, "word": " receive", "probability": 0.80859375}, {"start": 517.74, "end": 517.94, "word": " it", "probability": 0.68310546875}, {"start": 517.94, "end": 518.04, "word": " and", "probability": 0.459228515625}, {"start": 518.04, "end": 518.26, "word": " these", "probability": 0.330322265625}, {"start": 518.26, "end": 518.36, "word": " guys", "probability": 0.38134765625}, {"start": 518.36, "end": 518.48, "word": " don't", "probability": 0.596923828125}, {"start": 518.48, "end": 518.58, "word": " have", "probability": 0.60302734375}, {"start": 518.58, "end": 519.42, "word": " it", "probability": 0.642578125}, {"start": 519.42, "end": 519.62, "word": " They", "probability": 0.1279296875}, {"start": 519.62, "end": 519.66, "word": " are", "probability": 0.5791015625}, {"start": 519.66, "end": 519.9, "word": " supposed", "probability": 0.8408203125}, {"start": 519.9, "end": 520.08, "word": " to", "probability": 0.962890625}, {"start": 520.08, "end": 520.24, "word": " cancel", "probability": 0.5537109375}, {"start": 520.24, "end": 520.42, "word": " it", "probability": 0.62939453125}, {"start": 520.42, "end": 520.46, "word": " I", "probability": 0.133056640625}, {"start": 520.46, "end": 520.56, "word": " mean,", "probability": 0.95263671875}, {"start": 520.8, "end": 520.94, "word": " of", "probability": 0.3671875}, {"start": 520.94, "end": 521.02, "word": " course,", "probability": 0.95263671875}, {"start": 521.14, "end": 521.36, "word": " how?", "probability": 0.74365234375}, {"start": 522.08, "end": 522.44, "word": " For", "probability": 0.2154541015625}, {"start": 522.44, "end": 522.44, "word": " example,", "probability": 0.89013671875}, {"start": 522.44, "end": 522.6, "word": " if", "probability": 0.333251953125}, {"start": 522.6, "end": 522.72, "word": " B", "probability": 0.28271484375}, {"start": 522.72, "end": 523.3, "word": " got", "probability": 0.218017578125}, {"start": 523.3, "end": 523.44, "word": " a", "probability": 0.92822265625}, {"start": 523.44, "end": 523.66, "word": " message", "probability": 0.81494140625}, {"start": 523.66, "end": 523.8, "word": " that", "probability": 0.389892578125}, {"start": 523.8, "end": 523.94, "word": " doesn't", "probability": 0.659912109375}, {"start": 523.94, "end": 523.94, "word": " have", "probability": 0.6396484375}, {"start": 523.94, "end": 524.1, "word": " a", "probability": 0.367431640625}, {"start": 524.1, "end": 524.24, "word": " meaning", "probability": 0.72509765625}, {"start": 524.24, "end": 524.36, "word": " in", "probability": 0.2978515625}, {"start": 524.36, "end": 525.04, "word": " it", "probability": 0.90869140625}, {"start": 525.04, "end": 525.56, "word": " How", "probability": 0.5322265625}, {"start": 525.56, "end": 525.6, "word": " can", "probability": 0.359375}, {"start": 525.6, "end": 525.72, "word": " I", "probability": 0.83056640625}, {"start": 525.72, "end": 525.86, "word": " know", "probability": 0.81884765625}, {"start": 525.86, "end": 525.98, "word": " if", "probability": 0.65283203125}, {"start": 525.98, "end": 526.06, "word": " it", "probability": 0.7431640625}, {"start": 526.06, "end": 526.12, "word": " has", "probability": 0.8095703125}, {"start": 526.12, "end": 526.28, "word": " a", "probability": 0.81396484375}, {"start": 526.28, "end": 526.28, "word": " meaning", "probability": 0.8701171875}, {"start": 526.28, "end": 526.66, "word": " or", "probability": 0.75537109375}, {"start": 526.66, "end": 526.8, "word": " not?", "probability": 0.92724609375}, {"start": 527.06, "end": 527.24, "word": " The", "probability": 0.87158203125}, {"start": 527.24, "end": 527.5, "word": " message", "probability": 0.78564453125}, {"start": 527.5, "end": 527.86, "word": " itself", "probability": 0.70068359375}, {"start": 527.86, "end": 527.92, "word": " is", "probability": 0.4150390625}, {"start": 527.92, "end": 528.14, "word": " supposed", "probability": 0.9267578125}, {"start": 528.14, "end": 528.34, "word": " to", "probability": 0.96923828125}, {"start": 528.34, "end": 528.54, "word": " have", "probability": 0.525390625}, {"start": 528.54, "end": 528.96, "word": " information", "probability": 0.69482421875}, {"start": 528.96, "end": 529.56, "word": " about", "probability": 0.17431640625}, {"start": 529.56, "end": 529.74, "word": " who", "probability": 0.5068359375}, {"start": 529.74, "end": 529.84, "word": " is", "probability": 0.40576171875}, {"start": 529.84, "end": 529.9, "word": " the", "probability": 0.8095703125}, {"start": 529.9, "end": 530.3, "word": " sender,", "probability": 0.941162109375}, {"start": 530.92, "end": 531.1, "word": " for", "probability": 0.85693359375}, {"start": 531.1, "end": 531.28, "word": " example,", "probability": 0.9423828125}, {"start": 531.44, "end": 532.44, "word": " and", "probability": 0.8828125}, {"start": 532.44, "end": 532.58, "word": " who", "probability": 0.8857421875}, {"start": 532.58, "end": 532.62, "word": " is", "probability": 0.91015625}, {"start": 532.62, "end": 532.68, "word": " the", "probability": 0.91552734375}, {"start": 532.68, "end": 533.04, "word": " receiver,", "probability": 0.93603515625}, {"start": 533.14, "end": 533.3, "word": " for", "probability": 0.93310546875}, {"start": 533.3, "end": 533.8, "word": " example", "probability": 0.970703125}, {"start": 533.8, "end": 534.22, "word": " So,", "probability": 0.257568359375}, {"start": 534.28, "end": 534.38, "word": " for", "probability": 0.7021484375}, {"start": 534.38, "end": 534.5, "word": " example,", "probability": 0.970703125}, {"start": 534.58, "end": 534.72, "word": " if", "probability": 0.93994140625}, {"start": 534.72, "end": 535.28, "word": " B", "probability": 0.7578125}, {"start": 535.28, "end": 535.48, "word": " doesn't", "probability": 0.80029296875}, {"start": 535.48, "end": 535.72, "word": " have", "probability": 0.86572265625}, {"start": 535.72, "end": 535.72, "word": " a", "probability": 0.71435546875}, {"start": 535.72, "end": 535.72, "word": " meaning", "probability": 0.884765625}, {"start": 535.72, "end": 535.84, "word": " in", "probability": 0.84423828125}, {"start": 535.84, "end": 535.94, "word": " the", "probability": 0.7548828125}, {"start": 535.94, "end": 536.14, "word": " message", "probability": 0.6259765625}, {"start": 536.14, "end": 536.48, "word": " A", "probability": 0.4375}, {"start": 536.48, "end": 536.92, "word": " I", "probability": 0.35400390625}, {"start": 536.92, "end": 537.12, "word": " see", "probability": 0.365966796875}, {"start": 537.12, "end": 537.34, "word": " that", "probability": 0.300048828125}, {"start": 537.34, "end": 537.82, "word": " the", "probability": 0.65283203125}, {"start": 537.82, "end": 538.62, "word": " message", "probability": 0.89404296875}, {"start": 538.62, "end": 538.88, "word": " came", "probability": 0.3037109375}, {"start": 538.88, "end": 539.12, "word": " from", "probability": 0.888671875}, {"start": 539.12, "end": 539.44, "word": " A,", "probability": 0.9033203125}, {"start": 540.04, "end": 540.18, "word": " what", "probability": 0.71923828125}, {"start": 540.18, "end": 540.24, "word": " does", "probability": 0.65576171875}, {"start": 540.24, "end": 540.28, "word": " he", "probability": 0.81982421875}, {"start": 540.28, "end": 540.52, "word": " do?", "probability": 0.9541015625}, {"start": 541.48, "end": 541.76, "word": " Yes,", "probability": 0.1077880859375}, {"start": 541.94, "end": 542.02, "word": " that's", "probability": 0.60516357421875}, {"start": 542.02, "end": 542.02, "word": " it,", "probability": 0.87939453125}, {"start": 542.06, "end": 542.16, "word": " he", "probability": 0.9423828125}, {"start": 542.16, "end": 542.94, "word": " discards", "probability": 0.545074462890625}, {"start": 542.94, "end": 542.96, "word": " it,", "probability": 0.87646484375}, {"start": 543.18, "end": 543.56, "word": " he", "probability": 0.3994140625}, {"start": 543.56, "end": 543.72, "word": " ignores", "probability": 0.84033203125}, {"start": 543.72, "end": 544.36, "word": " it,", "probability": 0.93701171875}, {"start": 544.38, "end": 544.56, "word": " okay?", "probability": 0.5673828125}], "temperature": 1.0}, {"id": 24, "seek": 56622, "start": 545.58, "end": 566.22, "text": " But in the end, the bus will distribute to whom? To everyone. And the item or the component here decides whether to receive the message or not. Based on what? Based on the information of the message, where did the message come from. And this is what happens in networks. In networks, when we send a packet to the network, the packet has the IP address of the sender and the receiver.", "tokens": [583, 294, 264, 917, 11, 264, 1255, 486, 20594, 281, 7101, 30, 1407, 1518, 13, 400, 264, 3174, 420, 264, 6542, 510, 14898, 1968, 281, 4774, 264, 3636, 420, 406, 13, 18785, 322, 437, 30, 18785, 322, 264, 1589, 295, 264, 3636, 11, 689, 630, 264, 3636, 808, 490, 13, 400, 341, 307, 437, 2314, 294, 9590, 13, 682, 9590, 11, 562, 321, 2845, 257, 20300, 281, 264, 3209, 11, 264, 20300, 575, 264, 8671, 2985, 295, 264, 2845, 260, 293, 264, 20086, 13], "avg_logprob": -0.37463236696579877, "compression_ratio": 1.7534246575342465, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 545.58, "end": 545.92, "word": " But", "probability": 0.2073974609375}, {"start": 545.92, "end": 546.16, "word": " in", "probability": 0.456298828125}, {"start": 546.16, "end": 546.3, "word": " the", "probability": 0.89306640625}, {"start": 546.3, "end": 546.5, "word": " end,", "probability": 0.9150390625}, {"start": 546.74, "end": 546.8, "word": " the", "probability": 0.56982421875}, {"start": 546.8, "end": 547.0, "word": " bus", "probability": 0.748046875}, {"start": 547.0, "end": 547.2, "word": " will", "probability": 0.312744140625}, {"start": 547.2, "end": 547.54, "word": " distribute", "probability": 0.41357421875}, {"start": 547.54, "end": 547.76, "word": " to", "probability": 0.272216796875}, {"start": 547.76, "end": 547.92, "word": " whom?", "probability": 0.74609375}, {"start": 548.16, "end": 548.6, "word": " To", "probability": 0.6279296875}, {"start": 548.6, "end": 548.94, "word": " everyone.", "probability": 0.61572265625}, {"start": 549.42, "end": 549.7, "word": " And", "probability": 0.7568359375}, {"start": 549.7, "end": 550.24, "word": " the", "probability": 0.80615234375}, {"start": 550.24, "end": 550.66, "word": " item", "probability": 0.818359375}, {"start": 550.66, "end": 550.96, "word": " or", "probability": 0.7509765625}, {"start": 550.96, "end": 551.1, "word": " the", "probability": 0.414306640625}, {"start": 551.1, "end": 551.8, "word": " component", "probability": 0.85986328125}, {"start": 551.8, "end": 552.16, "word": " here", "probability": 0.6513671875}, {"start": 552.16, "end": 552.74, "word": " decides", "probability": 0.48046875}, {"start": 552.74, "end": 552.98, "word": " whether", "probability": 0.5556640625}, {"start": 552.98, "end": 553.06, "word": " to", "probability": 0.322998046875}, {"start": 553.06, "end": 553.38, "word": " receive", "probability": 0.84326171875}, {"start": 553.38, "end": 553.94, "word": " the", "probability": 0.81396484375}, {"start": 553.94, "end": 553.94, "word": " message", "probability": 0.84912109375}, {"start": 553.94, "end": 554.56, "word": " or", "probability": 0.95458984375}, {"start": 554.56, "end": 554.7, "word": " not.", "probability": 0.93994140625}, {"start": 555.04, "end": 555.26, "word": " Based", "probability": 0.33837890625}, {"start": 555.26, "end": 555.56, "word": " on", "probability": 0.94580078125}, {"start": 555.56, "end": 555.76, "word": " what?", "probability": 0.86181640625}, {"start": 555.86, "end": 556.02, "word": " Based", "probability": 0.81103515625}, {"start": 556.02, "end": 556.26, "word": " on", "probability": 0.951171875}, {"start": 556.26, "end": 556.34, "word": " the", "probability": 0.8466796875}, {"start": 556.34, "end": 556.56, "word": " information", "probability": 0.5166015625}, {"start": 556.56, "end": 556.76, "word": " of", "probability": 0.81396484375}, {"start": 556.76, "end": 556.86, "word": " the", "probability": 0.88671875}, {"start": 556.86, "end": 557.14, "word": " message,", "probability": 0.8857421875}, {"start": 557.34, "end": 557.56, "word": " where", "probability": 0.55517578125}, {"start": 557.56, "end": 557.66, "word": " did", "probability": 0.273193359375}, {"start": 557.66, "end": 557.9, "word": " the", "probability": 0.72900390625}, {"start": 557.9, "end": 558.14, "word": " message", "probability": 0.92041015625}, {"start": 558.14, "end": 558.14, "word": " come", "probability": 0.82080078125}, {"start": 558.14, "end": 558.66, "word": " from.", "probability": 0.876953125}, {"start": 558.86, "end": 558.96, "word": " And", "probability": 0.78857421875}, {"start": 558.96, "end": 559.12, "word": " this", "probability": 0.85546875}, {"start": 559.12, "end": 559.18, "word": " is", "probability": 0.4853515625}, {"start": 559.18, "end": 559.18, "word": " what", "probability": 0.923828125}, {"start": 559.18, "end": 559.38, "word": " happens", "probability": 0.9443359375}, {"start": 559.38, "end": 559.5, "word": " in", "probability": 0.67626953125}, {"start": 559.5, "end": 559.88, "word": " networks.", "probability": 0.85107421875}, {"start": 560.5, "end": 560.6, "word": " In", "probability": 0.87939453125}, {"start": 560.6, "end": 560.94, "word": " networks,", "probability": 0.88916015625}, {"start": 561.08, "end": 561.14, "word": " when", "probability": 0.916015625}, {"start": 561.14, "end": 561.26, "word": " we", "probability": 0.82470703125}, {"start": 561.26, "end": 561.4, "word": " send", "probability": 0.75244140625}, {"start": 561.4, "end": 561.56, "word": " a", "probability": 0.6435546875}, {"start": 561.56, "end": 561.76, "word": " packet", "probability": 0.8818359375}, {"start": 561.76, "end": 561.88, "word": " to", "probability": 0.619140625}, {"start": 561.88, "end": 561.98, "word": " the", "probability": 0.79833984375}, {"start": 561.98, "end": 562.42, "word": " network,", "probability": 0.95361328125}, {"start": 562.98, "end": 563.12, "word": " the", "probability": 0.5517578125}, {"start": 563.12, "end": 563.42, "word": " packet", "probability": 0.93359375}, {"start": 563.42, "end": 563.7, "word": " has", "probability": 0.486083984375}, {"start": 563.7, "end": 563.9, "word": " the", "probability": 0.87353515625}, {"start": 563.9, "end": 564.5, "word": " IP", "probability": 0.72412109375}, {"start": 564.5, "end": 564.64, "word": " address", "probability": 0.85693359375}, {"start": 564.64, "end": 564.76, "word": " of", "probability": 0.958984375}, {"start": 564.76, "end": 564.88, "word": " the", "probability": 0.912109375}, {"start": 564.88, "end": 565.24, "word": " sender", "probability": 0.845703125}, {"start": 565.24, "end": 565.82, "word": " and", "probability": 0.91796875}, {"start": 565.82, "end": 565.84, "word": " the", "probability": 0.72802734375}, {"start": 565.84, "end": 566.22, "word": " receiver.", "probability": 0.6220703125}], "temperature": 1.0}, {"id": 25, "seek": 58716, "start": 567.12, "end": 587.16, "text": "The packet is not sent to everyone, it is the bus that distributes it to everyone, the hub distributes it to everyone, if you studied well, the hub distributes it to everyone, okay? Those who have meaning in the message, receive it, and those who do not have meaning in it, remove it This is a way for the component to distinguish whether it receives the message or not, or another way", "tokens": [2278, 20300, 307, 406, 2279, 281, 1518, 11, 309, 307, 264, 1255, 300, 4400, 1819, 309, 281, 1518, 11, 264, 11838, 4400, 1819, 309, 281, 1518, 11, 498, 291, 9454, 731, 11, 264, 11838, 4400, 1819, 309, 281, 1518, 11, 1392, 30, 3950, 567, 362, 3620, 294, 264, 3636, 11, 4774, 309, 11, 293, 729, 567, 360, 406, 362, 3620, 294, 309, 11, 4159, 309, 639, 307, 257, 636, 337, 264, 6542, 281, 20206, 1968, 309, 20717, 264, 3636, 420, 406, 11, 420, 1071, 636], "avg_logprob": -0.4654796473508657, "compression_ratio": 2.0052083333333335, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 567.12, "end": 567.48, "word": "The", "probability": 0.479736328125}, {"start": 567.48, "end": 567.72, "word": " packet", "probability": 0.62060546875}, {"start": 567.72, "end": 567.96, "word": " is", "probability": 0.440673828125}, {"start": 567.96, "end": 568.12, "word": " not", "probability": 0.88525390625}, {"start": 568.12, "end": 568.36, "word": " sent", "probability": 0.26171875}, {"start": 568.36, "end": 568.62, "word": " to", "probability": 0.86279296875}, {"start": 568.62, "end": 568.94, "word": " everyone,", "probability": 0.5849609375}, {"start": 569.28, "end": 569.4, "word": " it", "probability": 0.433837890625}, {"start": 569.4, "end": 569.48, "word": " is", "probability": 0.61962890625}, {"start": 569.48, "end": 569.78, "word": " the", "probability": 0.31884765625}, {"start": 569.78, "end": 570.06, "word": " bus", "probability": 0.728515625}, {"start": 570.06, "end": 570.2, "word": " that", "probability": 0.72314453125}, {"start": 570.2, "end": 570.58, "word": " distributes", "probability": 0.75}, {"start": 570.58, "end": 570.72, "word": " it", "probability": 0.69140625}, {"start": 570.72, "end": 570.82, "word": " to", "probability": 0.85693359375}, {"start": 570.82, "end": 571.0, "word": " everyone,", "probability": 0.79150390625}, {"start": 571.04, "end": 571.14, "word": " the", "probability": 0.57470703125}, {"start": 571.14, "end": 571.42, "word": " hub", "probability": 0.88671875}, {"start": 571.42, "end": 572.88, "word": " distributes", "probability": 0.69287109375}, {"start": 572.88, "end": 572.96, "word": " it", "probability": 0.60791015625}, {"start": 572.96, "end": 573.06, "word": " to", "probability": 0.94921875}, {"start": 573.06, "end": 573.28, "word": " everyone,", "probability": 0.86669921875}, {"start": 573.34, "end": 573.48, "word": " if", "probability": 0.125}, {"start": 573.48, "end": 573.6, "word": " you", "probability": 0.94140625}, {"start": 573.6, "end": 573.88, "word": " studied", "probability": 0.38720703125}, {"start": 573.88, "end": 574.08, "word": " well,", "probability": 0.1644287109375}, {"start": 574.14, "end": 574.2, "word": " the", "probability": 0.630859375}, {"start": 574.2, "end": 574.34, "word": " hub", "probability": 0.97314453125}, {"start": 574.34, "end": 574.76, "word": " distributes", "probability": 0.916015625}, {"start": 574.76, "end": 574.84, "word": " it", "probability": 0.5986328125}, {"start": 574.84, "end": 574.98, "word": " to", "probability": 0.96142578125}, {"start": 574.98, "end": 575.18, "word": " everyone,", "probability": 0.91015625}, {"start": 575.46, "end": 576.0, "word": " okay?", "probability": 0.1170654296875}, {"start": 576.94, "end": 577.3, "word": " Those", "probability": 0.448486328125}, {"start": 577.3, "end": 577.38, "word": " who", "probability": 0.748046875}, {"start": 577.38, "end": 577.46, "word": " have", "probability": 0.151611328125}, {"start": 577.46, "end": 577.6, "word": " meaning", "probability": 0.49072265625}, {"start": 577.6, "end": 577.72, "word": " in", "probability": 0.79638671875}, {"start": 577.72, "end": 578.08, "word": " the", "probability": 0.8828125}, {"start": 578.08, "end": 578.08, "word": " message,", "probability": 0.83935546875}, {"start": 578.14, "end": 578.4, "word": " receive", "probability": 0.56396484375}, {"start": 578.4, "end": 578.6, "word": " it,", "probability": 0.9345703125}, {"start": 578.64, "end": 578.74, "word": " and", "probability": 0.76123046875}, {"start": 578.74, "end": 578.82, "word": " those", "probability": 0.8310546875}, {"start": 578.82, "end": 578.86, "word": " who", "probability": 0.85302734375}, {"start": 578.86, "end": 578.94, "word": " do", "probability": 0.381591796875}, {"start": 578.94, "end": 578.94, "word": " not", "probability": 0.9384765625}, {"start": 578.94, "end": 579.12, "word": " have", "probability": 0.74658203125}, {"start": 579.12, "end": 579.2, "word": " meaning", "probability": 0.7626953125}, {"start": 579.2, "end": 579.32, "word": " in", "probability": 0.7939453125}, {"start": 579.32, "end": 579.58, "word": " it,", "probability": 0.88232421875}, {"start": 580.06, "end": 580.2, "word": " remove", "probability": 0.73779296875}, {"start": 580.2, "end": 580.44, "word": " it", "probability": 0.857421875}, {"start": 580.44, "end": 580.84, "word": " This", "probability": 0.29931640625}, {"start": 580.84, "end": 580.92, "word": " is", "probability": 0.83203125}, {"start": 580.92, "end": 580.98, "word": " a", "probability": 0.5380859375}, {"start": 580.98, "end": 581.24, "word": " way", "probability": 0.7861328125}, {"start": 581.24, "end": 581.48, "word": " for", "probability": 0.60546875}, {"start": 581.48, "end": 583.16, "word": " the", "probability": 0.8564453125}, {"start": 583.16, "end": 583.62, "word": " component", "probability": 0.876953125}, {"start": 583.62, "end": 583.74, "word": " to", "probability": 0.90869140625}, {"start": 583.74, "end": 584.12, "word": " distinguish", "probability": 0.607421875}, {"start": 584.12, "end": 584.74, "word": " whether", "probability": 0.61474609375}, {"start": 584.74, "end": 584.82, "word": " it", "probability": 0.496337890625}, {"start": 584.82, "end": 585.14, "word": " receives", "probability": 0.677734375}, {"start": 585.14, "end": 585.28, "word": " the", "probability": 0.84814453125}, {"start": 585.28, "end": 585.56, "word": " message", "probability": 0.92431640625}, {"start": 585.56, "end": 585.72, "word": " or", "probability": 0.96484375}, {"start": 585.72, "end": 585.88, "word": " not,", "probability": 0.8466796875}, {"start": 586.28, "end": 586.62, "word": " or", "probability": 0.93505859375}, {"start": 586.62, "end": 586.7, "word": " another", "probability": 0.82275390625}, {"start": 586.7, "end": 587.16, "word": " way", "probability": 0.9189453125}], "temperature": 1.0}, {"id": 26, "seek": 61240, "start": 588.58, "end": 612.4, "text": " As we will see, the messages themselves are assigned to us, for example, this message has to do with the process of adding, for example, if I want to ask for a component to add a certain task, this message has to do with the invoices, this message has to do with searching in the warehouse, now the message has to do with invoices,", "tokens": [1018, 321, 486, 536, 11, 264, 7897, 552, 790, 303, 82, 366, 13279, 281, 505, 11, 337, 1365, 11, 341, 3636, 575, 281, 360, 365, 264, 1399, 295, 5127, 11, 337, 1365, 11, 498, 286, 528, 281, 1029, 337, 257, 6542, 281, 909, 257, 1629, 5633, 11, 341, 3636, 575, 281, 360, 365, 264, 1048, 78, 1473, 11, 341, 3636, 575, 281, 360, 365, 10808, 294, 264, 22244, 11, 586, 264, 3636, 575, 281, 360, 365, 1048, 78, 1473, 11], "avg_logprob": -0.5304783950617284, "compression_ratio": 2.03680981595092, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 588.58, "end": 588.8, "word": " As", "probability": 0.15966796875}, {"start": 588.8, "end": 588.94, "word": " we", "probability": 0.68212890625}, {"start": 588.94, "end": 589.04, "word": " will", "probability": 0.429931640625}, {"start": 589.04, "end": 589.38, "word": " see,", "probability": 0.91064453125}, {"start": 589.88, "end": 589.96, "word": " the", "probability": 0.419189453125}, {"start": 589.96, "end": 590.3, "word": " messages", "probability": 0.253173828125}, {"start": 590.3, "end": 590.78, "word": " themselves", "probability": 0.57391357421875}, {"start": 590.78, "end": 590.96, "word": " are", "probability": 0.387451171875}, {"start": 590.96, "end": 591.1, "word": " assigned", "probability": 0.07171630859375}, {"start": 591.1, "end": 592.04, "word": " to", "probability": 0.363037109375}, {"start": 592.04, "end": 592.04, "word": " us,", "probability": 0.322021484375}, {"start": 592.18, "end": 592.42, "word": " for", "probability": 0.56005859375}, {"start": 592.42, "end": 592.68, "word": " example,", "probability": 0.92724609375}, {"start": 592.78, "end": 592.98, "word": " this", "probability": 0.7685546875}, {"start": 592.98, "end": 593.42, "word": " message", "probability": 0.85302734375}, {"start": 593.42, "end": 593.7, "word": " has", "probability": 0.501953125}, {"start": 593.7, "end": 594.02, "word": " to", "probability": 0.463623046875}, {"start": 594.02, "end": 594.12, "word": " do", "probability": 0.9619140625}, {"start": 594.12, "end": 594.44, "word": " with", "probability": 0.8935546875}, {"start": 594.44, "end": 594.5, "word": " the", "probability": 0.53369140625}, {"start": 594.5, "end": 594.72, "word": " process", "probability": 0.5830078125}, {"start": 594.72, "end": 595.32, "word": " of", "probability": 0.96044921875}, {"start": 595.32, "end": 595.76, "word": " adding,", "probability": 0.271240234375}, {"start": 595.88, "end": 596.02, "word": " for", "probability": 0.52197265625}, {"start": 596.02, "end": 596.58, "word": " example,", "probability": 0.96337890625}, {"start": 596.7, "end": 596.88, "word": " if", "probability": 0.86865234375}, {"start": 596.88, "end": 597.8, "word": " I", "probability": 0.7666015625}, {"start": 597.8, "end": 597.86, "word": " want", "probability": 0.61474609375}, {"start": 597.86, "end": 597.88, "word": " to", "probability": 0.95556640625}, {"start": 597.88, "end": 598.04, "word": " ask", "probability": 0.56494140625}, {"start": 598.04, "end": 598.2, "word": " for", "probability": 0.337646484375}, {"start": 598.2, "end": 598.24, "word": " a", "probability": 0.8798828125}, {"start": 598.24, "end": 598.6, "word": " component", "probability": 0.77294921875}, {"start": 598.6, "end": 598.88, "word": " to", "probability": 0.60498046875}, {"start": 598.88, "end": 599.06, "word": " add", "probability": 0.91943359375}, {"start": 599.06, "end": 599.38, "word": " a", "probability": 0.79541015625}, {"start": 599.38, "end": 599.6, "word": " certain", "probability": 0.436279296875}, {"start": 599.6, "end": 599.6, "word": " task,", "probability": 0.356689453125}, {"start": 600.02, "end": 600.36, "word": " this", "probability": 0.88818359375}, {"start": 600.36, "end": 600.76, "word": " message", "probability": 0.8994140625}, {"start": 600.76, "end": 601.02, "word": " has", "probability": 0.8134765625}, {"start": 601.02, "end": 601.34, "word": " to", "probability": 0.90185546875}, {"start": 601.34, "end": 601.36, "word": " do", "probability": 0.96240234375}, {"start": 601.36, "end": 601.62, "word": " with", "probability": 0.89453125}, {"start": 601.62, "end": 601.72, "word": " the", "probability": 0.484130859375}, {"start": 601.72, "end": 602.24, "word": " invoices,", "probability": 0.5370254516601562}, {"start": 603.04, "end": 603.76, "word": " this", "probability": 0.446044921875}, {"start": 603.76, "end": 604.22, "word": " message", "probability": 0.90673828125}, {"start": 604.22, "end": 604.5, "word": " has", "probability": 0.888671875}, {"start": 604.5, "end": 604.94, "word": " to", "probability": 0.94677734375}, {"start": 604.94, "end": 605.06, "word": " do", "probability": 0.95849609375}, {"start": 605.06, "end": 606.2, "word": " with", "probability": 0.8916015625}, {"start": 606.2, "end": 606.6, "word": " searching", "probability": 0.62548828125}, {"start": 606.6, "end": 606.92, "word": " in", "probability": 0.7998046875}, {"start": 606.92, "end": 608.08, "word": " the", "probability": 0.90185546875}, {"start": 608.08, "end": 608.34, "word": " warehouse,", "probability": 0.390625}, {"start": 609.32, "end": 609.84, "word": " now", "probability": 0.77978515625}, {"start": 609.84, "end": 610.1, "word": " the", "probability": 0.58935546875}, {"start": 610.1, "end": 610.44, "word": " message", "probability": 0.880859375}, {"start": 610.44, "end": 611.5, "word": " has", "probability": 0.6005859375}, {"start": 611.5, "end": 611.7, "word": " to", "probability": 0.88720703125}, {"start": 611.7, "end": 611.78, "word": " do", "probability": 0.96240234375}, {"start": 611.78, "end": 611.92, "word": " with", "probability": 0.896484375}, {"start": 611.92, "end": 612.4, "word": " invoices,", "probability": 0.8020833333333334}], "temperature": 1.0}, {"id": 27, "seek": 64066, "start": 613.55, "end": 640.67, "text": " Invoice message for example, I sent it, it should reach the financial department Now, the financial department receives a message, if it is a type of invoice message, it receives it If it is a type of search or inventory or something like that, it cancels it, depending on the type of message it decides to receive it or not Now, this is the scenario that happens in computer networks We want to do the same scenario", "tokens": [682, 42268, 3636, 337, 1365, 11, 286, 2279, 309, 11, 309, 820, 2524, 264, 4669, 5882, 823, 11, 264, 4669, 5882, 20717, 257, 3636, 11, 498, 309, 307, 257, 2010, 295, 47919, 3636, 11, 309, 20717, 309, 759, 309, 307, 257, 2010, 295, 3164, 420, 14228, 420, 746, 411, 300, 11, 309, 393, 66, 1625, 309, 11, 5413, 322, 264, 2010, 295, 3636, 309, 14898, 281, 4774, 309, 420, 406, 823, 11, 341, 307, 264, 9005, 300, 2314, 294, 3820, 9590, 492, 528, 281, 360, 264, 912, 9005], "avg_logprob": -0.46558989299817033, "compression_ratio": 1.8954545454545455, "no_speech_prob": 2.3245811462402344e-06, "words": [{"start": 613.55, "end": 614.03, "word": " Invoice", "probability": 0.55096435546875}, {"start": 614.03, "end": 614.39, "word": " message", "probability": 0.701171875}, {"start": 614.39, "end": 614.55, "word": " for", "probability": 0.57275390625}, {"start": 614.55, "end": 614.69, "word": " example,", "probability": 0.90185546875}, {"start": 614.83, "end": 614.89, "word": " I", "probability": 0.146240234375}, {"start": 614.89, "end": 615.09, "word": " sent", "probability": 0.60498046875}, {"start": 615.09, "end": 615.33, "word": " it,", "probability": 0.71142578125}, {"start": 615.43, "end": 615.49, "word": " it", "probability": 0.427978515625}, {"start": 615.49, "end": 615.89, "word": " should", "probability": 0.5048828125}, {"start": 615.89, "end": 616.33, "word": " reach", "probability": 0.6552734375}, {"start": 616.33, "end": 617.11, "word": " the", "probability": 0.72802734375}, {"start": 617.11, "end": 617.35, "word": " financial", "probability": 0.39013671875}, {"start": 617.35, "end": 617.79, "word": " department", "probability": 0.42578125}, {"start": 617.79, "end": 619.39, "word": " Now,", "probability": 0.399169921875}, {"start": 619.59, "end": 619.89, "word": " the", "probability": 0.767578125}, {"start": 619.89, "end": 620.03, "word": " financial", "probability": 0.783203125}, {"start": 620.03, "end": 620.13, "word": " department", "probability": 0.8603515625}, {"start": 620.13, "end": 620.41, "word": " receives", "probability": 0.5703125}, {"start": 620.41, "end": 620.79, "word": " a", "probability": 0.751953125}, {"start": 620.79, "end": 620.79, "word": " message,", "probability": 0.84814453125}, {"start": 620.85, "end": 620.99, "word": " if", "probability": 0.83984375}, {"start": 620.99, "end": 621.23, "word": " it", "probability": 0.83984375}, {"start": 621.23, "end": 621.27, "word": " is", "probability": 0.4873046875}, {"start": 621.27, "end": 621.45, "word": " a", "probability": 0.29541015625}, {"start": 621.45, "end": 621.45, "word": " type", "probability": 0.306396484375}, {"start": 621.45, "end": 621.55, "word": " of", "probability": 0.916015625}, {"start": 621.55, "end": 621.83, "word": " invoice", "probability": 0.86669921875}, {"start": 621.83, "end": 622.43, "word": " message,", "probability": 0.90283203125}, {"start": 623.03, "end": 623.17, "word": " it", "probability": 0.44921875}, {"start": 623.17, "end": 623.51, "word": " receives", "probability": 0.416748046875}, {"start": 623.51, "end": 623.79, "word": " it", "probability": 0.9208984375}, {"start": 623.79, "end": 624.71, "word": " If", "probability": 0.67919921875}, {"start": 624.71, "end": 625.09, "word": " it", "probability": 0.92529296875}, {"start": 625.09, "end": 625.09, "word": " is", "probability": 0.798828125}, {"start": 625.09, "end": 625.15, "word": " a", "probability": 0.79345703125}, {"start": 625.15, "end": 625.25, "word": " type", "probability": 0.7529296875}, {"start": 625.25, "end": 625.77, "word": " of", "probability": 0.86865234375}, {"start": 625.77, "end": 626.21, "word": " search", "probability": 0.9013671875}, {"start": 626.21, "end": 626.65, "word": " or", "probability": 0.70849609375}, {"start": 626.65, "end": 627.65, "word": " inventory", "probability": 0.9091796875}, {"start": 627.65, "end": 627.83, "word": " or", "probability": 0.56787109375}, {"start": 627.83, "end": 628.07, "word": " something", "probability": 0.57861328125}, {"start": 628.07, "end": 628.07, "word": " like", "probability": 0.324951171875}, {"start": 628.07, "end": 628.25, "word": " that,", "probability": 0.8740234375}, {"start": 628.39, "end": 628.47, "word": " it", "probability": 0.82470703125}, {"start": 628.47, "end": 628.63, "word": " cancels", "probability": 0.6346842447916666}, {"start": 628.63, "end": 628.79, "word": " it,", "probability": 0.91796875}, {"start": 628.83, "end": 629.07, "word": " depending", "probability": 0.2388916015625}, {"start": 629.07, "end": 629.25, "word": " on", "probability": 0.94091796875}, {"start": 629.25, "end": 629.31, "word": " the", "probability": 0.826171875}, {"start": 629.31, "end": 629.45, "word": " type", "probability": 0.9287109375}, {"start": 629.45, "end": 629.55, "word": " of", "probability": 0.97119140625}, {"start": 629.55, "end": 629.95, "word": " message", "probability": 0.78857421875}, {"start": 629.95, "end": 631.51, "word": " it", "probability": 0.466064453125}, {"start": 631.51, "end": 631.85, "word": " decides", "probability": 0.6201171875}, {"start": 631.85, "end": 631.97, "word": " to", "probability": 0.88671875}, {"start": 631.97, "end": 632.25, "word": " receive", "probability": 0.91259765625}, {"start": 632.25, "end": 632.45, "word": " it", "probability": 0.6845703125}, {"start": 632.45, "end": 632.57, "word": " or", "probability": 0.955078125}, {"start": 632.57, "end": 632.65, "word": " not", "probability": 0.892578125}, {"start": 632.65, "end": 634.11, "word": " Now,", "probability": 0.5263671875}, {"start": 634.89, "end": 635.19, "word": " this", "probability": 0.74658203125}, {"start": 635.19, "end": 635.19, "word": " is", "probability": 0.630859375}, {"start": 635.19, "end": 635.65, "word": " the", "probability": 0.712890625}, {"start": 635.65, "end": 635.97, "word": " scenario", "probability": 0.72705078125}, {"start": 635.97, "end": 636.13, "word": " that", "probability": 0.69873046875}, {"start": 636.13, "end": 636.45, "word": " happens", "probability": 0.46240234375}, {"start": 636.45, "end": 636.63, "word": " in", "probability": 0.662109375}, {"start": 636.63, "end": 637.49, "word": " computer", "probability": 0.64501953125}, {"start": 637.49, "end": 637.49, "word": " networks", "probability": 0.89306640625}, {"start": 637.49, "end": 638.63, "word": " We", "probability": 0.60693359375}, {"start": 638.63, "end": 639.65, "word": " want", "probability": 0.402099609375}, {"start": 639.65, "end": 639.73, "word": " to", "probability": 0.9697265625}, {"start": 639.73, "end": 639.89, "word": " do", "probability": 0.4853515625}, {"start": 639.89, "end": 640.13, "word": " the", "probability": 0.91796875}, {"start": 640.13, "end": 640.13, "word": " same", "probability": 0.89599609375}, {"start": 640.13, "end": 640.67, "word": " scenario", "probability": 0.830078125}], "temperature": 1.0}, {"id": 28, "seek": 67006, "start": 642.46, "end": 670.06, "text": " in the code, okay? So let's see how to apply the scenario Imagine that I have three components Let's assume that they are three classes A, B, and C And these three begin to communicate with each other That is, I want A to send B to C, and B to send C to A, okay? And let's see how to apply it using the database and how it will make it easier for me Because as we saw, the Observer application here is complicated, right or not?", "tokens": [294, 264, 3089, 11, 1392, 30, 407, 718, 311, 536, 577, 281, 3079, 264, 9005, 11739, 300, 286, 362, 1045, 6677, 961, 311, 6552, 300, 436, 366, 1045, 5359, 316, 11, 363, 11, 293, 383, 400, 613, 1045, 1841, 281, 7890, 365, 1184, 661, 663, 307, 11, 286, 528, 316, 281, 2845, 363, 281, 383, 11, 293, 363, 281, 2845, 383, 281, 316, 11, 1392, 30, 400, 718, 311, 536, 577, 281, 3079, 309, 1228, 264, 8149, 293, 577, 309, 486, 652, 309, 3571, 337, 385, 1436, 382, 321, 1866, 11, 264, 20707, 38241, 3861, 510, 307, 6179, 11, 558, 420, 406, 30], "avg_logprob": -0.46364181803969234, "compression_ratio": 1.7023809523809523, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 642.46, "end": 642.66, "word": " in", "probability": 0.173583984375}, {"start": 642.66, "end": 642.76, "word": " the", "probability": 0.671875}, {"start": 642.76, "end": 643.02, "word": " code,", "probability": 0.89501953125}, {"start": 643.08, "end": 643.66, "word": " okay?", "probability": 0.2666015625}, {"start": 644.06, "end": 644.24, "word": " So", "probability": 0.5625}, {"start": 644.24, "end": 644.52, "word": " let's", "probability": 0.7470703125}, {"start": 644.52, "end": 645.94, "word": " see", "probability": 0.53662109375}, {"start": 645.94, "end": 646.28, "word": " how", "probability": 0.79443359375}, {"start": 646.28, "end": 646.44, "word": " to", "probability": 0.4970703125}, {"start": 646.44, "end": 646.7, "word": " apply", "probability": 0.57568359375}, {"start": 646.7, "end": 646.88, "word": " the", "probability": 0.4716796875}, {"start": 646.88, "end": 647.18, "word": " scenario", "probability": 0.74365234375}, {"start": 647.18, "end": 647.54, "word": " Imagine", "probability": 0.3955078125}, {"start": 647.54, "end": 647.84, "word": " that", "probability": 0.6630859375}, {"start": 647.84, "end": 647.98, "word": " I", "probability": 0.95361328125}, {"start": 647.98, "end": 648.2, "word": " have", "probability": 0.92626953125}, {"start": 648.2, "end": 648.52, "word": " three", "probability": 0.62060546875}, {"start": 648.52, "end": 649.18, "word": " components", "probability": 0.87890625}, {"start": 649.18, "end": 651.8, "word": " Let's", "probability": 0.6654052734375}, {"start": 651.8, "end": 652.08, "word": " assume", "probability": 0.38916015625}, {"start": 652.08, "end": 652.2, "word": " that", "probability": 0.6083984375}, {"start": 652.2, "end": 652.28, "word": " they", "probability": 0.73828125}, {"start": 652.28, "end": 652.32, "word": " are", "probability": 0.87109375}, {"start": 652.32, "end": 652.66, "word": " three", "probability": 0.87646484375}, {"start": 652.66, "end": 653.1, "word": " classes", "probability": 0.84765625}, {"start": 653.1, "end": 653.34, "word": " A,", "probability": 0.5478515625}, {"start": 653.4, "end": 653.5, "word": " B,", "probability": 0.66455078125}, {"start": 653.64, "end": 653.7, "word": " and", "probability": 0.408203125}, {"start": 653.7, "end": 653.8, "word": " C", "probability": 0.99755859375}, {"start": 653.8, "end": 654.32, "word": " And", "probability": 0.413818359375}, {"start": 654.32, "end": 654.58, "word": " these", "probability": 0.5771484375}, {"start": 654.58, "end": 655.04, "word": " three", "probability": 0.892578125}, {"start": 655.04, "end": 655.24, "word": " begin", "probability": 0.37548828125}, {"start": 655.24, "end": 655.4, "word": " to", "probability": 0.96630859375}, {"start": 655.4, "end": 655.72, "word": " communicate", "probability": 0.49462890625}, {"start": 655.72, "end": 655.9, "word": " with", "probability": 0.8369140625}, {"start": 655.9, "end": 656.14, "word": " each", "probability": 0.94287109375}, {"start": 656.14, "end": 656.14, "word": " other", "probability": 0.8916015625}, {"start": 656.14, "end": 656.28, "word": " That", "probability": 0.09930419921875}, {"start": 656.28, "end": 656.32, "word": " is,", "probability": 0.64404296875}, {"start": 656.32, "end": 656.4, "word": " I", "probability": 0.28759765625}, {"start": 656.4, "end": 656.56, "word": " want", "probability": 0.7568359375}, {"start": 656.56, "end": 657.12, "word": " A", "probability": 0.36279296875}, {"start": 657.12, "end": 657.82, "word": " to", "probability": 0.7392578125}, {"start": 657.82, "end": 657.98, "word": " send", "probability": 0.2666015625}, {"start": 657.98, "end": 658.26, "word": " B", "probability": 0.34130859375}, {"start": 658.26, "end": 658.26, "word": " to", "probability": 0.83056640625}, {"start": 658.26, "end": 658.56, "word": " C,", "probability": 0.97998046875}, {"start": 658.64, "end": 658.9, "word": " and", "probability": 0.53173828125}, {"start": 658.9, "end": 659.38, "word": " B", "probability": 0.9404296875}, {"start": 659.38, "end": 659.7, "word": " to", "probability": 0.8828125}, {"start": 659.7, "end": 659.82, "word": " send", "probability": 0.6748046875}, {"start": 659.82, "end": 660.22, "word": " C", "probability": 0.93896484375}, {"start": 660.22, "end": 660.26, "word": " to", "probability": 0.96240234375}, {"start": 660.26, "end": 660.48, "word": " A,", "probability": 0.99462890625}, {"start": 660.5, "end": 661.12, "word": " okay?", "probability": 0.72705078125}, {"start": 661.48, "end": 661.72, "word": " And", "probability": 0.70263671875}, {"start": 661.72, "end": 661.8, "word": " let's", "probability": 0.837158203125}, {"start": 661.8, "end": 661.94, "word": " see", "probability": 0.9033203125}, {"start": 661.94, "end": 662.12, "word": " how", "probability": 0.9345703125}, {"start": 662.12, "end": 662.22, "word": " to", "probability": 0.8525390625}, {"start": 662.22, "end": 662.48, "word": " apply", "probability": 0.74951171875}, {"start": 662.48, "end": 662.62, "word": " it", "probability": 0.80224609375}, {"start": 662.62, "end": 662.9, "word": " using", "probability": 0.759765625}, {"start": 662.9, "end": 663.28, "word": " the", "probability": 0.67822265625}, {"start": 663.28, "end": 663.54, "word": " database", "probability": 0.32373046875}, {"start": 663.54, "end": 663.9, "word": " and", "probability": 0.50341796875}, {"start": 663.9, "end": 664.12, "word": " how", "probability": 0.904296875}, {"start": 664.12, "end": 664.26, "word": " it", "probability": 0.5498046875}, {"start": 664.26, "end": 664.3, "word": " will", "probability": 0.685546875}, {"start": 664.3, "end": 664.56, "word": " make", "probability": 0.60986328125}, {"start": 664.56, "end": 665.24, "word": " it", "probability": 0.8779296875}, {"start": 665.24, "end": 665.24, "word": " easier", "probability": 0.81201171875}, {"start": 665.24, "end": 665.42, "word": " for", "probability": 0.424072265625}, {"start": 665.42, "end": 665.66, "word": " me", "probability": 0.66748046875}, {"start": 665.66, "end": 666.12, "word": " Because", "probability": 0.77734375}, {"start": 666.12, "end": 666.28, "word": " as", "probability": 0.7109375}, {"start": 666.28, "end": 666.42, "word": " we", "probability": 0.94970703125}, {"start": 666.42, "end": 666.64, "word": " saw,", "probability": 0.630859375}, {"start": 666.8, "end": 666.84, "word": " the", "probability": 0.88427734375}, {"start": 666.84, "end": 667.76, "word": " Observer", "probability": 0.5709228515625}, {"start": 667.76, "end": 667.76, "word": " application", "probability": 0.66552734375}, {"start": 667.76, "end": 668.24, "word": " here", "probability": 0.317138671875}, {"start": 668.24, "end": 668.88, "word": " is", "probability": 0.8515625}, {"start": 668.88, "end": 669.34, "word": " complicated,", "probability": 0.68994140625}, {"start": 669.7, "end": 669.82, "word": " right", "probability": 0.70166015625}, {"start": 669.82, "end": 670.02, "word": " or", "probability": 0.400634765625}, {"start": 670.02, "end": 670.06, "word": " not?", "probability": 0.681640625}], "temperature": 1.0}, {"id": 29, "seek": 69714, "start": 670.76, "end": 697.14, "text": " You have to send each other to each other through the observer, and you have to create an interface for each one, a list for each one, and each one has to register with the other three. And this is a complicated process. We have to solve the problem by creating a middleware element here, which is the data bus, which we talked about, and everything registers with it, and the bus is the one that delivers to the bus, and the bus is the one that distributes everything. So let's apply this design pattern now.", "tokens": [509, 362, 281, 2845, 1184, 661, 281, 1184, 661, 807, 264, 27878, 11, 293, 291, 362, 281, 1884, 364, 9226, 337, 1184, 472, 11, 257, 1329, 337, 1184, 472, 11, 293, 1184, 472, 575, 281, 7280, 365, 264, 661, 1045, 13, 400, 341, 307, 257, 6179, 1399, 13, 492, 362, 281, 5039, 264, 1154, 538, 4084, 257, 2808, 3039, 4478, 510, 11, 597, 307, 264, 1412, 1255, 11, 597, 321, 2825, 466, 11, 293, 1203, 38351, 365, 309, 11, 293, 264, 1255, 307, 264, 472, 300, 24860, 281, 264, 1255, 11, 293, 264, 1255, 307, 264, 472, 300, 4400, 1819, 1203, 13, 407, 718, 311, 3079, 341, 1715, 5102, 586, 13], "avg_logprob": -0.5385044903627464, "compression_ratio": 1.9465648854961832, "no_speech_prob": 5.841255187988281e-06, "words": [{"start": 670.76, "end": 670.92, "word": " You", "probability": 0.257080078125}, {"start": 670.92, "end": 671.08, "word": " have", "probability": 0.266357421875}, {"start": 671.08, "end": 671.2, "word": " to", "probability": 0.95458984375}, {"start": 671.2, "end": 671.46, "word": " send", "probability": 0.484130859375}, {"start": 671.46, "end": 671.68, "word": " each", "probability": 0.329345703125}, {"start": 671.68, "end": 671.7, "word": " other", "probability": 0.53466796875}, {"start": 671.7, "end": 671.7, "word": " to", "probability": 0.1298828125}, {"start": 671.7, "end": 671.86, "word": " each", "probability": 0.4951171875}, {"start": 671.86, "end": 671.86, "word": " other", "probability": 0.65185546875}, {"start": 671.86, "end": 672.1, "word": " through", "probability": 0.1265869140625}, {"start": 672.1, "end": 672.24, "word": " the", "probability": 0.509765625}, {"start": 672.24, "end": 672.58, "word": " observer,", "probability": 0.55126953125}, {"start": 672.74, "end": 672.84, "word": " and", "probability": 0.27685546875}, {"start": 672.84, "end": 672.86, "word": " you", "probability": 0.271240234375}, {"start": 672.86, "end": 672.9, "word": " have", "probability": 0.7548828125}, {"start": 672.9, "end": 672.9, "word": " to", "probability": 0.96484375}, {"start": 672.9, "end": 673.12, "word": " create", "probability": 0.31494140625}, {"start": 673.12, "end": 673.86, "word": " an", "probability": 0.65234375}, {"start": 673.86, "end": 674.26, "word": " interface", "probability": 0.90576171875}, {"start": 674.26, "end": 674.26, "word": " for", "probability": 0.810546875}, {"start": 674.26, "end": 674.26, "word": " each", "probability": 0.908203125}, {"start": 674.26, "end": 674.26, "word": " one,", "probability": 0.36083984375}, {"start": 674.52, "end": 674.7, "word": " a", "probability": 0.33837890625}, {"start": 674.7, "end": 675.62, "word": " list", "probability": 0.90087890625}, {"start": 675.62, "end": 675.62, "word": " for", "probability": 0.7666015625}, {"start": 675.62, "end": 675.62, "word": " each", "probability": 0.95166015625}, {"start": 675.62, "end": 675.62, "word": " one,", "probability": 0.88671875}, {"start": 675.68, "end": 675.74, "word": " and", "probability": 0.80859375}, {"start": 675.74, "end": 675.9, "word": " each", "probability": 0.69921875}, {"start": 675.9, "end": 676.14, "word": " one", "probability": 0.79833984375}, {"start": 676.14, "end": 676.26, "word": " has", "probability": 0.2462158203125}, {"start": 676.26, "end": 676.26, "word": " to", "probability": 0.90087890625}, {"start": 676.26, "end": 676.5, "word": " register", "probability": 0.65966796875}, {"start": 676.5, "end": 676.7, "word": " with", "probability": 0.460205078125}, {"start": 676.7, "end": 677.1, "word": " the", "probability": 0.77685546875}, {"start": 677.1, "end": 677.1, "word": " other", "probability": 0.65478515625}, {"start": 677.1, "end": 677.4, "word": " three.", "probability": 0.78662109375}, {"start": 678.14, "end": 678.54, "word": " And", "probability": 0.382080078125}, {"start": 678.54, "end": 678.7, "word": " this", "probability": 0.81005859375}, {"start": 678.7, "end": 678.88, "word": " is", "probability": 0.31982421875}, {"start": 678.88, "end": 678.88, "word": " a", "probability": 0.83837890625}, {"start": 678.88, "end": 678.88, "word": " complicated", "probability": 0.59765625}, {"start": 678.88, "end": 679.0, "word": " process.", "probability": 0.84521484375}, {"start": 680.36, "end": 680.76, "word": " We", "probability": 0.6591796875}, {"start": 680.76, "end": 680.84, "word": " have", "probability": 0.271484375}, {"start": 680.84, "end": 680.92, "word": " to", "probability": 0.95556640625}, {"start": 680.92, "end": 681.12, "word": " solve", "probability": 0.80419921875}, {"start": 681.12, "end": 681.24, "word": " the", "probability": 0.75048828125}, {"start": 681.24, "end": 681.56, "word": " problem", "probability": 0.689453125}, {"start": 681.56, "end": 681.86, "word": " by", "probability": 0.33837890625}, {"start": 681.86, "end": 682.12, "word": " creating", "probability": 0.58349609375}, {"start": 682.12, "end": 682.24, "word": " a", "probability": 0.8134765625}, {"start": 682.24, "end": 682.82, "word": " middleware", "probability": 0.4696044921875}, {"start": 682.82, "end": 682.84, "word": " element", "probability": 0.437255859375}, {"start": 682.84, "end": 683.1, "word": " here,", "probability": 0.3310546875}, {"start": 683.5, "end": 683.62, "word": " which", "probability": 0.87158203125}, {"start": 683.62, "end": 683.78, "word": " is", "probability": 0.9443359375}, {"start": 683.78, "end": 683.9, "word": " the", "probability": 0.7802734375}, {"start": 683.9, "end": 684.08, "word": " data", "probability": 0.468994140625}, {"start": 684.08, "end": 684.36, "word": " bus,", "probability": 0.95263671875}, {"start": 684.78, "end": 685.16, "word": " which", "probability": 0.74462890625}, {"start": 685.16, "end": 685.3, "word": " we", "probability": 0.8984375}, {"start": 685.3, "end": 685.58, "word": " talked", "probability": 0.422607421875}, {"start": 685.58, "end": 685.88, "word": " about,", "probability": 0.90771484375}, {"start": 686.16, "end": 686.38, "word": " and", "probability": 0.78662109375}, {"start": 686.38, "end": 686.62, "word": " everything", "probability": 0.51416015625}, {"start": 686.62, "end": 687.0, "word": " registers", "probability": 0.36669921875}, {"start": 687.0, "end": 687.28, "word": " with", "probability": 0.6337890625}, {"start": 687.28, "end": 687.38, "word": " it,", "probability": 0.64404296875}, {"start": 687.46, "end": 687.48, "word": " and", "probability": 0.7822265625}, {"start": 687.48, "end": 687.56, "word": " the", "probability": 0.638671875}, {"start": 687.56, "end": 687.76, "word": " bus", "probability": 0.94091796875}, {"start": 687.76, "end": 687.98, "word": " is", "probability": 0.54638671875}, {"start": 687.98, "end": 688.16, "word": " the", "probability": 0.360595703125}, {"start": 688.16, "end": 688.56, "word": " one", "probability": 0.685546875}, {"start": 688.56, "end": 689.26, "word": " that", "probability": 0.460205078125}, {"start": 689.26, "end": 689.66, "word": " delivers", "probability": 0.247314453125}, {"start": 689.66, "end": 689.78, "word": " to", "probability": 0.30908203125}, {"start": 689.78, "end": 689.94, "word": " the", "probability": 0.80224609375}, {"start": 689.94, "end": 690.1, "word": " bus,", "probability": 0.927734375}, {"start": 690.14, "end": 690.2, "word": " and", "probability": 0.8193359375}, {"start": 690.2, "end": 690.28, "word": " the", "probability": 0.84814453125}, {"start": 690.28, "end": 690.44, "word": " bus", "probability": 0.95361328125}, {"start": 690.44, "end": 690.58, "word": " is", "probability": 0.70654296875}, {"start": 690.58, "end": 690.88, "word": " the", "probability": 0.6806640625}, {"start": 690.88, "end": 690.9, "word": " one", "probability": 0.9189453125}, {"start": 690.9, "end": 690.96, "word": " that", "probability": 0.87109375}, {"start": 690.96, "end": 692.38, "word": " distributes", "probability": 0.877685546875}, {"start": 692.38, "end": 692.76, "word": " everything.", "probability": 0.22314453125}, {"start": 692.92, "end": 693.18, "word": " So", "probability": 0.7568359375}, {"start": 693.18, "end": 693.5, "word": " let's", "probability": 0.70849609375}, {"start": 693.5, "end": 694.06, "word": " apply", "probability": 0.5302734375}, {"start": 694.06, "end": 696.2, "word": " this", "probability": 0.8193359375}, {"start": 696.2, "end": 696.56, "word": " design", "probability": 0.9130859375}, {"start": 696.56, "end": 696.96, "word": " pattern", "probability": 0.8935546875}, {"start": 696.96, "end": 697.14, "word": " now.", "probability": 0.5673828125}], "temperature": 1.0}, {"id": 30, "seek": 72367, "start": 701.83, "end": 723.67, "text": " as the third one because the first thing I have to do is to make the components that are connected to each other I have to make any class A and B and C and this is also D to be the same symbol of the board", "tokens": [382, 264, 2636, 472, 570, 264, 700, 551, 286, 362, 281, 360, 307, 281, 652, 264, 6677, 300, 366, 4582, 281, 1184, 661, 286, 362, 281, 652, 604, 1508, 316, 293, 363, 293, 383, 293, 341, 307, 611, 413, 281, 312, 264, 912, 5986, 295, 264, 3150], "avg_logprob": -0.5618489533662796, "compression_ratio": 1.5606060606060606, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 701.83, "end": 702.13, "word": " as", "probability": 0.09332275390625}, {"start": 702.13, "end": 702.21, "word": " the", "probability": 0.603515625}, {"start": 702.21, "end": 702.39, "word": " third", "probability": 0.3818359375}, {"start": 702.39, "end": 702.67, "word": " one", "probability": 0.279296875}, {"start": 702.67, "end": 703.87, "word": " because", "probability": 0.3271484375}, {"start": 703.87, "end": 704.01, "word": " the", "probability": 0.463134765625}, {"start": 704.01, "end": 704.15, "word": " first", "probability": 0.88037109375}, {"start": 704.15, "end": 704.47, "word": " thing", "probability": 0.8330078125}, {"start": 704.47, "end": 704.89, "word": " I", "probability": 0.365966796875}, {"start": 704.89, "end": 705.09, "word": " have", "probability": 0.28759765625}, {"start": 705.09, "end": 705.09, "word": " to", "probability": 0.96728515625}, {"start": 705.09, "end": 705.25, "word": " do", "probability": 0.87255859375}, {"start": 705.25, "end": 705.35, "word": " is", "probability": 0.759765625}, {"start": 705.35, "end": 705.35, "word": " to", "probability": 0.4130859375}, {"start": 705.35, "end": 705.35, "word": " make", "probability": 0.370361328125}, {"start": 705.35, "end": 705.47, "word": " the", "probability": 0.68701171875}, {"start": 705.47, "end": 706.03, "word": " components", "probability": 0.748046875}, {"start": 706.03, "end": 706.13, "word": " that", "probability": 0.377197265625}, {"start": 706.13, "end": 706.29, "word": " are", "probability": 0.280029296875}, {"start": 706.29, "end": 706.63, "word": " connected", "probability": 0.81494140625}, {"start": 706.63, "end": 706.81, "word": " to", "probability": 0.56591796875}, {"start": 706.81, "end": 707.01, "word": " each", "probability": 0.86376953125}, {"start": 707.01, "end": 707.07, "word": " other", "probability": 0.8798828125}, {"start": 707.07, "end": 707.21, "word": " I", "probability": 0.6064453125}, {"start": 707.21, "end": 707.35, "word": " have", "probability": 0.69384765625}, {"start": 707.35, "end": 707.41, "word": " to", "probability": 0.96728515625}, {"start": 707.41, "end": 707.61, "word": " make", "probability": 0.8447265625}, {"start": 707.61, "end": 707.95, "word": " any", "probability": 0.8486328125}, {"start": 707.95, "end": 708.39, "word": " class", "probability": 0.91162109375}, {"start": 708.39, "end": 708.81, "word": " A", "probability": 0.642578125}, {"start": 708.81, "end": 710.35, "word": " and", "probability": 0.54150390625}, {"start": 710.35, "end": 710.63, "word": " B", "probability": 0.98388671875}, {"start": 710.63, "end": 714.03, "word": " and", "probability": 0.92578125}, {"start": 714.03, "end": 714.27, "word": " C", "probability": 0.9755859375}, {"start": 714.27, "end": 719.87, "word": " and", "probability": 0.82666015625}, {"start": 719.87, "end": 720.07, "word": " this", "probability": 0.60400390625}, {"start": 720.07, "end": 720.13, "word": " is", "probability": 0.24267578125}, {"start": 720.13, "end": 720.41, "word": " also", "probability": 0.55419921875}, {"start": 720.41, "end": 720.63, "word": " D", "probability": 0.66455078125}, {"start": 720.63, "end": 722.53, "word": " to", "probability": 0.5458984375}, {"start": 722.53, "end": 722.81, "word": " be", "probability": 0.18505859375}, {"start": 722.81, "end": 722.91, "word": " the", "probability": 0.7919921875}, {"start": 722.91, "end": 723.01, "word": " same", "probability": 0.89013671875}, {"start": 723.01, "end": 723.37, "word": " symbol", "probability": 0.314697265625}, {"start": 723.37, "end": 723.51, "word": " of", "probability": 0.320068359375}, {"start": 723.51, "end": 723.59, "word": " the", "probability": 0.74365234375}, {"start": 723.59, "end": 723.67, "word": " board", "probability": 0.74658203125}], "temperature": 1.0}, {"id": 31, "seek": 74877, "start": 728.19, "end": 748.77, "text": "In every class of these classes, we make a statement public void void send to all and put a string text here This is a method that you put in every class so that if I make an object and claim send to all, it should send to whom?", "tokens": [4575, 633, 1508, 295, 613, 5359, 11, 321, 652, 257, 5629, 1908, 22009, 22009, 2845, 281, 439, 293, 829, 257, 6798, 2487, 510, 639, 307, 257, 3170, 300, 291, 829, 294, 633, 1508, 370, 300, 498, 286, 652, 364, 2657, 293, 3932, 2845, 281, 439, 11, 309, 820, 2845, 281, 7101, 30], "avg_logprob": -0.6108490476068461, "compression_ratio": 1.5833333333333333, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 728.19, "end": 728.75, "word": "In", "probability": 0.056365966796875}, {"start": 728.75, "end": 729.31, "word": " every", "probability": 0.51806640625}, {"start": 729.31, "end": 729.67, "word": " class", "probability": 0.67578125}, {"start": 729.67, "end": 729.75, "word": " of", "probability": 0.57177734375}, {"start": 729.75, "end": 729.85, "word": " these", "probability": 0.55322265625}, {"start": 729.85, "end": 730.23, "word": " classes,", "probability": 0.84716796875}, {"start": 730.65, "end": 730.67, "word": " we", "probability": 0.72021484375}, {"start": 730.67, "end": 730.85, "word": " make", "probability": 0.2271728515625}, {"start": 730.85, "end": 731.33, "word": " a", "probability": 0.66162109375}, {"start": 731.33, "end": 731.33, "word": " statement", "probability": 0.1412353515625}, {"start": 731.33, "end": 732.11, "word": " public", "probability": 0.56689453125}, {"start": 732.11, "end": 732.71, "word": " void", "probability": 0.84326171875}, {"start": 732.71, "end": 733.45, "word": " void", "probability": 0.8359375}, {"start": 733.45, "end": 733.97, "word": " send", "probability": 0.6337890625}, {"start": 733.97, "end": 734.69, "word": " to", "probability": 0.90234375}, {"start": 734.69, "end": 734.95, "word": " all", "probability": 0.91357421875}, {"start": 734.95, "end": 736.41, "word": " and", "probability": 0.33984375}, {"start": 736.41, "end": 736.71, "word": " put", "probability": 0.363037109375}, {"start": 736.71, "end": 736.91, "word": " a", "probability": 0.304931640625}, {"start": 736.91, "end": 737.99, "word": " string", "probability": 0.89404296875}, {"start": 737.99, "end": 739.23, "word": " text", "probability": 0.736328125}, {"start": 739.23, "end": 739.47, "word": " here", "probability": 0.318603515625}, {"start": 739.47, "end": 741.13, "word": " This", "probability": 0.2427978515625}, {"start": 741.13, "end": 741.21, "word": " is", "probability": 0.417236328125}, {"start": 741.21, "end": 741.23, "word": " a", "probability": 0.84375}, {"start": 741.23, "end": 741.49, "word": " method", "probability": 0.9345703125}, {"start": 741.49, "end": 741.63, "word": " that", "probability": 0.40576171875}, {"start": 741.63, "end": 741.79, "word": " you", "probability": 0.380615234375}, {"start": 741.79, "end": 742.01, "word": " put", "probability": 0.227783203125}, {"start": 742.01, "end": 742.17, "word": " in", "probability": 0.87451171875}, {"start": 742.17, "end": 742.37, "word": " every", "probability": 0.65087890625}, {"start": 742.37, "end": 742.71, "word": " class", "probability": 0.8994140625}, {"start": 742.71, "end": 742.99, "word": " so", "probability": 0.1629638671875}, {"start": 742.99, "end": 743.25, "word": " that", "probability": 0.66455078125}, {"start": 743.25, "end": 743.41, "word": " if", "probability": 0.89697265625}, {"start": 743.41, "end": 744.23, "word": " I", "probability": 0.845703125}, {"start": 744.23, "end": 744.47, "word": " make", "probability": 0.265380859375}, {"start": 744.47, "end": 744.63, "word": " an", "probability": 0.7060546875}, {"start": 744.63, "end": 744.85, "word": " object", "probability": 0.97412109375}, {"start": 744.85, "end": 745.39, "word": " and", "probability": 0.33837890625}, {"start": 745.39, "end": 745.79, "word": " claim", "probability": 0.37451171875}, {"start": 745.79, "end": 746.15, "word": " send", "probability": 0.59716796875}, {"start": 746.15, "end": 746.37, "word": " to", "probability": 0.95654296875}, {"start": 746.37, "end": 746.63, "word": " all,", "probability": 0.95556640625}, {"start": 747.07, "end": 747.65, "word": " it", "probability": 0.583984375}, {"start": 747.65, "end": 748.03, "word": " should", "probability": 0.435546875}, {"start": 748.03, "end": 748.39, "word": " send", "probability": 0.75537109375}, {"start": 748.39, "end": 748.55, "word": " to", "probability": 0.890625}, {"start": 748.55, "end": 748.77, "word": " whom?", "probability": 0.78662109375}], "temperature": 1.0}, {"id": 32, "seek": 77741, "start": 749.47, "end": 777.41, "text": " for the rest of the class if I create an object from A and I tell it send to all this message should reach to whom? to B and C and D and the same thing in class B if I call send to all it will reach to A and B and D to the other three so here in every class I made this argument and this argument is still empty", "tokens": [337, 264, 1472, 295, 264, 1508, 498, 286, 1884, 364, 2657, 490, 316, 293, 286, 980, 309, 2845, 281, 439, 341, 3636, 820, 2524, 281, 7101, 30, 281, 363, 293, 383, 293, 413, 293, 264, 912, 551, 294, 1508, 363, 498, 286, 818, 2845, 281, 439, 309, 486, 2524, 281, 316, 293, 363, 293, 413, 281, 264, 661, 1045, 370, 510, 294, 633, 1508, 286, 1027, 341, 6770, 293, 341, 6770, 307, 920, 6707], "avg_logprob": -0.6354166793823243, "compression_ratio": 1.752808988764045, "no_speech_prob": 3.0994415283203125e-06, "words": [{"start": 749.47, "end": 749.69, "word": " for", "probability": 0.1517333984375}, {"start": 749.69, "end": 749.81, "word": " the", "probability": 0.34375}, {"start": 749.81, "end": 749.99, "word": " rest", "probability": 0.318603515625}, {"start": 749.99, "end": 750.45, "word": " of", "probability": 0.49609375}, {"start": 750.45, "end": 750.59, "word": " the", "probability": 0.5234375}, {"start": 750.59, "end": 750.59, "word": " class", "probability": 0.2349853515625}, {"start": 750.59, "end": 751.03, "word": " if", "probability": 0.14306640625}, {"start": 751.03, "end": 751.61, "word": " I", "probability": 0.281982421875}, {"start": 751.61, "end": 751.89, "word": " create", "probability": 0.2890625}, {"start": 751.89, "end": 752.03, "word": " an", "probability": 0.55224609375}, {"start": 752.03, "end": 752.19, "word": " object", "probability": 0.9248046875}, {"start": 752.19, "end": 752.39, "word": " from", "probability": 0.47119140625}, {"start": 752.39, "end": 752.57, "word": " A", "probability": 0.74951171875}, {"start": 752.57, "end": 752.67, "word": " and", "probability": 0.67041015625}, {"start": 752.67, "end": 752.71, "word": " I", "probability": 0.375}, {"start": 752.71, "end": 752.79, "word": " tell", "probability": 0.2548828125}, {"start": 752.79, "end": 752.95, "word": " it", "probability": 0.80615234375}, {"start": 752.95, "end": 753.15, "word": " send", "probability": 0.411865234375}, {"start": 753.15, "end": 753.33, "word": " to", "probability": 0.9248046875}, {"start": 753.33, "end": 753.61, "word": " all", "probability": 0.9326171875}, {"start": 753.61, "end": 753.85, "word": " this", "probability": 0.1368408203125}, {"start": 753.85, "end": 753.85, "word": " message", "probability": 0.6298828125}, {"start": 753.85, "end": 753.91, "word": " should", "probability": 0.38037109375}, {"start": 753.91, "end": 755.69, "word": " reach", "probability": 0.454345703125}, {"start": 755.69, "end": 756.01, "word": " to", "probability": 0.290283203125}, {"start": 756.01, "end": 756.01, "word": " whom?", "probability": 0.28173828125}, {"start": 756.39, "end": 756.69, "word": " to", "probability": 0.6533203125}, {"start": 756.69, "end": 756.81, "word": " B", "probability": 0.4365234375}, {"start": 756.81, "end": 756.93, "word": " and", "probability": 0.462646484375}, {"start": 756.93, "end": 757.07, "word": " C", "probability": 0.9228515625}, {"start": 757.07, "end": 757.17, "word": " and", "probability": 0.896484375}, {"start": 757.17, "end": 757.29, "word": " D", "probability": 0.9921875}, {"start": 757.29, "end": 757.97, "word": " and", "probability": 0.65234375}, {"start": 757.97, "end": 758.11, "word": " the", "probability": 0.462646484375}, {"start": 758.11, "end": 758.19, "word": " same", "probability": 0.90966796875}, {"start": 758.19, "end": 758.61, "word": " thing", "probability": 0.787109375}, {"start": 758.61, "end": 759.25, "word": " in", "probability": 0.431396484375}, {"start": 759.25, "end": 759.67, "word": " class", "probability": 0.72998046875}, {"start": 759.67, "end": 760.05, "word": " B", "probability": 0.98779296875}, {"start": 760.05, "end": 760.47, "word": " if", "probability": 0.8515625}, {"start": 760.47, "end": 760.65, "word": " I", "probability": 0.7509765625}, {"start": 760.65, "end": 760.85, "word": " call", "probability": 0.2249755859375}, {"start": 760.85, "end": 761.23, "word": " send", "probability": 0.53271484375}, {"start": 761.23, "end": 761.45, "word": " to", "probability": 0.96240234375}, {"start": 761.45, "end": 761.73, "word": " all", "probability": 0.951171875}, {"start": 761.73, "end": 764.59, "word": " it", "probability": 0.50537109375}, {"start": 764.59, "end": 765.05, "word": " will", "probability": 0.37841796875}, {"start": 765.05, "end": 765.23, "word": " reach", "probability": 0.79052734375}, {"start": 765.23, "end": 765.39, "word": " to", "probability": 0.69775390625}, {"start": 765.39, "end": 765.59, "word": " A", "probability": 0.9580078125}, {"start": 765.59, "end": 765.73, "word": " and", "probability": 0.46630859375}, {"start": 765.73, "end": 765.97, "word": " B", "probability": 0.9912109375}, {"start": 765.97, "end": 766.59, "word": " and", "probability": 0.94287109375}, {"start": 766.59, "end": 766.81, "word": " D", "probability": 0.978515625}, {"start": 766.81, "end": 767.79, "word": " to", "probability": 0.251953125}, {"start": 767.79, "end": 768.11, "word": " the", "probability": 0.62451171875}, {"start": 768.11, "end": 768.13, "word": " other", "probability": 0.69970703125}, {"start": 768.13, "end": 768.67, "word": " three", "probability": 0.69140625}, {"start": 768.67, "end": 772.93, "word": " so", "probability": 0.29345703125}, {"start": 772.93, "end": 773.17, "word": " here", "probability": 0.49853515625}, {"start": 773.17, "end": 773.37, "word": " in", "probability": 0.78125}, {"start": 773.37, "end": 773.63, "word": " every", "probability": 0.461669921875}, {"start": 773.63, "end": 773.95, "word": " class", "probability": 0.943359375}, {"start": 773.95, "end": 774.09, "word": " I", "probability": 0.83251953125}, {"start": 774.09, "end": 774.31, "word": " made", "probability": 0.50732421875}, {"start": 774.31, "end": 774.47, "word": " this", "probability": 0.60595703125}, {"start": 774.47, "end": 774.69, "word": " argument", "probability": 0.103759765625}, {"start": 774.69, "end": 774.93, "word": " and", "probability": 0.755859375}, {"start": 774.93, "end": 775.21, "word": " this", "probability": 0.477294921875}, {"start": 775.21, "end": 775.57, "word": " argument", "probability": 0.87451171875}, {"start": 775.57, "end": 775.89, "word": " is", "probability": 0.28759765625}, {"start": 775.89, "end": 777.41, "word": " still", "probability": 0.6396484375}, {"start": 777.41, "end": 777.41, "word": " empty", "probability": 0.4111328125}], "temperature": 1.0}, {"id": 33, "seek": 80062, "start": 784.16, "end": 800.62, "text": " Okay, and then I want to do a test Which is the main method This is A", "tokens": [1033, 11, 293, 550, 286, 528, 281, 360, 257, 1500, 3013, 307, 264, 2135, 3170, 639, 307, 316], "avg_logprob": -0.5485197619387978, "compression_ratio": 0.9722222222222222, "no_speech_prob": 0.0, "words": [{"start": 784.16, "end": 784.48, "word": " Okay,", "probability": 0.1295166015625}, {"start": 784.54, "end": 784.62, "word": " and", "probability": 0.375}, {"start": 784.62, "end": 784.9, "word": " then", "probability": 0.7431640625}, {"start": 784.9, "end": 785.32, "word": " I", "probability": 0.8955078125}, {"start": 785.32, "end": 785.32, "word": " want", "probability": 0.28271484375}, {"start": 785.32, "end": 785.36, "word": " to", "probability": 0.9697265625}, {"start": 785.36, "end": 785.48, "word": " do", "probability": 0.4296875}, {"start": 785.48, "end": 785.64, "word": " a", "probability": 0.85595703125}, {"start": 785.64, "end": 786.02, "word": " test", "probability": 0.841796875}, {"start": 786.02, "end": 789.0, "word": " Which", "probability": 0.23486328125}, {"start": 789.0, "end": 789.1, "word": " is", "probability": 0.9365234375}, {"start": 789.1, "end": 789.2, "word": " the", "probability": 0.86865234375}, {"start": 789.2, "end": 789.36, "word": " main", "probability": 0.90087890625}, {"start": 789.36, "end": 790.5, "word": " method", "probability": 0.9541015625}, {"start": 790.5, "end": 800.3, "word": " This", "probability": 0.207763671875}, {"start": 800.3, "end": 800.38, "word": " is", "probability": 0.89599609375}, {"start": 800.38, "end": 800.62, "word": " A", "probability": 0.6015625}], "temperature": 1.0}, {"id": 34, "seek": 84227, "start": 818.63, "end": 842.27, "text": "These three, what I want to do is to go to A and say send to all hello, this message is supposed to reach B, C and D and so on, if it goes to C, I say send to all, it should reach A, B and D, this is what I want to do and it is not done yet", "tokens": [28858, 1045, 11, 437, 286, 528, 281, 360, 307, 281, 352, 281, 316, 293, 584, 2845, 281, 439, 7751, 11, 341, 3636, 307, 3442, 281, 2524, 363, 11, 383, 293, 413, 293, 370, 322, 11, 498, 309, 1709, 281, 383, 11, 286, 584, 2845, 281, 439, 11, 309, 820, 2524, 316, 11, 363, 293, 413, 11, 341, 307, 437, 286, 528, 281, 360, 293, 309, 307, 406, 1096, 1939], "avg_logprob": -0.44196428315980096, "compression_ratio": 1.643835616438356, "no_speech_prob": 8.761882781982422e-06, "words": [{"start": 818.63, "end": 819.07, "word": "These", "probability": 0.1290283203125}, {"start": 819.07, "end": 819.51, "word": " three,", "probability": 0.54443359375}, {"start": 819.77, "end": 820.27, "word": " what", "probability": 0.66552734375}, {"start": 820.27, "end": 820.45, "word": " I", "probability": 0.91748046875}, {"start": 820.45, "end": 820.65, "word": " want", "probability": 0.748046875}, {"start": 820.65, "end": 820.79, "word": " to", "probability": 0.95068359375}, {"start": 820.79, "end": 821.01, "word": " do", "probability": 0.9560546875}, {"start": 821.01, "end": 821.27, "word": " is", "probability": 0.8505859375}, {"start": 821.27, "end": 821.39, "word": " to", "probability": 0.350341796875}, {"start": 821.39, "end": 821.51, "word": " go", "probability": 0.82861328125}, {"start": 821.51, "end": 821.65, "word": " to", "probability": 0.94873046875}, {"start": 821.65, "end": 821.93, "word": " A", "probability": 0.51416015625}, {"start": 821.93, "end": 823.19, "word": " and", "probability": 0.73388671875}, {"start": 823.19, "end": 823.39, "word": " say", "probability": 0.548828125}, {"start": 823.39, "end": 823.89, "word": " send", "probability": 0.486328125}, {"start": 823.89, "end": 825.09, "word": " to", "probability": 0.94921875}, {"start": 825.09, "end": 825.45, "word": " all", "probability": 0.92529296875}, {"start": 825.45, "end": 828.71, "word": " hello,", "probability": 0.2489013671875}, {"start": 829.55, "end": 829.65, "word": " this", "probability": 0.5400390625}, {"start": 829.65, "end": 829.93, "word": " message", "probability": 0.83349609375}, {"start": 829.93, "end": 830.33, "word": " is", "probability": 0.338134765625}, {"start": 830.33, "end": 830.55, "word": " supposed", "probability": 0.8330078125}, {"start": 830.55, "end": 830.61, "word": " to", "probability": 0.9736328125}, {"start": 830.61, "end": 830.83, "word": " reach", "probability": 0.69384765625}, {"start": 830.83, "end": 831.45, "word": " B,", "probability": 0.36474609375}, {"start": 832.47, "end": 832.65, "word": " C", "probability": 0.7001953125}, {"start": 832.65, "end": 832.79, "word": " and", "probability": 0.52587890625}, {"start": 832.79, "end": 832.95, "word": " D", "probability": 0.9970703125}, {"start": 832.95, "end": 833.95, "word": " and", "probability": 0.419189453125}, {"start": 833.95, "end": 834.23, "word": " so", "probability": 0.50927734375}, {"start": 834.23, "end": 834.33, "word": " on,", "probability": 0.89599609375}, {"start": 834.43, "end": 834.55, "word": " if", "probability": 0.8544921875}, {"start": 834.55, "end": 834.63, "word": " it", "probability": 0.9072265625}, {"start": 834.63, "end": 834.75, "word": " goes", "probability": 0.393310546875}, {"start": 834.75, "end": 834.93, "word": " to", "probability": 0.95751953125}, {"start": 834.93, "end": 835.27, "word": " C,", "probability": 0.9697265625}, {"start": 835.95, "end": 835.99, "word": " I", "probability": 0.321533203125}, {"start": 835.99, "end": 836.15, "word": " say", "probability": 0.422607421875}, {"start": 836.15, "end": 836.51, "word": " send", "probability": 0.81640625}, {"start": 836.51, "end": 836.71, "word": " to", "probability": 0.9619140625}, {"start": 836.71, "end": 836.99, "word": " all,", "probability": 0.955078125}, {"start": 837.49, "end": 837.63, "word": " it", "probability": 0.7744140625}, {"start": 837.63, "end": 837.77, "word": " should", "probability": 0.38525390625}, {"start": 837.77, "end": 838.07, "word": " reach", "probability": 0.8046875}, {"start": 838.07, "end": 838.33, "word": " A,", "probability": 0.95361328125}, {"start": 838.41, "end": 838.51, "word": " B", "probability": 0.82470703125}, {"start": 838.51, "end": 838.63, "word": " and", "probability": 0.787109375}, {"start": 838.63, "end": 839.17, "word": " D,", "probability": 0.9970703125}, {"start": 839.39, "end": 839.65, "word": " this", "probability": 0.266845703125}, {"start": 839.65, "end": 840.31, "word": " is", "probability": 0.92919921875}, {"start": 840.31, "end": 840.35, "word": " what", "probability": 0.939453125}, {"start": 840.35, "end": 840.57, "word": " I", "probability": 0.9951171875}, {"start": 840.57, "end": 840.77, "word": " want", "probability": 0.86474609375}, {"start": 840.77, "end": 841.15, "word": " to", "probability": 0.96533203125}, {"start": 841.15, "end": 841.37, "word": " do", "probability": 0.94921875}, {"start": 841.37, "end": 841.55, "word": " and", "probability": 0.478515625}, {"start": 841.55, "end": 841.69, "word": " it", "probability": 0.55419921875}, {"start": 841.69, "end": 841.81, "word": " is", "probability": 0.6005859375}, {"start": 841.81, "end": 841.89, "word": " not", "probability": 0.7587890625}, {"start": 841.89, "end": 842.15, "word": " done", "probability": 0.59765625}, {"start": 842.15, "end": 842.27, "word": " yet", "probability": 0.92919921875}], "temperature": 1.0}, {"id": 35, "seek": 86939, "start": 843.01, "end": 869.39, "text": "Now that we've done these four elements, we want to do the get-mean, this bus. The first point, notice that this bus is separated from all of them, right? So this is going to be a separate new class. We want to call this class data bus. Okay? Okay. The second point is a separate class, but also everyone needs to communicate with the bus.", "tokens": [13267, 300, 321, 600, 1096, 613, 1451, 4959, 11, 321, 528, 281, 360, 264, 483, 12, 1398, 282, 11, 341, 1255, 13, 440, 700, 935, 11, 3449, 300, 341, 1255, 307, 12005, 490, 439, 295, 552, 11, 558, 30, 407, 341, 307, 516, 281, 312, 257, 4994, 777, 1508, 13, 492, 528, 281, 818, 341, 1508, 1412, 1255, 13, 1033, 30, 1033, 13, 440, 1150, 935, 307, 257, 4994, 1508, 11, 457, 611, 1518, 2203, 281, 7890, 365, 264, 1255, 13], "avg_logprob": -0.47865854567143973, "compression_ratio": 1.6536585365853658, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 843.01, "end": 843.33, "word": "Now", "probability": 0.1605224609375}, {"start": 843.33, "end": 843.43, "word": " that", "probability": 0.270751953125}, {"start": 843.43, "end": 843.61, "word": " we've", "probability": 0.5775146484375}, {"start": 843.61, "end": 843.77, "word": " done", "probability": 0.412353515625}, {"start": 843.77, "end": 843.91, "word": " these", "probability": 0.428955078125}, {"start": 843.91, "end": 844.15, "word": " four", "probability": 0.6025390625}, {"start": 844.15, "end": 844.55, "word": " elements,", "probability": 0.87255859375}, {"start": 845.39, "end": 845.39, "word": " we", "probability": 0.5927734375}, {"start": 845.39, "end": 845.55, "word": " want", "probability": 0.2548828125}, {"start": 845.55, "end": 845.65, "word": " to", "probability": 0.9716796875}, {"start": 845.65, "end": 845.81, "word": " do", "probability": 0.66259765625}, {"start": 845.81, "end": 845.97, "word": " the", "probability": 0.59130859375}, {"start": 845.97, "end": 846.13, "word": " get", "probability": 0.375732421875}, {"start": 846.13, "end": 846.49, "word": "-mean,", "probability": 0.5320231119791666}, {"start": 847.13, "end": 847.25, "word": " this", "probability": 0.27099609375}, {"start": 847.25, "end": 847.47, "word": " bus.", "probability": 0.85498046875}, {"start": 848.05, "end": 848.41, "word": " The", "probability": 0.385986328125}, {"start": 848.41, "end": 848.53, "word": " first", "probability": 0.8544921875}, {"start": 848.53, "end": 848.79, "word": " point,", "probability": 0.890625}, {"start": 848.93, "end": 849.07, "word": " notice", "probability": 0.73876953125}, {"start": 849.07, "end": 849.31, "word": " that", "probability": 0.85302734375}, {"start": 849.31, "end": 849.79, "word": " this", "probability": 0.888671875}, {"start": 849.79, "end": 849.79, "word": " bus", "probability": 0.939453125}, {"start": 849.79, "end": 849.99, "word": " is", "probability": 0.87939453125}, {"start": 849.99, "end": 850.29, "word": " separated", "probability": 0.405029296875}, {"start": 850.29, "end": 850.65, "word": " from", "probability": 0.8896484375}, {"start": 850.65, "end": 851.09, "word": " all", "probability": 0.4814453125}, {"start": 851.09, "end": 851.19, "word": " of", "probability": 0.81640625}, {"start": 851.19, "end": 851.35, "word": " them,", "probability": 0.8994140625}, {"start": 851.39, "end": 851.67, "word": " right?", "probability": 0.7060546875}, {"start": 852.11, "end": 852.37, "word": " So", "probability": 0.1949462890625}, {"start": 852.37, "end": 852.59, "word": " this", "probability": 0.6337890625}, {"start": 852.59, "end": 852.67, "word": " is", "probability": 0.2685546875}, {"start": 852.67, "end": 852.79, "word": " going", "probability": 0.73583984375}, {"start": 852.79, "end": 852.79, "word": " to", "probability": 0.97021484375}, {"start": 852.79, "end": 852.95, "word": " be", "probability": 0.94921875}, {"start": 852.95, "end": 853.33, "word": " a", "probability": 0.95751953125}, {"start": 853.33, "end": 853.33, "word": " separate", "probability": 0.16455078125}, {"start": 853.33, "end": 854.57, "word": " new", "probability": 0.83837890625}, {"start": 854.57, "end": 854.57, "word": " class.", "probability": 0.96923828125}, {"start": 855.83, "end": 856.03, "word": " We", "probability": 0.88916015625}, {"start": 856.03, "end": 856.19, "word": " want", "probability": 0.625}, {"start": 856.19, "end": 856.37, "word": " to", "probability": 0.966796875}, {"start": 856.37, "end": 856.59, "word": " call", "probability": 0.68359375}, {"start": 856.59, "end": 856.93, "word": " this", "probability": 0.935546875}, {"start": 856.93, "end": 857.49, "word": " class", "probability": 0.94384765625}, {"start": 857.49, "end": 858.13, "word": " data", "probability": 0.322998046875}, {"start": 858.13, "end": 858.51, "word": " bus.", "probability": 0.7587890625}, {"start": 860.79, "end": 861.23, "word": " Okay?", "probability": 0.370361328125}, {"start": 862.23, "end": 862.53, "word": " Okay.", "probability": 0.50537109375}, {"start": 863.45, "end": 863.61, "word": " The", "probability": 0.87255859375}, {"start": 863.61, "end": 864.13, "word": " second", "probability": 0.8779296875}, {"start": 864.13, "end": 864.17, "word": " point", "probability": 0.97021484375}, {"start": 864.17, "end": 865.31, "word": " is", "probability": 0.8095703125}, {"start": 865.31, "end": 865.45, "word": " a", "probability": 0.8193359375}, {"start": 865.45, "end": 866.01, "word": " separate", "probability": 0.8134765625}, {"start": 866.01, "end": 866.03, "word": " class,", "probability": 0.97119140625}, {"start": 866.55, "end": 866.73, "word": " but", "probability": 0.919921875}, {"start": 866.73, "end": 867.31, "word": " also", "probability": 0.473876953125}, {"start": 867.31, "end": 867.99, "word": " everyone", "probability": 0.6455078125}, {"start": 867.99, "end": 868.43, "word": " needs", "probability": 0.84375}, {"start": 868.43, "end": 868.59, "word": " to", "probability": 0.9638671875}, {"start": 868.59, "end": 868.83, "word": " communicate", "probability": 0.73974609375}, {"start": 868.83, "end": 869.07, "word": " with", "probability": 0.89697265625}, {"start": 869.07, "end": 869.21, "word": " the", "probability": 0.9072265625}, {"start": 869.21, "end": 869.39, "word": " bus.", "probability": 0.9560546875}], "temperature": 1.0}, {"id": 36, "seek": 89627, "start": 870.75, "end": 896.27, "text": " The application should have one bus and everyone should communicate with it So what should we do next? We should design this bus as singleton Why? Because it should have one object and I can design it from anywhere So this class is made and now I want to design it as singleton How do we design it as singleton? We create private static data bus", "tokens": [440, 3861, 820, 362, 472, 1255, 293, 1518, 820, 7890, 365, 309, 407, 437, 820, 321, 360, 958, 30, 492, 820, 1715, 341, 1255, 382, 1522, 14806, 1545, 30, 1436, 309, 820, 362, 472, 2657, 293, 286, 393, 1715, 309, 490, 4992, 407, 341, 1508, 307, 1027, 293, 586, 286, 528, 281, 1715, 309, 382, 1522, 14806, 1012, 360, 321, 1715, 309, 382, 1522, 14806, 30, 492, 1884, 4551, 13437, 1412, 1255], "avg_logprob": -0.5136986105409387, "compression_ratio": 1.7563451776649746, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 870.75, "end": 871.19, "word": " The", "probability": 0.0777587890625}, {"start": 871.19, "end": 871.49, "word": " application", "probability": 0.5859375}, {"start": 871.49, "end": 871.67, "word": " should", "probability": 0.409423828125}, {"start": 871.67, "end": 871.99, "word": " have", "probability": 0.689453125}, {"start": 871.99, "end": 872.59, "word": " one", "probability": 0.55029296875}, {"start": 872.59, "end": 872.59, "word": " bus", "probability": 0.787109375}, {"start": 872.59, "end": 873.01, "word": " and", "probability": 0.480712890625}, {"start": 873.01, "end": 873.43, "word": " everyone", "probability": 0.41357421875}, {"start": 873.43, "end": 873.65, "word": " should", "probability": 0.347412109375}, {"start": 873.65, "end": 873.91, "word": " communicate", "probability": 0.537109375}, {"start": 873.91, "end": 874.21, "word": " with", "probability": 0.81982421875}, {"start": 874.21, "end": 874.41, "word": " it", "probability": 0.8251953125}, {"start": 874.41, "end": 875.19, "word": " So", "probability": 0.3369140625}, {"start": 875.19, "end": 875.35, "word": " what", "probability": 0.52197265625}, {"start": 875.35, "end": 875.47, "word": " should", "probability": 0.60107421875}, {"start": 875.47, "end": 875.59, "word": " we", "probability": 0.75146484375}, {"start": 875.59, "end": 875.73, "word": " do", "probability": 0.6708984375}, {"start": 875.73, "end": 876.11, "word": " next?", "probability": 0.1368408203125}, {"start": 876.55, "end": 877.07, "word": " We", "probability": 0.62451171875}, {"start": 877.07, "end": 877.51, "word": " should", "probability": 0.52783203125}, {"start": 877.51, "end": 877.85, "word": " design", "probability": 0.8974609375}, {"start": 877.85, "end": 877.97, "word": " this", "probability": 0.81787109375}, {"start": 877.97, "end": 877.97, "word": " bus", "probability": 0.935546875}, {"start": 877.97, "end": 878.21, "word": " as", "probability": 0.81298828125}, {"start": 878.21, "end": 878.69, "word": " singleton", "probability": 0.7548828125}, {"start": 878.69, "end": 879.75, "word": " Why?", "probability": 0.199462890625}, {"start": 879.87, "end": 880.11, "word": " Because", "probability": 0.317626953125}, {"start": 880.11, "end": 880.71, "word": " it", "probability": 0.48828125}, {"start": 880.71, "end": 880.71, "word": " should", "probability": 0.67919921875}, {"start": 880.71, "end": 880.71, "word": " have", "probability": 0.47705078125}, {"start": 880.71, "end": 880.81, "word": " one", "probability": 0.64990234375}, {"start": 880.81, "end": 881.51, "word": " object", "probability": 0.88232421875}, {"start": 881.51, "end": 882.45, "word": " and", "probability": 0.47998046875}, {"start": 882.45, "end": 882.59, "word": " I", "probability": 0.71875}, {"start": 882.59, "end": 882.67, "word": " can", "probability": 0.61279296875}, {"start": 882.67, "end": 882.81, "word": " design", "probability": 0.96728515625}, {"start": 882.81, "end": 882.91, "word": " it", "probability": 0.43798828125}, {"start": 882.91, "end": 882.97, "word": " from", "probability": 0.703125}, {"start": 882.97, "end": 884.65, "word": " anywhere", "probability": 0.6494140625}, {"start": 884.65, "end": 885.67, "word": " So", "probability": 0.40771484375}, {"start": 885.67, "end": 886.15, "word": " this", "probability": 0.70751953125}, {"start": 886.15, "end": 886.51, "word": " class", "probability": 0.6044921875}, {"start": 886.51, "end": 886.63, "word": " is", "probability": 0.49462890625}, {"start": 886.63, "end": 886.73, "word": " made", "probability": 0.402099609375}, {"start": 886.73, "end": 886.99, "word": " and", "probability": 0.44482421875}, {"start": 886.99, "end": 887.19, "word": " now", "probability": 0.57421875}, {"start": 887.19, "end": 887.55, "word": " I", "probability": 0.90087890625}, {"start": 887.55, "end": 888.27, "word": " want", "probability": 0.2861328125}, {"start": 888.27, "end": 888.37, "word": " to", "probability": 0.955078125}, {"start": 888.37, "end": 888.59, "word": " design", "probability": 0.93310546875}, {"start": 888.59, "end": 888.83, "word": " it", "probability": 0.9169921875}, {"start": 888.83, "end": 889.03, "word": " as", "probability": 0.912109375}, {"start": 889.03, "end": 889.47, "word": " singleton", "probability": 0.93359375}, {"start": 889.47, "end": 890.01, "word": " How", "probability": 0.783203125}, {"start": 890.01, "end": 890.09, "word": " do", "probability": 0.407470703125}, {"start": 890.09, "end": 890.13, "word": " we", "probability": 0.7998046875}, {"start": 890.13, "end": 890.27, "word": " design", "probability": 0.482177734375}, {"start": 890.27, "end": 890.39, "word": " it", "probability": 0.88134765625}, {"start": 890.39, "end": 890.51, "word": " as", "probability": 0.89404296875}, {"start": 890.51, "end": 890.87, "word": " singleton?", "probability": 0.9697265625}, {"start": 890.93, "end": 891.41, "word": " We", "probability": 0.63330078125}, {"start": 891.41, "end": 891.69, "word": " create", "probability": 0.1558837890625}, {"start": 891.69, "end": 892.33, "word": " private", "probability": 0.5546875}, {"start": 892.33, "end": 894.43, "word": " static", "probability": 0.88623046875}, {"start": 894.43, "end": 895.83, "word": " data", "probability": 0.4814453125}, {"start": 895.83, "end": 896.27, "word": " bus", "probability": 0.9208984375}], "temperature": 1.0}, {"id": 37, "seek": 92478, "start": 897.28, "end": 924.78, "text": "It's name is instance, it's value is null, it's an object of the kind of data bus Okay, and then we close the constructor Right guys? So that no one removes the object from it And instead of constructor, we make public static data bus get instance Now if the instance", "tokens": [3522, 311, 1315, 307, 5197, 11, 309, 311, 2158, 307, 18184, 11, 309, 311, 364, 2657, 295, 264, 733, 295, 1412, 1255, 1033, 11, 293, 550, 321, 1998, 264, 47479, 1779, 1074, 30, 407, 300, 572, 472, 30445, 264, 2657, 490, 309, 400, 2602, 295, 47479, 11, 321, 652, 1908, 13437, 1412, 1255, 483, 5197, 823, 498, 264, 5197], "avg_logprob": -0.5453124741713206, "compression_ratio": 1.5705882352941176, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 897.28, "end": 897.54, "word": "It's", "probability": 0.4046630859375}, {"start": 897.54, "end": 897.7, "word": " name", "probability": 0.417236328125}, {"start": 897.7, "end": 897.72, "word": " is", "probability": 0.93603515625}, {"start": 897.72, "end": 898.24, "word": " instance,", "probability": 0.7763671875}, {"start": 898.7, "end": 898.86, "word": " it's", "probability": 0.58941650390625}, {"start": 898.86, "end": 899.08, "word": " value", "probability": 0.90185546875}, {"start": 899.08, "end": 899.58, "word": " is", "probability": 0.82177734375}, {"start": 899.58, "end": 900.04, "word": " null,", "probability": 0.82470703125}, {"start": 900.14, "end": 900.3, "word": " it's", "probability": 0.66845703125}, {"start": 900.3, "end": 900.4, "word": " an", "probability": 0.54248046875}, {"start": 900.4, "end": 900.68, "word": " object", "probability": 0.951171875}, {"start": 900.68, "end": 900.8, "word": " of", "probability": 0.6435546875}, {"start": 900.8, "end": 900.94, "word": " the", "probability": 0.37109375}, {"start": 900.94, "end": 901.0, "word": " kind", "probability": 0.260986328125}, {"start": 901.0, "end": 901.1, "word": " of", "probability": 0.857421875}, {"start": 901.1, "end": 901.26, "word": " data", "probability": 0.400390625}, {"start": 901.26, "end": 901.58, "word": " bus", "probability": 0.8662109375}, {"start": 901.58, "end": 903.08, "word": " Okay,", "probability": 0.1168212890625}, {"start": 903.54, "end": 903.8, "word": " and", "probability": 0.5302734375}, {"start": 903.8, "end": 904.12, "word": " then", "probability": 0.71826171875}, {"start": 904.12, "end": 904.76, "word": " we", "probability": 0.7568359375}, {"start": 904.76, "end": 905.02, "word": " close", "probability": 0.71826171875}, {"start": 905.02, "end": 905.2, "word": " the", "probability": 0.70556640625}, {"start": 905.2, "end": 905.74, "word": " constructor", "probability": 0.90185546875}, {"start": 905.74, "end": 906.8, "word": " Right", "probability": 0.1962890625}, {"start": 906.8, "end": 907.14, "word": " guys?", "probability": 0.58837890625}, {"start": 909.0, "end": 909.54, "word": " So", "probability": 0.57373046875}, {"start": 909.54, "end": 909.7, "word": " that", "probability": 0.7099609375}, {"start": 909.7, "end": 909.78, "word": " no", "probability": 0.490234375}, {"start": 909.78, "end": 909.92, "word": " one", "probability": 0.89404296875}, {"start": 909.92, "end": 910.16, "word": " removes", "probability": 0.165771484375}, {"start": 910.16, "end": 910.32, "word": " the", "probability": 0.62646484375}, {"start": 910.32, "end": 910.54, "word": " object", "probability": 0.9599609375}, {"start": 910.54, "end": 910.72, "word": " from", "probability": 0.7177734375}, {"start": 910.72, "end": 910.96, "word": " it", "probability": 0.8505859375}, {"start": 910.96, "end": 911.4, "word": " And", "probability": 0.62255859375}, {"start": 911.4, "end": 911.62, "word": " instead", "probability": 0.8447265625}, {"start": 911.62, "end": 911.66, "word": " of", "probability": 0.97021484375}, {"start": 911.66, "end": 912.28, "word": " constructor,", "probability": 0.495849609375}, {"start": 912.76, "end": 912.98, "word": " we", "probability": 0.92626953125}, {"start": 912.98, "end": 913.14, "word": " make", "probability": 0.304931640625}, {"start": 913.14, "end": 913.74, "word": " public", "probability": 0.80419921875}, {"start": 913.74, "end": 914.98, "word": " static", "probability": 0.94287109375}, {"start": 914.98, "end": 916.34, "word": " data", "probability": 0.333984375}, {"start": 916.34, "end": 916.82, "word": " bus", "probability": 0.83544921875}, {"start": 916.82, "end": 918.92, "word": " get", "probability": 0.72900390625}, {"start": 918.92, "end": 919.52, "word": " instance", "probability": 0.7724609375}, {"start": 919.52, "end": 922.94, "word": " Now", "probability": 0.426513671875}, {"start": 922.94, "end": 923.3, "word": " if", "probability": 0.390869140625}, {"start": 923.3, "end": 924.3, "word": " the", "probability": 0.509765625}, {"start": 924.3, "end": 924.78, "word": " instance", "probability": 0.9794921875}], "temperature": 1.0}, {"id": 38, "seek": 95060, "start": 926.08, "end": 950.6, "text": " is equal to null go to instance and say new database and then return instance ok guys? ok, the second part will make a class", "tokens": [307, 2681, 281, 18184, 352, 281, 5197, 293, 584, 777, 8149, 293, 550, 2736, 5197, 3133, 1074, 30, 3133, 11, 264, 1150, 644, 486, 652, 257, 1508], "avg_logprob": -0.6160714349576405, "compression_ratio": 1.3020833333333333, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 926.08, "end": 926.42, "word": " is", "probability": 0.0333251953125}, {"start": 926.42, "end": 926.78, "word": " equal", "probability": 0.56640625}, {"start": 926.78, "end": 926.86, "word": " to", "probability": 0.9677734375}, {"start": 926.86, "end": 927.1, "word": " null", "probability": 0.640625}, {"start": 927.1, "end": 928.14, "word": " go", "probability": 0.336181640625}, {"start": 928.14, "end": 928.32, "word": " to", "probability": 0.9599609375}, {"start": 928.32, "end": 928.96, "word": " instance", "probability": 0.89599609375}, {"start": 928.96, "end": 929.8, "word": " and", "probability": 0.78515625}, {"start": 929.8, "end": 930.0, "word": " say", "probability": 0.30029296875}, {"start": 930.0, "end": 930.78, "word": " new", "probability": 0.892578125}, {"start": 930.78, "end": 933.14, "word": " database", "probability": 0.2705078125}, {"start": 933.14, "end": 935.42, "word": " and", "probability": 0.5830078125}, {"start": 935.42, "end": 935.72, "word": " then", "probability": 0.7314453125}, {"start": 935.72, "end": 936.52, "word": " return", "probability": 0.81982421875}, {"start": 936.52, "end": 940.32, "word": " instance", "probability": 0.95654296875}, {"start": 940.32, "end": 941.8, "word": " ok", "probability": 0.1927490234375}, {"start": 941.8, "end": 942.26, "word": " guys?", "probability": 0.71337890625}, {"start": 945.88, "end": 946.88, "word": " ok,", "probability": 0.49267578125}, {"start": 947.24, "end": 947.46, "word": " the", "probability": 0.6416015625}, {"start": 947.46, "end": 947.48, "word": " second", "probability": 0.80810546875}, {"start": 947.48, "end": 948.0, "word": " part", "probability": 0.74072265625}, {"start": 948.0, "end": 949.52, "word": " will", "probability": 0.308837890625}, {"start": 949.52, "end": 949.78, "word": " make", "probability": 0.5380859375}, {"start": 949.78, "end": 950.1, "word": " a", "probability": 0.66943359375}, {"start": 950.1, "end": 950.6, "word": " class", "probability": 0.97265625}], "temperature": 1.0}, {"id": 39, "seek": 97568, "start": 951.76, "end": 975.68, "text": "represents the message that we want to send between the compounds because someone says that this message is a text it is not necessary that I can send a text, integer, array, correct or not and we also want with the message from the useful information to send for example with the message from the sender from the sender why? because the future when the economy comes knows where it came from", "tokens": [265, 14508, 791, 264, 3636, 300, 321, 528, 281, 2845, 1296, 264, 21810, 570, 1580, 1619, 300, 341, 3636, 307, 257, 2487, 309, 307, 406, 4818, 300, 286, 393, 2845, 257, 2487, 11, 24922, 11, 10225, 11, 3006, 420, 406, 293, 321, 611, 528, 365, 264, 3636, 490, 264, 4420, 1589, 281, 2845, 337, 1365, 365, 264, 3636, 490, 264, 2845, 260, 490, 264, 2845, 260, 983, 30, 570, 264, 2027, 562, 264, 5010, 1487, 3255, 689, 309, 1361, 490], "avg_logprob": -0.5949073956336504, "compression_ratio": 1.893719806763285, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 951.76, "end": 952.24, "word": "represents", "probability": 0.616546630859375}, {"start": 952.24, "end": 952.72, "word": " the", "probability": 0.8525390625}, {"start": 952.72, "end": 953.1, "word": " message", "probability": 0.8232421875}, {"start": 953.1, "end": 953.88, "word": " that", "probability": 0.54638671875}, {"start": 953.88, "end": 954.12, "word": " we", "probability": 0.849609375}, {"start": 954.12, "end": 954.38, "word": " want", "probability": 0.666015625}, {"start": 954.38, "end": 954.48, "word": " to", "probability": 0.94677734375}, {"start": 954.48, "end": 954.72, "word": " send", "probability": 0.6435546875}, {"start": 954.72, "end": 955.92, "word": " between", "probability": 0.446533203125}, {"start": 955.92, "end": 956.04, "word": " the", "probability": 0.426025390625}, {"start": 956.04, "end": 956.5, "word": " compounds", "probability": 0.41796875}, {"start": 956.5, "end": 957.44, "word": " because", "probability": 0.2197265625}, {"start": 957.44, "end": 957.7, "word": " someone", "probability": 0.190673828125}, {"start": 957.7, "end": 957.94, "word": " says", "probability": 0.371826171875}, {"start": 957.94, "end": 958.14, "word": " that", "probability": 0.356201171875}, {"start": 958.14, "end": 958.32, "word": " this", "probability": 0.51708984375}, {"start": 958.32, "end": 958.56, "word": " message", "probability": 0.91162109375}, {"start": 958.56, "end": 958.72, "word": " is", "probability": 0.89013671875}, {"start": 958.72, "end": 958.96, "word": " a", "probability": 0.44677734375}, {"start": 958.96, "end": 959.38, "word": " text", "probability": 0.89990234375}, {"start": 959.38, "end": 959.88, "word": " it", "probability": 0.256103515625}, {"start": 959.88, "end": 959.9, "word": " is", "probability": 0.427490234375}, {"start": 959.9, "end": 960.04, "word": " not", "probability": 0.93115234375}, {"start": 960.04, "end": 960.26, "word": " necessary", "probability": 0.31591796875}, {"start": 960.26, "end": 960.34, "word": " that", "probability": 0.6015625}, {"start": 960.34, "end": 960.54, "word": " I", "probability": 0.55517578125}, {"start": 960.54, "end": 960.56, "word": " can", "probability": 0.537109375}, {"start": 960.56, "end": 960.68, "word": " send", "probability": 0.8056640625}, {"start": 960.68, "end": 960.8, "word": " a", "probability": 0.429931640625}, {"start": 960.8, "end": 961.06, "word": " text,", "probability": 0.94775390625}, {"start": 961.2, "end": 962.04, "word": " integer,", "probability": 0.6171875}, {"start": 962.42, "end": 963.1, "word": " array,", "probability": 0.7880859375}, {"start": 963.22, "end": 963.66, "word": " correct", "probability": 0.20556640625}, {"start": 963.66, "end": 963.82, "word": " or", "probability": 0.87646484375}, {"start": 963.82, "end": 963.9, "word": " not", "probability": 0.83154296875}, {"start": 963.9, "end": 964.48, "word": " and", "probability": 0.3505859375}, {"start": 964.48, "end": 964.52, "word": " we", "probability": 0.3583984375}, {"start": 964.52, "end": 964.72, "word": " also", "probability": 0.58740234375}, {"start": 964.72, "end": 964.72, "word": " want", "probability": 0.568359375}, {"start": 964.72, "end": 965.22, "word": " with", "probability": 0.2646484375}, {"start": 965.22, "end": 965.36, "word": " the", "probability": 0.7333984375}, {"start": 965.36, "end": 965.62, "word": " message", "probability": 0.818359375}, {"start": 965.62, "end": 965.88, "word": " from", "probability": 0.277099609375}, {"start": 965.88, "end": 966.0, "word": " the", "probability": 0.533203125}, {"start": 966.0, "end": 966.02, "word": " useful", "probability": 0.794921875}, {"start": 966.02, "end": 966.76, "word": " information", "probability": 0.75830078125}, {"start": 966.76, "end": 967.04, "word": " to", "probability": 0.335205078125}, {"start": 967.04, "end": 967.32, "word": " send", "probability": 0.7802734375}, {"start": 967.32, "end": 967.52, "word": " for", "probability": 0.29150390625}, {"start": 967.52, "end": 967.74, "word": " example", "probability": 0.9462890625}, {"start": 967.74, "end": 967.92, "word": " with", "probability": 0.396728515625}, {"start": 967.92, "end": 968.04, "word": " the", "probability": 0.7998046875}, {"start": 968.04, "end": 968.3, "word": " message", "probability": 0.880859375}, {"start": 968.3, "end": 968.48, "word": " from", "probability": 0.57666015625}, {"start": 968.48, "end": 968.64, "word": " the", "probability": 0.82568359375}, {"start": 968.64, "end": 969.9, "word": " sender", "probability": 0.942138671875}, {"start": 969.9, "end": 970.86, "word": " from", "probability": 0.393310546875}, {"start": 970.86, "end": 971.34, "word": " the", "probability": 0.8818359375}, {"start": 971.34, "end": 971.74, "word": " sender", "probability": 0.6976318359375}, {"start": 971.74, "end": 972.28, "word": " why?", "probability": 0.51513671875}, {"start": 972.42, "end": 972.6, "word": " because", "probability": 0.36279296875}, {"start": 972.6, "end": 973.04, "word": " the", "probability": 0.43701171875}, {"start": 973.04, "end": 973.42, "word": " future", "probability": 0.7744140625}, {"start": 973.42, "end": 973.68, "word": " when", "probability": 0.68359375}, {"start": 973.68, "end": 974.12, "word": " the", "probability": 0.475341796875}, {"start": 974.12, "end": 974.7, "word": " economy", "probability": 0.71923828125}, {"start": 974.7, "end": 974.72, "word": " comes", "probability": 0.6298828125}, {"start": 974.72, "end": 975.06, "word": " knows", "probability": 0.17626953125}, {"start": 975.06, "end": 975.32, "word": " where", "probability": 0.5400390625}, {"start": 975.32, "end": 975.44, "word": " it", "probability": 0.7626953125}, {"start": 975.44, "end": 975.62, "word": " came", "probability": 0.450439453125}, {"start": 975.62, "end": 975.68, "word": " from", "probability": 0.89013671875}], "temperature": 1.0}, {"id": 40, "seek": 100310, "start": 976.42, "end": 1003.1, "text": " and for whom you can put it so we came inside this class we want to make public class something we call bus message so a message to the bus this bus message of course how do I design it guys I want to make it generics why? because of the data I control in which type it is now the bus message I want to put two attributes in it T data", "tokens": [293, 337, 7101, 291, 393, 829, 309, 370, 321, 1361, 1854, 341, 1508, 321, 528, 281, 652, 1908, 1508, 746, 321, 818, 1255, 3636, 370, 257, 3636, 281, 264, 1255, 341, 1255, 3636, 295, 1164, 577, 360, 286, 1715, 309, 1074, 286, 528, 281, 652, 309, 1337, 1167, 983, 30, 570, 295, 264, 1412, 286, 1969, 294, 597, 2010, 309, 307, 586, 264, 1255, 3636, 286, 528, 281, 829, 732, 17212, 294, 309, 314, 1412], "avg_logprob": -0.5135690891428998, "compression_ratio": 1.763157894736842, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 976.42, "end": 976.9, "word": " and", "probability": 0.339599609375}, {"start": 976.9, "end": 976.96, "word": " for", "probability": 0.49658203125}, {"start": 976.96, "end": 977.14, "word": " whom", "probability": 0.857421875}, {"start": 977.14, "end": 977.32, "word": " you", "probability": 0.58544921875}, {"start": 977.32, "end": 977.52, "word": " can", "probability": 0.8056640625}, {"start": 977.52, "end": 977.8, "word": " put", "probability": 0.351806640625}, {"start": 977.8, "end": 977.98, "word": " it", "probability": 0.323486328125}, {"start": 977.98, "end": 979.0, "word": " so", "probability": 0.09686279296875}, {"start": 979.0, "end": 979.36, "word": " we", "probability": 0.6083984375}, {"start": 979.36, "end": 979.36, "word": " came", "probability": 0.40185546875}, {"start": 979.36, "end": 979.64, "word": " inside", "probability": 0.47412109375}, {"start": 979.64, "end": 979.8, "word": " this", "probability": 0.72998046875}, {"start": 979.8, "end": 980.18, "word": " class", "probability": 0.9599609375}, {"start": 980.18, "end": 980.94, "word": " we", "probability": 0.438232421875}, {"start": 980.94, "end": 981.1, "word": " want", "probability": 0.46484375}, {"start": 981.1, "end": 981.16, "word": " to", "probability": 0.9677734375}, {"start": 981.16, "end": 981.44, "word": " make", "probability": 0.59033203125}, {"start": 981.44, "end": 982.64, "word": " public", "probability": 0.57568359375}, {"start": 982.64, "end": 984.04, "word": " class", "probability": 0.9638671875}, {"start": 984.04, "end": 984.86, "word": " something", "probability": 0.462646484375}, {"start": 984.86, "end": 984.98, "word": " we", "probability": 0.42431640625}, {"start": 984.98, "end": 985.24, "word": " call", "probability": 0.55322265625}, {"start": 985.24, "end": 985.58, "word": " bus", "probability": 0.64306640625}, {"start": 985.58, "end": 986.02, "word": " message", "probability": 0.8681640625}, {"start": 986.02, "end": 988.64, "word": " so", "probability": 0.1689453125}, {"start": 988.64, "end": 988.8, "word": " a", "probability": 0.50927734375}, {"start": 988.8, "end": 989.02, "word": " message", "probability": 0.81494140625}, {"start": 989.02, "end": 989.22, "word": " to", "probability": 0.494873046875}, {"start": 989.22, "end": 989.9, "word": " the", "probability": 0.72265625}, {"start": 989.9, "end": 990.16, "word": " bus", "probability": 0.95458984375}, {"start": 990.16, "end": 991.08, "word": " this", "probability": 0.552734375}, {"start": 991.08, "end": 991.3, "word": " bus", "probability": 0.89990234375}, {"start": 991.3, "end": 991.7, "word": " message", "probability": 0.92919921875}, {"start": 991.7, "end": 992.36, "word": " of", "probability": 0.284912109375}, {"start": 992.36, "end": 992.44, "word": " course", "probability": 0.92236328125}, {"start": 992.44, "end": 992.78, "word": " how", "probability": 0.484375}, {"start": 992.78, "end": 992.92, "word": " do", "probability": 0.35986328125}, {"start": 992.92, "end": 992.96, "word": " I", "probability": 0.73388671875}, {"start": 992.96, "end": 993.24, "word": " design", "probability": 0.642578125}, {"start": 993.24, "end": 993.4, "word": " it", "probability": 0.90625}, {"start": 993.4, "end": 993.72, "word": " guys", "probability": 0.429443359375}, {"start": 993.72, "end": 993.84, "word": " I", "probability": 0.457275390625}, {"start": 993.84, "end": 993.98, "word": " want", "probability": 0.662109375}, {"start": 993.98, "end": 994.04, "word": " to", "probability": 0.94140625}, {"start": 994.04, "end": 994.2, "word": " make", "probability": 0.8876953125}, {"start": 994.2, "end": 994.4, "word": " it", "probability": 0.90869140625}, {"start": 994.4, "end": 995.02, "word": " generics", "probability": 0.756103515625}, {"start": 995.02, "end": 996.56, "word": " why?", "probability": 0.7158203125}, {"start": 996.6, "end": 996.84, "word": " because", "probability": 0.59375}, {"start": 996.84, "end": 996.96, "word": " of", "probability": 0.32958984375}, {"start": 996.96, "end": 997.04, "word": " the", "probability": 0.7451171875}, {"start": 997.04, "end": 997.36, "word": " data", "probability": 0.9423828125}, {"start": 997.36, "end": 997.78, "word": " I", "probability": 0.71044921875}, {"start": 997.78, "end": 998.14, "word": " control", "probability": 0.55712890625}, {"start": 998.14, "end": 998.32, "word": " in", "probability": 0.397705078125}, {"start": 998.32, "end": 998.52, "word": " which", "probability": 0.292724609375}, {"start": 998.52, "end": 998.52, "word": " type", "probability": 0.5361328125}, {"start": 998.52, "end": 998.66, "word": " it", "probability": 0.7412109375}, {"start": 998.66, "end": 998.98, "word": " is", "probability": 0.78759765625}, {"start": 998.98, "end": 1000.24, "word": " now", "probability": 0.3193359375}, {"start": 1000.24, "end": 1000.48, "word": " the", "probability": 0.54443359375}, {"start": 1000.48, "end": 1000.68, "word": " bus", "probability": 0.9501953125}, {"start": 1000.68, "end": 1001.02, "word": " message", "probability": 0.9150390625}, {"start": 1001.02, "end": 1001.14, "word": " I", "probability": 0.8095703125}, {"start": 1001.14, "end": 1001.24, "word": " want", "probability": 0.80517578125}, {"start": 1001.24, "end": 1001.26, "word": " to", "probability": 0.9619140625}, {"start": 1001.26, "end": 1001.42, "word": " put", "probability": 0.83349609375}, {"start": 1001.42, "end": 1001.8, "word": " two", "probability": 0.7353515625}, {"start": 1001.8, "end": 1002.38, "word": " attributes", "probability": 0.87646484375}, {"start": 1002.38, "end": 1002.4, "word": " in", "probability": 0.370361328125}, {"start": 1002.4, "end": 1002.4, "word": " it", "probability": 0.94580078125}, {"start": 1002.4, "end": 1002.7, "word": " T", "probability": 0.4833984375}, {"start": 1002.7, "end": 1003.1, "word": " data", "probability": 0.57373046875}], "temperature": 1.0}, {"id": 41, "seek": 102382, "start": 1005.34, "end": 1023.82, "text": "And I want to make in it the sender who wants to send the data Of course, the sender wants to make a kind of subscriber called sender Of course, you know what is a subscriber, right? Of course, this type does not exist yet", "tokens": [5289, 286, 528, 281, 652, 294, 309, 264, 2845, 260, 567, 2738, 281, 2845, 264, 1412, 2720, 1164, 11, 264, 2845, 260, 2738, 281, 652, 257, 733, 295, 26122, 1219, 2845, 260, 2720, 1164, 11, 291, 458, 437, 307, 257, 2090, 1142, 607, 11, 558, 30, 2720, 1164, 11, 341, 2010, 775, 406, 2514, 1939], "avg_logprob": -0.5803571162479264, "compression_ratio": 1.6323529411764706, "no_speech_prob": 5.3942203521728516e-05, "words": [{"start": 1005.3399999999999, "end": 1005.78, "word": "And", "probability": 0.1793212890625}, {"start": 1005.78, "end": 1006.14, "word": " I", "probability": 0.59326171875}, {"start": 1006.14, "end": 1006.22, "word": " want", "probability": 0.292724609375}, {"start": 1006.22, "end": 1006.28, "word": " to", "probability": 0.9404296875}, {"start": 1006.28, "end": 1006.44, "word": " make", "probability": 0.3720703125}, {"start": 1006.44, "end": 1006.6, "word": " in", "probability": 0.2176513671875}, {"start": 1006.6, "end": 1006.92, "word": " it", "probability": 0.7919921875}, {"start": 1006.92, "end": 1007.58, "word": " the", "probability": 0.268798828125}, {"start": 1007.58, "end": 1009.2, "word": " sender", "probability": 0.86328125}, {"start": 1009.2, "end": 1009.7, "word": " who", "probability": 0.319091796875}, {"start": 1009.7, "end": 1009.92, "word": " wants", "probability": 0.314697265625}, {"start": 1009.92, "end": 1009.94, "word": " to", "probability": 0.9560546875}, {"start": 1009.94, "end": 1010.16, "word": " send", "probability": 0.8310546875}, {"start": 1010.16, "end": 1010.32, "word": " the", "probability": 0.62255859375}, {"start": 1010.32, "end": 1010.6, "word": " data", "probability": 0.9072265625}, {"start": 1010.6, "end": 1012.1, "word": " Of", "probability": 0.3310546875}, {"start": 1012.1, "end": 1012.62, "word": " course,", "probability": 0.9091796875}, {"start": 1012.66, "end": 1012.78, "word": " the", "probability": 0.53125}, {"start": 1012.78, "end": 1013.14, "word": " sender", "probability": 0.931884765625}, {"start": 1013.14, "end": 1013.46, "word": " wants", "probability": 0.1207275390625}, {"start": 1013.46, "end": 1013.52, "word": " to", "probability": 0.927734375}, {"start": 1013.52, "end": 1013.74, "word": " make", "probability": 0.69384765625}, {"start": 1013.74, "end": 1013.96, "word": " a", "probability": 0.435302734375}, {"start": 1013.96, "end": 1014.2, "word": " kind", "probability": 0.1431884765625}, {"start": 1014.2, "end": 1015.34, "word": " of", "probability": 0.9326171875}, {"start": 1015.34, "end": 1015.96, "word": " subscriber", "probability": 0.87548828125}, {"start": 1015.96, "end": 1016.36, "word": " called", "probability": 0.39990234375}, {"start": 1016.36, "end": 1018.26, "word": " sender", "probability": 0.796875}, {"start": 1018.26, "end": 1019.16, "word": " Of", "probability": 0.3359375}, {"start": 1019.16, "end": 1019.26, "word": " course,", "probability": 0.95654296875}, {"start": 1019.64, "end": 1019.78, "word": " you", "probability": 0.7568359375}, {"start": 1019.78, "end": 1020.0, "word": " know", "probability": 0.8193359375}, {"start": 1020.0, "end": 1020.18, "word": " what", "probability": 0.90966796875}, {"start": 1020.18, "end": 1020.28, "word": " is", "probability": 0.257568359375}, {"start": 1020.28, "end": 1020.46, "word": " a", "probability": 0.59033203125}, {"start": 1020.46, "end": 1020.88, "word": " subscriber,", "probability": 0.640869140625}, {"start": 1020.98, "end": 1021.7, "word": " right?", "probability": 0.2196044921875}, {"start": 1022.64, "end": 1022.76, "word": " Of", "probability": 0.658203125}, {"start": 1022.76, "end": 1022.9, "word": " course,", "probability": 0.9560546875}, {"start": 1023.0, "end": 1023.08, "word": " this", "probability": 0.701171875}, {"start": 1023.08, "end": 1023.26, "word": " type", "probability": 0.322265625}, {"start": 1023.26, "end": 1023.26, "word": " does", "probability": 0.57080078125}, {"start": 1023.26, "end": 1023.48, "word": " not", "probability": 0.9365234375}, {"start": 1023.48, "end": 1023.74, "word": " exist", "probability": 0.8115234375}, {"start": 1023.74, "end": 1023.82, "word": " yet", "probability": 0.912109375}], "temperature": 1.0}, {"id": 42, "seek": 104552, "start": 1024.72, "end": 1045.52, "text": "Okay? The idea of this gate is that we want anyone, like the idea of ​​the observer, not all of us in the observer, the people who want to register at A, we want to work in the A interface, okay? But in the observer that we apply here, in each person we want to make an interface. Not us, now all the young people want to register at whom? At the database.", "tokens": [8297, 30, 440, 1558, 295, 341, 8539, 307, 300, 321, 528, 2878, 11, 411, 264, 1558, 295, 8701, 3322, 27878, 11, 406, 439, 295, 505, 294, 264, 27878, 11, 264, 561, 567, 528, 281, 7280, 412, 316, 11, 321, 528, 281, 589, 294, 264, 316, 9226, 11, 1392, 30, 583, 294, 264, 27878, 300, 321, 3079, 510, 11, 294, 1184, 954, 321, 528, 281, 652, 364, 9226, 13, 1726, 505, 11, 586, 439, 264, 2037, 561, 528, 281, 7280, 412, 7101, 30, 1711, 264, 8149, 13], "avg_logprob": -0.46336206896551724, "compression_ratio": 1.7647058823529411, "no_speech_prob": 2.384185791015625e-06, "words": [{"start": 1024.72, "end": 1025.16, "word": "Okay?", "probability": 0.1190185546875}, {"start": 1025.62, "end": 1025.8, "word": " The", "probability": 0.5751953125}, {"start": 1025.8, "end": 1026.06, "word": " idea", "probability": 0.83935546875}, {"start": 1026.06, "end": 1026.1, "word": " of", "probability": 0.42236328125}, {"start": 1026.1, "end": 1026.22, "word": " this", "probability": 0.861328125}, {"start": 1026.22, "end": 1026.52, "word": " gate", "probability": 0.1820068359375}, {"start": 1026.52, "end": 1027.04, "word": " is", "probability": 0.7685546875}, {"start": 1027.04, "end": 1027.26, "word": " that", "probability": 0.55029296875}, {"start": 1027.26, "end": 1027.5, "word": " we", "probability": 0.45263671875}, {"start": 1027.5, "end": 1027.76, "word": " want", "probability": 0.650390625}, {"start": 1027.76, "end": 1028.84, "word": " anyone,", "probability": 0.383056640625}, {"start": 1029.16, "end": 1029.4, "word": " like", "probability": 0.62158203125}, {"start": 1029.4, "end": 1029.52, "word": " the", "probability": 0.7392578125}, {"start": 1029.52, "end": 1029.68, "word": " idea", "probability": 0.62060546875}, {"start": 1029.68, "end": 1029.82, "word": " of", "probability": 0.94677734375}, {"start": 1029.82, "end": 1029.9, "word": " ​​the", "probability": 0.368896484375}, {"start": 1029.9, "end": 1030.32, "word": " observer,", "probability": 0.64453125}, {"start": 1031.04, "end": 1031.16, "word": " not", "probability": 0.60205078125}, {"start": 1031.16, "end": 1031.66, "word": " all", "probability": 0.6923828125}, {"start": 1031.66, "end": 1031.66, "word": " of", "probability": 0.64990234375}, {"start": 1031.66, "end": 1031.72, "word": " us", "probability": 0.92041015625}, {"start": 1031.72, "end": 1031.82, "word": " in", "probability": 0.52099609375}, {"start": 1031.82, "end": 1031.92, "word": " the", "probability": 0.869140625}, {"start": 1031.92, "end": 1032.36, "word": " observer,", "probability": 0.8515625}, {"start": 1032.6, "end": 1032.68, "word": " the", "probability": 0.362548828125}, {"start": 1032.68, "end": 1032.92, "word": " people", "probability": 0.9345703125}, {"start": 1032.92, "end": 1033.0, "word": " who", "probability": 0.82568359375}, {"start": 1033.0, "end": 1033.12, "word": " want", "probability": 0.71875}, {"start": 1033.12, "end": 1033.24, "word": " to", "probability": 0.96630859375}, {"start": 1033.24, "end": 1033.46, "word": " register", "probability": 0.81298828125}, {"start": 1033.46, "end": 1033.68, "word": " at", "probability": 0.5185546875}, {"start": 1033.68, "end": 1033.92, "word": " A,", "probability": 0.58203125}, {"start": 1034.74, "end": 1034.96, "word": " we", "probability": 0.50927734375}, {"start": 1034.96, "end": 1035.02, "word": " want", "probability": 0.611328125}, {"start": 1035.02, "end": 1035.08, "word": " to", "probability": 0.96484375}, {"start": 1035.08, "end": 1035.22, "word": " work", "probability": 0.36279296875}, {"start": 1035.22, "end": 1035.34, "word": " in", "probability": 0.57080078125}, {"start": 1035.34, "end": 1035.46, "word": " the", "probability": 0.625}, {"start": 1035.46, "end": 1035.62, "word": " A", "probability": 0.88232421875}, {"start": 1035.62, "end": 1036.24, "word": " interface,", "probability": 0.88720703125}, {"start": 1036.76, "end": 1036.98, "word": " okay?", "probability": 0.63720703125}, {"start": 1037.56, "end": 1037.82, "word": " But", "probability": 0.8515625}, {"start": 1037.82, "end": 1038.06, "word": " in", "probability": 0.87060546875}, {"start": 1038.06, "end": 1038.18, "word": " the", "probability": 0.8984375}, {"start": 1038.18, "end": 1038.6, "word": " observer", "probability": 0.8203125}, {"start": 1038.6, "end": 1038.8, "word": " that", "probability": 0.444091796875}, {"start": 1038.8, "end": 1038.92, "word": " we", "probability": 0.88623046875}, {"start": 1038.92, "end": 1039.24, "word": " apply", "probability": 0.64306640625}, {"start": 1039.24, "end": 1039.56, "word": " here,", "probability": 0.83544921875}, {"start": 1039.68, "end": 1039.74, "word": " in", "probability": 0.4462890625}, {"start": 1039.74, "end": 1039.94, "word": " each", "probability": 0.82177734375}, {"start": 1039.94, "end": 1040.16, "word": " person", "probability": 0.52490234375}, {"start": 1040.16, "end": 1040.26, "word": " we", "probability": 0.6767578125}, {"start": 1040.26, "end": 1040.32, "word": " want", "probability": 0.72314453125}, {"start": 1040.32, "end": 1040.44, "word": " to", "probability": 0.97021484375}, {"start": 1040.44, "end": 1040.66, "word": " make", "probability": 0.431640625}, {"start": 1040.66, "end": 1041.22, "word": " an", "probability": 0.6328125}, {"start": 1041.22, "end": 1041.62, "word": " interface.", "probability": 0.90673828125}, {"start": 1041.76, "end": 1041.82, "word": " Not", "probability": 0.53466796875}, {"start": 1041.82, "end": 1041.98, "word": " us,", "probability": 0.5224609375}, {"start": 1042.22, "end": 1042.42, "word": " now", "probability": 0.77587890625}, {"start": 1042.42, "end": 1042.66, "word": " all", "probability": 0.82861328125}, {"start": 1042.66, "end": 1042.84, "word": " the", "probability": 0.6142578125}, {"start": 1042.84, "end": 1043.08, "word": " young", "probability": 0.3955078125}, {"start": 1043.08, "end": 1043.3, "word": " people", "probability": 0.857421875}, {"start": 1043.3, "end": 1043.46, "word": " want", "probability": 0.84130859375}, {"start": 1043.46, "end": 1043.58, "word": " to", "probability": 0.97021484375}, {"start": 1043.58, "end": 1043.82, "word": " register", "probability": 0.8701171875}, {"start": 1043.82, "end": 1043.98, "word": " at", "probability": 0.147216796875}, {"start": 1043.98, "end": 1044.14, "word": " whom?", "probability": 0.68310546875}, {"start": 1044.96, "end": 1045.16, "word": " At", "probability": 0.8798828125}, {"start": 1045.16, "end": 1045.28, "word": " the", "probability": 0.88232421875}, {"start": 1045.28, "end": 1045.52, "word": " database.", "probability": 0.293212890625}], "temperature": 1.0}, {"id": 43, "seek": 106333, "start": 1046.52, "end": 1063.34, "text": "Instead of each one registering with the other one, why did we create a database? It's the middle ground between them all. So we want to create a database interface of a kind, a subscriber, on the basis that anyone who wants to send and receive others, we tell him to register with the database. This is the subscription service.", "tokens": [28411, 2056, 295, 1184, 472, 47329, 365, 264, 661, 472, 11, 983, 630, 321, 1884, 257, 8149, 30, 467, 311, 264, 2808, 2727, 1296, 552, 439, 13, 407, 321, 528, 281, 1884, 257, 8149, 9226, 295, 257, 733, 11, 257, 26122, 11, 322, 264, 5143, 300, 2878, 567, 2738, 281, 2845, 293, 4774, 2357, 11, 321, 980, 796, 281, 7280, 365, 264, 8149, 13, 639, 307, 264, 17231, 2643, 13], "avg_logprob": -0.5959507109413684, "compression_ratio": 1.6287128712871286, "no_speech_prob": 3.534555435180664e-05, "words": [{"start": 1046.52, "end": 1046.84, "word": "Instead", "probability": 0.6658935546875}, {"start": 1046.84, "end": 1046.96, "word": " of", "probability": 0.95166015625}, {"start": 1046.96, "end": 1047.16, "word": " each", "probability": 0.255859375}, {"start": 1047.16, "end": 1047.36, "word": " one", "probability": 0.453857421875}, {"start": 1047.36, "end": 1047.68, "word": " registering", "probability": 0.2490234375}, {"start": 1047.68, "end": 1047.88, "word": " with", "probability": 0.3134765625}, {"start": 1047.88, "end": 1048.06, "word": " the", "probability": 0.51953125}, {"start": 1048.06, "end": 1048.26, "word": " other", "probability": 0.66259765625}, {"start": 1048.26, "end": 1048.82, "word": " one,", "probability": 0.378173828125}, {"start": 1048.88, "end": 1049.2, "word": " why", "probability": 0.59912109375}, {"start": 1049.2, "end": 1049.24, "word": " did", "probability": 0.609375}, {"start": 1049.24, "end": 1049.24, "word": " we", "probability": 0.9052734375}, {"start": 1049.24, "end": 1049.42, "word": " create", "probability": 0.41162109375}, {"start": 1049.42, "end": 1049.58, "word": " a", "probability": 0.44873046875}, {"start": 1049.58, "end": 1049.82, "word": " database?", "probability": 0.43212890625}, {"start": 1050.5, "end": 1050.9, "word": " It's", "probability": 0.5142822265625}, {"start": 1050.9, "end": 1051.04, "word": " the", "probability": 0.80126953125}, {"start": 1051.04, "end": 1051.24, "word": " middle", "probability": 0.432861328125}, {"start": 1051.24, "end": 1051.32, "word": " ground", "probability": 0.442626953125}, {"start": 1051.32, "end": 1051.44, "word": " between", "probability": 0.7041015625}, {"start": 1051.44, "end": 1051.58, "word": " them", "probability": 0.51904296875}, {"start": 1051.58, "end": 1051.86, "word": " all.", "probability": 0.8671875}, {"start": 1052.38, "end": 1052.5, "word": " So", "probability": 0.5283203125}, {"start": 1052.5, "end": 1052.56, "word": " we", "probability": 0.64990234375}, {"start": 1052.56, "end": 1052.72, "word": " want", "probability": 0.45947265625}, {"start": 1052.72, "end": 1052.8, "word": " to", "probability": 0.96337890625}, {"start": 1052.8, "end": 1053.08, "word": " create", "probability": 0.521484375}, {"start": 1053.08, "end": 1053.44, "word": " a", "probability": 0.40478515625}, {"start": 1053.44, "end": 1053.6, "word": " database", "probability": 0.46044921875}, {"start": 1053.6, "end": 1054.68, "word": " interface", "probability": 0.541015625}, {"start": 1054.68, "end": 1054.82, "word": " of", "probability": 0.1978759765625}, {"start": 1054.82, "end": 1054.94, "word": " a", "probability": 0.4609375}, {"start": 1054.94, "end": 1055.2, "word": " kind,", "probability": 0.378173828125}, {"start": 1055.48, "end": 1055.84, "word": " a", "probability": 0.50048828125}, {"start": 1055.84, "end": 1056.34, "word": " subscriber,", "probability": 0.8232421875}, {"start": 1056.5, "end": 1056.6, "word": " on", "probability": 0.32275390625}, {"start": 1056.6, "end": 1056.7, "word": " the", "probability": 0.84375}, {"start": 1056.7, "end": 1056.88, "word": " basis", "probability": 0.88916015625}, {"start": 1056.88, "end": 1056.98, "word": " that", "probability": 0.677734375}, {"start": 1056.98, "end": 1057.24, "word": " anyone", "probability": 0.66943359375}, {"start": 1057.24, "end": 1057.62, "word": " who", "probability": 0.5146484375}, {"start": 1057.62, "end": 1057.84, "word": " wants", "probability": 0.58740234375}, {"start": 1057.84, "end": 1057.98, "word": " to", "probability": 0.94970703125}, {"start": 1057.98, "end": 1058.18, "word": " send", "probability": 0.5205078125}, {"start": 1058.18, "end": 1058.38, "word": " and", "probability": 0.483154296875}, {"start": 1058.38, "end": 1058.6, "word": " receive", "probability": 0.8720703125}, {"start": 1058.6, "end": 1059.36, "word": " others,", "probability": 0.163330078125}, {"start": 1060.1, "end": 1060.24, "word": " we", "probability": 0.6669921875}, {"start": 1060.24, "end": 1060.5, "word": " tell", "probability": 0.356689453125}, {"start": 1060.5, "end": 1060.6, "word": " him", "probability": 0.75927734375}, {"start": 1060.6, "end": 1060.8, "word": " to", "probability": 0.67138671875}, {"start": 1060.8, "end": 1061.1, "word": " register", "probability": 0.728515625}, {"start": 1061.1, "end": 1061.34, "word": " with", "probability": 0.61376953125}, {"start": 1061.34, "end": 1061.48, "word": " the", "probability": 0.7939453125}, {"start": 1061.48, "end": 1061.84, "word": " database.", "probability": 0.75634765625}, {"start": 1062.36, "end": 1062.58, "word": " This", "probability": 0.7958984375}, {"start": 1062.58, "end": 1062.9, "word": " is", "probability": 0.9033203125}, {"start": 1062.9, "end": 1063.02, "word": " the", "probability": 0.57666015625}, {"start": 1063.02, "end": 1063.24, "word": " subscription", "probability": 0.383056640625}, {"start": 1063.24, "end": 1063.34, "word": " service.", "probability": 0.8857421875}], "temperature": 1.0}, {"id": 44, "seek": 108754, "start": 1064.2, "end": 1087.54, "text": " which will be delivered to the youth through SMS service to subscribe to them they want to subscribe as what? as a subscriber so we came inside the database itself we want to create a public interface subscriber and we want to create a method public void message received for example", "tokens": [597, 486, 312, 10144, 281, 264, 7503, 807, 38107, 2643, 281, 3022, 281, 552, 436, 528, 281, 3022, 382, 437, 30, 382, 257, 26122, 370, 321, 1361, 1854, 264, 8149, 309, 405, 75, 69, 321, 528, 281, 1884, 257, 1908, 9226, 26122, 293, 321, 528, 281, 1884, 257, 3170, 1908, 22009, 3636, 4613, 337, 1365], "avg_logprob": -0.5680803422416959, "compression_ratio": 1.7005988023952097, "no_speech_prob": 9.000301361083984e-06, "words": [{"start": 1064.2, "end": 1064.56, "word": " which", "probability": 0.1446533203125}, {"start": 1064.56, "end": 1064.68, "word": " will", "probability": 0.70849609375}, {"start": 1064.68, "end": 1064.76, "word": " be", "probability": 0.75634765625}, {"start": 1064.76, "end": 1064.94, "word": " delivered", "probability": 0.3359375}, {"start": 1064.94, "end": 1065.12, "word": " to", "probability": 0.92724609375}, {"start": 1065.12, "end": 1065.18, "word": " the", "probability": 0.346923828125}, {"start": 1065.18, "end": 1065.42, "word": " youth", "probability": 0.277587890625}, {"start": 1065.42, "end": 1066.0, "word": " through", "probability": 0.1234130859375}, {"start": 1066.0, "end": 1066.62, "word": " SMS", "probability": 0.82080078125}, {"start": 1066.62, "end": 1066.72, "word": " service", "probability": 0.381591796875}, {"start": 1066.72, "end": 1066.86, "word": " to", "probability": 0.257080078125}, {"start": 1066.86, "end": 1067.16, "word": " subscribe", "probability": 0.1688232421875}, {"start": 1067.16, "end": 1067.32, "word": " to", "probability": 0.54296875}, {"start": 1067.32, "end": 1067.66, "word": " them", "probability": 0.3994140625}, {"start": 1067.66, "end": 1068.88, "word": " they", "probability": 0.2213134765625}, {"start": 1068.88, "end": 1069.08, "word": " want", "probability": 0.6865234375}, {"start": 1069.08, "end": 1069.14, "word": " to", "probability": 0.95849609375}, {"start": 1069.14, "end": 1069.4, "word": " subscribe", "probability": 0.806640625}, {"start": 1069.4, "end": 1069.52, "word": " as", "probability": 0.693359375}, {"start": 1069.52, "end": 1069.78, "word": " what?", "probability": 0.402587890625}, {"start": 1069.88, "end": 1070.1, "word": " as", "probability": 0.794921875}, {"start": 1070.1, "end": 1070.18, "word": " a", "probability": 0.479248046875}, {"start": 1070.18, "end": 1070.56, "word": " subscriber", "probability": 0.86962890625}, {"start": 1070.56, "end": 1070.88, "word": " so", "probability": 0.326171875}, {"start": 1070.88, "end": 1071.38, "word": " we", "probability": 0.7197265625}, {"start": 1071.38, "end": 1071.4, "word": " came", "probability": 0.2255859375}, {"start": 1071.4, "end": 1071.7, "word": " inside", "probability": 0.53369140625}, {"start": 1071.7, "end": 1072.66, "word": " the", "probability": 0.853515625}, {"start": 1072.66, "end": 1073.1, "word": " database", "probability": 0.630859375}, {"start": 1073.1, "end": 1073.6, "word": " itself", "probability": 0.705413818359375}, {"start": 1073.6, "end": 1074.6, "word": " we", "probability": 0.48876953125}, {"start": 1074.6, "end": 1074.74, "word": " want", "probability": 0.407470703125}, {"start": 1074.74, "end": 1074.82, "word": " to", "probability": 0.953125}, {"start": 1074.82, "end": 1075.0, "word": " create", "probability": 0.428466796875}, {"start": 1075.0, "end": 1075.16, "word": " a", "probability": 0.73046875}, {"start": 1075.16, "end": 1075.58, "word": " public", "probability": 0.880859375}, {"start": 1075.58, "end": 1076.92, "word": " interface", "probability": 0.89892578125}, {"start": 1076.92, "end": 1078.86, "word": " subscriber", "probability": 0.76123046875}, {"start": 1078.86, "end": 1083.4, "word": " and", "probability": 0.51318359375}, {"start": 1083.4, "end": 1083.54, "word": " we", "probability": 0.875}, {"start": 1083.54, "end": 1083.64, "word": " want", "probability": 0.7529296875}, {"start": 1083.64, "end": 1083.72, "word": " to", "probability": 0.96875}, {"start": 1083.72, "end": 1083.9, "word": " create", "probability": 0.63427734375}, {"start": 1083.9, "end": 1084.18, "word": " a", "probability": 0.62841796875}, {"start": 1084.18, "end": 1084.58, "word": " method", "probability": 0.935546875}, {"start": 1084.58, "end": 1085.42, "word": " public", "probability": 0.59423828125}, {"start": 1085.42, "end": 1085.98, "word": " void", "probability": 0.85498046875}, {"start": 1085.98, "end": 1086.62, "word": " message", "probability": 0.939453125}, {"start": 1086.62, "end": 1087.12, "word": " received", "probability": 0.56689453125}, {"start": 1087.12, "end": 1087.36, "word": " for", "probability": 0.86474609375}, {"start": 1087.36, "end": 1087.54, "word": " example", "probability": 0.9375}], "temperature": 1.0}, {"id": 45, "seek": 111474, "start": 1088.5, "end": 1114.74, "text": " On the basis of this, anyone who wants to implement for the subscriber, he wants to state in this data what he wants to do when he generates the data, okay? Because this message received will be called a bus message, okay? So this is a message received, here the message has arrived, it will arrive as what? As a bus message and the data is inside this bus message", "tokens": [1282, 264, 5143, 295, 341, 11, 2878, 567, 2738, 281, 4445, 337, 264, 26122, 11, 415, 2738, 281, 1785, 294, 341, 1412, 437, 415, 2738, 281, 360, 562, 415, 23815, 264, 1412, 11, 1392, 30, 1436, 341, 3636, 4613, 486, 312, 1219, 257, 1255, 3636, 11, 1392, 30, 407, 341, 307, 257, 3636, 4613, 11, 510, 264, 3636, 575, 6678, 11, 309, 486, 8881, 382, 437, 30, 1018, 257, 1255, 3636, 293, 264, 1412, 307, 1854, 341, 1255, 3636], "avg_logprob": -0.5460937716066837, "compression_ratio": 1.8622448979591837, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 1088.5, "end": 1088.76, "word": " On", "probability": 0.0921630859375}, {"start": 1088.76, "end": 1088.9, "word": " the", "probability": 0.650390625}, {"start": 1088.9, "end": 1089.2, "word": " basis", "probability": 0.8681640625}, {"start": 1089.2, "end": 1089.38, "word": " of", "probability": 0.767578125}, {"start": 1089.38, "end": 1089.62, "word": " this,", "probability": 0.6826171875}, {"start": 1090.6, "end": 1091.14, "word": " anyone", "probability": 0.6162109375}, {"start": 1091.14, "end": 1091.3, "word": " who", "probability": 0.68896484375}, {"start": 1091.3, "end": 1091.42, "word": " wants", "probability": 0.6904296875}, {"start": 1091.42, "end": 1091.42, "word": " to", "probability": 0.97021484375}, {"start": 1091.42, "end": 1092.0, "word": " implement", "probability": 0.5947265625}, {"start": 1092.0, "end": 1092.22, "word": " for", "probability": 0.462890625}, {"start": 1092.22, "end": 1092.26, "word": " the", "probability": 0.319091796875}, {"start": 1092.26, "end": 1092.82, "word": " subscriber,", "probability": 0.88720703125}, {"start": 1093.1, "end": 1093.48, "word": " he", "probability": 0.1959228515625}, {"start": 1093.48, "end": 1093.58, "word": " wants", "probability": 0.25732421875}, {"start": 1093.58, "end": 1093.64, "word": " to", "probability": 0.9658203125}, {"start": 1093.64, "end": 1093.92, "word": " state", "probability": 0.32763671875}, {"start": 1093.92, "end": 1094.06, "word": " in", "probability": 0.63232421875}, {"start": 1094.06, "end": 1094.12, "word": " this", "probability": 0.79638671875}, {"start": 1094.12, "end": 1094.26, "word": " data", "probability": 0.386962890625}, {"start": 1094.26, "end": 1094.66, "word": " what", "probability": 0.62890625}, {"start": 1094.66, "end": 1094.76, "word": " he", "probability": 0.57470703125}, {"start": 1094.76, "end": 1094.88, "word": " wants", "probability": 0.62255859375}, {"start": 1094.88, "end": 1094.9, "word": " to", "probability": 0.9501953125}, {"start": 1094.9, "end": 1095.08, "word": " do", "probability": 0.953125}, {"start": 1095.08, "end": 1095.26, "word": " when", "probability": 0.83837890625}, {"start": 1095.26, "end": 1095.38, "word": " he", "probability": 0.462158203125}, {"start": 1095.38, "end": 1095.66, "word": " generates", "probability": 0.40625}, {"start": 1095.66, "end": 1096.8, "word": " the", "probability": 0.6845703125}, {"start": 1096.8, "end": 1097.1, "word": " data,", "probability": 0.85009765625}, {"start": 1097.34, "end": 1097.9, "word": " okay?", "probability": 0.36962890625}, {"start": 1098.4, "end": 1098.68, "word": " Because", "probability": 0.71435546875}, {"start": 1098.68, "end": 1098.8, "word": " this", "probability": 0.74951171875}, {"start": 1098.8, "end": 1099.04, "word": " message", "probability": 0.7099609375}, {"start": 1099.04, "end": 1099.54, "word": " received", "probability": 0.779296875}, {"start": 1099.54, "end": 1099.98, "word": " will", "probability": 0.7421875}, {"start": 1099.98, "end": 1100.08, "word": " be", "probability": 0.37109375}, {"start": 1100.08, "end": 1100.34, "word": " called", "probability": 0.32763671875}, {"start": 1100.34, "end": 1100.9, "word": " a", "probability": 0.4150390625}, {"start": 1100.9, "end": 1101.18, "word": " bus", "probability": 0.366943359375}, {"start": 1101.18, "end": 1103.44, "word": " message,", "probability": 0.880859375}, {"start": 1103.52, "end": 1106.44, "word": " okay?", "probability": 0.76806640625}, {"start": 1107.46, "end": 1107.82, "word": " So", "probability": 0.37548828125}, {"start": 1107.82, "end": 1108.04, "word": " this", "probability": 0.68408203125}, {"start": 1108.04, "end": 1108.08, "word": " is", "probability": 0.45361328125}, {"start": 1108.08, "end": 1108.16, "word": " a", "probability": 0.52001953125}, {"start": 1108.16, "end": 1108.3, "word": " message", "probability": 0.85546875}, {"start": 1108.3, "end": 1108.7, "word": " received,", "probability": 0.79833984375}, {"start": 1108.8, "end": 1108.98, "word": " here", "probability": 0.63671875}, {"start": 1108.98, "end": 1109.88, "word": " the", "probability": 0.285888671875}, {"start": 1109.88, "end": 1110.3, "word": " message", "probability": 0.83544921875}, {"start": 1110.3, "end": 1110.3, "word": " has", "probability": 0.216064453125}, {"start": 1110.3, "end": 1110.3, "word": " arrived,", "probability": 0.3125}, {"start": 1110.4, "end": 1110.52, "word": " it", "probability": 0.368896484375}, {"start": 1110.52, "end": 1110.56, "word": " will", "probability": 0.79736328125}, {"start": 1110.56, "end": 1110.8, "word": " arrive", "probability": 0.416259765625}, {"start": 1110.8, "end": 1110.96, "word": " as", "probability": 0.85400390625}, {"start": 1110.96, "end": 1111.26, "word": " what?", "probability": 0.873046875}, {"start": 1111.7, "end": 1111.98, "word": " As", "probability": 0.85107421875}, {"start": 1111.98, "end": 1112.02, "word": " a", "probability": 0.94677734375}, {"start": 1112.02, "end": 1112.14, "word": " bus", "probability": 0.92626953125}, {"start": 1112.14, "end": 1112.4, "word": " message", "probability": 0.8935546875}, {"start": 1112.4, "end": 1112.52, "word": " and", "probability": 0.480224609375}, {"start": 1112.52, "end": 1112.66, "word": " the", "probability": 0.84521484375}, {"start": 1112.66, "end": 1112.88, "word": " data", "probability": 0.93310546875}, {"start": 1112.88, "end": 1113.0, "word": " is", "probability": 0.7978515625}, {"start": 1113.0, "end": 1113.48, "word": " inside", "probability": 0.27978515625}, {"start": 1113.48, "end": 1114.24, "word": " this", "probability": 0.8369140625}, {"start": 1114.24, "end": 1114.4, "word": " bus", "probability": 0.9404296875}, {"start": 1114.4, "end": 1114.74, "word": " message", "probability": 0.89892578125}], "temperature": 1.0}, {"id": 46, "seek": 114143, "start": 1117.11, "end": 1141.43, "text": "Okay, let's continue. This getter came to the bus message. I just need to make a setter and getter for the bus message. Okay, let's continue.", "tokens": [8297, 11, 718, 311, 2354, 13, 639, 483, 391, 1361, 281, 264, 1255, 3636, 13, 286, 445, 643, 281, 652, 257, 992, 391, 293, 483, 391, 337, 264, 1255, 3636, 13, 1033, 11, 718, 311, 2354, 13], "avg_logprob": -0.6858552678635246, "compression_ratio": 1.46875, "no_speech_prob": 0.0, "words": [{"start": 1117.11, "end": 1117.35, "word": "Okay,", "probability": 0.061187744140625}, {"start": 1117.39, "end": 1117.51, "word": " let's", "probability": 0.767333984375}, {"start": 1117.51, "end": 1117.77, "word": " continue.", "probability": 0.69775390625}, {"start": 1118.13, "end": 1118.33, "word": " This", "probability": 0.271728515625}, {"start": 1118.33, "end": 1118.59, "word": " getter", "probability": 0.45013427734375}, {"start": 1118.59, "end": 1118.75, "word": " came", "probability": 0.123046875}, {"start": 1118.75, "end": 1118.89, "word": " to", "probability": 0.68994140625}, {"start": 1118.89, "end": 1118.97, "word": " the", "probability": 0.76416015625}, {"start": 1118.97, "end": 1119.11, "word": " bus", "probability": 0.406494140625}, {"start": 1119.11, "end": 1119.37, "word": " message.", "probability": 0.861328125}, {"start": 1119.39, "end": 1119.53, "word": " I", "probability": 0.27197265625}, {"start": 1119.53, "end": 1119.55, "word": " just", "probability": 0.59619140625}, {"start": 1119.55, "end": 1119.71, "word": " need", "probability": 0.50634765625}, {"start": 1119.71, "end": 1119.81, "word": " to", "probability": 0.9580078125}, {"start": 1119.81, "end": 1119.93, "word": " make", "probability": 0.303955078125}, {"start": 1119.93, "end": 1120.19, "word": " a", "probability": 0.47216796875}, {"start": 1120.19, "end": 1125.03, "word": " setter", "probability": 0.4253082275390625}, {"start": 1125.03, "end": 1125.25, "word": " and", "probability": 0.60302734375}, {"start": 1125.25, "end": 1126.31, "word": " getter", "probability": 0.931884765625}, {"start": 1126.31, "end": 1127.07, "word": " for", "probability": 0.4326171875}, {"start": 1127.07, "end": 1127.15, "word": " the", "probability": 0.83984375}, {"start": 1127.15, "end": 1127.33, "word": " bus", "probability": 0.92626953125}, {"start": 1127.33, "end": 1127.77, "word": " message.", "probability": 0.890625}, {"start": 1140.45, "end": 1140.87, "word": " Okay,", "probability": 0.515625}, {"start": 1140.99, "end": 1141.21, "word": " let's", "probability": 0.938232421875}, {"start": 1141.21, "end": 1141.43, "word": " continue.", "probability": 0.826171875}], "temperature": 1.0}, {"id": 47, "seek": 117029, "start": 1144.41, "end": 1170.29, "text": " Ok, we made the subscriber, as we did in the observer, we want to make a list of subscribers, so that everything that registers is stored in the databus, not everything must connect with the databus, ok? We must make a list of what? List of what type? Subscribers, ok? So, we came up here in the databus, private, list of what type?", "tokens": [3477, 11, 321, 1027, 264, 26122, 11, 382, 321, 630, 294, 264, 27878, 11, 321, 528, 281, 652, 257, 1329, 295, 11092, 11, 370, 300, 1203, 300, 38351, 307, 12187, 294, 264, 7104, 301, 11, 406, 1203, 1633, 1745, 365, 264, 7104, 301, 11, 3133, 30, 492, 1633, 652, 257, 1329, 295, 437, 30, 17668, 295, 437, 2010, 30, 37471, 1142, 1616, 11, 3133, 30, 407, 11, 321, 1361, 493, 510, 294, 264, 7104, 301, 11, 4551, 11, 1329, 295, 437, 2010, 30], "avg_logprob": -0.5260416567325592, "compression_ratio": 1.8920454545454546, "no_speech_prob": 3.3974647521972656e-06, "words": [{"start": 1144.41, "end": 1144.73, "word": " Ok,", "probability": 0.206787109375}, {"start": 1144.75, "end": 1144.83, "word": " we", "probability": 0.53564453125}, {"start": 1144.83, "end": 1144.97, "word": " made", "probability": 0.34228515625}, {"start": 1144.97, "end": 1145.15, "word": " the", "probability": 0.4130859375}, {"start": 1145.15, "end": 1145.67, "word": " subscriber,", "probability": 0.68017578125}, {"start": 1146.27, "end": 1146.87, "word": " as", "probability": 0.1405029296875}, {"start": 1146.87, "end": 1147.39, "word": " we", "probability": 0.78759765625}, {"start": 1147.39, "end": 1147.59, "word": " did", "probability": 0.8017578125}, {"start": 1147.59, "end": 1147.79, "word": " in", "probability": 0.63916015625}, {"start": 1147.79, "end": 1147.87, "word": " the", "probability": 0.693359375}, {"start": 1147.87, "end": 1148.23, "word": " observer,", "probability": 0.73583984375}, {"start": 1148.41, "end": 1148.45, "word": " we", "probability": 0.86669921875}, {"start": 1148.45, "end": 1148.55, "word": " want", "probability": 0.2427978515625}, {"start": 1148.55, "end": 1148.65, "word": " to", "probability": 0.9599609375}, {"start": 1148.65, "end": 1148.79, "word": " make", "probability": 0.66259765625}, {"start": 1148.79, "end": 1148.93, "word": " a", "probability": 0.86572265625}, {"start": 1148.93, "end": 1149.27, "word": " list", "probability": 0.9130859375}, {"start": 1149.27, "end": 1150.01, "word": " of", "probability": 0.89599609375}, {"start": 1150.01, "end": 1150.71, "word": " subscribers,", "probability": 0.85400390625}, {"start": 1150.95, "end": 1151.23, "word": " so", "probability": 0.60888671875}, {"start": 1151.23, "end": 1151.43, "word": " that", "probability": 0.61669921875}, {"start": 1151.43, "end": 1151.57, "word": " everything", "probability": 0.299560546875}, {"start": 1151.57, "end": 1151.75, "word": " that", "probability": 0.41796875}, {"start": 1151.75, "end": 1152.11, "word": " registers", "probability": 0.43359375}, {"start": 1152.11, "end": 1152.81, "word": " is", "probability": 0.235107421875}, {"start": 1152.81, "end": 1153.15, "word": " stored", "probability": 0.7509765625}, {"start": 1153.15, "end": 1154.01, "word": " in", "probability": 0.69482421875}, {"start": 1154.01, "end": 1154.17, "word": " the", "probability": 0.82568359375}, {"start": 1154.17, "end": 1154.63, "word": " databus,", "probability": 0.6231689453125}, {"start": 1154.83, "end": 1155.13, "word": " not", "probability": 0.259033203125}, {"start": 1155.13, "end": 1155.47, "word": " everything", "probability": 0.56787109375}, {"start": 1155.47, "end": 1155.81, "word": " must", "probability": 0.385986328125}, {"start": 1155.81, "end": 1156.01, "word": " connect", "probability": 0.69189453125}, {"start": 1156.01, "end": 1156.19, "word": " with", "probability": 0.44677734375}, {"start": 1156.19, "end": 1156.35, "word": " the", "probability": 0.82470703125}, {"start": 1156.35, "end": 1156.79, "word": " databus,", "probability": 0.89013671875}, {"start": 1157.53, "end": 1157.65, "word": " ok?", "probability": 0.18896484375}, {"start": 1157.79, "end": 1157.87, "word": " We", "probability": 0.345703125}, {"start": 1157.87, "end": 1158.17, "word": " must", "probability": 0.4052734375}, {"start": 1158.17, "end": 1158.45, "word": " make", "probability": 0.83740234375}, {"start": 1158.45, "end": 1158.57, "word": " a", "probability": 0.9296875}, {"start": 1158.57, "end": 1158.79, "word": " list", "probability": 0.93505859375}, {"start": 1158.79, "end": 1159.11, "word": " of", "probability": 0.85107421875}, {"start": 1159.11, "end": 1159.49, "word": " what?", "probability": 0.62841796875}, {"start": 1159.99, "end": 1160.23, "word": " List", "probability": 0.2470703125}, {"start": 1160.23, "end": 1160.39, "word": " of", "probability": 0.9052734375}, {"start": 1160.39, "end": 1160.49, "word": " what", "probability": 0.79931640625}, {"start": 1160.49, "end": 1160.59, "word": " type?", "probability": 0.388427734375}, {"start": 1161.95, "end": 1162.47, "word": " Subscribers,", "probability": 0.8992513020833334}, {"start": 1162.77, "end": 1163.35, "word": " ok?", "probability": 0.77490234375}, {"start": 1164.25, "end": 1164.67, "word": " So,", "probability": 0.73583984375}, {"start": 1164.79, "end": 1165.03, "word": " we", "probability": 0.7392578125}, {"start": 1165.03, "end": 1165.03, "word": " came", "probability": 0.509765625}, {"start": 1165.03, "end": 1165.25, "word": " up", "probability": 0.458740234375}, {"start": 1165.25, "end": 1165.49, "word": " here", "probability": 0.7861328125}, {"start": 1165.49, "end": 1165.61, "word": " in", "probability": 0.787109375}, {"start": 1165.61, "end": 1165.73, "word": " the", "probability": 0.806640625}, {"start": 1165.73, "end": 1166.21, "word": " databus,", "probability": 0.86376953125}, {"start": 1166.31, "end": 1166.73, "word": " private,", "probability": 0.82421875}, {"start": 1168.37, "end": 1169.03, "word": " list", "probability": 0.8349609375}, {"start": 1169.03, "end": 1170.01, "word": " of", "probability": 0.75341796875}, {"start": 1170.01, "end": 1170.29, "word": " what", "probability": 0.384033203125}, {"start": 1170.29, "end": 1170.29, "word": " type?", "probability": 0.9384765625}], "temperature": 1.0}, {"id": 48, "seek": 120054, "start": 1176.76, "end": 1200.54, "text": "subscribers ok and in constructor when it is created we say subscribers is equal to new arraylist of course why we didn't put new above it is normal you can put it here but I prefer to do it in constructor because it is not created until the object is created ok", "tokens": [82, 5432, 1142, 1616, 3133, 293, 294, 47479, 562, 309, 307, 2942, 321, 584, 11092, 307, 2681, 281, 777, 10225, 8264, 295, 1164, 983, 321, 994, 380, 829, 777, 3673, 309, 307, 2710, 291, 393, 829, 309, 510, 457, 286, 4382, 281, 360, 309, 294, 47479, 570, 309, 307, 406, 2942, 1826, 264, 2657, 307, 2942, 3133], "avg_logprob": -0.5544180972822781, "compression_ratio": 1.6903225806451614, "no_speech_prob": 1.138448715209961e-05, "words": [{"start": 1176.7599999999998, "end": 1177.1599999999999, "word": "subscribers", "probability": 0.792236328125}, {"start": 1177.1599999999999, "end": 1177.56, "word": " ok", "probability": 0.0699462890625}, {"start": 1177.56, "end": 1181.96, "word": " and", "probability": 0.481201171875}, {"start": 1181.96, "end": 1182.06, "word": " in", "probability": 0.79150390625}, {"start": 1182.06, "end": 1182.72, "word": " constructor", "probability": 0.69091796875}, {"start": 1182.72, "end": 1182.92, "word": " when", "probability": 0.69677734375}, {"start": 1182.92, "end": 1183.04, "word": " it", "probability": 0.35302734375}, {"start": 1183.04, "end": 1183.1, "word": " is", "probability": 0.36279296875}, {"start": 1183.1, "end": 1183.26, "word": " created", "probability": 0.67333984375}, {"start": 1183.26, "end": 1183.48, "word": " we", "probability": 0.54443359375}, {"start": 1183.48, "end": 1183.7, "word": " say", "probability": 0.56591796875}, {"start": 1183.7, "end": 1184.72, "word": " subscribers", "probability": 0.51904296875}, {"start": 1184.72, "end": 1185.88, "word": " is", "probability": 0.022674560546875}, {"start": 1185.88, "end": 1186.1, "word": " equal", "probability": 0.367431640625}, {"start": 1186.1, "end": 1186.16, "word": " to", "probability": 0.9462890625}, {"start": 1186.16, "end": 1186.4, "word": " new", "probability": 0.69580078125}, {"start": 1186.4, "end": 1189.2, "word": " arraylist", "probability": 0.6317138671875}, {"start": 1189.2, "end": 1192.42, "word": " of", "probability": 0.261962890625}, {"start": 1192.42, "end": 1192.52, "word": " course", "probability": 0.90771484375}, {"start": 1192.52, "end": 1192.72, "word": " why", "probability": 0.66162109375}, {"start": 1192.72, "end": 1192.82, "word": " we", "probability": 0.489501953125}, {"start": 1192.82, "end": 1192.88, "word": " didn't", "probability": 0.717041015625}, {"start": 1192.88, "end": 1193.18, "word": " put", "probability": 0.67919921875}, {"start": 1193.18, "end": 1193.62, "word": " new", "probability": 0.390869140625}, {"start": 1193.62, "end": 1193.98, "word": " above", "probability": 0.64697265625}, {"start": 1193.98, "end": 1194.04, "word": " it", "probability": 0.3388671875}, {"start": 1194.04, "end": 1194.12, "word": " is", "probability": 0.2425537109375}, {"start": 1194.12, "end": 1194.34, "word": " normal", "probability": 0.568359375}, {"start": 1194.34, "end": 1194.44, "word": " you", "probability": 0.3916015625}, {"start": 1194.44, "end": 1194.6, "word": " can", "probability": 0.7685546875}, {"start": 1194.6, "end": 1194.86, "word": " put", "probability": 0.755859375}, {"start": 1194.86, "end": 1194.92, "word": " it", "probability": 0.830078125}, {"start": 1194.92, "end": 1195.06, "word": " here", "probability": 0.74560546875}, {"start": 1195.06, "end": 1195.24, "word": " but", "probability": 0.78466796875}, {"start": 1195.24, "end": 1195.44, "word": " I", "probability": 0.7958984375}, {"start": 1195.44, "end": 1195.7, "word": " prefer", "probability": 0.9111328125}, {"start": 1195.7, "end": 1195.84, "word": " to", "probability": 0.73583984375}, {"start": 1195.84, "end": 1195.96, "word": " do", "probability": 0.69091796875}, {"start": 1195.96, "end": 1196.04, "word": " it", "probability": 0.8466796875}, {"start": 1196.04, "end": 1196.12, "word": " in", "probability": 0.90234375}, {"start": 1196.12, "end": 1196.54, "word": " constructor", "probability": 0.70361328125}, {"start": 1196.54, "end": 1196.8, "word": " because", "probability": 0.537109375}, {"start": 1196.8, "end": 1196.9, "word": " it", "probability": 0.84033203125}, {"start": 1196.9, "end": 1196.96, "word": " is", "probability": 0.427978515625}, {"start": 1196.96, "end": 1196.98, "word": " not", "probability": 0.6201171875}, {"start": 1196.98, "end": 1197.18, "word": " created", "probability": 0.810546875}, {"start": 1197.18, "end": 1197.74, "word": " until", "probability": 0.28564453125}, {"start": 1197.74, "end": 1199.18, "word": " the", "probability": 0.35986328125}, {"start": 1199.18, "end": 1199.46, "word": " object", "probability": 0.93310546875}, {"start": 1199.46, "end": 1199.46, "word": " is", "probability": 0.87744140625}, {"start": 1199.46, "end": 1199.46, "word": " created", "probability": 0.321044921875}, {"start": 1199.46, "end": 1200.54, "word": " ok", "probability": 0.78369140625}], "temperature": 1.0}, {"id": 49, "seek": 121184, "start": 1202.87, "end": 1211.85, "text": "Okay, just like you made a list of subscribers, you need to make a tag to add to the subscribers, okay? So we need to make a tag called subscribe for example", "tokens": [8297, 11, 445, 411, 291, 1027, 257, 1329, 295, 11092, 11, 291, 643, 281, 652, 257, 6162, 281, 909, 281, 264, 11092, 11, 1392, 30, 407, 321, 643, 281, 652, 257, 6162, 1219, 3022, 337, 1365], "avg_logprob": -0.5730574066574509, "compression_ratio": 1.4672897196261683, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1202.87, "end": 1203.17, "word": "Okay,", "probability": 0.6416015625}, {"start": 1203.37, "end": 1203.51, "word": " just", "probability": 0.2347412109375}, {"start": 1203.51, "end": 1203.61, "word": " like", "probability": 0.85595703125}, {"start": 1203.61, "end": 1203.67, "word": " you", "probability": 0.436279296875}, {"start": 1203.67, "end": 1203.83, "word": " made", "probability": 0.2041015625}, {"start": 1203.83, "end": 1204.03, "word": " a", "probability": 0.7568359375}, {"start": 1204.03, "end": 1204.23, "word": " list", "probability": 0.90576171875}, {"start": 1204.23, "end": 1204.37, "word": " of", "probability": 0.9423828125}, {"start": 1204.37, "end": 1204.97, "word": " subscribers,", "probability": 0.89990234375}, {"start": 1205.13, "end": 1205.15, "word": " you", "probability": 0.8583984375}, {"start": 1205.15, "end": 1205.39, "word": " need", "probability": 0.39697265625}, {"start": 1205.39, "end": 1205.39, "word": " to", "probability": 0.93701171875}, {"start": 1205.39, "end": 1205.61, "word": " make", "probability": 0.6328125}, {"start": 1205.61, "end": 1205.75, "word": " a", "probability": 0.9228515625}, {"start": 1205.75, "end": 1205.93, "word": " tag", "probability": 0.0343017578125}, {"start": 1205.93, "end": 1207.61, "word": " to", "probability": 0.7509765625}, {"start": 1207.61, "end": 1207.91, "word": " add", "probability": 0.7998046875}, {"start": 1207.91, "end": 1208.05, "word": " to", "probability": 0.43505859375}, {"start": 1208.05, "end": 1208.13, "word": " the", "probability": 0.36669921875}, {"start": 1208.13, "end": 1208.67, "word": " subscribers,", "probability": 0.6318359375}, {"start": 1209.19, "end": 1209.43, "word": " okay?", "probability": 0.572265625}, {"start": 1209.63, "end": 1209.75, "word": " So", "probability": 0.76513671875}, {"start": 1209.75, "end": 1209.97, "word": " we", "probability": 0.4560546875}, {"start": 1209.97, "end": 1209.97, "word": " need", "probability": 0.31103515625}, {"start": 1209.97, "end": 1210.03, "word": " to", "probability": 0.955078125}, {"start": 1210.03, "end": 1210.17, "word": " make", "probability": 0.90380859375}, {"start": 1210.17, "end": 1210.29, "word": " a", "probability": 0.9560546875}, {"start": 1210.29, "end": 1210.47, "word": " tag", "probability": 0.97998046875}, {"start": 1210.47, "end": 1210.85, "word": " called", "probability": 0.35595703125}, {"start": 1210.85, "end": 1211.69, "word": " subscribe", "probability": 0.296875}, {"start": 1211.69, "end": 1211.85, "word": " for", "probability": 0.53466796875}, {"start": 1211.85, "end": 1211.85, "word": " example", "probability": 0.95458984375}], "temperature": 1.0}, {"id": 50, "seek": 124333, "start": 1214.27, "end": 1243.33, "text": " All of you know what is subscribes, right? If the video bothered you, I swear to God Yes Subscriber, this is the subscriber, S, okay? And then you say if subscribers.contains if it does not contain the S, go to the subscribers and say add the S And as we did subscribe, if you want to receive messages from the bus, you can say what? Unsubscribe", "tokens": [1057, 295, 291, 458, 437, 307, 2325, 6446, 11, 558, 30, 759, 264, 960, 22996, 291, 11, 286, 11902, 281, 1265, 1079, 37471, 1142, 607, 11, 341, 307, 264, 26122, 11, 318, 11, 1392, 30, 400, 550, 291, 584, 498, 11092, 13, 9000, 2315, 498, 309, 775, 406, 5304, 264, 318, 11, 352, 281, 264, 11092, 293, 584, 909, 264, 318, 400, 382, 321, 630, 3022, 11, 498, 291, 528, 281, 4774, 7897, 490, 264, 1255, 11, 291, 393, 584, 437, 30, 25017, 9493], "avg_logprob": -0.4786764705882353, "compression_ratio": 1.6878048780487804, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1214.27, "end": 1214.51, "word": " All", "probability": 0.1427001953125}, {"start": 1214.51, "end": 1214.59, "word": " of", "probability": 0.91015625}, {"start": 1214.59, "end": 1214.61, "word": " you", "probability": 0.947265625}, {"start": 1214.61, "end": 1214.81, "word": " know", "probability": 0.80517578125}, {"start": 1214.81, "end": 1215.03, "word": " what", "probability": 0.6796875}, {"start": 1215.03, "end": 1215.09, "word": " is", "probability": 0.5849609375}, {"start": 1215.09, "end": 1215.61, "word": " subscribes,", "probability": 0.38079833984375}, {"start": 1215.71, "end": 1215.77, "word": " right?", "probability": 0.64404296875}, {"start": 1215.87, "end": 1215.89, "word": " If", "probability": 0.64208984375}, {"start": 1215.89, "end": 1216.33, "word": " the", "probability": 0.410888671875}, {"start": 1216.33, "end": 1216.69, "word": " video", "probability": 0.90185546875}, {"start": 1216.69, "end": 1216.69, "word": " bothered", "probability": 0.318115234375}, {"start": 1216.69, "end": 1216.77, "word": " you,", "probability": 0.9609375}, {"start": 1216.93, "end": 1217.23, "word": " I", "probability": 0.30419921875}, {"start": 1217.23, "end": 1217.51, "word": " swear", "probability": 0.08819580078125}, {"start": 1217.51, "end": 1217.65, "word": " to", "probability": 0.54296875}, {"start": 1217.65, "end": 1217.65, "word": " God", "probability": 0.7900390625}, {"start": 1217.65, "end": 1218.47, "word": " Yes", "probability": 0.2005615234375}, {"start": 1218.47, "end": 1219.93, "word": " Subscriber,", "probability": 0.7097981770833334}, {"start": 1220.19, "end": 1220.43, "word": " this", "probability": 0.65625}, {"start": 1220.43, "end": 1220.51, "word": " is", "probability": 0.90234375}, {"start": 1220.51, "end": 1220.69, "word": " the", "probability": 0.353271484375}, {"start": 1220.69, "end": 1221.25, "word": " subscriber,", "probability": 0.8134765625}, {"start": 1221.41, "end": 1221.75, "word": " S,", "probability": 0.73583984375}, {"start": 1222.21, "end": 1222.75, "word": " okay?", "probability": 0.29052734375}, {"start": 1223.15, "end": 1223.31, "word": " And", "probability": 0.53662109375}, {"start": 1223.31, "end": 1223.49, "word": " then", "probability": 0.8046875}, {"start": 1223.49, "end": 1223.65, "word": " you", "probability": 0.853515625}, {"start": 1223.65, "end": 1223.83, "word": " say", "probability": 0.60546875}, {"start": 1223.83, "end": 1224.23, "word": " if", "probability": 0.521484375}, {"start": 1224.23, "end": 1226.47, "word": " subscribers", "probability": 0.5029296875}, {"start": 1226.47, "end": 1228.77, "word": ".contains", "probability": 0.8587239583333334}, {"start": 1228.77, "end": 1229.79, "word": " if", "probability": 0.4462890625}, {"start": 1229.79, "end": 1230.03, "word": " it", "probability": 0.7275390625}, {"start": 1230.03, "end": 1230.03, "word": " does", "probability": 0.59326171875}, {"start": 1230.03, "end": 1230.05, "word": " not", "probability": 0.92822265625}, {"start": 1230.05, "end": 1230.39, "word": " contain", "probability": 0.75927734375}, {"start": 1230.39, "end": 1230.63, "word": " the", "probability": 0.448974609375}, {"start": 1230.63, "end": 1230.91, "word": " S,", "probability": 0.6611328125}, {"start": 1231.81, "end": 1232.15, "word": " go", "probability": 0.80517578125}, {"start": 1232.15, "end": 1232.31, "word": " to", "probability": 0.94384765625}, {"start": 1232.31, "end": 1232.45, "word": " the", "probability": 0.63720703125}, {"start": 1232.45, "end": 1233.09, "word": " subscribers", "probability": 0.669921875}, {"start": 1233.09, "end": 1233.61, "word": " and", "probability": 0.81591796875}, {"start": 1233.61, "end": 1233.79, "word": " say", "probability": 0.53466796875}, {"start": 1233.79, "end": 1234.21, "word": " add", "probability": 0.763671875}, {"start": 1234.21, "end": 1234.91, "word": " the", "probability": 0.61572265625}, {"start": 1234.91, "end": 1235.15, "word": " S", "probability": 0.984375}, {"start": 1235.15, "end": 1237.03, "word": " And", "probability": 0.73291015625}, {"start": 1237.03, "end": 1237.17, "word": " as", "probability": 0.6650390625}, {"start": 1237.17, "end": 1237.29, "word": " we", "probability": 0.90673828125}, {"start": 1237.29, "end": 1237.45, "word": " did", "probability": 0.7431640625}, {"start": 1237.45, "end": 1237.99, "word": " subscribe,", "probability": 0.256591796875}, {"start": 1238.29, "end": 1238.41, "word": " if", "probability": 0.9453125}, {"start": 1238.41, "end": 1238.63, "word": " you", "probability": 0.97119140625}, {"start": 1238.63, "end": 1238.81, "word": " want", "probability": 0.6279296875}, {"start": 1238.81, "end": 1239.07, "word": " to", "probability": 0.8857421875}, {"start": 1239.07, "end": 1239.39, "word": " receive", "probability": 0.60888671875}, {"start": 1239.39, "end": 1239.83, "word": " messages", "probability": 0.68994140625}, {"start": 1239.83, "end": 1240.07, "word": " from", "probability": 0.8564453125}, {"start": 1240.07, "end": 1240.23, "word": " the", "probability": 0.82568359375}, {"start": 1240.23, "end": 1240.47, "word": " bus,", "probability": 0.8994140625}, {"start": 1240.61, "end": 1240.87, "word": " you", "probability": 0.79736328125}, {"start": 1240.87, "end": 1241.01, "word": " can", "probability": 0.92724609375}, {"start": 1241.01, "end": 1241.25, "word": " say", "probability": 0.6123046875}, {"start": 1241.25, "end": 1241.61, "word": " what?", "probability": 0.69775390625}, {"start": 1242.85, "end": 1243.33, "word": " Unsubscribe", "probability": 0.772705078125}], "temperature": 1.0}, {"id": 51, "seek": 126826, "start": 1245.64, "end": 1268.26, "text": "this is a subscriber, in order to cancel the subscription, subscribe and what do we do with it? remove to the name, they didn't find it, that's it", "tokens": [11176, 307, 257, 26122, 11, 294, 1668, 281, 10373, 264, 17231, 11, 3022, 293, 437, 360, 321, 360, 365, 309, 30, 4159, 281, 264, 1315, 11, 436, 994, 380, 915, 309, 11, 300, 311, 309], "avg_logprob": -0.6319444212648604, "compression_ratio": 1.3644859813084111, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1245.64, "end": 1245.98, "word": "this", "probability": 0.05419921875}, {"start": 1245.98, "end": 1246.04, "word": " is", "probability": 0.74951171875}, {"start": 1246.04, "end": 1246.36, "word": " a", "probability": 0.2322998046875}, {"start": 1246.36, "end": 1246.98, "word": " subscriber,", "probability": 0.740234375}, {"start": 1247.16, "end": 1247.4, "word": " in", "probability": 0.191650390625}, {"start": 1247.4, "end": 1247.4, "word": " order", "probability": 0.93603515625}, {"start": 1247.4, "end": 1247.56, "word": " to", "probability": 0.927734375}, {"start": 1247.56, "end": 1247.68, "word": " cancel", "probability": 0.75634765625}, {"start": 1247.68, "end": 1247.86, "word": " the", "probability": 0.487060546875}, {"start": 1247.86, "end": 1248.38, "word": " subscription,", "probability": 0.7724609375}, {"start": 1249.28, "end": 1252.04, "word": " subscribe", "probability": 0.3603515625}, {"start": 1252.04, "end": 1259.06, "word": " and", "probability": 0.57763671875}, {"start": 1259.06, "end": 1259.24, "word": " what", "probability": 0.2425537109375}, {"start": 1259.24, "end": 1259.24, "word": " do", "probability": 0.68408203125}, {"start": 1259.24, "end": 1259.26, "word": " we", "probability": 0.9228515625}, {"start": 1259.26, "end": 1259.42, "word": " do", "probability": 0.92529296875}, {"start": 1259.42, "end": 1259.58, "word": " with", "probability": 0.54736328125}, {"start": 1259.58, "end": 1259.86, "word": " it?", "probability": 0.73828125}, {"start": 1262.82, "end": 1263.26, "word": " remove", "probability": 0.7900390625}, {"start": 1263.26, "end": 1266.98, "word": " to", "probability": 0.1649169921875}, {"start": 1266.98, "end": 1267.04, "word": " the", "probability": 0.6259765625}, {"start": 1267.04, "end": 1267.22, "word": " name,", "probability": 0.40478515625}, {"start": 1267.3, "end": 1267.42, "word": " they", "probability": 0.5146484375}, {"start": 1267.42, "end": 1267.42, "word": " didn't", "probability": 0.6951904296875}, {"start": 1267.42, "end": 1267.64, "word": " find", "probability": 0.82177734375}, {"start": 1267.64, "end": 1267.88, "word": " it,", "probability": 0.865234375}, {"start": 1268.04, "end": 1268.26, "word": " that's", "probability": 0.645751953125}, {"start": 1268.26, "end": 1268.26, "word": " it", "probability": 0.82666015625}], "temperature": 1.0}, {"id": 52, "seek": 129499, "start": 1273.37, "end": 1294.99, "text": " Like the idea of the observer, but there is a difference. The data bus is designed as a singleton, so that everyone can reach it from anywhere, and there is only one copy of it. The second point is that there is a list of subscribers, so that people can register in it, and there is an interface for the subscriber. Anyone who wants to join the bus must take the kind of interface and register", "tokens": [1743, 264, 1558, 295, 264, 27878, 11, 457, 456, 307, 257, 2649, 13, 440, 1412, 1255, 307, 4761, 382, 257, 1522, 14806, 11, 370, 300, 1518, 393, 2524, 309, 490, 4992, 11, 293, 456, 307, 787, 472, 5055, 295, 309, 13, 440, 1150, 935, 307, 300, 456, 307, 257, 1329, 295, 11092, 11, 370, 300, 561, 393, 7280, 294, 309, 11, 293, 456, 307, 364, 9226, 337, 264, 26122, 13, 14643, 567, 2738, 281, 3917, 264, 1255, 1633, 747, 264, 733, 295, 9226, 293, 7280], "avg_logprob": -0.46184592295524685, "compression_ratio": 1.7828054298642535, "no_speech_prob": 3.3915042877197266e-05, "words": [{"start": 1273.37, "end": 1273.81, "word": " Like", "probability": 0.06964111328125}, {"start": 1273.81, "end": 1274.25, "word": " the", "probability": 0.58349609375}, {"start": 1274.25, "end": 1274.43, "word": " idea", "probability": 0.356201171875}, {"start": 1274.43, "end": 1274.59, "word": " of", "probability": 0.9375}, {"start": 1274.59, "end": 1274.67, "word": " the", "probability": 0.3046875}, {"start": 1274.67, "end": 1275.07, "word": " observer,", "probability": 0.58837890625}, {"start": 1275.41, "end": 1275.59, "word": " but", "probability": 0.6875}, {"start": 1275.59, "end": 1275.79, "word": " there", "probability": 0.42822265625}, {"start": 1275.79, "end": 1275.81, "word": " is", "probability": 0.6259765625}, {"start": 1275.81, "end": 1275.95, "word": " a", "probability": 0.87548828125}, {"start": 1275.95, "end": 1276.27, "word": " difference.", "probability": 0.796875}, {"start": 1276.91, "end": 1277.03, "word": " The", "probability": 0.47021484375}, {"start": 1277.03, "end": 1277.21, "word": " data", "probability": 0.20703125}, {"start": 1277.21, "end": 1277.47, "word": " bus", "probability": 0.94287109375}, {"start": 1277.47, "end": 1278.03, "word": " is", "probability": 0.5263671875}, {"start": 1278.03, "end": 1278.23, "word": " designed", "probability": 0.444580078125}, {"start": 1278.23, "end": 1278.49, "word": " as", "probability": 0.76708984375}, {"start": 1278.49, "end": 1278.63, "word": " a", "probability": 0.7490234375}, {"start": 1278.63, "end": 1278.95, "word": " singleton,", "probability": 0.869384765625}, {"start": 1279.27, "end": 1279.67, "word": " so", "probability": 0.70068359375}, {"start": 1279.67, "end": 1279.81, "word": " that", "probability": 0.5615234375}, {"start": 1279.81, "end": 1280.03, "word": " everyone", "probability": 0.67626953125}, {"start": 1280.03, "end": 1280.29, "word": " can", "probability": 0.900390625}, {"start": 1280.29, "end": 1280.61, "word": " reach", "probability": 0.236328125}, {"start": 1280.61, "end": 1281.29, "word": " it", "probability": 0.6357421875}, {"start": 1281.29, "end": 1281.55, "word": " from", "probability": 0.69970703125}, {"start": 1281.55, "end": 1281.95, "word": " anywhere,", "probability": 0.62744140625}, {"start": 1282.41, "end": 1282.57, "word": " and", "probability": 0.6953125}, {"start": 1282.57, "end": 1282.73, "word": " there", "probability": 0.2493896484375}, {"start": 1282.73, "end": 1282.79, "word": " is", "probability": 0.67236328125}, {"start": 1282.79, "end": 1283.05, "word": " only", "probability": 0.8583984375}, {"start": 1283.05, "end": 1284.25, "word": " one", "probability": 0.9228515625}, {"start": 1284.25, "end": 1284.25, "word": " copy", "probability": 0.6494140625}, {"start": 1284.25, "end": 1284.35, "word": " of", "probability": 0.5712890625}, {"start": 1284.35, "end": 1284.35, "word": " it.", "probability": 0.8994140625}, {"start": 1284.99, "end": 1285.27, "word": " The", "probability": 0.48095703125}, {"start": 1285.27, "end": 1285.33, "word": " second", "probability": 0.689453125}, {"start": 1285.33, "end": 1285.53, "word": " point", "probability": 0.9296875}, {"start": 1285.53, "end": 1285.87, "word": " is", "probability": 0.8876953125}, {"start": 1285.87, "end": 1285.95, "word": " that", "probability": 0.89697265625}, {"start": 1285.95, "end": 1286.07, "word": " there", "probability": 0.8662109375}, {"start": 1286.07, "end": 1286.07, "word": " is", "probability": 0.91650390625}, {"start": 1286.07, "end": 1286.19, "word": " a", "probability": 0.97265625}, {"start": 1286.19, "end": 1286.35, "word": " list", "probability": 0.89599609375}, {"start": 1286.35, "end": 1286.47, "word": " of", "probability": 0.95556640625}, {"start": 1286.47, "end": 1287.09, "word": " subscribers,", "probability": 0.87353515625}, {"start": 1287.25, "end": 1287.35, "word": " so", "probability": 0.708984375}, {"start": 1287.35, "end": 1287.47, "word": " that", "probability": 0.8935546875}, {"start": 1287.47, "end": 1287.67, "word": " people", "probability": 0.892578125}, {"start": 1287.67, "end": 1287.83, "word": " can", "probability": 0.60400390625}, {"start": 1287.83, "end": 1288.09, "word": " register", "probability": 0.728515625}, {"start": 1288.09, "end": 1288.25, "word": " in", "probability": 0.29443359375}, {"start": 1288.25, "end": 1288.49, "word": " it,", "probability": 0.7275390625}, {"start": 1288.81, "end": 1288.93, "word": " and", "probability": 0.88818359375}, {"start": 1288.93, "end": 1289.03, "word": " there", "probability": 0.8671875}, {"start": 1289.03, "end": 1289.05, "word": " is", "probability": 0.9287109375}, {"start": 1289.05, "end": 1289.17, "word": " an", "probability": 0.84912109375}, {"start": 1289.17, "end": 1289.55, "word": " interface", "probability": 0.89697265625}, {"start": 1289.55, "end": 1289.77, "word": " for", "probability": 0.87939453125}, {"start": 1289.77, "end": 1289.83, "word": " the", "probability": 0.467529296875}, {"start": 1289.83, "end": 1290.37, "word": " subscriber.", "probability": 0.66748046875}, {"start": 1291.31, "end": 1291.53, "word": " Anyone", "probability": 0.8359375}, {"start": 1291.53, "end": 1291.75, "word": " who", "probability": 0.77880859375}, {"start": 1291.75, "end": 1291.87, "word": " wants", "probability": 0.78125}, {"start": 1291.87, "end": 1291.91, "word": " to", "probability": 0.970703125}, {"start": 1291.91, "end": 1292.13, "word": " join", "probability": 0.517578125}, {"start": 1292.13, "end": 1292.35, "word": " the", "probability": 0.8427734375}, {"start": 1292.35, "end": 1292.51, "word": " bus", "probability": 0.931640625}, {"start": 1292.51, "end": 1292.73, "word": " must", "probability": 0.61376953125}, {"start": 1292.73, "end": 1292.99, "word": " take", "probability": 0.654296875}, {"start": 1292.99, "end": 1293.11, "word": " the", "probability": 0.54541015625}, {"start": 1293.11, "end": 1293.23, "word": " kind", "probability": 0.282470703125}, {"start": 1293.23, "end": 1293.35, "word": " of", "probability": 0.97021484375}, {"start": 1293.35, "end": 1293.99, "word": " interface", "probability": 0.8896484375}, {"start": 1293.99, "end": 1294.55, "word": " and", "probability": 0.7822265625}, {"start": 1294.55, "end": 1294.99, "word": " register", "probability": 0.828125}], "temperature": 1.0}, {"id": 53, "seek": 132523, "start": 1295.83, "end": 1325.23, "text": " in the existing list, okay? And this is the message on the basis that it wants to send, it must send the data and who is with it, who sent the data. Now we have one step left to finish this bus thing. It is all the work in the bus. Now in addition to subscribe and unsubscribe, we want to do a tag called public void publish. It takes a bus message.", "tokens": [294, 264, 6741, 1329, 11, 1392, 30, 400, 341, 307, 264, 3636, 322, 264, 5143, 300, 309, 2738, 281, 2845, 11, 309, 1633, 2845, 264, 1412, 293, 567, 307, 365, 309, 11, 567, 2279, 264, 1412, 13, 823, 321, 362, 472, 1823, 1411, 281, 2413, 341, 1255, 551, 13, 467, 307, 439, 264, 589, 294, 264, 1255, 13, 823, 294, 4500, 281, 3022, 293, 2693, 9493, 11, 321, 528, 281, 360, 257, 6162, 1219, 1908, 22009, 11374, 13, 467, 2516, 257, 1255, 3636, 13], "avg_logprob": -0.5007352688733269, "compression_ratio": 1.6990291262135921, "no_speech_prob": 3.629922866821289e-05, "words": [{"start": 1295.83, "end": 1295.99, "word": " in", "probability": 0.29736328125}, {"start": 1295.99, "end": 1296.03, "word": " the", "probability": 0.6796875}, {"start": 1296.03, "end": 1296.69, "word": " existing", "probability": 0.206787109375}, {"start": 1296.69, "end": 1296.69, "word": " list,", "probability": 0.74560546875}, {"start": 1296.95, "end": 1297.41, "word": " okay?", "probability": 0.3193359375}, {"start": 1297.79, "end": 1298.21, "word": " And", "probability": 0.317626953125}, {"start": 1298.21, "end": 1298.53, "word": " this", "probability": 0.78662109375}, {"start": 1298.53, "end": 1298.61, "word": " is", "probability": 0.84326171875}, {"start": 1298.61, "end": 1298.77, "word": " the", "probability": 0.78564453125}, {"start": 1298.77, "end": 1299.11, "word": " message", "probability": 0.73779296875}, {"start": 1299.11, "end": 1299.75, "word": " on", "probability": 0.220703125}, {"start": 1299.75, "end": 1299.87, "word": " the", "probability": 0.783203125}, {"start": 1299.87, "end": 1300.13, "word": " basis", "probability": 0.88916015625}, {"start": 1300.13, "end": 1300.31, "word": " that", "probability": 0.72900390625}, {"start": 1300.31, "end": 1300.39, "word": " it", "probability": 0.372314453125}, {"start": 1300.39, "end": 1300.59, "word": " wants", "probability": 0.326904296875}, {"start": 1300.59, "end": 1300.67, "word": " to", "probability": 0.95068359375}, {"start": 1300.67, "end": 1301.01, "word": " send,", "probability": 0.8154296875}, {"start": 1301.15, "end": 1301.31, "word": " it", "probability": 0.5771484375}, {"start": 1301.31, "end": 1301.53, "word": " must", "probability": 0.6103515625}, {"start": 1301.53, "end": 1301.85, "word": " send", "probability": 0.8125}, {"start": 1301.85, "end": 1302.29, "word": " the", "probability": 0.75341796875}, {"start": 1302.29, "end": 1302.99, "word": " data", "probability": 0.9130859375}, {"start": 1302.99, "end": 1303.15, "word": " and", "probability": 0.705078125}, {"start": 1303.15, "end": 1303.25, "word": " who", "probability": 0.2315673828125}, {"start": 1303.25, "end": 1303.25, "word": " is", "probability": 0.5595703125}, {"start": 1303.25, "end": 1303.29, "word": " with", "probability": 0.76220703125}, {"start": 1303.29, "end": 1303.73, "word": " it,", "probability": 0.7841796875}, {"start": 1304.37, "end": 1305.13, "word": " who", "probability": 0.72509765625}, {"start": 1305.13, "end": 1305.55, "word": " sent", "probability": 0.68017578125}, {"start": 1305.55, "end": 1306.25, "word": " the", "probability": 0.85546875}, {"start": 1306.25, "end": 1306.49, "word": " data.", "probability": 0.76513671875}, {"start": 1306.87, "end": 1307.17, "word": " Now", "probability": 0.87255859375}, {"start": 1307.17, "end": 1307.53, "word": " we", "probability": 0.7265625}, {"start": 1307.53, "end": 1307.53, "word": " have", "probability": 0.71142578125}, {"start": 1307.53, "end": 1307.59, "word": " one", "probability": 0.64501953125}, {"start": 1307.59, "end": 1307.81, "word": " step", "probability": 0.70361328125}, {"start": 1307.81, "end": 1308.07, "word": " left", "probability": 0.70947265625}, {"start": 1308.07, "end": 1308.35, "word": " to", "probability": 0.8818359375}, {"start": 1308.35, "end": 1308.77, "word": " finish", "probability": 0.53271484375}, {"start": 1308.77, "end": 1309.51, "word": " this", "probability": 0.73193359375}, {"start": 1309.51, "end": 1309.79, "word": " bus", "probability": 0.50439453125}, {"start": 1309.79, "end": 1309.95, "word": " thing.", "probability": 0.2498779296875}, {"start": 1310.39, "end": 1310.49, "word": " It", "probability": 0.5126953125}, {"start": 1310.49, "end": 1310.55, "word": " is", "probability": 0.473388671875}, {"start": 1310.55, "end": 1310.65, "word": " all", "probability": 0.84765625}, {"start": 1310.65, "end": 1310.67, "word": " the", "probability": 0.37939453125}, {"start": 1310.67, "end": 1310.89, "word": " work", "probability": 0.83642578125}, {"start": 1310.89, "end": 1311.83, "word": " in", "probability": 0.5712890625}, {"start": 1311.83, "end": 1311.95, "word": " the", "probability": 0.9140625}, {"start": 1311.95, "end": 1312.17, "word": " bus.", "probability": 0.94482421875}, {"start": 1313.57, "end": 1314.03, "word": " Now", "probability": 0.916015625}, {"start": 1314.03, "end": 1314.63, "word": " in", "probability": 0.5009765625}, {"start": 1314.63, "end": 1314.97, "word": " addition", "probability": 0.96337890625}, {"start": 1314.97, "end": 1315.15, "word": " to", "probability": 0.9716796875}, {"start": 1315.15, "end": 1315.77, "word": " subscribe", "probability": 0.468505859375}, {"start": 1315.77, "end": 1316.09, "word": " and", "probability": 0.931640625}, {"start": 1316.09, "end": 1316.75, "word": " unsubscribe,", "probability": 0.966064453125}, {"start": 1317.15, "end": 1317.21, "word": " we", "probability": 0.927734375}, {"start": 1317.21, "end": 1317.35, "word": " want", "probability": 0.62646484375}, {"start": 1317.35, "end": 1317.49, "word": " to", "probability": 0.97607421875}, {"start": 1317.49, "end": 1317.73, "word": " do", "probability": 0.40625}, {"start": 1317.73, "end": 1318.21, "word": " a", "probability": 0.77978515625}, {"start": 1318.21, "end": 1318.37, "word": " tag", "probability": 0.12939453125}, {"start": 1318.37, "end": 1318.89, "word": " called", "probability": 0.740234375}, {"start": 1318.89, "end": 1319.27, "word": " public", "probability": 0.73681640625}, {"start": 1319.27, "end": 1319.81, "word": " void", "probability": 0.71533203125}, {"start": 1319.81, "end": 1320.39, "word": " publish.", "probability": 0.876953125}, {"start": 1322.27, "end": 1322.83, "word": " It", "probability": 0.442138671875}, {"start": 1322.83, "end": 1323.05, "word": " takes", "probability": 0.72998046875}, {"start": 1323.05, "end": 1323.31, "word": " a", "probability": 0.40869140625}, {"start": 1323.31, "end": 1323.49, "word": " bus", "probability": 0.86328125}, {"start": 1323.49, "end": 1325.23, "word": " message.", "probability": 0.900390625}], "temperature": 1.0}, {"id": 54, "seek": 135308, "start": 1328.3, "end": 1353.08, "text": "What is this statement publish? This is at the execution of this gate. What do they want to send to them? They will go to the bus and tell him what? Publish and send him the message. That is, this statement publish is at the execution. Everyone wants to send a message to others, go to the bus and tell him what? Tell him publish. And the data they want to send, they want to wrap it up as what? As a bus message.", "tokens": [3748, 307, 341, 5629, 11374, 30, 639, 307, 412, 264, 15058, 295, 341, 8539, 13, 708, 360, 436, 528, 281, 2845, 281, 552, 30, 814, 486, 352, 281, 264, 1255, 293, 980, 796, 437, 30, 21808, 1933, 293, 2845, 796, 264, 3636, 13, 663, 307, 11, 341, 5629, 11374, 307, 412, 264, 15058, 13, 5198, 2738, 281, 2845, 257, 3636, 281, 2357, 11, 352, 281, 264, 1255, 293, 980, 796, 437, 30, 5115, 796, 11374, 13, 400, 264, 1412, 436, 528, 281, 2845, 11, 436, 528, 281, 7019, 309, 493, 382, 437, 30, 1018, 257, 1255, 3636, 13], "avg_logprob": -0.47664140812074296, "compression_ratio": 2.0964467005076144, "no_speech_prob": 2.4437904357910156e-06, "words": [{"start": 1328.3, "end": 1328.6, "word": "What", "probability": 0.3154296875}, {"start": 1328.6, "end": 1328.64, "word": " is", "probability": 0.5625}, {"start": 1328.64, "end": 1328.88, "word": " this", "probability": 0.69287109375}, {"start": 1328.88, "end": 1329.04, "word": " statement", "probability": 0.05572509765625}, {"start": 1329.04, "end": 1329.48, "word": " publish?", "probability": 0.250244140625}, {"start": 1330.16, "end": 1330.56, "word": " This", "probability": 0.470703125}, {"start": 1330.56, "end": 1330.6, "word": " is", "probability": 0.419921875}, {"start": 1330.6, "end": 1330.82, "word": " at", "probability": 0.271240234375}, {"start": 1330.82, "end": 1330.92, "word": " the", "probability": 0.295166015625}, {"start": 1330.92, "end": 1331.26, "word": " execution", "probability": 0.63720703125}, {"start": 1331.26, "end": 1331.4, "word": " of", "probability": 0.272216796875}, {"start": 1331.4, "end": 1331.46, "word": " this", "probability": 0.50390625}, {"start": 1331.46, "end": 1331.68, "word": " gate.", "probability": 0.40380859375}, {"start": 1331.82, "end": 1332.02, "word": " What", "probability": 0.46142578125}, {"start": 1332.02, "end": 1332.2, "word": " do", "probability": 0.267578125}, {"start": 1332.2, "end": 1332.32, "word": " they", "probability": 0.705078125}, {"start": 1332.32, "end": 1332.38, "word": " want", "probability": 0.7099609375}, {"start": 1332.38, "end": 1332.38, "word": " to", "probability": 0.8994140625}, {"start": 1332.38, "end": 1332.52, "word": " send", "probability": 0.80908203125}, {"start": 1332.52, "end": 1332.68, "word": " to", "probability": 0.572265625}, {"start": 1332.68, "end": 1332.8, "word": " them?", "probability": 0.369384765625}, {"start": 1333.58, "end": 1333.98, "word": " They", "probability": 0.59912109375}, {"start": 1333.98, "end": 1334.06, "word": " will", "probability": 0.4482421875}, {"start": 1334.06, "end": 1334.18, "word": " go", "probability": 0.9384765625}, {"start": 1334.18, "end": 1334.34, "word": " to", "probability": 0.96484375}, {"start": 1334.34, "end": 1334.48, "word": " the", "probability": 0.9072265625}, {"start": 1334.48, "end": 1334.66, "word": " bus", "probability": 0.93212890625}, {"start": 1334.66, "end": 1334.9, "word": " and", "probability": 0.86328125}, {"start": 1334.9, "end": 1335.1, "word": " tell", "probability": 0.39794921875}, {"start": 1335.1, "end": 1335.24, "word": " him", "probability": 0.65185546875}, {"start": 1335.24, "end": 1335.54, "word": " what?", "probability": 0.235107421875}, {"start": 1336.5, "end": 1336.9, "word": " Publish", "probability": 0.84423828125}, {"start": 1336.9, "end": 1337.06, "word": " and", "probability": 0.8134765625}, {"start": 1337.06, "end": 1337.3, "word": " send", "probability": 0.70654296875}, {"start": 1337.3, "end": 1337.58, "word": " him", "probability": 0.86083984375}, {"start": 1337.58, "end": 1338.48, "word": " the", "probability": 0.71875}, {"start": 1338.48, "end": 1338.8, "word": " message.", "probability": 0.861328125}, {"start": 1339.04, "end": 1339.38, "word": " That", "probability": 0.1331787109375}, {"start": 1339.38, "end": 1339.38, "word": " is,", "probability": 0.75244140625}, {"start": 1339.46, "end": 1339.66, "word": " this", "probability": 0.89697265625}, {"start": 1339.66, "end": 1340.04, "word": " statement", "probability": 0.5068359375}, {"start": 1340.04, "end": 1340.7, "word": " publish", "probability": 0.479248046875}, {"start": 1340.7, "end": 1341.28, "word": " is", "probability": 0.74853515625}, {"start": 1341.28, "end": 1341.52, "word": " at", "probability": 0.85791015625}, {"start": 1341.52, "end": 1341.66, "word": " the", "probability": 0.487548828125}, {"start": 1341.66, "end": 1341.94, "word": " execution.", "probability": 0.83740234375}, {"start": 1342.14, "end": 1342.46, "word": " Everyone", "probability": 0.43310546875}, {"start": 1342.46, "end": 1342.78, "word": " wants", "probability": 0.73193359375}, {"start": 1342.78, "end": 1342.86, "word": " to", "probability": 0.96728515625}, {"start": 1342.86, "end": 1343.0, "word": " send", "probability": 0.85595703125}, {"start": 1343.0, "end": 1343.42, "word": " a", "probability": 0.974609375}, {"start": 1343.42, "end": 1343.42, "word": " message", "probability": 0.91259765625}, {"start": 1343.42, "end": 1343.56, "word": " to", "probability": 0.96875}, {"start": 1343.56, "end": 1344.14, "word": " others,", "probability": 0.8212890625}, {"start": 1345.16, "end": 1345.58, "word": " go", "probability": 0.264892578125}, {"start": 1345.58, "end": 1345.78, "word": " to", "probability": 0.96484375}, {"start": 1345.78, "end": 1345.9, "word": " the", "probability": 0.92431640625}, {"start": 1345.9, "end": 1346.12, "word": " bus", "probability": 0.95556640625}, {"start": 1346.12, "end": 1346.3, "word": " and", "probability": 0.86572265625}, {"start": 1346.3, "end": 1346.46, "word": " tell", "probability": 0.60693359375}, {"start": 1346.46, "end": 1346.58, "word": " him", "probability": 0.857421875}, {"start": 1346.58, "end": 1346.86, "word": " what?", "probability": 0.89208984375}, {"start": 1347.48, "end": 1347.72, "word": " Tell", "probability": 0.25634765625}, {"start": 1347.72, "end": 1347.84, "word": " him", "probability": 0.9111328125}, {"start": 1347.84, "end": 1348.1, "word": " publish.", "probability": 0.7041015625}, {"start": 1348.78, "end": 1348.98, "word": " And", "probability": 0.79541015625}, {"start": 1348.98, "end": 1349.06, "word": " the", "probability": 0.7294921875}, {"start": 1349.06, "end": 1349.28, "word": " data", "probability": 0.857421875}, {"start": 1349.28, "end": 1349.54, "word": " they", "probability": 0.363525390625}, {"start": 1349.54, "end": 1349.66, "word": " want", "probability": 0.8525390625}, {"start": 1349.66, "end": 1349.7, "word": " to", "probability": 0.9638671875}, {"start": 1349.7, "end": 1349.92, "word": " send,", "probability": 0.82275390625}, {"start": 1350.04, "end": 1350.12, "word": " they", "probability": 0.73974609375}, {"start": 1350.12, "end": 1350.22, "word": " want", "probability": 0.7236328125}, {"start": 1350.22, "end": 1350.28, "word": " to", "probability": 0.95654296875}, {"start": 1350.28, "end": 1350.58, "word": " wrap", "probability": 0.72509765625}, {"start": 1350.58, "end": 1350.76, "word": " it", "probability": 0.73779296875}, {"start": 1350.76, "end": 1350.82, "word": " up", "probability": 0.4912109375}, {"start": 1350.82, "end": 1350.88, "word": " as", "probability": 0.5654296875}, {"start": 1350.88, "end": 1351.22, "word": " what?", "probability": 0.8427734375}, {"start": 1352.18, "end": 1352.58, "word": " As", "probability": 0.80517578125}, {"start": 1352.58, "end": 1352.62, "word": " a", "probability": 0.88818359375}, {"start": 1352.62, "end": 1352.74, "word": " bus", "probability": 0.86279296875}, {"start": 1352.74, "end": 1353.08, "word": " message.", "probability": 0.90869140625}], "temperature": 1.0}, {"id": 55, "seek": 138387, "start": 1354.21, "end": 1383.87, "text": " Okay? Did you get it? The message has reached the bus What does the bus want to do? It wants to make a loop on the subscribers And tell them what? Take the data So it wants to say to each subscriber S in subscribers Yes, see what I want to do F s does not equal message dot get sender", "tokens": [1033, 30, 2589, 291, 483, 309, 30, 440, 3636, 575, 6488, 264, 1255, 708, 775, 264, 1255, 528, 281, 360, 30, 467, 2738, 281, 652, 257, 6367, 322, 264, 11092, 400, 980, 552, 437, 30, 3664, 264, 1412, 407, 309, 2738, 281, 584, 281, 1184, 26122, 318, 294, 11092, 1079, 11, 536, 437, 286, 528, 281, 360, 479, 262, 775, 406, 2681, 3636, 5893, 483, 2845, 260], "avg_logprob": -0.5078124763334498, "compression_ratio": 1.6285714285714286, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 1354.21, "end": 1354.65, "word": " Okay?", "probability": 0.13427734375}, {"start": 1355.29, "end": 1355.69, "word": " Did", "probability": 0.144775390625}, {"start": 1355.69, "end": 1355.89, "word": " you", "probability": 0.91845703125}, {"start": 1355.89, "end": 1355.89, "word": " get", "probability": 0.47509765625}, {"start": 1355.89, "end": 1355.93, "word": " it?", "probability": 0.7470703125}, {"start": 1356.03, "end": 1356.47, "word": " The", "probability": 0.6728515625}, {"start": 1356.47, "end": 1356.73, "word": " message", "probability": 0.76513671875}, {"start": 1356.73, "end": 1356.83, "word": " has", "probability": 0.339111328125}, {"start": 1356.83, "end": 1356.83, "word": " reached", "probability": 0.580078125}, {"start": 1356.83, "end": 1357.05, "word": " the", "probability": 0.84130859375}, {"start": 1357.05, "end": 1357.29, "word": " bus", "probability": 0.75927734375}, {"start": 1357.29, "end": 1358.01, "word": " What", "probability": 0.491455078125}, {"start": 1358.01, "end": 1358.03, "word": " does", "probability": 0.65771484375}, {"start": 1358.03, "end": 1358.17, "word": " the", "probability": 0.8837890625}, {"start": 1358.17, "end": 1358.31, "word": " bus", "probability": 0.92529296875}, {"start": 1358.31, "end": 1358.51, "word": " want", "probability": 0.55615234375}, {"start": 1358.51, "end": 1358.59, "word": " to", "probability": 0.94580078125}, {"start": 1358.59, "end": 1358.83, "word": " do?", "probability": 0.9638671875}, {"start": 1359.13, "end": 1359.43, "word": " It", "probability": 0.404541015625}, {"start": 1359.43, "end": 1359.59, "word": " wants", "probability": 0.76123046875}, {"start": 1359.59, "end": 1359.65, "word": " to", "probability": 0.96826171875}, {"start": 1359.65, "end": 1359.87, "word": " make", "probability": 0.2425537109375}, {"start": 1359.87, "end": 1360.01, "word": " a", "probability": 0.83203125}, {"start": 1360.01, "end": 1360.07, "word": " loop", "probability": 0.97265625}, {"start": 1360.07, "end": 1360.23, "word": " on", "probability": 0.59521484375}, {"start": 1360.23, "end": 1360.33, "word": " the", "probability": 0.6025390625}, {"start": 1360.33, "end": 1360.91, "word": " subscribers", "probability": 0.82568359375}, {"start": 1360.91, "end": 1362.03, "word": " And", "probability": 0.3720703125}, {"start": 1362.03, "end": 1362.19, "word": " tell", "probability": 0.449951171875}, {"start": 1362.19, "end": 1362.33, "word": " them", "probability": 0.896484375}, {"start": 1362.33, "end": 1362.63, "word": " what?", "probability": 0.4951171875}, {"start": 1362.83, "end": 1363.17, "word": " Take", "probability": 0.66357421875}, {"start": 1363.17, "end": 1363.29, "word": " the", "probability": 0.74658203125}, {"start": 1363.29, "end": 1363.51, "word": " data", "probability": 0.6025390625}, {"start": 1363.51, "end": 1364.25, "word": " So", "probability": 0.2529296875}, {"start": 1364.25, "end": 1364.37, "word": " it", "probability": 0.48193359375}, {"start": 1364.37, "end": 1364.49, "word": " wants", "probability": 0.64111328125}, {"start": 1364.49, "end": 1364.51, "word": " to", "probability": 0.96875}, {"start": 1364.51, "end": 1364.69, "word": " say", "probability": 0.3310546875}, {"start": 1364.69, "end": 1364.85, "word": " to", "probability": 0.66845703125}, {"start": 1364.85, "end": 1365.21, "word": " each", "probability": 0.5244140625}, {"start": 1365.21, "end": 1367.75, "word": " subscriber", "probability": 0.86181640625}, {"start": 1367.75, "end": 1370.59, "word": " S", "probability": 0.2861328125}, {"start": 1370.59, "end": 1371.17, "word": " in", "probability": 0.2919921875}, {"start": 1371.17, "end": 1373.77, "word": " subscribers", "probability": 0.72802734375}, {"start": 1373.77, "end": 1375.37, "word": " Yes,", "probability": 0.2861328125}, {"start": 1375.49, "end": 1375.63, "word": " see", "probability": 0.431396484375}, {"start": 1375.63, "end": 1375.77, "word": " what", "probability": 0.93994140625}, {"start": 1375.77, "end": 1375.97, "word": " I", "probability": 0.65625}, {"start": 1375.97, "end": 1375.97, "word": " want", "probability": 0.45361328125}, {"start": 1375.97, "end": 1375.99, "word": " to", "probability": 0.97509765625}, {"start": 1375.99, "end": 1376.23, "word": " do", "probability": 0.96044921875}, {"start": 1376.23, "end": 1376.63, "word": " F", "probability": 0.47705078125}, {"start": 1376.63, "end": 1377.17, "word": " s", "probability": 0.275390625}, {"start": 1377.17, "end": 1378.35, "word": " does", "probability": 0.35107421875}, {"start": 1378.35, "end": 1378.47, "word": " not", "probability": 0.923828125}, {"start": 1378.47, "end": 1378.87, "word": " equal", "probability": 0.91015625}, {"start": 1378.87, "end": 1380.43, "word": " message", "probability": 0.78076171875}, {"start": 1380.43, "end": 1383.01, "word": " dot", "probability": 0.6376953125}, {"start": 1383.01, "end": 1383.35, "word": " get", "probability": 0.70263671875}, {"start": 1383.35, "end": 1383.87, "word": " sender", "probability": 0.816650390625}], "temperature": 1.0}, {"id": 56, "seek": 141034, "start": 1387.56, "end": 1410.34, "text": " you type in s.messagereceived this is in python, I thought I would write it in python ok, for every subscriber, s is present in subscribers because the idea is that we received a message, I am supposed to send it to others without returning it to the one I sent it to, right or not? because I found the a sent a message to the bus", "tokens": [291, 2010, 294, 262, 13, 76, 442, 609, 44209, 3194, 341, 307, 294, 38797, 11, 286, 1194, 286, 576, 2464, 309, 294, 38797, 3133, 11, 337, 633, 26122, 11, 262, 307, 1974, 294, 11092, 570, 264, 1558, 307, 300, 321, 4613, 257, 3636, 11, 286, 669, 3442, 281, 2845, 309, 281, 2357, 1553, 12678, 309, 281, 264, 472, 286, 2279, 309, 281, 11, 558, 420, 406, 30, 570, 286, 1352, 264, 257, 2279, 257, 3636, 281, 264, 1255], "avg_logprob": -0.5890031358863734, "compression_ratio": 1.7239583333333333, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 1387.56, "end": 1387.82, "word": " you", "probability": 0.1341552734375}, {"start": 1387.82, "end": 1388.02, "word": " type", "probability": 0.441162109375}, {"start": 1388.02, "end": 1388.12, "word": " in", "probability": 0.456787109375}, {"start": 1388.12, "end": 1388.36, "word": " s", "probability": 0.283203125}, {"start": 1388.36, "end": 1393.08, "word": ".messagereceived", "probability": 0.78857421875}, {"start": 1393.08, "end": 1393.58, "word": " this", "probability": 0.1182861328125}, {"start": 1393.58, "end": 1393.7, "word": " is", "probability": 0.57568359375}, {"start": 1393.7, "end": 1393.78, "word": " in", "probability": 0.63623046875}, {"start": 1393.78, "end": 1395.12, "word": " python,", "probability": 0.64404296875}, {"start": 1395.16, "end": 1395.34, "word": " I", "probability": 0.2042236328125}, {"start": 1395.34, "end": 1395.48, "word": " thought", "probability": 0.437744140625}, {"start": 1395.48, "end": 1395.64, "word": " I", "probability": 0.75830078125}, {"start": 1395.64, "end": 1395.66, "word": " would", "probability": 0.3369140625}, {"start": 1395.66, "end": 1395.86, "word": " write", "probability": 0.6767578125}, {"start": 1395.86, "end": 1396.28, "word": " it", "probability": 0.2607421875}, {"start": 1396.28, "end": 1396.72, "word": " in", "probability": 0.82275390625}, {"start": 1396.72, "end": 1396.72, "word": " python", "probability": 0.86376953125}, {"start": 1396.72, "end": 1397.1, "word": " ok,", "probability": 0.1468505859375}, {"start": 1397.56, "end": 1397.8, "word": " for", "probability": 0.6552734375}, {"start": 1397.8, "end": 1397.96, "word": " every", "probability": 0.57763671875}, {"start": 1397.96, "end": 1398.66, "word": " subscriber,", "probability": 0.89111328125}, {"start": 1398.76, "end": 1398.94, "word": " s", "probability": 0.46484375}, {"start": 1398.94, "end": 1399.04, "word": " is", "probability": 0.76953125}, {"start": 1399.04, "end": 1399.28, "word": " present", "probability": 0.5498046875}, {"start": 1399.28, "end": 1399.38, "word": " in", "probability": 0.8720703125}, {"start": 1399.38, "end": 1400.1, "word": " subscribers", "probability": 0.466064453125}, {"start": 1400.1, "end": 1401.32, "word": " because", "probability": 0.73046875}, {"start": 1401.32, "end": 1401.46, "word": " the", "probability": 0.798828125}, {"start": 1401.46, "end": 1401.74, "word": " idea", "probability": 0.84423828125}, {"start": 1401.74, "end": 1402.76, "word": " is", "probability": 0.62646484375}, {"start": 1402.76, "end": 1402.84, "word": " that", "probability": 0.67529296875}, {"start": 1402.84, "end": 1403.14, "word": " we", "probability": 0.2486572265625}, {"start": 1403.14, "end": 1403.32, "word": " received", "probability": 0.410400390625}, {"start": 1403.32, "end": 1403.54, "word": " a", "probability": 0.94677734375}, {"start": 1403.54, "end": 1403.72, "word": " message,", "probability": 0.87548828125}, {"start": 1403.86, "end": 1404.0, "word": " I", "probability": 0.64501953125}, {"start": 1404.0, "end": 1404.0, "word": " am", "probability": 0.36962890625}, {"start": 1404.0, "end": 1404.2, "word": " supposed", "probability": 0.9140625}, {"start": 1404.2, "end": 1404.32, "word": " to", "probability": 0.970703125}, {"start": 1404.32, "end": 1404.54, "word": " send", "probability": 0.313720703125}, {"start": 1404.54, "end": 1404.72, "word": " it", "probability": 0.9169921875}, {"start": 1404.72, "end": 1404.8, "word": " to", "probability": 0.88671875}, {"start": 1404.8, "end": 1405.22, "word": " others", "probability": 0.6865234375}, {"start": 1405.22, "end": 1405.62, "word": " without", "probability": 0.25244140625}, {"start": 1405.62, "end": 1405.96, "word": " returning", "probability": 0.751953125}, {"start": 1405.96, "end": 1406.16, "word": " it", "probability": 0.751953125}, {"start": 1406.16, "end": 1406.28, "word": " to", "probability": 0.80419921875}, {"start": 1406.28, "end": 1406.42, "word": " the", "probability": 0.53759765625}, {"start": 1406.42, "end": 1406.52, "word": " one", "probability": 0.49609375}, {"start": 1406.52, "end": 1406.7, "word": " I", "probability": 0.6630859375}, {"start": 1406.7, "end": 1406.92, "word": " sent", "probability": 0.370361328125}, {"start": 1406.92, "end": 1407.16, "word": " it", "probability": 0.74658203125}, {"start": 1407.16, "end": 1407.6, "word": " to,", "probability": 0.81298828125}, {"start": 1407.68, "end": 1407.86, "word": " right", "probability": 0.65283203125}, {"start": 1407.86, "end": 1408.04, "word": " or", "probability": 0.6259765625}, {"start": 1408.04, "end": 1408.12, "word": " not?", "probability": 0.390380859375}, {"start": 1408.5, "end": 1408.66, "word": " because", "probability": 0.1998291015625}, {"start": 1408.66, "end": 1408.8, "word": " I", "probability": 0.60986328125}, {"start": 1408.8, "end": 1408.98, "word": " found", "probability": 0.73583984375}, {"start": 1408.98, "end": 1409.14, "word": " the", "probability": 0.43017578125}, {"start": 1409.14, "end": 1409.3, "word": " a", "probability": 0.4560546875}, {"start": 1409.3, "end": 1409.58, "word": " sent", "probability": 0.27880859375}, {"start": 1409.58, "end": 1409.94, "word": " a", "probability": 0.78125}, {"start": 1409.94, "end": 1409.94, "word": " message", "probability": 0.9150390625}, {"start": 1409.94, "end": 1410.06, "word": " to", "probability": 0.96435546875}, {"start": 1410.06, "end": 1410.16, "word": " the", "probability": 0.92578125}, {"start": 1410.16, "end": 1410.34, "word": " bus", "probability": 0.9248046875}], "temperature": 1.0}, {"id": 57, "seek": 143734, "start": 1411.64, "end": 1437.34, "text": "He doesn't want to act stupid, he wants to think about the message that came, he wants to send it to B, C and D without returning it to A, right or wrong? So when the message came to me, I said to him, by God, let's do subscribers, okay? So for each subscriber, if it is not the sender, what should I do? I should send a message received, in order to send to each number that sent the message", "tokens": [5205, 1177, 380, 528, 281, 605, 6631, 11, 415, 2738, 281, 519, 466, 264, 3636, 300, 1361, 11, 415, 2738, 281, 2845, 309, 281, 363, 11, 383, 293, 413, 1553, 12678, 309, 281, 316, 11, 558, 420, 2085, 30, 407, 562, 264, 3636, 1361, 281, 385, 11, 286, 848, 281, 796, 11, 538, 1265, 11, 718, 311, 360, 11092, 11, 1392, 30, 407, 337, 1184, 26122, 11, 498, 309, 307, 406, 264, 2845, 260, 11, 437, 820, 286, 360, 30, 286, 820, 2845, 257, 3636, 4613, 11, 294, 1668, 281, 2845, 281, 1184, 1230, 300, 2279, 264, 3636], "avg_logprob": -0.5375631036180438, "compression_ratio": 1.75, "no_speech_prob": 1.3709068298339844e-06, "words": [{"start": 1411.64, "end": 1411.88, "word": "He", "probability": 0.171875}, {"start": 1411.88, "end": 1411.92, "word": " doesn't", "probability": 0.7269287109375}, {"start": 1411.92, "end": 1412.06, "word": " want", "probability": 0.73583984375}, {"start": 1412.06, "end": 1412.6, "word": " to", "probability": 0.87939453125}, {"start": 1412.6, "end": 1413.0, "word": " act", "probability": 0.3935546875}, {"start": 1413.0, "end": 1413.42, "word": " stupid,", "probability": 0.52685546875}, {"start": 1413.64, "end": 1413.76, "word": " he", "probability": 0.70068359375}, {"start": 1413.76, "end": 1413.88, "word": " wants", "probability": 0.54150390625}, {"start": 1413.88, "end": 1413.92, "word": " to", "probability": 0.9599609375}, {"start": 1413.92, "end": 1414.22, "word": " think", "probability": 0.67333984375}, {"start": 1414.22, "end": 1414.48, "word": " about", "probability": 0.2315673828125}, {"start": 1414.48, "end": 1414.62, "word": " the", "probability": 0.43115234375}, {"start": 1414.62, "end": 1414.94, "word": " message", "probability": 0.78955078125}, {"start": 1414.94, "end": 1415.12, "word": " that", "probability": 0.368896484375}, {"start": 1415.12, "end": 1415.34, "word": " came,", "probability": 0.328369140625}, {"start": 1415.84, "end": 1416.16, "word": " he", "probability": 0.478515625}, {"start": 1416.16, "end": 1416.26, "word": " wants", "probability": 0.6044921875}, {"start": 1416.26, "end": 1416.38, "word": " to", "probability": 0.93798828125}, {"start": 1416.38, "end": 1416.72, "word": " send", "probability": 0.693359375}, {"start": 1416.72, "end": 1416.84, "word": " it", "probability": 0.8701171875}, {"start": 1416.84, "end": 1416.94, "word": " to", "probability": 0.86767578125}, {"start": 1416.94, "end": 1417.16, "word": " B,", "probability": 0.759765625}, {"start": 1417.3, "end": 1417.46, "word": " C", "probability": 0.71435546875}, {"start": 1417.46, "end": 1417.6, "word": " and", "probability": 0.464111328125}, {"start": 1417.6, "end": 1417.72, "word": " D", "probability": 0.99462890625}, {"start": 1417.72, "end": 1417.86, "word": " without", "probability": 0.376708984375}, {"start": 1417.86, "end": 1418.14, "word": " returning", "probability": 0.465087890625}, {"start": 1418.14, "end": 1418.36, "word": " it", "probability": 0.56884765625}, {"start": 1418.36, "end": 1418.42, "word": " to", "probability": 0.92578125}, {"start": 1418.42, "end": 1418.64, "word": " A,", "probability": 0.90966796875}, {"start": 1418.82, "end": 1419.68, "word": " right", "probability": 0.43603515625}, {"start": 1419.68, "end": 1419.9, "word": " or", "probability": 0.7880859375}, {"start": 1419.9, "end": 1419.94, "word": " wrong?", "probability": 0.50732421875}, {"start": 1420.22, "end": 1420.6, "word": " So", "probability": 0.81396484375}, {"start": 1420.6, "end": 1420.76, "word": " when", "probability": 0.83056640625}, {"start": 1420.76, "end": 1421.24, "word": " the", "probability": 0.66796875}, {"start": 1421.24, "end": 1421.42, "word": " message", "probability": 0.9013671875}, {"start": 1421.42, "end": 1421.42, "word": " came", "probability": 0.76220703125}, {"start": 1421.42, "end": 1421.7, "word": " to", "probability": 0.35888671875}, {"start": 1421.7, "end": 1421.7, "word": " me,", "probability": 0.82958984375}, {"start": 1422.0, "end": 1422.18, "word": " I", "probability": 0.9736328125}, {"start": 1422.18, "end": 1422.34, "word": " said", "probability": 0.4208984375}, {"start": 1422.34, "end": 1422.52, "word": " to", "probability": 0.486328125}, {"start": 1422.52, "end": 1422.52, "word": " him,", "probability": 0.8291015625}, {"start": 1422.58, "end": 1422.68, "word": " by", "probability": 0.29150390625}, {"start": 1422.68, "end": 1422.86, "word": " God,", "probability": 0.474609375}, {"start": 1423.12, "end": 1423.24, "word": " let's", "probability": 0.7626953125}, {"start": 1423.24, "end": 1423.42, "word": " do", "probability": 0.217529296875}, {"start": 1423.42, "end": 1424.2, "word": " subscribers,", "probability": 0.465087890625}, {"start": 1425.82, "end": 1426.08, "word": " okay?", "probability": 0.45458984375}, {"start": 1426.26, "end": 1426.46, "word": " So", "probability": 0.371337890625}, {"start": 1426.46, "end": 1426.84, "word": " for", "probability": 0.47705078125}, {"start": 1426.84, "end": 1427.06, "word": " each", "probability": 0.5849609375}, {"start": 1427.06, "end": 1427.68, "word": " subscriber,", "probability": 0.912109375}, {"start": 1427.76, "end": 1427.9, "word": " if", "probability": 0.9130859375}, {"start": 1427.9, "end": 1428.04, "word": " it", "probability": 0.61181640625}, {"start": 1428.04, "end": 1428.44, "word": " is", "probability": 0.2083740234375}, {"start": 1428.44, "end": 1428.56, "word": " not", "probability": 0.93701171875}, {"start": 1428.56, "end": 1429.64, "word": " the", "probability": 0.6708984375}, {"start": 1429.64, "end": 1430.06, "word": " sender,", "probability": 0.894287109375}, {"start": 1431.06, "end": 1431.32, "word": " what", "probability": 0.4921875}, {"start": 1431.32, "end": 1431.38, "word": " should", "probability": 0.48779296875}, {"start": 1431.38, "end": 1431.4, "word": " I", "probability": 0.56201171875}, {"start": 1431.4, "end": 1431.64, "word": " do?", "probability": 0.9638671875}, {"start": 1431.76, "end": 1431.88, "word": " I", "probability": 0.54443359375}, {"start": 1431.88, "end": 1431.94, "word": " should", "probability": 0.61376953125}, {"start": 1431.94, "end": 1431.96, "word": " send", "probability": 0.26708984375}, {"start": 1431.96, "end": 1432.08, "word": " a", "probability": 0.7685546875}, {"start": 1432.08, "end": 1432.44, "word": " message", "probability": 0.72314453125}, {"start": 1432.44, "end": 1433.38, "word": " received,", "probability": 0.488525390625}, {"start": 1433.82, "end": 1434.14, "word": " in", "probability": 0.256591796875}, {"start": 1434.14, "end": 1434.18, "word": " order", "probability": 0.92724609375}, {"start": 1434.18, "end": 1434.32, "word": " to", "probability": 0.677734375}, {"start": 1434.32, "end": 1434.54, "word": " send", "probability": 0.77197265625}, {"start": 1434.54, "end": 1434.7, "word": " to", "probability": 0.57373046875}, {"start": 1434.7, "end": 1435.06, "word": " each", "probability": 0.63232421875}, {"start": 1435.06, "end": 1435.48, "word": " number", "probability": 0.26416015625}, {"start": 1435.48, "end": 1436.68, "word": " that", "probability": 0.669921875}, {"start": 1436.68, "end": 1436.88, "word": " sent", "probability": 0.78515625}, {"start": 1436.88, "end": 1437.04, "word": " the", "probability": 0.9033203125}, {"start": 1437.04, "end": 1437.34, "word": " message", "probability": 0.92724609375}], "temperature": 1.0}, {"id": 58, "seek": 145939, "start": 1439.23, "end": 1459.39, "text": "This way the bus is ready, ready how to register in it, ready how to cancel the registration and ready how to publish a message to it But we haven't used the bus yet, where are we going to use it? In the mail, again I went to the mail", "tokens": [5723, 636, 264, 1255, 307, 1919, 11, 1919, 577, 281, 7280, 294, 309, 11, 1919, 577, 281, 10373, 264, 16847, 293, 1919, 577, 281, 11374, 257, 3636, 281, 309, 583, 321, 2378, 380, 1143, 264, 1255, 1939, 11, 689, 366, 321, 516, 281, 764, 309, 30, 682, 264, 10071, 11, 797, 286, 1437, 281, 264, 10071], "avg_logprob": -0.518914448587518, "compression_ratio": 1.5810810810810811, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 1439.23, "end": 1439.75, "word": "This", "probability": 0.116943359375}, {"start": 1439.75, "end": 1439.81, "word": " way", "probability": 0.6708984375}, {"start": 1439.81, "end": 1440.09, "word": " the", "probability": 0.30908203125}, {"start": 1440.09, "end": 1440.35, "word": " bus", "probability": 0.845703125}, {"start": 1440.35, "end": 1440.57, "word": " is", "probability": 0.89404296875}, {"start": 1440.57, "end": 1440.91, "word": " ready,", "probability": 0.75146484375}, {"start": 1441.41, "end": 1442.15, "word": " ready", "probability": 0.400390625}, {"start": 1442.15, "end": 1442.35, "word": " how", "probability": 0.4658203125}, {"start": 1442.35, "end": 1442.51, "word": " to", "probability": 0.7607421875}, {"start": 1442.51, "end": 1442.89, "word": " register", "probability": 0.50634765625}, {"start": 1442.89, "end": 1443.09, "word": " in", "probability": 0.483154296875}, {"start": 1443.09, "end": 1443.25, "word": " it,", "probability": 0.89892578125}, {"start": 1444.43, "end": 1444.71, "word": " ready", "probability": 0.72998046875}, {"start": 1444.71, "end": 1444.95, "word": " how", "probability": 0.8828125}, {"start": 1444.95, "end": 1445.07, "word": " to", "probability": 0.95751953125}, {"start": 1445.07, "end": 1445.23, "word": " cancel", "probability": 0.1220703125}, {"start": 1445.23, "end": 1445.37, "word": " the", "probability": 0.64697265625}, {"start": 1445.37, "end": 1445.71, "word": " registration", "probability": 0.39990234375}, {"start": 1445.71, "end": 1446.69, "word": " and", "probability": 0.5751953125}, {"start": 1446.69, "end": 1446.99, "word": " ready", "probability": 0.794921875}, {"start": 1446.99, "end": 1447.25, "word": " how", "probability": 0.837890625}, {"start": 1447.25, "end": 1448.91, "word": " to", "probability": 0.81640625}, {"start": 1448.91, "end": 1449.45, "word": " publish", "probability": 0.77392578125}, {"start": 1449.45, "end": 1449.91, "word": " a", "probability": 0.275634765625}, {"start": 1449.91, "end": 1450.43, "word": " message", "probability": 0.64794921875}, {"start": 1450.43, "end": 1451.03, "word": " to", "probability": 0.356689453125}, {"start": 1451.03, "end": 1451.03, "word": " it", "probability": 0.693359375}, {"start": 1451.03, "end": 1452.17, "word": " But", "probability": 0.2186279296875}, {"start": 1452.17, "end": 1453.15, "word": " we", "probability": 0.75927734375}, {"start": 1453.15, "end": 1453.29, "word": " haven't", "probability": 0.654541015625}, {"start": 1453.29, "end": 1453.71, "word": " used", "probability": 0.87890625}, {"start": 1453.71, "end": 1455.17, "word": " the", "probability": 0.8759765625}, {"start": 1455.17, "end": 1455.41, "word": " bus", "probability": 0.9189453125}, {"start": 1455.41, "end": 1455.81, "word": " yet,", "probability": 0.8828125}, {"start": 1456.41, "end": 1456.59, "word": " where", "probability": 0.83251953125}, {"start": 1456.59, "end": 1456.71, "word": " are", "probability": 0.3583984375}, {"start": 1456.71, "end": 1456.75, "word": " we", "probability": 0.94775390625}, {"start": 1456.75, "end": 1456.75, "word": " going", "probability": 0.888671875}, {"start": 1456.75, "end": 1456.77, "word": " to", "probability": 0.9697265625}, {"start": 1456.77, "end": 1457.09, "word": " use", "probability": 0.88330078125}, {"start": 1457.09, "end": 1457.31, "word": " it?", "probability": 0.93359375}, {"start": 1457.71, "end": 1457.91, "word": " In", "probability": 0.556640625}, {"start": 1457.91, "end": 1457.99, "word": " the", "probability": 0.8291015625}, {"start": 1457.99, "end": 1458.11, "word": " mail,", "probability": 0.382568359375}, {"start": 1458.39, "end": 1458.65, "word": " again", "probability": 0.337890625}, {"start": 1458.65, "end": 1458.79, "word": " I", "probability": 0.6982421875}, {"start": 1458.79, "end": 1458.99, "word": " went", "probability": 0.1170654296875}, {"start": 1458.99, "end": 1459.13, "word": " to", "probability": 0.82958984375}, {"start": 1459.13, "end": 1459.25, "word": " the", "probability": 0.84912109375}, {"start": 1459.25, "end": 1459.39, "word": " mail", "probability": 0.8818359375}], "temperature": 1.0}, {"id": 59, "seek": 148987, "start": 1460.55, "end": 1489.87, "text": " These guys want to send data to each other And I don't know who wants to send data to whom The first step is that these guys have to register in the bus How do they register in the bus? They have to go to the data bus This is not a singleton server And I say get instance And I say here subscribe And I want to register A, B, C and D", "tokens": [1981, 1074, 528, 281, 2845, 1412, 281, 1184, 661, 400, 286, 500, 380, 458, 567, 2738, 281, 2845, 1412, 281, 7101, 440, 700, 1823, 307, 300, 613, 1074, 362, 281, 7280, 294, 264, 1255, 1012, 360, 436, 7280, 294, 264, 1255, 30, 814, 362, 281, 352, 281, 264, 1412, 1255, 639, 307, 406, 257, 1522, 14806, 7154, 400, 286, 584, 483, 5197, 400, 286, 584, 510, 3022, 400, 286, 528, 281, 7280, 316, 11, 363, 11, 383, 293, 413], "avg_logprob": -0.5144531533122063, "compression_ratio": 1.786096256684492, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 1460.55, "end": 1460.99, "word": " These", "probability": 0.114501953125}, {"start": 1460.99, "end": 1461.43, "word": " guys", "probability": 0.487548828125}, {"start": 1461.43, "end": 1462.47, "word": " want", "probability": 0.509765625}, {"start": 1462.47, "end": 1462.67, "word": " to", "probability": 0.87744140625}, {"start": 1462.67, "end": 1462.77, "word": " send", "probability": 0.6982421875}, {"start": 1462.77, "end": 1463.33, "word": " data", "probability": 0.1717529296875}, {"start": 1463.33, "end": 1463.63, "word": " to", "probability": 0.70751953125}, {"start": 1463.63, "end": 1463.77, "word": " each", "probability": 0.62548828125}, {"start": 1463.77, "end": 1463.99, "word": " other", "probability": 0.83154296875}, {"start": 1463.99, "end": 1464.99, "word": " And", "probability": 0.11932373046875}, {"start": 1464.99, "end": 1465.89, "word": " I", "probability": 0.8251953125}, {"start": 1465.89, "end": 1465.99, "word": " don't", "probability": 0.896484375}, {"start": 1465.99, "end": 1466.23, "word": " know", "probability": 0.85302734375}, {"start": 1466.23, "end": 1466.41, "word": " who", "probability": 0.55078125}, {"start": 1466.41, "end": 1466.55, "word": " wants", "probability": 0.33544921875}, {"start": 1466.55, "end": 1466.57, "word": " to", "probability": 0.9267578125}, {"start": 1466.57, "end": 1466.73, "word": " send", "probability": 0.83154296875}, {"start": 1466.73, "end": 1466.89, "word": " data", "probability": 0.38818359375}, {"start": 1466.89, "end": 1466.93, "word": " to", "probability": 0.91259765625}, {"start": 1466.93, "end": 1467.07, "word": " whom", "probability": 0.8466796875}, {"start": 1467.07, "end": 1467.67, "word": " The", "probability": 0.455322265625}, {"start": 1467.67, "end": 1467.85, "word": " first", "probability": 0.87060546875}, {"start": 1467.85, "end": 1468.11, "word": " step", "probability": 0.68798828125}, {"start": 1468.11, "end": 1468.75, "word": " is", "probability": 0.379150390625}, {"start": 1468.75, "end": 1469.03, "word": " that", "probability": 0.52197265625}, {"start": 1469.03, "end": 1469.35, "word": " these", "probability": 0.66455078125}, {"start": 1469.35, "end": 1469.83, "word": " guys", "probability": 0.89306640625}, {"start": 1469.83, "end": 1470.15, "word": " have", "probability": 0.21044921875}, {"start": 1470.15, "end": 1470.79, "word": " to", "probability": 0.95458984375}, {"start": 1470.79, "end": 1471.03, "word": " register", "probability": 0.634765625}, {"start": 1471.03, "end": 1471.87, "word": " in", "probability": 0.463623046875}, {"start": 1471.87, "end": 1472.01, "word": " the", "probability": 0.62939453125}, {"start": 1472.01, "end": 1472.23, "word": " bus", "probability": 0.67724609375}, {"start": 1472.23, "end": 1472.81, "word": " How", "probability": 0.7080078125}, {"start": 1472.81, "end": 1472.87, "word": " do", "probability": 0.541015625}, {"start": 1472.87, "end": 1472.95, "word": " they", "probability": 0.7822265625}, {"start": 1472.95, "end": 1473.19, "word": " register", "probability": 0.8701171875}, {"start": 1473.19, "end": 1473.37, "word": " in", "probability": 0.81591796875}, {"start": 1473.37, "end": 1473.45, "word": " the", "probability": 0.84814453125}, {"start": 1473.45, "end": 1473.71, "word": " bus?", "probability": 0.92822265625}, {"start": 1474.03, "end": 1474.25, "word": " They", "probability": 0.7314453125}, {"start": 1474.25, "end": 1474.35, "word": " have", "probability": 0.57080078125}, {"start": 1474.35, "end": 1474.43, "word": " to", "probability": 0.96923828125}, {"start": 1474.43, "end": 1474.63, "word": " go", "probability": 0.8759765625}, {"start": 1474.63, "end": 1474.79, "word": " to", "probability": 0.95458984375}, {"start": 1474.79, "end": 1474.97, "word": " the", "probability": 0.60107421875}, {"start": 1474.97, "end": 1475.11, "word": " data", "probability": 0.3310546875}, {"start": 1475.11, "end": 1475.57, "word": " bus", "probability": 0.9521484375}, {"start": 1475.57, "end": 1476.37, "word": " This", "probability": 0.2325439453125}, {"start": 1476.37, "end": 1476.39, "word": " is", "probability": 0.841796875}, {"start": 1476.39, "end": 1476.39, "word": " not", "probability": 0.90771484375}, {"start": 1476.39, "end": 1476.59, "word": " a", "probability": 0.70458984375}, {"start": 1476.59, "end": 1476.89, "word": " singleton", "probability": 0.7216796875}, {"start": 1476.89, "end": 1477.23, "word": " server", "probability": 0.06817626953125}, {"start": 1477.23, "end": 1478.27, "word": " And", "probability": 0.274658203125}, {"start": 1478.27, "end": 1478.37, "word": " I", "probability": 0.49609375}, {"start": 1478.37, "end": 1478.53, "word": " say", "probability": 0.306884765625}, {"start": 1478.53, "end": 1478.87, "word": " get", "probability": 0.61962890625}, {"start": 1478.87, "end": 1479.61, "word": " instance", "probability": 0.92578125}, {"start": 1479.61, "end": 1480.49, "word": " And", "probability": 0.42626953125}, {"start": 1480.49, "end": 1480.59, "word": " I", "probability": 0.49951171875}, {"start": 1480.59, "end": 1480.79, "word": " say", "probability": 0.6962890625}, {"start": 1480.79, "end": 1480.99, "word": " here", "probability": 0.60986328125}, {"start": 1480.99, "end": 1483.33, "word": " subscribe", "probability": 0.29345703125}, {"start": 1483.33, "end": 1484.21, "word": " And", "probability": 0.578125}, {"start": 1484.21, "end": 1484.37, "word": " I", "probability": 0.8037109375}, {"start": 1484.37, "end": 1484.45, "word": " want", "probability": 0.51123046875}, {"start": 1484.45, "end": 1484.55, "word": " to", "probability": 0.96240234375}, {"start": 1484.55, "end": 1484.71, "word": " register", "probability": 0.8623046875}, {"start": 1484.71, "end": 1485.19, "word": " A,", "probability": 0.49609375}, {"start": 1487.19, "end": 1487.59, "word": " B,", "probability": 0.68212890625}, {"start": 1489.27, "end": 1489.47, "word": " C", "probability": 0.8466796875}, {"start": 1489.47, "end": 1489.67, "word": " and", "probability": 0.64306640625}, {"start": 1489.67, "end": 1489.87, "word": " D", "probability": 0.99755859375}], "temperature": 1.0}, {"id": 60, "seek": 150927, "start": 1492.59, "end": 1509.27, "text": "This is A and B and C and D. This is a step that we have to do. Everyone has to register and connect with the bus. Of course, there will be errors because they will say that they want to register and you have to come as a subscriber. So I will go to each one and tell him to implement", "tokens": [5723, 307, 316, 293, 363, 293, 383, 293, 413, 13, 639, 307, 257, 1823, 300, 321, 362, 281, 360, 13, 5198, 575, 281, 7280, 293, 1745, 365, 264, 1255, 13, 2720, 1164, 11, 456, 486, 312, 13603, 570, 436, 486, 584, 300, 436, 528, 281, 7280, 293, 291, 362, 281, 808, 382, 257, 26122, 13, 407, 286, 486, 352, 281, 1184, 472, 293, 980, 796, 281, 4445], "avg_logprob": -0.529411792755127, "compression_ratio": 1.5777777777777777, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 1492.59, "end": 1492.87, "word": "This", "probability": 0.146728515625}, {"start": 1492.87, "end": 1492.89, "word": " is", "probability": 0.763671875}, {"start": 1492.89, "end": 1493.11, "word": " A", "probability": 0.64306640625}, {"start": 1493.11, "end": 1493.67, "word": " and", "probability": 0.41162109375}, {"start": 1493.67, "end": 1493.97, "word": " B", "probability": 0.7607421875}, {"start": 1493.97, "end": 1494.77, "word": " and", "probability": 0.775390625}, {"start": 1494.77, "end": 1495.03, "word": " C", "probability": 0.91259765625}, {"start": 1495.03, "end": 1495.23, "word": " and", "probability": 0.93994140625}, {"start": 1495.23, "end": 1495.35, "word": " D.", "probability": 0.9951171875}, {"start": 1495.43, "end": 1495.55, "word": " This", "probability": 0.5888671875}, {"start": 1495.55, "end": 1495.57, "word": " is", "probability": 0.63720703125}, {"start": 1495.57, "end": 1495.63, "word": " a", "probability": 0.63427734375}, {"start": 1495.63, "end": 1495.77, "word": " step", "probability": 0.68115234375}, {"start": 1495.77, "end": 1495.91, "word": " that", "probability": 0.44287109375}, {"start": 1495.91, "end": 1495.95, "word": " we", "probability": 0.53662109375}, {"start": 1495.95, "end": 1495.97, "word": " have", "probability": 0.2041015625}, {"start": 1495.97, "end": 1496.13, "word": " to", "probability": 0.97021484375}, {"start": 1496.13, "end": 1496.33, "word": " do.", "probability": 0.378173828125}, {"start": 1496.45, "end": 1496.81, "word": " Everyone", "probability": 0.58251953125}, {"start": 1496.81, "end": 1496.99, "word": " has", "probability": 0.55419921875}, {"start": 1496.99, "end": 1497.13, "word": " to", "probability": 0.96826171875}, {"start": 1497.13, "end": 1497.51, "word": " register", "probability": 0.5732421875}, {"start": 1497.51, "end": 1498.21, "word": " and", "probability": 0.44677734375}, {"start": 1498.21, "end": 1498.41, "word": " connect", "probability": 0.62548828125}, {"start": 1498.41, "end": 1498.63, "word": " with", "probability": 0.60205078125}, {"start": 1498.63, "end": 1498.75, "word": " the", "probability": 0.8125}, {"start": 1498.75, "end": 1498.95, "word": " bus.", "probability": 0.841796875}, {"start": 1499.51, "end": 1499.63, "word": " Of", "probability": 0.755859375}, {"start": 1499.63, "end": 1499.71, "word": " course,", "probability": 0.9482421875}, {"start": 1499.77, "end": 1499.85, "word": " there", "probability": 0.353515625}, {"start": 1499.85, "end": 1499.85, "word": " will", "probability": 0.66552734375}, {"start": 1499.85, "end": 1499.99, "word": " be", "probability": 0.87451171875}, {"start": 1499.99, "end": 1500.45, "word": " errors", "probability": 0.783203125}, {"start": 1500.45, "end": 1501.53, "word": " because", "probability": 0.425537109375}, {"start": 1501.53, "end": 1501.85, "word": " they", "probability": 0.38623046875}, {"start": 1501.85, "end": 1502.49, "word": " will", "probability": 0.5498046875}, {"start": 1502.49, "end": 1502.67, "word": " say", "probability": 0.38134765625}, {"start": 1502.67, "end": 1502.87, "word": " that", "probability": 0.5048828125}, {"start": 1502.87, "end": 1503.17, "word": " they", "probability": 0.43408203125}, {"start": 1503.17, "end": 1503.41, "word": " want", "probability": 0.41943359375}, {"start": 1503.41, "end": 1503.57, "word": " to", "probability": 0.95947265625}, {"start": 1503.57, "end": 1503.81, "word": " register", "probability": 0.87109375}, {"start": 1503.81, "end": 1504.45, "word": " and", "probability": 0.412353515625}, {"start": 1504.45, "end": 1504.53, "word": " you", "probability": 0.380126953125}, {"start": 1504.53, "end": 1504.69, "word": " have", "probability": 0.68115234375}, {"start": 1504.69, "end": 1504.87, "word": " to", "probability": 0.96875}, {"start": 1504.87, "end": 1505.03, "word": " come", "probability": 0.3193359375}, {"start": 1505.03, "end": 1505.29, "word": " as", "probability": 0.58837890625}, {"start": 1505.29, "end": 1506.01, "word": " a", "probability": 0.5634765625}, {"start": 1506.01, "end": 1506.81, "word": " subscriber.", "probability": 0.873046875}, {"start": 1507.29, "end": 1507.55, "word": " So", "probability": 0.712890625}, {"start": 1507.55, "end": 1507.67, "word": " I", "probability": 0.5859375}, {"start": 1507.67, "end": 1507.73, "word": " will", "probability": 0.3544921875}, {"start": 1507.73, "end": 1507.85, "word": " go", "probability": 0.77294921875}, {"start": 1507.85, "end": 1508.01, "word": " to", "probability": 0.8974609375}, {"start": 1508.01, "end": 1508.19, "word": " each", "probability": 0.6904296875}, {"start": 1508.19, "end": 1508.45, "word": " one", "probability": 0.486083984375}, {"start": 1508.45, "end": 1508.59, "word": " and", "probability": 0.7431640625}, {"start": 1508.59, "end": 1508.73, "word": " tell", "probability": 0.37548828125}, {"start": 1508.73, "end": 1508.85, "word": " him", "probability": 0.564453125}, {"start": 1508.85, "end": 1508.89, "word": " to", "probability": 0.70556640625}, {"start": 1508.89, "end": 1509.27, "word": " implement", "probability": 0.80322265625}], "temperature": 1.0}, {"id": 61, "seek": 153986, "start": 1511.74, "end": 1539.86, "text": " subscriber as soon as you do implement for subscriber it will tell you to do import and do what? the method which name is what? message received okay? notice that this A receives a message from a kind of bus message okay? did you find here the A means what I want to do? I want to print a message I want to tell him A received", "tokens": [26122, 382, 2321, 382, 291, 360, 4445, 337, 26122, 309, 486, 980, 291, 281, 360, 974, 293, 360, 437, 30, 264, 3170, 597, 1315, 307, 437, 30, 3636, 4613, 1392, 30, 3449, 300, 341, 316, 20717, 257, 3636, 490, 257, 733, 295, 1255, 3636, 1392, 30, 630, 291, 915, 510, 264, 316, 1355, 437, 286, 528, 281, 360, 30, 286, 528, 281, 4482, 257, 3636, 286, 528, 281, 980, 796, 316, 4613], "avg_logprob": -0.5406677886231305, "compression_ratio": 1.8370786516853932, "no_speech_prob": 1.71661376953125e-05, "words": [{"start": 1511.74, "end": 1512.22, "word": " subscriber", "probability": 0.1546630859375}, {"start": 1512.22, "end": 1512.7, "word": " as", "probability": 0.2083740234375}, {"start": 1512.7, "end": 1512.92, "word": " soon", "probability": 0.88671875}, {"start": 1512.92, "end": 1513.02, "word": " as", "probability": 0.96533203125}, {"start": 1513.02, "end": 1513.22, "word": " you", "probability": 0.94189453125}, {"start": 1513.22, "end": 1513.4, "word": " do", "probability": 0.2247314453125}, {"start": 1513.4, "end": 1513.92, "word": " implement", "probability": 0.392578125}, {"start": 1513.92, "end": 1514.08, "word": " for", "probability": 0.59375}, {"start": 1514.08, "end": 1514.68, "word": " subscriber", "probability": 0.78515625}, {"start": 1514.68, "end": 1515.48, "word": " it", "probability": 0.65380859375}, {"start": 1515.48, "end": 1515.54, "word": " will", "probability": 0.74169921875}, {"start": 1515.54, "end": 1515.76, "word": " tell", "probability": 0.482177734375}, {"start": 1515.76, "end": 1516.36, "word": " you", "probability": 0.9453125}, {"start": 1516.36, "end": 1516.64, "word": " to", "probability": 0.484130859375}, {"start": 1516.64, "end": 1516.84, "word": " do", "probability": 0.5048828125}, {"start": 1516.84, "end": 1517.48, "word": " import", "probability": 0.830078125}, {"start": 1517.48, "end": 1518.56, "word": " and", "probability": 0.81396484375}, {"start": 1518.56, "end": 1518.86, "word": " do", "probability": 0.626953125}, {"start": 1518.86, "end": 1519.16, "word": " what?", "probability": 0.6123046875}, {"start": 1519.22, "end": 1519.32, "word": " the", "probability": 0.41943359375}, {"start": 1519.32, "end": 1519.68, "word": " method", "probability": 0.95263671875}, {"start": 1519.68, "end": 1520.14, "word": " which", "probability": 0.2003173828125}, {"start": 1520.14, "end": 1520.44, "word": " name", "probability": 0.50634765625}, {"start": 1520.44, "end": 1520.8, "word": " is", "probability": 0.837890625}, {"start": 1520.8, "end": 1521.04, "word": " what?", "probability": 0.587890625}, {"start": 1521.14, "end": 1521.52, "word": " message", "probability": 0.876953125}, {"start": 1521.52, "end": 1523.12, "word": " received", "probability": 0.57373046875}, {"start": 1523.12, "end": 1525.5, "word": " okay?", "probability": 0.2374267578125}, {"start": 1525.82, "end": 1526.3, "word": " notice", "probability": 0.505859375}, {"start": 1526.3, "end": 1526.5, "word": " that", "probability": 0.468017578125}, {"start": 1526.5, "end": 1526.54, "word": " this", "probability": 0.58642578125}, {"start": 1526.54, "end": 1526.86, "word": " A", "probability": 0.360107421875}, {"start": 1526.86, "end": 1527.38, "word": " receives", "probability": 0.472412109375}, {"start": 1527.38, "end": 1527.9, "word": " a", "probability": 0.79052734375}, {"start": 1527.9, "end": 1527.9, "word": " message", "probability": 0.82666015625}, {"start": 1527.9, "end": 1528.02, "word": " from", "probability": 0.423828125}, {"start": 1528.02, "end": 1528.38, "word": " a", "probability": 0.366943359375}, {"start": 1528.38, "end": 1528.38, "word": " kind", "probability": 0.2763671875}, {"start": 1528.38, "end": 1529.06, "word": " of", "probability": 0.92529296875}, {"start": 1529.06, "end": 1529.24, "word": " bus", "probability": 0.457275390625}, {"start": 1529.24, "end": 1529.64, "word": " message", "probability": 0.90283203125}, {"start": 1529.64, "end": 1530.54, "word": " okay?", "probability": 0.7587890625}, {"start": 1531.16, "end": 1531.36, "word": " did", "probability": 0.262939453125}, {"start": 1531.36, "end": 1531.36, "word": " you", "probability": 0.9306640625}, {"start": 1531.36, "end": 1531.54, "word": " find", "probability": 0.6533203125}, {"start": 1531.54, "end": 1531.78, "word": " here", "probability": 0.59619140625}, {"start": 1531.78, "end": 1531.9, "word": " the", "probability": 0.408203125}, {"start": 1531.9, "end": 1532.16, "word": " A", "probability": 0.8564453125}, {"start": 1532.16, "end": 1532.48, "word": " means", "probability": 0.2088623046875}, {"start": 1532.48, "end": 1532.66, "word": " what", "probability": 0.72900390625}, {"start": 1532.66, "end": 1532.84, "word": " I", "probability": 0.49560546875}, {"start": 1532.84, "end": 1533.02, "word": " want", "probability": 0.724609375}, {"start": 1533.02, "end": 1533.08, "word": " to", "probability": 0.962890625}, {"start": 1533.08, "end": 1533.22, "word": " do?", "probability": 0.9580078125}, {"start": 1533.26, "end": 1533.36, "word": " I", "probability": 0.8564453125}, {"start": 1533.36, "end": 1533.42, "word": " want", "probability": 0.69580078125}, {"start": 1533.42, "end": 1533.48, "word": " to", "probability": 0.9677734375}, {"start": 1533.48, "end": 1533.64, "word": " print", "probability": 0.91748046875}, {"start": 1533.64, "end": 1533.8, "word": " a", "probability": 0.68408203125}, {"start": 1533.8, "end": 1534.22, "word": " message", "probability": 0.6259765625}, {"start": 1534.22, "end": 1535.06, "word": " I", "probability": 0.57763671875}, {"start": 1535.06, "end": 1535.18, "word": " want", "probability": 0.7685546875}, {"start": 1535.18, "end": 1535.26, "word": " to", "probability": 0.96826171875}, {"start": 1535.26, "end": 1535.42, "word": " tell", "probability": 0.3798828125}, {"start": 1535.42, "end": 1535.82, "word": " him", "probability": 0.642578125}, {"start": 1535.82, "end": 1537.22, "word": " A", "probability": 0.5576171875}, {"start": 1537.22, "end": 1539.86, "word": " received", "probability": 0.7353515625}], "temperature": 1.0}, {"id": 62, "seek": 156978, "start": 1543.72, "end": 1569.78, "text": " message.getdata I want to type the message that came to me and I want to tell him from I want to determine where the message came from because the message does not have a sender I want to tell him message.get sender I want to see the type of class get class get name in order to know what type of sender it is the same thing I did in A", "tokens": [3636, 13, 847, 67, 3274, 286, 528, 281, 2010, 264, 3636, 300, 1361, 281, 385, 293, 286, 528, 281, 980, 796, 490, 286, 528, 281, 6997, 689, 264, 3636, 1361, 490, 570, 264, 3636, 775, 406, 362, 257, 2845, 260, 286, 528, 281, 980, 796, 3636, 13, 847, 2845, 260, 286, 528, 281, 536, 264, 2010, 295, 1508, 483, 1508, 483, 1315, 294, 1668, 281, 458, 437, 2010, 295, 2845, 260, 309, 307, 264, 912, 551, 286, 630, 294, 316], "avg_logprob": -0.4957561728395062, "compression_ratio": 2.036363636363636, "no_speech_prob": 9.357929229736328e-06, "words": [{"start": 1543.7199999999998, "end": 1544.1599999999999, "word": " message", "probability": 0.1837158203125}, {"start": 1544.1599999999999, "end": 1544.6, "word": ".getdata", "probability": 0.79736328125}, {"start": 1544.6, "end": 1546.16, "word": " I", "probability": 0.1864013671875}, {"start": 1546.16, "end": 1546.22, "word": " want", "probability": 0.275634765625}, {"start": 1546.22, "end": 1546.24, "word": " to", "probability": 0.9306640625}, {"start": 1546.24, "end": 1546.48, "word": " type", "probability": 0.20166015625}, {"start": 1546.48, "end": 1546.84, "word": " the", "probability": 0.5712890625}, {"start": 1546.84, "end": 1547.14, "word": " message", "probability": 0.69970703125}, {"start": 1547.14, "end": 1547.24, "word": " that", "probability": 0.59033203125}, {"start": 1547.24, "end": 1547.42, "word": " came", "probability": 0.342041015625}, {"start": 1547.42, "end": 1547.6, "word": " to", "probability": 0.7724609375}, {"start": 1547.6, "end": 1547.76, "word": " me", "probability": 0.939453125}, {"start": 1547.76, "end": 1548.4, "word": " and", "probability": 0.35888671875}, {"start": 1548.4, "end": 1549.1, "word": " I", "probability": 0.6884765625}, {"start": 1549.1, "end": 1549.18, "word": " want", "probability": 0.7255859375}, {"start": 1549.18, "end": 1549.26, "word": " to", "probability": 0.95654296875}, {"start": 1549.26, "end": 1549.38, "word": " tell", "probability": 0.307373046875}, {"start": 1549.38, "end": 1549.5, "word": " him", "probability": 0.497314453125}, {"start": 1549.5, "end": 1549.72, "word": " from", "probability": 0.7412109375}, {"start": 1549.72, "end": 1549.96, "word": " I", "probability": 0.326416015625}, {"start": 1549.96, "end": 1550.1, "word": " want", "probability": 0.82080078125}, {"start": 1550.1, "end": 1550.18, "word": " to", "probability": 0.9638671875}, {"start": 1550.18, "end": 1550.38, "word": " determine", "probability": 0.361083984375}, {"start": 1550.38, "end": 1550.68, "word": " where", "probability": 0.642578125}, {"start": 1550.68, "end": 1552.02, "word": " the", "probability": 0.69189453125}, {"start": 1552.02, "end": 1552.44, "word": " message", "probability": 0.8740234375}, {"start": 1552.44, "end": 1552.44, "word": " came", "probability": 0.84765625}, {"start": 1552.44, "end": 1552.62, "word": " from", "probability": 0.87451171875}, {"start": 1552.62, "end": 1553.06, "word": " because", "probability": 0.15234375}, {"start": 1553.06, "end": 1553.22, "word": " the", "probability": 0.76171875}, {"start": 1553.22, "end": 1553.48, "word": " message", "probability": 0.84423828125}, {"start": 1553.48, "end": 1553.64, "word": " does", "probability": 0.611328125}, {"start": 1553.64, "end": 1553.66, "word": " not", "probability": 0.93505859375}, {"start": 1553.66, "end": 1553.92, "word": " have", "probability": 0.470458984375}, {"start": 1553.92, "end": 1554.28, "word": " a", "probability": 0.45947265625}, {"start": 1554.28, "end": 1554.64, "word": " sender", "probability": 0.64111328125}, {"start": 1554.64, "end": 1555.14, "word": " I", "probability": 0.5107421875}, {"start": 1555.14, "end": 1555.3, "word": " want", "probability": 0.791015625}, {"start": 1555.3, "end": 1555.38, "word": " to", "probability": 0.966796875}, {"start": 1555.38, "end": 1555.5, "word": " tell", "probability": 0.73974609375}, {"start": 1555.5, "end": 1555.58, "word": " him", "probability": 0.91064453125}, {"start": 1555.58, "end": 1556.08, "word": " message", "probability": 0.607421875}, {"start": 1556.08, "end": 1558.02, "word": ".get", "probability": 0.875}, {"start": 1558.02, "end": 1559.54, "word": " sender", "probability": 0.772705078125}, {"start": 1559.54, "end": 1559.8, "word": " I", "probability": 0.7919921875}, {"start": 1559.8, "end": 1559.94, "word": " want", "probability": 0.8466796875}, {"start": 1559.94, "end": 1560.0, "word": " to", "probability": 0.96630859375}, {"start": 1560.0, "end": 1560.14, "word": " see", "probability": 0.685546875}, {"start": 1560.14, "end": 1560.24, "word": " the", "probability": 0.7109375}, {"start": 1560.24, "end": 1560.32, "word": " type", "probability": 0.642578125}, {"start": 1560.32, "end": 1560.44, "word": " of", "probability": 0.96142578125}, {"start": 1560.44, "end": 1560.82, "word": " class", "probability": 0.85595703125}, {"start": 1560.82, "end": 1561.12, "word": " get", "probability": 0.669921875}, {"start": 1561.12, "end": 1561.66, "word": " class", "probability": 0.68115234375}, {"start": 1561.66, "end": 1561.9, "word": " get", "probability": 0.71435546875}, {"start": 1561.9, "end": 1562.18, "word": " name", "probability": 0.8837890625}, {"start": 1562.18, "end": 1563.14, "word": " in", "probability": 0.0882568359375}, {"start": 1563.14, "end": 1563.32, "word": " order", "probability": 0.9052734375}, {"start": 1563.32, "end": 1563.42, "word": " to", "probability": 0.96533203125}, {"start": 1563.42, "end": 1563.62, "word": " know", "probability": 0.75048828125}, {"start": 1563.62, "end": 1563.84, "word": " what", "probability": 0.5185546875}, {"start": 1563.84, "end": 1563.84, "word": " type", "probability": 0.6669921875}, {"start": 1563.84, "end": 1563.96, "word": " of", "probability": 0.6357421875}, {"start": 1563.96, "end": 1564.3, "word": " sender", "probability": 0.916748046875}, {"start": 1564.3, "end": 1564.84, "word": " it", "probability": 0.336181640625}, {"start": 1564.84, "end": 1565.3, "word": " is", "probability": 0.91796875}, {"start": 1565.3, "end": 1565.9, "word": " the", "probability": 0.05865478515625}, {"start": 1565.9, "end": 1568.9, "word": " same", "probability": 0.87451171875}, {"start": 1568.9, "end": 1569.04, "word": " thing", "probability": 0.55078125}, {"start": 1569.04, "end": 1569.08, "word": " I", "probability": 0.59912109375}, {"start": 1569.08, "end": 1569.32, "word": " did", "probability": 0.92626953125}, {"start": 1569.32, "end": 1569.52, "word": " in", "probability": 0.72509765625}, {"start": 1569.52, "end": 1569.78, "word": " A", "probability": 0.300537109375}], "temperature": 1.0}, {"id": 63, "seek": 159763, "start": 1571.87, "end": 1597.63, "text": "بدا تعمله في ال B و ال C و ال D بدا تعمله في ال B و ال C و ال D بدا تعمله في ال B و ال C و ال D بدا تعمله في ال B و ال D بدا تعمله في ال B و ال C و ال D", "tokens": [3555, 28259, 6055, 25957, 43761, 8978, 2423, 363, 4032, 2423, 383, 4032, 2423, 413, 4724, 28259, 6055, 25957, 43761, 8978, 2423, 363, 4032, 2423, 383, 4032, 2423, 413, 4724, 28259, 6055, 25957, 43761, 8978, 2423, 363, 4032, 2423, 383, 4032, 2423, 413, 4724, 28259, 6055, 25957, 43761, 8978, 2423, 363, 4032, 2423, 413, 4724, 28259, 6055, 25957, 43761, 8978, 2423, 363, 4032, 2423, 383, 4032, 2423, 413], "avg_logprob": -0.2727481525610475, "compression_ratio": 4.345454545454546, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1571.87, "end": 1572.13, "word": "بدا", "probability": 0.2804412841796875}, {"start": 1572.13, "end": 1572.53, "word": " تعمله", "probability": 0.7125651041666666}, {"start": 1572.53, "end": 1572.65, "word": " في", "probability": 0.73095703125}, {"start": 1572.65, "end": 1572.77, "word": " ال", "probability": 0.63525390625}, {"start": 1572.77, "end": 1572.85, "word": " B", "probability": 0.5068359375}, {"start": 1572.85, "end": 1573.09, "word": " و", "probability": 0.83544921875}, {"start": 1573.09, "end": 1573.09, "word": " ال", "probability": 0.69287109375}, {"start": 1573.09, "end": 1573.19, "word": " C", "probability": 0.9208984375}, {"start": 1573.19, "end": 1573.37, "word": " و", "probability": 0.9853515625}, {"start": 1573.37, "end": 1573.37, "word": " ال", "probability": 0.8232421875}, {"start": 1573.37, "end": 1573.49, "word": " D", "probability": 0.99658203125}, {"start": 1573.49, "end": 1576.71, "word": " بدا", "probability": 0.40228271484375}, {"start": 1576.71, "end": 1583.39, "word": " تعمله", "probability": 0.8953450520833334}, {"start": 1583.39, "end": 1583.39, "word": " في", "probability": 0.74462890625}, {"start": 1583.39, "end": 1583.39, "word": " ال", "probability": 0.91796875}, {"start": 1583.39, "end": 1583.41, "word": " B", "probability": 0.96484375}, {"start": 1583.41, "end": 1583.41, "word": " و", "probability": 0.98876953125}, {"start": 1583.41, "end": 1583.41, "word": " ال", "probability": 0.9580078125}, {"start": 1583.41, "end": 1584.21, "word": " C", "probability": 0.9453125}, {"start": 1584.21, "end": 1584.21, "word": " و", "probability": 0.99658203125}, {"start": 1584.21, "end": 1584.21, "word": " ال", "probability": 0.93115234375}, {"start": 1584.21, "end": 1584.23, "word": " D", "probability": 0.99951171875}, {"start": 1584.23, "end": 1590.85, "word": " بدا", "probability": 0.609130859375}, {"start": 1590.85, "end": 1593.05, "word": " تعمله", "probability": 0.9793294270833334}, {"start": 1593.05, "end": 1593.05, "word": " في", "probability": 0.94873046875}, {"start": 1593.05, "end": 1593.05, "word": " ال", "probability": 0.9775390625}, {"start": 1593.05, "end": 1593.05, "word": " B", "probability": 0.99169921875}, {"start": 1593.05, "end": 1593.05, "word": " و", "probability": 0.99658203125}, {"start": 1593.05, "end": 1593.05, "word": " ال", "probability": 0.9560546875}, {"start": 1593.05, "end": 1593.05, "word": " C", "probability": 0.796875}, {"start": 1593.05, "end": 1593.05, "word": " و", "probability": 0.9970703125}, {"start": 1593.05, "end": 1593.11, "word": " ال", "probability": 0.9384765625}, {"start": 1593.11, "end": 1593.45, "word": " D", "probability": 0.99951171875}, {"start": 1593.45, "end": 1593.45, "word": " بدا", "probability": 0.651123046875}, {"start": 1593.45, "end": 1595.23, "word": " تعمله", "probability": 0.9845377604166666}, {"start": 1595.23, "end": 1595.23, "word": " في", "probability": 0.9716796875}, {"start": 1595.23, "end": 1595.23, "word": " ال", "probability": 0.978515625}, {"start": 1595.23, "end": 1595.23, "word": " B", "probability": 0.99267578125}, {"start": 1595.23, "end": 1595.23, "word": " و", "probability": 0.99658203125}, {"start": 1595.23, "end": 1595.23, "word": " ال", "probability": 0.9482421875}, {"start": 1595.23, "end": 1595.23, "word": " D", "probability": 0.525390625}, {"start": 1595.23, "end": 1595.23, "word": " بدا", "probability": 0.66064453125}, {"start": 1595.23, "end": 1595.27, "word": " تعمله", "probability": 0.9861653645833334}, {"start": 1595.27, "end": 1595.27, "word": " في", "probability": 0.9765625}, {"start": 1595.27, "end": 1595.27, "word": " ال", "probability": 0.9765625}, {"start": 1595.27, "end": 1595.27, "word": " B", "probability": 0.98779296875}, {"start": 1595.27, "end": 1595.27, "word": " و", "probability": 0.99560546875}, {"start": 1595.27, "end": 1595.27, "word": " ال", "probability": 0.95703125}, {"start": 1595.27, "end": 1595.27, "word": " C", "probability": 0.98388671875}, {"start": 1595.27, "end": 1597.09, "word": " و", "probability": 0.99560546875}, {"start": 1597.09, "end": 1597.09, "word": " ال", "probability": 0.9375}, {"start": 1597.09, "end": 1597.63, "word": " D", "probability": 0.998046875}], "temperature": 1.0}, {"id": 64, "seek": 164001, "start": 1614.97, "end": 1640.01, "text": " and this D implements subscriber and this D received blah blah blah okay guys now all of them became subscriber type and all of them determined what they want to do in the message if it came back to the main method this subscribe is all ready", "tokens": [293, 341, 413, 704, 17988, 26122, 293, 341, 413, 4613, 12288, 12288, 12288, 1392, 1074, 586, 439, 295, 552, 3062, 26122, 2010, 293, 439, 295, 552, 9540, 437, 436, 528, 281, 360, 294, 264, 3636, 498, 309, 1361, 646, 281, 264, 2135, 3170, 341, 3022, 307, 439, 1919], "avg_logprob": -0.6278698784964425, "compression_ratio": 1.7112676056338028, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1614.97, "end": 1615.21, "word": " and", "probability": 0.30712890625}, {"start": 1615.21, "end": 1615.43, "word": " this", "probability": 0.47900390625}, {"start": 1615.43, "end": 1615.71, "word": " D", "probability": 0.191650390625}, {"start": 1615.71, "end": 1616.71, "word": " implements", "probability": 0.68505859375}, {"start": 1616.71, "end": 1619.79, "word": " subscriber", "probability": 0.71728515625}, {"start": 1619.79, "end": 1627.23, "word": " and", "probability": 0.76953125}, {"start": 1627.23, "end": 1627.43, "word": " this", "probability": 0.88037109375}, {"start": 1627.43, "end": 1627.73, "word": " D", "probability": 0.9609375}, {"start": 1627.73, "end": 1629.53, "word": " received", "probability": 0.5556640625}, {"start": 1629.53, "end": 1629.77, "word": " blah", "probability": 0.1351318359375}, {"start": 1629.77, "end": 1629.97, "word": " blah", "probability": 0.9013671875}, {"start": 1629.97, "end": 1630.43, "word": " blah", "probability": 0.40087890625}, {"start": 1630.43, "end": 1630.71, "word": " okay", "probability": 0.2958984375}, {"start": 1630.71, "end": 1631.21, "word": " guys", "probability": 0.6376953125}, {"start": 1631.21, "end": 1631.77, "word": " now", "probability": 0.437255859375}, {"start": 1631.77, "end": 1632.07, "word": " all", "probability": 0.54541015625}, {"start": 1632.07, "end": 1632.19, "word": " of", "probability": 0.57080078125}, {"start": 1632.19, "end": 1632.19, "word": " them", "probability": 0.89501953125}, {"start": 1632.19, "end": 1632.45, "word": " became", "probability": 0.3955078125}, {"start": 1632.45, "end": 1633.83, "word": " subscriber", "probability": 0.342529296875}, {"start": 1633.83, "end": 1634.09, "word": " type", "probability": 0.274658203125}, {"start": 1634.09, "end": 1634.23, "word": " and", "probability": 0.57763671875}, {"start": 1634.23, "end": 1634.39, "word": " all", "probability": 0.426513671875}, {"start": 1634.39, "end": 1634.45, "word": " of", "probability": 0.7900390625}, {"start": 1634.45, "end": 1634.45, "word": " them", "probability": 0.91064453125}, {"start": 1634.45, "end": 1634.79, "word": " determined", "probability": 0.212158203125}, {"start": 1634.79, "end": 1634.97, "word": " what", "probability": 0.8154296875}, {"start": 1634.97, "end": 1635.15, "word": " they", "probability": 0.486083984375}, {"start": 1635.15, "end": 1635.15, "word": " want", "probability": 0.36474609375}, {"start": 1635.15, "end": 1635.17, "word": " to", "probability": 0.9267578125}, {"start": 1635.17, "end": 1635.37, "word": " do", "probability": 0.9267578125}, {"start": 1635.37, "end": 1635.61, "word": " in", "probability": 0.57177734375}, {"start": 1635.61, "end": 1635.67, "word": " the", "probability": 0.66162109375}, {"start": 1635.67, "end": 1635.95, "word": " message", "probability": 0.81884765625}, {"start": 1635.95, "end": 1636.21, "word": " if", "probability": 0.603515625}, {"start": 1636.21, "end": 1636.29, "word": " it", "probability": 0.54150390625}, {"start": 1636.29, "end": 1636.45, "word": " came", "probability": 0.299560546875}, {"start": 1636.45, "end": 1637.35, "word": " back", "probability": 0.39013671875}, {"start": 1637.35, "end": 1637.65, "word": " to", "probability": 0.939453125}, {"start": 1637.65, "end": 1637.77, "word": " the", "probability": 0.67822265625}, {"start": 1637.77, "end": 1637.93, "word": " main", "probability": 0.87841796875}, {"start": 1637.93, "end": 1638.27, "word": " method", "probability": 0.953125}, {"start": 1638.27, "end": 1638.49, "word": " this", "probability": 0.3994140625}, {"start": 1638.49, "end": 1638.93, "word": " subscribe", "probability": 0.297119140625}, {"start": 1638.93, "end": 1639.53, "word": " is", "probability": 0.451416015625}, {"start": 1639.53, "end": 1639.53, "word": " all", "probability": 0.390625}, {"start": 1639.53, "end": 1640.01, "word": " ready", "probability": 0.5234375}], "temperature": 1.0}, {"id": 65, "seek": 166911, "start": 1640.77, "end": 1669.11, "text": " Now we come to the moment of truth Which is what? For example, A wants to send to whom? To everyone. He wants to ask for what? Send to all. The send to all so far has nothing. Now this is the message that came to me. The first step we do is to wrap this message in what? In a bus message. So we go and say bus message M and I want to make it of type", "tokens": [823, 321, 808, 281, 264, 1623, 295, 3494, 3013, 307, 437, 30, 1171, 1365, 11, 316, 2738, 281, 2845, 281, 7101, 30, 1407, 1518, 13, 634, 2738, 281, 1029, 337, 437, 30, 17908, 281, 439, 13, 440, 2845, 281, 439, 370, 1400, 575, 1825, 13, 823, 341, 307, 264, 3636, 300, 1361, 281, 385, 13, 440, 700, 1823, 321, 360, 307, 281, 7019, 341, 3636, 294, 437, 30, 682, 257, 1255, 3636, 13, 407, 321, 352, 293, 584, 1255, 3636, 376, 293, 286, 528, 281, 652, 309, 295, 2010], "avg_logprob": -0.540277796321445, "compression_ratio": 1.6587677725118484, "no_speech_prob": 3.2186508178710938e-06, "words": [{"start": 1640.77, "end": 1641.11, "word": " Now", "probability": 0.2379150390625}, {"start": 1641.11, "end": 1641.23, "word": " we", "probability": 0.424560546875}, {"start": 1641.23, "end": 1641.33, "word": " come", "probability": 0.58740234375}, {"start": 1641.33, "end": 1641.57, "word": " to", "probability": 0.92919921875}, {"start": 1641.57, "end": 1641.65, "word": " the", "probability": 0.8427734375}, {"start": 1641.65, "end": 1641.79, "word": " moment", "probability": 0.90283203125}, {"start": 1641.79, "end": 1642.01, "word": " of", "probability": 0.9619140625}, {"start": 1642.01, "end": 1642.37, "word": " truth", "probability": 0.8564453125}, {"start": 1642.37, "end": 1643.13, "word": " Which", "probability": 0.198974609375}, {"start": 1643.13, "end": 1643.31, "word": " is", "probability": 0.77099609375}, {"start": 1643.31, "end": 1643.53, "word": " what?", "probability": 0.254150390625}, {"start": 1644.01, "end": 1644.45, "word": " For", "probability": 0.40869140625}, {"start": 1644.45, "end": 1644.73, "word": " example,", "probability": 0.9248046875}, {"start": 1644.81, "end": 1645.13, "word": " A", "probability": 0.1544189453125}, {"start": 1645.13, "end": 1646.71, "word": " wants", "probability": 0.39453125}, {"start": 1646.71, "end": 1646.79, "word": " to", "probability": 0.96484375}, {"start": 1646.79, "end": 1646.95, "word": " send", "probability": 0.736328125}, {"start": 1646.95, "end": 1647.13, "word": " to", "probability": 0.53564453125}, {"start": 1647.13, "end": 1647.31, "word": " whom?", "probability": 0.84033203125}, {"start": 1647.81, "end": 1648.19, "word": " To", "probability": 0.7265625}, {"start": 1648.19, "end": 1648.51, "word": " everyone.", "probability": 0.56103515625}, {"start": 1648.57, "end": 1648.67, "word": " He", "probability": 0.3935546875}, {"start": 1648.67, "end": 1648.77, "word": " wants", "probability": 0.68603515625}, {"start": 1648.77, "end": 1648.89, "word": " to", "probability": 0.9423828125}, {"start": 1648.89, "end": 1649.11, "word": " ask", "probability": 0.17626953125}, {"start": 1649.11, "end": 1649.41, "word": " for", "probability": 0.521484375}, {"start": 1649.41, "end": 1649.81, "word": " what?", "probability": 0.66357421875}, {"start": 1650.29, "end": 1650.73, "word": " Send", "probability": 0.349365234375}, {"start": 1650.73, "end": 1650.87, "word": " to", "probability": 0.84716796875}, {"start": 1650.87, "end": 1651.05, "word": " all.", "probability": 0.82958984375}, {"start": 1651.53, "end": 1651.69, "word": " The", "probability": 0.321044921875}, {"start": 1651.69, "end": 1651.89, "word": " send", "probability": 0.453369140625}, {"start": 1651.89, "end": 1652.03, "word": " to", "probability": 0.96337890625}, {"start": 1652.03, "end": 1652.25, "word": " all", "probability": 0.9580078125}, {"start": 1652.25, "end": 1652.49, "word": " so", "probability": 0.1357421875}, {"start": 1652.49, "end": 1652.83, "word": " far", "probability": 0.92333984375}, {"start": 1652.83, "end": 1653.11, "word": " has", "probability": 0.474365234375}, {"start": 1653.11, "end": 1653.57, "word": " nothing.", "probability": 0.386962890625}, {"start": 1655.75, "end": 1656.19, "word": " Now", "probability": 0.640625}, {"start": 1656.19, "end": 1656.59, "word": " this", "probability": 0.479248046875}, {"start": 1656.59, "end": 1656.63, "word": " is", "probability": 0.5146484375}, {"start": 1656.63, "end": 1656.71, "word": " the", "probability": 0.8896484375}, {"start": 1656.71, "end": 1656.99, "word": " message", "probability": 0.822265625}, {"start": 1656.99, "end": 1657.15, "word": " that", "probability": 0.60205078125}, {"start": 1657.15, "end": 1657.25, "word": " came", "probability": 0.60791015625}, {"start": 1657.25, "end": 1657.41, "word": " to", "probability": 0.908203125}, {"start": 1657.41, "end": 1657.63, "word": " me.", "probability": 0.9453125}, {"start": 1657.69, "end": 1657.97, "word": " The", "probability": 0.77978515625}, {"start": 1657.97, "end": 1657.97, "word": " first", "probability": 0.88623046875}, {"start": 1657.97, "end": 1658.23, "word": " step", "probability": 0.859375}, {"start": 1658.23, "end": 1658.39, "word": " we", "probability": 0.62744140625}, {"start": 1658.39, "end": 1658.73, "word": " do", "probability": 0.5361328125}, {"start": 1658.73, "end": 1659.79, "word": " is", "probability": 0.5400390625}, {"start": 1659.79, "end": 1660.45, "word": " to", "probability": 0.307861328125}, {"start": 1660.45, "end": 1660.53, "word": " wrap", "probability": 0.60498046875}, {"start": 1660.53, "end": 1660.63, "word": " this", "probability": 0.82568359375}, {"start": 1660.63, "end": 1661.47, "word": " message", "probability": 0.833984375}, {"start": 1661.47, "end": 1661.87, "word": " in", "probability": 0.76220703125}, {"start": 1661.87, "end": 1662.09, "word": " what?", "probability": 0.44482421875}, {"start": 1662.35, "end": 1662.49, "word": " In", "probability": 0.84912109375}, {"start": 1662.49, "end": 1662.57, "word": " a", "probability": 0.65771484375}, {"start": 1662.57, "end": 1662.69, "word": " bus", "probability": 0.425048828125}, {"start": 1662.69, "end": 1663.01, "word": " message.", "probability": 0.9462890625}, {"start": 1663.51, "end": 1663.73, "word": " So", "probability": 0.440673828125}, {"start": 1663.73, "end": 1663.91, "word": " we", "probability": 0.76904296875}, {"start": 1663.91, "end": 1664.07, "word": " go", "probability": 0.51025390625}, {"start": 1664.07, "end": 1664.21, "word": " and", "probability": 0.7265625}, {"start": 1664.21, "end": 1664.37, "word": " say", "probability": 0.45947265625}, {"start": 1664.37, "end": 1664.69, "word": " bus", "probability": 0.5244140625}, {"start": 1664.69, "end": 1665.15, "word": " message", "probability": 0.87060546875}, {"start": 1665.15, "end": 1667.11, "word": " M", "probability": 0.45361328125}, {"start": 1667.11, "end": 1668.29, "word": " and", "probability": 0.416259765625}, {"start": 1668.29, "end": 1668.43, "word": " I", "probability": 0.634765625}, {"start": 1668.43, "end": 1668.45, "word": " want", "probability": 0.412841796875}, {"start": 1668.45, "end": 1668.47, "word": " to", "probability": 0.951171875}, {"start": 1668.47, "end": 1668.61, "word": " make", "probability": 0.626953125}, {"start": 1668.61, "end": 1668.73, "word": " it", "probability": 0.92236328125}, {"start": 1668.73, "end": 1668.81, "word": " of", "probability": 0.27294921875}, {"start": 1668.81, "end": 1669.11, "word": " type", "probability": 0.54931640625}], "temperature": 1.0}, {"id": 66, "seek": 169836, "start": 1670.56, "end": 1698.36, "text": "String for example, see how this is the use of the generic, did you take the generic? Okay, new bus message Okay, what does this bus need? So that I can use or create this class Static", "tokens": [4520, 2937, 337, 1365, 11, 536, 577, 341, 307, 264, 764, 295, 264, 19577, 11, 630, 291, 747, 264, 19577, 30, 1033, 11, 777, 1255, 3636, 1033, 11, 437, 775, 341, 1255, 643, 30, 407, 300, 286, 393, 764, 420, 1884, 341, 1508, 745, 2399], "avg_logprob": -0.6433424094448918, "compression_ratio": 1.4045801526717556, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1670.56, "end": 1671.04, "word": "String", "probability": 0.6571044921875}, {"start": 1671.04, "end": 1671.24, "word": " for", "probability": 0.66015625}, {"start": 1671.24, "end": 1671.44, "word": " example,", "probability": 0.89892578125}, {"start": 1671.78, "end": 1672.2, "word": " see", "probability": 0.1810302734375}, {"start": 1672.2, "end": 1672.44, "word": " how", "probability": 0.80078125}, {"start": 1672.44, "end": 1672.64, "word": " this", "probability": 0.2384033203125}, {"start": 1672.64, "end": 1672.64, "word": " is", "probability": 0.4169921875}, {"start": 1672.64, "end": 1672.82, "word": " the", "probability": 0.389892578125}, {"start": 1672.82, "end": 1672.98, "word": " use", "probability": 0.04656982421875}, {"start": 1672.98, "end": 1673.06, "word": " of", "probability": 0.92138671875}, {"start": 1673.06, "end": 1673.2, "word": " the", "probability": 0.4013671875}, {"start": 1673.2, "end": 1673.5, "word": " generic,", "probability": 0.71875}, {"start": 1673.56, "end": 1673.8, "word": " did", "probability": 0.407958984375}, {"start": 1673.8, "end": 1673.88, "word": " you", "probability": 0.9638671875}, {"start": 1673.88, "end": 1673.88, "word": " take", "probability": 0.423828125}, {"start": 1673.88, "end": 1674.12, "word": " the", "probability": 0.74365234375}, {"start": 1674.12, "end": 1674.4, "word": " generic?", "probability": 0.9677734375}, {"start": 1674.72, "end": 1675.22, "word": " Okay,", "probability": 0.1141357421875}, {"start": 1675.36, "end": 1675.68, "word": " new", "probability": 0.48828125}, {"start": 1675.68, "end": 1676.74, "word": " bus", "probability": 0.66064453125}, {"start": 1676.74, "end": 1678.12, "word": " message", "probability": 0.8857421875}, {"start": 1678.12, "end": 1690.06, "word": " Okay,", "probability": 0.371826171875}, {"start": 1690.32, "end": 1690.52, "word": " what", "probability": 0.153564453125}, {"start": 1690.52, "end": 1690.52, "word": " does", "probability": 0.79296875}, {"start": 1690.52, "end": 1690.6, "word": " this", "probability": 0.7783203125}, {"start": 1690.6, "end": 1691.0, "word": " bus", "probability": 0.38720703125}, {"start": 1691.0, "end": 1691.26, "word": " need?", "probability": 0.61474609375}, {"start": 1692.48, "end": 1692.98, "word": " So", "probability": 0.226318359375}, {"start": 1692.98, "end": 1693.18, "word": " that", "probability": 0.64404296875}, {"start": 1693.18, "end": 1693.28, "word": " I", "probability": 0.98291015625}, {"start": 1693.28, "end": 1693.46, "word": " can", "probability": 0.89599609375}, {"start": 1693.46, "end": 1694.58, "word": " use", "probability": 0.626953125}, {"start": 1694.58, "end": 1694.92, "word": " or", "probability": 0.68017578125}, {"start": 1694.92, "end": 1695.2, "word": " create", "probability": 0.759765625}, {"start": 1695.2, "end": 1695.4, "word": " this", "probability": 0.76708984375}, {"start": 1695.4, "end": 1695.76, "word": " class", "probability": 0.95263671875}, {"start": 1695.76, "end": 1698.36, "word": " Static", "probability": 0.6417236328125}], "temperature": 1.0}, {"id": 67, "seek": 171945, "start": 1701.49, "end": 1719.45, "text": "Okay, this is the beginning of the message. Now I want to put the data in the message. Set data, what do I want to put? The text. Set sender, this, it is it, not the A that sends. Okay, now we're done. The A wants to send the message. Who does it want to send it to?", "tokens": [8297, 11, 341, 307, 264, 2863, 295, 264, 3636, 13, 823, 286, 528, 281, 829, 264, 1412, 294, 264, 3636, 13, 8928, 1412, 11, 437, 360, 286, 528, 281, 829, 30, 440, 2487, 13, 8928, 2845, 260, 11, 341, 11, 309, 307, 309, 11, 406, 264, 316, 300, 14790, 13, 1033, 11, 586, 321, 434, 1096, 13, 440, 316, 2738, 281, 2845, 264, 3636, 13, 2102, 775, 309, 528, 281, 2845, 309, 281, 30], "avg_logprob": -0.4745833206176758, "compression_ratio": 1.705128205128205, "no_speech_prob": 3.993511199951172e-06, "words": [{"start": 1701.49, "end": 1701.79, "word": "Okay,", "probability": 0.312255859375}, {"start": 1701.85, "end": 1701.95, "word": " this", "probability": 0.515625}, {"start": 1701.95, "end": 1701.99, "word": " is", "probability": 0.8828125}, {"start": 1701.99, "end": 1702.27, "word": " the", "probability": 0.56494140625}, {"start": 1702.27, "end": 1702.27, "word": " beginning", "probability": 0.18359375}, {"start": 1702.27, "end": 1702.35, "word": " of", "probability": 0.9443359375}, {"start": 1702.35, "end": 1702.45, "word": " the", "probability": 0.78369140625}, {"start": 1702.45, "end": 1702.69, "word": " message.", "probability": 0.70751953125}, {"start": 1702.83, "end": 1702.97, "word": " Now", "probability": 0.76025390625}, {"start": 1702.97, "end": 1703.05, "word": " I", "probability": 0.63232421875}, {"start": 1703.05, "end": 1703.13, "word": " want", "probability": 0.337890625}, {"start": 1703.13, "end": 1703.19, "word": " to", "probability": 0.96728515625}, {"start": 1703.19, "end": 1703.37, "word": " put", "probability": 0.59912109375}, {"start": 1703.37, "end": 1703.49, "word": " the", "probability": 0.6796875}, {"start": 1703.49, "end": 1703.69, "word": " data", "probability": 0.72314453125}, {"start": 1703.69, "end": 1703.89, "word": " in", "probability": 0.728515625}, {"start": 1703.89, "end": 1704.81, "word": " the", "probability": 0.79150390625}, {"start": 1704.81, "end": 1704.81, "word": " message.", "probability": 0.8916015625}, {"start": 1705.31, "end": 1705.67, "word": " Set", "probability": 0.38671875}, {"start": 1705.67, "end": 1706.07, "word": " data,", "probability": 0.68896484375}, {"start": 1707.25, "end": 1707.35, "word": " what", "probability": 0.7197265625}, {"start": 1707.35, "end": 1707.47, "word": " do", "probability": 0.3828125}, {"start": 1707.47, "end": 1707.53, "word": " I", "probability": 0.96044921875}, {"start": 1707.53, "end": 1707.59, "word": " want", "probability": 0.513671875}, {"start": 1707.59, "end": 1707.59, "word": " to", "probability": 0.962890625}, {"start": 1707.59, "end": 1707.77, "word": " put?", "probability": 0.85693359375}, {"start": 1707.87, "end": 1708.01, "word": " The", "probability": 0.466796875}, {"start": 1708.01, "end": 1708.33, "word": " text.", "probability": 0.90478515625}, {"start": 1709.53, "end": 1709.89, "word": " Set", "probability": 0.90283203125}, {"start": 1709.89, "end": 1710.47, "word": " sender,", "probability": 0.92626953125}, {"start": 1712.41, "end": 1712.83, "word": " this,", "probability": 0.8427734375}, {"start": 1713.07, "end": 1713.29, "word": " it", "probability": 0.396484375}, {"start": 1713.29, "end": 1713.29, "word": " is", "probability": 0.568359375}, {"start": 1713.29, "end": 1713.47, "word": " it,", "probability": 0.37109375}, {"start": 1713.63, "end": 1713.75, "word": " not", "probability": 0.5419921875}, {"start": 1713.75, "end": 1713.87, "word": " the", "probability": 0.67333984375}, {"start": 1713.87, "end": 1713.97, "word": " A", "probability": 0.487548828125}, {"start": 1713.97, "end": 1714.17, "word": " that", "probability": 0.62451171875}, {"start": 1714.17, "end": 1714.43, "word": " sends.", "probability": 0.457763671875}, {"start": 1715.21, "end": 1715.49, "word": " Okay,", "probability": 0.337890625}, {"start": 1715.81, "end": 1716.13, "word": " now", "probability": 0.7373046875}, {"start": 1716.13, "end": 1716.95, "word": " we're", "probability": 0.4334716796875}, {"start": 1716.95, "end": 1716.95, "word": " done.", "probability": 0.85546875}, {"start": 1717.29, "end": 1717.43, "word": " The", "probability": 0.7919921875}, {"start": 1717.43, "end": 1717.55, "word": " A", "probability": 0.955078125}, {"start": 1717.55, "end": 1717.73, "word": " wants", "probability": 0.479736328125}, {"start": 1717.73, "end": 1717.83, "word": " to", "probability": 0.96728515625}, {"start": 1717.83, "end": 1717.95, "word": " send", "probability": 0.86083984375}, {"start": 1717.95, "end": 1718.11, "word": " the", "probability": 0.85888671875}, {"start": 1718.11, "end": 1718.43, "word": " message.", "probability": 0.90673828125}, {"start": 1718.53, "end": 1718.69, "word": " Who", "probability": 0.3564453125}, {"start": 1718.69, "end": 1718.85, "word": " does", "probability": 0.6064453125}, {"start": 1718.85, "end": 1718.91, "word": " it", "probability": 0.7626953125}, {"start": 1718.91, "end": 1718.91, "word": " want", "probability": 0.75927734375}, {"start": 1718.91, "end": 1718.97, "word": " to", "probability": 0.96630859375}, {"start": 1718.97, "end": 1719.17, "word": " send", "probability": 0.54150390625}, {"start": 1719.17, "end": 1719.45, "word": " it", "probability": 0.7958984375}, {"start": 1719.45, "end": 1719.45, "word": " to?", "probability": 0.8994140625}], "temperature": 1.0}, {"id": 68, "seek": 174978, "start": 1720.94, "end": 1749.78, "text": " Ok, she will send it to him, she doesn't have it, she sends it to the bus, he delivers it to the bus, and what is the bus? He sends it. Since the bus is singleton, I can send it from anywhere, right guys? databus.getinstance.publish, there is no method publish, and I send it to whom? The security, and we are done. This message is supposed to be sent to whom? To everyone. Did you find this method send to all? It should be available for whom?", "tokens": [3477, 11, 750, 486, 2845, 309, 281, 796, 11, 750, 1177, 380, 362, 309, 11, 750, 14790, 309, 281, 264, 1255, 11, 415, 24860, 309, 281, 264, 1255, 11, 293, 437, 307, 264, 1255, 30, 634, 14790, 309, 13, 4162, 264, 1255, 307, 1522, 14806, 11, 286, 393, 2845, 309, 490, 4992, 11, 558, 1074, 30, 7104, 301, 13, 847, 13911, 719, 13, 79, 836, 1933, 11, 456, 307, 572, 3170, 11374, 11, 293, 286, 2845, 309, 281, 7101, 30, 440, 3825, 11, 293, 321, 366, 1096, 13, 639, 3636, 307, 3442, 281, 312, 2279, 281, 7101, 30, 1407, 1518, 13, 2589, 291, 915, 341, 3170, 2845, 281, 439, 30, 467, 820, 312, 2435, 337, 7101, 30], "avg_logprob": -0.48940676526497984, "compression_ratio": 1.7729083665338645, "no_speech_prob": 3.7550926208496094e-06, "words": [{"start": 1720.94, "end": 1721.2, "word": " Ok,", "probability": 0.143798828125}, {"start": 1721.4, "end": 1721.56, "word": " she", "probability": 0.407958984375}, {"start": 1721.56, "end": 1721.7, "word": " will", "probability": 0.51025390625}, {"start": 1721.7, "end": 1721.86, "word": " send", "probability": 0.71337890625}, {"start": 1721.86, "end": 1722.02, "word": " it", "probability": 0.473876953125}, {"start": 1722.02, "end": 1722.04, "word": " to", "probability": 0.6669921875}, {"start": 1722.04, "end": 1722.1, "word": " him,", "probability": 0.75634765625}, {"start": 1722.14, "end": 1722.26, "word": " she", "probability": 0.26220703125}, {"start": 1722.26, "end": 1722.48, "word": " doesn't", "probability": 0.56805419921875}, {"start": 1722.48, "end": 1723.04, "word": " have", "probability": 0.68994140625}, {"start": 1723.04, "end": 1723.14, "word": " it,", "probability": 0.261474609375}, {"start": 1723.22, "end": 1723.44, "word": " she", "probability": 0.66455078125}, {"start": 1723.44, "end": 1723.78, "word": " sends", "probability": 0.5078125}, {"start": 1723.78, "end": 1723.94, "word": " it", "probability": 0.84326171875}, {"start": 1723.94, "end": 1724.0, "word": " to", "probability": 0.96044921875}, {"start": 1724.0, "end": 1724.1, "word": " the", "probability": 0.8564453125}, {"start": 1724.1, "end": 1724.22, "word": " bus,", "probability": 0.865234375}, {"start": 1724.28, "end": 1724.38, "word": " he", "probability": 0.2037353515625}, {"start": 1724.38, "end": 1724.56, "word": " delivers", "probability": 0.418701171875}, {"start": 1724.56, "end": 1724.7, "word": " it", "probability": 0.767578125}, {"start": 1724.7, "end": 1724.8, "word": " to", "probability": 0.9091796875}, {"start": 1724.8, "end": 1724.86, "word": " the", "probability": 0.9052734375}, {"start": 1724.86, "end": 1725.06, "word": " bus,", "probability": 0.9423828125}, {"start": 1725.14, "end": 1725.18, "word": " and", "probability": 0.82568359375}, {"start": 1725.18, "end": 1725.26, "word": " what", "probability": 0.541015625}, {"start": 1725.26, "end": 1725.26, "word": " is", "probability": 0.53857421875}, {"start": 1725.26, "end": 1725.28, "word": " the", "probability": 0.8603515625}, {"start": 1725.28, "end": 1725.44, "word": " bus?", "probability": 0.94775390625}, {"start": 1726.5, "end": 1726.86, "word": " He", "probability": 0.1304931640625}, {"start": 1726.86, "end": 1726.98, "word": " sends", "probability": 0.7265625}, {"start": 1726.98, "end": 1727.1, "word": " it.", "probability": 0.80517578125}, {"start": 1727.66, "end": 1728.02, "word": " Since", "probability": 0.4365234375}, {"start": 1728.02, "end": 1728.38, "word": " the", "probability": 0.81103515625}, {"start": 1728.38, "end": 1728.52, "word": " bus", "probability": 0.92529296875}, {"start": 1728.52, "end": 1728.54, "word": " is", "probability": 0.921875}, {"start": 1728.54, "end": 1728.96, "word": " singleton,", "probability": 0.843017578125}, {"start": 1729.08, "end": 1729.26, "word": " I", "probability": 0.9365234375}, {"start": 1729.26, "end": 1729.42, "word": " can", "probability": 0.9033203125}, {"start": 1729.42, "end": 1729.6, "word": " send", "probability": 0.783203125}, {"start": 1729.6, "end": 1729.68, "word": " it", "probability": 0.8154296875}, {"start": 1729.68, "end": 1729.78, "word": " from", "probability": 0.61328125}, {"start": 1729.78, "end": 1730.18, "word": " anywhere,", "probability": 0.73681640625}, {"start": 1730.56, "end": 1730.76, "word": " right", "probability": 0.490478515625}, {"start": 1730.76, "end": 1731.18, "word": " guys?", "probability": 0.326904296875}, {"start": 1732.2, "end": 1732.56, "word": " databus", "probability": 0.645751953125}, {"start": 1732.56, "end": 1735.94, "word": ".getinstance", "probability": 0.89404296875}, {"start": 1735.94, "end": 1737.7, "word": ".publish,", "probability": 0.9388427734375}, {"start": 1737.76, "end": 1737.88, "word": " there", "probability": 0.634765625}, {"start": 1737.88, "end": 1737.88, "word": " is", "probability": 0.7958984375}, {"start": 1737.88, "end": 1737.92, "word": " no", "probability": 0.9013671875}, {"start": 1737.92, "end": 1738.24, "word": " method", "probability": 0.7783203125}, {"start": 1738.24, "end": 1738.7, "word": " publish,", "probability": 0.76953125}, {"start": 1739.14, "end": 1739.44, "word": " and", "probability": 0.83056640625}, {"start": 1739.44, "end": 1739.52, "word": " I", "probability": 0.66650390625}, {"start": 1739.52, "end": 1739.74, "word": " send", "probability": 0.705078125}, {"start": 1739.74, "end": 1739.86, "word": " it", "probability": 0.40673828125}, {"start": 1739.86, "end": 1740.04, "word": " to", "probability": 0.82763671875}, {"start": 1740.04, "end": 1740.04, "word": " whom?", "probability": 0.420654296875}, {"start": 1740.46, "end": 1740.82, "word": " The", "probability": 0.47412109375}, {"start": 1740.82, "end": 1740.98, "word": " security,", "probability": 0.304443359375}, {"start": 1741.56, "end": 1741.74, "word": " and", "probability": 0.7353515625}, {"start": 1741.74, "end": 1742.14, "word": " we", "probability": 0.75341796875}, {"start": 1742.14, "end": 1742.14, "word": " are", "probability": 0.462890625}, {"start": 1742.14, "end": 1742.14, "word": " done.", "probability": 0.83447265625}, {"start": 1743.12, "end": 1743.48, "word": " This", "probability": 0.57080078125}, {"start": 1743.48, "end": 1743.78, "word": " message", "probability": 0.75390625}, {"start": 1743.78, "end": 1743.82, "word": " is", "probability": 0.431884765625}, {"start": 1743.82, "end": 1743.82, "word": " supposed", "probability": 0.7529296875}, {"start": 1743.82, "end": 1743.84, "word": " to", "probability": 0.970703125}, {"start": 1743.84, "end": 1744.08, "word": " be", "probability": 0.72021484375}, {"start": 1744.08, "end": 1744.12, "word": " sent", "probability": 0.34423828125}, {"start": 1744.12, "end": 1744.4, "word": " to", "probability": 0.935546875}, {"start": 1744.4, "end": 1744.4, "word": " whom?", "probability": 0.724609375}, {"start": 1744.94, "end": 1745.26, "word": " To", "probability": 0.7705078125}, {"start": 1745.26, "end": 1745.52, "word": " everyone.", "probability": 0.7236328125}, {"start": 1746.26, "end": 1746.62, "word": " Did", "probability": 0.54443359375}, {"start": 1746.62, "end": 1746.8, "word": " you", "probability": 0.91259765625}, {"start": 1746.8, "end": 1746.8, "word": " find", "probability": 0.81005859375}, {"start": 1746.8, "end": 1747.04, "word": " this", "probability": 0.86865234375}, {"start": 1747.04, "end": 1747.38, "word": " method", "probability": 0.79833984375}, {"start": 1747.38, "end": 1747.58, "word": " send", "probability": 0.2445068359375}, {"start": 1747.58, "end": 1747.76, "word": " to", "probability": 0.3916015625}, {"start": 1747.76, "end": 1748.0, "word": " all?", "probability": 0.953125}, {"start": 1748.66, "end": 1748.88, "word": " It", "probability": 0.5}, {"start": 1748.88, "end": 1749.0, "word": " should", "probability": 0.1920166015625}, {"start": 1749.0, "end": 1749.14, "word": " be", "probability": 0.76904296875}, {"start": 1749.14, "end": 1749.4, "word": " available", "probability": 0.417236328125}, {"start": 1749.4, "end": 1749.58, "word": " for", "probability": 0.2430419921875}, {"start": 1749.58, "end": 1749.78, "word": " whom?", "probability": 0.5634765625}], "temperature": 1.0}, {"id": 69, "seek": 177991, "start": 1750.91, "end": 1779.91, "text": "فى الكل تمام فى ال B هى بس نسختها وحطيتها هنا و فى ال C و هى فى ال D تمام خلصنا هيك تعالى الان sin to all", "tokens": [5172, 7578, 2423, 28820, 46811, 10943, 6156, 7578, 2423, 363, 8032, 7578, 4724, 3794, 8717, 3794, 46456, 11296, 4032, 5016, 9566, 36081, 11296, 34105, 4032, 6156, 7578, 2423, 383, 4032, 8032, 7578, 6156, 7578, 2423, 413, 46811, 10943, 16490, 1211, 9381, 8315, 39896, 4117, 37279, 6027, 7578, 2423, 7649, 3343, 281, 439], "avg_logprob": -0.2697523494936385, "compression_ratio": 1.4576271186440677, "no_speech_prob": 1.7285346984863281e-06, "words": [{"start": 1750.91, "end": 1751.21, "word": "فى", "probability": 0.467529296875}, {"start": 1751.21, "end": 1751.51, "word": " الكل", "probability": 0.91259765625}, {"start": 1751.51, "end": 1752.43, "word": " تمام", "probability": 0.57659912109375}, {"start": 1752.43, "end": 1752.89, "word": " فى", "probability": 0.890625}, {"start": 1752.89, "end": 1752.99, "word": " ال", "probability": 0.84716796875}, {"start": 1752.99, "end": 1753.25, "word": " B", "probability": 0.60693359375}, {"start": 1753.25, "end": 1755.43, "word": " هى", "probability": 0.723876953125}, {"start": 1755.43, "end": 1755.61, "word": " بس", "probability": 0.963623046875}, {"start": 1755.61, "end": 1756.07, "word": " نسختها", "probability": 0.81805419921875}, {"start": 1756.07, "end": 1756.55, "word": " وحطيتها", "probability": 0.886328125}, {"start": 1756.55, "end": 1756.77, "word": " هنا", "probability": 0.81201171875}, {"start": 1756.77, "end": 1760.79, "word": " و", "probability": 0.8896484375}, {"start": 1760.79, "end": 1760.91, "word": " فى", "probability": 0.7342529296875}, {"start": 1760.91, "end": 1761.07, "word": " ال", "probability": 0.94482421875}, {"start": 1761.07, "end": 1762.11, "word": " C", "probability": 0.96923828125}, {"start": 1762.11, "end": 1769.15, "word": " و", "probability": 0.8837890625}, {"start": 1769.15, "end": 1769.29, "word": " هى", "probability": 0.912841796875}, {"start": 1769.29, "end": 1769.45, "word": " فى", "probability": 0.995849609375}, {"start": 1769.45, "end": 1769.51, "word": " ال", "probability": 0.81201171875}, {"start": 1769.51, "end": 1769.97, "word": " D", "probability": 0.9970703125}, {"start": 1769.97, "end": 1776.75, "word": " تمام", "probability": 0.962158203125}, {"start": 1776.75, "end": 1777.57, "word": " خلصنا", "probability": 0.9698486328125}, {"start": 1777.57, "end": 1777.83, "word": " هيك", "probability": 0.9267578125}, {"start": 1777.83, "end": 1778.43, "word": " تعالى", "probability": 0.9583333333333334}, {"start": 1778.43, "end": 1778.75, "word": " الان", "probability": 0.615966796875}, {"start": 1778.75, "end": 1779.55, "word": " sin", "probability": 0.154541015625}, {"start": 1779.55, "end": 1779.71, "word": " to", "probability": 0.9287109375}, {"start": 1779.71, "end": 1779.91, "word": " all", "probability": 0.94970703125}], "temperature": 1.0}, {"id": 70, "seek": 180625, "start": 1780.77, "end": 1806.25, "text": " look what will happen hello to send to all run and look what is printed on the screen what did it write? B received hello, C received hello, D received hello now we want C to send to others C dot send to all hi hi B should receive A, B and D right? run", "tokens": [574, 437, 486, 1051, 7751, 281, 2845, 281, 439, 1190, 293, 574, 437, 307, 13567, 322, 264, 2568, 437, 630, 309, 2464, 30, 363, 4613, 7751, 11, 383, 4613, 7751, 11, 413, 4613, 7751, 586, 321, 528, 383, 281, 2845, 281, 2357, 383, 5893, 2845, 281, 439, 4879, 4879, 363, 820, 4774, 316, 11, 363, 293, 413, 558, 30, 1190], "avg_logprob": -0.5430327673427394, "compression_ratio": 1.7448275862068965, "no_speech_prob": 1.8477439880371094e-06, "words": [{"start": 1780.77, "end": 1781.07, "word": " look", "probability": 0.24169921875}, {"start": 1781.07, "end": 1781.21, "word": " what", "probability": 0.59033203125}, {"start": 1781.21, "end": 1781.37, "word": " will", "probability": 0.428955078125}, {"start": 1781.37, "end": 1781.61, "word": " happen", "probability": 0.84130859375}, {"start": 1781.61, "end": 1781.91, "word": " hello", "probability": 0.26025390625}, {"start": 1781.91, "end": 1782.07, "word": " to", "probability": 0.2025146484375}, {"start": 1782.07, "end": 1782.27, "word": " send", "probability": 0.5380859375}, {"start": 1782.27, "end": 1782.43, "word": " to", "probability": 0.9326171875}, {"start": 1782.43, "end": 1782.57, "word": " all", "probability": 0.9501953125}, {"start": 1782.57, "end": 1782.83, "word": " run", "probability": 0.29052734375}, {"start": 1782.83, "end": 1783.89, "word": " and", "probability": 0.2783203125}, {"start": 1783.89, "end": 1785.55, "word": " look", "probability": 0.423095703125}, {"start": 1785.55, "end": 1785.75, "word": " what", "probability": 0.7353515625}, {"start": 1785.75, "end": 1785.79, "word": " is", "probability": 0.41162109375}, {"start": 1785.79, "end": 1785.95, "word": " printed", "probability": 0.78369140625}, {"start": 1785.95, "end": 1786.13, "word": " on", "probability": 0.76708984375}, {"start": 1786.13, "end": 1786.25, "word": " the", "probability": 0.7490234375}, {"start": 1786.25, "end": 1786.55, "word": " screen", "probability": 0.818359375}, {"start": 1786.55, "end": 1787.55, "word": " what", "probability": 0.583984375}, {"start": 1787.55, "end": 1787.69, "word": " did", "probability": 0.2025146484375}, {"start": 1787.69, "end": 1787.75, "word": " it", "probability": 0.6005859375}, {"start": 1787.75, "end": 1787.85, "word": " write?", "probability": 0.4970703125}, {"start": 1788.05, "end": 1788.31, "word": " B", "probability": 0.55859375}, {"start": 1788.31, "end": 1788.91, "word": " received", "probability": 0.71826171875}, {"start": 1788.91, "end": 1789.21, "word": " hello,", "probability": 0.67724609375}, {"start": 1789.97, "end": 1790.17, "word": " C", "probability": 0.84033203125}, {"start": 1790.17, "end": 1790.65, "word": " received", "probability": 0.77197265625}, {"start": 1790.65, "end": 1790.97, "word": " hello,", "probability": 0.7314453125}, {"start": 1791.33, "end": 1791.45, "word": " D", "probability": 0.92578125}, {"start": 1791.45, "end": 1791.99, "word": " received", "probability": 0.76708984375}, {"start": 1791.99, "end": 1793.03, "word": " hello", "probability": 0.830078125}, {"start": 1793.03, "end": 1793.91, "word": " now", "probability": 0.6708984375}, {"start": 1793.91, "end": 1794.05, "word": " we", "probability": 0.256591796875}, {"start": 1794.05, "end": 1794.35, "word": " want", "probability": 0.5595703125}, {"start": 1794.35, "end": 1794.99, "word": " C", "probability": 0.6181640625}, {"start": 1794.99, "end": 1795.47, "word": " to", "probability": 0.80029296875}, {"start": 1795.47, "end": 1795.63, "word": " send", "probability": 0.697265625}, {"start": 1795.63, "end": 1795.75, "word": " to", "probability": 0.83837890625}, {"start": 1795.75, "end": 1796.07, "word": " others", "probability": 0.642578125}, {"start": 1796.07, "end": 1797.47, "word": " C", "probability": 0.66015625}, {"start": 1797.47, "end": 1797.89, "word": " dot", "probability": 0.38037109375}, {"start": 1797.89, "end": 1798.31, "word": " send", "probability": 0.7646484375}, {"start": 1798.31, "end": 1799.39, "word": " to", "probability": 0.96728515625}, {"start": 1799.39, "end": 1799.73, "word": " all", "probability": 0.95751953125}, {"start": 1799.73, "end": 1800.71, "word": " hi", "probability": 0.6796875}, {"start": 1800.71, "end": 1801.05, "word": " hi", "probability": 0.75830078125}, {"start": 1801.05, "end": 1802.41, "word": " B", "probability": 0.546875}, {"start": 1802.41, "end": 1802.75, "word": " should", "probability": 0.5390625}, {"start": 1802.75, "end": 1803.17, "word": " receive", "probability": 0.81396484375}, {"start": 1803.17, "end": 1803.95, "word": " A,", "probability": 0.7587890625}, {"start": 1804.19, "end": 1804.37, "word": " B", "probability": 0.666015625}, {"start": 1804.37, "end": 1804.59, "word": " and", "probability": 0.748046875}, {"start": 1804.59, "end": 1804.89, "word": " D", "probability": 0.9921875}, {"start": 1804.89, "end": 1805.83, "word": " right?", "probability": 0.15185546875}, {"start": 1805.97, "end": 1806.25, "word": " run", "probability": 0.313232421875}], "temperature": 1.0}, {"id": 71, "seek": 184014, "start": 1811.6, "end": 1840.14, "text": " Of course, the first one to receive it is the one who sent the message, the one who sent it is A Now, C sent it, A accepted it, B accepted it, and D accepted it So now, everything is sent to everything without needing any complications There is a new element that wants to join with them, send and accept it All you have to do is create a new class for the new element, implement subscriber, and register it in the bus The bus will not change at all now, okay? And you can take the bus if you made this application, okay?", "tokens": [2720, 1164, 11, 264, 700, 472, 281, 4774, 309, 307, 264, 472, 567, 2279, 264, 3636, 11, 264, 472, 567, 2279, 309, 307, 316, 823, 11, 383, 2279, 309, 11, 316, 9035, 309, 11, 363, 9035, 309, 11, 293, 413, 9035, 309, 407, 586, 11, 1203, 307, 2279, 281, 1203, 1553, 18006, 604, 26566, 821, 307, 257, 777, 4478, 300, 2738, 281, 3917, 365, 552, 11, 2845, 293, 3241, 309, 1057, 291, 362, 281, 360, 307, 1884, 257, 777, 1508, 337, 264, 777, 4478, 11, 4445, 26122, 11, 293, 7280, 309, 294, 264, 1255, 440, 1255, 486, 406, 1319, 412, 439, 586, 11, 1392, 30, 400, 291, 393, 747, 264, 1255, 498, 291, 1027, 341, 3861, 11, 1392, 30], "avg_logprob": -0.580208320915699, "compression_ratio": 1.9120879120879122, "no_speech_prob": 5.4836273193359375e-06, "words": [{"start": 1811.6, "end": 1811.82, "word": " Of", "probability": 0.0906982421875}, {"start": 1811.82, "end": 1811.92, "word": " course,", "probability": 0.916015625}, {"start": 1812.02, "end": 1812.2, "word": " the", "probability": 0.232666015625}, {"start": 1812.2, "end": 1812.2, "word": " first", "probability": 0.775390625}, {"start": 1812.2, "end": 1812.28, "word": " one", "probability": 0.332275390625}, {"start": 1812.28, "end": 1812.28, "word": " to", "probability": 0.1318359375}, {"start": 1812.28, "end": 1812.56, "word": " receive", "probability": 0.2349853515625}, {"start": 1812.56, "end": 1812.76, "word": " it", "probability": 0.265625}, {"start": 1812.76, "end": 1812.98, "word": " is", "probability": 0.4638671875}, {"start": 1812.98, "end": 1813.28, "word": " the", "probability": 0.475830078125}, {"start": 1813.28, "end": 1813.28, "word": " one", "probability": 0.626953125}, {"start": 1813.28, "end": 1813.34, "word": " who", "probability": 0.55419921875}, {"start": 1813.34, "end": 1813.58, "word": " sent", "probability": 0.556640625}, {"start": 1813.58, "end": 1813.76, "word": " the", "probability": 0.375244140625}, {"start": 1813.76, "end": 1814.0, "word": " message,", "probability": 0.74072265625}, {"start": 1814.02, "end": 1814.12, "word": " the", "probability": 0.2288818359375}, {"start": 1814.12, "end": 1814.12, "word": " one", "probability": 0.7626953125}, {"start": 1814.12, "end": 1814.12, "word": " who", "probability": 0.82421875}, {"start": 1814.12, "end": 1814.3, "word": " sent", "probability": 0.78564453125}, {"start": 1814.3, "end": 1814.42, "word": " it", "probability": 0.37109375}, {"start": 1814.42, "end": 1814.62, "word": " is", "probability": 0.38330078125}, {"start": 1814.62, "end": 1814.62, "word": " A", "probability": 0.55810546875}, {"start": 1814.62, "end": 1815.28, "word": " Now,", "probability": 0.3759765625}, {"start": 1815.36, "end": 1815.66, "word": " C", "probability": 0.40087890625}, {"start": 1815.66, "end": 1815.98, "word": " sent", "probability": 0.51708984375}, {"start": 1815.98, "end": 1816.0, "word": " it,", "probability": 0.27392578125}, {"start": 1816.4, "end": 1816.68, "word": " A", "probability": 0.76708984375}, {"start": 1816.68, "end": 1817.02, "word": " accepted", "probability": 0.402099609375}, {"start": 1817.02, "end": 1817.16, "word": " it,", "probability": 0.53515625}, {"start": 1817.28, "end": 1817.48, "word": " B", "probability": 0.8994140625}, {"start": 1817.48, "end": 1817.86, "word": " accepted", "probability": 0.87158203125}, {"start": 1817.86, "end": 1817.94, "word": " it,", "probability": 0.93603515625}, {"start": 1818.06, "end": 1818.08, "word": " and", "probability": 0.736328125}, {"start": 1818.08, "end": 1818.34, "word": " D", "probability": 0.9375}, {"start": 1818.34, "end": 1819.32, "word": " accepted", "probability": 0.8671875}, {"start": 1819.32, "end": 1819.46, "word": " it", "probability": 0.94091796875}, {"start": 1819.46, "end": 1819.78, "word": " So", "probability": 0.455322265625}, {"start": 1819.78, "end": 1820.08, "word": " now,", "probability": 0.69970703125}, {"start": 1820.14, "end": 1820.42, "word": " everything", "probability": 0.354248046875}, {"start": 1820.42, "end": 1820.5, "word": " is", "probability": 0.28271484375}, {"start": 1820.5, "end": 1820.72, "word": " sent", "probability": 0.61083984375}, {"start": 1820.72, "end": 1820.88, "word": " to", "probability": 0.826171875}, {"start": 1820.88, "end": 1821.18, "word": " everything", "probability": 0.517578125}, {"start": 1821.18, "end": 1821.58, "word": " without", "probability": 0.75146484375}, {"start": 1821.58, "end": 1822.42, "word": " needing", "probability": 0.51611328125}, {"start": 1822.42, "end": 1822.6, "word": " any", "probability": 0.232666015625}, {"start": 1822.6, "end": 1822.94, "word": " complications", "probability": 0.1475830078125}, {"start": 1822.94, "end": 1823.88, "word": " There", "probability": 0.35791015625}, {"start": 1823.88, "end": 1823.94, "word": " is", "probability": 0.46142578125}, {"start": 1823.94, "end": 1824.02, "word": " a", "probability": 0.9248046875}, {"start": 1824.02, "end": 1824.54, "word": " new", "probability": 0.9189453125}, {"start": 1824.54, "end": 1824.54, "word": " element", "probability": 0.7744140625}, {"start": 1824.54, "end": 1824.74, "word": " that", "probability": 0.6552734375}, {"start": 1824.74, "end": 1824.88, "word": " wants", "probability": 0.384033203125}, {"start": 1824.88, "end": 1825.22, "word": " to", "probability": 0.9501953125}, {"start": 1825.22, "end": 1825.5, "word": " join", "probability": 0.57958984375}, {"start": 1825.5, "end": 1825.78, "word": " with", "probability": 0.310791015625}, {"start": 1825.78, "end": 1825.98, "word": " them,", "probability": 0.7060546875}, {"start": 1826.04, "end": 1826.26, "word": " send", "probability": 0.603515625}, {"start": 1826.26, "end": 1826.44, "word": " and", "probability": 0.4482421875}, {"start": 1826.44, "end": 1826.74, "word": " accept", "probability": 0.498046875}, {"start": 1826.74, "end": 1827.2, "word": " it", "probability": 0.2587890625}, {"start": 1827.2, "end": 1827.58, "word": " All", "probability": 0.654296875}, {"start": 1827.58, "end": 1827.72, "word": " you", "probability": 0.86962890625}, {"start": 1827.72, "end": 1827.96, "word": " have", "probability": 0.69873046875}, {"start": 1827.96, "end": 1827.96, "word": " to", "probability": 0.97265625}, {"start": 1827.96, "end": 1828.26, "word": " do", "probability": 0.96630859375}, {"start": 1828.26, "end": 1828.66, "word": " is", "probability": 0.88037109375}, {"start": 1828.66, "end": 1829.0, "word": " create", "probability": 0.3681640625}, {"start": 1829.0, "end": 1829.12, "word": " a", "probability": 0.9833984375}, {"start": 1829.12, "end": 1829.12, "word": " new", "probability": 0.9013671875}, {"start": 1829.12, "end": 1829.46, "word": " class", "probability": 0.95068359375}, {"start": 1829.46, "end": 1829.78, "word": " for", "probability": 0.89794921875}, {"start": 1829.78, "end": 1829.86, "word": " the", "probability": 0.6015625}, {"start": 1829.86, "end": 1830.48, "word": " new", "probability": 0.88330078125}, {"start": 1830.48, "end": 1830.48, "word": " element,", "probability": 0.9736328125}, {"start": 1830.86, "end": 1831.42, "word": " implement", "probability": 0.85302734375}, {"start": 1831.42, "end": 1832.16, "word": " subscriber,", "probability": 0.7685546875}, {"start": 1832.54, "end": 1832.76, "word": " and", "probability": 0.91748046875}, {"start": 1832.76, "end": 1833.0, "word": " register", "probability": 0.650390625}, {"start": 1833.0, "end": 1833.18, "word": " it", "probability": 0.412109375}, {"start": 1833.18, "end": 1833.24, "word": " in", "probability": 0.79443359375}, {"start": 1833.24, "end": 1833.32, "word": " the", "probability": 0.75634765625}, {"start": 1833.32, "end": 1833.48, "word": " bus", "probability": 0.8134765625}, {"start": 1833.48, "end": 1833.62, "word": " The", "probability": 0.62451171875}, {"start": 1833.62, "end": 1833.86, "word": " bus", "probability": 0.9423828125}, {"start": 1833.86, "end": 1834.12, "word": " will", "probability": 0.37744140625}, {"start": 1834.12, "end": 1834.24, "word": " not", "probability": 0.83984375}, {"start": 1834.24, "end": 1834.78, "word": " change", "probability": 0.814453125}, {"start": 1834.78, "end": 1836.14, "word": " at", "probability": 0.177001953125}, {"start": 1836.14, "end": 1836.42, "word": " all", "probability": 0.91064453125}, {"start": 1836.42, "end": 1836.54, "word": " now,", "probability": 0.54638671875}, {"start": 1836.54, "end": 1837.64, "word": " okay?", "probability": 0.376708984375}, {"start": 1837.76, "end": 1837.88, "word": " And", "probability": 0.67919921875}, {"start": 1837.88, "end": 1837.98, "word": " you", "probability": 0.9375}, {"start": 1837.98, "end": 1838.16, "word": " can", "probability": 0.92431640625}, {"start": 1838.16, "end": 1838.42, "word": " take", "probability": 0.6923828125}, {"start": 1838.42, "end": 1838.58, "word": " the", "probability": 0.88671875}, {"start": 1838.58, "end": 1838.76, "word": " bus", "probability": 0.9345703125}, {"start": 1838.76, "end": 1838.88, "word": " if", "probability": 0.7705078125}, {"start": 1838.88, "end": 1839.16, "word": " you", "probability": 0.94970703125}, {"start": 1839.16, "end": 1839.38, "word": " made", "probability": 0.2437744140625}, {"start": 1839.38, "end": 1839.56, "word": " this", "probability": 0.2724609375}, {"start": 1839.56, "end": 1839.84, "word": " application,", "probability": 0.7421875}, {"start": 1839.96, "end": 1840.14, "word": " okay?", "probability": 0.2086181640625}], "temperature": 1.0}, {"id": 72, "seek": 186437, "start": 1841.13, "end": 1864.37, "text": " and you have elements that you want to send to each other and you take only this class and you put it in your application and you use it. In fact, when I was working on Android, there were times when there were libraries made on GitHub made by whom? This data bus wants you to send between your elements, use this library. Did you make the library here? We did it in the lecture. This sends to all the other elements.", "tokens": [293, 291, 362, 4959, 300, 291, 528, 281, 2845, 281, 1184, 661, 293, 291, 747, 787, 341, 1508, 293, 291, 829, 309, 294, 428, 3861, 293, 291, 764, 309, 13, 682, 1186, 11, 562, 286, 390, 1364, 322, 8853, 11, 456, 645, 1413, 562, 456, 645, 15148, 1027, 322, 23331, 1027, 538, 7101, 30, 639, 1412, 1255, 2738, 291, 281, 2845, 1296, 428, 4959, 11, 764, 341, 6405, 13, 2589, 291, 652, 264, 6405, 510, 30, 492, 630, 309, 294, 264, 7991, 13, 639, 14790, 281, 439, 264, 661, 4959, 13], "avg_logprob": -0.48913043510654697, "compression_ratio": 1.771186440677966, "no_speech_prob": 1.9073486328125e-06, "words": [{"start": 1841.1299999999999, "end": 1841.55, "word": " and", "probability": 0.1478271484375}, {"start": 1841.55, "end": 1841.97, "word": " you", "probability": 0.73095703125}, {"start": 1841.97, "end": 1841.99, "word": " have", "probability": 0.8115234375}, {"start": 1841.99, "end": 1842.37, "word": " elements", "probability": 0.60986328125}, {"start": 1842.37, "end": 1842.49, "word": " that", "probability": 0.55908203125}, {"start": 1842.49, "end": 1842.63, "word": " you", "probability": 0.84423828125}, {"start": 1842.63, "end": 1842.71, "word": " want", "probability": 0.499755859375}, {"start": 1842.71, "end": 1842.71, "word": " to", "probability": 0.96337890625}, {"start": 1842.71, "end": 1842.73, "word": " send", "probability": 0.7119140625}, {"start": 1842.73, "end": 1842.89, "word": " to", "probability": 0.81298828125}, {"start": 1842.89, "end": 1843.13, "word": " each", "probability": 0.89990234375}, {"start": 1843.13, "end": 1843.15, "word": " other", "probability": 0.85693359375}, {"start": 1843.15, "end": 1843.27, "word": " and", "probability": 0.53515625}, {"start": 1843.27, "end": 1843.39, "word": " you", "probability": 0.85791015625}, {"start": 1843.39, "end": 1843.55, "word": " take", "probability": 0.4501953125}, {"start": 1843.55, "end": 1843.81, "word": " only", "probability": 0.227783203125}, {"start": 1843.81, "end": 1843.95, "word": " this", "probability": 0.6220703125}, {"start": 1843.95, "end": 1844.31, "word": " class", "probability": 0.9443359375}, {"start": 1844.31, "end": 1845.49, "word": " and", "probability": 0.7412109375}, {"start": 1845.49, "end": 1845.75, "word": " you", "probability": 0.59619140625}, {"start": 1845.75, "end": 1845.91, "word": " put", "probability": 0.57666015625}, {"start": 1845.91, "end": 1845.99, "word": " it", "probability": 0.68896484375}, {"start": 1845.99, "end": 1846.09, "word": " in", "probability": 0.8095703125}, {"start": 1846.09, "end": 1846.15, "word": " your", "probability": 0.873046875}, {"start": 1846.15, "end": 1846.53, "word": " application", "probability": 0.40185546875}, {"start": 1846.53, "end": 1846.71, "word": " and", "probability": 0.88623046875}, {"start": 1846.71, "end": 1846.83, "word": " you", "probability": 0.60205078125}, {"start": 1846.83, "end": 1847.57, "word": " use", "probability": 0.876953125}, {"start": 1847.57, "end": 1847.99, "word": " it.", "probability": 0.93896484375}, {"start": 1848.19, "end": 1848.33, "word": " In", "probability": 0.1708984375}, {"start": 1848.33, "end": 1848.55, "word": " fact,", "probability": 0.43310546875}, {"start": 1849.25, "end": 1849.47, "word": " when", "probability": 0.5107421875}, {"start": 1849.47, "end": 1849.95, "word": " I", "probability": 0.97119140625}, {"start": 1849.95, "end": 1850.13, "word": " was", "probability": 0.60498046875}, {"start": 1850.13, "end": 1850.35, "word": " working", "probability": 0.60546875}, {"start": 1850.35, "end": 1850.43, "word": " on", "probability": 0.720703125}, {"start": 1850.43, "end": 1850.87, "word": " Android,", "probability": 0.75390625}, {"start": 1851.29, "end": 1851.73, "word": " there", "probability": 0.5302734375}, {"start": 1851.73, "end": 1851.89, "word": " were", "probability": 0.75732421875}, {"start": 1851.89, "end": 1851.89, "word": " times", "probability": 0.378662109375}, {"start": 1851.89, "end": 1852.11, "word": " when", "probability": 0.67333984375}, {"start": 1852.11, "end": 1852.11, "word": " there", "probability": 0.7109375}, {"start": 1852.11, "end": 1852.11, "word": " were", "probability": 0.8134765625}, {"start": 1852.11, "end": 1852.51, "word": " libraries", "probability": 0.68505859375}, {"start": 1852.51, "end": 1852.75, "word": " made", "probability": 0.533203125}, {"start": 1852.75, "end": 1852.95, "word": " on", "probability": 0.853515625}, {"start": 1852.95, "end": 1853.37, "word": " GitHub", "probability": 0.67138671875}, {"start": 1853.37, "end": 1853.69, "word": " made", "probability": 0.541015625}, {"start": 1853.69, "end": 1853.83, "word": " by", "probability": 0.3173828125}, {"start": 1853.83, "end": 1854.01, "word": " whom?", "probability": 0.55126953125}, {"start": 1854.61, "end": 1854.79, "word": " This", "probability": 0.42236328125}, {"start": 1854.79, "end": 1854.99, "word": " data", "probability": 0.2117919921875}, {"start": 1854.99, "end": 1855.29, "word": " bus", "probability": 0.904296875}, {"start": 1855.29, "end": 1856.09, "word": " wants", "probability": 0.2230224609375}, {"start": 1856.09, "end": 1856.39, "word": " you", "probability": 0.83935546875}, {"start": 1856.39, "end": 1856.53, "word": " to", "probability": 0.9560546875}, {"start": 1856.53, "end": 1856.69, "word": " send", "probability": 0.80126953125}, {"start": 1856.69, "end": 1856.91, "word": " between", "probability": 0.24169921875}, {"start": 1856.91, "end": 1857.09, "word": " your", "probability": 0.7578125}, {"start": 1857.09, "end": 1857.45, "word": " elements,", "probability": 0.8876953125}, {"start": 1857.79, "end": 1858.09, "word": " use", "probability": 0.55712890625}, {"start": 1858.09, "end": 1858.73, "word": " this", "probability": 0.90185546875}, {"start": 1858.73, "end": 1859.07, "word": " library.", "probability": 0.92529296875}, {"start": 1859.63, "end": 1859.77, "word": " Did", "probability": 0.164306640625}, {"start": 1859.77, "end": 1859.91, "word": " you", "probability": 0.93603515625}, {"start": 1859.91, "end": 1860.29, "word": " make", "probability": 0.53759765625}, {"start": 1860.29, "end": 1860.45, "word": " the", "probability": 0.404052734375}, {"start": 1860.45, "end": 1860.69, "word": " library", "probability": 0.92724609375}, {"start": 1860.69, "end": 1860.87, "word": " here?", "probability": 0.70263671875}, {"start": 1860.91, "end": 1860.99, "word": " We", "probability": 0.8564453125}, {"start": 1860.99, "end": 1861.13, "word": " did", "probability": 0.4716796875}, {"start": 1861.13, "end": 1861.27, "word": " it", "probability": 0.85595703125}, {"start": 1861.27, "end": 1861.35, "word": " in", "probability": 0.88720703125}, {"start": 1861.35, "end": 1861.41, "word": " the", "probability": 0.8212890625}, {"start": 1861.41, "end": 1861.71, "word": " lecture.", "probability": 0.80712890625}, {"start": 1862.85, "end": 1863.27, "word": " This", "probability": 0.35595703125}, {"start": 1863.27, "end": 1863.53, "word": " sends", "probability": 0.63134765625}, {"start": 1863.53, "end": 1863.71, "word": " to", "probability": 0.80517578125}, {"start": 1863.71, "end": 1863.89, "word": " all", "probability": 0.94189453125}, {"start": 1863.89, "end": 1863.99, "word": " the", "probability": 0.462646484375}, {"start": 1863.99, "end": 1864.37, "word": " other", "probability": 0.84375}, {"start": 1864.37, "end": 1864.37, "word": " elements.", "probability": 0.88818359375}], "temperature": 1.0}, {"id": 73, "seek": 188661, "start": 1867.17, "end": 1886.61, "text": "Now you can ask me, sometimes A wants to send a message to B, but doesn't send a message to the other two, there is no one who sends a message to only one element, you have to send a message to everyone, but then B decides whether to receive the message or not, for example, we can say that if C receives a message from A,", "tokens": [13267, 291, 393, 1029, 385, 11, 2171, 316, 2738, 281, 2845, 257, 3636, 281, 363, 11, 457, 1177, 380, 2845, 257, 3636, 281, 264, 661, 732, 11, 456, 307, 572, 472, 567, 14790, 257, 3636, 281, 787, 472, 4478, 11, 291, 362, 281, 2845, 257, 3636, 281, 1518, 11, 457, 550, 363, 14898, 1968, 281, 4774, 264, 3636, 420, 406, 11, 337, 1365, 11, 321, 393, 584, 300, 498, 383, 20717, 257, 3636, 490, 316, 11], "avg_logprob": -0.5588474180791285, "compression_ratio": 1.7692307692307692, "no_speech_prob": 5.543231964111328e-06, "words": [{"start": 1867.17, "end": 1867.47, "word": "Now", "probability": 0.18408203125}, {"start": 1867.47, "end": 1867.73, "word": " you", "probability": 0.158935546875}, {"start": 1867.73, "end": 1867.95, "word": " can", "probability": 0.36474609375}, {"start": 1867.95, "end": 1868.17, "word": " ask", "probability": 0.8408203125}, {"start": 1868.17, "end": 1868.33, "word": " me,", "probability": 0.7822265625}, {"start": 1868.63, "end": 1869.13, "word": " sometimes", "probability": 0.447509765625}, {"start": 1869.13, "end": 1869.93, "word": " A", "probability": 0.322021484375}, {"start": 1869.93, "end": 1870.41, "word": " wants", "probability": 0.29052734375}, {"start": 1870.41, "end": 1870.49, "word": " to", "probability": 0.9580078125}, {"start": 1870.49, "end": 1870.63, "word": " send", "probability": 0.6884765625}, {"start": 1870.63, "end": 1870.71, "word": " a", "probability": 0.2548828125}, {"start": 1870.71, "end": 1870.71, "word": " message", "probability": 0.80078125}, {"start": 1870.71, "end": 1870.77, "word": " to", "probability": 0.87744140625}, {"start": 1870.77, "end": 1870.99, "word": " B,", "probability": 0.97021484375}, {"start": 1871.21, "end": 1871.27, "word": " but", "probability": 0.79443359375}, {"start": 1871.27, "end": 1871.47, "word": " doesn't", "probability": 0.579345703125}, {"start": 1871.47, "end": 1871.79, "word": " send", "probability": 0.374267578125}, {"start": 1871.79, "end": 1872.09, "word": " a", "probability": 0.1708984375}, {"start": 1872.09, "end": 1872.09, "word": " message", "probability": 0.8837890625}, {"start": 1872.09, "end": 1872.61, "word": " to", "probability": 0.9501953125}, {"start": 1872.61, "end": 1872.73, "word": " the", "probability": 0.35498046875}, {"start": 1872.73, "end": 1872.89, "word": " other", "probability": 0.65576171875}, {"start": 1872.89, "end": 1873.09, "word": " two,", "probability": 0.1719970703125}, {"start": 1873.29, "end": 1873.69, "word": " there", "probability": 0.52099609375}, {"start": 1873.69, "end": 1873.77, "word": " is", "probability": 0.72265625}, {"start": 1873.77, "end": 1873.89, "word": " no", "probability": 0.63427734375}, {"start": 1873.89, "end": 1874.13, "word": " one", "probability": 0.459228515625}, {"start": 1874.13, "end": 1874.25, "word": " who", "probability": 0.305419921875}, {"start": 1874.25, "end": 1874.39, "word": " sends", "probability": 0.50146484375}, {"start": 1874.39, "end": 1874.51, "word": " a", "probability": 0.35302734375}, {"start": 1874.51, "end": 1874.69, "word": " message", "probability": 0.849609375}, {"start": 1874.69, "end": 1874.87, "word": " to", "probability": 0.822265625}, {"start": 1874.87, "end": 1874.87, "word": " only", "probability": 0.3740234375}, {"start": 1874.87, "end": 1874.95, "word": " one", "probability": 0.9267578125}, {"start": 1874.95, "end": 1875.01, "word": " element,", "probability": 0.69091796875}, {"start": 1875.61, "end": 1875.79, "word": " you", "probability": 0.75830078125}, {"start": 1875.79, "end": 1875.99, "word": " have", "probability": 0.3662109375}, {"start": 1875.99, "end": 1876.21, "word": " to", "probability": 0.96630859375}, {"start": 1876.21, "end": 1876.35, "word": " send", "probability": 0.85107421875}, {"start": 1876.35, "end": 1876.41, "word": " a", "probability": 0.80029296875}, {"start": 1876.41, "end": 1876.41, "word": " message", "probability": 0.92724609375}, {"start": 1876.41, "end": 1876.53, "word": " to", "probability": 0.958984375}, {"start": 1876.53, "end": 1876.83, "word": " everyone,", "probability": 0.298095703125}, {"start": 1877.37, "end": 1877.61, "word": " but", "probability": 0.8056640625}, {"start": 1877.61, "end": 1877.93, "word": " then", "probability": 0.5986328125}, {"start": 1877.93, "end": 1878.29, "word": " B", "probability": 0.91357421875}, {"start": 1878.29, "end": 1879.01, "word": " decides", "probability": 0.4453125}, {"start": 1879.01, "end": 1879.91, "word": " whether", "probability": 0.428955078125}, {"start": 1879.91, "end": 1880.01, "word": " to", "probability": 0.5869140625}, {"start": 1880.01, "end": 1880.31, "word": " receive", "probability": 0.705078125}, {"start": 1880.31, "end": 1880.49, "word": " the", "probability": 0.77978515625}, {"start": 1880.49, "end": 1880.83, "word": " message", "probability": 0.89208984375}, {"start": 1880.83, "end": 1881.69, "word": " or", "probability": 0.9462890625}, {"start": 1881.69, "end": 1881.91, "word": " not,", "probability": 0.92919921875}, {"start": 1882.49, "end": 1883.29, "word": " for", "probability": 0.333251953125}, {"start": 1883.29, "end": 1883.63, "word": " example,", "probability": 0.96923828125}, {"start": 1884.09, "end": 1884.09, "word": " we", "probability": 0.318359375}, {"start": 1884.09, "end": 1884.39, "word": " can", "probability": 0.87109375}, {"start": 1884.39, "end": 1884.67, "word": " say", "probability": 0.9296875}, {"start": 1884.67, "end": 1884.91, "word": " that", "probability": 0.70263671875}, {"start": 1884.91, "end": 1885.05, "word": " if", "probability": 0.814453125}, {"start": 1885.05, "end": 1885.27, "word": " C", "probability": 0.84619140625}, {"start": 1885.27, "end": 1885.77, "word": " receives", "probability": 0.482666015625}, {"start": 1885.77, "end": 1885.95, "word": " a", "probability": 0.5703125}, {"start": 1885.95, "end": 1886.19, "word": " message", "probability": 0.8935546875}, {"start": 1886.19, "end": 1886.35, "word": " from", "probability": 0.88037109375}, {"start": 1886.35, "end": 1886.61, "word": " A,", "probability": 0.97412109375}], "temperature": 1.0}, {"id": 74, "seek": 191196, "start": 1887.5, "end": 1911.96, "text": " Ignore it, for example. That's it. The sem doesn't mean it takes messages from whom? From what? So it can do it this way. It can come before it executes, it sees the message. If the message, okay, get sender, get class, get .. or whatever. If the sender is an instance of what? Okay.", "tokens": [24754, 418, 309, 11, 337, 1365, 13, 663, 311, 309, 13, 440, 4361, 1177, 380, 914, 309, 2516, 7897, 490, 7101, 30, 3358, 437, 30, 407, 309, 393, 360, 309, 341, 636, 13, 467, 393, 808, 949, 309, 4454, 1819, 11, 309, 8194, 264, 3636, 13, 759, 264, 3636, 11, 1392, 11, 483, 2845, 260, 11, 483, 1508, 11, 483, 4386, 420, 2035, 13, 759, 264, 2845, 260, 307, 364, 5197, 295, 437, 30, 1033, 13], "avg_logprob": -0.5856330890160102, "compression_ratio": 1.5777777777777777, "no_speech_prob": 3.3020973205566406e-05, "words": [{"start": 1887.5, "end": 1887.96, "word": " Ignore", "probability": 0.389739990234375}, {"start": 1887.96, "end": 1888.12, "word": " it,", "probability": 0.703125}, {"start": 1888.22, "end": 1888.28, "word": " for", "probability": 0.77734375}, {"start": 1888.28, "end": 1888.4, "word": " example.", "probability": 0.8974609375}, {"start": 1888.78, "end": 1888.88, "word": " That's", "probability": 0.54638671875}, {"start": 1888.88, "end": 1888.92, "word": " it.", "probability": 0.90380859375}, {"start": 1889.02, "end": 1889.12, "word": " The", "probability": 0.4169921875}, {"start": 1889.12, "end": 1889.32, "word": " sem", "probability": 0.04486083984375}, {"start": 1889.32, "end": 1889.62, "word": " doesn't", "probability": 0.8291015625}, {"start": 1889.62, "end": 1889.8, "word": " mean", "probability": 0.53271484375}, {"start": 1889.8, "end": 1889.92, "word": " it", "probability": 0.2427978515625}, {"start": 1889.92, "end": 1890.5, "word": " takes", "probability": 0.40087890625}, {"start": 1890.5, "end": 1890.86, "word": " messages", "probability": 0.63427734375}, {"start": 1890.86, "end": 1891.04, "word": " from", "probability": 0.83740234375}, {"start": 1891.04, "end": 1891.26, "word": " whom?", "probability": 0.53515625}, {"start": 1891.52, "end": 1891.88, "word": " From", "probability": 0.60302734375}, {"start": 1891.88, "end": 1892.02, "word": " what?", "probability": 0.369384765625}, {"start": 1892.18, "end": 1892.48, "word": " So", "probability": 0.63671875}, {"start": 1892.48, "end": 1892.58, "word": " it", "probability": 0.322265625}, {"start": 1892.58, "end": 1892.72, "word": " can", "probability": 0.82421875}, {"start": 1892.72, "end": 1892.9, "word": " do", "probability": 0.900390625}, {"start": 1892.9, "end": 1893.02, "word": " it", "probability": 0.8857421875}, {"start": 1893.02, "end": 1893.14, "word": " this", "probability": 0.51416015625}, {"start": 1893.14, "end": 1893.66, "word": " way.", "probability": 0.96044921875}, {"start": 1894.06, "end": 1894.38, "word": " It", "probability": 0.458984375}, {"start": 1894.38, "end": 1894.56, "word": " can", "probability": 0.7080078125}, {"start": 1894.56, "end": 1894.86, "word": " come", "probability": 0.62646484375}, {"start": 1894.86, "end": 1895.14, "word": " before", "probability": 0.775390625}, {"start": 1895.14, "end": 1895.72, "word": " it", "probability": 0.6806640625}, {"start": 1895.72, "end": 1896.18, "word": " executes,", "probability": 0.73095703125}, {"start": 1896.32, "end": 1896.44, "word": " it", "probability": 0.53857421875}, {"start": 1896.44, "end": 1896.66, "word": " sees", "probability": 0.385986328125}, {"start": 1896.66, "end": 1896.82, "word": " the", "probability": 0.90087890625}, {"start": 1896.82, "end": 1897.16, "word": " message.", "probability": 0.9111328125}, {"start": 1897.38, "end": 1897.8, "word": " If", "probability": 0.9404296875}, {"start": 1897.8, "end": 1897.94, "word": " the", "probability": 0.90283203125}, {"start": 1897.94, "end": 1898.36, "word": " message,", "probability": 0.9423828125}, {"start": 1899.18, "end": 1899.54, "word": " okay,", "probability": 0.492431640625}, {"start": 1899.84, "end": 1900.46, "word": " get", "probability": 0.28857421875}, {"start": 1900.46, "end": 1901.02, "word": " sender,", "probability": 0.79541015625}, {"start": 1901.76, "end": 1902.22, "word": " get", "probability": 0.95068359375}, {"start": 1902.22, "end": 1902.84, "word": " class,", "probability": 0.94921875}, {"start": 1903.48, "end": 1903.7, "word": " get", "probability": 0.88427734375}, {"start": 1903.7, "end": 1905.12, "word": " ..", "probability": 0.381591796875}, {"start": 1905.12, "end": 1905.26, "word": " or", "probability": 0.435302734375}, {"start": 1905.26, "end": 1905.6, "word": " whatever.", "probability": 0.10638427734375}, {"start": 1905.84, "end": 1905.98, "word": " If", "probability": 0.95556640625}, {"start": 1905.98, "end": 1906.18, "word": " the", "probability": 0.87841796875}, {"start": 1906.18, "end": 1906.6, "word": " sender", "probability": 0.94189453125}, {"start": 1906.6, "end": 1907.14, "word": " is", "probability": 0.246826171875}, {"start": 1907.14, "end": 1907.2, "word": " an", "probability": 0.716796875}, {"start": 1907.2, "end": 1907.72, "word": " instance", "probability": 0.97216796875}, {"start": 1907.72, "end": 1908.62, "word": " of", "probability": 0.97607421875}, {"start": 1908.62, "end": 1909.62, "word": " what?", "probability": 0.234130859375}, {"start": 1911.42, "end": 1911.96, "word": " Okay.", "probability": 0.58349609375}], "temperature": 1.0}, {"id": 75, "seek": 193798, "start": 1915.4, "end": 1937.98, "text": " for example ignore, don't do anything else, do this thing or you can do not if it's not .. here I told him if it's a here I'll tell him to do nothing yes, what is this here? c does nothing to enter the c so when you get a message from a", "tokens": [337, 1365, 11200, 11, 500, 380, 360, 1340, 1646, 11, 360, 341, 551, 420, 291, 393, 360, 406, 498, 309, 311, 406, 4386, 510, 286, 1907, 796, 498, 309, 311, 257, 510, 286, 603, 980, 796, 281, 360, 1825, 2086, 11, 437, 307, 341, 510, 30, 269, 775, 1825, 281, 3242, 264, 269, 370, 562, 291, 483, 257, 3636, 490, 257], "avg_logprob": -0.59475808855026, "compression_ratio": 1.58, "no_speech_prob": 5.304813385009766e-06, "words": [{"start": 1915.4, "end": 1915.88, "word": " for", "probability": 0.162353515625}, {"start": 1915.88, "end": 1916.1, "word": " example", "probability": 0.92041015625}, {"start": 1916.1, "end": 1916.52, "word": " ignore,", "probability": 0.642578125}, {"start": 1916.62, "end": 1916.8, "word": " don't", "probability": 0.815673828125}, {"start": 1916.8, "end": 1917.0, "word": " do", "probability": 0.90869140625}, {"start": 1917.0, "end": 1917.42, "word": " anything", "probability": 0.80029296875}, {"start": 1917.42, "end": 1918.04, "word": " else,", "probability": 0.62060546875}, {"start": 1919.26, "end": 1919.62, "word": " do", "probability": 0.806640625}, {"start": 1919.62, "end": 1919.98, "word": " this", "probability": 0.7734375}, {"start": 1919.98, "end": 1920.24, "word": " thing", "probability": 0.72021484375}, {"start": 1920.24, "end": 1922.28, "word": " or", "probability": 0.6240234375}, {"start": 1922.28, "end": 1922.4, "word": " you", "probability": 0.890625}, {"start": 1922.4, "end": 1922.56, "word": " can", "probability": 0.89404296875}, {"start": 1922.56, "end": 1922.76, "word": " do", "probability": 0.443359375}, {"start": 1922.76, "end": 1923.04, "word": " not", "probability": 0.206298828125}, {"start": 1923.04, "end": 1923.44, "word": " if", "probability": 0.42138671875}, {"start": 1923.44, "end": 1923.68, "word": " it's", "probability": 0.48974609375}, {"start": 1923.68, "end": 1923.7, "word": " not", "probability": 0.74267578125}, {"start": 1923.7, "end": 1924.26, "word": " ..", "probability": 0.273681640625}, {"start": 1924.26, "end": 1924.56, "word": " here", "probability": 0.2469482421875}, {"start": 1924.56, "end": 1924.66, "word": " I", "probability": 0.43505859375}, {"start": 1924.66, "end": 1924.82, "word": " told", "probability": 0.4306640625}, {"start": 1924.82, "end": 1924.94, "word": " him", "probability": 0.75390625}, {"start": 1924.94, "end": 1925.08, "word": " if", "probability": 0.802734375}, {"start": 1925.08, "end": 1925.38, "word": " it's", "probability": 0.75927734375}, {"start": 1925.38, "end": 1925.62, "word": " a", "probability": 0.572265625}, {"start": 1925.62, "end": 1926.66, "word": " here", "probability": 0.3779296875}, {"start": 1926.66, "end": 1926.8, "word": " I'll", "probability": 0.49859619140625}, {"start": 1926.8, "end": 1926.94, "word": " tell", "probability": 0.5205078125}, {"start": 1926.94, "end": 1927.04, "word": " him", "probability": 0.91796875}, {"start": 1927.04, "end": 1927.08, "word": " to", "probability": 0.421875}, {"start": 1927.08, "end": 1927.18, "word": " do", "probability": 0.9501953125}, {"start": 1927.18, "end": 1927.62, "word": " nothing", "probability": 0.884765625}, {"start": 1927.62, "end": 1930.08, "word": " yes,", "probability": 0.15283203125}, {"start": 1930.18, "end": 1930.38, "word": " what", "probability": 0.67919921875}, {"start": 1930.38, "end": 1930.38, "word": " is", "probability": 0.5712890625}, {"start": 1930.38, "end": 1930.52, "word": " this", "probability": 0.76416015625}, {"start": 1930.52, "end": 1931.86, "word": " here?", "probability": 0.6748046875}, {"start": 1932.16, "end": 1932.48, "word": " c", "probability": 0.321044921875}, {"start": 1932.48, "end": 1933.2, "word": " does", "probability": 0.90576171875}, {"start": 1933.2, "end": 1933.64, "word": " nothing", "probability": 0.826171875}, {"start": 1933.64, "end": 1934.92, "word": " to", "probability": 0.352783203125}, {"start": 1934.92, "end": 1935.2, "word": " enter", "probability": 0.77685546875}, {"start": 1935.2, "end": 1935.36, "word": " the", "probability": 0.400390625}, {"start": 1935.36, "end": 1935.58, "word": " c", "probability": 0.939453125}, {"start": 1935.58, "end": 1936.48, "word": " so", "probability": 0.11456298828125}, {"start": 1936.48, "end": 1936.88, "word": " when", "probability": 0.55322265625}, {"start": 1936.88, "end": 1937.06, "word": " you", "probability": 0.360107421875}, {"start": 1937.06, "end": 1937.2, "word": " get", "probability": 0.53466796875}, {"start": 1937.2, "end": 1937.32, "word": " a", "probability": 0.953125}, {"start": 1937.32, "end": 1937.54, "word": " message", "probability": 0.87646484375}, {"start": 1937.54, "end": 1937.72, "word": " from", "probability": 0.87060546875}, {"start": 1937.72, "end": 1937.98, "word": " a", "probability": 0.75}], "temperature": 1.0}, {"id": 76, "seek": 196668, "start": 1938.8, "end": 1966.68, "text": " he will not do anything if I run this A sends a message if C receives a message from A what does C do? C does nothing this is one solution the other solution is that you can specialize the messages for example this is the financial department BGA wants to send a financial message to whom? to the financial department BGA makes a message of finance message type", "tokens": [415, 486, 406, 360, 1340, 498, 286, 1190, 341, 316, 14790, 257, 3636, 498, 383, 20717, 257, 3636, 490, 316, 437, 775, 383, 360, 30, 383, 775, 1825, 341, 307, 472, 3827, 264, 661, 3827, 307, 300, 291, 393, 37938, 264, 7897, 337, 1365, 341, 307, 264, 4669, 5882, 363, 12570, 2738, 281, 2845, 257, 4669, 3636, 281, 7101, 30, 281, 264, 4669, 5882, 363, 12570, 1669, 257, 3636, 295, 10719, 3636, 2010], "avg_logprob": -0.5553209443350096, "compression_ratio": 1.8756476683937824, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 1938.8, "end": 1939.18, "word": " he", "probability": 0.17724609375}, {"start": 1939.18, "end": 1939.36, "word": " will", "probability": 0.30322265625}, {"start": 1939.36, "end": 1939.36, "word": " not", "probability": 0.8798828125}, {"start": 1939.36, "end": 1939.68, "word": " do", "probability": 0.7568359375}, {"start": 1939.68, "end": 1939.98, "word": " anything", "probability": 0.71826171875}, {"start": 1939.98, "end": 1940.42, "word": " if", "probability": 0.11041259765625}, {"start": 1940.42, "end": 1940.76, "word": " I", "probability": 0.515625}, {"start": 1940.76, "end": 1941.3, "word": " run", "probability": 0.365478515625}, {"start": 1941.3, "end": 1941.52, "word": " this", "probability": 0.2071533203125}, {"start": 1941.52, "end": 1941.68, "word": " A", "probability": 0.295654296875}, {"start": 1941.68, "end": 1942.12, "word": " sends", "probability": 0.1971435546875}, {"start": 1942.12, "end": 1942.48, "word": " a", "probability": 0.337646484375}, {"start": 1942.48, "end": 1942.8, "word": " message", "probability": 0.85888671875}, {"start": 1942.8, "end": 1943.76, "word": " if", "probability": 0.51904296875}, {"start": 1943.76, "end": 1943.96, "word": " C", "probability": 0.327880859375}, {"start": 1943.96, "end": 1944.38, "word": " receives", "probability": 0.24560546875}, {"start": 1944.38, "end": 1944.56, "word": " a", "probability": 0.8974609375}, {"start": 1944.56, "end": 1944.82, "word": " message", "probability": 0.90185546875}, {"start": 1944.82, "end": 1944.94, "word": " from", "probability": 0.78759765625}, {"start": 1944.94, "end": 1945.28, "word": " A", "probability": 0.93310546875}, {"start": 1945.28, "end": 1946.46, "word": " what", "probability": 0.446044921875}, {"start": 1946.46, "end": 1946.78, "word": " does", "probability": 0.5537109375}, {"start": 1946.78, "end": 1947.12, "word": " C", "probability": 0.6875}, {"start": 1947.12, "end": 1947.44, "word": " do?", "probability": 0.88330078125}, {"start": 1947.64, "end": 1947.94, "word": " C", "probability": 0.7255859375}, {"start": 1947.94, "end": 1948.18, "word": " does", "probability": 0.9541015625}, {"start": 1948.18, "end": 1948.58, "word": " nothing", "probability": 0.865234375}, {"start": 1948.58, "end": 1949.72, "word": " this", "probability": 0.43603515625}, {"start": 1949.72, "end": 1949.84, "word": " is", "probability": 0.91845703125}, {"start": 1949.84, "end": 1950.14, "word": " one", "probability": 0.48828125}, {"start": 1950.14, "end": 1950.14, "word": " solution", "probability": 0.85107421875}, {"start": 1950.14, "end": 1950.62, "word": " the", "probability": 0.241943359375}, {"start": 1950.62, "end": 1951.2, "word": " other", "probability": 0.7158203125}, {"start": 1951.2, "end": 1951.3, "word": " solution", "probability": 0.908203125}, {"start": 1951.3, "end": 1951.9, "word": " is", "probability": 0.475830078125}, {"start": 1951.9, "end": 1953.52, "word": " that", "probability": 0.373291015625}, {"start": 1953.52, "end": 1953.74, "word": " you", "probability": 0.8828125}, {"start": 1953.74, "end": 1954.02, "word": " can", "probability": 0.8876953125}, {"start": 1954.02, "end": 1954.44, "word": " specialize", "probability": 0.3623046875}, {"start": 1954.44, "end": 1954.6, "word": " the", "probability": 0.42724609375}, {"start": 1954.6, "end": 1954.96, "word": " messages", "probability": 0.65673828125}, {"start": 1954.96, "end": 1956.86, "word": " for", "probability": 0.4033203125}, {"start": 1956.86, "end": 1957.16, "word": " example", "probability": 0.93408203125}, {"start": 1957.16, "end": 1957.44, "word": " this", "probability": 0.6015625}, {"start": 1957.44, "end": 1957.52, "word": " is", "probability": 0.86572265625}, {"start": 1957.52, "end": 1957.86, "word": " the", "probability": 0.62646484375}, {"start": 1957.86, "end": 1958.08, "word": " financial", "probability": 0.74658203125}, {"start": 1958.08, "end": 1959.56, "word": " department", "probability": 0.38330078125}, {"start": 1959.56, "end": 1960.52, "word": " BGA", "probability": 0.49267578125}, {"start": 1960.52, "end": 1961.16, "word": " wants", "probability": 0.4453125}, {"start": 1961.16, "end": 1961.28, "word": " to", "probability": 0.9580078125}, {"start": 1961.28, "end": 1961.46, "word": " send", "probability": 0.83349609375}, {"start": 1961.46, "end": 1962.0, "word": " a", "probability": 0.8798828125}, {"start": 1962.0, "end": 1962.16, "word": " financial", "probability": 0.76953125}, {"start": 1962.16, "end": 1962.3, "word": " message", "probability": 0.90771484375}, {"start": 1962.3, "end": 1962.46, "word": " to", "probability": 0.90185546875}, {"start": 1962.46, "end": 1962.6, "word": " whom?", "probability": 0.486328125}, {"start": 1963.18, "end": 1963.3, "word": " to", "probability": 0.61279296875}, {"start": 1963.3, "end": 1963.64, "word": " the", "probability": 0.8271484375}, {"start": 1963.64, "end": 1963.78, "word": " financial", "probability": 0.78173828125}, {"start": 1963.78, "end": 1963.98, "word": " department", "probability": 0.86328125}, {"start": 1963.98, "end": 1964.9, "word": " BGA", "probability": 0.62255859375}, {"start": 1964.9, "end": 1965.02, "word": " makes", "probability": 0.288330078125}, {"start": 1965.02, "end": 1965.16, "word": " a", "probability": 0.93359375}, {"start": 1965.16, "end": 1965.4, "word": " message", "probability": 0.5888671875}, {"start": 1965.4, "end": 1965.5, "word": " of", "probability": 0.46484375}, {"start": 1965.5, "end": 1966.04, "word": " finance", "probability": 0.41015625}, {"start": 1966.04, "end": 1966.68, "word": " message", "probability": 0.91552734375}, {"start": 1966.68, "end": 1966.68, "word": " type", "probability": 0.857421875}], "temperature": 1.0}, {"id": 77, "seek": 199569, "start": 1967.59, "end": 1995.69, "text": " and the finance message, all the others check if the message is finance, if it is finance, you don't receive it and this one says if it is finance, you don't receive it, if it is finance, you receive it how do we do this thing? nothing, I don't have a class called bus message I can make a new message called finance message, this is a new class and I say this finance message extends bus message", "tokens": [293, 264, 10719, 3636, 11, 439, 264, 2357, 1520, 498, 264, 3636, 307, 10719, 11, 498, 309, 307, 10719, 11, 291, 500, 380, 4774, 309, 293, 341, 472, 1619, 498, 309, 307, 10719, 11, 291, 500, 380, 4774, 309, 11, 498, 309, 307, 10719, 11, 291, 4774, 309, 577, 360, 321, 360, 341, 551, 30, 1825, 11, 286, 500, 380, 362, 257, 1508, 1219, 1255, 3636, 286, 393, 652, 257, 777, 3636, 1219, 10719, 3636, 11, 341, 307, 257, 777, 1508, 293, 286, 584, 341, 10719, 3636, 26448, 1255, 3636], "avg_logprob": -0.5044642713043715, "compression_ratio": 2.281609195402299, "no_speech_prob": 1.1742115020751953e-05, "words": [{"start": 1967.59, "end": 1968.09, "word": " and", "probability": 0.127685546875}, {"start": 1968.09, "end": 1968.19, "word": " the", "probability": 0.4443359375}, {"start": 1968.19, "end": 1968.47, "word": " finance", "probability": 0.798828125}, {"start": 1968.47, "end": 1968.99, "word": " message,", "probability": 0.93896484375}, {"start": 1969.47, "end": 1970.21, "word": " all", "probability": 0.408447265625}, {"start": 1970.21, "end": 1970.33, "word": " the", "probability": 0.356689453125}, {"start": 1970.33, "end": 1970.59, "word": " others", "probability": 0.440673828125}, {"start": 1970.59, "end": 1970.91, "word": " check", "probability": 0.57177734375}, {"start": 1970.91, "end": 1971.73, "word": " if", "probability": 0.277099609375}, {"start": 1971.73, "end": 1971.93, "word": " the", "probability": 0.60693359375}, {"start": 1971.93, "end": 1972.25, "word": " message", "probability": 0.82080078125}, {"start": 1972.25, "end": 1972.37, "word": " is", "probability": 0.75927734375}, {"start": 1972.37, "end": 1972.83, "word": " finance,", "probability": 0.61669921875}, {"start": 1972.95, "end": 1973.01, "word": " if", "probability": 0.447021484375}, {"start": 1973.01, "end": 1973.21, "word": " it", "probability": 0.69970703125}, {"start": 1973.21, "end": 1973.25, "word": " is", "probability": 0.61865234375}, {"start": 1973.25, "end": 1973.25, "word": " finance,", "probability": 0.931640625}, {"start": 1973.29, "end": 1973.33, "word": " you", "probability": 0.2447509765625}, {"start": 1973.33, "end": 1973.41, "word": " don't", "probability": 0.77392578125}, {"start": 1973.41, "end": 1973.69, "word": " receive", "probability": 0.338134765625}, {"start": 1973.69, "end": 1974.05, "word": " it", "probability": 0.7939453125}, {"start": 1974.05, "end": 1974.75, "word": " and", "probability": 0.580078125}, {"start": 1974.75, "end": 1974.95, "word": " this", "probability": 0.525390625}, {"start": 1974.95, "end": 1975.01, "word": " one", "probability": 0.313232421875}, {"start": 1975.01, "end": 1975.19, "word": " says", "probability": 0.60498046875}, {"start": 1975.19, "end": 1975.35, "word": " if", "probability": 0.5830078125}, {"start": 1975.35, "end": 1975.49, "word": " it", "probability": 0.72119140625}, {"start": 1975.49, "end": 1975.49, "word": " is", "probability": 0.66748046875}, {"start": 1975.49, "end": 1975.79, "word": " finance,", "probability": 0.95751953125}, {"start": 1975.89, "end": 1976.17, "word": " you", "probability": 0.254150390625}, {"start": 1976.17, "end": 1976.35, "word": " don't", "probability": 0.685791015625}, {"start": 1976.35, "end": 1976.83, "word": " receive", "probability": 0.71923828125}, {"start": 1976.83, "end": 1976.95, "word": " it,", "probability": 0.8515625}, {"start": 1977.07, "end": 1977.15, "word": " if", "probability": 0.6806640625}, {"start": 1977.15, "end": 1977.37, "word": " it", "probability": 0.84033203125}, {"start": 1977.37, "end": 1977.37, "word": " is", "probability": 0.9111328125}, {"start": 1977.37, "end": 1977.81, "word": " finance,", "probability": 0.9599609375}, {"start": 1977.93, "end": 1977.95, "word": " you", "probability": 0.66845703125}, {"start": 1977.95, "end": 1978.05, "word": " receive", "probability": 0.400390625}, {"start": 1978.05, "end": 1978.33, "word": " it", "probability": 0.9384765625}, {"start": 1978.33, "end": 1979.61, "word": " how", "probability": 0.1226806640625}, {"start": 1979.61, "end": 1980.27, "word": " do", "probability": 0.47802734375}, {"start": 1980.27, "end": 1980.31, "word": " we", "probability": 0.81689453125}, {"start": 1980.31, "end": 1980.43, "word": " do", "probability": 0.88916015625}, {"start": 1980.43, "end": 1980.55, "word": " this", "probability": 0.81982421875}, {"start": 1980.55, "end": 1980.77, "word": " thing?", "probability": 0.2890625}, {"start": 1981.21, "end": 1981.41, "word": " nothing,", "probability": 0.402587890625}, {"start": 1982.09, "end": 1982.29, "word": " I", "probability": 0.40283203125}, {"start": 1982.29, "end": 1982.29, "word": " don't", "probability": 0.71923828125}, {"start": 1982.29, "end": 1983.11, "word": " have", "probability": 0.83984375}, {"start": 1983.11, "end": 1983.69, "word": " a", "probability": 0.7548828125}, {"start": 1983.69, "end": 1983.99, "word": " class", "probability": 0.97216796875}, {"start": 1983.99, "end": 1984.35, "word": " called", "probability": 0.5234375}, {"start": 1984.35, "end": 1984.69, "word": " bus", "probability": 0.857421875}, {"start": 1984.69, "end": 1985.07, "word": " message", "probability": 0.91552734375}, {"start": 1985.07, "end": 1986.39, "word": " I", "probability": 0.280029296875}, {"start": 1986.39, "end": 1986.65, "word": " can", "probability": 0.876953125}, {"start": 1986.65, "end": 1986.89, "word": " make", "probability": 0.603515625}, {"start": 1986.89, "end": 1987.23, "word": " a", "probability": 0.66748046875}, {"start": 1987.23, "end": 1987.81, "word": " new", "probability": 0.88037109375}, {"start": 1987.81, "end": 1987.81, "word": " message", "probability": 0.70263671875}, {"start": 1987.81, "end": 1988.15, "word": " called", "probability": 0.6103515625}, {"start": 1988.15, "end": 1988.81, "word": " finance", "probability": 0.9580078125}, {"start": 1988.81, "end": 1989.97, "word": " message,", "probability": 0.93505859375}, {"start": 1990.03, "end": 1990.13, "word": " this", "probability": 0.74951171875}, {"start": 1990.13, "end": 1990.19, "word": " is", "probability": 0.92578125}, {"start": 1990.19, "end": 1990.27, "word": " a", "probability": 0.9521484375}, {"start": 1990.27, "end": 1990.71, "word": " new", "probability": 0.908203125}, {"start": 1990.71, "end": 1990.71, "word": " class", "probability": 0.95703125}, {"start": 1990.71, "end": 1991.63, "word": " and", "probability": 0.59423828125}, {"start": 1991.63, "end": 1991.69, "word": " I", "probability": 0.88720703125}, {"start": 1991.69, "end": 1991.81, "word": " say", "probability": 0.55615234375}, {"start": 1991.81, "end": 1992.01, "word": " this", "probability": 0.414794921875}, {"start": 1992.01, "end": 1992.33, "word": " finance", "probability": 0.9501953125}, {"start": 1992.33, "end": 1992.75, "word": " message", "probability": 0.90576171875}, {"start": 1992.75, "end": 1993.63, "word": " extends", "probability": 0.9033203125}, {"start": 1993.63, "end": 1995.29, "word": " bus", "probability": 0.84716796875}, {"start": 1995.29, "end": 1995.69, "word": " message", "probability": 0.92041015625}], "temperature": 1.0}, {"id": 78, "seek": 202484, "start": 1997.48, "end": 2024.84, "text": " and here also make it T and here also T you can add new attributes specific to whom in this message this message is related to financial matters which should be followed only by D now A wants to send a financial message instead of getting an object from a bus message it gets an object from finance message", "tokens": [293, 510, 611, 652, 309, 314, 293, 510, 611, 314, 291, 393, 909, 777, 17212, 2685, 281, 7101, 294, 341, 3636, 341, 3636, 307, 4077, 281, 4669, 7001, 597, 820, 312, 6263, 787, 538, 413, 586, 316, 2738, 281, 2845, 257, 4669, 3636, 2602, 295, 1242, 364, 2657, 490, 257, 1255, 3636, 309, 2170, 364, 2657, 490, 10719, 3636], "avg_logprob": -0.5671874761581421, "compression_ratio": 1.764367816091954, "no_speech_prob": 7.3909759521484375e-06, "words": [{"start": 1997.4799999999998, "end": 1998.12, "word": " and", "probability": 0.1690673828125}, {"start": 1998.12, "end": 1998.32, "word": " here", "probability": 0.56640625}, {"start": 1998.32, "end": 1998.58, "word": " also", "probability": 0.4140625}, {"start": 1998.58, "end": 1998.78, "word": " make", "probability": 0.177978515625}, {"start": 1998.78, "end": 1998.92, "word": " it", "probability": 0.8427734375}, {"start": 1998.92, "end": 1999.18, "word": " T", "probability": 0.5166015625}, {"start": 1999.18, "end": 2001.38, "word": " and", "probability": 0.734375}, {"start": 2001.38, "end": 2001.7, "word": " here", "probability": 0.7509765625}, {"start": 2001.7, "end": 2002.2, "word": " also", "probability": 0.55615234375}, {"start": 2002.2, "end": 2002.66, "word": " T", "probability": 0.869140625}, {"start": 2002.66, "end": 2003.58, "word": " you", "probability": 0.6005859375}, {"start": 2003.58, "end": 2003.76, "word": " can", "probability": 0.90478515625}, {"start": 2003.76, "end": 2004.0, "word": " add", "probability": 0.37109375}, {"start": 2004.0, "end": 2004.12, "word": " new", "probability": 0.751953125}, {"start": 2004.12, "end": 2004.82, "word": " attributes", "probability": 0.8447265625}, {"start": 2004.82, "end": 2005.2, "word": " specific", "probability": 0.110107421875}, {"start": 2005.2, "end": 2005.36, "word": " to", "probability": 0.79833984375}, {"start": 2005.36, "end": 2005.58, "word": " whom", "probability": 0.265869140625}, {"start": 2005.58, "end": 2006.68, "word": " in", "probability": 0.6044921875}, {"start": 2006.68, "end": 2007.36, "word": " this", "probability": 0.8681640625}, {"start": 2007.36, "end": 2007.36, "word": " message", "probability": 0.77783203125}, {"start": 2007.36, "end": 2009.6, "word": " this", "probability": 0.26171875}, {"start": 2009.6, "end": 2010.3, "word": " message", "probability": 0.818359375}, {"start": 2010.3, "end": 2010.82, "word": " is", "probability": 0.27685546875}, {"start": 2010.82, "end": 2010.98, "word": " related", "probability": 0.7431640625}, {"start": 2010.98, "end": 2011.22, "word": " to", "probability": 0.9169921875}, {"start": 2011.22, "end": 2011.72, "word": " financial", "probability": 0.74462890625}, {"start": 2011.72, "end": 2011.96, "word": " matters", "probability": 0.52978515625}, {"start": 2011.96, "end": 2012.62, "word": " which", "probability": 0.335205078125}, {"start": 2012.62, "end": 2012.96, "word": " should", "probability": 0.439453125}, {"start": 2012.96, "end": 2013.16, "word": " be", "probability": 0.5244140625}, {"start": 2013.16, "end": 2013.32, "word": " followed", "probability": 0.11767578125}, {"start": 2013.32, "end": 2013.66, "word": " only", "probability": 0.335693359375}, {"start": 2013.66, "end": 2014.62, "word": " by", "probability": 0.873046875}, {"start": 2014.62, "end": 2015.42, "word": " D", "probability": 0.572265625}, {"start": 2015.42, "end": 2016.5, "word": " now", "probability": 0.54052734375}, {"start": 2016.5, "end": 2017.06, "word": " A", "probability": 0.6396484375}, {"start": 2017.06, "end": 2017.26, "word": " wants", "probability": 0.58544921875}, {"start": 2017.26, "end": 2017.36, "word": " to", "probability": 0.96533203125}, {"start": 2017.36, "end": 2017.48, "word": " send", "probability": 0.81103515625}, {"start": 2017.48, "end": 2017.94, "word": " a", "probability": 0.88037109375}, {"start": 2017.94, "end": 2018.1, "word": " financial", "probability": 0.83740234375}, {"start": 2018.1, "end": 2018.88, "word": " message", "probability": 0.87158203125}, {"start": 2018.88, "end": 2019.52, "word": " instead", "probability": 0.61181640625}, {"start": 2019.52, "end": 2019.64, "word": " of", "probability": 0.95751953125}, {"start": 2019.64, "end": 2019.82, "word": " getting", "probability": 0.1527099609375}, {"start": 2019.82, "end": 2019.98, "word": " an", "probability": 0.40185546875}, {"start": 2019.98, "end": 2020.22, "word": " object", "probability": 0.970703125}, {"start": 2020.22, "end": 2020.4, "word": " from", "probability": 0.8564453125}, {"start": 2020.4, "end": 2020.52, "word": " a", "probability": 0.37548828125}, {"start": 2020.52, "end": 2020.62, "word": " bus", "probability": 0.79150390625}, {"start": 2020.62, "end": 2021.08, "word": " message", "probability": 0.8876953125}, {"start": 2021.08, "end": 2022.12, "word": " it", "probability": 0.385986328125}, {"start": 2022.12, "end": 2022.26, "word": " gets", "probability": 0.578125}, {"start": 2022.26, "end": 2022.68, "word": " an", "probability": 0.75634765625}, {"start": 2022.68, "end": 2022.68, "word": " object", "probability": 0.98095703125}, {"start": 2022.68, "end": 2022.82, "word": " from", "probability": 0.8720703125}, {"start": 2022.82, "end": 2024.22, "word": " finance", "probability": 0.51806640625}, {"start": 2024.22, "end": 2024.84, "word": " message", "probability": 0.9140625}], "temperature": 1.0}, {"id": 79, "seek": 203773, "start": 2027.53, "end": 2037.73, "text": "high finance message. So you have to specify what message you want to send. Now, who is supposed to receive this message? Religion.", "tokens": [21454, 10719, 3636, 13, 407, 291, 362, 281, 16500, 437, 3636, 291, 528, 281, 2845, 13, 823, 11, 567, 307, 3442, 281, 4774, 341, 3636, 30, 40127, 13], "avg_logprob": -0.813038784882118, "compression_ratio": 1.2476190476190476, "no_speech_prob": 1.1742115020751953e-05, "words": [{"start": 2027.53, "end": 2027.83, "word": "high", "probability": 0.143310546875}, {"start": 2027.83, "end": 2028.45, "word": " finance", "probability": 0.94482421875}, {"start": 2028.45, "end": 2029.93, "word": " message.", "probability": 0.82666015625}, {"start": 2029.97, "end": 2030.09, "word": " So", "probability": 0.47705078125}, {"start": 2030.09, "end": 2030.37, "word": " you", "probability": 0.56103515625}, {"start": 2030.37, "end": 2030.37, "word": " have", "probability": 0.167724609375}, {"start": 2030.37, "end": 2030.65, "word": " to", "probability": 0.92333984375}, {"start": 2030.65, "end": 2031.11, "word": " specify", "probability": 0.2861328125}, {"start": 2031.11, "end": 2031.59, "word": " what", "probability": 0.31787109375}, {"start": 2031.59, "end": 2032.45, "word": " message", "probability": 0.2330322265625}, {"start": 2032.45, "end": 2033.09, "word": " you", "probability": 0.58642578125}, {"start": 2033.09, "end": 2033.23, "word": " want", "probability": 0.41796875}, {"start": 2033.23, "end": 2033.23, "word": " to", "probability": 0.8935546875}, {"start": 2033.23, "end": 2033.41, "word": " send.", "probability": 0.7421875}, {"start": 2034.47, "end": 2035.05, "word": " Now,", "probability": 0.56103515625}, {"start": 2035.15, "end": 2035.65, "word": " who", "probability": 0.2205810546875}, {"start": 2035.65, "end": 2035.79, "word": " is", "probability": 0.2900390625}, {"start": 2035.79, "end": 2035.93, "word": " supposed", "probability": 0.494140625}, {"start": 2035.93, "end": 2036.19, "word": " to", "probability": 0.9697265625}, {"start": 2036.19, "end": 2036.53, "word": " receive", "probability": 0.79833984375}, {"start": 2036.53, "end": 2036.79, "word": " this", "probability": 0.386962890625}, {"start": 2036.79, "end": 2036.85, "word": " message?", "probability": 0.58447265625}, {"start": 2037.15, "end": 2037.73, "word": " Religion.", "probability": 0.167724609375}], "temperature": 1.0}, {"id": 80, "seek": 205776, "start": 2039.24, "end": 2057.76, "text": " D checks the message, if in the end the method message received receives a bus message, bus message means any kind of subclass that you receive, but what do I do here? I check if the message is an instance of finance message", "tokens": [413, 13834, 264, 3636, 11, 498, 294, 264, 917, 264, 3170, 3636, 4613, 20717, 257, 1255, 3636, 11, 1255, 3636, 1355, 604, 733, 295, 1422, 11665, 300, 291, 4774, 11, 457, 437, 360, 286, 360, 510, 30, 286, 1520, 498, 264, 3636, 307, 364, 5197, 295, 10719, 3636], "avg_logprob": -0.5924744703331772, "compression_ratio": 1.6917293233082706, "no_speech_prob": 4.6312808990478516e-05, "words": [{"start": 2039.24, "end": 2039.84, "word": " D", "probability": 0.1766357421875}, {"start": 2039.84, "end": 2040.18, "word": " checks", "probability": 0.469970703125}, {"start": 2040.18, "end": 2040.4, "word": " the", "probability": 0.54345703125}, {"start": 2040.4, "end": 2040.72, "word": " message,", "probability": 0.72119140625}, {"start": 2040.9, "end": 2041.26, "word": " if", "probability": 0.53125}, {"start": 2041.26, "end": 2042.42, "word": " in", "probability": 0.2333984375}, {"start": 2042.42, "end": 2042.52, "word": " the", "probability": 0.86279296875}, {"start": 2042.52, "end": 2042.82, "word": " end", "probability": 0.81884765625}, {"start": 2042.82, "end": 2043.66, "word": " the", "probability": 0.52490234375}, {"start": 2043.66, "end": 2044.56, "word": " method", "probability": 0.3623046875}, {"start": 2044.56, "end": 2044.84, "word": " message", "probability": 0.367431640625}, {"start": 2044.84, "end": 2045.38, "word": " received", "probability": 0.64990234375}, {"start": 2045.38, "end": 2046.36, "word": " receives", "probability": 0.383056640625}, {"start": 2046.36, "end": 2047.06, "word": " a", "probability": 0.213623046875}, {"start": 2047.06, "end": 2047.22, "word": " bus", "probability": 0.560546875}, {"start": 2047.22, "end": 2047.6, "word": " message,", "probability": 0.8408203125}, {"start": 2047.66, "end": 2047.94, "word": " bus", "probability": 0.2093505859375}, {"start": 2047.94, "end": 2048.26, "word": " message", "probability": 0.87158203125}, {"start": 2048.26, "end": 2048.46, "word": " means", "probability": 0.5732421875}, {"start": 2048.46, "end": 2048.76, "word": " any", "probability": 0.8017578125}, {"start": 2048.76, "end": 2049.04, "word": " kind", "probability": 0.223388671875}, {"start": 2049.04, "end": 2049.14, "word": " of", "probability": 0.93896484375}, {"start": 2049.14, "end": 2049.66, "word": " subclass", "probability": 0.875732421875}, {"start": 2049.66, "end": 2049.84, "word": " that", "probability": 0.162841796875}, {"start": 2049.84, "end": 2049.88, "word": " you", "probability": 0.4365234375}, {"start": 2049.88, "end": 2050.12, "word": " receive,", "probability": 0.51416015625}, {"start": 2050.78, "end": 2050.94, "word": " but", "probability": 0.65185546875}, {"start": 2050.94, "end": 2051.32, "word": " what", "probability": 0.6533203125}, {"start": 2051.32, "end": 2051.46, "word": " do", "probability": 0.364990234375}, {"start": 2051.46, "end": 2051.46, "word": " I", "probability": 0.88720703125}, {"start": 2051.46, "end": 2051.68, "word": " do", "probability": 0.9375}, {"start": 2051.68, "end": 2051.84, "word": " here?", "probability": 0.77734375}, {"start": 2051.88, "end": 2051.94, "word": " I", "probability": 0.94873046875}, {"start": 2051.94, "end": 2052.18, "word": " check", "probability": 0.9150390625}, {"start": 2052.18, "end": 2052.4, "word": " if", "probability": 0.8291015625}, {"start": 2052.4, "end": 2052.54, "word": " the", "probability": 0.8916015625}, {"start": 2052.54, "end": 2052.9, "word": " message", "probability": 0.9208984375}, {"start": 2052.9, "end": 2053.68, "word": " is", "probability": 0.6123046875}, {"start": 2053.68, "end": 2053.68, "word": " an", "probability": 0.74560546875}, {"start": 2053.68, "end": 2054.14, "word": " instance", "probability": 0.97607421875}, {"start": 2054.14, "end": 2054.5, "word": " of", "probability": 0.966796875}, {"start": 2054.5, "end": 2056.48, "word": " finance", "probability": 0.73291015625}, {"start": 2056.48, "end": 2057.76, "word": " message", "probability": 0.93994140625}], "temperature": 1.0}, {"id": 81, "seek": 206905, "start": 2058.51, "end": 2069.05, "text": "هنا إيش بده يعمل؟ بده يستقبلها و يعالجها تمام؟ أو حتى بده يكتب this is a final finance message", "tokens": [3224, 8315, 11933, 1829, 8592, 47525, 3224, 7251, 25957, 1211, 22807, 47525, 3224, 7251, 14851, 4587, 36150, 11296, 4032, 37495, 6027, 7435, 11296, 46811, 10943, 22807, 34051, 11331, 49975, 47525, 3224, 7251, 4117, 2655, 3555, 341, 307, 257, 2572, 10719, 3636], "avg_logprob": -0.15364583226896467, "compression_ratio": 1.2203389830508475, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2058.51, "end": 2059.09, "word": "هنا", "probability": 0.73583984375}, {"start": 2059.09, "end": 2059.25, "word": " إيش", "probability": 0.731201171875}, {"start": 2059.25, "end": 2059.43, "word": " بده", "probability": 0.900390625}, {"start": 2059.43, "end": 2060.57, "word": " يعمل؟", "probability": 0.9263916015625}, {"start": 2060.57, "end": 2061.27, "word": " بده", "probability": 0.941162109375}, {"start": 2061.27, "end": 2062.49, "word": " يستقبلها", "probability": 0.92373046875}, {"start": 2062.49, "end": 2062.59, "word": " و", "probability": 0.99365234375}, {"start": 2062.59, "end": 2063.33, "word": " يعالجها", "probability": 0.91064453125}, {"start": 2063.33, "end": 2064.39, "word": " تمام؟", "probability": 0.7288411458333334}, {"start": 2064.39, "end": 2064.55, "word": " أو", "probability": 0.76123046875}, {"start": 2064.55, "end": 2064.79, "word": " حتى", "probability": 0.89794921875}, {"start": 2064.79, "end": 2064.99, "word": " بده", "probability": 0.90771484375}, {"start": 2064.99, "end": 2065.41, "word": " يكتب", "probability": 0.8729248046875}, {"start": 2065.41, "end": 2065.63, "word": " this", "probability": 0.6591796875}, {"start": 2065.63, "end": 2066.31, "word": " is", "probability": 0.9638671875}, {"start": 2066.31, "end": 2066.61, "word": " a", "probability": 0.96044921875}, {"start": 2066.61, "end": 2067.05, "word": " final", "probability": 0.90966796875}, {"start": 2067.05, "end": 2068.15, "word": " finance", "probability": 0.94921875}, {"start": 2068.15, "end": 2069.05, "word": " message", "probability": 0.9345703125}], "temperature": 1.0}, {"id": 82, "seek": 209623, "start": 2070.49, "end": 2096.23, "text": "The rest should do what? If it's a finance message, what should it do? Ignore it. That's it. That's the idea. You can specialize that the sender should receive the message. Depending on the sender, if I get from A, I don't have a meaning in A. I have a meaning only in B. D has a meaning in B, for example. Through the sender to distinguish. Or through specializing the message.", "tokens": [2278, 1472, 820, 360, 437, 30, 759, 309, 311, 257, 10719, 3636, 11, 437, 820, 309, 360, 30, 24754, 418, 309, 13, 663, 311, 309, 13, 663, 311, 264, 1558, 13, 509, 393, 37938, 300, 264, 2845, 260, 820, 4774, 264, 3636, 13, 22539, 322, 264, 2845, 260, 11, 498, 286, 483, 490, 316, 11, 286, 500, 380, 362, 257, 3620, 294, 316, 13, 286, 362, 257, 3620, 787, 294, 363, 13, 413, 575, 257, 3620, 294, 363, 11, 337, 1365, 13, 8927, 264, 2845, 260, 281, 20206, 13, 1610, 807, 2121, 3319, 264, 3636, 13], "avg_logprob": -0.5093427835051546, "compression_ratio": 1.758139534883721, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2070.49, "end": 2070.73, "word": "The", "probability": 0.2188720703125}, {"start": 2070.73, "end": 2071.01, "word": " rest", "probability": 0.7119140625}, {"start": 2071.01, "end": 2071.47, "word": " should", "probability": 0.320068359375}, {"start": 2071.47, "end": 2071.75, "word": " do", "probability": 0.466552734375}, {"start": 2071.75, "end": 2072.03, "word": " what?", "probability": 0.318603515625}, {"start": 2072.11, "end": 2072.31, "word": " If", "probability": 0.451416015625}, {"start": 2072.31, "end": 2073.31, "word": " it's", "probability": 0.575927734375}, {"start": 2073.31, "end": 2073.33, "word": " a", "probability": 0.92919921875}, {"start": 2073.33, "end": 2073.53, "word": " finance", "probability": 0.72119140625}, {"start": 2073.53, "end": 2073.87, "word": " message,", "probability": 0.91748046875}, {"start": 2073.95, "end": 2074.05, "word": " what", "probability": 0.428955078125}, {"start": 2074.05, "end": 2074.11, "word": " should", "probability": 0.70068359375}, {"start": 2074.11, "end": 2074.15, "word": " it", "probability": 0.693359375}, {"start": 2074.15, "end": 2074.37, "word": " do?", "probability": 0.9560546875}, {"start": 2075.49, "end": 2075.89, "word": " Ignore", "probability": 0.6495361328125}, {"start": 2075.89, "end": 2076.55, "word": " it.", "probability": 0.77294921875}, {"start": 2077.41, "end": 2077.81, "word": " That's", "probability": 0.591552734375}, {"start": 2077.81, "end": 2077.87, "word": " it.", "probability": 0.76025390625}, {"start": 2077.99, "end": 2078.11, "word": " That's", "probability": 0.697265625}, {"start": 2078.11, "end": 2078.21, "word": " the", "probability": 0.86962890625}, {"start": 2078.21, "end": 2078.45, "word": " idea.", "probability": 0.83935546875}, {"start": 2078.59, "end": 2078.63, "word": " You", "probability": 0.360595703125}, {"start": 2078.63, "end": 2078.81, "word": " can", "probability": 0.7587890625}, {"start": 2078.81, "end": 2079.39, "word": " specialize", "probability": 0.2333984375}, {"start": 2079.39, "end": 2080.59, "word": " that", "probability": 0.273681640625}, {"start": 2080.59, "end": 2081.37, "word": " the", "probability": 0.591796875}, {"start": 2081.37, "end": 2081.77, "word": " sender", "probability": 0.543121337890625}, {"start": 2081.77, "end": 2081.89, "word": " should", "probability": 0.38720703125}, {"start": 2081.89, "end": 2082.17, "word": " receive", "probability": 0.334716796875}, {"start": 2082.17, "end": 2082.31, "word": " the", "probability": 0.81396484375}, {"start": 2082.31, "end": 2082.53, "word": " message.", "probability": 0.86572265625}, {"start": 2082.63, "end": 2082.81, "word": " Depending", "probability": 0.341064453125}, {"start": 2082.81, "end": 2082.97, "word": " on", "probability": 0.9501953125}, {"start": 2082.97, "end": 2083.11, "word": " the", "probability": 0.88037109375}, {"start": 2083.11, "end": 2083.43, "word": " sender,", "probability": 0.820068359375}, {"start": 2084.31, "end": 2084.49, "word": " if", "probability": 0.82958984375}, {"start": 2084.49, "end": 2084.69, "word": " I", "probability": 0.52001953125}, {"start": 2084.69, "end": 2085.45, "word": " get", "probability": 0.1300048828125}, {"start": 2085.45, "end": 2085.79, "word": " from", "probability": 0.3994140625}, {"start": 2085.79, "end": 2086.01, "word": " A,", "probability": 0.9150390625}, {"start": 2086.07, "end": 2086.17, "word": " I", "probability": 0.6533203125}, {"start": 2086.17, "end": 2086.29, "word": " don't", "probability": 0.7205810546875}, {"start": 2086.29, "end": 2086.47, "word": " have", "probability": 0.712890625}, {"start": 2086.47, "end": 2086.47, "word": " a", "probability": 0.55517578125}, {"start": 2086.47, "end": 2086.57, "word": " meaning", "probability": 0.80712890625}, {"start": 2086.57, "end": 2086.71, "word": " in", "probability": 0.716796875}, {"start": 2086.71, "end": 2086.91, "word": " A.", "probability": 0.9189453125}, {"start": 2087.59, "end": 2087.93, "word": " I", "probability": 0.5888671875}, {"start": 2087.93, "end": 2088.09, "word": " have", "probability": 0.452392578125}, {"start": 2088.09, "end": 2088.19, "word": " a", "probability": 0.71826171875}, {"start": 2088.19, "end": 2088.19, "word": " meaning", "probability": 0.90771484375}, {"start": 2088.19, "end": 2088.39, "word": " only", "probability": 0.677734375}, {"start": 2088.39, "end": 2088.51, "word": " in", "probability": 0.93896484375}, {"start": 2088.51, "end": 2088.73, "word": " B.", "probability": 0.98779296875}, {"start": 2089.29, "end": 2089.47, "word": " D", "probability": 0.70556640625}, {"start": 2089.47, "end": 2089.69, "word": " has", "probability": 0.57958984375}, {"start": 2089.69, "end": 2089.79, "word": " a", "probability": 0.8134765625}, {"start": 2089.79, "end": 2089.79, "word": " meaning", "probability": 0.87451171875}, {"start": 2089.79, "end": 2089.95, "word": " in", "probability": 0.90771484375}, {"start": 2089.95, "end": 2090.17, "word": " B,", "probability": 0.8525390625}, {"start": 2090.17, "end": 2090.37, "word": " for", "probability": 0.830078125}, {"start": 2090.37, "end": 2090.53, "word": " example.", "probability": 0.927734375}, {"start": 2091.59, "end": 2091.73, "word": " Through", "probability": 0.3544921875}, {"start": 2091.73, "end": 2092.07, "word": " the", "probability": 0.8974609375}, {"start": 2092.07, "end": 2092.37, "word": " sender", "probability": 0.92236328125}, {"start": 2092.37, "end": 2092.45, "word": " to", "probability": 0.2197265625}, {"start": 2092.45, "end": 2092.67, "word": " distinguish.", "probability": 0.56640625}, {"start": 2093.11, "end": 2093.51, "word": " Or", "probability": 0.9580078125}, {"start": 2093.51, "end": 2095.01, "word": " through", "probability": 0.59716796875}, {"start": 2095.01, "end": 2095.79, "word": " specializing", "probability": 0.6044921875}, {"start": 2095.79, "end": 2095.91, "word": " the", "probability": 0.865234375}, {"start": 2095.91, "end": 2096.23, "word": " message.", "probability": 0.92333984375}], "temperature": 1.0}, {"id": 83, "seek": 212651, "start": 2096.89, "end": 2126.51, "text": "Okay, each person, each component receives a specific type of message and delivers it by using it. But in the end, the bus doesn't understand. What does the bus do? It distributes to all the elements that determine whether you receive it or not. You can go to the point where they say, well, security means that you delivered the message like that, maybe they take the information. We don't deal with distributed systems and the internet. They are all elements in the same network. Okay, there is no security. I am the one who made them all and they are all present together. Okay?", "tokens": [8297, 11, 1184, 954, 11, 1184, 6542, 20717, 257, 2685, 2010, 295, 3636, 293, 24860, 309, 538, 1228, 309, 13, 583, 294, 264, 917, 11, 264, 1255, 1177, 380, 1223, 13, 708, 775, 264, 1255, 360, 30, 467, 4400, 1819, 281, 439, 264, 4959, 300, 6997, 1968, 291, 4774, 309, 420, 406, 13, 509, 393, 352, 281, 264, 935, 689, 436, 584, 11, 731, 11, 3825, 1355, 300, 291, 10144, 264, 3636, 411, 300, 11, 1310, 436, 747, 264, 1589, 13, 492, 500, 380, 2028, 365, 12631, 3652, 293, 264, 4705, 13, 814, 366, 439, 4959, 294, 264, 912, 3209, 13, 1033, 11, 456, 307, 572, 3825, 13, 286, 669, 264, 472, 567, 1027, 552, 439, 293, 436, 366, 439, 1974, 1214, 13, 1033, 30], "avg_logprob": -0.522321415325952, "compression_ratio": 1.8043478260869565, "no_speech_prob": 0.92236328125, "words": [{"start": 2096.89, "end": 2097.15, "word": "Okay,", "probability": 0.09527587890625}, {"start": 2097.27, "end": 2097.47, "word": " each", "probability": 0.609375}, {"start": 2097.47, "end": 2097.79, "word": " person,", "probability": 0.374267578125}, {"start": 2098.07, "end": 2098.25, "word": " each", "probability": 0.93505859375}, {"start": 2098.25, "end": 2098.75, "word": " component", "probability": 0.84423828125}, {"start": 2098.75, "end": 2099.13, "word": " receives", "probability": 0.53076171875}, {"start": 2099.13, "end": 2099.51, "word": " a", "probability": 0.93310546875}, {"start": 2099.51, "end": 2099.77, "word": " specific", "probability": 0.3984375}, {"start": 2099.77, "end": 2099.77, "word": " type", "probability": 0.70068359375}, {"start": 2099.77, "end": 2100.59, "word": " of", "probability": 0.94873046875}, {"start": 2100.59, "end": 2100.93, "word": " message", "probability": 0.705078125}, {"start": 2100.93, "end": 2101.09, "word": " and", "probability": 0.20166015625}, {"start": 2101.09, "end": 2101.33, "word": " delivers", "probability": 0.1683349609375}, {"start": 2101.33, "end": 2101.77, "word": " it", "probability": 0.400146484375}, {"start": 2101.77, "end": 2102.03, "word": " by", "probability": 0.1688232421875}, {"start": 2102.03, "end": 2102.37, "word": " using", "probability": 0.677734375}, {"start": 2102.37, "end": 2102.85, "word": " it.", "probability": 0.82275390625}, {"start": 2103.01, "end": 2103.25, "word": " But", "probability": 0.66162109375}, {"start": 2103.25, "end": 2103.39, "word": " in", "probability": 0.5224609375}, {"start": 2103.39, "end": 2103.55, "word": " the", "probability": 0.904296875}, {"start": 2103.55, "end": 2103.67, "word": " end,", "probability": 0.91064453125}, {"start": 2104.05, "end": 2104.19, "word": " the", "probability": 0.85107421875}, {"start": 2104.19, "end": 2104.43, "word": " bus", "probability": 0.6025390625}, {"start": 2104.43, "end": 2104.57, "word": " doesn't", "probability": 0.7330322265625}, {"start": 2104.57, "end": 2104.85, "word": " understand.", "probability": 0.666015625}, {"start": 2104.99, "end": 2105.09, "word": " What", "probability": 0.72265625}, {"start": 2105.09, "end": 2105.09, "word": " does", "probability": 0.90185546875}, {"start": 2105.09, "end": 2105.09, "word": " the", "probability": 0.830078125}, {"start": 2105.09, "end": 2105.23, "word": " bus", "probability": 0.939453125}, {"start": 2105.23, "end": 2105.79, "word": " do?", "probability": 0.9462890625}, {"start": 2106.53, "end": 2106.65, "word": " It", "probability": 0.6591796875}, {"start": 2106.65, "end": 2107.23, "word": " distributes", "probability": 0.774658203125}, {"start": 2107.23, "end": 2107.37, "word": " to", "probability": 0.2919921875}, {"start": 2107.37, "end": 2107.67, "word": " all", "probability": 0.73486328125}, {"start": 2107.67, "end": 2107.77, "word": " the", "probability": 0.190185546875}, {"start": 2107.77, "end": 2108.17, "word": " elements", "probability": 0.82470703125}, {"start": 2108.17, "end": 2108.37, "word": " that", "probability": 0.335693359375}, {"start": 2108.37, "end": 2108.75, "word": " determine", "probability": 0.724609375}, {"start": 2108.75, "end": 2108.93, "word": " whether", "probability": 0.55126953125}, {"start": 2108.93, "end": 2108.93, "word": " you", "probability": 0.4638671875}, {"start": 2108.93, "end": 2109.19, "word": " receive", "probability": 0.7255859375}, {"start": 2109.19, "end": 2109.33, "word": " it", "probability": 0.478515625}, {"start": 2109.33, "end": 2109.43, "word": " or", "probability": 0.953125}, {"start": 2109.43, "end": 2109.51, "word": " not.", "probability": 0.93505859375}, {"start": 2109.95, "end": 2109.95, "word": " You", "probability": 0.2210693359375}, {"start": 2109.95, "end": 2110.07, "word": " can", "probability": 0.476806640625}, {"start": 2110.07, "end": 2110.17, "word": " go", "probability": 0.5244140625}, {"start": 2110.17, "end": 2110.27, "word": " to", "probability": 0.78857421875}, {"start": 2110.27, "end": 2110.33, "word": " the", "probability": 0.529296875}, {"start": 2110.33, "end": 2110.51, "word": " point", "probability": 0.318115234375}, {"start": 2110.51, "end": 2110.63, "word": " where", "probability": 0.615234375}, {"start": 2110.63, "end": 2110.67, "word": " they", "probability": 0.6435546875}, {"start": 2110.67, "end": 2110.79, "word": " say,", "probability": 0.76611328125}, {"start": 2110.87, "end": 2110.97, "word": " well,", "probability": 0.155029296875}, {"start": 2111.01, "end": 2111.51, "word": " security", "probability": 0.82275390625}, {"start": 2111.51, "end": 2111.79, "word": " means", "probability": 0.443359375}, {"start": 2111.79, "end": 2112.09, "word": " that", "probability": 0.6201171875}, {"start": 2112.09, "end": 2112.99, "word": " you", "probability": 0.71435546875}, {"start": 2112.99, "end": 2113.33, "word": " delivered", "probability": 0.3779296875}, {"start": 2113.33, "end": 2113.53, "word": " the", "probability": 0.873046875}, {"start": 2113.53, "end": 2113.83, "word": " message", "probability": 0.9169921875}, {"start": 2113.83, "end": 2114.09, "word": " like", "probability": 0.366943359375}, {"start": 2114.09, "end": 2114.11, "word": " that,", "probability": 0.5048828125}, {"start": 2114.39, "end": 2114.61, "word": " maybe", "probability": 0.42626953125}, {"start": 2114.61, "end": 2114.77, "word": " they", "probability": 0.333984375}, {"start": 2114.77, "end": 2115.01, "word": " take", "probability": 0.200927734375}, {"start": 2115.01, "end": 2115.17, "word": " the", "probability": 0.7724609375}, {"start": 2115.17, "end": 2115.41, "word": " information.", "probability": 0.75}, {"start": 2115.95, "end": 2116.23, "word": " We", "probability": 0.92138671875}, {"start": 2116.23, "end": 2116.47, "word": " don't", "probability": 0.824462890625}, {"start": 2116.47, "end": 2116.69, "word": " deal", "probability": 0.76318359375}, {"start": 2116.69, "end": 2116.93, "word": " with", "probability": 0.8916015625}, {"start": 2116.93, "end": 2117.49, "word": " distributed", "probability": 0.68017578125}, {"start": 2117.49, "end": 2117.97, "word": " systems", "probability": 0.6669921875}, {"start": 2117.97, "end": 2118.17, "word": " and", "probability": 0.7314453125}, {"start": 2118.17, "end": 2118.29, "word": " the", "probability": 0.41259765625}, {"start": 2118.29, "end": 2118.63, "word": " internet.", "probability": 0.6416015625}, {"start": 2118.87, "end": 2118.99, "word": " They", "probability": 0.499267578125}, {"start": 2118.99, "end": 2119.11, "word": " are", "probability": 0.70458984375}, {"start": 2119.11, "end": 2119.41, "word": " all", "probability": 0.9306640625}, {"start": 2119.41, "end": 2120.57, "word": " elements", "probability": 0.8935546875}, {"start": 2120.57, "end": 2120.83, "word": " in", "probability": 0.7939453125}, {"start": 2120.83, "end": 2121.15, "word": " the", "probability": 0.919921875}, {"start": 2121.15, "end": 2121.15, "word": " same", "probability": 0.91259765625}, {"start": 2121.15, "end": 2121.29, "word": " network.", "probability": 0.387939453125}, {"start": 2122.17, "end": 2122.61, "word": " Okay,", "probability": 0.62890625}, {"start": 2122.63, "end": 2122.81, "word": " there", "probability": 0.8798828125}, {"start": 2122.81, "end": 2122.81, "word": " is", "probability": 0.80322265625}, {"start": 2122.81, "end": 2122.91, "word": " no", "probability": 0.9580078125}, {"start": 2122.91, "end": 2123.29, "word": " security.", "probability": 0.95654296875}, {"start": 2123.39, "end": 2123.57, "word": " I", "probability": 0.85791015625}, {"start": 2123.57, "end": 2123.61, "word": " am", "probability": 0.3427734375}, {"start": 2123.61, "end": 2123.69, "word": " the", "probability": 0.77197265625}, {"start": 2123.69, "end": 2123.85, "word": " one", "probability": 0.62353515625}, {"start": 2123.85, "end": 2123.85, "word": " who", "probability": 0.76953125}, {"start": 2123.85, "end": 2123.91, "word": " made", "probability": 0.4580078125}, {"start": 2123.91, "end": 2124.09, "word": " them", "probability": 0.41943359375}, {"start": 2124.09, "end": 2124.39, "word": " all", "probability": 0.81787109375}, {"start": 2124.39, "end": 2124.55, "word": " and", "probability": 0.443603515625}, {"start": 2124.55, "end": 2124.75, "word": " they", "probability": 0.86474609375}, {"start": 2124.75, "end": 2124.81, "word": " are", "probability": 0.61767578125}, {"start": 2124.81, "end": 2124.97, "word": " all", "probability": 0.90771484375}, {"start": 2124.97, "end": 2125.27, "word": " present", "probability": 0.3779296875}, {"start": 2125.27, "end": 2125.59, "word": " together.", "probability": 0.8212890625}, {"start": 2126.07, "end": 2126.51, "word": " Okay?", "probability": 0.74560546875}], "temperature": 1.0}, {"id": 84, "seek": 215192, "start": 2128.19, "end": 2151.93, "text": " Is the idea clear, guys? Okay, let's move on to the slide, okay? Now, the data bus, its goal, allows to send messages, events between components of an application. It allows sending messages or events between components in your application without them needing to know about each other.", "tokens": [1119, 264, 1558, 1850, 11, 1074, 30, 1033, 11, 718, 311, 1286, 322, 281, 264, 4137, 11, 1392, 30, 823, 11, 264, 1412, 1255, 11, 1080, 3387, 11, 4045, 281, 2845, 7897, 11, 3931, 1296, 6677, 295, 364, 3861, 13, 467, 4045, 7750, 7897, 420, 3931, 1296, 6677, 294, 428, 3861, 1553, 552, 18006, 281, 458, 466, 1184, 661, 13], "avg_logprob": -0.4395491861906208, "compression_ratio": 1.6494252873563218, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 2128.19, "end": 2128.45, "word": " Is", "probability": 0.294189453125}, {"start": 2128.45, "end": 2128.69, "word": " the", "probability": 0.53369140625}, {"start": 2128.69, "end": 2128.89, "word": " idea", "probability": 0.73681640625}, {"start": 2128.89, "end": 2128.91, "word": " clear,", "probability": 0.83837890625}, {"start": 2129.05, "end": 2129.31, "word": " guys?", "probability": 0.73193359375}, {"start": 2130.49, "end": 2130.85, "word": " Okay,", "probability": 0.242919921875}, {"start": 2130.93, "end": 2131.07, "word": " let's", "probability": 0.6962890625}, {"start": 2131.07, "end": 2132.49, "word": " move", "probability": 0.2027587890625}, {"start": 2132.49, "end": 2133.33, "word": " on", "probability": 0.346435546875}, {"start": 2133.33, "end": 2133.43, "word": " to", "probability": 0.765625}, {"start": 2133.43, "end": 2133.51, "word": " the", "probability": 0.66748046875}, {"start": 2133.51, "end": 2133.81, "word": " slide,", "probability": 0.5068359375}, {"start": 2133.89, "end": 2134.69, "word": " okay?", "probability": 0.54736328125}, {"start": 2136.37, "end": 2136.73, "word": " Now,", "probability": 0.564453125}, {"start": 2136.81, "end": 2136.93, "word": " the", "probability": 0.78515625}, {"start": 2136.93, "end": 2137.13, "word": " data", "probability": 0.30712890625}, {"start": 2137.13, "end": 2137.53, "word": " bus,", "probability": 0.919921875}, {"start": 2137.67, "end": 2137.89, "word": " its", "probability": 0.57861328125}, {"start": 2137.89, "end": 2138.15, "word": " goal,", "probability": 0.5419921875}, {"start": 2138.79, "end": 2139.27, "word": " allows", "probability": 0.79150390625}, {"start": 2139.27, "end": 2139.59, "word": " to", "probability": 0.88427734375}, {"start": 2139.59, "end": 2139.93, "word": " send", "probability": 0.8681640625}, {"start": 2139.93, "end": 2140.45, "word": " messages,", "probability": 0.89306640625}, {"start": 2140.65, "end": 2141.01, "word": " events", "probability": 0.90185546875}, {"start": 2141.01, "end": 2141.47, "word": " between", "probability": 0.58349609375}, {"start": 2141.47, "end": 2142.13, "word": " components", "probability": 0.9365234375}, {"start": 2142.13, "end": 2142.37, "word": " of", "probability": 0.9501953125}, {"start": 2142.37, "end": 2142.53, "word": " an", "probability": 0.95458984375}, {"start": 2142.53, "end": 2143.09, "word": " application.", "probability": 0.935546875}, {"start": 2143.59, "end": 2144.19, "word": " It", "probability": 0.57568359375}, {"start": 2144.19, "end": 2144.43, "word": " allows", "probability": 0.8818359375}, {"start": 2144.43, "end": 2145.11, "word": " sending", "probability": 0.468994140625}, {"start": 2145.11, "end": 2146.17, "word": " messages", "probability": 0.671875}, {"start": 2146.17, "end": 2146.41, "word": " or", "probability": 0.8798828125}, {"start": 2146.41, "end": 2146.91, "word": " events", "probability": 0.90478515625}, {"start": 2146.91, "end": 2147.41, "word": " between", "probability": 0.83837890625}, {"start": 2147.41, "end": 2148.07, "word": " components", "probability": 0.7919921875}, {"start": 2148.07, "end": 2148.21, "word": " in", "probability": 0.52490234375}, {"start": 2148.21, "end": 2148.25, "word": " your", "probability": 0.51611328125}, {"start": 2148.25, "end": 2148.65, "word": " application", "probability": 0.876953125}, {"start": 2148.65, "end": 2149.85, "word": " without", "probability": 0.517578125}, {"start": 2149.85, "end": 2150.37, "word": " them", "probability": 0.89599609375}, {"start": 2150.37, "end": 2150.71, "word": " needing", "probability": 0.91455078125}, {"start": 2150.71, "end": 2150.97, "word": " to", "probability": 0.97314453125}, {"start": 2150.97, "end": 2151.13, "word": " know", "probability": 0.8974609375}, {"start": 2151.13, "end": 2151.43, "word": " about", "probability": 0.89892578125}, {"start": 2151.43, "end": 2151.67, "word": " each", "probability": 0.93798828125}, {"start": 2151.67, "end": 2151.93, "word": " other.", "probability": 0.892578125}], "temperature": 1.0}, {"id": 85, "seek": 217805, "start": 2152.91, "end": 2178.05, "text": "What does it mean? Notice that A, B, C and D don't know anything about each other. The link between them is the bus. That's why it became easier. Okay? No one needs to be like the observer, because these don't register with this and these don't register with this. No, it's over. The link between them is the bus. He acted like the observer, but I made the observer independent here, an element in the middle.", "tokens": [3748, 775, 309, 914, 30, 13428, 300, 316, 11, 363, 11, 383, 293, 413, 500, 380, 458, 1340, 466, 1184, 661, 13, 440, 2113, 1296, 552, 307, 264, 1255, 13, 663, 311, 983, 309, 3062, 3571, 13, 1033, 30, 883, 472, 2203, 281, 312, 411, 264, 27878, 11, 570, 613, 500, 380, 7280, 365, 341, 293, 613, 500, 380, 7280, 365, 341, 13, 883, 11, 309, 311, 670, 13, 440, 2113, 1296, 552, 307, 264, 1255, 13, 634, 20359, 411, 264, 27878, 11, 457, 286, 1027, 264, 27878, 6695, 510, 11, 364, 4478, 294, 264, 2808, 13], "avg_logprob": -0.5213648214632151, "compression_ratio": 1.8340807174887892, "no_speech_prob": 8.225440979003906e-06, "words": [{"start": 2152.91, "end": 2153.19, "word": "What", "probability": 0.14208984375}, {"start": 2153.19, "end": 2153.37, "word": " does", "probability": 0.6953125}, {"start": 2153.37, "end": 2153.37, "word": " it", "probability": 0.38525390625}, {"start": 2153.37, "end": 2153.43, "word": " mean?", "probability": 0.95458984375}, {"start": 2153.77, "end": 2154.21, "word": " Notice", "probability": 0.48876953125}, {"start": 2154.21, "end": 2154.43, "word": " that", "probability": 0.72705078125}, {"start": 2154.43, "end": 2154.65, "word": " A,", "probability": 0.396240234375}, {"start": 2154.81, "end": 2155.01, "word": " B,", "probability": 0.71435546875}, {"start": 2155.17, "end": 2155.35, "word": " C", "probability": 0.921875}, {"start": 2155.35, "end": 2155.47, "word": " and", "probability": 0.66650390625}, {"start": 2155.47, "end": 2155.59, "word": " D", "probability": 0.9970703125}, {"start": 2155.59, "end": 2155.75, "word": " don't", "probability": 0.757080078125}, {"start": 2155.75, "end": 2156.03, "word": " know", "probability": 0.86279296875}, {"start": 2156.03, "end": 2156.31, "word": " anything", "probability": 0.63037109375}, {"start": 2156.31, "end": 2156.45, "word": " about", "probability": 0.86083984375}, {"start": 2156.45, "end": 2156.71, "word": " each", "probability": 0.93359375}, {"start": 2156.71, "end": 2156.73, "word": " other.", "probability": 0.87353515625}, {"start": 2157.45, "end": 2157.83, "word": " The", "probability": 0.283447265625}, {"start": 2157.83, "end": 2158.45, "word": " link", "probability": 0.365966796875}, {"start": 2158.45, "end": 2158.71, "word": " between", "probability": 0.73388671875}, {"start": 2158.71, "end": 2158.87, "word": " them", "probability": 0.8525390625}, {"start": 2158.87, "end": 2159.19, "word": " is", "probability": 0.86376953125}, {"start": 2159.19, "end": 2159.87, "word": " the", "probability": 0.63916015625}, {"start": 2159.87, "end": 2160.13, "word": " bus.", "probability": 0.65625}, {"start": 2160.25, "end": 2160.39, "word": " That's", "probability": 0.6470947265625}, {"start": 2160.39, "end": 2160.59, "word": " why", "probability": 0.88525390625}, {"start": 2160.59, "end": 2160.95, "word": " it", "probability": 0.59765625}, {"start": 2160.95, "end": 2161.17, "word": " became", "probability": 0.3115234375}, {"start": 2161.17, "end": 2161.53, "word": " easier.", "probability": 0.75390625}, {"start": 2162.43, "end": 2162.53, "word": " Okay?", "probability": 0.165771484375}, {"start": 2163.93, "end": 2164.21, "word": " No", "probability": 0.286376953125}, {"start": 2164.21, "end": 2165.39, "word": " one", "probability": 0.76220703125}, {"start": 2165.39, "end": 2165.83, "word": " needs", "probability": 0.66015625}, {"start": 2165.83, "end": 2165.97, "word": " to", "probability": 0.345947265625}, {"start": 2165.97, "end": 2165.97, "word": " be", "probability": 0.349853515625}, {"start": 2165.97, "end": 2165.97, "word": " like", "probability": 0.841796875}, {"start": 2165.97, "end": 2166.09, "word": " the", "probability": 0.60986328125}, {"start": 2166.09, "end": 2166.49, "word": " observer,", "probability": 0.80029296875}, {"start": 2166.65, "end": 2166.77, "word": " because", "probability": 0.2138671875}, {"start": 2166.77, "end": 2167.03, "word": " these", "probability": 0.423828125}, {"start": 2167.03, "end": 2167.19, "word": " don't", "probability": 0.62225341796875}, {"start": 2167.19, "end": 2167.47, "word": " register", "probability": 0.345458984375}, {"start": 2167.47, "end": 2167.71, "word": " with", "probability": 0.4765625}, {"start": 2167.71, "end": 2167.99, "word": " this", "probability": 0.70751953125}, {"start": 2167.99, "end": 2168.13, "word": " and", "probability": 0.2486572265625}, {"start": 2168.13, "end": 2168.41, "word": " these", "probability": 0.4619140625}, {"start": 2168.41, "end": 2168.61, "word": " don't", "probability": 0.95751953125}, {"start": 2168.61, "end": 2168.85, "word": " register", "probability": 0.91796875}, {"start": 2168.85, "end": 2169.09, "word": " with", "probability": 0.87548828125}, {"start": 2169.09, "end": 2169.37, "word": " this.", "probability": 0.740234375}, {"start": 2169.77, "end": 2169.95, "word": " No,", "probability": 0.701171875}, {"start": 2170.05, "end": 2170.37, "word": " it's", "probability": 0.50433349609375}, {"start": 2170.37, "end": 2170.59, "word": " over.", "probability": 0.398681640625}, {"start": 2171.19, "end": 2171.39, "word": " The", "probability": 0.8671875}, {"start": 2171.39, "end": 2171.69, "word": " link", "probability": 0.87548828125}, {"start": 2171.69, "end": 2171.93, "word": " between", "probability": 0.82958984375}, {"start": 2171.93, "end": 2172.07, "word": " them", "probability": 0.8984375}, {"start": 2172.07, "end": 2172.43, "word": " is", "probability": 0.93603515625}, {"start": 2172.43, "end": 2173.39, "word": " the", "probability": 0.90771484375}, {"start": 2173.39, "end": 2173.65, "word": " bus.", "probability": 0.947265625}, {"start": 2173.99, "end": 2174.33, "word": " He", "probability": 0.328125}, {"start": 2174.33, "end": 2174.71, "word": " acted", "probability": 0.32080078125}, {"start": 2174.71, "end": 2174.85, "word": " like", "probability": 0.81591796875}, {"start": 2174.85, "end": 2174.99, "word": " the", "probability": 0.7626953125}, {"start": 2174.99, "end": 2175.41, "word": " observer,", "probability": 0.875}, {"start": 2175.57, "end": 2175.69, "word": " but", "probability": 0.86572265625}, {"start": 2175.69, "end": 2175.89, "word": " I", "probability": 0.86376953125}, {"start": 2175.89, "end": 2176.09, "word": " made", "probability": 0.3408203125}, {"start": 2176.09, "end": 2176.21, "word": " the", "probability": 0.5029296875}, {"start": 2176.21, "end": 2176.59, "word": " observer", "probability": 0.96435546875}, {"start": 2176.59, "end": 2177.07, "word": " independent", "probability": 0.62353515625}, {"start": 2177.07, "end": 2177.31, "word": " here,", "probability": 0.56591796875}, {"start": 2177.37, "end": 2177.45, "word": " an", "probability": 0.283935546875}, {"start": 2177.45, "end": 2177.59, "word": " element", "probability": 0.93408203125}, {"start": 2177.59, "end": 2177.73, "word": " in", "probability": 0.83984375}, {"start": 2177.73, "end": 2177.81, "word": " the", "probability": 0.5341796875}, {"start": 2177.81, "end": 2178.05, "word": " middle.", "probability": 0.9580078125}], "temperature": 1.0}, {"id": 86, "seek": 220875, "start": 2179.37, "end": 2208.75, "text": " without them needing to know about each other they only need to know about the type of the message even being sent meaning that I just pick up the message and send it to them and the future sees what kind of message it is if it has a meaning to it, it takes it if it doesn't have a meaning to it, it leaves it he did like the observer pattern but means to a supporting money to money communication applicability when we use it", "tokens": [1553, 552, 18006, 281, 458, 466, 1184, 661, 436, 787, 643, 281, 458, 466, 264, 2010, 295, 264, 3636, 754, 885, 2279, 3620, 300, 286, 445, 1888, 493, 264, 3636, 293, 2845, 309, 281, 552, 293, 264, 2027, 8194, 437, 733, 295, 3636, 309, 307, 498, 309, 575, 257, 3620, 281, 309, 11, 309, 2516, 309, 498, 309, 1177, 380, 362, 257, 3620, 281, 309, 11, 309, 5510, 309, 415, 630, 411, 264, 27878, 5102, 457, 1355, 281, 257, 7231, 1460, 281, 1460, 6101, 2580, 2310, 562, 321, 764, 309], "avg_logprob": -0.41346154697648774, "compression_ratio": 1.8405172413793103, "no_speech_prob": 2.3245811462402344e-06, "words": [{"start": 2179.37, "end": 2179.81, "word": " without", "probability": 0.5703125}, {"start": 2179.81, "end": 2180.23, "word": " them", "probability": 0.89111328125}, {"start": 2180.23, "end": 2180.61, "word": " needing", "probability": 0.87646484375}, {"start": 2180.61, "end": 2180.81, "word": " to", "probability": 0.9716796875}, {"start": 2180.81, "end": 2180.93, "word": " know", "probability": 0.89599609375}, {"start": 2180.93, "end": 2181.23, "word": " about", "probability": 0.89599609375}, {"start": 2181.23, "end": 2181.45, "word": " each", "probability": 0.94384765625}, {"start": 2181.45, "end": 2181.75, "word": " other", "probability": 0.87646484375}, {"start": 2181.75, "end": 2182.29, "word": " they", "probability": 0.51318359375}, {"start": 2182.29, "end": 2182.73, "word": " only", "probability": 0.9150390625}, {"start": 2182.73, "end": 2183.07, "word": " need", "probability": 0.927734375}, {"start": 2183.07, "end": 2183.27, "word": " to", "probability": 0.97021484375}, {"start": 2183.27, "end": 2183.45, "word": " know", "probability": 0.89013671875}, {"start": 2183.45, "end": 2183.81, "word": " about", "probability": 0.89794921875}, {"start": 2183.81, "end": 2184.01, "word": " the", "probability": 0.8896484375}, {"start": 2184.01, "end": 2184.33, "word": " type", "probability": 0.97705078125}, {"start": 2184.33, "end": 2184.49, "word": " of", "probability": 0.9677734375}, {"start": 2184.49, "end": 2184.61, "word": " the", "probability": 0.71875}, {"start": 2184.61, "end": 2184.91, "word": " message", "probability": 0.91064453125}, {"start": 2184.91, "end": 2185.25, "word": " even", "probability": 0.7255859375}, {"start": 2185.25, "end": 2185.55, "word": " being", "probability": 0.91455078125}, {"start": 2185.55, "end": 2185.95, "word": " sent", "probability": 0.77978515625}, {"start": 2185.95, "end": 2188.11, "word": " meaning", "probability": 0.1514892578125}, {"start": 2188.11, "end": 2188.19, "word": " that", "probability": 0.289794921875}, {"start": 2188.19, "end": 2188.51, "word": " I", "probability": 0.53369140625}, {"start": 2188.51, "end": 2188.97, "word": " just", "probability": 0.253173828125}, {"start": 2188.97, "end": 2189.05, "word": " pick", "probability": 0.41015625}, {"start": 2189.05, "end": 2189.17, "word": " up", "probability": 0.77294921875}, {"start": 2189.17, "end": 2189.19, "word": " the", "probability": 0.81005859375}, {"start": 2189.19, "end": 2189.53, "word": " message", "probability": 0.85791015625}, {"start": 2189.53, "end": 2189.81, "word": " and", "probability": 0.884765625}, {"start": 2189.81, "end": 2190.01, "word": " send", "probability": 0.58740234375}, {"start": 2190.01, "end": 2190.45, "word": " it", "probability": 0.931640625}, {"start": 2190.45, "end": 2191.05, "word": " to", "probability": 0.311767578125}, {"start": 2191.05, "end": 2191.05, "word": " them", "probability": 0.40087890625}, {"start": 2191.05, "end": 2191.59, "word": " and", "probability": 0.491943359375}, {"start": 2191.59, "end": 2191.71, "word": " the", "probability": 0.78271484375}, {"start": 2191.71, "end": 2192.09, "word": " future", "probability": 0.36572265625}, {"start": 2192.09, "end": 2192.53, "word": " sees", "probability": 0.396728515625}, {"start": 2192.53, "end": 2192.91, "word": " what", "probability": 0.66748046875}, {"start": 2192.91, "end": 2193.05, "word": " kind", "probability": 0.438232421875}, {"start": 2193.05, "end": 2193.13, "word": " of", "probability": 0.96533203125}, {"start": 2193.13, "end": 2193.47, "word": " message", "probability": 0.85986328125}, {"start": 2193.47, "end": 2193.53, "word": " it", "probability": 0.634765625}, {"start": 2193.53, "end": 2193.53, "word": " is", "probability": 0.89111328125}, {"start": 2193.53, "end": 2193.65, "word": " if", "probability": 0.52734375}, {"start": 2193.65, "end": 2193.85, "word": " it", "probability": 0.54296875}, {"start": 2193.85, "end": 2193.97, "word": " has", "probability": 0.76611328125}, {"start": 2193.97, "end": 2194.07, "word": " a", "probability": 0.458740234375}, {"start": 2194.07, "end": 2194.07, "word": " meaning", "probability": 0.74072265625}, {"start": 2194.07, "end": 2194.19, "word": " to", "probability": 0.146240234375}, {"start": 2194.19, "end": 2194.35, "word": " it,", "probability": 0.9150390625}, {"start": 2194.49, "end": 2194.49, "word": " it", "probability": 0.6796875}, {"start": 2194.49, "end": 2194.69, "word": " takes", "probability": 0.341552734375}, {"start": 2194.69, "end": 2194.87, "word": " it", "probability": 0.9140625}, {"start": 2194.87, "end": 2195.55, "word": " if", "probability": 0.35400390625}, {"start": 2195.55, "end": 2195.63, "word": " it", "probability": 0.83642578125}, {"start": 2195.63, "end": 2195.63, "word": " doesn't", "probability": 0.804931640625}, {"start": 2195.63, "end": 2195.71, "word": " have", "probability": 0.74609375}, {"start": 2195.71, "end": 2195.81, "word": " a", "probability": 0.85009765625}, {"start": 2195.81, "end": 2195.81, "word": " meaning", "probability": 0.8916015625}, {"start": 2195.81, "end": 2195.93, "word": " to", "probability": 0.8291015625}, {"start": 2195.93, "end": 2196.07, "word": " it,", "probability": 0.95703125}, {"start": 2196.21, "end": 2196.21, "word": " it", "probability": 0.85107421875}, {"start": 2196.21, "end": 2196.41, "word": " leaves", "probability": 0.7353515625}, {"start": 2196.41, "end": 2196.89, "word": " it", "probability": 0.94873046875}, {"start": 2196.89, "end": 2198.95, "word": " he", "probability": 0.2122802734375}, {"start": 2198.95, "end": 2199.31, "word": " did", "probability": 0.4775390625}, {"start": 2199.31, "end": 2199.49, "word": " like", "probability": 0.3193359375}, {"start": 2199.49, "end": 2199.59, "word": " the", "probability": 0.669921875}, {"start": 2199.59, "end": 2199.97, "word": " observer", "probability": 0.7822265625}, {"start": 2199.97, "end": 2200.53, "word": " pattern", "probability": 0.88623046875}, {"start": 2200.53, "end": 2201.59, "word": " but", "probability": 0.828125}, {"start": 2201.59, "end": 2201.87, "word": " means", "probability": 0.703125}, {"start": 2201.87, "end": 2201.99, "word": " to", "probability": 0.8603515625}, {"start": 2201.99, "end": 2202.17, "word": " a", "probability": 0.4462890625}, {"start": 2202.17, "end": 2202.87, "word": " supporting", "probability": 0.6474609375}, {"start": 2202.87, "end": 2204.09, "word": " money", "probability": 0.35693359375}, {"start": 2204.09, "end": 2204.25, "word": " to", "probability": 0.92578125}, {"start": 2204.25, "end": 2204.55, "word": " money", "probability": 0.900390625}, {"start": 2204.55, "end": 2206.63, "word": " communication", "probability": 0.7138671875}, {"start": 2206.63, "end": 2207.83, "word": " applicability", "probability": 0.896484375}, {"start": 2207.83, "end": 2208.05, "word": " when", "probability": 0.5439453125}, {"start": 2208.05, "end": 2208.19, "word": " we", "probability": 0.354248046875}, {"start": 2208.19, "end": 2208.53, "word": " use", "probability": 0.86083984375}, {"start": 2208.53, "end": 2208.75, "word": " it", "probability": 0.94287109375}], "temperature": 1.0}, {"id": 87, "seek": 222476, "start": 2209.7, "end": 2224.76, "text": "Use data bus pattern when you want your components to decide themselves which messages even they want to receive يعني زي ما شفنا أنه بدك أنت تبعت رسائل للجميع وكل عنصر يحدد هو يستقبل الرسالة أو لا", "tokens": [52, 405, 1412, 1255, 5102, 562, 291, 528, 428, 6677, 281, 4536, 2969, 597, 7897, 754, 436, 528, 281, 4774, 37495, 22653, 30767, 1829, 19446, 13412, 5172, 8315, 14739, 3224, 47525, 4117, 14739, 2655, 6055, 3555, 34268, 12602, 3794, 16373, 1211, 24976, 7435, 2304, 40228, 4032, 28820, 18871, 9381, 2288, 7251, 24401, 3215, 31439, 7251, 14851, 4587, 36150, 34892, 3794, 6027, 3660, 34051, 20193], "avg_logprob": -0.20336538461538461, "compression_ratio": 1.3165829145728642, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 2209.7, "end": 2210.16, "word": "Use", "probability": 0.841552734375}, {"start": 2210.16, "end": 2210.4, "word": " data", "probability": 0.486328125}, {"start": 2210.4, "end": 2210.64, "word": " bus", "probability": 0.322509765625}, {"start": 2210.64, "end": 2211.0, "word": " pattern", "probability": 0.7880859375}, {"start": 2211.0, "end": 2211.24, "word": " when", "probability": 0.876953125}, {"start": 2211.24, "end": 2211.64, "word": " you", "probability": 0.66162109375}, {"start": 2211.64, "end": 2211.94, "word": " want", "probability": 0.865234375}, {"start": 2211.94, "end": 2212.1, "word": " your", "probability": 0.8271484375}, {"start": 2212.1, "end": 2212.6, "word": " components", "probability": 0.828125}, {"start": 2212.6, "end": 2212.84, "word": " to", "probability": 0.9619140625}, {"start": 2212.84, "end": 2213.22, "word": " decide", "probability": 0.94921875}, {"start": 2213.22, "end": 2213.72, "word": " themselves", "probability": 0.62646484375}, {"start": 2213.72, "end": 2213.98, "word": " which", "probability": 0.8857421875}, {"start": 2213.98, "end": 2214.42, "word": " messages", "probability": 0.8896484375}, {"start": 2214.42, "end": 2214.74, "word": " even", "probability": 0.806640625}, {"start": 2214.74, "end": 2215.0, "word": " they", "probability": 0.8505859375}, {"start": 2215.0, "end": 2215.32, "word": " want", "probability": 0.89794921875}, {"start": 2215.32, "end": 2215.52, "word": " to", "probability": 0.97021484375}, {"start": 2215.52, "end": 2216.58, "word": " receive", "probability": 0.95751953125}, {"start": 2216.58, "end": 2218.22, "word": " يعني", "probability": 0.46942138671875}, {"start": 2218.22, "end": 2219.58, "word": " زي", "probability": 0.916259765625}, {"start": 2219.58, "end": 2219.66, "word": " ما", "probability": 0.97216796875}, {"start": 2219.66, "end": 2220.0, "word": " شفنا", "probability": 0.8221028645833334}, {"start": 2220.0, "end": 2220.24, "word": " أنه", "probability": 0.6922607421875}, {"start": 2220.24, "end": 2220.56, "word": " بدك", "probability": 0.918212890625}, {"start": 2220.56, "end": 2220.92, "word": " أنت", "probability": 0.6365966796875}, {"start": 2220.92, "end": 2221.46, "word": " تبعت", "probability": 0.892578125}, {"start": 2221.46, "end": 2221.84, "word": " رسائل", "probability": 0.927490234375}, {"start": 2221.84, "end": 2222.34, "word": " للجميع", "probability": 0.9482421875}, {"start": 2222.34, "end": 2222.6, "word": " وكل", "probability": 0.804443359375}, {"start": 2222.6, "end": 2222.94, "word": " عنصر", "probability": 0.9763997395833334}, {"start": 2222.94, "end": 2223.4, "word": " يحدد", "probability": 0.986328125}, {"start": 2223.4, "end": 2223.52, "word": " هو", "probability": 0.830078125}, {"start": 2223.52, "end": 2224.0, "word": " يستقبل", "probability": 0.9715576171875}, {"start": 2224.0, "end": 2224.44, "word": " الرسالة", "probability": 0.8824462890625}, {"start": 2224.44, "end": 2224.58, "word": " أو", "probability": 0.82568359375}, {"start": 2224.58, "end": 2224.76, "word": " لا", "probability": 0.6484375}], "temperature": 1.0}, {"id": 88, "seek": 225032, "start": 2225.84, "end": 2250.32, "text": "Based on the type of message or sender for example You want to have many-to-many communication, this is the main goal that we use in the data bus You want your components to know nothing about each other You don't want to make complications that this must have a reference from the three monkeys and so on This is how we will enter into a big complexity of the code All of them send each other without knowing anything about each other They only know about the data bus", "tokens": [33, 1937, 322, 264, 2010, 295, 3636, 420, 2845, 260, 337, 1365, 509, 528, 281, 362, 867, 12, 1353, 12, 76, 1325, 6101, 11, 341, 307, 264, 2135, 3387, 300, 321, 764, 294, 264, 1412, 1255, 509, 528, 428, 6677, 281, 458, 1825, 466, 1184, 661, 509, 500, 380, 528, 281, 652, 715, 1050, 763, 300, 341, 1633, 362, 257, 6408, 490, 264, 1045, 29534, 293, 370, 322, 639, 307, 577, 321, 486, 3242, 666, 257, 955, 14024, 295, 264, 3089, 1057, 295, 552, 2845, 1184, 661, 1553, 5276, 1340, 466, 1184, 661, 814, 787, 458, 466, 264, 1412, 1255], "avg_logprob": -0.4511138590255586, "compression_ratio": 1.8108108108108107, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 2225.84, "end": 2226.22, "word": "Based", "probability": 0.57373046875}, {"start": 2226.22, "end": 2226.36, "word": " on", "probability": 0.9453125}, {"start": 2226.36, "end": 2226.5, "word": " the", "probability": 0.63818359375}, {"start": 2226.5, "end": 2226.52, "word": " type", "probability": 0.58642578125}, {"start": 2226.52, "end": 2226.68, "word": " of", "probability": 0.96630859375}, {"start": 2226.68, "end": 2226.94, "word": " message", "probability": 0.77392578125}, {"start": 2226.94, "end": 2227.12, "word": " or", "probability": 0.7353515625}, {"start": 2227.12, "end": 2227.54, "word": " sender", "probability": 0.830078125}, {"start": 2227.54, "end": 2227.66, "word": " for", "probability": 0.463623046875}, {"start": 2227.66, "end": 2227.88, "word": " example", "probability": 0.8828125}, {"start": 2227.88, "end": 2228.94, "word": " You", "probability": 0.411865234375}, {"start": 2228.94, "end": 2229.28, "word": " want", "probability": 0.876953125}, {"start": 2229.28, "end": 2229.4, "word": " to", "probability": 0.935546875}, {"start": 2229.4, "end": 2229.62, "word": " have", "probability": 0.95263671875}, {"start": 2229.62, "end": 2229.84, "word": " many", "probability": 0.78955078125}, {"start": 2229.84, "end": 2230.02, "word": "-to", "probability": 0.6217041015625}, {"start": 2230.02, "end": 2230.18, "word": "-many", "probability": 0.9397786458333334}, {"start": 2230.18, "end": 2230.84, "word": " communication,", "probability": 0.76220703125}, {"start": 2230.94, "end": 2231.1, "word": " this", "probability": 0.49755859375}, {"start": 2231.1, "end": 2231.14, "word": " is", "probability": 0.919921875}, {"start": 2231.14, "end": 2231.2, "word": " the", "probability": 0.8623046875}, {"start": 2231.2, "end": 2231.2, "word": " main", "probability": 0.60546875}, {"start": 2231.2, "end": 2231.8, "word": " goal", "probability": 0.52197265625}, {"start": 2231.8, "end": 2231.98, "word": " that", "probability": 0.193603515625}, {"start": 2231.98, "end": 2232.0, "word": " we", "probability": 0.82861328125}, {"start": 2232.0, "end": 2232.34, "word": " use", "probability": 0.765625}, {"start": 2232.34, "end": 2232.52, "word": " in", "probability": 0.8251953125}, {"start": 2232.52, "end": 2232.64, "word": " the", "probability": 0.50537109375}, {"start": 2232.64, "end": 2232.78, "word": " data", "probability": 0.36083984375}, {"start": 2232.78, "end": 2233.06, "word": " bus", "probability": 0.923828125}, {"start": 2233.06, "end": 2233.54, "word": " You", "probability": 0.78515625}, {"start": 2233.54, "end": 2233.84, "word": " want", "probability": 0.880859375}, {"start": 2233.84, "end": 2233.98, "word": " your", "probability": 0.8681640625}, {"start": 2233.98, "end": 2234.42, "word": " components", "probability": 0.8896484375}, {"start": 2234.42, "end": 2234.64, "word": " to", "probability": 0.9638671875}, {"start": 2234.64, "end": 2234.74, "word": " know", "probability": 0.89892578125}, {"start": 2234.74, "end": 2235.04, "word": " nothing", "probability": 0.87841796875}, {"start": 2235.04, "end": 2235.48, "word": " about", "probability": 0.908203125}, {"start": 2235.48, "end": 2236.36, "word": " each", "probability": 0.943359375}, {"start": 2236.36, "end": 2236.56, "word": " other", "probability": 0.88525390625}, {"start": 2236.56, "end": 2236.66, "word": " You", "probability": 0.66162109375}, {"start": 2236.66, "end": 2236.78, "word": " don't", "probability": 0.875244140625}, {"start": 2236.78, "end": 2236.96, "word": " want", "probability": 0.57421875}, {"start": 2236.96, "end": 2237.06, "word": " to", "probability": 0.8525390625}, {"start": 2237.06, "end": 2237.28, "word": " make", "probability": 0.5595703125}, {"start": 2237.28, "end": 2237.76, "word": " complications", "probability": 0.5207926432291666}, {"start": 2237.76, "end": 2238.0, "word": " that", "probability": 0.27001953125}, {"start": 2238.0, "end": 2238.24, "word": " this", "probability": 0.47265625}, {"start": 2238.24, "end": 2238.48, "word": " must", "probability": 0.287109375}, {"start": 2238.48, "end": 2238.82, "word": " have", "probability": 0.86279296875}, {"start": 2238.82, "end": 2238.92, "word": " a", "probability": 0.537109375}, {"start": 2238.92, "end": 2239.22, "word": " reference", "probability": 0.84619140625}, {"start": 2239.22, "end": 2239.4, "word": " from", "probability": 0.68896484375}, {"start": 2239.4, "end": 2239.96, "word": " the", "probability": 0.57080078125}, {"start": 2239.96, "end": 2240.18, "word": " three", "probability": 0.52294921875}, {"start": 2240.18, "end": 2240.64, "word": " monkeys", "probability": 0.0950927734375}, {"start": 2240.64, "end": 2241.36, "word": " and", "probability": 0.474853515625}, {"start": 2241.36, "end": 2241.62, "word": " so", "probability": 0.599609375}, {"start": 2241.62, "end": 2241.78, "word": " on", "probability": 0.86669921875}, {"start": 2241.78, "end": 2242.2, "word": " This", "probability": 0.193359375}, {"start": 2242.2, "end": 2242.24, "word": " is", "probability": 0.51611328125}, {"start": 2242.24, "end": 2242.26, "word": " how", "probability": 0.74365234375}, {"start": 2242.26, "end": 2242.4, "word": " we", "probability": 0.87109375}, {"start": 2242.4, "end": 2242.42, "word": " will", "probability": 0.352783203125}, {"start": 2242.42, "end": 2242.64, "word": " enter", "probability": 0.66162109375}, {"start": 2242.64, "end": 2242.84, "word": " into", "probability": 0.2978515625}, {"start": 2242.84, "end": 2243.46, "word": " a", "probability": 0.8525390625}, {"start": 2243.46, "end": 2243.46, "word": " big", "probability": 0.343505859375}, {"start": 2243.46, "end": 2243.8, "word": " complexity", "probability": 0.41259765625}, {"start": 2243.8, "end": 2244.14, "word": " of", "probability": 0.488525390625}, {"start": 2244.14, "end": 2244.24, "word": " the", "probability": 0.41357421875}, {"start": 2244.24, "end": 2244.5, "word": " code", "probability": 0.9228515625}, {"start": 2244.5, "end": 2245.42, "word": " All", "probability": 0.283447265625}, {"start": 2245.42, "end": 2245.54, "word": " of", "probability": 0.78662109375}, {"start": 2245.54, "end": 2245.58, "word": " them", "probability": 0.8681640625}, {"start": 2245.58, "end": 2245.82, "word": " send", "probability": 0.376953125}, {"start": 2245.82, "end": 2246.02, "word": " each", "probability": 0.61865234375}, {"start": 2246.02, "end": 2246.2, "word": " other", "probability": 0.884765625}, {"start": 2246.2, "end": 2246.4, "word": " without", "probability": 0.7470703125}, {"start": 2246.4, "end": 2246.78, "word": " knowing", "probability": 0.814453125}, {"start": 2246.78, "end": 2247.1, "word": " anything", "probability": 0.865234375}, {"start": 2247.1, "end": 2247.32, "word": " about", "probability": 0.87646484375}, {"start": 2247.32, "end": 2248.0, "word": " each", "probability": 0.9384765625}, {"start": 2248.0, "end": 2248.02, "word": " other", "probability": 0.89599609375}, {"start": 2248.02, "end": 2248.14, "word": " They", "probability": 0.5693359375}, {"start": 2248.14, "end": 2248.46, "word": " only", "probability": 0.6171875}, {"start": 2248.46, "end": 2248.46, "word": " know", "probability": 0.8916015625}, {"start": 2248.46, "end": 2248.98, "word": " about", "probability": 0.86767578125}, {"start": 2248.98, "end": 2249.82, "word": " the", "probability": 0.89892578125}, {"start": 2249.82, "end": 2250.02, "word": " data", "probability": 0.89892578125}, {"start": 2250.02, "end": 2250.32, "word": " bus", "probability": 0.9638671875}], "temperature": 1.0}, {"id": 89, "seek": 227651, "start": 2252.63, "end": 2276.51, "text": " Because this is the scenario in which we apply the data bus. This is the bus. Because this application, for example, supports a shopping website. Okay? If you find a shopping website, this is the shopping application. From here, the client chooses the product. Of course, we have a database where we record the records. What was sold, what was published, what orders were made. We have an inventory system responsible for the warehouse and the elements in it. How much remained in the warehouse after it was published and so on.", "tokens": [1436, 341, 307, 264, 9005, 294, 597, 321, 3079, 264, 1412, 1255, 13, 639, 307, 264, 1255, 13, 1436, 341, 3861, 11, 337, 1365, 11, 9346, 257, 8688, 3144, 13, 1033, 30, 759, 291, 915, 257, 8688, 3144, 11, 341, 307, 264, 8688, 3861, 13, 3358, 510, 11, 264, 6423, 25963, 264, 1674, 13, 2720, 1164, 11, 321, 362, 257, 8149, 689, 321, 2136, 264, 7724, 13, 708, 390, 3718, 11, 437, 390, 6572, 11, 437, 9470, 645, 1027, 13, 492, 362, 364, 14228, 1185, 6250, 337, 264, 22244, 293, 264, 4959, 294, 309, 13, 1012, 709, 12780, 294, 264, 22244, 934, 309, 390, 6572, 293, 370, 322, 13], "avg_logprob": -0.4610795324498957, "compression_ratio": 1.8496503496503496, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2252.63, "end": 2252.93, "word": " Because", "probability": 0.20361328125}, {"start": 2252.93, "end": 2253.13, "word": " this", "probability": 0.7451171875}, {"start": 2253.13, "end": 2253.13, "word": " is", "probability": 0.7568359375}, {"start": 2253.13, "end": 2253.23, "word": " the", "probability": 0.73388671875}, {"start": 2253.23, "end": 2253.55, "word": " scenario", "probability": 0.79736328125}, {"start": 2253.55, "end": 2253.65, "word": " in", "probability": 0.2208251953125}, {"start": 2253.65, "end": 2253.65, "word": " which", "probability": 0.93798828125}, {"start": 2253.65, "end": 2253.79, "word": " we", "probability": 0.873046875}, {"start": 2253.79, "end": 2254.15, "word": " apply", "probability": 0.470947265625}, {"start": 2254.15, "end": 2254.41, "word": " the", "probability": 0.477294921875}, {"start": 2254.41, "end": 2254.55, "word": " data", "probability": 0.320068359375}, {"start": 2254.55, "end": 2254.81, "word": " bus.", "probability": 0.787109375}, {"start": 2254.91, "end": 2255.23, "word": " This", "probability": 0.3876953125}, {"start": 2255.23, "end": 2255.33, "word": " is", "probability": 0.83154296875}, {"start": 2255.33, "end": 2255.53, "word": " the", "probability": 0.69140625}, {"start": 2255.53, "end": 2255.81, "word": " bus.", "probability": 0.6279296875}, {"start": 2256.25, "end": 2256.49, "word": " Because", "probability": 0.5966796875}, {"start": 2256.49, "end": 2256.71, "word": " this", "probability": 0.8779296875}, {"start": 2256.71, "end": 2257.09, "word": " application,", "probability": 0.6982421875}, {"start": 2257.13, "end": 2257.31, "word": " for", "probability": 0.93115234375}, {"start": 2257.31, "end": 2257.49, "word": " example,", "probability": 0.896484375}, {"start": 2258.47, "end": 2258.85, "word": " supports", "probability": 0.2408447265625}, {"start": 2258.85, "end": 2259.13, "word": " a", "probability": 0.884765625}, {"start": 2259.13, "end": 2259.69, "word": " shopping", "probability": 0.43994140625}, {"start": 2259.69, "end": 2259.89, "word": " website.", "probability": 0.62109375}, {"start": 2260.43, "end": 2260.61, "word": " Okay?", "probability": 0.296630859375}, {"start": 2260.97, "end": 2261.11, "word": " If", "probability": 0.169189453125}, {"start": 2261.11, "end": 2261.11, "word": " you", "probability": 0.489013671875}, {"start": 2261.11, "end": 2261.25, "word": " find", "probability": 0.340576171875}, {"start": 2261.25, "end": 2261.35, "word": " a", "probability": 0.91064453125}, {"start": 2261.35, "end": 2261.87, "word": " shopping", "probability": 0.86962890625}, {"start": 2261.87, "end": 2261.89, "word": " website,", "probability": 0.85595703125}, {"start": 2261.97, "end": 2262.07, "word": " this", "probability": 0.73828125}, {"start": 2262.07, "end": 2262.15, "word": " is", "probability": 0.7822265625}, {"start": 2262.15, "end": 2262.63, "word": " the", "probability": 0.79638671875}, {"start": 2262.63, "end": 2262.85, "word": " shopping", "probability": 0.75537109375}, {"start": 2262.85, "end": 2262.85, "word": " application.", "probability": 0.8544921875}, {"start": 2262.99, "end": 2263.07, "word": " From", "probability": 0.58154296875}, {"start": 2263.07, "end": 2263.21, "word": " here,", "probability": 0.8271484375}, {"start": 2263.27, "end": 2263.39, "word": " the", "probability": 0.8798828125}, {"start": 2263.39, "end": 2263.71, "word": " client", "probability": 0.9072265625}, {"start": 2263.71, "end": 2264.07, "word": " chooses", "probability": 0.75537109375}, {"start": 2264.07, "end": 2264.25, "word": " the", "probability": 0.8701171875}, {"start": 2264.25, "end": 2264.61, "word": " product.", "probability": 0.91259765625}, {"start": 2265.27, "end": 2265.39, "word": " Of", "probability": 0.29638671875}, {"start": 2265.39, "end": 2265.83, "word": " course,", "probability": 0.9599609375}, {"start": 2265.97, "end": 2265.97, "word": " we", "probability": 0.65380859375}, {"start": 2265.97, "end": 2265.97, "word": " have", "probability": 0.79833984375}, {"start": 2265.97, "end": 2266.73, "word": " a", "probability": 0.91552734375}, {"start": 2266.73, "end": 2267.19, "word": " database", "probability": 0.94091796875}, {"start": 2267.19, "end": 2267.53, "word": " where", "probability": 0.4345703125}, {"start": 2267.53, "end": 2267.63, "word": " we", "probability": 0.89404296875}, {"start": 2267.63, "end": 2267.91, "word": " record", "probability": 0.63037109375}, {"start": 2267.91, "end": 2268.15, "word": " the", "probability": 0.5029296875}, {"start": 2268.15, "end": 2268.47, "word": " records.", "probability": 0.8935546875}, {"start": 2268.55, "end": 2268.69, "word": " What", "probability": 0.77734375}, {"start": 2268.69, "end": 2268.83, "word": " was", "probability": 0.54833984375}, {"start": 2268.83, "end": 2269.09, "word": " sold,", "probability": 0.966796875}, {"start": 2269.23, "end": 2269.35, "word": " what", "probability": 0.4423828125}, {"start": 2269.35, "end": 2269.35, "word": " was", "probability": 0.8896484375}, {"start": 2269.35, "end": 2269.55, "word": " published,", "probability": 0.32568359375}, {"start": 2269.69, "end": 2269.81, "word": " what", "probability": 0.2890625}, {"start": 2269.81, "end": 2270.09, "word": " orders", "probability": 0.382080078125}, {"start": 2270.09, "end": 2270.33, "word": " were", "probability": 0.63623046875}, {"start": 2270.33, "end": 2270.61, "word": " made.", "probability": 0.8369140625}, {"start": 2271.15, "end": 2271.31, "word": " We", "probability": 0.80029296875}, {"start": 2271.31, "end": 2271.43, "word": " have", "probability": 0.736328125}, {"start": 2271.43, "end": 2271.55, "word": " an", "probability": 0.91455078125}, {"start": 2271.55, "end": 2271.89, "word": " inventory", "probability": 0.84912109375}, {"start": 2271.89, "end": 2272.35, "word": " system", "probability": 0.93701171875}, {"start": 2272.35, "end": 2272.55, "word": " responsible", "probability": 0.433837890625}, {"start": 2272.55, "end": 2272.79, "word": " for", "probability": 0.9423828125}, {"start": 2272.79, "end": 2272.87, "word": " the", "probability": 0.7705078125}, {"start": 2272.87, "end": 2273.17, "word": " warehouse", "probability": 0.426513671875}, {"start": 2273.17, "end": 2273.81, "word": " and", "probability": 0.69189453125}, {"start": 2273.81, "end": 2273.91, "word": " the", "probability": 0.45263671875}, {"start": 2273.91, "end": 2274.21, "word": " elements", "probability": 0.56005859375}, {"start": 2274.21, "end": 2274.37, "word": " in", "probability": 0.390380859375}, {"start": 2274.37, "end": 2274.59, "word": " it.", "probability": 0.88037109375}, {"start": 2274.67, "end": 2274.79, "word": " How", "probability": 0.779296875}, {"start": 2274.79, "end": 2274.97, "word": " much", "probability": 0.5927734375}, {"start": 2274.97, "end": 2275.07, "word": " remained", "probability": 0.2529296875}, {"start": 2275.07, "end": 2275.17, "word": " in", "probability": 0.92724609375}, {"start": 2275.17, "end": 2275.27, "word": " the", "probability": 0.90771484375}, {"start": 2275.27, "end": 2275.53, "word": " warehouse", "probability": 0.7783203125}, {"start": 2275.53, "end": 2275.85, "word": " after", "probability": 0.79638671875}, {"start": 2275.85, "end": 2275.93, "word": " it", "probability": 0.366943359375}, {"start": 2275.93, "end": 2275.97, "word": " was", "probability": 0.8408203125}, {"start": 2275.97, "end": 2276.17, "word": " published", "probability": 0.71240234375}, {"start": 2276.17, "end": 2276.29, "word": " and", "probability": 0.474853515625}, {"start": 2276.29, "end": 2276.49, "word": " so", "probability": 0.8427734375}, {"start": 2276.49, "end": 2276.51, "word": " on.", "probability": 0.9150390625}], "temperature": 1.0}, {"id": 90, "seek": 230616, "start": 2277.38, "end": 2306.16, "text": " I have a financial reporting department that sends invoices, reports, and performs the purchase and sale process. I also have a component responsible for sending emails. Because in an application like this, these components are supposed to send and receive from each other. That is, any order process that takes place here in the application, there should be an update in the warehouse to reduce the existing quantity. There should be an update or a message to the financial department that there is a new order for work.", "tokens": [286, 362, 257, 4669, 10031, 5882, 300, 14790, 1048, 78, 1473, 11, 7122, 11, 293, 26213, 264, 8110, 293, 8680, 1399, 13, 286, 611, 362, 257, 6542, 6250, 337, 7750, 12524, 13, 1436, 294, 364, 3861, 411, 341, 11, 613, 6677, 366, 3442, 281, 2845, 293, 4774, 490, 1184, 661, 13, 663, 307, 11, 604, 1668, 1399, 300, 2516, 1081, 510, 294, 264, 3861, 11, 456, 820, 312, 364, 5623, 294, 264, 22244, 281, 5407, 264, 6741, 11275, 13, 821, 820, 312, 364, 5623, 420, 257, 3636, 281, 264, 4669, 5882, 300, 456, 307, 257, 777, 1668, 337, 589, 13], "avg_logprob": -0.5151608792862089, "compression_ratio": 1.8576512455516014, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 2277.38, "end": 2277.56, "word": " I", "probability": 0.0823974609375}, {"start": 2277.56, "end": 2277.7, "word": " have", "probability": 0.677734375}, {"start": 2277.7, "end": 2277.78, "word": " a", "probability": 0.63134765625}, {"start": 2277.78, "end": 2278.18, "word": " financial", "probability": 0.69482421875}, {"start": 2278.18, "end": 2278.82, "word": " reporting", "probability": 0.3662109375}, {"start": 2278.82, "end": 2279.18, "word": " department", "probability": 0.53515625}, {"start": 2279.18, "end": 2279.9, "word": " that", "probability": 0.52587890625}, {"start": 2279.9, "end": 2280.18, "word": " sends", "probability": 0.52099609375}, {"start": 2280.18, "end": 2281.36, "word": " invoices,", "probability": 0.802734375}, {"start": 2281.44, "end": 2282.06, "word": " reports,", "probability": 0.46875}, {"start": 2282.86, "end": 2282.86, "word": " and", "probability": 0.56103515625}, {"start": 2282.86, "end": 2283.42, "word": " performs", "probability": 0.204345703125}, {"start": 2283.42, "end": 2283.54, "word": " the", "probability": 0.2493896484375}, {"start": 2283.54, "end": 2284.08, "word": " purchase", "probability": 0.34912109375}, {"start": 2284.08, "end": 2284.34, "word": " and", "probability": 0.7890625}, {"start": 2284.34, "end": 2284.6, "word": " sale", "probability": 0.72705078125}, {"start": 2284.6, "end": 2284.6, "word": " process.", "probability": 0.67724609375}, {"start": 2284.96, "end": 2285.24, "word": " I", "probability": 0.422119140625}, {"start": 2285.24, "end": 2285.4, "word": " also", "probability": 0.4140625}, {"start": 2285.4, "end": 2285.4, "word": " have", "probability": 0.92578125}, {"start": 2285.4, "end": 2285.9, "word": " a", "probability": 0.826171875}, {"start": 2285.9, "end": 2286.34, "word": " component", "probability": 0.68505859375}, {"start": 2286.34, "end": 2286.76, "word": " responsible", "probability": 0.45751953125}, {"start": 2286.76, "end": 2287.88, "word": " for", "probability": 0.9453125}, {"start": 2287.88, "end": 2288.24, "word": " sending", "probability": 0.53125}, {"start": 2288.24, "end": 2288.62, "word": " emails.", "probability": 0.73193359375}, {"start": 2289.34, "end": 2289.5, "word": " Because", "probability": 0.44775390625}, {"start": 2289.5, "end": 2289.66, "word": " in", "probability": 0.70703125}, {"start": 2289.66, "end": 2289.8, "word": " an", "probability": 0.5751953125}, {"start": 2289.8, "end": 2290.08, "word": " application", "probability": 0.8984375}, {"start": 2290.08, "end": 2290.24, "word": " like", "probability": 0.8466796875}, {"start": 2290.24, "end": 2290.66, "word": " this,", "probability": 0.75}, {"start": 2291.02, "end": 2291.28, "word": " these", "probability": 0.6728515625}, {"start": 2291.28, "end": 2291.9, "word": " components", "probability": 0.91259765625}, {"start": 2291.9, "end": 2292.08, "word": " are", "probability": 0.42041015625}, {"start": 2292.08, "end": 2292.28, "word": " supposed", "probability": 0.0802001953125}, {"start": 2292.28, "end": 2292.5, "word": " to", "probability": 0.97021484375}, {"start": 2292.5, "end": 2292.88, "word": " send", "probability": 0.40576171875}, {"start": 2292.88, "end": 2293.1, "word": " and", "probability": 0.87060546875}, {"start": 2293.1, "end": 2293.36, "word": " receive", "probability": 0.9541015625}, {"start": 2293.36, "end": 2294.1, "word": " from", "probability": 0.52783203125}, {"start": 2294.1, "end": 2294.46, "word": " each", "probability": 0.861328125}, {"start": 2294.46, "end": 2294.46, "word": " other.", "probability": 0.89453125}, {"start": 2294.86, "end": 2295.04, "word": " That", "probability": 0.1865234375}, {"start": 2295.04, "end": 2295.04, "word": " is,", "probability": 0.6640625}, {"start": 2295.12, "end": 2295.26, "word": " any", "probability": 0.72705078125}, {"start": 2295.26, "end": 2296.12, "word": " order", "probability": 0.59228515625}, {"start": 2296.12, "end": 2296.2, "word": " process", "probability": 0.46630859375}, {"start": 2296.2, "end": 2296.36, "word": " that", "probability": 0.58837890625}, {"start": 2296.36, "end": 2296.54, "word": " takes", "probability": 0.2509765625}, {"start": 2296.54, "end": 2296.6, "word": " place", "probability": 0.89453125}, {"start": 2296.6, "end": 2296.82, "word": " here", "probability": 0.5361328125}, {"start": 2296.82, "end": 2296.92, "word": " in", "probability": 0.8984375}, {"start": 2296.92, "end": 2297.0, "word": " the", "probability": 0.88232421875}, {"start": 2297.0, "end": 2297.56, "word": " application,", "probability": 0.92578125}, {"start": 2298.38, "end": 2298.48, "word": " there", "probability": 0.4462890625}, {"start": 2298.48, "end": 2298.74, "word": " should", "probability": 0.607421875}, {"start": 2298.74, "end": 2299.04, "word": " be", "probability": 0.94775390625}, {"start": 2299.04, "end": 2299.22, "word": " an", "probability": 0.751953125}, {"start": 2299.22, "end": 2299.44, "word": " update", "probability": 0.7607421875}, {"start": 2299.44, "end": 2299.8, "word": " in", "probability": 0.87353515625}, {"start": 2299.8, "end": 2299.94, "word": " the", "probability": 0.90869140625}, {"start": 2299.94, "end": 2300.22, "word": " warehouse", "probability": 0.436279296875}, {"start": 2300.22, "end": 2300.6, "word": " to", "probability": 0.6943359375}, {"start": 2300.6, "end": 2300.92, "word": " reduce", "probability": 0.74609375}, {"start": 2300.92, "end": 2301.14, "word": " the", "probability": 0.892578125}, {"start": 2301.14, "end": 2301.8, "word": " existing", "probability": 0.3369140625}, {"start": 2301.8, "end": 2301.8, "word": " quantity.", "probability": 0.496337890625}, {"start": 2302.4, "end": 2302.52, "word": " There", "probability": 0.2142333984375}, {"start": 2302.52, "end": 2302.84, "word": " should", "probability": 0.85791015625}, {"start": 2302.84, "end": 2302.94, "word": " be", "probability": 0.8876953125}, {"start": 2302.94, "end": 2303.02, "word": " an", "probability": 0.83935546875}, {"start": 2303.02, "end": 2303.32, "word": " update", "probability": 0.85791015625}, {"start": 2303.32, "end": 2303.64, "word": " or", "probability": 0.89404296875}, {"start": 2303.64, "end": 2303.74, "word": " a", "probability": 0.480712890625}, {"start": 2303.74, "end": 2303.96, "word": " message", "probability": 0.52197265625}, {"start": 2303.96, "end": 2304.16, "word": " to", "probability": 0.8837890625}, {"start": 2304.16, "end": 2304.24, "word": " the", "probability": 0.91845703125}, {"start": 2304.24, "end": 2304.56, "word": " financial", "probability": 0.744140625}, {"start": 2304.56, "end": 2305.16, "word": " department", "probability": 0.9072265625}, {"start": 2305.16, "end": 2305.36, "word": " that", "probability": 0.72509765625}, {"start": 2305.36, "end": 2305.46, "word": " there", "probability": 0.69384765625}, {"start": 2305.46, "end": 2305.5, "word": " is", "probability": 0.89697265625}, {"start": 2305.5, "end": 2305.58, "word": " a", "probability": 0.7802734375}, {"start": 2305.58, "end": 2305.7, "word": " new", "probability": 0.87841796875}, {"start": 2305.7, "end": 2305.78, "word": " order", "probability": 0.79931640625}, {"start": 2305.78, "end": 2305.98, "word": " for", "probability": 0.173095703125}, {"start": 2305.98, "end": 2306.16, "word": " work.", "probability": 0.60107421875}], "temperature": 1.0}, {"id": 91, "seek": 232005, "start": 2307.21, "end": 2320.05, "text": " There should be a change in the records on the database Notifications should be sent to the financial department and to the user that you made an order, and so on And the same thing happens if the bill is withdrawn from the financial department", "tokens": [821, 820, 312, 257, 1319, 294, 264, 7724, 322, 264, 8149, 1726, 7833, 820, 312, 2279, 281, 264, 4669, 5882, 293, 281, 264, 4195, 300, 291, 1027, 364, 1668, 11, 293, 370, 322, 400, 264, 912, 551, 2314, 498, 264, 2961, 307, 48151, 490, 264, 4669, 5882], "avg_logprob": -0.5192057055731615, "compression_ratio": 1.611842105263158, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2307.21, "end": 2307.37, "word": " There", "probability": 0.1793212890625}, {"start": 2307.37, "end": 2307.65, "word": " should", "probability": 0.5849609375}, {"start": 2307.65, "end": 2307.95, "word": " be", "probability": 0.73681640625}, {"start": 2307.95, "end": 2308.07, "word": " a", "probability": 0.68359375}, {"start": 2308.07, "end": 2308.33, "word": " change", "probability": 0.7880859375}, {"start": 2308.33, "end": 2308.51, "word": " in", "probability": 0.8408203125}, {"start": 2308.51, "end": 2308.57, "word": " the", "probability": 0.289306640625}, {"start": 2308.57, "end": 2308.89, "word": " records", "probability": 0.86328125}, {"start": 2308.89, "end": 2309.57, "word": " on", "probability": 0.19384765625}, {"start": 2309.57, "end": 2309.73, "word": " the", "probability": 0.78173828125}, {"start": 2309.73, "end": 2310.15, "word": " database", "probability": 0.89453125}, {"start": 2310.15, "end": 2311.75, "word": " Notifications", "probability": 0.6058349609375}, {"start": 2311.75, "end": 2311.93, "word": " should", "probability": 0.78564453125}, {"start": 2311.93, "end": 2311.93, "word": " be", "probability": 0.81201171875}, {"start": 2311.93, "end": 2311.93, "word": " sent", "probability": 0.81689453125}, {"start": 2311.93, "end": 2312.33, "word": " to", "probability": 0.9052734375}, {"start": 2312.33, "end": 2312.71, "word": " the", "probability": 0.79833984375}, {"start": 2312.71, "end": 2312.91, "word": " financial", "probability": 0.466064453125}, {"start": 2312.91, "end": 2313.13, "word": " department", "probability": 0.568359375}, {"start": 2313.13, "end": 2313.25, "word": " and", "probability": 0.47998046875}, {"start": 2313.25, "end": 2313.31, "word": " to", "probability": 0.4599609375}, {"start": 2313.31, "end": 2313.39, "word": " the", "probability": 0.84375}, {"start": 2313.39, "end": 2313.75, "word": " user", "probability": 0.86669921875}, {"start": 2313.75, "end": 2314.33, "word": " that", "probability": 0.45166015625}, {"start": 2314.33, "end": 2314.85, "word": " you", "probability": 0.55810546875}, {"start": 2314.85, "end": 2315.31, "word": " made", "probability": 0.388671875}, {"start": 2315.31, "end": 2315.47, "word": " an", "probability": 0.79736328125}, {"start": 2315.47, "end": 2315.67, "word": " order,", "probability": 0.939453125}, {"start": 2315.77, "end": 2315.89, "word": " and", "probability": 0.295166015625}, {"start": 2315.89, "end": 2315.89, "word": " so", "probability": 0.74951171875}, {"start": 2315.89, "end": 2316.41, "word": " on", "probability": 0.88330078125}, {"start": 2316.41, "end": 2316.75, "word": " And", "probability": 0.372802734375}, {"start": 2316.75, "end": 2316.93, "word": " the", "probability": 0.430419921875}, {"start": 2316.93, "end": 2316.93, "word": " same", "probability": 0.8984375}, {"start": 2316.93, "end": 2317.27, "word": " thing", "probability": 0.74072265625}, {"start": 2317.27, "end": 2317.49, "word": " happens", "probability": 0.209228515625}, {"start": 2317.49, "end": 2317.49, "word": " if", "probability": 0.8095703125}, {"start": 2317.49, "end": 2318.87, "word": " the", "probability": 0.58349609375}, {"start": 2318.87, "end": 2319.17, "word": " bill", "probability": 0.416015625}, {"start": 2319.17, "end": 2319.19, "word": " is", "probability": 0.51171875}, {"start": 2319.19, "end": 2319.19, "word": " withdrawn", "probability": 0.55078125}, {"start": 2319.19, "end": 2319.35, "word": " from", "probability": 0.8974609375}, {"start": 2319.35, "end": 2319.45, "word": " the", "probability": 0.92431640625}, {"start": 2319.45, "end": 2319.89, "word": " financial", "probability": 0.7197265625}, {"start": 2319.89, "end": 2320.05, "word": " department", "probability": 0.8740234375}], "temperature": 1.0}, {"id": 92, "seek": 234692, "start": 2320.78, "end": 2346.92, "text": " It is supposed to send a message to the email notifications so that it sends an email to whom? To the user. It is supposed to send a message to the application to update the interface and send a message through the application. It is supposed to update where? In the database. So anyone who changes it is supposed to notify whom? Others. So the simplest way, since everything is supposed to communicate with everything, is to make an email to the data bus. In the last slide, we see", "tokens": [467, 307, 3442, 281, 2845, 257, 3636, 281, 264, 3796, 13426, 370, 300, 309, 14790, 364, 3796, 281, 7101, 30, 1407, 264, 4195, 13, 467, 307, 3442, 281, 2845, 257, 3636, 281, 264, 3861, 281, 5623, 264, 9226, 293, 2845, 257, 3636, 807, 264, 3861, 13, 467, 307, 3442, 281, 5623, 689, 30, 682, 264, 8149, 13, 407, 2878, 567, 2962, 309, 307, 3442, 281, 36560, 7101, 30, 20277, 13, 407, 264, 22811, 636, 11, 1670, 1203, 307, 3442, 281, 7890, 365, 1203, 11, 307, 281, 652, 364, 3796, 281, 264, 1412, 1255, 13, 682, 264, 1036, 4137, 11, 321, 536], "avg_logprob": -0.4013480339564529, "compression_ratio": 2.090909090909091, "no_speech_prob": 1.0848045349121094e-05, "words": [{"start": 2320.78, "end": 2320.98, "word": " It", "probability": 0.1627197265625}, {"start": 2320.98, "end": 2321.04, "word": " is", "probability": 0.291748046875}, {"start": 2321.04, "end": 2321.3, "word": " supposed", "probability": 0.669921875}, {"start": 2321.3, "end": 2321.84, "word": " to", "probability": 0.95849609375}, {"start": 2321.84, "end": 2322.08, "word": " send", "probability": 0.4755859375}, {"start": 2322.08, "end": 2322.22, "word": " a", "probability": 0.48095703125}, {"start": 2322.22, "end": 2322.5, "word": " message", "probability": 0.72607421875}, {"start": 2322.5, "end": 2322.64, "word": " to", "probability": 0.79443359375}, {"start": 2322.64, "end": 2322.72, "word": " the", "probability": 0.4833984375}, {"start": 2322.72, "end": 2322.88, "word": " email", "probability": 0.6064453125}, {"start": 2322.88, "end": 2323.48, "word": " notifications", "probability": 0.5654296875}, {"start": 2323.48, "end": 2323.78, "word": " so", "probability": 0.1226806640625}, {"start": 2323.78, "end": 2323.98, "word": " that", "probability": 0.68701171875}, {"start": 2323.98, "end": 2324.08, "word": " it", "probability": 0.60693359375}, {"start": 2324.08, "end": 2324.24, "word": " sends", "probability": 0.317138671875}, {"start": 2324.24, "end": 2324.58, "word": " an", "probability": 0.55224609375}, {"start": 2324.58, "end": 2324.58, "word": " email", "probability": 0.9462890625}, {"start": 2324.58, "end": 2324.72, "word": " to", "probability": 0.9287109375}, {"start": 2324.72, "end": 2324.88, "word": " whom?", "probability": 0.372802734375}, {"start": 2325.14, "end": 2325.54, "word": " To", "probability": 0.6640625}, {"start": 2325.54, "end": 2325.6, "word": " the", "probability": 0.8896484375}, {"start": 2325.6, "end": 2326.02, "word": " user.", "probability": 0.94287109375}, {"start": 2326.38, "end": 2326.54, "word": " It", "probability": 0.68017578125}, {"start": 2326.54, "end": 2326.6, "word": " is", "probability": 0.85498046875}, {"start": 2326.6, "end": 2326.74, "word": " supposed", "probability": 0.93408203125}, {"start": 2326.74, "end": 2326.84, "word": " to", "probability": 0.966796875}, {"start": 2326.84, "end": 2327.04, "word": " send", "probability": 0.767578125}, {"start": 2327.04, "end": 2327.42, "word": " a", "probability": 0.888671875}, {"start": 2327.42, "end": 2327.42, "word": " message", "probability": 0.9169921875}, {"start": 2327.42, "end": 2327.54, "word": " to", "probability": 0.9677734375}, {"start": 2327.54, "end": 2327.6, "word": " the", "probability": 0.900390625}, {"start": 2327.6, "end": 2328.08, "word": " application", "probability": 0.90576171875}, {"start": 2328.08, "end": 2328.38, "word": " to", "probability": 0.386962890625}, {"start": 2328.38, "end": 2328.74, "word": " update", "probability": 0.80322265625}, {"start": 2328.74, "end": 2328.9, "word": " the", "probability": 0.86083984375}, {"start": 2328.9, "end": 2329.34, "word": " interface", "probability": 0.89111328125}, {"start": 2329.34, "end": 2329.46, "word": " and", "probability": 0.7373046875}, {"start": 2329.46, "end": 2329.68, "word": " send", "probability": 0.292236328125}, {"start": 2329.68, "end": 2330.02, "word": " a", "probability": 0.87548828125}, {"start": 2330.02, "end": 2330.3, "word": " message", "probability": 0.89892578125}, {"start": 2330.3, "end": 2330.6, "word": " through", "probability": 0.73388671875}, {"start": 2330.6, "end": 2330.88, "word": " the", "probability": 0.9111328125}, {"start": 2330.88, "end": 2331.24, "word": " application.", "probability": 0.857421875}, {"start": 2331.76, "end": 2331.92, "word": " It", "probability": 0.85888671875}, {"start": 2331.92, "end": 2331.96, "word": " is", "probability": 0.818359375}, {"start": 2331.96, "end": 2332.18, "word": " supposed", "probability": 0.9482421875}, {"start": 2332.18, "end": 2332.3, "word": " to", "probability": 0.9697265625}, {"start": 2332.3, "end": 2332.7, "word": " update", "probability": 0.93115234375}, {"start": 2332.7, "end": 2332.96, "word": " where?", "probability": 0.54833984375}, {"start": 2333.14, "end": 2333.48, "word": " In", "probability": 0.720703125}, {"start": 2333.48, "end": 2333.58, "word": " the", "probability": 0.908203125}, {"start": 2333.58, "end": 2333.88, "word": " database.", "probability": 0.869140625}, {"start": 2334.52, "end": 2334.62, "word": " So", "probability": 0.5712890625}, {"start": 2334.62, "end": 2334.98, "word": " anyone", "probability": 0.55712890625}, {"start": 2334.98, "end": 2335.3, "word": " who", "probability": 0.65478515625}, {"start": 2335.3, "end": 2335.52, "word": " changes", "probability": 0.78173828125}, {"start": 2335.52, "end": 2335.78, "word": " it", "probability": 0.264892578125}, {"start": 2335.78, "end": 2335.86, "word": " is", "probability": 0.5244140625}, {"start": 2335.86, "end": 2336.12, "word": " supposed", "probability": 0.9541015625}, {"start": 2336.12, "end": 2336.22, "word": " to", "probability": 0.97314453125}, {"start": 2336.22, "end": 2336.44, "word": " notify", "probability": 0.410888671875}, {"start": 2336.44, "end": 2336.76, "word": " whom?", "probability": 0.3984375}, {"start": 2337.24, "end": 2337.68, "word": " Others.", "probability": 0.47265625}, {"start": 2337.9, "end": 2338.02, "word": " So", "probability": 0.54150390625}, {"start": 2338.02, "end": 2338.08, "word": " the", "probability": 0.78076171875}, {"start": 2338.08, "end": 2338.26, "word": " simplest", "probability": 0.724609375}, {"start": 2338.26, "end": 2338.74, "word": " way,", "probability": 0.90576171875}, {"start": 2338.84, "end": 2339.06, "word": " since", "probability": 0.77685546875}, {"start": 2339.06, "end": 2339.46, "word": " everything", "probability": 0.81640625}, {"start": 2339.46, "end": 2339.54, "word": " is", "probability": 0.71826171875}, {"start": 2339.54, "end": 2339.82, "word": " supposed", "probability": 0.9208984375}, {"start": 2339.82, "end": 2339.88, "word": " to", "probability": 0.9716796875}, {"start": 2339.88, "end": 2340.22, "word": " communicate", "probability": 0.6484375}, {"start": 2340.22, "end": 2340.4, "word": " with", "probability": 0.8896484375}, {"start": 2340.4, "end": 2340.74, "word": " everything,", "probability": 0.7451171875}, {"start": 2341.2, "end": 2341.3, "word": " is", "probability": 0.442138671875}, {"start": 2341.3, "end": 2341.3, "word": " to", "probability": 0.662109375}, {"start": 2341.3, "end": 2341.48, "word": " make", "probability": 0.267333984375}, {"start": 2341.48, "end": 2341.72, "word": " an", "probability": 0.77734375}, {"start": 2341.72, "end": 2341.92, "word": " email", "probability": 0.94873046875}, {"start": 2341.92, "end": 2342.88, "word": " to", "probability": 0.479736328125}, {"start": 2342.88, "end": 2342.94, "word": " the", "probability": 0.76611328125}, {"start": 2342.94, "end": 2343.26, "word": " data", "probability": 0.54541015625}, {"start": 2343.26, "end": 2344.14, "word": " bus.", "probability": 0.60986328125}, {"start": 2345.56, "end": 2346.0, "word": " In", "probability": 0.2376708984375}, {"start": 2346.0, "end": 2346.02, "word": " the", "probability": 0.92431640625}, {"start": 2346.02, "end": 2346.16, "word": " last", "probability": 0.8486328125}, {"start": 2346.16, "end": 2346.52, "word": " slide,", "probability": 0.96142578125}, {"start": 2346.58, "end": 2346.66, "word": " we", "probability": 0.943359375}, {"start": 2346.66, "end": 2346.92, "word": " see", "probability": 0.60546875}], "temperature": 1.0}, {"id": 93, "seek": 236488, "start": 2348.58, "end": 2364.88, "text": "The shape of the UML diagram of the data bus pattern means that this drawing applies an example to the data bus pattern. Let's follow it. Because where is the class of the data bus? Here it is. Do you see it? This is the class of the data bus.", "tokens": [2278, 3909, 295, 264, 31335, 43, 10686, 295, 264, 1412, 1255, 5102, 1355, 300, 341, 6316, 13165, 364, 1365, 281, 264, 1412, 1255, 5102, 13, 961, 311, 1524, 309, 13, 1436, 689, 307, 264, 1508, 295, 264, 1412, 1255, 30, 1692, 309, 307, 13, 1144, 291, 536, 309, 30, 639, 307, 264, 1508, 295, 264, 1412, 1255, 13], "avg_logprob": -0.37049787731493933, "compression_ratio": 1.6643835616438356, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2348.58, "end": 2349.02, "word": "The", "probability": 0.335205078125}, {"start": 2349.02, "end": 2349.24, "word": " shape", "probability": 0.5361328125}, {"start": 2349.24, "end": 2349.42, "word": " of", "probability": 0.96533203125}, {"start": 2349.42, "end": 2349.44, "word": " the", "probability": 0.7451171875}, {"start": 2349.44, "end": 2349.78, "word": " UML", "probability": 0.6922607421875}, {"start": 2349.78, "end": 2350.3, "word": " diagram", "probability": 0.82861328125}, {"start": 2350.3, "end": 2351.0, "word": " of", "probability": 0.33349609375}, {"start": 2351.0, "end": 2351.3, "word": " the", "probability": 0.7568359375}, {"start": 2351.3, "end": 2351.52, "word": " data", "probability": 0.388427734375}, {"start": 2351.52, "end": 2351.74, "word": " bus", "probability": 0.77197265625}, {"start": 2351.74, "end": 2352.14, "word": " pattern", "probability": 0.8505859375}, {"start": 2352.14, "end": 2352.94, "word": " means", "probability": 0.365966796875}, {"start": 2352.94, "end": 2353.22, "word": " that", "probability": 0.81494140625}, {"start": 2353.22, "end": 2353.32, "word": " this", "probability": 0.7197265625}, {"start": 2353.32, "end": 2353.7, "word": " drawing", "probability": 0.6865234375}, {"start": 2353.7, "end": 2355.16, "word": " applies", "probability": 0.55322265625}, {"start": 2355.16, "end": 2355.9, "word": " an", "probability": 0.6171875}, {"start": 2355.9, "end": 2356.32, "word": " example", "probability": 0.88427734375}, {"start": 2356.32, "end": 2357.0, "word": " to", "probability": 0.609375}, {"start": 2357.0, "end": 2357.14, "word": " the", "probability": 0.890625}, {"start": 2357.14, "end": 2357.32, "word": " data", "probability": 0.9072265625}, {"start": 2357.32, "end": 2357.56, "word": " bus", "probability": 0.94287109375}, {"start": 2357.56, "end": 2357.92, "word": " pattern.", "probability": 0.87158203125}, {"start": 2358.1, "end": 2358.32, "word": " Let's", "probability": 0.70166015625}, {"start": 2358.32, "end": 2358.64, "word": " follow", "probability": 0.68359375}, {"start": 2358.64, "end": 2359.12, "word": " it.", "probability": 0.65673828125}, {"start": 2359.62, "end": 2359.78, "word": " Because", "probability": 0.5791015625}, {"start": 2359.78, "end": 2359.94, "word": " where", "probability": 0.62060546875}, {"start": 2359.94, "end": 2360.04, "word": " is", "probability": 0.8720703125}, {"start": 2360.04, "end": 2360.08, "word": " the", "probability": 0.8935546875}, {"start": 2360.08, "end": 2360.32, "word": " class", "probability": 0.87060546875}, {"start": 2360.32, "end": 2360.52, "word": " of", "probability": 0.927734375}, {"start": 2360.52, "end": 2360.66, "word": " the", "probability": 0.82470703125}, {"start": 2360.66, "end": 2360.84, "word": " data", "probability": 0.87939453125}, {"start": 2360.84, "end": 2361.14, "word": " bus?", "probability": 0.95263671875}, {"start": 2361.46, "end": 2361.68, "word": " Here", "probability": 0.398681640625}, {"start": 2361.68, "end": 2361.74, "word": " it", "probability": 0.348876953125}, {"start": 2361.74, "end": 2362.04, "word": " is.", "probability": 0.94970703125}, {"start": 2362.1, "end": 2362.2, "word": " Do", "probability": 0.268798828125}, {"start": 2362.2, "end": 2362.48, "word": " you", "probability": 0.97265625}, {"start": 2362.48, "end": 2362.48, "word": " see", "probability": 0.92822265625}, {"start": 2362.48, "end": 2362.64, "word": " it?", "probability": 0.47119140625}, {"start": 2363.14, "end": 2363.32, "word": " This", "probability": 0.58203125}, {"start": 2363.32, "end": 2363.38, "word": " is", "probability": 0.92919921875}, {"start": 2363.38, "end": 2363.42, "word": " the", "probability": 0.91064453125}, {"start": 2363.42, "end": 2363.82, "word": " class", "probability": 0.9287109375}, {"start": 2363.82, "end": 2364.32, "word": " of", "probability": 0.9619140625}, {"start": 2364.32, "end": 2364.46, "word": " the", "probability": 0.86865234375}, {"start": 2364.46, "end": 2364.64, "word": " data", "probability": 0.93017578125}, {"start": 2364.64, "end": 2364.88, "word": " bus.", "probability": 0.9521484375}], "temperature": 1.0}, {"id": 94, "seek": 237688, "start": 2365.6, "end": 2376.88, "text": "This database class is made as a singleton, it is an instance of a database and it is private", "tokens": [5723, 8149, 1508, 307, 1027, 382, 257, 1522, 14806, 11, 309, 307, 364, 5197, 295, 257, 8149, 293, 309, 307, 4551], "avg_logprob": -1.0014205033128911, "compression_ratio": 1.24, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 2365.6, "end": 2366.04, "word": "This", "probability": 0.0950927734375}, {"start": 2366.04, "end": 2366.7, "word": " database", "probability": 0.316162109375}, {"start": 2366.7, "end": 2366.98, "word": " class", "probability": 0.86767578125}, {"start": 2366.98, "end": 2368.22, "word": " is", "probability": 0.382568359375}, {"start": 2368.22, "end": 2368.48, "word": " made", "probability": 0.228759765625}, {"start": 2368.48, "end": 2369.46, "word": " as", "probability": 0.373046875}, {"start": 2369.46, "end": 2369.62, "word": " a", "probability": 0.36669921875}, {"start": 2369.62, "end": 2369.96, "word": " singleton,", "probability": 0.775146484375}, {"start": 2370.44, "end": 2370.62, "word": " it", "probability": 0.1282958984375}, {"start": 2370.62, "end": 2371.62, "word": " is", "probability": 0.56298828125}, {"start": 2371.62, "end": 2371.76, "word": " an", "probability": 0.219970703125}, {"start": 2371.76, "end": 2372.28, "word": " instance", "probability": 0.9697265625}, {"start": 2372.28, "end": 2372.6, "word": " of", "probability": 0.6435546875}, {"start": 2372.6, "end": 2372.88, "word": " a", "probability": 0.1793212890625}, {"start": 2372.88, "end": 2373.68, "word": " database", "probability": 0.6533203125}, {"start": 2373.68, "end": 2375.36, "word": " and", "probability": 0.1197509765625}, {"start": 2375.36, "end": 2375.58, "word": " it", "probability": 0.32666015625}, {"start": 2375.58, "end": 2375.66, "word": " is", "probability": 0.66064453125}, {"start": 2375.66, "end": 2376.88, "word": " private", "probability": 0.62353515625}], "temperature": 1.0}, {"id": 95, "seek": 239787, "start": 2382.21, "end": 2397.87, "text": "this is the constructor, but this constructor is supposed to be private to apply singleton and this is a delegate instance which returns a data bus and then it has a list of members", "tokens": [11176, 307, 264, 47479, 11, 457, 341, 47479, 307, 3442, 281, 312, 4551, 281, 3079, 1522, 14806, 293, 341, 307, 257, 40999, 5197, 597, 11247, 257, 1412, 1255, 293, 550, 309, 575, 257, 1329, 295, 2679], "avg_logprob": -0.5000000064437454, "compression_ratio": 1.4715447154471544, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2382.21, "end": 2382.87, "word": "this", "probability": 0.29296875}, {"start": 2382.87, "end": 2382.89, "word": " is", "probability": 0.654296875}, {"start": 2382.89, "end": 2382.99, "word": " the", "probability": 0.57666015625}, {"start": 2382.99, "end": 2383.53, "word": " constructor,", "probability": 0.90087890625}, {"start": 2383.69, "end": 2383.83, "word": " but", "probability": 0.68701171875}, {"start": 2383.83, "end": 2383.99, "word": " this", "probability": 0.69970703125}, {"start": 2383.99, "end": 2384.47, "word": " constructor", "probability": 0.8466796875}, {"start": 2384.47, "end": 2384.61, "word": " is", "probability": 0.30126953125}, {"start": 2384.61, "end": 2384.75, "word": " supposed", "probability": 0.485595703125}, {"start": 2384.75, "end": 2384.89, "word": " to", "probability": 0.9716796875}, {"start": 2384.89, "end": 2385.63, "word": " be", "probability": 0.93798828125}, {"start": 2385.63, "end": 2386.13, "word": " private", "probability": 0.857421875}, {"start": 2386.13, "end": 2387.73, "word": " to", "probability": 0.2073974609375}, {"start": 2387.73, "end": 2388.55, "word": " apply", "probability": 0.55810546875}, {"start": 2388.55, "end": 2389.17, "word": " singleton", "probability": 0.795166015625}, {"start": 2389.17, "end": 2389.65, "word": " and", "probability": 0.45751953125}, {"start": 2389.65, "end": 2389.83, "word": " this", "probability": 0.6982421875}, {"start": 2389.83, "end": 2390.09, "word": " is", "probability": 0.85302734375}, {"start": 2390.09, "end": 2390.09, "word": " a", "probability": 0.3076171875}, {"start": 2390.09, "end": 2390.27, "word": " delegate", "probability": 0.607421875}, {"start": 2390.27, "end": 2390.83, "word": " instance", "probability": 0.962890625}, {"start": 2390.83, "end": 2391.05, "word": " which", "probability": 0.2169189453125}, {"start": 2391.05, "end": 2391.61, "word": " returns", "probability": 0.6279296875}, {"start": 2391.61, "end": 2392.75, "word": " a", "probability": 0.5712890625}, {"start": 2392.75, "end": 2392.95, "word": " data", "probability": 0.468017578125}, {"start": 2392.95, "end": 2393.33, "word": " bus", "probability": 0.72705078125}, {"start": 2393.33, "end": 2394.51, "word": " and", "probability": 0.494384765625}, {"start": 2394.51, "end": 2394.87, "word": " then", "probability": 0.69677734375}, {"start": 2394.87, "end": 2395.27, "word": " it", "probability": 0.26123046875}, {"start": 2395.27, "end": 2395.49, "word": " has", "probability": 0.88623046875}, {"start": 2395.49, "end": 2395.67, "word": " a", "probability": 0.9384765625}, {"start": 2395.67, "end": 2396.03, "word": " list", "probability": 0.92431640625}, {"start": 2396.03, "end": 2397.43, "word": " of", "probability": 0.96435546875}, {"start": 2397.43, "end": 2397.87, "word": " members", "probability": 0.78759765625}], "temperature": 1.0}, {"id": 96, "seek": 242117, "start": 2398.93, "end": 2421.17, "text": "It's like a list of subscribers, but it's called member here And member is an interface, okay? Of course, we made the interface inside the class Of course, in UML, when you put a class inside another class, you don't make a square inside another square, okay? You have to make it outside, okay? So this interface is called member, I wrote on it, this is an interface", "tokens": [3522, 311, 411, 257, 1329, 295, 11092, 11, 457, 309, 311, 1219, 4006, 510, 400, 4006, 307, 364, 9226, 11, 1392, 30, 2720, 1164, 11, 321, 1027, 264, 9226, 1854, 264, 1508, 2720, 1164, 11, 294, 624, 12683, 11, 562, 291, 829, 257, 1508, 1854, 1071, 1508, 11, 291, 500, 380, 652, 257, 3732, 1854, 1071, 3732, 11, 1392, 30, 509, 362, 281, 652, 309, 2380, 11, 1392, 30, 407, 341, 9226, 307, 1219, 4006, 11, 286, 4114, 322, 309, 11, 341, 307, 364, 9226], "avg_logprob": -0.45203487886938937, "compression_ratio": 1.83, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 2398.93, "end": 2399.27, "word": "It's", "probability": 0.474609375}, {"start": 2399.27, "end": 2399.39, "word": " like", "probability": 0.71142578125}, {"start": 2399.39, "end": 2399.51, "word": " a", "probability": 0.8017578125}, {"start": 2399.51, "end": 2399.71, "word": " list", "probability": 0.88525390625}, {"start": 2399.71, "end": 2399.87, "word": " of", "probability": 0.96240234375}, {"start": 2399.87, "end": 2400.55, "word": " subscribers,", "probability": 0.8955078125}, {"start": 2400.83, "end": 2400.95, "word": " but", "probability": 0.78466796875}, {"start": 2400.95, "end": 2401.23, "word": " it's", "probability": 0.4876708984375}, {"start": 2401.23, "end": 2401.43, "word": " called", "probability": 0.6103515625}, {"start": 2401.43, "end": 2402.91, "word": " member", "probability": 0.285888671875}, {"start": 2402.91, "end": 2403.17, "word": " here", "probability": 0.392578125}, {"start": 2403.17, "end": 2403.49, "word": " And", "probability": 0.2890625}, {"start": 2403.49, "end": 2403.83, "word": " member", "probability": 0.462890625}, {"start": 2403.83, "end": 2404.01, "word": " is", "probability": 0.56298828125}, {"start": 2404.01, "end": 2404.17, "word": " an", "probability": 0.275390625}, {"start": 2404.17, "end": 2404.71, "word": " interface,", "probability": 0.9013671875}, {"start": 2405.47, "end": 2405.71, "word": " okay?", "probability": 0.2113037109375}, {"start": 2406.49, "end": 2406.89, "word": " Of", "probability": 0.201416015625}, {"start": 2406.89, "end": 2407.37, "word": " course,", "probability": 0.9521484375}, {"start": 2407.41, "end": 2407.63, "word": " we", "probability": 0.83740234375}, {"start": 2407.63, "end": 2408.05, "word": " made", "probability": 0.426513671875}, {"start": 2408.05, "end": 2408.21, "word": " the", "probability": 0.6318359375}, {"start": 2408.21, "end": 2408.63, "word": " interface", "probability": 0.92041015625}, {"start": 2408.63, "end": 2408.89, "word": " inside", "probability": 0.77587890625}, {"start": 2408.89, "end": 2409.07, "word": " the", "probability": 0.80615234375}, {"start": 2409.07, "end": 2409.37, "word": " class", "probability": 0.97021484375}, {"start": 2409.37, "end": 2410.23, "word": " Of", "probability": 0.345458984375}, {"start": 2410.23, "end": 2410.69, "word": " course,", "probability": 0.9599609375}, {"start": 2410.81, "end": 2410.85, "word": " in", "probability": 0.734375}, {"start": 2410.85, "end": 2411.31, "word": " UML,", "probability": 0.7230224609375}, {"start": 2411.47, "end": 2412.49, "word": " when", "probability": 0.623046875}, {"start": 2412.49, "end": 2412.65, "word": " you", "probability": 0.939453125}, {"start": 2412.65, "end": 2412.85, "word": " put", "probability": 0.67626953125}, {"start": 2412.85, "end": 2412.97, "word": " a", "probability": 0.845703125}, {"start": 2412.97, "end": 2413.15, "word": " class", "probability": 0.9609375}, {"start": 2413.15, "end": 2413.31, "word": " inside", "probability": 0.83203125}, {"start": 2413.31, "end": 2413.41, "word": " another", "probability": 0.65478515625}, {"start": 2413.41, "end": 2413.67, "word": " class,", "probability": 0.94775390625}, {"start": 2413.77, "end": 2413.83, "word": " you", "probability": 0.68408203125}, {"start": 2413.83, "end": 2413.93, "word": " don't", "probability": 0.89501953125}, {"start": 2413.93, "end": 2414.13, "word": " make", "probability": 0.55419921875}, {"start": 2414.13, "end": 2414.29, "word": " a", "probability": 0.74755859375}, {"start": 2414.29, "end": 2414.51, "word": " square", "probability": 0.67626953125}, {"start": 2414.51, "end": 2414.69, "word": " inside", "probability": 0.8466796875}, {"start": 2414.69, "end": 2414.81, "word": " another", "probability": 0.64306640625}, {"start": 2414.81, "end": 2415.23, "word": " square,", "probability": 0.912109375}, {"start": 2415.23, "end": 2415.83, "word": " okay?", "probability": 0.7060546875}, {"start": 2416.01, "end": 2416.23, "word": " You", "probability": 0.412841796875}, {"start": 2416.23, "end": 2416.39, "word": " have", "probability": 0.5478515625}, {"start": 2416.39, "end": 2416.39, "word": " to", "probability": 0.96826171875}, {"start": 2416.39, "end": 2416.51, "word": " make", "probability": 0.7763671875}, {"start": 2416.51, "end": 2416.63, "word": " it", "probability": 0.63720703125}, {"start": 2416.63, "end": 2416.81, "word": " outside,", "probability": 0.716796875}, {"start": 2417.23, "end": 2417.47, "word": " okay?", "probability": 0.50341796875}, {"start": 2417.85, "end": 2417.95, "word": " So", "probability": 0.86669921875}, {"start": 2417.95, "end": 2418.09, "word": " this", "probability": 0.64501953125}, {"start": 2418.09, "end": 2418.59, "word": " interface", "probability": 0.8515625}, {"start": 2418.59, "end": 2418.75, "word": " is", "probability": 0.82275390625}, {"start": 2418.75, "end": 2418.97, "word": " called", "probability": 0.7626953125}, {"start": 2418.97, "end": 2419.25, "word": " member,", "probability": 0.7568359375}, {"start": 2419.35, "end": 2419.65, "word": " I", "probability": 0.334716796875}, {"start": 2419.65, "end": 2419.89, "word": " wrote", "probability": 0.787109375}, {"start": 2419.89, "end": 2420.05, "word": " on", "probability": 0.426513671875}, {"start": 2420.05, "end": 2420.13, "word": " it,", "probability": 0.91943359375}, {"start": 2420.15, "end": 2420.35, "word": " this", "probability": 0.354248046875}, {"start": 2420.35, "end": 2420.47, "word": " is", "probability": 0.8896484375}, {"start": 2420.47, "end": 2420.73, "word": " an", "probability": 0.366943359375}, {"start": 2420.73, "end": 2421.17, "word": " interface", "probability": 0.90478515625}], "temperature": 1.0}, {"id": 97, "seek": 243935, "start": 2421.73, "end": 2439.35, "text": "and this method which I called message received is called asset and I made a class called bus message and I called it data type we will come back to this data type, let's go back to the data bus, it makes listeners", "tokens": [474, 341, 3170, 597, 286, 1219, 3636, 4613, 307, 1219, 11999, 293, 286, 1027, 257, 1508, 1219, 1255, 3636, 293, 286, 1219, 309, 1412, 2010, 321, 486, 808, 646, 281, 341, 1412, 2010, 11, 718, 311, 352, 646, 281, 264, 1412, 1255, 11, 309, 1669, 23274], "avg_logprob": -0.6452792527827811, "compression_ratio": 1.633587786259542, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2421.73, "end": 2421.95, "word": "and", "probability": 0.154296875}, {"start": 2421.95, "end": 2422.13, "word": " this", "probability": 0.457275390625}, {"start": 2422.13, "end": 2422.67, "word": " method", "probability": 0.9169921875}, {"start": 2422.67, "end": 2422.81, "word": " which", "probability": 0.28515625}, {"start": 2422.81, "end": 2422.95, "word": " I", "probability": 0.78173828125}, {"start": 2422.95, "end": 2423.29, "word": " called", "probability": 0.297607421875}, {"start": 2423.29, "end": 2423.61, "word": " message", "probability": 0.6123046875}, {"start": 2423.61, "end": 2424.17, "word": " received", "probability": 0.59228515625}, {"start": 2424.17, "end": 2424.89, "word": " is", "probability": 0.44189453125}, {"start": 2424.89, "end": 2425.37, "word": " called", "probability": 0.6376953125}, {"start": 2425.37, "end": 2426.61, "word": " asset", "probability": 0.07647705078125}, {"start": 2426.61, "end": 2427.59, "word": " and", "probability": 0.494384765625}, {"start": 2427.59, "end": 2428.01, "word": " I", "probability": 0.8662109375}, {"start": 2428.01, "end": 2428.23, "word": " made", "probability": 0.5146484375}, {"start": 2428.23, "end": 2428.37, "word": " a", "probability": 0.72314453125}, {"start": 2428.37, "end": 2428.73, "word": " class", "probability": 0.98046875}, {"start": 2428.73, "end": 2429.09, "word": " called", "probability": 0.454833984375}, {"start": 2429.09, "end": 2429.85, "word": " bus", "probability": 0.82177734375}, {"start": 2429.85, "end": 2430.31, "word": " message", "probability": 0.8798828125}, {"start": 2430.31, "end": 2431.17, "word": " and", "probability": 0.259033203125}, {"start": 2431.17, "end": 2431.51, "word": " I", "probability": 0.432373046875}, {"start": 2431.51, "end": 2431.73, "word": " called", "probability": 0.451904296875}, {"start": 2431.73, "end": 2432.07, "word": " it", "probability": 0.85986328125}, {"start": 2432.07, "end": 2433.15, "word": " data", "probability": 0.8427734375}, {"start": 2433.15, "end": 2433.49, "word": " type", "probability": 0.9755859375}, {"start": 2433.49, "end": 2434.99, "word": " we", "probability": 0.27294921875}, {"start": 2434.99, "end": 2435.21, "word": " will", "probability": 0.72900390625}, {"start": 2435.21, "end": 2435.35, "word": " come", "probability": 0.5595703125}, {"start": 2435.35, "end": 2435.47, "word": " back", "probability": 0.76806640625}, {"start": 2435.47, "end": 2435.51, "word": " to", "probability": 0.91357421875}, {"start": 2435.51, "end": 2435.61, "word": " this", "probability": 0.457763671875}, {"start": 2435.61, "end": 2435.75, "word": " data", "probability": 0.92236328125}, {"start": 2435.75, "end": 2436.07, "word": " type,", "probability": 0.978515625}, {"start": 2436.57, "end": 2436.97, "word": " let's", "probability": 0.46875}, {"start": 2436.97, "end": 2437.09, "word": " go", "probability": 0.5751953125}, {"start": 2437.09, "end": 2437.19, "word": " back", "probability": 0.84814453125}, {"start": 2437.19, "end": 2437.25, "word": " to", "probability": 0.96240234375}, {"start": 2437.25, "end": 2437.35, "word": " the", "probability": 0.408935546875}, {"start": 2437.35, "end": 2437.51, "word": " data", "probability": 0.75732421875}, {"start": 2437.51, "end": 2437.79, "word": " bus,", "probability": 0.9560546875}, {"start": 2437.87, "end": 2437.99, "word": " it", "probability": 0.55029296875}, {"start": 2437.99, "end": 2438.21, "word": " makes", "probability": 0.202392578125}, {"start": 2438.21, "end": 2439.35, "word": " listeners", "probability": 0.70751953125}], "temperature": 1.0}, {"id": 98, "seek": 246909, "start": 2440.65, "end": 2469.09, "text": " I made a list, I made it a set. What is the difference between a list and a set? A set takes repetition. Of course, this is easier. Instead of going to check if the guest is not there, I use the set. If he is there, I replace him. Okay? And then I also made a method called subscribe and unsubscribe. It takes a loop. And I also made a method called publish. Which is the same method that I made, which receives a message and distributes it to everyone.", "tokens": [286, 1027, 257, 1329, 11, 286, 1027, 309, 257, 992, 13, 708, 307, 264, 2649, 1296, 257, 1329, 293, 257, 992, 30, 316, 992, 2516, 30432, 13, 2720, 1164, 11, 341, 307, 3571, 13, 7156, 295, 516, 281, 1520, 498, 264, 8341, 307, 406, 456, 11, 286, 764, 264, 992, 13, 759, 415, 307, 456, 11, 286, 7406, 796, 13, 1033, 30, 400, 550, 286, 611, 1027, 257, 3170, 1219, 3022, 293, 2693, 9493, 13, 467, 2516, 257, 6367, 13, 400, 286, 611, 1027, 257, 3170, 1219, 11374, 13, 3013, 307, 264, 912, 3170, 300, 286, 1027, 11, 597, 20717, 257, 3636, 293, 4400, 1819, 309, 281, 1518, 13], "avg_logprob": -0.49318180951205165, "compression_ratio": 1.7734375, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 2440.65, "end": 2441.05, "word": " I", "probability": 0.37158203125}, {"start": 2441.05, "end": 2441.35, "word": " made", "probability": 0.46240234375}, {"start": 2441.35, "end": 2441.51, "word": " a", "probability": 0.82470703125}, {"start": 2441.51, "end": 2441.69, "word": " list,", "probability": 0.82861328125}, {"start": 2441.73, "end": 2441.93, "word": " I", "probability": 0.241943359375}, {"start": 2441.93, "end": 2442.27, "word": " made", "probability": 0.355712890625}, {"start": 2442.27, "end": 2442.41, "word": " it", "probability": 0.6201171875}, {"start": 2442.41, "end": 2442.47, "word": " a", "probability": 0.513671875}, {"start": 2442.47, "end": 2442.69, "word": " set.", "probability": 0.94677734375}, {"start": 2443.45, "end": 2443.85, "word": " What", "probability": 0.63134765625}, {"start": 2443.85, "end": 2444.01, "word": " is", "probability": 0.2197265625}, {"start": 2444.01, "end": 2444.05, "word": " the", "probability": 0.69775390625}, {"start": 2444.05, "end": 2444.17, "word": " difference", "probability": 0.77197265625}, {"start": 2444.17, "end": 2444.33, "word": " between", "probability": 0.701171875}, {"start": 2444.33, "end": 2444.35, "word": " a", "probability": 0.71240234375}, {"start": 2444.35, "end": 2444.49, "word": " list", "probability": 0.82861328125}, {"start": 2444.49, "end": 2444.65, "word": " and", "probability": 0.9208984375}, {"start": 2444.65, "end": 2444.77, "word": " a", "probability": 0.77294921875}, {"start": 2444.77, "end": 2445.03, "word": " set?", "probability": 0.9677734375}, {"start": 2445.83, "end": 2446.23, "word": " A", "probability": 0.465087890625}, {"start": 2446.23, "end": 2446.39, "word": " set", "probability": 0.921875}, {"start": 2446.39, "end": 2446.71, "word": " takes", "probability": 0.27392578125}, {"start": 2446.71, "end": 2447.09, "word": " repetition.", "probability": 0.145263671875}, {"start": 2447.65, "end": 2447.77, "word": " Of", "probability": 0.38671875}, {"start": 2447.77, "end": 2447.81, "word": " course,", "probability": 0.9482421875}, {"start": 2447.93, "end": 2448.05, "word": " this", "probability": 0.26416015625}, {"start": 2448.05, "end": 2448.07, "word": " is", "probability": 0.58935546875}, {"start": 2448.07, "end": 2448.35, "word": " easier.", "probability": 0.50537109375}, {"start": 2448.49, "end": 2448.65, "word": " Instead", "probability": 0.71484375}, {"start": 2448.65, "end": 2448.77, "word": " of", "probability": 0.9609375}, {"start": 2448.77, "end": 2448.95, "word": " going", "probability": 0.413330078125}, {"start": 2448.95, "end": 2449.05, "word": " to", "probability": 0.525390625}, {"start": 2449.05, "end": 2449.29, "word": " check", "probability": 0.6064453125}, {"start": 2449.29, "end": 2449.51, "word": " if", "probability": 0.80126953125}, {"start": 2449.51, "end": 2449.77, "word": " the", "probability": 0.2259521484375}, {"start": 2449.77, "end": 2449.77, "word": " guest", "probability": 0.75390625}, {"start": 2449.77, "end": 2449.93, "word": " is", "probability": 0.8212890625}, {"start": 2449.93, "end": 2450.03, "word": " not", "probability": 0.60302734375}, {"start": 2450.03, "end": 2450.59, "word": " there,", "probability": 0.354736328125}, {"start": 2451.05, "end": 2451.45, "word": " I", "probability": 0.7138671875}, {"start": 2451.45, "end": 2451.77, "word": " use", "probability": 0.77587890625}, {"start": 2451.77, "end": 2451.99, "word": " the", "probability": 0.79150390625}, {"start": 2451.99, "end": 2452.13, "word": " set.", "probability": 0.93359375}, {"start": 2452.17, "end": 2452.35, "word": " If", "probability": 0.194580078125}, {"start": 2452.35, "end": 2452.53, "word": " he", "probability": 0.42578125}, {"start": 2452.53, "end": 2452.53, "word": " is", "probability": 0.60888671875}, {"start": 2452.53, "end": 2452.87, "word": " there,", "probability": 0.465576171875}, {"start": 2453.05, "end": 2453.19, "word": " I", "probability": 0.81787109375}, {"start": 2453.19, "end": 2453.49, "word": " replace", "probability": 0.62060546875}, {"start": 2453.49, "end": 2453.81, "word": " him.", "probability": 0.90673828125}, {"start": 2454.19, "end": 2454.31, "word": " Okay?", "probability": 0.2410888671875}, {"start": 2455.51, "end": 2455.91, "word": " And", "probability": 0.50048828125}, {"start": 2455.91, "end": 2456.17, "word": " then", "probability": 0.67236328125}, {"start": 2456.17, "end": 2456.37, "word": " I", "probability": 0.497314453125}, {"start": 2456.37, "end": 2456.57, "word": " also", "probability": 0.654296875}, {"start": 2456.57, "end": 2456.57, "word": " made", "probability": 0.44970703125}, {"start": 2456.57, "end": 2456.89, "word": " a", "probability": 0.8935546875}, {"start": 2456.89, "end": 2457.11, "word": " method", "probability": 0.96533203125}, {"start": 2457.11, "end": 2457.41, "word": " called", "probability": 0.7333984375}, {"start": 2457.41, "end": 2457.87, "word": " subscribe", "probability": 0.60791015625}, {"start": 2457.87, "end": 2459.07, "word": " and", "probability": 0.87353515625}, {"start": 2459.07, "end": 2459.69, "word": " unsubscribe.", "probability": 0.972412109375}, {"start": 2459.81, "end": 2459.89, "word": " It", "probability": 0.515625}, {"start": 2459.89, "end": 2460.03, "word": " takes", "probability": 0.79296875}, {"start": 2460.03, "end": 2460.23, "word": " a", "probability": 0.58056640625}, {"start": 2460.23, "end": 2460.31, "word": " loop.", "probability": 0.050506591796875}, {"start": 2460.79, "end": 2461.05, "word": " And", "probability": 0.69873046875}, {"start": 2461.05, "end": 2461.19, "word": " I", "probability": 0.75048828125}, {"start": 2461.19, "end": 2461.31, "word": " also", "probability": 0.82470703125}, {"start": 2461.31, "end": 2461.31, "word": " made", "probability": 0.86572265625}, {"start": 2461.31, "end": 2461.61, "word": " a", "probability": 0.94677734375}, {"start": 2461.61, "end": 2461.81, "word": " method", "probability": 0.9619140625}, {"start": 2461.81, "end": 2462.17, "word": " called", "probability": 0.86376953125}, {"start": 2462.17, "end": 2463.13, "word": " publish.", "probability": 0.8701171875}, {"start": 2464.09, "end": 2464.49, "word": " Which", "probability": 0.5546875}, {"start": 2464.49, "end": 2464.63, "word": " is", "probability": 0.943359375}, {"start": 2464.63, "end": 2464.85, "word": " the", "probability": 0.92041015625}, {"start": 2464.85, "end": 2464.85, "word": " same", "probability": 0.89794921875}, {"start": 2464.85, "end": 2465.17, "word": " method", "probability": 0.9501953125}, {"start": 2465.17, "end": 2465.29, "word": " that", "probability": 0.487060546875}, {"start": 2465.29, "end": 2465.41, "word": " I", "probability": 0.97314453125}, {"start": 2465.41, "end": 2465.63, "word": " made,", "probability": 0.60302734375}, {"start": 2465.73, "end": 2465.83, "word": " which", "probability": 0.7431640625}, {"start": 2465.83, "end": 2466.53, "word": " receives", "probability": 0.58203125}, {"start": 2466.53, "end": 2466.79, "word": " a", "probability": 0.564453125}, {"start": 2466.79, "end": 2467.01, "word": " message", "probability": 0.89013671875}, {"start": 2467.01, "end": 2467.25, "word": " and", "probability": 0.91259765625}, {"start": 2467.25, "end": 2467.77, "word": " distributes", "probability": 0.83544921875}, {"start": 2467.77, "end": 2467.93, "word": " it", "probability": 0.939453125}, {"start": 2467.93, "end": 2468.11, "word": " to", "probability": 0.763671875}, {"start": 2468.11, "end": 2469.09, "word": " everyone.", "probability": 0.65576171875}], "temperature": 1.0}, {"id": 99, "seek": 249892, "start": 2470.79, "end": 2498.93, "text": " Now these two are the elements that need to communicate with each other which is represented in our application ABCD This one is called counter member and this one is called status member and both of them made an implement for the member and these are attributes and methods inside each one has its own state and information about it Now let's see what are these things in them, these are messages", "tokens": [823, 613, 732, 366, 264, 4959, 300, 643, 281, 7890, 365, 1184, 661, 597, 307, 10379, 294, 527, 3861, 22342, 35, 639, 472, 307, 1219, 5682, 4006, 293, 341, 472, 307, 1219, 6558, 4006, 293, 1293, 295, 552, 1027, 364, 4445, 337, 264, 4006, 293, 613, 366, 17212, 293, 7150, 1854, 1184, 472, 575, 1080, 1065, 1785, 293, 1589, 466, 309, 823, 718, 311, 536, 437, 366, 613, 721, 294, 552, 11, 613, 366, 7897], "avg_logprob": -0.6023848527356198, "compression_ratio": 1.761061946902655, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2470.79, "end": 2471.13, "word": " Now", "probability": 0.143798828125}, {"start": 2471.13, "end": 2471.39, "word": " these", "probability": 0.55859375}, {"start": 2471.39, "end": 2471.79, "word": " two", "probability": 0.794921875}, {"start": 2471.79, "end": 2472.11, "word": " are", "probability": 0.39013671875}, {"start": 2472.11, "end": 2472.97, "word": " the", "probability": 0.6982421875}, {"start": 2472.97, "end": 2473.29, "word": " elements", "probability": 0.8046875}, {"start": 2473.29, "end": 2473.45, "word": " that", "probability": 0.7158203125}, {"start": 2473.45, "end": 2473.83, "word": " need", "probability": 0.6142578125}, {"start": 2473.83, "end": 2473.97, "word": " to", "probability": 0.9326171875}, {"start": 2473.97, "end": 2474.39, "word": " communicate", "probability": 0.455810546875}, {"start": 2474.39, "end": 2474.55, "word": " with", "probability": 0.7236328125}, {"start": 2474.55, "end": 2474.81, "word": " each", "probability": 0.90966796875}, {"start": 2474.81, "end": 2474.89, "word": " other", "probability": 0.88427734375}, {"start": 2474.89, "end": 2476.19, "word": " which", "probability": 0.189697265625}, {"start": 2476.19, "end": 2476.41, "word": " is", "probability": 0.5986328125}, {"start": 2476.41, "end": 2476.69, "word": " represented", "probability": 0.5888671875}, {"start": 2476.69, "end": 2476.81, "word": " in", "probability": 0.68798828125}, {"start": 2476.81, "end": 2477.33, "word": " our", "probability": 0.79443359375}, {"start": 2477.33, "end": 2477.33, "word": " application", "probability": 0.466064453125}, {"start": 2477.33, "end": 2478.45, "word": " ABCD", "probability": 0.814697265625}, {"start": 2478.45, "end": 2479.45, "word": " This", "probability": 0.153076171875}, {"start": 2479.45, "end": 2479.69, "word": " one", "probability": 0.467041015625}, {"start": 2479.69, "end": 2479.81, "word": " is", "probability": 0.60498046875}, {"start": 2479.81, "end": 2480.57, "word": " called", "probability": 0.61474609375}, {"start": 2480.57, "end": 2481.05, "word": " counter", "probability": 0.335205078125}, {"start": 2481.05, "end": 2481.41, "word": " member", "probability": 0.7568359375}, {"start": 2481.41, "end": 2481.59, "word": " and", "probability": 0.708984375}, {"start": 2481.59, "end": 2481.77, "word": " this", "probability": 0.587890625}, {"start": 2481.77, "end": 2481.77, "word": " one", "probability": 0.76904296875}, {"start": 2481.77, "end": 2481.89, "word": " is", "probability": 0.79931640625}, {"start": 2481.89, "end": 2482.05, "word": " called", "probability": 0.65185546875}, {"start": 2482.05, "end": 2482.61, "word": " status", "probability": 0.9326171875}, {"start": 2482.61, "end": 2483.53, "word": " member", "probability": 0.8828125}, {"start": 2483.53, "end": 2483.97, "word": " and", "probability": 0.400390625}, {"start": 2483.97, "end": 2484.35, "word": " both", "probability": 0.48876953125}, {"start": 2484.35, "end": 2484.35, "word": " of", "probability": 0.35009765625}, {"start": 2484.35, "end": 2485.01, "word": " them", "probability": 0.86279296875}, {"start": 2485.01, "end": 2485.33, "word": " made", "probability": 0.288818359375}, {"start": 2485.33, "end": 2485.47, "word": " an", "probability": 0.5107421875}, {"start": 2485.47, "end": 2485.73, "word": " implement", "probability": 0.6767578125}, {"start": 2485.73, "end": 2486.01, "word": " for", "probability": 0.71875}, {"start": 2486.01, "end": 2487.85, "word": " the", "probability": 0.351318359375}, {"start": 2487.85, "end": 2488.13, "word": " member", "probability": 0.869140625}, {"start": 2488.13, "end": 2488.61, "word": " and", "probability": 0.572265625}, {"start": 2488.61, "end": 2488.91, "word": " these", "probability": 0.669921875}, {"start": 2488.91, "end": 2489.23, "word": " are", "probability": 0.81884765625}, {"start": 2489.23, "end": 2489.63, "word": " attributes", "probability": 0.630859375}, {"start": 2489.63, "end": 2489.91, "word": " and", "probability": 0.8876953125}, {"start": 2489.91, "end": 2490.29, "word": " methods", "probability": 0.90283203125}, {"start": 2490.29, "end": 2490.69, "word": " inside", "probability": 0.55224609375}, {"start": 2490.69, "end": 2491.05, "word": " each", "probability": 0.2841796875}, {"start": 2491.05, "end": 2491.81, "word": " one", "probability": 0.5732421875}, {"start": 2491.81, "end": 2491.89, "word": " has", "probability": 0.671875}, {"start": 2491.89, "end": 2492.07, "word": " its", "probability": 0.333984375}, {"start": 2492.07, "end": 2492.07, "word": " own", "probability": 0.771484375}, {"start": 2492.07, "end": 2492.35, "word": " state", "probability": 0.81396484375}, {"start": 2492.35, "end": 2492.57, "word": " and", "probability": 0.8779296875}, {"start": 2492.57, "end": 2493.83, "word": " information", "probability": 0.483154296875}, {"start": 2493.83, "end": 2494.19, "word": " about", "probability": 0.213623046875}, {"start": 2494.19, "end": 2494.55, "word": " it", "probability": 0.728515625}, {"start": 2494.55, "end": 2495.55, "word": " Now", "probability": 0.421142578125}, {"start": 2495.55, "end": 2495.73, "word": " let's", "probability": 0.723876953125}, {"start": 2495.73, "end": 2496.01, "word": " see", "probability": 0.3583984375}, {"start": 2496.01, "end": 2496.69, "word": " what", "probability": 0.806640625}, {"start": 2496.69, "end": 2497.07, "word": " are", "probability": 0.281982421875}, {"start": 2497.07, "end": 2497.07, "word": " these", "probability": 0.564453125}, {"start": 2497.07, "end": 2497.07, "word": " things", "probability": 0.2880859375}, {"start": 2497.07, "end": 2497.65, "word": " in", "probability": 0.1251220703125}, {"start": 2497.65, "end": 2498.23, "word": " them,", "probability": 0.41015625}, {"start": 2498.29, "end": 2498.51, "word": " these", "probability": 0.5048828125}, {"start": 2498.51, "end": 2498.67, "word": " are", "probability": 0.7568359375}, {"start": 2498.67, "end": 2498.93, "word": " messages", "probability": 0.475341796875}], "temperature": 1.0}, {"id": 100, "seek": 250127, "start": 2499.71, "end": 2501.27, "text": "Did you notice that I sent you a buzz message?", "tokens": [17648, 291, 3449, 300, 286, 2279, 291, 257, 13036, 3636, 30], "avg_logprob": -0.716796894868215, "compression_ratio": 0.9019607843137255, "no_speech_prob": 0.0, "words": [{"start": 2499.71, "end": 2499.95, "word": "Did", "probability": 0.0882568359375}, {"start": 2499.95, "end": 2500.07, "word": " you", "probability": 0.5693359375}, {"start": 2500.07, "end": 2500.07, "word": " notice", "probability": 0.55078125}, {"start": 2500.07, "end": 2500.19, "word": " that", "probability": 0.6044921875}, {"start": 2500.19, "end": 2500.37, "word": " I", "probability": 0.92138671875}, {"start": 2500.37, "end": 2500.59, "word": " sent", "probability": 0.250244140625}, {"start": 2500.59, "end": 2500.65, "word": " you", "probability": 0.40625}, {"start": 2500.65, "end": 2500.73, "word": " a", "probability": 0.888671875}, {"start": 2500.73, "end": 2500.89, "word": " buzz", "probability": 0.197265625}, {"start": 2500.89, "end": 2501.27, "word": " message?", "probability": 0.76953125}], "temperature": 1.0}, {"id": 101, "seek": 253039, "start": 2502.11, "end": 2530.39, "text": " Okay, and then she said that this message can be classified into what types, such as finance message, human resources message, what is the purpose of classifying the message, so that the receiver can see what type of message it is and see if it has a meaning or not, okay? Because he made the same idea, I made a class and then I made an exam from it, the main message is called data type, and what type is it? Interface, okay, so he made an interface", "tokens": [1033, 11, 293, 550, 750, 848, 300, 341, 3636, 393, 312, 20627, 666, 437, 3467, 11, 1270, 382, 10719, 3636, 11, 1952, 3593, 3636, 11, 437, 307, 264, 4334, 295, 1508, 5489, 264, 3636, 11, 370, 300, 264, 20086, 393, 536, 437, 2010, 295, 3636, 309, 307, 293, 536, 498, 309, 575, 257, 3620, 420, 406, 11, 1392, 30, 1436, 415, 1027, 264, 912, 1558, 11, 286, 1027, 257, 1508, 293, 550, 286, 1027, 364, 1139, 490, 309, 11, 264, 2135, 3636, 307, 1219, 1412, 2010, 11, 293, 437, 2010, 307, 309, 30, 5751, 2868, 11, 1392, 11, 370, 415, 1027, 364, 9226], "avg_logprob": -0.5486778783110472, "compression_ratio": 1.9234042553191488, "no_speech_prob": 1.239776611328125e-05, "words": [{"start": 2502.1099999999997, "end": 2502.5499999999997, "word": " Okay,", "probability": 0.08001708984375}, {"start": 2502.5499999999997, "end": 2502.99, "word": " and", "probability": 0.7275390625}, {"start": 2502.99, "end": 2503.23, "word": " then", "probability": 0.7734375}, {"start": 2503.23, "end": 2503.39, "word": " she", "probability": 0.58056640625}, {"start": 2503.39, "end": 2503.57, "word": " said", "probability": 0.85302734375}, {"start": 2503.57, "end": 2503.79, "word": " that", "probability": 0.7255859375}, {"start": 2503.79, "end": 2503.93, "word": " this", "probability": 0.2384033203125}, {"start": 2503.93, "end": 2504.17, "word": " message", "probability": 0.841796875}, {"start": 2504.17, "end": 2504.53, "word": " can", "probability": 0.333251953125}, {"start": 2504.53, "end": 2504.67, "word": " be", "probability": 0.83154296875}, {"start": 2504.67, "end": 2505.01, "word": " classified", "probability": 0.38427734375}, {"start": 2505.01, "end": 2505.45, "word": " into", "probability": 0.273193359375}, {"start": 2505.45, "end": 2505.95, "word": " what", "probability": 0.1810302734375}, {"start": 2505.95, "end": 2506.69, "word": " types,", "probability": 0.493896484375}, {"start": 2507.37, "end": 2507.99, "word": " such", "probability": 0.27197265625}, {"start": 2507.99, "end": 2508.49, "word": " as", "probability": 0.978515625}, {"start": 2508.49, "end": 2509.13, "word": " finance", "probability": 0.54833984375}, {"start": 2509.13, "end": 2509.71, "word": " message,", "probability": 0.8369140625}, {"start": 2510.37, "end": 2510.71, "word": " human", "probability": 0.798828125}, {"start": 2510.71, "end": 2511.19, "word": " resources", "probability": 0.767578125}, {"start": 2511.19, "end": 2511.73, "word": " message,", "probability": 0.912109375}, {"start": 2511.81, "end": 2512.41, "word": " what", "probability": 0.5068359375}, {"start": 2512.41, "end": 2512.47, "word": " is", "probability": 0.6826171875}, {"start": 2512.47, "end": 2512.51, "word": " the", "probability": 0.86181640625}, {"start": 2512.51, "end": 2512.69, "word": " purpose", "probability": 0.348388671875}, {"start": 2512.69, "end": 2512.81, "word": " of", "probability": 0.93408203125}, {"start": 2512.81, "end": 2513.13, "word": " classifying", "probability": 0.6640625}, {"start": 2513.13, "end": 2513.27, "word": " the", "probability": 0.50634765625}, {"start": 2513.27, "end": 2513.59, "word": " message,", "probability": 0.92236328125}, {"start": 2513.69, "end": 2513.79, "word": " so", "probability": 0.267822265625}, {"start": 2513.79, "end": 2513.85, "word": " that", "probability": 0.8212890625}, {"start": 2513.85, "end": 2513.91, "word": " the", "probability": 0.493408203125}, {"start": 2513.91, "end": 2514.27, "word": " receiver", "probability": 0.43603515625}, {"start": 2514.27, "end": 2515.63, "word": " can", "probability": 0.498779296875}, {"start": 2515.63, "end": 2515.77, "word": " see", "probability": 0.6748046875}, {"start": 2515.77, "end": 2515.95, "word": " what", "probability": 0.724609375}, {"start": 2515.95, "end": 2516.15, "word": " type", "probability": 0.5087890625}, {"start": 2516.15, "end": 2516.23, "word": " of", "probability": 0.8388671875}, {"start": 2516.23, "end": 2516.49, "word": " message", "probability": 0.884765625}, {"start": 2516.49, "end": 2516.57, "word": " it", "probability": 0.7197265625}, {"start": 2516.57, "end": 2516.57, "word": " is", "probability": 0.89990234375}, {"start": 2516.57, "end": 2516.61, "word": " and", "probability": 0.67236328125}, {"start": 2516.61, "end": 2516.79, "word": " see", "probability": 0.369140625}, {"start": 2516.79, "end": 2516.97, "word": " if", "probability": 0.52783203125}, {"start": 2516.97, "end": 2517.09, "word": " it", "probability": 0.65771484375}, {"start": 2517.09, "end": 2517.13, "word": " has", "probability": 0.84912109375}, {"start": 2517.13, "end": 2517.17, "word": " a", "probability": 0.51318359375}, {"start": 2517.17, "end": 2517.31, "word": " meaning", "probability": 0.66455078125}, {"start": 2517.31, "end": 2517.95, "word": " or", "probability": 0.70166015625}, {"start": 2517.95, "end": 2518.11, "word": " not,", "probability": 0.92529296875}, {"start": 2518.47, "end": 2518.73, "word": " okay?", "probability": 0.409912109375}, {"start": 2519.17, "end": 2519.39, "word": " Because", "probability": 0.75048828125}, {"start": 2519.39, "end": 2519.57, "word": " he", "probability": 0.92578125}, {"start": 2519.57, "end": 2519.77, "word": " made", "probability": 0.439453125}, {"start": 2519.77, "end": 2520.03, "word": " the", "probability": 0.9169921875}, {"start": 2520.03, "end": 2520.03, "word": " same", "probability": 0.88818359375}, {"start": 2520.03, "end": 2520.41, "word": " idea,", "probability": 0.81005859375}, {"start": 2520.93, "end": 2521.27, "word": " I", "probability": 0.93212890625}, {"start": 2521.27, "end": 2521.49, "word": " made", "probability": 0.4658203125}, {"start": 2521.49, "end": 2521.61, "word": " a", "probability": 0.67138671875}, {"start": 2521.61, "end": 2521.99, "word": " class", "probability": 0.97021484375}, {"start": 2521.99, "end": 2522.13, "word": " and", "probability": 0.7578125}, {"start": 2522.13, "end": 2522.35, "word": " then", "probability": 0.82373046875}, {"start": 2522.35, "end": 2522.47, "word": " I", "probability": 0.7470703125}, {"start": 2522.47, "end": 2522.69, "word": " made", "probability": 0.55029296875}, {"start": 2522.69, "end": 2522.89, "word": " an", "probability": 0.34521484375}, {"start": 2522.89, "end": 2523.11, "word": " exam", "probability": 0.160400390625}, {"start": 2523.11, "end": 2523.43, "word": " from", "probability": 0.27734375}, {"start": 2523.43, "end": 2523.43, "word": " it,", "probability": 0.92919921875}, {"start": 2523.71, "end": 2524.35, "word": " the", "probability": 0.4931640625}, {"start": 2524.35, "end": 2524.35, "word": " main", "probability": 0.53125}, {"start": 2524.35, "end": 2525.81, "word": " message", "probability": 0.927734375}, {"start": 2525.81, "end": 2525.99, "word": " is", "probability": 0.62451171875}, {"start": 2525.99, "end": 2526.21, "word": " called", "probability": 0.87353515625}, {"start": 2526.21, "end": 2526.47, "word": " data", "probability": 0.625}, {"start": 2526.47, "end": 2526.79, "word": " type,", "probability": 0.9345703125}, {"start": 2526.89, "end": 2526.89, "word": " and", "probability": 0.57666015625}, {"start": 2526.89, "end": 2527.13, "word": " what", "probability": 0.859375}, {"start": 2527.13, "end": 2527.33, "word": " type", "probability": 0.3779296875}, {"start": 2527.33, "end": 2527.49, "word": " is", "probability": 0.72802734375}, {"start": 2527.49, "end": 2527.49, "word": " it?", "probability": 0.4072265625}, {"start": 2528.37, "end": 2528.81, "word": " Interface,", "probability": 0.7900390625}, {"start": 2529.29, "end": 2529.49, "word": " okay,", "probability": 0.751953125}, {"start": 2529.59, "end": 2529.71, "word": " so", "probability": 0.5078125}, {"start": 2529.71, "end": 2529.81, "word": " he", "probability": 0.483154296875}, {"start": 2529.81, "end": 2529.87, "word": " made", "probability": 0.75}, {"start": 2529.87, "end": 2530.01, "word": " an", "probability": 0.74072265625}, {"start": 2530.01, "end": 2530.39, "word": " interface", "probability": 0.90283203125}], "temperature": 1.0}, {"id": 102, "seek": 254706, "start": 2531.26, "end": 2547.06, "text": "So he made a method called getDatabase and setDatabase Of course, the message that I made in my example did not send the database I sent data and sender It was different, it sent the whole database", "tokens": [6455, 415, 1027, 257, 3170, 1219, 483, 35, 267, 455, 651, 293, 992, 35, 267, 455, 651, 2720, 1164, 11, 264, 3636, 300, 286, 1027, 294, 452, 1365, 630, 406, 2845, 264, 8149, 286, 2279, 1412, 293, 2845, 260, 467, 390, 819, 11, 309, 2279, 264, 1379, 8149], "avg_logprob": -0.6154336540066466, "compression_ratio": 1.5153846153846153, "no_speech_prob": 2.9802322387695312e-05, "words": [{"start": 2531.26, "end": 2531.5, "word": "So", "probability": 0.20068359375}, {"start": 2531.5, "end": 2531.64, "word": " he", "probability": 0.322021484375}, {"start": 2531.64, "end": 2531.94, "word": " made", "probability": 0.163330078125}, {"start": 2531.94, "end": 2533.66, "word": " a", "probability": 0.7587890625}, {"start": 2533.66, "end": 2533.92, "word": " method", "probability": 0.64013671875}, {"start": 2533.92, "end": 2534.28, "word": " called", "probability": 0.2353515625}, {"start": 2534.28, "end": 2535.16, "word": " getDatabase", "probability": 0.67177734375}, {"start": 2535.16, "end": 2535.38, "word": " and", "probability": 0.58349609375}, {"start": 2535.38, "end": 2536.14, "word": " setDatabase", "probability": 0.9220703125}, {"start": 2536.14, "end": 2536.64, "word": " Of", "probability": 0.0911865234375}, {"start": 2536.64, "end": 2536.84, "word": " course,", "probability": 0.80126953125}, {"start": 2536.98, "end": 2537.12, "word": " the", "probability": 0.59130859375}, {"start": 2537.12, "end": 2537.52, "word": " message", "probability": 0.685546875}, {"start": 2537.52, "end": 2538.44, "word": " that", "probability": 0.366455078125}, {"start": 2538.44, "end": 2538.64, "word": " I", "probability": 0.89111328125}, {"start": 2538.64, "end": 2538.92, "word": " made", "probability": 0.4638671875}, {"start": 2538.92, "end": 2539.06, "word": " in", "probability": 0.5869140625}, {"start": 2539.06, "end": 2539.52, "word": " my", "probability": 0.91650390625}, {"start": 2539.52, "end": 2539.52, "word": " example", "probability": 0.90771484375}, {"start": 2539.52, "end": 2539.72, "word": " did", "probability": 0.37646484375}, {"start": 2539.72, "end": 2539.78, "word": " not", "probability": 0.9423828125}, {"start": 2539.78, "end": 2540.08, "word": " send", "probability": 0.66845703125}, {"start": 2540.08, "end": 2540.46, "word": " the", "probability": 0.52783203125}, {"start": 2540.46, "end": 2540.72, "word": " database", "probability": 0.43603515625}, {"start": 2540.72, "end": 2541.4, "word": " I", "probability": 0.3955078125}, {"start": 2541.4, "end": 2541.8, "word": " sent", "probability": 0.460693359375}, {"start": 2541.8, "end": 2542.4, "word": " data", "probability": 0.444580078125}, {"start": 2542.4, "end": 2543.78, "word": " and", "probability": 0.78271484375}, {"start": 2543.78, "end": 2544.2, "word": " sender", "probability": 0.60498046875}, {"start": 2544.2, "end": 2544.84, "word": " It", "probability": 0.250244140625}, {"start": 2544.84, "end": 2544.94, "word": " was", "probability": 0.2215576171875}, {"start": 2544.94, "end": 2545.26, "word": " different,", "probability": 0.8310546875}, {"start": 2545.42, "end": 2545.56, "word": " it", "probability": 0.70703125}, {"start": 2545.56, "end": 2546.52, "word": " sent", "probability": 0.65087890625}, {"start": 2546.52, "end": 2546.68, "word": " the", "probability": 0.7412109375}, {"start": 2546.68, "end": 2546.7, "word": " whole", "probability": 0.446044921875}, {"start": 2546.7, "end": 2547.06, "word": " database", "probability": 0.91552734375}], "temperature": 1.0}, {"id": 103, "seek": 256975, "start": 2549.37, "end": 2569.75, "text": " You are free to decide what you want to send. I prefer that you send the data in a basic way and you can put the password. You must send the password so that the message does not return to the password again. It is not just the data to publish. He wants to see who sent the message to him so that the message does not return to him again. So the password must be put in it.", "tokens": [509, 366, 1737, 281, 4536, 437, 291, 528, 281, 2845, 13, 286, 4382, 300, 291, 2845, 264, 1412, 294, 257, 3875, 636, 293, 291, 393, 829, 264, 11524, 13, 509, 1633, 2845, 264, 11524, 370, 300, 264, 3636, 775, 406, 2736, 281, 264, 11524, 797, 13, 467, 307, 406, 445, 264, 1412, 281, 11374, 13, 634, 2738, 281, 536, 567, 2279, 264, 3636, 281, 796, 370, 300, 264, 3636, 775, 406, 2736, 281, 796, 797, 13, 407, 264, 11524, 1633, 312, 829, 294, 309, 13], "avg_logprob": -0.5061773193436999, "compression_ratio": 2.032608695652174, "no_speech_prob": 2.5331974029541016e-05, "words": [{"start": 2549.37, "end": 2549.77, "word": " You", "probability": 0.416748046875}, {"start": 2549.77, "end": 2549.85, "word": " are", "probability": 0.568359375}, {"start": 2549.85, "end": 2550.05, "word": " free", "probability": 0.87451171875}, {"start": 2550.05, "end": 2550.29, "word": " to", "probability": 0.8671875}, {"start": 2550.29, "end": 2550.61, "word": " decide", "probability": 0.88134765625}, {"start": 2550.61, "end": 2550.93, "word": " what", "probability": 0.50634765625}, {"start": 2550.93, "end": 2550.93, "word": " you", "probability": 0.701171875}, {"start": 2550.93, "end": 2550.93, "word": " want", "probability": 0.640625}, {"start": 2550.93, "end": 2550.95, "word": " to", "probability": 0.479248046875}, {"start": 2550.95, "end": 2550.95, "word": " send.", "probability": 0.476318359375}, {"start": 2550.95, "end": 2551.13, "word": " I", "probability": 0.75}, {"start": 2551.13, "end": 2551.77, "word": " prefer", "probability": 0.8447265625}, {"start": 2551.77, "end": 2552.05, "word": " that", "probability": 0.3388671875}, {"start": 2552.05, "end": 2552.23, "word": " you", "probability": 0.9560546875}, {"start": 2552.23, "end": 2552.45, "word": " send", "probability": 0.74609375}, {"start": 2552.45, "end": 2553.11, "word": " the", "probability": 0.6875}, {"start": 2553.11, "end": 2553.43, "word": " data", "probability": 0.89697265625}, {"start": 2553.43, "end": 2553.69, "word": " in", "probability": 0.217041015625}, {"start": 2553.69, "end": 2553.77, "word": " a", "probability": 0.413330078125}, {"start": 2553.77, "end": 2554.29, "word": " basic", "probability": 0.462890625}, {"start": 2554.29, "end": 2554.43, "word": " way", "probability": 0.64013671875}, {"start": 2554.43, "end": 2555.27, "word": " and", "probability": 0.390380859375}, {"start": 2555.27, "end": 2555.35, "word": " you", "probability": 0.833984375}, {"start": 2555.35, "end": 2555.51, "word": " can", "probability": 0.84912109375}, {"start": 2555.51, "end": 2555.71, "word": " put", "probability": 0.2454833984375}, {"start": 2555.71, "end": 2555.89, "word": " the", "probability": 0.31201171875}, {"start": 2555.89, "end": 2556.11, "word": " password.", "probability": 0.37451171875}, {"start": 2556.53, "end": 2556.93, "word": " You", "probability": 0.587890625}, {"start": 2556.93, "end": 2557.23, "word": " must", "probability": 0.468017578125}, {"start": 2557.23, "end": 2557.57, "word": " send", "probability": 0.7109375}, {"start": 2557.57, "end": 2557.77, "word": " the", "probability": 0.806640625}, {"start": 2557.77, "end": 2557.77, "word": " password", "probability": 0.92578125}, {"start": 2557.77, "end": 2558.31, "word": " so", "probability": 0.22412109375}, {"start": 2558.31, "end": 2558.55, "word": " that", "probability": 0.7822265625}, {"start": 2558.55, "end": 2558.63, "word": " the", "probability": 0.8447265625}, {"start": 2558.63, "end": 2558.83, "word": " message", "probability": 0.66650390625}, {"start": 2558.83, "end": 2559.01, "word": " does", "probability": 0.424560546875}, {"start": 2559.01, "end": 2559.05, "word": " not", "probability": 0.9423828125}, {"start": 2559.05, "end": 2559.31, "word": " return", "probability": 0.58935546875}, {"start": 2559.31, "end": 2559.75, "word": " to", "probability": 0.7841796875}, {"start": 2559.75, "end": 2560.63, "word": " the", "probability": 0.76806640625}, {"start": 2560.63, "end": 2560.89, "word": " password", "probability": 0.9072265625}, {"start": 2560.89, "end": 2560.93, "word": " again.", "probability": 0.28076171875}, {"start": 2561.07, "end": 2561.07, "word": " It", "probability": 0.5947265625}, {"start": 2561.07, "end": 2561.09, "word": " is", "probability": 0.55078125}, {"start": 2561.09, "end": 2561.11, "word": " not", "probability": 0.9345703125}, {"start": 2561.11, "end": 2561.29, "word": " just", "probability": 0.2481689453125}, {"start": 2561.29, "end": 2561.39, "word": " the", "probability": 0.603515625}, {"start": 2561.39, "end": 2561.61, "word": " data", "probability": 0.8779296875}, {"start": 2561.61, "end": 2561.97, "word": " to", "probability": 0.16015625}, {"start": 2561.97, "end": 2562.57, "word": " publish.", "probability": 0.318115234375}, {"start": 2563.65, "end": 2564.05, "word": " He", "probability": 0.228271484375}, {"start": 2564.05, "end": 2564.23, "word": " wants", "probability": 0.55615234375}, {"start": 2564.23, "end": 2564.27, "word": " to", "probability": 0.96923828125}, {"start": 2564.27, "end": 2564.47, "word": " see", "probability": 0.6171875}, {"start": 2564.47, "end": 2565.03, "word": " who", "probability": 0.84619140625}, {"start": 2565.03, "end": 2565.51, "word": " sent", "probability": 0.63623046875}, {"start": 2565.51, "end": 2565.69, "word": " the", "probability": 0.6376953125}, {"start": 2565.69, "end": 2565.99, "word": " message", "probability": 0.8798828125}, {"start": 2565.99, "end": 2566.17, "word": " to", "probability": 0.796875}, {"start": 2566.17, "end": 2566.29, "word": " him", "probability": 0.869140625}, {"start": 2566.29, "end": 2566.47, "word": " so", "probability": 0.634765625}, {"start": 2566.47, "end": 2566.67, "word": " that", "probability": 0.91796875}, {"start": 2566.67, "end": 2566.67, "word": " the", "probability": 0.39990234375}, {"start": 2566.67, "end": 2566.67, "word": " message", "probability": 0.90087890625}, {"start": 2566.67, "end": 2566.67, "word": " does", "probability": 0.732421875}, {"start": 2566.67, "end": 2566.67, "word": " not", "probability": 0.94482421875}, {"start": 2566.67, "end": 2566.93, "word": " return", "probability": 0.79248046875}, {"start": 2566.93, "end": 2566.97, "word": " to", "probability": 0.495361328125}, {"start": 2566.97, "end": 2567.15, "word": " him", "probability": 0.9267578125}, {"start": 2567.15, "end": 2568.31, "word": " again.", "probability": 0.91357421875}, {"start": 2568.45, "end": 2568.49, "word": " So", "probability": 0.7724609375}, {"start": 2568.49, "end": 2568.61, "word": " the", "probability": 0.455322265625}, {"start": 2568.61, "end": 2568.83, "word": " password", "probability": 0.9541015625}, {"start": 2568.83, "end": 2569.15, "word": " must", "probability": 0.80810546875}, {"start": 2569.15, "end": 2569.29, "word": " be", "probability": 0.93701171875}, {"start": 2569.29, "end": 2569.49, "word": " put", "probability": 0.4267578125}, {"start": 2569.49, "end": 2569.61, "word": " in", "probability": 0.5791015625}, {"start": 2569.61, "end": 2569.75, "word": " it.", "probability": 0.71630859375}], "temperature": 1.0}, {"id": 104, "seek": 259746, "start": 2570.2, "end": 2597.46, "text": " Because it is in his application, it follows another way, it is not a problem Because the data type interface made of it an abstract class called AbstractDataType And this AbstractDataType made of it subclasses, which are the messages Called, for example, MessageData, which takes this string This, for example, Starting and Stopping Data takes a date, a time", "tokens": [1436, 309, 307, 294, 702, 3861, 11, 309, 10002, 1071, 636, 11, 309, 307, 406, 257, 1154, 1436, 264, 1412, 2010, 9226, 1027, 295, 309, 364, 12649, 1508, 1219, 46853, 1897, 35, 3274, 22464, 494, 400, 341, 46853, 1897, 35, 3274, 22464, 494, 1027, 295, 309, 1422, 11665, 279, 11, 597, 366, 264, 7897, 45001, 11, 337, 1365, 11, 45947, 35, 3274, 11, 597, 2516, 341, 6798, 639, 11, 337, 1365, 11, 16217, 293, 5535, 3381, 11888, 2516, 257, 4002, 11, 257, 565], "avg_logprob": -0.5215773518596377, "compression_ratio": 1.722488038277512, "no_speech_prob": 9.179115295410156e-06, "words": [{"start": 2570.2, "end": 2570.5, "word": " Because", "probability": 0.0946044921875}, {"start": 2570.5, "end": 2570.66, "word": " it", "probability": 0.357421875}, {"start": 2570.66, "end": 2570.78, "word": " is", "probability": 0.3720703125}, {"start": 2570.78, "end": 2571.1, "word": " in", "probability": 0.57177734375}, {"start": 2571.1, "end": 2571.62, "word": " his", "probability": 0.406494140625}, {"start": 2571.62, "end": 2571.62, "word": " application,", "probability": 0.5458984375}, {"start": 2571.92, "end": 2572.28, "word": " it", "probability": 0.356201171875}, {"start": 2572.28, "end": 2572.52, "word": " follows", "probability": 0.59228515625}, {"start": 2572.52, "end": 2573.12, "word": " another", "probability": 0.67578125}, {"start": 2573.12, "end": 2573.12, "word": " way,", "probability": 0.468994140625}, {"start": 2573.16, "end": 2573.26, "word": " it", "probability": 0.3388671875}, {"start": 2573.26, "end": 2573.26, "word": " is", "probability": 0.607421875}, {"start": 2573.26, "end": 2573.32, "word": " not", "probability": 0.83154296875}, {"start": 2573.32, "end": 2573.66, "word": " a", "probability": 0.95068359375}, {"start": 2573.66, "end": 2573.66, "word": " problem", "probability": 0.85595703125}, {"start": 2573.66, "end": 2574.48, "word": " Because", "probability": 0.5166015625}, {"start": 2574.48, "end": 2574.66, "word": " the", "probability": 0.64697265625}, {"start": 2574.66, "end": 2574.86, "word": " data", "probability": 0.5576171875}, {"start": 2574.86, "end": 2575.12, "word": " type", "probability": 0.7373046875}, {"start": 2575.12, "end": 2575.66, "word": " interface", "probability": 0.58447265625}, {"start": 2575.66, "end": 2575.92, "word": " made", "probability": 0.50537109375}, {"start": 2575.92, "end": 2576.04, "word": " of", "probability": 0.3037109375}, {"start": 2576.04, "end": 2576.18, "word": " it", "probability": 0.80322265625}, {"start": 2576.18, "end": 2576.28, "word": " an", "probability": 0.5400390625}, {"start": 2576.28, "end": 2576.58, "word": " abstract", "probability": 0.78759765625}, {"start": 2576.58, "end": 2577.32, "word": " class", "probability": 0.94677734375}, {"start": 2577.32, "end": 2577.6, "word": " called", "probability": 0.397216796875}, {"start": 2577.6, "end": 2581.1, "word": " AbstractDataType", "probability": 0.8196207682291666}, {"start": 2581.1, "end": 2581.6, "word": " And", "probability": 0.062744140625}, {"start": 2581.6, "end": 2583.64, "word": " this", "probability": 0.78076171875}, {"start": 2583.64, "end": 2584.78, "word": " AbstractDataType", "probability": 0.9001057942708334}, {"start": 2584.78, "end": 2585.94, "word": " made", "probability": 0.71630859375}, {"start": 2585.94, "end": 2586.08, "word": " of", "probability": 0.61865234375}, {"start": 2586.08, "end": 2586.36, "word": " it", "probability": 0.85791015625}, {"start": 2586.36, "end": 2587.4, "word": " subclasses,", "probability": 0.8046875}, {"start": 2587.46, "end": 2587.5, "word": " which", "probability": 0.8369140625}, {"start": 2587.5, "end": 2587.7, "word": " are", "probability": 0.71484375}, {"start": 2587.7, "end": 2587.84, "word": " the", "probability": 0.57080078125}, {"start": 2587.84, "end": 2588.18, "word": " messages", "probability": 0.50927734375}, {"start": 2588.18, "end": 2588.86, "word": " Called,", "probability": 0.158935546875}, {"start": 2588.96, "end": 2589.14, "word": " for", "probability": 0.9208984375}, {"start": 2589.14, "end": 2589.22, "word": " example,", "probability": 0.9609375}, {"start": 2589.32, "end": 2589.98, "word": " MessageData,", "probability": 0.8671875}, {"start": 2590.68, "end": 2590.8, "word": " which", "probability": 0.87353515625}, {"start": 2590.8, "end": 2591.18, "word": " takes", "probability": 0.6669921875}, {"start": 2591.18, "end": 2591.66, "word": " this", "probability": 0.339111328125}, {"start": 2591.66, "end": 2592.74, "word": " string", "probability": 0.72998046875}, {"start": 2592.74, "end": 2593.44, "word": " This,", "probability": 0.54541015625}, {"start": 2593.54, "end": 2593.66, "word": " for", "probability": 0.9111328125}, {"start": 2593.66, "end": 2593.86, "word": " example,", "probability": 0.96826171875}, {"start": 2594.2, "end": 2594.66, "word": " Starting", "probability": 0.57568359375}, {"start": 2594.66, "end": 2594.88, "word": " and", "probability": 0.8310546875}, {"start": 2594.88, "end": 2595.24, "word": " Stopping", "probability": 0.841796875}, {"start": 2595.24, "end": 2595.68, "word": " Data", "probability": 0.51806640625}, {"start": 2595.68, "end": 2596.42, "word": " takes", "probability": 0.5810546875}, {"start": 2596.42, "end": 2596.62, "word": " a", "probability": 0.2371826171875}, {"start": 2596.62, "end": 2596.92, "word": " date,", "probability": 0.81982421875}, {"start": 2597.16, "end": 2597.22, "word": " a", "probability": 0.451171875}, {"start": 2597.22, "end": 2597.46, "word": " time", "probability": 0.8310546875}], "temperature": 1.0}, {"id": 105, "seek": 262146, "start": 2600.02, "end": 2621.46, "text": "This is like an attribute that is enclosed inside a message. This is the content of the message. Meaning that all of these are types of messages and each one has a different content. And these are the constructors and getters. They extended this. Because in the example I made, it is simpler than that. I did not make this interface. I immediately made what?", "tokens": [5723, 307, 411, 364, 19667, 300, 307, 42089, 1854, 257, 3636, 13, 639, 307, 264, 2701, 295, 264, 3636, 13, 19948, 300, 439, 295, 613, 366, 3467, 295, 7897, 293, 1184, 472, 575, 257, 819, 2701, 13, 400, 613, 366, 264, 7690, 830, 293, 483, 1559, 13, 814, 10913, 341, 13, 1436, 294, 264, 1365, 286, 1027, 11, 309, 307, 18587, 813, 300, 13, 286, 630, 406, 652, 341, 9226, 13, 286, 4258, 1027, 437, 30], "avg_logprob": -0.6400162337662337, "compression_ratio": 1.6728971962616823, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 2600.02, "end": 2600.42, "word": "This", "probability": 0.2138671875}, {"start": 2600.42, "end": 2600.54, "word": " is", "probability": 0.70068359375}, {"start": 2600.54, "end": 2600.9, "word": " like", "probability": 0.402099609375}, {"start": 2600.9, "end": 2601.52, "word": " an", "probability": 0.308349609375}, {"start": 2601.52, "end": 2601.52, "word": " attribute", "probability": 0.8525390625}, {"start": 2601.52, "end": 2601.66, "word": " that", "probability": 0.186279296875}, {"start": 2601.66, "end": 2601.8, "word": " is", "probability": 0.6181640625}, {"start": 2601.8, "end": 2602.0, "word": " enclosed", "probability": 0.1627197265625}, {"start": 2602.0, "end": 2602.38, "word": " inside", "probability": 0.474853515625}, {"start": 2602.38, "end": 2603.4, "word": " a", "probability": 0.405029296875}, {"start": 2603.4, "end": 2603.46, "word": " message.", "probability": 0.6806640625}, {"start": 2603.48, "end": 2603.6, "word": " This", "probability": 0.25390625}, {"start": 2603.6, "end": 2603.68, "word": " is", "probability": 0.85302734375}, {"start": 2603.68, "end": 2603.76, "word": " the", "probability": 0.6259765625}, {"start": 2603.76, "end": 2603.96, "word": " content", "probability": 0.6796875}, {"start": 2603.96, "end": 2604.1, "word": " of", "probability": 0.9423828125}, {"start": 2604.1, "end": 2604.2, "word": " the", "probability": 0.7236328125}, {"start": 2604.2, "end": 2604.44, "word": " message.", "probability": 0.857421875}, {"start": 2605.14, "end": 2605.54, "word": " Meaning", "probability": 0.22607421875}, {"start": 2605.54, "end": 2605.74, "word": " that", "probability": 0.6767578125}, {"start": 2605.74, "end": 2605.9, "word": " all", "probability": 0.51220703125}, {"start": 2605.9, "end": 2605.94, "word": " of", "probability": 0.234619140625}, {"start": 2605.94, "end": 2606.1, "word": " these", "probability": 0.5712890625}, {"start": 2606.1, "end": 2606.6, "word": " are", "probability": 0.52783203125}, {"start": 2606.6, "end": 2607.1, "word": " types", "probability": 0.379150390625}, {"start": 2607.1, "end": 2607.3, "word": " of", "probability": 0.96728515625}, {"start": 2607.3, "end": 2607.64, "word": " messages", "probability": 0.8076171875}, {"start": 2607.64, "end": 2608.14, "word": " and", "probability": 0.38720703125}, {"start": 2608.14, "end": 2608.34, "word": " each", "probability": 0.86376953125}, {"start": 2608.34, "end": 2608.58, "word": " one", "probability": 0.580078125}, {"start": 2608.58, "end": 2608.8, "word": " has", "probability": 0.451904296875}, {"start": 2608.8, "end": 2609.56, "word": " a", "probability": 0.4970703125}, {"start": 2609.56, "end": 2609.56, "word": " different", "probability": 0.55908203125}, {"start": 2609.56, "end": 2610.3, "word": " content.", "probability": 0.86083984375}, {"start": 2611.26, "end": 2611.34, "word": " And", "probability": 0.57177734375}, {"start": 2611.34, "end": 2611.56, "word": " these", "probability": 0.66357421875}, {"start": 2611.56, "end": 2611.68, "word": " are", "probability": 0.7646484375}, {"start": 2611.68, "end": 2611.7, "word": " the", "probability": 0.1385498046875}, {"start": 2611.7, "end": 2612.98, "word": " constructors", "probability": 0.549285888671875}, {"start": 2612.98, "end": 2613.16, "word": " and", "probability": 0.83642578125}, {"start": 2613.16, "end": 2613.86, "word": " getters.", "probability": 0.606201171875}, {"start": 2615.0, "end": 2615.4, "word": " They", "probability": 0.23876953125}, {"start": 2615.4, "end": 2615.98, "word": " extended", "probability": 0.5361328125}, {"start": 2615.98, "end": 2616.4, "word": " this.", "probability": 0.343994140625}, {"start": 2616.72, "end": 2616.9, "word": " Because", "probability": 0.462890625}, {"start": 2616.9, "end": 2617.46, "word": " in", "probability": 0.6875}, {"start": 2617.46, "end": 2617.56, "word": " the", "probability": 0.771484375}, {"start": 2617.56, "end": 2617.76, "word": " example", "probability": 0.96923828125}, {"start": 2617.76, "end": 2617.86, "word": " I", "probability": 0.6669921875}, {"start": 2617.86, "end": 2618.06, "word": " made,", "probability": 0.32763671875}, {"start": 2618.24, "end": 2618.24, "word": " it", "probability": 0.580078125}, {"start": 2618.24, "end": 2618.34, "word": " is", "probability": 0.63330078125}, {"start": 2618.34, "end": 2618.62, "word": " simpler", "probability": 0.68408203125}, {"start": 2618.62, "end": 2618.78, "word": " than", "probability": 0.77734375}, {"start": 2618.78, "end": 2618.86, "word": " that.", "probability": 0.681640625}, {"start": 2618.9, "end": 2618.94, "word": " I", "probability": 0.95751953125}, {"start": 2618.94, "end": 2619.02, "word": " did", "probability": 0.587890625}, {"start": 2619.02, "end": 2619.02, "word": " not", "probability": 0.94482421875}, {"start": 2619.02, "end": 2619.22, "word": " make", "probability": 0.58154296875}, {"start": 2619.22, "end": 2619.32, "word": " this", "probability": 0.6123046875}, {"start": 2619.32, "end": 2619.82, "word": " interface.", "probability": 0.9013671875}, {"start": 2620.46, "end": 2620.7, "word": " I", "probability": 0.400390625}, {"start": 2620.7, "end": 2620.9, "word": " immediately", "probability": 0.2227783203125}, {"start": 2620.9, "end": 2621.18, "word": " made", "probability": 0.533203125}, {"start": 2621.18, "end": 2621.46, "word": " what?", "probability": 0.337890625}], "temperature": 1.0}, {"id": 106, "seek": 263870, "start": 2622.14, "end": 2638.7, "text": "I made a class and made subclasses from it, this is optional, you can arrange it however you want, but the basis of this diagram is the class of the database and the member interface", "tokens": [40, 1027, 257, 1508, 293, 1027, 1422, 11665, 279, 490, 309, 11, 341, 307, 17312, 11, 291, 393, 9424, 309, 4461, 291, 528, 11, 457, 264, 5143, 295, 341, 10686, 307, 264, 1508, 295, 264, 8149, 293, 264, 4006, 9226], "avg_logprob": -0.6657774273942156, "compression_ratio": 1.4796747967479675, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 2622.14, "end": 2622.34, "word": "I", "probability": 0.10198974609375}, {"start": 2622.34, "end": 2622.34, "word": " made", "probability": 0.347900390625}, {"start": 2622.34, "end": 2622.34, "word": " a", "probability": 0.44482421875}, {"start": 2622.34, "end": 2622.74, "word": " class", "probability": 0.6533203125}, {"start": 2622.74, "end": 2623.78, "word": " and", "probability": 0.63330078125}, {"start": 2623.78, "end": 2624.38, "word": " made", "probability": 0.19287109375}, {"start": 2624.38, "end": 2626.32, "word": " subclasses", "probability": 0.6180013020833334}, {"start": 2626.32, "end": 2626.4, "word": " from", "probability": 0.4892578125}, {"start": 2626.4, "end": 2626.66, "word": " it,", "probability": 0.6552734375}, {"start": 2627.06, "end": 2627.2, "word": " this", "probability": 0.28662109375}, {"start": 2627.2, "end": 2627.3, "word": " is", "probability": 0.52685546875}, {"start": 2627.3, "end": 2628.22, "word": " optional,", "probability": 0.53857421875}, {"start": 2628.38, "end": 2628.54, "word": " you", "probability": 0.79150390625}, {"start": 2628.54, "end": 2628.86, "word": " can", "probability": 0.783203125}, {"start": 2628.86, "end": 2629.2, "word": " arrange", "probability": 0.296630859375}, {"start": 2629.2, "end": 2629.44, "word": " it", "probability": 0.67333984375}, {"start": 2629.44, "end": 2629.88, "word": " however", "probability": 0.3212890625}, {"start": 2629.88, "end": 2630.4, "word": " you", "probability": 0.9560546875}, {"start": 2630.4, "end": 2630.64, "word": " want,", "probability": 0.64794921875}, {"start": 2631.02, "end": 2631.82, "word": " but", "probability": 0.53173828125}, {"start": 2631.82, "end": 2632.28, "word": " the", "probability": 0.79541015625}, {"start": 2632.28, "end": 2632.78, "word": " basis", "probability": 0.327880859375}, {"start": 2632.78, "end": 2632.96, "word": " of", "probability": 0.6533203125}, {"start": 2632.96, "end": 2633.56, "word": " this", "probability": 0.77099609375}, {"start": 2633.56, "end": 2634.52, "word": " diagram", "probability": 0.90380859375}, {"start": 2634.52, "end": 2635.06, "word": " is", "probability": 0.82421875}, {"start": 2635.06, "end": 2635.94, "word": " the", "probability": 0.6162109375}, {"start": 2635.94, "end": 2636.28, "word": " class", "probability": 0.5673828125}, {"start": 2636.28, "end": 2636.52, "word": " of", "probability": 0.2198486328125}, {"start": 2636.52, "end": 2636.6, "word": " the", "probability": 0.56103515625}, {"start": 2636.6, "end": 2636.86, "word": " database", "probability": 0.450927734375}, {"start": 2636.86, "end": 2637.58, "word": " and", "probability": 0.841796875}, {"start": 2637.58, "end": 2637.68, "word": " the", "probability": 0.6328125}, {"start": 2637.68, "end": 2638.56, "word": " member", "probability": 0.66162109375}, {"start": 2638.56, "end": 2638.7, "word": " interface", "probability": 0.869140625}], "temperature": 1.0}, {"id": 107, "seek": 265950, "start": 2639.48, "end": 2659.5, "text": "And the message class, all of them I made them in one file And these are the subscribers, I named them from outside Because this is the application class, which is like the main class that I made, in which I created all the objects and made them send each other", "tokens": [5289, 264, 3636, 1508, 11, 439, 295, 552, 286, 1027, 552, 294, 472, 3991, 400, 613, 366, 264, 11092, 11, 286, 4926, 552, 490, 2380, 1436, 341, 307, 264, 3861, 1508, 11, 597, 307, 411, 264, 2135, 1508, 300, 286, 1027, 11, 294, 597, 286, 2942, 439, 264, 6565, 293, 1027, 552, 2845, 1184, 661], "avg_logprob": -0.6071428635290691, "compression_ratio": 1.63125, "no_speech_prob": 4.291534423828125e-06, "words": [{"start": 2639.48, "end": 2640.0, "word": "And", "probability": 0.198486328125}, {"start": 2640.0, "end": 2640.08, "word": " the", "probability": 0.5244140625}, {"start": 2640.08, "end": 2640.82, "word": " message", "probability": 0.2105712890625}, {"start": 2640.82, "end": 2640.84, "word": " class,", "probability": 0.806640625}, {"start": 2641.46, "end": 2642.2, "word": " all", "probability": 0.348388671875}, {"start": 2642.2, "end": 2642.22, "word": " of", "probability": 0.69677734375}, {"start": 2642.22, "end": 2642.22, "word": " them", "probability": 0.61669921875}, {"start": 2642.22, "end": 2642.42, "word": " I", "probability": 0.56689453125}, {"start": 2642.42, "end": 2642.68, "word": " made", "probability": 0.417236328125}, {"start": 2642.68, "end": 2642.86, "word": " them", "probability": 0.61572265625}, {"start": 2642.86, "end": 2643.04, "word": " in", "probability": 0.419921875}, {"start": 2643.04, "end": 2643.86, "word": " one", "probability": 0.5986328125}, {"start": 2643.86, "end": 2645.32, "word": " file", "probability": 0.65625}, {"start": 2645.32, "end": 2646.3, "word": " And", "probability": 0.26513671875}, {"start": 2646.3, "end": 2649.52, "word": " these", "probability": 0.66796875}, {"start": 2649.52, "end": 2649.96, "word": " are", "probability": 0.7822265625}, {"start": 2649.96, "end": 2650.56, "word": " the", "probability": 0.60498046875}, {"start": 2650.56, "end": 2651.2, "word": " subscribers,", "probability": 0.79248046875}, {"start": 2651.48, "end": 2651.74, "word": " I", "probability": 0.238037109375}, {"start": 2651.74, "end": 2651.96, "word": " named", "probability": 0.381103515625}, {"start": 2651.96, "end": 2652.14, "word": " them", "probability": 0.89599609375}, {"start": 2652.14, "end": 2652.28, "word": " from", "probability": 0.56787109375}, {"start": 2652.28, "end": 2652.46, "word": " outside", "probability": 0.54736328125}, {"start": 2652.46, "end": 2653.08, "word": " Because", "probability": 0.33203125}, {"start": 2653.08, "end": 2653.36, "word": " this", "probability": 0.84765625}, {"start": 2653.36, "end": 2653.48, "word": " is", "probability": 0.339599609375}, {"start": 2653.48, "end": 2653.48, "word": " the", "probability": 0.71435546875}, {"start": 2653.48, "end": 2654.08, "word": " application", "probability": 0.68798828125}, {"start": 2654.08, "end": 2654.26, "word": " class,", "probability": 0.95166015625}, {"start": 2654.4, "end": 2654.44, "word": " which", "probability": 0.52197265625}, {"start": 2654.44, "end": 2654.6, "word": " is", "probability": 0.896484375}, {"start": 2654.6, "end": 2654.72, "word": " like", "probability": 0.68212890625}, {"start": 2654.72, "end": 2654.88, "word": " the", "probability": 0.83984375}, {"start": 2654.88, "end": 2655.36, "word": " main", "probability": 0.74462890625}, {"start": 2655.36, "end": 2655.44, "word": " class", "probability": 0.90771484375}, {"start": 2655.44, "end": 2655.88, "word": " that", "probability": 0.346923828125}, {"start": 2655.88, "end": 2656.02, "word": " I", "probability": 0.9794921875}, {"start": 2656.02, "end": 2656.3, "word": " made,", "probability": 0.482177734375}, {"start": 2656.54, "end": 2656.74, "word": " in", "probability": 0.195556640625}, {"start": 2656.74, "end": 2656.74, "word": " which", "probability": 0.94287109375}, {"start": 2656.74, "end": 2656.78, "word": " I", "probability": 0.8779296875}, {"start": 2656.78, "end": 2657.04, "word": " created", "probability": 0.49853515625}, {"start": 2657.04, "end": 2657.32, "word": " all", "probability": 0.70263671875}, {"start": 2657.32, "end": 2657.34, "word": " the", "probability": 0.615234375}, {"start": 2657.34, "end": 2657.64, "word": " objects", "probability": 0.95166015625}, {"start": 2657.64, "end": 2658.14, "word": " and", "probability": 0.79541015625}, {"start": 2658.14, "end": 2658.44, "word": " made", "probability": 0.4111328125}, {"start": 2658.44, "end": 2658.72, "word": " them", "probability": 0.89013671875}, {"start": 2658.72, "end": 2659.26, "word": " send", "probability": 0.314208984375}, {"start": 2659.26, "end": 2659.5, "word": " each", "probability": 0.313720703125}, {"start": 2659.5, "end": 2659.5, "word": " other", "probability": 0.8671875}], "temperature": 1.0}, {"id": 108, "seek": 268523, "start": 2661.11, "end": 2685.23, "text": "This example is clear, guys. The importance of the data bus is clear. It is similar to the observer, but as I said, the summary is used in the case of many-to-many. Everyone wants to communicate with everyone. The application of the observer is complicated, but the data bus, because it is an elliptical element in the middle, independent of them, becomes easy. Send to the bus, and the bus sends the message to everyone. Because the receiver determines", "tokens": [5723, 1365, 307, 1850, 11, 1074, 13, 440, 7379, 295, 264, 1412, 1255, 307, 1850, 13, 467, 307, 2531, 281, 264, 27878, 11, 457, 382, 286, 848, 11, 264, 12691, 307, 1143, 294, 264, 1389, 295, 867, 12, 1353, 12, 76, 1325, 13, 5198, 2738, 281, 7890, 365, 1518, 13, 440, 3861, 295, 264, 27878, 307, 6179, 11, 457, 264, 1412, 1255, 11, 570, 309, 307, 364, 8284, 22439, 804, 4478, 294, 264, 2808, 11, 6695, 295, 552, 11, 3643, 1858, 13, 17908, 281, 264, 1255, 11, 293, 264, 1255, 14790, 264, 3636, 281, 1518, 13, 1436, 264, 20086, 24799], "avg_logprob": -0.40625000354087, "compression_ratio": 1.812, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 2661.1099999999997, "end": 2661.5299999999997, "word": "This", "probability": 0.1318359375}, {"start": 2661.5299999999997, "end": 2661.95, "word": " example", "probability": 0.85791015625}, {"start": 2661.95, "end": 2662.15, "word": " is", "probability": 0.85205078125}, {"start": 2662.15, "end": 2662.15, "word": " clear,", "probability": 0.646484375}, {"start": 2662.15, "end": 2662.15, "word": " guys.", "probability": 0.475341796875}, {"start": 2662.81, "end": 2662.91, "word": " The", "probability": 0.4853515625}, {"start": 2662.91, "end": 2663.31, "word": " importance", "probability": 0.869140625}, {"start": 2663.31, "end": 2663.57, "word": " of", "probability": 0.9697265625}, {"start": 2663.57, "end": 2663.75, "word": " the", "probability": 0.61181640625}, {"start": 2663.75, "end": 2663.97, "word": " data", "probability": 0.419189453125}, {"start": 2663.97, "end": 2664.27, "word": " bus", "probability": 0.89892578125}, {"start": 2664.27, "end": 2664.35, "word": " is", "probability": 0.87060546875}, {"start": 2664.35, "end": 2664.35, "word": " clear.", "probability": 0.71142578125}, {"start": 2664.47, "end": 2664.69, "word": " It", "probability": 0.86328125}, {"start": 2664.69, "end": 2664.81, "word": " is", "probability": 0.6591796875}, {"start": 2664.81, "end": 2665.11, "word": " similar", "probability": 0.88232421875}, {"start": 2665.11, "end": 2665.29, "word": " to", "probability": 0.93310546875}, {"start": 2665.29, "end": 2665.37, "word": " the", "probability": 0.73193359375}, {"start": 2665.37, "end": 2665.79, "word": " observer,", "probability": 0.7138671875}, {"start": 2665.93, "end": 2666.15, "word": " but", "probability": 0.84716796875}, {"start": 2666.15, "end": 2666.39, "word": " as", "probability": 0.58056640625}, {"start": 2666.39, "end": 2666.57, "word": " I", "probability": 0.72314453125}, {"start": 2666.57, "end": 2666.81, "word": " said,", "probability": 0.8525390625}, {"start": 2666.91, "end": 2666.95, "word": " the", "probability": 0.2105712890625}, {"start": 2666.95, "end": 2667.31, "word": " summary", "probability": 0.463623046875}, {"start": 2667.31, "end": 2667.47, "word": " is", "probability": 0.62939453125}, {"start": 2667.47, "end": 2668.01, "word": " used", "probability": 0.82470703125}, {"start": 2668.01, "end": 2668.45, "word": " in", "probability": 0.66552734375}, {"start": 2668.45, "end": 2668.59, "word": " the", "probability": 0.487060546875}, {"start": 2668.59, "end": 2668.71, "word": " case", "probability": 0.76171875}, {"start": 2668.71, "end": 2668.85, "word": " of", "probability": 0.97119140625}, {"start": 2668.85, "end": 2669.01, "word": " many", "probability": 0.50390625}, {"start": 2669.01, "end": 2669.21, "word": "-to", "probability": 0.7447509765625}, {"start": 2669.21, "end": 2669.37, "word": "-many.", "probability": 0.9500325520833334}, {"start": 2670.11, "end": 2670.53, "word": " Everyone", "probability": 0.2265625}, {"start": 2670.53, "end": 2672.01, "word": " wants", "probability": 0.2391357421875}, {"start": 2672.01, "end": 2672.09, "word": " to", "probability": 0.9697265625}, {"start": 2672.09, "end": 2672.39, "word": " communicate", "probability": 0.7724609375}, {"start": 2672.39, "end": 2672.61, "word": " with", "probability": 0.88623046875}, {"start": 2672.61, "end": 2672.93, "word": " everyone.", "probability": 0.84423828125}, {"start": 2673.53, "end": 2673.53, "word": " The", "probability": 0.5595703125}, {"start": 2673.53, "end": 2673.77, "word": " application", "probability": 0.83203125}, {"start": 2673.77, "end": 2673.95, "word": " of", "probability": 0.96826171875}, {"start": 2673.95, "end": 2674.01, "word": " the", "probability": 0.8671875}, {"start": 2674.01, "end": 2674.39, "word": " observer", "probability": 0.78759765625}, {"start": 2674.39, "end": 2674.57, "word": " is", "probability": 0.75146484375}, {"start": 2674.57, "end": 2674.91, "word": " complicated,", "probability": 0.66455078125}, {"start": 2675.45, "end": 2675.85, "word": " but", "probability": 0.8798828125}, {"start": 2675.85, "end": 2676.05, "word": " the", "probability": 0.759765625}, {"start": 2676.05, "end": 2676.23, "word": " data", "probability": 0.88623046875}, {"start": 2676.23, "end": 2676.43, "word": " bus,", "probability": 0.9248046875}, {"start": 2676.49, "end": 2676.61, "word": " because", "probability": 0.708984375}, {"start": 2676.61, "end": 2676.75, "word": " it", "probability": 0.91748046875}, {"start": 2676.75, "end": 2676.75, "word": " is", "probability": 0.87890625}, {"start": 2676.75, "end": 2676.79, "word": " an", "probability": 0.3173828125}, {"start": 2676.79, "end": 2677.49, "word": " elliptical", "probability": 0.6106160481770834}, {"start": 2677.49, "end": 2677.49, "word": " element", "probability": 0.9111328125}, {"start": 2677.49, "end": 2677.83, "word": " in", "probability": 0.6953125}, {"start": 2677.83, "end": 2677.91, "word": " the", "probability": 0.79541015625}, {"start": 2677.91, "end": 2678.15, "word": " middle,", "probability": 0.89404296875}, {"start": 2678.55, "end": 2678.93, "word": " independent", "probability": 0.720703125}, {"start": 2678.93, "end": 2679.15, "word": " of", "probability": 0.6181640625}, {"start": 2679.15, "end": 2679.25, "word": " them,", "probability": 0.6669921875}, {"start": 2679.33, "end": 2679.49, "word": " becomes", "probability": 0.6611328125}, {"start": 2679.49, "end": 2679.81, "word": " easy.", "probability": 0.79736328125}, {"start": 2680.41, "end": 2680.65, "word": " Send", "probability": 0.72509765625}, {"start": 2680.65, "end": 2680.83, "word": " to", "probability": 0.64794921875}, {"start": 2680.83, "end": 2680.93, "word": " the", "probability": 0.90869140625}, {"start": 2680.93, "end": 2681.11, "word": " bus,", "probability": 0.94384765625}, {"start": 2681.17, "end": 2681.23, "word": " and", "probability": 0.8681640625}, {"start": 2681.23, "end": 2681.31, "word": " the", "probability": 0.88623046875}, {"start": 2681.31, "end": 2681.47, "word": " bus", "probability": 0.91943359375}, {"start": 2681.47, "end": 2682.11, "word": " sends", "probability": 0.166015625}, {"start": 2682.11, "end": 2682.71, "word": " the", "probability": 0.7021484375}, {"start": 2682.71, "end": 2683.01, "word": " message", "probability": 0.8603515625}, {"start": 2683.01, "end": 2683.13, "word": " to", "probability": 0.9501953125}, {"start": 2683.13, "end": 2683.41, "word": " everyone.", "probability": 0.54248046875}, {"start": 2683.83, "end": 2684.03, "word": " Because", "probability": 0.7763671875}, {"start": 2684.03, "end": 2684.17, "word": " the", "probability": 0.8701171875}, {"start": 2684.17, "end": 2684.61, "word": " receiver", "probability": 0.923828125}, {"start": 2684.61, "end": 2685.23, "word": " determines", "probability": 0.62890625}], "temperature": 1.0}, {"id": 109, "seek": 270544, "start": 2685.92, "end": 2705.44, "text": " he will receive the message or not based on the sender or based on the type of message that you can specify as you want okay, calm down guys okay, I also downloaded yesterday, it's a must, okay? on the data bus and on the observer, I uploaded a video to the observer", "tokens": [415, 486, 4774, 264, 3636, 420, 406, 2361, 322, 264, 2845, 260, 420, 2361, 322, 264, 2010, 295, 3636, 300, 291, 393, 16500, 382, 291, 528, 1392, 11, 7151, 760, 1074, 1392, 11, 286, 611, 760, 752, 12777, 5186, 11, 309, 311, 257, 1633, 11, 1392, 30, 322, 264, 1412, 1255, 293, 322, 264, 27878, 11, 286, 17135, 257, 960, 281, 264, 27878], "avg_logprob": -0.6420898586511612, "compression_ratio": 1.7006369426751593, "no_speech_prob": 5.185604095458984e-06, "words": [{"start": 2685.92, "end": 2686.06, "word": " he", "probability": 0.06298828125}, {"start": 2686.06, "end": 2686.26, "word": " will", "probability": 0.1796875}, {"start": 2686.26, "end": 2686.42, "word": " receive", "probability": 0.5703125}, {"start": 2686.42, "end": 2686.6, "word": " the", "probability": 0.52197265625}, {"start": 2686.6, "end": 2686.84, "word": " message", "probability": 0.70556640625}, {"start": 2686.84, "end": 2687.04, "word": " or", "probability": 0.759765625}, {"start": 2687.04, "end": 2687.26, "word": " not", "probability": 0.89501953125}, {"start": 2687.26, "end": 2687.78, "word": " based", "probability": 0.341064453125}, {"start": 2687.78, "end": 2688.0, "word": " on", "probability": 0.9423828125}, {"start": 2688.0, "end": 2688.14, "word": " the", "probability": 0.7119140625}, {"start": 2688.14, "end": 2688.42, "word": " sender", "probability": 0.6318359375}, {"start": 2688.42, "end": 2688.56, "word": " or", "probability": 0.88330078125}, {"start": 2688.56, "end": 2688.74, "word": " based", "probability": 0.406494140625}, {"start": 2688.74, "end": 2688.96, "word": " on", "probability": 0.95361328125}, {"start": 2688.96, "end": 2689.26, "word": " the", "probability": 0.7275390625}, {"start": 2689.26, "end": 2689.26, "word": " type", "probability": 0.76611328125}, {"start": 2689.26, "end": 2689.92, "word": " of", "probability": 0.92822265625}, {"start": 2689.92, "end": 2690.16, "word": " message", "probability": 0.72412109375}, {"start": 2690.16, "end": 2690.34, "word": " that", "probability": 0.403564453125}, {"start": 2690.34, "end": 2690.5, "word": " you", "probability": 0.88427734375}, {"start": 2690.5, "end": 2690.78, "word": " can", "probability": 0.3720703125}, {"start": 2690.78, "end": 2691.2, "word": " specify", "probability": 0.481689453125}, {"start": 2691.2, "end": 2691.92, "word": " as", "probability": 0.583984375}, {"start": 2691.92, "end": 2692.08, "word": " you", "probability": 0.8564453125}, {"start": 2692.08, "end": 2692.32, "word": " want", "probability": 0.375244140625}, {"start": 2692.32, "end": 2693.12, "word": " okay,", "probability": 0.1573486328125}, {"start": 2693.18, "end": 2693.3, "word": " calm", "probability": 0.214599609375}, {"start": 2693.3, "end": 2693.58, "word": " down", "probability": 0.7900390625}, {"start": 2693.58, "end": 2694.42, "word": " guys", "probability": 0.60986328125}, {"start": 2694.42, "end": 2695.2, "word": " okay,", "probability": 0.3720703125}, {"start": 2695.42, "end": 2695.9, "word": " I", "probability": 0.493896484375}, {"start": 2695.9, "end": 2696.58, "word": " also", "probability": 0.6552734375}, {"start": 2696.58, "end": 2696.6, "word": " downloaded", "probability": 0.6316731770833334}, {"start": 2696.6, "end": 2697.06, "word": " yesterday,", "probability": 0.27783203125}, {"start": 2697.68, "end": 2697.68, "word": " it's", "probability": 0.4241943359375}, {"start": 2697.68, "end": 2697.86, "word": " a", "probability": 0.449951171875}, {"start": 2697.86, "end": 2697.86, "word": " must,", "probability": 0.8349609375}, {"start": 2698.64, "end": 2698.98, "word": " okay?", "probability": 0.76123046875}, {"start": 2701.3, "end": 2701.48, "word": " on", "probability": 0.72998046875}, {"start": 2701.48, "end": 2701.62, "word": " the", "probability": 0.6826171875}, {"start": 2701.62, "end": 2701.82, "word": " data", "probability": 0.329833984375}, {"start": 2701.82, "end": 2702.18, "word": " bus", "probability": 0.896484375}, {"start": 2702.18, "end": 2702.44, "word": " and", "probability": 0.884765625}, {"start": 2702.44, "end": 2702.58, "word": " on", "probability": 0.76416015625}, {"start": 2702.58, "end": 2702.84, "word": " the", "probability": 0.90966796875}, {"start": 2702.84, "end": 2703.3, "word": " observer,", "probability": 0.76904296875}, {"start": 2703.86, "end": 2704.58, "word": " I", "probability": 0.712890625}, {"start": 2704.58, "end": 2704.92, "word": " uploaded", "probability": 0.2203369140625}, {"start": 2704.92, "end": 2705.18, "word": " a", "probability": 0.90087890625}, {"start": 2705.18, "end": 2705.44, "word": " video", "probability": 0.8779296875}, {"start": 2705.44, "end": 2705.44, "word": " to", "probability": 0.533203125}, {"start": 2705.44, "end": 2705.44, "word": " the", "probability": 0.859375}, {"start": 2705.44, "end": 2705.44, "word": " observer", "probability": 0.8681640625}], "temperature": 1.0}, {"id": 110, "seek": 272997, "start": 2706.59, "end": 2729.97, "text": "It will show you how the required things look like in the course The database explanation of the course is available at the end of the recorded lecture on Moodle It's not going to be available on the channel It's going to be available on Moodle, not on Moodle, there are also links to the lectures It's been recorded since the days of Corona So you go to the end of the lecture, you will find an explanation question", "tokens": [3522, 486, 855, 291, 577, 264, 4739, 721, 574, 411, 294, 264, 1164, 440, 1137, 455, 651, 10835, 295, 264, 1164, 307, 2435, 412, 264, 917, 295, 264, 8287, 7991, 322, 376, 1816, 306, 467, 311, 406, 516, 281, 312, 2435, 322, 264, 2269, 467, 311, 516, 281, 312, 2435, 322, 376, 1816, 306, 11, 406, 322, 376, 1816, 306, 11, 456, 366, 611, 6123, 281, 264, 16564, 467, 311, 668, 8287, 1670, 264, 1708, 295, 18075, 407, 291, 352, 281, 264, 917, 295, 264, 7991, 11, 291, 486, 915, 364, 10835, 1168], "avg_logprob": -0.6339760784139025, "compression_ratio": 1.9259259259259258, "no_speech_prob": 4.2378902435302734e-05, "words": [{"start": 2706.5899999999997, "end": 2706.99, "word": "It", "probability": 0.1702880859375}, {"start": 2706.99, "end": 2707.09, "word": " will", "probability": 0.2056884765625}, {"start": 2707.09, "end": 2707.29, "word": " show", "probability": 0.84423828125}, {"start": 2707.29, "end": 2707.45, "word": " you", "probability": 0.89892578125}, {"start": 2707.45, "end": 2707.63, "word": " how", "probability": 0.59375}, {"start": 2707.63, "end": 2708.13, "word": " the", "probability": 0.277099609375}, {"start": 2708.13, "end": 2708.39, "word": " required", "probability": 0.2264404296875}, {"start": 2708.39, "end": 2708.45, "word": " things", "probability": 0.248046875}, {"start": 2708.45, "end": 2708.83, "word": " look", "probability": 0.54443359375}, {"start": 2708.83, "end": 2708.93, "word": " like", "probability": 0.537109375}, {"start": 2708.93, "end": 2708.95, "word": " in", "probability": 0.67236328125}, {"start": 2708.95, "end": 2709.07, "word": " the", "probability": 0.61572265625}, {"start": 2709.07, "end": 2709.27, "word": " course", "probability": 0.340087890625}, {"start": 2709.27, "end": 2710.79, "word": " The", "probability": 0.30712890625}, {"start": 2710.79, "end": 2711.87, "word": " database", "probability": 0.6153564453125}, {"start": 2711.87, "end": 2712.89, "word": " explanation", "probability": 0.0751953125}, {"start": 2712.89, "end": 2713.27, "word": " of", "probability": 0.377197265625}, {"start": 2713.27, "end": 2713.31, "word": " the", "probability": 0.75439453125}, {"start": 2713.31, "end": 2713.65, "word": " course", "probability": 0.951171875}, {"start": 2713.65, "end": 2714.17, "word": " is", "probability": 0.71923828125}, {"start": 2714.17, "end": 2714.51, "word": " available", "probability": 0.388671875}, {"start": 2714.51, "end": 2714.69, "word": " at", "probability": 0.306396484375}, {"start": 2714.69, "end": 2714.85, "word": " the", "probability": 0.92041015625}, {"start": 2714.85, "end": 2715.01, "word": " end", "probability": 0.857421875}, {"start": 2715.01, "end": 2715.59, "word": " of", "probability": 0.97119140625}, {"start": 2715.59, "end": 2716.89, "word": " the", "probability": 0.75732421875}, {"start": 2716.89, "end": 2717.21, "word": " recorded", "probability": 0.32275390625}, {"start": 2717.21, "end": 2717.21, "word": " lecture", "probability": 0.64453125}, {"start": 2717.21, "end": 2717.79, "word": " on", "probability": 0.50244140625}, {"start": 2717.79, "end": 2718.13, "word": " Moodle", "probability": 0.7388916015625}, {"start": 2718.13, "end": 2718.81, "word": " It's", "probability": 0.253173828125}, {"start": 2718.81, "end": 2718.89, "word": " not", "probability": 0.92431640625}, {"start": 2718.89, "end": 2719.05, "word": " going", "probability": 0.24853515625}, {"start": 2719.05, "end": 2719.07, "word": " to", "probability": 0.966796875}, {"start": 2719.07, "end": 2719.25, "word": " be", "probability": 0.9287109375}, {"start": 2719.25, "end": 2719.61, "word": " available", "probability": 0.45703125}, {"start": 2719.61, "end": 2719.81, "word": " on", "probability": 0.86376953125}, {"start": 2719.81, "end": 2719.95, "word": " the", "probability": 0.619140625}, {"start": 2719.95, "end": 2720.23, "word": " channel", "probability": 0.85693359375}, {"start": 2720.23, "end": 2721.35, "word": " It's", "probability": 0.5069580078125}, {"start": 2721.35, "end": 2721.45, "word": " going", "probability": 0.2408447265625}, {"start": 2721.45, "end": 2721.45, "word": " to", "probability": 0.96923828125}, {"start": 2721.45, "end": 2721.45, "word": " be", "probability": 0.9296875}, {"start": 2721.45, "end": 2721.61, "word": " available", "probability": 0.6298828125}, {"start": 2721.61, "end": 2721.77, "word": " on", "probability": 0.92138671875}, {"start": 2721.77, "end": 2722.01, "word": " Moodle,", "probability": 0.8987630208333334}, {"start": 2722.03, "end": 2722.15, "word": " not", "probability": 0.306640625}, {"start": 2722.15, "end": 2722.29, "word": " on", "probability": 0.443115234375}, {"start": 2722.29, "end": 2722.55, "word": " Moodle,", "probability": 0.8460286458333334}, {"start": 2722.67, "end": 2722.71, "word": " there", "probability": 0.515625}, {"start": 2722.71, "end": 2723.01, "word": " are", "probability": 0.69677734375}, {"start": 2723.01, "end": 2723.01, "word": " also", "probability": 0.607421875}, {"start": 2723.01, "end": 2723.25, "word": " links", "probability": 0.1905517578125}, {"start": 2723.25, "end": 2723.47, "word": " to", "probability": 0.6865234375}, {"start": 2723.47, "end": 2723.49, "word": " the", "probability": 0.46533203125}, {"start": 2723.49, "end": 2723.85, "word": " lectures", "probability": 0.6474609375}, {"start": 2723.85, "end": 2724.75, "word": " It's", "probability": 0.45751953125}, {"start": 2724.75, "end": 2724.81, "word": " been", "probability": 0.387451171875}, {"start": 2724.81, "end": 2725.05, "word": " recorded", "probability": 0.88427734375}, {"start": 2725.05, "end": 2725.21, "word": " since", "probability": 0.484375}, {"start": 2725.21, "end": 2725.29, "word": " the", "probability": 0.355712890625}, {"start": 2725.29, "end": 2725.41, "word": " days", "probability": 0.463623046875}, {"start": 2725.41, "end": 2725.51, "word": " of", "probability": 0.97021484375}, {"start": 2725.51, "end": 2725.83, "word": " Corona", "probability": 0.51416015625}, {"start": 2725.83, "end": 2727.15, "word": " So", "probability": 0.3046875}, {"start": 2727.15, "end": 2727.35, "word": " you", "probability": 0.368408203125}, {"start": 2727.35, "end": 2727.53, "word": " go", "probability": 0.6904296875}, {"start": 2727.53, "end": 2727.65, "word": " to", "probability": 0.876953125}, {"start": 2727.65, "end": 2727.79, "word": " the", "probability": 0.92236328125}, {"start": 2727.79, "end": 2727.89, "word": " end", "probability": 0.82470703125}, {"start": 2727.89, "end": 2728.01, "word": " of", "probability": 0.974609375}, {"start": 2728.01, "end": 2728.09, "word": " the", "probability": 0.900390625}, {"start": 2728.09, "end": 2728.45, "word": " lecture,", "probability": 0.94287109375}, {"start": 2728.69, "end": 2728.81, "word": " you", "probability": 0.85693359375}, {"start": 2728.81, "end": 2728.85, "word": " will", "probability": 0.57568359375}, {"start": 2728.85, "end": 2729.11, "word": " find", "probability": 0.787109375}, {"start": 2729.11, "end": 2729.45, "word": " an", "probability": 0.1912841796875}, {"start": 2729.45, "end": 2729.69, "word": " explanation", "probability": 0.85498046875}, {"start": 2729.69, "end": 2729.97, "word": " question", "probability": 0.53515625}], "temperature": 1.0}, {"id": 111, "seek": 274284, "start": 2730.98, "end": 2742.84, "text": "The duty that is required for the part of the data bus. So it is two branches of the question. One for the observer and one for whom? For the data bus. Yes, seven days.", "tokens": [2278, 9776, 300, 307, 4739, 337, 264, 644, 295, 264, 1412, 1255, 13, 407, 309, 307, 732, 14770, 295, 264, 1168, 13, 1485, 337, 264, 27878, 293, 472, 337, 7101, 30, 1171, 264, 1412, 1255, 13, 1079, 11, 3407, 1708, 13], "avg_logprob": -0.6156993848936898, "compression_ratio": 1.4, "no_speech_prob": 1.0907649993896484e-05, "words": [{"start": 2730.98, "end": 2731.36, "word": "The", "probability": 0.18408203125}, {"start": 2731.36, "end": 2731.72, "word": " duty", "probability": 0.431396484375}, {"start": 2731.72, "end": 2731.88, "word": " that", "probability": 0.202880859375}, {"start": 2731.88, "end": 2731.92, "word": " is", "probability": 0.525390625}, {"start": 2731.92, "end": 2732.24, "word": " required", "probability": 0.712890625}, {"start": 2732.24, "end": 2732.44, "word": " for", "probability": 0.56689453125}, {"start": 2732.44, "end": 2732.52, "word": " the", "probability": 0.5888671875}, {"start": 2732.52, "end": 2732.62, "word": " part", "probability": 0.266845703125}, {"start": 2732.62, "end": 2732.9, "word": " of", "probability": 0.92822265625}, {"start": 2732.9, "end": 2733.0, "word": " the", "probability": 0.84716796875}, {"start": 2733.0, "end": 2733.14, "word": " data", "probability": 0.294677734375}, {"start": 2733.14, "end": 2733.44, "word": " bus.", "probability": 0.806640625}, {"start": 2733.92, "end": 2734.0, "word": " So", "probability": 0.2269287109375}, {"start": 2734.0, "end": 2734.1, "word": " it", "probability": 0.380126953125}, {"start": 2734.1, "end": 2734.32, "word": " is", "probability": 0.51318359375}, {"start": 2734.32, "end": 2734.7, "word": " two", "probability": 0.6103515625}, {"start": 2734.7, "end": 2734.7, "word": " branches", "probability": 0.47216796875}, {"start": 2734.7, "end": 2734.8, "word": " of", "probability": 0.2783203125}, {"start": 2734.8, "end": 2734.86, "word": " the", "probability": 0.78271484375}, {"start": 2734.86, "end": 2735.1, "word": " question.", "probability": 0.90185546875}, {"start": 2735.46, "end": 2735.7, "word": " One", "probability": 0.70068359375}, {"start": 2735.7, "end": 2735.86, "word": " for", "probability": 0.52685546875}, {"start": 2735.86, "end": 2736.0, "word": " the", "probability": 0.830078125}, {"start": 2736.0, "end": 2736.38, "word": " observer", "probability": 0.8271484375}, {"start": 2736.38, "end": 2736.62, "word": " and", "probability": 0.77587890625}, {"start": 2736.62, "end": 2736.84, "word": " one", "probability": 0.673828125}, {"start": 2736.84, "end": 2736.98, "word": " for", "probability": 0.9140625}, {"start": 2736.98, "end": 2737.14, "word": " whom?", "probability": 0.343017578125}, {"start": 2737.82, "end": 2738.26, "word": " For", "probability": 0.5107421875}, {"start": 2738.26, "end": 2738.36, "word": " the", "probability": 0.900390625}, {"start": 2738.36, "end": 2738.52, "word": " data", "probability": 0.90087890625}, {"start": 2738.52, "end": 2739.16, "word": " bus.", "probability": 0.9482421875}, {"start": 2741.24, "end": 2741.68, "word": " Yes,", "probability": 0.123779296875}, {"start": 2741.98, "end": 2742.0, "word": " seven", "probability": 0.390625}, {"start": 2742.0, "end": 2742.84, "word": " days.", "probability": 0.93017578125}], "temperature": 1.0}, {"id": 112, "seek": 277213, "start": 2745.29, "end": 2772.13, "text": " It's not going to beat you. No, it's by mistake, okay? Actually, the data bus, did you see the class that I made? Take it and put it in the application, it will work. That's it, this data bus, this class that I made, you can use it in any application. I mean, it's not going to beat you. Okay, guys? Yes, the application of the data bus and the observer, but on the application of GUI, okay? Okay, thank you guys.", "tokens": [467, 311, 406, 516, 281, 4224, 291, 13, 883, 11, 309, 311, 538, 6146, 11, 1392, 30, 5135, 11, 264, 1412, 1255, 11, 630, 291, 536, 264, 1508, 300, 286, 1027, 30, 3664, 309, 293, 829, 309, 294, 264, 3861, 11, 309, 486, 589, 13, 663, 311, 309, 11, 341, 1412, 1255, 11, 341, 1508, 300, 286, 1027, 11, 291, 393, 764, 309, 294, 604, 3861, 13, 286, 914, 11, 309, 311, 406, 516, 281, 4224, 291, 13, 1033, 11, 1074, 30, 1079, 11, 264, 3861, 295, 264, 1412, 1255, 293, 264, 27878, 11, 457, 322, 264, 3861, 295, 17917, 40, 11, 1392, 30, 1033, 11, 1309, 291, 1074, 13], "avg_logprob": -0.4479166677406242, "compression_ratio": 1.8565022421524664, "no_speech_prob": 1.901388168334961e-05, "words": [{"start": 2745.29, "end": 2745.59, "word": " It's", "probability": 0.2342529296875}, {"start": 2745.59, "end": 2745.65, "word": " not", "probability": 0.2685546875}, {"start": 2745.65, "end": 2745.81, "word": " going", "probability": 0.62060546875}, {"start": 2745.81, "end": 2745.85, "word": " to", "probability": 0.95751953125}, {"start": 2745.85, "end": 2745.85, "word": " beat", "probability": 0.363037109375}, {"start": 2745.85, "end": 2746.01, "word": " you.", "probability": 0.876953125}, {"start": 2746.03, "end": 2746.21, "word": " No,", "probability": 0.378662109375}, {"start": 2746.29, "end": 2746.67, "word": " it's", "probability": 0.787353515625}, {"start": 2746.67, "end": 2746.89, "word": " by", "probability": 0.2734375}, {"start": 2746.89, "end": 2747.17, "word": " mistake,", "probability": 0.8857421875}, {"start": 2747.27, "end": 2747.55, "word": " okay?", "probability": 0.482666015625}, {"start": 2748.43, "end": 2748.79, "word": " Actually,", "probability": 0.1829833984375}, {"start": 2748.87, "end": 2748.93, "word": " the", "probability": 0.458251953125}, {"start": 2748.93, "end": 2749.09, "word": " data", "probability": 0.434326171875}, {"start": 2749.09, "end": 2749.29, "word": " bus,", "probability": 0.6240234375}, {"start": 2749.41, "end": 2749.55, "word": " did", "probability": 0.4638671875}, {"start": 2749.55, "end": 2749.55, "word": " you", "probability": 0.97509765625}, {"start": 2749.55, "end": 2749.55, "word": " see", "probability": 0.861328125}, {"start": 2749.55, "end": 2749.67, "word": " the", "probability": 0.77587890625}, {"start": 2749.67, "end": 2749.99, "word": " class", "probability": 0.8994140625}, {"start": 2749.99, "end": 2750.09, "word": " that", "probability": 0.341796875}, {"start": 2750.09, "end": 2750.21, "word": " I", "probability": 0.982421875}, {"start": 2750.21, "end": 2750.41, "word": " made?", "probability": 0.492919921875}, {"start": 2751.09, "end": 2751.45, "word": " Take", "probability": 0.6328125}, {"start": 2751.45, "end": 2751.67, "word": " it", "probability": 0.890625}, {"start": 2751.67, "end": 2751.77, "word": " and", "probability": 0.87109375}, {"start": 2751.77, "end": 2751.95, "word": " put", "probability": 0.609375}, {"start": 2751.95, "end": 2752.03, "word": " it", "probability": 0.921875}, {"start": 2752.03, "end": 2752.13, "word": " in", "probability": 0.8486328125}, {"start": 2752.13, "end": 2752.25, "word": " the", "probability": 0.84521484375}, {"start": 2752.25, "end": 2752.51, "word": " application,", "probability": 0.6884765625}, {"start": 2752.55, "end": 2752.63, "word": " it", "probability": 0.81298828125}, {"start": 2752.63, "end": 2752.69, "word": " will", "probability": 0.6806640625}, {"start": 2752.69, "end": 2753.01, "word": " work.", "probability": 0.900390625}, {"start": 2753.51, "end": 2753.71, "word": " That's", "probability": 0.721923828125}, {"start": 2753.71, "end": 2753.75, "word": " it,", "probability": 0.83935546875}, {"start": 2753.81, "end": 2753.97, "word": " this", "probability": 0.8251953125}, {"start": 2753.97, "end": 2754.25, "word": " data", "probability": 0.6552734375}, {"start": 2754.25, "end": 2754.53, "word": " bus,", "probability": 0.95556640625}, {"start": 2755.01, "end": 2755.29, "word": " this", "probability": 0.89599609375}, {"start": 2755.29, "end": 2755.67, "word": " class", "probability": 0.94775390625}, {"start": 2755.67, "end": 2755.77, "word": " that", "probability": 0.83740234375}, {"start": 2755.77, "end": 2755.87, "word": " I", "probability": 0.9912109375}, {"start": 2755.87, "end": 2756.13, "word": " made,", "probability": 0.826171875}, {"start": 2756.43, "end": 2757.03, "word": " you", "probability": 0.833984375}, {"start": 2757.03, "end": 2757.05, "word": " can", "probability": 0.763671875}, {"start": 2757.05, "end": 2757.35, "word": " use", "probability": 0.8857421875}, {"start": 2757.35, "end": 2757.49, "word": " it", "probability": 0.91064453125}, {"start": 2757.49, "end": 2757.59, "word": " in", "probability": 0.900390625}, {"start": 2757.59, "end": 2757.69, "word": " any", "probability": 0.8994140625}, {"start": 2757.69, "end": 2758.09, "word": " application.", "probability": 0.89013671875}, {"start": 2758.31, "end": 2758.67, "word": " I", "probability": 0.2420654296875}, {"start": 2758.67, "end": 2758.79, "word": " mean,", "probability": 0.9267578125}, {"start": 2758.85, "end": 2758.95, "word": " it's", "probability": 0.709716796875}, {"start": 2758.95, "end": 2758.95, "word": " not", "probability": 0.93701171875}, {"start": 2758.95, "end": 2759.11, "word": " going", "probability": 0.93701171875}, {"start": 2759.11, "end": 2759.11, "word": " to", "probability": 0.9677734375}, {"start": 2759.11, "end": 2759.25, "word": " beat", "probability": 0.94921875}, {"start": 2759.25, "end": 2759.45, "word": " you.", "probability": 0.94970703125}, {"start": 2760.37, "end": 2760.73, "word": " Okay,", "probability": 0.5}, {"start": 2760.81, "end": 2761.15, "word": " guys?", "probability": 0.87646484375}, {"start": 2764.13, "end": 2764.49, "word": " Yes,", "probability": 0.376953125}, {"start": 2764.67, "end": 2764.71, "word": " the", "probability": 0.404541015625}, {"start": 2764.71, "end": 2764.93, "word": " application", "probability": 0.720703125}, {"start": 2764.93, "end": 2765.11, "word": " of", "probability": 0.576171875}, {"start": 2765.11, "end": 2765.15, "word": " the", "probability": 0.62646484375}, {"start": 2765.15, "end": 2765.31, "word": " data", "probability": 0.92724609375}, {"start": 2765.31, "end": 2765.51, "word": " bus", "probability": 0.9599609375}, {"start": 2765.51, "end": 2765.61, "word": " and", "probability": 0.73388671875}, {"start": 2765.61, "end": 2765.65, "word": " the", "probability": 0.720703125}, {"start": 2765.65, "end": 2765.99, "word": " observer,", "probability": 0.763671875}, {"start": 2766.35, "end": 2766.55, "word": " but", "probability": 0.76171875}, {"start": 2766.55, "end": 2766.71, "word": " on", "probability": 0.6962890625}, {"start": 2766.71, "end": 2766.85, "word": " the", "probability": 0.499755859375}, {"start": 2766.85, "end": 2767.15, "word": " application", "probability": 0.69091796875}, {"start": 2767.15, "end": 2767.25, "word": " of", "probability": 0.298828125}, {"start": 2767.25, "end": 2767.79, "word": " GUI,", "probability": 0.918701171875}, {"start": 2768.03, "end": 2768.63, "word": " okay?", "probability": 0.81884765625}, {"start": 2771.05, "end": 2771.41, "word": " Okay,", "probability": 0.49951171875}, {"start": 2771.47, "end": 2771.59, "word": " thank", "probability": 0.298095703125}, {"start": 2771.59, "end": 2771.67, "word": " you", "probability": 0.96435546875}, {"start": 2771.67, "end": 2772.13, "word": " guys.", "probability": 0.3701171875}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2772.36975, "duration_after_vad": 2633.115624999995} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V2vuTWQOwJs_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V2vuTWQOwJs_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..86ae2474d285d76cad449678309452d1a8712e82 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V2vuTWQOwJs_raw.srt @@ -0,0 +1,2972 @@ +1 +00:00:04,930 --> 00:00:06,530 +In the name of God, Most Gracious, Most Merciful. + +2 +00:00:07,530 --> 00:00:13,810 +We will start today with a new design pattern. Let + +3 +00:00:13,810 --> 00:00:15,230 +me open the slides. + +4 +00:00:25,610 --> 00:00:31,450 +It is called the Observer.design pattern, excuse + +5 +00:00:31,450 --> 00:00:34,030 +me, the data bus design pattern In the previous + +6 +00:00:34,030 --> 00:00:36,370 +lecture, we took a design pattern, one of the most + +7 +00:00:36,370 --> 00:00:38,070 +important design patterns, which is the observer + +8 +00:00:38,070 --> 00:00:41,230 +And we said that the observer's main interest is + +9 +00:00:41,230 --> 00:00:45,410 +to reduce the coupling between objects that need + +10 +00:00:45,410 --> 00:00:46,250 +to communicate with each other + +11 +00:00:49,720 --> 00:00:52,900 +Especially if I have a relationship between + +12 +00:00:52,900 --> 00:00:59,360 +objects one to many So the idea is that my object + +13 +00:00:59,360 --> 00:01:01,860 +that wants to communicate with others, instead of + +14 +00:01:01,860 --> 00:01:03,600 +knowing their types, in the end deals with them + +15 +00:01:03,600 --> 00:01:05,700 +through some kind of interface So if I have three + +16 +00:01:05,700 --> 00:01:08,720 +or four components that want to receive data from + +17 +00:01:08,720 --> 00:01:10,900 +another object, they register this object through + +18 +00:01:10,900 --> 00:01:13,660 +some kind of interface So now it stops knowing the + +19 +00:01:13,660 --> 00:01:16,530 +types of these objects I no longer need to modify + +20 +00:01:16,530 --> 00:01:20,570 +it whenever I want to change who receives data + +21 +00:01:20,570 --> 00:01:21,830 +from it. + +22 +00:01:24,870 --> 00:01:27,490 +In this lecture, we will take a design pattern + +23 +00:01:27,490 --> 00:01:30,350 +related to the observer. It is considered similar, + +24 +00:01:30,550 --> 00:01:33,670 +some people consider it the same observer, but + +25 +00:01:33,670 --> 00:01:36,810 +with different problems. Let's talk in the + +26 +00:01:36,810 --> 00:01:39,110 +beginning as we are used to. What is the + +27 +00:01:39,110 --> 00:01:42,620 +programming problem that I have?and how do we try + +28 +00:01:42,620 --> 00:01:46,700 +to solve it through the data bus pattern, which is + +29 +00:01:46,700 --> 00:01:50,720 +also one of the behavioral patterns, okay? Let's + +30 +00:01:50,720 --> 00:01:53,380 +take this scenario, if we assume that I have a + +31 +00:01:53,380 --> 00:01:56,320 +software that has three or four components, which + +32 +00:01:56,320 --> 00:02:02,340 +are A, B, C, and DThese can be classes, they can + +33 +00:02:02,340 --> 00:02:05,260 +be a number of components, for example in system, + +34 +00:02:05,780 --> 00:02:08,900 +this is the finance department, this is the + +35 +00:02:08,900 --> 00:02:15,980 +inventory, this is for human resources, and so on. + +36 +00:02:16,100 --> 00:02:20,000 +Each one of these represents a part or component + +37 +00:02:20,000 --> 00:02:23,560 +in your application. Because these components need + +38 +00:02:23,560 --> 00:02:26,640 +to communicate with each other. How? For example, + +39 +00:02:27,140 --> 00:02:32,020 +A needs to send to B, C and D.and once C needs to + +40 +00:02:32,020 --> 00:02:34,840 +send for example to B and D and once D needs to + +41 +00:02:34,840 --> 00:02:38,640 +send to A and B so now the relation between them + +42 +00:02:38,640 --> 00:02:41,460 +is that at any time one of the components needs to + +43 +00:02:41,460 --> 00:02:46,600 +send messages to the other components if + +44 +00:02:46,600 --> 00:02:52,260 +we assume that A wants to send data to B, C and D + +45 +00:02:52,900 --> 00:02:56,640 +Because we took that you can use the observer + +46 +00:02:56,640 --> 00:03:01,100 +pattern to make A send to these components without + +47 +00:03:01,100 --> 00:03:07,160 +knowing them How? For example, B, C and D instead + +48 +00:03:07,160 --> 00:03:10,120 +of sending a reference to A, go and make a common + +49 +00:03:10,120 --> 00:03:13,800 +interface for example, I want to call it A + +50 +00:03:13,800 --> 00:03:19,820 +interface and make these implement to this + +51 +00:03:19,820 --> 00:03:24,880 +interfaceand then you make a list here in A where + +52 +00:03:24,880 --> 00:03:29,280 +you register all B, C and D because they are a + +53 +00:03:29,280 --> 00:03:32,800 +type of A interface and you register them in A as + +54 +00:03:32,800 --> 00:03:37,800 +a list and in A you tell them if you get a message + +55 +00:03:37,800 --> 00:03:41,600 +go and make a loop and send it to each one of the + +56 +00:03:41,600 --> 00:03:47,410 +types of AI if I want A to send to B, C and DOkay, + +57 +00:03:47,450 --> 00:03:53,070 +if I want B to send to A, C and D, okay? It's the + +58 +00:03:53,070 --> 00:03:57,350 +same idea, instead of sending a reference to B, A, + +59 +00:03:57,530 --> 00:04:01,690 +C and D and ask them to find a method for them No, + +60 +00:04:01,870 --> 00:04:04,010 +as long as B wants to deal with them, you have to + +61 +00:04:04,010 --> 00:04:08,490 +create a B interface called B interface, BI and + +62 +00:04:08,490 --> 00:04:12,030 +let them implement this interface + +63 +00:04:15,820 --> 00:04:20,160 +Okay? And then let the B put a list of the type of + +64 +00:04:20,160 --> 00:04:24,000 +B I and then if the A wants to send, you tell him + +65 +00:04:24,000 --> 00:04:26,920 +to make a loop on each B I and send him the + +66 +00:04:26,920 --> 00:04:31,460 +messageOkay, you want C to send them the same + +67 +00:04:31,460 --> 00:04:33,780 +idea, you want to make an interface and let them + +68 +00:04:33,780 --> 00:04:37,220 +implement the interface and register them in C, so + +69 +00:04:37,220 --> 00:04:39,700 +what happened? You notice that it became + +70 +00:04:39,700 --> 00:04:44,540 +temporary, that is, if the observer we took is an + +71 +00:04:44,540 --> 00:04:48,000 +excellent solution if you know who sendsFor whom? + +72 +00:04:48,120 --> 00:04:50,980 +When you only have A sending to B, C and D and + +73 +00:04:50,980 --> 00:04:54,420 +that's it. But now we are in front of a scenario + +74 +00:04:54,420 --> 00:04:58,420 +where these four components need to send and + +75 +00:04:58,420 --> 00:05:01,790 +receive each other.at any time, this needs to + +76 +00:05:01,790 --> 00:05:05,670 +reach this, this needs to reach this, so applying + +77 +00:05:05,670 --> 00:05:07,710 +the observer pattern works, but the process + +78 +00:05:07,710 --> 00:05:10,090 +becomes complicated, that is, each one of these + +79 +00:05:10,090 --> 00:05:12,090 +needs this gate to make three interfaces + +80 +00:05:12,090 --> 00:05:16,070 +implement, right? A needs to be of type bi, and of + +81 +00:05:16,070 --> 00:05:19,930 +type di, and of type ci, and A needs to register + +82 +00:05:19,930 --> 00:05:23,640 +here and here and hereThat's it, we did it for the + +83 +00:05:23,640 --> 00:05:25,820 +A, and you have to do the same thing for the B, C + +84 +00:05:25,820 --> 00:05:27,820 +and D. It turns out that we have reached a stage + +85 +00:05:27,820 --> 00:05:29,960 +where applying the observer pattern in this case + +86 +00:05:29,960 --> 00:05:35,140 +is difficult. So we want to see an easy way to + +87 +00:05:35,140 --> 00:05:38,180 +make these four components send and receive each + +88 +00:05:38,180 --> 00:05:41,740 +other in the easiest way possible. So the observer + +89 +00:05:41,740 --> 00:05:44,760 +application is difficult, and even if you cache + +90 +00:05:44,760 --> 00:05:47,500 +the use of design patterns at once, that is, you + +91 +00:05:47,500 --> 00:05:50,940 +let A know B and C and D, and B knows C and D and + +92 +00:05:50,940 --> 00:05:53,700 +A, the process is also complicated, that is, each + +93 +00:05:53,700 --> 00:05:56,740 +person takes a reference or sends him references + +94 +00:05:56,740 --> 00:05:59,520 +from three to two in the process, which is also + +95 +00:05:59,520 --> 00:06:03,560 +complicated. So we go back and see that we need an + +96 +00:06:03,560 --> 00:06:04,300 +easy solution. + +97 +00:06:10,560 --> 00:06:17,280 +A, B, C, and D should communicate with each other + +98 +00:06:17,280 --> 00:06:21,160 +And this scenario is very common in apps For + +99 +00:06:21,160 --> 00:06:23,580 +example, when I was working on Android apps, + +100 +00:06:23,780 --> 00:06:28,260 +sometimes when they design screens, they divide + +101 +00:06:28,260 --> 00:06:31,810 +them into parts and call them fragments it can be + +102 +00:06:31,810 --> 00:06:35,170 +a part of the screen and another part of the + +103 +00:06:35,170 --> 00:06:38,030 +screen and these parts are programmed separately + +104 +00:06:38,030 --> 00:06:41,590 +for example this part is in class and this part is + +105 +00:06:41,590 --> 00:06:43,690 +in class and this part is in class but of course + +106 +00:06:43,690 --> 00:06:46,890 +these parts need to send data to each other for + +107 +00:06:46,890 --> 00:06:48,970 +example this one has changed or I clicked on the + +108 +00:06:48,970 --> 00:06:51,750 +button and it wants to tell this one this one has + +109 +00:06:51,750 --> 00:06:53,750 +changed the content many times I click on + +110 +00:06:53,750 --> 00:06:55,450 +something and it wants to change the list that is + +111 +00:06:55,450 --> 00:06:58,700 +displayed here Now I press on a certain button and + +112 +00:06:58,700 --> 00:07:01,900 +it will change here and here Notice that they all + +113 +00:07:01,900 --> 00:07:06,600 +send and receive from each other So applying the + +114 +00:07:06,600 --> 00:07:09,240 +observer pattern here is difficult Okay, let's get + +115 +00:07:09,240 --> 00:07:12,220 +back to our topic How these four components need + +116 +00:07:12,220 --> 00:07:15,160 +to communicate with each other easily The idea we + +117 +00:07:15,160 --> 00:07:19,320 +are going to do is similar to By what happens in + +118 +00:07:19,320 --> 00:07:21,540 +the computer networks If I have a computer network + +119 +00:07:21,540 --> 00:07:24,200 +and I have computers that I want to connect to one + +120 +00:07:24,200 --> 00:07:28,060 +network What do we do? We make the ethernet + +121 +00:07:28,060 --> 00:07:31,820 +network where I have a bus topology And each one + +122 +00:07:31,820 --> 00:07:38,200 +connects to whom? To the bus, like this This + +123 +00:07:38,200 --> 00:07:41,740 +computer network will have a bus like this This + +124 +00:07:41,740 --> 00:07:44,060 +bus is separated from them, right? No, it's in the + +125 +00:07:44,060 --> 00:07:46,390 +middle But anyone who wants to connect to the + +126 +00:07:46,390 --> 00:07:49,390 +internet has to connect to the bus What happens + +127 +00:07:49,390 --> 00:07:52,370 +now is that A wants to send a message to B, C and + +128 +00:07:52,370 --> 00:07:56,850 +D What does A do? A sends a message to whom? To + +129 +00:07:56,850 --> 00:08:00,510 +the bus And what does the bus do? It broadcasts + +130 +00:08:00,510 --> 00:08:05,750 +the message So this bus sends a message to B, D + +131 +00:08:05,750 --> 00:08:11,070 +and C Now the same idea, D wants to send a message + +132 +00:08:11,070 --> 00:08:15,010 +to A, B and C The B and the D connects to the bus + +133 +00:08:15,010 --> 00:08:17,510 +and the bus is the one that delivers the message + +134 +00:08:17,510 --> 00:08:21,530 +to everyone If someone wants to publish for + +135 +00:08:21,530 --> 00:08:23,710 +everyone, but sometimes the A wants to send a + +136 +00:08:23,710 --> 00:08:26,690 +message to whom? To the D The same idea will + +137 +00:08:26,690 --> 00:08:29,010 +happen, the A will send a message to the bus, but + +138 +00:08:29,010 --> 00:08:30,270 +the bus does not understand what it is doing, it + +139 +00:08:30,270 --> 00:08:32,710 +takes the message and distributes it to everyone + +140 +00:08:32,710 --> 00:08:38,260 +Now this DHe is supposed to receive it and these + +141 +00:08:38,260 --> 00:08:40,420 +guys don't have it They are supposed to cancel it + +142 +00:08:40,420 --> 00:08:43,440 +I mean, of course, how? For example, if B got a + +143 +00:08:43,440 --> 00:08:45,600 +message that doesn't have a meaning in it How can + +144 +00:08:45,600 --> 00:08:47,500 +I know if it has a meaning or not? The message + +145 +00:08:47,500 --> 00:08:49,740 +itself is supposed to have information about who + +146 +00:08:49,740 --> 00:08:52,680 +is the sender, for example, and who is the + +147 +00:08:52,680 --> 00:08:55,280 +receiver, for example So, for example, if B + +148 +00:08:55,280 --> 00:08:57,340 +doesn't have a meaning in the message A I see that + +149 +00:08:57,340 --> 00:09:01,760 +the message came from A, what does he do? Yes, + +150 +00:09:01,940 --> 00:09:04,560 +that's it, he discards it, he ignores it, okay? + +151 +00:09:05,580 --> 00:09:07,920 +But in the end, the bus will distribute to whom? + +152 +00:09:08,160 --> 00:09:12,160 +To everyone. And the item or the component here + +153 +00:09:12,160 --> 00:09:14,700 +decides whether to receive the message or not. + +154 +00:09:15,040 --> 00:09:16,860 +Based on what? Based on the information of the + +155 +00:09:16,860 --> 00:09:19,120 +message, where did the message come from. And this + +156 +00:09:19,120 --> 00:09:21,260 +is what happens in networks. In networks, when we + +157 +00:09:21,260 --> 00:09:23,900 +send a packet to the network, the packet has the + +158 +00:09:23,900 --> 00:09:27,480 +IP address of the sender and the receiver.The + +159 +00:09:27,480 --> 00:09:30,200 +packet is not sent to everyone, it is the bus that + +160 +00:09:30,200 --> 00:09:32,960 +distributes it to everyone, the hub distributes it + +161 +00:09:32,960 --> 00:09:34,340 +to everyone, if you studied well, the hub + +162 +00:09:34,340 --> 00:09:37,460 +distributes it to everyone, okay? Those who have + +163 +00:09:37,460 --> 00:09:38,860 +meaning in the message, receive it, and those who + +164 +00:09:38,860 --> 00:09:41,240 +do not have meaning in it, remove it This is a way + +165 +00:09:41,240 --> 00:09:44,820 +for the component to distinguish whether it + +166 +00:09:44,820 --> 00:09:48,940 +receives the message or not, or another way As we + +167 +00:09:48,940 --> 00:09:52,040 +will see, the messages themselves are assigned to + +168 +00:09:52,040 --> 00:09:54,500 +us, for example, this message has to do with the + +169 +00:09:54,500 --> 00:09:58,040 +process of adding, for example, if I want to ask + +170 +00:09:58,040 --> 00:10:00,360 +for a component to add a certain task, this + +171 +00:10:00,360 --> 00:10:04,220 +message has to do with the invoices, this message + +172 +00:10:04,220 --> 00:10:10,100 +has to do with searching in the warehouse, now the + +173 +00:10:10,100 --> 00:10:14,390 +message has to do with invoices, Invoice message + +174 +00:10:14,390 --> 00:10:17,110 +for example, I sent it, it should reach the + +175 +00:10:17,110 --> 00:10:20,130 +financial department Now, the financial department + +176 +00:10:20,130 --> 00:10:21,830 +receives a message, if it is a type of invoice + +177 +00:10:21,830 --> 00:10:26,210 +message, it receives it If it is a type of search + +178 +00:10:26,210 --> 00:10:28,630 +or inventory or something like that, it cancels + +179 +00:10:28,630 --> 00:10:31,970 +it, depending on the type of message it decides to + +180 +00:10:31,970 --> 00:10:36,130 +receive it or not Now, this is the scenario that + +181 +00:10:36,130 --> 00:10:40,130 +happens in computer networks We want to do the + +182 +00:10:40,130 --> 00:10:46,280 +same scenario in the code, okay? So let's see how + +183 +00:10:46,280 --> 00:10:48,520 +to apply the scenario Imagine that I have three + +184 +00:10:48,520 --> 00:10:52,660 +components Let's assume that they are three + +185 +00:10:52,660 --> 00:10:55,400 +classes A, B, and C And these three begin to + +186 +00:10:55,400 --> 00:10:57,820 +communicate with each other That is, I want A to + +187 +00:10:57,820 --> 00:11:01,800 +send B to C, and B to send C to A, okay? And let's + +188 +00:11:01,800 --> 00:11:04,260 +see how to apply it using the database and how it + +189 +00:11:04,260 --> 00:11:06,840 +will make it easier for me Because as we saw, the + +190 +00:11:06,840 --> 00:11:10,020 +Observer application here is complicated, right or + +191 +00:11:10,020 --> 00:11:11,860 +not? You have to send each other to each other + +192 +00:11:11,860 --> 00:11:13,860 +through the observer, and you have to create an + +193 +00:11:13,860 --> 00:11:15,740 +interface for each one, a list for each one, and + +194 +00:11:15,740 --> 00:11:18,540 +each one has to register with the other three. And + +195 +00:11:18,540 --> 00:11:21,120 +this is a complicated process. We have to solve + +196 +00:11:21,120 --> 00:11:23,100 +the problem by creating a middleware element here, + +197 +00:11:23,500 --> 00:11:26,380 +which is the data bus, which we talked about, and + +198 +00:11:26,380 --> 00:11:28,160 +everything registers with it, and the bus is the + +199 +00:11:28,160 --> 00:11:30,880 +one that delivers to the bus, and the bus is the + +200 +00:11:30,880 --> 00:11:34,060 +one that distributes everything. So let's apply + +201 +00:11:34,060 --> 00:11:37,140 +this design pattern now. + +202 +00:11:41,830 --> 00:11:45,090 +as the third one because the first thing I have to + +203 +00:11:45,090 --> 00:11:46,810 +do is to make the components that are connected to + +204 +00:11:46,810 --> 00:11:54,030 +each other I have to make any class A and B and + +205 +00:11:54,030 --> 00:11:59,870 +C and + +206 +00:11:59,870 --> 00:12:03,670 +this is also D to be the same symbol of the board + +207 +00:12:08,190 --> 00:12:11,330 +In every class of these classes, we make a + +208 +00:12:11,330 --> 00:12:16,910 +statement public void void send to all and put a + +209 +00:12:16,910 --> 00:12:22,170 +string text here This is a method that you put in + +210 +00:12:22,170 --> 00:12:25,790 +every class so that if I make an object and claim + +211 +00:12:25,790 --> 00:12:29,990 +send to all, it should send to whom? for the rest + +212 +00:12:29,990 --> 00:12:32,710 +of the class if I create an object from A and I + +213 +00:12:32,710 --> 00:12:36,010 +tell it send to all this message should reach to + +214 +00:12:36,010 --> 00:12:39,670 +whom? to B and C and D and the same thing in class + +215 +00:12:39,670 --> 00:12:45,970 +B if I call send to all it will reach to A and B + +216 +00:12:45,970 --> 00:12:52,930 +and D to the other three so + +217 +00:12:52,930 --> 00:12:55,210 +here in every class I made this argument and this + +218 +00:12:55,210 --> 00:12:57,410 +argument is still empty + +219 +00:13:04,160 --> 00:13:09,200 +Okay, and then I want to do a test Which is the + +220 +00:13:09,200 --> 00:13:20,300 +main method This + +221 +00:13:20,300 --> 00:13:20,620 +is A + +222 +00:13:38,630 --> 00:13:43,190 +These three, what I want to do is to go to A and + +223 +00:13:43,190 --> 00:13:48,710 +say send to all hello, + +224 +00:13:49,550 --> 00:13:53,950 +this message is supposed to reach B, C and D and + +225 +00:13:53,950 --> 00:13:57,630 +so on, if it goes to C, I say send to all, it + +226 +00:13:57,630 --> 00:14:01,370 +should reach A, B and D, this is what I want to do + +227 +00:14:01,370 --> 00:14:03,910 +and it is not done yetNow that we've done these + +228 +00:14:03,910 --> 00:14:07,250 +four elements, we want to do the get-mean, this + +229 +00:14:07,250 --> 00:14:09,990 +bus. The first point, notice that this bus is + +230 +00:14:09,990 --> 00:14:12,670 +separated from all of them, right? So this is + +231 +00:14:12,670 --> 00:14:16,590 +going to be a separate new class. We want to call + +232 +00:14:16,590 --> 00:14:24,170 +this class data bus. Okay? Okay. The second point + +233 +00:14:24,170 --> 00:14:28,590 +is a separate class, but also everyone needs to + +234 +00:14:28,590 --> 00:14:31,670 +communicate with the bus. The application should + +235 +00:14:31,670 --> 00:14:34,210 +have one bus and everyone should communicate with + +236 +00:14:34,210 --> 00:14:37,850 +it So what should we do next? We should design + +237 +00:14:37,850 --> 00:14:40,710 +this bus as singleton Why? Because it should have + +238 +00:14:40,710 --> 00:14:45,670 +one object and I can design it from anywhere So + +239 +00:14:45,670 --> 00:14:49,030 +this class is made and now I want to design it as + +240 +00:14:49,030 --> 00:14:51,410 +singleton How do we design it as singleton? We + +241 +00:14:51,410 --> 00:14:57,720 +create private static data busIt's name is + +242 +00:14:57,720 --> 00:15:00,800 +instance, it's value is null, it's an object of + +243 +00:15:00,800 --> 00:15:05,200 +the kind of data bus Okay, and then we close the + +244 +00:15:05,200 --> 00:15:10,320 +constructor Right guys? So that no one removes the + +245 +00:15:10,320 --> 00:15:13,140 +object from it And instead of constructor, we make + +246 +00:15:13,140 --> 00:15:22,940 +public static data bus get instance Now + +247 +00:15:22,940 --> 00:15:28,960 +if the instance is equal to null go to instance + +248 +00:15:28,960 --> 00:15:40,320 +and say new database and then return instance + +249 +00:15:40,320 --> 00:15:42,260 +ok guys? + +250 +00:15:45,880 --> 00:15:52,240 +ok, the second part will make a classrepresents + +251 +00:15:52,240 --> 00:15:56,040 +the message that we want to send between the + +252 +00:15:56,040 --> 00:15:58,560 +compounds because someone says that this message + +253 +00:15:58,560 --> 00:16:00,800 +is a text it is not necessary that I can send a + +254 +00:16:00,800 --> 00:16:04,720 +text, integer, array, correct or not and we also + +255 +00:16:04,720 --> 00:16:06,760 +want with the message from the useful information + +256 +00:16:06,760 --> 00:16:08,640 +to send for example with the message from the + +257 +00:16:08,640 --> 00:16:13,420 +sender from the sender why? because the future + +258 +00:16:13,420 --> 00:16:15,680 +when the economy comes knows where it came from + +259 +00:16:16,420 --> 00:16:19,800 +and for whom you can put it so we came inside this + +260 +00:16:19,800 --> 00:16:24,980 +class we want to make public class something we + +261 +00:16:24,980 --> 00:16:31,300 +call bus message so a message to the bus this bus + +262 +00:16:31,300 --> 00:16:33,980 +message of course how do I design it guys I want + +263 +00:16:33,980 --> 00:16:37,780 +to make it generics why? because of the data I + +264 +00:16:37,780 --> 00:16:41,140 +control in which type it is now the bus message I + +265 +00:16:41,140 --> 00:16:46,220 +want to put two attributes in it T dataAnd I want + +266 +00:16:46,220 --> 00:16:50,320 +to make in it the sender who wants to send the + +267 +00:16:50,320 --> 00:16:55,340 +data Of course, the sender wants to make a kind of + +268 +00:16:55,340 --> 00:17:00,180 +subscriber called sender Of course, you know what + +269 +00:17:00,180 --> 00:17:03,260 +is a subscriber, right? Of course, this type does + +270 +00:17:03,260 --> 00:17:07,260 +not exist yetOkay? The idea of this gate is that + +271 +00:17:07,260 --> 00:17:10,320 +we want anyone, like the idea of ​​the observer, + +272 +00:17:11,040 --> 00:17:13,120 +not all of us in the observer, the people who want + +273 +00:17:13,120 --> 00:17:15,620 +to register at A, we want to work in the A + +274 +00:17:15,620 --> 00:17:19,240 +interface, okay? But in the observer that we apply + +275 +00:17:19,240 --> 00:17:21,620 +here, in each person we want to make an interface. + +276 +00:17:21,760 --> 00:17:23,820 +Not us, now all the young people want to register + +277 +00:17:23,820 --> 00:17:27,360 +at whom? At the database.Instead of each one + +278 +00:17:27,360 --> 00:17:29,420 +registering with the other one, why did we create + +279 +00:17:29,420 --> 00:17:31,580 +a database? It's the middle ground between them + +280 +00:17:31,580 --> 00:17:34,820 +all. So we want to create a database interface of + +281 +00:17:34,820 --> 00:17:37,620 +a kind, a subscriber, on the basis that anyone who + +282 +00:17:37,620 --> 00:17:40,800 +wants to send and receive others, we tell him to + +283 +00:17:40,800 --> 00:17:43,020 +register with the database. This is the + +284 +00:17:43,020 --> 00:17:45,120 +subscription service. which will be delivered to + +285 +00:17:45,120 --> 00:17:47,660 +the youth through SMS service to subscribe to them + +286 +00:17:47,660 --> 00:17:50,880 +they want to subscribe as what? as a subscriber so + +287 +00:17:50,880 --> 00:17:54,820 +we came inside the database itself we want to + +288 +00:17:54,820 --> 00:18:03,400 +create a public interface subscriber and + +289 +00:18:03,400 --> 00:18:06,620 +we want to create a method public void message + +290 +00:18:06,620 --> 00:18:11,140 +received for example On the basis of this, anyone + +291 +00:18:11,140 --> 00:18:13,480 +who wants to implement for the subscriber, he + +292 +00:18:13,480 --> 00:18:15,080 +wants to state in this data what he wants to do + +293 +00:18:15,080 --> 00:18:18,800 +when he generates the data, okay? Because this + +294 +00:18:18,800 --> 00:18:23,440 +message received will be called a bus message, + +295 +00:18:23,520 --> 00:18:26,440 +okay? + +296 +00:18:27,460 --> 00:18:30,300 +So this is a message received, here the message + +297 +00:18:30,300 --> 00:18:32,140 +has arrived, it will arrive as what? As a bus + +298 +00:18:32,140 --> 00:18:34,740 +message and the data is inside this bus message + +299 +00:18:37,110 --> 00:18:39,110 +Okay, let's continue. This getter came to the bus + +300 +00:18:39,110 --> 00:18:45,030 +message. I just need to make a setter + +301 +00:18:45,030 --> 00:18:47,770 +and getter for the bus message. + +302 +00:19:00,450 --> 00:19:01,430 +Okay, let's continue. + +303 +00:19:04,410 --> 00:19:07,870 +Ok, we made the subscriber, as we did in the + +304 +00:19:07,870 --> 00:19:10,710 +observer, we want to make a list of subscribers, + +305 +00:19:10,950 --> 00:19:14,170 +so that everything that registers is stored in the + +306 +00:19:14,170 --> 00:19:16,350 +databus, not everything must connect with the + +307 +00:19:16,350 --> 00:19:20,390 +databus, ok? We must make a list of what? List of + +308 +00:19:20,390 --> 00:19:25,610 +what type? Subscribers, ok? So, we came up here in + +309 +00:19:25,610 --> 00:19:30,290 +the databus, private, list of what type? + +310 +00:19:36,760 --> 00:19:41,960 +subscribers ok and + +311 +00:19:41,960 --> 00:19:43,700 +in constructor when it is created we say + +312 +00:19:43,700 --> 00:19:52,420 +subscribers is equal to new arraylist of + +313 +00:19:52,420 --> 00:19:54,340 +course why we didn't put new above it is normal + +314 +00:19:54,340 --> 00:19:56,120 +you can put it here but I prefer to do it in + +315 +00:19:56,120 --> 00:19:59,180 +constructor because it is not created until the + +316 +00:19:59,180 --> 00:20:00,540 +object is created ok + +317 +00:20:02,870 --> 00:20:04,970 +Okay, just like you made a list of subscribers, + +318 +00:20:05,130 --> 00:20:08,670 +you need to make a tag to add to the subscribers, + +319 +00:20:09,190 --> 00:20:11,690 +okay? So we need to make a tag called subscribe + +320 +00:20:11,690 --> 00:20:15,610 +for example All of you know what is subscribes, + +321 +00:20:15,710 --> 00:20:17,650 +right? If the video bothered you, I swear to God + +322 +00:20:17,650 --> 00:20:22,750 +Yes Subscriber, this is the subscriber, S, okay? + +323 +00:20:23,150 --> 00:20:30,030 +And then you say if subscribers.contains if it + +324 +00:20:30,030 --> 00:20:33,610 +does not contain the S, go to the subscribers and + +325 +00:20:33,610 --> 00:20:38,810 +say add the S And as we did subscribe, if you want + +326 +00:20:38,810 --> 00:20:41,250 +to receive messages from the bus, you can say + +327 +00:20:41,250 --> 00:20:47,560 +what? Unsubscribethis is a subscriber, in order to + +328 +00:20:47,560 --> 00:20:59,060 +cancel the subscription, subscribe and + +329 +00:20:59,060 --> 00:20:59,860 +what do we do with it? + +330 +00:21:02,820 --> 00:21:06,980 +remove to + +331 +00:21:06,980 --> 00:21:08,260 +the name, they didn't find it, that's it + +332 +00:21:13,370 --> 00:21:15,950 +Like the idea of the observer, but there is a + +333 +00:21:15,950 --> 00:21:18,630 +difference. The data bus is designed as a + +334 +00:21:18,630 --> 00:21:21,550 +singleton, so that everyone can reach it from + +335 +00:21:21,550 --> 00:21:25,270 +anywhere, and there is only one copy of it. The + +336 +00:21:25,270 --> 00:21:26,470 +second point is that there is a list of + +337 +00:21:26,470 --> 00:21:28,490 +subscribers, so that people can register in it, + +338 +00:21:28,810 --> 00:21:30,370 +and there is an interface for the subscriber. + +339 +00:21:31,310 --> 00:21:33,110 +Anyone who wants to join the bus must take the + +340 +00:21:33,110 --> 00:21:36,690 +kind of interface and register in the existing + +341 +00:21:36,690 --> 00:21:40,130 +list, okay? And this is the message on the basis + +342 +00:21:40,130 --> 00:21:43,150 +that it wants to send, it must send the data and + +343 +00:21:43,150 --> 00:21:47,590 +who is with it, who sent the data. Now we have one + +344 +00:21:47,590 --> 00:21:50,670 +step left to finish this bus thing. It is all the + +345 +00:21:50,670 --> 00:21:56,090 +work in the bus. Now in addition to subscribe and + +346 +00:21:56,090 --> 00:21:59,270 +unsubscribe, we want to do a tag called public + +347 +00:21:59,270 --> 00:22:05,230 +void publish. It takes a bus message. + +348 +00:22:08,300 --> 00:22:10,920 +What is this statement publish? This is at the + +349 +00:22:10,920 --> 00:22:12,520 +execution of this gate. What do they want to send + +350 +00:22:12,520 --> 00:22:15,240 +to them? They will go to the bus and tell him + +351 +00:22:15,240 --> 00:22:19,380 +what? Publish and send him the message. That is, + +352 +00:22:19,460 --> 00:22:21,940 +this statement publish is at the execution. + +353 +00:22:22,140 --> 00:22:25,780 +Everyone wants to send a message to others, go to + +354 +00:22:25,780 --> 00:22:28,980 +the bus and tell him what? Tell him publish. And + +355 +00:22:28,980 --> 00:22:30,760 +the data they want to send, they want to wrap it + +356 +00:22:30,760 --> 00:22:35,890 +up as what? As a bus message. Okay? Did you get + +357 +00:22:35,890 --> 00:22:38,170 +it? The message has reached the bus What does the + +358 +00:22:38,170 --> 00:22:40,330 +bus want to do? It wants to make a loop on the + +359 +00:22:40,330 --> 00:22:44,250 +subscribers And tell them what? Take the data So + +360 +00:22:44,250 --> 00:22:51,170 +it wants to say to each subscriber S in + +361 +00:22:51,170 --> 00:22:58,350 +subscribers Yes, see what I want to do F s does + +362 +00:22:58,350 --> 00:23:03,870 +not equal message dot get sender + +363 +00:23:07,560 --> 00:23:13,080 +you type in s.messagereceived + +364 +00:23:13,080 --> 00:23:16,720 +this is in python, I thought I would write it in + +365 +00:23:16,720 --> 00:23:19,380 +python ok, for every subscriber, s is present in + +366 +00:23:19,380 --> 00:23:23,540 +subscribers because the idea is that we received a + +367 +00:23:23,540 --> 00:23:25,220 +message, I am supposed to send it to others + +368 +00:23:25,220 --> 00:23:27,600 +without returning it to the one I sent it to, + +369 +00:23:27,680 --> 00:23:29,940 +right or not? because I found the a sent a message + +370 +00:23:29,940 --> 00:23:33,880 +to the busHe doesn't want to act stupid, he wants + +371 +00:23:33,880 --> 00:23:36,380 +to think about the message that came, he wants to + +372 +00:23:36,380 --> 00:23:38,640 +send it to B, C and D without returning it to A, + +373 +00:23:38,820 --> 00:23:42,180 +right or wrong? So when the message came to me, I + +374 +00:23:42,180 --> 00:23:46,080 +said to him, by God, let's do subscribers, okay? + +375 +00:23:46,260 --> 00:23:50,060 +So for each subscriber, if it is not the sender, + +376 +00:23:51,060 --> 00:23:52,440 +what should I do? I should send a message + +377 +00:23:52,440 --> 00:23:56,680 +received, in order to send to each number that + +378 +00:23:56,680 --> 00:24:02,150 +sent the messageThis way the bus is ready, ready + +379 +00:24:02,150 --> 00:24:05,370 +how to register in it, ready how to cancel the + +380 +00:24:05,370 --> 00:24:11,030 +registration and ready how to publish a message to + +381 +00:24:11,030 --> 00:24:16,750 +it But we haven't used the bus yet, where are we + +382 +00:24:16,750 --> 00:24:19,250 +going to use it? In the mail, again I went to the + +383 +00:24:19,250 --> 00:24:23,990 +mail These guys want to send data to each other + +384 +00:24:23,990 --> 00:24:27,070 +And I don't know who wants to send data to whom + +385 +00:24:27,070 --> 00:24:31,030 +The first step is that these guys have to register + +386 +00:24:31,030 --> 00:24:34,250 +in the bus How do they register in the bus? They + +387 +00:24:34,250 --> 00:24:36,890 +have to go to the data bus This is not a singleton + +388 +00:24:36,890 --> 00:24:40,990 +server And I say get instance And I say here + +389 +00:24:40,990 --> 00:24:52,870 +subscribe And I want to register A, B, C and DThis + +390 +00:24:52,870 --> 00:24:55,950 +is A and B and C and D. This is a step that we + +391 +00:24:55,950 --> 00:24:58,410 +have to do. Everyone has to register and connect + +392 +00:24:58,410 --> 00:25:00,450 +with the bus. Of course, there will be errors + +393 +00:25:00,450 --> 00:25:03,810 +because they will say that they want to register + +394 +00:25:03,810 --> 00:25:07,850 +and you have to come as a subscriber. So I will go + +395 +00:25:07,850 --> 00:25:12,220 +to each one and tell him to implement subscriber + +396 +00:25:12,220 --> 00:25:15,540 +as soon as you do implement for subscriber it will + +397 +00:25:15,540 --> 00:25:19,680 +tell you to do import and do what? the method + +398 +00:25:19,680 --> 00:25:26,300 +which name is what? message received okay? notice + +399 +00:25:26,300 --> 00:25:29,240 +that this A receives a message from a kind of bus + +400 +00:25:29,240 --> 00:25:32,840 +message okay? did you find here the A means what I + +401 +00:25:32,840 --> 00:25:35,260 +want to do? I want to print a message I want to + +402 +00:25:35,260 --> 00:25:39,860 +tell him A received + +403 +00:25:43,720 --> 00:25:47,240 +message.getdata I want to type the message that + +404 +00:25:47,240 --> 00:25:50,180 +came to me and I want to tell him from I want to + +405 +00:25:50,180 --> 00:25:53,220 +determine where the message came from because the + +406 +00:25:53,220 --> 00:25:55,580 +message does not have a sender I want to tell him + +407 +00:25:55,580 --> 00:26:00,820 +message.get sender I want to see the type of class + +408 +00:26:00,820 --> 00:26:03,960 +get class get name in order to know what type of + +409 +00:26:03,960 --> 00:26:12,650 +sender it is the same thing I did in Aبدا تعمله في + +410 +00:26:12,650 --> 00:26:16,710 +ال B و ال C و ال D بدا + +411 +00:26:16,710 --> 00:26:23,390 +تعمله + +412 +00:26:23,390 --> 00:26:30,850 +في ال B و ال C و ال D بدا + +413 +00:26:30,850 --> 00:26:35,230 +تعمله في ال B و ال C و ال D بدا تعمله في ال B و ال + +414 +00:26:35,230 --> 00:26:37,630 +D بدا تعمله في ال B و ال C و ال D + +415 +00:26:54,970 --> 00:26:59,790 +and this D implements subscriber + +416 +00:26:59,790 --> 00:27:07,230 +and + +417 +00:27:07,230 --> 00:27:12,070 +this D received blah blah blah okay guys now all + +418 +00:27:12,070 --> 00:27:14,450 +of them became subscriber type and all of them + +419 +00:27:14,450 --> 00:27:16,210 +determined what they want to do in the message if + +420 +00:27:16,210 --> 00:27:19,530 +it came back to the main method this subscribe is + +421 +00:27:19,530 --> 00:27:23,130 +all ready Now we come to the moment of truth Which + +422 +00:27:23,130 --> 00:27:28,190 +is what? For example, A wants to send to whom? To + +423 +00:27:28,190 --> 00:27:31,050 +everyone. He wants to ask for what? Send to all. + +424 +00:27:31,530 --> 00:27:36,630 +The send to all so far has nothing. Now this is + +425 +00:27:36,630 --> 00:27:38,730 +the message that came to me. The first step we do + +426 +00:27:38,730 --> 00:27:43,010 +is to wrap this message in what? In a bus message. + +427 +00:27:43,510 --> 00:27:48,610 +So we go and say bus message M and I want to make + +428 +00:27:48,610 --> 00:27:52,820 +it of typeString for example, see how this is the + +429 +00:27:52,820 --> 00:27:54,400 +use of the generic, did you take the generic? + +430 +00:27:54,720 --> 00:28:10,060 +Okay, new bus message Okay, + +431 +00:28:10,320 --> 00:28:14,920 +what does this bus need? So that I can use or + +432 +00:28:14,920 --> 00:28:18,360 +create this class Static + +433 +00:28:21,490 --> 00:28:23,050 +Okay, this is the beginning of the message. Now I + +434 +00:28:23,050 --> 00:28:26,070 +want to put the data in the message. Set data, + +435 +00:28:27,250 --> 00:28:32,830 +what do I want to put? The text. Set sender, this, + +436 +00:28:33,070 --> 00:28:36,950 +it is it, not the A that sends. Okay, now we're + +437 +00:28:36,950 --> 00:28:38,910 +done. The A wants to send the message. Who does it + +438 +00:28:38,910 --> 00:28:42,100 +want to send it to? Ok, she will send it to him, + +439 +00:28:42,140 --> 00:28:44,380 +she doesn't have it, she sends it to the bus, he + +440 +00:28:44,380 --> 00:28:46,860 +delivers it to the bus, and what is the bus? He + +441 +00:28:46,860 --> 00:28:49,600 +sends it. Since the bus is singleton, I can send + +442 +00:28:49,600 --> 00:28:55,940 +it from anywhere, right guys? databus.getinstance + +443 +00:28:55,940 --> 00:28:59,740 +.publish, there is no method publish, and I send + +444 +00:28:59,740 --> 00:29:03,480 +it to whom? The security, and we are done. This + +445 +00:29:03,480 --> 00:29:05,260 +message is supposed to be sent to whom? To + +446 +00:29:05,260 --> 00:29:08,880 +everyone. Did you find this method send to all? It + +447 +00:29:08,880 --> 00:29:13,250 +should be available for whom?فى الكل تمام فى ال B + +448 +00:29:13,250 --> 00:29:20,790 +هى بس نسختها وحطيتها هنا و + +449 +00:29:20,790 --> 00:29:29,150 +فى ال C و + +450 +00:29:29,150 --> 00:29:36,750 +هى فى ال D تمام + +451 +00:29:36,750 --> 00:29:41,370 +خلصنا هيك تعالى الان sin to all look what will + +452 +00:29:41,370 --> 00:29:45,790 +happen hello to send to all run and look what is + +453 +00:29:45,790 --> 00:29:48,310 +printed on the screen what did it write? B + +454 +00:29:48,310 --> 00:29:53,030 +received hello, C received hello, D received hello + +455 +00:29:53,030 --> 00:29:59,730 +now we want C to send to others C dot send to all + +456 +00:29:59,730 --> 00:30:06,250 +hi hi B should receive A, B and D right? run + +457 +00:30:11,600 --> 00:30:13,280 +Of course, the first one to receive it is the one + +458 +00:30:13,280 --> 00:30:14,620 +who sent the message, the one who sent it is A + +459 +00:30:14,620 --> 00:30:18,080 +Now, C sent it, A accepted it, B accepted it, and + +460 +00:30:18,080 --> 00:30:20,880 +D accepted it So now, everything is sent to + +461 +00:30:20,880 --> 00:30:23,880 +everything without needing any complications There + +462 +00:30:23,880 --> 00:30:25,980 +is a new element that wants to join with them, + +463 +00:30:26,040 --> 00:30:29,120 +send and accept it All you have to do is create a + +464 +00:30:29,120 --> 00:30:31,420 +new class for the new element, implement + +465 +00:30:31,420 --> 00:30:33,860 +subscriber, and register it in the bus The bus + +466 +00:30:33,860 --> 00:30:38,420 +will not change at all now, okay? And you can take + +467 +00:30:38,420 --> 00:30:41,550 +the bus if you made this application, okay? and + +468 +00:30:41,550 --> 00:30:43,130 +you have elements that you want to send to each + +469 +00:30:43,130 --> 00:30:45,990 +other and you take only this class and you put it + +470 +00:30:45,990 --> 00:30:49,470 +in your application and you use it. In fact, when + +471 +00:30:49,470 --> 00:30:52,110 +I was working on Android, there were times when + +472 +00:30:52,110 --> 00:30:54,010 +there were libraries made on GitHub made by whom? + +473 +00:30:54,610 --> 00:30:57,090 +This data bus wants you to send between your + +474 +00:30:57,090 --> 00:31:00,450 +elements, use this library. Did you make the + +475 +00:31:00,450 --> 00:31:03,530 +library here? We did it in the lecture. This sends + +476 +00:31:03,530 --> 00:31:08,330 +to all the other elements.Now you can ask me, + +477 +00:31:08,630 --> 00:31:11,270 +sometimes A wants to send a message to B, but + +478 +00:31:11,270 --> 00:31:13,770 +doesn't send a message to the other two, there is + +479 +00:31:13,770 --> 00:31:15,010 +no one who sends a message to only one element, + +480 +00:31:15,610 --> 00:31:18,290 +you have to send a message to everyone, but then B + +481 +00:31:18,290 --> 00:31:23,290 +decides whether to receive the message or not, for + +482 +00:31:23,290 --> 00:31:26,190 +example, we can say that if C receives a message + +483 +00:31:26,190 --> 00:31:29,320 +from A, Ignore it, for example. That's it. The sem + +484 +00:31:29,320 --> 00:31:31,880 +doesn't mean it takes messages from whom? From + +485 +00:31:31,880 --> 00:31:35,140 +what? So it can do it this way. It can come before + +486 +00:31:35,140 --> 00:31:38,360 +it executes, it sees the message. If the message, + +487 +00:31:39,180 --> 00:31:45,600 +okay, get sender, get class, get .. or whatever. + +488 +00:31:45,840 --> 00:31:51,960 +If the sender is an instance of what? Okay. + +489 +00:31:55,400 --> 00:31:59,620 +for example ignore, don't do anything else, do + +490 +00:31:59,620 --> 00:32:04,660 +this thing or you can do not if it's not .. here I + +491 +00:32:04,660 --> 00:32:07,180 +told him if it's a here I'll tell him to do + +492 +00:32:07,180 --> 00:32:14,920 +nothing yes, what is this here? c does nothing to + +493 +00:32:14,920 --> 00:32:19,180 +enter the c so when you get a message from a he + +494 +00:32:19,180 --> 00:32:22,480 +will not do anything if I run this A sends a + +495 +00:32:22,480 --> 00:32:27,120 +message if C receives a message from A what does C + +496 +00:32:27,120 --> 00:32:31,200 +do? C does nothing this is one solution the other + +497 +00:32:31,200 --> 00:32:34,960 +solution is that you can specialize the messages + +498 +00:32:34,960 --> 00:32:40,520 +for example this is the financial department BGA + +499 +00:32:40,520 --> 00:32:43,640 +wants to send a financial message to whom? to the + +500 +00:32:43,640 --> 00:32:45,500 +financial department BGA makes a message of + +501 +00:32:45,500 --> 00:32:50,210 +finance message type and the finance message, all + +502 +00:32:50,210 --> 00:32:53,210 +the others check if the message is finance, if it + +503 +00:32:53,210 --> 00:32:55,190 +is finance, you don't receive it and this one says + +504 +00:32:55,190 --> 00:32:57,370 +if it is finance, you don't receive it, if it is + +505 +00:32:57,370 --> 00:33:00,770 +finance, you receive it how do we do this thing? + +506 +00:33:01,210 --> 00:33:06,390 +nothing, I don't have a class called bus message I + +507 +00:33:06,390 --> 00:33:09,970 +can make a new message called finance message, + +508 +00:33:10,030 --> 00:33:12,750 +this is a new class and I say this finance message + +509 +00:33:12,750 --> 00:33:21,380 +extends bus message and here also make it T and + +510 +00:33:21,380 --> 00:33:25,360 +here also T you can add new attributes specific to + +511 +00:33:25,360 --> 00:33:31,220 +whom in this message this message is related to + +512 +00:33:31,220 --> 00:33:34,620 +financial matters which should be followed only by + +513 +00:33:34,620 --> 00:33:39,520 +D now A wants to send a financial message instead + +514 +00:33:39,520 --> 00:33:42,680 +of getting an object from a bus message it gets an + +515 +00:33:42,680 --> 00:33:44,840 +object from finance message + +516 +00:33:47,530 --> 00:33:51,590 +high finance message. So you have to specify what + +517 +00:33:51,590 --> 00:33:56,190 +message you want to send. Now, who is supposed to + +518 +00:33:56,190 --> 00:34:00,400 +receive this message? Religion. D checks the + +519 +00:34:00,400 --> 00:34:05,380 +message, if in the end the method message received + +520 +00:34:05,380 --> 00:34:09,040 +receives a bus message, bus message means any kind + +521 +00:34:09,040 --> 00:34:11,680 +of subclass that you receive, but what do I do + +522 +00:34:11,680 --> 00:34:14,500 +here? I check if the message is an instance of + +523 +00:34:14,500 --> 00:34:22,590 +finance messageهنا إيش بده يعمل؟ بده يستقبلها و + +524 +00:34:22,590 --> 00:34:27,050 +يعالجها تمام؟ أو حتى بده يكتب this is a final + +525 +00:34:27,050 --> 00:34:33,330 +finance messageThe rest should do what? If it's a + +526 +00:34:33,330 --> 00:34:36,550 +finance message, what should it do? Ignore it. + +527 +00:34:37,410 --> 00:34:39,390 +That's it. That's the idea. You can specialize + +528 +00:34:39,390 --> 00:34:42,530 +that the sender should receive the message. + +529 +00:34:42,630 --> 00:34:46,290 +Depending on the sender, if I get from A, I don't + +530 +00:34:46,290 --> 00:34:49,470 +have a meaning in A. I have a meaning only in B. D + +531 +00:34:49,470 --> 00:34:52,070 +has a meaning in B, for example. Through the + +532 +00:34:52,070 --> 00:34:55,910 +sender to distinguish. Or through specializing the + +533 +00:34:55,910 --> 00:34:59,130 +message.Okay, each person, each component receives + +534 +00:34:59,130 --> 00:35:02,030 +a specific type of message and delivers it by + +535 +00:35:02,030 --> 00:35:04,570 +using it. But in the end, the bus doesn't + +536 +00:35:04,570 --> 00:35:07,230 +understand. What does the bus do? It distributes + +537 +00:35:07,230 --> 00:35:08,930 +to all the elements that determine whether you + +538 +00:35:08,930 --> 00:35:10,630 +receive it or not. You can go to the point where + +539 +00:35:10,630 --> 00:35:13,330 +they say, well, security means that you delivered + +540 +00:35:13,330 --> 00:35:15,170 +the message like that, maybe they take the + +541 +00:35:15,170 --> 00:35:17,490 +information. We don't deal with distributed + +542 +00:35:17,490 --> 00:35:20,830 +systems and the internet. They are all elements in + +543 +00:35:20,830 --> 00:35:23,610 +the same network. Okay, there is no security. I am + +544 +00:35:23,610 --> 00:35:25,270 +the one who made them all and they are all present + +545 +00:35:25,270 --> 00:35:30,850 +together. Okay? Is the idea clear, guys? Okay, + +546 +00:35:30,930 --> 00:35:37,130 +let's move on to the slide, okay? Now, the data + +547 +00:35:37,130 --> 00:35:41,010 +bus, its goal, allows to send messages, events + +548 +00:35:41,010 --> 00:35:44,430 +between components of an application. It allows + +549 +00:35:44,430 --> 00:35:48,210 +sending messages or events between components in + +550 +00:35:48,210 --> 00:35:51,130 +your application without them needing to know + +551 +00:35:51,130 --> 00:35:54,650 +about each other.What does it mean? Notice that A, + +552 +00:35:54,810 --> 00:35:56,730 +B, C and D don't know anything about each other. + +553 +00:35:57,450 --> 00:36:00,950 +The link between them is the bus. That's why it + +554 +00:36:00,950 --> 00:36:06,090 +became easier. Okay? No one needs to be like the + +555 +00:36:06,090 --> 00:36:07,990 +observer, because these don't register with this + +556 +00:36:07,990 --> 00:36:10,590 +and these don't register with this. No, it's over. + +557 +00:36:11,190 --> 00:36:14,850 +The link between them is the bus. He acted like + +558 +00:36:14,850 --> 00:36:17,070 +the observer, but I made the observer independent + +559 +00:36:17,070 --> 00:36:20,230 +here, an element in the middle. without them + +560 +00:36:20,230 --> 00:36:23,270 +needing to know about each other they only need to + +561 +00:36:23,270 --> 00:36:25,950 +know about the type of the message even being sent + +562 +00:36:25,950 --> 00:36:30,010 +meaning that I just pick up the message and send + +563 +00:36:30,010 --> 00:36:33,130 +it to them and the future sees what kind of + +564 +00:36:33,130 --> 00:36:34,690 +message it is if it has a meaning to it, it takes + +565 +00:36:34,690 --> 00:36:36,410 +it if it doesn't have a meaning to it, it leaves + +566 +00:36:36,410 --> 00:36:42,170 +it he did like the observer pattern but means to a + +567 +00:36:42,170 --> 00:36:46,630 +supporting money to money communication + +568 +00:36:46,630 --> 00:36:51,000 +applicability when we use itUse data bus pattern + +569 +00:36:51,000 --> 00:36:53,720 +when you want your components to decide themselves + +570 +00:36:53,720 --> 00:36:59,580 +which messages even they want to receive يعني زي + +571 +00:36:59,580 --> 00:37:02,940 +ما شفنا أنه بدك أنت تبعت رسائل للجميع وكل عنصر + +572 +00:37:02,940 --> 00:37:06,680 +يحدد هو يستقبل الرسالة أو لاBased on the type of + +573 +00:37:06,680 --> 00:37:09,620 +message or sender for example You want to have + +574 +00:37:09,620 --> 00:37:11,800 +many-to-many communication, this is the main goal + +575 +00:37:11,800 --> 00:37:13,980 +that we use in the data bus You want your + +576 +00:37:13,980 --> 00:37:16,660 +components to know nothing about each other You + +577 +00:37:16,660 --> 00:37:18,480 +don't want to make complications that this must + +578 +00:37:18,480 --> 00:37:21,780 +have a reference from the three monkeys and so on + +579 +00:37:21,780 --> 00:37:24,140 +This is how we will enter into a big complexity of + +580 +00:37:24,140 --> 00:37:26,400 +the code All of them send each other without + +581 +00:37:26,400 --> 00:37:28,460 +knowing anything about each other They only know + +582 +00:37:28,460 --> 00:37:33,650 +about the data bus Because this is the scenario in + +583 +00:37:33,650 --> 00:37:35,810 +which we apply the data bus. This is the bus. + +584 +00:37:36,250 --> 00:37:39,130 +Because this application, for example, supports a + +585 +00:37:39,130 --> 00:37:41,870 +shopping website. Okay? If you find a shopping + +586 +00:37:41,870 --> 00:37:43,070 +website, this is the shopping application. From + +587 +00:37:43,070 --> 00:37:45,830 +here, the client chooses the product. Of course, + +588 +00:37:45,970 --> 00:37:48,470 +we have a database where we record the records. + +589 +00:37:48,550 --> 00:37:50,090 +What was sold, what was published, what orders + +590 +00:37:50,090 --> 00:37:52,550 +were made. We have an inventory system responsible + +591 +00:37:52,550 --> 00:37:54,970 +for the warehouse and the elements in it. How much + +592 +00:37:54,970 --> 00:37:56,170 +remained in the warehouse after it was published + +593 +00:37:56,170 --> 00:37:59,180 +and so on. I have a financial reporting department + +594 +00:37:59,180 --> 00:38:03,540 +that sends invoices, reports, and performs the + +595 +00:38:03,540 --> 00:38:06,340 +purchase and sale process. I also have a component + +596 +00:38:06,340 --> 00:38:09,800 +responsible for sending emails. Because in an + +597 +00:38:09,800 --> 00:38:12,080 +application like this, these components are + +598 +00:38:12,080 --> 00:38:15,040 +supposed to send and receive from each other. That + +599 +00:38:15,040 --> 00:38:17,000 +is, any order process that takes place here in the + +600 +00:38:17,000 --> 00:38:19,940 +application, there should be an update in the + +601 +00:38:19,940 --> 00:38:22,520 +warehouse to reduce the existing quantity. There + +602 +00:38:22,520 --> 00:38:24,560 +should be an update or a message to the financial + +603 +00:38:24,560 --> 00:38:26,160 +department that there is a new order for work. + +604 +00:38:27,210 --> 00:38:29,730 +There should be a change in the records on the + +605 +00:38:29,730 --> 00:38:32,710 +database Notifications should be sent to the + +606 +00:38:32,710 --> 00:38:35,310 +financial department and to the user that you made + +607 +00:38:35,310 --> 00:38:37,490 +an order, and so on And the same thing happens if + +608 +00:38:37,490 --> 00:38:39,890 +the bill is withdrawn from the financial + +609 +00:38:39,890 --> 00:38:42,720 +department It is supposed to send a message to the + +610 +00:38:42,720 --> 00:38:44,720 +email notifications so that it sends an email to + +611 +00:38:44,720 --> 00:38:47,420 +whom? To the user. It is supposed to send a + +612 +00:38:47,420 --> 00:38:49,340 +message to the application to update the interface + +613 +00:38:49,340 --> 00:38:51,960 +and send a message through the application. It is + +614 +00:38:51,960 --> 00:38:54,620 +supposed to update where? In the database. So + +615 +00:38:54,620 --> 00:38:56,760 +anyone who changes it is supposed to notify whom? + +616 +00:38:57,240 --> 00:38:59,540 +Others. So the simplest way, since everything is + +617 +00:38:59,540 --> 00:39:01,300 +supposed to communicate with everything, is to + +618 +00:39:01,300 --> 00:39:06,520 +make an email to the data bus. In the last slide, + +619 +00:39:06,580 --> 00:39:11,740 +we seeThe shape of the UML diagram of the data bus + +620 +00:39:11,740 --> 00:39:16,320 +pattern means that this drawing applies an example + +621 +00:39:16,320 --> 00:39:19,780 +to the data bus pattern. Let's follow it. Because + +622 +00:39:19,780 --> 00:39:22,200 +where is the class of the data bus? Here it is. Do + +623 +00:39:22,200 --> 00:39:26,040 +you see it? This is the class of the data bus.This + +624 +00:39:26,040 --> 00:39:31,760 +database class is made as a singleton, it is an + +625 +00:39:31,760 --> 00:39:36,880 +instance of a database and it is private + +626 +00:39:42,210 --> 00:39:44,610 +this is the constructor, but this constructor is + +627 +00:39:44,610 --> 00:39:49,830 +supposed to be private to apply singleton and this + +628 +00:39:49,830 --> 00:39:53,330 +is a delegate instance which returns a data bus + +629 +00:39:53,330 --> 00:39:59,710 +and then it has a list of membersIt's like a list + +630 +00:39:59,710 --> 00:40:03,490 +of subscribers, but it's called member here And + +631 +00:40:03,490 --> 00:40:08,050 +member is an interface, okay? Of course, we made + +632 +00:40:08,050 --> 00:40:11,310 +the interface inside the class Of course, in UML, + +633 +00:40:11,470 --> 00:40:13,830 +when you put a class inside another class, you + +634 +00:40:13,830 --> 00:40:15,830 +don't make a square inside another square, okay? + +635 +00:40:16,010 --> 00:40:18,090 +You have to make it outside, okay? So this + +636 +00:40:18,090 --> 00:40:20,470 +interface is called member, I wrote on it, this is + +637 +00:40:20,470 --> 00:40:23,610 +an interfaceand this method which I called message + +638 +00:40:23,610 --> 00:40:29,090 +received is called asset and I made a class called + +639 +00:40:29,090 --> 00:40:35,350 +bus message and I called it data type we will come + +640 +00:40:35,350 --> 00:40:37,510 +back to this data type, let's go back to the data + +641 +00:40:37,510 --> 00:40:42,470 +bus, it makes listeners I made a list, I made it a + +642 +00:40:42,470 --> 00:40:44,770 +set. What is the difference between a list and a + +643 +00:40:44,770 --> 00:40:48,070 +set? A set takes repetition. Of course, this is + +644 +00:40:48,070 --> 00:40:49,930 +easier. Instead of going to check if the guest is + +645 +00:40:49,930 --> 00:40:53,190 +not there, I use the set. If he is there, I + +646 +00:40:53,190 --> 00:40:57,110 +replace him. Okay? And then I also made a method + +647 +00:40:57,110 --> 00:41:00,310 +called subscribe and unsubscribe. It takes a loop. + +648 +00:41:00,790 --> 00:41:04,630 +And I also made a method called publish. Which is + +649 +00:41:04,630 --> 00:41:06,790 +the same method that I made, which receives a + +650 +00:41:06,790 --> 00:41:11,390 +message and distributes it to everyone. Now these + +651 +00:41:11,390 --> 00:41:14,550 +two are the elements that need to communicate with + +652 +00:41:14,550 --> 00:41:17,330 +each other which is represented in our application + +653 +00:41:17,330 --> 00:41:21,770 +ABCD This one is called counter member and this + +654 +00:41:21,770 --> 00:41:25,330 +one is called status member and both of them made + +655 +00:41:25,330 --> 00:41:29,230 +an implement for the member and these are + +656 +00:41:29,230 --> 00:41:32,070 +attributes and methods inside each one has its own + +657 +00:41:32,070 --> 00:41:36,690 +state and information about it Now let's see what + +658 +00:41:36,690 --> 00:41:39,950 +are these things in them, these are messagesDid + +659 +00:41:39,950 --> 00:41:42,550 +you notice that I sent you a buzz message? Okay, + +660 +00:41:42,550 --> 00:41:44,670 +and then she said that this message can be + +661 +00:41:44,670 --> 00:41:49,130 +classified into what types, such as finance + +662 +00:41:49,130 --> 00:41:52,510 +message, human resources message, what is the + +663 +00:41:52,510 --> 00:41:53,910 +purpose of classifying the message, so that the + +664 +00:41:53,910 --> 00:41:56,610 +receiver can see what type of message it is and + +665 +00:41:56,610 --> 00:41:59,570 +see if it has a meaning or not, okay? Because he + +666 +00:41:59,570 --> 00:42:02,690 +made the same idea, I made a class and then I made + +667 +00:42:02,690 --> 00:42:06,470 +an exam from it, the main message is called data + +668 +00:42:06,470 --> 00:42:09,810 +type, and what type is it? Interface, okay, so he + +669 +00:42:09,810 --> 00:42:14,280 +made an interfaceSo he made a method called + +670 +00:42:14,280 --> 00:42:17,520 +getDatabase and setDatabase Of course, the message + +671 +00:42:17,520 --> 00:42:20,460 +that I made in my example did not send the + +672 +00:42:20,460 --> 00:42:25,260 +database I sent data and sender It was different, + +673 +00:42:25,420 --> 00:42:30,610 +it sent the whole database You are free to decide + +674 +00:42:30,610 --> 00:42:33,110 +what you want to send. I prefer that you send the + +675 +00:42:33,110 --> 00:42:36,110 +data in a basic way and you can put the password. + +676 +00:42:36,530 --> 00:42:38,830 +You must send the password so that the message + +677 +00:42:38,830 --> 00:42:41,110 +does not return to the password again. It is not + +678 +00:42:41,110 --> 00:42:45,510 +just the data to publish. He wants to see who sent + +679 +00:42:45,510 --> 00:42:46,670 +the message to him so that the message does not + +680 +00:42:46,670 --> 00:42:49,490 +return to him again. So the password must be put + +681 +00:42:49,490 --> 00:42:52,280 +in it. Because it is in his application, it + +682 +00:42:52,280 --> 00:42:54,480 +follows another way, it is not a problem Because + +683 +00:42:54,480 --> 00:42:56,580 +the data type interface made of it an abstract + +684 +00:42:56,580 --> 00:43:01,100 +class called AbstractDataType + +685 +00:43:01,100 --> 00:43:07,400 +And this AbstractDataType made of it subclasses, + +686 +00:43:07,460 --> 00:43:09,220 +which are the messages Called, for example, + +687 +00:43:09,320 --> 00:43:13,660 +MessageData, which takes this string This, for + +688 +00:43:13,660 --> 00:43:16,920 +example, Starting and Stopping Data takes a date, + +689 +00:43:17,160 --> 00:43:22,000 +a timeThis is like an attribute that is enclosed + +690 +00:43:22,000 --> 00:43:24,200 +inside a message. This is the content of the + +691 +00:43:24,200 --> 00:43:27,300 +message. Meaning that all of these are types of + +692 +00:43:27,300 --> 00:43:31,340 +messages and each one has a different content. And + +693 +00:43:31,340 --> 00:43:35,400 +these are the constructors and getters. They + +694 +00:43:35,400 --> 00:43:38,240 +extended this. Because in the example I made, it + +695 +00:43:38,240 --> 00:43:39,320 +is simpler than that. I did not make this + +696 +00:43:39,320 --> 00:43:42,740 +interface. I immediately made what?I made a class + +697 +00:43:42,740 --> 00:43:48,540 +and made subclasses from it, this is optional, you + +698 +00:43:48,540 --> 00:43:52,960 +can arrange it however you want, but the basis of + +699 +00:43:52,960 --> 00:43:57,680 +this diagram is the class of the database and the + +700 +00:43:57,680 --> 00:44:02,220 +member interfaceAnd the message class, all of them + +701 +00:44:02,220 --> 00:44:09,520 +I made them in one file And these + +702 +00:44:09,520 --> 00:44:12,460 +are the subscribers, I named them from outside + +703 +00:44:12,460 --> 00:44:14,600 +Because this is the application class, which is + +704 +00:44:14,600 --> 00:44:16,780 +like the main class that I made, in which I + +705 +00:44:16,780 --> 00:44:19,500 +created all the objects and made them send each + +706 +00:44:19,500 --> 00:44:23,310 +otherThis example is clear, guys. The importance + +707 +00:44:23,310 --> 00:44:25,370 +of the data bus is clear. It is similar to the + +708 +00:44:25,370 --> 00:44:28,450 +observer, but as I said, the summary is used in + +709 +00:44:28,450 --> 00:44:32,090 +the case of many-to-many. Everyone wants to + +710 +00:44:32,090 --> 00:44:34,010 +communicate with everyone. The application of the + +711 +00:44:34,010 --> 00:44:36,610 +observer is complicated, but the data bus, because + +712 +00:44:36,610 --> 00:44:38,150 +it is an elliptical element in the middle, + +713 +00:44:38,550 --> 00:44:40,930 +independent of them, becomes easy. Send to the + +714 +00:44:40,930 --> 00:44:43,410 +bus, and the bus sends the message to everyone. + +715 +00:44:43,830 --> 00:44:46,420 +Because the receiver determines he will receive + +716 +00:44:46,420 --> 00:44:48,960 +the message or not based on the sender or based on + +717 +00:44:48,960 --> 00:44:52,080 +the type of message that you can specify as you + +718 +00:44:52,080 --> 00:44:56,600 +want okay, calm down guys okay, I also downloaded + +719 +00:44:56,600 --> 00:45:02,440 +yesterday, it's a must, okay? on the data bus and + +720 +00:45:02,440 --> 00:45:05,440 +on the observer, I uploaded a video to the + +721 +00:45:05,440 --> 00:45:08,450 +observerIt will show you how the required things + +722 +00:45:08,450 --> 00:45:12,890 +look like in the course The database explanation + +723 +00:45:12,890 --> 00:45:16,890 +of the course is available at the end of the + +724 +00:45:16,890 --> 00:45:19,250 +recorded lecture on Moodle It's not going to be + +725 +00:45:19,250 --> 00:45:21,450 +available on the channel It's going to be + +726 +00:45:21,450 --> 00:45:23,010 +available on Moodle, not on Moodle, there are also + +727 +00:45:23,010 --> 00:45:25,290 +links to the lectures It's been recorded since the + +728 +00:45:25,290 --> 00:45:28,090 +days of Corona So you go to the end of the + +729 +00:45:28,090 --> 00:45:31,360 +lecture, you will find an explanation questionThe + +730 +00:45:31,360 --> 00:45:33,140 +duty that is required for the part of the data + +731 +00:45:33,140 --> 00:45:35,700 +bus. So it is two branches of the question. One + +732 +00:45:35,700 --> 00:45:38,520 +for the observer and one for whom? For the data + +733 +00:45:38,520 --> 00:45:42,840 +bus. Yes, seven days. + +734 +00:45:45,290 --> 00:45:47,170 +It's not going to beat you. No, it's by mistake, + +735 +00:45:47,270 --> 00:45:49,670 +okay? Actually, the data bus, did you see the + +736 +00:45:49,670 --> 00:45:52,250 +class that I made? Take it and put it in the + +737 +00:45:52,250 --> 00:45:54,250 +application, it will work. That's it, this data + +738 +00:45:54,250 --> 00:45:57,690 +bus, this class that I made, you can use it in any + +739 +00:45:57,690 --> 00:45:59,450 +application. I mean, it's not going to beat you. + +740 +00:46:00,370 --> 00:46:01,150 +Okay, guys? + +741 +00:46:04,130 --> 00:46:05,650 +Yes, the application of the data bus and the + +742 +00:46:05,650 --> 00:46:08,630 +observer, but on the application of GUI, okay? + +743 +00:46:11,050 --> 00:46:12,130 +Okay, thank you guys. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V9U3r9hm7p8.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V9U3r9hm7p8.srt new file mode 100644 index 0000000000000000000000000000000000000000..5f87565dd4dff483c6aad53a8c2c69fc8f9b3694 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V9U3r9hm7p8.srt @@ -0,0 +1,3045 @@ + +1 +00:00:05,300 --> 00:00:06,680 +Okay, in the name of God, Most Gracious, Most + +2 +00:00:06,680 --> 00:00:10,560 +Merciful. Today, God willing, guys, we will + +3 +00:00:10,560 --> 00:00:13,460 +continue the last lecture in reviewing the + +4 +00:00:13,460 --> 00:00:15,740 +concepts of object-oriented programming. In the + +5 +00:00:15,740 --> 00:00:18,740 +previous lectures, we reviewed the basic concepts, + +6 +00:00:18,840 --> 00:00:23,520 +the concept of class, object, inheritance, and how + +7 +00:00:23,520 --> 00:00:25,540 +when I have classes that participate in certain + +8 +00:00:25,540 --> 00:00:27,520 +things, we make a superclass, collect these + +9 +00:00:27,520 --> 00:00:29,660 +common things, then we make an extend out of them + +10 +00:00:29,660 --> 00:00:34,240 +to collect repetitions. We understood what is the + +11 +00:00:34,240 --> 00:00:37,400 +relation between constructor and subclass. We also + +12 +00:00:37,400 --> 00:00:40,760 +understood the concept of polymorphism and how to + +13 +00:00:40,760 --> 00:00:43,120 +deal with subclasses that are subclasses of the + +14 +00:00:43,120 --> 00:00:46,240 +father type. As Mohedab told me that I can deal + +15 +00:00:46,240 --> 00:00:48,720 +with subclasses that are full-time employees and + +16 +00:00:48,720 --> 00:00:51,560 +part-time employees that are subclasses of the + +17 +00:00:51,560 --> 00:00:53,620 +father type, and put them in one array and make a + +18 +00:00:53,620 --> 00:00:57,280 +loop on them. We also looked at the concept of + +19 +00:00:57,280 --> 00:01:00,700 +Abstract Method and Abstract Class. We found that + +20 +00:01:00,700 --> 00:01:02,640 +it is true that when you deal with a type of child + +21 +00:01:02,640 --> 00:01:04,600 +from a type of father, it is a good thing because + +22 +00:01:04,600 --> 00:01:07,300 +it provides you with a list of arrays and a loop, + +23 +00:01:07,300 --> 00:01:10,780 +but it has a negative aspect, which is that you + +24 +00:01:10,780 --> 00:01:12,760 +will only see the things that are present in the + +25 +00:01:12,760 --> 00:01:15,880 +father. So, we decided to create an Abstract Method + +26 +00:01:15,880 --> 00:01:21,080 +to see it in the father, but implement it in the + +27 +00:01:21,080 --> 00:01:25,570 +child. And we got to know the concept that when you + +28 +00:01:25,570 --> 00:01:28,510 +do an abstract method, each class has to be + +29 +00:01:28,510 --> 00:01:31,870 +abstract. So, the abstract class is a class that + +30 +00:01:31,870 --> 00:01:34,030 +includes implementation and common things, and + +31 +00:01:34,030 --> 00:01:36,970 +also includes methods that are empty, abstract, so + +32 +00:01:36,970 --> 00:01:42,200 +that children can implement them. Today, God + +33 +00:01:42,200 --> 00:01:44,200 +willing, we will deal with the last topic in + +34 +00:01:44,200 --> 00:01:46,000 +object-oriented programming, which is the topic of + +35 +00:01:46,000 --> 00:01:49,840 +interface, okay? What is the interface in object + +36 +00:01:49,840 --> 00:01:52,180 +-oriented programming? Who reminds us? Who knows + +37 +00:01:52,180 --> 00:01:55,520 +what the interface is? They are circuits without a + +38 +00:01:55,520 --> 00:02:00,440 +body. Circuits, I mean, circuits are abstract, + +39 +00:02:00,600 --> 00:02:03,940 +they have no implementation, okay? And the + +40 +00:02:03,940 --> 00:02:09,630 +variable must have a final state. Okay, so what is + +41 +00:02:09,630 --> 00:02:12,210 +the interface? What do we need it for? You need to + +42 +00:02:12,210 --> 00:02:16,210 +create an override for the plugin that you want to + +43 +00:02:16,210 --> 00:02:20,970 +use. Okay, also, in the practical applications, when + +44 +00:02:20,970 --> 00:02:23,650 +programming, do we need to create an interface? + +45 +00:02:24,270 --> 00:02:28,010 +Can we live without an interface? No. No, why not? + +46 +00:02:29,110 --> 00:02:31,670 +You know the answer is no, so why not? If you + +47 +00:02:31,670 --> 00:02:33,090 +think about it, there are common domains. How? + +48 +00:02:33,410 --> 00:02:37,880 +Common domains between what? What if I didn't + +49 +00:02:37,880 --> 00:02:39,340 +write it? What if I didn't write it? What if I + +50 +00:02:39,340 --> 00:02:45,600 +didn't write it? What if + +51 +00:02:45,600 --> 00:02:50,080 +I didn't write it? What if I didn't write it? What + +52 +00:02:50,080 --> 00:02:56,140 +if I didn't write it? What if I didn't write it? + +53 +00:02:57,040 --> 00:02:58,260 +What if I didn't write it? What if I didn't write + +54 +00:02:58,260 --> 00:02:58,620 +it? What if I didn't write it? What if I didn't + +55 +00:02:58,620 --> 00:03:00,260 +write it? What if I didn't write it? What if I + +56 +00:03:00,260 --> 00:03:00,560 +didn't write it? What if I didn't write it? What + +57 +00:03:00,740 --> 00:03:01,660 +What if I didn't write it? What if I didn't write + +58 +00:03:01,660 --> 00:03:02,180 +it? What if I didn't write it? What if I didn't + +59 +00:03:02,180 --> 00:03:02,220 +didn't write it? What if I didn't write it? What + +60 +00:03:02,220 --> 00:03:02,320 +What if I didn't write it? What if I didn't write + +61 +00:03:15,780 --> 00:03:22,940 +If you don't make + +62 +00:03:22,940 --> 00:03:23,920 +the interface, + +63 +00:03:31,220 --> 00:03:33,640 +The user should have more rights than he should + +64 +00:03:33,640 --> 00:03:35,380 +have. No, it has nothing to do with rights, + +65 +00:03:35,600 --> 00:03:38,680 +security and all that, yes. In the interface, we + +66 +00:03:38,680 --> 00:03:40,500 +don't have to know what the program is doing, + +67 +00:03:40,660 --> 00:03:46,860 +there are tools inside it that we know what to do + +68 +00:03:46,860 --> 00:03:51,460 +with them. Okay, so when I implement for the + +69 +00:03:51,460 --> 00:03:54,340 +interface, it forces me or determines what tools I + +70 +00:03:54,340 --> 00:03:57,520 +have to implement. Also, this is the main benefit + +71 +00:04:01,420 --> 00:04:01,820 +How? + +72 +00:04:08,580 --> 00:04:10,720 +No, it's not clear to you what the interface is. + +73 +00:04:10,820 --> 00:04:12,380 +Okay, pay attention. To explain what the concept + +74 +00:04:12,380 --> 00:04:14,600 +of the interface is, the best way is to give + +75 +00:04:14,600 --> 00:04:18,340 +practical examples. That is, we are involved in + +76 +00:04:18,340 --> 00:04:20,220 +implementation. Okay? And I will explain two + +77 +00:04:20,220 --> 00:04:21,560 +examples. Pay attention with me because the + +78 +00:04:21,560 --> 00:04:24,640 +lecture time is enough for these two examples. The + +79 +00:04:24,640 --> 00:04:26,960 +first example, suppose that you are asked to make + +80 +00:04:26,960 --> 00:04:30,960 +a program. It does task scheduling. What is task + +81 +00:04:30,960 --> 00:04:35,020 +scheduling? Scheduling of tasks. There are certain + +82 +00:04:35,020 --> 00:04:39,240 +tasks that must be carried out at one o'clock at + +83 +00:04:39,240 --> 00:04:43,100 +night. Among these tasks, for example, we want to + +84 +00:04:43,100 --> 00:04:47,700 +do backup. Okay? It takes certain files and copies + +85 +00:04:47,700 --> 00:04:51,160 +them and saves them in a certain drive. It also + +86 +00:04:51,160 --> 00:04:55,090 +wants to do security checks. It turns on the + +87 +00:04:55,090 --> 00:04:59,470 +antivirus, checks the security, ports, etc. It + +88 +00:04:59,470 --> 00:05:01,790 +wants to do a third task, which is to clean the + +89 +00:05:01,790 --> 00:05:04,350 +disk space. There is a temporary file that is + +90 +00:05:04,350 --> 00:05:06,770 +collected during the day on the server, and we + +91 +00:05:06,770 --> 00:05:09,130 +want to delete it. Because these are different + +92 +00:05:09,130 --> 00:05:15,380 +tasks. Each task has specific attributes such as + +93 +00:05:15,380 --> 00:05:24,680 +backup, security, IP, etc. Each task has specific + +94 +00:05:24,680 --> 00:05:28,220 +attributes and + +95 +00:05:28,220 --> 00:05:33,290 +steps. These tasks, the first step you want to do + +96 +00:05:33,290 --> 00:05:36,770 +is to do the task, right? Your manager told you to + +97 +00:05:36,770 --> 00:05:39,110 +do these tasks, so you want to program the + +98 +00:05:39,110 --> 00:05:41,230 +scheduling task, you want to program the backup + +99 +00:05:41,230 --> 00:05:43,530 +task, you want to program the security task, right + +100 +00:05:43,530 --> 00:05:45,850 +or not, and then execute them. This is how you + +101 +00:05:45,850 --> 00:05:48,590 +program them, because when we learn, when we + +102 +00:05:48,590 --> 00:05:50,750 +think, we think about what the parts in the + +103 +00:05:50,750 --> 00:05:53,390 +program are, and if the parts or entities have + +104 +00:05:53,390 --> 00:05:54,850 +multiple data, what do you represent them with? + +105 +00:05:55,890 --> 00:05:58,770 +With a class, then we have a task called backup + +106 +00:05:58,770 --> 00:06:02,330 +task. It has information about it and steps about + +107 +00:06:02,330 --> 00:06:06,430 +it, and you have a task called security checks. It + +108 +00:06:06,430 --> 00:06:09,170 +also has attributes and steps. It represents each + +109 +00:06:09,170 --> 00:06:13,170 +one in a class. Let's do something similar to this + +110 +00:06:13,170 --> 00:06:18,490 +task to see if we can reach the end. I made a new + +111 +00:06:18,490 --> 00:06:23,450 +class, and I want to call it backup task. + +112 +00:06:26,560 --> 00:06:29,160 +There are attributes specific to backup. What path + +113 +00:06:29,160 --> 00:06:30,740 +do you want to use for backup? What kind of files + +114 +00:06:30,740 --> 00:06:33,360 +do you want to take from where? We are not going + +115 +00:06:33,360 --> 00:06:37,720 +to write a detailed code. We imagine a program and + +116 +00:06:37,720 --> 00:06:42,100 +the idea is in its structure. For example, there + +117 +00:06:42,100 --> 00:06:48,000 +is a method here, public void doBackup, or run, or + +118 +00:06:48,000 --> 00:06:48,600 +execute. + +119 +00:06:51,160 --> 00:06:53,840 +the code. Here are the backup steps, from here to + +120 +00:06:53,840 --> 00:06:56,400 +here, but what do we do? We do something like + +121 +00:06:56,400 --> 00:07:02,040 +this, fake, for example, performing backup. + +122 +00:07:04,860 --> 00:07:08,180 +Okay, guys, can you imagine what we do? Can you + +123 +00:07:08,180 --> 00:07:13,440 +imagine, or not? What do you imagine? Imagine this + +124 +00:07:13,440 --> 00:07:17,160 +is a task, a task that does backup. I didn't write + +125 +00:07:17,160 --> 00:07:18,260 +anything. I don't want to write anything that has + +126 +00:07:18,260 --> 00:07:20,060 +nothing to do with the backup code. These are + +127 +00:07:20,060 --> 00:07:23,480 +steps. You remove an object from this. You say + +128 +00:07:23,480 --> 00:07:26,060 +this is a backup, and it does the backup for you. + +129 +00:07:26,220 --> 00:07:28,600 +Okay? That's how we're going to stay in the whole + +130 +00:07:28,600 --> 00:07:29,520 +material. We're not going to make a complete + +131 +00:07:29,520 --> 00:07:33,260 +program. But, you will find this scenario in the + +132 +00:07:33,260 --> 00:07:35,580 +actual programs. And there are attributes related + +133 +00:07:35,580 --> 00:07:37,340 +to it. For example, you need to give it the path + +134 +00:07:37,340 --> 00:07:39,160 +location, what files need to be downloaded, and so + +135 +00:07:39,160 --> 00:07:41,940 +on. What we're going to do now is another task. + +136 +00:07:44,360 --> 00:07:50,980 +Its name is Security Checks Task. When we run this + +137 +00:07:50,980 --> 00:07:55,040 +task, what does it do? It turns on the antivirus, + +138 +00:07:55,160 --> 00:07:58,380 +for example. It checks if the ports are closed or + +139 +00:07:58,380 --> 00:08:00,360 +not. It checks if there are hacks, or not. There + +140 +00:08:00,360 --> 00:08:01,720 +are many operations. It has nothing to do with + +141 +00:08:01,720 --> 00:08:04,300 +these operations. Okay? It has its own attributes. + +142 +00:08:04,860 --> 00:08:07,100 +But, there is a method here. Its name is, for + +143 +00:08:07,100 --> 00:08:11,260 +example, DoSecurityChecks. + +144 +00:08:13,170 --> 00:08:15,230 +It is executed by doing all the steps we want to + +145 +00:08:15,230 --> 00:08:18,090 +get rid of it by printing a sentence called + +146 +00:08:18,090 --> 00:08:26,710 +"Perform security checks." Okay, + +147 +00:08:26,710 --> 00:08:30,470 +guys, and so on, you do the tasks required from you. + +148 +00:08:30,470 --> 00:08:34,490 +Last one, for example, we do a class called clean + +149 +00:08:34,490 --> 00:08:39,910 +disk task. You delete the temporary files and + +150 +00:08:39,910 --> 00:08:41,150 +others also. It has + +151 +00:08:44,970 --> 00:08:48,650 +cleanDisk(). This is the method it executes system + +152 +00:08:48,650 --> 00:08:58,390 +.out.println() cleanDisk(). Okay, + +153 +00:08:58,530 --> 00:09:00,970 +these are different tasks, each task has its own + +154 +00:09:00,970 --> 00:09:05,630 +attributes and steps. Does anyone collect them? No, + +155 +00:09:05,630 --> 00:09:07,390 +one collects them. So, I need a superclass for + +156 +00:09:07,390 --> 00:09:11,090 +them? I don't need a superclass, okay. I came to the + +157 +00:09:11,090 --> 00:09:11,590 +main method. + +158 +00:09:15,040 --> 00:09:19,060 +For example, I came here and made a class for + +159 +00:09:19,060 --> 00:09:25,860 +example, task main. We + +160 +00:09:25,860 --> 00:09:27,540 +made classes, but we didn't benefit from them, + +161 +00:09:27,660 --> 00:09:38,040 +right? public static void main string. Okay, + +162 +00:09:38,080 --> 00:09:39,920 +did you get it? What do you want to do? In order + +163 +00:09:39,920 --> 00:09:42,980 +to execute each process. What do you want to do? Do + +164 +00:09:42,980 --> 00:09:45,370 +you want to extract the object? from the class, and + +165 +00:09:45,370 --> 00:09:47,970 +you get the existing data. For example, the first + +166 +00:09:47,970 --> 00:09:56,390 +data is backup task. IT1 new backup task, and you + +167 +00:09:56,390 --> 00:10:01,270 +say T1.do backup, because we need the second task, + +168 +00:10:01,270 --> 00:10:06,750 +which is security checks + +169 +00:10:06,750 --> 00:10:07,310 +tasks + +170 +00:10:11,820 --> 00:10:19,360 +new security checks task, and you say to T2, do + +171 +00:10:19,360 --> 00:10:24,500 +security checks. The third one, which is clean disk + +172 +00:10:24,500 --> 00:10:38,580 +task, okay. + +173 +00:10:38,580 --> 00:10:42,620 +Guys, programming tasks and then implementing them + +174 +00:10:42,620 --> 00:10:46,440 +Okay, now your manager tells you to clean a new task. + +175 +00:10:46,440 --> 00:10:49,460 +Okay, so you want to create a new class, program it + +176 +00:10:49,460 --> 00:10:52,680 +and then tell him to implement it. Okay, now, the + +177 +00:10:52,680 --> 00:10:54,940 +program grew with you, we don't do tasks one or + +178 +00:10:54,940 --> 00:10:58,180 +two times, you find in big programs that run 20-30 + +179 +00:10:58,180 --> 00:11:00,560 +tasks, for example, at one o'clock at night, we + +180 +00:11:00,560 --> 00:11:05,640 +tell them to do what, they all run. Okay? Now if I + +181 +00:11:05,640 --> 00:11:08,140 +want each one of us to create an object and + +182 +00:11:08,140 --> 00:11:10,200 +implement it like that, it's not practical. We + +183 +00:11:10,200 --> 00:11:12,920 +want something that I have, since I have a large + +184 +00:11:12,920 --> 00:11:15,760 +number of tasks, okay? We create objects from + +185 +00:11:15,760 --> 00:11:19,240 +them, and we want to put them in a list, to tell + +186 +00:11:19,240 --> 00:11:21,780 +them what to do, go around them, and implement, + +187 +00:11:22,520 --> 00:11:26,870 +regardless of what task is available. And this + +188 +00:11:26,870 --> 00:11:30,090 +will help me, because tomorrow, when I want to + +189 +00:11:30,090 --> 00:11:32,650 +program a new task, all I need to do is create an + +190 +00:11:32,650 --> 00:11:36,270 +object and add it to the list. It will create a + +191 +00:11:36,270 --> 00:11:40,790 +loop and execute all the tasks. Now my question + +192 +00:11:40,790 --> 00:11:46,310 +is, can I put all of them in one array? No. How + +193 +00:11:46,310 --> 00:11:47,5 + +223 +00:13:50,570 --> 00:14:04,790 +and I can go to tasks and say add T1 to T3 + +224 +00:14:04,790 --> 00:14:08,570 +if I have more than one, I add it because the + +225 +00:14:08,570 --> 00:14:15,050 +advantage when I say to each task T is present + +226 +00:14:15,050 --> 00:14:20,400 +where? task I want to run it I want to say T dot, + +227 +00:14:21,380 --> 00:14:25,180 +because I found a problem. There is nothing. Right + +228 +00:14:25,180 --> 00:14:28,920 +or wrong? Because one person says that there is + +229 +00:14:28,920 --> 00:14:31,760 +backup and there is no backup. And there is no + +230 +00:14:31,760 --> 00:14:34,700 +security checks. And there is a clean disk. But + +231 +00:14:34,700 --> 00:14:37,440 +all of these are not visible. Why? The same + +232 +00:14:37,440 --> 00:14:39,480 +problem that I told you last time has now become a + +233 +00:14:39,480 --> 00:14:43,760 +kind of up. Right or not? So how do we solve this + +234 +00:14:43,760 --> 00:14:49,280 +problem? We took it Make an abstract method Here + +235 +00:14:49,280 --> 00:14:55,800 +public void execute And this we make it what? + +236 +00:14:59,580 --> 00:15:02,780 +Abstract And since this is abstract in the class, + +237 +00:15:03,500 --> 00:15:08,510 +it became abstract Why did I use this method? So + +238 +00:15:08,510 --> 00:15:12,790 +that I can use the main method to call each task + +239 +00:15:12,790 --> 00:15:16,810 +Execute And since this method was added here, we + +240 +00:15:16,810 --> 00:15:20,330 +have to implement it where? In each block. Each + +241 +00:15:20,330 --> 00:15:22,850 +one of them has to be implemented in the way they + +242 +00:15:22,850 --> 00:15:25,990 +want But in the end, what I see is that each one + +243 +00:15:25,990 --> 00:15:29,280 +of them is a task and I call it Executeand + +244 +00:15:29,280 --> 00:15:33,120 +actually it executes based on the subclass type + +245 +00:15:33,120 --> 00:15:35,640 +did you notice that as long as I left this + +246 +00:15:35,640 --> 00:15:38,440 +abstract and this abstract method they hit all the + +247 +00:15:38,440 --> 00:15:43,480 +subclasses why? because as long as you did + +248 +00:15:43,480 --> 00:15:45,160 +implement there is a code that you need to + +249 +00:15:45,160 --> 00:15:50,340 +complete what is this execute? what do we do in + +250 +00:15:50,340 --> 00:15:54,680 +this execute? the 7th is do backup that's it right + +251 +00:15:54,680 --> 00:15:56,860 +or not guys? this is do backup + +252 +00:15:59,490 --> 00:16:15,550 +And in the security checks And + +253 +00:16:15,550 --> 00:16:24,530 +this + +254 +00:16:24,530 --> 00:16:29,970 +is clear disk. All of them have an execute, but + +255 +00:16:29,970 --> 00:16:33,390 +each execute does something different. Now, in the + +256 +00:16:33,390 --> 00:16:38,190 +main, I can click on all of them and tell it to + +257 +00:16:38,190 --> 00:16:42,530 +execute. It will come out in front of me. Okay? + +258 +00:16:42,830 --> 00:16:45,750 +Now, when it comes to execute, regardless of what + +259 +00:16:45,750 --> 00:16:47,910 +kind of task it is, you just extract an object + +260 +00:16:47,910 --> 00:16:50,610 +from it and put it in this list. This is the code + +261 +00:16:50,610 --> 00:16:53,720 +of production or execution. it will not disappear + +262 +00:16:53,720 --> 00:16:56,640 +because I don't even have to remove the execution + +263 +00:16:56,640 --> 00:17:01,000 +here I want to make the loop execute if I add a + +264 +00:17:01,000 --> 00:17:03,000 +new task after that I don't have to create an + +265 +00:17:03,000 --> 00:17:05,520 +object from it and put it in the list but the code + +266 +00:17:05,520 --> 00:17:12,500 +of this execution remains fixed, you see, it + +267 +00:17:12,500 --> 00:17:14,600 +executes them, right or not? they worked on the + +268 +00:17:14,600 --> 00:17:17,280 +three tasks and executed them each execution is + +269 +00:17:17,280 --> 00:17:20,060 +different I will tell you where is the interface in + +270 +00:17:20,060 --> 00:17:24,660 +this topic The interface is here Come to this task + +271 +00:17:24,660 --> 00:17:29,560 +Did you find that this class does not have any + +272 +00:17:29,560 --> 00:17:32,260 +code shared between them? It only has one abstract + +273 +00:17:32,260 --> 00:17:35,960 +method I tell the class if it does not have any + +274 +00:17:35,960 --> 00:17:38,860 +code implementation There is no need to make it an + +275 +00:17:38,860 --> 00:17:41,620 +abstract class Bring it to what? To the interface + +276 +00:17:41,620 --> 00:17:46,050 +That is, if I find that I made the class It doesn't + +277 +00:17:46,050 --> 00:17:48,650 +have anything in common between two classes. It + +278 +00:17:48,650 --> 00:17:51,230 +doesn't have any implementation. You can always + +279 +00:17:51,230 --> 00:17:54,710 +turn it into an interface. An interface is an + +280 +00:17:54,710 --> 00:17:57,690 +abstract class with all abstract methods. + +281 +00:17:59,610 --> 00:18:01,990 +But no, for example, in the employee, there are + +282 +00:18:01,990 --> 00:18:04,890 +shared information such as ID, name and job title, + +283 +00:18:05,210 --> 00:18:07,650 +right or wrong? Usually, when do we use abstract + +284 +00:18:07,650 --> 00:18:11,650 +class? When there are shared things and different + +285 +00:18:11,650 --> 00:18:14,510 +things. The shared things are kept in the class + +286 +00:18:14,510 --> 00:18:16,070 +and the different things are put in an abstract + +287 +00:18:16,070 --> 00:18:19,500 +method for someone to change them. The subclass. + +288 +00:18:19,860 --> 00:18:22,360 +In this case, it tells you that when you reach a + +289 +00:18:22,360 --> 00:18:24,500 +stage like this, that you are only working for a + +290 +00:18:24,500 --> 00:18:28,520 +class, why? What is the goal? To unite types of + +291 +00:18:28,520 --> 00:18:31,700 +things that do not have anything in common. This + +292 +00:18:31,700 --> 00:18:33,980 +is the purpose of the interface. To benefit from + +293 +00:18:33,980 --> 00:18:36,940 +polymorphism. Things that have nothing to do with + +294 +00:18:36,940 --> 00:18:40,420 +each other, make them all of the same type. Okay? + +295 +00:18:41,100 --> 00:18:45,330 +But the class that you use, For two goals, not for + +296 +00:18:45,330 --> 00:18:47,210 +the interface. The interface only unites between + +297 +00:18:47,210 --> 00:18:48,890 +the types of things that do not have a common + +298 +00:18:48,890 --> 00:18:51,950 +size. But the class or abstract class is divided + +299 +00:18:51,950 --> 00:18:56,070 +into two things that combine common things instead + +300 +00:18:56,070 --> 00:19:00,270 +of repeating this goal and unites the type. The + +301 +00:19:00,270 --> 00:19:03,590 +class has two units. The interface has one unit. + +302 +00:19:04,870 --> 00:19:05,990 +Well, it does not mean that the class is better + +303 +00:19:05,990 --> 00:19:07,050 +than the interface because it has two units and + +304 +00:19:07,050 --> 00:19:08,910 +the interface has one unit. No. In this example, + +305 +00:19:09,210 --> 00:19:11,590 +what do I need? Interface. There is no common + +306 +00:19:11,590 --> 00:19:16,850 +size. Just make them the same type. If you reached + +307 +00:19:16,850 --> 00:19:18,430 +a point where you just want to unify the type, + +308 +00:19:18,670 --> 00:19:22,130 +make it an interface. + +309 +00:19:23,610 --> 00:19:28,810 +And even the word abstract stopped forcing him. He + +310 +00:19:28,810 --> 00:19:31,070 +automatically considers that anything inside the + +311 +00:19:31,070 --> 00:19:35,570 +interface is abstract. So the word abstract, if + +312 +00:19:35,570 --> 00:19:38,860 +you want to remove it, remove it. I made the + +313 +00:19:38,860 --> 00:19:41,100 +interface so that everyone who wants to implement + +314 +00:19:41,100 --> 00:19:43,100 +it can take the same type of code But everyone + +315 +00:19:43,100 --> 00:19:46,820 +wants to execute it in a different way So that the + +316 +00:19:46,820 --> 00:19:49,540 +man sees them all as tasks and is able to execute + +317 +00:19:49,540 --> 00:19:52,740 +without knowing the details or differences between + +318 +00:19:52,740 --> 00:19:57,280 +them Do you agree or not guys? Ok, in this case, I + +319 +00:19:57,280 --> 00:19:59,760 +have an error in the subclasses. Why? When I + +320 +00:19:59,760 --> 00:20:02,780 +change the interface, it says no, instead of + +321 +00:20:02,780 --> 00:20:04,960 +extends, do implements. Actually, they have + +322 +00:20:04,960 --> 00:20:06,980 +different meanings. Extends means that there is + +323 +00:20:06,980 --> 00:20:12,740 +something existing and I want to add it. Implement + +324 +00:20:12,740 --> 00:20:16,040 +means that there is nothing empty and I want to do + +325 +00:20:16,040 --> 00:20:18,800 +what? Implements. Of course, in new languages like + +326 +00:20:18,800 --> 00:20:21,730 +Kotlin and Swift He started to put his fingers and + +327 +00:20:21,730 --> 00:20:25,470 +that's it. And he walks. Okay? Our goal is not the + +328 +00:20:25,470 --> 00:20:28,290 +syntax. Our goal is what? The concept of object + +329 +00:20:28,290 --> 00:20:30,730 +-oriented programming. So we brought all of these + +330 +00:20:30,730 --> 00:20:36,090 +to implement. + +331 +00:20:36,990 --> 00:20:37,310 +Okay? + +332 +00:20:40,450 --> 00:20:43,070 +Is this thing clear, guys? Because there is also + +333 +00:20:43,070 --> 00:20:44,550 +another feature for the interface. + +334 +00:20:49,150 --> 00:20:52,710 +Excel is one class, but you can implement it to + +335 +00:20:52,710 --> 00:20:56,110 +more than one interface. You can give your object + +336 +00:20:56,110 --> 00:21:00,930 +more than one type. For example, you can put it in + +337 +00:21:00,930 --> 00:21:03,110 +more than one list and it will execute the same + +338 +00:21:03,110 --> 00:21:07,230 +thing. Someone will ask, what is the point of + +339 +00:21:07,230 --> 00:21:09,830 +taking more than one type? It will be clear to you + +340 +00:21:09,830 --> 00:21:12,090 +when you take it in GUI Sometimes you want to make + +341 +00:21:12,090 --> 00:21:16,730 +the frame or the screen listen to the mouse click + +342 +00:21:16,730 --> 00:21:20,710 +or the keyboard click So he wants to do less than + +343 +00:21:20,710 --> 00:21:26,250 +two things So you want to make the frame or the + +344 +00:21:26,250 --> 00:21:30,310 +screen listen to take two types One type is mouse + +345 +00:21:30,310 --> 00:21:32,150 +listener and the other type is button listener + +346 +00:21:33,880 --> 00:21:35,640 +automatically the device will put them in a tool + +347 +00:21:35,640 --> 00:21:38,280 +list so that if the mouse is pressed or the button + +348 +00:21:38,280 --> 00:21:41,060 +is pressed, it will ask for it. This will show up + +349 +00:21:41,060 --> 00:21:43,000 +in front of you. But this is an important + +350 +00:21:43,000 --> 00:21:45,620 +difference that I can implement more than one + +351 +00:21:45,620 --> 00:21:48,840 +interface, but I can extend it to one class. In + +352 +00:21:48,840 --> 00:21:51,720 +short, we make the class to unite the types of + +353 +00:21:51,720 --> 00:21:54,480 +things that do not exist between them. And if the + +354 +00:21:54,480 --> 00:21:56,080 +class does not have a common code, it is + +355 +00:21:56,080 --> 00:22:01,120 +immediately converted to an interface. Okay? The + +356 +00:22:01,120 --> 00:22:03,600 +main thing that I benefited from it is that this + +357 +00:22:03,600 --> 00:22:06,960 +code that does loop and executes will not change + +358 +00:22:06,960 --> 00:22:09,980 +at all. Even if you add new tasks, you have to + +359 +00:22:09,980 --> 00:22:12,400 +make a new class. But that's it, you add it to + +360 +00:22:12,400 --> 00:22:15,780 +this list, and it does the loop and executes. + +361 +00:22:16,660 --> 00:22:20,880 +Okay? Yes, who has a question? If it was the same + +362 +00:22:20,880 --> 00:22:23,540 +method, but there are things that have changed. + +363 +00:22:23,680 --> 00:22:26,320 +For example, the return value disappeared in all + +364 +00:22:26,320 --> 00:22:30,530 +the elements. No, you have to design in a way that + +365 +00:22:30,530 --> 00:22:33,370 +everyone follows the same method. Okay? Is there a + +366 +00:22:33,370 --> 00:22:40,890 +generic solution? There are solutions. I mean, you + +367 +00:22:40,890 --> 00:22:43,930 +have to benefit or try to design the code in a way + +368 +00:22:43,930 --> 00:22:47,090 +that there are no differences. Okay? The + +369 +00:22:47,090 --> 00:22:49,050 +differences are treated in other ways according to + +370 +00:22:49,050 --> 00:22:51,350 +the nature of the program. But our goal is that + +371 +00:22:51,350 --> 00:22:57,290 +everyone has execute. To execute. Okay, guys? Okay, + +372 +00:22:57,350 --> 00:22:59,790 +this is an example to show the usefulness of the + +373 +00:22:59,790 --> 00:23:01,650 +interface that unites between types of things + +374 +00:23:01,650 --> 00:23:04,410 +without building a common thing. We also want to + +375 +00:23:04,410 --> 00:23:06,530 +take another example. Maybe this example is more + +376 +00:23:06,530 --> 00:23:10,050 +practical than this example. Pay attention to me. + +377 +00:23:12,950 --> 00:23:15,790 +Now I want to make a simple program that looks + +378 +00:23:15,790 --> 00:23:21,410 +like this. Pay attention to this screen. It is a + +379 +00:23:21,410 --> 00:23:26,030 +very simple program. It is a drawing program. For + +380 +00:23:26,030 --> 00:23:28,150 +example, there is a button called circle, + +381 +00:23:28,430 --> 00:23:36,790 +rectangle, solid circle, clear and undo. When I + +382 +00:23:36,790 --> 00:23:42,960 +click on circle, it draws dots randomly. When I + +383 +00:23:42,960 --> 00:23:45,220 +click on rectangle, it shows me rectangles. When I + +384 +00:23:45,220 --> 00:23:46,760 +click on circle, it shows me circles that are + +385 +00:23:46,760 --> 00:23:49,780 +filled with dots. Clear, what does it want to do? + +386 +00:23:50,340 --> 00:23:54,140 +It wants to delete everything. Undo, it wants to + +387 +00:23:54,140 --> 00:23:58,300 +return what was drawn. So, we want to create a + +388 +00:23:58,300 --> 00:24:04,010 +program like this and we will see how using the + +389 +00:24:04,010 --> 00:24:06,030 +interface will make a big difference in the design + +390 +00:24:06,030 --> 00:24:09,710 +of the program first of all, we have to agree on + +391 +00:24:09,710 --> 00:24:11,810 +certain things before we get into the design and + +392 +00:24:11,810 --> 00:24:16,910 +code and so on because I am talking about drawing + +393 +00:24:16,910 --> 00:24:20,330 +shapes and I want to delete these shapes and then + +394 +00:24:20,330 --> 00:24:22,650 +return them this means that whatever shape I want + +395 +00:24:22,650 --> 00:24:24,830 +to draw on the screen I have to store its + +396 +00:24:24,830 --> 00:24:29,560 +information I draw a circle in a certain place and + +397 +00:24:29,560 --> 00:24:31,140 +I have to store where the circle is, what is half + +398 +00:24:31,140 --> 00:24:35,020 +of its diameter and what is the center of it. If I + +399 +00:24:35,020 --> 00:24:36,720 +know the center and half of the diameter, I draw + +400 +00:24:36,720 --> 00:24:40,140 +it again. Also, the rectangle has length, width + +401 +00:24:40,140 --> 00:24:44,200 +and point. When I draw a rectangle, I have to + +402 +00:24:44,200 --> 00:24:47,720 +store this information as well. So that when I say + +403 +00:24:47,720 --> 00:24:52,240 +undo, it draws it again. Let's say that the + +404 +00:24:52,240 --> 00:24:53,580 +rectangle has at least how many columns? + +405 +00:24:56,620 --> 00:24:59,620 +The point also has x and y, which is two points + +406 +00:24:59,620 --> 00:25:02,500 +and its length and width are four points. The + +407 +00:25:02,500 --> 00:25:06,420 +circle has three points, x and y, and the half of + +408 +00:25:06,420 --> 00:25:08,820 +the circle. And the semicircle has an additional + +409 +00:25:08,820 --> 00:25:12,860 +point, which is the color. The first thing that + +410 +00:25:12,860 --> 00:25:14,620 +comes to my mind is that as long as I have + +411 +00:25:14,620 --> 00:25:16,940 +engineering shapes and shapes that have + +412 +00:25:16,940 --> 00:25:18,120 +information and information that I need to + +413 +00:25:18,120 --> 00:25:21,400 +memorize, I need to represent each shape with a + +414 +00:2 + +445 +00:26:59,520 --> 00:27:02,840 +position x and position y. And what is this? + +446 +00:27:04,080 --> 00:27:08,240 +Constructor. And this is also what? Draw. But this + +447 +00:27:08,240 --> 00:27:11,900 +is executed by a tool called draw rectangle. Now, + +448 +00:27:12,020 --> 00:27:15,480 +I also have a third form which is mean. The 7th + +449 +00:27:15,480 --> 00:27:18,060 +circle. Did you find the solid circle thinking + +450 +00:27:18,060 --> 00:27:19,940 +that it is a circle but it has additional + +451 +00:27:19,940 --> 00:27:24,200 +information? So what does a new class or a new + +452 +00:27:24,200 --> 00:27:26,840 +class of solid circle do? Extends the circle. + +453 +00:27:26,960 --> 00:27:28,800 +That's it. It took everything above it. And it + +454 +00:27:28,800 --> 00:27:31,860 +made a new attribute called what? Fill color. + +455 +00:27:34,060 --> 00:27:36,420 +Those who are reviewing, what is it? All objects + +456 +00:27:36,420 --> 00:27:40,160 +are oriented. Because what is this? Constructor. + +457 +00:27:40,680 --> 00:27:44,080 +What does it take? Radius and x and y and color. + +458 +00:27:46,090 --> 00:27:48,790 +Right? And they call it super because they are + +459 +00:27:48,790 --> 00:27:53,590 +super constructors. Okay? And it initializes the + +460 +00:27:53,590 --> 00:27:55,310 +field color that is present here. Do you see the + +461 +00:27:55,310 --> 00:27:58,330 +drawing that is present in the third circle? Do + +462 +00:27:58,330 --> 00:28:00,510 +you see it? See what I want to do with it. The + +463 +00:28:00,510 --> 00:28:04,070 +drone here, what does it do? It calls super dot + +464 +00:28:04,070 --> 00:28:07,350 +drone. That is, when I draw a semicircle, I want + +465 +00:28:07,350 --> 00:28:10,990 +to draw the circle And then I filled it. So I made + +466 +00:28:10,990 --> 00:28:15,250 +it follow the draw of the parent. As we were in + +467 +00:28:15,250 --> 00:28:16,990 +the employee in the GATE report, do you remember? + +468 +00:28:17,730 --> 00:28:19,770 +We used to follow the GATE report of the parent to + +469 +00:28:19,770 --> 00:28:21,850 +get the main report and then do something extra. + +470 +00:28:22,410 --> 00:28:25,010 +Here I followed the super to draw. And then I put + +471 +00:28:25,010 --> 00:28:28,470 +the fill color and the fill what? Fill oval. This + +472 +00:28:28,470 --> 00:28:31,670 +is what I filled. So here I drew it through ... I + +473 +00:28:31,670 --> 00:28:33,250 +made the father draw a part and here I drew + +474 +00:28:33,250 --> 00:28:38,990 +another part.Okay, so far everything is fine. Once + +475 +00:28:38,990 --> 00:28:41,830 +again, why did I make this class? So that I can + +476 +00:28:41,830 --> 00:28:46,330 +collect all the data together. Okay, I came now to + +477 +00:28:46,330 --> 00:28:48,990 +make my program. So far, we have represented these + +478 +00:28:48,990 --> 00:28:51,950 +objects, but we have not used them, okay? At the + +479 +00:28:51,950 --> 00:28:54,130 +user interface, which is the main interface that + +480 +00:28:54,130 --> 00:28:55,870 +you saw a while ago, this one. + +481 +00:28:59,300 --> 00:29:05,200 +This is a drawing space, and these are buttons. We + +482 +00:29:05,200 --> 00:29:08,700 +are not talking about GUI, but let me give you a + +483 +00:29:08,700 --> 00:29:10,740 +quick example to get the idea. Our topic is not + +484 +00:29:10,740 --> 00:29:15,540 +GUI, but how the program is designed. In Java, one + +485 +00:29:15,540 --> 00:29:20,560 +of the ways to create a GUI is to create a window + +486 +00:29:20,560 --> 00:29:24,880 +and extend it to a class called JFrame. JFrame is + +487 +00:29:24,880 --> 00:29:30,230 +a ready window. You extend it and add the elements + +488 +00:29:30,230 --> 00:29:31,930 +that you want them to be, which are the buttons + +489 +00:29:31,930 --> 00:29:34,570 +that we saw a while ago. So, as soon as you extend + +490 +00:29:34,570 --> 00:29:38,010 +JFrame, you have a window. Okay? Because what is + +491 +00:29:38,010 --> 00:29:40,930 +this? Forget about this one. What is this thing + +492 +00:29:40,930 --> 00:29:41,330 +that I am teaching? + +493 +00:29:44,230 --> 00:29:46,190 +Constructor. So, as soon as you create an object + +494 +00:29:46,190 --> 00:29:50,390 +from the drawing app, what will it do? What is a + +495 +00:29:50,390 --> 00:29:53,990 +reconstructor? In short, the drawing panel is the + +496 +00:29:53,990 --> 00:29:57,770 +place where I draw. Do you see that the screen is + +497 +00:29:57,770 --> 00:30:00,890 +divided into two parts? There are buttons here, + +498 +00:30:01,010 --> 00:30:05,370 +and here is the drawing place. This place is + +499 +00:30:05,370 --> 00:30:07,870 +called the drawing panel. + +500 +00:30:09,430 --> 00:30:12,050 +It is not the subject of the drawing. This is just + +501 +00:30:12,050 --> 00:30:15,850 +to give you an idea of ​​the subject. What is + +502 +00:30:15,850 --> 00:30:21,450 +this? This is called a G button, a button. Okay? + +503 +00:30:21,790 --> 00:30:24,570 +We made a button, what is written on it? Circle. + +504 +00:30:24,850 --> 00:30:26,910 +When I press the button add action, it will + +505 +00:30:26,910 --> 00:30:30,830 +execute this code. Okay? What does this code do? + +506 +00:30:31,190 --> 00:30:33,070 +As soon as you press the button, it goes to create + +507 +00:30:33,070 --> 00:30:35,930 +an object from whom? From the circle, here is the + +508 +00:30:35,930 --> 00:30:38,930 +circle. Circle C equals new circle. It has to pass + +509 +00:30:38,930 --> 00:30:42,030 +three things through it. Half of the line and X + +510 +00:30:42,030 --> 00:30:44,890 +and Y. I fixed the half of the line. How much did + +511 +00:30:44,890 --> 00:30:48,280 +I leave it? 5. The location of the gate has to + +512 +00:30:48,280 --> 00:30:51,280 +change. It doesn't have to reach the circle in one + +513 +00:30:51,280 --> 00:30:54,060 +place. It has to be random. How do you make it + +514 +00:30:54,060 --> 00:30:57,800 +random? There is a class called Random. You tell + +515 +00:30:57,800 --> 00:31:01,340 +it to go to x and make it r.mixint 500. That is, + +516 +00:31:01,400 --> 00:31:04,420 +type any integer number between 0 and 500. Why + +517 +00:31:04,420 --> 00:31:06,180 +500? Because the width of the screen is 500 + +518 +00:31:06,180 --> 00:31:10,000 +pixels. And here is also a random number from 0 to + +519 +00:31:10,000 --> 00:31:15,320 +350, which is the height of the screen. an object + +520 +00:31:15,320 --> 00:31:17,240 +from where? From the circle, but I'm not going to + +521 +00:31:17,240 --> 00:31:19,340 +draw it. In order to draw it, I'm going to make a + +522 +00:31:19,340 --> 00:31:22,080 +method called draw, seed to draw, and I'm going to + +523 +00:31:22,080 --> 00:31:27,680 +draw it in the drawing panel, get graphics. That + +524 +00:31:27,680 --> 00:31:29,760 +is, I set the place where I'm going to draw it. + +525 +00:31:29,960 --> 00:31:32,020 +That is, as soon as I click on the circle button, + +526 +00:31:32,360 --> 00:31:34,220 +an object from the circle will appear and draw it. + +527 +00:31:35,380 --> 00:31:38,560 +I'm going to run the code. This is the circle, and + +528 +00:31:38,560 --> 00:31:43,150 +what does it do? It draws circles randomly. there + +529 +00:31:43,150 --> 00:31:47,770 +is another button called rectangle it also creates + +530 +00:31:47,770 --> 00:31:51,490 +a rectangle and if I want to draw a rectangle I do + +531 +00:31:51,490 --> 00:32:01,630 +the same thing rectangle.drawingpanel + +532 +00:32:08,460 --> 00:32:11,820 +Now, there is a solid circle at the bottom. I can + +533 +00:32:11,820 --> 00:32:15,160 +also call it a draw. Okay? Then, there is a button + +534 +00:32:15,160 --> 00:32:18,920 +called Clear, which is supposed to erase the whole + +535 +00:32:18,920 --> 00:32:21,940 +screen. And there is a button called Undo, which + +536 +00:32:21,940 --> 00:32:23,880 +is supposed to undo. This is a story. Where is the + +537 +00:32:23,880 --> 00:32:30,180 +whole story? In the Undo. Now, I draw circles and + +538 +00:32:30,180 --> 00:32:33,860 +rectangles. Okay? But I don't make it clear yet. + +539 +00:32:35,530 --> 00:32:39,510 +Okay, this is the interface that I made in the + +540 +00:32:39,510 --> 00:32:43,590 +application. This is an idea about it. Now, when + +541 +00:32:43,590 --> 00:32:48,570 +we design an application, one of the important + +542 +00:32:48,570 --> 00:32:50,970 +principles that we do, of course, there are + +543 +00:32:50,970 --> 00:32:52,830 +different types of applications, there is a mobile + +544 +00:32:52,830 --> 00:32:54,850 +application, there is a web application, okay, + +545 +00:32:55,030 --> 00:32:57,690 +websites, internet, and there is a desktop like + +546 +00:32:57,690 --> 00:32:59,650 +this one that we are working on, the game. I + +547 +00:32:59,650 --> 00:33:02,850 +always tell you to separate the interface from + +548 +00:33:02,850 --> 00:33:05,440 +your logic. What does it mean to separate the UI + +549 +00:33:05,440 --> 00:33:08,340 +from the logic? It means that this is the design + +550 +00:33:08,340 --> 00:33:11,500 +screen, okay? Inside the design screen, there are + +551 +00:33:11,500 --> 00:33:14,020 +buttons, and when I press the buttons, they + +552 +00:33:14,020 --> 00:33:16,220 +execute certain elements, algorithms, algorithms, + +553 +00:33:16,480 --> 00:33:19,060 +steps that they want to execute. Because if you + +554 +00:33:19,060 --> 00:33:22,140 +put the UI design with the steps to execute, all + +555 +00:33:22,140 --> 00:33:26,000 +in one file, what happens to your program? It gets + +556 +00:33:26,000 --> 00:33:31,420 +corrupted, okay? So, I recommend that you separate + +557 +00:33:31,420 --> 00:33:35,710 +the UI interface from your logic, which is the + +558 +00:33:35,710 --> 00:33:38,030 +design pattern, which they call MVC, do you hear + +559 +00:33:38,030 --> 00:33:43,690 +it? The V is short for what? For the view, which + +560 +00:33:43,690 --> 00:33:47,130 +is the face. The M is short for what? For the + +561 +00:33:47,130 --> 00:33:49,930 +model. What is the model? This is what depends on + +562 +00:33:49,930 --> 00:33:52,390 +your logic. Algorithms, algorithms, algorithms, + +563 +00:33:53,050 --> 00:33:55,990 +connections to databases, this is all a model. + +564 +00:33:56,590 --> 00:34:01,670 +Separate these from each other. Why? Sometimes the + +565 +00:34:01,670 --> 00:34:04,150 +faces change. Each time I want to change something + +566 +00:34:04,150 --> 00:34:05,910 +in the interface, I have to search for it in the + +567 +00:34:05,910 --> 00:34:07,950 +code. If I want to change something in the logic, + +568 +00:34:08,730 --> 00:34:10,930 +I have to create a new query, I have to open the + +569 +00:34:10,930 --> 00:34:14,530 +code of the interface and search for it. No, it is + +570 +00:34:14,530 --> 00:34:18,050 +correct that you separate the design from the + +571 +00:34:18,050 --> 00:34:21,350 +interface. The design, which is the view, and the + +572 +00:34:21,350 --> 00:34:24,090 +model, which is the steps and algorithms, is the + +573 +00:34:24,090 --> 00:34:27,050 +model. And the view is from these faces. And the + +574 +00:34:27,050 --> 00:34:30,130 +controller, which is the C, who is it? The one + +575 +00:34:30,130 --> 00:34:31,970 +that connects the two. The one that connects the + +576 +00:34:31,970 --> 00:34:34,650 +two together. And this is important even in, you + +577 +00:34:34,650 --> 00:34:36,590 +don't find web programs, you don't find anyone + +578 +00:34:36,590 --> 00:34:39,330 +working. You find me working back end, and another + +579 +00:34:39,330 --> 00:34:42,030 +person working. This is how we make the design, + +580 +00:34:42,210 --> 00:34:45,450 +and this is how we make the work back. Even if + +581 +00:34:45,450 --> 00:34:47,370 +there is a separation. But if the two fell down + +582 +00:34:47,370 --> 00:34:51,470 +and gathered together, It's hard work, right or + +583 +00:34:51,470 --> 00:34:53,650 +wrong? So this right is from the division. We are + +584 +00:34:53,650 --> 00:34:57,950 +currently not separated, right or wrong? This is + +585 +00:34:57,950 --> 00:35:02,470 +all UI code, and inside the buttons is the + +586 +00:35:02,470 --> 00:35:04,990 +execution code. The execution is present with the + +587 +00:35:04,990 --> 00:35:07,730 +UI together. So in order to implement Our job is + +588 +00:35:07,730 --> 00:35:10,030 +to organize our work. We want to separate the two. + +589 +00:35:10,130 --> 00:35:11,950 +What is separating the two from each other? Take + +590 +00:35:11,950 --> 00:35:15,730 +all the logic and undo and redo and draw and put + +591 +00:35:15,730 --> 00:35:17,730 +them in another class. Separate the elements, + +592 +00:35:17,870 --> 00:35:20,110 +separate the elements. Instead of putting them all + +593 +00:35:20,110 --> 00:35:23,930 +in one file. Let's separate this talk. Let's make + +594 +00:35:23,930 --> 00:35:27,790 +a new class. I want to call this class + +595 +00:35:27,790 --> 00:35:28,650 +DrawManager. + +596 +00:35:30,910 --> 00:35:33,840 +What is DrawManager? This is the person in charge + +597 +00:35:33,840 --> 00:35:36,800 +of the drawing. He is the one who does the + +598 +00:35:36,800 --> 00:35:41,420 +management of this work. When I press any button, + +599 +00:35:41,540 --> 00:35:45,540 +who executes it and works? How many buttons do I + +600 +00:35:45,540 --> 00:35:49,120 +have in the program? Five. Draw a circle. Draw a + +601 +00:35:49,120 --> 00:35:53,680 +rectangle. Draw a solid circle. Undo and redo. For + +602 +00:35:53,680 --> 00:35:56,280 +each button, what do I have to do here? A special + +603 +00:35:56,280 --> 00:36:01,900 +arrow. I can say public, void, draw, circle. Do + +604 +00:36:01,900 --> 00:36:06,110 +you see these arrows? You have to press them. When + +605 +00:36:06,110 --> 00:36:08,550 +I press the button, I separate it from the rest of + +606 +00:36:08,550 --> 00:36:11,830 +the words. I separate it. Okay, guys? Here, you + +607 +00:36:11,830 --> 00:36:13,970 +just need to give it the circle to draw it, and + +608 +00:36:13,970 --> 00:36:15,090 +you need to give it a place to draw it. + +609 +00:36:21,930 --> 00:36:24,950 +Okay? And here, you need to put the circle drawing + +610 +00:36:24,950 --> 00:36:31,230 +code. This just needs to be imported. As long as + +611 +00:36:31,230 --> 00:36:33,570 +there is a draw circle, it also needs to do what? + +612 +00:36:33,610 --> 00:36:33,850 +Draw. + +613 +00:36:47,540 --> 00:36:49,720 +And there is a third circle, but I forgot what to + +614 +00:36:49,720 --> 00:36:55,340 +do with it. I have clear, which should be erased + +615 +00:36:55,340 --> 00:37:01,700 +as well. And I have public void undo, which should + +616 +00:37:01,700 --> 00:37:01,920 +be returned. + +617 +00:37:08,780 --> 00:37:10,320 +These things are still empty, we still need to + +618 +00:37:10,320 --> 00:37:13,000 +fill them up. Okay? But the idea is that we don't + +619 +00:37:13,000 --> 00:37:14,660 +want to work on this work inside the UI. + +620 +00:37:15,620 --> 00:37:17,640 +Otherwise, what will happen to the work? A mess. + +621 +00:37:18,140 --> 00:37:21,240 +Okay? We want to make the UI ... Did you find it? + +622 +00:37:21,440 --> 00:37:25,960 +I divided the program into two parts. This is the + +623 +00:37:25,960 --> 00:37:30,020 +UI, which is the class called DrawingApp. + +624 +00:37:32,520 --> 00:37:38,030 +And this is the model. Or this is the UV, too. The + +625 +00:37:38,030 --> 00:37:42,030 +model name is the drawing manager. + +626 +00:37:43,910 --> 00:37:46,670 +I will get this UI from the action and the action + +627 +00:37:46,670 --> 00:37:50,250 +sends it to the drawing manager. So every button + +628 +00:37:50,250 --> 00:37:54,590 +that is pressed here will go to the method in the + +629 +00:37:54,590 --> 00:37:55,170 +drawing manager. + +630 +00:38:00,190 --> 00:38:03,090 +In order to do this job, you need to go back to + +631 +00:38:03,090 --> 00:38:05,990 +the UI. The beginning is always where? In the UI, + +632 +00:38:06,030 --> 00:38:07,650 +not the principle in the UI. And the UI will + +633 +00:38:07,650 --> 00:38:09,850 +direct the command to whom + +667 +00:40:32,860 --> 00:40:34,700 +The first thing is drawing a circle, this is easy, + +668 +00:40:35,200 --> 00:40:37,520 +The circle does not have a ready method to draw, I + +669 +00:40:37,520 --> 00:40:41,410 +did it, I go to the circle and tell it what? The + +670 +00:40:41,410 --> 00:40:44,750 +drone and the rectangle is the same thing, I go to + +671 +00:40:44,750 --> 00:40:49,950 +the rectangle and I say the drone clear, how do I + +672 +00:40:49,950 --> 00:40:53,530 +delete it? To delete it, there is a tool called + +673 +00:40:53,530 --> 00:40:57,810 +clear in graphics, clear rectangle I delete a + +674 +00:40:57,810 --> 00:41:01,110 +certain rectangle like this for example, I delete + +675 +00:41:01,110 --> 00:41:04,670 +an area of 500x500 for example, the whole screen + +676 +00:41:04,670 --> 00:41:10,870 +The undo, this is a win. What does it mean to undo? + +677 +00:41:11,170 --> 00:41:14,610 +It means to redraw all the things that were drawn + +678 +00:41:14,610 --> 00:41:19,970 +and erased. It doesn't mean that I drew a circle. + +679 +00:41:20,590 --> 00:41:23,850 +It means that whatever shape you want to draw, you + +680 +00:41:23,850 --> 00:41:26,230 +have to memorize it because it will force you to + +681 +00:41:26,230 --> 00:41:30,190 +do undo. What are the shapes that I'm drawing? + +682 +00:41:30,450 --> 00:41:33,530 +Three shapes, circle and rectangle until now, solid + +683 +00:41:33,530 --> 00:41:36,690 +circle, so you start thinking you say yes, I want to + +684 +00:41:36,690 --> 00:41:38,390 +memorize the circles, you want to go to the array + +685 +00:41:38,390 --> 00:41:41,390 +list up there, where did you make the array list? + +686 +00:41:42,010 --> 00:41:48,990 +In the draw manager, what is it? Circle. These + +687 +00:41:48,990 --> 00:41:50,130 +circles are equal to + +688 +00:42:13,710 --> 00:42:19,170 +Rectangles equals new ArrayList + +689 +00:42:21,660 --> 00:42:24,520 +Why did we make this list? Because when we draw a + +690 +00:42:24,520 --> 00:42:29,220 +circle, we say circles.add and put on the object + +691 +00:42:29,220 --> 00:42:31,480 +circle. This is the purpose of the object that we + +692 +00:42:31,480 --> 00:42:35,860 +made, to memorize it. Notice that this code now, + +693 +00:42:36,100 --> 00:42:39,200 +if I worked in the UI, all this was done where? In + +694 +00:42:39,200 --> 00:42:41,740 +the UI. It was messy. No, we separated the work + +695 +00:42:41,740 --> 00:42:44,320 +again. For the rectangle, it's the same thing. + +696 +00:42:44,400 --> 00:42:48,460 +Come to the rectangles and say add and add to the + +697 +00:42:48,460 --> 00:42:52,540 +object rectangle that we drew, because a clear + +698 +00:42:52,540 --> 00:42:57,180 +goal for undo, what do we do? You have to rotate on + +699 +00:42:57,180 --> 00:43:00,840 +each circle and draw what is in it, right? You + +700 +00:43:00,840 --> 00:43:02,920 +have to look at the first circle if you don't have + +701 +00:43:02,920 --> 00:43:08,680 +one circle for each circle C in circles, say C dot + +702 +00:43:08,680 --> 00:43:14,160 +draw, and there is another circle for each + +703 +00:43:14,160 --> 00:43:22,810 +rectangle R in rectangles, go and tell him C or R + +704 +00:43:22,810 --> 00:43:28,630 +dot draw. Right + +705 +00:43:28,630 --> 00:43:33,350 +or wrong guys? This is the undo, because we haven't + +706 +00:43:33,350 --> 00:43:38,150 +finished yet. Now, we have prepared this gate for + +707 +00:43:38,150 --> 00:43:40,530 +the draw manager, but don't forget that the draw + +708 +00:43:40,530 --> 00:43:43,690 +manager needs to be used from where? From the UI. + +709 +00:43:43,690 --> 00:43:46,710 +It should be in the UI in every button that we + +710 +00:43:46,710 --> 00:43:50,510 +made. When I click on undo, it goes to the manager + +711 +00:43:50,510 --> 00:43:54,450 +and tells him to undo. When I click on clear, it + +712 +00:43:54,450 --> 00:43:56,610 +goes to the manager and tells him to clear. When I + +713 +00:43:56,610 --> 00:43:58,210 +tell him to draw a rectangle, it goes to the + +714 +00:43:58,210 --> 00:43:59,250 +manager and tells him to draw a rectangle. When I + +715 +00:43:59,250 --> 00:44:00,450 +tell him to draw a circle, it goes to the manager + +716 +00:44:00,450 --> 00:44:02,430 +and tells him to draw a circle. Now we are ready + +717 +00:44:02,430 --> 00:44:02,850 +to start. + +718 +00:44:09,270 --> 00:44:11,770 +Because this circle is drawn in circles drawn in + +719 +00:44:11,770 --> 00:44:17,770 +rectangles clear, and this H is drawn in rectangles, + +720 +00:44:17,770 --> 00:44:22,630 +still we have not reached the point that we want + +721 +00:44:22,630 --> 00:44:25,310 +to reach, so my question is when we do the solid + +722 +00:44:25,310 --> 00:44:29,850 +circle, what should we do? No, we don't have to + +723 +00:44:29,850 --> 00:44:32,110 +read the new list, do you know why? Because the + +724 +00:44:32,110 --> 00:44:35,730 +solid circle is what? Circle, but we have to add a + +725 +00:44:35,730 --> 00:44:39,930 +value called draw, or not even necessary, it draws + +726 +00:44:39,930 --> 00:44:43,830 +a circle and it moves. So, this is the draw app. In + +727 +00:44:43,830 --> 00:44:48,510 +the end, the solid circle is a circle, right guys? + +728 +00:44:49,070 --> 00:44:51,770 +So, I can go to the manager and tell him to draw a + +729 +00:44:51,770 --> 00:44:59,790 +circle and send it to the solid circle, so + +730 +00:44:59,790 --> 00:45:02,410 +the solid circle does not have any problem, it + +731 +00:45:02,410 --> 00:45:04,810 +works on what exists, it makes the solid circle, + +732 +00:45:05,940 --> 00:45:09,180 +and this one is clear and this one is undo, but + +733 +00:45:09,180 --> 00:45:16,520 +there is a mistake in the colors, okay. + +734 +00:45:16,520 --> 00:45:21,520 +Now, where is the problem? The problem is in the + +735 +00:45:21,520 --> 00:45:24,280 +following. If you want to add a new shape, what do + +736 +00:45:24,280 --> 00:45:26,040 +you have to do to add it? Look at what you have to + +737 +00:45:26,040 --> 00:45:28,400 +do when you add a new shape. First you have to + +738 +00:45:28,400 --> 00:45:33,390 +create a class, and you use the draw method to draw + +739 +00:45:33,390 --> 00:45:38,470 +the shape. Then you add a button to the UI. And + +740 +00:45:38,470 --> 00:45:41,370 +here in the draw manager, you use a method called + +741 +00:45:41,370 --> 00:45:46,630 +drawMethodTriangle. And you add a new method to + +742 +00:45:46,630 --> 00:45:48,970 +it. And you create a new loop in the undo + +743 +00:45:48,970 --> 00:45:52,970 +function. So that Erzy can draw the shapes. All of + +744 +00:45:52,970 --> 00:45:55,990 +this, you have to do if you want to add a new + +745 +00:45:55,990 --> 00:46:02,700 +shape. The main problem is that for every new shape + +746 +00:46:02,700 --> 00:46:03,940 +in the Draw Manager, you have to create a new + +747 +00:46:03,940 --> 00:46:07,380 +method, or a new list, or a new load. Right or + +748 +00:46:07,380 --> 00:46:10,700 +wrong? No. We have to relax ourselves. We have to + +749 +00:46:10,700 --> 00:46:13,200 +make the Draw Manager to add new shapes that we + +750 +00:46:13,200 --> 00:46:17,530 +don't change at all. How? Instead of depending on + +751 +00:46:17,530 --> 00:46:21,430 +circle, rectangle, triangle or any shape, unite all + +752 +00:46:21,430 --> 00:46:24,390 +their types. You put them in a single list, you make + +753 +00:46:24,390 --> 00:46:29,690 +a single loop, you use a single method. Okay? + +754 +00:46:30,490 --> 00:46:37,710 +So now I made a new class here, I named it shape + +755 +00:46:40,570 --> 00:46:43,670 +I don't want to make it a class because it's not a + +756 +00:46:43,670 --> 00:46:45,270 +class. Why? Because there is nothing that unites + +757 +00:46:45,270 --> 00:46:47,770 +them in the first place. Circular data, non + +758 +00:46:47,770 --> 00:46:50,590 +-triangular data, non-triangular data. There is + +759 +00:46:50,590 --> 00:46:53,730 +nothing common between them. So, I made the + +760 +00:46:53,730 --> 00:46:58,330 +interface empty, like this, and I want to unite + +761 +00:46:58,330 --> 00:47:00,730 +them. I went to the circle and told it to + +762 +00:47:00,730 --> 00:47:05,010 +implement shape. And I went to the rectangle + +763 +00:47:09,750 --> 00:47:14,910 +implements shape, solid + +764 +00:47:14,910 --> 00:47:19,890 +circle. خلاص ما هي Extend to main circle. طب هذه + +765 +00:47:19,890 --> 00:47:22,650 +بتفرج معايا كتير و انا بتفرج في ال draw manager + +766 +00:47:22,650 --> 00:47:28,310 +لان بدل ما يكون عيدي اكتر من list بتعمل list واحدة + +767 +00:47:28,310 --> 00:47:34,040 +تاخد إيش يا جماعة shape وهذه سميها shapes rather + +768 +00:47:34,040 --> 00:47:37,620 +than having circle, rectangle, and triangle because + +769 +00:47:37,620 --> 00:47:40,920 +I can send them all to this one thing called draw + +770 +00:47:40,920 --> 00:47:45,260 +shape, and I will send this shape to it, shape S, and + +771 +00:47:45,260 --> 00:47:48,160 +I will tell it what? S dot. Yes, here there is a + +772 +00:47:48,160 --> 00:47:51,880 +problem okay, and I will tell it to draw the shape + +773 +00:47:51,880 --> 00:47:59,620 +and add it to the existing list. I have it. Of + +774 +00:47:59,620 --> 00:48:01,580 +course, the same draw is not available yet, but + +775 +00:48:01,580 --> 00:48:03,780 +let's start with the first one. The draw rectangle + +776 +00:48:03,780 --> 00:48:05,640 +does not have the necessary shape. Right or wrong? + +777 +00:48:05,700 --> 00:48:07,960 +The clear rectangle does not change. Because the + +778 +00:48:07,960 --> 00:48:12,080 +loops also do not need to make two loops, it makes + +779 +00:48:12,080 --> 00:48:15,880 +a loop on one shape, P, for example, on shapes. + +780 +00:48:17,660 --> 00:48:22,350 +And it is supposed to say P dot draw. Okay, now + +781 +00:48:22,350 --> 00:48:25,150 +there is a problem with these shapes, each shape + +782 +00:48:25,150 --> 00:48:28,010 +has a different way of drawing, because the Draw + +783 +00:48:28,010 --> 00:48:30,550 +Manager wants to know how to draw each shape, he + +784 +00:48:30,550 --> 00:48:32,250 +says, "I have no claim to the way of drawing each + +785 +00:48:32,250 --> 00:48:35,390 +shape, you want to make different shapes, do it, + +786 +00:48:35,390 --> 00:48:38,770 +you are free, but in the end you leave them all + +787 +00:48:38,770 --> 00:48:42,510 +the same kind, and leave me the way of drawing each + +788 +00:48:42,510 --> 00:48:47,490 +shape in the class, you are going to do. My job, I + +789 +00:48:47,490 --> 00:48:49,790 +want to relax, I want to take the shape and draw + +790 +00:48:49,790 --> 00:48:54,350 +it. Understand that you are free to program whatever + +791 +00:48:54,350 --> 00:48:58,780 +way you want. Okay? But this draw is not present + +792 +00:48:58,780 --> 00:49:01,760 +now. So, we go to the shape interface and create a + +793 +00:49:01,760 --> 00:49:05,220 +draw method. This method is present in all shapes, + +794 +00:49:05,760 --> 00:49:10,220 +but each shape has its own draw. You do it to + +795 +00:49:10,220 --> 00:49:13,040 +achieve polymorphism, so that the draw manager + +796 +00:49:13,040 --> 00:49:15,540 +sees it and executes it. But it has nothing to do + +797 +00:49:15,540 --> 00:49:17,100 +with the draw manager how the shape will be drawn. + +798 +00:49:17,340 --> 00:49:19,640 +You, as a programmer, when you create a new shape + +799 +00:49:19,640 --> 00:49:21,860 +and implement it to the interface, you have to + +800 +00:49:21,860 --> 00:49:24,380 +determine what this is to draw. My job is to order + +801 +00:49:24,380 --> 00:49:33,240 +them and tell them public void draw Graphics + +802 +00:49:35,530 --> 00:49:39,550 +abstract method in the interface of course, as + +803 +00:49:39,550 --> 00:49:42,250 +soon as you add the method in the interface, it + +804 +00:49:42,250 --> 00:49:44,710 +will ask you to add it where? In every shape, + +805 +00:49:44,790 --> 00:49:47,990 +every shape you made in this circle, as long as you + +806 +00:49:47,990 --> 00:49:49,730 +made an implement for the shape, it must have made + +807 +00:49:49,730 --> 00:49:52,050 +an implement for whom? For the draw, it will make + +808 +00:49:52,050 --> 00:49:54,810 +it, it has determined the way to draw it and in + +809 +00:49:54,810 --> 00:49:56,530 +the rectangle it also made an implement for the + +810 +00:49:56,530 --> 00:49:58,490 +draw, and it has determined the way to draw it. You + +811 +00:49:58,490 --> 00:50:01,740 +need to add a triangle. What do you have to do? A + +812 +00:50:01,740 --> 00:50:05,080 +new class? Implementation. And you have to make an + +813 +00:50:05,080 --> 00:50:07,940 +implementation for whom? For the drone. You came, + +814 +00:50:08,380 --> 00:50:12,880 +I'm reading about you, you bring me the shape of + +815 +00:50:12,880 --> 00:50:16,980 +your class, and the way you draw the shape, you put + +816 +00:50:16,980 --> 00:50:20,880 +in it. I stand as a drone manager, I get the shape + +817 +00:50:20,880 --> 00:50:23,600 +and I call the drone. Okay? + +818 +00:50:30,390 --> 00:50:34,050 +Now, let's fix some things. Look at the Draw + +819 +00:50:34,050 --> 00:50:36,190 +Manager, it doesn't know anything. Not a circle, + +820 +00:50:36,830 --> 00:50:38,730 +not a rectangle, not a rectangle. It only deals + +821 +00:50:38,730 --> 00:50:43,450 +with the meaning. The meaning is shape. Now, if I + +822 +00:50:43,450 --> 00:50:46,810 +add new shapes, and send them to it, it will accept + +823 +00:50:46,810 --> 00:50:50,330 +them without any problem. If I add new shapes to + +824 +00:50:50,330 --> 00:50:53,270 +the Draw Manager, there won't be any change, the + +825 +00:50:53,270 --> 00:50:58,210 +only change is in the new class that you added in + +826 +00:50:58,210 --> 00:51:00,430 +the graphical interface, it will make a button. + +827 +00:51:01,410 --> 00:51:04,050 +And by the way, in front of it, even the button + +828 +00:51:04,050 --> 00:51:07,310 +will do it by itself. Okay? So you just reach a + +829 +00:51:07,310 --> 00:51:10,070 +stage in the design patterns, make the class, and + +830 +00:51:10,070 --> 00:51:12,920 +throw it in the program, and it will work by + +831 +00:51:12,920 --> 00:51:16,420 +itself as if you were doing a plugin, okay? Let's go + +832 +00:51:16,420 --> 00:51:18,780 +back to draw. I still have a mistake in the GUI, + +833 +00:51:18,780 --> 00:51:21,680 +where is it? I will stop having draw circle and + +834 +00:51:21,680 --> 00:51:24,320 +draw rectangle, I now have only one thing which is + +835 +00:51:24,320 --> 00:51:27,560 +called draw shape. If you have draw shape, do you + +836 +00:51:27,560 --> 00:51:30,140 +think you can draw a circle? Yes, you can do that, + +837 +00:51:30,140 --> 00:51:34,360 +okay? And here also I don't have draw rectangle, I + +838 +00:51:34,360 --> 00:51:39,240 +have draw shape, and I don't have draw circle, no + +839 +00:51:39,240 --> 00:51:41,420 +solid circle, draw shape. + +840 +00:51:43,740 --> 00:51:49,920 +Clear calls clear and undo calls undo. Now if I run + +841 +00:51:49,920 --> 00:51:53,880 +this application, it will run, because this is + +842 +00:51:53,880 --> 00:51:59,300 +circle, this is rectangle, this is clear and this + +843 +00:51:59,300 --> 00:52:03,220 +is undo. The idea is that when you add a new class + +844 +00:52:05,590 --> 00:52:08,370 +for example, if you want to create a triangle, + +845 +00:52:09,130 --> 00:52:12,370 +right click on it and choose New Java Class + +846 +00:52:12,370 --> 00:52:19,150 +Triangle. What should we do next? Go to Implements + +847 +00:52:20,750 --> 00:52:23,950 +Okay? Shape. As soon as you implement it, come + +848 +00:52:23,950 --> 00:52:27,310 +here. Okay? As long as you are a shape, explain to + +849 +00:52:27,310 --> 00:52:30,910 +me how to draw the shape. Here you put the code of + +850 +00:52:30,910 --> 00:52:33,130 +who you want to draw. You define him as a + +851 +00:52:33,130 --> 00:52:35,910 +programmer. What is his job? He takes the shape + +852 +00:52:35,910 --> 00:52:38,930 +and tells him to draw it. So, we united the + +853 +00:52:38,930 --> 00:52:41,690 +different types of shapes into one shape. Now, the + +854 +00:52:41,690 \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V9U3r9hm7p8_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V9U3r9hm7p8_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..97504f46e1b4f13ba6d8e0b68525483e2d15e5bd --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V9U3r9hm7p8_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 3066, "start": 5.3, "end": 30.66, "text": " Okay, in the name of God, Most Gracious, Most Merciful Today, God willing, guys, we will continue the last lecture in reviewing the concepts of object-oriented programming In the previous lectures, we reviewed the basic concepts, the concept of class, object, inheritance, and how when I have classes that participate in certain things, we make a super class, collect these common things, then we make an extend out of them to collect repetitions", "tokens": [1033, 11, 294, 264, 1315, 295, 1265, 11, 4534, 20586, 851, 11, 4534, 18897, 2069, 2692, 11, 1265, 4950, 11, 1074, 11, 321, 486, 2354, 264, 1036, 7991, 294, 19576, 264, 10392, 295, 2657, 12, 27414, 9410, 682, 264, 3894, 16564, 11, 321, 18429, 264, 3875, 10392, 11, 264, 3410, 295, 1508, 11, 2657, 11, 32122, 11, 293, 577, 562, 286, 362, 5359, 300, 8197, 294, 1629, 721, 11, 321, 652, 257, 1687, 1508, 11, 2500, 613, 2689, 721, 11, 550, 321, 652, 364, 10101, 484, 295, 552, 281, 2500, 13645, 2451], "avg_logprob": -0.48487904379444735, "compression_ratio": 1.788, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 5.3, "end": 5.6, "word": " Okay,", "probability": 0.1409912109375}, {"start": 5.7, "end": 6.02, "word": " in", "probability": 0.400146484375}, {"start": 6.02, "end": 6.08, "word": " the", "probability": 0.908203125}, {"start": 6.08, "end": 6.08, "word": " name", "probability": 0.86474609375}, {"start": 6.08, "end": 6.12, "word": " of", "probability": 0.9775390625}, {"start": 6.12, "end": 6.26, "word": " God,", "probability": 0.55712890625}, {"start": 6.3, "end": 6.56, "word": " Most", "probability": 0.265380859375}, {"start": 6.56, "end": 6.56, "word": " Gracious,", "probability": 0.806396484375}, {"start": 6.62, "end": 6.68, "word": " Most", "probability": 0.916015625}, {"start": 6.68, "end": 6.88, "word": " Merciful", "probability": 0.940673828125}, {"start": 6.88, "end": 8.7, "word": " Today,", "probability": 0.578125}, {"start": 8.86, "end": 9.04, "word": " God", "probability": 0.257568359375}, {"start": 9.04, "end": 9.04, "word": " willing,", "probability": 0.5556640625}, {"start": 9.22, "end": 9.46, "word": " guys,", "probability": 0.55078125}, {"start": 9.82, "end": 10.52, "word": " we", "probability": 0.75830078125}, {"start": 10.52, "end": 10.56, "word": " will", "probability": 0.58837890625}, {"start": 10.56, "end": 10.88, "word": " continue", "probability": 0.5390625}, {"start": 10.88, "end": 11.82, "word": " the", "probability": 0.421875}, {"start": 11.82, "end": 12.48, "word": " last", "probability": 0.6611328125}, {"start": 12.48, "end": 12.5, "word": " lecture", "probability": 0.7421875}, {"start": 12.5, "end": 12.84, "word": " in", "probability": 0.392822265625}, {"start": 12.84, "end": 13.24, "word": " reviewing", "probability": 0.73486328125}, {"start": 13.24, "end": 13.46, "word": " the", "probability": 0.365478515625}, {"start": 13.46, "end": 13.7, "word": " concepts", "probability": 0.81005859375}, {"start": 13.7, "end": 13.82, "word": " of", "probability": 0.96142578125}, {"start": 13.82, "end": 14.08, "word": " object", "probability": 0.67529296875}, {"start": 14.08, "end": 14.54, "word": "-oriented", "probability": 0.801513671875}, {"start": 14.54, "end": 15.46, "word": " programming", "probability": 0.88916015625}, {"start": 15.46, "end": 15.68, "word": " In", "probability": 0.393310546875}, {"start": 15.68, "end": 15.74, "word": " the", "probability": 0.60302734375}, {"start": 15.74, "end": 16.54, "word": " previous", "probability": 0.587890625}, {"start": 16.54, "end": 16.58, "word": " lectures,", "probability": 0.869140625}, {"start": 17.02, "end": 17.66, "word": " we", "probability": 0.95068359375}, {"start": 17.66, "end": 17.82, "word": " reviewed", "probability": 0.57470703125}, {"start": 17.82, "end": 18.0, "word": " the", "probability": 0.90673828125}, {"start": 18.0, "end": 18.02, "word": " basic", "probability": 0.66357421875}, {"start": 18.02, "end": 18.74, "word": " concepts,", "probability": 0.8486328125}, {"start": 18.84, "end": 18.94, "word": " the", "probability": 0.5302734375}, {"start": 18.94, "end": 19.1, "word": " concept", "probability": 0.79052734375}, {"start": 19.1, "end": 19.2, "word": " of", "probability": 0.970703125}, {"start": 19.2, "end": 19.6, "word": " class,", "probability": 0.875}, {"start": 19.76, "end": 20.06, "word": " object,", "probability": 0.71484375}, {"start": 21.6, "end": 22.34, "word": " inheritance,", "probability": 0.94921875}, {"start": 23.1, "end": 23.36, "word": " and", "probability": 0.80419921875}, {"start": 23.36, "end": 23.52, "word": " how", "probability": 0.8759765625}, {"start": 23.52, "end": 23.78, "word": " when", "probability": 0.52978515625}, {"start": 23.78, "end": 23.78, "word": " I", "probability": 0.92529296875}, {"start": 23.78, "end": 24.62, "word": " have", "probability": 0.90673828125}, {"start": 24.62, "end": 25.0, "word": " classes", "probability": 0.86181640625}, {"start": 25.0, "end": 25.12, "word": " that", "probability": 0.630859375}, {"start": 25.12, "end": 25.34, "word": " participate", "probability": 0.1939697265625}, {"start": 25.34, "end": 25.5, "word": " in", "probability": 0.93798828125}, {"start": 25.5, "end": 25.54, "word": " certain", "probability": 0.66357421875}, {"start": 25.54, "end": 26.02, "word": " things,", "probability": 0.7431640625}, {"start": 26.12, "end": 26.2, "word": " we", "probability": 0.85791015625}, {"start": 26.2, "end": 26.36, "word": " make", "probability": 0.475830078125}, {"start": 26.36, "end": 26.46, "word": " a", "probability": 0.49853515625}, {"start": 26.46, "end": 26.66, "word": " super", "probability": 0.96630859375}, {"start": 26.66, "end": 27.02, "word": " class,", "probability": 0.587890625}, {"start": 27.18, "end": 27.38, "word": " collect", "probability": 0.2432861328125}, {"start": 27.38, "end": 27.52, "word": " these", "probability": 0.478271484375}, {"start": 27.52, "end": 27.52, "word": " common", "probability": 0.45556640625}, {"start": 27.52, "end": 28.24, "word": " things,", "probability": 0.59619140625}, {"start": 28.48, "end": 28.66, "word": " then", "probability": 0.468017578125}, {"start": 28.66, "end": 28.84, "word": " we", "probability": 0.73974609375}, {"start": 28.84, "end": 29.0, "word": " make", "probability": 0.56591796875}, {"start": 29.0, "end": 29.26, "word": " an", "probability": 0.384033203125}, {"start": 29.26, "end": 29.6, "word": " extend", "probability": 0.66845703125}, {"start": 29.6, "end": 29.66, "word": " out", "probability": 0.3037109375}, {"start": 29.66, "end": 29.66, "word": " of", "probability": 0.98046875}, {"start": 29.66, "end": 29.66, "word": " them", "probability": 0.53271484375}, {"start": 29.66, "end": 29.84, "word": " to", "probability": 0.728515625}, {"start": 29.84, "end": 30.12, "word": " collect", "probability": 0.51171875}, {"start": 30.12, "end": 30.66, "word": " repetitions", "probability": 0.59381103515625}], "temperature": 1.0}, {"id": 2, "seek": 5408, "start": 31.94, "end": 54.08, "text": "we understood what is the relation between constructor and subclass we also understood the concept of promorphism and how to deal with subclasses that are subclasses of the father type as Mohedab told me that I can deal with subclasses that are full-time employees and part-time employees that are subclasses of the father type and put them in one array and make a loop on them", "tokens": [826, 7320, 437, 307, 264, 9721, 1296, 47479, 293, 1422, 11665, 321, 611, 7320, 264, 10413, 662, 295, 2234, 18191, 1434, 293, 577, 281, 2028, 365, 1422, 11665, 279, 300, 366, 1422, 11665, 279, 295, 264, 3086, 2010, 382, 16123, 292, 455, 1907, 385, 300, 286, 393, 2028, 365, 1422, 11665, 279, 300, 366, 1577, 12, 3766, 6619, 293, 644, 12, 3766, 6619, 300, 366, 1422, 11665, 279, 295, 264, 3086, 2010, 293, 829, 552, 294, 472, 10225, 293, 652, 257, 6367, 322, 552], "avg_logprob": -0.5838235406314626, "compression_ratio": 2.00531914893617, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 31.94, "end": 32.4, "word": "we", "probability": 0.2666015625}, {"start": 32.4, "end": 32.4, "word": " understood", "probability": 0.62646484375}, {"start": 32.4, "end": 34.02, "word": " what", "probability": 0.25146484375}, {"start": 34.02, "end": 34.1, "word": " is", "probability": 0.425537109375}, {"start": 34.1, "end": 34.24, "word": " the", "probability": 0.830078125}, {"start": 34.24, "end": 34.32, "word": " relation", "probability": 0.472900390625}, {"start": 34.32, "end": 34.56, "word": " between", "probability": 0.7802734375}, {"start": 34.56, "end": 35.0, "word": " constructor", "probability": 0.42529296875}, {"start": 35.0, "end": 35.24, "word": " and", "probability": 0.83544921875}, {"start": 35.24, "end": 36.66, "word": " subclass", "probability": 0.70947265625}, {"start": 36.66, "end": 36.82, "word": " we", "probability": 0.2032470703125}, {"start": 36.82, "end": 37.4, "word": " also", "probability": 0.494140625}, {"start": 37.4, "end": 37.48, "word": " understood", "probability": 0.81494140625}, {"start": 37.48, "end": 38.4, "word": " the", "probability": 0.60595703125}, {"start": 38.4, "end": 38.64, "word": " concept", "probability": 0.540924072265625}, {"start": 38.64, "end": 38.76, "word": " of", "probability": 0.95947265625}, {"start": 38.76, "end": 39.4, "word": " promorphism", "probability": 0.6794026692708334}, {"start": 39.4, "end": 40.26, "word": " and", "probability": 0.5029296875}, {"start": 40.26, "end": 40.56, "word": " how", "probability": 0.775390625}, {"start": 40.56, "end": 40.76, "word": " to", "probability": 0.64794921875}, {"start": 40.76, "end": 41.2, "word": " deal", "probability": 0.6591796875}, {"start": 41.2, "end": 41.48, "word": " with", "probability": 0.9072265625}, {"start": 41.48, "end": 42.46, "word": " subclasses", "probability": 0.71337890625}, {"start": 42.46, "end": 42.56, "word": " that", "probability": 0.408447265625}, {"start": 42.56, "end": 42.64, "word": " are", "probability": 0.66845703125}, {"start": 42.64, "end": 43.0, "word": " subclasses", "probability": 0.3546549479166667}, {"start": 43.0, "end": 43.0, "word": " of", "probability": 0.52392578125}, {"start": 43.0, "end": 43.12, "word": " the", "probability": 0.22216796875}, {"start": 43.12, "end": 43.28, "word": " father", "probability": 0.255126953125}, {"start": 43.28, "end": 43.74, "word": " type", "probability": 0.1988525390625}, {"start": 43.74, "end": 43.98, "word": " as", "probability": 0.12164306640625}, {"start": 43.98, "end": 44.34, "word": " Mohedab", "probability": 0.3868408203125}, {"start": 44.34, "end": 44.52, "word": " told", "probability": 0.358154296875}, {"start": 44.52, "end": 44.82, "word": " me", "probability": 0.9013671875}, {"start": 44.82, "end": 45.32, "word": " that", "probability": 0.763671875}, {"start": 45.32, "end": 45.54, "word": " I", "probability": 0.724609375}, {"start": 45.54, "end": 45.92, "word": " can", "probability": 0.8046875}, {"start": 45.92, "end": 46.24, "word": " deal", "probability": 0.59423828125}, {"start": 46.24, "end": 46.24, "word": " with", "probability": 0.8974609375}, {"start": 46.24, "end": 47.38, "word": " subclasses", "probability": 0.8341471354166666}, {"start": 47.38, "end": 47.58, "word": " that", "probability": 0.461181640625}, {"start": 47.58, "end": 47.74, "word": " are", "probability": 0.89013671875}, {"start": 47.74, "end": 47.96, "word": " full", "probability": 0.68505859375}, {"start": 47.96, "end": 48.22, "word": "-time", "probability": 0.885498046875}, {"start": 48.22, "end": 48.62, "word": " employees", "probability": 0.402587890625}, {"start": 48.62, "end": 48.72, "word": " and", "probability": 0.58544921875}, {"start": 48.72, "end": 48.94, "word": " part", "probability": 0.9267578125}, {"start": 48.94, "end": 49.12, "word": "-time", "probability": 0.984619140625}, {"start": 49.12, "end": 50.18, "word": " employees", "probability": 0.87646484375}, {"start": 50.18, "end": 51.06, "word": " that", "probability": 0.358642578125}, {"start": 51.06, "end": 51.18, "word": " are", "probability": 0.87060546875}, {"start": 51.18, "end": 51.46, "word": " subclasses", "probability": 0.6914876302083334}, {"start": 51.46, "end": 51.46, "word": " of", "probability": 0.9521484375}, {"start": 51.46, "end": 51.56, "word": " the", "probability": 0.5888671875}, {"start": 51.56, "end": 51.84, "word": " father", "probability": 0.7177734375}, {"start": 51.84, "end": 51.9, "word": " type", "probability": 0.88525390625}, {"start": 51.9, "end": 52.12, "word": " and", "probability": 0.28662109375}, {"start": 52.12, "end": 52.26, "word": " put", "probability": 0.5546875}, {"start": 52.26, "end": 52.36, "word": " them", "probability": 0.8798828125}, {"start": 52.36, "end": 52.44, "word": " in", "probability": 0.73095703125}, {"start": 52.44, "end": 52.5, "word": " one", "probability": 0.59716796875}, {"start": 52.5, "end": 52.72, "word": " array", "probability": 0.91650390625}, {"start": 52.72, "end": 53.1, "word": " and", "probability": 0.84423828125}, {"start": 53.1, "end": 53.3, "word": " make", "probability": 0.456787109375}, {"start": 53.3, "end": 53.62, "word": " a", "probability": 0.546875}, {"start": 53.62, "end": 53.86, "word": " loop", "probability": 0.732421875}, {"start": 53.86, "end": 54.08, "word": " on", "probability": 0.51123046875}, {"start": 54.08, "end": 54.08, "word": " them", "probability": 0.75732421875}], "temperature": 1.0}, {"id": 3, "seek": 8131, "start": 56.28, "end": 81.32, "text": " We also looked at the concept of Abstract Method and Abstract Class We found that it is true that when you deal with a type of child from a type of father it is a good thing because it provides you with a list of arrays and a loop but it has a negative aspect which is that you will only see the things that are present in the father So we decided to create an Abstract Method to see it in the father but implement it in the child", "tokens": [492, 611, 2956, 412, 264, 3410, 295, 46853, 1897, 25285, 293, 46853, 1897, 9471, 492, 1352, 300, 309, 307, 2074, 300, 562, 291, 2028, 365, 257, 2010, 295, 1440, 490, 257, 2010, 295, 3086, 309, 307, 257, 665, 551, 570, 309, 6417, 291, 365, 257, 1329, 295, 594, 36212, 293, 257, 6367, 457, 309, 575, 257, 3671, 4171, 597, 307, 300, 291, 486, 787, 536, 264, 721, 300, 366, 1974, 294, 264, 3086, 407, 321, 3047, 281, 1884, 364, 46853, 1897, 25285, 281, 536, 309, 294, 264, 3086, 457, 4445, 309, 294, 264, 1440], "avg_logprob": -0.5740131466012252, "compression_ratio": 1.8577586206896552, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 56.28, "end": 56.5, "word": " We", "probability": 0.377685546875}, {"start": 56.5, "end": 56.54, "word": " also", "probability": 0.7099609375}, {"start": 56.54, "end": 56.64, "word": " looked", "probability": 0.239990234375}, {"start": 56.64, "end": 56.88, "word": " at", "probability": 0.7138671875}, {"start": 56.88, "end": 56.98, "word": " the", "probability": 0.83544921875}, {"start": 56.98, "end": 57.2, "word": " concept", "probability": 0.66015625}, {"start": 57.2, "end": 57.28, "word": " of", "probability": 0.96533203125}, {"start": 57.28, "end": 57.78, "word": " Abstract", "probability": 0.6795654296875}, {"start": 57.78, "end": 58.06, "word": " Method", "probability": 0.69482421875}, {"start": 58.06, "end": 58.26, "word": " and", "probability": 0.42626953125}, {"start": 58.26, "end": 58.7, "word": " Abstract", "probability": 0.91259765625}, {"start": 58.7, "end": 59.14, "word": " Class", "probability": 0.90869140625}, {"start": 59.14, "end": 59.94, "word": " We", "probability": 0.38427734375}, {"start": 59.94, "end": 60.16, "word": " found", "probability": 0.337890625}, {"start": 60.16, "end": 60.7, "word": " that", "probability": 0.6552734375}, {"start": 60.7, "end": 61.46, "word": " it", "probability": 0.27880859375}, {"start": 61.46, "end": 61.48, "word": " is", "probability": 0.486083984375}, {"start": 61.48, "end": 61.6, "word": " true", "probability": 0.412353515625}, {"start": 61.6, "end": 61.7, "word": " that", "probability": 0.77197265625}, {"start": 61.7, "end": 61.72, "word": " when", "probability": 0.153564453125}, {"start": 61.72, "end": 61.72, "word": " you", "probability": 0.7373046875}, {"start": 61.72, "end": 61.98, "word": " deal", "probability": 0.332763671875}, {"start": 61.98, "end": 62.2, "word": " with", "probability": 0.90185546875}, {"start": 62.2, "end": 62.32, "word": " a", "probability": 0.34375}, {"start": 62.32, "end": 62.38, "word": " type", "probability": 0.1739501953125}, {"start": 62.38, "end": 62.54, "word": " of", "probability": 0.93017578125}, {"start": 62.54, "end": 62.64, "word": " child", "probability": 0.345947265625}, {"start": 62.64, "end": 62.82, "word": " from", "probability": 0.4931640625}, {"start": 62.82, "end": 63.0, "word": " a", "probability": 0.72998046875}, {"start": 63.0, "end": 63.0, "word": " type", "probability": 0.9453125}, {"start": 63.0, "end": 63.08, "word": " of", "probability": 0.97412109375}, {"start": 63.08, "end": 63.3, "word": " father", "probability": 0.611328125}, {"start": 63.3, "end": 63.88, "word": " it", "probability": 0.2293701171875}, {"start": 63.88, "end": 63.92, "word": " is", "probability": 0.7607421875}, {"start": 63.92, "end": 64.04, "word": " a", "probability": 0.5068359375}, {"start": 64.04, "end": 64.36, "word": " good", "probability": 0.8564453125}, {"start": 64.36, "end": 64.48, "word": " thing", "probability": 0.86865234375}, {"start": 64.48, "end": 64.6, "word": " because", "probability": 0.263916015625}, {"start": 64.6, "end": 64.62, "word": " it", "probability": 0.81591796875}, {"start": 64.62, "end": 64.9, "word": " provides", "probability": 0.427734375}, {"start": 64.9, "end": 65.28, "word": " you", "probability": 0.3984375}, {"start": 65.28, "end": 65.62, "word": " with", "probability": 0.70751953125}, {"start": 65.62, "end": 65.72, "word": " a", "probability": 0.7451171875}, {"start": 65.72, "end": 66.12, "word": " list", "probability": 0.341552734375}, {"start": 66.12, "end": 66.12, "word": " of", "probability": 0.703125}, {"start": 66.12, "end": 66.12, "word": " arrays", "probability": 0.414642333984375}, {"start": 66.12, "end": 66.38, "word": " and", "probability": 0.79052734375}, {"start": 66.38, "end": 67.0, "word": " a", "probability": 0.287841796875}, {"start": 67.0, "end": 67.3, "word": " loop", "probability": 0.9443359375}, {"start": 67.3, "end": 68.06, "word": " but", "probability": 0.4013671875}, {"start": 68.06, "end": 68.24, "word": " it", "probability": 0.64111328125}, {"start": 68.24, "end": 68.3, "word": " has", "probability": 0.66015625}, {"start": 68.3, "end": 68.42, "word": " a", "probability": 0.8046875}, {"start": 68.42, "end": 68.6, "word": " negative", "probability": 0.390869140625}, {"start": 68.6, "end": 68.86, "word": " aspect", "probability": 0.40673828125}, {"start": 68.86, "end": 70.08, "word": " which", "probability": 0.373046875}, {"start": 70.08, "end": 70.28, "word": " is", "probability": 0.88720703125}, {"start": 70.28, "end": 70.44, "word": " that", "probability": 0.8603515625}, {"start": 70.44, "end": 70.78, "word": " you", "probability": 0.93115234375}, {"start": 70.78, "end": 71.02, "word": " will", "probability": 0.41748046875}, {"start": 71.02, "end": 71.42, "word": " only", "probability": 0.66943359375}, {"start": 71.42, "end": 71.42, "word": " see", "probability": 0.81982421875}, {"start": 71.42, "end": 71.9, "word": " the", "probability": 0.470703125}, {"start": 71.9, "end": 72.14, "word": " things", "probability": 0.47314453125}, {"start": 72.14, "end": 72.36, "word": " that", "probability": 0.39013671875}, {"start": 72.36, "end": 72.38, "word": " are", "probability": 0.7451171875}, {"start": 72.38, "end": 72.56, "word": " present", "probability": 0.346923828125}, {"start": 72.56, "end": 72.68, "word": " in", "probability": 0.89697265625}, {"start": 72.68, "end": 72.76, "word": " the", "probability": 0.8310546875}, {"start": 72.76, "end": 72.92, "word": " father", "probability": 0.697265625}, {"start": 72.92, "end": 73.84, "word": " So", "probability": 0.42578125}, {"start": 73.84, "end": 73.94, "word": " we", "probability": 0.7822265625}, {"start": 73.94, "end": 74.12, "word": " decided", "probability": 0.48779296875}, {"start": 74.12, "end": 74.46, "word": " to", "probability": 0.86962890625}, {"start": 74.46, "end": 74.86, "word": " create", "probability": 0.325439453125}, {"start": 74.86, "end": 75.02, "word": " an", "probability": 0.666015625}, {"start": 75.02, "end": 75.46, "word": " Abstract", "probability": 0.78662109375}, {"start": 75.46, "end": 75.88, "word": " Method", "probability": 0.88818359375}, {"start": 75.88, "end": 76.8, "word": " to", "probability": 0.405517578125}, {"start": 76.8, "end": 77.26, "word": " see", "probability": 0.67822265625}, {"start": 77.26, "end": 77.38, "word": " it", "probability": 0.4052734375}, {"start": 77.38, "end": 77.48, "word": " in", "probability": 0.80078125}, {"start": 77.48, "end": 77.6, "word": " the", "probability": 0.84326171875}, {"start": 77.6, "end": 77.74, "word": " father", "probability": 0.837890625}, {"start": 77.74, "end": 77.94, "word": " but", "probability": 0.7412109375}, {"start": 77.94, "end": 78.38, "word": " implement", "probability": 0.2177734375}, {"start": 78.38, "end": 79.8, "word": " it", "probability": 0.86083984375}, {"start": 79.8, "end": 80.4, "word": " in", "probability": 0.337646484375}, {"start": 80.4, "end": 81.08, "word": " the", "probability": 0.77197265625}, {"start": 81.08, "end": 81.32, "word": " child", "probability": 0.86083984375}], "temperature": 1.0}, {"id": 4, "seek": 9895, "start": 82.73, "end": 98.95, "text": " And we got to know the concept that when you do an abstract method, each class has to be abstract So the abstract class is a class that includes implementation and common things, and also includes methods that are empty, abstract, so that children can implement them", "tokens": [400, 321, 658, 281, 458, 264, 3410, 300, 562, 291, 360, 364, 12649, 3170, 11, 1184, 1508, 575, 281, 312, 12649, 407, 264, 12649, 1508, 307, 257, 1508, 300, 5974, 11420, 293, 2689, 721, 11, 293, 611, 5974, 7150, 300, 366, 6707, 11, 12649, 11, 370, 300, 2227, 393, 4445, 552], "avg_logprob": -0.6340143944208438, "compression_ratio": 1.7115384615384615, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 82.73, "end": 83.23, "word": " And", "probability": 0.11627197265625}, {"start": 83.23, "end": 83.29, "word": " we", "probability": 0.71923828125}, {"start": 83.29, "end": 83.39, "word": " got", "probability": 0.225341796875}, {"start": 83.39, "end": 83.39, "word": " to", "probability": 0.654296875}, {"start": 83.39, "end": 83.63, "word": " know", "probability": 0.8037109375}, {"start": 83.63, "end": 83.75, "word": " the", "probability": 0.403076171875}, {"start": 83.75, "end": 83.97, "word": " concept", "probability": 0.72900390625}, {"start": 83.97, "end": 84.25, "word": " that", "probability": 0.55419921875}, {"start": 84.25, "end": 84.89, "word": " when", "probability": 0.407958984375}, {"start": 84.89, "end": 85.57, "word": " you", "probability": 0.78369140625}, {"start": 85.57, "end": 85.69, "word": " do", "probability": 0.341552734375}, {"start": 85.69, "end": 85.83, "word": " an", "probability": 0.3583984375}, {"start": 85.83, "end": 86.07, "word": " abstract", "probability": 0.84912109375}, {"start": 86.07, "end": 86.67, "word": " method,", "probability": 0.87646484375}, {"start": 86.95, "end": 87.65, "word": " each", "probability": 0.3837890625}, {"start": 87.65, "end": 87.97, "word": " class", "probability": 0.64501953125}, {"start": 87.97, "end": 88.19, "word": " has", "probability": 0.238525390625}, {"start": 88.19, "end": 88.21, "word": " to", "probability": 0.96826171875}, {"start": 88.21, "end": 88.51, "word": " be", "probability": 0.896484375}, {"start": 88.51, "end": 89.29, "word": " abstract", "probability": 0.72412109375}, {"start": 89.29, "end": 89.45, "word": " So", "probability": 0.1973876953125}, {"start": 89.45, "end": 89.55, "word": " the", "probability": 0.359130859375}, {"start": 89.55, "end": 89.75, "word": " abstract", "probability": 0.82763671875}, {"start": 89.75, "end": 90.21, "word": " class", "probability": 0.8994140625}, {"start": 90.21, "end": 90.37, "word": " is", "probability": 0.763671875}, {"start": 90.37, "end": 90.49, "word": " a", "probability": 0.79052734375}, {"start": 90.49, "end": 90.83, "word": " class", "probability": 0.9619140625}, {"start": 90.83, "end": 91.87, "word": " that", "probability": 0.57958984375}, {"start": 91.87, "end": 92.23, "word": " includes", "probability": 0.470458984375}, {"start": 92.23, "end": 92.95, "word": " implementation", "probability": 0.65087890625}, {"start": 92.95, "end": 93.17, "word": " and", "probability": 0.85400390625}, {"start": 93.17, "end": 93.19, "word": " common", "probability": 0.302734375}, {"start": 93.19, "end": 93.81, "word": " things,", "probability": 0.43896484375}, {"start": 94.03, "end": 94.03, "word": " and", "probability": 0.6044921875}, {"start": 94.03, "end": 94.63, "word": " also", "probability": 0.5166015625}, {"start": 94.63, "end": 94.83, "word": " includes", "probability": 0.61767578125}, {"start": 94.83, "end": 95.41, "word": " methods", "probability": 0.306640625}, {"start": 95.41, "end": 95.87, "word": " that", "probability": 0.734375}, {"start": 95.87, "end": 95.87, "word": " are", "probability": 0.8798828125}, {"start": 95.87, "end": 96.17, "word": " empty,", "probability": 0.50830078125}, {"start": 96.27, "end": 96.73, "word": " abstract,", "probability": 0.75048828125}, {"start": 96.81, "end": 96.97, "word": " so", "probability": 0.434814453125}, {"start": 96.97, "end": 97.17, "word": " that", "probability": 0.70263671875}, {"start": 97.17, "end": 97.53, "word": " children", "probability": 0.3212890625}, {"start": 97.53, "end": 98.57, "word": " can", "probability": 0.6669921875}, {"start": 98.57, "end": 98.83, "word": " implement", "probability": 0.2457275390625}, {"start": 98.83, "end": 98.95, "word": " them", "probability": 0.830078125}], "temperature": 1.0}, {"id": 5, "seek": 12614, "start": 101.52, "end": 126.14, "text": "Today, God willing, we will deal with the last topic in object-oriented programming, which is the topic of interface, okay? What is the interface in object-oriented programming? Who reminds us? Who knows what the interface is? They are circuits without a body. Circuits, I mean, circuits are abstract, they have no implementation, okay? And the variable must have a final state.", "tokens": [27676, 11, 1265, 4950, 11, 321, 486, 2028, 365, 264, 1036, 4829, 294, 2657, 12, 27414, 9410, 11, 597, 307, 264, 4829, 295, 9226, 11, 1392, 30, 708, 307, 264, 9226, 294, 2657, 12, 27414, 9410, 30, 2102, 12025, 505, 30, 2102, 3255, 437, 264, 9226, 307, 30, 814, 366, 26354, 1553, 257, 1772, 13, 28938, 7688, 11, 286, 914, 11, 26354, 366, 12649, 11, 436, 362, 572, 11420, 11, 1392, 30, 400, 264, 7006, 1633, 362, 257, 2572, 1785, 13], "avg_logprob": -0.5514481474713582, "compression_ratio": 1.7339449541284404, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 101.52, "end": 101.8, "word": "Today,", "probability": 0.4521484375}, {"start": 101.9, "end": 102.2, "word": " God", "probability": 0.3984375}, {"start": 102.2, "end": 102.2, "word": " willing,", "probability": 0.7060546875}, {"start": 102.72, "end": 102.86, "word": " we", "probability": 0.9052734375}, {"start": 102.86, "end": 102.9, "word": " will", "probability": 0.70703125}, {"start": 102.9, "end": 103.14, "word": " deal", "probability": 0.12353515625}, {"start": 103.14, "end": 103.3, "word": " with", "probability": 0.8623046875}, {"start": 103.3, "end": 103.74, "word": " the", "probability": 0.84326171875}, {"start": 103.74, "end": 103.92, "word": " last", "probability": 0.54443359375}, {"start": 103.92, "end": 104.02, "word": " topic", "probability": 0.69091796875}, {"start": 104.02, "end": 104.2, "word": " in", "probability": 0.6416015625}, {"start": 104.2, "end": 104.54, "word": " object", "probability": 0.65771484375}, {"start": 104.54, "end": 104.9, "word": "-oriented", "probability": 0.6490478515625}, {"start": 104.9, "end": 105.34, "word": " programming,", "probability": 0.890625}, {"start": 105.56, "end": 105.56, "word": " which", "probability": 0.685546875}, {"start": 105.56, "end": 105.68, "word": " is", "probability": 0.93212890625}, {"start": 105.68, "end": 105.72, "word": " the", "probability": 0.5888671875}, {"start": 105.72, "end": 105.86, "word": " topic", "probability": 0.382080078125}, {"start": 105.86, "end": 106.0, "word": " of", "probability": 0.9384765625}, {"start": 106.0, "end": 106.58, "word": " interface,", "probability": 0.381103515625}, {"start": 107.1, "end": 107.32, "word": " okay?", "probability": 0.42919921875}, {"start": 107.96, "end": 108.28, "word": " What", "probability": 0.8310546875}, {"start": 108.28, "end": 108.4, "word": " is", "probability": 0.91455078125}, {"start": 108.4, "end": 108.5, "word": " the", "probability": 0.68115234375}, {"start": 108.5, "end": 108.9, "word": " interface", "probability": 0.89501953125}, {"start": 108.9, "end": 109.1, "word": " in", "probability": 0.9052734375}, {"start": 109.1, "end": 109.84, "word": " object", "probability": 0.9443359375}, {"start": 109.84, "end": 110.22, "word": "-oriented", "probability": 0.90673828125}, {"start": 110.22, "end": 110.7, "word": " programming?", "probability": 0.890625}, {"start": 111.0, "end": 111.2, "word": " Who", "probability": 0.81787109375}, {"start": 111.2, "end": 111.44, "word": " reminds", "probability": 0.298095703125}, {"start": 111.44, "end": 111.74, "word": " us?", "probability": 0.91796875}, {"start": 111.76, "end": 111.88, "word": " Who", "probability": 0.8564453125}, {"start": 111.88, "end": 112.18, "word": " knows", "probability": 0.78271484375}, {"start": 112.18, "end": 112.44, "word": " what", "probability": 0.91162109375}, {"start": 112.44, "end": 112.6, "word": " the", "probability": 0.61865234375}, {"start": 112.6, "end": 113.1, "word": " interface", "probability": 0.89404296875}, {"start": 113.1, "end": 113.2, "word": " is?", "probability": 0.91162109375}, {"start": 114.72, "end": 114.82, "word": " They", "probability": 0.1107177734375}, {"start": 114.82, "end": 114.98, "word": " are", "probability": 0.90478515625}, {"start": 114.98, "end": 115.18, "word": " circuits", "probability": 0.0767822265625}, {"start": 115.18, "end": 115.38, "word": " without", "probability": 0.849609375}, {"start": 115.38, "end": 115.52, "word": " a", "probability": 0.320068359375}, {"start": 115.52, "end": 115.7, "word": " body.", "probability": 0.12548828125}, {"start": 116.38, "end": 116.84, "word": " Circuits,", "probability": 0.73876953125}, {"start": 117.1, "end": 117.22, "word": " I", "probability": 0.2469482421875}, {"start": 117.22, "end": 117.54, "word": " mean,", "probability": 0.96923828125}, {"start": 117.68, "end": 118.84, "word": " circuits", "probability": 0.552734375}, {"start": 118.84, "end": 119.62, "word": " are", "probability": 0.1798095703125}, {"start": 119.62, "end": 120.44, "word": " abstract,", "probability": 0.4296875}, {"start": 120.6, "end": 120.64, "word": " they", "probability": 0.26123046875}, {"start": 120.64, "end": 120.78, "word": " have", "probability": 0.68505859375}, {"start": 120.78, "end": 120.88, "word": " no", "probability": 0.95751953125}, {"start": 120.88, "end": 121.54, "word": " implementation,", "probability": 0.86767578125}, {"start": 122.36, "end": 122.58, "word": " okay?", "probability": 0.6953125}, {"start": 123.38, "end": 123.6, "word": " And", "probability": 0.83349609375}, {"start": 123.6, "end": 123.94, "word": " the", "probability": 0.7216796875}, {"start": 123.94, "end": 124.44, "word": " variable", "probability": 0.79541015625}, {"start": 124.44, "end": 124.7, "word": " must", "probability": 0.63134765625}, {"start": 124.7, "end": 124.94, "word": " have", "probability": 0.16259765625}, {"start": 124.94, "end": 125.52, "word": " a", "probability": 0.75}, {"start": 125.52, "end": 125.8, "word": " final", "probability": 0.69921875}, {"start": 125.8, "end": 126.14, "word": " state.", "probability": 0.43798828125}], "temperature": 1.0}, {"id": 6, "seek": 15605, "start": 127.05, "end": 156.05, "text": " Ok, so what is the interface? What do we need it for? You need to create an override for the plugin that you want to use Ok, also in the practical applications, when programming, do we need to create an interface? Can we live without an interface? No No, why not? You know the answer is no, so why not? If you think about it, there are common domains How? Common domains between what?", "tokens": [3477, 11, 370, 437, 307, 264, 9226, 30, 708, 360, 321, 643, 309, 337, 30, 509, 643, 281, 1884, 364, 42321, 337, 264, 23407, 300, 291, 528, 281, 764, 3477, 11, 611, 294, 264, 8496, 5821, 11, 562, 9410, 11, 360, 321, 643, 281, 1884, 364, 9226, 30, 1664, 321, 1621, 1553, 364, 9226, 30, 883, 883, 11, 983, 406, 30, 509, 458, 264, 1867, 307, 572, 11, 370, 983, 406, 30, 759, 291, 519, 466, 309, 11, 456, 366, 2689, 25514, 1012, 30, 18235, 25514, 1296, 437, 30], "avg_logprob": -0.6107639127307468, "compression_ratio": 1.7264573991031391, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 127.05, "end": 127.33, "word": " Ok,", "probability": 0.2481689453125}, {"start": 127.67, "end": 127.83, "word": " so", "probability": 0.1710205078125}, {"start": 127.83, "end": 129.63, "word": " what", "probability": 0.67578125}, {"start": 129.63, "end": 129.63, "word": " is", "probability": 0.6953125}, {"start": 129.63, "end": 129.79, "word": " the", "probability": 0.43310546875}, {"start": 129.79, "end": 130.23, "word": " interface?", "probability": 0.8603515625}, {"start": 131.27, "end": 131.51, "word": " What", "probability": 0.298828125}, {"start": 131.51, "end": 131.65, "word": " do", "probability": 0.31884765625}, {"start": 131.65, "end": 131.69, "word": " we", "probability": 0.7451171875}, {"start": 131.69, "end": 131.83, "word": " need", "probability": 0.77978515625}, {"start": 131.83, "end": 131.97, "word": " it", "probability": 0.357666015625}, {"start": 131.97, "end": 131.97, "word": " for?", "probability": 0.919921875}, {"start": 131.99, "end": 132.11, "word": " You", "probability": 0.09521484375}, {"start": 132.11, "end": 132.21, "word": " need", "probability": 0.375}, {"start": 132.21, "end": 132.21, "word": " to", "probability": 0.45556640625}, {"start": 132.21, "end": 132.77, "word": " create", "probability": 0.1505126953125}, {"start": 132.77, "end": 133.53, "word": " an", "probability": 0.58544921875}, {"start": 133.53, "end": 134.05, "word": " override", "probability": 0.9580078125}, {"start": 134.05, "end": 135.07, "word": " for", "probability": 0.537109375}, {"start": 135.07, "end": 135.45, "word": " the", "probability": 0.62353515625}, {"start": 135.45, "end": 135.81, "word": " plugin", "probability": 0.1143798828125}, {"start": 135.81, "end": 135.95, "word": " that", "probability": 0.28857421875}, {"start": 135.95, "end": 135.99, "word": " you", "probability": 0.62109375}, {"start": 135.99, "end": 136.21, "word": " want", "probability": 0.34716796875}, {"start": 136.21, "end": 136.21, "word": " to", "probability": 0.9208984375}, {"start": 136.21, "end": 136.37, "word": " use", "probability": 0.390380859375}, {"start": 136.37, "end": 137.35, "word": " Ok,", "probability": 0.1529541015625}, {"start": 137.99, "end": 138.37, "word": " also", "probability": 0.1578369140625}, {"start": 138.37, "end": 139.21, "word": " in", "probability": 0.39208984375}, {"start": 139.21, "end": 139.39, "word": " the", "probability": 0.356689453125}, {"start": 139.39, "end": 140.21, "word": " practical", "probability": 0.646484375}, {"start": 140.21, "end": 140.37, "word": " applications,", "probability": 0.74267578125}, {"start": 140.81, "end": 140.97, "word": " when", "probability": 0.8251953125}, {"start": 140.97, "end": 141.53, "word": " programming,", "probability": 0.24658203125}, {"start": 142.33, "end": 142.51, "word": " do", "probability": 0.6982421875}, {"start": 142.51, "end": 142.65, "word": " we", "probability": 0.90966796875}, {"start": 142.65, "end": 142.85, "word": " need", "probability": 0.54638671875}, {"start": 142.85, "end": 142.97, "word": " to", "probability": 0.78759765625}, {"start": 142.97, "end": 143.09, "word": " create", "probability": 0.466552734375}, {"start": 143.09, "end": 143.21, "word": " an", "probability": 0.72119140625}, {"start": 143.21, "end": 143.65, "word": " interface?", "probability": 0.8408203125}, {"start": 144.27, "end": 144.67, "word": " Can", "probability": 0.73876953125}, {"start": 144.67, "end": 144.89, "word": " we", "probability": 0.9521484375}, {"start": 144.89, "end": 145.05, "word": " live", "probability": 0.90283203125}, {"start": 145.05, "end": 145.21, "word": " without", "probability": 0.9091796875}, {"start": 145.21, "end": 145.35, "word": " an", "probability": 0.599609375}, {"start": 145.35, "end": 145.75, "word": " interface?", "probability": 0.87939453125}, {"start": 146.25, "end": 146.47, "word": " No", "probability": 0.77880859375}, {"start": 146.47, "end": 146.91, "word": " No,", "probability": 0.1878662109375}, {"start": 147.57, "end": 147.81, "word": " why", "probability": 0.7890625}, {"start": 147.81, "end": 148.01, "word": " not?", "probability": 0.63623046875}, {"start": 149.11, "end": 149.51, "word": " You", "probability": 0.420166015625}, {"start": 149.51, "end": 150.03, "word": " know", "probability": 0.818359375}, {"start": 150.03, "end": 150.13, "word": " the", "probability": 0.79345703125}, {"start": 150.13, "end": 150.33, "word": " answer", "probability": 0.966796875}, {"start": 150.33, "end": 150.41, "word": " is", "probability": 0.501953125}, {"start": 150.41, "end": 150.55, "word": " no,", "probability": 0.7763671875}, {"start": 150.67, "end": 150.87, "word": " so", "probability": 0.295166015625}, {"start": 150.87, "end": 151.11, "word": " why", "probability": 0.87939453125}, {"start": 151.11, "end": 151.27, "word": " not?", "probability": 0.91357421875}, {"start": 151.29, "end": 151.47, "word": " If", "probability": 0.2188720703125}, {"start": 151.47, "end": 151.67, "word": " you", "probability": 0.4892578125}, {"start": 151.67, "end": 151.71, "word": " think", "probability": 0.72802734375}, {"start": 151.71, "end": 151.91, "word": " about", "probability": 0.461181640625}, {"start": 151.91, "end": 151.97, "word": " it,", "probability": 0.7392578125}, {"start": 151.99, "end": 152.01, "word": " there", "probability": 0.86376953125}, {"start": 152.01, "end": 152.03, "word": " are", "probability": 0.8955078125}, {"start": 152.03, "end": 152.11, "word": " common", "probability": 0.360107421875}, {"start": 152.11, "end": 152.11, "word": " domains", "probability": 0.11700439453125}, {"start": 152.11, "end": 153.09, "word": " How?", "probability": 0.331787109375}, {"start": 153.41, "end": 153.75, "word": " Common", "probability": 0.8515625}, {"start": 153.75, "end": 153.75, "word": " domains", "probability": 0.888671875}, {"start": 153.75, "end": 155.77, "word": " between", "probability": 0.5693359375}, {"start": 155.77, "end": 156.05, "word": " what?", "probability": 0.767578125}], "temperature": 1.0}, {"id": 7, "seek": 18232, "start": 157.56, "end": 182.32, "text": " What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it? What if I didn't write it?", "tokens": [708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30, 708, 498, 286, 994, 380, 2464, 309, 30], "avg_logprob": -0.13583332697550457, "compression_ratio": 18.0, "no_speech_prob": 3.0100345611572266e-05, "words": [{"start": 157.56, "end": 157.6, "word": " What", "probability": 0.054443359375}, {"start": 157.6, "end": 157.64, "word": " if", "probability": 0.83935546875}, {"start": 157.64, "end": 157.82, "word": " I", "probability": 0.6064453125}, {"start": 157.82, "end": 157.88, "word": " didn't", "probability": 0.6907958984375}, {"start": 157.88, "end": 157.88, "word": " write", "probability": 0.5029296875}, {"start": 157.88, "end": 158.08, "word": " it?", "probability": 0.369140625}, {"start": 158.42, "end": 158.42, "word": " What", "probability": 0.485595703125}, {"start": 158.42, "end": 158.68, "word": " if", "probability": 0.91357421875}, {"start": 158.68, "end": 158.72, "word": " I", "probability": 0.8427734375}, {"start": 158.72, "end": 158.72, "word": " didn't", "probability": 0.91162109375}, {"start": 158.72, "end": 158.72, "word": " write", "probability": 0.27783203125}, {"start": 158.72, "end": 158.92, "word": " it?", "probability": 0.85888671875}, {"start": 158.96, "end": 159.1, "word": " What", "probability": 0.11407470703125}, {"start": 159.1, "end": 159.22, "word": " if", "probability": 0.9111328125}, {"start": 159.22, "end": 159.34, "word": " I", "probability": 0.81298828125}, {"start": 159.34, "end": 159.4, "word": " didn't", "probability": 0.9453125}, {"start": 159.4, "end": 159.6, "word": " write", "probability": 0.580078125}, {"start": 159.6, "end": 159.7, "word": " it?", "probability": 0.92236328125}, {"start": 160.9, "end": 161.2, "word": " What", "probability": 0.1531982421875}, {"start": 161.2, "end": 165.6, "word": " if", "probability": 0.935546875}, {"start": 165.6, "end": 166.62, "word": " I", "probability": 0.9609375}, {"start": 166.62, "end": 166.72, "word": " didn't", "probability": 0.966796875}, {"start": 166.72, "end": 166.72, "word": " write", "probability": 0.83056640625}, {"start": 166.72, "end": 167.22, "word": " it?", "probability": 0.94970703125}, {"start": 168.7, "end": 168.74, "word": " What", "probability": 0.3896484375}, {"start": 168.74, "end": 169.0, "word": " if", "probability": 0.94482421875}, {"start": 169.0, "end": 169.12, "word": " I", "probability": 0.9755859375}, {"start": 169.12, "end": 169.12, "word": " didn't", "probability": 0.970947265625}, {"start": 169.12, "end": 169.12, "word": " write", "probability": 0.88427734375}, {"start": 169.12, "end": 169.18, "word": " it?", "probability": 0.9521484375}, {"start": 170.08, "end": 170.08, "word": " What", "probability": 0.50830078125}, {"start": 170.08, "end": 171.32, "word": " if", "probability": 0.94091796875}, {"start": 171.32, "end": 171.34, "word": " I", "probability": 0.97705078125}, {"start": 171.34, "end": 171.38, "word": " didn't", "probability": 0.972412109375}, {"start": 171.38, "end": 171.4, "word": " write", "probability": 0.90869140625}, {"start": 171.4, "end": 171.58, "word": " it?", "probability": 0.95263671875}, {"start": 171.72, "end": 171.82, "word": " What", "probability": 0.55712890625}, {"start": 171.82, "end": 174.12, "word": " if", "probability": 0.9375}, {"start": 174.12, "end": 174.2, "word": " I", "probability": 0.97802734375}, {"start": 174.2, "end": 175.38, "word": " didn't", "probability": 0.972900390625}, {"start": 175.38, "end": 175.4, "word": " write", "probability": 0.923828125}, {"start": 175.4, "end": 176.14, "word": " it?", "probability": 0.953125}, {"start": 177.04, "end": 177.06, "word": " What", "probability": 0.5810546875}, {"start": 177.06, "end": 177.34, "word": " if", "probability": 0.93310546875}, {"start": 177.34, "end": 177.64, "word": " I", "probability": 0.98095703125}, {"start": 177.64, "end": 177.64, "word": " didn't", "probability": 0.9736328125}, {"start": 177.64, "end": 177.64, "word": " write", "probability": 0.9326171875}, {"start": 177.64, "end": 177.86, "word": " it?", "probability": 0.95361328125}, {"start": 178.24, "end": 178.24, "word": " What", "probability": 0.5986328125}, {"start": 178.24, "end": 178.24, "word": " if", "probability": 0.9296875}, {"start": 178.24, "end": 178.26, "word": " I", "probability": 0.98291015625}, {"start": 178.26, "end": 178.26, "word": " didn't", "probability": 0.974365234375}, {"start": 178.26, "end": 178.26, "word": " write", "probability": 0.93896484375}, {"start": 178.26, "end": 178.26, "word": " it?", "probability": 0.95556640625}, {"start": 178.26, "end": 178.26, "word": " What", "probability": 0.6103515625}, {"start": 178.26, "end": 178.26, "word": " if", "probability": 0.92822265625}, {"start": 178.26, "end": 178.28, "word": " I", "probability": 0.98486328125}, {"start": 178.28, "end": 178.28, "word": " didn't", "probability": 0.974609375}, {"start": 178.28, "end": 178.28, "word": " write", "probability": 0.94189453125}, {"start": 178.28, "end": 178.58, "word": " it?", "probability": 0.95654296875}, {"start": 178.62, "end": 178.62, "word": " What", "probability": 0.62109375}, {"start": 178.62, "end": 178.62, "word": " if", "probability": 0.92578125}, {"start": 178.62, "end": 178.62, "word": " I", "probability": 0.98583984375}, {"start": 178.62, "end": 178.62, "word": " didn't", "probability": 0.97509765625}, {"start": 178.62, "end": 178.62, "word": " write", "probability": 0.94287109375}, {"start": 178.62, "end": 178.62, "word": " it?", "probability": 0.9560546875}, {"start": 179.24, "end": 179.42, "word": " What", "probability": 0.63427734375}, {"start": 179.42, "end": 179.42, "word": " if", "probability": 0.92529296875}, {"start": 179.42, "end": 179.42, "word": " I", "probability": 0.98681640625}, {"start": 179.42, "end": 179.42, "word": " didn't", "probability": 0.975341796875}, {"start": 179.42, "end": 179.9, "word": " write", "probability": 0.94287109375}, {"start": 179.9, "end": 179.98, "word": " it?", "probability": 0.95654296875}, {"start": 180.26, "end": 180.26, "word": " What", "probability": 0.65185546875}, {"start": 180.26, "end": 180.26, "word": " if", "probability": 0.92529296875}, {"start": 180.26, "end": 180.26, "word": " I", "probability": 0.98779296875}, {"start": 180.26, "end": 180.26, "word": " didn't", "probability": 0.9755859375}, {"start": 180.26, "end": 180.26, "word": " write", "probability": 0.94287109375}, {"start": 180.26, "end": 180.26, "word": " it?", "probability": 0.95703125}, {"start": 180.4, "end": 180.4, "word": " What", "probability": 0.67236328125}, {"start": 180.4, "end": 180.4, "word": " if", "probability": 0.9267578125}, {"start": 180.4, "end": 180.4, "word": " I", "probability": 0.9892578125}, {"start": 180.4, "end": 180.4, "word": " didn't", "probability": 0.9755859375}, {"start": 180.4, "end": 180.4, "word": " write", "probability": 0.94287109375}, {"start": 180.4, "end": 180.4, "word": " it?", "probability": 0.95703125}, {"start": 180.56, "end": 180.56, "word": " What", "probability": 0.69482421875}, {"start": 180.56, "end": 180.56, "word": " if", "probability": 0.92822265625}, {"start": 180.56, "end": 180.56, "word": " I", "probability": 0.99072265625}, {"start": 180.56, "end": 180.56, "word": " didn't", "probability": 0.975341796875}, {"start": 180.56, "end": 180.56, "word": " write", "probability": 0.9423828125}, {"start": 180.56, "end": 180.56, "word": " it?", "probability": 0.95751953125}, {"start": 180.56, "end": 180.56, "word": " What", "probability": 0.71630859375}, {"start": 180.56, "end": 180.56, "word": " if", "probability": 0.9296875}, {"start": 180.56, "end": 180.56, "word": " I", "probability": 0.9921875}, {"start": 180.56, "end": 180.56, "word": " didn't", "probability": 0.975830078125}, {"start": 180.56, "end": 180.56, "word": " write", "probability": 0.9443359375}, {"start": 180.56, "end": 180.56, "word": " it?", "probability": 0.9580078125}, {"start": 180.74, "end": 180.78, "word": " What", "probability": 0.73779296875}, {"start": 180.78, "end": 181.32, "word": " if", "probability": 0.9326171875}, {"start": 181.32, "end": 181.32, "word": " I", "probability": 0.9931640625}, {"start": 181.32, "end": 181.32, "word": " didn't", "probability": 0.9755859375}, {"start": 181.32, "end": 181.32, "word": " write", "probability": 0.9453125}, {"start": 181.32, "end": 181.32, "word": " it?", "probability": 0.95947265625}, {"start": 181.32, "end": 181.48, "word": " What", "probability": 0.755859375}, {"start": 181.48, "end": 181.52, "word": " if", "probability": 0.93359375}, {"start": 181.52, "end": 181.66, "word": " I", "probability": 0.99365234375}, {"start": 181.66, "end": 181.66, "word": " didn't", "probability": 0.975341796875}, {"start": 181.66, "end": 181.66, "word": " write", "probability": 0.94677734375}, {"start": 181.66, "end": 181.66, "word": " it?", "probability": 0.95849609375}, {"start": 181.66, "end": 181.66, "word": " What", "probability": 0.77001953125}, {"start": 181.66, "end": 181.66, "word": " if", "probability": 0.935546875}, {"start": 181.66, "end": 181.66, "word": " I", "probability": 0.99462890625}, {"start": 181.66, "end": 181.66, "word": " didn't", "probability": 0.975341796875}, {"start": 181.66, "end": 181.78, "word": " write", "probability": 0.94775390625}, {"start": 181.78, "end": 182.1, "word": " it?", "probability": 0.95849609375}, {"start": 182.18, "end": 182.18, "word": " What", "probability": 0.7783203125}, {"start": 182.18, "end": 182.18, "word": " if", "probability": 0.93603515625}, {"start": 182.18, "end": 182.18, "word": " I", "probability": 0.9951171875}, {"start": 182.18, "end": 182.18, "word": " didn't", "probability": 0.97509765625}, {"start": 182.18, "end": 182.18, "word": " write", "probability": 0.94873046875}, {"start": 182.18, "end": 182.18, "word": " it?", "probability": 0.95849609375}, {"start": 182.18, "end": 182.18, "word": " What", "probability": 0.7890625}, {"start": 182.18, "end": 182.18, "word": " if", "probability": 0.9375}, {"start": 182.18, "end": 182.18, "word": " I", "probability": 0.99560546875}, {"start": 182.18, "end": 182.18, "word": " didn't", "probability": 0.974609375}, {"start": 182.18, "end": 182.18, "word": " write", "probability": 0.94921875}, {"start": 182.18, "end": 182.18, "word": " it?", "probability": 0.95849609375}, {"start": 182.18, "end": 182.18, "word": " What", "probability": 0.79541015625}, {"start": 182.18, "end": 182.18, "word": " if", "probability": 0.9384765625}, {"start": 182.18, "end": 182.18, "word": " I", "probability": 0.99560546875}, {"start": 182.18, "end": 182.18, "word": " didn't", "probability": 0.974609375}, {"start": 182.18, "end": 182.18, "word": " write", "probability": 0.94921875}, {"start": 182.18, "end": 182.18, "word": " it?", "probability": 0.95849609375}, {"start": 182.22, "end": 182.22, "word": " What", "probability": 0.80078125}, {"start": 182.22, "end": 182.22, "word": " if", "probability": 0.9384765625}, {"start": 182.22, "end": 182.22, "word": " I", "probability": 0.99609375}, {"start": 182.22, "end": 182.22, "word": " didn't", "probability": 0.974365234375}, {"start": 182.22, "end": 182.22, "word": " write", "probability": 0.94873046875}, {"start": 182.22, "end": 182.22, "word": " it?", "probability": 0.9599609375}, {"start": 182.22, "end": 182.22, "word": " What", "probability": 0.80859375}, {"start": 182.22, "end": 182.22, "word": " if", "probability": 0.94091796875}, {"start": 182.22, "end": 182.22, "word": " I", "probability": 0.99609375}, {"start": 182.22, "end": 182.22, "word": " didn't", "probability": 0.97412109375}, {"start": 182.22, "end": 182.22, "word": " write", "probability": 0.9482421875}, {"start": 182.22, "end": 182.22, "word": " it?", "probability": 0.95849609375}, {"start": 182.22, "end": 182.22, "word": " What", "probability": 0.81298828125}, {"start": 182.22, "end": 182.22, "word": " if", "probability": 0.9404296875}, {"start": 182.22, "end": 182.22, "word": " I", "probability": 0.99658203125}, {"start": 182.22, "end": 182.22, "word": " didn't", "probability": 0.973876953125}, {"start": 182.22, "end": 182.22, "word": " write", "probability": 0.94775390625}, {"start": 182.22, "end": 182.22, "word": " it?", "probability": 0.9599609375}, {"start": 182.22, "end": 182.32, "word": " What", "probability": 0.8212890625}, {"start": 182.32, "end": 182.32, "word": " if", "probability": 0.94287109375}, {"start": 182.32, "end": 182.32, "word": " I", "probability": 0.99658203125}, {"start": 182.32, "end": 182.32, "word": " didn't", "probability": 0.973876953125}, {"start": 182.32, "end": 182.32, "word": " write", "probability": 0.9482421875}, {"start": 182.32, "end": 182.32, "word": " it?", "probability": 0.95947265625}, {"start": 182.32, "end": 182.32, "word": " What", "probability": 0.82373046875}, {"start": 182.32, "end": 182.32, "word": " if", "probability": 0.943359375}, {"start": 182.32, "end": 182.32, "word": " I", "probability": 0.99658203125}, {"start": 182.32, "end": 182.32, "word": " didn't", "probability": 0.973876953125}, {"start": 182.32, "end": 182.32, "word": " write", "probability": 0.94775390625}, {"start": 182.32, "end": 182.32, "word": " it?", "probability": 0.95947265625}, {"start": 182.32, "end": 182.32, "word": " What", "probability": 0.82666015625}, {"start": 182.32, "end": 182.32, "word": " if", "probability": 0.9453125}, {"start": 182.32, "end": 182.32, "word": " I", "probability": 0.99658203125}, {"start": 182.32, "end": 182.32, "word": " didn't", "probability": 0.973876953125}, {"start": 182.32, "end": 182.32, "word": " write", "probability": 0.9462890625}, {"start": 182.32, "end": 182.32, "word": " it?", "probability": 0.96044921875}], "temperature": 1.0}, {"id": 8, "seek": 20392, "start": 195.78, "end": 203.92, "text": " If you don't make the interface", "tokens": [759, 291, 500, 380, 652, 264, 9226], "avg_logprob": -0.9990234076976776, "compression_ratio": 0.8, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 195.78, "end": 197.18, "word": " If", "probability": 0.04229736328125}, {"start": 197.18, "end": 198.58, "word": " you", "probability": 0.37744140625}, {"start": 198.58, "end": 199.56, "word": " don't", "probability": 0.57196044921875}, {"start": 199.56, "end": 202.94, "word": " make", "probability": 0.284912109375}, {"start": 202.94, "end": 203.42, "word": " the", "probability": 0.662109375}, {"start": 203.42, "end": 203.92, "word": " interface", "probability": 0.90185546875}], "temperature": 1.0}, {"id": 9, "seek": 23752, "start": 211.22, "end": 237.52, "text": " The user should have more rights than he should have No, it has nothing to do with rights, security and all that, yes In the interface, we don't have to know what the program is doing, there are tools inside it that we know what to do with them Okay, so when I implement for the interface, it forces me or determines what tools I have to implement Also, this is the main benefit", "tokens": [440, 4195, 820, 362, 544, 4601, 813, 415, 820, 362, 883, 11, 309, 575, 1825, 281, 360, 365, 4601, 11, 3825, 293, 439, 300, 11, 2086, 682, 264, 9226, 11, 321, 500, 380, 362, 281, 458, 437, 264, 1461, 307, 884, 11, 456, 366, 3873, 1854, 309, 300, 321, 458, 437, 281, 360, 365, 552, 1033, 11, 370, 562, 286, 4445, 337, 264, 9226, 11, 309, 5874, 385, 420, 24799, 437, 3873, 286, 362, 281, 4445, 2743, 11, 341, 307, 264, 2135, 5121], "avg_logprob": -0.6696428450800124, "compression_ratio": 1.7546296296296295, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 211.22, "end": 211.38, "word": " The", "probability": 0.1416015625}, {"start": 211.38, "end": 211.68, "word": " user", "probability": 0.89404296875}, {"start": 211.68, "end": 212.08, "word": " should", "probability": 0.32373046875}, {"start": 212.08, "end": 212.28, "word": " have", "probability": 0.8642578125}, {"start": 212.28, "end": 212.46, "word": " more", "probability": 0.67724609375}, {"start": 212.46, "end": 212.76, "word": " rights", "probability": 0.332275390625}, {"start": 212.76, "end": 213.2, "word": " than", "probability": 0.8271484375}, {"start": 213.2, "end": 213.42, "word": " he", "probability": 0.14208984375}, {"start": 213.42, "end": 213.64, "word": " should", "probability": 0.654296875}, {"start": 213.64, "end": 214.12, "word": " have", "probability": 0.64111328125}, {"start": 214.12, "end": 214.34, "word": " No,", "probability": 0.1348876953125}, {"start": 214.48, "end": 214.52, "word": " it", "probability": 0.4599609375}, {"start": 214.52, "end": 214.64, "word": " has", "probability": 0.5849609375}, {"start": 214.64, "end": 214.72, "word": " nothing", "probability": 0.87744140625}, {"start": 214.72, "end": 214.86, "word": " to", "probability": 0.9677734375}, {"start": 214.86, "end": 214.86, "word": " do", "probability": 0.96484375}, {"start": 214.86, "end": 214.96, "word": " with", "probability": 0.89013671875}, {"start": 214.96, "end": 215.38, "word": " rights,", "probability": 0.5947265625}, {"start": 215.6, "end": 215.98, "word": " security", "probability": 0.84716796875}, {"start": 215.98, "end": 216.22, "word": " and", "probability": 0.30908203125}, {"start": 216.22, "end": 216.34, "word": " all", "probability": 0.498046875}, {"start": 216.34, "end": 216.5, "word": " that,", "probability": 0.6025390625}, {"start": 216.5, "end": 216.76, "word": " yes", "probability": 0.47314453125}, {"start": 216.76, "end": 217.78, "word": " In", "probability": 0.2330322265625}, {"start": 217.78, "end": 217.92, "word": " the", "probability": 0.650390625}, {"start": 217.92, "end": 218.3, "word": " interface,", "probability": 0.85693359375}, {"start": 218.64, "end": 218.68, "word": " we", "probability": 0.4716796875}, {"start": 218.68, "end": 218.84, "word": " don't", "probability": 0.87353515625}, {"start": 218.84, "end": 219.06, "word": " have", "probability": 0.54052734375}, {"start": 219.06, "end": 219.16, "word": " to", "probability": 0.97314453125}, {"start": 219.16, "end": 219.5, "word": " know", "probability": 0.296875}, {"start": 219.5, "end": 219.7, "word": " what", "probability": 0.480224609375}, {"start": 219.7, "end": 219.74, "word": " the", "probability": 0.464111328125}, {"start": 219.74, "end": 220.02, "word": " program", "probability": 0.6826171875}, {"start": 220.02, "end": 220.26, "word": " is", "probability": 0.349853515625}, {"start": 220.26, "end": 220.5, "word": " doing,", "probability": 0.8623046875}, {"start": 220.66, "end": 220.82, "word": " there", "probability": 0.49072265625}, {"start": 220.82, "end": 220.92, "word": " are", "probability": 0.6298828125}, {"start": 220.92, "end": 222.5, "word": " tools", "probability": 0.048248291015625}, {"start": 222.5, "end": 222.52, "word": " inside", "probability": 0.53857421875}, {"start": 222.52, "end": 222.94, "word": " it", "probability": 0.58251953125}, {"start": 222.94, "end": 224.14, "word": " that", "probability": 0.64599609375}, {"start": 224.14, "end": 224.54, "word": " we", "probability": 0.381591796875}, {"start": 224.54, "end": 224.68, "word": " know", "probability": 0.701171875}, {"start": 224.68, "end": 225.56, "word": " what", "probability": 0.23193359375}, {"start": 225.56, "end": 226.5, "word": " to", "probability": 0.4638671875}, {"start": 226.5, "end": 226.86, "word": " do", "probability": 0.9580078125}, {"start": 226.86, "end": 226.9, "word": " with", "probability": 0.40625}, {"start": 226.9, "end": 227.98, "word": " them", "probability": 0.484619140625}, {"start": 227.98, "end": 228.34, "word": " Okay,", "probability": 0.226318359375}, {"start": 228.62, "end": 229.04, "word": " so", "probability": 0.6064453125}, {"start": 229.04, "end": 229.7, "word": " when", "probability": 0.771484375}, {"start": 229.7, "end": 230.62, "word": " I", "probability": 0.97119140625}, {"start": 230.62, "end": 231.14, "word": " implement", "probability": 0.57666015625}, {"start": 231.14, "end": 231.4, "word": " for", "probability": 0.2467041015625}, {"start": 231.4, "end": 231.46, "word": " the", "probability": 0.8818359375}, {"start": 231.46, "end": 232.06, "word": " interface,", "probability": 0.89404296875}, {"start": 232.4, "end": 232.72, "word": " it", "probability": 0.8916015625}, {"start": 232.72, "end": 232.9, "word": " forces", "probability": 0.619140625}, {"start": 232.9, "end": 233.14, "word": " me", "probability": 0.89208984375}, {"start": 233.14, "end": 233.26, "word": " or", "probability": 0.5029296875}, {"start": 233.26, "end": 233.6, "word": " determines", "probability": 0.364501953125}, {"start": 233.6, "end": 233.92, "word": " what", "probability": 0.491943359375}, {"start": 233.92, "end": 234.18, "word": " tools", "probability": 0.61962890625}, {"start": 234.18, "end": 234.34, "word": " I", "probability": 0.56298828125}, {"start": 234.34, "end": 234.46, "word": " have", "probability": 0.365234375}, {"start": 234.46, "end": 234.54, "word": " to", "probability": 0.97119140625}, {"start": 234.54, "end": 235.06, "word": " implement", "probability": 0.58349609375}, {"start": 235.06, "end": 236.74, "word": " Also,", "probability": 0.30859375}, {"start": 236.9, "end": 237.0, "word": " this", "probability": 0.6083984375}, {"start": 237.0, "end": 237.02, "word": " is", "probability": 0.92333984375}, {"start": 237.02, "end": 237.28, "word": " the", "probability": 0.830078125}, {"start": 237.28, "end": 237.32, "word": " main", "probability": 0.60009765625}, {"start": 237.32, "end": 237.52, "word": " benefit", "probability": 0.0665283203125}], "temperature": 1.0}, {"id": 10, "seek": 26742, "start": 241.42, "end": 267.42, "text": " How? No, it's not clear to you what the interface is. Okay, pay attention. To explain what the concept of the interface is, the best way is to give practical examples. That is, we are involved in implementation. Okay? And I will explain two examples. Pay attention with me because the lecture time is enough for these two examples. The first example, suppose that you are asked to make a program", "tokens": [1012, 30, 883, 11, 309, 311, 406, 1850, 281, 291, 437, 264, 9226, 307, 13, 1033, 11, 1689, 3202, 13, 1407, 2903, 437, 264, 3410, 295, 264, 9226, 307, 11, 264, 1151, 636, 307, 281, 976, 8496, 5110, 13, 663, 307, 11, 321, 366, 3288, 294, 11420, 13, 1033, 30, 400, 286, 486, 2903, 732, 5110, 13, 11431, 3202, 365, 385, 570, 264, 7991, 565, 307, 1547, 337, 613, 732, 5110, 13, 440, 700, 1365, 11, 7297, 300, 291, 366, 2351, 281, 652, 257, 1461], "avg_logprob": -0.47492732488831807, "compression_ratio": 1.6923076923076923, "no_speech_prob": 4.291534423828125e-06, "words": [{"start": 241.42, "end": 241.82, "word": " How?", "probability": 0.0255126953125}, {"start": 248.58, "end": 248.98, "word": " No,", "probability": 0.55517578125}, {"start": 249.08, "end": 249.2, "word": " it's", "probability": 0.626220703125}, {"start": 249.2, "end": 249.28, "word": " not", "probability": 0.83056640625}, {"start": 249.28, "end": 249.54, "word": " clear", "probability": 0.78173828125}, {"start": 249.54, "end": 249.66, "word": " to", "probability": 0.27685546875}, {"start": 249.66, "end": 249.94, "word": " you", "probability": 0.69287109375}, {"start": 249.94, "end": 250.2, "word": " what", "probability": 0.6044921875}, {"start": 250.2, "end": 250.3, "word": " the", "probability": 0.41064453125}, {"start": 250.3, "end": 250.68, "word": " interface", "probability": 0.89599609375}, {"start": 250.68, "end": 250.72, "word": " is.", "probability": 0.796875}, {"start": 250.82, "end": 250.92, "word": " Okay,", "probability": 0.26220703125}, {"start": 250.98, "end": 251.1, "word": " pay", "probability": 0.3603515625}, {"start": 251.1, "end": 251.2, "word": " attention.", "probability": 0.94482421875}, {"start": 251.36, "end": 251.58, "word": " To", "probability": 0.61865234375}, {"start": 251.58, "end": 251.9, "word": " explain", "probability": 0.63427734375}, {"start": 251.9, "end": 252.1, "word": " what", "probability": 0.57666015625}, {"start": 252.1, "end": 252.2, "word": " the", "probability": 0.740234375}, {"start": 252.2, "end": 252.38, "word": " concept", "probability": 0.493408203125}, {"start": 252.38, "end": 252.4, "word": " of", "probability": 0.95703125}, {"start": 252.4, "end": 252.48, "word": " the", "probability": 0.55615234375}, {"start": 252.48, "end": 252.9, "word": " interface", "probability": 0.89892578125}, {"start": 252.9, "end": 252.98, "word": " is,", "probability": 0.9052734375}, {"start": 253.1, "end": 253.1, "word": " the", "probability": 0.53173828125}, {"start": 253.1, "end": 253.26, "word": " best", "probability": 0.86962890625}, {"start": 253.26, "end": 253.72, "word": " way", "probability": 0.8916015625}, {"start": 253.72, "end": 254.34, "word": " is", "probability": 0.73388671875}, {"start": 254.34, "end": 254.38, "word": " to", "probability": 0.771484375}, {"start": 254.38, "end": 254.6, "word": " give", "probability": 0.257568359375}, {"start": 254.6, "end": 255.04, "word": " practical", "probability": 0.62255859375}, {"start": 255.04, "end": 255.14, "word": " examples.", "probability": 0.8486328125}, {"start": 255.74, "end": 255.94, "word": " That", "probability": 0.156494140625}, {"start": 255.94, "end": 256.0, "word": " is,", "probability": 0.8857421875}, {"start": 256.08, "end": 256.32, "word": " we", "probability": 0.83056640625}, {"start": 256.32, "end": 256.32, "word": " are", "probability": 0.7197265625}, {"start": 256.32, "end": 256.66, "word": " involved", "probability": 0.2291259765625}, {"start": 256.66, "end": 258.34, "word": " in", "probability": 0.91455078125}, {"start": 258.34, "end": 258.68, "word": " implementation.", "probability": 0.407958984375}, {"start": 259.2, "end": 259.44, "word": " Okay?", "probability": 0.65283203125}, {"start": 259.58, "end": 259.66, "word": " And", "probability": 0.6240234375}, {"start": 259.66, "end": 259.76, "word": " I", "probability": 0.98291015625}, {"start": 259.76, "end": 259.82, "word": " will", "probability": 0.76953125}, {"start": 259.82, "end": 259.94, "word": " explain", "probability": 0.83740234375}, {"start": 259.94, "end": 260.22, "word": " two", "probability": 0.7646484375}, {"start": 260.22, "end": 260.44, "word": " examples.", "probability": 0.8154296875}, {"start": 260.72, "end": 260.92, "word": " Pay", "probability": 0.7900390625}, {"start": 260.92, "end": 261.06, "word": " attention", "probability": 0.9384765625}, {"start": 261.06, "end": 261.16, "word": " with", "probability": 0.353271484375}, {"start": 261.16, "end": 261.3, "word": " me", "probability": 0.96533203125}, {"start": 261.3, "end": 261.44, "word": " because", "probability": 0.6552734375}, {"start": 261.44, "end": 261.56, "word": " the", "probability": 0.55029296875}, {"start": 261.56, "end": 261.98, "word": " lecture", "probability": 0.38232421875}, {"start": 261.98, "end": 262.04, "word": " time", "probability": 0.351806640625}, {"start": 262.04, "end": 262.14, "word": " is", "probability": 0.66943359375}, {"start": 262.14, "end": 262.38, "word": " enough", "probability": 0.7119140625}, {"start": 262.38, "end": 262.96, "word": " for", "probability": 0.491943359375}, {"start": 262.96, "end": 263.22, "word": " these", "probability": 0.67431640625}, {"start": 263.22, "end": 263.5, "word": " two", "probability": 0.57470703125}, {"start": 263.5, "end": 263.58, "word": " examples.", "probability": 0.8291015625}, {"start": 264.24, "end": 264.64, "word": " The", "probability": 0.71240234375}, {"start": 264.64, "end": 265.2, "word": " first", "probability": 0.88232421875}, {"start": 265.2, "end": 265.2, "word": " example,", "probability": 0.97607421875}, {"start": 265.52, "end": 265.8, "word": " suppose", "probability": 0.619140625}, {"start": 265.8, "end": 265.98, "word": " that", "probability": 0.4521484375}, {"start": 265.98, "end": 266.14, "word": " you", "probability": 0.955078125}, {"start": 266.14, "end": 266.26, "word": " are", "probability": 0.84326171875}, {"start": 266.26, "end": 266.5, "word": " asked", "probability": 0.82421875}, {"start": 266.5, "end": 266.76, "word": " to", "probability": 0.89697265625}, {"start": 266.76, "end": 266.96, "word": " make", "probability": 0.60205078125}, {"start": 266.96, "end": 267.08, "word": " a", "probability": 0.9765625}, {"start": 267.08, "end": 267.42, "word": " program", "probability": 0.88037109375}], "temperature": 1.0}, {"id": 11, "seek": 29264, "start": 268.88, "end": 292.64, "text": " It does task scheduling. What is task scheduling? Scheduling of tasks. There are certain tasks that must be carried out at one o'clock at night. Among these tasks, for example, we want to do backup. Okay? It takes certain files and copies them and saves them in a certain drive. It also wants to do security checks.", "tokens": [467, 775, 5633, 29055, 13, 708, 307, 5633, 29055, 30, 44926, 425, 278, 295, 9608, 13, 821, 366, 1629, 9608, 300, 1633, 312, 9094, 484, 412, 472, 277, 6, 9023, 412, 1818, 13, 16119, 613, 9608, 11, 337, 1365, 11, 321, 528, 281, 360, 14807, 13, 1033, 30, 467, 2516, 1629, 7098, 293, 14341, 552, 293, 19155, 552, 294, 257, 1629, 3332, 13, 467, 611, 2738, 281, 360, 3825, 13834, 13], "avg_logprob": -0.4631076285408603, "compression_ratio": 1.5879396984924623, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 268.88, "end": 269.06, "word": " It", "probability": 0.1220703125}, {"start": 269.06, "end": 269.38, "word": " does", "probability": 0.499755859375}, {"start": 269.38, "end": 269.84, "word": " task", "probability": 0.69775390625}, {"start": 269.84, "end": 270.34, "word": " scheduling.", "probability": 0.923828125}, {"start": 270.44, "end": 270.58, "word": " What", "probability": 0.63525390625}, {"start": 270.58, "end": 270.7, "word": " is", "probability": 0.685546875}, {"start": 270.7, "end": 270.96, "word": " task", "probability": 0.9013671875}, {"start": 270.96, "end": 271.42, "word": " scheduling?", "probability": 0.93212890625}, {"start": 272.6, "end": 273.08, "word": " Scheduling", "probability": 0.6720377604166666}, {"start": 273.08, "end": 273.42, "word": " of", "probability": 0.42529296875}, {"start": 273.42, "end": 273.64, "word": " tasks.", "probability": 0.8525390625}, {"start": 274.06, "end": 274.3, "word": " There", "probability": 0.54052734375}, {"start": 274.3, "end": 274.38, "word": " are", "probability": 0.84033203125}, {"start": 274.38, "end": 275.02, "word": " certain", "probability": 0.393310546875}, {"start": 275.02, "end": 275.06, "word": " tasks", "probability": 0.912109375}, {"start": 275.06, "end": 275.54, "word": " that", "probability": 0.74072265625}, {"start": 275.54, "end": 275.76, "word": " must", "probability": 0.31201171875}, {"start": 275.76, "end": 275.94, "word": " be", "probability": 0.94873046875}, {"start": 275.94, "end": 276.32, "word": " carried", "probability": 0.15673828125}, {"start": 276.32, "end": 276.4, "word": " out", "probability": 0.88623046875}, {"start": 276.4, "end": 277.9, "word": " at", "probability": 0.3984375}, {"start": 277.9, "end": 278.7, "word": " one", "probability": 0.36376953125}, {"start": 278.7, "end": 278.76, "word": " o", "probability": 0.744140625}, {"start": 278.76, "end": 279.04, "word": "'clock", "probability": 0.939208984375}, {"start": 279.04, "end": 279.24, "word": " at", "probability": 0.70263671875}, {"start": 279.24, "end": 279.42, "word": " night.", "probability": 0.88330078125}, {"start": 280.58, "end": 281.06, "word": " Among", "probability": 0.225341796875}, {"start": 281.06, "end": 281.36, "word": " these", "probability": 0.73583984375}, {"start": 281.36, "end": 281.64, "word": " tasks,", "probability": 0.92529296875}, {"start": 281.9, "end": 281.94, "word": " for", "probability": 0.6484375}, {"start": 281.94, "end": 282.16, "word": " example,", "probability": 0.92822265625}, {"start": 282.54, "end": 282.78, "word": " we", "probability": 0.383544921875}, {"start": 282.78, "end": 283.0, "word": " want", "probability": 0.265625}, {"start": 283.0, "end": 283.1, "word": " to", "probability": 0.939453125}, {"start": 283.1, "end": 283.28, "word": " do", "probability": 0.342041015625}, {"start": 283.28, "end": 283.66, "word": " backup.", "probability": 0.7919921875}, {"start": 284.7, "end": 284.88, "word": " Okay?", "probability": 0.2369384765625}, {"start": 285.66, "end": 285.9, "word": " It", "probability": 0.65283203125}, {"start": 285.9, "end": 286.1, "word": " takes", "probability": 0.74560546875}, {"start": 286.1, "end": 286.18, "word": " certain", "probability": 0.48681640625}, {"start": 286.18, "end": 286.5, "word": " files", "probability": 0.91552734375}, {"start": 286.5, "end": 287.12, "word": " and", "probability": 0.6611328125}, {"start": 287.12, "end": 287.7, "word": " copies", "probability": 0.479248046875}, {"start": 287.7, "end": 288.34, "word": " them", "probability": 0.68310546875}, {"start": 288.34, "end": 288.48, "word": " and", "probability": 0.7451171875}, {"start": 288.48, "end": 288.72, "word": " saves", "probability": 0.482177734375}, {"start": 288.72, "end": 288.84, "word": " them", "probability": 0.85546875}, {"start": 288.84, "end": 288.94, "word": " in", "probability": 0.76611328125}, {"start": 288.94, "end": 288.98, "word": " a", "probability": 0.92919921875}, {"start": 288.98, "end": 289.0, "word": " certain", "probability": 0.338623046875}, {"start": 289.0, "end": 289.24, "word": " drive.", "probability": 0.86474609375}, {"start": 290.44, "end": 290.92, "word": " It", "probability": 0.556640625}, {"start": 290.92, "end": 291.16, "word": " also", "probability": 0.72802734375}, {"start": 291.16, "end": 291.16, "word": " wants", "probability": 0.342041015625}, {"start": 291.16, "end": 291.22, "word": " to", "probability": 0.96923828125}, {"start": 291.22, "end": 291.42, "word": " do", "probability": 0.7041015625}, {"start": 291.42, "end": 292.26, "word": " security", "probability": 0.9638671875}, {"start": 292.26, "end": 292.64, "word": " checks.", "probability": 0.853515625}], "temperature": 1.0}, {"id": 12, "seek": 30937, "start": 293.83, "end": 309.37, "text": " It turns on the antivirus, checks the security, ports, etc. It wants to do a third task, which is to clean the disk space. There is a temporary file that is collected during the day on the server, and we want to delete it. Because these are different tasks.", "tokens": [467, 4523, 322, 264, 2511, 592, 9619, 11, 13834, 264, 3825, 11, 18160, 11, 5183, 13, 467, 2738, 281, 360, 257, 2636, 5633, 11, 597, 307, 281, 2541, 264, 12355, 1901, 13, 821, 307, 257, 13413, 3991, 300, 307, 11087, 1830, 264, 786, 322, 264, 7154, 11, 293, 321, 528, 281, 12097, 309, 13, 1436, 613, 366, 819, 9608, 13], "avg_logprob": -0.615778672890585, "compression_ratio": 1.5, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 293.83, "end": 294.27, "word": " It", "probability": 0.1597900390625}, {"start": 294.27, "end": 294.53, "word": " turns", "probability": 0.08428955078125}, {"start": 294.53, "end": 294.95, "word": " on", "probability": 0.427734375}, {"start": 294.95, "end": 295.09, "word": " the", "probability": 0.53466796875}, {"start": 295.09, "end": 295.63, "word": " antivirus,", "probability": 0.8671875}, {"start": 295.67, "end": 296.19, "word": " checks", "probability": 0.7080078125}, {"start": 296.19, "end": 296.39, "word": " the", "probability": 0.4130859375}, {"start": 296.39, "end": 296.87, "word": " security,", "probability": 0.61083984375}, {"start": 296.99, "end": 297.41, "word": " ports,", "probability": 0.64404296875}, {"start": 297.51, "end": 297.97, "word": " etc.", "probability": 0.414306640625}, {"start": 299.03, "end": 299.47, "word": " It", "probability": 0.31689453125}, {"start": 299.47, "end": 299.97, "word": " wants", "probability": 0.1192626953125}, {"start": 299.97, "end": 300.13, "word": " to", "probability": 0.95556640625}, {"start": 300.13, "end": 300.13, "word": " do", "probability": 0.44677734375}, {"start": 300.13, "end": 300.59, "word": " a", "probability": 0.5087890625}, {"start": 300.59, "end": 300.77, "word": " third", "probability": 0.685546875}, {"start": 300.77, "end": 300.77, "word": " task,", "probability": 0.394287109375}, {"start": 300.93, "end": 300.93, "word": " which", "probability": 0.39794921875}, {"start": 300.93, "end": 301.13, "word": " is", "probability": 0.9228515625}, {"start": 301.13, "end": 301.35, "word": " to", "probability": 0.609375}, {"start": 301.35, "end": 301.53, "word": " clean", "probability": 0.6767578125}, {"start": 301.53, "end": 301.79, "word": " the", "probability": 0.57958984375}, {"start": 301.79, "end": 301.99, "word": " disk", "probability": 0.923828125}, {"start": 301.99, "end": 302.47, "word": " space.", "probability": 0.89599609375}, {"start": 303.23, "end": 303.27, "word": " There", "probability": 0.412109375}, {"start": 303.27, "end": 303.35, "word": " is", "probability": 0.35205078125}, {"start": 303.35, "end": 303.59, "word": " a", "probability": 0.91259765625}, {"start": 303.59, "end": 303.73, "word": " temporary", "probability": 0.720703125}, {"start": 303.73, "end": 304.13, "word": " file", "probability": 0.8427734375}, {"start": 304.13, "end": 304.29, "word": " that", "probability": 0.61865234375}, {"start": 304.29, "end": 304.35, "word": " is", "probability": 0.29736328125}, {"start": 304.35, "end": 304.61, "word": " collected", "probability": 0.387939453125}, {"start": 304.61, "end": 304.83, "word": " during", "probability": 0.2685546875}, {"start": 304.83, "end": 304.99, "word": " the", "probability": 0.79248046875}, {"start": 304.99, "end": 305.19, "word": " day", "probability": 0.35009765625}, {"start": 305.19, "end": 305.59, "word": " on", "probability": 0.5869140625}, {"start": 305.59, "end": 305.71, "word": " the", "probability": 0.8955078125}, {"start": 305.71, "end": 306.05, "word": " server,", "probability": 0.90185546875}, {"start": 306.49, "end": 306.55, "word": " and", "probability": 0.4345703125}, {"start": 306.55, "end": 306.77, "word": " we", "probability": 0.36328125}, {"start": 306.77, "end": 306.77, "word": " want", "probability": 0.51220703125}, {"start": 306.77, "end": 306.81, "word": " to", "probability": 0.9384765625}, {"start": 306.81, "end": 308.01, "word": " delete", "probability": 0.70751953125}, {"start": 308.01, "end": 308.21, "word": " it.", "probability": 0.92138671875}, {"start": 308.59, "end": 308.83, "word": " Because", "probability": 0.43896484375}, {"start": 308.83, "end": 309.01, "word": " these", "probability": 0.642578125}, {"start": 309.01, "end": 309.13, "word": " are", "probability": 0.50146484375}, {"start": 309.13, "end": 309.13, "word": " different", "probability": 0.556640625}, {"start": 309.13, "end": 309.37, "word": " tasks.", "probability": 0.896484375}], "temperature": 1.0}, {"id": 13, "seek": 32864, "start": 312.0, "end": 328.64, "text": "Each task has specific attributes such as backup, security, IP, etc. Each task has specific attributes and steps", "tokens": [36, 608, 5633, 575, 2685, 17212, 1270, 382, 14807, 11, 3825, 11, 8671, 11, 5183, 13, 6947, 5633, 575, 2685, 17212, 293, 4439], "avg_logprob": -0.7272135217984518, "compression_ratio": 1.3658536585365855, "no_speech_prob": 0.0, "words": [{"start": 312.0, "end": 312.26, "word": "Each", "probability": 0.53662109375}, {"start": 312.26, "end": 312.62, "word": " task", "probability": 0.56494140625}, {"start": 312.62, "end": 313.32, "word": " has", "probability": 0.82763671875}, {"start": 313.32, "end": 313.6, "word": " specific", "probability": 0.291015625}, {"start": 313.6, "end": 314.54, "word": " attributes", "probability": 0.64990234375}, {"start": 314.54, "end": 315.22, "word": " such", "probability": 0.0953369140625}, {"start": 315.22, "end": 315.38, "word": " as", "probability": 0.97314453125}, {"start": 315.38, "end": 315.8, "word": " backup,", "probability": 0.497314453125}, {"start": 318.06, "end": 318.54, "word": " security,", "probability": 0.50390625}, {"start": 319.88, "end": 320.3, "word": " IP,", "probability": 0.1973876953125}, {"start": 322.7, "end": 323.28, "word": " etc.", "probability": 0.256591796875}, {"start": 323.44, "end": 323.64, "word": " Each", "probability": 0.548828125}, {"start": 323.64, "end": 323.98, "word": " task", "probability": 0.89208984375}, {"start": 323.98, "end": 324.2, "word": " has", "probability": 0.91162109375}, {"start": 324.2, "end": 324.68, "word": " specific", "probability": 0.36474609375}, {"start": 324.68, "end": 325.18, "word": " attributes", "probability": 0.88232421875}, {"start": 325.18, "end": 328.22, "word": " and", "probability": 0.89599609375}, {"start": 328.22, "end": 328.64, "word": " steps", "probability": 0.75146484375}], "temperature": 1.0}, {"id": 14, "seek": 35485, "start": 330.13, "end": 354.85, "text": " These tasks, the first step you want to do is to do the task, right? Your manager told you to do these tasks, so you want to program the scheduling task, you want to program the backup task, you want to program the security task, right or not, and then execute them. This is how you program them, because when we learn, when we think, we think about what the parts in the program are, and if the parts or entities have multiple data, what do you represent them with?", "tokens": [1981, 9608, 11, 264, 700, 1823, 291, 528, 281, 360, 307, 281, 360, 264, 5633, 11, 558, 30, 2260, 6598, 1907, 291, 281, 360, 613, 9608, 11, 370, 291, 528, 281, 1461, 264, 29055, 5633, 11, 291, 528, 281, 1461, 264, 14807, 5633, 11, 291, 528, 281, 1461, 264, 3825, 5633, 11, 558, 420, 406, 11, 293, 550, 14483, 552, 13, 639, 307, 577, 291, 1461, 552, 11, 570, 562, 321, 1466, 11, 562, 321, 519, 11, 321, 519, 466, 437, 264, 3166, 294, 264, 1461, 366, 11, 293, 498, 264, 3166, 420, 16667, 362, 3866, 1412, 11, 437, 360, 291, 2906, 552, 365, 30], "avg_logprob": -0.42688678176897876, "compression_ratio": 1.9957264957264957, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 330.13, "end": 330.57, "word": " These", "probability": 0.1072998046875}, {"start": 330.57, "end": 330.93, "word": " tasks,", "probability": 0.82666015625}, {"start": 331.57, "end": 332.17, "word": " the", "probability": 0.37158203125}, {"start": 332.17, "end": 332.41, "word": " first", "probability": 0.8544921875}, {"start": 332.41, "end": 332.77, "word": " step", "probability": 0.72314453125}, {"start": 332.77, "end": 332.85, "word": " you", "probability": 0.42919921875}, {"start": 332.85, "end": 332.93, "word": " want", "probability": 0.1453857421875}, {"start": 332.93, "end": 333.07, "word": " to", "probability": 0.9560546875}, {"start": 333.07, "end": 333.29, "word": " do", "probability": 0.765625}, {"start": 333.29, "end": 333.57, "word": " is", "probability": 0.65380859375}, {"start": 333.57, "end": 333.57, "word": " to", "probability": 0.4755859375}, {"start": 333.57, "end": 334.31, "word": " do", "probability": 0.212890625}, {"start": 334.31, "end": 334.45, "word": " the", "probability": 0.392578125}, {"start": 334.45, "end": 334.77, "word": " task,", "probability": 0.7138671875}, {"start": 334.97, "end": 335.21, "word": " right?", "probability": 0.7099609375}, {"start": 335.71, "end": 336.15, "word": " Your", "probability": 0.326416015625}, {"start": 336.15, "end": 336.35, "word": " manager", "probability": 0.46484375}, {"start": 336.35, "end": 336.59, "word": " told", "probability": 0.53955078125}, {"start": 336.59, "end": 336.71, "word": " you", "probability": 0.95556640625}, {"start": 336.71, "end": 336.77, "word": " to", "probability": 0.8876953125}, {"start": 336.77, "end": 336.95, "word": " do", "probability": 0.85302734375}, {"start": 336.95, "end": 337.07, "word": " these", "probability": 0.79296875}, {"start": 337.07, "end": 337.49, "word": " tasks,", "probability": 0.92626953125}, {"start": 337.59, "end": 338.31, "word": " so", "probability": 0.599609375}, {"start": 338.31, "end": 338.51, "word": " you", "probability": 0.935546875}, {"start": 338.51, "end": 338.51, "word": " want", "probability": 0.6123046875}, {"start": 338.51, "end": 338.67, "word": " to", "probability": 0.97216796875}, {"start": 338.67, "end": 338.85, "word": " program", "probability": 0.70166015625}, {"start": 338.85, "end": 339.11, "word": " the", "probability": 0.8076171875}, {"start": 339.11, "end": 339.45, "word": " scheduling", "probability": 0.7978515625}, {"start": 339.45, "end": 339.85, "word": " task,", "probability": 0.76123046875}, {"start": 339.97, "end": 339.97, "word": " you", "probability": 0.287841796875}, {"start": 339.97, "end": 340.07, "word": " want", "probability": 0.82373046875}, {"start": 340.07, "end": 340.45, "word": " to", "probability": 0.97412109375}, {"start": 340.45, "end": 340.69, "word": " program", "probability": 0.89794921875}, {"start": 340.69, "end": 340.97, "word": " the", "probability": 0.89013671875}, {"start": 340.97, "end": 341.23, "word": " backup", "probability": 0.9482421875}, {"start": 341.23, "end": 341.61, "word": " task,", "probability": 0.92529296875}, {"start": 341.75, "end": 341.77, "word": " you", "probability": 0.74658203125}, {"start": 341.77, "end": 341.87, "word": " want", "probability": 0.822265625}, {"start": 341.87, "end": 341.87, "word": " to", "probability": 0.97607421875}, {"start": 341.87, "end": 341.97, "word": " program", "probability": 0.9013671875}, {"start": 341.97, "end": 342.19, "word": " the", "probability": 0.908203125}, {"start": 342.19, "end": 342.49, "word": " security", "probability": 0.9658203125}, {"start": 342.49, "end": 342.99, "word": " task,", "probability": 0.92626953125}, {"start": 343.35, "end": 343.53, "word": " right", "probability": 0.654296875}, {"start": 343.53, "end": 343.69, "word": " or", "probability": 0.5009765625}, {"start": 343.69, "end": 343.75, "word": " not,", "probability": 0.64306640625}, {"start": 344.07, "end": 344.23, "word": " and", "probability": 0.875}, {"start": 344.23, "end": 344.47, "word": " then", "probability": 0.81982421875}, {"start": 344.47, "end": 344.75, "word": " execute", "probability": 0.364990234375}, {"start": 344.75, "end": 345.07, "word": " them.", "probability": 0.84326171875}, {"start": 345.45, "end": 345.67, "word": " This", "probability": 0.302734375}, {"start": 345.67, "end": 345.73, "word": " is", "probability": 0.75146484375}, {"start": 345.73, "end": 345.73, "word": " how", "probability": 0.93408203125}, {"start": 345.73, "end": 345.85, "word": " you", "probability": 0.93212890625}, {"start": 345.85, "end": 346.07, "word": " program", "probability": 0.8623046875}, {"start": 346.07, "end": 346.45, "word": " them,", "probability": 0.8837890625}, {"start": 346.91, "end": 347.09, "word": " because", "probability": 0.689453125}, {"start": 347.09, "end": 347.29, "word": " when", "probability": 0.37939453125}, {"start": 347.29, "end": 347.55, "word": " we", "probability": 0.84375}, {"start": 347.55, "end": 348.23, "word": " learn,", "probability": 0.495849609375}, {"start": 348.35, "end": 348.45, "word": " when", "probability": 0.794921875}, {"start": 348.45, "end": 348.59, "word": " we", "probability": 0.8818359375}, {"start": 348.59, "end": 348.93, "word": " think,", "probability": 0.89892578125}, {"start": 349.39, "end": 349.53, "word": " we", "probability": 0.50244140625}, {"start": 349.53, "end": 349.79, "word": " think", "probability": 0.83154296875}, {"start": 349.79, "end": 349.91, "word": " about", "probability": 0.63525390625}, {"start": 349.91, "end": 350.03, "word": " what", "probability": 0.60693359375}, {"start": 350.03, "end": 350.13, "word": " the", "probability": 0.2802734375}, {"start": 350.13, "end": 350.43, "word": " parts", "probability": 0.73046875}, {"start": 350.43, "end": 350.63, "word": " in", "probability": 0.556640625}, {"start": 350.63, "end": 350.75, "word": " the", "probability": 0.90087890625}, {"start": 350.75, "end": 351.19, "word": " program", "probability": 0.90087890625}, {"start": 351.19, "end": 351.65, "word": " are,", "probability": 0.49365234375}, {"start": 351.69, "end": 351.81, "word": " and", "probability": 0.60546875}, {"start": 351.81, "end": 351.93, "word": " if", "probability": 0.66650390625}, {"start": 351.93, "end": 352.07, "word": " the", "probability": 0.8017578125}, {"start": 352.07, "end": 352.41, "word": " parts", "probability": 0.8427734375}, {"start": 352.41, "end": 352.59, "word": " or", "probability": 0.88916015625}, {"start": 352.59, "end": 353.09, "word": " entities", "probability": 0.6884765625}, {"start": 353.09, "end": 353.39, "word": " have", "probability": 0.9384765625}, {"start": 353.39, "end": 353.43, "word": " multiple", "probability": 0.8017578125}, {"start": 353.43, "end": 353.67, "word": " data,", "probability": 0.82421875}, {"start": 354.25, "end": 354.37, "word": " what", "probability": 0.29833984375}, {"start": 354.37, "end": 354.37, "word": " do", "probability": 0.73876953125}, {"start": 354.37, "end": 354.41, "word": " you", "probability": 0.6689453125}, {"start": 354.41, "end": 354.65, "word": " represent", "probability": 0.7373046875}, {"start": 354.65, "end": 354.77, "word": " them", "probability": 0.66845703125}, {"start": 354.77, "end": 354.85, "word": " with?", "probability": 0.775390625}], "temperature": 1.0}, {"id": 15, "seek": 38345, "start": 355.89, "end": 383.45, "text": " with a class then we have a task called backup task it has information about it and steps about it and you have a task called security checks it also has attributes and steps it represents each one in a class let's do something similar to this task to see if we can reach the end I made a new class and I want to call it backup task", "tokens": [365, 257, 1508, 550, 321, 362, 257, 5633, 1219, 14807, 5633, 309, 575, 1589, 466, 309, 293, 4439, 466, 309, 293, 291, 362, 257, 5633, 1219, 3825, 13834, 309, 611, 575, 17212, 293, 4439, 309, 8855, 1184, 472, 294, 257, 1508, 718, 311, 360, 746, 2531, 281, 341, 5633, 281, 536, 498, 321, 393, 2524, 264, 917, 286, 1027, 257, 777, 1508, 293, 286, 528, 281, 818, 309, 14807, 5633], "avg_logprob": -0.45994719149361196, "compression_ratio": 1.7712765957446808, "no_speech_prob": 4.589557647705078e-06, "words": [{"start": 355.89, "end": 356.11, "word": " with", "probability": 0.133544921875}, {"start": 356.11, "end": 356.21, "word": " a", "probability": 0.303955078125}, {"start": 356.21, "end": 356.41, "word": " class", "probability": 0.92724609375}, {"start": 356.41, "end": 357.01, "word": " then", "probability": 0.12005615234375}, {"start": 357.01, "end": 357.27, "word": " we", "probability": 0.6884765625}, {"start": 357.27, "end": 357.47, "word": " have", "probability": 0.88623046875}, {"start": 357.47, "end": 357.61, "word": " a", "probability": 0.64794921875}, {"start": 357.61, "end": 357.87, "word": " task", "probability": 0.89794921875}, {"start": 357.87, "end": 358.23, "word": " called", "probability": 0.5419921875}, {"start": 358.23, "end": 358.77, "word": " backup", "probability": 0.60546875}, {"start": 358.77, "end": 359.25, "word": " task", "probability": 0.92236328125}, {"start": 359.25, "end": 360.17, "word": " it", "probability": 0.34521484375}, {"start": 360.17, "end": 360.49, "word": " has", "probability": 0.83740234375}, {"start": 360.49, "end": 360.81, "word": " information", "probability": 0.1846923828125}, {"start": 360.81, "end": 361.17, "word": " about", "probability": 0.41455078125}, {"start": 361.17, "end": 361.41, "word": " it", "probability": 0.85498046875}, {"start": 361.41, "end": 361.55, "word": " and", "probability": 0.79833984375}, {"start": 361.55, "end": 361.93, "word": " steps", "probability": 0.53955078125}, {"start": 361.93, "end": 362.33, "word": " about", "probability": 0.5927734375}, {"start": 362.33, "end": 362.99, "word": " it", "probability": 0.94384765625}, {"start": 362.99, "end": 363.53, "word": " and", "probability": 0.72216796875}, {"start": 363.53, "end": 363.79, "word": " you", "probability": 0.59716796875}, {"start": 363.79, "end": 363.79, "word": " have", "probability": 0.916015625}, {"start": 363.79, "end": 363.89, "word": " a", "probability": 0.853515625}, {"start": 363.89, "end": 364.09, "word": " task", "probability": 0.9501953125}, {"start": 364.09, "end": 364.45, "word": " called", "probability": 0.84814453125}, {"start": 364.45, "end": 365.65, "word": " security", "probability": 0.93896484375}, {"start": 365.65, "end": 366.09, "word": " checks", "probability": 0.78759765625}, {"start": 366.09, "end": 366.43, "word": " it", "probability": 0.49169921875}, {"start": 366.43, "end": 366.73, "word": " also", "probability": 0.52294921875}, {"start": 366.73, "end": 366.73, "word": " has", "probability": 0.88720703125}, {"start": 366.73, "end": 367.27, "word": " attributes", "probability": 0.84033203125}, {"start": 367.27, "end": 367.51, "word": " and", "probability": 0.92626953125}, {"start": 367.51, "end": 367.85, "word": " steps", "probability": 0.88818359375}, {"start": 367.85, "end": 368.55, "word": " it", "probability": 0.2138671875}, {"start": 368.55, "end": 368.93, "word": " represents", "probability": 0.5927734375}, {"start": 368.93, "end": 369.17, "word": " each", "probability": 0.8798828125}, {"start": 369.17, "end": 369.49, "word": " one", "probability": 0.52099609375}, {"start": 369.49, "end": 370.43, "word": " in", "probability": 0.73291015625}, {"start": 370.43, "end": 370.49, "word": " a", "probability": 0.861328125}, {"start": 370.49, "end": 370.79, "word": " class", "probability": 0.9599609375}, {"start": 370.79, "end": 371.59, "word": " let's", "probability": 0.772216796875}, {"start": 371.59, "end": 371.75, "word": " do", "probability": 0.861328125}, {"start": 371.75, "end": 372.33, "word": " something", "probability": 0.80712890625}, {"start": 372.33, "end": 372.95, "word": " similar", "probability": 0.7548828125}, {"start": 372.95, "end": 373.07, "word": " to", "probability": 0.76220703125}, {"start": 373.07, "end": 373.17, "word": " this", "probability": 0.8173828125}, {"start": 373.17, "end": 373.39, "word": " task", "probability": 0.350341796875}, {"start": 373.39, "end": 373.73, "word": " to", "probability": 0.65673828125}, {"start": 373.73, "end": 373.93, "word": " see", "probability": 0.80517578125}, {"start": 373.93, "end": 374.09, "word": " if", "probability": 0.3740234375}, {"start": 374.09, "end": 374.23, "word": " we", "probability": 0.377685546875}, {"start": 374.23, "end": 374.27, "word": " can", "probability": 0.59375}, {"start": 374.27, "end": 374.49, "word": " reach", "probability": 0.323974609375}, {"start": 374.49, "end": 374.63, "word": " the", "probability": 0.7255859375}, {"start": 374.63, "end": 374.93, "word": " end", "probability": 0.74658203125}, {"start": 374.93, "end": 377.25, "word": " I", "probability": 0.489013671875}, {"start": 377.25, "end": 377.59, "word": " made", "probability": 0.376953125}, {"start": 377.59, "end": 378.21, "word": " a", "probability": 0.94287109375}, {"start": 378.21, "end": 378.49, "word": " new", "probability": 0.91259765625}, {"start": 378.49, "end": 379.59, "word": " class", "probability": 0.94189453125}, {"start": 379.59, "end": 380.39, "word": " and", "probability": 0.6376953125}, {"start": 380.39, "end": 380.65, "word": " I", "probability": 0.6767578125}, {"start": 380.65, "end": 380.77, "word": " want", "probability": 0.455810546875}, {"start": 380.77, "end": 380.87, "word": " to", "probability": 0.958984375}, {"start": 380.87, "end": 381.07, "word": " call", "probability": 0.63525390625}, {"start": 381.07, "end": 381.21, "word": " it", "probability": 0.5517578125}, {"start": 381.21, "end": 381.79, "word": " backup", "probability": 0.5185546875}, {"start": 381.79, "end": 383.45, "word": " task", "probability": 0.89697265625}], "temperature": 1.0}, {"id": 16, "seek": 40860, "start": 386.56, "end": 408.6, "text": " There are attributes specific to backup. What path do you want to use for backup? What kind of files do you want to take from where? We are not going to write a detailed code. We imagine a program and the idea is in its structure. For example, there is a method here, public void doBackup or run or execute.", "tokens": [821, 366, 951, 81, 897, 1819, 2685, 281, 14807, 13, 708, 3100, 360, 291, 528, 281, 764, 337, 14807, 30, 708, 733, 295, 7098, 360, 291, 528, 281, 747, 490, 689, 30, 492, 366, 406, 516, 281, 2464, 257, 9942, 3089, 13, 492, 3811, 257, 1461, 293, 264, 1558, 307, 294, 1080, 3877, 13, 1171, 1365, 11, 456, 307, 257, 3170, 510, 11, 1908, 22009, 360, 28404, 1010, 420, 1190, 420, 14483, 13], "avg_logprob": -0.5739020133340681, "compression_ratio": 1.5323383084577114, "no_speech_prob": 6.198883056640625e-06, "words": [{"start": 386.56, "end": 387.04, "word": " There", "probability": 0.296142578125}, {"start": 387.04, "end": 387.16, "word": " are", "probability": 0.845703125}, {"start": 387.16, "end": 387.68, "word": " attributes", "probability": 0.619842529296875}, {"start": 387.68, "end": 387.96, "word": " specific", "probability": 0.1798095703125}, {"start": 387.96, "end": 388.06, "word": " to", "probability": 0.8134765625}, {"start": 388.06, "end": 388.34, "word": " backup.", "probability": 0.3623046875}, {"start": 388.52, "end": 388.74, "word": " What", "probability": 0.49365234375}, {"start": 388.74, "end": 389.16, "word": " path", "probability": 0.492919921875}, {"start": 389.16, "end": 389.3, "word": " do", "probability": 0.27734375}, {"start": 389.3, "end": 389.3, "word": " you", "probability": 0.46142578125}, {"start": 389.3, "end": 389.56, "word": " want", "probability": 0.60546875}, {"start": 389.56, "end": 389.6, "word": " to", "probability": 0.84716796875}, {"start": 389.6, "end": 389.6, "word": " use", "probability": 0.35302734375}, {"start": 389.6, "end": 389.82, "word": " for", "probability": 0.314697265625}, {"start": 389.82, "end": 389.96, "word": " backup?", "probability": 0.662109375}, {"start": 390.06, "end": 390.18, "word": " What", "probability": 0.55908203125}, {"start": 390.18, "end": 390.38, "word": " kind", "probability": 0.1839599609375}, {"start": 390.38, "end": 390.5, "word": " of", "probability": 0.96044921875}, {"start": 390.5, "end": 390.74, "word": " files", "probability": 0.8515625}, {"start": 390.74, "end": 391.0, "word": " do", "probability": 0.70849609375}, {"start": 391.0, "end": 391.02, "word": " you", "probability": 0.95458984375}, {"start": 391.02, "end": 391.1, "word": " want", "probability": 0.759765625}, {"start": 391.1, "end": 391.1, "word": " to", "probability": 0.88916015625}, {"start": 391.1, "end": 391.26, "word": " take", "probability": 0.3427734375}, {"start": 391.26, "end": 391.42, "word": " from", "probability": 0.443115234375}, {"start": 391.42, "end": 391.6, "word": " where?", "probability": 0.87548828125}, {"start": 392.26, "end": 392.74, "word": " We", "probability": 0.4931640625}, {"start": 392.74, "end": 393.24, "word": " are", "probability": 0.1968994140625}, {"start": 393.24, "end": 393.24, "word": " not", "probability": 0.9306640625}, {"start": 393.24, "end": 393.36, "word": " going", "probability": 0.849609375}, {"start": 393.36, "end": 393.36, "word": " to", "probability": 0.97021484375}, {"start": 393.36, "end": 393.52, "word": " write", "probability": 0.79833984375}, {"start": 393.52, "end": 393.66, "word": " a", "probability": 0.407470703125}, {"start": 393.66, "end": 394.0, "word": " detailed", "probability": 0.7041015625}, {"start": 394.0, "end": 394.0, "word": " code.", "probability": 0.947265625}, {"start": 394.56, "end": 394.98, "word": " We", "probability": 0.712890625}, {"start": 394.98, "end": 395.74, "word": " imagine", "probability": 0.421142578125}, {"start": 395.74, "end": 397.08, "word": " a", "probability": 0.59033203125}, {"start": 397.08, "end": 397.46, "word": " program", "probability": 0.73095703125}, {"start": 397.46, "end": 397.72, "word": " and", "probability": 0.5849609375}, {"start": 397.72, "end": 398.84, "word": " the", "probability": 0.474609375}, {"start": 398.84, "end": 399.08, "word": " idea", "probability": 0.77978515625}, {"start": 399.08, "end": 399.2, "word": " is", "probability": 0.492919921875}, {"start": 399.2, "end": 399.24, "word": " in", "probability": 0.432861328125}, {"start": 399.24, "end": 399.28, "word": " its", "probability": 0.529296875}, {"start": 399.28, "end": 399.72, "word": " structure.", "probability": 0.86572265625}, {"start": 400.74, "end": 401.22, "word": " For", "probability": 0.1705322265625}, {"start": 401.22, "end": 401.9, "word": " example,", "probability": 0.9248046875}, {"start": 402.02, "end": 402.1, "word": " there", "probability": 0.80908203125}, {"start": 402.1, "end": 402.1, "word": " is", "probability": 0.86572265625}, {"start": 402.1, "end": 402.22, "word": " a", "probability": 0.84326171875}, {"start": 402.22, "end": 402.48, "word": " method", "probability": 0.93505859375}, {"start": 402.48, "end": 402.7, "word": " here,", "probability": 0.58203125}, {"start": 402.7, "end": 402.96, "word": " public", "probability": 0.7939453125}, {"start": 402.96, "end": 404.06, "word": " void", "probability": 0.9677734375}, {"start": 404.06, "end": 405.28, "word": " doBackup", "probability": 0.76904296875}, {"start": 405.28, "end": 407.52, "word": " or", "probability": 0.238037109375}, {"start": 407.52, "end": 407.76, "word": " run", "probability": 0.64404296875}, {"start": 407.76, "end": 408.0, "word": " or", "probability": 0.88720703125}, {"start": 408.0, "end": 408.6, "word": " execute.", "probability": 0.94873046875}], "temperature": 1.0}, {"id": 17, "seek": 43558, "start": 411.16, "end": 435.58, "text": " the code. Here are the backup steps, from here to here, but what do we do? We do something like this, fake, for example, performing backup. Okay guys, can you imagine what we do? Can you imagine or not? What do you imagine? Imagine this is a task, a task that does backup.", "tokens": [264, 3089, 13, 1692, 366, 264, 14807, 4439, 11, 490, 510, 281, 510, 11, 457, 437, 360, 321, 360, 30, 492, 360, 746, 411, 341, 11, 7592, 11, 337, 1365, 11, 10205, 14807, 13, 1033, 1074, 11, 393, 291, 3811, 437, 321, 360, 30, 1664, 291, 3811, 420, 406, 30, 708, 360, 291, 3811, 30, 11739, 341, 307, 257, 5633, 11, 257, 5633, 300, 775, 14807, 13], "avg_logprob": -0.5018382423064288, "compression_ratio": 1.644578313253012, "no_speech_prob": 3.218650817871094e-05, "words": [{"start": 411.16, "end": 411.44, "word": " the", "probability": 0.0550537109375}, {"start": 411.44, "end": 411.76, "word": " code.", "probability": 0.88916015625}, {"start": 412.0, "end": 412.14, "word": " Here", "probability": 0.3916015625}, {"start": 412.14, "end": 412.2, "word": " are", "probability": 0.61328125}, {"start": 412.2, "end": 412.24, "word": " the", "probability": 0.6728515625}, {"start": 412.24, "end": 412.96, "word": " backup", "probability": 0.306396484375}, {"start": 412.96, "end": 413.1, "word": " steps,", "probability": 0.80029296875}, {"start": 413.18, "end": 413.38, "word": " from", "probability": 0.2386474609375}, {"start": 413.38, "end": 413.74, "word": " here", "probability": 0.787109375}, {"start": 413.74, "end": 413.84, "word": " to", "probability": 0.95166015625}, {"start": 413.84, "end": 414.14, "word": " here,", "probability": 0.64208984375}, {"start": 414.34, "end": 414.54, "word": " but", "probability": 0.83642578125}, {"start": 414.54, "end": 414.9, "word": " what", "probability": 0.8359375}, {"start": 414.9, "end": 415.04, "word": " do", "probability": 0.54443359375}, {"start": 415.04, "end": 415.04, "word": " we", "probability": 0.9541015625}, {"start": 415.04, "end": 415.3, "word": " do?", "probability": 0.93505859375}, {"start": 415.54, "end": 415.8, "word": " We", "probability": 0.6708984375}, {"start": 415.8, "end": 415.98, "word": " do", "probability": 0.88427734375}, {"start": 415.98, "end": 416.24, "word": " something", "probability": 0.7099609375}, {"start": 416.24, "end": 416.4, "word": " like", "probability": 0.33154296875}, {"start": 416.4, "end": 416.5, "word": " this,", "probability": 0.72314453125}, {"start": 416.5, "end": 416.76, "word": " fake,", "probability": 0.5791015625}, {"start": 417.62, "end": 418.02, "word": " for", "probability": 0.3271484375}, {"start": 418.02, "end": 418.86, "word": " example,", "probability": 0.93701171875}, {"start": 419.64, "end": 420.24, "word": " performing", "probability": 0.73779296875}, {"start": 420.24, "end": 422.04, "word": " backup.", "probability": 0.8916015625}, {"start": 424.86, "end": 425.14, "word": " Okay", "probability": 0.384521484375}, {"start": 425.14, "end": 425.34, "word": " guys,", "probability": 0.481201171875}, {"start": 425.44, "end": 425.52, "word": " can", "probability": 0.638671875}, {"start": 425.52, "end": 425.52, "word": " you", "probability": 0.96240234375}, {"start": 425.52, "end": 425.72, "word": " imagine", "probability": 0.9150390625}, {"start": 425.72, "end": 425.98, "word": " what", "probability": 0.91748046875}, {"start": 425.98, "end": 425.98, "word": " we", "probability": 0.84814453125}, {"start": 425.98, "end": 426.3, "word": " do?", "probability": 0.669921875}, {"start": 427.68, "end": 428.16, "word": " Can", "probability": 0.71923828125}, {"start": 428.16, "end": 428.18, "word": " you", "probability": 0.96240234375}, {"start": 428.18, "end": 428.42, "word": " imagine", "probability": 0.9267578125}, {"start": 428.42, "end": 428.6, "word": " or", "probability": 0.52783203125}, {"start": 428.6, "end": 429.82, "word": " not?", "probability": 0.1715087890625}, {"start": 431.12, "end": 431.6, "word": " What", "probability": 0.441162109375}, {"start": 431.6, "end": 431.72, "word": " do", "probability": 0.49658203125}, {"start": 431.72, "end": 431.76, "word": " you", "probability": 0.916015625}, {"start": 431.76, "end": 431.96, "word": " imagine?", "probability": 0.441650390625}, {"start": 432.58, "end": 433.06, "word": " Imagine", "probability": 0.59326171875}, {"start": 433.06, "end": 433.44, "word": " this", "probability": 0.64599609375}, {"start": 433.44, "end": 433.54, "word": " is", "probability": 0.6259765625}, {"start": 433.54, "end": 433.6, "word": " a", "probability": 0.76708984375}, {"start": 433.6, "end": 433.84, "word": " task,", "probability": 0.92041015625}, {"start": 433.92, "end": 434.72, "word": " a", "probability": 0.343505859375}, {"start": 434.72, "end": 434.98, "word": " task", "probability": 0.912109375}, {"start": 434.98, "end": 435.12, "word": " that", "probability": 0.453369140625}, {"start": 435.12, "end": 435.3, "word": " does", "probability": 0.459228515625}, {"start": 435.3, "end": 435.58, "word": " backup.", "probability": 0.85791015625}], "temperature": 1.0}, {"id": 18, "seek": 46194, "start": 436.42, "end": 461.94, "text": " I didn't write anything. I don't want to write anything that has nothing to do with the backup code. These are steps. You remove an object from this. You say this is a backup and it does the backup for you. Okay? That's how we're going to stay in the whole material. We're not going to make a complete program. But you will find this scenario in the actual programs. And there are attributes related to it. For example, you need to give it the path location, what files need to be downloaded, and so on. What we're going to do now is another task.", "tokens": [286, 994, 380, 2464, 1340, 13, 286, 500, 380, 528, 281, 2464, 1340, 300, 575, 1825, 281, 360, 365, 264, 14807, 3089, 13, 1981, 366, 4439, 13, 509, 4159, 364, 2657, 490, 341, 13, 509, 584, 341, 307, 257, 14807, 293, 309, 775, 264, 14807, 337, 291, 13, 1033, 30, 663, 311, 577, 321, 434, 516, 281, 1754, 294, 264, 1379, 2527, 13, 492, 434, 406, 516, 281, 652, 257, 3566, 1461, 13, 583, 291, 486, 915, 341, 9005, 294, 264, 3539, 4268, 13, 400, 456, 366, 17212, 4077, 281, 309, 13, 1171, 1365, 11, 291, 643, 281, 976, 309, 264, 3100, 4914, 11, 437, 7098, 643, 281, 312, 21748, 11, 293, 370, 322, 13, 708, 321, 434, 516, 281, 360, 586, 307, 1071, 5633, 13], "avg_logprob": -0.4911417214889226, "compression_ratio": 1.7507987220447285, "no_speech_prob": 2.8014183044433594e-06, "words": [{"start": 436.42, "end": 436.82, "word": " I", "probability": 0.2470703125}, {"start": 436.82, "end": 436.9, "word": " didn't", "probability": 0.712890625}, {"start": 436.9, "end": 437.16, "word": " write", "probability": 0.828125}, {"start": 437.16, "end": 437.4, "word": " anything.", "probability": 0.265869140625}, {"start": 437.42, "end": 437.44, "word": " I", "probability": 0.712890625}, {"start": 437.44, "end": 437.52, "word": " don't", "probability": 0.81201171875}, {"start": 437.52, "end": 437.68, "word": " want", "probability": 0.7177734375}, {"start": 437.68, "end": 437.76, "word": " to", "probability": 0.94873046875}, {"start": 437.76, "end": 437.94, "word": " write", "probability": 0.701171875}, {"start": 437.94, "end": 438.04, "word": " anything", "probability": 0.6318359375}, {"start": 438.04, "end": 438.26, "word": " that", "probability": 0.378173828125}, {"start": 438.26, "end": 438.26, "word": " has", "probability": 0.5732421875}, {"start": 438.26, "end": 438.46, "word": " nothing", "probability": 0.6240234375}, {"start": 438.46, "end": 438.46, "word": " to", "probability": 0.96826171875}, {"start": 438.46, "end": 438.46, "word": " do", "probability": 0.96240234375}, {"start": 438.46, "end": 438.54, "word": " with", "probability": 0.89990234375}, {"start": 438.54, "end": 438.62, "word": " the", "probability": 0.451171875}, {"start": 438.62, "end": 438.82, "word": " backup", "probability": 0.72119140625}, {"start": 438.82, "end": 439.16, "word": " code.", "probability": 0.732421875}, {"start": 439.58, "end": 439.98, "word": " These", "probability": 0.685546875}, {"start": 439.98, "end": 440.06, "word": " are", "probability": 0.81591796875}, {"start": 440.06, "end": 440.34, "word": " steps.", "probability": 0.580078125}, {"start": 441.72, "end": 442.12, "word": " You", "probability": 0.5087890625}, {"start": 442.12, "end": 442.46, "word": " remove", "probability": 0.1685791015625}, {"start": 442.46, "end": 442.6, "word": " an", "probability": 0.646484375}, {"start": 442.6, "end": 442.82, "word": " object", "probability": 0.97314453125}, {"start": 442.82, "end": 442.98, "word": " from", "probability": 0.7666015625}, {"start": 442.98, "end": 443.16, "word": " this.", "probability": 0.39111328125}, {"start": 443.16, "end": 443.26, "word": " You", "probability": 0.84716796875}, {"start": 443.26, "end": 443.48, "word": " say", "probability": 0.37744140625}, {"start": 443.48, "end": 443.7, "word": " this", "probability": 0.438232421875}, {"start": 443.7, "end": 443.72, "word": " is", "probability": 0.92236328125}, {"start": 443.72, "end": 443.82, "word": " a", "probability": 0.79248046875}, {"start": 443.82, "end": 444.08, "word": " backup", "probability": 0.943359375}, {"start": 444.08, "end": 444.38, "word": " and", "probability": 0.223876953125}, {"start": 444.38, "end": 445.12, "word": " it", "probability": 0.5458984375}, {"start": 445.12, "end": 445.32, "word": " does", "probability": 0.2352294921875}, {"start": 445.32, "end": 445.6, "word": " the", "probability": 0.703125}, {"start": 445.6, "end": 445.84, "word": " backup", "probability": 0.947265625}, {"start": 445.84, "end": 446.06, "word": " for", "probability": 0.64697265625}, {"start": 446.06, "end": 446.06, "word": " you.", "probability": 0.95751953125}, {"start": 446.22, "end": 446.5, "word": " Okay?", "probability": 0.4111328125}, {"start": 447.62, "end": 448.02, "word": " That's", "probability": 0.32257080078125}, {"start": 448.02, "end": 448.06, "word": " how", "probability": 0.91064453125}, {"start": 448.06, "end": 448.2, "word": " we're", "probability": 0.5855712890625}, {"start": 448.2, "end": 448.22, "word": " going", "probability": 0.9267578125}, {"start": 448.22, "end": 448.22, "word": " to", "probability": 0.97216796875}, {"start": 448.22, "end": 448.36, "word": " stay", "probability": 0.6015625}, {"start": 448.36, "end": 448.48, "word": " in", "probability": 0.60107421875}, {"start": 448.48, "end": 448.58, "word": " the", "probability": 0.36962890625}, {"start": 448.58, "end": 448.6, "word": " whole", "probability": 0.51171875}, {"start": 448.6, "end": 448.8, "word": " material.", "probability": 0.26171875}, {"start": 449.1, "end": 449.22, "word": " We're", "probability": 0.788818359375}, {"start": 449.22, "end": 449.22, "word": " not", "probability": 0.9404296875}, {"start": 449.22, "end": 449.32, "word": " going", "probability": 0.9111328125}, {"start": 449.32, "end": 449.32, "word": " to", "probability": 0.970703125}, {"start": 449.32, "end": 449.46, "word": " make", "probability": 0.54833984375}, {"start": 449.46, "end": 449.52, "word": " a", "probability": 0.361328125}, {"start": 449.52, "end": 449.52, "word": " complete", "probability": 0.3818359375}, {"start": 449.52, "end": 449.76, "word": " program.", "probability": 0.8427734375}, {"start": 451.3, "end": 451.7, "word": " But", "probability": 0.496826171875}, {"start": 451.7, "end": 451.9, "word": " you", "probability": 0.654296875}, {"start": 451.9, "end": 451.9, "word": " will", "probability": 0.386962890625}, {"start": 451.9, "end": 451.9, "word": " find", "probability": 0.69384765625}, {"start": 451.9, "end": 451.92, "word": " this", "probability": 0.88525390625}, {"start": 451.92, "end": 452.42, "word": " scenario", "probability": 0.83984375}, {"start": 452.42, "end": 453.18, "word": " in", "probability": 0.90283203125}, {"start": 453.18, "end": 453.26, "word": " the", "probability": 0.5234375}, {"start": 453.26, "end": 453.3, "word": " actual", "probability": 0.7685546875}, {"start": 453.3, "end": 453.86, "word": " programs.", "probability": 0.794921875}, {"start": 454.44, "end": 454.68, "word": " And", "probability": 0.630859375}, {"start": 454.68, "end": 454.8, "word": " there", "probability": 0.7373046875}, {"start": 454.8, "end": 454.82, "word": " are", "probability": 0.92236328125}, {"start": 454.82, "end": 455.34, "word": " attributes", "probability": 0.61962890625}, {"start": 455.34, "end": 455.58, "word": " related", "probability": 0.27685546875}, {"start": 455.58, "end": 455.7, "word": " to", "probability": 0.96240234375}, {"start": 455.7, "end": 455.8, "word": " it.", "probability": 0.65869140625}, {"start": 455.84, "end": 455.9, "word": " For", "probability": 0.56201171875}, {"start": 455.9, "end": 455.9, "word": " example,", "probability": 0.94189453125}, {"start": 455.9, "end": 455.9, "word": " you", "probability": 0.81884765625}, {"start": 455.9, "end": 456.0, "word": " need", "probability": 0.265869140625}, {"start": 456.0, "end": 456.06, "word": " to", "probability": 0.9697265625}, {"start": 456.06, "end": 456.26, "word": " give", "probability": 0.576171875}, {"start": 456.26, "end": 456.6, "word": " it", "probability": 0.51904296875}, {"start": 456.6, "end": 456.94, "word": " the", "probability": 0.35498046875}, {"start": 456.94, "end": 457.34, "word": " path", "probability": 0.84765625}, {"start": 457.34, "end": 457.36, "word": " location,", "probability": 0.19873046875}, {"start": 457.76, "end": 457.92, "word": " what", "probability": 0.48193359375}, {"start": 457.92, "end": 458.26, "word": " files", "probability": 0.787109375}, {"start": 458.26, "end": 458.54, "word": " need", "probability": 0.23779296875}, {"start": 458.54, "end": 458.56, "word": " to", "probability": 0.97998046875}, {"start": 458.56, "end": 458.58, "word": " be", "probability": 0.94140625}, {"start": 458.58, "end": 458.82, "word": " downloaded,", "probability": 0.16357421875}, {"start": 458.96, "end": 459.02, "word": " and", "probability": 0.5859375}, {"start": 459.02, "end": 459.16, "word": " so", "probability": 0.880859375}, {"start": 459.16, "end": 459.32, "word": " on.", "probability": 0.84619140625}, {"start": 460.18, "end": 460.38, "word": " What", "probability": 0.138427734375}, {"start": 460.38, "end": 460.56, "word": " we're", "probability": 0.5194091796875}, {"start": 460.56, "end": 460.56, "word": " going", "probability": 0.9150390625}, {"start": 460.56, "end": 460.56, "word": " to", "probability": 0.97119140625}, {"start": 460.56, "end": 460.78, "word": " do", "probability": 0.82763671875}, {"start": 460.78, "end": 461.1, "word": " now", "probability": 0.77978515625}, {"start": 461.1, "end": 461.44, "word": " is", "probability": 0.8564453125}, {"start": 461.44, "end": 461.44, "word": " another", "probability": 0.64111328125}, {"start": 461.44, "end": 461.94, "word": " task.", "probability": 0.93212890625}], "temperature": 1.0}, {"id": 19, "seek": 49126, "start": 464.36, "end": 491.26, "text": " Its name is Security Checks Task. When we run this task, what does it do? It turns on the antivirus, for example. It checks if the ports are closed or not. It checks if there are hacks or not. There are many operations. It has nothing to do with these operations. Okay? It has its own attributes. But there is a method here. Its name is, for example, DoSecurityChecks", "tokens": [6953, 1315, 307, 11164, 3351, 2761, 30428, 13, 1133, 321, 1190, 341, 5633, 11, 437, 775, 309, 360, 30, 467, 4523, 322, 264, 2511, 592, 9619, 11, 337, 1365, 13, 467, 13834, 498, 264, 18160, 366, 5395, 420, 406, 13, 467, 13834, 498, 456, 366, 33617, 420, 406, 13, 821, 366, 867, 7705, 13, 467, 575, 1825, 281, 360, 365, 613, 7705, 13, 1033, 30, 467, 575, 1080, 1065, 17212, 13, 583, 456, 307, 257, 3170, 510, 13, 6953, 1315, 307, 11, 337, 1365, 11, 1144, 29511, 3051, 15683, 2761], "avg_logprob": -0.45982143708637785, "compression_ratio": 1.727699530516432, "no_speech_prob": 2.276897430419922e-05, "words": [{"start": 464.36, "end": 464.58, "word": " Its", "probability": 0.0791015625}, {"start": 464.58, "end": 464.76, "word": " name", "probability": 0.7978515625}, {"start": 464.76, "end": 465.0, "word": " is", "probability": 0.9384765625}, {"start": 465.0, "end": 465.78, "word": " Security", "probability": 0.38427734375}, {"start": 465.78, "end": 467.44, "word": " Checks", "probability": 0.72412109375}, {"start": 467.44, "end": 468.58, "word": " Task.", "probability": 0.79736328125}, {"start": 469.58, "end": 470.02, "word": " When", "probability": 0.475830078125}, {"start": 470.02, "end": 470.38, "word": " we", "probability": 0.703125}, {"start": 470.38, "end": 470.68, "word": " run", "probability": 0.3671875}, {"start": 470.68, "end": 470.98, "word": " this", "probability": 0.393310546875}, {"start": 470.98, "end": 471.26, "word": " task,", "probability": 0.498779296875}, {"start": 471.36, "end": 471.66, "word": " what", "probability": 0.47412109375}, {"start": 471.66, "end": 471.72, "word": " does", "probability": 0.5849609375}, {"start": 471.72, "end": 471.72, "word": " it", "probability": 0.8623046875}, {"start": 471.72, "end": 472.06, "word": " do?", "probability": 0.66162109375}, {"start": 473.8, "end": 474.24, "word": " It", "probability": 0.5146484375}, {"start": 474.24, "end": 474.38, "word": " turns", "probability": 0.25146484375}, {"start": 474.38, "end": 474.48, "word": " on", "probability": 0.89306640625}, {"start": 474.48, "end": 474.58, "word": " the", "probability": 0.316162109375}, {"start": 474.58, "end": 475.04, "word": " antivirus,", "probability": 0.8714192708333334}, {"start": 475.16, "end": 475.24, "word": " for", "probability": 0.5654296875}, {"start": 475.24, "end": 475.46, "word": " example.", "probability": 0.8798828125}, {"start": 476.14, "end": 476.58, "word": " It", "probability": 0.77490234375}, {"start": 476.58, "end": 476.86, "word": " checks", "probability": 0.80078125}, {"start": 476.86, "end": 477.02, "word": " if", "probability": 0.364990234375}, {"start": 477.02, "end": 477.08, "word": " the", "probability": 0.425537109375}, {"start": 477.08, "end": 477.4, "word": " ports", "probability": 0.444091796875}, {"start": 477.4, "end": 477.86, "word": " are", "probability": 0.88525390625}, {"start": 477.86, "end": 478.18, "word": " closed", "probability": 0.466064453125}, {"start": 478.18, "end": 478.38, "word": " or", "probability": 0.69384765625}, {"start": 478.38, "end": 478.58, "word": " not.", "probability": 0.90380859375}, {"start": 479.0, "end": 479.22, "word": " It", "probability": 0.61279296875}, {"start": 479.22, "end": 479.28, "word": " checks", "probability": 0.826171875}, {"start": 479.28, "end": 479.38, "word": " if", "probability": 0.62646484375}, {"start": 479.38, "end": 479.42, "word": " there", "probability": 0.85205078125}, {"start": 479.42, "end": 479.42, "word": " are", "probability": 0.78369140625}, {"start": 479.42, "end": 479.76, "word": " hacks", "probability": 0.2239990234375}, {"start": 479.76, "end": 480.02, "word": " or", "probability": 0.66748046875}, {"start": 480.02, "end": 480.18, "word": " not.", "probability": 0.92041015625}, {"start": 480.28, "end": 480.36, "word": " There", "probability": 0.323974609375}, {"start": 480.36, "end": 480.36, "word": " are", "probability": 0.91015625}, {"start": 480.36, "end": 480.9, "word": " many", "probability": 0.70166015625}, {"start": 480.9, "end": 480.9, "word": " operations.", "probability": 0.48583984375}, {"start": 481.06, "end": 481.08, "word": " It", "probability": 0.434814453125}, {"start": 481.08, "end": 481.26, "word": " has", "probability": 0.66650390625}, {"start": 481.26, "end": 481.36, "word": " nothing", "probability": 0.87255859375}, {"start": 481.36, "end": 481.56, "word": " to", "probability": 0.97412109375}, {"start": 481.56, "end": 481.62, "word": " do", "probability": 0.97021484375}, {"start": 481.62, "end": 481.72, "word": " with", "probability": 0.88720703125}, {"start": 481.72, "end": 481.76, "word": " these", "probability": 0.69189453125}, {"start": 481.76, "end": 482.16, "word": " operations.", "probability": 0.9189453125}, {"start": 483.02, "end": 483.12, "word": " Okay?", "probability": 0.299560546875}, {"start": 483.44, "end": 483.62, "word": " It", "probability": 0.368896484375}, {"start": 483.62, "end": 483.8, "word": " has", "probability": 0.93603515625}, {"start": 483.8, "end": 483.9, "word": " its", "probability": 0.7783203125}, {"start": 483.9, "end": 483.9, "word": " own", "probability": 0.84912109375}, {"start": 483.9, "end": 484.3, "word": " attributes.", "probability": 0.8515625}, {"start": 484.86, "end": 485.02, "word": " But", "probability": 0.794921875}, {"start": 485.02, "end": 485.16, "word": " there", "probability": 0.80859375}, {"start": 485.16, "end": 485.16, "word": " is", "probability": 0.8125}, {"start": 485.16, "end": 485.26, "word": " a", "probability": 0.95654296875}, {"start": 485.26, "end": 485.54, "word": " method", "probability": 0.94677734375}, {"start": 485.54, "end": 485.88, "word": " here.", "probability": 0.61474609375}, {"start": 486.4, "end": 486.62, "word": " Its", "probability": 0.5654296875}, {"start": 486.62, "end": 486.82, "word": " name", "probability": 0.8974609375}, {"start": 486.82, "end": 486.94, "word": " is,", "probability": 0.93408203125}, {"start": 486.96, "end": 487.1, "word": " for", "probability": 0.91552734375}, {"start": 487.1, "end": 487.32, "word": " example,", "probability": 0.9619140625}, {"start": 487.82, "end": 491.26, "word": " DoSecurityChecks", "probability": 0.82587890625}], "temperature": 1.0}, {"id": 20, "seek": 52115, "start": 493.17, "end": 521.15, "text": " it is executed by doing all the steps we want to get rid of it by printing a sentence called perform security checks okay guys and so on you do the tasks required from you last one for example we do a class called clean disk task you delete the temporary files and others also it has", "tokens": [309, 307, 17577, 538, 884, 439, 264, 4439, 321, 528, 281, 483, 3973, 295, 309, 538, 14699, 257, 8174, 1219, 2042, 3825, 13834, 1392, 1074, 293, 370, 322, 291, 360, 264, 9608, 4739, 490, 291, 1036, 472, 337, 1365, 321, 360, 257, 1508, 1219, 2541, 12355, 5633, 291, 12097, 264, 13413, 7098, 293, 2357, 611, 309, 575], "avg_logprob": -0.6239224353740955, "compression_ratio": 1.6136363636363635, "no_speech_prob": 4.708766937255859e-06, "words": [{"start": 493.17, "end": 493.39, "word": " it", "probability": 0.217041015625}, {"start": 493.39, "end": 493.51, "word": " is", "probability": 0.14794921875}, {"start": 493.51, "end": 493.85, "word": " executed", "probability": 0.355224609375}, {"start": 493.85, "end": 493.99, "word": " by", "probability": 0.370849609375}, {"start": 493.99, "end": 494.17, "word": " doing", "probability": 0.423583984375}, {"start": 494.17, "end": 494.41, "word": " all", "probability": 0.6083984375}, {"start": 494.41, "end": 494.47, "word": " the", "probability": 0.3310546875}, {"start": 494.47, "end": 494.83, "word": " steps", "probability": 0.82958984375}, {"start": 494.83, "end": 494.99, "word": " we", "probability": 0.299072265625}, {"start": 494.99, "end": 495.13, "word": " want", "probability": 0.35693359375}, {"start": 495.13, "end": 495.23, "word": " to", "probability": 0.8837890625}, {"start": 495.23, "end": 495.35, "word": " get", "probability": 0.13720703125}, {"start": 495.35, "end": 495.59, "word": " rid", "probability": 0.50830078125}, {"start": 495.59, "end": 495.71, "word": " of", "probability": 0.9384765625}, {"start": 495.71, "end": 495.83, "word": " it", "probability": 0.61962890625}, {"start": 495.83, "end": 496.25, "word": " by", "probability": 0.58984375}, {"start": 496.25, "end": 496.57, "word": " printing", "probability": 0.7177734375}, {"start": 496.57, "end": 496.69, "word": " a", "probability": 0.62939453125}, {"start": 496.69, "end": 497.03, "word": " sentence", "probability": 0.79931640625}, {"start": 497.03, "end": 498.09, "word": " called", "probability": 0.2420654296875}, {"start": 498.09, "end": 500.05, "word": " perform", "probability": 0.72607421875}, {"start": 500.05, "end": 502.93, "word": " security", "probability": 0.85107421875}, {"start": 502.93, "end": 503.39, "word": " checks", "probability": 0.7431640625}, {"start": 503.39, "end": 506.71, "word": " okay", "probability": 0.213134765625}, {"start": 506.71, "end": 507.13, "word": " guys", "probability": 0.68310546875}, {"start": 507.13, "end": 507.83, "word": " and", "probability": 0.388916015625}, {"start": 507.83, "end": 508.05, "word": " so", "probability": 0.5703125}, {"start": 508.05, "end": 508.17, "word": " on", "probability": 0.845703125}, {"start": 508.17, "end": 508.33, "word": " you", "probability": 0.493408203125}, {"start": 508.33, "end": 508.49, "word": " do", "probability": 0.583984375}, {"start": 508.49, "end": 508.65, "word": " the", "probability": 0.56396484375}, {"start": 508.65, "end": 508.91, "word": " tasks", "probability": 0.822265625}, {"start": 508.91, "end": 509.55, "word": " required", "probability": 0.4033203125}, {"start": 509.55, "end": 510.27, "word": " from", "probability": 0.45166015625}, {"start": 510.27, "end": 510.47, "word": " you", "probability": 0.935546875}, {"start": 510.47, "end": 510.79, "word": " last", "probability": 0.46875}, {"start": 510.79, "end": 511.11, "word": " one", "probability": 0.78662109375}, {"start": 511.11, "end": 511.69, "word": " for", "probability": 0.54638671875}, {"start": 511.69, "end": 511.97, "word": " example", "probability": 0.96240234375}, {"start": 511.97, "end": 512.49, "word": " we", "probability": 0.66162109375}, {"start": 512.49, "end": 512.73, "word": " do", "probability": 0.63330078125}, {"start": 512.73, "end": 512.95, "word": " a", "probability": 0.6533203125}, {"start": 512.95, "end": 513.25, "word": " class", "probability": 0.96435546875}, {"start": 513.25, "end": 513.61, "word": " called", "probability": 0.58935546875}, {"start": 513.61, "end": 514.49, "word": " clean", "probability": 0.87451171875}, {"start": 514.49, "end": 515.63, "word": " disk", "probability": 0.60302734375}, {"start": 515.63, "end": 516.69, "word": " task", "probability": 0.876953125}, {"start": 516.69, "end": 518.67, "word": " you", "probability": 0.14306640625}, {"start": 518.67, "end": 518.85, "word": " delete", "probability": 0.6572265625}, {"start": 518.85, "end": 518.95, "word": " the", "probability": 0.62353515625}, {"start": 518.95, "end": 519.71, "word": " temporary", "probability": 0.31103515625}, {"start": 519.71, "end": 519.71, "word": " files", "probability": 0.91015625}, {"start": 519.71, "end": 519.91, "word": " and", "probability": 0.72607421875}, {"start": 519.91, "end": 520.17, "word": " others", "probability": 0.480712890625}, {"start": 520.17, "end": 520.87, "word": " also", "probability": 0.46826171875}, {"start": 520.87, "end": 521.03, "word": " it", "probability": 0.38037109375}, {"start": 521.03, "end": 521.15, "word": " has", "probability": 0.91796875}], "temperature": 1.0}, {"id": 21, "seek": 55159, "start": 524.97, "end": 551.59, "text": "cleanDisk() this is the method it executes system.out.println() cleanDisk() ok, these are different tasks each task has its own attributes and steps does anyone collect them? no one collects them, so I need a superclass for them? I don't need a superclass ok, I came to the main method", "tokens": [2160, 282, 35, 7797, 45191, 341, 307, 264, 3170, 309, 4454, 1819, 1185, 13, 346, 13, 14030, 75, 77, 45191, 2541, 35, 7797, 45191, 3133, 11, 613, 366, 819, 9608, 1184, 5633, 575, 1080, 1065, 17212, 293, 4439, 775, 2878, 2500, 552, 30, 572, 472, 39897, 552, 11, 370, 286, 643, 257, 1687, 11665, 337, 552, 30, 286, 500, 380, 643, 257, 1687, 11665, 3133, 11, 286, 1361, 281, 264, 2135, 3170], "avg_logprob": -0.5055650946212141, "compression_ratio": 1.601123595505618, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 524.9700000000001, "end": 525.5300000000001, "word": "cleanDisk", "probability": 0.5771636962890625}, {"start": 525.5300000000001, "end": 526.09, "word": "()", "probability": 0.7978515625}, {"start": 526.09, "end": 526.27, "word": " this", "probability": 0.30029296875}, {"start": 526.27, "end": 526.29, "word": " is", "probability": 0.6650390625}, {"start": 526.29, "end": 526.57, "word": " the", "probability": 0.77880859375}, {"start": 526.57, "end": 526.83, "word": " method", "probability": 0.890625}, {"start": 526.83, "end": 526.97, "word": " it", "probability": 0.140625}, {"start": 526.97, "end": 527.33, "word": " executes", "probability": 0.6363525390625}, {"start": 527.33, "end": 528.65, "word": " system", "probability": 0.666015625}, {"start": 528.65, "end": 529.83, "word": ".out", "probability": 0.920654296875}, {"start": 529.83, "end": 531.09, "word": ".println", "probability": 0.96484375}, {"start": 531.09, "end": 532.13, "word": "()", "probability": 0.121337890625}, {"start": 532.13, "end": 534.57, "word": " cleanDisk", "probability": 0.8502604166666666}, {"start": 534.57, "end": 535.19, "word": "()", "probability": 0.76171875}, {"start": 535.19, "end": 538.39, "word": " ok,", "probability": 0.19677734375}, {"start": 538.53, "end": 539.07, "word": " these", "probability": 0.70166015625}, {"start": 539.07, "end": 539.21, "word": " are", "probability": 0.66845703125}, {"start": 539.21, "end": 540.11, "word": " different", "probability": 0.798828125}, {"start": 540.11, "end": 540.11, "word": " tasks", "probability": 0.8466796875}, {"start": 540.11, "end": 540.47, "word": " each", "probability": 0.3623046875}, {"start": 540.47, "end": 540.77, "word": " task", "probability": 0.89111328125}, {"start": 540.77, "end": 540.91, "word": " has", "probability": 0.873046875}, {"start": 540.91, "end": 540.97, "word": " its", "probability": 0.53564453125}, {"start": 540.97, "end": 540.97, "word": " own", "probability": 0.84130859375}, {"start": 540.97, "end": 541.37, "word": " attributes", "probability": 0.8056640625}, {"start": 541.37, "end": 542.03, "word": " and", "probability": 0.740234375}, {"start": 542.03, "end": 542.51, "word": " steps", "probability": 0.65087890625}, {"start": 542.51, "end": 543.05, "word": " does", "probability": 0.1981201171875}, {"start": 543.05, "end": 543.37, "word": " anyone", "probability": 0.5458984375}, {"start": 543.37, "end": 543.67, "word": " collect", "probability": 0.314208984375}, {"start": 543.67, "end": 543.89, "word": " them?", "probability": 0.755859375}, {"start": 545.07, "end": 545.63, "word": " no", "probability": 0.1412353515625}, {"start": 545.63, "end": 545.87, "word": " one", "probability": 0.52587890625}, {"start": 545.87, "end": 546.01, "word": " collects", "probability": 0.720703125}, {"start": 546.01, "end": 546.07, "word": " them,", "probability": 0.5009765625}, {"start": 546.11, "end": 546.23, "word": " so", "probability": 0.337890625}, {"start": 546.23, "end": 546.37, "word": " I", "probability": 0.3212890625}, {"start": 546.37, "end": 546.55, "word": " need", "probability": 0.424560546875}, {"start": 546.55, "end": 546.73, "word": " a", "probability": 0.33349609375}, {"start": 546.73, "end": 547.23, "word": " superclass", "probability": 0.76513671875}, {"start": 547.23, "end": 547.39, "word": " for", "probability": 0.63232421875}, {"start": 547.39, "end": 547.53, "word": " them?", "probability": 0.82080078125}, {"start": 547.75, "end": 548.31, "word": " I", "probability": 0.3818359375}, {"start": 548.31, "end": 548.43, "word": " don't", "probability": 0.831298828125}, {"start": 548.43, "end": 548.69, "word": " need", "probability": 0.9013671875}, {"start": 548.69, "end": 548.91, "word": " a", "probability": 0.73876953125}, {"start": 548.91, "end": 549.43, "word": " superclass", "probability": 0.9736328125}, {"start": 549.43, "end": 550.09, "word": " ok,", "probability": 0.6044921875}, {"start": 550.39, "end": 550.65, "word": " I", "probability": 0.182373046875}, {"start": 550.65, "end": 550.83, "word": " came", "probability": 0.426513671875}, {"start": 550.83, "end": 550.97, "word": " to", "probability": 0.6865234375}, {"start": 550.97, "end": 551.09, "word": " the", "probability": 0.763671875}, {"start": 551.09, "end": 551.21, "word": " main", "probability": 0.912109375}, {"start": 551.21, "end": 551.59, "word": " method", "probability": 0.9404296875}], "temperature": 1.0}, {"id": 22, "seek": 58366, "start": 555.04, "end": 583.66, "text": " For example, I came here and made a class For example, task main We made classes but we didn't benefit from them, right? public static void main string Ok, did you get it? What do you want to do? In order to execute each process What do you want to do? Do you want to extract the object?", "tokens": [1171, 1365, 11, 286, 1361, 510, 293, 1027, 257, 1508, 1171, 1365, 11, 5633, 2135, 492, 1027, 5359, 457, 321, 994, 380, 5121, 490, 552, 11, 558, 30, 1908, 13437, 22009, 2135, 6798, 3477, 11, 630, 291, 483, 309, 30, 708, 360, 291, 528, 281, 360, 30, 682, 1668, 281, 14483, 1184, 1399, 708, 360, 291, 528, 281, 360, 30, 1144, 291, 528, 281, 8947, 264, 2657, 30], "avg_logprob": -0.45946558834849927, "compression_ratio": 1.6271186440677967, "no_speech_prob": 2.9206275939941406e-06, "words": [{"start": 555.04, "end": 555.4, "word": " For", "probability": 0.389404296875}, {"start": 555.4, "end": 555.54, "word": " example,", "probability": 0.884765625}, {"start": 555.68, "end": 555.74, "word": " I", "probability": 0.77392578125}, {"start": 555.74, "end": 555.92, "word": " came", "probability": 0.544921875}, {"start": 555.92, "end": 556.24, "word": " here", "probability": 0.8447265625}, {"start": 556.24, "end": 556.62, "word": " and", "probability": 0.62451171875}, {"start": 556.62, "end": 556.8, "word": " made", "probability": 0.2230224609375}, {"start": 556.8, "end": 556.94, "word": " a", "probability": 0.8876953125}, {"start": 556.94, "end": 557.36, "word": " class", "probability": 0.96826171875}, {"start": 557.36, "end": 559.06, "word": " For", "probability": 0.1881103515625}, {"start": 559.06, "end": 559.6, "word": " example,", "probability": 0.94189453125}, {"start": 559.74, "end": 560.22, "word": " task", "probability": 0.73876953125}, {"start": 560.22, "end": 560.88, "word": " main", "probability": 0.560546875}, {"start": 560.88, "end": 565.86, "word": " We", "probability": 0.49853515625}, {"start": 565.86, "end": 566.14, "word": " made", "probability": 0.68603515625}, {"start": 566.14, "end": 566.56, "word": " classes", "probability": 0.609375}, {"start": 566.56, "end": 566.8, "word": " but", "probability": 0.5810546875}, {"start": 566.8, "end": 566.9, "word": " we", "probability": 0.4833984375}, {"start": 566.9, "end": 566.94, "word": " didn't", "probability": 0.758056640625}, {"start": 566.94, "end": 567.22, "word": " benefit", "probability": 0.306640625}, {"start": 567.22, "end": 567.4, "word": " from", "probability": 0.8310546875}, {"start": 567.4, "end": 567.54, "word": " them,", "probability": 0.88134765625}, {"start": 567.66, "end": 567.82, "word": " right?", "probability": 0.83154296875}, {"start": 568.54, "end": 568.9, "word": " public", "probability": 0.830078125}, {"start": 568.9, "end": 569.68, "word": " static", "probability": 0.98046875}, {"start": 569.68, "end": 571.0, "word": " void", "probability": 0.83837890625}, {"start": 571.0, "end": 571.98, "word": " main", "probability": 0.8876953125}, {"start": 571.98, "end": 574.04, "word": " string", "probability": 0.88671875}, {"start": 574.04, "end": 578.04, "word": " Ok,", "probability": 0.279296875}, {"start": 578.08, "end": 578.22, "word": " did", "probability": 0.449951171875}, {"start": 578.22, "end": 578.22, "word": " you", "probability": 0.9697265625}, {"start": 578.22, "end": 578.36, "word": " get", "probability": 0.303955078125}, {"start": 578.36, "end": 578.46, "word": " it?", "probability": 0.27197265625}, {"start": 578.46, "end": 578.62, "word": " What", "probability": 0.72998046875}, {"start": 578.62, "end": 578.7, "word": " do", "probability": 0.5625}, {"start": 578.7, "end": 578.8, "word": " you", "probability": 0.92626953125}, {"start": 578.8, "end": 578.8, "word": " want", "probability": 0.40283203125}, {"start": 578.8, "end": 578.84, "word": " to", "probability": 0.97412109375}, {"start": 578.84, "end": 579.0, "word": " do?", "probability": 0.9619140625}, {"start": 579.16, "end": 579.24, "word": " In", "probability": 0.321533203125}, {"start": 579.24, "end": 579.92, "word": " order", "probability": 0.9248046875}, {"start": 579.92, "end": 580.26, "word": " to", "probability": 0.94482421875}, {"start": 580.26, "end": 580.66, "word": " execute", "probability": 0.38427734375}, {"start": 580.66, "end": 580.9, "word": " each", "probability": 0.6943359375}, {"start": 580.9, "end": 581.26, "word": " process", "probability": 0.46826171875}, {"start": 581.26, "end": 582.24, "word": " What", "probability": 0.38916015625}, {"start": 582.24, "end": 582.3, "word": " do", "probability": 0.91259765625}, {"start": 582.3, "end": 582.36, "word": " you", "probability": 0.96728515625}, {"start": 582.36, "end": 582.4, "word": " want", "probability": 0.7978515625}, {"start": 582.4, "end": 582.5, "word": " to", "probability": 0.970703125}, {"start": 582.5, "end": 582.68, "word": " do?", "probability": 0.95849609375}, {"start": 582.84, "end": 582.98, "word": " Do", "probability": 0.1575927734375}, {"start": 582.98, "end": 582.98, "word": " you", "probability": 0.96826171875}, {"start": 582.98, "end": 583.08, "word": " want", "probability": 0.80615234375}, {"start": 583.08, "end": 583.08, "word": " to", "probability": 0.9599609375}, {"start": 583.08, "end": 583.22, "word": " extract", "probability": 0.1064453125}, {"start": 583.22, "end": 583.34, "word": " the", "probability": 0.48681640625}, {"start": 583.34, "end": 583.66, "word": " object?", "probability": 0.9619140625}], "temperature": 1.0}, {"id": 23, "seek": 60730, "start": 584.57, "end": 607.31, "text": " from the class and you get the existing data for example the first data is backup task IT1 new backup task and you say T1.do backup because we need the second task which is security checks tasks", "tokens": [490, 264, 1508, 293, 291, 483, 264, 6741, 1412, 337, 1365, 264, 700, 1412, 307, 14807, 5633, 6783, 16, 777, 14807, 5633, 293, 291, 584, 314, 16, 13, 2595, 14807, 570, 321, 643, 264, 1150, 5633, 597, 307, 3825, 13834, 9608], "avg_logprob": -0.6078868777978987, "compression_ratio": 1.5, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 584.57, "end": 584.79, "word": " from", "probability": 0.205810546875}, {"start": 584.79, "end": 584.91, "word": " the", "probability": 0.62939453125}, {"start": 584.91, "end": 585.23, "word": " class", "probability": 0.9599609375}, {"start": 585.23, "end": 585.37, "word": " and", "probability": 0.73486328125}, {"start": 585.37, "end": 585.45, "word": " you", "probability": 0.365234375}, {"start": 585.45, "end": 585.65, "word": " get", "probability": 0.10333251953125}, {"start": 585.65, "end": 585.83, "word": " the", "probability": 0.81103515625}, {"start": 585.83, "end": 586.93, "word": " existing", "probability": 0.060302734375}, {"start": 586.93, "end": 586.93, "word": " data", "probability": 0.2374267578125}, {"start": 586.93, "end": 587.69, "word": " for", "probability": 0.1375732421875}, {"start": 587.69, "end": 587.75, "word": " example", "probability": 0.8759765625}, {"start": 587.75, "end": 587.81, "word": " the", "probability": 0.467041015625}, {"start": 587.81, "end": 587.97, "word": " first", "probability": 0.80126953125}, {"start": 587.97, "end": 588.23, "word": " data", "probability": 0.6923828125}, {"start": 588.23, "end": 588.71, "word": " is", "probability": 0.6474609375}, {"start": 588.71, "end": 589.05, "word": " backup", "probability": 0.38671875}, {"start": 589.05, "end": 591.27, "word": " task", "probability": 0.80419921875}, {"start": 591.27, "end": 591.99, "word": " IT1", "probability": 0.3687744140625}, {"start": 591.99, "end": 593.13, "word": " new", "probability": 0.69873046875}, {"start": 593.13, "end": 593.81, "word": " backup", "probability": 0.8359375}, {"start": 593.81, "end": 594.93, "word": " task", "probability": 0.931640625}, {"start": 594.93, "end": 596.27, "word": " and", "probability": 0.5537109375}, {"start": 596.27, "end": 596.39, "word": " you", "probability": 0.89404296875}, {"start": 596.39, "end": 596.53, "word": " say", "probability": 0.4248046875}, {"start": 596.53, "end": 597.15, "word": " T1", "probability": 0.78466796875}, {"start": 597.15, "end": 598.75, "word": ".do", "probability": 0.569091796875}, {"start": 598.75, "end": 599.07, "word": " backup", "probability": 0.615234375}, {"start": 599.07, "end": 600.19, "word": " because", "probability": 0.349365234375}, {"start": 600.19, "end": 600.43, "word": " we", "probability": 0.798828125}, {"start": 600.43, "end": 600.43, "word": " need", "probability": 0.52294921875}, {"start": 600.43, "end": 600.55, "word": " the", "probability": 0.8251953125}, {"start": 600.55, "end": 601.15, "word": " second", "probability": 0.8115234375}, {"start": 601.15, "end": 601.27, "word": " task", "probability": 0.951171875}, {"start": 601.27, "end": 601.71, "word": " which", "probability": 0.62255859375}, {"start": 601.71, "end": 602.71, "word": " is", "probability": 0.9365234375}, {"start": 602.71, "end": 603.53, "word": " security", "probability": 0.93408203125}, {"start": 603.53, "end": 606.75, "word": " checks", "probability": 0.7978515625}, {"start": 606.75, "end": 607.31, "word": " tasks", "probability": 0.485107421875}], "temperature": 1.0}, {"id": 24, "seek": 63882, "start": 611.82, "end": 638.82, "text": " new security checks task and you say to T2 do security checks the third one which is clean disk task ok guys", "tokens": [777, 3825, 13834, 5633, 293, 291, 584, 281, 314, 17, 360, 3825, 13834, 264, 2636, 472, 597, 307, 2541, 12355, 5633, 3133, 1074], "avg_logprob": -0.5087890500823656, "compression_ratio": 1.2976190476190477, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 611.82, "end": 612.28, "word": " new", "probability": 0.400634765625}, {"start": 612.28, "end": 613.06, "word": " security", "probability": 0.6572265625}, {"start": 613.06, "end": 614.9, "word": " checks", "probability": 0.689453125}, {"start": 614.9, "end": 615.4, "word": " task", "probability": 0.5380859375}, {"start": 615.4, "end": 617.12, "word": " and", "probability": 0.220458984375}, {"start": 617.12, "end": 617.22, "word": " you", "probability": 0.513671875}, {"start": 617.22, "end": 617.4, "word": " say", "probability": 0.390380859375}, {"start": 617.4, "end": 617.7, "word": " to", "probability": 0.68994140625}, {"start": 617.7, "end": 619.06, "word": " T2", "probability": 0.78369140625}, {"start": 619.06, "end": 619.36, "word": " do", "probability": 0.47998046875}, {"start": 619.36, "end": 619.84, "word": " security", "probability": 0.93994140625}, {"start": 619.84, "end": 620.26, "word": " checks", "probability": 0.888671875}, {"start": 620.26, "end": 621.28, "word": " the", "probability": 0.294921875}, {"start": 621.28, "end": 621.58, "word": " third", "probability": 0.8994140625}, {"start": 621.58, "end": 621.92, "word": " one", "probability": 0.521484375}, {"start": 621.92, "end": 622.08, "word": " which", "probability": 0.350341796875}, {"start": 622.08, "end": 622.54, "word": " is", "probability": 0.91796875}, {"start": 622.54, "end": 623.14, "word": " clean", "probability": 0.8017578125}, {"start": 623.14, "end": 624.5, "word": " disk", "probability": 0.8056640625}, {"start": 624.5, "end": 626.8, "word": " task", "probability": 0.8349609375}, {"start": 626.8, "end": 638.58, "word": " ok", "probability": 0.312744140625}, {"start": 638.58, "end": 638.82, "word": " guys", "probability": 0.8115234375}], "temperature": 1.0}, {"id": 25, "seek": 66252, "start": 640.06, "end": 662.52, "text": " Programming tasks and then implementing them Ok, now your manager tells you to clean a new task Ok, so you want to create a new class, program it and then tell him to implement it Ok, now the program grew with you, we don't do tasks one or two times, you find in big programs that run 20-30 tasks, for example at one o'clock at night, we tell them to do what, they all run", "tokens": [8338, 2810, 9608, 293, 550, 18114, 552, 3477, 11, 586, 428, 6598, 5112, 291, 281, 2541, 257, 777, 5633, 3477, 11, 370, 291, 528, 281, 1884, 257, 777, 1508, 11, 1461, 309, 293, 550, 980, 796, 281, 4445, 309, 3477, 11, 586, 264, 1461, 6109, 365, 291, 11, 321, 500, 380, 360, 9608, 472, 420, 732, 1413, 11, 291, 915, 294, 955, 4268, 300, 1190, 945, 12, 3446, 9608, 11, 337, 1365, 412, 472, 277, 6, 9023, 412, 1818, 11, 321, 980, 552, 281, 360, 437, 11, 436, 439, 1190], "avg_logprob": -0.6067994466194739, "compression_ratio": 1.7268518518518519, "no_speech_prob": 3.153085708618164e-05, "words": [{"start": 640.0600000000001, "end": 640.44, "word": " Programming", "probability": 0.40869140625}, {"start": 640.44, "end": 640.8, "word": " tasks", "probability": 0.485107421875}, {"start": 640.8, "end": 641.4, "word": " and", "probability": 0.494873046875}, {"start": 641.4, "end": 641.62, "word": " then", "probability": 0.2083740234375}, {"start": 641.62, "end": 642.4, "word": " implementing", "probability": 0.279541015625}, {"start": 642.4, "end": 642.62, "word": " them", "probability": 0.755859375}, {"start": 642.62, "end": 643.0, "word": " Ok,", "probability": 0.1900634765625}, {"start": 643.82, "end": 644.74, "word": " now", "probability": 0.5068359375}, {"start": 644.74, "end": 644.92, "word": " your", "probability": 0.681640625}, {"start": 644.92, "end": 645.08, "word": " manager", "probability": 0.43896484375}, {"start": 645.08, "end": 645.34, "word": " tells", "probability": 0.4287109375}, {"start": 645.34, "end": 645.48, "word": " you", "probability": 0.96142578125}, {"start": 645.48, "end": 645.6, "word": " to", "probability": 0.313720703125}, {"start": 645.6, "end": 645.82, "word": " clean", "probability": 0.54736328125}, {"start": 645.82, "end": 645.94, "word": " a", "probability": 0.60302734375}, {"start": 645.94, "end": 646.42, "word": " new", "probability": 0.8505859375}, {"start": 646.42, "end": 646.44, "word": " task", "probability": 0.9013671875}, {"start": 646.44, "end": 647.32, "word": " Ok,", "probability": 0.11492919921875}, {"start": 647.42, "end": 647.5, "word": " so", "probability": 0.2978515625}, {"start": 647.5, "end": 647.52, "word": " you", "probability": 0.876953125}, {"start": 647.52, "end": 647.64, "word": " want", "probability": 0.4521484375}, {"start": 647.64, "end": 647.76, "word": " to", "probability": 0.9658203125}, {"start": 647.76, "end": 647.92, "word": " create", "probability": 0.341064453125}, {"start": 647.92, "end": 648.02, "word": " a", "probability": 0.95068359375}, {"start": 648.02, "end": 648.06, "word": " new", "probability": 0.904296875}, {"start": 648.06, "end": 648.36, "word": " class,", "probability": 0.8642578125}, {"start": 648.92, "end": 649.22, "word": " program", "probability": 0.66796875}, {"start": 649.22, "end": 649.46, "word": " it", "probability": 0.9296875}, {"start": 649.46, "end": 649.56, "word": " and", "probability": 0.60498046875}, {"start": 649.56, "end": 649.74, "word": " then", "probability": 0.67626953125}, {"start": 649.74, "end": 650.0, "word": " tell", "probability": 0.64404296875}, {"start": 650.0, "end": 650.2, "word": " him", "probability": 0.60498046875}, {"start": 650.2, "end": 650.68, "word": " to", "probability": 0.84912109375}, {"start": 650.68, "end": 650.88, "word": " implement", "probability": 0.6845703125}, {"start": 650.88, "end": 651.46, "word": " it", "probability": 0.9345703125}, {"start": 651.46, "end": 652.2, "word": " Ok,", "probability": 0.5458984375}, {"start": 652.26, "end": 652.44, "word": " now", "probability": 0.78564453125}, {"start": 652.44, "end": 652.68, "word": " the", "probability": 0.6298828125}, {"start": 652.68, "end": 652.92, "word": " program", "probability": 0.83056640625}, {"start": 652.92, "end": 653.24, "word": " grew", "probability": 0.2359619140625}, {"start": 653.24, "end": 653.44, "word": " with", "probability": 0.367431640625}, {"start": 653.44, "end": 653.58, "word": " you,", "probability": 0.90185546875}, {"start": 653.68, "end": 654.02, "word": " we", "probability": 0.64013671875}, {"start": 654.02, "end": 654.12, "word": " don't", "probability": 0.827880859375}, {"start": 654.12, "end": 654.3, "word": " do", "probability": 0.716796875}, {"start": 654.3, "end": 654.68, "word": " tasks", "probability": 0.55029296875}, {"start": 654.68, "end": 654.84, "word": " one", "probability": 0.1710205078125}, {"start": 654.84, "end": 654.94, "word": " or", "probability": 0.60791015625}, {"start": 654.94, "end": 655.08, "word": " two", "probability": 0.9111328125}, {"start": 655.08, "end": 655.26, "word": " times,", "probability": 0.486572265625}, {"start": 655.28, "end": 655.38, "word": " you", "probability": 0.748046875}, {"start": 655.38, "end": 655.54, "word": " find", "probability": 0.53271484375}, {"start": 655.54, "end": 655.68, "word": " in", "probability": 0.6044921875}, {"start": 655.68, "end": 655.72, "word": " big", "probability": 0.306640625}, {"start": 655.72, "end": 656.42, "word": " programs", "probability": 0.8583984375}, {"start": 656.42, "end": 656.68, "word": " that", "probability": 0.414306640625}, {"start": 656.68, "end": 656.9, "word": " run", "probability": 0.54052734375}, {"start": 656.9, "end": 657.66, "word": " 20", "probability": 0.424560546875}, {"start": 657.66, "end": 658.18, "word": "-30", "probability": 0.678466796875}, {"start": 658.18, "end": 658.56, "word": " tasks,", "probability": 0.91552734375}, {"start": 658.62, "end": 658.78, "word": " for", "probability": 0.2493896484375}, {"start": 658.78, "end": 659.2, "word": " example", "probability": 0.93115234375}, {"start": 659.2, "end": 659.32, "word": " at", "probability": 0.322509765625}, {"start": 659.32, "end": 659.64, "word": " one", "probability": 0.353271484375}, {"start": 659.64, "end": 659.7, "word": " o", "probability": 0.7646484375}, {"start": 659.7, "end": 659.7, "word": "'clock", "probability": 0.940185546875}, {"start": 659.7, "end": 659.88, "word": " at", "probability": 0.77490234375}, {"start": 659.88, "end": 660.1, "word": " night,", "probability": 0.89013671875}, {"start": 660.5, "end": 660.56, "word": " we", "probability": 0.407958984375}, {"start": 660.56, "end": 660.68, "word": " tell", "probability": 0.6943359375}, {"start": 660.68, "end": 660.78, "word": " them", "probability": 0.73486328125}, {"start": 660.78, "end": 660.84, "word": " to", "probability": 0.8701171875}, {"start": 660.84, "end": 661.0, "word": " do", "probability": 0.6455078125}, {"start": 661.0, "end": 661.28, "word": " what,", "probability": 0.30712890625}, {"start": 661.4, "end": 661.6, "word": " they", "probability": 0.321533203125}, {"start": 661.6, "end": 661.6, "word": " all", "probability": 0.71533203125}, {"start": 661.6, "end": 662.52, "word": " run", "probability": 0.344970703125}], "temperature": 1.0}, {"id": 26, "seek": 68520, "start": 663.68, "end": 685.2, "text": "Okay? Now if I want each one of us to create an object and implement it like that, it's not practical. We want something that I have, since I have a large number of tasks, okay? We create objects from them, and we want to put them in a list, to tell them what to do. Go around them and implement, regardless of what task is available.", "tokens": [8297, 30, 823, 498, 286, 528, 1184, 472, 295, 505, 281, 1884, 364, 2657, 293, 4445, 309, 411, 300, 11, 309, 311, 406, 8496, 13, 492, 528, 746, 300, 286, 362, 11, 1670, 286, 362, 257, 2416, 1230, 295, 9608, 11, 1392, 30, 492, 1884, 6565, 490, 552, 11, 293, 321, 528, 281, 829, 552, 294, 257, 1329, 11, 281, 980, 552, 437, 281, 360, 13, 1037, 926, 552, 293, 4445, 11, 10060, 295, 437, 5633, 307, 2435, 13], "avg_logprob": -0.5214844018220901, "compression_ratio": 1.6057692307692308, "no_speech_prob": 3.218650817871094e-05, "words": [{"start": 663.68, "end": 664.16, "word": "Okay?", "probability": 0.1319580078125}, {"start": 664.9, "end": 665.24, "word": " Now", "probability": 0.51708984375}, {"start": 665.24, "end": 665.42, "word": " if", "probability": 0.5927734375}, {"start": 665.42, "end": 665.64, "word": " I", "probability": 0.8896484375}, {"start": 665.64, "end": 665.78, "word": " want", "probability": 0.609375}, {"start": 665.78, "end": 666.16, "word": " each", "probability": 0.210693359375}, {"start": 666.16, "end": 666.64, "word": " one", "probability": 0.58935546875}, {"start": 666.64, "end": 666.66, "word": " of", "probability": 0.54736328125}, {"start": 666.66, "end": 666.66, "word": " us", "probability": 0.5244140625}, {"start": 666.66, "end": 667.3, "word": " to", "probability": 0.86083984375}, {"start": 667.3, "end": 667.46, "word": " create", "probability": 0.58447265625}, {"start": 667.46, "end": 667.72, "word": " an", "probability": 0.6943359375}, {"start": 667.72, "end": 667.94, "word": " object", "probability": 0.97119140625}, {"start": 667.94, "end": 668.14, "word": " and", "probability": 0.77734375}, {"start": 668.14, "end": 668.38, "word": " implement", "probability": 0.327880859375}, {"start": 668.38, "end": 668.58, "word": " it", "probability": 0.79638671875}, {"start": 668.58, "end": 668.58, "word": " like", "probability": 0.1529541015625}, {"start": 668.58, "end": 668.9, "word": " that,", "probability": 0.5966796875}, {"start": 669.16, "end": 669.22, "word": " it's", "probability": 0.5667724609375}, {"start": 669.22, "end": 669.3, "word": " not", "probability": 0.88916015625}, {"start": 669.3, "end": 669.56, "word": " practical.", "probability": 0.8837890625}, {"start": 670.02, "end": 670.2, "word": " We", "probability": 0.626953125}, {"start": 670.2, "end": 670.42, "word": " want", "probability": 0.5654296875}, {"start": 670.42, "end": 670.64, "word": " something", "probability": 0.501953125}, {"start": 670.64, "end": 670.98, "word": " that", "probability": 0.268310546875}, {"start": 670.98, "end": 671.12, "word": " I", "probability": 0.4208984375}, {"start": 671.12, "end": 671.4, "word": " have,", "probability": 0.80029296875}, {"start": 671.9, "end": 672.28, "word": " since", "probability": 0.5166015625}, {"start": 672.28, "end": 672.58, "word": " I", "probability": 0.9853515625}, {"start": 672.58, "end": 672.76, "word": " have", "probability": 0.93505859375}, {"start": 672.76, "end": 672.82, "word": " a", "probability": 0.69482421875}, {"start": 672.82, "end": 672.92, "word": " large", "probability": 0.4169921875}, {"start": 672.92, "end": 673.0, "word": " number", "probability": 0.88720703125}, {"start": 673.0, "end": 673.06, "word": " of", "probability": 0.9716796875}, {"start": 673.06, "end": 673.36, "word": " tasks,", "probability": 0.90966796875}, {"start": 674.28, "end": 674.52, "word": " okay?", "probability": 0.53173828125}, {"start": 674.68, "end": 674.94, "word": " We", "probability": 0.734375}, {"start": 674.94, "end": 675.12, "word": " create", "probability": 0.708984375}, {"start": 675.12, "end": 675.56, "word": " objects", "probability": 0.94091796875}, {"start": 675.56, "end": 675.76, "word": " from", "probability": 0.6669921875}, {"start": 675.76, "end": 675.96, "word": " them,", "probability": 0.8720703125}, {"start": 676.54, "end": 676.7, "word": " and", "probability": 0.8779296875}, {"start": 676.7, "end": 676.94, "word": " we", "probability": 0.80859375}, {"start": 676.94, "end": 676.94, "word": " want", "probability": 0.7158203125}, {"start": 676.94, "end": 677.4, "word": " to", "probability": 0.94580078125}, {"start": 677.4, "end": 677.58, "word": " put", "probability": 0.77294921875}, {"start": 677.58, "end": 677.7, "word": " them", "probability": 0.896484375}, {"start": 677.7, "end": 677.8, "word": " in", "probability": 0.5859375}, {"start": 677.8, "end": 677.88, "word": " a", "probability": 0.8984375}, {"start": 677.88, "end": 678.18, "word": " list,", "probability": 0.92578125}, {"start": 678.52, "end": 678.94, "word": " to", "probability": 0.481201171875}, {"start": 678.94, "end": 679.24, "word": " tell", "probability": 0.63916015625}, {"start": 679.24, "end": 679.34, "word": " them", "probability": 0.82421875}, {"start": 679.34, "end": 679.6, "word": " what", "probability": 0.52783203125}, {"start": 679.6, "end": 679.88, "word": " to", "probability": 0.431640625}, {"start": 679.88, "end": 679.88, "word": " do.", "probability": 0.74853515625}, {"start": 679.88, "end": 680.02, "word": " Go", "probability": 0.0799560546875}, {"start": 680.02, "end": 680.24, "word": " around", "probability": 0.7490234375}, {"start": 680.24, "end": 680.64, "word": " them", "probability": 0.7939453125}, {"start": 680.64, "end": 681.54, "word": " and", "probability": 0.73828125}, {"start": 681.54, "end": 681.78, "word": " implement,", "probability": 0.67822265625}, {"start": 682.52, "end": 682.86, "word": " regardless", "probability": 0.78271484375}, {"start": 682.86, "end": 683.56, "word": " of", "probability": 0.95751953125}, {"start": 683.56, "end": 684.4, "word": " what", "probability": 0.6494140625}, {"start": 684.4, "end": 684.76, "word": " task", "probability": 0.6962890625}, {"start": 684.76, "end": 684.9, "word": " is", "probability": 0.54443359375}, {"start": 684.9, "end": 685.2, "word": " available.", "probability": 0.29541015625}], "temperature": 1.0}, {"id": 27, "seek": 71497, "start": 686.49, "end": 714.97, "text": " And this will help me because tomorrow when I want to program a new task, all I need to do is create an object and add it to the list. It will create a loop and execute all the tasks. Now my question is, can I put all of them in one array? No. How can I do that? What kind of array should I put them in? Because when I had a full-time employee and a part-time employee,", "tokens": [400, 341, 486, 854, 385, 570, 4153, 562, 286, 528, 281, 1461, 257, 777, 5633, 11, 439, 286, 643, 281, 360, 307, 1884, 364, 2657, 293, 909, 309, 281, 264, 1329, 13, 467, 486, 1884, 257, 6367, 293, 14483, 439, 264, 9608, 13, 823, 452, 1168, 307, 11, 393, 286, 829, 439, 295, 552, 294, 472, 10225, 30, 883, 13, 1012, 393, 286, 360, 300, 30, 708, 733, 295, 10225, 820, 286, 829, 552, 294, 30, 1436, 562, 286, 632, 257, 1577, 12, 3766, 10738, 293, 257, 644, 12, 3766, 10738, 11], "avg_logprob": -0.4472446146831718, "compression_ratio": 1.6371681415929205, "no_speech_prob": 3.039836883544922e-06, "words": [{"start": 686.49, "end": 686.71, "word": " And", "probability": 0.2822265625}, {"start": 686.71, "end": 686.87, "word": " this", "probability": 0.447509765625}, {"start": 686.87, "end": 686.99, "word": " will", "probability": 0.332275390625}, {"start": 686.99, "end": 687.19, "word": " help", "probability": 0.260498046875}, {"start": 687.19, "end": 687.41, "word": " me", "probability": 0.62158203125}, {"start": 687.41, "end": 687.83, "word": " because", "probability": 0.166259765625}, {"start": 687.83, "end": 688.81, "word": " tomorrow", "probability": 0.5185546875}, {"start": 688.81, "end": 689.01, "word": " when", "probability": 0.74462890625}, {"start": 689.01, "end": 689.27, "word": " I", "probability": 0.94921875}, {"start": 689.27, "end": 689.27, "word": " want", "probability": 0.319580078125}, {"start": 689.27, "end": 690.09, "word": " to", "probability": 0.958984375}, {"start": 690.09, "end": 690.35, "word": " program", "probability": 0.392578125}, {"start": 690.35, "end": 690.51, "word": " a", "probability": 0.71240234375}, {"start": 690.51, "end": 690.51, "word": " new", "probability": 0.85107421875}, {"start": 690.51, "end": 690.93, "word": " task,", "probability": 0.91064453125}, {"start": 691.07, "end": 691.27, "word": " all", "probability": 0.339111328125}, {"start": 691.27, "end": 691.45, "word": " I", "probability": 0.57373046875}, {"start": 691.45, "end": 691.91, "word": " need", "probability": 0.70654296875}, {"start": 691.91, "end": 692.07, "word": " to", "probability": 0.90185546875}, {"start": 692.07, "end": 692.19, "word": " do", "probability": 0.94091796875}, {"start": 692.19, "end": 692.33, "word": " is", "probability": 0.88720703125}, {"start": 692.33, "end": 692.47, "word": " create", "probability": 0.46337890625}, {"start": 692.47, "end": 692.65, "word": " an", "probability": 0.462158203125}, {"start": 692.65, "end": 692.87, "word": " object", "probability": 0.916015625}, {"start": 692.87, "end": 693.55, "word": " and", "probability": 0.5078125}, {"start": 693.55, "end": 694.51, "word": " add", "probability": 0.59228515625}, {"start": 694.51, "end": 694.63, "word": " it", "probability": 0.896484375}, {"start": 694.63, "end": 694.73, "word": " to", "probability": 0.8349609375}, {"start": 694.73, "end": 694.75, "word": " the", "probability": 0.8408203125}, {"start": 694.75, "end": 695.03, "word": " list.", "probability": 0.89208984375}, {"start": 695.37, "end": 695.59, "word": " It", "probability": 0.311279296875}, {"start": 695.59, "end": 695.69, "word": " will", "probability": 0.44873046875}, {"start": 695.69, "end": 696.13, "word": " create", "probability": 0.288330078125}, {"start": 696.13, "end": 696.27, "word": " a", "probability": 0.92333984375}, {"start": 696.27, "end": 696.57, "word": " loop", "probability": 0.8095703125}, {"start": 696.57, "end": 697.27, "word": " and", "probability": 0.67724609375}, {"start": 697.27, "end": 697.55, "word": " execute", "probability": 0.38037109375}, {"start": 697.55, "end": 697.79, "word": " all", "probability": 0.82470703125}, {"start": 697.79, "end": 697.87, "word": " the", "probability": 0.55517578125}, {"start": 697.87, "end": 698.23, "word": " tasks.", "probability": 0.86181640625}, {"start": 699.93, "end": 700.33, "word": " Now", "probability": 0.26806640625}, {"start": 700.33, "end": 700.55, "word": " my", "probability": 0.4296875}, {"start": 700.55, "end": 700.79, "word": " question", "probability": 0.8916015625}, {"start": 700.79, "end": 700.93, "word": " is,", "probability": 0.88427734375}, {"start": 700.95, "end": 701.13, "word": " can", "probability": 0.79248046875}, {"start": 701.13, "end": 701.29, "word": " I", "probability": 0.98486328125}, {"start": 701.29, "end": 701.47, "word": " put", "probability": 0.59423828125}, {"start": 701.47, "end": 701.67, "word": " all", "probability": 0.58837890625}, {"start": 701.67, "end": 701.67, "word": " of", "probability": 0.3505859375}, {"start": 701.67, "end": 701.75, "word": " them", "probability": 0.411865234375}, {"start": 701.75, "end": 702.01, "word": " in", "probability": 0.80029296875}, {"start": 702.01, "end": 702.07, "word": " one", "probability": 0.7587890625}, {"start": 702.07, "end": 702.23, "word": " array?", "probability": 0.7333984375}, {"start": 704.49, "end": 704.89, "word": " No.", "probability": 0.284912109375}, {"start": 705.91, "end": 706.31, "word": " How", "probability": 0.89208984375}, {"start": 706.31, "end": 706.39, "word": " can", "probability": 0.80029296875}, {"start": 706.39, "end": 706.53, "word": " I", "probability": 0.98974609375}, {"start": 706.53, "end": 706.63, "word": " do", "probability": 0.52392578125}, {"start": 706.63, "end": 706.73, "word": " that?", "probability": 0.6083984375}, {"start": 706.81, "end": 706.97, "word": " What", "probability": 0.64453125}, {"start": 706.97, "end": 707.05, "word": " kind", "probability": 0.38134765625}, {"start": 707.05, "end": 707.05, "word": " of", "probability": 0.9638671875}, {"start": 707.05, "end": 707.25, "word": " array", "probability": 0.438232421875}, {"start": 707.25, "end": 707.37, "word": " should", "probability": 0.51513671875}, {"start": 707.37, "end": 707.41, "word": " I", "probability": 0.9599609375}, {"start": 707.41, "end": 707.55, "word": " put", "probability": 0.697265625}, {"start": 707.55, "end": 707.65, "word": " them", "probability": 0.798828125}, {"start": 707.65, "end": 707.79, "word": " in?", "probability": 0.83642578125}, {"start": 711.39, "end": 711.79, "word": " Because", "probability": 0.486328125}, {"start": 711.79, "end": 712.53, "word": " when", "probability": 0.849609375}, {"start": 712.53, "end": 712.69, "word": " I", "probability": 0.9921875}, {"start": 712.69, "end": 712.99, "word": " had", "probability": 0.79736328125}, {"start": 712.99, "end": 713.11, "word": " a", "probability": 0.7255859375}, {"start": 713.11, "end": 713.25, "word": " full", "probability": 0.91455078125}, {"start": 713.25, "end": 713.49, "word": "-time", "probability": 0.940673828125}, {"start": 713.49, "end": 713.95, "word": " employee", "probability": 0.7763671875}, {"start": 713.95, "end": 714.15, "word": " and", "probability": 0.90576171875}, {"start": 714.15, "end": 714.19, "word": " a", "probability": 0.59619140625}, {"start": 714.19, "end": 714.39, "word": " part", "probability": 0.9423828125}, {"start": 714.39, "end": 714.57, "word": "-time", "probability": 0.987060546875}, {"start": 714.57, "end": 714.97, "word": " employee,", "probability": 0.8837890625}], "temperature": 1.0}, {"id": 28, "seek": 73933, "start": 716.43, "end": 739.33, "text": " I could put them in one employee array. Do they have a super class? No. Why don't they have a super class? Because there is something that brings them together. I want to keep them all in one array. I want to keep them all in one array. Why do I want to keep them all in one array? Because I want to put them in one list.", "tokens": [286, 727, 829, 552, 294, 472, 10738, 10225, 13, 1144, 436, 362, 257, 1687, 1508, 30, 883, 13, 1545, 500, 380, 436, 362, 257, 1687, 1508, 30, 1436, 456, 307, 746, 300, 5607, 552, 1214, 13, 286, 528, 281, 1066, 552, 439, 294, 472, 10225, 13, 286, 528, 281, 1066, 552, 439, 294, 472, 10225, 13, 1545, 360, 286, 528, 281, 1066, 552, 439, 294, 472, 10225, 30, 1436, 286, 528, 281, 829, 552, 294, 472, 1329, 13], "avg_logprob": -0.4422468256346787, "compression_ratio": 2.1184210526315788, "no_speech_prob": 1.722574234008789e-05, "words": [{"start": 716.43, "end": 716.77, "word": " I", "probability": 0.646484375}, {"start": 716.77, "end": 716.77, "word": " could", "probability": 0.60205078125}, {"start": 716.77, "end": 717.21, "word": " put", "probability": 0.44140625}, {"start": 717.21, "end": 717.29, "word": " them", "probability": 0.79345703125}, {"start": 717.29, "end": 717.41, "word": " in", "probability": 0.68212890625}, {"start": 717.41, "end": 718.05, "word": " one", "probability": 0.444580078125}, {"start": 718.05, "end": 718.87, "word": " employee", "probability": 0.1937255859375}, {"start": 718.87, "end": 718.87, "word": " array.", "probability": 0.75}, {"start": 719.49, "end": 719.83, "word": " Do", "probability": 0.262939453125}, {"start": 719.83, "end": 720.59, "word": " they", "probability": 0.541015625}, {"start": 720.59, "end": 722.13, "word": " have", "probability": 0.73046875}, {"start": 722.13, "end": 722.87, "word": " a", "probability": 0.37744140625}, {"start": 722.87, "end": 723.03, "word": " super", "probability": 0.76904296875}, {"start": 723.03, "end": 723.37, "word": " class?", "probability": 0.4921875}, {"start": 723.77, "end": 724.33, "word": " No.", "probability": 0.818359375}, {"start": 725.29, "end": 725.59, "word": " Why", "probability": 0.7158203125}, {"start": 725.59, "end": 725.69, "word": " don't", "probability": 0.62225341796875}, {"start": 725.69, "end": 726.07, "word": " they", "probability": 0.86181640625}, {"start": 726.07, "end": 726.17, "word": " have", "probability": 0.89111328125}, {"start": 726.17, "end": 726.27, "word": " a", "probability": 0.75439453125}, {"start": 726.27, "end": 726.43, "word": " super", "probability": 0.94384765625}, {"start": 726.43, "end": 726.71, "word": " class?", "probability": 0.91748046875}, {"start": 726.79, "end": 726.93, "word": " Because", "probability": 0.87109375}, {"start": 726.93, "end": 727.31, "word": " there", "probability": 0.333251953125}, {"start": 727.31, "end": 727.39, "word": " is", "probability": 0.7197265625}, {"start": 727.39, "end": 727.75, "word": " something", "probability": 0.47607421875}, {"start": 727.75, "end": 728.45, "word": " that", "probability": 0.53076171875}, {"start": 728.45, "end": 728.57, "word": " brings", "probability": 0.28857421875}, {"start": 728.57, "end": 728.81, "word": " them", "probability": 0.84912109375}, {"start": 728.81, "end": 728.81, "word": " together.", "probability": 0.85205078125}, {"start": 729.31, "end": 729.83, "word": " I", "probability": 0.451416015625}, {"start": 729.83, "end": 730.47, "word": " want", "probability": 0.5947265625}, {"start": 730.47, "end": 731.53, "word": " to", "probability": 0.8349609375}, {"start": 731.53, "end": 731.73, "word": " keep", "probability": 0.25927734375}, {"start": 731.73, "end": 731.91, "word": " them", "probability": 0.7001953125}, {"start": 731.91, "end": 732.13, "word": " all", "probability": 0.81298828125}, {"start": 732.13, "end": 732.25, "word": " in", "probability": 0.33935546875}, {"start": 732.25, "end": 732.63, "word": " one", "probability": 0.83642578125}, {"start": 732.63, "end": 732.63, "word": " array.", "probability": 0.5556640625}, {"start": 734.51, "end": 734.79, "word": " I", "probability": 0.2117919921875}, {"start": 734.79, "end": 735.21, "word": " want", "probability": 0.50244140625}, {"start": 735.21, "end": 735.27, "word": " to", "probability": 0.92236328125}, {"start": 735.27, "end": 735.43, "word": " keep", "probability": 0.86083984375}, {"start": 735.43, "end": 735.59, "word": " them", "probability": 0.84912109375}, {"start": 735.59, "end": 735.67, "word": " all", "probability": 0.7197265625}, {"start": 735.67, "end": 735.67, "word": " in", "probability": 0.82275390625}, {"start": 735.67, "end": 736.09, "word": " one", "probability": 0.89794921875}, {"start": 736.09, "end": 736.11, "word": " array.", "probability": 0.8603515625}, {"start": 736.15, "end": 736.47, "word": " Why", "probability": 0.607421875}, {"start": 736.47, "end": 736.57, "word": " do", "probability": 0.39599609375}, {"start": 736.57, "end": 736.57, "word": " I", "probability": 0.97802734375}, {"start": 736.57, "end": 736.65, "word": " want", "probability": 0.2327880859375}, {"start": 736.65, "end": 736.65, "word": " to", "probability": 0.88671875}, {"start": 736.65, "end": 736.71, "word": " keep", "probability": 0.73046875}, {"start": 736.71, "end": 736.81, "word": " them", "probability": 0.87451171875}, {"start": 736.81, "end": 736.87, "word": " all", "probability": 0.79736328125}, {"start": 736.87, "end": 736.87, "word": " in", "probability": 0.912109375}, {"start": 736.87, "end": 737.33, "word": " one", "probability": 0.9267578125}, {"start": 737.33, "end": 737.33, "word": " array?", "probability": 0.8818359375}, {"start": 737.91, "end": 738.47, "word": " Because", "probability": 0.427734375}, {"start": 738.47, "end": 738.59, "word": " I", "probability": 0.9267578125}, {"start": 738.59, "end": 738.79, "word": " want", "probability": 0.72216796875}, {"start": 738.79, "end": 738.79, "word": " to", "probability": 0.91748046875}, {"start": 738.79, "end": 738.79, "word": " put", "probability": 0.77392578125}, {"start": 738.79, "end": 738.89, "word": " them", "probability": 0.8759765625}, {"start": 738.89, "end": 738.95, "word": " in", "probability": 0.7138671875}, {"start": 738.95, "end": 738.95, "word": " one", "probability": 0.68994140625}, {"start": 738.95, "end": 739.33, "word": " list.", "probability": 0.85693359375}], "temperature": 1.0}, {"id": 29, "seek": 76967, "start": 741.23, "end": 769.67, "text": " despite the fact that there is nothing to collect until we learned that in order to collect or leave things of the kind make a super class and let them do it for you extend so we went and made a class I want to call it task for example okay this is the task class empty with me or not guys? empty all you have to do is go to the three classes that I made the backup task and say extends", "tokens": [7228, 264, 1186, 300, 456, 307, 1825, 281, 2500, 1826, 321, 3264, 300, 294, 1668, 281, 2500, 420, 1856, 721, 295, 264, 733, 652, 257, 1687, 1508, 293, 718, 552, 360, 309, 337, 291, 10101, 370, 321, 1437, 293, 1027, 257, 1508, 286, 528, 281, 818, 309, 5633, 337, 1365, 1392, 341, 307, 264, 5633, 1508, 6707, 365, 385, 420, 406, 1074, 30, 6707, 439, 291, 362, 281, 360, 307, 352, 281, 264, 1045, 5359, 300, 286, 1027, 264, 14807, 5633, 293, 584, 26448], "avg_logprob": -0.5621323585510254, "compression_ratio": 1.7916666666666667, "no_speech_prob": 3.814697265625e-06, "words": [{"start": 741.23, "end": 741.69, "word": " despite", "probability": 0.0732421875}, {"start": 741.69, "end": 741.95, "word": " the", "probability": 0.469482421875}, {"start": 741.95, "end": 741.95, "word": " fact", "probability": 0.869140625}, {"start": 741.95, "end": 741.95, "word": " that", "probability": 0.80322265625}, {"start": 741.95, "end": 742.13, "word": " there", "probability": 0.6982421875}, {"start": 742.13, "end": 742.31, "word": " is", "probability": 0.58251953125}, {"start": 742.31, "end": 742.55, "word": " nothing", "probability": 0.5244140625}, {"start": 742.55, "end": 743.47, "word": " to", "probability": 0.422119140625}, {"start": 743.47, "end": 743.63, "word": " collect", "probability": 0.29736328125}, {"start": 743.63, "end": 744.45, "word": " until", "probability": 0.1016845703125}, {"start": 744.45, "end": 744.79, "word": " we", "probability": 0.8623046875}, {"start": 744.79, "end": 745.11, "word": " learned", "probability": 0.318603515625}, {"start": 745.11, "end": 745.39, "word": " that", "probability": 0.7802734375}, {"start": 745.39, "end": 745.61, "word": " in", "probability": 0.459228515625}, {"start": 745.61, "end": 745.67, "word": " order", "probability": 0.91357421875}, {"start": 745.67, "end": 745.81, "word": " to", "probability": 0.955078125}, {"start": 745.81, "end": 746.11, "word": " collect", "probability": 0.84619140625}, {"start": 746.11, "end": 747.03, "word": " or", "probability": 0.79931640625}, {"start": 747.03, "end": 747.37, "word": " leave", "probability": 0.298828125}, {"start": 747.37, "end": 747.73, "word": " things", "probability": 0.479736328125}, {"start": 747.73, "end": 747.87, "word": " of", "probability": 0.59716796875}, {"start": 747.87, "end": 747.95, "word": " the", "probability": 0.2435302734375}, {"start": 747.95, "end": 748.17, "word": " kind", "probability": 0.465576171875}, {"start": 748.17, "end": 748.49, "word": " make", "probability": 0.298095703125}, {"start": 748.49, "end": 748.77, "word": " a", "probability": 0.7861328125}, {"start": 748.77, "end": 749.03, "word": " super", "probability": 0.9443359375}, {"start": 749.03, "end": 749.35, "word": " class", "probability": 0.6484375}, {"start": 749.35, "end": 749.49, "word": " and", "probability": 0.88330078125}, {"start": 749.49, "end": 749.63, "word": " let", "probability": 0.71435546875}, {"start": 749.63, "end": 749.77, "word": " them", "probability": 0.875}, {"start": 749.77, "end": 749.99, "word": " do", "probability": 0.408203125}, {"start": 749.99, "end": 750.17, "word": " it", "probability": 0.34716796875}, {"start": 750.17, "end": 750.17, "word": " for", "probability": 0.304931640625}, {"start": 750.17, "end": 750.57, "word": " you", "probability": 0.302978515625}, {"start": 750.57, "end": 751.29, "word": " extend", "probability": 0.446044921875}, {"start": 751.29, "end": 751.81, "word": " so", "probability": 0.288330078125}, {"start": 751.81, "end": 752.05, "word": " we", "probability": 0.88330078125}, {"start": 752.05, "end": 752.05, "word": " went", "probability": 0.494140625}, {"start": 752.05, "end": 752.17, "word": " and", "probability": 0.8076171875}, {"start": 752.17, "end": 752.29, "word": " made", "probability": 0.71630859375}, {"start": 752.29, "end": 752.45, "word": " a", "probability": 0.94189453125}, {"start": 752.45, "end": 752.89, "word": " class", "probability": 0.95947265625}, {"start": 752.89, "end": 753.93, "word": " I", "probability": 0.260986328125}, {"start": 753.93, "end": 754.19, "word": " want", "probability": 0.498046875}, {"start": 754.19, "end": 754.31, "word": " to", "probability": 0.95849609375}, {"start": 754.31, "end": 754.45, "word": " call", "probability": 0.634765625}, {"start": 754.45, "end": 754.61, "word": " it", "probability": 0.90966796875}, {"start": 754.61, "end": 755.19, "word": " task", "probability": 0.5732421875}, {"start": 755.19, "end": 756.13, "word": " for", "probability": 0.288330078125}, {"start": 756.13, "end": 756.13, "word": " example", "probability": 0.96240234375}, {"start": 756.13, "end": 756.83, "word": " okay", "probability": 0.509765625}, {"start": 756.83, "end": 757.89, "word": " this", "probability": 0.6943359375}, {"start": 757.89, "end": 758.05, "word": " is", "probability": 0.82080078125}, {"start": 758.05, "end": 758.05, "word": " the", "probability": 0.67724609375}, {"start": 758.05, "end": 758.65, "word": " task", "probability": 0.482421875}, {"start": 758.65, "end": 759.81, "word": " class", "probability": 0.97314453125}, {"start": 759.81, "end": 760.63, "word": " empty", "probability": 0.489990234375}, {"start": 760.63, "end": 762.25, "word": " with", "probability": 0.1165771484375}, {"start": 762.25, "end": 762.43, "word": " me", "probability": 0.79296875}, {"start": 762.43, "end": 762.53, "word": " or", "probability": 0.81396484375}, {"start": 762.53, "end": 762.67, "word": " not", "probability": 0.80322265625}, {"start": 762.67, "end": 763.09, "word": " guys?", "probability": 0.78515625}, {"start": 763.41, "end": 763.67, "word": " empty", "probability": 0.6494140625}, {"start": 763.67, "end": 764.35, "word": " all", "probability": 0.2303466796875}, {"start": 764.35, "end": 764.55, "word": " you", "probability": 0.1456298828125}, {"start": 764.55, "end": 764.61, "word": " have", "probability": 0.452392578125}, {"start": 764.61, "end": 764.77, "word": " to", "probability": 0.96240234375}, {"start": 764.77, "end": 765.07, "word": " do", "probability": 0.96044921875}, {"start": 765.07, "end": 765.41, "word": " is", "probability": 0.595703125}, {"start": 765.41, "end": 765.61, "word": " go", "probability": 0.88671875}, {"start": 765.61, "end": 765.79, "word": " to", "probability": 0.94677734375}, {"start": 765.79, "end": 766.19, "word": " the", "probability": 0.84033203125}, {"start": 766.19, "end": 766.81, "word": " three", "probability": 0.79248046875}, {"start": 766.81, "end": 767.25, "word": " classes", "probability": 0.923828125}, {"start": 767.25, "end": 767.41, "word": " that", "probability": 0.4560546875}, {"start": 767.41, "end": 767.45, "word": " I", "probability": 0.69677734375}, {"start": 767.45, "end": 767.67, "word": " made", "probability": 0.5927734375}, {"start": 767.67, "end": 768.11, "word": " the", "probability": 0.51513671875}, {"start": 768.11, "end": 768.35, "word": " backup", "probability": 0.798828125}, {"start": 768.35, "end": 768.71, "word": " task", "probability": 0.81640625}, {"start": 768.71, "end": 768.87, "word": " and", "probability": 0.8896484375}, {"start": 768.87, "end": 769.05, "word": " say", "probability": 0.8232421875}, {"start": 769.05, "end": 769.67, "word": " extends", "probability": 0.76708984375}], "temperature": 1.0}, {"id": 30, "seek": 79879, "start": 771.93, "end": 798.79, "text": " task and for security checks say extends task and this clean disk also extends task did we reach the same point or not? we haven't talked about the interface yet what did we do? class right or not? why did you make this class? this class doesn't have shared information between them because of this class", "tokens": [5633, 293, 337, 3825, 13834, 584, 26448, 5633, 293, 341, 596, 68, 282, 12355, 611, 26448, 5633, 630, 321, 2524, 264, 912, 935, 420, 406, 30, 321, 2378, 380, 2825, 466, 264, 9226, 1939, 437, 630, 321, 360, 30, 1508, 558, 420, 406, 30, 983, 630, 291, 652, 341, 1508, 30, 341, 1508, 1177, 380, 362, 5507, 1589, 1296, 552, 570, 295, 341, 1508], "avg_logprob": -0.45721153846153845, "compression_ratio": 1.7329545454545454, "no_speech_prob": 1.5139579772949219e-05, "words": [{"start": 771.93, "end": 772.33, "word": " task", "probability": 0.482421875}, {"start": 772.33, "end": 773.07, "word": " and", "probability": 0.4072265625}, {"start": 773.07, "end": 773.17, "word": " for", "probability": 0.7724609375}, {"start": 773.17, "end": 773.57, "word": " security", "probability": 0.72705078125}, {"start": 773.57, "end": 774.01, "word": " checks", "probability": 0.7158203125}, {"start": 774.01, "end": 774.29, "word": " say", "probability": 0.377197265625}, {"start": 774.29, "end": 774.91, "word": " extends", "probability": 0.8662109375}, {"start": 774.91, "end": 777.09, "word": " task", "probability": 0.85009765625}, {"start": 777.09, "end": 778.39, "word": " and", "probability": 0.7412109375}, {"start": 778.39, "end": 778.59, "word": " this", "probability": 0.466064453125}, {"start": 778.59, "end": 778.87, "word": " clean", "probability": 0.626708984375}, {"start": 778.87, "end": 779.17, "word": " disk", "probability": 0.912109375}, {"start": 779.17, "end": 779.61, "word": " also", "probability": 0.58154296875}, {"start": 779.61, "end": 780.31, "word": " extends", "probability": 0.92529296875}, {"start": 780.31, "end": 784.23, "word": " task", "probability": 0.91748046875}, {"start": 784.23, "end": 784.49, "word": " did", "probability": 0.14697265625}, {"start": 784.49, "end": 784.55, "word": " we", "probability": 0.75390625}, {"start": 784.55, "end": 784.57, "word": " reach", "probability": 0.314697265625}, {"start": 784.57, "end": 784.73, "word": " the", "probability": 0.83740234375}, {"start": 784.73, "end": 784.83, "word": " same", "probability": 0.8935546875}, {"start": 784.83, "end": 785.09, "word": " point", "probability": 0.77099609375}, {"start": 785.09, "end": 785.23, "word": " or", "probability": 0.58837890625}, {"start": 785.23, "end": 785.39, "word": " not?", "probability": 0.88232421875}, {"start": 785.69, "end": 786.25, "word": " we", "probability": 0.8193359375}, {"start": 786.25, "end": 786.31, "word": " haven't", "probability": 0.6270751953125}, {"start": 786.31, "end": 786.59, "word": " talked", "probability": 0.339599609375}, {"start": 786.59, "end": 786.81, "word": " about", "probability": 0.857421875}, {"start": 786.81, "end": 786.89, "word": " the", "probability": 0.78125}, {"start": 786.89, "end": 787.23, "word": " interface", "probability": 0.87255859375}, {"start": 787.23, "end": 787.49, "word": " yet", "probability": 0.73486328125}, {"start": 787.49, "end": 787.87, "word": " what", "probability": 0.51904296875}, {"start": 787.87, "end": 788.61, "word": " did", "probability": 0.8388671875}, {"start": 788.61, "end": 788.89, "word": " we", "probability": 0.95458984375}, {"start": 788.89, "end": 788.89, "word": " do?", "probability": 0.94873046875}, {"start": 789.39, "end": 789.99, "word": " class", "probability": 0.8974609375}, {"start": 789.99, "end": 790.89, "word": " right", "probability": 0.3525390625}, {"start": 790.89, "end": 791.09, "word": " or", "probability": 0.91259765625}, {"start": 791.09, "end": 791.17, "word": " not?", "probability": 0.48291015625}, {"start": 791.59, "end": 792.19, "word": " why", "probability": 0.845703125}, {"start": 792.19, "end": 792.35, "word": " did", "probability": 0.9423828125}, {"start": 792.35, "end": 792.35, "word": " you", "probability": 0.5966796875}, {"start": 792.35, "end": 792.55, "word": " make", "probability": 0.57958984375}, {"start": 792.55, "end": 792.73, "word": " this", "probability": 0.7216796875}, {"start": 792.73, "end": 793.03, "word": " class?", "probability": 0.97412109375}, {"start": 794.31, "end": 794.91, "word": " this", "probability": 0.64501953125}, {"start": 794.91, "end": 795.23, "word": " class", "probability": 0.96875}, {"start": 795.23, "end": 795.89, "word": " doesn't", "probability": 0.630126953125}, {"start": 795.89, "end": 796.49, "word": " have", "probability": 0.6201171875}, {"start": 796.49, "end": 796.59, "word": " shared", "probability": 0.442138671875}, {"start": 796.59, "end": 797.37, "word": " information", "probability": 0.560546875}, {"start": 797.37, "end": 797.53, "word": " between", "probability": 0.29736328125}, {"start": 797.53, "end": 797.81, "word": " them", "probability": 0.8720703125}, {"start": 797.81, "end": 798.21, "word": " because", "probability": 0.263427734375}, {"start": 798.21, "end": 798.39, "word": " of", "probability": 0.384765625}, {"start": 798.39, "end": 798.47, "word": " this", "probability": 0.34130859375}, {"start": 798.47, "end": 798.79, "word": " class", "probability": 0.98486328125}], "temperature": 1.0}, {"id": 31, "seek": 81912, "start": 800.3, "end": 819.12, "text": " Can I write anything in the class? No, the class is empty. Well, if it's empty, why did I make it? I made it to make them all the same type, so that I can come to the main here and make it a playlist of tasks, called tasks.", "tokens": [1664, 286, 2464, 1340, 294, 264, 1508, 30, 883, 11, 264, 1508, 307, 6707, 13, 1042, 11, 498, 309, 311, 6707, 11, 983, 630, 286, 652, 309, 30, 286, 1027, 309, 281, 652, 552, 439, 264, 912, 2010, 11, 370, 300, 286, 393, 808, 281, 264, 2135, 510, 293, 652, 309, 257, 16788, 295, 9608, 11, 1219, 9608, 13], "avg_logprob": -0.5328125149011612, "compression_ratio": 1.4834437086092715, "no_speech_prob": 4.947185516357422e-06, "words": [{"start": 800.3, "end": 800.52, "word": " Can", "probability": 0.189208984375}, {"start": 800.52, "end": 800.64, "word": " I", "probability": 0.81787109375}, {"start": 800.64, "end": 800.82, "word": " write", "probability": 0.61376953125}, {"start": 800.82, "end": 801.06, "word": " anything", "probability": 0.495361328125}, {"start": 801.06, "end": 801.18, "word": " in", "probability": 0.59521484375}, {"start": 801.18, "end": 801.36, "word": " the", "probability": 0.411865234375}, {"start": 801.36, "end": 801.68, "word": " class?", "probability": 0.9560546875}, {"start": 801.84, "end": 802.2, "word": " No,", "probability": 0.77734375}, {"start": 802.26, "end": 802.3, "word": " the", "probability": 0.27685546875}, {"start": 802.3, "end": 802.54, "word": " class", "probability": 0.92822265625}, {"start": 802.54, "end": 802.6, "word": " is", "probability": 0.896484375}, {"start": 802.6, "end": 802.82, "word": " empty.", "probability": 0.6064453125}, {"start": 803.36, "end": 803.56, "word": " Well,", "probability": 0.11932373046875}, {"start": 803.6, "end": 803.7, "word": " if", "probability": 0.359130859375}, {"start": 803.7, "end": 803.78, "word": " it's", "probability": 0.64404296875}, {"start": 803.78, "end": 804.06, "word": " empty,", "probability": 0.51904296875}, {"start": 804.16, "end": 804.28, "word": " why", "probability": 0.630859375}, {"start": 804.28, "end": 804.34, "word": " did", "probability": 0.8876953125}, {"start": 804.34, "end": 804.34, "word": " I", "probability": 0.9765625}, {"start": 804.34, "end": 804.56, "word": " make", "probability": 0.453369140625}, {"start": 804.56, "end": 804.74, "word": " it?", "probability": 0.89501953125}, {"start": 805.06, "end": 805.5, "word": " I", "probability": 0.841796875}, {"start": 805.5, "end": 805.74, "word": " made", "probability": 0.78662109375}, {"start": 805.74, "end": 805.88, "word": " it", "probability": 0.9033203125}, {"start": 805.88, "end": 806.08, "word": " to", "probability": 0.611328125}, {"start": 806.08, "end": 806.38, "word": " make", "probability": 0.666015625}, {"start": 806.38, "end": 806.9, "word": " them", "probability": 0.69287109375}, {"start": 806.9, "end": 806.9, "word": " all", "probability": 0.87890625}, {"start": 806.9, "end": 807.08, "word": " the", "probability": 0.52294921875}, {"start": 807.08, "end": 807.42, "word": " same", "probability": 0.90380859375}, {"start": 807.42, "end": 808.12, "word": " type,", "probability": 0.61328125}, {"start": 808.18, "end": 808.36, "word": " so", "probability": 0.66552734375}, {"start": 808.36, "end": 808.48, "word": " that", "probability": 0.5048828125}, {"start": 808.48, "end": 808.92, "word": " I", "probability": 0.9814453125}, {"start": 808.92, "end": 808.92, "word": " can", "probability": 0.765625}, {"start": 808.92, "end": 809.2, "word": " come", "probability": 0.388671875}, {"start": 809.2, "end": 810.4, "word": " to", "probability": 0.5244140625}, {"start": 810.4, "end": 810.54, "word": " the", "probability": 0.59228515625}, {"start": 810.54, "end": 810.78, "word": " main", "probability": 0.76318359375}, {"start": 810.78, "end": 811.66, "word": " here", "probability": 0.201904296875}, {"start": 811.66, "end": 812.1, "word": " and", "probability": 0.7412109375}, {"start": 812.1, "end": 812.4, "word": " make", "probability": 0.7236328125}, {"start": 812.4, "end": 812.5, "word": " it", "probability": 0.4208984375}, {"start": 812.5, "end": 812.6, "word": " a", "probability": 0.78076171875}, {"start": 812.6, "end": 813.14, "word": " playlist", "probability": 0.19140625}, {"start": 813.14, "end": 815.52, "word": " of", "probability": 0.791015625}, {"start": 815.52, "end": 817.98, "word": " tasks,", "probability": 0.41650390625}, {"start": 818.28, "end": 818.58, "word": " called", "probability": 0.398681640625}, {"start": 818.58, "end": 819.12, "word": " tasks.", "probability": 0.70751953125}], "temperature": 1.0}, {"id": 32, "seek": 85805, "start": 830.57, "end": 858.05, "text": " and I can go to tasks and say add T1 to T3 if I have more than one, I add it because the advantage when I say to each task T is present where? task I want to run it", "tokens": [293, 286, 393, 352, 281, 9608, 293, 584, 909, 314, 16, 281, 314, 18, 498, 286, 362, 544, 813, 472, 11, 286, 909, 309, 570, 264, 5002, 562, 286, 584, 281, 1184, 5633, 314, 307, 1974, 689, 30, 5633, 286, 528, 281, 1190, 309], "avg_logprob": -0.5701388623979357, "compression_ratio": 1.3524590163934427, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 830.57, "end": 831.07, "word": " and", "probability": 0.08038330078125}, {"start": 831.07, "end": 831.23, "word": " I", "probability": 0.7255859375}, {"start": 831.23, "end": 831.37, "word": " can", "probability": 0.7802734375}, {"start": 831.37, "end": 831.67, "word": " go", "probability": 0.26220703125}, {"start": 831.67, "end": 832.07, "word": " to", "probability": 0.79638671875}, {"start": 832.07, "end": 832.55, "word": " tasks", "probability": 0.424560546875}, {"start": 832.55, "end": 833.77, "word": " and", "probability": 0.70703125}, {"start": 833.77, "end": 833.95, "word": " say", "probability": 0.418701171875}, {"start": 833.95, "end": 834.43, "word": " add", "probability": 0.70361328125}, {"start": 834.43, "end": 837.35, "word": " T1", "probability": 0.673095703125}, {"start": 837.35, "end": 837.47, "word": " to", "probability": 0.11248779296875}, {"start": 837.47, "end": 844.79, "word": " T3", "probability": 0.631591796875}, {"start": 844.79, "end": 846.61, "word": " if", "probability": 0.4892578125}, {"start": 846.61, "end": 846.81, "word": " I", "probability": 0.830078125}, {"start": 846.81, "end": 846.85, "word": " have", "probability": 0.86083984375}, {"start": 846.85, "end": 847.05, "word": " more", "probability": 0.8583984375}, {"start": 847.05, "end": 847.31, "word": " than", "probability": 0.8515625}, {"start": 847.31, "end": 847.33, "word": " one,", "probability": 0.83642578125}, {"start": 847.35, "end": 847.47, "word": " I", "probability": 0.9296875}, {"start": 847.47, "end": 847.61, "word": " add", "probability": 0.46435546875}, {"start": 847.61, "end": 848.09, "word": " it", "probability": 0.66162109375}, {"start": 848.09, "end": 848.41, "word": " because", "probability": 0.67919921875}, {"start": 848.41, "end": 848.57, "word": " the", "probability": 0.53955078125}, {"start": 848.57, "end": 848.83, "word": " advantage", "probability": 0.77734375}, {"start": 848.83, "end": 850.55, "word": " when", "probability": 0.51611328125}, {"start": 850.55, "end": 850.75, "word": " I", "probability": 0.97216796875}, {"start": 850.75, "end": 850.95, "word": " say", "probability": 0.72412109375}, {"start": 850.95, "end": 851.15, "word": " to", "probability": 0.60693359375}, {"start": 851.15, "end": 851.53, "word": " each", "probability": 0.4716796875}, {"start": 851.53, "end": 853.43, "word": " task", "probability": 0.83642578125}, {"start": 853.43, "end": 854.11, "word": " T", "probability": 0.5888671875}, {"start": 854.11, "end": 854.75, "word": " is", "probability": 0.397216796875}, {"start": 854.75, "end": 855.05, "word": " present", "probability": 0.677734375}, {"start": 855.05, "end": 855.37, "word": " where?", "probability": 0.443359375}, {"start": 856.79, "end": 857.31, "word": " task", "probability": 0.474609375}, {"start": 857.31, "end": 857.45, "word": " I", "probability": 0.2498779296875}, {"start": 857.45, "end": 857.57, "word": " want", "probability": 0.59912109375}, {"start": 857.57, "end": 857.65, "word": " to", "probability": 0.93310546875}, {"start": 857.65, "end": 857.87, "word": " run", "probability": 0.7646484375}, {"start": 857.87, "end": 858.05, "word": " it", "probability": 0.9287109375}], "temperature": 1.0}, {"id": 33, "seek": 88090, "start": 859.24, "end": 880.9, "text": " I want to say T dot, because I found a problem. There is nothing. Right or wrong? Because one person says that there is backup and there is no backup. And there is no security checks. And there is a clean disk. But all of these are not visible. Why? The same problem that I told you last time has now become a kind of up.", "tokens": [286, 528, 281, 584, 314, 5893, 11, 570, 286, 1352, 257, 1154, 13, 821, 307, 1825, 13, 1779, 420, 2085, 30, 1436, 472, 954, 1619, 300, 456, 307, 14807, 293, 456, 307, 572, 14807, 13, 400, 456, 307, 572, 3825, 13834, 13, 400, 456, 307, 257, 2541, 12355, 13, 583, 439, 295, 613, 366, 406, 8974, 13, 1545, 30, 440, 912, 1154, 300, 286, 1907, 291, 1036, 565, 575, 586, 1813, 257, 733, 295, 493, 13], "avg_logprob": -0.5848214038006672, "compression_ratio": 1.6019900497512438, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 859.24, "end": 859.36, "word": " I", "probability": 0.50390625}, {"start": 859.36, "end": 859.48, "word": " want", "probability": 0.127685546875}, {"start": 859.48, "end": 859.52, "word": " to", "probability": 0.96728515625}, {"start": 859.52, "end": 859.66, "word": " say", "probability": 0.55029296875}, {"start": 859.66, "end": 859.96, "word": " T", "probability": 0.42138671875}, {"start": 859.96, "end": 860.4, "word": " dot,", "probability": 0.4248046875}, {"start": 861.38, "end": 861.96, "word": " because", "probability": 0.4716796875}, {"start": 861.96, "end": 862.14, "word": " I", "probability": 0.876953125}, {"start": 862.14, "end": 862.22, "word": " found", "probability": 0.619140625}, {"start": 862.22, "end": 862.34, "word": " a", "probability": 0.84814453125}, {"start": 862.34, "end": 862.6, "word": " problem.", "probability": 0.8349609375}, {"start": 863.04, "end": 863.56, "word": " There", "probability": 0.54150390625}, {"start": 863.56, "end": 863.6, "word": " is", "probability": 0.724609375}, {"start": 863.6, "end": 863.94, "word": " nothing.", "probability": 0.603515625}, {"start": 864.82, "end": 865.18, "word": " Right", "probability": 0.361572265625}, {"start": 865.18, "end": 865.34, "word": " or", "probability": 0.88623046875}, {"start": 865.34, "end": 865.46, "word": " wrong?", "probability": 0.607421875}, {"start": 866.14, "end": 866.42, "word": " Because", "probability": 0.72412109375}, {"start": 866.42, "end": 867.62, "word": " one", "probability": 0.2115478515625}, {"start": 867.62, "end": 867.72, "word": " person", "probability": 0.174560546875}, {"start": 867.72, "end": 867.92, "word": " says", "probability": 0.5791015625}, {"start": 867.92, "end": 868.14, "word": " that", "probability": 0.281494140625}, {"start": 868.14, "end": 868.92, "word": " there", "probability": 0.2437744140625}, {"start": 868.92, "end": 868.92, "word": " is", "probability": 0.81689453125}, {"start": 868.92, "end": 868.92, "word": " backup", "probability": 0.60009765625}, {"start": 868.92, "end": 869.22, "word": " and", "probability": 0.462158203125}, {"start": 869.22, "end": 869.22, "word": " there", "probability": 0.4267578125}, {"start": 869.22, "end": 869.22, "word": " is", "probability": 0.888671875}, {"start": 869.22, "end": 869.34, "word": " no", "probability": 0.626953125}, {"start": 869.34, "end": 869.66, "word": " backup.", "probability": 0.95556640625}, {"start": 870.5, "end": 870.74, "word": " And", "probability": 0.76220703125}, {"start": 870.74, "end": 870.92, "word": " there", "probability": 0.84326171875}, {"start": 870.92, "end": 871.06, "word": " is", "probability": 0.59423828125}, {"start": 871.06, "end": 871.76, "word": " no", "probability": 0.76806640625}, {"start": 871.76, "end": 872.14, "word": " security", "probability": 0.93798828125}, {"start": 872.14, "end": 872.52, "word": " checks.", "probability": 0.8876953125}, {"start": 873.02, "end": 873.28, "word": " And", "probability": 0.8681640625}, {"start": 873.28, "end": 873.46, "word": " there", "probability": 0.87744140625}, {"start": 873.46, "end": 873.46, "word": " is", "probability": 0.880859375}, {"start": 873.46, "end": 873.54, "word": " a", "probability": 0.587890625}, {"start": 873.54, "end": 873.74, "word": " clean", "probability": 0.84716796875}, {"start": 873.74, "end": 874.14, "word": " disk.", "probability": 0.912109375}, {"start": 874.5, "end": 874.7, "word": " But", "probability": 0.9033203125}, {"start": 874.7, "end": 875.06, "word": " all", "probability": 0.31787109375}, {"start": 875.06, "end": 875.06, "word": " of", "probability": 0.499755859375}, {"start": 875.06, "end": 875.06, "word": " these", "probability": 0.2998046875}, {"start": 875.06, "end": 875.16, "word": " are", "probability": 0.43603515625}, {"start": 875.16, "end": 875.28, "word": " not", "probability": 0.6806640625}, {"start": 875.28, "end": 875.56, "word": " visible.", "probability": 0.6943359375}, {"start": 875.66, "end": 876.0, "word": " Why?", "probability": 0.8671875}, {"start": 876.92, "end": 877.44, "word": " The", "probability": 0.64990234375}, {"start": 877.44, "end": 877.44, "word": " same", "probability": 0.84375}, {"start": 877.44, "end": 877.72, "word": " problem", "probability": 0.8408203125}, {"start": 877.72, "end": 877.82, "word": " that", "probability": 0.2822265625}, {"start": 877.82, "end": 877.82, "word": " I", "probability": 0.681640625}, {"start": 877.82, "end": 877.92, "word": " told", "probability": 0.375244140625}, {"start": 877.92, "end": 878.04, "word": " you", "probability": 0.7216796875}, {"start": 878.04, "end": 878.18, "word": " last", "probability": 0.6376953125}, {"start": 878.18, "end": 878.48, "word": " time", "probability": 0.86572265625}, {"start": 878.48, "end": 878.72, "word": " has", "probability": 0.214111328125}, {"start": 878.72, "end": 878.86, "word": " now", "probability": 0.576171875}, {"start": 878.86, "end": 878.98, "word": " become", "probability": 0.1749267578125}, {"start": 878.98, "end": 879.48, "word": " a", "probability": 0.330810546875}, {"start": 879.48, "end": 879.94, "word": " kind", "probability": 0.296142578125}, {"start": 879.94, "end": 880.62, "word": " of", "probability": 0.96484375}, {"start": 880.62, "end": 880.9, "word": " up.", "probability": 0.276611328125}], "temperature": 1.0}, {"id": 34, "seek": 90486, "start": 882.12, "end": 904.86, "text": " Right or not? So how do we solve this problem? We took it Make an abstract method Here public void execute And this we make it what? Abstract And since this is abstract in the class, it became abstract", "tokens": [1779, 420, 406, 30, 407, 577, 360, 321, 5039, 341, 1154, 30, 492, 1890, 309, 4387, 364, 12649, 3170, 1692, 1908, 22009, 14483, 400, 341, 321, 652, 309, 437, 30, 46853, 1897, 400, 1670, 341, 307, 12649, 294, 264, 1508, 11, 309, 3062, 12649], "avg_logprob": -0.521875015894572, "compression_ratio": 1.4225352112676057, "no_speech_prob": 3.3974647521972656e-06, "words": [{"start": 882.12, "end": 882.42, "word": " Right", "probability": 0.2244873046875}, {"start": 882.42, "end": 882.6, "word": " or", "probability": 0.86865234375}, {"start": 882.6, "end": 882.66, "word": " not?", "probability": 0.31201171875}, {"start": 883.08, "end": 883.26, "word": " So", "probability": 0.7255859375}, {"start": 883.26, "end": 883.4, "word": " how", "probability": 0.80859375}, {"start": 883.4, "end": 883.48, "word": " do", "probability": 0.463134765625}, {"start": 883.48, "end": 883.5, "word": " we", "probability": 0.90576171875}, {"start": 883.5, "end": 883.66, "word": " solve", "probability": 0.771484375}, {"start": 883.66, "end": 883.76, "word": " this", "probability": 0.92578125}, {"start": 883.76, "end": 884.06, "word": " problem?", "probability": 0.80322265625}, {"start": 884.6, "end": 884.7, "word": " We", "probability": 0.6416015625}, {"start": 884.7, "end": 884.84, "word": " took", "probability": 0.44921875}, {"start": 884.84, "end": 885.26, "word": " it", "probability": 0.84423828125}, {"start": 885.26, "end": 886.2, "word": " Make", "probability": 0.12176513671875}, {"start": 886.2, "end": 887.0, "word": " an", "probability": 0.409912109375}, {"start": 887.0, "end": 887.26, "word": " abstract", "probability": 0.8173828125}, {"start": 887.26, "end": 887.88, "word": " method", "probability": 0.97412109375}, {"start": 887.88, "end": 889.28, "word": " Here", "probability": 0.188720703125}, {"start": 889.28, "end": 890.36, "word": " public", "probability": 0.560546875}, {"start": 890.36, "end": 891.9, "word": " void", "probability": 0.92138671875}, {"start": 891.9, "end": 892.88, "word": " execute", "probability": 0.880859375}, {"start": 892.88, "end": 894.88, "word": " And", "probability": 0.65283203125}, {"start": 894.88, "end": 895.06, "word": " this", "probability": 0.436279296875}, {"start": 895.06, "end": 895.16, "word": " we", "probability": 0.428955078125}, {"start": 895.16, "end": 895.4, "word": " make", "probability": 0.63134765625}, {"start": 895.4, "end": 895.54, "word": " it", "probability": 0.50390625}, {"start": 895.54, "end": 895.8, "word": " what?", "probability": 0.489501953125}, {"start": 899.58, "end": 900.14, "word": " Abstract", "probability": 0.82861328125}, {"start": 900.14, "end": 900.84, "word": " And", "probability": 0.611328125}, {"start": 900.84, "end": 901.1, "word": " since", "probability": 0.5107421875}, {"start": 901.1, "end": 901.34, "word": " this", "probability": 0.72119140625}, {"start": 901.34, "end": 901.36, "word": " is", "probability": 0.771484375}, {"start": 901.36, "end": 901.82, "word": " abstract", "probability": 0.489501953125}, {"start": 901.82, "end": 902.1, "word": " in", "probability": 0.482666015625}, {"start": 902.1, "end": 902.26, "word": " the", "probability": 0.5576171875}, {"start": 902.26, "end": 902.78, "word": " class,", "probability": 0.96484375}, {"start": 903.5, "end": 904.26, "word": " it", "probability": 0.418701171875}, {"start": 904.26, "end": 904.46, "word": " became", "probability": 0.54443359375}, {"start": 904.46, "end": 904.86, "word": " abstract", "probability": 0.77587890625}], "temperature": 1.0}, {"id": 35, "seek": 92843, "start": 906.25, "end": 928.43, "text": "Why did I use this method? So that I can use the main method to call each task Execute And since this method was added here, we have to implement it where? In each block. Each one of them has to be implemented in the way they want But in the end, what I see is that each one of them is a task and I call it Execute", "tokens": [8429, 630, 286, 764, 341, 3170, 30, 407, 300, 286, 393, 764, 264, 2135, 3170, 281, 818, 1184, 5633, 17662, 1169, 400, 1670, 341, 3170, 390, 3869, 510, 11, 321, 362, 281, 4445, 309, 689, 30, 682, 1184, 3461, 13, 6947, 472, 295, 552, 575, 281, 312, 12270, 294, 264, 636, 436, 528, 583, 294, 264, 917, 11, 437, 286, 536, 307, 300, 1184, 472, 295, 552, 307, 257, 5633, 293, 286, 818, 309, 17662, 1169], "avg_logprob": -0.6095779499450287, "compression_ratio": 1.6702127659574468, "no_speech_prob": 2.8014183044433594e-06, "words": [{"start": 906.25, "end": 906.59, "word": "Why", "probability": 0.463134765625}, {"start": 906.59, "end": 906.67, "word": " did", "probability": 0.7177734375}, {"start": 906.67, "end": 906.67, "word": " I", "probability": 0.9287109375}, {"start": 906.67, "end": 906.87, "word": " use", "probability": 0.1776123046875}, {"start": 906.87, "end": 907.01, "word": " this", "probability": 0.87841796875}, {"start": 907.01, "end": 907.27, "word": " method?", "probability": 0.92333984375}, {"start": 908.07, "end": 908.51, "word": " So", "probability": 0.390869140625}, {"start": 908.51, "end": 908.71, "word": " that", "probability": 0.70751953125}, {"start": 908.71, "end": 908.85, "word": " I", "probability": 0.578125}, {"start": 908.85, "end": 909.21, "word": " can", "probability": 0.62548828125}, {"start": 909.21, "end": 909.21, "word": " use", "probability": 0.273193359375}, {"start": 909.21, "end": 910.77, "word": " the", "probability": 0.7275390625}, {"start": 910.77, "end": 910.99, "word": " main", "probability": 0.81640625}, {"start": 910.99, "end": 911.41, "word": " method", "probability": 0.91748046875}, {"start": 911.41, "end": 911.91, "word": " to", "probability": 0.8056640625}, {"start": 911.91, "end": 912.17, "word": " call", "probability": 0.434326171875}, {"start": 912.17, "end": 912.49, "word": " each", "probability": 0.46044921875}, {"start": 912.49, "end": 912.79, "word": " task", "probability": 0.92626953125}, {"start": 912.79, "end": 914.47, "word": " Execute", "probability": 0.57208251953125}, {"start": 914.47, "end": 915.15, "word": " And", "probability": 0.244140625}, {"start": 915.15, "end": 915.51, "word": " since", "probability": 0.331298828125}, {"start": 915.51, "end": 915.79, "word": " this", "probability": 0.28857421875}, {"start": 915.79, "end": 915.79, "word": " method", "probability": 0.65478515625}, {"start": 915.79, "end": 915.89, "word": " was", "probability": 0.274169921875}, {"start": 915.89, "end": 916.17, "word": " added", "probability": 0.86572265625}, {"start": 916.17, "end": 916.51, "word": " here,", "probability": 0.63427734375}, {"start": 916.77, "end": 916.81, "word": " we", "probability": 0.325439453125}, {"start": 916.81, "end": 916.91, "word": " have", "probability": 0.23193359375}, {"start": 916.91, "end": 917.09, "word": " to", "probability": 0.96728515625}, {"start": 917.09, "end": 917.65, "word": " implement", "probability": 0.430419921875}, {"start": 917.65, "end": 918.11, "word": " it", "probability": 0.86669921875}, {"start": 918.11, "end": 918.33, "word": " where?", "probability": 0.1416015625}, {"start": 919.09, "end": 919.53, "word": " In", "probability": 0.42919921875}, {"start": 919.53, "end": 919.73, "word": " each", "probability": 0.174072265625}, {"start": 919.73, "end": 920.03, "word": " block.", "probability": 0.57861328125}, {"start": 920.11, "end": 920.33, "word": " Each", "probability": 0.44482421875}, {"start": 920.33, "end": 920.57, "word": " one", "probability": 0.5791015625}, {"start": 920.57, "end": 920.71, "word": " of", "probability": 0.1981201171875}, {"start": 920.71, "end": 920.71, "word": " them", "probability": 0.59814453125}, {"start": 920.71, "end": 920.89, "word": " has", "probability": 0.1751708984375}, {"start": 920.89, "end": 920.97, "word": " to", "probability": 0.6201171875}, {"start": 920.97, "end": 920.97, "word": " be", "probability": 0.357666015625}, {"start": 920.97, "end": 921.25, "word": " implemented", "probability": 0.85302734375}, {"start": 921.25, "end": 921.47, "word": " in", "probability": 0.498046875}, {"start": 921.47, "end": 921.53, "word": " the", "probability": 0.430908203125}, {"start": 921.53, "end": 921.95, "word": " way", "probability": 0.77197265625}, {"start": 921.95, "end": 922.85, "word": " they", "probability": 0.334228515625}, {"start": 922.85, "end": 923.07, "word": " want", "probability": 0.66162109375}, {"start": 923.07, "end": 924.21, "word": " But", "probability": 0.450439453125}, {"start": 924.21, "end": 924.35, "word": " in", "probability": 0.60888671875}, {"start": 924.35, "end": 924.43, "word": " the", "probability": 0.89306640625}, {"start": 924.43, "end": 924.67, "word": " end,", "probability": 0.876953125}, {"start": 924.89, "end": 925.09, "word": " what", "probability": 0.1761474609375}, {"start": 925.09, "end": 925.19, "word": " I", "probability": 0.869140625}, {"start": 925.19, "end": 925.47, "word": " see", "probability": 0.7900390625}, {"start": 925.47, "end": 925.65, "word": " is", "probability": 0.501953125}, {"start": 925.65, "end": 925.71, "word": " that", "probability": 0.60595703125}, {"start": 925.71, "end": 925.89, "word": " each", "probability": 0.50390625}, {"start": 925.89, "end": 925.99, "word": " one", "probability": 0.568359375}, {"start": 925.99, "end": 926.09, "word": " of", "probability": 0.75634765625}, {"start": 926.09, "end": 926.29, "word": " them", "probability": 0.85888671875}, {"start": 926.29, "end": 926.79, "word": " is", "probability": 0.82666015625}, {"start": 926.79, "end": 926.83, "word": " a", "probability": 0.8330078125}, {"start": 926.83, "end": 927.23, "word": " task", "probability": 0.9091796875}, {"start": 927.23, "end": 927.61, "word": " and", "probability": 0.4384765625}, {"start": 927.61, "end": 927.69, "word": " I", "probability": 0.85791015625}, {"start": 927.69, "end": 927.81, "word": " call", "probability": 0.53857421875}, {"start": 927.81, "end": 927.91, "word": " it", "probability": 0.8798828125}, {"start": 927.91, "end": 928.43, "word": " Execute", "probability": 0.806884765625}], "temperature": 1.0}, {"id": 36, "seek": 95686, "start": 929.1, "end": 956.86, "text": "and actually it executes based on the subclass type did you notice that as long as I left this abstract and this abstract method they hit all the subclasses why? because as long as you did implement there is a code that you need to complete what is this execute? what do we do in this execute? the 7th is do backup that's it right or not guys? this is do backup", "tokens": [474, 767, 309, 4454, 1819, 2361, 322, 264, 1422, 11665, 2010, 630, 291, 3449, 300, 382, 938, 382, 286, 1411, 341, 12649, 293, 341, 12649, 3170, 436, 2045, 439, 264, 1422, 11665, 279, 983, 30, 570, 382, 938, 382, 291, 630, 4445, 456, 307, 257, 3089, 300, 291, 643, 281, 3566, 437, 307, 341, 14483, 30, 437, 360, 321, 360, 294, 341, 14483, 30, 264, 1614, 392, 307, 360, 14807, 300, 311, 309, 558, 420, 406, 1074, 30, 341, 307, 360, 14807], "avg_logprob": -0.564382507140378, "compression_ratio": 1.805, "no_speech_prob": 5.304813385009766e-06, "words": [{"start": 929.1, "end": 929.28, "word": "and", "probability": 0.215087890625}, {"start": 929.28, "end": 929.58, "word": " actually", "probability": 0.342529296875}, {"start": 929.58, "end": 929.8, "word": " it", "probability": 0.61962890625}, {"start": 929.8, "end": 931.24, "word": " executes", "probability": 0.6962890625}, {"start": 931.24, "end": 932.14, "word": " based", "probability": 0.37548828125}, {"start": 932.14, "end": 932.26, "word": " on", "probability": 0.94140625}, {"start": 932.26, "end": 932.6, "word": " the", "probability": 0.62548828125}, {"start": 932.6, "end": 933.1, "word": " subclass", "probability": 0.683837890625}, {"start": 933.1, "end": 933.12, "word": " type", "probability": 0.564453125}, {"start": 933.12, "end": 933.94, "word": " did", "probability": 0.137939453125}, {"start": 933.94, "end": 934.22, "word": " you", "probability": 0.95361328125}, {"start": 934.22, "end": 934.22, "word": " notice", "probability": 0.486328125}, {"start": 934.22, "end": 934.62, "word": " that", "probability": 0.47021484375}, {"start": 934.62, "end": 934.78, "word": " as", "probability": 0.29443359375}, {"start": 934.78, "end": 934.98, "word": " long", "probability": 0.5810546875}, {"start": 934.98, "end": 934.98, "word": " as", "probability": 0.94921875}, {"start": 934.98, "end": 935.1, "word": " I", "probability": 0.81201171875}, {"start": 935.1, "end": 935.46, "word": " left", "probability": 0.25390625}, {"start": 935.46, "end": 935.64, "word": " this", "probability": 0.291015625}, {"start": 935.64, "end": 935.94, "word": " abstract", "probability": 0.73681640625}, {"start": 935.94, "end": 936.22, "word": " and", "probability": 0.8212890625}, {"start": 936.22, "end": 936.34, "word": " this", "probability": 0.787109375}, {"start": 936.34, "end": 936.68, "word": " abstract", "probability": 0.78369140625}, {"start": 936.68, "end": 937.14, "word": " method", "probability": 0.91357421875}, {"start": 937.14, "end": 937.64, "word": " they", "probability": 0.1434326171875}, {"start": 937.64, "end": 937.82, "word": " hit", "probability": 0.31982421875}, {"start": 937.82, "end": 938.32, "word": " all", "probability": 0.82861328125}, {"start": 938.32, "end": 938.44, "word": " the", "probability": 0.44775390625}, {"start": 938.44, "end": 940.06, "word": " subclasses", "probability": 0.8570963541666666}, {"start": 940.06, "end": 941.66, "word": " why?", "probability": 0.271484375}, {"start": 942.02, "end": 942.28, "word": " because", "probability": 0.237060546875}, {"start": 942.28, "end": 942.94, "word": " as", "probability": 0.43359375}, {"start": 942.94, "end": 943.16, "word": " long", "probability": 0.89404296875}, {"start": 943.16, "end": 943.16, "word": " as", "probability": 0.95947265625}, {"start": 943.16, "end": 943.26, "word": " you", "probability": 0.6640625}, {"start": 943.26, "end": 943.48, "word": " did", "probability": 0.141357421875}, {"start": 943.48, "end": 943.84, "word": " implement", "probability": 0.58251953125}, {"start": 943.84, "end": 944.12, "word": " there", "probability": 0.39794921875}, {"start": 944.12, "end": 944.26, "word": " is", "probability": 0.64208984375}, {"start": 944.26, "end": 944.68, "word": " a", "probability": 0.498046875}, {"start": 944.68, "end": 944.88, "word": " code", "probability": 0.9345703125}, {"start": 944.88, "end": 944.98, "word": " that", "probability": 0.509765625}, {"start": 944.98, "end": 945.1, "word": " you", "probability": 0.79736328125}, {"start": 945.1, "end": 945.12, "word": " need", "probability": 0.431396484375}, {"start": 945.12, "end": 945.16, "word": " to", "probability": 0.96728515625}, {"start": 945.16, "end": 945.46, "word": " complete", "probability": 0.57763671875}, {"start": 945.46, "end": 946.24, "word": " what", "probability": 0.71923828125}, {"start": 946.24, "end": 946.5, "word": " is", "probability": 0.85791015625}, {"start": 946.5, "end": 947.38, "word": " this", "probability": 0.5654296875}, {"start": 947.38, "end": 947.9, "word": " execute?", "probability": 0.8779296875}, {"start": 949.3, "end": 949.86, "word": " what", "probability": 0.7841796875}, {"start": 949.86, "end": 949.98, "word": " do", "probability": 0.61083984375}, {"start": 949.98, "end": 950.08, "word": " we", "probability": 0.876953125}, {"start": 950.08, "end": 950.22, "word": " do", "probability": 0.454345703125}, {"start": 950.22, "end": 950.34, "word": " in", "probability": 0.78564453125}, {"start": 950.34, "end": 950.42, "word": " this", "probability": 0.7958984375}, {"start": 950.42, "end": 950.86, "word": " execute?", "probability": 0.9482421875}, {"start": 951.8, "end": 952.14, "word": " the", "probability": 0.31884765625}, {"start": 952.14, "end": 952.48, "word": " 7th", "probability": 0.30120849609375}, {"start": 952.48, "end": 952.56, "word": " is", "probability": 0.27099609375}, {"start": 952.56, "end": 952.58, "word": " do", "probability": 0.70166015625}, {"start": 952.58, "end": 952.9, "word": " backup", "probability": 0.407470703125}, {"start": 952.9, "end": 953.52, "word": " that's", "probability": 0.60400390625}, {"start": 953.52, "end": 953.8, "word": " it", "probability": 0.69140625}, {"start": 953.8, "end": 954.68, "word": " right", "probability": 0.24169921875}, {"start": 954.68, "end": 954.86, "word": " or", "probability": 0.89697265625}, {"start": 954.86, "end": 954.94, "word": " not", "probability": 0.494140625}, {"start": 954.94, "end": 955.34, "word": " guys?", "probability": 0.666015625}, {"start": 955.46, "end": 956.02, "word": " this", "probability": 0.79833984375}, {"start": 956.02, "end": 956.08, "word": " is", "probability": 0.91064453125}, {"start": 956.08, "end": 956.32, "word": " do", "probability": 0.91357421875}, {"start": 956.32, "end": 956.86, "word": " backup", "probability": 0.9169921875}], "temperature": 1.0}, {"id": 37, "seek": 98479, "start": 959.49, "end": 984.79, "text": " And in the security checks And this is clear", "tokens": [400, 294, 264, 3825, 13834, 400, 341, 307, 1850], "avg_logprob": -0.6554687440395355, "compression_ratio": 0.9183673469387755, "no_speech_prob": 0.0, "words": [{"start": 959.49, "end": 959.75, "word": " And", "probability": 0.5380859375}, {"start": 959.75, "end": 959.85, "word": " in", "probability": 0.62548828125}, {"start": 959.85, "end": 960.07, "word": " the", "probability": 0.396240234375}, {"start": 960.07, "end": 960.47, "word": " security", "probability": 0.76611328125}, {"start": 960.47, "end": 960.97, "word": " checks", "probability": 0.783203125}, {"start": 960.97, "end": 975.55, "word": " And", "probability": 0.276123046875}, {"start": 975.55, "end": 984.53, "word": " this", "probability": 0.4873046875}, {"start": 984.53, "end": 984.57, "word": " is", "probability": 0.6162109375}, {"start": 984.57, "end": 984.79, "word": " clear", "probability": 0.2457275390625}], "temperature": 1.0}, {"id": 38, "seek": 101169, "start": 987.17, "end": 1011.69, "text": " disk. All of them have an execute, but each execute does something different. Now, in the main, I can click on all of them and tell it to execute. It will come out in front of me. Okay? Now, when it comes to execute, regardless of what kind of task it is, you just extract an object from it and put it in this list. This is the code of production or execution.", "tokens": [12355, 13, 1057, 295, 552, 362, 364, 14483, 11, 457, 1184, 14483, 775, 746, 819, 13, 823, 11, 294, 264, 2135, 11, 286, 393, 2052, 322, 439, 295, 552, 293, 980, 309, 281, 14483, 13, 467, 486, 808, 484, 294, 1868, 295, 385, 13, 1033, 30, 823, 11, 562, 309, 1487, 281, 14483, 11, 10060, 295, 437, 733, 295, 5633, 309, 307, 11, 291, 445, 8947, 364, 2657, 490, 309, 293, 829, 309, 294, 341, 1329, 13, 639, 307, 264, 3089, 295, 4265, 420, 15058, 13], "avg_logprob": -0.46659483649264805, "compression_ratio": 1.6044444444444443, "no_speech_prob": 3.6776065826416016e-05, "words": [{"start": 987.1700000000001, "end": 987.59, "word": " disk.", "probability": 0.13623046875}, {"start": 988.31, "end": 988.57, "word": " All", "probability": 0.619140625}, {"start": 988.57, "end": 988.65, "word": " of", "probability": 0.84228515625}, {"start": 988.65, "end": 988.85, "word": " them", "probability": 0.88720703125}, {"start": 988.85, "end": 989.07, "word": " have", "probability": 0.419189453125}, {"start": 989.07, "end": 989.33, "word": " an", "probability": 0.2222900390625}, {"start": 989.33, "end": 989.67, "word": " execute,", "probability": 0.60791015625}, {"start": 989.79, "end": 989.97, "word": " but", "probability": 0.8203125}, {"start": 989.97, "end": 990.19, "word": " each", "probability": 0.82080078125}, {"start": 990.19, "end": 990.89, "word": " execute", "probability": 0.67333984375}, {"start": 990.89, "end": 991.89, "word": " does", "probability": 0.70751953125}, {"start": 991.89, "end": 992.25, "word": " something", "probability": 0.6201171875}, {"start": 992.25, "end": 992.61, "word": " different.", "probability": 0.8154296875}, {"start": 992.79, "end": 992.95, "word": " Now,", "probability": 0.630859375}, {"start": 993.13, "end": 993.23, "word": " in", "probability": 0.446044921875}, {"start": 993.23, "end": 993.39, "word": " the", "probability": 0.5595703125}, {"start": 993.39, "end": 993.65, "word": " main,", "probability": 0.755859375}, {"start": 995.17, "end": 996.11, "word": " I", "probability": 0.97314453125}, {"start": 996.11, "end": 996.31, "word": " can", "probability": 0.873046875}, {"start": 996.31, "end": 996.51, "word": " click", "probability": 0.07684326171875}, {"start": 996.51, "end": 996.67, "word": " on", "probability": 0.8125}, {"start": 996.67, "end": 997.07, "word": " all", "probability": 0.34423828125}, {"start": 997.07, "end": 997.21, "word": " of", "probability": 0.939453125}, {"start": 997.21, "end": 997.29, "word": " them", "probability": 0.89794921875}, {"start": 997.29, "end": 997.87, "word": " and", "probability": 0.72021484375}, {"start": 997.87, "end": 998.05, "word": " tell", "probability": 0.275146484375}, {"start": 998.05, "end": 998.15, "word": " it", "probability": 0.396484375}, {"start": 998.15, "end": 998.19, "word": " to", "probability": 0.81103515625}, {"start": 998.19, "end": 998.51, "word": " execute.", "probability": 0.9365234375}, {"start": 998.59, "end": 998.69, "word": " It", "probability": 0.638671875}, {"start": 998.69, "end": 998.75, "word": " will", "probability": 0.734375}, {"start": 998.75, "end": 998.93, "word": " come", "probability": 0.309326171875}, {"start": 998.93, "end": 998.97, "word": " out", "probability": 0.440673828125}, {"start": 998.97, "end": 999.07, "word": " in", "probability": 0.66796875}, {"start": 999.07, "end": 999.25, "word": " front", "probability": 0.9482421875}, {"start": 999.25, "end": 999.31, "word": " of", "probability": 0.95654296875}, {"start": 999.31, "end": 999.59, "word": " me.", "probability": 0.91552734375}, {"start": 1002.29, "end": 1002.53, "word": " Okay?", "probability": 0.3017578125}, {"start": 1002.83, "end": 1003.11, "word": " Now,", "probability": 0.84619140625}, {"start": 1003.17, "end": 1003.25, "word": " when", "probability": 0.83349609375}, {"start": 1003.25, "end": 1003.37, "word": " it", "probability": 0.78173828125}, {"start": 1003.37, "end": 1003.47, "word": " comes", "probability": 0.58740234375}, {"start": 1003.47, "end": 1003.55, "word": " to", "probability": 0.81591796875}, {"start": 1003.55, "end": 1003.79, "word": " execute,", "probability": 0.68505859375}, {"start": 1004.19, "end": 1004.55, "word": " regardless", "probability": 0.68701171875}, {"start": 1004.55, "end": 1005.53, "word": " of", "probability": 0.94384765625}, {"start": 1005.53, "end": 1005.75, "word": " what", "probability": 0.68310546875}, {"start": 1005.75, "end": 1005.93, "word": " kind", "probability": 0.54052734375}, {"start": 1005.93, "end": 1005.93, "word": " of", "probability": 0.970703125}, {"start": 1005.93, "end": 1006.35, "word": " task", "probability": 0.91259765625}, {"start": 1006.35, "end": 1006.37, "word": " it", "probability": 0.6220703125}, {"start": 1006.37, "end": 1006.37, "word": " is,", "probability": 0.9208984375}, {"start": 1006.43, "end": 1006.69, "word": " you", "probability": 0.6943359375}, {"start": 1006.69, "end": 1006.89, "word": " just", "probability": 0.1875}, {"start": 1006.89, "end": 1007.39, "word": " extract", "probability": 0.51318359375}, {"start": 1007.39, "end": 1007.71, "word": " an", "probability": 0.61669921875}, {"start": 1007.71, "end": 1007.91, "word": " object", "probability": 0.97314453125}, {"start": 1007.91, "end": 1007.93, "word": " from", "probability": 0.69384765625}, {"start": 1007.93, "end": 1007.93, "word": " it", "probability": 0.9306640625}, {"start": 1007.93, "end": 1008.09, "word": " and", "probability": 0.88525390625}, {"start": 1008.09, "end": 1008.33, "word": " put", "probability": 0.6435546875}, {"start": 1008.33, "end": 1008.55, "word": " it", "probability": 0.93701171875}, {"start": 1008.55, "end": 1009.27, "word": " in", "probability": 0.802734375}, {"start": 1009.27, "end": 1009.31, "word": " this", "probability": 0.79833984375}, {"start": 1009.31, "end": 1009.59, "word": " list.", "probability": 0.92138671875}, {"start": 1009.93, "end": 1010.31, "word": " This", "probability": 0.86083984375}, {"start": 1010.31, "end": 1010.49, "word": " is", "probability": 0.9140625}, {"start": 1010.49, "end": 1010.49, "word": " the", "probability": 0.4736328125}, {"start": 1010.49, "end": 1010.61, "word": " code", "probability": 0.419921875}, {"start": 1010.61, "end": 1010.75, "word": " of", "probability": 0.78857421875}, {"start": 1010.75, "end": 1010.97, "word": " production", "probability": 0.350341796875}, {"start": 1010.97, "end": 1011.21, "word": " or", "probability": 0.763671875}, {"start": 1011.21, "end": 1011.69, "word": " execution.", "probability": 0.414306640625}], "temperature": 1.0}, {"id": 39, "seek": 103758, "start": 1012.94, "end": 1037.58, "text": " it will not disappear because I don't even have to remove the execution here I want to make the loop execute if I add a new task after that I don't have to create an object from it and put it in the list but the code of this execution remains fixed, you see, it executes them, right or not? they worked on the three tasks and executed them each execution is different", "tokens": [309, 486, 406, 11596, 570, 286, 500, 380, 754, 362, 281, 4159, 264, 15058, 510, 286, 528, 281, 652, 264, 6367, 14483, 498, 286, 909, 257, 777, 5633, 934, 300, 286, 500, 380, 362, 281, 1884, 364, 2657, 490, 309, 293, 829, 309, 294, 264, 1329, 457, 264, 3089, 295, 341, 15058, 7023, 6806, 11, 291, 536, 11, 309, 4454, 1819, 552, 11, 558, 420, 406, 30, 436, 2732, 322, 264, 1045, 9608, 293, 17577, 552, 1184, 15058, 307, 819], "avg_logprob": -0.5412808759712878, "compression_ratio": 1.719626168224299, "no_speech_prob": 2.294778823852539e-05, "words": [{"start": 1012.94, "end": 1013.16, "word": " it", "probability": 0.09661865234375}, {"start": 1013.16, "end": 1013.34, "word": " will", "probability": 0.37841796875}, {"start": 1013.34, "end": 1013.34, "word": " not", "probability": 0.86181640625}, {"start": 1013.34, "end": 1013.72, "word": " disappear", "probability": 0.67578125}, {"start": 1013.72, "end": 1014.2, "word": " because", "probability": 0.3994140625}, {"start": 1014.2, "end": 1014.4, "word": " I", "probability": 0.6669921875}, {"start": 1014.4, "end": 1014.64, "word": " don't", "probability": 0.80224609375}, {"start": 1014.64, "end": 1014.68, "word": " even", "probability": 0.62646484375}, {"start": 1014.68, "end": 1014.86, "word": " have", "probability": 0.51806640625}, {"start": 1014.86, "end": 1015.12, "word": " to", "probability": 0.96240234375}, {"start": 1015.12, "end": 1016.2, "word": " remove", "probability": 0.51953125}, {"start": 1016.2, "end": 1016.38, "word": " the", "probability": 0.6796875}, {"start": 1016.38, "end": 1016.64, "word": " execution", "probability": 0.406982421875}, {"start": 1016.64, "end": 1016.92, "word": " here", "probability": 0.4423828125}, {"start": 1016.92, "end": 1017.12, "word": " I", "probability": 0.5927734375}, {"start": 1017.12, "end": 1017.24, "word": " want", "probability": 0.673828125}, {"start": 1017.24, "end": 1017.32, "word": " to", "probability": 0.6630859375}, {"start": 1017.32, "end": 1017.44, "word": " make", "probability": 0.55615234375}, {"start": 1017.44, "end": 1017.56, "word": " the", "probability": 0.73486328125}, {"start": 1017.56, "end": 1017.74, "word": " loop", "probability": 0.95849609375}, {"start": 1017.74, "end": 1018.4, "word": " execute", "probability": 0.1375732421875}, {"start": 1018.4, "end": 1020.06, "word": " if", "probability": 0.357177734375}, {"start": 1020.06, "end": 1020.72, "word": " I", "probability": 0.80615234375}, {"start": 1020.72, "end": 1020.86, "word": " add", "probability": 0.84912109375}, {"start": 1020.86, "end": 1021.0, "word": " a", "probability": 0.66748046875}, {"start": 1021.0, "end": 1021.54, "word": " new", "probability": 0.89404296875}, {"start": 1021.54, "end": 1021.54, "word": " task", "probability": 0.92578125}, {"start": 1021.54, "end": 1021.8, "word": " after", "probability": 0.3779296875}, {"start": 1021.8, "end": 1022.06, "word": " that", "probability": 0.8359375}, {"start": 1022.06, "end": 1022.26, "word": " I", "probability": 0.51220703125}, {"start": 1022.26, "end": 1022.32, "word": " don't", "probability": 0.7388916015625}, {"start": 1022.32, "end": 1022.44, "word": " have", "probability": 0.845703125}, {"start": 1022.44, "end": 1022.6, "word": " to", "probability": 0.96826171875}, {"start": 1022.6, "end": 1022.86, "word": " create", "probability": 0.382568359375}, {"start": 1022.86, "end": 1023.0, "word": " an", "probability": 0.73095703125}, {"start": 1023.0, "end": 1023.18, "word": " object", "probability": 0.97705078125}, {"start": 1023.18, "end": 1023.42, "word": " from", "probability": 0.62548828125}, {"start": 1023.42, "end": 1023.5, "word": " it", "probability": 0.86376953125}, {"start": 1023.5, "end": 1023.62, "word": " and", "probability": 0.8759765625}, {"start": 1023.62, "end": 1023.82, "word": " put", "probability": 0.587890625}, {"start": 1023.82, "end": 1024.06, "word": " it", "probability": 0.921875}, {"start": 1024.06, "end": 1024.78, "word": " in", "probability": 0.81787109375}, {"start": 1024.78, "end": 1024.86, "word": " the", "probability": 0.8740234375}, {"start": 1024.86, "end": 1025.02, "word": " list", "probability": 0.83642578125}, {"start": 1025.02, "end": 1025.18, "word": " but", "probability": 0.783203125}, {"start": 1025.18, "end": 1025.34, "word": " the", "probability": 0.463623046875}, {"start": 1025.34, "end": 1025.52, "word": " code", "probability": 0.427978515625}, {"start": 1025.52, "end": 1025.64, "word": " of", "probability": 0.53857421875}, {"start": 1025.64, "end": 1026.06, "word": " this", "probability": 0.66259765625}, {"start": 1026.06, "end": 1026.06, "word": " execution", "probability": 0.81298828125}, {"start": 1026.06, "end": 1028.1, "word": " remains", "probability": 0.335693359375}, {"start": 1028.1, "end": 1029.14, "word": " fixed,", "probability": 0.3662109375}, {"start": 1029.22, "end": 1029.58, "word": " you", "probability": 0.173583984375}, {"start": 1029.58, "end": 1032.36, "word": " see,", "probability": 0.86181640625}, {"start": 1032.46, "end": 1032.5, "word": " it", "probability": 0.55615234375}, {"start": 1032.5, "end": 1032.82, "word": " executes", "probability": 0.66748046875}, {"start": 1032.82, "end": 1033.44, "word": " them,", "probability": 0.7353515625}, {"start": 1033.74, "end": 1033.88, "word": " right", "probability": 0.53759765625}, {"start": 1033.88, "end": 1034.1, "word": " or", "probability": 0.76806640625}, {"start": 1034.1, "end": 1034.1, "word": " not?", "probability": 0.462158203125}, {"start": 1034.18, "end": 1034.2, "word": " they", "probability": 0.30126953125}, {"start": 1034.2, "end": 1034.46, "word": " worked", "probability": 0.5322265625}, {"start": 1034.46, "end": 1034.56, "word": " on", "probability": 0.662109375}, {"start": 1034.56, "end": 1034.6, "word": " the", "probability": 0.410888671875}, {"start": 1034.6, "end": 1034.78, "word": " three", "probability": 0.7958984375}, {"start": 1034.78, "end": 1035.14, "word": " tasks", "probability": 0.876953125}, {"start": 1035.14, "end": 1035.24, "word": " and", "probability": 0.87890625}, {"start": 1035.24, "end": 1035.46, "word": " executed", "probability": 0.759765625}, {"start": 1035.46, "end": 1035.6, "word": " them", "probability": 0.61328125}, {"start": 1035.6, "end": 1035.78, "word": " each", "probability": 0.55322265625}, {"start": 1035.78, "end": 1036.3, "word": " execution", "probability": 0.4794921875}, {"start": 1036.3, "end": 1037.28, "word": " is", "probability": 0.78271484375}, {"start": 1037.28, "end": 1037.58, "word": " different", "probability": 0.87646484375}], "temperature": 1.0}, {"id": 40, "seek": 106392, "start": 1038.54, "end": 1063.92, "text": "I will tell you where is the interface in this topic The interface is here Come to this task Did you find that this class does not have any code shared between them? It only has one abstract method I tell the class if it does not have any code implementation There is no need to make it an abstract class Bring it to what? To the interface That is, if I find that I made the class", "tokens": [40, 486, 980, 291, 689, 307, 264, 9226, 294, 341, 4829, 440, 9226, 307, 510, 2492, 281, 341, 5633, 2589, 291, 915, 300, 341, 1508, 775, 406, 362, 604, 3089, 5507, 1296, 552, 30, 467, 787, 575, 472, 12649, 3170, 286, 980, 264, 1508, 498, 309, 775, 406, 362, 604, 3089, 11420, 821, 307, 572, 643, 281, 652, 309, 364, 12649, 1508, 12842, 309, 281, 437, 30, 1407, 264, 9226, 663, 307, 11, 498, 286, 915, 300, 286, 1027, 264, 1508], "avg_logprob": -0.5049542653851393, "compression_ratio": 1.8009478672985781, "no_speech_prob": 1.3709068298339844e-06, "words": [{"start": 1038.54, "end": 1038.84, "word": "I", "probability": 0.1378173828125}, {"start": 1038.84, "end": 1038.98, "word": " will", "probability": 0.53369140625}, {"start": 1038.98, "end": 1039.12, "word": " tell", "probability": 0.350830078125}, {"start": 1039.12, "end": 1039.18, "word": " you", "probability": 0.83935546875}, {"start": 1039.18, "end": 1039.3, "word": " where", "probability": 0.75341796875}, {"start": 1039.3, "end": 1039.36, "word": " is", "probability": 0.67822265625}, {"start": 1039.36, "end": 1039.42, "word": " the", "probability": 0.77001953125}, {"start": 1039.42, "end": 1039.86, "word": " interface", "probability": 0.89208984375}, {"start": 1039.86, "end": 1040.06, "word": " in", "probability": 0.5322265625}, {"start": 1040.06, "end": 1040.56, "word": " this", "probability": 0.85498046875}, {"start": 1040.56, "end": 1040.92, "word": " topic", "probability": 0.34716796875}, {"start": 1040.92, "end": 1041.74, "word": " The", "probability": 0.30029296875}, {"start": 1041.74, "end": 1042.08, "word": " interface", "probability": 0.8955078125}, {"start": 1042.08, "end": 1042.28, "word": " is", "probability": 0.81884765625}, {"start": 1042.28, "end": 1042.58, "word": " here", "probability": 0.79443359375}, {"start": 1042.58, "end": 1042.92, "word": " Come", "probability": 0.1317138671875}, {"start": 1042.92, "end": 1043.26, "word": " to", "probability": 0.80810546875}, {"start": 1043.26, "end": 1044.22, "word": " this", "probability": 0.77392578125}, {"start": 1044.22, "end": 1044.66, "word": " task", "probability": 0.83642578125}, {"start": 1044.66, "end": 1045.52, "word": " Did", "probability": 0.52587890625}, {"start": 1045.52, "end": 1045.72, "word": " you", "probability": 0.84033203125}, {"start": 1045.72, "end": 1045.72, "word": " find", "probability": 0.65283203125}, {"start": 1045.72, "end": 1045.84, "word": " that", "probability": 0.303466796875}, {"start": 1045.84, "end": 1046.12, "word": " this", "probability": 0.81201171875}, {"start": 1046.12, "end": 1046.76, "word": " class", "probability": 0.97265625}, {"start": 1046.76, "end": 1048.6, "word": " does", "probability": 0.2437744140625}, {"start": 1048.6, "end": 1049.04, "word": " not", "probability": 0.9013671875}, {"start": 1049.04, "end": 1049.32, "word": " have", "probability": 0.77001953125}, {"start": 1049.32, "end": 1049.56, "word": " any", "probability": 0.86865234375}, {"start": 1049.56, "end": 1049.96, "word": " code", "probability": 0.488525390625}, {"start": 1049.96, "end": 1050.44, "word": " shared", "probability": 0.2493896484375}, {"start": 1050.44, "end": 1050.68, "word": " between", "probability": 0.44140625}, {"start": 1050.68, "end": 1050.86, "word": " them?", "probability": 0.8330078125}, {"start": 1051.02, "end": 1051.14, "word": " It", "probability": 0.51025390625}, {"start": 1051.14, "end": 1051.42, "word": " only", "probability": 0.66845703125}, {"start": 1051.42, "end": 1051.66, "word": " has", "probability": 0.88720703125}, {"start": 1051.66, "end": 1051.94, "word": " one", "probability": 0.70458984375}, {"start": 1051.94, "end": 1052.26, "word": " abstract", "probability": 0.8671875}, {"start": 1052.26, "end": 1052.94, "word": " method", "probability": 0.9521484375}, {"start": 1052.94, "end": 1054.0, "word": " I", "probability": 0.1912841796875}, {"start": 1054.0, "end": 1054.42, "word": " tell", "probability": 0.38623046875}, {"start": 1054.42, "end": 1054.6, "word": " the", "probability": 0.720703125}, {"start": 1054.6, "end": 1054.92, "word": " class", "probability": 0.9736328125}, {"start": 1054.92, "end": 1055.12, "word": " if", "probability": 0.478271484375}, {"start": 1055.12, "end": 1055.26, "word": " it", "probability": 0.5087890625}, {"start": 1055.26, "end": 1055.32, "word": " does", "probability": 0.7158203125}, {"start": 1055.32, "end": 1055.32, "word": " not", "probability": 0.9404296875}, {"start": 1055.32, "end": 1055.68, "word": " have", "probability": 0.90380859375}, {"start": 1055.68, "end": 1055.96, "word": " any", "probability": 0.84619140625}, {"start": 1055.96, "end": 1056.26, "word": " code", "probability": 0.84130859375}, {"start": 1056.26, "end": 1057.0, "word": " implementation", "probability": 0.873046875}, {"start": 1057.0, "end": 1058.14, "word": " There", "probability": 0.080810546875}, {"start": 1058.14, "end": 1058.22, "word": " is", "probability": 0.90283203125}, {"start": 1058.22, "end": 1058.3, "word": " no", "probability": 0.869140625}, {"start": 1058.3, "end": 1058.42, "word": " need", "probability": 0.78564453125}, {"start": 1058.42, "end": 1058.52, "word": " to", "probability": 0.9326171875}, {"start": 1058.52, "end": 1058.7, "word": " make", "probability": 0.70849609375}, {"start": 1058.7, "end": 1058.84, "word": " it", "probability": 0.8515625}, {"start": 1058.84, "end": 1058.86, "word": " an", "probability": 0.423583984375}, {"start": 1058.86, "end": 1059.04, "word": " abstract", "probability": 0.85498046875}, {"start": 1059.04, "end": 1059.52, "word": " class", "probability": 0.96826171875}, {"start": 1059.52, "end": 1059.8, "word": " Bring", "probability": 0.0596923828125}, {"start": 1059.8, "end": 1060.0, "word": " it", "probability": 0.82666015625}, {"start": 1060.0, "end": 1060.14, "word": " to", "probability": 0.94384765625}, {"start": 1060.14, "end": 1060.38, "word": " what?", "probability": 0.6923828125}, {"start": 1060.94, "end": 1061.18, "word": " To", "probability": 0.6455078125}, {"start": 1061.18, "end": 1061.24, "word": " the", "probability": 0.460693359375}, {"start": 1061.24, "end": 1061.62, "word": " interface", "probability": 0.89306640625}, {"start": 1061.62, "end": 1062.16, "word": " That", "probability": 0.1739501953125}, {"start": 1062.16, "end": 1062.24, "word": " is,", "probability": 0.685546875}, {"start": 1062.3, "end": 1062.44, "word": " if", "probability": 0.9189453125}, {"start": 1062.44, "end": 1062.7, "word": " I", "probability": 0.94677734375}, {"start": 1062.7, "end": 1062.92, "word": " find", "probability": 0.385498046875}, {"start": 1062.92, "end": 1063.26, "word": " that", "probability": 0.8349609375}, {"start": 1063.26, "end": 1063.48, "word": " I", "probability": 0.796875}, {"start": 1063.48, "end": 1063.48, "word": " made", "probability": 0.525390625}, {"start": 1063.48, "end": 1063.6, "word": " the", "probability": 0.8193359375}, {"start": 1063.6, "end": 1063.92, "word": " class", "probability": 0.9765625}], "temperature": 1.0}, {"id": 41, "seek": 107769, "start": 1065.59, "end": 1077.69, "text": "It doesn't have anything in common between two classes. It doesn't have any implementation. You can always turn it into an interface. An interface is an abstract class with all abstract methods.", "tokens": [3522, 1177, 380, 362, 1340, 294, 2689, 1296, 732, 5359, 13, 467, 1177, 380, 362, 604, 11420, 13, 509, 393, 1009, 1261, 309, 666, 364, 9226, 13, 1107, 9226, 307, 364, 12649, 1508, 365, 439, 12649, 7150, 13], "avg_logprob": -0.5701121825438279, "compression_ratio": 1.515625, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1065.59, "end": 1065.83, "word": "It", "probability": 0.2171630859375}, {"start": 1065.83, "end": 1066.05, "word": " doesn't", "probability": 0.5908203125}, {"start": 1066.05, "end": 1066.39, "word": " have", "probability": 0.49267578125}, {"start": 1066.39, "end": 1067.05, "word": " anything", "probability": 0.2919921875}, {"start": 1067.05, "end": 1067.49, "word": " in", "probability": 0.4521484375}, {"start": 1067.49, "end": 1067.49, "word": " common", "probability": 0.89013671875}, {"start": 1067.49, "end": 1067.77, "word": " between", "probability": 0.71923828125}, {"start": 1067.77, "end": 1067.99, "word": " two", "probability": 0.689453125}, {"start": 1067.99, "end": 1068.47, "word": " classes.", "probability": 0.91015625}, {"start": 1068.59, "end": 1068.65, "word": " It", "probability": 0.509765625}, {"start": 1068.65, "end": 1068.73, "word": " doesn't", "probability": 0.888916015625}, {"start": 1068.73, "end": 1068.97, "word": " have", "probability": 0.91796875}, {"start": 1068.97, "end": 1069.13, "word": " any", "probability": 0.8466796875}, {"start": 1069.13, "end": 1069.85, "word": " implementation.", "probability": 0.6787109375}, {"start": 1070.51, "end": 1070.85, "word": " You", "probability": 0.517578125}, {"start": 1070.85, "end": 1071.21, "word": " can", "probability": 0.88525390625}, {"start": 1071.21, "end": 1071.23, "word": " always", "probability": 0.151611328125}, {"start": 1071.23, "end": 1071.49, "word": " turn", "probability": 0.11163330078125}, {"start": 1071.49, "end": 1071.69, "word": " it", "probability": 0.86083984375}, {"start": 1071.69, "end": 1072.45, "word": " into", "probability": 0.6904296875}, {"start": 1072.45, "end": 1072.57, "word": " an", "probability": 0.66259765625}, {"start": 1072.57, "end": 1072.97, "word": " interface.", "probability": 0.8798828125}, {"start": 1073.35, "end": 1073.53, "word": " An", "probability": 0.3232421875}, {"start": 1073.53, "end": 1073.95, "word": " interface", "probability": 0.84130859375}, {"start": 1073.95, "end": 1074.19, "word": " is", "probability": 0.90283203125}, {"start": 1074.19, "end": 1074.71, "word": " an", "probability": 0.80615234375}, {"start": 1074.71, "end": 1075.05, "word": " abstract", "probability": 0.89111328125}, {"start": 1075.05, "end": 1075.63, "word": " class", "probability": 0.95703125}, {"start": 1075.63, "end": 1075.81, "word": " with", "probability": 0.357177734375}, {"start": 1075.81, "end": 1075.91, "word": " all", "probability": 0.5087890625}, {"start": 1075.91, "end": 1076.51, "word": " abstract", "probability": 0.377685546875}, {"start": 1076.51, "end": 1077.69, "word": " methods.", "probability": 0.90380859375}], "temperature": 1.0}, {"id": 42, "seek": 109831, "start": 1079.61, "end": 1098.31, "text": "But no, for example, in the employee, there are shared information such as ID, name and job title, right or wrong? Usually, when do we use abstract class? When there are shared things and different things. The shared things are kept in the class and the different things are put in an abstract method for someone to change them.", "tokens": [7835, 572, 11, 337, 1365, 11, 294, 264, 10738, 11, 456, 366, 5507, 1589, 1270, 382, 7348, 11, 1315, 293, 1691, 4876, 11, 558, 420, 2085, 30, 11419, 11, 562, 360, 321, 764, 12649, 1508, 30, 1133, 456, 366, 5507, 721, 293, 819, 721, 13, 440, 5507, 721, 366, 4305, 294, 264, 1508, 293, 264, 819, 721, 366, 829, 294, 364, 12649, 3170, 337, 1580, 281, 1319, 552, 13], "avg_logprob": -0.5308035697255816, "compression_ratio": 1.682051282051282, "no_speech_prob": 2.3245811462402344e-06, "words": [{"start": 1079.61, "end": 1079.93, "word": "But", "probability": 0.428466796875}, {"start": 1079.93, "end": 1080.15, "word": " no,", "probability": 0.41015625}, {"start": 1080.21, "end": 1080.37, "word": " for", "probability": 0.6669921875}, {"start": 1080.37, "end": 1080.47, "word": " example,", "probability": 0.8583984375}, {"start": 1080.61, "end": 1080.63, "word": " in", "probability": 0.580078125}, {"start": 1080.63, "end": 1080.69, "word": " the", "probability": 0.404296875}, {"start": 1080.69, "end": 1081.11, "word": " employee,", "probability": 0.693359375}, {"start": 1081.55, "end": 1081.95, "word": " there", "probability": 0.8447265625}, {"start": 1081.95, "end": 1081.99, "word": " are", "probability": 0.6845703125}, {"start": 1081.99, "end": 1082.03, "word": " shared", "probability": 0.393798828125}, {"start": 1082.03, "end": 1082.67, "word": " information", "probability": 0.59521484375}, {"start": 1082.67, "end": 1082.93, "word": " such", "probability": 0.2044677734375}, {"start": 1082.93, "end": 1082.93, "word": " as", "probability": 0.97705078125}, {"start": 1082.93, "end": 1083.37, "word": " ID,", "probability": 0.513671875}, {"start": 1083.63, "end": 1083.99, "word": " name", "probability": 0.45068359375}, {"start": 1083.99, "end": 1084.21, "word": " and", "probability": 0.56005859375}, {"start": 1084.21, "end": 1084.45, "word": " job", "probability": 0.9345703125}, {"start": 1084.45, "end": 1084.89, "word": " title,", "probability": 0.9775390625}, {"start": 1085.21, "end": 1085.37, "word": " right", "probability": 0.580078125}, {"start": 1085.37, "end": 1085.59, "word": " or", "probability": 0.5712890625}, {"start": 1085.59, "end": 1085.69, "word": " wrong?", "probability": 0.490478515625}, {"start": 1086.77, "end": 1087.23, "word": " Usually,", "probability": 0.37451171875}, {"start": 1087.37, "end": 1087.43, "word": " when", "probability": 0.59326171875}, {"start": 1087.43, "end": 1087.43, "word": " do", "probability": 0.71630859375}, {"start": 1087.43, "end": 1087.43, "word": " we", "probability": 0.7900390625}, {"start": 1087.43, "end": 1087.43, "word": " use", "probability": 0.8916015625}, {"start": 1087.43, "end": 1087.65, "word": " abstract", "probability": 0.458984375}, {"start": 1087.65, "end": 1088.17, "word": " class?", "probability": 0.63037109375}, {"start": 1088.97, "end": 1089.11, "word": " When", "probability": 0.7890625}, {"start": 1089.11, "end": 1089.51, "word": " there", "probability": 0.8271484375}, {"start": 1089.51, "end": 1089.53, "word": " are", "probability": 0.88525390625}, {"start": 1089.53, "end": 1090.07, "word": " shared", "probability": 0.5185546875}, {"start": 1090.07, "end": 1090.33, "word": " things", "probability": 0.495849609375}, {"start": 1090.33, "end": 1091.13, "word": " and", "probability": 0.736328125}, {"start": 1091.13, "end": 1091.65, "word": " different", "probability": 0.76806640625}, {"start": 1091.65, "end": 1091.81, "word": " things.", "probability": 0.787109375}, {"start": 1092.49, "end": 1092.73, "word": " The", "probability": 0.27392578125}, {"start": 1092.73, "end": 1092.75, "word": " shared", "probability": 0.69091796875}, {"start": 1092.75, "end": 1093.41, "word": " things", "probability": 0.83056640625}, {"start": 1093.41, "end": 1093.55, "word": " are", "probability": 0.43115234375}, {"start": 1093.55, "end": 1093.81, "word": " kept", "probability": 0.2763671875}, {"start": 1093.81, "end": 1094.15, "word": " in", "probability": 0.857421875}, {"start": 1094.15, "end": 1094.25, "word": " the", "probability": 0.69384765625}, {"start": 1094.25, "end": 1094.51, "word": " class", "probability": 0.9453125}, {"start": 1094.51, "end": 1094.63, "word": " and", "probability": 0.55029296875}, {"start": 1094.63, "end": 1094.71, "word": " the", "probability": 0.6064453125}, {"start": 1094.71, "end": 1094.71, "word": " different", "probability": 0.8125}, {"start": 1094.71, "end": 1095.39, "word": " things", "probability": 0.734375}, {"start": 1095.39, "end": 1095.55, "word": " are", "probability": 0.7890625}, {"start": 1095.55, "end": 1095.71, "word": " put", "probability": 0.54541015625}, {"start": 1095.71, "end": 1095.79, "word": " in", "probability": 0.6064453125}, {"start": 1095.79, "end": 1095.85, "word": " an", "probability": 0.2705078125}, {"start": 1095.85, "end": 1096.07, "word": " abstract", "probability": 0.85791015625}, {"start": 1096.07, "end": 1097.25, "word": " method", "probability": 0.9384765625}, {"start": 1097.25, "end": 1097.49, "word": " for", "probability": 0.22216796875}, {"start": 1097.49, "end": 1097.73, "word": " someone", "probability": 0.292236328125}, {"start": 1097.73, "end": 1097.77, "word": " to", "probability": 0.92724609375}, {"start": 1097.77, "end": 1097.99, "word": " change", "probability": 0.85302734375}, {"start": 1097.99, "end": 1098.31, "word": " them.", "probability": 0.69580078125}], "temperature": 1.0}, {"id": 43, "seek": 112244, "start": 1098.8, "end": 1122.44, "text": " The subclass. In this case, it tells you that when you reach a stage like this, that you are only working for a class, why? What is the goal? To unite types of things that do not have anything in common. This is the purpose of the interface. To benefit from polymorphism. Things that have nothing to do with each other, make them all of the same type. Okay? But the class that you use,", "tokens": [440, 1422, 11665, 13, 682, 341, 1389, 11, 309, 5112, 291, 300, 562, 291, 2524, 257, 3233, 411, 341, 11, 300, 291, 366, 787, 1364, 337, 257, 1508, 11, 983, 30, 708, 307, 264, 3387, 30, 1407, 29320, 3467, 295, 721, 300, 360, 406, 362, 1340, 294, 2689, 13, 639, 307, 264, 4334, 295, 264, 9226, 13, 1407, 5121, 490, 6754, 76, 18191, 1434, 13, 9514, 300, 362, 1825, 281, 360, 365, 1184, 661, 11, 652, 552, 439, 295, 264, 912, 2010, 13, 1033, 30, 583, 264, 1508, 300, 291, 764, 11], "avg_logprob": -0.5262097030557612, "compression_ratio": 1.6566523605150214, "no_speech_prob": 4.172325134277344e-06, "words": [{"start": 1098.8, "end": 1098.98, "word": " The", "probability": 0.080322265625}, {"start": 1098.98, "end": 1099.5, "word": " subclass.", "probability": 0.78173828125}, {"start": 1099.86, "end": 1100.18, "word": " In", "probability": 0.1470947265625}, {"start": 1100.18, "end": 1100.38, "word": " this", "probability": 0.77734375}, {"start": 1100.38, "end": 1100.62, "word": " case,", "probability": 0.77587890625}, {"start": 1100.92, "end": 1100.94, "word": " it", "probability": 0.443115234375}, {"start": 1100.94, "end": 1101.08, "word": " tells", "probability": 0.24658203125}, {"start": 1101.08, "end": 1101.32, "word": " you", "probability": 0.485107421875}, {"start": 1101.32, "end": 1101.7, "word": " that", "probability": 0.47607421875}, {"start": 1101.7, "end": 1101.8, "word": " when", "probability": 0.57373046875}, {"start": 1101.8, "end": 1101.98, "word": " you", "probability": 0.9228515625}, {"start": 1101.98, "end": 1102.2, "word": " reach", "probability": 0.65234375}, {"start": 1102.2, "end": 1102.36, "word": " a", "probability": 0.61474609375}, {"start": 1102.36, "end": 1102.64, "word": " stage", "probability": 0.282470703125}, {"start": 1102.64, "end": 1102.78, "word": " like", "probability": 0.64599609375}, {"start": 1102.78, "end": 1103.06, "word": " this,", "probability": 0.56884765625}, {"start": 1103.12, "end": 1103.2, "word": " that", "probability": 0.2008056640625}, {"start": 1103.2, "end": 1103.38, "word": " you", "probability": 0.85400390625}, {"start": 1103.38, "end": 1103.54, "word": " are", "probability": 0.40771484375}, {"start": 1103.54, "end": 1103.54, "word": " only", "probability": 0.4482421875}, {"start": 1103.54, "end": 1103.64, "word": " working", "probability": 0.162841796875}, {"start": 1103.64, "end": 1104.02, "word": " for", "probability": 0.83935546875}, {"start": 1104.02, "end": 1104.5, "word": " a", "probability": 0.40966796875}, {"start": 1104.5, "end": 1104.5, "word": " class,", "probability": 0.9521484375}, {"start": 1104.86, "end": 1105.34, "word": " why?", "probability": 0.6416015625}, {"start": 1105.36, "end": 1105.72, "word": " What", "probability": 0.67333984375}, {"start": 1105.72, "end": 1105.74, "word": " is", "probability": 0.6259765625}, {"start": 1105.74, "end": 1105.84, "word": " the", "probability": 0.81787109375}, {"start": 1105.84, "end": 1106.12, "word": " goal?", "probability": 0.392822265625}, {"start": 1106.62, "end": 1107.04, "word": " To", "probability": 0.5859375}, {"start": 1107.04, "end": 1107.8, "word": " unite", "probability": 0.329833984375}, {"start": 1107.8, "end": 1108.38, "word": " types", "probability": 0.38134765625}, {"start": 1108.38, "end": 1108.52, "word": " of", "probability": 0.912109375}, {"start": 1108.52, "end": 1108.98, "word": " things", "probability": 0.7548828125}, {"start": 1108.98, "end": 1109.1, "word": " that", "probability": 0.299072265625}, {"start": 1109.1, "end": 1109.28, "word": " do", "probability": 0.32275390625}, {"start": 1109.28, "end": 1109.28, "word": " not", "probability": 0.94140625}, {"start": 1109.28, "end": 1109.34, "word": " have", "probability": 0.77734375}, {"start": 1109.34, "end": 1110.0, "word": " anything", "probability": 0.61376953125}, {"start": 1110.0, "end": 1110.42, "word": " in", "probability": 0.7470703125}, {"start": 1110.42, "end": 1111.48, "word": " common.", "probability": 0.93798828125}, {"start": 1111.5, "end": 1111.7, "word": " This", "probability": 0.4482421875}, {"start": 1111.7, "end": 1111.76, "word": " is", "probability": 0.88623046875}, {"start": 1111.76, "end": 1111.82, "word": " the", "probability": 0.69677734375}, {"start": 1111.82, "end": 1111.96, "word": " purpose", "probability": 0.59521484375}, {"start": 1111.96, "end": 1112.08, "word": " of", "probability": 0.96826171875}, {"start": 1112.08, "end": 1112.12, "word": " the", "probability": 0.7919921875}, {"start": 1112.12, "end": 1112.64, "word": " interface.", "probability": 0.87255859375}, {"start": 1113.12, "end": 1113.32, "word": " To", "probability": 0.638671875}, {"start": 1113.32, "end": 1113.8, "word": " benefit", "probability": 0.71044921875}, {"start": 1113.8, "end": 1113.98, "word": " from", "probability": 0.88671875}, {"start": 1113.98, "end": 1114.96, "word": " polymorphism.", "probability": 0.8746337890625}, {"start": 1115.34, "end": 1115.76, "word": " Things", "probability": 0.8662109375}, {"start": 1115.76, "end": 1116.12, "word": " that", "probability": 0.693359375}, {"start": 1116.12, "end": 1116.32, "word": " have", "probability": 0.62255859375}, {"start": 1116.32, "end": 1116.54, "word": " nothing", "probability": 0.66259765625}, {"start": 1116.54, "end": 1116.84, "word": " to", "probability": 0.7685546875}, {"start": 1116.84, "end": 1116.9, "word": " do", "probability": 0.97314453125}, {"start": 1116.9, "end": 1116.94, "word": " with", "probability": 0.90185546875}, {"start": 1116.94, "end": 1117.18, "word": " each", "probability": 0.94091796875}, {"start": 1117.18, "end": 1117.18, "word": " other,", "probability": 0.888671875}, {"start": 1117.28, "end": 1117.44, "word": " make", "probability": 0.1544189453125}, {"start": 1117.44, "end": 1117.66, "word": " them", "probability": 0.7109375}, {"start": 1117.66, "end": 1117.8, "word": " all", "probability": 0.78271484375}, {"start": 1117.8, "end": 1117.92, "word": " of", "probability": 0.4814453125}, {"start": 1117.92, "end": 1118.02, "word": " the", "probability": 0.67236328125}, {"start": 1118.02, "end": 1118.3, "word": " same", "probability": 0.85400390625}, {"start": 1118.3, "end": 1118.66, "word": " type.", "probability": 0.5283203125}, {"start": 1120.16, "end": 1120.42, "word": " Okay?", "probability": 0.304443359375}, {"start": 1121.1, "end": 1121.34, "word": " But", "probability": 0.865234375}, {"start": 1121.34, "end": 1121.5, "word": " the", "probability": 0.51123046875}, {"start": 1121.5, "end": 1121.8, "word": " class", "probability": 0.95703125}, {"start": 1121.8, "end": 1121.96, "word": " that", "probability": 0.53369140625}, {"start": 1121.96, "end": 1122.04, "word": " you", "probability": 0.9609375}, {"start": 1122.04, "end": 1122.44, "word": " use,", "probability": 0.6875}], "temperature": 1.0}, {"id": 44, "seek": 115181, "start": 1123.91, "end": 1151.81, "text": "For two goals, not for the interface. The interface only unites between the types of things that do not have a common size. But the class or abstract class is divided into two things that combine common things instead of repeating this goal and unites the type. The class has two units. The interface has one unit. Well, it does not mean that the class is better than the interface because it has two units and the interface has one unit. No. In this example, what do I need? Interface. There is no common size.", "tokens": [12587, 732, 5493, 11, 406, 337, 264, 9226, 13, 440, 9226, 787, 517, 3324, 1296, 264, 3467, 295, 721, 300, 360, 406, 362, 257, 2689, 2744, 13, 583, 264, 1508, 420, 12649, 1508, 307, 6666, 666, 732, 721, 300, 10432, 2689, 721, 2602, 295, 18617, 341, 3387, 293, 517, 3324, 264, 2010, 13, 440, 1508, 575, 732, 6815, 13, 440, 9226, 575, 472, 4985, 13, 1042, 11, 309, 775, 406, 914, 300, 264, 1508, 307, 1101, 813, 264, 9226, 570, 309, 575, 732, 6815, 293, 264, 9226, 575, 472, 4985, 13, 883, 13, 682, 341, 1365, 11, 437, 360, 286, 643, 30, 5751, 2868, 13, 821, 307, 572, 2689, 2744, 13], "avg_logprob": -0.49720982781478335, "compression_ratio": 2.0358565737051793, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 1123.91, "end": 1124.11, "word": "For", "probability": 0.06494140625}, {"start": 1124.11, "end": 1124.51, "word": " two", "probability": 0.59716796875}, {"start": 1124.51, "end": 1124.51, "word": " goals,", "probability": 0.41845703125}, {"start": 1125.03, "end": 1125.21, "word": " not", "probability": 0.53125}, {"start": 1125.21, "end": 1125.33, "word": " for", "probability": 0.658203125}, {"start": 1125.33, "end": 1125.41, "word": " the", "probability": 0.365234375}, {"start": 1125.41, "end": 1125.71, "word": " interface.", "probability": 0.79052734375}, {"start": 1125.79, "end": 1125.93, "word": " The", "probability": 0.578125}, {"start": 1125.93, "end": 1126.25, "word": " interface", "probability": 0.90283203125}, {"start": 1126.25, "end": 1126.61, "word": " only", "probability": 0.270751953125}, {"start": 1126.61, "end": 1126.89, "word": " unites", "probability": 0.822998046875}, {"start": 1126.89, "end": 1127.21, "word": " between", "probability": 0.5}, {"start": 1127.21, "end": 1127.35, "word": " the", "probability": 0.302978515625}, {"start": 1127.35, "end": 1127.49, "word": " types", "probability": 0.384033203125}, {"start": 1127.49, "end": 1127.59, "word": " of", "probability": 0.95263671875}, {"start": 1127.59, "end": 1127.99, "word": " things", "probability": 0.61474609375}, {"start": 1127.99, "end": 1128.49, "word": " that", "probability": 0.60400390625}, {"start": 1128.49, "end": 1128.65, "word": " do", "probability": 0.22216796875}, {"start": 1128.65, "end": 1128.67, "word": " not", "probability": 0.93798828125}, {"start": 1128.67, "end": 1128.81, "word": " have", "probability": 0.6025390625}, {"start": 1128.81, "end": 1128.89, "word": " a", "probability": 0.4873046875}, {"start": 1128.89, "end": 1128.89, "word": " common", "probability": 0.420166015625}, {"start": 1128.89, "end": 1129.19, "word": " size.", "probability": 0.32421875}, {"start": 1129.79, "end": 1130.17, "word": " But", "probability": 0.830078125}, {"start": 1130.17, "end": 1130.37, "word": " the", "probability": 0.6259765625}, {"start": 1130.37, "end": 1130.71, "word": " class", "probability": 0.87451171875}, {"start": 1130.71, "end": 1130.87, "word": " or", "probability": 0.849609375}, {"start": 1130.87, "end": 1131.23, "word": " abstract", "probability": 0.6171875}, {"start": 1131.23, "end": 1131.69, "word": " class", "probability": 0.95361328125}, {"start": 1131.69, "end": 1131.85, "word": " is", "probability": 0.2288818359375}, {"start": 1131.85, "end": 1131.95, "word": " divided", "probability": 0.283935546875}, {"start": 1131.95, "end": 1132.15, "word": " into", "probability": 0.7568359375}, {"start": 1132.15, "end": 1132.51, "word": " two", "probability": 0.8994140625}, {"start": 1132.51, "end": 1132.51, "word": " things", "probability": 0.417236328125}, {"start": 1132.51, "end": 1134.17, "word": " that", "probability": 0.43359375}, {"start": 1134.17, "end": 1134.41, "word": " combine", "probability": 0.346435546875}, {"start": 1134.41, "end": 1134.53, "word": " common", "probability": 0.52294921875}, {"start": 1134.53, "end": 1135.35, "word": " things", "probability": 0.583984375}, {"start": 1135.35, "end": 1136.07, "word": " instead", "probability": 0.405517578125}, {"start": 1136.07, "end": 1136.19, "word": " of", "probability": 0.966796875}, {"start": 1136.19, "end": 1136.57, "word": " repeating", "probability": 0.7783203125}, {"start": 1136.57, "end": 1137.41, "word": " this", "probability": 0.40576171875}, {"start": 1137.41, "end": 1137.77, "word": " goal", "probability": 0.87548828125}, {"start": 1137.77, "end": 1138.65, "word": " and", "probability": 0.74853515625}, {"start": 1138.65, "end": 1138.95, "word": " unites", "probability": 0.595703125}, {"start": 1138.95, "end": 1139.09, "word": " the", "probability": 0.63134765625}, {"start": 1139.09, "end": 1139.27, "word": " type.", "probability": 0.54345703125}, {"start": 1139.99, "end": 1140.27, "word": " The", "probability": 0.76904296875}, {"start": 1140.27, "end": 1140.63, "word": " class", "probability": 0.95361328125}, {"start": 1140.63, "end": 1140.89, "word": " has", "probability": 0.8779296875}, {"start": 1140.89, "end": 1141.29, "word": " two", "probability": 0.92236328125}, {"start": 1141.29, "end": 1141.29, "word": " units.", "probability": 0.06982421875}, {"start": 1142.01, "end": 1142.15, "word": " The", "probability": 0.86474609375}, {"start": 1142.15, "end": 1142.49, "word": " interface", "probability": 0.89404296875}, {"start": 1142.49, "end": 1142.75, "word": " has", "probability": 0.89208984375}, {"start": 1142.75, "end": 1143.55, "word": " one", "probability": 0.68017578125}, {"start": 1143.55, "end": 1143.59, "word": " unit.", "probability": 0.92822265625}, {"start": 1144.87, "end": 1145.11, "word": " Well,", "probability": 0.27490234375}, {"start": 1145.15, "end": 1145.21, "word": " it", "probability": 0.63134765625}, {"start": 1145.21, "end": 1145.23, "word": " does", "probability": 0.60498046875}, {"start": 1145.23, "end": 1145.23, "word": " not", "probability": 0.94775390625}, {"start": 1145.23, "end": 1145.43, "word": " mean", "probability": 0.95751953125}, {"start": 1145.43, "end": 1145.53, "word": " that", "probability": 0.83935546875}, {"start": 1145.53, "end": 1145.59, "word": " the", "probability": 0.81884765625}, {"start": 1145.59, "end": 1145.77, "word": " class", "probability": 0.9609375}, {"start": 1145.77, "end": 1145.81, "word": " is", "probability": 0.90234375}, {"start": 1145.81, "end": 1145.99, "word": " better", "probability": 0.88916015625}, {"start": 1145.99, "end": 1146.11, "word": " than", "probability": 0.93115234375}, {"start": 1146.11, "end": 1146.23, "word": " the", "probability": 0.833984375}, {"start": 1146.23, "end": 1146.37, "word": " interface", "probability": 0.916015625}, {"start": 1146.37, "end": 1146.49, "word": " because", "probability": 0.489013671875}, {"start": 1146.49, "end": 1146.53, "word": " it", "probability": 0.7578125}, {"start": 1146.53, "end": 1146.61, "word": " has", "probability": 0.6748046875}, {"start": 1146.61, "end": 1146.91, "word": " two", "probability": 0.88330078125}, {"start": 1146.91, "end": 1146.99, "word": " units", "probability": 0.669921875}, {"start": 1146.99, "end": 1147.05, "word": " and", "probability": 0.71728515625}, {"start": 1147.05, "end": 1147.15, "word": " the", "probability": 0.354736328125}, {"start": 1147.15, "end": 1147.15, "word": " interface", "probability": 0.72021484375}, {"start": 1147.15, "end": 1147.15, "word": " has", "probability": 0.5283203125}, {"start": 1147.15, "end": 1147.45, "word": " one", "probability": 0.72021484375}, {"start": 1147.45, "end": 1147.45, "word": " unit.", "probability": 0.94287109375}, {"start": 1147.59, "end": 1147.75, "word": " No.", "probability": 0.75634765625}, {"start": 1148.15, "end": 1148.53, "word": " In", "probability": 0.3525390625}, {"start": 1148.53, "end": 1148.63, "word": " this", "probability": 0.8173828125}, {"start": 1148.63, "end": 1148.91, "word": " example,", "probability": 0.9130859375}, {"start": 1149.21, "end": 1149.33, "word": " what", "probability": 0.261474609375}, {"start": 1149.33, "end": 1149.33, "word": " do", "probability": 0.2254638671875}, {"start": 1149.33, "end": 1149.67, "word": " I", "probability": 0.8779296875}, {"start": 1149.67, "end": 1149.67, "word": " need?", "probability": 0.67333984375}, {"start": 1150.79, "end": 1151.19, "word": " Interface.", "probability": 0.730712890625}, {"start": 1151.29, "end": 1151.37, "word": " There", "probability": 0.6943359375}, {"start": 1151.37, "end": 1151.47, "word": " is", "probability": 0.93017578125}, {"start": 1151.47, "end": 1151.57, "word": " no", "probability": 0.93115234375}, {"start": 1151.57, "end": 1151.59, "word": " common", "probability": 0.81591796875}, {"start": 1151.59, "end": 1151.81, "word": " size.", "probability": 0.36962890625}], "temperature": 1.0}, {"id": 45, "seek": 117695, "start": 1153.99, "end": 1176.95, "text": " Just make them the same type. If you reached a point where you just want to unify the type, make it an interface. And even the word abstract stopped forcing him. He automatically considers that anything inside the interface is abstract. So the word abstract, if you want to remove it, remove it.", "tokens": [1449, 652, 552, 264, 912, 2010, 13, 759, 291, 6488, 257, 935, 689, 291, 445, 528, 281, 517, 2505, 264, 2010, 11, 652, 309, 364, 9226, 13, 400, 754, 264, 1349, 12649, 5936, 19030, 796, 13, 634, 6772, 33095, 300, 1340, 1854, 264, 9226, 307, 12649, 13, 407, 264, 1349, 12649, 11, 498, 291, 528, 281, 4159, 309, 11, 4159, 309, 13], "avg_logprob": -0.6622024093355451, "compression_ratio": 1.6536312849162011, "no_speech_prob": 3.7550926208496094e-06, "words": [{"start": 1153.99, "end": 1154.47, "word": " Just", "probability": 0.0416259765625}, {"start": 1154.47, "end": 1154.95, "word": " make", "probability": 0.234619140625}, {"start": 1154.95, "end": 1155.07, "word": " them", "probability": 0.70947265625}, {"start": 1155.07, "end": 1155.19, "word": " the", "probability": 0.1334228515625}, {"start": 1155.19, "end": 1155.21, "word": " same", "probability": 0.859375}, {"start": 1155.21, "end": 1155.33, "word": " type.", "probability": 0.64013671875}, {"start": 1155.87, "end": 1156.11, "word": " If", "probability": 0.454833984375}, {"start": 1156.11, "end": 1156.61, "word": " you", "probability": 0.487548828125}, {"start": 1156.61, "end": 1156.85, "word": " reached", "probability": 0.322265625}, {"start": 1156.85, "end": 1157.05, "word": " a", "probability": 0.495849609375}, {"start": 1157.05, "end": 1157.21, "word": " point", "probability": 0.49755859375}, {"start": 1157.21, "end": 1157.37, "word": " where", "probability": 0.658203125}, {"start": 1157.37, "end": 1157.47, "word": " you", "probability": 0.876953125}, {"start": 1157.47, "end": 1157.61, "word": " just", "probability": 0.2396240234375}, {"start": 1157.61, "end": 1157.77, "word": " want", "probability": 0.478271484375}, {"start": 1157.77, "end": 1157.85, "word": " to", "probability": 0.86767578125}, {"start": 1157.85, "end": 1158.13, "word": " unify", "probability": 0.6083984375}, {"start": 1158.13, "end": 1158.25, "word": " the", "probability": 0.6572265625}, {"start": 1158.25, "end": 1158.43, "word": " type,", "probability": 0.6630859375}, {"start": 1158.67, "end": 1158.91, "word": " make", "probability": 0.320068359375}, {"start": 1158.91, "end": 1159.13, "word": " it", "probability": 0.3056640625}, {"start": 1159.13, "end": 1159.67, "word": " an", "probability": 0.352294921875}, {"start": 1159.67, "end": 1162.13, "word": " interface.", "probability": 0.80810546875}, {"start": 1163.61, "end": 1164.01, "word": " And", "probability": 0.277587890625}, {"start": 1164.01, "end": 1164.27, "word": " even", "probability": 0.474609375}, {"start": 1164.27, "end": 1164.61, "word": " the", "probability": 0.4404296875}, {"start": 1164.61, "end": 1164.83, "word": " word", "probability": 0.85107421875}, {"start": 1164.83, "end": 1165.49, "word": " abstract", "probability": 0.62451171875}, {"start": 1165.49, "end": 1167.07, "word": " stopped", "probability": 0.307373046875}, {"start": 1167.07, "end": 1167.43, "word": " forcing", "probability": 0.53515625}, {"start": 1167.43, "end": 1167.89, "word": " him.", "probability": 0.41552734375}, {"start": 1168.33, "end": 1168.81, "word": " He", "probability": 0.476806640625}, {"start": 1168.81, "end": 1169.39, "word": " automatically", "probability": 0.34130859375}, {"start": 1169.39, "end": 1169.93, "word": " considers", "probability": 0.274169921875}, {"start": 1169.93, "end": 1170.11, "word": " that", "probability": 0.467041015625}, {"start": 1170.11, "end": 1170.35, "word": " anything", "probability": 0.43359375}, {"start": 1170.35, "end": 1170.89, "word": " inside", "probability": 0.304443359375}, {"start": 1170.89, "end": 1171.07, "word": " the", "probability": 0.79931640625}, {"start": 1171.07, "end": 1171.47, "word": " interface", "probability": 0.8818359375}, {"start": 1171.47, "end": 1171.63, "word": " is", "probability": 0.44921875}, {"start": 1171.63, "end": 1173.03, "word": " abstract.", "probability": 0.72998046875}, {"start": 1174.31, "end": 1174.79, "word": " So", "probability": 0.4677734375}, {"start": 1174.79, "end": 1174.91, "word": " the", "probability": 0.23583984375}, {"start": 1174.91, "end": 1175.09, "word": " word", "probability": 0.89453125}, {"start": 1175.09, "end": 1175.49, "word": " abstract,", "probability": 0.8671875}, {"start": 1175.57, "end": 1175.57, "word": " if", "probability": 0.78759765625}, {"start": 1175.57, "end": 1175.73, "word": " you", "probability": 0.96484375}, {"start": 1175.73, "end": 1175.75, "word": " want", "probability": 0.83642578125}, {"start": 1175.75, "end": 1175.83, "word": " to", "probability": 0.95263671875}, {"start": 1175.83, "end": 1176.01, "word": " remove", "probability": 0.76171875}, {"start": 1176.01, "end": 1176.29, "word": " it,", "probability": 0.908203125}, {"start": 1176.57, "end": 1176.77, "word": " remove", "probability": 0.4560546875}, {"start": 1176.77, "end": 1176.95, "word": " it.", "probability": 0.939453125}], "temperature": 1.0}, {"id": 46, "seek": 119398, "start": 1178.08, "end": 1193.98, "text": "I made the interface so that everyone who wants to implement it can take the same type of code But everyone wants to execute it in a different way So that the man sees them all as tasks and is able to execute without knowing the details or differences between them Do you agree or not guys?", "tokens": [40, 1027, 264, 9226, 370, 300, 1518, 567, 2738, 281, 4445, 309, 393, 747, 264, 912, 2010, 295, 3089, 583, 1518, 2738, 281, 14483, 309, 294, 257, 819, 636, 407, 300, 264, 587, 8194, 552, 439, 382, 9608, 293, 307, 1075, 281, 14483, 1553, 5276, 264, 4365, 420, 7300, 1296, 552, 1144, 291, 3986, 420, 406, 1074, 30], "avg_logprob": -0.6445974838935723, "compression_ratio": 1.6292134831460674, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 1178.08, "end": 1178.46, "word": "I", "probability": 0.53564453125}, {"start": 1178.46, "end": 1178.72, "word": " made", "probability": 0.352783203125}, {"start": 1178.72, "end": 1178.86, "word": " the", "probability": 0.5458984375}, {"start": 1178.86, "end": 1179.36, "word": " interface", "probability": 0.8603515625}, {"start": 1179.36, "end": 1179.64, "word": " so", "probability": 0.34765625}, {"start": 1179.64, "end": 1179.92, "word": " that", "probability": 0.54248046875}, {"start": 1179.92, "end": 1180.18, "word": " everyone", "probability": 0.4990234375}, {"start": 1180.18, "end": 1180.26, "word": " who", "probability": 0.4501953125}, {"start": 1180.26, "end": 1180.4, "word": " wants", "probability": 0.44091796875}, {"start": 1180.4, "end": 1180.44, "word": " to", "probability": 0.939453125}, {"start": 1180.44, "end": 1181.1, "word": " implement", "probability": 0.463623046875}, {"start": 1181.1, "end": 1181.22, "word": " it", "probability": 0.57275390625}, {"start": 1181.22, "end": 1181.32, "word": " can", "probability": 0.335205078125}, {"start": 1181.32, "end": 1181.5, "word": " take", "probability": 0.32373046875}, {"start": 1181.5, "end": 1181.6, "word": " the", "probability": 0.7060546875}, {"start": 1181.6, "end": 1181.74, "word": " same", "probability": 0.86083984375}, {"start": 1181.74, "end": 1182.08, "word": " type", "probability": 0.1746826171875}, {"start": 1182.08, "end": 1182.24, "word": " of", "probability": 0.361328125}, {"start": 1182.24, "end": 1182.24, "word": " code", "probability": 0.3935546875}, {"start": 1182.24, "end": 1182.72, "word": " But", "probability": 0.330810546875}, {"start": 1182.72, "end": 1183.1, "word": " everyone", "probability": 0.464111328125}, {"start": 1183.1, "end": 1183.38, "word": " wants", "probability": 0.3935546875}, {"start": 1183.38, "end": 1183.44, "word": " to", "probability": 0.96240234375}, {"start": 1183.44, "end": 1183.88, "word": " execute", "probability": 0.7275390625}, {"start": 1183.88, "end": 1184.04, "word": " it", "probability": 0.266845703125}, {"start": 1184.04, "end": 1184.06, "word": " in", "probability": 0.70361328125}, {"start": 1184.06, "end": 1184.54, "word": " a", "probability": 0.85791015625}, {"start": 1184.54, "end": 1185.62, "word": " different", "probability": 0.84619140625}, {"start": 1185.62, "end": 1185.8, "word": " way", "probability": 0.91455078125}, {"start": 1185.8, "end": 1186.42, "word": " So", "probability": 0.38330078125}, {"start": 1186.42, "end": 1186.72, "word": " that", "probability": 0.75830078125}, {"start": 1186.72, "end": 1186.82, "word": " the", "probability": 0.3662109375}, {"start": 1186.82, "end": 1187.0, "word": " man", "probability": 0.08056640625}, {"start": 1187.0, "end": 1187.32, "word": " sees", "probability": 0.60888671875}, {"start": 1187.32, "end": 1187.52, "word": " them", "probability": 0.284912109375}, {"start": 1187.52, "end": 1187.68, "word": " all", "probability": 0.552734375}, {"start": 1187.68, "end": 1187.84, "word": " as", "probability": 0.8408203125}, {"start": 1187.84, "end": 1188.28, "word": " tasks", "probability": 0.71142578125}, {"start": 1188.28, "end": 1188.72, "word": " and", "probability": 0.54052734375}, {"start": 1188.72, "end": 1188.84, "word": " is", "probability": 0.1580810546875}, {"start": 1188.84, "end": 1189.08, "word": " able", "probability": 0.8935546875}, {"start": 1189.08, "end": 1189.18, "word": " to", "probability": 0.97119140625}, {"start": 1189.18, "end": 1189.54, "word": " execute", "probability": 0.93115234375}, {"start": 1189.54, "end": 1190.04, "word": " without", "probability": 0.5244140625}, {"start": 1190.04, "end": 1191.04, "word": " knowing", "probability": 0.58056640625}, {"start": 1191.04, "end": 1191.18, "word": " the", "probability": 0.466064453125}, {"start": 1191.18, "end": 1191.48, "word": " details", "probability": 0.447998046875}, {"start": 1191.48, "end": 1191.66, "word": " or", "probability": 0.80517578125}, {"start": 1191.66, "end": 1192.12, "word": " differences", "probability": 0.61279296875}, {"start": 1192.12, "end": 1192.74, "word": " between", "probability": 0.68701171875}, {"start": 1192.74, "end": 1193.06, "word": " them", "probability": 0.8984375}, {"start": 1193.06, "end": 1193.46, "word": " Do", "probability": 0.2138671875}, {"start": 1193.46, "end": 1193.46, "word": " you", "probability": 0.7685546875}, {"start": 1193.46, "end": 1193.56, "word": " agree", "probability": 0.491455078125}, {"start": 1193.56, "end": 1193.74, "word": " or", "probability": 0.5009765625}, {"start": 1193.74, "end": 1193.74, "word": " not", "probability": 0.88037109375}, {"start": 1193.74, "end": 1193.98, "word": " guys?", "probability": 0.388916015625}], "temperature": 1.0}, {"id": 47, "seek": 121968, "start": 1194.82, "end": 1219.68, "text": " Ok, in this case, I have an error in the subclasses. Why? When I change the interface, it says no, instead of extends, do implements. Actually, they have different meanings. Extends means that there is something existing and I want to add it. Implement means that there is nothing empty and I want to do what? Implements. Of course, in new languages like Kotlin and Swift", "tokens": [3477, 11, 294, 341, 1389, 11, 286, 362, 364, 6713, 294, 264, 1422, 11665, 279, 13, 1545, 30, 1133, 286, 1319, 264, 9226, 11, 309, 1619, 572, 11, 2602, 295, 26448, 11, 360, 704, 17988, 13, 5135, 11, 436, 362, 819, 28138, 13, 9881, 2581, 1355, 300, 456, 307, 746, 6741, 293, 286, 528, 281, 909, 309, 13, 4331, 43704, 1355, 300, 456, 307, 1825, 6707, 293, 286, 528, 281, 360, 437, 30, 4331, 781, 1117, 13, 2720, 1164, 11, 294, 777, 8650, 411, 30123, 5045, 293, 25539], "avg_logprob": -0.4820927046657948, "compression_ratio": 1.6244541484716157, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 1194.82, "end": 1195.26, "word": " Ok,", "probability": 0.11102294921875}, {"start": 1195.48, "end": 1195.9, "word": " in", "probability": 0.57421875}, {"start": 1195.9, "end": 1195.98, "word": " this", "probability": 0.87158203125}, {"start": 1195.98, "end": 1196.28, "word": " case,", "probability": 0.6669921875}, {"start": 1196.96, "end": 1197.28, "word": " I", "probability": 0.7451171875}, {"start": 1197.28, "end": 1197.28, "word": " have", "probability": 0.56298828125}, {"start": 1197.28, "end": 1197.4, "word": " an", "probability": 0.46875}, {"start": 1197.4, "end": 1197.56, "word": " error", "probability": 0.91943359375}, {"start": 1197.56, "end": 1197.7, "word": " in", "probability": 0.8115234375}, {"start": 1197.7, "end": 1197.82, "word": " the", "probability": 0.483154296875}, {"start": 1197.82, "end": 1198.4, "word": " subclasses.", "probability": 0.7215169270833334}, {"start": 1198.4, "end": 1198.62, "word": " Why?", "probability": 0.8154296875}, {"start": 1199.2, "end": 1199.64, "word": " When", "probability": 0.49609375}, {"start": 1199.64, "end": 1199.76, "word": " I", "probability": 0.82470703125}, {"start": 1199.76, "end": 1200.02, "word": " change", "probability": 0.55224609375}, {"start": 1200.02, "end": 1201.42, "word": " the", "probability": 0.5830078125}, {"start": 1201.42, "end": 1201.92, "word": " interface,", "probability": 0.875}, {"start": 1202.0, "end": 1202.06, "word": " it", "probability": 0.8115234375}, {"start": 1202.06, "end": 1202.2, "word": " says", "probability": 0.45458984375}, {"start": 1202.2, "end": 1202.46, "word": " no,", "probability": 0.171875}, {"start": 1202.54, "end": 1202.68, "word": " instead", "probability": 0.63623046875}, {"start": 1202.68, "end": 1202.78, "word": " of", "probability": 0.96435546875}, {"start": 1202.78, "end": 1203.18, "word": " extends,", "probability": 0.466064453125}, {"start": 1203.34, "end": 1203.6, "word": " do", "probability": 0.2225341796875}, {"start": 1203.6, "end": 1204.54, "word": " implements.", "probability": 0.6712646484375}, {"start": 1204.64, "end": 1204.8, "word": " Actually,", "probability": 0.322509765625}, {"start": 1204.86, "end": 1204.88, "word": " they", "probability": 0.673828125}, {"start": 1204.88, "end": 1204.96, "word": " have", "probability": 0.3515625}, {"start": 1204.96, "end": 1205.18, "word": " different", "probability": 0.7724609375}, {"start": 1205.18, "end": 1205.56, "word": " meanings.", "probability": 0.884765625}, {"start": 1206.04, "end": 1206.48, "word": " Extends", "probability": 0.889892578125}, {"start": 1206.48, "end": 1206.7, "word": " means", "probability": 0.8212890625}, {"start": 1206.7, "end": 1206.9, "word": " that", "probability": 0.376220703125}, {"start": 1206.9, "end": 1206.98, "word": " there", "probability": 0.78759765625}, {"start": 1206.98, "end": 1206.98, "word": " is", "probability": 0.833984375}, {"start": 1206.98, "end": 1207.22, "word": " something", "probability": 0.67724609375}, {"start": 1207.22, "end": 1207.68, "word": " existing", "probability": 0.285888671875}, {"start": 1207.68, "end": 1208.92, "word": " and", "probability": 0.56005859375}, {"start": 1208.92, "end": 1209.04, "word": " I", "probability": 0.95654296875}, {"start": 1209.04, "end": 1209.16, "word": " want", "probability": 0.65625}, {"start": 1209.16, "end": 1209.26, "word": " to", "probability": 0.95703125}, {"start": 1209.26, "end": 1209.32, "word": " add", "probability": 0.5556640625}, {"start": 1209.32, "end": 1211.06, "word": " it.", "probability": 0.39111328125}, {"start": 1212.3, "end": 1212.74, "word": " Implement", "probability": 0.633056640625}, {"start": 1212.74, "end": 1212.88, "word": " means", "probability": 0.490478515625}, {"start": 1212.88, "end": 1213.02, "word": " that", "probability": 0.525390625}, {"start": 1213.02, "end": 1213.28, "word": " there", "probability": 0.86474609375}, {"start": 1213.28, "end": 1213.86, "word": " is", "probability": 0.8974609375}, {"start": 1213.86, "end": 1214.12, "word": " nothing", "probability": 0.78369140625}, {"start": 1214.12, "end": 1214.9, "word": " empty", "probability": 0.242919921875}, {"start": 1214.9, "end": 1215.44, "word": " and", "probability": 0.73974609375}, {"start": 1215.44, "end": 1215.58, "word": " I", "probability": 0.95556640625}, {"start": 1215.58, "end": 1215.76, "word": " want", "probability": 0.8125}, {"start": 1215.76, "end": 1215.84, "word": " to", "probability": 0.9658203125}, {"start": 1215.84, "end": 1216.04, "word": " do", "probability": 0.30517578125}, {"start": 1216.04, "end": 1216.32, "word": " what?", "probability": 0.51025390625}, {"start": 1216.8, "end": 1217.24, "word": " Implements.", "probability": 0.8282877604166666}, {"start": 1217.32, "end": 1217.48, "word": " Of", "probability": 0.72216796875}, {"start": 1217.48, "end": 1217.52, "word": " course,", "probability": 0.95751953125}, {"start": 1217.74, "end": 1217.78, "word": " in", "probability": 0.896484375}, {"start": 1217.78, "end": 1218.52, "word": " new", "probability": 0.52880859375}, {"start": 1218.52, "end": 1218.52, "word": " languages", "probability": 0.97607421875}, {"start": 1218.52, "end": 1218.8, "word": " like", "probability": 0.38818359375}, {"start": 1218.8, "end": 1219.2, "word": " Kotlin", "probability": 0.8427734375}, {"start": 1219.2, "end": 1219.32, "word": " and", "probability": 0.8583984375}, {"start": 1219.32, "end": 1219.68, "word": " Swift", "probability": 0.8916015625}], "temperature": 1.0}, {"id": 48, "seek": 124455, "start": 1220.79, "end": 1244.55, "text": " He started to put his fingers and that's it. And he walks. Okay? Our goal is not the syntax. Our goal is what? The concept of object-oriented programming. So we brought all of these to implement. Okay? Is this thing clear, guys? Because there is also another feature for the interface.", "tokens": [634, 1409, 281, 829, 702, 7350, 293, 300, 311, 309, 13, 400, 415, 12896, 13, 1033, 30, 2621, 3387, 307, 406, 264, 28431, 13, 2621, 3387, 307, 437, 30, 440, 3410, 295, 2657, 12, 27414, 9410, 13, 407, 321, 3038, 439, 295, 613, 281, 4445, 13, 1033, 30, 1119, 341, 551, 1850, 11, 1074, 30, 1436, 456, 307, 611, 1071, 4111, 337, 264, 9226, 13], "avg_logprob": -0.6429924115990148, "compression_ratio": 1.4444444444444444, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1220.79, "end": 1221.05, "word": " He", "probability": 0.1204833984375}, {"start": 1221.05, "end": 1221.11, "word": " started", "probability": 0.19189453125}, {"start": 1221.11, "end": 1221.15, "word": " to", "probability": 0.238037109375}, {"start": 1221.15, "end": 1221.25, "word": " put", "probability": 0.3193359375}, {"start": 1221.25, "end": 1221.39, "word": " his", "probability": 0.091552734375}, {"start": 1221.39, "end": 1221.45, "word": " fingers", "probability": 0.1378173828125}, {"start": 1221.45, "end": 1221.73, "word": " and", "probability": 0.3974609375}, {"start": 1221.73, "end": 1221.89, "word": " that's", "probability": 0.4466552734375}, {"start": 1221.89, "end": 1222.09, "word": " it.", "probability": 0.849609375}, {"start": 1222.43, "end": 1222.55, "word": " And", "probability": 0.380615234375}, {"start": 1222.55, "end": 1222.59, "word": " he", "probability": 0.428466796875}, {"start": 1222.59, "end": 1222.79, "word": " walks.", "probability": 0.12841796875}, {"start": 1223.41, "end": 1223.67, "word": " Okay?", "probability": 0.27490234375}, {"start": 1224.35, "end": 1224.87, "word": " Our", "probability": 0.477783203125}, {"start": 1224.87, "end": 1225.07, "word": " goal", "probability": 0.7119140625}, {"start": 1225.07, "end": 1225.27, "word": " is", "probability": 0.50341796875}, {"start": 1225.27, "end": 1225.31, "word": " not", "probability": 0.939453125}, {"start": 1225.31, "end": 1225.47, "word": " the", "probability": 0.478515625}, {"start": 1225.47, "end": 1225.83, "word": " syntax.", "probability": 0.9501953125}, {"start": 1225.95, "end": 1225.97, "word": " Our", "probability": 0.5771484375}, {"start": 1225.97, "end": 1226.17, "word": " goal", "probability": 0.943359375}, {"start": 1226.17, "end": 1226.39, "word": " is", "probability": 0.93603515625}, {"start": 1226.39, "end": 1226.53, "word": " what?", "probability": 0.380859375}, {"start": 1227.35, "end": 1227.57, "word": " The", "probability": 0.62548828125}, {"start": 1227.57, "end": 1227.83, "word": " concept", "probability": 0.59228515625}, {"start": 1227.83, "end": 1228.01, "word": " of", "probability": 0.91748046875}, {"start": 1228.01, "end": 1228.29, "word": " object", "probability": 0.67041015625}, {"start": 1228.29, "end": 1228.65, "word": "-oriented", "probability": 0.69287109375}, {"start": 1228.65, "end": 1229.11, "word": " programming.", "probability": 0.87841796875}, {"start": 1229.55, "end": 1229.67, "word": " So", "probability": 0.61328125}, {"start": 1229.67, "end": 1230.27, "word": " we", "probability": 0.342041015625}, {"start": 1230.27, "end": 1230.73, "word": " brought", "probability": 0.69873046875}, {"start": 1230.73, "end": 1230.73, "word": " all", "probability": 0.595703125}, {"start": 1230.73, "end": 1230.73, "word": " of", "probability": 0.5400390625}, {"start": 1230.73, "end": 1230.73, "word": " these", "probability": 0.391845703125}, {"start": 1230.73, "end": 1231.15, "word": " to", "probability": 0.66064453125}, {"start": 1231.15, "end": 1236.09, "word": " implement.", "probability": 0.311279296875}, {"start": 1236.99, "end": 1237.31, "word": " Okay?", "probability": 0.763671875}, {"start": 1240.45, "end": 1240.73, "word": " Is", "probability": 0.2744140625}, {"start": 1240.73, "end": 1241.07, "word": " this", "probability": 0.5751953125}, {"start": 1241.07, "end": 1241.51, "word": " thing", "probability": 0.47412109375}, {"start": 1241.51, "end": 1241.51, "word": " clear,", "probability": 0.84130859375}, {"start": 1241.59, "end": 1241.81, "word": " guys?", "probability": 0.78564453125}, {"start": 1242.31, "end": 1242.57, "word": " Because", "probability": 0.7021484375}, {"start": 1242.57, "end": 1243.03, "word": " there", "probability": 0.83251953125}, {"start": 1243.03, "end": 1243.07, "word": " is", "probability": 0.74462890625}, {"start": 1243.07, "end": 1243.07, "word": " also", "probability": 0.3916015625}, {"start": 1243.07, "end": 1243.53, "word": " another", "probability": 0.89892578125}, {"start": 1243.53, "end": 1243.53, "word": " feature", "probability": 0.80517578125}, {"start": 1243.53, "end": 1243.79, "word": " for", "probability": 0.6123046875}, {"start": 1243.79, "end": 1243.97, "word": " the", "probability": 0.8466796875}, {"start": 1243.97, "end": 1244.55, "word": " interface.", "probability": 0.87109375}], "temperature": 1.0}, {"id": 49, "seek": 126343, "start": 1249.15, "end": 1263.43, "text": "Excel is one class, but you can implement it to more than one interface. You can give your object more than one type. For example, you can put it in more than one list and it will execute the same thing.", "tokens": [11149, 4933, 307, 472, 1508, 11, 457, 291, 393, 4445, 309, 281, 544, 813, 472, 9226, 13, 509, 393, 976, 428, 2657, 544, 813, 472, 2010, 13, 1171, 1365, 11, 291, 393, 829, 309, 294, 544, 813, 472, 1329, 293, 309, 486, 14483, 264, 912, 551, 13], "avg_logprob": -0.5862630220750967, "compression_ratio": 1.5378787878787878, "no_speech_prob": 1.6510486602783203e-05, "words": [{"start": 1249.1499999999999, "end": 1249.55, "word": "Excel", "probability": 0.514739990234375}, {"start": 1249.55, "end": 1249.67, "word": " is", "probability": 0.435302734375}, {"start": 1249.67, "end": 1249.71, "word": " one", "probability": 0.2783203125}, {"start": 1249.71, "end": 1250.09, "word": " class,", "probability": 0.82080078125}, {"start": 1251.15, "end": 1251.43, "word": " but", "probability": 0.71826171875}, {"start": 1251.43, "end": 1251.63, "word": " you", "probability": 0.6767578125}, {"start": 1251.63, "end": 1251.77, "word": " can", "probability": 0.890625}, {"start": 1251.77, "end": 1252.43, "word": " implement", "probability": 0.541015625}, {"start": 1252.43, "end": 1252.63, "word": " it", "probability": 0.295166015625}, {"start": 1252.63, "end": 1252.71, "word": " to", "probability": 0.3291015625}, {"start": 1252.71, "end": 1252.91, "word": " more", "probability": 0.54248046875}, {"start": 1252.91, "end": 1253.13, "word": " than", "probability": 0.857421875}, {"start": 1253.13, "end": 1253.31, "word": " one", "probability": 0.9013671875}, {"start": 1253.31, "end": 1253.87, "word": " interface.", "probability": 0.9033203125}, {"start": 1254.51, "end": 1254.71, "word": " You", "probability": 0.33349609375}, {"start": 1254.71, "end": 1254.99, "word": " can", "probability": 0.890625}, {"start": 1254.99, "end": 1255.51, "word": " give", "probability": 0.468017578125}, {"start": 1255.51, "end": 1255.69, "word": " your", "probability": 0.2022705078125}, {"start": 1255.69, "end": 1256.11, "word": " object", "probability": 0.8544921875}, {"start": 1256.11, "end": 1256.97, "word": " more", "probability": 0.5009765625}, {"start": 1256.97, "end": 1257.11, "word": " than", "probability": 0.72900390625}, {"start": 1257.11, "end": 1257.43, "word": " one", "probability": 0.8994140625}, {"start": 1257.43, "end": 1257.43, "word": " type.", "probability": 0.64794921875}, {"start": 1259.29, "end": 1259.69, "word": " For", "probability": 0.475830078125}, {"start": 1259.69, "end": 1260.29, "word": " example,", "probability": 0.88818359375}, {"start": 1260.47, "end": 1260.57, "word": " you", "probability": 0.63134765625}, {"start": 1260.57, "end": 1260.79, "word": " can", "probability": 0.68798828125}, {"start": 1260.79, "end": 1260.81, "word": " put", "probability": 0.52587890625}, {"start": 1260.81, "end": 1260.87, "word": " it", "probability": 0.5625}, {"start": 1260.87, "end": 1260.93, "word": " in", "probability": 0.56396484375}, {"start": 1260.93, "end": 1261.13, "word": " more", "probability": 0.830078125}, {"start": 1261.13, "end": 1261.29, "word": " than", "probability": 0.91845703125}, {"start": 1261.29, "end": 1261.35, "word": " one", "probability": 0.9072265625}, {"start": 1261.35, "end": 1261.71, "word": " list", "probability": 0.8955078125}, {"start": 1261.71, "end": 1262.47, "word": " and", "probability": 0.5869140625}, {"start": 1262.47, "end": 1262.51, "word": " it", "probability": 0.315673828125}, {"start": 1262.51, "end": 1262.53, "word": " will", "probability": 0.53662109375}, {"start": 1262.53, "end": 1262.73, "word": " execute", "probability": 0.345458984375}, {"start": 1262.73, "end": 1263.01, "word": " the", "probability": 0.67578125}, {"start": 1263.01, "end": 1263.11, "word": " same", "probability": 0.849609375}, {"start": 1263.11, "end": 1263.43, "word": " thing.", "probability": 0.5234375}], "temperature": 1.0}, {"id": 50, "seek": 129215, "start": 1265.65, "end": 1292.15, "text": " Someone will ask, what is the point of taking more than one type? It will be clear to you when you take it in GUI Sometimes you want to make the frame or the screen listen to the mouse click or the keyboard click So he wants to do less than two things So you want to make the frame or the screen listen to take two types One type is mouse listener and the other type is button listener", "tokens": [8734, 486, 1029, 11, 437, 307, 264, 935, 295, 1940, 544, 813, 472, 2010, 30, 467, 486, 312, 1850, 281, 291, 562, 291, 747, 309, 294, 17917, 40, 4803, 291, 528, 281, 652, 264, 3920, 420, 264, 2568, 2140, 281, 264, 9719, 2052, 420, 264, 10186, 2052, 407, 415, 2738, 281, 360, 1570, 813, 732, 721, 407, 291, 528, 281, 652, 264, 3920, 420, 264, 2568, 2140, 281, 747, 732, 3467, 1485, 2010, 307, 9719, 31569, 293, 264, 661, 2010, 307, 2960, 31569], "avg_logprob": -0.5930059353510538, "compression_ratio": 1.9203980099502487, "no_speech_prob": 3.933906555175781e-06, "words": [{"start": 1265.65, "end": 1266.13, "word": " Someone", "probability": 0.10821533203125}, {"start": 1266.13, "end": 1266.27, "word": " will", "probability": 0.2159423828125}, {"start": 1266.27, "end": 1266.39, "word": " ask,", "probability": 0.63525390625}, {"start": 1266.51, "end": 1266.67, "word": " what", "probability": 0.51416015625}, {"start": 1266.67, "end": 1266.71, "word": " is", "probability": 0.50927734375}, {"start": 1266.71, "end": 1266.83, "word": " the", "probability": 0.86572265625}, {"start": 1266.83, "end": 1267.09, "word": " point", "probability": 0.457275390625}, {"start": 1267.09, "end": 1267.23, "word": " of", "probability": 0.55126953125}, {"start": 1267.23, "end": 1267.49, "word": " taking", "probability": 0.431640625}, {"start": 1267.49, "end": 1267.79, "word": " more", "probability": 0.65087890625}, {"start": 1267.79, "end": 1267.89, "word": " than", "probability": 0.6904296875}, {"start": 1267.89, "end": 1268.17, "word": " one", "probability": 0.88525390625}, {"start": 1268.17, "end": 1268.19, "word": " type?", "probability": 0.487548828125}, {"start": 1268.65, "end": 1269.13, "word": " It", "probability": 0.28515625}, {"start": 1269.13, "end": 1269.29, "word": " will", "probability": 0.80322265625}, {"start": 1269.29, "end": 1269.35, "word": " be", "probability": 0.27099609375}, {"start": 1269.35, "end": 1269.55, "word": " clear", "probability": 0.460693359375}, {"start": 1269.55, "end": 1269.67, "word": " to", "probability": 0.348388671875}, {"start": 1269.67, "end": 1269.83, "word": " you", "probability": 0.939453125}, {"start": 1269.83, "end": 1269.95, "word": " when", "probability": 0.658203125}, {"start": 1269.95, "end": 1270.11, "word": " you", "probability": 0.93115234375}, {"start": 1270.11, "end": 1270.27, "word": " take", "probability": 0.434326171875}, {"start": 1270.27, "end": 1270.35, "word": " it", "probability": 0.412109375}, {"start": 1270.35, "end": 1270.39, "word": " in", "probability": 0.74853515625}, {"start": 1270.39, "end": 1271.01, "word": " GUI", "probability": 0.818359375}, {"start": 1271.01, "end": 1271.61, "word": " Sometimes", "probability": 0.352294921875}, {"start": 1271.61, "end": 1271.75, "word": " you", "probability": 0.292236328125}, {"start": 1271.75, "end": 1271.85, "word": " want", "probability": 0.4111328125}, {"start": 1271.85, "end": 1271.85, "word": " to", "probability": 0.71875}, {"start": 1271.85, "end": 1272.09, "word": " make", "probability": 0.378662109375}, {"start": 1272.09, "end": 1273.15, "word": " the", "probability": 0.6484375}, {"start": 1273.15, "end": 1273.45, "word": " frame", "probability": 0.35888671875}, {"start": 1273.45, "end": 1273.83, "word": " or", "probability": 0.50732421875}, {"start": 1273.83, "end": 1274.01, "word": " the", "probability": 0.4775390625}, {"start": 1274.01, "end": 1274.33, "word": " screen", "probability": 0.84228515625}, {"start": 1274.33, "end": 1275.15, "word": " listen", "probability": 0.28369140625}, {"start": 1275.15, "end": 1275.75, "word": " to", "probability": 0.86376953125}, {"start": 1275.75, "end": 1275.87, "word": " the", "probability": 0.476318359375}, {"start": 1275.87, "end": 1276.73, "word": " mouse", "probability": 0.90087890625}, {"start": 1276.73, "end": 1276.73, "word": " click", "probability": 0.1298828125}, {"start": 1276.73, "end": 1276.95, "word": " or", "probability": 0.69970703125}, {"start": 1276.95, "end": 1277.81, "word": " the", "probability": 0.607421875}, {"start": 1277.81, "end": 1277.81, "word": " keyboard", "probability": 0.467529296875}, {"start": 1277.81, "end": 1278.07, "word": " click", "probability": 0.2049560546875}, {"start": 1278.07, "end": 1279.93, "word": " So", "probability": 0.44580078125}, {"start": 1279.93, "end": 1280.07, "word": " he", "probability": 0.4365234375}, {"start": 1280.07, "end": 1280.19, "word": " wants", "probability": 0.496337890625}, {"start": 1280.19, "end": 1280.23, "word": " to", "probability": 0.96435546875}, {"start": 1280.23, "end": 1280.37, "word": " do", "probability": 0.460693359375}, {"start": 1280.37, "end": 1280.59, "word": " less", "probability": 0.401611328125}, {"start": 1280.59, "end": 1280.71, "word": " than", "probability": 0.8349609375}, {"start": 1280.71, "end": 1280.95, "word": " two", "probability": 0.23681640625}, {"start": 1280.95, "end": 1281.67, "word": " things", "probability": 0.7666015625}, {"start": 1281.67, "end": 1282.91, "word": " So", "probability": 0.399169921875}, {"start": 1282.91, "end": 1283.09, "word": " you", "probability": 0.62255859375}, {"start": 1283.09, "end": 1283.19, "word": " want", "probability": 0.79345703125}, {"start": 1283.19, "end": 1283.19, "word": " to", "probability": 0.9140625}, {"start": 1283.19, "end": 1283.45, "word": " make", "probability": 0.876953125}, {"start": 1283.45, "end": 1285.31, "word": " the", "probability": 0.80126953125}, {"start": 1285.31, "end": 1285.57, "word": " frame", "probability": 0.548828125}, {"start": 1285.57, "end": 1286.09, "word": " or", "probability": 0.8076171875}, {"start": 1286.09, "end": 1286.25, "word": " the", "probability": 0.853515625}, {"start": 1286.25, "end": 1286.47, "word": " screen", "probability": 0.86279296875}, {"start": 1286.47, "end": 1287.29, "word": " listen", "probability": 0.65087890625}, {"start": 1287.29, "end": 1287.89, "word": " to", "probability": 0.82568359375}, {"start": 1287.89, "end": 1288.09, "word": " take", "probability": 0.47509765625}, {"start": 1288.09, "end": 1288.41, "word": " two", "probability": 0.90673828125}, {"start": 1288.41, "end": 1288.41, "word": " types", "probability": 0.763671875}, {"start": 1288.41, "end": 1289.19, "word": " One", "probability": 0.45703125}, {"start": 1289.19, "end": 1289.39, "word": " type", "probability": 0.72412109375}, {"start": 1289.39, "end": 1289.63, "word": " is", "probability": 0.701171875}, {"start": 1289.63, "end": 1290.31, "word": " mouse", "probability": 0.55078125}, {"start": 1290.31, "end": 1290.67, "word": " listener", "probability": 0.8046875}, {"start": 1290.67, "end": 1290.91, "word": " and", "probability": 0.8037109375}, {"start": 1290.91, "end": 1291.15, "word": " the", "probability": 0.390869140625}, {"start": 1291.15, "end": 1291.15, "word": " other", "probability": 0.8388671875}, {"start": 1291.15, "end": 1291.23, "word": " type", "probability": 0.53857421875}, {"start": 1291.23, "end": 1291.65, "word": " is", "probability": 0.806640625}, {"start": 1291.65, "end": 1291.89, "word": " button", "probability": 0.90771484375}, {"start": 1291.89, "end": 1292.15, "word": " listener", "probability": 0.82861328125}], "temperature": 1.0}, {"id": 51, "seek": 131820, "start": 1293.88, "end": 1318.2, "text": "automatically the device will put them in a tool list so that if the mouse is pressed or the button is pressed, it will ask for it. This will show up in front of you. But this is an important difference that I can implement more than one interface, but I can extend it to one class. In short, we make the class to unite the types of things that do not exist between them. And if the class does not have a common code, it is immediately converted to an interface.", "tokens": [1375, 298, 5030, 264, 4302, 486, 829, 552, 294, 257, 2290, 1329, 370, 300, 498, 264, 9719, 307, 17355, 420, 264, 2960, 307, 17355, 11, 309, 486, 1029, 337, 309, 13, 639, 486, 855, 493, 294, 1868, 295, 291, 13, 583, 341, 307, 364, 1021, 2649, 300, 286, 393, 4445, 544, 813, 472, 9226, 11, 457, 286, 393, 10101, 309, 281, 472, 1508, 13, 682, 2099, 11, 321, 652, 264, 1508, 281, 29320, 264, 3467, 295, 721, 300, 360, 406, 2514, 1296, 552, 13, 400, 498, 264, 1508, 775, 406, 362, 257, 2689, 3089, 11, 309, 307, 4258, 16424, 281, 364, 9226, 13], "avg_logprob": -0.4903846033490621, "compression_ratio": 1.7238805970149254, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1293.8799999999999, "end": 1294.28, "word": "automatically", "probability": 0.5691935221354166}, {"start": 1294.28, "end": 1294.68, "word": " the", "probability": 0.2646484375}, {"start": 1294.68, "end": 1294.92, "word": " device", "probability": 0.5234375}, {"start": 1294.92, "end": 1295.08, "word": " will", "probability": 0.30029296875}, {"start": 1295.08, "end": 1295.28, "word": " put", "probability": 0.40673828125}, {"start": 1295.28, "end": 1295.38, "word": " them", "probability": 0.7548828125}, {"start": 1295.38, "end": 1295.48, "word": " in", "probability": 0.7392578125}, {"start": 1295.48, "end": 1295.6, "word": " a", "probability": 0.7041015625}, {"start": 1295.6, "end": 1295.64, "word": " tool", "probability": 0.56787109375}, {"start": 1295.64, "end": 1296.04, "word": " list", "probability": 0.8115234375}, {"start": 1296.04, "end": 1296.3, "word": " so", "probability": 0.251953125}, {"start": 1296.3, "end": 1296.48, "word": " that", "probability": 0.65283203125}, {"start": 1296.48, "end": 1296.64, "word": " if", "probability": 0.5947265625}, {"start": 1296.64, "end": 1297.14, "word": " the", "probability": 0.321044921875}, {"start": 1297.14, "end": 1297.38, "word": " mouse", "probability": 0.85986328125}, {"start": 1297.38, "end": 1297.38, "word": " is", "probability": 0.4619140625}, {"start": 1297.38, "end": 1297.38, "word": " pressed", "probability": 0.611328125}, {"start": 1297.38, "end": 1297.54, "word": " or", "probability": 0.74853515625}, {"start": 1297.54, "end": 1297.98, "word": " the", "probability": 0.611328125}, {"start": 1297.98, "end": 1298.28, "word": " button", "probability": 0.619140625}, {"start": 1298.28, "end": 1298.28, "word": " is", "probability": 0.85595703125}, {"start": 1298.28, "end": 1298.28, "word": " pressed,", "probability": 0.68994140625}, {"start": 1299.32, "end": 1299.36, "word": " it", "probability": 0.5537109375}, {"start": 1299.36, "end": 1299.46, "word": " will", "probability": 0.6005859375}, {"start": 1299.46, "end": 1299.72, "word": " ask", "probability": 0.09521484375}, {"start": 1299.72, "end": 1299.94, "word": " for", "probability": 0.66552734375}, {"start": 1299.94, "end": 1299.94, "word": " it.", "probability": 0.59912109375}, {"start": 1300.22, "end": 1300.62, "word": " This", "probability": 0.22607421875}, {"start": 1300.62, "end": 1300.76, "word": " will", "probability": 0.529296875}, {"start": 1300.76, "end": 1300.98, "word": " show", "probability": 0.249267578125}, {"start": 1300.98, "end": 1301.06, "word": " up", "probability": 0.52490234375}, {"start": 1301.06, "end": 1301.64, "word": " in", "probability": 0.56396484375}, {"start": 1301.64, "end": 1302.1, "word": " front", "probability": 0.921875}, {"start": 1302.1, "end": 1302.1, "word": " of", "probability": 0.80078125}, {"start": 1302.1, "end": 1302.24, "word": " you.", "probability": 0.9228515625}, {"start": 1302.26, "end": 1302.38, "word": " But", "probability": 0.6318359375}, {"start": 1302.38, "end": 1302.52, "word": " this", "probability": 0.86376953125}, {"start": 1302.52, "end": 1302.56, "word": " is", "probability": 0.91455078125}, {"start": 1302.56, "end": 1302.88, "word": " an", "probability": 0.82373046875}, {"start": 1302.88, "end": 1303.0, "word": " important", "probability": 0.86181640625}, {"start": 1303.0, "end": 1303.0, "word": " difference", "probability": 0.81982421875}, {"start": 1303.0, "end": 1303.36, "word": " that", "probability": 0.51611328125}, {"start": 1303.36, "end": 1304.14, "word": " I", "probability": 0.91650390625}, {"start": 1304.14, "end": 1304.34, "word": " can", "probability": 0.91162109375}, {"start": 1304.34, "end": 1304.98, "word": " implement", "probability": 0.73095703125}, {"start": 1304.98, "end": 1305.32, "word": " more", "probability": 0.64697265625}, {"start": 1305.32, "end": 1305.52, "word": " than", "probability": 0.9228515625}, {"start": 1305.52, "end": 1305.62, "word": " one", "probability": 0.662109375}, {"start": 1305.62, "end": 1305.98, "word": " interface,", "probability": 0.8955078125}, {"start": 1306.1, "end": 1306.18, "word": " but", "probability": 0.57373046875}, {"start": 1306.18, "end": 1306.3, "word": " I", "probability": 0.931640625}, {"start": 1306.3, "end": 1306.44, "word": " can", "probability": 0.94189453125}, {"start": 1306.44, "end": 1306.88, "word": " extend", "probability": 0.84716796875}, {"start": 1306.88, "end": 1307.08, "word": " it", "probability": 0.409423828125}, {"start": 1307.08, "end": 1307.1, "word": " to", "probability": 0.89208984375}, {"start": 1307.1, "end": 1307.14, "word": " one", "probability": 0.5234375}, {"start": 1307.14, "end": 1308.28, "word": " class.", "probability": 0.9716796875}, {"start": 1308.54, "end": 1308.84, "word": " In", "probability": 0.72705078125}, {"start": 1308.84, "end": 1309.22, "word": " short,", "probability": 0.86474609375}, {"start": 1309.46, "end": 1309.64, "word": " we", "probability": 0.9208984375}, {"start": 1309.64, "end": 1309.94, "word": " make", "probability": 0.47216796875}, {"start": 1309.94, "end": 1310.12, "word": " the", "probability": 0.456787109375}, {"start": 1310.12, "end": 1310.34, "word": " class", "probability": 0.9638671875}, {"start": 1310.34, "end": 1310.58, "word": " to", "probability": 0.86767578125}, {"start": 1310.58, "end": 1311.0, "word": " unite", "probability": 0.27099609375}, {"start": 1311.0, "end": 1311.4, "word": " the", "probability": 0.43017578125}, {"start": 1311.4, "end": 1311.56, "word": " types", "probability": 0.51318359375}, {"start": 1311.56, "end": 1311.72, "word": " of", "probability": 0.951171875}, {"start": 1311.72, "end": 1312.04, "word": " things", "probability": 0.72802734375}, {"start": 1312.04, "end": 1312.22, "word": " that", "probability": 0.791015625}, {"start": 1312.22, "end": 1312.34, "word": " do", "probability": 0.406005859375}, {"start": 1312.34, "end": 1312.36, "word": " not", "probability": 0.947265625}, {"start": 1312.36, "end": 1312.4, "word": " exist", "probability": 0.333251953125}, {"start": 1312.4, "end": 1312.58, "word": " between", "probability": 0.54296875}, {"start": 1312.58, "end": 1312.76, "word": " them.", "probability": 0.77490234375}, {"start": 1313.58, "end": 1313.92, "word": " And", "probability": 0.4111328125}, {"start": 1313.92, "end": 1314.1, "word": " if", "probability": 0.95068359375}, {"start": 1314.1, "end": 1314.48, "word": " the", "probability": 0.81787109375}, {"start": 1314.48, "end": 1314.74, "word": " class", "probability": 0.96240234375}, {"start": 1314.74, "end": 1314.9, "word": " does", "probability": 0.82568359375}, {"start": 1314.9, "end": 1314.96, "word": " not", "probability": 0.9423828125}, {"start": 1314.96, "end": 1315.08, "word": " have", "probability": 0.8291015625}, {"start": 1315.08, "end": 1315.22, "word": " a", "probability": 0.826171875}, {"start": 1315.22, "end": 1315.6, "word": " common", "probability": 0.411376953125}, {"start": 1315.6, "end": 1315.62, "word": " code,", "probability": 0.91357421875}, {"start": 1315.8, "end": 1315.96, "word": " it", "probability": 0.290283203125}, {"start": 1315.96, "end": 1316.08, "word": " is", "probability": 0.40771484375}, {"start": 1316.08, "end": 1316.08, "word": " immediately", "probability": 0.374755859375}, {"start": 1316.08, "end": 1316.36, "word": " converted", "probability": 0.60107421875}, {"start": 1316.36, "end": 1317.7, "word": " to", "probability": 0.873046875}, {"start": 1317.7, "end": 1317.8, "word": " an", "probability": 0.51708984375}, {"start": 1317.8, "end": 1318.2, "word": " interface.", "probability": 0.87939453125}], "temperature": 1.0}, {"id": 52, "seek": 134666, "start": 1319.24, "end": 1346.66, "text": "Okay? The main thing that I benefited from it is that this code that does loop and executes will not change at all. Even if you add new tasks, you have to make a new class. But that's it, you add it to this list, and it does the loop and executes. Okay? Yes, who has a question? If it was the same method, but there are things that have changed. For example, the return value disappeared in all the elements.", "tokens": [8297, 30, 440, 2135, 551, 300, 286, 33605, 490, 309, 307, 300, 341, 3089, 300, 775, 6367, 293, 4454, 1819, 486, 406, 1319, 412, 439, 13, 2754, 498, 291, 909, 777, 9608, 11, 291, 362, 281, 652, 257, 777, 1508, 13, 583, 300, 311, 309, 11, 291, 909, 309, 281, 341, 1329, 11, 293, 309, 775, 264, 6367, 293, 4454, 1819, 13, 1033, 30, 1079, 11, 567, 575, 257, 1168, 30, 759, 309, 390, 264, 912, 3170, 11, 457, 456, 366, 721, 300, 362, 3105, 13, 1171, 1365, 11, 264, 2736, 2158, 13954, 294, 439, 264, 4959, 13], "avg_logprob": -0.530303013445151, "compression_ratio": 1.619047619047619, "no_speech_prob": 1.7940998077392578e-05, "words": [{"start": 1319.24, "end": 1319.68, "word": "Okay?", "probability": 0.1077880859375}, {"start": 1320.68, "end": 1321.12, "word": " The", "probability": 0.383056640625}, {"start": 1321.12, "end": 1321.32, "word": " main", "probability": 0.70751953125}, {"start": 1321.32, "end": 1321.44, "word": " thing", "probability": 0.77001953125}, {"start": 1321.44, "end": 1321.64, "word": " that", "probability": 0.4541015625}, {"start": 1321.64, "end": 1321.74, "word": " I", "probability": 0.884765625}, {"start": 1321.74, "end": 1322.08, "word": " benefited", "probability": 0.1785888671875}, {"start": 1322.08, "end": 1322.28, "word": " from", "probability": 0.85595703125}, {"start": 1322.28, "end": 1322.42, "word": " it", "probability": 0.4765625}, {"start": 1322.42, "end": 1322.58, "word": " is", "probability": 0.451171875}, {"start": 1322.58, "end": 1322.72, "word": " that", "probability": 0.7333984375}, {"start": 1322.72, "end": 1323.6, "word": " this", "probability": 0.57666015625}, {"start": 1323.6, "end": 1324.02, "word": " code", "probability": 0.89453125}, {"start": 1324.02, "end": 1324.16, "word": " that", "probability": 0.560546875}, {"start": 1324.16, "end": 1324.38, "word": " does", "probability": 0.2471923828125}, {"start": 1324.38, "end": 1324.7, "word": " loop", "probability": 0.74609375}, {"start": 1324.7, "end": 1324.82, "word": " and", "probability": 0.78857421875}, {"start": 1324.82, "end": 1325.32, "word": " executes", "probability": 0.55694580078125}, {"start": 1325.32, "end": 1326.36, "word": " will", "probability": 0.51904296875}, {"start": 1326.36, "end": 1326.6, "word": " not", "probability": 0.73046875}, {"start": 1326.6, "end": 1326.96, "word": " change", "probability": 0.84765625}, {"start": 1326.96, "end": 1327.12, "word": " at", "probability": 0.798828125}, {"start": 1327.12, "end": 1327.42, "word": " all.", "probability": 0.94677734375}, {"start": 1327.48, "end": 1327.74, "word": " Even", "probability": 0.77685546875}, {"start": 1327.74, "end": 1327.9, "word": " if", "probability": 0.9169921875}, {"start": 1327.9, "end": 1328.22, "word": " you", "probability": 0.923828125}, {"start": 1328.22, "end": 1328.22, "word": " add", "probability": 0.69873046875}, {"start": 1328.22, "end": 1328.48, "word": " new", "probability": 0.82373046875}, {"start": 1328.48, "end": 1328.78, "word": " tasks,", "probability": 0.71240234375}, {"start": 1329.5, "end": 1329.74, "word": " you", "probability": 0.68212890625}, {"start": 1329.74, "end": 1329.82, "word": " have", "probability": 0.338623046875}, {"start": 1329.82, "end": 1329.98, "word": " to", "probability": 0.9677734375}, {"start": 1329.98, "end": 1330.24, "word": " make", "probability": 0.361083984375}, {"start": 1330.24, "end": 1330.34, "word": " a", "probability": 0.76806640625}, {"start": 1330.34, "end": 1330.34, "word": " new", "probability": 0.908203125}, {"start": 1330.34, "end": 1330.64, "word": " class.", "probability": 0.974609375}, {"start": 1331.46, "end": 1331.66, "word": " But", "probability": 0.623046875}, {"start": 1331.66, "end": 1331.82, "word": " that's", "probability": 0.584716796875}, {"start": 1331.82, "end": 1331.88, "word": " it,", "probability": 0.74169921875}, {"start": 1331.94, "end": 1332.04, "word": " you", "probability": 0.496826171875}, {"start": 1332.04, "end": 1332.24, "word": " add", "probability": 0.79345703125}, {"start": 1332.24, "end": 1332.32, "word": " it", "probability": 0.263427734375}, {"start": 1332.32, "end": 1332.4, "word": " to", "probability": 0.6953125}, {"start": 1332.4, "end": 1332.5, "word": " this", "probability": 0.56640625}, {"start": 1332.5, "end": 1333.0, "word": " list,", "probability": 0.9228515625}, {"start": 1334.1, "end": 1334.2, "word": " and", "probability": 0.5615234375}, {"start": 1334.2, "end": 1334.32, "word": " it", "probability": 0.85546875}, {"start": 1334.32, "end": 1334.54, "word": " does", "probability": 0.662109375}, {"start": 1334.54, "end": 1334.74, "word": " the", "probability": 0.52392578125}, {"start": 1334.74, "end": 1335.08, "word": " loop", "probability": 0.96728515625}, {"start": 1335.08, "end": 1335.42, "word": " and", "probability": 0.8798828125}, {"start": 1335.42, "end": 1335.78, "word": " executes.", "probability": 0.892333984375}, {"start": 1336.66, "end": 1336.94, "word": " Okay?", "probability": 0.70166015625}, {"start": 1337.86, "end": 1338.02, "word": " Yes,", "probability": 0.63427734375}, {"start": 1338.1, "end": 1338.18, "word": " who", "probability": 0.52294921875}, {"start": 1338.18, "end": 1338.3, "word": " has", "probability": 0.884765625}, {"start": 1338.3, "end": 1338.4, "word": " a", "probability": 0.9560546875}, {"start": 1338.4, "end": 1338.6, "word": " question?", "probability": 0.91845703125}, {"start": 1339.54, "end": 1339.98, "word": " If", "probability": 0.2265625}, {"start": 1339.98, "end": 1340.2, "word": " it", "probability": 0.315673828125}, {"start": 1340.2, "end": 1340.34, "word": " was", "probability": 0.403076171875}, {"start": 1340.34, "end": 1340.56, "word": " the", "probability": 0.475830078125}, {"start": 1340.56, "end": 1340.88, "word": " same", "probability": 0.92041015625}, {"start": 1340.88, "end": 1341.4, "word": " method,", "probability": 0.9423828125}, {"start": 1341.74, "end": 1342.34, "word": " but", "probability": 0.38525390625}, {"start": 1342.34, "end": 1342.78, "word": " there", "probability": 0.331298828125}, {"start": 1342.78, "end": 1342.88, "word": " are", "probability": 0.71533203125}, {"start": 1342.88, "end": 1343.1, "word": " things", "probability": 0.45068359375}, {"start": 1343.1, "end": 1343.26, "word": " that", "probability": 0.88232421875}, {"start": 1343.26, "end": 1343.4, "word": " have", "probability": 0.447021484375}, {"start": 1343.4, "end": 1343.54, "word": " changed.", "probability": 0.890625}, {"start": 1343.68, "end": 1343.88, "word": " For", "probability": 0.87109375}, {"start": 1343.88, "end": 1344.12, "word": " example,", "probability": 0.96044921875}, {"start": 1344.2, "end": 1344.3, "word": " the", "probability": 0.80615234375}, {"start": 1344.3, "end": 1344.54, "word": " return", "probability": 0.260986328125}, {"start": 1344.54, "end": 1345.08, "word": " value", "probability": 0.97119140625}, {"start": 1345.08, "end": 1345.9, "word": " disappeared", "probability": 0.25830078125}, {"start": 1345.9, "end": 1346.12, "word": " in", "probability": 0.329345703125}, {"start": 1346.12, "end": 1346.32, "word": " all", "probability": 0.56982421875}, {"start": 1346.32, "end": 1346.4, "word": " the", "probability": 0.51123046875}, {"start": 1346.4, "end": 1346.66, "word": " elements.", "probability": 0.08599853515625}], "temperature": 1.0}, {"id": 53, "seek": 137521, "start": 1347.49, "end": 1375.21, "text": " No, you have to design in a way that everyone follows the same method. Okay? Is there a generic solution? There are solutions. I mean, you have to benefit or try to design the code in a way that there are no differences. Okay? The differences are treated in other ways according to the nature of the program. But our goal is that everyone has execute. To execute. Okay, guys?", "tokens": [883, 11, 291, 362, 281, 1715, 294, 257, 636, 300, 1518, 10002, 264, 912, 3170, 13, 1033, 30, 1119, 456, 257, 19577, 3827, 30, 821, 366, 6547, 13, 286, 914, 11, 291, 362, 281, 5121, 420, 853, 281, 1715, 264, 3089, 294, 257, 636, 300, 456, 366, 572, 7300, 13, 1033, 30, 440, 7300, 366, 8668, 294, 661, 2098, 4650, 281, 264, 3687, 295, 264, 1461, 13, 583, 527, 3387, 307, 300, 1518, 575, 14483, 13, 1407, 14483, 13, 1033, 11, 1074, 30], "avg_logprob": -0.4412202469649769, "compression_ratio": 1.7652582159624413, "no_speech_prob": 6.318092346191406e-06, "words": [{"start": 1347.49, "end": 1347.97, "word": " No,", "probability": 0.60693359375}, {"start": 1347.97, "end": 1348.45, "word": " you", "probability": 0.79736328125}, {"start": 1348.45, "end": 1348.59, "word": " have", "probability": 0.2310791015625}, {"start": 1348.59, "end": 1348.59, "word": " to", "probability": 0.962890625}, {"start": 1348.59, "end": 1348.87, "word": " design", "probability": 0.880859375}, {"start": 1348.87, "end": 1349.09, "word": " in", "probability": 0.330810546875}, {"start": 1349.09, "end": 1349.53, "word": " a", "probability": 0.849609375}, {"start": 1349.53, "end": 1349.53, "word": " way", "probability": 0.92236328125}, {"start": 1349.53, "end": 1350.53, "word": " that", "probability": 0.55419921875}, {"start": 1350.53, "end": 1350.95, "word": " everyone", "probability": 0.6796875}, {"start": 1350.95, "end": 1351.33, "word": " follows", "probability": 0.671875}, {"start": 1351.33, "end": 1351.49, "word": " the", "probability": 0.89892578125}, {"start": 1351.49, "end": 1351.59, "word": " same", "probability": 0.8662109375}, {"start": 1351.59, "end": 1352.03, "word": " method.", "probability": 0.89013671875}, {"start": 1352.83, "end": 1353.05, "word": " Okay?", "probability": 0.21435546875}, {"start": 1353.15, "end": 1353.15, "word": " Is", "probability": 0.07373046875}, {"start": 1353.15, "end": 1353.37, "word": " there", "probability": 0.771484375}, {"start": 1353.37, "end": 1353.37, "word": " a", "probability": 0.58740234375}, {"start": 1353.37, "end": 1353.91, "word": " generic", "probability": 0.438232421875}, {"start": 1353.91, "end": 1353.91, "word": " solution?", "probability": 0.7001953125}, {"start": 1355.79, "end": 1356.27, "word": " There", "probability": 0.646484375}, {"start": 1356.27, "end": 1356.35, "word": " are", "probability": 0.79296875}, {"start": 1356.35, "end": 1356.71, "word": " solutions.", "probability": 0.88427734375}, {"start": 1356.97, "end": 1356.97, "word": " I", "probability": 0.342529296875}, {"start": 1356.97, "end": 1357.15, "word": " mean,", "probability": 0.96875}, {"start": 1357.27, "end": 1360.89, "word": " you", "probability": 0.78955078125}, {"start": 1360.89, "end": 1361.09, "word": " have", "probability": 0.58349609375}, {"start": 1361.09, "end": 1361.23, "word": " to", "probability": 0.974609375}, {"start": 1361.23, "end": 1361.65, "word": " benefit", "probability": 0.220703125}, {"start": 1361.65, "end": 1361.89, "word": " or", "probability": 0.498046875}, {"start": 1361.89, "end": 1362.47, "word": " try", "probability": 0.67822265625}, {"start": 1362.47, "end": 1362.71, "word": " to", "probability": 0.9375}, {"start": 1362.71, "end": 1362.95, "word": " design", "probability": 0.9814453125}, {"start": 1362.95, "end": 1363.17, "word": " the", "probability": 0.83447265625}, {"start": 1363.17, "end": 1363.51, "word": " code", "probability": 0.93701171875}, {"start": 1363.51, "end": 1363.71, "word": " in", "probability": 0.377197265625}, {"start": 1363.71, "end": 1363.75, "word": " a", "probability": 0.64990234375}, {"start": 1363.75, "end": 1363.93, "word": " way", "probability": 0.94140625}, {"start": 1363.93, "end": 1364.11, "word": " that", "probability": 0.88720703125}, {"start": 1364.11, "end": 1364.47, "word": " there", "probability": 0.73193359375}, {"start": 1364.47, "end": 1364.47, "word": " are", "probability": 0.60693359375}, {"start": 1364.47, "end": 1364.47, "word": " no", "probability": 0.9248046875}, {"start": 1364.47, "end": 1364.81, "word": " differences.", "probability": 0.626953125}, {"start": 1365.43, "end": 1365.91, "word": " Okay?", "probability": 0.7861328125}, {"start": 1366.79, "end": 1367.09, "word": " The", "probability": 0.61328125}, {"start": 1367.09, "end": 1367.31, "word": " differences", "probability": 0.72216796875}, {"start": 1367.31, "end": 1367.47, "word": " are", "probability": 0.533203125}, {"start": 1367.47, "end": 1367.71, "word": " treated", "probability": 0.481201171875}, {"start": 1367.71, "end": 1367.83, "word": " in", "probability": 0.57861328125}, {"start": 1367.83, "end": 1368.31, "word": " other", "probability": 0.60595703125}, {"start": 1368.31, "end": 1368.33, "word": " ways", "probability": 0.90283203125}, {"start": 1368.33, "end": 1368.75, "word": " according", "probability": 0.4951171875}, {"start": 1368.75, "end": 1369.05, "word": " to", "probability": 0.970703125}, {"start": 1369.05, "end": 1369.05, "word": " the", "probability": 0.8828125}, {"start": 1369.05, "end": 1369.29, "word": " nature", "probability": 0.9404296875}, {"start": 1369.29, "end": 1369.45, "word": " of", "probability": 0.97265625}, {"start": 1369.45, "end": 1369.51, "word": " the", "probability": 0.91552734375}, {"start": 1369.51, "end": 1369.81, "word": " program.", "probability": 0.82373046875}, {"start": 1370.01, "end": 1370.19, "word": " But", "probability": 0.81884765625}, {"start": 1370.19, "end": 1370.65, "word": " our", "probability": 0.81494140625}, {"start": 1370.65, "end": 1371.01, "word": " goal", "probability": 0.8974609375}, {"start": 1371.01, "end": 1371.25, "word": " is", "probability": 0.94482421875}, {"start": 1371.25, "end": 1371.35, "word": " that", "probability": 0.81982421875}, {"start": 1371.35, "end": 1371.67, "word": " everyone", "probability": 0.92529296875}, {"start": 1371.67, "end": 1372.03, "word": " has", "probability": 0.58349609375}, {"start": 1372.03, "end": 1372.51, "word": " execute.", "probability": 0.37939453125}, {"start": 1373.05, "end": 1373.25, "word": " To", "probability": 0.40283203125}, {"start": 1373.25, "end": 1373.47, "word": " execute.", "probability": 0.6806640625}, {"start": 1374.43, "end": 1374.91, "word": " Okay,", "probability": 0.71728515625}, {"start": 1374.97, "end": 1375.21, "word": " guys?", "probability": 0.8271484375}], "temperature": 1.0}, {"id": 54, "seek": 139627, "start": 1376.95, "end": 1396.27, "text": "Okay, this is an example to show the usefulness of the interface that unites between types of things without building a common thing. We also want to take another example. Maybe this example is more practical than this example. Pay attention to me. Now I want to make a simple program that looks like this.", "tokens": [8297, 11, 341, 307, 364, 1365, 281, 855, 264, 4420, 1287, 295, 264, 9226, 300, 517, 3324, 1296, 3467, 295, 721, 1553, 2390, 257, 2689, 551, 13, 492, 611, 528, 281, 747, 1071, 1365, 13, 2704, 341, 1365, 307, 544, 8496, 813, 341, 1365, 13, 11431, 3202, 281, 385, 13, 823, 286, 528, 281, 652, 257, 2199, 1461, 300, 1542, 411, 341, 13], "avg_logprob": -0.4863281180150807, "compression_ratio": 1.6020942408376964, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1376.95, "end": 1377.29, "word": "Okay,", "probability": 0.17138671875}, {"start": 1377.35, "end": 1377.59, "word": " this", "probability": 0.71142578125}, {"start": 1377.59, "end": 1377.63, "word": " is", "probability": 0.437255859375}, {"start": 1377.63, "end": 1378.07, "word": " an", "probability": 0.81201171875}, {"start": 1378.07, "end": 1378.07, "word": " example", "probability": 0.978515625}, {"start": 1378.07, "end": 1378.91, "word": " to", "probability": 0.7724609375}, {"start": 1378.91, "end": 1379.25, "word": " show", "probability": 0.54541015625}, {"start": 1379.25, "end": 1379.43, "word": " the", "probability": 0.422607421875}, {"start": 1379.43, "end": 1379.67, "word": " usefulness", "probability": 0.5281982421875}, {"start": 1379.67, "end": 1379.77, "word": " of", "probability": 0.95849609375}, {"start": 1379.77, "end": 1379.79, "word": " the", "probability": 0.404052734375}, {"start": 1379.79, "end": 1380.25, "word": " interface", "probability": 0.81591796875}, {"start": 1380.25, "end": 1380.39, "word": " that", "probability": 0.1571044921875}, {"start": 1380.39, "end": 1380.71, "word": " unites", "probability": 0.6953125}, {"start": 1380.71, "end": 1380.99, "word": " between", "probability": 0.3642578125}, {"start": 1380.99, "end": 1381.29, "word": " types", "probability": 0.361083984375}, {"start": 1381.29, "end": 1381.37, "word": " of", "probability": 0.955078125}, {"start": 1381.37, "end": 1381.65, "word": " things", "probability": 0.7099609375}, {"start": 1381.65, "end": 1381.89, "word": " without", "probability": 0.25244140625}, {"start": 1381.89, "end": 1382.11, "word": " building", "probability": 0.270751953125}, {"start": 1382.11, "end": 1382.25, "word": " a", "probability": 0.5595703125}, {"start": 1382.25, "end": 1383.31, "word": " common", "probability": 0.63525390625}, {"start": 1383.31, "end": 1383.33, "word": " thing.", "probability": 0.7392578125}, {"start": 1383.79, "end": 1384.17, "word": " We", "probability": 0.5986328125}, {"start": 1384.17, "end": 1384.33, "word": " also", "probability": 0.35400390625}, {"start": 1384.33, "end": 1384.33, "word": " want", "probability": 0.42578125}, {"start": 1384.33, "end": 1384.41, "word": " to", "probability": 0.94970703125}, {"start": 1384.41, "end": 1384.57, "word": " take", "probability": 0.814453125}, {"start": 1384.57, "end": 1384.87, "word": " another", "probability": 0.79931640625}, {"start": 1384.87, "end": 1385.23, "word": " example.", "probability": 0.96923828125}, {"start": 1385.47, "end": 1385.61, "word": " Maybe", "probability": 0.380126953125}, {"start": 1385.61, "end": 1385.77, "word": " this", "probability": 0.60400390625}, {"start": 1385.77, "end": 1385.99, "word": " example", "probability": 0.493896484375}, {"start": 1385.99, "end": 1386.39, "word": " is", "probability": 0.8642578125}, {"start": 1386.39, "end": 1386.53, "word": " more", "probability": 0.58984375}, {"start": 1386.53, "end": 1386.67, "word": " practical", "probability": 0.91845703125}, {"start": 1386.67, "end": 1387.95, "word": " than", "probability": 0.93359375}, {"start": 1387.95, "end": 1388.67, "word": " this", "probability": 0.69580078125}, {"start": 1388.67, "end": 1388.97, "word": " example.", "probability": 0.8115234375}, {"start": 1389.45, "end": 1389.61, "word": " Pay", "probability": 0.5927734375}, {"start": 1389.61, "end": 1389.75, "word": " attention", "probability": 0.9345703125}, {"start": 1389.75, "end": 1389.87, "word": " to", "probability": 0.6611328125}, {"start": 1389.87, "end": 1390.05, "word": " me.", "probability": 0.61279296875}, {"start": 1392.95, "end": 1393.43, "word": " Now", "probability": 0.9287109375}, {"start": 1393.43, "end": 1394.07, "word": " I", "probability": 0.642578125}, {"start": 1394.07, "end": 1394.27, "word": " want", "probability": 0.479736328125}, {"start": 1394.27, "end": 1394.27, "word": " to", "probability": 0.97021484375}, {"start": 1394.27, "end": 1394.39, "word": " make", "probability": 0.826171875}, {"start": 1394.39, "end": 1394.85, "word": " a", "probability": 0.91845703125}, {"start": 1394.85, "end": 1395.09, "word": " simple", "probability": 0.92529296875}, {"start": 1395.09, "end": 1395.25, "word": " program", "probability": 0.80810546875}, {"start": 1395.25, "end": 1395.61, "word": " that", "probability": 0.378173828125}, {"start": 1395.61, "end": 1395.79, "word": " looks", "probability": 0.84716796875}, {"start": 1395.79, "end": 1395.99, "word": " like", "probability": 0.93310546875}, {"start": 1395.99, "end": 1396.27, "word": " this.", "probability": 0.94091796875}], "temperature": 1.0}, {"id": 55, "seek": 142119, "start": 1398.11, "end": 1421.19, "text": " Pay attention to this screen. It is a very simple program. It is a drawing program. For example, there is a button called circle, rectangle, solid circle, clear and undo. When I click on circle, it draws dots randomly.", "tokens": [11431, 3202, 281, 341, 2568, 13, 467, 307, 257, 588, 2199, 1461, 13, 467, 307, 257, 6316, 1461, 13, 1171, 1365, 11, 456, 307, 257, 2960, 1219, 6329, 11, 21930, 11, 5100, 6329, 11, 1850, 293, 23779, 13, 1133, 286, 2052, 322, 6329, 11, 309, 20045, 15026, 16979, 13], "avg_logprob": -0.48000000476837157, "compression_ratio": 1.5, "no_speech_prob": 3.2186508178710938e-06, "words": [{"start": 1398.11, "end": 1398.59, "word": " Pay", "probability": 0.1087646484375}, {"start": 1398.59, "end": 1398.77, "word": " attention", "probability": 0.89990234375}, {"start": 1398.77, "end": 1398.93, "word": " to", "probability": 0.892578125}, {"start": 1398.93, "end": 1399.09, "word": " this", "probability": 0.3935546875}, {"start": 1399.09, "end": 1399.37, "word": " screen.", "probability": 0.62353515625}, {"start": 1400.67, "end": 1401.25, "word": " It", "probability": 0.479736328125}, {"start": 1401.25, "end": 1401.41, "word": " is", "probability": 0.560546875}, {"start": 1401.41, "end": 1401.41, "word": " a", "probability": 0.79248046875}, {"start": 1401.41, "end": 1401.41, "word": " very", "probability": 0.669921875}, {"start": 1401.41, "end": 1401.73, "word": " simple", "probability": 0.87939453125}, {"start": 1401.73, "end": 1401.79, "word": " program.", "probability": 0.65283203125}, {"start": 1402.49, "end": 1403.11, "word": " It", "probability": 0.439697265625}, {"start": 1403.11, "end": 1403.25, "word": " is", "probability": 0.8447265625}, {"start": 1403.25, "end": 1403.53, "word": " a", "probability": 0.71484375}, {"start": 1403.53, "end": 1404.13, "word": " drawing", "probability": 0.7490234375}, {"start": 1404.13, "end": 1404.75, "word": " program.", "probability": 0.78759765625}, {"start": 1405.11, "end": 1406.03, "word": " For", "probability": 0.24169921875}, {"start": 1406.03, "end": 1406.63, "word": " example,", "probability": 0.89208984375}, {"start": 1406.63, "end": 1406.71, "word": " there", "probability": 0.703125}, {"start": 1406.71, "end": 1406.91, "word": " is", "probability": 0.8173828125}, {"start": 1406.91, "end": 1407.37, "word": " a", "probability": 0.8671875}, {"start": 1407.37, "end": 1407.49, "word": " button", "probability": 0.75390625}, {"start": 1407.49, "end": 1407.69, "word": " called", "probability": 0.5869140625}, {"start": 1407.69, "end": 1408.15, "word": " circle,", "probability": 0.541015625}, {"start": 1408.43, "end": 1409.25, "word": " rectangle,", "probability": 0.8310546875}, {"start": 1410.41, "end": 1410.95, "word": " solid", "probability": 0.966796875}, {"start": 1410.95, "end": 1411.79, "word": " circle,", "probability": 0.9443359375}, {"start": 1412.89, "end": 1413.77, "word": " clear", "probability": 0.66650390625}, {"start": 1413.77, "end": 1414.27, "word": " and", "probability": 0.619140625}, {"start": 1414.27, "end": 1415.45, "word": " undo.", "probability": 0.93359375}, {"start": 1416.03, "end": 1416.63, "word": " When", "probability": 0.55322265625}, {"start": 1416.63, "end": 1416.79, "word": " I", "probability": 0.90380859375}, {"start": 1416.79, "end": 1416.93, "word": " click", "probability": 0.411376953125}, {"start": 1416.93, "end": 1417.13, "word": " on", "probability": 0.8330078125}, {"start": 1417.13, "end": 1417.57, "word": " circle,", "probability": 0.56005859375}, {"start": 1417.77, "end": 1417.77, "word": " it", "probability": 0.52392578125}, {"start": 1417.77, "end": 1418.39, "word": " draws", "probability": 0.301513671875}, {"start": 1418.39, "end": 1419.85, "word": " dots", "probability": 0.330078125}, {"start": 1419.85, "end": 1421.19, "word": " randomly.", "probability": 0.414306640625}], "temperature": 1.0}, {"id": 56, "seek": 143864, "start": 1422.58, "end": 1438.64, "text": " When I click on rectangle, it shows me rectangles. When I click on circle, it shows me circles that are filled with dots. Clear, what does it want to do? It wants to delete everything. Undo, it wants to return what was drawn. So, we want to create a program", "tokens": [1133, 286, 2052, 322, 21930, 11, 309, 3110, 385, 24077, 904, 13, 1133, 286, 2052, 322, 6329, 11, 309, 3110, 385, 13040, 300, 366, 6412, 365, 15026, 13, 14993, 11, 437, 775, 309, 528, 281, 360, 30, 467, 2738, 281, 12097, 1203, 13, 2719, 78, 11, 309, 2738, 281, 2736, 437, 390, 10117, 13, 407, 11, 321, 528, 281, 1884, 257, 1461], "avg_logprob": -0.5252976020177206, "compression_ratio": 1.664516129032258, "no_speech_prob": 6.556510925292969e-06, "words": [{"start": 1422.58, "end": 1422.86, "word": " When", "probability": 0.1929931640625}, {"start": 1422.86, "end": 1422.96, "word": " I", "probability": 0.6298828125}, {"start": 1422.96, "end": 1423.1, "word": " click", "probability": 0.22216796875}, {"start": 1423.1, "end": 1423.18, "word": " on", "probability": 0.8154296875}, {"start": 1423.18, "end": 1423.58, "word": " rectangle,", "probability": 0.5341796875}, {"start": 1423.74, "end": 1423.74, "word": " it", "probability": 0.59423828125}, {"start": 1423.74, "end": 1423.86, "word": " shows", "probability": 0.1268310546875}, {"start": 1423.86, "end": 1424.0, "word": " me", "probability": 0.65673828125}, {"start": 1424.0, "end": 1424.62, "word": " rectangles.", "probability": 0.940185546875}, {"start": 1425.1, "end": 1425.22, "word": " When", "probability": 0.623046875}, {"start": 1425.22, "end": 1425.22, "word": " I", "probability": 0.96875}, {"start": 1425.22, "end": 1425.34, "word": " click", "probability": 0.86279296875}, {"start": 1425.34, "end": 1425.42, "word": " on", "probability": 0.88525390625}, {"start": 1425.42, "end": 1425.74, "word": " circle,", "probability": 0.7333984375}, {"start": 1425.8, "end": 1425.88, "word": " it", "probability": 0.8798828125}, {"start": 1425.88, "end": 1426.08, "word": " shows", "probability": 0.8251953125}, {"start": 1426.08, "end": 1426.58, "word": " me", "probability": 0.91845703125}, {"start": 1426.58, "end": 1426.62, "word": " circles", "probability": 0.2274169921875}, {"start": 1426.62, "end": 1426.76, "word": " that", "probability": 0.1971435546875}, {"start": 1426.76, "end": 1426.76, "word": " are", "probability": 0.814453125}, {"start": 1426.76, "end": 1426.8, "word": " filled", "probability": 0.364013671875}, {"start": 1426.8, "end": 1426.8, "word": " with", "probability": 0.396728515625}, {"start": 1426.8, "end": 1427.1, "word": " dots.", "probability": 0.13525390625}, {"start": 1428.64, "end": 1429.0, "word": " Clear,", "probability": 0.291748046875}, {"start": 1429.24, "end": 1429.32, "word": " what", "probability": 0.7958984375}, {"start": 1429.32, "end": 1429.46, "word": " does", "probability": 0.57666015625}, {"start": 1429.46, "end": 1429.46, "word": " it", "probability": 0.8525390625}, {"start": 1429.46, "end": 1429.5, "word": " want", "probability": 0.53662109375}, {"start": 1429.5, "end": 1429.54, "word": " to", "probability": 0.9501953125}, {"start": 1429.54, "end": 1429.78, "word": " do?", "probability": 0.955078125}, {"start": 1430.34, "end": 1430.7, "word": " It", "probability": 0.7919921875}, {"start": 1430.7, "end": 1430.88, "word": " wants", "probability": 0.6669921875}, {"start": 1430.88, "end": 1430.94, "word": " to", "probability": 0.9677734375}, {"start": 1430.94, "end": 1431.12, "word": " delete", "probability": 0.451171875}, {"start": 1431.12, "end": 1431.62, "word": " everything.", "probability": 0.8994140625}, {"start": 1432.5, "end": 1432.86, "word": " Undo,", "probability": 0.864501953125}, {"start": 1433.78, "end": 1433.96, "word": " it", "probability": 0.7216796875}, {"start": 1433.96, "end": 1434.08, "word": " wants", "probability": 0.7666015625}, {"start": 1434.08, "end": 1434.14, "word": " to", "probability": 0.96923828125}, {"start": 1434.14, "end": 1434.34, "word": " return", "probability": 0.2626953125}, {"start": 1434.34, "end": 1434.56, "word": " what", "probability": 0.4873046875}, {"start": 1434.56, "end": 1436.64, "word": " was", "probability": 0.448486328125}, {"start": 1436.64, "end": 1436.94, "word": " drawn.", "probability": 0.7880859375}, {"start": 1437.44, "end": 1437.8, "word": " So,", "probability": 0.76220703125}, {"start": 1437.88, "end": 1437.98, "word": " we", "probability": 0.900390625}, {"start": 1437.98, "end": 1437.98, "word": " want", "probability": 0.414794921875}, {"start": 1437.98, "end": 1438.08, "word": " to", "probability": 0.97119140625}, {"start": 1438.08, "end": 1438.2, "word": " create", "probability": 0.50732421875}, {"start": 1438.2, "end": 1438.3, "word": " a", "probability": 0.97314453125}, {"start": 1438.3, "end": 1438.64, "word": " program", "probability": 0.849609375}], "temperature": 1.0}, {"id": 57, "seek": 146515, "start": 1440.77, "end": 1465.15, "text": "like this and we will see how using the interface will make a big difference in the design of the program first of all, we have to agree on certain things before we get into the design and code and so on because I am talking about drawing shapes and I want to delete these shapes and then return them this means that whatever shape I want to draw on the screen I have to store its information", "tokens": [4092, 341, 293, 321, 486, 536, 577, 1228, 264, 9226, 486, 652, 257, 955, 2649, 294, 264, 1715, 295, 264, 1461, 700, 295, 439, 11, 321, 362, 281, 3986, 322, 1629, 721, 949, 321, 483, 666, 264, 1715, 293, 3089, 293, 370, 322, 570, 286, 669, 1417, 466, 6316, 10854, 293, 286, 528, 281, 12097, 613, 10854, 293, 550, 2736, 552, 341, 1355, 300, 2035, 3909, 286, 528, 281, 2642, 322, 264, 2568, 286, 362, 281, 3531, 1080, 1589], "avg_logprob": -0.588281262665987, "compression_ratio": 1.7818181818181817, "no_speech_prob": 7.092952728271484e-06, "words": [{"start": 1440.77, "end": 1441.03, "word": "like", "probability": 0.07647705078125}, {"start": 1441.03, "end": 1441.53, "word": " this", "probability": 0.8115234375}, {"start": 1441.53, "end": 1441.67, "word": " and", "probability": 0.51025390625}, {"start": 1441.67, "end": 1441.77, "word": " we", "probability": 0.25927734375}, {"start": 1441.77, "end": 1441.77, "word": " will", "probability": 0.40283203125}, {"start": 1441.77, "end": 1441.97, "word": " see", "probability": 0.8134765625}, {"start": 1441.97, "end": 1442.33, "word": " how", "probability": 0.869140625}, {"start": 1442.33, "end": 1443.81, "word": " using", "probability": 0.25537109375}, {"start": 1443.81, "end": 1444.01, "word": " the", "probability": 0.572265625}, {"start": 1444.01, "end": 1444.53, "word": " interface", "probability": 0.78857421875}, {"start": 1444.53, "end": 1444.75, "word": " will", "probability": 0.61328125}, {"start": 1444.75, "end": 1445.03, "word": " make", "probability": 0.339111328125}, {"start": 1445.03, "end": 1445.03, "word": " a", "probability": 0.7998046875}, {"start": 1445.03, "end": 1445.03, "word": " big", "probability": 0.376953125}, {"start": 1445.03, "end": 1445.09, "word": " difference", "probability": 0.82421875}, {"start": 1445.09, "end": 1445.65, "word": " in", "probability": 0.51416015625}, {"start": 1445.65, "end": 1445.75, "word": " the", "probability": 0.1903076171875}, {"start": 1445.75, "end": 1446.03, "word": " design", "probability": 0.403076171875}, {"start": 1446.03, "end": 1446.89, "word": " of", "probability": 0.9267578125}, {"start": 1446.89, "end": 1446.97, "word": " the", "probability": 0.77490234375}, {"start": 1446.97, "end": 1447.31, "word": " program", "probability": 0.41455078125}, {"start": 1447.31, "end": 1448.31, "word": " first", "probability": 0.09381103515625}, {"start": 1448.31, "end": 1448.87, "word": " of", "probability": 0.3798828125}, {"start": 1448.87, "end": 1448.99, "word": " all,", "probability": 0.94775390625}, {"start": 1449.07, "end": 1449.07, "word": " we", "probability": 0.791015625}, {"start": 1449.07, "end": 1449.19, "word": " have", "probability": 0.20703125}, {"start": 1449.19, "end": 1449.23, "word": " to", "probability": 0.97119140625}, {"start": 1449.23, "end": 1449.49, "word": " agree", "probability": 0.80322265625}, {"start": 1449.49, "end": 1449.71, "word": " on", "probability": 0.81787109375}, {"start": 1449.71, "end": 1449.91, "word": " certain", "probability": 0.453857421875}, {"start": 1449.91, "end": 1450.43, "word": " things", "probability": 0.71240234375}, {"start": 1450.43, "end": 1450.73, "word": " before", "probability": 0.75048828125}, {"start": 1450.73, "end": 1450.89, "word": " we", "probability": 0.4111328125}, {"start": 1450.89, "end": 1451.03, "word": " get", "probability": 0.094482421875}, {"start": 1451.03, "end": 1451.29, "word": " into", "probability": 0.29833984375}, {"start": 1451.29, "end": 1451.35, "word": " the", "probability": 0.37255859375}, {"start": 1451.35, "end": 1451.67, "word": " design", "probability": 0.8671875}, {"start": 1451.67, "end": 1451.81, "word": " and", "probability": 0.6318359375}, {"start": 1451.81, "end": 1452.07, "word": " code", "probability": 0.44091796875}, {"start": 1452.07, "end": 1452.17, "word": " and", "probability": 0.54443359375}, {"start": 1452.17, "end": 1452.37, "word": " so", "probability": 0.2467041015625}, {"start": 1452.37, "end": 1453.31, "word": " on", "probability": 0.87451171875}, {"start": 1453.31, "end": 1453.63, "word": " because", "probability": 0.466796875}, {"start": 1453.63, "end": 1454.45, "word": " I", "probability": 0.73583984375}, {"start": 1454.45, "end": 1454.57, "word": " am", "probability": 0.397216796875}, {"start": 1454.57, "end": 1454.79, "word": " talking", "probability": 0.623046875}, {"start": 1454.79, "end": 1455.61, "word": " about", "probability": 0.8935546875}, {"start": 1455.61, "end": 1456.91, "word": " drawing", "probability": 0.74853515625}, {"start": 1456.91, "end": 1457.47, "word": " shapes", "probability": 0.84521484375}, {"start": 1457.47, "end": 1457.79, "word": " and", "probability": 0.68359375}, {"start": 1457.79, "end": 1458.39, "word": " I", "probability": 0.56982421875}, {"start": 1458.39, "end": 1458.65, "word": " want", "probability": 0.40576171875}, {"start": 1458.65, "end": 1459.55, "word": " to", "probability": 0.95166015625}, {"start": 1459.55, "end": 1459.87, "word": " delete", "probability": 0.60205078125}, {"start": 1459.87, "end": 1459.95, "word": " these", "probability": 0.5283203125}, {"start": 1459.95, "end": 1459.95, "word": " shapes", "probability": 0.93798828125}, {"start": 1459.95, "end": 1460.15, "word": " and", "probability": 0.78369140625}, {"start": 1460.15, "end": 1460.33, "word": " then", "probability": 0.462646484375}, {"start": 1460.33, "end": 1460.63, "word": " return", "probability": 0.400146484375}, {"start": 1460.63, "end": 1460.95, "word": " them", "probability": 0.80712890625}, {"start": 1460.95, "end": 1461.29, "word": " this", "probability": 0.420654296875}, {"start": 1461.29, "end": 1461.55, "word": " means", "probability": 0.923828125}, {"start": 1461.55, "end": 1461.81, "word": " that", "probability": 0.9013671875}, {"start": 1461.81, "end": 1462.01, "word": " whatever", "probability": 0.2705078125}, {"start": 1462.01, "end": 1462.27, "word": " shape", "probability": 0.7587890625}, {"start": 1462.27, "end": 1462.45, "word": " I", "probability": 0.95068359375}, {"start": 1462.45, "end": 1462.65, "word": " want", "probability": 0.55810546875}, {"start": 1462.65, "end": 1462.65, "word": " to", "probability": 0.95556640625}, {"start": 1462.65, "end": 1462.77, "word": " draw", "probability": 0.8896484375}, {"start": 1462.77, "end": 1462.93, "word": " on", "probability": 0.8916015625}, {"start": 1462.93, "end": 1463.05, "word": " the", "probability": 0.87890625}, {"start": 1463.05, "end": 1463.37, "word": " screen", "probability": 0.8681640625}, {"start": 1463.37, "end": 1464.21, "word": " I", "probability": 0.6591796875}, {"start": 1464.21, "end": 1464.33, "word": " have", "probability": 0.591796875}, {"start": 1464.33, "end": 1464.45, "word": " to", "probability": 0.97314453125}, {"start": 1464.45, "end": 1464.71, "word": " store", "probability": 0.728515625}, {"start": 1464.71, "end": 1464.83, "word": " its", "probability": 0.61181640625}, {"start": 1464.83, "end": 1465.15, "word": " information", "probability": 0.6328125}], "temperature": 1.0}, {"id": 58, "seek": 149358, "start": 1466.2, "end": 1493.58, "text": " I draw a circle in a certain place and I have to store where the circle is, what is half of its diameter and what is the center of it. If I know the center and half of the diameter, I draw it again. Also, the rectangle has length, width and point. When I draw a rectangle, I have to store this information as well. So that when I say undo, it draws it again. Let's say that the rectangle has at least how many columns?", "tokens": [286, 2642, 257, 6329, 294, 257, 1629, 1081, 293, 286, 362, 281, 3531, 689, 264, 6329, 307, 11, 437, 307, 1922, 295, 1080, 14196, 293, 437, 307, 264, 3056, 295, 309, 13, 759, 286, 458, 264, 3056, 293, 1922, 295, 264, 14196, 11, 286, 2642, 309, 797, 13, 2743, 11, 264, 21930, 575, 4641, 11, 11402, 293, 935, 13, 1133, 286, 2642, 257, 21930, 11, 286, 362, 281, 3531, 341, 1589, 382, 731, 13, 407, 300, 562, 286, 584, 23779, 11, 309, 20045, 309, 797, 13, 961, 311, 584, 300, 264, 21930, 575, 412, 1935, 577, 867, 13766, 30], "avg_logprob": -0.5153124707937241, "compression_ratio": 1.8296943231441047, "no_speech_prob": 1.245737075805664e-05, "words": [{"start": 1466.2, "end": 1466.64, "word": " I", "probability": 0.166015625}, {"start": 1466.64, "end": 1467.02, "word": " draw", "probability": 0.494384765625}, {"start": 1467.02, "end": 1467.26, "word": " a", "probability": 0.833984375}, {"start": 1467.26, "end": 1467.54, "word": " circle", "probability": 0.89453125}, {"start": 1467.54, "end": 1468.26, "word": " in", "probability": 0.56005859375}, {"start": 1468.26, "end": 1468.38, "word": " a", "probability": 0.89501953125}, {"start": 1468.38, "end": 1468.92, "word": " certain", "probability": 0.2374267578125}, {"start": 1468.92, "end": 1468.96, "word": " place", "probability": 0.55029296875}, {"start": 1468.96, "end": 1469.56, "word": " and", "probability": 0.35986328125}, {"start": 1469.56, "end": 1469.62, "word": " I", "probability": 0.759765625}, {"start": 1469.62, "end": 1469.72, "word": " have", "probability": 0.355712890625}, {"start": 1469.72, "end": 1469.82, "word": " to", "probability": 0.96923828125}, {"start": 1469.82, "end": 1470.1, "word": " store", "probability": 0.404541015625}, {"start": 1470.1, "end": 1470.32, "word": " where", "probability": 0.2255859375}, {"start": 1470.32, "end": 1470.48, "word": " the", "probability": 0.35791015625}, {"start": 1470.48, "end": 1470.72, "word": " circle", "probability": 0.9150390625}, {"start": 1470.72, "end": 1470.76, "word": " is,", "probability": 0.77978515625}, {"start": 1470.86, "end": 1470.94, "word": " what", "probability": 0.572265625}, {"start": 1470.94, "end": 1470.98, "word": " is", "probability": 0.55859375}, {"start": 1470.98, "end": 1471.14, "word": " half", "probability": 0.447509765625}, {"start": 1471.14, "end": 1471.2, "word": " of", "probability": 0.72509765625}, {"start": 1471.2, "end": 1471.5, "word": " its", "probability": 0.66943359375}, {"start": 1471.5, "end": 1471.5, "word": " diameter", "probability": 0.2073974609375}, {"start": 1471.5, "end": 1472.38, "word": " and", "probability": 0.6650390625}, {"start": 1472.38, "end": 1472.6, "word": " what", "probability": 0.79736328125}, {"start": 1472.6, "end": 1472.62, "word": " is", "probability": 0.8994140625}, {"start": 1472.62, "end": 1472.74, "word": " the", "probability": 0.383544921875}, {"start": 1472.74, "end": 1472.98, "word": " center", "probability": 0.74658203125}, {"start": 1472.98, "end": 1473.14, "word": " of", "probability": 0.65966796875}, {"start": 1473.14, "end": 1473.52, "word": " it.", "probability": 0.6943359375}, {"start": 1474.5, "end": 1474.94, "word": " If", "probability": 0.7177734375}, {"start": 1474.94, "end": 1475.02, "word": " I", "probability": 0.9638671875}, {"start": 1475.02, "end": 1475.2, "word": " know", "probability": 0.6513671875}, {"start": 1475.2, "end": 1475.32, "word": " the", "probability": 0.6240234375}, {"start": 1475.32, "end": 1475.54, "word": " center", "probability": 0.84033203125}, {"start": 1475.54, "end": 1475.68, "word": " and", "probability": 0.78857421875}, {"start": 1475.68, "end": 1475.82, "word": " half", "probability": 0.59814453125}, {"start": 1475.82, "end": 1475.92, "word": " of", "probability": 0.8955078125}, {"start": 1475.92, "end": 1475.96, "word": " the", "probability": 0.677734375}, {"start": 1475.96, "end": 1476.14, "word": " diameter,", "probability": 0.62451171875}, {"start": 1476.3, "end": 1476.52, "word": " I", "probability": 0.708984375}, {"start": 1476.52, "end": 1476.72, "word": " draw", "probability": 0.256591796875}, {"start": 1476.72, "end": 1477.24, "word": " it", "probability": 0.78662109375}, {"start": 1477.24, "end": 1477.74, "word": " again.", "probability": 0.91943359375}, {"start": 1478.26, "end": 1478.54, "word": " Also,", "probability": 0.265380859375}, {"start": 1478.54, "end": 1478.72, "word": " the", "probability": 0.463623046875}, {"start": 1478.72, "end": 1479.04, "word": " rectangle", "probability": 0.84326171875}, {"start": 1479.04, "end": 1479.54, "word": " has", "probability": 0.85791015625}, {"start": 1479.54, "end": 1479.76, "word": " length,", "probability": 0.5849609375}, {"start": 1479.96, "end": 1480.14, "word": " width", "probability": 0.94873046875}, {"start": 1480.14, "end": 1480.26, "word": " and", "probability": 0.78466796875}, {"start": 1480.26, "end": 1480.52, "word": " point.", "probability": 0.54736328125}, {"start": 1482.64, "end": 1483.08, "word": " When", "probability": 0.77490234375}, {"start": 1483.08, "end": 1483.24, "word": " I", "probability": 0.9697265625}, {"start": 1483.24, "end": 1483.34, "word": " draw", "probability": 0.9208984375}, {"start": 1483.34, "end": 1483.54, "word": " a", "probability": 0.90380859375}, {"start": 1483.54, "end": 1483.78, "word": " rectangle,", "probability": 0.9482421875}, {"start": 1483.94, "end": 1484.0, "word": " I", "probability": 0.8837890625}, {"start": 1484.0, "end": 1484.08, "word": " have", "probability": 0.541015625}, {"start": 1484.08, "end": 1484.2, "word": " to", "probability": 0.9560546875}, {"start": 1484.2, "end": 1484.76, "word": " store", "probability": 0.41943359375}, {"start": 1484.76, "end": 1484.78, "word": " this", "probability": 0.392822265625}, {"start": 1484.78, "end": 1484.84, "word": " information", "probability": 0.8046875}, {"start": 1484.84, "end": 1485.34, "word": " as", "probability": 0.2164306640625}, {"start": 1485.34, "end": 1486.64, "word": " well.", "probability": 0.947265625}, {"start": 1486.94, "end": 1487.24, "word": " So", "probability": 0.4443359375}, {"start": 1487.24, "end": 1487.42, "word": " that", "probability": 0.38720703125}, {"start": 1487.42, "end": 1487.44, "word": " when", "probability": 0.82373046875}, {"start": 1487.44, "end": 1487.56, "word": " I", "probability": 0.98974609375}, {"start": 1487.56, "end": 1487.72, "word": " say", "probability": 0.39697265625}, {"start": 1487.72, "end": 1488.1, "word": " undo,", "probability": 0.7607421875}, {"start": 1488.52, "end": 1488.74, "word": " it", "probability": 0.59814453125}, {"start": 1488.74, "end": 1489.14, "word": " draws", "probability": 0.45458984375}, {"start": 1489.14, "end": 1489.56, "word": " it", "probability": 0.54150390625}, {"start": 1489.56, "end": 1490.4, "word": " again.", "probability": 0.93212890625}, {"start": 1491.18, "end": 1491.62, "word": " Let's", "probability": 0.49945068359375}, {"start": 1491.62, "end": 1491.8, "word": " say", "probability": 0.6630859375}, {"start": 1491.8, "end": 1492.16, "word": " that", "probability": 0.40234375}, {"start": 1492.16, "end": 1492.24, "word": " the", "probability": 0.53857421875}, {"start": 1492.24, "end": 1492.66, "word": " rectangle", "probability": 0.931640625}, {"start": 1492.66, "end": 1492.94, "word": " has", "probability": 0.91064453125}, {"start": 1492.94, "end": 1493.22, "word": " at", "probability": 0.2337646484375}, {"start": 1493.22, "end": 1493.22, "word": " least", "probability": 0.9423828125}, {"start": 1493.22, "end": 1493.26, "word": " how", "probability": 0.5673828125}, {"start": 1493.26, "end": 1493.3, "word": " many", "probability": 0.8779296875}, {"start": 1493.3, "end": 1493.58, "word": " columns?", "probability": 0.2388916015625}], "temperature": 1.0}, {"id": 59, "seek": 152166, "start": 1496.62, "end": 1521.66, "text": "The point also has x and y, which is two points and its length and width are four points. The circle has three points, x and y, and the half of the circle. And the semicircle has an additional point, which is the color. The first thing that comes to my mind is that as long as I have engineering shapes and shapes that have information and information that I need to memorize, I need to represent each shape with a class.", "tokens": [2278, 935, 611, 575, 2031, 293, 288, 11, 597, 307, 732, 2793, 293, 1080, 4641, 293, 11402, 366, 1451, 2793, 13, 440, 6329, 575, 1045, 2793, 11, 2031, 293, 288, 11, 293, 264, 1922, 295, 264, 6329, 13, 400, 264, 27515, 347, 2160, 575, 364, 4497, 935, 11, 597, 307, 264, 2017, 13, 440, 700, 551, 300, 1487, 281, 452, 1575, 307, 300, 382, 938, 382, 286, 362, 7043, 10854, 293, 10854, 300, 362, 1589, 293, 1589, 300, 286, 643, 281, 27478, 11, 286, 643, 281, 2906, 1184, 3909, 365, 257, 1508, 13], "avg_logprob": -0.6003989532906958, "compression_ratio": 1.8794642857142858, "no_speech_prob": 8.344650268554688e-06, "words": [{"start": 1496.62, "end": 1497.02, "word": "The", "probability": 0.10845947265625}, {"start": 1497.02, "end": 1497.42, "word": " point", "probability": 0.53759765625}, {"start": 1497.42, "end": 1497.76, "word": " also", "probability": 0.392822265625}, {"start": 1497.76, "end": 1497.96, "word": " has", "probability": 0.77294921875}, {"start": 1497.96, "end": 1498.16, "word": " x", "probability": 0.443359375}, {"start": 1498.16, "end": 1498.32, "word": " and", "probability": 0.89599609375}, {"start": 1498.32, "end": 1498.52, "word": " y,", "probability": 0.986328125}, {"start": 1499.04, "end": 1499.22, "word": " which", "probability": 0.18701171875}, {"start": 1499.22, "end": 1499.36, "word": " is", "probability": 0.351806640625}, {"start": 1499.36, "end": 1499.44, "word": " two", "probability": 0.486572265625}, {"start": 1499.44, "end": 1499.62, "word": " points", "probability": 0.29736328125}, {"start": 1499.62, "end": 1500.7, "word": " and", "probability": 0.2479248046875}, {"start": 1500.7, "end": 1501.18, "word": " its", "probability": 0.12109375}, {"start": 1501.18, "end": 1501.18, "word": " length", "probability": 0.7568359375}, {"start": 1501.18, "end": 1501.34, "word": " and", "probability": 0.81005859375}, {"start": 1501.34, "end": 1501.44, "word": " width", "probability": 0.880859375}, {"start": 1501.44, "end": 1501.6, "word": " are", "probability": 0.336669921875}, {"start": 1501.6, "end": 1501.86, "word": " four", "probability": 0.77294921875}, {"start": 1501.86, "end": 1502.2, "word": " points.", "probability": 0.204833984375}, {"start": 1502.36, "end": 1502.5, "word": " The", "probability": 0.7373046875}, {"start": 1502.5, "end": 1502.74, "word": " circle", "probability": 0.892578125}, {"start": 1502.74, "end": 1503.04, "word": " has", "probability": 0.445068359375}, {"start": 1503.04, "end": 1503.7, "word": " three", "probability": 0.873046875}, {"start": 1503.7, "end": 1504.0, "word": " points,", "probability": 0.83056640625}, {"start": 1504.22, "end": 1504.4, "word": " x", "probability": 0.87646484375}, {"start": 1504.4, "end": 1504.56, "word": " and", "probability": 0.5751953125}, {"start": 1504.56, "end": 1504.86, "word": " y,", "probability": 0.990234375}, {"start": 1505.2, "end": 1505.72, "word": " and", "probability": 0.88330078125}, {"start": 1505.72, "end": 1505.78, "word": " the", "probability": 0.45361328125}, {"start": 1505.78, "end": 1506.3, "word": " half", "probability": 0.316650390625}, {"start": 1506.3, "end": 1506.42, "word": " of", "probability": 0.385986328125}, {"start": 1506.42, "end": 1506.48, "word": " the", "probability": 0.783203125}, {"start": 1506.48, "end": 1506.62, "word": " circle.", "probability": 0.447265625}, {"start": 1506.88, "end": 1507.26, "word": " And", "probability": 0.51025390625}, {"start": 1507.26, "end": 1507.3, "word": " the", "probability": 0.80322265625}, {"start": 1507.3, "end": 1508.0, "word": " semicircle", "probability": 0.6919759114583334}, {"start": 1508.0, "end": 1508.72, "word": " has", "probability": 0.8896484375}, {"start": 1508.72, "end": 1508.82, "word": " an", "probability": 0.57861328125}, {"start": 1508.82, "end": 1508.82, "word": " additional", "probability": 0.6748046875}, {"start": 1508.82, "end": 1509.02, "word": " point,", "probability": 0.857421875}, {"start": 1510.18, "end": 1510.18, "word": " which", "probability": 0.7626953125}, {"start": 1510.18, "end": 1510.26, "word": " is", "probability": 0.9443359375}, {"start": 1510.26, "end": 1510.38, "word": " the", "probability": 0.52294921875}, {"start": 1510.38, "end": 1510.58, "word": " color.", "probability": 0.82177734375}, {"start": 1511.9, "end": 1512.2, "word": " The", "probability": 0.114013671875}, {"start": 1512.2, "end": 1512.6, "word": " first", "probability": 0.81396484375}, {"start": 1512.6, "end": 1512.8, "word": " thing", "probability": 0.87939453125}, {"start": 1512.8, "end": 1512.86, "word": " that", "probability": 0.301513671875}, {"start": 1512.86, "end": 1513.12, "word": " comes", "probability": 0.4375}, {"start": 1513.12, "end": 1513.12, "word": " to", "probability": 0.81982421875}, {"start": 1513.12, "end": 1513.14, "word": " my", "probability": 0.435791015625}, {"start": 1513.14, "end": 1513.42, "word": " mind", "probability": 0.896484375}, {"start": 1513.42, "end": 1513.68, "word": " is", "probability": 0.51708984375}, {"start": 1513.68, "end": 1513.72, "word": " that", "probability": 0.7490234375}, {"start": 1513.72, "end": 1513.84, "word": " as", "probability": 0.2432861328125}, {"start": 1513.84, "end": 1513.96, "word": " long", "probability": 0.51953125}, {"start": 1513.96, "end": 1513.96, "word": " as", "probability": 0.96728515625}, {"start": 1513.96, "end": 1514.1, "word": " I", "probability": 0.84130859375}, {"start": 1514.1, "end": 1514.62, "word": " have", "probability": 0.8955078125}, {"start": 1514.62, "end": 1516.04, "word": " engineering", "probability": 0.478515625}, {"start": 1516.04, "end": 1516.28, "word": " shapes", "probability": 0.38671875}, {"start": 1516.28, "end": 1516.44, "word": " and", "probability": 0.418212890625}, {"start": 1516.44, "end": 1516.74, "word": " shapes", "probability": 0.4296875}, {"start": 1516.74, "end": 1516.88, "word": " that", "probability": 0.211181640625}, {"start": 1516.88, "end": 1516.94, "word": " have", "probability": 0.70361328125}, {"start": 1516.94, "end": 1517.36, "word": " information", "probability": 0.623046875}, {"start": 1517.36, "end": 1517.5, "word": " and", "probability": 0.576171875}, {"start": 1517.5, "end": 1517.84, "word": " information", "probability": 0.54443359375}, {"start": 1517.84, "end": 1518.0, "word": " that", "probability": 0.7978515625}, {"start": 1518.0, "end": 1518.02, "word": " I", "probability": 0.93017578125}, {"start": 1518.02, "end": 1518.12, "word": " need", "probability": 0.31884765625}, {"start": 1518.12, "end": 1518.12, "word": " to", "probability": 0.97216796875}, {"start": 1518.12, "end": 1518.4, "word": " memorize,", "probability": 0.69580078125}, {"start": 1518.9, "end": 1518.98, "word": " I", "probability": 0.53125}, {"start": 1518.98, "end": 1519.24, "word": " need", "probability": 0.385986328125}, {"start": 1519.24, "end": 1519.3, "word": " to", "probability": 0.96435546875}, {"start": 1519.3, "end": 1519.58, "word": " represent", "probability": 0.52734375}, {"start": 1519.58, "end": 1519.86, "word": " each", "probability": 0.70947265625}, {"start": 1519.86, "end": 1520.14, "word": " shape", "probability": 0.88525390625}, {"start": 1520.14, "end": 1521.34, "word": " with", "probability": 0.55859375}, {"start": 1521.34, "end": 1521.4, "word": " a", "probability": 0.42578125}, {"start": 1521.4, "end": 1521.66, "word": " class.", "probability": 0.65966796875}], "temperature": 1.0}, {"id": 60, "seek": 155111, "start": 1522.85, "end": 1551.11, "text": " This is a circle, take it and memorize it. This is a rectangle, take it and memorize it. Why should I deal with three or four information for the shape? I collect the information of the shape in one thing and memorize it. From the benefit that came from object oriented. So what did I do guys? I went and made a class called circle to collect data like we collected data for employees, students and others. What did I put in it? How many information? Three. Radius, Center, X and Center, Y.", "tokens": [639, 307, 257, 6329, 11, 747, 309, 293, 27478, 309, 13, 639, 307, 257, 21930, 11, 747, 309, 293, 27478, 309, 13, 1545, 820, 286, 2028, 365, 1045, 420, 1451, 1589, 337, 264, 3909, 30, 286, 2500, 264, 1589, 295, 264, 3909, 294, 472, 551, 293, 27478, 309, 13, 3358, 264, 5121, 300, 1361, 490, 2657, 21841, 13, 407, 437, 630, 286, 360, 1074, 30, 286, 1437, 293, 1027, 257, 1508, 1219, 6329, 281, 2500, 1412, 411, 321, 11087, 1412, 337, 6619, 11, 1731, 293, 2357, 13, 708, 630, 286, 829, 294, 309, 30, 1012, 867, 1589, 30, 6244, 13, 9654, 4872, 11, 5169, 11, 1783, 293, 5169, 11, 398, 13], "avg_logprob": -0.4609375058540276, "compression_ratio": 1.8458646616541354, "no_speech_prob": 2.3245811462402344e-06, "words": [{"start": 1522.85, "end": 1523.15, "word": " This", "probability": 0.1832275390625}, {"start": 1523.15, "end": 1523.15, "word": " is", "probability": 0.6630859375}, {"start": 1523.15, "end": 1523.53, "word": " a", "probability": 0.334228515625}, {"start": 1523.53, "end": 1523.53, "word": " circle,", "probability": 0.5888671875}, {"start": 1523.65, "end": 1523.73, "word": " take", "probability": 0.279296875}, {"start": 1523.73, "end": 1524.03, "word": " it", "probability": 0.80615234375}, {"start": 1524.03, "end": 1524.03, "word": " and", "probability": 0.7529296875}, {"start": 1524.03, "end": 1524.03, "word": " memorize", "probability": 0.7158203125}, {"start": 1524.03, "end": 1524.29, "word": " it.", "probability": 0.94580078125}, {"start": 1524.57, "end": 1524.71, "word": " This", "probability": 0.7421875}, {"start": 1524.71, "end": 1524.71, "word": " is", "probability": 0.8095703125}, {"start": 1524.71, "end": 1524.83, "word": " a", "probability": 0.8447265625}, {"start": 1524.83, "end": 1525.07, "word": " rectangle,", "probability": 0.9267578125}, {"start": 1525.23, "end": 1525.29, "word": " take", "probability": 0.8720703125}, {"start": 1525.29, "end": 1525.53, "word": " it", "probability": 0.94775390625}, {"start": 1525.53, "end": 1526.01, "word": " and", "probability": 0.86962890625}, {"start": 1526.01, "end": 1526.21, "word": " memorize", "probability": 0.8154296875}, {"start": 1526.21, "end": 1526.43, "word": " it.", "probability": 0.953125}, {"start": 1526.61, "end": 1526.85, "word": " Why", "probability": 0.810546875}, {"start": 1526.85, "end": 1526.93, "word": " should", "probability": 0.208740234375}, {"start": 1526.93, "end": 1526.97, "word": " I", "probability": 0.80322265625}, {"start": 1526.97, "end": 1527.13, "word": " deal", "probability": 0.7568359375}, {"start": 1527.13, "end": 1527.27, "word": " with", "probability": 0.90771484375}, {"start": 1527.27, "end": 1527.55, "word": " three", "probability": 0.46484375}, {"start": 1527.55, "end": 1528.01, "word": " or", "probability": 0.61669921875}, {"start": 1528.01, "end": 1528.35, "word": " four", "probability": 0.9228515625}, {"start": 1528.35, "end": 1528.59, "word": " information", "probability": 0.24609375}, {"start": 1528.59, "end": 1528.85, "word": " for", "probability": 0.45068359375}, {"start": 1528.85, "end": 1528.89, "word": " the", "probability": 0.360595703125}, {"start": 1528.89, "end": 1529.11, "word": " shape?", "probability": 0.82275390625}, {"start": 1529.35, "end": 1529.63, "word": " I", "probability": 0.8544921875}, {"start": 1529.63, "end": 1529.85, "word": " collect", "probability": 0.505859375}, {"start": 1529.85, "end": 1529.95, "word": " the", "probability": 0.47314453125}, {"start": 1529.95, "end": 1530.15, "word": " information", "probability": 0.291748046875}, {"start": 1530.15, "end": 1530.35, "word": " of", "probability": 0.6044921875}, {"start": 1530.35, "end": 1530.39, "word": " the", "probability": 0.80810546875}, {"start": 1530.39, "end": 1530.53, "word": " shape", "probability": 0.87548828125}, {"start": 1530.53, "end": 1530.73, "word": " in", "probability": 0.70556640625}, {"start": 1530.73, "end": 1531.53, "word": " one", "probability": 0.56884765625}, {"start": 1531.53, "end": 1532.23, "word": " thing", "probability": 0.74755859375}, {"start": 1532.23, "end": 1532.45, "word": " and", "probability": 0.7958984375}, {"start": 1532.45, "end": 1532.65, "word": " memorize", "probability": 0.66259765625}, {"start": 1532.65, "end": 1532.83, "word": " it.", "probability": 0.93896484375}, {"start": 1532.85, "end": 1532.93, "word": " From", "probability": 0.11724853515625}, {"start": 1532.93, "end": 1533.03, "word": " the", "probability": 0.60302734375}, {"start": 1533.03, "end": 1533.29, "word": " benefit", "probability": 0.21435546875}, {"start": 1533.29, "end": 1533.45, "word": " that", "probability": 0.60107421875}, {"start": 1533.45, "end": 1533.55, "word": " came", "probability": 0.62646484375}, {"start": 1533.55, "end": 1533.63, "word": " from", "probability": 0.84375}, {"start": 1533.63, "end": 1533.87, "word": " object", "probability": 0.424560546875}, {"start": 1533.87, "end": 1534.31, "word": " oriented.", "probability": 0.61181640625}, {"start": 1534.67, "end": 1534.95, "word": " So", "probability": 0.82080078125}, {"start": 1534.95, "end": 1535.11, "word": " what", "probability": 0.67626953125}, {"start": 1535.11, "end": 1535.11, "word": " did", "probability": 0.88525390625}, {"start": 1535.11, "end": 1535.37, "word": " I", "probability": 0.491455078125}, {"start": 1535.37, "end": 1535.59, "word": " do", "probability": 0.849609375}, {"start": 1535.59, "end": 1536.05, "word": " guys?", "probability": 0.37939453125}, {"start": 1536.55, "end": 1536.93, "word": " I", "probability": 0.9775390625}, {"start": 1536.93, "end": 1536.93, "word": " went", "probability": 0.54541015625}, {"start": 1536.93, "end": 1537.05, "word": " and", "probability": 0.7412109375}, {"start": 1537.05, "end": 1537.37, "word": " made", "probability": 0.56201171875}, {"start": 1537.37, "end": 1540.13, "word": " a", "probability": 0.8896484375}, {"start": 1540.13, "end": 1540.41, "word": " class", "probability": 0.95458984375}, {"start": 1540.41, "end": 1540.73, "word": " called", "probability": 0.70849609375}, {"start": 1540.73, "end": 1542.27, "word": " circle", "probability": 0.5263671875}, {"start": 1542.27, "end": 1542.53, "word": " to", "probability": 0.345458984375}, {"start": 1542.53, "end": 1543.03, "word": " collect", "probability": 0.73828125}, {"start": 1543.03, "end": 1543.53, "word": " data", "probability": 0.82421875}, {"start": 1543.53, "end": 1543.95, "word": " like", "probability": 0.260986328125}, {"start": 1543.95, "end": 1544.13, "word": " we", "probability": 0.63720703125}, {"start": 1544.13, "end": 1544.45, "word": " collected", "probability": 0.6435546875}, {"start": 1544.45, "end": 1544.75, "word": " data", "probability": 0.381103515625}, {"start": 1544.75, "end": 1544.89, "word": " for", "probability": 0.44091796875}, {"start": 1544.89, "end": 1545.29, "word": " employees,", "probability": 0.53466796875}, {"start": 1545.41, "end": 1545.73, "word": " students", "probability": 0.91259765625}, {"start": 1545.73, "end": 1545.91, "word": " and", "probability": 0.66357421875}, {"start": 1545.91, "end": 1546.09, "word": " others.", "probability": 0.87841796875}, {"start": 1546.41, "end": 1546.67, "word": " What", "probability": 0.84326171875}, {"start": 1546.67, "end": 1546.71, "word": " did", "probability": 0.75830078125}, {"start": 1546.71, "end": 1546.71, "word": " I", "probability": 0.52197265625}, {"start": 1546.71, "end": 1546.89, "word": " put", "probability": 0.71337890625}, {"start": 1546.89, "end": 1547.09, "word": " in", "probability": 0.76953125}, {"start": 1547.09, "end": 1547.31, "word": " it?", "probability": 0.8779296875}, {"start": 1547.61, "end": 1547.83, "word": " How", "probability": 0.755859375}, {"start": 1547.83, "end": 1547.87, "word": " many", "probability": 0.53515625}, {"start": 1547.87, "end": 1548.19, "word": " information?", "probability": 0.58837890625}, {"start": 1548.93, "end": 1549.37, "word": " Three.", "probability": 0.6005859375}, {"start": 1549.51, "end": 1549.93, "word": " Radius,", "probability": 0.82861328125}, {"start": 1549.99, "end": 1550.23, "word": " Center,", "probability": 0.3486328125}, {"start": 1550.33, "end": 1550.47, "word": " X", "probability": 0.93798828125}, {"start": 1550.47, "end": 1550.63, "word": " and", "probability": 0.6240234375}, {"start": 1550.63, "end": 1550.89, "word": " Center,", "probability": 0.671875}, {"start": 1550.91, "end": 1551.11, "word": " Y.", "probability": 0.9482421875}], "temperature": 1.0}, {"id": 61, "seek": 156629, "start": 1551.77, "end": 1566.29, "text": "And this is a constructor, right or not? A constructor takes three things, half of the line and x and y, right? And then, this thing that I made, what is its name? The drone", "tokens": [5289, 341, 307, 257, 47479, 11, 558, 420, 406, 30, 316, 47479, 2516, 1045, 721, 11, 1922, 295, 264, 1622, 293, 2031, 293, 288, 11, 558, 30, 400, 550, 11, 341, 551, 300, 286, 1027, 11, 437, 307, 1080, 1315, 30, 440, 13852], "avg_logprob": -0.6960227096622641, "compression_ratio": 1.4065040650406504, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 1551.77, "end": 1551.97, "word": "And", "probability": 0.1280517578125}, {"start": 1551.97, "end": 1552.13, "word": " this", "probability": 0.4931640625}, {"start": 1552.13, "end": 1552.85, "word": " is", "probability": 0.50146484375}, {"start": 1552.85, "end": 1553.03, "word": " a", "probability": 0.45458984375}, {"start": 1553.03, "end": 1553.45, "word": " constructor,", "probability": 0.58056640625}, {"start": 1554.55, "end": 1554.77, "word": " right", "probability": 0.28955078125}, {"start": 1554.77, "end": 1554.99, "word": " or", "probability": 0.371826171875}, {"start": 1554.99, "end": 1555.01, "word": " not?", "probability": 0.33740234375}, {"start": 1556.05, "end": 1556.41, "word": " A", "probability": 0.323486328125}, {"start": 1556.41, "end": 1556.77, "word": " constructor", "probability": 0.90087890625}, {"start": 1556.77, "end": 1557.13, "word": " takes", "probability": 0.56298828125}, {"start": 1557.13, "end": 1557.57, "word": " three", "probability": 0.52734375}, {"start": 1557.57, "end": 1557.95, "word": " things,", "probability": 0.6044921875}, {"start": 1558.09, "end": 1558.33, "word": " half", "probability": 0.3564453125}, {"start": 1558.33, "end": 1558.45, "word": " of", "probability": 0.57080078125}, {"start": 1558.45, "end": 1558.51, "word": " the", "probability": 0.475341796875}, {"start": 1558.51, "end": 1558.73, "word": " line", "probability": 0.51025390625}, {"start": 1558.73, "end": 1559.83, "word": " and", "probability": 0.517578125}, {"start": 1559.83, "end": 1560.07, "word": " x", "probability": 0.60693359375}, {"start": 1560.07, "end": 1560.21, "word": " and", "probability": 0.8798828125}, {"start": 1560.21, "end": 1560.45, "word": " y,", "probability": 0.990234375}, {"start": 1560.79, "end": 1561.13, "word": " right?", "probability": 0.275390625}, {"start": 1562.03, "end": 1562.21, "word": " And", "probability": 0.6025390625}, {"start": 1562.21, "end": 1562.49, "word": " then,", "probability": 0.358154296875}, {"start": 1562.91, "end": 1563.23, "word": " this", "probability": 0.53125}, {"start": 1563.23, "end": 1563.43, "word": " thing", "probability": 0.373291015625}, {"start": 1563.43, "end": 1563.53, "word": " that", "probability": 0.343017578125}, {"start": 1563.53, "end": 1563.69, "word": " I", "probability": 0.9228515625}, {"start": 1563.69, "end": 1563.95, "word": " made,", "probability": 0.285888671875}, {"start": 1564.15, "end": 1564.25, "word": " what", "probability": 0.7802734375}, {"start": 1564.25, "end": 1564.25, "word": " is", "probability": 0.65771484375}, {"start": 1564.25, "end": 1564.49, "word": " its", "probability": 0.51220703125}, {"start": 1564.49, "end": 1564.49, "word": " name?", "probability": 0.900390625}, {"start": 1565.69, "end": 1566.09, "word": " The", "probability": 0.54052734375}, {"start": 1566.09, "end": 1566.29, "word": " drone", "probability": 0.4033203125}], "temperature": 1.0}, {"id": 62, "seek": 158138, "start": 1567.82, "end": 1581.38, "text": "It takes something called Graphics G, which is the place you want to draw on it, and then it gives us a device called Draw Oval. It's not a matter of how we draw. The important thing is that it gives us a device in the frame to draw an oval.", "tokens": [3522, 2516, 746, 1219, 21884, 1167, 460, 11, 597, 307, 264, 1081, 291, 528, 281, 2642, 322, 309, 11, 293, 550, 309, 2709, 505, 257, 4302, 1219, 20386, 422, 3337, 13, 467, 311, 406, 257, 1871, 295, 577, 321, 2642, 13, 440, 1021, 551, 307, 300, 309, 2709, 505, 257, 4302, 294, 264, 3920, 281, 2642, 364, 37175, 13], "avg_logprob": -0.5401041626930236, "compression_ratio": 1.535031847133758, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1567.82, "end": 1568.12, "word": "It", "probability": 0.134765625}, {"start": 1568.12, "end": 1568.4, "word": " takes", "probability": 0.403076171875}, {"start": 1568.4, "end": 1568.68, "word": " something", "probability": 0.2841796875}, {"start": 1568.68, "end": 1568.92, "word": " called", "probability": 0.791015625}, {"start": 1568.92, "end": 1569.42, "word": " Graphics", "probability": 0.595947265625}, {"start": 1569.42, "end": 1569.6, "word": " G,", "probability": 0.552734375}, {"start": 1569.68, "end": 1569.72, "word": " which", "probability": 0.537109375}, {"start": 1569.72, "end": 1569.82, "word": " is", "probability": 0.876953125}, {"start": 1569.82, "end": 1569.9, "word": " the", "probability": 0.69775390625}, {"start": 1569.9, "end": 1570.16, "word": " place", "probability": 0.62744140625}, {"start": 1570.16, "end": 1570.34, "word": " you", "probability": 0.337646484375}, {"start": 1570.34, "end": 1570.44, "word": " want", "probability": 0.43798828125}, {"start": 1570.44, "end": 1570.5, "word": " to", "probability": 0.93701171875}, {"start": 1570.5, "end": 1570.6, "word": " draw", "probability": 0.78271484375}, {"start": 1570.6, "end": 1570.82, "word": " on", "probability": 0.74560546875}, {"start": 1570.82, "end": 1571.04, "word": " it,", "probability": 0.73095703125}, {"start": 1571.42, "end": 1571.44, "word": " and", "probability": 0.740234375}, {"start": 1571.44, "end": 1571.64, "word": " then", "probability": 0.626953125}, {"start": 1571.64, "end": 1571.78, "word": " it", "probability": 0.290283203125}, {"start": 1571.78, "end": 1572.18, "word": " gives", "probability": 0.1124267578125}, {"start": 1572.18, "end": 1572.38, "word": " us", "probability": 0.7333984375}, {"start": 1572.38, "end": 1572.38, "word": " a", "probability": 0.8212890625}, {"start": 1572.38, "end": 1572.64, "word": " device", "probability": 0.351806640625}, {"start": 1572.64, "end": 1572.96, "word": " called", "probability": 0.845703125}, {"start": 1572.96, "end": 1573.24, "word": " Draw", "probability": 0.67724609375}, {"start": 1573.24, "end": 1574.0, "word": " Oval.", "probability": 0.909423828125}, {"start": 1574.1, "end": 1574.16, "word": " It's", "probability": 0.52197265625}, {"start": 1574.16, "end": 1574.2, "word": " not", "probability": 0.93115234375}, {"start": 1574.2, "end": 1574.32, "word": " a", "probability": 0.220703125}, {"start": 1574.32, "end": 1574.46, "word": " matter", "probability": 0.476806640625}, {"start": 1574.46, "end": 1574.64, "word": " of", "probability": 0.93701171875}, {"start": 1574.64, "end": 1574.9, "word": " how", "probability": 0.76806640625}, {"start": 1574.9, "end": 1574.9, "word": " we", "probability": 0.5458984375}, {"start": 1574.9, "end": 1574.94, "word": " draw.", "probability": 0.37451171875}, {"start": 1576.52, "end": 1576.92, "word": " The", "probability": 0.236328125}, {"start": 1576.92, "end": 1577.04, "word": " important", "probability": 0.59814453125}, {"start": 1577.04, "end": 1577.14, "word": " thing", "probability": 0.87255859375}, {"start": 1577.14, "end": 1577.22, "word": " is", "probability": 0.9296875}, {"start": 1577.22, "end": 1577.68, "word": " that", "probability": 0.81298828125}, {"start": 1577.68, "end": 1577.9, "word": " it", "probability": 0.62548828125}, {"start": 1577.9, "end": 1578.06, "word": " gives", "probability": 0.59619140625}, {"start": 1578.06, "end": 1578.22, "word": " us", "probability": 0.9189453125}, {"start": 1578.22, "end": 1578.24, "word": " a", "probability": 0.8994140625}, {"start": 1578.24, "end": 1578.56, "word": " device", "probability": 0.8505859375}, {"start": 1578.56, "end": 1579.52, "word": " in", "probability": 0.76806640625}, {"start": 1579.52, "end": 1579.96, "word": " the", "probability": 0.85986328125}, {"start": 1579.96, "end": 1580.32, "word": " frame", "probability": 0.89453125}, {"start": 1580.32, "end": 1580.92, "word": " to", "probability": 0.48046875}, {"start": 1580.92, "end": 1581.1, "word": " draw", "probability": 0.74560546875}, {"start": 1581.1, "end": 1581.38, "word": " an", "probability": 0.62548828125}, {"start": 1581.38, "end": 1581.38, "word": " oval.", "probability": 0.9169921875}], "temperature": 1.0}, {"id": 63, "seek": 161058, "start": 1582.76, "end": 1610.58, "text": " It's a rectangular shape. If you give it x and y, where does it draw? And if you give it the radius, which is the rectangular shape, it has two lines. A vertical line and a vertical line. If you give it the same line, what happens? It becomes a circle. It's not about drawing. It's important that when I click on the draw button, and give it the place where it draws, it draws the circle. Okay? This is important. I made this class mainly to collect this information. In one thing.", "tokens": [467, 311, 257, 31167, 3909, 13, 759, 291, 976, 309, 2031, 293, 288, 11, 689, 775, 309, 2642, 30, 400, 498, 291, 976, 309, 264, 15845, 11, 597, 307, 264, 31167, 3909, 11, 309, 575, 732, 3876, 13, 316, 9429, 1622, 293, 257, 9429, 1622, 13, 759, 291, 976, 309, 264, 912, 1622, 11, 437, 2314, 30, 467, 3643, 257, 6329, 13, 467, 311, 406, 466, 6316, 13, 467, 311, 1021, 300, 562, 286, 2052, 322, 264, 2642, 2960, 11, 293, 976, 309, 264, 1081, 689, 309, 20045, 11, 309, 20045, 264, 6329, 13, 1033, 30, 639, 307, 1021, 13, 286, 1027, 341, 1508, 8704, 281, 2500, 341, 1589, 13, 682, 472, 551, 13], "avg_logprob": -0.5369565414345783, "compression_ratio": 1.8682170542635659, "no_speech_prob": 2.384185791015625e-06, "words": [{"start": 1582.76, "end": 1583.0, "word": " It's", "probability": 0.3035888671875}, {"start": 1583.0, "end": 1583.16, "word": " a", "probability": 0.5654296875}, {"start": 1583.16, "end": 1583.52, "word": " rectangular", "probability": 0.07501220703125}, {"start": 1583.52, "end": 1583.52, "word": " shape.", "probability": 0.83740234375}, {"start": 1584.04, "end": 1584.44, "word": " If", "probability": 0.2105712890625}, {"start": 1584.44, "end": 1585.12, "word": " you", "probability": 0.6484375}, {"start": 1585.12, "end": 1585.36, "word": " give", "probability": 0.341064453125}, {"start": 1585.36, "end": 1585.54, "word": " it", "probability": 0.57666015625}, {"start": 1585.54, "end": 1586.02, "word": " x", "probability": 0.1651611328125}, {"start": 1586.02, "end": 1586.18, "word": " and", "probability": 0.87255859375}, {"start": 1586.18, "end": 1586.4, "word": " y,", "probability": 0.990234375}, {"start": 1586.4, "end": 1586.6, "word": " where", "probability": 0.422119140625}, {"start": 1586.6, "end": 1586.7, "word": " does", "probability": 0.347412109375}, {"start": 1586.7, "end": 1586.7, "word": " it", "probability": 0.87744140625}, {"start": 1586.7, "end": 1586.84, "word": " draw?", "probability": 0.548828125}, {"start": 1587.26, "end": 1587.66, "word": " And", "probability": 0.463134765625}, {"start": 1587.66, "end": 1587.76, "word": " if", "probability": 0.87548828125}, {"start": 1587.76, "end": 1587.82, "word": " you", "probability": 0.94384765625}, {"start": 1587.82, "end": 1588.0, "word": " give", "probability": 0.80029296875}, {"start": 1588.0, "end": 1588.12, "word": " it", "probability": 0.87744140625}, {"start": 1588.12, "end": 1588.18, "word": " the", "probability": 0.283935546875}, {"start": 1588.18, "end": 1588.52, "word": " radius,", "probability": 0.93505859375}, {"start": 1588.66, "end": 1588.72, "word": " which", "probability": 0.439453125}, {"start": 1588.72, "end": 1588.86, "word": " is", "probability": 0.87939453125}, {"start": 1588.86, "end": 1588.94, "word": " the", "probability": 0.43408203125}, {"start": 1588.94, "end": 1589.4, "word": " rectangular", "probability": 0.6220703125}, {"start": 1589.4, "end": 1589.4, "word": " shape,", "probability": 0.88037109375}, {"start": 1589.58, "end": 1589.68, "word": " it", "probability": 0.5849609375}, {"start": 1589.68, "end": 1589.82, "word": " has", "probability": 0.6826171875}, {"start": 1589.82, "end": 1590.28, "word": " two", "probability": 0.76220703125}, {"start": 1590.28, "end": 1590.28, "word": " lines.", "probability": 0.07659912109375}, {"start": 1590.68, "end": 1590.74, "word": " A", "probability": 0.2171630859375}, {"start": 1590.74, "end": 1590.74, "word": " vertical", "probability": 0.369873046875}, {"start": 1590.74, "end": 1590.94, "word": " line", "probability": 0.7939453125}, {"start": 1590.94, "end": 1591.34, "word": " and", "probability": 0.9208984375}, {"start": 1591.34, "end": 1591.44, "word": " a", "probability": 0.91845703125}, {"start": 1591.44, "end": 1591.52, "word": " vertical", "probability": 0.39453125}, {"start": 1591.52, "end": 1591.54, "word": " line.", "probability": 0.88232421875}, {"start": 1591.7, "end": 1591.82, "word": " If", "probability": 0.77685546875}, {"start": 1591.82, "end": 1592.08, "word": " you", "probability": 0.94580078125}, {"start": 1592.08, "end": 1592.4, "word": " give", "probability": 0.46435546875}, {"start": 1592.4, "end": 1592.48, "word": " it", "probability": 0.60888671875}, {"start": 1592.48, "end": 1592.56, "word": " the", "probability": 0.76416015625}, {"start": 1592.56, "end": 1592.72, "word": " same", "probability": 0.85302734375}, {"start": 1592.72, "end": 1593.06, "word": " line,", "probability": 0.65234375}, {"start": 1593.56, "end": 1593.72, "word": " what", "probability": 0.869140625}, {"start": 1593.72, "end": 1594.04, "word": " happens?", "probability": 0.888671875}, {"start": 1594.28, "end": 1594.62, "word": " It", "probability": 0.61083984375}, {"start": 1594.62, "end": 1594.84, "word": " becomes", "probability": 0.44970703125}, {"start": 1594.84, "end": 1594.98, "word": " a", "probability": 0.9306640625}, {"start": 1594.98, "end": 1595.08, "word": " circle.", "probability": 0.93212890625}, {"start": 1595.64, "end": 1596.04, "word": " It's", "probability": 0.6884765625}, {"start": 1596.04, "end": 1596.12, "word": " not", "probability": 0.90625}, {"start": 1596.12, "end": 1596.4, "word": " about", "probability": 0.4970703125}, {"start": 1596.4, "end": 1597.0, "word": " drawing.", "probability": 0.61767578125}, {"start": 1597.06, "end": 1597.18, "word": " It's", "probability": 0.53125}, {"start": 1597.18, "end": 1597.3, "word": " important", "probability": 0.60009765625}, {"start": 1597.3, "end": 1597.42, "word": " that", "probability": 0.56494140625}, {"start": 1597.42, "end": 1597.56, "word": " when", "probability": 0.83203125}, {"start": 1597.56, "end": 1597.64, "word": " I", "probability": 0.9091796875}, {"start": 1597.64, "end": 1597.82, "word": " click", "probability": 0.422119140625}, {"start": 1597.82, "end": 1597.98, "word": " on", "probability": 0.8544921875}, {"start": 1597.98, "end": 1598.04, "word": " the", "probability": 0.481689453125}, {"start": 1598.04, "end": 1598.28, "word": " draw", "probability": 0.5087890625}, {"start": 1598.28, "end": 1599.48, "word": " button,", "probability": 0.53173828125}, {"start": 1599.56, "end": 1599.9, "word": " and", "probability": 0.09552001953125}, {"start": 1599.9, "end": 1600.18, "word": " give", "probability": 0.466552734375}, {"start": 1600.18, "end": 1600.28, "word": " it", "probability": 0.83203125}, {"start": 1600.28, "end": 1600.32, "word": " the", "probability": 0.71630859375}, {"start": 1600.32, "end": 1600.6, "word": " place", "probability": 0.44921875}, {"start": 1600.6, "end": 1600.76, "word": " where", "probability": 0.6943359375}, {"start": 1600.76, "end": 1600.78, "word": " it", "probability": 0.74658203125}, {"start": 1600.78, "end": 1600.98, "word": " draws,", "probability": 0.484375}, {"start": 1601.24, "end": 1601.36, "word": " it", "probability": 0.7958984375}, {"start": 1601.36, "end": 1601.5, "word": " draws", "probability": 0.7939453125}, {"start": 1601.5, "end": 1601.7, "word": " the", "probability": 0.712890625}, {"start": 1601.7, "end": 1601.9, "word": " circle.", "probability": 0.947265625}, {"start": 1602.76, "end": 1602.98, "word": " Okay?", "probability": 0.438232421875}, {"start": 1604.14, "end": 1604.36, "word": " This", "probability": 0.208251953125}, {"start": 1604.36, "end": 1604.52, "word": " is", "probability": 0.78369140625}, {"start": 1604.52, "end": 1605.1, "word": " important.", "probability": 0.69775390625}, {"start": 1605.26, "end": 1605.34, "word": " I", "probability": 0.81640625}, {"start": 1605.34, "end": 1605.58, "word": " made", "probability": 0.59130859375}, {"start": 1605.58, "end": 1605.76, "word": " this", "probability": 0.92822265625}, {"start": 1605.76, "end": 1606.04, "word": " class", "probability": 0.9619140625}, {"start": 1606.04, "end": 1606.66, "word": " mainly", "probability": 0.2415771484375}, {"start": 1606.66, "end": 1607.16, "word": " to", "probability": 0.6796875}, {"start": 1607.16, "end": 1607.6, "word": " collect", "probability": 0.56298828125}, {"start": 1607.6, "end": 1608.8, "word": " this", "probability": 0.454345703125}, {"start": 1608.8, "end": 1609.18, "word": " information.", "probability": 0.8046875}, {"start": 1609.52, "end": 1609.88, "word": " In", "probability": 0.66455078125}, {"start": 1609.88, "end": 1610.36, "word": " one", "probability": 0.76025390625}, {"start": 1610.36, "end": 1610.58, "word": " thing.", "probability": 0.5322265625}], "temperature": 1.0}, {"id": 64, "seek": 163378, "start": 1612.1, "end": 1633.78, "text": "Same thing, I made another class called rectangle to collect the information of the rectangle. Width and height and position x and position y. And what is this? Constructor. And this is also what? Draw. But this is executed by a tool called draw rectangle. Now, I also have a third form which is mean.", "tokens": [50, 529, 551, 11, 286, 1027, 1071, 1508, 1219, 21930, 281, 2500, 264, 1589, 295, 264, 21930, 13, 28331, 392, 293, 6681, 293, 2535, 2031, 293, 2535, 288, 13, 400, 437, 307, 341, 30, 8574, 14535, 13, 400, 341, 307, 611, 437, 30, 20386, 13, 583, 341, 307, 17577, 538, 257, 2290, 1219, 2642, 21930, 13, 823, 11, 286, 611, 362, 257, 2636, 1254, 597, 307, 914, 13], "avg_logprob": -0.6195652208466461, "compression_ratio": 1.5925925925925926, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 1612.1, "end": 1612.42, "word": "Same", "probability": 0.529571533203125}, {"start": 1612.42, "end": 1612.68, "word": " thing,", "probability": 0.7529296875}, {"start": 1612.72, "end": 1612.76, "word": " I", "probability": 0.8544921875}, {"start": 1612.76, "end": 1612.94, "word": " made", "probability": 0.438720703125}, {"start": 1612.94, "end": 1613.06, "word": " another", "probability": 0.63330078125}, {"start": 1613.06, "end": 1613.3, "word": " class", "probability": 0.94287109375}, {"start": 1613.3, "end": 1613.76, "word": " called", "probability": 0.2137451171875}, {"start": 1613.76, "end": 1614.24, "word": " rectangle", "probability": 0.6708984375}, {"start": 1614.24, "end": 1615.42, "word": " to", "probability": 0.6416015625}, {"start": 1615.42, "end": 1615.76, "word": " collect", "probability": 0.403076171875}, {"start": 1615.76, "end": 1615.92, "word": " the", "probability": 0.2474365234375}, {"start": 1615.92, "end": 1616.2, "word": " information", "probability": 0.181396484375}, {"start": 1616.2, "end": 1617.56, "word": " of", "probability": 0.39599609375}, {"start": 1617.56, "end": 1617.6, "word": " the", "probability": 0.379150390625}, {"start": 1617.6, "end": 1617.94, "word": " rectangle.", "probability": 0.65869140625}, {"start": 1618.16, "end": 1618.58, "word": " Width", "probability": 0.689453125}, {"start": 1618.58, "end": 1618.7, "word": " and", "probability": 0.71435546875}, {"start": 1618.7, "end": 1619.06, "word": " height", "probability": 0.75927734375}, {"start": 1619.06, "end": 1619.52, "word": " and", "probability": 0.4482421875}, {"start": 1619.52, "end": 1619.86, "word": " position", "probability": 0.6806640625}, {"start": 1619.86, "end": 1620.12, "word": " x", "probability": 0.56201171875}, {"start": 1620.12, "end": 1620.28, "word": " and", "probability": 0.91943359375}, {"start": 1620.28, "end": 1620.58, "word": " position", "probability": 0.8583984375}, {"start": 1620.58, "end": 1621.54, "word": " y.", "probability": 0.96337890625}, {"start": 1622.22, "end": 1622.56, "word": " And", "probability": 0.1754150390625}, {"start": 1622.56, "end": 1622.72, "word": " what", "probability": 0.385009765625}, {"start": 1622.72, "end": 1622.72, "word": " is", "probability": 0.87744140625}, {"start": 1622.72, "end": 1622.84, "word": " this?", "probability": 0.8212890625}, {"start": 1624.08, "end": 1624.64, "word": " Constructor.", "probability": 0.8544921875}, {"start": 1625.54, "end": 1625.9, "word": " And", "probability": 0.60009765625}, {"start": 1625.9, "end": 1626.14, "word": " this", "probability": 0.47998046875}, {"start": 1626.14, "end": 1626.28, "word": " is", "probability": 0.48681640625}, {"start": 1626.28, "end": 1626.4, "word": " also", "probability": 0.67822265625}, {"start": 1626.4, "end": 1626.66, "word": " what?", "probability": 0.5029296875}, {"start": 1627.04, "end": 1627.6, "word": " Draw.", "probability": 0.74755859375}, {"start": 1627.74, "end": 1627.88, "word": " But", "probability": 0.465576171875}, {"start": 1627.88, "end": 1628.24, "word": " this", "probability": 0.150146484375}, {"start": 1628.24, "end": 1628.24, "word": " is", "probability": 0.280517578125}, {"start": 1628.24, "end": 1628.46, "word": " executed", "probability": 0.1275634765625}, {"start": 1628.46, "end": 1628.76, "word": " by", "probability": 0.28564453125}, {"start": 1628.76, "end": 1628.8, "word": " a", "probability": 0.84033203125}, {"start": 1628.8, "end": 1628.96, "word": " tool", "probability": 0.5732421875}, {"start": 1628.96, "end": 1629.26, "word": " called", "probability": 0.75341796875}, {"start": 1629.26, "end": 1629.54, "word": " draw", "probability": 0.58349609375}, {"start": 1629.54, "end": 1630.74, "word": " rectangle.", "probability": 0.775390625}, {"start": 1631.58, "end": 1631.9, "word": " Now,", "probability": 0.78759765625}, {"start": 1632.02, "end": 1632.36, "word": " I", "probability": 0.95556640625}, {"start": 1632.36, "end": 1632.54, "word": " also", "probability": 0.623046875}, {"start": 1632.54, "end": 1632.54, "word": " have", "probability": 0.9326171875}, {"start": 1632.54, "end": 1632.94, "word": " a", "probability": 0.8525390625}, {"start": 1632.94, "end": 1633.14, "word": " third", "probability": 0.89990234375}, {"start": 1633.14, "end": 1633.14, "word": " form", "probability": 0.50244140625}, {"start": 1633.14, "end": 1633.38, "word": " which", "probability": 0.4638671875}, {"start": 1633.38, "end": 1633.52, "word": " is", "probability": 0.94189453125}, {"start": 1633.52, "end": 1633.78, "word": " mean.", "probability": 0.2685546875}], "temperature": 1.0}, {"id": 65, "seek": 166408, "start": 1634.98, "end": 1664.08, "text": " The 7th circle. Did you find the solid circle thinking that it is a circle but it has additional information? So what does a new class or a new class of solid circle do? Extends the circle. That's it. It took everything above it. And it made a new attribute called what? Fill color. Those who are reviewing, what is it? All objects are oriented. Because what is this? Constructor. What does it take? Radius and x and y and color.", "tokens": [440, 1614, 392, 6329, 13, 2589, 291, 915, 264, 5100, 6329, 1953, 300, 309, 307, 257, 6329, 457, 309, 575, 4497, 1589, 30, 407, 437, 775, 257, 777, 1508, 420, 257, 777, 1508, 295, 5100, 6329, 360, 30, 9881, 2581, 264, 6329, 13, 663, 311, 309, 13, 467, 1890, 1203, 3673, 309, 13, 400, 309, 1027, 257, 777, 19667, 1219, 437, 30, 25315, 2017, 13, 3950, 567, 366, 19576, 11, 437, 307, 309, 30, 1057, 6565, 366, 21841, 13, 1436, 437, 307, 341, 30, 8574, 14535, 13, 708, 775, 309, 747, 30, 9654, 4872, 293, 2031, 293, 288, 293, 2017, 13], "avg_logprob": -0.4846813719646603, "compression_ratio": 1.6731517509727627, "no_speech_prob": 8.58306884765625e-06, "words": [{"start": 1634.98, "end": 1635.18, "word": " The", "probability": 0.25}, {"start": 1635.18, "end": 1635.48, "word": " 7th", "probability": 0.5625}, {"start": 1635.48, "end": 1635.84, "word": " circle.", "probability": 0.8515625}, {"start": 1636.38, "end": 1636.54, "word": " Did", "probability": 0.2274169921875}, {"start": 1636.54, "end": 1636.56, "word": " you", "probability": 0.95947265625}, {"start": 1636.56, "end": 1636.66, "word": " find", "probability": 0.341796875}, {"start": 1636.66, "end": 1636.8, "word": " the", "probability": 0.5693359375}, {"start": 1636.8, "end": 1637.04, "word": " solid", "probability": 0.92529296875}, {"start": 1637.04, "end": 1637.46, "word": " circle", "probability": 0.93505859375}, {"start": 1637.46, "end": 1638.06, "word": " thinking", "probability": 0.431640625}, {"start": 1638.06, "end": 1638.4, "word": " that", "probability": 0.5458984375}, {"start": 1638.4, "end": 1638.58, "word": " it", "probability": 0.85595703125}, {"start": 1638.58, "end": 1638.66, "word": " is", "probability": 0.69091796875}, {"start": 1638.66, "end": 1639.0, "word": " a", "probability": 0.75830078125}, {"start": 1639.0, "end": 1639.46, "word": " circle", "probability": 0.95703125}, {"start": 1639.46, "end": 1639.66, "word": " but", "probability": 0.435546875}, {"start": 1639.66, "end": 1639.76, "word": " it", "probability": 0.52978515625}, {"start": 1639.76, "end": 1639.86, "word": " has", "probability": 0.90283203125}, {"start": 1639.86, "end": 1639.94, "word": " additional", "probability": 0.52978515625}, {"start": 1639.94, "end": 1640.56, "word": " information?", "probability": 0.68896484375}, {"start": 1641.66, "end": 1641.9, "word": " So", "probability": 0.6240234375}, {"start": 1641.9, "end": 1642.08, "word": " what", "probability": 0.469482421875}, {"start": 1642.08, "end": 1642.08, "word": " does", "probability": 0.3779296875}, {"start": 1642.08, "end": 1642.36, "word": " a", "probability": 0.484619140625}, {"start": 1642.36, "end": 1642.42, "word": " new", "probability": 0.8515625}, {"start": 1642.42, "end": 1642.74, "word": " class", "probability": 0.95068359375}, {"start": 1642.74, "end": 1643.18, "word": " or", "probability": 0.2037353515625}, {"start": 1643.18, "end": 1644.08, "word": " a", "probability": 0.60546875}, {"start": 1644.08, "end": 1644.2, "word": " new", "probability": 0.85791015625}, {"start": 1644.2, "end": 1644.5, "word": " class", "probability": 0.7998046875}, {"start": 1644.5, "end": 1644.78, "word": " of", "probability": 0.55224609375}, {"start": 1644.78, "end": 1645.06, "word": " solid", "probability": 0.5048828125}, {"start": 1645.06, "end": 1645.38, "word": " circle", "probability": 0.55322265625}, {"start": 1645.38, "end": 1645.38, "word": " do?", "probability": 0.49072265625}, {"start": 1645.5, "end": 1645.98, "word": " Extends", "probability": 0.789794921875}, {"start": 1645.98, "end": 1646.64, "word": " the", "probability": 0.58056640625}, {"start": 1646.64, "end": 1646.84, "word": " circle.", "probability": 0.93408203125}, {"start": 1646.96, "end": 1647.06, "word": " That's", "probability": 0.548828125}, {"start": 1647.06, "end": 1647.12, "word": " it.", "probability": 0.8798828125}, {"start": 1647.16, "end": 1647.22, "word": " It", "probability": 0.65673828125}, {"start": 1647.22, "end": 1647.38, "word": " took", "probability": 0.59033203125}, {"start": 1647.38, "end": 1647.6, "word": " everything", "probability": 0.810546875}, {"start": 1647.6, "end": 1647.9, "word": " above", "probability": 0.58837890625}, {"start": 1647.9, "end": 1648.02, "word": " it.", "probability": 0.43310546875}, {"start": 1648.48, "end": 1648.74, "word": " And", "probability": 0.830078125}, {"start": 1648.74, "end": 1648.8, "word": " it", "probability": 0.2255859375}, {"start": 1648.8, "end": 1648.94, "word": " made", "probability": 0.578125}, {"start": 1648.94, "end": 1649.02, "word": " a", "probability": 0.96337890625}, {"start": 1649.02, "end": 1649.02, "word": " new", "probability": 0.9072265625}, {"start": 1649.02, "end": 1649.44, "word": " attribute", "probability": 0.96337890625}, {"start": 1649.44, "end": 1650.02, "word": " called", "probability": 0.51513671875}, {"start": 1650.02, "end": 1650.36, "word": " what?", "probability": 0.8564453125}, {"start": 1651.28, "end": 1651.56, "word": " Fill", "probability": 0.66015625}, {"start": 1651.56, "end": 1651.86, "word": " color.", "probability": 0.783203125}, {"start": 1654.06, "end": 1654.26, "word": " Those", "probability": 0.09466552734375}, {"start": 1654.26, "end": 1654.32, "word": " who", "probability": 0.61962890625}, {"start": 1654.32, "end": 1654.44, "word": " are", "probability": 0.736328125}, {"start": 1654.44, "end": 1654.66, "word": " reviewing,", "probability": 0.349853515625}, {"start": 1654.82, "end": 1655.18, "word": " what", "probability": 0.6201171875}, {"start": 1655.18, "end": 1655.18, "word": " is", "probability": 0.52392578125}, {"start": 1655.18, "end": 1655.32, "word": " it?", "probability": 0.466064453125}, {"start": 1655.32, "end": 1655.52, "word": " All", "probability": 0.630859375}, {"start": 1655.52, "end": 1656.42, "word": " objects", "probability": 0.384521484375}, {"start": 1656.42, "end": 1656.5, "word": " are", "probability": 0.52099609375}, {"start": 1656.5, "end": 1656.8, "word": " oriented.", "probability": 0.865234375}, {"start": 1657.14, "end": 1657.38, "word": " Because", "probability": 0.75244140625}, {"start": 1657.38, "end": 1657.6, "word": " what", "probability": 0.84765625}, {"start": 1657.6, "end": 1657.62, "word": " is", "probability": 0.9267578125}, {"start": 1657.62, "end": 1657.86, "word": " this?", "probability": 0.78125}, {"start": 1659.68, "end": 1660.16, "word": " Constructor.", "probability": 0.880859375}, {"start": 1660.68, "end": 1660.9, "word": " What", "probability": 0.81787109375}, {"start": 1660.9, "end": 1660.98, "word": " does", "probability": 0.7314453125}, {"start": 1660.98, "end": 1661.08, "word": " it", "probability": 0.8408203125}, {"start": 1661.08, "end": 1661.36, "word": " take?", "probability": 0.822265625}, {"start": 1661.76, "end": 1662.24, "word": " Radius", "probability": 0.7230224609375}, {"start": 1662.24, "end": 1662.36, "word": " and", "probability": 0.452880859375}, {"start": 1662.36, "end": 1662.64, "word": " x", "probability": 0.681640625}, {"start": 1662.64, "end": 1662.8, "word": " and", "probability": 0.47705078125}, {"start": 1662.8, "end": 1663.12, "word": " y", "probability": 0.9765625}, {"start": 1663.12, "end": 1663.72, "word": " and", "probability": 0.74951171875}, {"start": 1663.72, "end": 1664.08, "word": " color.", "probability": 0.8447265625}], "temperature": 1.0}, {"id": 66, "seek": 168811, "start": 1666.09, "end": 1688.11, "text": " Right? And they call it super because they are super constructors. Okay? And it initializes the field color that is present here. Do you see the drawing that is present in the third circle? Do you see it? See what I want to do with it. The drone here, what does it do? It calls super dot drone. That is, when I draw a semicircle, I want to draw the circle", "tokens": [1779, 30, 400, 436, 818, 309, 1687, 570, 436, 366, 1687, 7690, 830, 13, 1033, 30, 400, 309, 5883, 5660, 264, 2519, 2017, 300, 307, 1974, 510, 13, 1144, 291, 536, 264, 274, 5131, 278, 300, 307, 1974, 294, 264, 2636, 6329, 30, 1144, 291, 536, 309, 30, 3008, 437, 286, 528, 281, 360, 365, 309, 13, 440, 13852, 510, 11, 437, 775, 309, 360, 30, 467, 5498, 1687, 5893, 13852, 13, 663, 307, 11, 562, 286, 2642, 257, 27515, 347, 2160, 11, 286, 528, 281, 2642, 264, 6329], "avg_logprob": -0.49513890345891315, "compression_ratio": 1.7198067632850242, "no_speech_prob": 2.5510787963867188e-05, "words": [{"start": 1666.09, "end": 1666.49, "word": " Right?", "probability": 0.260009765625}, {"start": 1666.49, "end": 1666.89, "word": " And", "probability": 0.50244140625}, {"start": 1666.89, "end": 1667.07, "word": " they", "probability": 0.12188720703125}, {"start": 1667.07, "end": 1667.25, "word": " call", "probability": 0.26220703125}, {"start": 1667.25, "end": 1667.37, "word": " it", "probability": 0.56103515625}, {"start": 1667.37, "end": 1667.69, "word": " super", "probability": 0.451904296875}, {"start": 1667.69, "end": 1668.05, "word": " because", "probability": 0.6357421875}, {"start": 1668.05, "end": 1668.47, "word": " they", "probability": 0.44140625}, {"start": 1668.47, "end": 1668.79, "word": " are", "probability": 0.495849609375}, {"start": 1668.79, "end": 1669.43, "word": " super", "probability": 0.556640625}, {"start": 1669.43, "end": 1670.13, "word": " constructors.", "probability": 0.819580078125}, {"start": 1670.59, "end": 1670.99, "word": " Okay?", "probability": 0.16943359375}, {"start": 1671.75, "end": 1671.93, "word": " And", "probability": 0.68798828125}, {"start": 1671.93, "end": 1672.41, "word": " it", "probability": 0.23876953125}, {"start": 1672.41, "end": 1673.43, "word": " initializes", "probability": 0.73193359375}, {"start": 1673.43, "end": 1673.59, "word": " the", "probability": 0.67431640625}, {"start": 1673.59, "end": 1673.75, "word": " field", "probability": 0.4580078125}, {"start": 1673.75, "end": 1673.99, "word": " color", "probability": 0.76611328125}, {"start": 1673.99, "end": 1674.09, "word": " that", "probability": 0.330078125}, {"start": 1674.09, "end": 1674.19, "word": " is", "probability": 0.6357421875}, {"start": 1674.19, "end": 1674.39, "word": " present", "probability": 0.24951171875}, {"start": 1674.39, "end": 1674.71, "word": " here.", "probability": 0.74365234375}, {"start": 1674.93, "end": 1675.03, "word": " Do", "probability": 0.27294921875}, {"start": 1675.03, "end": 1675.03, "word": " you", "probability": 0.97216796875}, {"start": 1675.03, "end": 1675.15, "word": " see", "probability": 0.802734375}, {"start": 1675.15, "end": 1675.31, "word": " the", "probability": 0.873046875}, {"start": 1675.31, "end": 1675.77, "word": " drawing", "probability": 0.5318806966145834}, {"start": 1675.77, "end": 1675.89, "word": " that", "probability": 0.475830078125}, {"start": 1675.89, "end": 1675.99, "word": " is", "probability": 0.8251953125}, {"start": 1675.99, "end": 1676.17, "word": " present", "probability": 0.52880859375}, {"start": 1676.17, "end": 1676.29, "word": " in", "probability": 0.82080078125}, {"start": 1676.29, "end": 1676.39, "word": " the", "probability": 0.712890625}, {"start": 1676.39, "end": 1676.55, "word": " third", "probability": 0.2401123046875}, {"start": 1676.55, "end": 1676.97, "word": " circle?", "probability": 0.9599609375}, {"start": 1678.17, "end": 1678.33, "word": " Do", "probability": 0.63330078125}, {"start": 1678.33, "end": 1678.35, "word": " you", "probability": 0.96923828125}, {"start": 1678.35, "end": 1678.49, "word": " see", "probability": 0.884765625}, {"start": 1678.49, "end": 1678.65, "word": " it?", "probability": 0.62158203125}, {"start": 1678.79, "end": 1678.99, "word": " See", "probability": 0.492919921875}, {"start": 1678.99, "end": 1679.11, "word": " what", "probability": 0.921875}, {"start": 1679.11, "end": 1679.31, "word": " I", "probability": 0.320556640625}, {"start": 1679.31, "end": 1679.31, "word": " want", "probability": 0.281982421875}, {"start": 1679.31, "end": 1679.33, "word": " to", "probability": 0.95361328125}, {"start": 1679.33, "end": 1679.49, "word": " do", "probability": 0.94140625}, {"start": 1679.49, "end": 1679.61, "word": " with", "probability": 0.7490234375}, {"start": 1679.61, "end": 1679.85, "word": " it.", "probability": 0.90478515625}, {"start": 1680.37, "end": 1680.51, "word": " The", "probability": 0.4951171875}, {"start": 1680.51, "end": 1680.77, "word": " drone", "probability": 0.2469482421875}, {"start": 1680.77, "end": 1681.17, "word": " here,", "probability": 0.6591796875}, {"start": 1681.33, "end": 1681.51, "word": " what", "probability": 0.88720703125}, {"start": 1681.51, "end": 1681.67, "word": " does", "probability": 0.685546875}, {"start": 1681.67, "end": 1681.69, "word": " it", "probability": 0.93896484375}, {"start": 1681.69, "end": 1681.97, "word": " do?", "probability": 0.95556640625}, {"start": 1682.79, "end": 1683.19, "word": " It", "probability": 0.77001953125}, {"start": 1683.19, "end": 1683.45, "word": " calls", "probability": 0.59765625}, {"start": 1683.45, "end": 1683.83, "word": " super", "probability": 0.6494140625}, {"start": 1683.83, "end": 1684.07, "word": " dot", "probability": 0.40625}, {"start": 1684.07, "end": 1684.41, "word": " drone.", "probability": 0.91552734375}, {"start": 1684.93, "end": 1685.01, "word": " That", "probability": 0.312744140625}, {"start": 1685.01, "end": 1685.11, "word": " is,", "probability": 0.8603515625}, {"start": 1685.21, "end": 1685.47, "word": " when", "probability": 0.9033203125}, {"start": 1685.47, "end": 1685.59, "word": " I", "probability": 0.99072265625}, {"start": 1685.59, "end": 1685.73, "word": " draw", "probability": 0.9306640625}, {"start": 1685.73, "end": 1686.01, "word": " a", "probability": 0.95556640625}, {"start": 1686.01, "end": 1686.59, "word": " semicircle,", "probability": 0.7418619791666666}, {"start": 1686.67, "end": 1687.25, "word": " I", "probability": 0.955078125}, {"start": 1687.25, "end": 1687.35, "word": " want", "probability": 0.71240234375}, {"start": 1687.35, "end": 1687.43, "word": " to", "probability": 0.9658203125}, {"start": 1687.43, "end": 1687.59, "word": " draw", "probability": 0.927734375}, {"start": 1687.59, "end": 1687.79, "word": " the", "probability": 0.53466796875}, {"start": 1687.79, "end": 1688.11, "word": " circle", "probability": 0.84033203125}], "temperature": 1.0}, {"id": 67, "seek": 171431, "start": 1689.07, "end": 1714.31, "text": " And then I filled it. So I made it follow the draw of the parent. As we were in the employee in the GATE report, do you remember? We used to follow the GATE report of the parent to get the main report and then do something extra. Here I followed the super to draw. And then I put the fill color and the fill what? Fill oval. This is what I filled. So here I drew it through ... I made the father draw a part and here I drew another part.", "tokens": [400, 550, 286, 6412, 309, 13, 407, 286, 1027, 309, 1524, 264, 2642, 295, 264, 2596, 13, 1018, 321, 645, 294, 264, 10738, 294, 264, 460, 20047, 2275, 11, 360, 291, 1604, 30, 492, 1143, 281, 1524, 264, 460, 20047, 2275, 295, 264, 2596, 281, 483, 264, 2135, 2275, 293, 550, 360, 746, 2857, 13, 1692, 286, 6263, 264, 1687, 281, 2642, 13, 400, 550, 286, 829, 264, 2836, 2017, 293, 264, 2836, 437, 30, 25315, 37175, 13, 639, 307, 437, 286, 6412, 13, 407, 510, 286, 12804, 309, 807, 1097, 286, 1027, 264, 3086, 2642, 257, 644, 293, 510, 286, 12804, 1071, 644, 13], "avg_logprob": -0.5259434091594984, "compression_ratio": 1.8638297872340426, "no_speech_prob": 4.291534423828125e-06, "words": [{"start": 1689.07, "end": 1689.25, "word": " And", "probability": 0.1943359375}, {"start": 1689.25, "end": 1689.45, "word": " then", "probability": 0.72119140625}, {"start": 1689.45, "end": 1689.57, "word": " I", "probability": 0.50537109375}, {"start": 1689.57, "end": 1689.73, "word": " filled", "probability": 0.419921875}, {"start": 1689.73, "end": 1689.85, "word": " it.", "probability": 0.57666015625}, {"start": 1690.35, "end": 1690.59, "word": " So", "probability": 0.51025390625}, {"start": 1690.59, "end": 1690.99, "word": " I", "probability": 0.58251953125}, {"start": 1690.99, "end": 1690.99, "word": " made", "probability": 0.54638671875}, {"start": 1690.99, "end": 1691.63, "word": " it", "probability": 0.484130859375}, {"start": 1691.63, "end": 1691.87, "word": " follow", "probability": 0.1756591796875}, {"start": 1691.87, "end": 1692.11, "word": " the", "probability": 0.83984375}, {"start": 1692.11, "end": 1692.37, "word": " draw", "probability": 0.19970703125}, {"start": 1692.37, "end": 1692.55, "word": " of", "probability": 0.79833984375}, {"start": 1692.55, "end": 1692.79, "word": " the", "probability": 0.81201171875}, {"start": 1692.79, "end": 1693.05, "word": " parent.", "probability": 0.9140625}, {"start": 1694.19, "end": 1694.59, "word": " As", "probability": 0.1356201171875}, {"start": 1694.59, "end": 1694.91, "word": " we", "probability": 0.7783203125}, {"start": 1694.91, "end": 1695.11, "word": " were", "probability": 0.60498046875}, {"start": 1695.11, "end": 1695.25, "word": " in", "probability": 0.67431640625}, {"start": 1695.25, "end": 1695.37, "word": " the", "probability": 0.7685546875}, {"start": 1695.37, "end": 1695.83, "word": " employee", "probability": 0.42626953125}, {"start": 1695.83, "end": 1696.13, "word": " in", "probability": 0.378173828125}, {"start": 1696.13, "end": 1696.15, "word": " the", "probability": 0.6728515625}, {"start": 1696.15, "end": 1696.29, "word": " GATE", "probability": 0.3209228515625}, {"start": 1696.29, "end": 1696.65, "word": " report,", "probability": 0.78515625}, {"start": 1696.73, "end": 1696.79, "word": " do", "probability": 0.412353515625}, {"start": 1696.79, "end": 1696.79, "word": " you", "probability": 0.97265625}, {"start": 1696.79, "end": 1696.99, "word": " remember?", "probability": 0.8642578125}, {"start": 1697.73, "end": 1698.13, "word": " We", "probability": 0.59814453125}, {"start": 1698.13, "end": 1698.13, "word": " used", "probability": 0.27978515625}, {"start": 1698.13, "end": 1698.45, "word": " to", "probability": 0.9638671875}, {"start": 1698.45, "end": 1698.45, "word": " follow", "probability": 0.8369140625}, {"start": 1698.45, "end": 1698.53, "word": " the", "probability": 0.8779296875}, {"start": 1698.53, "end": 1698.71, "word": " GATE", "probability": 0.87890625}, {"start": 1698.71, "end": 1698.95, "word": " report", "probability": 0.94482421875}, {"start": 1698.95, "end": 1699.13, "word": " of", "probability": 0.8349609375}, {"start": 1699.13, "end": 1699.29, "word": " the", "probability": 0.896484375}, {"start": 1699.29, "end": 1699.53, "word": " parent", "probability": 0.90625}, {"start": 1699.53, "end": 1699.77, "word": " to", "probability": 0.79248046875}, {"start": 1699.77, "end": 1699.97, "word": " get", "probability": 0.70751953125}, {"start": 1699.97, "end": 1700.09, "word": " the", "probability": 0.8935546875}, {"start": 1700.09, "end": 1700.13, "word": " main", "probability": 0.400390625}, {"start": 1700.13, "end": 1700.79, "word": " report", "probability": 0.93017578125}, {"start": 1700.79, "end": 1700.97, "word": " and", "probability": 0.3681640625}, {"start": 1700.97, "end": 1701.13, "word": " then", "probability": 0.78466796875}, {"start": 1701.13, "end": 1701.39, "word": " do", "probability": 0.55615234375}, {"start": 1701.39, "end": 1701.55, "word": " something", "probability": 0.75732421875}, {"start": 1701.55, "end": 1701.85, "word": " extra.", "probability": 0.305908203125}, {"start": 1702.41, "end": 1702.73, "word": " Here", "probability": 0.76611328125}, {"start": 1702.73, "end": 1702.77, "word": " I", "probability": 0.7529296875}, {"start": 1702.77, "end": 1703.03, "word": " followed", "probability": 0.69921875}, {"start": 1703.03, "end": 1703.25, "word": " the", "probability": 0.51708984375}, {"start": 1703.25, "end": 1703.47, "word": " super", "probability": 0.5927734375}, {"start": 1703.47, "end": 1703.63, "word": " to", "probability": 0.1402587890625}, {"start": 1703.63, "end": 1703.87, "word": " draw.", "probability": 0.67578125}, {"start": 1704.35, "end": 1704.55, "word": " And", "probability": 0.7822265625}, {"start": 1704.55, "end": 1704.75, "word": " then", "probability": 0.826171875}, {"start": 1704.75, "end": 1704.83, "word": " I", "probability": 0.51806640625}, {"start": 1704.83, "end": 1705.01, "word": " put", "probability": 0.269287109375}, {"start": 1705.01, "end": 1705.51, "word": " the", "probability": 0.69775390625}, {"start": 1705.51, "end": 1705.65, "word": " fill", "probability": 0.822265625}, {"start": 1705.65, "end": 1705.97, "word": " color", "probability": 0.8662109375}, {"start": 1705.97, "end": 1706.15, "word": " and", "probability": 0.61865234375}, {"start": 1706.15, "end": 1706.21, "word": " the", "probability": 0.22607421875}, {"start": 1706.21, "end": 1706.71, "word": " fill", "probability": 0.75}, {"start": 1706.71, "end": 1707.07, "word": " what?", "probability": 0.391845703125}, {"start": 1707.75, "end": 1708.01, "word": " Fill", "probability": 0.74755859375}, {"start": 1708.01, "end": 1708.29, "word": " oval.", "probability": 0.8203125}, {"start": 1708.35, "end": 1708.47, "word": " This", "probability": 0.54248046875}, {"start": 1708.47, "end": 1708.53, "word": " is", "probability": 0.54736328125}, {"start": 1708.53, "end": 1708.63, "word": " what", "probability": 0.5888671875}, {"start": 1708.63, "end": 1708.71, "word": " I", "probability": 0.33837890625}, {"start": 1708.71, "end": 1708.93, "word": " filled.", "probability": 0.513671875}, {"start": 1710.31, "end": 1710.71, "word": " So", "probability": 0.358642578125}, {"start": 1710.71, "end": 1710.85, "word": " here", "probability": 0.77783203125}, {"start": 1710.85, "end": 1710.91, "word": " I", "probability": 0.8896484375}, {"start": 1710.91, "end": 1711.13, "word": " drew", "probability": 0.77880859375}, {"start": 1711.13, "end": 1711.27, "word": " it", "probability": 0.5244140625}, {"start": 1711.27, "end": 1711.35, "word": " through", "probability": 0.23193359375}, {"start": 1711.35, "end": 1711.57, "word": " ...", "probability": 0.1405029296875}, {"start": 1711.57, "end": 1711.67, "word": " I", "probability": 0.87939453125}, {"start": 1711.67, "end": 1711.83, "word": " made", "probability": 0.7001953125}, {"start": 1711.83, "end": 1711.95, "word": " the", "probability": 0.869140625}, {"start": 1711.95, "end": 1712.07, "word": " father", "probability": 0.6796875}, {"start": 1712.07, "end": 1712.37, "word": " draw", "probability": 0.88916015625}, {"start": 1712.37, "end": 1712.49, "word": " a", "probability": 0.65185546875}, {"start": 1712.49, "end": 1712.65, "word": " part", "probability": 0.82080078125}, {"start": 1712.65, "end": 1712.79, "word": " and", "probability": 0.78955078125}, {"start": 1712.79, "end": 1712.93, "word": " here", "probability": 0.7236328125}, {"start": 1712.93, "end": 1713.01, "word": " I", "probability": 0.8251953125}, {"start": 1713.01, "end": 1713.25, "word": " drew", "probability": 0.9140625}, {"start": 1713.25, "end": 1714.15, "word": " another", "probability": 0.69921875}, {"start": 1714.15, "end": 1714.31, "word": " part.", "probability": 0.88720703125}], "temperature": 1.0}, {"id": 68, "seek": 173587, "start": 1716.89, "end": 1735.87, "text": "Okay, so far everything is fine. Once again, why did I make this class? So that I can collect all the data together. Okay, I came now to make my program. So far, we have represented these objects, but we have not used them, okay? At the user interface, which is the main interface that you saw a while ago, this one.", "tokens": [8297, 11, 370, 1400, 1203, 307, 2489, 13, 3443, 797, 11, 983, 630, 286, 652, 341, 1508, 30, 407, 300, 286, 393, 2500, 439, 264, 1412, 1214, 13, 1033, 11, 286, 1361, 586, 281, 652, 452, 1461, 13, 407, 1400, 11, 321, 362, 10379, 613, 6565, 11, 457, 321, 362, 406, 1143, 552, 11, 1392, 30, 1711, 264, 4195, 9226, 11, 597, 307, 264, 2135, 9226, 300, 291, 1866, 257, 1339, 2057, 11, 341, 472, 13], "avg_logprob": -0.5247565213736002, "compression_ratio": 1.5490196078431373, "no_speech_prob": 1.2695789337158203e-05, "words": [{"start": 1716.89, "end": 1717.23, "word": "Okay,", "probability": 0.19775390625}, {"start": 1717.31, "end": 1717.39, "word": " so", "probability": 0.219970703125}, {"start": 1717.39, "end": 1717.63, "word": " far", "probability": 0.80712890625}, {"start": 1717.63, "end": 1718.09, "word": " everything", "probability": 0.210693359375}, {"start": 1718.09, "end": 1718.33, "word": " is", "probability": 0.748046875}, {"start": 1718.33, "end": 1718.33, "word": " fine.", "probability": 0.262939453125}, {"start": 1718.77, "end": 1718.99, "word": " Once", "probability": 0.1700439453125}, {"start": 1718.99, "end": 1719.17, "word": " again,", "probability": 0.75341796875}, {"start": 1719.23, "end": 1719.39, "word": " why", "probability": 0.85888671875}, {"start": 1719.39, "end": 1719.47, "word": " did", "probability": 0.8359375}, {"start": 1719.47, "end": 1719.47, "word": " I", "probability": 0.89599609375}, {"start": 1719.47, "end": 1719.61, "word": " make", "probability": 0.50830078125}, {"start": 1719.61, "end": 1719.77, "word": " this", "probability": 0.8427734375}, {"start": 1719.77, "end": 1720.07, "word": " class?", "probability": 0.88720703125}, {"start": 1721.17, "end": 1721.57, "word": " So", "probability": 0.251708984375}, {"start": 1721.57, "end": 1721.69, "word": " that", "probability": 0.70947265625}, {"start": 1721.69, "end": 1721.75, "word": " I", "probability": 0.88818359375}, {"start": 1721.75, "end": 1721.83, "word": " can", "probability": 0.6884765625}, {"start": 1721.83, "end": 1721.97, "word": " collect", "probability": 0.2119140625}, {"start": 1721.97, "end": 1722.13, "word": " all", "probability": 0.82421875}, {"start": 1722.13, "end": 1722.13, "word": " the", "probability": 0.6376953125}, {"start": 1722.13, "end": 1722.47, "word": " data", "probability": 0.7685546875}, {"start": 1722.47, "end": 1723.61, "word": " together.", "probability": 0.5380859375}, {"start": 1723.91, "end": 1724.15, "word": " Okay,", "probability": 0.4560546875}, {"start": 1725.21, "end": 1725.85, "word": " I", "probability": 0.5615234375}, {"start": 1725.85, "end": 1726.01, "word": " came", "probability": 0.363525390625}, {"start": 1726.01, "end": 1726.25, "word": " now", "probability": 0.251220703125}, {"start": 1726.25, "end": 1726.33, "word": " to", "probability": 0.60009765625}, {"start": 1726.33, "end": 1726.51, "word": " make", "probability": 0.4775390625}, {"start": 1726.51, "end": 1726.85, "word": " my", "probability": 0.6279296875}, {"start": 1726.85, "end": 1727.35, "word": " program.", "probability": 0.65234375}, {"start": 1727.71, "end": 1727.83, "word": " So", "probability": 0.18896484375}, {"start": 1727.83, "end": 1728.09, "word": " far,", "probability": 0.90185546875}, {"start": 1728.19, "end": 1728.37, "word": " we", "probability": 0.75537109375}, {"start": 1728.37, "end": 1728.49, "word": " have", "probability": 0.53515625}, {"start": 1728.49, "end": 1728.77, "word": " represented", "probability": 0.401611328125}, {"start": 1728.77, "end": 1728.99, "word": " these", "probability": 0.61962890625}, {"start": 1728.99, "end": 1729.37, "word": " objects,", "probability": 0.9599609375}, {"start": 1729.57, "end": 1729.69, "word": " but", "probability": 0.88330078125}, {"start": 1729.69, "end": 1729.79, "word": " we", "probability": 0.85107421875}, {"start": 1729.79, "end": 1729.79, "word": " have", "probability": 0.5322265625}, {"start": 1729.79, "end": 1729.83, "word": " not", "probability": 0.92822265625}, {"start": 1729.83, "end": 1730.15, "word": " used", "probability": 0.90625}, {"start": 1730.15, "end": 1730.51, "word": " them,", "probability": 0.89111328125}, {"start": 1730.77, "end": 1731.01, "word": " okay?", "probability": 0.71533203125}, {"start": 1731.61, "end": 1731.87, "word": " At", "probability": 0.374267578125}, {"start": 1731.87, "end": 1731.95, "word": " the", "probability": 0.7666015625}, {"start": 1731.95, "end": 1732.15, "word": " user", "probability": 0.88330078125}, {"start": 1732.15, "end": 1732.75, "word": " interface,", "probability": 0.89111328125}, {"start": 1732.93, "end": 1733.03, "word": " which", "probability": 0.85595703125}, {"start": 1733.03, "end": 1733.09, "word": " is", "probability": 0.931640625}, {"start": 1733.09, "end": 1733.23, "word": " the", "probability": 0.85498046875}, {"start": 1733.23, "end": 1733.33, "word": " main", "probability": 0.7236328125}, {"start": 1733.33, "end": 1733.95, "word": " interface", "probability": 0.3076171875}, {"start": 1733.95, "end": 1734.13, "word": " that", "probability": 0.60400390625}, {"start": 1734.13, "end": 1734.17, "word": " you", "probability": 0.95556640625}, {"start": 1734.17, "end": 1734.43, "word": " saw", "probability": 0.5693359375}, {"start": 1734.43, "end": 1734.59, "word": " a", "probability": 0.63671875}, {"start": 1734.59, "end": 1734.91, "word": " while", "probability": 0.64892578125}, {"start": 1734.91, "end": 1735.01, "word": " ago,", "probability": 0.89501953125}, {"start": 1735.51, "end": 1735.77, "word": " this", "probability": 0.794921875}, {"start": 1735.77, "end": 1735.87, "word": " one.", "probability": 0.80419921875}], "temperature": 1.0}, {"id": 69, "seek": 176516, "start": 1739.3, "end": 1765.16, "text": " This is a drawing space, and these are buttons. We are not talking about GUI, but let me give you a quick example to get the idea. Our topic is not GUI, but how the program is designed. In Java, one of the ways to create a GUI is to create a window and extend it to a class called JFrame. JFrame is a ready window.", "tokens": [639, 307, 257, 6316, 1901, 11, 293, 613, 366, 9905, 13, 492, 366, 406, 1417, 466, 17917, 40, 11, 457, 718, 385, 976, 291, 257, 1702, 1365, 281, 483, 264, 1558, 13, 2621, 4829, 307, 406, 17917, 40, 11, 457, 577, 264, 1461, 307, 4761, 13, 682, 10745, 11, 472, 295, 264, 2098, 281, 1884, 257, 17917, 40, 307, 281, 1884, 257, 4910, 293, 10101, 309, 281, 257, 1508, 1219, 508, 40305, 529, 13, 508, 40305, 529, 307, 257, 1919, 4910, 13], "avg_logprob": -0.5267319406371519, "compression_ratio": 1.5441176470588236, "no_speech_prob": 8.52346420288086e-06, "words": [{"start": 1739.3, "end": 1739.56, "word": " This", "probability": 0.1536865234375}, {"start": 1739.56, "end": 1739.8, "word": " is", "probability": 0.52587890625}, {"start": 1739.8, "end": 1740.84, "word": " a", "probability": 0.282958984375}, {"start": 1740.84, "end": 1740.84, "word": " drawing", "probability": 0.60546875}, {"start": 1740.84, "end": 1741.94, "word": " space,", "probability": 0.257080078125}, {"start": 1742.06, "end": 1742.68, "word": " and", "probability": 0.6787109375}, {"start": 1742.68, "end": 1742.82, "word": " these", "probability": 0.6298828125}, {"start": 1742.82, "end": 1742.92, "word": " are", "probability": 0.84033203125}, {"start": 1742.92, "end": 1743.3, "word": " buttons.", "probability": 0.68310546875}, {"start": 1744.68, "end": 1745.2, "word": " We", "probability": 0.168701171875}, {"start": 1745.2, "end": 1745.28, "word": " are", "probability": 0.386962890625}, {"start": 1745.28, "end": 1745.42, "word": " not", "probability": 0.93359375}, {"start": 1745.42, "end": 1745.68, "word": " talking", "probability": 0.421630859375}, {"start": 1745.68, "end": 1745.76, "word": " about", "probability": 0.90869140625}, {"start": 1745.76, "end": 1746.34, "word": " GUI,", "probability": 0.7705078125}, {"start": 1747.16, "end": 1747.32, "word": " but", "probability": 0.69189453125}, {"start": 1747.32, "end": 1747.64, "word": " let", "probability": 0.235595703125}, {"start": 1747.64, "end": 1747.82, "word": " me", "probability": 0.63330078125}, {"start": 1747.82, "end": 1748.52, "word": " give", "probability": 0.748046875}, {"start": 1748.52, "end": 1748.66, "word": " you", "probability": 0.9326171875}, {"start": 1748.66, "end": 1748.7, "word": " a", "probability": 0.74658203125}, {"start": 1748.7, "end": 1749.18, "word": " quick", "probability": 0.7177734375}, {"start": 1749.18, "end": 1749.18, "word": " example", "probability": 0.58935546875}, {"start": 1749.18, "end": 1749.42, "word": " to", "probability": 0.50390625}, {"start": 1749.42, "end": 1749.66, "word": " get", "probability": 0.446044921875}, {"start": 1749.66, "end": 1749.76, "word": " the", "probability": 0.3447265625}, {"start": 1749.76, "end": 1750.0, "word": " idea.", "probability": 0.81298828125}, {"start": 1750.14, "end": 1750.22, "word": " Our", "probability": 0.275634765625}, {"start": 1750.22, "end": 1750.42, "word": " topic", "probability": 0.62060546875}, {"start": 1750.42, "end": 1750.68, "word": " is", "probability": 0.876953125}, {"start": 1750.68, "end": 1750.74, "word": " not", "probability": 0.91162109375}, {"start": 1750.74, "end": 1751.34, "word": " GUI,", "probability": 0.750244140625}, {"start": 1751.42, "end": 1751.6, "word": " but", "probability": 0.7470703125}, {"start": 1751.6, "end": 1751.68, "word": " how", "probability": 0.386474609375}, {"start": 1751.68, "end": 1752.1, "word": " the", "probability": 0.3271484375}, {"start": 1752.1, "end": 1752.48, "word": " program", "probability": 0.4541015625}, {"start": 1752.48, "end": 1752.88, "word": " is", "probability": 0.300537109375}, {"start": 1752.88, "end": 1753.2, "word": " designed.", "probability": 0.78125}, {"start": 1754.18, "end": 1754.7, "word": " In", "probability": 0.417236328125}, {"start": 1754.7, "end": 1755.38, "word": " Java,", "probability": 0.69873046875}, {"start": 1755.48, "end": 1755.54, "word": " one", "probability": 0.6181640625}, {"start": 1755.54, "end": 1755.68, "word": " of", "probability": 0.68017578125}, {"start": 1755.68, "end": 1755.76, "word": " the", "probability": 0.9072265625}, {"start": 1755.76, "end": 1755.94, "word": " ways", "probability": 0.81103515625}, {"start": 1755.94, "end": 1756.2, "word": " to", "probability": 0.89501953125}, {"start": 1756.2, "end": 1756.44, "word": " create", "probability": 0.357666015625}, {"start": 1756.44, "end": 1756.56, "word": " a", "probability": 0.8046875}, {"start": 1756.56, "end": 1757.56, "word": " GUI", "probability": 0.7261962890625}, {"start": 1757.56, "end": 1758.22, "word": " is", "probability": 0.457275390625}, {"start": 1758.22, "end": 1759.04, "word": " to", "probability": 0.458984375}, {"start": 1759.04, "end": 1759.48, "word": " create", "probability": 0.51220703125}, {"start": 1759.48, "end": 1759.84, "word": " a", "probability": 0.87158203125}, {"start": 1759.84, "end": 1760.56, "word": " window", "probability": 0.6728515625}, {"start": 1760.56, "end": 1761.26, "word": " and", "probability": 0.6123046875}, {"start": 1761.26, "end": 1761.84, "word": " extend", "probability": 0.55224609375}, {"start": 1761.84, "end": 1762.06, "word": " it", "probability": 0.40380859375}, {"start": 1762.06, "end": 1762.08, "word": " to", "probability": 0.91748046875}, {"start": 1762.08, "end": 1762.08, "word": " a", "probability": 0.76708984375}, {"start": 1762.08, "end": 1762.34, "word": " class", "probability": 0.96044921875}, {"start": 1762.34, "end": 1762.68, "word": " called", "probability": 0.609375}, {"start": 1762.68, "end": 1764.0, "word": " JFrame.", "probability": 0.7657877604166666}, {"start": 1764.16, "end": 1764.68, "word": " JFrame", "probability": 0.7791341145833334}, {"start": 1764.68, "end": 1764.88, "word": " is", "probability": 0.90234375}, {"start": 1764.88, "end": 1765.1, "word": " a", "probability": 0.7431640625}, {"start": 1765.1, "end": 1765.16, "word": " ready", "probability": 0.5986328125}, {"start": 1765.16, "end": 1765.16, "word": " window.", "probability": 0.79248046875}], "temperature": 1.0}, {"id": 70, "seek": 178757, "start": 1766.67, "end": 1787.57, "text": " You extend it and add the elements that you want them to be, which are the buttons that we saw a while ago. So, as soon as you extend JFrame, you have a window. Okay? Because what is this? Forget about this one. What is this thing that I am teaching? Constructor. So, as soon as you create an object from the drawing app, what will it do?", "tokens": [509, 10101, 309, 293, 909, 264, 4959, 300, 291, 528, 552, 281, 312, 11, 597, 366, 264, 9905, 300, 321, 1866, 257, 1339, 2057, 13, 407, 11, 382, 2321, 382, 291, 10101, 508, 40305, 529, 11, 291, 362, 257, 4910, 13, 1033, 30, 1436, 437, 307, 341, 30, 18675, 466, 341, 472, 13, 708, 307, 341, 551, 300, 286, 669, 4571, 30, 8574, 14535, 13, 407, 11, 382, 2321, 382, 291, 1884, 364, 2657, 490, 264, 6316, 724, 11, 437, 486, 309, 360, 30], "avg_logprob": -0.5272058739381678, "compression_ratio": 1.5841121495327102, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 1766.6700000000003, "end": 1767.0300000000002, "word": " You", "probability": 0.2548828125}, {"start": 1767.0300000000002, "end": 1767.39, "word": " extend", "probability": 0.18896484375}, {"start": 1767.39, "end": 1767.71, "word": " it", "probability": 0.64794921875}, {"start": 1767.71, "end": 1768.09, "word": " and", "probability": 0.552734375}, {"start": 1768.09, "end": 1768.41, "word": " add", "probability": 0.490966796875}, {"start": 1768.41, "end": 1769.93, "word": " the", "probability": 0.2342529296875}, {"start": 1769.93, "end": 1770.23, "word": " elements", "probability": 0.62158203125}, {"start": 1770.23, "end": 1770.39, "word": " that", "probability": 0.2247314453125}, {"start": 1770.39, "end": 1770.43, "word": " you", "probability": 0.8583984375}, {"start": 1770.43, "end": 1770.55, "word": " want", "probability": 0.6181640625}, {"start": 1770.55, "end": 1770.63, "word": " them", "probability": 0.09295654296875}, {"start": 1770.63, "end": 1770.63, "word": " to", "probability": 0.841796875}, {"start": 1770.63, "end": 1770.85, "word": " be,", "probability": 0.794921875}, {"start": 1770.93, "end": 1771.35, "word": " which", "probability": 0.400634765625}, {"start": 1771.35, "end": 1771.49, "word": " are", "probability": 0.72119140625}, {"start": 1771.49, "end": 1771.69, "word": " the", "probability": 0.6611328125}, {"start": 1771.69, "end": 1771.93, "word": " buttons", "probability": 0.8056640625}, {"start": 1771.93, "end": 1772.03, "word": " that", "probability": 0.55078125}, {"start": 1772.03, "end": 1772.03, "word": " we", "probability": 0.86083984375}, {"start": 1772.03, "end": 1772.19, "word": " saw", "probability": 0.73876953125}, {"start": 1772.19, "end": 1772.49, "word": " a", "probability": 0.3056640625}, {"start": 1772.49, "end": 1772.65, "word": " while", "probability": 0.5771484375}, {"start": 1772.65, "end": 1772.75, "word": " ago.", "probability": 0.859375}, {"start": 1773.05, "end": 1773.39, "word": " So,", "probability": 0.41748046875}, {"start": 1773.53, "end": 1773.71, "word": " as", "probability": 0.4453125}, {"start": 1773.71, "end": 1773.87, "word": " soon", "probability": 0.865234375}, {"start": 1773.87, "end": 1773.93, "word": " as", "probability": 0.9697265625}, {"start": 1773.93, "end": 1774.07, "word": " you", "probability": 0.9580078125}, {"start": 1774.07, "end": 1774.57, "word": " extend", "probability": 0.5341796875}, {"start": 1774.57, "end": 1775.23, "word": " JFrame,", "probability": 0.7022298177083334}, {"start": 1775.29, "end": 1775.51, "word": " you", "probability": 0.84912109375}, {"start": 1775.51, "end": 1775.61, "word": " have", "probability": 0.5048828125}, {"start": 1775.61, "end": 1775.75, "word": " a", "probability": 0.75537109375}, {"start": 1775.75, "end": 1775.97, "word": " window.", "probability": 0.81689453125}, {"start": 1776.65, "end": 1776.85, "word": " Okay?", "probability": 0.2291259765625}, {"start": 1777.53, "end": 1777.73, "word": " Because", "probability": 0.69921875}, {"start": 1777.73, "end": 1777.97, "word": " what", "probability": 0.61083984375}, {"start": 1777.97, "end": 1778.01, "word": " is", "probability": 0.849609375}, {"start": 1778.01, "end": 1778.25, "word": " this?", "probability": 0.78173828125}, {"start": 1779.29, "end": 1779.65, "word": " Forget", "probability": 0.1905517578125}, {"start": 1779.65, "end": 1779.87, "word": " about", "probability": 0.4140625}, {"start": 1779.87, "end": 1780.03, "word": " this", "probability": 0.59619140625}, {"start": 1780.03, "end": 1780.13, "word": " one.", "probability": 0.479248046875}, {"start": 1780.31, "end": 1780.41, "word": " What", "probability": 0.80859375}, {"start": 1780.41, "end": 1780.41, "word": " is", "probability": 0.81982421875}, {"start": 1780.41, "end": 1780.69, "word": " this", "probability": 0.89794921875}, {"start": 1780.69, "end": 1780.93, "word": " thing", "probability": 0.2279052734375}, {"start": 1780.93, "end": 1780.97, "word": " that", "probability": 0.6767578125}, {"start": 1780.97, "end": 1781.11, "word": " I", "probability": 0.97607421875}, {"start": 1781.11, "end": 1781.17, "word": " am", "probability": 0.386474609375}, {"start": 1781.17, "end": 1781.33, "word": " teaching?", "probability": 0.65576171875}, {"start": 1784.23, "end": 1784.59, "word": " Constructor.", "probability": 0.79296875}, {"start": 1784.99, "end": 1785.15, "word": " So,", "probability": 0.1766357421875}, {"start": 1785.35, "end": 1785.43, "word": " as", "probability": 0.43603515625}, {"start": 1785.43, "end": 1785.49, "word": " soon", "probability": 0.943359375}, {"start": 1785.49, "end": 1785.55, "word": " as", "probability": 0.970703125}, {"start": 1785.55, "end": 1785.71, "word": " you", "probability": 0.75830078125}, {"start": 1785.71, "end": 1785.85, "word": " create", "probability": 0.673828125}, {"start": 1785.85, "end": 1785.97, "word": " an", "probability": 0.8916015625}, {"start": 1785.97, "end": 1786.19, "word": " object", "probability": 0.970703125}, {"start": 1786.19, "end": 1786.39, "word": " from", "probability": 0.609375}, {"start": 1786.39, "end": 1786.47, "word": " the", "probability": 0.7568359375}, {"start": 1786.47, "end": 1786.67, "word": " drawing", "probability": 0.7802734375}, {"start": 1786.67, "end": 1786.95, "word": " app,", "probability": 0.89599609375}, {"start": 1786.97, "end": 1787.15, "word": " what", "probability": 0.85400390625}, {"start": 1787.15, "end": 1787.25, "word": " will", "probability": 0.452392578125}, {"start": 1787.25, "end": 1787.35, "word": " it", "probability": 0.892578125}, {"start": 1787.35, "end": 1787.57, "word": " do?", "probability": 0.962890625}], "temperature": 1.0}, {"id": 71, "seek": 181643, "start": 1789.17, "end": 1816.43, "text": " What is a reconstructor? In short, the drawing panel is the place where I draw. Do you see that the screen is divided into two parts? There are buttons here, and here is the drawing place. This place is called the drawing panel. It is not the subject of the drawing. This is just to give you an idea of ​​the subject. What is this?", "tokens": [708, 307, 257, 31499, 284, 30, 682, 2099, 11, 264, 6316, 4831, 307, 264, 1081, 689, 286, 2642, 13, 1144, 291, 536, 300, 264, 2568, 307, 6666, 666, 732, 3166, 30, 821, 366, 9905, 510, 11, 293, 510, 307, 264, 6316, 1081, 13, 639, 1081, 307, 1219, 264, 6316, 4831, 13, 467, 307, 406, 264, 3983, 295, 264, 6316, 13, 639, 307, 445, 281, 976, 291, 364, 1558, 295, 8701, 3322, 3983, 13, 708, 307, 341, 30], "avg_logprob": -0.5669070444045923, "compression_ratio": 1.68, "no_speech_prob": 7.331371307373047e-06, "words": [{"start": 1789.17, "end": 1789.69, "word": " What", "probability": 0.1646728515625}, {"start": 1789.69, "end": 1790.21, "word": " is", "probability": 0.82080078125}, {"start": 1790.21, "end": 1790.39, "word": " a", "probability": 0.4375}, {"start": 1790.39, "end": 1791.01, "word": " reconstructor?", "probability": 0.466888427734375}, {"start": 1791.69, "end": 1792.21, "word": " In", "probability": 0.16943359375}, {"start": 1792.21, "end": 1792.87, "word": " short,", "probability": 0.2376708984375}, {"start": 1792.95, "end": 1793.03, "word": " the", "probability": 0.432861328125}, {"start": 1793.03, "end": 1793.27, "word": " drawing", "probability": 0.7607421875}, {"start": 1793.27, "end": 1793.63, "word": " panel", "probability": 0.87646484375}, {"start": 1793.63, "end": 1793.85, "word": " is", "probability": 0.826171875}, {"start": 1793.85, "end": 1793.99, "word": " the", "probability": 0.57421875}, {"start": 1793.99, "end": 1794.25, "word": " place", "probability": 0.60791015625}, {"start": 1794.25, "end": 1794.35, "word": " where", "probability": 0.533203125}, {"start": 1794.35, "end": 1794.49, "word": " I", "probability": 0.771484375}, {"start": 1794.49, "end": 1794.65, "word": " draw.", "probability": 0.7001953125}, {"start": 1796.13, "end": 1796.65, "word": " Do", "probability": 0.2451171875}, {"start": 1796.65, "end": 1796.83, "word": " you", "probability": 0.96484375}, {"start": 1796.83, "end": 1797.07, "word": " see", "probability": 0.7314453125}, {"start": 1797.07, "end": 1797.33, "word": " that", "probability": 0.341552734375}, {"start": 1797.33, "end": 1797.37, "word": " the", "probability": 0.765625}, {"start": 1797.37, "end": 1797.63, "word": " screen", "probability": 0.7880859375}, {"start": 1797.63, "end": 1797.77, "word": " is", "probability": 0.81591796875}, {"start": 1797.77, "end": 1798.03, "word": " divided", "probability": 0.73388671875}, {"start": 1798.03, "end": 1798.17, "word": " into", "probability": 0.67236328125}, {"start": 1798.17, "end": 1798.51, "word": " two", "probability": 0.63720703125}, {"start": 1798.51, "end": 1798.67, "word": " parts?", "probability": 0.7734375}, {"start": 1799.71, "end": 1800.23, "word": " There", "probability": 0.287841796875}, {"start": 1800.23, "end": 1800.47, "word": " are", "probability": 0.80224609375}, {"start": 1800.47, "end": 1800.85, "word": " buttons", "probability": 0.7578125}, {"start": 1800.85, "end": 1800.89, "word": " here,", "probability": 0.479736328125}, {"start": 1801.01, "end": 1802.01, "word": " and", "probability": 0.82568359375}, {"start": 1802.01, "end": 1802.01, "word": " here", "probability": 0.28076171875}, {"start": 1802.01, "end": 1802.07, "word": " is", "probability": 0.82763671875}, {"start": 1802.07, "end": 1802.89, "word": " the", "probability": 0.71923828125}, {"start": 1802.89, "end": 1802.89, "word": " drawing", "probability": 0.50732421875}, {"start": 1802.89, "end": 1803.63, "word": " place.", "probability": 0.390869140625}, {"start": 1803.77, "end": 1804.29, "word": " This", "probability": 0.67626953125}, {"start": 1804.29, "end": 1804.91, "word": " place", "probability": 0.364501953125}, {"start": 1804.91, "end": 1805.37, "word": " is", "probability": 0.74462890625}, {"start": 1805.37, "end": 1805.77, "word": " called", "probability": 0.6083984375}, {"start": 1805.77, "end": 1805.85, "word": " the", "probability": 0.49462890625}, {"start": 1805.85, "end": 1806.15, "word": " drawing", "probability": 0.86279296875}, {"start": 1806.15, "end": 1807.87, "word": " panel.", "probability": 0.8994140625}, {"start": 1809.43, "end": 1809.83, "word": " It", "probability": 0.374267578125}, {"start": 1809.83, "end": 1810.01, "word": " is", "probability": 0.599609375}, {"start": 1810.01, "end": 1810.09, "word": " not", "probability": 0.91796875}, {"start": 1810.09, "end": 1810.23, "word": " the", "probability": 0.255615234375}, {"start": 1810.23, "end": 1810.37, "word": " subject", "probability": 0.6162109375}, {"start": 1810.37, "end": 1810.75, "word": " of", "probability": 0.583984375}, {"start": 1810.75, "end": 1811.01, "word": " the", "probability": 0.323974609375}, {"start": 1811.01, "end": 1811.25, "word": " drawing.", "probability": 0.662109375}, {"start": 1811.35, "end": 1811.87, "word": " This", "probability": 0.42822265625}, {"start": 1811.87, "end": 1811.89, "word": " is", "probability": 0.8408203125}, {"start": 1811.89, "end": 1812.05, "word": " just", "probability": 0.7001953125}, {"start": 1812.05, "end": 1812.29, "word": " to", "probability": 0.6162109375}, {"start": 1812.29, "end": 1812.57, "word": " give", "probability": 0.6162109375}, {"start": 1812.57, "end": 1812.71, "word": " you", "probability": 0.83447265625}, {"start": 1812.71, "end": 1813.03, "word": " an", "probability": 0.8740234375}, {"start": 1813.03, "end": 1813.19, "word": " idea", "probability": 0.88720703125}, {"start": 1813.19, "end": 1813.45, "word": " of", "probability": 0.67236328125}, {"start": 1813.45, "end": 1814.05, "word": " ​​the", "probability": 0.5389404296875}, {"start": 1814.05, "end": 1814.39, "word": " subject.", "probability": 0.52685546875}, {"start": 1815.33, "end": 1815.85, "word": " What", "probability": 0.487548828125}, {"start": 1815.85, "end": 1815.85, "word": " is", "probability": 0.77197265625}, {"start": 1815.85, "end": 1816.43, "word": " this?", "probability": 0.6650390625}], "temperature": 1.0}, {"id": 72, "seek": 184499, "start": 1818.45, "end": 1844.99, "text": " This is called a G button, a button. Okay? We made a button, what is written on it? Circle. When I press the button add action, it will execute this code. Okay? What does this code do? As soon as you press the button, it goes to create an object from whom? From the circle, here is the circle. Circle C equals new circle. It has to pass three things through it. Half of the line and X and Y. I fixed the half of the line. How much did I leave it?", "tokens": [639, 307, 1219, 257, 460, 2960, 11, 257, 2960, 13, 1033, 30, 492, 1027, 257, 2960, 11, 437, 307, 3720, 322, 309, 30, 29381, 13, 1133, 286, 1886, 264, 2960, 909, 3069, 11, 309, 486, 14483, 341, 3089, 13, 1033, 30, 708, 775, 341, 3089, 360, 30, 1018, 2321, 382, 291, 1886, 264, 2960, 11, 309, 1709, 281, 1884, 364, 2657, 490, 7101, 30, 3358, 264, 6329, 11, 510, 307, 264, 6329, 13, 29381, 383, 6915, 777, 6329, 13, 467, 575, 281, 1320, 1045, 721, 807, 309, 13, 15917, 295, 264, 1622, 293, 1783, 293, 398, 13, 286, 6806, 264, 1922, 295, 264, 1622, 13, 1012, 709, 630, 286, 1856, 309, 30], "avg_logprob": -0.4941924905354998, "compression_ratio": 1.7529411764705882, "no_speech_prob": 5.364418029785156e-06, "words": [{"start": 1818.45, "end": 1818.69, "word": " This", "probability": 0.383544921875}, {"start": 1818.69, "end": 1818.75, "word": " is", "probability": 0.6103515625}, {"start": 1818.75, "end": 1819.05, "word": " called", "probability": 0.468017578125}, {"start": 1819.05, "end": 1819.19, "word": " a", "probability": 0.2071533203125}, {"start": 1819.19, "end": 1819.25, "word": " G", "probability": 0.32568359375}, {"start": 1819.25, "end": 1819.63, "word": " button,", "probability": 0.479248046875}, {"start": 1819.85, "end": 1819.97, "word": " a", "probability": 0.339599609375}, {"start": 1819.97, "end": 1820.21, "word": " button.", "probability": 0.62744140625}, {"start": 1821.23, "end": 1821.45, "word": " Okay?", "probability": 0.1666259765625}, {"start": 1821.79, "end": 1822.13, "word": " We", "probability": 0.5498046875}, {"start": 1822.13, "end": 1822.27, "word": " made", "probability": 0.434814453125}, {"start": 1822.27, "end": 1822.43, "word": " a", "probability": 0.61083984375}, {"start": 1822.43, "end": 1822.57, "word": " button,", "probability": 0.83935546875}, {"start": 1822.61, "end": 1822.75, "word": " what", "probability": 0.70849609375}, {"start": 1822.75, "end": 1822.79, "word": " is", "probability": 0.59912109375}, {"start": 1822.79, "end": 1823.03, "word": " written", "probability": 0.80810546875}, {"start": 1823.03, "end": 1823.21, "word": " on", "probability": 0.85595703125}, {"start": 1823.21, "end": 1823.33, "word": " it?", "probability": 0.92529296875}, {"start": 1824.13, "end": 1824.57, "word": " Circle.", "probability": 0.73828125}, {"start": 1824.85, "end": 1825.19, "word": " When", "probability": 0.78515625}, {"start": 1825.19, "end": 1825.35, "word": " I", "probability": 0.88623046875}, {"start": 1825.35, "end": 1825.55, "word": " press", "probability": 0.5673828125}, {"start": 1825.55, "end": 1825.81, "word": " the", "probability": 0.529296875}, {"start": 1825.81, "end": 1825.95, "word": " button", "probability": 0.529296875}, {"start": 1825.95, "end": 1826.15, "word": " add", "probability": 0.2313232421875}, {"start": 1826.15, "end": 1826.63, "word": " action,", "probability": 0.92041015625}, {"start": 1826.75, "end": 1826.85, "word": " it", "probability": 0.4482421875}, {"start": 1826.85, "end": 1826.91, "word": " will", "probability": 0.52392578125}, {"start": 1826.91, "end": 1827.15, "word": " execute", "probability": 0.66943359375}, {"start": 1827.15, "end": 1827.27, "word": " this", "probability": 0.89599609375}, {"start": 1827.27, "end": 1827.51, "word": " code.", "probability": 0.90576171875}, {"start": 1829.33, "end": 1829.77, "word": " Okay?", "probability": 0.6904296875}, {"start": 1829.93, "end": 1830.15, "word": " What", "probability": 0.85791015625}, {"start": 1830.15, "end": 1830.17, "word": " does", "probability": 0.76123046875}, {"start": 1830.17, "end": 1830.27, "word": " this", "probability": 0.90283203125}, {"start": 1830.27, "end": 1830.47, "word": " code", "probability": 0.9248046875}, {"start": 1830.47, "end": 1830.83, "word": " do?", "probability": 0.9287109375}, {"start": 1831.19, "end": 1831.57, "word": " As", "probability": 0.65185546875}, {"start": 1831.57, "end": 1831.57, "word": " soon", "probability": 0.6865234375}, {"start": 1831.57, "end": 1831.69, "word": " as", "probability": 0.9716796875}, {"start": 1831.69, "end": 1831.89, "word": " you", "probability": 0.406005859375}, {"start": 1831.89, "end": 1832.03, "word": " press", "probability": 0.71728515625}, {"start": 1832.03, "end": 1832.29, "word": " the", "probability": 0.78955078125}, {"start": 1832.29, "end": 1832.35, "word": " button,", "probability": 0.833984375}, {"start": 1832.41, "end": 1832.47, "word": " it", "probability": 0.6650390625}, {"start": 1832.47, "end": 1832.61, "word": " goes", "probability": 0.50341796875}, {"start": 1832.61, "end": 1832.83, "word": " to", "probability": 0.1773681640625}, {"start": 1832.83, "end": 1833.07, "word": " create", "probability": 0.64013671875}, {"start": 1833.07, "end": 1833.29, "word": " an", "probability": 0.5625}, {"start": 1833.29, "end": 1833.45, "word": " object", "probability": 0.97509765625}, {"start": 1833.45, "end": 1833.79, "word": " from", "probability": 0.60498046875}, {"start": 1833.79, "end": 1834.03, "word": " whom?", "probability": 0.38427734375}, {"start": 1834.31, "end": 1834.71, "word": " From", "probability": 0.52783203125}, {"start": 1834.71, "end": 1835.37, "word": " the", "probability": 0.671875}, {"start": 1835.37, "end": 1835.57, "word": " circle,", "probability": 0.94482421875}, {"start": 1835.61, "end": 1835.75, "word": " here", "probability": 0.40869140625}, {"start": 1835.75, "end": 1835.79, "word": " is", "probability": 0.395263671875}, {"start": 1835.79, "end": 1835.93, "word": " the", "probability": 0.6318359375}, {"start": 1835.93, "end": 1836.15, "word": " circle.", "probability": 0.9482421875}, {"start": 1836.21, "end": 1836.61, "word": " Circle", "probability": 0.90625}, {"start": 1836.61, "end": 1836.91, "word": " C", "probability": 0.68017578125}, {"start": 1836.91, "end": 1837.33, "word": " equals", "probability": 0.55078125}, {"start": 1837.33, "end": 1837.59, "word": " new", "probability": 0.56689453125}, {"start": 1837.59, "end": 1837.97, "word": " circle.", "probability": 0.8984375}, {"start": 1838.49, "end": 1838.57, "word": " It", "probability": 0.61767578125}, {"start": 1838.57, "end": 1838.69, "word": " has", "probability": 0.2247314453125}, {"start": 1838.69, "end": 1838.69, "word": " to", "probability": 0.89404296875}, {"start": 1838.69, "end": 1838.93, "word": " pass", "probability": 0.53759765625}, {"start": 1838.93, "end": 1839.31, "word": " three", "probability": 0.48828125}, {"start": 1839.31, "end": 1839.79, "word": " things", "probability": 0.7431640625}, {"start": 1839.79, "end": 1839.79, "word": " through", "probability": 0.250244140625}, {"start": 1839.79, "end": 1839.79, "word": " it.", "probability": 0.81201171875}, {"start": 1840.41, "end": 1840.67, "word": " Half", "probability": 0.2305908203125}, {"start": 1840.67, "end": 1840.79, "word": " of", "probability": 0.576171875}, {"start": 1840.79, "end": 1840.85, "word": " the", "probability": 0.77197265625}, {"start": 1840.85, "end": 1841.01, "word": " line", "probability": 0.38525390625}, {"start": 1841.01, "end": 1841.63, "word": " and", "probability": 0.445068359375}, {"start": 1841.63, "end": 1842.03, "word": " X", "probability": 0.509765625}, {"start": 1842.03, "end": 1842.67, "word": " and", "probability": 0.8876953125}, {"start": 1842.67, "end": 1842.95, "word": " Y.", "probability": 0.99267578125}, {"start": 1843.33, "end": 1843.59, "word": " I", "probability": 0.6083984375}, {"start": 1843.59, "end": 1843.59, "word": " fixed", "probability": 0.662109375}, {"start": 1843.59, "end": 1843.59, "word": " the", "probability": 0.389404296875}, {"start": 1843.59, "end": 1843.69, "word": " half", "probability": 0.84228515625}, {"start": 1843.69, "end": 1843.79, "word": " of", "probability": 0.93603515625}, {"start": 1843.79, "end": 1843.87, "word": " the", "probability": 0.90576171875}, {"start": 1843.87, "end": 1844.05, "word": " line.", "probability": 0.88134765625}, {"start": 1844.65, "end": 1844.89, "word": " How", "probability": 0.478759765625}, {"start": 1844.89, "end": 1844.89, "word": " much", "probability": 0.6630859375}, {"start": 1844.89, "end": 1844.89, "word": " did", "probability": 0.79638671875}, {"start": 1844.89, "end": 1844.93, "word": " I", "probability": 0.50341796875}, {"start": 1844.93, "end": 1844.93, "word": " leave", "probability": 0.568359375}, {"start": 1844.93, "end": 1844.99, "word": " it?", "probability": 0.78857421875}], "temperature": 1.0}, {"id": 73, "seek": 187228, "start": 1846.08, "end": 1872.28, "text": " 5. The location of the gate has to change. It doesn't have to reach the circle in one place. It has to be random. How do you make it random? There is a class called Random. You tell it to go to x and make it r.mixint 500. That is, type any integer number between 0 and 500. Why 500? Because the width of the screen is 500 pixels. And here is also a random number from 0 to 350, which is the height of the screen.", "tokens": [1025, 13, 440, 4914, 295, 264, 8539, 575, 281, 1319, 13, 467, 1177, 380, 362, 281, 2524, 264, 6329, 294, 472, 1081, 13, 467, 575, 281, 312, 4974, 13, 1012, 360, 291, 652, 309, 4974, 30, 821, 307, 257, 1508, 1219, 37603, 13, 509, 980, 309, 281, 352, 281, 2031, 293, 652, 309, 367, 13, 76, 970, 686, 5923, 13, 663, 307, 11, 2010, 604, 24922, 1230, 1296, 1958, 293, 5923, 13, 1545, 5923, 30, 1436, 264, 11402, 295, 264, 2568, 307, 5923, 18668, 13, 400, 510, 307, 611, 257, 4974, 1230, 490, 1958, 281, 18065, 11, 597, 307, 264, 6681, 295, 264, 2568, 13], "avg_logprob": -0.53036556210158, "compression_ratio": 1.625984251968504, "no_speech_prob": 2.002716064453125e-05, "words": [{"start": 1846.08, "end": 1846.5, "word": " 5.", "probability": 0.2344970703125}, {"start": 1847.04, "end": 1847.34, "word": " The", "probability": 0.403564453125}, {"start": 1847.34, "end": 1847.7, "word": " location", "probability": 0.265625}, {"start": 1847.7, "end": 1847.8, "word": " of", "probability": 0.70166015625}, {"start": 1847.8, "end": 1847.9, "word": " the", "probability": 0.51513671875}, {"start": 1847.9, "end": 1848.06, "word": " gate", "probability": 0.33642578125}, {"start": 1848.06, "end": 1848.2, "word": " has", "probability": 0.1573486328125}, {"start": 1848.2, "end": 1848.28, "word": " to", "probability": 0.93310546875}, {"start": 1848.28, "end": 1848.8, "word": " change.", "probability": 0.307861328125}, {"start": 1849.58, "end": 1850.0, "word": " It", "probability": 0.490234375}, {"start": 1850.0, "end": 1850.16, "word": " doesn't", "probability": 0.684814453125}, {"start": 1850.16, "end": 1850.26, "word": " have", "probability": 0.63623046875}, {"start": 1850.26, "end": 1850.26, "word": " to", "probability": 0.9736328125}, {"start": 1850.26, "end": 1850.42, "word": " reach", "probability": 0.358642578125}, {"start": 1850.42, "end": 1850.56, "word": " the", "probability": 0.2900390625}, {"start": 1850.56, "end": 1850.72, "word": " circle", "probability": 0.434326171875}, {"start": 1850.72, "end": 1850.84, "word": " in", "probability": 0.494384765625}, {"start": 1850.84, "end": 1851.28, "word": " one", "probability": 0.76953125}, {"start": 1851.28, "end": 1851.28, "word": " place.", "probability": 0.56103515625}, {"start": 1851.42, "end": 1851.42, "word": " It", "probability": 0.45166015625}, {"start": 1851.42, "end": 1851.52, "word": " has", "probability": 0.77392578125}, {"start": 1851.52, "end": 1851.52, "word": " to", "probability": 0.9697265625}, {"start": 1851.52, "end": 1851.78, "word": " be", "probability": 0.489501953125}, {"start": 1851.78, "end": 1852.86, "word": " random.", "probability": 0.57080078125}, {"start": 1853.3, "end": 1853.72, "word": " How", "probability": 0.828125}, {"start": 1853.72, "end": 1853.78, "word": " do", "probability": 0.243408203125}, {"start": 1853.78, "end": 1853.78, "word": " you", "probability": 0.72216796875}, {"start": 1853.78, "end": 1853.94, "word": " make", "probability": 0.53369140625}, {"start": 1853.94, "end": 1854.06, "word": " it", "probability": 0.89794921875}, {"start": 1854.06, "end": 1854.26, "word": " random?", "probability": 0.9013671875}, {"start": 1854.62, "end": 1854.92, "word": " There", "probability": 0.68115234375}, {"start": 1854.92, "end": 1854.94, "word": " is", "probability": 0.6484375}, {"start": 1854.94, "end": 1855.28, "word": " a", "probability": 0.96337890625}, {"start": 1855.28, "end": 1855.32, "word": " class", "probability": 0.75390625}, {"start": 1855.32, "end": 1855.86, "word": " called", "probability": 0.281005859375}, {"start": 1855.86, "end": 1857.0, "word": " Random.", "probability": 0.37109375}, {"start": 1857.16, "end": 1857.58, "word": " You", "probability": 0.290771484375}, {"start": 1857.58, "end": 1857.8, "word": " tell", "probability": 0.59130859375}, {"start": 1857.8, "end": 1857.96, "word": " it", "probability": 0.83740234375}, {"start": 1857.96, "end": 1858.12, "word": " to", "probability": 0.83984375}, {"start": 1858.12, "end": 1858.12, "word": " go", "probability": 0.74072265625}, {"start": 1858.12, "end": 1858.3, "word": " to", "probability": 0.90087890625}, {"start": 1858.3, "end": 1858.6, "word": " x", "probability": 0.60791015625}, {"start": 1858.6, "end": 1858.74, "word": " and", "probability": 0.50390625}, {"start": 1858.74, "end": 1858.86, "word": " make", "probability": 0.1776123046875}, {"start": 1858.86, "end": 1859.0, "word": " it", "probability": 0.75390625}, {"start": 1859.0, "end": 1859.3, "word": " r", "probability": 0.5966796875}, {"start": 1859.3, "end": 1860.16, "word": ".mixint", "probability": 0.8035888671875}, {"start": 1860.16, "end": 1860.54, "word": " 500.", "probability": 0.395263671875}, {"start": 1860.96, "end": 1861.3, "word": " That", "probability": 0.14404296875}, {"start": 1861.3, "end": 1861.34, "word": " is,", "probability": 0.448974609375}, {"start": 1861.4, "end": 1861.6, "word": " type", "probability": 0.0965576171875}, {"start": 1861.6, "end": 1861.86, "word": " any", "probability": 0.74560546875}, {"start": 1861.86, "end": 1862.42, "word": " integer", "probability": 0.90283203125}, {"start": 1862.42, "end": 1862.58, "word": " number", "probability": 0.328857421875}, {"start": 1862.58, "end": 1862.72, "word": " between", "probability": 0.4951171875}, {"start": 1862.72, "end": 1863.06, "word": " 0", "probability": 0.80517578125}, {"start": 1863.06, "end": 1863.9, "word": " and", "probability": 0.9296875}, {"start": 1863.9, "end": 1864.2, "word": " 500.", "probability": 0.96875}, {"start": 1864.3, "end": 1864.42, "word": " Why", "probability": 0.62060546875}, {"start": 1864.42, "end": 1864.7, "word": " 500?", "probability": 0.92578125}, {"start": 1865.08, "end": 1865.4, "word": " Because", "probability": 0.447509765625}, {"start": 1865.4, "end": 1865.4, "word": " the", "probability": 0.8623046875}, {"start": 1865.4, "end": 1865.56, "word": " width", "probability": 0.34130859375}, {"start": 1865.56, "end": 1865.66, "word": " of", "probability": 0.9560546875}, {"start": 1865.66, "end": 1865.7, "word": " the", "probability": 0.9072265625}, {"start": 1865.7, "end": 1865.82, "word": " screen", "probability": 0.82080078125}, {"start": 1865.82, "end": 1865.9, "word": " is", "probability": 0.93408203125}, {"start": 1865.9, "end": 1866.18, "word": " 500", "probability": 0.9658203125}, {"start": 1866.18, "end": 1866.6, "word": " pixels.", "probability": 0.923828125}, {"start": 1867.26, "end": 1867.68, "word": " And", "probability": 0.1859130859375}, {"start": 1867.68, "end": 1867.96, "word": " here", "probability": 0.724609375}, {"start": 1867.96, "end": 1868.5, "word": " is", "probability": 0.175537109375}, {"start": 1868.5, "end": 1868.7, "word": " also", "probability": 0.54931640625}, {"start": 1868.7, "end": 1868.88, "word": " a", "probability": 0.89013671875}, {"start": 1868.88, "end": 1869.28, "word": " random", "probability": 0.7548828125}, {"start": 1869.28, "end": 1869.42, "word": " number", "probability": 0.9130859375}, {"start": 1869.42, "end": 1869.64, "word": " from", "probability": 0.638671875}, {"start": 1869.64, "end": 1869.86, "word": " 0", "probability": 0.91552734375}, {"start": 1869.86, "end": 1870.0, "word": " to", "probability": 0.96923828125}, {"start": 1870.0, "end": 1870.44, "word": " 350,", "probability": 0.9287109375}, {"start": 1870.66, "end": 1870.68, "word": " which", "probability": 0.86376953125}, {"start": 1870.68, "end": 1870.76, "word": " is", "probability": 0.9287109375}, {"start": 1870.76, "end": 1870.82, "word": " the", "probability": 0.91748046875}, {"start": 1870.82, "end": 1871.02, "word": " height", "probability": 0.810546875}, {"start": 1871.02, "end": 1871.94, "word": " of", "probability": 0.96484375}, {"start": 1871.94, "end": 1872.04, "word": " the", "probability": 0.92236328125}, {"start": 1872.04, "end": 1872.28, "word": " screen.", "probability": 0.8701171875}], "temperature": 1.0}, {"id": 74, "seek": 190090, "start": 1874.86, "end": 1900.9, "text": "an object from where? From the circle, but I'm not going to draw it. In order to draw it, I'm going to make a method called draw, seed to draw, and I'm going to draw it in the drawing panel, get graphics. That is, I set the place where I'm going to draw it. That is, as soon as I click on the circle button, an object from the circle will appear and draw it. I'm going to run the code. This is the circle, and what does it do? It draws circles randomly.", "tokens": [282, 2657, 490, 689, 30, 3358, 264, 6329, 11, 457, 286, 478, 406, 516, 281, 2642, 309, 13, 682, 1668, 281, 2642, 309, 11, 286, 478, 516, 281, 652, 257, 3170, 1219, 2642, 11, 8871, 281, 2642, 11, 293, 286, 478, 516, 281, 2642, 309, 294, 264, 6316, 4831, 11, 483, 11837, 13, 663, 307, 11, 286, 992, 264, 1081, 689, 286, 478, 516, 281, 2642, 309, 13, 663, 307, 11, 382, 2321, 382, 286, 2052, 322, 264, 6329, 2960, 11, 364, 2657, 490, 264, 6329, 486, 4204, 293, 2642, 309, 13, 286, 478, 516, 281, 1190, 264, 3089, 13, 639, 307, 264, 6329, 11, 293, 437, 775, 309, 360, 30, 467, 20045, 13040, 16979, 13], "avg_logprob": -0.47275639701093364, "compression_ratio": 2.004424778761062, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1874.86, "end": 1875.04, "word": "an", "probability": 0.0963134765625}, {"start": 1875.04, "end": 1875.32, "word": " object", "probability": 0.947265625}, {"start": 1875.32, "end": 1875.54, "word": " from", "probability": 0.75146484375}, {"start": 1875.54, "end": 1875.78, "word": " where?", "probability": 0.49072265625}, {"start": 1876.2, "end": 1876.5, "word": " From", "probability": 0.21142578125}, {"start": 1876.5, "end": 1876.62, "word": " the", "probability": 0.54345703125}, {"start": 1876.62, "end": 1876.84, "word": " circle,", "probability": 0.9365234375}, {"start": 1876.9, "end": 1877.02, "word": " but", "probability": 0.83740234375}, {"start": 1877.02, "end": 1877.16, "word": " I'm", "probability": 0.2606201171875}, {"start": 1877.16, "end": 1877.16, "word": " not", "probability": 0.54541015625}, {"start": 1877.16, "end": 1877.24, "word": " going", "probability": 0.60546875}, {"start": 1877.24, "end": 1877.24, "word": " to", "probability": 0.96435546875}, {"start": 1877.24, "end": 1877.32, "word": " draw", "probability": 0.89697265625}, {"start": 1877.32, "end": 1877.92, "word": " it.", "probability": 0.89892578125}, {"start": 1878.24, "end": 1878.46, "word": " In", "probability": 0.318359375}, {"start": 1878.46, "end": 1878.46, "word": " order", "probability": 0.8896484375}, {"start": 1878.46, "end": 1878.52, "word": " to", "probability": 0.92041015625}, {"start": 1878.52, "end": 1878.74, "word": " draw", "probability": 0.86962890625}, {"start": 1878.74, "end": 1878.82, "word": " it,", "probability": 0.8583984375}, {"start": 1878.82, "end": 1879.06, "word": " I'm", "probability": 0.53857421875}, {"start": 1879.06, "end": 1879.06, "word": " going", "probability": 0.8515625}, {"start": 1879.06, "end": 1879.06, "word": " to", "probability": 0.9677734375}, {"start": 1879.06, "end": 1879.22, "word": " make", "probability": 0.2841796875}, {"start": 1879.22, "end": 1879.34, "word": " a", "probability": 0.85498046875}, {"start": 1879.34, "end": 1879.46, "word": " method", "probability": 0.89404296875}, {"start": 1879.46, "end": 1879.72, "word": " called", "probability": 0.859375}, {"start": 1879.72, "end": 1880.04, "word": " draw,", "probability": 0.413330078125}, {"start": 1880.38, "end": 1880.68, "word": " seed", "probability": 0.26806640625}, {"start": 1880.68, "end": 1880.88, "word": " to", "probability": 0.81982421875}, {"start": 1880.88, "end": 1881.22, "word": " draw,", "probability": 0.88330078125}, {"start": 1881.76, "end": 1881.92, "word": " and", "probability": 0.625}, {"start": 1881.92, "end": 1882.08, "word": " I'm", "probability": 0.736328125}, {"start": 1882.08, "end": 1882.08, "word": " going", "probability": 0.93310546875}, {"start": 1882.08, "end": 1882.08, "word": " to", "probability": 0.966796875}, {"start": 1882.08, "end": 1882.26, "word": " draw", "probability": 0.794921875}, {"start": 1882.26, "end": 1882.56, "word": " it", "probability": 0.91259765625}, {"start": 1882.56, "end": 1882.92, "word": " in", "probability": 0.68408203125}, {"start": 1882.92, "end": 1883.04, "word": " the", "probability": 0.8369140625}, {"start": 1883.04, "end": 1883.38, "word": " drawing", "probability": 0.8642578125}, {"start": 1883.38, "end": 1884.02, "word": " panel,", "probability": 0.908203125}, {"start": 1886.1, "end": 1886.32, "word": " get", "probability": 0.90380859375}, {"start": 1886.32, "end": 1886.74, "word": " graphics.", "probability": 0.65966796875}, {"start": 1887.24, "end": 1887.68, "word": " That", "probability": 0.1939697265625}, {"start": 1887.68, "end": 1887.68, "word": " is,", "probability": 0.625}, {"start": 1887.76, "end": 1887.76, "word": " I", "probability": 0.8935546875}, {"start": 1887.76, "end": 1887.96, "word": " set", "probability": 0.162353515625}, {"start": 1887.96, "end": 1888.22, "word": " the", "probability": 0.685546875}, {"start": 1888.22, "end": 1888.7, "word": " place", "probability": 0.59765625}, {"start": 1888.7, "end": 1889.34, "word": " where", "probability": 0.53564453125}, {"start": 1889.34, "end": 1889.46, "word": " I'm", "probability": 0.3326416015625}, {"start": 1889.46, "end": 1889.46, "word": " going", "probability": 0.88525390625}, {"start": 1889.46, "end": 1889.46, "word": " to", "probability": 0.96826171875}, {"start": 1889.46, "end": 1889.58, "word": " draw", "probability": 0.84423828125}, {"start": 1889.58, "end": 1889.76, "word": " it.", "probability": 0.76708984375}, {"start": 1889.96, "end": 1890.26, "word": " That", "probability": 0.19189453125}, {"start": 1890.26, "end": 1890.26, "word": " is,", "probability": 0.59521484375}, {"start": 1890.38, "end": 1890.46, "word": " as", "probability": 0.646484375}, {"start": 1890.46, "end": 1890.7, "word": " soon", "probability": 0.93505859375}, {"start": 1890.7, "end": 1890.8, "word": " as", "probability": 0.970703125}, {"start": 1890.8, "end": 1890.94, "word": " I", "probability": 0.9658203125}, {"start": 1890.94, "end": 1891.14, "word": " click", "probability": 0.3720703125}, {"start": 1891.14, "end": 1891.3, "word": " on", "probability": 0.8369140625}, {"start": 1891.3, "end": 1891.44, "word": " the", "probability": 0.90576171875}, {"start": 1891.44, "end": 1891.98, "word": " circle", "probability": 0.73876953125}, {"start": 1891.98, "end": 1892.02, "word": " button,", "probability": 0.69580078125}, {"start": 1892.36, "end": 1892.86, "word": " an", "probability": 0.296142578125}, {"start": 1892.86, "end": 1893.12, "word": " object", "probability": 0.97216796875}, {"start": 1893.12, "end": 1893.34, "word": " from", "probability": 0.32421875}, {"start": 1893.34, "end": 1893.48, "word": " the", "probability": 0.90673828125}, {"start": 1893.48, "end": 1893.72, "word": " circle", "probability": 0.96435546875}, {"start": 1893.72, "end": 1893.72, "word": " will", "probability": 0.5625}, {"start": 1893.72, "end": 1893.72, "word": " appear", "probability": 0.309326171875}, {"start": 1893.72, "end": 1893.84, "word": " and", "probability": 0.748046875}, {"start": 1893.84, "end": 1893.98, "word": " draw", "probability": 0.5732421875}, {"start": 1893.98, "end": 1894.22, "word": " it.", "probability": 0.822265625}, {"start": 1895.38, "end": 1895.7, "word": " I'm", "probability": 0.38458251953125}, {"start": 1895.7, "end": 1895.74, "word": " going", "probability": 0.90283203125}, {"start": 1895.74, "end": 1895.74, "word": " to", "probability": 0.97021484375}, {"start": 1895.74, "end": 1896.02, "word": " run", "probability": 0.52734375}, {"start": 1896.02, "end": 1896.82, "word": " the", "probability": 0.77001953125}, {"start": 1896.82, "end": 1897.22, "word": " code.", "probability": 0.9326171875}, {"start": 1897.84, "end": 1898.02, "word": " This", "probability": 0.62646484375}, {"start": 1898.02, "end": 1898.02, "word": " is", "probability": 0.86572265625}, {"start": 1898.02, "end": 1898.14, "word": " the", "probability": 0.736328125}, {"start": 1898.14, "end": 1898.42, "word": " circle,", "probability": 0.9619140625}, {"start": 1898.48, "end": 1898.56, "word": " and", "probability": 0.53564453125}, {"start": 1898.56, "end": 1898.78, "word": " what", "probability": 0.61572265625}, {"start": 1898.78, "end": 1898.82, "word": " does", "probability": 0.73486328125}, {"start": 1898.82, "end": 1898.82, "word": " it", "probability": 0.86865234375}, {"start": 1898.82, "end": 1899.14, "word": " do?", "probability": 0.96533203125}, {"start": 1899.84, "end": 1900.28, "word": " It", "probability": 0.62841796875}, {"start": 1900.28, "end": 1900.48, "word": " draws", "probability": 0.869140625}, {"start": 1900.48, "end": 1900.74, "word": " circles", "probability": 0.157958984375}, {"start": 1900.74, "end": 1900.9, "word": " randomly.", "probability": 0.50439453125}], "temperature": 1.0}, {"id": 75, "seek": 192163, "start": 1902.45, "end": 1921.63, "text": " there is another button called rectangle it also creates a rectangle and if I want to draw a rectangle I do the same thing rectangle.drawingpanel", "tokens": [456, 307, 1071, 2960, 1219, 21930, 309, 611, 7829, 257, 21930, 293, 498, 286, 528, 281, 2642, 257, 21930, 286, 360, 264, 912, 551, 21930, 13, 48848, 278, 6040, 338], "avg_logprob": -0.5846774385821435, "compression_ratio": 1.4747474747474747, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1902.45, "end": 1903.15, "word": " there", "probability": 0.0528564453125}, {"start": 1903.15, "end": 1903.63, "word": " is", "probability": 0.7861328125}, {"start": 1903.63, "end": 1903.95, "word": " another", "probability": 0.7373046875}, {"start": 1903.95, "end": 1903.95, "word": " button", "probability": 0.72314453125}, {"start": 1903.95, "end": 1904.45, "word": " called", "probability": 0.2186279296875}, {"start": 1904.45, "end": 1905.91, "word": " rectangle", "probability": 0.89306640625}, {"start": 1905.91, "end": 1907.17, "word": " it", "probability": 0.12017822265625}, {"start": 1907.17, "end": 1907.47, "word": " also", "probability": 0.51123046875}, {"start": 1907.47, "end": 1907.77, "word": " creates", "probability": 0.4951171875}, {"start": 1907.77, "end": 1907.91, "word": " a", "probability": 0.52587890625}, {"start": 1907.91, "end": 1908.39, "word": " rectangle", "probability": 0.96044921875}, {"start": 1908.39, "end": 1909.53, "word": " and", "probability": 0.428466796875}, {"start": 1909.53, "end": 1909.99, "word": " if", "probability": 0.7607421875}, {"start": 1909.99, "end": 1910.21, "word": " I", "probability": 0.55615234375}, {"start": 1910.21, "end": 1910.23, "word": " want", "probability": 0.7275390625}, {"start": 1910.23, "end": 1910.25, "word": " to", "probability": 0.96044921875}, {"start": 1910.25, "end": 1910.45, "word": " draw", "probability": 0.8984375}, {"start": 1910.45, "end": 1910.63, "word": " a", "probability": 0.63427734375}, {"start": 1910.63, "end": 1911.11, "word": " rectangle", "probability": 0.96630859375}, {"start": 1911.11, "end": 1911.29, "word": " I", "probability": 0.2841796875}, {"start": 1911.29, "end": 1911.49, "word": " do", "probability": 0.491455078125}, {"start": 1911.49, "end": 1913.97, "word": " the", "probability": 0.666015625}, {"start": 1913.97, "end": 1913.97, "word": " same", "probability": 0.892578125}, {"start": 1913.97, "end": 1914.31, "word": " thing", "probability": 0.72021484375}, {"start": 1914.31, "end": 1917.23, "word": " rectangle", "probability": 0.50634765625}, {"start": 1917.23, "end": 1921.63, "word": ".drawingpanel", "probability": 0.68271484375}], "temperature": 1.0}, {"id": 76, "seek": 195386, "start": 1928.46, "end": 1953.86, "text": " Now, there is a solid circle at the bottom. I can also call it a draw. Okay? Then, there is a button called Clear, which is supposed to erase the whole screen. And there is a button called Undo, which is supposed to undo. This is a story. Where is the whole story? In the Undo. Now, I draw circles and rectangles. Okay? But I don't make it clear yet.", "tokens": [823, 11, 456, 307, 257, 5100, 6329, 412, 264, 2767, 13, 286, 393, 611, 818, 309, 257, 2642, 13, 1033, 30, 1396, 11, 456, 307, 257, 2960, 1219, 14993, 11, 597, 307, 3442, 281, 23525, 264, 1379, 2568, 13, 400, 456, 307, 257, 2960, 1219, 2719, 78, 11, 597, 307, 3442, 281, 23779, 13, 639, 307, 257, 1657, 13, 2305, 307, 264, 1379, 1657, 30, 682, 264, 2719, 78, 13, 823, 11, 286, 2642, 13040, 293, 24077, 904, 13, 1033, 30, 583, 286, 500, 380, 652, 309, 1850, 1939, 13], "avg_logprob": -0.498969751399952, "compression_ratio": 1.763819095477387, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 1928.46, "end": 1928.86, "word": " Now,", "probability": 0.31640625}, {"start": 1928.92, "end": 1929.12, "word": " there", "probability": 0.140869140625}, {"start": 1929.12, "end": 1929.56, "word": " is", "probability": 0.73095703125}, {"start": 1929.56, "end": 1929.88, "word": " a", "probability": 0.759765625}, {"start": 1929.88, "end": 1930.08, "word": " solid", "probability": 0.8876953125}, {"start": 1930.08, "end": 1930.52, "word": " circle", "probability": 0.9580078125}, {"start": 1930.52, "end": 1930.52, "word": " at", "probability": 0.19384765625}, {"start": 1930.52, "end": 1930.52, "word": " the", "probability": 0.87744140625}, {"start": 1930.52, "end": 1930.52, "word": " bottom.", "probability": 0.79052734375}, {"start": 1930.62, "end": 1930.9, "word": " I", "probability": 0.1756591796875}, {"start": 1930.9, "end": 1931.82, "word": " can", "probability": 0.53466796875}, {"start": 1931.82, "end": 1932.04, "word": " also", "probability": 0.5009765625}, {"start": 1932.04, "end": 1932.08, "word": " call", "probability": 0.482177734375}, {"start": 1932.08, "end": 1932.14, "word": " it", "probability": 0.8193359375}, {"start": 1932.14, "end": 1932.38, "word": " a", "probability": 0.351318359375}, {"start": 1932.38, "end": 1932.58, "word": " draw.", "probability": 0.5244140625}, {"start": 1933.06, "end": 1933.34, "word": " Okay?", "probability": 0.1971435546875}, {"start": 1934.26, "end": 1934.6, "word": " Then,", "probability": 0.5869140625}, {"start": 1934.72, "end": 1934.92, "word": " there", "probability": 0.8701171875}, {"start": 1934.92, "end": 1934.92, "word": " is", "probability": 0.89990234375}, {"start": 1934.92, "end": 1934.98, "word": " a", "probability": 0.8447265625}, {"start": 1934.98, "end": 1935.16, "word": " button", "probability": 0.84375}, {"start": 1935.16, "end": 1935.44, "word": " called", "probability": 0.61962890625}, {"start": 1935.44, "end": 1936.72, "word": " Clear,", "probability": 0.383544921875}, {"start": 1936.84, "end": 1937.02, "word": " which", "probability": 0.78271484375}, {"start": 1937.02, "end": 1937.06, "word": " is", "probability": 0.368408203125}, {"start": 1937.06, "end": 1937.42, "word": " supposed", "probability": 0.85107421875}, {"start": 1937.42, "end": 1937.56, "word": " to", "probability": 0.96728515625}, {"start": 1937.56, "end": 1938.74, "word": " erase", "probability": 0.2442626953125}, {"start": 1938.74, "end": 1938.92, "word": " the", "probability": 0.53369140625}, {"start": 1938.92, "end": 1938.92, "word": " whole", "probability": 0.322021484375}, {"start": 1938.92, "end": 1939.12, "word": " screen.", "probability": 0.86865234375}, {"start": 1939.48, "end": 1939.58, "word": " And", "probability": 0.7783203125}, {"start": 1939.58, "end": 1939.7, "word": " there", "probability": 0.74169921875}, {"start": 1939.7, "end": 1939.78, "word": " is", "probability": 0.92236328125}, {"start": 1939.78, "end": 1939.88, "word": " a", "probability": 0.7919921875}, {"start": 1939.88, "end": 1939.98, "word": " button", "probability": 0.79248046875}, {"start": 1939.98, "end": 1940.72, "word": " called", "probability": 0.84326171875}, {"start": 1940.72, "end": 1941.74, "word": " Undo,", "probability": 0.899169921875}, {"start": 1941.8, "end": 1941.94, "word": " which", "probability": 0.91259765625}, {"start": 1941.94, "end": 1942.0, "word": " is", "probability": 0.8017578125}, {"start": 1942.0, "end": 1942.2, "word": " supposed", "probability": 0.91064453125}, {"start": 1942.2, "end": 1942.32, "word": " to", "probability": 0.9697265625}, {"start": 1942.32, "end": 1942.62, "word": " undo.", "probability": 0.4326171875}, {"start": 1942.74, "end": 1942.9, "word": " This", "probability": 0.46337890625}, {"start": 1942.9, "end": 1942.96, "word": " is", "probability": 0.86962890625}, {"start": 1942.96, "end": 1943.04, "word": " a", "probability": 0.55322265625}, {"start": 1943.04, "end": 1943.22, "word": " story.", "probability": 0.322021484375}, {"start": 1943.46, "end": 1943.82, "word": " Where", "probability": 0.230224609375}, {"start": 1943.82, "end": 1943.84, "word": " is", "probability": 0.826171875}, {"start": 1943.84, "end": 1943.88, "word": " the", "probability": 0.5419921875}, {"start": 1943.88, "end": 1943.88, "word": " whole", "probability": 0.57275390625}, {"start": 1943.88, "end": 1944.12, "word": " story?", "probability": 0.9169921875}, {"start": 1945.14, "end": 1945.52, "word": " In", "probability": 0.76611328125}, {"start": 1945.52, "end": 1945.56, "word": " the", "probability": 0.65283203125}, {"start": 1945.56, "end": 1945.86, "word": " Undo.", "probability": 0.737548828125}, {"start": 1946.48, "end": 1946.7, "word": " Now,", "probability": 0.763671875}, {"start": 1946.8, "end": 1946.9, "word": " I", "probability": 0.3203125}, {"start": 1946.9, "end": 1949.0, "word": " draw", "probability": 0.38623046875}, {"start": 1949.0, "end": 1949.44, "word": " circles", "probability": 0.65234375}, {"start": 1949.44, "end": 1950.18, "word": " and", "probability": 0.79931640625}, {"start": 1950.18, "end": 1952.2, "word": " rectangles.", "probability": 0.926025390625}, {"start": 1952.2, "end": 1952.56, "word": " Okay?", "probability": 0.6240234375}, {"start": 1952.66, "end": 1952.84, "word": " But", "probability": 0.849609375}, {"start": 1952.84, "end": 1953.08, "word": " I", "probability": 0.89013671875}, {"start": 1953.08, "end": 1953.18, "word": " don't", "probability": 0.6287841796875}, {"start": 1953.18, "end": 1953.4, "word": " make", "probability": 0.56298828125}, {"start": 1953.4, "end": 1953.58, "word": " it", "probability": 0.5849609375}, {"start": 1953.58, "end": 1953.86, "word": " clear", "probability": 0.587890625}, {"start": 1953.86, "end": 1953.86, "word": " yet.", "probability": 0.8486328125}], "temperature": 1.0}, {"id": 77, "seek": 198323, "start": 1955.53, "end": 1983.23, "text": " Okay, this is the interface that I made in the application. This is an idea about it. Now, when we design an application, one of the important principles that we do, of course, there are different types of applications, there is a mobile application, there is a web application, okay, websites, internet, and there is a desktop like this one that we are working on, the game. I always tell you to separate the interface from your logic.", "tokens": [1033, 11, 341, 307, 264, 9226, 300, 286, 1027, 294, 264, 3861, 13, 639, 307, 364, 1558, 466, 309, 13, 823, 11, 562, 321, 1715, 364, 3861, 11, 472, 295, 264, 1021, 9156, 300, 321, 360, 11, 295, 1164, 11, 456, 366, 819, 3467, 295, 5821, 11, 456, 307, 257, 6013, 3861, 11, 456, 307, 257, 3670, 3861, 11, 1392, 11, 12891, 11, 4705, 11, 293, 456, 307, 257, 14502, 411, 341, 472, 300, 321, 366, 1364, 322, 11, 264, 1216, 13, 286, 1009, 980, 291, 281, 4994, 264, 9226, 490, 428, 9952, 13], "avg_logprob": -0.4707236741718493, "compression_ratio": 1.8595744680851063, "no_speech_prob": 5.602836608886719e-06, "words": [{"start": 1955.53, "end": 1956.01, "word": " Okay,", "probability": 0.045806884765625}, {"start": 1956.97, "end": 1957.17, "word": " this", "probability": 0.62451171875}, {"start": 1957.17, "end": 1957.21, "word": " is", "probability": 0.8603515625}, {"start": 1957.21, "end": 1957.33, "word": " the", "probability": 0.763671875}, {"start": 1957.33, "end": 1957.53, "word": " interface", "probability": 0.3115234375}, {"start": 1957.53, "end": 1958.29, "word": " that", "probability": 0.46533203125}, {"start": 1958.29, "end": 1958.39, "word": " I", "probability": 0.92138671875}, {"start": 1958.39, "end": 1958.65, "word": " made", "probability": 0.30908203125}, {"start": 1958.65, "end": 1959.39, "word": " in", "probability": 0.64404296875}, {"start": 1959.39, "end": 1959.51, "word": " the", "probability": 0.78173828125}, {"start": 1959.51, "end": 1959.77, "word": " application.", "probability": 0.63671875}, {"start": 1960.19, "end": 1960.39, "word": " This", "probability": 0.63037109375}, {"start": 1960.39, "end": 1960.41, "word": " is", "probability": 0.91357421875}, {"start": 1960.41, "end": 1960.67, "word": " an", "probability": 0.4140625}, {"start": 1960.67, "end": 1960.67, "word": " idea", "probability": 0.8701171875}, {"start": 1960.67, "end": 1960.87, "word": " about", "probability": 0.69482421875}, {"start": 1960.87, "end": 1961.19, "word": " it.", "probability": 0.8818359375}, {"start": 1961.57, "end": 1961.89, "word": " Now,", "probability": 0.806640625}, {"start": 1963.23, "end": 1963.59, "word": " when", "probability": 0.8740234375}, {"start": 1963.59, "end": 1963.75, "word": " we", "probability": 0.81103515625}, {"start": 1963.75, "end": 1964.09, "word": " design", "probability": 0.76953125}, {"start": 1964.09, "end": 1964.31, "word": " an", "probability": 0.77001953125}, {"start": 1964.31, "end": 1964.69, "word": " application,", "probability": 0.9033203125}, {"start": 1966.93, "end": 1967.79, "word": " one", "probability": 0.4306640625}, {"start": 1967.79, "end": 1967.93, "word": " of", "probability": 0.9521484375}, {"start": 1967.93, "end": 1967.93, "word": " the", "probability": 0.8857421875}, {"start": 1967.93, "end": 1968.57, "word": " important", "probability": 0.568359375}, {"start": 1968.57, "end": 1968.57, "word": " principles", "probability": 0.880859375}, {"start": 1968.57, "end": 1968.83, "word": " that", "probability": 0.693359375}, {"start": 1968.83, "end": 1969.01, "word": " we", "probability": 0.9462890625}, {"start": 1969.01, "end": 1969.25, "word": " do,", "probability": 0.169189453125}, {"start": 1970.09, "end": 1970.39, "word": " of", "probability": 0.59765625}, {"start": 1970.39, "end": 1970.53, "word": " course,", "probability": 0.9619140625}, {"start": 1970.63, "end": 1970.89, "word": " there", "probability": 0.1656494140625}, {"start": 1970.89, "end": 1970.97, "word": " are", "probability": 0.75830078125}, {"start": 1970.97, "end": 1971.07, "word": " different", "probability": 0.499755859375}, {"start": 1971.07, "end": 1971.59, "word": " types", "probability": 0.58544921875}, {"start": 1971.59, "end": 1972.05, "word": " of", "probability": 0.9619140625}, {"start": 1972.05, "end": 1972.05, "word": " applications,", "probability": 0.763671875}, {"start": 1972.09, "end": 1972.29, "word": " there", "probability": 0.6494140625}, {"start": 1972.29, "end": 1972.35, "word": " is", "probability": 0.482666015625}, {"start": 1972.35, "end": 1972.43, "word": " a", "probability": 0.7744140625}, {"start": 1972.43, "end": 1972.83, "word": " mobile", "probability": 0.7900390625}, {"start": 1972.83, "end": 1972.99, "word": " application,", "probability": 0.71484375}, {"start": 1973.25, "end": 1973.33, "word": " there", "probability": 0.6826171875}, {"start": 1973.33, "end": 1973.41, "word": " is", "probability": 0.91064453125}, {"start": 1973.41, "end": 1973.79, "word": " a", "probability": 0.9521484375}, {"start": 1973.79, "end": 1974.03, "word": " web", "probability": 0.8544921875}, {"start": 1974.03, "end": 1974.43, "word": " application,", "probability": 0.9482421875}, {"start": 1974.85, "end": 1974.85, "word": " okay,", "probability": 0.53515625}, {"start": 1975.03, "end": 1975.23, "word": " websites,", "probability": 0.5068359375}, {"start": 1975.39, "end": 1975.79, "word": " internet,", "probability": 0.53857421875}, {"start": 1975.89, "end": 1975.99, "word": " and", "probability": 0.7822265625}, {"start": 1975.99, "end": 1976.27, "word": " there", "probability": 0.83984375}, {"start": 1976.27, "end": 1976.33, "word": " is", "probability": 0.7880859375}, {"start": 1976.33, "end": 1976.91, "word": " a", "probability": 0.90380859375}, {"start": 1976.91, "end": 1977.15, "word": " desktop", "probability": 0.88232421875}, {"start": 1977.15, "end": 1977.69, "word": " like", "probability": 0.724609375}, {"start": 1977.69, "end": 1977.95, "word": " this", "probability": 0.751953125}, {"start": 1977.95, "end": 1978.01, "word": " one", "probability": 0.595703125}, {"start": 1978.01, "end": 1978.01, "word": " that", "probability": 0.416015625}, {"start": 1978.01, "end": 1978.17, "word": " we", "probability": 0.88720703125}, {"start": 1978.17, "end": 1978.27, "word": " are", "probability": 0.461181640625}, {"start": 1978.27, "end": 1978.45, "word": " working", "probability": 0.292724609375}, {"start": 1978.45, "end": 1978.55, "word": " on,", "probability": 0.576171875}, {"start": 1978.75, "end": 1978.81, "word": " the", "probability": 0.2388916015625}, {"start": 1978.81, "end": 1979.01, "word": " game.", "probability": 0.251708984375}, {"start": 1979.47, "end": 1979.65, "word": " I", "probability": 0.31005859375}, {"start": 1979.65, "end": 1979.73, "word": " always", "probability": 0.591796875}, {"start": 1979.73, "end": 1979.75, "word": " tell", "probability": 0.5322265625}, {"start": 1979.75, "end": 1980.23, "word": " you", "probability": 0.95703125}, {"start": 1980.23, "end": 1980.33, "word": " to", "probability": 0.9072265625}, {"start": 1980.33, "end": 1980.67, "word": " separate", "probability": 0.84912109375}, {"start": 1980.67, "end": 1981.07, "word": " the", "probability": 0.8857421875}, {"start": 1981.07, "end": 1981.39, "word": " interface", "probability": 0.90771484375}, {"start": 1981.39, "end": 1982.85, "word": " from", "probability": 0.88037109375}, {"start": 1982.85, "end": 1982.95, "word": " your", "probability": 0.716796875}, {"start": 1982.95, "end": 1983.23, "word": " logic.", "probability": 0.97119140625}], "temperature": 1.0}, {"id": 78, "seek": 201334, "start": 1984.6, "end": 2013.34, "text": " What does it mean to separate the UI from the logic? It means that this is the design screen, okay? Inside the design screen, there are buttons, and when I press the buttons, they execute certain elements, algorithms, algorithms, steps that they want to execute. Because if you put the UI design with the steps to execute, all in one file, what happens to your program? It gets corrupted, okay? So, I recommend that you separate the UI interface from", "tokens": [708, 775, 309, 914, 281, 4994, 264, 15682, 490, 264, 9952, 30, 467, 1355, 300, 341, 307, 264, 1715, 2568, 11, 1392, 30, 15123, 264, 1715, 2568, 11, 456, 366, 9905, 11, 293, 562, 286, 1886, 264, 9905, 11, 436, 14483, 1629, 4959, 11, 14642, 11, 14642, 11, 4439, 300, 436, 528, 281, 14483, 13, 1436, 498, 291, 829, 264, 15682, 1715, 365, 264, 4439, 281, 14483, 11, 439, 294, 472, 3991, 11, 437, 2314, 281, 428, 1461, 30, 467, 2170, 39480, 11, 1392, 30, 407, 11, 286, 2748, 300, 291, 4994, 264, 15682, 9226, 490], "avg_logprob": -0.507409793814433, "compression_ratio": 1.825910931174089, "no_speech_prob": 4.649162292480469e-06, "words": [{"start": 1984.6, "end": 1984.86, "word": " What", "probability": 0.2210693359375}, {"start": 1984.86, "end": 1984.98, "word": " does", "probability": 0.57861328125}, {"start": 1984.98, "end": 1984.98, "word": " it", "probability": 0.263916015625}, {"start": 1984.98, "end": 1985.1, "word": " mean", "probability": 0.95947265625}, {"start": 1985.1, "end": 1985.1, "word": " to", "probability": 0.658203125}, {"start": 1985.1, "end": 1985.18, "word": " separate", "probability": 0.5595703125}, {"start": 1985.18, "end": 1985.32, "word": " the", "probability": 0.68408203125}, {"start": 1985.32, "end": 1985.44, "word": " UI", "probability": 0.357421875}, {"start": 1985.44, "end": 1985.6, "word": " from", "probability": 0.86376953125}, {"start": 1985.6, "end": 1985.68, "word": " the", "probability": 0.5517578125}, {"start": 1985.68, "end": 1985.88, "word": " logic?", "probability": 0.88818359375}, {"start": 1986.08, "end": 1986.48, "word": " It", "probability": 0.233154296875}, {"start": 1986.48, "end": 1986.48, "word": " means", "probability": 0.658203125}, {"start": 1986.48, "end": 1986.66, "word": " that", "probability": 0.439208984375}, {"start": 1986.66, "end": 1987.08, "word": " this", "probability": 0.69775390625}, {"start": 1987.08, "end": 1987.22, "word": " is", "probability": 0.87939453125}, {"start": 1987.22, "end": 1988.04, "word": " the", "probability": 0.6826171875}, {"start": 1988.04, "end": 1988.34, "word": " design", "probability": 0.5859375}, {"start": 1988.34, "end": 1988.46, "word": " screen,", "probability": 0.67724609375}, {"start": 1988.68, "end": 1989.38, "word": " okay?", "probability": 0.342529296875}, {"start": 1989.86, "end": 1990.24, "word": " Inside", "probability": 0.60595703125}, {"start": 1990.24, "end": 1990.7, "word": " the", "probability": 0.85791015625}, {"start": 1990.7, "end": 1990.92, "word": " design", "probability": 0.84375}, {"start": 1990.92, "end": 1990.94, "word": " screen,", "probability": 0.83642578125}, {"start": 1991.26, "end": 1991.42, "word": " there", "probability": 0.904296875}, {"start": 1991.42, "end": 1991.5, "word": " are", "probability": 0.90283203125}, {"start": 1991.5, "end": 1991.94, "word": " buttons,", "probability": 0.80224609375}, {"start": 1992.38, "end": 1992.54, "word": " and", "probability": 0.72021484375}, {"start": 1992.54, "end": 1992.98, "word": " when", "probability": 0.6591796875}, {"start": 1992.98, "end": 1993.16, "word": " I", "probability": 0.73095703125}, {"start": 1993.16, "end": 1993.7, "word": " press", "probability": 0.52490234375}, {"start": 1993.7, "end": 1993.92, "word": " the", "probability": 0.301513671875}, {"start": 1993.92, "end": 1993.92, "word": " buttons,", "probability": 0.767578125}, {"start": 1994.02, "end": 1994.02, "word": " they", "probability": 0.64794921875}, {"start": 1994.02, "end": 1994.38, "word": " execute", "probability": 0.1934814453125}, {"start": 1994.38, "end": 1995.16, "word": " certain", "probability": 0.59619140625}, {"start": 1995.16, "end": 1995.16, "word": " elements,", "probability": 0.1422119140625}, {"start": 1995.28, "end": 1995.72, "word": " algorithms,", "probability": 0.6435546875}, {"start": 1995.86, "end": 1996.22, "word": " algorithms,", "probability": 0.85205078125}, {"start": 1996.48, "end": 1996.76, "word": " steps", "probability": 0.7265625}, {"start": 1996.76, "end": 1997.46, "word": " that", "probability": 0.216552734375}, {"start": 1997.46, "end": 1997.6, "word": " they", "probability": 0.5390625}, {"start": 1997.6, "end": 1997.66, "word": " want", "probability": 0.455322265625}, {"start": 1997.66, "end": 1997.66, "word": " to", "probability": 0.93408203125}, {"start": 1997.66, "end": 1997.9, "word": " execute.", "probability": 0.56591796875}, {"start": 1998.42, "end": 1998.66, "word": " Because", "probability": 0.47998046875}, {"start": 1998.66, "end": 1998.82, "word": " if", "probability": 0.9013671875}, {"start": 1998.82, "end": 1999.06, "word": " you", "probability": 0.95751953125}, {"start": 1999.06, "end": 1999.44, "word": " put", "probability": 0.60888671875}, {"start": 1999.44, "end": 1999.7, "word": " the", "probability": 0.87646484375}, {"start": 1999.7, "end": 2000.6, "word": " UI", "probability": 0.82470703125}, {"start": 2000.6, "end": 2000.6, "word": " design", "probability": 0.91845703125}, {"start": 2000.6, "end": 2001.02, "word": " with", "probability": 0.626953125}, {"start": 2001.02, "end": 2001.1, "word": " the", "probability": 0.578125}, {"start": 2001.1, "end": 2001.36, "word": " steps", "probability": 0.449951171875}, {"start": 2001.36, "end": 2001.56, "word": " to", "probability": 0.457763671875}, {"start": 2001.56, "end": 2001.92, "word": " execute,", "probability": 0.61962890625}, {"start": 2002.0, "end": 2002.14, "word": " all", "probability": 0.7978515625}, {"start": 2002.14, "end": 2002.3, "word": " in", "probability": 0.68115234375}, {"start": 2002.3, "end": 2002.38, "word": " one", "probability": 0.85400390625}, {"start": 2002.38, "end": 2002.66, "word": " file,", "probability": 0.81396484375}, {"start": 2004.58, "end": 2004.76, "word": " what", "probability": 0.84033203125}, {"start": 2004.76, "end": 2005.02, "word": " happens", "probability": 0.861328125}, {"start": 2005.02, "end": 2005.16, "word": " to", "probability": 0.94970703125}, {"start": 2005.16, "end": 2005.2, "word": " your", "probability": 0.8310546875}, {"start": 2005.2, "end": 2005.52, "word": " program?", "probability": 0.74951171875}, {"start": 2005.94, "end": 2006.0, "word": " It", "probability": 0.43798828125}, {"start": 2006.0, "end": 2006.0, "word": " gets", "probability": 0.08837890625}, {"start": 2006.0, "end": 2006.24, "word": " corrupted,", "probability": 0.2255859375}, {"start": 2007.16, "end": 2007.38, "word": " okay?", "probability": 0.796875}, {"start": 2009.32, "end": 2009.84, "word": " So,", "probability": 0.81103515625}, {"start": 2009.98, "end": 2010.26, "word": " I", "probability": 0.568359375}, {"start": 2010.26, "end": 2010.56, "word": " recommend", "probability": 0.3115234375}, {"start": 2010.56, "end": 2010.86, "word": " that", "probability": 0.51611328125}, {"start": 2010.86, "end": 2011.04, "word": " you", "probability": 0.92431640625}, {"start": 2011.04, "end": 2011.42, "word": " separate", "probability": 0.88623046875}, {"start": 2011.42, "end": 2012.06, "word": " the", "probability": 0.90087890625}, {"start": 2012.06, "end": 2012.32, "word": " UI", "probability": 0.8125}, {"start": 2012.32, "end": 2013.04, "word": " interface", "probability": 0.48876953125}, {"start": 2013.04, "end": 2013.34, "word": " from", "probability": 0.8642578125}], "temperature": 1.0}, {"id": 79, "seek": 204247, "start": 2014.11, "end": 2042.47, "text": " your logic, which is the design pattern, which they call MVC, do you hear it? The V is short for what? For the view, which is the face. The M is short for what? For the model. What is the model? This is what depends on your logic. Algorithms, algorithms, algorithms, connections to databases, this is all a model. Separate these from each other. Why? Sometimes the faces change.", "tokens": [428, 9952, 11, 597, 307, 264, 1715, 5102, 11, 597, 436, 818, 17663, 34, 11, 360, 291, 1568, 309, 30, 440, 691, 307, 2099, 337, 437, 30, 1171, 264, 1910, 11, 597, 307, 264, 1851, 13, 440, 376, 307, 2099, 337, 437, 30, 1171, 264, 2316, 13, 708, 307, 264, 2316, 30, 639, 307, 437, 5946, 322, 428, 9952, 13, 35014, 6819, 2592, 11, 14642, 11, 14642, 11, 9271, 281, 22380, 11, 341, 307, 439, 257, 2316, 13, 43480, 473, 613, 490, 1184, 661, 13, 1545, 30, 4803, 264, 8475, 1319, 13], "avg_logprob": -0.5194892524391093, "compression_ratio": 1.8221153846153846, "no_speech_prob": 9.59634780883789e-06, "words": [{"start": 2014.11, "end": 2014.33, "word": " your", "probability": 0.1197509765625}, {"start": 2014.33, "end": 2014.61, "word": " logic,", "probability": 0.92578125}, {"start": 2015.13, "end": 2015.49, "word": " which", "probability": 0.6357421875}, {"start": 2015.49, "end": 2015.63, "word": " is", "probability": 0.91552734375}, {"start": 2015.63, "end": 2015.71, "word": " the", "probability": 0.466796875}, {"start": 2015.71, "end": 2016.01, "word": " design", "probability": 0.89599609375}, {"start": 2016.01, "end": 2016.33, "word": " pattern,", "probability": 0.8642578125}, {"start": 2016.41, "end": 2016.47, "word": " which", "probability": 0.366455078125}, {"start": 2016.47, "end": 2016.57, "word": " they", "probability": 0.374267578125}, {"start": 2016.57, "end": 2016.83, "word": " call", "probability": 0.85693359375}, {"start": 2016.83, "end": 2017.55, "word": " MVC,", "probability": 0.704345703125}, {"start": 2017.73, "end": 2017.81, "word": " do", "probability": 0.2161865234375}, {"start": 2017.81, "end": 2017.85, "word": " you", "probability": 0.9716796875}, {"start": 2017.85, "end": 2018.03, "word": " hear", "probability": 0.64306640625}, {"start": 2018.03, "end": 2018.35, "word": " it?", "probability": 0.387451171875}, {"start": 2019.69, "end": 2020.21, "word": " The", "probability": 0.10614013671875}, {"start": 2020.21, "end": 2020.53, "word": " V", "probability": 0.51513671875}, {"start": 2020.53, "end": 2020.71, "word": " is", "probability": 0.56298828125}, {"start": 2020.71, "end": 2020.93, "word": " short", "probability": 0.481689453125}, {"start": 2020.93, "end": 2021.13, "word": " for", "probability": 0.80908203125}, {"start": 2021.13, "end": 2021.37, "word": " what?", "probability": 0.77734375}, {"start": 2021.81, "end": 2022.33, "word": " For", "probability": 0.3935546875}, {"start": 2022.33, "end": 2022.39, "word": " the", "probability": 0.273681640625}, {"start": 2022.39, "end": 2022.59, "word": " view,", "probability": 0.6416015625}, {"start": 2023.33, "end": 2023.69, "word": " which", "probability": 0.296630859375}, {"start": 2023.69, "end": 2023.69, "word": " is", "probability": 0.5009765625}, {"start": 2023.69, "end": 2023.77, "word": " the", "probability": 0.68896484375}, {"start": 2023.77, "end": 2024.01, "word": " face.", "probability": 0.426513671875}, {"start": 2024.69, "end": 2025.21, "word": " The", "probability": 0.68505859375}, {"start": 2025.21, "end": 2025.41, "word": " M", "probability": 0.96484375}, {"start": 2025.41, "end": 2025.55, "word": " is", "probability": 0.89892578125}, {"start": 2025.55, "end": 2025.83, "word": " short", "probability": 0.91162109375}, {"start": 2025.83, "end": 2026.03, "word": " for", "probability": 0.927734375}, {"start": 2026.03, "end": 2026.29, "word": " what?", "probability": 0.67626953125}, {"start": 2026.47, "end": 2026.99, "word": " For", "probability": 0.76123046875}, {"start": 2026.99, "end": 2027.13, "word": " the", "probability": 0.90234375}, {"start": 2027.13, "end": 2027.35, "word": " model.", "probability": 0.9296875}, {"start": 2027.93, "end": 2028.07, "word": " What", "probability": 0.85205078125}, {"start": 2028.07, "end": 2028.25, "word": " is", "probability": 0.91455078125}, {"start": 2028.25, "end": 2028.39, "word": " the", "probability": 0.82470703125}, {"start": 2028.39, "end": 2028.63, "word": " model?", "probability": 0.95556640625}, {"start": 2028.93, "end": 2029.31, "word": " This", "probability": 0.50634765625}, {"start": 2029.31, "end": 2029.35, "word": " is", "probability": 0.54736328125}, {"start": 2029.35, "end": 2029.39, "word": " what", "probability": 0.7353515625}, {"start": 2029.39, "end": 2029.71, "word": " depends", "probability": 0.1387939453125}, {"start": 2029.71, "end": 2029.93, "word": " on", "probability": 0.93896484375}, {"start": 2029.93, "end": 2030.01, "word": " your", "probability": 0.84912109375}, {"start": 2030.01, "end": 2030.33, "word": " logic.", "probability": 0.95068359375}, {"start": 2030.77, "end": 2031.29, "word": " Algorithms,", "probability": 0.7599283854166666}, {"start": 2031.39, "end": 2031.75, "word": " algorithms,", "probability": 0.80517578125}, {"start": 2032.15, "end": 2032.39, "word": " algorithms,", "probability": 0.04559326171875}, {"start": 2033.05, "end": 2034.01, "word": " connections", "probability": 0.7724609375}, {"start": 2034.01, "end": 2034.31, "word": " to", "probability": 0.81689453125}, {"start": 2034.31, "end": 2034.81, "word": " databases,", "probability": 0.64208984375}, {"start": 2034.91, "end": 2035.47, "word": " this", "probability": 0.429443359375}, {"start": 2035.47, "end": 2035.53, "word": " is", "probability": 0.93115234375}, {"start": 2035.53, "end": 2035.73, "word": " all", "probability": 0.87158203125}, {"start": 2035.73, "end": 2035.79, "word": " a", "probability": 0.435791015625}, {"start": 2035.79, "end": 2035.99, "word": " model.", "probability": 0.9541015625}, {"start": 2036.59, "end": 2036.95, "word": " Separate", "probability": 0.61322021484375}, {"start": 2036.95, "end": 2037.13, "word": " these", "probability": 0.591796875}, {"start": 2037.13, "end": 2037.39, "word": " from", "probability": 0.2607421875}, {"start": 2037.39, "end": 2037.97, "word": " each", "probability": 0.90576171875}, {"start": 2037.97, "end": 2037.97, "word": " other.", "probability": 0.90185546875}, {"start": 2038.55, "end": 2039.07, "word": " Why?", "probability": 0.8369140625}, {"start": 2040.83, "end": 2041.35, "word": " Sometimes", "probability": 0.39111328125}, {"start": 2041.35, "end": 2041.67, "word": " the", "probability": 0.517578125}, {"start": 2041.67, "end": 2041.93, "word": " faces", "probability": 0.78076171875}, {"start": 2041.93, "end": 2042.47, "word": " change.", "probability": 0.73779296875}], "temperature": 1.0}, {"id": 80, "seek": 205829, "start": 2043.27, "end": 2058.29, "text": "Each time I want to change something in the interface, I have to search for it in the code. If I want to change something in the logic, I have to create a new query, I have to open the code of the interface and search for it. No, it is correct that you separate the design from the interface.", "tokens": [36, 608, 565, 286, 528, 281, 1319, 746, 294, 264, 9226, 11, 286, 362, 281, 3164, 337, 309, 294, 264, 3089, 13, 759, 286, 528, 281, 1319, 746, 294, 264, 9952, 11, 286, 362, 281, 1884, 257, 777, 14581, 11, 286, 362, 281, 1269, 264, 3089, 295, 264, 9226, 293, 3164, 337, 309, 13, 883, 11, 309, 307, 3006, 300, 291, 4994, 264, 1715, 490, 264, 9226, 13], "avg_logprob": -0.5706521600916765, "compression_ratio": 1.9210526315789473, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 2043.27, "end": 2043.49, "word": "Each", "probability": 0.349945068359375}, {"start": 2043.49, "end": 2043.53, "word": " time", "probability": 0.83154296875}, {"start": 2043.53, "end": 2043.71, "word": " I", "probability": 0.62744140625}, {"start": 2043.71, "end": 2043.77, "word": " want", "probability": 0.341552734375}, {"start": 2043.77, "end": 2043.77, "word": " to", "probability": 0.95751953125}, {"start": 2043.77, "end": 2043.97, "word": " change", "probability": 0.62841796875}, {"start": 2043.97, "end": 2044.15, "word": " something", "probability": 0.1846923828125}, {"start": 2044.15, "end": 2044.15, "word": " in", "probability": 0.6767578125}, {"start": 2044.15, "end": 2044.23, "word": " the", "probability": 0.64697265625}, {"start": 2044.23, "end": 2044.45, "word": " interface,", "probability": 0.1629638671875}, {"start": 2044.59, "end": 2044.61, "word": " I", "probability": 0.73583984375}, {"start": 2044.61, "end": 2044.75, "word": " have", "probability": 0.1678466796875}, {"start": 2044.75, "end": 2044.81, "word": " to", "probability": 0.9580078125}, {"start": 2044.81, "end": 2045.19, "word": " search", "probability": 0.318359375}, {"start": 2045.19, "end": 2045.33, "word": " for", "probability": 0.301025390625}, {"start": 2045.33, "end": 2045.33, "word": " it", "probability": 0.51318359375}, {"start": 2045.33, "end": 2045.41, "word": " in", "probability": 0.453125}, {"start": 2045.41, "end": 2045.91, "word": " the", "probability": 0.68701171875}, {"start": 2045.91, "end": 2046.17, "word": " code.", "probability": 0.5498046875}, {"start": 2046.45, "end": 2046.81, "word": " If", "probability": 0.1708984375}, {"start": 2046.81, "end": 2046.83, "word": " I", "probability": 0.8642578125}, {"start": 2046.83, "end": 2047.03, "word": " want", "probability": 0.728515625}, {"start": 2047.03, "end": 2047.03, "word": " to", "probability": 0.958984375}, {"start": 2047.03, "end": 2047.17, "word": " change", "probability": 0.83447265625}, {"start": 2047.17, "end": 2047.41, "word": " something", "probability": 0.61962890625}, {"start": 2047.41, "end": 2047.41, "word": " in", "probability": 0.89599609375}, {"start": 2047.41, "end": 2047.65, "word": " the", "probability": 0.58935546875}, {"start": 2047.65, "end": 2047.95, "word": " logic,", "probability": 0.9296875}, {"start": 2048.73, "end": 2048.85, "word": " I", "probability": 0.5439453125}, {"start": 2048.85, "end": 2048.99, "word": " have", "probability": 0.69970703125}, {"start": 2048.99, "end": 2048.99, "word": " to", "probability": 0.9658203125}, {"start": 2048.99, "end": 2049.17, "word": " create", "probability": 0.53173828125}, {"start": 2049.17, "end": 2049.23, "word": " a", "probability": 0.89794921875}, {"start": 2049.23, "end": 2049.23, "word": " new", "probability": 0.861328125}, {"start": 2049.23, "end": 2049.49, "word": " query,", "probability": 0.96484375}, {"start": 2049.89, "end": 2049.99, "word": " I", "probability": 0.5322265625}, {"start": 2049.99, "end": 2050.09, "word": " have", "probability": 0.5537109375}, {"start": 2050.09, "end": 2050.19, "word": " to", "probability": 0.96826171875}, {"start": 2050.19, "end": 2050.57, "word": " open", "probability": 0.287353515625}, {"start": 2050.57, "end": 2050.93, "word": " the", "probability": 0.7392578125}, {"start": 2050.93, "end": 2051.47, "word": " code", "probability": 0.410400390625}, {"start": 2051.47, "end": 2051.59, "word": " of", "probability": 0.359130859375}, {"start": 2051.59, "end": 2051.61, "word": " the", "probability": 0.8388671875}, {"start": 2051.61, "end": 2051.79, "word": " interface", "probability": 0.85888671875}, {"start": 2051.79, "end": 2052.31, "word": " and", "probability": 0.6513671875}, {"start": 2052.31, "end": 2052.61, "word": " search", "probability": 0.82666015625}, {"start": 2052.61, "end": 2052.83, "word": " for", "probability": 0.62451171875}, {"start": 2052.83, "end": 2052.83, "word": " it.", "probability": 0.27734375}, {"start": 2053.95, "end": 2054.31, "word": " No,", "probability": 0.35546875}, {"start": 2054.41, "end": 2054.47, "word": " it", "probability": 0.464111328125}, {"start": 2054.47, "end": 2054.53, "word": " is", "probability": 0.5966796875}, {"start": 2054.53, "end": 2054.69, "word": " correct", "probability": 0.53515625}, {"start": 2054.69, "end": 2054.79, "word": " that", "probability": 0.49755859375}, {"start": 2054.79, "end": 2054.89, "word": " you", "probability": 0.7998046875}, {"start": 2054.89, "end": 2055.15, "word": " separate", "probability": 0.69384765625}, {"start": 2055.15, "end": 2055.29, "word": " the", "probability": 0.80712890625}, {"start": 2055.29, "end": 2055.79, "word": " design", "probability": 0.93212890625}, {"start": 2055.79, "end": 2056.91, "word": " from", "probability": 0.79541015625}, {"start": 2056.91, "end": 2058.05, "word": " the", "probability": 0.90771484375}, {"start": 2058.05, "end": 2058.29, "word": " interface.", "probability": 0.85498046875}], "temperature": 1.0}, {"id": 81, "seek": 208805, "start": 2059.07, "end": 2088.05, "text": " The design, which is the view, and the model, which is the steps and algorithms, is the model. And the view is from these faces. And the controller, which is the C, who is it? The one that connects the two. The one that connects the two together. And this is important even in, you don't find web programs, you don't find anyone working. You find me working back end, and another person working. This is how we make the design, and this is how we make the work back. Even if there is a separation. But if the two fell down and gathered together,", "tokens": [440, 1715, 11, 597, 307, 264, 1910, 11, 293, 264, 2316, 11, 597, 307, 264, 4439, 293, 14642, 11, 307, 264, 2316, 13, 400, 264, 1910, 307, 490, 613, 8475, 13, 400, 264, 10561, 11, 597, 307, 264, 383, 11, 567, 307, 309, 30, 440, 472, 300, 16967, 264, 732, 13, 440, 472, 300, 16967, 264, 732, 1214, 13, 400, 341, 307, 1021, 754, 294, 11, 291, 500, 380, 915, 3670, 4268, 11, 291, 500, 380, 915, 2878, 1364, 13, 509, 915, 385, 1364, 646, 917, 11, 293, 1071, 954, 1364, 13, 639, 307, 577, 321, 652, 264, 1715, 11, 293, 341, 307, 577, 321, 652, 264, 589, 646, 13, 2754, 498, 456, 307, 257, 14634, 13, 583, 498, 264, 732, 5696, 760, 293, 13032, 1214, 11], "avg_logprob": -0.4738769489340484, "compression_ratio": 2.0526315789473686, "no_speech_prob": 3.5881996154785156e-05, "words": [{"start": 2059.07, "end": 2059.33, "word": " The", "probability": 0.43701171875}, {"start": 2059.33, "end": 2059.67, "word": " design,", "probability": 0.451904296875}, {"start": 2059.87, "end": 2059.93, "word": " which", "probability": 0.6630859375}, {"start": 2059.93, "end": 2060.05, "word": " is", "probability": 0.83935546875}, {"start": 2060.05, "end": 2060.19, "word": " the", "probability": 0.72119140625}, {"start": 2060.19, "end": 2060.51, "word": " view,", "probability": 0.74609375}, {"start": 2060.65, "end": 2061.25, "word": " and", "probability": 0.7666015625}, {"start": 2061.25, "end": 2061.35, "word": " the", "probability": 0.84521484375}, {"start": 2061.35, "end": 2061.63, "word": " model,", "probability": 0.93408203125}, {"start": 2061.83, "end": 2061.89, "word": " which", "probability": 0.875}, {"start": 2061.89, "end": 2062.01, "word": " is", "probability": 0.379638671875}, {"start": 2062.01, "end": 2062.09, "word": " the", "probability": 0.82373046875}, {"start": 2062.09, "end": 2062.39, "word": " steps", "probability": 0.63623046875}, {"start": 2062.39, "end": 2062.65, "word": " and", "probability": 0.77587890625}, {"start": 2062.65, "end": 2063.07, "word": " algorithms,", "probability": 0.42626953125}, {"start": 2063.57, "end": 2063.59, "word": " is", "probability": 0.450439453125}, {"start": 2063.59, "end": 2064.09, "word": " the", "probability": 0.85302734375}, {"start": 2064.09, "end": 2064.35, "word": " model.", "probability": 0.8916015625}, {"start": 2065.01, "end": 2065.21, "word": " And", "probability": 0.59814453125}, {"start": 2065.21, "end": 2065.29, "word": " the", "probability": 0.8359375}, {"start": 2065.29, "end": 2065.51, "word": " view", "probability": 0.87158203125}, {"start": 2065.51, "end": 2065.69, "word": " is", "probability": 0.81689453125}, {"start": 2065.69, "end": 2065.95, "word": " from", "probability": 0.159423828125}, {"start": 2065.95, "end": 2066.43, "word": " these", "probability": 0.53515625}, {"start": 2066.43, "end": 2066.65, "word": " faces.", "probability": 0.65380859375}, {"start": 2066.87, "end": 2066.97, "word": " And", "probability": 0.88623046875}, {"start": 2066.97, "end": 2067.05, "word": " the", "probability": 0.8935546875}, {"start": 2067.05, "end": 2067.51, "word": " controller,", "probability": 0.7900390625}, {"start": 2067.71, "end": 2067.71, "word": " which", "probability": 0.9228515625}, {"start": 2067.71, "end": 2067.81, "word": " is", "probability": 0.9453125}, {"start": 2067.81, "end": 2067.91, "word": " the", "probability": 0.52197265625}, {"start": 2067.91, "end": 2068.15, "word": " C,", "probability": 0.66162109375}, {"start": 2068.97, "end": 2069.29, "word": " who", "probability": 0.330078125}, {"start": 2069.29, "end": 2069.41, "word": " is", "probability": 0.86083984375}, {"start": 2069.41, "end": 2069.67, "word": " it?", "probability": 0.7490234375}, {"start": 2069.81, "end": 2069.99, "word": " The", "probability": 0.3857421875}, {"start": 2069.99, "end": 2070.13, "word": " one", "probability": 0.7783203125}, {"start": 2070.13, "end": 2070.13, "word": " that", "probability": 0.6767578125}, {"start": 2070.13, "end": 2070.19, "word": " connects", "probability": 0.74609375}, {"start": 2070.19, "end": 2070.35, "word": " the", "probability": 0.55322265625}, {"start": 2070.35, "end": 2071.35, "word": " two.", "probability": 0.935546875}, {"start": 2071.45, "end": 2071.61, "word": " The", "probability": 0.396240234375}, {"start": 2071.61, "end": 2071.61, "word": " one", "probability": 0.91357421875}, {"start": 2071.61, "end": 2071.65, "word": " that", "probability": 0.908203125}, {"start": 2071.65, "end": 2071.79, "word": " connects", "probability": 0.9111328125}, {"start": 2071.79, "end": 2071.97, "word": " the", "probability": 0.72265625}, {"start": 2071.97, "end": 2072.15, "word": " two", "probability": 0.93603515625}, {"start": 2072.15, "end": 2072.35, "word": " together.", "probability": 0.73974609375}, {"start": 2072.85, "end": 2073.11, "word": " And", "probability": 0.61962890625}, {"start": 2073.11, "end": 2073.25, "word": " this", "probability": 0.794921875}, {"start": 2073.25, "end": 2073.29, "word": " is", "probability": 0.8251953125}, {"start": 2073.29, "end": 2073.49, "word": " important", "probability": 0.79345703125}, {"start": 2073.49, "end": 2073.79, "word": " even", "probability": 0.67822265625}, {"start": 2073.79, "end": 2073.97, "word": " in,", "probability": 0.68896484375}, {"start": 2074.45, "end": 2074.65, "word": " you", "probability": 0.8984375}, {"start": 2074.65, "end": 2074.73, "word": " don't", "probability": 0.822021484375}, {"start": 2074.73, "end": 2074.97, "word": " find", "probability": 0.8134765625}, {"start": 2074.97, "end": 2075.07, "word": " web", "probability": 0.20849609375}, {"start": 2075.07, "end": 2075.31, "word": " programs,", "probability": 0.2220458984375}, {"start": 2075.97, "end": 2076.11, "word": " you", "probability": 0.93017578125}, {"start": 2076.11, "end": 2076.15, "word": " don't", "probability": 0.9326171875}, {"start": 2076.15, "end": 2076.27, "word": " find", "probability": 0.88037109375}, {"start": 2076.27, "end": 2076.59, "word": " anyone", "probability": 0.6767578125}, {"start": 2076.59, "end": 2076.87, "word": " working.", "probability": 0.340576171875}, {"start": 2077.07, "end": 2077.17, "word": " You", "probability": 0.70703125}, {"start": 2077.17, "end": 2077.31, "word": " find", "probability": 0.6630859375}, {"start": 2077.31, "end": 2077.71, "word": " me", "probability": 0.363037109375}, {"start": 2077.71, "end": 2078.13, "word": " working", "probability": 0.76318359375}, {"start": 2078.13, "end": 2078.33, "word": " back", "probability": 0.2335205078125}, {"start": 2078.33, "end": 2078.69, "word": " end,", "probability": 0.57568359375}, {"start": 2078.99, "end": 2079.03, "word": " and", "probability": 0.5009765625}, {"start": 2079.03, "end": 2079.33, "word": " another", "probability": 0.359130859375}, {"start": 2079.33, "end": 2079.67, "word": " person", "probability": 0.85888671875}, {"start": 2079.67, "end": 2080.29, "word": " working.", "probability": 0.76611328125}, {"start": 2081.05, "end": 2081.37, "word": " This", "probability": 0.61767578125}, {"start": 2081.37, "end": 2081.41, "word": " is", "probability": 0.50830078125}, {"start": 2081.41, "end": 2081.57, "word": " how", "probability": 0.2430419921875}, {"start": 2081.57, "end": 2081.57, "word": " we", "probability": 0.290771484375}, {"start": 2081.57, "end": 2081.63, "word": " make", "probability": 0.40283203125}, {"start": 2081.63, "end": 2081.73, "word": " the", "probability": 0.72705078125}, {"start": 2081.73, "end": 2082.03, "word": " design,", "probability": 0.95751953125}, {"start": 2082.21, "end": 2082.29, "word": " and", "probability": 0.89453125}, {"start": 2082.29, "end": 2082.39, "word": " this", "probability": 0.88427734375}, {"start": 2082.39, "end": 2082.43, "word": " is", "probability": 0.9169921875}, {"start": 2082.43, "end": 2082.55, "word": " how", "probability": 0.92138671875}, {"start": 2082.55, "end": 2082.55, "word": " we", "probability": 0.90185546875}, {"start": 2082.55, "end": 2082.67, "word": " make", "probability": 0.56640625}, {"start": 2082.67, "end": 2082.77, "word": " the", "probability": 0.708984375}, {"start": 2082.77, "end": 2082.93, "word": " work", "probability": 0.7158203125}, {"start": 2082.93, "end": 2083.53, "word": " back.", "probability": 0.38623046875}, {"start": 2084.77, "end": 2085.17, "word": " Even", "probability": 0.564453125}, {"start": 2085.17, "end": 2085.45, "word": " if", "probability": 0.537109375}, {"start": 2085.45, "end": 2085.55, "word": " there", "probability": 0.87060546875}, {"start": 2085.55, "end": 2085.55, "word": " is", "probability": 0.75244140625}, {"start": 2085.55, "end": 2085.61, "word": " a", "probability": 0.82568359375}, {"start": 2085.61, "end": 2085.83, "word": " separation.", "probability": 0.302978515625}, {"start": 2086.07, "end": 2086.41, "word": " But", "probability": 0.94287109375}, {"start": 2086.41, "end": 2086.55, "word": " if", "probability": 0.85009765625}, {"start": 2086.55, "end": 2086.73, "word": " the", "probability": 0.31591796875}, {"start": 2086.73, "end": 2086.99, "word": " two", "probability": 0.9443359375}, {"start": 2086.99, "end": 2087.23, "word": " fell", "probability": 0.12298583984375}, {"start": 2087.23, "end": 2087.37, "word": " down", "probability": 0.372802734375}, {"start": 2087.37, "end": 2087.47, "word": " and", "probability": 0.76220703125}, {"start": 2087.47, "end": 2087.73, "word": " gathered", "probability": 0.163330078125}, {"start": 2087.73, "end": 2088.05, "word": " together,", "probability": 0.8505859375}], "temperature": 1.0}, {"id": 82, "seek": 210648, "start": 2089.63, "end": 2106.49, "text": "It's hard work, right or wrong? So this right is from the division. We are currently not separated, right or wrong? This is all UI code, and inside the buttons is the execution code. The execution is present with the UI together. So in order to implement", "tokens": [3522, 311, 1152, 589, 11, 558, 420, 2085, 30, 407, 341, 558, 307, 490, 264, 10044, 13, 492, 366, 4362, 406, 12005, 11, 558, 420, 2085, 30, 639, 307, 439, 15682, 3089, 11, 293, 1854, 264, 9905, 307, 264, 15058, 3089, 13, 440, 15058, 307, 1974, 365, 264, 15682, 1214, 13, 407, 294, 1668, 281, 4445], "avg_logprob": -0.6436403257805005, "compression_ratio": 1.5301204819277108, "no_speech_prob": 0.00015294551849365234, "words": [{"start": 2089.63, "end": 2090.11, "word": "It's", "probability": 0.23748779296875}, {"start": 2090.11, "end": 2090.41, "word": " hard", "probability": 0.46337890625}, {"start": 2090.41, "end": 2091.05, "word": " work,", "probability": 0.3291015625}, {"start": 2091.17, "end": 2091.31, "word": " right", "probability": 0.3623046875}, {"start": 2091.31, "end": 2091.47, "word": " or", "probability": 0.82470703125}, {"start": 2091.47, "end": 2091.61, "word": " wrong?", "probability": 0.71826171875}, {"start": 2091.97, "end": 2092.13, "word": " So", "probability": 0.457275390625}, {"start": 2092.13, "end": 2092.19, "word": " this", "probability": 0.3662109375}, {"start": 2092.19, "end": 2092.31, "word": " right", "probability": 0.4951171875}, {"start": 2092.31, "end": 2092.47, "word": " is", "probability": 0.44873046875}, {"start": 2092.47, "end": 2092.61, "word": " from", "probability": 0.367431640625}, {"start": 2092.61, "end": 2092.69, "word": " the", "probability": 0.375244140625}, {"start": 2092.69, "end": 2092.93, "word": " division.", "probability": 0.1982421875}, {"start": 2093.37, "end": 2093.57, "word": " We", "probability": 0.43359375}, {"start": 2093.57, "end": 2093.65, "word": " are", "probability": 0.68359375}, {"start": 2093.65, "end": 2093.97, "word": " currently", "probability": 0.390869140625}, {"start": 2093.97, "end": 2094.19, "word": " not", "probability": 0.86083984375}, {"start": 2094.19, "end": 2094.51, "word": " separated,", "probability": 0.386474609375}, {"start": 2095.05, "end": 2095.39, "word": " right", "probability": 0.716796875}, {"start": 2095.39, "end": 2095.55, "word": " or", "probability": 0.94775390625}, {"start": 2095.55, "end": 2095.69, "word": " wrong?", "probability": 0.89013671875}, {"start": 2096.55, "end": 2097.03, "word": " This", "probability": 0.280517578125}, {"start": 2097.03, "end": 2097.95, "word": " is", "probability": 0.86083984375}, {"start": 2097.95, "end": 2098.17, "word": " all", "probability": 0.9248046875}, {"start": 2098.17, "end": 2098.81, "word": " UI", "probability": 0.461181640625}, {"start": 2098.81, "end": 2099.07, "word": " code,", "probability": 0.91845703125}, {"start": 2099.91, "end": 2100.43, "word": " and", "probability": 0.8427734375}, {"start": 2100.43, "end": 2100.61, "word": " inside", "probability": 0.5546875}, {"start": 2100.61, "end": 2100.79, "word": " the", "probability": 0.57958984375}, {"start": 2100.79, "end": 2101.05, "word": " buttons", "probability": 0.83251953125}, {"start": 2101.05, "end": 2101.39, "word": " is", "probability": 0.3916015625}, {"start": 2101.39, "end": 2102.47, "word": " the", "probability": 0.439697265625}, {"start": 2102.47, "end": 2102.95, "word": " execution", "probability": 0.54833984375}, {"start": 2102.95, "end": 2103.21, "word": " code.", "probability": 0.9228515625}, {"start": 2103.75, "end": 2104.23, "word": " The", "probability": 0.466552734375}, {"start": 2104.23, "end": 2104.59, "word": " execution", "probability": 0.896484375}, {"start": 2104.59, "end": 2104.73, "word": " is", "probability": 0.319580078125}, {"start": 2104.73, "end": 2104.73, "word": " present", "probability": 0.3359375}, {"start": 2104.73, "end": 2104.87, "word": " with", "probability": 0.6005859375}, {"start": 2104.87, "end": 2104.99, "word": " the", "probability": 0.82861328125}, {"start": 2104.99, "end": 2105.23, "word": " UI", "probability": 0.95458984375}, {"start": 2105.23, "end": 2105.55, "word": " together.", "probability": 0.6884765625}, {"start": 2105.77, "end": 2105.87, "word": " So", "probability": 0.6923828125}, {"start": 2105.87, "end": 2106.07, "word": " in", "probability": 0.36767578125}, {"start": 2106.07, "end": 2106.07, "word": " order", "probability": 0.91748046875}, {"start": 2106.07, "end": 2106.17, "word": " to", "probability": 0.96875}, {"start": 2106.17, "end": 2106.49, "word": " implement", "probability": 0.552734375}], "temperature": 1.0}, {"id": 83, "seek": 213203, "start": 2107.25, "end": 2132.03, "text": " Our job is to organize our work. We want to separate the two. What is separating the two from each other? Take all the logic and undo and redo and draw and put them in another class. Separate the elements, separate the elements. Instead of putting them all in one file. Let's separate this talk. Let's make a new class. I want to call this class DrawManager. What is DrawManager?", "tokens": [2621, 1691, 307, 281, 13859, 527, 589, 13, 492, 528, 281, 4994, 264, 732, 13, 708, 307, 29279, 264, 732, 490, 1184, 661, 30, 3664, 439, 264, 9952, 293, 23779, 293, 29956, 293, 2642, 293, 829, 552, 294, 1071, 1508, 13, 43480, 473, 264, 4959, 11, 4994, 264, 4959, 13, 7156, 295, 3372, 552, 439, 294, 472, 3991, 13, 961, 311, 4994, 341, 751, 13, 961, 311, 652, 257, 777, 1508, 13, 286, 528, 281, 818, 341, 1508, 20386, 6652, 3557, 13, 708, 307, 20386, 6652, 3557, 30], "avg_logprob": -0.5165028357773684, "compression_ratio": 1.8009478672985781, "no_speech_prob": 4.0531158447265625e-06, "words": [{"start": 2107.25, "end": 2107.55, "word": " Our", "probability": 0.034515380859375}, {"start": 2107.55, "end": 2107.57, "word": " job", "probability": 0.56103515625}, {"start": 2107.57, "end": 2107.73, "word": " is", "probability": 0.81494140625}, {"start": 2107.73, "end": 2107.89, "word": " to", "probability": 0.80615234375}, {"start": 2107.89, "end": 2108.09, "word": " organize", "probability": 0.2529296875}, {"start": 2108.09, "end": 2108.69, "word": " our", "probability": 0.60595703125}, {"start": 2108.69, "end": 2108.69, "word": " work.", "probability": 0.493896484375}, {"start": 2109.09, "end": 2109.33, "word": " We", "probability": 0.28515625}, {"start": 2109.33, "end": 2109.51, "word": " want", "probability": 0.21533203125}, {"start": 2109.51, "end": 2109.65, "word": " to", "probability": 0.94482421875}, {"start": 2109.65, "end": 2109.75, "word": " separate", "probability": 0.72900390625}, {"start": 2109.75, "end": 2109.97, "word": " the", "probability": 0.35009765625}, {"start": 2109.97, "end": 2110.03, "word": " two.", "probability": 0.8408203125}, {"start": 2110.13, "end": 2110.23, "word": " What", "probability": 0.47802734375}, {"start": 2110.23, "end": 2110.33, "word": " is", "probability": 0.23974609375}, {"start": 2110.33, "end": 2110.55, "word": " separating", "probability": 0.6884765625}, {"start": 2110.55, "end": 2110.73, "word": " the", "probability": 0.52197265625}, {"start": 2110.73, "end": 2110.83, "word": " two", "probability": 0.94091796875}, {"start": 2110.83, "end": 2110.97, "word": " from", "probability": 0.6796875}, {"start": 2110.97, "end": 2111.17, "word": " each", "probability": 0.91845703125}, {"start": 2111.17, "end": 2111.17, "word": " other?", "probability": 0.8935546875}, {"start": 2111.51, "end": 2111.95, "word": " Take", "probability": 0.255615234375}, {"start": 2111.95, "end": 2112.17, "word": " all", "probability": 0.75146484375}, {"start": 2112.17, "end": 2112.23, "word": " the", "probability": 0.74560546875}, {"start": 2112.23, "end": 2112.55, "word": " logic", "probability": 0.93212890625}, {"start": 2112.55, "end": 2113.53, "word": " and", "probability": 0.3955078125}, {"start": 2113.53, "end": 2113.93, "word": " undo", "probability": 0.8330078125}, {"start": 2113.93, "end": 2114.19, "word": " and", "probability": 0.454833984375}, {"start": 2114.19, "end": 2114.55, "word": " redo", "probability": 0.91796875}, {"start": 2114.55, "end": 2114.77, "word": " and", "probability": 0.87451171875}, {"start": 2114.77, "end": 2115.13, "word": " draw", "probability": 0.5380859375}, {"start": 2115.13, "end": 2115.55, "word": " and", "probability": 0.403564453125}, {"start": 2115.55, "end": 2115.73, "word": " put", "probability": 0.74951171875}, {"start": 2115.73, "end": 2115.81, "word": " them", "probability": 0.427978515625}, {"start": 2115.81, "end": 2115.83, "word": " in", "probability": 0.8369140625}, {"start": 2115.83, "end": 2115.91, "word": " another", "probability": 0.6279296875}, {"start": 2115.91, "end": 2116.23, "word": " class.", "probability": 0.9501953125}, {"start": 2117.15, "end": 2117.49, "word": " Separate", "probability": 0.657958984375}, {"start": 2117.49, "end": 2117.57, "word": " the", "probability": 0.44189453125}, {"start": 2117.57, "end": 2117.73, "word": " elements,", "probability": 0.08734130859375}, {"start": 2117.87, "end": 2118.05, "word": " separate", "probability": 0.375}, {"start": 2118.05, "end": 2118.25, "word": " the", "probability": 0.810546875}, {"start": 2118.25, "end": 2118.57, "word": " elements.", "probability": 0.7392578125}, {"start": 2119.11, "end": 2119.45, "word": " Instead", "probability": 0.6884765625}, {"start": 2119.45, "end": 2119.57, "word": " of", "probability": 0.9619140625}, {"start": 2119.57, "end": 2119.83, "word": " putting", "probability": 0.8603515625}, {"start": 2119.83, "end": 2119.95, "word": " them", "probability": 0.380859375}, {"start": 2119.95, "end": 2120.11, "word": " all", "probability": 0.845703125}, {"start": 2120.11, "end": 2120.21, "word": " in", "probability": 0.83251953125}, {"start": 2120.21, "end": 2120.27, "word": " one", "probability": 0.84716796875}, {"start": 2120.27, "end": 2120.79, "word": " file.", "probability": 0.85009765625}, {"start": 2121.61, "end": 2121.95, "word": " Let's", "probability": 0.486480712890625}, {"start": 2121.95, "end": 2122.21, "word": " separate", "probability": 0.771484375}, {"start": 2122.21, "end": 2122.43, "word": " this", "probability": 0.49560546875}, {"start": 2122.43, "end": 2122.77, "word": " talk.", "probability": 0.4609375}, {"start": 2123.21, "end": 2123.53, "word": " Let's", "probability": 0.739501953125}, {"start": 2123.53, "end": 2123.93, "word": " make", "probability": 0.7236328125}, {"start": 2123.93, "end": 2124.05, "word": " a", "probability": 0.9443359375}, {"start": 2124.05, "end": 2124.05, "word": " new", "probability": 0.904296875}, {"start": 2124.05, "end": 2124.33, "word": " class.", "probability": 0.97216796875}, {"start": 2126.47, "end": 2126.91, "word": " I", "probability": 0.9306640625}, {"start": 2126.91, "end": 2126.99, "word": " want", "probability": 0.497802734375}, {"start": 2126.99, "end": 2127.11, "word": " to", "probability": 0.966796875}, {"start": 2127.11, "end": 2127.29, "word": " call", "probability": 0.71435546875}, {"start": 2127.29, "end": 2127.51, "word": " this", "probability": 0.826171875}, {"start": 2127.51, "end": 2127.79, "word": " class", "probability": 0.9580078125}, {"start": 2127.79, "end": 2128.65, "word": " DrawManager.", "probability": 0.5948079427083334}, {"start": 2130.91, "end": 2131.35, "word": " What", "probability": 0.865234375}, {"start": 2131.35, "end": 2131.47, "word": " is", "probability": 0.87939453125}, {"start": 2131.47, "end": 2132.03, "word": " DrawManager?", "probability": 0.8611653645833334}], "temperature": 1.0}, {"id": 84, "seek": 214254, "start": 2133.02, "end": 2142.54, "text": "This is the person in charge of the drawing. He is the one who does the management of this work. When I press any button, who executes it and works?", "tokens": [5723, 307, 264, 954, 294, 4602, 295, 264, 6316, 13, 634, 307, 264, 472, 567, 775, 264, 4592, 295, 341, 589, 13, 1133, 286, 1886, 604, 2960, 11, 567, 4454, 1819, 309, 293, 1985, 30], "avg_logprob": -0.7664930406543944, "compression_ratio": 1.2982456140350878, "no_speech_prob": 1.6689300537109375e-05, "words": [{"start": 2133.02, "end": 2133.36, "word": "This", "probability": 0.09002685546875}, {"start": 2133.36, "end": 2133.38, "word": " is", "probability": 0.57421875}, {"start": 2133.38, "end": 2133.6, "word": " the", "probability": 0.5478515625}, {"start": 2133.6, "end": 2133.62, "word": " person", "probability": 0.1412353515625}, {"start": 2133.62, "end": 2133.84, "word": " in", "probability": 0.454345703125}, {"start": 2133.84, "end": 2133.84, "word": " charge", "probability": 0.93701171875}, {"start": 2133.84, "end": 2133.9, "word": " of", "probability": 0.56787109375}, {"start": 2133.9, "end": 2133.92, "word": " the", "probability": 0.40966796875}, {"start": 2133.92, "end": 2134.16, "word": " drawing.", "probability": 0.30712890625}, {"start": 2135.56, "end": 2136.0, "word": " He", "probability": 0.39208984375}, {"start": 2136.0, "end": 2136.1, "word": " is", "probability": 0.407958984375}, {"start": 2136.1, "end": 2136.18, "word": " the", "probability": 0.37646484375}, {"start": 2136.18, "end": 2136.2, "word": " one", "probability": 0.6748046875}, {"start": 2136.2, "end": 2136.46, "word": " who", "probability": 0.4150390625}, {"start": 2136.46, "end": 2136.68, "word": " does", "probability": 0.432373046875}, {"start": 2136.68, "end": 2136.8, "word": " the", "probability": 0.455078125}, {"start": 2136.8, "end": 2137.12, "word": " management", "probability": 0.8212890625}, {"start": 2137.12, "end": 2137.32, "word": " of", "probability": 0.48828125}, {"start": 2137.32, "end": 2137.38, "word": " this", "probability": 0.316162109375}, {"start": 2137.38, "end": 2137.62, "word": " work.", "probability": 0.52392578125}, {"start": 2138.66, "end": 2139.06, "word": " When", "probability": 0.1395263671875}, {"start": 2139.06, "end": 2140.44, "word": " I", "probability": 0.8583984375}, {"start": 2140.44, "end": 2140.68, "word": " press", "probability": 0.59130859375}, {"start": 2140.68, "end": 2141.08, "word": " any", "probability": 0.72509765625}, {"start": 2141.08, "end": 2141.42, "word": " button,", "probability": 0.74560546875}, {"start": 2141.54, "end": 2141.74, "word": " who", "probability": 0.580078125}, {"start": 2141.74, "end": 2142.12, "word": " executes", "probability": 0.59588623046875}, {"start": 2142.12, "end": 2142.2, "word": " it", "probability": 0.5341796875}, {"start": 2142.2, "end": 2142.26, "word": " and", "probability": 0.439697265625}, {"start": 2142.26, "end": 2142.54, "word": " works?", "probability": 0.33154296875}], "temperature": 1.0}, {"id": 85, "seek": 216414, "start": 2144.14, "end": 2164.14, "text": " How many buttons do I have in the program? Five. Draw a circle. Draw a rectangle. Draw a solid circle. Undo and redo. For each button, what do I have to do here? A special arrow. I can say public, void, draw, circle. Do you see these arrows? You have to press them.", "tokens": [1012, 867, 9905, 360, 286, 362, 294, 264, 1461, 30, 9436, 13, 20386, 257, 6329, 13, 20386, 257, 21930, 13, 20386, 257, 5100, 6329, 13, 2719, 78, 293, 29956, 13, 1171, 1184, 2960, 11, 437, 360, 286, 362, 281, 360, 510, 30, 316, 2121, 11610, 13, 286, 393, 584, 1908, 11, 22009, 11, 2642, 11, 6329, 13, 1144, 291, 536, 613, 19669, 30, 509, 362, 281, 1886, 552, 13], "avg_logprob": -0.5754464456013271, "compression_ratio": 1.5647058823529412, "no_speech_prob": 4.7206878662109375e-05, "words": [{"start": 2144.1400000000003, "end": 2144.7000000000003, "word": " How", "probability": 0.17724609375}, {"start": 2144.7000000000003, "end": 2145.26, "word": " many", "probability": 0.86865234375}, {"start": 2145.26, "end": 2145.4, "word": " buttons", "probability": 0.476318359375}, {"start": 2145.4, "end": 2145.54, "word": " do", "probability": 0.448486328125}, {"start": 2145.54, "end": 2145.54, "word": " I", "probability": 0.84130859375}, {"start": 2145.54, "end": 2145.72, "word": " have", "probability": 0.94384765625}, {"start": 2145.72, "end": 2145.82, "word": " in", "probability": 0.74462890625}, {"start": 2145.82, "end": 2145.9, "word": " the", "probability": 0.4072265625}, {"start": 2145.9, "end": 2146.24, "word": " program?", "probability": 0.8037109375}, {"start": 2146.82, "end": 2147.26, "word": " Five.", "probability": 0.521484375}, {"start": 2147.7, "end": 2148.2, "word": " Draw", "probability": 0.75390625}, {"start": 2148.2, "end": 2148.34, "word": " a", "probability": 0.93115234375}, {"start": 2148.34, "end": 2148.68, "word": " circle.", "probability": 0.89111328125}, {"start": 2148.94, "end": 2148.94, "word": " Draw", "probability": 0.611328125}, {"start": 2148.94, "end": 2149.12, "word": " a", "probability": 0.85546875}, {"start": 2149.12, "end": 2149.4, "word": " rectangle.", "probability": 0.708984375}, {"start": 2149.68, "end": 2149.8, "word": " Draw", "probability": 0.85302734375}, {"start": 2149.8, "end": 2150.26, "word": " a", "probability": 0.92822265625}, {"start": 2150.26, "end": 2150.26, "word": " solid", "probability": 0.09930419921875}, {"start": 2150.26, "end": 2150.86, "word": " circle.", "probability": 0.96533203125}, {"start": 2152.04, "end": 2152.6, "word": " Undo", "probability": 0.6964111328125}, {"start": 2152.6, "end": 2152.94, "word": " and", "probability": 0.75439453125}, {"start": 2152.94, "end": 2153.2, "word": " redo.", "probability": 0.60498046875}, {"start": 2153.46, "end": 2153.68, "word": " For", "probability": 0.38427734375}, {"start": 2153.68, "end": 2153.94, "word": " each", "probability": 0.70751953125}, {"start": 2153.94, "end": 2154.22, "word": " button,", "probability": 0.80029296875}, {"start": 2154.42, "end": 2154.42, "word": " what", "probability": 0.344482421875}, {"start": 2154.42, "end": 2154.42, "word": " do", "probability": 0.40234375}, {"start": 2154.42, "end": 2154.5, "word": " I", "probability": 0.9130859375}, {"start": 2154.5, "end": 2154.6, "word": " have", "probability": 0.44287109375}, {"start": 2154.6, "end": 2154.6, "word": " to", "probability": 0.92431640625}, {"start": 2154.6, "end": 2154.62, "word": " do", "probability": 0.935546875}, {"start": 2154.62, "end": 2154.96, "word": " here?", "probability": 0.6103515625}, {"start": 2155.86, "end": 2156.06, "word": " A", "probability": 0.396484375}, {"start": 2156.06, "end": 2156.28, "word": " special", "probability": 0.2142333984375}, {"start": 2156.28, "end": 2156.28, "word": " arrow.", "probability": 0.14013671875}, {"start": 2157.4, "end": 2157.76, "word": " I", "probability": 0.27294921875}, {"start": 2157.76, "end": 2157.82, "word": " can", "probability": 0.5849609375}, {"start": 2157.82, "end": 2158.04, "word": " say", "probability": 0.73583984375}, {"start": 2158.04, "end": 2158.4, "word": " public,", "probability": 0.5009765625}, {"start": 2158.62, "end": 2159.08, "word": " void,", "probability": 0.93896484375}, {"start": 2159.68, "end": 2160.02, "word": " draw,", "probability": 0.9150390625}, {"start": 2160.64, "end": 2161.06, "word": " circle.", "probability": 0.94873046875}, {"start": 2161.72, "end": 2161.9, "word": " Do", "probability": 0.16845703125}, {"start": 2161.9, "end": 2162.02, "word": " you", "probability": 0.8544921875}, {"start": 2162.02, "end": 2162.16, "word": " see", "probability": 0.39404296875}, {"start": 2162.16, "end": 2162.3, "word": " these", "probability": 0.5830078125}, {"start": 2162.3, "end": 2162.56, "word": " arrows?", "probability": 0.184326171875}, {"start": 2162.86, "end": 2163.12, "word": " You", "probability": 0.407470703125}, {"start": 2163.12, "end": 2163.38, "word": " have", "probability": 0.347412109375}, {"start": 2163.38, "end": 2163.38, "word": " to", "probability": 0.9580078125}, {"start": 2163.38, "end": 2163.7, "word": " press", "probability": 0.08050537109375}, {"start": 2163.7, "end": 2164.14, "word": " them.", "probability": 0.71533203125}], "temperature": 1.0}, {"id": 86, "seek": 219385, "start": 2165.85, "end": 2193.85, "text": " When I press the button, I separate it from the rest of the words. I separate it. Okay, guys? Here, you just need to give it the circle to draw it, and you need to give it a place to draw it. Okay? And here, you need to put the circle drawing code. This just needs to be imported. As long as there is a draw circle, it also needs to do what? Draw.", "tokens": [1133, 286, 1886, 264, 2960, 11, 286, 4994, 309, 490, 264, 1472, 295, 264, 2283, 13, 286, 4994, 309, 13, 1033, 11, 1074, 30, 1692, 11, 291, 445, 643, 281, 976, 309, 264, 6329, 281, 2642, 309, 11, 293, 291, 643, 281, 976, 309, 257, 1081, 281, 2642, 309, 13, 1033, 30, 400, 510, 11, 291, 643, 281, 829, 264, 6329, 6316, 3089, 13, 639, 445, 2203, 281, 312, 25524, 13, 1018, 938, 382, 456, 307, 257, 2642, 6329, 11, 309, 611, 2203, 281, 360, 437, 30, 20386, 13], "avg_logprob": -0.6284722050031026, "compression_ratio": 1.7487437185929648, "no_speech_prob": 6.794929504394531e-06, "words": [{"start": 2165.85, "end": 2166.11, "word": " When", "probability": 0.2020263671875}, {"start": 2166.11, "end": 2166.23, "word": " I", "probability": 0.5966796875}, {"start": 2166.23, "end": 2166.35, "word": " press", "probability": 0.43798828125}, {"start": 2166.35, "end": 2166.57, "word": " the", "probability": 0.56591796875}, {"start": 2166.57, "end": 2166.75, "word": " button,", "probability": 0.67138671875}, {"start": 2167.65, "end": 2167.91, "word": " I", "probability": 0.64990234375}, {"start": 2167.91, "end": 2168.19, "word": " separate", "probability": 0.47021484375}, {"start": 2168.19, "end": 2168.33, "word": " it", "probability": 0.3056640625}, {"start": 2168.33, "end": 2168.35, "word": " from", "probability": 0.273193359375}, {"start": 2168.35, "end": 2168.37, "word": " the", "probability": 0.6845703125}, {"start": 2168.37, "end": 2168.55, "word": " rest", "probability": 0.4140625}, {"start": 2168.55, "end": 2168.55, "word": " of", "probability": 0.53173828125}, {"start": 2168.55, "end": 2168.63, "word": " the", "probability": 0.65673828125}, {"start": 2168.63, "end": 2168.85, "word": " words.", "probability": 0.08282470703125}, {"start": 2169.09, "end": 2169.09, "word": " I", "probability": 0.475830078125}, {"start": 2169.09, "end": 2169.43, "word": " separate", "probability": 0.26708984375}, {"start": 2169.43, "end": 2169.65, "word": " it.", "probability": 0.34033203125}, {"start": 2169.81, "end": 2170.11, "word": " Okay,", "probability": 0.26904296875}, {"start": 2170.13, "end": 2170.49, "word": " guys?", "probability": 0.7666015625}, {"start": 2171.35, "end": 2171.63, "word": " Here,", "probability": 0.443115234375}, {"start": 2171.67, "end": 2171.83, "word": " you", "probability": 0.216796875}, {"start": 2171.83, "end": 2171.83, "word": " just", "probability": 0.49560546875}, {"start": 2171.83, "end": 2171.97, "word": " need", "probability": 0.64599609375}, {"start": 2171.97, "end": 2171.99, "word": " to", "probability": 0.93017578125}, {"start": 2171.99, "end": 2172.49, "word": " give", "probability": 0.466796875}, {"start": 2172.49, "end": 2172.65, "word": " it", "probability": 0.5302734375}, {"start": 2172.65, "end": 2172.75, "word": " the", "probability": 0.6064453125}, {"start": 2172.75, "end": 2173.07, "word": " circle", "probability": 0.93408203125}, {"start": 2173.07, "end": 2173.29, "word": " to", "probability": 0.30224609375}, {"start": 2173.29, "end": 2173.53, "word": " draw", "probability": 0.796875}, {"start": 2173.53, "end": 2173.85, "word": " it,", "probability": 0.3876953125}, {"start": 2173.89, "end": 2173.97, "word": " and", "probability": 0.87451171875}, {"start": 2173.97, "end": 2174.05, "word": " you", "probability": 0.40869140625}, {"start": 2174.05, "end": 2174.13, "word": " need", "probability": 0.4091796875}, {"start": 2174.13, "end": 2174.15, "word": " to", "probability": 0.96875}, {"start": 2174.15, "end": 2174.29, "word": " give", "probability": 0.70166015625}, {"start": 2174.29, "end": 2174.43, "word": " it", "probability": 0.8837890625}, {"start": 2174.43, "end": 2174.53, "word": " a", "probability": 0.372314453125}, {"start": 2174.53, "end": 2174.61, "word": " place", "probability": 0.685546875}, {"start": 2174.61, "end": 2174.67, "word": " to", "probability": 0.91015625}, {"start": 2174.67, "end": 2174.87, "word": " draw", "probability": 0.81591796875}, {"start": 2174.87, "end": 2175.09, "word": " it.", "probability": 0.92236328125}, {"start": 2181.93, "end": 2182.33, "word": " Okay?", "probability": 0.5732421875}, {"start": 2182.41, "end": 2182.49, "word": " And", "probability": 0.82373046875}, {"start": 2182.49, "end": 2182.65, "word": " here,", "probability": 0.794921875}, {"start": 2182.71, "end": 2182.73, "word": " you", "probability": 0.327880859375}, {"start": 2182.73, "end": 2182.85, "word": " need", "probability": 0.64453125}, {"start": 2182.85, "end": 2184.27, "word": " to", "probability": 0.96142578125}, {"start": 2184.27, "end": 2184.37, "word": " put", "probability": 0.2467041015625}, {"start": 2184.37, "end": 2184.59, "word": " the", "probability": 0.5400390625}, {"start": 2184.59, "end": 2184.71, "word": " circle", "probability": 0.457763671875}, {"start": 2184.71, "end": 2184.95, "word": " drawing", "probability": 0.77099609375}, {"start": 2184.95, "end": 2185.27, "word": " code.", "probability": 0.90625}, {"start": 2186.89, "end": 2187.29, "word": " This", "probability": 0.452880859375}, {"start": 2187.29, "end": 2187.45, "word": " just", "probability": 0.240234375}, {"start": 2187.45, "end": 2187.71, "word": " needs", "probability": 0.7568359375}, {"start": 2187.71, "end": 2188.21, "word": " to", "probability": 0.8115234375}, {"start": 2188.21, "end": 2189.91, "word": " be", "probability": 0.47021484375}, {"start": 2189.91, "end": 2190.35, "word": " imported.", "probability": 0.72998046875}, {"start": 2190.71, "end": 2191.11, "word": " As", "probability": 0.29248046875}, {"start": 2191.11, "end": 2191.23, "word": " long", "probability": 0.3193359375}, {"start": 2191.23, "end": 2191.23, "word": " as", "probability": 0.9677734375}, {"start": 2191.23, "end": 2191.43, "word": " there", "probability": 0.78759765625}, {"start": 2191.43, "end": 2191.43, "word": " is", "probability": 0.751953125}, {"start": 2191.43, "end": 2191.45, "word": " a", "probability": 0.445068359375}, {"start": 2191.45, "end": 2191.59, "word": " draw", "probability": 0.53662109375}, {"start": 2191.59, "end": 2192.05, "word": " circle,", "probability": 0.8251953125}, {"start": 2192.29, "end": 2192.57, "word": " it", "probability": 0.3974609375}, {"start": 2192.57, "end": 2192.57, "word": " also", "probability": 0.464111328125}, {"start": 2192.57, "end": 2192.75, "word": " needs", "probability": 0.7314453125}, {"start": 2192.75, "end": 2193.09, "word": " to", "probability": 0.87646484375}, {"start": 2193.09, "end": 2193.09, "word": " do", "probability": 0.421142578125}, {"start": 2193.09, "end": 2193.57, "word": " what?", "probability": 0.3720703125}, {"start": 2193.61, "end": 2193.85, "word": " Draw.", "probability": 0.8115234375}], "temperature": 1.0}, {"id": 87, "seek": 222192, "start": 2207.54, "end": 2221.92, "text": " And there is a third circle, but I forgot what to do with it. I have clear, which should be erased as well. And I have public void undo, which should be returned.", "tokens": [400, 456, 307, 257, 2636, 6329, 11, 457, 286, 5298, 437, 281, 360, 365, 309, 13, 286, 362, 1850, 11, 597, 820, 312, 38359, 382, 731, 13, 400, 286, 362, 1908, 22009, 23779, 11, 597, 820, 312, 8752, 13], "avg_logprob": -0.6464843809604645, "compression_ratio": 1.4051724137931034, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2207.54, "end": 2207.74, "word": " And", "probability": 0.0867919921875}, {"start": 2207.74, "end": 2207.9, "word": " there", "probability": 0.5908203125}, {"start": 2207.9, "end": 2207.94, "word": " is", "probability": 0.69287109375}, {"start": 2207.94, "end": 2207.98, "word": " a", "probability": 0.269287109375}, {"start": 2207.98, "end": 2208.12, "word": " third", "probability": 0.330322265625}, {"start": 2208.12, "end": 2208.56, "word": " circle,", "probability": 0.85205078125}, {"start": 2208.68, "end": 2208.74, "word": " but", "probability": 0.587890625}, {"start": 2208.74, "end": 2208.88, "word": " I", "probability": 0.60888671875}, {"start": 2208.88, "end": 2209.16, "word": " forgot", "probability": 0.83984375}, {"start": 2209.16, "end": 2209.62, "word": " what", "probability": 0.286865234375}, {"start": 2209.62, "end": 2209.72, "word": " to", "probability": 0.317138671875}, {"start": 2209.72, "end": 2209.9, "word": " do", "probability": 0.78271484375}, {"start": 2209.9, "end": 2210.34, "word": " with", "probability": 0.7353515625}, {"start": 2210.34, "end": 2210.52, "word": " it.", "probability": 0.875}, {"start": 2210.82, "end": 2211.22, "word": " I", "probability": 0.8115234375}, {"start": 2211.22, "end": 2211.46, "word": " have", "probability": 0.88330078125}, {"start": 2211.46, "end": 2212.44, "word": " clear,", "probability": 0.5029296875}, {"start": 2213.5, "end": 2214.8, "word": " which", "probability": 0.350341796875}, {"start": 2214.8, "end": 2215.04, "word": " should", "probability": 0.097900390625}, {"start": 2215.04, "end": 2215.16, "word": " be", "probability": 0.51806640625}, {"start": 2215.16, "end": 2215.34, "word": " erased", "probability": 0.6025390625}, {"start": 2215.34, "end": 2215.6, "word": " as", "probability": 0.1588134765625}, {"start": 2215.6, "end": 2215.7, "word": " well.", "probability": 0.93505859375}, {"start": 2217.18, "end": 2217.58, "word": " And", "probability": 0.669921875}, {"start": 2217.58, "end": 2217.84, "word": " I", "probability": 0.546875}, {"start": 2217.84, "end": 2218.04, "word": " have", "probability": 0.90869140625}, {"start": 2218.04, "end": 2219.14, "word": " public", "probability": 0.6171875}, {"start": 2219.14, "end": 2219.7, "word": " void", "probability": 0.88134765625}, {"start": 2219.7, "end": 2220.98, "word": " undo,", "probability": 0.91015625}, {"start": 2221.16, "end": 2221.48, "word": " which", "probability": 0.84228515625}, {"start": 2221.48, "end": 2221.7, "word": " should", "probability": 0.441650390625}, {"start": 2221.7, "end": 2221.72, "word": " be", "probability": 0.87841796875}, {"start": 2221.72, "end": 2221.92, "word": " returned.", "probability": 0.4833984375}], "temperature": 1.0}, {"id": 88, "seek": 225632, "start": 2228.78, "end": 2256.32, "text": "These things are still empty, we still need to fill them up. Okay? But the idea is that we don't want to work on this work inside the UI. Otherwise, what will happen to the work? A mess. Okay? We want to make the UI ... Did you find it? I divided the program into two parts. This is the UI, which is the class called DrawingApp. And this is the model. Or this is the UV, too.", "tokens": [28858, 721, 366, 920, 6707, 11, 321, 920, 643, 281, 2836, 552, 493, 13, 1033, 30, 583, 264, 1558, 307, 300, 321, 500, 380, 528, 281, 589, 322, 341, 589, 1854, 264, 15682, 13, 10328, 11, 437, 486, 1051, 281, 264, 589, 30, 316, 2082, 13, 1033, 30, 492, 528, 281, 652, 264, 15682, 1097, 2589, 291, 915, 309, 30, 286, 6666, 264, 1461, 666, 732, 3166, 13, 639, 307, 264, 15682, 11, 597, 307, 264, 1508, 1219, 20386, 278, 9132, 13, 400, 341, 307, 264, 2316, 13, 1610, 341, 307, 264, 17887, 11, 886, 13], "avg_logprob": -0.46005154639175255, "compression_ratio": 1.6375545851528384, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 2228.7799999999997, "end": 2229.18, "word": "These", "probability": 0.1146240234375}, {"start": 2229.18, "end": 2229.48, "word": " things", "probability": 0.31103515625}, {"start": 2229.48, "end": 2229.54, "word": " are", "probability": 0.8349609375}, {"start": 2229.54, "end": 2229.54, "word": " still", "probability": 0.69970703125}, {"start": 2229.54, "end": 2229.78, "word": " empty,", "probability": 0.517578125}, {"start": 2229.86, "end": 2229.96, "word": " we", "probability": 0.6630859375}, {"start": 2229.96, "end": 2230.14, "word": " still", "probability": 0.389892578125}, {"start": 2230.14, "end": 2230.2, "word": " need", "probability": 0.361328125}, {"start": 2230.2, "end": 2230.32, "word": " to", "probability": 0.95361328125}, {"start": 2230.32, "end": 2230.5, "word": " fill", "probability": 0.794921875}, {"start": 2230.5, "end": 2230.72, "word": " them", "probability": 0.6298828125}, {"start": 2230.72, "end": 2231.28, "word": " up.", "probability": 0.300048828125}, {"start": 2231.42, "end": 2231.54, "word": " Okay?", "probability": 0.273681640625}, {"start": 2231.62, "end": 2231.8, "word": " But", "probability": 0.74072265625}, {"start": 2231.8, "end": 2231.9, "word": " the", "probability": 0.84619140625}, {"start": 2231.9, "end": 2232.16, "word": " idea", "probability": 0.70947265625}, {"start": 2232.16, "end": 2232.76, "word": " is", "probability": 0.89013671875}, {"start": 2232.76, "end": 2232.84, "word": " that", "probability": 0.68994140625}, {"start": 2232.84, "end": 2232.96, "word": " we", "probability": 0.90380859375}, {"start": 2232.96, "end": 2233.0, "word": " don't", "probability": 0.787109375}, {"start": 2233.0, "end": 2233.2, "word": " want", "probability": 0.51806640625}, {"start": 2233.2, "end": 2233.24, "word": " to", "probability": 0.90869140625}, {"start": 2233.24, "end": 2233.48, "word": " work", "probability": 0.5283203125}, {"start": 2233.48, "end": 2233.56, "word": " on", "probability": 0.31640625}, {"start": 2233.56, "end": 2234.0, "word": " this", "probability": 0.83203125}, {"start": 2234.0, "end": 2234.0, "word": " work", "probability": 0.289794921875}, {"start": 2234.0, "end": 2234.18, "word": " inside", "probability": 0.483154296875}, {"start": 2234.18, "end": 2234.36, "word": " the", "probability": 0.81298828125}, {"start": 2234.36, "end": 2234.66, "word": " UI.", "probability": 0.95654296875}, {"start": 2235.62, "end": 2236.02, "word": " Otherwise,", "probability": 0.50439453125}, {"start": 2236.18, "end": 2236.18, "word": " what", "probability": 0.52685546875}, {"start": 2236.18, "end": 2236.18, "word": " will", "probability": 0.491943359375}, {"start": 2236.18, "end": 2236.3, "word": " happen", "probability": 0.72607421875}, {"start": 2236.3, "end": 2236.4, "word": " to", "probability": 0.69482421875}, {"start": 2236.4, "end": 2236.44, "word": " the", "probability": 0.61865234375}, {"start": 2236.44, "end": 2236.62, "word": " work?", "probability": 0.833984375}, {"start": 2237.26, "end": 2237.44, "word": " A", "probability": 0.08697509765625}, {"start": 2237.44, "end": 2237.64, "word": " mess.", "probability": 0.151123046875}, {"start": 2238.14, "end": 2238.38, "word": " Okay?", "probability": 0.7724609375}, {"start": 2238.54, "end": 2238.68, "word": " We", "probability": 0.93212890625}, {"start": 2238.68, "end": 2238.84, "word": " want", "probability": 0.76025390625}, {"start": 2238.84, "end": 2238.94, "word": " to", "probability": 0.9677734375}, {"start": 2238.94, "end": 2239.14, "word": " make", "probability": 0.6533203125}, {"start": 2239.14, "end": 2239.36, "word": " the", "probability": 0.900390625}, {"start": 2239.36, "end": 2239.84, "word": " UI", "probability": 0.982421875}, {"start": 2239.84, "end": 2240.44, "word": " ...", "probability": 0.1641845703125}, {"start": 2240.44, "end": 2240.84, "word": " Did", "probability": 0.2880859375}, {"start": 2240.84, "end": 2240.84, "word": " you", "probability": 0.966796875}, {"start": 2240.84, "end": 2241.02, "word": " find", "probability": 0.42431640625}, {"start": 2241.02, "end": 2241.24, "word": " it?", "probability": 0.66748046875}, {"start": 2241.44, "end": 2241.84, "word": " I", "probability": 0.5126953125}, {"start": 2241.84, "end": 2242.22, "word": " divided", "probability": 0.77783203125}, {"start": 2242.22, "end": 2242.42, "word": " the", "probability": 0.8359375}, {"start": 2242.42, "end": 2242.64, "word": " program", "probability": 0.243896484375}, {"start": 2242.64, "end": 2242.96, "word": " into", "probability": 0.8125}, {"start": 2242.96, "end": 2243.0, "word": " two", "probability": 0.90087890625}, {"start": 2243.0, "end": 2243.24, "word": " parts.", "probability": 0.8798828125}, {"start": 2245.44, "end": 2245.84, "word": " This", "probability": 0.89306640625}, {"start": 2245.84, "end": 2245.86, "word": " is", "probability": 0.57421875}, {"start": 2245.86, "end": 2245.96, "word": " the", "probability": 0.8876953125}, {"start": 2245.96, "end": 2246.38, "word": " UI,", "probability": 0.93701171875}, {"start": 2246.86, "end": 2246.9, "word": " which", "probability": 0.88427734375}, {"start": 2246.9, "end": 2247.02, "word": " is", "probability": 0.935546875}, {"start": 2247.02, "end": 2247.12, "word": " the", "probability": 0.77783203125}, {"start": 2247.12, "end": 2247.54, "word": " class", "probability": 0.90087890625}, {"start": 2247.54, "end": 2247.94, "word": " called", "probability": 0.67578125}, {"start": 2247.94, "end": 2250.02, "word": " DrawingApp.", "probability": 0.6702473958333334}, {"start": 2252.52, "end": 2252.92, "word": " And", "probability": 0.81591796875}, {"start": 2252.92, "end": 2253.16, "word": " this", "probability": 0.9326171875}, {"start": 2253.16, "end": 2253.16, "word": " is", "probability": 0.78466796875}, {"start": 2253.16, "end": 2253.26, "word": " the", "probability": 0.693359375}, {"start": 2253.26, "end": 2253.58, "word": " model.", "probability": 0.74462890625}, {"start": 2254.96, "end": 2255.36, "word": " Or", "probability": 0.89892578125}, {"start": 2255.36, "end": 2255.54, "word": " this", "probability": 0.849609375}, {"start": 2255.54, "end": 2255.56, "word": " is", "probability": 0.927734375}, {"start": 2255.56, "end": 2255.66, "word": " the", "probability": 0.658203125}, {"start": 2255.66, "end": 2255.92, "word": " UV,", "probability": 0.6357421875}, {"start": 2256.08, "end": 2256.32, "word": " too.", "probability": 0.7880859375}], "temperature": 1.0}, {"id": 89, "seek": 227517, "start": 2257.79, "end": 2275.17, "text": "The model name is the drawing manager. I will get this UI from the action and the action sends it to the drawing manager. So every button that is pressed here will go to the method in the drawing manager.", "tokens": [2278, 2316, 1315, 307, 264, 6316, 6598, 13, 286, 486, 483, 341, 15682, 490, 264, 3069, 293, 264, 3069, 14790, 309, 281, 264, 6316, 6598, 13, 407, 633, 2960, 300, 307, 17355, 510, 486, 352, 281, 264, 3170, 294, 264, 6316, 6598, 13], "avg_logprob": -0.6949573755264282, "compression_ratio": 1.6721311475409837, "no_speech_prob": 1.0669231414794922e-05, "words": [{"start": 2257.79, "end": 2258.03, "word": "The", "probability": 0.3720703125}, {"start": 2258.03, "end": 2258.25, "word": " model", "probability": 0.5966796875}, {"start": 2258.25, "end": 2258.43, "word": " name", "probability": 0.30859375}, {"start": 2258.43, "end": 2258.77, "word": " is", "probability": 0.6982421875}, {"start": 2258.77, "end": 2259.77, "word": " the", "probability": 0.16748046875}, {"start": 2259.77, "end": 2260.29, "word": " drawing", "probability": 0.69580078125}, {"start": 2260.29, "end": 2262.03, "word": " manager.", "probability": 0.88623046875}, {"start": 2263.91, "end": 2264.05, "word": " I", "probability": 0.2442626953125}, {"start": 2264.05, "end": 2264.05, "word": " will", "probability": 0.54345703125}, {"start": 2264.05, "end": 2264.27, "word": " get", "probability": 0.473388671875}, {"start": 2264.27, "end": 2264.57, "word": " this", "probability": 0.88427734375}, {"start": 2264.57, "end": 2264.97, "word": " UI", "probability": 0.78369140625}, {"start": 2264.97, "end": 2265.45, "word": " from", "probability": 0.1968994140625}, {"start": 2265.45, "end": 2265.73, "word": " the", "probability": 0.50244140625}, {"start": 2265.73, "end": 2266.15, "word": " action", "probability": 0.845703125}, {"start": 2266.15, "end": 2266.31, "word": " and", "probability": 0.309326171875}, {"start": 2266.31, "end": 2266.41, "word": " the", "probability": 0.53466796875}, {"start": 2266.41, "end": 2266.67, "word": " action", "probability": 0.9306640625}, {"start": 2266.67, "end": 2266.95, "word": " sends", "probability": 0.2919921875}, {"start": 2266.95, "end": 2267.11, "word": " it", "probability": 0.64794921875}, {"start": 2267.11, "end": 2267.31, "word": " to", "probability": 0.6845703125}, {"start": 2267.31, "end": 2267.53, "word": " the", "probability": 0.54638671875}, {"start": 2267.53, "end": 2269.05, "word": " drawing", "probability": 0.81298828125}, {"start": 2269.05, "end": 2269.39, "word": " manager.", "probability": 0.9453125}, {"start": 2269.39, "end": 2269.69, "word": " So", "probability": 0.367431640625}, {"start": 2269.69, "end": 2270.01, "word": " every", "probability": 0.3056640625}, {"start": 2270.01, "end": 2270.25, "word": " button", "probability": 0.60107421875}, {"start": 2270.25, "end": 2270.37, "word": " that", "probability": 0.1600341796875}, {"start": 2270.37, "end": 2270.43, "word": " is", "probability": 0.65234375}, {"start": 2270.43, "end": 2270.71, "word": " pressed", "probability": 0.59814453125}, {"start": 2270.71, "end": 2271.11, "word": " here", "probability": 0.65966796875}, {"start": 2271.11, "end": 2272.03, "word": " will", "probability": 0.46240234375}, {"start": 2272.03, "end": 2272.15, "word": " go", "probability": 0.453125}, {"start": 2272.15, "end": 2272.27, "word": " to", "probability": 0.59814453125}, {"start": 2272.27, "end": 2272.29, "word": " the", "probability": 0.51806640625}, {"start": 2272.29, "end": 2272.49, "word": " method", "probability": 0.2900390625}, {"start": 2272.49, "end": 2273.07, "word": " in", "probability": 0.097900390625}, {"start": 2273.07, "end": 2274.59, "word": " the", "probability": 0.76416015625}, {"start": 2274.59, "end": 2274.81, "word": " drawing", "probability": 0.88916015625}, {"start": 2274.81, "end": 2275.17, "word": " manager.", "probability": 0.95361328125}], "temperature": 1.0}, {"id": 90, "seek": 230342, "start": 2280.19, "end": 2303.43, "text": " In order to do this job, you need to go back to the UI. The beginning is always where? In the UI, not the principle in the UI. And the UI will direct the command to whom? To the drawing manager, and the drawing manager will execute it. Okay? So, I need from inside the drawing app, an object from where? Drawing manager M equals new drawing manager. Right or wrong guys?", "tokens": [682, 1668, 281, 360, 341, 1691, 11, 291, 643, 281, 352, 646, 281, 264, 15682, 13, 440, 2863, 307, 1009, 689, 30, 682, 264, 15682, 11, 406, 264, 8665, 294, 264, 15682, 13, 400, 264, 15682, 486, 2047, 264, 5622, 281, 7101, 30, 1407, 264, 6316, 6598, 11, 293, 264, 6316, 6598, 486, 14483, 309, 13, 1033, 30, 407, 11, 286, 643, 490, 1854, 264, 6316, 724, 11, 364, 2657, 490, 689, 30, 20386, 278, 6598, 376, 6915, 777, 6316, 6598, 13, 1779, 420, 2085, 1074, 30], "avg_logprob": -0.5649857676841996, "compression_ratio": 1.701834862385321, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 2280.19, "end": 2280.61, "word": " In", "probability": 0.07293701171875}, {"start": 2280.61, "end": 2280.67, "word": " order", "probability": 0.89453125}, {"start": 2280.67, "end": 2280.79, "word": " to", "probability": 0.8623046875}, {"start": 2280.79, "end": 2280.95, "word": " do", "probability": 0.263916015625}, {"start": 2280.95, "end": 2281.11, "word": " this", "probability": 0.74072265625}, {"start": 2281.11, "end": 2281.35, "word": " job,", "probability": 0.352294921875}, {"start": 2281.79, "end": 2282.31, "word": " you", "probability": 0.2476806640625}, {"start": 2282.31, "end": 2282.45, "word": " need", "probability": 0.396728515625}, {"start": 2282.45, "end": 2282.59, "word": " to", "probability": 0.95166015625}, {"start": 2282.59, "end": 2282.65, "word": " go", "probability": 0.51904296875}, {"start": 2282.65, "end": 2282.69, "word": " back", "probability": 0.5283203125}, {"start": 2282.69, "end": 2283.09, "word": " to", "probability": 0.9404296875}, {"start": 2283.09, "end": 2283.23, "word": " the", "probability": 0.51416015625}, {"start": 2283.23, "end": 2283.47, "word": " UI.", "probability": 0.89404296875}, {"start": 2283.57, "end": 2283.73, "word": " The", "probability": 0.235107421875}, {"start": 2283.73, "end": 2284.01, "word": " beginning", "probability": 0.3271484375}, {"start": 2284.01, "end": 2284.17, "word": " is", "probability": 0.50830078125}, {"start": 2284.17, "end": 2284.35, "word": " always", "probability": 0.76220703125}, {"start": 2284.35, "end": 2284.63, "word": " where?", "probability": 0.440185546875}, {"start": 2285.35, "end": 2285.71, "word": " In", "probability": 0.71484375}, {"start": 2285.71, "end": 2285.77, "word": " the", "probability": 0.83447265625}, {"start": 2285.77, "end": 2285.99, "word": " UI,", "probability": 0.9677734375}, {"start": 2286.03, "end": 2286.13, "word": " not", "probability": 0.54345703125}, {"start": 2286.13, "end": 2286.29, "word": " the", "probability": 0.1866455078125}, {"start": 2286.29, "end": 2286.43, "word": " principle", "probability": 0.382568359375}, {"start": 2286.43, "end": 2286.61, "word": " in", "probability": 0.396728515625}, {"start": 2286.61, "end": 2286.67, "word": " the", "probability": 0.85205078125}, {"start": 2286.67, "end": 2286.97, "word": " UI.", "probability": 0.9716796875}, {"start": 2287.07, "end": 2287.13, "word": " And", "probability": 0.6484375}, {"start": 2287.13, "end": 2287.21, "word": " the", "probability": 0.32861328125}, {"start": 2287.21, "end": 2287.47, "word": " UI", "probability": 0.771484375}, {"start": 2287.47, "end": 2287.65, "word": " will", "probability": 0.50439453125}, {"start": 2287.65, "end": 2287.97, "word": " direct", "probability": 0.1346435546875}, {"start": 2287.97, "end": 2288.35, "word": " the", "probability": 0.5244140625}, {"start": 2288.35, "end": 2288.57, "word": " command", "probability": 0.431884765625}, {"start": 2288.57, "end": 2288.57, "word": " to", "probability": 0.89892578125}, {"start": 2288.57, "end": 2288.57, "word": " whom?", "probability": 0.708984375}, {"start": 2289.19, "end": 2289.61, "word": " To", "probability": 0.6796875}, {"start": 2289.61, "end": 2289.73, "word": " the", "probability": 0.79443359375}, {"start": 2289.73, "end": 2289.85, "word": " drawing", "probability": 0.646484375}, {"start": 2289.85, "end": 2290.13, "word": " manager,", "probability": 0.9365234375}, {"start": 2290.19, "end": 2290.29, "word": " and", "probability": 0.61669921875}, {"start": 2290.29, "end": 2290.33, "word": " the", "probability": 0.70166015625}, {"start": 2290.33, "end": 2290.49, "word": " drawing", "probability": 0.84765625}, {"start": 2290.49, "end": 2290.83, "word": " manager", "probability": 0.9599609375}, {"start": 2290.83, "end": 2290.99, "word": " will", "probability": 0.274658203125}, {"start": 2290.99, "end": 2291.27, "word": " execute", "probability": 0.2705078125}, {"start": 2291.27, "end": 2291.75, "word": " it.", "probability": 0.68896484375}, {"start": 2291.81, "end": 2292.07, "word": " Okay?", "probability": 0.2412109375}, {"start": 2292.51, "end": 2292.75, "word": " So,", "probability": 0.482666015625}, {"start": 2292.89, "end": 2292.97, "word": " I", "probability": 0.69677734375}, {"start": 2292.97, "end": 2293.45, "word": " need", "probability": 0.9130859375}, {"start": 2293.45, "end": 2293.63, "word": " from", "probability": 0.3837890625}, {"start": 2293.63, "end": 2293.83, "word": " inside", "probability": 0.282470703125}, {"start": 2293.83, "end": 2294.01, "word": " the", "probability": 0.837890625}, {"start": 2294.01, "end": 2294.29, "word": " drawing", "probability": 0.75146484375}, {"start": 2294.29, "end": 2294.71, "word": " app,", "probability": 0.88623046875}, {"start": 2295.01, "end": 2295.37, "word": " an", "probability": 0.544921875}, {"start": 2295.37, "end": 2295.63, "word": " object", "probability": 0.96923828125}, {"start": 2295.63, "end": 2295.83, "word": " from", "probability": 0.69580078125}, {"start": 2295.83, "end": 2296.07, "word": " where?", "probability": 0.480712890625}, {"start": 2298.07, "end": 2298.49, "word": " Drawing", "probability": 0.729248046875}, {"start": 2298.49, "end": 2298.83, "word": " manager", "probability": 0.7568359375}, {"start": 2298.83, "end": 2299.17, "word": " M", "probability": 0.29638671875}, {"start": 2299.17, "end": 2299.55, "word": " equals", "probability": 0.2646484375}, {"start": 2299.55, "end": 2299.91, "word": " new", "probability": 0.58935546875}, {"start": 2299.91, "end": 2300.37, "word": " drawing", "probability": 0.7568359375}, {"start": 2300.37, "end": 2302.65, "word": " manager.", "probability": 0.90966796875}, {"start": 2302.77, "end": 2302.95, "word": " Right", "probability": 0.3564453125}, {"start": 2302.95, "end": 2303.13, "word": " or", "probability": 0.89453125}, {"start": 2303.13, "end": 2303.19, "word": " wrong", "probability": 0.701171875}, {"start": 2303.19, "end": 2303.43, "word": " guys?", "probability": 0.474365234375}], "temperature": 1.0}, {"id": 91, "seek": 232873, "start": 2308.8, "end": 2328.74, "text": "Why don't they see it? Drawing, Draw Manager, we named it. Okay? What is this object here? Because when I click on circle, I create the circle, and I don't want the drawing to be done here. I want to go to the manager and tell him to draw a circle.", "tokens": [8429, 500, 380, 436, 536, 309, 30, 20386, 278, 11, 20386, 13821, 11, 321, 4926, 309, 13, 1033, 30, 708, 307, 341, 2657, 510, 30, 1436, 562, 286, 2052, 322, 6329, 11, 286, 1884, 264, 6329, 11, 293, 286, 500, 380, 528, 264, 6316, 281, 312, 1096, 510, 13, 286, 528, 281, 352, 281, 264, 6598, 293, 980, 796, 281, 2642, 257, 6329, 13], "avg_logprob": -0.5259615384615385, "compression_ratio": 1.521472392638037, "no_speech_prob": 4.5299530029296875e-06, "words": [{"start": 2308.8, "end": 2309.1, "word": "Why", "probability": 0.397216796875}, {"start": 2309.1, "end": 2309.22, "word": " don't", "probability": 0.58251953125}, {"start": 2309.22, "end": 2309.3, "word": " they", "probability": 0.476318359375}, {"start": 2309.3, "end": 2309.56, "word": " see", "probability": 0.88232421875}, {"start": 2309.56, "end": 2309.76, "word": " it?", "probability": 0.53759765625}, {"start": 2310.0, "end": 2310.44, "word": " Drawing,", "probability": 0.658203125}, {"start": 2310.7, "end": 2310.94, "word": " Draw", "probability": 0.419921875}, {"start": 2310.94, "end": 2311.3, "word": " Manager,", "probability": 0.65087890625}, {"start": 2311.42, "end": 2311.48, "word": " we", "probability": 0.5341796875}, {"start": 2311.48, "end": 2311.64, "word": " named", "probability": 0.468505859375}, {"start": 2311.64, "end": 2311.78, "word": " it.", "probability": 0.89404296875}, {"start": 2316.3, "end": 2316.74, "word": " Okay?", "probability": 0.2332763671875}, {"start": 2317.82, "end": 2318.24, "word": " What", "probability": 0.315185546875}, {"start": 2318.24, "end": 2318.3, "word": " is", "probability": 0.5810546875}, {"start": 2318.3, "end": 2318.5, "word": " this", "probability": 0.67138671875}, {"start": 2318.5, "end": 2319.08, "word": " object", "probability": 0.71435546875}, {"start": 2319.08, "end": 2319.46, "word": " here?", "probability": 0.2115478515625}, {"start": 2319.46, "end": 2319.84, "word": " Because", "probability": 0.458984375}, {"start": 2319.84, "end": 2320.04, "word": " when", "probability": 0.888671875}, {"start": 2320.04, "end": 2320.48, "word": " I", "probability": 0.96533203125}, {"start": 2320.48, "end": 2320.64, "word": " click", "probability": 0.25439453125}, {"start": 2320.64, "end": 2320.9, "word": " on", "probability": 0.88671875}, {"start": 2320.9, "end": 2321.4, "word": " circle,", "probability": 0.3828125}, {"start": 2321.5, "end": 2321.64, "word": " I", "probability": 0.58349609375}, {"start": 2321.64, "end": 2321.86, "word": " create", "probability": 0.681640625}, {"start": 2321.86, "end": 2322.08, "word": " the", "probability": 0.485107421875}, {"start": 2322.08, "end": 2322.48, "word": " circle,", "probability": 0.96484375}, {"start": 2323.7, "end": 2323.88, "word": " and", "probability": 0.453125}, {"start": 2323.88, "end": 2323.98, "word": " I", "probability": 0.76318359375}, {"start": 2323.98, "end": 2324.24, "word": " don't", "probability": 0.91552734375}, {"start": 2324.24, "end": 2324.24, "word": " want", "probability": 0.6962890625}, {"start": 2324.24, "end": 2324.76, "word": " the", "probability": 0.5263671875}, {"start": 2324.76, "end": 2325.02, "word": " drawing", "probability": 0.775390625}, {"start": 2325.02, "end": 2325.16, "word": " to", "probability": 0.81689453125}, {"start": 2325.16, "end": 2325.28, "word": " be", "probability": 0.32421875}, {"start": 2325.28, "end": 2325.34, "word": " done", "probability": 0.296875}, {"start": 2325.34, "end": 2325.52, "word": " here.", "probability": 0.7958984375}, {"start": 2325.74, "end": 2325.82, "word": " I", "probability": 0.78271484375}, {"start": 2325.82, "end": 2325.96, "word": " want", "probability": 0.440673828125}, {"start": 2325.96, "end": 2325.98, "word": " to", "probability": 0.958984375}, {"start": 2325.98, "end": 2326.06, "word": " go", "probability": 0.9541015625}, {"start": 2326.06, "end": 2326.16, "word": " to", "probability": 0.93701171875}, {"start": 2326.16, "end": 2326.28, "word": " the", "probability": 0.69189453125}, {"start": 2326.28, "end": 2326.54, "word": " manager", "probability": 0.818359375}, {"start": 2326.54, "end": 2326.76, "word": " and", "probability": 0.8955078125}, {"start": 2326.76, "end": 2326.94, "word": " tell", "probability": 0.64501953125}, {"start": 2326.94, "end": 2327.32, "word": " him", "probability": 0.91748046875}, {"start": 2327.32, "end": 2328.16, "word": " to", "probability": 0.480712890625}, {"start": 2328.16, "end": 2328.32, "word": " draw", "probability": 0.84326171875}, {"start": 2328.32, "end": 2328.48, "word": " a", "probability": 0.5126953125}, {"start": 2328.48, "end": 2328.74, "word": " circle.", "probability": 0.95947265625}], "temperature": 1.0}, {"id": 92, "seek": 236296, "start": 2336.7, "end": 2362.96, "text": " It's as if the UI is directing to whom? To the drone manager. It's the same thing with rectangles. I create a rectangle and let the drone manager draw it. Someone will say, where is the interface for this? It's the same thing when I draw a circle.", "tokens": [467, 311, 382, 498, 264, 15682, 307, 26979, 281, 7101, 30, 1407, 264, 13852, 6598, 13, 467, 311, 264, 912, 551, 365, 24077, 904, 13, 286, 1884, 257, 21930, 293, 718, 264, 13852, 6598, 2642, 309, 13, 8734, 486, 584, 11, 689, 307, 264, 9226, 337, 341, 30, 467, 311, 264, 912, 551, 562, 286, 2642, 257, 6329, 13], "avg_logprob": -0.5401041626930236, "compression_ratio": 1.6423841059602649, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 2336.7, "end": 2337.24, "word": " It's", "probability": 0.308349609375}, {"start": 2337.24, "end": 2337.42, "word": " as", "probability": 0.271484375}, {"start": 2337.42, "end": 2337.78, "word": " if", "probability": 0.93212890625}, {"start": 2337.78, "end": 2338.42, "word": " the", "probability": 0.7568359375}, {"start": 2338.42, "end": 2338.84, "word": " UI", "probability": 0.70849609375}, {"start": 2338.84, "end": 2339.04, "word": " is", "probability": 0.311767578125}, {"start": 2339.04, "end": 2339.34, "word": " directing", "probability": 0.351806640625}, {"start": 2339.34, "end": 2339.5, "word": " to", "probability": 0.397216796875}, {"start": 2339.5, "end": 2339.66, "word": " whom?", "probability": 0.179443359375}, {"start": 2340.34, "end": 2340.88, "word": " To", "probability": 0.62255859375}, {"start": 2340.88, "end": 2341.0, "word": " the", "probability": 0.88232421875}, {"start": 2341.0, "end": 2341.14, "word": " drone", "probability": 0.39013671875}, {"start": 2341.14, "end": 2341.54, "word": " manager.", "probability": 0.90283203125}, {"start": 2343.96, "end": 2344.5, "word": " It's", "probability": 0.6361083984375}, {"start": 2344.5, "end": 2344.68, "word": " the", "probability": 0.82421875}, {"start": 2344.68, "end": 2344.68, "word": " same", "probability": 0.904296875}, {"start": 2344.68, "end": 2344.98, "word": " thing", "probability": 0.5654296875}, {"start": 2344.98, "end": 2345.02, "word": " with", "probability": 0.5302734375}, {"start": 2345.02, "end": 2345.64, "word": " rectangles.", "probability": 0.6829833984375}, {"start": 2347.34, "end": 2347.88, "word": " I", "probability": 0.8251953125}, {"start": 2347.88, "end": 2348.06, "word": " create", "probability": 0.58935546875}, {"start": 2348.06, "end": 2348.3, "word": " a", "probability": 0.69775390625}, {"start": 2348.3, "end": 2348.82, "word": " rectangle", "probability": 0.96728515625}, {"start": 2348.82, "end": 2349.66, "word": " and", "probability": 0.58984375}, {"start": 2349.66, "end": 2350.1, "word": " let", "probability": 0.392822265625}, {"start": 2350.1, "end": 2350.86, "word": " the", "probability": 0.88427734375}, {"start": 2350.86, "end": 2351.06, "word": " drone", "probability": 0.9375}, {"start": 2351.06, "end": 2351.52, "word": " manager", "probability": 0.95361328125}, {"start": 2351.52, "end": 2351.74, "word": " draw", "probability": 0.78466796875}, {"start": 2351.74, "end": 2353.46, "word": " it.", "probability": 0.439208984375}, {"start": 2354.5, "end": 2355.04, "word": " Someone", "probability": 0.29150390625}, {"start": 2355.04, "end": 2355.18, "word": " will", "probability": 0.29443359375}, {"start": 2355.18, "end": 2355.28, "word": " say,", "probability": 0.5498046875}, {"start": 2355.42, "end": 2355.62, "word": " where", "probability": 0.0916748046875}, {"start": 2355.62, "end": 2355.7, "word": " is", "probability": 0.62158203125}, {"start": 2355.7, "end": 2355.76, "word": " the", "probability": 0.8935546875}, {"start": 2355.76, "end": 2356.14, "word": " interface", "probability": 0.8837890625}, {"start": 2356.14, "end": 2356.26, "word": " for", "probability": 0.360107421875}, {"start": 2356.26, "end": 2356.32, "word": " this?", "probability": 0.57568359375}, {"start": 2359.6, "end": 2360.14, "word": " It's", "probability": 0.60595703125}, {"start": 2360.14, "end": 2360.36, "word": " the", "probability": 0.78515625}, {"start": 2360.36, "end": 2360.52, "word": " same", "probability": 0.90576171875}, {"start": 2360.52, "end": 2361.0, "word": " thing", "probability": 0.8369140625}, {"start": 2361.0, "end": 2362.28, "word": " when", "probability": 0.4755859375}, {"start": 2362.28, "end": 2362.44, "word": " I", "probability": 0.88623046875}, {"start": 2362.44, "end": 2362.66, "word": " draw", "probability": 0.8369140625}, {"start": 2362.66, "end": 2362.86, "word": " a", "probability": 0.91943359375}, {"start": 2362.86, "end": 2362.96, "word": " circle.", "probability": 0.57080078125}], "temperature": 1.0}, {"id": 93, "seek": 239217, "start": 2364.35, "end": 2392.17, "text": " Of course, there is no method called solid circle yet. We will do it later. Because clear, when I erase, I should go to the ... not this one that erases, not the GUI. How to erase should be done there. You decide there. Drawingpanel.getgraphics Undo. How do we undo? Undo is this part. Send it to the manager and the manager decides.", "tokens": [2720, 1164, 11, 456, 307, 572, 3170, 1219, 5100, 6329, 1939, 13, 492, 486, 360, 309, 1780, 13, 1436, 1850, 11, 562, 286, 23525, 11, 286, 820, 352, 281, 264, 1097, 406, 341, 472, 300, 1189, 1957, 11, 406, 264, 17917, 40, 13, 1012, 281, 23525, 820, 312, 1096, 456, 13, 509, 4536, 456, 13, 20386, 278, 6040, 338, 13, 847, 34091, 1167, 2719, 78, 13, 1012, 360, 321, 23779, 30, 2719, 78, 307, 341, 644, 13, 17908, 309, 281, 264, 6598, 293, 264, 6598, 14898, 13], "avg_logprob": -0.5422585024075075, "compression_ratio": 1.5904761904761904, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 2364.35, "end": 2364.65, "word": " Of", "probability": 0.1820068359375}, {"start": 2364.65, "end": 2364.65, "word": " course,", "probability": 0.90625}, {"start": 2364.77, "end": 2364.87, "word": " there", "probability": 0.7705078125}, {"start": 2364.87, "end": 2364.95, "word": " is", "probability": 0.52880859375}, {"start": 2364.95, "end": 2365.07, "word": " no", "probability": 0.6005859375}, {"start": 2365.07, "end": 2365.33, "word": " method", "probability": 0.81640625}, {"start": 2365.33, "end": 2365.47, "word": " called", "probability": 0.325439453125}, {"start": 2365.47, "end": 2365.59, "word": " solid", "probability": 0.333740234375}, {"start": 2365.59, "end": 2365.93, "word": " circle", "probability": 0.7783203125}, {"start": 2365.93, "end": 2366.15, "word": " yet.", "probability": 0.51953125}, {"start": 2366.35, "end": 2366.53, "word": " We", "probability": 0.421875}, {"start": 2366.53, "end": 2366.67, "word": " will", "probability": 0.66455078125}, {"start": 2366.67, "end": 2366.85, "word": " do", "probability": 0.38818359375}, {"start": 2366.85, "end": 2366.93, "word": " it", "probability": 0.7265625}, {"start": 2366.93, "end": 2367.27, "word": " later.", "probability": 0.8974609375}, {"start": 2367.71, "end": 2367.93, "word": " Because", "probability": 0.654296875}, {"start": 2367.93, "end": 2368.33, "word": " clear,", "probability": 0.204345703125}, {"start": 2369.25, "end": 2369.67, "word": " when", "probability": 0.7861328125}, {"start": 2369.67, "end": 2369.79, "word": " I", "probability": 0.8681640625}, {"start": 2369.79, "end": 2370.07, "word": " erase,", "probability": 0.18310546875}, {"start": 2370.25, "end": 2370.37, "word": " I", "probability": 0.68505859375}, {"start": 2370.37, "end": 2370.63, "word": " should", "probability": 0.5908203125}, {"start": 2370.63, "end": 2370.97, "word": " go", "probability": 0.7783203125}, {"start": 2370.97, "end": 2371.15, "word": " to", "probability": 0.86962890625}, {"start": 2371.15, "end": 2371.41, "word": " the", "probability": 0.38330078125}, {"start": 2371.41, "end": 2371.43, "word": " ...", "probability": 0.1671142578125}, {"start": 2371.43, "end": 2371.59, "word": " not", "probability": 0.43115234375}, {"start": 2371.59, "end": 2371.81, "word": " this", "probability": 0.52490234375}, {"start": 2371.81, "end": 2371.89, "word": " one", "probability": 0.25146484375}, {"start": 2371.89, "end": 2372.07, "word": " that", "probability": 0.431640625}, {"start": 2372.07, "end": 2372.15, "word": " erases,", "probability": 0.67578125}, {"start": 2372.25, "end": 2372.37, "word": " not", "probability": 0.88818359375}, {"start": 2372.37, "end": 2372.53, "word": " the", "probability": 0.212158203125}, {"start": 2372.53, "end": 2372.93, "word": " GUI.", "probability": 0.9716796875}, {"start": 2373.25, "end": 2373.67, "word": " How", "probability": 0.89501953125}, {"start": 2373.67, "end": 2373.81, "word": " to", "probability": 0.4990234375}, {"start": 2373.81, "end": 2374.03, "word": " erase", "probability": 0.65185546875}, {"start": 2374.03, "end": 2374.27, "word": " should", "probability": 0.65771484375}, {"start": 2374.27, "end": 2374.43, "word": " be", "probability": 0.63916015625}, {"start": 2374.43, "end": 2374.57, "word": " done", "probability": 0.52392578125}, {"start": 2374.57, "end": 2374.89, "word": " there.", "probability": 0.80810546875}, {"start": 2375.73, "end": 2376.07, "word": " You", "probability": 0.309814453125}, {"start": 2376.07, "end": 2376.51, "word": " decide", "probability": 0.5400390625}, {"start": 2376.51, "end": 2376.51, "word": " there.", "probability": 0.75634765625}, {"start": 2381.59, "end": 2382.03, "word": " Drawingpanel", "probability": 0.65283203125}, {"start": 2382.03, "end": 2384.17, "word": ".getgraphics", "probability": 0.9188232421875}, {"start": 2384.17, "end": 2386.41, "word": " Undo.", "probability": 0.764892578125}, {"start": 2386.73, "end": 2386.97, "word": " How", "probability": 0.91162109375}, {"start": 2386.97, "end": 2387.09, "word": " do", "probability": 0.4970703125}, {"start": 2387.09, "end": 2387.17, "word": " we", "probability": 0.81982421875}, {"start": 2387.17, "end": 2387.37, "word": " undo?", "probability": 0.81494140625}, {"start": 2388.61, "end": 2389.05, "word": " Undo", "probability": 0.709228515625}, {"start": 2389.05, "end": 2389.13, "word": " is", "probability": 0.830078125}, {"start": 2389.13, "end": 2389.53, "word": " this", "probability": 0.329345703125}, {"start": 2389.53, "end": 2389.53, "word": " part.", "probability": 0.197509765625}, {"start": 2390.33, "end": 2390.77, "word": " Send", "probability": 0.7333984375}, {"start": 2390.77, "end": 2390.93, "word": " it", "probability": 0.88232421875}, {"start": 2390.93, "end": 2391.03, "word": " to", "probability": 0.966796875}, {"start": 2391.03, "end": 2391.19, "word": " the", "probability": 0.6982421875}, {"start": 2391.19, "end": 2391.45, "word": " manager", "probability": 0.90625}, {"start": 2391.45, "end": 2391.59, "word": " and", "probability": 0.52880859375}, {"start": 2391.59, "end": 2391.65, "word": " the", "probability": 0.5927734375}, {"start": 2391.65, "end": 2391.91, "word": " manager", "probability": 0.92724609375}, {"start": 2391.91, "end": 2392.17, "word": " decides.", "probability": 0.6767578125}], "temperature": 1.0}, {"id": 94, "seek": 241669, "start": 2394.38, "end": 2416.7, "text": "Go to M and say Undo. Ok. Now, what do we do with the UI? We delete it. We're done. What does the UI have in its hands? It receives commands and sends them to the drone driver. Where does all the focus and work go?", "tokens": [12104, 281, 376, 293, 584, 2719, 78, 13, 3477, 13, 823, 11, 437, 360, 321, 360, 365, 264, 15682, 30, 492, 12097, 309, 13, 492, 434, 1096, 13, 708, 775, 264, 15682, 362, 294, 1080, 2377, 30, 467, 20717, 16901, 293, 14790, 552, 281, 264, 13852, 6787, 13, 2305, 775, 439, 264, 1879, 293, 589, 352, 30], "avg_logprob": -0.6039870494398577, "compression_ratio": 1.436241610738255, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2394.38, "end": 2394.66, "word": "Go", "probability": 0.324462890625}, {"start": 2394.66, "end": 2394.78, "word": " to", "probability": 0.9326171875}, {"start": 2394.78, "end": 2395.1, "word": " M", "probability": 0.39697265625}, {"start": 2395.1, "end": 2395.28, "word": " and", "probability": 0.76318359375}, {"start": 2395.28, "end": 2395.48, "word": " say", "probability": 0.188720703125}, {"start": 2395.48, "end": 2396.12, "word": " Undo.", "probability": 0.6900634765625}, {"start": 2403.98, "end": 2404.58, "word": " Ok.", "probability": 0.1273193359375}, {"start": 2405.08, "end": 2405.5, "word": " Now,", "probability": 0.5146484375}, {"start": 2405.72, "end": 2406.18, "word": " what", "probability": 0.388916015625}, {"start": 2406.18, "end": 2406.18, "word": " do", "probability": 0.5478515625}, {"start": 2406.18, "end": 2406.74, "word": " we", "probability": 0.91552734375}, {"start": 2406.74, "end": 2407.04, "word": " do", "probability": 0.9560546875}, {"start": 2407.04, "end": 2407.12, "word": " with", "probability": 0.64013671875}, {"start": 2407.12, "end": 2407.12, "word": " the", "probability": 0.48193359375}, {"start": 2407.12, "end": 2407.12, "word": " UI?", "probability": 0.9013671875}, {"start": 2407.74, "end": 2408.04, "word": " We", "probability": 0.62744140625}, {"start": 2408.04, "end": 2408.26, "word": " delete", "probability": 0.69580078125}, {"start": 2408.26, "end": 2408.4, "word": " it.", "probability": 0.90185546875}, {"start": 2408.8, "end": 2409.06, "word": " We're", "probability": 0.42626953125}, {"start": 2409.06, "end": 2409.28, "word": " done.", "probability": 0.86962890625}, {"start": 2409.46, "end": 2409.58, "word": " What", "probability": 0.29736328125}, {"start": 2409.58, "end": 2409.58, "word": " does", "probability": 0.32861328125}, {"start": 2409.58, "end": 2409.58, "word": " the", "probability": 0.70654296875}, {"start": 2409.58, "end": 2409.88, "word": " UI", "probability": 0.962890625}, {"start": 2409.88, "end": 2410.6, "word": " have", "probability": 0.53076171875}, {"start": 2410.6, "end": 2410.6, "word": " in", "probability": 0.7333984375}, {"start": 2410.6, "end": 2410.62, "word": " its", "probability": 0.62158203125}, {"start": 2410.62, "end": 2410.72, "word": " hands?", "probability": 0.54931640625}, {"start": 2411.12, "end": 2411.66, "word": " It", "probability": 0.7060546875}, {"start": 2411.66, "end": 2412.02, "word": " receives", "probability": 0.5556640625}, {"start": 2412.02, "end": 2412.44, "word": " commands", "probability": 0.6875}, {"start": 2412.44, "end": 2413.04, "word": " and", "probability": 0.58935546875}, {"start": 2413.04, "end": 2413.3, "word": " sends", "probability": 0.2252197265625}, {"start": 2413.3, "end": 2413.68, "word": " them", "probability": 0.81689453125}, {"start": 2413.68, "end": 2414.06, "word": " to", "probability": 0.69677734375}, {"start": 2414.06, "end": 2414.2, "word": " the", "probability": 0.6669921875}, {"start": 2414.2, "end": 2414.4, "word": " drone", "probability": 0.73779296875}, {"start": 2414.4, "end": 2414.68, "word": " driver.", "probability": 0.284423828125}, {"start": 2414.94, "end": 2415.3, "word": " Where", "probability": 0.181640625}, {"start": 2415.3, "end": 2415.3, "word": " does", "probability": 0.7138671875}, {"start": 2415.3, "end": 2415.4, "word": " all", "probability": 0.68115234375}, {"start": 2415.4, "end": 2415.5, "word": " the", "probability": 0.5029296875}, {"start": 2415.5, "end": 2415.86, "word": " focus", "probability": 0.2210693359375}, {"start": 2415.86, "end": 2416.02, "word": " and", "probability": 0.49658203125}, {"start": 2416.02, "end": 2416.34, "word": " work", "probability": 0.740234375}, {"start": 2416.34, "end": 2416.7, "word": " go?", "probability": 0.267822265625}], "temperature": 1.0}, {"id": 95, "seek": 244016, "start": 2418.08, "end": 2440.16, "text": " it will be done here, you will see how it is organized, I don't see any UI code or anything, the UI is separate and the backend is separate, this is the model we call it, okay? Now here you think comfortably how you want to do everything, the first thing is drawing a circle, this is easy, the circle does not have a ready method to draw, I did it, I go to the circle and tell it what?", "tokens": [309, 486, 312, 1096, 510, 11, 291, 486, 536, 577, 309, 307, 9983, 11, 286, 500, 380, 536, 604, 15682, 3089, 420, 1340, 11, 264, 15682, 307, 4994, 293, 264, 38087, 307, 4994, 11, 341, 307, 264, 2316, 321, 818, 309, 11, 1392, 30, 823, 510, 291, 519, 25101, 577, 291, 528, 281, 360, 1203, 11, 264, 700, 551, 307, 6316, 257, 6329, 11, 341, 307, 1858, 11, 264, 6329, 775, 406, 362, 257, 1919, 3170, 281, 2642, 11, 286, 630, 309, 11, 286, 352, 281, 264, 6329, 293, 980, 309, 437, 30], "avg_logprob": -0.6346409713968317, "compression_ratio": 1.746606334841629, "no_speech_prob": 7.063150405883789e-05, "words": [{"start": 2418.08, "end": 2418.26, "word": " it", "probability": 0.036346435546875}, {"start": 2418.26, "end": 2418.42, "word": " will", "probability": 0.2166748046875}, {"start": 2418.42, "end": 2418.42, "word": " be", "probability": 0.24462890625}, {"start": 2418.42, "end": 2418.62, "word": " done", "probability": 0.2373046875}, {"start": 2418.62, "end": 2418.86, "word": " here,", "probability": 0.6484375}, {"start": 2419.24, "end": 2419.5, "word": " you", "probability": 0.1624755859375}, {"start": 2419.5, "end": 2419.66, "word": " will", "probability": 0.423828125}, {"start": 2419.66, "end": 2419.78, "word": " see", "probability": 0.7265625}, {"start": 2419.78, "end": 2419.98, "word": " how", "probability": 0.1805419921875}, {"start": 2419.98, "end": 2420.12, "word": " it", "probability": 0.387451171875}, {"start": 2420.12, "end": 2420.48, "word": " is", "probability": 0.278564453125}, {"start": 2420.48, "end": 2420.98, "word": " organized,", "probability": 0.3017578125}, {"start": 2421.44, "end": 2421.64, "word": " I", "probability": 0.332763671875}, {"start": 2421.64, "end": 2421.68, "word": " don't", "probability": 0.766845703125}, {"start": 2421.68, "end": 2421.92, "word": " see", "probability": 0.56201171875}, {"start": 2421.92, "end": 2422.2, "word": " any", "probability": 0.2479248046875}, {"start": 2422.2, "end": 2423.3, "word": " UI", "probability": 0.31591796875}, {"start": 2423.3, "end": 2423.72, "word": " code", "probability": 0.64990234375}, {"start": 2423.72, "end": 2423.92, "word": " or", "probability": 0.41845703125}, {"start": 2423.92, "end": 2424.08, "word": " anything,", "probability": 0.7470703125}, {"start": 2424.2, "end": 2424.32, "word": " the", "probability": 0.314453125}, {"start": 2424.32, "end": 2424.5, "word": " UI", "probability": 0.86572265625}, {"start": 2424.5, "end": 2424.6, "word": " is", "probability": 0.83544921875}, {"start": 2424.6, "end": 2424.86, "word": " separate", "probability": 0.306396484375}, {"start": 2424.86, "end": 2425.5, "word": " and", "probability": 0.498779296875}, {"start": 2425.5, "end": 2425.96, "word": " the", "probability": 0.76513671875}, {"start": 2425.96, "end": 2426.34, "word": " backend", "probability": 0.73828125}, {"start": 2426.34, "end": 2426.56, "word": " is", "probability": 0.7470703125}, {"start": 2426.56, "end": 2426.82, "word": " separate,", "probability": 0.425537109375}, {"start": 2427.72, "end": 2427.86, "word": " this", "probability": 0.20947265625}, {"start": 2427.86, "end": 2427.88, "word": " is", "probability": 0.896484375}, {"start": 2427.88, "end": 2428.02, "word": " the", "probability": 0.64501953125}, {"start": 2428.02, "end": 2428.26, "word": " model", "probability": 0.8994140625}, {"start": 2428.26, "end": 2428.56, "word": " we", "probability": 0.289794921875}, {"start": 2428.56, "end": 2428.82, "word": " call", "probability": 0.67578125}, {"start": 2428.82, "end": 2429.2, "word": " it,", "probability": 0.85302734375}, {"start": 2429.22, "end": 2429.44, "word": " okay?", "probability": 0.291015625}, {"start": 2429.96, "end": 2430.2, "word": " Now", "probability": 0.3984375}, {"start": 2430.2, "end": 2430.4, "word": " here", "probability": 0.57763671875}, {"start": 2430.4, "end": 2430.52, "word": " you", "probability": 0.6240234375}, {"start": 2430.52, "end": 2430.84, "word": " think", "probability": 0.451904296875}, {"start": 2430.84, "end": 2431.38, "word": " comfortably", "probability": 0.28369140625}, {"start": 2431.38, "end": 2431.58, "word": " how", "probability": 0.45947265625}, {"start": 2431.58, "end": 2431.74, "word": " you", "probability": 0.71044921875}, {"start": 2431.74, "end": 2431.74, "word": " want", "probability": 0.6591796875}, {"start": 2431.74, "end": 2431.86, "word": " to", "probability": 0.9609375}, {"start": 2431.86, "end": 2432.02, "word": " do", "probability": 0.92431640625}, {"start": 2432.02, "end": 2432.4, "word": " everything,", "probability": 0.611328125}, {"start": 2432.86, "end": 2433.04, "word": " the", "probability": 0.8203125}, {"start": 2433.04, "end": 2433.08, "word": " first", "probability": 0.86328125}, {"start": 2433.08, "end": 2433.26, "word": " thing", "probability": 0.68017578125}, {"start": 2433.26, "end": 2433.62, "word": " is", "probability": 0.382568359375}, {"start": 2433.62, "end": 2433.82, "word": " drawing", "probability": 0.421630859375}, {"start": 2433.82, "end": 2434.0, "word": " a", "probability": 0.7412109375}, {"start": 2434.0, "end": 2434.22, "word": " circle,", "probability": 0.9619140625}, {"start": 2434.28, "end": 2434.4, "word": " this", "probability": 0.67822265625}, {"start": 2434.4, "end": 2434.46, "word": " is", "probability": 0.92919921875}, {"start": 2434.46, "end": 2434.7, "word": " easy,", "probability": 0.85595703125}, {"start": 2435.2, "end": 2435.38, "word": " the", "probability": 0.265869140625}, {"start": 2435.38, "end": 2435.74, "word": " circle", "probability": 0.85791015625}, {"start": 2435.74, "end": 2435.9, "word": " does", "probability": 0.60107421875}, {"start": 2435.9, "end": 2435.9, "word": " not", "probability": 0.939453125}, {"start": 2435.9, "end": 2436.14, "word": " have", "probability": 0.85791015625}, {"start": 2436.14, "end": 2436.2, "word": " a", "probability": 0.92822265625}, {"start": 2436.2, "end": 2436.22, "word": " ready", "probability": 0.3603515625}, {"start": 2436.22, "end": 2436.22, "word": " method", "probability": 0.4130859375}, {"start": 2436.22, "end": 2436.32, "word": " to", "probability": 0.4951171875}, {"start": 2436.32, "end": 2436.54, "word": " draw,", "probability": 0.87939453125}, {"start": 2437.4, "end": 2437.52, "word": " I", "probability": 0.95166015625}, {"start": 2437.52, "end": 2437.74, "word": " did", "probability": 0.376708984375}, {"start": 2437.74, "end": 2437.9, "word": " it,", "probability": 0.93408203125}, {"start": 2438.28, "end": 2438.46, "word": " I", "probability": 0.95703125}, {"start": 2438.46, "end": 2438.56, "word": " go", "probability": 0.8916015625}, {"start": 2438.56, "end": 2438.66, "word": " to", "probability": 0.9677734375}, {"start": 2438.66, "end": 2438.78, "word": " the", "probability": 0.90673828125}, {"start": 2438.78, "end": 2439.12, "word": " circle", "probability": 0.96630859375}, {"start": 2439.12, "end": 2439.58, "word": " and", "probability": 0.88671875}, {"start": 2439.58, "end": 2439.78, "word": " tell", "probability": 0.47900390625}, {"start": 2439.78, "end": 2439.88, "word": " it", "probability": 0.419921875}, {"start": 2439.88, "end": 2440.16, "word": " what?", "probability": 0.705078125}], "temperature": 1.0}, {"id": 96, "seek": 246827, "start": 2441.15, "end": 2468.27, "text": " the drone and the rectangle is the same thing, I go to the rectangle and I say the drone clear, how do I delete it? to delete it, there is a tool called clear in graphics, clear rectangle I delete a certain rectangle like this for example, I delete an area of 500x500 for example, the whole screen the undo, this is a win", "tokens": [264, 13852, 293, 264, 21930, 307, 264, 912, 551, 11, 286, 352, 281, 264, 21930, 293, 286, 584, 264, 13852, 1850, 11, 577, 360, 286, 12097, 309, 30, 281, 12097, 309, 11, 456, 307, 257, 2290, 1219, 1850, 294, 11837, 11, 1850, 21930, 286, 12097, 257, 1629, 21930, 411, 341, 337, 1365, 11, 286, 12097, 364, 1859, 295, 5923, 87, 7526, 337, 1365, 11, 264, 1379, 2568, 264, 23779, 11, 341, 307, 257, 1942], "avg_logprob": -0.6358333476384481, "compression_ratio": 1.8505747126436782, "no_speech_prob": 1.4781951904296875e-05, "words": [{"start": 2441.15, "end": 2441.41, "word": " the", "probability": 0.07476806640625}, {"start": 2441.41, "end": 2441.61, "word": " drone", "probability": 0.6171875}, {"start": 2441.61, "end": 2442.99, "word": " and", "probability": 0.128173828125}, {"start": 2442.99, "end": 2443.39, "word": " the", "probability": 0.398193359375}, {"start": 2443.39, "end": 2443.81, "word": " rectangle", "probability": 0.8994140625}, {"start": 2443.81, "end": 2443.93, "word": " is", "probability": 0.353759765625}, {"start": 2443.93, "end": 2443.99, "word": " the", "probability": 0.689453125}, {"start": 2443.99, "end": 2444.15, "word": " same", "probability": 0.90576171875}, {"start": 2444.15, "end": 2444.43, "word": " thing,", "probability": 0.74755859375}, {"start": 2444.47, "end": 2444.53, "word": " I", "probability": 0.57568359375}, {"start": 2444.53, "end": 2444.63, "word": " go", "probability": 0.6845703125}, {"start": 2444.63, "end": 2444.75, "word": " to", "probability": 0.9140625}, {"start": 2444.75, "end": 2444.83, "word": " the", "probability": 0.80224609375}, {"start": 2444.83, "end": 2445.23, "word": " rectangle", "probability": 0.91845703125}, {"start": 2445.23, "end": 2445.41, "word": " and", "probability": 0.86767578125}, {"start": 2445.41, "end": 2445.43, "word": " I", "probability": 0.282958984375}, {"start": 2445.43, "end": 2445.63, "word": " say", "probability": 0.568359375}, {"start": 2445.63, "end": 2446.25, "word": " the", "probability": 0.29443359375}, {"start": 2446.25, "end": 2447.09, "word": " drone", "probability": 0.93017578125}, {"start": 2447.09, "end": 2448.93, "word": " clear,", "probability": 0.251220703125}, {"start": 2449.35, "end": 2449.75, "word": " how", "probability": 0.81640625}, {"start": 2449.75, "end": 2449.87, "word": " do", "probability": 0.4794921875}, {"start": 2449.87, "end": 2449.95, "word": " I", "probability": 0.3251953125}, {"start": 2449.95, "end": 2450.09, "word": " delete", "probability": 0.65673828125}, {"start": 2450.09, "end": 2450.45, "word": " it?", "probability": 0.34765625}, {"start": 2451.83, "end": 2452.15, "word": " to", "probability": 0.155029296875}, {"start": 2452.15, "end": 2452.35, "word": " delete", "probability": 0.9189453125}, {"start": 2452.35, "end": 2452.65, "word": " it,", "probability": 0.67041015625}, {"start": 2452.65, "end": 2452.75, "word": " there", "probability": 0.51416015625}, {"start": 2452.75, "end": 2452.75, "word": " is", "probability": 0.77978515625}, {"start": 2452.75, "end": 2452.97, "word": " a", "probability": 0.80419921875}, {"start": 2452.97, "end": 2453.21, "word": " tool", "probability": 0.7109375}, {"start": 2453.21, "end": 2453.53, "word": " called", "probability": 0.52294921875}, {"start": 2453.53, "end": 2453.99, "word": " clear", "probability": 0.68994140625}, {"start": 2453.99, "end": 2454.61, "word": " in", "probability": 0.6669921875}, {"start": 2454.61, "end": 2455.37, "word": " graphics,", "probability": 0.556640625}, {"start": 2455.61, "end": 2456.17, "word": " clear", "probability": 0.196044921875}, {"start": 2456.17, "end": 2456.83, "word": " rectangle", "probability": 0.958984375}, {"start": 2456.83, "end": 2457.43, "word": " I", "probability": 0.30322265625}, {"start": 2457.43, "end": 2457.63, "word": " delete", "probability": 0.8037109375}, {"start": 2457.63, "end": 2457.81, "word": " a", "probability": 0.372802734375}, {"start": 2457.81, "end": 2458.53, "word": " certain", "probability": 0.43896484375}, {"start": 2458.53, "end": 2458.53, "word": " rectangle", "probability": 0.8330078125}, {"start": 2458.53, "end": 2459.57, "word": " like", "probability": 0.54248046875}, {"start": 2459.57, "end": 2459.83, "word": " this", "probability": 0.8984375}, {"start": 2459.83, "end": 2459.95, "word": " for", "probability": 0.50390625}, {"start": 2459.95, "end": 2460.11, "word": " example,", "probability": 0.95458984375}, {"start": 2460.75, "end": 2460.85, "word": " I", "probability": 0.76806640625}, {"start": 2460.85, "end": 2461.11, "word": " delete", "probability": 0.91455078125}, {"start": 2461.11, "end": 2461.35, "word": " an", "probability": 0.321533203125}, {"start": 2461.35, "end": 2461.65, "word": " area", "probability": 0.84912109375}, {"start": 2461.65, "end": 2461.99, "word": " of", "probability": 0.5927734375}, {"start": 2461.99, "end": 2463.51, "word": " 500x500", "probability": 0.8063151041666666}, {"start": 2463.51, "end": 2463.71, "word": " for", "probability": 0.252685546875}, {"start": 2463.71, "end": 2464.15, "word": " example,", "probability": 0.97314453125}, {"start": 2464.27, "end": 2464.43, "word": " the", "probability": 0.74755859375}, {"start": 2464.43, "end": 2464.45, "word": " whole", "probability": 0.50341796875}, {"start": 2464.45, "end": 2464.67, "word": " screen", "probability": 0.8720703125}, {"start": 2464.67, "end": 2466.93, "word": " the", "probability": 0.11236572265625}, {"start": 2466.93, "end": 2467.27, "word": " undo,", "probability": 0.96533203125}, {"start": 2467.39, "end": 2467.99, "word": " this", "probability": 0.454833984375}, {"start": 2467.99, "end": 2468.05, "word": " is", "probability": 0.8095703125}, {"start": 2468.05, "end": 2468.15, "word": " a", "probability": 0.260986328125}, {"start": 2468.15, "end": 2468.27, "word": " win", "probability": 0.376953125}], "temperature": 1.0}, {"id": 97, "seek": 248279, "start": 2469.37, "end": 2482.79, "text": " What does it mean to undo? It means to redraw all the things that were drawn and erased. It doesn't mean that I drew a circle. It means that whatever shape you want to draw,", "tokens": [708, 775, 309, 914, 281, 23779, 30, 467, 1355, 281, 2182, 5131, 439, 264, 721, 300, 645, 10117, 293, 38359, 13, 467, 1177, 380, 914, 300, 286, 12804, 257, 6329, 13, 467, 1355, 300, 2035, 3909, 291, 528, 281, 2642, 11], "avg_logprob": -0.6257440618106297, "compression_ratio": 1.4146341463414633, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 2469.37, "end": 2469.59, "word": " What", "probability": 0.0325927734375}, {"start": 2469.59, "end": 2469.59, "word": " does", "probability": 0.8037109375}, {"start": 2469.59, "end": 2469.99, "word": " it", "probability": 0.25146484375}, {"start": 2469.99, "end": 2470.69, "word": " mean", "probability": 0.92822265625}, {"start": 2470.69, "end": 2470.87, "word": " to", "probability": 0.5263671875}, {"start": 2470.87, "end": 2470.87, "word": " undo?", "probability": 0.1529541015625}, {"start": 2471.17, "end": 2471.85, "word": " It", "probability": 0.398193359375}, {"start": 2471.85, "end": 2471.85, "word": " means", "probability": 0.91015625}, {"start": 2471.85, "end": 2471.85, "word": " to", "probability": 0.58203125}, {"start": 2471.85, "end": 2472.21, "word": " redraw", "probability": 0.6619873046875}, {"start": 2472.21, "end": 2472.91, "word": " all", "probability": 0.2452392578125}, {"start": 2472.91, "end": 2473.01, "word": " the", "probability": 0.60986328125}, {"start": 2473.01, "end": 2473.25, "word": " things", "probability": 0.391845703125}, {"start": 2473.25, "end": 2473.83, "word": " that", "probability": 0.7041015625}, {"start": 2473.83, "end": 2474.21, "word": " were", "probability": 0.5302734375}, {"start": 2474.21, "end": 2474.61, "word": " drawn", "probability": 0.80859375}, {"start": 2474.61, "end": 2475.51, "word": " and", "probability": 0.448486328125}, {"start": 2475.51, "end": 2475.97, "word": " erased.", "probability": 0.59716796875}, {"start": 2476.81, "end": 2476.87, "word": " It", "probability": 0.5830078125}, {"start": 2476.87, "end": 2477.45, "word": " doesn't", "probability": 0.591064453125}, {"start": 2477.45, "end": 2477.51, "word": " mean", "probability": 0.94580078125}, {"start": 2477.51, "end": 2478.63, "word": " that", "probability": 0.4970703125}, {"start": 2478.63, "end": 2478.71, "word": " I", "probability": 0.666015625}, {"start": 2478.71, "end": 2479.07, "word": " drew", "probability": 0.460205078125}, {"start": 2479.07, "end": 2479.59, "word": " a", "probability": 0.875}, {"start": 2479.59, "end": 2479.97, "word": " circle.", "probability": 0.93408203125}, {"start": 2480.59, "end": 2480.77, "word": " It", "probability": 0.78369140625}, {"start": 2480.77, "end": 2481.09, "word": " means", "probability": 0.85302734375}, {"start": 2481.09, "end": 2481.41, "word": " that", "probability": 0.791015625}, {"start": 2481.41, "end": 2481.63, "word": " whatever", "probability": 0.1644287109375}, {"start": 2481.63, "end": 2481.93, "word": " shape", "probability": 0.6865234375}, {"start": 2481.93, "end": 2482.19, "word": " you", "probability": 0.89208984375}, {"start": 2482.19, "end": 2482.37, "word": " want", "probability": 0.515625}, {"start": 2482.37, "end": 2482.49, "word": " to", "probability": 0.94482421875}, {"start": 2482.49, "end": 2482.79, "word": " draw,", "probability": 0.85595703125}], "temperature": 1.0}, {"id": 98, "seek": 251013, "start": 2483.59, "end": 2510.13, "text": " you have to memorize it because it will force you to do undo what are the shapes that I'm drawing? three shapes circle and rectangle until now solid circle so you start thinking you say yes I want to memorize the circles you want to go to the array list up there where did you make the array list? in the draw manager what is it? circle these circles are equal to", "tokens": [291, 362, 281, 27478, 309, 570, 309, 486, 3464, 291, 281, 360, 23779, 437, 366, 264, 10854, 300, 286, 478, 6316, 30, 1045, 10854, 6329, 293, 21930, 1826, 586, 5100, 6329, 370, 291, 722, 1953, 291, 584, 2086, 286, 528, 281, 27478, 264, 13040, 291, 528, 281, 352, 281, 264, 10225, 1329, 493, 456, 689, 630, 291, 652, 264, 10225, 1329, 30, 294, 264, 2642, 6598, 437, 307, 309, 30, 6329, 613, 13040, 366, 2681, 281], "avg_logprob": -0.5905032591386274, "compression_ratio": 1.775609756097561, "no_speech_prob": 6.735324859619141e-06, "words": [{"start": 2483.59, "end": 2483.85, "word": " you", "probability": 0.10235595703125}, {"start": 2483.85, "end": 2483.87, "word": " have", "probability": 0.35205078125}, {"start": 2483.87, "end": 2484.07, "word": " to", "probability": 0.9580078125}, {"start": 2484.07, "end": 2484.33, "word": " memorize", "probability": 0.6484375}, {"start": 2484.33, "end": 2484.95, "word": " it", "probability": 0.50439453125}, {"start": 2484.95, "end": 2485.29, "word": " because", "probability": 0.299072265625}, {"start": 2485.29, "end": 2485.51, "word": " it", "probability": 0.53466796875}, {"start": 2485.51, "end": 2485.61, "word": " will", "probability": 0.6318359375}, {"start": 2485.61, "end": 2485.73, "word": " force", "probability": 0.334716796875}, {"start": 2485.73, "end": 2485.93, "word": " you", "probability": 0.95361328125}, {"start": 2485.93, "end": 2486.23, "word": " to", "probability": 0.66064453125}, {"start": 2486.23, "end": 2487.03, "word": " do", "probability": 0.44921875}, {"start": 2487.03, "end": 2487.87, "word": " undo", "probability": 0.79345703125}, {"start": 2487.87, "end": 2488.67, "word": " what", "probability": 0.224609375}, {"start": 2488.67, "end": 2488.75, "word": " are", "probability": 0.32421875}, {"start": 2488.75, "end": 2489.37, "word": " the", "probability": 0.83349609375}, {"start": 2489.37, "end": 2489.63, "word": " shapes", "probability": 0.7822265625}, {"start": 2489.63, "end": 2489.75, "word": " that", "probability": 0.49951171875}, {"start": 2489.75, "end": 2489.97, "word": " I'm", "probability": 0.4842529296875}, {"start": 2489.97, "end": 2490.19, "word": " drawing?", "probability": 0.8212890625}, {"start": 2490.45, "end": 2490.75, "word": " three", "probability": 0.388916015625}, {"start": 2490.75, "end": 2491.21, "word": " shapes", "probability": 0.888671875}, {"start": 2491.21, "end": 2491.71, "word": " circle", "probability": 0.460693359375}, {"start": 2491.71, "end": 2491.85, "word": " and", "probability": 0.65185546875}, {"start": 2491.85, "end": 2492.29, "word": " rectangle", "probability": 0.93603515625}, {"start": 2492.29, "end": 2492.61, "word": " until", "probability": 0.1602783203125}, {"start": 2492.61, "end": 2492.97, "word": " now", "probability": 0.9375}, {"start": 2492.97, "end": 2493.53, "word": " solid", "probability": 0.456787109375}, {"start": 2493.53, "end": 2494.03, "word": " circle", "probability": 0.85205078125}, {"start": 2494.03, "end": 2494.95, "word": " so", "probability": 0.42724609375}, {"start": 2494.95, "end": 2495.19, "word": " you", "probability": 0.68896484375}, {"start": 2495.19, "end": 2495.33, "word": " start", "probability": 0.3818359375}, {"start": 2495.33, "end": 2495.73, "word": " thinking", "probability": 0.5966796875}, {"start": 2495.73, "end": 2495.89, "word": " you", "probability": 0.1959228515625}, {"start": 2495.89, "end": 2496.05, "word": " say", "probability": 0.61572265625}, {"start": 2496.05, "end": 2496.25, "word": " yes", "probability": 0.345703125}, {"start": 2496.25, "end": 2496.43, "word": " I", "probability": 0.82958984375}, {"start": 2496.43, "end": 2496.61, "word": " want", "probability": 0.7470703125}, {"start": 2496.61, "end": 2496.69, "word": " to", "probability": 0.96044921875}, {"start": 2496.69, "end": 2496.83, "word": " memorize", "probability": 0.8232421875}, {"start": 2496.83, "end": 2497.03, "word": " the", "probability": 0.73876953125}, {"start": 2497.03, "end": 2497.33, "word": " circles", "probability": 0.75439453125}, {"start": 2497.33, "end": 2497.53, "word": " you", "probability": 0.208251953125}, {"start": 2497.53, "end": 2497.75, "word": " want", "probability": 0.39794921875}, {"start": 2497.75, "end": 2497.95, "word": " to", "probability": 0.94140625}, {"start": 2497.95, "end": 2497.95, "word": " go", "probability": 0.55029296875}, {"start": 2497.95, "end": 2498.07, "word": " to", "probability": 0.225830078125}, {"start": 2498.07, "end": 2498.21, "word": " the", "probability": 0.5810546875}, {"start": 2498.21, "end": 2498.39, "word": " array", "probability": 0.8173828125}, {"start": 2498.39, "end": 2498.81, "word": " list", "probability": 0.55078125}, {"start": 2498.81, "end": 2499.97, "word": " up", "probability": 0.29931640625}, {"start": 2499.97, "end": 2500.11, "word": " there", "probability": 0.449462890625}, {"start": 2500.11, "end": 2500.37, "word": " where", "probability": 0.70361328125}, {"start": 2500.37, "end": 2500.37, "word": " did", "probability": 0.80419921875}, {"start": 2500.37, "end": 2500.59, "word": " you", "probability": 0.57568359375}, {"start": 2500.59, "end": 2500.77, "word": " make", "probability": 0.464599609375}, {"start": 2500.77, "end": 2500.91, "word": " the", "probability": 0.6123046875}, {"start": 2500.91, "end": 2501.07, "word": " array", "probability": 0.837890625}, {"start": 2501.07, "end": 2501.39, "word": " list?", "probability": 0.90478515625}, {"start": 2502.01, "end": 2502.49, "word": " in", "probability": 0.74609375}, {"start": 2502.49, "end": 2502.57, "word": " the", "probability": 0.80029296875}, {"start": 2502.57, "end": 2502.73, "word": " draw", "probability": 0.51513671875}, {"start": 2502.73, "end": 2503.05, "word": " manager", "probability": 0.70166015625}, {"start": 2503.05, "end": 2503.41, "word": " what", "probability": 0.2430419921875}, {"start": 2503.41, "end": 2503.61, "word": " is", "probability": 0.67724609375}, {"start": 2503.61, "end": 2503.79, "word": " it?", "probability": 0.81689453125}, {"start": 2504.81, "end": 2505.29, "word": " circle", "probability": 0.8544921875}, {"start": 2505.29, "end": 2508.99, "word": " these", "probability": 0.75732421875}, {"start": 2508.99, "end": 2509.55, "word": " circles", "probability": 0.6435546875}, {"start": 2509.55, "end": 2509.83, "word": " are", "probability": 0.386962890625}, {"start": 2509.83, "end": 2510.09, "word": " equal", "probability": 0.794921875}, {"start": 2510.09, "end": 2510.13, "word": " to", "probability": 0.96923828125}], "temperature": 1.0}, {"id": 99, "seek": 253917, "start": 2533.71, "end": 2539.17, "text": " Rectangles equals new ArrayList", "tokens": [497, 557, 656, 904, 6915, 777, 1587, 3458, 43, 468], "avg_logprob": -0.5997869101437655, "compression_ratio": 0.8, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 2533.71, "end": 2535.11, "word": " Rectangles", "probability": 0.6532135009765625}, {"start": 2535.11, "end": 2536.51, "word": " equals", "probability": 0.0226287841796875}, {"start": 2536.51, "end": 2536.99, "word": " new", "probability": 0.5498046875}, {"start": 2536.99, "end": 2539.17, "word": " ArrayList", "probability": 0.777099609375}], "temperature": 1.0}, {"id": 100, "seek": 256966, "start": 2541.66, "end": 2569.66, "text": " Why did we make this list? Because when we draw a circle, we say circles.add and put on the object circle. This is the purpose of the object that we made, to memorize it. Notice that this code now, if I worked in the UI, all this was done where? In the UI. It was messy. No, we separated the work again. For the rectangle, it's the same thing. Come to the rectangles and say add and add to the object rectangle that we drew.", "tokens": [1545, 630, 321, 652, 341, 1329, 30, 1436, 562, 321, 2642, 257, 6329, 11, 321, 584, 13040, 13, 25224, 293, 829, 322, 264, 2657, 6329, 13, 639, 307, 264, 4334, 295, 264, 2657, 300, 321, 1027, 11, 281, 27478, 309, 13, 13428, 300, 341, 3089, 586, 11, 498, 286, 2732, 294, 264, 15682, 11, 439, 341, 390, 1096, 689, 30, 682, 264, 15682, 13, 467, 390, 16191, 13, 883, 11, 321, 12005, 264, 589, 797, 13, 1171, 264, 21930, 11, 309, 311, 264, 912, 551, 13, 2492, 281, 264, 24077, 904, 293, 584, 909, 293, 909, 281, 264, 2657, 21930, 300, 321, 12804, 13], "avg_logprob": -0.4750000113532657, "compression_ratio": 1.7489711934156378, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2541.66, "end": 2541.98, "word": " Why", "probability": 0.27294921875}, {"start": 2541.98, "end": 2542.1, "word": " did", "probability": 0.7119140625}, {"start": 2542.1, "end": 2542.1, "word": " we", "probability": 0.87158203125}, {"start": 2542.1, "end": 2542.2, "word": " make", "probability": 0.495849609375}, {"start": 2542.2, "end": 2542.38, "word": " this", "probability": 0.77783203125}, {"start": 2542.38, "end": 2542.62, "word": " list?", "probability": 0.85693359375}, {"start": 2543.12, "end": 2543.46, "word": " Because", "probability": 0.5166015625}, {"start": 2543.46, "end": 2543.72, "word": " when", "probability": 0.8125}, {"start": 2543.72, "end": 2543.98, "word": " we", "probability": 0.86376953125}, {"start": 2543.98, "end": 2544.26, "word": " draw", "probability": 0.56298828125}, {"start": 2544.26, "end": 2544.52, "word": " a", "probability": 0.51806640625}, {"start": 2544.52, "end": 2544.8, "word": " circle,", "probability": 0.93115234375}, {"start": 2545.32, "end": 2545.62, "word": " we", "probability": 0.81005859375}, {"start": 2545.62, "end": 2545.76, "word": " say", "probability": 0.53076171875}, {"start": 2545.76, "end": 2546.52, "word": " circles", "probability": 0.45166015625}, {"start": 2546.52, "end": 2548.32, "word": ".add", "probability": 0.88037109375}, {"start": 2548.32, "end": 2548.64, "word": " and", "probability": 0.201171875}, {"start": 2548.64, "end": 2548.72, "word": " put", "probability": 0.2978515625}, {"start": 2548.72, "end": 2548.86, "word": " on", "probability": 0.32373046875}, {"start": 2548.86, "end": 2548.98, "word": " the", "probability": 0.5810546875}, {"start": 2548.98, "end": 2549.22, "word": " object", "probability": 0.84716796875}, {"start": 2549.22, "end": 2549.68, "word": " circle.", "probability": 0.87841796875}, {"start": 2550.4, "end": 2550.64, "word": " This", "probability": 0.58984375}, {"start": 2550.64, "end": 2550.7, "word": " is", "probability": 0.89013671875}, {"start": 2550.7, "end": 2550.72, "word": " the", "probability": 0.76220703125}, {"start": 2550.72, "end": 2550.92, "word": " purpose", "probability": 0.11395263671875}, {"start": 2550.92, "end": 2551.02, "word": " of", "probability": 0.95166015625}, {"start": 2551.02, "end": 2551.08, "word": " the", "probability": 0.70654296875}, {"start": 2551.08, "end": 2551.32, "word": " object", "probability": 0.912109375}, {"start": 2551.32, "end": 2551.44, "word": " that", "probability": 0.327392578125}, {"start": 2551.44, "end": 2551.48, "word": " we", "probability": 0.9365234375}, {"start": 2551.48, "end": 2551.7, "word": " made,", "probability": 0.468017578125}, {"start": 2551.92, "end": 2552.08, "word": " to", "probability": 0.63037109375}, {"start": 2552.08, "end": 2552.32, "word": " memorize", "probability": 0.34375}, {"start": 2552.32, "end": 2554.1, "word": " it.", "probability": 0.8349609375}, {"start": 2554.48, "end": 2554.92, "word": " Notice", "probability": 0.62060546875}, {"start": 2554.92, "end": 2555.12, "word": " that", "probability": 0.42919921875}, {"start": 2555.12, "end": 2555.16, "word": " this", "probability": 0.5322265625}, {"start": 2555.16, "end": 2555.46, "word": " code", "probability": 0.896484375}, {"start": 2555.46, "end": 2555.86, "word": " now,", "probability": 0.477783203125}, {"start": 2556.1, "end": 2556.3, "word": " if", "probability": 0.88134765625}, {"start": 2556.3, "end": 2556.46, "word": " I", "probability": 0.89208984375}, {"start": 2556.46, "end": 2556.74, "word": " worked", "probability": 0.3798828125}, {"start": 2556.74, "end": 2556.9, "word": " in", "probability": 0.72021484375}, {"start": 2556.9, "end": 2556.98, "word": " the", "probability": 0.6220703125}, {"start": 2556.98, "end": 2557.26, "word": " UI,", "probability": 0.95654296875}, {"start": 2557.44, "end": 2557.68, "word": " all", "probability": 0.37744140625}, {"start": 2557.68, "end": 2557.88, "word": " this", "probability": 0.6025390625}, {"start": 2557.88, "end": 2557.92, "word": " was", "probability": 0.2412109375}, {"start": 2557.92, "end": 2558.14, "word": " done", "probability": 0.396728515625}, {"start": 2558.14, "end": 2558.46, "word": " where?", "probability": 0.362548828125}, {"start": 2558.76, "end": 2559.2, "word": " In", "probability": 0.8291015625}, {"start": 2559.2, "end": 2559.26, "word": " the", "probability": 0.83349609375}, {"start": 2559.26, "end": 2559.56, "word": " UI.", "probability": 0.97607421875}, {"start": 2559.72, "end": 2559.72, "word": " It", "probability": 0.6865234375}, {"start": 2559.72, "end": 2559.78, "word": " was", "probability": 0.76708984375}, {"start": 2559.78, "end": 2560.12, "word": " messy.", "probability": 0.12353515625}, {"start": 2560.42, "end": 2560.6, "word": " No,", "probability": 0.71142578125}, {"start": 2560.68, "end": 2560.88, "word": " we", "probability": 0.51318359375}, {"start": 2560.88, "end": 2561.16, "word": " separated", "probability": 0.6396484375}, {"start": 2561.16, "end": 2561.52, "word": " the", "probability": 0.42333984375}, {"start": 2561.52, "end": 2561.74, "word": " work", "probability": 0.68408203125}, {"start": 2561.74, "end": 2561.8, "word": " again.", "probability": 0.56494140625}, {"start": 2562.24, "end": 2562.34, "word": " For", "probability": 0.654296875}, {"start": 2562.34, "end": 2562.44, "word": " the", "probability": 0.607421875}, {"start": 2562.44, "end": 2562.92, "word": " rectangle,", "probability": 0.87646484375}, {"start": 2563.82, "end": 2563.86, "word": " it's", "probability": 0.557373046875}, {"start": 2563.86, "end": 2564.04, "word": " the", "probability": 0.91064453125}, {"start": 2564.04, "end": 2564.04, "word": " same", "probability": 0.908203125}, {"start": 2564.04, "end": 2564.32, "word": " thing.", "probability": 0.83447265625}, {"start": 2564.4, "end": 2564.56, "word": " Come", "probability": 0.44140625}, {"start": 2564.56, "end": 2564.68, "word": " to", "probability": 0.81884765625}, {"start": 2564.68, "end": 2564.78, "word": " the", "probability": 0.463623046875}, {"start": 2564.78, "end": 2565.46, "word": " rectangles", "probability": 0.963134765625}, {"start": 2565.46, "end": 2566.02, "word": " and", "probability": 0.5322265625}, {"start": 2566.02, "end": 2566.18, "word": " say", "probability": 0.6904296875}, {"start": 2566.18, "end": 2566.68, "word": " add", "probability": 0.478515625}, {"start": 2566.68, "end": 2568.02, "word": " and", "probability": 0.446044921875}, {"start": 2568.02, "end": 2568.26, "word": " add", "probability": 0.6162109375}, {"start": 2568.26, "end": 2568.4, "word": " to", "probability": 0.59814453125}, {"start": 2568.4, "end": 2568.46, "word": " the", "probability": 0.89990234375}, {"start": 2568.46, "end": 2568.7, "word": " object", "probability": 0.72900390625}, {"start": 2568.7, "end": 2569.22, "word": " rectangle", "probability": 0.9013671875}, {"start": 2569.22, "end": 2569.38, "word": " that", "probability": 0.779296875}, {"start": 2569.38, "end": 2569.46, "word": " we", "probability": 0.90234375}, {"start": 2569.46, "end": 2569.66, "word": " drew.", "probability": 0.84716796875}], "temperature": 1.0}, {"id": 101, "seek": 259876, "start": 2571.6, "end": 2598.76, "text": " because a clear goal for undo what do we do? you have to rotate on each circle and draw what is in it, right? you have to look at the first circle if you don't have one circle for each circle C in circles say C dot draw G and there is another circle for each rectangle R in rectangles", "tokens": [570, 257, 1850, 3387, 337, 23779, 437, 360, 321, 360, 30, 291, 362, 281, 13121, 322, 1184, 6329, 293, 2642, 437, 307, 294, 309, 11, 558, 30, 291, 362, 281, 574, 412, 264, 700, 6329, 498, 291, 500, 380, 362, 472, 6329, 337, 1184, 6329, 383, 294, 13040, 584, 383, 5893, 2642, 460, 293, 456, 307, 1071, 6329, 337, 1184, 21930, 497, 294, 24077, 904], "avg_logprob": -0.5492424061804106, "compression_ratio": 1.7592592592592593, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2571.6, "end": 2571.88, "word": " because", "probability": 0.1448974609375}, {"start": 2571.88, "end": 2572.22, "word": " a", "probability": 0.2314453125}, {"start": 2572.22, "end": 2572.54, "word": " clear", "probability": 0.88720703125}, {"start": 2572.54, "end": 2573.08, "word": " goal", "probability": 0.452392578125}, {"start": 2573.08, "end": 2573.68, "word": " for", "probability": 0.56640625}, {"start": 2573.68, "end": 2574.1, "word": " undo", "probability": 0.8330078125}, {"start": 2574.1, "end": 2574.64, "word": " what", "probability": 0.37744140625}, {"start": 2574.64, "end": 2574.76, "word": " do", "probability": 0.33740234375}, {"start": 2574.76, "end": 2574.86, "word": " we", "probability": 0.8349609375}, {"start": 2574.86, "end": 2575.06, "word": " do?", "probability": 0.82080078125}, {"start": 2576.0, "end": 2576.6, "word": " you", "probability": 0.35400390625}, {"start": 2576.6, "end": 2576.74, "word": " have", "probability": 0.322265625}, {"start": 2576.74, "end": 2576.82, "word": " to", "probability": 0.9658203125}, {"start": 2576.82, "end": 2577.0, "word": " rotate", "probability": 0.2705078125}, {"start": 2577.0, "end": 2577.18, "word": " on", "probability": 0.29541015625}, {"start": 2577.18, "end": 2577.4, "word": " each", "probability": 0.478515625}, {"start": 2577.4, "end": 2577.8, "word": " circle", "probability": 0.494140625}, {"start": 2577.8, "end": 2578.12, "word": " and", "probability": 0.80712890625}, {"start": 2578.12, "end": 2578.8, "word": " draw", "probability": 0.66748046875}, {"start": 2578.8, "end": 2578.98, "word": " what", "probability": 0.5751953125}, {"start": 2578.98, "end": 2579.02, "word": " is", "probability": 0.50537109375}, {"start": 2579.02, "end": 2579.3, "word": " in", "probability": 0.1983642578125}, {"start": 2579.3, "end": 2579.54, "word": " it,", "probability": 0.76904296875}, {"start": 2579.66, "end": 2579.88, "word": " right?", "probability": 0.71044921875}, {"start": 2580.3, "end": 2580.84, "word": " you", "probability": 0.2235107421875}, {"start": 2580.84, "end": 2581.02, "word": " have", "probability": 0.76611328125}, {"start": 2581.02, "end": 2581.12, "word": " to", "probability": 0.96435546875}, {"start": 2581.12, "end": 2581.38, "word": " look", "probability": 0.1572265625}, {"start": 2581.38, "end": 2581.58, "word": " at", "probability": 0.58349609375}, {"start": 2581.58, "end": 2581.72, "word": " the", "probability": 0.89501953125}, {"start": 2581.72, "end": 2582.3, "word": " first", "probability": 0.83349609375}, {"start": 2582.3, "end": 2582.3, "word": " circle", "probability": 0.7412109375}, {"start": 2582.3, "end": 2582.52, "word": " if", "probability": 0.395751953125}, {"start": 2582.52, "end": 2582.7, "word": " you", "probability": 0.74755859375}, {"start": 2582.7, "end": 2582.72, "word": " don't", "probability": 0.81884765625}, {"start": 2582.72, "end": 2582.92, "word": " have", "probability": 0.92041015625}, {"start": 2582.92, "end": 2583.02, "word": " one", "probability": 0.428955078125}, {"start": 2583.02, "end": 2583.6, "word": " circle", "probability": 0.685546875}, {"start": 2583.6, "end": 2584.54, "word": " for", "probability": 0.77001953125}, {"start": 2584.54, "end": 2584.76, "word": " each", "probability": 0.5263671875}, {"start": 2584.76, "end": 2585.2, "word": " circle", "probability": 0.8369140625}, {"start": 2585.2, "end": 2585.46, "word": " C", "probability": 0.42919921875}, {"start": 2585.46, "end": 2585.74, "word": " in", "probability": 0.30419921875}, {"start": 2585.74, "end": 2586.5, "word": " circles", "probability": 0.7041015625}, {"start": 2586.5, "end": 2587.92, "word": " say", "probability": 0.37890625}, {"start": 2587.92, "end": 2588.28, "word": " C", "probability": 0.61865234375}, {"start": 2588.28, "end": 2588.68, "word": " dot", "probability": 0.41552734375}, {"start": 2588.68, "end": 2590.86, "word": " draw", "probability": 0.77197265625}, {"start": 2590.86, "end": 2591.34, "word": " G", "probability": 0.9091796875}, {"start": 2591.34, "end": 2592.22, "word": " and", "probability": 0.78173828125}, {"start": 2592.22, "end": 2592.38, "word": " there", "probability": 0.8369140625}, {"start": 2592.38, "end": 2592.38, "word": " is", "probability": 0.83837890625}, {"start": 2592.38, "end": 2593.0, "word": " another", "probability": 0.8427734375}, {"start": 2593.0, "end": 2593.0, "word": " circle", "probability": 0.51611328125}, {"start": 2593.0, "end": 2593.6, "word": " for", "probability": 0.85888671875}, {"start": 2593.6, "end": 2594.16, "word": " each", "probability": 0.77783203125}, {"start": 2594.16, "end": 2595.64, "word": " rectangle", "probability": 0.8623046875}, {"start": 2595.64, "end": 2596.76, "word": " R", "probability": 0.95068359375}, {"start": 2596.76, "end": 2597.9, "word": " in", "probability": 0.4521484375}, {"start": 2597.9, "end": 2598.76, "word": " rectangles", "probability": 0.93408203125}], "temperature": 1.0}, {"id": 102, "seek": 262691, "start": 2600.79, "end": 2626.91, "text": " Go and tell him C or R dot draw Right or wrong guys? This is the undo Because we haven't finished yet Now, we have prepared this gate for the draw manager But don't forget that the draw manager needs to be used from where? From the UI It should be in the UI in every button that we made", "tokens": [1037, 293, 980, 796, 383, 420, 497, 5893, 2642, 1779, 420, 2085, 1074, 30, 639, 307, 264, 23779, 1436, 321, 2378, 380, 4335, 1939, 823, 11, 321, 362, 4927, 341, 8539, 337, 264, 2642, 6598, 583, 500, 380, 2870, 300, 264, 2642, 6598, 2203, 281, 312, 1143, 490, 689, 30, 3358, 264, 15682, 467, 820, 312, 294, 264, 15682, 294, 633, 2960, 300, 321, 1027], "avg_logprob": -0.5099431899460879, "compression_ratio": 1.5026178010471205, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 2600.79, "end": 2601.09, "word": " Go", "probability": 0.2330322265625}, {"start": 2601.09, "end": 2601.19, "word": " and", "probability": 0.5537109375}, {"start": 2601.19, "end": 2601.31, "word": " tell", "probability": 0.41064453125}, {"start": 2601.31, "end": 2601.41, "word": " him", "probability": 0.57275390625}, {"start": 2601.41, "end": 2601.67, "word": " C", "probability": 0.37939453125}, {"start": 2601.67, "end": 2602.33, "word": " or", "probability": 0.3310546875}, {"start": 2602.33, "end": 2602.81, "word": " R", "probability": 0.96484375}, {"start": 2602.81, "end": 2604.65, "word": " dot", "probability": 0.7158203125}, {"start": 2604.65, "end": 2605.01, "word": " draw", "probability": 0.517578125}, {"start": 2605.01, "end": 2608.63, "word": " Right", "probability": 0.25244140625}, {"start": 2608.63, "end": 2608.85, "word": " or", "probability": 0.91943359375}, {"start": 2608.85, "end": 2608.87, "word": " wrong", "probability": 0.52392578125}, {"start": 2608.87, "end": 2609.21, "word": " guys?", "probability": 0.55029296875}, {"start": 2609.37, "end": 2609.89, "word": " This", "probability": 0.61083984375}, {"start": 2609.89, "end": 2609.97, "word": " is", "probability": 0.93017578125}, {"start": 2609.97, "end": 2610.01, "word": " the", "probability": 0.395751953125}, {"start": 2610.01, "end": 2610.27, "word": " undo", "probability": 0.908203125}, {"start": 2610.27, "end": 2613.05, "word": " Because", "probability": 0.50048828125}, {"start": 2613.05, "end": 2613.27, "word": " we", "probability": 0.8974609375}, {"start": 2613.27, "end": 2613.35, "word": " haven't", "probability": 0.6396484375}, {"start": 2613.35, "end": 2613.65, "word": " finished", "probability": 0.61474609375}, {"start": 2613.65, "end": 2614.59, "word": " yet", "probability": 0.65234375}, {"start": 2614.59, "end": 2615.71, "word": " Now,", "probability": 0.343505859375}, {"start": 2616.07, "end": 2616.37, "word": " we", "probability": 0.72607421875}, {"start": 2616.37, "end": 2617.27, "word": " have", "probability": 0.484375}, {"start": 2617.27, "end": 2617.63, "word": " prepared", "probability": 0.8056640625}, {"start": 2617.63, "end": 2617.83, "word": " this", "probability": 0.7158203125}, {"start": 2617.83, "end": 2618.01, "word": " gate", "probability": 0.86767578125}, {"start": 2618.01, "end": 2618.15, "word": " for", "probability": 0.78857421875}, {"start": 2618.15, "end": 2618.21, "word": " the", "probability": 0.82421875}, {"start": 2618.21, "end": 2618.35, "word": " draw", "probability": 0.6318359375}, {"start": 2618.35, "end": 2618.69, "word": " manager", "probability": 0.9287109375}, {"start": 2618.69, "end": 2619.53, "word": " But", "probability": 0.74462890625}, {"start": 2619.53, "end": 2619.67, "word": " don't", "probability": 0.80029296875}, {"start": 2619.67, "end": 2620.05, "word": " forget", "probability": 0.91796875}, {"start": 2620.05, "end": 2620.25, "word": " that", "probability": 0.8212890625}, {"start": 2620.25, "end": 2620.37, "word": " the", "probability": 0.783203125}, {"start": 2620.37, "end": 2620.53, "word": " draw", "probability": 0.9033203125}, {"start": 2620.53, "end": 2620.85, "word": " manager", "probability": 0.9345703125}, {"start": 2620.85, "end": 2621.11, "word": " needs", "probability": 0.2130126953125}, {"start": 2621.11, "end": 2621.11, "word": " to", "probability": 0.95556640625}, {"start": 2621.11, "end": 2621.33, "word": " be", "probability": 0.52490234375}, {"start": 2621.33, "end": 2621.57, "word": " used", "probability": 0.234130859375}, {"start": 2621.57, "end": 2621.91, "word": " from", "probability": 0.72802734375}, {"start": 2621.91, "end": 2622.25, "word": " where?", "probability": 0.669921875}, {"start": 2622.89, "end": 2623.25, "word": " From", "probability": 0.76904296875}, {"start": 2623.25, "end": 2623.37, "word": " the", "probability": 0.82080078125}, {"start": 2623.37, "end": 2623.69, "word": " UI", "probability": 0.9609375}, {"start": 2623.69, "end": 2624.31, "word": " It", "probability": 0.2393798828125}, {"start": 2624.31, "end": 2624.39, "word": " should", "probability": 0.31396484375}, {"start": 2624.39, "end": 2624.45, "word": " be", "probability": 0.70458984375}, {"start": 2624.45, "end": 2624.57, "word": " in", "probability": 0.7626953125}, {"start": 2624.57, "end": 2624.65, "word": " the", "probability": 0.72216796875}, {"start": 2624.65, "end": 2625.03, "word": " UI", "probability": 0.9736328125}, {"start": 2625.03, "end": 2625.19, "word": " in", "probability": 0.417724609375}, {"start": 2625.19, "end": 2625.45, "word": " every", "probability": 0.57177734375}, {"start": 2625.45, "end": 2625.77, "word": " button", "probability": 0.6796875}, {"start": 2625.77, "end": 2626.71, "word": " that", "probability": 0.36376953125}, {"start": 2626.71, "end": 2626.71, "word": " we", "probability": 0.845703125}, {"start": 2626.71, "end": 2626.91, "word": " made", "probability": 0.1317138671875}], "temperature": 1.0}, {"id": 103, "seek": 264285, "start": 2628.11, "end": 2642.85, "text": " When I click on undo, it goes to the manager and tells him to undo. When I click on clear, it goes to the manager and tells him to clear. When I tell him to draw a rectangle, it goes to the manager and tells him to draw a rectangle. When I tell him to draw a circle, it goes to the manager and tells him to draw a circle. Now we are ready to start.", "tokens": [1133, 286, 2052, 322, 23779, 11, 309, 1709, 281, 264, 6598, 293, 5112, 796, 281, 23779, 13, 1133, 286, 2052, 322, 1850, 11, 309, 1709, 281, 264, 6598, 293, 5112, 796, 281, 1850, 13, 1133, 286, 980, 796, 281, 2642, 257, 21930, 11, 309, 1709, 281, 264, 6598, 293, 5112, 796, 281, 2642, 257, 21930, 13, 1133, 286, 980, 796, 281, 2642, 257, 6329, 11, 309, 1709, 281, 264, 6598, 293, 5112, 796, 281, 2642, 257, 6329, 13, 823, 321, 366, 1919, 281, 722, 13], "avg_logprob": -0.2979651058829108, "compression_ratio": 2.7265625, "no_speech_prob": 2.3245811462402344e-06, "words": [{"start": 2628.1099999999997, "end": 2628.47, "word": " When", "probability": 0.212890625}, {"start": 2628.47, "end": 2628.83, "word": " I", "probability": 0.61767578125}, {"start": 2628.83, "end": 2629.03, "word": " click", "probability": 0.3798828125}, {"start": 2629.03, "end": 2629.17, "word": " on", "probability": 0.7158203125}, {"start": 2629.17, "end": 2629.47, "word": " undo,", "probability": 0.68017578125}, {"start": 2629.61, "end": 2629.71, "word": " it", "probability": 0.65087890625}, {"start": 2629.71, "end": 2629.87, "word": " goes", "probability": 0.40185546875}, {"start": 2629.87, "end": 2630.05, "word": " to", "probability": 0.9111328125}, {"start": 2630.05, "end": 2630.19, "word": " the", "probability": 0.58154296875}, {"start": 2630.19, "end": 2630.51, "word": " manager", "probability": 0.8662109375}, {"start": 2630.51, "end": 2630.69, "word": " and", "probability": 0.74951171875}, {"start": 2630.69, "end": 2630.89, "word": " tells", "probability": 0.258544921875}, {"start": 2630.89, "end": 2631.13, "word": " him", "probability": 0.81689453125}, {"start": 2631.13, "end": 2631.71, "word": " to", "probability": 0.81494140625}, {"start": 2631.71, "end": 2631.93, "word": " undo.", "probability": 0.828125}, {"start": 2632.37, "end": 2632.69, "word": " When", "probability": 0.5732421875}, {"start": 2632.69, "end": 2632.83, "word": " I", "probability": 0.943359375}, {"start": 2632.83, "end": 2633.03, "word": " click", "probability": 0.80517578125}, {"start": 2633.03, "end": 2633.25, "word": " on", "probability": 0.87939453125}, {"start": 2633.25, "end": 2634.21, "word": " clear,", "probability": 0.85009765625}, {"start": 2634.37, "end": 2634.45, "word": " it", "probability": 0.85205078125}, {"start": 2634.45, "end": 2634.55, "word": " goes", "probability": 0.8505859375}, {"start": 2634.55, "end": 2634.67, "word": " to", "probability": 0.93310546875}, {"start": 2634.67, "end": 2634.77, "word": " the", "probability": 0.8896484375}, {"start": 2634.77, "end": 2634.99, "word": " manager", "probability": 0.9443359375}, {"start": 2634.99, "end": 2635.17, "word": " and", "probability": 0.8583984375}, {"start": 2635.17, "end": 2635.27, "word": " tells", "probability": 0.468505859375}, {"start": 2635.27, "end": 2635.43, "word": " him", "probability": 0.9052734375}, {"start": 2635.43, "end": 2635.45, "word": " to", "probability": 0.93994140625}, {"start": 2635.45, "end": 2635.73, "word": " clear.", "probability": 0.82421875}, {"start": 2636.21, "end": 2636.49, "word": " When", "probability": 0.81298828125}, {"start": 2636.49, "end": 2636.61, "word": " I", "probability": 0.9599609375}, {"start": 2636.61, "end": 2636.67, "word": " tell", "probability": 0.316162109375}, {"start": 2636.67, "end": 2636.79, "word": " him", "probability": 0.5849609375}, {"start": 2636.79, "end": 2636.87, "word": " to", "probability": 0.93359375}, {"start": 2636.87, "end": 2637.03, "word": " draw", "probability": 0.8876953125}, {"start": 2637.03, "end": 2637.23, "word": " a", "probability": 0.91064453125}, {"start": 2637.23, "end": 2637.59, "word": " rectangle,", "probability": 0.9384765625}, {"start": 2637.73, "end": 2637.85, "word": " it", "probability": 0.845703125}, {"start": 2637.85, "end": 2637.87, "word": " goes", "probability": 0.428955078125}, {"start": 2637.87, "end": 2638.17, "word": " to", "probability": 0.580078125}, {"start": 2638.17, "end": 2638.21, "word": " the", "probability": 0.6064453125}, {"start": 2638.21, "end": 2638.21, "word": " manager", "probability": 0.7646484375}, {"start": 2638.21, "end": 2638.21, "word": " and", "probability": 0.83154296875}, {"start": 2638.21, "end": 2638.21, "word": " tells", "probability": 0.55078125}, {"start": 2638.21, "end": 2638.21, "word": " him", "probability": 0.89990234375}, {"start": 2638.21, "end": 2638.21, "word": " to", "probability": 0.955078125}, {"start": 2638.21, "end": 2638.33, "word": " draw", "probability": 0.9208984375}, {"start": 2638.33, "end": 2638.43, "word": " a", "probability": 0.89697265625}, {"start": 2638.43, "end": 2638.77, "word": " rectangle.", "probability": 0.9248046875}, {"start": 2639.09, "end": 2639.25, "word": " When", "probability": 0.6533203125}, {"start": 2639.25, "end": 2639.25, "word": " I", "probability": 0.9765625}, {"start": 2639.25, "end": 2639.25, "word": " tell", "probability": 0.82177734375}, {"start": 2639.25, "end": 2639.25, "word": " him", "probability": 0.7509765625}, {"start": 2639.25, "end": 2639.25, "word": " to", "probability": 0.96337890625}, {"start": 2639.25, "end": 2639.39, "word": " draw", "probability": 0.916015625}, {"start": 2639.39, "end": 2639.59, "word": " a", "probability": 0.978515625}, {"start": 2639.59, "end": 2639.79, "word": " circle,", "probability": 0.90478515625}, {"start": 2639.87, "end": 2639.95, "word": " it", "probability": 0.87890625}, {"start": 2639.95, "end": 2640.05, "word": " goes", "probability": 0.564453125}, {"start": 2640.05, "end": 2640.45, "word": " to", "probability": 0.93505859375}, {"start": 2640.45, "end": 2640.45, "word": " the", "probability": 0.888671875}, {"start": 2640.45, "end": 2640.45, "word": " manager", "probability": 0.91748046875}, {"start": 2640.45, "end": 2640.45, "word": " and", "probability": 0.927734375}, {"start": 2640.45, "end": 2640.45, "word": " tells", "probability": 0.7998046875}, {"start": 2640.45, "end": 2640.45, "word": " him", "probability": 0.91796875}, {"start": 2640.45, "end": 2640.45, "word": " to", "probability": 0.96630859375}, {"start": 2640.45, "end": 2640.45, "word": " draw", "probability": 0.93115234375}, {"start": 2640.45, "end": 2641.15, "word": " a", "probability": 0.970703125}, {"start": 2641.15, "end": 2641.39, "word": " circle.", "probability": 0.95703125}, {"start": 2641.69, "end": 2641.91, "word": " Now", "probability": 0.329833984375}, {"start": 2641.91, "end": 2642.13, "word": " we", "probability": 0.62890625}, {"start": 2642.13, "end": 2642.19, "word": " are", "probability": 0.75244140625}, {"start": 2642.19, "end": 2642.43, "word": " ready", "probability": 0.87060546875}, {"start": 2642.43, "end": 2642.59, "word": " to", "probability": 0.958984375}, {"start": 2642.59, "end": 2642.85, "word": " start.", "probability": 0.362060546875}], "temperature": 1.0}, {"id": 104, "seek": 267703, "start": 2649.27, "end": 2677.03, "text": " because this circle is drawn in circles drawn in rectangles clear and this H is drawn in rectangles still we have not reached the point that we want to reach so my question is when we do the solid circle what should we do? no, we don't have to read the new list, do you know why? because the solid circle is what? circle but we have to add a value called draw", "tokens": [570, 341, 6329, 307, 10117, 294, 13040, 10117, 294, 24077, 904, 1850, 293, 341, 389, 307, 10117, 294, 24077, 904, 920, 321, 362, 406, 6488, 264, 935, 300, 321, 528, 281, 2524, 370, 452, 1168, 307, 562, 321, 360, 264, 5100, 6329, 437, 820, 321, 360, 30, 572, 11, 321, 500, 380, 362, 281, 1401, 264, 777, 1329, 11, 360, 291, 458, 983, 30, 570, 264, 5100, 6329, 307, 437, 30, 6329, 457, 321, 362, 281, 909, 257, 2158, 1219, 2642], "avg_logprob": -0.6391005857688624, "compression_ratio": 1.894736842105263, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 2649.27, "end": 2649.59, "word": " because", "probability": 0.144775390625}, {"start": 2649.59, "end": 2649.81, "word": " this", "probability": 0.7138671875}, {"start": 2649.81, "end": 2650.21, "word": " circle", "probability": 0.93603515625}, {"start": 2650.21, "end": 2650.39, "word": " is", "probability": 0.45703125}, {"start": 2650.39, "end": 2650.51, "word": " drawn", "probability": 0.46630859375}, {"start": 2650.51, "end": 2650.63, "word": " in", "probability": 0.355224609375}, {"start": 2650.63, "end": 2650.97, "word": " circles", "probability": 0.56201171875}, {"start": 2650.97, "end": 2651.65, "word": " drawn", "probability": 0.253662109375}, {"start": 2651.65, "end": 2651.77, "word": " in", "probability": 0.708984375}, {"start": 2651.77, "end": 2652.47, "word": " rectangles", "probability": 0.912353515625}, {"start": 2652.47, "end": 2653.95, "word": " clear", "probability": 0.2457275390625}, {"start": 2653.95, "end": 2654.79, "word": " and", "probability": 0.74365234375}, {"start": 2654.79, "end": 2654.93, "word": " this", "probability": 0.359619140625}, {"start": 2654.93, "end": 2655.31, "word": " H", "probability": 0.140869140625}, {"start": 2655.31, "end": 2655.85, "word": " is", "probability": 0.380126953125}, {"start": 2655.85, "end": 2655.99, "word": " drawn", "probability": 0.2127685546875}, {"start": 2655.99, "end": 2656.25, "word": " in", "probability": 0.386474609375}, {"start": 2656.25, "end": 2657.77, "word": " rectangles", "probability": 0.583251953125}, {"start": 2657.77, "end": 2658.73, "word": " still", "probability": 0.12432861328125}, {"start": 2658.73, "end": 2660.07, "word": " we", "probability": 0.105712890625}, {"start": 2660.07, "end": 2660.17, "word": " have", "probability": 0.2451171875}, {"start": 2660.17, "end": 2660.17, "word": " not", "probability": 0.8828125}, {"start": 2660.17, "end": 2660.47, "word": " reached", "probability": 0.7001953125}, {"start": 2660.47, "end": 2661.39, "word": " the", "probability": 0.301513671875}, {"start": 2661.39, "end": 2662.25, "word": " point", "probability": 0.61279296875}, {"start": 2662.25, "end": 2662.37, "word": " that", "probability": 0.28076171875}, {"start": 2662.37, "end": 2662.49, "word": " we", "probability": 0.78955078125}, {"start": 2662.49, "end": 2662.63, "word": " want", "probability": 0.53076171875}, {"start": 2662.63, "end": 2662.63, "word": " to", "probability": 0.468017578125}, {"start": 2662.63, "end": 2663.29, "word": " reach", "probability": 0.658203125}, {"start": 2663.29, "end": 2663.65, "word": " so", "probability": 0.402587890625}, {"start": 2663.65, "end": 2663.85, "word": " my", "probability": 0.49755859375}, {"start": 2663.85, "end": 2664.01, "word": " question", "probability": 0.92626953125}, {"start": 2664.01, "end": 2664.39, "word": " is", "probability": 0.70751953125}, {"start": 2664.39, "end": 2664.71, "word": " when", "probability": 0.476806640625}, {"start": 2664.71, "end": 2664.97, "word": " we", "probability": 0.7265625}, {"start": 2664.97, "end": 2664.97, "word": " do", "probability": 0.28076171875}, {"start": 2664.97, "end": 2665.15, "word": " the", "probability": 0.6455078125}, {"start": 2665.15, "end": 2665.31, "word": " solid", "probability": 0.92529296875}, {"start": 2665.31, "end": 2665.69, "word": " circle", "probability": 0.95556640625}, {"start": 2665.69, "end": 2665.89, "word": " what", "probability": 0.73681640625}, {"start": 2665.89, "end": 2666.05, "word": " should", "probability": 0.7333984375}, {"start": 2666.05, "end": 2666.21, "word": " we", "probability": 0.62841796875}, {"start": 2666.21, "end": 2666.43, "word": " do?", "probability": 0.96240234375}, {"start": 2668.77, "end": 2669.25, "word": " no,", "probability": 0.271728515625}, {"start": 2669.49, "end": 2669.49, "word": " we", "probability": 0.6513671875}, {"start": 2669.49, "end": 2669.51, "word": " don't", "probability": 0.7607421875}, {"start": 2669.51, "end": 2669.65, "word": " have", "probability": 0.732421875}, {"start": 2669.65, "end": 2669.85, "word": " to", "probability": 0.96923828125}, {"start": 2669.85, "end": 2669.99, "word": " read", "probability": 0.6767578125}, {"start": 2669.99, "end": 2670.13, "word": " the", "probability": 0.67529296875}, {"start": 2670.13, "end": 2670.37, "word": " new", "probability": 0.326416015625}, {"start": 2670.37, "end": 2670.37, "word": " list,", "probability": 0.203125}, {"start": 2670.47, "end": 2670.57, "word": " do", "probability": 0.402587890625}, {"start": 2670.57, "end": 2670.67, "word": " you", "probability": 0.9736328125}, {"start": 2670.67, "end": 2670.67, "word": " know", "probability": 0.89404296875}, {"start": 2670.67, "end": 2670.95, "word": " why?", "probability": 0.9326171875}, {"start": 2671.65, "end": 2671.95, "word": " because", "probability": 0.88232421875}, {"start": 2671.95, "end": 2672.11, "word": " the", "probability": 0.59912109375}, {"start": 2672.11, "end": 2672.29, "word": " solid", "probability": 0.951171875}, {"start": 2672.29, "end": 2672.65, "word": " circle", "probability": 0.94384765625}, {"start": 2672.65, "end": 2672.81, "word": " is", "probability": 0.8525390625}, {"start": 2672.81, "end": 2672.97, "word": " what?", "probability": 0.406005859375}, {"start": 2673.41, "end": 2673.89, "word": " circle", "probability": 0.396484375}, {"start": 2673.89, "end": 2674.45, "word": " but", "probability": 0.67236328125}, {"start": 2674.45, "end": 2674.63, "word": " we", "probability": 0.68798828125}, {"start": 2674.63, "end": 2674.69, "word": " have", "probability": 0.5087890625}, {"start": 2674.69, "end": 2674.95, "word": " to", "probability": 0.96875}, {"start": 2674.95, "end": 2675.25, "word": " add", "probability": 0.88623046875}, {"start": 2675.25, "end": 2675.73, "word": " a", "probability": 0.63916015625}, {"start": 2675.73, "end": 2675.73, "word": " value", "probability": 0.1888427734375}, {"start": 2675.73, "end": 2676.73, "word": " called", "probability": 0.377197265625}, {"start": 2676.73, "end": 2677.03, "word": " draw", "probability": 0.5166015625}], "temperature": 1.0}, {"id": 105, "seek": 270481, "start": 2678.31, "end": 2704.81, "text": " Or not even necessary, it draws a circle and it moves So this is the draw app In the end, the solid circle is a circle, right guys? So I can go to the manager and tell him to draw a circle and send it to the solid circle So the solid circle does not have any problem, it works on what exists, it makes the solid circle", "tokens": [1610, 406, 754, 4818, 11, 309, 20045, 257, 6329, 293, 309, 6067, 407, 341, 307, 264, 2642, 724, 682, 264, 917, 11, 264, 5100, 6329, 307, 257, 6329, 11, 558, 1074, 30, 407, 286, 393, 352, 281, 264, 6598, 293, 980, 796, 281, 2642, 257, 6329, 293, 2845, 309, 281, 264, 5100, 6329, 407, 264, 5100, 6329, 775, 406, 362, 604, 1154, 11, 309, 1985, 322, 437, 8198, 11, 309, 1669, 264, 5100, 6329], "avg_logprob": -0.5095833365122477, "compression_ratio": 1.7921348314606742, "no_speech_prob": 2.2709369659423828e-05, "words": [{"start": 2678.31, "end": 2678.55, "word": " Or", "probability": 0.2027587890625}, {"start": 2678.55, "end": 2678.85, "word": " not", "probability": 0.23291015625}, {"start": 2678.85, "end": 2678.87, "word": " even", "probability": 0.44580078125}, {"start": 2678.87, "end": 2679.31, "word": " necessary,", "probability": 0.67919921875}, {"start": 2679.39, "end": 2679.67, "word": " it", "probability": 0.712890625}, {"start": 2679.67, "end": 2679.93, "word": " draws", "probability": 0.31689453125}, {"start": 2679.93, "end": 2680.11, "word": " a", "probability": 0.697265625}, {"start": 2680.11, "end": 2680.33, "word": " circle", "probability": 0.95751953125}, {"start": 2680.33, "end": 2680.45, "word": " and", "probability": 0.8154296875}, {"start": 2680.45, "end": 2680.53, "word": " it", "probability": 0.2293701171875}, {"start": 2680.53, "end": 2680.69, "word": " moves", "probability": 0.56201171875}, {"start": 2680.69, "end": 2681.45, "word": " So", "probability": 0.31884765625}, {"start": 2681.45, "end": 2681.63, "word": " this", "probability": 0.63330078125}, {"start": 2681.63, "end": 2681.67, "word": " is", "probability": 0.83837890625}, {"start": 2681.67, "end": 2681.77, "word": " the", "probability": 0.62646484375}, {"start": 2681.77, "end": 2681.91, "word": " draw", "probability": 0.54931640625}, {"start": 2681.91, "end": 2682.35, "word": " app", "probability": 0.37158203125}, {"start": 2682.35, "end": 2683.83, "word": " In", "probability": 0.08367919921875}, {"start": 2683.83, "end": 2684.21, "word": " the", "probability": 0.8369140625}, {"start": 2684.21, "end": 2684.53, "word": " end,", "probability": 0.8515625}, {"start": 2686.31, "end": 2686.41, "word": " the", "probability": 0.525390625}, {"start": 2686.41, "end": 2686.63, "word": " solid", "probability": 0.8603515625}, {"start": 2686.63, "end": 2686.97, "word": " circle", "probability": 0.94482421875}, {"start": 2686.97, "end": 2687.11, "word": " is", "probability": 0.5068359375}, {"start": 2687.11, "end": 2687.17, "word": " a", "probability": 0.22607421875}, {"start": 2687.17, "end": 2687.71, "word": " circle,", "probability": 0.93310546875}, {"start": 2687.83, "end": 2688.05, "word": " right", "probability": 0.5439453125}, {"start": 2688.05, "end": 2688.51, "word": " guys?", "probability": 0.30908203125}, {"start": 2689.07, "end": 2689.43, "word": " So", "probability": 0.72265625}, {"start": 2689.43, "end": 2689.55, "word": " I", "probability": 0.869140625}, {"start": 2689.55, "end": 2689.73, "word": " can", "probability": 0.8681640625}, {"start": 2689.73, "end": 2689.87, "word": " go", "probability": 0.88720703125}, {"start": 2689.87, "end": 2690.01, "word": " to", "probability": 0.9150390625}, {"start": 2690.01, "end": 2690.09, "word": " the", "probability": 0.70458984375}, {"start": 2690.09, "end": 2690.35, "word": " manager", "probability": 0.94482421875}, {"start": 2690.35, "end": 2690.57, "word": " and", "probability": 0.888671875}, {"start": 2690.57, "end": 2690.71, "word": " tell", "probability": 0.385986328125}, {"start": 2690.71, "end": 2690.81, "word": " him", "probability": 0.7587890625}, {"start": 2690.81, "end": 2690.85, "word": " to", "probability": 0.7451171875}, {"start": 2690.85, "end": 2691.03, "word": " draw", "probability": 0.81787109375}, {"start": 2691.03, "end": 2691.77, "word": " a", "probability": 0.705078125}, {"start": 2691.77, "end": 2692.09, "word": " circle", "probability": 0.96435546875}, {"start": 2692.09, "end": 2692.21, "word": " and", "probability": 0.78466796875}, {"start": 2692.21, "end": 2692.43, "word": " send", "probability": 0.6357421875}, {"start": 2692.43, "end": 2692.53, "word": " it", "probability": 0.38525390625}, {"start": 2692.53, "end": 2692.59, "word": " to", "probability": 0.84033203125}, {"start": 2692.59, "end": 2692.63, "word": " the", "probability": 0.58837890625}, {"start": 2692.63, "end": 2692.81, "word": " solid", "probability": 0.9443359375}, {"start": 2692.81, "end": 2693.21, "word": " circle", "probability": 0.95849609375}, {"start": 2693.21, "end": 2699.79, "word": " So", "probability": 0.419921875}, {"start": 2699.79, "end": 2699.97, "word": " the", "probability": 0.68017578125}, {"start": 2699.97, "end": 2700.13, "word": " solid", "probability": 0.96484375}, {"start": 2700.13, "end": 2700.49, "word": " circle", "probability": 0.95166015625}, {"start": 2700.49, "end": 2700.71, "word": " does", "probability": 0.44287109375}, {"start": 2700.71, "end": 2700.71, "word": " not", "probability": 0.921875}, {"start": 2700.71, "end": 2701.15, "word": " have", "probability": 0.888671875}, {"start": 2701.15, "end": 2701.99, "word": " any", "probability": 0.8486328125}, {"start": 2701.99, "end": 2702.23, "word": " problem,", "probability": 0.6328125}, {"start": 2702.29, "end": 2702.41, "word": " it", "probability": 0.73095703125}, {"start": 2702.41, "end": 2702.59, "word": " works", "probability": 0.364013671875}, {"start": 2702.59, "end": 2702.81, "word": " on", "probability": 0.65966796875}, {"start": 2702.81, "end": 2703.47, "word": " what", "probability": 0.360107421875}, {"start": 2703.47, "end": 2703.77, "word": " exists,", "probability": 0.25048828125}, {"start": 2703.83, "end": 2703.93, "word": " it", "probability": 0.64208984375}, {"start": 2703.93, "end": 2704.13, "word": " makes", "probability": 0.37841796875}, {"start": 2704.13, "end": 2704.29, "word": " the", "probability": 0.73388671875}, {"start": 2704.29, "end": 2704.45, "word": " solid", "probability": 0.9765625}, {"start": 2704.45, "end": 2704.81, "word": " circle", "probability": 0.9599609375}], "temperature": 1.0}, {"id": 106, "seek": 272904, "start": 2705.94, "end": 2729.04, "text": " and this one is clear and this one is undo but there is a mistake in the colors ok now where is the problem? the problem is in the following if you want to add a new shape what do you have to do to add it? look at what you have to do when you add a new shape first you have to create a class", "tokens": [293, 341, 472, 307, 1850, 293, 341, 472, 307, 23779, 457, 456, 307, 257, 6146, 294, 264, 4577, 3133, 586, 689, 307, 264, 1154, 30, 264, 1154, 307, 294, 264, 3480, 498, 291, 528, 281, 909, 257, 777, 3909, 437, 360, 291, 362, 281, 360, 281, 909, 309, 30, 574, 412, 437, 291, 362, 281, 360, 562, 291, 909, 257, 777, 3909, 700, 291, 362, 281, 1884, 257, 1508], "avg_logprob": -0.4834821377481733, "compression_ratio": 1.9210526315789473, "no_speech_prob": 8.404254913330078e-06, "words": [{"start": 2705.94, "end": 2706.26, "word": " and", "probability": 0.08355712890625}, {"start": 2706.26, "end": 2706.4, "word": " this", "probability": 0.70361328125}, {"start": 2706.4, "end": 2706.42, "word": " one", "probability": 0.329833984375}, {"start": 2706.42, "end": 2706.46, "word": " is", "probability": 0.79638671875}, {"start": 2706.46, "end": 2706.84, "word": " clear", "probability": 0.77294921875}, {"start": 2706.84, "end": 2707.3, "word": " and", "probability": 0.81591796875}, {"start": 2707.3, "end": 2707.4, "word": " this", "probability": 0.85791015625}, {"start": 2707.4, "end": 2707.4, "word": " one", "probability": 0.79052734375}, {"start": 2707.4, "end": 2707.44, "word": " is", "probability": 0.92431640625}, {"start": 2707.44, "end": 2707.78, "word": " undo", "probability": 0.7060546875}, {"start": 2707.78, "end": 2709.18, "word": " but", "probability": 0.207763671875}, {"start": 2709.18, "end": 2709.96, "word": " there", "probability": 0.408447265625}, {"start": 2709.96, "end": 2709.96, "word": " is", "probability": 0.595703125}, {"start": 2709.96, "end": 2710.02, "word": " a", "probability": 0.485595703125}, {"start": 2710.02, "end": 2710.2, "word": " mistake", "probability": 0.2283935546875}, {"start": 2710.2, "end": 2710.42, "word": " in", "probability": 0.61962890625}, {"start": 2710.42, "end": 2710.54, "word": " the", "probability": 0.42236328125}, {"start": 2710.54, "end": 2710.92, "word": " colors", "probability": 0.4638671875}, {"start": 2710.92, "end": 2716.52, "word": " ok", "probability": 0.07965087890625}, {"start": 2716.52, "end": 2718.84, "word": " now", "probability": 0.5830078125}, {"start": 2718.84, "end": 2719.3, "word": " where", "probability": 0.7294921875}, {"start": 2719.3, "end": 2719.4, "word": " is", "probability": 0.873046875}, {"start": 2719.4, "end": 2719.46, "word": " the", "probability": 0.90185546875}, {"start": 2719.46, "end": 2719.72, "word": " problem?", "probability": 0.8193359375}, {"start": 2720.4, "end": 2720.72, "word": " the", "probability": 0.607421875}, {"start": 2720.72, "end": 2720.96, "word": " problem", "probability": 0.8701171875}, {"start": 2720.96, "end": 2721.32, "word": " is", "probability": 0.85693359375}, {"start": 2721.32, "end": 2721.38, "word": " in", "probability": 0.498779296875}, {"start": 2721.38, "end": 2721.52, "word": " the", "probability": 0.72998046875}, {"start": 2721.52, "end": 2721.72, "word": " following", "probability": 0.7509765625}, {"start": 2721.72, "end": 2721.94, "word": " if", "probability": 0.61865234375}, {"start": 2721.94, "end": 2722.14, "word": " you", "probability": 0.9619140625}, {"start": 2722.14, "end": 2722.2, "word": " want", "probability": 0.81005859375}, {"start": 2722.2, "end": 2722.2, "word": " to", "probability": 0.9638671875}, {"start": 2722.2, "end": 2722.36, "word": " add", "probability": 0.8623046875}, {"start": 2722.36, "end": 2722.46, "word": " a", "probability": 0.90478515625}, {"start": 2722.46, "end": 2722.94, "word": " new", "probability": 0.88720703125}, {"start": 2722.94, "end": 2723.0, "word": " shape", "probability": 0.65771484375}, {"start": 2723.0, "end": 2724.18, "word": " what", "probability": 0.7138671875}, {"start": 2724.18, "end": 2724.28, "word": " do", "probability": 0.61669921875}, {"start": 2724.28, "end": 2724.4, "word": " you", "probability": 0.96435546875}, {"start": 2724.4, "end": 2724.4, "word": " have", "probability": 0.497314453125}, {"start": 2724.4, "end": 2724.46, "word": " to", "probability": 0.97119140625}, {"start": 2724.46, "end": 2724.76, "word": " do", "probability": 0.962890625}, {"start": 2724.76, "end": 2725.2, "word": " to", "probability": 0.41650390625}, {"start": 2725.2, "end": 2725.46, "word": " add", "probability": 0.7412109375}, {"start": 2725.46, "end": 2725.6, "word": " it?", "probability": 0.27783203125}, {"start": 2725.6, "end": 2725.62, "word": " look", "probability": 0.376708984375}, {"start": 2725.62, "end": 2725.72, "word": " at", "probability": 0.446044921875}, {"start": 2725.72, "end": 2725.82, "word": " what", "probability": 0.7421875}, {"start": 2725.82, "end": 2725.88, "word": " you", "probability": 0.7529296875}, {"start": 2725.88, "end": 2725.96, "word": " have", "probability": 0.8193359375}, {"start": 2725.96, "end": 2726.04, "word": " to", "probability": 0.96875}, {"start": 2726.04, "end": 2726.24, "word": " do", "probability": 0.958984375}, {"start": 2726.24, "end": 2726.36, "word": " when", "probability": 0.666015625}, {"start": 2726.36, "end": 2726.48, "word": " you", "probability": 0.88671875}, {"start": 2726.48, "end": 2726.62, "word": " add", "probability": 0.449951171875}, {"start": 2726.62, "end": 2726.72, "word": " a", "probability": 0.9267578125}, {"start": 2726.72, "end": 2727.1, "word": " new", "probability": 0.83154296875}, {"start": 2727.1, "end": 2727.1, "word": " shape", "probability": 0.90625}, {"start": 2727.1, "end": 2727.88, "word": " first", "probability": 0.63525390625}, {"start": 2727.88, "end": 2728.18, "word": " you", "probability": 0.52587890625}, {"start": 2728.18, "end": 2728.24, "word": " have", "probability": 0.74267578125}, {"start": 2728.24, "end": 2728.4, "word": " to", "probability": 0.966796875}, {"start": 2728.4, "end": 2728.62, "word": " create", "probability": 0.397705078125}, {"start": 2728.62, "end": 2728.7, "word": " a", "probability": 0.95263671875}, {"start": 2728.7, "end": 2729.04, "word": " class", "probability": 0.9560546875}], "temperature": 1.0}, {"id": 107, "seek": 275613, "start": 2731.27, "end": 2756.13, "text": "and you use the draw method to draw the shape. Then you add a button to the UI. And here in the draw manager, you use a method called drawMethodTriangle. And you add a new method to it. And you create a new loop in the undo function. So that Erzy can draw the shapes. All of this you have to do if you want to add a new shape.", "tokens": [474, 291, 764, 264, 2642, 3170, 281, 2642, 264, 3909, 13, 1396, 291, 909, 257, 2960, 281, 264, 15682, 13, 400, 510, 294, 264, 2642, 6598, 11, 291, 764, 257, 3170, 1219, 2642, 44, 302, 2926, 51, 470, 7846, 13, 400, 291, 909, 257, 777, 3170, 281, 309, 13, 400, 291, 1884, 257, 777, 6367, 294, 264, 23779, 2445, 13, 407, 300, 3300, 1229, 393, 2642, 264, 10854, 13, 1057, 295, 341, 291, 362, 281, 360, 498, 291, 528, 281, 909, 257, 777, 3909, 13], "avg_logprob": -0.6795058139534884, "compression_ratio": 1.8011049723756907, "no_speech_prob": 3.7550926208496094e-06, "words": [{"start": 2731.27, "end": 2731.49, "word": "and", "probability": 0.158935546875}, {"start": 2731.49, "end": 2731.61, "word": " you", "probability": 0.23681640625}, {"start": 2731.61, "end": 2731.81, "word": " use", "probability": 0.306396484375}, {"start": 2731.81, "end": 2732.05, "word": " the", "probability": 0.54150390625}, {"start": 2732.05, "end": 2732.45, "word": " draw", "probability": 0.2283935546875}, {"start": 2732.45, "end": 2732.51, "word": " method", "probability": 0.9130859375}, {"start": 2732.51, "end": 2732.65, "word": " to", "probability": 0.80712890625}, {"start": 2732.65, "end": 2733.39, "word": " draw", "probability": 0.306884765625}, {"start": 2733.39, "end": 2733.67, "word": " the", "probability": 0.50830078125}, {"start": 2733.67, "end": 2733.83, "word": " shape.", "probability": 0.67578125}, {"start": 2734.19, "end": 2734.61, "word": " Then", "probability": 0.45361328125}, {"start": 2734.61, "end": 2734.77, "word": " you", "probability": 0.483154296875}, {"start": 2734.77, "end": 2735.03, "word": " add", "probability": 0.59619140625}, {"start": 2735.03, "end": 2735.21, "word": " a", "probability": 0.4951171875}, {"start": 2735.21, "end": 2735.41, "word": " button", "probability": 0.69970703125}, {"start": 2735.41, "end": 2735.59, "word": " to", "probability": 0.43115234375}, {"start": 2735.59, "end": 2736.97, "word": " the", "probability": 0.509765625}, {"start": 2736.97, "end": 2737.55, "word": " UI.", "probability": 0.78173828125}, {"start": 2738.31, "end": 2738.47, "word": " And", "probability": 0.195556640625}, {"start": 2738.47, "end": 2738.75, "word": " here", "probability": 0.269287109375}, {"start": 2738.75, "end": 2739.03, "word": " in", "probability": 0.599609375}, {"start": 2739.03, "end": 2739.75, "word": " the", "probability": 0.75927734375}, {"start": 2739.75, "end": 2739.91, "word": " draw", "probability": 0.470458984375}, {"start": 2739.91, "end": 2740.27, "word": " manager,", "probability": 0.9189453125}, {"start": 2740.39, "end": 2740.49, "word": " you", "probability": 0.8916015625}, {"start": 2740.49, "end": 2740.71, "word": " use", "probability": 0.3466796875}, {"start": 2740.71, "end": 2740.83, "word": " a", "probability": 0.59619140625}, {"start": 2740.83, "end": 2741.11, "word": " method", "probability": 0.9453125}, {"start": 2741.11, "end": 2741.37, "word": " called", "probability": 0.763671875}, {"start": 2741.37, "end": 2742.73, "word": " drawMethodTriangle.", "probability": 0.44171142578125}, {"start": 2744.21, "end": 2744.69, "word": " And", "probability": 0.32666015625}, {"start": 2744.69, "end": 2744.81, "word": " you", "probability": 0.748046875}, {"start": 2744.81, "end": 2744.99, "word": " add", "probability": 0.260498046875}, {"start": 2744.99, "end": 2745.19, "word": " a", "probability": 0.8330078125}, {"start": 2745.19, "end": 2745.81, "word": " new", "probability": 0.82666015625}, {"start": 2745.81, "end": 2745.81, "word": " method", "probability": 0.63037109375}, {"start": 2745.81, "end": 2746.63, "word": " to", "probability": 0.3427734375}, {"start": 2746.63, "end": 2747.07, "word": " it.", "probability": 0.5205078125}, {"start": 2747.37, "end": 2747.77, "word": " And", "probability": 0.53369140625}, {"start": 2747.77, "end": 2747.87, "word": " you", "probability": 0.4912109375}, {"start": 2747.87, "end": 2748.09, "word": " create", "probability": 0.246337890625}, {"start": 2748.09, "end": 2748.41, "word": " a", "probability": 0.84033203125}, {"start": 2748.41, "end": 2748.41, "word": " new", "probability": 0.8212890625}, {"start": 2748.41, "end": 2748.41, "word": " loop", "probability": 0.87744140625}, {"start": 2748.41, "end": 2748.41, "word": " in", "probability": 0.12225341796875}, {"start": 2748.41, "end": 2748.73, "word": " the", "probability": 0.6474609375}, {"start": 2748.73, "end": 2748.97, "word": " undo", "probability": 0.703125}, {"start": 2748.97, "end": 2749.21, "word": " function.", "probability": 0.251953125}, {"start": 2750.29, "end": 2750.45, "word": " So", "probability": 0.247314453125}, {"start": 2750.45, "end": 2750.57, "word": " that", "probability": 0.642578125}, {"start": 2750.57, "end": 2750.79, "word": " Erzy", "probability": 0.202423095703125}, {"start": 2750.79, "end": 2750.89, "word": " can", "probability": 0.654296875}, {"start": 2750.89, "end": 2751.25, "word": " draw", "probability": 0.625}, {"start": 2751.25, "end": 2751.85, "word": " the", "probability": 0.65234375}, {"start": 2751.85, "end": 2752.19, "word": " shapes.", "probability": 0.8759765625}, {"start": 2752.47, "end": 2752.85, "word": " All", "probability": 0.47119140625}, {"start": 2752.85, "end": 2752.97, "word": " of", "probability": 0.384033203125}, {"start": 2752.97, "end": 2753.05, "word": " this", "probability": 0.69287109375}, {"start": 2753.05, "end": 2753.11, "word": " you", "probability": 0.427734375}, {"start": 2753.11, "end": 2753.31, "word": " have", "probability": 0.464111328125}, {"start": 2753.31, "end": 2753.31, "word": " to", "probability": 0.96875}, {"start": 2753.31, "end": 2753.71, "word": " do", "probability": 0.8388671875}, {"start": 2753.71, "end": 2754.41, "word": " if", "probability": 0.459716796875}, {"start": 2754.41, "end": 2754.59, "word": " you", "probability": 0.9638671875}, {"start": 2754.59, "end": 2754.81, "word": " want", "probability": 0.7939453125}, {"start": 2754.81, "end": 2754.81, "word": " to", "probability": 0.96142578125}, {"start": 2754.81, "end": 2755.17, "word": " add", "probability": 0.849609375}, {"start": 2755.17, "end": 2755.95, "word": " a", "probability": 0.8984375}, {"start": 2755.95, "end": 2755.99, "word": " new", "probability": 0.734375}, {"start": 2755.99, "end": 2756.13, "word": " shape.", "probability": 0.9111328125}], "temperature": 1.0}, {"id": 108, "seek": 277404, "start": 2758.32, "end": 2774.04, "text": "The main problem is that for every new shape in the Draw Manager, you have to create a new method, or a new list, or a new load. Right or wrong? No. We have to relax ourselves. We have to make the Draw Manager to add new shapes that we don't change at all.", "tokens": [2278, 2135, 1154, 307, 300, 337, 633, 777, 3909, 294, 264, 20386, 13821, 11, 291, 362, 281, 1884, 257, 777, 3170, 11, 420, 257, 777, 1329, 11, 420, 257, 777, 3677, 13, 1779, 420, 2085, 30, 883, 13, 492, 362, 281, 5789, 4175, 13, 492, 362, 281, 652, 264, 20386, 13821, 281, 909, 777, 10854, 300, 321, 500, 380, 1319, 412, 439, 13], "avg_logprob": -0.6074218461290002, "compression_ratio": 1.5802469135802468, "no_speech_prob": 1.4901161193847656e-05, "words": [{"start": 2758.32, "end": 2758.76, "word": "The", "probability": 0.392822265625}, {"start": 2758.76, "end": 2758.86, "word": " main", "probability": 0.38671875}, {"start": 2758.86, "end": 2759.08, "word": " problem", "probability": 0.7578125}, {"start": 2759.08, "end": 2759.7, "word": " is", "probability": 0.3623046875}, {"start": 2759.7, "end": 2760.54, "word": " that", "probability": 0.493408203125}, {"start": 2760.54, "end": 2761.82, "word": " for", "probability": 0.1087646484375}, {"start": 2761.82, "end": 2762.06, "word": " every", "probability": 0.455322265625}, {"start": 2762.06, "end": 2762.7, "word": " new", "probability": 0.70556640625}, {"start": 2762.7, "end": 2762.7, "word": " shape", "probability": 0.6240234375}, {"start": 2762.7, "end": 2762.84, "word": " in", "probability": 0.36279296875}, {"start": 2762.84, "end": 2762.84, "word": " the", "probability": 0.6884765625}, {"start": 2762.84, "end": 2762.84, "word": " Draw", "probability": 0.29150390625}, {"start": 2762.84, "end": 2762.84, "word": " Manager,", "probability": 0.72314453125}, {"start": 2762.94, "end": 2763.42, "word": " you", "probability": 0.70361328125}, {"start": 2763.42, "end": 2763.62, "word": " have", "probability": 0.36767578125}, {"start": 2763.62, "end": 2763.62, "word": " to", "probability": 0.96533203125}, {"start": 2763.62, "end": 2763.86, "word": " create", "probability": 0.53515625}, {"start": 2763.86, "end": 2763.94, "word": " a", "probability": 0.830078125}, {"start": 2763.94, "end": 2763.94, "word": " new", "probability": 0.798828125}, {"start": 2763.94, "end": 2764.24, "word": " method,", "probability": 0.8603515625}, {"start": 2764.68, "end": 2764.76, "word": " or", "probability": 0.26806640625}, {"start": 2764.76, "end": 2764.8, "word": " a", "probability": 0.5849609375}, {"start": 2764.8, "end": 2764.8, "word": " new", "probability": 0.8876953125}, {"start": 2764.8, "end": 2765.04, "word": " list,", "probability": 0.83642578125}, {"start": 2765.44, "end": 2765.52, "word": " or", "probability": 0.955078125}, {"start": 2765.52, "end": 2765.58, "word": " a", "probability": 0.869140625}, {"start": 2765.58, "end": 2765.58, "word": " new", "probability": 0.90087890625}, {"start": 2765.58, "end": 2765.72, "word": " load.", "probability": 0.132568359375}, {"start": 2766.9, "end": 2767.2, "word": " Right", "probability": 0.22998046875}, {"start": 2767.2, "end": 2767.38, "word": " or", "probability": 0.8408203125}, {"start": 2767.38, "end": 2767.48, "word": " wrong?", "probability": 0.60693359375}, {"start": 2768.22, "end": 2768.44, "word": " No.", "probability": 0.468994140625}, {"start": 2768.7, "end": 2768.7, "word": " We", "probability": 0.46435546875}, {"start": 2768.7, "end": 2768.9, "word": " have", "probability": 0.40478515625}, {"start": 2768.9, "end": 2769.02, "word": " to", "probability": 0.96630859375}, {"start": 2769.02, "end": 2769.34, "word": " relax", "probability": 0.30419921875}, {"start": 2769.34, "end": 2769.78, "word": " ourselves.", "probability": 0.26611328125}, {"start": 2770.24, "end": 2770.26, "word": " We", "probability": 0.67626953125}, {"start": 2770.26, "end": 2770.6, "word": " have", "probability": 0.73828125}, {"start": 2770.6, "end": 2770.7, "word": " to", "probability": 0.96923828125}, {"start": 2770.7, "end": 2770.86, "word": " make", "probability": 0.54443359375}, {"start": 2770.86, "end": 2771.0, "word": " the", "probability": 0.80126953125}, {"start": 2771.0, "end": 2771.16, "word": " Draw", "probability": 0.806640625}, {"start": 2771.16, "end": 2771.64, "word": " Manager", "probability": 0.9111328125}, {"start": 2771.64, "end": 2771.94, "word": " to", "probability": 0.247802734375}, {"start": 2771.94, "end": 2772.32, "word": " add", "probability": 0.67919921875}, {"start": 2772.32, "end": 2772.5, "word": " new", "probability": 0.4140625}, {"start": 2772.5, "end": 2773.02, "word": " shapes", "probability": 0.8994140625}, {"start": 2773.02, "end": 2773.14, "word": " that", "probability": 0.4453125}, {"start": 2773.14, "end": 2773.2, "word": " we", "probability": 0.423095703125}, {"start": 2773.2, "end": 2773.26, "word": " don't", "probability": 0.6871337890625}, {"start": 2773.26, "end": 2773.58, "word": " change", "probability": 0.7255859375}, {"start": 2773.58, "end": 2773.84, "word": " at", "probability": 0.1278076171875}, {"start": 2773.84, "end": 2774.04, "word": " all.", "probability": 0.93115234375}], "temperature": 1.0}, {"id": 109, "seek": 279771, "start": 2775.75, "end": 2797.71, "text": "How? Instead of depending on circle, rectangle, triangle or any shape Unite all their types You put them in a single list You make a single loop You use a single method Okay? So now I made a new class here I named it shape", "tokens": [6462, 30, 7156, 295, 5413, 322, 6329, 11, 21930, 11, 13369, 420, 604, 3909, 1156, 642, 439, 641, 3467, 509, 829, 552, 294, 257, 2167, 1329, 509, 652, 257, 2167, 6367, 509, 764, 257, 2167, 3170, 1033, 30, 407, 586, 286, 1027, 257, 777, 1508, 510, 286, 4926, 309, 3909], "avg_logprob": -0.5542279458513447, "compression_ratio": 1.48, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2775.75, "end": 2776.15, "word": "How?", "probability": 0.348876953125}, {"start": 2776.49, "end": 2776.87, "word": " Instead", "probability": 0.517578125}, {"start": 2776.87, "end": 2776.97, "word": " of", "probability": 0.94970703125}, {"start": 2776.97, "end": 2777.35, "word": " depending", "probability": 0.33984375}, {"start": 2777.35, "end": 2777.53, "word": " on", "probability": 0.9306640625}, {"start": 2777.53, "end": 2778.01, "word": " circle,", "probability": 0.56982421875}, {"start": 2778.13, "end": 2778.65, "word": " rectangle,", "probability": 0.67578125}, {"start": 2778.81, "end": 2779.23, "word": " triangle", "probability": 0.77978515625}, {"start": 2779.23, "end": 2779.29, "word": " or", "probability": 0.36328125}, {"start": 2779.29, "end": 2779.43, "word": " any", "probability": 0.449462890625}, {"start": 2779.43, "end": 2779.73, "word": " shape", "probability": 0.72021484375}, {"start": 2779.73, "end": 2780.73, "word": " Unite", "probability": 0.5010986328125}, {"start": 2780.73, "end": 2781.43, "word": " all", "probability": 0.76708984375}, {"start": 2781.43, "end": 2781.43, "word": " their", "probability": 0.269287109375}, {"start": 2781.43, "end": 2781.43, "word": " types", "probability": 0.5166015625}, {"start": 2781.43, "end": 2782.13, "word": " You", "probability": 0.275146484375}, {"start": 2782.13, "end": 2782.51, "word": " put", "probability": 0.40869140625}, {"start": 2782.51, "end": 2782.69, "word": " them", "probability": 0.84619140625}, {"start": 2782.69, "end": 2782.79, "word": " in", "probability": 0.71826171875}, {"start": 2782.79, "end": 2782.99, "word": " a", "probability": 0.261962890625}, {"start": 2782.99, "end": 2783.29, "word": " single", "probability": 0.81982421875}, {"start": 2783.29, "end": 2783.31, "word": " list", "probability": 0.90869140625}, {"start": 2783.31, "end": 2783.95, "word": " You", "probability": 0.484130859375}, {"start": 2783.95, "end": 2784.39, "word": " make", "probability": 0.480224609375}, {"start": 2784.39, "end": 2785.01, "word": " a", "probability": 0.67529296875}, {"start": 2785.01, "end": 2785.51, "word": " single", "probability": 0.8154296875}, {"start": 2785.51, "end": 2785.51, "word": " loop", "probability": 0.94921875}, {"start": 2785.51, "end": 2785.83, "word": " You", "probability": 0.80029296875}, {"start": 2785.83, "end": 2786.45, "word": " use", "probability": 0.82421875}, {"start": 2786.45, "end": 2786.61, "word": " a", "probability": 0.3974609375}, {"start": 2786.61, "end": 2786.61, "word": " single", "probability": 0.93701171875}, {"start": 2786.61, "end": 2787.15, "word": " method", "probability": 0.8896484375}, {"start": 2787.15, "end": 2789.69, "word": " Okay?", "probability": 0.13916015625}, {"start": 2790.49, "end": 2790.65, "word": " So", "probability": 0.580078125}, {"start": 2790.65, "end": 2790.93, "word": " now", "probability": 0.81396484375}, {"start": 2790.93, "end": 2791.39, "word": " I", "probability": 0.464599609375}, {"start": 2791.39, "end": 2791.65, "word": " made", "probability": 0.313232421875}, {"start": 2791.65, "end": 2792.27, "word": " a", "probability": 0.474365234375}, {"start": 2792.27, "end": 2793.81, "word": " new", "probability": 0.86474609375}, {"start": 2793.81, "end": 2796.15, "word": " class", "probability": 0.9658203125}, {"start": 2796.15, "end": 2796.19, "word": " here", "probability": 0.5439453125}, {"start": 2796.19, "end": 2797.01, "word": " I", "probability": 0.378662109375}, {"start": 2797.01, "end": 2797.37, "word": " named", "probability": 0.50439453125}, {"start": 2797.37, "end": 2797.49, "word": " it", "probability": 0.921875}, {"start": 2797.49, "end": 2797.71, "word": " shape", "probability": 0.61083984375}], "temperature": 1.0}, {"id": 110, "seek": 282501, "start": 2800.57, "end": 2825.01, "text": " I don't want to make it a class because it's not a class. Why? Because there is nothing that unites them in the first place. Circular data, non-triangular data, non-triangular data. There is nothing common between them. So I made the interface empty, like this. And I want to unite them. I went to the circle and told it to implement shape. And I went to the rectangle", "tokens": [286, 500, 380, 528, 281, 652, 309, 257, 1508, 570, 309, 311, 406, 257, 1508, 13, 1545, 30, 1436, 456, 307, 1825, 300, 517, 3324, 552, 294, 264, 700, 1081, 13, 13791, 17792, 1412, 11, 2107, 12, 83, 470, 656, 1040, 1412, 11, 2107, 12, 83, 470, 656, 1040, 1412, 13, 821, 307, 1825, 2689, 1296, 552, 13, 407, 286, 1027, 264, 9226, 6707, 11, 411, 341, 13, 400, 286, 528, 281, 29320, 552, 13, 286, 1437, 281, 264, 6329, 293, 1907, 309, 281, 4445, 3909, 13, 400, 286, 1437, 281, 264, 21930], "avg_logprob": -0.5152925335346384, "compression_ratio": 1.7571428571428571, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 2800.57, "end": 2800.75, "word": " I", "probability": 0.328125}, {"start": 2800.75, "end": 2800.81, "word": " don't", "probability": 0.79931640625}, {"start": 2800.81, "end": 2800.89, "word": " want", "probability": 0.822265625}, {"start": 2800.89, "end": 2800.95, "word": " to", "probability": 0.884765625}, {"start": 2800.95, "end": 2801.09, "word": " make", "probability": 0.6064453125}, {"start": 2801.09, "end": 2801.21, "word": " it", "probability": 0.8251953125}, {"start": 2801.21, "end": 2801.23, "word": " a", "probability": 0.32666015625}, {"start": 2801.23, "end": 2801.53, "word": " class", "probability": 0.93994140625}, {"start": 2801.53, "end": 2802.63, "word": " because", "probability": 0.31494140625}, {"start": 2802.63, "end": 2803.41, "word": " it's", "probability": 0.506103515625}, {"start": 2803.41, "end": 2803.55, "word": " not", "probability": 0.8935546875}, {"start": 2803.55, "end": 2803.67, "word": " a", "probability": 0.71435546875}, {"start": 2803.67, "end": 2803.93, "word": " class.", "probability": 0.95849609375}, {"start": 2804.03, "end": 2804.17, "word": " Why?", "probability": 0.67431640625}, {"start": 2804.27, "end": 2804.55, "word": " Because", "probability": 0.38427734375}, {"start": 2804.55, "end": 2804.55, "word": " there", "probability": 0.6767578125}, {"start": 2804.55, "end": 2804.61, "word": " is", "probability": 0.52587890625}, {"start": 2804.61, "end": 2804.89, "word": " nothing", "probability": 0.65966796875}, {"start": 2804.89, "end": 2805.05, "word": " that", "probability": 0.302734375}, {"start": 2805.05, "end": 2805.27, "word": " unites", "probability": 0.5843505859375}, {"start": 2805.27, "end": 2805.47, "word": " them", "probability": 0.80126953125}, {"start": 2805.47, "end": 2805.47, "word": " in", "probability": 0.1300048828125}, {"start": 2805.47, "end": 2805.69, "word": " the", "probability": 0.59912109375}, {"start": 2805.69, "end": 2805.69, "word": " first", "probability": 0.8369140625}, {"start": 2805.69, "end": 2805.79, "word": " place.", "probability": 0.87744140625}, {"start": 2807.01, "end": 2807.43, "word": " Circular", "probability": 0.49163818359375}, {"start": 2807.43, "end": 2807.43, "word": " data,", "probability": 0.76025390625}, {"start": 2807.77, "end": 2807.77, "word": " non", "probability": 0.406005859375}, {"start": 2807.77, "end": 2808.61, "word": "-triangular", "probability": 0.6958740234375}, {"start": 2808.61, "end": 2808.73, "word": " data,", "probability": 0.79638671875}, {"start": 2808.85, "end": 2809.01, "word": " non", "probability": 0.40478515625}, {"start": 2809.01, "end": 2810.01, "word": "-triangular", "probability": 0.85947265625}, {"start": 2810.01, "end": 2810.05, "word": " data.", "probability": 0.9462890625}, {"start": 2810.25, "end": 2810.53, "word": " There", "probability": 0.67431640625}, {"start": 2810.53, "end": 2810.59, "word": " is", "probability": 0.79736328125}, {"start": 2810.59, "end": 2810.89, "word": " nothing", "probability": 0.63916015625}, {"start": 2810.89, "end": 2811.41, "word": " common", "probability": 0.27099609375}, {"start": 2811.41, "end": 2812.55, "word": " between", "probability": 0.75}, {"start": 2812.55, "end": 2812.77, "word": " them.", "probability": 0.89111328125}, {"start": 2813.05, "end": 2813.29, "word": " So", "probability": 0.794921875}, {"start": 2813.29, "end": 2813.35, "word": " I", "probability": 0.77392578125}, {"start": 2813.35, "end": 2813.51, "word": " made", "probability": 0.67041015625}, {"start": 2813.51, "end": 2813.73, "word": " the", "probability": 0.4345703125}, {"start": 2813.73, "end": 2814.37, "word": " interface", "probability": 0.9130859375}, {"start": 2814.37, "end": 2815.25, "word": " empty,", "probability": 0.54248046875}, {"start": 2815.55, "end": 2815.69, "word": " like", "probability": 0.56201171875}, {"start": 2815.69, "end": 2816.15, "word": " this.", "probability": 0.85986328125}, {"start": 2816.95, "end": 2817.11, "word": " And", "probability": 0.4248046875}, {"start": 2817.11, "end": 2817.61, "word": " I", "probability": 0.55224609375}, {"start": 2817.61, "end": 2817.97, "word": " want", "probability": 0.404541015625}, {"start": 2817.97, "end": 2818.03, "word": " to", "probability": 0.53076171875}, {"start": 2818.03, "end": 2818.33, "word": " unite", "probability": 0.364501953125}, {"start": 2818.33, "end": 2818.67, "word": " them.", "probability": 0.82275390625}, {"start": 2818.99, "end": 2819.29, "word": " I", "probability": 0.77587890625}, {"start": 2819.29, "end": 2819.47, "word": " went", "probability": 0.55126953125}, {"start": 2819.47, "end": 2819.61, "word": " to", "probability": 0.95361328125}, {"start": 2819.61, "end": 2819.73, "word": " the", "probability": 0.517578125}, {"start": 2819.73, "end": 2820.15, "word": " circle", "probability": 0.947265625}, {"start": 2820.15, "end": 2820.35, "word": " and", "probability": 0.7333984375}, {"start": 2820.35, "end": 2820.53, "word": " told", "probability": 0.34326171875}, {"start": 2820.53, "end": 2820.69, "word": " it", "probability": 0.7353515625}, {"start": 2820.69, "end": 2820.73, "word": " to", "probability": 0.5654296875}, {"start": 2820.73, "end": 2821.15, "word": " implement", "probability": 0.80224609375}, {"start": 2821.15, "end": 2822.87, "word": " shape.", "probability": 0.779296875}, {"start": 2823.67, "end": 2824.09, "word": " And", "probability": 0.669921875}, {"start": 2824.09, "end": 2824.15, "word": " I", "probability": 0.57080078125}, {"start": 2824.15, "end": 2824.29, "word": " went", "probability": 0.8349609375}, {"start": 2824.29, "end": 2824.45, "word": " to", "probability": 0.962890625}, {"start": 2824.45, "end": 2824.53, "word": " the", "probability": 0.775390625}, {"start": 2824.53, "end": 2825.01, "word": " rectangle", "probability": 0.9599609375}], "temperature": 1.0}, {"id": 111, "seek": 285263, "start": 2829.75, "end": 2852.63, "text": " Implements shape Solid circle خلاص ما هي Extend to main circle طب هذه بتفرج معايا كتير و انا بتفرج في ال draw manager لان بدل ما يكون عيدي اكتر من list بتعمل list واحدة تاخد إيش يا جماعة shape وهذه سميها shapes", "tokens": [4331, 781, 1117, 3909, 26664, 6329, 16490, 1211, 33546, 19446, 39896, 9881, 521, 281, 2135, 6329, 23032, 3555, 29538, 39894, 5172, 47341, 20449, 995, 25528, 9122, 2655, 13546, 4032, 1975, 8315, 39894, 5172, 47341, 8978, 2423, 2642, 6598, 5296, 7649, 47525, 1211, 19446, 7251, 30544, 6225, 1829, 16254, 1975, 4117, 2655, 2288, 9154, 1329, 39894, 25957, 1211, 1329, 36764, 24401, 3660, 6055, 47283, 3215, 11933, 1829, 8592, 35186, 10874, 15042, 27884, 3909, 37037, 24192, 8608, 2304, 1829, 11296, 10854], "avg_logprob": -0.3675781190395355, "compression_ratio": 1.4502369668246446, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 2829.7500000000005, "end": 2830.4700000000003, "word": " Implements", "probability": 0.6334635416666666}, {"start": 2830.4700000000003, "end": 2831.19, "word": " shape", "probability": 0.61572265625}, {"start": 2831.19, "end": 2834.91, "word": " Solid", "probability": 0.253662109375}, {"start": 2834.91, "end": 2835.27, "word": " circle", "probability": 0.6904296875}, {"start": 2835.27, "end": 2835.63, "word": " خلاص", "probability": 0.68017578125}, {"start": 2835.63, "end": 2835.87, "word": " ما", "probability": 0.77587890625}, {"start": 2835.87, "end": 2836.05, "word": " هي", "probability": 0.54052734375}, {"start": 2836.05, "end": 2837.29, "word": " Extend", "probability": 0.37762451171875}, {"start": 2837.29, "end": 2837.45, "word": " to", "probability": 0.1964111328125}, {"start": 2837.45, "end": 2837.73, "word": " main", "probability": 0.7412109375}, {"start": 2837.73, "end": 2838.17, "word": " circle", "probability": 0.9326171875}, {"start": 2838.17, "end": 2839.13, "word": " طب", "probability": 0.609130859375}, {"start": 2839.13, "end": 2839.89, "word": " هذه", "probability": 0.2275390625}, {"start": 2839.89, "end": 2840.25, "word": " بتفرج", "probability": 0.9388020833333334}, {"start": 2840.25, "end": 2840.51, "word": " معايا", "probability": 0.9606119791666666}, {"start": 2840.51, "end": 2840.85, "word": " كتير", "probability": 0.9763997395833334}, {"start": 2840.85, "end": 2841.29, "word": " و", "probability": 0.7802734375}, {"start": 2841.29, "end": 2841.39, "word": " انا", "probability": 0.654296875}, {"start": 2841.39, "end": 2841.81, "word": " بتفرج", "probability": 0.9723307291666666}, {"start": 2841.81, "end": 2841.99, "word": " في", "probability": 0.54638671875}, {"start": 2841.99, "end": 2842.09, "word": " ال", "probability": 0.57763671875}, {"start": 2842.09, "end": 2842.25, "word": " draw", "probability": 0.64697265625}, {"start": 2842.25, "end": 2842.65, "word": " manager", "probability": 0.90771484375}, {"start": 2842.65, "end": 2843.03, "word": " لان", "probability": 0.3902587890625}, {"start": 2843.03, "end": 2845.05, "word": " بدل", "probability": 0.8935546875}, {"start": 2845.05, "end": 2845.15, "word": " ما", "probability": 0.408203125}, {"start": 2845.15, "end": 2845.31, "word": " يكون", "probability": 0.930419921875}, {"start": 2845.31, "end": 2845.51, "word": " عيدي", "probability": 0.4886067708333333}, {"start": 2845.51, "end": 2845.79, "word": " اكتر", "probability": 0.9073486328125}, {"start": 2845.79, "end": 2845.91, "word": " من", "probability": 0.98974609375}, {"start": 2845.91, "end": 2846.27, "word": " list", "probability": 0.83447265625}, {"start": 2846.27, "end": 2847.63, "word": " بتعمل", "probability": 0.710205078125}, {"start": 2847.63, "end": 2847.89, "word": " list", "probability": 0.966796875}, {"start": 2847.89, "end": 2848.31, "word": " واحدة", "probability": 0.9599609375}, {"start": 2848.31, "end": 2848.65, "word": " تاخد", "probability": 0.984375}, {"start": 2848.65, "end": 2848.89, "word": " إيش", "probability": 0.65380859375}, {"start": 2848.89, "end": 2849.07, "word": " يا", "probability": 0.79150390625}, {"start": 2849.07, "end": 2849.29, "word": " جماعة", "probability": 0.9931640625}, {"start": 2849.29, "end": 2850.27, "word": " shape", "probability": 0.578125}, {"start": 2850.27, "end": 2851.79, "word": " وهذه", "probability": 0.533203125}, {"start": 2851.79, "end": 2852.21, "word": " سميها", "probability": 0.937744140625}, {"start": 2852.21, "end": 2852.63, "word": " shapes", "probability": 0.88037109375}], "temperature": 1.0}, {"id": 112, "seek": 287602, "start": 2853.76, "end": 2876.02, "text": " rather than having circle, rectangle and triangle because I can send them all to this one thing called draw shape and I will send this shape to it shape S and I will tell it what? S dot yes here there is a problem ok and I will tell it to draw the shape and add it to the existing list", "tokens": [2831, 813, 1419, 6329, 11, 21930, 293, 13369, 570, 286, 393, 2845, 552, 439, 281, 341, 472, 551, 1219, 2642, 3909, 293, 286, 486, 2845, 341, 3909, 281, 309, 3909, 318, 293, 286, 486, 980, 309, 437, 30, 318, 5893, 2086, 510, 456, 307, 257, 1154, 3133, 293, 286, 486, 980, 309, 281, 2642, 264, 3909, 293, 909, 309, 281, 264, 6741, 1329], "avg_logprob": -0.6977538848295808, "compression_ratio": 1.7546012269938651, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 2853.76, "end": 2854.04, "word": " rather", "probability": 0.15625}, {"start": 2854.04, "end": 2854.18, "word": " than", "probability": 0.90478515625}, {"start": 2854.18, "end": 2854.48, "word": " having", "probability": 0.416015625}, {"start": 2854.48, "end": 2855.0, "word": " circle,", "probability": 0.31884765625}, {"start": 2855.32, "end": 2855.88, "word": " rectangle", "probability": 0.81884765625}, {"start": 2855.88, "end": 2856.1, "word": " and", "probability": 0.55224609375}, {"start": 2856.1, "end": 2856.8, "word": " triangle", "probability": 0.87646484375}, {"start": 2856.8, "end": 2857.62, "word": " because", "probability": 0.2122802734375}, {"start": 2857.62, "end": 2858.1, "word": " I", "probability": 0.4453125}, {"start": 2858.1, "end": 2858.36, "word": " can", "probability": 0.802734375}, {"start": 2858.36, "end": 2858.88, "word": " send", "probability": 0.509765625}, {"start": 2858.88, "end": 2858.98, "word": " them", "probability": 0.412841796875}, {"start": 2858.98, "end": 2858.98, "word": " all", "probability": 0.46826171875}, {"start": 2858.98, "end": 2859.12, "word": " to", "probability": 0.7978515625}, {"start": 2859.12, "end": 2859.44, "word": " this", "probability": 0.1351318359375}, {"start": 2859.44, "end": 2860.18, "word": " one", "probability": 0.333740234375}, {"start": 2860.18, "end": 2860.26, "word": " thing", "probability": 0.1929931640625}, {"start": 2860.26, "end": 2860.58, "word": " called", "probability": 0.4580078125}, {"start": 2860.58, "end": 2860.92, "word": " draw", "probability": 0.42138671875}, {"start": 2860.92, "end": 2861.88, "word": " shape", "probability": 0.87255859375}, {"start": 2861.88, "end": 2862.62, "word": " and", "probability": 0.5400390625}, {"start": 2862.62, "end": 2862.86, "word": " I", "probability": 0.390380859375}, {"start": 2862.86, "end": 2863.0, "word": " will", "probability": 0.2353515625}, {"start": 2863.0, "end": 2863.28, "word": " send", "probability": 0.468994140625}, {"start": 2863.28, "end": 2863.4, "word": " this", "probability": 0.2481689453125}, {"start": 2863.4, "end": 2863.8, "word": " shape", "probability": 0.78125}, {"start": 2863.8, "end": 2863.98, "word": " to", "probability": 0.428466796875}, {"start": 2863.98, "end": 2863.98, "word": " it", "probability": 0.3154296875}, {"start": 2863.98, "end": 2863.98, "word": " shape", "probability": 0.439208984375}, {"start": 2863.98, "end": 2864.38, "word": " S", "probability": 0.365234375}, {"start": 2864.38, "end": 2865.26, "word": " and", "probability": 0.72607421875}, {"start": 2865.26, "end": 2865.34, "word": " I", "probability": 0.6181640625}, {"start": 2865.34, "end": 2865.4, "word": " will", "probability": 0.671875}, {"start": 2865.4, "end": 2865.54, "word": " tell", "probability": 0.47998046875}, {"start": 2865.54, "end": 2865.68, "word": " it", "probability": 0.763671875}, {"start": 2865.68, "end": 2865.94, "word": " what?", "probability": 0.26708984375}, {"start": 2866.02, "end": 2866.3, "word": " S", "probability": 0.724609375}, {"start": 2866.3, "end": 2866.76, "word": " dot", "probability": 0.8203125}, {"start": 2866.76, "end": 2867.74, "word": " yes", "probability": 0.167236328125}, {"start": 2867.74, "end": 2867.9, "word": " here", "probability": 0.2379150390625}, {"start": 2867.9, "end": 2868.06, "word": " there", "probability": 0.38427734375}, {"start": 2868.06, "end": 2868.06, "word": " is", "probability": 0.89404296875}, {"start": 2868.06, "end": 2868.16, "word": " a", "probability": 0.939453125}, {"start": 2868.16, "end": 2868.42, "word": " problem", "probability": 0.8369140625}, {"start": 2868.42, "end": 2870.4, "word": " ok", "probability": 0.136962890625}, {"start": 2870.4, "end": 2871.04, "word": " and", "probability": 0.40087890625}, {"start": 2871.04, "end": 2871.12, "word": " I", "probability": 0.83154296875}, {"start": 2871.12, "end": 2871.14, "word": " will", "probability": 0.66064453125}, {"start": 2871.14, "end": 2871.28, "word": " tell", "probability": 0.77490234375}, {"start": 2871.28, "end": 2871.4, "word": " it", "probability": 0.80029296875}, {"start": 2871.4, "end": 2871.56, "word": " to", "probability": 0.44873046875}, {"start": 2871.56, "end": 2871.56, "word": " draw", "probability": 0.693359375}, {"start": 2871.56, "end": 2871.56, "word": " the", "probability": 0.5546875}, {"start": 2871.56, "end": 2871.88, "word": " shape", "probability": 0.83154296875}, {"start": 2871.88, "end": 2873.12, "word": " and", "probability": 0.2978515625}, {"start": 2873.12, "end": 2873.78, "word": " add", "probability": 0.6845703125}, {"start": 2873.78, "end": 2874.54, "word": " it", "probability": 0.83740234375}, {"start": 2874.54, "end": 2875.16, "word": " to", "probability": 0.52734375}, {"start": 2875.16, "end": 2875.66, "word": " the", "probability": 0.8017578125}, {"start": 2875.66, "end": 2875.66, "word": " existing", "probability": 0.6103515625}, {"start": 2875.66, "end": 2876.02, "word": " list", "probability": 0.7451171875}], "temperature": 1.0}, {"id": 113, "seek": 290094, "start": 2878.06, "end": 2900.94, "text": " I have it. Of course, the same draw is not available yet. But let's start with the first one. The draw rectangle does not have the necessary shape. Right or wrong? The clear rectangle does not change. Because the loops also do not need to make two loops. It makes a loop on one shape. P, for example, on shapes. And it is supposed to say P dot draw.", "tokens": [286, 362, 309, 13, 2720, 1164, 11, 264, 912, 2642, 307, 406, 2435, 1939, 13, 583, 718, 311, 722, 365, 264, 700, 472, 13, 440, 2642, 21930, 775, 406, 362, 264, 4818, 3909, 13, 1779, 420, 2085, 30, 440, 1850, 21930, 775, 406, 1319, 13, 1436, 264, 16121, 611, 360, 406, 643, 281, 652, 732, 16121, 13, 467, 1669, 257, 6367, 322, 472, 3909, 13, 430, 11, 337, 1365, 11, 322, 10854, 13, 400, 309, 307, 3442, 281, 584, 430, 5893, 2642, 13], "avg_logprob": -0.5814732213815054, "compression_ratio": 1.6203703703703705, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 2878.06, "end": 2878.2, "word": " I", "probability": 0.1876220703125}, {"start": 2878.2, "end": 2878.46, "word": " have", "probability": 0.6005859375}, {"start": 2878.46, "end": 2878.9, "word": " it.", "probability": 0.414306640625}, {"start": 2879.22, "end": 2879.62, "word": " Of", "probability": 0.62060546875}, {"start": 2879.62, "end": 2879.68, "word": " course,", "probability": 0.94775390625}, {"start": 2879.88, "end": 2880.0, "word": " the", "probability": 0.347412109375}, {"start": 2880.0, "end": 2880.12, "word": " same", "probability": 0.4169921875}, {"start": 2880.12, "end": 2880.36, "word": " draw", "probability": 0.365966796875}, {"start": 2880.36, "end": 2880.44, "word": " is", "probability": 0.402099609375}, {"start": 2880.44, "end": 2880.54, "word": " not", "probability": 0.79638671875}, {"start": 2880.54, "end": 2880.94, "word": " available", "probability": 0.17724609375}, {"start": 2880.94, "end": 2881.14, "word": " yet.", "probability": 0.63427734375}, {"start": 2881.34, "end": 2881.58, "word": " But", "probability": 0.77978515625}, {"start": 2881.58, "end": 2881.86, "word": " let's", "probability": 0.70166015625}, {"start": 2881.86, "end": 2881.94, "word": " start", "probability": 0.2166748046875}, {"start": 2881.94, "end": 2881.96, "word": " with", "probability": 0.609375}, {"start": 2881.96, "end": 2882.06, "word": " the", "probability": 0.53662109375}, {"start": 2882.06, "end": 2882.28, "word": " first", "probability": 0.46630859375}, {"start": 2882.28, "end": 2882.36, "word": " one.", "probability": 0.51123046875}, {"start": 2883.1, "end": 2883.26, "word": " The", "probability": 0.55908203125}, {"start": 2883.26, "end": 2883.4, "word": " draw", "probability": 0.258544921875}, {"start": 2883.4, "end": 2883.78, "word": " rectangle", "probability": 0.90625}, {"start": 2883.78, "end": 2884.06, "word": " does", "probability": 0.242431640625}, {"start": 2884.06, "end": 2884.08, "word": " not", "probability": 0.9296875}, {"start": 2884.08, "end": 2884.28, "word": " have", "probability": 0.60302734375}, {"start": 2884.28, "end": 2884.66, "word": " the", "probability": 0.1444091796875}, {"start": 2884.66, "end": 2884.66, "word": " necessary", "probability": 0.265380859375}, {"start": 2884.66, "end": 2885.22, "word": " shape.", "probability": 0.38671875}, {"start": 2885.24, "end": 2885.42, "word": " Right", "probability": 0.3701171875}, {"start": 2885.42, "end": 2885.64, "word": " or", "probability": 0.6259765625}, {"start": 2885.64, "end": 2885.64, "word": " wrong?", "probability": 0.64453125}, {"start": 2885.7, "end": 2885.84, "word": " The", "probability": 0.60400390625}, {"start": 2885.84, "end": 2886.06, "word": " clear", "probability": 0.3994140625}, {"start": 2886.06, "end": 2886.16, "word": " rectangle", "probability": 0.814453125}, {"start": 2886.16, "end": 2886.22, "word": " does", "probability": 0.352783203125}, {"start": 2886.22, "end": 2886.56, "word": " not", "probability": 0.939453125}, {"start": 2886.56, "end": 2886.96, "word": " change.", "probability": 0.83984375}, {"start": 2887.4, "end": 2887.8, "word": " Because", "probability": 0.67919921875}, {"start": 2887.8, "end": 2887.96, "word": " the", "probability": 0.6572265625}, {"start": 2887.96, "end": 2888.26, "word": " loops", "probability": 0.8515625}, {"start": 2888.26, "end": 2888.74, "word": " also", "probability": 0.53955078125}, {"start": 2888.74, "end": 2889.72, "word": " do", "probability": 0.36376953125}, {"start": 2889.72, "end": 2889.98, "word": " not", "probability": 0.93994140625}, {"start": 2889.98, "end": 2890.98, "word": " need", "probability": 0.47900390625}, {"start": 2890.98, "end": 2891.12, "word": " to", "probability": 0.7744140625}, {"start": 2891.12, "end": 2891.3, "word": " make", "probability": 0.4677734375}, {"start": 2891.3, "end": 2891.52, "word": " two", "probability": 0.74462890625}, {"start": 2891.52, "end": 2891.74, "word": " loops.", "probability": 0.95751953125}, {"start": 2891.86, "end": 2891.94, "word": " It", "probability": 0.466796875}, {"start": 2891.94, "end": 2892.08, "word": " makes", "probability": 0.5341796875}, {"start": 2892.08, "end": 2892.26, "word": " a", "probability": 0.7158203125}, {"start": 2892.26, "end": 2892.5, "word": " loop", "probability": 0.9384765625}, {"start": 2892.5, "end": 2892.8, "word": " on", "probability": 0.7041015625}, {"start": 2892.8, "end": 2894.06, "word": " one", "probability": 0.33740234375}, {"start": 2894.06, "end": 2894.06, "word": " shape.", "probability": 0.79931640625}, {"start": 2894.48, "end": 2894.72, "word": " P,", "probability": 0.6162109375}, {"start": 2894.86, "end": 2895.0, "word": " for", "probability": 0.9326171875}, {"start": 2895.0, "end": 2895.14, "word": " example,", "probability": 0.9306640625}, {"start": 2895.28, "end": 2895.4, "word": " on", "probability": 0.8505859375}, {"start": 2895.4, "end": 2895.88, "word": " shapes.", "probability": 0.81005859375}, {"start": 2897.66, "end": 2897.9, "word": " And", "probability": 0.70166015625}, {"start": 2897.9, "end": 2897.96, "word": " it", "probability": 0.4384765625}, {"start": 2897.96, "end": 2897.98, "word": " is", "probability": 0.5654296875}, {"start": 2897.98, "end": 2898.14, "word": " supposed", "probability": 0.873046875}, {"start": 2898.14, "end": 2898.26, "word": " to", "probability": 0.96728515625}, {"start": 2898.26, "end": 2898.46, "word": " say", "probability": 0.68310546875}, {"start": 2898.46, "end": 2898.76, "word": " P", "probability": 0.5849609375}, {"start": 2898.76, "end": 2899.14, "word": " dot", "probability": 0.82861328125}, {"start": 2899.14, "end": 2900.94, "word": " draw.", "probability": 0.287353515625}], "temperature": 1.0}, {"id": 114, "seek": 293011, "start": 2901.87, "end": 2930.11, "text": "Okay, now there is a problem with these shapes, each shape has a different way of drawing Because the Draw Manager wants to know how to draw each shape He says I have no claim to the way of drawing each shape You want to make different shapes, do it, you are free But in the end, you leave them all the same kind And leave me the way of drawing each shape in the class you are going to do My job, I want to relax, I want to take the shape and draw it", "tokens": [8297, 11, 586, 456, 307, 257, 1154, 365, 613, 10854, 11, 1184, 3909, 575, 257, 819, 636, 295, 6316, 1436, 264, 20386, 13821, 2738, 281, 458, 577, 281, 2642, 1184, 3909, 634, 1619, 286, 362, 572, 3932, 281, 264, 636, 295, 6316, 1184, 3909, 509, 528, 281, 652, 819, 10854, 11, 360, 309, 11, 291, 366, 1737, 583, 294, 264, 917, 11, 291, 1856, 552, 439, 264, 912, 733, 400, 1856, 385, 264, 636, 295, 6316, 1184, 3909, 294, 264, 1508, 291, 366, 516, 281, 360, 1222, 1691, 11, 286, 528, 281, 5789, 11, 286, 528, 281, 747, 264, 3909, 293, 2642, 309], "avg_logprob": -0.43900241444890314, "compression_ratio": 1.9313304721030042, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 2901.87, "end": 2902.13, "word": "Okay,", "probability": 0.2490234375}, {"start": 2902.17, "end": 2902.35, "word": " now", "probability": 0.6943359375}, {"start": 2902.35, "end": 2902.49, "word": " there", "probability": 0.78857421875}, {"start": 2902.49, "end": 2902.49, "word": " is", "probability": 0.6142578125}, {"start": 2902.49, "end": 2902.59, "word": " a", "probability": 0.9326171875}, {"start": 2902.59, "end": 2902.89, "word": " problem", "probability": 0.857421875}, {"start": 2902.89, "end": 2903.63, "word": " with", "probability": 0.245361328125}, {"start": 2903.63, "end": 2903.65, "word": " these", "probability": 0.36962890625}, {"start": 2903.65, "end": 2904.01, "word": " shapes,", "probability": 0.48388671875}, {"start": 2904.67, "end": 2904.85, "word": " each", "probability": 0.732421875}, {"start": 2904.85, "end": 2905.15, "word": " shape", "probability": 0.78955078125}, {"start": 2905.15, "end": 2905.67, "word": " has", "probability": 0.75048828125}, {"start": 2905.67, "end": 2905.67, "word": " a", "probability": 0.5986328125}, {"start": 2905.67, "end": 2906.91, "word": " different", "probability": 0.8125}, {"start": 2906.91, "end": 2906.91, "word": " way", "probability": 0.611328125}, {"start": 2906.91, "end": 2906.91, "word": " of", "probability": 0.8623046875}, {"start": 2906.91, "end": 2906.91, "word": " drawing", "probability": 0.8310546875}, {"start": 2906.91, "end": 2907.73, "word": " Because", "probability": 0.2724609375}, {"start": 2907.73, "end": 2907.93, "word": " the", "probability": 0.57470703125}, {"start": 2907.93, "end": 2908.01, "word": " Draw", "probability": 0.39501953125}, {"start": 2908.01, "end": 2908.33, "word": " Manager", "probability": 0.71484375}, {"start": 2908.33, "end": 2908.71, "word": " wants", "probability": 0.364501953125}, {"start": 2908.71, "end": 2908.85, "word": " to", "probability": 0.962890625}, {"start": 2908.85, "end": 2909.03, "word": " know", "probability": 0.84130859375}, {"start": 2909.03, "end": 2909.19, "word": " how", "probability": 0.9150390625}, {"start": 2909.19, "end": 2909.31, "word": " to", "probability": 0.84326171875}, {"start": 2909.31, "end": 2909.43, "word": " draw", "probability": 0.88037109375}, {"start": 2909.43, "end": 2909.71, "word": " each", "probability": 0.7333984375}, {"start": 2909.71, "end": 2909.97, "word": " shape", "probability": 0.89990234375}, {"start": 2909.97, "end": 2910.55, "word": " He", "probability": 0.5}, {"start": 2910.55, "end": 2910.71, "word": " says", "probability": 0.525390625}, {"start": 2910.71, "end": 2910.89, "word": " I", "probability": 0.4052734375}, {"start": 2910.89, "end": 2911.11, "word": " have", "probability": 0.1737060546875}, {"start": 2911.11, "end": 2911.19, "word": " no", "probability": 0.58837890625}, {"start": 2911.19, "end": 2911.41, "word": " claim", "probability": 0.2039794921875}, {"start": 2911.41, "end": 2911.53, "word": " to", "probability": 0.7158203125}, {"start": 2911.53, "end": 2911.57, "word": " the", "probability": 0.295166015625}, {"start": 2911.57, "end": 2911.73, "word": " way", "probability": 0.8408203125}, {"start": 2911.73, "end": 2912.03, "word": " of", "probability": 0.40576171875}, {"start": 2912.03, "end": 2912.03, "word": " drawing", "probability": 0.8916015625}, {"start": 2912.03, "end": 2912.25, "word": " each", "probability": 0.91796875}, {"start": 2912.25, "end": 2912.51, "word": " shape", "probability": 0.91552734375}, {"start": 2912.51, "end": 2913.21, "word": " You", "probability": 0.63330078125}, {"start": 2913.21, "end": 2913.41, "word": " want", "probability": 0.7451171875}, {"start": 2913.41, "end": 2913.55, "word": " to", "probability": 0.9638671875}, {"start": 2913.55, "end": 2913.71, "word": " make", "probability": 0.6650390625}, {"start": 2913.71, "end": 2914.71, "word": " different", "probability": 0.8125}, {"start": 2914.71, "end": 2914.81, "word": " shapes,", "probability": 0.87255859375}, {"start": 2915.05, "end": 2915.25, "word": " do", "probability": 0.489013671875}, {"start": 2915.25, "end": 2915.39, "word": " it,", "probability": 0.609375}, {"start": 2915.39, "end": 2915.55, "word": " you", "probability": 0.90576171875}, {"start": 2915.55, "end": 2915.61, "word": " are", "probability": 0.666015625}, {"start": 2915.61, "end": 2915.81, "word": " free", "probability": 0.88818359375}, {"start": 2915.81, "end": 2917.07, "word": " But", "probability": 0.64697265625}, {"start": 2917.07, "end": 2917.19, "word": " in", "probability": 0.77001953125}, {"start": 2917.19, "end": 2917.29, "word": " the", "probability": 0.9267578125}, {"start": 2917.29, "end": 2917.55, "word": " end,", "probability": 0.91552734375}, {"start": 2917.97, "end": 2917.97, "word": " you", "probability": 0.7158203125}, {"start": 2917.97, "end": 2918.23, "word": " leave", "probability": 0.38232421875}, {"start": 2918.23, "end": 2918.53, "word": " them", "probability": 0.6787109375}, {"start": 2918.53, "end": 2918.77, "word": " all", "probability": 0.93017578125}, {"start": 2918.77, "end": 2918.89, "word": " the", "probability": 0.6337890625}, {"start": 2918.89, "end": 2919.17, "word": " same", "probability": 0.9130859375}, {"start": 2919.17, "end": 2919.51, "word": " kind", "probability": 0.3779296875}, {"start": 2919.51, "end": 2920.83, "word": " And", "probability": 0.59228515625}, {"start": 2920.83, "end": 2921.33, "word": " leave", "probability": 0.70263671875}, {"start": 2921.33, "end": 2921.55, "word": " me", "probability": 0.46826171875}, {"start": 2921.55, "end": 2921.61, "word": " the", "probability": 0.6220703125}, {"start": 2921.61, "end": 2921.85, "word": " way", "probability": 0.84619140625}, {"start": 2921.85, "end": 2922.03, "word": " of", "probability": 0.83984375}, {"start": 2922.03, "end": 2922.19, "word": " drawing", "probability": 0.9130859375}, {"start": 2922.19, "end": 2922.51, "word": " each", "probability": 0.94482421875}, {"start": 2922.51, "end": 2922.99, "word": " shape", "probability": 0.89013671875}, {"start": 2922.99, "end": 2923.49, "word": " in", "probability": 0.378173828125}, {"start": 2923.49, "end": 2924.23, "word": " the", "probability": 0.77734375}, {"start": 2924.23, "end": 2924.53, "word": " class", "probability": 0.958984375}, {"start": 2924.53, "end": 2924.75, "word": " you", "probability": 0.5263671875}, {"start": 2924.75, "end": 2924.89, "word": " are", "probability": 0.388671875}, {"start": 2924.89, "end": 2924.95, "word": " going", "probability": 0.88720703125}, {"start": 2924.95, "end": 2924.95, "word": " to", "probability": 0.9716796875}, {"start": 2924.95, "end": 2925.15, "word": " do", "probability": 0.68310546875}, {"start": 2925.15, "end": 2926.29, "word": " My", "probability": 0.3251953125}, {"start": 2926.29, "end": 2926.89, "word": " job,", "probability": 0.9462890625}, {"start": 2927.19, "end": 2927.49, "word": " I", "probability": 0.91796875}, {"start": 2927.49, "end": 2927.53, "word": " want", "probability": 0.7099609375}, {"start": 2927.53, "end": 2927.55, "word": " to", "probability": 0.97021484375}, {"start": 2927.55, "end": 2927.79, "word": " relax,", "probability": 0.68310546875}, {"start": 2928.29, "end": 2928.55, "word": " I", "probability": 0.9345703125}, {"start": 2928.55, "end": 2928.65, "word": " want", "probability": 0.72607421875}, {"start": 2928.65, "end": 2928.75, "word": " to", "probability": 0.9609375}, {"start": 2928.75, "end": 2928.89, "word": " take", "probability": 0.79833984375}, {"start": 2928.89, "end": 2929.03, "word": " the", "probability": 0.78955078125}, {"start": 2929.03, "end": 2929.33, "word": " shape", "probability": 0.88427734375}, {"start": 2929.33, "end": 2929.63, "word": " and", "probability": 0.8994140625}, {"start": 2929.63, "end": 2929.79, "word": " draw", "probability": 0.394775390625}, {"start": 2929.79, "end": 2930.11, "word": " it", "probability": 0.92236328125}], "temperature": 1.0}, {"id": 115, "seek": 293525, "start": 2931.91, "end": 2935.25, "text": "Understand that you are free to program whatever way you want.", "tokens": [52, 20535, 1115, 300, 291, 366, 1737, 281, 1461, 2035, 636, 291, 528, 13], "avg_logprob": -0.8963541825612386, "compression_ratio": 0.96875, "no_speech_prob": 0.0, "words": [{"start": 2931.91, "end": 2932.35, "word": "Understand", "probability": 0.5628458658854166}, {"start": 2932.35, "end": 2932.51, "word": " that", "probability": 0.12066650390625}, {"start": 2932.51, "end": 2932.77, "word": " you", "probability": 0.312744140625}, {"start": 2932.77, "end": 2932.91, "word": " are", "probability": 0.6318359375}, {"start": 2932.91, "end": 2933.09, "word": " free", "probability": 0.79638671875}, {"start": 2933.09, "end": 2933.23, "word": " to", "probability": 0.80810546875}, {"start": 2933.23, "end": 2933.51, "word": " program", "probability": 0.479248046875}, {"start": 2933.51, "end": 2934.35, "word": " whatever", "probability": 0.10400390625}, {"start": 2934.35, "end": 2934.87, "word": " way", "probability": 0.33935546875}, {"start": 2934.87, "end": 2934.99, "word": " you", "probability": 0.939453125}, {"start": 2934.99, "end": 2935.25, "word": " want.", "probability": 0.75439453125}], "temperature": 1.0}, {"id": 116, "seek": 296512, "start": 2936.42, "end": 2965.12, "text": "Okay? But this draw is not present now. So we go to the shape interface and create a draw method. This method is present in all shapes, but each shape has its own draw. You do it to achieve polymorphism, so that the draw manager sees it and executes it. But it has nothing to do with the draw manager how the shape will be drawn. You as a programmer, when you create a new shape and implement it to the interface, you have to determine what this is to draw. My job is to order them and tell them", "tokens": [8297, 30, 583, 341, 2642, 307, 406, 1974, 586, 13, 407, 321, 352, 281, 264, 3909, 9226, 293, 1884, 257, 2642, 3170, 13, 639, 3170, 307, 1974, 294, 439, 10854, 11, 457, 1184, 3909, 575, 1080, 1065, 2642, 13, 509, 360, 309, 281, 4584, 6754, 76, 18191, 1434, 11, 370, 300, 264, 2642, 6598, 8194, 309, 293, 4454, 1819, 309, 13, 583, 309, 575, 1825, 281, 360, 365, 264, 2642, 6598, 577, 264, 3909, 486, 312, 10117, 13, 509, 382, 257, 32116, 11, 562, 291, 1884, 257, 777, 3909, 293, 4445, 309, 281, 264, 9226, 11, 291, 362, 281, 6997, 437, 341, 307, 281, 2642, 13, 1222, 1691, 307, 281, 1668, 552, 293, 980, 552], "avg_logprob": -0.4555495622856864, "compression_ratio": 1.8131868131868132, "no_speech_prob": 9.834766387939453e-06, "words": [{"start": 2936.42, "end": 2936.66, "word": "Okay?", "probability": 0.181884765625}, {"start": 2936.88, "end": 2936.98, "word": " But", "probability": 0.215087890625}, {"start": 2936.98, "end": 2937.18, "word": " this", "probability": 0.64892578125}, {"start": 2937.18, "end": 2937.4, "word": " draw", "probability": 0.354736328125}, {"start": 2937.4, "end": 2937.54, "word": " is", "probability": 0.2220458984375}, {"start": 2937.54, "end": 2938.4, "word": " not", "probability": 0.712890625}, {"start": 2938.4, "end": 2938.78, "word": " present", "probability": 0.33349609375}, {"start": 2938.78, "end": 2938.78, "word": " now.", "probability": 0.278076171875}, {"start": 2939.24, "end": 2939.68, "word": " So", "probability": 0.71435546875}, {"start": 2939.68, "end": 2939.86, "word": " we", "probability": 0.51318359375}, {"start": 2939.86, "end": 2939.98, "word": " go", "probability": 0.68994140625}, {"start": 2939.98, "end": 2940.16, "word": " to", "probability": 0.89111328125}, {"start": 2940.16, "end": 2940.26, "word": " the", "probability": 0.49462890625}, {"start": 2940.26, "end": 2941.04, "word": " shape", "probability": 0.50927734375}, {"start": 2941.04, "end": 2941.04, "word": " interface", "probability": 0.87060546875}, {"start": 2941.04, "end": 2941.26, "word": " and", "probability": 0.6904296875}, {"start": 2941.26, "end": 2941.54, "word": " create", "probability": 0.3251953125}, {"start": 2941.54, "end": 2941.76, "word": " a", "probability": 0.7646484375}, {"start": 2941.76, "end": 2942.3, "word": " draw", "probability": 0.50341796875}, {"start": 2942.3, "end": 2942.44, "word": " method.", "probability": 0.9365234375}, {"start": 2943.1, "end": 2943.54, "word": " This", "probability": 0.81494140625}, {"start": 2943.54, "end": 2943.92, "word": " method", "probability": 0.94580078125}, {"start": 2943.92, "end": 2944.02, "word": " is", "probability": 0.6630859375}, {"start": 2944.02, "end": 2944.3, "word": " present", "probability": 0.76025390625}, {"start": 2944.3, "end": 2944.46, "word": " in", "probability": 0.8701171875}, {"start": 2944.46, "end": 2944.72, "word": " all", "probability": 0.82177734375}, {"start": 2944.72, "end": 2945.22, "word": " shapes,", "probability": 0.62451171875}, {"start": 2945.76, "end": 2945.96, "word": " but", "probability": 0.857421875}, {"start": 2945.96, "end": 2946.24, "word": " each", "probability": 0.77099609375}, {"start": 2946.24, "end": 2946.46, "word": " shape", "probability": 0.8701171875}, {"start": 2946.46, "end": 2946.62, "word": " has", "probability": 0.87255859375}, {"start": 2946.62, "end": 2947.4, "word": " its", "probability": 0.6015625}, {"start": 2947.4, "end": 2947.62, "word": " own", "probability": 0.8359375}, {"start": 2947.62, "end": 2947.66, "word": " draw.", "probability": 0.8408203125}, {"start": 2949.02, "end": 2949.46, "word": " You", "probability": 0.85546875}, {"start": 2949.46, "end": 2949.82, "word": " do", "probability": 0.251708984375}, {"start": 2949.82, "end": 2949.96, "word": " it", "probability": 0.7646484375}, {"start": 2949.96, "end": 2950.22, "word": " to", "probability": 0.27685546875}, {"start": 2950.22, "end": 2950.66, "word": " achieve", "probability": 0.322021484375}, {"start": 2950.66, "end": 2951.48, "word": " polymorphism,", "probability": 0.892822265625}, {"start": 2951.96, "end": 2952.18, "word": " so", "probability": 0.1925048828125}, {"start": 2952.18, "end": 2952.34, "word": " that", "probability": 0.66064453125}, {"start": 2952.34, "end": 2952.5, "word": " the", "probability": 0.8388671875}, {"start": 2952.5, "end": 2952.68, "word": " draw", "probability": 0.81982421875}, {"start": 2952.68, "end": 2953.04, "word": " manager", "probability": 0.9580078125}, {"start": 2953.04, "end": 2953.32, "word": " sees", "probability": 0.75244140625}, {"start": 2953.32, "end": 2953.46, "word": " it", "probability": 0.65771484375}, {"start": 2953.46, "end": 2953.56, "word": " and", "probability": 0.91748046875}, {"start": 2953.56, "end": 2953.86, "word": " executes", "probability": 0.57928466796875}, {"start": 2953.86, "end": 2954.02, "word": " it.", "probability": 0.943359375}, {"start": 2954.56, "end": 2954.8, "word": " But", "probability": 0.859375}, {"start": 2954.8, "end": 2954.98, "word": " it", "probability": 0.5146484375}, {"start": 2954.98, "end": 2955.12, "word": " has", "probability": 0.6552734375}, {"start": 2955.12, "end": 2955.3, "word": " nothing", "probability": 0.85107421875}, {"start": 2955.3, "end": 2955.54, "word": " to", "probability": 0.97265625}, {"start": 2955.54, "end": 2955.54, "word": " do", "probability": 0.96728515625}, {"start": 2955.54, "end": 2955.62, "word": " with", "probability": 0.88525390625}, {"start": 2955.62, "end": 2955.66, "word": " the", "probability": 0.3896484375}, {"start": 2955.66, "end": 2955.8, "word": " draw", "probability": 0.7216796875}, {"start": 2955.8, "end": 2956.12, "word": " manager", "probability": 0.9580078125}, {"start": 2956.12, "end": 2956.32, "word": " how", "probability": 0.25732421875}, {"start": 2956.32, "end": 2956.46, "word": " the", "probability": 0.7314453125}, {"start": 2956.46, "end": 2956.62, "word": " shape", "probability": 0.865234375}, {"start": 2956.62, "end": 2956.76, "word": " will", "probability": 0.494873046875}, {"start": 2956.76, "end": 2956.88, "word": " be", "probability": 0.9072265625}, {"start": 2956.88, "end": 2957.1, "word": " drawn.", "probability": 0.6474609375}, {"start": 2957.34, "end": 2957.58, "word": " You", "probability": 0.50341796875}, {"start": 2957.58, "end": 2957.76, "word": " as", "probability": 0.58740234375}, {"start": 2957.76, "end": 2957.82, "word": " a", "probability": 0.708984375}, {"start": 2957.82, "end": 2958.14, "word": " programmer,", "probability": 0.93603515625}, {"start": 2958.66, "end": 2958.8, "word": " when", "probability": 0.91845703125}, {"start": 2958.8, "end": 2958.96, "word": " you", "probability": 0.93798828125}, {"start": 2958.96, "end": 2959.14, "word": " create", "probability": 0.62451171875}, {"start": 2959.14, "end": 2959.22, "word": " a", "probability": 0.9716796875}, {"start": 2959.22, "end": 2959.64, "word": " new", "probability": 0.89892578125}, {"start": 2959.64, "end": 2959.64, "word": " shape", "probability": 0.87744140625}, {"start": 2959.64, "end": 2959.86, "word": " and", "probability": 0.826171875}, {"start": 2959.86, "end": 2960.46, "word": " implement", "probability": 0.69873046875}, {"start": 2960.46, "end": 2960.62, "word": " it", "probability": 0.869140625}, {"start": 2960.62, "end": 2960.66, "word": " to", "probability": 0.5849609375}, {"start": 2960.66, "end": 2960.72, "word": " the", "probability": 0.87451171875}, {"start": 2960.72, "end": 2961.28, "word": " interface,", "probability": 0.86669921875}, {"start": 2961.62, "end": 2961.68, "word": " you", "probability": 0.890625}, {"start": 2961.68, "end": 2961.8, "word": " have", "probability": 0.3369140625}, {"start": 2961.8, "end": 2961.86, "word": " to", "probability": 0.97119140625}, {"start": 2961.86, "end": 2962.1, "word": " determine", "probability": 0.34814453125}, {"start": 2962.1, "end": 2962.28, "word": " what", "probability": 0.7529296875}, {"start": 2962.28, "end": 2962.32, "word": " this", "probability": 0.441650390625}, {"start": 2962.32, "end": 2962.64, "word": " is", "probability": 0.446044921875}, {"start": 2962.64, "end": 2963.12, "word": " to", "probability": 0.30712890625}, {"start": 2963.12, "end": 2963.28, "word": " draw.", "probability": 0.77001953125}, {"start": 2963.46, "end": 2963.78, "word": " My", "probability": 0.291259765625}, {"start": 2963.78, "end": 2964.04, "word": " job", "probability": 0.8857421875}, {"start": 2964.04, "end": 2964.2, "word": " is", "probability": 0.89794921875}, {"start": 2964.2, "end": 2964.22, "word": " to", "probability": 0.919921875}, {"start": 2964.22, "end": 2964.38, "word": " order", "probability": 0.47607421875}, {"start": 2964.38, "end": 2964.68, "word": " them", "probability": 0.810546875}, {"start": 2964.68, "end": 2964.8, "word": " and", "probability": 0.57177734375}, {"start": 2964.8, "end": 2964.96, "word": " tell", "probability": 0.64599609375}, {"start": 2964.96, "end": 2965.12, "word": " them", "probability": 0.88232421875}], "temperature": 1.0}, {"id": 117, "seek": 297324, "start": 2966.98, "end": 2973.24, "text": " public void draw Graphics", "tokens": [1908, 22009, 2642, 21884, 1167], "avg_logprob": -0.9322916467984518, "compression_ratio": 0.7647058823529411, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 2966.98, "end": 2968.38, "word": " public", "probability": 0.051361083984375}, {"start": 2968.38, "end": 2969.64, "word": " void", "probability": 0.7529296875}, {"start": 2969.64, "end": 2970.84, "word": " draw", "probability": 0.54443359375}, {"start": 2970.84, "end": 2973.24, "word": " Graphics", "probability": 0.5633544921875}], "temperature": 1.0}, {"id": 118, "seek": 299931, "start": 2975.53, "end": 2999.31, "text": "abstract method in the interface of course, as soon as you add the method in the interface it will ask you to add it where? in every shape, every shape you made in this circle as long as you made an implement for the shape, it must have made an implement for whom? for the draw, it will make it, it has determined the way to draw it and in the rectangle it also made an implement for the draw and it has determined the way to draw it you need to add a triangle", "tokens": [455, 372, 1897, 3170, 294, 264, 9226, 295, 1164, 11, 382, 2321, 382, 291, 909, 264, 3170, 294, 264, 9226, 309, 486, 1029, 291, 281, 909, 309, 689, 30, 294, 633, 3909, 11, 633, 3909, 291, 1027, 294, 341, 6329, 382, 938, 382, 291, 1027, 364, 4445, 337, 264, 3909, 11, 309, 1633, 362, 1027, 364, 4445, 337, 7101, 30, 337, 264, 2642, 11, 309, 486, 652, 309, 11, 309, 575, 9540, 264, 636, 281, 2642, 309, 293, 294, 264, 21930, 309, 611, 1027, 364, 4445, 337, 264, 2642, 293, 309, 575, 9540, 264, 636, 281, 2642, 309, 291, 643, 281, 909, 257, 13369], "avg_logprob": -0.5547618956792922, "compression_ratio": 2.2222222222222223, "no_speech_prob": 1.806020736694336e-05, "words": [{"start": 2975.5299999999997, "end": 2975.89, "word": "abstract", "probability": 0.654083251953125}, {"start": 2975.89, "end": 2976.23, "word": " method", "probability": 0.92724609375}, {"start": 2976.23, "end": 2976.91, "word": " in", "probability": 0.1854248046875}, {"start": 2976.91, "end": 2977.57, "word": " the", "probability": 0.6318359375}, {"start": 2977.57, "end": 2978.11, "word": " interface", "probability": 0.75}, {"start": 2978.11, "end": 2979.11, "word": " of", "probability": 0.125244140625}, {"start": 2979.11, "end": 2979.11, "word": " course,", "probability": 0.908203125}, {"start": 2979.49, "end": 2979.55, "word": " as", "probability": 0.256591796875}, {"start": 2979.55, "end": 2979.83, "word": " soon", "probability": 0.8603515625}, {"start": 2979.83, "end": 2979.93, "word": " as", "probability": 0.9638671875}, {"start": 2979.93, "end": 2980.09, "word": " you", "probability": 0.5205078125}, {"start": 2980.09, "end": 2980.25, "word": " add", "probability": 0.79248046875}, {"start": 2980.25, "end": 2980.43, "word": " the", "probability": 0.401123046875}, {"start": 2980.43, "end": 2980.63, "word": " method", "probability": 0.951171875}, {"start": 2980.63, "end": 2980.77, "word": " in", "probability": 0.57177734375}, {"start": 2980.77, "end": 2980.87, "word": " the", "probability": 0.8623046875}, {"start": 2980.87, "end": 2981.45, "word": " interface", "probability": 0.8330078125}, {"start": 2981.45, "end": 2982.25, "word": " it", "probability": 0.6396484375}, {"start": 2982.25, "end": 2982.29, "word": " will", "probability": 0.65380859375}, {"start": 2982.29, "end": 2982.51, "word": " ask", "probability": 0.83984375}, {"start": 2982.51, "end": 2982.77, "word": " you", "probability": 0.86669921875}, {"start": 2982.77, "end": 2982.85, "word": " to", "probability": 0.90234375}, {"start": 2982.85, "end": 2983.05, "word": " add", "probability": 0.89697265625}, {"start": 2983.05, "end": 2983.23, "word": " it", "probability": 0.67822265625}, {"start": 2983.23, "end": 2983.45, "word": " where?", "probability": 0.23828125}, {"start": 2983.97, "end": 2984.17, "word": " in", "probability": 0.5888671875}, {"start": 2984.17, "end": 2984.41, "word": " every", "probability": 0.398681640625}, {"start": 2984.41, "end": 2984.71, "word": " shape,", "probability": 0.888671875}, {"start": 2984.79, "end": 2985.03, "word": " every", "probability": 0.371826171875}, {"start": 2985.03, "end": 2985.27, "word": " shape", "probability": 0.90576171875}, {"start": 2985.27, "end": 2985.51, "word": " you", "probability": 0.62890625}, {"start": 2985.51, "end": 2985.75, "word": " made", "probability": 0.36279296875}, {"start": 2985.75, "end": 2985.87, "word": " in", "probability": 0.318115234375}, {"start": 2985.87, "end": 2986.05, "word": " this", "probability": 0.6826171875}, {"start": 2986.05, "end": 2986.61, "word": " circle", "probability": 0.94091796875}, {"start": 2986.61, "end": 2987.63, "word": " as", "probability": 0.34619140625}, {"start": 2987.63, "end": 2987.77, "word": " long", "probability": 0.76513671875}, {"start": 2987.77, "end": 2987.77, "word": " as", "probability": 0.95166015625}, {"start": 2987.77, "end": 2987.99, "word": " you", "probability": 0.9169921875}, {"start": 2987.99, "end": 2988.15, "word": " made", "probability": 0.53662109375}, {"start": 2988.15, "end": 2988.29, "word": " an", "probability": 0.474609375}, {"start": 2988.29, "end": 2988.53, "word": " implement", "probability": 0.68359375}, {"start": 2988.53, "end": 2988.77, "word": " for", "probability": 0.58935546875}, {"start": 2988.77, "end": 2988.83, "word": " the", "probability": 0.411865234375}, {"start": 2988.83, "end": 2988.97, "word": " shape,", "probability": 0.91455078125}, {"start": 2989.07, "end": 2989.11, "word": " it", "probability": 0.70263671875}, {"start": 2989.11, "end": 2989.25, "word": " must", "probability": 0.314208984375}, {"start": 2989.25, "end": 2989.53, "word": " have", "probability": 0.60693359375}, {"start": 2989.53, "end": 2989.73, "word": " made", "probability": 0.64453125}, {"start": 2989.73, "end": 2989.89, "word": " an", "probability": 0.81640625}, {"start": 2989.89, "end": 2990.19, "word": " implement", "probability": 0.89208984375}, {"start": 2990.19, "end": 2990.41, "word": " for", "probability": 0.80078125}, {"start": 2990.41, "end": 2990.63, "word": " whom?", "probability": 0.228271484375}, {"start": 2991.37, "end": 2991.53, "word": " for", "probability": 0.73876953125}, {"start": 2991.53, "end": 2991.55, "word": " the", "probability": 0.258544921875}, {"start": 2991.55, "end": 2991.65, "word": " draw,", "probability": 0.7314453125}, {"start": 2991.69, "end": 2991.77, "word": " it", "probability": 0.284912109375}, {"start": 2991.77, "end": 2991.77, "word": " will", "probability": 0.326904296875}, {"start": 2991.77, "end": 2992.05, "word": " make", "probability": 0.425048828125}, {"start": 2992.05, "end": 2992.33, "word": " it,", "probability": 0.7490234375}, {"start": 2992.33, "end": 2992.33, "word": " it", "probability": 0.31591796875}, {"start": 2992.33, "end": 2992.85, "word": " has", "probability": 0.3310546875}, {"start": 2992.85, "end": 2993.05, "word": " determined", "probability": 0.2222900390625}, {"start": 2993.05, "end": 2993.15, "word": " the", "probability": 0.4501953125}, {"start": 2993.15, "end": 2993.31, "word": " way", "probability": 0.75048828125}, {"start": 2993.31, "end": 2993.43, "word": " to", "probability": 0.345458984375}, {"start": 2993.43, "end": 2993.67, "word": " draw", "probability": 0.86376953125}, {"start": 2993.67, "end": 2993.99, "word": " it", "probability": 0.4443359375}, {"start": 2993.99, "end": 2994.71, "word": " and", "probability": 0.469970703125}, {"start": 2994.71, "end": 2994.81, "word": " in", "probability": 0.6689453125}, {"start": 2994.81, "end": 2994.89, "word": " the", "probability": 0.77978515625}, {"start": 2994.89, "end": 2995.31, "word": " rectangle", "probability": 0.93115234375}, {"start": 2995.31, "end": 2995.49, "word": " it", "probability": 0.377685546875}, {"start": 2995.49, "end": 2995.65, "word": " also", "probability": 0.451416015625}, {"start": 2995.65, "end": 2995.85, "word": " made", "probability": 0.779296875}, {"start": 2995.85, "end": 2995.99, "word": " an", "probability": 0.88134765625}, {"start": 2995.99, "end": 2996.25, "word": " implement", "probability": 0.87353515625}, {"start": 2996.25, "end": 2996.49, "word": " for", "probability": 0.68505859375}, {"start": 2996.49, "end": 2996.53, "word": " the", "probability": 0.6142578125}, {"start": 2996.53, "end": 2996.77, "word": " draw", "probability": 0.89990234375}, {"start": 2996.77, "end": 2997.61, "word": " and", "probability": 0.451171875}, {"start": 2997.61, "end": 2997.63, "word": " it", "probability": 0.417236328125}, {"start": 2997.63, "end": 2997.65, "word": " has", "probability": 0.75146484375}, {"start": 2997.65, "end": 2997.83, "word": " determined", "probability": 0.7939453125}, {"start": 2997.83, "end": 2997.99, "word": " the", "probability": 0.8251953125}, {"start": 2997.99, "end": 2998.09, "word": " way", "probability": 0.935546875}, {"start": 2998.09, "end": 2998.15, "word": " to", "probability": 0.87255859375}, {"start": 2998.15, "end": 2998.23, "word": " draw", "probability": 0.8984375}, {"start": 2998.23, "end": 2998.35, "word": " it", "probability": 0.78857421875}, {"start": 2998.35, "end": 2998.49, "word": " you", "probability": 0.59716796875}, {"start": 2998.49, "end": 2998.63, "word": " need", "probability": 0.401611328125}, {"start": 2998.63, "end": 2998.73, "word": " to", "probability": 0.9619140625}, {"start": 2998.73, "end": 2998.85, "word": " add", "probability": 0.88427734375}, {"start": 2998.85, "end": 2999.01, "word": " a", "probability": 0.5322265625}, {"start": 2999.01, "end": 2999.31, "word": " triangle", "probability": 0.54443359375}], "temperature": 1.0}, {"id": 119, "seek": 302360, "start": 3000.56, "end": 3023.6, "text": "What do you have to do? A new class? Implementation. And you have to make an implementation for whom? For the drone. You came, I'm reading about you, you bring me the shape of your class and the way you draw the shape you put in it. I stand as a drone manager, I get the shape and I call the drone. Okay?", "tokens": [3748, 360, 291, 362, 281, 360, 30, 316, 777, 1508, 30, 4331, 781, 19631, 13, 400, 291, 362, 281, 652, 364, 11420, 337, 7101, 30, 1171, 264, 13852, 13, 509, 1361, 11, 286, 478, 3760, 466, 291, 11, 291, 1565, 385, 264, 3909, 295, 428, 1508, 293, 264, 636, 291, 2642, 264, 3909, 291, 829, 294, 309, 13, 286, 1463, 382, 257, 13852, 6598, 11, 286, 483, 264, 3909, 293, 286, 818, 264, 13852, 13, 1033, 30], "avg_logprob": -0.6482371833079901, "compression_ratio": 1.6612021857923498, "no_speech_prob": 9.715557098388672e-06, "words": [{"start": 3000.56, "end": 3000.78, "word": "What", "probability": 0.1318359375}, {"start": 3000.78, "end": 3001.0, "word": " do", "probability": 0.30419921875}, {"start": 3001.0, "end": 3001.08, "word": " you", "probability": 0.9248046875}, {"start": 3001.08, "end": 3001.1, "word": " have", "probability": 0.428466796875}, {"start": 3001.1, "end": 3001.1, "word": " to", "probability": 0.962890625}, {"start": 3001.1, "end": 3001.58, "word": " do?", "probability": 0.931640625}, {"start": 3001.64, "end": 3001.74, "word": " A", "probability": 0.352294921875}, {"start": 3001.74, "end": 3001.74, "word": " new", "probability": 0.8603515625}, {"start": 3001.74, "end": 3002.32, "word": " class?", "probability": 0.9072265625}, {"start": 3002.82, "end": 3003.26, "word": " Implementation.", "probability": 0.7526041666666666}, {"start": 3003.8, "end": 3003.9, "word": " And", "probability": 0.52783203125}, {"start": 3003.9, "end": 3004.08, "word": " you", "probability": 0.244140625}, {"start": 3004.08, "end": 3004.08, "word": " have", "probability": 0.36328125}, {"start": 3004.08, "end": 3004.76, "word": " to", "probability": 0.951171875}, {"start": 3004.76, "end": 3004.96, "word": " make", "probability": 0.25244140625}, {"start": 3004.96, "end": 3005.08, "word": " an", "probability": 0.474365234375}, {"start": 3005.08, "end": 3005.44, "word": " implementation", "probability": 0.484375}, {"start": 3005.44, "end": 3005.58, "word": " for", "probability": 0.41650390625}, {"start": 3005.58, "end": 3005.82, "word": " whom?", "probability": 0.6357421875}, {"start": 3005.9, "end": 3006.34, "word": " For", "probability": 0.80615234375}, {"start": 3006.34, "end": 3006.44, "word": " the", "probability": 0.501953125}, {"start": 3006.44, "end": 3006.58, "word": " drone.", "probability": 0.84814453125}, {"start": 3007.14, "end": 3007.5, "word": " You", "probability": 0.52978515625}, {"start": 3007.5, "end": 3007.94, "word": " came,", "probability": 0.466064453125}, {"start": 3008.38, "end": 3008.6, "word": " I'm", "probability": 0.531005859375}, {"start": 3008.6, "end": 3008.78, "word": " reading", "probability": 0.68701171875}, {"start": 3008.78, "end": 3008.94, "word": " about", "probability": 0.399169921875}, {"start": 3008.94, "end": 3009.06, "word": " you,", "probability": 0.91796875}, {"start": 3009.2, "end": 3009.34, "word": " you", "probability": 0.60498046875}, {"start": 3009.34, "end": 3009.96, "word": " bring", "probability": 0.32421875}, {"start": 3009.96, "end": 3010.2, "word": " me", "probability": 0.7685546875}, {"start": 3010.2, "end": 3010.54, "word": " the", "probability": 0.1700439453125}, {"start": 3010.54, "end": 3010.74, "word": " shape", "probability": 0.454345703125}, {"start": 3010.74, "end": 3012.88, "word": " of", "probability": 0.82861328125}, {"start": 3012.88, "end": 3013.3, "word": " your", "probability": 0.57080078125}, {"start": 3013.3, "end": 3013.5, "word": " class", "probability": 0.41796875}, {"start": 3013.5, "end": 3014.36, "word": " and", "probability": 0.332275390625}, {"start": 3014.36, "end": 3015.08, "word": " the", "probability": 0.64013671875}, {"start": 3015.08, "end": 3015.28, "word": " way", "probability": 0.58544921875}, {"start": 3015.28, "end": 3015.5, "word": " you", "probability": 0.6865234375}, {"start": 3015.5, "end": 3015.66, "word": " draw", "probability": 0.70458984375}, {"start": 3015.66, "end": 3016.26, "word": " the", "probability": 0.468994140625}, {"start": 3016.26, "end": 3016.48, "word": " shape", "probability": 0.7060546875}, {"start": 3016.48, "end": 3016.7, "word": " you", "probability": 0.455322265625}, {"start": 3016.7, "end": 3016.98, "word": " put", "probability": 0.50634765625}, {"start": 3016.98, "end": 3017.2, "word": " in", "probability": 0.228759765625}, {"start": 3017.2, "end": 3017.54, "word": " it.", "probability": 0.51708984375}, {"start": 3017.78, "end": 3018.12, "word": " I", "probability": 0.83203125}, {"start": 3018.12, "end": 3018.36, "word": " stand", "probability": 0.2115478515625}, {"start": 3018.36, "end": 3018.64, "word": " as", "probability": 0.230224609375}, {"start": 3018.64, "end": 3018.76, "word": " a", "probability": 0.78564453125}, {"start": 3018.76, "end": 3018.94, "word": " drone", "probability": 0.8232421875}, {"start": 3018.94, "end": 3019.5, "word": " manager,", "probability": 0.947265625}, {"start": 3020.1, "end": 3020.26, "word": " I", "probability": 0.361572265625}, {"start": 3020.26, "end": 3020.38, "word": " get", "probability": 0.0728759765625}, {"start": 3020.38, "end": 3020.62, "word": " the", "probability": 0.845703125}, {"start": 3020.62, "end": 3020.88, "word": " shape", "probability": 0.88037109375}, {"start": 3020.88, "end": 3021.92, "word": " and", "probability": 0.50634765625}, {"start": 3021.92, "end": 3021.96, "word": " I", "probability": 0.6181640625}, {"start": 3021.96, "end": 3022.12, "word": " call", "probability": 0.279541015625}, {"start": 3022.12, "end": 3022.24, "word": " the", "probability": 0.58251953125}, {"start": 3022.24, "end": 3022.38, "word": " drone.", "probability": 0.95654296875}, {"start": 3023.36, "end": 3023.6, "word": " Okay?", "probability": 0.28515625}], "temperature": 1.0}, {"id": 120, "seek": 305379, "start": 3030.39, "end": 3053.79, "text": " Now, let's fix some things. Look at the Draw Manager, it doesn't know anything. Not a circle, not a rectangle, not a rectangle. It only deals with the meaning. The meaning is shape. Now, if I add new shapes and send them to it, it will accept them without any problem. If I add new shapes to the Draw Manager, there won't be any change. The only change is", "tokens": [823, 11, 718, 311, 3191, 512, 721, 13, 2053, 412, 264, 20386, 13821, 11, 309, 1177, 380, 458, 1340, 13, 1726, 257, 6329, 11, 406, 257, 21930, 11, 406, 257, 21930, 13, 467, 787, 11215, 365, 264, 3620, 13, 440, 3620, 307, 3909, 13, 823, 11, 498, 286, 909, 777, 10854, 293, 2845, 552, 281, 309, 11, 309, 486, 3241, 552, 1553, 604, 1154, 13, 759, 286, 909, 777, 10854, 281, 264, 20386, 13821, 11, 456, 1582, 380, 312, 604, 1319, 13, 440, 787, 1319, 307], "avg_logprob": -0.5190373755049431, "compression_ratio": 1.7450980392156863, "no_speech_prob": 5.125999450683594e-06, "words": [{"start": 3030.39, "end": 3030.87, "word": " Now,", "probability": 0.3837890625}, {"start": 3031.05, "end": 3031.51, "word": " let's", "probability": 0.647705078125}, {"start": 3031.51, "end": 3032.03, "word": " fix", "probability": 0.5107421875}, {"start": 3032.03, "end": 3032.31, "word": " some", "probability": 0.7119140625}, {"start": 3032.31, "end": 3032.77, "word": " things.", "probability": 0.5205078125}, {"start": 3033.37, "end": 3033.75, "word": " Look", "probability": 0.31103515625}, {"start": 3033.75, "end": 3033.87, "word": " at", "probability": 0.8681640625}, {"start": 3033.87, "end": 3033.93, "word": " the", "probability": 0.767578125}, {"start": 3033.93, "end": 3034.05, "word": " Draw", "probability": 0.389404296875}, {"start": 3034.05, "end": 3034.29, "word": " Manager,", "probability": 0.78662109375}, {"start": 3034.57, "end": 3034.71, "word": " it", "probability": 0.71533203125}, {"start": 3034.71, "end": 3034.75, "word": " doesn't", "probability": 0.78076171875}, {"start": 3034.75, "end": 3035.05, "word": " know", "probability": 0.79541015625}, {"start": 3035.05, "end": 3035.49, "word": " anything.", "probability": 0.80419921875}, {"start": 3035.55, "end": 3035.67, "word": " Not", "probability": 0.24755859375}, {"start": 3035.67, "end": 3035.81, "word": " a", "probability": 0.29833984375}, {"start": 3035.81, "end": 3036.19, "word": " circle,", "probability": 0.82958984375}, {"start": 3036.83, "end": 3036.91, "word": " not", "probability": 0.69921875}, {"start": 3036.91, "end": 3037.05, "word": " a", "probability": 0.88330078125}, {"start": 3037.05, "end": 3037.51, "word": " rectangle,", "probability": 0.939453125}, {"start": 3037.81, "end": 3037.89, "word": " not", "probability": 0.7431640625}, {"start": 3037.89, "end": 3037.95, "word": " a", "probability": 0.818359375}, {"start": 3037.95, "end": 3038.19, "word": " rectangle.", "probability": 0.28564453125}, {"start": 3038.41, "end": 3038.51, "word": " It", "probability": 0.464599609375}, {"start": 3038.51, "end": 3038.57, "word": " only", "probability": 0.36572265625}, {"start": 3038.57, "end": 3038.73, "word": " deals", "probability": 0.40478515625}, {"start": 3038.73, "end": 3038.85, "word": " with", "probability": 0.8837890625}, {"start": 3038.85, "end": 3038.91, "word": " the", "probability": 0.09881591796875}, {"start": 3038.91, "end": 3039.11, "word": " meaning.", "probability": 0.380615234375}, {"start": 3040.23, "end": 3040.33, "word": " The", "probability": 0.338134765625}, {"start": 3040.33, "end": 3040.59, "word": " meaning", "probability": 0.76513671875}, {"start": 3040.59, "end": 3041.03, "word": " is", "probability": 0.54345703125}, {"start": 3041.03, "end": 3041.35, "word": " shape.", "probability": 0.445556640625}, {"start": 3041.99, "end": 3042.13, "word": " Now,", "probability": 0.29345703125}, {"start": 3042.85, "end": 3042.85, "word": " if", "probability": 0.90771484375}, {"start": 3042.85, "end": 3043.45, "word": " I", "probability": 0.91943359375}, {"start": 3043.45, "end": 3043.61, "word": " add", "probability": 0.7265625}, {"start": 3043.61, "end": 3043.81, "word": " new", "probability": 0.734375}, {"start": 3043.81, "end": 3044.11, "word": " shapes", "probability": 0.85400390625}, {"start": 3044.11, "end": 3044.57, "word": " and", "probability": 0.84375}, {"start": 3044.57, "end": 3044.83, "word": " send", "probability": 0.64404296875}, {"start": 3044.83, "end": 3044.97, "word": " them", "probability": 0.76904296875}, {"start": 3044.97, "end": 3045.13, "word": " to", "probability": 0.8935546875}, {"start": 3045.13, "end": 3045.35, "word": " it,", "probability": 0.7177734375}, {"start": 3045.79, "end": 3046.45, "word": " it", "probability": 0.8837890625}, {"start": 3046.45, "end": 3046.57, "word": " will", "probability": 0.81591796875}, {"start": 3046.57, "end": 3046.81, "word": " accept", "probability": 0.300048828125}, {"start": 3046.81, "end": 3046.93, "word": " them", "probability": 0.74267578125}, {"start": 3046.93, "end": 3047.07, "word": " without", "probability": 0.86767578125}, {"start": 3047.07, "end": 3047.35, "word": " any", "probability": 0.685546875}, {"start": 3047.35, "end": 3047.65, "word": " problem.", "probability": 0.3017578125}, {"start": 3048.49, "end": 3048.75, "word": " If", "probability": 0.262939453125}, {"start": 3048.75, "end": 3048.79, "word": " I", "probability": 0.77197265625}, {"start": 3048.79, "end": 3048.79, "word": " add", "probability": 0.9150390625}, {"start": 3048.79, "end": 3049.55, "word": " new", "probability": 0.7958984375}, {"start": 3049.55, "end": 3049.55, "word": " shapes", "probability": 0.896484375}, {"start": 3049.55, "end": 3050.33, "word": " to", "probability": 0.79833984375}, {"start": 3050.33, "end": 3050.39, "word": " the", "probability": 0.464599609375}, {"start": 3050.39, "end": 3050.55, "word": " Draw", "probability": 0.646484375}, {"start": 3050.55, "end": 3050.87, "word": " Manager,", "probability": 0.90673828125}, {"start": 3051.23, "end": 3051.25, "word": " there", "probability": 0.50439453125}, {"start": 3051.25, "end": 3051.47, "word": " won't", "probability": 0.59588623046875}, {"start": 3051.47, "end": 3051.61, "word": " be", "probability": 0.94677734375}, {"start": 3051.61, "end": 3051.85, "word": " any", "probability": 0.9052734375}, {"start": 3051.85, "end": 3052.19, "word": " change.", "probability": 0.7001953125}, {"start": 3052.79, "end": 3053.27, "word": " The", "probability": 0.479736328125}, {"start": 3053.27, "end": 3053.47, "word": " only", "probability": 0.473876953125}, {"start": 3053.47, "end": 3053.57, "word": " change", "probability": 0.87841796875}, {"start": 3053.57, "end": 3053.79, "word": " is", "probability": 0.6123046875}], "temperature": 1.0}, {"id": 121, "seek": 307083, "start": 3055.89, "end": 3070.83, "text": "In the new class that you added in the graphical interface, it will make a button. And by the way, in front of it, even the button will do it by itself. Okay? So you just reach a stage in the design patterns, make the class and throw it in the program.", "tokens": [4575, 264, 777, 1508, 300, 291, 3869, 294, 264, 35942, 9226, 11, 309, 486, 652, 257, 2960, 13, 400, 538, 264, 636, 11, 294, 1868, 295, 309, 11, 754, 264, 2960, 486, 360, 309, 538, 2564, 13, 1033, 30, 407, 291, 445, 2524, 257, 3233, 294, 264, 1715, 8294, 11, 652, 264, 1508, 293, 3507, 309, 294, 264, 1461, 13], "avg_logprob": -0.5845286807075876, "compression_ratio": 1.5089820359281436, "no_speech_prob": 8.761882781982422e-06, "words": [{"start": 3055.89, "end": 3056.29, "word": "In", "probability": 0.35498046875}, {"start": 3056.29, "end": 3056.69, "word": " the", "probability": 0.71728515625}, {"start": 3056.69, "end": 3056.77, "word": " new", "probability": 0.71240234375}, {"start": 3056.77, "end": 3057.05, "word": " class", "probability": 0.88525390625}, {"start": 3057.05, "end": 3057.53, "word": " that", "probability": 0.388671875}, {"start": 3057.53, "end": 3057.71, "word": " you", "probability": 0.84375}, {"start": 3057.71, "end": 3057.95, "word": " added", "probability": 0.60498046875}, {"start": 3057.95, "end": 3058.21, "word": " in", "probability": 0.5361328125}, {"start": 3058.21, "end": 3058.31, "word": " the", "probability": 0.7333984375}, {"start": 3058.31, "end": 3058.61, "word": " graphical", "probability": 0.6630859375}, {"start": 3058.61, "end": 3059.17, "word": " interface,", "probability": 0.90966796875}, {"start": 3059.31, "end": 3059.31, "word": " it", "probability": 0.5244140625}, {"start": 3059.31, "end": 3059.39, "word": " will", "probability": 0.6591796875}, {"start": 3059.39, "end": 3059.75, "word": " make", "probability": 0.30712890625}, {"start": 3059.75, "end": 3060.25, "word": " a", "probability": 0.52490234375}, {"start": 3060.25, "end": 3060.43, "word": " button.", "probability": 0.74462890625}, {"start": 3061.41, "end": 3061.49, "word": " And", "probability": 0.343505859375}, {"start": 3061.49, "end": 3061.59, "word": " by", "probability": 0.60205078125}, {"start": 3061.59, "end": 3061.65, "word": " the", "probability": 0.9306640625}, {"start": 3061.65, "end": 3061.81, "word": " way,", "probability": 0.95751953125}, {"start": 3061.95, "end": 3062.03, "word": " in", "probability": 0.2076416015625}, {"start": 3062.03, "end": 3062.49, "word": " front", "probability": 0.51171875}, {"start": 3062.49, "end": 3062.49, "word": " of", "probability": 0.734375}, {"start": 3062.49, "end": 3062.99, "word": " it,", "probability": 0.62646484375}, {"start": 3063.17, "end": 3063.61, "word": " even", "probability": 0.60791015625}, {"start": 3063.61, "end": 3063.79, "word": " the", "probability": 0.794921875}, {"start": 3063.79, "end": 3064.05, "word": " button", "probability": 0.8525390625}, {"start": 3064.05, "end": 3064.71, "word": " will", "probability": 0.56201171875}, {"start": 3064.71, "end": 3064.99, "word": " do", "probability": 0.1634521484375}, {"start": 3064.99, "end": 3065.45, "word": " it", "probability": 0.47802734375}, {"start": 3065.45, "end": 3065.47, "word": " by", "probability": 0.425537109375}, {"start": 3065.47, "end": 3065.65, "word": " itself.", "probability": 0.77734375}, {"start": 3065.87, "end": 3066.05, "word": " Okay?", "probability": 0.181640625}, {"start": 3066.31, "end": 3066.47, "word": " So", "probability": 0.38232421875}, {"start": 3066.47, "end": 3066.65, "word": " you", "probability": 0.480224609375}, {"start": 3066.65, "end": 3066.85, "word": " just", "probability": 0.28564453125}, {"start": 3066.85, "end": 3067.13, "word": " reach", "probability": 0.311767578125}, {"start": 3067.13, "end": 3067.31, "word": " a", "probability": 0.63623046875}, {"start": 3067.31, "end": 3067.63, "word": " stage", "probability": 0.63134765625}, {"start": 3067.63, "end": 3068.13, "word": " in", "probability": 0.61474609375}, {"start": 3068.13, "end": 3068.19, "word": " the", "probability": 0.5185546875}, {"start": 3068.19, "end": 3068.43, "word": " design", "probability": 0.84765625}, {"start": 3068.43, "end": 3068.85, "word": " patterns,", "probability": 0.5869140625}, {"start": 3069.31, "end": 3069.51, "word": " make", "probability": 0.28173828125}, {"start": 3069.51, "end": 3069.69, "word": " the", "probability": 0.6025390625}, {"start": 3069.69, "end": 3069.89, "word": " class", "probability": 0.939453125}, {"start": 3069.89, "end": 3070.07, "word": " and", "probability": 0.734375}, {"start": 3070.07, "end": 3070.27, "word": " throw", "probability": 0.213134765625}, {"start": 3070.27, "end": 3070.41, "word": " it", "probability": 0.9306640625}, {"start": 3070.41, "end": 3070.53, "word": " in", "probability": 0.736328125}, {"start": 3070.53, "end": 3070.61, "word": " the", "probability": 0.87890625}, {"start": 3070.61, "end": 3070.83, "word": " program.", "probability": 0.80859375}], "temperature": 1.0}, {"id": 122, "seek": 310142, "start": 3072.14, "end": 3101.42, "text": " and it will work by itself as if you were doing a plugin ok? let's go back to draw I still have a mistake in the GUI where is it? I will stop having draw circle and draw rectangle I now have only one thing which is called draw shape if you have draw shape, do you think you can draw a circle? yes, you can do that ok? and here also I don't have draw rectangle I have draw shape and I don't have draw circle, no solid circle draw shape", "tokens": [293, 309, 486, 589, 538, 2564, 382, 498, 291, 645, 884, 257, 23407, 3133, 30, 718, 311, 352, 646, 281, 2642, 286, 920, 362, 257, 6146, 294, 264, 17917, 40, 689, 307, 309, 30, 286, 486, 1590, 1419, 2642, 6329, 293, 2642, 21930, 286, 586, 362, 787, 472, 551, 597, 307, 1219, 2642, 3909, 498, 291, 362, 2642, 3909, 11, 360, 291, 519, 291, 393, 2642, 257, 6329, 30, 2086, 11, 291, 393, 360, 300, 3133, 30, 293, 510, 611, 286, 500, 380, 362, 2642, 21930, 286, 362, 2642, 3909, 293, 286, 500, 380, 362, 2642, 6329, 11, 572, 5100, 6329, 2642, 3909], "avg_logprob": -0.576021634042263, "compression_ratio": 1.891304347826087, "no_speech_prob": 2.4437904357910156e-06, "words": [{"start": 3072.14, "end": 3072.34, "word": " and", "probability": 0.2890625}, {"start": 3072.34, "end": 3072.46, "word": " it", "probability": 0.44189453125}, {"start": 3072.46, "end": 3072.46, "word": " will", "probability": 0.296875}, {"start": 3072.46, "end": 3072.92, "word": " work", "probability": 0.7548828125}, {"start": 3072.92, "end": 3072.92, "word": " by", "probability": 0.35693359375}, {"start": 3072.92, "end": 3072.92, "word": " itself", "probability": 0.75}, {"start": 3072.92, "end": 3073.38, "word": " as", "probability": 0.1783447265625}, {"start": 3073.38, "end": 3073.6, "word": " if", "probability": 0.76416015625}, {"start": 3073.6, "end": 3073.72, "word": " you", "probability": 0.89404296875}, {"start": 3073.72, "end": 3073.82, "word": " were", "probability": 0.41650390625}, {"start": 3073.82, "end": 3073.9, "word": " doing", "probability": 0.29345703125}, {"start": 3073.9, "end": 3074.04, "word": " a", "probability": 0.6884765625}, {"start": 3074.04, "end": 3074.34, "word": " plugin", "probability": 0.6796875}, {"start": 3074.34, "end": 3075.24, "word": " ok?", "probability": 0.1859130859375}, {"start": 3075.82, "end": 3076.26, "word": " let's", "probability": 0.6043701171875}, {"start": 3076.26, "end": 3076.42, "word": " go", "probability": 0.64892578125}, {"start": 3076.42, "end": 3076.5, "word": " back", "probability": 0.8662109375}, {"start": 3076.5, "end": 3076.7, "word": " to", "probability": 0.83642578125}, {"start": 3076.7, "end": 3077.04, "word": " draw", "probability": 0.287353515625}, {"start": 3077.04, "end": 3077.64, "word": " I", "probability": 0.26318359375}, {"start": 3077.64, "end": 3077.8, "word": " still", "probability": 0.541015625}, {"start": 3077.8, "end": 3078.14, "word": " have", "probability": 0.8818359375}, {"start": 3078.14, "end": 3078.24, "word": " a", "probability": 0.5107421875}, {"start": 3078.24, "end": 3078.24, "word": " mistake", "probability": 0.75732421875}, {"start": 3078.24, "end": 3078.26, "word": " in", "probability": 0.7880859375}, {"start": 3078.26, "end": 3078.36, "word": " the", "probability": 0.2386474609375}, {"start": 3078.36, "end": 3078.78, "word": " GUI", "probability": 0.92724609375}, {"start": 3078.78, "end": 3079.3, "word": " where", "probability": 0.537109375}, {"start": 3079.3, "end": 3079.4, "word": " is", "probability": 0.62841796875}, {"start": 3079.4, "end": 3079.54, "word": " it?", "probability": 0.9267578125}, {"start": 3080.02, "end": 3080.3, "word": " I", "probability": 0.5458984375}, {"start": 3080.3, "end": 3080.36, "word": " will", "probability": 0.31494140625}, {"start": 3080.36, "end": 3080.66, "word": " stop", "probability": 0.456298828125}, {"start": 3080.66, "end": 3080.9, "word": " having", "probability": 0.68212890625}, {"start": 3080.9, "end": 3081.12, "word": " draw", "probability": 0.484130859375}, {"start": 3081.12, "end": 3081.54, "word": " circle", "probability": 0.8564453125}, {"start": 3081.54, "end": 3081.68, "word": " and", "probability": 0.908203125}, {"start": 3081.68, "end": 3081.96, "word": " draw", "probability": 0.7890625}, {"start": 3081.96, "end": 3083.02, "word": " rectangle", "probability": 0.935546875}, {"start": 3083.02, "end": 3083.24, "word": " I", "probability": 0.361328125}, {"start": 3083.24, "end": 3083.32, "word": " now", "probability": 0.36865234375}, {"start": 3083.32, "end": 3083.52, "word": " have", "probability": 0.86181640625}, {"start": 3083.52, "end": 3083.78, "word": " only", "probability": 0.335205078125}, {"start": 3083.78, "end": 3084.06, "word": " one", "probability": 0.84765625}, {"start": 3084.06, "end": 3084.06, "word": " thing", "probability": 0.130126953125}, {"start": 3084.06, "end": 3084.16, "word": " which", "probability": 0.17138671875}, {"start": 3084.16, "end": 3084.32, "word": " is", "probability": 0.88720703125}, {"start": 3084.32, "end": 3084.44, "word": " called", "probability": 0.630859375}, {"start": 3084.44, "end": 3084.78, "word": " draw", "probability": 0.681640625}, {"start": 3084.78, "end": 3085.84, "word": " shape", "probability": 0.916015625}, {"start": 3085.84, "end": 3086.66, "word": " if", "probability": 0.2279052734375}, {"start": 3086.66, "end": 3086.82, "word": " you", "probability": 0.55810546875}, {"start": 3086.82, "end": 3086.82, "word": " have", "probability": 0.2337646484375}, {"start": 3086.82, "end": 3087.1, "word": " draw", "probability": 0.49462890625}, {"start": 3087.1, "end": 3087.36, "word": " shape,", "probability": 0.93212890625}, {"start": 3087.46, "end": 3087.56, "word": " do", "probability": 0.359619140625}, {"start": 3087.56, "end": 3087.56, "word": " you", "probability": 0.96923828125}, {"start": 3087.56, "end": 3087.66, "word": " think", "probability": 0.1295166015625}, {"start": 3087.66, "end": 3087.8, "word": " you", "probability": 0.78857421875}, {"start": 3087.8, "end": 3087.84, "word": " can", "probability": 0.342041015625}, {"start": 3087.84, "end": 3087.96, "word": " draw", "probability": 0.302001953125}, {"start": 3087.96, "end": 3088.08, "word": " a", "probability": 0.7216796875}, {"start": 3088.08, "end": 3088.36, "word": " circle?", "probability": 0.96142578125}, {"start": 3088.56, "end": 3089.0, "word": " yes,", "probability": 0.63623046875}, {"start": 3089.04, "end": 3089.16, "word": " you", "probability": 0.2235107421875}, {"start": 3089.16, "end": 3089.34, "word": " can", "probability": 0.501953125}, {"start": 3089.34, "end": 3089.34, "word": " do", "probability": 0.38720703125}, {"start": 3089.34, "end": 3090.14, "word": " that", "probability": 0.455810546875}, {"start": 3090.14, "end": 3090.44, "word": " ok?", "probability": 0.461181640625}, {"start": 3090.7, "end": 3090.94, "word": " and", "probability": 0.64306640625}, {"start": 3090.94, "end": 3091.14, "word": " here", "probability": 0.63330078125}, {"start": 3091.14, "end": 3091.38, "word": " also", "probability": 0.2071533203125}, {"start": 3091.38, "end": 3091.52, "word": " I", "probability": 0.60107421875}, {"start": 3091.52, "end": 3091.56, "word": " don't", "probability": 0.857666015625}, {"start": 3091.56, "end": 3091.72, "word": " have", "probability": 0.9482421875}, {"start": 3091.72, "end": 3091.98, "word": " draw", "probability": 0.5400390625}, {"start": 3091.98, "end": 3092.48, "word": " rectangle", "probability": 0.96484375}, {"start": 3092.48, "end": 3094.36, "word": " I", "probability": 0.892578125}, {"start": 3094.36, "end": 3094.54, "word": " have", "probability": 0.86669921875}, {"start": 3094.54, "end": 3094.96, "word": " draw", "probability": 0.8662109375}, {"start": 3094.96, "end": 3096.04, "word": " shape", "probability": 0.91015625}, {"start": 3096.04, "end": 3097.98, "word": " and", "probability": 0.70263671875}, {"start": 3097.98, "end": 3098.2, "word": " I", "probability": 0.92138671875}, {"start": 3098.2, "end": 3098.2, "word": " don't", "probability": 0.933837890625}, {"start": 3098.2, "end": 3098.3, "word": " have", "probability": 0.94775390625}, {"start": 3098.3, "end": 3098.6, "word": " draw", "probability": 0.6435546875}, {"start": 3098.6, "end": 3099.02, "word": " circle,", "probability": 0.9560546875}, {"start": 3099.16, "end": 3099.24, "word": " no", "probability": 0.56640625}, {"start": 3099.24, "end": 3099.46, "word": " solid", "probability": 0.51708984375}, {"start": 3099.46, "end": 3099.94, "word": " circle", "probability": 0.958984375}, {"start": 3099.94, "end": 3100.44, "word": " draw", "probability": 0.54296875}, {"start": 3100.44, "end": 3101.42, "word": " shape", "probability": 0.90869140625}], "temperature": 1.0}, {"id": 123, "seek": 312322, "start": 3103.74, "end": 3123.22, "text": "Clear calls clear and undo calls undo Now if I run this application it will run Because this is circle, this is rectangle, this is clear and this is undo The idea is that when you add a new class", "tokens": [34, 5797, 5498, 1850, 293, 23779, 5498, 23779, 823, 498, 286, 1190, 341, 3861, 309, 486, 1190, 1436, 341, 307, 6329, 11, 341, 307, 21930, 11, 341, 307, 1850, 293, 341, 307, 23779, 440, 1558, 307, 300, 562, 291, 909, 257, 777, 1508], "avg_logprob": -0.4172585105354136, "compression_ratio": 1.56, "no_speech_prob": 2.7418136596679688e-06, "words": [{"start": 3103.7400000000002, "end": 3104.42, "word": "Clear", "probability": 0.54278564453125}, {"start": 3104.42, "end": 3104.8, "word": " calls", "probability": 0.250732421875}, {"start": 3104.8, "end": 3105.14, "word": " clear", "probability": 0.69677734375}, {"start": 3105.14, "end": 3105.34, "word": " and", "probability": 0.7119140625}, {"start": 3105.34, "end": 3105.64, "word": " undo", "probability": 0.810546875}, {"start": 3105.64, "end": 3106.18, "word": " calls", "probability": 0.736328125}, {"start": 3106.18, "end": 3107.66, "word": " undo", "probability": 0.8642578125}, {"start": 3107.66, "end": 3108.78, "word": " Now", "probability": 0.33056640625}, {"start": 3108.78, "end": 3109.12, "word": " if", "probability": 0.70263671875}, {"start": 3109.12, "end": 3109.48, "word": " I", "probability": 0.85400390625}, {"start": 3109.48, "end": 3109.92, "word": " run", "probability": 0.54443359375}, {"start": 3109.92, "end": 3110.12, "word": " this", "probability": 0.826171875}, {"start": 3110.12, "end": 3110.56, "word": " application", "probability": 0.3662109375}, {"start": 3110.56, "end": 3111.9, "word": " it", "probability": 0.30322265625}, {"start": 3111.9, "end": 3111.94, "word": " will", "probability": 0.80126953125}, {"start": 3111.94, "end": 3112.2, "word": " run", "probability": 0.83740234375}, {"start": 3112.2, "end": 3113.72, "word": " Because", "probability": 0.2196044921875}, {"start": 3113.72, "end": 3113.88, "word": " this", "probability": 0.58447265625}, {"start": 3113.88, "end": 3113.88, "word": " is", "probability": 0.87548828125}, {"start": 3113.88, "end": 3114.38, "word": " circle,", "probability": 0.79296875}, {"start": 3115.96, "end": 3116.06, "word": " this", "probability": 0.61279296875}, {"start": 3116.06, "end": 3116.08, "word": " is", "probability": 0.8525390625}, {"start": 3116.08, "end": 3116.62, "word": " rectangle,", "probability": 0.931640625}, {"start": 3117.54, "end": 3117.68, "word": " this", "probability": 0.87255859375}, {"start": 3117.68, "end": 3117.72, "word": " is", "probability": 0.93994140625}, {"start": 3117.72, "end": 3118.12, "word": " clear", "probability": 0.9228515625}, {"start": 3118.12, "end": 3119.04, "word": " and", "probability": 0.71044921875}, {"start": 3119.04, "end": 3119.3, "word": " this", "probability": 0.92333984375}, {"start": 3119.3, "end": 3120.28, "word": " is", "probability": 0.94482421875}, {"start": 3120.28, "end": 3120.86, "word": " undo", "probability": 0.95166015625}, {"start": 3120.86, "end": 3121.5, "word": " The", "probability": 0.398681640625}, {"start": 3121.5, "end": 3121.78, "word": " idea", "probability": 0.83251953125}, {"start": 3121.78, "end": 3121.98, "word": " is", "probability": 0.5791015625}, {"start": 3121.98, "end": 3122.26, "word": " that", "probability": 0.404541015625}, {"start": 3122.26, "end": 3122.48, "word": " when", "probability": 0.728515625}, {"start": 3122.48, "end": 3122.6, "word": " you", "probability": 0.92919921875}, {"start": 3122.6, "end": 3122.8, "word": " add", "probability": 0.88037109375}, {"start": 3122.8, "end": 3122.96, "word": " a", "probability": 0.84619140625}, {"start": 3122.96, "end": 3122.96, "word": " new", "probability": 0.89404296875}, {"start": 3122.96, "end": 3123.22, "word": " class", "probability": 0.96337890625}], "temperature": 1.0}, {"id": 124, "seek": 313915, "start": 3125.59, "end": 3139.15, "text": " For example, if you want to create a triangle, right click on it and choose New Java Class Triangle What should we do next? Go to Implements", "tokens": [1171, 1365, 11, 498, 291, 528, 281, 1884, 257, 13369, 11, 558, 2052, 322, 309, 293, 2826, 1873, 10745, 9471, 10931, 7846, 708, 820, 321, 360, 958, 30, 1037, 281, 4331, 781, 1117], "avg_logprob": -0.6112132598372066, "compression_ratio": 1.205128205128205, "no_speech_prob": 1.7285346984863281e-06, "words": [{"start": 3125.5900000000006, "end": 3126.3100000000004, "word": " For", "probability": 0.10333251953125}, {"start": 3126.3100000000004, "end": 3127.03, "word": " example,", "probability": 0.88232421875}, {"start": 3127.23, "end": 3127.27, "word": " if", "probability": 0.19921875}, {"start": 3127.27, "end": 3127.41, "word": " you", "probability": 0.92236328125}, {"start": 3127.41, "end": 3127.55, "word": " want", "probability": 0.73193359375}, {"start": 3127.55, "end": 3127.63, "word": " to", "probability": 0.96240234375}, {"start": 3127.63, "end": 3127.81, "word": " create", "probability": 0.40380859375}, {"start": 3127.81, "end": 3127.95, "word": " a", "probability": 0.908203125}, {"start": 3127.95, "end": 3128.37, "word": " triangle,", "probability": 0.861328125}, {"start": 3129.13, "end": 3129.55, "word": " right", "probability": 0.2244873046875}, {"start": 3129.55, "end": 3129.73, "word": " click", "probability": 0.63330078125}, {"start": 3129.73, "end": 3130.59, "word": " on", "probability": 0.400634765625}, {"start": 3130.59, "end": 3130.59, "word": " it", "probability": 0.501953125}, {"start": 3130.59, "end": 3130.63, "word": " and", "probability": 0.5302734375}, {"start": 3130.63, "end": 3130.63, "word": " choose", "probability": 0.390380859375}, {"start": 3130.63, "end": 3131.07, "word": " New", "probability": 0.25341796875}, {"start": 3131.07, "end": 3131.87, "word": " Java", "probability": 0.399658203125}, {"start": 3131.87, "end": 3132.37, "word": " Class", "probability": 0.89599609375}, {"start": 3132.37, "end": 3133.55, "word": " Triangle", "probability": 0.812255859375}, {"start": 3133.55, "end": 3135.87, "word": " What", "probability": 0.07281494140625}, {"start": 3135.87, "end": 3136.93, "word": " should", "probability": 0.351318359375}, {"start": 3136.93, "end": 3137.03, "word": " we", "probability": 0.615234375}, {"start": 3137.03, "end": 3137.33, "word": " do", "probability": 0.94482421875}, {"start": 3137.33, "end": 3137.43, "word": " next?", "probability": 0.4560546875}, {"start": 3137.69, "end": 3138.17, "word": " Go", "probability": 0.54833984375}, {"start": 3138.17, "end": 3138.27, "word": " to", "probability": 0.90087890625}, {"start": 3138.27, "end": 3139.15, "word": " Implements", "probability": 0.7467447916666666}], "temperature": 1.0}, {"id": 125, "seek": 316417, "start": 3140.75, "end": 3164.17, "text": " Okay? Shape. As soon as you implement it, come here. Okay? As long as you are a shape, explain to me how to draw the shape. Here you put the code of who you want to draw. You define him as a programmer. What is his job? He takes the shape and tells him to draw it. So we united the different types of shapes into one shape. Now the draw manager deals with the type of interface.", "tokens": [1033, 30, 49148, 13, 1018, 2321, 382, 291, 4445, 309, 11, 808, 510, 13, 1033, 30, 1018, 938, 382, 291, 366, 257, 3909, 11, 2903, 281, 385, 577, 281, 2642, 264, 3909, 13, 1692, 291, 829, 264, 3089, 295, 567, 291, 528, 281, 2642, 13, 509, 6964, 796, 382, 257, 32116, 13, 708, 307, 702, 1691, 30, 634, 2516, 264, 3909, 293, 5112, 796, 281, 2642, 309, 13, 407, 321, 18883, 264, 819, 3467, 295, 10854, 666, 472, 3909, 13, 823, 264, 2642, 6598, 11215, 365, 264, 2010, 295, 9226, 13], "avg_logprob": -0.5084918672623842, "compression_ratio": 1.6478260869565218, "no_speech_prob": 5.0127506256103516e-05, "words": [{"start": 3140.75, "end": 3141.19, "word": " Okay?", "probability": 0.054351806640625}, {"start": 3141.71, "end": 3141.95, "word": " Shape.", "probability": 0.69775390625}, {"start": 3142.31, "end": 3142.63, "word": " As", "probability": 0.291748046875}, {"start": 3142.63, "end": 3142.83, "word": " soon", "probability": 0.85791015625}, {"start": 3142.83, "end": 3142.87, "word": " as", "probability": 0.97119140625}, {"start": 3142.87, "end": 3143.07, "word": " you", "probability": 0.8134765625}, {"start": 3143.07, "end": 3143.55, "word": " implement", "probability": 0.33984375}, {"start": 3143.55, "end": 3143.79, "word": " it,", "probability": 0.63330078125}, {"start": 3143.81, "end": 3143.95, "word": " come", "probability": 0.189208984375}, {"start": 3143.95, "end": 3144.31, "word": " here.", "probability": 0.45947265625}, {"start": 3144.85, "end": 3145.05, "word": " Okay?", "probability": 0.42919921875}, {"start": 3145.25, "end": 3145.67, "word": " As", "probability": 0.1541748046875}, {"start": 3145.67, "end": 3146.51, "word": " long", "probability": 0.4111328125}, {"start": 3146.51, "end": 3146.53, "word": " as", "probability": 0.966796875}, {"start": 3146.53, "end": 3146.75, "word": " you", "probability": 0.82958984375}, {"start": 3146.75, "end": 3146.79, "word": " are", "probability": 0.431884765625}, {"start": 3146.79, "end": 3146.79, "word": " a", "probability": 0.271240234375}, {"start": 3146.79, "end": 3147.09, "word": " shape,", "probability": 0.8896484375}, {"start": 3147.19, "end": 3147.31, "word": " explain", "probability": 0.5732421875}, {"start": 3147.31, "end": 3147.31, "word": " to", "probability": 0.6630859375}, {"start": 3147.31, "end": 3147.69, "word": " me", "probability": 0.9326171875}, {"start": 3147.69, "end": 3147.85, "word": " how", "probability": 0.8330078125}, {"start": 3147.85, "end": 3148.19, "word": " to", "probability": 0.6787109375}, {"start": 3148.19, "end": 3148.41, "word": " draw", "probability": 0.8720703125}, {"start": 3148.41, "end": 3149.47, "word": " the", "probability": 0.28466796875}, {"start": 3149.47, "end": 3149.73, "word": " shape.", "probability": 0.88037109375}, {"start": 3149.79, "end": 3150.01, "word": " Here", "probability": 0.734375}, {"start": 3150.01, "end": 3150.19, "word": " you", "probability": 0.7001953125}, {"start": 3150.19, "end": 3150.41, "word": " put", "probability": 0.5009765625}, {"start": 3150.41, "end": 3150.57, "word": " the", "probability": 0.76611328125}, {"start": 3150.57, "end": 3150.79, "word": " code", "probability": 0.90771484375}, {"start": 3150.79, "end": 3150.91, "word": " of", "probability": 0.11553955078125}, {"start": 3150.91, "end": 3151.39, "word": " who", "probability": 0.494384765625}, {"start": 3151.39, "end": 3151.39, "word": " you", "probability": 0.7275390625}, {"start": 3151.39, "end": 3151.39, "word": " want", "probability": 0.300048828125}, {"start": 3151.39, "end": 3151.39, "word": " to", "probability": 0.93017578125}, {"start": 3151.39, "end": 3151.39, "word": " draw.", "probability": 0.84228515625}, {"start": 3151.99, "end": 3152.43, "word": " You", "probability": 0.837890625}, {"start": 3152.43, "end": 3152.81, "word": " define", "probability": 0.454345703125}, {"start": 3152.81, "end": 3152.95, "word": " him", "probability": 0.11474609375}, {"start": 3152.95, "end": 3153.05, "word": " as", "probability": 0.919921875}, {"start": 3153.05, "end": 3153.13, "word": " a", "probability": 0.7421875}, {"start": 3153.13, "end": 3153.31, "word": " programmer.", "probability": 0.509765625}, {"start": 3153.91, "end": 3154.25, "word": " What", "probability": 0.7431640625}, {"start": 3154.25, "end": 3154.25, "word": " is", "probability": 0.8115234375}, {"start": 3154.25, "end": 3154.33, "word": " his", "probability": 0.94677734375}, {"start": 3154.33, "end": 3154.59, "word": " job?", "probability": 0.72509765625}, {"start": 3155.05, "end": 3155.39, "word": " He", "probability": 0.6337890625}, {"start": 3155.39, "end": 3155.57, "word": " takes", "probability": 0.6865234375}, {"start": 3155.57, "end": 3155.75, "word": " the", "probability": 0.85107421875}, {"start": 3155.75, "end": 3155.91, "word": " shape", "probability": 0.91650390625}, {"start": 3155.91, "end": 3156.03, "word": " and", "probability": 0.91357421875}, {"start": 3156.03, "end": 3156.21, "word": " tells", "probability": 0.41845703125}, {"start": 3156.21, "end": 3156.45, "word": " him", "probability": 0.85693359375}, {"start": 3156.45, "end": 3157.07, "word": " to", "probability": 0.75830078125}, {"start": 3157.07, "end": 3157.25, "word": " draw", "probability": 0.90087890625}, {"start": 3157.25, "end": 3157.49, "word": " it.", "probability": 0.5390625}, {"start": 3157.95, "end": 3158.13, "word": " So", "probability": 0.38037109375}, {"start": 3158.13, "end": 3158.37, "word": " we", "probability": 0.60498046875}, {"start": 3158.37, "end": 3158.73, "word": " united", "probability": 0.368408203125}, {"start": 3158.73, "end": 3158.93, "word": " the", "probability": 0.46240234375}, {"start": 3158.93, "end": 3159.13, "word": " different", "probability": 0.68994140625}, {"start": 3159.13, "end": 3159.13, "word": " types", "probability": 0.4599609375}, {"start": 3159.13, "end": 3159.17, "word": " of", "probability": 0.521484375}, {"start": 3159.17, "end": 3159.91, "word": " shapes", "probability": 0.84423828125}, {"start": 3159.91, "end": 3160.13, "word": " into", "probability": 0.5107421875}, {"start": 3160.13, "end": 3160.67, "word": " one", "probability": 0.9248046875}, {"start": 3160.67, "end": 3160.81, "word": " shape.", "probability": 0.462890625}, {"start": 3161.19, "end": 3161.39, "word": " Now", "probability": 0.418701171875}, {"start": 3161.39, "end": 3161.69, "word": " the", "probability": 0.3994140625}, {"start": 3161.69, "end": 3161.89, "word": " draw", "probability": 0.416015625}, {"start": 3161.89, "end": 3162.31, "word": " manager", "probability": 0.9609375}, {"start": 3162.31, "end": 3163.09, "word": " deals", "probability": 0.48779296875}, {"start": 3163.09, "end": 3163.27, "word": " with", "probability": 0.89599609375}, {"start": 3163.27, "end": 3163.39, "word": " the", "probability": 0.802734375}, {"start": 3163.39, "end": 3163.49, "word": " type", "probability": 0.55908203125}, {"start": 3163.49, "end": 3163.63, "word": " of", "probability": 0.9599609375}, {"start": 3163.63, "end": 3164.17, "word": " interface.", "probability": 0.837890625}], "temperature": 1.0}, {"id": 126, "seek": 318805, "start": 3164.97, "end": 3188.05, "text": "So, what happened to this DrawManager? It became extendable. You can make anything. You can make shapes that won't change any line of code. We don't care if the code is working. It wasn't working in the beginning, but it was working. Every modification, you need to modify it in 20 places. At least, the DrawManager won't make any modification because it only deals with the interface. And this is the benefit of the interface.", "tokens": [6455, 11, 437, 2011, 281, 341, 20386, 6652, 3557, 30, 467, 3062, 10101, 712, 13, 509, 393, 652, 1340, 13, 509, 393, 652, 10854, 300, 1582, 380, 1319, 604, 1622, 295, 3089, 13, 492, 500, 380, 1127, 498, 264, 3089, 307, 1364, 13, 467, 2067, 380, 1364, 294, 264, 2863, 11, 457, 309, 390, 1364, 13, 2048, 26747, 11, 291, 643, 281, 16927, 309, 294, 945, 3190, 13, 1711, 1935, 11, 264, 20386, 6652, 3557, 1582, 380, 652, 604, 26747, 570, 309, 787, 11215, 365, 264, 9226, 13, 400, 341, 307, 264, 5121, 295, 264, 9226, 13], "avg_logprob": -0.6173469460740382, "compression_ratio": 1.7428571428571429, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 3164.97, "end": 3165.21, "word": "So,", "probability": 0.21142578125}, {"start": 3165.45, "end": 3165.49, "word": " what", "probability": 0.1669921875}, {"start": 3165.49, "end": 3165.49, "word": " happened", "probability": 0.37890625}, {"start": 3165.49, "end": 3165.79, "word": " to", "probability": 0.52685546875}, {"start": 3165.79, "end": 3166.05, "word": " this", "probability": 0.491943359375}, {"start": 3166.05, "end": 3166.67, "word": " DrawManager?", "probability": 0.5342610677083334}, {"start": 3166.71, "end": 3166.83, "word": " It", "probability": 0.444580078125}, {"start": 3166.83, "end": 3166.83, "word": " became", "probability": 0.405029296875}, {"start": 3166.83, "end": 3167.37, "word": " extendable.", "probability": 0.87255859375}, {"start": 3167.81, "end": 3167.93, "word": " You", "probability": 0.462890625}, {"start": 3167.93, "end": 3168.03, "word": " can", "probability": 0.67822265625}, {"start": 3168.03, "end": 3168.25, "word": " make", "probability": 0.2919921875}, {"start": 3168.25, "end": 3168.39, "word": " anything.", "probability": 0.38232421875}, {"start": 3168.49, "end": 3168.55, "word": " You", "probability": 0.697265625}, {"start": 3168.55, "end": 3168.57, "word": " can", "probability": 0.7822265625}, {"start": 3168.57, "end": 3168.77, "word": " make", "probability": 0.8115234375}, {"start": 3168.77, "end": 3169.09, "word": " shapes", "probability": 0.58935546875}, {"start": 3169.09, "end": 3169.73, "word": " that", "probability": 0.315673828125}, {"start": 3169.73, "end": 3169.99, "word": " won't", "probability": 0.6444091796875}, {"start": 3169.99, "end": 3170.31, "word": " change", "probability": 0.75439453125}, {"start": 3170.31, "end": 3170.53, "word": " any", "probability": 0.18896484375}, {"start": 3170.53, "end": 3170.75, "word": " line", "probability": 0.62939453125}, {"start": 3170.75, "end": 3170.87, "word": " of", "probability": 0.91650390625}, {"start": 3170.87, "end": 3171.07, "word": " code.", "probability": 0.87744140625}, {"start": 3171.59, "end": 3172.05, "word": " We", "probability": 0.176025390625}, {"start": 3172.05, "end": 3172.31, "word": " don't", "probability": 0.822998046875}, {"start": 3172.31, "end": 3173.07, "word": " care", "probability": 0.740234375}, {"start": 3173.07, "end": 3173.11, "word": " if", "probability": 0.5263671875}, {"start": 3173.11, "end": 3173.41, "word": " the", "probability": 0.7646484375}, {"start": 3173.41, "end": 3173.55, "word": " code", "probability": 0.91650390625}, {"start": 3173.55, "end": 3173.71, "word": " is", "probability": 0.5908203125}, {"start": 3173.71, "end": 3174.13, "word": " working.", "probability": 0.326416015625}, {"start": 3174.45, "end": 3174.69, "word": " It", "probability": 0.66455078125}, {"start": 3174.69, "end": 3174.87, "word": " wasn't", "probability": 0.72412109375}, {"start": 3174.87, "end": 3175.23, "word": " working", "probability": 0.8486328125}, {"start": 3175.23, "end": 3175.33, "word": " in", "probability": 0.41845703125}, {"start": 3175.33, "end": 3175.41, "word": " the", "probability": 0.92431640625}, {"start": 3175.41, "end": 3175.59, "word": " beginning,", "probability": 0.751953125}, {"start": 3175.97, "end": 3176.45, "word": " but", "probability": 0.86376953125}, {"start": 3176.45, "end": 3176.65, "word": " it", "probability": 0.54345703125}, {"start": 3176.65, "end": 3176.71, "word": " was", "probability": 0.5517578125}, {"start": 3176.71, "end": 3176.99, "word": " working.", "probability": 0.75341796875}, {"start": 3177.09, "end": 3177.23, "word": " Every", "probability": 0.29443359375}, {"start": 3177.23, "end": 3177.67, "word": " modification,", "probability": 0.5390625}, {"start": 3178.27, "end": 3178.95, "word": " you", "probability": 0.8232421875}, {"start": 3178.95, "end": 3179.09, "word": " need", "probability": 0.353515625}, {"start": 3179.09, "end": 3179.17, "word": " to", "probability": 0.9599609375}, {"start": 3179.17, "end": 3179.41, "word": " modify", "probability": 0.23046875}, {"start": 3179.41, "end": 3179.51, "word": " it", "probability": 0.59814453125}, {"start": 3179.51, "end": 3179.55, "word": " in", "probability": 0.52392578125}, {"start": 3179.55, "end": 3179.87, "word": " 20", "probability": 0.69482421875}, {"start": 3179.87, "end": 3180.17, "word": " places.", "probability": 0.5712890625}, {"start": 3180.71, "end": 3181.03, "word": " At", "probability": 0.40966796875}, {"start": 3181.03, "end": 3181.37, "word": " least,", "probability": 0.94677734375}, {"start": 3181.47, "end": 3181.51, "word": " the", "probability": 0.349609375}, {"start": 3181.51, "end": 3182.05, "word": " DrawManager", "probability": 0.9241536458333334}, {"start": 3182.05, "end": 3182.35, "word": " won't", "probability": 0.62939453125}, {"start": 3182.35, "end": 3182.85, "word": " make", "probability": 0.427490234375}, {"start": 3182.85, "end": 3183.27, "word": " any", "probability": 0.8994140625}, {"start": 3183.27, "end": 3183.53, "word": " modification", "probability": 0.41455078125}, {"start": 3183.53, "end": 3183.69, "word": " because", "probability": 0.299072265625}, {"start": 3183.69, "end": 3183.79, "word": " it", "probability": 0.90966796875}, {"start": 3183.79, "end": 3183.91, "word": " only", "probability": 0.2069091796875}, {"start": 3183.91, "end": 3184.09, "word": " deals", "probability": 0.430419921875}, {"start": 3184.09, "end": 3184.51, "word": " with", "probability": 0.90478515625}, {"start": 3184.51, "end": 3185.63, "word": " the", "probability": 0.56494140625}, {"start": 3185.63, "end": 3186.01, "word": " interface.", "probability": 0.64453125}, {"start": 3186.75, "end": 3187.21, "word": " And", "probability": 0.66259765625}, {"start": 3187.21, "end": 3187.31, "word": " this", "probability": 0.410888671875}, {"start": 3187.31, "end": 3187.37, "word": " is", "probability": 0.9189453125}, {"start": 3187.37, "end": 3187.39, "word": " the", "probability": 0.7734375}, {"start": 3187.39, "end": 3187.57, "word": " benefit", "probability": 0.2210693359375}, {"start": 3187.57, "end": 3187.71, "word": " of", "probability": 0.96875}, {"start": 3187.71, "end": 3187.75, "word": " the", "probability": 0.7841796875}, {"start": 3187.75, "end": 3188.05, "word": " interface.", "probability": 0.85693359375}], "temperature": 1.0}, {"id": 127, "seek": 320010, "start": 3188.92, "end": 3200.1, "text": " through two examples that I explained to you tasks and the draw manager and this code is available on moodle if anyone has any questions, good luck", "tokens": [807, 732, 5110, 300, 286, 8825, 281, 291, 9608, 293, 264, 2642, 6598, 293, 341, 3089, 307, 2435, 322, 9268, 306, 498, 2878, 575, 604, 1651, 11, 665, 3668], "avg_logprob": -0.8130208472410838, "compression_ratio": 1.2982456140350878, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 3188.92, "end": 3189.28, "word": " through", "probability": 0.06317138671875}, {"start": 3189.28, "end": 3189.46, "word": " two", "probability": 0.580078125}, {"start": 3189.46, "end": 3189.88, "word": " examples", "probability": 0.67724609375}, {"start": 3189.88, "end": 3190.16, "word": " that", "probability": 0.359375}, {"start": 3190.16, "end": 3190.18, "word": " I", "probability": 0.896484375}, {"start": 3190.18, "end": 3190.5, "word": " explained", "probability": 0.318603515625}, {"start": 3190.5, "end": 3190.62, "word": " to", "probability": 0.45556640625}, {"start": 3190.62, "end": 3190.72, "word": " you", "probability": 0.9580078125}, {"start": 3190.72, "end": 3191.5, "word": " tasks", "probability": 0.24853515625}, {"start": 3191.5, "end": 3192.78, "word": " and", "probability": 0.66943359375}, {"start": 3192.78, "end": 3193.0, "word": " the", "probability": 0.28515625}, {"start": 3193.0, "end": 3193.18, "word": " draw", "probability": 0.35693359375}, {"start": 3193.18, "end": 3193.56, "word": " manager", "probability": 0.8994140625}, {"start": 3193.56, "end": 3194.16, "word": " and", "probability": 0.347900390625}, {"start": 3194.16, "end": 3194.34, "word": " this", "probability": 0.6005859375}, {"start": 3194.34, "end": 3194.64, "word": " code", "probability": 0.80810546875}, {"start": 3194.64, "end": 3194.92, "word": " is", "probability": 0.394775390625}, {"start": 3194.92, "end": 3195.22, "word": " available", "probability": 0.332275390625}, {"start": 3195.22, "end": 3195.42, "word": " on", "probability": 0.82763671875}, {"start": 3195.42, "end": 3196.48, "word": " moodle", "probability": 0.59564208984375}, {"start": 3196.48, "end": 3197.04, "word": " if", "probability": 0.22998046875}, {"start": 3197.04, "end": 3197.3, "word": " anyone", "probability": 0.475830078125}, {"start": 3197.3, "end": 3197.48, "word": " has", "probability": 0.73876953125}, {"start": 3197.48, "end": 3197.6, "word": " any", "probability": 0.806640625}, {"start": 3197.6, "end": 3197.86, "word": " questions,", "probability": 0.55517578125}, {"start": 3198.42, "end": 3199.88, "word": " good", "probability": 0.11810302734375}, {"start": 3199.88, "end": 3200.1, "word": " luck", "probability": 0.57373046875}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 3200.7315, "duration_after_vad": 3030.4537499999888} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V9U3r9hm7p8_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V9U3r9hm7p8_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..ccbec048529464828a1d4f1e68cc25eb29d40af8 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/V9U3r9hm7p8_raw.srt @@ -0,0 +1,3484 @@ +1 +00:00:05,300 --> 00:00:06,680 +Okay, in the name of God, Most Gracious, Most + +2 +00:00:06,680 --> 00:00:10,560 +Merciful Today, God willing, guys, we will + +3 +00:00:10,560 --> 00:00:13,460 +continue the last lecture in reviewing the + +4 +00:00:13,460 --> 00:00:15,740 +concepts of object-oriented programming In the + +5 +00:00:15,740 --> 00:00:18,740 +previous lectures, we reviewed the basic concepts, + +6 +00:00:18,840 --> 00:00:23,520 +the concept of class, object, inheritance, and how + +7 +00:00:23,520 --> 00:00:25,540 +when I have classes that participate in certain + +8 +00:00:25,540 --> 00:00:27,520 +things, we make a super class, collect these + +9 +00:00:27,520 --> 00:00:29,660 +common things, then we make an extend out of them + +10 +00:00:29,660 --> 00:00:34,240 +to collect repetitionswe understood what is the + +11 +00:00:34,240 --> 00:00:37,400 +relation between constructor and subclass we also + +12 +00:00:37,400 --> 00:00:40,760 +understood the concept of promorphism and how to + +13 +00:00:40,760 --> 00:00:43,120 +deal with subclasses that are subclasses of the + +14 +00:00:43,120 --> 00:00:46,240 +father type as Mohedab told me that I can deal + +15 +00:00:46,240 --> 00:00:48,720 +with subclasses that are full-time employees and + +16 +00:00:48,720 --> 00:00:51,560 +part-time employees that are subclasses of the + +17 +00:00:51,560 --> 00:00:53,620 +father type and put them in one array and make a + +18 +00:00:53,620 --> 00:00:57,280 +loop on them We also looked at the concept of + +19 +00:00:57,280 --> 00:01:00,700 +Abstract Method and Abstract Class We found that + +20 +00:01:00,700 --> 00:01:02,640 +it is true that when you deal with a type of child + +21 +00:01:02,640 --> 00:01:04,600 +from a type of father it is a good thing because + +22 +00:01:04,600 --> 00:01:07,300 +it provides you with a list of arrays and a loop + +23 +00:01:07,300 --> 00:01:10,780 +but it has a negative aspect which is that you + +24 +00:01:10,780 --> 00:01:12,760 +will only see the things that are present in the + +25 +00:01:12,760 --> 00:01:15,880 +father So we decided to create an Abstract Method + +26 +00:01:15,880 --> 00:01:21,080 +to see it in the father but implement it in the + +27 +00:01:21,080 --> 00:01:25,570 +child And we got to know the concept that when you + +28 +00:01:25,570 --> 00:01:28,510 +do an abstract method, each class has to be + +29 +00:01:28,510 --> 00:01:31,870 +abstract So the abstract class is a class that + +30 +00:01:31,870 --> 00:01:34,030 +includes implementation and common things, and + +31 +00:01:34,030 --> 00:01:36,970 +also includes methods that are empty, abstract, so + +32 +00:01:36,970 --> 00:01:42,200 +that children can implement themToday, God + +33 +00:01:42,200 --> 00:01:44,200 +willing, we will deal with the last topic in + +34 +00:01:44,200 --> 00:01:46,000 +object-oriented programming, which is the topic of + +35 +00:01:46,000 --> 00:01:49,840 +interface, okay? What is the interface in object + +36 +00:01:49,840 --> 00:01:52,180 +-oriented programming? Who reminds us? Who knows + +37 +00:01:52,180 --> 00:01:55,520 +what the interface is? They are circuits without a + +38 +00:01:55,520 --> 00:02:00,440 +body. Circuits, I mean, circuits are abstract, + +39 +00:02:00,600 --> 00:02:03,940 +they have no implementation, okay? And the + +40 +00:02:03,940 --> 00:02:09,630 +variable must have a final state. Ok, so what is + +41 +00:02:09,630 --> 00:02:12,210 +the interface? What do we need it for? You need to + +42 +00:02:12,210 --> 00:02:16,210 +create an override for the plugin that you want to + +43 +00:02:16,210 --> 00:02:20,970 +use Ok, also in the practical applications, when + +44 +00:02:20,970 --> 00:02:23,650 +programming, do we need to create an interface? + +45 +00:02:24,270 --> 00:02:28,010 +Can we live without an interface? No No, why not? + +46 +00:02:29,110 --> 00:02:31,670 +You know the answer is no, so why not? If you + +47 +00:02:31,670 --> 00:02:33,090 +think about it, there are common domains How? + +48 +00:02:33,410 --> 00:02:37,880 +Common domains between what? What if I didn't + +49 +00:02:37,880 --> 00:02:39,340 +write it? What if I didn't write it? What if I + +50 +00:02:39,340 --> 00:02:45,600 +didn't write it? What if + +51 +00:02:45,600 --> 00:02:50,080 +I didn't write it? What if I didn't write it? What + +52 +00:02:50,080 --> 00:02:56,140 +if I didn't write it? What if I didn't write it? + +53 +00:02:57,040 --> 00:02:58,260 +What if I didn't write it? What if I didn't write + +54 +00:02:58,260 --> 00:02:58,620 +it? What if I didn't write it? What if I didn't + +55 +00:02:58,620 --> 00:03:00,260 +write it? What if I didn't write it? What if I + +56 +00:03:00,260 --> 00:03:00,560 +didn't write it? What if I didn't write it? What + +57 +00:03:00,560 --> 00:03:00,560 +if I didn't write it? What if I didn't write it? + +58 +00:03:00,740 --> 00:03:01,660 +What if I didn't write it? What if I didn't write + +59 +00:03:01,660 --> 00:03:02,180 +it? What if I didn't write it? What if I didn't + +60 +00:03:02,180 --> 00:03:02,180 +write it? What if I didn't write it? What if I + +61 +00:03:02,180 --> 00:03:02,220 +didn't write it? What if I didn't write it? What + +62 +00:03:02,220 --> 00:03:02,220 +if I didn't write it? What if I didn't write it? + +63 +00:03:02,220 --> 00:03:02,320 +What if I didn't write it? What if I didn't write + +64 +00:03:02,320 --> 00:03:02,320 +it? What if I didn't write it? + +65 +00:03:15,780 --> 00:03:22,940 +If you don't make + +66 +00:03:22,940 --> 00:03:23,920 +the interface + +67 +00:03:31,220 --> 00:03:33,640 +The user should have more rights than he should + +68 +00:03:33,640 --> 00:03:35,380 +have No, it has nothing to do with rights, + +69 +00:03:35,600 --> 00:03:38,680 +security and all that, yes In the interface, we + +70 +00:03:38,680 --> 00:03:40,500 +don't have to know what the program is doing, + +71 +00:03:40,660 --> 00:03:46,860 +there are tools inside it that we know what to do + +72 +00:03:46,860 --> 00:03:51,460 +with them Okay, so when I implement for the + +73 +00:03:51,460 --> 00:03:54,340 +interface, it forces me or determines what tools I + +74 +00:03:54,340 --> 00:03:57,520 +have to implement Also, this is the main benefit + +75 +00:04:01,420 --> 00:04:01,820 +How? + +76 +00:04:08,580 --> 00:04:10,720 +No, it's not clear to you what the interface is. + +77 +00:04:10,820 --> 00:04:12,380 +Okay, pay attention. To explain what the concept + +78 +00:04:12,380 --> 00:04:14,600 +of the interface is, the best way is to give + +79 +00:04:14,600 --> 00:04:18,340 +practical examples. That is, we are involved in + +80 +00:04:18,340 --> 00:04:20,220 +implementation. Okay? And I will explain two + +81 +00:04:20,220 --> 00:04:21,560 +examples. Pay attention with me because the + +82 +00:04:21,560 --> 00:04:24,640 +lecture time is enough for these two examples. The + +83 +00:04:24,640 --> 00:04:26,960 +first example, suppose that you are asked to make + +84 +00:04:26,960 --> 00:04:30,960 +a program It does task scheduling. What is task + +85 +00:04:30,960 --> 00:04:35,020 +scheduling? Scheduling of tasks. There are certain + +86 +00:04:35,020 --> 00:04:39,240 +tasks that must be carried out at one o'clock at + +87 +00:04:39,240 --> 00:04:43,100 +night. Among these tasks, for example, we want to + +88 +00:04:43,100 --> 00:04:47,700 +do backup. Okay? It takes certain files and copies + +89 +00:04:47,700 --> 00:04:51,160 +them and saves them in a certain drive. It also + +90 +00:04:51,160 --> 00:04:55,090 +wants to do security checks. It turns on the + +91 +00:04:55,090 --> 00:04:59,470 +antivirus, checks the security, ports, etc. It + +92 +00:04:59,470 --> 00:05:01,790 +wants to do a third task, which is to clean the + +93 +00:05:01,790 --> 00:05:04,350 +disk space. There is a temporary file that is + +94 +00:05:04,350 --> 00:05:06,770 +collected during the day on the server, and we + +95 +00:05:06,770 --> 00:05:09,130 +want to delete it. Because these are different + +96 +00:05:09,130 --> 00:05:15,380 +tasks.Each task has specific attributes such as + +97 +00:05:15,380 --> 00:05:24,680 +backup, security, IP, etc. Each task has specific + +98 +00:05:24,680 --> 00:05:28,220 +attributes and + +99 +00:05:28,220 --> 00:05:33,290 +steps These tasks, the first step you want to do + +100 +00:05:33,290 --> 00:05:36,770 +is to do the task, right? Your manager told you to + +101 +00:05:36,770 --> 00:05:39,110 +do these tasks, so you want to program the + +102 +00:05:39,110 --> 00:05:41,230 +scheduling task, you want to program the backup + +103 +00:05:41,230 --> 00:05:43,530 +task, you want to program the security task, right + +104 +00:05:43,530 --> 00:05:45,850 +or not, and then execute them. This is how you + +105 +00:05:45,850 --> 00:05:48,590 +program them, because when we learn, when we + +106 +00:05:48,590 --> 00:05:50,750 +think, we think about what the parts in the + +107 +00:05:50,750 --> 00:05:53,390 +program are, and if the parts or entities have + +108 +00:05:53,390 --> 00:05:54,850 +multiple data, what do you represent them with? + +109 +00:05:55,890 --> 00:05:58,770 +with a class then we have a task called backup + +110 +00:05:58,770 --> 00:06:02,330 +task it has information about it and steps about + +111 +00:06:02,330 --> 00:06:06,430 +it and you have a task called security checks it + +112 +00:06:06,430 --> 00:06:09,170 +also has attributes and steps it represents each + +113 +00:06:09,170 --> 00:06:13,170 +one in a class let's do something similar to this + +114 +00:06:13,170 --> 00:06:18,490 +task to see if we can reach the end I made a new + +115 +00:06:18,490 --> 00:06:23,450 +class and I want to call it backup task + +116 +00:06:26,560 --> 00:06:29,160 +There are attributes specific to backup. What path + +117 +00:06:29,160 --> 00:06:30,740 +do you want to use for backup? What kind of files + +118 +00:06:30,740 --> 00:06:33,360 +do you want to take from where? We are not going + +119 +00:06:33,360 --> 00:06:37,720 +to write a detailed code. We imagine a program and + +120 +00:06:37,720 --> 00:06:42,100 +the idea is in its structure. For example, there + +121 +00:06:42,100 --> 00:06:48,000 +is a method here, public void doBackup or run or + +122 +00:06:48,000 --> 00:06:48,600 +execute. + +123 +00:06:51,160 --> 00:06:53,840 +the code. Here are the backup steps, from here to + +124 +00:06:53,840 --> 00:06:56,400 +here, but what do we do? We do something like + +125 +00:06:56,400 --> 00:07:02,040 +this, fake, for example, performing backup. + +126 +00:07:04,860 --> 00:07:08,180 +Okay guys, can you imagine what we do? Can you + +127 +00:07:08,180 --> 00:07:13,440 +imagine or not? What do you imagine? Imagine this + +128 +00:07:13,440 --> 00:07:17,160 +is a task, a task that does backup. I didn't write + +129 +00:07:17,160 --> 00:07:18,260 +anything. I don't want to write anything that has + +130 +00:07:18,260 --> 00:07:20,060 +nothing to do with the backup code. These are + +131 +00:07:20,060 --> 00:07:23,480 +steps. You remove an object from this. You say + +132 +00:07:23,480 --> 00:07:26,060 +this is a backup and it does the backup for you. + +133 +00:07:26,220 --> 00:07:28,600 +Okay? That's how we're going to stay in the whole + +134 +00:07:28,600 --> 00:07:29,520 +material. We're not going to make a complete + +135 +00:07:29,520 --> 00:07:33,260 +program. But you will find this scenario in the + +136 +00:07:33,260 --> 00:07:35,580 +actual programs. And there are attributes related + +137 +00:07:35,580 --> 00:07:37,340 +to it. For example, you need to give it the path + +138 +00:07:37,340 --> 00:07:39,160 +location, what files need to be downloaded, and so + +139 +00:07:39,160 --> 00:07:41,940 +on. What we're going to do now is another task. + +140 +00:07:44,360 --> 00:07:50,980 +Its name is Security Checks Task. When we run this + +141 +00:07:50,980 --> 00:07:55,040 +task, what does it do? It turns on the antivirus, + +142 +00:07:55,160 --> 00:07:58,380 +for example. It checks if the ports are closed or + +143 +00:07:58,380 --> 00:08:00,360 +not. It checks if there are hacks or not. There + +144 +00:08:00,360 --> 00:08:01,720 +are many operations. It has nothing to do with + +145 +00:08:01,720 --> 00:08:04,300 +these operations. Okay? It has its own attributes. + +146 +00:08:04,860 --> 00:08:07,100 +But there is a method here. Its name is, for + +147 +00:08:07,100 --> 00:08:11,260 +example, DoSecurityChecks + +148 +00:08:13,170 --> 00:08:15,230 +it is executed by doing all the steps we want to + +149 +00:08:15,230 --> 00:08:18,090 +get rid of it by printing a sentence called + +150 +00:08:18,090 --> 00:08:26,710 +perform security checks okay + +151 +00:08:26,710 --> 00:08:30,470 +guys and so on you do the tasks required from you + +152 +00:08:30,470 --> 00:08:34,490 +last one for example we do a class called clean + +153 +00:08:34,490 --> 00:08:39,910 +disk task you delete the temporary files and + +154 +00:08:39,910 --> 00:08:41,150 +others also it has + +155 +00:08:44,970 --> 00:08:48,650 +cleanDisk() this is the method it executes system + +156 +00:08:48,650 --> 00:08:58,390 +.out.println() cleanDisk() ok, + +157 +00:08:58,530 --> 00:09:00,970 +these are different tasks each task has its own + +158 +00:09:00,970 --> 00:09:05,630 +attributes and steps does anyone collect them? no + +159 +00:09:05,630 --> 00:09:07,390 +one collects them, so I need a superclass for + +160 +00:09:07,390 --> 00:09:11,090 +them? I don't need a superclass ok, I came to the + +161 +00:09:11,090 --> 00:09:11,590 +main method + +162 +00:09:15,040 --> 00:09:19,060 +For example, I came here and made a class For + +163 +00:09:19,060 --> 00:09:25,860 +example, task main We + +164 +00:09:25,860 --> 00:09:27,540 +made classes but we didn't benefit from them, + +165 +00:09:27,660 --> 00:09:38,040 +right? public static void main string Ok, + +166 +00:09:38,080 --> 00:09:39,920 +did you get it? What do you want to do? In order + +167 +00:09:39,920 --> 00:09:42,980 +to execute each process What do you want to do? Do + +168 +00:09:42,980 --> 00:09:45,370 +you want to extract the object? from the class and + +169 +00:09:45,370 --> 00:09:47,970 +you get the existing data for example the first + +170 +00:09:47,970 --> 00:09:56,390 +data is backup task IT1 new backup task and you + +171 +00:09:56,390 --> 00:10:01,270 +say T1.do backup because we need the second task + +172 +00:10:01,270 --> 00:10:06,750 +which is security checks + +173 +00:10:06,750 --> 00:10:07,310 +tasks + +174 +00:10:11,820 --> 00:10:19,360 +new security checks task and you say to T2 do + +175 +00:10:19,360 --> 00:10:24,500 +security checks the third one which is clean disk + +176 +00:10:24,500 --> 00:10:38,580 +task ok + +177 +00:10:38,580 --> 00:10:42,620 +guys Programming tasks and then implementing them + +178 +00:10:42,620 --> 00:10:46,440 +Ok, now your manager tells you to clean a new task + +179 +00:10:46,440 --> 00:10:49,460 +Ok, so you want to create a new class, program it + +180 +00:10:49,460 --> 00:10:52,680 +and then tell him to implement it Ok, now the + +181 +00:10:52,680 --> 00:10:54,940 +program grew with you, we don't do tasks one or + +182 +00:10:54,940 --> 00:10:58,180 +two times, you find in big programs that run 20-30 + +183 +00:10:58,180 --> 00:11:00,560 +tasks, for example at one o'clock at night, we + +184 +00:11:00,560 --> 00:11:05,640 +tell them to do what, they all runOkay? Now if I + +185 +00:11:05,640 --> 00:11:08,140 +want each one of us to create an object and + +186 +00:11:08,140 --> 00:11:10,200 +implement it like that, it's not practical. We + +187 +00:11:10,200 --> 00:11:12,920 +want something that I have, since I have a large + +188 +00:11:12,920 --> 00:11:15,760 +number of tasks, okay? We create objects from + +189 +00:11:15,760 --> 00:11:19,240 +them, and we want to put them in a list, to tell + +190 +00:11:19,240 --> 00:11:21,780 +them what to do. Go around them and implement, + +191 +00:11:22,520 --> 00:11:26,870 +regardless of what task is available. And this + +192 +00:11:26,870 --> 00:11:30,090 +will help me because tomorrow when I want to + +193 +00:11:30,090 --> 00:11:32,650 +program a new task, all I need to do is create an + +194 +00:11:32,650 --> 00:11:36,270 +object and add it to the list. It will create a + +195 +00:11:36,270 --> 00:11:40,790 +loop and execute all the tasks. Now my question + +196 +00:11:40,790 --> 00:11:46,310 +is, can I put all of them in one array? No. How + +197 +00:11:46,310 --> 00:11:47,550 +can I do that? What kind of array should I put + +198 +00:11:47,550 --> 00:11:47,790 +them in? + +199 +00:11:51,390 --> 00:11:54,390 +Because when I had a full-time employee and a part + +200 +00:11:54,390 --> 00:11:58,870 +-time employee, I could put them in one employee + +201 +00:11:58,870 --> 00:12:05,690 +array. Do they have a super class? No. Why don't + +202 +00:12:05,690 --> 00:12:07,390 +they have a super class? Because there is + +203 +00:12:07,390 --> 00:12:11,530 +something that brings them together. I want to + +204 +00:12:11,530 --> 00:12:15,590 +keep them all in one array. I want to keep them + +205 +00:12:15,590 --> 00:12:16,870 +all in one array. Why do I want to keep them all + +206 +00:12:16,870 --> 00:12:18,950 +in one array? Because I want to put them in one + +207 +00:12:18,950 --> 00:12:23,470 +list. despite the fact that there is nothing to + +208 +00:12:23,470 --> 00:12:26,110 +collect until we learned that in order to collect + +209 +00:12:26,110 --> 00:12:29,490 +or leave things of the kind make a super class and + +210 +00:12:29,490 --> 00:12:32,290 +let them do it for you extend so we went and made + +211 +00:12:32,290 --> 00:12:36,830 +a class I want to call it task for example okay + +212 +00:12:36,830 --> 00:12:43,090 +this is the task class empty with me or not guys? + +213 +00:12:43,410 --> 00:12:46,810 +empty all you have to do is go to the three + +214 +00:12:46,810 --> 00:12:49,050 +classes that I made the backup task and say + +215 +00:12:49,050 --> 00:12:54,910 +extends task and for security checks say extends + +216 +00:12:54,910 --> 00:13:04,230 +task and this clean disk also extends task + +217 +00:13:04,230 --> 00:13:06,310 +did we reach the same point or not? we haven't + +218 +00:13:06,310 --> 00:13:08,890 +talked about the interface yet what did we do? + +219 +00:13:09,390 --> 00:13:13,030 +class right or not? why did you make this class? + +220 +00:13:14,310 --> 00:13:17,530 +this class doesn't have shared information between + +221 +00:13:17,530 --> 00:13:21,180 +them because of this class Can I write anything in + +222 +00:13:21,180 --> 00:13:23,780 +the class? No, the class is empty. Well, if it's + +223 +00:13:23,780 --> 00:13:26,900 +empty, why did I make it? I made it to make them + +224 +00:13:26,900 --> 00:13:30,780 +all the same type, so that I can come to the main + +225 +00:13:30,780 --> 00:13:38,580 +here and make it a playlist of tasks, called + +226 +00:13:38,580 --> 00:13:39,120 +tasks. + +227 +00:13:50,570 --> 00:14:04,790 +and I can go to tasks and say add T1 to T3 + +228 +00:14:04,790 --> 00:14:08,570 +if I have more than one, I add it because the + +229 +00:14:08,570 --> 00:14:15,050 +advantage when I say to each task T is present + +230 +00:14:15,050 --> 00:14:20,400 +where? task I want to run it I want to say T dot, + +231 +00:14:21,380 --> 00:14:25,180 +because I found a problem. There is nothing. Right + +232 +00:14:25,180 --> 00:14:28,920 +or wrong? Because one person says that there is + +233 +00:14:28,920 --> 00:14:31,760 +backup and there is no backup. And there is no + +234 +00:14:31,760 --> 00:14:34,700 +security checks. And there is a clean disk. But + +235 +00:14:34,700 --> 00:14:37,440 +all of these are not visible. Why? The same + +236 +00:14:37,440 --> 00:14:39,480 +problem that I told you last time has now become a + +237 +00:14:39,480 --> 00:14:43,760 +kind of up. Right or not? So how do we solve this + +238 +00:14:43,760 --> 00:14:49,280 +problem? We took it Make an abstract method Here + +239 +00:14:49,280 --> 00:14:55,800 +public void execute And this we make it what? + +240 +00:14:59,580 --> 00:15:02,780 +Abstract And since this is abstract in the class, + +241 +00:15:03,500 --> 00:15:08,510 +it became abstractWhy did I use this method? So + +242 +00:15:08,510 --> 00:15:12,790 +that I can use the main method to call each task + +243 +00:15:12,790 --> 00:15:16,810 +Execute And since this method was added here, we + +244 +00:15:16,810 --> 00:15:20,330 +have to implement it where? In each block. Each + +245 +00:15:20,330 --> 00:15:22,850 +one of them has to be implemented in the way they + +246 +00:15:22,850 --> 00:15:25,990 +want But in the end, what I see is that each one + +247 +00:15:25,990 --> 00:15:29,280 +of them is a task and I call it Executeand + +248 +00:15:29,280 --> 00:15:33,120 +actually it executes based on the subclass type + +249 +00:15:33,120 --> 00:15:35,640 +did you notice that as long as I left this + +250 +00:15:35,640 --> 00:15:38,440 +abstract and this abstract method they hit all the + +251 +00:15:38,440 --> 00:15:43,480 +subclasses why? because as long as you did + +252 +00:15:43,480 --> 00:15:45,160 +implement there is a code that you need to + +253 +00:15:45,160 --> 00:15:50,340 +complete what is this execute? what do we do in + +254 +00:15:50,340 --> 00:15:54,680 +this execute? the 7th is do backup that's it right + +255 +00:15:54,680 --> 00:15:56,860 +or not guys? this is do backup + +256 +00:15:59,490 --> 00:16:15,550 +And in the security checks And + +257 +00:16:15,550 --> 00:16:24,530 +this + +258 +00:16:24,530 --> 00:16:29,970 +is clear disk. All of them have an execute, but + +259 +00:16:29,970 --> 00:16:33,390 +each execute does something different. Now, in the + +260 +00:16:33,390 --> 00:16:38,190 +main, I can click on all of them and tell it to + +261 +00:16:38,190 --> 00:16:42,530 +execute. It will come out in front of me. Okay? + +262 +00:16:42,830 --> 00:16:45,750 +Now, when it comes to execute, regardless of what + +263 +00:16:45,750 --> 00:16:47,910 +kind of task it is, you just extract an object + +264 +00:16:47,910 --> 00:16:50,610 +from it and put it in this list. This is the code + +265 +00:16:50,610 --> 00:16:53,720 +of production or execution. it will not disappear + +266 +00:16:53,720 --> 00:16:56,640 +because I don't even have to remove the execution + +267 +00:16:56,640 --> 00:17:01,000 +here I want to make the loop execute if I add a + +268 +00:17:01,000 --> 00:17:03,000 +new task after that I don't have to create an + +269 +00:17:03,000 --> 00:17:05,520 +object from it and put it in the list but the code + +270 +00:17:05,520 --> 00:17:12,500 +of this execution remains fixed, you see, it + +271 +00:17:12,500 --> 00:17:14,600 +executes them, right or not? they worked on the + +272 +00:17:14,600 --> 00:17:17,280 +three tasks and executed them each execution is + +273 +00:17:17,280 --> 00:17:20,060 +differentI will tell you where is the interface in + +274 +00:17:20,060 --> 00:17:24,660 +this topic The interface is here Come to this task + +275 +00:17:24,660 --> 00:17:29,560 +Did you find that this class does not have any + +276 +00:17:29,560 --> 00:17:32,260 +code shared between them? It only has one abstract + +277 +00:17:32,260 --> 00:17:35,960 +method I tell the class if it does not have any + +278 +00:17:35,960 --> 00:17:38,860 +code implementation There is no need to make it an + +279 +00:17:38,860 --> 00:17:41,620 +abstract class Bring it to what? To the interface + +280 +00:17:41,620 --> 00:17:46,050 +That is, if I find that I made the classIt doesn't + +281 +00:17:46,050 --> 00:17:48,650 +have anything in common between two classes. It + +282 +00:17:48,650 --> 00:17:51,230 +doesn't have any implementation. You can always + +283 +00:17:51,230 --> 00:17:54,710 +turn it into an interface. An interface is an + +284 +00:17:54,710 --> 00:17:57,690 +abstract class with all abstract methods. + +285 +00:17:59,610 --> 00:18:01,990 +But no, for example, in the employee, there are + +286 +00:18:01,990 --> 00:18:04,890 +shared information such as ID, name and job title, + +287 +00:18:05,210 --> 00:18:07,650 +right or wrong? Usually, when do we use abstract + +288 +00:18:07,650 --> 00:18:11,650 +class? When there are shared things and different + +289 +00:18:11,650 --> 00:18:14,510 +things. The shared things are kept in the class + +290 +00:18:14,510 --> 00:18:16,070 +and the different things are put in an abstract + +291 +00:18:16,070 --> 00:18:19,500 +method for someone to change them. The subclass. + +292 +00:18:19,860 --> 00:18:22,360 +In this case, it tells you that when you reach a + +293 +00:18:22,360 --> 00:18:24,500 +stage like this, that you are only working for a + +294 +00:18:24,500 --> 00:18:28,520 +class, why? What is the goal? To unite types of + +295 +00:18:28,520 --> 00:18:31,700 +things that do not have anything in common. This + +296 +00:18:31,700 --> 00:18:33,980 +is the purpose of the interface. To benefit from + +297 +00:18:33,980 --> 00:18:36,940 +polymorphism. Things that have nothing to do with + +298 +00:18:36,940 --> 00:18:40,420 +each other, make them all of the same type. Okay? + +299 +00:18:41,100 --> 00:18:45,330 +But the class that you use,For two goals, not for + +300 +00:18:45,330 --> 00:18:47,210 +the interface. The interface only unites between + +301 +00:18:47,210 --> 00:18:48,890 +the types of things that do not have a common + +302 +00:18:48,890 --> 00:18:51,950 +size. But the class or abstract class is divided + +303 +00:18:51,950 --> 00:18:56,070 +into two things that combine common things instead + +304 +00:18:56,070 --> 00:19:00,270 +of repeating this goal and unites the type. The + +305 +00:19:00,270 --> 00:19:03,590 +class has two units. The interface has one unit. + +306 +00:19:04,870 --> 00:19:05,990 +Well, it does not mean that the class is better + +307 +00:19:05,990 --> 00:19:07,050 +than the interface because it has two units and + +308 +00:19:07,050 --> 00:19:08,910 +the interface has one unit. No. In this example, + +309 +00:19:09,210 --> 00:19:11,590 +what do I need? Interface. There is no common + +310 +00:19:11,590 --> 00:19:16,850 +size. Just make them the same type. If you reached + +311 +00:19:16,850 --> 00:19:18,430 +a point where you just want to unify the type, + +312 +00:19:18,670 --> 00:19:22,130 +make it an interface. + +313 +00:19:23,610 --> 00:19:28,810 +And even the word abstract stopped forcing him. He + +314 +00:19:28,810 --> 00:19:31,070 +automatically considers that anything inside the + +315 +00:19:31,070 --> 00:19:35,570 +interface is abstract. So the word abstract, if + +316 +00:19:35,570 --> 00:19:38,860 +you want to remove it, remove it.I made the + +317 +00:19:38,860 --> 00:19:41,100 +interface so that everyone who wants to implement + +318 +00:19:41,100 --> 00:19:43,100 +it can take the same type of code But everyone + +319 +00:19:43,100 --> 00:19:46,820 +wants to execute it in a different way So that the + +320 +00:19:46,820 --> 00:19:49,540 +man sees them all as tasks and is able to execute + +321 +00:19:49,540 --> 00:19:52,740 +without knowing the details or differences between + +322 +00:19:52,740 --> 00:19:57,280 +them Do you agree or not guys? Ok, in this case, I + +323 +00:19:57,280 --> 00:19:59,760 +have an error in the subclasses. Why? When I + +324 +00:19:59,760 --> 00:20:02,780 +change the interface, it says no, instead of + +325 +00:20:02,780 --> 00:20:04,960 +extends, do implements. Actually, they have + +326 +00:20:04,960 --> 00:20:06,980 +different meanings. Extends means that there is + +327 +00:20:06,980 --> 00:20:12,740 +something existing and I want to add it. Implement + +328 +00:20:12,740 --> 00:20:16,040 +means that there is nothing empty and I want to do + +329 +00:20:16,040 --> 00:20:18,800 +what? Implements. Of course, in new languages like + +330 +00:20:18,800 --> 00:20:21,730 +Kotlin and Swift He started to put his fingers and + +331 +00:20:21,730 --> 00:20:25,470 +that's it. And he walks. Okay? Our goal is not the + +332 +00:20:25,470 --> 00:20:28,290 +syntax. Our goal is what? The concept of object + +333 +00:20:28,290 --> 00:20:30,730 +-oriented programming. So we brought all of these + +334 +00:20:30,730 --> 00:20:36,090 +to implement. + +335 +00:20:36,990 --> 00:20:37,310 +Okay? + +336 +00:20:40,450 --> 00:20:43,070 +Is this thing clear, guys? Because there is also + +337 +00:20:43,070 --> 00:20:44,550 +another feature for the interface. + +338 +00:20:49,150 --> 00:20:52,710 +Excel is one class, but you can implement it to + +339 +00:20:52,710 --> 00:20:56,110 +more than one interface. You can give your object + +340 +00:20:56,110 --> 00:21:00,930 +more than one type. For example, you can put it in + +341 +00:21:00,930 --> 00:21:03,110 +more than one list and it will execute the same + +342 +00:21:03,110 --> 00:21:07,230 +thing. Someone will ask, what is the point of + +343 +00:21:07,230 --> 00:21:09,830 +taking more than one type? It will be clear to you + +344 +00:21:09,830 --> 00:21:12,090 +when you take it in GUI Sometimes you want to make + +345 +00:21:12,090 --> 00:21:16,730 +the frame or the screen listen to the mouse click + +346 +00:21:16,730 --> 00:21:20,710 +or the keyboard click So he wants to do less than + +347 +00:21:20,710 --> 00:21:26,250 +two things So you want to make the frame or the + +348 +00:21:26,250 --> 00:21:30,310 +screen listen to take two types One type is mouse + +349 +00:21:30,310 --> 00:21:32,150 +listener and the other type is button listener + +350 +00:21:33,880 --> 00:21:35,640 +automatically the device will put them in a tool + +351 +00:21:35,640 --> 00:21:38,280 +list so that if the mouse is pressed or the button + +352 +00:21:38,280 --> 00:21:41,060 +is pressed, it will ask for it. This will show up + +353 +00:21:41,060 --> 00:21:43,000 +in front of you. But this is an important + +354 +00:21:43,000 --> 00:21:45,620 +difference that I can implement more than one + +355 +00:21:45,620 --> 00:21:48,840 +interface, but I can extend it to one class. In + +356 +00:21:48,840 --> 00:21:51,720 +short, we make the class to unite the types of + +357 +00:21:51,720 --> 00:21:54,480 +things that do not exist between them. And if the + +358 +00:21:54,480 --> 00:21:56,080 +class does not have a common code, it is + +359 +00:21:56,080 --> 00:22:01,120 +immediately converted to an interface.Okay? The + +360 +00:22:01,120 --> 00:22:03,600 +main thing that I benefited from it is that this + +361 +00:22:03,600 --> 00:22:06,960 +code that does loop and executes will not change + +362 +00:22:06,960 --> 00:22:09,980 +at all. Even if you add new tasks, you have to + +363 +00:22:09,980 --> 00:22:12,400 +make a new class. But that's it, you add it to + +364 +00:22:12,400 --> 00:22:15,780 +this list, and it does the loop and executes. + +365 +00:22:16,660 --> 00:22:20,880 +Okay? Yes, who has a question? If it was the same + +366 +00:22:20,880 --> 00:22:23,540 +method, but there are things that have changed. + +367 +00:22:23,680 --> 00:22:26,320 +For example, the return value disappeared in all + +368 +00:22:26,320 --> 00:22:30,530 +the elements. No, you have to design in a way that + +369 +00:22:30,530 --> 00:22:33,370 +everyone follows the same method. Okay? Is there a + +370 +00:22:33,370 --> 00:22:40,890 +generic solution? There are solutions. I mean, you + +371 +00:22:40,890 --> 00:22:43,930 +have to benefit or try to design the code in a way + +372 +00:22:43,930 --> 00:22:47,090 +that there are no differences. Okay? The + +373 +00:22:47,090 --> 00:22:49,050 +differences are treated in other ways according to + +374 +00:22:49,050 --> 00:22:51,350 +the nature of the program. But our goal is that + +375 +00:22:51,350 --> 00:22:57,290 +everyone has execute. To execute. Okay, guys?Okay, + +376 +00:22:57,350 --> 00:22:59,790 +this is an example to show the usefulness of the + +377 +00:22:59,790 --> 00:23:01,650 +interface that unites between types of things + +378 +00:23:01,650 --> 00:23:04,410 +without building a common thing. We also want to + +379 +00:23:04,410 --> 00:23:06,530 +take another example. Maybe this example is more + +380 +00:23:06,530 --> 00:23:10,050 +practical than this example. Pay attention to me. + +381 +00:23:12,950 --> 00:23:15,790 +Now I want to make a simple program that looks + +382 +00:23:15,790 --> 00:23:21,410 +like this. Pay attention to this screen. It is a + +383 +00:23:21,410 --> 00:23:26,030 +very simple program. It is a drawing program. For + +384 +00:23:26,030 --> 00:23:28,150 +example, there is a button called circle, + +385 +00:23:28,430 --> 00:23:36,790 +rectangle, solid circle, clear and undo. When I + +386 +00:23:36,790 --> 00:23:42,960 +click on circle, it draws dots randomly. When I + +387 +00:23:42,960 --> 00:23:45,220 +click on rectangle, it shows me rectangles. When I + +388 +00:23:45,220 --> 00:23:46,760 +click on circle, it shows me circles that are + +389 +00:23:46,760 --> 00:23:49,780 +filled with dots. Clear, what does it want to do? + +390 +00:23:50,340 --> 00:23:54,140 +It wants to delete everything. Undo, it wants to + +391 +00:23:54,140 --> 00:23:58,300 +return what was drawn. So, we want to create a + +392 +00:23:58,300 --> 00:24:04,010 +programlike this and we will see how using the + +393 +00:24:04,010 --> 00:24:06,030 +interface will make a big difference in the design + +394 +00:24:06,030 --> 00:24:09,710 +of the program first of all, we have to agree on + +395 +00:24:09,710 --> 00:24:11,810 +certain things before we get into the design and + +396 +00:24:11,810 --> 00:24:16,910 +code and so on because I am talking about drawing + +397 +00:24:16,910 --> 00:24:20,330 +shapes and I want to delete these shapes and then + +398 +00:24:20,330 --> 00:24:22,650 +return them this means that whatever shape I want + +399 +00:24:22,650 --> 00:24:24,830 +to draw on the screen I have to store its + +400 +00:24:24,830 --> 00:24:29,560 +information I draw a circle in a certain place and + +401 +00:24:29,560 --> 00:24:31,140 +I have to store where the circle is, what is half + +402 +00:24:31,140 --> 00:24:35,020 +of its diameter and what is the center of it. If I + +403 +00:24:35,020 --> 00:24:36,720 +know the center and half of the diameter, I draw + +404 +00:24:36,720 --> 00:24:40,140 +it again. Also, the rectangle has length, width + +405 +00:24:40,140 --> 00:24:44,200 +and point. When I draw a rectangle, I have to + +406 +00:24:44,200 --> 00:24:47,720 +store this information as well. So that when I say + +407 +00:24:47,720 --> 00:24:52,240 +undo, it draws it again. Let's say that the + +408 +00:24:52,240 --> 00:24:53,580 +rectangle has at least how many columns? + +409 +00:24:56,620 --> 00:24:59,620 +The point also has x and y, which is two points + +410 +00:24:59,620 --> 00:25:02,500 +and its length and width are four points. The + +411 +00:25:02,500 --> 00:25:06,420 +circle has three points, x and y, and the half of + +412 +00:25:06,420 --> 00:25:08,820 +the circle. And the semicircle has an additional + +413 +00:25:08,820 --> 00:25:12,860 +point, which is the color. The first thing that + +414 +00:25:12,860 --> 00:25:14,620 +comes to my mind is that as long as I have + +415 +00:25:14,620 --> 00:25:16,940 +engineering shapes and shapes that have + +416 +00:25:16,940 --> 00:25:18,120 +information and information that I need to + +417 +00:25:18,120 --> 00:25:21,400 +memorize, I need to represent each shape with a + +418 +00:25:21,400 --> 00:25:24,290 +class. This is a circle, take it and memorize it. + +419 +00:25:24,570 --> 00:25:26,850 +This is a rectangle, take it and memorize it. Why + +420 +00:25:26,850 --> 00:25:28,850 +should I deal with three or four information for + +421 +00:25:28,850 --> 00:25:30,530 +the shape? I collect the information of the shape + +422 +00:25:30,530 --> 00:25:33,290 +in one thing and memorize it. From the benefit + +423 +00:25:33,290 --> 00:25:35,590 +that came from object oriented. So what did I do + +424 +00:25:35,590 --> 00:25:42,530 +guys? I went and made a class called circle to + +425 +00:25:42,530 --> 00:25:45,290 +collect data like we collected data for employees, + +426 +00:25:45,410 --> 00:25:47,830 +students and others. What did I put in it? How + +427 +00:25:47,830 --> 00:25:50,630 +many information? Three. Radius, Center, X and + +428 +00:25:50,630 --> 00:25:55,010 +Center, Y.And this is a constructor, right or not? + +429 +00:25:56,050 --> 00:25:58,730 +A constructor takes three things, half of the line + +430 +00:25:58,730 --> 00:26:03,690 +and x and y, right? And then, this thing that I + +431 +00:26:03,690 --> 00:26:08,400 +made, what is its name? The droneIt takes + +432 +00:26:08,400 --> 00:26:10,160 +something called Graphics G, which is the place + +433 +00:26:10,160 --> 00:26:12,380 +you want to draw on it, and then it gives us a + +434 +00:26:12,380 --> 00:26:14,900 +device called Draw Oval. It's not a matter of how + +435 +00:26:14,900 --> 00:26:18,240 +we draw. The important thing is that it gives us a + +436 +00:26:18,240 --> 00:26:23,160 +device in the frame to draw an oval. It's a + +437 +00:26:23,160 --> 00:26:26,600 +rectangular shape. If you give it x and y, where + +438 +00:26:26,600 --> 00:26:28,720 +does it draw? And if you give it the radius, which + +439 +00:26:28,720 --> 00:26:30,740 +is the rectangular shape, it has two lines. A + +440 +00:26:30,740 --> 00:26:32,480 +vertical line and a vertical line. If you give it + +441 +00:26:32,480 --> 00:26:35,080 +the same line, what happens? It becomes a circle. + +442 +00:26:35,640 --> 00:26:37,640 +It's not about drawing. It's important that when I + +443 +00:26:37,640 --> 00:26:40,600 +click on the draw button, and give it the place + +444 +00:26:40,600 --> 00:26:44,520 +where it draws, it draws the circle. Okay? This is + +445 +00:26:44,520 --> 00:26:47,600 +important. I made this class mainly to collect + +446 +00:26:47,600 --> 00:26:52,940 +this information. In one thing.Same thing, I made + +447 +00:26:52,940 --> 00:26:55,920 +another class called rectangle to collect the + +448 +00:26:55,920 --> 00:26:59,520 +information of the rectangle. Width and height and + +449 +00:26:59,520 --> 00:27:02,840 +position x and position y. And what is this? + +450 +00:27:04,080 --> 00:27:08,240 +Constructor. And this is also what? Draw. But this + +451 +00:27:08,240 --> 00:27:11,900 +is executed by a tool called draw rectangle. Now, + +452 +00:27:12,020 --> 00:27:15,480 +I also have a third form which is mean. The 7th + +453 +00:27:15,480 --> 00:27:18,060 +circle. Did you find the solid circle thinking + +454 +00:27:18,060 --> 00:27:19,940 +that it is a circle but it has additional + +455 +00:27:19,940 --> 00:27:24,200 +information? So what does a new class or a new + +456 +00:27:24,200 --> 00:27:26,840 +class of solid circle do? Extends the circle. + +457 +00:27:26,960 --> 00:27:28,800 +That's it. It took everything above it. And it + +458 +00:27:28,800 --> 00:27:31,860 +made a new attribute called what? Fill color. + +459 +00:27:34,060 --> 00:27:36,420 +Those who are reviewing, what is it? All objects + +460 +00:27:36,420 --> 00:27:40,160 +are oriented. Because what is this? Constructor. + +461 +00:27:40,680 --> 00:27:44,080 +What does it take? Radius and x and y and color. + +462 +00:27:46,090 --> 00:27:48,790 +Right? And they call it super because they are + +463 +00:27:48,790 --> 00:27:53,590 +super constructors. Okay? And it initializes the + +464 +00:27:53,590 --> 00:27:55,310 +field color that is present here. Do you see the + +465 +00:27:55,310 --> 00:27:58,330 +drawing that is present in the third circle? Do + +466 +00:27:58,330 --> 00:28:00,510 +you see it? See what I want to do with it. The + +467 +00:28:00,510 --> 00:28:04,070 +drone here, what does it do? It calls super dot + +468 +00:28:04,070 --> 00:28:07,350 +drone. That is, when I draw a semicircle, I want + +469 +00:28:07,350 --> 00:28:10,990 +to draw the circle And then I filled it. So I made + +470 +00:28:10,990 --> 00:28:15,250 +it follow the draw of the parent. As we were in + +471 +00:28:15,250 --> 00:28:16,990 +the employee in the GATE report, do you remember? + +472 +00:28:17,730 --> 00:28:19,770 +We used to follow the GATE report of the parent to + +473 +00:28:19,770 --> 00:28:21,850 +get the main report and then do something extra. + +474 +00:28:22,410 --> 00:28:25,010 +Here I followed the super to draw. And then I put + +475 +00:28:25,010 --> 00:28:28,470 +the fill color and the fill what? Fill oval. This + +476 +00:28:28,470 --> 00:28:31,670 +is what I filled. So here I drew it through ... I + +477 +00:28:31,670 --> 00:28:33,250 +made the father draw a part and here I drew + +478 +00:28:33,250 --> 00:28:38,990 +another part.Okay, so far everything is fine. Once + +479 +00:28:38,990 --> 00:28:41,830 +again, why did I make this class? So that I can + +480 +00:28:41,830 --> 00:28:46,330 +collect all the data together. Okay, I came now to + +481 +00:28:46,330 --> 00:28:48,990 +make my program. So far, we have represented these + +482 +00:28:48,990 --> 00:28:51,950 +objects, but we have not used them, okay? At the + +483 +00:28:51,950 --> 00:28:54,130 +user interface, which is the main interface that + +484 +00:28:54,130 --> 00:28:55,870 +you saw a while ago, this one. + +485 +00:28:59,300 --> 00:29:05,200 +This is a drawing space, and these are buttons. We + +486 +00:29:05,200 --> 00:29:08,700 +are not talking about GUI, but let me give you a + +487 +00:29:08,700 --> 00:29:10,740 +quick example to get the idea. Our topic is not + +488 +00:29:10,740 --> 00:29:15,540 +GUI, but how the program is designed. In Java, one + +489 +00:29:15,540 --> 00:29:20,560 +of the ways to create a GUI is to create a window + +490 +00:29:20,560 --> 00:29:24,880 +and extend it to a class called JFrame. JFrame is + +491 +00:29:24,880 --> 00:29:30,230 +a ready window. You extend it and add the elements + +492 +00:29:30,230 --> 00:29:31,930 +that you want them to be, which are the buttons + +493 +00:29:31,930 --> 00:29:34,570 +that we saw a while ago. So, as soon as you extend + +494 +00:29:34,570 --> 00:29:38,010 +JFrame, you have a window. Okay? Because what is + +495 +00:29:38,010 --> 00:29:40,930 +this? Forget about this one. What is this thing + +496 +00:29:40,930 --> 00:29:41,330 +that I am teaching? + +497 +00:29:44,230 --> 00:29:46,190 +Constructor. So, as soon as you create an object + +498 +00:29:46,190 --> 00:29:50,390 +from the drawing app, what will it do? What is a + +499 +00:29:50,390 --> 00:29:53,990 +reconstructor? In short, the drawing panel is the + +500 +00:29:53,990 --> 00:29:57,770 +place where I draw. Do you see that the screen is + +501 +00:29:57,770 --> 00:30:00,890 +divided into two parts? There are buttons here, + +502 +00:30:01,010 --> 00:30:05,370 +and here is the drawing place. This place is + +503 +00:30:05,370 --> 00:30:07,870 +called the drawing panel. + +504 +00:30:09,430 --> 00:30:12,050 +It is not the subject of the drawing. This is just + +505 +00:30:12,050 --> 00:30:15,850 +to give you an idea of ​​the subject. What is + +506 +00:30:15,850 --> 00:30:21,450 +this? This is called a G button, a button. Okay? + +507 +00:30:21,790 --> 00:30:24,570 +We made a button, what is written on it? Circle. + +508 +00:30:24,850 --> 00:30:26,910 +When I press the button add action, it will + +509 +00:30:26,910 --> 00:30:30,830 +execute this code. Okay? What does this code do? + +510 +00:30:31,190 --> 00:30:33,070 +As soon as you press the button, it goes to create + +511 +00:30:33,070 --> 00:30:35,930 +an object from whom? From the circle, here is the + +512 +00:30:35,930 --> 00:30:38,930 +circle. Circle C equals new circle. It has to pass + +513 +00:30:38,930 --> 00:30:42,030 +three things through it. Half of the line and X + +514 +00:30:42,030 --> 00:30:44,890 +and Y. I fixed the half of the line. How much did + +515 +00:30:44,890 --> 00:30:48,280 +I leave it? 5. The location of the gate has to + +516 +00:30:48,280 --> 00:30:51,280 +change. It doesn't have to reach the circle in one + +517 +00:30:51,280 --> 00:30:54,060 +place. It has to be random. How do you make it + +518 +00:30:54,060 --> 00:30:57,800 +random? There is a class called Random. You tell + +519 +00:30:57,800 --> 00:31:01,340 +it to go to x and make it r.mixint 500. That is, + +520 +00:31:01,400 --> 00:31:04,420 +type any integer number between 0 and 500. Why + +521 +00:31:04,420 --> 00:31:06,180 +500? Because the width of the screen is 500 + +522 +00:31:06,180 --> 00:31:10,000 +pixels. And here is also a random number from 0 to + +523 +00:31:10,000 --> 00:31:15,320 +350, which is the height of the screen.an object + +524 +00:31:15,320 --> 00:31:17,240 +from where? From the circle, but I'm not going to + +525 +00:31:17,240 --> 00:31:19,340 +draw it. In order to draw it, I'm going to make a + +526 +00:31:19,340 --> 00:31:22,080 +method called draw, seed to draw, and I'm going to + +527 +00:31:22,080 --> 00:31:27,680 +draw it in the drawing panel, get graphics. That + +528 +00:31:27,680 --> 00:31:29,760 +is, I set the place where I'm going to draw it. + +529 +00:31:29,960 --> 00:31:32,020 +That is, as soon as I click on the circle button, + +530 +00:31:32,360 --> 00:31:34,220 +an object from the circle will appear and draw it. + +531 +00:31:35,380 --> 00:31:38,560 +I'm going to run the code. This is the circle, and + +532 +00:31:38,560 --> 00:31:43,150 +what does it do? It draws circles randomly. there + +533 +00:31:43,150 --> 00:31:47,770 +is another button called rectangle it also creates + +534 +00:31:47,770 --> 00:31:51,490 +a rectangle and if I want to draw a rectangle I do + +535 +00:31:51,490 --> 00:32:01,630 +the same thing rectangle.drawingpanel + +536 +00:32:08,460 --> 00:32:11,820 +Now, there is a solid circle at the bottom. I can + +537 +00:32:11,820 --> 00:32:15,160 +also call it a draw. Okay? Then, there is a button + +538 +00:32:15,160 --> 00:32:18,920 +called Clear, which is supposed to erase the whole + +539 +00:32:18,920 --> 00:32:21,940 +screen. And there is a button called Undo, which + +540 +00:32:21,940 --> 00:32:23,880 +is supposed to undo. This is a story. Where is the + +541 +00:32:23,880 --> 00:32:30,180 +whole story? In the Undo. Now, I draw circles and + +542 +00:32:30,180 --> 00:32:33,860 +rectangles. Okay? But I don't make it clear yet. + +543 +00:32:35,530 --> 00:32:39,510 +Okay, this is the interface that I made in the + +544 +00:32:39,510 --> 00:32:43,590 +application. This is an idea about it. Now, when + +545 +00:32:43,590 --> 00:32:48,570 +we design an application, one of the important + +546 +00:32:48,570 --> 00:32:50,970 +principles that we do, of course, there are + +547 +00:32:50,970 --> 00:32:52,830 +different types of applications, there is a mobile + +548 +00:32:52,830 --> 00:32:54,850 +application, there is a web application, okay, + +549 +00:32:55,030 --> 00:32:57,690 +websites, internet, and there is a desktop like + +550 +00:32:57,690 --> 00:32:59,650 +this one that we are working on, the game. I + +551 +00:32:59,650 --> 00:33:02,850 +always tell you to separate the interface from + +552 +00:33:02,850 --> 00:33:05,440 +your logic. What does it mean to separate the UI + +553 +00:33:05,440 --> 00:33:08,340 +from the logic? It means that this is the design + +554 +00:33:08,340 --> 00:33:11,500 +screen, okay? Inside the design screen, there are + +555 +00:33:11,500 --> 00:33:14,020 +buttons, and when I press the buttons, they + +556 +00:33:14,020 --> 00:33:16,220 +execute certain elements, algorithms, algorithms, + +557 +00:33:16,480 --> 00:33:19,060 +steps that they want to execute. Because if you + +558 +00:33:19,060 --> 00:33:22,140 +put the UI design with the steps to execute, all + +559 +00:33:22,140 --> 00:33:26,000 +in one file, what happens to your program? It gets + +560 +00:33:26,000 --> 00:33:31,420 +corrupted, okay? So, I recommend that you separate + +561 +00:33:31,420 --> 00:33:35,710 +the UI interface from your logic, which is the + +562 +00:33:35,710 --> 00:33:38,030 +design pattern, which they call MVC, do you hear + +563 +00:33:38,030 --> 00:33:43,690 +it? The V is short for what? For the view, which + +564 +00:33:43,690 --> 00:33:47,130 +is the face. The M is short for what? For the + +565 +00:33:47,130 --> 00:33:49,930 +model. What is the model? This is what depends on + +566 +00:33:49,930 --> 00:33:52,390 +your logic. Algorithms, algorithms, algorithms, + +567 +00:33:53,050 --> 00:33:55,990 +connections to databases, this is all a model. + +568 +00:33:56,590 --> 00:34:01,670 +Separate these from each other. Why? Sometimes the + +569 +00:34:01,670 --> 00:34:04,150 +faces change.Each time I want to change something + +570 +00:34:04,150 --> 00:34:05,910 +in the interface, I have to search for it in the + +571 +00:34:05,910 --> 00:34:07,950 +code. If I want to change something in the logic, + +572 +00:34:08,730 --> 00:34:10,930 +I have to create a new query, I have to open the + +573 +00:34:10,930 --> 00:34:14,530 +code of the interface and search for it. No, it is + +574 +00:34:14,530 --> 00:34:18,050 +correct that you separate the design from the + +575 +00:34:18,050 --> 00:34:21,350 +interface. The design, which is the view, and the + +576 +00:34:21,350 --> 00:34:24,090 +model, which is the steps and algorithms, is the + +577 +00:34:24,090 --> 00:34:27,050 +model. And the view is from these faces. And the + +578 +00:34:27,050 --> 00:34:30,130 +controller, which is the C, who is it? The one + +579 +00:34:30,130 --> 00:34:31,970 +that connects the two. The one that connects the + +580 +00:34:31,970 --> 00:34:34,650 +two together. And this is important even in, you + +581 +00:34:34,650 --> 00:34:36,590 +don't find web programs, you don't find anyone + +582 +00:34:36,590 --> 00:34:39,330 +working. You find me working back end, and another + +583 +00:34:39,330 --> 00:34:42,030 +person working. This is how we make the design, + +584 +00:34:42,210 --> 00:34:45,450 +and this is how we make the work back. Even if + +585 +00:34:45,450 --> 00:34:47,370 +there is a separation. But if the two fell down + +586 +00:34:47,370 --> 00:34:51,470 +and gathered together,It's hard work, right or + +587 +00:34:51,470 --> 00:34:53,650 +wrong? So this right is from the division. We are + +588 +00:34:53,650 --> 00:34:57,950 +currently not separated, right or wrong? This is + +589 +00:34:57,950 --> 00:35:02,470 +all UI code, and inside the buttons is the + +590 +00:35:02,470 --> 00:35:04,990 +execution code. The execution is present with the + +591 +00:35:04,990 --> 00:35:07,730 +UI together. So in order to implement Our job is + +592 +00:35:07,730 --> 00:35:10,030 +to organize our work. We want to separate the two. + +593 +00:35:10,130 --> 00:35:11,950 +What is separating the two from each other? Take + +594 +00:35:11,950 --> 00:35:15,730 +all the logic and undo and redo and draw and put + +595 +00:35:15,730 --> 00:35:17,730 +them in another class. Separate the elements, + +596 +00:35:17,870 --> 00:35:20,110 +separate the elements. Instead of putting them all + +597 +00:35:20,110 --> 00:35:23,930 +in one file. Let's separate this talk. Let's make + +598 +00:35:23,930 --> 00:35:27,790 +a new class. I want to call this class + +599 +00:35:27,790 --> 00:35:28,650 +DrawManager. + +600 +00:35:30,910 --> 00:35:33,840 +What is DrawManager?This is the person in charge + +601 +00:35:33,840 --> 00:35:36,800 +of the drawing. He is the one who does the + +602 +00:35:36,800 --> 00:35:41,420 +management of this work. When I press any button, + +603 +00:35:41,540 --> 00:35:45,540 +who executes it and works? How many buttons do I + +604 +00:35:45,540 --> 00:35:49,120 +have in the program? Five. Draw a circle. Draw a + +605 +00:35:49,120 --> 00:35:53,680 +rectangle. Draw a solid circle. Undo and redo. For + +606 +00:35:53,680 --> 00:35:56,280 +each button, what do I have to do here? A special + +607 +00:35:56,280 --> 00:36:01,900 +arrow. I can say public, void, draw, circle. Do + +608 +00:36:01,900 --> 00:36:06,110 +you see these arrows? You have to press them. When + +609 +00:36:06,110 --> 00:36:08,550 +I press the button, I separate it from the rest of + +610 +00:36:08,550 --> 00:36:11,830 +the words. I separate it. Okay, guys? Here, you + +611 +00:36:11,830 --> 00:36:13,970 +just need to give it the circle to draw it, and + +612 +00:36:13,970 --> 00:36:15,090 +you need to give it a place to draw it. + +613 +00:36:21,930 --> 00:36:24,950 +Okay? And here, you need to put the circle drawing + +614 +00:36:24,950 --> 00:36:31,230 +code. This just needs to be imported. As long as + +615 +00:36:31,230 --> 00:36:33,570 +there is a draw circle, it also needs to do what? + +616 +00:36:33,610 --> 00:36:33,850 +Draw. + +617 +00:36:47,540 --> 00:36:49,720 +And there is a third circle, but I forgot what to + +618 +00:36:49,720 --> 00:36:55,340 +do with it. I have clear, which should be erased + +619 +00:36:55,340 --> 00:37:01,700 +as well. And I have public void undo, which should + +620 +00:37:01,700 --> 00:37:01,920 +be returned. + +621 +00:37:08,780 --> 00:37:10,320 +These things are still empty, we still need to + +622 +00:37:10,320 --> 00:37:13,000 +fill them up. Okay? But the idea is that we don't + +623 +00:37:13,000 --> 00:37:14,660 +want to work on this work inside the UI. + +624 +00:37:15,620 --> 00:37:17,640 +Otherwise, what will happen to the work? A mess. + +625 +00:37:18,140 --> 00:37:21,240 +Okay? We want to make the UI ... Did you find it? + +626 +00:37:21,440 --> 00:37:25,960 +I divided the program into two parts. This is the + +627 +00:37:25,960 --> 00:37:30,020 +UI, which is the class called DrawingApp. + +628 +00:37:32,520 --> 00:37:38,030 +And this is the model. Or this is the UV, too.The + +629 +00:37:38,030 --> 00:37:42,030 +model name is the drawing manager. + +630 +00:37:43,910 --> 00:37:46,670 +I will get this UI from the action and the action + +631 +00:37:46,670 --> 00:37:50,250 +sends it to the drawing manager. So every button + +632 +00:37:50,250 --> 00:37:54,590 +that is pressed here will go to the method in the + +633 +00:37:54,590 --> 00:37:55,170 +drawing manager. + +634 +00:38:00,190 --> 00:38:03,090 +In order to do this job, you need to go back to + +635 +00:38:03,090 --> 00:38:05,990 +the UI. The beginning is always where? In the UI, + +636 +00:38:06,030 --> 00:38:07,650 +not the principle in the UI. And the UI will + +637 +00:38:07,650 --> 00:38:09,850 +direct the command to whom? To the drawing + +638 +00:38:09,850 --> 00:38:11,750 +manager, and the drawing manager will execute it. + +639 +00:38:11,810 --> 00:38:15,370 +Okay? So, I need from inside the drawing app, an + +640 +00:38:15,370 --> 00:38:19,910 +object from where? Drawing manager M equals new + +641 +00:38:19,910 --> 00:38:23,430 +drawing manager. Right or wrong guys? + +642 +00:38:28,800 --> 00:38:31,480 +Why don't they see it? Drawing, Draw Manager, we + +643 +00:38:31,480 --> 00:38:31,780 +named it. + +644 +00:38:36,300 --> 00:38:40,480 +Okay? What is this object here? Because when I + +645 +00:38:40,480 --> 00:38:44,240 +click on circle, I create the circle, and I don't + +646 +00:38:44,240 --> 00:38:46,160 +want the drawing to be done here. I want to go to + +647 +00:38:46,160 --> 00:38:48,740 +the manager and tell him to draw a circle. + +648 +00:38:56,700 --> 00:39:01,000 +It's as if the UI is directing to whom? To the + +649 +00:39:01,000 --> 00:39:05,020 +drone manager. It's the same thing with + +650 +00:39:05,020 --> 00:39:11,060 +rectangles. I create a rectangle and let the drone + +651 +00:39:11,060 --> 00:39:15,760 +manager draw it. Someone will say, where is the + +652 +00:39:15,760 --> 00:39:16,320 +interface for this? + +653 +00:39:19,600 --> 00:39:24,650 +It's the same thing when I draw a circle. Of + +654 +00:39:24,650 --> 00:39:25,930 +course, there is no method called solid circle + +655 +00:39:25,930 --> 00:39:29,790 +yet. We will do it later. Because clear, when I + +656 +00:39:29,790 --> 00:39:32,070 +erase, I should go to the ... not this one that + +657 +00:39:32,070 --> 00:39:34,570 +erases, not the GUI. How to erase should be done + +658 +00:39:34,570 --> 00:39:36,510 +there. You decide there. + +659 +00:39:41,590 --> 00:39:47,370 +Drawingpanel.getgraphics Undo. How do we undo? + +660 +00:39:48,610 --> 00:39:51,650 +Undo is this part. Send it to the manager and the + +661 +00:39:51,650 --> 00:39:56,120 +manager decides.Go to M and say Undo. + +662 +00:40:03,980 --> 00:40:08,400 +Ok. Now, what do we do with the UI? We delete it. + +663 +00:40:08,800 --> 00:40:11,660 +We're done. What does the UI have in its hands? It + +664 +00:40:11,660 --> 00:40:14,400 +receives commands and sends them to the drone + +665 +00:40:14,400 --> 00:40:18,260 +driver. Where does all the focus and work go? it + +666 +00:40:18,260 --> 00:40:20,480 +will be done here, you will see how it is + +667 +00:40:20,480 --> 00:40:24,080 +organized, I don't see any UI code or anything, + +668 +00:40:24,200 --> 00:40:26,820 +the UI is separate and the backend is separate, + +669 +00:40:27,720 --> 00:40:30,520 +this is the model we call it, okay? Now here you + +670 +00:40:30,520 --> 00:40:32,400 +think comfortably how you want to do everything, + +671 +00:40:32,860 --> 00:40:34,700 +the first thing is drawing a circle, this is easy, + +672 +00:40:35,200 --> 00:40:37,520 +the circle does not have a ready method to draw, I + +673 +00:40:37,520 --> 00:40:41,410 +did it, I go to the circle and tell it what? the + +674 +00:40:41,410 --> 00:40:44,750 +drone and the rectangle is the same thing, I go to + +675 +00:40:44,750 --> 00:40:49,950 +the rectangle and I say the drone clear, how do I + +676 +00:40:49,950 --> 00:40:53,530 +delete it? to delete it, there is a tool called + +677 +00:40:53,530 --> 00:40:57,810 +clear in graphics, clear rectangle I delete a + +678 +00:40:57,810 --> 00:41:01,110 +certain rectangle like this for example, I delete + +679 +00:41:01,110 --> 00:41:04,670 +an area of 500x500 for example, the whole screen + +680 +00:41:04,670 --> 00:41:10,870 +the undo, this is a win What does it mean to undo? + +681 +00:41:11,170 --> 00:41:14,610 +It means to redraw all the things that were drawn + +682 +00:41:14,610 --> 00:41:19,970 +and erased. It doesn't mean that I drew a circle. + +683 +00:41:20,590 --> 00:41:23,850 +It means that whatever shape you want to draw, you + +684 +00:41:23,850 --> 00:41:26,230 +have to memorize it because it will force you to + +685 +00:41:26,230 --> 00:41:30,190 +do undo what are the shapes that I'm drawing? + +686 +00:41:30,450 --> 00:41:33,530 +three shapes circle and rectangle until now solid + +687 +00:41:33,530 --> 00:41:36,690 +circle so you start thinking you say yes I want to + +688 +00:41:36,690 --> 00:41:38,390 +memorize the circles you want to go to the array + +689 +00:41:38,390 --> 00:41:41,390 +list up there where did you make the array list? + +690 +00:41:42,010 --> 00:41:48,990 +in the draw manager what is it? circle these + +691 +00:41:48,990 --> 00:41:50,130 +circles are equal to + +692 +00:42:13,710 --> 00:42:19,170 +Rectangles equals new ArrayList + +693 +00:42:21,660 --> 00:42:24,520 +Why did we make this list? Because when we draw a + +694 +00:42:24,520 --> 00:42:29,220 +circle, we say circles.add and put on the object + +695 +00:42:29,220 --> 00:42:31,480 +circle. This is the purpose of the object that we + +696 +00:42:31,480 --> 00:42:35,860 +made, to memorize it. Notice that this code now, + +697 +00:42:36,100 --> 00:42:39,200 +if I worked in the UI, all this was done where? In + +698 +00:42:39,200 --> 00:42:41,740 +the UI. It was messy. No, we separated the work + +699 +00:42:41,740 --> 00:42:44,320 +again. For the rectangle, it's the same thing. + +700 +00:42:44,400 --> 00:42:48,460 +Come to the rectangles and say add and add to the + +701 +00:42:48,460 --> 00:42:52,540 +object rectangle that we drew. because a clear + +702 +00:42:52,540 --> 00:42:57,180 +goal for undo what do we do? you have to rotate on + +703 +00:42:57,180 --> 00:43:00,840 +each circle and draw what is in it, right? you + +704 +00:43:00,840 --> 00:43:02,920 +have to look at the first circle if you don't have + +705 +00:43:02,920 --> 00:43:08,680 +one circle for each circle C in circles say C dot + +706 +00:43:08,680 --> 00:43:14,160 +draw G and there is another circle for each + +707 +00:43:14,160 --> 00:43:22,810 +rectangle R in rectangles Go and tell him C or R + +708 +00:43:22,810 --> 00:43:28,630 +dot draw Right + +709 +00:43:28,630 --> 00:43:33,350 +or wrong guys? This is the undo Because we haven't + +710 +00:43:33,350 --> 00:43:38,150 +finished yet Now, we have prepared this gate for + +711 +00:43:38,150 --> 00:43:40,530 +the draw manager But don't forget that the draw + +712 +00:43:40,530 --> 00:43:43,690 +manager needs to be used from where? From the UI + +713 +00:43:43,690 --> 00:43:46,710 +It should be in the UI in every button that we + +714 +00:43:46,710 --> 00:43:50,510 +made When I click on undo, it goes to the manager + +715 +00:43:50,510 --> 00:43:54,450 +and tells him to undo. When I click on clear, it + +716 +00:43:54,450 --> 00:43:56,610 +goes to the manager and tells him to clear. When I + +717 +00:43:56,610 --> 00:43:58,210 +tell him to draw a rectangle, it goes to the + +718 +00:43:58,210 --> 00:43:59,250 +manager and tells him to draw a rectangle. When I + +719 +00:43:59,250 --> 00:44:00,450 +tell him to draw a circle, it goes to the manager + +720 +00:44:00,450 --> 00:44:02,430 +and tells him to draw a circle. Now we are ready + +721 +00:44:02,430 --> 00:44:02,850 +to start. + +722 +00:44:09,270 --> 00:44:11,770 +because this circle is drawn in circles drawn in + +723 +00:44:11,770 --> 00:44:17,770 +rectangles clear and this H is drawn in rectangles + +724 +00:44:17,770 --> 00:44:22,630 +still we have not reached the point that we want + +725 +00:44:22,630 --> 00:44:25,310 +to reach so my question is when we do the solid + +726 +00:44:25,310 --> 00:44:29,850 +circle what should we do? no, we don't have to + +727 +00:44:29,850 --> 00:44:32,110 +read the new list, do you know why? because the + +728 +00:44:32,110 --> 00:44:35,730 +solid circle is what? circle but we have to add a + +729 +00:44:35,730 --> 00:44:39,930 +value called draw Or not even necessary, it draws + +730 +00:44:39,930 --> 00:44:43,830 +a circle and it moves So this is the draw app In + +731 +00:44:43,830 --> 00:44:48,510 +the end, the solid circle is a circle, right guys? + +732 +00:44:49,070 --> 00:44:51,770 +So I can go to the manager and tell him to draw a + +733 +00:44:51,770 --> 00:44:59,790 +circle and send it to the solid circle So + +734 +00:44:59,790 --> 00:45:02,410 +the solid circle does not have any problem, it + +735 +00:45:02,410 --> 00:45:04,810 +works on what exists, it makes the solid circle + +736 +00:45:05,940 --> 00:45:09,180 +and this one is clear and this one is undo but + +737 +00:45:09,180 --> 00:45:16,520 +there is a mistake in the colors ok + +738 +00:45:16,520 --> 00:45:21,520 +now where is the problem? the problem is in the + +739 +00:45:21,520 --> 00:45:24,280 +following if you want to add a new shape what do + +740 +00:45:24,280 --> 00:45:26,040 +you have to do to add it? look at what you have to + +741 +00:45:26,040 --> 00:45:28,400 +do when you add a new shape first you have to + +742 +00:45:28,400 --> 00:45:33,390 +create a classand you use the draw method to draw + +743 +00:45:33,390 --> 00:45:38,470 +the shape. Then you add a button to the UI. And + +744 +00:45:38,470 --> 00:45:41,370 +here in the draw manager, you use a method called + +745 +00:45:41,370 --> 00:45:46,630 +drawMethodTriangle. And you add a new method to + +746 +00:45:46,630 --> 00:45:48,970 +it. And you create a new loop in the undo + +747 +00:45:48,970 --> 00:45:52,970 +function. So that Erzy can draw the shapes. All of + +748 +00:45:52,970 --> 00:45:55,990 +this you have to do if you want to add a new + +749 +00:45:55,990 --> 00:46:02,700 +shape.The main problem is that for every new shape + +750 +00:46:02,700 --> 00:46:03,940 +in the Draw Manager, you have to create a new + +751 +00:46:03,940 --> 00:46:07,380 +method, or a new list, or a new load. Right or + +752 +00:46:07,380 --> 00:46:10,700 +wrong? No. We have to relax ourselves. We have to + +753 +00:46:10,700 --> 00:46:13,200 +make the Draw Manager to add new shapes that we + +754 +00:46:13,200 --> 00:46:17,530 +don't change at all.How? Instead of depending on + +755 +00:46:17,530 --> 00:46:21,430 +circle, rectangle, triangle or any shape Unite all + +756 +00:46:21,430 --> 00:46:24,390 +their types You put them in a single list You make + +757 +00:46:24,390 --> 00:46:29,690 +a single loop You use a single method Okay? + +758 +00:46:30,490 --> 00:46:37,710 +So now I made a new class here I named it shape + +759 +00:46:40,570 --> 00:46:43,670 +I don't want to make it a class because it's not a + +760 +00:46:43,670 --> 00:46:45,270 +class. Why? Because there is nothing that unites + +761 +00:46:45,270 --> 00:46:47,770 +them in the first place. Circular data, non + +762 +00:46:47,770 --> 00:46:50,590 +-triangular data, non-triangular data. There is + +763 +00:46:50,590 --> 00:46:53,730 +nothing common between them. So I made the + +764 +00:46:53,730 --> 00:46:58,330 +interface empty, like this. And I want to unite + +765 +00:46:58,330 --> 00:47:00,730 +them. I went to the circle and told it to + +766 +00:47:00,730 --> 00:47:05,010 +implement shape. And I went to the rectangle + +767 +00:47:09,750 --> 00:47:14,910 +Implements shape Solid + +768 +00:47:14,910 --> 00:47:19,890 +circle خلاص ما هي Extend to main circle طب هذه + +769 +00:47:19,890 --> 00:47:22,650 +بتفرج معايا كتير و انا بتفرج في ال draw manager + +770 +00:47:22,650 --> 00:47:28,310 +لان بدل ما يكون عيدي اكتر من list بتعمل list واحدة + +771 +00:47:28,310 --> 00:47:34,040 +تاخد إيش يا جماعة shape وهذه سميها shapes rather + +772 +00:47:34,040 --> 00:47:37,620 +than having circle, rectangle and triangle because + +773 +00:47:37,620 --> 00:47:40,920 +I can send them all to this one thing called draw + +774 +00:47:40,920 --> 00:47:45,260 +shape and I will send this shape to it shape S and + +775 +00:47:45,260 --> 00:47:48,160 +I will tell it what? S dot yes here there is a + +776 +00:47:48,160 --> 00:47:51,880 +problem ok and I will tell it to draw the shape + +777 +00:47:51,880 --> 00:47:59,620 +and add it to the existing list I have it. Of + +778 +00:47:59,620 --> 00:48:01,580 +course, the same draw is not available yet. But + +779 +00:48:01,580 --> 00:48:03,780 +let's start with the first one. The draw rectangle + +780 +00:48:03,780 --> 00:48:05,640 +does not have the necessary shape. Right or wrong? + +781 +00:48:05,700 --> 00:48:07,960 +The clear rectangle does not change. Because the + +782 +00:48:07,960 --> 00:48:12,080 +loops also do not need to make two loops. It makes + +783 +00:48:12,080 --> 00:48:15,880 +a loop on one shape. P, for example, on shapes. + +784 +00:48:17,660 --> 00:48:22,350 +And it is supposed to say P dot draw.Okay, now + +785 +00:48:22,350 --> 00:48:25,150 +there is a problem with these shapes, each shape + +786 +00:48:25,150 --> 00:48:28,010 +has a different way of drawing Because the Draw + +787 +00:48:28,010 --> 00:48:30,550 +Manager wants to know how to draw each shape He + +788 +00:48:30,550 --> 00:48:32,250 +says I have no claim to the way of drawing each + +789 +00:48:32,250 --> 00:48:35,390 +shape You want to make different shapes, do it, + +790 +00:48:35,390 --> 00:48:38,770 +you are free But in the end, you leave them all + +791 +00:48:38,770 --> 00:48:42,510 +the same kind And leave me the way of drawing each + +792 +00:48:42,510 --> 00:48:47,490 +shape in the class you are going to do My job, I + +793 +00:48:47,490 --> 00:48:49,790 +want to relax, I want to take the shape and draw + +794 +00:48:49,790 --> 00:48:54,350 +itUnderstand that you are free to program whatever + +795 +00:48:54,350 --> 00:48:58,780 +way you want.Okay? But this draw is not present + +796 +00:48:58,780 --> 00:49:01,760 +now. So we go to the shape interface and create a + +797 +00:49:01,760 --> 00:49:05,220 +draw method. This method is present in all shapes, + +798 +00:49:05,760 --> 00:49:10,220 +but each shape has its own draw. You do it to + +799 +00:49:10,220 --> 00:49:13,040 +achieve polymorphism, so that the draw manager + +800 +00:49:13,040 --> 00:49:15,540 +sees it and executes it. But it has nothing to do + +801 +00:49:15,540 --> 00:49:17,100 +with the draw manager how the shape will be drawn. + +802 +00:49:17,340 --> 00:49:19,640 +You as a programmer, when you create a new shape + +803 +00:49:19,640 --> 00:49:21,860 +and implement it to the interface, you have to + +804 +00:49:21,860 --> 00:49:24,380 +determine what this is to draw. My job is to order + +805 +00:49:24,380 --> 00:49:33,240 +them and tell them public void draw Graphics + +806 +00:49:35,530 --> 00:49:39,550 +abstract method in the interface of course, as + +807 +00:49:39,550 --> 00:49:42,250 +soon as you add the method in the interface it + +808 +00:49:42,250 --> 00:49:44,710 +will ask you to add it where? in every shape, + +809 +00:49:44,790 --> 00:49:47,990 +every shape you made in this circle as long as you + +810 +00:49:47,990 --> 00:49:49,730 +made an implement for the shape, it must have made + +811 +00:49:49,730 --> 00:49:52,050 +an implement for whom? for the draw, it will make + +812 +00:49:52,050 --> 00:49:54,810 +it, it has determined the way to draw it and in + +813 +00:49:54,810 --> 00:49:56,530 +the rectangle it also made an implement for the + +814 +00:49:56,530 --> 00:49:58,490 +draw and it has determined the way to draw it you + +815 +00:49:58,490 --> 00:50:01,740 +need to add a triangleWhat do you have to do? A + +816 +00:50:01,740 --> 00:50:05,080 +new class? Implementation. And you have to make an + +817 +00:50:05,080 --> 00:50:07,940 +implementation for whom? For the drone. You came, + +818 +00:50:08,380 --> 00:50:12,880 +I'm reading about you, you bring me the shape of + +819 +00:50:12,880 --> 00:50:16,980 +your class and the way you draw the shape you put + +820 +00:50:16,980 --> 00:50:20,880 +in it. I stand as a drone manager, I get the shape + +821 +00:50:20,880 --> 00:50:23,600 +and I call the drone. Okay? + +822 +00:50:30,390 --> 00:50:34,050 +Now, let's fix some things. Look at the Draw + +823 +00:50:34,050 --> 00:50:36,190 +Manager, it doesn't know anything. Not a circle, + +824 +00:50:36,830 --> 00:50:38,730 +not a rectangle, not a rectangle. It only deals + +825 +00:50:38,730 --> 00:50:43,450 +with the meaning. The meaning is shape. Now, if I + +826 +00:50:43,450 --> 00:50:46,810 +add new shapes and send them to it, it will accept + +827 +00:50:46,810 --> 00:50:50,330 +them without any problem. If I add new shapes to + +828 +00:50:50,330 --> 00:50:53,270 +the Draw Manager, there won't be any change. The + +829 +00:50:53,270 --> 00:50:58,210 +only change isIn the new class that you added in + +830 +00:50:58,210 --> 00:51:00,430 +the graphical interface, it will make a button. + +831 +00:51:01,410 --> 00:51:04,050 +And by the way, in front of it, even the button + +832 +00:51:04,050 --> 00:51:07,310 +will do it by itself. Okay? So you just reach a + +833 +00:51:07,310 --> 00:51:10,070 +stage in the design patterns, make the class and + +834 +00:51:10,070 --> 00:51:12,920 +throw it in the program. and it will work by + +835 +00:51:12,920 --> 00:51:16,420 +itself as if you were doing a plugin ok? let's go + +836 +00:51:16,420 --> 00:51:18,780 +back to draw I still have a mistake in the GUI + +837 +00:51:18,780 --> 00:51:21,680 +where is it? I will stop having draw circle and + +838 +00:51:21,680 --> 00:51:24,320 +draw rectangle I now have only one thing which is + +839 +00:51:24,320 --> 00:51:27,560 +called draw shape if you have draw shape, do you + +840 +00:51:27,560 --> 00:51:30,140 +think you can draw a circle? yes, you can do that + +841 +00:51:30,140 --> 00:51:34,360 +ok? and here also I don't have draw rectangle I + +842 +00:51:34,360 --> 00:51:39,240 +have draw shape and I don't have draw circle, no + +843 +00:51:39,240 --> 00:51:41,420 +solid circle draw shape + +844 +00:51:43,740 --> 00:51:49,920 +Clear calls clear and undo calls undo Now if I run + +845 +00:51:49,920 --> 00:51:53,880 +this application it will run Because this is + +846 +00:51:53,880 --> 00:51:59,300 +circle, this is rectangle, this is clear and this + +847 +00:51:59,300 --> 00:52:03,220 +is undo The idea is that when you add a new class + +848 +00:52:05,590 --> 00:52:08,370 +For example, if you want to create a triangle, + +849 +00:52:09,130 --> 00:52:12,370 +right click on it and choose New Java Class + +850 +00:52:12,370 --> 00:52:19,150 +Triangle What should we do next? Go to Implements + +851 +00:52:20,750 --> 00:52:23,950 +Okay? Shape. As soon as you implement it, come + +852 +00:52:23,950 --> 00:52:27,310 +here. Okay? As long as you are a shape, explain to + +853 +00:52:27,310 --> 00:52:30,910 +me how to draw the shape. Here you put the code of + +854 +00:52:30,910 --> 00:52:33,130 +who you want to draw. You define him as a + +855 +00:52:33,130 --> 00:52:35,910 +programmer. What is his job? He takes the shape + +856 +00:52:35,910 --> 00:52:38,930 +and tells him to draw it. So we united the + +857 +00:52:38,930 --> 00:52:41,690 +different types of shapes into one shape. Now the + +858 +00:52:41,690 --> 00:52:45,210 +draw manager deals with the type of interface.So, + +859 +00:52:45,450 --> 00:52:46,830 +what happened to this DrawManager? It became + +860 +00:52:46,830 --> 00:52:48,770 +extendable. You can make anything. You can make + +861 +00:52:48,770 --> 00:52:52,050 +shapes that won't change any line of code. We + +862 +00:52:52,050 --> 00:52:54,870 +don't care if the code is working. It wasn't + +863 +00:52:54,870 --> 00:52:56,990 +working in the beginning, but it was working. + +864 +00:52:57,090 --> 00:52:59,870 +Every modification, you need to modify it in 20 + +865 +00:52:59,870 --> 00:53:03,270 +places. At least, the DrawManager won't make any + +866 +00:53:03,270 --> 00:53:05,630 +modification because it only deals with the + +867 +00:53:05,630 --> 00:53:07,750 +interface. And this is the benefit of the + +868 +00:53:07,750 --> 00:53:10,500 +interface. through two examples that I explained + +869 +00:53:10,500 --> 00:53:14,920 +to you tasks and the draw manager and this code is + +870 +00:53:14,920 --> 00:53:17,860 +available on moodle if anyone has any questions, + +871 +00:53:18,420 --> 00:53:20,100 +good luck + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/_S0ZM3owxXE.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/_S0ZM3owxXE.srt new file mode 100644 index 0000000000000000000000000000000000000000..7ac7372799b536abbadec18f5c4836633427656a --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/_S0ZM3owxXE.srt @@ -0,0 +1,2310 @@ + +1 +00:00:05,060 --> 00:00:08,500 +Okay guys, peace be upon you. In the previous + +2 +00:00:08,500 --> 00:00:11,700 +lecture, we started with the new design pattern + +3 +00:00:11,700 --> 00:00:14,520 +which is the command pattern. And we said that the + +4 +00:00:14,520 --> 00:00:16,860 +command pattern has a specific benefit, which is + +5 +00:00:16,860 --> 00:00:20,240 +if I have an application that I need to follow + +6 +00:00:20,240 --> 00:00:23,220 +certain commands, + +7 +00:00:23,680 --> 00:00:26,040 +I want to execute them, make them queue, store + +8 +00:00:26,040 --> 00:00:29,980 +them to execute them later, we use the command + +9 +00:00:29,980 --> 00:00:33,640 +pattern. And this is necessary in some apps like for + +10 +00:00:33,640 --> 00:00:35,700 +example the financial apps and the wallet that I + +11 +00:00:35,700 --> 00:00:37,760 +want to do or work for example to buy, but this + +12 +00:00:37,760 --> 00:00:41,420 +will be done at a later time or for example in the + +13 +00:00:41,420 --> 00:00:43,180 +process of undo and redo that we will see an + +14 +00:00:43,180 --> 00:00:45,700 +example of this lecture. We saw in the previous + +15 +00:00:45,700 --> 00:00:47,500 +lecture a complete example on the subject of + +16 +00:00:47,500 --> 00:00:49,720 +command pattern which is how to deal with + +17 +00:00:49,720 --> 00:00:52,240 +operations in the stock market. We saw for example + +18 +00:00:52,240 --> 00:00:54,200 +that I have a class called stock market through + +19 +00:00:54,200 --> 00:00:57,060 +which I can for example buy stocks, open a + +20 +00:00:57,060 --> 00:01:01,870 +company, sell stocks, write books, and others. The + +21 +00:01:01,870 --> 00:01:03,890 +idea behind the command pattern is that these + +22 +00:01:03,890 --> 00:01:06,410 +commands, when I call the methods in the stock + +23 +00:01:06,410 --> 00:01:09,250 +market, they are executed directly. But now I want + +24 +00:01:09,250 --> 00:01:12,910 +to convert every call to a method, I want to + +25 +00:01:12,910 --> 00:01:15,250 +convert it to a command, store it as an object, + +26 +00:01:15,350 --> 00:01:17,730 +store in it all the commands and information that + +27 +00:01:17,730 --> 00:01:20,990 +I need to execute. Okay? So that I can execute it + +28 +00:01:20,990 --> 00:01:24,930 +later. These commands or objects were created + +29 +00:01:24,930 --> 00:01:28,610 +through classes that implement the same interface. + +30 +00:01:29,250 --> 00:01:30,910 +So that whatever kind of command is different, + +31 +00:01:31,030 --> 00:01:33,530 +whether it is selling them or buying them, all of + +32 +00:01:33,530 --> 00:01:36,590 +them will follow the same interface. This means + +33 +00:01:36,590 --> 00:01:39,990 +that I can put all of these commands on different + +34 +00:01:39,990 --> 00:01:42,910 +types in one list and execute it without knowing + +35 +00:01:42,910 --> 00:01:47,910 +the details of execution. In this lecture, we will + +36 +00:01:47,910 --> 00:01:50,570 +see another example on the command pattern, maybe + +37 +00:01:50,570 --> 00:01:54,790 +an application more, to see how undo and redo work + +38 +00:01:54,790 --> 00:01:57,930 +together. For example, I want to do certain + +39 +00:01:57,930 --> 00:01:59,670 +operations in the program and I want to undo them + +40 +00:01:59,670 --> 00:02:02,610 +to go back to these operations or redo them to go + +41 +00:02:02,610 --> 00:02:04,410 +back to these operations. + +42 +00:02:14,190 --> 00:02:18,210 +Okay guys, before we start, let's just remember + +43 +00:02:18,210 --> 00:02:19,830 +what we did in the last lecture in the stock + +44 +00:02:19,830 --> 00:02:22,290 +market. We started that I have a class called + +45 +00:02:22,290 --> 00:02:24,710 +stock market through which the process of buying + +46 +00:02:24,710 --> 00:02:27,490 +stocks or opening companies takes place. This is + +47 +00:02:27,490 --> 00:02:30,030 +the class through which everything takes place, + +48 +00:02:30,410 --> 00:02:33,590 +because as I said, I want these processes of + +49 +00:02:33,590 --> 00:02:37,250 +buying or opening. I made it encapsulation inside + +50 +00:02:37,250 --> 00:02:41,090 +objects, so I made an interface called stock + +51 +00:02:41,090 --> 00:02:44,830 +command. There is a method called execute, and then + +52 +00:02:44,830 --> 00:02:47,830 +I did two things which is buy shares and open + +53 +00:02:47,830 --> 00:02:52,330 +company. Both of them implement this interface. Both + +54 +00:02:52,330 --> 00:02:54,550 +of them have the necessary information to execute + +55 +00:02:54,550 --> 00:02:58,870 +the order. And notice that buy shares and open + +56 +00:02:58,870 --> 00:03:03,810 +company take through the constructor object from + +57 +00:03:03,810 --> 00:03:07,020 +whomfrom the stock market, because he is the one + +58 +00:03:07,020 --> 00:03:10,920 +who executes. Because when it comes to execute, I + +59 +00:03:10,920 --> 00:03:12,760 +go to the stock market and tell him to buy shares + +60 +00:03:12,760 --> 00:03:15,320 +and pass on the process to him. We said in the + +61 +00:03:15,320 --> 00:03:16,620 +previous lecture that this is a process like one, + +62 +00:03:16,680 --> 00:03:17,780 +two, three, four, five, six, seven, eight, nine, + +63 +00:03:17,780 --> 00:03:20,000 +ten, eleven, twelve, thirteen, fourteen, fifteen, + +64 +00:03:20,280 --> 00:03:20,740 +sixteen, eighteen, nineteen, twenty, twenty-one, + +65 +00:03:20,740 --> 00:03:20,760 +twenty-one, twenty-two, twenty-three, twenty-four, + +66 +00:03:20,760 --> 00:03:22,480 +twenty-five, twenty-five, twenty-four, twenty + +67 +00:03:22,480 --> 00:03:22,780 +-five, twenty-five, twenty-five, twenty-four, + +68 +00:03:22,780 --> 00:03:27,280 +-five, twenty-five, twenty + +69 +00:03:27,280 --> 00:03:28,160 +-five, twenty-five, twenty-five, twenty-five, + +70 +00:03:28,160 --> 00:03:28,880 +-five, twenty-five, twenty-five, means this is the + +71 +00:03:28,880 --> 00:03:32,120 +process of buying in the class of open company, the + +72 +00:03:32,120 --> 00:03:34,940 +same idea. I have open company implement for stock + +73 +00:03:34,940 --> 00:03:38,500 +command. And I also have execute, but inside execute + +74 +00:03:38,500 --> 00:03:42,700 +this does something different. The idea I have here + +75 +00:03:42,700 --> 00:03:46,300 +is as follows. This is the stock market, this is the + +76 +00:03:46,300 --> 00:03:49,490 +main method, and I have more than one process of + +77 +00:03:49,490 --> 00:03:51,350 +selling and buying and opening companies like + +78 +00:03:51,350 --> 00:03:54,170 +these two things, these are two things because all + +79 +00:03:54,170 --> 00:03:57,150 +I do is that I did not implement these two things + +80 +00:03:57,150 --> 00:03:59,070 +right now. I created each command and gave the + +81 +00:03:59,070 --> 00:04:01,610 +necessary information for implementation, and then + +82 +00:04:01,610 --> 00:04:04,930 +I went to the agent which actually contains a list + +83 +00:04:04,930 --> 00:04:06,690 +in which I store the commands and I told him to + +84 +00:04:06,690 --> 00:04:09,610 +add this command and this command because the + +85 +00:04:09,610 --> 00:04:13,830 +agent is basically class contains a list, and its + +86 +00:04:13,830 --> 00:04:17,190 +function is to store commands regardless of what + +87 +00:04:17,190 --> 00:04:19,730 +type of command it will receive from the stock + +88 +00:04:19,730 --> 00:04:22,530 +market, and store it without knowing its details + +89 +00:04:22,530 --> 00:04:26,610 +when it executes it passes to each stock command + +90 +00:04:26,610 --> 00:04:30,990 +in the list of commands executes this will do + +91 +00:04:30,990 --> 00:04:34,070 +different things depending on the type of command + +92 +00:04:34,070 --> 00:04:37,670 +available. If I make new commands, new operations in + +93 +00:04:37,670 --> 00:04:41,630 +the stock market, I will not change anything in + +94 +00:04:41,630 --> 00:04:44,170 +the stock agent. All I need to do is class and + +95 +00:04:44,170 --> 00:04:47,870 +encapsulate for this thing and call the method and + +96 +00:04:47,870 --> 00:04:51,150 +all the information I need to implement this thing + +97 +00:04:51,150 --> 00:04:55,090 +and then I create and implement it for the stock + +98 +00:04:55,090 --> 00:04:56,450 +command interface, and add it to the list, and it + +99 +00:04:56,450 --> 00:05:00,250 +works. This is a summary of what we did in the last + +100 +00:05:00,250 --> 00:05:01,610 +lecture, in this lecture we will do the following + +101 +00:05:01,610 --> 00:05:04,650 +example. Let me show you what we are going to do + +102 +00:05:04,650 --> 00:05:08,310 +and then we start to implement it, because we want + +103 +00:05:08,310 --> 00:05:11,590 +to make a program like this, a normal drawing + +104 +00:05:11,590 --> 00:05:16,570 +program. Okay? Draw, hold the mouse, and see what + +105 +00:05:16,570 --> 00:05:20,130 +I'm doing, I'm drawing like this because the idea + +106 +00:05:20,130 --> 00:05:23,810 +is that when I do undo, you see what I'm doing? It + +107 +00:05:23,810 --> 00:05:29,390 +goes back step by step. Okay? When I do redo, it + +108 +00:05:29,390 --> 00:05:31,090 +draws the drawing parts again. + +109 +00:05:35,240 --> 00:05:37,920 +Okay, as an idea of how we can apply the idea of + +110 +00:05:37,920 --> 00:05:41,480 +undo and redo by using the command pattern. Okay, + +111 +00:05:41,620 --> 00:05:46,280 +to make this program guys, I made a simple + +112 +00:05:46,280 --> 00:05:48,680 +program, of course I started from scratch. I will + +113 +00:05:48,680 --> 00:05:50,920 +show you how it looks like. This program that I + +114 +00:05:50,920 --> 00:05:56,720 +made is currently a white screen here, and under it + +115 +00:05:56,720 --> 00:05:59,920 +is the undo and redo button. Of course, currently I + +116 +00:05:59,920 --> 00:06:03,460 +am pulling the mouse. There is nothing, because we + +117 +00:06:03,460 --> 00:06:05,420 +haven't started the drawing process yet. We want + +118 +00:06:05,420 --> 00:06:08,620 +to see how to do the drawing process to do the + +119 +00:06:08,620 --> 00:06:11,780 +underwriting process afterwards. Now, in short, in + +120 +00:06:11,780 --> 00:06:14,100 +order to do the underwriting process, I have to do + +121 +00:06:14,100 --> 00:06:16,960 +the following. The drawing process, guys, what I + +122 +00:06:16,960 --> 00:06:20,000 +want to do next is that when I draw, + +123 +00:06:22,800 --> 00:06:27,620 +okay? I want him to divide my drawing into parts. + +124 +00:06:29,950 --> 00:06:32,650 +It means this shape at the end of the drawing on + +125 +00:06:32,650 --> 00:06:36,530 +the basis that each part of this will be stored as + +126 +00:06:36,530 --> 00:06:40,810 +a command. Each + +127 +00:06:40,810 --> 00:06:43,570 +part will be stored as a command, separated from + +128 +00:06:43,570 --> 00:06:46,650 +the other. In the end, I will have a set of + +129 +00:06:46,650 --> 00:06:49,410 +commands with the number of parts of the drawing. + +130 +00:06:49,410 --> 00:06:52,610 +The advantage here is that each part of these + +131 +00:06:52,610 --> 00:06:56,330 +commands I can go back and implement it or go back + +132 +00:06:56,330 --> 00:07:00,390 +and implement it again. So in order to do this thing + +133 +00:07:00,390 --> 00:07:05,250 +with a small trick, let's see how to do it. First + +134 +00:07:05,250 --> 00:07:07,970 +of all, how do we divide the drawing into parts + +135 +00:07:07,970 --> 00:07:11,370 +and store each part separately? Because what I + +136 +00:07:11,370 --> 00:07:14,660 +really want to do is the following. I want as soon + +137 +00:07:14,660 --> 00:07:17,620 +as I press the mouse, which is how I actually + +138 +00:07:17,620 --> 00:07:22,220 +draw, I put down the pen and then I pull it, + +139 +00:07:22,240 --> 00:07:25,600 +right? With the mouse, as soon as I press with the + +140 +00:07:25,600 --> 00:07:28,160 +mouse, not click, click means that I press and + +141 +00:07:28,160 --> 00:07:32,280 +leave, right? This is click, press means that I + +142 +00:07:32,280 --> 00:07:36,320 +press and stay pressed. As soon as I press, I want + +143 +00:07:36,320 --> 00:07:41,320 +to keep this starting point. This is the start + +144 +00:07:41,320 --> 00:07:47,430 +point. Okay? And I want him to record the start + +145 +00:07:47,430 --> 00:07:48,170 +time. + +146 +00:07:51,510 --> 00:07:54,470 +Okay? Why the start time? Do you see? When I draw, + +147 +00:07:55,610 --> 00:07:57,770 +I want him to record every 10 seconds + +148 +00:07:57,770 --> 00:08:02,850 +automatically. Okay? I haven't drawn yet. When I + +149 +00:08:02,850 --> 00:08:05,150 +draw like this, I arrived here after 10 seconds. + +150 +00:08:06,090 --> 00:08:08,410 +After exactly 10 seconds, he wants to take this + +151 +00:08:08,410 --> 00:08:12,600 +point. Okay? Do you see this point? And it stores it + +152 +00:08:12,600 --> 00:08:15,820 +as what? As an end point. + +153 +00:08:17,280 --> 00:08:20,720 +This is the starting point, and this is the ending + +154 +00:08:20,720 --> 00:08:26,140 +point. Okay? Now, these are the information I need + +155 +00:08:26,140 --> 00:08:30,440 +to draw the first line. The point from here to + +156 +00:08:30,440 --> 00:08:33,700 +here. This ending point is some ten seconds ago. + +157 +00:08:34,080 --> 00:08:38,600 +Okay? So these two information, if I draw a line + +158 +00:08:38,600 --> 00:08:42,450 +between them, this line will appear. Okay, after he + +159 +00:08:42,450 --> 00:08:45,490 +draws the first line, he will start drawing the + +160 +00:08:45,490 --> 00:08:49,550 +second line. What will he do? This will be the + +161 +00:08:49,550 --> 00:08:56,230 +start. Okay? وقت البداية هو الوقت هذا اللي هنا يعني + +162 +00:08:56,230 --> 00:08:59,970 +هذا برضه الوقت هذا ماله اختلف هو وقت البداية حسبته + +163 +00:08:59,970 --> 00:09:03,730 +هنا هل جيت من هنا بده نحسب من وين؟ من هنا وبرجع + +164 +00:09:03,730 --> 00:09:07,190 +بحسب تاني بعد عشر ثانية تانية بتصير هذه نقطة + +165 +00:09:07,190 --> 00:09:13,950 +النهاية ال end point و برسم بينهم. This is how you + +166 +00:09:13,950 --> 00:09:18,850 +draw on parts. Before we save the command, let's + +167 +00:09:18,850 --> 00:09:23,810 +see how to draw on parts. Let's see the + +168 +00:09:23,810 --> 00:09:25,830 +application. The application consists of three + +169 +00:09:25,830 --> 00:09:29,670 +classes. The main class is the free drawing, which + +170 +00:09:29,670 --> 00:09:34,390 +is the main frame of the application. The main + +171 +00:09:34,390 --> 00:09:39,110 +frame is divided into two parts. This part in the + +172 +00:09:39,110 --> 00:09:41,250 +middle is called the drawing panel, and the bottom + +173 +00:09:41,250 --> 00:09:44,530 +part is called the control panel, which has the + +174 +00:09:44,530 --> 00:09:47,990 +undo and redo buttons. Let's see the drawing panel, + +175 +00:09:48,090 --> 00:09:51,490 +we will not go too deep into the GUI, but I will + +176 +00:09:51,490 --> 00:09:54,790 +show you the basic idea that this drawing panel I + +177 +00:09:54,790 --> 00:09:58,570 +made something called add mouse listener. Like when + +178 +00:09:58,570 --> 00:10:02,690 +you do listener on the button, not add, action, + +179 +00:10:03,350 --> 00:10:07,750 +set on action, this is almost the same idea, which + +180 +00:10:07,750 --> 00:10:11,050 +is just called add mouse listener, and inside it + +181 +00:10:11,050 --> 00:10:12,910 +does anonymous class or in lambda, whatever you + +182 +00:10:12,910 --> 00:10:16,430 +want. Okay? What does this do, guys? It only + +183 +00:10:16,430 --> 00:10:20,430 +listens to the mouse. At the moment you click on + +184 +00:10:20,430 --> 00:10:23,970 +it, it executes the value called mouse clicks. If + +185 +00:10:23,970 --> 00:10:26,610 +you write code here, it will execute it if you + +186 +00:10:26,610 --> 00:10:31,490 +click. Okay? And there is mouse entered, and mouse + +187 +00:10:31,490 --> 00:10:34,170 +exited, because I left the mouse. I have a mouse + +188 +00:10:34,170 --> 00:10:37,410 +pressed. Okay? Which means that I have a pressure + +189 +00:10:37,410 --> 00:10:40,390 +when I press the mouse. This is what I want, + +190 +00:10:40,930 --> 00:10:43,870 +because I want to get the point of the beginning + +191 +00:10:43,870 --> 00:10:48,070 +and the beginning time. Okay? And I also have + +192 +00:10:48,070 --> 00:10:50,450 +another listener. His name is mouse motion + +193 +00:10:50,450 --> 00:10:53,700 +listener. From his name, Hada monitors the movement + +194 +00:10:53,700 --> 00:10:56,660 +of the mouse. Okay? And Hada brings me a di + +223 +00:12:44,100 --> 00:12:47,580 +start to draw. Okay? When I draw, it will keep + +224 +00:12:47,580 --> 00:12:51,720 +track of the time. If it passed 100 milliseconds + +225 +00:12:51,720 --> 00:12:56,760 +or 10 seconds, it will start to draw. ok? it means + +226 +00:12:56,760 --> 00:13:01,260 +that it will only draw after 10 seconds so this is + +227 +00:13:01,260 --> 00:13:03,740 +important to know in the method mouse of the drug + +228 +00:13:03,740 --> 00:13:07,600 +ok? I want to tell you guys that when you make a + +229 +00:13:07,600 --> 00:13:09,800 +drug you have to measure the time look at the time + +230 +00:13:09,800 --> 00:13:12,800 +what I did here it's changed it's name is current + +231 +00:13:12,800 --> 00:13:18,800 +time it's equal to system dot current time + +232 +00:13:18,800 --> 00:13:22,900 +millisecond and when you make a drug you have to + +233 +00:13:22,900 --> 00:13:29,760 +propose it the current time minus the start time if + +234 +00:13:29,760 --> 00:13:32,000 +the difference between them reaches more than 100, + +235 +00:13:32,880 --> 00:13:37,820 +100 millisecond means 10 seconds, okay? get the + +236 +00:13:37,820 --> 00:13:42,400 +current point and draw from the start to the + +237 +00:13:42,400 --> 00:13:44,420 +current point what is the current point? where + +238 +00:13:44,420 --> 00:13:47,840 +will it be present in the mouse event? that is, + +239 +00:13:47,880 --> 00:13:50,940 +what is inside the F will not be executed unless + +240 +00:13:50,940 --> 00:13:56,190 +the time becomes 100 milliseconds Okay? Now, what + +241 +00:13:56,190 --> 00:13:57,850 +are we going to do? We are going to draw straight + +242 +00:13:57,850 --> 00:14:00,210 +away. I want to tell him drawing panel. We draw on + +243 +00:14:00,210 --> 00:14:05,070 +the drawing panel. dot this dot get graphics. + +244 +00:14:05,190 --> 00:14:09,610 +Through this graphics, we draw. We tell him that + +245 +00:14:09,610 --> 00:14:12,210 +there is a prepared method called draw line. + +246 +00:14:14,550 --> 00:14:18,710 +This draw line takes 4 parameters, which are the + +247 +00:14:18,710 --> 00:14:21,570 +two points, the starting point and the ending + +248 +00:14:21,570 --> 00:14:24,290 +point, from where to where they want to draw, from + +249 +00:14:24,290 --> 00:14:32,110 +start x and start y to the current point that has + +250 +00:14:32,110 --> 00:14:41,170 +reached now, which is E dot get x and E dot get y + +251 +00:14:47,420 --> 00:14:49,080 +Okay? We're almost done. We have one more step + +252 +00:14:49,080 --> 00:14:54,760 +left. What is it? That now he drew the line. Now + +253 +00:14:54,760 --> 00:14:57,440 +he has to change the starting point. The ending + +254 +00:14:57,440 --> 00:14:59,940 +point that reached him now is the starting point. + +255 +00:15:00,160 --> 00:15:03,040 +And the time that reached him now is the ending + +256 +00:15:03,040 --> 00:15:06,040 +point. The starting point as well. So we tell him + +257 +00:15:06,040 --> 00:15:09,880 +this gate that start x will change to e dot get + +258 +00:15:09,880 --> 00:15:14,580 +x. So that he starts calculating a new line. Am I + +259 +00:15:14,580 --> 00:15:23,610 +right guys? And end and start y will be E dot get y + +260 +00:15:23,610 --> 00:15:35,070 +and start time is the current time + +261 +00:15:35,070 --> 00:15:39,430 +ok + +262 +00:15:39,430 --> 00:15:42,030 +and as long as I am doing drugs, I go back to what + +263 +00:15:42,030 --> 00:15:46,740 +I did read current time and compare current time + +264 +00:15:46,740 --> 00:15:51,020 +with who if it reaches 100 seconds, I draw a new + +265 +00:15:51,020 --> 00:15:54,680 +line and at the end point I save it again as a + +266 +00:15:54,680 --> 00:15:58,420 +starting point and starting time because until now + +267 +00:15:58,420 --> 00:16:01,160 +we have not talked about command pattern at all + +268 +00:16:01,160 --> 00:16:03,560 +because it is supposed that after this moment if I + +269 +00:16:03,560 --> 00:16:09,110 +run Okay? Did you see what's supposed to happen? He + +270 +00:16:09,110 --> 00:16:13,970 +draws the line, but the undo and redo aren't + +271 +00:16:13,970 --> 00:16:17,870 +working yet. We're going to start applying the + +272 +00:16:17,870 --> 00:16:20,390 +command pattern now. The first thing in applying + +273 +00:16:20,390 --> 00:16:22,170 +the command pattern is that it creates an + +274 +00:16:22,170 --> 00:16:25,610 +interface that represents all kinds of commands + +275 +00:16:25,610 --> 00:16:27,790 +that I have, and from it it creates a concrete + +276 +00:16:27,790 --> 00:16:28,830 +command. + +277 +00:16:30,810 --> 00:16:35,410 +Because I want to make a class or interface called + +278 +00:16:35,410 --> 00:16:41,230 +draw command Okay, + +279 +00:16:41,690 --> 00:16:45,830 +I want to put this interface in the previous + +280 +00:16:45,830 --> 00:16:50,210 +lecture we did method execute But this time I want + +281 +00:16:50,210 --> 00:16:54,790 +to do two methods execute and unexecute So every + +282 +00:16:54,790 --> 00:16:56,970 +command I want to do and I want to specify how + +283 +00:16:56,970 --> 00:17:01,500 +this command is executed and how it is cancelled I + +284 +00:17:01,500 --> 00:17:03,800 +drew a line and I need to decide how to erase it. + +285 +00:17:04,520 --> 00:17:06,580 +I wrote a letter and I need to decide how to erase + +286 +00:17:06,580 --> 00:17:10,640 +it. Ok? Ok, this is the draw command and this is + +287 +00:17:10,640 --> 00:17:14,600 +the interface. Let's start making commands. Like I + +288 +00:17:14,600 --> 00:17:17,860 +used to buy stocks, sell stocks, open a company. + +289 +00:17:19,480 --> 00:17:22,700 +Here in my program I have command 1 which is line + +290 +00:17:22,700 --> 00:17:26,520 +draw command. right or not or any line command + +291 +00:17:26,520 --> 00:17:29,480 +let's call it this doesn't draw what? doesn't draw + +292 +00:17:29,480 --> 00:17:32,120 +anything this we want to make it a kind of draw + +293 +00:17:32,120 --> 00:17:40,940 +command so we say implement draw command + +294 +00:17:40,940 --> 00:17:44,440 +ok + +295 +00:17:44,440 --> 00:17:48,420 +guys now the second point that we agreed on is + +296 +00:17:48,420 --> 00:17:50,940 +that any command we have to put inside all the + +297 +00:17:50,940 --> 00:17:55,470 +necessary information to execute the process for + +298 +00:17:55,470 --> 00:17:58,750 +example, let's go back and remember that in the + +299 +00:17:58,750 --> 00:18:02,490 +buy shares command we sent him all the necessary + +300 +00:18:02,490 --> 00:18:04,310 +attributes to buy his shares and we also sent him + +301 +00:18:04,310 --> 00:18:07,870 +the stock market mean which is necessary to + +302 +00:18:07,870 --> 00:18:11,410 +execute + +303 +00:18:11,410 --> 00:18:14,670 +the purchase process the same thing, I go back to + +304 +00:18:14,670 --> 00:18:18,030 +the light command I want to do in it I send him + +305 +00:18:18,030 --> 00:18:19,390 +all the necessary information what are the + +306 +00:18:19,390 --> 00:18:24,020 +necessary information? there is in the start x and + +307 +00:18:24,020 --> 00:18:29,180 +start y which is the starting point and end x and + +308 +00:18:29,180 --> 00:18:31,980 +end y these are the necessary information for + +309 +00:18:31,980 --> 00:18:36,760 +drawing and we also need to make a constructor + +310 +00:18:36,760 --> 00:18:42,440 +line command and send him an object of the type + +311 +00:18:42,440 --> 00:18:44,980 +graphics did you notice that he will not be able + +312 +00:18:44,980 --> 00:18:47,860 +to draw anything except through who guys? through + +313 +00:18:47,860 --> 00:18:51,520 +graphics just like the buy shares could not do + +314 +00:18:51,520 --> 00:18:57,540 +anything except through stock market and here also + +315 +00:18:57,540 --> 00:19:04,740 +we can say graphics graphics + +316 +00:19:04,740 --> 00:19:08,440 +g for example and here we can say this dot g is + +317 +00:19:08,440 --> 00:19:12,860 +equal to g let's + +318 +00:19:12,860 --> 00:19:15,660 +go to execute and unexecute when I say execute + +319 +00:19:15,660 --> 00:19:18,480 +execute the process how will it execute? it will + +320 +00:19:18,480 --> 00:19:22,640 +go to g and it will say what? draw line + +321 +00:19:24,360 --> 00:19:31,420 +and give him start x start + +322 +00:19:31,420 --> 00:19:38,960 +y and end x and end y ok, there is unexecute we + +323 +00:19:38,960 --> 00:19:41,800 +cancel the drawing of the line so the idea is + +324 +00:19:41,800 --> 00:19:44,480 +simple when I draw the line I want to draw it in + +325 +00:19:44,480 --> 00:19:47,620 +black color for example when I cancel the line I + +326 +00:19:47,620 --> 00:19:50,020 +want to draw with the same line but in the back + +327 +00:19:50,020 --> 00:19:52,620 +color Okay, the background is white for example, + +328 +00:19:52,880 --> 00:19:55,660 +I'll let him draw in white So actually the execute + +329 +00:19:55,660 --> 00:19:59,580 +will go to the graphics and tell him set color to + +330 +00:19:59,580 --> 00:20:07,460 +draw in black Okay, the unexecute is the same + +331 +00:20:07,460 --> 00:20:14,500 +process But + +332 +00:20:14,500 --> 00:20:16,660 +he wants to do it in the background color of the + +333 +00:20:16,660 --> 00:20:23,410 +screen, which is white for example طبعا هدع مثال + +334 +00:20:23,410 --> 00:20:28,710 +رسم ال line أي خطوة تانية انت حابب تتراجع عنها بدك + +335 +00:20:28,710 --> 00:20:33,140 +تحدد كيف تنعمل الخطوة و كيف انا ايش ألغيها If you + +336 +00:20:33,140 --> 00:20:34,940 +wrote a character, you have to decide how to + +337 +00:20:34,940 --> 00:20:37,580 +remove this character. If you changed the + +338 +00:20:37,580 --> 00:20:40,040 +alignment of a line, you have to store the + +339 +00:20:40,040 --> 00:20:42,200 +previous line color and the next line color and + +340 +00:20:42,200 --> 00:20:43,980 +switch between them when you do unexecute and + +341 +00:20:43,980 --> 00:20:48,040 +return the previous numbers. Okay? So what does + +342 +00:20:48,040 --> 00:20:50,400 +this need? It needs a little programming thinking. + +343 +00:20:50,580 --> 00:20:53,660 +Every process determines how to do it and how to + +344 +00:20:53,660 --> 00:20:59,400 +implement it. Okay? Okay, then we have a class + +345 +00:20:59,400 --> 00:21:01,700 +called line command. It has everything necessary + +346 +00:21:02,600 --> 00:21:05,880 +to execute the operation, okay? So that now + +347 +00:21:05,880 --> 00:21:08,980 +whoever wants to use line command will not have to + +348 +00:21:08,980 --> 00:21:10,840 +go into any details, he will just go and claim + +349 +00:21:10,840 --> 00:21:14,640 +execute and unexecute. Because if we go back to + +350 +00:21:14,640 --> 00:21:18,280 +the drawing panel, because this is the line that + +351 +00:21:18,280 --> 00:21:20,940 +was drawn to claim the argument in it. Currently, + +352 +00:21:21,100 --> 00:21:24,420 +instead of this line, I want to create a line + +353 +00:21:24,420 --> 00:21:27,700 +command. Okay, now we're going to make a command + +354 +00:21:29,750 --> 00:21:36,610 +draw a line this C is equal to new line command + +355 +00:21:36,610 --> 00:21:40,050 +because the constructor needs graphics which is + +356 +00:21:40,050 --> 00:21:47,990 +this which we need to draw okay, + +357 +00:21:48,130 --> 00:21:50,530 +we sent him the graphics because also we need to + +358 +00:21:50,530 --> 00:21:53,990 +send him the other information which is C dot + +359 +00:21:53,990 --> 00:22:07,480 +start x which is start x end x or start y c + +360 +00:22:07,480 --> 00:22:14,700 +dot end x e + +361 +00:22:14,700 --> 00:22:27,950 +dot get x c dot end y E dot get get one These are + +362 +00:22:27,950 --> 00:22:33,290 +the necessary information for drawing Now I want + +363 +00:22:33,290 --> 00:22:38,290 +to execute the process, I say what? C dot execute + +364 +00:22:38,290 --> 00:22:42,570 +That is, instead of this line We made who? Line, + +365 +00:22:42,710 --> 00:22:45,110 +we gave information and made execute It will do + +366 +00:22:45,110 --> 00:22:48,070 +the same process, but the execute executes this + +367 +00:22:48,070 --> 00:22:51,230 +line So let's run the application + +368 +00:22:55,280 --> 00:22:59,300 +الان حاليا إيش بيعمل؟ هاي و قاعد برسم بس لسه برضه + +369 +00:22:59,300 --> 00:23:05,140 +ال undo و ال redo ماعملناهوش يعني + +370 +00:23:05,140 --> 00:23:08,840 +عشان نعمل ال undo و ال redo ضال علينا خطوة أنه + +371 +00:23:08,840 --> 00:23:13,100 +الأوامر هذه اللي إحنا بنعملها بدنا نخزنها تمام؟ + +372 +00:23:13,100 --> 00:23:15,220 +فروحنا بدنا نعمل class جديدة + +373 +00:23:17,960 --> 00:23:22,600 +اسمه drawing manager هذا هو اللي هيحتفظ في ال + +374 +00:23:22,600 --> 00:23:27,260 +commands و هينفذ عملية ال undo و ال redo This is + +375 +00:23:27,260 --> 00:23:28,560 +similar to what we did in the last lecture. This + +376 +00:23:28,560 --> 00:23:31,320 +is similar to the class called the Stock Agent, + +377 +00:23:31,820 --> 00:23:37,800 +which stores orders and executes them. But his job + +378 +00:23:37,800 --> 00:23:40,080 +is different. It is not execute all. The example + +379 +00:23:40,080 --> 00:23:42,120 +in the last lecture was to store all the orders + +380 +00:23:42,120 --> 00:23:45,520 +and execute them later. This will store them all + +381 +00:23:45,520 --> 00:23:51,730 +and will repeat or repeat order after order. فروحنا + +382 +00:23:51,730 --> 00:23:54,510 +على drawing manager ونفس الفكرة في البداية أنه + +383 +00:23:54,510 --> 00:24:03,970 +بعمل فيه array list من نوع draw command هاي + +384 +00:24:03,970 --> 00:24:07,650 +commands يساوي new array list + +385 +00:24:21,920 --> 00:24:25,360 +Okay, now in the drawing manager, we want to + +386 +00:24:25,360 --> 00:24:31,920 +create a method public void add draw command to + +387 +00:24:31,920 --> 00:24:42,380 +add to the list Okay, here is draw command C Okay + +388 +00:24:42,380 --> 00:24:46,980 +guys, then here I will create two methods which is + +389 +00:24:46,980 --> 00:24:47,280 +undo + +390 +00:24:50,840 --> 00:24:59,660 +public void redo Now + +391 +00:24:59,660 --> 00:25:04,490 +pay attention to how we execute undo and redo Now + +392 +00:25:04,490 --> 00:25:07,170 +guys, we have agreed that what happens next is + +393 +00:25:07,170 --> 00:25:10,170 +that he will have a list and commands will be + +394 +00:25:10,170 --> 00:25:15,730 +stored in it. Each command stored here represents + +395 +00:25:15,730 --> 00:25:19,470 +a line, a part of this drawing, with all its + +396 +00:25:19,470 --> 00:25:22,490 +information, the starting point, the ending point + +397 +00:25:22,490 --> 00:25:25,730 +and the line, right? Okay, so each one represents + +398 +00:25:25,730 --> 00:25:31,880 +a part because I really I'm not going to add these + +399 +00:25:31,880 --> 00:25:32,940 +things, I'm going to keep them in my inventory. + +400 +00:25:33,020 --> 00:25:35,800 +This is the whole history. So I want to have an + +401 +00:25:35,800 --> 00:25:38,620 +indicator called index. In the first place, the + +402 +00:25:38,620 --> 00:25:42,920 +index is where? One minus its value. Before. The + +403 +00:25:42,920 --> 00:25:45,240 +first line I add, of course there are no lines + +404 +00:25:45,240 --> 00:25:49,020 +yet, there are no commands here, okay? The first + +405 +00:25:49,020 --> 00:25:52,660 +line I add, I put the index where? The index is + +406 +00:25:52,660 --> 00:25:55,960 +here. It means that every new line is added to its + +407 +00:25:55,960 --> 00:26:00,460 +index. We have to go up a step until we get to + +408 +00:26:00,460 --> 00:26:08,440 +where? To here. Who is here? The index. Now we + +409 +00:26:08,440 --> 00:26:12,160 +have to start undoing. Undo what? The last line we + +410 +00:26:12,160 --> 00:26:16,420 +did, we have to cancel it. Right or not? So we + +411 +00:26:16,420 --> 00:26:19,080 +have to tell him to see where the index is. And + +412 +00:26:19,080 --> 00:26:22,800 +bring the command that he has. And execute what? + +413 +00:26:24,000 --> 00:26:29,520 +UN He doesn't know what it means. He will give him + +414 +00:26:29,520 --> 00:26:32,180 +the commands that he has and store them in + +415 +00:26:32,180 --> + +445 +00:28:06,960 --> 00:28:10,600 +element and make it unexecuted. So I want to tell + +446 +00:28:10,600 --> 00:28:14,940 +him to go to the command and tell him get this + +447 +00:28:14,940 --> 00:28:18,420 +element that is present at whom? At the index and + +448 +00:28:18,420 --> 00:28:23,970 +do what? unexecute and don't forget to start from + +449 +00:28:23,970 --> 00:28:33,510 +index 1 because the redo process if the index is + +450 +00:28:33,510 --> 00:28:43,310 +smaller than commands.size-1 it's still in place, + +451 +00:28:43,790 --> 00:28:47,110 +it didn't finish the sentence, okay? increase the + +452 +00:28:47,110 --> 00:28:54,900 +index by 1 right? he was here we need to go back to + +453 +00:28:54,900 --> 00:28:56,600 +the process we need to increase the index by one + +454 +00:28:56,600 --> 00:29:01,540 +and then we say commands.get the command that + +455 +00:29:01,540 --> 00:29:07,520 +is present in the index and say execute we are + +456 +00:29:07,520 --> 00:29:13,650 +done خلصنا مين؟ ال class اسمها ال drawing manager + +457 +00:29:13,650 --> 00:29:17,450 +اللي هو المسئول عن ال undo و ال redo لإن هذا ال + +458 +00:29:17,450 --> 00:29:20,110 +drawing manager أنشأنا ال class بس ما استخدمناها + +459 +00:29:20,110 --> 00:29:25,230 +فبنروح ل ال frame الأساسي في التطبيق و فوق فيها + +460 +00:29:25,230 --> 00:29:31,090 +نعمل object من نوع drawing manager هى سميناه إيش + +461 +00:29:31,090 --> 00:29:34,110 +manager و هنا manager + +462 +00:29:39,860 --> 00:29:46,280 +new drawing manager now this manager doesn't + +463 +00:29:46,280 --> 00:29:50,100 +forget that while I'm drawing I have to add + +464 +00:29:50,100 --> 00:29:53,920 +commands to it which means that we also need it to + +465 +00:29:53,920 --> 00:29:57,580 +reach the drawing panel okay so this is the same + +466 +00:29:57,580 --> 00:30:01,900 +manager we have to send him to the next class + +467 +00:30:01,900 --> 00:30:04,650 +which is the drawing panel okay, because this is + +468 +00:30:04,650 --> 00:30:07,110 +what has the listener on the mouse, and what it + +469 +00:30:07,110 --> 00:30:09,450 +has is the drawing process. So in its constructor, + +470 +00:30:09,770 --> 00:30:12,090 +we passed to whom? The manager. There is a + +471 +00:30:12,090 --> 00:30:14,010 +mistake, of course, why? Because the drawing panel + +472 +00:30:14,010 --> 00:30:19,010 +is still okay, its constructor is empty. So did + +473 +00:30:19,010 --> 00:30:19,910 +you find out what the idea is? We created the + +474 +00:30:19,910 --> 00:30:22,670 +drawing manager in the main frame, and we passed + +475 +00:30:22,670 --> 00:30:25,690 +it to whom? To the drawing panel. So here we want + +476 +00:30:25,690 --> 00:30:30,030 +to make an object of the type drawing manager, its + +477 +00:30:30,030 --> 00:30:38,440 +name is manager. وهنا بقوله ال + +478 +00:30:38,440 --> 00:30:42,520 +constructor صار ياخد argument من نوع manager و + +479 +00:30:42,520 --> 00:30:49,320 +بقوله this dot manager يساوي manager لأن + +480 +00:30:49,320 --> 00:30:52,500 +ليش بدي أعمل هيك؟ على أساس الآن وين الخطوة اللي + +481 +00:30:52,500 --> 00:30:57,480 +أنشأت فيها الأمر؟ هي ال line command صح؟ أنشأت ال + +482 +00:30:57,480 --> 00:31:02,720 +line و رسمتهأنا بدي أرسمه و في نفس اللحظة بدي أروح + +483 +00:31:02,720 --> 00:31:09,360 +لل manager و بقولله add, draw, command و بضيف مين + +484 +00:31:09,360 --> 00:31:16,220 +ال command لأن أنا طول ما هو برسم أي خط أي قطعة + +485 +00:31:16,220 --> 00:31:20,340 +بتم رسمها برسمها عمل execute و راح أضافها أيضا على + +486 +00:31:20,340 --> 00:31:23,320 +مين على ال manager تمام؟ + +487 +00:31:25,410 --> 00:31:27,470 +because it remains a step that when I press the + +488 +00:31:27,470 --> 00:31:31,030 +undo and redo button, what does it do? Okay? So in + +489 +00:31:31,030 --> 00:31:34,210 +the main page, I have action for the two buttons, + +490 +00:31:34,570 --> 00:31:39,470 +which is to press undo or redo. So when I press + +491 +00:31:39,470 --> 00:31:42,550 +undo, only what does it do? I go to the manager + +492 +00:31:42,550 --> 00:31:49,310 +and do what? Undo. And when I do redo, I go to the + +493 +00:31:49,310 --> 00:31:53,510 +manager and do redo. + +494 +00:31:55,180 --> 00:31:58,140 +And this is how we become what? We're done, let's + +495 +00:31:58,140 --> 00:32:03,360 +run the application now. + +496 +00:32:05,180 --> 00:32:08,780 +Now, any piece that I draw, what does it do now? + +497 +00:32:08,800 --> 00:32:11,700 +It draws it and stores it where? In the array + +498 +00:32:11,700 --> 00:32:16,240 +list. Because undo? Yes, it still has a problem. + +499 +00:32:20,400 --> 00:32:22,160 +Because where is the problem? Is it the manager? + +500 +00:32:25,670 --> 00:32:45,670 +أه أقولك لحظة Hydrogen manager طيب + +501 +00:32:45,670 --> 00:32:46,170 +المفروض + +502 +00:33:03,320 --> 00:33:06,820 +طيب تعالوا نتبع الخطأ اللي صار لإن لو قلنا أنا + +503 +00:33:06,820 --> 00:33:09,940 +عندي undo بدي أطبع رسالة، المفروض أنه .. + +504 +00:33:27,160 --> 00:33:32,840 +لأن هاي ال undo بنفذها طيب نرجع نتبع أيضا اللي هو + +505 +00:33:32,840 --> 00:33:46,880 +ال undo هات نحطها جوا هنا نتأكد إيش آه + +506 +00:33:46,880 --> 00:33:52,860 +يبقى مادخلش جوا إيش جوا ال F الساتن لأن إذا ال + +507 +00:33:52,860 --> 00:33:58,030 +index طيب ليش آه هاي الغلط In fact, every time I + +508 +00:33:58,030 --> 00:34:01,870 +add a command, I add who? The index. The index + +509 +00:34:01,870 --> 00:34:04,930 +should always point to whom? To the last command + +510 +00:34:04,930 --> 00:34:10,290 +available. Okay? This is the existing error. Now, + +511 +00:34:10,610 --> 00:34:13,950 +the word print does not matter anymore. Let's run + +512 +00:34:13,950 --> 00:34:14,350 +it. + +513 +00:34:20,920 --> 00:34:31,720 +undo then redo then draw the lines ok + +514 +00:34:31,720 --> 00:34:38,860 +guys? Let's drop the + +515 +00:34:38,860 --> 00:34:41,520 +UML class diagram of the command on the parts of + +516 +00:34:41,520 --> 00:34:44,620 +the program that we created actually the command + +517 +00:34:44,620 --> 00:34:46,800 +this interface or the abstract class represents + +518 +00:34:46,800 --> 00:34:50,560 +the draw command. The concrete command represents + +519 +00:34:50,560 --> 00:34:53,400 +the line command. The state that exists in the + +520 +00:34:53,400 --> 00:34:55,580 +concrete command represents all the necessary data + +521 +00:34:55,580 --> 00:34:59,600 +for the command, which is the starting point, the + +522 +00:34:59,600 --> 00:35:03,380 +end point, the graphics. Okay? Here we did execute + +523 +00:35:03,380 --> 00:35:06,620 +and unexecute. The receiver, who represents it? + +524 +00:35:06,680 --> 00:35:08,840 +Which is the actual way of execution. Who executes + +525 +00:35:08,840 --> 00:35:14,000 +it? Who is it? The graphics are executed. In my + +526 +00:35:14,000 --> 00:35:16,160 +example, I went to the graphics and told it to + +527 +00:35:16,160 --> 00:35:20,240 +draw a line, which is this receiver. Because the + +528 +00:35:20,240 --> 00:35:24,420 +invoker, who represents him? Who says what in our + +529 +00:35:24,420 --> 00:35:28,720 +example? The drawing manager, who actually takes + +530 +00:35:28,720 --> 00:35:32,820 +the commands and stores them in his list, and does + +531 +00:35:32,820 --> 00:35:35,600 +undo, redo, execute and unexecute without knowing + +532 +00:35:35,600 --> 00:35:38,320 +anything about the details of the execution. Notice + +533 +00:35:38,320 --> 00:35:39,880 +that the invoker does not know about the details + +534 +00:35:39,880 --> 00:35:45,100 +of the receiver and how it is executed. Okay guys? + +535 +00:35:48,800 --> 00:35:51,500 +Now the last point that I want to explain is the + +536 +00:35:51,500 --> 00:35:53,940 +process of undo and redo. Because here it tells me + +537 +00:35:53,940 --> 00:35:56,860 +in the slide that the process of undo and redo is + +538 +00:35:56,860 --> 00:36:00,980 +usually executed in programs in two ways, and + +539 +00:36:00,980 --> 00:36:02,840 +usually they use the command pattern that we saw + +540 +00:36:02,840 --> 00:36:06,680 +to execute it but we have a problem with it which + +541 +00:36:06,680 --> 00:36:09,920 +is how to avoid executing the command. There are + +542 +00:36:09,920 --> 00:36:12,600 +two ways, the way that we followed which is the + +543 +00:36:12,600 --> 00:36:16,660 +second point which is that you determine which + +544 +00:36:16,660 --> 00:36:18,700 +algorithm is necessary to execute the command, and + +545 +00:36:18,700 --> 00:36:20,440 +which is the inverse algorithm which is the + +546 +00:36:20,440 --> 00:36:24,520 +inverse algorithm, which is its opposite, as I drew + +547 +00:36:24,520 --> 00:36:26,880 +a line and drew another line on it but in white + +548 +00:36:28,300 --> 00:36:30,180 +because this thing about how to reverse the + +549 +00:36:30,180 --> 00:36:33,220 +algorithm doesn't always work out, it's not always + +550 +00:36:33,220 --> 00:36:38,220 +easy. The other option is, for example, to execute + +551 +00:36:38,220 --> 00:36:42,240 +undo and redo, we go and save the entire state of + +552 +00:36:42,240 --> 00:36:47,900 +the object. So now I want to make a new command, + +553 +00:36:48,380 --> 00:36:50,900 +before I make a new command, it takes the state of + +554 +00:36:50,900 --> 00:36:53,280 +the object and saves it as a whole. For example, a + +555 +00:36:53,280 --> 00:36:56,860 +picture, I want to edit it, before I edit the + +556 +00:36:56,860 --> 00:37:00,000 +picture, I save it as a whole, then I edit it, + +557 +00:37:00,500 --> 00:37:03,500 +after each edit, I save a whole copy of the + +558 +00:37:03,500 --> 00:37:06,540 +picture, so that when I tell it undo, it returns + +559 +00:37:06,540 --> 00:37:10,200 +the previous copy. This is easier programmatically + +560 +00:37:10,200 --> 00:37:12,800 +because you don't have to think about how to do + +561 +00:37:12,800 --> 00:37:16,500 +the inverse algorithm, but it takes a lot of + +562 +00:37:16,500 --> 00:37:19,880 +memory. Okay? Our method is more difficult + +563 +00:37:19,880 --> 00:37:21,340 +programmatically because you have to think about + +564 +00:37:21,340 --> 00:37:24,040 +how to do the inverse algorithm, but it saves a + +565 +00:37:24,040 --> 00:37:28,560 +lot of memory. In any case, you can do it with the + +566 +00:37:28,560 --> 00:37:31,880 +command pattern. Even if it was to save the state + +567 +00:37:31,880 --> 00:37:36,140 +in execute, you execute the process and take the + +568 +00:37:36,140 --> 00:37:39,260 +entire object and save it in memory, or in a + +569 +00:37:39,260 --> 00:37:43,820 +database or on a local storage. In undo, you load + +570 +00:37:43,820 --> 00:37:46,680 +the file to the object and you reload it again. + +571 +00:37:47,940 --> 00:37:52,300 +Okay? So in both ways, we implement or use the + +572 +00:37:52,300 --> 00:37:54,520 +command pattern, that makes it easier for you to + +573 +00:37:54,520 --> 00:37:57,140 +actually. It takes a lot of time and effort to do it + +574 +00:37:57,140 --> 00:37:59,640 +without knowing the details of the order itself. + +575 +00:38:00,700 --> 00:38:04,400 +For example, if we draw a line, we can tell the + +576 +00:38:04,400 --> 00:38:08,660 +artist to add text, lines, change colors, and each + +577 +00:38:08,660 --> 00:38:12,060 +process must determine how it was done and how to + +578 +00:38:12,060 --> 00:38:14,560 +cancel its execution. In the end, the drawing + +579 +00:38:14,560 --> 00:38:17,080 +manager takes all the commands, regardless of + +580 +00:38:17,080 --> 00:38:21,220 +their types, and executes and unexecutes them + +581 +00:38:21,220 --> 00:38:23,480 +without knowing the details. + +582 +00:38:26,230 --> 00:38:29,110 +The main advantage of the command design pattern + +583 +00:38:29,110 --> 00:38:35,510 +is that it decouples the object that invokes the + +584 +00:38:35,510 --> 00:38:38,090 +operation from the one that knows how to perform + +585 +00:38:38,090 --> 00:38:41,880 +it. I mean, I separate the object that dictates the + +586 +00:38:41,880 --> 00:38:45,360 +operation, which is the command itself that + +587 +00:38:45,360 --> 00:38:48,420 +executes and unexecutes from the object that + +588 +00:38:48,420 --> 00:38:51,740 +actually executes, which is the stock market, + +589 +00:38:51,840 --> 00:38:53,960 +which is the graphics that draws and knows the + +590 +00:38:53,960 --> 00:38:57,980 +details of execution. The meaning of this sentence + +591 +00:38:57,980 --> 00:39:01,680 +is that the invoker of the drawing manager + +592 +00:39:01,680 --> 00:39:03,740 +executes the commands and returns them, and + +593 +00:39:03,740 --> 00:39:07,140 +executes them again by executing and executing + +594 +00:39:07,140 --> 00:39:09,180 +without getting involved in any details of + +595 +00:39:09,180 --> 00:39:12,300 +execution. So the object that invokes the + +596 +00:39:12,300 --> 00:39:14,800 +operation, which is the drawing manager, or the + +597 +00:39:14,800 --> 00:39:16,980 +stock agent, does not know anything about the + +598 +00:39:16,980 --> 00:39:19,220 +object that actually executes, which is the stock + +599 +00:39:19,220 --> 00:39:23,620 +market or graphics. So you add new commands and + +600 +00:39:23,620 --> 00:39:26,720 +change execution methods, but the agent itself, or + +601 +00:39:26,720 --> 00:39:29,100 +the drawing manager, his implementation does not + +602 +00:39:29,100 --> 00:39:32,720 +affect him; it does not change, okay? I say, of + +603 +00:39:32,720 --> 00:39:34,460 +course, the last sentence, that there are some + +604 +00:39:34,460 --> 00:39:37,120 +implementations for the command design pattern in + +605 +00:39:37,120 --> 00:39:44,280 +which the invoker knows about the receiver, and + +606 +00:39:44,280 --> 00:39:46,200 +this design is wrong; they are supposed to be + +607 +00:39:46,200 --> 00:39:47,560 +separated from each other and do not know anything + +608 +00:39:47,560 --> 00:39:51,520 +about each other. Okay, guys? This is for the command + +609 +00:39:51,520 --> 00:39:54,860 +pattern, we took two examples of it. One is the + +610 +00:39:54,860 --> 00:39:56,880 +first example of how to make a queue of commands + +611 +00:39:56,880 --> 00:39:59,780 +to implement them later, which is the example of + +612 +00:39:59,780 --> 00:40:01,980 +the stock market, and the second example is how to + +613 +00:40:01,980 --> 00:40:07,020 +use the command to apply the undo and redo. The + +614 +00:40:07,020 --> 00:40:09,880 +last part now, guys, of course there is a duty that + +615 +00:40:09,880 --> 00:40:13,120 +will come down to this topic. Don't worry, I will + +616 +00:40:13,120 --> 00:40:17,960 +open the new duty at the end of the exams on the + +617 +00:40:17,960 --> 00:40:21,340 +subject of the command pattern. تمام؟ الواجب + +618 +00:40:21,340 --> 00:40:22,940 +الجديد هذا بس نفرجيكوا إياه + +619 +00:40:35,010 --> 00:40:37,570 +Okay, look at this program, guys. We want to make + +620 +00:40:37,570 --> 00:40:42,650 +a program like this. It is an input square, I add + +621 +00:40:42,650 --> 00:40:47,010 +names of people, then I say add to add the name to + +622 +00:40:47,010 --> 00:40:49,870 +the list here. A simple example. So I added Ahmed, + +623 +00:40:49,950 --> 00:40:52,910 +I said add him, he put it here. Because he is + +624 +00:40:52,910 --> 00:40:54,650 +sitting, what is he doing? He wants to add names. + +625 +00:40:55,290 --> 00:40:59,170 +Ali added him. Omar + +626 +00:41:03,280 --> 00:41:05,820 +and Amal, because we have undo and redo here. Look + +627 +00:41:05,820 --> 00:41:08,600 +when we do undo, what will he do? The last noun in + +628 +00:41:08,600 --> 00:41:11,000 +the plural, which is Amal, he will remove it and + +629 +00:41:11,000 --> 00:41:14,020 +put it back where? On this shelf. He will undo + +630 +00:41:14,020 --> 00:41:16,900 +again; he will remove Omar and put him back again. + +631 +00:41:17,680 --> 00:41:20,160 +Also undo, remove Ali and put him up. Ahmed + +632 +00:41:20,160 --> 00:41:22,900 +remained. Then redo; he brings Ali and puts him + +633 +00:41:22,900 --> 00:41:24,540 +back. Omar is up. + +634 +00:41:28,500 --> 00:41:33,360 +كما أريده هيرجع عيش عمر وكتب أمل فوق. So think + +635 +00:41: \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/_S0ZM3owxXE_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/_S0ZM3owxXE_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..2e4f017b4c4aae8544426b7f20d5737cde134f44 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/_S0ZM3owxXE_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 3030, "start": 5.06, "end": 30.3, "text": "Okay guys, peace be upon you In the previous lecture, we started with the new design pattern which is the command pattern And we said that the command pattern has a specific benefit, which is if I have an application that I need to follow certain commands, I want to execute them, make them queue, store them to execute them later, we use the command pattern", "tokens": [8297, 1074, 11, 4336, 312, 3564, 291, 682, 264, 3894, 7991, 11, 321, 1409, 365, 264, 777, 1715, 5102, 597, 307, 264, 5622, 5102, 400, 321, 848, 300, 264, 5622, 5102, 575, 257, 2685, 5121, 11, 597, 307, 498, 286, 362, 364, 3861, 300, 286, 643, 281, 1524, 1629, 16901, 11, 286, 528, 281, 14483, 552, 11, 652, 552, 18639, 11, 3531, 552, 281, 14483, 552, 1780, 11, 321, 764, 264, 5622, 5102], "avg_logprob": -0.469594596608265, "compression_ratio": 1.7635467980295567, "no_speech_prob": 2.384185791015625e-06, "words": [{"start": 5.06, "end": 5.34, "word": "Okay", "probability": 0.294921875}, {"start": 5.34, "end": 5.56, "word": " guys,", "probability": 0.693359375}, {"start": 5.62, "end": 5.84, "word": " peace", "probability": 0.27294921875}, {"start": 5.84, "end": 5.96, "word": " be", "probability": 0.85595703125}, {"start": 5.96, "end": 5.96, "word": " upon", "probability": 0.90576171875}, {"start": 5.96, "end": 6.16, "word": " you", "probability": 0.9765625}, {"start": 6.16, "end": 7.86, "word": " In", "probability": 0.232421875}, {"start": 7.86, "end": 7.94, "word": " the", "probability": 0.77685546875}, {"start": 7.94, "end": 8.5, "word": " previous", "probability": 0.365234375}, {"start": 8.5, "end": 8.54, "word": " lecture,", "probability": 0.8037109375}, {"start": 8.7, "end": 9.32, "word": " we", "probability": 0.78515625}, {"start": 9.32, "end": 9.58, "word": " started", "probability": 0.73974609375}, {"start": 9.58, "end": 9.88, "word": " with", "probability": 0.576171875}, {"start": 9.88, "end": 10.68, "word": " the", "probability": 0.47998046875}, {"start": 10.68, "end": 10.68, "word": " new", "probability": 0.74951171875}, {"start": 10.68, "end": 11.28, "word": " design", "probability": 0.8544921875}, {"start": 11.28, "end": 11.7, "word": " pattern", "probability": 0.8798828125}, {"start": 11.7, "end": 11.96, "word": " which", "probability": 0.492919921875}, {"start": 11.96, "end": 12.06, "word": " is", "probability": 0.93798828125}, {"start": 12.06, "end": 12.18, "word": " the", "probability": 0.64404296875}, {"start": 12.18, "end": 12.48, "word": " command", "probability": 0.86328125}, {"start": 12.48, "end": 12.84, "word": " pattern", "probability": 0.8701171875}, {"start": 12.84, "end": 13.86, "word": " And", "probability": 0.330810546875}, {"start": 13.86, "end": 13.86, "word": " we", "probability": 0.927734375}, {"start": 13.86, "end": 14.08, "word": " said", "probability": 0.8759765625}, {"start": 14.08, "end": 14.44, "word": " that", "probability": 0.8134765625}, {"start": 14.44, "end": 14.52, "word": " the", "probability": 0.802734375}, {"start": 14.52, "end": 14.96, "word": " command", "probability": 0.9013671875}, {"start": 14.96, "end": 15.22, "word": " pattern", "probability": 0.8671875}, {"start": 15.22, "end": 15.5, "word": " has", "probability": 0.87451171875}, {"start": 15.5, "end": 15.56, "word": " a", "probability": 0.82470703125}, {"start": 15.56, "end": 15.56, "word": " specific", "probability": 0.462646484375}, {"start": 15.56, "end": 16.22, "word": " benefit,", "probability": 0.255859375}, {"start": 16.56, "end": 16.7, "word": " which", "probability": 0.71142578125}, {"start": 16.7, "end": 16.86, "word": " is", "probability": 0.87548828125}, {"start": 16.86, "end": 17.04, "word": " if", "probability": 0.60302734375}, {"start": 17.04, "end": 17.24, "word": " I", "probability": 0.9716796875}, {"start": 17.24, "end": 17.42, "word": " have", "probability": 0.93701171875}, {"start": 17.42, "end": 17.58, "word": " an", "probability": 0.89794921875}, {"start": 17.58, "end": 17.98, "word": " application", "probability": 0.86865234375}, {"start": 17.98, "end": 18.24, "word": " that", "probability": 0.472412109375}, {"start": 18.24, "end": 18.3, "word": " I", "probability": 0.71044921875}, {"start": 18.3, "end": 18.64, "word": " need", "probability": 0.90869140625}, {"start": 18.64, "end": 19.68, "word": " to", "probability": 0.337890625}, {"start": 19.68, "end": 20.24, "word": " follow", "probability": 0.222412109375}, {"start": 20.24, "end": 20.24, "word": " certain", "probability": 0.63330078125}, {"start": 20.24, "end": 23.22, "word": " commands,", "probability": 0.53515625}, {"start": 23.68, "end": 23.74, "word": " I", "probability": 0.3720703125}, {"start": 23.74, "end": 23.9, "word": " want", "probability": 0.440673828125}, {"start": 23.9, "end": 24.02, "word": " to", "probability": 0.96533203125}, {"start": 24.02, "end": 24.28, "word": " execute", "probability": 0.463623046875}, {"start": 24.28, "end": 24.92, "word": " them,", "probability": 0.63671875}, {"start": 24.92, "end": 25.18, "word": " make", "probability": 0.353515625}, {"start": 25.18, "end": 25.34, "word": " them", "probability": 0.5400390625}, {"start": 25.34, "end": 25.6, "word": " queue,", "probability": 0.8916015625}, {"start": 25.72, "end": 26.04, "word": " store", "probability": 0.513671875}, {"start": 26.04, "end": 26.42, "word": " them", "probability": 0.8779296875}, {"start": 26.42, "end": 26.74, "word": " to", "probability": 0.298828125}, {"start": 26.74, "end": 27.1, "word": " execute", "probability": 0.67138671875}, {"start": 27.1, "end": 27.22, "word": " them", "probability": 0.83251953125}, {"start": 27.22, "end": 27.7, "word": " later,", "probability": 0.85107421875}, {"start": 28.02, "end": 28.22, "word": " we", "probability": 0.59521484375}, {"start": 28.22, "end": 28.54, "word": " use", "probability": 0.73974609375}, {"start": 28.54, "end": 29.66, "word": " the", "probability": 0.88330078125}, {"start": 29.66, "end": 29.98, "word": " command", "probability": 0.90576171875}, {"start": 29.98, "end": 30.3, "word": " pattern", "probability": 0.87109375}], "temperature": 1.0}, {"id": 2, "seek": 5978, "start": 31.28, "end": 59.78, "text": "and this is necessary in some apps like for example the financial apps and the wallet that I want to do or work for example to buy but this will be done at a later time or for example in the process of undo and redo that we will see an example of this lecture we saw in the previous lecture a complete example on the subject of command pattern which is how to deal with operations in the stock market we saw for example that I have a class called stock market through which I can for example buy stocks, open a company, sell stocks, write books and others", "tokens": [474, 341, 307, 4818, 294, 512, 7733, 411, 337, 1365, 264, 4669, 7733, 293, 264, 16599, 300, 286, 528, 281, 360, 420, 589, 337, 1365, 281, 2256, 457, 341, 486, 312, 1096, 412, 257, 1780, 565, 420, 337, 1365, 294, 264, 1399, 295, 23779, 293, 29956, 300, 321, 486, 536, 364, 1365, 295, 341, 7991, 321, 1866, 294, 264, 3894, 7991, 257, 3566, 1365, 322, 264, 3983, 295, 5622, 5102, 597, 307, 577, 281, 2028, 365, 7705, 294, 264, 4127, 2142, 321, 1866, 337, 1365, 300, 286, 362, 257, 1508, 1219, 4127, 2142, 807, 597, 286, 393, 337, 1365, 2256, 12966, 11, 1269, 257, 2237, 11, 3607, 12966, 11, 2464, 3642, 293, 2357], "avg_logprob": -0.47669955905069383, "compression_ratio": 2.003610108303249, "no_speech_prob": 2.9802322387695312e-06, "words": [{"start": 31.28, "end": 31.62, "word": "and", "probability": 0.12335205078125}, {"start": 31.62, "end": 32.02, "word": " this", "probability": 0.69140625}, {"start": 32.02, "end": 32.08, "word": " is", "probability": 0.71923828125}, {"start": 32.08, "end": 32.32, "word": " necessary", "probability": 0.1884765625}, {"start": 32.32, "end": 32.58, "word": " in", "probability": 0.67041015625}, {"start": 32.58, "end": 32.88, "word": " some", "probability": 0.69140625}, {"start": 32.88, "end": 33.28, "word": " apps", "probability": 0.396240234375}, {"start": 33.28, "end": 33.54, "word": " like", "probability": 0.45068359375}, {"start": 33.54, "end": 33.64, "word": " for", "probability": 0.205078125}, {"start": 33.64, "end": 33.94, "word": " example", "probability": 0.8857421875}, {"start": 33.94, "end": 34.66, "word": " the", "probability": 0.205322265625}, {"start": 34.66, "end": 34.86, "word": " financial", "probability": 0.4765625}, {"start": 34.86, "end": 34.98, "word": " apps", "probability": 0.46240234375}, {"start": 34.98, "end": 35.12, "word": " and", "probability": 0.427734375}, {"start": 35.12, "end": 35.2, "word": " the", "probability": 0.469970703125}, {"start": 35.2, "end": 35.44, "word": " wallet", "probability": 0.253173828125}, {"start": 35.44, "end": 35.56, "word": " that", "probability": 0.440673828125}, {"start": 35.56, "end": 35.7, "word": " I", "probability": 0.80712890625}, {"start": 35.7, "end": 35.88, "word": " want", "probability": 0.53076171875}, {"start": 35.88, "end": 36.08, "word": " to", "probability": 0.9580078125}, {"start": 36.08, "end": 36.08, "word": " do", "probability": 0.3046875}, {"start": 36.08, "end": 36.32, "word": " or", "probability": 0.2880859375}, {"start": 36.32, "end": 36.54, "word": " work", "probability": 0.302490234375}, {"start": 36.54, "end": 36.88, "word": " for", "probability": 0.6884765625}, {"start": 36.88, "end": 36.88, "word": " example", "probability": 0.908203125}, {"start": 36.88, "end": 37.04, "word": " to", "probability": 0.515625}, {"start": 37.04, "end": 37.28, "word": " buy", "probability": 0.83251953125}, {"start": 37.28, "end": 37.58, "word": " but", "probability": 0.5751953125}, {"start": 37.58, "end": 37.76, "word": " this", "probability": 0.395263671875}, {"start": 37.76, "end": 37.78, "word": " will", "probability": 0.701171875}, {"start": 37.78, "end": 37.92, "word": " be", "probability": 0.57373046875}, {"start": 37.92, "end": 38.1, "word": " done", "probability": 0.463623046875}, {"start": 38.1, "end": 38.48, "word": " at", "probability": 0.2293701171875}, {"start": 38.48, "end": 38.9, "word": " a", "probability": 0.89697265625}, {"start": 38.9, "end": 39.68, "word": " later", "probability": 0.51171875}, {"start": 39.68, "end": 39.68, "word": " time", "probability": 0.55908203125}, {"start": 39.68, "end": 40.76, "word": " or", "probability": 0.81982421875}, {"start": 40.76, "end": 41.0, "word": " for", "probability": 0.80859375}, {"start": 41.0, "end": 41.16, "word": " example", "probability": 0.9580078125}, {"start": 41.16, "end": 41.34, "word": " in", "probability": 0.89404296875}, {"start": 41.34, "end": 41.42, "word": " the", "probability": 0.83056640625}, {"start": 41.42, "end": 41.62, "word": " process", "probability": 0.5673828125}, {"start": 41.62, "end": 41.78, "word": " of", "probability": 0.93994140625}, {"start": 41.78, "end": 42.04, "word": " undo", "probability": 0.322265625}, {"start": 42.04, "end": 42.16, "word": " and", "probability": 0.658203125}, {"start": 42.16, "end": 42.42, "word": " redo", "probability": 0.8232421875}, {"start": 42.42, "end": 42.58, "word": " that", "probability": 0.420166015625}, {"start": 42.58, "end": 42.68, "word": " we", "probability": 0.85498046875}, {"start": 42.68, "end": 42.7, "word": " will", "probability": 0.755859375}, {"start": 42.7, "end": 42.86, "word": " see", "probability": 0.87548828125}, {"start": 42.86, "end": 43.18, "word": " an", "probability": 0.8271484375}, {"start": 43.18, "end": 43.18, "word": " example", "probability": 0.974609375}, {"start": 43.18, "end": 43.34, "word": " of", "probability": 0.8115234375}, {"start": 43.34, "end": 43.68, "word": " this", "probability": 0.392822265625}, {"start": 43.68, "end": 44.18, "word": " lecture", "probability": 0.64208984375}, {"start": 44.18, "end": 45.24, "word": " we", "probability": 0.5185546875}, {"start": 45.24, "end": 45.46, "word": " saw", "probability": 0.75830078125}, {"start": 45.46, "end": 45.56, "word": " in", "probability": 0.265380859375}, {"start": 45.56, "end": 45.58, "word": " the", "probability": 0.85205078125}, {"start": 45.58, "end": 45.7, "word": " previous", "probability": 0.397216796875}, {"start": 45.7, "end": 46.08, "word": " lecture", "probability": 0.92431640625}, {"start": 46.08, "end": 46.52, "word": " a", "probability": 0.448974609375}, {"start": 46.52, "end": 46.78, "word": " complete", "probability": 0.2474365234375}, {"start": 46.78, "end": 46.94, "word": " example", "probability": 0.96240234375}, {"start": 46.94, "end": 47.12, "word": " on", "probability": 0.65576171875}, {"start": 47.12, "end": 47.24, "word": " the", "probability": 0.86083984375}, {"start": 47.24, "end": 47.4, "word": " subject", "probability": 0.65185546875}, {"start": 47.4, "end": 47.5, "word": " of", "probability": 0.939453125}, {"start": 47.5, "end": 47.78, "word": " command", "probability": 0.5830078125}, {"start": 47.78, "end": 48.2, "word": " pattern", "probability": 0.7314453125}, {"start": 48.2, "end": 48.88, "word": " which", "probability": 0.7060546875}, {"start": 48.88, "end": 49.02, "word": " is", "probability": 0.93212890625}, {"start": 49.02, "end": 49.18, "word": " how", "probability": 0.921875}, {"start": 49.18, "end": 49.32, "word": " to", "probability": 0.9619140625}, {"start": 49.32, "end": 49.54, "word": " deal", "probability": 0.8671875}, {"start": 49.54, "end": 49.72, "word": " with", "probability": 0.8935546875}, {"start": 49.72, "end": 50.1, "word": " operations", "probability": 0.62744140625}, {"start": 50.1, "end": 50.32, "word": " in", "probability": 0.9365234375}, {"start": 50.32, "end": 50.4, "word": " the", "probability": 0.87939453125}, {"start": 50.4, "end": 50.6, "word": " stock", "probability": 0.841796875}, {"start": 50.6, "end": 51.1, "word": " market", "probability": 0.90234375}, {"start": 51.1, "end": 51.76, "word": " we", "probability": 0.60888671875}, {"start": 51.76, "end": 51.92, "word": " saw", "probability": 0.88525390625}, {"start": 51.92, "end": 52.16, "word": " for", "probability": 0.77294921875}, {"start": 52.16, "end": 52.24, "word": " example", "probability": 0.96923828125}, {"start": 52.24, "end": 52.38, "word": " that", "probability": 0.77099609375}, {"start": 52.38, "end": 52.42, "word": " I", "probability": 0.79150390625}, {"start": 52.42, "end": 52.58, "word": " have", "probability": 0.904296875}, {"start": 52.58, "end": 52.68, "word": " a", "probability": 0.93359375}, {"start": 52.68, "end": 53.06, "word": " class", "probability": 0.9814453125}, {"start": 53.06, "end": 53.34, "word": " called", "probability": 0.67724609375}, {"start": 53.34, "end": 53.62, "word": " stock", "probability": 0.6943359375}, {"start": 53.62, "end": 54.0, "word": " market", "probability": 0.8828125}, {"start": 54.0, "end": 54.2, "word": " through", "probability": 0.8544921875}, {"start": 54.2, "end": 54.52, "word": " which", "probability": 0.58154296875}, {"start": 54.52, "end": 54.76, "word": " I", "probability": 0.9072265625}, {"start": 54.76, "end": 55.28, "word": " can", "probability": 0.81689453125}, {"start": 55.28, "end": 55.28, "word": " for", "probability": 0.440673828125}, {"start": 55.28, "end": 55.28, "word": " example", "probability": 0.96142578125}, {"start": 55.28, "end": 55.94, "word": " buy", "probability": 0.50146484375}, {"start": 55.94, "end": 56.44, "word": " stocks,", "probability": 0.57421875}, {"start": 56.66, "end": 56.9, "word": " open", "probability": 0.60986328125}, {"start": 56.9, "end": 57.06, "word": " a", "probability": 0.9677734375}, {"start": 57.06, "end": 57.36, "word": " company,", "probability": 0.89892578125}, {"start": 57.5, "end": 57.72, "word": " sell", "probability": 0.8447265625}, {"start": 57.72, "end": 58.16, "word": " stocks,", "probability": 0.72509765625}, {"start": 58.76, "end": 58.94, "word": " write", "probability": 0.2998046875}, {"start": 58.94, "end": 59.4, "word": " books", "probability": 0.296875}, {"start": 59.4, "end": 59.58, "word": " and", "probability": 0.57421875}, {"start": 59.58, "end": 59.78, "word": " others", "probability": 0.35693359375}], "temperature": 1.0}, {"id": 3, "seek": 7847, "start": 61.45, "end": 78.47, "text": "The idea behind the command pattern is that these commands, when I call the methods in the stock market, they are executed directly But now I want to convert every call to a method, I want to convert it to a command, store it as an object, store in it all the commands and information that I need to execute", "tokens": [2278, 1558, 2261, 264, 5622, 5102, 307, 300, 613, 16901, 11, 562, 286, 818, 264, 7150, 294, 264, 4127, 2142, 11, 436, 366, 17577, 3838, 583, 586, 286, 528, 281, 7620, 633, 818, 281, 257, 3170, 11, 286, 528, 281, 7620, 309, 281, 257, 5622, 11, 3531, 309, 382, 364, 2657, 11, 3531, 294, 309, 439, 264, 16901, 293, 1589, 300, 286, 643, 281, 14483], "avg_logprob": -0.5681818136663148, "compression_ratio": 1.7443181818181819, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 61.449999999999996, "end": 61.87, "word": "The", "probability": 0.26416015625}, {"start": 61.87, "end": 62.17, "word": " idea", "probability": 0.73095703125}, {"start": 62.17, "end": 62.33, "word": " behind", "probability": 0.444580078125}, {"start": 62.33, "end": 62.41, "word": " the", "probability": 0.224365234375}, {"start": 62.41, "end": 62.69, "word": " command", "probability": 0.861328125}, {"start": 62.69, "end": 63.01, "word": " pattern", "probability": 0.83544921875}, {"start": 63.01, "end": 63.23, "word": " is", "probability": 0.85595703125}, {"start": 63.23, "end": 63.67, "word": " that", "probability": 0.70068359375}, {"start": 63.67, "end": 63.89, "word": " these", "probability": 0.25146484375}, {"start": 63.89, "end": 64.29, "word": " commands,", "probability": 0.7421875}, {"start": 64.51, "end": 64.71, "word": " when", "probability": 0.6044921875}, {"start": 64.71, "end": 64.89, "word": " I", "probability": 0.80322265625}, {"start": 64.89, "end": 65.07, "word": " call", "probability": 0.176513671875}, {"start": 65.07, "end": 65.23, "word": " the", "probability": 0.31982421875}, {"start": 65.23, "end": 65.57, "word": " methods", "probability": 0.755859375}, {"start": 65.57, "end": 66.09, "word": " in", "probability": 0.419677734375}, {"start": 66.09, "end": 66.19, "word": " the", "probability": 0.83203125}, {"start": 66.19, "end": 66.41, "word": " stock", "probability": 0.7314453125}, {"start": 66.41, "end": 66.75, "word": " market,", "probability": 0.88720703125}, {"start": 66.85, "end": 66.95, "word": " they", "probability": 0.2308349609375}, {"start": 66.95, "end": 67.05, "word": " are", "probability": 0.39892578125}, {"start": 67.05, "end": 67.31, "word": " executed", "probability": 0.8505859375}, {"start": 67.31, "end": 67.79, "word": " directly", "probability": 0.52001953125}, {"start": 67.79, "end": 68.57, "word": " But", "probability": 0.303955078125}, {"start": 68.57, "end": 68.99, "word": " now", "probability": 0.73291015625}, {"start": 68.99, "end": 69.11, "word": " I", "probability": 0.81298828125}, {"start": 69.11, "end": 69.25, "word": " want", "probability": 0.619140625}, {"start": 69.25, "end": 69.35, "word": " to", "probability": 0.962890625}, {"start": 69.35, "end": 69.61, "word": " convert", "probability": 0.367919921875}, {"start": 69.61, "end": 71.03, "word": " every", "probability": 0.278076171875}, {"start": 71.03, "end": 71.45, "word": " call", "probability": 0.64599609375}, {"start": 71.45, "end": 71.69, "word": " to", "probability": 0.72265625}, {"start": 71.69, "end": 71.75, "word": " a", "probability": 0.75146484375}, {"start": 71.75, "end": 72.11, "word": " method,", "probability": 0.857421875}, {"start": 72.69, "end": 72.69, "word": " I", "probability": 0.208740234375}, {"start": 72.69, "end": 72.83, "word": " want", "probability": 0.85888671875}, {"start": 72.83, "end": 72.91, "word": " to", "probability": 0.96337890625}, {"start": 72.91, "end": 73.07, "word": " convert", "probability": 0.74365234375}, {"start": 73.07, "end": 73.19, "word": " it", "probability": 0.88720703125}, {"start": 73.19, "end": 73.25, "word": " to", "probability": 0.794921875}, {"start": 73.25, "end": 73.37, "word": " a", "probability": 0.92626953125}, {"start": 73.37, "end": 73.75, "word": " command,", "probability": 0.90625}, {"start": 74.33, "end": 74.61, "word": " store", "probability": 0.36962890625}, {"start": 74.61, "end": 74.73, "word": " it", "probability": 0.91015625}, {"start": 74.73, "end": 74.81, "word": " as", "probability": 0.91455078125}, {"start": 74.81, "end": 74.95, "word": " an", "probability": 0.90234375}, {"start": 74.95, "end": 75.25, "word": " object,", "probability": 0.9736328125}, {"start": 75.35, "end": 75.65, "word": " store", "probability": 0.5029296875}, {"start": 75.65, "end": 75.83, "word": " in", "probability": 0.15234375}, {"start": 75.83, "end": 75.95, "word": " it", "probability": 0.9130859375}, {"start": 75.95, "end": 76.21, "word": " all", "probability": 0.90087890625}, {"start": 76.21, "end": 76.29, "word": " the", "probability": 0.76123046875}, {"start": 76.29, "end": 76.47, "word": " commands", "probability": 0.29931640625}, {"start": 76.47, "end": 77.11, "word": " and", "probability": 0.38525390625}, {"start": 77.11, "end": 77.53, "word": " information", "probability": 0.413330078125}, {"start": 77.53, "end": 77.73, "word": " that", "probability": 0.701171875}, {"start": 77.73, "end": 77.87, "word": " I", "probability": 0.3046875}, {"start": 77.87, "end": 77.95, "word": " need", "probability": 0.56884765625}, {"start": 77.95, "end": 78.09, "word": " to", "probability": 0.9609375}, {"start": 78.09, "end": 78.47, "word": " execute", "probability": 0.77685546875}], "temperature": 1.0}, {"id": 4, "seek": 10441, "start": 79.31, "end": 104.41, "text": "Okay? So that I can execute it later. These commands or objects were created through classes that implement the same interface. So that whatever kind of command is different, whether it is selling them or buying them, all of them will follow the same interface. This means that I can put all of these commands on different types in one list and execute it without knowing the details of execution.", "tokens": [8297, 30, 407, 300, 286, 393, 14483, 309, 1780, 13, 1981, 16901, 420, 6565, 645, 2942, 807, 5359, 300, 4445, 264, 912, 9226, 13, 407, 300, 2035, 733, 295, 5622, 307, 819, 11, 1968, 309, 307, 6511, 552, 420, 6382, 552, 11, 439, 295, 552, 486, 1524, 264, 912, 9226, 13, 639, 1355, 300, 286, 393, 829, 439, 295, 613, 16901, 322, 819, 3467, 294, 472, 1329, 293, 14483, 309, 1553, 5276, 264, 4365, 295, 15058, 13], "avg_logprob": -0.5080128403810354, "compression_ratio": 1.7644444444444445, "no_speech_prob": 3.337860107421875e-06, "words": [{"start": 79.31, "end": 79.61, "word": "Okay?", "probability": 0.118896484375}, {"start": 79.79, "end": 80.01, "word": " So", "probability": 0.64111328125}, {"start": 80.01, "end": 80.19, "word": " that", "probability": 0.8203125}, {"start": 80.19, "end": 80.41, "word": " I", "probability": 0.91845703125}, {"start": 80.41, "end": 80.55, "word": " can", "probability": 0.6904296875}, {"start": 80.55, "end": 80.77, "word": " execute", "probability": 0.31689453125}, {"start": 80.77, "end": 80.99, "word": " it", "probability": 0.64111328125}, {"start": 80.99, "end": 82.07, "word": " later.", "probability": 0.282470703125}, {"start": 82.55, "end": 83.05, "word": " These", "probability": 0.66748046875}, {"start": 83.05, "end": 83.41, "word": " commands", "probability": 0.77294921875}, {"start": 83.41, "end": 83.73, "word": " or", "probability": 0.72412109375}, {"start": 83.73, "end": 84.29, "word": " objects", "probability": 0.89697265625}, {"start": 84.29, "end": 84.47, "word": " were", "probability": 0.27685546875}, {"start": 84.47, "end": 84.93, "word": " created", "probability": 0.6357421875}, {"start": 84.93, "end": 86.21, "word": " through", "probability": 0.55810546875}, {"start": 86.21, "end": 86.83, "word": " classes", "probability": 0.9052734375}, {"start": 86.83, "end": 86.97, "word": " that", "probability": 0.68603515625}, {"start": 86.97, "end": 87.57, "word": " implement", "probability": 0.60546875}, {"start": 87.57, "end": 87.81, "word": " the", "probability": 0.4794921875}, {"start": 87.81, "end": 87.99, "word": " same", "probability": 0.87451171875}, {"start": 87.99, "end": 88.61, "word": " interface.", "probability": 0.89306640625}, {"start": 89.25, "end": 89.45, "word": " So", "probability": 0.8134765625}, {"start": 89.45, "end": 89.65, "word": " that", "probability": 0.85205078125}, {"start": 89.65, "end": 89.87, "word": " whatever", "probability": 0.666015625}, {"start": 89.87, "end": 90.41, "word": " kind", "probability": 0.10833740234375}, {"start": 90.41, "end": 90.61, "word": " of", "probability": 0.9697265625}, {"start": 90.61, "end": 90.85, "word": " command", "probability": 0.603515625}, {"start": 90.85, "end": 90.91, "word": " is", "probability": 0.2122802734375}, {"start": 90.91, "end": 90.91, "word": " different,", "probability": 0.6435546875}, {"start": 91.03, "end": 91.25, "word": " whether", "probability": 0.5361328125}, {"start": 91.25, "end": 91.41, "word": " it", "probability": 0.48583984375}, {"start": 91.41, "end": 91.41, "word": " is", "probability": 0.466064453125}, {"start": 91.41, "end": 91.57, "word": " selling", "probability": 0.383056640625}, {"start": 91.57, "end": 91.95, "word": " them", "probability": 0.3349609375}, {"start": 91.95, "end": 92.03, "word": " or", "probability": 0.70703125}, {"start": 92.03, "end": 92.29, "word": " buying", "probability": 0.8505859375}, {"start": 92.29, "end": 92.69, "word": " them,", "probability": 0.7998046875}, {"start": 93.17, "end": 93.39, "word": " all", "probability": 0.29248046875}, {"start": 93.39, "end": 93.53, "word": " of", "probability": 0.5791015625}, {"start": 93.53, "end": 93.53, "word": " them", "probability": 0.7138671875}, {"start": 93.53, "end": 93.79, "word": " will", "probability": 0.27880859375}, {"start": 93.79, "end": 94.05, "word": " follow", "probability": 0.368408203125}, {"start": 94.05, "end": 94.25, "word": " the", "probability": 0.91357421875}, {"start": 94.25, "end": 94.53, "word": " same", "probability": 0.884765625}, {"start": 94.53, "end": 95.79, "word": " interface.", "probability": 0.87890625}, {"start": 96.17, "end": 96.35, "word": " This", "probability": 0.7490234375}, {"start": 96.35, "end": 96.59, "word": " means", "probability": 0.9296875}, {"start": 96.59, "end": 96.97, "word": " that", "probability": 0.8974609375}, {"start": 96.97, "end": 97.39, "word": " I", "probability": 0.98583984375}, {"start": 97.39, "end": 98.29, "word": " can", "probability": 0.87451171875}, {"start": 98.29, "end": 98.55, "word": " put", "probability": 0.666015625}, {"start": 98.55, "end": 98.87, "word": " all", "probability": 0.83740234375}, {"start": 98.87, "end": 98.95, "word": " of", "probability": 0.443603515625}, {"start": 98.95, "end": 99.45, "word": " these", "probability": 0.787109375}, {"start": 99.45, "end": 99.45, "word": " commands", "probability": 0.7998046875}, {"start": 99.45, "end": 99.59, "word": " on", "probability": 0.62548828125}, {"start": 99.59, "end": 99.99, "word": " different", "probability": 0.457763671875}, {"start": 99.99, "end": 100.43, "word": " types", "probability": 0.54345703125}, {"start": 100.43, "end": 100.59, "word": " in", "probability": 0.474609375}, {"start": 100.59, "end": 100.59, "word": " one", "probability": 0.6435546875}, {"start": 100.59, "end": 101.07, "word": " list", "probability": 0.888671875}, {"start": 101.07, "end": 101.87, "word": " and", "probability": 0.66845703125}, {"start": 101.87, "end": 102.21, "word": " execute", "probability": 0.85791015625}, {"start": 102.21, "end": 102.41, "word": " it", "probability": 0.4541015625}, {"start": 102.41, "end": 102.59, "word": " without", "probability": 0.91455078125}, {"start": 102.59, "end": 102.91, "word": " knowing", "probability": 0.77099609375}, {"start": 102.91, "end": 103.03, "word": " the", "probability": 0.77685546875}, {"start": 103.03, "end": 103.27, "word": " details", "probability": 0.76611328125}, {"start": 103.27, "end": 104.19, "word": " of", "probability": 0.91064453125}, {"start": 104.19, "end": 104.41, "word": " execution.", "probability": 0.6728515625}], "temperature": 1.0}, {"id": 5, "seek": 12441, "start": 106.75, "end": 124.41, "text": "In this lecture, we will see another example on the command pattern, maybe an application more, to see how undo and redo work together. For example, I want to do certain operations in the program and I want to undo them to go back to these operations or redo them to go back to these operations.", "tokens": [4575, 341, 7991, 11, 321, 486, 536, 1071, 1365, 322, 264, 5622, 5102, 11, 1310, 364, 3861, 544, 11, 281, 536, 577, 23779, 293, 29956, 589, 1214, 13, 1171, 1365, 11, 286, 528, 281, 360, 1629, 7705, 294, 264, 1461, 293, 286, 528, 281, 23779, 552, 281, 352, 646, 281, 613, 7705, 420, 29956, 552, 281, 352, 646, 281, 613, 7705, 13], "avg_logprob": -0.45411707768364556, "compression_ratio": 1.798780487804878, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 106.75, "end": 106.93, "word": "In", "probability": 0.256103515625}, {"start": 106.93, "end": 106.99, "word": " this", "probability": 0.93701171875}, {"start": 106.99, "end": 107.29, "word": " lecture,", "probability": 0.826171875}, {"start": 107.75, "end": 107.85, "word": " we", "probability": 0.875}, {"start": 107.85, "end": 107.91, "word": " will", "probability": 0.6142578125}, {"start": 107.91, "end": 108.11, "word": " see", "probability": 0.68798828125}, {"start": 108.11, "end": 108.69, "word": " another", "probability": 0.8466796875}, {"start": 108.69, "end": 108.71, "word": " example", "probability": 0.94580078125}, {"start": 108.71, "end": 108.97, "word": " on", "probability": 0.3623046875}, {"start": 108.97, "end": 109.11, "word": " the", "probability": 0.362060546875}, {"start": 109.11, "end": 109.45, "word": " command", "probability": 0.8984375}, {"start": 109.45, "end": 110.17, "word": " pattern,", "probability": 0.85498046875}, {"start": 110.31, "end": 110.57, "word": " maybe", "probability": 0.56494140625}, {"start": 110.57, "end": 110.73, "word": " an", "probability": 0.2822265625}, {"start": 110.73, "end": 111.05, "word": " application", "probability": 0.83837890625}, {"start": 111.05, "end": 111.37, "word": " more,", "probability": 0.41748046875}, {"start": 111.51, "end": 111.65, "word": " to", "probability": 0.78466796875}, {"start": 111.65, "end": 112.03, "word": " see", "probability": 0.87548828125}, {"start": 112.03, "end": 112.31, "word": " how", "probability": 0.91015625}, {"start": 112.31, "end": 113.93, "word": " undo", "probability": 0.437744140625}, {"start": 113.93, "end": 114.17, "word": " and", "probability": 0.85302734375}, {"start": 114.17, "end": 114.47, "word": " redo", "probability": 0.96875}, {"start": 114.47, "end": 114.79, "word": " work", "probability": 0.24853515625}, {"start": 114.79, "end": 115.31, "word": " together.", "probability": 0.427978515625}, {"start": 116.05, "end": 116.29, "word": " For", "probability": 0.5849609375}, {"start": 116.29, "end": 116.75, "word": " example,", "probability": 0.9267578125}, {"start": 116.81, "end": 116.83, "word": " I", "probability": 0.8134765625}, {"start": 116.83, "end": 116.95, "word": " want", "probability": 0.80859375}, {"start": 116.95, "end": 117.03, "word": " to", "probability": 0.96630859375}, {"start": 117.03, "end": 117.23, "word": " do", "probability": 0.65966796875}, {"start": 117.23, "end": 117.93, "word": " certain", "probability": 0.39697265625}, {"start": 117.93, "end": 118.65, "word": " operations", "probability": 0.8037109375}, {"start": 118.65, "end": 118.65, "word": " in", "probability": 0.86865234375}, {"start": 118.65, "end": 118.65, "word": " the", "probability": 0.84033203125}, {"start": 118.65, "end": 118.65, "word": " program", "probability": 0.8857421875}, {"start": 118.65, "end": 118.95, "word": " and", "probability": 0.63720703125}, {"start": 118.95, "end": 119.01, "word": " I", "probability": 0.39453125}, {"start": 119.01, "end": 119.17, "word": " want", "probability": 0.77734375}, {"start": 119.17, "end": 119.41, "word": " to", "probability": 0.91650390625}, {"start": 119.41, "end": 119.51, "word": " undo", "probability": 0.9404296875}, {"start": 119.51, "end": 119.67, "word": " them", "probability": 0.270263671875}, {"start": 119.67, "end": 119.85, "word": " to", "probability": 0.7490234375}, {"start": 119.85, "end": 120.03, "word": " go", "probability": 0.31005859375}, {"start": 120.03, "end": 120.29, "word": " back", "probability": 0.861328125}, {"start": 120.29, "end": 120.39, "word": " to", "probability": 0.87353515625}, {"start": 120.39, "end": 120.45, "word": " these", "probability": 0.6142578125}, {"start": 120.45, "end": 120.91, "word": " operations", "probability": 0.90625}, {"start": 120.91, "end": 121.29, "word": " or", "probability": 0.69921875}, {"start": 121.29, "end": 121.59, "word": " redo", "probability": 0.53955078125}, {"start": 121.59, "end": 122.35, "word": " them", "probability": 0.67041015625}, {"start": 122.35, "end": 122.53, "word": " to", "probability": 0.8740234375}, {"start": 122.53, "end": 122.61, "word": " go", "probability": 0.313232421875}, {"start": 122.61, "end": 122.77, "word": " back", "probability": 0.7841796875}, {"start": 122.77, "end": 122.91, "word": " to", "probability": 0.642578125}, {"start": 122.91, "end": 123.89, "word": " these", "probability": 0.490966796875}, {"start": 123.89, "end": 124.41, "word": " operations.", "probability": 0.958984375}], "temperature": 1.0}, {"id": 6, "seek": 15443, "start": 134.19, "end": 154.43, "text": "Okay guys, before we start, let's just remember what we did in the last lecture in the stock market, we started that I have a class called stock market through which the process of buying stocks or opening companies takes place, this is the class through which everything takes place, because as I said, I want these processes of buying or opening", "tokens": [8297, 1074, 11, 949, 321, 722, 11, 718, 311, 445, 1604, 437, 321, 630, 294, 264, 1036, 7991, 294, 264, 4127, 2142, 11, 321, 1409, 300, 286, 362, 257, 1508, 1219, 4127, 2142, 807, 597, 264, 1399, 295, 6382, 12966, 420, 5193, 3431, 2516, 1081, 11, 341, 307, 264, 1508, 807, 597, 1203, 2516, 1081, 11, 570, 382, 286, 848, 11, 286, 528, 613, 7555, 295, 6382, 420, 5193], "avg_logprob": -0.4055803669350488, "compression_ratio": 1.7525252525252526, "no_speech_prob": 7.033348083496094e-06, "words": [{"start": 134.19, "end": 134.45, "word": "Okay", "probability": 0.384765625}, {"start": 134.45, "end": 134.79, "word": " guys,", "probability": 0.73291015625}, {"start": 134.91, "end": 135.15, "word": " before", "probability": 0.81103515625}, {"start": 135.15, "end": 136.71, "word": " we", "probability": 0.841796875}, {"start": 136.71, "end": 136.95, "word": " start,", "probability": 0.79638671875}, {"start": 137.27, "end": 137.67, "word": " let's", "probability": 0.84619140625}, {"start": 137.67, "end": 137.77, "word": " just", "probability": 0.5166015625}, {"start": 137.77, "end": 138.21, "word": " remember", "probability": 0.61572265625}, {"start": 138.21, "end": 138.35, "word": " what", "probability": 0.8056640625}, {"start": 138.35, "end": 138.41, "word": " we", "probability": 0.94482421875}, {"start": 138.41, "end": 138.55, "word": " did", "probability": 0.87060546875}, {"start": 138.55, "end": 138.73, "word": " in", "probability": 0.66064453125}, {"start": 138.73, "end": 138.77, "word": " the", "probability": 0.7109375}, {"start": 138.77, "end": 138.77, "word": " last", "probability": 0.405029296875}, {"start": 138.77, "end": 139.09, "word": " lecture", "probability": 0.70751953125}, {"start": 139.09, "end": 139.55, "word": " in", "probability": 0.401611328125}, {"start": 139.55, "end": 139.63, "word": " the", "probability": 0.7763671875}, {"start": 139.63, "end": 139.83, "word": " stock", "probability": 0.76708984375}, {"start": 139.83, "end": 140.33, "word": " market,", "probability": 0.916015625}, {"start": 140.41, "end": 140.61, "word": " we", "probability": 0.85546875}, {"start": 140.61, "end": 140.91, "word": " started", "probability": 0.873046875}, {"start": 140.91, "end": 141.23, "word": " that", "probability": 0.51953125}, {"start": 141.23, "end": 141.39, "word": " I", "probability": 0.96923828125}, {"start": 141.39, "end": 141.61, "word": " have", "probability": 0.9189453125}, {"start": 141.61, "end": 141.73, "word": " a", "probability": 0.93701171875}, {"start": 141.73, "end": 142.01, "word": " class", "probability": 0.98095703125}, {"start": 142.01, "end": 142.29, "word": " called", "probability": 0.70849609375}, {"start": 142.29, "end": 142.61, "word": " stock", "probability": 0.47509765625}, {"start": 142.61, "end": 143.07, "word": " market", "probability": 0.91796875}, {"start": 143.07, "end": 143.37, "word": " through", "probability": 0.54931640625}, {"start": 143.37, "end": 143.73, "word": " which", "probability": 0.85107421875}, {"start": 143.73, "end": 144.05, "word": " the", "probability": 0.474853515625}, {"start": 144.05, "end": 144.29, "word": " process", "probability": 0.1866455078125}, {"start": 144.29, "end": 144.51, "word": " of", "probability": 0.95947265625}, {"start": 144.51, "end": 144.71, "word": " buying", "probability": 0.76123046875}, {"start": 144.71, "end": 145.17, "word": " stocks", "probability": 0.5537109375}, {"start": 145.17, "end": 145.85, "word": " or", "probability": 0.8701171875}, {"start": 145.85, "end": 146.09, "word": " opening", "probability": 0.55908203125}, {"start": 146.09, "end": 146.53, "word": " companies", "probability": 0.83447265625}, {"start": 146.53, "end": 146.53, "word": " takes", "probability": 0.2103271484375}, {"start": 146.53, "end": 146.53, "word": " place,", "probability": 0.8916015625}, {"start": 147.01, "end": 147.37, "word": " this", "probability": 0.8798828125}, {"start": 147.37, "end": 147.49, "word": " is", "probability": 0.92724609375}, {"start": 147.49, "end": 147.65, "word": " the", "probability": 0.90478515625}, {"start": 147.65, "end": 147.99, "word": " class", "probability": 0.962890625}, {"start": 147.99, "end": 148.29, "word": " through", "probability": 0.60791015625}, {"start": 148.29, "end": 148.71, "word": " which", "probability": 0.93798828125}, {"start": 148.71, "end": 148.77, "word": " everything", "probability": 0.904296875}, {"start": 148.77, "end": 149.03, "word": " takes", "probability": 0.391845703125}, {"start": 149.03, "end": 150.03, "word": " place,", "probability": 0.8916015625}, {"start": 150.41, "end": 150.57, "word": " because", "probability": 0.84326171875}, {"start": 150.57, "end": 150.81, "word": " as", "probability": 0.60009765625}, {"start": 150.81, "end": 150.99, "word": " I", "probability": 0.982421875}, {"start": 150.99, "end": 151.23, "word": " said,", "probability": 0.923828125}, {"start": 151.39, "end": 151.47, "word": " I", "probability": 0.98291015625}, {"start": 151.47, "end": 151.83, "word": " want", "probability": 0.4541015625}, {"start": 151.83, "end": 152.15, "word": " these", "probability": 0.7294921875}, {"start": 152.15, "end": 153.03, "word": " processes", "probability": 0.56689453125}, {"start": 153.03, "end": 153.59, "word": " of", "probability": 0.52001953125}, {"start": 153.59, "end": 153.87, "word": " buying", "probability": 0.837890625}, {"start": 153.87, "end": 154.15, "word": " or", "probability": 0.8486328125}, {"start": 154.15, "end": 154.43, "word": " opening", "probability": 0.8662109375}], "temperature": 1.0}, {"id": 7, "seek": 18405, "start": 155.43, "end": 184.05, "text": " I made it encapsulation inside objects so I made an interface called stock command there is a method called execute and then I did two things which is buy shares and open company both of them implement this interface both of them have the necessary information to execute the order and notice that buy shares and open company take through the constructor object from whom", "tokens": [286, 1027, 309, 38745, 2776, 1854, 6565, 370, 286, 1027, 364, 9226, 1219, 4127, 5622, 456, 307, 257, 3170, 1219, 14483, 293, 550, 286, 630, 732, 721, 597, 307, 2256, 12182, 293, 1269, 2237, 1293, 295, 552, 4445, 341, 9226, 1293, 295, 552, 362, 264, 4818, 1589, 281, 14483, 264, 1668, 293, 3449, 300, 2256, 12182, 293, 1269, 2237, 747, 807, 264, 47479, 2657, 490, 7101], "avg_logprob": -0.49160447850156186, "compression_ratio": 1.8415841584158417, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 155.43, "end": 155.65, "word": " I", "probability": 0.2044677734375}, {"start": 155.65, "end": 155.85, "word": " made", "probability": 0.357666015625}, {"start": 155.85, "end": 155.97, "word": " it", "probability": 0.4765625}, {"start": 155.97, "end": 156.85, "word": " encapsulation", "probability": 0.71044921875}, {"start": 156.85, "end": 157.25, "word": " inside", "probability": 0.619140625}, {"start": 157.25, "end": 158.17, "word": " objects", "probability": 0.7216796875}, {"start": 158.17, "end": 158.39, "word": " so", "probability": 0.19287109375}, {"start": 158.39, "end": 158.77, "word": " I", "probability": 0.845703125}, {"start": 158.77, "end": 159.05, "word": " made", "probability": 0.447021484375}, {"start": 159.05, "end": 160.15, "word": " an", "probability": 0.494873046875}, {"start": 160.15, "end": 160.53, "word": " interface", "probability": 0.865234375}, {"start": 160.53, "end": 160.77, "word": " called", "probability": 0.411865234375}, {"start": 160.77, "end": 161.09, "word": " stock", "probability": 0.474853515625}, {"start": 161.09, "end": 161.49, "word": " command", "probability": 0.724609375}, {"start": 161.49, "end": 161.73, "word": " there", "probability": 0.2242431640625}, {"start": 161.73, "end": 161.73, "word": " is", "probability": 0.744140625}, {"start": 161.73, "end": 161.77, "word": " a", "probability": 0.57958984375}, {"start": 161.77, "end": 162.01, "word": " method", "probability": 0.97216796875}, {"start": 162.01, "end": 162.35, "word": " called", "probability": 0.70849609375}, {"start": 162.35, "end": 163.59, "word": " execute", "probability": 0.947265625}, {"start": 163.59, "end": 164.59, "word": " and", "probability": 0.56884765625}, {"start": 164.59, "end": 164.83, "word": " then", "probability": 0.74365234375}, {"start": 164.83, "end": 164.93, "word": " I", "probability": 0.91748046875}, {"start": 164.93, "end": 165.17, "word": " did", "probability": 0.292236328125}, {"start": 165.17, "end": 165.59, "word": " two", "probability": 0.8310546875}, {"start": 165.59, "end": 165.59, "word": " things", "probability": 0.77001953125}, {"start": 165.59, "end": 166.11, "word": " which", "probability": 0.68310546875}, {"start": 166.11, "end": 166.29, "word": " is", "probability": 0.57373046875}, {"start": 166.29, "end": 166.49, "word": " buy", "probability": 0.8779296875}, {"start": 166.49, "end": 166.95, "word": " shares", "probability": 0.8857421875}, {"start": 166.95, "end": 167.57, "word": " and", "probability": 0.900390625}, {"start": 167.57, "end": 167.83, "word": " open", "probability": 0.93359375}, {"start": 167.83, "end": 168.31, "word": " company", "probability": 0.86279296875}, {"start": 168.31, "end": 168.77, "word": " both", "probability": 0.603515625}, {"start": 168.77, "end": 168.77, "word": " of", "probability": 0.2457275390625}, {"start": 168.77, "end": 168.89, "word": " them", "probability": 0.84619140625}, {"start": 168.89, "end": 169.57, "word": " implement", "probability": 0.460693359375}, {"start": 169.57, "end": 170.53, "word": " this", "probability": 0.358642578125}, {"start": 170.53, "end": 171.17, "word": " interface", "probability": 0.86083984375}, {"start": 171.17, "end": 172.33, "word": " both", "probability": 0.77685546875}, {"start": 172.33, "end": 172.49, "word": " of", "probability": 0.79052734375}, {"start": 172.49, "end": 172.49, "word": " them", "probability": 0.9013671875}, {"start": 172.49, "end": 173.01, "word": " have", "probability": 0.73828125}, {"start": 173.01, "end": 173.19, "word": " the", "probability": 0.58349609375}, {"start": 173.19, "end": 173.95, "word": " necessary", "probability": 0.5390625}, {"start": 173.95, "end": 173.95, "word": " information", "probability": 0.75634765625}, {"start": 173.95, "end": 174.21, "word": " to", "probability": 0.92041015625}, {"start": 174.21, "end": 174.55, "word": " execute", "probability": 0.51513671875}, {"start": 174.55, "end": 174.71, "word": " the", "probability": 0.5869140625}, {"start": 174.71, "end": 174.95, "word": " order", "probability": 0.5810546875}, {"start": 174.95, "end": 176.35, "word": " and", "probability": 0.340087890625}, {"start": 176.35, "end": 176.65, "word": " notice", "probability": 0.50244140625}, {"start": 176.65, "end": 177.11, "word": " that", "probability": 0.9208984375}, {"start": 177.11, "end": 177.51, "word": " buy", "probability": 0.5791015625}, {"start": 177.51, "end": 177.99, "word": " shares", "probability": 0.88916015625}, {"start": 177.99, "end": 178.53, "word": " and", "probability": 0.921875}, {"start": 178.53, "end": 178.87, "word": " open", "probability": 0.86572265625}, {"start": 178.87, "end": 179.41, "word": " company", "probability": 0.8798828125}, {"start": 179.41, "end": 180.39, "word": " take", "probability": 0.329345703125}, {"start": 180.39, "end": 181.13, "word": " through", "probability": 0.259521484375}, {"start": 181.13, "end": 182.41, "word": " the", "probability": 0.521484375}, {"start": 182.41, "end": 183.07, "word": " constructor", "probability": 0.88330078125}, {"start": 183.07, "end": 183.61, "word": " object", "probability": 0.65576171875}, {"start": 183.61, "end": 183.81, "word": " from", "probability": 0.724609375}, {"start": 183.81, "end": 184.05, "word": " whom", "probability": 0.7109375}], "temperature": 1.0}, {"id": 8, "seek": 20820, "start": 185.42, "end": 208.2, "text": "from the stock market because he is the one who executes because when it comes to execute, I go to the stock market and tell him to buy shares and pass on the process to him we said in the previous lecture that this is a process like one, two, three, four, five, six, seven, eight, nine, ten, eleven, twelve, thirteen, fourteen, fifteen, sixteen, eighteen, nineteen, twenty, twenty-one, twenty-one, twenty-two, twenty-three, twenty-four, twenty-five, twenty-five, twenty-four, twenty-five, twenty-five, twenty-five, twenty-four, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five, twenty-five,", "tokens": [20579, 264, 4127, 2142, 570, 415, 307, 264, 472, 567, 4454, 1819, 570, 562, 309, 1487, 281, 14483, 11, 286, 352, 281, 264, 4127, 2142, 293, 980, 796, 281, 2256, 12182, 293, 1320, 322, 264, 1399, 281, 796, 321, 848, 294, 264, 3894, 7991, 300, 341, 307, 257, 1399, 411, 472, 11, 732, 11, 1045, 11, 1451, 11, 1732, 11, 2309, 11, 3407, 11, 3180, 11, 4949, 11, 2064, 11, 21090, 11, 14390, 11, 31534, 11, 32253, 11, 18126, 11, 27847, 11, 31755, 11, 31555, 11, 7699, 11, 7699, 12, 546, 11, 7699, 12, 546, 11, 7699, 12, 20534, 11, 7699, 12, 27583, 11, 7699, 12, 23251, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 23251, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 23251, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11, 7699, 12, 18621, 11], "avg_logprob": -0.3188888888888889, "compression_ratio": 3.4786324786324787, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 185.42, "end": 185.64, "word": "from", "probability": 0.1348876953125}, {"start": 185.64, "end": 185.76, "word": " the", "probability": 0.728515625}, {"start": 185.76, "end": 185.94, "word": " stock", "probability": 0.7998046875}, {"start": 185.94, "end": 186.28, "word": " market", "probability": 0.90966796875}, {"start": 186.28, "end": 186.46, "word": " because", "probability": 0.69873046875}, {"start": 186.46, "end": 186.7, "word": " he", "probability": 0.31494140625}, {"start": 186.7, "end": 186.78, "word": " is", "probability": 0.56298828125}, {"start": 186.78, "end": 187.02, "word": " the", "probability": 0.59716796875}, {"start": 187.02, "end": 187.02, "word": " one", "probability": 0.771484375}, {"start": 187.02, "end": 187.1, "word": " who", "probability": 0.441162109375}, {"start": 187.1, "end": 187.36, "word": " executes", "probability": 0.57647705078125}, {"start": 187.36, "end": 188.72, "word": " because", "probability": 0.10198974609375}, {"start": 188.72, "end": 189.94, "word": " when", "probability": 0.87255859375}, {"start": 189.94, "end": 190.04, "word": " it", "probability": 0.146728515625}, {"start": 190.04, "end": 190.16, "word": " comes", "probability": 0.56640625}, {"start": 190.16, "end": 190.24, "word": " to", "probability": 0.810546875}, {"start": 190.24, "end": 190.7, "word": " execute,", "probability": 0.87451171875}, {"start": 190.88, "end": 190.92, "word": " I", "probability": 0.763671875}, {"start": 190.92, "end": 191.02, "word": " go", "probability": 0.80712890625}, {"start": 191.02, "end": 191.14, "word": " to", "probability": 0.94287109375}, {"start": 191.14, "end": 191.22, "word": " the", "probability": 0.85205078125}, {"start": 191.22, "end": 191.42, "word": " stock", "probability": 0.814453125}, {"start": 191.42, "end": 191.78, "word": " market", "probability": 0.8896484375}, {"start": 191.78, "end": 191.94, "word": " and", "probability": 0.7314453125}, {"start": 191.94, "end": 192.1, "word": " tell", "probability": 0.393310546875}, {"start": 192.1, "end": 192.2, "word": " him", "probability": 0.53076171875}, {"start": 192.2, "end": 192.26, "word": " to", "probability": 0.61181640625}, {"start": 192.26, "end": 192.38, "word": " buy", "probability": 0.912109375}, {"start": 192.38, "end": 192.76, "word": " shares", "probability": 0.87109375}, {"start": 192.76, "end": 192.88, "word": " and", "probability": 0.77685546875}, {"start": 192.88, "end": 193.2, "word": " pass", "probability": 0.2432861328125}, {"start": 193.2, "end": 193.54, "word": " on", "probability": 0.1986083984375}, {"start": 193.54, "end": 194.0, "word": " the", "probability": 0.609375}, {"start": 194.0, "end": 194.28, "word": " process", "probability": 0.67529296875}, {"start": 194.28, "end": 194.64, "word": " to", "probability": 0.56689453125}, {"start": 194.64, "end": 194.64, "word": " him", "probability": 0.931640625}, {"start": 194.64, "end": 195.02, "word": " we", "probability": 0.2080078125}, {"start": 195.02, "end": 195.12, "word": " said", "probability": 0.190185546875}, {"start": 195.12, "end": 195.26, "word": " in", "probability": 0.8720703125}, {"start": 195.26, "end": 195.32, "word": " the", "probability": 0.73193359375}, {"start": 195.32, "end": 195.32, "word": " previous", "probability": 0.419677734375}, {"start": 195.32, "end": 195.8, "word": " lecture", "probability": 0.8671875}, {"start": 195.8, "end": 196.04, "word": " that", "probability": 0.50537109375}, {"start": 196.04, "end": 196.1, "word": " this", "probability": 0.436279296875}, {"start": 196.1, "end": 196.12, "word": " is", "probability": 0.55322265625}, {"start": 196.12, "end": 196.22, "word": " a", "probability": 0.456787109375}, {"start": 196.22, "end": 196.26, "word": " process", "probability": 0.1334228515625}, {"start": 196.26, "end": 196.46, "word": " like", "probability": 0.6923828125}, {"start": 196.46, "end": 196.62, "word": " one,", "probability": 0.30517578125}, {"start": 196.68, "end": 196.74, "word": " two,", "probability": 0.56201171875}, {"start": 196.86, "end": 196.9, "word": " three,", "probability": 0.9375}, {"start": 196.98, "end": 197.2, "word": " four,", "probability": 0.82470703125}, {"start": 197.2, "end": 197.46, "word": " five,", "probability": 0.6328125}, {"start": 197.78, "end": 197.78, "word": " six,", "probability": 0.787109375}, {"start": 197.78, "end": 197.78, "word": " seven,", "probability": 0.72119140625}, {"start": 197.78, "end": 197.78, "word": " eight,", "probability": 0.83740234375}, {"start": 197.78, "end": 197.78, "word": " nine,", "probability": 0.884765625}, {"start": 197.78, "end": 197.78, "word": " ten,", "probability": 0.7998046875}, {"start": 198.06, "end": 198.06, "word": " eleven,", "probability": 0.5205078125}, {"start": 200.0, "end": 200.0, "word": " twelve,", "probability": 0.9013671875}, {"start": 200.0, "end": 200.0, "word": " thirteen,", "probability": 0.73828125}, {"start": 200.0, "end": 200.0, "word": " fourteen,", "probability": 0.96142578125}, {"start": 200.0, "end": 200.0, "word": " fifteen,", "probability": 0.71875}, {"start": 200.28, "end": 200.28, "word": " sixteen,", "probability": 0.437255859375}, {"start": 200.28, "end": 200.28, "word": " eighteen,", "probability": 0.235595703125}, {"start": 200.44, "end": 200.44, "word": " nineteen,", "probability": 0.66259765625}, {"start": 200.72, "end": 200.74, "word": " twenty,", "probability": 0.474365234375}, {"start": 200.74, "end": 200.74, "word": " twenty", "probability": 0.69873046875}, {"start": 200.74, "end": 200.74, "word": "-one,", "probability": 0.5516357421875}, {"start": 200.74, "end": 200.74, "word": " twenty", "probability": 0.61474609375}, {"start": 200.74, "end": 200.74, "word": "-one,", "probability": 0.68115234375}, {"start": 200.74, "end": 200.74, "word": " twenty", "probability": 0.75732421875}, {"start": 200.74, "end": 200.74, "word": "-two,", "probability": 0.776123046875}, {"start": 200.74, "end": 200.74, "word": " twenty", "probability": 0.77783203125}, {"start": 200.74, "end": 200.74, "word": "-three,", "probability": 0.755615234375}, {"start": 200.74, "end": 200.74, "word": " twenty", "probability": 0.8798828125}, {"start": 200.74, "end": 200.76, "word": "-four,", "probability": 0.78857421875}, {"start": 200.76, "end": 200.76, "word": " twenty", "probability": 0.87744140625}, {"start": 200.76, "end": 200.78, "word": "-five,", "probability": 0.888671875}, {"start": 202.22, "end": 202.22, "word": " twenty", "probability": 0.9013671875}, {"start": 202.22, "end": 202.22, "word": "-five,", "probability": 0.715087890625}, {"start": 202.48, "end": 202.48, "word": " twenty", "probability": 0.8876953125}, {"start": 202.48, "end": 202.48, "word": "-four,", "probability": 0.638427734375}, {"start": 202.48, "end": 202.48, "word": " twenty", "probability": 0.8701171875}, {"start": 202.48, "end": 202.48, "word": "-five,", "probability": 0.845458984375}, {"start": 202.48, "end": 202.48, "word": " twenty", "probability": 0.86376953125}, {"start": 202.48, "end": 202.48, "word": "-five,", "probability": 0.743896484375}, {"start": 202.48, "end": 202.48, "word": " twenty", "probability": 0.85498046875}, {"start": 202.48, "end": 202.48, "word": "-five,", "probability": 0.6812744140625}, {"start": 202.78, "end": 202.78, "word": " twenty", "probability": 0.85107421875}, {"start": 202.78, "end": 202.78, "word": "-four,", "probability": 0.58978271484375}, {"start": 202.78, "end": 202.78, "word": " twenty", "probability": 0.8623046875}, {"start": 202.78, "end": 202.78, "word": "-five,", "probability": 0.833984375}, {"start": 202.78, "end": 202.78, "word": " twenty", "probability": 0.8583984375}, {"start": 202.78, "end": 202.78, "word": "-five,", "probability": 0.79931640625}, {"start": 202.78, "end": 202.78, "word": " twenty", "probability": 0.85888671875}, {"start": 202.78, "end": 202.78, "word": "-five,", "probability": 0.79296875}, {"start": 202.78, "end": 202.78, "word": " twenty", "probability": 0.86181640625}, {"start": 202.78, "end": 202.78, "word": "-five,", "probability": 0.811279296875}, {"start": 202.9, "end": 202.9, "word": " twenty", "probability": 0.86474609375}, {"start": 202.9, "end": 203.12, "word": "-five,", "probability": 0.8427734375}, {"start": 204.04, "end": 207.28, "word": " twenty", "probability": 0.8701171875}, {"start": 207.28, "end": 207.4, "word": "-five,", "probability": 0.8779296875}, {"start": 207.74, "end": 208.16, "word": " twenty", "probability": 0.873046875}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.90625}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.87255859375}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.92333984375}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.87548828125}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.935791015625}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.8779296875}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.94287109375}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.87744140625}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.947265625}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.87841796875}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.95068359375}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.87939453125}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.953369140625}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.87744140625}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.954833984375}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.87841796875}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.956298828125}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.87841796875}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.95703125}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.87939453125}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.958984375}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.87841796875}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.95947265625}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.87744140625}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.959228515625}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.87646484375}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.9599609375}, {"start": 208.16, "end": 208.16, "word": " twenty", "probability": 0.8759765625}, {"start": 208.16, "end": 208.16, "word": "-five,", "probability": 0.95947265625}, {"start": 208.16, "end": 208.2, "word": " twenty", "probability": 0.8798828125}, {"start": 208.2, "end": 208.2, "word": "-five,", "probability": 0.9599609375}], "temperature": 1.0}, {"id": 9, "seek": 22676, "start": 208.34, "end": 226.76, "text": "means this is the process of buying in the class of open company the same idea I have open company implement for stock command and I also have execute but inside execute this does something different the idea I have here is as follows this is the stock market this is the main method", "tokens": [1398, 599, 341, 307, 264, 1399, 295, 6382, 294, 264, 1508, 295, 1269, 2237, 264, 912, 1558, 286, 362, 1269, 2237, 4445, 337, 4127, 5622, 293, 286, 611, 362, 14483, 457, 1854, 14483, 341, 775, 746, 819, 264, 1558, 286, 362, 510, 307, 382, 10002, 341, 307, 264, 4127, 2142, 341, 307, 264, 2135, 3170], "avg_logprob": -0.47433034383824896, "compression_ratio": 1.802547770700637, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 208.34, "end": 208.58, "word": "means", "probability": 0.42138671875}, {"start": 208.58, "end": 208.78, "word": " this", "probability": 0.51025390625}, {"start": 208.78, "end": 208.86, "word": " is", "probability": 0.82373046875}, {"start": 208.86, "end": 208.88, "word": " the", "probability": 0.1719970703125}, {"start": 208.88, "end": 209.08, "word": " process", "probability": 0.402099609375}, {"start": 209.08, "end": 209.24, "word": " of", "probability": 0.9404296875}, {"start": 209.24, "end": 209.46, "word": " buying", "probability": 0.68994140625}, {"start": 209.46, "end": 209.8, "word": " in", "probability": 0.374267578125}, {"start": 209.8, "end": 210.1, "word": " the", "probability": 0.5673828125}, {"start": 210.1, "end": 210.38, "word": " class", "probability": 0.6708984375}, {"start": 210.38, "end": 210.6, "word": " of", "probability": 0.8017578125}, {"start": 210.6, "end": 210.86, "word": " open", "probability": 0.50146484375}, {"start": 210.86, "end": 211.44, "word": " company", "probability": 0.78369140625}, {"start": 211.44, "end": 212.12, "word": " the", "probability": 0.1624755859375}, {"start": 212.12, "end": 212.3, "word": " same", "probability": 0.87158203125}, {"start": 212.3, "end": 212.7, "word": " idea", "probability": 0.6826171875}, {"start": 212.7, "end": 212.86, "word": " I", "probability": 0.442626953125}, {"start": 212.86, "end": 213.06, "word": " have", "probability": 0.89013671875}, {"start": 213.06, "end": 213.4, "word": " open", "probability": 0.63623046875}, {"start": 213.4, "end": 213.92, "word": " company", "probability": 0.90771484375}, {"start": 213.92, "end": 214.48, "word": " implement", "probability": 0.689453125}, {"start": 214.48, "end": 214.7, "word": " for", "probability": 0.456298828125}, {"start": 214.7, "end": 214.94, "word": " stock", "probability": 0.61474609375}, {"start": 214.94, "end": 215.26, "word": " command", "probability": 0.43017578125}, {"start": 215.26, "end": 215.38, "word": " and", "probability": 0.80908203125}, {"start": 215.38, "end": 215.54, "word": " I", "probability": 0.73046875}, {"start": 215.54, "end": 215.82, "word": " also", "probability": 0.4990234375}, {"start": 215.82, "end": 215.9, "word": " have", "probability": 0.8662109375}, {"start": 215.9, "end": 216.46, "word": " execute", "probability": 0.93212890625}, {"start": 216.46, "end": 217.8, "word": " but", "probability": 0.7353515625}, {"start": 217.8, "end": 218.04, "word": " inside", "probability": 0.71533203125}, {"start": 218.04, "end": 218.5, "word": " execute", "probability": 0.556640625}, {"start": 218.5, "end": 218.68, "word": " this", "probability": 0.47705078125}, {"start": 218.68, "end": 218.86, "word": " does", "probability": 0.49169921875}, {"start": 218.86, "end": 219.3, "word": " something", "probability": 0.77783203125}, {"start": 219.3, "end": 220.78, "word": " different", "probability": 0.60693359375}, {"start": 220.78, "end": 221.54, "word": " the", "probability": 0.50244140625}, {"start": 221.54, "end": 221.82, "word": " idea", "probability": 0.8583984375}, {"start": 221.82, "end": 221.94, "word": " I", "probability": 0.51220703125}, {"start": 221.94, "end": 222.4, "word": " have", "probability": 0.92578125}, {"start": 222.4, "end": 222.7, "word": " here", "probability": 0.81494140625}, {"start": 222.7, "end": 222.98, "word": " is", "probability": 0.85986328125}, {"start": 222.98, "end": 223.14, "word": " as", "probability": 0.6123046875}, {"start": 223.14, "end": 223.44, "word": " follows", "probability": 0.8037109375}, {"start": 223.44, "end": 224.26, "word": " this", "probability": 0.3779296875}, {"start": 224.26, "end": 225.14, "word": " is", "probability": 0.8935546875}, {"start": 225.14, "end": 225.3, "word": " the", "probability": 0.5908203125}, {"start": 225.3, "end": 225.56, "word": " stock", "probability": 0.638671875}, {"start": 225.56, "end": 225.98, "word": " market", "probability": 0.9052734375}, {"start": 225.98, "end": 226.18, "word": " this", "probability": 0.63671875}, {"start": 226.18, "end": 226.22, "word": " is", "probability": 0.93994140625}, {"start": 226.22, "end": 226.3, "word": " the", "probability": 0.90185546875}, {"start": 226.3, "end": 226.44, "word": " main", "probability": 0.9296875}, {"start": 226.44, "end": 226.76, "word": " method", "probability": 0.953125}], "temperature": 1.0}, {"id": 10, "seek": 25073, "start": 227.61, "end": 250.73, "text": " and I have more than one process of selling and buying and opening companies like these two things, these are two things because all I do is that I did not implement these two things right now I created each command and gave the necessary information for implementation and then I went to the agent which actually contains a list in which I store the commands and I told him to add this command and this command because the agent is basically", "tokens": [293, 286, 362, 544, 813, 472, 1399, 295, 6511, 293, 6382, 293, 5193, 3431, 411, 613, 732, 721, 11, 613, 366, 732, 721, 570, 439, 286, 360, 307, 300, 286, 630, 406, 4445, 613, 732, 721, 558, 586, 286, 2942, 1184, 5622, 293, 2729, 264, 4818, 1589, 337, 11420, 293, 550, 286, 1437, 281, 264, 9461, 597, 767, 8306, 257, 1329, 294, 597, 286, 3531, 264, 16901, 293, 286, 1907, 796, 281, 909, 341, 5622, 293, 341, 5622, 570, 264, 9461, 307, 1936], "avg_logprob": -0.5435267771993365, "compression_ratio": 1.9344978165938864, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 227.61, "end": 227.89, "word": " and", "probability": 0.149658203125}, {"start": 227.89, "end": 228.21, "word": " I", "probability": 0.8779296875}, {"start": 228.21, "end": 228.23, "word": " have", "probability": 0.720703125}, {"start": 228.23, "end": 228.59, "word": " more", "probability": 0.69921875}, {"start": 228.59, "end": 228.75, "word": " than", "probability": 0.8291015625}, {"start": 228.75, "end": 228.85, "word": " one", "probability": 0.53759765625}, {"start": 228.85, "end": 229.13, "word": " process", "probability": 0.4013671875}, {"start": 229.13, "end": 229.49, "word": " of", "probability": 0.53759765625}, {"start": 229.49, "end": 229.73, "word": " selling", "probability": 0.296875}, {"start": 229.73, "end": 229.91, "word": " and", "probability": 0.5908203125}, {"start": 229.91, "end": 230.23, "word": " buying", "probability": 0.7841796875}, {"start": 230.23, "end": 230.55, "word": " and", "probability": 0.71630859375}, {"start": 230.55, "end": 230.75, "word": " opening", "probability": 0.56494140625}, {"start": 230.75, "end": 231.19, "word": " companies", "probability": 0.556640625}, {"start": 231.19, "end": 231.35, "word": " like", "probability": 0.55517578125}, {"start": 231.35, "end": 231.69, "word": " these", "probability": 0.6650390625}, {"start": 231.69, "end": 232.11, "word": " two", "probability": 0.603515625}, {"start": 232.11, "end": 232.11, "word": " things,", "probability": 0.278076171875}, {"start": 232.29, "end": 232.47, "word": " these", "probability": 0.314208984375}, {"start": 232.47, "end": 232.53, "word": " are", "probability": 0.66748046875}, {"start": 232.53, "end": 232.77, "word": " two", "probability": 0.7744140625}, {"start": 232.77, "end": 233.25, "word": " things", "probability": 0.62451171875}, {"start": 233.25, "end": 233.93, "word": " because", "probability": 0.25830078125}, {"start": 233.93, "end": 234.17, "word": " all", "probability": 0.416015625}, {"start": 234.17, "end": 234.31, "word": " I", "probability": 0.640625}, {"start": 234.31, "end": 234.59, "word": " do", "probability": 0.521484375}, {"start": 234.59, "end": 234.97, "word": " is", "probability": 0.75}, {"start": 234.97, "end": 235.07, "word": " that", "probability": 0.47509765625}, {"start": 235.07, "end": 235.93, "word": " I", "probability": 0.428466796875}, {"start": 235.93, "end": 236.81, "word": " did", "probability": 0.268798828125}, {"start": 236.81, "end": 236.81, "word": " not", "probability": 0.89208984375}, {"start": 236.81, "end": 237.15, "word": " implement", "probability": 0.413818359375}, {"start": 237.15, "end": 237.15, "word": " these", "probability": 0.7333984375}, {"start": 237.15, "end": 237.15, "word": " two", "probability": 0.912109375}, {"start": 237.15, "end": 237.15, "word": " things", "probability": 0.69482421875}, {"start": 237.15, "end": 237.49, "word": " right", "probability": 0.15625}, {"start": 237.49, "end": 237.75, "word": " now", "probability": 0.89111328125}, {"start": 237.75, "end": 237.93, "word": " I", "probability": 0.394287109375}, {"start": 237.93, "end": 238.19, "word": " created", "probability": 0.6240234375}, {"start": 238.19, "end": 238.39, "word": " each", "probability": 0.453369140625}, {"start": 238.39, "end": 238.59, "word": " command", "probability": 0.376708984375}, {"start": 238.59, "end": 238.69, "word": " and", "probability": 0.9013671875}, {"start": 238.69, "end": 238.93, "word": " gave", "probability": 0.6796875}, {"start": 238.93, "end": 239.07, "word": " the", "probability": 0.273681640625}, {"start": 239.07, "end": 239.11, "word": " necessary", "probability": 0.61962890625}, {"start": 239.11, "end": 239.43, "word": " information", "probability": 0.80859375}, {"start": 239.43, "end": 239.91, "word": " for", "probability": 0.5078125}, {"start": 239.91, "end": 240.33, "word": " implementation", "probability": 0.5712890625}, {"start": 240.33, "end": 241.37, "word": " and", "probability": 0.80615234375}, {"start": 241.37, "end": 241.61, "word": " then", "probability": 0.8349609375}, {"start": 241.61, "end": 241.67, "word": " I", "probability": 0.65966796875}, {"start": 241.67, "end": 241.93, "word": " went", "probability": 0.796875}, {"start": 241.93, "end": 242.11, "word": " to", "probability": 0.9560546875}, {"start": 242.11, "end": 242.39, "word": " the", "probability": 0.88720703125}, {"start": 242.39, "end": 242.75, "word": " agent", "probability": 0.8994140625}, {"start": 242.75, "end": 243.61, "word": " which", "probability": 0.5634765625}, {"start": 243.61, "end": 244.03, "word": " actually", "probability": 0.339599609375}, {"start": 244.03, "end": 244.47, "word": " contains", "probability": 0.6904296875}, {"start": 244.47, "end": 244.69, "word": " a", "probability": 0.82421875}, {"start": 244.69, "end": 244.93, "word": " list", "probability": 0.89501953125}, {"start": 244.93, "end": 245.07, "word": " in", "probability": 0.2147216796875}, {"start": 245.07, "end": 245.15, "word": " which", "probability": 0.94140625}, {"start": 245.15, "end": 245.15, "word": " I", "probability": 0.95556640625}, {"start": 245.15, "end": 245.41, "word": " store", "probability": 0.81787109375}, {"start": 245.41, "end": 245.67, "word": " the", "probability": 0.5146484375}, {"start": 245.67, "end": 246.13, "word": " commands", "probability": 0.85205078125}, {"start": 246.13, "end": 246.33, "word": " and", "probability": 0.69287109375}, {"start": 246.33, "end": 246.37, "word": " I", "probability": 0.476806640625}, {"start": 246.37, "end": 246.49, "word": " told", "probability": 0.64111328125}, {"start": 246.49, "end": 246.65, "word": " him", "probability": 0.8896484375}, {"start": 246.65, "end": 246.69, "word": " to", "probability": 0.67138671875}, {"start": 246.69, "end": 246.83, "word": " add", "probability": 0.91796875}, {"start": 246.83, "end": 246.99, "word": " this", "probability": 0.68212890625}, {"start": 246.99, "end": 247.35, "word": " command", "probability": 0.81689453125}, {"start": 247.35, "end": 247.71, "word": " and", "probability": 0.8330078125}, {"start": 247.71, "end": 247.83, "word": " this", "probability": 0.62890625}, {"start": 247.83, "end": 248.73, "word": " command", "probability": 0.8974609375}, {"start": 248.73, "end": 249.45, "word": " because", "probability": 0.68212890625}, {"start": 249.45, "end": 249.61, "word": " the", "probability": 0.51611328125}, {"start": 249.61, "end": 249.97, "word": " agent", "probability": 0.90771484375}, {"start": 249.97, "end": 250.25, "word": " is", "probability": 0.76025390625}, {"start": 250.25, "end": 250.73, "word": " basically", "probability": 0.193115234375}], "temperature": 1.0}, {"id": 11, "seek": 27539, "start": 251.87, "end": 275.39, "text": " class contains a list and its function is to store commands regardless of what type of command it will receive from the stock market and store it without knowing its details when it executes it passes to each stock command in the list of commands executes this will do different things depending on the type of command available if I make new commands", "tokens": [1508, 8306, 257, 1329, 293, 1080, 2445, 307, 281, 3531, 16901, 10060, 295, 437, 2010, 295, 5622, 309, 486, 4774, 490, 264, 4127, 2142, 293, 3531, 309, 1553, 5276, 1080, 4365, 562, 309, 4454, 1819, 309, 11335, 281, 1184, 4127, 5622, 294, 264, 1329, 295, 16901, 4454, 1819, 341, 486, 360, 819, 721, 5413, 322, 264, 2010, 295, 5622, 2435, 498, 286, 652, 777, 16901], "avg_logprob": -0.6051136553287506, "compression_ratio": 1.8051282051282052, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 251.87, "end": 252.31, "word": " class", "probability": 0.17822265625}, {"start": 252.31, "end": 252.69, "word": " contains", "probability": 0.197021484375}, {"start": 252.69, "end": 252.95, "word": " a", "probability": 0.56640625}, {"start": 252.95, "end": 253.27, "word": " list", "probability": 0.8720703125}, {"start": 253.27, "end": 253.83, "word": " and", "probability": 0.32861328125}, {"start": 253.83, "end": 253.83, "word": " its", "probability": 0.419189453125}, {"start": 253.83, "end": 254.11, "word": " function", "probability": 0.779296875}, {"start": 254.11, "end": 254.57, "word": " is", "probability": 0.88134765625}, {"start": 254.57, "end": 254.63, "word": " to", "probability": 0.40625}, {"start": 254.63, "end": 254.87, "word": " store", "probability": 0.8671875}, {"start": 254.87, "end": 255.41, "word": " commands", "probability": 0.58837890625}, {"start": 255.41, "end": 256.43, "word": " regardless", "probability": 0.373779296875}, {"start": 256.43, "end": 257.07, "word": " of", "probability": 0.8232421875}, {"start": 257.07, "end": 257.19, "word": " what", "probability": 0.436767578125}, {"start": 257.19, "end": 257.35, "word": " type", "probability": 0.359619140625}, {"start": 257.35, "end": 257.45, "word": " of", "probability": 0.9345703125}, {"start": 257.45, "end": 257.93, "word": " command", "probability": 0.73046875}, {"start": 257.93, "end": 258.19, "word": " it", "probability": 0.43798828125}, {"start": 258.19, "end": 258.37, "word": " will", "probability": 0.308349609375}, {"start": 258.37, "end": 258.75, "word": " receive", "probability": 0.21875}, {"start": 258.75, "end": 259.21, "word": " from", "probability": 0.405029296875}, {"start": 259.21, "end": 259.33, "word": " the", "probability": 0.4853515625}, {"start": 259.33, "end": 259.73, "word": " stock", "probability": 0.44970703125}, {"start": 259.73, "end": 260.17, "word": " market", "probability": 0.876953125}, {"start": 260.17, "end": 260.29, "word": " and", "probability": 0.587890625}, {"start": 260.29, "end": 260.55, "word": " store", "probability": 0.79443359375}, {"start": 260.55, "end": 260.69, "word": " it", "probability": 0.77392578125}, {"start": 260.69, "end": 260.89, "word": " without", "probability": 0.84228515625}, {"start": 260.89, "end": 261.47, "word": " knowing", "probability": 0.712890625}, {"start": 261.47, "end": 262.11, "word": " its", "probability": 0.382568359375}, {"start": 262.11, "end": 262.53, "word": " details", "probability": 0.74169921875}, {"start": 262.53, "end": 263.47, "word": " when", "probability": 0.724609375}, {"start": 263.47, "end": 263.63, "word": " it", "probability": 0.6513671875}, {"start": 263.63, "end": 264.09, "word": " executes", "probability": 0.68359375}, {"start": 264.09, "end": 264.77, "word": " it", "probability": 0.423583984375}, {"start": 264.77, "end": 265.07, "word": " passes", "probability": 0.311279296875}, {"start": 265.07, "end": 265.35, "word": " to", "probability": 0.6533203125}, {"start": 265.35, "end": 265.57, "word": " each", "probability": 0.380615234375}, {"start": 265.57, "end": 265.95, "word": " stock", "probability": 0.331787109375}, {"start": 265.95, "end": 266.61, "word": " command", "probability": 0.7099609375}, {"start": 266.61, "end": 266.95, "word": " in", "probability": 0.441650390625}, {"start": 266.95, "end": 267.23, "word": " the", "probability": 0.83544921875}, {"start": 267.23, "end": 267.39, "word": " list", "probability": 0.81005859375}, {"start": 267.39, "end": 267.49, "word": " of", "probability": 0.48681640625}, {"start": 267.49, "end": 267.87, "word": " commands", "probability": 0.87109375}, {"start": 267.87, "end": 269.51, "word": " executes", "probability": 0.59649658203125}, {"start": 269.51, "end": 270.09, "word": " this", "probability": 0.2462158203125}, {"start": 270.09, "end": 270.75, "word": " will", "probability": 0.3359375}, {"start": 270.75, "end": 270.99, "word": " do", "probability": 0.7666015625}, {"start": 270.99, "end": 272.23, "word": " different", "probability": 0.59765625}, {"start": 272.23, "end": 272.23, "word": " things", "probability": 0.82177734375}, {"start": 272.23, "end": 272.67, "word": " depending", "probability": 0.54931640625}, {"start": 272.67, "end": 272.85, "word": " on", "probability": 0.9462890625}, {"start": 272.85, "end": 273.05, "word": " the", "probability": 0.8125}, {"start": 273.05, "end": 273.05, "word": " type", "probability": 0.93115234375}, {"start": 273.05, "end": 273.75, "word": " of", "probability": 0.96142578125}, {"start": 273.75, "end": 274.07, "word": " command", "probability": 0.671875}, {"start": 274.07, "end": 274.41, "word": " available", "probability": 0.2447509765625}, {"start": 274.41, "end": 274.61, "word": " if", "probability": 0.33935546875}, {"start": 274.61, "end": 274.83, "word": " I", "probability": 0.8115234375}, {"start": 274.83, "end": 275.05, "word": " make", "probability": 0.3779296875}, {"start": 275.05, "end": 275.15, "word": " new", "probability": 0.65283203125}, {"start": 275.15, "end": 275.39, "word": " commands", "probability": 0.7138671875}], "temperature": 1.0}, {"id": 12, "seek": 30214, "start": 276.63, "end": 302.15, "text": "New operations in the stock market, I will not change anything in the stock agent All I need to do is class and encapsulate for this thing and call the method and all the information I need to implement this thing and then I create and implement it for the stock command interface and add it to the list and it works This is a summary of what we did in the last lecture, in this lecture we will do the following example", "tokens": [18278, 7705, 294, 264, 4127, 2142, 11, 286, 486, 406, 1319, 1340, 294, 264, 4127, 9461, 1057, 286, 643, 281, 360, 307, 1508, 293, 38745, 5256, 337, 341, 551, 293, 818, 264, 3170, 293, 439, 264, 1589, 286, 643, 281, 4445, 341, 551, 293, 550, 286, 1884, 293, 4445, 309, 337, 264, 4127, 5622, 9226, 293, 909, 309, 281, 264, 1329, 293, 309, 1985, 639, 307, 257, 12691, 295, 437, 321, 630, 294, 264, 1036, 7991, 11, 294, 341, 7991, 321, 486, 360, 264, 3480, 1365], "avg_logprob": -0.5089798699850323, "compression_ratio": 1.837719298245614, "no_speech_prob": 1.3709068298339844e-05, "words": [{"start": 276.63, "end": 276.87, "word": "New", "probability": 0.384033203125}, {"start": 276.87, "end": 277.25, "word": " operations", "probability": 0.373779296875}, {"start": 277.25, "end": 277.67, "word": " in", "probability": 0.65576171875}, {"start": 277.67, "end": 277.75, "word": " the", "probability": 0.7138671875}, {"start": 277.75, "end": 277.93, "word": " stock", "probability": 0.6318359375}, {"start": 277.93, "end": 278.07, "word": " market,", "probability": 0.382568359375}, {"start": 278.21, "end": 279.33, "word": " I", "probability": 0.343505859375}, {"start": 279.33, "end": 280.13, "word": " will", "probability": 0.38525390625}, {"start": 280.13, "end": 280.13, "word": " not", "probability": 0.8701171875}, {"start": 280.13, "end": 280.41, "word": " change", "probability": 0.8330078125}, {"start": 280.41, "end": 280.95, "word": " anything", "probability": 0.69775390625}, {"start": 280.95, "end": 281.63, "word": " in", "probability": 0.755859375}, {"start": 281.63, "end": 281.79, "word": " the", "probability": 0.7685546875}, {"start": 281.79, "end": 281.97, "word": " stock", "probability": 0.7392578125}, {"start": 281.97, "end": 282.27, "word": " agent", "probability": 0.80615234375}, {"start": 282.27, "end": 282.87, "word": " All", "probability": 0.2408447265625}, {"start": 282.87, "end": 282.99, "word": " I", "probability": 0.21240234375}, {"start": 282.99, "end": 283.27, "word": " need", "probability": 0.76904296875}, {"start": 283.27, "end": 283.41, "word": " to", "probability": 0.8505859375}, {"start": 283.41, "end": 283.55, "word": " do", "probability": 0.88916015625}, {"start": 283.55, "end": 283.73, "word": " is", "probability": 0.66455078125}, {"start": 283.73, "end": 283.97, "word": " class", "probability": 0.314208984375}, {"start": 283.97, "end": 284.17, "word": " and", "probability": 0.462890625}, {"start": 284.17, "end": 285.17, "word": " encapsulate", "probability": 0.8017578125}, {"start": 285.17, "end": 285.39, "word": " for", "probability": 0.288330078125}, {"start": 285.39, "end": 285.99, "word": " this", "probability": 0.7265625}, {"start": 285.99, "end": 285.99, "word": " thing", "probability": 0.2088623046875}, {"start": 285.99, "end": 286.23, "word": " and", "probability": 0.53125}, {"start": 286.23, "end": 286.51, "word": " call", "probability": 0.235595703125}, {"start": 286.51, "end": 286.77, "word": " the", "probability": 0.509765625}, {"start": 286.77, "end": 287.13, "word": " method", "probability": 0.94970703125}, {"start": 287.13, "end": 287.87, "word": " and", "probability": 0.473876953125}, {"start": 287.87, "end": 288.57, "word": " all", "probability": 0.82958984375}, {"start": 288.57, "end": 288.71, "word": " the", "probability": 0.62451171875}, {"start": 288.71, "end": 289.11, "word": " information", "probability": 0.5751953125}, {"start": 289.11, "end": 289.57, "word": " I", "probability": 0.2188720703125}, {"start": 289.57, "end": 289.83, "word": " need", "probability": 0.84521484375}, {"start": 289.83, "end": 289.97, "word": " to", "probability": 0.900390625}, {"start": 289.97, "end": 290.47, "word": " implement", "probability": 0.3935546875}, {"start": 290.47, "end": 290.91, "word": " this", "probability": 0.69677734375}, {"start": 290.91, "end": 291.15, "word": " thing", "probability": 0.8203125}, {"start": 291.15, "end": 292.27, "word": " and", "probability": 0.443115234375}, {"start": 292.27, "end": 292.55, "word": " then", "probability": 0.68505859375}, {"start": 292.55, "end": 292.75, "word": " I", "probability": 0.81005859375}, {"start": 292.75, "end": 293.23, "word": " create", "probability": 0.330078125}, {"start": 293.23, "end": 293.41, "word": " and", "probability": 0.611328125}, {"start": 293.41, "end": 294.03, "word": " implement", "probability": 0.869140625}, {"start": 294.03, "end": 294.23, "word": " it", "probability": 0.478271484375}, {"start": 294.23, "end": 294.35, "word": " for", "probability": 0.59814453125}, {"start": 294.35, "end": 294.41, "word": " the", "probability": 0.81787109375}, {"start": 294.41, "end": 295.09, "word": " stock", "probability": 0.495849609375}, {"start": 295.09, "end": 295.49, "word": " command", "probability": 0.82958984375}, {"start": 295.49, "end": 295.49, "word": " interface", "probability": 0.8427734375}, {"start": 295.49, "end": 295.63, "word": " and", "probability": 0.6455078125}, {"start": 295.63, "end": 295.81, "word": " add", "probability": 0.591796875}, {"start": 295.81, "end": 295.97, "word": " it", "probability": 0.875}, {"start": 295.97, "end": 296.05, "word": " to", "probability": 0.73388671875}, {"start": 296.05, "end": 296.09, "word": " the", "probability": 0.80810546875}, {"start": 296.09, "end": 296.27, "word": " list", "probability": 0.8955078125}, {"start": 296.27, "end": 296.35, "word": " and", "probability": 0.82666015625}, {"start": 296.35, "end": 296.45, "word": " it", "probability": 0.83740234375}, {"start": 296.45, "end": 297.17, "word": " works", "probability": 0.64697265625}, {"start": 297.17, "end": 297.51, "word": " This", "probability": 0.17431640625}, {"start": 297.51, "end": 298.57, "word": " is", "probability": 0.5185546875}, {"start": 298.57, "end": 298.59, "word": " a", "probability": 0.7958984375}, {"start": 298.59, "end": 298.77, "word": " summary", "probability": 0.80859375}, {"start": 298.77, "end": 298.97, "word": " of", "probability": 0.95263671875}, {"start": 298.97, "end": 299.15, "word": " what", "probability": 0.51953125}, {"start": 299.15, "end": 299.31, "word": " we", "probability": 0.87939453125}, {"start": 299.31, "end": 299.49, "word": " did", "probability": 0.70703125}, {"start": 299.49, "end": 299.65, "word": " in", "probability": 0.76220703125}, {"start": 299.65, "end": 299.71, "word": " the", "probability": 0.8505859375}, {"start": 299.71, "end": 300.25, "word": " last", "probability": 0.41259765625}, {"start": 300.25, "end": 300.25, "word": " lecture,", "probability": 0.87548828125}, {"start": 300.31, "end": 300.37, "word": " in", "probability": 0.55029296875}, {"start": 300.37, "end": 300.45, "word": " this", "probability": 0.9150390625}, {"start": 300.45, "end": 300.83, "word": " lecture", "probability": 0.94970703125}, {"start": 300.83, "end": 301.19, "word": " we", "probability": 0.75634765625}, {"start": 301.19, "end": 301.27, "word": " will", "probability": 0.755859375}, {"start": 301.27, "end": 301.51, "word": " do", "probability": 0.45361328125}, {"start": 301.51, "end": 301.61, "word": " the", "probability": 0.85986328125}, {"start": 301.61, "end": 301.61, "word": " following", "probability": 0.80078125}, {"start": 301.61, "end": 302.15, "word": " example", "probability": 0.96435546875}], "temperature": 1.0}, {"id": 13, "seek": 33109, "start": 303.09, "end": 331.09, "text": " let me show you what we are going to do and then we start to implement it because we want to make a program like this a normal drawing program okay? draw, hold the mouse and see what I'm doing, I'm drawing like this because the idea is that when I do undo you see what I'm doing? it goes back step by step okay? when I do redo it draws the drawing parts again", "tokens": [718, 385, 855, 291, 437, 321, 366, 516, 281, 360, 293, 550, 321, 722, 281, 4445, 309, 570, 321, 528, 281, 652, 257, 1461, 411, 341, 257, 2710, 6316, 1461, 1392, 30, 2642, 11, 1797, 264, 9719, 293, 536, 437, 286, 478, 884, 11, 286, 478, 6316, 411, 341, 570, 264, 1558, 307, 300, 562, 286, 360, 23779, 291, 536, 437, 286, 478, 884, 30, 309, 1709, 646, 1823, 538, 1823, 1392, 30, 562, 286, 360, 29956, 309, 20045, 264, 6316, 3166, 797], "avg_logprob": -0.5282738386165529, "compression_ratio": 1.8274111675126903, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 303.09, "end": 303.43, "word": " let", "probability": 0.2142333984375}, {"start": 303.43, "end": 303.55, "word": " me", "probability": 0.92578125}, {"start": 303.55, "end": 303.81, "word": " show", "probability": 0.9248046875}, {"start": 303.81, "end": 303.99, "word": " you", "probability": 0.9404296875}, {"start": 303.99, "end": 304.13, "word": " what", "probability": 0.77783203125}, {"start": 304.13, "end": 304.23, "word": " we", "probability": 0.73974609375}, {"start": 304.23, "end": 304.31, "word": " are", "probability": 0.34814453125}, {"start": 304.31, "end": 304.41, "word": " going", "probability": 0.85009765625}, {"start": 304.41, "end": 304.41, "word": " to", "probability": 0.97265625}, {"start": 304.41, "end": 304.65, "word": " do", "probability": 0.951171875}, {"start": 304.65, "end": 305.33, "word": " and", "probability": 0.412841796875}, {"start": 305.33, "end": 305.49, "word": " then", "probability": 0.658203125}, {"start": 305.49, "end": 305.67, "word": " we", "probability": 0.6708984375}, {"start": 305.67, "end": 306.03, "word": " start", "probability": 0.417724609375}, {"start": 306.03, "end": 306.39, "word": " to", "probability": 0.2220458984375}, {"start": 306.39, "end": 306.69, "word": " implement", "probability": 0.337890625}, {"start": 306.69, "end": 306.97, "word": " it", "probability": 0.56494140625}, {"start": 306.97, "end": 307.89, "word": " because", "probability": 0.6123046875}, {"start": 307.89, "end": 308.11, "word": " we", "probability": 0.8486328125}, {"start": 308.11, "end": 308.31, "word": " want", "probability": 0.58251953125}, {"start": 308.31, "end": 308.39, "word": " to", "probability": 0.96484375}, {"start": 308.39, "end": 308.51, "word": " make", "probability": 0.6845703125}, {"start": 308.51, "end": 308.97, "word": " a", "probability": 0.806640625}, {"start": 308.97, "end": 308.97, "word": " program", "probability": 0.58837890625}, {"start": 308.97, "end": 309.15, "word": " like", "probability": 0.52392578125}, {"start": 309.15, "end": 309.77, "word": " this", "probability": 0.9033203125}, {"start": 309.77, "end": 311.05, "word": " a", "probability": 0.501953125}, {"start": 311.05, "end": 311.23, "word": " normal", "probability": 0.36181640625}, {"start": 311.23, "end": 311.59, "word": " drawing", "probability": 0.7353515625}, {"start": 311.59, "end": 312.57, "word": " program", "probability": 0.833984375}, {"start": 312.57, "end": 313.53, "word": " okay?", "probability": 0.253173828125}, {"start": 313.81, "end": 314.05, "word": " draw,", "probability": 0.18994140625}, {"start": 314.15, "end": 314.51, "word": " hold", "probability": 0.57470703125}, {"start": 314.51, "end": 314.75, "word": " the", "probability": 0.426513671875}, {"start": 314.75, "end": 315.11, "word": " mouse", "probability": 0.94921875}, {"start": 315.11, "end": 315.75, "word": " and", "probability": 0.53173828125}, {"start": 315.75, "end": 316.27, "word": " see", "probability": 0.11810302734375}, {"start": 316.27, "end": 316.57, "word": " what", "probability": 0.86865234375}, {"start": 316.57, "end": 317.05, "word": " I'm", "probability": 0.5042724609375}, {"start": 317.05, "end": 317.31, "word": " doing,", "probability": 0.919921875}, {"start": 317.55, "end": 317.81, "word": " I'm", "probability": 0.41796875}, {"start": 317.81, "end": 318.03, "word": " drawing", "probability": 0.83642578125}, {"start": 318.03, "end": 318.57, "word": " like", "probability": 0.6259765625}, {"start": 318.57, "end": 319.13, "word": " this", "probability": 0.880859375}, {"start": 319.13, "end": 319.83, "word": " because", "probability": 0.8056640625}, {"start": 319.83, "end": 319.93, "word": " the", "probability": 0.4853515625}, {"start": 319.93, "end": 320.13, "word": " idea", "probability": 0.84912109375}, {"start": 320.13, "end": 320.27, "word": " is", "probability": 0.4736328125}, {"start": 320.27, "end": 320.39, "word": " that", "probability": 0.39013671875}, {"start": 320.39, "end": 320.43, "word": " when", "probability": 0.83154296875}, {"start": 320.43, "end": 320.53, "word": " I", "probability": 0.935546875}, {"start": 320.53, "end": 320.65, "word": " do", "probability": 0.3037109375}, {"start": 320.65, "end": 321.01, "word": " undo", "probability": 0.89208984375}, {"start": 321.01, "end": 322.09, "word": " you", "probability": 0.2437744140625}, {"start": 322.09, "end": 322.29, "word": " see", "probability": 0.88916015625}, {"start": 322.29, "end": 322.49, "word": " what", "probability": 0.91259765625}, {"start": 322.49, "end": 322.65, "word": " I'm", "probability": 0.731201171875}, {"start": 322.65, "end": 322.85, "word": " doing?", "probability": 0.9677734375}, {"start": 323.33, "end": 323.81, "word": " it", "probability": 0.5302734375}, {"start": 323.81, "end": 323.89, "word": " goes", "probability": 0.35693359375}, {"start": 323.89, "end": 324.13, "word": " back", "probability": 0.6689453125}, {"start": 324.13, "end": 324.33, "word": " step", "probability": 0.84521484375}, {"start": 324.33, "end": 324.51, "word": " by", "probability": 0.962890625}, {"start": 324.51, "end": 324.85, "word": " step", "probability": 0.91796875}, {"start": 324.85, "end": 326.05, "word": " okay?", "probability": 0.6064453125}, {"start": 326.17, "end": 326.35, "word": " when", "probability": 0.77099609375}, {"start": 326.35, "end": 326.49, "word": " I", "probability": 0.9716796875}, {"start": 326.49, "end": 326.61, "word": " do", "probability": 0.904296875}, {"start": 326.61, "end": 326.95, "word": " redo", "probability": 0.93701171875}, {"start": 326.95, "end": 329.39, "word": " it", "probability": 0.544921875}, {"start": 329.39, "end": 329.69, "word": " draws", "probability": 0.492919921875}, {"start": 329.69, "end": 331.09, "word": " the", "probability": 0.3349609375}, {"start": 331.09, "end": 331.09, "word": " drawing", "probability": 0.481201171875}, {"start": 331.09, "end": 331.09, "word": " parts", "probability": 0.5537109375}, {"start": 331.09, "end": 331.09, "word": " again", "probability": 0.853515625}], "temperature": 1.0}, {"id": 14, "seek": 36070, "start": 335.24, "end": 360.7, "text": "Okay, as an idea of how we can apply the idea of undo and redo by using the command pattern Okay, to make this program guys, I made a simple program, of course I started from scratch, I will show you how it looks like This program that I made is currently a white screen here and under it is the undo and redo button Of course, currently I am pulling the mouse", "tokens": [8297, 11, 382, 364, 1558, 295, 577, 321, 393, 3079, 264, 1558, 295, 23779, 293, 29956, 538, 1228, 264, 5622, 5102, 1033, 11, 281, 652, 341, 1461, 1074, 11, 286, 1027, 257, 2199, 1461, 11, 295, 1164, 286, 1409, 490, 8459, 11, 286, 486, 855, 291, 577, 309, 1542, 411, 639, 1461, 300, 286, 1027, 307, 4362, 257, 2418, 2568, 510, 293, 833, 309, 307, 264, 23779, 293, 29956, 2960, 2720, 1164, 11, 4362, 286, 669, 8407, 264, 9719], "avg_logprob": -0.5656249716877937, "compression_ratio": 1.7307692307692308, "no_speech_prob": 3.933906555175781e-06, "words": [{"start": 335.24, "end": 335.56, "word": "Okay,", "probability": 0.176025390625}, {"start": 335.66, "end": 336.04, "word": " as", "probability": 0.226806640625}, {"start": 336.04, "end": 336.22, "word": " an", "probability": 0.82861328125}, {"start": 336.22, "end": 336.4, "word": " idea", "probability": 0.8134765625}, {"start": 336.4, "end": 336.64, "word": " of", "probability": 0.32861328125}, {"start": 336.64, "end": 336.64, "word": " how", "probability": 0.78564453125}, {"start": 336.64, "end": 336.88, "word": " we", "probability": 0.58447265625}, {"start": 336.88, "end": 336.92, "word": " can", "probability": 0.363037109375}, {"start": 336.92, "end": 337.18, "word": " apply", "probability": 0.56201171875}, {"start": 337.18, "end": 337.3, "word": " the", "probability": 0.56005859375}, {"start": 337.3, "end": 337.52, "word": " idea", "probability": 0.77392578125}, {"start": 337.52, "end": 337.92, "word": " of", "probability": 0.92724609375}, {"start": 337.92, "end": 338.16, "word": " undo", "probability": 0.33056640625}, {"start": 338.16, "end": 338.34, "word": " and", "probability": 0.64990234375}, {"start": 338.34, "end": 338.54, "word": " redo", "probability": 0.912109375}, {"start": 338.54, "end": 338.72, "word": " by", "probability": 0.41064453125}, {"start": 338.72, "end": 339.1, "word": " using", "probability": 0.89892578125}, {"start": 339.1, "end": 339.92, "word": " the", "probability": 0.4658203125}, {"start": 339.92, "end": 340.22, "word": " command", "probability": 0.7861328125}, {"start": 340.22, "end": 340.56, "word": " pattern", "probability": 0.1800537109375}, {"start": 340.56, "end": 341.48, "word": " Okay,", "probability": 0.426513671875}, {"start": 341.62, "end": 341.92, "word": " to", "probability": 0.322998046875}, {"start": 341.92, "end": 342.54, "word": " make", "probability": 0.6904296875}, {"start": 342.54, "end": 342.72, "word": " this", "probability": 0.8974609375}, {"start": 342.72, "end": 343.08, "word": " program", "probability": 0.61767578125}, {"start": 343.08, "end": 344.04, "word": " guys,", "probability": 0.312744140625}, {"start": 344.1, "end": 344.68, "word": " I", "probability": 0.95849609375}, {"start": 344.68, "end": 345.26, "word": " made", "probability": 0.68798828125}, {"start": 345.26, "end": 345.58, "word": " a", "probability": 0.94287109375}, {"start": 345.58, "end": 346.28, "word": " simple", "probability": 0.88916015625}, {"start": 346.28, "end": 346.28, "word": " program,", "probability": 0.8369140625}, {"start": 346.62, "end": 346.72, "word": " of", "probability": 0.4912109375}, {"start": 346.72, "end": 346.8, "word": " course", "probability": 0.94873046875}, {"start": 346.8, "end": 347.02, "word": " I", "probability": 0.326171875}, {"start": 347.02, "end": 347.28, "word": " started", "probability": 0.211669921875}, {"start": 347.28, "end": 347.58, "word": " from", "probability": 0.65869140625}, {"start": 347.58, "end": 347.94, "word": " scratch,", "probability": 0.505859375}, {"start": 348.5, "end": 348.6, "word": " I", "probability": 0.413818359375}, {"start": 348.6, "end": 348.68, "word": " will", "probability": 0.462890625}, {"start": 348.68, "end": 348.92, "word": " show", "probability": 0.93359375}, {"start": 348.92, "end": 349.06, "word": " you", "probability": 0.8818359375}, {"start": 349.06, "end": 349.2, "word": " how", "probability": 0.76904296875}, {"start": 349.2, "end": 349.6, "word": " it", "probability": 0.83837890625}, {"start": 349.6, "end": 349.6, "word": " looks", "probability": 0.82080078125}, {"start": 349.6, "end": 349.92, "word": " like", "probability": 0.4677734375}, {"start": 349.92, "end": 350.22, "word": " This", "probability": 0.34912109375}, {"start": 350.22, "end": 350.64, "word": " program", "probability": 0.66455078125}, {"start": 350.64, "end": 350.78, "word": " that", "probability": 0.5498046875}, {"start": 350.78, "end": 350.92, "word": " I", "probability": 0.98779296875}, {"start": 350.92, "end": 351.2, "word": " made", "probability": 0.76513671875}, {"start": 351.2, "end": 351.46, "word": " is", "probability": 0.7236328125}, {"start": 351.46, "end": 352.22, "word": " currently", "probability": 0.619140625}, {"start": 352.22, "end": 354.66, "word": " a", "probability": 0.38037109375}, {"start": 354.66, "end": 354.7, "word": " white", "probability": 0.798828125}, {"start": 354.7, "end": 355.96, "word": " screen", "probability": 0.83935546875}, {"start": 355.96, "end": 356.26, "word": " here", "probability": 0.361083984375}, {"start": 356.26, "end": 356.42, "word": " and", "probability": 0.61474609375}, {"start": 356.42, "end": 356.54, "word": " under", "probability": 0.33203125}, {"start": 356.54, "end": 356.72, "word": " it", "probability": 0.83642578125}, {"start": 356.72, "end": 356.76, "word": " is", "probability": 0.4189453125}, {"start": 356.76, "end": 356.98, "word": " the", "probability": 0.5615234375}, {"start": 356.98, "end": 357.14, "word": " undo", "probability": 0.415771484375}, {"start": 357.14, "end": 357.4, "word": " and", "probability": 0.77001953125}, {"start": 357.4, "end": 357.52, "word": " redo", "probability": 0.85205078125}, {"start": 357.52, "end": 357.56, "word": " button", "probability": 0.8427734375}, {"start": 357.56, "end": 358.66, "word": " Of", "probability": 0.454833984375}, {"start": 358.66, "end": 358.76, "word": " course,", "probability": 0.9609375}, {"start": 358.9, "end": 359.3, "word": " currently", "probability": 0.260986328125}, {"start": 359.3, "end": 359.92, "word": " I", "probability": 0.765625}, {"start": 359.92, "end": 359.92, "word": " am", "probability": 0.63818359375}, {"start": 359.92, "end": 360.12, "word": " pulling", "probability": 0.353759765625}, {"start": 360.12, "end": 360.36, "word": " the", "probability": 0.59814453125}, {"start": 360.36, "end": 360.7, "word": " mouse", "probability": 0.95849609375}], "temperature": 1.0}, {"id": 15, "seek": 38762, "start": 361.7, "end": 387.62, "text": "There is nothing because we haven't started the drawing process yet. We want to see how to do the drawing process to do the underwriting process afterwards. Now, in short, in order to do the underwriting process, I have to do the following. The drawing process, guys, what I want to do next is that when I draw, okay? I want him to divide my drawing into parts.", "tokens": [9077, 307, 1825, 570, 321, 2378, 380, 1409, 264, 6316, 1399, 1939, 13, 492, 528, 281, 536, 577, 281, 360, 264, 6316, 1399, 281, 360, 264, 833, 86, 3210, 278, 1399, 10543, 13, 823, 11, 294, 2099, 11, 294, 1668, 281, 360, 264, 833, 19868, 1399, 11, 286, 362, 281, 360, 264, 3480, 13, 440, 6316, 1399, 11, 1074, 11, 437, 286, 528, 281, 360, 958, 307, 300, 562, 286, 2642, 11, 1392, 30, 286, 528, 796, 281, 9845, 452, 6316, 666, 3166, 13], "avg_logprob": -0.5003676526686724, "compression_ratio": 1.8608247422680413, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 361.7, "end": 361.96, "word": "There", "probability": 0.190185546875}, {"start": 361.96, "end": 362.02, "word": " is", "probability": 0.54833984375}, {"start": 362.02, "end": 362.26, "word": " nothing", "probability": 0.787109375}, {"start": 362.26, "end": 362.48, "word": " because", "probability": 0.5703125}, {"start": 362.48, "end": 363.46, "word": " we", "probability": 0.427490234375}, {"start": 363.46, "end": 363.62, "word": " haven't", "probability": 0.6466064453125}, {"start": 363.62, "end": 363.94, "word": " started", "probability": 0.279541015625}, {"start": 363.94, "end": 364.1, "word": " the", "probability": 0.354736328125}, {"start": 364.1, "end": 364.6, "word": " drawing", "probability": 0.611328125}, {"start": 364.6, "end": 364.6, "word": " process", "probability": 0.8779296875}, {"start": 364.6, "end": 364.9, "word": " yet.", "probability": 0.61572265625}, {"start": 365.1, "end": 365.28, "word": " We", "probability": 0.75390625}, {"start": 365.28, "end": 365.42, "word": " want", "probability": 0.3681640625}, {"start": 365.42, "end": 365.48, "word": " to", "probability": 0.97119140625}, {"start": 365.48, "end": 365.6, "word": " see", "probability": 0.79833984375}, {"start": 365.6, "end": 365.8, "word": " how", "probability": 0.9267578125}, {"start": 365.8, "end": 366.04, "word": " to", "probability": 0.52490234375}, {"start": 366.04, "end": 366.04, "word": " do", "probability": 0.34228515625}, {"start": 366.04, "end": 366.42, "word": " the", "probability": 0.73828125}, {"start": 366.42, "end": 366.64, "word": " drawing", "probability": 0.7548828125}, {"start": 366.64, "end": 366.64, "word": " process", "probability": 0.90185546875}, {"start": 366.64, "end": 366.94, "word": " to", "probability": 0.267822265625}, {"start": 366.94, "end": 367.34, "word": " do", "probability": 0.619140625}, {"start": 367.34, "end": 368.62, "word": " the", "probability": 0.7666015625}, {"start": 368.62, "end": 369.34, "word": " underwriting", "probability": 0.5654296875}, {"start": 369.34, "end": 369.38, "word": " process", "probability": 0.71533203125}, {"start": 369.38, "end": 369.38, "word": " afterwards.", "probability": 0.232666015625}, {"start": 369.64, "end": 370.04, "word": " Now,", "probability": 0.5927734375}, {"start": 370.36, "end": 370.42, "word": " in", "probability": 0.5166015625}, {"start": 370.42, "end": 370.74, "word": " short,", "probability": 0.30712890625}, {"start": 370.92, "end": 371.78, "word": " in", "probability": 0.61962890625}, {"start": 371.78, "end": 371.86, "word": " order", "probability": 0.9111328125}, {"start": 371.86, "end": 372.02, "word": " to", "probability": 0.85986328125}, {"start": 372.02, "end": 372.44, "word": " do", "probability": 0.60986328125}, {"start": 372.44, "end": 372.92, "word": " the", "probability": 0.87353515625}, {"start": 372.92, "end": 373.4, "word": " underwriting", "probability": 0.7587890625}, {"start": 373.4, "end": 373.48, "word": " process,", "probability": 0.908203125}, {"start": 373.64, "end": 373.74, "word": " I", "probability": 0.81103515625}, {"start": 373.74, "end": 373.86, "word": " have", "probability": 0.369140625}, {"start": 373.86, "end": 373.96, "word": " to", "probability": 0.97021484375}, {"start": 373.96, "end": 374.1, "word": " do", "probability": 0.93115234375}, {"start": 374.1, "end": 374.3, "word": " the", "probability": 0.78662109375}, {"start": 374.3, "end": 374.48, "word": " following.", "probability": 0.88427734375}, {"start": 374.6, "end": 374.76, "word": " The", "probability": 0.720703125}, {"start": 374.76, "end": 374.82, "word": " drawing", "probability": 0.583984375}, {"start": 374.82, "end": 375.28, "word": " process,", "probability": 0.9306640625}, {"start": 375.42, "end": 375.68, "word": " guys,", "probability": 0.67431640625}, {"start": 376.72, "end": 376.9, "word": " what", "probability": 0.309814453125}, {"start": 376.9, "end": 376.96, "word": " I", "probability": 0.82275390625}, {"start": 376.96, "end": 377.06, "word": " want", "probability": 0.51806640625}, {"start": 377.06, "end": 377.12, "word": " to", "probability": 0.9638671875}, {"start": 377.12, "end": 377.3, "word": " do", "probability": 0.9560546875}, {"start": 377.3, "end": 377.7, "word": " next", "probability": 0.472900390625}, {"start": 377.7, "end": 378.74, "word": " is", "probability": 0.6982421875}, {"start": 378.74, "end": 378.8, "word": " that", "probability": 0.5986328125}, {"start": 378.8, "end": 379.0, "word": " when", "probability": 0.347412109375}, {"start": 379.0, "end": 379.64, "word": " I", "probability": 0.990234375}, {"start": 379.64, "end": 380.0, "word": " draw,", "probability": 0.76416015625}, {"start": 382.8, "end": 382.98, "word": " okay?", "probability": 0.47998046875}, {"start": 383.28, "end": 383.44, "word": " I", "probability": 0.9697265625}, {"start": 383.44, "end": 383.6, "word": " want", "probability": 0.78466796875}, {"start": 383.6, "end": 384.02, "word": " him", "probability": 0.289794921875}, {"start": 384.02, "end": 384.18, "word": " to", "probability": 0.93115234375}, {"start": 384.18, "end": 384.44, "word": " divide", "probability": 0.8173828125}, {"start": 384.44, "end": 384.62, "word": " my", "probability": 0.8642578125}, {"start": 384.62, "end": 384.9, "word": " drawing", "probability": 0.8828125}, {"start": 384.9, "end": 387.32, "word": " into", "probability": 0.78173828125}, {"start": 387.32, "end": 387.62, "word": " parts.", "probability": 0.8330078125}], "temperature": 1.0}, {"id": 16, "seek": 41805, "start": 389.95, "end": 418.05, "text": "It means this shape at the end of the drawing on the basis that each part of this will be stored as a command Each part will be stored as a command separated from the other In the end, I will have a set of commands with the number of parts of the drawing The advantage here is that each part of these commands I can go back and implement it or go back and implement it again", "tokens": [3522, 1355, 341, 3909, 412, 264, 917, 295, 264, 6316, 322, 264, 5143, 300, 1184, 644, 295, 341, 486, 312, 12187, 382, 257, 5622, 6947, 644, 486, 312, 12187, 382, 257, 5622, 12005, 490, 264, 661, 682, 264, 917, 11, 286, 486, 362, 257, 992, 295, 800, 282, 16063, 365, 264, 1230, 295, 3166, 295, 264, 6316, 440, 5002, 510, 307, 300, 1184, 644, 295, 613, 16901, 286, 393, 352, 646, 293, 4445, 309, 420, 352, 646, 293, 4445, 309, 797], "avg_logprob": -0.4054877986995185, "compression_ratio": 2.0216216216216214, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 389.95, "end": 390.43, "word": "It", "probability": 0.171630859375}, {"start": 390.43, "end": 390.61, "word": " means", "probability": 0.58984375}, {"start": 390.61, "end": 390.79, "word": " this", "probability": 0.34619140625}, {"start": 390.79, "end": 391.03, "word": " shape", "probability": 0.79248046875}, {"start": 391.03, "end": 391.29, "word": " at", "probability": 0.35693359375}, {"start": 391.29, "end": 391.31, "word": " the", "probability": 0.92041015625}, {"start": 391.31, "end": 391.47, "word": " end", "probability": 0.8896484375}, {"start": 391.47, "end": 391.57, "word": " of", "probability": 0.94384765625}, {"start": 391.57, "end": 391.61, "word": " the", "probability": 0.6025390625}, {"start": 391.61, "end": 391.89, "word": " drawing", "probability": 0.74462890625}, {"start": 391.89, "end": 392.65, "word": " on", "probability": 0.14404296875}, {"start": 392.65, "end": 392.77, "word": " the", "probability": 0.85205078125}, {"start": 392.77, "end": 392.95, "word": " basis", "probability": 0.8134765625}, {"start": 392.95, "end": 393.17, "word": " that", "probability": 0.87646484375}, {"start": 393.17, "end": 393.59, "word": " each", "probability": 0.6416015625}, {"start": 393.59, "end": 394.13, "word": " part", "probability": 0.78564453125}, {"start": 394.13, "end": 394.31, "word": " of", "probability": 0.83740234375}, {"start": 394.31, "end": 394.65, "word": " this", "probability": 0.5498046875}, {"start": 394.65, "end": 395.97, "word": " will", "probability": 0.5634765625}, {"start": 395.97, "end": 396.13, "word": " be", "probability": 0.7783203125}, {"start": 396.13, "end": 396.33, "word": " stored", "probability": 0.76513671875}, {"start": 396.33, "end": 396.53, "word": " as", "probability": 0.93408203125}, {"start": 396.53, "end": 396.67, "word": " a", "probability": 0.72021484375}, {"start": 396.67, "end": 396.97, "word": " command", "probability": 0.853515625}, {"start": 396.97, "end": 400.81, "word": " Each", "probability": 0.2646484375}, {"start": 400.81, "end": 401.23, "word": " part", "probability": 0.8837890625}, {"start": 401.23, "end": 401.45, "word": " will", "probability": 0.783203125}, {"start": 401.45, "end": 401.55, "word": " be", "probability": 0.94140625}, {"start": 401.55, "end": 401.81, "word": " stored", "probability": 0.81396484375}, {"start": 401.81, "end": 402.05, "word": " as", "probability": 0.93408203125}, {"start": 402.05, "end": 402.15, "word": " a", "probability": 0.7412109375}, {"start": 402.15, "end": 402.41, "word": " command", "probability": 0.6494140625}, {"start": 402.41, "end": 403.35, "word": " separated", "probability": 0.385009765625}, {"start": 403.35, "end": 403.57, "word": " from", "probability": 0.89453125}, {"start": 403.57, "end": 403.73, "word": " the", "probability": 0.79833984375}, {"start": 403.73, "end": 403.91, "word": " other", "probability": 0.72412109375}, {"start": 403.91, "end": 405.07, "word": " In", "probability": 0.39453125}, {"start": 405.07, "end": 405.25, "word": " the", "probability": 0.794921875}, {"start": 405.25, "end": 405.43, "word": " end,", "probability": 0.923828125}, {"start": 405.61, "end": 405.61, "word": " I", "probability": 0.89208984375}, {"start": 405.61, "end": 405.63, "word": " will", "probability": 0.7451171875}, {"start": 405.63, "end": 406.01, "word": " have", "probability": 0.9375}, {"start": 406.01, "end": 406.11, "word": " a", "probability": 0.96728515625}, {"start": 406.11, "end": 406.49, "word": " set", "probability": 0.61083984375}, {"start": 406.49, "end": 406.65, "word": " of", "probability": 0.9736328125}, {"start": 406.65, "end": 406.97, "word": " commands", "probability": 0.695068359375}, {"start": 406.97, "end": 407.09, "word": " with", "probability": 0.583984375}, {"start": 407.09, "end": 407.19, "word": " the", "probability": 0.78466796875}, {"start": 407.19, "end": 407.33, "word": " number", "probability": 0.88525390625}, {"start": 407.33, "end": 408.41, "word": " of", "probability": 0.966796875}, {"start": 408.41, "end": 408.73, "word": " parts", "probability": 0.7470703125}, {"start": 408.73, "end": 408.99, "word": " of", "probability": 0.92236328125}, {"start": 408.99, "end": 409.13, "word": " the", "probability": 0.88134765625}, {"start": 409.13, "end": 409.41, "word": " drawing", "probability": 0.876953125}, {"start": 409.41, "end": 410.29, "word": " The", "probability": 0.7021484375}, {"start": 410.29, "end": 410.55, "word": " advantage", "probability": 0.6064453125}, {"start": 410.55, "end": 410.81, "word": " here", "probability": 0.765625}, {"start": 410.81, "end": 411.03, "word": " is", "probability": 0.90673828125}, {"start": 411.03, "end": 411.15, "word": " that", "probability": 0.9384765625}, {"start": 411.15, "end": 411.85, "word": " each", "probability": 0.60986328125}, {"start": 411.85, "end": 412.15, "word": " part", "probability": 0.83837890625}, {"start": 412.15, "end": 412.29, "word": " of", "probability": 0.8974609375}, {"start": 412.29, "end": 412.61, "word": " these", "probability": 0.533203125}, {"start": 412.61, "end": 412.69, "word": " commands", "probability": 0.6103515625}, {"start": 412.69, "end": 413.01, "word": " I", "probability": 0.4560546875}, {"start": 413.01, "end": 413.31, "word": " can", "probability": 0.83642578125}, {"start": 413.31, "end": 414.05, "word": " go", "probability": 0.09503173828125}, {"start": 414.05, "end": 414.31, "word": " back", "probability": 0.84423828125}, {"start": 414.31, "end": 414.53, "word": " and", "probability": 0.58349609375}, {"start": 414.53, "end": 414.89, "word": " implement", "probability": 0.42529296875}, {"start": 414.89, "end": 415.17, "word": " it", "probability": 0.453369140625}, {"start": 415.17, "end": 415.89, "word": " or", "probability": 0.61865234375}, {"start": 415.89, "end": 416.17, "word": " go", "probability": 0.380859375}, {"start": 416.17, "end": 416.33, "word": " back", "probability": 0.82958984375}, {"start": 416.33, "end": 417.39, "word": " and", "probability": 0.8740234375}, {"start": 417.39, "end": 417.69, "word": " implement", "probability": 0.4892578125}, {"start": 417.69, "end": 417.85, "word": " it", "probability": 0.857421875}, {"start": 417.85, "end": 418.05, "word": " again", "probability": 0.9521484375}], "temperature": 1.0}, {"id": 17, "seek": 43317, "start": 419.09, "end": 433.17, "text": "So in order to do this thing with a small trick, let's see how to do it. First of all, how do we divide the drawing into parts and store each part separately? Because what I really want to do is the following", "tokens": [6455, 294, 1668, 281, 360, 341, 551, 365, 257, 1359, 4282, 11, 718, 311, 536, 577, 281, 360, 309, 13, 2386, 295, 439, 11, 577, 360, 321, 9845, 264, 6316, 666, 3166, 293, 3531, 1184, 644, 14759, 30, 1436, 437, 286, 534, 528, 281, 360, 307, 264, 3480], "avg_logprob": -0.5022321428571429, "compression_ratio": 1.4149659863945578, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 419.09, "end": 419.43, "word": "So", "probability": 0.50048828125}, {"start": 419.43, "end": 419.61, "word": " in", "probability": 0.1673583984375}, {"start": 419.61, "end": 419.63, "word": " order", "probability": 0.931640625}, {"start": 419.63, "end": 419.77, "word": " to", "probability": 0.93115234375}, {"start": 419.77, "end": 419.97, "word": " do", "probability": 0.630859375}, {"start": 419.97, "end": 420.09, "word": " this", "probability": 0.8193359375}, {"start": 420.09, "end": 420.39, "word": " thing", "probability": 0.2401123046875}, {"start": 420.39, "end": 422.23, "word": " with", "probability": 0.1888427734375}, {"start": 422.23, "end": 423.19, "word": " a", "probability": 0.75}, {"start": 423.19, "end": 423.19, "word": " small", "probability": 0.415283203125}, {"start": 423.19, "end": 423.47, "word": " trick,", "probability": 0.91357421875}, {"start": 423.91, "end": 424.19, "word": " let's", "probability": 0.83740234375}, {"start": 424.19, "end": 424.35, "word": " see", "probability": 0.81689453125}, {"start": 424.35, "end": 424.51, "word": " how", "probability": 0.90771484375}, {"start": 424.51, "end": 424.65, "word": " to", "probability": 0.381591796875}, {"start": 424.65, "end": 424.85, "word": " do", "probability": 0.83740234375}, {"start": 424.85, "end": 424.99, "word": " it.", "probability": 0.89013671875}, {"start": 425.01, "end": 425.25, "word": " First", "probability": 0.552734375}, {"start": 425.25, "end": 425.53, "word": " of", "probability": 0.23193359375}, {"start": 425.53, "end": 425.53, "word": " all,", "probability": 0.94189453125}, {"start": 425.61, "end": 425.77, "word": " how", "probability": 0.814453125}, {"start": 425.77, "end": 425.99, "word": " do", "probability": 0.3330078125}, {"start": 425.99, "end": 426.03, "word": " we", "probability": 0.87744140625}, {"start": 426.03, "end": 426.07, "word": " divide", "probability": 0.8095703125}, {"start": 426.07, "end": 426.07, "word": " the", "probability": 0.478515625}, {"start": 426.07, "end": 426.39, "word": " drawing", "probability": 0.779296875}, {"start": 426.39, "end": 427.69, "word": " into", "probability": 0.73486328125}, {"start": 427.69, "end": 427.97, "word": " parts", "probability": 0.80078125}, {"start": 427.97, "end": 428.19, "word": " and", "probability": 0.763671875}, {"start": 428.19, "end": 428.19, "word": " store", "probability": 0.533203125}, {"start": 428.19, "end": 428.33, "word": " each", "probability": 0.84033203125}, {"start": 428.33, "end": 428.59, "word": " part", "probability": 0.83837890625}, {"start": 428.59, "end": 429.93, "word": " separately?", "probability": 0.377685546875}, {"start": 430.83, "end": 431.13, "word": " Because", "probability": 0.76025390625}, {"start": 431.13, "end": 431.37, "word": " what", "probability": 0.46435546875}, {"start": 431.37, "end": 431.37, "word": " I", "probability": 0.95947265625}, {"start": 431.37, "end": 431.57, "word": " really", "probability": 0.50146484375}, {"start": 431.57, "end": 432.53, "word": " want", "probability": 0.7822265625}, {"start": 432.53, "end": 432.63, "word": " to", "probability": 0.95361328125}, {"start": 432.63, "end": 432.83, "word": " do", "probability": 0.95849609375}, {"start": 432.83, "end": 432.95, "word": " is", "probability": 0.494384765625}, {"start": 432.95, "end": 433.09, "word": " the", "probability": 0.4228515625}, {"start": 433.09, "end": 433.17, "word": " following", "probability": 0.82373046875}], "temperature": 1.0}, {"id": 18, "seek": 46176, "start": 434.04, "end": 461.76, "text": "I want as soon as I press the mouse, which is how I actually draw, I put down the pen and then I pull it, right? With the mouse, as soon as I press with the mouse, not click, click means that I press and leave, right? This is click, press means that I press and stay pressed. As soon as I press, I want to keep this starting point, this is the start point", "tokens": [40, 528, 382, 2321, 382, 286, 1886, 264, 9719, 11, 597, 307, 577, 286, 767, 2642, 11, 286, 829, 760, 264, 3435, 293, 550, 286, 2235, 309, 11, 558, 30, 2022, 264, 9719, 11, 382, 2321, 382, 286, 1886, 365, 264, 9719, 11, 406, 2052, 11, 2052, 1355, 300, 286, 1886, 293, 1856, 11, 558, 30, 639, 307, 2052, 11, 1886, 1355, 300, 286, 1886, 293, 1754, 17355, 13, 1018, 2321, 382, 286, 1886, 11, 286, 528, 281, 1066, 341, 2891, 935, 11, 341, 307, 264, 722, 935], "avg_logprob": -0.4290730444233069, "compression_ratio": 1.9505494505494505, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 434.04, "end": 434.26, "word": "I", "probability": 0.446533203125}, {"start": 434.26, "end": 434.36, "word": " want", "probability": 0.48779296875}, {"start": 434.36, "end": 434.56, "word": " as", "probability": 0.1119384765625}, {"start": 434.56, "end": 434.66, "word": " soon", "probability": 0.9521484375}, {"start": 434.66, "end": 434.7, "word": " as", "probability": 0.97216796875}, {"start": 434.7, "end": 434.86, "word": " I", "probability": 0.919921875}, {"start": 434.86, "end": 435.02, "word": " press", "probability": 0.5068359375}, {"start": 435.02, "end": 435.24, "word": " the", "probability": 0.580078125}, {"start": 435.24, "end": 435.58, "word": " mouse,", "probability": 0.94775390625}, {"start": 436.24, "end": 436.38, "word": " which", "probability": 0.54296875}, {"start": 436.38, "end": 436.44, "word": " is", "probability": 0.646484375}, {"start": 436.44, "end": 436.72, "word": " how", "probability": 0.3798828125}, {"start": 436.72, "end": 437.46, "word": " I", "probability": 0.92578125}, {"start": 437.46, "end": 437.62, "word": " actually", "probability": 0.4775390625}, {"start": 437.62, "end": 437.76, "word": " draw,", "probability": 0.8876953125}, {"start": 438.4, "end": 438.56, "word": " I", "probability": 0.80712890625}, {"start": 438.56, "end": 438.82, "word": " put", "probability": 0.54150390625}, {"start": 438.82, "end": 439.58, "word": " down", "probability": 0.1678466796875}, {"start": 439.58, "end": 439.88, "word": " the", "probability": 0.73095703125}, {"start": 439.88, "end": 440.12, "word": " pen", "probability": 0.91796875}, {"start": 440.12, "end": 441.04, "word": " and", "probability": 0.53125}, {"start": 441.04, "end": 441.18, "word": " then", "probability": 0.75341796875}, {"start": 441.18, "end": 441.3, "word": " I", "probability": 0.54345703125}, {"start": 441.3, "end": 441.48, "word": " pull", "probability": 0.285400390625}, {"start": 441.48, "end": 442.22, "word": " it,", "probability": 0.54638671875}, {"start": 442.24, "end": 442.52, "word": " right?", "probability": 0.8134765625}, {"start": 442.86, "end": 443.34, "word": " With", "probability": 0.6318359375}, {"start": 443.34, "end": 443.46, "word": " the", "probability": 0.84130859375}, {"start": 443.46, "end": 443.8, "word": " mouse,", "probability": 0.935546875}, {"start": 444.18, "end": 444.42, "word": " as", "probability": 0.82177734375}, {"start": 444.42, "end": 444.56, "word": " soon", "probability": 0.96044921875}, {"start": 444.56, "end": 444.6, "word": " as", "probability": 0.97216796875}, {"start": 444.6, "end": 444.76, "word": " I", "probability": 0.99072265625}, {"start": 444.76, "end": 445.28, "word": " press", "probability": 0.7685546875}, {"start": 445.28, "end": 445.5, "word": " with", "probability": 0.455078125}, {"start": 445.5, "end": 445.6, "word": " the", "probability": 0.8681640625}, {"start": 445.6, "end": 445.9, "word": " mouse,", "probability": 0.9453125}, {"start": 446.16, "end": 446.34, "word": " not", "probability": 0.67822265625}, {"start": 446.34, "end": 446.64, "word": " click,", "probability": 0.76123046875}, {"start": 446.74, "end": 446.98, "word": " click", "probability": 0.85009765625}, {"start": 446.98, "end": 447.3, "word": " means", "probability": 0.95458984375}, {"start": 447.3, "end": 447.66, "word": " that", "probability": 0.61279296875}, {"start": 447.66, "end": 447.82, "word": " I", "probability": 0.98974609375}, {"start": 447.82, "end": 448.0, "word": " press", "probability": 0.74755859375}, {"start": 448.0, "end": 448.16, "word": " and", "probability": 0.927734375}, {"start": 448.16, "end": 448.36, "word": " leave,", "probability": 0.3740234375}, {"start": 449.24, "end": 449.48, "word": " right?", "probability": 0.8935546875}, {"start": 450.08, "end": 450.28, "word": " This", "probability": 0.399658203125}, {"start": 450.28, "end": 450.34, "word": " is", "probability": 0.69970703125}, {"start": 450.34, "end": 450.54, "word": " click,", "probability": 0.7890625}, {"start": 450.8, "end": 451.18, "word": " press", "probability": 0.7548828125}, {"start": 451.18, "end": 451.9, "word": " means", "probability": 0.93359375}, {"start": 451.9, "end": 452.12, "word": " that", "probability": 0.85009765625}, {"start": 452.12, "end": 452.28, "word": " I", "probability": 0.9892578125}, {"start": 452.28, "end": 452.56, "word": " press", "probability": 0.68359375}, {"start": 452.56, "end": 452.7, "word": " and", "probability": 0.919921875}, {"start": 452.7, "end": 453.02, "word": " stay", "probability": 0.1151123046875}, {"start": 453.02, "end": 453.9, "word": " pressed.", "probability": 0.52978515625}, {"start": 454.18, "end": 454.54, "word": " As", "probability": 0.857421875}, {"start": 454.54, "end": 454.64, "word": " soon", "probability": 0.95556640625}, {"start": 454.64, "end": 454.68, "word": " as", "probability": 0.97119140625}, {"start": 454.68, "end": 454.84, "word": " I", "probability": 0.9892578125}, {"start": 454.84, "end": 455.34, "word": " press,", "probability": 0.76416015625}, {"start": 455.88, "end": 456.22, "word": " I", "probability": 0.98681640625}, {"start": 456.22, "end": 456.32, "word": " want", "probability": 0.81103515625}, {"start": 456.32, "end": 456.48, "word": " to", "probability": 0.92626953125}, {"start": 456.48, "end": 456.66, "word": " keep", "probability": 0.362548828125}, {"start": 456.66, "end": 457.16, "word": " this", "probability": 0.802734375}, {"start": 457.16, "end": 457.74, "word": " starting", "probability": 0.64794921875}, {"start": 457.74, "end": 457.96, "word": " point,", "probability": 0.9775390625}, {"start": 458.68, "end": 459.54, "word": " this", "probability": 0.422607421875}, {"start": 459.54, "end": 459.74, "word": " is", "probability": 0.8564453125}, {"start": 459.74, "end": 460.3, "word": " the", "probability": 0.350341796875}, {"start": 460.3, "end": 461.32, "word": " start", "probability": 0.75390625}, {"start": 461.32, "end": 461.76, "word": " point", "probability": 0.98095703125}], "temperature": 1.0}, {"id": 19, "seek": 48867, "start": 463.81, "end": 488.67, "text": "Okay? And I want him to record the start time. Okay? Why the start time? Do you see? When I draw, I want him to record every 10 seconds automatically. Okay? I haven't drawn yet. When I draw like this, I arrived here after 10 seconds. After exactly 10 seconds, he wants to take this point", "tokens": [8297, 30, 400, 286, 528, 796, 281, 2136, 264, 722, 565, 13, 1033, 30, 1545, 264, 722, 565, 30, 1144, 291, 536, 30, 1133, 286, 2642, 11, 286, 528, 796, 281, 2136, 633, 1266, 3949, 6772, 13, 1033, 30, 286, 2378, 380, 10117, 1939, 13, 1133, 286, 2642, 411, 341, 11, 286, 6678, 510, 934, 1266, 3949, 13, 2381, 2293, 1266, 3949, 11, 415, 2738, 281, 747, 341, 935], "avg_logprob": -0.5803571513720921, "compression_ratio": 1.688235294117647, "no_speech_prob": 1.1801719665527344e-05, "words": [{"start": 463.81, "end": 464.13, "word": "Okay?", "probability": 0.1717529296875}, {"start": 464.55, "end": 464.69, "word": " And", "probability": 0.51171875}, {"start": 464.69, "end": 464.79, "word": " I", "probability": 0.408935546875}, {"start": 464.79, "end": 464.87, "word": " want", "probability": 0.30712890625}, {"start": 464.87, "end": 465.13, "word": " him", "probability": 0.5107421875}, {"start": 465.13, "end": 465.53, "word": " to", "probability": 0.900390625}, {"start": 465.53, "end": 465.97, "word": " record", "probability": 0.323974609375}, {"start": 465.97, "end": 466.85, "word": " the", "probability": 0.5263671875}, {"start": 466.85, "end": 467.43, "word": " start", "probability": 0.8662109375}, {"start": 467.43, "end": 468.17, "word": " time.", "probability": 0.8154296875}, {"start": 471.51, "end": 472.05, "word": " Okay?", "probability": 0.287109375}, {"start": 472.35, "end": 472.61, "word": " Why", "probability": 0.763671875}, {"start": 472.61, "end": 472.97, "word": " the", "probability": 0.423583984375}, {"start": 472.97, "end": 473.07, "word": " start", "probability": 0.90380859375}, {"start": 473.07, "end": 473.25, "word": " time?", "probability": 0.85302734375}, {"start": 473.63, "end": 473.81, "word": " Do", "probability": 0.294189453125}, {"start": 473.81, "end": 473.81, "word": " you", "probability": 0.96875}, {"start": 473.81, "end": 473.95, "word": " see?", "probability": 0.5859375}, {"start": 474.01, "end": 474.09, "word": " When", "probability": 0.483642578125}, {"start": 474.09, "end": 474.21, "word": " I", "probability": 0.97314453125}, {"start": 474.21, "end": 474.47, "word": " draw,", "probability": 0.2034912109375}, {"start": 475.61, "end": 475.79, "word": " I", "probability": 0.5634765625}, {"start": 475.79, "end": 475.89, "word": " want", "probability": 0.76123046875}, {"start": 475.89, "end": 476.31, "word": " him", "probability": 0.826171875}, {"start": 476.31, "end": 476.67, "word": " to", "probability": 0.84521484375}, {"start": 476.67, "end": 476.67, "word": " record", "probability": 0.34521484375}, {"start": 476.67, "end": 476.99, "word": " every", "probability": 0.462646484375}, {"start": 476.99, "end": 477.27, "word": " 10", "probability": 0.4921875}, {"start": 477.27, "end": 477.77, "word": " seconds", "probability": 0.716796875}, {"start": 477.77, "end": 478.69, "word": " automatically.", "probability": 0.56884765625}, {"start": 479.33, "end": 479.87, "word": " Okay?", "probability": 0.62890625}, {"start": 479.93, "end": 480.41, "word": " I", "probability": 0.3935546875}, {"start": 480.41, "end": 481.15, "word": " haven't", "probability": 0.590087890625}, {"start": 481.15, "end": 481.79, "word": " drawn", "probability": 0.59228515625}, {"start": 481.79, "end": 482.07, "word": " yet.", "probability": 0.642578125}, {"start": 482.13, "end": 482.27, "word": " When", "probability": 0.5107421875}, {"start": 482.27, "end": 482.85, "word": " I", "probability": 0.98876953125}, {"start": 482.85, "end": 483.21, "word": " draw", "probability": 0.82666015625}, {"start": 483.21, "end": 483.37, "word": " like", "probability": 0.71875}, {"start": 483.37, "end": 483.65, "word": " this,", "probability": 0.66455078125}, {"start": 483.69, "end": 483.77, "word": " I", "probability": 0.6279296875}, {"start": 483.77, "end": 484.05, "word": " arrived", "probability": 0.188720703125}, {"start": 484.05, "end": 484.29, "word": " here", "probability": 0.6767578125}, {"start": 484.29, "end": 484.55, "word": " after", "probability": 0.765625}, {"start": 484.55, "end": 484.77, "word": " 10", "probability": 0.8564453125}, {"start": 484.77, "end": 485.15, "word": " seconds.", "probability": 0.8271484375}, {"start": 486.09, "end": 486.31, "word": " After", "probability": 0.480224609375}, {"start": 486.31, "end": 486.45, "word": " exactly", "probability": 0.5009765625}, {"start": 486.45, "end": 486.57, "word": " 10", "probability": 0.9130859375}, {"start": 486.57, "end": 486.97, "word": " seconds,", "probability": 0.8212890625}, {"start": 487.75, "end": 487.89, "word": " he", "probability": 0.82080078125}, {"start": 487.89, "end": 488.03, "word": " wants", "probability": 0.393310546875}, {"start": 488.03, "end": 488.11, "word": " to", "probability": 0.9384765625}, {"start": 488.11, "end": 488.31, "word": " take", "probability": 0.498291015625}, {"start": 488.31, "end": 488.41, "word": " this", "probability": 0.495849609375}, {"start": 488.41, "end": 488.67, "word": " point", "probability": 0.8388671875}], "temperature": 1.0}, {"id": 20, "seek": 51926, "start": 490.06, "end": 519.26, "text": "Okay? Do you see this point? And it stores it as what? As an end point. This is the starting point and this is the ending point. Okay? Now, these are the information I need to draw the first line. The point from here to here. This ending point is some ten seconds ago. Okay? So these two information, if I draw a line between them, this line will appear.", "tokens": [8297, 30, 1144, 291, 536, 341, 935, 30, 400, 309, 9512, 309, 382, 437, 30, 1018, 364, 917, 935, 13, 639, 307, 264, 2891, 935, 293, 341, 307, 264, 8121, 935, 13, 1033, 30, 823, 11, 613, 366, 264, 1589, 286, 643, 281, 2642, 264, 700, 1622, 13, 440, 935, 490, 510, 281, 510, 13, 639, 8121, 935, 307, 512, 2064, 3949, 2057, 13, 1033, 30, 407, 613, 732, 1589, 11, 498, 286, 2642, 257, 1622, 1296, 552, 11, 341, 1622, 486, 4204, 13], "avg_logprob": -0.3970588109072517, "compression_ratio": 1.7184466019417475, "no_speech_prob": 3.337860107421875e-06, "words": [{"start": 490.06, "end": 490.56, "word": "Okay?", "probability": 0.1693115234375}, {"start": 491.16, "end": 491.34, "word": " Do", "probability": 0.2138671875}, {"start": 491.34, "end": 491.34, "word": " you", "probability": 0.96826171875}, {"start": 491.34, "end": 491.5, "word": " see", "probability": 0.912109375}, {"start": 491.5, "end": 491.6, "word": " this", "probability": 0.7734375}, {"start": 491.6, "end": 491.8, "word": " point?", "probability": 0.54150390625}, {"start": 492.02, "end": 492.08, "word": " And", "probability": 0.279541015625}, {"start": 492.08, "end": 492.12, "word": " it", "probability": 0.44384765625}, {"start": 492.12, "end": 492.38, "word": " stores", "probability": 0.354248046875}, {"start": 492.38, "end": 492.6, "word": " it", "probability": 0.63671875}, {"start": 492.6, "end": 492.7, "word": " as", "probability": 0.78662109375}, {"start": 492.7, "end": 492.98, "word": " what?", "probability": 0.3486328125}, {"start": 493.02, "end": 493.16, "word": " As", "probability": 0.82177734375}, {"start": 493.16, "end": 493.4, "word": " an", "probability": 0.4541015625}, {"start": 493.4, "end": 493.56, "word": " end", "probability": 0.6650390625}, {"start": 493.56, "end": 495.82, "word": " point.", "probability": 0.93017578125}, {"start": 497.28, "end": 497.78, "word": " This", "probability": 0.59375}, {"start": 497.78, "end": 497.88, "word": " is", "probability": 0.921875}, {"start": 497.88, "end": 498.22, "word": " the", "probability": 0.9013671875}, {"start": 498.22, "end": 498.34, "word": " starting", "probability": 0.483642578125}, {"start": 498.34, "end": 498.58, "word": " point", "probability": 0.96826171875}, {"start": 498.58, "end": 499.18, "word": " and", "probability": 0.5771484375}, {"start": 499.18, "end": 499.26, "word": " this", "probability": 0.89208984375}, {"start": 499.26, "end": 499.34, "word": " is", "probability": 0.93408203125}, {"start": 499.34, "end": 500.56, "word": " the", "probability": 0.91943359375}, {"start": 500.56, "end": 500.72, "word": " ending", "probability": 0.483154296875}, {"start": 500.72, "end": 501.02, "word": " point.", "probability": 0.96728515625}, {"start": 501.7, "end": 502.2, "word": " Okay?", "probability": 0.68798828125}, {"start": 503.58, "end": 504.08, "word": " Now,", "probability": 0.92578125}, {"start": 504.26, "end": 505.3, "word": " these", "probability": 0.5390625}, {"start": 505.3, "end": 505.42, "word": " are", "probability": 0.841796875}, {"start": 505.42, "end": 505.42, "word": " the", "probability": 0.87060546875}, {"start": 505.42, "end": 505.68, "word": " information", "probability": 0.51708984375}, {"start": 505.68, "end": 505.94, "word": " I", "probability": 0.4609375}, {"start": 505.94, "end": 506.14, "word": " need", "probability": 0.88818359375}, {"start": 506.14, "end": 506.38, "word": " to", "probability": 0.84912109375}, {"start": 506.38, "end": 506.68, "word": " draw", "probability": 0.89306640625}, {"start": 506.68, "end": 507.16, "word": " the", "probability": 0.8369140625}, {"start": 507.16, "end": 507.16, "word": " first", "probability": 0.87744140625}, {"start": 507.16, "end": 508.48, "word": " line.", "probability": 0.85595703125}, {"start": 508.82, "end": 509.12, "word": " The", "probability": 0.556640625}, {"start": 509.12, "end": 509.34, "word": " point", "probability": 0.76953125}, {"start": 509.34, "end": 509.52, "word": " from", "probability": 0.61767578125}, {"start": 509.52, "end": 509.82, "word": " here", "probability": 0.83935546875}, {"start": 509.82, "end": 510.44, "word": " to", "probability": 0.96435546875}, {"start": 510.44, "end": 510.7, "word": " here.", "probability": 0.8076171875}, {"start": 510.8, "end": 511.0, "word": " This", "probability": 0.7548828125}, {"start": 511.0, "end": 511.1, "word": " ending", "probability": 0.71435546875}, {"start": 511.1, "end": 511.58, "word": " point", "probability": 0.9658203125}, {"start": 511.58, "end": 511.76, "word": " is", "probability": 0.79248046875}, {"start": 511.76, "end": 511.98, "word": " some", "probability": 0.274658203125}, {"start": 511.98, "end": 513.3, "word": " ten", "probability": 0.261962890625}, {"start": 513.3, "end": 513.7, "word": " seconds", "probability": 0.71142578125}, {"start": 513.7, "end": 513.7, "word": " ago.", "probability": 0.69384765625}, {"start": 514.08, "end": 514.58, "word": " Okay?", "probability": 0.78271484375}, {"start": 515.84, "end": 516.16, "word": " So", "probability": 0.359130859375}, {"start": 516.16, "end": 516.4, "word": " these", "probability": 0.40576171875}, {"start": 516.4, "end": 516.58, "word": " two", "probability": 0.78515625}, {"start": 516.58, "end": 516.88, "word": " information,", "probability": 0.55029296875}, {"start": 517.22, "end": 517.36, "word": " if", "probability": 0.92578125}, {"start": 517.36, "end": 517.58, "word": " I", "probability": 0.97998046875}, {"start": 517.58, "end": 517.92, "word": " draw", "probability": 0.498779296875}, {"start": 517.92, "end": 518.36, "word": " a", "probability": 0.923828125}, {"start": 518.36, "end": 518.6, "word": " line", "probability": 0.93701171875}, {"start": 518.6, "end": 518.6, "word": " between", "probability": 0.822265625}, {"start": 518.6, "end": 518.6, "word": " them,", "probability": 0.90283203125}, {"start": 518.68, "end": 519.02, "word": " this", "probability": 0.7265625}, {"start": 519.02, "end": 519.26, "word": " line", "probability": 0.919921875}, {"start": 519.26, "end": 519.26, "word": " will", "probability": 0.7412109375}, {"start": 519.26, "end": 519.26, "word": " appear.", "probability": 0.485595703125}], "temperature": 1.0}, {"id": 21, "seek": 53129, "start": 521.35, "end": 531.29, "text": "Okay, after he draws the first line, he will start drawing the second line. What will he do? This will be the start, okay?", "tokens": [8297, 11, 934, 415, 20045, 264, 700, 1622, 11, 415, 486, 722, 6316, 264, 1150, 1622, 13, 708, 486, 415, 360, 30, 639, 486, 312, 264, 722, 11, 1392, 30], "avg_logprob": -0.5171371083105764, "compression_ratio": 1.2577319587628866, "no_speech_prob": 1.1920928955078125e-05, "words": [{"start": 521.35, "end": 521.89, "word": "Okay,", "probability": 0.261962890625}, {"start": 522.03, "end": 522.31, "word": " after", "probability": 0.70654296875}, {"start": 522.31, "end": 522.45, "word": " he", "probability": 0.6123046875}, {"start": 522.45, "end": 522.63, "word": " draws", "probability": 0.78125}, {"start": 522.63, "end": 522.99, "word": " the", "probability": 0.822265625}, {"start": 522.99, "end": 522.99, "word": " first", "probability": 0.86181640625}, {"start": 522.99, "end": 523.35, "word": " line,", "probability": 0.89404296875}, {"start": 524.55, "end": 524.81, "word": " he", "probability": 0.416259765625}, {"start": 524.81, "end": 524.87, "word": " will", "probability": 0.2388916015625}, {"start": 524.87, "end": 525.07, "word": " start", "probability": 0.5673828125}, {"start": 525.07, "end": 525.35, "word": " drawing", "probability": 0.67822265625}, {"start": 525.35, "end": 525.49, "word": " the", "probability": 0.7138671875}, {"start": 525.49, "end": 526.03, "word": " second", "probability": 0.7314453125}, {"start": 526.03, "end": 526.11, "word": " line.", "probability": 0.85009765625}, {"start": 526.51, "end": 526.91, "word": " What", "probability": 0.6806640625}, {"start": 526.91, "end": 527.05, "word": " will", "probability": 0.2117919921875}, {"start": 527.05, "end": 527.35, "word": " he", "probability": 0.51123046875}, {"start": 527.35, "end": 527.45, "word": " do?", "probability": 0.82421875}, {"start": 527.57, "end": 527.69, "word": " This", "probability": 0.48486328125}, {"start": 527.69, "end": 527.69, "word": " will", "probability": 0.6025390625}, {"start": 527.69, "end": 527.89, "word": " be", "probability": 0.473876953125}, {"start": 527.89, "end": 529.55, "word": " the", "probability": 0.8095703125}, {"start": 529.55, "end": 530.05, "word": " start,", "probability": 0.8486328125}, {"start": 531.11, "end": 531.29, "word": " okay?", "probability": 0.74853515625}], "temperature": 1.0}, {"id": 22, "seek": 55089, "start": 532.35, "end": 550.89, "text": "وقت البداية هو الوقت هذا اللي هنا يعني هذا برضه الوقت هذا ماله اختلف هو وقت البداية حسبته هنا هل جيت من هنا بده نحسب من وين؟ من هنا وبرجع بحسب تاني بعد عشر ثانية تانية بتصير هذه نقطة النهاية ال end point و برسم بينهم", "tokens": [30543, 2655, 29739, 28259, 10632, 31439, 2423, 30543, 2655, 23758, 13672, 1829, 34105, 37495, 22653, 23758, 4724, 43042, 3224, 2423, 30543, 2655, 23758, 3714, 6027, 3224, 1975, 46456, 46538, 31439, 4032, 38149, 29739, 28259, 10632, 11331, 35457, 47395, 34105, 8032, 1211, 10874, 36081, 9154, 34105, 47525, 3224, 8717, 5016, 35457, 9154, 4032, 9957, 22807, 9154, 34105, 4032, 26890, 7435, 3615, 4724, 5016, 35457, 6055, 7649, 1829, 39182, 6225, 46309, 38637, 7649, 10632, 6055, 7649, 10632, 39894, 9381, 13546, 29538, 8717, 47432, 3660, 28239, 11296, 10632, 2423, 917, 935, 4032, 4724, 2288, 38251, 49374, 16095], "avg_logprob": -0.21381578978739288, "compression_ratio": 1.9536082474226804, "no_speech_prob": 8.58306884765625e-06, "words": [{"start": 532.35, "end": 532.85, "word": "وقت", "probability": 0.570068359375}, {"start": 532.85, "end": 533.47, "word": " البداية", "probability": 0.9837239583333334}, {"start": 533.47, "end": 534.13, "word": " هو", "probability": 0.828125}, {"start": 534.13, "end": 534.65, "word": " الوقت", "probability": 0.9778645833333334}, {"start": 534.65, "end": 534.99, "word": " هذا", "probability": 0.78662109375}, {"start": 534.99, "end": 535.15, "word": " اللي", "probability": 0.78125}, {"start": 535.15, "end": 535.39, "word": " هنا", "probability": 0.9814453125}, {"start": 535.39, "end": 536.23, "word": " يعني", "probability": 0.80859375}, {"start": 536.23, "end": 536.41, "word": " هذا", "probability": 0.82861328125}, {"start": 536.41, "end": 536.65, "word": " برضه", "probability": 0.9005533854166666}, {"start": 536.65, "end": 536.99, "word": " الوقت", "probability": 0.9659830729166666}, {"start": 536.99, "end": 537.13, "word": " هذا", "probability": 0.677734375}, {"start": 537.13, "end": 537.51, "word": " ماله", "probability": 0.7840169270833334}, {"start": 537.51, "end": 538.61, "word": " اختلف", "probability": 0.8904622395833334}, {"start": 538.61, "end": 538.83, "word": " هو", "probability": 0.09954833984375}, {"start": 538.83, "end": 539.11, "word": " وقت", "probability": 0.7276611328125}, {"start": 539.11, "end": 539.43, "word": " البداية", "probability": 0.8590494791666666}, {"start": 539.43, "end": 539.97, "word": " حسبته", "probability": 0.82080078125}, {"start": 539.97, "end": 540.17, "word": " هنا", "probability": 0.9677734375}, {"start": 540.17, "end": 540.37, "word": " هل", "probability": 0.58251953125}, {"start": 540.37, "end": 540.51, "word": " جيت", "probability": 0.668212890625}, {"start": 540.51, "end": 540.63, "word": " من", "probability": 0.89013671875}, {"start": 540.63, "end": 540.73, "word": " هنا", "probability": 0.9794921875}, {"start": 540.73, "end": 540.87, "word": " بده", "probability": 0.634765625}, {"start": 540.87, "end": 541.15, "word": " نحسب", "probability": 0.9889322916666666}, {"start": 541.15, "end": 541.29, "word": " من", "probability": 0.990234375}, {"start": 541.29, "end": 542.15, "word": " وين؟", "probability": 0.693359375}, {"start": 542.15, "end": 542.31, "word": " من", "probability": 0.97119140625}, {"start": 542.31, "end": 542.61, "word": " هنا", "probability": 0.99169921875}, {"start": 542.61, "end": 543.73, "word": " وبرجع", "probability": 0.897216796875}, {"start": 543.73, "end": 544.09, "word": " بحسب", "probability": 0.8196614583333334}, {"start": 544.09, "end": 544.39, "word": " تاني", "probability": 0.845703125}, {"start": 544.39, "end": 544.65, "word": " بعد", "probability": 0.8037109375}, {"start": 544.65, "end": 544.95, "word": " عشر", "probability": 0.966796875}, {"start": 544.95, "end": 545.37, "word": " ثانية", "probability": 0.9903971354166666}, {"start": 545.37, "end": 545.83, "word": " تانية", "probability": 0.9959309895833334}, {"start": 545.83, "end": 546.75, "word": " بتصير", "probability": 0.8336588541666666}, {"start": 546.75, "end": 546.89, "word": " هذه", "probability": 0.345947265625}, {"start": 546.89, "end": 547.19, "word": " نقطة", "probability": 0.966796875}, {"start": 547.19, "end": 548.23, "word": " النهاية", "probability": 0.9259440104166666}, {"start": 548.23, "end": 548.43, "word": " ال", "probability": 0.83642578125}, {"start": 548.43, "end": 548.79, "word": " end", "probability": 0.85595703125}, {"start": 548.79, "end": 549.77, "word": " point", "probability": 0.98681640625}, {"start": 549.77, "end": 550.03, "word": " و", "probability": 0.87451171875}, {"start": 550.03, "end": 550.33, "word": " برسم", "probability": 0.7909342447916666}, {"start": 550.33, "end": 550.89, "word": " بينهم", "probability": 0.97265625}], "temperature": 1.0}, {"id": 23, "seek": 57595, "start": 552.23, "end": 575.95, "text": " This is how you draw on parts. Before we save the command, let's see how to draw on parts. Let's see the application. The application consists of three classes. The main class is the free drawing, which is the main frame of the application. The main frame is divided into two parts.", "tokens": [639, 307, 577, 291, 2642, 322, 3166, 13, 4546, 321, 3155, 264, 5622, 11, 718, 311, 536, 577, 281, 2642, 322, 3166, 13, 961, 311, 536, 264, 3861, 13, 440, 3861, 14689, 295, 1045, 5359, 13, 440, 2135, 1508, 307, 264, 1737, 6316, 11, 597, 307, 264, 2135, 3920, 295, 264, 3861, 13, 440, 2135, 3920, 307, 6666, 666, 732, 3166, 13], "avg_logprob": -0.49454363376375227, "compression_ratio": 1.76875, "no_speech_prob": 2.5928020477294922e-05, "words": [{"start": 552.23, "end": 552.79, "word": " This", "probability": 0.06640625}, {"start": 552.79, "end": 553.13, "word": " is", "probability": 0.6318359375}, {"start": 553.13, "end": 553.25, "word": " how", "probability": 0.76708984375}, {"start": 553.25, "end": 553.95, "word": " you", "probability": 0.373779296875}, {"start": 553.95, "end": 554.13, "word": " draw", "probability": 0.3681640625}, {"start": 554.13, "end": 555.27, "word": " on", "probability": 0.56787109375}, {"start": 555.27, "end": 555.61, "word": " parts.", "probability": 0.365234375}, {"start": 556.75, "end": 557.31, "word": " Before", "probability": 0.486083984375}, {"start": 557.31, "end": 557.55, "word": " we", "probability": 0.58837890625}, {"start": 557.55, "end": 557.79, "word": " save", "probability": 0.065673828125}, {"start": 557.79, "end": 558.23, "word": " the", "probability": 0.72119140625}, {"start": 558.23, "end": 558.61, "word": " command,", "probability": 0.828125}, {"start": 558.65, "end": 558.85, "word": " let's", "probability": 0.637451171875}, {"start": 558.85, "end": 559.01, "word": " see", "probability": 0.77392578125}, {"start": 559.01, "end": 559.21, "word": " how", "probability": 0.9248046875}, {"start": 559.21, "end": 559.29, "word": " to", "probability": 0.6533203125}, {"start": 559.29, "end": 559.69, "word": " draw", "probability": 0.82763671875}, {"start": 559.69, "end": 559.99, "word": " on", "probability": 0.8984375}, {"start": 559.99, "end": 561.11, "word": " parts.", "probability": 0.81787109375}, {"start": 562.89, "end": 563.45, "word": " Let's", "probability": 0.632568359375}, {"start": 563.45, "end": 563.67, "word": " see", "probability": 0.65576171875}, {"start": 563.67, "end": 563.81, "word": " the", "probability": 0.392333984375}, {"start": 563.81, "end": 564.09, "word": " application.", "probability": 0.6328125}, {"start": 564.35, "end": 564.49, "word": " The", "probability": 0.424560546875}, {"start": 564.49, "end": 564.71, "word": " application", "probability": 0.88427734375}, {"start": 564.71, "end": 565.13, "word": " consists", "probability": 0.564453125}, {"start": 565.13, "end": 565.55, "word": " of", "probability": 0.9697265625}, {"start": 565.55, "end": 565.83, "word": " three", "probability": 0.619140625}, {"start": 565.83, "end": 566.37, "word": " classes.", "probability": 0.859375}, {"start": 567.37, "end": 567.57, "word": " The", "probability": 0.62646484375}, {"start": 567.57, "end": 567.57, "word": " main", "probability": 0.35400390625}, {"start": 567.57, "end": 568.25, "word": " class", "probability": 0.79443359375}, {"start": 568.25, "end": 568.59, "word": " is", "probability": 0.89501953125}, {"start": 568.59, "end": 568.79, "word": " the", "probability": 0.31005859375}, {"start": 568.79, "end": 568.99, "word": " free", "probability": 0.595703125}, {"start": 568.99, "end": 569.43, "word": " drawing,", "probability": 0.80029296875}, {"start": 569.65, "end": 569.67, "word": " which", "probability": 0.697265625}, {"start": 569.67, "end": 569.89, "word": " is", "probability": 0.91845703125}, {"start": 569.89, "end": 570.05, "word": " the", "probability": 0.9111328125}, {"start": 570.05, "end": 570.09, "word": " main", "probability": 0.666015625}, {"start": 570.09, "end": 570.35, "word": " frame", "probability": 0.76025390625}, {"start": 570.35, "end": 570.91, "word": " of", "probability": 0.9013671875}, {"start": 570.91, "end": 571.05, "word": " the", "probability": 0.90966796875}, {"start": 571.05, "end": 571.45, "word": " application.", "probability": 0.87109375}, {"start": 573.41, "end": 573.97, "word": " The", "probability": 0.41259765625}, {"start": 573.97, "end": 574.39, "word": " main", "probability": 0.896484375}, {"start": 574.39, "end": 575.11, "word": " frame", "probability": 0.892578125}, {"start": 575.11, "end": 575.27, "word": " is", "probability": 0.88037109375}, {"start": 575.27, "end": 575.51, "word": " divided", "probability": 0.82861328125}, {"start": 575.51, "end": 575.71, "word": " into", "probability": 0.84814453125}, {"start": 575.71, "end": 575.81, "word": " two", "probability": 0.87744140625}, {"start": 575.81, "end": 575.95, "word": " parts.", "probability": 0.853515625}], "temperature": 1.0}, {"id": 24, "seek": 59715, "start": 578.05, "end": 597.15, "text": "This part in the middle is called the drawing panel and the bottom part is called the control panel which has the undo and redo buttons Let's see the drawing panel, we will not go too deep into the GUI but I will show you the basic idea that this drawing panel I made something called add mouse listener", "tokens": [5723, 644, 294, 264, 2808, 307, 1219, 264, 6316, 4831, 293, 264, 2767, 644, 307, 1219, 264, 1969, 4831, 597, 575, 264, 23779, 293, 29956, 9905, 961, 311, 536, 264, 6316, 4831, 11, 321, 486, 406, 352, 886, 2452, 666, 264, 17917, 40, 457, 286, 486, 855, 291, 264, 3875, 1558, 300, 341, 6316, 4831, 286, 1027, 746, 1219, 909, 9719, 31569], "avg_logprob": -0.4747023828445919, "compression_ratio": 1.702247191011236, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 578.05, "end": 578.33, "word": "This", "probability": 0.46728515625}, {"start": 578.33, "end": 578.59, "word": " part", "probability": 0.64501953125}, {"start": 578.59, "end": 578.95, "word": " in", "probability": 0.56787109375}, {"start": 578.95, "end": 579.11, "word": " the", "probability": 0.88916015625}, {"start": 579.11, "end": 579.35, "word": " middle", "probability": 0.87548828125}, {"start": 579.35, "end": 579.69, "word": " is", "probability": 0.87158203125}, {"start": 579.69, "end": 579.91, "word": " called", "probability": 0.7431640625}, {"start": 579.91, "end": 579.93, "word": " the", "probability": 0.2188720703125}, {"start": 579.93, "end": 580.23, "word": " drawing", "probability": 0.6904296875}, {"start": 580.23, "end": 580.59, "word": " panel", "probability": 0.92578125}, {"start": 580.59, "end": 581.05, "word": " and", "probability": 0.662109375}, {"start": 581.05, "end": 581.15, "word": " the", "probability": 0.58251953125}, {"start": 581.15, "end": 581.25, "word": " bottom", "probability": 0.252685546875}, {"start": 581.25, "end": 581.67, "word": " part", "probability": 0.68310546875}, {"start": 581.67, "end": 581.97, "word": " is", "probability": 0.921875}, {"start": 581.97, "end": 582.17, "word": " called", "probability": 0.7734375}, {"start": 582.17, "end": 582.29, "word": " the", "probability": 0.83642578125}, {"start": 582.29, "end": 582.63, "word": " control", "probability": 0.8525390625}, {"start": 582.63, "end": 582.97, "word": " panel", "probability": 0.91943359375}, {"start": 582.97, "end": 583.87, "word": " which", "probability": 0.2415771484375}, {"start": 583.87, "end": 584.17, "word": " has", "probability": 0.560546875}, {"start": 584.17, "end": 584.53, "word": " the", "probability": 0.3779296875}, {"start": 584.53, "end": 584.81, "word": " undo", "probability": 0.9658203125}, {"start": 584.81, "end": 585.35, "word": " and", "probability": 0.734375}, {"start": 585.35, "end": 586.03, "word": " redo", "probability": 0.931640625}, {"start": 586.03, "end": 586.15, "word": " buttons", "probability": 0.64990234375}, {"start": 586.15, "end": 587.15, "word": " Let's", "probability": 0.615478515625}, {"start": 587.15, "end": 587.35, "word": " see", "probability": 0.42919921875}, {"start": 587.35, "end": 587.49, "word": " the", "probability": 0.86767578125}, {"start": 587.49, "end": 587.73, "word": " drawing", "probability": 0.86376953125}, {"start": 587.73, "end": 587.99, "word": " panel,", "probability": 0.90869140625}, {"start": 588.09, "end": 588.19, "word": " we", "probability": 0.3740234375}, {"start": 588.19, "end": 588.67, "word": " will", "probability": 0.2890625}, {"start": 588.67, "end": 588.67, "word": " not", "probability": 0.85888671875}, {"start": 588.67, "end": 589.25, "word": " go", "probability": 0.48681640625}, {"start": 589.25, "end": 589.75, "word": " too", "probability": 0.2156982421875}, {"start": 589.75, "end": 589.75, "word": " deep", "probability": 0.7158203125}, {"start": 589.75, "end": 589.95, "word": " into", "probability": 0.4384765625}, {"start": 589.95, "end": 590.05, "word": " the", "probability": 0.5859375}, {"start": 590.05, "end": 590.55, "word": " GUI", "probability": 0.913818359375}, {"start": 590.55, "end": 591.35, "word": " but", "probability": 0.45166015625}, {"start": 591.35, "end": 591.45, "word": " I", "probability": 0.463134765625}, {"start": 591.45, "end": 591.49, "word": " will", "probability": 0.78173828125}, {"start": 591.49, "end": 591.69, "word": " show", "probability": 0.8779296875}, {"start": 591.69, "end": 591.85, "word": " you", "probability": 0.9287109375}, {"start": 591.85, "end": 591.97, "word": " the", "probability": 0.88330078125}, {"start": 591.97, "end": 592.47, "word": " basic", "probability": 0.53271484375}, {"start": 592.47, "end": 592.71, "word": " idea", "probability": 0.8388671875}, {"start": 592.71, "end": 592.91, "word": " that", "probability": 0.279052734375}, {"start": 592.91, "end": 593.13, "word": " this", "probability": 0.61181640625}, {"start": 593.13, "end": 593.55, "word": " drawing", "probability": 0.79833984375}, {"start": 593.55, "end": 594.01, "word": " panel", "probability": 0.90625}, {"start": 594.01, "end": 594.79, "word": " I", "probability": 0.5517578125}, {"start": 594.79, "end": 595.03, "word": " made", "probability": 0.5029296875}, {"start": 595.03, "end": 595.39, "word": " something", "probability": 0.50439453125}, {"start": 595.39, "end": 595.75, "word": " called", "probability": 0.77880859375}, {"start": 595.75, "end": 596.23, "word": " add", "probability": 0.5361328125}, {"start": 596.23, "end": 596.75, "word": " mouse", "probability": 0.92822265625}, {"start": 596.75, "end": 597.15, "word": " listener", "probability": 0.8115234375}], "temperature": 1.0}, {"id": 25, "seek": 62683, "start": 598.25, "end": 626.83, "text": " Like when you do listener on the button, not add, action, set on action, this is almost the same idea, which is just called add mouse listener and inside it does anonymous class or in lambda, whatever you want, okay? What does this do, guys? It only listens to the mouse. At the moment you click on it, it executes the value called mouse clicks. If you write code here, it will execute it if you click.", "tokens": [1743, 562, 291, 360, 31569, 322, 264, 2960, 11, 406, 909, 11, 3069, 11, 992, 322, 3069, 11, 341, 307, 1920, 264, 912, 1558, 11, 597, 307, 445, 1219, 909, 9719, 31569, 293, 1854, 309, 775, 24932, 1508, 420, 294, 13607, 11, 2035, 291, 528, 11, 1392, 30, 708, 775, 341, 360, 11, 1074, 30, 467, 787, 35959, 281, 264, 9719, 13, 1711, 264, 1623, 291, 2052, 322, 309, 11, 309, 4454, 1819, 264, 2158, 1219, 9719, 18521, 13, 759, 291, 2464, 3089, 510, 11, 309, 486, 14483, 309, 498, 291, 2052, 13], "avg_logprob": -0.5255984042553191, "compression_ratio": 1.7222222222222223, "no_speech_prob": 3.5762786865234375e-06, "words": [{"start": 598.25, "end": 598.49, "word": " Like", "probability": 0.263671875}, {"start": 598.49, "end": 598.57, "word": " when", "probability": 0.2578125}, {"start": 598.57, "end": 598.73, "word": " you", "probability": 0.93994140625}, {"start": 598.73, "end": 598.91, "word": " do", "probability": 0.2049560546875}, {"start": 598.91, "end": 599.77, "word": " listener", "probability": 0.29443359375}, {"start": 599.77, "end": 599.99, "word": " on", "probability": 0.8037109375}, {"start": 599.99, "end": 600.03, "word": " the", "probability": 0.424072265625}, {"start": 600.03, "end": 600.29, "word": " button,", "probability": 0.7978515625}, {"start": 601.33, "end": 601.37, "word": " not", "probability": 0.426513671875}, {"start": 601.37, "end": 601.95, "word": " add,", "probability": 0.66650390625}, {"start": 602.09, "end": 602.69, "word": " action,", "probability": 0.78369140625}, {"start": 603.35, "end": 604.83, "word": " set", "probability": 0.5654296875}, {"start": 604.83, "end": 605.07, "word": " on", "probability": 0.73388671875}, {"start": 605.07, "end": 605.53, "word": " action,", "probability": 0.953125}, {"start": 605.69, "end": 606.27, "word": " this", "probability": 0.330810546875}, {"start": 606.27, "end": 606.49, "word": " is", "probability": 0.80810546875}, {"start": 606.49, "end": 606.77, "word": " almost", "probability": 0.408935546875}, {"start": 606.77, "end": 606.99, "word": " the", "probability": 0.865234375}, {"start": 606.99, "end": 607.15, "word": " same", "probability": 0.89794921875}, {"start": 607.15, "end": 607.55, "word": " idea,", "probability": 0.7109375}, {"start": 607.69, "end": 607.75, "word": " which", "probability": 0.1669921875}, {"start": 607.75, "end": 607.93, "word": " is", "probability": 0.8408203125}, {"start": 607.93, "end": 608.07, "word": " just", "probability": 0.482666015625}, {"start": 608.07, "end": 608.45, "word": " called", "probability": 0.50146484375}, {"start": 608.45, "end": 609.23, "word": " add", "probability": 0.72802734375}, {"start": 609.23, "end": 609.57, "word": " mouse", "probability": 0.90234375}, {"start": 609.57, "end": 609.95, "word": " listener", "probability": 0.78369140625}, {"start": 609.95, "end": 610.67, "word": " and", "probability": 0.3505859375}, {"start": 610.67, "end": 610.93, "word": " inside", "probability": 0.452880859375}, {"start": 610.93, "end": 611.05, "word": " it", "probability": 0.55322265625}, {"start": 611.05, "end": 611.19, "word": " does", "probability": 0.29150390625}, {"start": 611.19, "end": 611.53, "word": " anonymous", "probability": 0.6494140625}, {"start": 611.53, "end": 612.09, "word": " class", "probability": 0.98095703125}, {"start": 612.09, "end": 612.31, "word": " or", "probability": 0.755859375}, {"start": 612.31, "end": 612.47, "word": " in", "probability": 0.438720703125}, {"start": 612.47, "end": 612.73, "word": " lambda,", "probability": 0.572265625}, {"start": 612.81, "end": 612.91, "word": " whatever", "probability": 0.166748046875}, {"start": 612.91, "end": 612.91, "word": " you", "probability": 0.77099609375}, {"start": 612.91, "end": 613.25, "word": " want,", "probability": 0.80859375}, {"start": 613.85, "end": 614.09, "word": " okay?", "probability": 0.305908203125}, {"start": 614.57, "end": 614.73, "word": " What", "probability": 0.336669921875}, {"start": 614.73, "end": 614.73, "word": " does", "probability": 0.80615234375}, {"start": 614.73, "end": 614.99, "word": " this", "probability": 0.767578125}, {"start": 614.99, "end": 615.55, "word": " do,", "probability": 0.93212890625}, {"start": 615.71, "end": 615.95, "word": " guys?", "probability": 0.8095703125}, {"start": 616.09, "end": 616.23, "word": " It", "probability": 0.55224609375}, {"start": 616.23, "end": 616.43, "word": " only", "probability": 0.5498046875}, {"start": 616.43, "end": 616.85, "word": " listens", "probability": 0.9462890625}, {"start": 616.85, "end": 617.09, "word": " to", "probability": 0.9560546875}, {"start": 617.09, "end": 617.79, "word": " the", "probability": 0.89306640625}, {"start": 617.79, "end": 618.07, "word": " mouse.", "probability": 0.94287109375}, {"start": 618.85, "end": 619.05, "word": " At", "probability": 0.55126953125}, {"start": 619.05, "end": 619.15, "word": " the", "probability": 0.9296875}, {"start": 619.15, "end": 619.37, "word": " moment", "probability": 0.966796875}, {"start": 619.37, "end": 619.61, "word": " you", "probability": 0.619140625}, {"start": 619.61, "end": 620.21, "word": " click", "probability": 0.83447265625}, {"start": 620.21, "end": 620.43, "word": " on", "probability": 0.68408203125}, {"start": 620.43, "end": 620.43, "word": " it,", "probability": 0.92626953125}, {"start": 620.69, "end": 620.75, "word": " it", "probability": 0.64697265625}, {"start": 620.75, "end": 621.05, "word": " executes", "probability": 0.662109375}, {"start": 621.05, "end": 621.25, "word": " the", "probability": 0.64697265625}, {"start": 621.25, "end": 621.39, "word": " value", "probability": 0.0894775390625}, {"start": 621.39, "end": 621.83, "word": " called", "probability": 0.61181640625}, {"start": 621.83, "end": 622.71, "word": " mouse", "probability": 0.8203125}, {"start": 622.71, "end": 623.03, "word": " clicks.", "probability": 0.818359375}, {"start": 623.63, "end": 623.97, "word": " If", "probability": 0.95166015625}, {"start": 623.97, "end": 624.15, "word": " you", "probability": 0.82861328125}, {"start": 624.15, "end": 624.27, "word": " write", "probability": 0.52294921875}, {"start": 624.27, "end": 624.63, "word": " code", "probability": 0.83154296875}, {"start": 624.63, "end": 624.89, "word": " here,", "probability": 0.8515625}, {"start": 625.43, "end": 625.89, "word": " it", "probability": 0.91015625}, {"start": 625.89, "end": 625.95, "word": " will", "probability": 0.8271484375}, {"start": 625.95, "end": 626.17, "word": " execute", "probability": 0.86279296875}, {"start": 626.17, "end": 626.31, "word": " it", "probability": 0.544921875}, {"start": 626.31, "end": 626.37, "word": " if", "probability": 0.79541015625}, {"start": 626.37, "end": 626.61, "word": " you", "probability": 0.96337890625}, {"start": 626.61, "end": 626.83, "word": " click.", "probability": 0.716796875}], "temperature": 1.0}, {"id": 26, "seek": 65087, "start": 628.53, "end": 650.87, "text": "Okay? And there is mouse entered and mouse exited because I left the mouse. I have a mouse pressed. Okay? Which means that I have a pressure when I press the mouse. This is what I want. Because I want to get the point of the beginning and the beginning time. Okay? And I also have another listener. His name is mouse motion listener.", "tokens": [8297, 30, 400, 456, 307, 9719, 9065, 293, 9719, 454, 1226, 570, 286, 1411, 264, 9719, 13, 286, 362, 257, 9719, 17355, 13, 1033, 30, 3013, 1355, 300, 286, 362, 257, 3321, 562, 286, 1886, 264, 9719, 13, 639, 307, 437, 286, 528, 13, 1436, 286, 528, 281, 483, 264, 935, 295, 264, 2863, 293, 264, 2863, 565, 13, 1033, 30, 400, 286, 611, 362, 1071, 31569, 13, 2812, 1315, 307, 9719, 5394, 31569, 13], "avg_logprob": -0.5168585596900237, "compression_ratio": 1.8, "no_speech_prob": 2.3245811462402344e-06, "words": [{"start": 628.53, "end": 629.05, "word": "Okay?", "probability": 0.20556640625}, {"start": 629.75, "end": 630.23, "word": " And", "probability": 0.401611328125}, {"start": 630.23, "end": 630.39, "word": " there", "probability": 0.810546875}, {"start": 630.39, "end": 630.39, "word": " is", "probability": 0.459228515625}, {"start": 630.39, "end": 630.69, "word": " mouse", "probability": 0.68603515625}, {"start": 630.69, "end": 631.13, "word": " entered", "probability": 0.77783203125}, {"start": 631.13, "end": 631.29, "word": " and", "probability": 0.462890625}, {"start": 631.29, "end": 631.49, "word": " mouse", "probability": 0.9462890625}, {"start": 631.49, "end": 632.03, "word": " exited", "probability": 0.830810546875}, {"start": 632.03, "end": 632.25, "word": " because", "probability": 0.5126953125}, {"start": 632.25, "end": 632.45, "word": " I", "probability": 0.962890625}, {"start": 632.45, "end": 632.79, "word": " left", "probability": 0.841796875}, {"start": 632.79, "end": 632.95, "word": " the", "probability": 0.70556640625}, {"start": 632.95, "end": 633.23, "word": " mouse.", "probability": 0.94775390625}, {"start": 633.51, "end": 633.73, "word": " I", "probability": 0.68798828125}, {"start": 633.73, "end": 633.89, "word": " have", "probability": 0.83203125}, {"start": 633.89, "end": 633.99, "word": " a", "probability": 0.5009765625}, {"start": 633.99, "end": 634.17, "word": " mouse", "probability": 0.67919921875}, {"start": 634.17, "end": 634.67, "word": " pressed.", "probability": 0.75927734375}, {"start": 635.67, "end": 636.19, "word": " Okay?", "probability": 0.37353515625}, {"start": 636.55, "end": 636.77, "word": " Which", "probability": 0.462646484375}, {"start": 636.77, "end": 636.93, "word": " means", "probability": 0.326416015625}, {"start": 636.93, "end": 637.15, "word": " that", "probability": 0.32568359375}, {"start": 637.15, "end": 637.15, "word": " I", "probability": 0.50927734375}, {"start": 637.15, "end": 637.15, "word": " have", "probability": 0.642578125}, {"start": 637.15, "end": 637.15, "word": " a", "probability": 0.414306640625}, {"start": 637.15, "end": 637.41, "word": " pressure", "probability": 0.7138671875}, {"start": 637.41, "end": 638.07, "word": " when", "probability": 0.41552734375}, {"start": 638.07, "end": 638.35, "word": " I", "probability": 0.95751953125}, {"start": 638.35, "end": 638.77, "word": " press", "probability": 0.4892578125}, {"start": 638.77, "end": 639.01, "word": " the", "probability": 0.7158203125}, {"start": 639.01, "end": 639.27, "word": " mouse.", "probability": 0.9501953125}, {"start": 639.67, "end": 640.03, "word": " This", "probability": 0.360107421875}, {"start": 640.03, "end": 640.03, "word": " is", "probability": 0.66796875}, {"start": 640.03, "end": 640.17, "word": " what", "probability": 0.485107421875}, {"start": 640.17, "end": 640.39, "word": " I", "probability": 0.73779296875}, {"start": 640.39, "end": 640.39, "word": " want.", "probability": 0.6962890625}, {"start": 640.93, "end": 641.45, "word": " Because", "probability": 0.83154296875}, {"start": 641.45, "end": 641.89, "word": " I", "probability": 0.435546875}, {"start": 641.89, "end": 642.13, "word": " want", "probability": 0.35107421875}, {"start": 642.13, "end": 642.17, "word": " to", "probability": 0.75927734375}, {"start": 642.17, "end": 642.35, "word": " get", "probability": 0.1895751953125}, {"start": 642.35, "end": 642.49, "word": " the", "probability": 0.52490234375}, {"start": 642.49, "end": 642.69, "word": " point", "probability": 0.453125}, {"start": 642.69, "end": 643.55, "word": " of", "probability": 0.611328125}, {"start": 643.55, "end": 643.67, "word": " the", "probability": 0.3662109375}, {"start": 643.67, "end": 643.87, "word": " beginning", "probability": 0.77978515625}, {"start": 643.87, "end": 644.11, "word": " and", "probability": 0.77587890625}, {"start": 644.11, "end": 644.25, "word": " the", "probability": 0.697265625}, {"start": 644.25, "end": 644.73, "word": " beginning", "probability": 0.66455078125}, {"start": 644.73, "end": 644.87, "word": " time.", "probability": 0.548828125}, {"start": 645.43, "end": 645.69, "word": " Okay?", "probability": 0.72998046875}, {"start": 647.09, "end": 647.61, "word": " And", "probability": 0.7373046875}, {"start": 647.61, "end": 647.73, "word": " I", "probability": 0.84716796875}, {"start": 647.73, "end": 647.87, "word": " also", "probability": 0.60791015625}, {"start": 647.87, "end": 648.07, "word": " have", "probability": 0.94677734375}, {"start": 648.07, "end": 648.15, "word": " another", "probability": 0.82373046875}, {"start": 648.15, "end": 648.53, "word": " listener.", "probability": 0.87939453125}, {"start": 649.27, "end": 649.61, "word": " His", "probability": 0.6611328125}, {"start": 649.61, "end": 649.61, "word": " name", "probability": 0.8876953125}, {"start": 649.61, "end": 649.65, "word": " is", "probability": 0.9482421875}, {"start": 649.65, "end": 650.03, "word": " mouse", "probability": 0.58935546875}, {"start": 650.03, "end": 650.45, "word": " motion", "probability": 0.97705078125}, {"start": 650.45, "end": 650.87, "word": " listener.", "probability": 0.83251953125}], "temperature": 1.0}, {"id": 27, "seek": 66886, "start": 651.76, "end": 668.86, "text": "From his name, Hada monitors the movement of the mouse, okay? And Hada brings me a dialer called Mouse Dragged Because now it's like I'm pressing the mouse and I'm dragging it Hada gives me this dialer because while I'm dragging it, it wants me to monitor the time", "tokens": [37, 340, 76, 702, 1315, 11, 389, 1538, 26518, 264, 3963, 295, 264, 9719, 11, 1392, 30, 400, 389, 1538, 5607, 385, 257, 5502, 260, 1219, 29383, 15971, 12244, 1436, 586, 309, 311, 411, 286, 478, 12417, 264, 9719, 293, 286, 478, 24385, 309, 389, 1538, 2709, 385, 341, 5502, 260, 570, 1339, 286, 478, 24385, 309, 11, 309, 2738, 385, 281, 6002, 264, 565], "avg_logprob": -0.5691287869756873, "compression_ratio": 1.6196319018404908, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 651.76, "end": 651.98, "word": "From", "probability": 0.6087646484375}, {"start": 651.98, "end": 652.12, "word": " his", "probability": 0.548828125}, {"start": 652.12, "end": 652.3, "word": " name,", "probability": 0.86474609375}, {"start": 652.68, "end": 652.96, "word": " Hada", "probability": 0.38427734375}, {"start": 652.96, "end": 653.34, "word": " monitors", "probability": 0.210205078125}, {"start": 653.34, "end": 653.48, "word": " the", "probability": 0.6220703125}, {"start": 653.48, "end": 653.7, "word": " movement", "probability": 0.58740234375}, {"start": 653.7, "end": 653.84, "word": " of", "probability": 0.96044921875}, {"start": 653.84, "end": 653.94, "word": " the", "probability": 0.82763671875}, {"start": 653.94, "end": 654.16, "word": " mouse,", "probability": 0.958984375}, {"start": 654.4, "end": 654.92, "word": " okay?", "probability": 0.250732421875}, {"start": 655.56, "end": 655.8, "word": " And", "probability": 0.61474609375}, {"start": 655.8, "end": 656.06, "word": " Hada", "probability": 0.951904296875}, {"start": 656.06, "end": 656.26, "word": " brings", "probability": 0.318603515625}, {"start": 656.26, "end": 656.38, "word": " me", "probability": 0.80322265625}, {"start": 656.38, "end": 656.46, "word": " a", "probability": 0.7109375}, {"start": 656.46, "end": 656.66, "word": " dialer", "probability": 0.55194091796875}, {"start": 656.66, "end": 656.92, "word": " called", "probability": 0.360107421875}, {"start": 656.92, "end": 657.52, "word": " Mouse", "probability": 0.33935546875}, {"start": 657.52, "end": 658.78, "word": " Dragged", "probability": 0.6893310546875}, {"start": 658.78, "end": 659.66, "word": " Because", "probability": 0.135009765625}, {"start": 659.66, "end": 660.12, "word": " now", "probability": 0.4462890625}, {"start": 660.12, "end": 660.58, "word": " it's", "probability": 0.56005859375}, {"start": 660.58, "end": 660.7, "word": " like", "probability": 0.60595703125}, {"start": 660.7, "end": 661.86, "word": " I'm", "probability": 0.825927734375}, {"start": 661.86, "end": 662.12, "word": " pressing", "probability": 0.44921875}, {"start": 662.12, "end": 662.38, "word": " the", "probability": 0.5693359375}, {"start": 662.38, "end": 662.66, "word": " mouse", "probability": 0.9296875}, {"start": 662.66, "end": 662.92, "word": " and", "probability": 0.6865234375}, {"start": 662.92, "end": 663.24, "word": " I'm", "probability": 0.56317138671875}, {"start": 663.24, "end": 663.48, "word": " dragging", "probability": 0.2423095703125}, {"start": 663.48, "end": 664.48, "word": " it", "probability": 0.765625}, {"start": 664.48, "end": 665.4, "word": " Hada", "probability": 0.822265625}, {"start": 665.4, "end": 665.58, "word": " gives", "probability": 0.58056640625}, {"start": 665.58, "end": 665.74, "word": " me", "probability": 0.9013671875}, {"start": 665.74, "end": 665.9, "word": " this", "probability": 0.84033203125}, {"start": 665.9, "end": 666.26, "word": " dialer", "probability": 0.951416015625}, {"start": 666.26, "end": 666.5, "word": " because", "probability": 0.625}, {"start": 666.5, "end": 666.72, "word": " while", "probability": 0.3583984375}, {"start": 666.72, "end": 666.94, "word": " I'm", "probability": 0.805419921875}, {"start": 666.94, "end": 667.26, "word": " dragging", "probability": 0.91796875}, {"start": 667.26, "end": 667.6, "word": " it,", "probability": 0.73974609375}, {"start": 667.72, "end": 667.9, "word": " it", "probability": 0.57568359375}, {"start": 667.9, "end": 667.96, "word": " wants", "probability": 0.142822265625}, {"start": 667.96, "end": 668.18, "word": " me", "probability": 0.5595703125}, {"start": 668.18, "end": 668.26, "word": " to", "probability": 0.96826171875}, {"start": 668.26, "end": 668.42, "word": " monitor", "probability": 0.6640625}, {"start": 668.42, "end": 668.58, "word": " the", "probability": 0.76904296875}, {"start": 668.58, "end": 668.86, "word": " time", "probability": 0.76806640625}], "temperature": 1.0}, {"id": 28, "seek": 69768, "start": 669.58, "end": 697.68, "text": " after passing 10 seconds you have to bring the end point and draw a line from the beginning point to the end point this is the idea but in a very short way we have not yet separated the command pattern yet we are doing the process of what? drawing okay? we come here and define the variables guys integer start x and start y this is the point of what? the beginning point and long start time", "tokens": [934, 8437, 1266, 3949, 291, 362, 281, 1565, 264, 917, 935, 293, 2642, 257, 1622, 490, 264, 2863, 935, 281, 264, 917, 935, 341, 307, 264, 1558, 457, 294, 257, 588, 2099, 636, 321, 362, 406, 1939, 12005, 264, 5622, 5102, 1939, 321, 366, 884, 264, 1399, 295, 437, 30, 6316, 1392, 30, 321, 808, 510, 293, 6964, 264, 9102, 1074, 24922, 722, 2031, 293, 722, 288, 341, 307, 264, 935, 295, 437, 30, 264, 2863, 935, 293, 938, 722, 565], "avg_logprob": -0.5396341485221211, "compression_ratio": 1.8148148148148149, "no_speech_prob": 5.781650543212891e-06, "words": [{"start": 669.58, "end": 669.92, "word": " after", "probability": 0.246826171875}, {"start": 669.92, "end": 670.32, "word": " passing", "probability": 0.236083984375}, {"start": 670.32, "end": 670.86, "word": " 10", "probability": 0.73779296875}, {"start": 670.86, "end": 671.4, "word": " seconds", "probability": 0.65283203125}, {"start": 671.4, "end": 672.14, "word": " you", "probability": 0.2822265625}, {"start": 672.14, "end": 672.3, "word": " have", "probability": 0.1800537109375}, {"start": 672.3, "end": 672.4, "word": " to", "probability": 0.94873046875}, {"start": 672.4, "end": 672.58, "word": " bring", "probability": 0.186767578125}, {"start": 672.58, "end": 672.7, "word": " the", "probability": 0.63525390625}, {"start": 672.7, "end": 673.2, "word": " end", "probability": 0.405029296875}, {"start": 673.2, "end": 673.36, "word": " point", "probability": 0.8994140625}, {"start": 673.36, "end": 673.48, "word": " and", "probability": 0.646484375}, {"start": 673.48, "end": 673.76, "word": " draw", "probability": 0.666015625}, {"start": 673.76, "end": 674.62, "word": " a", "probability": 0.76123046875}, {"start": 674.62, "end": 674.72, "word": " line", "probability": 0.90478515625}, {"start": 674.72, "end": 674.92, "word": " from", "probability": 0.8115234375}, {"start": 674.92, "end": 675.34, "word": " the", "probability": 0.791015625}, {"start": 675.34, "end": 675.56, "word": " beginning", "probability": 0.43359375}, {"start": 675.56, "end": 676.08, "word": " point", "probability": 0.658203125}, {"start": 676.08, "end": 676.54, "word": " to", "probability": 0.93017578125}, {"start": 676.54, "end": 676.62, "word": " the", "probability": 0.81982421875}, {"start": 676.62, "end": 676.8, "word": " end", "probability": 0.935546875}, {"start": 676.8, "end": 677.2, "word": " point", "probability": 0.55322265625}, {"start": 677.2, "end": 677.82, "word": " this", "probability": 0.595703125}, {"start": 677.82, "end": 677.9, "word": " is", "probability": 0.888671875}, {"start": 677.9, "end": 677.96, "word": " the", "probability": 0.88671875}, {"start": 677.96, "end": 678.2, "word": " idea", "probability": 0.861328125}, {"start": 678.2, "end": 678.48, "word": " but", "probability": 0.2822265625}, {"start": 678.48, "end": 678.64, "word": " in", "probability": 0.470703125}, {"start": 678.64, "end": 678.64, "word": " a", "probability": 0.477783203125}, {"start": 678.64, "end": 678.64, "word": " very", "probability": 0.46142578125}, {"start": 678.64, "end": 678.88, "word": " short", "probability": 0.80810546875}, {"start": 678.88, "end": 679.22, "word": " way", "probability": 0.275634765625}, {"start": 679.22, "end": 679.82, "word": " we", "probability": 0.64306640625}, {"start": 679.82, "end": 679.82, "word": " have", "probability": 0.26513671875}, {"start": 679.82, "end": 679.96, "word": " not", "probability": 0.8857421875}, {"start": 679.96, "end": 679.96, "word": " yet", "probability": 0.6455078125}, {"start": 679.96, "end": 680.3, "word": " separated", "probability": 0.301025390625}, {"start": 680.3, "end": 680.54, "word": " the", "probability": 0.46142578125}, {"start": 680.54, "end": 680.8, "word": " command", "probability": 0.599609375}, {"start": 680.8, "end": 681.14, "word": " pattern", "probability": 0.8828125}, {"start": 681.14, "end": 681.52, "word": " yet", "probability": 0.24072265625}, {"start": 681.52, "end": 681.96, "word": " we", "probability": 0.485107421875}, {"start": 681.96, "end": 682.2, "word": " are", "probability": 0.8662109375}, {"start": 682.2, "end": 682.54, "word": " doing", "probability": 0.56591796875}, {"start": 682.54, "end": 682.76, "word": " the", "probability": 0.50830078125}, {"start": 682.76, "end": 682.82, "word": " process", "probability": 0.374755859375}, {"start": 682.82, "end": 683.04, "word": " of", "probability": 0.9189453125}, {"start": 683.04, "end": 683.26, "word": " what?", "probability": 0.409912109375}, {"start": 684.02, "end": 684.44, "word": " drawing", "probability": 0.646484375}, {"start": 684.44, "end": 685.08, "word": " okay?", "probability": 0.1771240234375}, {"start": 685.54, "end": 685.78, "word": " we", "probability": 0.52392578125}, {"start": 685.78, "end": 685.9, "word": " come", "probability": 0.72802734375}, {"start": 685.9, "end": 686.18, "word": " here", "probability": 0.84423828125}, {"start": 686.18, "end": 686.32, "word": " and", "probability": 0.66845703125}, {"start": 686.32, "end": 686.58, "word": " define", "probability": 0.265380859375}, {"start": 686.58, "end": 686.74, "word": " the", "probability": 0.406982421875}, {"start": 686.74, "end": 687.22, "word": " variables", "probability": 0.7109375}, {"start": 687.22, "end": 687.76, "word": " guys", "probability": 0.35400390625}, {"start": 687.76, "end": 688.44, "word": " integer", "probability": 0.6484375}, {"start": 688.44, "end": 689.44, "word": " start", "probability": 0.79833984375}, {"start": 689.44, "end": 689.82, "word": " x", "probability": 0.67626953125}, {"start": 689.82, "end": 691.26, "word": " and", "probability": 0.7353515625}, {"start": 691.26, "end": 691.78, "word": " start", "probability": 0.95556640625}, {"start": 691.78, "end": 692.22, "word": " y", "probability": 0.97265625}, {"start": 692.22, "end": 692.4, "word": " this", "probability": 0.5078125}, {"start": 692.4, "end": 692.8, "word": " is", "probability": 0.7626953125}, {"start": 692.8, "end": 692.94, "word": " the", "probability": 0.3671875}, {"start": 692.94, "end": 693.14, "word": " point", "probability": 0.379150390625}, {"start": 693.14, "end": 693.28, "word": " of", "probability": 0.75439453125}, {"start": 693.28, "end": 693.52, "word": " what?", "probability": 0.787109375}, {"start": 693.94, "end": 694.48, "word": " the", "probability": 0.654296875}, {"start": 694.48, "end": 694.74, "word": " beginning", "probability": 0.84814453125}, {"start": 694.74, "end": 694.9, "word": " point", "probability": 0.7021484375}, {"start": 694.9, "end": 695.28, "word": " and", "probability": 0.82763671875}, {"start": 695.28, "end": 695.62, "word": " long", "probability": 0.89794921875}, {"start": 695.62, "end": 697.22, "word": " start", "probability": 0.84228515625}, {"start": 697.22, "end": 697.68, "word": " time", "probability": 0.84130859375}], "temperature": 1.0}, {"id": 29, "seek": 71875, "start": 700.83, "end": 718.75, "text": "which is the time of the beginning. These values are not yet defined yet. When will he start to store the point of the beginning and the time of the beginning? At the moment when I press here, okay? So at this press, he has to get the point that he pressed. How does he get this point?", "tokens": [13690, 307, 264, 565, 295, 264, 2863, 13, 1981, 4190, 366, 406, 1939, 7642, 1939, 13, 1133, 486, 415, 722, 281, 3531, 264, 935, 295, 264, 2863, 293, 264, 565, 295, 264, 2863, 30, 1711, 264, 1623, 562, 286, 1886, 510, 11, 1392, 30, 407, 412, 341, 1886, 11, 415, 575, 281, 483, 264, 935, 300, 415, 17355, 13, 1012, 775, 415, 483, 341, 935, 30], "avg_logprob": -0.597947748739328, "compression_ratio": 1.6964285714285714, "no_speech_prob": 1.2755393981933594e-05, "words": [{"start": 700.83, "end": 701.07, "word": "which", "probability": 0.15380859375}, {"start": 701.07, "end": 701.23, "word": " is", "probability": 0.76220703125}, {"start": 701.23, "end": 701.55, "word": " the", "probability": 0.71728515625}, {"start": 701.55, "end": 701.55, "word": " time", "probability": 0.155517578125}, {"start": 701.55, "end": 703.51, "word": " of", "probability": 0.439697265625}, {"start": 703.51, "end": 703.53, "word": " the", "probability": 0.47314453125}, {"start": 703.53, "end": 703.73, "word": " beginning.", "probability": 0.79248046875}, {"start": 703.85, "end": 704.19, "word": " These", "probability": 0.23095703125}, {"start": 704.19, "end": 704.53, "word": " values", "probability": 0.41650390625}, {"start": 704.53, "end": 704.75, "word": " are", "probability": 0.39306640625}, {"start": 704.75, "end": 704.95, "word": " not", "probability": 0.371337890625}, {"start": 704.95, "end": 706.31, "word": " yet", "probability": 0.432373046875}, {"start": 706.31, "end": 706.41, "word": " defined", "probability": 0.467041015625}, {"start": 706.41, "end": 706.55, "word": " yet.", "probability": 0.25732421875}, {"start": 706.95, "end": 707.35, "word": " When", "probability": 0.70458984375}, {"start": 707.35, "end": 707.53, "word": " will", "probability": 0.658203125}, {"start": 707.53, "end": 707.67, "word": " he", "probability": 0.391357421875}, {"start": 707.67, "end": 707.99, "word": " start", "probability": 0.68408203125}, {"start": 707.99, "end": 708.25, "word": " to", "probability": 0.330322265625}, {"start": 708.25, "end": 708.59, "word": " store", "probability": 0.68896484375}, {"start": 708.59, "end": 708.85, "word": " the", "probability": 0.80029296875}, {"start": 708.85, "end": 709.03, "word": " point", "probability": 0.466552734375}, {"start": 709.03, "end": 709.23, "word": " of", "probability": 0.8681640625}, {"start": 709.23, "end": 709.27, "word": " the", "probability": 0.7060546875}, {"start": 709.27, "end": 709.55, "word": " beginning", "probability": 0.90283203125}, {"start": 709.55, "end": 709.89, "word": " and", "probability": 0.865234375}, {"start": 709.89, "end": 710.05, "word": " the", "probability": 0.74462890625}, {"start": 710.05, "end": 710.19, "word": " time", "probability": 0.6025390625}, {"start": 710.19, "end": 710.33, "word": " of", "probability": 0.93359375}, {"start": 710.33, "end": 710.39, "word": " the", "probability": 0.87109375}, {"start": 710.39, "end": 710.67, "word": " beginning?", "probability": 0.94189453125}, {"start": 711.11, "end": 711.49, "word": " At", "probability": 0.5302734375}, {"start": 711.49, "end": 711.65, "word": " the", "probability": 0.91796875}, {"start": 711.65, "end": 711.83, "word": " moment", "probability": 0.90869140625}, {"start": 711.83, "end": 711.95, "word": " when", "probability": 0.25634765625}, {"start": 711.95, "end": 712.05, "word": " I", "probability": 0.91748046875}, {"start": 712.05, "end": 712.71, "word": " press", "probability": 0.6455078125}, {"start": 712.71, "end": 713.55, "word": " here,", "probability": 0.31787109375}, {"start": 714.15, "end": 714.47, "word": " okay?", "probability": 0.321044921875}, {"start": 714.85, "end": 715.05, "word": " So", "probability": 0.689453125}, {"start": 715.05, "end": 715.21, "word": " at", "probability": 0.267578125}, {"start": 715.21, "end": 715.37, "word": " this", "probability": 0.77978515625}, {"start": 715.37, "end": 715.67, "word": " press,", "probability": 0.6767578125}, {"start": 715.95, "end": 716.15, "word": " he", "probability": 0.377685546875}, {"start": 716.15, "end": 716.29, "word": " has", "probability": 0.2403564453125}, {"start": 716.29, "end": 716.37, "word": " to", "probability": 0.96923828125}, {"start": 716.37, "end": 716.51, "word": " get", "probability": 0.439697265625}, {"start": 716.51, "end": 716.71, "word": " the", "probability": 0.84130859375}, {"start": 716.71, "end": 716.93, "word": " point", "probability": 0.9306640625}, {"start": 716.93, "end": 717.09, "word": " that", "probability": 0.44873046875}, {"start": 717.09, "end": 717.13, "word": " he", "probability": 0.4296875}, {"start": 717.13, "end": 717.29, "word": " pressed.", "probability": 0.1788330078125}, {"start": 717.87, "end": 718.07, "word": " How", "probability": 0.90771484375}, {"start": 718.07, "end": 718.23, "word": " does", "probability": 0.8525390625}, {"start": 718.23, "end": 718.27, "word": " he", "probability": 0.93212890625}, {"start": 718.27, "end": 718.39, "word": " get", "probability": 0.6728515625}, {"start": 718.39, "end": 718.53, "word": " this", "probability": 0.86669921875}, {"start": 718.53, "end": 718.75, "word": " point?", "probability": 0.9677734375}], "temperature": 1.0}, {"id": 30, "seek": 74973, "start": 720.27, "end": 749.73, "text": "the mouse event, you see it? this is the mouse event that comes that at any point I press, it brings me to its destination how do I bring it? E dot get X and E dot get Y and these two dots, I want to store them where? in start X and start Y it also starts counting the time, the start time", "tokens": [3322, 9719, 2280, 11, 291, 536, 309, 30, 341, 307, 264, 9719, 2280, 300, 1487, 300, 412, 604, 935, 286, 1886, 11, 309, 5607, 385, 281, 1080, 12236, 577, 360, 286, 1565, 309, 30, 462, 5893, 483, 1783, 293, 462, 5893, 483, 398, 293, 613, 732, 15026, 11, 286, 528, 281, 3531, 552, 689, 30, 294, 722, 1783, 293, 722, 398, 309, 611, 3719, 13251, 264, 565, 11, 264, 722, 565], "avg_logprob": -0.549045162068473, "compression_ratio": 1.6900584795321638, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 720.27, "end": 720.47, "word": "the", "probability": 0.09088134765625}, {"start": 720.47, "end": 720.71, "word": " mouse", "probability": 0.87158203125}, {"start": 720.71, "end": 721.03, "word": " event,", "probability": 0.8857421875}, {"start": 721.21, "end": 721.35, "word": " you", "probability": 0.182373046875}, {"start": 721.35, "end": 721.59, "word": " see", "probability": 0.85009765625}, {"start": 721.59, "end": 721.85, "word": " it?", "probability": 0.292236328125}, {"start": 722.05, "end": 722.43, "word": " this", "probability": 0.54345703125}, {"start": 722.43, "end": 722.43, "word": " is", "probability": 0.76171875}, {"start": 722.43, "end": 722.53, "word": " the", "probability": 0.78857421875}, {"start": 722.53, "end": 722.73, "word": " mouse", "probability": 0.89794921875}, {"start": 722.73, "end": 723.05, "word": " event", "probability": 0.908203125}, {"start": 723.05, "end": 723.25, "word": " that", "probability": 0.73681640625}, {"start": 723.25, "end": 723.39, "word": " comes", "probability": 0.442138671875}, {"start": 723.39, "end": 724.25, "word": " that", "probability": 0.232177734375}, {"start": 724.25, "end": 724.69, "word": " at", "probability": 0.412109375}, {"start": 724.69, "end": 725.03, "word": " any", "probability": 0.775390625}, {"start": 725.03, "end": 725.25, "word": " point", "probability": 0.95068359375}, {"start": 725.25, "end": 725.37, "word": " I", "probability": 0.5166015625}, {"start": 725.37, "end": 725.91, "word": " press,", "probability": 0.671875}, {"start": 726.21, "end": 726.37, "word": " it", "probability": 0.8349609375}, {"start": 726.37, "end": 726.53, "word": " brings", "probability": 0.478271484375}, {"start": 726.53, "end": 726.67, "word": " me", "probability": 0.439453125}, {"start": 726.67, "end": 726.79, "word": " to", "probability": 0.27294921875}, {"start": 726.79, "end": 726.79, "word": " its", "probability": 0.55224609375}, {"start": 726.79, "end": 727.23, "word": " destination", "probability": 0.70703125}, {"start": 727.23, "end": 728.07, "word": " how", "probability": 0.273681640625}, {"start": 728.07, "end": 728.15, "word": " do", "probability": 0.296142578125}, {"start": 728.15, "end": 728.23, "word": " I", "probability": 0.8994140625}, {"start": 728.23, "end": 728.37, "word": " bring", "probability": 0.270263671875}, {"start": 728.37, "end": 728.53, "word": " it?", "probability": 0.9140625}, {"start": 728.55, "end": 728.75, "word": " E", "probability": 0.55712890625}, {"start": 728.75, "end": 728.97, "word": " dot", "probability": 0.56884765625}, {"start": 728.97, "end": 729.25, "word": " get", "probability": 0.9150390625}, {"start": 729.25, "end": 730.49, "word": " X", "probability": 0.4892578125}, {"start": 730.49, "end": 731.49, "word": " and", "probability": 0.7861328125}, {"start": 731.49, "end": 731.89, "word": " E", "probability": 0.99267578125}, {"start": 731.89, "end": 732.57, "word": " dot", "probability": 0.96240234375}, {"start": 732.57, "end": 732.95, "word": " get", "probability": 0.939453125}, {"start": 732.95, "end": 734.29, "word": " Y", "probability": 0.97900390625}, {"start": 734.29, "end": 735.29, "word": " and", "probability": 0.80126953125}, {"start": 735.29, "end": 735.63, "word": " these", "probability": 0.57373046875}, {"start": 735.63, "end": 735.75, "word": " two", "probability": 0.87451171875}, {"start": 735.75, "end": 736.07, "word": " dots,", "probability": 0.26220703125}, {"start": 736.61, "end": 736.73, "word": " I", "probability": 0.89501953125}, {"start": 736.73, "end": 736.83, "word": " want", "probability": 0.441162109375}, {"start": 736.83, "end": 736.91, "word": " to", "probability": 0.8671875}, {"start": 736.91, "end": 737.13, "word": " store", "probability": 0.787109375}, {"start": 737.13, "end": 738.35, "word": " them", "probability": 0.8447265625}, {"start": 738.35, "end": 738.67, "word": " where?", "probability": 0.71923828125}, {"start": 739.33, "end": 739.53, "word": " in", "probability": 0.63623046875}, {"start": 739.53, "end": 740.07, "word": " start", "probability": 0.79833984375}, {"start": 740.07, "end": 740.95, "word": " X", "probability": 0.68798828125}, {"start": 740.95, "end": 744.71, "word": " and", "probability": 0.84521484375}, {"start": 744.71, "end": 745.21, "word": " start", "probability": 0.9365234375}, {"start": 745.21, "end": 746.11, "word": " Y", "probability": 0.9912109375}, {"start": 746.11, "end": 747.05, "word": " it", "probability": 0.2333984375}, {"start": 747.05, "end": 747.13, "word": " also", "probability": 0.72216796875}, {"start": 747.13, "end": 747.47, "word": " starts", "probability": 0.474853515625}, {"start": 747.47, "end": 748.29, "word": " counting", "probability": 0.3828125}, {"start": 748.29, "end": 748.39, "word": " the", "probability": 0.375}, {"start": 748.39, "end": 748.65, "word": " time,", "probability": 0.68115234375}, {"start": 748.87, "end": 748.99, "word": " the", "probability": 0.5556640625}, {"start": 748.99, "end": 749.31, "word": " start", "probability": 0.92529296875}, {"start": 749.31, "end": 749.73, "word": " time", "probability": 0.87451171875}], "temperature": 1.0}, {"id": 31, "seek": 77484, "start": 751.24, "end": 774.84, "text": "In the current time, there is a method called system.currenttime milliseconds. This current time means in milliseconds. I saved it in the start time. Now, when I start to press, I start to draw. Okay? When I draw, it will keep track of the time. If it passed 100 milliseconds or 10 seconds, it will start to draw.", "tokens": [4575, 264, 2190, 565, 11, 456, 307, 257, 3170, 1219, 1185, 13, 49827, 3766, 34184, 13, 639, 2190, 565, 1355, 294, 34184, 13, 286, 6624, 309, 294, 264, 722, 565, 13, 823, 11, 562, 286, 722, 281, 1886, 11, 286, 722, 281, 2642, 13, 1033, 30, 1133, 286, 2642, 11, 309, 486, 1066, 2837, 295, 264, 565, 13, 759, 309, 4678, 2319, 34184, 420, 1266, 3949, 11, 309, 486, 722, 281, 2642, 13], "avg_logprob": -0.5806588031150199, "compression_ratio": 1.7885714285714285, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 751.24, "end": 751.5, "word": "In", "probability": 0.158203125}, {"start": 751.5, "end": 751.5, "word": " the", "probability": 0.318603515625}, {"start": 751.5, "end": 751.62, "word": " current", "probability": 0.397705078125}, {"start": 751.62, "end": 752.04, "word": " time,", "probability": 0.705078125}, {"start": 752.36, "end": 752.66, "word": " there", "probability": 0.78759765625}, {"start": 752.66, "end": 752.92, "word": " is", "probability": 0.712890625}, {"start": 752.92, "end": 753.5, "word": " a", "probability": 0.88232421875}, {"start": 753.5, "end": 753.5, "word": " method", "probability": 0.68603515625}, {"start": 753.5, "end": 753.74, "word": " called", "probability": 0.2037353515625}, {"start": 753.74, "end": 754.3, "word": " system", "probability": 0.65771484375}, {"start": 754.3, "end": 755.32, "word": ".currenttime", "probability": 0.74169921875}, {"start": 755.32, "end": 756.66, "word": " milliseconds.", "probability": 0.1048583984375}, {"start": 757.26, "end": 757.58, "word": " This", "probability": 0.19482421875}, {"start": 757.58, "end": 757.72, "word": " current", "probability": 0.389404296875}, {"start": 757.72, "end": 758.3, "word": " time", "probability": 0.85009765625}, {"start": 758.3, "end": 758.76, "word": " means", "probability": 0.3876953125}, {"start": 758.76, "end": 759.04, "word": " in", "probability": 0.241943359375}, {"start": 759.04, "end": 759.56, "word": " milliseconds.", "probability": 0.78369140625}, {"start": 760.1, "end": 760.18, "word": " I", "probability": 0.70703125}, {"start": 760.18, "end": 760.44, "word": " saved", "probability": 0.413818359375}, {"start": 760.44, "end": 760.62, "word": " it", "probability": 0.8251953125}, {"start": 760.62, "end": 760.64, "word": " in", "probability": 0.7734375}, {"start": 760.64, "end": 760.72, "word": " the", "probability": 0.5869140625}, {"start": 760.72, "end": 760.96, "word": " start", "probability": 0.92822265625}, {"start": 760.96, "end": 761.24, "word": " time.", "probability": 0.83544921875}, {"start": 761.98, "end": 762.34, "word": " Now,", "probability": 0.71923828125}, {"start": 762.52, "end": 762.86, "word": " when", "probability": 0.86181640625}, {"start": 762.86, "end": 763.06, "word": " I", "probability": 0.95556640625}, {"start": 763.06, "end": 763.24, "word": " start", "probability": 0.46630859375}, {"start": 763.24, "end": 763.32, "word": " to", "probability": 0.407958984375}, {"start": 763.32, "end": 763.6, "word": " press,", "probability": 0.6162109375}, {"start": 763.76, "end": 764.1, "word": " I", "probability": 0.43505859375}, {"start": 764.1, "end": 764.16, "word": " start", "probability": 0.6845703125}, {"start": 764.16, "end": 764.38, "word": " to", "probability": 0.68359375}, {"start": 764.38, "end": 764.72, "word": " draw.", "probability": 0.1463623046875}, {"start": 765.6, "end": 765.88, "word": " Okay?", "probability": 0.278076171875}, {"start": 765.96, "end": 766.1, "word": " When", "probability": 0.31982421875}, {"start": 766.1, "end": 766.26, "word": " I", "probability": 0.984375}, {"start": 766.26, "end": 766.68, "word": " draw,", "probability": 0.70458984375}, {"start": 767.22, "end": 767.22, "word": " it", "probability": 0.29248046875}, {"start": 767.22, "end": 767.36, "word": " will", "probability": 0.333251953125}, {"start": 767.36, "end": 767.58, "word": " keep", "probability": 0.43505859375}, {"start": 767.58, "end": 768.48, "word": " track", "probability": 0.1612548828125}, {"start": 768.48, "end": 768.62, "word": " of", "probability": 0.966796875}, {"start": 768.62, "end": 768.7, "word": " the", "probability": 0.5966796875}, {"start": 768.7, "end": 768.92, "word": " time.", "probability": 0.86865234375}, {"start": 769.42, "end": 769.7, "word": " If", "probability": 0.9404296875}, {"start": 769.7, "end": 769.78, "word": " it", "probability": 0.52978515625}, {"start": 769.78, "end": 770.02, "word": " passed", "probability": 0.17822265625}, {"start": 770.02, "end": 771.06, "word": " 100", "probability": 0.60986328125}, {"start": 771.06, "end": 771.72, "word": " milliseconds", "probability": 0.7939453125}, {"start": 771.72, "end": 772.02, "word": " or", "probability": 0.83056640625}, {"start": 772.02, "end": 772.24, "word": " 10", "probability": 0.703125}, {"start": 772.24, "end": 772.74, "word": " seconds,", "probability": 0.7607421875}, {"start": 773.52, "end": 773.52, "word": " it", "probability": 0.8271484375}, {"start": 773.52, "end": 773.9, "word": " will", "probability": 0.654296875}, {"start": 773.9, "end": 774.56, "word": " start", "probability": 0.84423828125}, {"start": 774.56, "end": 774.62, "word": " to", "probability": 0.66796875}, {"start": 774.62, "end": 774.84, "word": " draw.", "probability": 0.82421875}], "temperature": 1.0}, {"id": 32, "seek": 80470, "start": 775.5, "end": 804.7, "text": "ok? it means that it will only draw after 10 seconds so this is important to know in the method mouse of the drug ok? I want to tell you guys that when you make a drug you have to measure the time look at the time what I did here it's changed it's name is current time it's equal to system dot current time millisecond and when you make a drug you have to propose it the current time", "tokens": [453, 30, 309, 1355, 300, 309, 486, 787, 2642, 934, 1266, 3949, 370, 341, 307, 1021, 281, 458, 294, 264, 3170, 9719, 295, 264, 4110, 3133, 30, 286, 528, 281, 980, 291, 1074, 300, 562, 291, 652, 257, 4110, 291, 362, 281, 3481, 264, 565, 574, 412, 264, 565, 437, 286, 630, 510, 309, 311, 3105, 309, 311, 1315, 307, 2190, 565, 309, 311, 2681, 281, 1185, 5893, 2190, 565, 27940, 18882, 293, 562, 291, 652, 257, 4110, 291, 362, 281, 17421, 309, 264, 2190, 565], "avg_logprob": -0.6580459961945984, "compression_ratio": 1.8413461538461537, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 775.5, "end": 776.02, "word": "ok?", "probability": 0.10015869140625}, {"start": 776.34, "end": 776.76, "word": " it", "probability": 0.2117919921875}, {"start": 776.76, "end": 776.76, "word": " means", "probability": 0.5009765625}, {"start": 776.76, "end": 776.9, "word": " that", "probability": 0.466552734375}, {"start": 776.9, "end": 776.9, "word": " it", "probability": 0.53271484375}, {"start": 776.9, "end": 777.2, "word": " will", "probability": 0.59814453125}, {"start": 777.2, "end": 777.2, "word": " only", "probability": 0.1961669921875}, {"start": 777.2, "end": 777.54, "word": " draw", "probability": 0.6923828125}, {"start": 777.54, "end": 778.0, "word": " after", "probability": 0.693359375}, {"start": 778.0, "end": 779.42, "word": " 10", "probability": 0.42041015625}, {"start": 779.42, "end": 780.06, "word": " seconds", "probability": 0.66796875}, {"start": 780.06, "end": 780.84, "word": " so", "probability": 0.19873046875}, {"start": 780.84, "end": 781.04, "word": " this", "probability": 0.6318359375}, {"start": 781.04, "end": 781.26, "word": " is", "probability": 0.6201171875}, {"start": 781.26, "end": 781.46, "word": " important", "probability": 0.484130859375}, {"start": 781.46, "end": 781.62, "word": " to", "probability": 0.4541015625}, {"start": 781.62, "end": 781.98, "word": " know", "probability": 0.408935546875}, {"start": 781.98, "end": 782.18, "word": " in", "probability": 0.6865234375}, {"start": 782.18, "end": 782.26, "word": " the", "probability": 0.282958984375}, {"start": 782.26, "end": 782.48, "word": " method", "probability": 0.7255859375}, {"start": 782.48, "end": 782.9, "word": " mouse", "probability": 0.83251953125}, {"start": 782.9, "end": 783.56, "word": " of", "probability": 0.1285400390625}, {"start": 783.56, "end": 783.56, "word": " the", "probability": 0.5146484375}, {"start": 783.56, "end": 783.74, "word": " drug", "probability": 0.15283203125}, {"start": 783.74, "end": 784.9, "word": " ok?", "probability": 0.537109375}, {"start": 785.68, "end": 785.9, "word": " I", "probability": 0.64990234375}, {"start": 785.9, "end": 785.98, "word": " want", "probability": 0.63037109375}, {"start": 785.98, "end": 786.06, "word": " to", "probability": 0.95458984375}, {"start": 786.06, "end": 786.16, "word": " tell", "probability": 0.64111328125}, {"start": 786.16, "end": 786.24, "word": " you", "probability": 0.81884765625}, {"start": 786.24, "end": 786.36, "word": " guys", "probability": 0.139892578125}, {"start": 786.36, "end": 786.68, "word": " that", "probability": 0.327392578125}, {"start": 786.68, "end": 786.92, "word": " when", "probability": 0.5712890625}, {"start": 786.92, "end": 787.18, "word": " you", "probability": 0.9541015625}, {"start": 787.18, "end": 787.46, "word": " make", "probability": 0.4541015625}, {"start": 787.46, "end": 787.6, "word": " a", "probability": 0.50244140625}, {"start": 787.6, "end": 787.9, "word": " drug", "probability": 0.94677734375}, {"start": 787.9, "end": 788.44, "word": " you", "probability": 0.342041015625}, {"start": 788.44, "end": 788.44, "word": " have", "probability": 0.1962890625}, {"start": 788.44, "end": 788.6, "word": " to", "probability": 0.78173828125}, {"start": 788.6, "end": 788.9, "word": " measure", "probability": 0.38671875}, {"start": 788.9, "end": 789.04, "word": " the", "probability": 0.595703125}, {"start": 789.04, "end": 789.16, "word": " time", "probability": 0.5205078125}, {"start": 789.16, "end": 789.4, "word": " look", "probability": 0.1856689453125}, {"start": 789.4, "end": 789.54, "word": " at", "probability": 0.79541015625}, {"start": 789.54, "end": 789.6, "word": " the", "probability": 0.79248046875}, {"start": 789.6, "end": 789.8, "word": " time", "probability": 0.81689453125}, {"start": 789.8, "end": 791.02, "word": " what", "probability": 0.163818359375}, {"start": 791.02, "end": 791.14, "word": " I", "probability": 0.38818359375}, {"start": 791.14, "end": 791.34, "word": " did", "probability": 0.51806640625}, {"start": 791.34, "end": 791.64, "word": " here", "probability": 0.78125}, {"start": 791.64, "end": 791.92, "word": " it's", "probability": 0.344970703125}, {"start": 791.92, "end": 792.2, "word": " changed", "probability": 0.394775390625}, {"start": 792.2, "end": 792.36, "word": " it's", "probability": 0.65673828125}, {"start": 792.36, "end": 792.5, "word": " name", "probability": 0.481689453125}, {"start": 792.5, "end": 792.56, "word": " is", "probability": 0.85693359375}, {"start": 792.56, "end": 792.8, "word": " current", "probability": 0.6923828125}, {"start": 792.8, "end": 793.86, "word": " time", "probability": 0.560546875}, {"start": 793.86, "end": 794.44, "word": " it's", "probability": 0.4110107421875}, {"start": 794.44, "end": 794.7, "word": " equal", "probability": 0.78955078125}, {"start": 794.7, "end": 795.04, "word": " to", "probability": 0.884765625}, {"start": 795.04, "end": 795.56, "word": " system", "probability": 0.89794921875}, {"start": 795.56, "end": 796.54, "word": " dot", "probability": 0.6005859375}, {"start": 796.54, "end": 798.46, "word": " current", "probability": 0.865234375}, {"start": 798.46, "end": 798.8, "word": " time", "probability": 0.72314453125}, {"start": 798.8, "end": 799.3, "word": " millisecond", "probability": 0.6903076171875}, {"start": 799.3, "end": 801.28, "word": " and", "probability": 0.73779296875}, {"start": 801.28, "end": 801.72, "word": " when", "probability": 0.7099609375}, {"start": 801.72, "end": 802.0, "word": " you", "probability": 0.966796875}, {"start": 802.0, "end": 802.18, "word": " make", "probability": 0.87451171875}, {"start": 802.18, "end": 802.32, "word": " a", "probability": 0.8876953125}, {"start": 802.32, "end": 802.46, "word": " drug", "probability": 0.931640625}, {"start": 802.46, "end": 802.62, "word": " you", "probability": 0.83935546875}, {"start": 802.62, "end": 802.7, "word": " have", "probability": 0.74365234375}, {"start": 802.7, "end": 802.9, "word": " to", "probability": 0.96630859375}, {"start": 802.9, "end": 803.26, "word": " propose", "probability": 0.097412109375}, {"start": 803.26, "end": 803.58, "word": " it", "probability": 0.55517578125}, {"start": 803.58, "end": 804.0, "word": " the", "probability": 0.357666015625}, {"start": 804.0, "end": 804.26, "word": " current", "probability": 0.87548828125}, {"start": 804.26, "end": 804.7, "word": " time", "probability": 0.8984375}], "temperature": 1.0}, {"id": 33, "seek": 83320, "start": 807.24, "end": 833.2, "text": "minus the start time if the difference between them reaches more than 100, 100 millisecond means 10 seconds, okay? get the current point and draw from the start to the current point what is the current point? where will it be present in the mouse event? that is, what is inside the F will not be executed unless the time becomes 100 milliseconds", "tokens": [2367, 301, 264, 722, 565, 498, 264, 2649, 1296, 552, 14235, 544, 813, 2319, 11, 2319, 27940, 18882, 1355, 1266, 3949, 11, 1392, 30, 483, 264, 2190, 935, 293, 2642, 490, 264, 722, 281, 264, 2190, 935, 437, 307, 264, 2190, 935, 30, 689, 486, 309, 312, 1974, 294, 264, 9719, 2280, 30, 300, 307, 11, 437, 307, 1854, 264, 479, 486, 406, 312, 17577, 5969, 264, 565, 3643, 2319, 34184], "avg_logprob": -0.5394965178436704, "compression_ratio": 1.796875, "no_speech_prob": 1.8835067749023438e-05, "words": [{"start": 807.24, "end": 807.84, "word": "minus", "probability": 0.52099609375}, {"start": 807.84, "end": 808.44, "word": " the", "probability": 0.355712890625}, {"start": 808.44, "end": 808.76, "word": " start", "probability": 0.90087890625}, {"start": 808.76, "end": 809.06, "word": " time", "probability": 0.82373046875}, {"start": 809.06, "end": 809.76, "word": " if", "probability": 0.5263671875}, {"start": 809.76, "end": 809.9, "word": " the", "probability": 0.77294921875}, {"start": 809.9, "end": 810.16, "word": " difference", "probability": 0.76611328125}, {"start": 810.16, "end": 810.42, "word": " between", "probability": 0.7158203125}, {"start": 810.42, "end": 810.66, "word": " them", "probability": 0.853515625}, {"start": 810.66, "end": 811.12, "word": " reaches", "probability": 0.328125}, {"start": 811.12, "end": 811.38, "word": " more", "probability": 0.76220703125}, {"start": 811.38, "end": 811.62, "word": " than", "probability": 0.9150390625}, {"start": 811.62, "end": 812.0, "word": " 100,", "probability": 0.77099609375}, {"start": 812.88, "end": 813.36, "word": " 100", "probability": 0.44873046875}, {"start": 813.36, "end": 813.92, "word": " millisecond", "probability": 0.6204833984375}, {"start": 813.92, "end": 814.2, "word": " means", "probability": 0.3740234375}, {"start": 814.2, "end": 814.86, "word": " 10", "probability": 0.56396484375}, {"start": 814.86, "end": 815.48, "word": " seconds,", "probability": 0.5205078125}, {"start": 815.62, "end": 816.24, "word": " okay?", "probability": 0.108154296875}, {"start": 816.88, "end": 817.32, "word": " get", "probability": 0.11737060546875}, {"start": 817.32, "end": 817.82, "word": " the", "probability": 0.78955078125}, {"start": 817.82, "end": 819.76, "word": " current", "probability": 0.57666015625}, {"start": 819.76, "end": 819.92, "word": " point", "probability": 0.9111328125}, {"start": 819.92, "end": 820.72, "word": " and", "probability": 0.7275390625}, {"start": 820.72, "end": 820.96, "word": " draw", "probability": 0.7822265625}, {"start": 820.96, "end": 821.14, "word": " from", "probability": 0.796875}, {"start": 821.14, "end": 821.36, "word": " the", "probability": 0.81689453125}, {"start": 821.36, "end": 821.82, "word": " start", "probability": 0.7939453125}, {"start": 821.82, "end": 822.32, "word": " to", "probability": 0.87744140625}, {"start": 822.32, "end": 822.4, "word": " the", "probability": 0.86572265625}, {"start": 822.4, "end": 822.9, "word": " current", "probability": 0.767578125}, {"start": 822.9, "end": 822.98, "word": " point", "probability": 0.95654296875}, {"start": 822.98, "end": 823.6, "word": " what", "probability": 0.32080078125}, {"start": 823.6, "end": 823.72, "word": " is", "probability": 0.74560546875}, {"start": 823.72, "end": 823.76, "word": " the", "probability": 0.75}, {"start": 823.76, "end": 823.76, "word": " current", "probability": 0.77880859375}, {"start": 823.76, "end": 824.16, "word": " point?", "probability": 0.96630859375}, {"start": 824.32, "end": 824.42, "word": " where", "probability": 0.6103515625}, {"start": 824.42, "end": 824.52, "word": " will", "probability": 0.452392578125}, {"start": 824.52, "end": 824.6, "word": " it", "probability": 0.857421875}, {"start": 824.6, "end": 824.74, "word": " be", "probability": 0.9345703125}, {"start": 824.74, "end": 825.12, "word": " present", "probability": 0.58203125}, {"start": 825.12, "end": 825.96, "word": " in", "probability": 0.7548828125}, {"start": 825.96, "end": 826.06, "word": " the", "probability": 0.82568359375}, {"start": 826.06, "end": 826.28, "word": " mouse", "probability": 0.91064453125}, {"start": 826.28, "end": 826.9, "word": " event?", "probability": 0.72900390625}, {"start": 827.74, "end": 827.84, "word": " that", "probability": 0.1812744140625}, {"start": 827.84, "end": 827.84, "word": " is,", "probability": 0.435302734375}, {"start": 827.88, "end": 828.32, "word": " what", "probability": 0.22265625}, {"start": 828.32, "end": 829.4, "word": " is", "probability": 0.8154296875}, {"start": 829.4, "end": 829.72, "word": " inside", "probability": 0.75390625}, {"start": 829.72, "end": 829.84, "word": " the", "probability": 0.75341796875}, {"start": 829.84, "end": 829.96, "word": " F", "probability": 0.66015625}, {"start": 829.96, "end": 830.08, "word": " will", "probability": 0.650390625}, {"start": 830.08, "end": 830.22, "word": " not", "probability": 0.92138671875}, {"start": 830.22, "end": 830.4, "word": " be", "probability": 0.50732421875}, {"start": 830.4, "end": 830.66, "word": " executed", "probability": 0.57763671875}, {"start": 830.66, "end": 830.94, "word": " unless", "probability": 0.5712890625}, {"start": 830.94, "end": 831.5, "word": " the", "probability": 0.615234375}, {"start": 831.5, "end": 831.86, "word": " time", "probability": 0.85107421875}, {"start": 831.86, "end": 831.92, "word": " becomes", "probability": 0.34033203125}, {"start": 831.92, "end": 832.78, "word": " 100", "probability": 0.9091796875}, {"start": 832.78, "end": 833.2, "word": " milliseconds", "probability": 0.5869140625}], "temperature": 1.0}, {"id": 34, "seek": 85221, "start": 833.73, "end": 852.21, "text": "Okay? Now, what are we going to do? We are going to draw straight away. I want to tell him drawing panel. We draw on the drawing panel. dot this dot get graphics. Through this graphics, we draw. We tell him that there is a prepared method called draw line.", "tokens": [8297, 30, 823, 11, 437, 366, 321, 516, 281, 360, 30, 492, 366, 516, 281, 2642, 2997, 1314, 13, 286, 528, 281, 980, 796, 6316, 4831, 13, 492, 2642, 322, 264, 6316, 4831, 13, 5893, 341, 5893, 483, 11837, 13, 8927, 341, 11837, 11, 321, 2642, 13, 492, 980, 796, 300, 456, 307, 257, 4927, 3170, 1219, 2642, 1622, 13], "avg_logprob": -0.5143442701120846, "compression_ratio": 1.6, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 833.73, "end": 834.25, "word": "Okay?", "probability": 0.300048828125}, {"start": 834.87, "end": 835.31, "word": " Now,", "probability": 0.53515625}, {"start": 835.63, "end": 836.19, "word": " what", "probability": 0.763671875}, {"start": 836.19, "end": 836.29, "word": " are", "probability": 0.402587890625}, {"start": 836.29, "end": 836.39, "word": " we", "probability": 0.87646484375}, {"start": 836.39, "end": 836.39, "word": " going", "probability": 0.87451171875}, {"start": 836.39, "end": 836.41, "word": " to", "probability": 0.974609375}, {"start": 836.41, "end": 836.61, "word": " do?", "probability": 0.96484375}, {"start": 836.69, "end": 836.71, "word": " We", "probability": 0.833984375}, {"start": 836.71, "end": 836.91, "word": " are", "probability": 0.2301025390625}, {"start": 836.91, "end": 836.91, "word": " going", "probability": 0.92626953125}, {"start": 836.91, "end": 836.91, "word": " to", "probability": 0.96630859375}, {"start": 836.91, "end": 837.17, "word": " draw", "probability": 0.8310546875}, {"start": 837.17, "end": 837.85, "word": " straight", "probability": 0.1121826171875}, {"start": 837.85, "end": 837.97, "word": " away.", "probability": 0.385986328125}, {"start": 838.09, "end": 838.35, "word": " I", "probability": 0.90576171875}, {"start": 838.35, "end": 838.43, "word": " want", "probability": 0.41943359375}, {"start": 838.43, "end": 838.51, "word": " to", "probability": 0.97265625}, {"start": 838.51, "end": 838.63, "word": " tell", "probability": 0.541015625}, {"start": 838.63, "end": 838.73, "word": " him", "probability": 0.74365234375}, {"start": 838.73, "end": 839.01, "word": " drawing", "probability": 0.30908203125}, {"start": 839.01, "end": 839.49, "word": " panel.", "probability": 0.89208984375}, {"start": 839.57, "end": 839.73, "word": " We", "probability": 0.85107421875}, {"start": 839.73, "end": 840.03, "word": " draw", "probability": 0.798828125}, {"start": 840.03, "end": 840.21, "word": " on", "probability": 0.875}, {"start": 840.21, "end": 840.31, "word": " the", "probability": 0.370849609375}, {"start": 840.31, "end": 840.55, "word": " drawing", "probability": 0.8671875}, {"start": 840.55, "end": 842.51, "word": " panel.", "probability": 0.92431640625}, {"start": 842.79, "end": 843.31, "word": " dot", "probability": 0.08544921875}, {"start": 843.31, "end": 843.63, "word": " this", "probability": 0.9296875}, {"start": 843.63, "end": 844.11, "word": " dot", "probability": 0.71923828125}, {"start": 844.11, "end": 844.57, "word": " get", "probability": 0.86572265625}, {"start": 844.57, "end": 845.07, "word": " graphics.", "probability": 0.82568359375}, {"start": 845.19, "end": 845.39, "word": " Through", "probability": 0.218017578125}, {"start": 845.39, "end": 845.71, "word": " this", "probability": 0.492919921875}, {"start": 845.71, "end": 846.03, "word": " graphics,", "probability": 0.8193359375}, {"start": 846.23, "end": 846.51, "word": " we", "probability": 0.93994140625}, {"start": 846.51, "end": 847.51, "word": " draw.", "probability": 0.85302734375}, {"start": 848.35, "end": 848.85, "word": " We", "probability": 0.86669921875}, {"start": 848.85, "end": 849.07, "word": " tell", "probability": 0.611328125}, {"start": 849.07, "end": 849.31, "word": " him", "probability": 0.90869140625}, {"start": 849.31, "end": 849.61, "word": " that", "probability": 0.261962890625}, {"start": 849.61, "end": 849.71, "word": " there", "probability": 0.57421875}, {"start": 849.71, "end": 849.79, "word": " is", "probability": 0.83740234375}, {"start": 849.79, "end": 850.05, "word": " a", "probability": 0.90966796875}, {"start": 850.05, "end": 850.37, "word": " prepared", "probability": 0.177978515625}, {"start": 850.37, "end": 850.39, "word": " method", "probability": 0.92626953125}, {"start": 850.39, "end": 850.75, "word": " called", "probability": 0.513671875}, {"start": 850.75, "end": 851.07, "word": " draw", "probability": 0.61181640625}, {"start": 851.07, "end": 852.21, "word": " line.", "probability": 0.70361328125}], "temperature": 1.0}, {"id": 35, "seek": 88117, "start": 854.55, "end": 881.17, "text": "This draw line takes 4 parameters, which are the two points, the starting point and the ending point, from where to where they want to draw, from start x and start y to the current point that has reached now, which is E dot get x and E dot get y", "tokens": [5723, 2642, 1622, 2516, 1017, 9834, 11, 597, 366, 264, 732, 2793, 11, 264, 2891, 935, 293, 264, 8121, 935, 11, 490, 689, 281, 689, 436, 528, 281, 2642, 11, 490, 722, 2031, 293, 722, 288, 281, 264, 2190, 935, 300, 575, 6488, 586, 11, 597, 307, 462, 5893, 483, 2031, 293, 462, 5893, 483, 288], "avg_logprob": -0.4750548203786214, "compression_ratio": 1.6554054054054055, "no_speech_prob": 6.4373016357421875e-06, "words": [{"start": 854.55, "end": 855.23, "word": "This", "probability": 0.1260986328125}, {"start": 855.23, "end": 855.55, "word": " draw", "probability": 0.22216796875}, {"start": 855.55, "end": 855.93, "word": " line", "probability": 0.66943359375}, {"start": 855.93, "end": 856.49, "word": " takes", "probability": 0.35107421875}, {"start": 856.49, "end": 857.21, "word": " 4", "probability": 0.603515625}, {"start": 857.21, "end": 858.21, "word": " parameters,", "probability": 0.92333984375}, {"start": 858.41, "end": 858.43, "word": " which", "probability": 0.537109375}, {"start": 858.43, "end": 858.59, "word": " are", "probability": 0.794921875}, {"start": 858.59, "end": 858.71, "word": " the", "probability": 0.4912109375}, {"start": 858.71, "end": 859.15, "word": " two", "probability": 0.54931640625}, {"start": 859.15, "end": 859.15, "word": " points,", "probability": 0.609375}, {"start": 859.81, "end": 859.89, "word": " the", "probability": 0.646484375}, {"start": 859.89, "end": 860.31, "word": " starting", "probability": 0.480712890625}, {"start": 860.31, "end": 860.41, "word": " point", "probability": 0.8994140625}, {"start": 860.41, "end": 860.91, "word": " and", "probability": 0.92822265625}, {"start": 860.91, "end": 861.37, "word": " the", "probability": 0.91357421875}, {"start": 861.37, "end": 861.57, "word": " ending", "probability": 0.49755859375}, {"start": 861.57, "end": 862.03, "word": " point,", "probability": 0.9736328125}, {"start": 862.69, "end": 862.85, "word": " from", "probability": 0.435302734375}, {"start": 862.85, "end": 863.11, "word": " where", "probability": 0.6123046875}, {"start": 863.11, "end": 863.21, "word": " to", "probability": 0.71240234375}, {"start": 863.21, "end": 863.33, "word": " where", "probability": 0.94091796875}, {"start": 863.33, "end": 863.45, "word": " they", "probability": 0.2802734375}, {"start": 863.45, "end": 863.57, "word": " want", "probability": 0.70263671875}, {"start": 863.57, "end": 863.57, "word": " to", "probability": 0.947265625}, {"start": 863.57, "end": 863.77, "word": " draw,", "probability": 0.6142578125}, {"start": 864.11, "end": 864.29, "word": " from", "probability": 0.80615234375}, {"start": 864.29, "end": 864.73, "word": " start", "probability": 0.71533203125}, {"start": 864.73, "end": 865.15, "word": " x", "probability": 0.451171875}, {"start": 865.15, "end": 867.81, "word": " and", "probability": 0.65380859375}, {"start": 867.81, "end": 868.19, "word": " start", "probability": 0.94775390625}, {"start": 868.19, "end": 868.63, "word": " y", "probability": 0.96435546875}, {"start": 868.63, "end": 870.29, "word": " to", "probability": 0.80712890625}, {"start": 870.29, "end": 870.99, "word": " the", "probability": 0.86865234375}, {"start": 870.99, "end": 871.71, "word": " current", "probability": 0.5830078125}, {"start": 871.71, "end": 871.75, "word": " point", "probability": 0.92138671875}, {"start": 871.75, "end": 871.93, "word": " that", "probability": 0.424072265625}, {"start": 871.93, "end": 872.11, "word": " has", "probability": 0.251953125}, {"start": 872.11, "end": 872.11, "word": " reached", "probability": 0.541015625}, {"start": 872.11, "end": 872.57, "word": " now,", "probability": 0.69482421875}, {"start": 873.07, "end": 873.21, "word": " which", "probability": 0.89990234375}, {"start": 873.21, "end": 873.35, "word": " is", "probability": 0.9501953125}, {"start": 873.35, "end": 873.61, "word": " E", "probability": 0.69189453125}, {"start": 873.61, "end": 874.13, "word": " dot", "probability": 0.67529296875}, {"start": 874.13, "end": 875.75, "word": " get", "probability": 0.90576171875}, {"start": 875.75, "end": 876.19, "word": " x", "probability": 0.89990234375}, {"start": 876.19, "end": 879.07, "word": " and", "probability": 0.84716796875}, {"start": 879.07, "end": 879.39, "word": " E", "probability": 0.97705078125}, {"start": 879.39, "end": 880.13, "word": " dot", "probability": 0.966796875}, {"start": 880.13, "end": 880.85, "word": " get", "probability": 0.9541015625}, {"start": 880.85, "end": 881.17, "word": " y", "probability": 0.9375}], "temperature": 1.0}, {"id": 36, "seek": 91670, "start": 887.42, "end": 916.7, "text": "Okay? We're almost done. We have one more step left. What is it? That now he drew the line. Now he has to change the starting point. The ending point that reached him now is the starting point. And the time that reached him now is the ending point. The starting point as well. So we tell him this gate that start x will change to e dot gate x. So that he starts calculating a new line. Am I right guys? And end", "tokens": [8297, 30, 492, 434, 1920, 1096, 13, 492, 362, 472, 544, 1823, 1411, 13, 708, 307, 309, 30, 663, 586, 415, 12804, 264, 1622, 13, 823, 415, 575, 281, 1319, 264, 2891, 935, 13, 440, 8121, 935, 300, 6488, 796, 586, 307, 264, 2891, 935, 13, 400, 264, 565, 300, 6488, 796, 586, 307, 264, 8121, 935, 13, 440, 2891, 935, 382, 731, 13, 407, 321, 980, 796, 341, 8539, 300, 722, 2031, 486, 1319, 281, 308, 5893, 8539, 2031, 13, 407, 300, 415, 3719, 28258, 257, 777, 1622, 13, 2012, 286, 558, 1074, 30, 400, 917], "avg_logprob": -0.5239158272743225, "compression_ratio": 1.8894009216589862, "no_speech_prob": 2.002716064453125e-05, "words": [{"start": 887.42, "end": 887.74, "word": "Okay?", "probability": 0.10101318359375}, {"start": 887.84, "end": 888.0, "word": " We're", "probability": 0.343505859375}, {"start": 888.0, "end": 888.14, "word": " almost", "probability": 0.61572265625}, {"start": 888.14, "end": 888.54, "word": " done.", "probability": 0.77685546875}, {"start": 888.64, "end": 888.78, "word": " We", "probability": 0.488037109375}, {"start": 888.78, "end": 888.78, "word": " have", "probability": 0.23583984375}, {"start": 888.78, "end": 888.9, "word": " one", "probability": 0.64404296875}, {"start": 888.9, "end": 888.9, "word": " more", "probability": 0.5439453125}, {"start": 888.9, "end": 889.08, "word": " step", "probability": 0.8330078125}, {"start": 889.08, "end": 889.64, "word": " left.", "probability": 0.461669921875}, {"start": 889.66, "end": 889.86, "word": " What", "probability": 0.61474609375}, {"start": 889.86, "end": 890.04, "word": " is", "probability": 0.68798828125}, {"start": 890.04, "end": 890.16, "word": " it?", "probability": 0.7607421875}, {"start": 890.66, "end": 890.9, "word": " That", "probability": 0.240234375}, {"start": 890.9, "end": 891.32, "word": " now", "probability": 0.80712890625}, {"start": 891.32, "end": 893.66, "word": " he", "probability": 0.21484375}, {"start": 893.66, "end": 893.66, "word": " drew", "probability": 0.82177734375}, {"start": 893.66, "end": 893.86, "word": " the", "probability": 0.53466796875}, {"start": 893.86, "end": 894.06, "word": " line.", "probability": 0.9267578125}, {"start": 894.3, "end": 894.76, "word": " Now", "probability": 0.57568359375}, {"start": 894.76, "end": 895.08, "word": " he", "probability": 0.69677734375}, {"start": 895.08, "end": 895.12, "word": " has", "probability": 0.318359375}, {"start": 895.12, "end": 895.12, "word": " to", "probability": 0.9697265625}, {"start": 895.12, "end": 895.36, "word": " change", "probability": 0.8671875}, {"start": 895.36, "end": 895.86, "word": " the", "probability": 0.8779296875}, {"start": 895.86, "end": 895.98, "word": " starting", "probability": 0.52685546875}, {"start": 895.98, "end": 896.0, "word": " point.", "probability": 0.97802734375}, {"start": 896.48, "end": 896.66, "word": " The", "probability": 0.54296875}, {"start": 896.66, "end": 897.44, "word": " ending", "probability": 0.251220703125}, {"start": 897.44, "end": 897.66, "word": " point", "probability": 0.9658203125}, {"start": 897.66, "end": 897.8, "word": " that", "probability": 0.58935546875}, {"start": 897.8, "end": 898.02, "word": " reached", "probability": 0.30224609375}, {"start": 898.02, "end": 898.26, "word": " him", "probability": 0.303466796875}, {"start": 898.26, "end": 898.84, "word": " now", "probability": 0.36083984375}, {"start": 898.84, "end": 899.06, "word": " is", "probability": 0.708984375}, {"start": 899.06, "end": 899.66, "word": " the", "probability": 0.857421875}, {"start": 899.66, "end": 899.94, "word": " starting", "probability": 0.398193359375}, {"start": 899.94, "end": 899.94, "word": " point.", "probability": 0.9755859375}, {"start": 900.16, "end": 900.62, "word": " And", "probability": 0.70458984375}, {"start": 900.62, "end": 900.72, "word": " the", "probability": 0.857421875}, {"start": 900.72, "end": 900.96, "word": " time", "probability": 0.7294921875}, {"start": 900.96, "end": 901.08, "word": " that", "probability": 0.6904296875}, {"start": 901.08, "end": 901.28, "word": " reached", "probability": 0.64208984375}, {"start": 901.28, "end": 901.52, "word": " him", "probability": 0.91259765625}, {"start": 901.52, "end": 902.1, "word": " now", "probability": 0.7958984375}, {"start": 902.1, "end": 902.74, "word": " is", "probability": 0.9140625}, {"start": 902.74, "end": 902.84, "word": " the", "probability": 0.90283203125}, {"start": 902.84, "end": 903.04, "word": " ending", "probability": 0.72216796875}, {"start": 903.04, "end": 903.52, "word": " point.", "probability": 0.857421875}, {"start": 903.56, "end": 903.66, "word": " The", "probability": 0.456787109375}, {"start": 903.66, "end": 903.98, "word": " starting", "probability": 0.5703125}, {"start": 903.98, "end": 904.22, "word": " point", "probability": 0.84130859375}, {"start": 904.22, "end": 904.72, "word": " as", "probability": 0.2276611328125}, {"start": 904.72, "end": 904.72, "word": " well.", "probability": 0.9384765625}, {"start": 905.16, "end": 905.58, "word": " So", "probability": 0.482666015625}, {"start": 905.58, "end": 905.72, "word": " we", "probability": 0.64990234375}, {"start": 905.72, "end": 905.94, "word": " tell", "probability": 0.2012939453125}, {"start": 905.94, "end": 906.04, "word": " him", "probability": 0.640625}, {"start": 906.04, "end": 906.14, "word": " this", "probability": 0.21875}, {"start": 906.14, "end": 906.32, "word": " gate", "probability": 0.379638671875}, {"start": 906.32, "end": 906.52, "word": " that", "probability": 0.483154296875}, {"start": 906.52, "end": 907.2, "word": " start", "probability": 0.677734375}, {"start": 907.2, "end": 907.72, "word": " x", "probability": 0.60546875}, {"start": 907.72, "end": 908.36, "word": " will", "probability": 0.6650390625}, {"start": 908.36, "end": 908.68, "word": " change", "probability": 0.826171875}, {"start": 908.68, "end": 908.9, "word": " to", "probability": 0.556640625}, {"start": 908.9, "end": 909.4, "word": " e", "probability": 0.6103515625}, {"start": 909.4, "end": 909.56, "word": " dot", "probability": 0.77734375}, {"start": 909.56, "end": 909.88, "word": " gate", "probability": 0.78759765625}, {"start": 909.88, "end": 911.26, "word": " x.", "probability": 0.98876953125}, {"start": 911.38, "end": 911.48, "word": " So", "probability": 0.6162109375}, {"start": 911.48, "end": 911.58, "word": " that", "probability": 0.6259765625}, {"start": 911.58, "end": 911.64, "word": " he", "probability": 0.9384765625}, {"start": 911.64, "end": 911.82, "word": " starts", "probability": 0.47119140625}, {"start": 911.82, "end": 912.22, "word": " calculating", "probability": 0.6103515625}, {"start": 912.22, "end": 913.18, "word": " a", "probability": 0.822265625}, {"start": 913.18, "end": 913.18, "word": " new", "probability": 0.89111328125}, {"start": 913.18, "end": 913.38, "word": " line.", "probability": 0.95068359375}, {"start": 914.1, "end": 914.56, "word": " Am", "probability": 0.496337890625}, {"start": 914.56, "end": 914.58, "word": " I", "probability": 0.96435546875}, {"start": 914.58, "end": 914.58, "word": " right", "probability": 0.7890625}, {"start": 914.58, "end": 914.96, "word": " guys?", "probability": 0.4853515625}, {"start": 915.8, "end": 916.26, "word": " And", "probability": 0.7490234375}, {"start": 916.26, "end": 916.7, "word": " end", "probability": 0.88134765625}], "temperature": 1.0}, {"id": 37, "seek": 94227, "start": 917.37, "end": 942.27, "text": "and start y will be E dot get y and start time is the current time ok and as long as I am doing drugs, I go back to what I did", "tokens": [474, 722, 288, 486, 312, 462, 5893, 483, 288, 293, 722, 565, 307, 264, 2190, 565, 3133, 293, 382, 938, 382, 286, 669, 884, 7766, 11, 286, 352, 646, 281, 437, 286, 630], "avg_logprob": -0.6806066194001366, "compression_ratio": 1.2857142857142858, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 917.37, "end": 917.65, "word": "and", "probability": 0.2607421875}, {"start": 917.65, "end": 918.05, "word": " start", "probability": 0.8515625}, {"start": 918.05, "end": 919.35, "word": " y", "probability": 0.127197265625}, {"start": 919.35, "end": 920.31, "word": " will", "probability": 0.568359375}, {"start": 920.31, "end": 920.57, "word": " be", "probability": 0.93603515625}, {"start": 920.57, "end": 920.77, "word": " E", "probability": 0.5224609375}, {"start": 920.77, "end": 921.03, "word": " dot", "probability": 0.493408203125}, {"start": 921.03, "end": 921.29, "word": " get", "probability": 0.9189453125}, {"start": 921.29, "end": 923.61, "word": " y", "probability": 0.66650390625}, {"start": 923.61, "end": 924.77, "word": " and", "probability": 0.84228515625}, {"start": 924.77, "end": 925.39, "word": " start", "probability": 0.9248046875}, {"start": 925.39, "end": 928.05, "word": " time", "probability": 0.85107421875}, {"start": 928.05, "end": 929.61, "word": " is", "probability": 0.53271484375}, {"start": 929.61, "end": 931.79, "word": " the", "probability": 0.3876953125}, {"start": 931.79, "end": 932.03, "word": " current", "probability": 0.900390625}, {"start": 932.03, "end": 935.07, "word": " time", "probability": 0.87841796875}, {"start": 935.07, "end": 939.43, "word": " ok", "probability": 0.10650634765625}, {"start": 939.43, "end": 940.01, "word": " and", "probability": 0.377685546875}, {"start": 940.01, "end": 940.51, "word": " as", "probability": 0.272216796875}, {"start": 940.51, "end": 940.53, "word": " long", "probability": 0.7607421875}, {"start": 940.53, "end": 940.63, "word": " as", "probability": 0.95361328125}, {"start": 940.63, "end": 940.81, "word": " I", "probability": 0.81591796875}, {"start": 940.81, "end": 940.87, "word": " am", "probability": 0.2415771484375}, {"start": 940.87, "end": 941.01, "word": " doing", "probability": 0.666015625}, {"start": 941.01, "end": 941.39, "word": " drugs,", "probability": 0.44921875}, {"start": 941.53, "end": 941.65, "word": " I", "probability": 0.382080078125}, {"start": 941.65, "end": 941.69, "word": " go", "probability": 0.1192626953125}, {"start": 941.69, "end": 941.83, "word": " back", "probability": 0.8125}, {"start": 941.83, "end": 941.89, "word": " to", "probability": 0.84521484375}, {"start": 941.89, "end": 942.03, "word": " what", "probability": 0.45361328125}, {"start": 942.03, "end": 942.13, "word": " I", "probability": 0.2484130859375}, {"start": 942.13, "end": 942.27, "word": " did", "probability": 0.681640625}], "temperature": 1.0}, {"id": 38, "seek": 96412, "start": 943.94, "end": 964.12, "text": "read current time and compare current time with who if it reaches 100 seconds, I draw a new line and at the end point I save it again as a starting point and starting time because until now we have not talked about command pattern at all because it is supposed that after this moment if I run", "tokens": [2538, 2190, 565, 293, 6794, 2190, 565, 365, 567, 498, 309, 14235, 2319, 3949, 11, 286, 2642, 257, 777, 1622, 293, 412, 264, 917, 935, 286, 3155, 309, 797, 382, 257, 2891, 935, 293, 2891, 565, 570, 1826, 586, 321, 362, 406, 2825, 466, 5622, 5102, 412, 439, 570, 309, 307, 3442, 300, 934, 341, 1623, 498, 286, 1190], "avg_logprob": -0.5614583452542623, "compression_ratio": 1.6222222222222222, "no_speech_prob": 6.735324859619141e-06, "words": [{"start": 943.94, "end": 944.42, "word": "read", "probability": 0.17431640625}, {"start": 944.42, "end": 944.82, "word": " current", "probability": 0.371826171875}, {"start": 944.82, "end": 945.26, "word": " time", "probability": 0.75732421875}, {"start": 945.26, "end": 945.44, "word": " and", "probability": 0.83349609375}, {"start": 945.44, "end": 945.8, "word": " compare", "probability": 0.8720703125}, {"start": 945.8, "end": 946.38, "word": " current", "probability": 0.68359375}, {"start": 946.38, "end": 946.74, "word": " time", "probability": 0.86376953125}, {"start": 946.74, "end": 946.82, "word": " with", "probability": 0.830078125}, {"start": 946.82, "end": 947.08, "word": " who", "probability": 0.26416015625}, {"start": 947.08, "end": 947.66, "word": " if", "probability": 0.1341552734375}, {"start": 947.66, "end": 948.24, "word": " it", "probability": 0.60693359375}, {"start": 948.24, "end": 948.46, "word": " reaches", "probability": 0.5791015625}, {"start": 948.46, "end": 948.72, "word": " 100", "probability": 0.7744140625}, {"start": 948.72, "end": 949.18, "word": " seconds,", "probability": 0.481689453125}, {"start": 949.98, "end": 950.1, "word": " I", "probability": 0.462890625}, {"start": 950.1, "end": 950.46, "word": " draw", "probability": 0.493408203125}, {"start": 950.46, "end": 950.64, "word": " a", "probability": 0.60400390625}, {"start": 950.64, "end": 951.02, "word": " new", "probability": 0.73974609375}, {"start": 951.02, "end": 951.02, "word": " line", "probability": 0.9208984375}, {"start": 951.02, "end": 951.86, "word": " and", "probability": 0.71630859375}, {"start": 951.86, "end": 951.98, "word": " at", "probability": 0.4013671875}, {"start": 951.98, "end": 952.04, "word": " the", "probability": 0.8974609375}, {"start": 952.04, "end": 952.66, "word": " end", "probability": 0.6435546875}, {"start": 952.66, "end": 953.34, "word": " point", "probability": 0.348388671875}, {"start": 953.34, "end": 953.48, "word": " I", "probability": 0.417724609375}, {"start": 953.48, "end": 953.74, "word": " save", "probability": 0.402099609375}, {"start": 953.74, "end": 953.94, "word": " it", "probability": 0.389892578125}, {"start": 953.94, "end": 954.26, "word": " again", "probability": 0.82470703125}, {"start": 954.26, "end": 954.58, "word": " as", "probability": 0.6982421875}, {"start": 954.58, "end": 954.68, "word": " a", "probability": 0.630859375}, {"start": 954.68, "end": 955.04, "word": " starting", "probability": 0.681640625}, {"start": 955.04, "end": 955.28, "word": " point", "probability": 0.97705078125}, {"start": 955.28, "end": 955.8, "word": " and", "probability": 0.8154296875}, {"start": 955.8, "end": 955.92, "word": " starting", "probability": 0.498291015625}, {"start": 955.92, "end": 956.38, "word": " time", "probability": 0.488525390625}, {"start": 956.38, "end": 957.7, "word": " because", "probability": 0.638671875}, {"start": 957.7, "end": 958.02, "word": " until", "probability": 0.290283203125}, {"start": 958.02, "end": 958.42, "word": " now", "probability": 0.9404296875}, {"start": 958.42, "end": 958.72, "word": " we", "probability": 0.7412109375}, {"start": 958.72, "end": 958.78, "word": " have", "probability": 0.292236328125}, {"start": 958.78, "end": 958.78, "word": " not", "probability": 0.84716796875}, {"start": 958.78, "end": 959.08, "word": " talked", "probability": 0.529296875}, {"start": 959.08, "end": 959.28, "word": " about", "probability": 0.8671875}, {"start": 959.28, "end": 959.6, "word": " command", "probability": 0.59423828125}, {"start": 959.6, "end": 960.02, "word": " pattern", "probability": 0.77001953125}, {"start": 960.02, "end": 960.68, "word": " at", "probability": 0.86572265625}, {"start": 960.68, "end": 961.16, "word": " all", "probability": 0.9521484375}, {"start": 961.16, "end": 961.68, "word": " because", "probability": 0.171630859375}, {"start": 961.68, "end": 961.82, "word": " it", "probability": 0.322509765625}, {"start": 961.82, "end": 961.86, "word": " is", "probability": 0.59326171875}, {"start": 961.86, "end": 962.18, "word": " supposed", "probability": 0.88623046875}, {"start": 962.18, "end": 962.36, "word": " that", "probability": 0.265625}, {"start": 962.36, "end": 962.52, "word": " after", "probability": 0.70556640625}, {"start": 962.52, "end": 962.64, "word": " this", "probability": 0.90625}, {"start": 962.64, "end": 962.94, "word": " moment", "probability": 0.86865234375}, {"start": 962.94, "end": 963.3, "word": " if", "probability": 0.68408203125}, {"start": 963.3, "end": 963.56, "word": " I", "probability": 0.9453125}, {"start": 963.56, "end": 964.12, "word": " run", "probability": 0.40380859375}], "temperature": 1.0}, {"id": 39, "seek": 98883, "start": 966.51, "end": 988.83, "text": "Okay? Did you see what's supposed to happen? He draws the line, but the undo and redo aren't working yet. We're going to start applying the command pattern now. The first thing in applying the command pattern is that it creates an interface that represents all kinds of commands that I have, and from it it creates a concrete command.", "tokens": [8297, 30, 2589, 291, 536, 437, 311, 3442, 281, 1051, 30, 634, 20045, 264, 1622, 11, 457, 264, 23779, 293, 29956, 3212, 380, 1364, 1939, 13, 492, 434, 516, 281, 722, 9275, 264, 5622, 5102, 586, 13, 440, 700, 551, 294, 9275, 264, 5622, 5102, 307, 300, 309, 7829, 364, 9226, 300, 8855, 439, 3685, 295, 16901, 300, 286, 362, 11, 293, 490, 309, 309, 7829, 257, 9859, 5622, 13], "avg_logprob": -0.43816022050212805, "compression_ratio": 1.6616915422885572, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 966.51, "end": 966.85, "word": "Okay?", "probability": 0.329345703125}, {"start": 966.93, "end": 967.23, "word": " Did", "probability": 0.441162109375}, {"start": 967.23, "end": 967.23, "word": " you", "probability": 0.970703125}, {"start": 967.23, "end": 967.23, "word": " see", "probability": 0.2666015625}, {"start": 967.23, "end": 967.45, "word": " what's", "probability": 0.54345703125}, {"start": 967.45, "end": 967.69, "word": " supposed", "probability": 0.84375}, {"start": 967.69, "end": 967.83, "word": " to", "probability": 0.97265625}, {"start": 967.83, "end": 968.11, "word": " happen?", "probability": 0.875}, {"start": 968.85, "end": 969.11, "word": " He", "probability": 0.4111328125}, {"start": 969.11, "end": 969.37, "word": " draws", "probability": 0.62939453125}, {"start": 969.37, "end": 970.65, "word": " the", "probability": 0.6064453125}, {"start": 970.65, "end": 970.99, "word": " line,", "probability": 0.84326171875}, {"start": 971.15, "end": 971.91, "word": " but", "probability": 0.900390625}, {"start": 971.91, "end": 972.31, "word": " the", "probability": 0.467529296875}, {"start": 972.31, "end": 972.57, "word": " undo", "probability": 0.8671875}, {"start": 972.57, "end": 972.77, "word": " and", "probability": 0.544921875}, {"start": 972.77, "end": 972.97, "word": " redo", "probability": 0.8876953125}, {"start": 972.97, "end": 973.97, "word": " aren't", "probability": 0.5731201171875}, {"start": 973.97, "end": 974.55, "word": " working", "probability": 0.62890625}, {"start": 974.55, "end": 974.91, "word": " yet.", "probability": 0.63818359375}, {"start": 975.95, "end": 976.47, "word": " We're", "probability": 0.36004638671875}, {"start": 976.47, "end": 976.49, "word": " going", "probability": 0.7763671875}, {"start": 976.49, "end": 976.53, "word": " to", "probability": 0.9658203125}, {"start": 976.53, "end": 976.67, "word": " start", "probability": 0.72119140625}, {"start": 976.67, "end": 977.29, "word": " applying", "probability": 0.689453125}, {"start": 977.29, "end": 977.87, "word": " the", "probability": 0.814453125}, {"start": 977.87, "end": 978.25, "word": " command", "probability": 0.88037109375}, {"start": 978.25, "end": 978.69, "word": " pattern", "probability": 0.91748046875}, {"start": 978.69, "end": 978.71, "word": " now.", "probability": 0.6923828125}, {"start": 979.35, "end": 979.67, "word": " The", "probability": 0.7861328125}, {"start": 979.67, "end": 979.75, "word": " first", "probability": 0.87646484375}, {"start": 979.75, "end": 980.01, "word": " thing", "probability": 0.8525390625}, {"start": 980.01, "end": 980.11, "word": " in", "probability": 0.49072265625}, {"start": 980.11, "end": 980.39, "word": " applying", "probability": 0.58544921875}, {"start": 980.39, "end": 980.55, "word": " the", "probability": 0.814453125}, {"start": 980.55, "end": 980.87, "word": " command", "probability": 0.86376953125}, {"start": 980.87, "end": 981.15, "word": " pattern", "probability": 0.85009765625}, {"start": 981.15, "end": 981.31, "word": " is", "probability": 0.8505859375}, {"start": 981.31, "end": 981.39, "word": " that", "probability": 0.72265625}, {"start": 981.39, "end": 981.61, "word": " it", "probability": 0.6533203125}, {"start": 981.61, "end": 982.01, "word": " creates", "probability": 0.365234375}, {"start": 982.01, "end": 982.17, "word": " an", "probability": 0.89453125}, {"start": 982.17, "end": 982.77, "word": " interface", "probability": 0.892578125}, {"start": 982.77, "end": 983.65, "word": " that", "probability": 0.71142578125}, {"start": 983.65, "end": 984.03, "word": " represents", "probability": 0.76953125}, {"start": 984.03, "end": 984.91, "word": " all", "probability": 0.82666015625}, {"start": 984.91, "end": 985.17, "word": " kinds", "probability": 0.357177734375}, {"start": 985.17, "end": 985.27, "word": " of", "probability": 0.9736328125}, {"start": 985.27, "end": 985.61, "word": " commands", "probability": 0.90625}, {"start": 985.61, "end": 985.75, "word": " that", "probability": 0.48193359375}, {"start": 985.75, "end": 985.97, "word": " I", "probability": 0.90380859375}, {"start": 985.97, "end": 986.03, "word": " have,", "probability": 0.93505859375}, {"start": 986.49, "end": 986.67, "word": " and", "probability": 0.818359375}, {"start": 986.67, "end": 986.71, "word": " from", "probability": 0.293212890625}, {"start": 986.71, "end": 986.85, "word": " it", "probability": 0.53125}, {"start": 986.85, "end": 986.95, "word": " it", "probability": 0.51171875}, {"start": 986.95, "end": 987.13, "word": " creates", "probability": 0.5537109375}, {"start": 987.13, "end": 987.31, "word": " a", "probability": 0.93896484375}, {"start": 987.31, "end": 987.79, "word": " concrete", "probability": 0.89501953125}, {"start": 987.79, "end": 988.83, "word": " command.", "probability": 0.8583984375}], "temperature": 1.0}, {"id": 40, "seek": 101977, "start": 990.81, "end": 1019.77, "text": " Because I want to make a class or interface called draw command Okay, I want to put this interface in the previous lecture we did method execute But this time I want to do two methods execute and unexecute So every command I want to do and I want to specify how this command is executed and how it is cancelled", "tokens": [1436, 286, 528, 281, 652, 257, 1508, 420, 9226, 1219, 2642, 5622, 1033, 11, 286, 528, 281, 829, 341, 9226, 294, 264, 3894, 7991, 321, 630, 3170, 14483, 583, 341, 565, 286, 528, 281, 360, 732, 7150, 14483, 293, 11572, 3045, 1169, 407, 633, 5622, 286, 528, 281, 360, 293, 286, 528, 281, 16500, 577, 341, 5622, 307, 17577, 293, 577, 309, 307, 25103], "avg_logprob": -0.48389423076923077, "compression_ratio": 1.8294117647058823, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 990.81, "end": 991.11, "word": " Because", "probability": 0.208251953125}, {"start": 991.11, "end": 991.51, "word": " I", "probability": 0.89990234375}, {"start": 991.51, "end": 991.77, "word": " want", "probability": 0.353759765625}, {"start": 991.77, "end": 991.93, "word": " to", "probability": 0.9619140625}, {"start": 991.93, "end": 992.15, "word": " make", "probability": 0.436767578125}, {"start": 992.15, "end": 992.55, "word": " a", "probability": 0.80810546875}, {"start": 992.55, "end": 992.99, "word": " class", "probability": 0.9580078125}, {"start": 992.99, "end": 993.51, "word": " or", "probability": 0.8818359375}, {"start": 993.51, "end": 994.15, "word": " interface", "probability": 0.822265625}, {"start": 994.15, "end": 995.41, "word": " called", "probability": 0.465087890625}, {"start": 995.41, "end": 995.79, "word": " draw", "probability": 0.50048828125}, {"start": 995.79, "end": 996.75, "word": " command", "probability": 0.4375}, {"start": 996.75, "end": 1001.23, "word": " Okay,", "probability": 0.1715087890625}, {"start": 1001.69, "end": 1002.51, "word": " I", "probability": 0.4267578125}, {"start": 1002.51, "end": 1002.73, "word": " want", "probability": 0.650390625}, {"start": 1002.73, "end": 1002.77, "word": " to", "probability": 0.94189453125}, {"start": 1002.77, "end": 1003.01, "word": " put", "probability": 0.697265625}, {"start": 1003.01, "end": 1003.01, "word": " this", "probability": 0.5537109375}, {"start": 1003.01, "end": 1003.01, "word": " interface", "probability": 0.880859375}, {"start": 1003.01, "end": 1003.81, "word": " in", "probability": 0.68408203125}, {"start": 1003.81, "end": 1005.81, "word": " the", "probability": 0.4765625}, {"start": 1005.81, "end": 1005.83, "word": " previous", "probability": 0.494140625}, {"start": 1005.83, "end": 1006.17, "word": " lecture", "probability": 0.72265625}, {"start": 1006.17, "end": 1006.47, "word": " we", "probability": 0.412841796875}, {"start": 1006.47, "end": 1006.61, "word": " did", "probability": 0.51953125}, {"start": 1006.61, "end": 1007.09, "word": " method", "probability": 0.78662109375}, {"start": 1007.09, "end": 1007.69, "word": " execute", "probability": 0.93310546875}, {"start": 1007.69, "end": 1008.49, "word": " But", "probability": 0.374755859375}, {"start": 1008.49, "end": 1008.67, "word": " this", "probability": 0.89599609375}, {"start": 1008.67, "end": 1008.87, "word": " time", "probability": 0.88916015625}, {"start": 1008.87, "end": 1010.07, "word": " I", "probability": 0.748046875}, {"start": 1010.07, "end": 1010.21, "word": " want", "probability": 0.7001953125}, {"start": 1010.21, "end": 1010.27, "word": " to", "probability": 0.95849609375}, {"start": 1010.27, "end": 1010.41, "word": " do", "probability": 0.416748046875}, {"start": 1010.41, "end": 1010.75, "word": " two", "probability": 0.74609375}, {"start": 1010.75, "end": 1011.21, "word": " methods", "probability": 0.69384765625}, {"start": 1011.21, "end": 1011.91, "word": " execute", "probability": 0.70068359375}, {"start": 1011.91, "end": 1012.57, "word": " and", "probability": 0.95361328125}, {"start": 1012.57, "end": 1013.33, "word": " unexecute", "probability": 0.8067220052083334}, {"start": 1013.33, "end": 1014.45, "word": " So", "probability": 0.2064208984375}, {"start": 1014.45, "end": 1014.79, "word": " every", "probability": 0.2744140625}, {"start": 1014.79, "end": 1015.07, "word": " command", "probability": 0.72021484375}, {"start": 1015.07, "end": 1015.59, "word": " I", "probability": 0.85009765625}, {"start": 1015.59, "end": 1015.81, "word": " want", "probability": 0.74169921875}, {"start": 1015.81, "end": 1015.87, "word": " to", "probability": 0.9609375}, {"start": 1015.87, "end": 1015.99, "word": " do", "probability": 0.7333984375}, {"start": 1015.99, "end": 1016.09, "word": " and", "probability": 0.6650390625}, {"start": 1016.09, "end": 1016.13, "word": " I", "probability": 0.5205078125}, {"start": 1016.13, "end": 1016.25, "word": " want", "probability": 0.7646484375}, {"start": 1016.25, "end": 1016.31, "word": " to", "probability": 0.9580078125}, {"start": 1016.31, "end": 1016.57, "word": " specify", "probability": 0.45361328125}, {"start": 1016.57, "end": 1016.97, "word": " how", "probability": 0.56982421875}, {"start": 1016.97, "end": 1017.09, "word": " this", "probability": 0.70556640625}, {"start": 1017.09, "end": 1017.27, "word": " command", "probability": 0.8701171875}, {"start": 1017.27, "end": 1017.59, "word": " is", "probability": 0.6591796875}, {"start": 1017.59, "end": 1017.97, "word": " executed", "probability": 0.74267578125}, {"start": 1017.97, "end": 1019.01, "word": " and", "probability": 0.806640625}, {"start": 1019.01, "end": 1019.17, "word": " how", "probability": 0.849609375}, {"start": 1019.17, "end": 1019.23, "word": " it", "probability": 0.67822265625}, {"start": 1019.23, "end": 1019.47, "word": " is", "probability": 0.462646484375}, {"start": 1019.47, "end": 1019.77, "word": " cancelled", "probability": 0.262451171875}], "temperature": 1.0}, {"id": 41, "seek": 104340, "start": 1021.26, "end": 1043.4, "text": "I drew a line and I need to decide how to erase it. I wrote a letter and I need to decide how to erase it. Ok? Ok, this is the draw command and this is the interface. Let's start making commands. Like I used to buy stocks, sell stocks, open a company. Here in my program I have command 1 which is line draw command.", "tokens": [40, 12804, 257, 1622, 293, 286, 643, 281, 4536, 577, 281, 23525, 309, 13, 286, 4114, 257, 5063, 293, 286, 643, 281, 4536, 577, 281, 23525, 309, 13, 3477, 30, 3477, 11, 341, 307, 264, 2642, 5622, 293, 341, 307, 264, 9226, 13, 961, 311, 722, 1455, 16901, 13, 1743, 286, 1143, 281, 2256, 12966, 11, 3607, 12966, 11, 1269, 257, 2237, 13, 1692, 294, 452, 1461, 286, 362, 5622, 502, 597, 307, 1622, 2642, 5622, 13], "avg_logprob": -0.4783653865257899, "compression_ratio": 1.7307692307692308, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1021.26, "end": 1021.5, "word": "I", "probability": 0.5078125}, {"start": 1021.5, "end": 1021.72, "word": " drew", "probability": 0.6669921875}, {"start": 1021.72, "end": 1021.94, "word": " a", "probability": 0.93701171875}, {"start": 1021.94, "end": 1022.06, "word": " line", "probability": 0.89013671875}, {"start": 1022.06, "end": 1022.16, "word": " and", "probability": 0.479248046875}, {"start": 1022.16, "end": 1022.16, "word": " I", "probability": 0.6962890625}, {"start": 1022.16, "end": 1022.28, "word": " need", "probability": 0.25390625}, {"start": 1022.28, "end": 1022.36, "word": " to", "probability": 0.96875}, {"start": 1022.36, "end": 1022.52, "word": " decide", "probability": 0.1494140625}, {"start": 1022.52, "end": 1022.78, "word": " how", "probability": 0.86572265625}, {"start": 1022.78, "end": 1023.34, "word": " to", "probability": 0.496337890625}, {"start": 1023.34, "end": 1023.58, "word": " erase", "probability": 0.70751953125}, {"start": 1023.58, "end": 1023.8, "word": " it.", "probability": 0.513671875}, {"start": 1024.52, "end": 1024.52, "word": " I", "probability": 0.58251953125}, {"start": 1024.52, "end": 1024.7, "word": " wrote", "probability": 0.8505859375}, {"start": 1024.7, "end": 1024.88, "word": " a", "probability": 0.873046875}, {"start": 1024.88, "end": 1025.04, "word": " letter", "probability": 0.91552734375}, {"start": 1025.04, "end": 1025.14, "word": " and", "probability": 0.87451171875}, {"start": 1025.14, "end": 1025.16, "word": " I", "probability": 0.93310546875}, {"start": 1025.16, "end": 1025.26, "word": " need", "probability": 0.86279296875}, {"start": 1025.26, "end": 1025.32, "word": " to", "probability": 0.96826171875}, {"start": 1025.32, "end": 1025.46, "word": " decide", "probability": 0.87451171875}, {"start": 1025.46, "end": 1025.88, "word": " how", "probability": 0.91357421875}, {"start": 1025.88, "end": 1026.28, "word": " to", "probability": 0.8251953125}, {"start": 1026.28, "end": 1026.58, "word": " erase", "probability": 0.86962890625}, {"start": 1026.58, "end": 1027.1, "word": " it.", "probability": 0.6328125}, {"start": 1027.36, "end": 1027.84, "word": " Ok?", "probability": 0.23681640625}, {"start": 1028.68, "end": 1029.16, "word": " Ok,", "probability": 0.47216796875}, {"start": 1029.28, "end": 1029.48, "word": " this", "probability": 0.75048828125}, {"start": 1029.48, "end": 1029.48, "word": " is", "probability": 0.3349609375}, {"start": 1029.48, "end": 1029.56, "word": " the", "probability": 0.568359375}, {"start": 1029.56, "end": 1029.74, "word": " draw", "probability": 0.441162109375}, {"start": 1029.74, "end": 1030.12, "word": " command", "probability": 0.94287109375}, {"start": 1030.12, "end": 1030.44, "word": " and", "probability": 0.269287109375}, {"start": 1030.44, "end": 1030.58, "word": " this", "probability": 0.8642578125}, {"start": 1030.58, "end": 1030.64, "word": " is", "probability": 0.92822265625}, {"start": 1030.64, "end": 1030.98, "word": " the", "probability": 0.76025390625}, {"start": 1030.98, "end": 1031.54, "word": " interface.", "probability": 0.8671875}, {"start": 1032.34, "end": 1032.8, "word": " Let's", "probability": 0.53436279296875}, {"start": 1032.8, "end": 1033.0, "word": " start", "probability": 0.625}, {"start": 1033.0, "end": 1033.28, "word": " making", "probability": 0.42431640625}, {"start": 1033.28, "end": 1033.8, "word": " commands.", "probability": 0.5927734375}, {"start": 1034.08, "end": 1034.22, "word": " Like", "probability": 0.30517578125}, {"start": 1034.22, "end": 1034.6, "word": " I", "probability": 0.407470703125}, {"start": 1034.6, "end": 1034.72, "word": " used", "probability": 0.2386474609375}, {"start": 1034.72, "end": 1035.44, "word": " to", "probability": 0.9501953125}, {"start": 1035.44, "end": 1035.76, "word": " buy", "probability": 0.4365234375}, {"start": 1035.76, "end": 1036.18, "word": " stocks,", "probability": 0.41162109375}, {"start": 1036.54, "end": 1036.74, "word": " sell", "probability": 0.83740234375}, {"start": 1036.74, "end": 1037.14, "word": " stocks,", "probability": 0.853515625}, {"start": 1037.24, "end": 1037.42, "word": " open", "probability": 0.4619140625}, {"start": 1037.42, "end": 1037.54, "word": " a", "probability": 0.89111328125}, {"start": 1037.54, "end": 1037.86, "word": " company.", "probability": 0.9052734375}, {"start": 1039.48, "end": 1039.72, "word": " Here", "probability": 0.658203125}, {"start": 1039.72, "end": 1040.02, "word": " in", "probability": 0.45361328125}, {"start": 1040.02, "end": 1040.7, "word": " my", "probability": 0.96875}, {"start": 1040.7, "end": 1040.7, "word": " program", "probability": 0.65087890625}, {"start": 1040.7, "end": 1040.74, "word": " I", "probability": 0.55517578125}, {"start": 1040.74, "end": 1040.74, "word": " have", "probability": 0.92822265625}, {"start": 1040.74, "end": 1041.24, "word": " command", "probability": 0.447265625}, {"start": 1041.24, "end": 1041.7, "word": " 1", "probability": 0.73095703125}, {"start": 1041.7, "end": 1042.36, "word": " which", "probability": 0.68408203125}, {"start": 1042.36, "end": 1042.5, "word": " is", "probability": 0.94580078125}, {"start": 1042.5, "end": 1042.7, "word": " line", "probability": 0.71044921875}, {"start": 1042.7, "end": 1042.96, "word": " draw", "probability": 0.783203125}, {"start": 1042.96, "end": 1043.4, "word": " command.", "probability": 0.9169921875}], "temperature": 1.0}, {"id": 42, "seek": 107166, "start": 1044.36, "end": 1071.66, "text": " right or not or any line command let's call it this doesn't draw what? doesn't draw anything this we want to make it a kind of draw command so we say implement draw command ok guys now the second point that we agreed on is that any command we have to put inside all the necessary information", "tokens": [558, 420, 406, 420, 604, 1622, 5622, 718, 311, 818, 309, 341, 1177, 380, 2642, 437, 30, 1177, 380, 2642, 1340, 341, 321, 528, 281, 652, 309, 257, 733, 295, 2642, 5622, 370, 321, 584, 4445, 2642, 5622, 3133, 1074, 586, 264, 1150, 935, 300, 321, 9166, 322, 307, 300, 604, 5622, 321, 362, 281, 829, 1854, 439, 264, 4818, 1589], "avg_logprob": -0.603326634053261, "compression_ratio": 1.697674418604651, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 1044.36, "end": 1044.66, "word": " right", "probability": 0.06744384765625}, {"start": 1044.66, "end": 1044.84, "word": " or", "probability": 0.900390625}, {"start": 1044.84, "end": 1044.92, "word": " not", "probability": 0.451171875}, {"start": 1044.92, "end": 1045.18, "word": " or", "probability": 0.57373046875}, {"start": 1045.18, "end": 1045.38, "word": " any", "probability": 0.7119140625}, {"start": 1045.38, "end": 1045.78, "word": " line", "probability": 0.59521484375}, {"start": 1045.78, "end": 1046.52, "word": " command", "probability": 0.1766357421875}, {"start": 1046.52, "end": 1046.82, "word": " let's", "probability": 0.519866943359375}, {"start": 1046.82, "end": 1047.04, "word": " call", "probability": 0.59033203125}, {"start": 1047.04, "end": 1047.28, "word": " it", "probability": 0.8251953125}, {"start": 1047.28, "end": 1047.76, "word": " this", "probability": 0.50927734375}, {"start": 1047.76, "end": 1047.88, "word": " doesn't", "probability": 0.555694580078125}, {"start": 1047.88, "end": 1048.12, "word": " draw", "probability": 0.83251953125}, {"start": 1048.12, "end": 1048.48, "word": " what?", "probability": 0.47705078125}, {"start": 1048.9, "end": 1049.3, "word": " doesn't", "probability": 0.7200927734375}, {"start": 1049.3, "end": 1049.48, "word": " draw", "probability": 0.923828125}, {"start": 1049.48, "end": 1049.7, "word": " anything", "probability": 0.2490234375}, {"start": 1049.7, "end": 1050.68, "word": " this", "probability": 0.42919921875}, {"start": 1050.68, "end": 1051.14, "word": " we", "probability": 0.449951171875}, {"start": 1051.14, "end": 1051.32, "word": " want", "probability": 0.1640625}, {"start": 1051.32, "end": 1051.32, "word": " to", "probability": 0.89599609375}, {"start": 1051.32, "end": 1051.58, "word": " make", "probability": 0.751953125}, {"start": 1051.58, "end": 1051.78, "word": " it", "probability": 0.59326171875}, {"start": 1051.78, "end": 1051.78, "word": " a", "probability": 0.5986328125}, {"start": 1051.78, "end": 1051.9, "word": " kind", "probability": 0.303955078125}, {"start": 1051.9, "end": 1051.96, "word": " of", "probability": 0.96337890625}, {"start": 1051.96, "end": 1052.12, "word": " draw", "probability": 0.6650390625}, {"start": 1052.12, "end": 1052.62, "word": " command", "probability": 0.8984375}, {"start": 1052.62, "end": 1052.76, "word": " so", "probability": 0.68310546875}, {"start": 1052.76, "end": 1052.86, "word": " we", "probability": 0.76806640625}, {"start": 1052.86, "end": 1052.98, "word": " say", "probability": 0.5908203125}, {"start": 1052.98, "end": 1053.48, "word": " implement", "probability": 0.58154296875}, {"start": 1053.48, "end": 1053.98, "word": " draw", "probability": 0.382080078125}, {"start": 1053.98, "end": 1060.94, "word": " command", "probability": 0.82470703125}, {"start": 1060.94, "end": 1064.44, "word": " ok", "probability": 0.2322998046875}, {"start": 1064.44, "end": 1064.96, "word": " guys", "probability": 0.8330078125}, {"start": 1064.96, "end": 1066.5, "word": " now", "probability": 0.59228515625}, {"start": 1066.5, "end": 1067.04, "word": " the", "probability": 0.72314453125}, {"start": 1067.04, "end": 1067.48, "word": " second", "probability": 0.404541015625}, {"start": 1067.48, "end": 1067.48, "word": " point", "probability": 0.90576171875}, {"start": 1067.48, "end": 1067.62, "word": " that", "probability": 0.53857421875}, {"start": 1067.62, "end": 1067.72, "word": " we", "probability": 0.9130859375}, {"start": 1067.72, "end": 1067.96, "word": " agreed", "probability": 0.71728515625}, {"start": 1067.96, "end": 1068.22, "word": " on", "probability": 0.475341796875}, {"start": 1068.22, "end": 1068.42, "word": " is", "probability": 0.278076171875}, {"start": 1068.42, "end": 1068.5, "word": " that", "probability": 0.63818359375}, {"start": 1068.5, "end": 1068.64, "word": " any", "probability": 0.70166015625}, {"start": 1068.64, "end": 1069.06, "word": " command", "probability": 0.87158203125}, {"start": 1069.06, "end": 1069.28, "word": " we", "probability": 0.31689453125}, {"start": 1069.28, "end": 1069.44, "word": " have", "probability": 0.4267578125}, {"start": 1069.44, "end": 1069.86, "word": " to", "probability": 0.9677734375}, {"start": 1069.86, "end": 1070.22, "word": " put", "probability": 0.67724609375}, {"start": 1070.22, "end": 1070.54, "word": " inside", "probability": 0.475341796875}, {"start": 1070.54, "end": 1070.82, "word": " all", "probability": 0.69873046875}, {"start": 1070.82, "end": 1070.94, "word": " the", "probability": 0.658203125}, {"start": 1070.94, "end": 1071.66, "word": " necessary", "probability": 0.7314453125}, {"start": 1071.66, "end": 1071.66, "word": " information", "probability": 0.77294921875}], "temperature": 1.0}, {"id": 43, "seek": 110197, "start": 1073.07, "end": 1101.97, "text": " to execute the process for example, let's go back and remember that in the buy shares command we sent him all the necessary attributes to buy his shares and we also sent him the stock market mean which is necessary to execute the purchase process the same thing, I go back to the light command I want to do in it I send him all the necessary information what are the necessary information? there is in the start x", "tokens": [281, 14483, 264, 1399, 337, 1365, 11, 718, 311, 352, 646, 293, 1604, 300, 294, 264, 2256, 12182, 5622, 321, 2279, 796, 439, 264, 4818, 17212, 281, 2256, 702, 12182, 293, 321, 611, 2279, 796, 264, 4127, 2142, 914, 597, 307, 4818, 281, 14483, 264, 8110, 1399, 264, 912, 551, 11, 286, 352, 646, 281, 264, 1442, 5622, 286, 528, 281, 360, 294, 309, 286, 2845, 796, 439, 264, 4818, 1589, 437, 366, 264, 4818, 1589, 30, 456, 307, 294, 264, 722, 2031], "avg_logprob": -0.5524553280501139, "compression_ratio": 1.9528301886792452, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 1073.07, "end": 1073.51, "word": " to", "probability": 0.43408203125}, {"start": 1073.51, "end": 1073.95, "word": " execute", "probability": 0.50390625}, {"start": 1073.95, "end": 1074.09, "word": " the", "probability": 0.6240234375}, {"start": 1074.09, "end": 1074.39, "word": " process", "probability": 0.262451171875}, {"start": 1074.39, "end": 1075.47, "word": " for", "probability": 0.432373046875}, {"start": 1075.47, "end": 1075.69, "word": " example,", "probability": 0.89892578125}, {"start": 1075.81, "end": 1075.89, "word": " let's", "probability": 0.593994140625}, {"start": 1075.89, "end": 1075.95, "word": " go", "probability": 0.1568603515625}, {"start": 1075.95, "end": 1076.07, "word": " back", "probability": 0.87109375}, {"start": 1076.07, "end": 1076.19, "word": " and", "probability": 0.66845703125}, {"start": 1076.19, "end": 1076.61, "word": " remember", "probability": 0.6357421875}, {"start": 1076.61, "end": 1076.91, "word": " that", "probability": 0.72900390625}, {"start": 1076.91, "end": 1077.11, "word": " in", "probability": 0.74853515625}, {"start": 1077.11, "end": 1078.75, "word": " the", "probability": 0.5556640625}, {"start": 1078.75, "end": 1078.99, "word": " buy", "probability": 0.7138671875}, {"start": 1078.99, "end": 1079.35, "word": " shares", "probability": 0.84326171875}, {"start": 1079.35, "end": 1079.79, "word": " command", "probability": 0.7568359375}, {"start": 1079.79, "end": 1080.87, "word": " we", "probability": 0.347412109375}, {"start": 1080.87, "end": 1081.13, "word": " sent", "probability": 0.4658203125}, {"start": 1081.13, "end": 1081.37, "word": " him", "probability": 0.68798828125}, {"start": 1081.37, "end": 1081.53, "word": " all", "probability": 0.82373046875}, {"start": 1081.53, "end": 1081.63, "word": " the", "probability": 0.708984375}, {"start": 1081.63, "end": 1082.49, "word": " necessary", "probability": 0.18017578125}, {"start": 1082.49, "end": 1082.49, "word": " attributes", "probability": 0.708984375}, {"start": 1082.49, "end": 1082.69, "word": " to", "probability": 0.72119140625}, {"start": 1082.69, "end": 1082.91, "word": " buy", "probability": 0.81591796875}, {"start": 1082.91, "end": 1083.05, "word": " his", "probability": 0.162353515625}, {"start": 1083.05, "end": 1083.27, "word": " shares", "probability": 0.2332763671875}, {"start": 1083.27, "end": 1083.47, "word": " and", "probability": 0.6865234375}, {"start": 1083.47, "end": 1083.69, "word": " we", "probability": 0.60498046875}, {"start": 1083.69, "end": 1083.75, "word": " also", "probability": 0.72509765625}, {"start": 1083.75, "end": 1083.75, "word": " sent", "probability": 0.79443359375}, {"start": 1083.75, "end": 1084.31, "word": " him", "probability": 0.853515625}, {"start": 1084.31, "end": 1084.65, "word": " the", "probability": 0.71875}, {"start": 1084.65, "end": 1085.71, "word": " stock", "probability": 0.56005859375}, {"start": 1085.71, "end": 1086.23, "word": " market", "probability": 0.90234375}, {"start": 1086.23, "end": 1086.23, "word": " mean", "probability": 0.27197265625}, {"start": 1086.23, "end": 1086.71, "word": " which", "probability": 0.51025390625}, {"start": 1086.71, "end": 1086.77, "word": " is", "probability": 0.402099609375}, {"start": 1086.77, "end": 1087.09, "word": " necessary", "probability": 0.55517578125}, {"start": 1087.09, "end": 1087.87, "word": " to", "probability": 0.72802734375}, {"start": 1087.87, "end": 1091.41, "word": " execute", "probability": 0.310546875}, {"start": 1091.41, "end": 1092.31, "word": " the", "probability": 0.822265625}, {"start": 1092.31, "end": 1092.55, "word": " purchase", "probability": 0.485107421875}, {"start": 1092.55, "end": 1092.69, "word": " process", "probability": 0.86767578125}, {"start": 1092.69, "end": 1093.63, "word": " the", "probability": 0.198486328125}, {"start": 1093.63, "end": 1093.95, "word": " same", "probability": 0.896484375}, {"start": 1093.95, "end": 1094.27, "word": " thing,", "probability": 0.80517578125}, {"start": 1094.33, "end": 1094.45, "word": " I", "probability": 0.51904296875}, {"start": 1094.45, "end": 1094.45, "word": " go", "probability": 0.6337890625}, {"start": 1094.45, "end": 1094.59, "word": " back", "probability": 0.86328125}, {"start": 1094.59, "end": 1094.67, "word": " to", "probability": 0.9599609375}, {"start": 1094.67, "end": 1094.77, "word": " the", "probability": 0.82568359375}, {"start": 1094.77, "end": 1094.91, "word": " light", "probability": 0.501953125}, {"start": 1094.91, "end": 1095.31, "word": " command", "probability": 0.8291015625}, {"start": 1095.31, "end": 1095.51, "word": " I", "probability": 0.438232421875}, {"start": 1095.51, "end": 1095.59, "word": " want", "probability": 0.410888671875}, {"start": 1095.59, "end": 1095.73, "word": " to", "probability": 0.962890625}, {"start": 1095.73, "end": 1095.79, "word": " do", "probability": 0.461181640625}, {"start": 1095.79, "end": 1096.35, "word": " in", "probability": 0.634765625}, {"start": 1096.35, "end": 1097.51, "word": " it", "probability": 0.6884765625}, {"start": 1097.51, "end": 1097.67, "word": " I", "probability": 0.31884765625}, {"start": 1097.67, "end": 1097.91, "word": " send", "probability": 0.583984375}, {"start": 1097.91, "end": 1098.03, "word": " him", "probability": 0.755859375}, {"start": 1098.03, "end": 1098.19, "word": " all", "probability": 0.9453125}, {"start": 1098.19, "end": 1098.31, "word": " the", "probability": 0.8017578125}, {"start": 1098.31, "end": 1098.95, "word": " necessary", "probability": 0.7685546875}, {"start": 1098.95, "end": 1098.95, "word": " information", "probability": 0.787109375}, {"start": 1098.95, "end": 1099.19, "word": " what", "probability": 0.4951171875}, {"start": 1099.19, "end": 1099.31, "word": " are", "probability": 0.479248046875}, {"start": 1099.31, "end": 1099.39, "word": " the", "probability": 0.8193359375}, {"start": 1099.39, "end": 1099.39, "word": " necessary", "probability": 0.86328125}, {"start": 1099.39, "end": 1100.03, "word": " information?", "probability": 0.77880859375}, {"start": 1100.75, "end": 1100.95, "word": " there", "probability": 0.32470703125}, {"start": 1100.95, "end": 1100.95, "word": " is", "probability": 0.66064453125}, {"start": 1100.95, "end": 1101.11, "word": " in", "probability": 0.380859375}, {"start": 1101.11, "end": 1101.23, "word": " the", "probability": 0.72412109375}, {"start": 1101.23, "end": 1101.59, "word": " start", "probability": 0.90576171875}, {"start": 1101.59, "end": 1101.97, "word": " x", "probability": 0.309326171875}], "temperature": 1.0}, {"id": 44, "seek": 113268, "start": 1103.78, "end": 1132.68, "text": "and start y which is the starting point and end x and end y these are the necessary information for drawing and we also need to make a constructor line command and send him an object of the type graphics did you notice that he will not be able to draw anything except through who guys? through graphics just like the buy shares could not do anything except through", "tokens": [474, 722, 288, 597, 307, 264, 2891, 935, 293, 917, 2031, 293, 917, 288, 613, 366, 264, 4818, 1589, 337, 6316, 293, 321, 611, 643, 281, 652, 257, 47479, 1622, 5622, 293, 2845, 796, 364, 2657, 295, 264, 2010, 11837, 630, 291, 3449, 300, 415, 486, 406, 312, 1075, 281, 2642, 1340, 3993, 807, 567, 1074, 30, 807, 11837, 445, 411, 264, 2256, 12182, 727, 406, 360, 1340, 3993, 807], "avg_logprob": -0.5026408316383899, "compression_ratio": 1.766990291262136, "no_speech_prob": 4.708766937255859e-06, "words": [{"start": 1103.78, "end": 1104.02, "word": "and", "probability": 0.35400390625}, {"start": 1104.02, "end": 1104.44, "word": " start", "probability": 0.767578125}, {"start": 1104.44, "end": 1104.84, "word": " y", "probability": 0.197265625}, {"start": 1104.84, "end": 1105.44, "word": " which", "probability": 0.3349609375}, {"start": 1105.44, "end": 1105.52, "word": " is", "probability": 0.912109375}, {"start": 1105.52, "end": 1105.58, "word": " the", "probability": 0.67041015625}, {"start": 1105.58, "end": 1106.02, "word": " starting", "probability": 0.53271484375}, {"start": 1106.02, "end": 1106.2, "word": " point", "probability": 0.97509765625}, {"start": 1106.2, "end": 1106.96, "word": " and", "probability": 0.76318359375}, {"start": 1106.96, "end": 1107.22, "word": " end", "probability": 0.8681640625}, {"start": 1107.22, "end": 1107.62, "word": " x", "probability": 0.93798828125}, {"start": 1107.62, "end": 1109.18, "word": " and", "probability": 0.88232421875}, {"start": 1109.18, "end": 1109.4, "word": " end", "probability": 0.890625}, {"start": 1109.4, "end": 1109.66, "word": " y", "probability": 0.986328125}, {"start": 1109.66, "end": 1110.46, "word": " these", "probability": 0.44677734375}, {"start": 1110.46, "end": 1110.56, "word": " are", "probability": 0.8935546875}, {"start": 1110.56, "end": 1110.56, "word": " the", "probability": 0.767578125}, {"start": 1110.56, "end": 1111.22, "word": " necessary", "probability": 0.3876953125}, {"start": 1111.22, "end": 1111.22, "word": " information", "probability": 0.5634765625}, {"start": 1111.22, "end": 1111.98, "word": " for", "probability": 0.685546875}, {"start": 1111.98, "end": 1112.22, "word": " drawing", "probability": 0.478515625}, {"start": 1112.22, "end": 1113.32, "word": " and", "probability": 0.65380859375}, {"start": 1113.32, "end": 1113.74, "word": " we", "probability": 0.6513671875}, {"start": 1113.74, "end": 1113.78, "word": " also", "probability": 0.6640625}, {"start": 1113.78, "end": 1113.78, "word": " need", "probability": 0.7451171875}, {"start": 1113.78, "end": 1115.86, "word": " to", "probability": 0.83056640625}, {"start": 1115.86, "end": 1115.98, "word": " make", "probability": 0.5029296875}, {"start": 1115.98, "end": 1116.18, "word": " a", "probability": 0.43115234375}, {"start": 1116.18, "end": 1116.76, "word": " constructor", "probability": 0.90185546875}, {"start": 1116.76, "end": 1119.6, "word": " line", "probability": 0.8671875}, {"start": 1119.6, "end": 1120.22, "word": " command", "probability": 0.81591796875}, {"start": 1120.22, "end": 1120.92, "word": " and", "probability": 0.8857421875}, {"start": 1120.92, "end": 1121.2, "word": " send", "probability": 0.69140625}, {"start": 1121.2, "end": 1121.44, "word": " him", "probability": 0.323974609375}, {"start": 1121.44, "end": 1121.58, "word": " an", "probability": 0.59814453125}, {"start": 1121.58, "end": 1121.9, "word": " object", "probability": 0.974609375}, {"start": 1121.9, "end": 1122.02, "word": " of", "probability": 0.66943359375}, {"start": 1122.02, "end": 1122.18, "word": " the", "probability": 0.343505859375}, {"start": 1122.18, "end": 1122.44, "word": " type", "probability": 0.490478515625}, {"start": 1122.44, "end": 1123.64, "word": " graphics", "probability": 0.814453125}, {"start": 1123.64, "end": 1124.18, "word": " did", "probability": 0.1795654296875}, {"start": 1124.18, "end": 1124.18, "word": " you", "probability": 0.912109375}, {"start": 1124.18, "end": 1124.3, "word": " notice", "probability": 0.194580078125}, {"start": 1124.3, "end": 1124.44, "word": " that", "probability": 0.5908203125}, {"start": 1124.44, "end": 1124.58, "word": " he", "probability": 0.82177734375}, {"start": 1124.58, "end": 1124.64, "word": " will", "probability": 0.2142333984375}, {"start": 1124.64, "end": 1124.64, "word": " not", "probability": 0.56494140625}, {"start": 1124.64, "end": 1124.92, "word": " be", "probability": 0.88134765625}, {"start": 1124.92, "end": 1124.98, "word": " able", "probability": 0.962890625}, {"start": 1124.98, "end": 1125.1, "word": " to", "probability": 0.966796875}, {"start": 1125.1, "end": 1125.26, "word": " draw", "probability": 0.90625}, {"start": 1125.26, "end": 1125.7, "word": " anything", "probability": 0.865234375}, {"start": 1125.7, "end": 1125.88, "word": " except", "probability": 0.58056640625}, {"start": 1125.88, "end": 1126.3, "word": " through", "probability": 0.52783203125}, {"start": 1126.3, "end": 1126.46, "word": " who", "probability": 0.2225341796875}, {"start": 1126.46, "end": 1126.96, "word": " guys?", "probability": 0.41455078125}, {"start": 1127.6, "end": 1127.86, "word": " through", "probability": 0.75634765625}, {"start": 1127.86, "end": 1128.42, "word": " graphics", "probability": 0.66650390625}, {"start": 1128.42, "end": 1129.68, "word": " just", "probability": 0.2705078125}, {"start": 1129.68, "end": 1129.76, "word": " like", "probability": 0.91015625}, {"start": 1129.76, "end": 1130.26, "word": " the", "probability": 0.440185546875}, {"start": 1130.26, "end": 1130.46, "word": " buy", "probability": 0.35205078125}, {"start": 1130.46, "end": 1130.8, "word": " shares", "probability": 0.87744140625}, {"start": 1130.8, "end": 1131.1, "word": " could", "probability": 0.1807861328125}, {"start": 1131.1, "end": 1131.2, "word": " not", "probability": 0.81005859375}, {"start": 1131.2, "end": 1131.52, "word": " do", "probability": 0.9091796875}, {"start": 1131.52, "end": 1131.84, "word": " anything", "probability": 0.853515625}, {"start": 1131.84, "end": 1132.22, "word": " except", "probability": 0.736328125}, {"start": 1132.22, "end": 1132.68, "word": " through", "probability": 0.7041015625}], "temperature": 1.0}, {"id": 45, "seek": 116264, "start": 1133.88, "end": 1162.64, "text": "stock market and here also we can say graphics graphics g for example and here we can say this dot g is equal to g let's go to execute and unexecute when I say execute execute the process how will it execute? it will go to g and it will say what? draw line", "tokens": [23914, 2142, 293, 510, 611, 321, 393, 584, 11837, 290, 2662, 1167, 290, 337, 1365, 293, 510, 321, 393, 584, 341, 5893, 290, 307, 2681, 281, 290, 718, 311, 352, 281, 14483, 293, 11572, 3045, 1169, 562, 286, 584, 14483, 14483, 264, 1399, 577, 486, 309, 14483, 30, 309, 486, 352, 281, 290, 293, 309, 486, 584, 437, 30, 2642, 1622], "avg_logprob": -0.46723789601556714, "compression_ratio": 1.7777777777777777, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 1133.88, "end": 1134.28, "word": "stock", "probability": 0.299072265625}, {"start": 1134.28, "end": 1134.8, "word": " market", "probability": 0.89990234375}, {"start": 1134.8, "end": 1136.78, "word": " and", "probability": 0.45263671875}, {"start": 1136.78, "end": 1137.08, "word": " here", "probability": 0.751953125}, {"start": 1137.08, "end": 1137.54, "word": " also", "probability": 0.51171875}, {"start": 1137.54, "end": 1137.98, "word": " we", "probability": 0.77978515625}, {"start": 1137.98, "end": 1138.06, "word": " can", "probability": 0.556640625}, {"start": 1138.06, "end": 1138.3, "word": " say", "probability": 0.67236328125}, {"start": 1138.3, "end": 1138.9, "word": " graphics", "probability": 0.77734375}, {"start": 1138.9, "end": 1144.74, "word": " graphics", "probability": 0.5163167317708334}, {"start": 1144.74, "end": 1144.94, "word": " g", "probability": 0.76513671875}, {"start": 1144.94, "end": 1145.16, "word": " for", "probability": 0.75048828125}, {"start": 1145.16, "end": 1145.38, "word": " example", "probability": 0.94677734375}, {"start": 1145.38, "end": 1146.12, "word": " and", "probability": 0.40771484375}, {"start": 1146.12, "end": 1146.18, "word": " here", "probability": 0.73193359375}, {"start": 1146.18, "end": 1146.3, "word": " we", "probability": 0.73681640625}, {"start": 1146.3, "end": 1146.36, "word": " can", "probability": 0.419189453125}, {"start": 1146.36, "end": 1146.52, "word": " say", "probability": 0.88671875}, {"start": 1146.52, "end": 1146.78, "word": " this", "probability": 0.8984375}, {"start": 1146.78, "end": 1147.02, "word": " dot", "probability": 0.478515625}, {"start": 1147.02, "end": 1147.38, "word": " g", "probability": 0.97900390625}, {"start": 1147.38, "end": 1148.44, "word": " is", "probability": 0.2041015625}, {"start": 1148.44, "end": 1148.66, "word": " equal", "probability": 0.85205078125}, {"start": 1148.66, "end": 1148.7, "word": " to", "probability": 0.9482421875}, {"start": 1148.7, "end": 1148.94, "word": " g", "probability": 0.92138671875}, {"start": 1148.94, "end": 1152.86, "word": " let's", "probability": 0.49615478515625}, {"start": 1152.86, "end": 1152.98, "word": " go", "probability": 0.2073974609375}, {"start": 1152.98, "end": 1153.08, "word": " to", "probability": 0.8193359375}, {"start": 1153.08, "end": 1153.54, "word": " execute", "probability": 0.87451171875}, {"start": 1153.54, "end": 1154.0, "word": " and", "probability": 0.93798828125}, {"start": 1154.0, "end": 1154.68, "word": " unexecute", "probability": 0.7613118489583334}, {"start": 1154.68, "end": 1154.9, "word": " when", "probability": 0.73779296875}, {"start": 1154.9, "end": 1155.0, "word": " I", "probability": 0.6728515625}, {"start": 1155.0, "end": 1155.16, "word": " say", "probability": 0.66259765625}, {"start": 1155.16, "end": 1155.66, "word": " execute", "probability": 0.96337890625}, {"start": 1155.66, "end": 1156.0, "word": " execute", "probability": 0.14208984375}, {"start": 1156.0, "end": 1156.16, "word": " the", "probability": 0.60546875}, {"start": 1156.16, "end": 1156.54, "word": " process", "probability": 0.66748046875}, {"start": 1156.54, "end": 1157.86, "word": " how", "probability": 0.79736328125}, {"start": 1157.86, "end": 1157.96, "word": " will", "probability": 0.44140625}, {"start": 1157.96, "end": 1158.02, "word": " it", "probability": 0.84765625}, {"start": 1158.02, "end": 1158.24, "word": " execute?", "probability": 0.6923828125}, {"start": 1158.36, "end": 1158.44, "word": " it", "probability": 0.81103515625}, {"start": 1158.44, "end": 1158.48, "word": " will", "probability": 0.78369140625}, {"start": 1158.48, "end": 1158.6, "word": " go", "probability": 0.88232421875}, {"start": 1158.6, "end": 1158.72, "word": " to", "probability": 0.95068359375}, {"start": 1158.72, "end": 1159.0, "word": " g", "probability": 0.5673828125}, {"start": 1159.0, "end": 1159.94, "word": " and", "probability": 0.70166015625}, {"start": 1159.94, "end": 1160.02, "word": " it", "probability": 0.3173828125}, {"start": 1160.02, "end": 1160.04, "word": " will", "probability": 0.67822265625}, {"start": 1160.04, "end": 1160.16, "word": " say", "probability": 0.73876953125}, {"start": 1160.16, "end": 1160.46, "word": " what?", "probability": 0.6953125}, {"start": 1160.48, "end": 1160.84, "word": " draw", "probability": 0.7802734375}, {"start": 1160.84, "end": 1162.64, "word": " line", "probability": 0.73095703125}], "temperature": 1.0}, {"id": 46, "seek": 119014, "start": 1164.36, "end": 1190.14, "text": " and give him start x start y and end x and end y ok, there is unexecute we cancel the drawing of the line so the idea is simple when I draw the line I want to draw it in black color for example when I cancel the line I want to draw with the same line but in the back color", "tokens": [293, 976, 796, 722, 2031, 722, 288, 293, 917, 2031, 293, 917, 288, 3133, 11, 456, 307, 517, 3121, 3045, 1169, 321, 10373, 264, 6316, 295, 264, 1622, 370, 264, 1558, 307, 2199, 562, 286, 2642, 264, 1622, 286, 528, 281, 2642, 309, 294, 2211, 2017, 337, 1365, 562, 286, 10373, 264, 1622, 286, 528, 281, 2642, 365, 264, 912, 1622, 457, 294, 264, 646, 2017], "avg_logprob": -0.5163246482165892, "compression_ratio": 1.8571428571428572, "no_speech_prob": 1.3709068298339844e-06, "words": [{"start": 1164.36, "end": 1164.76, "word": " and", "probability": 0.1380615234375}, {"start": 1164.76, "end": 1165.02, "word": " give", "probability": 0.4365234375}, {"start": 1165.02, "end": 1165.36, "word": " him", "probability": 0.3955078125}, {"start": 1165.36, "end": 1165.88, "word": " start", "probability": 0.787109375}, {"start": 1165.88, "end": 1166.26, "word": " x", "probability": 0.69677734375}, {"start": 1166.26, "end": 1171.42, "word": " start", "probability": 0.6005859375}, {"start": 1171.42, "end": 1171.8, "word": " y", "probability": 0.974609375}, {"start": 1171.8, "end": 1172.54, "word": " and", "probability": 0.73046875}, {"start": 1172.54, "end": 1172.74, "word": " end", "probability": 0.9345703125}, {"start": 1172.74, "end": 1173.08, "word": " x", "probability": 0.98486328125}, {"start": 1173.08, "end": 1174.74, "word": " and", "probability": 0.90625}, {"start": 1174.74, "end": 1174.92, "word": " end", "probability": 0.90185546875}, {"start": 1174.92, "end": 1175.18, "word": " y", "probability": 0.96923828125}, {"start": 1175.18, "end": 1176.66, "word": " ok,", "probability": 0.13720703125}, {"start": 1176.68, "end": 1176.84, "word": " there", "probability": 0.2327880859375}, {"start": 1176.84, "end": 1176.84, "word": " is", "probability": 0.68505859375}, {"start": 1176.84, "end": 1177.8, "word": " unexecute", "probability": 0.6243896484375}, {"start": 1177.8, "end": 1178.96, "word": " we", "probability": 0.11566162109375}, {"start": 1178.96, "end": 1179.46, "word": " cancel", "probability": 0.515625}, {"start": 1179.46, "end": 1179.82, "word": " the", "probability": 0.460693359375}, {"start": 1179.82, "end": 1180.06, "word": " drawing", "probability": 0.456787109375}, {"start": 1180.06, "end": 1180.36, "word": " of", "probability": 0.79541015625}, {"start": 1180.36, "end": 1180.44, "word": " the", "probability": 0.69921875}, {"start": 1180.44, "end": 1180.62, "word": " line", "probability": 0.87841796875}, {"start": 1180.62, "end": 1181.36, "word": " so", "probability": 0.114501953125}, {"start": 1181.36, "end": 1181.5, "word": " the", "probability": 0.66845703125}, {"start": 1181.5, "end": 1181.72, "word": " idea", "probability": 0.873046875}, {"start": 1181.72, "end": 1181.8, "word": " is", "probability": 0.9228515625}, {"start": 1181.8, "end": 1182.18, "word": " simple", "probability": 0.802734375}, {"start": 1182.18, "end": 1182.92, "word": " when", "probability": 0.51123046875}, {"start": 1182.92, "end": 1183.36, "word": " I", "probability": 0.640625}, {"start": 1183.36, "end": 1183.52, "word": " draw", "probability": 0.84130859375}, {"start": 1183.52, "end": 1183.72, "word": " the", "probability": 0.473388671875}, {"start": 1183.72, "end": 1183.9, "word": " line", "probability": 0.931640625}, {"start": 1183.9, "end": 1184.02, "word": " I", "probability": 0.658203125}, {"start": 1184.02, "end": 1184.12, "word": " want", "probability": 0.65673828125}, {"start": 1184.12, "end": 1184.16, "word": " to", "probability": 0.857421875}, {"start": 1184.16, "end": 1184.34, "word": " draw", "probability": 0.76171875}, {"start": 1184.34, "end": 1184.48, "word": " it", "probability": 0.4384765625}, {"start": 1184.48, "end": 1184.48, "word": " in", "probability": 0.4658203125}, {"start": 1184.48, "end": 1184.98, "word": " black", "probability": 0.7099609375}, {"start": 1184.98, "end": 1185.16, "word": " color", "probability": 0.349609375}, {"start": 1185.16, "end": 1185.4, "word": " for", "probability": 0.64599609375}, {"start": 1185.4, "end": 1185.6, "word": " example", "probability": 0.9375}, {"start": 1185.6, "end": 1186.16, "word": " when", "probability": 0.828125}, {"start": 1186.16, "end": 1186.28, "word": " I", "probability": 0.9814453125}, {"start": 1186.28, "end": 1186.4, "word": " cancel", "probability": 0.7216796875}, {"start": 1186.4, "end": 1186.58, "word": " the", "probability": 0.8974609375}, {"start": 1186.58, "end": 1186.78, "word": " line", "probability": 0.91748046875}, {"start": 1186.78, "end": 1187.62, "word": " I", "probability": 0.89892578125}, {"start": 1187.62, "end": 1187.76, "word": " want", "probability": 0.84130859375}, {"start": 1187.76, "end": 1187.82, "word": " to", "probability": 0.95751953125}, {"start": 1187.82, "end": 1187.96, "word": " draw", "probability": 0.9345703125}, {"start": 1187.96, "end": 1188.14, "word": " with", "probability": 0.2054443359375}, {"start": 1188.14, "end": 1188.26, "word": " the", "probability": 0.86572265625}, {"start": 1188.26, "end": 1188.4, "word": " same", "probability": 0.8671875}, {"start": 1188.4, "end": 1188.84, "word": " line", "probability": 0.8369140625}, {"start": 1188.84, "end": 1189.44, "word": " but", "probability": 0.75634765625}, {"start": 1189.44, "end": 1189.6, "word": " in", "probability": 0.6064453125}, {"start": 1189.6, "end": 1189.84, "word": " the", "probability": 0.337646484375}, {"start": 1189.84, "end": 1190.02, "word": " back", "probability": 0.372314453125}, {"start": 1190.02, "end": 1190.14, "word": " color", "probability": 0.74658203125}], "temperature": 1.0}, {"id": 47, "seek": 121930, "start": 1191.22, "end": 1219.3, "text": "Okay, the background is white for example, I'll let him draw in white So actually the execute will go to the graphics and tell him set color to draw in black Okay, the unexecute is the same process But he wants to do it in the background color of the screen, which is white for example", "tokens": [8297, 11, 264, 3678, 307, 2418, 337, 1365, 11, 286, 603, 718, 796, 2642, 294, 2418, 407, 767, 264, 14483, 486, 352, 281, 264, 11837, 293, 980, 796, 992, 2017, 281, 2642, 294, 2211, 1033, 11, 264, 11572, 3045, 1169, 307, 264, 912, 1399, 583, 415, 2738, 281, 360, 309, 294, 264, 3678, 2017, 295, 264, 2568, 11, 597, 307, 2418, 337, 1365], "avg_logprob": -0.5566406138241291, "compression_ratio": 1.6666666666666667, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1191.22, "end": 1191.48, "word": "Okay,", "probability": 0.14208984375}, {"start": 1191.52, "end": 1191.62, "word": " the", "probability": 0.393798828125}, {"start": 1191.62, "end": 1191.82, "word": " background", "probability": 0.69140625}, {"start": 1191.82, "end": 1192.02, "word": " is", "probability": 0.60693359375}, {"start": 1192.02, "end": 1192.38, "word": " white", "probability": 0.8310546875}, {"start": 1192.38, "end": 1192.62, "word": " for", "probability": 0.1495361328125}, {"start": 1192.62, "end": 1192.62, "word": " example,", "probability": 0.6923828125}, {"start": 1192.88, "end": 1193.34, "word": " I'll", "probability": 0.4417724609375}, {"start": 1193.34, "end": 1193.42, "word": " let", "probability": 0.31396484375}, {"start": 1193.42, "end": 1193.56, "word": " him", "probability": 0.56787109375}, {"start": 1193.56, "end": 1193.68, "word": " draw", "probability": 0.56982421875}, {"start": 1193.68, "end": 1193.8, "word": " in", "probability": 0.49609375}, {"start": 1193.8, "end": 1194.1, "word": " white", "probability": 0.89306640625}, {"start": 1194.1, "end": 1194.82, "word": " So", "probability": 0.55078125}, {"start": 1194.82, "end": 1195.14, "word": " actually", "probability": 0.52001953125}, {"start": 1195.14, "end": 1195.28, "word": " the", "probability": 0.2197265625}, {"start": 1195.28, "end": 1195.66, "word": " execute", "probability": 0.89599609375}, {"start": 1195.66, "end": 1195.96, "word": " will", "probability": 0.6357421875}, {"start": 1195.96, "end": 1196.16, "word": " go", "probability": 0.93115234375}, {"start": 1196.16, "end": 1196.34, "word": " to", "probability": 0.94384765625}, {"start": 1196.34, "end": 1196.44, "word": " the", "probability": 0.36962890625}, {"start": 1196.44, "end": 1196.92, "word": " graphics", "probability": 0.87060546875}, {"start": 1196.92, "end": 1197.72, "word": " and", "probability": 0.677734375}, {"start": 1197.72, "end": 1197.86, "word": " tell", "probability": 0.541015625}, {"start": 1197.86, "end": 1197.98, "word": " him", "probability": 0.5078125}, {"start": 1197.98, "end": 1198.16, "word": " set", "probability": 0.63720703125}, {"start": 1198.16, "end": 1198.56, "word": " color", "probability": 0.69140625}, {"start": 1198.56, "end": 1199.58, "word": " to", "probability": 0.2259521484375}, {"start": 1199.58, "end": 1200.08, "word": " draw", "probability": 0.59912109375}, {"start": 1200.08, "end": 1200.32, "word": " in", "probability": 0.6943359375}, {"start": 1200.32, "end": 1202.42, "word": " black", "probability": 0.78466796875}, {"start": 1202.42, "end": 1204.48, "word": " Okay,", "probability": 0.1995849609375}, {"start": 1205.1, "end": 1205.24, "word": " the", "probability": 0.5927734375}, {"start": 1205.24, "end": 1206.04, "word": " unexecute", "probability": 0.765869140625}, {"start": 1206.04, "end": 1207.14, "word": " is", "probability": 0.8623046875}, {"start": 1207.14, "end": 1207.46, "word": " the", "probability": 0.89208984375}, {"start": 1207.46, "end": 1207.46, "word": " same", "probability": 0.90234375}, {"start": 1207.46, "end": 1208.0, "word": " process", "probability": 0.8544921875}, {"start": 1208.0, "end": 1214.5, "word": " But", "probability": 0.38330078125}, {"start": 1214.5, "end": 1214.74, "word": " he", "probability": 0.38623046875}, {"start": 1214.74, "end": 1214.74, "word": " wants", "probability": 0.60791015625}, {"start": 1214.74, "end": 1214.8, "word": " to", "probability": 0.95703125}, {"start": 1214.8, "end": 1214.96, "word": " do", "probability": 0.5341796875}, {"start": 1214.96, "end": 1215.06, "word": " it", "probability": 0.42431640625}, {"start": 1215.06, "end": 1215.1, "word": " in", "probability": 0.7626953125}, {"start": 1215.1, "end": 1215.38, "word": " the", "probability": 0.68603515625}, {"start": 1215.38, "end": 1215.58, "word": " background", "probability": 0.9189453125}, {"start": 1215.58, "end": 1215.98, "word": " color", "probability": 0.77880859375}, {"start": 1215.98, "end": 1216.36, "word": " of", "probability": 0.221923828125}, {"start": 1216.36, "end": 1216.66, "word": " the", "probability": 0.90625}, {"start": 1216.66, "end": 1216.98, "word": " screen,", "probability": 0.798828125}, {"start": 1217.86, "end": 1218.04, "word": " which", "probability": 0.8330078125}, {"start": 1218.04, "end": 1218.22, "word": " is", "probability": 0.9423828125}, {"start": 1218.22, "end": 1218.88, "word": " white", "probability": 0.66650390625}, {"start": 1218.88, "end": 1219.16, "word": " for", "probability": 0.5263671875}, {"start": 1219.16, "end": 1219.3, "word": " example", "probability": 0.96533203125}], "temperature": 1.0}, {"id": 48, "seek": 123203, "start": 1221.73, "end": 1232.03, "text": "طبعا هدع مثال رسم ال line أي خطوة تانية انت حابب تتراجع عنها بدك تحدد كيف تنعمل الخطوة و كيف انا ايش ألغيها", "tokens": [9566, 3555, 3615, 995, 8032, 3215, 3615, 50113, 6027, 12602, 38251, 2423, 1622, 36632, 16490, 9566, 2407, 3660, 6055, 7649, 10632, 16472, 2655, 11331, 16758, 3555, 6055, 2655, 2288, 26108, 3615, 18871, 11296, 47525, 4117, 6055, 24401, 3215, 9122, 33911, 6055, 1863, 25957, 1211, 33962, 9566, 2407, 3660, 4032, 9122, 33911, 1975, 8315, 1975, 1829, 8592, 5551, 1211, 17082, 1829, 11296], "avg_logprob": -0.19909274650196876, "compression_ratio": 1.413533834586466, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1221.73, "end": 1222.17, "word": "طبعا", "probability": 0.762939453125}, {"start": 1222.17, "end": 1222.83, "word": " هدع", "probability": 0.6422526041666666}, {"start": 1222.83, "end": 1223.41, "word": " مثال", "probability": 0.96923828125}, {"start": 1223.41, "end": 1223.89, "word": " رسم", "probability": 0.875}, {"start": 1223.89, "end": 1224.07, "word": " ال", "probability": 0.92138671875}, {"start": 1224.07, "end": 1224.31, "word": " line", "probability": 0.9404296875}, {"start": 1224.31, "end": 1225.77, "word": " أي", "probability": 0.2261962890625}, {"start": 1225.77, "end": 1226.21, "word": " خطوة", "probability": 0.96630859375}, {"start": 1226.21, "end": 1226.51, "word": " تانية", "probability": 0.99462890625}, {"start": 1226.51, "end": 1226.79, "word": " انت", "probability": 0.7073974609375}, {"start": 1226.79, "end": 1227.75, "word": " حابب", "probability": 0.9568684895833334}, {"start": 1227.75, "end": 1228.27, "word": " تتراجع", "probability": 0.9677734375}, {"start": 1228.27, "end": 1228.49, "word": " عنها", "probability": 0.994140625}, {"start": 1228.49, "end": 1228.71, "word": " بدك", "probability": 0.60107421875}, {"start": 1228.71, "end": 1229.11, "word": " تحدد", "probability": 0.98193359375}, {"start": 1229.11, "end": 1229.31, "word": " كيف", "probability": 0.94091796875}, {"start": 1229.31, "end": 1229.71, "word": " تنعمل", "probability": 0.8812255859375}, {"start": 1229.71, "end": 1230.23, "word": " الخطوة", "probability": 0.9630126953125}, {"start": 1230.23, "end": 1230.41, "word": " و", "probability": 0.9794921875}, {"start": 1230.41, "end": 1230.63, "word": " كيف", "probability": 0.827392578125}, {"start": 1230.63, "end": 1230.83, "word": " انا", "probability": 0.78662109375}, {"start": 1230.83, "end": 1231.17, "word": " ايش", "probability": 0.6980794270833334}, {"start": 1231.17, "end": 1232.03, "word": " ألغيها", "probability": 0.87587890625}], "temperature": 1.0}, {"id": 49, "seek": 126170, "start": 1232.84, "end": 1261.7, "text": " If you wrote a character, you have to decide how to remove this character. If you changed the alignment of a line, you have to store the previous line color and the next line color and switch between them when you do unexecute and return the previous numbers. Okay? So what does this need? It needs a little programming thinking. Every process determines how to do it and how to implement it. Okay? Okay, then we have a class called line command. It has everything necessary", "tokens": [759, 291, 4114, 257, 2517, 11, 291, 362, 281, 4536, 577, 281, 4159, 341, 2517, 13, 759, 291, 3105, 264, 18515, 295, 257, 1622, 11, 291, 362, 281, 3531, 264, 3894, 1622, 2017, 293, 264, 958, 1622, 2017, 293, 3679, 1296, 552, 562, 291, 360, 517, 3121, 3045, 1169, 293, 2736, 264, 3894, 3547, 13, 1033, 30, 407, 437, 775, 341, 643, 30, 467, 2203, 257, 707, 9410, 1953, 13, 2048, 1399, 24799, 577, 281, 360, 309, 293, 577, 281, 4445, 309, 13, 1033, 30, 1033, 11, 550, 321, 362, 257, 1508, 1219, 1622, 5622, 13, 467, 575, 1203, 4818], "avg_logprob": -0.5423886351066061, "compression_ratio": 1.7857142857142858, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 1232.84, "end": 1233.08, "word": " If", "probability": 0.06573486328125}, {"start": 1233.08, "end": 1233.14, "word": " you", "probability": 0.86376953125}, {"start": 1233.14, "end": 1233.28, "word": " wrote", "probability": 0.300048828125}, {"start": 1233.28, "end": 1233.72, "word": " a", "probability": 0.74462890625}, {"start": 1233.72, "end": 1234.06, "word": " character,", "probability": 0.75634765625}, {"start": 1234.16, "end": 1234.18, "word": " you", "probability": 0.76806640625}, {"start": 1234.18, "end": 1234.28, "word": " have", "probability": 0.2421875}, {"start": 1234.28, "end": 1234.38, "word": " to", "probability": 0.96630859375}, {"start": 1234.38, "end": 1234.6, "word": " decide", "probability": 0.255126953125}, {"start": 1234.6, "end": 1234.84, "word": " how", "probability": 0.89404296875}, {"start": 1234.84, "end": 1234.94, "word": " to", "probability": 0.833984375}, {"start": 1234.94, "end": 1235.3, "word": " remove", "probability": 0.304443359375}, {"start": 1235.3, "end": 1235.62, "word": " this", "probability": 0.34130859375}, {"start": 1235.62, "end": 1236.02, "word": " character.", "probability": 0.8232421875}, {"start": 1237.02, "end": 1237.22, "word": " If", "probability": 0.63525390625}, {"start": 1237.22, "end": 1237.22, "word": " you", "probability": 0.9501953125}, {"start": 1237.22, "end": 1237.46, "word": " changed", "probability": 0.5986328125}, {"start": 1237.46, "end": 1237.58, "word": " the", "probability": 0.54052734375}, {"start": 1237.58, "end": 1237.88, "word": " alignment", "probability": 0.1865234375}, {"start": 1237.88, "end": 1237.98, "word": " of", "probability": 0.828125}, {"start": 1237.98, "end": 1238.04, "word": " a", "probability": 0.341064453125}, {"start": 1238.04, "end": 1238.18, "word": " line,", "probability": 0.90087890625}, {"start": 1238.28, "end": 1238.3, "word": " you", "probability": 0.87744140625}, {"start": 1238.3, "end": 1238.4, "word": " have", "probability": 0.8330078125}, {"start": 1238.4, "end": 1239.22, "word": " to", "probability": 0.962890625}, {"start": 1239.22, "end": 1239.68, "word": " store", "probability": 0.60791015625}, {"start": 1239.68, "end": 1240.04, "word": " the", "probability": 0.779296875}, {"start": 1240.04, "end": 1240.8, "word": " previous", "probability": 0.3798828125}, {"start": 1240.8, "end": 1240.8, "word": " line", "probability": 0.740234375}, {"start": 1240.8, "end": 1240.88, "word": " color", "probability": 0.6220703125}, {"start": 1240.88, "end": 1241.22, "word": " and", "probability": 0.83642578125}, {"start": 1241.22, "end": 1241.22, "word": " the", "probability": 0.78173828125}, {"start": 1241.22, "end": 1241.22, "word": " next", "probability": 0.6943359375}, {"start": 1241.22, "end": 1241.48, "word": " line", "probability": 0.8505859375}, {"start": 1241.48, "end": 1241.7, "word": " color", "probability": 0.828125}, {"start": 1241.7, "end": 1242.2, "word": " and", "probability": 0.53271484375}, {"start": 1242.2, "end": 1242.56, "word": " switch", "probability": 0.560546875}, {"start": 1242.56, "end": 1242.78, "word": " between", "probability": 0.6884765625}, {"start": 1242.78, "end": 1242.88, "word": " them", "probability": 0.890625}, {"start": 1242.88, "end": 1243.02, "word": " when", "probability": 0.55908203125}, {"start": 1243.02, "end": 1243.16, "word": " you", "probability": 0.89501953125}, {"start": 1243.16, "end": 1243.3, "word": " do", "probability": 0.2415771484375}, {"start": 1243.3, "end": 1243.82, "word": " unexecute", "probability": 0.694427490234375}, {"start": 1243.82, "end": 1243.98, "word": " and", "probability": 0.578125}, {"start": 1243.98, "end": 1244.3, "word": " return", "probability": 0.445068359375}, {"start": 1244.3, "end": 1245.66, "word": " the", "probability": 0.478515625}, {"start": 1245.66, "end": 1246.46, "word": " previous", "probability": 0.740234375}, {"start": 1246.46, "end": 1246.46, "word": " numbers.", "probability": 0.33251953125}, {"start": 1246.98, "end": 1247.18, "word": " Okay?", "probability": 0.279541015625}, {"start": 1247.58, "end": 1247.92, "word": " So", "probability": 0.783203125}, {"start": 1247.92, "end": 1248.04, "word": " what", "probability": 0.56005859375}, {"start": 1248.04, "end": 1248.04, "word": " does", "probability": 0.9013671875}, {"start": 1248.04, "end": 1248.1, "word": " this", "probability": 0.74169921875}, {"start": 1248.1, "end": 1248.26, "word": " need?", "probability": 0.310546875}, {"start": 1248.64, "end": 1248.8, "word": " It", "probability": 0.74755859375}, {"start": 1248.8, "end": 1248.92, "word": " needs", "probability": 0.8251953125}, {"start": 1248.92, "end": 1249.16, "word": " a", "probability": 0.58154296875}, {"start": 1249.16, "end": 1249.16, "word": " little", "probability": 0.55029296875}, {"start": 1249.16, "end": 1250.34, "word": " programming", "probability": 0.7861328125}, {"start": 1250.34, "end": 1250.4, "word": " thinking.", "probability": 0.76513671875}, {"start": 1250.58, "end": 1251.02, "word": " Every", "probability": 0.358642578125}, {"start": 1251.02, "end": 1251.38, "word": " process", "probability": 0.654296875}, {"start": 1251.38, "end": 1251.74, "word": " determines", "probability": 0.3828125}, {"start": 1251.74, "end": 1252.0, "word": " how", "probability": 0.9365234375}, {"start": 1252.0, "end": 1252.1, "word": " to", "probability": 0.463134765625}, {"start": 1252.1, "end": 1252.32, "word": " do", "probability": 0.533203125}, {"start": 1252.32, "end": 1253.26, "word": " it", "probability": 0.7333984375}, {"start": 1253.26, "end": 1253.42, "word": " and", "probability": 0.84423828125}, {"start": 1253.42, "end": 1253.6, "word": " how", "probability": 0.93994140625}, {"start": 1253.6, "end": 1253.66, "word": " to", "probability": 0.5654296875}, {"start": 1253.66, "end": 1253.84, "word": " implement", "probability": 0.4921875}, {"start": 1253.84, "end": 1255.42, "word": " it.", "probability": 0.9345703125}, {"start": 1256.0, "end": 1256.44, "word": " Okay?", "probability": 0.64892578125}, {"start": 1257.94, "end": 1258.36, "word": " Okay,", "probability": 0.541015625}, {"start": 1258.44, "end": 1258.58, "word": " then", "probability": 0.172119140625}, {"start": 1258.58, "end": 1258.82, "word": " we", "probability": 0.53466796875}, {"start": 1258.82, "end": 1258.82, "word": " have", "probability": 0.50927734375}, {"start": 1258.82, "end": 1258.9, "word": " a", "probability": 0.3583984375}, {"start": 1258.9, "end": 1259.4, "word": " class", "probability": 0.51025390625}, {"start": 1259.4, "end": 1259.74, "word": " called", "probability": 0.51708984375}, {"start": 1259.74, "end": 1259.96, "word": " line", "probability": 0.53515625}, {"start": 1259.96, "end": 1260.36, "word": " command.", "probability": 0.68505859375}, {"start": 1260.38, "end": 1260.54, "word": " It", "probability": 0.81982421875}, {"start": 1260.54, "end": 1260.64, "word": " has", "probability": 0.64208984375}, {"start": 1260.64, "end": 1261.02, "word": " everything", "probability": 0.8818359375}, {"start": 1261.02, "end": 1261.7, "word": " necessary", "probability": 0.50048828125}], "temperature": 1.0}, {"id": 50, "seek": 128770, "start": 1262.6, "end": 1287.7, "text": " to execute the operation, okay? So that now whoever wants to use line command will not have to go into any details, he will just go and claim execute and unexecute. Because if we go back to the drawing panel, because this is the line that was drawn to claim the argument in it. Currently, instead of this line, I want to create a line command. Okay, now we're going to make a command", "tokens": [281, 14483, 264, 6916, 11, 1392, 30, 407, 300, 586, 11387, 2738, 281, 764, 1622, 5622, 486, 406, 362, 281, 352, 666, 604, 4365, 11, 415, 486, 445, 352, 293, 3932, 14483, 293, 11572, 3045, 1169, 13, 1436, 498, 321, 352, 646, 281, 264, 6316, 4831, 11, 570, 341, 307, 264, 1622, 300, 390, 10117, 281, 3932, 264, 6770, 294, 309, 13, 19964, 11, 2602, 295, 341, 1622, 11, 286, 528, 281, 1884, 257, 1622, 5622, 13, 1033, 11, 586, 321, 434, 516, 281, 652, 257, 5622], "avg_logprob": -0.559303995560516, "compression_ratio": 1.6623376623376624, "no_speech_prob": 4.2378902435302734e-05, "words": [{"start": 1262.6, "end": 1262.76, "word": " to", "probability": 0.26953125}, {"start": 1262.76, "end": 1263.06, "word": " execute", "probability": 0.78564453125}, {"start": 1263.06, "end": 1263.2, "word": " the", "probability": 0.463134765625}, {"start": 1263.2, "end": 1263.54, "word": " operation,", "probability": 0.377197265625}, {"start": 1264.1, "end": 1264.4, "word": " okay?", "probability": 0.286865234375}, {"start": 1265.02, "end": 1265.44, "word": " So", "probability": 0.50390625}, {"start": 1265.44, "end": 1265.6, "word": " that", "probability": 0.658203125}, {"start": 1265.6, "end": 1265.88, "word": " now", "probability": 0.45361328125}, {"start": 1265.88, "end": 1266.0, "word": " whoever", "probability": 0.299072265625}, {"start": 1266.0, "end": 1266.2, "word": " wants", "probability": 0.40283203125}, {"start": 1266.2, "end": 1266.22, "word": " to", "probability": 0.97216796875}, {"start": 1266.22, "end": 1266.54, "word": " use", "probability": 0.88232421875}, {"start": 1266.54, "end": 1266.74, "word": " line", "probability": 0.29931640625}, {"start": 1266.74, "end": 1267.02, "word": " command", "probability": 0.89697265625}, {"start": 1267.02, "end": 1267.5, "word": " will", "probability": 0.335205078125}, {"start": 1267.5, "end": 1268.56, "word": " not", "probability": 0.904296875}, {"start": 1268.56, "end": 1268.98, "word": " have", "probability": 0.150146484375}, {"start": 1268.98, "end": 1268.98, "word": " to", "probability": 0.87890625}, {"start": 1268.98, "end": 1269.22, "word": " go", "probability": 0.386474609375}, {"start": 1269.22, "end": 1269.26, "word": " into", "probability": 0.5419921875}, {"start": 1269.26, "end": 1269.4, "word": " any", "probability": 0.56591796875}, {"start": 1269.4, "end": 1269.72, "word": " details,", "probability": 0.70654296875}, {"start": 1269.86, "end": 1269.94, "word": " he", "probability": 0.6943359375}, {"start": 1269.94, "end": 1270.06, "word": " will", "probability": 0.6669921875}, {"start": 1270.06, "end": 1270.2, "word": " just", "probability": 0.48095703125}, {"start": 1270.2, "end": 1270.42, "word": " go", "probability": 0.46337890625}, {"start": 1270.42, "end": 1270.56, "word": " and", "probability": 0.3173828125}, {"start": 1270.56, "end": 1270.84, "word": " claim", "probability": 0.28125}, {"start": 1270.84, "end": 1271.98, "word": " execute", "probability": 0.5380859375}, {"start": 1271.98, "end": 1272.26, "word": " and", "probability": 0.84619140625}, {"start": 1272.26, "end": 1272.94, "word": " unexecute.", "probability": 0.7665201822916666}, {"start": 1273.84, "end": 1274.02, "word": " Because", "probability": 0.436767578125}, {"start": 1274.02, "end": 1274.1, "word": " if", "probability": 0.430419921875}, {"start": 1274.1, "end": 1274.26, "word": " we", "probability": 0.8994140625}, {"start": 1274.26, "end": 1274.36, "word": " go", "probability": 0.76513671875}, {"start": 1274.36, "end": 1274.46, "word": " back", "probability": 0.86083984375}, {"start": 1274.46, "end": 1274.64, "word": " to", "probability": 0.96630859375}, {"start": 1274.64, "end": 1275.64, "word": " the", "probability": 0.8818359375}, {"start": 1275.64, "end": 1275.92, "word": " drawing", "probability": 0.861328125}, {"start": 1275.92, "end": 1276.28, "word": " panel,", "probability": 0.90478515625}, {"start": 1276.7, "end": 1276.98, "word": " because", "probability": 0.650390625}, {"start": 1276.98, "end": 1277.44, "word": " this", "probability": 0.92529296875}, {"start": 1277.44, "end": 1277.56, "word": " is", "probability": 0.78466796875}, {"start": 1277.56, "end": 1277.74, "word": " the", "probability": 0.89794921875}, {"start": 1277.74, "end": 1277.92, "word": " line", "probability": 0.87451171875}, {"start": 1277.92, "end": 1278.28, "word": " that", "probability": 0.68115234375}, {"start": 1278.28, "end": 1278.46, "word": " was", "probability": 0.2298583984375}, {"start": 1278.46, "end": 1278.76, "word": " drawn", "probability": 0.5146484375}, {"start": 1278.76, "end": 1279.04, "word": " to", "probability": 0.4892578125}, {"start": 1279.04, "end": 1279.28, "word": " claim", "probability": 0.931640625}, {"start": 1279.28, "end": 1279.58, "word": " the", "probability": 0.67041015625}, {"start": 1279.58, "end": 1279.76, "word": " argument", "probability": 0.11492919921875}, {"start": 1279.76, "end": 1279.76, "word": " in", "probability": 0.457763671875}, {"start": 1279.76, "end": 1280.2, "word": " it.", "probability": 0.85693359375}, {"start": 1280.5, "end": 1280.94, "word": " Currently,", "probability": 0.51025390625}, {"start": 1281.1, "end": 1281.18, "word": " instead", "probability": 0.8642578125}, {"start": 1281.18, "end": 1281.24, "word": " of", "probability": 0.97216796875}, {"start": 1281.24, "end": 1281.46, "word": " this", "probability": 0.93896484375}, {"start": 1281.46, "end": 1281.78, "word": " line,", "probability": 0.90283203125}, {"start": 1282.66, "end": 1282.78, "word": " I", "probability": 0.708984375}, {"start": 1282.78, "end": 1282.88, "word": " want", "probability": 0.47607421875}, {"start": 1282.88, "end": 1283.12, "word": " to", "probability": 0.9638671875}, {"start": 1283.12, "end": 1283.34, "word": " create", "probability": 0.471923828125}, {"start": 1283.34, "end": 1283.56, "word": " a", "probability": 0.64404296875}, {"start": 1283.56, "end": 1284.42, "word": " line", "probability": 0.62548828125}, {"start": 1284.42, "end": 1285.96, "word": " command.", "probability": 0.94189453125}, {"start": 1286.38, "end": 1286.82, "word": " Okay,", "probability": 0.400146484375}, {"start": 1286.94, "end": 1287.06, "word": " now", "probability": 0.88720703125}, {"start": 1287.06, "end": 1287.28, "word": " we're", "probability": 0.487060546875}, {"start": 1287.28, "end": 1287.3, "word": " going", "probability": 0.91259765625}, {"start": 1287.3, "end": 1287.3, "word": " to", "probability": 0.97314453125}, {"start": 1287.3, "end": 1287.4, "word": " make", "probability": 0.50927734375}, {"start": 1287.4, "end": 1287.56, "word": " a", "probability": 0.498779296875}, {"start": 1287.56, "end": 1287.7, "word": " command", "probability": 0.77392578125}], "temperature": 1.0}, {"id": 51, "seek": 131693, "start": 1289.75, "end": 1316.93, "text": " draw a line this C is equal to new line command because the constructor needs graphics which is this which we need to draw okay, we sent him the graphics because also we need to send him the other information which is C dot start x which is start x", "tokens": [2642, 257, 1622, 341, 383, 307, 2681, 281, 777, 1622, 5622, 570, 264, 47479, 2203, 11837, 597, 307, 341, 597, 321, 643, 281, 2642, 1392, 11, 321, 2279, 796, 264, 11837, 570, 611, 321, 643, 281, 2845, 796, 264, 661, 1589, 597, 307, 383, 5893, 722, 2031, 597, 307, 722, 2031], "avg_logprob": -0.5198317491091214, "compression_ratio": 1.7785714285714285, "no_speech_prob": 1.3709068298339844e-06, "words": [{"start": 1289.75, "end": 1290.21, "word": " draw", "probability": 0.1259765625}, {"start": 1290.21, "end": 1290.33, "word": " a", "probability": 0.31103515625}, {"start": 1290.33, "end": 1290.45, "word": " line", "probability": 0.59765625}, {"start": 1290.45, "end": 1291.19, "word": " this", "probability": 0.250732421875}, {"start": 1291.19, "end": 1291.53, "word": " C", "probability": 0.38671875}, {"start": 1291.53, "end": 1292.03, "word": " is", "probability": 0.335693359375}, {"start": 1292.03, "end": 1292.25, "word": " equal", "probability": 0.461669921875}, {"start": 1292.25, "end": 1292.29, "word": " to", "probability": 0.94775390625}, {"start": 1292.29, "end": 1292.53, "word": " new", "probability": 0.76513671875}, {"start": 1292.53, "end": 1293.51, "word": " line", "probability": 0.791015625}, {"start": 1293.51, "end": 1296.61, "word": " command", "probability": 0.84619140625}, {"start": 1296.61, "end": 1297.53, "word": " because", "probability": 0.5390625}, {"start": 1297.53, "end": 1297.65, "word": " the", "probability": 0.69287109375}, {"start": 1297.65, "end": 1298.13, "word": " constructor", "probability": 0.90625}, {"start": 1298.13, "end": 1298.57, "word": " needs", "probability": 0.75537109375}, {"start": 1298.57, "end": 1299.15, "word": " graphics", "probability": 0.615234375}, {"start": 1299.15, "end": 1299.93, "word": " which", "probability": 0.60986328125}, {"start": 1299.93, "end": 1300.05, "word": " is", "probability": 0.6708984375}, {"start": 1300.05, "end": 1300.31, "word": " this", "probability": 0.77197265625}, {"start": 1300.31, "end": 1300.79, "word": " which", "probability": 0.431884765625}, {"start": 1300.79, "end": 1301.09, "word": " we", "probability": 0.58837890625}, {"start": 1301.09, "end": 1301.09, "word": " need", "probability": 0.32861328125}, {"start": 1301.09, "end": 1301.19, "word": " to", "probability": 0.93603515625}, {"start": 1301.19, "end": 1301.45, "word": " draw", "probability": 0.91162109375}, {"start": 1301.45, "end": 1307.99, "word": " okay,", "probability": 0.2548828125}, {"start": 1308.13, "end": 1308.37, "word": " we", "probability": 0.8935546875}, {"start": 1308.37, "end": 1308.55, "word": " sent", "probability": 0.53369140625}, {"start": 1308.55, "end": 1308.77, "word": " him", "probability": 0.384765625}, {"start": 1308.77, "end": 1308.87, "word": " the", "probability": 0.414794921875}, {"start": 1308.87, "end": 1309.29, "word": " graphics", "probability": 0.85791015625}, {"start": 1309.29, "end": 1310.03, "word": " because", "probability": 0.61669921875}, {"start": 1310.03, "end": 1310.29, "word": " also", "probability": 0.4326171875}, {"start": 1310.29, "end": 1310.41, "word": " we", "probability": 0.826171875}, {"start": 1310.41, "end": 1310.47, "word": " need", "probability": 0.343994140625}, {"start": 1310.47, "end": 1310.53, "word": " to", "probability": 0.9619140625}, {"start": 1310.53, "end": 1310.69, "word": " send", "probability": 0.7958984375}, {"start": 1310.69, "end": 1310.81, "word": " him", "probability": 0.77197265625}, {"start": 1310.81, "end": 1310.89, "word": " the", "probability": 0.7275390625}, {"start": 1310.89, "end": 1311.59, "word": " other", "probability": 0.43408203125}, {"start": 1311.59, "end": 1311.63, "word": " information", "probability": 0.69482421875}, {"start": 1311.63, "end": 1312.43, "word": " which", "probability": 0.876953125}, {"start": 1312.43, "end": 1312.57, "word": " is", "probability": 0.94873046875}, {"start": 1312.57, "end": 1312.97, "word": " C", "probability": 0.69189453125}, {"start": 1312.97, "end": 1313.99, "word": " dot", "probability": 0.485595703125}, {"start": 1313.99, "end": 1314.59, "word": " start", "probability": 0.87646484375}, {"start": 1314.59, "end": 1315.01, "word": " x", "probability": 0.38232421875}, {"start": 1315.01, "end": 1315.69, "word": " which", "probability": 0.50146484375}, {"start": 1315.69, "end": 1315.93, "word": " is", "probability": 0.82470703125}, {"start": 1315.93, "end": 1316.51, "word": " start", "probability": 0.78759765625}, {"start": 1316.51, "end": 1316.93, "word": " x", "probability": 0.92236328125}], "temperature": 1.0}, {"id": 52, "seek": 134130, "start": 1318.9, "end": 1341.3, "text": " end x or start y c dot end x e dot get x c dot end y", "tokens": [917, 2031, 420, 722, 288, 269, 5893, 917, 2031, 308, 5893, 483, 2031, 269, 5893, 917, 288], "avg_logprob": -0.3359374966886308, "compression_ratio": 1.2045454545454546, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1318.9, "end": 1319.48, "word": " end", "probability": 0.31591796875}, {"start": 1319.48, "end": 1320.38, "word": " x", "probability": 0.67724609375}, {"start": 1320.38, "end": 1320.68, "word": " or", "probability": 0.74462890625}, {"start": 1320.68, "end": 1321.1, "word": " start", "probability": 0.9462890625}, {"start": 1321.1, "end": 1321.56, "word": " y", "probability": 0.93017578125}, {"start": 1321.56, "end": 1327.48, "word": " c", "probability": 0.1663818359375}, {"start": 1327.48, "end": 1327.88, "word": " dot", "probability": 0.4375}, {"start": 1327.88, "end": 1328.24, "word": " end", "probability": 0.9296875}, {"start": 1328.24, "end": 1329.34, "word": " x", "probability": 0.9912109375}, {"start": 1329.34, "end": 1334.7, "word": " e", "probability": 0.31689453125}, {"start": 1334.7, "end": 1335.58, "word": " dot", "probability": 0.95263671875}, {"start": 1335.58, "end": 1335.96, "word": " get", "probability": 0.96044921875}, {"start": 1335.96, "end": 1338.28, "word": " x", "probability": 0.98974609375}, {"start": 1338.28, "end": 1340.08, "word": " c", "probability": 0.91357421875}, {"start": 1340.08, "end": 1340.54, "word": " dot", "probability": 0.95263671875}, {"start": 1340.54, "end": 1340.88, "word": " end", "probability": 0.916015625}, {"start": 1340.88, "end": 1341.3, "word": " y", "probability": 0.98486328125}], "temperature": 1.0}, {"id": 53, "seek": 137123, "start": 1343.37, "end": 1371.23, "text": " E dot get get one These are the necessary information for drawing Now I want to execute the process, I say what? C dot execute That is, instead of this line We made who? Line, we gave information and made execute It will do the same process, but the execute executes this line So let's run the application", "tokens": [462, 5893, 483, 483, 472, 1981, 366, 264, 4818, 1589, 337, 6316, 823, 286, 528, 281, 14483, 264, 1399, 11, 286, 584, 437, 30, 383, 5893, 14483, 663, 307, 11, 2602, 295, 341, 1622, 492, 1027, 567, 30, 14670, 11, 321, 2729, 1589, 293, 1027, 14483, 467, 486, 360, 264, 912, 1399, 11, 457, 264, 14483, 4454, 1819, 341, 1622, 407, 718, 311, 1190, 264, 3861], "avg_logprob": -0.5741604726705978, "compression_ratio": 1.6363636363636365, "no_speech_prob": 6.9141387939453125e-06, "words": [{"start": 1343.37, "end": 1343.79, "word": " E", "probability": 0.175048828125}, {"start": 1343.79, "end": 1344.45, "word": " dot", "probability": 0.5361328125}, {"start": 1344.45, "end": 1344.95, "word": " get", "probability": 0.7646484375}, {"start": 1344.95, "end": 1346.35, "word": " get", "probability": 0.386474609375}, {"start": 1346.35, "end": 1346.61, "word": " one", "probability": 0.75390625}, {"start": 1346.61, "end": 1347.85, "word": " These", "probability": 0.2396240234375}, {"start": 1347.85, "end": 1347.95, "word": " are", "probability": 0.90380859375}, {"start": 1347.95, "end": 1347.97, "word": " the", "probability": 0.74462890625}, {"start": 1347.97, "end": 1348.63, "word": " necessary", "probability": 0.395263671875}, {"start": 1348.63, "end": 1348.63, "word": " information", "probability": 0.465576171875}, {"start": 1348.63, "end": 1349.19, "word": " for", "probability": 0.79833984375}, {"start": 1349.19, "end": 1349.55, "word": " drawing", "probability": 0.473388671875}, {"start": 1349.55, "end": 1352.33, "word": " Now", "probability": 0.7197265625}, {"start": 1352.33, "end": 1353.17, "word": " I", "probability": 0.5419921875}, {"start": 1353.17, "end": 1353.29, "word": " want", "probability": 0.53857421875}, {"start": 1353.29, "end": 1353.37, "word": " to", "probability": 0.95849609375}, {"start": 1353.37, "end": 1353.57, "word": " execute", "probability": 0.52783203125}, {"start": 1353.57, "end": 1353.71, "word": " the", "probability": 0.74755859375}, {"start": 1353.71, "end": 1354.03, "word": " process,", "probability": 0.71826171875}, {"start": 1354.13, "end": 1354.17, "word": " I", "probability": 0.705078125}, {"start": 1354.17, "end": 1354.33, "word": " say", "probability": 0.33154296875}, {"start": 1354.33, "end": 1354.73, "word": " what?", "probability": 0.41796875}, {"start": 1354.97, "end": 1355.25, "word": " C", "probability": 0.76953125}, {"start": 1355.25, "end": 1355.65, "word": " dot", "probability": 0.91162109375}, {"start": 1355.65, "end": 1358.29, "word": " execute", "probability": 0.72607421875}, {"start": 1358.29, "end": 1358.85, "word": " That", "probability": 0.0936279296875}, {"start": 1358.85, "end": 1358.93, "word": " is,", "probability": 0.58447265625}, {"start": 1358.95, "end": 1359.15, "word": " instead", "probability": 0.85205078125}, {"start": 1359.15, "end": 1359.25, "word": " of", "probability": 0.97119140625}, {"start": 1359.25, "end": 1359.85, "word": " this", "probability": 0.81689453125}, {"start": 1359.85, "end": 1359.85, "word": " line", "probability": 0.86572265625}, {"start": 1359.85, "end": 1361.47, "word": " We", "probability": 0.349853515625}, {"start": 1361.47, "end": 1361.69, "word": " made", "probability": 0.50732421875}, {"start": 1361.69, "end": 1361.93, "word": " who?", "probability": 0.2376708984375}, {"start": 1362.15, "end": 1362.57, "word": " Line,", "probability": 0.54345703125}, {"start": 1362.71, "end": 1362.79, "word": " we", "probability": 0.42626953125}, {"start": 1362.79, "end": 1363.17, "word": " gave", "probability": 0.66357421875}, {"start": 1363.17, "end": 1363.63, "word": " information", "probability": 0.2205810546875}, {"start": 1363.63, "end": 1364.01, "word": " and", "probability": 0.53515625}, {"start": 1364.01, "end": 1364.23, "word": " made", "probability": 0.287353515625}, {"start": 1364.23, "end": 1364.71, "word": " execute", "probability": 0.8505859375}, {"start": 1364.71, "end": 1364.87, "word": " It", "probability": 0.57861328125}, {"start": 1364.87, "end": 1364.95, "word": " will", "probability": 0.7392578125}, {"start": 1364.95, "end": 1365.11, "word": " do", "probability": 0.83642578125}, {"start": 1365.11, "end": 1365.35, "word": " the", "probability": 0.91748046875}, {"start": 1365.35, "end": 1365.35, "word": " same", "probability": 0.892578125}, {"start": 1365.35, "end": 1365.67, "word": " process,", "probability": 0.8271484375}, {"start": 1365.73, "end": 1365.79, "word": " but", "probability": 0.75732421875}, {"start": 1365.79, "end": 1365.91, "word": " the", "probability": 0.33740234375}, {"start": 1365.91, "end": 1366.31, "word": " execute", "probability": 0.87890625}, {"start": 1366.31, "end": 1366.87, "word": " executes", "probability": 0.67529296875}, {"start": 1366.87, "end": 1368.07, "word": " this", "probability": 0.83642578125}, {"start": 1368.07, "end": 1368.07, "word": " line", "probability": 0.8974609375}, {"start": 1368.07, "end": 1369.37, "word": " So", "probability": 0.284912109375}, {"start": 1369.37, "end": 1369.63, "word": " let's", "probability": 0.760498046875}, {"start": 1369.63, "end": 1369.93, "word": " run", "probability": 0.51025390625}, {"start": 1369.93, "end": 1370.91, "word": " the", "probability": 0.62060546875}, {"start": 1370.91, "end": 1371.23, "word": " application", "probability": 0.82861328125}], "temperature": 1.0}, {"id": 54, "seek": 139522, "start": 1375.28, "end": 1395.22, "text": "الان حاليا إيش بيعمل؟ هاي و قاعد برسم بس لسه برضه ال undo و ال redo ماعملناهوش يعني عشان نعمل ال undo و ال redo ضال علينا خطوة أنه الأوامر هذه اللي إحنا بنعملها بدنا نخزنها تمام؟ فروحنا بدنا نعمل class جديدة", "tokens": [6027, 7649, 11331, 6027, 25528, 11933, 1829, 8592, 4724, 1829, 25957, 1211, 22807, 8032, 47302, 4032, 12174, 995, 22488, 4724, 2288, 38251, 4724, 3794, 5296, 3794, 3224, 4724, 43042, 3224, 2423, 23779, 4032, 2423, 29956, 19446, 25957, 1211, 8315, 3224, 2407, 8592, 37495, 22653, 6225, 8592, 7649, 8717, 25957, 1211, 2423, 23779, 4032, 2423, 29956, 48812, 6027, 25894, 8315, 16490, 9566, 2407, 3660, 14739, 3224, 16247, 2407, 10943, 2288, 29538, 13672, 1829, 11933, 5016, 8315, 44945, 25957, 1211, 11296, 47525, 8315, 8717, 9778, 11622, 1863, 11296, 46811, 10943, 22807, 6156, 32887, 5016, 8315, 47525, 8315, 8717, 25957, 1211, 1508, 10874, 16254, 41891], "avg_logprob": -0.28686285481869594, "compression_ratio": 1.7688442211055277, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1375.28, "end": 1375.66, "word": "الان", "probability": 0.24639892578125}, {"start": 1375.66, "end": 1376.16, "word": " حاليا", "probability": 0.9345703125}, {"start": 1376.16, "end": 1376.36, "word": " إيش", "probability": 0.67138671875}, {"start": 1376.36, "end": 1377.36, "word": " بيعمل؟", "probability": 0.789208984375}, {"start": 1377.36, "end": 1377.86, "word": " هاي", "probability": 0.2381591796875}, {"start": 1377.86, "end": 1377.92, "word": " و", "probability": 0.90771484375}, {"start": 1377.92, "end": 1378.06, "word": " قاعد", "probability": 0.7980143229166666}, {"start": 1378.06, "end": 1378.42, "word": " برسم", "probability": 0.8126627604166666}, {"start": 1378.42, "end": 1378.72, "word": " بس", "probability": 0.71142578125}, {"start": 1378.72, "end": 1379.08, "word": " لسه", "probability": 0.953125}, {"start": 1379.08, "end": 1379.3, "word": " برضه", "probability": 0.8531901041666666}, {"start": 1379.3, "end": 1379.44, "word": " ال", "probability": 0.95654296875}, {"start": 1379.44, "end": 1379.66, "word": " undo", "probability": 0.322265625}, {"start": 1379.66, "end": 1379.82, "word": " و", "probability": 0.9072265625}, {"start": 1379.82, "end": 1379.86, "word": " ال", "probability": 0.1759033203125}, {"start": 1379.86, "end": 1380.12, "word": " redo", "probability": 0.90625}, {"start": 1380.12, "end": 1382.12, "word": " ماعملناهوش", "probability": 0.7850167410714286}, {"start": 1382.12, "end": 1385.14, "word": " يعني", "probability": 0.45391845703125}, {"start": 1385.14, "end": 1385.42, "word": " عشان", "probability": 0.98486328125}, {"start": 1385.42, "end": 1385.72, "word": " نعمل", "probability": 0.9943033854166666}, {"start": 1385.72, "end": 1385.8, "word": " ال", "probability": 0.99169921875}, {"start": 1385.8, "end": 1386.0, "word": " undo", "probability": 0.95361328125}, {"start": 1386.0, "end": 1386.14, "word": " و", "probability": 0.99462890625}, {"start": 1386.14, "end": 1386.16, "word": " ال", "probability": 0.880859375}, {"start": 1386.16, "end": 1386.38, "word": " redo", "probability": 0.83544921875}, {"start": 1386.38, "end": 1386.68, "word": " ضال", "probability": 0.5921630859375}, {"start": 1386.68, "end": 1386.94, "word": " علينا", "probability": 0.955810546875}, {"start": 1386.94, "end": 1387.44, "word": " خطوة", "probability": 0.984619140625}, {"start": 1387.44, "end": 1388.84, "word": " أنه", "probability": 0.6517333984375}, {"start": 1388.84, "end": 1389.56, "word": " الأوامر", "probability": 0.85791015625}, {"start": 1389.56, "end": 1389.78, "word": " هذه", "probability": 0.32861328125}, {"start": 1389.78, "end": 1389.88, "word": " اللي", "probability": 0.966552734375}, {"start": 1389.88, "end": 1390.06, "word": " إحنا", "probability": 0.8006184895833334}, {"start": 1390.06, "end": 1390.64, "word": " بنعملها", "probability": 0.9453125}, {"start": 1390.64, "end": 1390.98, "word": " بدنا", "probability": 0.71923828125}, {"start": 1390.98, "end": 1391.88, "word": " نخزنها", "probability": 0.92919921875}, {"start": 1391.88, "end": 1393.1, "word": " تمام؟", "probability": 0.654296875}, {"start": 1393.1, "end": 1393.74, "word": " فروحنا", "probability": 0.9781494140625}, {"start": 1393.74, "end": 1394.2, "word": " بدنا", "probability": 0.922607421875}, {"start": 1394.2, "end": 1394.4, "word": " نعمل", "probability": 0.92041015625}, {"start": 1394.4, "end": 1394.74, "word": " class", "probability": 0.99072265625}, {"start": 1394.74, "end": 1395.22, "word": " جديدة", "probability": 0.97607421875}], "temperature": 1.0}, {"id": 55, "seek": 140586, "start": 1397.96, "end": 1405.86, "text": "اسمه drawing manager هذا هو اللي هيحتفظ في ال commands و هينفذ عملية ال undo و ال redo", "tokens": [32277, 2304, 3224, 6316, 6598, 23758, 31439, 13672, 1829, 39896, 33753, 5172, 19913, 8978, 2423, 16901, 4032, 39896, 1863, 5172, 8848, 6225, 42213, 10632, 2423, 23779, 4032, 2423, 29956], "avg_logprob": -0.26315102775891624, "compression_ratio": 1.1682242990654206, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1397.96, "end": 1398.58, "word": "اسمه", "probability": 0.6738077799479166}, {"start": 1398.58, "end": 1399.0, "word": " drawing", "probability": 0.5595703125}, {"start": 1399.0, "end": 1400.54, "word": " manager", "probability": 0.935546875}, {"start": 1400.54, "end": 1401.5, "word": " هذا", "probability": 0.498291015625}, {"start": 1401.5, "end": 1401.72, "word": " هو", "probability": 0.9501953125}, {"start": 1401.72, "end": 1401.86, "word": " اللي", "probability": 0.872802734375}, {"start": 1401.86, "end": 1402.4, "word": " هيحتفظ", "probability": 0.897705078125}, {"start": 1402.4, "end": 1402.52, "word": " في", "probability": 0.87353515625}, {"start": 1402.52, "end": 1402.6, "word": " ال", "probability": 0.90185546875}, {"start": 1402.6, "end": 1403.08, "word": " commands", "probability": 0.8603515625}, {"start": 1403.08, "end": 1403.52, "word": " و", "probability": 0.67822265625}, {"start": 1403.52, "end": 1403.92, "word": " هينفذ", "probability": 0.7791748046875}, {"start": 1403.92, "end": 1404.28, "word": " عملية", "probability": 0.9781901041666666}, {"start": 1404.28, "end": 1404.4, "word": " ال", "probability": 0.80712890625}, {"start": 1404.4, "end": 1404.68, "word": " undo", "probability": 0.8876953125}, {"start": 1404.68, "end": 1405.6, "word": " و", "probability": 0.93896484375}, {"start": 1405.6, "end": 1405.66, "word": " ال", "probability": 0.79443359375}, {"start": 1405.66, "end": 1405.86, "word": " redo", "probability": 0.86669921875}], "temperature": 1.0}, {"id": 56, "seek": 143014, "start": 1406.88, "end": 1430.14, "text": "This is similar to what we did in the last lecture. This is similar to the class called the Stock Agent, which stores orders and executes them. But his job is different. It is not execute all. The example in the last lecture was to store all the orders and execute them later. This will store them all and will repeat or repeat order after order.", "tokens": [5723, 307, 2531, 281, 437, 321, 630, 294, 264, 1036, 7991, 13, 639, 307, 2531, 281, 264, 1508, 1219, 264, 17857, 27174, 11, 597, 9512, 9470, 293, 4454, 1819, 552, 13, 583, 702, 1691, 307, 819, 13, 467, 307, 406, 14483, 439, 13, 440, 1365, 294, 264, 1036, 7991, 390, 281, 3531, 439, 264, 9470, 293, 14483, 552, 1780, 13, 639, 486, 3531, 552, 439, 293, 486, 7149, 420, 7149, 1668, 934, 1668, 13], "avg_logprob": -0.566249984105428, "compression_ratio": 1.8404255319148937, "no_speech_prob": 2.9206275939941406e-06, "words": [{"start": 1406.88, "end": 1407.22, "word": "This", "probability": 0.4033203125}, {"start": 1407.22, "end": 1407.26, "word": " is", "probability": 0.72900390625}, {"start": 1407.26, "end": 1407.42, "word": " similar", "probability": 0.42138671875}, {"start": 1407.42, "end": 1407.44, "word": " to", "probability": 0.91845703125}, {"start": 1407.44, "end": 1407.44, "word": " what", "probability": 0.421142578125}, {"start": 1407.44, "end": 1407.5, "word": " we", "probability": 0.92236328125}, {"start": 1407.5, "end": 1407.66, "word": " did", "probability": 0.763671875}, {"start": 1407.66, "end": 1407.78, "word": " in", "probability": 0.6923828125}, {"start": 1407.78, "end": 1407.82, "word": " the", "probability": 0.64599609375}, {"start": 1407.82, "end": 1407.84, "word": " last", "probability": 0.4267578125}, {"start": 1407.84, "end": 1408.14, "word": " lecture.", "probability": 0.5947265625}, {"start": 1408.44, "end": 1408.56, "word": " This", "probability": 0.476806640625}, {"start": 1408.56, "end": 1408.62, "word": " is", "probability": 0.810546875}, {"start": 1408.62, "end": 1408.9, "word": " similar", "probability": 0.798828125}, {"start": 1408.9, "end": 1409.4, "word": " to", "probability": 0.90869140625}, {"start": 1409.4, "end": 1409.76, "word": " the", "probability": 0.72412109375}, {"start": 1409.76, "end": 1410.14, "word": " class", "probability": 0.78369140625}, {"start": 1410.14, "end": 1410.5, "word": " called", "probability": 0.42041015625}, {"start": 1410.5, "end": 1410.62, "word": " the", "probability": 0.2607421875}, {"start": 1410.62, "end": 1410.84, "word": " Stock", "probability": 0.430419921875}, {"start": 1410.84, "end": 1411.32, "word": " Agent,", "probability": 0.7880859375}, {"start": 1411.82, "end": 1412.12, "word": " which", "probability": 0.58544921875}, {"start": 1412.12, "end": 1412.38, "word": " stores", "probability": 0.7880859375}, {"start": 1412.38, "end": 1412.84, "word": " orders", "probability": 0.3671875}, {"start": 1412.84, "end": 1415.08, "word": " and", "probability": 0.54345703125}, {"start": 1415.08, "end": 1415.54, "word": " executes", "probability": 0.847412109375}, {"start": 1415.54, "end": 1416.34, "word": " them.", "probability": 0.5263671875}, {"start": 1416.34, "end": 1416.46, "word": " But", "probability": 0.728515625}, {"start": 1416.46, "end": 1417.08, "word": " his", "probability": 0.12164306640625}, {"start": 1417.08, "end": 1417.8, "word": " job", "probability": 0.5576171875}, {"start": 1417.8, "end": 1417.8, "word": " is", "probability": 0.57275390625}, {"start": 1417.8, "end": 1417.8, "word": " different.", "probability": 0.68994140625}, {"start": 1418.04, "end": 1418.14, "word": " It", "probability": 0.552734375}, {"start": 1418.14, "end": 1418.16, "word": " is", "probability": 0.471923828125}, {"start": 1418.16, "end": 1418.28, "word": " not", "probability": 0.931640625}, {"start": 1418.28, "end": 1418.62, "word": " execute", "probability": 0.43701171875}, {"start": 1418.62, "end": 1419.04, "word": " all.", "probability": 0.896484375}, {"start": 1419.42, "end": 1419.86, "word": " The", "probability": 0.67578125}, {"start": 1419.86, "end": 1420.08, "word": " example", "probability": 0.72900390625}, {"start": 1420.08, "end": 1420.28, "word": " in", "probability": 0.436279296875}, {"start": 1420.28, "end": 1420.32, "word": " the", "probability": 0.880859375}, {"start": 1420.32, "end": 1420.9, "word": " last", "probability": 0.615234375}, {"start": 1420.9, "end": 1420.9, "word": " lecture", "probability": 0.9326171875}, {"start": 1420.9, "end": 1421.06, "word": " was", "probability": 0.7470703125}, {"start": 1421.06, "end": 1421.16, "word": " to", "probability": 0.50244140625}, {"start": 1421.16, "end": 1421.44, "word": " store", "probability": 0.857421875}, {"start": 1421.44, "end": 1421.76, "word": " all", "probability": 0.86669921875}, {"start": 1421.76, "end": 1421.82, "word": " the", "probability": 0.38916015625}, {"start": 1421.82, "end": 1422.12, "word": " orders", "probability": 0.83154296875}, {"start": 1422.12, "end": 1422.22, "word": " and", "probability": 0.9052734375}, {"start": 1422.22, "end": 1422.52, "word": " execute", "probability": 0.78466796875}, {"start": 1422.52, "end": 1422.92, "word": " them", "probability": 0.828125}, {"start": 1422.92, "end": 1423.92, "word": " later.", "probability": 0.33837890625}, {"start": 1424.46, "end": 1424.7, "word": " This", "probability": 0.736328125}, {"start": 1424.7, "end": 1424.78, "word": " will", "probability": 0.2193603515625}, {"start": 1424.78, "end": 1425.16, "word": " store", "probability": 0.8076171875}, {"start": 1425.16, "end": 1425.3, "word": " them", "probability": 0.54150390625}, {"start": 1425.3, "end": 1425.52, "word": " all", "probability": 0.90234375}, {"start": 1425.52, "end": 1425.78, "word": " and", "probability": 0.8603515625}, {"start": 1425.78, "end": 1426.0, "word": " will", "probability": 0.228759765625}, {"start": 1426.0, "end": 1427.26, "word": " repeat", "probability": 0.15869140625}, {"start": 1427.26, "end": 1427.68, "word": " or", "probability": 0.382080078125}, {"start": 1427.68, "end": 1429.1, "word": " repeat", "probability": 0.2421875}, {"start": 1429.1, "end": 1429.82, "word": " order", "probability": 0.39990234375}, {"start": 1429.82, "end": 1430.02, "word": " after", "probability": 0.69189453125}, {"start": 1430.02, "end": 1430.14, "word": " order.", "probability": 0.9228515625}], "temperature": 1.0}, {"id": 57, "seek": 144765, "start": 1431.17, "end": 1447.65, "text": "فروحنا على drawing manager ونفس الفكرة في البداية أنه بعمل فيه array list من نوع draw command هاي commands يساوي new array list", "tokens": [5172, 32887, 5016, 8315, 15844, 6316, 6598, 4032, 1863, 36178, 27188, 4117, 25720, 8978, 29739, 28259, 10632, 14739, 3224, 4724, 25957, 1211, 8978, 3224, 10225, 1329, 9154, 8717, 45367, 2642, 5622, 8032, 47302, 16901, 7251, 3794, 995, 45865, 777, 10225, 1329], "avg_logprob": -0.17689732000941322, "compression_ratio": 1.2992700729927007, "no_speech_prob": 0.0, "words": [{"start": 1431.17, "end": 1431.73, "word": "فروحنا", "probability": 0.82049560546875}, {"start": 1431.73, "end": 1431.85, "word": " على", "probability": 0.693359375}, {"start": 1431.85, "end": 1432.07, "word": " drawing", "probability": 0.603515625}, {"start": 1432.07, "end": 1432.53, "word": " manager", "probability": 0.9384765625}, {"start": 1432.53, "end": 1433.35, "word": " ونفس", "probability": 0.7897135416666666}, {"start": 1433.35, "end": 1433.73, "word": " الفكرة", "probability": 0.96435546875}, {"start": 1433.73, "end": 1433.83, "word": " في", "probability": 0.89990234375}, {"start": 1433.83, "end": 1434.31, "word": " البداية", "probability": 0.99365234375}, {"start": 1434.31, "end": 1434.51, "word": " أنه", "probability": 0.63720703125}, {"start": 1434.51, "end": 1434.81, "word": " بعمل", "probability": 0.97607421875}, {"start": 1434.81, "end": 1435.67, "word": " فيه", "probability": 0.967529296875}, {"start": 1435.67, "end": 1436.35, "word": " array", "probability": 0.74462890625}, {"start": 1436.35, "end": 1436.81, "word": " list", "probability": 0.77685546875}, {"start": 1436.81, "end": 1437.63, "word": " من", "probability": 0.994140625}, {"start": 1437.63, "end": 1437.99, "word": " نوع", "probability": 0.9794921875}, {"start": 1437.99, "end": 1439.39, "word": " draw", "probability": 0.8388671875}, {"start": 1439.39, "end": 1441.79, "word": " command", "probability": 0.86474609375}, {"start": 1441.79, "end": 1443.97, "word": " هاي", "probability": 0.539794921875}, {"start": 1443.97, "end": 1444.55, "word": " commands", "probability": 0.765625}, {"start": 1444.55, "end": 1445.59, "word": " يساوي", "probability": 0.839599609375}, {"start": 1445.59, "end": 1445.93, "word": " new", "probability": 0.947265625}, {"start": 1445.93, "end": 1447.19, "word": " array", "probability": 0.90478515625}, {"start": 1447.19, "end": 1447.65, "word": " list", "probability": 0.8740234375}], "temperature": 1.0}, {"id": 58, "seek": 148728, "start": 1461.92, "end": 1487.28, "text": " Okay, now in the drawing manager, we want to create a method public void add draw command to add to the list Okay, here is draw command C Okay guys, then here I will create two methods which is undo", "tokens": [1033, 11, 586, 294, 264, 6316, 6598, 11, 321, 528, 281, 1884, 257, 3170, 1908, 22009, 909, 2642, 5622, 281, 909, 281, 264, 1329, 1033, 11, 510, 307, 2642, 5622, 383, 1033, 1074, 11, 550, 510, 286, 486, 1884, 732, 7150, 597, 307, 23779], "avg_logprob": -0.4291666799121433, "compression_ratio": 1.4962406015037595, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1461.9199999999998, "end": 1462.6, "word": " Okay,", "probability": 0.264404296875}, {"start": 1462.6, "end": 1463.28, "word": " now", "probability": 0.810546875}, {"start": 1463.28, "end": 1464.24, "word": " in", "probability": 0.6630859375}, {"start": 1464.24, "end": 1464.36, "word": " the", "probability": 0.5849609375}, {"start": 1464.36, "end": 1464.6, "word": " drawing", "probability": 0.5849609375}, {"start": 1464.6, "end": 1464.98, "word": " manager,", "probability": 0.9404296875}, {"start": 1465.12, "end": 1465.14, "word": " we", "probability": 0.8642578125}, {"start": 1465.14, "end": 1465.3, "word": " want", "probability": 0.29833984375}, {"start": 1465.3, "end": 1465.36, "word": " to", "probability": 0.97412109375}, {"start": 1465.36, "end": 1465.66, "word": " create", "probability": 0.45654296875}, {"start": 1465.66, "end": 1466.52, "word": " a", "probability": 0.708984375}, {"start": 1466.52, "end": 1466.88, "word": " method", "probability": 0.92041015625}, {"start": 1466.88, "end": 1467.5, "word": " public", "probability": 0.70166015625}, {"start": 1467.5, "end": 1468.06, "word": " void", "probability": 0.857421875}, {"start": 1468.06, "end": 1468.6, "word": " add", "probability": 0.9130859375}, {"start": 1468.6, "end": 1470.02, "word": " draw", "probability": 0.708984375}, {"start": 1470.02, "end": 1470.88, "word": " command", "probability": 0.740234375}, {"start": 1470.88, "end": 1471.92, "word": " to", "probability": 0.5302734375}, {"start": 1471.92, "end": 1472.18, "word": " add", "probability": 0.88427734375}, {"start": 1472.18, "end": 1472.32, "word": " to", "probability": 0.57861328125}, {"start": 1472.32, "end": 1472.36, "word": " the", "probability": 0.853515625}, {"start": 1472.36, "end": 1472.7, "word": " list", "probability": 0.90771484375}, {"start": 1472.7, "end": 1474.24, "word": " Okay,", "probability": 0.162109375}, {"start": 1474.34, "end": 1474.5, "word": " here", "probability": 0.4443359375}, {"start": 1474.5, "end": 1474.5, "word": " is", "probability": 0.419189453125}, {"start": 1474.5, "end": 1474.84, "word": " draw", "probability": 0.5048828125}, {"start": 1474.84, "end": 1475.86, "word": " command", "probability": 0.85888671875}, {"start": 1475.86, "end": 1476.32, "word": " C", "probability": 0.5576171875}, {"start": 1476.32, "end": 1482.38, "word": " Okay", "probability": 0.666015625}, {"start": 1482.38, "end": 1482.8, "word": " guys,", "probability": 0.66162109375}, {"start": 1483.16, "end": 1483.82, "word": " then", "probability": 0.59912109375}, {"start": 1483.82, "end": 1484.14, "word": " here", "probability": 0.69921875}, {"start": 1484.14, "end": 1484.26, "word": " I", "probability": 0.8701171875}, {"start": 1484.26, "end": 1484.3, "word": " will", "probability": 0.50048828125}, {"start": 1484.3, "end": 1484.44, "word": " create", "probability": 0.76318359375}, {"start": 1484.44, "end": 1484.64, "word": " two", "probability": 0.85205078125}, {"start": 1484.64, "end": 1485.16, "word": " methods", "probability": 0.92529296875}, {"start": 1485.16, "end": 1486.82, "word": " which", "probability": 0.60302734375}, {"start": 1486.82, "end": 1486.98, "word": " is", "probability": 0.60546875}, {"start": 1486.98, "end": 1487.28, "word": " undo", "probability": 0.9541015625}], "temperature": 1.0}, {"id": 59, "seek": 150206, "start": 1490.84, "end": 1502.06, "text": "public void redo Now pay attention to how we execute undo and redo", "tokens": [79, 3865, 22009, 29956, 823, 1689, 3202, 281, 577, 321, 14483, 23779, 293, 29956], "avg_logprob": -0.5885416746139527, "compression_ratio": 1.0, "no_speech_prob": 0.0, "words": [{"start": 1490.84, "end": 1491.56, "word": "public", "probability": 0.619873046875}, {"start": 1491.56, "end": 1492.36, "word": " void", "probability": 0.9404296875}, {"start": 1492.36, "end": 1494.26, "word": " redo", "probability": 0.88818359375}, {"start": 1494.26, "end": 1499.66, "word": " Now", "probability": 0.1668701171875}, {"start": 1499.66, "end": 1500.06, "word": " pay", "probability": 0.2320556640625}, {"start": 1500.06, "end": 1500.08, "word": " attention", "probability": 0.93701171875}, {"start": 1500.08, "end": 1500.32, "word": " to", "probability": 0.73046875}, {"start": 1500.32, "end": 1500.52, "word": " how", "probability": 0.8671875}, {"start": 1500.52, "end": 1500.64, "word": " we", "probability": 0.57373046875}, {"start": 1500.64, "end": 1501.1, "word": " execute", "probability": 0.21875}, {"start": 1501.1, "end": 1501.68, "word": " undo", "probability": 0.56884765625}, {"start": 1501.68, "end": 1501.84, "word": " and", "probability": 0.414794921875}, {"start": 1501.84, "end": 1502.06, "word": " redo", "probability": 0.90673828125}], "temperature": 1.0}, {"id": 60, "seek": 152915, "start": 1504.17, "end": 1529.15, "text": "Now guys, we have agreed that what happens next is that he will have a list and commands will be stored in it. Each command stored here represents a line, a part of this drawing, with all its information, the starting point, the ending point and the line, right? Okay, so each one represents a part because I really", "tokens": [13267, 1074, 11, 321, 362, 9166, 300, 437, 2314, 958, 307, 300, 415, 486, 362, 257, 1329, 293, 16901, 486, 312, 12187, 294, 309, 13, 6947, 5622, 12187, 510, 8855, 257, 1622, 11, 257, 644, 295, 341, 6316, 11, 365, 439, 1080, 1589, 11, 264, 2891, 935, 11, 264, 8121, 935, 293, 264, 1622, 11, 558, 30, 1033, 11, 370, 1184, 472, 8855, 257, 644, 570, 286, 534], "avg_logprob": -0.44587863355443097, "compression_ratio": 1.640625, "no_speech_prob": 2.2649765014648438e-06, "words": [{"start": 1504.17, "end": 1504.49, "word": "Now", "probability": 0.548828125}, {"start": 1504.49, "end": 1504.85, "word": " guys,", "probability": 0.6162109375}, {"start": 1505.01, "end": 1505.15, "word": " we", "probability": 0.84033203125}, {"start": 1505.15, "end": 1505.17, "word": " have", "probability": 0.334228515625}, {"start": 1505.17, "end": 1505.53, "word": " agreed", "probability": 0.7607421875}, {"start": 1505.53, "end": 1506.13, "word": " that", "probability": 0.5224609375}, {"start": 1506.13, "end": 1506.51, "word": " what", "probability": 0.350830078125}, {"start": 1506.51, "end": 1506.51, "word": " happens", "probability": 0.336181640625}, {"start": 1506.51, "end": 1506.95, "word": " next", "probability": 0.51904296875}, {"start": 1506.95, "end": 1507.17, "word": " is", "probability": 0.6865234375}, {"start": 1507.17, "end": 1507.79, "word": " that", "probability": 0.70068359375}, {"start": 1507.79, "end": 1507.91, "word": " he", "probability": 0.287841796875}, {"start": 1507.91, "end": 1507.93, "word": " will", "probability": 0.62890625}, {"start": 1507.93, "end": 1508.17, "word": " have", "probability": 0.89599609375}, {"start": 1508.17, "end": 1508.35, "word": " a", "probability": 0.95263671875}, {"start": 1508.35, "end": 1508.67, "word": " list", "probability": 0.91259765625}, {"start": 1508.67, "end": 1509.99, "word": " and", "probability": 0.4248046875}, {"start": 1509.99, "end": 1510.05, "word": " commands", "probability": 0.380126953125}, {"start": 1510.05, "end": 1510.05, "word": " will", "probability": 0.54931640625}, {"start": 1510.05, "end": 1510.17, "word": " be", "probability": 0.87353515625}, {"start": 1510.17, "end": 1510.43, "word": " stored", "probability": 0.8564453125}, {"start": 1510.43, "end": 1510.65, "word": " in", "probability": 0.69873046875}, {"start": 1510.65, "end": 1512.43, "word": " it.", "probability": 0.83056640625}, {"start": 1512.71, "end": 1513.19, "word": " Each", "probability": 0.34375}, {"start": 1513.19, "end": 1513.61, "word": " command", "probability": 0.7392578125}, {"start": 1513.61, "end": 1514.01, "word": " stored", "probability": 0.70068359375}, {"start": 1514.01, "end": 1514.47, "word": " here", "probability": 0.7998046875}, {"start": 1514.47, "end": 1515.73, "word": " represents", "probability": 0.73095703125}, {"start": 1515.73, "end": 1516.89, "word": " a", "probability": 0.82470703125}, {"start": 1516.89, "end": 1516.89, "word": " line,", "probability": 0.765625}, {"start": 1517.53, "end": 1517.67, "word": " a", "probability": 0.392333984375}, {"start": 1517.67, "end": 1517.81, "word": " part", "probability": 0.86962890625}, {"start": 1517.81, "end": 1517.97, "word": " of", "probability": 0.96923828125}, {"start": 1517.97, "end": 1518.11, "word": " this", "probability": 0.83544921875}, {"start": 1518.11, "end": 1518.45, "word": " drawing,", "probability": 0.65185546875}, {"start": 1519.11, "end": 1519.25, "word": " with", "probability": 0.8095703125}, {"start": 1519.25, "end": 1519.43, "word": " all", "probability": 0.9248046875}, {"start": 1519.43, "end": 1519.47, "word": " its", "probability": 0.75341796875}, {"start": 1519.47, "end": 1519.89, "word": " information,", "probability": 0.7568359375}, {"start": 1520.45, "end": 1520.85, "word": " the", "probability": 0.5859375}, {"start": 1520.85, "end": 1521.33, "word": " starting", "probability": 0.55712890625}, {"start": 1521.33, "end": 1521.55, "word": " point,", "probability": 0.97509765625}, {"start": 1521.75, "end": 1521.77, "word": " the", "probability": 0.85546875}, {"start": 1521.77, "end": 1522.47, "word": " ending", "probability": 0.6669921875}, {"start": 1522.47, "end": 1522.49, "word": " point", "probability": 0.966796875}, {"start": 1522.49, "end": 1522.85, "word": " and", "probability": 0.6259765625}, {"start": 1522.85, "end": 1522.95, "word": " the", "probability": 0.88720703125}, {"start": 1522.95, "end": 1523.17, "word": " line,", "probability": 0.9228515625}, {"start": 1523.39, "end": 1523.55, "word": " right?", "probability": 0.84326171875}, {"start": 1524.53, "end": 1524.75, "word": " Okay,", "probability": 0.274658203125}, {"start": 1524.87, "end": 1524.97, "word": " so", "probability": 0.677734375}, {"start": 1524.97, "end": 1525.15, "word": " each", "probability": 0.92431640625}, {"start": 1525.15, "end": 1525.35, "word": " one", "probability": 0.56298828125}, {"start": 1525.35, "end": 1525.73, "word": " represents", "probability": 0.841796875}, {"start": 1525.73, "end": 1526.83, "word": " a", "probability": 0.96435546875}, {"start": 1526.83, "end": 1526.97, "word": " part", "probability": 0.8662109375}, {"start": 1526.97, "end": 1528.55, "word": " because", "probability": 0.36962890625}, {"start": 1528.55, "end": 1528.75, "word": " I", "probability": 0.95556640625}, {"start": 1528.75, "end": 1529.15, "word": " really", "probability": 0.479736328125}], "temperature": 1.0}, {"id": 61, "seek": 155632, "start": 1530.84, "end": 1556.32, "text": "I'm not going to add these things, I'm going to keep them in my inventory. This is the whole history. So I want to have an indicator called index. In the first place, the index is where? One minus its value. Before. The first line I add, of course there are no lines yet, there are no commands here, okay? The first line I add, I put the index where? The index is here. It means that every new line is added to its index.", "tokens": [40, 478, 406, 516, 281, 909, 613, 721, 11, 286, 478, 516, 281, 1066, 552, 294, 452, 14228, 13, 639, 307, 264, 1379, 2503, 13, 407, 286, 528, 281, 362, 364, 16961, 1219, 8186, 13, 682, 264, 700, 1081, 11, 264, 8186, 307, 689, 30, 1485, 3175, 1080, 2158, 13, 4546, 13, 440, 700, 1622, 286, 909, 11, 295, 1164, 456, 366, 572, 3876, 1939, 11, 456, 366, 572, 16901, 510, 11, 1392, 30, 440, 700, 1622, 286, 909, 11, 286, 829, 264, 8186, 689, 30, 440, 8186, 307, 510, 13, 467, 1355, 300, 633, 777, 1622, 307, 3869, 281, 1080, 8186, 13], "avg_logprob": -0.5258413564700347, "compression_ratio": 1.76890756302521, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1530.84, "end": 1531.28, "word": "I'm", "probability": 0.169921875}, {"start": 1531.28, "end": 1531.38, "word": " not", "probability": 0.87158203125}, {"start": 1531.38, "end": 1531.56, "word": " going", "probability": 0.69091796875}, {"start": 1531.56, "end": 1531.58, "word": " to", "probability": 0.9619140625}, {"start": 1531.58, "end": 1531.72, "word": " add", "probability": 0.7099609375}, {"start": 1531.72, "end": 1531.88, "word": " these", "probability": 0.33154296875}, {"start": 1531.88, "end": 1531.88, "word": " things,", "probability": 0.415283203125}, {"start": 1531.94, "end": 1532.06, "word": " I'm", "probability": 0.432861328125}, {"start": 1532.06, "end": 1532.06, "word": " going", "probability": 0.828125}, {"start": 1532.06, "end": 1532.06, "word": " to", "probability": 0.96826171875}, {"start": 1532.06, "end": 1532.14, "word": " keep", "probability": 0.646484375}, {"start": 1532.14, "end": 1532.28, "word": " them", "probability": 0.666015625}, {"start": 1532.28, "end": 1532.58, "word": " in", "probability": 0.5087890625}, {"start": 1532.58, "end": 1532.72, "word": " my", "probability": 0.304931640625}, {"start": 1532.72, "end": 1532.94, "word": " inventory.", "probability": 0.052490234375}, {"start": 1533.02, "end": 1533.16, "word": " This", "probability": 0.331787109375}, {"start": 1533.16, "end": 1533.18, "word": " is", "probability": 0.85107421875}, {"start": 1533.18, "end": 1533.26, "word": " the", "probability": 0.6064453125}, {"start": 1533.26, "end": 1533.26, "word": " whole", "probability": 0.72802734375}, {"start": 1533.26, "end": 1533.58, "word": " history.", "probability": 0.740234375}, {"start": 1534.52, "end": 1534.96, "word": " So", "probability": 0.56787109375}, {"start": 1534.96, "end": 1535.14, "word": " I", "probability": 0.806640625}, {"start": 1535.14, "end": 1535.34, "word": " want", "probability": 0.66552734375}, {"start": 1535.34, "end": 1535.4, "word": " to", "probability": 0.92822265625}, {"start": 1535.4, "end": 1535.64, "word": " have", "probability": 0.92529296875}, {"start": 1535.64, "end": 1535.8, "word": " an", "probability": 0.414306640625}, {"start": 1535.8, "end": 1536.12, "word": " indicator", "probability": 0.3916015625}, {"start": 1536.12, "end": 1536.42, "word": " called", "probability": 0.68359375}, {"start": 1536.42, "end": 1536.86, "word": " index.", "probability": 0.58203125}, {"start": 1537.8, "end": 1538.18, "word": " In", "probability": 0.30322265625}, {"start": 1538.18, "end": 1538.3, "word": " the", "probability": 0.92236328125}, {"start": 1538.3, "end": 1538.48, "word": " first", "probability": 0.5263671875}, {"start": 1538.48, "end": 1538.52, "word": " place,", "probability": 0.42626953125}, {"start": 1538.56, "end": 1538.62, "word": " the", "probability": 0.388427734375}, {"start": 1538.62, "end": 1538.92, "word": " index", "probability": 0.89892578125}, {"start": 1538.92, "end": 1539.18, "word": " is", "probability": 0.436767578125}, {"start": 1539.18, "end": 1539.42, "word": " where?", "probability": 0.546875}, {"start": 1539.84, "end": 1540.24, "word": " One", "probability": 0.15576171875}, {"start": 1540.24, "end": 1540.24, "word": " minus", "probability": 0.7529296875}, {"start": 1540.24, "end": 1540.9, "word": " its", "probability": 0.366455078125}, {"start": 1540.9, "end": 1541.06, "word": " value.", "probability": 0.9599609375}, {"start": 1541.66, "end": 1541.9, "word": " Before.", "probability": 0.126220703125}, {"start": 1542.58, "end": 1542.92, "word": " The", "probability": 0.58203125}, {"start": 1542.92, "end": 1543.12, "word": " first", "probability": 0.88818359375}, {"start": 1543.12, "end": 1543.32, "word": " line", "probability": 0.916015625}, {"start": 1543.32, "end": 1543.44, "word": " I", "probability": 0.8544921875}, {"start": 1543.44, "end": 1543.68, "word": " add,", "probability": 0.89501953125}, {"start": 1544.16, "end": 1544.44, "word": " of", "probability": 0.299560546875}, {"start": 1544.44, "end": 1544.62, "word": " course", "probability": 0.95458984375}, {"start": 1544.62, "end": 1544.76, "word": " there", "probability": 0.5322265625}, {"start": 1544.76, "end": 1544.82, "word": " are", "probability": 0.7001953125}, {"start": 1544.82, "end": 1544.96, "word": " no", "probability": 0.82763671875}, {"start": 1544.96, "end": 1545.24, "word": " lines", "probability": 0.908203125}, {"start": 1545.24, "end": 1545.42, "word": " yet,", "probability": 0.501953125}, {"start": 1545.5, "end": 1545.66, "word": " there", "probability": 0.70263671875}, {"start": 1545.66, "end": 1545.66, "word": " are", "probability": 0.79345703125}, {"start": 1545.66, "end": 1545.78, "word": " no", "probability": 0.947265625}, {"start": 1545.78, "end": 1546.22, "word": " commands", "probability": 0.9453125}, {"start": 1546.22, "end": 1546.7, "word": " here,", "probability": 0.459228515625}, {"start": 1547.38, "end": 1547.92, "word": " okay?", "probability": 0.5888671875}, {"start": 1548.42, "end": 1548.86, "word": " The", "probability": 0.6923828125}, {"start": 1548.86, "end": 1549.02, "word": " first", "probability": 0.88671875}, {"start": 1549.02, "end": 1549.32, "word": " line", "probability": 0.912109375}, {"start": 1549.32, "end": 1549.98, "word": " I", "probability": 0.74951171875}, {"start": 1549.98, "end": 1550.26, "word": " add,", "probability": 0.908203125}, {"start": 1550.48, "end": 1550.64, "word": " I", "probability": 0.5810546875}, {"start": 1550.64, "end": 1550.84, "word": " put", "probability": 0.85302734375}, {"start": 1550.84, "end": 1550.94, "word": " the", "probability": 0.87646484375}, {"start": 1550.94, "end": 1551.22, "word": " index", "probability": 0.86767578125}, {"start": 1551.22, "end": 1551.48, "word": " where?", "probability": 0.90234375}, {"start": 1552.1, "end": 1552.26, "word": " The", "probability": 0.6982421875}, {"start": 1552.26, "end": 1552.54, "word": " index", "probability": 0.89599609375}, {"start": 1552.54, "end": 1552.66, "word": " is", "probability": 0.34716796875}, {"start": 1552.66, "end": 1552.82, "word": " here.", "probability": 0.84716796875}, {"start": 1553.22, "end": 1553.38, "word": " It", "probability": 0.27490234375}, {"start": 1553.38, "end": 1553.62, "word": " means", "probability": 0.93896484375}, {"start": 1553.62, "end": 1553.88, "word": " that", "probability": 0.9248046875}, {"start": 1553.88, "end": 1554.06, "word": " every", "probability": 0.4951171875}, {"start": 1554.06, "end": 1554.62, "word": " new", "probability": 0.89794921875}, {"start": 1554.62, "end": 1554.62, "word": " line", "probability": 0.9365234375}, {"start": 1554.62, "end": 1554.8, "word": " is", "probability": 0.65283203125}, {"start": 1554.8, "end": 1555.12, "word": " added", "probability": 0.9130859375}, {"start": 1555.12, "end": 1555.92, "word": " to", "probability": 0.364990234375}, {"start": 1555.92, "end": 1555.96, "word": " its", "probability": 0.39599609375}, {"start": 1555.96, "end": 1556.32, "word": " index.", "probability": 0.8544921875}], "temperature": 1.0}, {"id": 62, "seek": 158452, "start": 1558.08, "end": 1584.52, "text": "We have to go up a step until we get to where? To here. Who is here? The index. Now we have to start undoing. Undo what? The last line we did, we have to cancel it. Right or not? So we have to tell him to see where the index is. And bring the command that he has. And execute what? UN", "tokens": [4360, 362, 281, 352, 493, 257, 1823, 1826, 321, 483, 281, 689, 30, 1407, 510, 13, 2102, 307, 510, 30, 440, 8186, 13, 823, 321, 362, 281, 722, 23779, 278, 13, 2719, 78, 437, 30, 440, 1036, 1622, 321, 630, 11, 321, 362, 281, 10373, 309, 13, 1779, 420, 406, 30, 407, 321, 362, 281, 980, 796, 281, 536, 689, 264, 8186, 307, 13, 400, 1565, 264, 5622, 300, 415, 575, 13, 400, 14483, 437, 30, 8229], "avg_logprob": -0.6426282142981504, "compression_ratio": 1.6228571428571428, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 1558.08, "end": 1558.26, "word": "We", "probability": 0.37353515625}, {"start": 1558.26, "end": 1558.38, "word": " have", "probability": 0.1455078125}, {"start": 1558.38, "end": 1558.42, "word": " to", "probability": 0.95166015625}, {"start": 1558.42, "end": 1558.56, "word": " go", "probability": 0.1627197265625}, {"start": 1558.56, "end": 1558.66, "word": " up", "probability": 0.203125}, {"start": 1558.66, "end": 1559.06, "word": " a", "probability": 0.352294921875}, {"start": 1559.06, "end": 1559.06, "word": " step", "probability": 0.88037109375}, {"start": 1559.06, "end": 1559.76, "word": " until", "probability": 0.190673828125}, {"start": 1559.76, "end": 1560.08, "word": " we", "probability": 0.479248046875}, {"start": 1560.08, "end": 1560.32, "word": " get", "probability": 0.253662109375}, {"start": 1560.32, "end": 1560.46, "word": " to", "probability": 0.5439453125}, {"start": 1560.46, "end": 1560.62, "word": " where?", "probability": 0.34423828125}, {"start": 1562.26, "end": 1562.78, "word": " To", "probability": 0.1446533203125}, {"start": 1562.78, "end": 1563.0, "word": " here.", "probability": 0.7421875}, {"start": 1563.2, "end": 1563.6, "word": " Who", "probability": 0.1982421875}, {"start": 1563.6, "end": 1563.6, "word": " is", "probability": 0.716796875}, {"start": 1563.6, "end": 1563.86, "word": " here?", "probability": 0.495849609375}, {"start": 1565.56, "end": 1566.08, "word": " The", "probability": 0.634765625}, {"start": 1566.08, "end": 1566.42, "word": " index.", "probability": 0.78369140625}, {"start": 1567.92, "end": 1568.2, "word": " Now", "probability": 0.5068359375}, {"start": 1568.2, "end": 1568.44, "word": " we", "probability": 0.572265625}, {"start": 1568.44, "end": 1568.44, "word": " have", "probability": 0.56103515625}, {"start": 1568.44, "end": 1568.68, "word": " to", "probability": 0.96875}, {"start": 1568.68, "end": 1568.7, "word": " start", "probability": 0.3447265625}, {"start": 1568.7, "end": 1569.44, "word": " undoing.", "probability": 0.579833984375}, {"start": 1569.96, "end": 1570.36, "word": " Undo", "probability": 0.685546875}, {"start": 1570.36, "end": 1570.5, "word": " what?", "probability": 0.443359375}, {"start": 1571.14, "end": 1571.5, "word": " The", "probability": 0.386962890625}, {"start": 1571.5, "end": 1571.72, "word": " last", "probability": 0.80029296875}, {"start": 1571.72, "end": 1572.02, "word": " line", "probability": 0.7431640625}, {"start": 1572.02, "end": 1572.16, "word": " we", "probability": 0.4580078125}, {"start": 1572.16, "end": 1572.38, "word": " did,", "probability": 0.385498046875}, {"start": 1573.28, "end": 1573.46, "word": " we", "probability": 0.8994140625}, {"start": 1573.46, "end": 1573.46, "word": " have", "probability": 0.59814453125}, {"start": 1573.46, "end": 1573.6, "word": " to", "probability": 0.97216796875}, {"start": 1573.6, "end": 1574.22, "word": " cancel", "probability": 0.78857421875}, {"start": 1574.22, "end": 1574.74, "word": " it.", "probability": 0.615234375}, {"start": 1574.88, "end": 1575.16, "word": " Right", "probability": 0.422607421875}, {"start": 1575.16, "end": 1575.32, "word": " or", "probability": 0.74658203125}, {"start": 1575.32, "end": 1575.38, "word": " not?", "probability": 0.35107421875}, {"start": 1575.98, "end": 1576.26, "word": " So", "probability": 0.8017578125}, {"start": 1576.26, "end": 1576.42, "word": " we", "probability": 0.80029296875}, {"start": 1576.42, "end": 1576.44, "word": " have", "probability": 0.70556640625}, {"start": 1576.44, "end": 1576.5, "word": " to", "probability": 0.9716796875}, {"start": 1576.5, "end": 1576.68, "word": " tell", "probability": 0.499267578125}, {"start": 1576.68, "end": 1576.76, "word": " him", "probability": 0.66162109375}, {"start": 1576.76, "end": 1576.84, "word": " to", "probability": 0.406494140625}, {"start": 1576.84, "end": 1576.98, "word": " see", "probability": 0.416748046875}, {"start": 1576.98, "end": 1577.1, "word": " where", "probability": 0.8896484375}, {"start": 1577.1, "end": 1577.1, "word": " the", "probability": 0.482421875}, {"start": 1577.1, "end": 1577.4, "word": " index", "probability": 0.857421875}, {"start": 1577.4, "end": 1577.72, "word": " is.", "probability": 0.93212890625}, {"start": 1578.56, "end": 1579.08, "word": " And", "probability": 0.49658203125}, {"start": 1579.08, "end": 1579.3, "word": " bring", "probability": 0.0887451171875}, {"start": 1579.3, "end": 1579.44, "word": " the", "probability": 0.7705078125}, {"start": 1579.44, "end": 1579.78, "word": " command", "probability": 0.708984375}, {"start": 1579.78, "end": 1579.92, "word": " that", "probability": 0.3876953125}, {"start": 1579.92, "end": 1580.12, "word": " he", "probability": 0.44384765625}, {"start": 1580.12, "end": 1580.48, "word": " has.", "probability": 0.89453125}, {"start": 1581.56, "end": 1582.08, "word": " And", "probability": 0.90966796875}, {"start": 1582.08, "end": 1582.44, "word": " execute", "probability": 0.401611328125}, {"start": 1582.44, "end": 1582.8, "word": " what?", "probability": 0.90625}, {"start": 1584.0, "end": 1584.52, "word": " UN", "probability": 0.29052734375}], "temperature": 1.0}, {"id": 63, "seek": 161554, "start": 1586.86, "end": 1615.54, "text": "He doesn't know what it means. He will give him the commands that he has and store them in objects. But he does execute and un-execute. This is the advantage that it has nothing to do with the details. The details are stored inside the object. He does un-execute. And then don't forget to return the index one step forward. So now the command was done un-execute and the index returned one step forward. We want to do", "tokens": [5205, 1177, 380, 458, 437, 309, 1355, 13, 634, 486, 976, 796, 264, 16901, 300, 415, 575, 293, 3531, 552, 294, 6565, 13, 583, 415, 775, 14483, 293, 517, 12, 3121, 3045, 1169, 13, 639, 307, 264, 5002, 300, 309, 575, 1825, 281, 360, 365, 264, 4365, 13, 440, 4365, 366, 12187, 1854, 264, 2657, 13, 634, 775, 517, 12, 3121, 3045, 1169, 13, 400, 550, 500, 380, 2870, 281, 2736, 264, 8186, 472, 1823, 2128, 13, 407, 586, 264, 5622, 390, 1096, 517, 12, 3121, 3045, 1169, 293, 264, 8186, 8752, 472, 1823, 2128, 13, 492, 528, 281, 360], "avg_logprob": -0.5210396086815561, "compression_ratio": 1.8289473684210527, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1586.86, "end": 1587.12, "word": "He", "probability": 0.320556640625}, {"start": 1587.12, "end": 1587.2, "word": " doesn't", "probability": 0.717041015625}, {"start": 1587.2, "end": 1587.52, "word": " know", "probability": 0.84326171875}, {"start": 1587.52, "end": 1587.72, "word": " what", "probability": 0.61083984375}, {"start": 1587.72, "end": 1588.52, "word": " it", "probability": 0.1669921875}, {"start": 1588.52, "end": 1588.62, "word": " means.", "probability": 0.71533203125}, {"start": 1588.88, "end": 1589.06, "word": " He", "probability": 0.61279296875}, {"start": 1589.06, "end": 1589.18, "word": " will", "probability": 0.1539306640625}, {"start": 1589.18, "end": 1589.32, "word": " give", "probability": 0.379150390625}, {"start": 1589.32, "end": 1589.52, "word": " him", "probability": 0.51171875}, {"start": 1589.52, "end": 1590.36, "word": " the", "probability": 0.2403564453125}, {"start": 1590.36, "end": 1590.66, "word": " commands", "probability": 0.67138671875}, {"start": 1590.66, "end": 1590.84, "word": " that", "probability": 0.2279052734375}, {"start": 1590.84, "end": 1590.98, "word": " he", "probability": 0.43359375}, {"start": 1590.98, "end": 1591.02, "word": " has", "probability": 0.6728515625}, {"start": 1591.02, "end": 1591.66, "word": " and", "probability": 0.1595458984375}, {"start": 1591.66, "end": 1591.98, "word": " store", "probability": 0.3095703125}, {"start": 1591.98, "end": 1592.12, "word": " them", "probability": 0.75244140625}, {"start": 1592.12, "end": 1592.18, "word": " in", "probability": 0.8486328125}, {"start": 1592.18, "end": 1592.56, "word": " objects.", "probability": 0.84228515625}, {"start": 1592.7, "end": 1593.04, "word": " But", "probability": 0.391845703125}, {"start": 1593.04, "end": 1593.16, "word": " he", "probability": 0.60546875}, {"start": 1593.16, "end": 1593.3, "word": " does", "probability": 0.387939453125}, {"start": 1593.3, "end": 1593.76, "word": " execute", "probability": 0.82470703125}, {"start": 1593.76, "end": 1594.48, "word": " and", "probability": 0.89013671875}, {"start": 1594.48, "end": 1594.62, "word": " un", "probability": 0.36669921875}, {"start": 1594.62, "end": 1595.12, "word": "-execute.", "probability": 0.82281494140625}, {"start": 1595.34, "end": 1595.74, "word": " This", "probability": 0.258544921875}, {"start": 1595.74, "end": 1595.8, "word": " is", "probability": 0.8916015625}, {"start": 1595.8, "end": 1595.88, "word": " the", "probability": 0.69091796875}, {"start": 1595.88, "end": 1596.08, "word": " advantage", "probability": 0.53369140625}, {"start": 1596.08, "end": 1596.24, "word": " that", "probability": 0.2119140625}, {"start": 1596.24, "end": 1596.32, "word": " it", "probability": 0.455322265625}, {"start": 1596.32, "end": 1596.4, "word": " has", "probability": 0.662109375}, {"start": 1596.4, "end": 1596.54, "word": " nothing", "probability": 0.8486328125}, {"start": 1596.54, "end": 1596.84, "word": " to", "probability": 0.96533203125}, {"start": 1596.84, "end": 1596.84, "word": " do", "probability": 0.96826171875}, {"start": 1596.84, "end": 1596.96, "word": " with", "probability": 0.892578125}, {"start": 1596.96, "end": 1597.04, "word": " the", "probability": 0.343505859375}, {"start": 1597.04, "end": 1597.38, "word": " details.", "probability": 0.82958984375}, {"start": 1597.88, "end": 1598.04, "word": " The", "probability": 0.49560546875}, {"start": 1598.04, "end": 1598.32, "word": " details", "probability": 0.86328125}, {"start": 1598.32, "end": 1598.46, "word": " are", "probability": 0.52734375}, {"start": 1598.46, "end": 1598.88, "word": " stored", "probability": 0.67724609375}, {"start": 1598.88, "end": 1599.76, "word": " inside", "probability": 0.6083984375}, {"start": 1599.76, "end": 1599.92, "word": " the", "probability": 0.8505859375}, {"start": 1599.92, "end": 1600.3, "word": " object.", "probability": 0.86376953125}, {"start": 1600.7, "end": 1601.1, "word": " He", "probability": 0.70361328125}, {"start": 1601.1, "end": 1601.26, "word": " does", "probability": 0.84326171875}, {"start": 1601.26, "end": 1601.5, "word": " un", "probability": 0.9111328125}, {"start": 1601.5, "end": 1602.08, "word": "-execute.", "probability": 0.9761962890625}, {"start": 1602.92, "end": 1603.24, "word": " And", "probability": 0.58642578125}, {"start": 1603.24, "end": 1603.58, "word": " then", "probability": 0.59375}, {"start": 1603.58, "end": 1603.74, "word": " don't", "probability": 0.6268310546875}, {"start": 1603.74, "end": 1604.62, "word": " forget", "probability": 0.9150390625}, {"start": 1604.62, "end": 1604.82, "word": " to", "probability": 0.8837890625}, {"start": 1604.82, "end": 1605.06, "word": " return", "probability": 0.40283203125}, {"start": 1605.06, "end": 1605.22, "word": " the", "probability": 0.82373046875}, {"start": 1605.22, "end": 1605.64, "word": " index", "probability": 0.85107421875}, {"start": 1605.64, "end": 1606.28, "word": " one", "probability": 0.180419921875}, {"start": 1606.28, "end": 1607.0, "word": " step", "probability": 0.783203125}, {"start": 1607.0, "end": 1607.3, "word": " forward.", "probability": 0.434814453125}, {"start": 1609.08, "end": 1609.56, "word": " So", "probability": 0.380126953125}, {"start": 1609.56, "end": 1609.82, "word": " now", "probability": 0.7216796875}, {"start": 1609.82, "end": 1609.94, "word": " the", "probability": 0.4482421875}, {"start": 1609.94, "end": 1610.1, "word": " command", "probability": 0.82763671875}, {"start": 1610.1, "end": 1610.3, "word": " was", "probability": 0.1402587890625}, {"start": 1610.3, "end": 1610.58, "word": " done", "probability": 0.578125}, {"start": 1610.58, "end": 1610.82, "word": " un", "probability": 0.37841796875}, {"start": 1610.82, "end": 1611.38, "word": "-execute", "probability": 0.9749755859375}, {"start": 1611.38, "end": 1611.52, "word": " and", "probability": 0.78515625}, {"start": 1611.52, "end": 1611.6, "word": " the", "probability": 0.78564453125}, {"start": 1611.6, "end": 1611.94, "word": " index", "probability": 0.83642578125}, {"start": 1611.94, "end": 1613.06, "word": " returned", "probability": 0.296142578125}, {"start": 1613.06, "end": 1613.22, "word": " one", "probability": 0.6123046875}, {"start": 1613.22, "end": 1613.38, "word": " step", "probability": 0.87939453125}, {"start": 1613.38, "end": 1613.52, "word": " forward.", "probability": 0.69873046875}, {"start": 1614.44, "end": 1614.92, "word": " We", "probability": 0.654296875}, {"start": 1614.92, "end": 1615.12, "word": " want", "probability": 0.54052734375}, {"start": 1615.12, "end": 1615.28, "word": " to", "probability": 0.97265625}, {"start": 1615.28, "end": 1615.54, "word": " do", "probability": 0.90380859375}], "temperature": 1.0}, {"id": 64, "seek": 163881, "start": 1616.79, "end": 1638.81, "text": "undo again what is already in the index also execute and undo execute and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo and undo", "tokens": [409, 2595, 797, 437, 307, 1217, 294, 264, 8186, 611, 14483, 293, 23779, 14483, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779, 293, 23779], "avg_logprob": -0.15222222010294598, "compression_ratio": 13.89041095890411, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 1616.79, "end": 1617.21, "word": "undo", "probability": 0.42681884765625}, {"start": 1617.21, "end": 1617.61, "word": " again", "probability": 0.54736328125}, {"start": 1617.61, "end": 1619.23, "word": " what", "probability": 0.129638671875}, {"start": 1619.23, "end": 1619.29, "word": " is", "probability": 0.5087890625}, {"start": 1619.29, "end": 1619.53, "word": " already", "probability": 0.2242431640625}, {"start": 1619.53, "end": 1619.73, "word": " in", "probability": 0.329833984375}, {"start": 1619.73, "end": 1619.95, "word": " the", "probability": 0.496337890625}, {"start": 1619.95, "end": 1620.33, "word": " index", "probability": 0.8916015625}, {"start": 1620.33, "end": 1620.77, "word": " also", "probability": 0.2288818359375}, {"start": 1620.77, "end": 1621.17, "word": " execute", "probability": 0.61083984375}, {"start": 1621.17, "end": 1621.49, "word": " and", "probability": 0.260498046875}, {"start": 1621.49, "end": 1621.49, "word": " undo", "probability": 0.322265625}, {"start": 1621.49, "end": 1623.05, "word": " execute", "probability": 0.4580078125}, {"start": 1623.05, "end": 1623.53, "word": " and", "probability": 0.6962890625}, {"start": 1623.53, "end": 1623.67, "word": " undo", "probability": 0.136474609375}, {"start": 1623.67, "end": 1624.53, "word": " and", "probability": 0.29638671875}, {"start": 1624.53, "end": 1624.77, "word": " undo", "probability": 0.65185546875}, {"start": 1624.77, "end": 1625.21, "word": " and", "probability": 0.412841796875}, {"start": 1625.21, "end": 1625.21, "word": " undo", "probability": 0.8310546875}, {"start": 1625.21, "end": 1625.39, "word": " and", "probability": 0.591796875}, {"start": 1625.39, "end": 1625.39, "word": " undo", "probability": 0.884765625}, {"start": 1625.39, "end": 1625.61, "word": " and", "probability": 0.69921875}, {"start": 1625.61, "end": 1625.61, "word": " undo", "probability": 0.90625}, {"start": 1625.61, "end": 1625.63, "word": " and", "probability": 0.74853515625}, {"start": 1625.63, "end": 1625.63, "word": " undo", "probability": 0.91845703125}, {"start": 1625.63, "end": 1626.27, "word": " and", "probability": 0.77392578125}, {"start": 1626.27, "end": 1626.27, "word": " undo", "probability": 0.92724609375}, {"start": 1626.27, "end": 1626.27, "word": " and", "probability": 0.7880859375}, {"start": 1626.27, "end": 1626.27, "word": " undo", "probability": 0.93408203125}, {"start": 1626.27, "end": 1626.27, "word": " and", "probability": 0.79931640625}, {"start": 1626.27, "end": 1626.27, "word": " undo", "probability": 0.93896484375}, {"start": 1626.27, "end": 1626.27, "word": " and", "probability": 0.80810546875}, {"start": 1626.27, "end": 1626.27, "word": " undo", "probability": 0.943359375}, {"start": 1626.27, "end": 1626.27, "word": " and", "probability": 0.8154296875}, {"start": 1626.27, "end": 1626.27, "word": " undo", "probability": 0.94677734375}, {"start": 1626.27, "end": 1626.27, "word": " and", "probability": 0.82421875}, {"start": 1626.27, "end": 1626.27, "word": " undo", "probability": 0.94970703125}, {"start": 1626.27, "end": 1626.27, "word": " and", "probability": 0.82958984375}, {"start": 1626.27, "end": 1626.27, "word": " undo", "probability": 0.9521484375}, {"start": 1626.27, "end": 1627.15, "word": " and", "probability": 0.83544921875}, {"start": 1627.15, "end": 1627.21, "word": " undo", "probability": 0.95458984375}, {"start": 1627.21, "end": 1629.65, "word": " and", "probability": 0.84228515625}, {"start": 1629.65, "end": 1629.65, "word": " undo", "probability": 0.95654296875}, {"start": 1629.65, "end": 1629.65, "word": " and", "probability": 0.84716796875}, {"start": 1629.65, "end": 1629.65, "word": " undo", "probability": 0.9580078125}, {"start": 1629.65, "end": 1630.65, "word": " and", "probability": 0.85205078125}, {"start": 1630.65, "end": 1630.65, "word": " undo", "probability": 0.95947265625}, {"start": 1630.65, "end": 1630.65, "word": " and", "probability": 0.85595703125}, {"start": 1630.65, "end": 1630.65, "word": " undo", "probability": 0.96044921875}, {"start": 1630.65, "end": 1631.19, "word": " and", "probability": 0.859375}, {"start": 1631.19, "end": 1631.19, "word": " undo", "probability": 0.9619140625}, {"start": 1631.19, "end": 1631.19, "word": " and", "probability": 0.86474609375}, {"start": 1631.19, "end": 1631.19, "word": " undo", "probability": 0.96240234375}, {"start": 1631.19, "end": 1631.37, "word": " and", "probability": 0.8681640625}, {"start": 1631.37, "end": 1631.37, "word": " undo", "probability": 0.96337890625}, {"start": 1631.37, "end": 1631.45, "word": " and", "probability": 0.8701171875}, {"start": 1631.45, "end": 1631.45, "word": " undo", "probability": 0.96435546875}, {"start": 1631.45, "end": 1631.45, "word": " and", "probability": 0.87548828125}, {"start": 1631.45, "end": 1631.45, "word": " undo", "probability": 0.96533203125}, {"start": 1631.45, "end": 1631.47, "word": " and", "probability": 0.87841796875}, {"start": 1631.47, "end": 1631.47, "word": " undo", "probability": 0.96533203125}, {"start": 1631.47, "end": 1631.47, "word": " and", "probability": 0.88232421875}, {"start": 1631.47, "end": 1631.47, "word": " undo", "probability": 0.96630859375}, {"start": 1631.47, "end": 1631.67, "word": " and", "probability": 0.884765625}, {"start": 1631.67, "end": 1631.67, "word": " undo", "probability": 0.96728515625}, {"start": 1631.67, "end": 1631.67, "word": " and", "probability": 0.8876953125}, {"start": 1631.67, "end": 1631.67, "word": " undo", "probability": 0.96728515625}, {"start": 1631.67, "end": 1631.73, "word": " and", "probability": 0.8916015625}, {"start": 1631.73, "end": 1631.73, "word": " undo", "probability": 0.9677734375}, {"start": 1631.73, "end": 1631.73, "word": " and", "probability": 0.89501953125}, {"start": 1631.73, "end": 1631.73, "word": " undo", "probability": 0.96875}, {"start": 1631.73, "end": 1631.73, "word": " and", "probability": 0.8984375}, {"start": 1631.73, "end": 1631.73, "word": " undo", "probability": 0.9697265625}, {"start": 1631.73, "end": 1631.73, "word": " and", "probability": 0.900390625}, {"start": 1631.73, "end": 1631.73, "word": " undo", "probability": 0.9697265625}, {"start": 1631.73, "end": 1631.73, "word": " and", "probability": 0.904296875}, {"start": 1631.73, "end": 1631.73, "word": " undo", "probability": 0.9697265625}, {"start": 1631.73, "end": 1631.73, "word": " and", "probability": 0.90625}, {"start": 1631.73, "end": 1631.73, "word": " undo", "probability": 0.9697265625}, {"start": 1631.73, "end": 1631.73, "word": " and", "probability": 0.908203125}, {"start": 1631.73, "end": 1631.73, "word": " undo", "probability": 0.970703125}, {"start": 1631.73, "end": 1631.73, "word": " and", "probability": 0.91162109375}, {"start": 1631.73, "end": 1631.73, "word": " undo", "probability": 0.970703125}, {"start": 1631.73, "end": 1631.75, "word": " and", "probability": 0.91357421875}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.97119140625}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.91552734375}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.97119140625}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.9169921875}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.97119140625}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.92041015625}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.9716796875}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.9208984375}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.97119140625}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.923828125}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.97119140625}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.92529296875}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.97119140625}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.92626953125}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.97119140625}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.927734375}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.97119140625}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.9287109375}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.970703125}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.9306640625}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.970703125}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.931640625}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.97021484375}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.931640625}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.97021484375}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.93310546875}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.97021484375}, {"start": 1631.75, "end": 1631.75, "word": " and", "probability": 0.93408203125}, {"start": 1631.75, "end": 1631.75, "word": " undo", "probability": 0.96923828125}, {"start": 1631.75, "end": 1631.95, "word": " and", "probability": 0.93505859375}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.96875}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.93603515625}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.96826171875}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.93603515625}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.9677734375}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.93603515625}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.9677734375}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.93701171875}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.966796875}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.9365234375}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.9658203125}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.9375}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.96435546875}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.93798828125}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.9638671875}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.9384765625}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.96435546875}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.939453125}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.9619140625}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.939453125}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.96240234375}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.93994140625}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.96142578125}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.93994140625}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.9609375}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.9404296875}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.95849609375}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.9404296875}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.95751953125}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.94140625}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.95654296875}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.94140625}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.95556640625}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.94140625}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.95361328125}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.94189453125}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.9521484375}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.9423828125}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.95166015625}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.94189453125}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.9501953125}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.94189453125}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.95068359375}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.94287109375}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.94775390625}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.94287109375}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.947265625}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.94384765625}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.94677734375}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.94287109375}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.94482421875}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.94384765625}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.94482421875}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.943359375}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.94482421875}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.943359375}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.9423828125}, {"start": 1631.95, "end": 1631.95, "word": " and", "probability": 0.94384765625}, {"start": 1631.95, "end": 1631.95, "word": " undo", "probability": 0.94287109375}, {"start": 1631.95, "end": 1631.97, "word": " and", "probability": 0.9443359375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.9404296875}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.9443359375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.94189453125}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.9443359375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.94091796875}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.9443359375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.93798828125}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.9443359375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.9384765625}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.94384765625}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.9375}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.94482421875}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.9375}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.9443359375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.93603515625}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.9443359375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.9365234375}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.9443359375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.935546875}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.94482421875}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.935546875}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.94482421875}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.93359375}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.9443359375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.93310546875}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.94482421875}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.931640625}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.94482421875}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.93212890625}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.9443359375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.9306640625}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.9443359375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.92919921875}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.943359375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.92626953125}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.94384765625}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.92626953125}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.94287109375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.923828125}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.94287109375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.919921875}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.9423828125}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.9189453125}, {"start": 1631.97, "end": 1631.97, "word": " and", "probability": 0.94287109375}, {"start": 1631.97, "end": 1631.97, "word": " undo", "probability": 0.92041015625}, {"start": 1631.97, "end": 1638.81, "word": " and", "probability": 0.94189453125}, {"start": 1638.81, "end": 1638.81, "word": " undo", "probability": 0.916015625}, {"start": 1638.81, "end": 1638.81, "word": " and", "probability": 0.94189453125}, {"start": 1638.81, "end": 1638.81, "word": " undo", "probability": 0.91552734375}], "temperature": 1.0}, {"id": 65, "seek": 166863, "start": 1642.49, "end": 1668.63, "text": " Notice that I'm not deleting anything from what's already there, but I'm moving what? The index. Ok, so what do I have to do here? First, I have to go to the drawing manager, it has to have private int index value minus one. Because when I say undo, I have to say the following, as long as the index is greater than", "tokens": [13428, 300, 286, 478, 406, 48946, 1340, 490, 437, 311, 1217, 456, 11, 457, 286, 478, 2684, 437, 30, 440, 8186, 13, 3477, 11, 370, 437, 360, 286, 362, 281, 360, 510, 30, 2386, 11, 286, 362, 281, 352, 281, 264, 6316, 6598, 11, 309, 575, 281, 362, 4551, 560, 8186, 2158, 3175, 472, 13, 1436, 562, 286, 584, 23779, 11, 286, 362, 281, 584, 264, 3480, 11, 382, 938, 382, 264, 8186, 307, 5044, 813], "avg_logprob": -0.5174512956049535, "compression_ratio": 1.5643564356435644, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 1642.49, "end": 1642.87, "word": " Notice", "probability": 0.330810546875}, {"start": 1642.87, "end": 1642.95, "word": " that", "probability": 0.53759765625}, {"start": 1642.95, "end": 1643.11, "word": " I'm", "probability": 0.591064453125}, {"start": 1643.11, "end": 1643.23, "word": " not", "probability": 0.9384765625}, {"start": 1643.23, "end": 1643.47, "word": " deleting", "probability": 0.60595703125}, {"start": 1643.47, "end": 1643.87, "word": " anything", "probability": 0.59814453125}, {"start": 1643.87, "end": 1643.99, "word": " from", "probability": 0.59521484375}, {"start": 1643.99, "end": 1644.17, "word": " what's", "probability": 0.41064453125}, {"start": 1644.17, "end": 1644.27, "word": " already", "probability": 0.21142578125}, {"start": 1644.27, "end": 1644.35, "word": " there,", "probability": 0.65234375}, {"start": 1644.47, "end": 1644.59, "word": " but", "probability": 0.457275390625}, {"start": 1644.59, "end": 1644.71, "word": " I'm", "probability": 0.702880859375}, {"start": 1644.71, "end": 1644.95, "word": " moving", "probability": 0.51220703125}, {"start": 1644.95, "end": 1645.21, "word": " what?", "probability": 0.28271484375}, {"start": 1645.91, "end": 1646.07, "word": " The", "probability": 0.41650390625}, {"start": 1646.07, "end": 1646.31, "word": " index.", "probability": 0.8447265625}, {"start": 1646.59, "end": 1646.93, "word": " Ok,", "probability": 0.320068359375}, {"start": 1647.07, "end": 1647.21, "word": " so", "probability": 0.82958984375}, {"start": 1647.21, "end": 1647.39, "word": " what", "probability": 0.9033203125}, {"start": 1647.39, "end": 1647.51, "word": " do", "probability": 0.38134765625}, {"start": 1647.51, "end": 1647.57, "word": " I", "probability": 0.94970703125}, {"start": 1647.57, "end": 1647.57, "word": " have", "probability": 0.24072265625}, {"start": 1647.57, "end": 1647.57, "word": " to", "probability": 0.9697265625}, {"start": 1647.57, "end": 1647.75, "word": " do", "probability": 0.96240234375}, {"start": 1647.75, "end": 1647.99, "word": " here?", "probability": 0.771484375}, {"start": 1648.27, "end": 1648.43, "word": " First,", "probability": 0.408203125}, {"start": 1648.43, "end": 1648.43, "word": " I", "probability": 0.7900390625}, {"start": 1648.43, "end": 1648.47, "word": " have", "probability": 0.59326171875}, {"start": 1648.47, "end": 1648.47, "word": " to", "probability": 0.97021484375}, {"start": 1648.47, "end": 1648.67, "word": " go", "probability": 0.4599609375}, {"start": 1648.67, "end": 1648.77, "word": " to", "probability": 0.88671875}, {"start": 1648.77, "end": 1649.23, "word": " the", "probability": 0.66650390625}, {"start": 1649.23, "end": 1649.43, "word": " drawing", "probability": 0.28466796875}, {"start": 1649.43, "end": 1649.91, "word": " manager,", "probability": 0.94580078125}, {"start": 1650.01, "end": 1650.13, "word": " it", "probability": 0.361083984375}, {"start": 1650.13, "end": 1650.25, "word": " has", "probability": 0.5029296875}, {"start": 1650.25, "end": 1650.25, "word": " to", "probability": 0.83935546875}, {"start": 1650.25, "end": 1650.67, "word": " have", "probability": 0.8193359375}, {"start": 1650.67, "end": 1651.19, "word": " private", "probability": 0.3515625}, {"start": 1651.19, "end": 1652.15, "word": " int", "probability": 0.5419921875}, {"start": 1652.15, "end": 1653.57, "word": " index", "probability": 0.85205078125}, {"start": 1653.57, "end": 1654.75, "word": " value", "probability": 0.348388671875}, {"start": 1654.75, "end": 1655.97, "word": " minus", "probability": 0.33837890625}, {"start": 1655.97, "end": 1656.29, "word": " one.", "probability": 0.57861328125}, {"start": 1660.27, "end": 1660.67, "word": " Because", "probability": 0.340576171875}, {"start": 1660.67, "end": 1660.87, "word": " when", "probability": 0.83837890625}, {"start": 1660.87, "end": 1660.97, "word": " I", "probability": 0.978515625}, {"start": 1660.97, "end": 1661.15, "word": " say", "probability": 0.697265625}, {"start": 1661.15, "end": 1661.83, "word": " undo,", "probability": 0.8681640625}, {"start": 1662.15, "end": 1662.39, "word": " I", "probability": 0.93017578125}, {"start": 1662.39, "end": 1662.47, "word": " have", "probability": 0.58349609375}, {"start": 1662.47, "end": 1662.53, "word": " to", "probability": 0.97119140625}, {"start": 1662.53, "end": 1662.67, "word": " say", "probability": 0.7783203125}, {"start": 1662.67, "end": 1662.87, "word": " the", "probability": 0.650390625}, {"start": 1662.87, "end": 1663.07, "word": " following,", "probability": 0.82373046875}, {"start": 1664.95, "end": 1665.19, "word": " as", "probability": 0.576171875}, {"start": 1665.19, "end": 1665.33, "word": " long", "probability": 0.91162109375}, {"start": 1665.33, "end": 1665.59, "word": " as", "probability": 0.97119140625}, {"start": 1665.59, "end": 1665.77, "word": " the", "probability": 0.61669921875}, {"start": 1665.77, "end": 1665.97, "word": " index", "probability": 0.7587890625}, {"start": 1665.97, "end": 1667.55, "word": " is", "probability": 0.488525390625}, {"start": 1667.55, "end": 1668.27, "word": " greater", "probability": 0.66064453125}, {"start": 1668.27, "end": 1668.63, "word": " than", "probability": 0.94921875}], "temperature": 1.0}, {"id": 66, "seek": 169910, "start": 1671.42, "end": 1699.1, "text": " minus one, which is how long will it continue to undo? until zero, okay? So as long as it is more than minus one, we want to carry out the process that we are going to do now, which is what we are going to do, we are going to take, now the index indicates here, right? We want to take this element and make it unexecuted. So I want to tell him to go to the command and tell him get this element that is present at whom? At the index and do what?", "tokens": [3175, 472, 11, 597, 307, 577, 938, 486, 309, 2354, 281, 23779, 30, 1826, 4018, 11, 1392, 30, 407, 382, 938, 382, 309, 307, 544, 813, 3175, 472, 11, 321, 528, 281, 3985, 484, 264, 1399, 300, 321, 366, 516, 281, 360, 586, 11, 597, 307, 437, 321, 366, 516, 281, 360, 11, 321, 366, 516, 281, 747, 11, 586, 264, 8186, 16203, 510, 11, 558, 30, 492, 528, 281, 747, 341, 4478, 293, 652, 309, 11572, 3045, 4866, 13, 407, 286, 528, 281, 980, 796, 281, 352, 281, 264, 5622, 293, 980, 796, 483, 341, 4478, 300, 307, 1974, 412, 7101, 30, 1711, 264, 8186, 293, 360, 437, 30], "avg_logprob": -0.4912725117829469, "compression_ratio": 1.8818565400843883, "no_speech_prob": 1.1861324310302734e-05, "words": [{"start": 1671.4199999999998, "end": 1671.82, "word": " minus", "probability": 0.1710205078125}, {"start": 1671.82, "end": 1672.22, "word": " one,", "probability": 0.5625}, {"start": 1672.48, "end": 1672.64, "word": " which", "probability": 0.64697265625}, {"start": 1672.64, "end": 1672.98, "word": " is", "probability": 0.5751953125}, {"start": 1672.98, "end": 1673.26, "word": " how", "probability": 0.1572265625}, {"start": 1673.26, "end": 1673.42, "word": " long", "probability": 0.85107421875}, {"start": 1673.42, "end": 1673.56, "word": " will", "probability": 0.380615234375}, {"start": 1673.56, "end": 1673.88, "word": " it", "probability": 0.68310546875}, {"start": 1673.88, "end": 1673.88, "word": " continue", "probability": 0.2021484375}, {"start": 1673.88, "end": 1673.92, "word": " to", "probability": 0.61279296875}, {"start": 1673.92, "end": 1674.32, "word": " undo?", "probability": 0.73388671875}, {"start": 1675.74, "end": 1676.14, "word": " until", "probability": 0.1729736328125}, {"start": 1676.14, "end": 1676.54, "word": " zero,", "probability": 0.681640625}, {"start": 1677.18, "end": 1677.44, "word": " okay?", "probability": 0.359375}, {"start": 1677.58, "end": 1677.72, "word": " So", "probability": 0.486083984375}, {"start": 1677.72, "end": 1677.98, "word": " as", "probability": 0.68603515625}, {"start": 1677.98, "end": 1678.12, "word": " long", "probability": 0.712890625}, {"start": 1678.12, "end": 1678.12, "word": " as", "probability": 0.96435546875}, {"start": 1678.12, "end": 1678.2, "word": " it", "probability": 0.93115234375}, {"start": 1678.2, "end": 1678.3, "word": " is", "probability": 0.68603515625}, {"start": 1678.3, "end": 1678.54, "word": " more", "probability": 0.7333984375}, {"start": 1678.54, "end": 1678.78, "word": " than", "probability": 0.94677734375}, {"start": 1678.78, "end": 1679.08, "word": " minus", "probability": 0.6943359375}, {"start": 1679.08, "end": 1679.42, "word": " one,", "probability": 0.91064453125}, {"start": 1680.0, "end": 1680.26, "word": " we", "probability": 0.8994140625}, {"start": 1680.26, "end": 1680.38, "word": " want", "probability": 0.3720703125}, {"start": 1680.38, "end": 1680.5, "word": " to", "probability": 0.966796875}, {"start": 1680.5, "end": 1680.72, "word": " carry", "probability": 0.2138671875}, {"start": 1680.72, "end": 1680.74, "word": " out", "probability": 0.87841796875}, {"start": 1680.74, "end": 1680.86, "word": " the", "probability": 0.841796875}, {"start": 1680.86, "end": 1681.18, "word": " process", "probability": 0.56787109375}, {"start": 1681.18, "end": 1681.3, "word": " that", "probability": 0.54541015625}, {"start": 1681.3, "end": 1681.42, "word": " we", "probability": 0.94384765625}, {"start": 1681.42, "end": 1681.48, "word": " are", "probability": 0.61865234375}, {"start": 1681.48, "end": 1681.52, "word": " going", "probability": 0.48046875}, {"start": 1681.52, "end": 1681.52, "word": " to", "probability": 0.97265625}, {"start": 1681.52, "end": 1681.66, "word": " do", "probability": 0.76416015625}, {"start": 1681.66, "end": 1682.0, "word": " now,", "probability": 0.8681640625}, {"start": 1682.04, "end": 1682.14, "word": " which", "probability": 0.82763671875}, {"start": 1682.14, "end": 1682.28, "word": " is", "probability": 0.9208984375}, {"start": 1682.28, "end": 1682.42, "word": " what", "probability": 0.69189453125}, {"start": 1682.42, "end": 1682.58, "word": " we", "probability": 0.354736328125}, {"start": 1682.58, "end": 1682.62, "word": " are", "probability": 0.471435546875}, {"start": 1682.62, "end": 1682.68, "word": " going", "probability": 0.92236328125}, {"start": 1682.68, "end": 1682.68, "word": " to", "probability": 0.97021484375}, {"start": 1682.68, "end": 1682.7, "word": " do,", "probability": 0.83642578125}, {"start": 1682.88, "end": 1682.9, "word": " we", "probability": 0.73583984375}, {"start": 1682.9, "end": 1682.9, "word": " are", "probability": 0.32861328125}, {"start": 1682.9, "end": 1682.9, "word": " going", "probability": 0.9345703125}, {"start": 1682.9, "end": 1682.9, "word": " to", "probability": 0.96728515625}, {"start": 1682.9, "end": 1683.16, "word": " take,", "probability": 0.82861328125}, {"start": 1683.84, "end": 1684.22, "word": " now", "probability": 0.253662109375}, {"start": 1684.22, "end": 1684.38, "word": " the", "probability": 0.79541015625}, {"start": 1684.38, "end": 1684.7, "word": " index", "probability": 0.89404296875}, {"start": 1684.7, "end": 1685.08, "word": " indicates", "probability": 0.261962890625}, {"start": 1685.08, "end": 1685.34, "word": " here,", "probability": 0.84130859375}, {"start": 1685.6, "end": 1685.82, "word": " right?", "probability": 0.8173828125}, {"start": 1686.08, "end": 1686.46, "word": " We", "probability": 0.71826171875}, {"start": 1686.46, "end": 1686.56, "word": " want", "probability": 0.51318359375}, {"start": 1686.56, "end": 1686.68, "word": " to", "probability": 0.9638671875}, {"start": 1686.68, "end": 1686.84, "word": " take", "probability": 0.859375}, {"start": 1686.84, "end": 1686.96, "word": " this", "probability": 0.90771484375}, {"start": 1686.96, "end": 1687.16, "word": " element", "probability": 0.86572265625}, {"start": 1687.16, "end": 1687.62, "word": " and", "probability": 0.8837890625}, {"start": 1687.62, "end": 1687.88, "word": " make", "probability": 0.794921875}, {"start": 1687.88, "end": 1688.2, "word": " it", "probability": 0.93798828125}, {"start": 1688.2, "end": 1689.42, "word": " unexecuted.", "probability": 0.7437337239583334}, {"start": 1689.86, "end": 1690.26, "word": " So", "probability": 0.89111328125}, {"start": 1690.26, "end": 1690.34, "word": " I", "probability": 0.90966796875}, {"start": 1690.34, "end": 1690.4, "word": " want", "probability": 0.501953125}, {"start": 1690.4, "end": 1690.46, "word": " to", "probability": 0.97119140625}, {"start": 1690.46, "end": 1690.6, "word": " tell", "probability": 0.79541015625}, {"start": 1690.6, "end": 1690.76, "word": " him", "probability": 0.521484375}, {"start": 1690.76, "end": 1690.9, "word": " to", "probability": 0.5869140625}, {"start": 1690.9, "end": 1691.04, "word": " go", "probability": 0.97265625}, {"start": 1691.04, "end": 1691.16, "word": " to", "probability": 0.96533203125}, {"start": 1691.16, "end": 1691.28, "word": " the", "probability": 0.7509765625}, {"start": 1691.28, "end": 1691.74, "word": " command", "probability": 0.88720703125}, {"start": 1691.74, "end": 1693.08, "word": " and", "probability": 0.6298828125}, {"start": 1693.08, "end": 1693.28, "word": " tell", "probability": 0.468994140625}, {"start": 1693.28, "end": 1693.4, "word": " him", "probability": 0.8916015625}, {"start": 1693.4, "end": 1693.76, "word": " get", "probability": 0.424072265625}, {"start": 1693.76, "end": 1694.94, "word": " this", "probability": 0.55517578125}, {"start": 1694.94, "end": 1695.26, "word": " element", "probability": 0.947265625}, {"start": 1695.26, "end": 1695.46, "word": " that", "probability": 0.5078125}, {"start": 1695.46, "end": 1695.56, "word": " is", "probability": 0.6611328125}, {"start": 1695.56, "end": 1695.76, "word": " present", "probability": 0.39990234375}, {"start": 1695.76, "end": 1695.94, "word": " at", "probability": 0.27392578125}, {"start": 1695.94, "end": 1696.18, "word": " whom?", "probability": 0.66259765625}, {"start": 1696.9, "end": 1697.3, "word": " At", "probability": 0.5751953125}, {"start": 1697.3, "end": 1697.44, "word": " the", "probability": 0.9072265625}, {"start": 1697.44, "end": 1697.84, "word": " index", "probability": 0.89892578125}, {"start": 1697.84, "end": 1698.42, "word": " and", "probability": 0.479736328125}, {"start": 1698.42, "end": 1698.66, "word": " do", "probability": 0.45068359375}, {"start": 1698.66, "end": 1699.1, "word": " what?", "probability": 0.9052734375}], "temperature": 1.0}, {"id": 67, "seek": 172805, "start": 1700.39, "end": 1728.05, "text": "unexecute and don't forget to start from index 1 because the redo process if the index is smaller than commands.size-1 it's still in place, it didn't finish the sentence, okay? increase the index by 1", "tokens": [409, 3121, 3045, 1169, 293, 500, 380, 2870, 281, 722, 490, 8186, 502, 570, 264, 29956, 1399, 498, 264, 8186, 307, 4356, 813, 16901, 13, 27553, 12, 16, 309, 311, 920, 294, 1081, 11, 309, 994, 380, 2413, 264, 8174, 11, 1392, 30, 3488, 264, 8186, 538, 502], "avg_logprob": -0.6023597133402921, "compression_ratio": 1.3986013986013985, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 1700.39, "end": 1701.21, "word": "unexecute", "probability": 0.69390869140625}, {"start": 1701.21, "end": 1701.35, "word": " and", "probability": 0.63232421875}, {"start": 1701.35, "end": 1701.45, "word": " don't", "probability": 0.801513671875}, {"start": 1701.45, "end": 1701.85, "word": " forget", "probability": 0.9140625}, {"start": 1701.85, "end": 1703.59, "word": " to", "probability": 0.599609375}, {"start": 1703.59, "end": 1703.85, "word": " start", "probability": 0.1556396484375}, {"start": 1703.85, "end": 1703.97, "word": " from", "probability": 0.568359375}, {"start": 1703.97, "end": 1704.43, "word": " index", "probability": 0.806640625}, {"start": 1704.43, "end": 1705.71, "word": " 1", "probability": 0.56494140625}, {"start": 1705.71, "end": 1707.55, "word": " because", "probability": 0.2203369140625}, {"start": 1707.55, "end": 1707.69, "word": " the", "probability": 0.479248046875}, {"start": 1707.69, "end": 1708.31, "word": " redo", "probability": 0.53515625}, {"start": 1708.31, "end": 1709.67, "word": " process", "probability": 0.60791015625}, {"start": 1709.67, "end": 1710.19, "word": " if", "probability": 0.87841796875}, {"start": 1710.19, "end": 1711.79, "word": " the", "probability": 0.277099609375}, {"start": 1711.79, "end": 1712.29, "word": " index", "probability": 0.90673828125}, {"start": 1712.29, "end": 1713.51, "word": " is", "probability": 0.53759765625}, {"start": 1713.51, "end": 1713.79, "word": " smaller", "probability": 0.61767578125}, {"start": 1713.79, "end": 1714.33, "word": " than", "probability": 0.927734375}, {"start": 1714.33, "end": 1716.17, "word": " commands", "probability": 0.82861328125}, {"start": 1716.17, "end": 1718.37, "word": ".size", "probability": 0.83154296875}, {"start": 1718.37, "end": 1719.63, "word": "-1", "probability": 0.52099609375}, {"start": 1719.63, "end": 1722.01, "word": " it's", "probability": 0.340087890625}, {"start": 1722.01, "end": 1722.13, "word": " still", "probability": 0.7587890625}, {"start": 1722.13, "end": 1722.93, "word": " in", "probability": 0.2091064453125}, {"start": 1722.93, "end": 1723.31, "word": " place,", "probability": 0.352783203125}, {"start": 1723.79, "end": 1724.19, "word": " it", "probability": 0.6337890625}, {"start": 1724.19, "end": 1724.33, "word": " didn't", "probability": 0.6446533203125}, {"start": 1724.33, "end": 1724.67, "word": " finish", "probability": 0.583984375}, {"start": 1724.67, "end": 1724.83, "word": " the", "probability": 0.59130859375}, {"start": 1724.83, "end": 1725.07, "word": " sentence,", "probability": 0.470458984375}, {"start": 1725.27, "end": 1726.15, "word": " okay?", "probability": 0.34814453125}, {"start": 1726.61, "end": 1726.91, "word": " increase", "probability": 0.55517578125}, {"start": 1726.91, "end": 1727.11, "word": " the", "probability": 0.61865234375}, {"start": 1727.11, "end": 1727.41, "word": " index", "probability": 0.92236328125}, {"start": 1727.41, "end": 1727.63, "word": " by", "probability": 0.67236328125}, {"start": 1727.63, "end": 1728.05, "word": " 1", "probability": 0.53173828125}], "temperature": 1.0}, {"id": 68, "seek": 174774, "start": 1730.04, "end": 1747.74, "text": "right? he was here we need to go back to the process we need to increase the index by one and then we say commands.hatley the command that is present in the index and say execute we are done", "tokens": [1938, 30, 415, 390, 510, 321, 643, 281, 352, 646, 281, 264, 1399, 321, 643, 281, 3488, 264, 8186, 538, 472, 293, 550, 321, 584, 16901, 13, 15178, 3420, 264, 5622, 300, 307, 1974, 294, 264, 8186, 293, 584, 14483, 321, 366, 1096], "avg_logprob": -0.5820312581279061, "compression_ratio": 1.5447154471544715, "no_speech_prob": 4.887580871582031e-06, "words": [{"start": 1730.04, "end": 1730.52, "word": "right?", "probability": 0.27294921875}, {"start": 1731.04, "end": 1731.48, "word": " he", "probability": 0.1937255859375}, {"start": 1731.48, "end": 1731.76, "word": " was", "probability": 0.79248046875}, {"start": 1731.76, "end": 1732.08, "word": " here", "probability": 0.79052734375}, {"start": 1732.08, "end": 1733.52, "word": " we", "probability": 0.37939453125}, {"start": 1733.52, "end": 1733.74, "word": " need", "probability": 0.260498046875}, {"start": 1733.74, "end": 1734.54, "word": " to", "probability": 0.90576171875}, {"start": 1734.54, "end": 1734.7, "word": " go", "probability": 0.2369384765625}, {"start": 1734.7, "end": 1734.78, "word": " back", "probability": 0.86962890625}, {"start": 1734.78, "end": 1734.9, "word": " to", "probability": 0.82763671875}, {"start": 1734.9, "end": 1734.96, "word": " the", "probability": 0.486328125}, {"start": 1734.96, "end": 1735.14, "word": " process", "probability": 0.6240234375}, {"start": 1735.14, "end": 1735.24, "word": " we", "probability": 0.429931640625}, {"start": 1735.24, "end": 1735.38, "word": " need", "probability": 0.6640625}, {"start": 1735.38, "end": 1735.48, "word": " to", "probability": 0.9609375}, {"start": 1735.48, "end": 1735.64, "word": " increase", "probability": 0.2802734375}, {"start": 1735.64, "end": 1735.78, "word": " the", "probability": 0.6513671875}, {"start": 1735.78, "end": 1736.04, "word": " index", "probability": 0.9296875}, {"start": 1736.04, "end": 1736.26, "word": " by", "probability": 0.767578125}, {"start": 1736.26, "end": 1736.6, "word": " one", "probability": 0.58837890625}, {"start": 1736.6, "end": 1737.4, "word": " and", "probability": 0.69580078125}, {"start": 1737.4, "end": 1737.76, "word": " then", "probability": 0.68896484375}, {"start": 1737.76, "end": 1738.04, "word": " we", "probability": 0.591796875}, {"start": 1738.04, "end": 1738.18, "word": " say", "probability": 0.53173828125}, {"start": 1738.18, "end": 1738.96, "word": " commands", "probability": 0.84228515625}, {"start": 1738.96, "end": 1740.76, "word": ".hatley", "probability": 0.511962890625}, {"start": 1740.76, "end": 1741.04, "word": " the", "probability": 0.18359375}, {"start": 1741.04, "end": 1741.3, "word": " command", "probability": 0.72998046875}, {"start": 1741.3, "end": 1741.54, "word": " that", "probability": 0.475341796875}, {"start": 1741.54, "end": 1741.7, "word": " is", "probability": 0.5322265625}, {"start": 1741.7, "end": 1741.9, "word": " present", "probability": 0.294189453125}, {"start": 1741.9, "end": 1742.1, "word": " in", "probability": 0.38232421875}, {"start": 1742.1, "end": 1742.26, "word": " the", "probability": 0.8232421875}, {"start": 1742.26, "end": 1742.68, "word": " index", "probability": 0.92138671875}, {"start": 1742.68, "end": 1742.9, "word": " and", "probability": 0.84326171875}, {"start": 1742.9, "end": 1743.2, "word": " say", "probability": 0.6572265625}, {"start": 1743.2, "end": 1744.56, "word": " execute", "probability": 0.9453125}, {"start": 1744.56, "end": 1747.5, "word": " we", "probability": 0.51318359375}, {"start": 1747.5, "end": 1747.52, "word": " are", "probability": 0.40234375}, {"start": 1747.52, "end": 1747.74, "word": " done", "probability": 0.7890625}], "temperature": 1.0}, {"id": 69, "seek": 177411, "start": 1749.39, "end": 1774.11, "text": "خلصنا مين؟ ال class اسمها ال drawing manager اللي هو المسئول عن ال undo و ال redo لإن هذا ال drawing manager أنشأنا ال class بس ما استخدمناها فبنروح ل ال frame الأساسي في التطبيق و فوق فيها نعمل object من نوع drawing manager هى سميناه إيش manager و هنا manager", "tokens": [9778, 1211, 9381, 8315, 3714, 9957, 22807, 2423, 1508, 24525, 2304, 11296, 2423, 6316, 6598, 13672, 1829, 31439, 9673, 3794, 19986, 12610, 18871, 2423, 23779, 4032, 2423, 29956, 5296, 28814, 1863, 23758, 2423, 6316, 6598, 14739, 8592, 10721, 8315, 2423, 1508, 4724, 3794, 19446, 44713, 9778, 40448, 8315, 11296, 6156, 3555, 1863, 32887, 5016, 5296, 2423, 3920, 16247, 3794, 32277, 1829, 8978, 16712, 9566, 21292, 4587, 4032, 6156, 30543, 8978, 11296, 8717, 25957, 1211, 2657, 9154, 8717, 45367, 6316, 6598, 8032, 7578, 8608, 2304, 1829, 8315, 3224, 11933, 1829, 8592, 6598, 4032, 34105, 6598], "avg_logprob": -0.18815789442313344, "compression_ratio": 1.742081447963801, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1749.3899999999999, "end": 1750.11, "word": "خلصنا", "probability": 0.78277587890625}, {"start": 1750.11, "end": 1750.83, "word": " مين؟", "probability": 0.8113606770833334}, {"start": 1750.83, "end": 1750.97, "word": " ال", "probability": 0.23486328125}, {"start": 1750.97, "end": 1751.27, "word": " class", "probability": 0.98046875}, {"start": 1751.27, "end": 1751.95, "word": " اسمها", "probability": 0.8307291666666666}, {"start": 1751.95, "end": 1752.31, "word": " ال", "probability": 0.1429443359375}, {"start": 1752.31, "end": 1752.65, "word": " drawing", "probability": 0.81640625}, {"start": 1752.65, "end": 1753.65, "word": " manager", "probability": 0.91064453125}, {"start": 1753.65, "end": 1753.81, "word": " اللي", "probability": 0.8779296875}, {"start": 1753.81, "end": 1753.93, "word": " هو", "probability": 0.9716796875}, {"start": 1753.93, "end": 1754.49, "word": " المسئول", "probability": 0.911865234375}, {"start": 1754.49, "end": 1754.73, "word": " عن", "probability": 0.99609375}, {"start": 1754.73, "end": 1754.85, "word": " ال", "probability": 0.9619140625}, {"start": 1754.85, "end": 1755.13, "word": " undo", "probability": 0.87353515625}, {"start": 1755.13, "end": 1755.91, "word": " و", "probability": 0.8271484375}, {"start": 1755.91, "end": 1755.97, "word": " ال", "probability": 0.63818359375}, {"start": 1755.97, "end": 1756.25, "word": " redo", "probability": 0.89794921875}, {"start": 1756.25, "end": 1757.09, "word": " لإن", "probability": 0.7164713541666666}, {"start": 1757.09, "end": 1757.33, "word": " هذا", "probability": 0.6728515625}, {"start": 1757.33, "end": 1757.45, "word": " ال", "probability": 0.94677734375}, {"start": 1757.45, "end": 1757.65, "word": " drawing", "probability": 0.7861328125}, {"start": 1757.65, "end": 1758.03, "word": " manager", "probability": 0.97119140625}, {"start": 1758.03, "end": 1758.77, "word": " أنشأنا", "probability": 0.8304443359375}, {"start": 1758.77, "end": 1758.87, "word": " ال", "probability": 0.8056640625}, {"start": 1758.87, "end": 1759.07, "word": " class", "probability": 0.98828125}, {"start": 1759.07, "end": 1759.25, "word": " بس", "probability": 0.976806640625}, {"start": 1759.25, "end": 1759.35, "word": " ما", "probability": 0.859375}, {"start": 1759.35, "end": 1760.11, "word": " استخدمناها", "probability": 0.93115234375}, {"start": 1760.11, "end": 1761.45, "word": " فبنروح", "probability": 0.9287109375}, {"start": 1761.45, "end": 1761.61, "word": " ل", "probability": 0.64892578125}, {"start": 1761.61, "end": 1761.99, "word": " ال", "probability": 0.417724609375}, {"start": 1761.99, "end": 1762.59, "word": " frame", "probability": 0.76953125}, {"start": 1762.59, "end": 1763.13, "word": " الأساسي", "probability": 0.89892578125}, {"start": 1763.13, "end": 1763.25, "word": " في", "probability": 0.87451171875}, {"start": 1763.25, "end": 1763.85, "word": " التطبيق", "probability": 0.9715576171875}, {"start": 1763.85, "end": 1764.47, "word": " و", "probability": 0.96337890625}, {"start": 1764.47, "end": 1764.77, "word": " فوق", "probability": 0.937744140625}, {"start": 1764.77, "end": 1765.23, "word": " فيها", "probability": 0.9658203125}, {"start": 1765.23, "end": 1765.75, "word": " نعمل", "probability": 0.9837239583333334}, {"start": 1765.75, "end": 1767.13, "word": " object", "probability": 0.99365234375}, {"start": 1767.13, "end": 1767.33, "word": " من", "probability": 0.9599609375}, {"start": 1767.33, "end": 1767.65, "word": " نوع", "probability": 0.920654296875}, {"start": 1767.65, "end": 1768.77, "word": " drawing", "probability": 0.865234375}, {"start": 1768.77, "end": 1770.03, "word": " manager", "probability": 0.951171875}, {"start": 1770.03, "end": 1770.27, "word": " هى", "probability": 0.5419921875}, {"start": 1770.27, "end": 1770.81, "word": " سميناه", "probability": 0.8884765625}, {"start": 1770.81, "end": 1771.09, "word": " إيش", "probability": 0.82373046875}, {"start": 1771.09, "end": 1772.25, "word": " manager", "probability": 0.85693359375}, {"start": 1772.25, "end": 1772.95, "word": " و", "probability": 0.9482421875}, {"start": 1772.95, "end": 1773.23, "word": " هنا", "probability": 0.96240234375}, {"start": 1773.23, "end": 1774.11, "word": " manager", "probability": 0.978515625}], "temperature": 1.0}, {"id": 70, "seek": 180290, "start": 1779.86, "end": 1802.9, "text": "new drawing manager now this manager doesn't forget that while I'm drawing I have to add commands to it which means that we also need it to reach the drawing panel okay so this is the same manager we have to send him to the next class which is the drawing panel", "tokens": [7686, 6316, 6598, 586, 341, 6598, 1177, 380, 2870, 300, 1339, 286, 478, 6316, 286, 362, 281, 909, 16901, 281, 309, 597, 1355, 300, 321, 611, 643, 309, 281, 2524, 264, 6316, 4831, 1392, 370, 341, 307, 264, 912, 6598, 321, 362, 281, 2845, 796, 281, 264, 958, 1508, 597, 307, 264, 6316, 4831], "avg_logprob": -0.4951704675501043, "compression_ratio": 1.7755102040816326, "no_speech_prob": 6.735324859619141e-06, "words": [{"start": 1779.8600000000001, "end": 1780.44, "word": "new", "probability": 0.62060546875}, {"start": 1780.44, "end": 1781.02, "word": " drawing", "probability": 0.81982421875}, {"start": 1781.02, "end": 1783.8, "word": " manager", "probability": 0.96826171875}, {"start": 1783.8, "end": 1784.72, "word": " now", "probability": 0.298095703125}, {"start": 1784.72, "end": 1784.84, "word": " this", "probability": 0.77294921875}, {"start": 1784.84, "end": 1785.22, "word": " manager", "probability": 0.95654296875}, {"start": 1785.22, "end": 1786.28, "word": " doesn't", "probability": 0.583984375}, {"start": 1786.28, "end": 1786.72, "word": " forget", "probability": 0.900390625}, {"start": 1786.72, "end": 1786.92, "word": " that", "probability": 0.7724609375}, {"start": 1786.92, "end": 1788.12, "word": " while", "probability": 0.2607421875}, {"start": 1788.12, "end": 1788.64, "word": " I'm", "probability": 0.45556640625}, {"start": 1788.64, "end": 1788.76, "word": " drawing", "probability": 0.78369140625}, {"start": 1788.76, "end": 1789.74, "word": " I", "probability": 0.607421875}, {"start": 1789.74, "end": 1789.84, "word": " have", "probability": 0.2685546875}, {"start": 1789.84, "end": 1789.9, "word": " to", "probability": 0.96728515625}, {"start": 1789.9, "end": 1790.1, "word": " add", "probability": 0.75390625}, {"start": 1790.1, "end": 1790.66, "word": " commands", "probability": 0.60107421875}, {"start": 1790.66, "end": 1790.84, "word": " to", "probability": 0.603515625}, {"start": 1790.84, "end": 1791.0, "word": " it", "probability": 0.6064453125}, {"start": 1791.0, "end": 1792.4, "word": " which", "probability": 0.11871337890625}, {"start": 1792.4, "end": 1792.4, "word": " means", "probability": 0.85595703125}, {"start": 1792.4, "end": 1792.62, "word": " that", "probability": 0.45751953125}, {"start": 1792.62, "end": 1792.62, "word": " we", "probability": 0.69287109375}, {"start": 1792.62, "end": 1792.74, "word": " also", "probability": 0.48876953125}, {"start": 1792.74, "end": 1793.1, "word": " need", "probability": 0.89306640625}, {"start": 1793.1, "end": 1793.8, "word": " it", "probability": 0.427734375}, {"start": 1793.8, "end": 1793.92, "word": " to", "probability": 0.75830078125}, {"start": 1793.92, "end": 1794.28, "word": " reach", "probability": 0.54931640625}, {"start": 1794.28, "end": 1794.48, "word": " the", "probability": 0.73779296875}, {"start": 1794.48, "end": 1794.76, "word": " drawing", "probability": 0.861328125}, {"start": 1794.76, "end": 1795.14, "word": " panel", "probability": 0.9189453125}, {"start": 1795.14, "end": 1796.68, "word": " okay", "probability": 0.22265625}, {"start": 1796.68, "end": 1796.94, "word": " so", "probability": 0.199462890625}, {"start": 1796.94, "end": 1797.22, "word": " this", "probability": 0.8603515625}, {"start": 1797.22, "end": 1797.3, "word": " is", "probability": 0.6572265625}, {"start": 1797.3, "end": 1797.58, "word": " the", "probability": 0.794921875}, {"start": 1797.58, "end": 1797.58, "word": " same", "probability": 0.529296875}, {"start": 1797.58, "end": 1798.0, "word": " manager", "probability": 0.9462890625}, {"start": 1798.0, "end": 1798.66, "word": " we", "probability": 0.348388671875}, {"start": 1798.66, "end": 1798.88, "word": " have", "probability": 0.53369140625}, {"start": 1798.88, "end": 1799.02, "word": " to", "probability": 0.9658203125}, {"start": 1799.02, "end": 1799.22, "word": " send", "probability": 0.5146484375}, {"start": 1799.22, "end": 1800.04, "word": " him", "probability": 0.6708984375}, {"start": 1800.04, "end": 1801.08, "word": " to", "probability": 0.9375}, {"start": 1801.08, "end": 1801.44, "word": " the", "probability": 0.6318359375}, {"start": 1801.44, "end": 1801.9, "word": " next", "probability": 0.381103515625}, {"start": 1801.9, "end": 1801.9, "word": " class", "probability": 0.90966796875}, {"start": 1801.9, "end": 1802.16, "word": " which", "probability": 0.80712890625}, {"start": 1802.16, "end": 1802.24, "word": " is", "probability": 0.9375}, {"start": 1802.24, "end": 1802.34, "word": " the", "probability": 0.8134765625}, {"start": 1802.34, "end": 1802.6, "word": " drawing", "probability": 0.8798828125}, {"start": 1802.6, "end": 1802.9, "word": " panel", "probability": 0.9267578125}], "temperature": 1.0}, {"id": 71, "seek": 183059, "start": 1803.67, "end": 1830.59, "text": "Okay, because this is what has the listener on the mouse, and what it has is the drawing process. So in its constructor, we passed to whom? The manager. There is a mistake, of course, why? Because the drawing panel is still okay, its constructor is empty. So did you find out what the idea is? We created the drawing manager in the main frame, and we passed it to whom? To the drawing panel. So here we want to make an object of the type drawing manager, its name is manager.", "tokens": [8297, 11, 570, 341, 307, 437, 575, 264, 31569, 322, 264, 9719, 11, 293, 437, 309, 575, 307, 264, 6316, 1399, 13, 407, 294, 1080, 47479, 11, 321, 4678, 281, 7101, 30, 440, 6598, 13, 821, 307, 257, 6146, 11, 295, 1164, 11, 983, 30, 1436, 264, 6316, 4831, 307, 920, 1392, 11, 1080, 47479, 307, 6707, 13, 407, 630, 291, 915, 484, 437, 264, 1558, 307, 30, 492, 2942, 264, 6316, 6598, 294, 264, 2135, 3920, 11, 293, 321, 4678, 309, 281, 7101, 30, 1407, 264, 6316, 4831, 13, 407, 510, 321, 528, 281, 652, 364, 2657, 295, 264, 2010, 6316, 6598, 11, 1080, 1315, 307, 6598, 13], "avg_logprob": -0.4795454529198733, "compression_ratio": 1.8924302788844622, "no_speech_prob": 9.775161743164062e-06, "words": [{"start": 1803.67, "end": 1803.99, "word": "Okay,", "probability": 0.09393310546875}, {"start": 1804.05, "end": 1804.23, "word": " because", "probability": 0.70947265625}, {"start": 1804.23, "end": 1804.51, "word": " this", "probability": 0.7021484375}, {"start": 1804.51, "end": 1804.65, "word": " is", "probability": 0.77685546875}, {"start": 1804.65, "end": 1804.83, "word": " what", "probability": 0.318359375}, {"start": 1804.83, "end": 1804.99, "word": " has", "probability": 0.490966796875}, {"start": 1804.99, "end": 1805.07, "word": " the", "probability": 0.403564453125}, {"start": 1805.07, "end": 1805.35, "word": " listener", "probability": 0.39208984375}, {"start": 1805.35, "end": 1805.59, "word": " on", "probability": 0.845703125}, {"start": 1805.59, "end": 1805.75, "word": " the", "probability": 0.833984375}, {"start": 1805.75, "end": 1806.09, "word": " mouse,", "probability": 0.9365234375}, {"start": 1806.75, "end": 1806.85, "word": " and", "probability": 0.865234375}, {"start": 1806.85, "end": 1806.93, "word": " what", "probability": 0.72265625}, {"start": 1806.93, "end": 1807.11, "word": " it", "probability": 0.244140625}, {"start": 1807.11, "end": 1807.13, "word": " has", "probability": 0.88427734375}, {"start": 1807.13, "end": 1807.33, "word": " is", "probability": 0.242431640625}, {"start": 1807.33, "end": 1807.51, "word": " the", "probability": 0.486083984375}, {"start": 1807.51, "end": 1808.09, "word": " drawing", "probability": 0.66064453125}, {"start": 1808.09, "end": 1808.13, "word": " process.", "probability": 0.884765625}, {"start": 1808.33, "end": 1808.65, "word": " So", "probability": 0.64599609375}, {"start": 1808.65, "end": 1808.73, "word": " in", "probability": 0.7744140625}, {"start": 1808.73, "end": 1808.83, "word": " its", "probability": 0.51611328125}, {"start": 1808.83, "end": 1809.45, "word": " constructor,", "probability": 0.91552734375}, {"start": 1809.77, "end": 1809.83, "word": " we", "probability": 0.60546875}, {"start": 1809.83, "end": 1810.01, "word": " passed", "probability": 0.170654296875}, {"start": 1810.01, "end": 1810.25, "word": " to", "probability": 0.33203125}, {"start": 1810.25, "end": 1810.49, "word": " whom?", "probability": 0.79296875}, {"start": 1811.27, "end": 1811.47, "word": " The", "probability": 0.501953125}, {"start": 1811.47, "end": 1811.69, "word": " manager.", "probability": 0.8515625}, {"start": 1811.81, "end": 1811.95, "word": " There", "probability": 0.1961669921875}, {"start": 1811.95, "end": 1812.03, "word": " is", "probability": 0.67724609375}, {"start": 1812.03, "end": 1812.09, "word": " a", "probability": 0.55322265625}, {"start": 1812.09, "end": 1812.31, "word": " mistake,", "probability": 0.8505859375}, {"start": 1812.45, "end": 1812.53, "word": " of", "probability": 0.837890625}, {"start": 1812.53, "end": 1812.55, "word": " course,", "probability": 0.95458984375}, {"start": 1812.63, "end": 1812.83, "word": " why?", "probability": 0.61767578125}, {"start": 1812.87, "end": 1813.03, "word": " Because", "probability": 0.8818359375}, {"start": 1813.03, "end": 1813.33, "word": " the", "probability": 0.42919921875}, {"start": 1813.33, "end": 1813.61, "word": " drawing", "probability": 0.82470703125}, {"start": 1813.61, "end": 1814.01, "word": " panel", "probability": 0.87646484375}, {"start": 1814.01, "end": 1815.09, "word": " is", "probability": 0.6259765625}, {"start": 1815.09, "end": 1815.09, "word": " still", "probability": 0.80126953125}, {"start": 1815.09, "end": 1815.25, "word": " okay,", "probability": 0.25537109375}, {"start": 1815.35, "end": 1815.41, "word": " its", "probability": 0.39990234375}, {"start": 1815.41, "end": 1816.01, "word": " constructor", "probability": 0.86474609375}, {"start": 1816.01, "end": 1817.77, "word": " is", "probability": 0.890625}, {"start": 1817.77, "end": 1818.05, "word": " empty.", "probability": 0.72412109375}, {"start": 1818.57, "end": 1818.89, "word": " So", "probability": 0.50537109375}, {"start": 1818.89, "end": 1819.01, "word": " did", "probability": 0.330810546875}, {"start": 1819.01, "end": 1819.03, "word": " you", "probability": 0.88525390625}, {"start": 1819.03, "end": 1819.19, "word": " find", "probability": 0.59765625}, {"start": 1819.19, "end": 1819.25, "word": " out", "probability": 0.2069091796875}, {"start": 1819.25, "end": 1819.37, "word": " what", "probability": 0.7392578125}, {"start": 1819.37, "end": 1819.45, "word": " the", "probability": 0.379638671875}, {"start": 1819.45, "end": 1819.65, "word": " idea", "probability": 0.8525390625}, {"start": 1819.65, "end": 1819.69, "word": " is?", "probability": 0.78173828125}, {"start": 1819.75, "end": 1819.91, "word": " We", "probability": 0.45654296875}, {"start": 1819.91, "end": 1819.91, "word": " created", "probability": 0.6484375}, {"start": 1819.91, "end": 1819.91, "word": " the", "probability": 0.7529296875}, {"start": 1819.91, "end": 1820.17, "word": " drawing", "probability": 0.78857421875}, {"start": 1820.17, "end": 1820.53, "word": " manager", "probability": 0.939453125}, {"start": 1820.53, "end": 1821.49, "word": " in", "probability": 0.8984375}, {"start": 1821.49, "end": 1821.59, "word": " the", "probability": 0.923828125}, {"start": 1821.59, "end": 1821.61, "word": " main", "probability": 0.6279296875}, {"start": 1821.61, "end": 1822.27, "word": " frame,", "probability": 0.8935546875}, {"start": 1822.37, "end": 1822.47, "word": " and", "probability": 0.88427734375}, {"start": 1822.47, "end": 1822.57, "word": " we", "probability": 0.55322265625}, {"start": 1822.57, "end": 1822.67, "word": " passed", "probability": 0.7158203125}, {"start": 1822.67, "end": 1822.95, "word": " it", "probability": 0.86865234375}, {"start": 1822.95, "end": 1823.01, "word": " to", "probability": 0.875}, {"start": 1823.01, "end": 1823.21, "word": " whom?", "probability": 0.8828125}, {"start": 1823.85, "end": 1823.99, "word": " To", "probability": 0.7138671875}, {"start": 1823.99, "end": 1824.09, "word": " the", "probability": 0.89404296875}, {"start": 1824.09, "end": 1824.35, "word": " drawing", "probability": 0.85498046875}, {"start": 1824.35, "end": 1824.63, "word": " panel.", "probability": 0.90185546875}, {"start": 1825.07, "end": 1825.25, "word": " So", "probability": 0.47119140625}, {"start": 1825.25, "end": 1825.45, "word": " here", "probability": 0.8076171875}, {"start": 1825.45, "end": 1825.57, "word": " we", "probability": 0.8134765625}, {"start": 1825.57, "end": 1825.69, "word": " want", "probability": 0.75390625}, {"start": 1825.69, "end": 1825.77, "word": " to", "probability": 0.9755859375}, {"start": 1825.77, "end": 1825.89, "word": " make", "probability": 0.697265625}, {"start": 1825.89, "end": 1826.61, "word": " an", "probability": 0.919921875}, {"start": 1826.61, "end": 1826.61, "word": " object", "probability": 0.97900390625}, {"start": 1826.61, "end": 1826.97, "word": " of", "probability": 0.576171875}, {"start": 1826.97, "end": 1827.07, "word": " the", "probability": 0.68359375}, {"start": 1827.07, "end": 1827.13, "word": " type", "probability": 0.385498046875}, {"start": 1827.13, "end": 1827.55, "word": " drawing", "probability": 0.5732421875}, {"start": 1827.55, "end": 1829.67, "word": " manager,", "probability": 0.79296875}, {"start": 1829.87, "end": 1830.03, "word": " its", "probability": 0.2320556640625}, {"start": 1830.03, "end": 1830.15, "word": " name", "probability": 0.91259765625}, {"start": 1830.15, "end": 1830.23, "word": " is", "probability": 0.80517578125}, {"start": 1830.23, "end": 1830.59, "word": " manager.", "probability": 0.9326171875}], "temperature": 1.0}, {"id": 72, "seek": 185838, "start": 1832.84, "end": 1858.38, "text": "وهنا بقوله ال constructor صار ياخد argument من نوع manager و بقوله this dot manager يساوي manager لأن ليش بدي أعمل هيك؟ على أساس الآن وين الخطوة اللي أنشأت فيها الأمر؟ هي ال line command صح؟ أنشأت ال line و رسمته", "tokens": [2407, 3224, 8315, 4724, 39648, 3224, 2423, 47479, 20328, 9640, 7251, 47283, 3215, 6770, 9154, 8717, 45367, 6598, 4032, 4724, 39648, 3224, 341, 5893, 6598, 7251, 3794, 995, 45865, 6598, 5296, 33456, 32239, 8592, 4724, 16254, 5551, 25957, 1211, 39896, 4117, 22807, 15844, 5551, 3794, 32277, 6024, 48506, 4032, 9957, 33962, 9566, 2407, 3660, 13672, 1829, 14739, 8592, 10721, 2655, 8978, 11296, 16247, 29973, 22807, 39896, 2423, 1622, 5622, 20328, 5016, 22807, 14739, 8592, 10721, 2655, 2423, 1622, 4032, 12602, 38251, 47395], "avg_logprob": -0.18957078636410724, "compression_ratio": 1.5480769230769231, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1832.84, "end": 1833.32, "word": "وهنا", "probability": 0.6413777669270834}, {"start": 1833.32, "end": 1833.94, "word": " بقوله", "probability": 0.8382161458333334}, {"start": 1833.94, "end": 1838.44, "word": " ال", "probability": 0.51611328125}, {"start": 1838.44, "end": 1838.98, "word": " constructor", "probability": 0.87646484375}, {"start": 1838.98, "end": 1839.28, "word": " صار", "probability": 0.9052734375}, {"start": 1839.28, "end": 1839.76, "word": " ياخد", "probability": 0.9765625}, {"start": 1839.76, "end": 1840.82, "word": " argument", "probability": 0.93212890625}, {"start": 1840.82, "end": 1841.82, "word": " من", "probability": 0.90869140625}, {"start": 1841.82, "end": 1841.94, "word": " نوع", "probability": 0.93701171875}, {"start": 1841.94, "end": 1842.34, "word": " manager", "probability": 0.96630859375}, {"start": 1842.34, "end": 1842.52, "word": " و", "probability": 0.88427734375}, {"start": 1842.52, "end": 1842.86, "word": " بقوله", "probability": 0.9168294270833334}, {"start": 1842.86, "end": 1843.1, "word": " this", "probability": 0.93115234375}, {"start": 1843.1, "end": 1843.34, "word": " dot", "probability": 0.58251953125}, {"start": 1843.34, "end": 1843.88, "word": " manager", "probability": 0.98291015625}, {"start": 1843.88, "end": 1845.7, "word": " يساوي", "probability": 0.865478515625}, {"start": 1845.7, "end": 1846.14, "word": " manager", "probability": 0.90283203125}, {"start": 1846.14, "end": 1849.32, "word": " لأن", "probability": 0.6165771484375}, {"start": 1849.32, "end": 1849.46, "word": " ليش", "probability": 0.948486328125}, {"start": 1849.46, "end": 1849.66, "word": " بدي", "probability": 0.6802978515625}, {"start": 1849.66, "end": 1849.86, "word": " أعمل", "probability": 0.8795572916666666}, {"start": 1849.86, "end": 1850.3, "word": " هيك؟", "probability": 0.81103515625}, {"start": 1850.3, "end": 1850.52, "word": " على", "probability": 0.8134765625}, {"start": 1850.52, "end": 1850.94, "word": " أساس", "probability": 0.9833984375}, {"start": 1850.94, "end": 1851.4, "word": " الآن", "probability": 0.77001953125}, {"start": 1851.4, "end": 1851.7, "word": " وين", "probability": 0.86181640625}, {"start": 1851.7, "end": 1852.14, "word": " الخطوة", "probability": 0.9697265625}, {"start": 1852.14, "end": 1852.5, "word": " اللي", "probability": 0.9521484375}, {"start": 1852.5, "end": 1853.36, "word": " أنشأت", "probability": 0.916748046875}, {"start": 1853.36, "end": 1853.54, "word": " فيها", "probability": 0.99267578125}, {"start": 1853.54, "end": 1854.38, "word": " الأمر؟", "probability": 0.7002766927083334}, {"start": 1854.38, "end": 1854.48, "word": " هي", "probability": 0.485107421875}, {"start": 1854.48, "end": 1854.6, "word": " ال", "probability": 0.45703125}, {"start": 1854.6, "end": 1854.74, "word": " line", "probability": 0.876953125}, {"start": 1854.74, "end": 1855.22, "word": " command", "probability": 0.921875}, {"start": 1855.22, "end": 1856.58, "word": " صح؟", "probability": 0.8427734375}, {"start": 1856.58, "end": 1857.36, "word": " أنشأت", "probability": 0.9578857421875}, {"start": 1857.36, "end": 1857.48, "word": " ال", "probability": 0.96875}, {"start": 1857.48, "end": 1857.74, "word": " line", "probability": 0.96484375}, {"start": 1857.74, "end": 1857.9, "word": " و", "probability": 0.9736328125}, {"start": 1857.9, "end": 1858.38, "word": " رسمته", "probability": 0.8056640625}], "temperature": 1.0}, {"id": 73, "seek": 188332, "start": 1859.54, "end": 1883.32, "text": "أنا بدي أرسمه و في نفس اللحظة بدي أروح لل manager و بقولله add, draw, command و بضيف مين ال command لأن أنا طول ما هو برسم أي خط أي قطعة بتم رسمها برسمها عمل execute و راح أضافها أيضا على مين على ال manager تمام؟", "tokens": [10721, 8315, 4724, 16254, 5551, 2288, 38251, 3224, 4032, 8978, 8717, 36178, 13672, 5016, 19913, 3660, 4724, 16254, 5551, 32887, 5016, 24976, 6598, 4032, 4724, 39648, 43761, 909, 11, 2642, 11, 5622, 4032, 4724, 11242, 33911, 3714, 9957, 2423, 5622, 5296, 33456, 41850, 23032, 12610, 19446, 31439, 4724, 2288, 38251, 36632, 16490, 9566, 36632, 12174, 9566, 27884, 4724, 39237, 12602, 38251, 11296, 4724, 2288, 38251, 11296, 6225, 42213, 14483, 4032, 12602, 39319, 5551, 11242, 31845, 11296, 36632, 11242, 995, 15844, 3714, 9957, 15844, 2423, 6598, 46811, 10943, 22807], "avg_logprob": -0.20821629615312212, "compression_ratio": 1.6919191919191918, "no_speech_prob": 1.0907649993896484e-05, "words": [{"start": 1859.54, "end": 1859.78, "word": "أنا", "probability": 0.54656982421875}, {"start": 1859.78, "end": 1859.96, "word": " بدي", "probability": 0.78076171875}, {"start": 1859.96, "end": 1860.48, "word": " أرسمه", "probability": 0.94970703125}, {"start": 1860.48, "end": 1860.92, "word": " و", "probability": 0.8134765625}, {"start": 1860.92, "end": 1861.06, "word": " في", "probability": 0.5439453125}, {"start": 1861.06, "end": 1861.28, "word": " نفس", "probability": 0.995849609375}, {"start": 1861.28, "end": 1861.88, "word": " اللحظة", "probability": 0.993408203125}, {"start": 1861.88, "end": 1862.52, "word": " بدي", "probability": 0.735595703125}, {"start": 1862.52, "end": 1862.72, "word": " أروح", "probability": 0.9765625}, {"start": 1862.72, "end": 1862.9, "word": " لل", "probability": 0.274169921875}, {"start": 1862.9, "end": 1863.28, "word": " manager", "probability": 0.84423828125}, {"start": 1863.28, "end": 1864.9, "word": " و", "probability": 0.8466796875}, {"start": 1864.9, "end": 1865.46, "word": " بقولله", "probability": 0.694580078125}, {"start": 1865.46, "end": 1867.02, "word": " add,", "probability": 0.875}, {"start": 1867.46, "end": 1867.86, "word": " draw,", "probability": 0.89306640625}, {"start": 1868.26, "end": 1868.62, "word": " command", "probability": 0.90478515625}, {"start": 1868.62, "end": 1868.76, "word": " و", "probability": 0.85693359375}, {"start": 1868.76, "end": 1869.06, "word": " بضيف", "probability": 0.9295247395833334}, {"start": 1869.06, "end": 1869.36, "word": " مين", "probability": 0.88330078125}, {"start": 1869.36, "end": 1870.36, "word": " ال", "probability": 0.54833984375}, {"start": 1870.36, "end": 1870.8, "word": " command", "probability": 0.97705078125}, {"start": 1870.8, "end": 1872.3, "word": " لأن", "probability": 0.66455078125}, {"start": 1872.3, "end": 1872.6, "word": " أنا", "probability": 0.79736328125}, {"start": 1872.6, "end": 1873.08, "word": " طول", "probability": 0.99560546875}, {"start": 1873.08, "end": 1873.2, "word": " ما", "probability": 0.916015625}, {"start": 1873.2, "end": 1873.32, "word": " هو", "probability": 0.52734375}, {"start": 1873.32, "end": 1873.76, "word": " برسم", "probability": 0.9703776041666666}, {"start": 1873.76, "end": 1874.92, "word": " أي", "probability": 0.77685546875}, {"start": 1874.92, "end": 1875.5, "word": " خط", "probability": 0.98681640625}, {"start": 1875.5, "end": 1875.84, "word": " أي", "probability": 0.78515625}, {"start": 1875.84, "end": 1876.22, "word": " قطعة", "probability": 0.8693033854166666}, {"start": 1876.22, "end": 1876.5, "word": " بتم", "probability": 0.800048828125}, {"start": 1876.5, "end": 1877.06, "word": " رسمها", "probability": 0.9889322916666666}, {"start": 1877.06, "end": 1877.94, "word": " برسمها", "probability": 0.8914794921875}, {"start": 1877.94, "end": 1878.58, "word": " عمل", "probability": 0.775390625}, {"start": 1878.58, "end": 1879.16, "word": " execute", "probability": 0.978515625}, {"start": 1879.16, "end": 1879.38, "word": " و", "probability": 0.98291015625}, {"start": 1879.38, "end": 1879.52, "word": " راح", "probability": 0.830810546875}, {"start": 1879.52, "end": 1879.94, "word": " أضافها", "probability": 0.792724609375}, {"start": 1879.94, "end": 1880.18, "word": " أيضا", "probability": 0.8294270833333334}, {"start": 1880.18, "end": 1880.34, "word": " على", "probability": 0.798828125}, {"start": 1880.34, "end": 1880.58, "word": " مين", "probability": 0.9697265625}, {"start": 1880.58, "end": 1881.52, "word": " على", "probability": 0.4658203125}, {"start": 1881.52, "end": 1881.64, "word": " ال", "probability": 0.90576171875}, {"start": 1881.64, "end": 1881.92, "word": " manager", "probability": 0.978515625}, {"start": 1881.92, "end": 1883.32, "word": " تمام؟", "probability": 0.88427734375}], "temperature": 1.0}, {"id": 74, "seek": 191351, "start": 1885.41, "end": 1913.51, "text": "because it remains a step that when I press the undo and redo button, what does it do? Okay? So in the main page, I have action for the two buttons, which is to press undo or redo. So when I press undo, only what does it do? I go to the manager and do what? Undo. And when I do redo, I go to the manager and do redo.", "tokens": [17566, 309, 7023, 257, 1823, 300, 562, 286, 1886, 264, 23779, 293, 29956, 2960, 11, 437, 775, 309, 360, 30, 1033, 30, 407, 294, 264, 2135, 3028, 11, 286, 362, 3069, 337, 264, 732, 9905, 11, 597, 307, 281, 1886, 23779, 420, 29956, 13, 407, 562, 286, 1886, 23779, 11, 787, 437, 775, 309, 360, 30, 286, 352, 281, 264, 6598, 293, 360, 437, 30, 2719, 78, 13, 400, 562, 286, 360, 29956, 11, 286, 352, 281, 264, 6598, 293, 360, 29956, 13], "avg_logprob": -0.42373512649819967, "compression_ratio": 1.8057142857142856, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 1885.41, "end": 1885.79, "word": "because", "probability": 0.29931640625}, {"start": 1885.79, "end": 1886.05, "word": " it", "probability": 0.409423828125}, {"start": 1886.05, "end": 1886.05, "word": " remains", "probability": 0.173583984375}, {"start": 1886.05, "end": 1886.15, "word": " a", "probability": 0.7978515625}, {"start": 1886.15, "end": 1886.41, "word": " step", "probability": 0.92041015625}, {"start": 1886.41, "end": 1886.67, "word": " that", "probability": 0.42041015625}, {"start": 1886.67, "end": 1886.89, "word": " when", "probability": 0.77734375}, {"start": 1886.89, "end": 1887.01, "word": " I", "probability": 0.890625}, {"start": 1887.01, "end": 1887.21, "word": " press", "probability": 0.55419921875}, {"start": 1887.21, "end": 1887.47, "word": " the", "probability": 0.35498046875}, {"start": 1887.47, "end": 1888.01, "word": " undo", "probability": 0.8681640625}, {"start": 1888.01, "end": 1888.21, "word": " and", "probability": 0.37646484375}, {"start": 1888.21, "end": 1888.41, "word": " redo", "probability": 0.91748046875}, {"start": 1888.41, "end": 1888.41, "word": " button,", "probability": 0.74462890625}, {"start": 1888.47, "end": 1888.65, "word": " what", "probability": 0.5400390625}, {"start": 1888.65, "end": 1888.73, "word": " does", "probability": 0.365234375}, {"start": 1888.73, "end": 1888.73, "word": " it", "probability": 0.84130859375}, {"start": 1888.73, "end": 1888.89, "word": " do?", "probability": 0.9521484375}, {"start": 1889.39, "end": 1889.67, "word": " Okay?", "probability": 0.1046142578125}, {"start": 1890.37, "end": 1890.73, "word": " So", "probability": 0.7353515625}, {"start": 1890.73, "end": 1891.03, "word": " in", "probability": 0.6923828125}, {"start": 1891.03, "end": 1891.15, "word": " the", "probability": 0.87353515625}, {"start": 1891.15, "end": 1891.15, "word": " main", "probability": 0.62353515625}, {"start": 1891.15, "end": 1891.69, "word": " page,", "probability": 0.398193359375}, {"start": 1892.15, "end": 1892.29, "word": " I", "probability": 0.6923828125}, {"start": 1892.29, "end": 1892.57, "word": " have", "probability": 0.9267578125}, {"start": 1892.57, "end": 1893.41, "word": " action", "probability": 0.33642578125}, {"start": 1893.41, "end": 1893.67, "word": " for", "probability": 0.472412109375}, {"start": 1893.67, "end": 1893.79, "word": " the", "probability": 0.44677734375}, {"start": 1893.79, "end": 1894.13, "word": " two", "probability": 0.83154296875}, {"start": 1894.13, "end": 1894.21, "word": " buttons,", "probability": 0.88720703125}, {"start": 1894.57, "end": 1894.63, "word": " which", "probability": 0.787109375}, {"start": 1894.63, "end": 1895.01, "word": " is", "probability": 0.3173828125}, {"start": 1895.01, "end": 1895.75, "word": " to", "probability": 0.55078125}, {"start": 1895.75, "end": 1895.93, "word": " press", "probability": 0.71533203125}, {"start": 1895.93, "end": 1896.45, "word": " undo", "probability": 0.88232421875}, {"start": 1896.45, "end": 1896.95, "word": " or", "probability": 0.90625}, {"start": 1896.95, "end": 1898.21, "word": " redo.", "probability": 0.427734375}, {"start": 1898.79, "end": 1898.99, "word": " So", "probability": 0.66162109375}, {"start": 1898.99, "end": 1899.19, "word": " when", "probability": 0.849609375}, {"start": 1899.19, "end": 1899.29, "word": " I", "probability": 0.966796875}, {"start": 1899.29, "end": 1899.47, "word": " press", "probability": 0.720703125}, {"start": 1899.47, "end": 1899.99, "word": " undo,", "probability": 0.92041015625}, {"start": 1900.19, "end": 1900.55, "word": " only", "probability": 0.5185546875}, {"start": 1900.55, "end": 1901.07, "word": " what", "probability": 0.65625}, {"start": 1901.07, "end": 1901.19, "word": " does", "probability": 0.379638671875}, {"start": 1901.19, "end": 1901.23, "word": " it", "probability": 0.7392578125}, {"start": 1901.23, "end": 1901.47, "word": " do?", "probability": 0.873046875}, {"start": 1901.57, "end": 1901.89, "word": " I", "probability": 0.4951171875}, {"start": 1901.89, "end": 1902.01, "word": " go", "probability": 0.947265625}, {"start": 1902.01, "end": 1902.15, "word": " to", "probability": 0.96484375}, {"start": 1902.15, "end": 1902.23, "word": " the", "probability": 0.78076171875}, {"start": 1902.23, "end": 1902.55, "word": " manager", "probability": 0.9384765625}, {"start": 1902.55, "end": 1903.89, "word": " and", "probability": 0.81640625}, {"start": 1903.89, "end": 1904.25, "word": " do", "probability": 0.313232421875}, {"start": 1904.25, "end": 1904.65, "word": " what?", "probability": 0.8232421875}, {"start": 1905.67, "end": 1906.01, "word": " Undo.", "probability": 0.835693359375}, {"start": 1907.47, "end": 1907.95, "word": " And", "probability": 0.87255859375}, {"start": 1907.95, "end": 1908.09, "word": " when", "probability": 0.9482421875}, {"start": 1908.09, "end": 1908.15, "word": " I", "probability": 0.99072265625}, {"start": 1908.15, "end": 1908.33, "word": " do", "probability": 0.48974609375}, {"start": 1908.33, "end": 1908.63, "word": " redo,", "probability": 0.63037109375}, {"start": 1908.81, "end": 1908.95, "word": " I", "probability": 0.96484375}, {"start": 1908.95, "end": 1909.07, "word": " go", "probability": 0.9638671875}, {"start": 1909.07, "end": 1909.19, "word": " to", "probability": 0.966796875}, {"start": 1909.19, "end": 1909.31, "word": " the", "probability": 0.90625}, {"start": 1909.31, "end": 1909.61, "word": " manager", "probability": 0.94482421875}, {"start": 1909.61, "end": 1910.51, "word": " and", "probability": 0.927734375}, {"start": 1910.51, "end": 1910.93, "word": " do", "probability": 0.822265625}, {"start": 1910.93, "end": 1913.51, "word": " redo.", "probability": 0.49951171875}], "temperature": 1.0}, {"id": 75, "seek": 194216, "start": 1915.18, "end": 1942.16, "text": " And this is how we become what? We're done, let's run the application now. Now, any piece that I draw, what does it do now? It draws it and stores it where? In the array list. Because undo? Yes, it still has a problem. Because where is the problem? Is it the manager?", "tokens": [400, 341, 307, 577, 321, 1813, 437, 30, 492, 434, 1096, 11, 718, 311, 1190, 264, 3861, 586, 13, 823, 11, 604, 2522, 300, 286, 2642, 11, 437, 775, 309, 360, 586, 30, 467, 20045, 309, 293, 9512, 309, 689, 30, 682, 264, 10225, 1329, 13, 1436, 23779, 30, 1079, 11, 309, 920, 575, 257, 1154, 13, 1436, 689, 307, 264, 1154, 30, 1119, 309, 264, 6598, 30], "avg_logprob": -0.5294384334398352, "compression_ratio": 1.4972067039106145, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1915.18, "end": 1915.38, "word": " And", "probability": 0.1556396484375}, {"start": 1915.38, "end": 1915.5, "word": " this", "probability": 0.19677734375}, {"start": 1915.5, "end": 1915.52, "word": " is", "probability": 0.7626953125}, {"start": 1915.52, "end": 1915.52, "word": " how", "probability": 0.70751953125}, {"start": 1915.52, "end": 1915.64, "word": " we", "probability": 0.65234375}, {"start": 1915.64, "end": 1915.82, "word": " become", "probability": 0.093017578125}, {"start": 1915.82, "end": 1916.14, "word": " what?", "probability": 0.63037109375}, {"start": 1917.18, "end": 1917.4, "word": " We're", "probability": 0.3629150390625}, {"start": 1917.4, "end": 1917.64, "word": " done,", "probability": 0.8681640625}, {"start": 1917.86, "end": 1918.14, "word": " let's", "probability": 0.7125244140625}, {"start": 1918.14, "end": 1918.78, "word": " run", "probability": 0.336669921875}, {"start": 1918.78, "end": 1918.94, "word": " the", "probability": 0.8564453125}, {"start": 1918.94, "end": 1919.4, "word": " application", "probability": 0.53564453125}, {"start": 1919.4, "end": 1923.36, "word": " now.", "probability": 0.431640625}, {"start": 1925.18, "end": 1925.66, "word": " Now,", "probability": 0.41796875}, {"start": 1925.78, "end": 1926.62, "word": " any", "probability": 0.344482421875}, {"start": 1926.62, "end": 1926.9, "word": " piece", "probability": 0.6708984375}, {"start": 1926.9, "end": 1927.08, "word": " that", "probability": 0.289794921875}, {"start": 1927.08, "end": 1927.16, "word": " I", "probability": 0.7119140625}, {"start": 1927.16, "end": 1927.44, "word": " draw,", "probability": 0.6728515625}, {"start": 1927.74, "end": 1928.02, "word": " what", "probability": 0.5390625}, {"start": 1928.02, "end": 1928.02, "word": " does", "probability": 0.7705078125}, {"start": 1928.02, "end": 1928.46, "word": " it", "probability": 0.88232421875}, {"start": 1928.46, "end": 1928.74, "word": " do", "probability": 0.94775390625}, {"start": 1928.74, "end": 1928.78, "word": " now?", "probability": 0.428466796875}, {"start": 1928.8, "end": 1928.9, "word": " It", "probability": 0.42333984375}, {"start": 1928.9, "end": 1929.08, "word": " draws", "probability": 0.8623046875}, {"start": 1929.08, "end": 1929.26, "word": " it", "probability": 0.6630859375}, {"start": 1929.26, "end": 1929.3, "word": " and", "probability": 0.87548828125}, {"start": 1929.3, "end": 1929.64, "word": " stores", "probability": 0.64892578125}, {"start": 1929.64, "end": 1929.82, "word": " it", "probability": 0.93603515625}, {"start": 1929.82, "end": 1930.04, "word": " where?", "probability": 0.78125}, {"start": 1930.96, "end": 1931.44, "word": " In", "probability": 0.8505859375}, {"start": 1931.44, "end": 1931.56, "word": " the", "probability": 0.78125}, {"start": 1931.56, "end": 1931.7, "word": " array", "probability": 0.7021484375}, {"start": 1931.7, "end": 1932.1, "word": " list.", "probability": 0.5732421875}, {"start": 1932.38, "end": 1932.64, "word": " Because", "probability": 0.62255859375}, {"start": 1932.64, "end": 1933.04, "word": " undo?", "probability": 0.58203125}, {"start": 1935.06, "end": 1935.38, "word": " Yes,", "probability": 0.462890625}, {"start": 1935.44, "end": 1935.7, "word": " it", "probability": 0.5654296875}, {"start": 1935.7, "end": 1935.7, "word": " still", "probability": 0.89208984375}, {"start": 1935.7, "end": 1935.86, "word": " has", "probability": 0.9541015625}, {"start": 1935.86, "end": 1935.96, "word": " a", "probability": 0.9716796875}, {"start": 1935.96, "end": 1936.24, "word": " problem.", "probability": 0.845703125}, {"start": 1940.4, "end": 1940.88, "word": " Because", "probability": 0.57373046875}, {"start": 1940.88, "end": 1941.06, "word": " where", "probability": 0.80224609375}, {"start": 1941.06, "end": 1941.16, "word": " is", "probability": 0.78271484375}, {"start": 1941.16, "end": 1941.24, "word": " the", "probability": 0.92138671875}, {"start": 1941.24, "end": 1941.48, "word": " problem?", "probability": 0.857421875}, {"start": 1941.62, "end": 1941.76, "word": " Is", "probability": 0.2056884765625}, {"start": 1941.76, "end": 1941.8, "word": " it", "probability": 0.81982421875}, {"start": 1941.8, "end": 1941.9, "word": " the", "probability": 0.74462890625}, {"start": 1941.9, "end": 1942.16, "word": " manager?", "probability": 0.939453125}], "temperature": 1.0}, {"id": 76, "seek": 196617, "start": 1945.67, "end": 1966.17, "text": "أه أقولك لحظة Hydrogen manager طيب المفروض", "tokens": [10721, 3224, 5551, 39648, 4117, 5296, 5016, 19913, 3660, 24231, 7747, 6598, 23032, 1829, 3555, 9673, 5172, 32887, 11242], "avg_logprob": -0.25488281697034837, "compression_ratio": 0.8513513513513513, "no_speech_prob": 0.0, "words": [{"start": 1945.67, "end": 1945.99, "word": "أه", "probability": 0.5076904296875}, {"start": 1945.99, "end": 1946.59, "word": " أقولك", "probability": 0.9181315104166666}, {"start": 1946.59, "end": 1948.83, "word": " لحظة", "probability": 0.943603515625}, {"start": 1948.83, "end": 1949.41, "word": " Hydrogen", "probability": 0.3526611328125}, {"start": 1949.41, "end": 1949.95, "word": " manager", "probability": 0.6103515625}, {"start": 1949.95, "end": 1965.67, "word": " طيب", "probability": 0.943359375}, {"start": 1965.67, "end": 1966.17, "word": " المفروض", "probability": 0.9580078125}], "temperature": 1.0}, {"id": 77, "seek": 198994, "start": 1983.32, "end": 1989.94, "text": "طيب تعالوا نتبع الخطأ اللي صار لإن لو قلنا أنا عندي undo بدي أطبع رسالة، المفروض أنه ..", "tokens": [9566, 1829, 3555, 37279, 6027, 14407, 8717, 2655, 3555, 3615, 33962, 9566, 10721, 13672, 1829, 20328, 9640, 5296, 28814, 1863, 45164, 12174, 1211, 8315, 41850, 18871, 16254, 23779, 4724, 16254, 5551, 9566, 3555, 3615, 12602, 3794, 6027, 3660, 12399, 9673, 5172, 32887, 11242, 14739, 3224, 4386], "avg_logprob": -0.24783909954923264, "compression_ratio": 1.2905982905982907, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1983.32, "end": 1983.66, "word": "طيب", "probability": 0.6917317708333334}, {"start": 1983.66, "end": 1984.0, "word": " تعالوا", "probability": 0.8946940104166666}, {"start": 1984.0, "end": 1984.36, "word": " نتبع", "probability": 0.88037109375}, {"start": 1984.36, "end": 1984.74, "word": " الخطأ", "probability": 0.990234375}, {"start": 1984.74, "end": 1984.9, "word": " اللي", "probability": 0.931396484375}, {"start": 1984.9, "end": 1985.64, "word": " صار", "probability": 0.954833984375}, {"start": 1985.64, "end": 1986.32, "word": " لإن", "probability": 0.5252278645833334}, {"start": 1986.32, "end": 1986.42, "word": " لو", "probability": 0.8955078125}, {"start": 1986.42, "end": 1986.66, "word": " قلنا", "probability": 0.81103515625}, {"start": 1986.66, "end": 1986.82, "word": " أنا", "probability": 0.43896484375}, {"start": 1986.82, "end": 1987.1, "word": " عندي", "probability": 0.813232421875}, {"start": 1987.1, "end": 1987.5, "word": " undo", "probability": 0.9169921875}, {"start": 1987.5, "end": 1987.92, "word": " بدي", "probability": 0.5205078125}, {"start": 1987.92, "end": 1988.24, "word": " أطبع", "probability": 0.960205078125}, {"start": 1988.24, "end": 1988.78, "word": " رسالة،", "probability": 0.836669921875}, {"start": 1988.78, "end": 1989.18, "word": " المفروض", "probability": 0.9630126953125}, {"start": 1989.18, "end": 1989.54, "word": " أنه", "probability": 0.751220703125}, {"start": 1989.54, "end": 1989.94, "word": " ..", "probability": 0.8515625}], "temperature": 1.0}, {"id": 78, "seek": 203584, "start": 2007.16, "end": 2035.84, "text": "لأن هاي ال undo بنفذها طيب نرجع نتبع أيضا اللي هو ال undo هات نحطها جوا هنا نتأكد إيش آه يبقى مادخلش جوا إيش جوا ال F الساتن لأن إذا ال index طيب ليش آه هاي الغلط", "tokens": [1211, 33456, 8032, 47302, 2423, 23779, 44945, 5172, 8848, 11296, 23032, 1829, 3555, 8717, 47341, 3615, 8717, 2655, 3555, 3615, 36632, 11242, 995, 13672, 1829, 31439, 2423, 23779, 8032, 9307, 8717, 5016, 9566, 11296, 10874, 14407, 34105, 8717, 2655, 10721, 4117, 3215, 11933, 1829, 8592, 19753, 3224, 7251, 3555, 4587, 7578, 19446, 3215, 9778, 1211, 8592, 10874, 14407, 11933, 1829, 8592, 10874, 14407, 2423, 479, 21136, 9307, 1863, 5296, 33456, 11933, 15730, 2423, 8186, 23032, 1829, 3555, 32239, 8592, 19753, 3224, 8032, 47302, 6024, 118, 1211, 9566], "avg_logprob": -0.22585226866331967, "compression_ratio": 1.6606060606060606, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2007.16, "end": 2007.48, "word": "لأن", "probability": 0.386260986328125}, {"start": 2007.48, "end": 2007.64, "word": " هاي", "probability": 0.4906005859375}, {"start": 2007.64, "end": 2007.74, "word": " ال", "probability": 0.9453125}, {"start": 2007.74, "end": 2007.92, "word": " undo", "probability": 0.56298828125}, {"start": 2007.92, "end": 2008.66, "word": " بنفذها", "probability": 0.913818359375}, {"start": 2008.66, "end": 2009.22, "word": " طيب", "probability": 0.7435709635416666}, {"start": 2009.22, "end": 2010.16, "word": " نرجع", "probability": 0.88720703125}, {"start": 2010.16, "end": 2010.58, "word": " نتبع", "probability": 0.9732666015625}, {"start": 2010.58, "end": 2011.1, "word": " أيضا", "probability": 0.9318033854166666}, {"start": 2011.1, "end": 2012.66, "word": " اللي", "probability": 0.892578125}, {"start": 2012.66, "end": 2012.84, "word": " هو", "probability": 0.9853515625}, {"start": 2012.84, "end": 2012.96, "word": " ال", "probability": 0.9873046875}, {"start": 2012.96, "end": 2013.3, "word": " undo", "probability": 0.9541015625}, {"start": 2013.3, "end": 2013.72, "word": " هات", "probability": 0.761962890625}, {"start": 2013.72, "end": 2014.18, "word": " نحطها", "probability": 0.8563232421875}, {"start": 2014.18, "end": 2014.46, "word": " جوا", "probability": 0.8984375}, {"start": 2014.46, "end": 2014.74, "word": " هنا", "probability": 0.96533203125}, {"start": 2014.74, "end": 2016.64, "word": " نتأكد", "probability": 0.96201171875}, {"start": 2016.64, "end": 2017.0, "word": " إيش", "probability": 0.8141276041666666}, {"start": 2017.0, "end": 2026.88, "word": " آه", "probability": 0.56439208984375}, {"start": 2026.88, "end": 2027.14, "word": " يبقى", "probability": 0.9456787109375}, {"start": 2027.14, "end": 2027.64, "word": " مادخلش", "probability": 0.836376953125}, {"start": 2027.64, "end": 2027.86, "word": " جوا", "probability": 0.980224609375}, {"start": 2027.86, "end": 2028.2, "word": " إيش", "probability": 0.9783528645833334}, {"start": 2028.2, "end": 2029.22, "word": " جوا", "probability": 0.8818359375}, {"start": 2029.22, "end": 2029.42, "word": " ال", "probability": 0.83544921875}, {"start": 2029.42, "end": 2029.58, "word": " F", "probability": 0.572265625}, {"start": 2029.58, "end": 2030.04, "word": " الساتن", "probability": 0.6372884114583334}, {"start": 2030.04, "end": 2032.58, "word": " لأن", "probability": 0.5596923828125}, {"start": 2032.58, "end": 2032.74, "word": " إذا", "probability": 0.913818359375}, {"start": 2032.74, "end": 2032.86, "word": " ال", "probability": 0.98828125}, {"start": 2032.86, "end": 2033.24, "word": " index", "probability": 0.9443359375}, {"start": 2033.24, "end": 2034.34, "word": " طيب", "probability": 0.91845703125}, {"start": 2034.34, "end": 2034.74, "word": " ليش", "probability": 0.852294921875}, {"start": 2034.74, "end": 2035.28, "word": " آه", "probability": 0.626708984375}, {"start": 2035.28, "end": 2035.46, "word": " هاي", "probability": 0.732666015625}, {"start": 2035.46, "end": 2035.84, "word": " الغلط", "probability": 0.973388671875}], "temperature": 1.0}, {"id": 79, "seek": 205435, "start": 2036.51, "end": 2054.35, "text": "In fact, every time I add a command, I add who? The index. The index should always point to whom? To the last command available. Okay? This is the existing error. Now, the word print does not matter anymore. Let's run it.", "tokens": [4575, 1186, 11, 633, 565, 286, 909, 257, 5622, 11, 286, 909, 567, 30, 440, 8186, 13, 440, 8186, 820, 1009, 935, 281, 7101, 30, 1407, 264, 1036, 5622, 2435, 13, 1033, 30, 639, 307, 264, 6741, 6713, 13, 823, 11, 264, 1349, 4482, 775, 406, 1871, 3602, 13, 961, 311, 1190, 309, 13], "avg_logprob": -0.6642045281150124, "compression_ratio": 1.3987341772151898, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 2036.51, "end": 2036.71, "word": "In", "probability": 0.0330810546875}, {"start": 2036.71, "end": 2036.87, "word": " fact,", "probability": 0.58251953125}, {"start": 2037.05, "end": 2037.77, "word": " every", "probability": 0.278564453125}, {"start": 2037.77, "end": 2037.97, "word": " time", "probability": 0.810546875}, {"start": 2037.97, "end": 2038.03, "word": " I", "probability": 0.7265625}, {"start": 2038.03, "end": 2038.17, "word": " add", "probability": 0.80908203125}, {"start": 2038.17, "end": 2038.33, "word": " a", "probability": 0.82763671875}, {"start": 2038.33, "end": 2038.71, "word": " command,", "probability": 0.72021484375}, {"start": 2039.71, "end": 2039.95, "word": " I", "probability": 0.49951171875}, {"start": 2039.95, "end": 2040.15, "word": " add", "probability": 0.607421875}, {"start": 2040.15, "end": 2040.39, "word": " who?", "probability": 0.18701171875}, {"start": 2040.69, "end": 2040.97, "word": " The", "probability": 0.59521484375}, {"start": 2040.97, "end": 2041.33, "word": " index.", "probability": 0.8916015625}, {"start": 2041.43, "end": 2041.59, "word": " The", "probability": 0.77587890625}, {"start": 2041.59, "end": 2041.87, "word": " index", "probability": 0.86376953125}, {"start": 2041.87, "end": 2042.33, "word": " should", "probability": 0.5341796875}, {"start": 2042.33, "end": 2042.63, "word": " always", "probability": 0.681640625}, {"start": 2042.63, "end": 2042.99, "word": " point", "probability": 0.15869140625}, {"start": 2042.99, "end": 2043.45, "word": " to", "probability": 0.72607421875}, {"start": 2043.45, "end": 2043.71, "word": " whom?", "probability": 0.3583984375}, {"start": 2044.19, "end": 2044.29, "word": " To", "probability": 0.52392578125}, {"start": 2044.29, "end": 2044.61, "word": " the", "probability": 0.904296875}, {"start": 2044.61, "end": 2044.61, "word": " last", "probability": 0.80517578125}, {"start": 2044.61, "end": 2044.93, "word": " command", "probability": 0.259033203125}, {"start": 2044.93, "end": 2045.97, "word": " available.", "probability": 0.1627197265625}, {"start": 2046.43, "end": 2046.67, "word": " Okay?", "probability": 0.2467041015625}, {"start": 2046.77, "end": 2046.91, "word": " This", "probability": 0.457763671875}, {"start": 2046.91, "end": 2046.99, "word": " is", "probability": 0.92578125}, {"start": 2046.99, "end": 2048.23, "word": " the", "probability": 0.87939453125}, {"start": 2048.23, "end": 2048.29, "word": " existing", "probability": 0.62744140625}, {"start": 2048.29, "end": 2048.29, "word": " error.", "probability": 0.487548828125}, {"start": 2049.89, "end": 2050.29, "word": " Now,", "probability": 0.82861328125}, {"start": 2050.61, "end": 2050.81, "word": " the", "probability": 0.8154296875}, {"start": 2050.81, "end": 2050.81, "word": " word", "probability": 0.20068359375}, {"start": 2050.81, "end": 2051.13, "word": " print", "probability": 0.30224609375}, {"start": 2051.13, "end": 2051.35, "word": " does", "probability": 0.2763671875}, {"start": 2051.35, "end": 2051.35, "word": " not", "probability": 0.93212890625}, {"start": 2051.35, "end": 2051.75, "word": " matter", "probability": 0.6337890625}, {"start": 2051.75, "end": 2052.07, "word": " anymore.", "probability": 0.7021484375}, {"start": 2052.33, "end": 2052.67, "word": " Let's", "probability": 0.66943359375}, {"start": 2052.67, "end": 2053.95, "word": " run", "probability": 0.446044921875}, {"start": 2053.95, "end": 2054.35, "word": " it.", "probability": 0.385986328125}], "temperature": 1.0}, {"id": 80, "seek": 208819, "start": 2060.92, "end": 2088.2, "text": "undo then reado then draw the lines ok guys? let's drop the UML class diagram of the command on the parts of the program that we created actually the command this interface or the abstract class represents the draw command", "tokens": [409, 2595, 550, 1401, 78, 550, 2642, 264, 3876, 3133, 1074, 30, 718, 311, 3270, 264, 624, 12683, 1508, 10686, 295, 264, 5622, 322, 264, 3166, 295, 264, 1461, 300, 321, 2942, 767, 264, 5622, 341, 9226, 420, 264, 12649, 1508, 8855, 264, 2642, 5622], "avg_logprob": -0.7805706366248752, "compression_ratio": 1.574468085106383, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2060.92, "end": 2061.6, "word": "undo", "probability": 0.436492919921875}, {"start": 2061.6, "end": 2062.1, "word": " then", "probability": 0.213134765625}, {"start": 2062.1, "end": 2064.98, "word": " reado", "probability": 0.2921142578125}, {"start": 2064.98, "end": 2065.72, "word": " then", "probability": 0.6611328125}, {"start": 2065.72, "end": 2067.68, "word": " draw", "probability": 0.267822265625}, {"start": 2067.68, "end": 2068.0, "word": " the", "probability": 0.16162109375}, {"start": 2068.0, "end": 2068.38, "word": " lines", "probability": 0.744140625}, {"start": 2068.38, "end": 2071.72, "word": " ok", "probability": 0.08319091796875}, {"start": 2071.72, "end": 2072.34, "word": " guys?", "probability": 0.6796875}, {"start": 2072.98, "end": 2073.26, "word": " let's", "probability": 0.597412109375}, {"start": 2073.26, "end": 2075.6, "word": " drop", "probability": 0.2366943359375}, {"start": 2075.6, "end": 2078.86, "word": " the", "probability": 0.64404296875}, {"start": 2078.86, "end": 2079.2, "word": " UML", "probability": 0.5672607421875}, {"start": 2079.2, "end": 2079.58, "word": " class", "probability": 0.75390625}, {"start": 2079.58, "end": 2079.88, "word": " diagram", "probability": 0.94482421875}, {"start": 2079.88, "end": 2080.08, "word": " of", "probability": 0.345703125}, {"start": 2080.08, "end": 2080.2, "word": " the", "probability": 0.360107421875}, {"start": 2080.2, "end": 2080.54, "word": " command", "probability": 0.8515625}, {"start": 2080.54, "end": 2080.82, "word": " on", "probability": 0.70703125}, {"start": 2080.82, "end": 2081.12, "word": " the", "probability": 0.434814453125}, {"start": 2081.12, "end": 2081.36, "word": " parts", "probability": 0.52783203125}, {"start": 2081.36, "end": 2081.52, "word": " of", "probability": 0.95947265625}, {"start": 2081.52, "end": 2081.56, "word": " the", "probability": 0.8251953125}, {"start": 2081.56, "end": 2081.82, "word": " program", "probability": 0.6796875}, {"start": 2081.82, "end": 2081.98, "word": " that", "probability": 0.51513671875}, {"start": 2081.98, "end": 2082.12, "word": " we", "probability": 0.91748046875}, {"start": 2082.12, "end": 2082.48, "word": " created", "probability": 0.1717529296875}, {"start": 2082.48, "end": 2083.76, "word": " actually", "probability": 0.46826171875}, {"start": 2083.76, "end": 2084.2, "word": " the", "probability": 0.343505859375}, {"start": 2084.2, "end": 2084.62, "word": " command", "probability": 0.8193359375}, {"start": 2084.62, "end": 2084.9, "word": " this", "probability": 0.1829833984375}, {"start": 2084.9, "end": 2085.52, "word": " interface", "probability": 0.83447265625}, {"start": 2085.52, "end": 2085.7, "word": " or", "probability": 0.7490234375}, {"start": 2085.7, "end": 2085.8, "word": " the", "probability": 0.302001953125}, {"start": 2085.8, "end": 2086.02, "word": " abstract", "probability": 0.87158203125}, {"start": 2086.02, "end": 2086.48, "word": " class", "probability": 0.96533203125}, {"start": 2086.48, "end": 2086.8, "word": " represents", "probability": 0.44921875}, {"start": 2086.8, "end": 2087.58, "word": " the", "probability": 0.2900390625}, {"start": 2087.58, "end": 2087.98, "word": " draw", "probability": 0.74365234375}, {"start": 2087.98, "end": 2088.2, "word": " command", "probability": 0.90869140625}], "temperature": 1.0}, {"id": 81, "seek": 211126, "start": 2089.16, "end": 2111.26, "text": "The concrete command represents the line command. The state that exists in the concrete command represents all the necessary data for the command, which is the starting point, the end point, the graphics. Okay? Here we did execute and unexecute. The receiver, who represents it? Which is the actual way of execution. Who executes it? Who is it? The graphics are executed.", "tokens": [2278, 9859, 5622, 8855, 264, 1622, 5622, 13, 440, 1785, 300, 8198, 294, 264, 9859, 5622, 8855, 439, 264, 4818, 1412, 337, 264, 5622, 11, 597, 307, 264, 2891, 935, 11, 264, 917, 935, 11, 264, 11837, 13, 1033, 30, 1692, 321, 630, 14483, 293, 11572, 3045, 1169, 13, 440, 20086, 11, 567, 8855, 309, 30, 3013, 307, 264, 3539, 636, 295, 15058, 13, 2102, 4454, 1819, 309, 30, 2102, 307, 309, 30, 440, 11837, 366, 17577, 13], "avg_logprob": -0.5130537733247008, "compression_ratio": 1.883248730964467, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2089.16, "end": 2089.4, "word": "The", "probability": 0.33837890625}, {"start": 2089.4, "end": 2089.76, "word": " concrete", "probability": 0.8466796875}, {"start": 2089.76, "end": 2090.22, "word": " command", "probability": 0.89453125}, {"start": 2090.22, "end": 2090.56, "word": " represents", "probability": 0.341552734375}, {"start": 2090.56, "end": 2090.74, "word": " the", "probability": 0.75732421875}, {"start": 2090.74, "end": 2090.94, "word": " line", "probability": 0.8662109375}, {"start": 2090.94, "end": 2091.4, "word": " command.", "probability": 0.90625}, {"start": 2092.12, "end": 2092.2, "word": " The", "probability": 0.308837890625}, {"start": 2092.2, "end": 2092.6, "word": " state", "probability": 0.92724609375}, {"start": 2092.6, "end": 2092.86, "word": " that", "probability": 0.1585693359375}, {"start": 2092.86, "end": 2093.14, "word": " exists", "probability": 0.43896484375}, {"start": 2093.14, "end": 2093.28, "word": " in", "probability": 0.81787109375}, {"start": 2093.28, "end": 2093.4, "word": " the", "probability": 0.6953125}, {"start": 2093.4, "end": 2093.72, "word": " concrete", "probability": 0.86572265625}, {"start": 2093.72, "end": 2094.04, "word": " command", "probability": 0.828125}, {"start": 2094.04, "end": 2094.4, "word": " represents", "probability": 0.79345703125}, {"start": 2094.4, "end": 2094.7, "word": " all", "probability": 0.90380859375}, {"start": 2094.7, "end": 2094.82, "word": " the", "probability": 0.382568359375}, {"start": 2094.82, "end": 2095.58, "word": " necessary", "probability": 0.65625}, {"start": 2095.58, "end": 2095.58, "word": " data", "probability": 0.83984375}, {"start": 2095.58, "end": 2097.52, "word": " for", "probability": 0.490234375}, {"start": 2097.52, "end": 2097.74, "word": " the", "probability": 0.7021484375}, {"start": 2097.74, "end": 2097.94, "word": " command,", "probability": 0.68408203125}, {"start": 2098.18, "end": 2098.52, "word": " which", "probability": 0.7294921875}, {"start": 2098.52, "end": 2098.66, "word": " is", "probability": 0.87451171875}, {"start": 2098.66, "end": 2099.06, "word": " the", "probability": 0.89892578125}, {"start": 2099.06, "end": 2099.16, "word": " starting", "probability": 0.64794921875}, {"start": 2099.16, "end": 2099.4, "word": " point,", "probability": 0.95654296875}, {"start": 2099.58, "end": 2099.6, "word": " the", "probability": 0.62451171875}, {"start": 2099.6, "end": 2099.78, "word": " end", "probability": 0.759765625}, {"start": 2099.78, "end": 2099.96, "word": " point,", "probability": 0.736328125}, {"start": 2100.04, "end": 2100.12, "word": " the", "probability": 0.59228515625}, {"start": 2100.12, "end": 2100.52, "word": " graphics.", "probability": 0.7392578125}, {"start": 2101.1, "end": 2101.24, "word": " Okay?", "probability": 0.1724853515625}, {"start": 2102.24, "end": 2102.5, "word": " Here", "probability": 0.7568359375}, {"start": 2102.5, "end": 2102.72, "word": " we", "probability": 0.71875}, {"start": 2102.72, "end": 2102.9, "word": " did", "probability": 0.44921875}, {"start": 2102.9, "end": 2103.38, "word": " execute", "probability": 0.84423828125}, {"start": 2103.38, "end": 2103.64, "word": " and", "probability": 0.93798828125}, {"start": 2103.64, "end": 2104.38, "word": " unexecute.", "probability": 0.8369140625}, {"start": 2105.1, "end": 2105.26, "word": " The", "probability": 0.457763671875}, {"start": 2105.26, "end": 2105.76, "word": " receiver,", "probability": 0.8876953125}, {"start": 2105.92, "end": 2106.08, "word": " who", "probability": 0.60546875}, {"start": 2106.08, "end": 2106.38, "word": " represents", "probability": 0.56982421875}, {"start": 2106.38, "end": 2106.62, "word": " it?", "probability": 0.469482421875}, {"start": 2106.68, "end": 2106.76, "word": " Which", "probability": 0.4306640625}, {"start": 2106.76, "end": 2106.9, "word": " is", "probability": 0.92138671875}, {"start": 2106.9, "end": 2107.02, "word": " the", "probability": 0.86279296875}, {"start": 2107.02, "end": 2107.1, "word": " actual", "probability": 0.434814453125}, {"start": 2107.1, "end": 2107.12, "word": " way", "probability": 0.2802734375}, {"start": 2107.12, "end": 2107.34, "word": " of", "probability": 0.9404296875}, {"start": 2107.34, "end": 2107.74, "word": " execution.", "probability": 0.7861328125}, {"start": 2108.26, "end": 2108.38, "word": " Who", "probability": 0.84326171875}, {"start": 2108.38, "end": 2108.84, "word": " executes", "probability": 0.60357666015625}, {"start": 2108.84, "end": 2108.94, "word": " it?", "probability": 0.5400390625}, {"start": 2109.02, "end": 2109.12, "word": " Who", "probability": 0.397216796875}, {"start": 2109.12, "end": 2109.18, "word": " is", "probability": 0.57763671875}, {"start": 2109.18, "end": 2109.5, "word": " it?", "probability": 0.34375}, {"start": 2109.58, "end": 2109.84, "word": " The", "probability": 0.256103515625}, {"start": 2109.84, "end": 2110.52, "word": " graphics", "probability": 0.86865234375}, {"start": 2110.52, "end": 2110.82, "word": " are", "probability": 0.2158203125}, {"start": 2110.82, "end": 2111.26, "word": " executed.", "probability": 0.362548828125}], "temperature": 1.0}, {"id": 82, "seek": 213152, "start": 2112.96, "end": 2131.52, "text": "In my example, I went to the graphics and told it to draw a line, which is this receiver. Because the invoker, who represents him? Who says what in our example? The drawing manager, who actually takes the commands and stores them in his list.", "tokens": [4575, 452, 1365, 11, 286, 1437, 281, 264, 11837, 293, 1907, 309, 281, 2642, 257, 1622, 11, 597, 307, 341, 20086, 13, 1436, 264, 1048, 16722, 11, 567, 8855, 796, 30, 2102, 1619, 437, 294, 527, 1365, 30, 440, 6316, 6598, 11, 567, 767, 2516, 264, 16901, 293, 9512, 552, 294, 702, 1329, 13], "avg_logprob": -0.5187500108372082, "compression_ratio": 1.475609756097561, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 2112.96, "end": 2113.48, "word": "In", "probability": 0.11871337890625}, {"start": 2113.48, "end": 2114.0, "word": " my", "probability": 0.8916015625}, {"start": 2114.0, "end": 2114.3, "word": " example,", "probability": 0.88427734375}, {"start": 2114.42, "end": 2114.92, "word": " I", "probability": 0.71435546875}, {"start": 2114.92, "end": 2115.04, "word": " went", "probability": 0.51708984375}, {"start": 2115.04, "end": 2115.24, "word": " to", "probability": 0.9091796875}, {"start": 2115.24, "end": 2115.32, "word": " the", "probability": 0.39111328125}, {"start": 2115.32, "end": 2115.66, "word": " graphics", "probability": 0.36083984375}, {"start": 2115.66, "end": 2115.76, "word": " and", "probability": 0.55517578125}, {"start": 2115.76, "end": 2115.92, "word": " told", "probability": 0.349609375}, {"start": 2115.92, "end": 2116.06, "word": " it", "probability": 0.302734375}, {"start": 2116.06, "end": 2116.16, "word": " to", "probability": 0.445556640625}, {"start": 2116.16, "end": 2116.22, "word": " draw", "probability": 0.59716796875}, {"start": 2116.22, "end": 2116.38, "word": " a", "probability": 0.4814453125}, {"start": 2116.38, "end": 2116.54, "word": " line,", "probability": 0.9287109375}, {"start": 2117.38, "end": 2118.22, "word": " which", "probability": 0.39599609375}, {"start": 2118.22, "end": 2118.38, "word": " is", "probability": 0.84619140625}, {"start": 2118.38, "end": 2118.56, "word": " this", "probability": 0.461669921875}, {"start": 2118.56, "end": 2119.02, "word": " receiver.", "probability": 0.90087890625}, {"start": 2119.6, "end": 2120.12, "word": " Because", "probability": 0.537109375}, {"start": 2120.12, "end": 2120.24, "word": " the", "probability": 0.52392578125}, {"start": 2120.24, "end": 2120.76, "word": " invoker,", "probability": 0.92431640625}, {"start": 2120.92, "end": 2121.0, "word": " who", "probability": 0.70263671875}, {"start": 2121.0, "end": 2121.36, "word": " represents", "probability": 0.296142578125}, {"start": 2121.36, "end": 2121.68, "word": " him?", "probability": 0.646484375}, {"start": 2122.94, "end": 2123.14, "word": " Who", "probability": 0.5966796875}, {"start": 2123.14, "end": 2123.32, "word": " says", "probability": 0.140869140625}, {"start": 2123.32, "end": 2123.52, "word": " what", "probability": 0.7578125}, {"start": 2123.52, "end": 2123.98, "word": " in", "probability": 0.407958984375}, {"start": 2123.98, "end": 2124.42, "word": " our", "probability": 0.8671875}, {"start": 2124.42, "end": 2124.42, "word": " example?", "probability": 0.97314453125}, {"start": 2125.32, "end": 2125.52, "word": " The", "probability": 0.8291015625}, {"start": 2125.52, "end": 2126.0, "word": " drawing", "probability": 0.79150390625}, {"start": 2126.0, "end": 2126.8, "word": " manager,", "probability": 0.953125}, {"start": 2127.36, "end": 2127.54, "word": " who", "probability": 0.7138671875}, {"start": 2127.54, "end": 2127.94, "word": " actually", "probability": 0.64892578125}, {"start": 2127.94, "end": 2128.72, "word": " takes", "probability": 0.78125}, {"start": 2128.72, "end": 2128.92, "word": " the", "probability": 0.48974609375}, {"start": 2128.92, "end": 2129.28, "word": " commands", "probability": 0.93408203125}, {"start": 2129.28, "end": 2129.44, "word": " and", "probability": 0.92578125}, {"start": 2129.44, "end": 2129.74, "word": " stores", "probability": 0.83544921875}, {"start": 2129.74, "end": 2129.94, "word": " them", "probability": 0.89599609375}, {"start": 2129.94, "end": 2130.16, "word": " in", "probability": 0.7451171875}, {"start": 2130.16, "end": 2130.98, "word": " his", "probability": 0.63525390625}, {"start": 2130.98, "end": 2131.52, "word": " list.", "probability": 0.892578125}], "temperature": 1.0}, {"id": 83, "seek": 215958, "start": 2132.32, "end": 2159.58, "text": "and does undo, redo, execute and unexecute without knowing anything about the details of the execution Notice that the invoker does not know about the details of the receiver and how it is executed Okay guys? Now the last point that I want to explain is the process of undo and redo Because here it tells me in the slide that the process of undo and redo is usually executed in programs in two ways", "tokens": [474, 775, 23779, 11, 29956, 11, 14483, 293, 11572, 3045, 1169, 1553, 5276, 1340, 466, 264, 4365, 295, 264, 15058, 13428, 300, 264, 1048, 16722, 775, 406, 458, 466, 264, 4365, 295, 264, 20086, 293, 577, 309, 307, 17577, 1033, 1074, 30, 823, 264, 1036, 935, 300, 286, 528, 281, 2903, 307, 264, 1399, 295, 23779, 293, 29956, 1436, 510, 309, 5112, 385, 294, 264, 4137, 300, 264, 1399, 295, 23779, 293, 29956, 307, 2673, 17577, 294, 4268, 294, 732, 2098], "avg_logprob": -0.4066310870211299, "compression_ratio": 1.9043062200956937, "no_speech_prob": 3.039836883544922e-06, "words": [{"start": 2132.32, "end": 2132.56, "word": "and", "probability": 0.393310546875}, {"start": 2132.56, "end": 2132.82, "word": " does", "probability": 0.1932373046875}, {"start": 2132.82, "end": 2133.22, "word": " undo,", "probability": 0.89208984375}, {"start": 2133.4, "end": 2133.68, "word": " redo,", "probability": 0.9130859375}, {"start": 2133.84, "end": 2134.24, "word": " execute", "probability": 0.86865234375}, {"start": 2134.24, "end": 2134.38, "word": " and", "probability": 0.66357421875}, {"start": 2134.38, "end": 2134.98, "word": " unexecute", "probability": 0.74267578125}, {"start": 2134.98, "end": 2135.18, "word": " without", "probability": 0.81591796875}, {"start": 2135.18, "end": 2135.6, "word": " knowing", "probability": 0.6865234375}, {"start": 2135.6, "end": 2135.98, "word": " anything", "probability": 0.52294921875}, {"start": 2135.98, "end": 2136.24, "word": " about", "probability": 0.8662109375}, {"start": 2136.24, "end": 2136.3, "word": " the", "probability": 0.58642578125}, {"start": 2136.3, "end": 2136.62, "word": " details", "probability": 0.634765625}, {"start": 2136.62, "end": 2137.5, "word": " of", "probability": 0.86474609375}, {"start": 2137.5, "end": 2137.54, "word": " the", "probability": 0.37451171875}, {"start": 2137.54, "end": 2137.92, "word": " execution", "probability": 0.91064453125}, {"start": 2137.92, "end": 2138.32, "word": " Notice", "probability": 0.356689453125}, {"start": 2138.32, "end": 2138.56, "word": " that", "probability": 0.8818359375}, {"start": 2138.56, "end": 2138.64, "word": " the", "probability": 0.8095703125}, {"start": 2138.64, "end": 2139.04, "word": " invoker", "probability": 0.898193359375}, {"start": 2139.04, "end": 2139.18, "word": " does", "probability": 0.53076171875}, {"start": 2139.18, "end": 2139.18, "word": " not", "probability": 0.91943359375}, {"start": 2139.18, "end": 2139.36, "word": " know", "probability": 0.888671875}, {"start": 2139.36, "end": 2139.56, "word": " about", "probability": 0.305908203125}, {"start": 2139.56, "end": 2139.64, "word": " the", "probability": 0.884765625}, {"start": 2139.64, "end": 2139.88, "word": " details", "probability": 0.72265625}, {"start": 2139.88, "end": 2140.3, "word": " of", "probability": 0.951171875}, {"start": 2140.3, "end": 2140.76, "word": " the", "probability": 0.87060546875}, {"start": 2140.76, "end": 2141.12, "word": " receiver", "probability": 0.873046875}, {"start": 2141.12, "end": 2141.34, "word": " and", "probability": 0.73388671875}, {"start": 2141.34, "end": 2141.84, "word": " how", "probability": 0.90869140625}, {"start": 2141.84, "end": 2142.22, "word": " it", "probability": 0.37744140625}, {"start": 2142.22, "end": 2142.88, "word": " is", "probability": 0.626953125}, {"start": 2142.88, "end": 2143.24, "word": " executed", "probability": 0.69482421875}, {"start": 2143.24, "end": 2144.62, "word": " Okay", "probability": 0.057586669921875}, {"start": 2144.62, "end": 2145.1, "word": " guys?", "probability": 0.51025390625}, {"start": 2148.8, "end": 2149.32, "word": " Now", "probability": 0.7861328125}, {"start": 2149.32, "end": 2149.8, "word": " the", "probability": 0.5703125}, {"start": 2149.8, "end": 2149.94, "word": " last", "probability": 0.79052734375}, {"start": 2149.94, "end": 2150.4, "word": " point", "probability": 0.9541015625}, {"start": 2150.4, "end": 2150.56, "word": " that", "probability": 0.369873046875}, {"start": 2150.56, "end": 2150.68, "word": " I", "probability": 0.98388671875}, {"start": 2150.68, "end": 2150.72, "word": " want", "probability": 0.66259765625}, {"start": 2150.72, "end": 2150.76, "word": " to", "probability": 0.96826171875}, {"start": 2150.76, "end": 2151.02, "word": " explain", "probability": 0.8916015625}, {"start": 2151.02, "end": 2151.48, "word": " is", "probability": 0.765625}, {"start": 2151.48, "end": 2151.5, "word": " the", "probability": 0.71484375}, {"start": 2151.5, "end": 2151.72, "word": " process", "probability": 0.72802734375}, {"start": 2151.72, "end": 2151.84, "word": " of", "probability": 0.966796875}, {"start": 2151.84, "end": 2152.1, "word": " undo", "probability": 0.93603515625}, {"start": 2152.1, "end": 2152.26, "word": " and", "probability": 0.62451171875}, {"start": 2152.26, "end": 2152.5, "word": " redo", "probability": 0.96044921875}, {"start": 2152.5, "end": 2153.32, "word": " Because", "probability": 0.474853515625}, {"start": 2153.32, "end": 2153.48, "word": " here", "probability": 0.50048828125}, {"start": 2153.48, "end": 2153.56, "word": " it", "probability": 0.266357421875}, {"start": 2153.56, "end": 2153.78, "word": " tells", "probability": 0.6806640625}, {"start": 2153.78, "end": 2153.94, "word": " me", "probability": 0.845703125}, {"start": 2153.94, "end": 2154.0, "word": " in", "probability": 0.77197265625}, {"start": 2154.0, "end": 2154.6, "word": " the", "probability": 0.88671875}, {"start": 2154.6, "end": 2154.98, "word": " slide", "probability": 0.92333984375}, {"start": 2154.98, "end": 2155.5, "word": " that", "probability": 0.209716796875}, {"start": 2155.5, "end": 2155.56, "word": " the", "probability": 0.62353515625}, {"start": 2155.56, "end": 2155.74, "word": " process", "probability": 0.83544921875}, {"start": 2155.74, "end": 2155.9, "word": " of", "probability": 0.96484375}, {"start": 2155.9, "end": 2156.14, "word": " undo", "probability": 0.9521484375}, {"start": 2156.14, "end": 2156.3, "word": " and", "probability": 0.91943359375}, {"start": 2156.3, "end": 2156.56, "word": " redo", "probability": 0.9150390625}, {"start": 2156.56, "end": 2156.86, "word": " is", "probability": 0.469482421875}, {"start": 2156.86, "end": 2157.34, "word": " usually", "probability": 0.857421875}, {"start": 2157.34, "end": 2158.1, "word": " executed", "probability": 0.486083984375}, {"start": 2158.1, "end": 2158.78, "word": " in", "probability": 0.87548828125}, {"start": 2158.78, "end": 2159.16, "word": " programs", "probability": 0.7685546875}, {"start": 2159.16, "end": 2159.28, "word": " in", "probability": 0.81005859375}, {"start": 2159.28, "end": 2159.34, "word": " two", "probability": 0.91357421875}, {"start": 2159.34, "end": 2159.58, "word": " ways", "probability": 0.8876953125}], "temperature": 1.0}, {"id": 84, "seek": 218688, "start": 2160.76, "end": 2186.88, "text": "and usually they use the command pattern that we saw to execute it but we have a problem with it which is how to avoid executing the command there are two ways, the way that we followed which is the second point which is that you determine which algorithm is necessary to execute the command and which is the inverse algorithm which is the inverse algorithm which is its opposite as I drew a line and drew another line on it but in white", "tokens": [474, 2673, 436, 764, 264, 5622, 5102, 300, 321, 1866, 281, 14483, 309, 457, 321, 362, 257, 1154, 365, 309, 597, 307, 577, 281, 5042, 32368, 264, 5622, 456, 366, 732, 2098, 11, 264, 636, 300, 321, 6263, 597, 307, 264, 1150, 935, 597, 307, 300, 291, 6997, 597, 9284, 307, 4818, 281, 14483, 264, 5622, 293, 597, 307, 264, 17340, 9284, 597, 307, 264, 17340, 9284, 597, 307, 1080, 6182, 382, 286, 12804, 257, 1622, 293, 12804, 1071, 1622, 322, 309, 457, 294, 2418], "avg_logprob": -0.4760174539893173, "compression_ratio": 2.080952380952381, "no_speech_prob": 3.874301910400391e-06, "words": [{"start": 2160.76, "end": 2160.98, "word": "and", "probability": 0.287353515625}, {"start": 2160.98, "end": 2161.28, "word": " usually", "probability": 0.39990234375}, {"start": 2161.28, "end": 2161.42, "word": " they", "probability": 0.65380859375}, {"start": 2161.42, "end": 2161.76, "word": " use", "probability": 0.83642578125}, {"start": 2161.76, "end": 2161.88, "word": " the", "probability": 0.673828125}, {"start": 2161.88, "end": 2162.22, "word": " command", "probability": 0.64453125}, {"start": 2162.22, "end": 2162.56, "word": " pattern", "probability": 0.83349609375}, {"start": 2162.56, "end": 2162.64, "word": " that", "probability": 0.326171875}, {"start": 2162.64, "end": 2162.68, "word": " we", "probability": 0.88134765625}, {"start": 2162.68, "end": 2162.84, "word": " saw", "probability": 0.4921875}, {"start": 2162.84, "end": 2163.12, "word": " to", "probability": 0.46142578125}, {"start": 2163.12, "end": 2163.44, "word": " execute", "probability": 0.411865234375}, {"start": 2163.44, "end": 2163.64, "word": " it", "probability": 0.8740234375}, {"start": 2163.64, "end": 2164.08, "word": " but", "probability": 0.438720703125}, {"start": 2164.08, "end": 2164.38, "word": " we", "probability": 0.537109375}, {"start": 2164.38, "end": 2164.64, "word": " have", "probability": 0.87548828125}, {"start": 2164.64, "end": 2164.96, "word": " a", "probability": 0.837890625}, {"start": 2164.96, "end": 2165.24, "word": " problem", "probability": 0.72265625}, {"start": 2165.24, "end": 2165.6, "word": " with", "probability": 0.51123046875}, {"start": 2165.6, "end": 2166.26, "word": " it", "probability": 0.63525390625}, {"start": 2166.26, "end": 2166.68, "word": " which", "probability": 0.37255859375}, {"start": 2166.68, "end": 2166.84, "word": " is", "probability": 0.935546875}, {"start": 2166.84, "end": 2167.04, "word": " how", "probability": 0.80029296875}, {"start": 2167.04, "end": 2167.48, "word": " to", "probability": 0.58837890625}, {"start": 2167.48, "end": 2167.92, "word": " avoid", "probability": 0.294189453125}, {"start": 2167.92, "end": 2168.38, "word": " executing", "probability": 0.3544921875}, {"start": 2168.38, "end": 2168.54, "word": " the", "probability": 0.5576171875}, {"start": 2168.54, "end": 2168.66, "word": " command", "probability": 0.6943359375}, {"start": 2168.66, "end": 2169.7, "word": " there", "probability": 0.3095703125}, {"start": 2169.7, "end": 2169.92, "word": " are", "probability": 0.81591796875}, {"start": 2169.92, "end": 2170.36, "word": " two", "probability": 0.74267578125}, {"start": 2170.36, "end": 2170.36, "word": " ways,", "probability": 0.78955078125}, {"start": 2170.44, "end": 2170.62, "word": " the", "probability": 0.76416015625}, {"start": 2170.62, "end": 2170.88, "word": " way", "probability": 0.728515625}, {"start": 2170.88, "end": 2171.0, "word": " that", "probability": 0.65673828125}, {"start": 2171.0, "end": 2171.2, "word": " we", "probability": 0.9384765625}, {"start": 2171.2, "end": 2171.6, "word": " followed", "probability": 0.5556640625}, {"start": 2171.6, "end": 2172.08, "word": " which", "probability": 0.401611328125}, {"start": 2172.08, "end": 2172.22, "word": " is", "probability": 0.92529296875}, {"start": 2172.22, "end": 2172.6, "word": " the", "probability": 0.6669921875}, {"start": 2172.6, "end": 2172.82, "word": " second", "probability": 0.8271484375}, {"start": 2172.82, "end": 2172.92, "word": " point", "probability": 0.8623046875}, {"start": 2172.92, "end": 2174.28, "word": " which", "probability": 0.7080078125}, {"start": 2174.28, "end": 2174.56, "word": " is", "probability": 0.88916015625}, {"start": 2174.56, "end": 2174.74, "word": " that", "probability": 0.424560546875}, {"start": 2174.74, "end": 2175.0, "word": " you", "probability": 0.923828125}, {"start": 2175.0, "end": 2175.48, "word": " determine", "probability": 0.29443359375}, {"start": 2175.48, "end": 2176.66, "word": " which", "probability": 0.486328125}, {"start": 2176.66, "end": 2177.22, "word": " algorithm", "probability": 0.8671875}, {"start": 2177.22, "end": 2177.34, "word": " is", "probability": 0.32373046875}, {"start": 2177.34, "end": 2177.6, "word": " necessary", "probability": 0.36279296875}, {"start": 2177.6, "end": 2177.72, "word": " to", "probability": 0.71630859375}, {"start": 2177.72, "end": 2178.02, "word": " execute", "probability": 0.9208984375}, {"start": 2178.02, "end": 2178.2, "word": " the", "probability": 0.87744140625}, {"start": 2178.2, "end": 2178.42, "word": " command", "probability": 0.8193359375}, {"start": 2178.42, "end": 2178.7, "word": " and", "probability": 0.8935546875}, {"start": 2178.7, "end": 2178.9, "word": " which", "probability": 0.84375}, {"start": 2178.9, "end": 2178.96, "word": " is", "probability": 0.611328125}, {"start": 2178.96, "end": 2179.04, "word": " the", "probability": 0.8232421875}, {"start": 2179.04, "end": 2179.48, "word": " inverse", "probability": 0.80517578125}, {"start": 2179.48, "end": 2180.04, "word": " algorithm", "probability": 0.9091796875}, {"start": 2180.04, "end": 2180.24, "word": " which", "probability": 0.53857421875}, {"start": 2180.24, "end": 2180.34, "word": " is", "probability": 0.54541015625}, {"start": 2180.34, "end": 2180.44, "word": " the", "probability": 0.7783203125}, {"start": 2180.44, "end": 2180.76, "word": " inverse", "probability": 0.68115234375}, {"start": 2180.76, "end": 2181.32, "word": " algorithm", "probability": 0.83837890625}, {"start": 2181.32, "end": 2181.64, "word": " which", "probability": 0.34912109375}, {"start": 2181.64, "end": 2181.94, "word": " is", "probability": 0.7998046875}, {"start": 2181.94, "end": 2182.06, "word": " its", "probability": 0.398193359375}, {"start": 2182.06, "end": 2182.32, "word": " opposite", "probability": 0.61181640625}, {"start": 2182.32, "end": 2183.92, "word": " as", "probability": 0.303955078125}, {"start": 2183.92, "end": 2184.22, "word": " I", "probability": 0.79345703125}, {"start": 2184.22, "end": 2184.52, "word": " drew", "probability": 0.88427734375}, {"start": 2184.52, "end": 2184.72, "word": " a", "probability": 0.951171875}, {"start": 2184.72, "end": 2184.92, "word": " line", "probability": 0.9208984375}, {"start": 2184.92, "end": 2185.1, "word": " and", "probability": 0.8408203125}, {"start": 2185.1, "end": 2185.46, "word": " drew", "probability": 0.3994140625}, {"start": 2185.46, "end": 2185.74, "word": " another", "probability": 0.640625}, {"start": 2185.74, "end": 2185.98, "word": " line", "probability": 0.91552734375}, {"start": 2185.98, "end": 2186.1, "word": " on", "probability": 0.50048828125}, {"start": 2186.1, "end": 2186.1, "word": " it", "probability": 0.88330078125}, {"start": 2186.1, "end": 2186.32, "word": " but", "probability": 0.55322265625}, {"start": 2186.32, "end": 2186.44, "word": " in", "probability": 0.4404296875}, {"start": 2186.44, "end": 2186.88, "word": " white", "probability": 0.751953125}], "temperature": 1.0}, {"id": 85, "seek": 220278, "start": 2188.3, "end": 2202.78, "text": "because this thing about how to reverse the algorithm doesn't always work out, it's not always easy. The other option is, for example, to execute undo and redo, we go and save the entire state of the object", "tokens": [17566, 341, 551, 466, 577, 281, 9943, 264, 9284, 1177, 380, 1009, 589, 484, 11, 309, 311, 406, 1009, 1858, 13, 440, 661, 3614, 307, 11, 337, 1365, 11, 281, 14483, 23779, 293, 29956, 11, 321, 352, 293, 3155, 264, 2302, 1785, 295, 264, 2657], "avg_logprob": -0.6141304127548052, "compression_ratio": 1.4405594405594406, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2188.3, "end": 2188.64, "word": "because", "probability": 0.2239990234375}, {"start": 2188.64, "end": 2188.9, "word": " this", "probability": 0.330078125}, {"start": 2188.9, "end": 2189.28, "word": " thing", "probability": 0.43310546875}, {"start": 2189.28, "end": 2189.5, "word": " about", "probability": 0.206298828125}, {"start": 2189.5, "end": 2189.66, "word": " how", "probability": 0.7392578125}, {"start": 2189.66, "end": 2189.78, "word": " to", "probability": 0.456298828125}, {"start": 2189.78, "end": 2190.06, "word": " reverse", "probability": 0.270263671875}, {"start": 2190.06, "end": 2190.18, "word": " the", "probability": 0.49462890625}, {"start": 2190.18, "end": 2190.54, "word": " algorithm", "probability": 0.86376953125}, {"start": 2190.54, "end": 2190.84, "word": " doesn't", "probability": 0.596435546875}, {"start": 2190.84, "end": 2192.12, "word": " always", "probability": 0.79150390625}, {"start": 2192.12, "end": 2192.8, "word": " work", "probability": 0.61083984375}, {"start": 2192.8, "end": 2192.86, "word": " out,", "probability": 0.30859375}, {"start": 2192.86, "end": 2192.98, "word": " it's", "probability": 0.6611328125}, {"start": 2192.98, "end": 2193.0, "word": " not", "probability": 0.92724609375}, {"start": 2193.0, "end": 2193.22, "word": " always", "probability": 0.8212890625}, {"start": 2193.22, "end": 2193.58, "word": " easy.", "probability": 0.826171875}, {"start": 2194.28, "end": 2194.56, "word": " The", "probability": 0.57373046875}, {"start": 2194.56, "end": 2195.18, "word": " other", "probability": 0.8427734375}, {"start": 2195.18, "end": 2195.18, "word": " option", "probability": 0.7236328125}, {"start": 2195.18, "end": 2195.46, "word": " is,", "probability": 0.76708984375}, {"start": 2195.64, "end": 2195.64, "word": " for", "probability": 0.65869140625}, {"start": 2195.64, "end": 2196.5, "word": " example,", "probability": 0.91455078125}, {"start": 2197.58, "end": 2197.84, "word": " to", "probability": 0.69482421875}, {"start": 2197.84, "end": 2198.22, "word": " execute", "probability": 0.29296875}, {"start": 2198.22, "end": 2198.54, "word": " undo", "probability": 0.33642578125}, {"start": 2198.54, "end": 2198.72, "word": " and", "probability": 0.79736328125}, {"start": 2198.72, "end": 2198.98, "word": " redo,", "probability": 0.962890625}, {"start": 2199.18, "end": 2199.32, "word": " we", "probability": 0.62451171875}, {"start": 2199.32, "end": 2199.44, "word": " go", "probability": 0.410888671875}, {"start": 2199.44, "end": 2199.56, "word": " and", "probability": 0.30419921875}, {"start": 2199.56, "end": 2199.92, "word": " save", "probability": 0.385986328125}, {"start": 2199.92, "end": 2200.64, "word": " the", "probability": 0.90673828125}, {"start": 2200.64, "end": 2200.64, "word": " entire", "probability": 0.3466796875}, {"start": 2200.64, "end": 2201.0, "word": " state", "probability": 0.9130859375}, {"start": 2201.0, "end": 2202.24, "word": " of", "probability": 0.93798828125}, {"start": 2202.24, "end": 2202.42, "word": " the", "probability": 0.87255859375}, {"start": 2202.42, "end": 2202.78, "word": " object", "probability": 0.95263671875}], "temperature": 1.0}, {"id": 86, "seek": 222684, "start": 2203.92, "end": 2226.84, "text": "So now I want to make a new command, before I make a new command, it takes the state of the object and saves it as a whole. For example, a picture, I want to edit it, before I edit the picture, I save it as a whole, then I edit it, after each edit, I save a whole copy of the picture, so that when I tell it undo, it returns the previous copy.", "tokens": [6455, 586, 286, 528, 281, 652, 257, 777, 5622, 11, 949, 286, 652, 257, 777, 5622, 11, 309, 2516, 264, 1785, 295, 264, 2657, 293, 19155, 309, 382, 257, 1379, 13, 1171, 1365, 11, 257, 3036, 11, 286, 528, 281, 8129, 309, 11, 949, 286, 8129, 264, 3036, 11, 286, 3155, 309, 382, 257, 1379, 11, 550, 286, 8129, 309, 11, 934, 1184, 8129, 11, 286, 3155, 257, 1379, 5055, 295, 264, 3036, 11, 370, 300, 562, 286, 980, 309, 23779, 11, 309, 11247, 264, 3894, 5055, 13], "avg_logprob": -0.50948032636321, "compression_ratio": 1.8743169398907105, "no_speech_prob": 3.6954879760742188e-06, "words": [{"start": 2203.92, "end": 2204.18, "word": "So", "probability": 0.11712646484375}, {"start": 2204.18, "end": 2204.44, "word": " now", "probability": 0.60205078125}, {"start": 2204.44, "end": 2204.74, "word": " I", "probability": 0.82568359375}, {"start": 2204.74, "end": 2205.34, "word": " want", "probability": 0.481689453125}, {"start": 2205.34, "end": 2205.84, "word": " to", "probability": 0.9619140625}, {"start": 2205.84, "end": 2206.02, "word": " make", "probability": 0.215087890625}, {"start": 2206.02, "end": 2207.44, "word": " a", "probability": 0.86181640625}, {"start": 2207.44, "end": 2207.9, "word": " new", "probability": 0.8984375}, {"start": 2207.9, "end": 2207.9, "word": " command,", "probability": 0.53173828125}, {"start": 2208.38, "end": 2208.74, "word": " before", "probability": 0.677734375}, {"start": 2208.74, "end": 2208.92, "word": " I", "probability": 0.4990234375}, {"start": 2208.92, "end": 2209.02, "word": " make", "probability": 0.6806640625}, {"start": 2209.02, "end": 2209.14, "word": " a", "probability": 0.484375}, {"start": 2209.14, "end": 2209.52, "word": " new", "probability": 0.87841796875}, {"start": 2209.52, "end": 2209.52, "word": " command,", "probability": 0.830078125}, {"start": 2209.72, "end": 2209.82, "word": " it", "probability": 0.488525390625}, {"start": 2209.82, "end": 2210.18, "word": " takes", "probability": 0.41552734375}, {"start": 2210.18, "end": 2210.38, "word": " the", "probability": 0.7958984375}, {"start": 2210.38, "end": 2210.68, "word": " state", "probability": 0.75341796875}, {"start": 2210.68, "end": 2210.9, "word": " of", "probability": 0.92822265625}, {"start": 2210.9, "end": 2211.02, "word": " the", "probability": 0.80029296875}, {"start": 2211.02, "end": 2211.26, "word": " object", "probability": 0.95947265625}, {"start": 2211.26, "end": 2211.42, "word": " and", "probability": 0.88427734375}, {"start": 2211.42, "end": 2211.64, "word": " saves", "probability": 0.328369140625}, {"start": 2211.64, "end": 2211.8, "word": " it", "probability": 0.90966796875}, {"start": 2211.8, "end": 2211.9, "word": " as", "probability": 0.335693359375}, {"start": 2211.9, "end": 2212.1, "word": " a", "probability": 0.7412109375}, {"start": 2212.1, "end": 2212.1, "word": " whole.", "probability": 0.53955078125}, {"start": 2212.44, "end": 2212.86, "word": " For", "probability": 0.44677734375}, {"start": 2212.86, "end": 2213.14, "word": " example,", "probability": 0.92431640625}, {"start": 2213.26, "end": 2213.28, "word": " a", "probability": 0.322265625}, {"start": 2213.28, "end": 2213.52, "word": " picture,", "probability": 0.407470703125}, {"start": 2213.76, "end": 2214.22, "word": " I", "probability": 0.91015625}, {"start": 2214.22, "end": 2214.46, "word": " want", "probability": 0.364013671875}, {"start": 2214.46, "end": 2214.54, "word": " to", "probability": 0.9638671875}, {"start": 2214.54, "end": 2214.72, "word": " edit", "probability": 0.529296875}, {"start": 2214.72, "end": 2215.1, "word": " it,", "probability": 0.875}, {"start": 2215.66, "end": 2216.26, "word": " before", "probability": 0.468994140625}, {"start": 2216.26, "end": 2216.44, "word": " I", "probability": 0.59130859375}, {"start": 2216.44, "end": 2216.8, "word": " edit", "probability": 0.8681640625}, {"start": 2216.8, "end": 2216.86, "word": " the", "probability": 0.458251953125}, {"start": 2216.86, "end": 2216.86, "word": " picture,", "probability": 0.81103515625}, {"start": 2217.18, "end": 2217.32, "word": " I", "probability": 0.9716796875}, {"start": 2217.32, "end": 2217.66, "word": " save", "probability": 0.509765625}, {"start": 2217.66, "end": 2217.84, "word": " it", "probability": 0.90185546875}, {"start": 2217.84, "end": 2218.0, "word": " as", "probability": 0.861328125}, {"start": 2218.0, "end": 2218.02, "word": " a", "probability": 0.919921875}, {"start": 2218.02, "end": 2218.14, "word": " whole,", "probability": 0.853515625}, {"start": 2218.76, "end": 2219.46, "word": " then", "probability": 0.58837890625}, {"start": 2219.46, "end": 2219.62, "word": " I", "probability": 0.9111328125}, {"start": 2219.62, "end": 2219.88, "word": " edit", "probability": 0.6142578125}, {"start": 2219.88, "end": 2220.0, "word": " it,", "probability": 0.58447265625}, {"start": 2220.5, "end": 2220.86, "word": " after", "probability": 0.55908203125}, {"start": 2220.86, "end": 2221.14, "word": " each", "probability": 0.5908203125}, {"start": 2221.14, "end": 2221.42, "word": " edit,", "probability": 0.68359375}, {"start": 2221.52, "end": 2221.76, "word": " I", "probability": 0.8671875}, {"start": 2221.76, "end": 2221.96, "word": " save", "probability": 0.76220703125}, {"start": 2221.96, "end": 2222.08, "word": " a", "probability": 0.6044921875}, {"start": 2222.08, "end": 2222.56, "word": " whole", "probability": 0.48876953125}, {"start": 2222.56, "end": 2222.56, "word": " copy", "probability": 0.6435546875}, {"start": 2222.56, "end": 2222.76, "word": " of", "probability": 0.79296875}, {"start": 2222.76, "end": 2223.5, "word": " the", "probability": 0.74365234375}, {"start": 2223.5, "end": 2223.72, "word": " picture,", "probability": 0.6943359375}, {"start": 2223.76, "end": 2223.92, "word": " so", "probability": 0.58056640625}, {"start": 2223.92, "end": 2224.04, "word": " that", "probability": 0.305419921875}, {"start": 2224.04, "end": 2224.06, "word": " when", "probability": 0.86474609375}, {"start": 2224.06, "end": 2224.16, "word": " I", "probability": 0.9736328125}, {"start": 2224.16, "end": 2224.28, "word": " tell", "probability": 0.317626953125}, {"start": 2224.28, "end": 2224.36, "word": " it", "probability": 0.82421875}, {"start": 2224.36, "end": 2224.76, "word": " undo,", "probability": 0.468505859375}, {"start": 2225.88, "end": 2226.28, "word": " it", "probability": 0.92333984375}, {"start": 2226.28, "end": 2226.54, "word": " returns", "probability": 0.234130859375}, {"start": 2226.54, "end": 2226.68, "word": " the", "probability": 0.72021484375}, {"start": 2226.68, "end": 2226.78, "word": " previous", "probability": 0.2318115234375}, {"start": 2226.78, "end": 2226.84, "word": " copy.", "probability": 0.81103515625}], "temperature": 1.0}, {"id": 87, "seek": 225776, "start": 2228.7, "end": 2257.76, "text": "This is easier programmatically because you don't have to think about how to do the inverse algorithm, but it takes a lot of memory. Okay? Our method is more difficult programmatically because you have to think about how to do the inverse algorithm, but it saves a lot of memory. In any case, you can do it with the command pattern. Even if it was to save the state in execute, you execute the process and take the entire object and save it in memory.", "tokens": [5723, 307, 3571, 37648, 5030, 570, 291, 500, 380, 362, 281, 519, 466, 577, 281, 360, 264, 17340, 9284, 11, 457, 309, 2516, 257, 688, 295, 4675, 13, 1033, 30, 2621, 3170, 307, 544, 2252, 37648, 5030, 570, 291, 362, 281, 519, 466, 577, 281, 360, 264, 17340, 9284, 11, 457, 309, 19155, 257, 688, 295, 4675, 13, 682, 604, 1389, 11, 291, 393, 360, 309, 365, 264, 5622, 5102, 13, 2754, 498, 309, 390, 281, 3155, 264, 1785, 294, 14483, 11, 291, 14483, 264, 1399, 293, 747, 264, 2302, 2657, 293, 3155, 309, 294, 4675, 13], "avg_logprob": -0.40433672192145365, "compression_ratio": 1.9523809523809523, "no_speech_prob": 4.649162292480469e-06, "words": [{"start": 2228.7, "end": 2229.08, "word": "This", "probability": 0.2666015625}, {"start": 2229.08, "end": 2229.24, "word": " is", "probability": 0.5947265625}, {"start": 2229.24, "end": 2229.62, "word": " easier", "probability": 0.5166015625}, {"start": 2229.62, "end": 2230.2, "word": " programmatically", "probability": 0.6160888671875}, {"start": 2230.2, "end": 2231.1, "word": " because", "probability": 0.52392578125}, {"start": 2231.1, "end": 2231.34, "word": " you", "probability": 0.8583984375}, {"start": 2231.34, "end": 2231.46, "word": " don't", "probability": 0.61761474609375}, {"start": 2231.46, "end": 2231.62, "word": " have", "probability": 0.58837890625}, {"start": 2231.62, "end": 2231.74, "word": " to", "probability": 0.96630859375}, {"start": 2231.74, "end": 2232.26, "word": " think", "probability": 0.5546875}, {"start": 2232.26, "end": 2232.44, "word": " about", "probability": 0.54833984375}, {"start": 2232.44, "end": 2232.52, "word": " how", "probability": 0.62451171875}, {"start": 2232.52, "end": 2232.64, "word": " to", "probability": 0.8759765625}, {"start": 2232.64, "end": 2232.8, "word": " do", "probability": 0.343505859375}, {"start": 2232.8, "end": 2232.9, "word": " the", "probability": 0.377197265625}, {"start": 2232.9, "end": 2233.2, "word": " inverse", "probability": 0.82666015625}, {"start": 2233.2, "end": 2233.78, "word": " algorithm,", "probability": 0.91796875}, {"start": 2234.3, "end": 2234.56, "word": " but", "probability": 0.8115234375}, {"start": 2234.56, "end": 2234.72, "word": " it", "probability": 0.424560546875}, {"start": 2234.72, "end": 2234.9, "word": " takes", "probability": 0.55859375}, {"start": 2234.9, "end": 2235.1, "word": " a", "probability": 0.7841796875}, {"start": 2235.1, "end": 2236.5, "word": " lot", "probability": 0.955078125}, {"start": 2236.5, "end": 2236.5, "word": " of", "probability": 0.86572265625}, {"start": 2236.5, "end": 2236.5, "word": " memory.", "probability": 0.86767578125}, {"start": 2237.36, "end": 2237.58, "word": " Okay?", "probability": 0.1343994140625}, {"start": 2238.06, "end": 2238.2, "word": " Our", "probability": 0.8359375}, {"start": 2238.2, "end": 2238.54, "word": " method", "probability": 0.65625}, {"start": 2238.54, "end": 2239.28, "word": " is", "probability": 0.8974609375}, {"start": 2239.28, "end": 2239.62, "word": " more", "probability": 0.5361328125}, {"start": 2239.62, "end": 2239.88, "word": " difficult", "probability": 0.45068359375}, {"start": 2239.88, "end": 2240.44, "word": " programmatically", "probability": 0.80712890625}, {"start": 2240.44, "end": 2240.68, "word": " because", "probability": 0.7724609375}, {"start": 2240.68, "end": 2240.88, "word": " you", "probability": 0.86572265625}, {"start": 2240.88, "end": 2240.88, "word": " have", "probability": 0.75634765625}, {"start": 2240.88, "end": 2240.96, "word": " to", "probability": 0.97021484375}, {"start": 2240.96, "end": 2241.2, "word": " think", "probability": 0.7978515625}, {"start": 2241.2, "end": 2241.34, "word": " about", "probability": 0.8251953125}, {"start": 2241.34, "end": 2241.42, "word": " how", "probability": 0.91259765625}, {"start": 2241.42, "end": 2241.5, "word": " to", "probability": 0.95263671875}, {"start": 2241.5, "end": 2241.66, "word": " do", "probability": 0.83984375}, {"start": 2241.66, "end": 2241.76, "word": " the", "probability": 0.8388671875}, {"start": 2241.76, "end": 2242.06, "word": " inverse", "probability": 0.8388671875}, {"start": 2242.06, "end": 2242.62, "word": " algorithm,", "probability": 0.91162109375}, {"start": 2243.04, "end": 2243.3, "word": " but", "probability": 0.912109375}, {"start": 2243.3, "end": 2243.58, "word": " it", "probability": 0.849609375}, {"start": 2243.58, "end": 2243.86, "word": " saves", "probability": 0.78125}, {"start": 2243.86, "end": 2244.04, "word": " a", "probability": 0.89404296875}, {"start": 2244.04, "end": 2244.04, "word": " lot", "probability": 0.95654296875}, {"start": 2244.04, "end": 2244.04, "word": " of", "probability": 0.96044921875}, {"start": 2244.04, "end": 2245.16, "word": " memory.", "probability": 0.90185546875}, {"start": 2245.8, "end": 2246.24, "word": " In", "probability": 0.62353515625}, {"start": 2246.24, "end": 2246.5, "word": " any", "probability": 0.60400390625}, {"start": 2246.5, "end": 2246.96, "word": " case,", "probability": 0.86474609375}, {"start": 2247.4, "end": 2247.48, "word": " you", "probability": 0.94970703125}, {"start": 2247.48, "end": 2247.76, "word": " can", "probability": 0.94091796875}, {"start": 2247.76, "end": 2248.02, "word": " do", "probability": 0.85888671875}, {"start": 2248.02, "end": 2248.24, "word": " it", "probability": 0.92236328125}, {"start": 2248.24, "end": 2248.46, "word": " with", "probability": 0.54345703125}, {"start": 2248.46, "end": 2248.56, "word": " the", "probability": 0.342529296875}, {"start": 2248.56, "end": 2248.84, "word": " command", "probability": 0.6806640625}, {"start": 2248.84, "end": 2249.16, "word": " pattern.", "probability": 0.30859375}, {"start": 2250.16, "end": 2250.42, "word": " Even", "probability": 0.8310546875}, {"start": 2250.42, "end": 2250.6, "word": " if", "probability": 0.9404296875}, {"start": 2250.6, "end": 2250.94, "word": " it", "probability": 0.49169921875}, {"start": 2250.94, "end": 2250.94, "word": " was", "probability": 0.5654296875}, {"start": 2250.94, "end": 2251.0, "word": " to", "probability": 0.26708984375}, {"start": 2251.0, "end": 2251.12, "word": " save", "probability": 0.39013671875}, {"start": 2251.12, "end": 2251.58, "word": " the", "probability": 0.8271484375}, {"start": 2251.58, "end": 2251.88, "word": " state", "probability": 0.8818359375}, {"start": 2251.88, "end": 2252.34, "word": " in", "probability": 0.68017578125}, {"start": 2252.34, "end": 2252.8, "word": " execute,", "probability": 0.53271484375}, {"start": 2253.16, "end": 2253.5, "word": " you", "probability": 0.919921875}, {"start": 2253.5, "end": 2253.86, "word": " execute", "probability": 0.3330078125}, {"start": 2253.86, "end": 2254.0, "word": " the", "probability": 0.8193359375}, {"start": 2254.0, "end": 2254.36, "word": " process", "probability": 0.56591796875}, {"start": 2254.36, "end": 2255.22, "word": " and", "probability": 0.74267578125}, {"start": 2255.22, "end": 2256.0, "word": " take", "probability": 0.1510009765625}, {"start": 2256.0, "end": 2256.14, "word": " the", "probability": 0.7568359375}, {"start": 2256.14, "end": 2256.16, "word": " entire", "probability": 0.5361328125}, {"start": 2256.16, "end": 2256.48, "word": " object", "probability": 0.96923828125}, {"start": 2256.48, "end": 2256.92, "word": " and", "probability": 0.828125}, {"start": 2256.92, "end": 2257.14, "word": " save", "probability": 0.705078125}, {"start": 2257.14, "end": 2257.34, "word": " it", "probability": 0.92431640625}, {"start": 2257.34, "end": 2257.46, "word": " in", "probability": 0.857421875}, {"start": 2257.46, "end": 2257.76, "word": " memory.", "probability": 0.6826171875}], "temperature": 1.0}, {"id": 88, "seek": 227504, "start": 2258.8, "end": 2275.04, "text": "Or in a database or on a local storage. In undo, you load the file to the object and you reload it again. Okay? So in both ways, we implement or use the command pattern that makes it easier for you to actually", "tokens": [21520, 294, 257, 8149, 420, 322, 257, 2654, 6725, 13, 682, 23779, 11, 291, 3677, 264, 3991, 281, 264, 2657, 293, 291, 25628, 309, 797, 13, 1033, 30, 407, 294, 1293, 2098, 11, 321, 4445, 420, 764, 264, 5622, 5102, 300, 1669, 309, 3571, 337, 291, 281, 767], "avg_logprob": -0.6135203887005242, "compression_ratio": 1.3933333333333333, "no_speech_prob": 0.00017178058624267578, "words": [{"start": 2258.8, "end": 2259.06, "word": "Or", "probability": 0.4853515625}, {"start": 2259.06, "end": 2259.16, "word": " in", "probability": 0.61865234375}, {"start": 2259.16, "end": 2259.26, "word": " a", "probability": 0.3564453125}, {"start": 2259.26, "end": 2259.64, "word": " database", "probability": 0.82958984375}, {"start": 2259.64, "end": 2260.78, "word": " or", "probability": 0.39404296875}, {"start": 2260.78, "end": 2260.98, "word": " on", "probability": 0.402587890625}, {"start": 2260.98, "end": 2261.08, "word": " a", "probability": 0.3544921875}, {"start": 2261.08, "end": 2261.32, "word": " local", "probability": 0.80224609375}, {"start": 2261.32, "end": 2261.78, "word": " storage.", "probability": 0.88134765625}, {"start": 2262.4, "end": 2262.56, "word": " In", "probability": 0.5048828125}, {"start": 2262.56, "end": 2262.92, "word": " undo,", "probability": 0.489501953125}, {"start": 2263.18, "end": 2263.34, "word": " you", "probability": 0.56982421875}, {"start": 2263.34, "end": 2263.82, "word": " load", "probability": 0.407958984375}, {"start": 2263.82, "end": 2264.04, "word": " the", "probability": 0.480712890625}, {"start": 2264.04, "end": 2264.3, "word": " file", "probability": 0.84765625}, {"start": 2264.3, "end": 2264.42, "word": " to", "probability": 0.28076171875}, {"start": 2264.42, "end": 2264.5, "word": " the", "probability": 0.74755859375}, {"start": 2264.5, "end": 2264.96, "word": " object", "probability": 0.8408203125}, {"start": 2264.96, "end": 2265.42, "word": " and", "probability": 0.71923828125}, {"start": 2265.42, "end": 2265.52, "word": " you", "probability": 0.275146484375}, {"start": 2265.52, "end": 2265.8, "word": " reload", "probability": 0.232666015625}, {"start": 2265.8, "end": 2266.4, "word": " it", "probability": 0.796875}, {"start": 2266.4, "end": 2266.68, "word": " again.", "probability": 0.2379150390625}, {"start": 2267.94, "end": 2268.12, "word": " Okay?", "probability": 0.22998046875}, {"start": 2268.26, "end": 2268.38, "word": " So", "probability": 0.6220703125}, {"start": 2268.38, "end": 2268.54, "word": " in", "probability": 0.53515625}, {"start": 2268.54, "end": 2268.78, "word": " both", "probability": 0.456787109375}, {"start": 2268.78, "end": 2269.74, "word": " ways,", "probability": 0.53955078125}, {"start": 2269.84, "end": 2269.98, "word": " we", "probability": 0.85302734375}, {"start": 2269.98, "end": 2270.54, "word": " implement", "probability": 0.300537109375}, {"start": 2270.54, "end": 2271.28, "word": " or", "probability": 0.75830078125}, {"start": 2271.28, "end": 2271.74, "word": " use", "probability": 0.845703125}, {"start": 2271.74, "end": 2272.3, "word": " the", "probability": 0.802734375}, {"start": 2272.3, "end": 2272.58, "word": " command", "probability": 0.87646484375}, {"start": 2272.58, "end": 2272.92, "word": " pattern", "probability": 0.8173828125}, {"start": 2272.92, "end": 2273.06, "word": " that", "probability": 0.69189453125}, {"start": 2273.06, "end": 2273.2, "word": " makes", "probability": 0.58056640625}, {"start": 2273.2, "end": 2273.2, "word": " it", "probability": 0.8583984375}, {"start": 2273.2, "end": 2273.48, "word": " easier", "probability": 0.58447265625}, {"start": 2273.48, "end": 2273.64, "word": " for", "probability": 0.75439453125}, {"start": 2273.64, "end": 2273.92, "word": " you", "probability": 0.88134765625}, {"start": 2273.92, "end": 2274.52, "word": " to", "probability": 0.703125}, {"start": 2274.52, "end": 2275.04, "word": " actually", "probability": 0.294921875}], "temperature": 1.0}, {"id": 89, "seek": 230348, "start": 2275.84, "end": 2303.48, "text": "It takes a lot of time and effort to do it without knowing the details of the order itself. For example, if we draw a line, we can tell the artist to add text, lines, change colors, and each process must determine how it was done and how to cancel its execution. In the end, the drawing manager takes all the commands, regardless of their types, and executes and unexecutes them without knowing the details.", "tokens": [3522, 2516, 257, 688, 295, 565, 293, 4630, 281, 360, 309, 1553, 5276, 264, 4365, 295, 264, 1668, 2564, 13, 1171, 1365, 11, 498, 321, 2642, 257, 1622, 11, 321, 393, 980, 264, 5748, 281, 909, 2487, 11, 3876, 11, 1319, 4577, 11, 293, 1184, 1399, 1633, 6997, 577, 309, 390, 1096, 293, 577, 281, 10373, 1080, 15058, 13, 682, 264, 917, 11, 264, 6316, 6598, 2516, 439, 264, 16901, 11, 10060, 295, 641, 3467, 11, 293, 4454, 1819, 293, 11572, 3045, 1819, 552, 1553, 5276, 264, 4365, 13], "avg_logprob": -0.6454860972033607, "compression_ratio": 1.777292576419214, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 2275.84, "end": 2276.02, "word": "It", "probability": 0.0706787109375}, {"start": 2276.02, "end": 2276.16, "word": " takes", "probability": 0.089111328125}, {"start": 2276.16, "end": 2276.44, "word": " a", "probability": 0.135009765625}, {"start": 2276.44, "end": 2276.44, "word": " lot", "probability": 0.38134765625}, {"start": 2276.44, "end": 2276.48, "word": " of", "probability": 0.921875}, {"start": 2276.48, "end": 2276.48, "word": " time", "probability": 0.455810546875}, {"start": 2276.48, "end": 2276.52, "word": " and", "probability": 0.356201171875}, {"start": 2276.52, "end": 2276.88, "word": " effort", "probability": 0.52294921875}, {"start": 2276.88, "end": 2277.14, "word": " to", "probability": 0.71533203125}, {"start": 2277.14, "end": 2277.14, "word": " do", "probability": 0.060028076171875}, {"start": 2277.14, "end": 2277.14, "word": " it", "probability": 0.386962890625}, {"start": 2277.14, "end": 2277.14, "word": " without", "probability": 0.299072265625}, {"start": 2277.14, "end": 2277.52, "word": " knowing", "probability": 0.6025390625}, {"start": 2277.52, "end": 2277.64, "word": " the", "probability": 0.436279296875}, {"start": 2277.64, "end": 2277.88, "word": " details", "probability": 0.409912109375}, {"start": 2277.88, "end": 2279.04, "word": " of", "probability": 0.65673828125}, {"start": 2279.04, "end": 2279.12, "word": " the", "probability": 0.62255859375}, {"start": 2279.12, "end": 2279.3, "word": " order", "probability": 0.303955078125}, {"start": 2279.3, "end": 2279.64, "word": " itself.", "probability": 0.61181640625}, {"start": 2280.7, "end": 2281.24, "word": " For", "probability": 0.135009765625}, {"start": 2281.24, "end": 2281.98, "word": " example,", "probability": 0.875}, {"start": 2282.2, "end": 2282.32, "word": " if", "probability": 0.35888671875}, {"start": 2282.32, "end": 2282.44, "word": " we", "probability": 0.70068359375}, {"start": 2282.44, "end": 2282.44, "word": " draw", "probability": 0.4306640625}, {"start": 2282.44, "end": 2282.54, "word": " a", "probability": 0.9365234375}, {"start": 2282.54, "end": 2282.78, "word": " line,", "probability": 0.736328125}, {"start": 2283.44, "end": 2283.52, "word": " we", "probability": 0.712890625}, {"start": 2283.52, "end": 2283.76, "word": " can", "probability": 0.8076171875}, {"start": 2283.76, "end": 2284.02, "word": " tell", "probability": 0.10504150390625}, {"start": 2284.02, "end": 2284.4, "word": " the", "probability": 0.83740234375}, {"start": 2284.4, "end": 2284.72, "word": " artist", "probability": 0.52490234375}, {"start": 2284.72, "end": 2285.52, "word": " to", "probability": 0.5966796875}, {"start": 2285.52, "end": 2285.96, "word": " add", "probability": 0.76611328125}, {"start": 2285.96, "end": 2286.36, "word": " text,", "probability": 0.18994140625}, {"start": 2286.58, "end": 2286.92, "word": " lines,", "probability": 0.74072265625}, {"start": 2287.1, "end": 2287.36, "word": " change", "probability": 0.319580078125}, {"start": 2287.36, "end": 2287.66, "word": " colors,", "probability": 0.70556640625}, {"start": 2288.12, "end": 2288.46, "word": " and", "probability": 0.5166015625}, {"start": 2288.46, "end": 2288.66, "word": " each", "probability": 0.2900390625}, {"start": 2288.66, "end": 2289.12, "word": " process", "probability": 0.52783203125}, {"start": 2289.12, "end": 2289.42, "word": " must", "probability": 0.27294921875}, {"start": 2289.42, "end": 2289.74, "word": " determine", "probability": 0.211181640625}, {"start": 2289.74, "end": 2289.98, "word": " how", "probability": 0.8525390625}, {"start": 2289.98, "end": 2290.08, "word": " it", "probability": 0.875}, {"start": 2290.08, "end": 2290.14, "word": " was", "probability": 0.4345703125}, {"start": 2290.14, "end": 2290.34, "word": " done", "probability": 0.6494140625}, {"start": 2290.34, "end": 2290.52, "word": " and", "probability": 0.77099609375}, {"start": 2290.52, "end": 2290.82, "word": " how", "probability": 0.88330078125}, {"start": 2290.82, "end": 2292.06, "word": " to", "probability": 0.419677734375}, {"start": 2292.06, "end": 2292.06, "word": " cancel", "probability": 0.463134765625}, {"start": 2292.06, "end": 2292.2, "word": " its", "probability": 0.55029296875}, {"start": 2292.2, "end": 2292.52, "word": " execution.", "probability": 0.70166015625}, {"start": 2293.38, "end": 2293.52, "word": " In", "probability": 0.363037109375}, {"start": 2293.52, "end": 2293.66, "word": " the", "probability": 0.91357421875}, {"start": 2293.66, "end": 2293.92, "word": " end,", "probability": 0.90087890625}, {"start": 2294.24, "end": 2294.32, "word": " the", "probability": 0.861328125}, {"start": 2294.32, "end": 2294.56, "word": " drawing", "probability": 0.7802734375}, {"start": 2294.56, "end": 2294.92, "word": " manager", "probability": 0.943359375}, {"start": 2294.92, "end": 2295.24, "word": " takes", "probability": 0.615234375}, {"start": 2295.24, "end": 2295.74, "word": " all", "probability": 0.90673828125}, {"start": 2295.74, "end": 2295.9, "word": " the", "probability": 0.779296875}, {"start": 2295.9, "end": 2296.4, "word": " commands,", "probability": 0.76708984375}, {"start": 2296.52, "end": 2296.76, "word": " regardless", "probability": 0.767578125}, {"start": 2296.76, "end": 2297.08, "word": " of", "probability": 0.97314453125}, {"start": 2297.08, "end": 2297.18, "word": " their", "probability": 0.8115234375}, {"start": 2297.18, "end": 2297.5, "word": " types,", "probability": 0.468505859375}, {"start": 2298.32, "end": 2298.5, "word": " and", "probability": 0.9052734375}, {"start": 2298.5, "end": 2300.2, "word": " executes", "probability": 0.856201171875}, {"start": 2300.2, "end": 2300.54, "word": " and", "probability": 0.6943359375}, {"start": 2300.54, "end": 2301.14, "word": " unexecutes", "probability": 0.7797037760416666}, {"start": 2301.14, "end": 2301.22, "word": " them", "probability": 0.399169921875}, {"start": 2301.22, "end": 2301.38, "word": " without", "probability": 0.84228515625}, {"start": 2301.38, "end": 2302.16, "word": " knowing", "probability": 0.11871337890625}, {"start": 2302.16, "end": 2303.16, "word": " the", "probability": 0.787109375}, {"start": 2303.16, "end": 2303.48, "word": " details.", "probability": 0.8173828125}], "temperature": 1.0}, {"id": 90, "seek": 231833, "start": 2306.23, "end": 2318.33, "text": "The main advantage of the command design pattern is that it decouples the object that invokes the operation from the one that knows how to perform it.", "tokens": [2278, 2135, 5002, 295, 264, 5622, 1715, 5102, 307, 300, 309, 979, 263, 2622, 264, 2657, 300, 1048, 8606, 264, 6916, 490, 264, 472, 300, 3255, 577, 281, 2042, 309, 13], "avg_logprob": -0.18981933174654841, "compression_ratio": 1.4018691588785046, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2306.23, "end": 2306.89, "word": "The", "probability": 0.5849609375}, {"start": 2306.89, "end": 2307.13, "word": " main", "probability": 0.355224609375}, {"start": 2307.13, "end": 2307.69, "word": " advantage", "probability": 0.86279296875}, {"start": 2307.69, "end": 2307.89, "word": " of", "probability": 0.92529296875}, {"start": 2307.89, "end": 2308.03, "word": " the", "probability": 0.5341796875}, {"start": 2308.03, "end": 2308.35, "word": " command", "probability": 0.85400390625}, {"start": 2308.35, "end": 2308.75, "word": " design", "probability": 0.85107421875}, {"start": 2308.75, "end": 2309.11, "word": " pattern", "probability": 0.857421875}, {"start": 2309.11, "end": 2309.35, "word": " is", "probability": 0.88427734375}, {"start": 2309.35, "end": 2309.75, "word": " that", "probability": 0.92236328125}, {"start": 2309.75, "end": 2310.41, "word": " it", "probability": 0.89697265625}, {"start": 2310.41, "end": 2312.13, "word": " decouples", "probability": 0.9337565104166666}, {"start": 2312.13, "end": 2314.09, "word": " the", "probability": 0.86669921875}, {"start": 2314.09, "end": 2314.49, "word": " object", "probability": 0.9326171875}, {"start": 2314.49, "end": 2314.81, "word": " that", "probability": 0.9267578125}, {"start": 2314.81, "end": 2315.33, "word": " invokes", "probability": 0.881103515625}, {"start": 2315.33, "end": 2315.51, "word": " the", "probability": 0.89501953125}, {"start": 2315.51, "end": 2316.03, "word": " operation", "probability": 0.95263671875}, {"start": 2316.03, "end": 2316.49, "word": " from", "probability": 0.86962890625}, {"start": 2316.49, "end": 2316.67, "word": " the", "probability": 0.89990234375}, {"start": 2316.67, "end": 2316.85, "word": " one", "probability": 0.91015625}, {"start": 2316.85, "end": 2317.11, "word": " that", "probability": 0.9306640625}, {"start": 2317.11, "end": 2317.33, "word": " knows", "probability": 0.5986328125}, {"start": 2317.33, "end": 2317.57, "word": " how", "probability": 0.9482421875}, {"start": 2317.57, "end": 2317.75, "word": " to", "probability": 0.97314453125}, {"start": 2317.75, "end": 2318.09, "word": " perform", "probability": 0.837890625}, {"start": 2318.09, "end": 2318.33, "word": " it.", "probability": 0.9482421875}], "temperature": 1.0}, {"id": 91, "seek": 233523, "start": 2319.28, "end": 2335.24, "text": "I mean, I separate the object that dictates the operation, which is the command itself that executes and unexecutes from the object that actually executes, which is the stock market, which is the graphics that draws and knows the details of execution", "tokens": [40, 914, 11, 286, 4994, 264, 2657, 300, 12569, 1024, 264, 6916, 11, 597, 307, 264, 5622, 2564, 300, 4454, 1819, 293, 11572, 3045, 1819, 490, 264, 2657, 300, 767, 4454, 1819, 11, 597, 307, 264, 4127, 2142, 11, 597, 307, 264, 11837, 300, 20045, 293, 3255, 264, 4365, 295, 15058], "avg_logprob": -0.5183293097294294, "compression_ratio": 1.8248175182481752, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 2319.28, "end": 2319.56, "word": "I", "probability": 0.1558837890625}, {"start": 2319.56, "end": 2319.62, "word": " mean,", "probability": 0.486083984375}, {"start": 2320.32, "end": 2320.52, "word": " I", "probability": 0.52001953125}, {"start": 2320.52, "end": 2320.78, "word": " separate", "probability": 0.55029296875}, {"start": 2320.78, "end": 2320.94, "word": " the", "probability": 0.7060546875}, {"start": 2320.94, "end": 2321.28, "word": " object", "probability": 0.93896484375}, {"start": 2321.28, "end": 2321.4, "word": " that", "probability": 0.513671875}, {"start": 2321.4, "end": 2321.74, "word": " dictates", "probability": 0.5126953125}, {"start": 2321.74, "end": 2321.88, "word": " the", "probability": 0.5986328125}, {"start": 2321.88, "end": 2322.34, "word": " operation,", "probability": 0.91162109375}, {"start": 2322.98, "end": 2323.44, "word": " which", "probability": 0.38427734375}, {"start": 2323.44, "end": 2324.42, "word": " is", "probability": 0.869140625}, {"start": 2324.42, "end": 2324.54, "word": " the", "probability": 0.82568359375}, {"start": 2324.54, "end": 2324.86, "word": " command", "probability": 0.74365234375}, {"start": 2324.86, "end": 2325.22, "word": " itself", "probability": 0.5146484375}, {"start": 2325.22, "end": 2325.36, "word": " that", "probability": 0.6064453125}, {"start": 2325.36, "end": 2326.12, "word": " executes", "probability": 0.752197265625}, {"start": 2326.12, "end": 2326.22, "word": " and", "probability": 0.4638671875}, {"start": 2326.22, "end": 2327.18, "word": " unexecutes", "probability": 0.7455240885416666}, {"start": 2327.18, "end": 2327.78, "word": " from", "probability": 0.39990234375}, {"start": 2327.78, "end": 2327.92, "word": " the", "probability": 0.8828125}, {"start": 2327.92, "end": 2328.24, "word": " object", "probability": 0.908203125}, {"start": 2328.24, "end": 2328.42, "word": " that", "probability": 0.8974609375}, {"start": 2328.42, "end": 2328.48, "word": " actually", "probability": 0.58447265625}, {"start": 2328.48, "end": 2329.2, "word": " executes,", "probability": 0.8525390625}, {"start": 2329.72, "end": 2329.94, "word": " which", "probability": 0.8203125}, {"start": 2329.94, "end": 2330.88, "word": " is", "probability": 0.859375}, {"start": 2330.88, "end": 2331.0, "word": " the", "probability": 0.7177734375}, {"start": 2331.0, "end": 2331.22, "word": " stock", "probability": 0.55224609375}, {"start": 2331.22, "end": 2331.74, "word": " market,", "probability": 0.90283203125}, {"start": 2331.84, "end": 2331.96, "word": " which", "probability": 0.650390625}, {"start": 2331.96, "end": 2332.02, "word": " is", "probability": 0.873046875}, {"start": 2332.02, "end": 2332.18, "word": " the", "probability": 0.76806640625}, {"start": 2332.18, "end": 2332.66, "word": " graphics", "probability": 0.6494140625}, {"start": 2332.66, "end": 2333.02, "word": " that", "probability": 0.81689453125}, {"start": 2333.02, "end": 2333.34, "word": " draws", "probability": 0.309326171875}, {"start": 2333.34, "end": 2333.56, "word": " and", "probability": 0.8046875}, {"start": 2333.56, "end": 2333.82, "word": " knows", "probability": 0.58642578125}, {"start": 2333.82, "end": 2333.96, "word": " the", "probability": 0.79248046875}, {"start": 2333.96, "end": 2334.28, "word": " details", "probability": 0.85791015625}, {"start": 2334.28, "end": 2334.98, "word": " of", "probability": 0.95166015625}, {"start": 2334.98, "end": 2335.24, "word": " execution", "probability": 0.52392578125}], "temperature": 1.0}, {"id": 92, "seek": 236082, "start": 2336.82, "end": 2360.82, "text": "The meaning of this sentence is that the invoker of the drawing manager executes the commands and returns them and executes them again by executing and executing without getting involved in any details of execution. So the object that invokes the operation, which is the drawing manager or the stock agent does not know anything about the object that actually executes, which is the stock market or graphics.", "tokens": [2278, 3620, 295, 341, 8174, 307, 300, 264, 1048, 16722, 295, 264, 6316, 6598, 4454, 1819, 264, 16901, 293, 11247, 552, 293, 4454, 1819, 552, 797, 538, 32368, 293, 32368, 1553, 1242, 3288, 294, 604, 4365, 295, 15058, 13, 407, 264, 2657, 300, 1048, 8606, 264, 6916, 11, 597, 307, 264, 6316, 6598, 420, 264, 4127, 9461, 775, 406, 458, 1340, 466, 264, 2657, 300, 767, 4454, 1819, 11, 597, 307, 264, 4127, 2142, 420, 11837, 13], "avg_logprob": -0.4583333207246585, "compression_ratio": 1.9154929577464788, "no_speech_prob": 3.516674041748047e-06, "words": [{"start": 2336.82, "end": 2337.38, "word": "The", "probability": 0.451904296875}, {"start": 2337.38, "end": 2337.66, "word": " meaning", "probability": 0.447265625}, {"start": 2337.66, "end": 2337.8, "word": " of", "probability": 0.8876953125}, {"start": 2337.8, "end": 2337.84, "word": " this", "probability": 0.5390625}, {"start": 2337.84, "end": 2337.98, "word": " sentence", "probability": 0.73291015625}, {"start": 2337.98, "end": 2338.5, "word": " is", "probability": 0.67822265625}, {"start": 2338.5, "end": 2339.44, "word": " that", "probability": 0.71630859375}, {"start": 2339.44, "end": 2339.78, "word": " the", "probability": 0.72900390625}, {"start": 2339.78, "end": 2340.4, "word": " invoker", "probability": 0.763427734375}, {"start": 2340.4, "end": 2341.02, "word": " of", "probability": 0.1878662109375}, {"start": 2341.02, "end": 2341.1, "word": " the", "probability": 0.75537109375}, {"start": 2341.1, "end": 2341.26, "word": " drawing", "probability": 0.355712890625}, {"start": 2341.26, "end": 2341.68, "word": " manager", "probability": 0.94287109375}, {"start": 2341.68, "end": 2342.5, "word": " executes", "probability": 0.60162353515625}, {"start": 2342.5, "end": 2342.62, "word": " the", "probability": 0.560546875}, {"start": 2342.62, "end": 2342.84, "word": " commands", "probability": 0.461669921875}, {"start": 2342.84, "end": 2343.08, "word": " and", "probability": 0.495361328125}, {"start": 2343.08, "end": 2343.36, "word": " returns", "probability": 0.307373046875}, {"start": 2343.36, "end": 2343.64, "word": " them", "probability": 0.473876953125}, {"start": 2343.64, "end": 2343.74, "word": " and", "probability": 0.2442626953125}, {"start": 2343.74, "end": 2344.48, "word": " executes", "probability": 0.66650390625}, {"start": 2344.48, "end": 2344.58, "word": " them", "probability": 0.71826171875}, {"start": 2344.58, "end": 2344.94, "word": " again", "probability": 0.90087890625}, {"start": 2344.94, "end": 2345.72, "word": " by", "probability": 0.345947265625}, {"start": 2345.72, "end": 2346.24, "word": " executing", "probability": 0.671875}, {"start": 2346.24, "end": 2346.78, "word": " and", "probability": 0.3681640625}, {"start": 2346.78, "end": 2347.14, "word": " executing", "probability": 0.853515625}, {"start": 2347.14, "end": 2347.4, "word": " without", "probability": 0.486572265625}, {"start": 2347.4, "end": 2347.64, "word": " getting", "probability": 0.1290283203125}, {"start": 2347.64, "end": 2347.88, "word": " involved", "probability": 0.72900390625}, {"start": 2347.88, "end": 2348.02, "word": " in", "probability": 0.67529296875}, {"start": 2348.02, "end": 2348.12, "word": " any", "probability": 0.50537109375}, {"start": 2348.12, "end": 2348.58, "word": " details", "probability": 0.55224609375}, {"start": 2348.58, "end": 2349.18, "word": " of", "probability": 0.802734375}, {"start": 2349.18, "end": 2349.48, "word": " execution.", "probability": 0.55859375}, {"start": 2350.22, "end": 2350.68, "word": " So", "probability": 0.412109375}, {"start": 2350.68, "end": 2350.92, "word": " the", "probability": 0.66650390625}, {"start": 2350.92, "end": 2351.28, "word": " object", "probability": 0.95947265625}, {"start": 2351.28, "end": 2351.46, "word": " that", "probability": 0.77734375}, {"start": 2351.46, "end": 2352.16, "word": " invokes", "probability": 0.6492919921875}, {"start": 2352.16, "end": 2352.3, "word": " the", "probability": 0.58203125}, {"start": 2352.3, "end": 2352.8, "word": " operation,", "probability": 0.91162109375}, {"start": 2353.02, "end": 2353.02, "word": " which", "probability": 0.62109375}, {"start": 2353.02, "end": 2353.16, "word": " is", "probability": 0.9365234375}, {"start": 2353.16, "end": 2353.28, "word": " the", "probability": 0.8857421875}, {"start": 2353.28, "end": 2353.48, "word": " drawing", "probability": 0.7958984375}, {"start": 2353.48, "end": 2353.92, "word": " manager", "probability": 0.95263671875}, {"start": 2353.92, "end": 2354.64, "word": " or", "probability": 0.85009765625}, {"start": 2354.64, "end": 2354.8, "word": " the", "probability": 0.7626953125}, {"start": 2354.8, "end": 2354.96, "word": " stock", "probability": 0.80615234375}, {"start": 2354.96, "end": 2355.38, "word": " agent", "probability": 0.95361328125}, {"start": 2355.38, "end": 2355.84, "word": " does", "probability": 0.345947265625}, {"start": 2355.84, "end": 2355.92, "word": " not", "probability": 0.9345703125}, {"start": 2355.92, "end": 2356.18, "word": " know", "probability": 0.884765625}, {"start": 2356.18, "end": 2356.56, "word": " anything", "probability": 0.8623046875}, {"start": 2356.56, "end": 2356.88, "word": " about", "probability": 0.8955078125}, {"start": 2356.88, "end": 2356.98, "word": " the", "probability": 0.896484375}, {"start": 2356.98, "end": 2357.3, "word": " object", "probability": 0.89111328125}, {"start": 2357.3, "end": 2357.46, "word": " that", "probability": 0.80615234375}, {"start": 2357.46, "end": 2357.54, "word": " actually", "probability": 0.4296875}, {"start": 2357.54, "end": 2358.16, "word": " executes,", "probability": 0.86181640625}, {"start": 2358.7, "end": 2358.8, "word": " which", "probability": 0.8837890625}, {"start": 2358.8, "end": 2358.9, "word": " is", "probability": 0.93310546875}, {"start": 2358.9, "end": 2359.02, "word": " the", "probability": 0.90966796875}, {"start": 2359.02, "end": 2359.22, "word": " stock", "probability": 0.7998046875}, {"start": 2359.22, "end": 2359.6, "word": " market", "probability": 0.91064453125}, {"start": 2359.6, "end": 2359.88, "word": " or", "probability": 0.95458984375}, {"start": 2359.88, "end": 2360.82, "word": " graphics.", "probability": 0.68359375}], "temperature": 1.0}, {"id": 93, "seek": 238864, "start": 2361.62, "end": 2388.64, "text": "So you add new commands and change execution methods, but the agent itself or the drawing manager, his implementation does not affect him, it does not change, okay? I say, of course, the last sentence, that there are some implementations for the command design pattern in which the invoker knows about the receiver and this design is wrong, they are supposed to be separated from each other and do not know anything about each other.", "tokens": [6455, 291, 909, 777, 16901, 293, 1319, 15058, 7150, 11, 457, 264, 9461, 2564, 420, 264, 6316, 6598, 11, 702, 11420, 775, 406, 3345, 796, 11, 309, 775, 406, 1319, 11, 1392, 30, 286, 584, 11, 295, 1164, 11, 264, 1036, 8174, 11, 300, 456, 366, 512, 4445, 763, 337, 264, 5622, 1715, 5102, 294, 597, 264, 1048, 16722, 3255, 466, 264, 20086, 293, 341, 1715, 307, 2085, 11, 436, 366, 3442, 281, 312, 12005, 490, 1184, 661, 293, 360, 406, 458, 1340, 466, 1184, 661, 13], "avg_logprob": -0.48828125474127854, "compression_ratio": 1.7389558232931728, "no_speech_prob": 3.7550926208496094e-06, "words": [{"start": 2361.62, "end": 2361.88, "word": "So", "probability": 0.26220703125}, {"start": 2361.88, "end": 2362.1, "word": " you", "probability": 0.72998046875}, {"start": 2362.1, "end": 2362.56, "word": " add", "probability": 0.66064453125}, {"start": 2362.56, "end": 2363.4, "word": " new", "probability": 0.65478515625}, {"start": 2363.4, "end": 2363.4, "word": " commands", "probability": 0.84619140625}, {"start": 2363.4, "end": 2363.62, "word": " and", "probability": 0.42431640625}, {"start": 2363.62, "end": 2363.92, "word": " change", "probability": 0.52490234375}, {"start": 2363.92, "end": 2364.54, "word": " execution", "probability": 0.16064453125}, {"start": 2364.54, "end": 2364.8, "word": " methods,", "probability": 0.51953125}, {"start": 2365.04, "end": 2365.08, "word": " but", "probability": 0.76904296875}, {"start": 2365.08, "end": 2365.24, "word": " the", "probability": 0.7470703125}, {"start": 2365.24, "end": 2365.56, "word": " agent", "probability": 0.70458984375}, {"start": 2365.56, "end": 2366.26, "word": " itself", "probability": 0.29541015625}, {"start": 2366.26, "end": 2366.72, "word": " or", "probability": 0.431640625}, {"start": 2366.72, "end": 2366.94, "word": " the", "probability": 0.6044921875}, {"start": 2366.94, "end": 2367.18, "word": " drawing", "probability": 0.6005859375}, {"start": 2367.18, "end": 2367.62, "word": " manager,", "probability": 0.93798828125}, {"start": 2367.96, "end": 2368.08, "word": " his", "probability": 0.260498046875}, {"start": 2368.08, "end": 2368.64, "word": " implementation", "probability": 0.83349609375}, {"start": 2368.64, "end": 2369.1, "word": " does", "probability": 0.34375}, {"start": 2369.1, "end": 2369.1, "word": " not", "probability": 0.9306640625}, {"start": 2369.1, "end": 2369.5, "word": " affect", "probability": 0.448974609375}, {"start": 2369.5, "end": 2369.64, "word": " him,", "probability": 0.430419921875}, {"start": 2369.72, "end": 2369.74, "word": " it", "probability": 0.399169921875}, {"start": 2369.74, "end": 2369.82, "word": " does", "probability": 0.5400390625}, {"start": 2369.82, "end": 2369.82, "word": " not", "probability": 0.94140625}, {"start": 2369.82, "end": 2370.04, "word": " change,", "probability": 0.420166015625}, {"start": 2370.48, "end": 2370.72, "word": " okay?", "probability": 0.56005859375}, {"start": 2371.98, "end": 2372.24, "word": " I", "probability": 0.65234375}, {"start": 2372.24, "end": 2372.42, "word": " say,", "probability": 0.68212890625}, {"start": 2372.6, "end": 2372.72, "word": " of", "probability": 0.69775390625}, {"start": 2372.72, "end": 2372.82, "word": " course,", "probability": 0.95751953125}, {"start": 2372.92, "end": 2372.98, "word": " the", "probability": 0.48583984375}, {"start": 2372.98, "end": 2373.16, "word": " last", "probability": 0.82958984375}, {"start": 2373.16, "end": 2373.46, "word": " sentence,", "probability": 0.8359375}, {"start": 2373.86, "end": 2374.04, "word": " that", "probability": 0.8251953125}, {"start": 2374.04, "end": 2374.2, "word": " there", "probability": 0.7900390625}, {"start": 2374.2, "end": 2374.24, "word": " are", "probability": 0.9169921875}, {"start": 2374.24, "end": 2374.46, "word": " some", "probability": 0.8466796875}, {"start": 2374.46, "end": 2375.3, "word": " implementations", "probability": 0.953125}, {"start": 2375.3, "end": 2375.5, "word": " for", "probability": 0.6298828125}, {"start": 2375.5, "end": 2375.66, "word": " the", "probability": 0.484619140625}, {"start": 2375.66, "end": 2376.34, "word": " command", "probability": 0.8056640625}, {"start": 2376.34, "end": 2376.64, "word": " design", "probability": 0.89892578125}, {"start": 2376.64, "end": 2376.96, "word": " pattern", "probability": 0.765625}, {"start": 2376.96, "end": 2377.12, "word": " in", "probability": 0.1959228515625}, {"start": 2377.12, "end": 2377.58, "word": " which", "probability": 0.91748046875}, {"start": 2377.58, "end": 2378.94, "word": " the", "probability": 0.83056640625}, {"start": 2378.94, "end": 2380.98, "word": " invoker", "probability": 0.871826171875}, {"start": 2380.98, "end": 2381.96, "word": " knows", "probability": 0.7236328125}, {"start": 2381.96, "end": 2382.84, "word": " about", "probability": 0.7138671875}, {"start": 2382.84, "end": 2383.72, "word": " the", "probability": 0.91455078125}, {"start": 2383.72, "end": 2384.08, "word": " receiver", "probability": 0.90625}, {"start": 2384.08, "end": 2384.28, "word": " and", "probability": 0.5380859375}, {"start": 2384.28, "end": 2384.46, "word": " this", "probability": 0.9013671875}, {"start": 2384.46, "end": 2384.86, "word": " design", "probability": 0.94775390625}, {"start": 2384.86, "end": 2385.1, "word": " is", "probability": 0.87451171875}, {"start": 2385.1, "end": 2385.54, "word": " wrong,", "probability": 0.87646484375}, {"start": 2385.68, "end": 2385.7, "word": " they", "probability": 0.80810546875}, {"start": 2385.7, "end": 2385.9, "word": " are", "probability": 0.3876953125}, {"start": 2385.9, "end": 2385.9, "word": " supposed", "probability": 0.90869140625}, {"start": 2385.9, "end": 2386.02, "word": " to", "probability": 0.97314453125}, {"start": 2386.02, "end": 2386.2, "word": " be", "probability": 0.791015625}, {"start": 2386.2, "end": 2386.5, "word": " separated", "probability": 0.2373046875}, {"start": 2386.5, "end": 2386.72, "word": " from", "probability": 0.81005859375}, {"start": 2386.72, "end": 2386.9, "word": " each", "probability": 0.93994140625}, {"start": 2386.9, "end": 2386.9, "word": " other", "probability": 0.89697265625}, {"start": 2386.9, "end": 2386.98, "word": " and", "probability": 0.7275390625}, {"start": 2386.98, "end": 2387.06, "word": " do", "probability": 0.347412109375}, {"start": 2387.06, "end": 2387.06, "word": " not", "probability": 0.93896484375}, {"start": 2387.06, "end": 2387.22, "word": " know", "probability": 0.9052734375}, {"start": 2387.22, "end": 2387.56, "word": " anything", "probability": 0.837890625}, {"start": 2387.56, "end": 2387.8, "word": " about", "probability": 0.89892578125}, {"start": 2387.8, "end": 2388.64, "word": " each", "probability": 0.94970703125}, {"start": 2388.64, "end": 2388.64, "word": " other.", "probability": 0.89697265625}], "temperature": 1.0}, {"id": 94, "seek": 241896, "start": 2389.28, "end": 2418.96, "text": "ok guys, this is for the command pattern, we took two examples of it, one is the first example of how to make a queue of commands to implement them later, which is the example of the stock market, and the second example is how to use the command to apply the undo and redo. The last part now guys, of course there is a duty that will come down to this topic, don't worry, I will open the new duty at the end of the exams on the subject of the command pattern.", "tokens": [453, 1074, 11, 341, 307, 337, 264, 5622, 5102, 11, 321, 1890, 732, 5110, 295, 309, 11, 472, 307, 264, 700, 1365, 295, 577, 281, 652, 257, 18639, 295, 16901, 281, 4445, 552, 1780, 11, 597, 307, 264, 1365, 295, 264, 4127, 2142, 11, 293, 264, 1150, 1365, 307, 577, 281, 764, 264, 5622, 281, 3079, 264, 23779, 293, 29956, 13, 440, 1036, 644, 586, 1074, 11, 295, 1164, 456, 307, 257, 9776, 300, 486, 808, 760, 281, 341, 4829, 11, 500, 380, 3292, 11, 286, 486, 1269, 264, 777, 9776, 412, 264, 917, 295, 264, 20514, 322, 264, 3983, 295, 264, 5622, 5102, 13], "avg_logprob": -0.48938678542398056, "compression_ratio": 1.8658536585365855, "no_speech_prob": 2.4139881134033203e-05, "words": [{"start": 2389.28, "end": 2389.56, "word": "ok", "probability": 0.137939453125}, {"start": 2389.56, "end": 2390.04, "word": " guys,", "probability": 0.6845703125}, {"start": 2390.52, "end": 2390.76, "word": " this", "probability": 0.3876953125}, {"start": 2390.76, "end": 2390.84, "word": " is", "probability": 0.611328125}, {"start": 2390.84, "end": 2391.12, "word": " for", "probability": 0.469482421875}, {"start": 2391.12, "end": 2391.26, "word": " the", "probability": 0.33349609375}, {"start": 2391.26, "end": 2391.52, "word": " command", "probability": 0.88720703125}, {"start": 2391.52, "end": 2391.88, "word": " pattern,", "probability": 0.8740234375}, {"start": 2391.94, "end": 2392.06, "word": " we", "probability": 0.7529296875}, {"start": 2392.06, "end": 2392.24, "word": " took", "probability": 0.5078125}, {"start": 2392.24, "end": 2392.54, "word": " two", "probability": 0.556640625}, {"start": 2392.54, "end": 2392.82, "word": " examples", "probability": 0.69921875}, {"start": 2392.82, "end": 2393.22, "word": " of", "probability": 0.2237548828125}, {"start": 2393.22, "end": 2393.36, "word": " it,", "probability": 0.82666015625}, {"start": 2393.6, "end": 2394.28, "word": " one", "probability": 0.462646484375}, {"start": 2394.28, "end": 2394.56, "word": " is", "probability": 0.269287109375}, {"start": 2394.56, "end": 2394.86, "word": " the", "probability": 0.58740234375}, {"start": 2394.86, "end": 2395.1, "word": " first", "probability": 0.73779296875}, {"start": 2395.1, "end": 2395.1, "word": " example", "probability": 0.93505859375}, {"start": 2395.1, "end": 2395.34, "word": " of", "probability": 0.308349609375}, {"start": 2395.34, "end": 2395.54, "word": " how", "probability": 0.85888671875}, {"start": 2395.54, "end": 2395.8, "word": " to", "probability": 0.487060546875}, {"start": 2395.8, "end": 2396.0, "word": " make", "probability": 0.389404296875}, {"start": 2396.0, "end": 2396.16, "word": " a", "probability": 0.37109375}, {"start": 2396.16, "end": 2396.32, "word": " queue", "probability": 0.81201171875}, {"start": 2396.32, "end": 2396.46, "word": " of", "probability": 0.388427734375}, {"start": 2396.46, "end": 2396.88, "word": " commands", "probability": 0.81201171875}, {"start": 2396.88, "end": 2397.12, "word": " to", "probability": 0.76953125}, {"start": 2397.12, "end": 2397.5, "word": " implement", "probability": 0.427734375}, {"start": 2397.5, "end": 2397.98, "word": " them", "probability": 0.84375}, {"start": 2397.98, "end": 2398.58, "word": " later,", "probability": 0.6064453125}, {"start": 2399.2, "end": 2399.3, "word": " which", "probability": 0.57421875}, {"start": 2399.3, "end": 2399.42, "word": " is", "probability": 0.92138671875}, {"start": 2399.42, "end": 2399.46, "word": " the", "probability": 0.73193359375}, {"start": 2399.46, "end": 2399.66, "word": " example", "probability": 0.90478515625}, {"start": 2399.66, "end": 2399.78, "word": " of", "probability": 0.92822265625}, {"start": 2399.78, "end": 2399.84, "word": " the", "probability": 0.72705078125}, {"start": 2399.84, "end": 2400.0, "word": " stock", "probability": 0.68798828125}, {"start": 2400.0, "end": 2400.44, "word": " market,", "probability": 0.8857421875}, {"start": 2400.68, "end": 2400.98, "word": " and", "probability": 0.91259765625}, {"start": 2400.98, "end": 2401.08, "word": " the", "probability": 0.87548828125}, {"start": 2401.08, "end": 2401.6, "word": " second", "probability": 0.80078125}, {"start": 2401.6, "end": 2401.6, "word": " example", "probability": 0.947265625}, {"start": 2401.6, "end": 2401.74, "word": " is", "probability": 0.5126953125}, {"start": 2401.74, "end": 2401.86, "word": " how", "probability": 0.896484375}, {"start": 2401.86, "end": 2401.98, "word": " to", "probability": 0.9462890625}, {"start": 2401.98, "end": 2402.24, "word": " use", "probability": 0.8564453125}, {"start": 2402.24, "end": 2402.42, "word": " the", "probability": 0.79736328125}, {"start": 2402.42, "end": 2402.66, "word": " command", "probability": 0.7392578125}, {"start": 2402.66, "end": 2402.94, "word": " to", "probability": 0.92919921875}, {"start": 2402.94, "end": 2403.3, "word": " apply", "probability": 0.8359375}, {"start": 2403.3, "end": 2403.42, "word": " the", "probability": 0.450927734375}, {"start": 2403.42, "end": 2403.7, "word": " undo", "probability": 0.94384765625}, {"start": 2403.7, "end": 2404.96, "word": " and", "probability": 0.88818359375}, {"start": 2404.96, "end": 2405.26, "word": " redo.", "probability": 0.8603515625}, {"start": 2406.54, "end": 2407.02, "word": " The", "probability": 0.39892578125}, {"start": 2407.02, "end": 2407.16, "word": " last", "probability": 0.85205078125}, {"start": 2407.16, "end": 2407.44, "word": " part", "probability": 0.70263671875}, {"start": 2407.44, "end": 2407.74, "word": " now", "probability": 0.591796875}, {"start": 2407.74, "end": 2408.18, "word": " guys,", "probability": 0.4599609375}, {"start": 2408.7, "end": 2408.78, "word": " of", "probability": 0.8505859375}, {"start": 2408.78, "end": 2408.9, "word": " course", "probability": 0.95751953125}, {"start": 2408.9, "end": 2409.32, "word": " there", "probability": 0.466064453125}, {"start": 2409.32, "end": 2409.42, "word": " is", "probability": 0.755859375}, {"start": 2409.42, "end": 2409.56, "word": " a", "probability": 0.80322265625}, {"start": 2409.56, "end": 2409.74, "word": " duty", "probability": 0.70068359375}, {"start": 2409.74, "end": 2409.88, "word": " that", "probability": 0.6455078125}, {"start": 2409.88, "end": 2410.0, "word": " will", "probability": 0.79833984375}, {"start": 2410.0, "end": 2410.18, "word": " come", "probability": 0.42529296875}, {"start": 2410.18, "end": 2410.3, "word": " down", "probability": 0.79833984375}, {"start": 2410.3, "end": 2410.52, "word": " to", "probability": 0.462890625}, {"start": 2410.52, "end": 2411.18, "word": " this", "probability": 0.91455078125}, {"start": 2411.18, "end": 2411.52, "word": " topic,", "probability": 0.51220703125}, {"start": 2412.32, "end": 2412.44, "word": " don't", "probability": 0.71923828125}, {"start": 2412.44, "end": 2412.66, "word": " worry,", "probability": 0.81591796875}, {"start": 2412.9, "end": 2413.04, "word": " I", "probability": 0.49267578125}, {"start": 2413.04, "end": 2413.12, "word": " will", "probability": 0.54150390625}, {"start": 2413.12, "end": 2413.94, "word": " open", "probability": 0.3154296875}, {"start": 2413.94, "end": 2416.5, "word": " the", "probability": 0.270263671875}, {"start": 2416.5, "end": 2416.62, "word": " new", "probability": 0.288818359375}, {"start": 2416.62, "end": 2416.9, "word": " duty", "probability": 0.9306640625}, {"start": 2416.9, "end": 2417.08, "word": " at", "probability": 0.432373046875}, {"start": 2417.08, "end": 2417.08, "word": " the", "probability": 0.93017578125}, {"start": 2417.08, "end": 2417.08, "word": " end", "probability": 0.8828125}, {"start": 2417.08, "end": 2417.08, "word": " of", "probability": 0.9658203125}, {"start": 2417.08, "end": 2417.08, "word": " the", "probability": 0.818359375}, {"start": 2417.08, "end": 2417.08, "word": " exams", "probability": 0.60107421875}, {"start": 2417.08, "end": 2417.54, "word": " on", "probability": 0.38427734375}, {"start": 2417.54, "end": 2417.96, "word": " the", "probability": 0.865234375}, {"start": 2417.96, "end": 2418.2, "word": " subject", "probability": 0.5400390625}, {"start": 2418.2, "end": 2418.32, "word": " of", "probability": 0.9619140625}, {"start": 2418.32, "end": 2418.38, "word": " the", "probability": 0.544921875}, {"start": 2418.38, "end": 2418.62, "word": " command", "probability": 0.88134765625}, {"start": 2418.62, "end": 2418.96, "word": " pattern.", "probability": 0.81689453125}], "temperature": 1.0}, {"id": 95, "seek": 242294, "start": 2420.16, "end": 2422.94, "text": "Tamam؟ الواجب الجديد هذا بس نفرجيكوا إياه", "tokens": [51, 31608, 22807, 2423, 2407, 26108, 3555, 25724, 16254, 3215, 23758, 4724, 3794, 8717, 5172, 47341, 1829, 4117, 14407, 11933, 25528, 3224], "avg_logprob": -0.31980299949645996, "compression_ratio": 0.9594594594594594, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2420.16, "end": 2420.92, "word": "Tamam؟", "probability": 0.4381510416666667}, {"start": 2420.92, "end": 2421.34, "word": " الواجب", "probability": 0.9588623046875}, {"start": 2421.34, "end": 2421.72, "word": " الجديد", "probability": 0.93115234375}, {"start": 2421.72, "end": 2421.88, "word": " هذا", "probability": 0.76513671875}, {"start": 2421.88, "end": 2422.08, "word": " بس", "probability": 0.9462890625}, {"start": 2422.08, "end": 2422.62, "word": " نفرجيكوا", "probability": 0.8890787760416666}, {"start": 2422.62, "end": 2422.94, "word": " إياه", "probability": 0.7254638671875}], "temperature": 1.0}, {"id": 96, "seek": 245917, "start": 2435.01, "end": 2459.17, "text": "Okay, look at this program, guys. We want to make a program like this. It is an input square, I add names of people, then I say add to add the name to the list here. A simple example. So I added Ahmed, I said add him, he put it here. Because he is sitting, what is he doing? He wants to add names. Ali added him. Omar", "tokens": [8297, 11, 574, 412, 341, 1461, 11, 1074, 13, 492, 528, 281, 652, 257, 1461, 411, 341, 13, 467, 307, 364, 4846, 3732, 11, 286, 909, 5288, 295, 561, 11, 550, 286, 584, 909, 281, 909, 264, 1315, 281, 264, 1329, 510, 13, 316, 2199, 1365, 13, 407, 286, 3869, 39189, 11, 286, 848, 909, 796, 11, 415, 829, 309, 510, 13, 1436, 415, 307, 3798, 11, 437, 307, 415, 884, 30, 634, 2738, 281, 909, 5288, 13, 12020, 3869, 796, 13, 33784], "avg_logprob": -0.552827368179957, "compression_ratio": 1.585, "no_speech_prob": 2.8014183044433594e-06, "words": [{"start": 2435.01, "end": 2435.35, "word": "Okay,", "probability": 0.2120361328125}, {"start": 2435.55, "end": 2435.75, "word": " look", "probability": 0.59716796875}, {"start": 2435.75, "end": 2435.87, "word": " at", "probability": 0.9443359375}, {"start": 2435.87, "end": 2435.95, "word": " this", "probability": 0.8046875}, {"start": 2435.95, "end": 2436.25, "word": " program,", "probability": 0.74658203125}, {"start": 2436.53, "end": 2436.75, "word": " guys.", "probability": 0.66796875}, {"start": 2436.85, "end": 2437.17, "word": " We", "probability": 0.8447265625}, {"start": 2437.17, "end": 2437.17, "word": " want", "probability": 0.431396484375}, {"start": 2437.17, "end": 2437.43, "word": " to", "probability": 0.9580078125}, {"start": 2437.43, "end": 2437.57, "word": " make", "probability": 0.693359375}, {"start": 2437.57, "end": 2438.19, "word": " a", "probability": 0.3359375}, {"start": 2438.19, "end": 2438.19, "word": " program", "probability": 0.8671875}, {"start": 2438.19, "end": 2438.51, "word": " like", "probability": 0.5869140625}, {"start": 2438.51, "end": 2439.15, "word": " this.", "probability": 0.9287109375}, {"start": 2439.55, "end": 2439.75, "word": " It", "probability": 0.6640625}, {"start": 2439.75, "end": 2440.03, "word": " is", "probability": 0.40087890625}, {"start": 2440.03, "end": 2441.33, "word": " an", "probability": 0.25244140625}, {"start": 2441.33, "end": 2442.15, "word": " input", "probability": 0.453857421875}, {"start": 2442.15, "end": 2442.15, "word": " square,", "probability": 0.452392578125}, {"start": 2442.27, "end": 2442.43, "word": " I", "probability": 0.787109375}, {"start": 2442.43, "end": 2442.65, "word": " add", "probability": 0.6435546875}, {"start": 2442.65, "end": 2443.33, "word": " names", "probability": 0.417236328125}, {"start": 2443.33, "end": 2443.47, "word": " of", "probability": 0.82958984375}, {"start": 2443.47, "end": 2443.89, "word": " people,", "probability": 0.78466796875}, {"start": 2443.93, "end": 2444.15, "word": " then", "probability": 0.6240234375}, {"start": 2444.15, "end": 2444.29, "word": " I", "probability": 0.88671875}, {"start": 2444.29, "end": 2444.47, "word": " say", "probability": 0.63525390625}, {"start": 2444.47, "end": 2444.89, "word": " add", "probability": 0.51416015625}, {"start": 2444.89, "end": 2445.73, "word": " to", "probability": 0.380126953125}, {"start": 2445.73, "end": 2446.11, "word": " add", "probability": 0.833984375}, {"start": 2446.11, "end": 2446.29, "word": " the", "probability": 0.6318359375}, {"start": 2446.29, "end": 2446.51, "word": " name", "probability": 0.85205078125}, {"start": 2446.51, "end": 2447.01, "word": " to", "probability": 0.48388671875}, {"start": 2447.01, "end": 2447.51, "word": " the", "probability": 0.462646484375}, {"start": 2447.51, "end": 2447.75, "word": " list", "probability": 0.529296875}, {"start": 2447.75, "end": 2448.17, "word": " here.", "probability": 0.6552734375}, {"start": 2448.53, "end": 2448.53, "word": " A", "probability": 0.35009765625}, {"start": 2448.53, "end": 2448.53, "word": " simple", "probability": 0.958984375}, {"start": 2448.53, "end": 2448.81, "word": " example.", "probability": 0.94873046875}, {"start": 2449.23, "end": 2449.31, "word": " So", "probability": 0.458740234375}, {"start": 2449.31, "end": 2449.39, "word": " I", "probability": 0.4560546875}, {"start": 2449.39, "end": 2449.51, "word": " added", "probability": 0.5986328125}, {"start": 2449.51, "end": 2449.87, "word": " Ahmed,", "probability": 0.7099609375}, {"start": 2449.95, "end": 2449.99, "word": " I", "probability": 0.8125}, {"start": 2449.99, "end": 2450.17, "word": " said", "probability": 0.5263671875}, {"start": 2450.17, "end": 2450.49, "word": " add", "probability": 0.7060546875}, {"start": 2450.49, "end": 2450.59, "word": " him,", "probability": 0.40283203125}, {"start": 2450.59, "end": 2450.65, "word": " he", "probability": 0.346923828125}, {"start": 2450.65, "end": 2450.89, "word": " put", "probability": 0.50634765625}, {"start": 2450.89, "end": 2450.99, "word": " it", "probability": 0.432861328125}, {"start": 2450.99, "end": 2451.19, "word": " here.", "probability": 0.82958984375}, {"start": 2452.37, "end": 2452.63, "word": " Because", "probability": 0.81884765625}, {"start": 2452.63, "end": 2452.81, "word": " he", "probability": 0.6083984375}, {"start": 2452.81, "end": 2452.91, "word": " is", "probability": 0.367919921875}, {"start": 2452.91, "end": 2453.07, "word": " sitting,", "probability": 0.2464599609375}, {"start": 2453.17, "end": 2453.29, "word": " what", "probability": 0.89697265625}, {"start": 2453.29, "end": 2453.31, "word": " is", "probability": 0.45751953125}, {"start": 2453.31, "end": 2453.41, "word": " he", "probability": 0.93701171875}, {"start": 2453.41, "end": 2453.53, "word": " doing?", "probability": 0.96533203125}, {"start": 2453.67, "end": 2453.73, "word": " He", "probability": 0.5849609375}, {"start": 2453.73, "end": 2453.85, "word": " wants", "probability": 0.53662109375}, {"start": 2453.85, "end": 2453.85, "word": " to", "probability": 0.96484375}, {"start": 2453.85, "end": 2454.15, "word": " add", "probability": 0.91357421875}, {"start": 2454.15, "end": 2454.65, "word": " names.", "probability": 0.7333984375}, {"start": 2455.29, "end": 2455.73, "word": " Ali", "probability": 0.88525390625}, {"start": 2455.73, "end": 2456.55, "word": " added", "probability": 0.426025390625}, {"start": 2456.55, "end": 2457.03, "word": " him.", "probability": 0.51171875}, {"start": 2458.73, "end": 2459.17, "word": " Omar", "probability": 0.72705078125}], "temperature": 1.0}, {"id": 97, "seek": 248454, "start": 2463.28, "end": 2484.54, "text": "and Amal, because we have undo and redo here, look when we do undo, what will he do? The last noun in the plural, which is Amal, he will remove it and put it back where? On this shelf, he will undo again, he will remove Omar and put him back again, also undo, remove Ali and put him up, Ahmed remained, then redo, he brings Ali and puts him back, Omar is up", "tokens": [474, 2012, 304, 11, 570, 321, 362, 23779, 293, 29956, 510, 11, 574, 562, 321, 360, 23779, 11, 437, 486, 415, 360, 30, 440, 1036, 23307, 294, 264, 25377, 11, 597, 307, 2012, 304, 11, 415, 486, 4159, 309, 293, 829, 309, 646, 689, 30, 1282, 341, 15222, 11, 415, 486, 23779, 797, 11, 415, 486, 4159, 33784, 293, 829, 796, 646, 797, 11, 611, 23779, 11, 4159, 12020, 293, 829, 796, 493, 11, 39189, 12780, 11, 550, 29956, 11, 415, 5607, 12020, 293, 8137, 796, 646, 11, 33784, 307, 493], "avg_logprob": -0.591372289735338, "compression_ratio": 1.8402061855670102, "no_speech_prob": 7.3909759521484375e-06, "words": [{"start": 2463.28, "end": 2463.56, "word": "and", "probability": 0.30517578125}, {"start": 2463.56, "end": 2463.74, "word": " Amal,", "probability": 0.739501953125}, {"start": 2464.08, "end": 2464.3, "word": " because", "probability": 0.64599609375}, {"start": 2464.3, "end": 2464.58, "word": " we", "probability": 0.74609375}, {"start": 2464.58, "end": 2464.58, "word": " have", "probability": 0.88134765625}, {"start": 2464.58, "end": 2464.82, "word": " undo", "probability": 0.7421875}, {"start": 2464.82, "end": 2465.0, "word": " and", "probability": 0.88525390625}, {"start": 2465.0, "end": 2465.14, "word": " redo", "probability": 0.96240234375}, {"start": 2465.14, "end": 2465.48, "word": " here,", "probability": 0.72607421875}, {"start": 2465.62, "end": 2465.82, "word": " look", "probability": 0.429443359375}, {"start": 2465.82, "end": 2465.96, "word": " when", "probability": 0.76416015625}, {"start": 2465.96, "end": 2466.08, "word": " we", "probability": 0.83837890625}, {"start": 2466.08, "end": 2466.22, "word": " do", "probability": 0.33837890625}, {"start": 2466.22, "end": 2466.66, "word": " undo,", "probability": 0.93359375}, {"start": 2466.88, "end": 2467.08, "word": " what", "probability": 0.701171875}, {"start": 2467.08, "end": 2467.22, "word": " will", "probability": 0.654296875}, {"start": 2467.22, "end": 2467.34, "word": " he", "probability": 0.27490234375}, {"start": 2467.34, "end": 2467.54, "word": " do?", "probability": 0.95947265625}, {"start": 2467.8, "end": 2468.08, "word": " The", "probability": 0.393310546875}, {"start": 2468.08, "end": 2468.24, "word": " last", "probability": 0.8203125}, {"start": 2468.24, "end": 2468.54, "word": " noun", "probability": 0.34814453125}, {"start": 2468.54, "end": 2468.6, "word": " in", "probability": 0.1881103515625}, {"start": 2468.6, "end": 2468.7, "word": " the", "probability": 0.515625}, {"start": 2468.7, "end": 2468.86, "word": " plural,", "probability": 0.33056640625}, {"start": 2469.0, "end": 2469.0, "word": " which", "probability": 0.580078125}, {"start": 2469.0, "end": 2469.14, "word": " is", "probability": 0.9462890625}, {"start": 2469.14, "end": 2469.5, "word": " Amal,", "probability": 0.969482421875}, {"start": 2470.44, "end": 2470.62, "word": " he", "probability": 0.1920166015625}, {"start": 2470.62, "end": 2470.68, "word": " will", "probability": 0.74365234375}, {"start": 2470.68, "end": 2470.86, "word": " remove", "probability": 0.377685546875}, {"start": 2470.86, "end": 2470.98, "word": " it", "probability": 0.43505859375}, {"start": 2470.98, "end": 2471.0, "word": " and", "probability": 0.87353515625}, {"start": 2471.0, "end": 2471.16, "word": " put", "probability": 0.405029296875}, {"start": 2471.16, "end": 2471.24, "word": " it", "probability": 0.89599609375}, {"start": 2471.24, "end": 2471.38, "word": " back", "probability": 0.7490234375}, {"start": 2471.38, "end": 2471.6, "word": " where?", "probability": 0.370849609375}, {"start": 2472.48, "end": 2472.8, "word": " On", "probability": 0.3671875}, {"start": 2472.8, "end": 2472.88, "word": " this", "probability": 0.59033203125}, {"start": 2472.88, "end": 2473.1, "word": " shelf,", "probability": 0.072265625}, {"start": 2473.5, "end": 2473.6, "word": " he", "probability": 0.27197265625}, {"start": 2473.6, "end": 2473.68, "word": " will", "probability": 0.43798828125}, {"start": 2473.68, "end": 2474.02, "word": " undo", "probability": 0.68603515625}, {"start": 2474.02, "end": 2474.46, "word": " again,", "probability": 0.744140625}, {"start": 2474.76, "end": 2474.84, "word": " he", "probability": 0.58740234375}, {"start": 2474.84, "end": 2474.94, "word": " will", "probability": 0.85986328125}, {"start": 2474.94, "end": 2475.12, "word": " remove", "probability": 0.82763671875}, {"start": 2475.12, "end": 2475.36, "word": " Omar", "probability": 0.693359375}, {"start": 2475.36, "end": 2475.52, "word": " and", "probability": 0.880859375}, {"start": 2475.52, "end": 2475.9, "word": " put", "probability": 0.8349609375}, {"start": 2475.9, "end": 2476.2, "word": " him", "probability": 0.50244140625}, {"start": 2476.2, "end": 2476.54, "word": " back", "probability": 0.51611328125}, {"start": 2476.54, "end": 2476.9, "word": " again,", "probability": 0.376708984375}, {"start": 2477.68, "end": 2477.92, "word": " also", "probability": 0.521484375}, {"start": 2477.92, "end": 2478.24, "word": " undo,", "probability": 0.90576171875}, {"start": 2478.4, "end": 2478.58, "word": " remove", "probability": 0.356201171875}, {"start": 2478.58, "end": 2478.78, "word": " Ali", "probability": 0.9501953125}, {"start": 2478.78, "end": 2478.88, "word": " and", "probability": 0.90576171875}, {"start": 2478.88, "end": 2479.1, "word": " put", "probability": 0.8994140625}, {"start": 2479.1, "end": 2479.18, "word": " him", "probability": 0.8125}, {"start": 2479.18, "end": 2479.34, "word": " up,", "probability": 0.2427978515625}, {"start": 2479.62, "end": 2480.16, "word": " Ahmed", "probability": 0.423095703125}, {"start": 2480.16, "end": 2480.16, "word": " remained,", "probability": 0.18310546875}, {"start": 2480.34, "end": 2480.54, "word": " then", "probability": 0.224365234375}, {"start": 2480.54, "end": 2480.86, "word": " redo,", "probability": 0.80078125}, {"start": 2481.58, "end": 2482.0, "word": " he", "probability": 0.293212890625}, {"start": 2482.0, "end": 2482.16, "word": " brings", "probability": 0.385009765625}, {"start": 2482.16, "end": 2482.44, "word": " Ali", "probability": 0.896484375}, {"start": 2482.44, "end": 2482.58, "word": " and", "probability": 0.42822265625}, {"start": 2482.58, "end": 2482.8, "word": " puts", "probability": 0.8212890625}, {"start": 2482.8, "end": 2482.9, "word": " him", "probability": 0.86572265625}, {"start": 2482.9, "end": 2483.1, "word": " back,", "probability": 0.66015625}, {"start": 2483.48, "end": 2484.28, "word": " Omar", "probability": 0.7705078125}, {"start": 2484.28, "end": 2484.42, "word": " is", "probability": 0.31591796875}, {"start": 2484.42, "end": 2484.54, "word": " up", "probability": 0.73095703125}], "temperature": 1.0}, {"id": 98, "seek": 251688, "start": 2488.5, "end": 2516.88, "text": "كما أريده هيرجع عيش عمر وكتب أمل فوق So think about how you can do actions like undo and redo I don't think you've ever tried undo and redo, right? You won't find it in the applications And you're a programmer, you should know how to do undo and redo Try this example, how to apply the idea of undo and redo in the same way that we did Okay guys, God bless you", "tokens": [4117, 15042, 5551, 16572, 3215, 3224, 39896, 47341, 3615, 6225, 1829, 8592, 6225, 29973, 4032, 4117, 2655, 3555, 5551, 42213, 6156, 30543, 407, 519, 466, 577, 291, 393, 360, 5909, 411, 23779, 293, 29956, 286, 500, 380, 519, 291, 600, 1562, 3031, 23779, 293, 29956, 11, 558, 30, 509, 1582, 380, 915, 309, 294, 264, 5821, 400, 291, 434, 257, 32116, 11, 291, 820, 458, 577, 281, 360, 23779, 293, 29956, 6526, 341, 1365, 11, 577, 281, 3079, 264, 1558, 295, 23779, 293, 29956, 294, 264, 912, 636, 300, 321, 630, 1033, 1074, 11, 1265, 5227, 291], "avg_logprob": -0.4390943825853114, "compression_ratio": 1.479087452471483, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 2488.5, "end": 2488.84, "word": "كما", "probability": 0.500732421875}, {"start": 2488.84, "end": 2489.28, "word": " أريده", "probability": 0.78662109375}, {"start": 2489.28, "end": 2489.82, "word": " هيرجع", "probability": 0.8567708333333334}, {"start": 2489.82, "end": 2490.06, "word": " عيش", "probability": 0.6899007161458334}, {"start": 2490.06, "end": 2490.28, "word": " عمر", "probability": 0.93359375}, {"start": 2490.28, "end": 2490.66, "word": " وكتب", "probability": 0.78216552734375}, {"start": 2490.66, "end": 2490.86, "word": " أمل", "probability": 0.734130859375}, {"start": 2490.86, "end": 2491.24, "word": " فوق", "probability": 0.8681640625}, {"start": 2491.24, "end": 2492.12, "word": " So", "probability": 0.11907958984375}, {"start": 2492.12, "end": 2493.36, "word": " think", "probability": 0.63671875}, {"start": 2493.36, "end": 2493.58, "word": " about", "probability": 0.54443359375}, {"start": 2493.58, "end": 2493.68, "word": " how", "probability": 0.9091796875}, {"start": 2493.68, "end": 2493.9, "word": " you", "probability": 0.8525390625}, {"start": 2493.9, "end": 2494.16, "word": " can", "probability": 0.85595703125}, {"start": 2494.16, "end": 2494.52, "word": " do", "probability": 0.60009765625}, {"start": 2494.52, "end": 2495.74, "word": " actions", "probability": 0.363037109375}, {"start": 2495.74, "end": 2496.0, "word": " like", "probability": 0.89453125}, {"start": 2496.0, "end": 2496.52, "word": " undo", "probability": 0.7392578125}, {"start": 2496.52, "end": 2498.12, "word": " and", "probability": 0.70458984375}, {"start": 2498.12, "end": 2498.38, "word": " redo", "probability": 0.7275390625}, {"start": 2498.38, "end": 2500.28, "word": " I", "probability": 0.380859375}, {"start": 2500.28, "end": 2500.42, "word": " don't", "probability": 0.911376953125}, {"start": 2500.42, "end": 2500.74, "word": " think", "probability": 0.88134765625}, {"start": 2500.74, "end": 2501.0, "word": " you've", "probability": 0.567626953125}, {"start": 2501.0, "end": 2501.12, "word": " ever", "probability": 0.552734375}, {"start": 2501.12, "end": 2501.56, "word": " tried", "probability": 0.7900390625}, {"start": 2501.56, "end": 2502.2, "word": " undo", "probability": 0.52880859375}, {"start": 2502.2, "end": 2502.4, "word": " and", "probability": 0.8876953125}, {"start": 2502.4, "end": 2502.64, "word": " redo,", "probability": 0.82275390625}, {"start": 2502.7, "end": 2502.94, "word": " right?", "probability": 0.62158203125}, {"start": 2503.02, "end": 2503.14, "word": " You", "probability": 0.5830078125}, {"start": 2503.14, "end": 2503.24, "word": " won't", "probability": 0.674072265625}, {"start": 2503.24, "end": 2503.46, "word": " find", "probability": 0.84130859375}, {"start": 2503.46, "end": 2503.5, "word": " it", "probability": 0.68896484375}, {"start": 2503.5, "end": 2503.62, "word": " in", "probability": 0.89013671875}, {"start": 2503.62, "end": 2503.66, "word": " the", "probability": 0.28515625}, {"start": 2503.66, "end": 2503.96, "word": " applications", "probability": 0.357177734375}, {"start": 2503.96, "end": 2504.9, "word": " And", "probability": 0.422607421875}, {"start": 2504.9, "end": 2505.1, "word": " you're", "probability": 0.828857421875}, {"start": 2505.1, "end": 2505.12, "word": " a", "probability": 0.9033203125}, {"start": 2505.12, "end": 2505.34, "word": " programmer,", "probability": 0.95556640625}, {"start": 2505.46, "end": 2505.48, "word": " you", "probability": 0.8701171875}, {"start": 2505.48, "end": 2505.64, "word": " should", "probability": 0.78759765625}, {"start": 2505.64, "end": 2505.94, "word": " know", "probability": 0.8876953125}, {"start": 2505.94, "end": 2506.1, "word": " how", "probability": 0.921875}, {"start": 2506.1, "end": 2506.2, "word": " to", "probability": 0.958984375}, {"start": 2506.2, "end": 2506.36, "word": " do", "probability": 0.495361328125}, {"start": 2506.36, "end": 2506.6, "word": " undo", "probability": 0.708984375}, {"start": 2506.6, "end": 2506.78, "word": " and", "probability": 0.9501953125}, {"start": 2506.78, "end": 2506.98, "word": " redo", "probability": 0.8359375}, {"start": 2506.98, "end": 2508.22, "word": " Try", "probability": 0.387451171875}, {"start": 2508.22, "end": 2508.5, "word": " this", "probability": 0.5849609375}, {"start": 2508.5, "end": 2508.86, "word": " example,", "probability": 0.54736328125}, {"start": 2509.0, "end": 2509.26, "word": " how", "probability": 0.7724609375}, {"start": 2509.26, "end": 2509.46, "word": " to", "probability": 0.7236328125}, {"start": 2509.46, "end": 2509.74, "word": " apply", "probability": 0.53759765625}, {"start": 2509.74, "end": 2509.88, "word": " the", "probability": 0.47314453125}, {"start": 2509.88, "end": 2510.1, "word": " idea", "probability": 0.8681640625}, {"start": 2510.1, "end": 2510.96, "word": " of", "probability": 0.94677734375}, {"start": 2510.96, "end": 2511.2, "word": " undo", "probability": 0.80419921875}, {"start": 2511.2, "end": 2511.4, "word": " and", "probability": 0.9501953125}, {"start": 2511.4, "end": 2511.6, "word": " redo", "probability": 0.8544921875}, {"start": 2511.6, "end": 2511.76, "word": " in", "probability": 0.357421875}, {"start": 2511.76, "end": 2512.02, "word": " the", "probability": 0.900390625}, {"start": 2512.02, "end": 2512.02, "word": " same", "probability": 0.79833984375}, {"start": 2512.02, "end": 2512.24, "word": " way", "probability": 0.411376953125}, {"start": 2512.24, "end": 2512.42, "word": " that", "probability": 0.31787109375}, {"start": 2512.42, "end": 2512.72, "word": " we", "probability": 0.921875}, {"start": 2512.72, "end": 2513.62, "word": " did", "probability": 0.80224609375}, {"start": 2513.62, "end": 2514.52, "word": " Okay", "probability": 0.354736328125}, {"start": 2514.52, "end": 2514.98, "word": " guys,", "probability": 0.69482421875}, {"start": 2515.7, "end": 2516.7, "word": " God", "probability": 0.51025390625}, {"start": 2516.7, "end": 2516.8, "word": " bless", "probability": 0.90283203125}, {"start": 2516.8, "end": 2516.88, "word": " you", "probability": 0.958984375}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2517.57725, "duration_after_vad": 2336.3949999999904} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/_S0ZM3owxXE_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/_S0ZM3owxXE_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..63d248aba7c7e437c67b969c208a55974d6f3a73 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/_S0ZM3owxXE_raw.srt @@ -0,0 +1,2624 @@ +1 +00:00:05,060 --> 00:00:08,500 +Okay guys, peace be upon you In the previous + +2 +00:00:08,500 --> 00:00:11,700 +lecture, we started with the new design pattern + +3 +00:00:11,700 --> 00:00:14,520 +which is the command pattern And we said that the + +4 +00:00:14,520 --> 00:00:16,860 +command pattern has a specific benefit, which is + +5 +00:00:16,860 --> 00:00:20,240 +if I have an application that I need to follow + +6 +00:00:20,240 --> 00:00:23,220 +certain commands, + +7 +00:00:23,680 --> 00:00:26,040 +I want to execute them, make them queue, store + +8 +00:00:26,040 --> 00:00:29,980 +them to execute them later, we use the command + +9 +00:00:29,980 --> 00:00:33,640 +patternand this is necessary in some apps like for + +10 +00:00:33,640 --> 00:00:35,700 +example the financial apps and the wallet that I + +11 +00:00:35,700 --> 00:00:37,760 +want to do or work for example to buy but this + +12 +00:00:37,760 --> 00:00:41,420 +will be done at a later time or for example in the + +13 +00:00:41,420 --> 00:00:43,180 +process of undo and redo that we will see an + +14 +00:00:43,180 --> 00:00:45,700 +example of this lecture we saw in the previous + +15 +00:00:45,700 --> 00:00:47,500 +lecture a complete example on the subject of + +16 +00:00:47,500 --> 00:00:49,720 +command pattern which is how to deal with + +17 +00:00:49,720 --> 00:00:52,240 +operations in the stock market we saw for example + +18 +00:00:52,240 --> 00:00:54,200 +that I have a class called stock market through + +19 +00:00:54,200 --> 00:00:57,060 +which I can for example buy stocks, open a + +20 +00:00:57,060 --> 00:01:01,870 +company, sell stocks, write books and othersThe + +21 +00:01:01,870 --> 00:01:03,890 +idea behind the command pattern is that these + +22 +00:01:03,890 --> 00:01:06,410 +commands, when I call the methods in the stock + +23 +00:01:06,410 --> 00:01:09,250 +market, they are executed directly But now I want + +24 +00:01:09,250 --> 00:01:12,910 +to convert every call to a method, I want to + +25 +00:01:12,910 --> 00:01:15,250 +convert it to a command, store it as an object, + +26 +00:01:15,350 --> 00:01:17,730 +store in it all the commands and information that + +27 +00:01:17,730 --> 00:01:20,990 +I need to executeOkay? So that I can execute it + +28 +00:01:20,990 --> 00:01:24,930 +later. These commands or objects were created + +29 +00:01:24,930 --> 00:01:28,610 +through classes that implement the same interface. + +30 +00:01:29,250 --> 00:01:30,910 +So that whatever kind of command is different, + +31 +00:01:31,030 --> 00:01:33,530 +whether it is selling them or buying them, all of + +32 +00:01:33,530 --> 00:01:36,590 +them will follow the same interface. This means + +33 +00:01:36,590 --> 00:01:39,990 +that I can put all of these commands on different + +34 +00:01:39,990 --> 00:01:42,910 +types in one list and execute it without knowing + +35 +00:01:42,910 --> 00:01:47,910 +the details of execution.In this lecture, we will + +36 +00:01:47,910 --> 00:01:50,570 +see another example on the command pattern, maybe + +37 +00:01:50,570 --> 00:01:54,790 +an application more, to see how undo and redo work + +38 +00:01:54,790 --> 00:01:57,930 +together. For example, I want to do certain + +39 +00:01:57,930 --> 00:01:59,670 +operations in the program and I want to undo them + +40 +00:01:59,670 --> 00:02:02,610 +to go back to these operations or redo them to go + +41 +00:02:02,610 --> 00:02:04,410 +back to these operations. + +42 +00:02:14,190 --> 00:02:18,210 +Okay guys, before we start, let's just remember + +43 +00:02:18,210 --> 00:02:19,830 +what we did in the last lecture in the stock + +44 +00:02:19,830 --> 00:02:22,290 +market, we started that I have a class called + +45 +00:02:22,290 --> 00:02:24,710 +stock market through which the process of buying + +46 +00:02:24,710 --> 00:02:27,490 +stocks or opening companies takes place, this is + +47 +00:02:27,490 --> 00:02:30,030 +the class through which everything takes place, + +48 +00:02:30,410 --> 00:02:33,590 +because as I said, I want these processes of + +49 +00:02:33,590 --> 00:02:37,250 +buying or opening I made it encapsulation inside + +50 +00:02:37,250 --> 00:02:41,090 +objects so I made an interface called stock + +51 +00:02:41,090 --> 00:02:44,830 +command there is a method called execute and then + +52 +00:02:44,830 --> 00:02:47,830 +I did two things which is buy shares and open + +53 +00:02:47,830 --> 00:02:52,330 +company both of them implement this interface both + +54 +00:02:52,330 --> 00:02:54,550 +of them have the necessary information to execute + +55 +00:02:54,550 --> 00:02:58,870 +the order and notice that buy shares and open + +56 +00:02:58,870 --> 00:03:03,810 +company take through the constructor object from + +57 +00:03:03,810 --> 00:03:07,020 +whomfrom the stock market because he is the one + +58 +00:03:07,020 --> 00:03:10,920 +who executes because when it comes to execute, I + +59 +00:03:10,920 --> 00:03:12,760 +go to the stock market and tell him to buy shares + +60 +00:03:12,760 --> 00:03:15,320 +and pass on the process to him we said in the + +61 +00:03:15,320 --> 00:03:16,620 +previous lecture that this is a process like one, + +62 +00:03:16,680 --> 00:03:17,780 +two, three, four, five, six, seven, eight, nine, + +63 +00:03:17,780 --> 00:03:20,000 +ten, eleven, twelve, thirteen, fourteen, fifteen, + +64 +00:03:20,280 --> 00:03:20,740 +sixteen, eighteen, nineteen, twenty, twenty-one, + +65 +00:03:20,740 --> 00:03:20,760 +twenty-one, twenty-two, twenty-three, twenty-four, + +66 +00:03:20,760 --> 00:03:22,480 +twenty-five, twenty-five, twenty-four, twenty + +67 +00:03:22,480 --> 00:03:22,780 +-five, twenty-five, twenty-five, twenty-four, + +68 +00:03:22,780 --> 00:03:22,780 +twenty-five, twenty-five, twenty-five, twenty + +69 +00:03:22,780 --> 00:03:27,280 +-five, twenty-five, twenty + +70 +00:03:27,280 --> 00:03:28,160 +-five, twenty-five, twenty-five, twenty-five, + +71 +00:03:28,160 --> 00:03:28,160 +twenty-five, twenty-five, twenty-five, twenty + +72 +00:03:28,160 --> 00:03:28,160 +-five, twenty-five, twenty-five, twenty-five, + +73 +00:03:28,160 --> 00:03:28,160 +twenty-five, twenty-five, twenty-five, twenty + +74 +00:03:28,160 --> 00:03:28,880 +-five, twenty-five, twenty-five,means this is the + +75 +00:03:28,880 --> 00:03:32,120 +process of buying in the class of open company the + +76 +00:03:32,120 --> 00:03:34,940 +same idea I have open company implement for stock + +77 +00:03:34,940 --> 00:03:38,500 +command and I also have execute but inside execute + +78 +00:03:38,500 --> 00:03:42,700 +this does something different the idea I have here + +79 +00:03:42,700 --> 00:03:46,300 +is as follows this is the stock market this is the + +80 +00:03:46,300 --> 00:03:49,490 +main method and I have more than one process of + +81 +00:03:49,490 --> 00:03:51,350 +selling and buying and opening companies like + +82 +00:03:51,350 --> 00:03:54,170 +these two things, these are two things because all + +83 +00:03:54,170 --> 00:03:57,150 +I do is that I did not implement these two things + +84 +00:03:57,150 --> 00:03:59,070 +right now I created each command and gave the + +85 +00:03:59,070 --> 00:04:01,610 +necessary information for implementation and then + +86 +00:04:01,610 --> 00:04:04,930 +I went to the agent which actually contains a list + +87 +00:04:04,930 --> 00:04:06,690 +in which I store the commands and I told him to + +88 +00:04:06,690 --> 00:04:09,610 +add this command and this command because the + +89 +00:04:09,610 --> 00:04:13,830 +agent is basically class contains a list and its + +90 +00:04:13,830 --> 00:04:17,190 +function is to store commands regardless of what + +91 +00:04:17,190 --> 00:04:19,730 +type of command it will receive from the stock + +92 +00:04:19,730 --> 00:04:22,530 +market and store it without knowing its details + +93 +00:04:22,530 --> 00:04:26,610 +when it executes it passes to each stock command + +94 +00:04:26,610 --> 00:04:30,990 +in the list of commands executes this will do + +95 +00:04:30,990 --> 00:04:34,070 +different things depending on the type of command + +96 +00:04:34,070 --> 00:04:37,670 +available if I make new commandsNew operations in + +97 +00:04:37,670 --> 00:04:41,630 +the stock market, I will not change anything in + +98 +00:04:41,630 --> 00:04:44,170 +the stock agent All I need to do is class and + +99 +00:04:44,170 --> 00:04:47,870 +encapsulate for this thing and call the method and + +100 +00:04:47,870 --> 00:04:51,150 +all the information I need to implement this thing + +101 +00:04:51,150 --> 00:04:55,090 +and then I create and implement it for the stock + +102 +00:04:55,090 --> 00:04:56,450 +command interface and add it to the list and it + +103 +00:04:56,450 --> 00:05:00,250 +works This is a summary of what we did in the last + +104 +00:05:00,250 --> 00:05:01,610 +lecture, in this lecture we will do the following + +105 +00:05:01,610 --> 00:05:04,650 +example let me show you what we are going to do + +106 +00:05:04,650 --> 00:05:08,310 +and then we start to implement it because we want + +107 +00:05:08,310 --> 00:05:11,590 +to make a program like this a normal drawing + +108 +00:05:11,590 --> 00:05:16,570 +program okay? draw, hold the mouse and see what + +109 +00:05:16,570 --> 00:05:20,130 +I'm doing, I'm drawing like this because the idea + +110 +00:05:20,130 --> 00:05:23,810 +is that when I do undo you see what I'm doing? it + +111 +00:05:23,810 --> 00:05:29,390 +goes back step by step okay? when I do redo it + +112 +00:05:29,390 --> 00:05:31,090 +draws the drawing parts again + +113 +00:05:35,240 --> 00:05:37,920 +Okay, as an idea of how we can apply the idea of + +114 +00:05:37,920 --> 00:05:41,480 +undo and redo by using the command pattern Okay, + +115 +00:05:41,620 --> 00:05:46,280 +to make this program guys, I made a simple + +116 +00:05:46,280 --> 00:05:48,680 +program, of course I started from scratch, I will + +117 +00:05:48,680 --> 00:05:50,920 +show you how it looks like This program that I + +118 +00:05:50,920 --> 00:05:56,720 +made is currently a white screen here and under it + +119 +00:05:56,720 --> 00:05:59,920 +is the undo and redo button Of course, currently I + +120 +00:05:59,920 --> 00:06:03,460 +am pulling the mouseThere is nothing because we + +121 +00:06:03,460 --> 00:06:05,420 +haven't started the drawing process yet. We want + +122 +00:06:05,420 --> 00:06:08,620 +to see how to do the drawing process to do the + +123 +00:06:08,620 --> 00:06:11,780 +underwriting process afterwards. Now, in short, in + +124 +00:06:11,780 --> 00:06:14,100 +order to do the underwriting process, I have to do + +125 +00:06:14,100 --> 00:06:16,960 +the following. The drawing process, guys, what I + +126 +00:06:16,960 --> 00:06:20,000 +want to do next is that when I draw, + +127 +00:06:22,800 --> 00:06:27,620 +okay? I want him to divide my drawing into parts. + +128 +00:06:29,950 --> 00:06:32,650 +It means this shape at the end of the drawing on + +129 +00:06:32,650 --> 00:06:36,530 +the basis that each part of this will be stored as + +130 +00:06:36,530 --> 00:06:40,810 +a command Each + +131 +00:06:40,810 --> 00:06:43,570 +part will be stored as a command separated from + +132 +00:06:43,570 --> 00:06:46,650 +the other In the end, I will have a set of + +133 +00:06:46,650 --> 00:06:49,410 +commands with the number of parts of the drawing + +134 +00:06:49,410 --> 00:06:52,610 +The advantage here is that each part of these + +135 +00:06:52,610 --> 00:06:56,330 +commands I can go back and implement it or go back + +136 +00:06:56,330 --> 00:07:00,390 +and implement it againSo in order to do this thing + +137 +00:07:00,390 --> 00:07:05,250 +with a small trick, let's see how to do it. First + +138 +00:07:05,250 --> 00:07:07,970 +of all, how do we divide the drawing into parts + +139 +00:07:07,970 --> 00:07:11,370 +and store each part separately? Because what I + +140 +00:07:11,370 --> 00:07:14,660 +really want to do is the followingI want as soon + +141 +00:07:14,660 --> 00:07:17,620 +as I press the mouse, which is how I actually + +142 +00:07:17,620 --> 00:07:22,220 +draw, I put down the pen and then I pull it, + +143 +00:07:22,240 --> 00:07:25,600 +right? With the mouse, as soon as I press with the + +144 +00:07:25,600 --> 00:07:28,160 +mouse, not click, click means that I press and + +145 +00:07:28,160 --> 00:07:32,280 +leave, right? This is click, press means that I + +146 +00:07:32,280 --> 00:07:36,320 +press and stay pressed. As soon as I press, I want + +147 +00:07:36,320 --> 00:07:41,320 +to keep this starting point, this is the start + +148 +00:07:41,320 --> 00:07:47,430 +pointOkay? And I want him to record the start + +149 +00:07:47,430 --> 00:07:48,170 +time. + +150 +00:07:51,510 --> 00:07:54,470 +Okay? Why the start time? Do you see? When I draw, + +151 +00:07:55,610 --> 00:07:57,770 +I want him to record every 10 seconds + +152 +00:07:57,770 --> 00:08:02,850 +automatically. Okay? I haven't drawn yet. When I + +153 +00:08:02,850 --> 00:08:05,150 +draw like this, I arrived here after 10 seconds. + +154 +00:08:06,090 --> 00:08:08,410 +After exactly 10 seconds, he wants to take this + +155 +00:08:08,410 --> 00:08:12,600 +pointOkay? Do you see this point? And it stores it + +156 +00:08:12,600 --> 00:08:15,820 +as what? As an end point. + +157 +00:08:17,280 --> 00:08:20,720 +This is the starting point and this is the ending + +158 +00:08:20,720 --> 00:08:26,140 +point. Okay? Now, these are the information I need + +159 +00:08:26,140 --> 00:08:30,440 +to draw the first line. The point from here to + +160 +00:08:30,440 --> 00:08:33,700 +here. This ending point is some ten seconds ago. + +161 +00:08:34,080 --> 00:08:38,600 +Okay? So these two information, if I draw a line + +162 +00:08:38,600 --> 00:08:42,450 +between them, this line will appear.Okay, after he + +163 +00:08:42,450 --> 00:08:45,490 +draws the first line, he will start drawing the + +164 +00:08:45,490 --> 00:08:49,550 +second line. What will he do? This will be the + +165 +00:08:49,550 --> 00:08:56,230 +start, okay?وقت البداية هو الوقت هذا اللي هنا يعني + +166 +00:08:56,230 --> 00:08:59,970 +هذا برضه الوقت هذا ماله اختلف هو وقت البداية حسبته + +167 +00:08:59,970 --> 00:09:03,730 +هنا هل جيت من هنا بده نحسب من وين؟ من هنا وبرجع + +168 +00:09:03,730 --> 00:09:07,190 +بحسب تاني بعد عشر ثانية تانية بتصير هذه نقطة + +169 +00:09:07,190 --> 00:09:13,950 +النهاية ال end point و برسم بينهم This is how you + +170 +00:09:13,950 --> 00:09:18,850 +draw on parts. Before we save the command, let's + +171 +00:09:18,850 --> 00:09:23,810 +see how to draw on parts. Let's see the + +172 +00:09:23,810 --> 00:09:25,830 +application. The application consists of three + +173 +00:09:25,830 --> 00:09:29,670 +classes. The main class is the free drawing, which + +174 +00:09:29,670 --> 00:09:34,390 +is the main frame of the application. The main + +175 +00:09:34,390 --> 00:09:39,110 +frame is divided into two parts.This part in the + +176 +00:09:39,110 --> 00:09:41,250 +middle is called the drawing panel and the bottom + +177 +00:09:41,250 --> 00:09:44,530 +part is called the control panel which has the + +178 +00:09:44,530 --> 00:09:47,990 +undo and redo buttons Let's see the drawing panel, + +179 +00:09:48,090 --> 00:09:51,490 +we will not go too deep into the GUI but I will + +180 +00:09:51,490 --> 00:09:54,790 +show you the basic idea that this drawing panel I + +181 +00:09:54,790 --> 00:09:58,570 +made something called add mouse listener Like when + +182 +00:09:58,570 --> 00:10:02,690 +you do listener on the button, not add, action, + +183 +00:10:03,350 --> 00:10:07,750 +set on action, this is almost the same idea, which + +184 +00:10:07,750 --> 00:10:11,050 +is just called add mouse listener and inside it + +185 +00:10:11,050 --> 00:10:12,910 +does anonymous class or in lambda, whatever you + +186 +00:10:12,910 --> 00:10:16,430 +want, okay? What does this do, guys? It only + +187 +00:10:16,430 --> 00:10:20,430 +listens to the mouse. At the moment you click on + +188 +00:10:20,430 --> 00:10:23,970 +it, it executes the value called mouse clicks. If + +189 +00:10:23,970 --> 00:10:26,610 +you write code here, it will execute it if you + +190 +00:10:26,610 --> 00:10:31,490 +click.Okay? And there is mouse entered and mouse + +191 +00:10:31,490 --> 00:10:34,170 +exited because I left the mouse. I have a mouse + +192 +00:10:34,170 --> 00:10:37,410 +pressed. Okay? Which means that I have a pressure + +193 +00:10:37,410 --> 00:10:40,390 +when I press the mouse. This is what I want. + +194 +00:10:40,930 --> 00:10:43,870 +Because I want to get the point of the beginning + +195 +00:10:43,870 --> 00:10:48,070 +and the beginning time. Okay? And I also have + +196 +00:10:48,070 --> 00:10:50,450 +another listener. His name is mouse motion + +197 +00:10:50,450 --> 00:10:53,700 +listener.From his name, Hada monitors the movement + +198 +00:10:53,700 --> 00:10:56,660 +of the mouse, okay? And Hada brings me a dialer + +199 +00:10:56,660 --> 00:11:01,860 +called Mouse Dragged Because now it's like I'm + +200 +00:11:01,860 --> 00:11:05,580 +pressing the mouse and I'm dragging it Hada gives + +201 +00:11:05,580 --> 00:11:07,900 +me this dialer because while I'm dragging it, it + +202 +00:11:07,900 --> 00:11:10,860 +wants me to monitor the time after passing 10 + +203 +00:11:10,860 --> 00:11:14,620 +seconds you have to bring the end point and draw a + +204 +00:11:14,620 --> 00:11:17,200 +line from the beginning point to the end point + +205 +00:11:17,200 --> 00:11:19,820 +this is the idea but in a very short way we have + +206 +00:11:19,820 --> 00:11:22,200 +not yet separated the command pattern yet we are + +207 +00:11:22,200 --> 00:11:25,900 +doing the process of what? drawing okay? we come + +208 +00:11:25,900 --> 00:11:29,820 +here and define the variables guys integer start x + +209 +00:11:29,820 --> 00:11:34,480 +and start y this is the point of what? the + +210 +00:11:34,480 --> 00:11:37,680 +beginning point and long start time + +211 +00:11:40,830 --> 00:11:44,530 +which is the time of the beginning. These values + +212 +00:11:44,530 --> 00:11:48,250 +are not yet defined yet. When will he start to + +213 +00:11:48,250 --> 00:11:50,330 +store the point of the beginning and the time of + +214 +00:11:50,330 --> 00:11:53,550 +the beginning? At the moment when I press here, + +215 +00:11:54,150 --> 00:11:56,930 +okay? So at this press, he has to get the point + +216 +00:11:56,930 --> 00:12:00,470 +that he pressed. How does he get this point?the + +217 +00:12:00,470 --> 00:12:03,050 +mouse event, you see it? this is the mouse event + +218 +00:12:03,050 --> 00:12:06,670 +that comes that at any point I press, it brings me + +219 +00:12:06,670 --> 00:12:10,490 +to its destination how do I bring it? E dot get X + +220 +00:12:10,490 --> 00:12:16,910 +and E dot get Y and these two dots, I want to + +221 +00:12:16,910 --> 00:12:24,710 +store them where? in start X and + +222 +00:12:24,710 --> 00:12:28,990 +start Y it also starts counting the time, the + +223 +00:12:28,990 --> 00:12:33,500 +start timeIn the current time, there is a method + +224 +00:12:33,500 --> 00:12:37,580 +called system.currenttime milliseconds. This + +225 +00:12:37,580 --> 00:12:40,640 +current time means in milliseconds. I saved it in + +226 +00:12:40,640 --> 00:12:44,100 +the start time. Now, when I start to press, I + +227 +00:12:44,100 --> 00:12:47,580 +start to draw. Okay? When I draw, it will keep + +228 +00:12:47,580 --> 00:12:51,720 +track of the time. If it passed 100 milliseconds + +229 +00:12:51,720 --> 00:12:56,760 +or 10 seconds, it will start to draw.ok? it means + +230 +00:12:56,760 --> 00:13:01,260 +that it will only draw after 10 seconds so this is + +231 +00:13:01,260 --> 00:13:03,740 +important to know in the method mouse of the drug + +232 +00:13:03,740 --> 00:13:07,600 +ok? I want to tell you guys that when you make a + +233 +00:13:07,600 --> 00:13:09,800 +drug you have to measure the time look at the time + +234 +00:13:09,800 --> 00:13:12,800 +what I did here it's changed it's name is current + +235 +00:13:12,800 --> 00:13:18,800 +time it's equal to system dot current time + +236 +00:13:18,800 --> 00:13:22,900 +millisecond and when you make a drug you have to + +237 +00:13:22,900 --> 00:13:29,760 +propose it the current timeminus the start time if + +238 +00:13:29,760 --> 00:13:32,000 +the difference between them reaches more than 100, + +239 +00:13:32,880 --> 00:13:37,820 +100 millisecond means 10 seconds, okay? get the + +240 +00:13:37,820 --> 00:13:42,400 +current point and draw from the start to the + +241 +00:13:42,400 --> 00:13:44,420 +current point what is the current point? where + +242 +00:13:44,420 --> 00:13:47,840 +will it be present in the mouse event? that is, + +243 +00:13:47,880 --> 00:13:50,940 +what is inside the F will not be executed unless + +244 +00:13:50,940 --> 00:13:56,190 +the time becomes 100 millisecondsOkay? Now, what + +245 +00:13:56,190 --> 00:13:57,850 +are we going to do? We are going to draw straight + +246 +00:13:57,850 --> 00:14:00,210 +away. I want to tell him drawing panel. We draw on + +247 +00:14:00,210 --> 00:14:05,070 +the drawing panel. dot this dot get graphics. + +248 +00:14:05,190 --> 00:14:09,610 +Through this graphics, we draw. We tell him that + +249 +00:14:09,610 --> 00:14:12,210 +there is a prepared method called draw line. + +250 +00:14:14,550 --> 00:14:18,710 +This draw line takes 4 parameters, which are the + +251 +00:14:18,710 --> 00:14:21,570 +two points, the starting point and the ending + +252 +00:14:21,570 --> 00:14:24,290 +point, from where to where they want to draw, from + +253 +00:14:24,290 --> 00:14:32,110 +start x and start y to the current point that has + +254 +00:14:32,110 --> 00:14:41,170 +reached now, which is E dot get x and E dot get y + +255 +00:14:47,420 --> 00:14:49,080 +Okay? We're almost done. We have one more step + +256 +00:14:49,080 --> 00:14:54,760 +left. What is it? That now he drew the line. Now + +257 +00:14:54,760 --> 00:14:57,440 +he has to change the starting point. The ending + +258 +00:14:57,440 --> 00:14:59,940 +point that reached him now is the starting point. + +259 +00:15:00,160 --> 00:15:03,040 +And the time that reached him now is the ending + +260 +00:15:03,040 --> 00:15:06,040 +point. The starting point as well. So we tell him + +261 +00:15:06,040 --> 00:15:09,880 +this gate that start x will change to e dot gate + +262 +00:15:09,880 --> 00:15:14,580 +x. So that he starts calculating a new line. Am I + +263 +00:15:14,580 --> 00:15:23,610 +right guys? And endand start y will be E dot get y + +264 +00:15:23,610 --> 00:15:35,070 +and start time is the current time + +265 +00:15:35,070 --> 00:15:39,430 +ok + +266 +00:15:39,430 --> 00:15:42,030 +and as long as I am doing drugs, I go back to what + +267 +00:15:42,030 --> 00:15:46,740 +I didread current time and compare current time + +268 +00:15:46,740 --> 00:15:51,020 +with who if it reaches 100 seconds, I draw a new + +269 +00:15:51,020 --> 00:15:54,680 +line and at the end point I save it again as a + +270 +00:15:54,680 --> 00:15:58,420 +starting point and starting time because until now + +271 +00:15:58,420 --> 00:16:01,160 +we have not talked about command pattern at all + +272 +00:16:01,160 --> 00:16:03,560 +because it is supposed that after this moment if I + +273 +00:16:03,560 --> 00:16:09,110 +runOkay? Did you see what's supposed to happen? He + +274 +00:16:09,110 --> 00:16:13,970 +draws the line, but the undo and redo aren't + +275 +00:16:13,970 --> 00:16:17,870 +working yet. We're going to start applying the + +276 +00:16:17,870 --> 00:16:20,390 +command pattern now. The first thing in applying + +277 +00:16:20,390 --> 00:16:22,170 +the command pattern is that it creates an + +278 +00:16:22,170 --> 00:16:25,610 +interface that represents all kinds of commands + +279 +00:16:25,610 --> 00:16:27,790 +that I have, and from it it creates a concrete + +280 +00:16:27,790 --> 00:16:28,830 +command. + +281 +00:16:30,810 --> 00:16:35,410 +Because I want to make a class or interface called + +282 +00:16:35,410 --> 00:16:41,230 +draw command Okay, + +283 +00:16:41,690 --> 00:16:45,830 +I want to put this interface in the previous + +284 +00:16:45,830 --> 00:16:50,210 +lecture we did method execute But this time I want + +285 +00:16:50,210 --> 00:16:54,790 +to do two methods execute and unexecute So every + +286 +00:16:54,790 --> 00:16:56,970 +command I want to do and I want to specify how + +287 +00:16:56,970 --> 00:17:01,500 +this command is executed and how it is cancelledI + +288 +00:17:01,500 --> 00:17:03,800 +drew a line and I need to decide how to erase it. + +289 +00:17:04,520 --> 00:17:06,580 +I wrote a letter and I need to decide how to erase + +290 +00:17:06,580 --> 00:17:10,640 +it. Ok? Ok, this is the draw command and this is + +291 +00:17:10,640 --> 00:17:14,600 +the interface. Let's start making commands. Like I + +292 +00:17:14,600 --> 00:17:17,860 +used to buy stocks, sell stocks, open a company. + +293 +00:17:19,480 --> 00:17:22,700 +Here in my program I have command 1 which is line + +294 +00:17:22,700 --> 00:17:26,520 +draw command. right or not or any line command + +295 +00:17:26,520 --> 00:17:29,480 +let's call it this doesn't draw what? doesn't draw + +296 +00:17:29,480 --> 00:17:32,120 +anything this we want to make it a kind of draw + +297 +00:17:32,120 --> 00:17:40,940 +command so we say implement draw command + +298 +00:17:40,940 --> 00:17:44,440 +ok + +299 +00:17:44,440 --> 00:17:48,420 +guys now the second point that we agreed on is + +300 +00:17:48,420 --> 00:17:50,940 +that any command we have to put inside all the + +301 +00:17:50,940 --> 00:17:55,470 +necessary information to execute the process for + +302 +00:17:55,470 --> 00:17:58,750 +example, let's go back and remember that in the + +303 +00:17:58,750 --> 00:18:02,490 +buy shares command we sent him all the necessary + +304 +00:18:02,490 --> 00:18:04,310 +attributes to buy his shares and we also sent him + +305 +00:18:04,310 --> 00:18:07,870 +the stock market mean which is necessary to + +306 +00:18:07,870 --> 00:18:11,410 +execute + +307 +00:18:11,410 --> 00:18:14,670 +the purchase process the same thing, I go back to + +308 +00:18:14,670 --> 00:18:18,030 +the light command I want to do in it I send him + +309 +00:18:18,030 --> 00:18:19,390 +all the necessary information what are the + +310 +00:18:19,390 --> 00:18:24,020 +necessary information? there is in the start xand + +311 +00:18:24,020 --> 00:18:29,180 +start y which is the starting point and end x and + +312 +00:18:29,180 --> 00:18:31,980 +end y these are the necessary information for + +313 +00:18:31,980 --> 00:18:36,760 +drawing and we also need to make a constructor + +314 +00:18:36,760 --> 00:18:42,440 +line command and send him an object of the type + +315 +00:18:42,440 --> 00:18:44,980 +graphics did you notice that he will not be able + +316 +00:18:44,980 --> 00:18:47,860 +to draw anything except through who guys? through + +317 +00:18:47,860 --> 00:18:51,520 +graphics just like the buy shares could not do + +318 +00:18:51,520 --> 00:18:57,540 +anything except throughstock market and here also + +319 +00:18:57,540 --> 00:19:04,740 +we can say graphics graphics + +320 +00:19:04,740 --> 00:19:08,440 +g for example and here we can say this dot g is + +321 +00:19:08,440 --> 00:19:12,860 +equal to g let's + +322 +00:19:12,860 --> 00:19:15,660 +go to execute and unexecute when I say execute + +323 +00:19:15,660 --> 00:19:18,480 +execute the process how will it execute? it will + +324 +00:19:18,480 --> 00:19:22,640 +go to g and it will say what? draw line + +325 +00:19:24,360 --> 00:19:31,420 +and give him start x start + +326 +00:19:31,420 --> 00:19:38,960 +y and end x and end y ok, there is unexecute we + +327 +00:19:38,960 --> 00:19:41,800 +cancel the drawing of the line so the idea is + +328 +00:19:41,800 --> 00:19:44,480 +simple when I draw the line I want to draw it in + +329 +00:19:44,480 --> 00:19:47,620 +black color for example when I cancel the line I + +330 +00:19:47,620 --> 00:19:50,020 +want to draw with the same line but in the back + +331 +00:19:50,020 --> 00:19:52,620 +colorOkay, the background is white for example, + +332 +00:19:52,880 --> 00:19:55,660 +I'll let him draw in white So actually the execute + +333 +00:19:55,660 --> 00:19:59,580 +will go to the graphics and tell him set color to + +334 +00:19:59,580 --> 00:20:07,460 +draw in black Okay, the unexecute is the same + +335 +00:20:07,460 --> 00:20:14,500 +process But + +336 +00:20:14,500 --> 00:20:16,660 +he wants to do it in the background color of the + +337 +00:20:16,660 --> 00:20:23,410 +screen, which is white for exampleطبعا هدع مثال + +338 +00:20:23,410 --> 00:20:28,710 +رسم ال line أي خطوة تانية انت حابب تتراجع عنها بدك + +339 +00:20:28,710 --> 00:20:33,140 +تحدد كيف تنعمل الخطوة و كيف انا ايش ألغيها If you + +340 +00:20:33,140 --> 00:20:34,940 +wrote a character, you have to decide how to + +341 +00:20:34,940 --> 00:20:37,580 +remove this character. If you changed the + +342 +00:20:37,580 --> 00:20:40,040 +alignment of a line, you have to store the + +343 +00:20:40,040 --> 00:20:42,200 +previous line color and the next line color and + +344 +00:20:42,200 --> 00:20:43,980 +switch between them when you do unexecute and + +345 +00:20:43,980 --> 00:20:48,040 +return the previous numbers. Okay? So what does + +346 +00:20:48,040 --> 00:20:50,400 +this need? It needs a little programming thinking. + +347 +00:20:50,580 --> 00:20:53,660 +Every process determines how to do it and how to + +348 +00:20:53,660 --> 00:20:59,400 +implement it. Okay? Okay, then we have a class + +349 +00:20:59,400 --> 00:21:01,700 +called line command. It has everything necessary + +350 +00:21:02,600 --> 00:21:05,880 +to execute the operation, okay? So that now + +351 +00:21:05,880 --> 00:21:08,980 +whoever wants to use line command will not have to + +352 +00:21:08,980 --> 00:21:10,840 +go into any details, he will just go and claim + +353 +00:21:10,840 --> 00:21:14,640 +execute and unexecute. Because if we go back to + +354 +00:21:14,640 --> 00:21:18,280 +the drawing panel, because this is the line that + +355 +00:21:18,280 --> 00:21:20,940 +was drawn to claim the argument in it. Currently, + +356 +00:21:21,100 --> 00:21:24,420 +instead of this line, I want to create a line + +357 +00:21:24,420 --> 00:21:27,700 +command. Okay, now we're going to make a command + +358 +00:21:29,750 --> 00:21:36,610 +draw a line this C is equal to new line command + +359 +00:21:36,610 --> 00:21:40,050 +because the constructor needs graphics which is + +360 +00:21:40,050 --> 00:21:47,990 +this which we need to draw okay, + +361 +00:21:48,130 --> 00:21:50,530 +we sent him the graphics because also we need to + +362 +00:21:50,530 --> 00:21:53,990 +send him the other information which is C dot + +363 +00:21:53,990 --> 00:22:07,480 +start x which is start x end x or start y c + +364 +00:22:07,480 --> 00:22:14,700 +dot end x e + +365 +00:22:14,700 --> 00:22:27,950 +dot get x c dot end y E dot get get one These are + +366 +00:22:27,950 --> 00:22:33,290 +the necessary information for drawing Now I want + +367 +00:22:33,290 --> 00:22:38,290 +to execute the process, I say what? C dot execute + +368 +00:22:38,290 --> 00:22:42,570 +That is, instead of this line We made who? Line, + +369 +00:22:42,710 --> 00:22:45,110 +we gave information and made execute It will do + +370 +00:22:45,110 --> 00:22:48,070 +the same process, but the execute executes this + +371 +00:22:48,070 --> 00:22:51,230 +line So let's run the application + +372 +00:22:55,280 --> 00:22:59,300 +الان حاليا إيش بيعمل؟ هاي و قاعد برسم بس لسه برضه + +373 +00:22:59,300 --> 00:23:05,140 +ال undo و ال redo ماعملناهوش يعني + +374 +00:23:05,140 --> 00:23:08,840 +عشان نعمل ال undo و ال redo ضال علينا خطوة أنه + +375 +00:23:08,840 --> 00:23:13,100 +الأوامر هذه اللي إحنا بنعملها بدنا نخزنها تمام؟ + +376 +00:23:13,100 --> 00:23:15,220 +فروحنا بدنا نعمل class جديدة + +377 +00:23:17,960 --> 00:23:22,600 +اسمه drawing manager هذا هو اللي هيحتفظ في ال + +378 +00:23:22,600 --> 00:23:27,260 +commands و هينفذ عملية ال undo و ال redoThis is + +379 +00:23:27,260 --> 00:23:28,560 +similar to what we did in the last lecture. This + +380 +00:23:28,560 --> 00:23:31,320 +is similar to the class called the Stock Agent, + +381 +00:23:31,820 --> 00:23:37,800 +which stores orders and executes them. But his job + +382 +00:23:37,800 --> 00:23:40,080 +is different. It is not execute all. The example + +383 +00:23:40,080 --> 00:23:42,120 +in the last lecture was to store all the orders + +384 +00:23:42,120 --> 00:23:45,520 +and execute them later. This will store them all + +385 +00:23:45,520 --> 00:23:51,730 +and will repeat or repeat order after order.فروحنا + +386 +00:23:51,730 --> 00:23:54,510 +على drawing manager ونفس الفكرة في البداية أنه + +387 +00:23:54,510 --> 00:24:03,970 +بعمل فيه array list من نوع draw command هاي + +388 +00:24:03,970 --> 00:24:07,650 +commands يساوي new array list + +389 +00:24:21,920 --> 00:24:25,360 +Okay, now in the drawing manager, we want to + +390 +00:24:25,360 --> 00:24:31,920 +create a method public void add draw command to + +391 +00:24:31,920 --> 00:24:42,380 +add to the list Okay, here is draw command C Okay + +392 +00:24:42,380 --> 00:24:46,980 +guys, then here I will create two methods which is + +393 +00:24:46,980 --> 00:24:47,280 +undo + +394 +00:24:50,840 --> 00:24:59,660 +public void redo Now + +395 +00:24:59,660 --> 00:25:04,490 +pay attention to how we execute undo and redoNow + +396 +00:25:04,490 --> 00:25:07,170 +guys, we have agreed that what happens next is + +397 +00:25:07,170 --> 00:25:10,170 +that he will have a list and commands will be + +398 +00:25:10,170 --> 00:25:15,730 +stored in it. Each command stored here represents + +399 +00:25:15,730 --> 00:25:19,470 +a line, a part of this drawing, with all its + +400 +00:25:19,470 --> 00:25:22,490 +information, the starting point, the ending point + +401 +00:25:22,490 --> 00:25:25,730 +and the line, right? Okay, so each one represents + +402 +00:25:25,730 --> 00:25:31,880 +a part because I reallyI'm not going to add these + +403 +00:25:31,880 --> 00:25:32,940 +things, I'm going to keep them in my inventory. + +404 +00:25:33,020 --> 00:25:35,800 +This is the whole history. So I want to have an + +405 +00:25:35,800 --> 00:25:38,620 +indicator called index. In the first place, the + +406 +00:25:38,620 --> 00:25:42,920 +index is where? One minus its value. Before. The + +407 +00:25:42,920 --> 00:25:45,240 +first line I add, of course there are no lines + +408 +00:25:45,240 --> 00:25:49,020 +yet, there are no commands here, okay? The first + +409 +00:25:49,020 --> 00:25:52,660 +line I add, I put the index where? The index is + +410 +00:25:52,660 --> 00:25:55,960 +here. It means that every new line is added to its + +411 +00:25:55,960 --> 00:26:00,460 +index.We have to go up a step until we get to + +412 +00:26:00,460 --> 00:26:08,440 +where? To here. Who is here? The index. Now we + +413 +00:26:08,440 --> 00:26:12,160 +have to start undoing. Undo what? The last line we + +414 +00:26:12,160 --> 00:26:16,420 +did, we have to cancel it. Right or not? So we + +415 +00:26:16,420 --> 00:26:19,080 +have to tell him to see where the index is. And + +416 +00:26:19,080 --> 00:26:22,800 +bring the command that he has. And execute what? + +417 +00:26:24,000 --> 00:26:29,520 +UNHe doesn't know what it means. He will give him + +418 +00:26:29,520 --> 00:26:32,180 +the commands that he has and store them in + +419 +00:26:32,180 --> 00:26:35,740 +objects. But he does execute and un-execute. This + +420 +00:26:35,740 --> 00:26:36,960 +is the advantage that it has nothing to do with + +421 +00:26:36,960 --> 00:26:39,920 +the details. The details are stored inside the + +422 +00:26:39,920 --> 00:26:44,620 +object. He does un-execute. And then don't forget + +423 +00:26:44,620 --> 00:26:49,940 +to return the index one step forward. So now the + +424 +00:26:49,940 --> 00:26:53,060 +command was done un-execute and the index returned + +425 +00:26:53,060 --> 00:26:59,290 +one step forward. We want to doundo again what is + +426 +00:26:59,290 --> 00:27:03,050 +already in the index also execute and undo execute + +427 +00:27:03,050 --> 00:27:05,630 +and undo and undo and undo and undo and undo and + +428 +00:27:05,630 --> 00:27:06,270 +undo and undo and undo and undo and undo and undo + +429 +00:27:06,270 --> 00:27:10,650 +and undo and undo and undo and undo and undo and + +430 +00:27:10,650 --> 00:27:11,450 +undo and undo and undo and undo and undo and undo + +431 +00:27:11,450 --> 00:27:11,730 +and undo and undo and undo and undo and undo and + +432 +00:27:11,730 --> 00:27:11,730 +undo and undo and undo and undo and undo and undo + +433 +00:27:11,730 --> 00:27:11,750 +and undo and undo and undo and undo and undo and + +434 +00:27:11,750 --> 00:27:11,750 +undo and undo and undo and undo and undo and undo + +435 +00:27:11,750 --> 00:27:11,750 +and undo and undo and undo and undo and undo and + +436 +00:27:11,750 --> 00:27:11,950 +undo and undo and undo and undo and undo and undo + +437 +00:27:11,950 --> 00:27:11,950 +and undo and undo and undo and undo and undo and + +438 +00:27:11,950 --> 00:27:11,950 +undo and undo and undo and undo and undo and undo + +439 +00:27:11,950 --> 00:27:11,950 +and undo and undo and undo and undo and undo and + +440 +00:27:11,950 --> 00:27:11,950 +undo and undo and undo and undo and undo and undo + +441 +00:27:11,950 --> 00:27:11,970 +and undo and undo and undo and undo and undo and + +442 +00:27:11,970 --> 00:27:11,970 +undo and undo and undo and undo and undo and undo + +443 +00:27:11,970 --> 00:27:11,970 +and undo and undo and undo and undo and undo and + +444 +00:27:11,970 --> 00:27:11,970 +undo and undo and undo and undo and undo and undo + +445 +00:27:11,970 --> 00:27:18,810 +and undo and undo and undo and undo and + +446 +00:27:18,810 --> 00:27:18,810 +undo and undo + +447 +00:27:22,490 --> 00:27:24,170 +Notice that I'm not deleting anything from what's + +448 +00:27:24,170 --> 00:27:26,930 +already there, but I'm moving what? The index. Ok, + +449 +00:27:27,070 --> 00:27:28,670 +so what do I have to do here? First, I have to go + +450 +00:27:28,670 --> 00:27:32,150 +to the drawing manager, it has to have private int + +451 +00:27:32,150 --> 00:27:36,290 +index value minus one. + +452 +00:27:40,270 --> 00:27:42,870 +Because when I say undo, I have to say the + +453 +00:27:42,870 --> 00:27:48,630 +following, as long as the index is greater than + +454 +00:27:51,420 --> 00:27:53,920 +minus one, which is how long will it continue to + +455 +00:27:53,920 --> 00:27:58,540 +undo? until zero, okay? So as long as it is more + +456 +00:27:58,540 --> 00:28:01,180 +than minus one, we want to carry out the process + +457 +00:28:01,180 --> 00:28:02,620 +that we are going to do now, which is what we are + +458 +00:28:02,620 --> 00:28:04,700 +going to do, we are going to take, now the index + +459 +00:28:04,700 --> 00:28:06,960 +indicates here, right? We want to take this + +460 +00:28:06,960 --> 00:28:10,600 +element and make it unexecuted. So I want to tell + +461 +00:28:10,600 --> 00:28:14,940 +him to go to the command and tell him get this + +462 +00:28:14,940 --> 00:28:18,420 +element that is present at whom? At the index and + +463 +00:28:18,420 --> 00:28:23,970 +do what?unexecute and don't forget to start from + +464 +00:28:23,970 --> 00:28:33,510 +index 1 because the redo process if the index is + +465 +00:28:33,510 --> 00:28:43,310 +smaller than commands.size-1 it's still in place, + +466 +00:28:43,790 --> 00:28:47,110 +it didn't finish the sentence, okay? increase the + +467 +00:28:47,110 --> 00:28:54,900 +index by 1right? he was here we need to go back to + +468 +00:28:54,900 --> 00:28:56,600 +the process we need to increase the index by one + +469 +00:28:56,600 --> 00:29:01,540 +and then we say commands.hatley the command that + +470 +00:29:01,540 --> 00:29:07,520 +is present in the index and say execute we are + +471 +00:29:07,520 --> 00:29:13,650 +doneخلصنا مين؟ ال class اسمها ال drawing manager + +472 +00:29:13,650 --> 00:29:17,450 +اللي هو المسئول عن ال undo و ال redo لإن هذا ال + +473 +00:29:17,450 --> 00:29:20,110 +drawing manager أنشأنا ال class بس ما استخدمناها + +474 +00:29:20,110 --> 00:29:25,230 +فبنروح ل ال frame الأساسي في التطبيق و فوق فيها + +475 +00:29:25,230 --> 00:29:31,090 +نعمل object من نوع drawing manager هى سميناه إيش + +476 +00:29:31,090 --> 00:29:34,110 +manager و هنا manager + +477 +00:29:39,860 --> 00:29:46,280 +new drawing manager now this manager doesn't + +478 +00:29:46,280 --> 00:29:50,100 +forget that while I'm drawing I have to add + +479 +00:29:50,100 --> 00:29:53,920 +commands to it which means that we also need it to + +480 +00:29:53,920 --> 00:29:57,580 +reach the drawing panel okay so this is the same + +481 +00:29:57,580 --> 00:30:01,900 +manager we have to send him to the next class + +482 +00:30:01,900 --> 00:30:04,650 +which is the drawing panelOkay, because this is + +483 +00:30:04,650 --> 00:30:07,110 +what has the listener on the mouse, and what it + +484 +00:30:07,110 --> 00:30:09,450 +has is the drawing process. So in its constructor, + +485 +00:30:09,770 --> 00:30:12,090 +we passed to whom? The manager. There is a + +486 +00:30:12,090 --> 00:30:14,010 +mistake, of course, why? Because the drawing panel + +487 +00:30:14,010 --> 00:30:19,010 +is still okay, its constructor is empty. So did + +488 +00:30:19,010 --> 00:30:19,910 +you find out what the idea is? We created the + +489 +00:30:19,910 --> 00:30:22,670 +drawing manager in the main frame, and we passed + +490 +00:30:22,670 --> 00:30:25,690 +it to whom? To the drawing panel. So here we want + +491 +00:30:25,690 --> 00:30:30,030 +to make an object of the type drawing manager, its + +492 +00:30:30,030 --> 00:30:38,440 +name is manager.وهنا بقوله ال + +493 +00:30:38,440 --> 00:30:42,520 +constructor صار ياخد argument من نوع manager و + +494 +00:30:42,520 --> 00:30:49,320 +بقوله this dot manager يساوي manager لأن + +495 +00:30:49,320 --> 00:30:52,500 +ليش بدي أعمل هيك؟ على أساس الآن وين الخطوة اللي + +496 +00:30:52,500 --> 00:30:57,480 +أنشأت فيها الأمر؟ هي ال line command صح؟ أنشأت ال + +497 +00:30:57,480 --> 00:31:02,720 +line و رسمتهأنا بدي أرسمه و في نفس اللحظة بدي أروح + +498 +00:31:02,720 --> 00:31:09,360 +لل manager و بقولله add, draw, command و بضيف مين + +499 +00:31:09,360 --> 00:31:16,220 +ال command لأن أنا طول ما هو برسم أي خط أي قطعة + +500 +00:31:16,220 --> 00:31:20,340 +بتم رسمها برسمها عمل execute و راح أضافها أيضا على + +501 +00:31:20,340 --> 00:31:23,320 +مين على ال manager تمام؟ + +502 +00:31:25,410 --> 00:31:27,470 +because it remains a step that when I press the + +503 +00:31:27,470 --> 00:31:31,030 +undo and redo button, what does it do? Okay? So in + +504 +00:31:31,030 --> 00:31:34,210 +the main page, I have action for the two buttons, + +505 +00:31:34,570 --> 00:31:39,470 +which is to press undo or redo. So when I press + +506 +00:31:39,470 --> 00:31:42,550 +undo, only what does it do? I go to the manager + +507 +00:31:42,550 --> 00:31:49,310 +and do what? Undo. And when I do redo, I go to the + +508 +00:31:49,310 --> 00:31:53,510 +manager and do redo. + +509 +00:31:55,180 --> 00:31:58,140 +And this is how we become what? We're done, let's + +510 +00:31:58,140 --> 00:32:03,360 +run the application now. + +511 +00:32:05,180 --> 00:32:08,780 +Now, any piece that I draw, what does it do now? + +512 +00:32:08,800 --> 00:32:11,700 +It draws it and stores it where? In the array + +513 +00:32:11,700 --> 00:32:16,240 +list. Because undo? Yes, it still has a problem. + +514 +00:32:20,400 --> 00:32:22,160 +Because where is the problem? Is it the manager? + +515 +00:32:25,670 --> 00:32:45,670 +أه أقولك لحظة Hydrogen manager طيب + +516 +00:32:45,670 --> 00:32:46,170 +المفروض + +517 +00:33:03,320 --> 00:33:06,820 +طيب تعالوا نتبع الخطأ اللي صار لإن لو قلنا أنا + +518 +00:33:06,820 --> 00:33:09,940 +عندي undo بدي أطبع رسالة، المفروض أنه .. + +519 +00:33:27,160 --> 00:33:32,840 +لأن هاي ال undo بنفذها طيب نرجع نتبع أيضا اللي هو + +520 +00:33:32,840 --> 00:33:46,880 +ال undo هات نحطها جوا هنا نتأكد إيش آه + +521 +00:33:46,880 --> 00:33:52,860 +يبقى مادخلش جوا إيش جوا ال F الساتن لأن إذا ال + +522 +00:33:52,860 --> 00:33:58,030 +index طيب ليش آه هاي الغلطIn fact, every time I + +523 +00:33:58,030 --> 00:34:01,870 +add a command, I add who? The index. The index + +524 +00:34:01,870 --> 00:34:04,930 +should always point to whom? To the last command + +525 +00:34:04,930 --> 00:34:10,290 +available. Okay? This is the existing error. Now, + +526 +00:34:10,610 --> 00:34:13,950 +the word print does not matter anymore. Let's run + +527 +00:34:13,950 --> 00:34:14,350 +it. + +528 +00:34:20,920 --> 00:34:31,720 +undo then reado then draw the lines ok + +529 +00:34:31,720 --> 00:34:38,860 +guys? let's drop the + +530 +00:34:38,860 --> 00:34:41,520 +UML class diagram of the command on the parts of + +531 +00:34:41,520 --> 00:34:44,620 +the program that we created actually the command + +532 +00:34:44,620 --> 00:34:46,800 +this interface or the abstract class represents + +533 +00:34:46,800 --> 00:34:50,560 +the draw commandThe concrete command represents + +534 +00:34:50,560 --> 00:34:53,400 +the line command. The state that exists in the + +535 +00:34:53,400 --> 00:34:55,580 +concrete command represents all the necessary data + +536 +00:34:55,580 --> 00:34:59,600 +for the command, which is the starting point, the + +537 +00:34:59,600 --> 00:35:03,380 +end point, the graphics. Okay? Here we did execute + +538 +00:35:03,380 --> 00:35:06,620 +and unexecute. The receiver, who represents it? + +539 +00:35:06,680 --> 00:35:08,840 +Which is the actual way of execution. Who executes + +540 +00:35:08,840 --> 00:35:14,000 +it? Who is it? The graphics are executed.In my + +541 +00:35:14,000 --> 00:35:16,160 +example, I went to the graphics and told it to + +542 +00:35:16,160 --> 00:35:20,240 +draw a line, which is this receiver. Because the + +543 +00:35:20,240 --> 00:35:24,420 +invoker, who represents him? Who says what in our + +544 +00:35:24,420 --> 00:35:28,720 +example? The drawing manager, who actually takes + +545 +00:35:28,720 --> 00:35:32,820 +the commands and stores them in his list.and does + +546 +00:35:32,820 --> 00:35:35,600 +undo, redo, execute and unexecute without knowing + +547 +00:35:35,600 --> 00:35:38,320 +anything about the details of the execution Notice + +548 +00:35:38,320 --> 00:35:39,880 +that the invoker does not know about the details + +549 +00:35:39,880 --> 00:35:45,100 +of the receiver and how it is executed Okay guys? + +550 +00:35:48,800 --> 00:35:51,500 +Now the last point that I want to explain is the + +551 +00:35:51,500 --> 00:35:53,940 +process of undo and redo Because here it tells me + +552 +00:35:53,940 --> 00:35:56,860 +in the slide that the process of undo and redo is + +553 +00:35:56,860 --> 00:36:00,980 +usually executed in programs in two waysand + +554 +00:36:00,980 --> 00:36:02,840 +usually they use the command pattern that we saw + +555 +00:36:02,840 --> 00:36:06,680 +to execute it but we have a problem with it which + +556 +00:36:06,680 --> 00:36:09,920 +is how to avoid executing the command there are + +557 +00:36:09,920 --> 00:36:12,600 +two ways, the way that we followed which is the + +558 +00:36:12,600 --> 00:36:16,660 +second point which is that you determine which + +559 +00:36:16,660 --> 00:36:18,700 +algorithm is necessary to execute the command and + +560 +00:36:18,700 --> 00:36:20,440 +which is the inverse algorithm which is the + +561 +00:36:20,440 --> 00:36:24,520 +inverse algorithm which is its opposite as I drew + +562 +00:36:24,520 --> 00:36:26,880 +a line and drew another line on it but in white + +563 +00:36:28,300 --> 00:36:30,180 +because this thing about how to reverse the + +564 +00:36:30,180 --> 00:36:33,220 +algorithm doesn't always work out, it's not always + +565 +00:36:33,220 --> 00:36:38,220 +easy. The other option is, for example, to execute + +566 +00:36:38,220 --> 00:36:42,240 +undo and redo, we go and save the entire state of + +567 +00:36:42,240 --> 00:36:47,900 +the objectSo now I want to make a new command, + +568 +00:36:48,380 --> 00:36:50,900 +before I make a new command, it takes the state of + +569 +00:36:50,900 --> 00:36:53,280 +the object and saves it as a whole. For example, a + +570 +00:36:53,280 --> 00:36:56,860 +picture, I want to edit it, before I edit the + +571 +00:36:56,860 --> 00:37:00,000 +picture, I save it as a whole, then I edit it, + +572 +00:37:00,500 --> 00:37:03,500 +after each edit, I save a whole copy of the + +573 +00:37:03,500 --> 00:37:06,540 +picture, so that when I tell it undo, it returns + +574 +00:37:06,540 --> 00:37:10,200 +the previous copy.This is easier programmatically + +575 +00:37:10,200 --> 00:37:12,800 +because you don't have to think about how to do + +576 +00:37:12,800 --> 00:37:16,500 +the inverse algorithm, but it takes a lot of + +577 +00:37:16,500 --> 00:37:19,880 +memory. Okay? Our method is more difficult + +578 +00:37:19,880 --> 00:37:21,340 +programmatically because you have to think about + +579 +00:37:21,340 --> 00:37:24,040 +how to do the inverse algorithm, but it saves a + +580 +00:37:24,040 --> 00:37:28,560 +lot of memory. In any case, you can do it with the + +581 +00:37:28,560 --> 00:37:31,880 +command pattern. Even if it was to save the state + +582 +00:37:31,880 --> 00:37:36,140 +in execute, you execute the process and take the + +583 +00:37:36,140 --> 00:37:39,260 +entire object and save it in memory.Or in a + +584 +00:37:39,260 --> 00:37:43,820 +database or on a local storage. In undo, you load + +585 +00:37:43,820 --> 00:37:46,680 +the file to the object and you reload it again. + +586 +00:37:47,940 --> 00:37:52,300 +Okay? So in both ways, we implement or use the + +587 +00:37:52,300 --> 00:37:54,520 +command pattern that makes it easier for you to + +588 +00:37:54,520 --> 00:37:57,140 +actuallyIt takes a lot of time and effort to do it + +589 +00:37:57,140 --> 00:37:59,640 +without knowing the details of the order itself. + +590 +00:38:00,700 --> 00:38:04,400 +For example, if we draw a line, we can tell the + +591 +00:38:04,400 --> 00:38:08,660 +artist to add text, lines, change colors, and each + +592 +00:38:08,660 --> 00:38:12,060 +process must determine how it was done and how to + +593 +00:38:12,060 --> 00:38:14,560 +cancel its execution. In the end, the drawing + +594 +00:38:14,560 --> 00:38:17,080 +manager takes all the commands, regardless of + +595 +00:38:17,080 --> 00:38:21,220 +their types, and executes and unexecutes them + +596 +00:38:21,220 --> 00:38:23,480 +without knowing the details. + +597 +00:38:26,230 --> 00:38:29,110 +The main advantage of the command design pattern + +598 +00:38:29,110 --> 00:38:35,510 +is that it decouples the object that invokes the + +599 +00:38:35,510 --> 00:38:38,090 +operation from the one that knows how to perform + +600 +00:38:38,090 --> 00:38:41,880 +it.I mean, I separate the object that dictates the + +601 +00:38:41,880 --> 00:38:45,360 +operation, which is the command itself that + +602 +00:38:45,360 --> 00:38:48,420 +executes and unexecutes from the object that + +603 +00:38:48,420 --> 00:38:51,740 +actually executes, which is the stock market, + +604 +00:38:51,840 --> 00:38:53,960 +which is the graphics that draws and knows the + +605 +00:38:53,960 --> 00:38:57,980 +details of executionThe meaning of this sentence + +606 +00:38:57,980 --> 00:39:01,680 +is that the invoker of the drawing manager + +607 +00:39:01,680 --> 00:39:03,740 +executes the commands and returns them and + +608 +00:39:03,740 --> 00:39:07,140 +executes them again by executing and executing + +609 +00:39:07,140 --> 00:39:09,180 +without getting involved in any details of + +610 +00:39:09,180 --> 00:39:12,300 +execution. So the object that invokes the + +611 +00:39:12,300 --> 00:39:14,800 +operation, which is the drawing manager or the + +612 +00:39:14,800 --> 00:39:16,980 +stock agent does not know anything about the + +613 +00:39:16,980 --> 00:39:19,220 +object that actually executes, which is the stock + +614 +00:39:19,220 --> 00:39:23,620 +market or graphics.So you add new commands and + +615 +00:39:23,620 --> 00:39:26,720 +change execution methods, but the agent itself or + +616 +00:39:26,720 --> 00:39:29,100 +the drawing manager, his implementation does not + +617 +00:39:29,100 --> 00:39:32,720 +affect him, it does not change, okay? I say, of + +618 +00:39:32,720 --> 00:39:34,460 +course, the last sentence, that there are some + +619 +00:39:34,460 --> 00:39:37,120 +implementations for the command design pattern in + +620 +00:39:37,120 --> 00:39:44,280 +which the invoker knows about the receiver and + +621 +00:39:44,280 --> 00:39:46,200 +this design is wrong, they are supposed to be + +622 +00:39:46,200 --> 00:39:47,560 +separated from each other and do not know anything + +623 +00:39:47,560 --> 00:39:51,520 +about each other.ok guys, this is for the command + +624 +00:39:51,520 --> 00:39:54,860 +pattern, we took two examples of it, one is the + +625 +00:39:54,860 --> 00:39:56,880 +first example of how to make a queue of commands + +626 +00:39:56,880 --> 00:39:59,780 +to implement them later, which is the example of + +627 +00:39:59,780 --> 00:40:01,980 +the stock market, and the second example is how to + +628 +00:40:01,980 --> 00:40:07,020 +use the command to apply the undo and redo. The + +629 +00:40:07,020 --> 00:40:09,880 +last part now guys, of course there is a duty that + +630 +00:40:09,880 --> 00:40:13,120 +will come down to this topic, don't worry, I will + +631 +00:40:13,120 --> 00:40:17,960 +open the new duty at the end of the exams on the + +632 +00:40:17,960 --> 00:40:21,340 +subject of the command pattern.Tamam؟ الواجب + +633 +00:40:21,340 --> 00:40:22,940 +الجديد هذا بس نفرجيكوا إياه + +634 +00:40:35,010 --> 00:40:37,570 +Okay, look at this program, guys. We want to make + +635 +00:40:37,570 --> 00:40:42,650 +a program like this. It is an input square, I add + +636 +00:40:42,650 --> 00:40:47,010 +names of people, then I say add to add the name to + +637 +00:40:47,010 --> 00:40:49,870 +the list here. A simple example. So I added Ahmed, + +638 +00:40:49,950 --> 00:40:52,910 +I said add him, he put it here. Because he is + +639 +00:40:52,910 --> 00:40:54,650 +sitting, what is he doing? He wants to add names. + +640 +00:40:55,290 --> 00:40:59,170 +Ali added him. Omar + +641 +00:41:03,280 --> 00:41:05,820 +and Amal, because we have undo and redo here, look + +642 +00:41:05,820 --> 00:41:08,600 +when we do undo, what will he do? The last noun in + +643 +00:41:08,600 --> 00:41:11,000 +the plural, which is Amal, he will remove it and + +644 +00:41:11,000 --> 00:41:14,020 +put it back where? On this shelf, he will undo + +645 +00:41:14,020 --> 00:41:16,900 +again, he will remove Omar and put him back again, + +646 +00:41:17,680 --> 00:41:20,160 +also undo, remove Ali and put him up, Ahmed + +647 +00:41:20,160 --> 00:41:22,900 +remained, then redo, he brings Ali and puts him + +648 +00:41:22,900 --> 00:41:24,540 +back, Omar is up + +649 +00:41:28,500 --> 00:41:33,360 +كما أريده هيرجع عيش عمر وكتب أمل فوق So think + +650 +00:41:33,360 --> 00:41:40,280 +about how you can do actions like undo and redo I + +651 +00:41:40,280 --> 00:41:42,640 +don't think you've ever tried undo and redo, + +652 +00:41:42,700 --> 00:41:44,900 +right? You won't find it in the applications And + +653 +00:41:44,900 --> 00:41:46,360 +you're a programmer, you should know how to do + +654 +00:41:46,360 --> 00:41:49,880 +undo and redo Try this example, how to apply the + +655 +00:41:49,880 --> 00:41:53,620 +idea of undo and redo in the same way that we did + +656 +00:41:53,620 --> 00:41:56,880 +Okay guys, God bless you + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/bWXrVQTqtCw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/bWXrVQTqtCw.srt new file mode 100644 index 0000000000000000000000000000000000000000..114639d265fe4bea05e0b45d7cf068325b7c58bd --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/bWXrVQTqtCw.srt @@ -0,0 +1,2790 @@ + +1 +00:00:07,450 --> 00:00:12,050 +In the last lecture, we introduced a new design + +2 +00:00:12,050 --> 00:00:15,790 +pattern which is the singleton design pattern. And + +3 +00:00:15,790 --> 00:00:21,410 +we said that sometimes I have to create one object + +4 +00:00:21,410 --> 00:00:25,230 +from the class and use it everywhere in the + +5 +00:00:25,230 --> 00:00:28,620 +application. Now we are used to say that when you + +6 +00:00:28,620 --> 00:00:30,500 +have a class, you create the object by using the + +7 +00:00:30,500 --> 00:00:34,840 +UI. Right or not? But sometimes it is negative that + +8 +00:00:34,840 --> 00:00:37,180 +if you create this object in different places in + +9 +00:00:37,180 --> 00:00:40,060 +the application. For example, I gave an example in + +10 +00:00:40,060 --> 00:00:41,360 +a previous lecture that I want to make a + +11 +00:00:41,360 --> 00:00:43,680 +connection to the database. Of course, if you have + +12 +00:00:43,680 --> 00:00:45,340 +multiple screens in the application and from each + +13 +00:00:45,340 --> 00:00:48,600 +screen. You will need to get information from the + +14 +00:00:48,600 --> 00:00:51,080 +database or to insert information in the database. + +15 +00:00:51,080 --> 00:00:53,160 +So, you will need to make a connection to the + +16 +00:00:53,160 --> 00:00:57,230 +database. Because of this connection in every + +17 +00:00:57,230 --> 00:01:00,410 +screen that you create will be negative because + +18 +00:01:00,410 --> 00:01:04,790 +this connection takes from resources, memory and + +19 +00:01:04,790 --> 00:01:07,930 +processing time. So, it is better to create one + +20 +00:01:07,930 --> 00:01:12,690 +object and use it everywhere in the application. I + +21 +00:01:12,690 --> 00:01:15,810 +also connect to API and create one object and use + +22 +00:01:15,810 --> 00:01:20,090 +it everywhere. I connect to this API and we will + +23 +00:01:20,090 --> 00:01:23,390 +see another example when I need to create one + +24 +00:01:23,390 --> 00:01:26,270 +object from a class and use it everywhere in the + +25 +00:01:26,270 --> 00:01:29,990 +application. Singleton Pattern in short helps me to + +26 +00:01:29,990 --> 00:01:34,430 +create if I have a class I can create an object + +27 +00:01:34,430 --> 00:01:38,270 +from it and use it anywhere in my application. Now, + +28 +00:01:38,610 --> 00:01:41,870 +how can I create an object and use it anywhere + +29 +00:01:41,870 --> 00:01:47,390 +else? For example, I have a class. I go inside this + +30 +00:01:47,390 --> 00:01:51,150 +class and create an object of type a which is + +31 +00:01:51,150 --> 00:01:56,730 +equal to new a. Now, I move to another class, this + +32 +00:01:56,730 --> 00:01:59,810 +is a screen for example, screen1 and this is + +33 +00:01:59,810 --> 00:02:04,600 +screen2. How do I use this object on the other + +34 +00:02:04,600 --> 00:02:07,120 +screen? Because if I introduce it again and say + +35 +00:02:07,120 --> 00:02:11,500 +new, it will create another object. But how do I + +36 +00:02:11,500 --> 00:02:17,170 +use this same object? The other way to use this A + +37 +00:02:17,170 --> 00:02:21,010 +is when I move to another screen, I pass this + +38 +00:02:21,010 --> 00:02:25,190 +object named A to another screen as a parameter. So + +39 +00:02:25,190 --> 00:02:28,290 +if this screen has a constructor named for example + +40 +00:02:28,290 --> 00:02:33,940 +screen2, I can pass it a parameter of type A which + +41 +00:02:33,940 --> 00:02:37,500 +is this object which I created here, you can train + +42 +00:02:37,500 --> 00:02:40,140 +it as a parameter to another screen or you can + +43 +00:02:40,140 --> 00:02:44,300 +have a method called setA and train it with + +44 +00:02:44,300 --> 00:02:48,280 +objectA, but + +45 +00:02:48,280 --> 00:02:51,540 +this will not solve the problem because the object + +46 +00:02:51,540 --> 00:02:54,500 +which you created you have to train it from class + +47 +00:02:54,500 --> 00:02:58,140 +to class to class. This way, you have coupling. This + +48 +00:02:58,140 --> 00:03:01,400 +is a negative thing. You linked them together like + +49 +00:03:01,400 --> 00:03:05,990 +this. Okay, before we go through the object, let's + +50 +00:03:05,990 --> 00:03:08,750 +see how we can achieve this thing. Create one + +51 +00:03:08,750 --> 00:03:12,010 +object and use it anywhere in the application. + +52 +00:03:12,550 --> 00:03:13,990 +Let's see the second example. + +53 +00:03:23,870 --> 00:03:25,010 +Now, if I suppose + +54 +00:03:30,700 --> 00:03:33,360 +I had a class whose name was, for example, phone + +55 +00:03:33,360 --> 00:03:37,840 +book, which + +56 +00:03:37,840 --> 00:03:39,740 +is like a phone number. Do you know what is a + +57 +00:03:39,740 --> 00:03:42,820 +phone number? It is the number of phones and the + +58 +00:03:42,820 --> 00:03:44,940 +names of these people. For example, to give me the + +59 +00:03:44,940 --> 00:03:49,500 +name, it gives me the phone number. And the proof + +60 +00:03:49,500 --> 00:03:51,960 +of these phones takes from their memory because it + +61 +00:03:51,960 --> 00:03:56,860 +is huge; there are thousands of names and numbers + +62 +00:03:56,860 --> 00:04:00,660 +on their phones and phones, so it can be stored in + +63 +00:04:00,660 --> 00:04:04,140 +a database or a file, and I make a note of it. So I + +64 +00:04:04,140 --> 00:04:05,980 +would like to have a class, a phone book, that + +65 +00:04:05,980 --> 00:04:08,320 +contains this information so that I can read from + +66 +00:04:08,320 --> 00:04:11,000 +it. For example, give me a name of a certain + +67 +00:04:11,000 --> 00:04:12,560 +person; give me his phone number. Give me, for + +68 +00:04:12,560 --> 00:04:16,680 +example, a state name, that gives me the key to the + +69 +00:04:16,680 --> 00:04:20,680 +state economy in it, for example. Okay? So, how do + +70 +00:04:20,680 --> 00:04:22,740 +I store information in the phone book? I'm going + +71 +00:04:22,740 --> 00:04:25,620 +to create a data structure called Hash Map. + +72 +00:04:30,220 --> 00:04:31,880 +Okay? I'm going to name it, for example, phone + +73 +00:04:31,880 --> 00:04:32,320 +codes. + +74 +00:04:35,120 --> 00:04:37,080 +Do you know what Hash Map is, guys? Did you get + +75 +00:04:37,080 --> 00:04:40,810 +it? The hash map is a data structure, but I don't + +76 +00:04:40,810 --> 00:04:42,990 +store information in it. I store two information + +77 +00:04:42,990 --> 00:04:46,510 +next to each other, key and value, on the basis + +78 +00:04:46,510 --> 00:04:48,150 +that I want to put the key, for example, the name + +79 +00:04:48,150 --> 00:04:49,970 +of the person or the name of the country, and the + +80 +00:04:49,970 --> 00:04:53,230 +value, the phone number, because the hash map is + +81 +00:04:53,230 --> 00:04:55,970 +not yet created. I did not create it, okay? So I + +82 +00:04:55,970 --> 00:05:02,050 +go and create a constructor called phonebook, this + +83 +00:05:02,050 --> 00:05:04,570 +is the constructor, from inside the constructor, I + +84 +00:05:04,570 --> 00:05:12,170 +say phone codes is equal to Hash map. Because I + +85 +00:05:12,170 --> 00:05:15,490 +want to fill the phone codes state by state, for + +86 +00:05:15,490 --> 00:05:22,290 +example, POT. For example, tell him US. The key of + +87 +00:05:22,290 --> 00:05:27,810 +the country to which you call 001. Phone codes POT. + +88 +00:05:27,810 --> 00:05:30,910 +For example, PS. + +89 +00:05:35,410 --> 00:05:43,350 +For example, the key is 00972 and so on. This is + +90 +00:05:43,350 --> 00:05:48,490 +expected to be repeated in many different + +91 +00:05:48,490 --> 00:05:54,150 +countries. Egypt, for example, UAE. + +92 +00:05:56,910 --> 00:06:02,590 +Anyway, different countries change the numbers + +93 +00:06:02,590 --> 00:06:04,310 +here. + +94 +00:06:09,800 --> 00:06:13,780 +Then, I want to create a variable named public + +95 +00:06:13,780 --> 00:06:20,180 +string named getCountryCode and give it a string + +96 +00:06:20,180 --> 00:06:29,480 +countryName and return phoneCodes + +97 +00:06:29,480 --> 00:06:35,100 +.getCountryName + +98 +00:06:39,010 --> 00:06:42,170 +So this method is the one that I didn't reach, + +99 +00:06:42,390 --> 00:06:46,490 +right? This should be private, okay? Through this + +100 +00:06:46,490 --> 00:06:48,830 +data, I give it the state name, and I go to the + +101 +00:06:48,830 --> 00:06:51,770 +phone codes, and I give it the state name, and I + +102 +00:06:51,770 --> 00:06:54,130 +give it the key to return the value. If I don't + +103 +00:06:54,130 --> 00:06:56,910 +have the key, why should I return it? Because we + +104 +00:06:56,910 --> 00:06:58,930 +created this phone book, but we didn't use it, + +105 +00:06:58,990 --> 00:07:02,910 +right? We have to go and use it. We go to the test + +106 +00:07:02,910 --> 00:07:04,350 +main method. + +107 +00:07:07,800 --> 00:07:11,100 +Of course, I have to create an object from the phone + +108 +00:07:11,100 --> 00:07:20,920 +book. P equals new phone book. Then, I say P, and + +109 +00:07:20,920 --> 00:07:27,480 +then P dot and I say get country code. For example, + +110 +00:07:27,480 --> 00:07:33,380 +I give it US and here system dot out dot print + +111 +00:07:36,300 --> 00:07:42,760 +USA or US. I put USA. Okay, + +112 +00:07:42,920 --> 00:07:47,160 +it will run and return the country code. Okay, now + +113 +00:07:47,160 --> 00:07:49,100 +the problem is not here, so far everything is fine, + +114 +00:07:49,100 --> 00:07:54,340 +but better than the method went. For example, I want + +115 +00:07:54,340 --> 00:07:55,780 +to open another screen or I want to open another + +116 +00:07:55,780 --> 00:07:59,300 +class. This is a new class; I named it for example + +117 +00:07:59,300 --> 00:08:00,020 +MainScreen. + +118 +00:08:06,480 --> 00:08:12,780 +This is the public main + +119 +00:08:12,780 --> 00:08:17,920 +screen. From my main, I told it to open the main + +120 +00:08:17,920 --> 00:08:29,420 +screen. This is the main screen. You + +121 +00:08:29,420 --> 00:08:30,840 +see that I am working inside the main and I + +122 +00:08:30,840 --> 00:08:34,060 +created an object inside the main. Because in the + +123 +00:08:34,060 --> 00:08:36,380 +main screen, from inside the main screen, you + +124 +00:08:36,380 --> 00:08:40,980 +don't need the phone, the phone book. So, how do I + +125 +00:08:40,980 --> 00:08:43,460 +get the phone book from here? You will have to + +126 +00:08:43,460 --> 00:08:46,000 +create a new object from it. You will say phone + +127 +00:08:46,000 --> 00:08:52,440 +book p equals new phone book. What does it mean to + +128 +00:08:52,440 --> 00:08:56,060 +create a new object? All the data it will start + +129 +00:08:56,060 --> 00:08:58,140 +loading from the beginning to the end. This is the + +130 +00:08:58,140 --> 00:08:59,420 +process of compilation that is present in the + +131 +00:08:59,420 --> 00:09:03,860 +constructor. It will repeat it again, and the code + +132 +00:09:03,860 --> 00:09:05,240 +is expected to load more. It can load from the + +133 +00:09:05,240 --> 00:09:10,860 +database, from the file. Is it okay? Can I use the + +134 +00:09:10,860 --> 00:09:16,240 +phone book that I made from the main? As I said, + +135 +00:09:16,400 --> 00:09:17,820 +it is optional. You can use the main; practice + +136 +00:09:17,820 --> 00:09:22,170 +using the main. For the main screen, you can put in + +137 +00:09:22,170 --> 00:09:26,310 +the constructor this parameter, that this is a + +138 +00:09:26,310 --> 00:09:29,890 +phone book, like this. And you can say directly + +139 +00:09:29,890 --> 00:09:32,030 +that this is what happened, the phone book should + +140 +00:09:32,030 --> 00:09:34,670 +come to the main screen as what? As a parameter. + +141 +00:09:34,750 --> 00:09:37,610 +And you can say that it is getp.getcountrycode and + +142 +00:09:37,610 --> 00:09:42,510 +say ps for example. And you print it. Of course, + +143 +00:09:42,650 --> 00:09:44,630 +if I add a parameter here, where do I make a + +144 +00:09:44,630 --> 00:09:47,430 +mistake? In the main. In the main. In the main, I + +145 +00:09:47,430 --> 00:09:48,390 +will find that it is necessary. I will tell you + +146 +00:09:48,390 --> 00:09:49,690 +what it is. It needs a parameter. This is the + +147 +00:09:49,690 --> 00:09:52,770 +first time. But let's say that training this + +148 +00:09:52,770 --> 00:09:56,190 +object is not a big deal. I need it in ten places. + +149 +00:09:56,230 --> 00:09:58,750 +You can train from class to class like that. This + +150 +00:09:58,750 --> 00:10:01,730 +makes coupling and redundancy more. Okay? It means + +151 +00:10:01,730 --> 00:10:04,150 +that the main screen, instead of being an + +152 +00:10:04,150 --> 00:10:06,350 +independent class, has become dependent on whom? + +153 +00:10:06,930 --> 00:10:09,230 +On the phone book. So if I take this class and you + +154 +00:10:09,230 --> 00:10:10,510 +use it somewhere, I will tell you it is an error. + +155 +00:10:11,350 --> 00:10:11,550 +Okay? + +156 +00:10:14,450 --> 00:10:18,250 +Okay, the best solution is to apply the singleton + +157 +00:10:18,250 --> 00:10:23,130 +pattern, to make the phonebook create only one + +158 +00:10:23,130 --> 00:10:24,790 +object from it. How do we do it? Pay attention to + +159 +00:10:24,790 --> 00:10:27,350 +me, I'm applying the singleton pattern. The first + +160 +00:10:27,350 --> 00:10:32,870 +step is to go to the constructor and put private, + +161 +00:10:33,050 --> 00:10:36,410 +close the constructor. No one can say why I closed + +162 +00:10:36,410 --> 00:10:38,910 +the constructor, because no one can create an + +163 +00:10:38,910 --> 00:10:44,330 +object from it. Okay, now the phonebook, and it makes + +164 +00:10:44,330 --> 00:10:55,370 +an instance in it, private static phonebook named + +165 +00:10:55,370 --> 00:11:00,150 +instance and its value is null. What is this now? + +166 +00:11:00,250 --> 00:11:04,810 +This is an object named instance, not a phonebook, + +167 +00:11:04,890 --> 00:11:07,830 +it is the same class name, okay? And what did this + +168 +00:11:07,830 --> 00:11:11,830 +do? select, until now its value is null, okay. + +169 +00:11:15,910 --> 00:11:19,250 +Now, instead of the constructor, I created a public + +170 +00:11:19,250 --> 00:11:28,570 +static called phonebook.getinstance. + +171 +00:11:28,570 --> 00:11:32,490 +Now + +172 +00:11:32,490 --> 00:11:35,650 +the idea is that this instance, which we call + +173 +00:11:35,650 --> 00:11:39,470 +phonebook, is the only object that is created in + +174 +00:11:39,470 --> 00:11:43,210 +the whole application. Until now, it's value is none + +175 +00:11:43,210 --> 00:11:47,070 +because this object exists as private, which means + +176 +00:11:47,070 --> 00:11:50,650 +that I can't deliver it from outside to this class. + +177 +00:11:50,650 --> 00:11:53,390 +So how can I deliver it? You need to make a getter + +178 +00:11:53,390 --> 00:11:56,510 +method. So I went and made a method called + +179 +00:11:56,510 --> 00:12:00,450 +getinstance. What does it return? It returns the + +180 +00:12:00,450 --> 00:12:02,190 +phone book; it is clear that it returns the + +181 +00:12:02,190 --> 00:12:06,350 +instance. What do I want to say here? I want to + +182 +00:12:06,350 --> 00:12:08,270 +say, look, no, not return, before return, I want + +183 +00:12:08,270 --> 00:12:11,270 +to say, if instance, which is, I was null yet. If + +184 +00:12:11,270 --> 00:12:17,910 +instance equals null, go to the instance and say + +185 +00:12:17,910 --> 00:12:26,710 +new phone book and then return instance. We are + +186 +00:12:26,710 --> 00:12:31,340 +done. Look at me. Habit Dialogue got innocence. + +187 +00:12:31,680 --> 00:12:34,720 +What did I do to get it? Static. What does it mean + +188 +00:12:34,720 --> 00:12:37,840 +to be static? It means that you don't need to + +189 +00:12:37,840 --> 00:12:39,980 +create an object. Actually, I can't create an + +190 +00:12:39,980 --> 00:12:41,440 +object because I'm the constructor of it, private. + +191 +00:12:42,480 --> 00:12:44,100 +Because I made it static because you asked me to + +192 +00:12:44,100 --> 00:12:46,820 +without creating an object. Okay, Habit Dialogue, + +193 +00:12:46, + +223 +00:14:13,850 --> 00:14:15,830 +diagram This diagram is the first time you will + +224 +00:14:15,830 --> 00:14:17,550 +find it If you find the instance null, it will be + +225 +00:14:17,550 --> 00:14:19,550 +the instance null, you will create it And you will + +226 +00:14:19,550 --> 00:14:21,950 +return it Second time, third time, fourth time, + +227 +00:14:21,950 --> 00:14:25,970 +you will return the same instance I create an + +228 +00:14:25,970 --> 00:14:30,390 +object 1 from the phone book Because we finished + +229 +00:14:30,390 --> 00:14:34,810 +the application, how to use it Go now to the null + +230 +00:14:34,810 --> 00:14:36,750 +method Because of course it will create an error, + +231 +00:14:36,890 --> 00:14:40,190 +why? Yes, it stopped with un-deconstruct What is + +232 +00:14:40,190 --> 00:14:42,210 +the alternative? Write phone book + +233 +00:14:47,720 --> 00:14:49,580 +.getinstance Okay, it will return me the phone book + +234 +00:14:49,580 --> 00:14:54,420 +and then I copy it to p.getcountrycode So there is + +235 +00:14:54,420 --> 00:14:57,940 +no need to go through this gate, right? If I want + +236 +00:14:57,940 --> 00:15:00,640 +to edit this main screen, there is no need at all + +237 +00:15:00,640 --> 00:15:04,840 +to go through it Okay, this gate came here, + +238 +00:15:05,220 --> 00:15:10,140 +immediately I say formbook.getinstance, + +239 +00:15:10,200 --> 00:15:10,780 +I return it + +240 +00:15:14,080 --> 00:15:21,380 +phone, book, book, book, book, book, book, book, + +241 +00:15:21,380 --> 00:15:44,020 +book, book, book, + +242 +00:15:47,430 --> 00:15:52,170 +Also, one of the things that can be included in + +243 +00:15:52,170 --> 00:15:55,850 +Singleton is something that we call in projects as + +244 +00:15:55,850 --> 00:15:59,840 +logging. What is the meaning of the word log? It's + +245 +00:15:59,840 --> 00:16:04,780 +not a login, it's a recording. In large databases, + +246 +00:16:05,320 --> 00:16:09,680 +especially those on the server-side, if there is + +247 +00:16:09,680 --> 00:16:13,800 +any error or warning, or for example, the user did + +248 +00:16:13,800 --> 00:16:15,560 +not register his or her login or went to the + +249 +00:16:15,560 --> 00:16:18,880 +database, all these operations are recorded in a + +250 +00:16:18,880 --> 00:16:23,230 +specific record. with the time it took, with the + +251 +00:16:23,230 --> 00:16:27,410 +code that made it work, with the user that made + +252 +00:16:27,410 --> 00:16:30,610 +it, so that if there is a problem in the program, + +253 +00:16:30,750 --> 00:16:35,790 +we can track this file and see what happened. They + +254 +00:16:35,790 --> 00:16:39,610 +use this not for the end user, but for the + +255 +00:16:39,610 --> 00:16:42,650 +developer, so that he can track their code. + +256 +00:16:43,630 --> 00:16:46,910 +Usually these files or documents are not stored in + +257 +00:16:46,910 --> 00:16:50,870 +a database, but stored in files. Because if you + +258 +00:16:50,870 --> 00:16:52,270 +download it to a database and there is a crash in + +259 +00:16:52,270 --> 00:16:54,350 +the database, it will not be able to access the + +260 +00:16:54,350 --> 00:16:57,050 +files. But the file can be opened by any tool, + +261 +00:16:57,190 --> 00:17:00,690 +Word or Notepad. You can open the file and see all + +262 +00:17:00,690 --> 00:17:05,750 +the information. Now this is a simple process of + +263 +00:17:05,750 --> 00:17:09,550 +writing on a file. But the idea is that the + +264 +00:17:09,550 --> 00:17:11,370 +process of logging does not start from one place. + +265 +00:17:12,150 --> 00:17:14,350 +You have a program with twenty, thirty or fifty + +266 +00:17:14,350 --> 00:17:17,340 +classes from anywhere. You need to record + +267 +00:17:17,340 --> 00:17:20,180 +messages. For example, this is the login page. + +268 +00:17:20,380 --> 00:17:22,440 +This is the search page. This is the insert + +269 +00:17:22,440 --> 00:17:25,240 +database page. This is the query page. All of + +270 +00:17:25,240 --> 00:17:28,900 +these classes need to add messages to the lib + +271 +00:17:28,900 --> 00:17:31,740 +file. So the messages that come here come from + +272 +00:17:31,740 --> 00:17:34,500 +where? From more than one place. From twenty or + +273 +00:17:34,500 --> 00:17:39,420 +thirty places. Actually, there is a common access + +274 +00:17:39,420 --> 00:17:42,620 +between them all on the same file. Because this + +275 +00:17:42,620 --> 00:17:43,800 +object that needs to be controlled in the file and + +276 +00:17:43,800 --> 00:17:45,020 +needs to be connected to it needs to be one + +277 +00:17:45,020 --> 00:17:50,050 +object. Object 1 is responsible for the file, and I + +278 +00:17:50,050 --> 00:17:52,610 +use this object from here, and from here, and from + +279 +00:17:52,610 --> 00:17:55,070 +here, and from here, and from here, and from here, + +280 +00:17:55,070 --> 00:17:55,990 +and from here, and from here, and from here, and + +281 +00:17:55,990 --> 00:17:56,070 +from here, and from here, and from here, and from + +282 +00:17:56,070 --> 00:17:58,630 +here, and from here, and from here, and from here, + +283 +00:17:58,630 --> 00:18:00,410 +and from here, and from here, and from here, and + +284 +00:18:00,410 --> 00:18:01,230 +from here, and from here, and from here, and from + +285 +00:18:01,230 --> 00:18:01,670 +here, and from here, and from here, and from here, + +286 +00:18:01,670 --> 00:18:02,070 +and from here, and from here, and from here, and + +287 +00:18:02,070 --> 00:18:02,090 +from here, and from here, and from here, and from + +288 +00:18:02,090 --> 00:18:02,590 +and from here, and from here, and from here, and + +289 +00:18:02,590 --> 00:18:02,650 +from here, and from here, and from here, and from + +290 +00:18:02,650 --> 00:18:03,550 +and from here, and from here, and from here, and + +291 +00:18:03,550 --> 00:18:11,030 +from here, and from here, and from here, and from + +292 +00:18:11,030 --> 00:18:14,190 +here What is this object? And it is what is written + +293 +00:18:14,190 --> 00:18:19,830 +on the file. Centralized management. The center in + +294 +00:18:19,830 --> 00:18:22,570 +which it is controlled. Like the example I gave in + +295 +00:18:22,570 --> 00:18:26,510 +the last lecture about printing. The Prince Pool. + +296 +00:18:29,780 --> 00:18:32,380 +One object is responsible for the queue of + +297 +00:18:32,380 --> 00:18:34,540 +printing and ordering, it organizes them and + +298 +00:18:34,540 --> 00:18:38,260 +checks if the user is the owner or not. This is + +299 +00:18:38,260 --> 00:18:40,060 +the printer and this is the printer. Who is + +300 +00:18:40,060 --> 00:18:42,580 +supposed to print this? The printer. The printer + +301 +00:18:42,580 --> 00:18:46,040 +asks the owner to print it for him. Where do these + +302 +00:18:46,040 --> 00:18:53,360 +privileges exist? In this object. Now, as an + +303 +00:18:53,360 --> 00:18:55,400 +example of centralized management, let's see how + +304 +00:18:55,400 --> 00:18:58,480 +to make this logger. In Java, + +305 +00:19:08,930 --> 00:19:12,970 +second in java there is a class ready for logging + +306 +00:19:12,970 --> 00:19:20,050 +which is class named + +307 +00:19:20,050 --> 00:19:26,100 +logger class in java named logger They say if you + +308 +00:19:26,100 --> 00:19:29,620 +want to create a logger, which is an active name + +309 +00:19:29,620 --> 00:19:31,600 +of the logger, which is what you want to write on + +310 +00:19:31,600 --> 00:19:34,660 +the file, go and create an object in the logger as + +311 +00:19:34,660 --> 00:19:37,160 +follows, say logger.getlogger, this is a static + +312 +00:19:37,160 --> 00:19:39,660 +method, okay? And give it the name of the logger, + +313 +00:19:40,800 --> 00:19:42,140 +okay? For example, call it My + +314 +00:19:45,100 --> 00:19:49,140 +We created this logger, if you want to write a + +315 +00:19:49,140 --> 00:19:52,580 +message, you have to connect this logger to a + +316 +00:19:52,580 --> 00:19:57,840 +file, so it can write on a file, it can connect to + +317 +00:19:57,840 --> 00:19:59,840 +a network, so you can send messages to the + +318 +00:19:59,840 --> 00:20:02,260 +network, sometimes you have programs that tell you + +319 +00:20:02,260 --> 00:20:04,980 +if there is a crash, send the wrong messages to + +320 +00:20:04,980 --> 00:20:09,070 +Google You can connect it to a network, database, + +321 +00:20:09,350 --> 00:20:12,810 +anything For example, there is something called + +322 +00:20:12,810 --> 00:20:17,070 +add handler, new file handler, and give it a file + +323 +00:20:17,070 --> 00:20:22,210 +name that connects to it, for example, test.txt So + +324 +00:20:22,210 --> 00:20:25,510 +if we write on our logger, everything will be + +325 +00:20:25,510 --> 00:20:29,110 +stored in a file called test.txt Ok, we're done. + +326 +00:20:29,590 --> 00:20:32,370 +How do we write? Logger.log + +327 +00:20:40,210 --> 00:20:43,210 +What kind of message do you want to write? Because + +328 +00:20:43,210 --> 00:20:47,970 +sometimes the message is info, sometimes it is + +329 +00:20:47,970 --> 00:20:52,360 +warning, sometimes it is severe means there is + +330 +00:20:52,360 --> 00:20:56,740 +something wrong, wrong, fatal error this is for + +331 +00:20:56,740 --> 00:21:00,280 +those who do tracking to see what kind of message + +332 +00:21:00,280 --> 00:21:02,880 +it is for example, I care about errors, I search + +333 +00:21:02,880 --> 00:21:06,520 +for messages that are wrong for example info is + +334 +00:21:06,520 --> 00:21:08,740 +just information that someone modified something + +335 +00:21:08,740 --> 00:21:14,180 +someone made a login for example this is info we + +336 +00:21:14,180 --> 00:21:18,100 +can say Ahmed logged in the system + +337 +00:21:22,000 --> 00:21:24,900 +Logger reads the message channel, I want to say + +338 +00:21:24,900 --> 00:21:27,480 +level severe, + +339 +00:21:29,520 --> 00:21:34,640 +I say for example server crashed, fatal error, + +340 +00:21:35,880 --> 00:21:38,000 +what happened to my hand? Mistake, even this + +341 +00:21:38,000 --> 00:21:41,320 +message will print it in red, okay? That's it, + +342 +00:21:41,360 --> 00:21:43,280 +it's very simple, here I created the logger, + +343 +00:21:43,320 --> 00:21:45,280 +linked it to a file, and whenever you want to + +344 +00:21:45,280 --> 00:21:49,560 +print the message, what do you say? Log, okay? And + +345 +00:21:49,560 --> 00:21:52,430 +it will read it. This is the first message but you + +346 +00:21:52,430 --> 00:21:55,870 +see it in red it shows you as an exception this + +347 +00:21:55,870 --> 00:22:00,110 +message is an info it was written in this date and + +348 +00:22:00,110 --> 00:22:05,030 +time through this class and through this method it + +349 +00:22:05,030 --> 00:22:08,150 +even shows you which class wrote it and which + +350 +00:22:08,150 --> 00:22:11,430 +method is going to print the message and it was + +351 +00:22:11,430 --> 00:22:14,110 +supposed to be written on a file this is a + +352 +00:22:14,110 --> 00:22:17,290 +printout on the console but they are supposed to + +353 +00:22:17,290 --> 00:22:22,350 +be in a file where is the file? When you click on + +354 +00:22:22,350 --> 00:22:22,830 +the project, + +355 +00:22:31,730 --> 00:22:34,990 +you will see a box called test.txt + +356 +00:22:43,230 --> 00:22:47,730 +Locked in millisecond Logar is the name of the + +357 +00:22:47,730 --> 00:22:49,370 +logar in the book MyLogar is the name of the logar + +358 +00:22:49,370 --> 00:22:51,130 +in the book The type of the message is info From + +359 +00:22:51,130 --> 00:22:53,410 +any class that printed the message And from any + +360 +00:22:53,410 --> 00:22:55,830 +method that shows you where exactly the message + +361 +00:22:55,830 --> 00:22:59,790 +came from And this is the text of the message And + +362 +00:22:59,790 --> 00:23:04,850 +this is another message Date and so on Where is + +363 +00:23:04,850 --> 00:23:06,270 +the idea in this topic? We have not talked about + +364 +00:23:06,270 --> 00:23:08,470 +it yet Where is the singleton in the story? Do you + +365 +00:23:08,470 --> 00:23:14,070 +think that this logar that I created object one + +366 +00:23:14,070 --> 00:23:17,930 +only and use it in every place so this will become + +367 +00:23:17,930 --> 00:23:22,590 +what? Not singleton How? Very simple go to email + +368 +00:23:22,590 --> 00:23:31,450 +class name it my singleton logar ok? + +369 +00:23:32,250 --> 00:23:36,490 +This what I want it to contain? I want it to take + +370 +00:23:36,490 --> 00:23:42,530 +this logar right? So this is my singleton logar + +371 +00:23:44,420 --> 00:23:54,700 +This is a private logger named logger I want + +372 +00:23:54,700 --> 00:23:58,820 +to import it + +373 +00:23:58,820 --> 00:24:01,940 +The first + +374 +00:24:01,940 --> 00:24:04,640 +thing I do is create a class and then convert it + +375 +00:24:04,640 --> 00:24:11,660 +to singleton Because what is this? Constructor So + +376 +00:24:11,660 --> 00:24:15,000 +now mysql.logar has covered me. What is inside it? + +377 +00:24:15,500 --> 00:24:22,720 +The logar. If I find the logar, it is equal to + +378 +00:24:22,720 --> 00:24:27,640 +get logar, we call it mylogar + +379 +00:24:27,640 --> 00:24:34,500 +.logar.add handler, a new file handler, and I send + +380 +00:24:34,500 --> 00:24:42,470 +it the file name. It is test.txt. Is it a file or + +381 +00:24:42,470 --> 00:24:46,590 +a network? Yes, the network needs a socket It has + +382 +00:24:46,590 --> 00:24:51,070 +another job Now, this one is private And this one + +383 +00:24:51,070 --> 00:24:53,090 +was created by the constructor So I need to create + +384 +00:24:53,090 --> 00:24:57,750 +a get method to get it back from the language Add + +385 +00:24:57,750 --> 00:25:08,130 +import And this one needs to add throw So + +386 +00:25:08,130 --> 00:25:12,850 +public Logar I want to say get what? + +387 +00:25:17,230 --> 00:25:22,290 +return Logar Of course this is still a normal + +388 +00:25:22,290 --> 00:25:26,130 +class Meaning that if I want to use Logar I have + +389 +00:25:26,130 --> 00:25:34,550 +to extract an object from my singleton Logar This + +390 +00:25:34,550 --> 00:25:38,050 +is S equals U my singleton + +391 +00:25:40,820 --> 00:25:45,360 +logar and then I go to the S and say get logar and + +392 +00:25:45,360 --> 00:25:51,760 +then I say make log for example this class so far + +393 +00:25:51,760 --> 00:26:00,460 +has covered the logar this is log or level.severe + +394 +00:26:00,460 --> 00:26:03,080 +and here I put the message and then you print it + +395 +00:26:05,190 --> 00:26:07,690 +Why did I put the logar in the class? Because I + +396 +00:26:07,690 --> 00:26:11,050 +wanted to convert it to singleton How to convert + +397 +00:26:11,050 --> 00:26:13,750 +it to singleton? As we learned, the first step is + +398 +00:26:13,750 --> 00:26:17,970 +to go to the constructor and put private The + +399 +00:26:17,970 --> 00:26:20,810 +second step is to make a reference of the same + +400 +00:26:20,810 --> 00:26:24,670 +type so that the class is private and static + +401 +00:26:24,670 --> 00:26:28,210 +MySingletonLogar + +402 +00:26:28,210 --> 00:26:34,890 +is called instance claimed to In order to reach + +403 +00:26:34,890 --> 00:26:37,930 +this instance, I need to create a method called + +404 +00:26:37,930 --> 00:26:41,090 +public static in order to reach it or use it + +405 +00:26:41,090 --> 00:26:43,050 +without having to initialize the object What + +406 +00:26:43,050 --> 00:26:45,010 +should it return? It should return my singleton + +407 +00:26:45,010 --> 00:26:55,230 +logger named get instance and I need to say if in + +408 +00:26:55,230 --> 00:27:00,080 +the instance you say null and go to the instance + +409 +00:27:00,080 --> 00:27:08,540 +and say new my singleton logarithm + +410 +00:27:08,540 --> 00:27:19,220 +This just needs to be surrounded by a try-catch and then return the instance + +411 +00:27:19,220 --> 00:27:23,460 +only if the instance is null it will go anywhere + +412 +00:27:23,460 --> 00:27:24,360 +else it will return + +413 +00:27:29,570 --> 00:27:41,490 +My Singleton Logger + +414 +00:27:42,910 --> 00:27:47,050 +and you say get instance and you use it you need + +415 +00:27:47,050 --> 00:27:49,91 + +445 +00:29:39,120 --> 00:29:43,520 +which is actually the one and only copy. And this + +446 +00:29:43,520 --> 00:29:48,790 +is a sign next to it, Private. Now this is the + +447 +00:29:48,790 --> 00:29:51,410 +constructor, see the constructor next to it is + +448 +00:29:51,410 --> 00:29:53,730 +also private. Instead of the constructor, so that + +449 +00:29:53,730 --> 00:29:56,570 +I can reach this, I made a statement called get + +450 +00:29:56,570 --> 00:29:59,510 +instance, which is a plus sign, which is public, + +451 +00:30:00,110 --> 00:30:03,030 +this singleton returns. This is what checks if it + +452 +00:30:03,030 --> 00:30:07,830 +is null, it returns. If it is not null, it returns + +453 +00:30:07,830 --> 00:30:09,550 +immediately. This is the shape of the code. + +454 +00:30:12,280 --> 00:30:16,860 +This is the Singleton class and this is an + +455 +00:30:16,860 --> 00:30:20,800 +instance of it. This is the constructor. + +456 +00:30:23,460 --> 00:30:28,220 +This is the constructor. This is the constructor. + +457 +00:30:28,220 --> 00:30:31,060 +This is the constructor. This is the constructor. + +458 +00:30:31,060 --> 00:30:33,620 +This is the constructor. This is the constructor. + +459 +00:30:33,800 --> 00:30:34,180 +This is the constructor. This is the constructor. + +460 +00:30:34,180 --> 00:30:35,020 +This is the constructor. This is the constructor. + +461 +00:30:35,260 --> 00:30:36,120 +This is the constructor. This is the constructor. + +462 +00:30:36,120 --> 00:30:37,320 +This is the constructor. This is the constructor. + +463 +00:30:37,320 --> 00:30:37,820 +This is the constructor. This is the constructor. + +464 +00:30:37,820 --> 00:30:37,880 +This is the constructor. This is the constructor. + +465 +00:30:37,980 --> 00:30:42,620 +This is the constructor. Public statics, but I put + +466 +00:30:42,620 --> 00:30:45,420 +a new word, it's called synchronize, we'll explain + +467 +00:30:45,420 --> 00:30:48,940 +what synchronize is, okay? It returns singleton, + +468 +00:30:49,020 --> 00:30:51,200 +it's called get instance, you check if the + +469 +00:30:51,200 --> 00:30:53,900 +instance is null, it returns singleton and returns + +470 +00:30:53,900 --> 00:30:57,660 +it, okay? Of course, this line belongs to the F + +471 +00:30:57,660 --> 00:31:00,840 +only, this doesn't belong to the F, right? Okay? + +472 +00:31:01,240 --> 00:31:06,480 +And then, this line down here, it's called? After + +473 +00:31:06,480 --> 00:31:10,180 +I reach the instance, I can call this loop. This + +474 +00:31:10,180 --> 00:31:14,020 +loop is not static. This loop needs to have an + +475 +00:31:14,020 --> 00:31:14,340 +object. + +476 +00:31:17,300 --> 00:31:20,640 +Why is this point synchronized? What is this + +477 +00:31:20,640 --> 00:31:23,060 +synchronization? In D3 programming, you will learn + +478 +00:31:23,060 --> 00:31:26,240 +about threading. How to have more than one process + +479 +00:31:26,240 --> 00:31:29,890 +running at the same time. This synchronization is + +480 +00:31:29,890 --> 00:31:32,730 +important to avoid problems if there are more than + +481 +00:31:32,730 --> 00:31:38,210 +one thread running at the same time. And they need + +482 +00:31:38,210 --> 00:31:41,610 +this singleton. In games, for example, you don't + +483 +00:31:41,610 --> 00:31:43,630 +find a person walking and hopping and a bird + +484 +00:31:43,630 --> 00:31:45,730 +flying and a person in front of you hopping on + +485 +00:31:45,730 --> 00:31:48,410 +you. These are all running together. We call it + +486 +00:31:48,410 --> 00:31:52,410 +multi-threading. And each person may need common + +487 +00:31:52,410 --> 00:31:55,950 +data that can reach singleton. Again, if they are + +488 +00:31:55,950 --> 00:31:59,220 +all running together, a problem may occur. Where + +489 +00:31:59,220 --> 00:32:01,260 +does the problem occur? Let's do tracking. Do we + +490 +00:32:01,260 --> 00:32:06,740 +know that a processor can run more than one + +491 +00:32:06,740 --> 00:32:11,220 +program at the same time? No. How can programs run + +492 +00:32:11,220 --> 00:32:14,360 +more than one program at the same time? Yes, it + +493 +00:32:14,360 --> 00:32:17,760 +creates a time slot for each processor. Basically, + +494 +00:32:17,820 --> 00:32:19,680 +the processor works for a certain period of time, + +495 +00:32:20,060 --> 00:32:21,960 +then it stops working again, but this process + +496 +00:32:21,960 --> 00:32:24,440 +takes place quickly, so you notice that the + +497 +00:32:24,440 --> 00:32:27,100 +programs work together. Unless modern processors + +498 +00:32:27,100 --> 00:32:30,600 +have multiprocessors, then each processor will + +499 +00:32:30,600 --> 00:32:33,580 +work on its own. But we are talking about a single + +500 +00:32:33,580 --> 00:32:36,400 +processor that does not run more than one process + +501 +00:32:36,400 --> 00:32:39,020 +at the same time. It gives each one a time slot. + +502 +00:32:39,100 --> 00:32:43,630 +Can you imagine? It gave a time slot for a specific + +503 +00:32:43,630 --> 00:32:44,910 +process, it started working, and this process + +504 +00:32:44,910 --> 00:32:48,530 +started producing a singleton. The proof was + +505 +00:32:48,530 --> 00:32:53,110 +created, a get instance was created, and it was + +506 +00:32:53,110 --> 00:32:57,560 +verified. This instance is equal to null. Wait a + +507 +00:32:57,560 --> 00:33:00,020 +minute. No, it hasn't started yet. Luckily, the + +508 +00:33:00,020 --> 00:33:02,940 +therapist decided that at this moment, it hasn't + +509 +00:33:02,940 --> 00:33:05,460 +started yet. She checked and found that if it + +510 +00:33:05,460 --> 00:33:07,420 +started, the therapist came and told her to stop. + +511 +00:33:07,960 --> 00:33:10,800 +That's it. Your time is over. Okay, so it hasn't + +512 +00:33:10,800 --> 00:33:13,220 +started yet? No, it's over. Your time is over. + +513 +00:33:13,360 --> 00:33:16,510 +Okay. She went left and did the next operation. + +514 +00:33:16,610 --> 00:33:18,790 +After the next operation, what did she ask for? + +515 +00:33:18,850 --> 00:33:20,890 +She got an instance. She got the instance from + +516 +00:33:20,890 --> 00:33:23,330 +her, what did she get from it? She created it and + +517 +00:33:23,330 --> 00:33:25,590 +returned the instance. She finished her work and + +518 +00:33:25,590 --> 00:33:28,010 +came back to continue working on the first one. + +519 +00:33:28,110 --> 00:33:30,190 +Where did the first one go? It ended up in the + +520 +00:33:30,190 --> 00:33:33,890 +cycle. Okay? You will go straight to do what? Nu. + +521 +00:33:34,050 --> 00:33:37,430 +What is the result of it? There are two objects. + +522 +00:33:38,010 --> 00:33:41,010 +Did you see where the problem happened? Okay? So + +523 +00:33:41,010 --> 00:33:43,250 +how can I solve this problem? They tell me that + +524 +00:33:43,250 --> 00:33:46,570 +when you put the word synchronize, it is like you + +525 +00:33:46,570 --> 00:33:49,390 +are telling the processor, hey processor, any + +526 +00:33:49,390 --> 00:33:52,410 +process that starts in this method should not be + +527 +00:33:52,410 --> 00:33:55,480 +interrupted. Like someone who eats and drinks, you + +528 +00:33:55,480 --> 00:33:58,560 +can't tell him to stop, you have to let him finish + +529 +00:33:58,560 --> 00:34:01,460 +and then start the process. So let him finish and + +530 +00:34:01,460 --> 00:34:03,800 +let him get bored. As long as he has reached his + +531 +00:34:03,800 --> 00:34:10,420 +goal, you have to finish it. The problem that + +532 +00:34:10,420 --> 00:34:12,920 +happened a while ago resulted in him stopping + +533 +00:34:12,920 --> 00:34:16,760 +someone before he could move forward. But when the + +534 +00:34:16,760 --> 00:34:18,500 +gate is set to synchronize, it means that any + +535 +00:34:18,500 --> 00:34:21,440 +process that has entered this method you have to + +536 +00:34:21,440 --> 00:34:24,880 +complete it till the end to make sure that you + +537 +00:34:24,880 --> 00:34:27,880 +don't create two objects in the same program. Is it + +538 +00:34:27,880 --> 00:34:29,320 +clear, guys? What is the use of this + +539 +00:34:29,320 --> 00:34:32,640 +synchronization? Okay, so it is necessary if you + +540 +00:34:32,640 --> 00:34:35,680 +have multi-threading in your program. But if there + +541 +00:34:35,680 --> 00:34:38,640 +are no threads in the program, you don't need this + +542 +00:34:38,640 --> 00:34:41,680 +in all cases. If you put it, it is not wrong, ok? + +543 +00:34:47,480 --> 00:34:52,970 +Okay, now note that the singleton instance is only + +544 +00:34:52,970 --> 00:34:55,570 +created when needed. This is an important point. + +545 +00:34:55,810 --> 00:34:58,090 +For example, in a phone book, it is possible that + +546 +00:34:58,090 --> 00:35:00,730 +the first thing you do is the same object, static. + +547 +00:35:01,670 --> 00:35:05,770 +We know that static can come from anywhere. But + +548 +00:35:05,770 --> 00:35:08,110 +they tell me that the problem with static is that + +549 +00:35:08,110 --> 00:35:11,830 +you drag it and put it in the memory even if you + +550 +00:35:11,830 --> 00:35:16,750 +don't use it. But in singleton, + +551 +00:35:19,520 --> 00:35:23,340 +The object is going to be controllable. Correct or + +552 +00:35:23,340 --> 00:35:25,000 +not? It's not going to be created by the teacher + +553 +00:35:25,000 --> 00:35:28,020 +or the instructor unless it's needed for the first + +554 +00:35:28,020 --> 00:35:31,600 +time. Correct or not? This is the big difference + +555 +00:35:31,600 --> 00:35:33,720 +between creating the object from the beginning and + +556 +00:35:33,720 --> 00:35:36,900 +leaving it in memory. We don't want to create + +557 +00:35:36,900 --> 00:35:39,280 +things unless we need them for the first time. A + +558 +00:35:39,280 --> 00:35:43,740 +game needs material, audio file, video file, why + +559 +00:35:43,740 --> 00:35:45,420 +not download them all when you download the game? + +560 +00:35:46,030 --> 00:35:47,470 +No, it only handles the things that are necessary + +561 +00:35:47,470 --> 00:35:49,410 +for the first level. And when it comes to the + +562 +00:35:49,410 --> 00:35:51,130 +second level, what does it handle? The things + +563 +00:35:51,130 --> 00:35:54,050 +related to it. So the idea of get instance, at the + +564 +00:35:54,050 --> 00:35:56,070 +first moment, at the first time, it creates the + +565 +00:35:56,070 --> 00:35:59,570 +object. It didn't use it, it didn't need it, it + +566 +00:35:59,570 --> 00:36:03,270 +kept going on and on. The idea became clear. So + +567 +00:36:03,270 --> 00:36:06,390 +that's why they say that singleton supports + +568 +00:36:06,390 --> 00:36:09,810 +something called lazy insensation. Insensation + +569 +00:36:09,810 --> 00:36:13,510 +means creating an object. What does lazy mean? Lazy + +570 +00:36:15,380 --> 00:36:18,380 +Kesal is a negative word, but here in programming + +571 +00:36:18,380 --> 00:36:22,720 +it is positive. The F you were happy with it, + +572 +00:36:22,740 --> 00:36:25,480 +let's make an F else and so on. No, the thing is + +573 +00:36:25,480 --> 00:36:27,600 +that when you find the F, what does the code mean? + +574 +00:36:28,740 --> 00:36:31,060 +It's bad, because you have to pass the F again. + +575 +00:36:32,220 --> 00:36:34,260 +You were happy with the E, let's make an E in each + +576 +00:36:34,260 --> 00:36:38,280 +object, in each class. No, the E turned out to be + +577 +00:36:38,280 --> 00:36:40,960 +negative. And the Z turned out to be positive. + +578 +00:36:42,240 --> 00:36:44,080 +There are still a lot of things coming up. + +579 +00:36:49,240 --> 00:36:50,600 +Okay, this explains what is the use of + +580 +00:36:50,600 --> 00:36:53,880 +synchronization if two threads concurrently + +581 +00:36:53,880 --> 00:36:55,440 +concurrently concurrently concurrently + +582 +00:36:55,440 --> 00:36:56,840 +concurrently concurrently concurrently + +583 +00:36:56,840 --> 00:36:58,980 +concurrently concurrently concurrently + +584 +00:36:58,980 --> 00:36:59,240 +concurrently concurrently concurrently + +585 +00:36:59,240 --> 00:37:00,140 +concurrently concurrently concurrently + +586 +00:37:00,140 --> 00:37:00,160 +concurrently concurrently concurrently + +587 +00:37:00,160 --> 00:37:00,760 +concurrently concurrently concurrently + +588 +00:37:00,760 --> 00:37:03,460 +concurrently concurrently concurrently + +589 +00:37:03,460 --> 00:37:03,500 +concurrently concurrently concurrently + +590 +00:37:03,500 --> 00:37:03,760 +concurrently concurrently concurrently + +591 +00:37:03,760 --> 00:37:03,780 +concurrently concurrently concurrently + +592 +00:37:03,780 --> 00:37:04,520 +concurrently concurrently concurrently + +593 +00:37:04,520 --> 00:37:04,540 +concurrently concurrently concurrently + +594 +00:37:04,540 --> 00:37:04,580 +concurrently concurrently concurrently + +595 +00:37:04,580 --> 00:37:04,640 +concurrently concurrently concurrently + +596 +00:37:04,640 --> 00:37:06,080 +concurrently concurrently concurrently + +597 +00:37:06,080 --> 00:37:08,710 +concurrently concurrently Make the instance + +598 +00:37:08,710 --> 00:37:12,110 +synchronize. Synchronization is expensive, however + +599 +00:37:12,110 --> 00:37:17,110 +it is really only needed the first time the unique + +600 +00:37:17,110 --> 00:37:18,050 +instance is created. + +601 +00:37:28,490 --> 00:37:30,770 +It explains examples of where we can use the + +602 +00:37:30,770 --> 00:37:33,210 +singleton pattern. Among these examples that we + +603 +00:37:33,210 --> 00:37:37,250 +explained earlier, the logger. I need a global + +604 +00:37:37,250 --> 00:37:40,190 +point of access through which I can log and record + +605 +00:37:40,190 --> 00:37:42,210 +messages. From anywhere in the code, I need to + +606 +00:37:42,210 --> 00:37:46,110 +record messages. Through object 1 only. Also, the + +607 +00:37:46,110 --> 00:37:49,330 +configurations. In the program, I don't need + +608 +00:37:49,330 --> 00:37:52,630 +settings. Whether the settings for GUI, background + +609 +00:37:52,630 --> 00:37:55,430 +color, line color, and line size. I want to use + +610 +00:37:55,430 --> 00:37:57,570 +these settings in all the screens that appear on + +611 +00:37:57,570 --> 00:38:00,300 +my screen. A specific IP in the dashboard, + +612 +00:38:00,620 --> 00:38:05,300 +username, password, all these settings, I can use + +613 +00:38:05,300 --> 00:38:08,760 +them anywhere. If I want to extract a program from + +614 +00:38:08,760 --> 00:38:11,100 +it, I can do it by myself as a singleton, and it + +615 +00:38:11,100 --> 00:38:13,940 +will stay there, and everywhere it will reach the + +616 +00:38:13,940 --> 00:38:17,840 +configurations. Okay? So this can also be useful + +617 +00:38:17,840 --> 00:38:20,640 +in singleton. And they also say that you can do + +618 +00:38:20,640 --> 00:38:25,540 +the factory itself as a singleton, even if it is + +619 +00:38:25,540 --> 00:38:30,440 +not a big issue, the factory. This is how we + +620 +00:38:30,440 --> 00:38:38,700 +solved the singleton pattern. How + +621 +00:38:38,700 --> 00:38:44,120 +many design patterns did we use? Factory, Builder + +622 +00:38:44,120 --> 00:38:49,380 +and Factory Method? And singleton, right? These + +623 +00:38:49,380 --> 00:38:52,660 +are the four creational design patterns. From all + +624 +00:38:52,660 --> 00:38:54,580 +of these, we have completed the first part of the + +625 +00:38:54,580 --> 00:38:56,980 +design patterns, which is creational design + +626 +00:38:56,980 --> 00:38:59,160 +patterns. But before that, I want to explain an + +627 +00:38:59,160 --> 00:39:01,920 +important concept in object-oriented programming + +628 +00:39:01,920 --> 00:39:04,780 +called dependency injection. This is a new topic + +629 +00:39:04,780 --> 00:39:08,180 +that I added only last year, because it has been + +630 +00:39:08,180 --> 00:39:10,920 +used a lot lately. + +631 +00:39:12,760 --> 00:39:15,040 +This lecture will present what is dependency. + +632 +00:39:16,670 --> 00:39:19,650 +Injection. And then in the next lecture, God + +633 +00:39:19,650 --> 00:39:22,130 +willing, we will see how to apply it practically + +634 +00:39:22,130 --> 00:39:25,790 +now + +635 +00:39:25,790 --> 00:39:28,870 +guys, we studied the relationship between classes, + +636 +00:39:29,010 --> 00:39:31,370 +which is the relationship of association. What is + +637 +00:39:31,370 --> 00:39:34,110 +the relationship of association? That I am an + +638 +00:39:34,110 --> 00:39:37,630 +object of a class and I need an object of another + +639 +00:39:37,630 --> 00:39:45,250 +class. For example, I have class A + +667 +00:42:00,400 --> 00:42:03,450 +dot processWhat is the difference between this and + +668 +00:42:03,450 --> 00:42:06,250 +this code? The difference is that we created the B + +669 +00:42:06,250 --> 00:42:10,250 +inside the A The constructor of the A is empty In + +670 +00:42:10,250 --> 00:42:13,610 +this case, no. In order to create the A, you have + +671 +00:42:13,610 --> 00:42:17,450 +to create a B before it So this is how you create + +672 +00:42:17,450 --> 00:42:20,190 +an object from A You have to have a B and then + +673 +00:42:20,190 --> 00:42:23,010 +create an object from A and give it the object B + +674 +00:42:23,010 --> 00:42:24,570 +This is the relation between composition and + +675 +00:42:24,570 --> 00:42:28,530 +aggregation, which is an association Now, who is + +676 +00:42:28,530 --> 00:42:28,790 +better? + +677 +00:42:31,620 --> 00:42:34,340 +Who is better in general? This one or that one? + +678 +00:42:35,360 --> 00:42:36,680 +Composition or aggregation? + +679 +00:42:42,380 --> 00:42:47,640 +Now, what is the advantage of composition? What is + +680 +00:42:47,640 --> 00:42:53,040 +it? It is easier to use. It means that if you want + +681 +00:42:53,040 --> 00:42:55,820 +an object from A, you just say Mu A. You don't + +682 +00:42:55,820 --> 00:42:57,380 +know anything about B. You don't have to know + +683 +00:42:57,380 --> 00:43:01,510 +anything. The B must go to where? For A, okay? You + +684 +00:43:01,510 --> 00:43:05,190 +might have noticed that A can use B, and B can use + +685 +00:43:05,190 --> 00:43:10,590 +C, and C can use D. You can see all these chains. + +686 +00:43:10,910 --> 00:43:14,210 +You move A and that's it. Each one moves what he + +687 +00:43:14,210 --> 00:43:17,670 +needs inside. But there is another negativity. + +688 +00:43:18,910 --> 00:43:25,020 +What is it? That I want to change B now. So now I + +689 +00:43:25,020 --> 00:43:27,260 +passed B to him, but now B wants to change his + +690 +00:43:27,260 --> 00:43:29,240 +job. He doesn't like this method of process in B. + +691 +00:43:30,420 --> 00:43:33,400 +He wants to do something else. What can I do to + +692 +00:43:33,400 --> 00:43:37,480 +change B? You can do X for B. Am I right or not + +693 +00:43:37,480 --> 00:43:41,620 +guys? Did I find this B? I don't like B's job. + +694 +00:43:42,500 --> 00:43:47,510 +Okay? I'm going to do external B, for example, I'm + +695 +00:43:47,510 --> 00:43:49,430 +going to do an override of a certain method, I'm + +696 +00:43:49,430 --> 00:43:52,050 +going to add a new method, okay? For example, this + +697 +00:43:52,050 --> 00:43:55,670 +is B, let's call it conditional B. Because the + +698 +00:43:55,670 --> 00:43:57,630 +problem with composition is that you tied yourself + +699 +00:43:57,630 --> 00:44:01,770 +to where? To B. Well, let's use conditional B. + +700 +00:44:02,070 --> 00:44:05,530 +Well, you have to enter the code A and remove this + +701 +00:44:05,530 --> 00:44:07,650 +instead of B and put conditional B. I'm going to + +702 +00:44:07,650 --> 00:44:10,590 +say it simple, there's no condition. No, you don't + +703 +00:44:10,590 --> 00:44:13,350 +need to enter the code to change it. The problem + +704 +00:44:13,350 --> 00:44:15,990 +is that it should be a series of dependencies. A + +705 +00:44:15,990 --> 00:44:20,190 +uses B, B uses C, and C uses D. And you need to + +706 +00:44:20,190 --> 00:44:23,990 +change it. You need to add it to certain classes. + +707 +00:44:25,410 --> 00:44:27,610 +And when you find the U, you know that you are + +708 +00:44:27,610 --> 00:44:31,210 +going the wrong way. This is the U. Where did you + +709 +00:44:31,210 --> 00:44:36,880 +connect yourself? Yes, in B. Okay, composition made + +710 +00:44:36,880 --> 00:44:39,060 +it easier for me to use code, and I don't want to + +711 +00:44:39,060 --> 00:44:41,740 +go into details, but at the same time, I connected + +712 +00:44:41,740 --> 00:44:48,920 +my life span to a certain class, okay? And we will + +713 +00:44:48,920 --> 00:44:50,340 +talk about this in the next lecture, about working + +714 +00:44:50,340 --> 00:44:52,220 +in software testing, and how much this is a + +715 +00:44:52,220 --> 00:44:57,930 +negative point. I pass my dependency from outside, + +716 +00:44:58,050 --> 00:44:59,990 +because the word dependency is something that I + +717 +00:44:59,990 --> 00:45:02,890 +need to rely on, it comes from outside, here it is + +718 +00:45:02,890 --> 00:45:07,150 +inside, I pass it from outside, now I can change + +719 +00:45:07,150 --> 00:45:08,170 +this passing from outside + +720 +00:45:11,010 --> 00:45:13,450 +So if I send a condition to B, will it accept it + +721 +00:45:13,450 --> 00:45:15,870 +or not? Yes, it will accept it As we said to the + +722 +00:45:15,870 --> 00:45:17,590 +graph manager when he was accepting shapes, not + +723 +00:45:17,590 --> 00:45:20,770 +all of them sent circles or rectangles The + +724 +00:45:20,770 --> 00:45:23,370 +advantage is that I can change in B and extend and + +725 +00:45:23,370 --> 00:45:25,290 +make any class I want as long as it is of the type + +726 +00:45:25,290 --> 00:45:30,810 +B, I can pass it So the extensibility of the code + +727 +00:45:30,810 --> 00:45:34,590 +is higher here, I have more flexibility But at the + +728 +00:45:34,590 --> 00:45:38,030 +same time, the difficulty is In order to identify + +729 +00:45:38,030 --> 00:45:39,510 +an object from A, I need to know what is its + +730 +00:45:39,510 --> 00:45:43,030 +dependency. It depends on B. It can also depend on + +731 +00:45:43,030 --> 00:45:47,350 +B and C. Am I right or not? This process of + +732 +00:45:47,350 --> 00:45:57,830 +aggregation is called Dependency Injection. + +733 +00:46:02,730 --> 00:46:04,230 +What is Injection? + +734 +00:46:06,480 --> 00:46:09,380 +In order to create an object, you have to get the + +735 +00:46:09,380 --> 00:46:13,740 +dependency from outside. This is the best way. We + +736 +00:46:13,740 --> 00:46:17,640 +should rely on it again, despite its difficulty. + +737 +00:46:19,100 --> 00:46:21,140 +What is its difficulty? I don't know why I didn't + +738 +00:46:21,140 --> 00:46:21,840 +mention it. + +739 +00:46:26,560 --> 00:46:30,940 +The difficulty is as follows. The process is not + +740 +00:46:30,940 --> 00:46:34,890 +always simple and calm. For example, if you have a + +741 +00:46:34,890 --> 00:46:39,610 +mobile phone and you have a screen class A This + +742 +00:46:39,610 --> 00:46:43,970 +screen needs something called view manager or view + +743 +00:46:43,970 --> 00:46:48,230 +model So A depends on a class called B for example + +744 +00:46:48,230 --> 00:46:52,250 +B needs to connect to an external repository that + +745 +00:46:52,250 --> 00:46:56,870 +has a class C This C must connect to a certain API + +746 +00:46:56,870 --> 00:47:04,060 +and connect to a database that needs D and E. The D + +747 +00:47:04,060 --> 00:47:07,900 +that connects to API also needs another library to + +748 +00:47:07,900 --> 00:47:14,560 +build objects or a JSON or a BGF And the F might + +749 +00:47:14,560 --> 00:47:19,740 +need a Q and the E might need an M All of these + +750 +00:47:19,740 --> 00:47:23,320 +are dependencies. This is what happens in projects + +751 +00:47:23,320 --> 00:47:26,760 +So this means that in order to build an object + +752 +00:47:26,760 --> 00:47:32,340 +from A You have to calculate this, and this, and + +753 +00:47:32,340 --> 00:47:35,020 +this, and this, and this, and this, and this, and + +754 +00:47:35,020 --> 00:47:38,440 +this, and this, and this, and this, and this, and + +755 +00:47:38,440 --> 00:47:38,820 +this, and this, and this, and this, and this, and + +756 +00:47:38,820 --> 00:47:40,340 +this, and this, and this, and this, and this, and + +757 +00:47:40,340 --> 00:47:41,040 +this, and this, and this, and this, and this, and + +758 +00:47:41,040 --> 00:47:41,140 +this, and this, and this, and this, and this, and + +759 +00:47:41,140 --> 00:47:41,600 +this, and this, and this, and this, and this, and + +760 +00:47:41,600 --> 00:47:41,980 +this, and this, and this, and this, and this, and + +761 +00:47:41,980 --> 00:47:42,040 +this, and this, and this, and this, and this, and + +762 +00:47:42,040 --> 00:47:45,560 +this, and this, and this, and this, + +763 +00:47:47,240 --> 00:47:47,920 +and this, and this, and this, and this, and this, + +764 +00:47:47,920 --> 00:47:48,220 +and this, and this, and this, and this, and this, + +765 +00:47:48,460 --> 00:47:48,480 +and this, and this, and this, and this, and this, + +766 +00:47:48,480 --> 00:47:53,720 +and this, and this, and + +767 +00:47:53,720 --> 00:47:59,950 +this Dependency Injection is better, I will give + +768 +00:47:59,950 --> 00:48:02,530 +examples of why it is better, because as I said, + +769 +00:48:02,610 --> 00:48:04,430 +any one of these that you extend in front of you + +770 +00:48:04,430 --> 00:48:08,310 +gets bored, but at the same time, the code you + +771 +00:48:08,310 --> 00:48:11,630 +follow is harder. That is why they have something + +772 +00:48:11,630 --> 00:48:15,670 +called Dependency Injection Frameworks. What is + +773 +00:48:15,670 --> 00:48:18,290 +Dependency Injection Framework? I go to the + +774 +00:48:18,290 --> 00:48:23,640 +library and say, I have a tree like this. If I + +775 +00:48:23,640 --> 00:48:25,300 +have A that depends on B and B that depends on C + +776 +00:48:25,300 --> 00:48:28,260 +and C that depends on D and E and so on I learn + +777 +00:48:28,260 --> 00:48:32,360 +the tree and then I just pull it to the right and + +778 +00:48:32,360 --> 00:48:35,460 +what does the branch do? it pulls the tree to the + +779 +00:48:35,460 --> 00:48:39,100 +left and it becomes a head of an advanced + +780 +00:48:39,100 --> 00:48:42,240 +injection framework that is used a lot in projects + +781 +00:48:42,240 --> 00:48:45,620 +whether it is mobile or desktop or web and this is + +782 +00:48:45,620 --> 00:48:48,200 +what will lead to the next lecture inshallah + +783 +00:48:48,200 --> 00:48:50,120 +alright guys, thank you diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/bWXrVQTqtCw_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/bWXrVQTqtCw_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..d4e5b5e85c6460c53d3fdafe9593d74630353c4e --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/bWXrVQTqtCw_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 2549, "start": 7.45, "end": 25.49, "text": " In the last lecture, we introduced a new design pattern which is the singleton design pattern And we said that sometimes I have to create one object from the class and use it everywhere in the application", "tokens": [682, 264, 1036, 7991, 11, 321, 7268, 257, 777, 1715, 5102, 597, 307, 264, 1522, 14806, 1715, 5102, 400, 321, 848, 300, 2171, 286, 362, 281, 1884, 472, 2657, 490, 264, 1508, 293, 764, 309, 5315, 294, 264, 3861], "avg_logprob": -0.4488281227648258, "compression_ratio": 1.474820143884892, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 7.450000000000002, "end": 8.21, "word": " In", "probability": 0.2744140625}, {"start": 8.21, "end": 8.59, "word": " the", "probability": 0.8134765625}, {"start": 8.59, "end": 8.79, "word": " last", "probability": 0.67333984375}, {"start": 8.79, "end": 9.25, "word": " lecture,", "probability": 0.6748046875}, {"start": 9.59, "end": 10.37, "word": " we", "probability": 0.85498046875}, {"start": 10.37, "end": 11.33, "word": " introduced", "probability": 0.2413330078125}, {"start": 11.33, "end": 11.71, "word": " a", "probability": 0.69189453125}, {"start": 11.71, "end": 11.73, "word": " new", "probability": 0.82373046875}, {"start": 11.73, "end": 12.05, "word": " design", "probability": 0.65576171875}, {"start": 12.05, "end": 12.47, "word": " pattern", "probability": 0.85791015625}, {"start": 12.47, "end": 12.85, "word": " which", "probability": 0.3193359375}, {"start": 12.85, "end": 13.01, "word": " is", "probability": 0.92431640625}, {"start": 13.01, "end": 13.11, "word": " the", "probability": 0.315673828125}, {"start": 13.11, "end": 13.63, "word": " singleton", "probability": 0.826416015625}, {"start": 13.63, "end": 14.49, "word": " design", "probability": 0.74560546875}, {"start": 14.49, "end": 14.87, "word": " pattern", "probability": 0.87744140625}, {"start": 14.87, "end": 15.79, "word": " And", "probability": 0.2393798828125}, {"start": 15.79, "end": 15.83, "word": " we", "probability": 0.8525390625}, {"start": 15.83, "end": 16.07, "word": " said", "probability": 0.48779296875}, {"start": 16.07, "end": 16.69, "word": " that", "probability": 0.88330078125}, {"start": 16.69, "end": 17.99, "word": " sometimes", "probability": 0.54248046875}, {"start": 17.99, "end": 18.29, "word": " I", "probability": 0.74560546875}, {"start": 18.29, "end": 18.37, "word": " have", "probability": 0.357421875}, {"start": 18.37, "end": 18.75, "word": " to", "probability": 0.97314453125}, {"start": 18.75, "end": 20.33, "word": " create", "probability": 0.7197265625}, {"start": 20.33, "end": 21.19, "word": " one", "probability": 0.460205078125}, {"start": 21.19, "end": 21.41, "word": " object", "probability": 0.94189453125}, {"start": 21.41, "end": 22.91, "word": " from", "probability": 0.6171875}, {"start": 22.91, "end": 23.05, "word": " the", "probability": 0.5361328125}, {"start": 23.05, "end": 23.41, "word": " class", "probability": 0.923828125}, {"start": 23.41, "end": 23.51, "word": " and", "probability": 0.8701171875}, {"start": 23.51, "end": 23.89, "word": " use", "probability": 0.54296875}, {"start": 23.89, "end": 24.31, "word": " it", "probability": 0.91650390625}, {"start": 24.31, "end": 24.83, "word": " everywhere", "probability": 0.449462890625}, {"start": 24.83, "end": 25.15, "word": " in", "probability": 0.86572265625}, {"start": 25.15, "end": 25.23, "word": " the", "probability": 0.802734375}, {"start": 25.23, "end": 25.49, "word": " application", "probability": 0.81591796875}], "temperature": 1.0}, {"id": 2, "seek": 5614, "start": 27.3, "end": 56.14, "text": " Now we are used to say that when you have a class, you create the object by using the UI Right or not? But sometimes it is negative that if you create this object in different places in the application For example, I gave an example in a previous lecture that I want to make a connection to the database Of course, if you have multiple screens in the application and from each screen You will need to get information from the database or to insert information in the database So you will need to make a connection to the database Because of this connection in every", "tokens": [823, 321, 366, 1143, 281, 584, 300, 562, 291, 362, 257, 1508, 11, 291, 1884, 264, 2657, 538, 1228, 264, 15682, 1779, 420, 406, 30, 583, 2171, 309, 307, 3671, 300, 498, 291, 1884, 341, 2657, 294, 819, 3190, 294, 264, 3861, 1171, 1365, 11, 286, 2729, 364, 1365, 294, 257, 3894, 7991, 300, 286, 528, 281, 652, 257, 4984, 281, 264, 8149, 2720, 1164, 11, 498, 291, 362, 3866, 11171, 294, 264, 3861, 293, 490, 1184, 2568, 509, 486, 643, 281, 483, 1589, 490, 264, 8149, 420, 281, 8969, 1589, 294, 264, 8149, 407, 291, 486, 643, 281, 652, 257, 4984, 281, 264, 8149, 1436, 295, 341, 4984, 294, 633], "avg_logprob": -0.47321429901889395, "compression_ratio": 1.9721254355400697, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 27.3, "end": 27.6, "word": " Now", "probability": 0.11981201171875}, {"start": 27.6, "end": 27.74, "word": " we", "probability": 0.47998046875}, {"start": 27.74, "end": 27.86, "word": " are", "probability": 0.3447265625}, {"start": 27.86, "end": 28.08, "word": " used", "probability": 0.85888671875}, {"start": 28.08, "end": 28.24, "word": " to", "probability": 0.90283203125}, {"start": 28.24, "end": 28.34, "word": " say", "probability": 0.185791015625}, {"start": 28.34, "end": 28.48, "word": " that", "probability": 0.45654296875}, {"start": 28.48, "end": 28.52, "word": " when", "probability": 0.61767578125}, {"start": 28.52, "end": 28.62, "word": " you", "probability": 0.69580078125}, {"start": 28.62, "end": 28.78, "word": " have", "probability": 0.53076171875}, {"start": 28.78, "end": 28.96, "word": " a", "probability": 0.6259765625}, {"start": 28.96, "end": 29.18, "word": " class,", "probability": 0.87939453125}, {"start": 29.3, "end": 29.38, "word": " you", "probability": 0.755859375}, {"start": 29.38, "end": 29.48, "word": " create", "probability": 0.6884765625}, {"start": 29.48, "end": 29.7, "word": " the", "probability": 0.3857421875}, {"start": 29.7, "end": 29.9, "word": " object", "probability": 0.9375}, {"start": 29.9, "end": 30.06, "word": " by", "probability": 0.2493896484375}, {"start": 30.06, "end": 30.32, "word": " using", "probability": 0.8388671875}, {"start": 30.32, "end": 30.5, "word": " the", "probability": 0.423095703125}, {"start": 30.5, "end": 30.66, "word": " UI", "probability": 0.159912109375}, {"start": 30.66, "end": 31.2, "word": " Right", "probability": 0.271484375}, {"start": 31.2, "end": 31.38, "word": " or", "probability": 0.8408203125}, {"start": 31.38, "end": 31.48, "word": " not?", "probability": 0.28515625}, {"start": 32.28, "end": 32.68, "word": " But", "probability": 0.82763671875}, {"start": 32.68, "end": 33.18, "word": " sometimes", "probability": 0.759765625}, {"start": 33.18, "end": 33.44, "word": " it", "probability": 0.728515625}, {"start": 33.44, "end": 33.66, "word": " is", "probability": 0.45556640625}, {"start": 33.66, "end": 33.98, "word": " negative", "probability": 0.58984375}, {"start": 33.98, "end": 34.84, "word": " that", "probability": 0.33154296875}, {"start": 34.84, "end": 35.14, "word": " if", "probability": 0.6396484375}, {"start": 35.14, "end": 35.22, "word": " you", "probability": 0.94287109375}, {"start": 35.22, "end": 35.46, "word": " create", "probability": 0.60546875}, {"start": 35.46, "end": 35.62, "word": " this", "probability": 0.410888671875}, {"start": 35.62, "end": 35.9, "word": " object", "probability": 0.97412109375}, {"start": 35.9, "end": 36.26, "word": " in", "probability": 0.74951171875}, {"start": 36.26, "end": 36.9, "word": " different", "probability": 0.6015625}, {"start": 36.9, "end": 36.96, "word": " places", "probability": 0.5361328125}, {"start": 36.96, "end": 37.18, "word": " in", "probability": 0.576171875}, {"start": 37.18, "end": 37.32, "word": " the", "probability": 0.84228515625}, {"start": 37.32, "end": 37.62, "word": " application", "probability": 0.654296875}, {"start": 37.62, "end": 37.86, "word": " For", "probability": 0.60693359375}, {"start": 37.86, "end": 38.14, "word": " example,", "probability": 0.91162109375}, {"start": 39.14, "end": 39.46, "word": " I", "probability": 0.712890625}, {"start": 39.46, "end": 39.6, "word": " gave", "probability": 0.35791015625}, {"start": 39.6, "end": 39.92, "word": " an", "probability": 0.63818359375}, {"start": 39.92, "end": 39.92, "word": " example", "probability": 0.9716796875}, {"start": 39.92, "end": 40.06, "word": " in", "probability": 0.72607421875}, {"start": 40.06, "end": 40.14, "word": " a", "probability": 0.48681640625}, {"start": 40.14, "end": 40.6, "word": " previous", "probability": 0.483642578125}, {"start": 40.6, "end": 40.6, "word": " lecture", "probability": 0.88330078125}, {"start": 40.6, "end": 40.8, "word": " that", "probability": 0.6328125}, {"start": 40.8, "end": 40.92, "word": " I", "probability": 0.9775390625}, {"start": 40.92, "end": 41.08, "word": " want", "probability": 0.6875}, {"start": 41.08, "end": 41.14, "word": " to", "probability": 0.9697265625}, {"start": 41.14, "end": 41.24, "word": " make", "probability": 0.58642578125}, {"start": 41.24, "end": 41.36, "word": " a", "probability": 0.83203125}, {"start": 41.36, "end": 41.66, "word": " connection", "probability": 0.8115234375}, {"start": 41.66, "end": 41.82, "word": " to", "probability": 0.60546875}, {"start": 41.82, "end": 41.9, "word": " the", "probability": 0.77880859375}, {"start": 41.9, "end": 42.28, "word": " database", "probability": 0.91552734375}, {"start": 42.28, "end": 43.08, "word": " Of", "probability": 0.4931640625}, {"start": 43.08, "end": 43.18, "word": " course,", "probability": 0.96533203125}, {"start": 43.34, "end": 43.4, "word": " if", "probability": 0.366943359375}, {"start": 43.4, "end": 43.5, "word": " you", "probability": 0.88330078125}, {"start": 43.5, "end": 43.68, "word": " have", "probability": 0.93212890625}, {"start": 43.68, "end": 44.2, "word": " multiple", "probability": 0.6015625}, {"start": 44.2, "end": 44.36, "word": " screens", "probability": 0.78564453125}, {"start": 44.36, "end": 44.84, "word": " in", "probability": 0.70947265625}, {"start": 44.84, "end": 44.84, "word": " the", "probability": 0.634765625}, {"start": 44.84, "end": 44.84, "word": " application", "probability": 0.89404296875}, {"start": 44.84, "end": 45.04, "word": " and", "probability": 0.396240234375}, {"start": 45.04, "end": 45.14, "word": " from", "probability": 0.60498046875}, {"start": 45.14, "end": 45.34, "word": " each", "probability": 0.91845703125}, {"start": 45.34, "end": 45.72, "word": " screen", "probability": 0.833984375}, {"start": 45.72, "end": 46.82, "word": " You", "probability": 0.47314453125}, {"start": 46.82, "end": 46.96, "word": " will", "probability": 0.68701171875}, {"start": 46.96, "end": 47.36, "word": " need", "probability": 0.91015625}, {"start": 47.36, "end": 47.7, "word": " to", "probability": 0.95458984375}, {"start": 47.7, "end": 48.0, "word": " get", "probability": 0.440185546875}, {"start": 48.0, "end": 48.26, "word": " information", "probability": 0.6689453125}, {"start": 48.26, "end": 48.5, "word": " from", "probability": 0.87353515625}, {"start": 48.5, "end": 48.6, "word": " the", "probability": 0.89453125}, {"start": 48.6, "end": 48.92, "word": " database", "probability": 0.9462890625}, {"start": 48.92, "end": 49.22, "word": " or", "probability": 0.75634765625}, {"start": 49.22, "end": 49.34, "word": " to", "probability": 0.275634765625}, {"start": 49.34, "end": 49.86, "word": " insert", "probability": 0.74951171875}, {"start": 49.86, "end": 50.28, "word": " information", "probability": 0.77392578125}, {"start": 50.28, "end": 50.52, "word": " in", "probability": 0.4755859375}, {"start": 50.52, "end": 50.62, "word": " the", "probability": 0.8740234375}, {"start": 50.62, "end": 51.08, "word": " database", "probability": 0.94775390625}, {"start": 51.08, "end": 51.6, "word": " So", "probability": 0.7109375}, {"start": 51.6, "end": 51.84, "word": " you", "probability": 0.85205078125}, {"start": 51.84, "end": 51.84, "word": " will", "probability": 0.69970703125}, {"start": 51.84, "end": 52.16, "word": " need", "probability": 0.89892578125}, {"start": 52.16, "end": 52.3, "word": " to", "probability": 0.96484375}, {"start": 52.3, "end": 52.4, "word": " make", "probability": 0.7802734375}, {"start": 52.4, "end": 52.52, "word": " a", "probability": 0.7998046875}, {"start": 52.52, "end": 52.9, "word": " connection", "probability": 0.90478515625}, {"start": 52.9, "end": 53.08, "word": " to", "probability": 0.8701171875}, {"start": 53.08, "end": 53.16, "word": " the", "probability": 0.91162109375}, {"start": 53.16, "end": 53.56, "word": " database", "probability": 0.947265625}, {"start": 53.56, "end": 54.52, "word": " Because", "probability": 0.10528564453125}, {"start": 54.52, "end": 54.58, "word": " of", "probability": 0.76953125}, {"start": 54.58, "end": 55.0, "word": " this", "probability": 0.442138671875}, {"start": 55.0, "end": 55.38, "word": " connection", "probability": 0.91943359375}, {"start": 55.38, "end": 55.8, "word": " in", "probability": 0.697265625}, {"start": 55.8, "end": 56.14, "word": " every", "probability": 0.47802734375}], "temperature": 1.0}, {"id": 3, "seek": 7091, "start": 57.07, "end": 70.91, "text": " A screen that you create will be negative because this connection takes from resources, memory and processing time. So, it is better to create one object and use it everywhere in the application.", "tokens": [316, 2568, 300, 291, 1884, 486, 312, 3671, 570, 341, 4984, 2516, 490, 3593, 11, 4675, 293, 9007, 565, 13, 407, 11, 309, 307, 1101, 281, 1884, 472, 2657, 293, 764, 309, 5315, 294, 264, 3861, 13], "avg_logprob": -0.7360197588017112, "compression_ratio": 1.4, "no_speech_prob": 4.76837158203125e-06, "words": [{"start": 57.07, "end": 57.23, "word": " A", "probability": 0.04779052734375}, {"start": 57.23, "end": 57.57, "word": " screen", "probability": 0.76171875}, {"start": 57.57, "end": 57.85, "word": " that", "probability": 0.260986328125}, {"start": 57.85, "end": 57.95, "word": " you", "probability": 0.173828125}, {"start": 57.95, "end": 58.39, "word": " create", "probability": 0.26123046875}, {"start": 58.39, "end": 59.37, "word": " will", "probability": 0.346435546875}, {"start": 59.37, "end": 59.75, "word": " be", "probability": 0.53955078125}, {"start": 59.75, "end": 60.11, "word": " negative", "probability": 0.77099609375}, {"start": 60.11, "end": 60.41, "word": " because", "probability": 0.58642578125}, {"start": 60.41, "end": 61.09, "word": " this", "probability": 0.5537109375}, {"start": 61.09, "end": 61.87, "word": " connection", "probability": 0.84716796875}, {"start": 61.87, "end": 62.53, "word": " takes", "probability": 0.529296875}, {"start": 62.53, "end": 62.67, "word": " from", "probability": 0.25146484375}, {"start": 62.67, "end": 63.15, "word": " resources,", "probability": 0.60302734375}, {"start": 63.57, "end": 63.99, "word": " memory", "probability": 0.40185546875}, {"start": 63.99, "end": 64.79, "word": " and", "probability": 0.52099609375}, {"start": 64.79, "end": 65.23, "word": " processing", "probability": 0.77294921875}, {"start": 65.23, "end": 65.71, "word": " time.", "probability": 0.8642578125}, {"start": 67.09, "end": 67.15, "word": " So,", "probability": 0.337646484375}, {"start": 67.27, "end": 67.27, "word": " it", "probability": 0.122802734375}, {"start": 67.27, "end": 67.27, "word": " is", "probability": 0.315185546875}, {"start": 67.27, "end": 67.41, "word": " better", "probability": 0.482666015625}, {"start": 67.41, "end": 67.53, "word": " to", "probability": 0.87548828125}, {"start": 67.53, "end": 67.75, "word": " create", "probability": 0.2763671875}, {"start": 67.75, "end": 67.93, "word": " one", "probability": 0.56591796875}, {"start": 67.93, "end": 68.23, "word": " object", "probability": 0.9619140625}, {"start": 68.23, "end": 68.79, "word": " and", "probability": 0.75634765625}, {"start": 68.79, "end": 69.09, "word": " use", "probability": 0.8232421875}, {"start": 69.09, "end": 69.29, "word": " it", "probability": 0.9130859375}, {"start": 69.29, "end": 69.63, "word": " everywhere", "probability": 0.49169921875}, {"start": 69.63, "end": 70.61, "word": " in", "probability": 0.8359375}, {"start": 70.61, "end": 70.69, "word": " the", "probability": 0.72802734375}, {"start": 70.69, "end": 70.91, "word": " application.", "probability": 0.74658203125}], "temperature": 1.0}, {"id": 4, "seek": 9165, "start": 72.43, "end": 91.65, "text": "I also connect to API and create one object and use it everywhere I connect to this API and we will see another example when I need to create one object from a class and use it everywhere in the application.Singleton Pattern in short helps me to create if I have a class", "tokens": [40, 611, 1745, 281, 9362, 293, 1884, 472, 2657, 293, 764, 309, 5315, 286, 1745, 281, 341, 9362, 293, 321, 486, 536, 1071, 1365, 562, 286, 643, 281, 1884, 472, 2657, 490, 257, 1508, 293, 764, 309, 5315, 294, 264, 3861, 13, 50, 278, 14806, 34367, 77, 294, 2099, 3665, 385, 281, 1884, 498, 286, 362, 257, 1508], "avg_logprob": -0.5415783979124942, "compression_ratio": 1.7088607594936709, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 72.43, "end": 72.69, "word": "I", "probability": 0.4462890625}, {"start": 72.69, "end": 72.85, "word": " also", "probability": 0.50244140625}, {"start": 72.85, "end": 72.85, "word": " connect", "probability": 0.62548828125}, {"start": 72.85, "end": 73.29, "word": " to", "probability": 0.736328125}, {"start": 73.29, "end": 73.69, "word": " API", "probability": 0.51171875}, {"start": 73.69, "end": 74.61, "word": " and", "probability": 0.226318359375}, {"start": 74.61, "end": 74.67, "word": " create", "probability": 0.418212890625}, {"start": 74.67, "end": 74.85, "word": " one", "probability": 0.38623046875}, {"start": 74.85, "end": 75.11, "word": " object", "probability": 0.8759765625}, {"start": 75.11, "end": 75.51, "word": " and", "probability": 0.58935546875}, {"start": 75.51, "end": 75.81, "word": " use", "probability": 0.7099609375}, {"start": 75.81, "end": 76.01, "word": " it", "probability": 0.80517578125}, {"start": 76.01, "end": 76.37, "word": " everywhere", "probability": 0.47216796875}, {"start": 76.37, "end": 76.59, "word": " I", "probability": 0.1884765625}, {"start": 76.59, "end": 76.73, "word": " connect", "probability": 0.72607421875}, {"start": 76.73, "end": 76.93, "word": " to", "probability": 0.87744140625}, {"start": 76.93, "end": 77.05, "word": " this", "probability": 0.58203125}, {"start": 77.05, "end": 77.85, "word": " API", "probability": 0.90966796875}, {"start": 77.85, "end": 79.97, "word": " and", "probability": 0.323974609375}, {"start": 79.97, "end": 80.07, "word": " we", "probability": 0.70654296875}, {"start": 80.07, "end": 80.09, "word": " will", "probability": 0.63818359375}, {"start": 80.09, "end": 80.25, "word": " see", "probability": 0.873046875}, {"start": 80.25, "end": 80.75, "word": " another", "probability": 0.2127685546875}, {"start": 80.75, "end": 80.77, "word": " example", "probability": 0.9287109375}, {"start": 80.77, "end": 81.67, "word": " when", "probability": 0.72607421875}, {"start": 81.67, "end": 81.99, "word": " I", "probability": 0.92529296875}, {"start": 81.99, "end": 82.47, "word": " need", "probability": 0.84033203125}, {"start": 82.47, "end": 82.97, "word": " to", "probability": 0.93505859375}, {"start": 82.97, "end": 83.21, "word": " create", "probability": 0.8427734375}, {"start": 83.21, "end": 83.39, "word": " one", "probability": 0.52294921875}, {"start": 83.39, "end": 83.67, "word": " object", "probability": 0.912109375}, {"start": 83.67, "end": 84.13, "word": " from", "probability": 0.61328125}, {"start": 84.13, "end": 84.23, "word": " a", "probability": 0.422607421875}, {"start": 84.23, "end": 84.41, "word": " class", "probability": 0.95556640625}, {"start": 84.41, "end": 84.53, "word": " and", "probability": 0.89794921875}, {"start": 84.53, "end": 84.77, "word": " use", "probability": 0.8505859375}, {"start": 84.77, "end": 84.97, "word": " it", "probability": 0.9228515625}, {"start": 84.97, "end": 85.35, "word": " everywhere", "probability": 0.64013671875}, {"start": 85.35, "end": 86.21, "word": " in", "probability": 0.81396484375}, {"start": 86.21, "end": 86.27, "word": " the", "probability": 0.505859375}, {"start": 86.27, "end": 86.59, "word": " application", "probability": 0.61767578125}, {"start": 86.59, "end": 88.47, "word": ".Singleton", "probability": 0.405242919921875}, {"start": 88.47, "end": 88.89, "word": " Pattern", "probability": 0.772705078125}, {"start": 88.89, "end": 88.93, "word": " in", "probability": 0.1475830078125}, {"start": 88.93, "end": 89.25, "word": " short", "probability": 0.75927734375}, {"start": 89.25, "end": 89.69, "word": " helps", "probability": 0.6123046875}, {"start": 89.69, "end": 89.99, "word": " me", "probability": 0.81396484375}, {"start": 89.99, "end": 89.99, "word": " to", "probability": 0.434326171875}, {"start": 89.99, "end": 90.27, "word": " create", "probability": 0.79296875}, {"start": 90.27, "end": 90.61, "word": " if", "probability": 0.1865234375}, {"start": 90.61, "end": 91.01, "word": " I", "probability": 0.9501953125}, {"start": 91.01, "end": 91.17, "word": " have", "probability": 0.50341796875}, {"start": 91.17, "end": 91.31, "word": " a", "probability": 0.87646484375}, {"start": 91.31, "end": 91.65, "word": " class", "probability": 0.96826171875}], "temperature": 1.0}, {"id": 5, "seek": 12033, "start": 93.17, "end": 120.33, "text": " I can create an object from it and use it anywhere in my application Now, how can I create an object and use it anywhere else? For example, I have a class I go inside this class and create an object of type a which is equal to new a Now, I move to another class, this is a screen for example, screen1 and this is screen2", "tokens": [286, 393, 1884, 364, 2657, 490, 309, 293, 764, 309, 4992, 294, 452, 3861, 823, 11, 577, 393, 286, 1884, 364, 2657, 293, 764, 309, 4992, 1646, 30, 1171, 1365, 11, 286, 362, 257, 1508, 286, 352, 1854, 341, 1508, 293, 1884, 364, 2657, 295, 2010, 257, 597, 307, 2681, 281, 777, 257, 823, 11, 286, 1286, 281, 1071, 1508, 11, 341, 307, 257, 2568, 337, 1365, 11, 2568, 16, 293, 341, 307, 2568, 17], "avg_logprob": -0.47409538375703913, "compression_ratio": 1.803370786516854, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 93.17, "end": 93.43, "word": " I", "probability": 0.49609375}, {"start": 93.43, "end": 93.65, "word": " can", "probability": 0.74951171875}, {"start": 93.65, "end": 93.89, "word": " create", "probability": 0.37548828125}, {"start": 93.89, "end": 94.25, "word": " an", "probability": 0.327392578125}, {"start": 94.25, "end": 94.43, "word": " object", "probability": 0.8994140625}, {"start": 94.43, "end": 94.65, "word": " from", "probability": 0.55517578125}, {"start": 94.65, "end": 94.65, "word": " it", "probability": 0.712890625}, {"start": 94.65, "end": 95.03, "word": " and", "probability": 0.7880859375}, {"start": 95.03, "end": 95.35, "word": " use", "probability": 0.72802734375}, {"start": 95.35, "end": 95.51, "word": " it", "probability": 0.91357421875}, {"start": 95.51, "end": 95.93, "word": " anywhere", "probability": 0.383056640625}, {"start": 95.93, "end": 96.77, "word": " in", "probability": 0.7578125}, {"start": 96.77, "end": 96.87, "word": " my", "probability": 0.71435546875}, {"start": 96.87, "end": 97.13, "word": " application", "probability": 0.55908203125}, {"start": 97.13, "end": 98.27, "word": " Now,", "probability": 0.52197265625}, {"start": 98.61, "end": 100.21, "word": " how", "probability": 0.70458984375}, {"start": 100.21, "end": 100.37, "word": " can", "probability": 0.716796875}, {"start": 100.37, "end": 100.45, "word": " I", "probability": 0.9423828125}, {"start": 100.45, "end": 100.45, "word": " create", "probability": 0.6591796875}, {"start": 100.45, "end": 100.79, "word": " an", "probability": 0.5029296875}, {"start": 100.79, "end": 100.79, "word": " object", "probability": 0.96875}, {"start": 100.79, "end": 100.99, "word": " and", "probability": 0.685546875}, {"start": 100.99, "end": 101.41, "word": " use", "probability": 0.80615234375}, {"start": 101.41, "end": 101.63, "word": " it", "probability": 0.943359375}, {"start": 101.63, "end": 101.87, "word": " anywhere", "probability": 0.39111328125}, {"start": 101.87, "end": 102.31, "word": " else?", "probability": 0.6083984375}, {"start": 102.87, "end": 103.19, "word": " For", "probability": 0.658203125}, {"start": 103.19, "end": 103.35, "word": " example,", "probability": 0.91943359375}, {"start": 103.51, "end": 103.63, "word": " I", "probability": 0.857421875}, {"start": 103.63, "end": 103.81, "word": " have", "probability": 0.916015625}, {"start": 103.81, "end": 103.91, "word": " a", "probability": 0.96142578125}, {"start": 103.91, "end": 104.31, "word": " class", "probability": 0.724609375}, {"start": 104.31, "end": 106.05, "word": " I", "probability": 0.1143798828125}, {"start": 106.05, "end": 106.85, "word": " go", "probability": 0.24365234375}, {"start": 106.85, "end": 107.09, "word": " inside", "probability": 0.55078125}, {"start": 107.09, "end": 107.39, "word": " this", "probability": 0.5654296875}, {"start": 107.39, "end": 107.69, "word": " class", "probability": 0.91357421875}, {"start": 107.69, "end": 107.97, "word": " and", "probability": 0.73046875}, {"start": 107.97, "end": 108.17, "word": " create", "probability": 0.85546875}, {"start": 108.17, "end": 108.37, "word": " an", "probability": 0.81689453125}, {"start": 108.37, "end": 108.73, "word": " object", "probability": 0.9599609375}, {"start": 108.73, "end": 109.67, "word": " of", "probability": 0.12408447265625}, {"start": 109.67, "end": 109.87, "word": " type", "probability": 0.75146484375}, {"start": 109.87, "end": 110.17, "word": " a", "probability": 0.263671875}, {"start": 110.17, "end": 111.09, "word": " which", "probability": 0.13720703125}, {"start": 111.09, "end": 111.15, "word": " is", "probability": 0.552734375}, {"start": 111.15, "end": 111.29, "word": " equal", "probability": 0.76171875}, {"start": 111.29, "end": 111.39, "word": " to", "probability": 0.974609375}, {"start": 111.39, "end": 111.75, "word": " new", "probability": 0.7080078125}, {"start": 111.75, "end": 113.35, "word": " a", "probability": 0.44970703125}, {"start": 113.35, "end": 115.19, "word": " Now,", "probability": 0.708984375}, {"start": 115.29, "end": 115.43, "word": " I", "probability": 0.7939453125}, {"start": 115.43, "end": 115.61, "word": " move", "probability": 0.4755859375}, {"start": 115.61, "end": 115.85, "word": " to", "probability": 0.7509765625}, {"start": 115.85, "end": 116.39, "word": " another", "probability": 0.84326171875}, {"start": 116.39, "end": 116.39, "word": " class,", "probability": 0.93798828125}, {"start": 116.53, "end": 116.73, "word": " this", "probability": 0.568359375}, {"start": 116.73, "end": 116.77, "word": " is", "probability": 0.7578125}, {"start": 116.77, "end": 116.95, "word": " a", "probability": 0.8173828125}, {"start": 116.95, "end": 117.05, "word": " screen", "probability": 0.84130859375}, {"start": 117.05, "end": 117.19, "word": " for", "probability": 0.44189453125}, {"start": 117.19, "end": 117.33, "word": " example,", "probability": 0.95947265625}, {"start": 117.41, "end": 118.65, "word": " screen1", "probability": 0.3433837890625}, {"start": 118.65, "end": 119.55, "word": " and", "probability": 0.654296875}, {"start": 119.55, "end": 119.77, "word": " this", "probability": 0.87841796875}, {"start": 119.77, "end": 119.81, "word": " is", "probability": 0.9052734375}, {"start": 119.81, "end": 120.33, "word": " screen2", "probability": 0.946044921875}], "temperature": 1.0}, {"id": 6, "seek": 13276, "start": 122.36, "end": 132.76, "text": "How do I use this object on the other screen? Because if I introduce it again and say new, it will create another object. But how do I use this same object?", "tokens": [6462, 360, 286, 764, 341, 2657, 322, 264, 661, 2568, 30, 1436, 498, 286, 5366, 309, 797, 293, 584, 777, 11, 309, 486, 1884, 1071, 2657, 13, 583, 577, 360, 286, 764, 341, 912, 2657, 30], "avg_logprob": -0.5831925611238222, "compression_ratio": 1.4054054054054055, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 122.36, "end": 122.64, "word": "How", "probability": 0.27490234375}, {"start": 122.64, "end": 122.76, "word": " do", "probability": 0.1075439453125}, {"start": 122.76, "end": 123.52, "word": " I", "probability": 0.7685546875}, {"start": 123.52, "end": 124.02, "word": " use", "probability": 0.5810546875}, {"start": 124.02, "end": 124.14, "word": " this", "probability": 0.470947265625}, {"start": 124.14, "end": 124.46, "word": " object", "probability": 0.9150390625}, {"start": 124.46, "end": 124.6, "word": " on", "probability": 0.29541015625}, {"start": 124.6, "end": 124.6, "word": " the", "probability": 0.41650390625}, {"start": 124.6, "end": 124.6, "word": " other", "probability": 0.374267578125}, {"start": 124.6, "end": 124.6, "word": " screen?", "probability": 0.8544921875}, {"start": 125.98, "end": 126.16, "word": " Because", "probability": 0.44775390625}, {"start": 126.16, "end": 126.3, "word": " if", "probability": 0.87158203125}, {"start": 126.3, "end": 126.36, "word": " I", "probability": 0.7177734375}, {"start": 126.36, "end": 126.62, "word": " introduce", "probability": 0.2149658203125}, {"start": 126.62, "end": 126.76, "word": " it", "probability": 0.509765625}, {"start": 126.76, "end": 126.92, "word": " again", "probability": 0.63671875}, {"start": 126.92, "end": 126.98, "word": " and", "probability": 0.7880859375}, {"start": 126.98, "end": 127.12, "word": " say", "probability": 0.61962890625}, {"start": 127.12, "end": 127.48, "word": " new,", "probability": 0.414794921875}, {"start": 127.96, "end": 128.24, "word": " it", "probability": 0.315185546875}, {"start": 128.24, "end": 128.64, "word": " will", "probability": 0.48486328125}, {"start": 128.64, "end": 128.9, "word": " create", "probability": 0.5546875}, {"start": 128.9, "end": 129.04, "word": " another", "probability": 0.57958984375}, {"start": 129.04, "end": 129.32, "word": " object.", "probability": 0.9404296875}, {"start": 130.62, "end": 131.18, "word": " But", "probability": 0.6494140625}, {"start": 131.18, "end": 131.5, "word": " how", "probability": 0.40966796875}, {"start": 131.5, "end": 131.5, "word": " do", "probability": 0.7626953125}, {"start": 131.5, "end": 131.5, "word": " I", "probability": 0.98193359375}, {"start": 131.5, "end": 131.96, "word": " use", "probability": 0.8662109375}, {"start": 131.96, "end": 132.38, "word": " this", "probability": 0.6240234375}, {"start": 132.38, "end": 132.38, "word": " same", "probability": 0.3779296875}, {"start": 132.38, "end": 132.76, "word": " object?", "probability": 0.97607421875}], "temperature": 1.0}, {"id": 7, "seek": 15244, "start": 134.59, "end": 152.45, "text": "The other way to use this A is when I move to another screen, I pass this object named A to another screen as a parameter So if this screen has a constructor named for example screen2, I can pass it a parameter of type A", "tokens": [2278, 661, 636, 281, 764, 341, 316, 307, 562, 286, 1286, 281, 1071, 2568, 11, 286, 1320, 341, 2657, 4926, 316, 281, 1071, 2568, 382, 257, 13075, 407, 498, 341, 2568, 575, 257, 47479, 4926, 337, 1365, 2568, 17, 11, 286, 393, 1320, 309, 257, 13075, 295, 2010, 316], "avg_logprob": -0.3953124940395355, "compression_ratio": 1.6176470588235294, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 134.59, "end": 134.79, "word": "The", "probability": 0.23828125}, {"start": 134.79, "end": 134.95, "word": " other", "probability": 0.76806640625}, {"start": 134.95, "end": 135.61, "word": " way", "probability": 0.85498046875}, {"start": 135.61, "end": 136.13, "word": " to", "probability": 0.5712890625}, {"start": 136.13, "end": 136.91, "word": " use", "probability": 0.82421875}, {"start": 136.91, "end": 137.07, "word": " this", "probability": 0.18798828125}, {"start": 137.07, "end": 137.17, "word": " A", "probability": 0.39501953125}, {"start": 137.17, "end": 137.73, "word": " is", "probability": 0.5810546875}, {"start": 137.73, "end": 137.95, "word": " when", "probability": 0.29248046875}, {"start": 137.95, "end": 138.39, "word": " I", "probability": 0.88427734375}, {"start": 138.39, "end": 138.79, "word": " move", "probability": 0.8046875}, {"start": 138.79, "end": 138.97, "word": " to", "probability": 0.90380859375}, {"start": 138.97, "end": 139.07, "word": " another", "probability": 0.5205078125}, {"start": 139.07, "end": 139.37, "word": " screen,", "probability": 0.822265625}, {"start": 140.23, "end": 140.47, "word": " I", "probability": 0.908203125}, {"start": 140.47, "end": 140.69, "word": " pass", "probability": 0.654296875}, {"start": 140.69, "end": 141.01, "word": " this", "probability": 0.68212890625}, {"start": 141.01, "end": 141.53, "word": " object", "probability": 0.818359375}, {"start": 141.53, "end": 142.85, "word": " named", "probability": 0.19189453125}, {"start": 142.85, "end": 143.05, "word": " A", "probability": 0.8095703125}, {"start": 143.05, "end": 143.17, "word": " to", "probability": 0.919921875}, {"start": 143.17, "end": 143.71, "word": " another", "probability": 0.37841796875}, {"start": 143.71, "end": 143.71, "word": " screen", "probability": 0.84375}, {"start": 143.71, "end": 143.93, "word": " as", "probability": 0.90869140625}, {"start": 143.93, "end": 144.03, "word": " a", "probability": 0.7548828125}, {"start": 144.03, "end": 144.29, "word": " parameter", "probability": 0.9345703125}, {"start": 144.29, "end": 145.19, "word": " So", "probability": 0.349853515625}, {"start": 145.19, "end": 145.41, "word": " if", "probability": 0.798828125}, {"start": 145.41, "end": 145.71, "word": " this", "probability": 0.89306640625}, {"start": 145.71, "end": 146.13, "word": " screen", "probability": 0.89306640625}, {"start": 146.13, "end": 146.37, "word": " has", "probability": 0.8759765625}, {"start": 146.37, "end": 146.61, "word": " a", "probability": 0.7177734375}, {"start": 146.61, "end": 147.13, "word": " constructor", "probability": 0.9287109375}, {"start": 147.13, "end": 147.93, "word": " named", "probability": 0.44873046875}, {"start": 147.93, "end": 148.05, "word": " for", "probability": 0.46142578125}, {"start": 148.05, "end": 148.29, "word": " example", "probability": 0.92919921875}, {"start": 148.29, "end": 149.83, "word": " screen2,", "probability": 0.6256103515625}, {"start": 150.37, "end": 150.45, "word": " I", "probability": 0.90869140625}, {"start": 150.45, "end": 150.63, "word": " can", "probability": 0.90380859375}, {"start": 150.63, "end": 150.87, "word": " pass", "probability": 0.88525390625}, {"start": 150.87, "end": 151.07, "word": " it", "probability": 0.325927734375}, {"start": 151.07, "end": 151.07, "word": " a", "probability": 0.6845703125}, {"start": 151.07, "end": 151.59, "word": " parameter", "probability": 0.90625}, {"start": 151.59, "end": 151.99, "word": " of", "probability": 0.8642578125}, {"start": 151.99, "end": 152.21, "word": " type", "probability": 0.57763671875}, {"start": 152.21, "end": 152.45, "word": " A", "probability": 0.88916015625}], "temperature": 1.0}, {"id": 8, "seek": 18208, "start": 153.68, "end": 182.08, "text": "which is this object which I created here you can train it as a parameter to another screen or you can have a method called setA and train it with objectA but this will not solve the problem because the object which you created you have to train it from class to class to class this way you have coupling this is a negative thing you linked them together like this", "tokens": [13690, 307, 341, 2657, 597, 286, 2942, 510, 291, 393, 3847, 309, 382, 257, 13075, 281, 1071, 2568, 420, 291, 393, 362, 257, 3170, 1219, 992, 32, 293, 3847, 309, 365, 2657, 32, 457, 341, 486, 406, 5039, 264, 1154, 570, 264, 2657, 597, 291, 2942, 291, 362, 281, 3847, 309, 490, 1508, 281, 1508, 281, 1508, 341, 636, 291, 362, 37447, 341, 307, 257, 3671, 551, 291, 9408, 552, 1214, 411, 341], "avg_logprob": -0.616976349740415, "compression_ratio": 1.8383838383838385, "no_speech_prob": 1.8477439880371094e-06, "words": [{"start": 153.68, "end": 153.94, "word": "which", "probability": 0.1812744140625}, {"start": 153.94, "end": 154.06, "word": " is", "probability": 0.8369140625}, {"start": 154.06, "end": 155.28, "word": " this", "probability": 0.491455078125}, {"start": 155.28, "end": 155.52, "word": " object", "probability": 0.61669921875}, {"start": 155.52, "end": 155.84, "word": " which", "probability": 0.1746826171875}, {"start": 155.84, "end": 155.92, "word": " I", "probability": 0.4423828125}, {"start": 155.92, "end": 156.2, "word": " created", "probability": 0.362548828125}, {"start": 156.2, "end": 156.52, "word": " here", "probability": 0.60986328125}, {"start": 156.52, "end": 157.02, "word": " you", "probability": 0.1116943359375}, {"start": 157.02, "end": 157.1, "word": " can", "probability": 0.320068359375}, {"start": 157.1, "end": 157.5, "word": " train", "probability": 0.09954833984375}, {"start": 157.5, "end": 157.66, "word": " it", "probability": 0.65869140625}, {"start": 157.66, "end": 157.76, "word": " as", "probability": 0.72705078125}, {"start": 157.76, "end": 157.84, "word": " a", "probability": 0.54052734375}, {"start": 157.84, "end": 158.28, "word": " parameter", "probability": 0.90576171875}, {"start": 158.28, "end": 158.5, "word": " to", "probability": 0.442626953125}, {"start": 158.5, "end": 158.6, "word": " another", "probability": 0.3935546875}, {"start": 158.6, "end": 158.9, "word": " screen", "probability": 0.7890625}, {"start": 158.9, "end": 159.94, "word": " or", "probability": 0.80908203125}, {"start": 159.94, "end": 160.08, "word": " you", "probability": 0.69873046875}, {"start": 160.08, "end": 160.14, "word": " can", "probability": 0.480712890625}, {"start": 160.14, "end": 160.34, "word": " have", "probability": 0.455078125}, {"start": 160.34, "end": 160.8, "word": " a", "probability": 0.86181640625}, {"start": 160.8, "end": 161.1, "word": " method", "probability": 0.916015625}, {"start": 161.1, "end": 161.36, "word": " called", "probability": 0.441650390625}, {"start": 161.36, "end": 162.24, "word": " setA", "probability": 0.65087890625}, {"start": 162.24, "end": 163.2, "word": " and", "probability": 0.7724609375}, {"start": 163.2, "end": 163.44, "word": " train", "probability": 0.65869140625}, {"start": 163.44, "end": 163.74, "word": " it", "probability": 0.63525390625}, {"start": 163.74, "end": 164.3, "word": " with", "probability": 0.290771484375}, {"start": 164.3, "end": 165.0, "word": " objectA", "probability": 0.71240234375}, {"start": 165.0, "end": 168.28, "word": " but", "probability": 0.21337890625}, {"start": 168.28, "end": 170.02, "word": " this", "probability": 0.5322265625}, {"start": 170.02, "end": 170.16, "word": " will", "probability": 0.296142578125}, {"start": 170.16, "end": 170.22, "word": " not", "probability": 0.8896484375}, {"start": 170.22, "end": 170.48, "word": " solve", "probability": 0.7763671875}, {"start": 170.48, "end": 170.58, "word": " the", "probability": 0.837890625}, {"start": 170.58, "end": 170.8, "word": " problem", "probability": 0.79736328125}, {"start": 170.8, "end": 171.04, "word": " because", "probability": 0.697265625}, {"start": 171.04, "end": 171.28, "word": " the", "probability": 0.476806640625}, {"start": 171.28, "end": 171.54, "word": " object", "probability": 0.88232421875}, {"start": 171.54, "end": 171.7, "word": " which", "probability": 0.275634765625}, {"start": 171.7, "end": 171.86, "word": " you", "probability": 0.8046875}, {"start": 171.86, "end": 172.2, "word": " created", "probability": 0.58154296875}, {"start": 172.2, "end": 172.34, "word": " you", "probability": 0.36572265625}, {"start": 172.34, "end": 172.4, "word": " have", "probability": 0.2041015625}, {"start": 172.4, "end": 172.5, "word": " to", "probability": 0.9267578125}, {"start": 172.5, "end": 172.98, "word": " train", "probability": 0.8544921875}, {"start": 172.98, "end": 173.74, "word": " it", "probability": 0.8486328125}, {"start": 173.74, "end": 173.96, "word": " from", "probability": 0.66748046875}, {"start": 173.96, "end": 174.5, "word": " class", "probability": 0.841796875}, {"start": 174.5, "end": 174.66, "word": " to", "probability": 0.96875}, {"start": 174.66, "end": 175.04, "word": " class", "probability": 0.9658203125}, {"start": 175.04, "end": 175.26, "word": " to", "probability": 0.76513671875}, {"start": 175.26, "end": 175.74, "word": " class", "probability": 0.96923828125}, {"start": 175.74, "end": 176.56, "word": " this", "probability": 0.2264404296875}, {"start": 176.56, "end": 176.58, "word": " way", "probability": 0.54248046875}, {"start": 176.58, "end": 176.94, "word": " you", "probability": 0.83837890625}, {"start": 176.94, "end": 177.04, "word": " have", "probability": 0.5859375}, {"start": 177.04, "end": 177.48, "word": " coupling", "probability": 0.80615234375}, {"start": 177.48, "end": 178.14, "word": " this", "probability": 0.37890625}, {"start": 178.14, "end": 178.4, "word": " is", "probability": 0.1546630859375}, {"start": 178.4, "end": 178.66, "word": " a", "probability": 0.43505859375}, {"start": 178.66, "end": 178.66, "word": " negative", "probability": 0.6396484375}, {"start": 178.66, "end": 179.62, "word": " thing", "probability": 0.75244140625}, {"start": 179.62, "end": 180.48, "word": " you", "probability": 0.66845703125}, {"start": 180.48, "end": 180.68, "word": " linked", "probability": 0.2408447265625}, {"start": 180.68, "end": 180.9, "word": " them", "probability": 0.8642578125}, {"start": 180.9, "end": 181.24, "word": " together", "probability": 0.751953125}, {"start": 181.24, "end": 181.4, "word": " like", "probability": 0.417724609375}, {"start": 181.4, "end": 182.08, "word": " this", "probability": 0.7685546875}], "temperature": 1.0}, {"id": 9, "seek": 20501, "start": 183.55, "end": 205.01, "text": "Okay, before we go through the object, let's see how we can achieve this thing. Create one object and use it anywhere in the application. Let's see the second example. Now, if I suppose", "tokens": [8297, 11, 949, 321, 352, 807, 264, 2657, 11, 718, 311, 536, 577, 321, 393, 4584, 341, 551, 13, 20248, 472, 2657, 293, 764, 309, 4992, 294, 264, 3861, 13, 961, 311, 536, 264, 1150, 1365, 13, 823, 11, 498, 286, 7297], "avg_logprob": -0.5039971207463464, "compression_ratio": 1.3405797101449275, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 183.55, "end": 183.89, "word": "Okay,", "probability": 0.260498046875}, {"start": 184.03, "end": 184.31, "word": " before", "probability": 0.64697265625}, {"start": 184.31, "end": 184.89, "word": " we", "probability": 0.4599609375}, {"start": 184.89, "end": 185.23, "word": " go", "probability": 0.29443359375}, {"start": 185.23, "end": 185.37, "word": " through", "probability": 0.349609375}, {"start": 185.37, "end": 185.45, "word": " the", "probability": 0.7734375}, {"start": 185.45, "end": 185.67, "word": " object,", "probability": 0.87646484375}, {"start": 185.79, "end": 185.99, "word": " let's", "probability": 0.769775390625}, {"start": 185.99, "end": 186.23, "word": " see", "probability": 0.7568359375}, {"start": 186.23, "end": 186.49, "word": " how", "probability": 0.87451171875}, {"start": 186.49, "end": 187.13, "word": " we", "probability": 0.71337890625}, {"start": 187.13, "end": 187.35, "word": " can", "probability": 0.849609375}, {"start": 187.35, "end": 187.67, "word": " achieve", "probability": 0.4306640625}, {"start": 187.67, "end": 187.85, "word": " this", "probability": 0.748046875}, {"start": 187.85, "end": 188.19, "word": " thing.", "probability": 0.193359375}, {"start": 188.35, "end": 188.55, "word": " Create", "probability": 0.3623046875}, {"start": 188.55, "end": 188.75, "word": " one", "probability": 0.40625}, {"start": 188.75, "end": 189.25, "word": " object", "probability": 0.97607421875}, {"start": 189.25, "end": 189.99, "word": " and", "probability": 0.74658203125}, {"start": 189.99, "end": 190.33, "word": " use", "probability": 0.81396484375}, {"start": 190.33, "end": 190.55, "word": " it", "probability": 0.9384765625}, {"start": 190.55, "end": 190.91, "word": " anywhere", "probability": 0.62451171875}, {"start": 190.91, "end": 191.61, "word": " in", "probability": 0.83544921875}, {"start": 191.61, "end": 191.69, "word": " the", "probability": 0.85888671875}, {"start": 191.69, "end": 192.01, "word": " application.", "probability": 0.70263671875}, {"start": 192.55, "end": 192.87, "word": " Let's", "probability": 0.930419921875}, {"start": 192.87, "end": 193.11, "word": " see", "probability": 0.681640625}, {"start": 193.11, "end": 193.25, "word": " the", "probability": 0.70654296875}, {"start": 193.25, "end": 193.99, "word": " second", "probability": 0.39306640625}, {"start": 193.99, "end": 193.99, "word": " example.", "probability": 0.9560546875}, {"start": 203.87, "end": 204.41, "word": " Now,", "probability": 0.74072265625}, {"start": 204.53, "end": 204.63, "word": " if", "probability": 0.30126953125}, {"start": 204.63, "end": 205.01, "word": " I", "probability": 0.939453125}, {"start": 205.01, "end": 205.01, "word": " suppose", "probability": 0.42724609375}], "temperature": 1.0}, {"id": 10, "seek": 22682, "start": 210.7, "end": 226.82, "text": " I had a class whose name was for example phone book which is like a phone number. Do you know what is a phone number? It is the number of phones and the names of these people. For example, to give me the name, it gives me the phone number.", "tokens": [286, 632, 257, 1508, 6104, 1315, 390, 337, 1365, 2593, 1446, 597, 307, 411, 257, 2593, 1230, 13, 1144, 291, 458, 437, 307, 257, 2593, 1230, 30, 467, 307, 264, 1230, 295, 10216, 293, 264, 5288, 295, 613, 561, 13, 1171, 1365, 11, 281, 976, 385, 264, 1315, 11, 309, 2709, 385, 264, 2593, 1230, 13], "avg_logprob": -0.6052631327980443, "compression_ratio": 1.6901408450704225, "no_speech_prob": 5.602836608886719e-06, "words": [{"start": 210.7, "end": 210.98, "word": " I", "probability": 0.26806640625}, {"start": 210.98, "end": 211.16, "word": " had", "probability": 0.6669921875}, {"start": 211.16, "end": 211.28, "word": " a", "probability": 0.9072265625}, {"start": 211.28, "end": 211.62, "word": " class", "probability": 0.951171875}, {"start": 211.62, "end": 211.68, "word": " whose", "probability": 0.09698486328125}, {"start": 211.68, "end": 211.86, "word": " name", "probability": 0.904296875}, {"start": 211.86, "end": 212.06, "word": " was", "probability": 0.796875}, {"start": 212.06, "end": 212.08, "word": " for", "probability": 0.3046875}, {"start": 212.08, "end": 212.42, "word": " example", "probability": 0.91259765625}, {"start": 212.42, "end": 213.36, "word": " phone", "probability": 0.5009765625}, {"start": 213.36, "end": 214.74, "word": " book", "probability": 0.78515625}, {"start": 214.74, "end": 217.84, "word": " which", "probability": 0.328125}, {"start": 217.84, "end": 218.06, "word": " is", "probability": 0.76123046875}, {"start": 218.06, "end": 218.2, "word": " like", "probability": 0.5263671875}, {"start": 218.2, "end": 218.3, "word": " a", "probability": 0.50146484375}, {"start": 218.3, "end": 218.42, "word": " phone", "probability": 0.6650390625}, {"start": 218.42, "end": 218.88, "word": " number.", "probability": 0.283447265625}, {"start": 219.1, "end": 219.38, "word": " Do", "probability": 0.45458984375}, {"start": 219.38, "end": 219.38, "word": " you", "probability": 0.97021484375}, {"start": 219.38, "end": 219.56, "word": " know", "probability": 0.88720703125}, {"start": 219.56, "end": 219.7, "word": " what", "probability": 0.65966796875}, {"start": 219.7, "end": 219.7, "word": " is", "probability": 0.37890625}, {"start": 219.7, "end": 219.74, "word": " a", "probability": 0.61376953125}, {"start": 219.74, "end": 219.84, "word": " phone", "probability": 0.8388671875}, {"start": 219.84, "end": 220.34, "word": " number?", "probability": 0.90380859375}, {"start": 221.42, "end": 221.8, "word": " It", "probability": 0.463623046875}, {"start": 221.8, "end": 221.8, "word": " is", "probability": 0.61181640625}, {"start": 221.8, "end": 221.8, "word": " the", "probability": 0.38134765625}, {"start": 221.8, "end": 222.02, "word": " number", "probability": 0.27392578125}, {"start": 222.02, "end": 222.14, "word": " of", "probability": 0.88720703125}, {"start": 222.14, "end": 222.44, "word": " phones", "probability": 0.344482421875}, {"start": 222.44, "end": 222.68, "word": " and", "probability": 0.6923828125}, {"start": 222.68, "end": 222.82, "word": " the", "probability": 0.482421875}, {"start": 222.82, "end": 222.94, "word": " names", "probability": 0.607421875}, {"start": 222.94, "end": 223.08, "word": " of", "probability": 0.96435546875}, {"start": 223.08, "end": 223.14, "word": " these", "probability": 0.2286376953125}, {"start": 223.14, "end": 223.46, "word": " people.", "probability": 0.70361328125}, {"start": 224.04, "end": 224.22, "word": " For", "probability": 0.317626953125}, {"start": 224.22, "end": 224.32, "word": " example,", "probability": 0.919921875}, {"start": 224.32, "end": 224.32, "word": " to", "probability": 0.2607421875}, {"start": 224.32, "end": 224.44, "word": " give", "probability": 0.65869140625}, {"start": 224.44, "end": 224.56, "word": " me", "probability": 0.56103515625}, {"start": 224.56, "end": 224.94, "word": " the", "probability": 0.382080078125}, {"start": 224.94, "end": 225.18, "word": " name,", "probability": 0.87255859375}, {"start": 225.28, "end": 225.36, "word": " it", "probability": 0.2158203125}, {"start": 225.36, "end": 225.5, "word": " gives", "probability": 0.546875}, {"start": 225.5, "end": 226.06, "word": " me", "probability": 0.90185546875}, {"start": 226.06, "end": 226.34, "word": " the", "probability": 0.8603515625}, {"start": 226.34, "end": 226.8, "word": " phone", "probability": 0.56591796875}, {"start": 226.8, "end": 226.82, "word": " number.", "probability": 0.9443359375}], "temperature": 1.0}, {"id": 11, "seek": 24854, "start": 228.82, "end": 248.54, "text": "And the proof of these phones takes from their memory because it is huge, there are thousands of names and numbers on their phones and phones, so it can be stored in a database or a file and I make a note of it. So I would like to have a class, a phone book that contains this information so that I can read from it", "tokens": [5289, 264, 8177, 295, 613, 10216, 2516, 490, 641, 4675, 570, 309, 307, 2603, 11, 456, 366, 5383, 295, 5288, 293, 3547, 322, 641, 10216, 293, 10216, 11, 370, 309, 393, 312, 12187, 294, 257, 8149, 420, 257, 3991, 293, 286, 652, 257, 3637, 295, 309, 13, 407, 286, 576, 411, 281, 362, 257, 1508, 11, 257, 2593, 1446, 300, 8306, 341, 1589, 370, 300, 286, 393, 1401, 490, 309], "avg_logprob": -0.6210387256783498, "compression_ratio": 1.5909090909090908, "no_speech_prob": 7.68899917602539e-06, "words": [{"start": 228.82, "end": 229.26, "word": "And", "probability": 0.154052734375}, {"start": 229.26, "end": 229.32, "word": " the", "probability": 0.302978515625}, {"start": 229.32, "end": 229.5, "word": " proof", "probability": 0.2445068359375}, {"start": 229.5, "end": 229.6, "word": " of", "probability": 0.7392578125}, {"start": 229.6, "end": 229.68, "word": " these", "probability": 0.319580078125}, {"start": 229.68, "end": 229.94, "word": " phones", "probability": 0.409423828125}, {"start": 229.94, "end": 230.64, "word": " takes", "probability": 0.18115234375}, {"start": 230.64, "end": 230.86, "word": " from", "probability": 0.7216796875}, {"start": 230.86, "end": 230.98, "word": " their", "probability": 0.280029296875}, {"start": 230.98, "end": 231.22, "word": " memory", "probability": 0.60888671875}, {"start": 231.22, "end": 231.68, "word": " because", "probability": 0.347900390625}, {"start": 231.68, "end": 231.96, "word": " it", "probability": 0.62451171875}, {"start": 231.96, "end": 232.8, "word": " is", "probability": 0.56884765625}, {"start": 232.8, "end": 233.16, "word": " huge,", "probability": 0.5380859375}, {"start": 233.68, "end": 234.18, "word": " there", "probability": 0.2978515625}, {"start": 234.18, "end": 234.72, "word": " are", "probability": 0.4267578125}, {"start": 234.72, "end": 235.14, "word": " thousands", "probability": 0.73828125}, {"start": 235.14, "end": 235.48, "word": " of", "probability": 0.9482421875}, {"start": 235.48, "end": 236.0, "word": " names", "probability": 0.366455078125}, {"start": 236.0, "end": 236.56, "word": " and", "probability": 0.7783203125}, {"start": 236.56, "end": 236.86, "word": " numbers", "probability": 0.458251953125}, {"start": 236.86, "end": 237.14, "word": " on", "probability": 0.281982421875}, {"start": 237.14, "end": 237.28, "word": " their", "probability": 0.8310546875}, {"start": 237.28, "end": 237.7, "word": " phones", "probability": 0.73486328125}, {"start": 237.7, "end": 237.84, "word": " and", "probability": 0.71484375}, {"start": 237.84, "end": 238.22, "word": " phones,", "probability": 0.6416015625}, {"start": 238.7, "end": 239.5, "word": " so", "probability": 0.439697265625}, {"start": 239.5, "end": 239.88, "word": " it", "probability": 0.401123046875}, {"start": 239.88, "end": 240.04, "word": " can", "probability": 0.48193359375}, {"start": 240.04, "end": 240.22, "word": " be", "probability": 0.9111328125}, {"start": 240.22, "end": 240.48, "word": " stored", "probability": 0.84375}, {"start": 240.48, "end": 240.66, "word": " in", "probability": 0.9345703125}, {"start": 240.66, "end": 240.76, "word": " a", "probability": 0.78564453125}, {"start": 240.76, "end": 241.1, "word": " database", "probability": 0.91455078125}, {"start": 241.1, "end": 241.34, "word": " or", "probability": 0.892578125}, {"start": 241.34, "end": 241.5, "word": " a", "probability": 0.28515625}, {"start": 241.5, "end": 241.7, "word": " file", "probability": 0.86083984375}, {"start": 241.7, "end": 241.86, "word": " and", "probability": 0.311767578125}, {"start": 241.86, "end": 241.86, "word": " I", "probability": 0.5146484375}, {"start": 241.86, "end": 242.94, "word": " make", "probability": 0.1837158203125}, {"start": 242.94, "end": 243.06, "word": " a", "probability": 0.61376953125}, {"start": 243.06, "end": 243.26, "word": " note", "probability": 0.68896484375}, {"start": 243.26, "end": 243.34, "word": " of", "probability": 0.6865234375}, {"start": 243.34, "end": 243.6, "word": " it.", "probability": 0.87939453125}, {"start": 243.82, "end": 244.08, "word": " So", "probability": 0.2210693359375}, {"start": 244.08, "end": 244.14, "word": " I", "probability": 0.5029296875}, {"start": 244.14, "end": 244.36, "word": " would", "probability": 0.346923828125}, {"start": 244.36, "end": 244.36, "word": " like", "probability": 0.85498046875}, {"start": 244.36, "end": 244.48, "word": " to", "probability": 0.939453125}, {"start": 244.48, "end": 244.62, "word": " have", "probability": 0.92431640625}, {"start": 244.62, "end": 244.84, "word": " a", "probability": 0.75146484375}, {"start": 244.84, "end": 245.14, "word": " class,", "probability": 0.72802734375}, {"start": 245.26, "end": 245.38, "word": " a", "probability": 0.84228515625}, {"start": 245.38, "end": 245.6, "word": " phone", "probability": 0.7841796875}, {"start": 245.6, "end": 245.82, "word": " book", "probability": 0.6796875}, {"start": 245.82, "end": 245.98, "word": " that", "probability": 0.251953125}, {"start": 245.98, "end": 246.34, "word": " contains", "probability": 0.6572265625}, {"start": 246.34, "end": 246.78, "word": " this", "probability": 0.42041015625}, {"start": 246.78, "end": 247.36, "word": " information", "probability": 0.783203125}, {"start": 247.36, "end": 247.52, "word": " so", "probability": 0.609375}, {"start": 247.52, "end": 247.64, "word": " that", "probability": 0.65087890625}, {"start": 247.64, "end": 247.74, "word": " I", "probability": 0.9951171875}, {"start": 247.74, "end": 247.88, "word": " can", "probability": 0.919921875}, {"start": 247.88, "end": 248.16, "word": " read", "probability": 0.96337890625}, {"start": 248.16, "end": 248.32, "word": " from", "probability": 0.71435546875}, {"start": 248.32, "end": 248.54, "word": " it", "probability": 0.9306640625}], "temperature": 1.0}, {"id": 12, "seek": 27720, "start": 249.36, "end": 277.2, "text": " For example, give me a name of a certain person, give me his phone number. Give me, for example, a state name that gives me the key to the state economy in it, for example. Okay? So, how do I store information in the phone book? I'm going to create a data structure called Hash Map. Okay? I'm going to name it, for example, phone codes. Do you know what Hash Map is, guys? Did you get it?", "tokens": [1171, 1365, 11, 976, 385, 257, 1315, 295, 257, 1629, 954, 11, 976, 385, 702, 2593, 1230, 13, 5303, 385, 11, 337, 1365, 11, 257, 1785, 1315, 300, 2709, 385, 264, 2141, 281, 264, 1785, 5010, 294, 309, 11, 337, 1365, 13, 1033, 30, 407, 11, 577, 360, 286, 3531, 1589, 294, 264, 2593, 1446, 30, 286, 478, 516, 281, 1884, 257, 1412, 3877, 1219, 30775, 22053, 13, 1033, 30, 286, 478, 516, 281, 1315, 309, 11, 337, 1365, 11, 2593, 14211, 13, 1144, 291, 458, 437, 30775, 22053, 307, 11, 1074, 30, 2589, 291, 483, 309, 30], "avg_logprob": -0.48579545153511894, "compression_ratio": 1.7212389380530972, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 249.36, "end": 249.72, "word": " For", "probability": 0.1385498046875}, {"start": 249.72, "end": 249.72, "word": " example,", "probability": 0.88427734375}, {"start": 249.72, "end": 249.72, "word": " give", "probability": 0.455078125}, {"start": 249.72, "end": 249.9, "word": " me", "probability": 0.87890625}, {"start": 249.9, "end": 250.06, "word": " a", "probability": 0.63818359375}, {"start": 250.06, "end": 250.06, "word": " name", "probability": 0.3359375}, {"start": 250.06, "end": 250.4, "word": " of", "probability": 0.8076171875}, {"start": 250.4, "end": 250.48, "word": " a", "probability": 0.6787109375}, {"start": 250.48, "end": 251.0, "word": " certain", "probability": 0.27392578125}, {"start": 251.0, "end": 251.0, "word": " person,", "probability": 0.84130859375}, {"start": 251.16, "end": 251.28, "word": " give", "probability": 0.477783203125}, {"start": 251.28, "end": 251.4, "word": " me", "probability": 0.82080078125}, {"start": 251.4, "end": 251.56, "word": " his", "probability": 0.86865234375}, {"start": 251.56, "end": 251.82, "word": " phone", "probability": 0.498291015625}, {"start": 251.82, "end": 252.0, "word": " number.", "probability": 0.9521484375}, {"start": 252.06, "end": 252.26, "word": " Give", "probability": 0.4873046875}, {"start": 252.26, "end": 252.42, "word": " me,", "probability": 0.92529296875}, {"start": 252.54, "end": 252.56, "word": " for", "probability": 0.495361328125}, {"start": 252.56, "end": 252.74, "word": " example,", "probability": 0.9638671875}, {"start": 253.0, "end": 254.3, "word": " a", "probability": 0.155517578125}, {"start": 254.3, "end": 255.1, "word": " state", "probability": 0.406005859375}, {"start": 255.1, "end": 255.54, "word": " name", "probability": 0.744140625}, {"start": 255.54, "end": 255.8, "word": " that", "probability": 0.43408203125}, {"start": 255.8, "end": 255.98, "word": " gives", "probability": 0.54931640625}, {"start": 255.98, "end": 256.16, "word": " me", "probability": 0.92431640625}, {"start": 256.16, "end": 256.18, "word": " the", "probability": 0.63037109375}, {"start": 256.18, "end": 256.36, "word": " key", "probability": 0.744140625}, {"start": 256.36, "end": 256.6, "word": " to", "probability": 0.7890625}, {"start": 256.6, "end": 256.68, "word": " the", "probability": 0.5126953125}, {"start": 256.68, "end": 256.68, "word": " state", "probability": 0.7744140625}, {"start": 256.68, "end": 257.32, "word": " economy", "probability": 0.62109375}, {"start": 257.32, "end": 257.44, "word": " in", "probability": 0.42626953125}, {"start": 257.44, "end": 257.58, "word": " it,", "probability": 0.89599609375}, {"start": 257.6, "end": 257.78, "word": " for", "probability": 0.89794921875}, {"start": 257.78, "end": 257.96, "word": " example.", "probability": 0.966796875}, {"start": 258.38, "end": 258.56, "word": " Okay?", "probability": 0.280029296875}, {"start": 259.76, "end": 260.12, "word": " So,", "probability": 0.755859375}, {"start": 260.38, "end": 260.58, "word": " how", "probability": 0.83544921875}, {"start": 260.58, "end": 260.68, "word": " do", "probability": 0.5634765625}, {"start": 260.68, "end": 260.74, "word": " I", "probability": 0.828125}, {"start": 260.74, "end": 260.84, "word": " store", "probability": 0.363525390625}, {"start": 260.84, "end": 261.18, "word": " information", "probability": 0.318115234375}, {"start": 261.18, "end": 261.9, "word": " in", "probability": 0.759765625}, {"start": 261.9, "end": 262.06, "word": " the", "probability": 0.4580078125}, {"start": 262.06, "end": 262.26, "word": " phone", "probability": 0.77685546875}, {"start": 262.26, "end": 262.46, "word": " book?", "probability": 0.65087890625}, {"start": 262.48, "end": 262.74, "word": " I'm", "probability": 0.26983642578125}, {"start": 262.74, "end": 262.74, "word": " going", "probability": 0.904296875}, {"start": 262.74, "end": 262.88, "word": " to", "probability": 0.96435546875}, {"start": 262.88, "end": 263.1, "word": " create", "probability": 0.5625}, {"start": 263.1, "end": 264.08, "word": " a", "probability": 0.921875}, {"start": 264.08, "end": 264.24, "word": " data", "probability": 0.63037109375}, {"start": 264.24, "end": 264.74, "word": " structure", "probability": 0.90380859375}, {"start": 264.74, "end": 265.04, "word": " called", "probability": 0.410400390625}, {"start": 265.04, "end": 265.34, "word": " Hash", "probability": 0.58984375}, {"start": 265.34, "end": 265.62, "word": " Map.", "probability": 0.5009765625}, {"start": 270.22, "end": 270.58, "word": " Okay?", "probability": 0.67138671875}, {"start": 270.66, "end": 270.8, "word": " I'm", "probability": 0.7822265625}, {"start": 270.8, "end": 270.82, "word": " going", "probability": 0.91650390625}, {"start": 270.82, "end": 270.92, "word": " to", "probability": 0.97119140625}, {"start": 270.92, "end": 271.1, "word": " name", "probability": 0.327880859375}, {"start": 271.1, "end": 271.26, "word": " it,", "probability": 0.9013671875}, {"start": 271.26, "end": 271.4, "word": " for", "probability": 0.92626953125}, {"start": 271.4, "end": 271.5, "word": " example,", "probability": 0.96337890625}, {"start": 271.56, "end": 271.88, "word": " phone", "probability": 0.46923828125}, {"start": 271.88, "end": 272.32, "word": " codes.", "probability": 0.87060546875}, {"start": 275.12, "end": 275.24, "word": " Do", "probability": 0.499267578125}, {"start": 275.24, "end": 275.3, "word": " you", "probability": 0.96533203125}, {"start": 275.3, "end": 275.5, "word": " know", "probability": 0.77099609375}, {"start": 275.5, "end": 275.7, "word": " what", "probability": 0.8984375}, {"start": 275.7, "end": 275.94, "word": " Hash", "probability": 0.47265625}, {"start": 275.94, "end": 276.16, "word": " Map", "probability": 0.87548828125}, {"start": 276.16, "end": 276.24, "word": " is,", "probability": 0.9091796875}, {"start": 276.3, "end": 276.5, "word": " guys?", "probability": 0.8212890625}, {"start": 276.7, "end": 277.06, "word": " Did", "probability": 0.1719970703125}, {"start": 277.06, "end": 277.08, "word": " you", "probability": 0.97216796875}, {"start": 277.08, "end": 277.08, "word": " get", "probability": 0.418212890625}, {"start": 277.08, "end": 277.2, "word": " it?", "probability": 0.88525390625}], "temperature": 1.0}, {"id": 13, "seek": 30651, "start": 277.81, "end": 306.51, "text": " The hash map is a data structure, but I don't store information in it, I store two information next to each other, key and value, on the basis that I want to put the key, for example, the name of the person or the name of the country, and the value, the phone number, because the hash map is not yet created, I did not create it, okay? So I go and create a constructor called phonebook, this is the constructor, from inside the constructor, I say phone codes is equal to", "tokens": [440, 22019, 4471, 307, 257, 1412, 3877, 11, 457, 286, 500, 380, 3531, 1589, 294, 309, 11, 286, 3531, 732, 1589, 958, 281, 1184, 661, 11, 2141, 293, 2158, 11, 322, 264, 5143, 300, 286, 528, 281, 829, 264, 2141, 11, 337, 1365, 11, 264, 1315, 295, 264, 954, 420, 264, 1315, 295, 264, 1941, 11, 293, 264, 2158, 11, 264, 2593, 1230, 11, 570, 264, 22019, 4471, 307, 406, 1939, 2942, 11, 286, 630, 406, 1884, 309, 11, 1392, 30, 407, 286, 352, 293, 1884, 257, 47479, 1219, 2593, 2939, 11, 341, 307, 264, 47479, 11, 490, 1854, 264, 47479, 11, 286, 584, 2593, 14211, 307, 2681, 281], "avg_logprob": -0.4590909180316058, "compression_ratio": 1.884, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 277.81, "end": 278.05, "word": " The", "probability": 0.409912109375}, {"start": 278.05, "end": 278.21, "word": " hash", "probability": 0.320068359375}, {"start": 278.21, "end": 278.45, "word": " map", "probability": 0.72119140625}, {"start": 278.45, "end": 278.91, "word": " is", "probability": 0.884765625}, {"start": 278.91, "end": 279.25, "word": " a", "probability": 0.58837890625}, {"start": 279.25, "end": 279.49, "word": " data", "probability": 0.7099609375}, {"start": 279.49, "end": 280.01, "word": " structure,", "probability": 0.8701171875}, {"start": 280.21, "end": 280.65, "word": " but", "probability": 0.60498046875}, {"start": 280.65, "end": 280.79, "word": " I", "probability": 0.45703125}, {"start": 280.79, "end": 280.81, "word": " don't", "probability": 0.76220703125}, {"start": 280.81, "end": 280.99, "word": " store", "probability": 0.69189453125}, {"start": 280.99, "end": 281.45, "word": " information", "probability": 0.27099609375}, {"start": 281.45, "end": 281.71, "word": " in", "probability": 0.54345703125}, {"start": 281.71, "end": 281.71, "word": " it,", "probability": 0.89892578125}, {"start": 282.17, "end": 282.27, "word": " I", "probability": 0.73291015625}, {"start": 282.27, "end": 282.53, "word": " store", "probability": 0.8388671875}, {"start": 282.53, "end": 282.73, "word": " two", "probability": 0.67919921875}, {"start": 282.73, "end": 282.99, "word": " information", "probability": 0.431884765625}, {"start": 282.99, "end": 283.89, "word": " next", "probability": 0.5751953125}, {"start": 283.89, "end": 283.99, "word": " to", "probability": 0.96875}, {"start": 283.99, "end": 284.25, "word": " each", "probability": 0.89111328125}, {"start": 284.25, "end": 284.25, "word": " other,", "probability": 0.87939453125}, {"start": 284.37, "end": 284.65, "word": " key", "probability": 0.62060546875}, {"start": 284.65, "end": 285.37, "word": " and", "probability": 0.9306640625}, {"start": 285.37, "end": 285.65, "word": " value,", "probability": 0.82763671875}, {"start": 286.03, "end": 286.23, "word": " on", "probability": 0.324462890625}, {"start": 286.23, "end": 286.35, "word": " the", "probability": 0.87255859375}, {"start": 286.35, "end": 286.51, "word": " basis", "probability": 0.7509765625}, {"start": 286.51, "end": 286.63, "word": " that", "probability": 0.87646484375}, {"start": 286.63, "end": 286.77, "word": " I", "probability": 0.89208984375}, {"start": 286.77, "end": 286.95, "word": " want", "probability": 0.63623046875}, {"start": 286.95, "end": 287.01, "word": " to", "probability": 0.95263671875}, {"start": 287.01, "end": 287.25, "word": " put", "probability": 0.71875}, {"start": 287.25, "end": 287.39, "word": " the", "probability": 0.7412109375}, {"start": 287.39, "end": 287.59, "word": " key,", "probability": 0.92236328125}, {"start": 287.69, "end": 287.79, "word": " for", "probability": 0.77197265625}, {"start": 287.79, "end": 287.91, "word": " example,", "probability": 0.9560546875}, {"start": 287.97, "end": 288.15, "word": " the", "probability": 0.43701171875}, {"start": 288.15, "end": 288.15, "word": " name", "probability": 0.68212890625}, {"start": 288.15, "end": 288.23, "word": " of", "probability": 0.9501953125}, {"start": 288.23, "end": 288.31, "word": " the", "probability": 0.8505859375}, {"start": 288.31, "end": 288.51, "word": " person", "probability": 0.85498046875}, {"start": 288.51, "end": 288.69, "word": " or", "probability": 0.8564453125}, {"start": 288.69, "end": 288.77, "word": " the", "probability": 0.80224609375}, {"start": 288.77, "end": 288.87, "word": " name", "probability": 0.42919921875}, {"start": 288.87, "end": 288.97, "word": " of", "probability": 0.96337890625}, {"start": 288.97, "end": 289.01, "word": " the", "probability": 0.90771484375}, {"start": 289.01, "end": 289.27, "word": " country,", "probability": 0.53125}, {"start": 289.81, "end": 289.91, "word": " and", "probability": 0.88330078125}, {"start": 289.91, "end": 289.97, "word": " the", "probability": 0.78076171875}, {"start": 289.97, "end": 290.21, "word": " value,", "probability": 0.92724609375}, {"start": 290.63, "end": 290.99, "word": " the", "probability": 0.5498046875}, {"start": 290.99, "end": 291.27, "word": " phone", "probability": 0.66943359375}, {"start": 291.27, "end": 291.27, "word": " number,", "probability": 0.9228515625}, {"start": 292.15, "end": 292.31, "word": " because", "probability": 0.56201171875}, {"start": 292.31, "end": 292.51, "word": " the", "probability": 0.84228515625}, {"start": 292.51, "end": 292.77, "word": " hash", "probability": 0.8896484375}, {"start": 292.77, "end": 293.03, "word": " map", "probability": 0.8974609375}, {"start": 293.03, "end": 293.23, "word": " is", "probability": 0.59765625}, {"start": 293.23, "end": 293.53, "word": " not", "probability": 0.31005859375}, {"start": 293.53, "end": 293.63, "word": " yet", "probability": 0.41748046875}, {"start": 293.63, "end": 293.81, "word": " created,", "probability": 0.094482421875}, {"start": 294.01, "end": 294.15, "word": " I", "probability": 0.79345703125}, {"start": 294.15, "end": 294.29, "word": " did", "probability": 0.386474609375}, {"start": 294.29, "end": 294.29, "word": " not", "probability": 0.94091796875}, {"start": 294.29, "end": 294.47, "word": " create", "probability": 0.7197265625}, {"start": 294.47, "end": 294.85, "word": " it,", "probability": 0.94580078125}, {"start": 295.05, "end": 295.27, "word": " okay?", "probability": 0.497802734375}, {"start": 295.65, "end": 295.81, "word": " So", "probability": 0.69287109375}, {"start": 295.81, "end": 295.97, "word": " I", "probability": 0.8310546875}, {"start": 295.97, "end": 296.03, "word": " go", "probability": 0.381103515625}, {"start": 296.03, "end": 296.19, "word": " and", "probability": 0.5859375}, {"start": 296.19, "end": 296.33, "word": " create", "probability": 0.318115234375}, {"start": 296.33, "end": 296.47, "word": " a", "probability": 0.962890625}, {"start": 296.47, "end": 297.07, "word": " constructor", "probability": 0.92431640625}, {"start": 297.07, "end": 297.97, "word": " called", "probability": 0.5390625}, {"start": 297.97, "end": 298.57, "word": " phonebook,", "probability": 0.63037109375}, {"start": 299.35, "end": 302.05, "word": " this", "probability": 0.8486328125}, {"start": 302.05, "end": 302.07, "word": " is", "probability": 0.8564453125}, {"start": 302.07, "end": 302.17, "word": " the", "probability": 0.9052734375}, {"start": 302.17, "end": 302.55, "word": " constructor,", "probability": 0.87109375}, {"start": 302.71, "end": 302.83, "word": " from", "probability": 0.363525390625}, {"start": 302.83, "end": 303.01, "word": " inside", "probability": 0.5234375}, {"start": 303.01, "end": 303.15, "word": " the", "probability": 0.8359375}, {"start": 303.15, "end": 303.61, "word": " constructor,", "probability": 0.85791015625}, {"start": 304.41, "end": 304.57, "word": " I", "probability": 0.9658203125}, {"start": 304.57, "end": 304.69, "word": " say", "probability": 0.662109375}, {"start": 304.69, "end": 305.03, "word": " phone", "probability": 0.689453125}, {"start": 305.03, "end": 305.49, "word": " codes", "probability": 0.66259765625}, {"start": 305.49, "end": 306.23, "word": " is", "probability": 0.1173095703125}, {"start": 306.23, "end": 306.43, "word": " equal", "probability": 0.84033203125}, {"start": 306.43, "end": 306.51, "word": " to", "probability": 0.9765625}], "temperature": 1.0}, {"id": 14, "seek": 33091, "start": 309.23, "end": 330.91, "text": " Hash map Because I want to fill the phone codes State by state, for example, POT For example, tell him US The key of the country to which you call 001 Phone codes POT For example, PS", "tokens": [30775, 4471, 1436, 286, 528, 281, 2836, 264, 2593, 14211, 4533, 538, 1785, 11, 337, 1365, 11, 430, 5068, 1171, 1365, 11, 980, 796, 2546, 440, 2141, 295, 264, 1941, 281, 597, 291, 818, 7143, 16, 30713, 14211, 430, 5068, 1171, 1365, 11, 8168], "avg_logprob": -0.6701388835906983, "compression_ratio": 1.3863636363636365, "no_speech_prob": 1.9073486328125e-06, "words": [{"start": 309.23, "end": 309.55, "word": " Hash", "probability": 0.1322021484375}, {"start": 309.55, "end": 309.91, "word": " map", "probability": 0.3671875}, {"start": 309.91, "end": 311.91, "word": " Because", "probability": 0.0638427734375}, {"start": 311.91, "end": 312.17, "word": " I", "probability": 0.55859375}, {"start": 312.17, "end": 312.19, "word": " want", "probability": 0.283447265625}, {"start": 312.19, "end": 312.19, "word": " to", "probability": 0.9267578125}, {"start": 312.19, "end": 312.43, "word": " fill", "probability": 0.7451171875}, {"start": 312.43, "end": 312.73, "word": " the", "probability": 0.28173828125}, {"start": 312.73, "end": 312.95, "word": " phone", "probability": 0.8955078125}, {"start": 312.95, "end": 313.35, "word": " codes", "probability": 0.8076171875}, {"start": 313.35, "end": 314.99, "word": " State", "probability": 0.159423828125}, {"start": 314.99, "end": 315.17, "word": " by", "probability": 0.77294921875}, {"start": 315.17, "end": 315.29, "word": " state,", "probability": 0.89990234375}, {"start": 315.39, "end": 315.49, "word": " for", "probability": 0.67236328125}, {"start": 315.49, "end": 315.59, "word": " example,", "probability": 0.9345703125}, {"start": 315.67, "end": 316.03, "word": " POT", "probability": 0.44866943359375}, {"start": 316.03, "end": 318.71, "word": " For", "probability": 0.705078125}, {"start": 318.71, "end": 318.73, "word": " example,", "probability": 0.95654296875}, {"start": 319.23, "end": 319.35, "word": " tell", "probability": 0.1658935546875}, {"start": 319.35, "end": 319.45, "word": " him", "probability": 0.44677734375}, {"start": 319.45, "end": 320.01, "word": " US", "probability": 0.5517578125}, {"start": 320.01, "end": 321.89, "word": " The", "probability": 0.384521484375}, {"start": 321.89, "end": 322.09, "word": " key", "probability": 0.51953125}, {"start": 322.09, "end": 322.29, "word": " of", "probability": 0.31201171875}, {"start": 322.29, "end": 322.41, "word": " the", "probability": 0.79833984375}, {"start": 322.41, "end": 322.49, "word": " country", "probability": 0.5068359375}, {"start": 322.49, "end": 322.81, "word": " to", "probability": 0.261962890625}, {"start": 322.81, "end": 322.81, "word": " which", "probability": 0.4267578125}, {"start": 322.81, "end": 323.11, "word": " you", "probability": 0.43603515625}, {"start": 323.11, "end": 323.47, "word": " call", "probability": 0.359619140625}, {"start": 323.47, "end": 324.63, "word": " 001", "probability": 0.7039794921875}, {"start": 324.63, "end": 325.81, "word": " Phone", "probability": 0.724609375}, {"start": 325.81, "end": 326.33, "word": " codes", "probability": 0.697265625}, {"start": 326.33, "end": 327.81, "word": " POT", "probability": 0.90380859375}, {"start": 327.81, "end": 330.21, "word": " For", "probability": 0.82470703125}, {"start": 330.21, "end": 330.33, "word": " example,", "probability": 0.9560546875}, {"start": 330.51, "end": 330.91, "word": " PS", "probability": 0.86083984375}], "temperature": 1.0}, {"id": 15, "seek": 36431, "start": 335.41, "end": 364.31, "text": " For example, the key is 00972 and so on. This is expected to be repeated in many different countries. Egypt, for example, UAE. Anyway, different countries change the numbers here.", "tokens": [1171, 1365, 11, 264, 2141, 307, 7143, 23247, 17, 293, 370, 322, 13, 639, 307, 5176, 281, 312, 10477, 294, 867, 819, 3517, 13, 9582, 11, 337, 1365, 11, 32765, 36, 13, 5684, 11, 819, 3517, 1319, 264, 3547, 510, 13], "avg_logprob": -0.6436011876378741, "compression_ratio": 1.3333333333333333, "no_speech_prob": 7.152557373046875e-06, "words": [{"start": 335.41, "end": 335.69, "word": " For", "probability": 0.0799560546875}, {"start": 335.69, "end": 335.69, "word": " example,", "probability": 0.8876953125}, {"start": 335.69, "end": 335.69, "word": " the", "probability": 0.5400390625}, {"start": 335.69, "end": 335.91, "word": " key", "probability": 0.6533203125}, {"start": 335.91, "end": 336.55, "word": " is", "probability": 0.372802734375}, {"start": 336.55, "end": 339.11, "word": " 00972", "probability": 0.79052734375}, {"start": 339.11, "end": 339.97, "word": " and", "probability": 0.09716796875}, {"start": 339.97, "end": 340.01, "word": " so", "probability": 0.79833984375}, {"start": 340.01, "end": 342.65, "word": " on.", "probability": 0.91259765625}, {"start": 342.93, "end": 343.29, "word": " This", "probability": 0.54296875}, {"start": 343.29, "end": 343.35, "word": " is", "probability": 0.59423828125}, {"start": 343.35, "end": 344.03, "word": " expected", "probability": 0.6533203125}, {"start": 344.03, "end": 344.25, "word": " to", "probability": 0.95361328125}, {"start": 344.25, "end": 344.35, "word": " be", "probability": 0.430419921875}, {"start": 344.35, "end": 344.65, "word": " repeated", "probability": 0.9013671875}, {"start": 344.65, "end": 347.11, "word": " in", "probability": 0.32568359375}, {"start": 347.11, "end": 347.11, "word": " many", "probability": 0.53466796875}, {"start": 347.11, "end": 348.49, "word": " different", "probability": 0.47509765625}, {"start": 348.49, "end": 348.61, "word": " countries.", "probability": 0.69677734375}, {"start": 349.13, "end": 350.07, "word": " Egypt,", "probability": 0.42431640625}, {"start": 351.41, "end": 351.73, "word": " for", "probability": 0.50244140625}, {"start": 351.73, "end": 352.05, "word": " example,", "probability": 0.9345703125}, {"start": 352.85, "end": 354.15, "word": " UAE.", "probability": 0.659423828125}, {"start": 356.91, "end": 357.39, "word": " Anyway,", "probability": 0.351806640625}, {"start": 358.19, "end": 358.97, "word": " different", "probability": 0.548828125}, {"start": 358.97, "end": 359.69, "word": " countries", "probability": 0.7490234375}, {"start": 359.69, "end": 360.51, "word": " change", "probability": 0.52294921875}, {"start": 360.51, "end": 362.13, "word": " the", "probability": 0.75830078125}, {"start": 362.13, "end": 362.59, "word": " numbers", "probability": 0.73583984375}, {"start": 362.59, "end": 364.31, "word": " here.", "probability": 0.326416015625}], "temperature": 1.0}, {"id": 16, "seek": 39510, "start": 369.8, "end": 395.1, "text": " Then I want to create a variable named public string named getCountryCode and give it a string countryName and return phoneCodes.getCountryName", "tokens": [1396, 286, 528, 281, 1884, 257, 7006, 4926, 1908, 6798, 4926, 483, 34, 792, 627, 34, 1429, 293, 976, 309, 257, 6798, 1941, 45, 529, 293, 2736, 2593, 34, 4789, 13, 847, 34, 792, 627, 45, 529], "avg_logprob": -0.4958881343665876, "compression_ratio": 1.3333333333333333, "no_speech_prob": 0.0, "words": [{"start": 369.8, "end": 370.3, "word": " Then", "probability": 0.225341796875}, {"start": 370.3, "end": 370.4, "word": " I", "probability": 0.50341796875}, {"start": 370.4, "end": 370.54, "word": " want", "probability": 0.2254638671875}, {"start": 370.54, "end": 370.56, "word": " to", "probability": 0.9482421875}, {"start": 370.56, "end": 370.72, "word": " create", "probability": 0.5283203125}, {"start": 370.72, "end": 370.78, "word": " a", "probability": 0.62744140625}, {"start": 370.78, "end": 371.02, "word": " variable", "probability": 0.15087890625}, {"start": 371.02, "end": 373.42, "word": " named", "probability": 0.1468505859375}, {"start": 373.42, "end": 373.78, "word": " public", "probability": 0.72412109375}, {"start": 373.78, "end": 374.52, "word": " string", "probability": 0.86572265625}, {"start": 374.52, "end": 375.68, "word": " named", "probability": 0.3037109375}, {"start": 375.68, "end": 377.52, "word": " getCountryCode", "probability": 0.7799886067708334}, {"start": 377.52, "end": 379.04, "word": " and", "probability": 0.2529296875}, {"start": 379.04, "end": 379.26, "word": " give", "probability": 0.341064453125}, {"start": 379.26, "end": 379.7, "word": " it", "probability": 0.79150390625}, {"start": 379.7, "end": 379.82, "word": " a", "probability": 0.58740234375}, {"start": 379.82, "end": 380.18, "word": " string", "probability": 0.70751953125}, {"start": 380.18, "end": 381.56, "word": " countryName", "probability": 0.8095703125}, {"start": 381.56, "end": 384.08, "word": " and", "probability": 0.68310546875}, {"start": 384.08, "end": 384.5, "word": " return", "probability": 0.783203125}, {"start": 384.5, "end": 389.48, "word": " phoneCodes", "probability": 0.653076171875}, {"start": 389.48, "end": 395.1, "word": ".getCountryName", "probability": 0.9460797991071429}], "temperature": 1.0}, {"id": 17, "seek": 42435, "start": 399.01, "end": 424.35, "text": "So this method is the one that I didn't reach, right? This should be private, okay? Through this data, I give it the state name, and I go to the phone codes, and I give it the state name, and I give it the key to return the value. If I don't have the key, why should I return it? Because we created this phone book, but we didn't use it, right? We have to go and use it. We go to the test main method.", "tokens": [6455, 341, 3170, 307, 264, 472, 300, 286, 994, 380, 2524, 11, 558, 30, 639, 820, 312, 4551, 11, 1392, 30, 8927, 341, 1412, 11, 286, 976, 309, 264, 1785, 1315, 11, 293, 286, 352, 281, 264, 2593, 14211, 11, 293, 286, 976, 309, 264, 1785, 1315, 11, 293, 286, 976, 309, 264, 2141, 281, 2736, 264, 2158, 13, 759, 286, 500, 380, 362, 264, 2141, 11, 983, 820, 286, 2736, 309, 30, 1436, 321, 2942, 341, 2593, 1446, 11, 457, 321, 994, 380, 764, 309, 11, 558, 30, 492, 362, 281, 352, 293, 764, 309, 13, 492, 352, 281, 264, 1500, 2135, 3170, 13], "avg_logprob": -0.514445740659282, "compression_ratio": 1.8394495412844036, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 399.01, "end": 399.27, "word": "So", "probability": 0.10357666015625}, {"start": 399.27, "end": 399.43, "word": " this", "probability": 0.73095703125}, {"start": 399.43, "end": 399.87, "word": " method", "probability": 0.68310546875}, {"start": 399.87, "end": 400.53, "word": " is", "probability": 0.3603515625}, {"start": 400.53, "end": 400.59, "word": " the", "probability": 0.27392578125}, {"start": 400.59, "end": 400.75, "word": " one", "probability": 0.281494140625}, {"start": 400.75, "end": 401.07, "word": " that", "probability": 0.341796875}, {"start": 401.07, "end": 401.83, "word": " I", "probability": 0.468017578125}, {"start": 401.83, "end": 401.93, "word": " didn't", "probability": 0.61468505859375}, {"start": 401.93, "end": 402.17, "word": " reach,", "probability": 0.26953125}, {"start": 402.39, "end": 402.53, "word": " right?", "probability": 0.386962890625}, {"start": 402.59, "end": 402.69, "word": " This", "probability": 0.38623046875}, {"start": 402.69, "end": 402.69, "word": " should", "probability": 0.284912109375}, {"start": 402.69, "end": 402.69, "word": " be", "probability": 0.951171875}, {"start": 402.69, "end": 403.11, "word": " private,", "probability": 0.72998046875}, {"start": 403.35, "end": 405.43, "word": " okay?", "probability": 0.2340087890625}, {"start": 405.89, "end": 406.25, "word": " Through", "probability": 0.286865234375}, {"start": 406.25, "end": 406.49, "word": " this", "probability": 0.90673828125}, {"start": 406.49, "end": 406.69, "word": " data,", "probability": 0.0643310546875}, {"start": 407.03, "end": 407.15, "word": " I", "probability": 0.9501953125}, {"start": 407.15, "end": 407.31, "word": " give", "probability": 0.5654296875}, {"start": 407.31, "end": 407.45, "word": " it", "probability": 0.59716796875}, {"start": 407.45, "end": 407.47, "word": " the", "probability": 0.78515625}, {"start": 407.47, "end": 407.95, "word": " state", "probability": 0.435546875}, {"start": 407.95, "end": 407.97, "word": " name,", "probability": 0.6640625}, {"start": 408.33, "end": 408.45, "word": " and", "probability": 0.460693359375}, {"start": 408.45, "end": 408.51, "word": " I", "probability": 0.39404296875}, {"start": 408.51, "end": 408.61, "word": " go", "probability": 0.86474609375}, {"start": 408.61, "end": 408.73, "word": " to", "probability": 0.9443359375}, {"start": 408.73, "end": 408.83, "word": " the", "probability": 0.505859375}, {"start": 408.83, "end": 409.01, "word": " phone", "probability": 0.67578125}, {"start": 409.01, "end": 409.41, "word": " codes,", "probability": 0.83203125}, {"start": 410.21, "end": 410.65, "word": " and", "probability": 0.7431640625}, {"start": 410.65, "end": 410.79, "word": " I", "probability": 0.77587890625}, {"start": 410.79, "end": 410.93, "word": " give", "probability": 0.72705078125}, {"start": 410.93, "end": 411.05, "word": " it", "probability": 0.70947265625}, {"start": 411.05, "end": 411.29, "word": " the", "probability": 0.8720703125}, {"start": 411.29, "end": 411.43, "word": " state", "probability": 0.77978515625}, {"start": 411.43, "end": 411.43, "word": " name,", "probability": 0.8564453125}, {"start": 411.69, "end": 411.73, "word": " and", "probability": 0.430908203125}, {"start": 411.73, "end": 411.77, "word": " I", "probability": 0.77490234375}, {"start": 411.77, "end": 411.95, "word": " give", "probability": 0.68798828125}, {"start": 411.95, "end": 412.05, "word": " it", "probability": 0.84375}, {"start": 412.05, "end": 412.15, "word": " the", "probability": 0.74609375}, {"start": 412.15, "end": 412.27, "word": " key", "probability": 0.91796875}, {"start": 412.27, "end": 412.57, "word": " to", "probability": 0.5361328125}, {"start": 412.57, "end": 412.97, "word": " return", "probability": 0.488037109375}, {"start": 412.97, "end": 413.39, "word": " the", "probability": 0.64111328125}, {"start": 413.39, "end": 413.69, "word": " value.", "probability": 0.9541015625}, {"start": 413.77, "end": 414.11, "word": " If", "probability": 0.315673828125}, {"start": 414.11, "end": 414.11, "word": " I", "probability": 0.65576171875}, {"start": 414.11, "end": 414.13, "word": " don't", "probability": 0.853515625}, {"start": 414.13, "end": 414.29, "word": " have", "probability": 0.7060546875}, {"start": 414.29, "end": 414.53, "word": " the", "probability": 0.84521484375}, {"start": 414.53, "end": 414.61, "word": " key,", "probability": 0.95068359375}, {"start": 414.65, "end": 414.73, "word": " why", "probability": 0.7265625}, {"start": 414.73, "end": 414.73, "word": " should", "probability": 0.356201171875}, {"start": 414.73, "end": 414.77, "word": " I", "probability": 0.99267578125}, {"start": 414.77, "end": 414.93, "word": " return", "probability": 0.7109375}, {"start": 414.93, "end": 415.51, "word": " it?", "probability": 0.84814453125}, {"start": 415.73, "end": 416.07, "word": " Because", "probability": 0.438720703125}, {"start": 416.07, "end": 416.91, "word": " we", "probability": 0.5703125}, {"start": 416.91, "end": 416.91, "word": " created", "probability": 0.27392578125}, {"start": 416.91, "end": 417.23, "word": " this", "probability": 0.76416015625}, {"start": 417.23, "end": 417.51, "word": " phone", "probability": 0.9462890625}, {"start": 417.51, "end": 417.71, "word": " book,", "probability": 0.76123046875}, {"start": 417.85, "end": 418.01, "word": " but", "probability": 0.81494140625}, {"start": 418.01, "end": 418.13, "word": " we", "probability": 0.90234375}, {"start": 418.13, "end": 418.19, "word": " didn't", "probability": 0.86328125}, {"start": 418.19, "end": 418.53, "word": " use", "probability": 0.89453125}, {"start": 418.53, "end": 418.93, "word": " it,", "probability": 0.9453125}, {"start": 418.99, "end": 419.15, "word": " right?", "probability": 0.85302734375}, {"start": 419.23, "end": 419.49, "word": " We", "probability": 0.74560546875}, {"start": 419.49, "end": 419.51, "word": " have", "probability": 0.253173828125}, {"start": 419.51, "end": 419.61, "word": " to", "probability": 0.962890625}, {"start": 419.61, "end": 419.63, "word": " go", "probability": 0.62744140625}, {"start": 419.63, "end": 419.77, "word": " and", "probability": 0.51318359375}, {"start": 419.77, "end": 419.83, "word": " use", "probability": 0.58837890625}, {"start": 419.83, "end": 420.43, "word": " it.", "probability": 0.9267578125}, {"start": 421.27, "end": 421.63, "word": " We", "probability": 0.68896484375}, {"start": 421.63, "end": 421.63, "word": " go", "probability": 0.462646484375}, {"start": 421.63, "end": 422.09, "word": " to", "probability": 0.9638671875}, {"start": 422.09, "end": 422.45, "word": " the", "probability": 0.81689453125}, {"start": 422.45, "end": 422.91, "word": " test", "probability": 0.70947265625}, {"start": 422.91, "end": 424.03, "word": " main", "probability": 0.485107421875}, {"start": 424.03, "end": 424.35, "word": " method.", "probability": 0.93798828125}], "temperature": 1.0}, {"id": 18, "seek": 45338, "start": 427.8, "end": 453.38, "text": "Of course I have to create an object from the form book P equals new form book Then I say P and then P dot and I say get country code for example I give it US and here system dot out dot print", "tokens": [23919, 1164, 286, 362, 281, 1884, 364, 2657, 490, 264, 1254, 1446, 430, 6915, 777, 1254, 1446, 1396, 286, 584, 430, 293, 550, 430, 5893, 293, 286, 584, 483, 1941, 3089, 337, 1365, 286, 976, 309, 2546, 293, 510, 1185, 5893, 484, 5893, 4482], "avg_logprob": -0.6142360899183485, "compression_ratio": 1.4328358208955223, "no_speech_prob": 0.0, "words": [{"start": 427.8, "end": 428.26, "word": "Of", "probability": 0.07830810546875}, {"start": 428.26, "end": 428.38, "word": " course", "probability": 0.89697265625}, {"start": 428.38, "end": 428.58, "word": " I", "probability": 0.208740234375}, {"start": 428.58, "end": 428.7, "word": " have", "probability": 0.2471923828125}, {"start": 428.7, "end": 428.78, "word": " to", "probability": 0.9609375}, {"start": 428.78, "end": 428.98, "word": " create", "probability": 0.72021484375}, {"start": 428.98, "end": 429.72, "word": " an", "probability": 0.2220458984375}, {"start": 429.72, "end": 430.62, "word": " object", "probability": 0.87451171875}, {"start": 430.62, "end": 430.82, "word": " from", "probability": 0.60400390625}, {"start": 430.82, "end": 430.94, "word": " the", "probability": 0.41357421875}, {"start": 430.94, "end": 431.1, "word": " form", "probability": 0.479736328125}, {"start": 431.1, "end": 431.4, "word": " book", "probability": 0.79736328125}, {"start": 431.4, "end": 431.86, "word": " P", "probability": 0.255126953125}, {"start": 431.86, "end": 432.88, "word": " equals", "probability": 0.04278564453125}, {"start": 432.88, "end": 433.3, "word": " new", "probability": 0.65966796875}, {"start": 433.3, "end": 435.64, "word": " form", "probability": 0.77294921875}, {"start": 435.64, "end": 435.92, "word": " book", "probability": 0.8759765625}, {"start": 435.92, "end": 437.08, "word": " Then", "probability": 0.2288818359375}, {"start": 437.08, "end": 437.18, "word": " I", "probability": 0.880859375}, {"start": 437.18, "end": 437.32, "word": " say", "probability": 0.38916015625}, {"start": 437.32, "end": 437.7, "word": " P", "probability": 0.71728515625}, {"start": 437.7, "end": 440.92, "word": " and", "probability": 0.21337890625}, {"start": 440.92, "end": 441.22, "word": " then", "probability": 0.5791015625}, {"start": 441.22, "end": 441.48, "word": " P", "probability": 0.7666015625}, {"start": 441.48, "end": 441.9, "word": " dot", "probability": 0.79296875}, {"start": 441.9, "end": 444.7, "word": " and", "probability": 0.357421875}, {"start": 444.7, "end": 444.8, "word": " I", "probability": 0.456298828125}, {"start": 444.8, "end": 444.94, "word": " say", "probability": 0.80810546875}, {"start": 444.94, "end": 445.18, "word": " get", "probability": 0.87158203125}, {"start": 445.18, "end": 445.64, "word": " country", "probability": 0.84814453125}, {"start": 445.64, "end": 446.74, "word": " code", "probability": 0.7158203125}, {"start": 446.74, "end": 447.18, "word": " for", "probability": 0.416259765625}, {"start": 447.18, "end": 447.48, "word": " example", "probability": 0.93115234375}, {"start": 447.48, "end": 448.08, "word": " I", "probability": 0.37744140625}, {"start": 448.08, "end": 448.28, "word": " give", "probability": 0.54248046875}, {"start": 448.28, "end": 448.44, "word": " it", "probability": 0.6806640625}, {"start": 448.44, "end": 448.98, "word": " US", "probability": 0.4892578125}, {"start": 448.98, "end": 450.88, "word": " and", "probability": 0.7314453125}, {"start": 450.88, "end": 451.14, "word": " here", "probability": 0.7470703125}, {"start": 451.14, "end": 451.7, "word": " system", "probability": 0.74609375}, {"start": 451.7, "end": 452.12, "word": " dot", "probability": 0.69970703125}, {"start": 452.12, "end": 452.54, "word": " out", "probability": 0.85888671875}, {"start": 452.54, "end": 453.06, "word": " dot", "probability": 0.92919921875}, {"start": 453.06, "end": 453.38, "word": " print", "probability": 0.41943359375}], "temperature": 1.0}, {"id": 19, "seek": 48002, "start": 456.3, "end": 480.02, "text": " USA or US, I put USA Ok, it will run and return the country code Ok, now the problem is not here, so far everything is fine But better than the method went for example I want to open another screen or I want to open another class This is a new class, I named it for example MainScreen", "tokens": [10827, 420, 2546, 11, 286, 829, 10827, 3477, 11, 309, 486, 1190, 293, 2736, 264, 1941, 3089, 3477, 11, 586, 264, 1154, 307, 406, 510, 11, 370, 1400, 1203, 307, 2489, 583, 1101, 813, 264, 3170, 1437, 337, 1365, 286, 528, 281, 1269, 1071, 2568, 420, 286, 528, 281, 1269, 1071, 1508, 639, 307, 257, 777, 1508, 11, 286, 4926, 309, 337, 1365, 12383, 16806, 1492], "avg_logprob": -0.5513059434606068, "compression_ratio": 1.5573770491803278, "no_speech_prob": 2.682209014892578e-06, "words": [{"start": 456.3, "end": 456.7, "word": " USA", "probability": 0.20751953125}, {"start": 456.7, "end": 456.92, "word": " or", "probability": 0.8837890625}, {"start": 456.92, "end": 457.2, "word": " US,", "probability": 0.708984375}, {"start": 457.26, "end": 457.34, "word": " I", "probability": 0.61474609375}, {"start": 457.34, "end": 457.44, "word": " put", "probability": 0.37060546875}, {"start": 457.44, "end": 457.82, "word": " USA", "probability": 0.355712890625}, {"start": 457.82, "end": 462.76, "word": " Ok,", "probability": 0.2215576171875}, {"start": 462.92, "end": 463.16, "word": " it", "probability": 0.447021484375}, {"start": 463.16, "end": 463.18, "word": " will", "probability": 0.312744140625}, {"start": 463.18, "end": 463.42, "word": " run", "probability": 0.7490234375}, {"start": 463.42, "end": 463.98, "word": " and", "probability": 0.70849609375}, {"start": 463.98, "end": 464.3, "word": " return", "probability": 0.31494140625}, {"start": 464.3, "end": 464.76, "word": " the", "probability": 0.34033203125}, {"start": 464.76, "end": 465.04, "word": " country", "probability": 0.93603515625}, {"start": 465.04, "end": 465.32, "word": " code", "probability": 0.85791015625}, {"start": 465.32, "end": 466.14, "word": " Ok,", "probability": 0.3759765625}, {"start": 466.76, "end": 467.16, "word": " now", "probability": 0.51171875}, {"start": 467.16, "end": 467.28, "word": " the", "probability": 0.77197265625}, {"start": 467.28, "end": 467.48, "word": " problem", "probability": 0.8349609375}, {"start": 467.48, "end": 467.66, "word": " is", "probability": 0.84521484375}, {"start": 467.66, "end": 467.7, "word": " not", "probability": 0.93359375}, {"start": 467.7, "end": 468.0, "word": " here,", "probability": 0.744140625}, {"start": 468.08, "end": 468.2, "word": " so", "probability": 0.1832275390625}, {"start": 468.2, "end": 468.48, "word": " far", "probability": 0.931640625}, {"start": 468.48, "end": 468.74, "word": " everything", "probability": 0.646484375}, {"start": 468.74, "end": 468.88, "word": " is", "probability": 0.8955078125}, {"start": 468.88, "end": 469.1, "word": " fine", "probability": 0.39794921875}, {"start": 469.1, "end": 470.04, "word": " But", "probability": 0.413330078125}, {"start": 470.04, "end": 472.02, "word": " better", "probability": 0.248046875}, {"start": 472.02, "end": 472.12, "word": " than", "probability": 0.89453125}, {"start": 472.12, "end": 472.26, "word": " the", "probability": 0.5068359375}, {"start": 472.26, "end": 472.58, "word": " method", "probability": 0.9326171875}, {"start": 472.58, "end": 473.46, "word": " went", "probability": 0.28369140625}, {"start": 473.46, "end": 473.7, "word": " for", "probability": 0.302490234375}, {"start": 473.7, "end": 473.92, "word": " example", "probability": 0.884765625}, {"start": 473.92, "end": 474.18, "word": " I", "probability": 0.453125}, {"start": 474.18, "end": 474.34, "word": " want", "probability": 0.46240234375}, {"start": 474.34, "end": 474.34, "word": " to", "probability": 0.962890625}, {"start": 474.34, "end": 474.54, "word": " open", "probability": 0.822265625}, {"start": 474.54, "end": 474.62, "word": " another", "probability": 0.46484375}, {"start": 474.62, "end": 474.84, "word": " screen", "probability": 0.83251953125}, {"start": 474.84, "end": 475.24, "word": " or", "probability": 0.7685546875}, {"start": 475.24, "end": 475.28, "word": " I", "probability": 0.26220703125}, {"start": 475.28, "end": 475.48, "word": " want", "probability": 0.845703125}, {"start": 475.48, "end": 475.5, "word": " to", "probability": 0.95849609375}, {"start": 475.5, "end": 475.66, "word": " open", "probability": 0.88232421875}, {"start": 475.66, "end": 475.78, "word": " another", "probability": 0.77197265625}, {"start": 475.78, "end": 476.1, "word": " class", "probability": 0.955078125}, {"start": 476.1, "end": 477.1, "word": " This", "probability": 0.60595703125}, {"start": 477.1, "end": 477.2, "word": " is", "probability": 0.88037109375}, {"start": 477.2, "end": 477.2, "word": " a", "probability": 0.9677734375}, {"start": 477.2, "end": 477.2, "word": " new", "probability": 0.90380859375}, {"start": 477.2, "end": 477.86, "word": " class,", "probability": 0.96240234375}, {"start": 478.26, "end": 478.52, "word": " I", "probability": 0.74169921875}, {"start": 478.52, "end": 478.84, "word": " named", "probability": 0.421875}, {"start": 478.84, "end": 479.04, "word": " it", "probability": 0.875}, {"start": 479.04, "end": 479.08, "word": " for", "probability": 0.54638671875}, {"start": 479.08, "end": 479.3, "word": " example", "probability": 0.95166015625}, {"start": 479.3, "end": 480.02, "word": " MainScreen", "probability": 0.5808512369791666}], "temperature": 1.0}, {"id": 20, "seek": 51180, "start": 486.48, "end": 511.8, "text": " This is the public main screen From my main, I told it to open the main screen This is the main screen You see that I am working inside the main and I created an object inside the main", "tokens": [639, 307, 264, 1908, 2135, 2568, 3358, 452, 2135, 11, 286, 1907, 309, 281, 1269, 264, 2135, 2568, 639, 307, 264, 2135, 2568, 509, 536, 300, 286, 669, 1364, 1854, 264, 2135, 293, 286, 2942, 364, 2657, 1854, 264, 2135], "avg_logprob": -0.5903200986908703, "compression_ratio": 1.5948275862068966, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 486.47999999999996, "end": 486.84, "word": " This", "probability": 0.11663818359375}, {"start": 486.84, "end": 487.02, "word": " is", "probability": 0.81494140625}, {"start": 487.02, "end": 487.14, "word": " the", "probability": 0.192138671875}, {"start": 487.14, "end": 487.58, "word": " public", "probability": 0.67431640625}, {"start": 487.58, "end": 492.78, "word": " main", "probability": 0.486572265625}, {"start": 492.78, "end": 493.16, "word": " screen", "probability": 0.82763671875}, {"start": 493.16, "end": 494.0, "word": " From", "probability": 0.25732421875}, {"start": 494.0, "end": 494.48, "word": " my", "probability": 0.78759765625}, {"start": 494.48, "end": 494.66, "word": " main,", "probability": 0.8447265625}, {"start": 495.24, "end": 496.04, "word": " I", "probability": 0.75732421875}, {"start": 496.04, "end": 496.22, "word": " told", "probability": 0.287353515625}, {"start": 496.22, "end": 496.56, "word": " it", "probability": 0.55078125}, {"start": 496.56, "end": 496.98, "word": " to", "probability": 0.80029296875}, {"start": 496.98, "end": 497.52, "word": " open", "probability": 0.6279296875}, {"start": 497.52, "end": 497.74, "word": " the", "probability": 0.473876953125}, {"start": 497.74, "end": 497.92, "word": " main", "probability": 0.89697265625}, {"start": 497.92, "end": 498.32, "word": " screen", "probability": 0.87109375}, {"start": 498.32, "end": 498.5, "word": " This", "probability": 0.23095703125}, {"start": 498.5, "end": 498.56, "word": " is", "probability": 0.92578125}, {"start": 498.56, "end": 498.58, "word": " the", "probability": 0.84228515625}, {"start": 498.58, "end": 498.72, "word": " main", "probability": 0.9150390625}, {"start": 498.72, "end": 499.66, "word": " screen", "probability": 0.88330078125}, {"start": 499.66, "end": 509.42, "word": " You", "probability": 0.34765625}, {"start": 509.42, "end": 509.52, "word": " see", "probability": 0.32958984375}, {"start": 509.52, "end": 509.74, "word": " that", "probability": 0.326904296875}, {"start": 509.74, "end": 509.9, "word": " I", "probability": 0.88720703125}, {"start": 509.9, "end": 510.02, "word": " am", "probability": 0.3388671875}, {"start": 510.02, "end": 510.18, "word": " working", "probability": 0.587890625}, {"start": 510.18, "end": 510.34, "word": " inside", "probability": 0.49609375}, {"start": 510.34, "end": 510.48, "word": " the", "probability": 0.64794921875}, {"start": 510.48, "end": 510.62, "word": " main", "probability": 0.93017578125}, {"start": 510.62, "end": 510.72, "word": " and", "probability": 0.5556640625}, {"start": 510.72, "end": 510.84, "word": " I", "probability": 0.587890625}, {"start": 510.84, "end": 511.06, "word": " created", "probability": 0.5205078125}, {"start": 511.06, "end": 511.16, "word": " an", "probability": 0.65771484375}, {"start": 511.16, "end": 511.3, "word": " object", "probability": 0.94482421875}, {"start": 511.3, "end": 511.56, "word": " inside", "probability": 0.3720703125}, {"start": 511.56, "end": 511.8, "word": " the", "probability": 0.5732421875}, {"start": 511.8, "end": 511.8, "word": " main", "probability": 0.9306640625}], "temperature": 1.0}, {"id": 21, "seek": 53410, "start": 513.34, "end": 534.1, "text": " Because in the main screen, from inside the main screen, you don't need the phone, the phone book. So how do I get the phone book from here? You will have to create a new object from it. You will say phone book p equals new phone book. What does it mean to create a new object? All the data", "tokens": [1436, 294, 264, 2135, 2568, 11, 490, 1854, 264, 2135, 2568, 11, 291, 500, 380, 643, 264, 2593, 11, 264, 2593, 1446, 13, 407, 577, 360, 286, 483, 264, 2593, 1446, 490, 510, 30, 509, 486, 362, 281, 1884, 257, 777, 2657, 490, 309, 13, 509, 486, 584, 2593, 1446, 280, 6915, 777, 2593, 1446, 13, 708, 775, 309, 914, 281, 1884, 257, 777, 2657, 30, 1057, 264, 1412], "avg_logprob": -0.45602679082325526, "compression_ratio": 1.8074534161490683, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 513.3399999999999, "end": 513.78, "word": " Because", "probability": 0.060882568359375}, {"start": 513.78, "end": 514.0, "word": " in", "probability": 0.43310546875}, {"start": 514.0, "end": 514.06, "word": " the", "probability": 0.57275390625}, {"start": 514.06, "end": 514.18, "word": " main", "probability": 0.8408203125}, {"start": 514.18, "end": 514.72, "word": " screen,", "probability": 0.85302734375}, {"start": 515.26, "end": 515.32, "word": " from", "probability": 0.2464599609375}, {"start": 515.32, "end": 515.56, "word": " inside", "probability": 0.591796875}, {"start": 515.56, "end": 515.68, "word": " the", "probability": 0.74072265625}, {"start": 515.68, "end": 515.8, "word": " main", "probability": 0.9365234375}, {"start": 515.8, "end": 516.22, "word": " screen,", "probability": 0.888671875}, {"start": 516.36, "end": 516.38, "word": " you", "probability": 0.2685546875}, {"start": 516.38, "end": 516.72, "word": " don't", "probability": 0.7398681640625}, {"start": 516.72, "end": 516.72, "word": " need", "probability": 0.91259765625}, {"start": 516.72, "end": 516.9, "word": " the", "probability": 0.61328125}, {"start": 516.9, "end": 517.14, "word": " phone,", "probability": 0.79052734375}, {"start": 517.44, "end": 518.76, "word": " the", "probability": 0.61962890625}, {"start": 518.76, "end": 519.02, "word": " phone", "probability": 0.93798828125}, {"start": 519.02, "end": 519.24, "word": " book.", "probability": 0.6728515625}, {"start": 520.2, "end": 520.64, "word": " So", "probability": 0.343017578125}, {"start": 520.64, "end": 520.78, "word": " how", "probability": 0.703125}, {"start": 520.78, "end": 520.86, "word": " do", "probability": 0.466796875}, {"start": 520.86, "end": 520.98, "word": " I", "probability": 0.69140625}, {"start": 520.98, "end": 521.14, "word": " get", "probability": 0.50341796875}, {"start": 521.14, "end": 521.34, "word": " the", "probability": 0.7431640625}, {"start": 521.34, "end": 521.5, "word": " phone", "probability": 0.94775390625}, {"start": 521.5, "end": 521.7, "word": " book", "probability": 0.91552734375}, {"start": 521.7, "end": 521.88, "word": " from", "probability": 0.689453125}, {"start": 521.88, "end": 522.06, "word": " here?", "probability": 0.83837890625}, {"start": 522.84, "end": 523.18, "word": " You", "probability": 0.81689453125}, {"start": 523.18, "end": 523.18, "word": " will", "probability": 0.33642578125}, {"start": 523.18, "end": 523.32, "word": " have", "probability": 0.481689453125}, {"start": 523.32, "end": 523.46, "word": " to", "probability": 0.97216796875}, {"start": 523.46, "end": 523.62, "word": " create", "probability": 0.79296875}, {"start": 523.62, "end": 523.74, "word": " a", "probability": 0.966796875}, {"start": 523.74, "end": 523.74, "word": " new", "probability": 0.90673828125}, {"start": 523.74, "end": 524.02, "word": " object", "probability": 0.96142578125}, {"start": 524.02, "end": 524.44, "word": " from", "probability": 0.62451171875}, {"start": 524.44, "end": 524.72, "word": " it.", "probability": 0.77099609375}, {"start": 524.84, "end": 525.06, "word": " You", "probability": 0.240966796875}, {"start": 525.06, "end": 525.38, "word": " will", "probability": 0.66845703125}, {"start": 525.38, "end": 525.56, "word": " say", "probability": 0.56591796875}, {"start": 525.56, "end": 526.0, "word": " phone", "probability": 0.73095703125}, {"start": 526.0, "end": 528.3, "word": " book", "probability": 0.6494140625}, {"start": 528.3, "end": 529.4, "word": " p", "probability": 0.349609375}, {"start": 529.4, "end": 530.2, "word": " equals", "probability": 0.1959228515625}, {"start": 530.2, "end": 530.66, "word": " new", "probability": 0.5908203125}, {"start": 530.66, "end": 531.56, "word": " phone", "probability": 0.93798828125}, {"start": 531.56, "end": 531.82, "word": " book.", "probability": 0.79833984375}, {"start": 531.98, "end": 532.18, "word": " What", "probability": 0.7978515625}, {"start": 532.18, "end": 532.28, "word": " does", "probability": 0.8544921875}, {"start": 532.28, "end": 532.38, "word": " it", "probability": 0.426513671875}, {"start": 532.38, "end": 532.38, "word": " mean", "probability": 0.9677734375}, {"start": 532.38, "end": 532.44, "word": " to", "probability": 0.71240234375}, {"start": 532.44, "end": 532.6, "word": " create", "probability": 0.82080078125}, {"start": 532.6, "end": 532.68, "word": " a", "probability": 0.98388671875}, {"start": 532.68, "end": 532.68, "word": " new", "probability": 0.90771484375}, {"start": 532.68, "end": 532.96, "word": " object?", "probability": 0.9638671875}, {"start": 533.38, "end": 533.66, "word": " All", "probability": 0.8974609375}, {"start": 533.66, "end": 533.78, "word": " the", "probability": 0.5595703125}, {"start": 533.78, "end": 534.1, "word": " data", "probability": 0.8408203125}], "temperature": 1.0}, {"id": 22, "seek": 55828, "start": 535.64, "end": 558.28, "text": " it will start loading from the beginning to the end. This is the process of compilation that is present in the constructor. It will repeat it again and the code is expected to load more. It can load from the database, from the file. Is it okay? Can I use the phone book that I made from the main? As I said, it is optional. You can use the main, practice using the main.", "tokens": [309, 486, 722, 15114, 490, 264, 2863, 281, 264, 917, 13, 639, 307, 264, 1399, 295, 40261, 300, 307, 1974, 294, 264, 47479, 13, 467, 486, 7149, 309, 797, 293, 264, 3089, 307, 5176, 281, 3677, 544, 13, 467, 393, 3677, 490, 264, 8149, 11, 490, 264, 3991, 13, 1119, 309, 1392, 30, 1664, 286, 764, 264, 2593, 1446, 300, 286, 1027, 490, 264, 2135, 30, 1018, 286, 848, 11, 309, 307, 17312, 13, 509, 393, 764, 264, 2135, 11, 3124, 1228, 264, 2135, 13], "avg_logprob": -0.6816860721554867, "compression_ratio": 1.6787330316742082, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 535.64, "end": 535.82, "word": " it", "probability": 0.09515380859375}, {"start": 535.82, "end": 536.06, "word": " will", "probability": 0.353515625}, {"start": 536.06, "end": 536.06, "word": " start", "probability": 0.184326171875}, {"start": 536.06, "end": 536.28, "word": " loading", "probability": 0.3056640625}, {"start": 536.28, "end": 536.42, "word": " from", "probability": 0.513671875}, {"start": 536.42, "end": 536.6, "word": " the", "probability": 0.169921875}, {"start": 536.6, "end": 536.62, "word": " beginning", "probability": 0.4970703125}, {"start": 536.62, "end": 536.66, "word": " to", "probability": 0.253173828125}, {"start": 536.66, "end": 536.9, "word": " the", "probability": 0.80859375}, {"start": 536.9, "end": 536.9, "word": " end.", "probability": 0.92919921875}, {"start": 537.62, "end": 538.0, "word": " This", "probability": 0.259765625}, {"start": 538.0, "end": 538.0, "word": " is", "probability": 0.307373046875}, {"start": 538.0, "end": 538.14, "word": " the", "probability": 0.426513671875}, {"start": 538.14, "end": 538.3, "word": " process", "probability": 0.285888671875}, {"start": 538.3, "end": 538.44, "word": " of", "probability": 0.9208984375}, {"start": 538.44, "end": 538.8, "word": " compilation", "probability": 0.125732421875}, {"start": 538.8, "end": 539.0, "word": " that", "probability": 0.283203125}, {"start": 539.0, "end": 539.02, "word": " is", "probability": 0.348388671875}, {"start": 539.02, "end": 539.24, "word": " present", "probability": 0.2369384765625}, {"start": 539.24, "end": 539.32, "word": " in", "probability": 0.8828125}, {"start": 539.32, "end": 539.42, "word": " the", "probability": 0.7568359375}, {"start": 539.42, "end": 539.96, "word": " constructor.", "probability": 0.8740234375}, {"start": 540.46, "end": 540.86, "word": " It", "probability": 0.66552734375}, {"start": 540.86, "end": 540.98, "word": " will", "probability": 0.7099609375}, {"start": 540.98, "end": 541.24, "word": " repeat", "probability": 0.60009765625}, {"start": 541.24, "end": 541.4, "word": " it", "probability": 0.53173828125}, {"start": 541.4, "end": 541.84, "word": " again", "probability": 0.60400390625}, {"start": 541.84, "end": 543.16, "word": " and", "probability": 0.43505859375}, {"start": 543.16, "end": 543.38, "word": " the", "probability": 0.2471923828125}, {"start": 543.38, "end": 543.86, "word": " code", "probability": 0.9423828125}, {"start": 543.86, "end": 543.86, "word": " is", "probability": 0.317138671875}, {"start": 543.86, "end": 543.86, "word": " expected", "probability": 0.7998046875}, {"start": 543.86, "end": 543.94, "word": " to", "probability": 0.9453125}, {"start": 543.94, "end": 544.18, "word": " load", "probability": 0.65869140625}, {"start": 544.18, "end": 544.18, "word": " more.", "probability": 0.712890625}, {"start": 544.22, "end": 544.26, "word": " It", "probability": 0.6806640625}, {"start": 544.26, "end": 544.46, "word": " can", "probability": 0.441162109375}, {"start": 544.46, "end": 544.92, "word": " load", "probability": 0.63623046875}, {"start": 544.92, "end": 545.08, "word": " from", "probability": 0.763671875}, {"start": 545.08, "end": 545.24, "word": " the", "probability": 0.383056640625}, {"start": 545.24, "end": 545.52, "word": " database,", "probability": 0.88623046875}, {"start": 545.68, "end": 545.76, "word": " from", "probability": 0.63427734375}, {"start": 545.76, "end": 545.88, "word": " the", "probability": 0.626953125}, {"start": 545.88, "end": 546.14, "word": " file.", "probability": 0.85205078125}, {"start": 546.8, "end": 546.86, "word": " Is", "probability": 0.18798828125}, {"start": 546.86, "end": 546.86, "word": " it", "probability": 0.666015625}, {"start": 546.86, "end": 546.96, "word": " okay?", "probability": 0.250244140625}, {"start": 549.56, "end": 549.96, "word": " Can", "probability": 0.8212890625}, {"start": 549.96, "end": 550.22, "word": " I", "probability": 0.96728515625}, {"start": 550.22, "end": 550.64, "word": " use", "probability": 0.8759765625}, {"start": 550.64, "end": 550.86, "word": " the", "probability": 0.8857421875}, {"start": 550.86, "end": 551.18, "word": " phone", "probability": 0.91650390625}, {"start": 551.18, "end": 551.5, "word": " book", "probability": 0.671875}, {"start": 551.5, "end": 551.78, "word": " that", "probability": 0.73681640625}, {"start": 551.78, "end": 551.94, "word": " I", "probability": 0.986328125}, {"start": 551.94, "end": 552.26, "word": " made", "probability": 0.492919921875}, {"start": 552.26, "end": 553.46, "word": " from", "probability": 0.57470703125}, {"start": 553.46, "end": 553.58, "word": " the", "probability": 0.294189453125}, {"start": 553.58, "end": 553.72, "word": " main?", "probability": 0.360107421875}, {"start": 555.5, "end": 555.9, "word": " As", "probability": 0.55078125}, {"start": 555.9, "end": 556.04, "word": " I", "probability": 0.487060546875}, {"start": 556.04, "end": 556.24, "word": " said,", "probability": 0.57763671875}, {"start": 556.4, "end": 556.4, "word": " it", "probability": 0.391357421875}, {"start": 556.4, "end": 556.4, "word": " is", "probability": 0.615234375}, {"start": 556.4, "end": 556.56, "word": " optional.", "probability": 0.263427734375}, {"start": 556.66, "end": 556.76, "word": " You", "probability": 0.88232421875}, {"start": 556.76, "end": 556.96, "word": " can", "probability": 0.9375}, {"start": 556.96, "end": 557.06, "word": " use", "probability": 0.335693359375}, {"start": 557.06, "end": 557.22, "word": " the", "probability": 0.533203125}, {"start": 557.22, "end": 557.44, "word": " main,", "probability": 0.90576171875}, {"start": 557.52, "end": 557.82, "word": " practice", "probability": 0.218994140625}, {"start": 557.82, "end": 558.02, "word": " using", "probability": 0.274658203125}, {"start": 558.02, "end": 558.04, "word": " the", "probability": 0.8232421875}, {"start": 558.04, "end": 558.28, "word": " main.", "probability": 0.9140625}], "temperature": 1.0}, {"id": 23, "seek": 58083, "start": 559.27, "end": 580.83, "text": "For the main screen, you can put in the constructor this parameter, that this is a phone book, like this. And you can say directly that this is what happened, the phone book should come to the main screen as what? As a parameter. And you can say that it is getp.getcountrycode and say ps for example. And you print it.", "tokens": [12587, 264, 2135, 2568, 11, 291, 393, 829, 294, 264, 47479, 341, 13075, 11, 300, 341, 307, 257, 2593, 1446, 11, 411, 341, 13, 400, 291, 393, 584, 3838, 300, 341, 307, 437, 2011, 11, 264, 2593, 1446, 820, 808, 281, 264, 2135, 2568, 382, 437, 30, 1018, 257, 13075, 13, 400, 291, 393, 584, 300, 309, 307, 483, 79, 13, 847, 39337, 22332, 293, 584, 18815, 337, 1365, 13, 400, 291, 4482, 309, 13], "avg_logprob": -0.5649670958518982, "compression_ratio": 1.7865168539325842, "no_speech_prob": 8.404254913330078e-06, "words": [{"start": 559.27, "end": 559.49, "word": "For", "probability": 0.214599609375}, {"start": 559.49, "end": 559.59, "word": " the", "probability": 0.61181640625}, {"start": 559.59, "end": 559.69, "word": " main", "probability": 0.84619140625}, {"start": 559.69, "end": 560.03, "word": " screen,", "probability": 0.8486328125}, {"start": 560.21, "end": 560.43, "word": " you", "probability": 0.50146484375}, {"start": 560.43, "end": 560.55, "word": " can", "probability": 0.71630859375}, {"start": 560.55, "end": 561.95, "word": " put", "probability": 0.291259765625}, {"start": 561.95, "end": 562.17, "word": " in", "probability": 0.394287109375}, {"start": 562.17, "end": 562.29, "word": " the", "probability": 0.517578125}, {"start": 562.29, "end": 562.93, "word": " constructor", "probability": 0.92724609375}, {"start": 562.93, "end": 563.87, "word": " this", "probability": 0.375}, {"start": 563.87, "end": 564.37, "word": " parameter,", "probability": 0.8671875}, {"start": 564.61, "end": 564.73, "word": " that", "probability": 0.1346435546875}, {"start": 564.73, "end": 566.15, "word": " this", "probability": 0.54541015625}, {"start": 566.15, "end": 566.21, "word": " is", "probability": 0.890625}, {"start": 566.21, "end": 566.31, "word": " a", "probability": 0.5048828125}, {"start": 566.31, "end": 566.43, "word": " phone", "probability": 0.92138671875}, {"start": 566.43, "end": 566.69, "word": " book,", "probability": 0.552734375}, {"start": 566.73, "end": 567.21, "word": " like", "probability": 0.50927734375}, {"start": 567.21, "end": 567.99, "word": " this.", "probability": 0.732421875}, {"start": 568.87, "end": 568.95, "word": " And", "probability": 0.490966796875}, {"start": 568.95, "end": 569.01, "word": " you", "probability": 0.60009765625}, {"start": 569.01, "end": 569.15, "word": " can", "probability": 0.8369140625}, {"start": 569.15, "end": 569.39, "word": " say", "probability": 0.0968017578125}, {"start": 569.39, "end": 569.89, "word": " directly", "probability": 0.336669921875}, {"start": 569.89, "end": 570.23, "word": " that", "probability": 0.327880859375}, {"start": 570.23, "end": 570.33, "word": " this", "probability": 0.5517578125}, {"start": 570.33, "end": 570.33, "word": " is", "probability": 0.76416015625}, {"start": 570.33, "end": 570.71, "word": " what", "probability": 0.8203125}, {"start": 570.71, "end": 570.99, "word": " happened,", "probability": 0.54736328125}, {"start": 571.13, "end": 571.35, "word": " the", "probability": 0.332275390625}, {"start": 571.35, "end": 571.59, "word": " phone", "probability": 0.908203125}, {"start": 571.59, "end": 571.79, "word": " book", "probability": 0.927734375}, {"start": 571.79, "end": 572.03, "word": " should", "probability": 0.257080078125}, {"start": 572.03, "end": 572.27, "word": " come", "probability": 0.365234375}, {"start": 572.27, "end": 572.39, "word": " to", "probability": 0.68798828125}, {"start": 572.39, "end": 572.49, "word": " the", "probability": 0.890625}, {"start": 572.49, "end": 572.65, "word": " main", "probability": 0.93701171875}, {"start": 572.65, "end": 572.99, "word": " screen", "probability": 0.88916015625}, {"start": 572.99, "end": 573.17, "word": " as", "probability": 0.8203125}, {"start": 573.17, "end": 573.43, "word": " what?", "probability": 0.58544921875}, {"start": 573.85, "end": 574.25, "word": " As", "probability": 0.880859375}, {"start": 574.25, "end": 574.33, "word": " a", "probability": 0.64111328125}, {"start": 574.33, "end": 574.67, "word": " parameter.", "probability": 0.98095703125}, {"start": 574.75, "end": 574.83, "word": " And", "probability": 0.65185546875}, {"start": 574.83, "end": 574.93, "word": " you", "probability": 0.93603515625}, {"start": 574.93, "end": 575.05, "word": " can", "probability": 0.9111328125}, {"start": 575.05, "end": 575.29, "word": " say", "probability": 0.72607421875}, {"start": 575.29, "end": 575.37, "word": " that", "probability": 0.2313232421875}, {"start": 575.37, "end": 575.45, "word": " it", "probability": 0.4873046875}, {"start": 575.45, "end": 575.45, "word": " is", "probability": 0.45068359375}, {"start": 575.45, "end": 575.87, "word": " getp", "probability": 0.3797607421875}, {"start": 575.87, "end": 577.51, "word": ".getcountrycode", "probability": 0.752685546875}, {"start": 577.51, "end": 577.61, "word": " and", "probability": 0.5263671875}, {"start": 577.61, "end": 577.77, "word": " say", "probability": 0.6240234375}, {"start": 577.77, "end": 578.15, "word": " ps", "probability": 0.60107421875}, {"start": 578.15, "end": 578.39, "word": " for", "probability": 0.40234375}, {"start": 578.39, "end": 578.57, "word": " example.", "probability": 0.9521484375}, {"start": 580.03, "end": 580.43, "word": " And", "probability": 0.8759765625}, {"start": 580.43, "end": 580.51, "word": " you", "probability": 0.55419921875}, {"start": 580.51, "end": 580.63, "word": " print", "probability": 0.8251953125}, {"start": 580.63, "end": 580.83, "word": " it.", "probability": 0.86376953125}], "temperature": 1.0}, {"id": 24, "seek": 61154, "start": 582.25, "end": 611.55, "text": " Of course, if I add a parameter here, where do I make a mistake? In the main. In the main. In the main, I will find that it is necessary. I will tell you what it is. It needs a parameter. This is the first time. But let's say that training this object is not a big deal. I need it in ten places. You can train from class to class like that. This makes coupling and redundancy more. Okay? It means that the main screen, instead of being an independent class, has become dependent on whom? On the phone book. So if I take this class and you use it somewhere, I will tell you it is an error. Okay?", "tokens": [2720, 1164, 11, 498, 286, 909, 257, 13075, 510, 11, 689, 360, 286, 652, 257, 6146, 30, 682, 264, 2135, 13, 682, 264, 2135, 13, 682, 264, 2135, 11, 286, 486, 915, 300, 309, 307, 4818, 13, 286, 486, 980, 291, 437, 309, 307, 13, 467, 2203, 257, 13075, 13, 639, 307, 264, 700, 565, 13, 583, 718, 311, 584, 300, 3097, 341, 2657, 307, 406, 257, 955, 2028, 13, 286, 643, 309, 294, 2064, 3190, 13, 509, 393, 3847, 490, 1508, 281, 1508, 411, 300, 13, 639, 1669, 37447, 293, 27830, 6717, 544, 13, 1033, 30, 467, 1355, 300, 264, 2135, 2568, 11, 2602, 295, 885, 364, 6695, 1508, 11, 575, 1813, 12334, 322, 7101, 30, 1282, 264, 2593, 1446, 13, 407, 498, 286, 747, 341, 1508, 293, 291, 764, 309, 4079, 11, 286, 486, 980, 291, 309, 307, 364, 6713, 13, 1033, 30], "avg_logprob": -0.5539383647376543, "compression_ratio": 1.8364197530864197, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 582.25, "end": 582.49, "word": " Of", "probability": 0.08343505859375}, {"start": 582.49, "end": 582.51, "word": " course,", "probability": 0.8916015625}, {"start": 582.65, "end": 582.67, "word": " if", "probability": 0.271240234375}, {"start": 582.67, "end": 583.23, "word": " I", "probability": 0.81787109375}, {"start": 583.23, "end": 583.41, "word": " add", "probability": 0.274658203125}, {"start": 583.41, "end": 583.55, "word": " a", "probability": 0.591796875}, {"start": 583.55, "end": 583.87, "word": " parameter", "probability": 0.95947265625}, {"start": 583.87, "end": 584.09, "word": " here,", "probability": 0.51806640625}, {"start": 584.21, "end": 584.53, "word": " where", "probability": 0.2509765625}, {"start": 584.53, "end": 584.53, "word": " do", "probability": 0.224609375}, {"start": 584.53, "end": 584.53, "word": " I", "probability": 0.95703125}, {"start": 584.53, "end": 584.53, "word": " make", "probability": 0.16845703125}, {"start": 584.53, "end": 584.63, "word": " a", "probability": 0.8798828125}, {"start": 584.63, "end": 584.79, "word": " mistake?", "probability": 0.91748046875}, {"start": 585.59, "end": 585.83, "word": " In", "probability": 0.67919921875}, {"start": 585.83, "end": 585.93, "word": " the", "probability": 0.4970703125}, {"start": 585.93, "end": 586.09, "word": " main.", "probability": 0.78955078125}, {"start": 586.35, "end": 586.45, "word": " In", "probability": 0.640625}, {"start": 586.45, "end": 586.57, "word": " the", "probability": 0.90673828125}, {"start": 586.57, "end": 586.75, "word": " main.", "probability": 0.90234375}, {"start": 586.83, "end": 587.15, "word": " In", "probability": 0.5380859375}, {"start": 587.15, "end": 587.23, "word": " the", "probability": 0.90625}, {"start": 587.23, "end": 587.33, "word": " main,", "probability": 0.91650390625}, {"start": 587.37, "end": 587.43, "word": " I", "probability": 0.5537109375}, {"start": 587.43, "end": 587.47, "word": " will", "probability": 0.1558837890625}, {"start": 587.47, "end": 587.57, "word": " find", "probability": 0.12213134765625}, {"start": 587.57, "end": 587.71, "word": " that", "probability": 0.412109375}, {"start": 587.71, "end": 587.85, "word": " it", "probability": 0.40576171875}, {"start": 587.85, "end": 587.85, "word": " is", "probability": 0.457275390625}, {"start": 587.85, "end": 588.03, "word": " necessary.", "probability": 0.66357421875}, {"start": 588.07, "end": 588.15, "word": " I", "probability": 0.440185546875}, {"start": 588.15, "end": 588.17, "word": " will", "probability": 0.57861328125}, {"start": 588.17, "end": 588.27, "word": " tell", "probability": 0.388671875}, {"start": 588.27, "end": 588.39, "word": " you", "probability": 0.9326171875}, {"start": 588.39, "end": 588.57, "word": " what", "probability": 0.693359375}, {"start": 588.57, "end": 588.57, "word": " it", "probability": 0.1585693359375}, {"start": 588.57, "end": 588.57, "word": " is.", "probability": 0.884765625}, {"start": 588.63, "end": 588.89, "word": " It", "probability": 0.319580078125}, {"start": 588.89, "end": 589.03, "word": " needs", "probability": 0.6796875}, {"start": 589.03, "end": 589.11, "word": " a", "probability": 0.666015625}, {"start": 589.11, "end": 589.41, "word": " parameter.", "probability": 0.98193359375}, {"start": 589.47, "end": 589.61, "word": " This", "probability": 0.33154296875}, {"start": 589.61, "end": 589.61, "word": " is", "probability": 0.6103515625}, {"start": 589.61, "end": 589.69, "word": " the", "probability": 0.2471923828125}, {"start": 589.69, "end": 589.81, "word": " first", "probability": 0.43310546875}, {"start": 589.81, "end": 589.91, "word": " time.", "probability": 0.72607421875}, {"start": 590.93, "end": 591.25, "word": " But", "probability": 0.64599609375}, {"start": 591.25, "end": 591.41, "word": " let's", "probability": 0.5792236328125}, {"start": 591.41, "end": 591.51, "word": " say", "probability": 0.9052734375}, {"start": 591.51, "end": 591.75, "word": " that", "probability": 0.70849609375}, {"start": 591.75, "end": 592.57, "word": " training", "probability": 0.501953125}, {"start": 592.57, "end": 592.77, "word": " this", "probability": 0.7529296875}, {"start": 592.77, "end": 593.21, "word": " object", "probability": 0.97265625}, {"start": 593.21, "end": 594.31, "word": " is", "probability": 0.457275390625}, {"start": 594.31, "end": 594.73, "word": " not", "probability": 0.873046875}, {"start": 594.73, "end": 594.83, "word": " a", "probability": 0.18896484375}, {"start": 594.83, "end": 595.01, "word": " big", "probability": 0.1397705078125}, {"start": 595.01, "end": 595.11, "word": " deal.", "probability": 0.87353515625}, {"start": 595.21, "end": 595.27, "word": " I", "probability": 0.39697265625}, {"start": 595.27, "end": 595.53, "word": " need", "probability": 0.599609375}, {"start": 595.53, "end": 595.61, "word": " it", "probability": 0.79150390625}, {"start": 595.61, "end": 595.67, "word": " in", "probability": 0.82861328125}, {"start": 595.67, "end": 595.89, "word": " ten", "probability": 0.462890625}, {"start": 595.89, "end": 596.19, "word": " places.", "probability": 0.625}, {"start": 596.23, "end": 596.35, "word": " You", "probability": 0.61865234375}, {"start": 596.35, "end": 596.45, "word": " can", "probability": 0.666015625}, {"start": 596.45, "end": 596.75, "word": " train", "probability": 0.73291015625}, {"start": 596.75, "end": 596.97, "word": " from", "probability": 0.6884765625}, {"start": 596.97, "end": 597.25, "word": " class", "probability": 0.6494140625}, {"start": 597.25, "end": 597.37, "word": " to", "probability": 0.97265625}, {"start": 597.37, "end": 597.59, "word": " class", "probability": 0.97509765625}, {"start": 597.59, "end": 597.75, "word": " like", "probability": 0.63232421875}, {"start": 597.75, "end": 598.03, "word": " that.", "probability": 0.5322265625}, {"start": 598.43, "end": 598.75, "word": " This", "probability": 0.6552734375}, {"start": 598.75, "end": 598.97, "word": " makes", "probability": 0.426513671875}, {"start": 598.97, "end": 599.35, "word": " coupling", "probability": 0.8408203125}, {"start": 599.35, "end": 599.51, "word": " and", "probability": 0.381103515625}, {"start": 599.51, "end": 599.93, "word": " redundancy", "probability": 0.92041015625}, {"start": 599.93, "end": 600.17, "word": " more.", "probability": 0.7255859375}, {"start": 600.73, "end": 600.97, "word": " Okay?", "probability": 0.362548828125}, {"start": 601.21, "end": 601.45, "word": " It", "probability": 0.47412109375}, {"start": 601.45, "end": 601.73, "word": " means", "probability": 0.92138671875}, {"start": 601.73, "end": 601.99, "word": " that", "probability": 0.9111328125}, {"start": 601.99, "end": 602.11, "word": " the", "probability": 0.68603515625}, {"start": 602.11, "end": 602.25, "word": " main", "probability": 0.439697265625}, {"start": 602.25, "end": 602.59, "word": " screen,", "probability": 0.890625}, {"start": 602.77, "end": 602.91, "word": " instead", "probability": 0.8427734375}, {"start": 602.91, "end": 603.03, "word": " of", "probability": 0.9716796875}, {"start": 603.03, "end": 603.97, "word": " being", "probability": 0.84765625}, {"start": 603.97, "end": 604.15, "word": " an", "probability": 0.52490234375}, {"start": 604.15, "end": 604.81, "word": " independent", "probability": 0.72900390625}, {"start": 604.81, "end": 604.81, "word": " class,", "probability": 0.94482421875}, {"start": 605.19, "end": 605.35, "word": " has", "probability": 0.187744140625}, {"start": 605.35, "end": 605.51, "word": " become", "probability": 0.74658203125}, {"start": 605.51, "end": 605.93, "word": " dependent", "probability": 0.85205078125}, {"start": 605.93, "end": 606.13, "word": " on", "probability": 0.66796875}, {"start": 606.13, "end": 606.35, "word": " whom?", "probability": 0.408447265625}, {"start": 606.93, "end": 607.25, "word": " On", "probability": 0.673828125}, {"start": 607.25, "end": 607.37, "word": " the", "probability": 0.80908203125}, {"start": 607.37, "end": 607.59, "word": " phone", "probability": 0.5}, {"start": 607.59, "end": 607.75, "word": " book.", "probability": 0.73095703125}, {"start": 607.81, "end": 607.93, "word": " So", "probability": 0.42041015625}, {"start": 607.93, "end": 608.03, "word": " if", "probability": 0.548828125}, {"start": 608.03, "end": 608.07, "word": " I", "probability": 0.80126953125}, {"start": 608.07, "end": 608.27, "word": " take", "probability": 0.391845703125}, {"start": 608.27, "end": 608.41, "word": " this", "probability": 0.90966796875}, {"start": 608.41, "end": 608.69, "word": " class", "probability": 0.95849609375}, {"start": 608.69, "end": 609.07, "word": " and", "probability": 0.58056640625}, {"start": 609.07, "end": 609.23, "word": " you", "probability": 0.34765625}, {"start": 609.23, "end": 609.43, "word": " use", "probability": 0.771484375}, {"start": 609.43, "end": 609.53, "word": " it", "probability": 0.943359375}, {"start": 609.53, "end": 609.77, "word": " somewhere,", "probability": 0.345703125}, {"start": 609.89, "end": 610.01, "word": " I", "probability": 0.76171875}, {"start": 610.01, "end": 610.09, "word": " will", "probability": 0.43701171875}, {"start": 610.09, "end": 610.17, "word": " tell", "probability": 0.53662109375}, {"start": 610.17, "end": 610.31, "word": " you", "probability": 0.9677734375}, {"start": 610.31, "end": 610.33, "word": " it", "probability": 0.28173828125}, {"start": 610.33, "end": 610.33, "word": " is", "probability": 0.71484375}, {"start": 610.33, "end": 610.51, "word": " an", "probability": 0.45556640625}, {"start": 610.51, "end": 610.51, "word": " error.", "probability": 0.90869140625}, {"start": 611.35, "end": 611.55, "word": " Okay?", "probability": 0.7666015625}], "temperature": 1.0}, {"id": 25, "seek": 64253, "start": 614.45, "end": 642.53, "text": " Ok, the best solution is to apply the singleton pattern, to make the phonebook create only one object from it. How do we do it? Pay attention to me, I'm applying the singleton pattern. The first step is to go to the constructor and put private, close the constructor. No one can say why I closed the constructor, because no one can create an object from it. Ok, now the phonebook", "tokens": [3477, 11, 264, 1151, 3827, 307, 281, 3079, 264, 1522, 14806, 5102, 11, 281, 652, 264, 2593, 2939, 1884, 787, 472, 2657, 490, 309, 13, 1012, 360, 321, 360, 309, 30, 11431, 3202, 281, 385, 11, 286, 478, 9275, 264, 1522, 14806, 5102, 13, 440, 700, 1823, 307, 281, 352, 281, 264, 47479, 293, 829, 4551, 11, 1998, 264, 47479, 13, 883, 472, 393, 584, 983, 286, 5395, 264, 47479, 11, 570, 572, 472, 393, 1884, 364, 2657, 490, 309, 13, 3477, 11, 586, 264, 2593, 2939], "avg_logprob": -0.5862925899299708, "compression_ratio": 1.8095238095238095, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 614.45, "end": 614.73, "word": " Ok,", "probability": 0.1593017578125}, {"start": 614.81, "end": 614.91, "word": " the", "probability": 0.4990234375}, {"start": 614.91, "end": 615.37, "word": " best", "probability": 0.54443359375}, {"start": 615.37, "end": 615.39, "word": " solution", "probability": 0.78271484375}, {"start": 615.39, "end": 615.85, "word": " is", "probability": 0.410400390625}, {"start": 615.85, "end": 616.65, "word": " to", "probability": 0.607421875}, {"start": 616.65, "end": 617.41, "word": " apply", "probability": 0.56982421875}, {"start": 617.41, "end": 617.85, "word": " the", "probability": 0.5283203125}, {"start": 617.85, "end": 618.25, "word": " singleton", "probability": 0.8330078125}, {"start": 618.25, "end": 618.57, "word": " pattern,", "probability": 0.89990234375}, {"start": 618.61, "end": 618.81, "word": " to", "probability": 0.28955078125}, {"start": 618.81, "end": 619.23, "word": " make", "probability": 0.5126953125}, {"start": 619.23, "end": 619.37, "word": " the", "probability": 0.40966796875}, {"start": 619.37, "end": 620.73, "word": " phonebook", "probability": 0.607177734375}, {"start": 620.73, "end": 621.65, "word": " create", "probability": 0.145263671875}, {"start": 621.65, "end": 621.85, "word": " only", "probability": 0.46533203125}, {"start": 621.85, "end": 623.13, "word": " one", "probability": 0.8212890625}, {"start": 623.13, "end": 623.17, "word": " object", "probability": 0.90087890625}, {"start": 623.17, "end": 623.35, "word": " from", "probability": 0.2459716796875}, {"start": 623.35, "end": 623.39, "word": " it.", "probability": 0.82763671875}, {"start": 623.49, "end": 623.69, "word": " How", "probability": 0.52978515625}, {"start": 623.69, "end": 623.79, "word": " do", "probability": 0.399169921875}, {"start": 623.79, "end": 623.81, "word": " we", "probability": 0.8291015625}, {"start": 623.81, "end": 623.95, "word": " do", "probability": 0.8671875}, {"start": 623.95, "end": 624.17, "word": " it?", "probability": 0.55615234375}, {"start": 624.39, "end": 624.71, "word": " Pay", "probability": 0.521484375}, {"start": 624.71, "end": 624.75, "word": " attention", "probability": 0.92333984375}, {"start": 624.75, "end": 624.79, "word": " to", "probability": 0.241455078125}, {"start": 624.79, "end": 624.95, "word": " me,", "probability": 0.5322265625}, {"start": 624.99, "end": 625.39, "word": " I'm", "probability": 0.5184326171875}, {"start": 625.39, "end": 625.67, "word": " applying", "probability": 0.59326171875}, {"start": 625.67, "end": 625.87, "word": " the", "probability": 0.78466796875}, {"start": 625.87, "end": 626.17, "word": " singleton", "probability": 0.922119140625}, {"start": 626.17, "end": 626.51, "word": " pattern.", "probability": 0.89599609375}, {"start": 626.83, "end": 627.23, "word": " The", "probability": 0.7080078125}, {"start": 627.23, "end": 627.35, "word": " first", "probability": 0.89111328125}, {"start": 627.35, "end": 627.61, "word": " step", "probability": 0.83056640625}, {"start": 627.61, "end": 628.07, "word": " is", "probability": 0.475830078125}, {"start": 628.07, "end": 628.11, "word": " to", "probability": 0.58642578125}, {"start": 628.11, "end": 628.21, "word": " go", "probability": 0.57275390625}, {"start": 628.21, "end": 628.27, "word": " to", "probability": 0.93017578125}, {"start": 628.27, "end": 628.37, "word": " the", "probability": 0.77490234375}, {"start": 628.37, "end": 628.87, "word": " constructor", "probability": 0.8388671875}, {"start": 628.87, "end": 630.25, "word": " and", "probability": 0.50439453125}, {"start": 630.25, "end": 632.43, "word": " put", "probability": 0.28515625}, {"start": 632.43, "end": 632.87, "word": " private,", "probability": 0.476318359375}, {"start": 633.05, "end": 633.29, "word": " close", "probability": 0.3037109375}, {"start": 633.29, "end": 633.53, "word": " the", "probability": 0.7119140625}, {"start": 633.53, "end": 633.95, "word": " constructor.", "probability": 0.87890625}, {"start": 634.71, "end": 635.19, "word": " No", "probability": 0.1422119140625}, {"start": 635.19, "end": 635.41, "word": " one", "probability": 0.91748046875}, {"start": 635.41, "end": 635.65, "word": " can", "probability": 0.81005859375}, {"start": 635.65, "end": 635.95, "word": " say", "probability": 0.10491943359375}, {"start": 635.95, "end": 636.11, "word": " why", "probability": 0.4892578125}, {"start": 636.11, "end": 636.41, "word": " I", "probability": 0.525390625}, {"start": 636.41, "end": 636.41, "word": " closed", "probability": 0.82373046875}, {"start": 636.41, "end": 636.59, "word": " the", "probability": 0.80322265625}, {"start": 636.59, "end": 636.97, "word": " constructor,", "probability": 0.88720703125}, {"start": 637.25, "end": 637.61, "word": " because", "probability": 0.64990234375}, {"start": 637.61, "end": 637.73, "word": " no", "probability": 0.7734375}, {"start": 637.73, "end": 637.89, "word": " one", "probability": 0.9208984375}, {"start": 637.89, "end": 638.07, "word": " can", "probability": 0.1851806640625}, {"start": 638.07, "end": 638.27, "word": " create", "probability": 0.83740234375}, {"start": 638.27, "end": 638.91, "word": " an", "probability": 0.580078125}, {"start": 638.91, "end": 639.07, "word": " object", "probability": 0.97705078125}, {"start": 639.07, "end": 639.31, "word": " from", "probability": 0.81005859375}, {"start": 639.31, "end": 639.51, "word": " it.", "probability": 0.79248046875}, {"start": 640.55, "end": 640.85, "word": " Ok,", "probability": 0.309814453125}, {"start": 641.19, "end": 641.69, "word": " now", "probability": 0.51953125}, {"start": 641.69, "end": 641.95, "word": " the", "probability": 0.353515625}, {"start": 641.95, "end": 642.53, "word": " phonebook", "probability": 0.936279296875}], "temperature": 1.0}, {"id": 26, "seek": 67183, "start": 643.85, "end": 671.83, "text": " and it makes an instance in it private static phonebook named instance and its value is null what is this now? this is an object named instance not a phonebook, it is the same class name okay? and what did this do? select, until now its value is null okay", "tokens": [293, 309, 1669, 364, 5197, 294, 309, 4551, 13437, 2593, 2939, 4926, 5197, 293, 1080, 2158, 307, 18184, 437, 307, 341, 586, 30, 341, 307, 364, 2657, 4926, 5197, 406, 257, 2593, 2939, 11, 309, 307, 264, 912, 1508, 1315, 1392, 30, 293, 437, 630, 341, 360, 30, 3048, 11, 1826, 586, 1080, 2158, 307, 18184, 1392], "avg_logprob": -0.5824353489382513, "compression_ratio": 1.7777777777777777, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 643.85, "end": 644.05, "word": " and", "probability": 0.2724609375}, {"start": 644.05, "end": 644.15, "word": " it", "probability": 0.461669921875}, {"start": 644.15, "end": 644.33, "word": " makes", "probability": 0.2166748046875}, {"start": 644.33, "end": 646.31, "word": " an", "probability": 0.331787109375}, {"start": 646.31, "end": 646.79, "word": " instance", "probability": 0.98046875}, {"start": 646.79, "end": 646.91, "word": " in", "probability": 0.1898193359375}, {"start": 646.91, "end": 646.91, "word": " it", "probability": 0.83349609375}, {"start": 646.91, "end": 647.43, "word": " private", "probability": 0.39453125}, {"start": 647.43, "end": 650.33, "word": " static", "probability": 0.8447265625}, {"start": 650.33, "end": 653.17, "word": " phonebook", "probability": 0.798583984375}, {"start": 653.17, "end": 655.37, "word": " named", "probability": 0.1622314453125}, {"start": 655.37, "end": 655.91, "word": " instance", "probability": 0.951171875}, {"start": 655.91, "end": 656.13, "word": " and", "probability": 0.619140625}, {"start": 656.13, "end": 656.49, "word": " its", "probability": 0.552734375}, {"start": 656.49, "end": 656.49, "word": " value", "probability": 0.9345703125}, {"start": 656.49, "end": 657.47, "word": " is", "probability": 0.8583984375}, {"start": 657.47, "end": 658.31, "word": " null", "probability": 0.462646484375}, {"start": 658.31, "end": 659.41, "word": " what", "probability": 0.65185546875}, {"start": 659.41, "end": 659.47, "word": " is", "probability": 0.72509765625}, {"start": 659.47, "end": 659.67, "word": " this", "probability": 0.7880859375}, {"start": 659.67, "end": 660.15, "word": " now?", "probability": 0.465087890625}, {"start": 660.25, "end": 660.55, "word": " this", "probability": 0.74609375}, {"start": 660.55, "end": 660.61, "word": " is", "probability": 0.904296875}, {"start": 660.61, "end": 660.91, "word": " an", "probability": 0.61767578125}, {"start": 660.91, "end": 661.21, "word": " object", "probability": 0.9794921875}, {"start": 661.21, "end": 661.49, "word": " named", "probability": 0.66015625}, {"start": 661.49, "end": 662.03, "word": " instance", "probability": 0.9619140625}, {"start": 662.03, "end": 662.99, "word": " not", "probability": 0.172119140625}, {"start": 662.99, "end": 664.25, "word": " a", "probability": 0.413330078125}, {"start": 664.25, "end": 664.81, "word": " phonebook,", "probability": 0.868408203125}, {"start": 664.89, "end": 664.97, "word": " it", "probability": 0.220703125}, {"start": 664.97, "end": 664.97, "word": " is", "probability": 0.720703125}, {"start": 664.97, "end": 665.05, "word": " the", "probability": 0.763671875}, {"start": 665.05, "end": 665.05, "word": " same", "probability": 0.90380859375}, {"start": 665.05, "end": 665.45, "word": " class", "probability": 0.25537109375}, {"start": 665.45, "end": 665.45, "word": " name", "probability": 0.53759765625}, {"start": 665.45, "end": 666.73, "word": " okay?", "probability": 0.1651611328125}, {"start": 667.01, "end": 667.61, "word": " and", "probability": 0.849609375}, {"start": 667.61, "end": 667.73, "word": " what", "probability": 0.56005859375}, {"start": 667.73, "end": 667.73, "word": " did", "probability": 0.56982421875}, {"start": 667.73, "end": 667.83, "word": " this", "probability": 0.515625}, {"start": 667.83, "end": 668.11, "word": " do?", "probability": 0.46875}, {"start": 668.67, "end": 669.27, "word": " select,", "probability": 0.448974609375}, {"start": 669.33, "end": 669.51, "word": " until", "probability": 0.25537109375}, {"start": 669.51, "end": 669.79, "word": " now", "probability": 0.94091796875}, {"start": 669.79, "end": 669.85, "word": " its", "probability": 0.71142578125}, {"start": 669.85, "end": 670.03, "word": " value", "probability": 0.97021484375}, {"start": 670.03, "end": 670.61, "word": " is", "probability": 0.9150390625}, {"start": 670.61, "end": 670.97, "word": " null", "probability": 0.94189453125}, {"start": 670.97, "end": 671.83, "word": " okay", "probability": 0.341064453125}], "temperature": 1.0}, {"id": 27, "seek": 69981, "start": 675.91, "end": 699.81, "text": " Now instead of constructor, I created a public static called phonebook.getinstance Now the idea is that this instance, which we call phonebook, is the only object that is created in the whole application", "tokens": [823, 2602, 295, 47479, 11, 286, 2942, 257, 1908, 13437, 1219, 2593, 2939, 13, 847, 13911, 719, 823, 264, 1558, 307, 300, 341, 5197, 11, 597, 321, 818, 2593, 2939, 11, 307, 264, 787, 2657, 300, 307, 2942, 294, 264, 1379, 3861], "avg_logprob": -0.5134447591249333, "compression_ratio": 1.5, "no_speech_prob": 0.0, "words": [{"start": 675.91, "end": 676.19, "word": " Now", "probability": 0.146240234375}, {"start": 676.19, "end": 676.45, "word": " instead", "probability": 0.417724609375}, {"start": 676.45, "end": 676.55, "word": " of", "probability": 0.9677734375}, {"start": 676.55, "end": 677.23, "word": " constructor,", "probability": 0.3623046875}, {"start": 677.63, "end": 677.85, "word": " I", "probability": 0.74267578125}, {"start": 677.85, "end": 678.03, "word": " created", "probability": 0.2607421875}, {"start": 678.03, "end": 679.03, "word": " a", "probability": 0.444091796875}, {"start": 679.03, "end": 679.25, "word": " public", "probability": 0.556640625}, {"start": 679.25, "end": 681.25, "word": " static", "probability": 0.459228515625}, {"start": 681.25, "end": 682.87, "word": " called", "probability": 0.244384765625}, {"start": 682.87, "end": 684.61, "word": " phonebook", "probability": 0.660400390625}, {"start": 684.61, "end": 688.57, "word": ".getinstance", "probability": 0.6864013671875}, {"start": 688.57, "end": 692.49, "word": " Now", "probability": 0.448974609375}, {"start": 692.49, "end": 692.71, "word": " the", "probability": 0.63525390625}, {"start": 692.71, "end": 692.93, "word": " idea", "probability": 0.8076171875}, {"start": 692.93, "end": 693.55, "word": " is", "probability": 0.77490234375}, {"start": 693.55, "end": 693.71, "word": " that", "probability": 0.818359375}, {"start": 693.71, "end": 693.91, "word": " this", "probability": 0.787109375}, {"start": 693.91, "end": 694.53, "word": " instance,", "probability": 0.873046875}, {"start": 695.03, "end": 695.31, "word": " which", "probability": 0.63818359375}, {"start": 695.31, "end": 695.41, "word": " we", "probability": 0.515625}, {"start": 695.41, "end": 695.65, "word": " call", "probability": 0.77099609375}, {"start": 695.65, "end": 696.13, "word": " phonebook,", "probability": 0.910888671875}, {"start": 696.51, "end": 696.73, "word": " is", "probability": 0.8017578125}, {"start": 696.73, "end": 697.27, "word": " the", "probability": 0.8603515625}, {"start": 697.27, "end": 697.33, "word": " only", "probability": 0.8984375}, {"start": 697.33, "end": 697.61, "word": " object", "probability": 0.92919921875}, {"start": 697.61, "end": 698.87, "word": " that", "probability": 0.427734375}, {"start": 698.87, "end": 699.03, "word": " is", "probability": 0.60595703125}, {"start": 699.03, "end": 699.31, "word": " created", "probability": 0.397705078125}, {"start": 699.31, "end": 699.47, "word": " in", "probability": 0.8583984375}, {"start": 699.47, "end": 699.53, "word": " the", "probability": 0.82421875}, {"start": 699.53, "end": 699.53, "word": " whole", "probability": 0.471435546875}, {"start": 699.53, "end": 699.81, "word": " application", "probability": 0.7724609375}], "temperature": 1.0}, {"id": 28, "seek": 71845, "start": 700.83, "end": 718.45, "text": " Until now it's value is none Because this object exists as private, which means that I can't deliver it from outside to this class So how can I deliver it? You need to make a getter method So I went and made a method called getinstance What does it return?", "tokens": [9088, 586, 309, 311, 2158, 307, 6022, 1436, 341, 2657, 8198, 382, 4551, 11, 597, 1355, 300, 286, 393, 380, 4239, 309, 490, 2380, 281, 341, 1508, 407, 577, 393, 286, 4239, 309, 30, 509, 643, 281, 652, 257, 483, 391, 3170, 407, 286, 1437, 293, 1027, 257, 3170, 1219, 483, 13911, 719, 708, 775, 309, 2736, 30], "avg_logprob": -0.5487287893133649, "compression_ratio": 1.4602272727272727, "no_speech_prob": 1.3947486877441406e-05, "words": [{"start": 700.83, "end": 701.13, "word": " Until", "probability": 0.1951904296875}, {"start": 701.13, "end": 701.45, "word": " now", "probability": 0.56689453125}, {"start": 701.45, "end": 701.79, "word": " it's", "probability": 0.3582763671875}, {"start": 701.79, "end": 701.79, "word": " value", "probability": 0.68359375}, {"start": 701.79, "end": 702.21, "word": " is", "probability": 0.76904296875}, {"start": 702.21, "end": 703.21, "word": " none", "probability": 0.287353515625}, {"start": 703.21, "end": 704.09, "word": " Because", "probability": 0.5078125}, {"start": 704.09, "end": 704.41, "word": " this", "probability": 0.84423828125}, {"start": 704.41, "end": 704.89, "word": " object", "probability": 0.94384765625}, {"start": 704.89, "end": 705.49, "word": " exists", "probability": 0.5966796875}, {"start": 705.49, "end": 705.67, "word": " as", "probability": 0.7802734375}, {"start": 705.67, "end": 706.09, "word": " private,", "probability": 0.7177734375}, {"start": 706.55, "end": 706.97, "word": " which", "probability": 0.313232421875}, {"start": 706.97, "end": 707.07, "word": " means", "probability": 0.9326171875}, {"start": 707.07, "end": 707.25, "word": " that", "probability": 0.47412109375}, {"start": 707.25, "end": 707.39, "word": " I", "probability": 0.88330078125}, {"start": 707.39, "end": 707.65, "word": " can't", "probability": 0.73583984375}, {"start": 707.65, "end": 707.95, "word": " deliver", "probability": 0.23681640625}, {"start": 707.95, "end": 708.03, "word": " it", "probability": 0.46240234375}, {"start": 708.03, "end": 708.13, "word": " from", "probability": 0.54736328125}, {"start": 708.13, "end": 708.51, "word": " outside", "probability": 0.80322265625}, {"start": 708.51, "end": 710.27, "word": " to", "probability": 0.501953125}, {"start": 710.27, "end": 710.33, "word": " this", "probability": 0.56005859375}, {"start": 710.33, "end": 710.65, "word": " class", "probability": 0.9599609375}, {"start": 710.65, "end": 711.19, "word": " So", "probability": 0.372802734375}, {"start": 711.19, "end": 711.39, "word": " how", "probability": 0.77734375}, {"start": 711.39, "end": 711.51, "word": " can", "probability": 0.35595703125}, {"start": 711.51, "end": 711.75, "word": " I", "probability": 0.92431640625}, {"start": 711.75, "end": 712.05, "word": " deliver", "probability": 0.76904296875}, {"start": 712.05, "end": 712.17, "word": " it?", "probability": 0.82666015625}, {"start": 712.59, "end": 712.73, "word": " You", "probability": 0.74951171875}, {"start": 712.73, "end": 712.85, "word": " need", "probability": 0.5634765625}, {"start": 712.85, "end": 712.93, "word": " to", "probability": 0.904296875}, {"start": 712.93, "end": 713.07, "word": " make", "probability": 0.31689453125}, {"start": 713.07, "end": 713.19, "word": " a", "probability": 0.88232421875}, {"start": 713.19, "end": 713.39, "word": " getter", "probability": 0.7213134765625}, {"start": 713.39, "end": 713.77, "word": " method", "probability": 0.95703125}, {"start": 713.77, "end": 714.77, "word": " So", "probability": 0.345458984375}, {"start": 714.77, "end": 715.37, "word": " I", "probability": 0.5205078125}, {"start": 715.37, "end": 715.39, "word": " went", "probability": 0.408935546875}, {"start": 715.39, "end": 715.53, "word": " and", "probability": 0.57177734375}, {"start": 715.53, "end": 715.63, "word": " made", "probability": 0.6611328125}, {"start": 715.63, "end": 715.99, "word": " a", "probability": 0.90771484375}, {"start": 715.99, "end": 716.13, "word": " method", "probability": 0.97216796875}, {"start": 716.13, "end": 716.51, "word": " called", "probability": 0.71484375}, {"start": 716.51, "end": 717.91, "word": " getinstance", "probability": 0.6904296875}, {"start": 717.91, "end": 718.09, "word": " What", "probability": 0.270263671875}, {"start": 718.09, "end": 718.19, "word": " does", "probability": 0.2283935546875}, {"start": 718.19, "end": 718.23, "word": " it", "probability": 0.8232421875}, {"start": 718.23, "end": 718.45, "word": " return?", "probability": 0.291748046875}], "temperature": 1.0}, {"id": 29, "seek": 74693, "start": 719.87, "end": 746.93, "text": " it returns the phone book, it is clear that it returns the instance what do I want to say here? I want to say, look, no, not return, before return, I want to say if instance, which is, I was null yet if instance equals null, go to the instance and say new phone book and then return instance, we are done", "tokens": [309, 11247, 264, 2593, 1446, 11, 309, 307, 1850, 300, 309, 11247, 264, 5197, 437, 360, 286, 528, 281, 584, 510, 30, 286, 528, 281, 584, 11, 574, 11, 572, 11, 406, 2736, 11, 949, 2736, 11, 286, 528, 281, 584, 498, 5197, 11, 597, 307, 11, 286, 390, 18184, 1939, 498, 5197, 6915, 18184, 11, 352, 281, 264, 5197, 293, 584, 777, 2593, 1446, 293, 550, 2736, 5197, 11, 321, 366, 1096], "avg_logprob": -0.6131756885631664, "compression_ratio": 1.9805194805194806, "no_speech_prob": 1.049041748046875e-05, "words": [{"start": 719.87, "end": 720.09, "word": " it", "probability": 0.0445556640625}, {"start": 720.09, "end": 720.29, "word": " returns", "probability": 0.5693359375}, {"start": 720.29, "end": 720.45, "word": " the", "probability": 0.467041015625}, {"start": 720.45, "end": 720.59, "word": " phone", "probability": 0.10443115234375}, {"start": 720.59, "end": 720.69, "word": " book,", "probability": 0.68896484375}, {"start": 720.73, "end": 720.87, "word": " it", "probability": 0.28173828125}, {"start": 720.87, "end": 720.89, "word": " is", "probability": 0.54345703125}, {"start": 720.89, "end": 721.19, "word": " clear", "probability": 0.267822265625}, {"start": 721.19, "end": 721.33, "word": " that", "probability": 0.63623046875}, {"start": 721.33, "end": 721.43, "word": " it", "probability": 0.58935546875}, {"start": 721.43, "end": 721.99, "word": " returns", "probability": 0.4892578125}, {"start": 721.99, "end": 722.19, "word": " the", "probability": 0.5986328125}, {"start": 722.19, "end": 722.53, "word": " instance", "probability": 0.814453125}, {"start": 722.53, "end": 724.29, "word": " what", "probability": 0.15087890625}, {"start": 724.29, "end": 724.79, "word": " do", "probability": 0.290771484375}, {"start": 724.79, "end": 724.83, "word": " I", "probability": 0.5625}, {"start": 724.83, "end": 724.87, "word": " want", "probability": 0.32568359375}, {"start": 724.87, "end": 724.87, "word": " to", "probability": 0.96142578125}, {"start": 724.87, "end": 725.03, "word": " say", "probability": 0.5625}, {"start": 725.03, "end": 725.39, "word": " here?", "probability": 0.71484375}, {"start": 725.81, "end": 726.21, "word": " I", "probability": 0.499755859375}, {"start": 726.21, "end": 726.33, "word": " want", "probability": 0.78564453125}, {"start": 726.33, "end": 726.35, "word": " to", "probability": 0.90478515625}, {"start": 726.35, "end": 726.45, "word": " say,", "probability": 0.86328125}, {"start": 726.57, "end": 726.73, "word": " look,", "probability": 0.62548828125}, {"start": 726.87, "end": 726.97, "word": " no,", "probability": 0.344970703125}, {"start": 727.05, "end": 727.17, "word": " not", "probability": 0.69091796875}, {"start": 727.17, "end": 727.41, "word": " return,", "probability": 0.720703125}, {"start": 727.47, "end": 727.67, "word": " before", "probability": 0.4921875}, {"start": 727.67, "end": 728.07, "word": " return,", "probability": 0.57080078125}, {"start": 728.17, "end": 728.17, "word": " I", "probability": 0.81884765625}, {"start": 728.17, "end": 728.27, "word": " want", "probability": 0.8232421875}, {"start": 728.27, "end": 728.27, "word": " to", "probability": 0.9697265625}, {"start": 728.27, "end": 728.45, "word": " say", "probability": 0.93017578125}, {"start": 728.45, "end": 728.69, "word": " if", "probability": 0.74267578125}, {"start": 728.69, "end": 729.13, "word": " instance,", "probability": 0.90380859375}, {"start": 729.33, "end": 729.45, "word": " which", "probability": 0.2646484375}, {"start": 729.45, "end": 729.57, "word": " is,", "probability": 0.60009765625}, {"start": 729.65, "end": 729.85, "word": " I", "probability": 0.69921875}, {"start": 729.85, "end": 729.85, "word": " was", "probability": 0.59130859375}, {"start": 729.85, "end": 730.09, "word": " null", "probability": 0.52880859375}, {"start": 730.09, "end": 730.59, "word": " yet", "probability": 0.544921875}, {"start": 730.59, "end": 731.27, "word": " if", "probability": 0.25048828125}, {"start": 731.27, "end": 732.65, "word": " instance", "probability": 0.9716796875}, {"start": 732.65, "end": 734.33, "word": " equals", "probability": 0.408447265625}, {"start": 734.33, "end": 734.65, "word": " null,", "probability": 0.9169921875}, {"start": 735.47, "end": 735.69, "word": " go", "probability": 0.7880859375}, {"start": 735.69, "end": 735.81, "word": " to", "probability": 0.95068359375}, {"start": 735.81, "end": 735.89, "word": " the", "probability": 0.51318359375}, {"start": 735.89, "end": 736.43, "word": " instance", "probability": 0.9775390625}, {"start": 736.43, "end": 737.75, "word": " and", "probability": 0.63134765625}, {"start": 737.75, "end": 737.91, "word": " say", "probability": 0.73828125}, {"start": 737.91, "end": 738.39, "word": " new", "probability": 0.77880859375}, {"start": 738.39, "end": 740.57, "word": " phone", "probability": 0.86279296875}, {"start": 740.57, "end": 740.83, "word": " book", "probability": 0.5791015625}, {"start": 740.83, "end": 743.19, "word": " and", "probability": 0.49169921875}, {"start": 743.19, "end": 743.57, "word": " then", "probability": 0.80810546875}, {"start": 743.57, "end": 744.53, "word": " return", "probability": 0.85498046875}, {"start": 744.53, "end": 746.45, "word": " instance,", "probability": 0.95361328125}, {"start": 746.61, "end": 746.71, "word": " we", "probability": 0.53076171875}, {"start": 746.71, "end": 746.71, "word": " are", "probability": 0.4052734375}, {"start": 746.71, "end": 746.93, "word": " done", "probability": 0.8447265625}], "temperature": 1.0}, {"id": 30, "seek": 77496, "start": 749.46, "end": 774.96, "text": " Look at me, Habit Dialogue got innocence, what did I do to get it? Static. What does it mean to be static? It means that you don't need to create an object. Actually, I can't create an object because I'm the constructor of it. Private. Because I made it static because you asked me to without creating an object. Ok, Habit Dialogue, what is the first step you do? Listen, you check the instance. If it's critical, you go and check it and return it.", "tokens": [2053, 412, 385, 11, 14225, 270, 29658, 7213, 658, 35796, 11, 437, 630, 286, 360, 281, 483, 309, 30, 745, 2399, 13, 708, 775, 309, 914, 281, 312, 13437, 30, 467, 1355, 300, 291, 500, 380, 643, 281, 1884, 364, 2657, 13, 5135, 11, 286, 393, 380, 1884, 364, 2657, 570, 286, 478, 264, 47479, 295, 309, 13, 30386, 13, 1436, 286, 1027, 309, 13437, 570, 291, 2351, 385, 281, 1553, 4084, 364, 2657, 13, 3477, 11, 14225, 270, 29658, 7213, 11, 437, 307, 264, 700, 1823, 291, 360, 30, 7501, 11, 291, 1520, 264, 5197, 13, 759, 309, 311, 4924, 11, 291, 352, 293, 1520, 309, 293, 2736, 309, 13], "avg_logprob": -0.5719865837267467, "compression_ratio": 1.7335907335907337, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 749.46, "end": 749.82, "word": " Look", "probability": 0.1390380859375}, {"start": 749.82, "end": 750.08, "word": " at", "probability": 0.420654296875}, {"start": 750.08, "end": 750.22, "word": " me,", "probability": 0.460205078125}, {"start": 750.28, "end": 750.58, "word": " Habit", "probability": 0.54498291015625}, {"start": 750.58, "end": 750.84, "word": " Dialogue", "probability": 0.37640380859375}, {"start": 750.84, "end": 751.02, "word": " got", "probability": 0.1478271484375}, {"start": 751.02, "end": 751.34, "word": " innocence,", "probability": 0.84130859375}, {"start": 751.68, "end": 751.82, "word": " what", "probability": 0.302490234375}, {"start": 751.82, "end": 751.82, "word": " did", "probability": 0.7734375}, {"start": 751.82, "end": 751.88, "word": " I", "probability": 0.955078125}, {"start": 751.88, "end": 752.04, "word": " do", "probability": 0.7177734375}, {"start": 752.04, "end": 752.4, "word": " to", "probability": 0.27734375}, {"start": 752.4, "end": 752.46, "word": " get", "probability": 0.43310546875}, {"start": 752.46, "end": 752.46, "word": " it?", "probability": 0.74365234375}, {"start": 753.92, "end": 754.28, "word": " Static.", "probability": 0.769775390625}, {"start": 754.32, "end": 754.48, "word": " What", "probability": 0.75}, {"start": 754.48, "end": 754.64, "word": " does", "probability": 0.7587890625}, {"start": 754.64, "end": 754.72, "word": " it", "probability": 0.7734375}, {"start": 754.72, "end": 754.72, "word": " mean", "probability": 0.94921875}, {"start": 754.72, "end": 754.86, "word": " to", "probability": 0.63623046875}, {"start": 754.86, "end": 755.22, "word": " be", "probability": 0.76416015625}, {"start": 755.22, "end": 755.56, "word": " static?", "probability": 0.91259765625}, {"start": 756.18, "end": 756.54, "word": " It", "probability": 0.60595703125}, {"start": 756.54, "end": 757.06, "word": " means", "probability": 0.9052734375}, {"start": 757.06, "end": 757.2, "word": " that", "probability": 0.52685546875}, {"start": 757.2, "end": 757.28, "word": " you", "probability": 0.4951171875}, {"start": 757.28, "end": 757.34, "word": " don't", "probability": 0.6546630859375}, {"start": 757.34, "end": 757.74, "word": " need", "probability": 0.623046875}, {"start": 757.74, "end": 757.84, "word": " to", "probability": 0.958984375}, {"start": 757.84, "end": 758.0, "word": " create", "probability": 0.79296875}, {"start": 758.0, "end": 758.14, "word": " an", "probability": 0.50390625}, {"start": 758.14, "end": 758.42, "word": " object.", "probability": 0.98095703125}, {"start": 758.86, "end": 759.22, "word": " Actually,", "probability": 0.265625}, {"start": 759.26, "end": 759.34, "word": " I", "probability": 0.85205078125}, {"start": 759.34, "end": 759.7, "word": " can't", "probability": 0.738037109375}, {"start": 759.7, "end": 759.88, "word": " create", "probability": 0.71728515625}, {"start": 759.88, "end": 759.98, "word": " an", "probability": 0.75927734375}, {"start": 759.98, "end": 760.12, "word": " object", "probability": 0.984375}, {"start": 760.12, "end": 760.3, "word": " because", "probability": 0.54248046875}, {"start": 760.3, "end": 760.52, "word": " I'm", "probability": 0.4443359375}, {"start": 760.52, "end": 760.62, "word": " the", "probability": 0.2427978515625}, {"start": 760.62, "end": 760.8, "word": " constructor", "probability": 0.93505859375}, {"start": 760.8, "end": 760.98, "word": " of", "probability": 0.29345703125}, {"start": 760.98, "end": 761.14, "word": " it.", "probability": 0.90234375}, {"start": 761.26, "end": 761.44, "word": " Private.", "probability": 0.55908203125}, {"start": 762.48, "end": 762.74, "word": " Because", "probability": 0.201904296875}, {"start": 762.74, "end": 762.9, "word": " I", "probability": 0.97119140625}, {"start": 762.9, "end": 763.12, "word": " made", "probability": 0.1749267578125}, {"start": 763.12, "end": 763.24, "word": " it", "probability": 0.8681640625}, {"start": 763.24, "end": 763.4, "word": " static", "probability": 0.93505859375}, {"start": 763.4, "end": 763.56, "word": " because", "probability": 0.403076171875}, {"start": 763.56, "end": 763.82, "word": " you", "probability": 0.410400390625}, {"start": 763.82, "end": 763.92, "word": " asked", "probability": 0.250732421875}, {"start": 763.92, "end": 764.0, "word": " me", "probability": 0.78662109375}, {"start": 764.0, "end": 764.1, "word": " to", "probability": 0.71875}, {"start": 764.1, "end": 764.26, "word": " without", "probability": 0.426025390625}, {"start": 764.26, "end": 764.62, "word": " creating", "probability": 0.80322265625}, {"start": 764.62, "end": 765.4, "word": " an", "probability": 0.72265625}, {"start": 765.4, "end": 765.62, "word": " object.", "probability": 0.98095703125}, {"start": 766.02, "end": 766.22, "word": " Ok,", "probability": 0.2337646484375}, {"start": 766.32, "end": 766.58, "word": " Habit", "probability": 0.78759765625}, {"start": 766.58, "end": 766.82, "word": " Dialogue,", "probability": 0.950439453125}, {"start": 766.84, "end": 766.98, "word": " what", "probability": 0.818359375}, {"start": 766.98, "end": 766.98, "word": " is", "probability": 0.58642578125}, {"start": 766.98, "end": 767.04, "word": " the", "probability": 0.81201171875}, {"start": 767.04, "end": 767.04, "word": " first", "probability": 0.8828125}, {"start": 767.04, "end": 767.26, "word": " step", "probability": 0.82958984375}, {"start": 767.26, "end": 767.4, "word": " you", "probability": 0.461669921875}, {"start": 767.4, "end": 767.58, "word": " do?", "probability": 0.638671875}, {"start": 769.4, "end": 769.76, "word": " Listen,", "probability": 0.1268310546875}, {"start": 769.86, "end": 769.96, "word": " you", "probability": 0.79296875}, {"start": 769.96, "end": 770.14, "word": " check", "probability": 0.646484375}, {"start": 770.14, "end": 770.28, "word": " the", "probability": 0.61572265625}, {"start": 770.28, "end": 770.56, "word": " instance.", "probability": 0.9169921875}, {"start": 770.72, "end": 771.0, "word": " If", "probability": 0.75927734375}, {"start": 771.0, "end": 771.66, "word": " it's", "probability": 0.6102294921875}, {"start": 771.66, "end": 772.0, "word": " critical,", "probability": 0.2166748046875}, {"start": 773.06, "end": 773.24, "word": " you", "probability": 0.876953125}, {"start": 773.24, "end": 773.34, "word": " go", "probability": 0.269287109375}, {"start": 773.34, "end": 773.54, "word": " and", "probability": 0.376220703125}, {"start": 773.54, "end": 773.72, "word": " check", "probability": 0.249267578125}, {"start": 773.72, "end": 774.08, "word": " it", "probability": 0.50439453125}, {"start": 774.08, "end": 774.42, "word": " and", "probability": 0.509765625}, {"start": 774.42, "end": 774.78, "word": " return", "probability": 0.1903076171875}, {"start": 774.78, "end": 774.96, "word": " it.", "probability": 0.50927734375}], "temperature": 1.0}, {"id": 31, "seek": 80282, "start": 778.38, "end": 802.82, "text": " Ok, the first time you download an instance, get instance, the first time you say the value of the instance, it will create it. But if you download it again, get instance, it will check if it is null, not null, so it goes back to itself. So this way, I promise that this instance will be created from only one object. From the thing only. So is it the value you say or not?", "tokens": [3477, 11, 264, 700, 565, 291, 5484, 364, 5197, 11, 483, 5197, 11, 264, 700, 565, 291, 584, 264, 2158, 295, 264, 5197, 11, 309, 486, 1884, 309, 13, 583, 498, 291, 5484, 309, 797, 11, 483, 5197, 11, 309, 486, 1520, 498, 309, 307, 18184, 11, 406, 18184, 11, 370, 309, 1709, 646, 281, 2564, 13, 407, 341, 636, 11, 286, 6228, 300, 341, 5197, 486, 312, 2942, 490, 787, 472, 2657, 13, 3358, 264, 551, 787, 13, 407, 307, 309, 264, 2158, 291, 584, 420, 406, 30], "avg_logprob": -0.5631944722599453, "compression_ratio": 1.8606965174129353, "no_speech_prob": 2.384185791015625e-06, "words": [{"start": 778.3799999999999, "end": 778.8199999999999, "word": " Ok,", "probability": 0.1973876953125}, {"start": 778.8199999999999, "end": 779.26, "word": " the", "probability": 0.1876220703125}, {"start": 779.26, "end": 779.48, "word": " first", "probability": 0.8818359375}, {"start": 779.48, "end": 779.72, "word": " time", "probability": 0.87646484375}, {"start": 779.72, "end": 779.88, "word": " you", "probability": 0.880859375}, {"start": 779.88, "end": 780.08, "word": " download", "probability": 0.302734375}, {"start": 780.08, "end": 780.24, "word": " an", "probability": 0.62548828125}, {"start": 780.24, "end": 780.68, "word": " instance,", "probability": 0.97216796875}, {"start": 780.94, "end": 781.96, "word": " get", "probability": 0.4677734375}, {"start": 781.96, "end": 782.42, "word": " instance,", "probability": 0.603515625}, {"start": 782.54, "end": 782.76, "word": " the", "probability": 0.3740234375}, {"start": 782.76, "end": 782.78, "word": " first", "probability": 0.74365234375}, {"start": 782.78, "end": 783.18, "word": " time", "probability": 0.8701171875}, {"start": 783.18, "end": 783.74, "word": " you", "probability": 0.4765625}, {"start": 783.74, "end": 783.86, "word": " say", "probability": 0.26611328125}, {"start": 783.86, "end": 783.96, "word": " the", "probability": 0.465087890625}, {"start": 783.96, "end": 784.06, "word": " value", "probability": 0.88427734375}, {"start": 784.06, "end": 784.14, "word": " of", "probability": 0.90625}, {"start": 784.14, "end": 784.22, "word": " the", "probability": 0.55712890625}, {"start": 784.22, "end": 784.5, "word": " instance,", "probability": 0.958984375}, {"start": 784.6, "end": 784.7, "word": " it", "probability": 0.591796875}, {"start": 784.7, "end": 784.78, "word": " will", "probability": 0.37890625}, {"start": 784.78, "end": 784.96, "word": " create", "probability": 0.159912109375}, {"start": 784.96, "end": 785.16, "word": " it.", "probability": 0.65283203125}, {"start": 785.52, "end": 785.72, "word": " But", "probability": 0.210205078125}, {"start": 785.72, "end": 785.84, "word": " if", "probability": 0.6513671875}, {"start": 785.84, "end": 785.86, "word": " you", "probability": 0.7646484375}, {"start": 785.86, "end": 786.1, "word": " download", "probability": 0.74609375}, {"start": 786.1, "end": 786.22, "word": " it", "probability": 0.61279296875}, {"start": 786.22, "end": 786.56, "word": " again,", "probability": 0.92578125}, {"start": 787.48, "end": 787.82, "word": " get", "probability": 0.26416015625}, {"start": 787.82, "end": 788.34, "word": " instance,", "probability": 0.9619140625}, {"start": 788.72, "end": 789.28, "word": " it", "probability": 0.8642578125}, {"start": 789.28, "end": 789.4, "word": " will", "probability": 0.794921875}, {"start": 789.4, "end": 789.62, "word": " check", "probability": 0.80859375}, {"start": 789.62, "end": 789.82, "word": " if", "probability": 0.43115234375}, {"start": 789.82, "end": 789.98, "word": " it", "probability": 0.9072265625}, {"start": 789.98, "end": 789.98, "word": " is", "probability": 0.77587890625}, {"start": 789.98, "end": 790.2, "word": " null,", "probability": 0.923828125}, {"start": 790.46, "end": 790.94, "word": " not", "probability": 0.377197265625}, {"start": 790.94, "end": 791.14, "word": " null,", "probability": 0.97998046875}, {"start": 791.22, "end": 791.3, "word": " so", "probability": 0.458251953125}, {"start": 791.3, "end": 791.48, "word": " it", "probability": 0.8828125}, {"start": 791.48, "end": 791.48, "word": " goes", "probability": 0.279052734375}, {"start": 791.48, "end": 791.72, "word": " back", "probability": 0.30322265625}, {"start": 791.72, "end": 791.88, "word": " to", "probability": 0.407470703125}, {"start": 791.88, "end": 792.18, "word": " itself.", "probability": 0.51220703125}, {"start": 793.12, "end": 793.26, "word": " So", "probability": 0.6826171875}, {"start": 793.26, "end": 793.62, "word": " this", "probability": 0.1973876953125}, {"start": 793.62, "end": 793.62, "word": " way,", "probability": 0.9013671875}, {"start": 793.96, "end": 795.34, "word": " I", "probability": 0.98193359375}, {"start": 795.34, "end": 795.68, "word": " promise", "probability": 0.399658203125}, {"start": 795.68, "end": 796.0, "word": " that", "probability": 0.7021484375}, {"start": 796.0, "end": 796.12, "word": " this", "probability": 0.8408203125}, {"start": 796.12, "end": 796.54, "word": " instance", "probability": 0.978515625}, {"start": 796.54, "end": 797.14, "word": " will", "probability": 0.8154296875}, {"start": 797.14, "end": 797.4, "word": " be", "probability": 0.63330078125}, {"start": 797.4, "end": 797.9, "word": " created", "probability": 0.732421875}, {"start": 797.9, "end": 798.08, "word": " from", "probability": 0.666015625}, {"start": 798.08, "end": 798.2, "word": " only", "probability": 0.33203125}, {"start": 798.2, "end": 798.24, "word": " one", "probability": 0.89111328125}, {"start": 798.24, "end": 798.82, "word": " object.", "probability": 0.97509765625}, {"start": 800.14, "end": 800.48, "word": " From", "probability": 0.1943359375}, {"start": 800.48, "end": 800.62, "word": " the", "probability": 0.3984375}, {"start": 800.62, "end": 800.84, "word": " thing", "probability": 0.3662109375}, {"start": 800.84, "end": 801.12, "word": " only.", "probability": 0.61572265625}, {"start": 801.68, "end": 801.88, "word": " So", "probability": 0.321044921875}, {"start": 801.88, "end": 802.02, "word": " is", "probability": 0.34033203125}, {"start": 802.02, "end": 802.1, "word": " it", "probability": 0.57763671875}, {"start": 802.1, "end": 802.1, "word": " the", "probability": 0.407470703125}, {"start": 802.1, "end": 802.24, "word": " value", "probability": 0.88134765625}, {"start": 802.24, "end": 802.44, "word": " you", "probability": 0.6220703125}, {"start": 802.44, "end": 802.62, "word": " say", "probability": 0.669921875}, {"start": 802.62, "end": 802.78, "word": " or", "probability": 0.6796875}, {"start": 802.78, "end": 802.82, "word": " not?", "probability": 0.90771484375}], "temperature": 1.0}, {"id": 32, "seek": 82920, "start": 804.04, "end": 829.2, "text": "When did I create it? The first time I needed it. So the idea is that I want this form book to allow the user to create only one object and not more than one. The first step I do is to close the constructor and put private. The second step is to create the object that I want to be unique, which is this one. I created an object called form book static and I made it private.", "tokens": [11645, 630, 286, 1884, 309, 30, 440, 700, 565, 286, 2978, 309, 13, 407, 264, 1558, 307, 300, 286, 528, 341, 1254, 1446, 281, 2089, 264, 4195, 281, 1884, 787, 472, 2657, 293, 406, 544, 813, 472, 13, 440, 700, 1823, 286, 360, 307, 281, 1998, 264, 47479, 293, 829, 4551, 13, 440, 1150, 1823, 307, 281, 1884, 264, 2657, 300, 286, 528, 281, 312, 3845, 11, 597, 307, 341, 472, 13, 286, 2942, 364, 2657, 1219, 1254, 1446, 13437, 293, 286, 1027, 309, 4551, 13], "avg_logprob": -0.4119971387687771, "compression_ratio": 1.7605633802816902, "no_speech_prob": 4.0531158447265625e-06, "words": [{"start": 804.04, "end": 804.34, "word": "When", "probability": 0.332763671875}, {"start": 804.34, "end": 804.44, "word": " did", "probability": 0.55224609375}, {"start": 804.44, "end": 804.5, "word": " I", "probability": 0.81982421875}, {"start": 804.5, "end": 804.7, "word": " create", "probability": 0.55224609375}, {"start": 804.7, "end": 804.88, "word": " it?", "probability": 0.8115234375}, {"start": 805.22, "end": 805.4, "word": " The", "probability": 0.2451171875}, {"start": 805.4, "end": 805.58, "word": " first", "probability": 0.85205078125}, {"start": 805.58, "end": 805.88, "word": " time", "probability": 0.880859375}, {"start": 805.88, "end": 806.6, "word": " I", "probability": 0.69873046875}, {"start": 806.6, "end": 806.92, "word": " needed", "probability": 0.282958984375}, {"start": 806.92, "end": 807.2, "word": " it.", "probability": 0.7255859375}, {"start": 807.66, "end": 807.84, "word": " So", "probability": 0.3525390625}, {"start": 807.84, "end": 807.94, "word": " the", "probability": 0.439208984375}, {"start": 807.94, "end": 808.18, "word": " idea", "probability": 0.705078125}, {"start": 808.18, "end": 808.44, "word": " is", "probability": 0.609375}, {"start": 808.44, "end": 808.56, "word": " that", "probability": 0.47998046875}, {"start": 808.56, "end": 808.56, "word": " I", "probability": 0.5693359375}, {"start": 808.56, "end": 809.18, "word": " want", "probability": 0.6279296875}, {"start": 809.18, "end": 809.52, "word": " this", "probability": 0.7138671875}, {"start": 809.52, "end": 809.74, "word": " form", "probability": 0.472412109375}, {"start": 809.74, "end": 810.0, "word": " book", "probability": 0.6552734375}, {"start": 810.0, "end": 810.56, "word": " to", "probability": 0.740234375}, {"start": 810.56, "end": 810.78, "word": " allow", "probability": 0.253662109375}, {"start": 810.78, "end": 810.96, "word": " the", "probability": 0.5703125}, {"start": 810.96, "end": 811.28, "word": " user", "probability": 0.9375}, {"start": 811.28, "end": 811.4, "word": " to", "probability": 0.90869140625}, {"start": 811.4, "end": 811.6, "word": " create", "probability": 0.79248046875}, {"start": 811.6, "end": 811.8, "word": " only", "probability": 0.345703125}, {"start": 811.8, "end": 811.88, "word": " one", "probability": 0.90966796875}, {"start": 811.88, "end": 812.4, "word": " object", "probability": 0.9580078125}, {"start": 812.4, "end": 812.72, "word": " and", "probability": 0.517578125}, {"start": 812.72, "end": 813.02, "word": " not", "probability": 0.45947265625}, {"start": 813.02, "end": 813.78, "word": " more", "probability": 0.53759765625}, {"start": 813.78, "end": 814.04, "word": " than", "probability": 0.896484375}, {"start": 814.04, "end": 814.36, "word": " one.", "probability": 0.9169921875}, {"start": 815.22, "end": 815.74, "word": " The", "probability": 0.7626953125}, {"start": 815.74, "end": 815.88, "word": " first", "probability": 0.892578125}, {"start": 815.88, "end": 816.1, "word": " step", "probability": 0.84814453125}, {"start": 816.1, "end": 816.22, "word": " I", "probability": 0.595703125}, {"start": 816.22, "end": 816.4, "word": " do", "probability": 0.5009765625}, {"start": 816.4, "end": 816.74, "word": " is", "probability": 0.90478515625}, {"start": 816.74, "end": 816.9, "word": " to", "probability": 0.447265625}, {"start": 816.9, "end": 817.18, "word": " close", "probability": 0.81640625}, {"start": 817.18, "end": 817.42, "word": " the", "probability": 0.6533203125}, {"start": 817.42, "end": 817.98, "word": " constructor", "probability": 0.86376953125}, {"start": 817.98, "end": 818.8, "word": " and", "probability": 0.396484375}, {"start": 818.8, "end": 819.0, "word": " put", "probability": 0.4677734375}, {"start": 819.0, "end": 819.3, "word": " private.", "probability": 0.5478515625}, {"start": 820.0, "end": 820.46, "word": " The", "probability": 0.7646484375}, {"start": 820.46, "end": 821.06, "word": " second", "probability": 0.869140625}, {"start": 821.06, "end": 821.06, "word": " step", "probability": 0.91552734375}, {"start": 821.06, "end": 821.54, "word": " is", "probability": 0.68408203125}, {"start": 821.54, "end": 821.56, "word": " to", "probability": 0.7578125}, {"start": 821.56, "end": 821.78, "word": " create", "probability": 0.63623046875}, {"start": 821.78, "end": 821.92, "word": " the", "probability": 0.791015625}, {"start": 821.92, "end": 822.28, "word": " object", "probability": 0.9189453125}, {"start": 822.28, "end": 822.46, "word": " that", "probability": 0.7197265625}, {"start": 822.46, "end": 822.72, "word": " I", "probability": 0.71142578125}, {"start": 822.72, "end": 822.76, "word": " want", "probability": 0.85498046875}, {"start": 822.76, "end": 822.88, "word": " to", "probability": 0.87255859375}, {"start": 822.88, "end": 823.26, "word": " be", "probability": 0.87939453125}, {"start": 823.26, "end": 823.98, "word": " unique,", "probability": 0.65380859375}, {"start": 824.46, "end": 824.62, "word": " which", "probability": 0.72412109375}, {"start": 824.62, "end": 824.8, "word": " is", "probability": 0.939453125}, {"start": 824.8, "end": 825.06, "word": " this", "probability": 0.9130859375}, {"start": 825.06, "end": 825.14, "word": " one.", "probability": 0.453369140625}, {"start": 825.92, "end": 826.16, "word": " I", "probability": 0.98095703125}, {"start": 826.16, "end": 826.34, "word": " created", "probability": 0.475341796875}, {"start": 826.34, "end": 826.46, "word": " an", "probability": 0.84130859375}, {"start": 826.46, "end": 826.58, "word": " object", "probability": 0.9248046875}, {"start": 826.58, "end": 826.9, "word": " called", "probability": 0.6396484375}, {"start": 826.9, "end": 827.18, "word": " form", "probability": 0.546875}, {"start": 827.18, "end": 827.5, "word": " book", "probability": 0.7470703125}, {"start": 827.5, "end": 828.04, "word": " static", "probability": 0.54638671875}, {"start": 828.04, "end": 828.6, "word": " and", "probability": 0.802734375}, {"start": 828.6, "end": 828.66, "word": " I", "probability": 0.476806640625}, {"start": 828.66, "end": 828.82, "word": " made", "probability": 0.59765625}, {"start": 828.82, "end": 828.92, "word": " it", "probability": 0.9052734375}, {"start": 828.92, "end": 829.2, "word": " private.", "probability": 0.892578125}], "temperature": 1.0}, {"id": 33, "seek": 85193, "start": 832.03, "end": 851.93, "text": " If you put it in public, it will not be asked about it publicly. If you put it in an instance, it will not be asked about it publicly. If you put it in an instance, it will not be asked about it publicly. If you put it in an instance, it will not be asked about it publicly. If you put it in an instance, it will not be asked about it publicly. If you put it in an instance, it will not be asked about it publicly. If you put it in an instance, it will not be asked about it publicly. If you put it in an instance, it will not be asked about it publicly. If you put it in an instance, it will not be asked about it publicly. If you put it in an instance, it will not be asked about it publicly. If you put it in an instance, it will not be asked about it publicly. If you put it in an instance, it will not be asked about it publicly. If you put it in an instance, it will not be asked about it publicly. If you put it", "tokens": [759, 291, 829, 309, 294, 1908, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309, 294, 364, 5197, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309, 294, 364, 5197, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309, 294, 364, 5197, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309, 294, 364, 5197, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309, 294, 364, 5197, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309, 294, 364, 5197, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309, 294, 364, 5197, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309, 294, 364, 5197, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309, 294, 364, 5197, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309, 294, 364, 5197, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309, 294, 364, 5197, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309, 294, 364, 5197, 11, 309, 486, 406, 312, 2351, 466, 309, 14843, 13, 759, 291, 829, 309], "avg_logprob": -0.2155555491977268, "compression_ratio": 11.207317073170731, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 832.0300000000001, "end": 832.4300000000001, "word": " If", "probability": 0.1146240234375}, {"start": 832.4300000000001, "end": 832.83, "word": " you", "probability": 0.57861328125}, {"start": 832.83, "end": 833.09, "word": " put", "probability": 0.295166015625}, {"start": 833.09, "end": 833.21, "word": " it", "probability": 0.383544921875}, {"start": 833.21, "end": 833.27, "word": " in", "probability": 0.235107421875}, {"start": 833.27, "end": 833.51, "word": " public,", "probability": 0.63818359375}, {"start": 833.59, "end": 833.65, "word": " it", "probability": 0.382080078125}, {"start": 833.65, "end": 833.71, "word": " will", "probability": 0.2509765625}, {"start": 833.71, "end": 833.77, "word": " not", "probability": 0.6416015625}, {"start": 833.77, "end": 834.01, "word": " be", "probability": 0.473388671875}, {"start": 834.01, "end": 834.21, "word": " asked", "probability": 0.1231689453125}, {"start": 834.21, "end": 834.43, "word": " about", "probability": 0.255126953125}, {"start": 834.43, "end": 834.75, "word": " it", "probability": 0.2100830078125}, {"start": 834.75, "end": 834.75, "word": " publicly.", "probability": 0.277099609375}, {"start": 836.33, "end": 836.73, "word": " If", "probability": 0.2744140625}, {"start": 836.73, "end": 837.39, "word": " you", "probability": 0.91845703125}, {"start": 837.39, "end": 837.75, "word": " put", "probability": 0.330078125}, {"start": 837.75, "end": 837.81, "word": " it", "probability": 0.5517578125}, {"start": 837.81, "end": 837.87, "word": " in", "probability": 0.7568359375}, {"start": 837.87, "end": 838.25, "word": " an", "probability": 0.26904296875}, {"start": 838.25, "end": 838.25, "word": " instance,", "probability": 0.97607421875}, {"start": 838.29, "end": 838.43, "word": " it", "probability": 0.21240234375}, {"start": 838.43, "end": 838.43, "word": " will", "probability": 0.66552734375}, {"start": 838.43, "end": 838.47, "word": " not", "probability": 0.59765625}, {"start": 838.47, "end": 838.47, "word": " be", "probability": 0.71826171875}, {"start": 838.47, "end": 838.63, "word": " asked", "probability": 0.3173828125}, {"start": 838.63, "end": 838.83, "word": " about", "probability": 0.65234375}, {"start": 838.83, "end": 840.21, "word": " it", "probability": 0.8310546875}, {"start": 840.21, "end": 840.27, "word": " publicly.", "probability": 0.6328125}, {"start": 840.27, "end": 840.45, "word": " If", "probability": 0.1988525390625}, {"start": 840.45, "end": 843.17, "word": " you", "probability": 0.87646484375}, {"start": 843.17, "end": 843.23, "word": " put", "probability": 0.66748046875}, {"start": 843.23, "end": 843.23, "word": " it", "probability": 0.8408203125}, {"start": 843.23, "end": 843.75, "word": " in", "probability": 0.90087890625}, {"start": 843.75, "end": 843.85, "word": " an", "probability": 0.316162109375}, {"start": 843.85, "end": 844.87, "word": " instance,", "probability": 0.9892578125}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.92333984375}, {"start": 844.87, "end": 844.87, "word": " will", "probability": 0.87646484375}, {"start": 844.87, "end": 844.87, "word": " not", "probability": 0.943359375}, {"start": 844.87, "end": 844.87, "word": " be", "probability": 0.9619140625}, {"start": 844.87, "end": 844.87, "word": " asked", "probability": 0.89306640625}, {"start": 844.87, "end": 844.87, "word": " about", "probability": 0.9140625}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.94677734375}, {"start": 844.87, "end": 844.87, "word": " publicly.", "probability": 0.97265625}, {"start": 844.87, "end": 844.87, "word": " If", "probability": 0.43505859375}, {"start": 844.87, "end": 844.87, "word": " you", "probability": 0.9345703125}, {"start": 844.87, "end": 844.87, "word": " put", "probability": 0.7138671875}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.912109375}, {"start": 844.87, "end": 844.87, "word": " in", "probability": 0.93896484375}, {"start": 844.87, "end": 844.87, "word": " an", "probability": 0.837890625}, {"start": 844.87, "end": 844.87, "word": " instance,", "probability": 0.9873046875}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.9521484375}, {"start": 844.87, "end": 844.87, "word": " will", "probability": 0.87353515625}, {"start": 844.87, "end": 844.87, "word": " not", "probability": 0.94970703125}, {"start": 844.87, "end": 844.87, "word": " be", "probability": 0.96337890625}, {"start": 844.87, "end": 844.87, "word": " asked", "probability": 0.8974609375}, {"start": 844.87, "end": 844.87, "word": " about", "probability": 0.91748046875}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.95751953125}, {"start": 844.87, "end": 844.87, "word": " publicly.", "probability": 0.9755859375}, {"start": 844.87, "end": 844.87, "word": " If", "probability": 0.462158203125}, {"start": 844.87, "end": 844.87, "word": " you", "probability": 0.93505859375}, {"start": 844.87, "end": 844.87, "word": " put", "probability": 0.68994140625}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.916015625}, {"start": 844.87, "end": 844.87, "word": " in", "probability": 0.94140625}, {"start": 844.87, "end": 844.87, "word": " an", "probability": 0.88818359375}, {"start": 844.87, "end": 844.87, "word": " instance,", "probability": 0.98828125}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.95166015625}, {"start": 844.87, "end": 844.87, "word": " will", "probability": 0.8740234375}, {"start": 844.87, "end": 844.87, "word": " not", "probability": 0.9521484375}, {"start": 844.87, "end": 844.87, "word": " be", "probability": 0.96484375}, {"start": 844.87, "end": 844.87, "word": " asked", "probability": 0.89794921875}, {"start": 844.87, "end": 844.87, "word": " about", "probability": 0.9130859375}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.958984375}, {"start": 844.87, "end": 844.87, "word": " publicly.", "probability": 0.97705078125}, {"start": 844.87, "end": 844.87, "word": " If", "probability": 0.56005859375}, {"start": 844.87, "end": 844.87, "word": " you", "probability": 0.9453125}, {"start": 844.87, "end": 844.87, "word": " put", "probability": 0.74267578125}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.927734375}, {"start": 844.87, "end": 844.87, "word": " in", "probability": 0.94873046875}, {"start": 844.87, "end": 844.87, "word": " an", "probability": 0.92822265625}, {"start": 844.87, "end": 844.87, "word": " instance,", "probability": 0.98681640625}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.953125}, {"start": 844.87, "end": 844.87, "word": " will", "probability": 0.8740234375}, {"start": 844.87, "end": 844.87, "word": " not", "probability": 0.95361328125}, {"start": 844.87, "end": 844.87, "word": " be", "probability": 0.96533203125}, {"start": 844.87, "end": 844.87, "word": " asked", "probability": 0.89794921875}, {"start": 844.87, "end": 844.87, "word": " about", "probability": 0.912109375}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.95849609375}, {"start": 844.87, "end": 844.87, "word": " publicly.", "probability": 0.97900390625}, {"start": 844.87, "end": 844.87, "word": " If", "probability": 0.66064453125}, {"start": 844.87, "end": 844.87, "word": " you", "probability": 0.9560546875}, {"start": 844.87, "end": 844.87, "word": " put", "probability": 0.81787109375}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.939453125}, {"start": 844.87, "end": 844.87, "word": " in", "probability": 0.95361328125}, {"start": 844.87, "end": 844.87, "word": " an", "probability": 0.947265625}, {"start": 844.87, "end": 844.87, "word": " instance,", "probability": 0.98583984375}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.95361328125}, {"start": 844.87, "end": 844.87, "word": " will", "probability": 0.87451171875}, {"start": 844.87, "end": 844.87, "word": " not", "probability": 0.95458984375}, {"start": 844.87, "end": 844.87, "word": " be", "probability": 0.96533203125}, {"start": 844.87, "end": 844.87, "word": " asked", "probability": 0.89697265625}, {"start": 844.87, "end": 844.87, "word": " about", "probability": 0.912109375}, {"start": 844.87, "end": 844.87, "word": " it", "probability": 0.958984375}, {"start": 844.87, "end": 844.87, "word": " publicly.", "probability": 0.98095703125}, {"start": 845.47, "end": 845.47, "word": " If", "probability": 0.72314453125}, {"start": 845.47, "end": 845.55, "word": " you", "probability": 0.9619140625}, {"start": 845.55, "end": 845.55, "word": " put", "probability": 0.86669921875}, {"start": 845.55, "end": 845.55, "word": " it", "probability": 0.94482421875}, {"start": 845.55, "end": 845.55, "word": " in", "probability": 0.9541015625}, {"start": 845.55, "end": 845.55, "word": " an", "probability": 0.95458984375}, {"start": 845.55, "end": 845.57, "word": " instance,", "probability": 0.98486328125}, {"start": 845.57, "end": 845.57, "word": " it", "probability": 0.95361328125}, {"start": 845.57, "end": 845.57, "word": " will", "probability": 0.87451171875}, {"start": 845.57, "end": 845.57, "word": " not", "probability": 0.9560546875}, {"start": 845.57, "end": 845.57, "word": " be", "probability": 0.96630859375}, {"start": 845.57, "end": 845.57, "word": " asked", "probability": 0.89794921875}, {"start": 845.57, "end": 845.57, "word": " about", "probability": 0.91064453125}, {"start": 845.57, "end": 845.57, "word": " it", "probability": 0.95751953125}, {"start": 845.57, "end": 845.57, "word": " publicly.", "probability": 0.98193359375}, {"start": 845.57, "end": 845.57, "word": " If", "probability": 0.75390625}, {"start": 845.57, "end": 845.57, "word": " you", "probability": 0.96435546875}, {"start": 845.57, "end": 845.57, "word": " put", "probability": 0.890625}, {"start": 845.57, "end": 845.57, "word": " it", "probability": 0.94921875}, {"start": 845.57, "end": 845.57, "word": " in", "probability": 0.955078125}, {"start": 845.57, "end": 845.57, "word": " an", "probability": 0.958984375}, {"start": 845.57, "end": 845.57, "word": " instance,", "probability": 0.984375}, {"start": 845.57, "end": 845.57, "word": " it", "probability": 0.955078125}, {"start": 845.57, "end": 845.57, "word": " will", "probability": 0.87451171875}, {"start": 845.57, "end": 845.57, "word": " not", "probability": 0.95654296875}, {"start": 845.57, "end": 845.57, "word": " be", "probability": 0.96728515625}, {"start": 845.57, "end": 845.57, "word": " asked", "probability": 0.8994140625}, {"start": 845.57, "end": 845.57, "word": " about", "probability": 0.9130859375}, {"start": 845.57, "end": 845.57, "word": " it", "probability": 0.95751953125}, {"start": 845.57, "end": 845.57, "word": " publicly.", "probability": 0.982421875}, {"start": 845.57, "end": 845.57, "word": " If", "probability": 0.76611328125}, {"start": 845.57, "end": 845.57, "word": " you", "probability": 0.96630859375}, {"start": 845.57, "end": 845.57, "word": " put", "probability": 0.904296875}, {"start": 845.57, "end": 845.57, "word": " it", "probability": 0.9501953125}, {"start": 845.57, "end": 845.57, "word": " in", "probability": 0.9541015625}, {"start": 845.57, "end": 845.57, "word": " an", "probability": 0.96044921875}, {"start": 845.57, "end": 845.57, "word": " instance,", "probability": 0.98388671875}, {"start": 845.57, "end": 845.57, "word": " it", "probability": 0.955078125}, {"start": 845.57, "end": 845.57, "word": " will", "probability": 0.87451171875}, {"start": 845.57, "end": 845.57, "word": " not", "probability": 0.95751953125}, {"start": 845.57, "end": 845.57, "word": " be", "probability": 0.96826171875}, {"start": 845.57, "end": 845.61, "word": " asked", "probability": 0.90283203125}, {"start": 845.61, "end": 845.61, "word": " about", "probability": 0.91064453125}, {"start": 845.61, "end": 845.61, "word": " it", "probability": 0.958984375}, {"start": 845.61, "end": 845.61, "word": " publicly.", "probability": 0.98193359375}, {"start": 845.65, "end": 845.81, "word": " If", "probability": 0.7744140625}, {"start": 845.81, "end": 845.95, "word": " you", "probability": 0.96728515625}, {"start": 845.95, "end": 845.95, "word": " put", "probability": 0.9130859375}, {"start": 845.95, "end": 846.11, "word": " it", "probability": 0.9501953125}, {"start": 846.11, "end": 846.43, "word": " in", "probability": 0.95556640625}, {"start": 846.43, "end": 846.43, "word": " an", "probability": 0.9619140625}, {"start": 846.43, "end": 846.49, "word": " instance,", "probability": 0.9833984375}, {"start": 846.49, "end": 846.49, "word": " it", "probability": 0.95654296875}, {"start": 846.49, "end": 846.49, "word": " will", "probability": 0.873046875}, {"start": 846.49, "end": 846.49, "word": " not", "probability": 0.95654296875}, {"start": 846.49, "end": 846.49, "word": " be", "probability": 0.96923828125}, {"start": 846.49, "end": 846.49, "word": " asked", "probability": 0.90576171875}, {"start": 846.49, "end": 846.49, "word": " about", "probability": 0.91455078125}, {"start": 846.49, "end": 846.49, "word": " it", "probability": 0.958984375}, {"start": 846.49, "end": 846.49, "word": " publicly.", "probability": 0.98095703125}, {"start": 847.45, "end": 847.85, "word": " If", "probability": 0.7822265625}, {"start": 847.85, "end": 847.89, "word": " you", "probability": 0.966796875}, {"start": 847.89, "end": 848.09, "word": " put", "probability": 0.91845703125}, {"start": 848.09, "end": 848.09, "word": " it", "probability": 0.95166015625}, {"start": 848.09, "end": 848.15, "word": " in", "probability": 0.95458984375}, {"start": 848.15, "end": 848.15, "word": " an", "probability": 0.962890625}, {"start": 848.15, "end": 848.15, "word": " instance,", "probability": 0.98291015625}, {"start": 848.41, "end": 848.41, "word": " it", "probability": 0.95654296875}, {"start": 848.41, "end": 848.41, "word": " will", "probability": 0.87451171875}, {"start": 848.41, "end": 848.41, "word": " not", "probability": 0.95751953125}, {"start": 848.41, "end": 848.41, "word": " be", "probability": 0.970703125}, {"start": 848.41, "end": 848.41, "word": " asked", "probability": 0.91064453125}, {"start": 848.41, "end": 848.45, "word": " about", "probability": 0.91455078125}, {"start": 848.45, "end": 849.15, "word": " it", "probability": 0.9599609375}, {"start": 849.15, "end": 849.61, "word": " publicly.", "probability": 0.97802734375}, {"start": 849.61, "end": 849.97, "word": " If", "probability": 0.79150390625}, {"start": 849.97, "end": 850.19, "word": " you", "probability": 0.96826171875}, {"start": 850.19, "end": 850.23, "word": " put", "probability": 0.92333984375}, {"start": 850.23, "end": 850.23, "word": " it", "probability": 0.9521484375}, {"start": 850.23, "end": 850.43, "word": " in", "probability": 0.95458984375}, {"start": 850.43, "end": 850.43, "word": " an", "probability": 0.962890625}, {"start": 850.43, "end": 850.65, "word": " instance,", "probability": 0.98291015625}, {"start": 850.85, "end": 850.85, "word": " it", "probability": 0.95654296875}, {"start": 850.85, "end": 850.95, "word": " will", "probability": 0.873046875}, {"start": 850.95, "end": 851.09, "word": " not", "probability": 0.95751953125}, {"start": 851.09, "end": 851.09, "word": " be", "probability": 0.970703125}, {"start": 851.09, "end": 851.17, "word": " asked", "probability": 0.916015625}, {"start": 851.17, "end": 851.33, "word": " about", "probability": 0.9169921875}, {"start": 851.33, "end": 851.33, "word": " it", "probability": 0.9599609375}, {"start": 851.33, "end": 851.71, "word": " publicly.", "probability": 0.97509765625}, {"start": 851.93, "end": 851.93, "word": " If", "probability": 0.79638671875}, {"start": 851.93, "end": 851.93, "word": " you", "probability": 0.96826171875}, {"start": 851.93, "end": 851.93, "word": " put", "probability": 0.92578125}, {"start": 851.93, "end": 851.93, "word": " it", "probability": 0.95166015625}], "temperature": 1.0}, {"id": 34, "seek": 88221, "start": 852.89, "end": 882.21, "text": " The whole idea is in this diagram This diagram is the first time you will find it If you find the instance null, it will be the instance null, you will create it And you will return it Second time, third time, fourth time, you will return the same instance I create an object 1 from the phone book Because we finished the application, how to use it Go now to the null method Because of course it will create an error, why? Yes, it stopped with un-deconstruct What is the alternative? Write phone book", "tokens": [440, 1379, 1558, 307, 294, 341, 10686, 639, 10686, 307, 264, 700, 565, 291, 486, 915, 309, 759, 291, 915, 264, 5197, 18184, 11, 309, 486, 312, 264, 5197, 18184, 11, 291, 486, 1884, 309, 400, 291, 486, 2736, 309, 5736, 565, 11, 2636, 565, 11, 6409, 565, 11, 291, 486, 2736, 264, 912, 5197, 286, 1884, 364, 2657, 502, 490, 264, 2593, 1446, 1436, 321, 4335, 264, 3861, 11, 577, 281, 764, 309, 1037, 586, 281, 264, 18184, 3170, 1436, 295, 1164, 309, 486, 1884, 364, 6713, 11, 983, 30, 1079, 11, 309, 5936, 365, 517, 12, 1479, 25279, 1757, 708, 307, 264, 8535, 30, 23499, 2593, 1446], "avg_logprob": -0.6823863679712469, "compression_ratio": 1.8764044943820224, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 852.89, "end": 853.13, "word": " The", "probability": 0.298828125}, {"start": 853.13, "end": 853.35, "word": " whole", "probability": 0.42431640625}, {"start": 853.35, "end": 853.37, "word": " idea", "probability": 0.73388671875}, {"start": 853.37, "end": 853.67, "word": " is", "probability": 0.68017578125}, {"start": 853.67, "end": 853.79, "word": " in", "probability": 0.65380859375}, {"start": 853.79, "end": 853.85, "word": " this", "probability": 0.69091796875}, {"start": 853.85, "end": 854.05, "word": " diagram", "probability": 0.060028076171875}, {"start": 854.05, "end": 854.89, "word": " This", "probability": 0.37158203125}, {"start": 854.89, "end": 855.23, "word": " diagram", "probability": 0.79052734375}, {"start": 855.23, "end": 855.35, "word": " is", "probability": 0.2012939453125}, {"start": 855.35, "end": 855.35, "word": " the", "probability": 0.474365234375}, {"start": 855.35, "end": 855.47, "word": " first", "probability": 0.87255859375}, {"start": 855.47, "end": 855.69, "word": " time", "probability": 0.76220703125}, {"start": 855.69, "end": 855.79, "word": " you", "probability": 0.450439453125}, {"start": 855.79, "end": 855.83, "word": " will", "probability": 0.19140625}, {"start": 855.83, "end": 856.01, "word": " find", "probability": 0.20263671875}, {"start": 856.01, "end": 856.13, "word": " it", "probability": 0.732421875}, {"start": 856.13, "end": 856.27, "word": " If", "probability": 0.55810546875}, {"start": 856.27, "end": 856.39, "word": " you", "probability": 0.67919921875}, {"start": 856.39, "end": 856.49, "word": " find", "probability": 0.6845703125}, {"start": 856.49, "end": 856.65, "word": " the", "probability": 0.63818359375}, {"start": 856.65, "end": 856.91, "word": " instance", "probability": 0.230224609375}, {"start": 856.91, "end": 857.19, "word": " null,", "probability": 0.97607421875}, {"start": 857.25, "end": 857.39, "word": " it", "probability": 0.493896484375}, {"start": 857.39, "end": 857.41, "word": " will", "probability": 0.64990234375}, {"start": 857.41, "end": 857.55, "word": " be", "probability": 0.751953125}, {"start": 857.55, "end": 857.65, "word": " the", "probability": 0.59423828125}, {"start": 857.65, "end": 858.05, "word": " instance", "probability": 0.52734375}, {"start": 858.05, "end": 858.35, "word": " null,", "probability": 0.76171875}, {"start": 858.35, "end": 858.55, "word": " you", "probability": 0.303466796875}, {"start": 858.55, "end": 858.59, "word": " will", "probability": 0.51416015625}, {"start": 858.59, "end": 858.77, "word": " create", "probability": 0.349853515625}, {"start": 858.77, "end": 858.97, "word": " it", "probability": 0.81494140625}, {"start": 858.97, "end": 859.39, "word": " And", "probability": 0.3369140625}, {"start": 859.39, "end": 859.53, "word": " you", "probability": 0.5849609375}, {"start": 859.53, "end": 859.55, "word": " will", "probability": 0.26025390625}, {"start": 859.55, "end": 859.77, "word": " return", "probability": 0.517578125}, {"start": 859.77, "end": 860.01, "word": " it", "probability": 0.89501953125}, {"start": 860.01, "end": 860.65, "word": " Second", "probability": 0.2286376953125}, {"start": 860.65, "end": 860.85, "word": " time,", "probability": 0.5478515625}, {"start": 861.01, "end": 861.23, "word": " third", "probability": 0.8818359375}, {"start": 861.23, "end": 861.45, "word": " time,", "probability": 0.8095703125}, {"start": 861.63, "end": 861.79, "word": " fourth", "probability": 0.8427734375}, {"start": 861.79, "end": 861.95, "word": " time,", "probability": 0.85107421875}, {"start": 861.95, "end": 862.15, "word": " you", "probability": 0.63623046875}, {"start": 862.15, "end": 862.23, "word": " will", "probability": 0.626953125}, {"start": 862.23, "end": 862.57, "word": " return", "probability": 0.5185546875}, {"start": 862.57, "end": 862.71, "word": " the", "probability": 0.36767578125}, {"start": 862.71, "end": 862.89, "word": " same", "probability": 0.66015625}, {"start": 862.89, "end": 863.93, "word": " instance", "probability": 0.93115234375}, {"start": 863.93, "end": 864.37, "word": " I", "probability": 0.190185546875}, {"start": 864.37, "end": 864.73, "word": " create", "probability": 0.1893310546875}, {"start": 864.73, "end": 865.97, "word": " an", "probability": 0.34814453125}, {"start": 865.97, "end": 866.19, "word": " object", "probability": 0.72705078125}, {"start": 866.19, "end": 866.55, "word": " 1", "probability": 0.3017578125}, {"start": 866.55, "end": 866.87, "word": " from", "probability": 0.74951171875}, {"start": 866.87, "end": 867.01, "word": " the", "probability": 0.4248046875}, {"start": 867.01, "end": 867.33, "word": " phone", "probability": 0.92626953125}, {"start": 867.33, "end": 868.37, "word": " book", "probability": 0.70068359375}, {"start": 868.37, "end": 869.91, "word": " Because", "probability": 0.1668701171875}, {"start": 869.91, "end": 870.09, "word": " we", "probability": 0.83544921875}, {"start": 870.09, "end": 870.39, "word": " finished", "probability": 0.318603515625}, {"start": 870.39, "end": 870.85, "word": " the", "probability": 0.2156982421875}, {"start": 870.85, "end": 871.29, "word": " application,", "probability": 0.7294921875}, {"start": 871.43, "end": 871.57, "word": " how", "probability": 0.75146484375}, {"start": 871.57, "end": 871.63, "word": " to", "probability": 0.8037109375}, {"start": 871.63, "end": 871.95, "word": " use", "probability": 0.88671875}, {"start": 871.95, "end": 872.31, "word": " it", "probability": 0.94384765625}, {"start": 872.31, "end": 872.79, "word": " Go", "probability": 0.297607421875}, {"start": 872.79, "end": 873.11, "word": " now", "probability": 0.52294921875}, {"start": 873.11, "end": 874.01, "word": " to", "probability": 0.86767578125}, {"start": 874.01, "end": 874.65, "word": " the", "probability": 0.6591796875}, {"start": 874.65, "end": 874.81, "word": " null", "probability": 0.246337890625}, {"start": 874.81, "end": 875.15, "word": " method", "probability": 0.9482421875}, {"start": 875.15, "end": 875.87, "word": " Because", "probability": 0.7451171875}, {"start": 875.87, "end": 876.09, "word": " of", "probability": 0.317138671875}, {"start": 876.09, "end": 876.09, "word": " course", "probability": 0.9423828125}, {"start": 876.09, "end": 876.23, "word": " it", "probability": 0.60009765625}, {"start": 876.23, "end": 876.29, "word": " will", "probability": 0.428466796875}, {"start": 876.29, "end": 876.43, "word": " create", "probability": 0.34912109375}, {"start": 876.43, "end": 876.57, "word": " an", "probability": 0.65673828125}, {"start": 876.57, "end": 876.75, "word": " error,", "probability": 0.87548828125}, {"start": 876.89, "end": 877.27, "word": " why?", "probability": 0.8740234375}, {"start": 878.25, "end": 878.65, "word": " Yes,", "probability": 0.12548828125}, {"start": 878.79, "end": 879.05, "word": " it", "probability": 0.349609375}, {"start": 879.05, "end": 879.05, "word": " stopped", "probability": 0.57177734375}, {"start": 879.05, "end": 879.25, "word": " with", "probability": 0.1490478515625}, {"start": 879.25, "end": 879.45, "word": " un", "probability": 0.1588134765625}, {"start": 879.45, "end": 879.81, "word": "-deconstruct", "probability": 0.6693115234375}, {"start": 879.81, "end": 880.05, "word": " What", "probability": 0.352294921875}, {"start": 880.05, "end": 880.19, "word": " is", "probability": 0.8076171875}, {"start": 880.19, "end": 880.27, "word": " the", "probability": 0.90185546875}, {"start": 880.27, "end": 880.57, "word": " alternative?", "probability": 0.81103515625}, {"start": 880.99, "end": 881.35, "word": " Write", "probability": 0.255126953125}, {"start": 881.35, "end": 881.89, "word": " phone", "probability": 0.5625}, {"start": 881.89, "end": 882.21, "word": " book", "probability": 0.83056640625}], "temperature": 1.0}, {"id": 35, "seek": 91078, "start": 887.72, "end": 910.78, "text": " .getinstance Okay, it will return me the form book and then I copy it to p.getcountrycode So there is no need to go through this gate, right? If I want to edit this main screen, there is no need at all to go through it Okay, this gate came here, immediately I say formbook.getinstance, I return it", "tokens": [2411, 847, 13911, 719, 1033, 11, 309, 486, 2736, 385, 264, 1254, 1446, 293, 550, 286, 5055, 309, 281, 280, 13, 847, 39337, 22332, 407, 456, 307, 572, 643, 281, 352, 807, 341, 8539, 11, 558, 30, 759, 286, 528, 281, 8129, 341, 2135, 2568, 11, 456, 307, 572, 643, 412, 439, 281, 352, 807, 309, 1033, 11, 341, 8539, 1361, 510, 11, 4258, 286, 584, 1254, 2939, 13, 847, 13911, 719, 11, 286, 2736, 309], "avg_logprob": -0.6797889858097225, "compression_ratio": 1.664804469273743, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 887.72, "end": 888.08, "word": " .getinstance", "probability": 0.7042236328125}, {"start": 888.08, "end": 888.44, "word": " Okay,", "probability": 0.041595458984375}, {"start": 888.5, "end": 888.7, "word": " it", "probability": 0.27880859375}, {"start": 888.7, "end": 888.74, "word": " will", "probability": 0.291748046875}, {"start": 888.74, "end": 888.96, "word": " return", "probability": 0.41162109375}, {"start": 888.96, "end": 889.14, "word": " me", "probability": 0.36572265625}, {"start": 889.14, "end": 889.22, "word": " the", "probability": 0.6904296875}, {"start": 889.22, "end": 889.36, "word": " form", "probability": 0.2548828125}, {"start": 889.36, "end": 889.58, "word": " book", "probability": 0.75341796875}, {"start": 889.58, "end": 889.66, "word": " and", "probability": 0.347900390625}, {"start": 889.66, "end": 889.84, "word": " then", "probability": 0.5556640625}, {"start": 889.84, "end": 889.96, "word": " I", "probability": 0.79443359375}, {"start": 889.96, "end": 890.22, "word": " copy", "probability": 0.146728515625}, {"start": 890.22, "end": 890.42, "word": " it", "probability": 0.29638671875}, {"start": 890.42, "end": 890.56, "word": " to", "probability": 0.137451171875}, {"start": 890.56, "end": 890.86, "word": " p", "probability": 0.1895751953125}, {"start": 890.86, "end": 892.76, "word": ".getcountrycode", "probability": 0.8065185546875}, {"start": 892.76, "end": 894.2, "word": " So", "probability": 0.1397705078125}, {"start": 894.2, "end": 894.38, "word": " there", "probability": 0.435546875}, {"start": 894.38, "end": 894.42, "word": " is", "probability": 0.7529296875}, {"start": 894.42, "end": 894.46, "word": " no", "probability": 0.93408203125}, {"start": 894.46, "end": 894.64, "word": " need", "probability": 0.48828125}, {"start": 894.64, "end": 894.76, "word": " to", "probability": 0.90087890625}, {"start": 894.76, "end": 894.88, "word": " go", "probability": 0.220458984375}, {"start": 894.88, "end": 894.98, "word": " through", "probability": 0.798828125}, {"start": 894.98, "end": 895.16, "word": " this", "probability": 0.273193359375}, {"start": 895.16, "end": 895.36, "word": " gate,", "probability": 0.2396240234375}, {"start": 895.6, "end": 896.82, "word": " right?", "probability": 0.76513671875}, {"start": 897.14, "end": 897.5, "word": " If", "probability": 0.1552734375}, {"start": 897.5, "end": 897.78, "word": " I", "probability": 0.7724609375}, {"start": 897.78, "end": 897.94, "word": " want", "probability": 0.685546875}, {"start": 897.94, "end": 898.04, "word": " to", "probability": 0.96337890625}, {"start": 898.04, "end": 898.24, "word": " edit", "probability": 0.509765625}, {"start": 898.24, "end": 898.88, "word": " this", "probability": 0.81787109375}, {"start": 898.88, "end": 899.04, "word": " main", "probability": 0.919921875}, {"start": 899.04, "end": 899.4, "word": " screen,", "probability": 0.86767578125}, {"start": 900.0, "end": 900.08, "word": " there", "probability": 0.71337890625}, {"start": 900.08, "end": 900.14, "word": " is", "probability": 0.8876953125}, {"start": 900.14, "end": 900.22, "word": " no", "probability": 0.92578125}, {"start": 900.22, "end": 900.38, "word": " need", "probability": 0.86669921875}, {"start": 900.38, "end": 900.5, "word": " at", "probability": 0.10797119140625}, {"start": 900.5, "end": 900.64, "word": " all", "probability": 0.94091796875}, {"start": 900.64, "end": 900.74, "word": " to", "probability": 0.8056640625}, {"start": 900.74, "end": 900.88, "word": " go", "probability": 0.79833984375}, {"start": 900.88, "end": 901.0, "word": " through", "probability": 0.90087890625}, {"start": 901.0, "end": 902.92, "word": " it", "probability": 0.71142578125}, {"start": 902.92, "end": 903.46, "word": " Okay,", "probability": 0.49267578125}, {"start": 903.96, "end": 904.12, "word": " this", "probability": 0.183837890625}, {"start": 904.12, "end": 904.26, "word": " gate", "probability": 0.89453125}, {"start": 904.26, "end": 904.46, "word": " came", "probability": 0.3271484375}, {"start": 904.46, "end": 904.84, "word": " here,", "probability": 0.744140625}, {"start": 905.22, "end": 905.56, "word": " immediately", "probability": 0.274169921875}, {"start": 905.56, "end": 905.74, "word": " I", "probability": 0.8759765625}, {"start": 905.74, "end": 905.92, "word": " say", "probability": 0.424072265625}, {"start": 905.92, "end": 906.6, "word": " formbook", "probability": 0.5692138671875}, {"start": 906.6, "end": 910.14, "word": ".getinstance,", "probability": 0.9267578125}, {"start": 910.2, "end": 910.3, "word": " I", "probability": 0.5869140625}, {"start": 910.3, "end": 910.5, "word": " return", "probability": 0.52294921875}, {"start": 910.5, "end": 910.78, "word": " it", "probability": 0.52978515625}], "temperature": 1.0}, {"id": 36, "seek": 94402, "start": 914.08, "end": 944.02, "text": " phone, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book, book,", "tokens": [2593, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11, 1446, 11], "avg_logprob": -0.08687499682108561, "compression_ratio": 25.884615384615383, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 914.08, "end": 914.44, "word": " phone,", "probability": 0.494873046875}, {"start": 914.54, "end": 914.68, "word": " book,", "probability": 0.888671875}, {"start": 914.78, "end": 914.96, "word": " book,", "probability": 0.06549072265625}, {"start": 916.84, "end": 916.92, "word": " book,", "probability": 0.327880859375}, {"start": 917.86, "end": 918.06, "word": " book,", "probability": 0.469970703125}, {"start": 918.06, "end": 918.26, "word": " book,", "probability": 0.62890625}, {"start": 918.26, "end": 920.88, "word": " book,", "probability": 0.70947265625}, {"start": 920.88, "end": 921.38, "word": " book,", "probability": 0.73388671875}, {"start": 921.38, "end": 921.66, "word": " book,", "probability": 0.77392578125}, {"start": 922.36, "end": 924.58, "word": " book,", "probability": 0.84716796875}, {"start": 924.58, "end": 944.02, "word": " book,", "probability": 0.880859375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.89306640625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.900390625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.904296875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9052734375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9052734375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.90478515625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.90380859375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9013671875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.89892578125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.8974609375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.89404296875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.892578125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.8916015625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.89013671875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.89208984375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.89453125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.89697265625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.8994140625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.90380859375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.90869140625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.91259765625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9169921875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9208984375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.92431640625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.92724609375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9296875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.931640625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93359375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.935546875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93701171875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93798828125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93994140625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93994140625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94091796875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94091796875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94140625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94287109375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94287109375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94287109375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.943359375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94287109375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.943359375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.943359375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94384765625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94384765625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9443359375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94384765625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94384765625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94384765625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.943359375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94384765625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94384765625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94287109375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94384765625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94287109375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94287109375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9423828125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9423828125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9423828125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94189453125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94189453125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94091796875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9404296875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9404296875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.94091796875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.939453125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93994140625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.939453125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93896484375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9384765625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93798828125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93603515625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9365234375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93505859375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9345703125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93359375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93408203125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9326171875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.931640625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.931640625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9306640625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.93017578125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9287109375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.92724609375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.92724609375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.92626953125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.9248046875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.923828125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.92333984375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.92138671875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.92041015625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.91845703125}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.91796875}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.916015625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.91552734375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.91162109375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.91015625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.90771484375}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.90625}, {"start": 944.02, "end": 944.02, "word": " book,", "probability": 0.904296875}], "temperature": 1.0}, {"id": 37, "seek": 95841, "start": 947.43, "end": 958.41, "text": "Also, one of the things that can be included in Singleton is something that we call in projects as logging. What is the meaning of the word log?", "tokens": [9171, 539, 11, 472, 295, 264, 721, 300, 393, 312, 5556, 294, 7474, 14806, 307, 746, 300, 321, 818, 294, 4455, 382, 27991, 13, 708, 307, 264, 3620, 295, 264, 1349, 3565, 30], "avg_logprob": -0.6727941123878255, "compression_ratio": 1.2972972972972974, "no_speech_prob": 0.0, "words": [{"start": 947.43, "end": 947.81, "word": "Also,", "probability": 0.6466064453125}, {"start": 947.95, "end": 947.95, "word": " one", "probability": 0.177490234375}, {"start": 947.95, "end": 948.13, "word": " of", "probability": 0.8916015625}, {"start": 948.13, "end": 948.27, "word": " the", "probability": 0.8515625}, {"start": 948.27, "end": 948.65, "word": " things", "probability": 0.53466796875}, {"start": 948.65, "end": 949.19, "word": " that", "probability": 0.533203125}, {"start": 949.19, "end": 951.05, "word": " can", "probability": 0.1397705078125}, {"start": 951.05, "end": 951.21, "word": " be", "probability": 0.4013671875}, {"start": 951.21, "end": 951.45, "word": " included", "probability": 0.1513671875}, {"start": 951.45, "end": 952.17, "word": " in", "probability": 0.72802734375}, {"start": 952.17, "end": 953.01, "word": " Singleton", "probability": 0.656982421875}, {"start": 953.01, "end": 953.89, "word": " is", "probability": 0.464111328125}, {"start": 953.89, "end": 954.11, "word": " something", "probability": 0.3564453125}, {"start": 954.11, "end": 954.25, "word": " that", "probability": 0.54541015625}, {"start": 954.25, "end": 954.35, "word": " we", "probability": 0.85693359375}, {"start": 954.35, "end": 954.85, "word": " call", "probability": 0.720703125}, {"start": 954.85, "end": 955.33, "word": " in", "probability": 0.5595703125}, {"start": 955.33, "end": 955.73, "word": " projects", "probability": 0.6396484375}, {"start": 955.73, "end": 955.85, "word": " as", "probability": 0.411376953125}, {"start": 955.85, "end": 956.35, "word": " logging.", "probability": 0.50439453125}, {"start": 957.15, "end": 957.63, "word": " What", "probability": 0.8037109375}, {"start": 957.63, "end": 957.73, "word": " is", "probability": 0.69775390625}, {"start": 957.73, "end": 957.77, "word": " the", "probability": 0.65478515625}, {"start": 957.77, "end": 957.77, "word": " meaning", "probability": 0.268798828125}, {"start": 957.77, "end": 957.93, "word": " of", "probability": 0.9580078125}, {"start": 957.93, "end": 957.99, "word": " the", "probability": 0.374755859375}, {"start": 957.99, "end": 958.05, "word": " word", "probability": 0.5966796875}, {"start": 958.05, "end": 958.41, "word": " log?", "probability": 0.50390625}], "temperature": 1.0}, {"id": 38, "seek": 97950, "start": 959.58, "end": 979.5, "text": "It's not a login, it's a recording. In large databases, especially those on the server-side, if there is any error or warning, or for example, the user did not register his or her login or went to the database, all these operations are recorded in a specific record.", "tokens": [3522, 311, 406, 257, 24276, 11, 309, 311, 257, 6613, 13, 682, 2416, 22380, 11, 2318, 729, 322, 264, 7154, 12, 1812, 11, 498, 456, 307, 604, 6713, 420, 9164, 11, 420, 337, 1365, 11, 264, 4195, 630, 406, 7280, 702, 420, 720, 24276, 420, 1437, 281, 264, 8149, 11, 439, 613, 7705, 366, 8287, 294, 257, 2685, 2136, 13], "avg_logprob": -0.7612704839862761, "compression_ratio": 1.5647058823529412, "no_speech_prob": 3.159046173095703e-06, "words": [{"start": 959.58, "end": 959.84, "word": "It's", "probability": 0.38555908203125}, {"start": 959.84, "end": 959.84, "word": " not", "probability": 0.59716796875}, {"start": 959.84, "end": 959.96, "word": " a", "probability": 0.219970703125}, {"start": 959.96, "end": 960.22, "word": " login,", "probability": 0.6201171875}, {"start": 961.02, "end": 962.18, "word": " it's", "probability": 0.801513671875}, {"start": 962.18, "end": 962.24, "word": " a", "probability": 0.65576171875}, {"start": 962.24, "end": 962.56, "word": " recording.", "probability": 0.302490234375}, {"start": 963.58, "end": 964.1, "word": " In", "probability": 0.2066650390625}, {"start": 964.1, "end": 964.28, "word": " large", "probability": 0.27001953125}, {"start": 964.28, "end": 964.78, "word": " databases,", "probability": 0.294921875}, {"start": 965.32, "end": 965.76, "word": " especially", "probability": 0.62890625}, {"start": 965.76, "end": 966.04, "word": " those", "probability": 0.3271484375}, {"start": 966.04, "end": 966.52, "word": " on", "probability": 0.494140625}, {"start": 966.52, "end": 966.66, "word": " the", "probability": 0.61279296875}, {"start": 966.66, "end": 966.92, "word": " server", "probability": 0.89697265625}, {"start": 966.92, "end": 967.36, "word": "-side,", "probability": 0.64306640625}, {"start": 968.18, "end": 968.4, "word": " if", "probability": 0.377685546875}, {"start": 968.4, "end": 969.52, "word": " there", "probability": 0.7216796875}, {"start": 969.52, "end": 969.68, "word": " is", "probability": 0.469482421875}, {"start": 969.68, "end": 969.9, "word": " any", "probability": 0.5146484375}, {"start": 969.9, "end": 970.2, "word": " error", "probability": 0.759765625}, {"start": 970.2, "end": 971.62, "word": " or", "probability": 0.466064453125}, {"start": 971.62, "end": 971.98, "word": " warning,", "probability": 0.450439453125}, {"start": 972.54, "end": 972.82, "word": " or", "probability": 0.68212890625}, {"start": 972.82, "end": 972.92, "word": " for", "probability": 0.22900390625}, {"start": 972.92, "end": 973.08, "word": " example,", "probability": 0.86328125}, {"start": 973.2, "end": 973.28, "word": " the", "probability": 0.315185546875}, {"start": 973.28, "end": 973.54, "word": " user", "probability": 0.70556640625}, {"start": 973.54, "end": 973.8, "word": " did", "probability": 0.09246826171875}, {"start": 973.8, "end": 973.84, "word": " not", "probability": 0.8369140625}, {"start": 973.84, "end": 974.1, "word": " register", "probability": 0.45849609375}, {"start": 974.1, "end": 974.3, "word": " his", "probability": 0.149658203125}, {"start": 974.3, "end": 974.36, "word": " or", "probability": 0.1600341796875}, {"start": 974.36, "end": 974.46, "word": " her", "probability": 0.96484375}, {"start": 974.46, "end": 974.5, "word": " login", "probability": 0.142822265625}, {"start": 974.5, "end": 975.12, "word": " or", "probability": 0.5263671875}, {"start": 975.12, "end": 975.3, "word": " went", "probability": 0.10870361328125}, {"start": 975.3, "end": 975.48, "word": " to", "probability": 0.54833984375}, {"start": 975.48, "end": 975.56, "word": " the", "probability": 0.58349609375}, {"start": 975.56, "end": 976.06, "word": " database,", "probability": 0.90869140625}, {"start": 976.36, "end": 976.62, "word": " all", "probability": 0.71630859375}, {"start": 976.62, "end": 976.7, "word": " these", "probability": 0.5966796875}, {"start": 976.7, "end": 977.04, "word": " operations", "probability": 0.470458984375}, {"start": 977.04, "end": 977.34, "word": " are", "probability": 0.6923828125}, {"start": 977.34, "end": 977.7, "word": " recorded", "probability": 0.7470703125}, {"start": 977.7, "end": 978.84, "word": " in", "probability": 0.642578125}, {"start": 978.84, "end": 978.88, "word": " a", "probability": 0.93310546875}, {"start": 978.88, "end": 979.5, "word": " specific", "probability": 0.393310546875}, {"start": 979.5, "end": 979.5, "word": " record.", "probability": 0.90869140625}], "temperature": 1.0}, {"id": 39, "seek": 100877, "start": 980.59, "end": 1008.77, "text": " with the time it took, with the code that made it work, with the user that made it, so that if there is a problem in the program, we can track this file and see what happened. They use this not for the end user, but for the developer, so that he can track their code. Usually these files or documents are not stored in a database, but stored in files.", "tokens": [365, 264, 565, 309, 1890, 11, 365, 264, 3089, 300, 1027, 309, 589, 11, 365, 264, 4195, 300, 1027, 309, 11, 370, 300, 498, 456, 307, 257, 1154, 294, 264, 1461, 11, 321, 393, 2837, 341, 3991, 293, 536, 437, 2011, 13, 814, 764, 341, 406, 337, 264, 917, 4195, 11, 457, 337, 264, 10754, 11, 370, 300, 415, 393, 2837, 641, 3089, 13, 11419, 613, 7098, 420, 8512, 366, 406, 12187, 294, 257, 8149, 11, 457, 12187, 294, 7098, 13], "avg_logprob": -0.5388719759336332, "compression_ratio": 1.8238341968911918, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 980.59, "end": 981.09, "word": " with", "probability": 0.475341796875}, {"start": 981.09, "end": 981.21, "word": " the", "probability": 0.7431640625}, {"start": 981.21, "end": 981.45, "word": " time", "probability": 0.681640625}, {"start": 981.45, "end": 981.57, "word": " it", "probability": 0.2705078125}, {"start": 981.57, "end": 981.93, "word": " took,", "probability": 0.65869140625}, {"start": 982.69, "end": 982.85, "word": " with", "probability": 0.60302734375}, {"start": 982.85, "end": 983.23, "word": " the", "probability": 0.68212890625}, {"start": 983.23, "end": 983.53, "word": " code", "probability": 0.35009765625}, {"start": 983.53, "end": 983.95, "word": " that", "probability": 0.3330078125}, {"start": 983.95, "end": 984.33, "word": " made", "probability": 0.208251953125}, {"start": 984.33, "end": 984.63, "word": " it", "probability": 0.42919921875}, {"start": 984.63, "end": 984.87, "word": " work,", "probability": 0.59130859375}, {"start": 985.51, "end": 986.67, "word": " with", "probability": 0.69482421875}, {"start": 986.67, "end": 986.81, "word": " the", "probability": 0.794921875}, {"start": 986.81, "end": 987.05, "word": " user", "probability": 0.86083984375}, {"start": 987.05, "end": 987.23, "word": " that", "probability": 0.43408203125}, {"start": 987.23, "end": 987.41, "word": " made", "probability": 0.5068359375}, {"start": 987.41, "end": 987.83, "word": " it,", "probability": 0.923828125}, {"start": 988.11, "end": 988.31, "word": " so", "probability": 0.385986328125}, {"start": 988.31, "end": 988.67, "word": " that", "probability": 0.720703125}, {"start": 988.67, "end": 989.19, "word": " if", "probability": 0.468505859375}, {"start": 989.19, "end": 989.73, "word": " there", "probability": 0.36181640625}, {"start": 989.73, "end": 989.85, "word": " is", "probability": 0.404296875}, {"start": 989.85, "end": 989.95, "word": " a", "probability": 0.759765625}, {"start": 989.95, "end": 990.15, "word": " problem", "probability": 0.7822265625}, {"start": 990.15, "end": 990.27, "word": " in", "probability": 0.525390625}, {"start": 990.27, "end": 990.37, "word": " the", "probability": 0.84716796875}, {"start": 990.37, "end": 990.61, "word": " program,", "probability": 0.52783203125}, {"start": 990.75, "end": 991.21, "word": " we", "probability": 0.56640625}, {"start": 991.21, "end": 991.37, "word": " can", "probability": 0.666015625}, {"start": 991.37, "end": 991.79, "word": " track", "probability": 0.5341796875}, {"start": 991.79, "end": 992.13, "word": " this", "probability": 0.2783203125}, {"start": 992.13, "end": 992.39, "word": " file", "probability": 0.84521484375}, {"start": 992.39, "end": 992.69, "word": " and", "probability": 0.6982421875}, {"start": 992.69, "end": 993.07, "word": " see", "probability": 0.654296875}, {"start": 993.07, "end": 994.03, "word": " what", "probability": 0.92822265625}, {"start": 994.03, "end": 994.37, "word": " happened.", "probability": 0.73046875}, {"start": 995.33, "end": 995.79, "word": " They", "probability": 0.3251953125}, {"start": 995.79, "end": 996.25, "word": " use", "probability": 0.71142578125}, {"start": 996.25, "end": 996.49, "word": " this", "probability": 0.73779296875}, {"start": 996.49, "end": 996.83, "word": " not", "probability": 0.63037109375}, {"start": 996.83, "end": 997.35, "word": " for", "probability": 0.78369140625}, {"start": 997.35, "end": 997.45, "word": " the", "probability": 0.802734375}, {"start": 997.45, "end": 997.63, "word": " end", "probability": 0.859375}, {"start": 997.63, "end": 997.91, "word": " user,", "probability": 0.7626953125}, {"start": 998.47, "end": 999.23, "word": " but", "probability": 0.5693359375}, {"start": 999.23, "end": 999.51, "word": " for", "probability": 0.85888671875}, {"start": 999.51, "end": 999.61, "word": " the", "probability": 0.8798828125}, {"start": 999.61, "end": 1000.01, "word": " developer,", "probability": 0.8388671875}, {"start": 1000.65, "end": 1001.05, "word": " so", "probability": 0.33154296875}, {"start": 1001.05, "end": 1001.23, "word": " that", "probability": 0.70654296875}, {"start": 1001.23, "end": 1001.31, "word": " he", "probability": 0.65771484375}, {"start": 1001.31, "end": 1001.37, "word": " can", "probability": 0.84912109375}, {"start": 1001.37, "end": 1001.85, "word": " track", "probability": 0.85498046875}, {"start": 1001.85, "end": 1002.13, "word": " their", "probability": 0.2880859375}, {"start": 1002.13, "end": 1002.65, "word": " code.", "probability": 0.90576171875}, {"start": 1003.63, "end": 1004.23, "word": " Usually", "probability": 0.63671875}, {"start": 1004.23, "end": 1004.53, "word": " these", "probability": 0.50341796875}, {"start": 1004.53, "end": 1004.91, "word": " files", "probability": 0.78515625}, {"start": 1004.91, "end": 1005.53, "word": " or", "probability": 0.62548828125}, {"start": 1005.53, "end": 1005.91, "word": " documents", "probability": 0.1651611328125}, {"start": 1005.91, "end": 1006.15, "word": " are", "probability": 0.677734375}, {"start": 1006.15, "end": 1006.17, "word": " not", "probability": 0.916015625}, {"start": 1006.17, "end": 1006.49, "word": " stored", "probability": 0.66162109375}, {"start": 1006.49, "end": 1006.91, "word": " in", "probability": 0.662109375}, {"start": 1006.91, "end": 1007.07, "word": " a", "probability": 0.58349609375}, {"start": 1007.07, "end": 1007.41, "word": " database,", "probability": 0.93017578125}, {"start": 1007.53, "end": 1007.69, "word": " but", "probability": 0.568359375}, {"start": 1007.69, "end": 1008.17, "word": " stored", "probability": 0.412841796875}, {"start": 1008.17, "end": 1008.35, "word": " in", "probability": 0.8994140625}, {"start": 1008.35, "end": 1008.77, "word": " files.", "probability": 0.9130859375}], "temperature": 1.0}, {"id": 40, "seek": 103533, "start": 1009.79, "end": 1035.33, "text": " Because if you download it to a database and there is a crash in the database, it will not be able to access the files. But the file can be opened by any tool, Word or Notepad. You can open the file and see all the information. Now this is a simple process of writing on a file. But the idea is that the process of logging does not start from one place. You have a program with twenty, thirty or fifty classes from anywhere.", "tokens": [1436, 498, 291, 5484, 309, 281, 257, 8149, 293, 456, 307, 257, 8252, 294, 264, 8149, 11, 309, 486, 406, 312, 1075, 281, 2105, 264, 7098, 13, 583, 264, 3991, 393, 312, 5625, 538, 604, 2290, 11, 8725, 420, 1726, 595, 345, 13, 509, 393, 1269, 264, 3991, 293, 536, 439, 264, 1589, 13, 823, 341, 307, 257, 2199, 1399, 295, 3579, 322, 257, 3991, 13, 583, 264, 1558, 307, 300, 264, 1399, 295, 27991, 775, 406, 722, 490, 472, 1081, 13, 509, 362, 257, 1461, 365, 7699, 11, 11790, 420, 13442, 5359, 490, 4992, 13], "avg_logprob": -0.558311875333491, "compression_ratio": 1.7206477732793521, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 1009.79, "end": 1010.27, "word": " Because", "probability": 0.431884765625}, {"start": 1010.27, "end": 1010.75, "word": " if", "probability": 0.7548828125}, {"start": 1010.75, "end": 1010.87, "word": " you", "probability": 0.8115234375}, {"start": 1010.87, "end": 1011.05, "word": " download", "probability": 0.038055419921875}, {"start": 1011.05, "end": 1011.17, "word": " it", "probability": 0.4306640625}, {"start": 1011.17, "end": 1011.23, "word": " to", "probability": 0.2362060546875}, {"start": 1011.23, "end": 1011.31, "word": " a", "probability": 0.54248046875}, {"start": 1011.31, "end": 1011.55, "word": " database", "probability": 0.81103515625}, {"start": 1011.55, "end": 1011.65, "word": " and", "probability": 0.65869140625}, {"start": 1011.65, "end": 1011.79, "word": " there", "probability": 0.53857421875}, {"start": 1011.79, "end": 1011.85, "word": " is", "probability": 0.491455078125}, {"start": 1011.85, "end": 1011.95, "word": " a", "probability": 0.912109375}, {"start": 1011.95, "end": 1012.19, "word": " crash", "probability": 0.8720703125}, {"start": 1012.19, "end": 1012.27, "word": " in", "probability": 0.44091796875}, {"start": 1012.27, "end": 1012.37, "word": " the", "probability": 0.56982421875}, {"start": 1012.37, "end": 1012.69, "word": " database,", "probability": 0.923828125}, {"start": 1012.79, "end": 1012.83, "word": " it", "probability": 0.54345703125}, {"start": 1012.83, "end": 1013.09, "word": " will", "probability": 0.335693359375}, {"start": 1013.09, "end": 1013.13, "word": " not", "probability": 0.7314453125}, {"start": 1013.13, "end": 1013.27, "word": " be", "probability": 0.1849365234375}, {"start": 1013.27, "end": 1013.31, "word": " able", "probability": 0.77294921875}, {"start": 1013.31, "end": 1013.41, "word": " to", "probability": 0.970703125}, {"start": 1013.41, "end": 1013.67, "word": " access", "probability": 0.1663818359375}, {"start": 1013.67, "end": 1014.35, "word": " the", "probability": 0.60009765625}, {"start": 1014.35, "end": 1014.61, "word": " files.", "probability": 0.640625}, {"start": 1014.85, "end": 1015.17, "word": " But", "probability": 0.76513671875}, {"start": 1015.17, "end": 1015.33, "word": " the", "probability": 0.381103515625}, {"start": 1015.33, "end": 1015.61, "word": " file", "probability": 0.5029296875}, {"start": 1015.61, "end": 1016.07, "word": " can", "probability": 0.52099609375}, {"start": 1016.07, "end": 1016.11, "word": " be", "probability": 0.90576171875}, {"start": 1016.11, "end": 1016.27, "word": " opened", "probability": 0.58740234375}, {"start": 1016.27, "end": 1016.41, "word": " by", "probability": 0.1485595703125}, {"start": 1016.41, "end": 1016.61, "word": " any", "probability": 0.63134765625}, {"start": 1016.61, "end": 1017.05, "word": " tool,", "probability": 0.875}, {"start": 1017.19, "end": 1018.59, "word": " Word", "probability": 0.48486328125}, {"start": 1018.59, "end": 1018.93, "word": " or", "probability": 0.39892578125}, {"start": 1018.93, "end": 1019.49, "word": " Notepad.", "probability": 0.78759765625}, {"start": 1019.61, "end": 1019.61, "word": " You", "probability": 0.25146484375}, {"start": 1019.61, "end": 1019.65, "word": " can", "probability": 0.409423828125}, {"start": 1019.65, "end": 1019.81, "word": " open", "probability": 0.74267578125}, {"start": 1019.81, "end": 1019.95, "word": " the", "probability": 0.77734375}, {"start": 1019.95, "end": 1020.13, "word": " file", "probability": 0.8583984375}, {"start": 1020.13, "end": 1020.23, "word": " and", "probability": 0.86474609375}, {"start": 1020.23, "end": 1020.51, "word": " see", "probability": 0.58740234375}, {"start": 1020.51, "end": 1020.69, "word": " all", "probability": 0.74853515625}, {"start": 1020.69, "end": 1020.97, "word": " the", "probability": 0.5361328125}, {"start": 1020.97, "end": 1021.27, "word": " information.", "probability": 0.58642578125}, {"start": 1023.87, "end": 1024.35, "word": " Now", "probability": 0.43798828125}, {"start": 1024.35, "end": 1024.79, "word": " this", "probability": 0.5234375}, {"start": 1024.79, "end": 1024.81, "word": " is", "probability": 0.654296875}, {"start": 1024.81, "end": 1024.89, "word": " a", "probability": 0.88720703125}, {"start": 1024.89, "end": 1025.35, "word": " simple", "probability": 0.8974609375}, {"start": 1025.35, "end": 1025.35, "word": " process", "probability": 0.6328125}, {"start": 1025.35, "end": 1025.75, "word": " of", "probability": 0.30224609375}, {"start": 1025.75, "end": 1026.03, "word": " writing", "probability": 0.76171875}, {"start": 1026.03, "end": 1026.35, "word": " on", "probability": 0.380859375}, {"start": 1026.35, "end": 1027.07, "word": " a", "probability": 0.79833984375}, {"start": 1027.07, "end": 1027.25, "word": " file.", "probability": 0.8388671875}, {"start": 1027.41, "end": 1027.51, "word": " But", "probability": 0.79443359375}, {"start": 1027.51, "end": 1027.63, "word": " the", "probability": 0.84521484375}, {"start": 1027.63, "end": 1027.87, "word": " idea", "probability": 0.83544921875}, {"start": 1027.87, "end": 1028.15, "word": " is", "probability": 0.45361328125}, {"start": 1028.15, "end": 1029.05, "word": " that", "probability": 0.83740234375}, {"start": 1029.05, "end": 1029.55, "word": " the", "probability": 0.5283203125}, {"start": 1029.55, "end": 1029.75, "word": " process", "probability": 0.35009765625}, {"start": 1029.75, "end": 1029.89, "word": " of", "probability": 0.955078125}, {"start": 1029.89, "end": 1030.17, "word": " logging", "probability": 0.771484375}, {"start": 1030.17, "end": 1030.45, "word": " does", "probability": 0.291259765625}, {"start": 1030.45, "end": 1030.73, "word": " not", "probability": 0.93798828125}, {"start": 1030.73, "end": 1030.75, "word": " start", "probability": 0.36474609375}, {"start": 1030.75, "end": 1030.83, "word": " from", "probability": 0.74267578125}, {"start": 1030.83, "end": 1031.37, "word": " one", "probability": 0.71875}, {"start": 1031.37, "end": 1031.37, "word": " place.", "probability": 0.75390625}, {"start": 1032.15, "end": 1032.41, "word": " You", "probability": 0.6513671875}, {"start": 1032.41, "end": 1032.65, "word": " have", "probability": 0.81982421875}, {"start": 1032.65, "end": 1032.75, "word": " a", "probability": 0.473876953125}, {"start": 1032.75, "end": 1032.97, "word": " program", "probability": 0.798828125}, {"start": 1032.97, "end": 1033.25, "word": " with", "probability": 0.39697265625}, {"start": 1033.25, "end": 1033.55, "word": " twenty,", "probability": 0.46240234375}, {"start": 1033.69, "end": 1033.93, "word": " thirty", "probability": 0.92724609375}, {"start": 1033.93, "end": 1034.05, "word": " or", "probability": 0.3974609375}, {"start": 1034.05, "end": 1034.35, "word": " fifty", "probability": 0.908203125}, {"start": 1034.35, "end": 1034.75, "word": " classes", "probability": 0.84814453125}, {"start": 1034.75, "end": 1034.93, "word": " from", "probability": 0.365966796875}, {"start": 1034.93, "end": 1035.33, "word": " anywhere.", "probability": 0.52734375}], "temperature": 1.0}, {"id": 41, "seek": 106528, "start": 1036.66, "end": 1065.28, "text": " You need to record messages. For example, this is the login page. This is the search page. This is the insert database page. This is the query page. All of these classes need to add messages to the lib file. So the messages that come here come from where? From more than one place. From twenty or thirty places. Actually, there is a common access between them all on the same file. Because this object that needs to be controlled in the file and needs to be connected to it needs to be one object.", "tokens": [509, 643, 281, 2136, 7897, 13, 1171, 1365, 11, 341, 307, 264, 24276, 3028, 13, 639, 307, 264, 3164, 3028, 13, 639, 307, 264, 8969, 8149, 3028, 13, 639, 307, 264, 14581, 3028, 13, 1057, 295, 613, 5359, 643, 281, 909, 7897, 281, 264, 22854, 3991, 13, 407, 264, 7897, 300, 808, 510, 808, 490, 689, 30, 3358, 544, 813, 472, 1081, 13, 3358, 7699, 420, 11790, 3190, 13, 5135, 11, 456, 307, 257, 2689, 2105, 1296, 552, 439, 322, 264, 912, 3991, 13, 1436, 341, 2657, 300, 2203, 281, 312, 10164, 294, 264, 3991, 293, 2203, 281, 312, 4582, 281, 309, 2203, 281, 312, 472, 2657, 13], "avg_logprob": -0.5097477107966711, "compression_ratio": 1.9377431906614786, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1036.66, "end": 1036.82, "word": " You", "probability": 0.274169921875}, {"start": 1036.82, "end": 1036.98, "word": " need", "probability": 0.361083984375}, {"start": 1036.98, "end": 1037.06, "word": " to", "probability": 0.943359375}, {"start": 1037.06, "end": 1037.34, "word": " record", "probability": 0.28564453125}, {"start": 1037.34, "end": 1037.74, "word": " messages.", "probability": 0.33447265625}, {"start": 1038.34, "end": 1038.5, "word": " For", "probability": 0.294189453125}, {"start": 1038.5, "end": 1038.52, "word": " example,", "probability": 0.87109375}, {"start": 1039.06, "end": 1039.26, "word": " this", "probability": 0.619140625}, {"start": 1039.26, "end": 1039.46, "word": " is", "probability": 0.767578125}, {"start": 1039.46, "end": 1039.64, "word": " the", "probability": 0.6240234375}, {"start": 1039.64, "end": 1040.18, "word": " login", "probability": 0.3447265625}, {"start": 1040.18, "end": 1040.18, "word": " page.", "probability": 0.8818359375}, {"start": 1040.38, "end": 1040.54, "word": " This", "probability": 0.69287109375}, {"start": 1040.54, "end": 1040.84, "word": " is", "probability": 0.890625}, {"start": 1040.84, "end": 1040.9, "word": " the", "probability": 0.8095703125}, {"start": 1040.9, "end": 1041.14, "word": " search", "probability": 0.9365234375}, {"start": 1041.14, "end": 1041.3, "word": " page.", "probability": 0.8564453125}, {"start": 1041.58, "end": 1041.86, "word": " This", "probability": 0.83837890625}, {"start": 1041.86, "end": 1042.0, "word": " is", "probability": 0.92333984375}, {"start": 1042.0, "end": 1042.22, "word": " the", "probability": 0.8359375}, {"start": 1042.22, "end": 1042.44, "word": " insert", "probability": 0.56005859375}, {"start": 1042.44, "end": 1043.06, "word": " database", "probability": 0.343994140625}, {"start": 1043.06, "end": 1043.06, "word": " page.", "probability": 0.87255859375}, {"start": 1043.14, "end": 1043.26, "word": " This", "probability": 0.79638671875}, {"start": 1043.26, "end": 1043.38, "word": " is", "probability": 0.9384765625}, {"start": 1043.38, "end": 1043.58, "word": " the", "probability": 0.8896484375}, {"start": 1043.58, "end": 1043.88, "word": " query", "probability": 0.90234375}, {"start": 1043.88, "end": 1044.02, "word": " page.", "probability": 0.89453125}, {"start": 1044.72, "end": 1045.12, "word": " All", "probability": 0.640625}, {"start": 1045.12, "end": 1045.24, "word": " of", "probability": 0.52587890625}, {"start": 1045.24, "end": 1045.38, "word": " these", "probability": 0.55029296875}, {"start": 1045.38, "end": 1046.38, "word": " classes", "probability": 0.744140625}, {"start": 1046.38, "end": 1047.42, "word": " need", "probability": 0.448974609375}, {"start": 1047.42, "end": 1047.52, "word": " to", "probability": 0.9619140625}, {"start": 1047.52, "end": 1048.0, "word": " add", "probability": 0.69482421875}, {"start": 1048.0, "end": 1048.46, "word": " messages", "probability": 0.6923828125}, {"start": 1048.46, "end": 1048.66, "word": " to", "probability": 0.740234375}, {"start": 1048.66, "end": 1048.76, "word": " the", "probability": 0.81689453125}, {"start": 1048.76, "end": 1048.9, "word": " lib", "probability": 0.2626953125}, {"start": 1048.9, "end": 1049.22, "word": " file.", "probability": 0.89111328125}, {"start": 1050.0, "end": 1050.38, "word": " So", "probability": 0.1756591796875}, {"start": 1050.38, "end": 1050.48, "word": " the", "probability": 0.353271484375}, {"start": 1050.48, "end": 1050.76, "word": " messages", "probability": 0.68603515625}, {"start": 1050.76, "end": 1050.96, "word": " that", "probability": 0.339111328125}, {"start": 1050.96, "end": 1051.14, "word": " come", "probability": 0.474365234375}, {"start": 1051.14, "end": 1051.36, "word": " here", "probability": 0.372314453125}, {"start": 1051.36, "end": 1051.56, "word": " come", "probability": 0.325439453125}, {"start": 1051.56, "end": 1051.74, "word": " from", "probability": 0.8671875}, {"start": 1051.74, "end": 1051.9, "word": " where?", "probability": 0.568359375}, {"start": 1052.26, "end": 1052.48, "word": " From", "probability": 0.54541015625}, {"start": 1052.48, "end": 1053.54, "word": " more", "probability": 0.57958984375}, {"start": 1053.54, "end": 1053.64, "word": " than", "probability": 0.8447265625}, {"start": 1053.64, "end": 1053.92, "word": " one", "probability": 0.68359375}, {"start": 1053.92, "end": 1053.92, "word": " place.", "probability": 0.71435546875}, {"start": 1053.98, "end": 1054.06, "word": " From", "probability": 0.260498046875}, {"start": 1054.06, "end": 1054.38, "word": " twenty", "probability": 0.321533203125}, {"start": 1054.38, "end": 1054.5, "word": " or", "probability": 0.40234375}, {"start": 1054.5, "end": 1054.86, "word": " thirty", "probability": 0.93896484375}, {"start": 1054.86, "end": 1055.76, "word": " places.", "probability": 0.755859375}, {"start": 1056.64, "end": 1057.04, "word": " Actually,", "probability": 0.47998046875}, {"start": 1057.64, "end": 1057.8, "word": " there", "probability": 0.3154296875}, {"start": 1057.8, "end": 1057.8, "word": " is", "probability": 0.69482421875}, {"start": 1057.8, "end": 1058.32, "word": " a", "probability": 0.85791015625}, {"start": 1058.32, "end": 1059.18, "word": " common", "probability": 0.429931640625}, {"start": 1059.18, "end": 1059.42, "word": " access", "probability": 0.2259521484375}, {"start": 1059.42, "end": 1059.7, "word": " between", "probability": 0.5556640625}, {"start": 1059.7, "end": 1060.04, "word": " them", "probability": 0.5458984375}, {"start": 1060.04, "end": 1060.06, "word": " all", "probability": 0.400390625}, {"start": 1060.06, "end": 1060.24, "word": " on", "probability": 0.552734375}, {"start": 1060.24, "end": 1060.62, "word": " the", "probability": 0.88330078125}, {"start": 1060.62, "end": 1060.62, "word": " same", "probability": 0.763671875}, {"start": 1060.62, "end": 1061.48, "word": " file.", "probability": 0.79296875}, {"start": 1061.86, "end": 1062.26, "word": " Because", "probability": 0.57421875}, {"start": 1062.26, "end": 1062.62, "word": " this", "probability": 0.394287109375}, {"start": 1062.62, "end": 1062.66, "word": " object", "probability": 0.1702880859375}, {"start": 1062.66, "end": 1062.7, "word": " that", "probability": 0.6533203125}, {"start": 1062.7, "end": 1062.86, "word": " needs", "probability": 0.55615234375}, {"start": 1062.86, "end": 1062.86, "word": " to", "probability": 0.9609375}, {"start": 1062.86, "end": 1062.92, "word": " be", "probability": 0.74462890625}, {"start": 1062.92, "end": 1063.2, "word": " controlled", "probability": 0.7431640625}, {"start": 1063.2, "end": 1063.34, "word": " in", "probability": 0.53662109375}, {"start": 1063.34, "end": 1063.46, "word": " the", "probability": 0.75634765625}, {"start": 1063.46, "end": 1063.68, "word": " file", "probability": 0.837890625}, {"start": 1063.68, "end": 1063.8, "word": " and", "probability": 0.61669921875}, {"start": 1063.8, "end": 1063.88, "word": " needs", "probability": 0.17822265625}, {"start": 1063.88, "end": 1064.04, "word": " to", "probability": 0.95556640625}, {"start": 1064.04, "end": 1064.1, "word": " be", "probability": 0.71484375}, {"start": 1064.1, "end": 1064.28, "word": " connected", "probability": 0.4189453125}, {"start": 1064.28, "end": 1064.5, "word": " to", "probability": 0.580078125}, {"start": 1064.5, "end": 1064.6, "word": " it", "probability": 0.81103515625}, {"start": 1064.6, "end": 1064.74, "word": " needs", "probability": 0.41259765625}, {"start": 1064.74, "end": 1064.82, "word": " to", "probability": 0.9736328125}, {"start": 1064.82, "end": 1064.92, "word": " be", "probability": 0.9404296875}, {"start": 1064.92, "end": 1065.02, "word": " one", "probability": 0.7919921875}, {"start": 1065.02, "end": 1065.28, "word": " object.", "probability": 0.9287109375}], "temperature": 1.0}, {"id": 42, "seek": 109103, "start": 1067.43, "end": 1091.03, "text": "Object 1 is responsible for the file, and I use this object from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here, and from here", "tokens": [45483, 1020, 502, 307, 6250, 337, 264, 3991, 11, 293, 286, 764, 341, 2657, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510, 11, 293, 490, 510], "avg_logprob": -0.17916667302449543, "compression_ratio": 11.171052631578947, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 1067.4299999999998, "end": 1067.6299999999999, "word": "Object", "probability": 0.51251220703125}, {"start": 1067.6299999999999, "end": 1067.83, "word": " 1", "probability": 0.71875}, {"start": 1067.83, "end": 1068.09, "word": " is", "probability": 0.78662109375}, {"start": 1068.09, "end": 1068.45, "word": " responsible", "probability": 0.50927734375}, {"start": 1068.45, "end": 1068.71, "word": " for", "probability": 0.8349609375}, {"start": 1068.71, "end": 1069.35, "word": " the", "probability": 0.482177734375}, {"start": 1069.35, "end": 1069.53, "word": " file,", "probability": 0.828125}, {"start": 1069.61, "end": 1069.73, "word": " and", "probability": 0.72216796875}, {"start": 1069.73, "end": 1070.05, "word": " I", "probability": 0.57958984375}, {"start": 1070.05, "end": 1070.87, "word": " use", "probability": 0.5595703125}, {"start": 1070.87, "end": 1070.97, "word": " this", "probability": 0.693359375}, {"start": 1070.97, "end": 1070.97, "word": " object", "probability": 0.85546875}, {"start": 1070.97, "end": 1071.71, "word": " from", "probability": 0.52685546875}, {"start": 1071.71, "end": 1071.99, "word": " here,", "probability": 0.76513671875}, {"start": 1072.07, "end": 1072.15, "word": " and", "probability": 0.288330078125}, {"start": 1072.15, "end": 1072.23, "word": " from", "probability": 0.46826171875}, {"start": 1072.23, "end": 1072.39, "word": " here,", "probability": 0.7763671875}, {"start": 1072.43, "end": 1072.53, "word": " and", "probability": 0.89013671875}, {"start": 1072.53, "end": 1072.61, "word": " from", "probability": 0.86083984375}, {"start": 1072.61, "end": 1072.75, "word": " here,", "probability": 0.84765625}, {"start": 1072.75, "end": 1072.85, "word": " and", "probability": 0.8798828125}, {"start": 1072.85, "end": 1072.95, "word": " from", "probability": 0.86181640625}, {"start": 1072.95, "end": 1073.19, "word": " here,", "probability": 0.84130859375}, {"start": 1074.55, "end": 1074.99, "word": " and", "probability": 0.6767578125}, {"start": 1074.99, "end": 1074.99, "word": " from", "probability": 0.80859375}, {"start": 1074.99, "end": 1074.99, "word": " here,", "probability": 0.84375}, {"start": 1075.01, "end": 1075.07, "word": " and", "probability": 0.83251953125}, {"start": 1075.07, "end": 1075.07, "word": " from", "probability": 0.85400390625}, {"start": 1075.07, "end": 1075.07, "word": " here,", "probability": 0.8486328125}, {"start": 1075.07, "end": 1075.17, "word": " and", "probability": 0.8828125}, {"start": 1075.17, "end": 1075.17, "word": " from", "probability": 0.87646484375}, {"start": 1075.17, "end": 1075.17, "word": " here,", "probability": 0.8505859375}, {"start": 1075.17, "end": 1075.35, "word": " and", "probability": 0.8974609375}, {"start": 1075.35, "end": 1075.35, "word": " from", "probability": 0.8828125}, {"start": 1075.35, "end": 1075.35, "word": " here,", "probability": 0.85302734375}, {"start": 1075.35, "end": 1075.99, "word": " and", "probability": 0.90625}, {"start": 1075.99, "end": 1075.99, "word": " from", "probability": 0.888671875}, {"start": 1075.99, "end": 1075.99, "word": " here,", "probability": 0.8525390625}, {"start": 1075.99, "end": 1075.99, "word": " and", "probability": 0.91015625}, {"start": 1075.99, "end": 1075.99, "word": " from", "probability": 0.88916015625}, {"start": 1075.99, "end": 1075.99, "word": " here,", "probability": 0.853515625}, {"start": 1075.99, "end": 1075.99, "word": " and", "probability": 0.9111328125}, {"start": 1075.99, "end": 1075.99, "word": " from", "probability": 0.88818359375}, {"start": 1075.99, "end": 1075.99, "word": " here,", "probability": 0.85400390625}, {"start": 1075.99, "end": 1076.07, "word": " and", "probability": 0.912109375}, {"start": 1076.07, "end": 1076.07, "word": " from", "probability": 0.8916015625}, {"start": 1076.07, "end": 1076.07, "word": " here,", "probability": 0.8505859375}, {"start": 1076.07, "end": 1076.07, "word": " and", "probability": 0.91259765625}, {"start": 1076.07, "end": 1076.07, "word": " from", "probability": 0.888671875}, {"start": 1076.07, "end": 1076.07, "word": " here,", "probability": 0.8525390625}, {"start": 1076.07, "end": 1076.07, "word": " and", "probability": 0.9140625}, {"start": 1076.07, "end": 1076.07, "word": " from", "probability": 0.888671875}, {"start": 1076.07, "end": 1076.07, "word": " here,", "probability": 0.85302734375}, {"start": 1076.07, "end": 1076.07, "word": " and", "probability": 0.916015625}, {"start": 1076.07, "end": 1076.07, "word": " from", "probability": 0.8857421875}, {"start": 1076.07, "end": 1076.07, "word": " here,", "probability": 0.8544921875}, {"start": 1076.07, "end": 1078.51, "word": " and", "probability": 0.9169921875}, {"start": 1078.51, "end": 1078.63, "word": " from", "probability": 0.888671875}, {"start": 1078.63, "end": 1078.63, "word": " here,", "probability": 0.8544921875}, {"start": 1078.63, "end": 1078.99, "word": " and", "probability": 0.9189453125}, {"start": 1078.99, "end": 1078.99, "word": " from", "probability": 0.88720703125}, {"start": 1078.99, "end": 1078.99, "word": " here,", "probability": 0.8544921875}, {"start": 1079.23, "end": 1079.77, "word": " and", "probability": 0.91943359375}, {"start": 1079.77, "end": 1080.15, "word": " from", "probability": 0.88525390625}, {"start": 1080.15, "end": 1080.17, "word": " here,", "probability": 0.8583984375}, {"start": 1080.19, "end": 1080.21, "word": " and", "probability": 0.921875}, {"start": 1080.21, "end": 1080.23, "word": " from", "probability": 0.8818359375}, {"start": 1080.23, "end": 1080.29, "word": " here,", "probability": 0.8583984375}, {"start": 1080.31, "end": 1080.41, "word": " and", "probability": 0.9228515625}, {"start": 1080.41, "end": 1080.99, "word": " from", "probability": 0.8818359375}, {"start": 1080.99, "end": 1081.01, "word": " here,", "probability": 0.8583984375}, {"start": 1081.03, "end": 1081.05, "word": " and", "probability": 0.9228515625}, {"start": 1081.05, "end": 1081.07, "word": " from", "probability": 0.8818359375}, {"start": 1081.07, "end": 1081.09, "word": " here,", "probability": 0.8583984375}, {"start": 1081.11, "end": 1081.13, "word": " and", "probability": 0.92529296875}, {"start": 1081.13, "end": 1081.15, "word": " from", "probability": 0.8837890625}, {"start": 1081.15, "end": 1081.17, "word": " here,", "probability": 0.8583984375}, {"start": 1081.19, "end": 1081.21, "word": " and", "probability": 0.92578125}, {"start": 1081.21, "end": 1081.23, "word": " from", "probability": 0.8837890625}, {"start": 1081.23, "end": 1081.25, "word": " here,", "probability": 0.8583984375}, {"start": 1081.27, "end": 1081.29, "word": " and", "probability": 0.9267578125}, {"start": 1081.29, "end": 1081.31, "word": " from", "probability": 0.88134765625}, {"start": 1081.31, "end": 1081.33, "word": " here,", "probability": 0.85693359375}, {"start": 1081.35, "end": 1081.37, "word": " and", "probability": 0.927734375}, {"start": 1081.37, "end": 1081.49, "word": " from", "probability": 0.87939453125}, {"start": 1081.49, "end": 1081.57, "word": " here,", "probability": 0.85888671875}, {"start": 1081.59, "end": 1081.67, "word": " and", "probability": 0.9287109375}, {"start": 1081.67, "end": 1081.67, "word": " from", "probability": 0.8818359375}, {"start": 1081.67, "end": 1081.67, "word": " here,", "probability": 0.86083984375}, {"start": 1081.67, "end": 1081.85, "word": " and", "probability": 0.9306640625}, {"start": 1081.85, "end": 1081.97, "word": " from", "probability": 0.87890625}, {"start": 1081.97, "end": 1082.07, "word": " here,", "probability": 0.86083984375}, {"start": 1082.07, "end": 1082.07, "word": " and", "probability": 0.931640625}, {"start": 1082.07, "end": 1082.07, "word": " from", "probability": 0.88232421875}, {"start": 1082.07, "end": 1082.07, "word": " here,", "probability": 0.861328125}, {"start": 1082.07, "end": 1082.07, "word": " and", "probability": 0.93115234375}, {"start": 1082.07, "end": 1082.07, "word": " from", "probability": 0.87939453125}, {"start": 1082.07, "end": 1082.07, "word": " here,", "probability": 0.861328125}, {"start": 1082.07, "end": 1082.07, "word": " and", "probability": 0.93212890625}, {"start": 1082.07, "end": 1082.07, "word": " from", "probability": 0.8798828125}, {"start": 1082.07, "end": 1082.07, "word": " here,", "probability": 0.85986328125}, {"start": 1082.07, "end": 1082.07, "word": " and", "probability": 0.93310546875}, {"start": 1082.07, "end": 1082.07, "word": " from", "probability": 0.88134765625}, {"start": 1082.07, "end": 1082.09, "word": " here,", "probability": 0.86376953125}, {"start": 1082.09, "end": 1082.09, "word": " and", "probability": 0.93310546875}, {"start": 1082.09, "end": 1082.09, "word": " from", "probability": 0.88037109375}, {"start": 1082.09, "end": 1082.09, "word": " here,", "probability": 0.8603515625}, {"start": 1082.09, "end": 1082.09, "word": " and", "probability": 0.93359375}, {"start": 1082.09, "end": 1082.09, "word": " from", "probability": 0.8818359375}, {"start": 1082.09, "end": 1082.09, "word": " here,", "probability": 0.86376953125}, {"start": 1082.09, "end": 1082.09, "word": " and", "probability": 0.93505859375}, {"start": 1082.09, "end": 1082.09, "word": " from", "probability": 0.87890625}, {"start": 1082.09, "end": 1082.09, "word": " here,", "probability": 0.8623046875}, {"start": 1082.09, "end": 1082.09, "word": " and", "probability": 0.93505859375}, {"start": 1082.09, "end": 1082.09, "word": " from", "probability": 0.87890625}, {"start": 1082.09, "end": 1082.09, "word": " here,", "probability": 0.8623046875}, {"start": 1082.09, "end": 1082.09, "word": " and", "probability": 0.9365234375}, {"start": 1082.09, "end": 1082.09, "word": " from", "probability": 0.87939453125}, {"start": 1082.09, "end": 1082.09, "word": " here,", "probability": 0.8623046875}, {"start": 1082.09, "end": 1082.09, "word": " and", "probability": 0.93603515625}, {"start": 1082.09, "end": 1082.09, "word": " from", "probability": 0.88037109375}, {"start": 1082.09, "end": 1082.09, "word": " here,", "probability": 0.86279296875}, {"start": 1082.09, "end": 1082.09, "word": " and", "probability": 0.9375}, {"start": 1082.09, "end": 1082.09, "word": " from", "probability": 0.880859375}, {"start": 1082.09, "end": 1082.11, "word": " here,", "probability": 0.86279296875}, {"start": 1082.11, "end": 1082.11, "word": " and", "probability": 0.9384765625}, {"start": 1082.11, "end": 1082.33, "word": " from", "probability": 0.880859375}, {"start": 1082.33, "end": 1082.43, "word": " here,", "probability": 0.86669921875}, {"start": 1082.59, "end": 1082.59, "word": " and", "probability": 0.93798828125}, {"start": 1082.59, "end": 1082.59, "word": " from", "probability": 0.88134765625}, {"start": 1082.59, "end": 1082.59, "word": " here,", "probability": 0.86669921875}, {"start": 1082.59, "end": 1082.59, "word": " and", "probability": 0.9384765625}, {"start": 1082.59, "end": 1082.59, "word": " from", "probability": 0.87939453125}, {"start": 1082.59, "end": 1082.59, "word": " here,", "probability": 0.86669921875}, {"start": 1082.65, "end": 1082.65, "word": " and", "probability": 0.939453125}, {"start": 1082.65, "end": 1082.65, "word": " from", "probability": 0.87841796875}, {"start": 1082.65, "end": 1082.65, "word": " here,", "probability": 0.865234375}, {"start": 1082.65, "end": 1082.65, "word": " and", "probability": 0.9404296875}, {"start": 1082.65, "end": 1082.65, "word": " from", "probability": 0.8798828125}, {"start": 1082.65, "end": 1082.65, "word": " here,", "probability": 0.865234375}, {"start": 1082.65, "end": 1082.65, "word": " and", "probability": 0.93896484375}, {"start": 1082.65, "end": 1082.65, "word": " from", "probability": 0.8798828125}, {"start": 1082.65, "end": 1082.65, "word": " here,", "probability": 0.86376953125}, {"start": 1082.65, "end": 1082.65, "word": " and", "probability": 0.93896484375}, {"start": 1082.65, "end": 1082.65, "word": " from", "probability": 0.87841796875}, {"start": 1082.65, "end": 1082.65, "word": " here,", "probability": 0.86376953125}, {"start": 1082.65, "end": 1082.65, "word": " and", "probability": 0.93994140625}, {"start": 1082.65, "end": 1082.65, "word": " from", "probability": 0.8818359375}, {"start": 1082.65, "end": 1082.65, "word": " here,", "probability": 0.86376953125}, {"start": 1082.65, "end": 1082.65, "word": " and", "probability": 0.94140625}, {"start": 1082.65, "end": 1082.65, "word": " from", "probability": 0.88037109375}, {"start": 1082.65, "end": 1082.65, "word": " here,", "probability": 0.8642578125}, {"start": 1082.65, "end": 1082.65, "word": " and", "probability": 0.939453125}, {"start": 1082.65, "end": 1082.65, "word": " from", "probability": 0.87890625}, {"start": 1082.65, "end": 1082.65, "word": " here,", "probability": 0.86572265625}, {"start": 1082.65, "end": 1082.65, "word": " and", "probability": 0.93896484375}, {"start": 1082.65, "end": 1082.65, "word": " from", "probability": 0.88037109375}, {"start": 1082.65, "end": 1082.65, "word": " here,", "probability": 0.86572265625}, {"start": 1083.55, "end": 1083.55, "word": " and", "probability": 0.9404296875}, {"start": 1083.55, "end": 1083.55, "word": " from", "probability": 0.88037109375}, {"start": 1083.55, "end": 1083.55, "word": " here,", "probability": 0.86572265625}, {"start": 1084.25, "end": 1084.25, "word": " and", "probability": 0.93994140625}, {"start": 1084.25, "end": 1084.37, "word": " from", "probability": 0.8837890625}, {"start": 1084.37, "end": 1084.75, "word": " here,", "probability": 0.8642578125}, {"start": 1086.19, "end": 1086.31, "word": " and", "probability": 0.93994140625}, {"start": 1086.31, "end": 1086.49, "word": " from", "probability": 0.88037109375}, {"start": 1086.49, "end": 1087.37, "word": " here,", "probability": 0.8642578125}, {"start": 1087.37, "end": 1088.91, "word": " and", "probability": 0.93994140625}, {"start": 1088.91, "end": 1091.03, "word": " from", "probability": 0.88232421875}, {"start": 1091.03, "end": 1091.03, "word": " here", "probability": 0.8662109375}], "temperature": 1.0}, {"id": 43, "seek": 110651, "start": 1092.01, "end": 1106.51, "text": "What is this object? And it is what is written on the file. Centralized management. The center in which it is controlled. Like the example I gave in the last lecture about printing. The Prince Pool.", "tokens": [3748, 307, 341, 2657, 30, 400, 309, 307, 437, 307, 3720, 322, 264, 3991, 13, 9701, 1602, 4592, 13, 440, 3056, 294, 597, 309, 307, 10164, 13, 1743, 264, 1365, 286, 2729, 294, 264, 1036, 7991, 466, 14699, 13, 440, 9821, 46188, 13], "avg_logprob": -0.6161221834746274, "compression_ratio": 1.356164383561644, "no_speech_prob": 1.1086463928222656e-05, "words": [{"start": 1092.01, "end": 1092.23, "word": "What", "probability": 0.046875}, {"start": 1092.23, "end": 1092.27, "word": " is", "probability": 0.74267578125}, {"start": 1092.27, "end": 1092.33, "word": " this", "probability": 0.7783203125}, {"start": 1092.33, "end": 1092.63, "word": " object?", "probability": 0.96826171875}, {"start": 1093.47, "end": 1093.63, "word": " And", "probability": 0.337158203125}, {"start": 1093.63, "end": 1093.79, "word": " it", "probability": 0.447998046875}, {"start": 1093.79, "end": 1093.83, "word": " is", "probability": 0.68310546875}, {"start": 1093.83, "end": 1093.93, "word": " what", "probability": 0.67431640625}, {"start": 1093.93, "end": 1094.03, "word": " is", "probability": 0.7587890625}, {"start": 1094.03, "end": 1094.19, "word": " written", "probability": 0.7939453125}, {"start": 1094.19, "end": 1094.43, "word": " on", "probability": 0.857421875}, {"start": 1094.43, "end": 1095.39, "word": " the", "probability": 0.74462890625}, {"start": 1095.39, "end": 1095.69, "word": " file.", "probability": 0.76123046875}, {"start": 1096.37, "end": 1096.97, "word": " Centralized", "probability": 0.871337890625}, {"start": 1096.97, "end": 1097.55, "word": " management.", "probability": 0.48583984375}, {"start": 1098.87, "end": 1099.05, "word": " The", "probability": 0.1712646484375}, {"start": 1099.05, "end": 1099.55, "word": " center", "probability": 0.5126953125}, {"start": 1099.55, "end": 1099.83, "word": " in", "probability": 0.288330078125}, {"start": 1099.83, "end": 1099.97, "word": " which", "probability": 0.93994140625}, {"start": 1099.97, "end": 1100.27, "word": " it", "probability": 0.450439453125}, {"start": 1100.27, "end": 1100.27, "word": " is", "probability": 0.80322265625}, {"start": 1100.27, "end": 1100.59, "word": " controlled.", "probability": 0.669921875}, {"start": 1101.25, "end": 1101.41, "word": " Like", "probability": 0.3544921875}, {"start": 1101.41, "end": 1101.55, "word": " the", "probability": 0.61669921875}, {"start": 1101.55, "end": 1101.77, "word": " example", "probability": 0.9287109375}, {"start": 1101.77, "end": 1102.21, "word": " I", "probability": 0.43408203125}, {"start": 1102.21, "end": 1102.39, "word": " gave", "probability": 0.7294921875}, {"start": 1102.39, "end": 1102.57, "word": " in", "probability": 0.712890625}, {"start": 1102.57, "end": 1102.61, "word": " the", "probability": 0.58203125}, {"start": 1102.61, "end": 1102.61, "word": " last", "probability": 0.460205078125}, {"start": 1102.61, "end": 1103.25, "word": " lecture", "probability": 0.89794921875}, {"start": 1103.25, "end": 1103.81, "word": " about", "probability": 0.33349609375}, {"start": 1103.81, "end": 1104.49, "word": " printing.", "probability": 0.416015625}, {"start": 1105.07, "end": 1105.67, "word": " The", "probability": 0.2705078125}, {"start": 1105.67, "end": 1106.03, "word": " Prince", "probability": 0.26513671875}, {"start": 1106.03, "end": 1106.51, "word": " Pool.", "probability": 0.5224609375}], "temperature": 1.0}, {"id": 44, "seek": 113848, "start": 1109.78, "end": 1138.48, "text": " One object is responsible for the queue of printing and ordering, it organizes them and checks if the user is the owner or not. This is the printer and this is the printer. Who is supposed to print this? The printer. The printer asks the owner to print it for him. Where do these privileges exist? In this object. Now, as an example of centralized management, let's see how to make this logger. In Java,", "tokens": [1485, 2657, 307, 6250, 337, 264, 18639, 295, 14699, 293, 21739, 11, 309, 4645, 279, 552, 293, 13834, 498, 264, 4195, 307, 264, 7289, 420, 406, 13, 639, 307, 264, 16671, 293, 341, 307, 264, 16671, 13, 2102, 307, 3442, 281, 4482, 341, 30, 440, 16671, 13, 440, 16671, 8962, 264, 7289, 281, 4482, 309, 337, 796, 13, 2305, 360, 613, 32588, 2514, 30, 682, 341, 2657, 13, 823, 11, 382, 364, 1365, 295, 32395, 4592, 11, 718, 311, 536, 577, 281, 652, 341, 3565, 1321, 13, 682, 10745, 11], "avg_logprob": -0.7190933987334535, "compression_ratio": 1.7264957264957266, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 1109.78, "end": 1110.0, "word": " One", "probability": 0.171630859375}, {"start": 1110.0, "end": 1110.28, "word": " object", "probability": 0.9033203125}, {"start": 1110.28, "end": 1110.66, "word": " is", "probability": 0.5888671875}, {"start": 1110.66, "end": 1111.06, "word": " responsible", "probability": 0.59033203125}, {"start": 1111.06, "end": 1111.44, "word": " for", "probability": 0.8369140625}, {"start": 1111.44, "end": 1111.58, "word": " the", "probability": 0.2386474609375}, {"start": 1111.58, "end": 1111.86, "word": " queue", "probability": 0.2158203125}, {"start": 1111.86, "end": 1112.38, "word": " of", "probability": 0.6552734375}, {"start": 1112.38, "end": 1112.58, "word": " printing", "probability": 0.237548828125}, {"start": 1112.58, "end": 1112.8, "word": " and", "probability": 0.31982421875}, {"start": 1112.8, "end": 1113.16, "word": " ordering,", "probability": 0.3076171875}, {"start": 1113.3, "end": 1113.42, "word": " it", "probability": 0.1829833984375}, {"start": 1113.42, "end": 1113.82, "word": " organizes", "probability": 0.6658935546875}, {"start": 1113.82, "end": 1114.04, "word": " them", "probability": 0.67822265625}, {"start": 1114.04, "end": 1114.54, "word": " and", "probability": 0.3935546875}, {"start": 1114.54, "end": 1114.78, "word": " checks", "probability": 0.290771484375}, {"start": 1114.78, "end": 1114.96, "word": " if", "probability": 0.58740234375}, {"start": 1114.96, "end": 1115.06, "word": " the", "probability": 0.40234375}, {"start": 1115.06, "end": 1115.4, "word": " user", "probability": 0.5537109375}, {"start": 1115.4, "end": 1115.74, "word": " is", "probability": 0.7802734375}, {"start": 1115.74, "end": 1116.3, "word": " the", "probability": 0.41015625}, {"start": 1116.3, "end": 1116.5, "word": " owner", "probability": 0.253662109375}, {"start": 1116.5, "end": 1116.76, "word": " or", "probability": 0.60107421875}, {"start": 1116.76, "end": 1117.18, "word": " not.", "probability": 0.377685546875}, {"start": 1117.84, "end": 1118.24, "word": " This", "probability": 0.34716796875}, {"start": 1118.24, "end": 1118.26, "word": " is", "probability": 0.414306640625}, {"start": 1118.26, "end": 1118.34, "word": " the", "probability": 0.56982421875}, {"start": 1118.34, "end": 1118.48, "word": " printer", "probability": 0.7939453125}, {"start": 1118.48, "end": 1118.58, "word": " and", "probability": 0.68603515625}, {"start": 1118.58, "end": 1118.7, "word": " this", "probability": 0.548828125}, {"start": 1118.7, "end": 1118.7, "word": " is", "probability": 0.8798828125}, {"start": 1118.7, "end": 1118.8, "word": " the", "probability": 0.89453125}, {"start": 1118.8, "end": 1119.06, "word": " printer.", "probability": 0.82568359375}, {"start": 1119.6, "end": 1119.94, "word": " Who", "probability": 0.58544921875}, {"start": 1119.94, "end": 1120.06, "word": " is", "probability": 0.4423828125}, {"start": 1120.06, "end": 1120.28, "word": " supposed", "probability": 0.70166015625}, {"start": 1120.28, "end": 1120.38, "word": " to", "probability": 0.9677734375}, {"start": 1120.38, "end": 1120.76, "word": " print", "probability": 0.21484375}, {"start": 1120.76, "end": 1121.26, "word": " this?", "probability": 0.3896484375}, {"start": 1121.68, "end": 1122.2, "word": " The", "probability": 0.470947265625}, {"start": 1122.2, "end": 1122.2, "word": " printer.", "probability": 0.44140625}, {"start": 1122.28, "end": 1122.58, "word": " The", "probability": 0.24169921875}, {"start": 1122.58, "end": 1122.58, "word": " printer", "probability": 0.7470703125}, {"start": 1122.58, "end": 1122.7, "word": " asks", "probability": 0.11944580078125}, {"start": 1122.7, "end": 1122.84, "word": " the", "probability": 0.66943359375}, {"start": 1122.84, "end": 1123.04, "word": " owner", "probability": 0.587890625}, {"start": 1123.04, "end": 1123.42, "word": " to", "probability": 0.69091796875}, {"start": 1123.42, "end": 1123.62, "word": " print", "probability": 0.89306640625}, {"start": 1123.62, "end": 1123.76, "word": " it", "probability": 0.335205078125}, {"start": 1123.76, "end": 1124.06, "word": " for", "probability": 0.0909423828125}, {"start": 1124.06, "end": 1124.22, "word": " him.", "probability": 0.85498046875}, {"start": 1125.36, "end": 1125.88, "word": " Where", "probability": 0.20751953125}, {"start": 1125.88, "end": 1126.04, "word": " do", "probability": 0.33984375}, {"start": 1126.04, "end": 1126.04, "word": " these", "probability": 0.66015625}, {"start": 1126.04, "end": 1126.42, "word": " privileges", "probability": 0.193359375}, {"start": 1126.42, "end": 1127.04, "word": " exist?", "probability": 0.7666015625}, {"start": 1127.76, "end": 1128.28, "word": " In", "probability": 0.30078125}, {"start": 1128.28, "end": 1128.4, "word": " this", "probability": 0.484130859375}, {"start": 1128.4, "end": 1128.72, "word": " object.", "probability": 0.97998046875}, {"start": 1130.86, "end": 1131.38, "word": " Now,", "probability": 0.252685546875}, {"start": 1131.82, "end": 1133.06, "word": " as", "probability": 0.64453125}, {"start": 1133.06, "end": 1133.36, "word": " an", "probability": 0.92919921875}, {"start": 1133.36, "end": 1133.5, "word": " example", "probability": 0.97900390625}, {"start": 1133.5, "end": 1133.7, "word": " of", "probability": 0.49267578125}, {"start": 1133.7, "end": 1134.04, "word": " centralized", "probability": 0.6015625}, {"start": 1134.04, "end": 1134.7, "word": " management,", "probability": 0.89794921875}, {"start": 1134.82, "end": 1135.04, "word": " let's", "probability": 0.6611328125}, {"start": 1135.04, "end": 1135.18, "word": " see", "probability": 0.69189453125}, {"start": 1135.18, "end": 1135.4, "word": " how", "probability": 0.92431640625}, {"start": 1135.4, "end": 1135.48, "word": " to", "probability": 0.56982421875}, {"start": 1135.48, "end": 1135.58, "word": " make", "probability": 0.40380859375}, {"start": 1135.58, "end": 1135.76, "word": " this", "probability": 0.431640625}, {"start": 1135.76, "end": 1136.04, "word": " logger.", "probability": 0.778076171875}, {"start": 1137.52, "end": 1138.04, "word": " In", "probability": 0.1153564453125}, {"start": 1138.04, "end": 1138.48, "word": " Java,", "probability": 0.8486328125}], "temperature": 1.0}, {"id": 45, "seek": 116433, "start": 1148.93, "end": 1164.33, "text": " second in java there is a class ready for logging which is class named logger class in java named logger", "tokens": [1150, 294, 361, 4061, 456, 307, 257, 1508, 1919, 337, 27991, 597, 307, 1508, 4926, 3565, 1321, 1508, 294, 361, 4061, 4926, 3565, 1321], "avg_logprob": -0.5134375190734863, "compression_ratio": 1.4, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1148.93, "end": 1149.69, "word": " second", "probability": 0.1412353515625}, {"start": 1149.69, "end": 1150.45, "word": " in", "probability": 0.45849609375}, {"start": 1150.45, "end": 1150.91, "word": " java", "probability": 0.7685546875}, {"start": 1150.91, "end": 1151.25, "word": " there", "probability": 0.556640625}, {"start": 1151.25, "end": 1151.39, "word": " is", "probability": 0.8388671875}, {"start": 1151.39, "end": 1151.53, "word": " a", "probability": 0.79296875}, {"start": 1151.53, "end": 1151.85, "word": " class", "probability": 0.93017578125}, {"start": 1151.85, "end": 1152.25, "word": " ready", "probability": 0.386962890625}, {"start": 1152.25, "end": 1152.41, "word": " for", "probability": 0.57568359375}, {"start": 1152.41, "end": 1152.97, "word": " logging", "probability": 0.8388671875}, {"start": 1152.97, "end": 1154.01, "word": " which", "probability": 0.476806640625}, {"start": 1154.01, "end": 1154.29, "word": " is", "probability": 0.74267578125}, {"start": 1154.29, "end": 1156.75, "word": " class", "probability": 0.521484375}, {"start": 1156.75, "end": 1160.05, "word": " named", "probability": 0.15283203125}, {"start": 1160.05, "end": 1160.39, "word": " logger", "probability": 0.6961669921875}, {"start": 1160.39, "end": 1162.05, "word": " class", "probability": 0.265869140625}, {"start": 1162.05, "end": 1162.33, "word": " in", "probability": 0.8447265625}, {"start": 1162.33, "end": 1162.63, "word": " java", "probability": 0.958740234375}, {"start": 1162.63, "end": 1162.99, "word": " named", "probability": 0.60693359375}, {"start": 1162.99, "end": 1164.33, "word": " logger", "probability": 0.8837890625}], "temperature": 1.0}, {"id": 46, "seek": 118214, "start": 1165.32, "end": 1182.14, "text": "They say if you want to create a logger, which is an active name of the logger, which is what you want to write on the file, go and create an object in the logger as follows, say logger.getlogger, this is a static method, okay? And give it the name of the logger, okay? For example, call it My", "tokens": [8829, 584, 498, 291, 528, 281, 1884, 257, 3565, 1321, 11, 597, 307, 364, 4967, 1315, 295, 264, 3565, 1321, 11, 597, 307, 437, 291, 528, 281, 2464, 322, 264, 3991, 11, 352, 293, 1884, 364, 2657, 294, 264, 3565, 1321, 382, 10002, 11, 584, 3565, 1321, 13, 847, 4987, 1321, 11, 341, 307, 257, 13437, 3170, 11, 1392, 30, 400, 976, 309, 264, 1315, 295, 264, 3565, 1321, 11, 1392, 30, 1171, 1365, 11, 818, 309, 1222], "avg_logprob": -0.5415348357792142, "compression_ratio": 1.7337278106508875, "no_speech_prob": 5.841255187988281e-06, "words": [{"start": 1165.32, "end": 1165.5, "word": "They", "probability": 0.038330078125}, {"start": 1165.5, "end": 1165.66, "word": " say", "probability": 0.53271484375}, {"start": 1165.66, "end": 1165.84, "word": " if", "probability": 0.5068359375}, {"start": 1165.84, "end": 1166.1, "word": " you", "probability": 0.93798828125}, {"start": 1166.1, "end": 1166.4, "word": " want", "probability": 0.70849609375}, {"start": 1166.4, "end": 1166.5, "word": " to", "probability": 0.9375}, {"start": 1166.5, "end": 1166.76, "word": " create", "probability": 0.36376953125}, {"start": 1166.76, "end": 1167.42, "word": " a", "probability": 0.64208984375}, {"start": 1167.42, "end": 1167.72, "word": " logger,", "probability": 0.537353515625}, {"start": 1167.88, "end": 1168.0, "word": " which", "probability": 0.391357421875}, {"start": 1168.0, "end": 1168.24, "word": " is", "probability": 0.81591796875}, {"start": 1168.24, "end": 1169.16, "word": " an", "probability": 0.30224609375}, {"start": 1169.16, "end": 1169.62, "word": " active", "probability": 0.49462890625}, {"start": 1169.62, "end": 1169.62, "word": " name", "probability": 0.49609375}, {"start": 1169.62, "end": 1169.82, "word": " of", "probability": 0.301025390625}, {"start": 1169.82, "end": 1169.94, "word": " the", "probability": 0.455078125}, {"start": 1169.94, "end": 1170.68, "word": " logger,", "probability": 0.5654296875}, {"start": 1170.7, "end": 1170.82, "word": " which", "probability": 0.369140625}, {"start": 1170.82, "end": 1170.94, "word": " is", "probability": 0.578125}, {"start": 1170.94, "end": 1171.04, "word": " what", "probability": 0.6845703125}, {"start": 1171.04, "end": 1171.14, "word": " you", "probability": 0.2451171875}, {"start": 1171.14, "end": 1171.22, "word": " want", "probability": 0.62841796875}, {"start": 1171.22, "end": 1171.22, "word": " to", "probability": 0.9560546875}, {"start": 1171.22, "end": 1171.38, "word": " write", "probability": 0.80908203125}, {"start": 1171.38, "end": 1171.6, "word": " on", "probability": 0.75927734375}, {"start": 1171.6, "end": 1172.2, "word": " the", "probability": 0.73291015625}, {"start": 1172.2, "end": 1172.48, "word": " file,", "probability": 0.7666015625}, {"start": 1172.98, "end": 1173.34, "word": " go", "probability": 0.295166015625}, {"start": 1173.34, "end": 1173.52, "word": " and", "probability": 0.399658203125}, {"start": 1173.52, "end": 1173.62, "word": " create", "probability": 0.83349609375}, {"start": 1173.62, "end": 1173.76, "word": " an", "probability": 0.83251953125}, {"start": 1173.76, "end": 1173.98, "word": " object", "probability": 0.96484375}, {"start": 1173.98, "end": 1174.1, "word": " in", "probability": 0.39697265625}, {"start": 1174.1, "end": 1174.18, "word": " the", "probability": 0.72998046875}, {"start": 1174.18, "end": 1174.42, "word": " logger", "probability": 0.8759765625}, {"start": 1174.42, "end": 1174.66, "word": " as", "probability": 0.5595703125}, {"start": 1174.66, "end": 1174.96, "word": " follows,", "probability": 0.568359375}, {"start": 1175.1, "end": 1175.26, "word": " say", "probability": 0.52783203125}, {"start": 1175.26, "end": 1176.02, "word": " logger", "probability": 0.793701171875}, {"start": 1176.02, "end": 1176.68, "word": ".getlogger,", "probability": 0.888916015625}, {"start": 1176.76, "end": 1176.82, "word": " this", "probability": 0.70703125}, {"start": 1176.82, "end": 1176.9, "word": " is", "probability": 0.92822265625}, {"start": 1176.9, "end": 1176.98, "word": " a", "probability": 0.361083984375}, {"start": 1176.98, "end": 1177.16, "word": " static", "probability": 0.97802734375}, {"start": 1177.16, "end": 1177.56, "word": " method,", "probability": 0.96044921875}, {"start": 1178.06, "end": 1178.24, "word": " okay?", "probability": 0.264892578125}, {"start": 1178.62, "end": 1178.72, "word": " And", "probability": 0.34033203125}, {"start": 1178.72, "end": 1178.92, "word": " give", "probability": 0.58251953125}, {"start": 1178.92, "end": 1179.1, "word": " it", "probability": 0.58251953125}, {"start": 1179.1, "end": 1179.1, "word": " the", "probability": 0.8486328125}, {"start": 1179.1, "end": 1179.26, "word": " name", "probability": 0.8154296875}, {"start": 1179.26, "end": 1179.38, "word": " of", "probability": 0.47705078125}, {"start": 1179.38, "end": 1179.38, "word": " the", "probability": 0.8779296875}, {"start": 1179.38, "end": 1179.66, "word": " logger,", "probability": 0.904052734375}, {"start": 1180.8, "end": 1181.02, "word": " okay?", "probability": 0.69677734375}, {"start": 1181.16, "end": 1181.28, "word": " For", "probability": 0.85498046875}, {"start": 1181.28, "end": 1181.42, "word": " example,", "probability": 0.95068359375}, {"start": 1181.58, "end": 1181.74, "word": " call", "probability": 0.380615234375}, {"start": 1181.74, "end": 1181.86, "word": " it", "probability": 0.8935546875}, {"start": 1181.86, "end": 1182.14, "word": " My", "probability": 0.1624755859375}], "temperature": 1.0}, {"id": 47, "seek": 120528, "start": 1185.1, "end": 1205.28, "text": " We created this logger, if you want to write a message, you have to connect this logger to a file, so it can write on a file, it can connect to a network, so you can send messages to the network, sometimes you have programs that tell you if there is a crash, send the wrong messages to Google", "tokens": [492, 2942, 341, 3565, 1321, 11, 498, 291, 528, 281, 2464, 257, 3636, 11, 291, 362, 281, 1745, 341, 3565, 1321, 281, 257, 3991, 11, 370, 309, 393, 2464, 322, 257, 3991, 11, 309, 393, 1745, 281, 257, 3209, 11, 370, 291, 393, 2845, 7897, 281, 264, 3209, 11, 2171, 291, 362, 4268, 300, 980, 291, 498, 456, 307, 257, 8252, 11, 2845, 264, 2085, 7897, 281, 3329], "avg_logprob": -0.6553441890771838, "compression_ratio": 1.8198757763975155, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 1185.1, "end": 1185.56, "word": " We", "probability": 0.2890625}, {"start": 1185.56, "end": 1185.9, "word": " created", "probability": 0.458740234375}, {"start": 1185.9, "end": 1186.26, "word": " this", "probability": 0.529296875}, {"start": 1186.26, "end": 1186.52, "word": " logger,", "probability": 0.700439453125}, {"start": 1187.2, "end": 1187.54, "word": " if", "probability": 0.145263671875}, {"start": 1187.54, "end": 1188.36, "word": " you", "probability": 0.6337890625}, {"start": 1188.36, "end": 1188.48, "word": " want", "probability": 0.413330078125}, {"start": 1188.48, "end": 1188.82, "word": " to", "probability": 0.9150390625}, {"start": 1188.82, "end": 1188.96, "word": " write", "probability": 0.609375}, {"start": 1188.96, "end": 1189.14, "word": " a", "probability": 0.85498046875}, {"start": 1189.14, "end": 1189.42, "word": " message,", "probability": 0.69921875}, {"start": 1190.14, "end": 1190.14, "word": " you", "probability": 0.425537109375}, {"start": 1190.14, "end": 1190.14, "word": " have", "probability": 0.275146484375}, {"start": 1190.14, "end": 1191.28, "word": " to", "probability": 0.966796875}, {"start": 1191.28, "end": 1191.3, "word": " connect", "probability": 0.373291015625}, {"start": 1191.3, "end": 1191.42, "word": " this", "probability": 0.325927734375}, {"start": 1191.42, "end": 1192.28, "word": " logger", "probability": 0.896728515625}, {"start": 1192.28, "end": 1192.48, "word": " to", "probability": 0.609375}, {"start": 1192.48, "end": 1192.58, "word": " a", "probability": 0.349365234375}, {"start": 1192.58, "end": 1192.82, "word": " file,", "probability": 0.87744140625}, {"start": 1193.3, "end": 1193.36, "word": " so", "probability": 0.426513671875}, {"start": 1193.36, "end": 1193.52, "word": " it", "probability": 0.361328125}, {"start": 1193.52, "end": 1193.66, "word": " can", "probability": 0.342529296875}, {"start": 1193.66, "end": 1193.78, "word": " write", "probability": 0.6943359375}, {"start": 1193.78, "end": 1193.94, "word": " on", "probability": 0.4755859375}, {"start": 1193.94, "end": 1194.02, "word": " a", "probability": 0.359375}, {"start": 1194.02, "end": 1194.2, "word": " file,", "probability": 0.87548828125}, {"start": 1194.72, "end": 1195.22, "word": " it", "probability": 0.2783203125}, {"start": 1195.22, "end": 1196.28, "word": " can", "probability": 0.338623046875}, {"start": 1196.28, "end": 1197.68, "word": " connect", "probability": 0.677734375}, {"start": 1197.68, "end": 1197.84, "word": " to", "probability": 0.450439453125}, {"start": 1197.84, "end": 1197.9, "word": " a", "probability": 0.63720703125}, {"start": 1197.9, "end": 1198.2, "word": " network,", "probability": 0.89697265625}, {"start": 1198.34, "end": 1198.44, "word": " so", "probability": 0.2247314453125}, {"start": 1198.44, "end": 1198.54, "word": " you", "probability": 0.67236328125}, {"start": 1198.54, "end": 1198.66, "word": " can", "probability": 0.837890625}, {"start": 1198.66, "end": 1198.8, "word": " send", "probability": 0.67919921875}, {"start": 1198.8, "end": 1199.02, "word": " messages", "probability": 0.422119140625}, {"start": 1199.02, "end": 1199.74, "word": " to", "probability": 0.603515625}, {"start": 1199.74, "end": 1199.84, "word": " the", "probability": 0.59326171875}, {"start": 1199.84, "end": 1200.16, "word": " network,", "probability": 0.7744140625}, {"start": 1200.66, "end": 1201.04, "word": " sometimes", "probability": 0.35986328125}, {"start": 1201.04, "end": 1201.32, "word": " you", "probability": 0.2427978515625}, {"start": 1201.32, "end": 1201.54, "word": " have", "probability": 0.76220703125}, {"start": 1201.54, "end": 1201.82, "word": " programs", "probability": 0.63671875}, {"start": 1201.82, "end": 1201.94, "word": " that", "probability": 0.62060546875}, {"start": 1201.94, "end": 1202.08, "word": " tell", "probability": 0.404052734375}, {"start": 1202.08, "end": 1202.26, "word": " you", "probability": 0.93505859375}, {"start": 1202.26, "end": 1202.72, "word": " if", "probability": 0.4013671875}, {"start": 1202.72, "end": 1203.08, "word": " there", "probability": 0.69873046875}, {"start": 1203.08, "end": 1203.08, "word": " is", "probability": 0.66357421875}, {"start": 1203.08, "end": 1203.14, "word": " a", "probability": 0.9677734375}, {"start": 1203.14, "end": 1203.42, "word": " crash,", "probability": 0.84130859375}, {"start": 1203.6, "end": 1204.08, "word": " send", "probability": 0.281982421875}, {"start": 1204.08, "end": 1204.28, "word": " the", "probability": 0.6533203125}, {"start": 1204.28, "end": 1204.8, "word": " wrong", "probability": 0.4990234375}, {"start": 1204.8, "end": 1204.8, "word": " messages", "probability": 0.3984375}, {"start": 1204.8, "end": 1204.98, "word": " to", "probability": 0.953125}, {"start": 1204.98, "end": 1205.28, "word": " Google", "probability": 0.66064453125}], "temperature": 1.0}, {"id": 48, "seek": 123236, "start": 1206.21, "end": 1232.37, "text": " You can connect it to a network, database, anything For example, there is something called add handler, new file handler, and give it a file name that connects to it, for example, test.txt So if we write on our logger, everything will be stored in a file called test.txt Ok, we're done. How do we write? Logger.log", "tokens": [509, 393, 1745, 309, 281, 257, 3209, 11, 8149, 11, 1340, 1171, 1365, 11, 456, 307, 746, 1219, 909, 41967, 11, 777, 3991, 41967, 11, 293, 976, 309, 257, 3991, 1315, 300, 16967, 281, 309, 11, 337, 1365, 11, 1500, 13, 83, 734, 407, 498, 321, 2464, 322, 527, 3565, 1321, 11, 1203, 486, 312, 12187, 294, 257, 3991, 1219, 1500, 13, 83, 734, 3477, 11, 321, 434, 1096, 13, 1012, 360, 321, 2464, 30, 10824, 1321, 13, 4987], "avg_logprob": -0.6093750081956386, "compression_ratio": 1.6071428571428572, "no_speech_prob": 1.6689300537109375e-06, "words": [{"start": 1206.21, "end": 1206.73, "word": " You", "probability": 0.1627197265625}, {"start": 1206.73, "end": 1206.97, "word": " can", "probability": 0.89990234375}, {"start": 1206.97, "end": 1207.19, "word": " connect", "probability": 0.623046875}, {"start": 1207.19, "end": 1207.31, "word": " it", "probability": 0.4560546875}, {"start": 1207.31, "end": 1207.39, "word": " to", "probability": 0.50732421875}, {"start": 1207.39, "end": 1207.47, "word": " a", "probability": 0.298828125}, {"start": 1207.47, "end": 1207.83, "word": " network,", "probability": 0.8740234375}, {"start": 1208.11, "end": 1209.07, "word": " database,", "probability": 0.51025390625}, {"start": 1209.35, "end": 1209.67, "word": " anything", "probability": 0.366455078125}, {"start": 1209.67, "end": 1210.79, "word": " For", "probability": 0.2076416015625}, {"start": 1210.79, "end": 1211.99, "word": " example,", "probability": 0.9130859375}, {"start": 1212.15, "end": 1212.23, "word": " there", "probability": 0.2578125}, {"start": 1212.23, "end": 1212.35, "word": " is", "probability": 0.7109375}, {"start": 1212.35, "end": 1212.57, "word": " something", "probability": 0.2373046875}, {"start": 1212.57, "end": 1212.81, "word": " called", "probability": 0.72900390625}, {"start": 1212.81, "end": 1213.07, "word": " add", "probability": 0.59228515625}, {"start": 1213.07, "end": 1213.51, "word": " handler,", "probability": 0.5302734375}, {"start": 1213.75, "end": 1214.29, "word": " new", "probability": 0.59130859375}, {"start": 1214.29, "end": 1214.87, "word": " file", "probability": 0.80908203125}, {"start": 1214.87, "end": 1215.89, "word": " handler,", "probability": 0.91943359375}, {"start": 1215.99, "end": 1216.05, "word": " and", "probability": 0.640625}, {"start": 1216.05, "end": 1216.27, "word": " give", "probability": 0.11077880859375}, {"start": 1216.27, "end": 1216.49, "word": " it", "probability": 0.82763671875}, {"start": 1216.49, "end": 1216.75, "word": " a", "probability": 0.387939453125}, {"start": 1216.75, "end": 1217.07, "word": " file", "probability": 0.64990234375}, {"start": 1217.07, "end": 1217.15, "word": " name", "probability": 0.56201171875}, {"start": 1217.15, "end": 1218.39, "word": " that", "probability": 0.5126953125}, {"start": 1218.39, "end": 1218.71, "word": " connects", "probability": 0.457275390625}, {"start": 1218.71, "end": 1218.99, "word": " to", "probability": 0.642578125}, {"start": 1218.99, "end": 1219.01, "word": " it,", "probability": 0.90234375}, {"start": 1219.01, "end": 1219.15, "word": " for", "probability": 0.6767578125}, {"start": 1219.15, "end": 1219.25, "word": " example,", "probability": 0.93798828125}, {"start": 1219.39, "end": 1219.71, "word": " test", "probability": 0.85400390625}, {"start": 1219.71, "end": 1220.61, "word": ".txt", "probability": 0.8857421875}, {"start": 1220.61, "end": 1222.21, "word": " So", "probability": 0.18994140625}, {"start": 1222.21, "end": 1222.51, "word": " if", "probability": 0.362548828125}, {"start": 1222.51, "end": 1223.45, "word": " we", "probability": 0.62255859375}, {"start": 1223.45, "end": 1223.71, "word": " write", "probability": 0.427490234375}, {"start": 1223.71, "end": 1224.01, "word": " on", "probability": 0.1341552734375}, {"start": 1224.01, "end": 1224.05, "word": " our", "probability": 0.369873046875}, {"start": 1224.05, "end": 1224.05, "word": " logger,", "probability": 0.797607421875}, {"start": 1224.17, "end": 1225.15, "word": " everything", "probability": 0.763671875}, {"start": 1225.15, "end": 1225.45, "word": " will", "probability": 0.318603515625}, {"start": 1225.45, "end": 1225.51, "word": " be", "probability": 0.7001953125}, {"start": 1225.51, "end": 1225.73, "word": " stored", "probability": 0.73193359375}, {"start": 1225.73, "end": 1225.87, "word": " in", "probability": 0.8037109375}, {"start": 1225.87, "end": 1225.93, "word": " a", "probability": 0.619140625}, {"start": 1225.93, "end": 1226.11, "word": " file", "probability": 0.84619140625}, {"start": 1226.11, "end": 1226.33, "word": " called", "probability": 0.4697265625}, {"start": 1226.33, "end": 1226.79, "word": " test", "probability": 0.87939453125}, {"start": 1226.79, "end": 1227.79, "word": ".txt", "probability": 0.9361979166666666}, {"start": 1227.79, "end": 1228.69, "word": " Ok,", "probability": 0.3154296875}, {"start": 1228.77, "end": 1228.91, "word": " we're", "probability": 0.5098876953125}, {"start": 1228.91, "end": 1229.11, "word": " done.", "probability": 0.88525390625}, {"start": 1229.59, "end": 1230.03, "word": " How", "probability": 0.27490234375}, {"start": 1230.03, "end": 1230.15, "word": " do", "probability": 0.49755859375}, {"start": 1230.15, "end": 1230.19, "word": " we", "probability": 0.88330078125}, {"start": 1230.19, "end": 1230.47, "word": " write?", "probability": 0.86328125}, {"start": 1230.93, "end": 1231.45, "word": " Logger", "probability": 0.794189453125}, {"start": 1231.45, "end": 1232.37, "word": ".log", "probability": 0.838623046875}], "temperature": 1.0}, {"id": 49, "seek": 125077, "start": 1240.21, "end": 1250.77, "text": " What kind of message do you want to write? Because sometimes the message is info, sometimes it is warning, sometimes it is severe", "tokens": [708, 733, 295, 3636, 360, 291, 528, 281, 2464, 30, 1436, 2171, 264, 3636, 307, 13614, 11, 2171, 309, 307, 9164, 11, 2171, 309, 307, 8922], "avg_logprob": -0.5668402733626189, "compression_ratio": 1.4444444444444444, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 1240.2099999999998, "end": 1240.85, "word": " What", "probability": 0.0906982421875}, {"start": 1240.85, "end": 1241.49, "word": " kind", "probability": 0.315185546875}, {"start": 1241.49, "end": 1241.69, "word": " of", "probability": 0.97119140625}, {"start": 1241.69, "end": 1242.01, "word": " message", "probability": 0.7666015625}, {"start": 1242.01, "end": 1242.17, "word": " do", "probability": 0.437744140625}, {"start": 1242.17, "end": 1242.29, "word": " you", "probability": 0.9541015625}, {"start": 1242.29, "end": 1242.29, "word": " want", "probability": 0.469482421875}, {"start": 1242.29, "end": 1242.37, "word": " to", "probability": 0.9326171875}, {"start": 1242.37, "end": 1242.59, "word": " write?", "probability": 0.6904296875}, {"start": 1243.09, "end": 1243.21, "word": " Because", "probability": 0.41552734375}, {"start": 1243.21, "end": 1243.53, "word": " sometimes", "probability": 0.59765625}, {"start": 1243.53, "end": 1243.61, "word": " the", "probability": 0.54443359375}, {"start": 1243.61, "end": 1243.91, "word": " message", "probability": 0.91552734375}, {"start": 1243.91, "end": 1244.39, "word": " is", "probability": 0.5439453125}, {"start": 1244.39, "end": 1244.87, "word": " info,", "probability": 0.245361328125}, {"start": 1246.45, "end": 1246.63, "word": " sometimes", "probability": 0.64892578125}, {"start": 1246.63, "end": 1247.53, "word": " it", "probability": 0.45751953125}, {"start": 1247.53, "end": 1247.97, "word": " is", "probability": 0.50244140625}, {"start": 1247.97, "end": 1248.43, "word": " warning,", "probability": 0.81103515625}, {"start": 1249.67, "end": 1249.91, "word": " sometimes", "probability": 0.90576171875}, {"start": 1249.91, "end": 1250.09, "word": " it", "probability": 0.7451171875}, {"start": 1250.09, "end": 1250.29, "word": " is", "probability": 0.90869140625}, {"start": 1250.29, "end": 1250.77, "word": " severe", "probability": 0.87109375}], "temperature": 1.0}, {"id": 50, "seek": 127809, "start": 1251.94, "end": 1278.1, "text": "means there is something wrong, wrong, fatal error this is for those who do tracking to see what kind of message it is for example, I care about errors, I search for messages that are wrong for example info is just information that someone modified something someone made a login for example this is info we can say Ahmed logged in the system", "tokens": [1398, 599, 456, 307, 746, 2085, 11, 2085, 11, 24069, 6713, 341, 307, 337, 729, 567, 360, 11603, 281, 536, 437, 733, 295, 3636, 309, 307, 337, 1365, 11, 286, 1127, 466, 13603, 11, 286, 3164, 337, 7897, 300, 366, 2085, 337, 1365, 13614, 307, 445, 1589, 300, 1580, 15873, 746, 1580, 1027, 257, 24276, 337, 1365, 341, 307, 13614, 321, 393, 584, 39189, 27231, 294, 264, 1185], "avg_logprob": -0.6173007039056309, "compression_ratio": 1.8191489361702127, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 1251.94, "end": 1252.22, "word": "means", "probability": 0.4466552734375}, {"start": 1252.22, "end": 1252.3, "word": " there", "probability": 0.3291015625}, {"start": 1252.3, "end": 1252.36, "word": " is", "probability": 0.68408203125}, {"start": 1252.36, "end": 1252.58, "word": " something", "probability": 0.7001953125}, {"start": 1252.58, "end": 1252.9, "word": " wrong,", "probability": 0.7431640625}, {"start": 1253.1, "end": 1253.32, "word": " wrong,", "probability": 0.1693115234375}, {"start": 1253.66, "end": 1254.24, "word": " fatal", "probability": 0.314697265625}, {"start": 1254.24, "end": 1254.6, "word": " error", "probability": 0.861328125}, {"start": 1254.6, "end": 1255.78, "word": " this", "probability": 0.1578369140625}, {"start": 1255.78, "end": 1256.48, "word": " is", "probability": 0.77685546875}, {"start": 1256.48, "end": 1256.74, "word": " for", "probability": 0.430908203125}, {"start": 1256.74, "end": 1257.86, "word": " those", "probability": 0.2088623046875}, {"start": 1257.86, "end": 1258.02, "word": " who", "probability": 0.66845703125}, {"start": 1258.02, "end": 1258.42, "word": " do", "probability": 0.438232421875}, {"start": 1258.42, "end": 1258.98, "word": " tracking", "probability": 0.86279296875}, {"start": 1258.98, "end": 1259.2, "word": " to", "probability": 0.59619140625}, {"start": 1259.2, "end": 1259.48, "word": " see", "probability": 0.56982421875}, {"start": 1259.48, "end": 1259.84, "word": " what", "probability": 0.7392578125}, {"start": 1259.84, "end": 1260.0, "word": " kind", "probability": 0.513671875}, {"start": 1260.0, "end": 1260.08, "word": " of", "probability": 0.96435546875}, {"start": 1260.08, "end": 1260.28, "word": " message", "probability": 0.8330078125}, {"start": 1260.28, "end": 1260.48, "word": " it", "probability": 0.414306640625}, {"start": 1260.48, "end": 1260.86, "word": " is", "probability": 0.9130859375}, {"start": 1260.86, "end": 1261.2, "word": " for", "probability": 0.423095703125}, {"start": 1261.2, "end": 1261.38, "word": " example,", "probability": 0.9365234375}, {"start": 1261.4, "end": 1261.56, "word": " I", "probability": 0.771484375}, {"start": 1261.56, "end": 1261.82, "word": " care", "probability": 0.308837890625}, {"start": 1261.82, "end": 1261.96, "word": " about", "probability": 0.853515625}, {"start": 1261.96, "end": 1262.28, "word": " errors,", "probability": 0.58056640625}, {"start": 1262.38, "end": 1262.48, "word": " I", "probability": 0.7822265625}, {"start": 1262.48, "end": 1262.88, "word": " search", "probability": 0.56396484375}, {"start": 1262.88, "end": 1263.1, "word": " for", "probability": 0.3095703125}, {"start": 1263.1, "end": 1263.56, "word": " messages", "probability": 0.43408203125}, {"start": 1263.56, "end": 1264.4, "word": " that", "probability": 0.357177734375}, {"start": 1264.4, "end": 1264.76, "word": " are", "probability": 0.7861328125}, {"start": 1264.76, "end": 1264.76, "word": " wrong", "probability": 0.513671875}, {"start": 1264.76, "end": 1264.86, "word": " for", "probability": 0.21875}, {"start": 1264.86, "end": 1265.46, "word": " example", "probability": 0.919921875}, {"start": 1265.46, "end": 1266.34, "word": " info", "probability": 0.71533203125}, {"start": 1266.34, "end": 1266.52, "word": " is", "probability": 0.438720703125}, {"start": 1266.52, "end": 1266.6, "word": " just", "probability": 0.4296875}, {"start": 1266.6, "end": 1266.96, "word": " information", "probability": 0.654296875}, {"start": 1266.96, "end": 1267.44, "word": " that", "probability": 0.45166015625}, {"start": 1267.44, "end": 1267.74, "word": " someone", "probability": 0.50537109375}, {"start": 1267.74, "end": 1268.44, "word": " modified", "probability": 0.337646484375}, {"start": 1268.44, "end": 1268.74, "word": " something", "probability": 0.38232421875}, {"start": 1268.74, "end": 1269.06, "word": " someone", "probability": 0.250244140625}, {"start": 1269.06, "end": 1269.56, "word": " made", "probability": 0.45458984375}, {"start": 1269.56, "end": 1269.68, "word": " a", "probability": 0.55419921875}, {"start": 1269.68, "end": 1269.92, "word": " login", "probability": 0.85107421875}, {"start": 1269.92, "end": 1270.14, "word": " for", "probability": 0.46533203125}, {"start": 1270.14, "end": 1270.82, "word": " example", "probability": 0.95703125}, {"start": 1270.82, "end": 1271.72, "word": " this", "probability": 0.65771484375}, {"start": 1271.72, "end": 1271.8, "word": " is", "probability": 0.5}, {"start": 1271.8, "end": 1272.18, "word": " info", "probability": 0.8134765625}, {"start": 1272.18, "end": 1274.18, "word": " we", "probability": 0.470703125}, {"start": 1274.18, "end": 1274.3, "word": " can", "probability": 0.853515625}, {"start": 1274.3, "end": 1274.68, "word": " say", "probability": 0.92138671875}, {"start": 1274.68, "end": 1275.24, "word": " Ahmed", "probability": 0.5}, {"start": 1275.24, "end": 1276.18, "word": " logged", "probability": 0.7490234375}, {"start": 1276.18, "end": 1277.42, "word": " in", "probability": 0.86328125}, {"start": 1277.42, "end": 1277.76, "word": " the", "probability": 0.91162109375}, {"start": 1277.76, "end": 1278.1, "word": " system", "probability": 0.95361328125}], "temperature": 1.0}, {"id": 51, "seek": 130998, "start": 1282.0, "end": 1309.98, "text": " Logger reads the message channel, I want to say level severe, I say for example server crashed, fatal error, what happened to my hand? Mistake, even this message will print it in red, okay? That's it, it's very simple, here I created the logger, linked it to a file, and whenever you want to print the message, what do you say? Log, okay? And it will read it.", "tokens": [10824, 1321, 15700, 264, 3636, 2269, 11, 286, 528, 281, 584, 1496, 8922, 11, 286, 584, 337, 1365, 7154, 24190, 11, 24069, 6713, 11, 437, 2011, 281, 452, 1011, 30, 20166, 619, 11, 754, 341, 3636, 486, 4482, 309, 294, 2182, 11, 1392, 30, 663, 311, 309, 11, 309, 311, 588, 2199, 11, 510, 286, 2942, 264, 3565, 1321, 11, 9408, 309, 281, 257, 3991, 11, 293, 5699, 291, 528, 281, 4482, 264, 3636, 11, 437, 360, 291, 584, 30, 10824, 11, 1392, 30, 400, 309, 486, 1401, 309, 13], "avg_logprob": -0.5642170499969315, "compression_ratio": 1.6216216216216217, "no_speech_prob": 2.3245811462402344e-05, "words": [{"start": 1282.0000000000002, "end": 1282.3600000000001, "word": " Logger", "probability": 0.4534912109375}, {"start": 1282.3600000000001, "end": 1282.72, "word": " reads", "probability": 0.180908203125}, {"start": 1282.72, "end": 1283.1, "word": " the", "probability": 0.53271484375}, {"start": 1283.1, "end": 1283.42, "word": " message", "probability": 0.52197265625}, {"start": 1283.42, "end": 1283.46, "word": " channel,", "probability": 0.66796875}, {"start": 1284.12, "end": 1284.52, "word": " I", "probability": 0.433349609375}, {"start": 1284.52, "end": 1284.66, "word": " want", "probability": 0.354736328125}, {"start": 1284.66, "end": 1284.74, "word": " to", "probability": 0.94580078125}, {"start": 1284.74, "end": 1284.9, "word": " say", "probability": 0.38623046875}, {"start": 1284.9, "end": 1285.52, "word": " level", "probability": 0.303466796875}, {"start": 1285.52, "end": 1287.48, "word": " severe,", "probability": 0.64306640625}, {"start": 1289.52, "end": 1289.68, "word": " I", "probability": 0.458251953125}, {"start": 1289.68, "end": 1289.88, "word": " say", "probability": 0.51416015625}, {"start": 1289.88, "end": 1290.06, "word": " for", "probability": 0.4892578125}, {"start": 1290.06, "end": 1290.18, "word": " example", "probability": 0.947265625}, {"start": 1290.18, "end": 1290.68, "word": " server", "probability": 0.556640625}, {"start": 1290.68, "end": 1291.38, "word": " crashed,", "probability": 0.80615234375}, {"start": 1292.48, "end": 1294.2, "word": " fatal", "probability": 0.8525390625}, {"start": 1294.2, "end": 1294.64, "word": " error,", "probability": 0.875}, {"start": 1295.88, "end": 1296.14, "word": " what", "probability": 0.1279296875}, {"start": 1296.14, "end": 1296.14, "word": " happened", "probability": 0.51123046875}, {"start": 1296.14, "end": 1296.2, "word": " to", "probability": 0.60693359375}, {"start": 1296.2, "end": 1296.34, "word": " my", "probability": 0.78173828125}, {"start": 1296.34, "end": 1296.48, "word": " hand?", "probability": 0.78662109375}, {"start": 1297.26, "end": 1297.56, "word": " Mistake,", "probability": 0.53106689453125}, {"start": 1297.66, "end": 1297.82, "word": " even", "probability": 0.73779296875}, {"start": 1297.82, "end": 1298.0, "word": " this", "probability": 0.84619140625}, {"start": 1298.0, "end": 1298.2, "word": " message", "probability": 0.85498046875}, {"start": 1298.2, "end": 1298.34, "word": " will", "probability": 0.5546875}, {"start": 1298.34, "end": 1298.5, "word": " print", "probability": 0.576171875}, {"start": 1298.5, "end": 1298.7, "word": " it", "probability": 0.32080078125}, {"start": 1298.7, "end": 1298.76, "word": " in", "probability": 0.302001953125}, {"start": 1298.76, "end": 1299.04, "word": " red,", "probability": 0.9423828125}, {"start": 1300.04, "end": 1300.3, "word": " okay?", "probability": 0.32177734375}, {"start": 1301.0, "end": 1301.32, "word": " That's", "probability": 0.5767822265625}, {"start": 1301.32, "end": 1301.32, "word": " it,", "probability": 0.72412109375}, {"start": 1301.36, "end": 1301.56, "word": " it's", "probability": 0.61474609375}, {"start": 1301.56, "end": 1301.58, "word": " very", "probability": 0.55810546875}, {"start": 1301.58, "end": 1302.06, "word": " simple,", "probability": 0.89208984375}, {"start": 1302.32, "end": 1302.48, "word": " here", "probability": 0.68994140625}, {"start": 1302.48, "end": 1302.6, "word": " I", "probability": 0.859375}, {"start": 1302.6, "end": 1302.84, "word": " created", "probability": 0.630859375}, {"start": 1302.84, "end": 1303.0, "word": " the", "probability": 0.5478515625}, {"start": 1303.0, "end": 1303.28, "word": " logger,", "probability": 0.853271484375}, {"start": 1303.32, "end": 1303.56, "word": " linked", "probability": 0.451171875}, {"start": 1303.56, "end": 1303.7, "word": " it", "probability": 0.53076171875}, {"start": 1303.7, "end": 1303.74, "word": " to", "probability": 0.51953125}, {"start": 1303.74, "end": 1303.88, "word": " a", "probability": 0.429931640625}, {"start": 1303.88, "end": 1304.1, "word": " file,", "probability": 0.85498046875}, {"start": 1304.64, "end": 1304.8, "word": " and", "probability": 0.89892578125}, {"start": 1304.8, "end": 1304.98, "word": " whenever", "probability": 0.296875}, {"start": 1304.98, "end": 1305.2, "word": " you", "probability": 0.73779296875}, {"start": 1305.2, "end": 1305.2, "word": " want", "probability": 0.71875}, {"start": 1305.2, "end": 1305.28, "word": " to", "probability": 0.9580078125}, {"start": 1305.28, "end": 1305.4, "word": " print", "probability": 0.9345703125}, {"start": 1305.4, "end": 1305.56, "word": " the", "probability": 0.60107421875}, {"start": 1305.56, "end": 1305.74, "word": " message,", "probability": 0.892578125}, {"start": 1305.82, "end": 1305.9, "word": " what", "probability": 0.8251953125}, {"start": 1305.9, "end": 1305.96, "word": " do", "probability": 0.85693359375}, {"start": 1305.96, "end": 1306.0, "word": " you", "probability": 0.9638671875}, {"start": 1306.0, "end": 1306.16, "word": " say?", "probability": 0.734375}, {"start": 1307.56, "end": 1307.92, "word": " Log,", "probability": 0.404296875}, {"start": 1309.06, "end": 1309.3, "word": " okay?", "probability": 0.57470703125}, {"start": 1309.44, "end": 1309.56, "word": " And", "probability": 0.62646484375}, {"start": 1309.56, "end": 1309.7, "word": " it", "probability": 0.447998046875}, {"start": 1309.7, "end": 1309.7, "word": " will", "probability": 0.60693359375}, {"start": 1309.7, "end": 1309.78, "word": " read", "probability": 0.77880859375}, {"start": 1309.78, "end": 1309.98, "word": " it.", "probability": 0.70556640625}], "temperature": 1.0}, {"id": 52, "seek": 133923, "start": 1311.11, "end": 1339.23, "text": " this is the first message but you see it in red it shows you as an exception this message is an info it was written in this date and time through this class and through this method it even shows you which class wrote it and which method is going to print the message and it was supposed to be written on a file this is a printout on the console but they are supposed to be in a file where is the file?", "tokens": [341, 307, 264, 700, 3636, 457, 291, 536, 309, 294, 2182, 309, 3110, 291, 382, 364, 11183, 341, 3636, 307, 364, 13614, 309, 390, 3720, 294, 341, 4002, 293, 565, 807, 341, 1508, 293, 807, 341, 3170, 309, 754, 3110, 291, 597, 1508, 4114, 309, 293, 597, 3170, 307, 516, 281, 4482, 264, 3636, 293, 309, 390, 3442, 281, 312, 3720, 322, 257, 3991, 341, 307, 257, 4482, 346, 322, 264, 11076, 457, 436, 366, 3442, 281, 312, 294, 257, 3991, 689, 307, 264, 3991, 30], "avg_logprob": -0.6023706896551724, "compression_ratio": 1.99009900990099, "no_speech_prob": 5.900859832763672e-06, "words": [{"start": 1311.11, "end": 1311.59, "word": " this", "probability": 0.225830078125}, {"start": 1311.59, "end": 1311.61, "word": " is", "probability": 0.81005859375}, {"start": 1311.61, "end": 1312.03, "word": " the", "probability": 0.82666015625}, {"start": 1312.03, "end": 1312.11, "word": " first", "probability": 0.791015625}, {"start": 1312.11, "end": 1312.11, "word": " message", "probability": 0.5654296875}, {"start": 1312.11, "end": 1312.31, "word": " but", "probability": 0.292724609375}, {"start": 1312.31, "end": 1312.43, "word": " you", "probability": 0.2305908203125}, {"start": 1312.43, "end": 1312.57, "word": " see", "probability": 0.362060546875}, {"start": 1312.57, "end": 1312.69, "word": " it", "probability": 0.443603515625}, {"start": 1312.69, "end": 1312.69, "word": " in", "probability": 0.6904296875}, {"start": 1312.69, "end": 1312.93, "word": " red", "probability": 0.89306640625}, {"start": 1312.93, "end": 1313.05, "word": " it", "probability": 0.2247314453125}, {"start": 1313.05, "end": 1313.27, "word": " shows", "probability": 0.3076171875}, {"start": 1313.27, "end": 1313.45, "word": " you", "probability": 0.5986328125}, {"start": 1313.45, "end": 1313.67, "word": " as", "probability": 0.2861328125}, {"start": 1313.67, "end": 1313.91, "word": " an", "probability": 0.67041015625}, {"start": 1313.91, "end": 1314.33, "word": " exception", "probability": 0.92724609375}, {"start": 1314.33, "end": 1315.87, "word": " this", "probability": 0.58740234375}, {"start": 1315.87, "end": 1316.35, "word": " message", "probability": 0.51904296875}, {"start": 1316.35, "end": 1316.61, "word": " is", "probability": 0.83740234375}, {"start": 1316.61, "end": 1317.05, "word": " an", "probability": 0.291259765625}, {"start": 1317.05, "end": 1317.33, "word": " info", "probability": 0.80908203125}, {"start": 1317.33, "end": 1318.51, "word": " it", "probability": 0.3037109375}, {"start": 1318.51, "end": 1318.55, "word": " was", "probability": 0.81201171875}, {"start": 1318.55, "end": 1318.81, "word": " written", "probability": 0.9033203125}, {"start": 1318.81, "end": 1318.97, "word": " in", "probability": 0.537109375}, {"start": 1318.97, "end": 1319.09, "word": " this", "probability": 0.734375}, {"start": 1319.09, "end": 1319.61, "word": " date", "probability": 0.58642578125}, {"start": 1319.61, "end": 1320.11, "word": " and", "probability": 0.348876953125}, {"start": 1320.11, "end": 1320.47, "word": " time", "probability": 0.6787109375}, {"start": 1320.47, "end": 1321.53, "word": " through", "probability": 0.53076171875}, {"start": 1321.53, "end": 1321.83, "word": " this", "probability": 0.8916015625}, {"start": 1321.83, "end": 1322.21, "word": " class", "probability": 0.92626953125}, {"start": 1322.21, "end": 1323.07, "word": " and", "probability": 0.912109375}, {"start": 1323.07, "end": 1323.35, "word": " through", "probability": 0.2337646484375}, {"start": 1323.35, "end": 1323.57, "word": " this", "probability": 0.935546875}, {"start": 1323.57, "end": 1323.83, "word": " method", "probability": 0.96630859375}, {"start": 1323.83, "end": 1325.03, "word": " it", "probability": 0.51904296875}, {"start": 1325.03, "end": 1325.31, "word": " even", "probability": 0.322265625}, {"start": 1325.31, "end": 1325.51, "word": " shows", "probability": 0.775390625}, {"start": 1325.51, "end": 1325.65, "word": " you", "probability": 0.86376953125}, {"start": 1325.65, "end": 1326.07, "word": " which", "probability": 0.277587890625}, {"start": 1326.07, "end": 1326.81, "word": " class", "probability": 0.93896484375}, {"start": 1326.81, "end": 1327.19, "word": " wrote", "probability": 0.343017578125}, {"start": 1327.19, "end": 1327.33, "word": " it", "probability": 0.367919921875}, {"start": 1327.33, "end": 1327.45, "word": " and", "probability": 0.79541015625}, {"start": 1327.45, "end": 1328.15, "word": " which", "probability": 0.580078125}, {"start": 1328.15, "end": 1328.47, "word": " method", "probability": 0.890625}, {"start": 1328.47, "end": 1328.67, "word": " is", "probability": 0.25244140625}, {"start": 1328.67, "end": 1328.73, "word": " going", "probability": 0.69921875}, {"start": 1328.73, "end": 1328.73, "word": " to", "probability": 0.96923828125}, {"start": 1328.73, "end": 1328.91, "word": " print", "probability": 0.395263671875}, {"start": 1328.91, "end": 1329.05, "word": " the", "probability": 0.284423828125}, {"start": 1329.05, "end": 1330.03, "word": " message", "probability": 0.865234375}, {"start": 1330.03, "end": 1331.33, "word": " and", "probability": 0.34912109375}, {"start": 1331.33, "end": 1331.43, "word": " it", "probability": 0.312255859375}, {"start": 1331.43, "end": 1331.43, "word": " was", "probability": 0.35546875}, {"start": 1331.43, "end": 1331.65, "word": " supposed", "probability": 0.51416015625}, {"start": 1331.65, "end": 1331.93, "word": " to", "probability": 0.96240234375}, {"start": 1331.93, "end": 1332.57, "word": " be", "probability": 0.734375}, {"start": 1332.57, "end": 1332.57, "word": " written", "probability": 0.73974609375}, {"start": 1332.57, "end": 1332.73, "word": " on", "probability": 0.72900390625}, {"start": 1332.73, "end": 1332.79, "word": " a", "probability": 0.437744140625}, {"start": 1332.79, "end": 1332.99, "word": " file", "probability": 0.80078125}, {"start": 1332.99, "end": 1333.71, "word": " this", "probability": 0.215087890625}, {"start": 1333.71, "end": 1333.87, "word": " is", "probability": 0.8212890625}, {"start": 1333.87, "end": 1334.11, "word": " a", "probability": 0.354736328125}, {"start": 1334.11, "end": 1334.35, "word": " printout", "probability": 0.4521484375}, {"start": 1334.35, "end": 1334.93, "word": " on", "probability": 0.436767578125}, {"start": 1334.93, "end": 1335.23, "word": " the", "probability": 0.5849609375}, {"start": 1335.23, "end": 1335.65, "word": " console", "probability": 0.73828125}, {"start": 1335.65, "end": 1336.27, "word": " but", "probability": 0.58544921875}, {"start": 1336.27, "end": 1336.83, "word": " they", "probability": 0.33740234375}, {"start": 1336.83, "end": 1336.91, "word": " are", "probability": 0.51123046875}, {"start": 1336.91, "end": 1337.11, "word": " supposed", "probability": 0.86279296875}, {"start": 1337.11, "end": 1337.29, "word": " to", "probability": 0.97021484375}, {"start": 1337.29, "end": 1337.33, "word": " be", "probability": 0.90478515625}, {"start": 1337.33, "end": 1337.37, "word": " in", "probability": 0.200927734375}, {"start": 1337.37, "end": 1338.47, "word": " a", "probability": 0.5234375}, {"start": 1338.47, "end": 1338.69, "word": " file", "probability": 0.8837890625}, {"start": 1338.69, "end": 1338.87, "word": " where", "probability": 0.53857421875}, {"start": 1338.87, "end": 1338.99, "word": " is", "probability": 0.62841796875}, {"start": 1338.99, "end": 1339.03, "word": " the", "probability": 0.8095703125}, {"start": 1339.03, "end": 1339.23, "word": " file?", "probability": 0.8818359375}], "temperature": 1.0}, {"id": 53, "seek": 135499, "start": 1341.59, "end": 1354.99, "text": " When you click on the project, you will see a box called test.txt", "tokens": [1133, 291, 2052, 322, 264, 1716, 11, 291, 486, 536, 257, 2424, 1219, 1500, 13, 83, 734], "avg_logprob": -0.9079861044883728, "compression_ratio": 0.9705882352941176, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 1341.59, "end": 1341.87, "word": " When", "probability": 0.080322265625}, {"start": 1341.87, "end": 1341.95, "word": " you", "probability": 0.74658203125}, {"start": 1341.95, "end": 1342.15, "word": " click", "probability": 0.2032470703125}, {"start": 1342.15, "end": 1342.35, "word": " on", "probability": 0.8623046875}, {"start": 1342.35, "end": 1342.43, "word": " the", "probability": 0.326416015625}, {"start": 1342.43, "end": 1342.83, "word": " project,", "probability": 0.80322265625}, {"start": 1351.73, "end": 1352.19, "word": " you", "probability": 0.54638671875}, {"start": 1352.19, "end": 1352.33, "word": " will", "probability": 0.492431640625}, {"start": 1352.33, "end": 1352.51, "word": " see", "probability": 0.58837890625}, {"start": 1352.51, "end": 1352.77, "word": " a", "probability": 0.331787109375}, {"start": 1352.77, "end": 1352.81, "word": " box", "probability": 0.12432861328125}, {"start": 1352.81, "end": 1352.81, "word": " called", "probability": 0.269287109375}, {"start": 1352.81, "end": 1353.17, "word": " test", "probability": 0.41064453125}, {"start": 1353.17, "end": 1354.99, "word": ".txt", "probability": 0.91650390625}], "temperature": 1.0}, {"id": 54, "seek": 139099, "start": 1363.23, "end": 1390.99, "text": " Locked in millisecond Logar is the name of the logar in the book MyLogar is the name of the logar in the book The type of the message is info From any class that printed the message And from any method that shows you where exactly the message came from And this is the text of the message And this is another message Date and so on Where is the idea in this topic? We have not talked about it yet Where is the singleton in the story? Do you think that this logar that I created", "tokens": [16736, 292, 294, 27940, 18882, 10824, 289, 307, 264, 1315, 295, 264, 3565, 289, 294, 264, 1446, 1222, 43, 664, 289, 307, 264, 1315, 295, 264, 3565, 289, 294, 264, 1446, 440, 2010, 295, 264, 3636, 307, 13614, 3358, 604, 1508, 300, 13567, 264, 3636, 400, 490, 604, 3170, 300, 3110, 291, 689, 2293, 264, 3636, 1361, 490, 400, 341, 307, 264, 2487, 295, 264, 3636, 400, 341, 307, 1071, 3636, 31805, 293, 370, 322, 2305, 307, 264, 1558, 294, 341, 4829, 30, 492, 362, 406, 2825, 466, 309, 1939, 2305, 307, 264, 1522, 14806, 294, 264, 1657, 30, 1144, 291, 519, 300, 341, 3565, 289, 300, 286, 2942], "avg_logprob": -0.6250000216744163, "compression_ratio": 2.0168776371308015, "no_speech_prob": 1.0192394256591797e-05, "words": [{"start": 1363.23, "end": 1363.71, "word": " Locked", "probability": 0.4974517822265625}, {"start": 1363.71, "end": 1363.81, "word": " in", "probability": 0.5791015625}, {"start": 1363.81, "end": 1364.59, "word": " millisecond", "probability": 0.6805419921875}, {"start": 1364.59, "end": 1366.65, "word": " Logar", "probability": 0.65869140625}, {"start": 1366.65, "end": 1366.89, "word": " is", "probability": 0.1470947265625}, {"start": 1366.89, "end": 1367.39, "word": " the", "probability": 0.2359619140625}, {"start": 1367.39, "end": 1367.39, "word": " name", "probability": 0.63623046875}, {"start": 1367.39, "end": 1367.73, "word": " of", "probability": 0.8125}, {"start": 1367.73, "end": 1367.73, "word": " the", "probability": 0.4677734375}, {"start": 1367.73, "end": 1368.01, "word": " logar", "probability": 0.5645751953125}, {"start": 1368.01, "end": 1368.07, "word": " in", "probability": 0.400634765625}, {"start": 1368.07, "end": 1368.19, "word": " the", "probability": 0.646484375}, {"start": 1368.19, "end": 1368.39, "word": " book", "probability": 0.88037109375}, {"start": 1368.39, "end": 1369.35, "word": " MyLogar", "probability": 0.577423095703125}, {"start": 1369.35, "end": 1369.37, "word": " is", "probability": 0.35546875}, {"start": 1369.37, "end": 1369.37, "word": " the", "probability": 0.70556640625}, {"start": 1369.37, "end": 1369.37, "word": " name", "probability": 0.27294921875}, {"start": 1369.37, "end": 1369.37, "word": " of", "probability": 0.8935546875}, {"start": 1369.37, "end": 1369.37, "word": " the", "probability": 0.82275390625}, {"start": 1369.37, "end": 1369.37, "word": " logar", "probability": 0.73095703125}, {"start": 1369.37, "end": 1369.41, "word": " in", "probability": 0.358154296875}, {"start": 1369.41, "end": 1369.41, "word": " the", "probability": 0.865234375}, {"start": 1369.41, "end": 1369.41, "word": " book", "probability": 0.9375}, {"start": 1369.41, "end": 1369.59, "word": " The", "probability": 0.1505126953125}, {"start": 1369.59, "end": 1369.59, "word": " type", "probability": 0.52685546875}, {"start": 1369.59, "end": 1369.73, "word": " of", "probability": 0.94091796875}, {"start": 1369.73, "end": 1369.79, "word": " the", "probability": 0.31298828125}, {"start": 1369.79, "end": 1369.95, "word": " message", "probability": 0.80517578125}, {"start": 1369.95, "end": 1370.03, "word": " is", "probability": 0.390380859375}, {"start": 1370.03, "end": 1370.37, "word": " info", "probability": 0.481689453125}, {"start": 1370.37, "end": 1371.13, "word": " From", "probability": 0.1962890625}, {"start": 1371.13, "end": 1371.37, "word": " any", "probability": 0.427490234375}, {"start": 1371.37, "end": 1371.77, "word": " class", "probability": 0.876953125}, {"start": 1371.77, "end": 1371.91, "word": " that", "probability": 0.363525390625}, {"start": 1371.91, "end": 1372.17, "word": " printed", "probability": 0.65234375}, {"start": 1372.17, "end": 1372.39, "word": " the", "probability": 0.7724609375}, {"start": 1372.39, "end": 1372.67, "word": " message", "probability": 0.90869140625}, {"start": 1372.67, "end": 1373.13, "word": " And", "probability": 0.31591796875}, {"start": 1373.13, "end": 1373.27, "word": " from", "probability": 0.623046875}, {"start": 1373.27, "end": 1373.41, "word": " any", "probability": 0.87060546875}, {"start": 1373.41, "end": 1373.75, "word": " method", "probability": 0.9462890625}, {"start": 1373.75, "end": 1373.89, "word": " that", "probability": 0.54296875}, {"start": 1373.89, "end": 1374.13, "word": " shows", "probability": 0.359375}, {"start": 1374.13, "end": 1374.29, "word": " you", "probability": 0.685546875}, {"start": 1374.29, "end": 1374.75, "word": " where", "probability": 0.446533203125}, {"start": 1374.75, "end": 1375.33, "word": " exactly", "probability": 0.3828125}, {"start": 1375.33, "end": 1375.61, "word": " the", "probability": 0.6123046875}, {"start": 1375.61, "end": 1375.83, "word": " message", "probability": 0.88037109375}, {"start": 1375.83, "end": 1376.13, "word": " came", "probability": 0.7392578125}, {"start": 1376.13, "end": 1376.85, "word": " from", "probability": 0.818359375}, {"start": 1376.85, "end": 1377.09, "word": " And", "probability": 0.62451171875}, {"start": 1377.09, "end": 1377.19, "word": " this", "probability": 0.39208984375}, {"start": 1377.19, "end": 1377.23, "word": " is", "probability": 0.8740234375}, {"start": 1377.23, "end": 1377.35, "word": " the", "probability": 0.7216796875}, {"start": 1377.35, "end": 1377.43, "word": " text", "probability": 0.41650390625}, {"start": 1377.43, "end": 1377.49, "word": " of", "probability": 0.93310546875}, {"start": 1377.49, "end": 1377.91, "word": " the", "probability": 0.9052734375}, {"start": 1377.91, "end": 1377.91, "word": " message", "probability": 0.875}, {"start": 1377.91, "end": 1379.79, "word": " And", "probability": 0.61328125}, {"start": 1379.79, "end": 1380.27, "word": " this", "probability": 0.646484375}, {"start": 1380.27, "end": 1380.27, "word": " is", "probability": 0.9130859375}, {"start": 1380.27, "end": 1380.85, "word": " another", "probability": 0.69580078125}, {"start": 1380.85, "end": 1380.85, "word": " message", "probability": 0.8193359375}, {"start": 1380.85, "end": 1381.47, "word": " Date", "probability": 0.2998046875}, {"start": 1381.47, "end": 1382.61, "word": " and", "probability": 0.32177734375}, {"start": 1382.61, "end": 1382.97, "word": " so", "probability": 0.66064453125}, {"start": 1382.97, "end": 1383.49, "word": " on", "probability": 0.86083984375}, {"start": 1383.49, "end": 1384.47, "word": " Where", "probability": 0.13720703125}, {"start": 1384.47, "end": 1384.85, "word": " is", "probability": 0.8203125}, {"start": 1384.85, "end": 1384.93, "word": " the", "probability": 0.890625}, {"start": 1384.93, "end": 1385.09, "word": " idea", "probability": 0.6650390625}, {"start": 1385.09, "end": 1385.23, "word": " in", "probability": 0.42333984375}, {"start": 1385.23, "end": 1385.33, "word": " this", "probability": 0.724609375}, {"start": 1385.33, "end": 1385.57, "word": " topic?", "probability": 0.16796875}, {"start": 1385.65, "end": 1385.83, "word": " We", "probability": 0.460205078125}, {"start": 1385.83, "end": 1385.85, "word": " have", "probability": 0.2978515625}, {"start": 1385.85, "end": 1385.85, "word": " not", "probability": 0.90869140625}, {"start": 1385.85, "end": 1386.05, "word": " talked", "probability": 0.07720947265625}, {"start": 1386.05, "end": 1386.27, "word": " about", "probability": 0.849609375}, {"start": 1386.27, "end": 1386.29, "word": " it", "probability": 0.53369140625}, {"start": 1386.29, "end": 1386.29, "word": " yet", "probability": 0.802734375}, {"start": 1386.29, "end": 1386.59, "word": " Where", "probability": 0.63916015625}, {"start": 1386.59, "end": 1386.71, "word": " is", "probability": 0.89794921875}, {"start": 1386.71, "end": 1386.79, "word": " the", "probability": 0.4140625}, {"start": 1386.79, "end": 1387.13, "word": " singleton", "probability": 0.697509765625}, {"start": 1387.13, "end": 1387.33, "word": " in", "probability": 0.8134765625}, {"start": 1387.33, "end": 1387.43, "word": " the", "probability": 0.68212890625}, {"start": 1387.43, "end": 1387.71, "word": " story?", "probability": 0.92333984375}, {"start": 1388.31, "end": 1388.47, "word": " Do", "probability": 0.1248779296875}, {"start": 1388.47, "end": 1388.47, "word": " you", "probability": 0.94189453125}, {"start": 1388.47, "end": 1388.57, "word": " think", "probability": 0.396728515625}, {"start": 1388.57, "end": 1388.67, "word": " that", "probability": 0.7294921875}, {"start": 1388.67, "end": 1389.43, "word": " this", "probability": 0.5947265625}, {"start": 1389.43, "end": 1389.73, "word": " logar", "probability": 0.895751953125}, {"start": 1389.73, "end": 1390.39, "word": " that", "probability": 0.56201171875}, {"start": 1390.39, "end": 1390.59, "word": " I", "probability": 0.95654296875}, {"start": 1390.59, "end": 1390.99, "word": " created", "probability": 0.35595703125}], "temperature": 1.0}, {"id": 55, "seek": 142253, "start": 1393.35, "end": 1422.53, "text": " object one only and use it in every place so this will become what? not singleton how? very simple go to email class name it my singleton logar ok? this what I want it to contain? I want it to take this logar right? so this is my singleton logar", "tokens": [2657, 472, 787, 293, 764, 309, 294, 633, 1081, 370, 341, 486, 1813, 437, 30, 406, 1522, 14806, 577, 30, 588, 2199, 352, 281, 3796, 1508, 1315, 309, 452, 1522, 14806, 3565, 289, 3133, 30, 341, 437, 286, 528, 309, 281, 5304, 30, 286, 528, 309, 281, 747, 341, 3565, 289, 558, 30, 370, 341, 307, 452, 1522, 14806, 3565, 289], "avg_logprob": -0.5882056403544641, "compression_ratio": 1.6849315068493151, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 1393.35, "end": 1393.75, "word": " object", "probability": 0.104736328125}, {"start": 1393.75, "end": 1394.07, "word": " one", "probability": 0.461181640625}, {"start": 1394.07, "end": 1394.47, "word": " only", "probability": 0.46484375}, {"start": 1394.47, "end": 1394.61, "word": " and", "probability": 0.64599609375}, {"start": 1394.61, "end": 1394.89, "word": " use", "probability": 0.70263671875}, {"start": 1394.89, "end": 1396.05, "word": " it", "probability": 0.87158203125}, {"start": 1396.05, "end": 1396.17, "word": " in", "probability": 0.201904296875}, {"start": 1396.17, "end": 1396.39, "word": " every", "probability": 0.464111328125}, {"start": 1396.39, "end": 1396.61, "word": " place", "probability": 0.6123046875}, {"start": 1396.61, "end": 1397.35, "word": " so", "probability": 0.2384033203125}, {"start": 1397.35, "end": 1397.55, "word": " this", "probability": 0.560546875}, {"start": 1397.55, "end": 1397.67, "word": " will", "probability": 0.15185546875}, {"start": 1397.67, "end": 1397.93, "word": " become", "probability": 0.1094970703125}, {"start": 1397.93, "end": 1398.25, "word": " what?", "probability": 0.426513671875}, {"start": 1398.87, "end": 1399.63, "word": " not", "probability": 0.35107421875}, {"start": 1399.63, "end": 1399.97, "word": " singleton", "probability": 0.92138671875}, {"start": 1399.97, "end": 1400.43, "word": " how?", "probability": 0.418701171875}, {"start": 1400.73, "end": 1400.95, "word": " very", "probability": 0.57958984375}, {"start": 1400.95, "end": 1401.43, "word": " simple", "probability": 0.66064453125}, {"start": 1401.43, "end": 1402.13, "word": " go", "probability": 0.57666015625}, {"start": 1402.13, "end": 1402.21, "word": " to", "probability": 0.69140625}, {"start": 1402.21, "end": 1402.59, "word": " email", "probability": 0.15380859375}, {"start": 1402.59, "end": 1404.61, "word": " class", "probability": 0.61767578125}, {"start": 1404.61, "end": 1404.93, "word": " name", "probability": 0.390869140625}, {"start": 1404.93, "end": 1405.17, "word": " it", "probability": 0.87841796875}, {"start": 1405.17, "end": 1405.61, "word": " my", "probability": 0.83740234375}, {"start": 1405.61, "end": 1407.29, "word": " singleton", "probability": 0.87548828125}, {"start": 1407.29, "end": 1408.59, "word": " logar", "probability": 0.6171875}, {"start": 1408.59, "end": 1411.45, "word": " ok?", "probability": 0.321533203125}, {"start": 1412.25, "end": 1412.75, "word": " this", "probability": 0.50634765625}, {"start": 1412.75, "end": 1413.15, "word": " what", "probability": 0.481689453125}, {"start": 1413.15, "end": 1413.45, "word": " I", "probability": 0.23828125}, {"start": 1413.45, "end": 1413.45, "word": " want", "probability": 0.55029296875}, {"start": 1413.45, "end": 1413.89, "word": " it", "probability": 0.55126953125}, {"start": 1413.89, "end": 1413.91, "word": " to", "probability": 0.8125}, {"start": 1413.91, "end": 1414.29, "word": " contain?", "probability": 0.66259765625}, {"start": 1414.79, "end": 1414.95, "word": " I", "probability": 0.57470703125}, {"start": 1414.95, "end": 1415.07, "word": " want", "probability": 0.875}, {"start": 1415.07, "end": 1415.35, "word": " it", "probability": 0.76171875}, {"start": 1415.35, "end": 1415.79, "word": " to", "probability": 0.904296875}, {"start": 1415.79, "end": 1416.49, "word": " take", "probability": 0.7568359375}, {"start": 1416.49, "end": 1416.61, "word": " this", "probability": 0.7783203125}, {"start": 1416.61, "end": 1417.13, "word": " logar", "probability": 0.861572265625}, {"start": 1417.13, "end": 1417.59, "word": " right?", "probability": 0.59716796875}, {"start": 1418.43, "end": 1418.65, "word": " so", "probability": 0.2498779296875}, {"start": 1418.65, "end": 1418.79, "word": " this", "probability": 0.422607421875}, {"start": 1418.79, "end": 1418.97, "word": " is", "probability": 0.759765625}, {"start": 1418.97, "end": 1421.33, "word": " my", "probability": 0.79541015625}, {"start": 1421.33, "end": 1422.09, "word": " singleton", "probability": 0.962890625}, {"start": 1422.09, "end": 1422.53, "word": " logar", "probability": 0.936279296875}], "temperature": 1.0}, {"id": 56, "seek": 144962, "start": 1424.42, "end": 1449.62, "text": " This is a private logger named logger I want to import it The first thing I do is create a class and then convert it to singleton Because what is this? Constructor", "tokens": [639, 307, 257, 4551, 3565, 1321, 4926, 3565, 1321, 286, 528, 281, 974, 309, 440, 700, 551, 286, 360, 307, 1884, 257, 1508, 293, 550, 7620, 309, 281, 1522, 14806, 1436, 437, 307, 341, 30, 8574, 14535], "avg_logprob": -0.592927630010404, "compression_ratio": 1.3553719008264462, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1424.42, "end": 1424.78, "word": " This", "probability": 0.2144775390625}, {"start": 1424.78, "end": 1424.84, "word": " is", "probability": 0.78759765625}, {"start": 1424.84, "end": 1425.54, "word": " a", "probability": 0.5966796875}, {"start": 1425.54, "end": 1425.54, "word": " private", "probability": 0.8486328125}, {"start": 1425.54, "end": 1427.3, "word": " logger", "probability": 0.6962890625}, {"start": 1427.3, "end": 1428.24, "word": " named", "probability": 0.32861328125}, {"start": 1428.24, "end": 1429.96, "word": " logger", "probability": 0.54840087890625}, {"start": 1429.96, "end": 1431.58, "word": " I", "probability": 0.194091796875}, {"start": 1431.58, "end": 1434.7, "word": " want", "probability": 0.177734375}, {"start": 1434.7, "end": 1434.78, "word": " to", "probability": 0.84716796875}, {"start": 1434.78, "end": 1435.12, "word": " import", "probability": 0.94140625}, {"start": 1435.12, "end": 1438.82, "word": " it", "probability": 0.3447265625}, {"start": 1438.82, "end": 1438.84, "word": " The", "probability": 0.1781005859375}, {"start": 1438.84, "end": 1441.94, "word": " first", "probability": 0.87060546875}, {"start": 1441.94, "end": 1442.12, "word": " thing", "probability": 0.56640625}, {"start": 1442.12, "end": 1442.2, "word": " I", "probability": 0.8681640625}, {"start": 1442.2, "end": 1442.38, "word": " do", "probability": 0.763671875}, {"start": 1442.38, "end": 1442.48, "word": " is", "probability": 0.8154296875}, {"start": 1442.48, "end": 1442.48, "word": " create", "probability": 0.153564453125}, {"start": 1442.48, "end": 1442.5, "word": " a", "probability": 0.83349609375}, {"start": 1442.5, "end": 1442.76, "word": " class", "probability": 0.50048828125}, {"start": 1442.76, "end": 1443.26, "word": " and", "probability": 0.404541015625}, {"start": 1443.26, "end": 1444.0, "word": " then", "probability": 0.48828125}, {"start": 1444.0, "end": 1444.32, "word": " convert", "probability": 0.321044921875}, {"start": 1444.32, "end": 1444.64, "word": " it", "probability": 0.91943359375}, {"start": 1444.64, "end": 1445.18, "word": " to", "probability": 0.5068359375}, {"start": 1445.18, "end": 1445.66, "word": " singleton", "probability": 0.888916015625}, {"start": 1445.66, "end": 1446.34, "word": " Because", "probability": 0.5126953125}, {"start": 1446.34, "end": 1446.6, "word": " what", "probability": 0.4453125}, {"start": 1446.6, "end": 1446.6, "word": " is", "probability": 0.84716796875}, {"start": 1446.6, "end": 1446.86, "word": " this?", "probability": 0.76611328125}, {"start": 1448.78, "end": 1449.62, "word": " Constructor", "probability": 0.7279052734375}], "temperature": 1.0}, {"id": 57, "seek": 147794, "start": 1451.38, "end": 1477.94, "text": " So now mysql.logar has covered me. What is inside it? The logar. If I find the logar, it is equal to get logar, we call it mylogar.logar.add handler, a new file handler, and I send it the file name. It is test.txt.", "tokens": [407, 586, 452, 82, 80, 75, 13, 4987, 289, 575, 5343, 385, 13, 708, 307, 1854, 309, 30, 440, 3565, 289, 13, 759, 286, 915, 264, 3565, 289, 11, 309, 307, 2681, 281, 483, 3565, 289, 11, 321, 818, 309, 452, 4987, 289, 13, 4987, 289, 13, 25224, 41967, 11, 257, 777, 3991, 41967, 11, 293, 286, 2845, 309, 264, 3991, 1315, 13, 467, 307, 1500, 13, 83, 734, 13], "avg_logprob": -0.5880281706930885, "compression_ratio": 1.4930555555555556, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1451.38, "end": 1451.66, "word": " So", "probability": 0.058380126953125}, {"start": 1451.66, "end": 1452.18, "word": " now", "probability": 0.411376953125}, {"start": 1452.18, "end": 1453.0, "word": " mysql", "probability": 0.59356689453125}, {"start": 1453.0, "end": 1453.38, "word": ".logar", "probability": 0.8211263020833334}, {"start": 1453.38, "end": 1453.46, "word": " has", "probability": 0.497802734375}, {"start": 1453.46, "end": 1453.68, "word": " covered", "probability": 0.131591796875}, {"start": 1453.68, "end": 1454.1, "word": " me.", "probability": 0.329833984375}, {"start": 1454.2, "end": 1454.4, "word": " What", "probability": 0.662109375}, {"start": 1454.4, "end": 1454.48, "word": " is", "probability": 0.50048828125}, {"start": 1454.48, "end": 1454.74, "word": " inside", "probability": 0.71044921875}, {"start": 1454.74, "end": 1455.0, "word": " it?", "probability": 0.55029296875}, {"start": 1455.5, "end": 1455.66, "word": " The", "probability": 0.392333984375}, {"start": 1455.66, "end": 1455.92, "word": " logar.", "probability": 0.831298828125}, {"start": 1456.1, "end": 1456.32, "word": " If", "probability": 0.281982421875}, {"start": 1456.32, "end": 1456.32, "word": " I", "probability": 0.69970703125}, {"start": 1456.32, "end": 1456.54, "word": " find", "probability": 0.3271484375}, {"start": 1456.54, "end": 1456.66, "word": " the", "probability": 0.65283203125}, {"start": 1456.66, "end": 1457.66, "word": " logar,", "probability": 0.95361328125}, {"start": 1457.66, "end": 1458.48, "word": " it", "probability": 0.280517578125}, {"start": 1458.48, "end": 1458.5, "word": " is", "probability": 0.26513671875}, {"start": 1458.5, "end": 1458.82, "word": " equal", "probability": 0.7470703125}, {"start": 1458.82, "end": 1462.72, "word": " to", "probability": 0.72900390625}, {"start": 1462.72, "end": 1463.2, "word": " get", "probability": 0.2469482421875}, {"start": 1463.2, "end": 1463.6, "word": " logar,", "probability": 0.76171875}, {"start": 1463.74, "end": 1463.8, "word": " we", "probability": 0.33984375}, {"start": 1463.8, "end": 1464.04, "word": " call", "probability": 0.29833984375}, {"start": 1464.04, "end": 1464.4, "word": " it", "probability": 0.88037109375}, {"start": 1464.4, "end": 1467.64, "word": " mylogar", "probability": 0.8640950520833334}, {"start": 1467.64, "end": 1468.92, "word": ".logar", "probability": 0.6077473958333334}, {"start": 1468.92, "end": 1470.28, "word": ".add", "probability": 0.923583984375}, {"start": 1470.28, "end": 1471.54, "word": " handler,", "probability": 0.54150390625}, {"start": 1471.72, "end": 1471.9, "word": " a", "probability": 0.254150390625}, {"start": 1471.9, "end": 1472.18, "word": " new", "probability": 0.88671875}, {"start": 1472.18, "end": 1473.1, "word": " file", "probability": 0.82177734375}, {"start": 1473.1, "end": 1473.98, "word": " handler,", "probability": 0.86181640625}, {"start": 1474.1, "end": 1474.18, "word": " and", "probability": 0.8369140625}, {"start": 1474.18, "end": 1474.26, "word": " I", "probability": 0.8623046875}, {"start": 1474.26, "end": 1474.5, "word": " send", "probability": 0.58251953125}, {"start": 1474.5, "end": 1474.96, "word": " it", "probability": 0.69287109375}, {"start": 1474.96, "end": 1475.98, "word": " the", "probability": 0.65869140625}, {"start": 1475.98, "end": 1476.42, "word": " file", "probability": 0.7783203125}, {"start": 1476.42, "end": 1476.42, "word": " name.", "probability": 0.845703125}, {"start": 1476.5, "end": 1476.68, "word": " It", "probability": 0.2342529296875}, {"start": 1476.68, "end": 1476.7, "word": " is", "probability": 0.81396484375}, {"start": 1476.7, "end": 1477.06, "word": " test", "probability": 0.78759765625}, {"start": 1477.06, "end": 1477.94, "word": ".txt.", "probability": 0.94677734375}], "temperature": 1.0}, {"id": 58, "seek": 150851, "start": 1479.67, "end": 1508.51, "text": " Is it a file or a network? Yes, the network needs a socket It has another job Now, this one is private And this one was created by the constructor So I need to create a get method to get it back from the language Add import And this one needs to add throw So public", "tokens": [1119, 309, 257, 3991, 420, 257, 3209, 30, 1079, 11, 264, 3209, 2203, 257, 19741, 467, 575, 1071, 1691, 823, 11, 341, 472, 307, 4551, 400, 341, 472, 390, 2942, 538, 264, 47479, 407, 286, 643, 281, 1884, 257, 483, 3170, 281, 483, 309, 646, 490, 264, 2856, 5349, 974, 400, 341, 472, 2203, 281, 909, 3507, 407, 1908], "avg_logprob": -0.5760416408379873, "compression_ratio": 1.5555555555555556, "no_speech_prob": 1.6689300537109375e-06, "words": [{"start": 1479.67, "end": 1480.23, "word": " Is", "probability": 0.04962158203125}, {"start": 1480.23, "end": 1480.57, "word": " it", "probability": 0.5693359375}, {"start": 1480.57, "end": 1481.25, "word": " a", "probability": 0.541015625}, {"start": 1481.25, "end": 1482.17, "word": " file", "probability": 0.7138671875}, {"start": 1482.17, "end": 1482.47, "word": " or", "probability": 0.818359375}, {"start": 1482.47, "end": 1482.93, "word": " a", "probability": 0.56298828125}, {"start": 1482.93, "end": 1483.41, "word": " network?", "probability": 0.80859375}, {"start": 1484.39, "end": 1484.73, "word": " Yes,", "probability": 0.3203125}, {"start": 1484.75, "end": 1484.87, "word": " the", "probability": 0.5234375}, {"start": 1484.87, "end": 1485.15, "word": " network", "probability": 0.92919921875}, {"start": 1485.15, "end": 1485.35, "word": " needs", "probability": 0.650390625}, {"start": 1485.35, "end": 1485.49, "word": " a", "probability": 0.904296875}, {"start": 1485.49, "end": 1485.77, "word": " socket", "probability": 0.80126953125}, {"start": 1485.77, "end": 1486.39, "word": " It", "probability": 0.152099609375}, {"start": 1486.39, "end": 1486.59, "word": " has", "probability": 0.7353515625}, {"start": 1486.59, "end": 1486.67, "word": " another", "probability": 0.61865234375}, {"start": 1486.67, "end": 1486.87, "word": " job", "probability": 0.37451171875}, {"start": 1486.87, "end": 1488.29, "word": " Now,", "probability": 0.2841796875}, {"start": 1488.63, "end": 1489.15, "word": " this", "probability": 0.6904296875}, {"start": 1489.15, "end": 1489.25, "word": " one", "probability": 0.2744140625}, {"start": 1489.25, "end": 1489.31, "word": " is", "probability": 0.5009765625}, {"start": 1489.31, "end": 1489.83, "word": " private", "probability": 0.55322265625}, {"start": 1489.83, "end": 1490.69, "word": " And", "probability": 0.41796875}, {"start": 1490.69, "end": 1491.03, "word": " this", "probability": 0.74462890625}, {"start": 1491.03, "end": 1491.07, "word": " one", "probability": 0.416748046875}, {"start": 1491.07, "end": 1491.17, "word": " was", "probability": 0.4560546875}, {"start": 1491.17, "end": 1491.17, "word": " created", "probability": 0.6318359375}, {"start": 1491.17, "end": 1491.17, "word": " by", "probability": 0.97216796875}, {"start": 1491.17, "end": 1491.27, "word": " the", "probability": 0.8212890625}, {"start": 1491.27, "end": 1491.73, "word": " constructor", "probability": 0.9287109375}, {"start": 1491.73, "end": 1492.69, "word": " So", "probability": 0.77490234375}, {"start": 1492.69, "end": 1492.79, "word": " I", "probability": 0.52099609375}, {"start": 1492.79, "end": 1492.91, "word": " need", "probability": 0.53369140625}, {"start": 1492.91, "end": 1493.05, "word": " to", "probability": 0.94189453125}, {"start": 1493.05, "end": 1493.09, "word": " create", "probability": 0.31005859375}, {"start": 1493.09, "end": 1493.23, "word": " a", "probability": 0.830078125}, {"start": 1493.23, "end": 1493.33, "word": " get", "probability": 0.7451171875}, {"start": 1493.33, "end": 1493.61, "word": " method", "probability": 0.95263671875}, {"start": 1493.61, "end": 1493.85, "word": " to", "probability": 0.771484375}, {"start": 1493.85, "end": 1494.05, "word": " get", "probability": 0.2237548828125}, {"start": 1494.05, "end": 1494.19, "word": " it", "probability": 0.51611328125}, {"start": 1494.19, "end": 1494.19, "word": " back", "probability": 0.82373046875}, {"start": 1494.19, "end": 1494.31, "word": " from", "probability": 0.748046875}, {"start": 1494.31, "end": 1495.71, "word": " the", "probability": 0.499755859375}, {"start": 1495.71, "end": 1496.45, "word": " language", "probability": 0.368896484375}, {"start": 1496.45, "end": 1497.75, "word": " Add", "probability": 0.53759765625}, {"start": 1497.75, "end": 1498.71, "word": " import", "probability": 0.37353515625}, {"start": 1498.71, "end": 1500.33, "word": " And", "probability": 0.49609375}, {"start": 1500.33, "end": 1500.53, "word": " this", "probability": 0.83740234375}, {"start": 1500.53, "end": 1500.59, "word": " one", "probability": 0.8056640625}, {"start": 1500.59, "end": 1500.77, "word": " needs", "probability": 0.47314453125}, {"start": 1500.77, "end": 1500.91, "word": " to", "probability": 0.5048828125}, {"start": 1500.91, "end": 1501.15, "word": " add", "probability": 0.73583984375}, {"start": 1501.15, "end": 1501.65, "word": " throw", "probability": 0.38671875}, {"start": 1501.65, "end": 1508.13, "word": " So", "probability": 0.5361328125}, {"start": 1508.13, "end": 1508.51, "word": " public", "probability": 0.68994140625}], "temperature": 1.0}, {"id": 59, "seek": 153805, "start": 1510.57, "end": 1538.05, "text": " Logar I want to say get what? return Logar Of course this is still a normal class Meaning that if I want to use Logar I have to extract an object from my singleton Logar This is S equals U my singleton", "tokens": [10824, 289, 286, 528, 281, 584, 483, 437, 30, 2736, 10824, 289, 2720, 1164, 341, 307, 920, 257, 2710, 1508, 19948, 300, 498, 286, 528, 281, 764, 10824, 289, 286, 362, 281, 8947, 364, 2657, 490, 452, 1522, 14806, 10824, 289, 639, 307, 318, 6915, 624, 452, 1522, 14806], "avg_logprob": -0.5693750059604645, "compression_ratio": 1.4962962962962962, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 1510.57, "end": 1511.25, "word": " Logar", "probability": 0.51434326171875}, {"start": 1511.25, "end": 1511.93, "word": " I", "probability": 0.14990234375}, {"start": 1511.93, "end": 1512.05, "word": " want", "probability": 0.148681640625}, {"start": 1512.05, "end": 1512.07, "word": " to", "probability": 0.9443359375}, {"start": 1512.07, "end": 1512.19, "word": " say", "probability": 0.51171875}, {"start": 1512.19, "end": 1512.47, "word": " get", "probability": 0.74267578125}, {"start": 1512.47, "end": 1512.85, "word": " what?", "probability": 0.464599609375}, {"start": 1517.23, "end": 1517.91, "word": " return", "probability": 0.62939453125}, {"start": 1517.91, "end": 1520.23, "word": " Logar", "probability": 0.757080078125}, {"start": 1520.23, "end": 1521.01, "word": " Of", "probability": 0.453125}, {"start": 1521.01, "end": 1521.01, "word": " course", "probability": 0.89453125}, {"start": 1521.01, "end": 1521.29, "word": " this", "probability": 0.5517578125}, {"start": 1521.29, "end": 1521.53, "word": " is", "probability": 0.85302734375}, {"start": 1521.53, "end": 1521.77, "word": " still", "probability": 0.69677734375}, {"start": 1521.77, "end": 1521.85, "word": " a", "probability": 0.53564453125}, {"start": 1521.85, "end": 1522.29, "word": " normal", "probability": 0.51708984375}, {"start": 1522.29, "end": 1522.29, "word": " class", "probability": 0.94677734375}, {"start": 1522.29, "end": 1523.25, "word": " Meaning", "probability": 0.0994873046875}, {"start": 1523.25, "end": 1523.43, "word": " that", "probability": 0.6826171875}, {"start": 1523.43, "end": 1523.57, "word": " if", "probability": 0.340087890625}, {"start": 1523.57, "end": 1523.65, "word": " I", "probability": 0.96435546875}, {"start": 1523.65, "end": 1523.81, "word": " want", "probability": 0.6845703125}, {"start": 1523.81, "end": 1523.91, "word": " to", "probability": 0.96533203125}, {"start": 1523.91, "end": 1524.23, "word": " use", "probability": 0.87890625}, {"start": 1524.23, "end": 1524.91, "word": " Logar", "probability": 0.6522216796875}, {"start": 1524.91, "end": 1525.95, "word": " I", "probability": 0.8515625}, {"start": 1525.95, "end": 1526.13, "word": " have", "probability": 0.334716796875}, {"start": 1526.13, "end": 1526.25, "word": " to", "probability": 0.966796875}, {"start": 1526.25, "end": 1526.41, "word": " extract", "probability": 0.335693359375}, {"start": 1526.41, "end": 1526.59, "word": " an", "probability": 0.292236328125}, {"start": 1526.59, "end": 1526.87, "word": " object", "probability": 0.97021484375}, {"start": 1526.87, "end": 1527.83, "word": " from", "probability": 0.822265625}, {"start": 1527.83, "end": 1529.89, "word": " my", "probability": 0.58203125}, {"start": 1529.89, "end": 1531.87, "word": " singleton", "probability": 0.80126953125}, {"start": 1531.87, "end": 1533.71, "word": " Logar", "probability": 0.788818359375}, {"start": 1533.71, "end": 1534.55, "word": " This", "probability": 0.2340087890625}, {"start": 1534.55, "end": 1534.59, "word": " is", "probability": 0.767578125}, {"start": 1534.59, "end": 1534.93, "word": " S", "probability": 0.2198486328125}, {"start": 1534.93, "end": 1535.45, "word": " equals", "probability": 0.410888671875}, {"start": 1535.45, "end": 1535.87, "word": " U", "probability": 0.4306640625}, {"start": 1535.87, "end": 1536.85, "word": " my", "probability": 0.8212890625}, {"start": 1536.85, "end": 1538.05, "word": " singleton", "probability": 0.93896484375}], "temperature": 1.0}, {"id": 60, "seek": 156308, "start": 1540.82, "end": 1563.08, "text": "logar and then I go to the S and say get logar and then I say make log for example this class so far has covered the logar this is log or level.severe and here I put the message and then you print it", "tokens": [4987, 289, 293, 550, 286, 352, 281, 264, 318, 293, 584, 483, 3565, 289, 293, 550, 286, 584, 652, 3565, 337, 1365, 341, 1508, 370, 1400, 575, 5343, 264, 3565, 289, 341, 307, 3565, 420, 1496, 13, 405, 5887, 293, 510, 286, 829, 264, 3636, 293, 550, 291, 4482, 309], "avg_logprob": -0.6476715499279546, "compression_ratio": 1.5669291338582678, "no_speech_prob": 9.775161743164062e-06, "words": [{"start": 1540.82, "end": 1541.24, "word": "logar", "probability": 0.6026611328125}, {"start": 1541.24, "end": 1541.64, "word": " and", "probability": 0.2005615234375}, {"start": 1541.64, "end": 1541.84, "word": " then", "probability": 0.6044921875}, {"start": 1541.84, "end": 1541.96, "word": " I", "probability": 0.41796875}, {"start": 1541.96, "end": 1542.08, "word": " go", "probability": 0.52294921875}, {"start": 1542.08, "end": 1542.22, "word": " to", "probability": 0.91845703125}, {"start": 1542.22, "end": 1542.26, "word": " the", "probability": 0.484375}, {"start": 1542.26, "end": 1542.48, "word": " S", "probability": 0.339111328125}, {"start": 1542.48, "end": 1542.6, "word": " and", "probability": 0.611328125}, {"start": 1542.6, "end": 1542.8, "word": " say", "probability": 0.408203125}, {"start": 1542.8, "end": 1543.1, "word": " get", "probability": 0.76611328125}, {"start": 1543.1, "end": 1543.66, "word": " logar", "probability": 0.7744140625}, {"start": 1543.66, "end": 1545.36, "word": " and", "probability": 0.52734375}, {"start": 1545.36, "end": 1545.66, "word": " then", "probability": 0.72900390625}, {"start": 1545.66, "end": 1545.78, "word": " I", "probability": 0.61767578125}, {"start": 1545.78, "end": 1546.0, "word": " say", "probability": 0.572265625}, {"start": 1546.0, "end": 1546.44, "word": " make", "probability": 0.27587890625}, {"start": 1546.44, "end": 1546.78, "word": " log", "probability": 0.7353515625}, {"start": 1546.78, "end": 1546.94, "word": " for", "probability": 0.6416015625}, {"start": 1546.94, "end": 1547.78, "word": " example", "probability": 0.91796875}, {"start": 1547.78, "end": 1550.46, "word": " this", "probability": 0.206298828125}, {"start": 1550.46, "end": 1551.16, "word": " class", "probability": 0.892578125}, {"start": 1551.16, "end": 1551.32, "word": " so", "probability": 0.1502685546875}, {"start": 1551.32, "end": 1551.76, "word": " far", "probability": 0.93505859375}, {"start": 1551.76, "end": 1551.94, "word": " has", "probability": 0.384033203125}, {"start": 1551.94, "end": 1552.18, "word": " covered", "probability": 0.1483154296875}, {"start": 1552.18, "end": 1554.04, "word": " the", "probability": 0.1766357421875}, {"start": 1554.04, "end": 1554.32, "word": " logar", "probability": 0.823486328125}, {"start": 1554.32, "end": 1554.56, "word": " this", "probability": 0.1478271484375}, {"start": 1554.56, "end": 1554.6, "word": " is", "probability": 0.7392578125}, {"start": 1554.6, "end": 1554.88, "word": " log", "probability": 0.79736328125}, {"start": 1554.88, "end": 1555.64, "word": " or", "probability": 0.720703125}, {"start": 1555.64, "end": 1556.28, "word": " level", "probability": 0.953125}, {"start": 1556.28, "end": 1560.46, "word": ".severe", "probability": 0.572265625}, {"start": 1560.46, "end": 1560.58, "word": " and", "probability": 0.82421875}, {"start": 1560.58, "end": 1560.72, "word": " here", "probability": 0.5849609375}, {"start": 1560.72, "end": 1560.78, "word": " I", "probability": 0.6279296875}, {"start": 1560.78, "end": 1561.02, "word": " put", "probability": 0.5107421875}, {"start": 1561.02, "end": 1561.1, "word": " the", "probability": 0.77392578125}, {"start": 1561.1, "end": 1561.4, "word": " message", "probability": 0.775390625}, {"start": 1561.4, "end": 1561.54, "word": " and", "probability": 0.2197265625}, {"start": 1561.54, "end": 1561.68, "word": " then", "probability": 0.291015625}, {"start": 1561.68, "end": 1561.8, "word": " you", "probability": 0.50830078125}, {"start": 1561.8, "end": 1561.94, "word": " print", "probability": 0.763671875}, {"start": 1561.94, "end": 1563.08, "word": " it", "probability": 0.8203125}], "temperature": 1.0}, {"id": 61, "seek": 159091, "start": 1565.19, "end": 1590.91, "text": " Why did I put the logar in the class? Because I wanted to convert it to singleton How to convert it to singleton? As we learned, the first step is to go to the constructor and put private The second step is to make a reference of the same type so that the class is private and static MySingletonLogar is called instance claimed to", "tokens": [1545, 630, 286, 829, 264, 3565, 289, 294, 264, 1508, 30, 1436, 286, 1415, 281, 7620, 309, 281, 1522, 14806, 1012, 281, 7620, 309, 281, 1522, 14806, 30, 1018, 321, 3264, 11, 264, 700, 1823, 307, 281, 352, 281, 264, 47479, 293, 829, 4551, 440, 1150, 1823, 307, 281, 652, 257, 6408, 295, 264, 912, 2010, 370, 300, 264, 1508, 307, 4551, 293, 13437, 1222, 50, 278, 14806, 43, 664, 289, 307, 1219, 5197, 12941, 281], "avg_logprob": -0.5454545237801292, "compression_ratio": 1.6717171717171717, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1565.19, "end": 1565.47, "word": " Why", "probability": 0.09222412109375}, {"start": 1565.47, "end": 1565.47, "word": " did", "probability": 0.62158203125}, {"start": 1565.47, "end": 1565.89, "word": " I", "probability": 0.9111328125}, {"start": 1565.89, "end": 1566.17, "word": " put", "probability": 0.6435546875}, {"start": 1566.17, "end": 1566.47, "word": " the", "probability": 0.3671875}, {"start": 1566.47, "end": 1566.73, "word": " logar", "probability": 0.619873046875}, {"start": 1566.73, "end": 1566.85, "word": " in", "probability": 0.399169921875}, {"start": 1566.85, "end": 1567.05, "word": " the", "probability": 0.56005859375}, {"start": 1567.05, "end": 1567.33, "word": " class?", "probability": 0.9296875}, {"start": 1567.39, "end": 1567.53, "word": " Because", "probability": 0.69189453125}, {"start": 1567.53, "end": 1567.69, "word": " I", "probability": 0.8076171875}, {"start": 1567.69, "end": 1567.91, "word": " wanted", "probability": 0.11346435546875}, {"start": 1567.91, "end": 1568.05, "word": " to", "probability": 0.9404296875}, {"start": 1568.05, "end": 1568.29, "word": " convert", "probability": 0.414306640625}, {"start": 1568.29, "end": 1568.55, "word": " it", "probability": 0.337890625}, {"start": 1568.55, "end": 1569.49, "word": " to", "probability": 0.7041015625}, {"start": 1569.49, "end": 1570.21, "word": " singleton", "probability": 0.801513671875}, {"start": 1570.21, "end": 1570.53, "word": " How", "probability": 0.480224609375}, {"start": 1570.53, "end": 1570.89, "word": " to", "probability": 0.370361328125}, {"start": 1570.89, "end": 1571.05, "word": " convert", "probability": 0.85400390625}, {"start": 1571.05, "end": 1571.17, "word": " it", "probability": 0.7939453125}, {"start": 1571.17, "end": 1571.23, "word": " to", "probability": 0.89599609375}, {"start": 1571.23, "end": 1571.69, "word": " singleton?", "probability": 0.95703125}, {"start": 1571.93, "end": 1572.03, "word": " As", "probability": 0.314453125}, {"start": 1572.03, "end": 1572.19, "word": " we", "probability": 0.892578125}, {"start": 1572.19, "end": 1572.45, "word": " learned,", "probability": 0.447509765625}, {"start": 1572.65, "end": 1572.73, "word": " the", "probability": 0.6181640625}, {"start": 1572.73, "end": 1572.87, "word": " first", "probability": 0.89111328125}, {"start": 1572.87, "end": 1573.23, "word": " step", "probability": 0.89404296875}, {"start": 1573.23, "end": 1573.75, "word": " is", "probability": 0.321533203125}, {"start": 1573.75, "end": 1573.87, "word": " to", "probability": 0.55078125}, {"start": 1573.87, "end": 1573.93, "word": " go", "probability": 0.5693359375}, {"start": 1573.93, "end": 1574.07, "word": " to", "probability": 0.93798828125}, {"start": 1574.07, "end": 1574.13, "word": " the", "probability": 0.321044921875}, {"start": 1574.13, "end": 1574.77, "word": " constructor", "probability": 0.93994140625}, {"start": 1574.77, "end": 1575.67, "word": " and", "probability": 0.68701171875}, {"start": 1575.67, "end": 1576.05, "word": " put", "probability": 0.344482421875}, {"start": 1576.05, "end": 1576.97, "word": " private", "probability": 0.60595703125}, {"start": 1576.97, "end": 1577.97, "word": " The", "probability": 0.404296875}, {"start": 1577.97, "end": 1578.55, "word": " second", "probability": 0.85693359375}, {"start": 1578.55, "end": 1578.55, "word": " step", "probability": 0.919921875}, {"start": 1578.55, "end": 1578.81, "word": " is", "probability": 0.408935546875}, {"start": 1578.81, "end": 1578.85, "word": " to", "probability": 0.80419921875}, {"start": 1578.85, "end": 1579.15, "word": " make", "probability": 0.427001953125}, {"start": 1579.15, "end": 1579.85, "word": " a", "probability": 0.57421875}, {"start": 1579.85, "end": 1580.31, "word": " reference", "probability": 0.9111328125}, {"start": 1580.31, "end": 1580.53, "word": " of", "probability": 0.44970703125}, {"start": 1580.53, "end": 1580.67, "word": " the", "probability": 0.83935546875}, {"start": 1580.67, "end": 1580.81, "word": " same", "probability": 0.865234375}, {"start": 1580.81, "end": 1581.19, "word": " type", "probability": 0.701171875}, {"start": 1581.19, "end": 1582.41, "word": " so", "probability": 0.10821533203125}, {"start": 1582.41, "end": 1582.45, "word": " that", "probability": 0.79052734375}, {"start": 1582.45, "end": 1582.47, "word": " the", "probability": 0.732421875}, {"start": 1582.47, "end": 1582.75, "word": " class", "probability": 0.94580078125}, {"start": 1582.75, "end": 1583.05, "word": " is", "probability": 0.5556640625}, {"start": 1583.05, "end": 1583.61, "word": " private", "probability": 0.7958984375}, {"start": 1583.61, "end": 1584.21, "word": " and", "probability": 0.442138671875}, {"start": 1584.21, "end": 1584.67, "word": " static", "probability": 0.94775390625}, {"start": 1584.67, "end": 1588.21, "word": " MySingletonLogar", "probability": 0.7759137834821429}, {"start": 1588.21, "end": 1588.35, "word": " is", "probability": 0.383056640625}, {"start": 1588.35, "end": 1588.71, "word": " called", "probability": 0.38232421875}, {"start": 1588.71, "end": 1590.27, "word": " instance", "probability": 0.77099609375}, {"start": 1590.27, "end": 1590.65, "word": " claimed", "probability": 0.044952392578125}, {"start": 1590.65, "end": 1590.91, "word": " to", "probability": 0.90673828125}], "temperature": 1.0}, {"id": 62, "seek": 161565, "start": 1592.99, "end": 1615.65, "text": " In order to reach this instance, I need to create a method called public static in order to reach it or use it without having to initialize the object What should it return? It should return my singleton logger named get instance and I need to say if in the instance", "tokens": [682, 1668, 281, 2524, 341, 5197, 11, 286, 643, 281, 1884, 257, 3170, 1219, 1908, 13437, 294, 1668, 281, 2524, 309, 420, 764, 309, 1553, 1419, 281, 5883, 1125, 264, 2657, 708, 820, 309, 2736, 30, 467, 820, 2736, 452, 1522, 14806, 3565, 1321, 4926, 483, 5197, 293, 286, 643, 281, 584, 498, 294, 264, 5197], "avg_logprob": -0.5496162029734829, "compression_ratio": 1.6481481481481481, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1592.99, "end": 1593.51, "word": " In", "probability": 0.05126953125}, {"start": 1593.51, "end": 1594.03, "word": " order", "probability": 0.91455078125}, {"start": 1594.03, "end": 1594.63, "word": " to", "probability": 0.9013671875}, {"start": 1594.63, "end": 1594.89, "word": " reach", "probability": 0.2958984375}, {"start": 1594.89, "end": 1595.39, "word": " this", "probability": 0.58154296875}, {"start": 1595.39, "end": 1596.35, "word": " instance,", "probability": 0.8857421875}, {"start": 1596.63, "end": 1596.87, "word": " I", "probability": 0.76318359375}, {"start": 1596.87, "end": 1597.03, "word": " need", "probability": 0.387939453125}, {"start": 1597.03, "end": 1597.25, "word": " to", "probability": 0.88232421875}, {"start": 1597.25, "end": 1597.25, "word": " create", "probability": 0.34423828125}, {"start": 1597.25, "end": 1597.33, "word": " a", "probability": 0.71435546875}, {"start": 1597.33, "end": 1597.63, "word": " method", "probability": 0.9384765625}, {"start": 1597.63, "end": 1597.93, "word": " called", "probability": 0.40576171875}, {"start": 1597.93, "end": 1598.35, "word": " public", "probability": 0.78857421875}, {"start": 1598.35, "end": 1599.31, "word": " static", "probability": 0.9267578125}, {"start": 1599.31, "end": 1599.59, "word": " in", "probability": 0.1361083984375}, {"start": 1599.59, "end": 1599.59, "word": " order", "probability": 0.908203125}, {"start": 1599.59, "end": 1599.75, "word": " to", "probability": 0.96533203125}, {"start": 1599.75, "end": 1599.97, "word": " reach", "probability": 0.316162109375}, {"start": 1599.97, "end": 1600.39, "word": " it", "probability": 0.70703125}, {"start": 1600.39, "end": 1600.63, "word": " or", "probability": 0.37060546875}, {"start": 1600.63, "end": 1600.89, "word": " use", "probability": 0.77001953125}, {"start": 1600.89, "end": 1601.09, "word": " it", "probability": 0.9443359375}, {"start": 1601.09, "end": 1601.31, "word": " without", "probability": 0.8671875}, {"start": 1601.31, "end": 1601.71, "word": " having", "probability": 0.11962890625}, {"start": 1601.71, "end": 1601.71, "word": " to", "probability": 0.93017578125}, {"start": 1601.71, "end": 1601.95, "word": " initialize", "probability": 0.6351318359375}, {"start": 1601.95, "end": 1602.03, "word": " the", "probability": 0.666015625}, {"start": 1602.03, "end": 1602.35, "word": " object", "probability": 0.9541015625}, {"start": 1602.35, "end": 1603.05, "word": " What", "probability": 0.310302734375}, {"start": 1603.05, "end": 1603.17, "word": " should", "probability": 0.48828125}, {"start": 1603.17, "end": 1603.29, "word": " it", "probability": 0.296142578125}, {"start": 1603.29, "end": 1603.57, "word": " return?", "probability": 0.78271484375}, {"start": 1603.69, "end": 1603.71, "word": " It", "probability": 0.57861328125}, {"start": 1603.71, "end": 1603.89, "word": " should", "probability": 0.8193359375}, {"start": 1603.89, "end": 1604.13, "word": " return", "probability": 0.90283203125}, {"start": 1604.13, "end": 1604.37, "word": " my", "probability": 0.8037109375}, {"start": 1604.37, "end": 1605.01, "word": " singleton", "probability": 0.88330078125}, {"start": 1605.01, "end": 1607.25, "word": " logger", "probability": 0.53515625}, {"start": 1607.25, "end": 1609.01, "word": " named", "probability": 0.254150390625}, {"start": 1609.01, "end": 1609.45, "word": " get", "probability": 0.8076171875}, {"start": 1609.45, "end": 1611.77, "word": " instance", "probability": 0.7265625}, {"start": 1611.77, "end": 1614.23, "word": " and", "probability": 0.329833984375}, {"start": 1614.23, "end": 1614.37, "word": " I", "probability": 0.7548828125}, {"start": 1614.37, "end": 1614.41, "word": " need", "probability": 0.331298828125}, {"start": 1614.41, "end": 1614.49, "word": " to", "probability": 0.97216796875}, {"start": 1614.49, "end": 1614.65, "word": " say", "probability": 0.34619140625}, {"start": 1614.65, "end": 1615.03, "word": " if", "probability": 0.49365234375}, {"start": 1615.03, "end": 1615.23, "word": " in", "probability": 0.64111328125}, {"start": 1615.23, "end": 1615.25, "word": " the", "probability": 0.79345703125}, {"start": 1615.25, "end": 1615.65, "word": " instance", "probability": 0.97021484375}], "temperature": 1.0}, {"id": 63, "seek": 164436, "start": 1617.38, "end": 1644.36, "text": " you say null and go to the instance and say new my singleton logarithm this just need surround try-catch return instance only if the instance is null it will go anywhere else it will return", "tokens": [291, 584, 18184, 293, 352, 281, 264, 5197, 293, 584, 777, 452, 1522, 14806, 3565, 289, 32674, 341, 445, 643, 6262, 853, 12, 66, 852, 2736, 5197, 787, 498, 264, 5197, 307, 18184, 309, 486, 352, 4992, 1646, 309, 486, 2736], "avg_logprob": -0.6677827267419725, "compression_ratio": 1.5702479338842976, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1617.38, "end": 1617.66, "word": " you", "probability": 0.183837890625}, {"start": 1617.66, "end": 1617.96, "word": " say", "probability": 0.34423828125}, {"start": 1617.96, "end": 1618.36, "word": " null", "probability": 0.705078125}, {"start": 1618.36, "end": 1619.2, "word": " and", "probability": 0.306884765625}, {"start": 1619.2, "end": 1619.36, "word": " go", "probability": 0.67822265625}, {"start": 1619.36, "end": 1619.48, "word": " to", "probability": 0.9365234375}, {"start": 1619.48, "end": 1619.56, "word": " the", "probability": 0.398681640625}, {"start": 1619.56, "end": 1620.08, "word": " instance", "probability": 0.95703125}, {"start": 1620.08, "end": 1621.3, "word": " and", "probability": 0.75634765625}, {"start": 1621.3, "end": 1621.5, "word": " say", "probability": 0.703125}, {"start": 1621.5, "end": 1621.96, "word": " new", "probability": 0.60595703125}, {"start": 1621.96, "end": 1623.38, "word": " my", "probability": 0.83935546875}, {"start": 1623.38, "end": 1624.36, "word": " singleton", "probability": 0.8818359375}, {"start": 1624.36, "end": 1628.54, "word": " logarithm", "probability": 0.4940592447916667}, {"start": 1628.54, "end": 1628.98, "word": " this", "probability": 0.234619140625}, {"start": 1628.98, "end": 1629.24, "word": " just", "probability": 0.1849365234375}, {"start": 1629.24, "end": 1629.54, "word": " need", "probability": 0.4287109375}, {"start": 1629.54, "end": 1632.18, "word": " surround", "probability": 0.433349609375}, {"start": 1632.18, "end": 1632.56, "word": " try", "probability": 0.7939453125}, {"start": 1632.56, "end": 1633.0, "word": "-catch", "probability": 0.67724609375}, {"start": 1633.0, "end": 1635.82, "word": " return", "probability": 0.6103515625}, {"start": 1635.82, "end": 1639.22, "word": " instance", "probability": 0.896484375}, {"start": 1639.22, "end": 1640.16, "word": " only", "probability": 0.18212890625}, {"start": 1640.16, "end": 1641.18, "word": " if", "probability": 0.73486328125}, {"start": 1641.18, "end": 1641.56, "word": " the", "probability": 0.6083984375}, {"start": 1641.56, "end": 1641.88, "word": " instance", "probability": 0.96240234375}, {"start": 1641.88, "end": 1641.98, "word": " is", "probability": 0.6884765625}, {"start": 1641.98, "end": 1642.22, "word": " null", "probability": 0.93017578125}, {"start": 1642.22, "end": 1643.08, "word": " it", "probability": 0.2025146484375}, {"start": 1643.08, "end": 1643.08, "word": " will", "probability": 0.50390625}, {"start": 1643.08, "end": 1643.18, "word": " go", "probability": 0.2498779296875}, {"start": 1643.18, "end": 1643.46, "word": " anywhere", "probability": 0.145751953125}, {"start": 1643.46, "end": 1643.74, "word": " else", "probability": 0.564453125}, {"start": 1643.74, "end": 1643.92, "word": " it", "probability": 0.4248046875}, {"start": 1643.92, "end": 1644.06, "word": " will", "probability": 0.61962890625}, {"start": 1644.06, "end": 1644.36, "word": " return", "probability": 0.51416015625}], "temperature": 1.0}, {"id": 64, "seek": 166149, "start": 1649.57, "end": 1661.49, "text": " My Singleton Logger", "tokens": [1222, 7474, 14806, 10824, 1321], "avg_logprob": -1.0169270634651184, "compression_ratio": 0.7142857142857143, "no_speech_prob": 2.276897430419922e-05, "words": [{"start": 1649.57, "end": 1650.97, "word": " My", "probability": 0.103271484375}, {"start": 1650.97, "end": 1652.07, "word": " Singleton", "probability": 0.65185546875}, {"start": 1652.07, "end": 1661.49, "word": " Logger", "probability": 0.3912353515625}], "temperature": 1.0}, {"id": 65, "seek": 168807, "start": 1662.91, "end": 1688.07, "text": " and you say get instance and you use it you need to create another node, another object in the same way you say get instance and it brings you the same object you don't create a new object and that's how you apply this thing centralize access to its files through this logarithm, because everyone uses the same logarithm do you understand? do you like the idea guys? ok, based on these words, let's go back to", "tokens": [293, 291, 584, 483, 5197, 293, 291, 764, 309, 291, 643, 281, 1884, 1071, 9984, 11, 1071, 2657, 294, 264, 912, 636, 291, 584, 483, 5197, 293, 309, 5607, 291, 264, 912, 2657, 291, 500, 380, 1884, 257, 777, 2657, 293, 300, 311, 577, 291, 3079, 341, 551, 5777, 1125, 2105, 281, 1080, 7098, 807, 341, 3565, 289, 32674, 11, 570, 1518, 4960, 264, 912, 3565, 289, 32674, 360, 291, 1223, 30, 360, 291, 411, 264, 1558, 1074, 30, 3133, 11, 2361, 322, 613, 2283, 11, 718, 311, 352, 646, 281], "avg_logprob": -0.5621603312699691, "compression_ratio": 1.8552036199095023, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 1662.91, "end": 1663.09, "word": " and", "probability": 0.217041015625}, {"start": 1663.09, "end": 1663.17, "word": " you", "probability": 0.464599609375}, {"start": 1663.17, "end": 1663.33, "word": " say", "probability": 0.339111328125}, {"start": 1663.33, "end": 1663.71, "word": " get", "probability": 0.5576171875}, {"start": 1663.71, "end": 1664.53, "word": " instance", "probability": 0.69287109375}, {"start": 1664.53, "end": 1665.25, "word": " and", "probability": 0.468994140625}, {"start": 1665.25, "end": 1665.29, "word": " you", "probability": 0.59765625}, {"start": 1665.29, "end": 1665.59, "word": " use", "probability": 0.837890625}, {"start": 1665.59, "end": 1665.91, "word": " it", "probability": 0.91845703125}, {"start": 1665.91, "end": 1666.63, "word": " you", "probability": 0.234130859375}, {"start": 1666.63, "end": 1667.05, "word": " need", "probability": 0.3955078125}, {"start": 1667.05, "end": 1667.09, "word": " to", "probability": 0.7802734375}, {"start": 1667.09, "end": 1667.23, "word": " create", "probability": 0.37841796875}, {"start": 1667.23, "end": 1667.61, "word": " another", "probability": 0.64208984375}, {"start": 1667.61, "end": 1667.61, "word": " node,", "probability": 0.5283203125}, {"start": 1667.91, "end": 1668.15, "word": " another", "probability": 0.73388671875}, {"start": 1668.15, "end": 1668.47, "word": " object", "probability": 0.6142578125}, {"start": 1668.47, "end": 1669.79, "word": " in", "probability": 0.071533203125}, {"start": 1669.79, "end": 1669.85, "word": " the", "probability": 0.6806640625}, {"start": 1669.85, "end": 1669.91, "word": " same", "probability": 0.8642578125}, {"start": 1669.91, "end": 1670.13, "word": " way", "probability": 0.488037109375}, {"start": 1670.13, "end": 1670.25, "word": " you", "probability": 0.51513671875}, {"start": 1670.25, "end": 1670.39, "word": " say", "probability": 0.626953125}, {"start": 1670.39, "end": 1670.75, "word": " get", "probability": 0.9140625}, {"start": 1670.75, "end": 1671.09, "word": " instance", "probability": 0.97900390625}, {"start": 1671.09, "end": 1671.25, "word": " and", "probability": 0.79150390625}, {"start": 1671.25, "end": 1671.27, "word": " it", "probability": 0.55029296875}, {"start": 1671.27, "end": 1671.43, "word": " brings", "probability": 0.27978515625}, {"start": 1671.43, "end": 1671.59, "word": " you", "probability": 0.76806640625}, {"start": 1671.59, "end": 1671.71, "word": " the", "probability": 0.8349609375}, {"start": 1671.71, "end": 1671.93, "word": " same", "probability": 0.880859375}, {"start": 1671.93, "end": 1672.57, "word": " object", "probability": 0.96875}, {"start": 1672.57, "end": 1673.27, "word": " you", "probability": 0.140380859375}, {"start": 1673.27, "end": 1673.37, "word": " don't", "probability": 0.661376953125}, {"start": 1673.37, "end": 1673.63, "word": " create", "probability": 0.58203125}, {"start": 1673.63, "end": 1673.75, "word": " a", "probability": 0.75634765625}, {"start": 1673.75, "end": 1673.77, "word": " new", "probability": 0.91455078125}, {"start": 1673.77, "end": 1674.45, "word": " object", "probability": 0.96533203125}, {"start": 1674.45, "end": 1675.15, "word": " and", "probability": 0.62353515625}, {"start": 1675.15, "end": 1675.31, "word": " that's", "probability": 0.48162841796875}, {"start": 1675.31, "end": 1675.33, "word": " how", "probability": 0.92578125}, {"start": 1675.33, "end": 1675.91, "word": " you", "probability": 0.4462890625}, {"start": 1675.91, "end": 1676.25, "word": " apply", "probability": 0.48193359375}, {"start": 1676.25, "end": 1676.43, "word": " this", "probability": 0.81982421875}, {"start": 1676.43, "end": 1676.81, "word": " thing", "probability": 0.5576171875}, {"start": 1676.81, "end": 1678.41, "word": " centralize", "probability": 0.527099609375}, {"start": 1678.41, "end": 1678.75, "word": " access", "probability": 0.92626953125}, {"start": 1678.75, "end": 1678.91, "word": " to", "probability": 0.63330078125}, {"start": 1678.91, "end": 1679.59, "word": " its", "probability": 0.2374267578125}, {"start": 1679.59, "end": 1679.59, "word": " files", "probability": 0.439697265625}, {"start": 1679.59, "end": 1680.49, "word": " through", "probability": 0.60400390625}, {"start": 1680.49, "end": 1680.71, "word": " this", "probability": 0.6513671875}, {"start": 1680.71, "end": 1681.19, "word": " logarithm,", "probability": 0.64013671875}, {"start": 1681.25, "end": 1681.37, "word": " because", "probability": 0.33349609375}, {"start": 1681.37, "end": 1681.71, "word": " everyone", "probability": 0.640625}, {"start": 1681.71, "end": 1682.17, "word": " uses", "probability": 0.685546875}, {"start": 1682.17, "end": 1682.35, "word": " the", "probability": 0.88916015625}, {"start": 1682.35, "end": 1682.49, "word": " same", "probability": 0.8994140625}, {"start": 1682.49, "end": 1683.53, "word": " logarithm", "probability": 0.9156901041666666}, {"start": 1683.53, "end": 1683.67, "word": " do", "probability": 0.11859130859375}, {"start": 1683.67, "end": 1683.67, "word": " you", "probability": 0.958984375}, {"start": 1683.67, "end": 1683.81, "word": " understand?", "probability": 0.55419921875}, {"start": 1684.61, "end": 1684.77, "word": " do", "probability": 0.1142578125}, {"start": 1684.77, "end": 1684.77, "word": " you", "probability": 0.88232421875}, {"start": 1684.77, "end": 1684.97, "word": " like", "probability": 0.5673828125}, {"start": 1684.97, "end": 1685.09, "word": " the", "probability": 0.7626953125}, {"start": 1685.09, "end": 1685.25, "word": " idea", "probability": 0.890625}, {"start": 1685.25, "end": 1685.69, "word": " guys?", "probability": 0.509765625}, {"start": 1686.05, "end": 1686.45, "word": " ok,", "probability": 0.357177734375}, {"start": 1686.59, "end": 1686.77, "word": " based", "probability": 0.69677734375}, {"start": 1686.77, "end": 1686.91, "word": " on", "probability": 0.94775390625}, {"start": 1686.91, "end": 1687.05, "word": " these", "probability": 0.413330078125}, {"start": 1687.05, "end": 1687.27, "word": " words,", "probability": 0.74072265625}, {"start": 1687.41, "end": 1687.63, "word": " let's", "probability": 0.921142578125}, {"start": 1687.63, "end": 1687.77, "word": " go", "probability": 0.65380859375}, {"start": 1687.77, "end": 1687.87, "word": " back", "probability": 0.865234375}, {"start": 1687.87, "end": 1688.07, "word": " to", "probability": 0.947265625}], "temperature": 1.0}, {"id": 66, "seek": 170283, "start": 1696.83, "end": 1702.83, "text": " The singleton pattern is one of the simplest design patterns. It involves only one class", "tokens": [440, 1522, 14806, 5102, 307, 472, 295, 264, 22811, 1715, 8294, 13, 467, 11626, 787, 472, 1508], "avg_logprob": -0.2766927083333333, "compression_ratio": 1.141025641025641, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1696.83, "end": 1697.57, "word": " The", "probability": 0.2418212890625}, {"start": 1697.57, "end": 1698.31, "word": " singleton", "probability": 0.687255859375}, {"start": 1698.31, "end": 1698.79, "word": " pattern", "probability": 0.86962890625}, {"start": 1698.79, "end": 1699.05, "word": " is", "probability": 0.87841796875}, {"start": 1699.05, "end": 1699.25, "word": " one", "probability": 0.92333984375}, {"start": 1699.25, "end": 1699.39, "word": " of", "probability": 0.97021484375}, {"start": 1699.39, "end": 1699.53, "word": " the", "probability": 0.91845703125}, {"start": 1699.53, "end": 1699.89, "word": " simplest", "probability": 0.90185546875}, {"start": 1699.89, "end": 1700.27, "word": " design", "probability": 0.8369140625}, {"start": 1700.27, "end": 1700.65, "word": " patterns.", "probability": 0.8896484375}, {"start": 1700.91, "end": 1701.03, "word": " It", "probability": 0.92529296875}, {"start": 1701.03, "end": 1701.55, "word": " involves", "probability": 0.8642578125}, {"start": 1701.55, "end": 1701.93, "word": " only", "probability": 0.9130859375}, {"start": 1701.93, "end": 1702.29, "word": " one", "probability": 0.900390625}, {"start": 1702.29, "end": 1702.83, "word": " class", "probability": 0.97265625}], "temperature": 1.0}, {"id": 67, "seek": 172578, "start": 1706.56, "end": 1725.78, "text": " which is responsible to instantiate itself to make sure it creates not more than one instance in the same time it provides a global point of access", "tokens": [597, 307, 6250, 281, 9836, 13024, 2564, 281, 652, 988, 309, 7829, 406, 544, 813, 472, 5197, 294, 264, 912, 565, 309, 6417, 257, 4338, 935, 295, 2105], "avg_logprob": -0.24218750411066517, "compression_ratio": 1.4230769230769231, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1706.5600000000002, "end": 1707.3600000000001, "word": " which", "probability": 0.07373046875}, {"start": 1707.3600000000001, "end": 1708.16, "word": " is", "probability": 0.86572265625}, {"start": 1708.16, "end": 1708.66, "word": " responsible", "probability": 0.93798828125}, {"start": 1708.66, "end": 1710.74, "word": " to", "probability": 0.703125}, {"start": 1710.74, "end": 1711.44, "word": " instantiate", "probability": 0.9375}, {"start": 1711.44, "end": 1711.98, "word": " itself", "probability": 0.857421875}, {"start": 1711.98, "end": 1712.26, "word": " to", "probability": 0.6298828125}, {"start": 1712.26, "end": 1716.28, "word": " make", "probability": 0.939453125}, {"start": 1716.28, "end": 1716.56, "word": " sure", "probability": 0.919921875}, {"start": 1716.56, "end": 1716.74, "word": " it", "probability": 0.8916015625}, {"start": 1716.74, "end": 1717.2, "word": " creates", "probability": 0.853515625}, {"start": 1717.2, "end": 1717.46, "word": " not", "probability": 0.81787109375}, {"start": 1717.46, "end": 1717.74, "word": " more", "probability": 0.93310546875}, {"start": 1717.74, "end": 1718.14, "word": " than", "probability": 0.9384765625}, {"start": 1718.14, "end": 1719.04, "word": " one", "probability": 0.90478515625}, {"start": 1719.04, "end": 1719.28, "word": " instance", "probability": 0.9755859375}, {"start": 1719.28, "end": 1720.9, "word": " in", "probability": 0.29736328125}, {"start": 1720.9, "end": 1722.62, "word": " the", "probability": 0.93603515625}, {"start": 1722.62, "end": 1722.9, "word": " same", "probability": 0.89697265625}, {"start": 1722.9, "end": 1723.3, "word": " time", "probability": 0.89599609375}, {"start": 1723.3, "end": 1723.68, "word": " it", "probability": 0.69580078125}, {"start": 1723.68, "end": 1724.26, "word": " provides", "probability": 0.8896484375}, {"start": 1724.26, "end": 1724.46, "word": " a", "probability": 0.984375}, {"start": 1724.46, "end": 1724.88, "word": " global", "probability": 0.927734375}, {"start": 1724.88, "end": 1725.28, "word": " point", "probability": 0.974609375}, {"start": 1725.28, "end": 1725.42, "word": " of", "probability": 0.96923828125}, {"start": 1725.42, "end": 1725.78, "word": " access", "probability": 0.8994140625}], "temperature": 1.0}, {"id": 68, "seek": 175049, "start": 1726.99, "end": 1750.49, "text": " it is clear that it allows access to this object from anywhere in the application to achieve a global point of access to that instance in this case, the same instance can be used from everywhere being impossible to invoke directly the constructor each time you cannot use the constructor in temp, the goal of the single tool pattern ensure that only one instance of a class is created", "tokens": [309, 307, 1850, 300, 309, 4045, 2105, 281, 341, 2657, 490, 4992, 294, 264, 3861, 281, 4584, 257, 4338, 935, 295, 2105, 281, 300, 5197, 294, 341, 1389, 11, 264, 912, 5197, 393, 312, 1143, 490, 5315, 885, 6243, 281, 41117, 3838, 264, 47479, 1184, 565, 291, 2644, 764, 264, 47479, 294, 18274, 11, 264, 3387, 295, 264, 2167, 2290, 5102, 5586, 300, 787, 472, 5197, 295, 257, 1508, 307, 2942], "avg_logprob": -0.3454861069718997, "compression_ratio": 1.807511737089202, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1726.99, "end": 1727.19, "word": " it", "probability": 0.2166748046875}, {"start": 1727.19, "end": 1727.19, "word": " is", "probability": 0.58251953125}, {"start": 1727.19, "end": 1727.37, "word": " clear", "probability": 0.55029296875}, {"start": 1727.37, "end": 1727.91, "word": " that", "probability": 0.87939453125}, {"start": 1727.91, "end": 1728.11, "word": " it", "probability": 0.6767578125}, {"start": 1728.11, "end": 1729.01, "word": " allows", "probability": 0.1885986328125}, {"start": 1729.01, "end": 1729.37, "word": " access", "probability": 0.369384765625}, {"start": 1729.37, "end": 1729.55, "word": " to", "probability": 0.806640625}, {"start": 1729.55, "end": 1729.63, "word": " this", "probability": 0.388916015625}, {"start": 1729.63, "end": 1730.01, "word": " object", "probability": 0.82763671875}, {"start": 1730.01, "end": 1730.47, "word": " from", "probability": 0.72705078125}, {"start": 1730.47, "end": 1730.89, "word": " anywhere", "probability": 0.3046875}, {"start": 1730.89, "end": 1731.25, "word": " in", "probability": 0.8466796875}, {"start": 1731.25, "end": 1731.39, "word": " the", "probability": 0.84326171875}, {"start": 1731.39, "end": 1731.69, "word": " application", "probability": 0.79541015625}, {"start": 1731.69, "end": 1731.83, "word": " to", "probability": 0.22021484375}, {"start": 1731.83, "end": 1732.15, "word": " achieve", "probability": 0.33154296875}, {"start": 1732.15, "end": 1732.29, "word": " a", "probability": 0.7021484375}, {"start": 1732.29, "end": 1732.65, "word": " global", "probability": 0.91015625}, {"start": 1732.65, "end": 1733.05, "word": " point", "probability": 0.9375}, {"start": 1733.05, "end": 1733.17, "word": " of", "probability": 0.9541015625}, {"start": 1733.17, "end": 1733.53, "word": " access", "probability": 0.9267578125}, {"start": 1733.53, "end": 1734.05, "word": " to", "probability": 0.89794921875}, {"start": 1734.05, "end": 1734.27, "word": " that", "probability": 0.89697265625}, {"start": 1734.27, "end": 1734.67, "word": " instance", "probability": 0.97021484375}, {"start": 1734.67, "end": 1735.57, "word": " in", "probability": 0.55908203125}, {"start": 1735.57, "end": 1735.79, "word": " this", "probability": 0.94921875}, {"start": 1735.79, "end": 1736.11, "word": " case,", "probability": 0.91455078125}, {"start": 1736.23, "end": 1736.33, "word": " the", "probability": 0.892578125}, {"start": 1736.33, "end": 1736.57, "word": " same", "probability": 0.8955078125}, {"start": 1736.57, "end": 1736.93, "word": " instance", "probability": 0.93701171875}, {"start": 1736.93, "end": 1737.21, "word": " can", "probability": 0.93603515625}, {"start": 1737.21, "end": 1737.39, "word": " be", "probability": 0.95654296875}, {"start": 1737.39, "end": 1737.61, "word": " used", "probability": 0.935546875}, {"start": 1737.61, "end": 1737.85, "word": " from", "probability": 0.853515625}, {"start": 1737.85, "end": 1738.41, "word": " everywhere", "probability": 0.71533203125}, {"start": 1738.41, "end": 1739.53, "word": " being", "probability": 0.78662109375}, {"start": 1739.53, "end": 1740.11, "word": " impossible", "probability": 0.84326171875}, {"start": 1740.11, "end": 1740.37, "word": " to", "probability": 0.96826171875}, {"start": 1740.37, "end": 1740.75, "word": " invoke", "probability": 0.94775390625}, {"start": 1740.75, "end": 1741.25, "word": " directly", "probability": 0.89404296875}, {"start": 1741.25, "end": 1741.47, "word": " the", "probability": 0.88525390625}, {"start": 1741.47, "end": 1741.89, "word": " constructor", "probability": 0.9287109375}, {"start": 1741.89, "end": 1742.15, "word": " each", "probability": 0.91845703125}, {"start": 1742.15, "end": 1742.45, "word": " time", "probability": 0.84765625}, {"start": 1742.45, "end": 1743.11, "word": " you", "probability": 0.61328125}, {"start": 1743.11, "end": 1743.35, "word": " cannot", "probability": 0.483642578125}, {"start": 1743.35, "end": 1743.85, "word": " use", "probability": 0.8798828125}, {"start": 1743.85, "end": 1744.33, "word": " the", "probability": 0.76123046875}, {"start": 1744.33, "end": 1744.77, "word": " constructor", "probability": 0.90478515625}, {"start": 1744.77, "end": 1745.09, "word": " in", "probability": 0.5263671875}, {"start": 1745.09, "end": 1745.41, "word": " temp,", "probability": 0.2841796875}, {"start": 1745.87, "end": 1745.89, "word": " the", "probability": 0.873046875}, {"start": 1745.89, "end": 1746.13, "word": " goal", "probability": 0.6611328125}, {"start": 1746.13, "end": 1746.37, "word": " of", "probability": 0.77392578125}, {"start": 1746.37, "end": 1746.47, "word": " the", "probability": 0.42236328125}, {"start": 1746.47, "end": 1746.63, "word": " single", "probability": 0.61376953125}, {"start": 1746.63, "end": 1746.85, "word": " tool", "probability": 0.544921875}, {"start": 1746.85, "end": 1747.21, "word": " pattern", "probability": 0.88916015625}, {"start": 1747.21, "end": 1748.25, "word": " ensure", "probability": 0.4375}, {"start": 1748.25, "end": 1748.55, "word": " that", "probability": 0.935546875}, {"start": 1748.55, "end": 1748.77, "word": " only", "probability": 0.90966796875}, {"start": 1748.77, "end": 1749.09, "word": " one", "probability": 0.91015625}, {"start": 1749.09, "end": 1749.45, "word": " instance", "probability": 0.9755859375}, {"start": 1749.45, "end": 1749.59, "word": " of", "probability": 0.9619140625}, {"start": 1749.59, "end": 1749.71, "word": " a", "probability": 0.60205078125}, {"start": 1749.71, "end": 1749.87, "word": " class", "probability": 0.974609375}, {"start": 1749.87, "end": 1750.01, "word": " is", "probability": 0.94091796875}, {"start": 1750.01, "end": 1750.49, "word": " created", "probability": 0.83251953125}], "temperature": 1.0}, {"id": 69, "seek": 176108, "start": 1751.64, "end": 1761.08, "text": "You make sure that one object of the class was created and that this object will be used from anywhere, or in another sense, provide the global point of access to that object", "tokens": [3223, 652, 988, 300, 472, 2657, 295, 264, 1508, 390, 2942, 293, 300, 341, 2657, 486, 312, 1143, 490, 4992, 11, 420, 294, 1071, 2020, 11, 2893, 264, 4338, 935, 295, 2105, 281, 300, 2657], "avg_logprob": -0.6206597305006452, "compression_ratio": 1.4262295081967213, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1751.64, "end": 1751.82, "word": "You", "probability": 0.0794677734375}, {"start": 1751.82, "end": 1751.92, "word": " make", "probability": 0.306640625}, {"start": 1751.92, "end": 1752.14, "word": " sure", "probability": 0.92431640625}, {"start": 1752.14, "end": 1752.26, "word": " that", "probability": 0.78857421875}, {"start": 1752.26, "end": 1752.42, "word": " one", "probability": 0.32958984375}, {"start": 1752.42, "end": 1752.56, "word": " object", "probability": 0.76611328125}, {"start": 1752.56, "end": 1752.9, "word": " of", "probability": 0.21142578125}, {"start": 1752.9, "end": 1752.98, "word": " the", "probability": 0.53759765625}, {"start": 1752.98, "end": 1753.2, "word": " class", "probability": 0.8388671875}, {"start": 1753.2, "end": 1753.36, "word": " was", "probability": 0.59130859375}, {"start": 1753.36, "end": 1753.72, "word": " created", "probability": 0.57080078125}, {"start": 1753.72, "end": 1754.4, "word": " and", "probability": 0.5859375}, {"start": 1754.4, "end": 1754.58, "word": " that", "probability": 0.55126953125}, {"start": 1754.58, "end": 1754.78, "word": " this", "probability": 0.458251953125}, {"start": 1754.78, "end": 1755.12, "word": " object", "probability": 0.88818359375}, {"start": 1755.12, "end": 1755.28, "word": " will", "probability": 0.15625}, {"start": 1755.28, "end": 1755.36, "word": " be", "probability": 0.93310546875}, {"start": 1755.36, "end": 1755.6, "word": " used", "probability": 0.90966796875}, {"start": 1755.6, "end": 1755.82, "word": " from", "probability": 0.30078125}, {"start": 1755.82, "end": 1756.18, "word": " anywhere,", "probability": 0.414794921875}, {"start": 1756.5, "end": 1756.58, "word": " or", "probability": 0.436767578125}, {"start": 1756.58, "end": 1756.66, "word": " in", "probability": 0.65771484375}, {"start": 1756.66, "end": 1757.16, "word": " another", "probability": 0.60498046875}, {"start": 1757.16, "end": 1757.16, "word": " sense,", "probability": 0.370361328125}, {"start": 1757.34, "end": 1757.88, "word": " provide", "probability": 0.41748046875}, {"start": 1757.88, "end": 1758.2, "word": " the", "probability": 0.5888671875}, {"start": 1758.2, "end": 1758.68, "word": " global", "probability": 0.92529296875}, {"start": 1758.68, "end": 1759.1, "word": " point", "probability": 0.966796875}, {"start": 1759.1, "end": 1759.26, "word": " of", "probability": 0.96484375}, {"start": 1759.26, "end": 1759.6, "word": " access", "probability": 0.94287109375}, {"start": 1759.6, "end": 1759.82, "word": " to", "probability": 0.9248046875}, {"start": 1759.82, "end": 1760.08, "word": " that", "probability": 0.59375}, {"start": 1760.08, "end": 1761.08, "word": " object", "probability": 0.96435546875}], "temperature": 1.0}, {"id": 70, "seek": 178408, "start": 1762.06, "end": 1784.08, "text": "Look at the UML class diagram, the singleton pattern with its general code Because if I want to represent it as a UML class diagram, it is a single class called singleton, for example And notice what's in it, instance, no, singleton This is the object that I put inside the class, which is actually the one and only copy And this is a sign next to it", "tokens": [12863, 412, 264, 624, 12683, 1508, 10686, 11, 264, 1522, 14806, 5102, 365, 1080, 2674, 3089, 1436, 498, 286, 528, 281, 2906, 309, 382, 257, 624, 12683, 1508, 10686, 11, 309, 307, 257, 2167, 1508, 1219, 1522, 14806, 11, 337, 1365, 400, 3449, 437, 311, 294, 309, 11, 5197, 11, 572, 11, 1522, 14806, 639, 307, 264, 2657, 300, 286, 829, 1854, 264, 1508, 11, 597, 307, 767, 264, 472, 293, 787, 5055, 400, 341, 307, 257, 1465, 958, 281, 309], "avg_logprob": -0.5316310713930827, "compression_ratio": 1.650943396226415, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1762.06, "end": 1762.5, "word": "Look", "probability": 0.13818359375}, {"start": 1762.5, "end": 1762.94, "word": " at", "probability": 0.6484375}, {"start": 1762.94, "end": 1763.56, "word": " the", "probability": 0.53271484375}, {"start": 1763.56, "end": 1763.8, "word": " UML", "probability": 0.5836181640625}, {"start": 1763.8, "end": 1764.12, "word": " class", "probability": 0.5927734375}, {"start": 1764.12, "end": 1764.4, "word": " diagram,", "probability": 0.8935546875}, {"start": 1764.52, "end": 1764.62, "word": " the", "probability": 0.46240234375}, {"start": 1764.62, "end": 1764.92, "word": " singleton", "probability": 0.87744140625}, {"start": 1764.92, "end": 1765.3, "word": " pattern", "probability": 0.87841796875}, {"start": 1765.3, "end": 1765.5, "word": " with", "probability": 0.70263671875}, {"start": 1765.5, "end": 1765.68, "word": " its", "probability": 0.40380859375}, {"start": 1765.68, "end": 1766.48, "word": " general", "probability": 0.71435546875}, {"start": 1766.48, "end": 1766.56, "word": " code", "probability": 0.875}, {"start": 1766.56, "end": 1767.72, "word": " Because", "probability": 0.323486328125}, {"start": 1767.72, "end": 1767.9, "word": " if", "probability": 0.7529296875}, {"start": 1767.9, "end": 1768.04, "word": " I", "probability": 0.9306640625}, {"start": 1768.04, "end": 1768.22, "word": " want", "probability": 0.73388671875}, {"start": 1768.22, "end": 1768.28, "word": " to", "probability": 0.96142578125}, {"start": 1768.28, "end": 1768.52, "word": " represent", "probability": 0.403564453125}, {"start": 1768.52, "end": 1768.64, "word": " it", "probability": 0.53466796875}, {"start": 1768.64, "end": 1768.72, "word": " as", "probability": 0.87939453125}, {"start": 1768.72, "end": 1768.78, "word": " a", "probability": 0.5478515625}, {"start": 1768.78, "end": 1768.94, "word": " UML", "probability": 0.917236328125}, {"start": 1768.94, "end": 1769.28, "word": " class", "probability": 0.94140625}, {"start": 1769.28, "end": 1769.54, "word": " diagram,", "probability": 0.8681640625}, {"start": 1769.64, "end": 1769.72, "word": " it", "probability": 0.85546875}, {"start": 1769.72, "end": 1769.78, "word": " is", "probability": 0.5966796875}, {"start": 1769.78, "end": 1770.04, "word": " a", "probability": 0.192138671875}, {"start": 1770.04, "end": 1770.46, "word": " single", "probability": 0.56884765625}, {"start": 1770.46, "end": 1771.14, "word": " class", "probability": 0.88232421875}, {"start": 1771.14, "end": 1771.9, "word": " called", "probability": 0.15185546875}, {"start": 1771.9, "end": 1772.48, "word": " singleton,", "probability": 0.765869140625}, {"start": 1772.62, "end": 1772.64, "word": " for", "probability": 0.728515625}, {"start": 1772.64, "end": 1772.9, "word": " example", "probability": 0.94287109375}, {"start": 1772.9, "end": 1773.5, "word": " And", "probability": 0.32958984375}, {"start": 1773.5, "end": 1773.8, "word": " notice", "probability": 0.73974609375}, {"start": 1773.8, "end": 1774.06, "word": " what's", "probability": 0.5303955078125}, {"start": 1774.06, "end": 1774.16, "word": " in", "probability": 0.8095703125}, {"start": 1774.16, "end": 1774.4, "word": " it,", "probability": 0.22802734375}, {"start": 1774.64, "end": 1775.08, "word": " instance,", "probability": 0.74951171875}, {"start": 1775.34, "end": 1775.5, "word": " no,", "probability": 0.537109375}, {"start": 1775.68, "end": 1776.9, "word": " singleton", "probability": 0.90576171875}, {"start": 1776.9, "end": 1777.38, "word": " This", "probability": 0.486328125}, {"start": 1777.38, "end": 1777.42, "word": " is", "probability": 0.7158203125}, {"start": 1777.42, "end": 1777.5, "word": " the", "probability": 0.89208984375}, {"start": 1777.5, "end": 1777.82, "word": " object", "probability": 0.91796875}, {"start": 1777.82, "end": 1778.0, "word": " that", "probability": 0.591796875}, {"start": 1778.0, "end": 1778.14, "word": " I", "probability": 0.935546875}, {"start": 1778.14, "end": 1778.44, "word": " put", "probability": 0.7509765625}, {"start": 1778.44, "end": 1778.64, "word": " inside", "probability": 0.6181640625}, {"start": 1778.64, "end": 1778.84, "word": " the", "probability": 0.8798828125}, {"start": 1778.84, "end": 1779.06, "word": " class,", "probability": 0.96533203125}, {"start": 1779.12, "end": 1779.18, "word": " which", "probability": 0.787109375}, {"start": 1779.18, "end": 1780.26, "word": " is", "probability": 0.5}, {"start": 1780.26, "end": 1780.26, "word": " actually", "probability": 0.450927734375}, {"start": 1780.26, "end": 1781.22, "word": " the", "probability": 0.65283203125}, {"start": 1781.22, "end": 1781.66, "word": " one", "probability": 0.18408203125}, {"start": 1781.66, "end": 1782.8, "word": " and", "probability": 0.794921875}, {"start": 1782.8, "end": 1783.2, "word": " only", "probability": 0.88916015625}, {"start": 1783.2, "end": 1783.2, "word": " copy", "probability": 0.4228515625}, {"start": 1783.2, "end": 1783.34, "word": " And", "probability": 0.346435546875}, {"start": 1783.34, "end": 1783.52, "word": " this", "probability": 0.7392578125}, {"start": 1783.52, "end": 1783.62, "word": " is", "probability": 0.58349609375}, {"start": 1783.62, "end": 1783.76, "word": " a", "probability": 0.418701171875}, {"start": 1783.76, "end": 1783.76, "word": " sign", "probability": 0.282958984375}, {"start": 1783.76, "end": 1783.88, "word": " next", "probability": 0.63623046875}, {"start": 1783.88, "end": 1783.88, "word": " to", "probability": 0.97412109375}, {"start": 1783.88, "end": 1784.08, "word": " it", "probability": 0.86572265625}], "temperature": 1.0}, {"id": 71, "seek": 180955, "start": 1785.51, "end": 1809.55, "text": " Private. Now this is the constructor, see the constructor next to it is also private. Instead of the constructor, so that I can reach this, I made a statement called get instance which is a plus sign, which is public, this singleton returns. This is what checks if it is null, it returns. If it is not null, it returns immediately. This is the shape of the code.", "tokens": [30386, 13, 823, 341, 307, 264, 47479, 11, 536, 264, 47479, 958, 281, 309, 307, 611, 4551, 13, 7156, 295, 264, 47479, 11, 370, 300, 286, 393, 2524, 341, 11, 286, 1027, 257, 5629, 1219, 483, 5197, 597, 307, 257, 1804, 1465, 11, 597, 307, 1908, 11, 341, 1522, 14806, 11247, 13, 639, 307, 437, 13834, 498, 309, 307, 18184, 11, 309, 11247, 13, 759, 309, 307, 406, 18184, 11, 309, 11247, 4258, 13, 639, 307, 264, 3909, 295, 264, 3089, 13], "avg_logprob": -0.5918674942958786, "compression_ratio": 1.8241206030150754, "no_speech_prob": 6.9141387939453125e-06, "words": [{"start": 1785.51, "end": 1786.03, "word": " Private.", "probability": 0.1884765625}, {"start": 1788.05, "end": 1788.05, "word": " Now", "probability": 0.20263671875}, {"start": 1788.05, "end": 1788.69, "word": " this", "probability": 0.52490234375}, {"start": 1788.69, "end": 1788.69, "word": " is", "probability": 0.59423828125}, {"start": 1788.69, "end": 1788.79, "word": " the", "probability": 0.73046875}, {"start": 1788.79, "end": 1789.11, "word": " constructor,", "probability": 0.60107421875}, {"start": 1789.73, "end": 1789.93, "word": " see", "probability": 0.26953125}, {"start": 1789.93, "end": 1790.09, "word": " the", "probability": 0.29833984375}, {"start": 1790.09, "end": 1790.43, "word": " constructor", "probability": 0.89404296875}, {"start": 1790.43, "end": 1790.67, "word": " next", "probability": 0.1630859375}, {"start": 1790.67, "end": 1791.03, "word": " to", "probability": 0.95947265625}, {"start": 1791.03, "end": 1791.41, "word": " it", "probability": 0.8095703125}, {"start": 1791.41, "end": 1791.41, "word": " is", "probability": 0.370849609375}, {"start": 1791.41, "end": 1791.41, "word": " also", "probability": 0.3583984375}, {"start": 1791.41, "end": 1791.41, "word": " private.", "probability": 0.50341796875}, {"start": 1792.29, "end": 1792.81, "word": " Instead", "probability": 0.3291015625}, {"start": 1792.81, "end": 1792.89, "word": " of", "probability": 0.962890625}, {"start": 1792.89, "end": 1792.99, "word": " the", "probability": 0.5634765625}, {"start": 1792.99, "end": 1793.43, "word": " constructor,", "probability": 0.8642578125}, {"start": 1793.59, "end": 1793.63, "word": " so", "probability": 0.2037353515625}, {"start": 1793.63, "end": 1793.73, "word": " that", "probability": 0.55322265625}, {"start": 1793.73, "end": 1793.83, "word": " I", "probability": 0.95654296875}, {"start": 1793.83, "end": 1794.01, "word": " can", "probability": 0.89306640625}, {"start": 1794.01, "end": 1794.33, "word": " reach", "probability": 0.55029296875}, {"start": 1794.33, "end": 1794.79, "word": " this,", "probability": 0.74365234375}, {"start": 1795.27, "end": 1795.45, "word": " I", "probability": 0.7275390625}, {"start": 1795.45, "end": 1795.61, "word": " made", "probability": 0.36669921875}, {"start": 1795.61, "end": 1795.75, "word": " a", "probability": 0.6318359375}, {"start": 1795.75, "end": 1795.91, "word": " statement", "probability": 0.13671875}, {"start": 1795.91, "end": 1796.21, "word": " called", "probability": 0.68017578125}, {"start": 1796.21, "end": 1796.57, "word": " get", "probability": 0.73046875}, {"start": 1796.57, "end": 1797.79, "word": " instance", "probability": 0.11236572265625}, {"start": 1797.79, "end": 1798.09, "word": " which", "probability": 0.3623046875}, {"start": 1798.09, "end": 1798.23, "word": " is", "probability": 0.87353515625}, {"start": 1798.23, "end": 1798.39, "word": " a", "probability": 0.281494140625}, {"start": 1798.39, "end": 1798.39, "word": " plus", "probability": 0.388671875}, {"start": 1798.39, "end": 1798.81, "word": " sign,", "probability": 0.53759765625}, {"start": 1798.97, "end": 1799.09, "word": " which", "probability": 0.404541015625}, {"start": 1799.09, "end": 1799.17, "word": " is", "probability": 0.814453125}, {"start": 1799.17, "end": 1799.51, "word": " public,", "probability": 0.88818359375}, {"start": 1800.11, "end": 1800.67, "word": " this", "probability": 0.243896484375}, {"start": 1800.67, "end": 1801.15, "word": " singleton", "probability": 0.817138671875}, {"start": 1801.15, "end": 1801.15, "word": " returns.", "probability": 0.48193359375}, {"start": 1801.73, "end": 1802.07, "word": " This", "probability": 0.7822265625}, {"start": 1802.07, "end": 1802.09, "word": " is", "probability": 0.53955078125}, {"start": 1802.09, "end": 1802.19, "word": " what", "probability": 0.88623046875}, {"start": 1802.19, "end": 1802.51, "word": " checks", "probability": 0.6845703125}, {"start": 1802.51, "end": 1802.71, "word": " if", "probability": 0.404052734375}, {"start": 1802.71, "end": 1803.03, "word": " it", "probability": 0.51806640625}, {"start": 1803.03, "end": 1803.03, "word": " is", "probability": 0.73876953125}, {"start": 1803.03, "end": 1803.23, "word": " null,", "probability": 0.7431640625}, {"start": 1803.39, "end": 1803.45, "word": " it", "probability": 0.642578125}, {"start": 1803.45, "end": 1803.75, "word": " returns.", "probability": 0.3837890625}, {"start": 1805.45, "end": 1805.97, "word": " If", "probability": 0.9228515625}, {"start": 1805.97, "end": 1806.15, "word": " it", "probability": 0.74169921875}, {"start": 1806.15, "end": 1806.15, "word": " is", "probability": 0.8447265625}, {"start": 1806.15, "end": 1806.31, "word": " not", "probability": 0.92333984375}, {"start": 1806.31, "end": 1806.57, "word": " null,", "probability": 0.9609375}, {"start": 1807.39, "end": 1807.57, "word": " it", "probability": 0.79296875}, {"start": 1807.57, "end": 1807.83, "word": " returns", "probability": 0.80859375}, {"start": 1807.83, "end": 1808.13, "word": " immediately.", "probability": 0.48681640625}, {"start": 1808.29, "end": 1808.77, "word": " This", "probability": 0.89208984375}, {"start": 1808.77, "end": 1808.85, "word": " is", "probability": 0.908203125}, {"start": 1808.85, "end": 1808.95, "word": " the", "probability": 0.623046875}, {"start": 1808.95, "end": 1809.03, "word": " shape", "probability": 0.455810546875}, {"start": 1809.03, "end": 1809.19, "word": " of", "probability": 0.9755859375}, {"start": 1809.19, "end": 1809.25, "word": " the", "probability": 0.82666015625}, {"start": 1809.25, "end": 1809.55, "word": " code.", "probability": 0.9384765625}], "temperature": 1.0}, {"id": 72, "seek": 183982, "start": 1812.28, "end": 1839.82, "text": " This is the Singleton class and this is an instance of it. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor. This is the constructor.", "tokens": [639, 307, 264, 7474, 14806, 1508, 293, 341, 307, 364, 5197, 295, 309, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13, 639, 307, 264, 47479, 13], "avg_logprob": -0.17597222222222222, "compression_ratio": 13.8625, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1812.2800000000002, "end": 1812.8600000000001, "word": " This", "probability": 0.10150146484375}, {"start": 1812.8600000000001, "end": 1813.44, "word": " is", "probability": 0.74267578125}, {"start": 1813.44, "end": 1814.36, "word": " the", "probability": 0.286865234375}, {"start": 1814.36, "end": 1814.88, "word": " Singleton", "probability": 0.618896484375}, {"start": 1814.88, "end": 1815.8, "word": " class", "probability": 0.228515625}, {"start": 1815.8, "end": 1816.6, "word": " and", "probability": 0.440673828125}, {"start": 1816.6, "end": 1816.74, "word": " this", "probability": 0.7470703125}, {"start": 1816.74, "end": 1816.74, "word": " is", "probability": 0.89306640625}, {"start": 1816.74, "end": 1816.86, "word": " an", "probability": 0.311767578125}, {"start": 1816.86, "end": 1817.24, "word": " instance", "probability": 0.96484375}, {"start": 1817.24, "end": 1817.44, "word": " of", "probability": 0.57275390625}, {"start": 1817.44, "end": 1817.56, "word": " it.", "probability": 0.71142578125}, {"start": 1819.64, "end": 1820.22, "word": " This", "probability": 0.497314453125}, {"start": 1820.22, "end": 1820.22, "word": " is", "probability": 0.63037109375}, {"start": 1820.22, "end": 1820.36, "word": " the", "probability": 0.58203125}, {"start": 1820.36, "end": 1820.8, "word": " constructor.", "probability": 0.7412109375}, {"start": 1823.46, "end": 1824.04, "word": " This", "probability": 0.1683349609375}, {"start": 1824.04, "end": 1824.38, "word": " is", "probability": 0.76123046875}, {"start": 1824.38, "end": 1824.38, "word": " the", "probability": 0.4384765625}, {"start": 1824.38, "end": 1824.54, "word": " constructor.", "probability": 0.5126953125}, {"start": 1825.16, "end": 1825.3, "word": " This", "probability": 0.2320556640625}, {"start": 1825.3, "end": 1825.5, "word": " is", "probability": 0.66015625}, {"start": 1825.5, "end": 1826.38, "word": " the", "probability": 0.51220703125}, {"start": 1826.38, "end": 1828.22, "word": " constructor.", "probability": 0.953125}, {"start": 1828.22, "end": 1828.22, "word": " This", "probability": 0.448974609375}, {"start": 1828.22, "end": 1828.22, "word": " is", "probability": 0.75537109375}, {"start": 1828.22, "end": 1828.22, "word": " the", "probability": 0.7587890625}, {"start": 1828.22, "end": 1829.14, "word": " constructor.", "probability": 0.947265625}, {"start": 1829.14, "end": 1829.14, "word": " This", "probability": 0.59033203125}, {"start": 1829.14, "end": 1829.72, "word": " is", "probability": 0.8349609375}, {"start": 1829.72, "end": 1829.9, "word": " the", "probability": 0.82958984375}, {"start": 1829.9, "end": 1831.06, "word": " constructor.", "probability": 0.9345703125}, {"start": 1831.06, "end": 1831.06, "word": " This", "probability": 0.67919921875}, {"start": 1831.06, "end": 1832.7, "word": " is", "probability": 0.89697265625}, {"start": 1832.7, "end": 1833.14, "word": " the", "probability": 0.8701171875}, {"start": 1833.14, "end": 1833.14, "word": " constructor.", "probability": 0.93505859375}, {"start": 1833.18, "end": 1833.36, "word": " This", "probability": 0.73974609375}, {"start": 1833.36, "end": 1833.54, "word": " is", "probability": 0.9287109375}, {"start": 1833.54, "end": 1833.62, "word": " the", "probability": 0.8935546875}, {"start": 1833.62, "end": 1833.62, "word": " constructor.", "probability": 0.9365234375}, {"start": 1833.8, "end": 1833.8, "word": " This", "probability": 0.7802734375}, {"start": 1833.8, "end": 1833.8, "word": " is", "probability": 0.9404296875}, {"start": 1833.8, "end": 1833.8, "word": " the", "probability": 0.90625}, {"start": 1833.8, "end": 1833.8, "word": " constructor.", "probability": 0.93701171875}, {"start": 1833.9, "end": 1834.18, "word": " This", "probability": 0.81201171875}, {"start": 1834.18, "end": 1834.18, "word": " is", "probability": 0.9453125}, {"start": 1834.18, "end": 1834.18, "word": " the", "probability": 0.9130859375}, {"start": 1834.18, "end": 1834.18, "word": " constructor.", "probability": 0.935546875}, {"start": 1834.18, "end": 1834.28, "word": " This", "probability": 0.83544921875}, {"start": 1834.28, "end": 1834.28, "word": " is", "probability": 0.94677734375}, {"start": 1834.28, "end": 1834.58, "word": " the", "probability": 0.91796875}, {"start": 1834.58, "end": 1834.58, "word": " constructor.", "probability": 0.93359375}, {"start": 1834.66, "end": 1834.72, "word": " This", "probability": 0.849609375}, {"start": 1834.72, "end": 1834.72, "word": " is", "probability": 0.947265625}, {"start": 1834.72, "end": 1834.82, "word": " the", "probability": 0.9208984375}, {"start": 1834.82, "end": 1835.02, "word": " constructor.", "probability": 0.92919921875}, {"start": 1835.26, "end": 1835.26, "word": " This", "probability": 0.8603515625}, {"start": 1835.26, "end": 1835.26, "word": " is", "probability": 0.947265625}, {"start": 1835.26, "end": 1835.26, "word": " the", "probability": 0.9248046875}, {"start": 1835.26, "end": 1835.26, "word": " constructor.", "probability": 0.92529296875}, {"start": 1835.42, "end": 1835.98, "word": " This", "probability": 0.86962890625}, {"start": 1835.98, "end": 1835.98, "word": " is", "probability": 0.9482421875}, {"start": 1835.98, "end": 1836.12, "word": " the", "probability": 0.9287109375}, {"start": 1836.12, "end": 1836.12, "word": " constructor.", "probability": 0.9208984375}, {"start": 1836.12, "end": 1836.12, "word": " This", "probability": 0.8798828125}, {"start": 1836.12, "end": 1836.12, "word": " is", "probability": 0.94873046875}, {"start": 1836.12, "end": 1836.52, "word": " the", "probability": 0.9306640625}, {"start": 1836.52, "end": 1836.52, "word": " constructor.", "probability": 0.91748046875}, {"start": 1836.82, "end": 1837.32, "word": " This", "probability": 0.888671875}, {"start": 1837.32, "end": 1837.32, "word": " is", "probability": 0.9501953125}, {"start": 1837.32, "end": 1837.32, "word": " the", "probability": 0.93359375}, {"start": 1837.32, "end": 1837.32, "word": " constructor.", "probability": 0.91357421875}, {"start": 1837.32, "end": 1837.82, "word": " This", "probability": 0.89501953125}, {"start": 1837.82, "end": 1837.82, "word": " is", "probability": 0.9501953125}, {"start": 1837.82, "end": 1837.82, "word": " the", "probability": 0.93505859375}, {"start": 1837.82, "end": 1837.82, "word": " constructor.", "probability": 0.91259765625}, {"start": 1837.82, "end": 1837.82, "word": " This", "probability": 0.900390625}, {"start": 1837.82, "end": 1837.82, "word": " is", "probability": 0.951171875}, {"start": 1837.82, "end": 1837.82, "word": " the", "probability": 0.93603515625}, {"start": 1837.82, "end": 1837.82, "word": " constructor.", "probability": 0.9091796875}, {"start": 1837.82, "end": 1837.82, "word": " This", "probability": 0.90576171875}, {"start": 1837.82, "end": 1837.82, "word": " is", "probability": 0.95166015625}, {"start": 1837.82, "end": 1837.82, "word": " the", "probability": 0.935546875}, {"start": 1837.82, "end": 1837.82, "word": " constructor.", "probability": 0.90869140625}, {"start": 1837.82, "end": 1837.82, "word": " This", "probability": 0.90869140625}, {"start": 1837.82, "end": 1837.82, "word": " is", "probability": 0.951171875}, {"start": 1837.82, "end": 1837.82, "word": " the", "probability": 0.9365234375}, {"start": 1837.82, "end": 1837.82, "word": " constructor.", "probability": 0.9072265625}, {"start": 1837.82, "end": 1837.82, "word": " This", "probability": 0.91162109375}, {"start": 1837.82, "end": 1837.82, "word": " is", "probability": 0.9521484375}, {"start": 1837.82, "end": 1837.82, "word": " the", "probability": 0.93603515625}, {"start": 1837.82, "end": 1837.82, "word": " constructor.", "probability": 0.9072265625}, {"start": 1837.82, "end": 1837.82, "word": " This", "probability": 0.9130859375}, {"start": 1837.82, "end": 1837.82, "word": " is", "probability": 0.95263671875}, {"start": 1837.82, "end": 1837.82, "word": " the", "probability": 0.9365234375}, {"start": 1837.82, "end": 1837.82, "word": " constructor.", "probability": 0.90673828125}, {"start": 1837.82, "end": 1837.82, "word": " This", "probability": 0.91552734375}, {"start": 1837.82, "end": 1837.82, "word": " is", "probability": 0.95166015625}, {"start": 1837.82, "end": 1837.82, "word": " the", "probability": 0.9365234375}, {"start": 1837.82, "end": 1837.82, "word": " constructor.", "probability": 0.908203125}, {"start": 1837.82, "end": 1837.82, "word": " This", "probability": 0.91796875}, {"start": 1837.82, "end": 1837.82, "word": " is", "probability": 0.95263671875}, {"start": 1837.82, "end": 1837.82, "word": " the", "probability": 0.9365234375}, {"start": 1837.82, "end": 1837.82, "word": " constructor.", "probability": 0.908203125}, {"start": 1837.82, "end": 1837.86, "word": " This", "probability": 0.91943359375}, {"start": 1837.86, "end": 1837.86, "word": " is", "probability": 0.951171875}, {"start": 1837.86, "end": 1837.86, "word": " the", "probability": 0.9365234375}, {"start": 1837.86, "end": 1837.88, "word": " constructor.", "probability": 0.90869140625}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.919921875}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.951171875}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.9365234375}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.90869140625}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.92138671875}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.95166015625}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.9375}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.9091796875}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.92236328125}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.95166015625}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.9365234375}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.9091796875}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.92333984375}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.951171875}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.9375}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.9091796875}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.92431640625}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.95263671875}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.93896484375}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.9091796875}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.9248046875}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.95263671875}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.93896484375}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.9091796875}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.92431640625}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.95263671875}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.93798828125}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.90673828125}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.92529296875}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.95263671875}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.939453125}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.90625}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.92578125}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.95263671875}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.9404296875}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.9052734375}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.9267578125}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.9521484375}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.94091796875}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.9052734375}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.92626953125}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.95068359375}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.9404296875}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.90234375}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.9267578125}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.9521484375}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.94091796875}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.900390625}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.92724609375}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.9521484375}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.9404296875}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.89794921875}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.9267578125}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.95166015625}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.9404296875}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.89599609375}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.9267578125}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.9521484375}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.9404296875}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.89453125}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.92724609375}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.953125}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.93896484375}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.890625}, {"start": 1837.88, "end": 1837.88, "word": " This", "probability": 0.9248046875}, {"start": 1837.88, "end": 1837.88, "word": " is", "probability": 0.95263671875}, {"start": 1837.88, "end": 1837.88, "word": " the", "probability": 0.939453125}, {"start": 1837.88, "end": 1837.88, "word": " constructor.", "probability": 0.89013671875}, {"start": 1837.98, "end": 1838.24, "word": " This", "probability": 0.9228515625}, {"start": 1838.24, "end": 1838.94, "word": " is", "probability": 0.9521484375}, {"start": 1838.94, "end": 1838.94, "word": " the", "probability": 0.9375}, {"start": 1838.94, "end": 1839.82, "word": " constructor.", "probability": 0.884765625}], "temperature": 1.0}, {"id": 73, "seek": 186364, "start": 1841.06, "end": 1863.64, "text": "Public statics, but I put a new word, it's called synchronize, we'll explain what synchronize is, okay? It returns singleton, it's called get instance, you check if the instance is null, it returns singleton and returns it, okay? Of course, this line belongs to the F only, this doesn't belong to the F, right? Okay? And then, this line down here, it's called?", "tokens": [47, 3865, 2219, 1167, 11, 457, 286, 829, 257, 777, 1349, 11, 309, 311, 1219, 19331, 1125, 11, 321, 603, 2903, 437, 19331, 1125, 307, 11, 1392, 30, 467, 11247, 1522, 14806, 11, 309, 311, 1219, 483, 5197, 11, 291, 1520, 498, 264, 5197, 307, 18184, 11, 309, 11247, 1522, 14806, 293, 11247, 309, 11, 1392, 30, 2720, 1164, 11, 341, 1622, 12953, 281, 264, 479, 787, 11, 341, 1177, 380, 5784, 281, 264, 479, 11, 558, 30, 1033, 30, 400, 550, 11, 341, 1622, 760, 510, 11, 309, 311, 1219, 30], "avg_logprob": -0.6182795698924731, "compression_ratio": 1.7733990147783252, "no_speech_prob": 2.9802322387695312e-06, "words": [{"start": 1841.06, "end": 1841.46, "word": "Public", "probability": 0.5048828125}, {"start": 1841.46, "end": 1841.98, "word": " statics,", "probability": 0.61553955078125}, {"start": 1842.24, "end": 1842.38, "word": " but", "probability": 0.74658203125}, {"start": 1842.38, "end": 1842.54, "word": " I", "probability": 0.1424560546875}, {"start": 1842.54, "end": 1842.62, "word": " put", "probability": 0.37646484375}, {"start": 1842.62, "end": 1842.86, "word": " a", "probability": 0.78125}, {"start": 1842.86, "end": 1843.12, "word": " new", "probability": 0.88671875}, {"start": 1843.12, "end": 1843.22, "word": " word,", "probability": 0.8388671875}, {"start": 1844.22, "end": 1844.36, "word": " it's", "probability": 0.39654541015625}, {"start": 1844.36, "end": 1844.48, "word": " called", "probability": 0.689453125}, {"start": 1844.48, "end": 1844.96, "word": " synchronize,", "probability": 0.449951171875}, {"start": 1845.02, "end": 1845.12, "word": " we'll", "probability": 0.413818359375}, {"start": 1845.12, "end": 1845.42, "word": " explain", "probability": 0.728515625}, {"start": 1845.42, "end": 1845.76, "word": " what", "probability": 0.3359375}, {"start": 1845.76, "end": 1846.56, "word": " synchronize", "probability": 0.6099853515625}, {"start": 1846.56, "end": 1847.14, "word": " is,", "probability": 0.81201171875}, {"start": 1847.14, "end": 1847.46, "word": " okay?", "probability": 0.310546875}, {"start": 1847.9, "end": 1848.1, "word": " It", "probability": 0.6337890625}, {"start": 1848.1, "end": 1848.44, "word": " returns", "probability": 0.5068359375}, {"start": 1848.44, "end": 1848.94, "word": " singleton,", "probability": 0.73876953125}, {"start": 1849.02, "end": 1849.12, "word": " it's", "probability": 0.540283203125}, {"start": 1849.12, "end": 1849.24, "word": " called", "probability": 0.8525390625}, {"start": 1849.24, "end": 1849.46, "word": " get", "probability": 0.433349609375}, {"start": 1849.46, "end": 1849.8, "word": " instance,", "probability": 0.89404296875}, {"start": 1849.98, "end": 1850.1, "word": " you", "probability": 0.33154296875}, {"start": 1850.1, "end": 1850.34, "word": " check", "probability": 0.77392578125}, {"start": 1850.34, "end": 1850.84, "word": " if", "probability": 0.54931640625}, {"start": 1850.84, "end": 1851.2, "word": " the", "probability": 0.56103515625}, {"start": 1851.2, "end": 1851.5, "word": " instance", "probability": 0.98095703125}, {"start": 1851.5, "end": 1851.7, "word": " is", "probability": 0.7880859375}, {"start": 1851.7, "end": 1851.9, "word": " null,", "probability": 0.9169921875}, {"start": 1852.12, "end": 1852.22, "word": " it", "probability": 0.42626953125}, {"start": 1852.22, "end": 1852.5, "word": " returns", "probability": 0.376708984375}, {"start": 1852.5, "end": 1853.16, "word": " singleton", "probability": 0.93994140625}, {"start": 1853.16, "end": 1853.6, "word": " and", "probability": 0.3994140625}, {"start": 1853.6, "end": 1853.9, "word": " returns", "probability": 0.484375}, {"start": 1853.9, "end": 1854.98, "word": " it,", "probability": 0.4423828125}, {"start": 1855.08, "end": 1855.62, "word": " okay?", "probability": 0.71044921875}, {"start": 1855.88, "end": 1856.2, "word": " Of", "probability": 0.7548828125}, {"start": 1856.2, "end": 1856.2, "word": " course,", "probability": 0.955078125}, {"start": 1856.48, "end": 1856.7, "word": " this", "probability": 0.8544921875}, {"start": 1856.7, "end": 1856.98, "word": " line", "probability": 0.6220703125}, {"start": 1856.98, "end": 1857.24, "word": " belongs", "probability": 0.262939453125}, {"start": 1857.24, "end": 1857.42, "word": " to", "probability": 0.80908203125}, {"start": 1857.42, "end": 1857.5, "word": " the", "probability": 0.365478515625}, {"start": 1857.5, "end": 1857.66, "word": " F", "probability": 0.70556640625}, {"start": 1857.66, "end": 1857.98, "word": " only,", "probability": 0.5810546875}, {"start": 1858.1, "end": 1858.24, "word": " this", "probability": 0.498291015625}, {"start": 1858.24, "end": 1858.42, "word": " doesn't", "probability": 0.61090087890625}, {"start": 1858.42, "end": 1858.58, "word": " belong", "probability": 0.66748046875}, {"start": 1858.58, "end": 1858.72, "word": " to", "probability": 0.966796875}, {"start": 1858.72, "end": 1858.78, "word": " the", "probability": 0.74609375}, {"start": 1858.78, "end": 1859.0, "word": " F,", "probability": 0.9921875}, {"start": 1859.56, "end": 1859.78, "word": " right?", "probability": 0.78271484375}, {"start": 1860.6, "end": 1860.84, "word": " Okay?", "probability": 0.386962890625}, {"start": 1861.24, "end": 1861.46, "word": " And", "probability": 0.69873046875}, {"start": 1861.46, "end": 1861.84, "word": " then,", "probability": 0.693359375}, {"start": 1862.0, "end": 1862.26, "word": " this", "probability": 0.5751953125}, {"start": 1862.26, "end": 1862.44, "word": " line", "probability": 0.288818359375}, {"start": 1862.44, "end": 1862.72, "word": " down", "probability": 0.3779296875}, {"start": 1862.72, "end": 1863.0, "word": " here,", "probability": 0.81494140625}, {"start": 1863.38, "end": 1863.48, "word": " it's", "probability": 0.32977294921875}, {"start": 1863.48, "end": 1863.64, "word": " called?", "probability": 0.400146484375}], "temperature": 1.0}, {"id": 74, "seek": 188800, "start": 1865.96, "end": 1888.0, "text": " After I reach the instance, I can call this loop. This loop is not static. This loop needs to have an object. Why is this point synchronized? What is this synchronization? In D3 programming, you will learn about threading. How to have more than one process running at the same time.", "tokens": [2381, 286, 2524, 264, 5197, 11, 286, 393, 818, 341, 6367, 13, 639, 6367, 307, 406, 13437, 13, 639, 6367, 2203, 281, 362, 364, 2657, 13, 1545, 307, 341, 935, 19331, 1602, 30, 708, 307, 341, 19331, 2144, 30, 682, 413, 18, 9410, 11, 291, 486, 1466, 466, 7207, 278, 13, 1012, 281, 362, 544, 813, 472, 1399, 2614, 412, 264, 912, 565, 13], "avg_logprob": -0.5125, "compression_ratio": 1.5297297297297296, "no_speech_prob": 6.4373016357421875e-06, "words": [{"start": 1865.96, "end": 1866.48, "word": " After", "probability": 0.057708740234375}, {"start": 1866.48, "end": 1867.0, "word": " I", "probability": 0.398193359375}, {"start": 1867.0, "end": 1867.3, "word": " reach", "probability": 0.49169921875}, {"start": 1867.3, "end": 1867.48, "word": " the", "probability": 0.444091796875}, {"start": 1867.48, "end": 1867.76, "word": " instance,", "probability": 0.92236328125}, {"start": 1867.98, "end": 1868.1, "word": " I", "probability": 0.89208984375}, {"start": 1868.1, "end": 1868.3, "word": " can", "probability": 0.80908203125}, {"start": 1868.3, "end": 1868.64, "word": " call", "probability": 0.25537109375}, {"start": 1868.64, "end": 1869.68, "word": " this", "probability": 0.5283203125}, {"start": 1869.68, "end": 1869.86, "word": " loop.", "probability": 0.287109375}, {"start": 1870.02, "end": 1870.18, "word": " This", "probability": 0.63818359375}, {"start": 1870.18, "end": 1870.4, "word": " loop", "probability": 0.79248046875}, {"start": 1870.4, "end": 1870.5, "word": " is", "probability": 0.73876953125}, {"start": 1870.5, "end": 1870.56, "word": " not", "probability": 0.923828125}, {"start": 1870.56, "end": 1871.0, "word": " static.", "probability": 0.93310546875}, {"start": 1871.82, "end": 1872.02, "word": " This", "probability": 0.7236328125}, {"start": 1872.02, "end": 1872.32, "word": " loop", "probability": 0.9638671875}, {"start": 1872.32, "end": 1873.0, "word": " needs", "probability": 0.7646484375}, {"start": 1873.0, "end": 1873.0, "word": " to", "probability": 0.253662109375}, {"start": 1873.0, "end": 1873.92, "word": " have", "probability": 0.71728515625}, {"start": 1873.92, "end": 1874.02, "word": " an", "probability": 0.78466796875}, {"start": 1874.02, "end": 1874.34, "word": " object.", "probability": 0.9697265625}, {"start": 1877.3, "end": 1877.82, "word": " Why", "probability": 0.2203369140625}, {"start": 1877.82, "end": 1877.94, "word": " is", "probability": 0.5068359375}, {"start": 1877.94, "end": 1878.04, "word": " this", "probability": 0.876953125}, {"start": 1878.04, "end": 1878.22, "word": " point", "probability": 0.62451171875}, {"start": 1878.22, "end": 1879.44, "word": " synchronized?", "probability": 0.896484375}, {"start": 1880.28, "end": 1880.46, "word": " What", "probability": 0.25390625}, {"start": 1880.46, "end": 1880.56, "word": " is", "probability": 0.77001953125}, {"start": 1880.56, "end": 1880.64, "word": " this", "probability": 0.346923828125}, {"start": 1880.64, "end": 1881.12, "word": " synchronization?", "probability": 0.919677734375}, {"start": 1881.32, "end": 1881.72, "word": " In", "probability": 0.65087890625}, {"start": 1881.72, "end": 1882.38, "word": " D3", "probability": 0.3668212890625}, {"start": 1882.38, "end": 1882.44, "word": " programming,", "probability": 0.2314453125}, {"start": 1882.56, "end": 1882.74, "word": " you", "probability": 0.92724609375}, {"start": 1882.74, "end": 1882.76, "word": " will", "probability": 0.67822265625}, {"start": 1882.76, "end": 1883.06, "word": " learn", "probability": 0.412109375}, {"start": 1883.06, "end": 1883.52, "word": " about", "probability": 0.494384765625}, {"start": 1883.52, "end": 1884.2, "word": " threading.", "probability": 0.90625}, {"start": 1884.5, "end": 1884.9, "word": " How", "probability": 0.56982421875}, {"start": 1884.9, "end": 1885.06, "word": " to", "probability": 0.515625}, {"start": 1885.06, "end": 1885.3, "word": " have", "probability": 0.70849609375}, {"start": 1885.3, "end": 1885.66, "word": " more", "probability": 0.61962890625}, {"start": 1885.66, "end": 1885.82, "word": " than", "probability": 0.85986328125}, {"start": 1885.82, "end": 1885.94, "word": " one", "probability": 0.849609375}, {"start": 1885.94, "end": 1886.24, "word": " process", "probability": 0.56298828125}, {"start": 1886.24, "end": 1886.64, "word": " running", "probability": 0.80322265625}, {"start": 1886.64, "end": 1887.4, "word": " at", "probability": 0.66259765625}, {"start": 1887.4, "end": 1887.6, "word": " the", "probability": 0.7890625}, {"start": 1887.6, "end": 1887.6, "word": " same", "probability": 0.9033203125}, {"start": 1887.6, "end": 1888.0, "word": " time.", "probability": 0.888671875}], "temperature": 1.0}, {"id": 75, "seek": 191719, "start": 1888.77, "end": 1917.19, "text": "This synchronization is important to avoid problems if there are more than one thread running at the same time. And they need this singleton. In games, for example, you don't find a person walking and hopping and a bird flying and a person in front of you hopping on you. These are all running together. We call it multi-threading. And each person may need common data that can reach singleton. Again, if they are all running together, a problem may occur.", "tokens": [5723, 19331, 2144, 307, 1021, 281, 5042, 2740, 498, 456, 366, 544, 813, 472, 7207, 2614, 412, 264, 912, 565, 13, 400, 436, 643, 341, 1522, 14806, 13, 682, 2813, 11, 337, 1365, 11, 291, 500, 380, 915, 257, 954, 4494, 293, 47199, 293, 257, 5255, 7137, 293, 257, 954, 294, 1868, 295, 291, 47199, 322, 291, 13, 1981, 366, 439, 2614, 1214, 13, 492, 818, 309, 4825, 12, 392, 35908, 13, 400, 1184, 954, 815, 643, 2689, 1412, 300, 393, 2524, 1522, 14806, 13, 3764, 11, 498, 436, 366, 439, 2614, 1214, 11, 257, 1154, 815, 5160, 13], "avg_logprob": -0.565000011920929, "compression_ratio": 1.7882352941176471, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 1888.77, "end": 1889.29, "word": "This", "probability": 0.129150390625}, {"start": 1889.29, "end": 1889.81, "word": " synchronization", "probability": 0.52783203125}, {"start": 1889.81, "end": 1889.89, "word": " is", "probability": 0.75830078125}, {"start": 1889.89, "end": 1890.17, "word": " important", "probability": 0.658203125}, {"start": 1890.17, "end": 1890.99, "word": " to", "probability": 0.11572265625}, {"start": 1890.99, "end": 1891.33, "word": " avoid", "probability": 0.59716796875}, {"start": 1891.33, "end": 1891.85, "word": " problems", "probability": 0.3203125}, {"start": 1891.85, "end": 1891.99, "word": " if", "probability": 0.51708984375}, {"start": 1891.99, "end": 1892.29, "word": " there", "probability": 0.29541015625}, {"start": 1892.29, "end": 1892.39, "word": " are", "probability": 0.5693359375}, {"start": 1892.39, "end": 1892.69, "word": " more", "probability": 0.65185546875}, {"start": 1892.69, "end": 1892.73, "word": " than", "probability": 0.6787109375}, {"start": 1892.73, "end": 1892.97, "word": " one", "probability": 0.71630859375}, {"start": 1892.97, "end": 1893.25, "word": " thread", "probability": 0.837890625}, {"start": 1893.25, "end": 1893.99, "word": " running", "probability": 0.375244140625}, {"start": 1893.99, "end": 1895.15, "word": " at", "probability": 0.445556640625}, {"start": 1895.15, "end": 1895.99, "word": " the", "probability": 0.74951171875}, {"start": 1895.99, "end": 1896.07, "word": " same", "probability": 0.888671875}, {"start": 1896.07, "end": 1897.09, "word": " time.", "probability": 0.88720703125}, {"start": 1897.33, "end": 1897.69, "word": " And", "probability": 0.138427734375}, {"start": 1897.69, "end": 1897.79, "word": " they", "probability": 0.407470703125}, {"start": 1897.79, "end": 1898.21, "word": " need", "probability": 0.78662109375}, {"start": 1898.21, "end": 1898.79, "word": " this", "probability": 0.677734375}, {"start": 1898.79, "end": 1899.19, "word": " singleton.", "probability": 0.78466796875}, {"start": 1899.73, "end": 1900.25, "word": " In", "probability": 0.1690673828125}, {"start": 1900.25, "end": 1900.63, "word": " games,", "probability": 0.64453125}, {"start": 1900.79, "end": 1900.89, "word": " for", "probability": 0.57177734375}, {"start": 1900.89, "end": 1901.05, "word": " example,", "probability": 0.88037109375}, {"start": 1901.49, "end": 1901.51, "word": " you", "probability": 0.662109375}, {"start": 1901.51, "end": 1901.61, "word": " don't", "probability": 0.664794921875}, {"start": 1901.61, "end": 1901.87, "word": " find", "probability": 0.607421875}, {"start": 1901.87, "end": 1902.09, "word": " a", "probability": 0.513671875}, {"start": 1902.09, "end": 1902.33, "word": " person", "probability": 0.359619140625}, {"start": 1902.33, "end": 1902.57, "word": " walking", "probability": 0.8212890625}, {"start": 1902.57, "end": 1902.69, "word": " and", "probability": 0.53125}, {"start": 1902.69, "end": 1902.95, "word": " hopping", "probability": 0.2122802734375}, {"start": 1902.95, "end": 1903.19, "word": " and", "probability": 0.43212890625}, {"start": 1903.19, "end": 1903.33, "word": " a", "probability": 0.345947265625}, {"start": 1903.33, "end": 1903.63, "word": " bird", "probability": 0.86083984375}, {"start": 1903.63, "end": 1904.13, "word": " flying", "probability": 0.8251953125}, {"start": 1904.13, "end": 1904.69, "word": " and", "probability": 0.56005859375}, {"start": 1904.69, "end": 1904.73, "word": " a", "probability": 0.409423828125}, {"start": 1904.73, "end": 1904.93, "word": " person", "probability": 0.6630859375}, {"start": 1904.93, "end": 1905.03, "word": " in", "probability": 0.135009765625}, {"start": 1905.03, "end": 1905.25, "word": " front", "probability": 0.9453125}, {"start": 1905.25, "end": 1905.25, "word": " of", "probability": 0.890625}, {"start": 1905.25, "end": 1905.31, "word": " you", "probability": 0.794921875}, {"start": 1905.31, "end": 1905.55, "word": " hopping", "probability": 0.2376708984375}, {"start": 1905.55, "end": 1905.73, "word": " on", "probability": 0.4970703125}, {"start": 1905.73, "end": 1905.89, "word": " you.", "probability": 0.87109375}, {"start": 1905.95, "end": 1906.03, "word": " These", "probability": 0.3212890625}, {"start": 1906.03, "end": 1906.15, "word": " are", "probability": 0.56494140625}, {"start": 1906.15, "end": 1906.29, "word": " all", "probability": 0.88720703125}, {"start": 1906.29, "end": 1906.57, "word": " running", "probability": 0.73876953125}, {"start": 1906.57, "end": 1906.95, "word": " together.", "probability": 0.75732421875}, {"start": 1907.79, "end": 1907.87, "word": " We", "probability": 0.289794921875}, {"start": 1907.87, "end": 1907.87, "word": " call", "probability": 0.89013671875}, {"start": 1907.87, "end": 1908.41, "word": " it", "probability": 0.408447265625}, {"start": 1908.41, "end": 1908.67, "word": " multi", "probability": 0.390625}, {"start": 1908.67, "end": 1909.01, "word": "-threading.", "probability": 0.9357096354166666}, {"start": 1910.21, "end": 1910.33, "word": " And", "probability": 0.2998046875}, {"start": 1910.33, "end": 1910.49, "word": " each", "probability": 0.603515625}, {"start": 1910.49, "end": 1910.71, "word": " person", "probability": 0.48583984375}, {"start": 1910.71, "end": 1910.97, "word": " may", "probability": 0.3740234375}, {"start": 1910.97, "end": 1911.45, "word": " need", "probability": 0.82958984375}, {"start": 1911.45, "end": 1912.41, "word": " common", "probability": 0.3681640625}, {"start": 1912.41, "end": 1913.11, "word": " data", "probability": 0.8623046875}, {"start": 1913.11, "end": 1913.33, "word": " that", "probability": 0.38427734375}, {"start": 1913.33, "end": 1913.49, "word": " can", "probability": 0.57080078125}, {"start": 1913.49, "end": 1913.71, "word": " reach", "probability": 0.716796875}, {"start": 1913.71, "end": 1914.23, "word": " singleton.", "probability": 0.6826171875}, {"start": 1915.01, "end": 1915.45, "word": " Again,", "probability": 0.306640625}, {"start": 1915.55, "end": 1915.65, "word": " if", "probability": 0.931640625}, {"start": 1915.65, "end": 1915.93, "word": " they", "probability": 0.53759765625}, {"start": 1915.93, "end": 1915.95, "word": " are", "probability": 0.75439453125}, {"start": 1915.95, "end": 1915.95, "word": " all", "probability": 0.89892578125}, {"start": 1915.95, "end": 1916.33, "word": " running", "probability": 0.6923828125}, {"start": 1916.33, "end": 1916.67, "word": " together,", "probability": 0.833984375}, {"start": 1916.81, "end": 1916.81, "word": " a", "probability": 0.67578125}, {"start": 1916.81, "end": 1916.81, "word": " problem", "probability": 0.84765625}, {"start": 1916.81, "end": 1916.89, "word": " may", "probability": 0.47119140625}, {"start": 1916.89, "end": 1917.19, "word": " occur.", "probability": 0.6455078125}], "temperature": 1.0}, {"id": 76, "seek": 193252, "start": 1918.96, "end": 1932.52, "text": " Where does the problem occur? Let's do tracking. Do we know that a processor can run more than one program at the same time? No. How can programs run more than one program at the same time?", "tokens": [2305, 775, 264, 1154, 5160, 30, 961, 311, 360, 11603, 13, 1144, 321, 458, 300, 257, 15321, 393, 1190, 544, 813, 472, 1461, 412, 264, 912, 565, 30, 883, 13, 1012, 393, 4268, 1190, 544, 813, 472, 1461, 412, 264, 912, 565, 30], "avg_logprob": -0.5426136621020057, "compression_ratio": 1.6101694915254237, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1918.96, "end": 1919.22, "word": " Where", "probability": 0.108642578125}, {"start": 1919.22, "end": 1919.38, "word": " does", "probability": 0.5322265625}, {"start": 1919.38, "end": 1919.62, "word": " the", "probability": 0.5361328125}, {"start": 1919.62, "end": 1919.76, "word": " problem", "probability": 0.7724609375}, {"start": 1919.76, "end": 1919.76, "word": " occur?", "probability": 0.48828125}, {"start": 1919.92, "end": 1920.16, "word": " Let's", "probability": 0.65625}, {"start": 1920.16, "end": 1920.5, "word": " do", "probability": 0.548828125}, {"start": 1920.5, "end": 1920.92, "word": " tracking.", "probability": 0.5966796875}, {"start": 1921.02, "end": 1921.14, "word": " Do", "probability": 0.11865234375}, {"start": 1921.14, "end": 1921.26, "word": " we", "probability": 0.54150390625}, {"start": 1921.26, "end": 1921.82, "word": " know", "probability": 0.8544921875}, {"start": 1921.82, "end": 1924.26, "word": " that", "probability": 0.1600341796875}, {"start": 1924.26, "end": 1924.88, "word": " a", "probability": 0.146240234375}, {"start": 1924.88, "end": 1925.7, "word": " processor", "probability": 0.82666015625}, {"start": 1925.7, "end": 1925.88, "word": " can", "probability": 0.8388671875}, {"start": 1925.88, "end": 1926.1, "word": " run", "probability": 0.65625}, {"start": 1926.1, "end": 1926.42, "word": " more", "probability": 0.841796875}, {"start": 1926.42, "end": 1926.52, "word": " than", "probability": 0.62646484375}, {"start": 1926.52, "end": 1926.74, "word": " one", "probability": 0.75927734375}, {"start": 1926.74, "end": 1926.92, "word": " program", "probability": 0.66650390625}, {"start": 1926.92, "end": 1927.04, "word": " at", "probability": 0.646484375}, {"start": 1927.04, "end": 1927.16, "word": " the", "probability": 0.5126953125}, {"start": 1927.16, "end": 1927.24, "word": " same", "probability": 0.88818359375}, {"start": 1927.24, "end": 1927.66, "word": " time?", "probability": 0.83935546875}, {"start": 1928.9, "end": 1929.34, "word": " No.", "probability": 0.58642578125}, {"start": 1929.5, "end": 1929.72, "word": " How", "probability": 0.29296875}, {"start": 1929.72, "end": 1930.0, "word": " can", "probability": 0.48388671875}, {"start": 1930.0, "end": 1930.52, "word": " programs", "probability": 0.50341796875}, {"start": 1930.52, "end": 1931.22, "word": " run", "probability": 0.7021484375}, {"start": 1931.22, "end": 1931.52, "word": " more", "probability": 0.88427734375}, {"start": 1931.52, "end": 1931.64, "word": " than", "probability": 0.472900390625}, {"start": 1931.64, "end": 1931.92, "word": " one", "probability": 0.697265625}, {"start": 1931.92, "end": 1931.98, "word": " program", "probability": 0.853515625}, {"start": 1931.98, "end": 1932.08, "word": " at", "probability": 0.77978515625}, {"start": 1932.08, "end": 1932.18, "word": " the", "probability": 0.82275390625}, {"start": 1932.18, "end": 1932.22, "word": " same", "probability": 0.8994140625}, {"start": 1932.22, "end": 1932.52, "word": " time?", "probability": 0.8984375}], "temperature": 1.0}, {"id": 77, "seek": 195970, "start": 1933.42, "end": 1959.7, "text": " Yes, it creates a time slot for each processor. Basically, the processor works for a certain period of time, then it stops working again, but this process takes place quickly, so you notice that the programs work together. Unless modern processors have multiprocessors, then each processor will work on its own. But we are talking about a single processor that does not run more than one process at the same time. It gives each one a time slot. Can you imagine", "tokens": [1079, 11, 309, 7829, 257, 565, 14747, 337, 1184, 15321, 13, 8537, 11, 264, 15321, 1985, 337, 257, 1629, 2896, 295, 565, 11, 550, 309, 10094, 1364, 797, 11, 457, 341, 1399, 2516, 1081, 2661, 11, 370, 291, 3449, 300, 264, 4268, 589, 1214, 13, 16581, 4363, 27751, 362, 3311, 340, 45700, 11, 550, 1184, 15321, 486, 589, 322, 1080, 1065, 13, 583, 321, 366, 1417, 466, 257, 2167, 15321, 300, 775, 406, 1190, 544, 813, 472, 1399, 412, 264, 912, 565, 13, 467, 2709, 1184, 472, 257, 565, 14747, 13, 1664, 291, 3811], "avg_logprob": -0.5273026516563014, "compression_ratio": 1.8221343873517786, "no_speech_prob": 1.7404556274414062e-05, "words": [{"start": 1933.42, "end": 1933.82, "word": " Yes,", "probability": 0.353515625}, {"start": 1934.26, "end": 1934.36, "word": " it", "probability": 0.63427734375}, {"start": 1934.36, "end": 1934.74, "word": " creates", "probability": 0.487060546875}, {"start": 1934.74, "end": 1935.38, "word": " a", "probability": 0.89599609375}, {"start": 1935.38, "end": 1935.62, "word": " time", "probability": 0.67626953125}, {"start": 1935.62, "end": 1936.0, "word": " slot", "probability": 0.90185546875}, {"start": 1936.0, "end": 1936.44, "word": " for", "probability": 0.86328125}, {"start": 1936.44, "end": 1936.68, "word": " each", "probability": 0.7607421875}, {"start": 1936.68, "end": 1937.06, "word": " processor.", "probability": 0.474609375}, {"start": 1937.4, "end": 1937.76, "word": " Basically,", "probability": 0.23193359375}, {"start": 1937.82, "end": 1937.96, "word": " the", "probability": 0.353515625}, {"start": 1937.96, "end": 1938.18, "word": " processor", "probability": 0.57958984375}, {"start": 1938.18, "end": 1938.66, "word": " works", "probability": 0.294189453125}, {"start": 1938.66, "end": 1938.84, "word": " for", "probability": 0.724609375}, {"start": 1938.84, "end": 1939.12, "word": " a", "probability": 0.953125}, {"start": 1939.12, "end": 1939.68, "word": " certain", "probability": 0.449462890625}, {"start": 1939.68, "end": 1939.68, "word": " period", "probability": 0.7216796875}, {"start": 1939.68, "end": 1939.68, "word": " of", "probability": 0.9287109375}, {"start": 1939.68, "end": 1939.68, "word": " time,", "probability": 0.8935546875}, {"start": 1940.06, "end": 1940.42, "word": " then", "probability": 0.2447509765625}, {"start": 1940.42, "end": 1940.7, "word": " it", "probability": 0.384765625}, {"start": 1940.7, "end": 1940.7, "word": " stops", "probability": 0.59619140625}, {"start": 1940.7, "end": 1940.82, "word": " working", "probability": 0.308349609375}, {"start": 1940.82, "end": 1941.38, "word": " again,", "probability": 0.35693359375}, {"start": 1941.44, "end": 1941.58, "word": " but", "probability": 0.701171875}, {"start": 1941.58, "end": 1941.72, "word": " this", "probability": 0.7294921875}, {"start": 1941.72, "end": 1941.96, "word": " process", "probability": 0.857421875}, {"start": 1941.96, "end": 1942.28, "word": " takes", "probability": 0.170166015625}, {"start": 1942.28, "end": 1942.28, "word": " place", "probability": 0.828125}, {"start": 1942.28, "end": 1942.64, "word": " quickly,", "probability": 0.4033203125}, {"start": 1943.04, "end": 1943.42, "word": " so", "probability": 0.55419921875}, {"start": 1943.42, "end": 1943.54, "word": " you", "probability": 0.7548828125}, {"start": 1943.54, "end": 1943.8, "word": " notice", "probability": 0.552734375}, {"start": 1943.8, "end": 1944.0, "word": " that", "probability": 0.8193359375}, {"start": 1944.0, "end": 1944.44, "word": " the", "probability": 0.71728515625}, {"start": 1944.44, "end": 1944.84, "word": " programs", "probability": 0.52197265625}, {"start": 1944.84, "end": 1944.96, "word": " work", "probability": 0.55517578125}, {"start": 1944.96, "end": 1945.78, "word": " together.", "probability": 0.79248046875}, {"start": 1946.02, "end": 1946.34, "word": " Unless", "probability": 0.257080078125}, {"start": 1946.34, "end": 1946.58, "word": " modern", "probability": 0.51171875}, {"start": 1946.58, "end": 1947.1, "word": " processors", "probability": 0.896484375}, {"start": 1947.1, "end": 1947.86, "word": " have", "probability": 0.72265625}, {"start": 1947.86, "end": 1948.7, "word": " multiprocessors,", "probability": 0.7789713541666666}, {"start": 1949.42, "end": 1949.48, "word": " then", "probability": 0.37255859375}, {"start": 1949.48, "end": 1950.12, "word": " each", "probability": 0.5068359375}, {"start": 1950.12, "end": 1950.46, "word": " processor", "probability": 0.89208984375}, {"start": 1950.46, "end": 1950.6, "word": " will", "probability": 0.25048828125}, {"start": 1950.6, "end": 1950.98, "word": " work", "probability": 0.4375}, {"start": 1950.98, "end": 1951.78, "word": " on", "probability": 0.62109375}, {"start": 1951.78, "end": 1951.96, "word": " its", "probability": 0.17529296875}, {"start": 1951.96, "end": 1951.96, "word": " own.", "probability": 0.83154296875}, {"start": 1952.02, "end": 1952.22, "word": " But", "probability": 0.75341796875}, {"start": 1952.22, "end": 1952.34, "word": " we", "probability": 0.452392578125}, {"start": 1952.34, "end": 1952.46, "word": " are", "probability": 0.63330078125}, {"start": 1952.46, "end": 1952.62, "word": " talking", "probability": 0.8251953125}, {"start": 1952.62, "end": 1952.74, "word": " about", "probability": 0.89501953125}, {"start": 1952.74, "end": 1952.82, "word": " a", "probability": 0.302734375}, {"start": 1952.82, "end": 1953.58, "word": " single", "probability": 0.697265625}, {"start": 1953.58, "end": 1953.66, "word": " processor", "probability": 0.9208984375}, {"start": 1953.66, "end": 1954.44, "word": " that", "probability": 0.68505859375}, {"start": 1954.44, "end": 1954.56, "word": " does", "probability": 0.464599609375}, {"start": 1954.56, "end": 1954.56, "word": " not", "probability": 0.919921875}, {"start": 1954.56, "end": 1954.78, "word": " run", "probability": 0.312255859375}, {"start": 1954.78, "end": 1955.04, "word": " more", "probability": 0.9189453125}, {"start": 1955.04, "end": 1955.28, "word": " than", "probability": 0.86181640625}, {"start": 1955.28, "end": 1956.16, "word": " one", "probability": 0.82421875}, {"start": 1956.16, "end": 1956.4, "word": " process", "probability": 0.75927734375}, {"start": 1956.4, "end": 1956.56, "word": " at", "probability": 0.84716796875}, {"start": 1956.56, "end": 1956.76, "word": " the", "probability": 0.806640625}, {"start": 1956.76, "end": 1956.76, "word": " same", "probability": 0.8955078125}, {"start": 1956.76, "end": 1957.14, "word": " time.", "probability": 0.55078125}, {"start": 1957.56, "end": 1958.02, "word": " It", "probability": 0.57470703125}, {"start": 1958.02, "end": 1958.16, "word": " gives", "probability": 0.485595703125}, {"start": 1958.16, "end": 1958.36, "word": " each", "probability": 0.81982421875}, {"start": 1958.36, "end": 1958.44, "word": " one", "probability": 0.505859375}, {"start": 1958.44, "end": 1958.58, "word": " a", "probability": 0.9033203125}, {"start": 1958.58, "end": 1958.72, "word": " time", "probability": 0.84130859375}, {"start": 1958.72, "end": 1959.02, "word": " slot.", "probability": 0.93701171875}, {"start": 1959.1, "end": 1959.24, "word": " Can", "probability": 0.39208984375}, {"start": 1959.24, "end": 1959.32, "word": " you", "probability": 0.96728515625}, {"start": 1959.32, "end": 1959.7, "word": " imagine", "probability": 0.92822265625}], "temperature": 1.0}, {"id": 78, "seek": 197505, "start": 1961.73, "end": 1975.05, "text": "It gave a time slot for a specific process, it started working, and this process started producing a singleton. The proof was created, a get instance was created, and it was verified. This instance is equal to null.", "tokens": [3522, 2729, 257, 565, 14747, 337, 257, 2685, 1399, 11, 309, 1409, 1364, 11, 293, 341, 1399, 1409, 10501, 257, 2167, 1756, 13, 440, 8177, 390, 2942, 11, 257, 483, 5197, 390, 2942, 11, 293, 309, 390, 31197, 13, 639, 5197, 307, 2681, 281, 18184, 13], "avg_logprob": -0.8583776773290431, "compression_ratio": 1.5467625899280575, "no_speech_prob": 0.0, "words": [{"start": 1961.73, "end": 1961.89, "word": "It", "probability": 0.1630859375}, {"start": 1961.89, "end": 1962.03, "word": " gave", "probability": 0.30322265625}, {"start": 1962.03, "end": 1962.27, "word": " a", "probability": 0.3984375}, {"start": 1962.27, "end": 1962.27, "word": " time", "probability": 0.217041015625}, {"start": 1962.27, "end": 1962.73, "word": " slot", "probability": 0.88720703125}, {"start": 1962.73, "end": 1962.99, "word": " for", "probability": 0.5380859375}, {"start": 1962.99, "end": 1963.09, "word": " a", "probability": 0.84619140625}, {"start": 1963.09, "end": 1963.63, "word": " specific", "probability": 0.3408203125}, {"start": 1963.63, "end": 1963.63, "word": " process,", "probability": 0.92236328125}, {"start": 1963.81, "end": 1963.81, "word": " it", "probability": 0.415283203125}, {"start": 1963.81, "end": 1964.01, "word": " started", "probability": 0.411865234375}, {"start": 1964.01, "end": 1964.11, "word": " working,", "probability": 0.363525390625}, {"start": 1964.25, "end": 1964.31, "word": " and", "probability": 0.352294921875}, {"start": 1964.31, "end": 1964.53, "word": " this", "probability": 0.30712890625}, {"start": 1964.53, "end": 1964.91, "word": " process", "probability": 0.8916015625}, {"start": 1964.91, "end": 1965.61, "word": " started", "probability": 0.57666015625}, {"start": 1965.61, "end": 1966.11, "word": " producing", "probability": 0.275390625}, {"start": 1966.11, "end": 1966.97, "word": " a", "probability": 0.1943359375}, {"start": 1966.97, "end": 1967.43, "word": " singleton.", "probability": 0.649658203125}, {"start": 1967.99, "end": 1968.47, "word": " The", "probability": 0.267822265625}, {"start": 1968.47, "end": 1968.47, "word": " proof", "probability": 0.2484130859375}, {"start": 1968.47, "end": 1968.53, "word": " was", "probability": 0.47021484375}, {"start": 1968.53, "end": 1968.91, "word": " created,", "probability": 0.2484130859375}, {"start": 1970.39, "end": 1971.77, "word": " a", "probability": 0.1884765625}, {"start": 1971.77, "end": 1971.93, "word": " get", "probability": 0.389404296875}, {"start": 1971.93, "end": 1972.45, "word": " instance", "probability": 0.837890625}, {"start": 1972.45, "end": 1972.51, "word": " was", "probability": 0.7998046875}, {"start": 1972.51, "end": 1972.51, "word": " created,", "probability": 0.301025390625}, {"start": 1973.11, "end": 1973.11, "word": " and", "probability": 0.3388671875}, {"start": 1973.11, "end": 1973.11, "word": " it", "probability": 0.4853515625}, {"start": 1973.11, "end": 1973.11, "word": " was", "probability": 0.33544921875}, {"start": 1973.11, "end": 1973.37, "word": " verified.", "probability": 0.53564453125}, {"start": 1973.71, "end": 1973.95, "word": " This", "probability": 0.356201171875}, {"start": 1973.95, "end": 1974.39, "word": " instance", "probability": 0.9365234375}, {"start": 1974.39, "end": 1974.57, "word": " is", "probability": 0.5439453125}, {"start": 1974.57, "end": 1974.79, "word": " equal", "probability": 0.1871337890625}, {"start": 1974.79, "end": 1974.95, "word": " to", "probability": 0.9775390625}, {"start": 1974.95, "end": 1975.05, "word": " null.", "probability": 0.6220703125}], "temperature": 1.0}, {"id": 79, "seek": 199354, "start": 1977.28, "end": 1993.54, "text": " Wait a minute. No, it hasn't started yet. Luckily, the therapist decided that at this moment, it hasn't started yet. She checked and found that if it started, the therapist came and told her to stop. That's it. Your time is over. Okay, so it hasn't started yet? No, it's over. Your time is over. Okay.", "tokens": [3802, 257, 3456, 13, 883, 11, 309, 6132, 380, 1409, 1939, 13, 19726, 11, 264, 19830, 3047, 300, 412, 341, 1623, 11, 309, 6132, 380, 1409, 1939, 13, 1240, 10033, 293, 1352, 300, 498, 309, 1409, 11, 264, 19830, 1361, 293, 1907, 720, 281, 1590, 13, 663, 311, 309, 13, 2260, 565, 307, 670, 13, 1033, 11, 370, 309, 6132, 380, 1409, 1939, 30, 883, 11, 309, 311, 670, 13, 2260, 565, 307, 670, 13, 1033, 13], "avg_logprob": -0.6189904037194375, "compression_ratio": 1.8083832335329342, "no_speech_prob": 1.2934207916259766e-05, "words": [{"start": 1977.28, "end": 1977.56, "word": " Wait", "probability": 0.1619873046875}, {"start": 1977.56, "end": 1977.56, "word": " a", "probability": 0.650390625}, {"start": 1977.56, "end": 1977.74, "word": " minute.", "probability": 0.4736328125}, {"start": 1977.9, "end": 1977.98, "word": " No,", "probability": 0.39453125}, {"start": 1978.1, "end": 1978.3, "word": " it", "probability": 0.31396484375}, {"start": 1978.3, "end": 1978.38, "word": " hasn't", "probability": 0.63720703125}, {"start": 1978.38, "end": 1978.56, "word": " started", "probability": 0.420654296875}, {"start": 1978.56, "end": 1978.76, "word": " yet.", "probability": 0.828125}, {"start": 1979.26, "end": 1979.66, "word": " Luckily,", "probability": 0.298583984375}, {"start": 1979.96, "end": 1980.02, "word": " the", "probability": 0.81201171875}, {"start": 1980.02, "end": 1980.26, "word": " therapist", "probability": 0.09527587890625}, {"start": 1980.26, "end": 1980.62, "word": " decided", "probability": 0.7001953125}, {"start": 1980.62, "end": 1981.82, "word": " that", "probability": 0.66552734375}, {"start": 1981.82, "end": 1981.92, "word": " at", "probability": 0.2125244140625}, {"start": 1981.92, "end": 1982.02, "word": " this", "probability": 0.775390625}, {"start": 1982.02, "end": 1982.5, "word": " moment,", "probability": 0.7138671875}, {"start": 1982.66, "end": 1982.7, "word": " it", "probability": 0.64453125}, {"start": 1982.7, "end": 1982.94, "word": " hasn't", "probability": 0.812255859375}, {"start": 1982.94, "end": 1983.14, "word": " started", "probability": 0.8935546875}, {"start": 1983.14, "end": 1983.4, "word": " yet.", "probability": 0.85498046875}, {"start": 1983.52, "end": 1983.56, "word": " She", "probability": 0.564453125}, {"start": 1983.56, "end": 1983.78, "word": " checked", "probability": 0.5400390625}, {"start": 1983.78, "end": 1983.98, "word": " and", "probability": 0.541015625}, {"start": 1983.98, "end": 1984.18, "word": " found", "probability": 0.300048828125}, {"start": 1984.18, "end": 1984.8, "word": " that", "probability": 0.5966796875}, {"start": 1984.8, "end": 1985.06, "word": " if", "probability": 0.168212890625}, {"start": 1985.06, "end": 1985.46, "word": " it", "probability": 0.5595703125}, {"start": 1985.46, "end": 1985.9, "word": " started,", "probability": 0.1055908203125}, {"start": 1986.14, "end": 1986.68, "word": " the", "probability": 0.71484375}, {"start": 1986.68, "end": 1986.9, "word": " therapist", "probability": 0.85498046875}, {"start": 1986.9, "end": 1987.02, "word": " came", "probability": 0.180908203125}, {"start": 1987.02, "end": 1987.14, "word": " and", "probability": 0.7236328125}, {"start": 1987.14, "end": 1987.14, "word": " told", "probability": 0.414306640625}, {"start": 1987.14, "end": 1987.18, "word": " her", "probability": 0.9326171875}, {"start": 1987.18, "end": 1987.3, "word": " to", "probability": 0.87255859375}, {"start": 1987.3, "end": 1987.42, "word": " stop.", "probability": 0.93310546875}, {"start": 1987.96, "end": 1988.12, "word": " That's", "probability": 0.551025390625}, {"start": 1988.12, "end": 1988.34, "word": " it.", "probability": 0.85986328125}, {"start": 1988.54, "end": 1988.82, "word": " Your", "probability": 0.513671875}, {"start": 1988.82, "end": 1988.82, "word": " time", "probability": 0.88330078125}, {"start": 1988.82, "end": 1988.92, "word": " is", "probability": 0.79736328125}, {"start": 1988.92, "end": 1989.18, "word": " over.", "probability": 0.50390625}, {"start": 1989.98, "end": 1990.3, "word": " Okay,", "probability": 0.25927734375}, {"start": 1990.46, "end": 1990.5, "word": " so", "probability": 0.432373046875}, {"start": 1990.5, "end": 1990.68, "word": " it", "probability": 0.435302734375}, {"start": 1990.68, "end": 1990.8, "word": " hasn't", "probability": 0.773193359375}, {"start": 1990.8, "end": 1991.0, "word": " started", "probability": 0.67333984375}, {"start": 1991.0, "end": 1991.06, "word": " yet?", "probability": 0.87060546875}, {"start": 1991.4, "end": 1991.5, "word": " No,", "probability": 0.5849609375}, {"start": 1991.8, "end": 1991.94, "word": " it's", "probability": 0.45526123046875}, {"start": 1991.94, "end": 1992.08, "word": " over.", "probability": 0.5849609375}, {"start": 1992.38, "end": 1992.6, "word": " Your", "probability": 0.603515625}, {"start": 1992.6, "end": 1992.86, "word": " time", "probability": 0.8740234375}, {"start": 1992.86, "end": 1993.08, "word": " is", "probability": 0.88134765625}, {"start": 1993.08, "end": 1993.22, "word": " over.", "probability": 0.71826171875}, {"start": 1993.36, "end": 1993.54, "word": " Okay.", "probability": 0.59228515625}], "temperature": 1.0}, {"id": 80, "seek": 201043, "start": 1995.05, "end": 2010.43, "text": "She went left and did the next operation. After the next operation, what did she ask for? She got an instance. She got the instance from her, what did she get from it? She created it and returned the instance. She finished her work and came back to continue working on the first one. Where did the first one go? It ended up in the cycle.", "tokens": [9526, 1437, 1411, 293, 630, 264, 958, 6916, 13, 2381, 264, 958, 6916, 11, 437, 630, 750, 1029, 337, 30, 1240, 658, 364, 5197, 13, 1240, 658, 264, 5197, 490, 720, 11, 437, 630, 750, 483, 490, 309, 30, 1240, 2942, 309, 293, 8752, 264, 5197, 13, 1240, 4335, 720, 589, 293, 1361, 646, 281, 2354, 1364, 322, 264, 700, 472, 13, 2305, 630, 264, 700, 472, 352, 30, 467, 4590, 493, 294, 264, 6586, 13], "avg_logprob": -0.6663960915107232, "compression_ratio": 1.7736842105263158, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 1995.05, "end": 1995.27, "word": "She", "probability": 0.0836181640625}, {"start": 1995.27, "end": 1995.41, "word": " went", "probability": 0.4228515625}, {"start": 1995.41, "end": 1995.77, "word": " left", "probability": 0.497314453125}, {"start": 1995.77, "end": 1996.05, "word": " and", "probability": 0.390625}, {"start": 1996.05, "end": 1996.15, "word": " did", "probability": 0.11761474609375}, {"start": 1996.15, "end": 1996.43, "word": " the", "probability": 0.218017578125}, {"start": 1996.43, "end": 1996.49, "word": " next", "probability": 0.439208984375}, {"start": 1996.49, "end": 1996.51, "word": " operation.", "probability": 0.193603515625}, {"start": 1996.61, "end": 1996.73, "word": " After", "probability": 0.168212890625}, {"start": 1996.73, "end": 1997.37, "word": " the", "probability": 0.363525390625}, {"start": 1997.37, "end": 1997.37, "word": " next", "probability": 0.609375}, {"start": 1997.37, "end": 1997.37, "word": " operation,", "probability": 0.9208984375}, {"start": 1997.81, "end": 1997.81, "word": " what", "probability": 0.0897216796875}, {"start": 1997.81, "end": 1997.81, "word": " did", "probability": 0.87109375}, {"start": 1997.81, "end": 1998.11, "word": " she", "probability": 0.89453125}, {"start": 1998.11, "end": 1998.37, "word": " ask", "probability": 0.50634765625}, {"start": 1998.37, "end": 1998.79, "word": " for?", "probability": 0.66357421875}, {"start": 1998.85, "end": 1998.99, "word": " She", "probability": 0.79541015625}, {"start": 1998.99, "end": 1999.11, "word": " got", "probability": 0.413818359375}, {"start": 1999.11, "end": 1999.25, "word": " an", "probability": 0.6044921875}, {"start": 1999.25, "end": 1999.47, "word": " instance.", "probability": 0.9453125}, {"start": 1999.77, "end": 2000.05, "word": " She", "probability": 0.65771484375}, {"start": 2000.05, "end": 2000.19, "word": " got", "probability": 0.2073974609375}, {"start": 2000.19, "end": 2000.33, "word": " the", "probability": 0.806640625}, {"start": 2000.33, "end": 2000.65, "word": " instance", "probability": 0.86328125}, {"start": 2000.65, "end": 2000.89, "word": " from", "probability": 0.265380859375}, {"start": 2000.89, "end": 2001.01, "word": " her,", "probability": 0.294189453125}, {"start": 2001.13, "end": 2001.71, "word": " what", "probability": 0.41796875}, {"start": 2001.71, "end": 2001.71, "word": " did", "probability": 0.88818359375}, {"start": 2001.71, "end": 2001.91, "word": " she", "probability": 0.84814453125}, {"start": 2001.91, "end": 2002.03, "word": " get", "probability": 0.60498046875}, {"start": 2002.03, "end": 2002.07, "word": " from", "probability": 0.6005859375}, {"start": 2002.07, "end": 2002.27, "word": " it?", "probability": 0.72802734375}, {"start": 2002.59, "end": 2002.95, "word": " She", "probability": 0.66845703125}, {"start": 2002.95, "end": 2003.09, "word": " created", "probability": 0.31591796875}, {"start": 2003.09, "end": 2003.25, "word": " it", "probability": 0.412109375}, {"start": 2003.25, "end": 2003.33, "word": " and", "probability": 0.76904296875}, {"start": 2003.33, "end": 2003.57, "word": " returned", "probability": 0.49951171875}, {"start": 2003.57, "end": 2003.79, "word": " the", "probability": 0.64111328125}, {"start": 2003.79, "end": 2004.07, "word": " instance.", "probability": 0.97265625}, {"start": 2004.47, "end": 2004.59, "word": " She", "probability": 0.609375}, {"start": 2004.59, "end": 2004.89, "word": " finished", "probability": 0.37451171875}, {"start": 2004.89, "end": 2004.97, "word": " her", "probability": 0.87646484375}, {"start": 2004.97, "end": 2005.19, "word": " work", "probability": 0.489990234375}, {"start": 2005.19, "end": 2005.59, "word": " and", "probability": 0.7900390625}, {"start": 2005.59, "end": 2005.65, "word": " came", "probability": 0.221923828125}, {"start": 2005.65, "end": 2005.93, "word": " back", "probability": 0.861328125}, {"start": 2005.93, "end": 2006.09, "word": " to", "probability": 0.8740234375}, {"start": 2006.09, "end": 2006.35, "word": " continue", "probability": 0.384765625}, {"start": 2006.35, "end": 2006.69, "word": " working", "probability": 0.277587890625}, {"start": 2006.69, "end": 2007.67, "word": " on", "probability": 0.65283203125}, {"start": 2007.67, "end": 2007.77, "word": " the", "probability": 0.80810546875}, {"start": 2007.77, "end": 2007.93, "word": " first", "probability": 0.74755859375}, {"start": 2007.93, "end": 2008.01, "word": " one.", "probability": 0.5888671875}, {"start": 2008.11, "end": 2008.33, "word": " Where", "probability": 0.31689453125}, {"start": 2008.33, "end": 2008.33, "word": " did", "probability": 0.9248046875}, {"start": 2008.33, "end": 2008.33, "word": " the", "probability": 0.599609375}, {"start": 2008.33, "end": 2008.49, "word": " first", "probability": 0.869140625}, {"start": 2008.49, "end": 2008.85, "word": " one", "probability": 0.755859375}, {"start": 2008.85, "end": 2008.91, "word": " go?", "probability": 0.277587890625}, {"start": 2009.41, "end": 2009.53, "word": " It", "probability": 0.4892578125}, {"start": 2009.53, "end": 2009.79, "word": " ended", "probability": 0.26611328125}, {"start": 2009.79, "end": 2009.95, "word": " up", "probability": 0.441650390625}, {"start": 2009.95, "end": 2010.05, "word": " in", "probability": 0.5751953125}, {"start": 2010.05, "end": 2010.19, "word": " the", "probability": 0.7421875}, {"start": 2010.19, "end": 2010.43, "word": " cycle.", "probability": 0.442626953125}], "temperature": 1.0}, {"id": 81, "seek": 203259, "start": 2011.07, "end": 2032.59, "text": " Okay? You will go straight to do what? Nu. What is the result of it? There are two objects. Did you see where the problem happened? Okay? So how can I solve this problem? They tell me that when you put the word synchronize, it is like you are telling the processor, hey processor, any process that starts in this method should not be interrupted.", "tokens": [1033, 30, 509, 486, 352, 2997, 281, 360, 437, 30, 13612, 13, 708, 307, 264, 1874, 295, 309, 30, 821, 366, 732, 6565, 13, 2589, 291, 536, 689, 264, 1154, 2011, 30, 1033, 30, 407, 577, 393, 286, 5039, 341, 1154, 30, 814, 980, 385, 300, 562, 291, 829, 264, 1349, 19331, 1125, 11, 309, 307, 411, 291, 366, 3585, 264, 15321, 11, 4177, 15321, 11, 604, 1399, 300, 3719, 294, 341, 3170, 820, 406, 312, 30329, 13], "avg_logprob": -0.588607603990579, "compression_ratio": 1.5701357466063348, "no_speech_prob": 1.7285346984863281e-06, "words": [{"start": 2011.07, "end": 2011.47, "word": " Okay?", "probability": 0.04931640625}, {"start": 2012.15, "end": 2012.39, "word": " You", "probability": 0.56640625}, {"start": 2012.39, "end": 2012.47, "word": " will", "probability": 0.55322265625}, {"start": 2012.47, "end": 2012.61, "word": " go", "probability": 0.193115234375}, {"start": 2012.61, "end": 2012.93, "word": " straight", "probability": 0.36572265625}, {"start": 2012.93, "end": 2013.03, "word": " to", "probability": 0.69140625}, {"start": 2013.03, "end": 2013.25, "word": " do", "probability": 0.2445068359375}, {"start": 2013.25, "end": 2013.55, "word": " what?", "probability": 0.66357421875}, {"start": 2013.63, "end": 2013.89, "word": " Nu.", "probability": 0.2078857421875}, {"start": 2014.05, "end": 2014.21, "word": " What", "probability": 0.7421875}, {"start": 2014.21, "end": 2014.21, "word": " is", "probability": 0.54638671875}, {"start": 2014.21, "end": 2014.49, "word": " the", "probability": 0.83740234375}, {"start": 2014.49, "end": 2014.49, "word": " result", "probability": 0.90673828125}, {"start": 2014.49, "end": 2014.63, "word": " of", "probability": 0.548828125}, {"start": 2014.63, "end": 2014.79, "word": " it?", "probability": 0.48046875}, {"start": 2015.53, "end": 2015.93, "word": " There", "probability": 0.2152099609375}, {"start": 2015.93, "end": 2015.93, "word": " are", "probability": 0.5224609375}, {"start": 2015.93, "end": 2016.23, "word": " two", "probability": 0.62841796875}, {"start": 2016.23, "end": 2017.43, "word": " objects.", "probability": 0.73291015625}, {"start": 2018.01, "end": 2018.41, "word": " Did", "probability": 0.304443359375}, {"start": 2018.41, "end": 2018.41, "word": " you", "probability": 0.97119140625}, {"start": 2018.41, "end": 2018.59, "word": " see", "probability": 0.8564453125}, {"start": 2018.59, "end": 2018.75, "word": " where", "probability": 0.282958984375}, {"start": 2018.75, "end": 2018.81, "word": " the", "probability": 0.82470703125}, {"start": 2018.81, "end": 2019.05, "word": " problem", "probability": 0.8544921875}, {"start": 2019.05, "end": 2019.33, "word": " happened?", "probability": 0.3173828125}, {"start": 2019.93, "end": 2020.33, "word": " Okay?", "probability": 0.6162109375}, {"start": 2020.85, "end": 2021.01, "word": " So", "probability": 0.31494140625}, {"start": 2021.01, "end": 2021.19, "word": " how", "probability": 0.6484375}, {"start": 2021.19, "end": 2021.51, "word": " can", "probability": 0.84326171875}, {"start": 2021.51, "end": 2021.61, "word": " I", "probability": 0.939453125}, {"start": 2021.61, "end": 2021.79, "word": " solve", "probability": 0.486083984375}, {"start": 2021.79, "end": 2021.95, "word": " this", "probability": 0.92724609375}, {"start": 2021.95, "end": 2022.23, "word": " problem?", "probability": 0.87744140625}, {"start": 2022.75, "end": 2022.99, "word": " They", "probability": 0.436279296875}, {"start": 2022.99, "end": 2023.11, "word": " tell", "probability": 0.38037109375}, {"start": 2023.11, "end": 2023.23, "word": " me", "probability": 0.9189453125}, {"start": 2023.23, "end": 2023.25, "word": " that", "probability": 0.33837890625}, {"start": 2023.25, "end": 2023.35, "word": " when", "probability": 0.76220703125}, {"start": 2023.35, "end": 2023.51, "word": " you", "probability": 0.84521484375}, {"start": 2023.51, "end": 2023.67, "word": " put", "probability": 0.51708984375}, {"start": 2023.67, "end": 2023.83, "word": " the", "probability": 0.426513671875}, {"start": 2023.83, "end": 2023.97, "word": " word", "probability": 0.85009765625}, {"start": 2023.97, "end": 2024.71, "word": " synchronize,", "probability": 0.5814208984375}, {"start": 2025.37, "end": 2026.19, "word": " it", "probability": 0.404541015625}, {"start": 2026.19, "end": 2026.23, "word": " is", "probability": 0.6640625}, {"start": 2026.23, "end": 2026.35, "word": " like", "probability": 0.73193359375}, {"start": 2026.35, "end": 2026.57, "word": " you", "probability": 0.427001953125}, {"start": 2026.57, "end": 2026.73, "word": " are", "probability": 0.6552734375}, {"start": 2026.73, "end": 2026.87, "word": " telling", "probability": 0.5361328125}, {"start": 2026.87, "end": 2027.03, "word": " the", "probability": 0.80078125}, {"start": 2027.03, "end": 2027.39, "word": " processor,", "probability": 0.88525390625}, {"start": 2027.97, "end": 2028.19, "word": " hey", "probability": 0.10296630859375}, {"start": 2028.19, "end": 2028.69, "word": " processor,", "probability": 0.91552734375}, {"start": 2029.19, "end": 2029.39, "word": " any", "probability": 0.361328125}, {"start": 2029.39, "end": 2029.97, "word": " process", "probability": 0.95263671875}, {"start": 2029.97, "end": 2030.15, "word": " that", "probability": 0.7451171875}, {"start": 2030.15, "end": 2030.35, "word": " starts", "probability": 0.67578125}, {"start": 2030.35, "end": 2030.45, "word": " in", "probability": 0.3779296875}, {"start": 2030.45, "end": 2030.55, "word": " this", "probability": 0.9267578125}, {"start": 2030.55, "end": 2031.05, "word": " method", "probability": 0.94091796875}, {"start": 2031.05, "end": 2032.33, "word": " should", "probability": 0.292236328125}, {"start": 2032.33, "end": 2032.33, "word": " not", "probability": 0.90478515625}, {"start": 2032.33, "end": 2032.41, "word": " be", "probability": 0.29736328125}, {"start": 2032.41, "end": 2032.59, "word": " interrupted.", "probability": 0.6787109375}], "temperature": 1.0}, {"id": 82, "seek": 205969, "start": 2034.2, "end": 2059.7, "text": " Like someone who eats and drinks, you can't tell him to stop, you have to let him finish and then start the process. So let him finish and let him get bored. As long as he has reached his goal, you have to finish it. The problem that happened a while ago resulted in him stopping someone before he could move forward. But when the gate is set to synchronize, it means that any process that has entered this method", "tokens": [1743, 1580, 567, 18109, 293, 12142, 11, 291, 393, 380, 980, 796, 281, 1590, 11, 291, 362, 281, 718, 796, 2413, 293, 550, 722, 264, 1399, 13, 407, 718, 796, 2413, 293, 718, 796, 483, 13521, 13, 1018, 938, 382, 415, 575, 6488, 702, 3387, 11, 291, 362, 281, 2413, 309, 13, 440, 1154, 300, 2011, 257, 1339, 2057, 18753, 294, 796, 12767, 1580, 949, 415, 727, 1286, 2128, 13, 583, 562, 264, 8539, 307, 992, 281, 19331, 1125, 11, 309, 1355, 300, 604, 1399, 300, 575, 9065, 341, 3170], "avg_logprob": -0.7115384707084069, "compression_ratio": 1.7178423236514522, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 2034.2, "end": 2034.44, "word": " Like", "probability": 0.30712890625}, {"start": 2034.44, "end": 2034.62, "word": " someone", "probability": 0.30859375}, {"start": 2034.62, "end": 2034.68, "word": " who", "probability": 0.6103515625}, {"start": 2034.68, "end": 2034.82, "word": " eats", "probability": 0.693359375}, {"start": 2034.82, "end": 2035.0, "word": " and", "probability": 0.8056640625}, {"start": 2035.0, "end": 2035.3, "word": " drinks,", "probability": 0.89306640625}, {"start": 2035.42, "end": 2035.48, "word": " you", "probability": 0.50537109375}, {"start": 2035.48, "end": 2035.78, "word": " can't", "probability": 0.6929931640625}, {"start": 2035.78, "end": 2036.12, "word": " tell", "probability": 0.1610107421875}, {"start": 2036.12, "end": 2036.64, "word": " him", "probability": 0.61474609375}, {"start": 2036.64, "end": 2036.72, "word": " to", "probability": 0.9130859375}, {"start": 2036.72, "end": 2036.88, "word": " stop,", "probability": 0.88330078125}, {"start": 2037.16, "end": 2037.76, "word": " you", "probability": 0.259521484375}, {"start": 2037.76, "end": 2038.04, "word": " have", "probability": 0.30908203125}, {"start": 2038.04, "end": 2038.04, "word": " to", "probability": 0.97412109375}, {"start": 2038.04, "end": 2038.06, "word": " let", "probability": 0.358154296875}, {"start": 2038.06, "end": 2038.22, "word": " him", "probability": 0.779296875}, {"start": 2038.22, "end": 2038.56, "word": " finish", "probability": 0.7578125}, {"start": 2038.56, "end": 2039.2, "word": " and", "probability": 0.234130859375}, {"start": 2039.2, "end": 2039.42, "word": " then", "probability": 0.60595703125}, {"start": 2039.42, "end": 2039.82, "word": " start", "probability": 0.303466796875}, {"start": 2039.82, "end": 2040.54, "word": " the", "probability": 0.6103515625}, {"start": 2040.54, "end": 2040.78, "word": " process.", "probability": 0.8662109375}, {"start": 2040.88, "end": 2040.96, "word": " So", "probability": 0.2042236328125}, {"start": 2040.96, "end": 2041.08, "word": " let", "probability": 0.2138671875}, {"start": 2041.08, "end": 2041.08, "word": " him", "probability": 0.70947265625}, {"start": 2041.08, "end": 2041.28, "word": " finish", "probability": 0.84423828125}, {"start": 2041.28, "end": 2041.46, "word": " and", "probability": 0.29248046875}, {"start": 2041.46, "end": 2041.58, "word": " let", "probability": 0.168212890625}, {"start": 2041.58, "end": 2041.6, "word": " him", "probability": 0.80029296875}, {"start": 2041.6, "end": 2041.6, "word": " get", "probability": 0.09576416015625}, {"start": 2041.6, "end": 2041.78, "word": " bored.", "probability": 0.38671875}, {"start": 2042.72, "end": 2043.16, "word": " As", "probability": 0.6865234375}, {"start": 2043.16, "end": 2043.38, "word": " long", "probability": 0.7978515625}, {"start": 2043.38, "end": 2043.38, "word": " as", "probability": 0.966796875}, {"start": 2043.38, "end": 2043.5, "word": " he", "probability": 0.51611328125}, {"start": 2043.5, "end": 2043.72, "word": " has", "probability": 0.1273193359375}, {"start": 2043.72, "end": 2043.78, "word": " reached", "probability": 0.1226806640625}, {"start": 2043.78, "end": 2043.8, "word": " his", "probability": 0.748046875}, {"start": 2043.8, "end": 2044.08, "word": " goal,", "probability": 0.6943359375}, {"start": 2045.02, "end": 2045.14, "word": " you", "probability": 0.51025390625}, {"start": 2045.14, "end": 2045.26, "word": " have", "probability": 0.583984375}, {"start": 2045.26, "end": 2045.38, "word": " to", "probability": 0.97314453125}, {"start": 2045.38, "end": 2045.64, "word": " finish", "probability": 0.465087890625}, {"start": 2045.64, "end": 2046.12, "word": " it.", "probability": 0.6103515625}, {"start": 2048.08, "end": 2048.52, "word": " The", "probability": 0.1883544921875}, {"start": 2048.52, "end": 2050.28, "word": " problem", "probability": 0.73779296875}, {"start": 2050.28, "end": 2050.42, "word": " that", "probability": 0.70263671875}, {"start": 2050.42, "end": 2050.64, "word": " happened", "probability": 0.3583984375}, {"start": 2050.64, "end": 2050.92, "word": " a", "probability": 0.375244140625}, {"start": 2050.92, "end": 2051.04, "word": " while", "probability": 0.7255859375}, {"start": 2051.04, "end": 2051.04, "word": " ago", "probability": 0.8505859375}, {"start": 2051.04, "end": 2051.36, "word": " resulted", "probability": 0.360595703125}, {"start": 2051.36, "end": 2052.46, "word": " in", "probability": 0.5419921875}, {"start": 2052.46, "end": 2052.68, "word": " him", "probability": 0.2193603515625}, {"start": 2052.68, "end": 2052.92, "word": " stopping", "probability": 0.69189453125}, {"start": 2052.92, "end": 2053.42, "word": " someone", "probability": 0.642578125}, {"start": 2053.42, "end": 2053.92, "word": " before", "probability": 0.79443359375}, {"start": 2053.92, "end": 2054.86, "word": " he", "probability": 0.595703125}, {"start": 2054.86, "end": 2055.0, "word": " could", "probability": 0.455322265625}, {"start": 2055.0, "end": 2055.06, "word": " move", "probability": 0.134521484375}, {"start": 2055.06, "end": 2055.44, "word": " forward.", "probability": 0.62060546875}, {"start": 2056.06, "end": 2056.5, "word": " But", "probability": 0.728515625}, {"start": 2056.5, "end": 2056.72, "word": " when", "probability": 0.1756591796875}, {"start": 2056.72, "end": 2056.76, "word": " the", "probability": 0.254150390625}, {"start": 2056.76, "end": 2056.9, "word": " gate", "probability": 0.6982421875}, {"start": 2056.9, "end": 2057.26, "word": " is", "probability": 0.70166015625}, {"start": 2057.26, "end": 2057.36, "word": " set", "probability": 0.416015625}, {"start": 2057.36, "end": 2057.36, "word": " to", "probability": 0.70849609375}, {"start": 2057.36, "end": 2057.86, "word": " synchronize,", "probability": 0.892578125}, {"start": 2057.96, "end": 2057.96, "word": " it", "probability": 0.330322265625}, {"start": 2057.96, "end": 2058.16, "word": " means", "probability": 0.8779296875}, {"start": 2058.16, "end": 2058.26, "word": " that", "probability": 0.76611328125}, {"start": 2058.26, "end": 2058.5, "word": " any", "probability": 0.57421875}, {"start": 2058.5, "end": 2058.92, "word": " process", "probability": 0.93115234375}, {"start": 2058.92, "end": 2059.04, "word": " that", "probability": 0.7431640625}, {"start": 2059.04, "end": 2059.1, "word": " has", "probability": 0.11865234375}, {"start": 2059.1, "end": 2059.26, "word": " entered", "probability": 0.429931640625}, {"start": 2059.26, "end": 2059.38, "word": " this", "probability": 0.62939453125}, {"start": 2059.38, "end": 2059.7, "word": " method", "probability": 0.845703125}], "temperature": 1.0}, {"id": 83, "seek": 208852, "start": 2060.86, "end": 2088.52, "text": " you have to complete it till the end to make sure that you don't create two objects in the same program is it clear guys? what is the use of this synchronization? ok, so it is necessary if you have multi-threading in your program but if there are no threads in the program, you don't need this in all cases, if you put it, it is not wrong, ok? ok, now", "tokens": [291, 362, 281, 3566, 309, 4288, 264, 917, 281, 652, 988, 300, 291, 500, 380, 1884, 732, 6565, 294, 264, 912, 1461, 307, 309, 1850, 1074, 30, 437, 307, 264, 764, 295, 341, 19331, 2144, 30, 3133, 11, 370, 309, 307, 4818, 498, 291, 362, 4825, 12, 392, 35908, 294, 428, 1461, 457, 498, 456, 366, 572, 19314, 294, 264, 1461, 11, 291, 500, 380, 643, 341, 294, 439, 3331, 11, 498, 291, 829, 309, 11, 309, 307, 406, 2085, 11, 3133, 30, 3133, 11, 586], "avg_logprob": -0.5560344827586207, "compression_ratio": 1.6842105263157894, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 2060.86, "end": 2061.26, "word": " you", "probability": 0.1888427734375}, {"start": 2061.26, "end": 2061.38, "word": " have", "probability": 0.31201171875}, {"start": 2061.38, "end": 2061.44, "word": " to", "probability": 0.9609375}, {"start": 2061.44, "end": 2061.78, "word": " complete", "probability": 0.38232421875}, {"start": 2061.78, "end": 2062.04, "word": " it", "probability": 0.69921875}, {"start": 2062.04, "end": 2062.78, "word": " till", "probability": 0.241943359375}, {"start": 2062.78, "end": 2062.9, "word": " the", "probability": 0.8603515625}, {"start": 2062.9, "end": 2063.14, "word": " end", "probability": 0.8291015625}, {"start": 2063.14, "end": 2063.94, "word": " to", "probability": 0.326171875}, {"start": 2063.94, "end": 2064.52, "word": " make", "probability": 0.4228515625}, {"start": 2064.52, "end": 2064.74, "word": " sure", "probability": 0.91748046875}, {"start": 2064.74, "end": 2064.82, "word": " that", "probability": 0.50244140625}, {"start": 2064.82, "end": 2064.88, "word": " you", "probability": 0.229736328125}, {"start": 2064.88, "end": 2064.92, "word": " don't", "probability": 0.81591796875}, {"start": 2064.92, "end": 2065.16, "word": " create", "probability": 0.66259765625}, {"start": 2065.16, "end": 2065.34, "word": " two", "probability": 0.556640625}, {"start": 2065.34, "end": 2065.7, "word": " objects", "probability": 0.90673828125}, {"start": 2065.7, "end": 2066.94, "word": " in", "probability": 0.78955078125}, {"start": 2066.94, "end": 2067.22, "word": " the", "probability": 0.7890625}, {"start": 2067.22, "end": 2067.22, "word": " same", "probability": 0.84912109375}, {"start": 2067.22, "end": 2067.64, "word": " program", "probability": 0.8427734375}, {"start": 2067.64, "end": 2067.88, "word": " is", "probability": 0.0640869140625}, {"start": 2067.88, "end": 2067.88, "word": " it", "probability": 0.6435546875}, {"start": 2067.88, "end": 2068.0, "word": " clear", "probability": 0.85791015625}, {"start": 2068.0, "end": 2068.48, "word": " guys?", "probability": 0.350341796875}, {"start": 2068.7, "end": 2068.98, "word": " what", "probability": 0.55078125}, {"start": 2068.98, "end": 2069.02, "word": " is", "probability": 0.66064453125}, {"start": 2069.02, "end": 2069.22, "word": " the", "probability": 0.81005859375}, {"start": 2069.22, "end": 2069.22, "word": " use", "probability": 0.52099609375}, {"start": 2069.22, "end": 2069.22, "word": " of", "probability": 0.94287109375}, {"start": 2069.22, "end": 2069.32, "word": " this", "probability": 0.35693359375}, {"start": 2069.32, "end": 2069.86, "word": " synchronization?", "probability": 0.5848388671875}, {"start": 2071.12, "end": 2071.42, "word": " ok,", "probability": 0.2166748046875}, {"start": 2071.72, "end": 2071.86, "word": " so", "probability": 0.468994140625}, {"start": 2071.86, "end": 2072.02, "word": " it", "probability": 0.2379150390625}, {"start": 2072.02, "end": 2072.12, "word": " is", "probability": 0.34130859375}, {"start": 2072.12, "end": 2072.26, "word": " necessary", "probability": 0.379150390625}, {"start": 2072.26, "end": 2072.42, "word": " if", "probability": 0.47509765625}, {"start": 2072.42, "end": 2072.64, "word": " you", "probability": 0.7666015625}, {"start": 2072.64, "end": 2073.76, "word": " have", "probability": 0.64892578125}, {"start": 2073.76, "end": 2074.28, "word": " multi", "probability": 0.379638671875}, {"start": 2074.28, "end": 2074.66, "word": "-threading", "probability": 0.692626953125}, {"start": 2074.66, "end": 2074.66, "word": " in", "probability": 0.82568359375}, {"start": 2074.66, "end": 2074.66, "word": " your", "probability": 0.796875}, {"start": 2074.66, "end": 2074.66, "word": " program", "probability": 0.6962890625}, {"start": 2074.66, "end": 2075.38, "word": " but", "probability": 0.77783203125}, {"start": 2075.38, "end": 2075.56, "word": " if", "probability": 0.8974609375}, {"start": 2075.56, "end": 2075.68, "word": " there", "probability": 0.68701171875}, {"start": 2075.68, "end": 2075.82, "word": " are", "probability": 0.4619140625}, {"start": 2075.82, "end": 2075.84, "word": " no", "probability": 0.91748046875}, {"start": 2075.84, "end": 2076.16, "word": " threads", "probability": 0.92626953125}, {"start": 2076.16, "end": 2076.32, "word": " in", "probability": 0.89111328125}, {"start": 2076.32, "end": 2076.42, "word": " the", "probability": 0.65576171875}, {"start": 2076.42, "end": 2076.82, "word": " program,", "probability": 0.85400390625}, {"start": 2077.42, "end": 2077.42, "word": " you", "probability": 0.490478515625}, {"start": 2077.42, "end": 2077.58, "word": " don't", "probability": 0.88671875}, {"start": 2077.58, "end": 2077.78, "word": " need", "probability": 0.861328125}, {"start": 2077.78, "end": 2078.64, "word": " this", "probability": 0.591796875}, {"start": 2078.64, "end": 2078.9, "word": " in", "probability": 0.191162109375}, {"start": 2078.9, "end": 2079.14, "word": " all", "probability": 0.783203125}, {"start": 2079.14, "end": 2079.42, "word": " cases,", "probability": 0.7275390625}, {"start": 2079.5, "end": 2079.58, "word": " if", "probability": 0.68359375}, {"start": 2079.58, "end": 2079.62, "word": " you", "probability": 0.5947265625}, {"start": 2079.62, "end": 2079.82, "word": " put", "probability": 0.412109375}, {"start": 2079.82, "end": 2080.12, "word": " it,", "probability": 0.6328125}, {"start": 2080.46, "end": 2080.96, "word": " it", "probability": 0.826171875}, {"start": 2080.96, "end": 2080.98, "word": " is", "probability": 0.5263671875}, {"start": 2080.98, "end": 2081.04, "word": " not", "probability": 0.7861328125}, {"start": 2081.04, "end": 2081.28, "word": " wrong,", "probability": 0.86181640625}, {"start": 2081.4, "end": 2081.68, "word": " ok?", "probability": 0.331787109375}, {"start": 2087.48, "end": 2087.96, "word": " ok,", "probability": 0.703125}, {"start": 2088.28, "end": 2088.52, "word": " now", "probability": 0.9013671875}], "temperature": 1.0}, {"id": 84, "seek": 211675, "start": 2090.31, "end": 2116.75, "text": "Note that the singleton instance is only created when needed. This is an important point. For example, in a phone book, it is possible that the first thing you do is the same object, static. We know that static can come from anywhere. But they tell me that the problem with static is that you drag it and put it in the memory even if you don't use it. But in singleton,", "tokens": [49250, 300, 264, 1522, 14806, 5197, 307, 787, 2942, 562, 2978, 13, 639, 307, 364, 1021, 935, 13, 1171, 1365, 11, 294, 257, 2593, 1446, 11, 309, 307, 1944, 300, 264, 700, 551, 291, 360, 307, 264, 912, 2657, 11, 13437, 13, 492, 458, 300, 13437, 393, 808, 490, 4992, 13, 583, 436, 980, 385, 300, 264, 1154, 365, 13437, 307, 300, 291, 5286, 309, 293, 829, 309, 294, 264, 4675, 754, 498, 291, 500, 380, 764, 309, 13, 583, 294, 1522, 14806, 11], "avg_logprob": -0.5797794089597814, "compression_ratio": 1.6255506607929515, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 2090.31, "end": 2090.79, "word": "Note", "probability": 0.0906982421875}, {"start": 2090.79, "end": 2091.27, "word": " that", "probability": 0.7353515625}, {"start": 2091.27, "end": 2091.45, "word": " the", "probability": 0.304443359375}, {"start": 2091.45, "end": 2091.79, "word": " singleton", "probability": 0.871337890625}, {"start": 2091.79, "end": 2092.37, "word": " instance", "probability": 0.93212890625}, {"start": 2092.37, "end": 2092.67, "word": " is", "probability": 0.9091796875}, {"start": 2092.67, "end": 2092.97, "word": " only", "probability": 0.8515625}, {"start": 2092.97, "end": 2093.55, "word": " created", "probability": 0.84716796875}, {"start": 2093.55, "end": 2093.79, "word": " when", "probability": 0.91845703125}, {"start": 2093.79, "end": 2094.13, "word": " needed.", "probability": 0.849609375}, {"start": 2094.93, "end": 2095.13, "word": " This", "probability": 0.26171875}, {"start": 2095.13, "end": 2095.19, "word": " is", "probability": 0.85107421875}, {"start": 2095.19, "end": 2095.47, "word": " an", "probability": 0.41015625}, {"start": 2095.47, "end": 2095.57, "word": " important", "probability": 0.859375}, {"start": 2095.57, "end": 2095.57, "word": " point.", "probability": 0.90869140625}, {"start": 2095.81, "end": 2096.15, "word": " For", "probability": 0.5380859375}, {"start": 2096.15, "end": 2096.45, "word": " example,", "probability": 0.85302734375}, {"start": 2096.55, "end": 2096.55, "word": " in", "probability": 0.258544921875}, {"start": 2096.55, "end": 2096.65, "word": " a", "probability": 0.3447265625}, {"start": 2096.65, "end": 2096.85, "word": " phone", "probability": 0.908203125}, {"start": 2096.85, "end": 2097.09, "word": " book,", "probability": 0.6513671875}, {"start": 2097.21, "end": 2097.39, "word": " it", "probability": 0.09454345703125}, {"start": 2097.39, "end": 2097.79, "word": " is", "probability": 0.267578125}, {"start": 2097.79, "end": 2097.85, "word": " possible", "probability": 0.64208984375}, {"start": 2097.85, "end": 2098.09, "word": " that", "probability": 0.4267578125}, {"start": 2098.09, "end": 2098.17, "word": " the", "probability": 0.286865234375}, {"start": 2098.17, "end": 2098.27, "word": " first", "probability": 0.5205078125}, {"start": 2098.27, "end": 2098.45, "word": " thing", "probability": 0.650390625}, {"start": 2098.45, "end": 2098.53, "word": " you", "probability": 0.6181640625}, {"start": 2098.53, "end": 2098.77, "word": " do", "probability": 0.475830078125}, {"start": 2098.77, "end": 2099.01, "word": " is", "probability": 0.751953125}, {"start": 2099.01, "end": 2099.13, "word": " the", "probability": 0.3642578125}, {"start": 2099.13, "end": 2099.23, "word": " same", "probability": 0.8251953125}, {"start": 2099.23, "end": 2099.79, "word": " object,", "probability": 0.87744140625}, {"start": 2100.43, "end": 2100.73, "word": " static.", "probability": 0.6630859375}, {"start": 2101.67, "end": 2102.15, "word": " We", "probability": 0.30224609375}, {"start": 2102.15, "end": 2102.59, "word": " know", "probability": 0.64501953125}, {"start": 2102.59, "end": 2102.73, "word": " that", "probability": 0.921875}, {"start": 2102.73, "end": 2103.19, "word": " static", "probability": 0.875}, {"start": 2103.19, "end": 2103.95, "word": " can", "probability": 0.351318359375}, {"start": 2103.95, "end": 2104.19, "word": " come", "probability": 0.331787109375}, {"start": 2104.19, "end": 2104.29, "word": " from", "probability": 0.83544921875}, {"start": 2104.29, "end": 2104.59, "word": " anywhere.", "probability": 0.681640625}, {"start": 2105.29, "end": 2105.77, "word": " But", "probability": 0.7744140625}, {"start": 2105.77, "end": 2105.91, "word": " they", "probability": 0.3583984375}, {"start": 2105.91, "end": 2106.01, "word": " tell", "probability": 0.307373046875}, {"start": 2106.01, "end": 2106.11, "word": " me", "probability": 0.489501953125}, {"start": 2106.11, "end": 2106.33, "word": " that", "probability": 0.77490234375}, {"start": 2106.33, "end": 2106.53, "word": " the", "probability": 0.5302734375}, {"start": 2106.53, "end": 2106.77, "word": " problem", "probability": 0.7646484375}, {"start": 2106.77, "end": 2106.95, "word": " with", "probability": 0.63525390625}, {"start": 2106.95, "end": 2107.39, "word": " static", "probability": 0.95166015625}, {"start": 2107.39, "end": 2108.05, "word": " is", "probability": 0.8818359375}, {"start": 2108.05, "end": 2108.11, "word": " that", "probability": 0.8505859375}, {"start": 2108.11, "end": 2108.41, "word": " you", "probability": 0.697265625}, {"start": 2108.41, "end": 2108.85, "word": " drag", "probability": 0.04241943359375}, {"start": 2108.85, "end": 2109.09, "word": " it", "probability": 0.70947265625}, {"start": 2109.09, "end": 2109.65, "word": " and", "probability": 0.59423828125}, {"start": 2109.65, "end": 2110.03, "word": " put", "probability": 0.38232421875}, {"start": 2110.03, "end": 2110.13, "word": " it", "probability": 0.87255859375}, {"start": 2110.13, "end": 2110.19, "word": " in", "probability": 0.791015625}, {"start": 2110.19, "end": 2110.29, "word": " the", "probability": 0.421875}, {"start": 2110.29, "end": 2110.75, "word": " memory", "probability": 0.826171875}, {"start": 2110.75, "end": 2111.49, "word": " even", "probability": 0.66015625}, {"start": 2111.49, "end": 2111.65, "word": " if", "probability": 0.89111328125}, {"start": 2111.65, "end": 2111.83, "word": " you", "probability": 0.93798828125}, {"start": 2111.83, "end": 2111.91, "word": " don't", "probability": 0.626708984375}, {"start": 2111.91, "end": 2112.19, "word": " use", "probability": 0.8876953125}, {"start": 2112.19, "end": 2113.25, "word": " it.", "probability": 0.94287109375}, {"start": 2114.47, "end": 2114.95, "word": " But", "probability": 0.24951171875}, {"start": 2114.95, "end": 2116.17, "word": " in", "probability": 0.79296875}, {"start": 2116.17, "end": 2116.75, "word": " singleton,", "probability": 0.87451171875}], "temperature": 1.0}, {"id": 85, "seek": 214542, "start": 2119.52, "end": 2145.42, "text": " The object is going to be controllable Correct or not? It's not going to be created by the teacher or the instructor unless it's needed for the first time Correct or not? This is the big difference between creating the object from the beginning and leaving it in memory We don't want to create things unless we need them for the first time A game needs material, audio file, video file, why not download them all when you download the game?", "tokens": [440, 2657, 307, 516, 281, 312, 660, 3970, 712, 12753, 420, 406, 30, 467, 311, 406, 516, 281, 312, 2942, 538, 264, 5027, 420, 264, 18499, 5969, 309, 311, 2978, 337, 264, 700, 565, 12753, 420, 406, 30, 639, 307, 264, 955, 2649, 1296, 4084, 264, 2657, 490, 264, 2863, 293, 5012, 309, 294, 4675, 492, 500, 380, 528, 281, 1884, 721, 5969, 321, 643, 552, 337, 264, 700, 565, 316, 1216, 2203, 2527, 11, 6278, 3991, 11, 960, 3991, 11, 983, 406, 5484, 552, 439, 562, 291, 5484, 264, 1216, 30], "avg_logprob": -0.6280242114938716, "compression_ratio": 1.8451882845188285, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2119.52, "end": 2120.04, "word": " The", "probability": 0.24560546875}, {"start": 2120.04, "end": 2120.4, "word": " object", "probability": 0.9326171875}, {"start": 2120.4, "end": 2120.64, "word": " is", "probability": 0.47509765625}, {"start": 2120.64, "end": 2120.72, "word": " going", "probability": 0.1636962890625}, {"start": 2120.72, "end": 2120.72, "word": " to", "probability": 0.951171875}, {"start": 2120.72, "end": 2120.72, "word": " be", "probability": 0.67138671875}, {"start": 2120.72, "end": 2121.84, "word": " controllable", "probability": 0.4506734212239583}, {"start": 2121.84, "end": 2123.08, "word": " Correct", "probability": 0.08001708984375}, {"start": 2123.08, "end": 2123.34, "word": " or", "probability": 0.73193359375}, {"start": 2123.34, "end": 2123.34, "word": " not?", "probability": 0.748046875}, {"start": 2123.68, "end": 2123.94, "word": " It's", "probability": 0.2628173828125}, {"start": 2123.94, "end": 2123.94, "word": " not", "probability": 0.81494140625}, {"start": 2123.94, "end": 2124.04, "word": " going", "probability": 0.4462890625}, {"start": 2124.04, "end": 2124.08, "word": " to", "probability": 0.96875}, {"start": 2124.08, "end": 2124.28, "word": " be", "probability": 0.6357421875}, {"start": 2124.28, "end": 2124.32, "word": " created", "probability": 0.64453125}, {"start": 2124.32, "end": 2124.58, "word": " by", "probability": 0.6455078125}, {"start": 2124.58, "end": 2124.82, "word": " the", "probability": 0.39990234375}, {"start": 2124.82, "end": 2125.0, "word": " teacher", "probability": 0.27734375}, {"start": 2125.0, "end": 2125.16, "word": " or", "probability": 0.79052734375}, {"start": 2125.16, "end": 2125.2, "word": " the", "probability": 0.58935546875}, {"start": 2125.2, "end": 2125.78, "word": " instructor", "probability": 0.83203125}, {"start": 2125.78, "end": 2127.46, "word": " unless", "probability": 0.1956787109375}, {"start": 2127.46, "end": 2127.74, "word": " it's", "probability": 0.544921875}, {"start": 2127.74, "end": 2127.74, "word": " needed", "probability": 0.462890625}, {"start": 2127.74, "end": 2127.74, "word": " for", "probability": 0.326171875}, {"start": 2127.74, "end": 2128.02, "word": " the", "probability": 0.9072265625}, {"start": 2128.02, "end": 2128.02, "word": " first", "probability": 0.84912109375}, {"start": 2128.02, "end": 2128.74, "word": " time", "probability": 0.8828125}, {"start": 2128.74, "end": 2129.92, "word": " Correct", "probability": 0.43310546875}, {"start": 2129.92, "end": 2130.14, "word": " or", "probability": 0.9619140625}, {"start": 2130.14, "end": 2130.16, "word": " not?", "probability": 0.904296875}, {"start": 2130.9, "end": 2131.16, "word": " This", "probability": 0.33251953125}, {"start": 2131.16, "end": 2131.24, "word": " is", "probability": 0.43212890625}, {"start": 2131.24, "end": 2131.24, "word": " the", "probability": 0.80126953125}, {"start": 2131.24, "end": 2131.6, "word": " big", "probability": 0.246826171875}, {"start": 2131.6, "end": 2131.6, "word": " difference", "probability": 0.79736328125}, {"start": 2131.6, "end": 2132.04, "word": " between", "probability": 0.77685546875}, {"start": 2132.04, "end": 2132.46, "word": " creating", "probability": 0.78857421875}, {"start": 2132.46, "end": 2132.62, "word": " the", "probability": 0.52099609375}, {"start": 2132.62, "end": 2132.82, "word": " object", "probability": 0.96484375}, {"start": 2132.82, "end": 2132.98, "word": " from", "probability": 0.556640625}, {"start": 2132.98, "end": 2133.24, "word": " the", "probability": 0.68212890625}, {"start": 2133.24, "end": 2133.24, "word": " beginning", "probability": 0.42724609375}, {"start": 2133.24, "end": 2133.72, "word": " and", "probability": 0.6494140625}, {"start": 2133.72, "end": 2134.02, "word": " leaving", "probability": 0.277099609375}, {"start": 2134.02, "end": 2134.12, "word": " it", "probability": 0.908203125}, {"start": 2134.12, "end": 2134.18, "word": " in", "probability": 0.6669921875}, {"start": 2134.18, "end": 2134.56, "word": " memory", "probability": 0.5400390625}, {"start": 2134.56, "end": 2136.18, "word": " We", "probability": 0.6787109375}, {"start": 2136.18, "end": 2136.4, "word": " don't", "probability": 0.882080078125}, {"start": 2136.4, "end": 2136.6, "word": " want", "probability": 0.45849609375}, {"start": 2136.6, "end": 2136.68, "word": " to", "probability": 0.85986328125}, {"start": 2136.68, "end": 2136.9, "word": " create", "probability": 0.859375}, {"start": 2136.9, "end": 2137.38, "word": " things", "probability": 0.6982421875}, {"start": 2137.38, "end": 2137.84, "word": " unless", "probability": 0.39697265625}, {"start": 2137.84, "end": 2138.12, "word": " we", "probability": 0.51806640625}, {"start": 2138.12, "end": 2138.5, "word": " need", "probability": 0.92041015625}, {"start": 2138.5, "end": 2138.72, "word": " them", "probability": 0.76416015625}, {"start": 2138.72, "end": 2139.02, "word": " for", "probability": 0.102783203125}, {"start": 2139.02, "end": 2139.02, "word": " the", "probability": 0.38525390625}, {"start": 2139.02, "end": 2139.02, "word": " first", "probability": 0.8173828125}, {"start": 2139.02, "end": 2139.02, "word": " time", "probability": 0.8837890625}, {"start": 2139.02, "end": 2139.28, "word": " A", "probability": 0.708984375}, {"start": 2139.28, "end": 2139.56, "word": " game", "probability": 0.7919921875}, {"start": 2139.56, "end": 2140.0, "word": " needs", "probability": 0.71826171875}, {"start": 2140.0, "end": 2140.84, "word": " material,", "probability": 0.35498046875}, {"start": 2141.68, "end": 2142.24, "word": " audio", "probability": 0.4638671875}, {"start": 2142.24, "end": 2142.56, "word": " file,", "probability": 0.274169921875}, {"start": 2143.1, "end": 2143.52, "word": " video", "probability": 0.8173828125}, {"start": 2143.52, "end": 2143.56, "word": " file,", "probability": 0.556640625}, {"start": 2143.58, "end": 2143.74, "word": " why", "probability": 0.5654296875}, {"start": 2143.74, "end": 2143.84, "word": " not", "probability": 0.144775390625}, {"start": 2143.84, "end": 2144.08, "word": " download", "probability": 0.638671875}, {"start": 2144.08, "end": 2144.24, "word": " them", "probability": 0.52587890625}, {"start": 2144.24, "end": 2144.5, "word": " all", "probability": 0.39453125}, {"start": 2144.5, "end": 2144.78, "word": " when", "probability": 0.1650390625}, {"start": 2144.78, "end": 2144.88, "word": " you", "probability": 0.5546875}, {"start": 2144.88, "end": 2145.12, "word": " download", "probability": 0.732421875}, {"start": 2145.12, "end": 2145.22, "word": " the", "probability": 0.7705078125}, {"start": 2145.22, "end": 2145.42, "word": " game?", "probability": 0.8974609375}], "temperature": 1.0}, {"id": 86, "seek": 217351, "start": 2146.03, "end": 2173.51, "text": " No, it only handles the things that are necessary for the first level And when it comes to the second level, what does it handle? The things related to it So the idea of get instance, at the first moment, at the first time, it creates the object It didn't use it, it didn't need it, it kept going on and on The idea became clear So that's why they say that singleton supports something called lazy insensation Insensation means creating an object What does lazy mean? Lazy", "tokens": [883, 11, 309, 787, 18722, 264, 721, 300, 366, 4818, 337, 264, 700, 1496, 400, 562, 309, 1487, 281, 264, 1150, 1496, 11, 437, 775, 309, 4813, 30, 440, 721, 4077, 281, 309, 407, 264, 1558, 295, 483, 5197, 11, 412, 264, 700, 1623, 11, 412, 264, 700, 565, 11, 309, 7829, 264, 2657, 467, 994, 380, 764, 309, 11, 309, 994, 380, 643, 309, 11, 309, 4305, 516, 322, 293, 322, 440, 1558, 3062, 1850, 407, 300, 311, 983, 436, 584, 300, 1522, 14806, 9346, 746, 1219, 14847, 1028, 35292, 9442, 35292, 1355, 4084, 364, 2657, 708, 775, 14847, 914, 30, 441, 33235], "avg_logprob": -0.5797619320097424, "compression_ratio": 1.7984790874524714, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2146.03, "end": 2146.29, "word": " No,", "probability": 0.474365234375}, {"start": 2146.39, "end": 2146.61, "word": " it", "probability": 0.40869140625}, {"start": 2146.61, "end": 2146.69, "word": " only", "probability": 0.3349609375}, {"start": 2146.69, "end": 2146.69, "word": " handles", "probability": 0.12164306640625}, {"start": 2146.69, "end": 2146.93, "word": " the", "probability": 0.445068359375}, {"start": 2146.93, "end": 2147.15, "word": " things", "probability": 0.345458984375}, {"start": 2147.15, "end": 2147.29, "word": " that", "probability": 0.56591796875}, {"start": 2147.29, "end": 2147.41, "word": " are", "probability": 0.388671875}, {"start": 2147.41, "end": 2147.47, "word": " necessary", "probability": 0.382080078125}, {"start": 2147.47, "end": 2147.61, "word": " for", "probability": 0.62890625}, {"start": 2147.61, "end": 2147.65, "word": " the", "probability": 0.66943359375}, {"start": 2147.65, "end": 2148.13, "word": " first", "probability": 0.79931640625}, {"start": 2148.13, "end": 2148.13, "word": " level", "probability": 0.900390625}, {"start": 2148.13, "end": 2148.69, "word": " And", "probability": 0.290283203125}, {"start": 2148.69, "end": 2148.81, "word": " when", "probability": 0.61376953125}, {"start": 2148.81, "end": 2148.87, "word": " it", "probability": 0.4326171875}, {"start": 2148.87, "end": 2148.97, "word": " comes", "probability": 0.422119140625}, {"start": 2148.97, "end": 2149.05, "word": " to", "probability": 0.9326171875}, {"start": 2149.05, "end": 2149.41, "word": " the", "probability": 0.86376953125}, {"start": 2149.41, "end": 2149.57, "word": " second", "probability": 0.72998046875}, {"start": 2149.57, "end": 2149.57, "word": " level,", "probability": 0.92919921875}, {"start": 2149.69, "end": 2149.69, "word": " what", "probability": 0.246337890625}, {"start": 2149.69, "end": 2149.73, "word": " does", "probability": 0.7490234375}, {"start": 2149.73, "end": 2149.73, "word": " it", "probability": 0.9287109375}, {"start": 2149.73, "end": 2150.01, "word": " handle?", "probability": 0.91552734375}, {"start": 2150.59, "end": 2150.95, "word": " The", "probability": 0.64404296875}, {"start": 2150.95, "end": 2151.13, "word": " things", "probability": 0.611328125}, {"start": 2151.13, "end": 2151.53, "word": " related", "probability": 0.272705078125}, {"start": 2151.53, "end": 2151.67, "word": " to", "probability": 0.96337890625}, {"start": 2151.67, "end": 2151.81, "word": " it", "probability": 0.81982421875}, {"start": 2151.81, "end": 2152.43, "word": " So", "probability": 0.57373046875}, {"start": 2152.43, "end": 2152.63, "word": " the", "probability": 0.60791015625}, {"start": 2152.63, "end": 2152.89, "word": " idea", "probability": 0.61962890625}, {"start": 2152.89, "end": 2153.09, "word": " of", "probability": 0.896484375}, {"start": 2153.09, "end": 2153.25, "word": " get", "probability": 0.187255859375}, {"start": 2153.25, "end": 2153.61, "word": " instance,", "probability": 0.66357421875}, {"start": 2153.81, "end": 2153.93, "word": " at", "probability": 0.2017822265625}, {"start": 2153.93, "end": 2154.05, "word": " the", "probability": 0.72265625}, {"start": 2154.05, "end": 2154.25, "word": " first", "probability": 0.80517578125}, {"start": 2154.25, "end": 2154.71, "word": " moment,", "probability": 0.394775390625}, {"start": 2154.83, "end": 2154.97, "word": " at", "probability": 0.417724609375}, {"start": 2154.97, "end": 2155.13, "word": " the", "probability": 0.89306640625}, {"start": 2155.13, "end": 2155.27, "word": " first", "probability": 0.87255859375}, {"start": 2155.27, "end": 2155.59, "word": " time,", "probability": 0.78955078125}, {"start": 2155.69, "end": 2155.81, "word": " it", "probability": 0.27587890625}, {"start": 2155.81, "end": 2155.93, "word": " creates", "probability": 0.351318359375}, {"start": 2155.93, "end": 2156.07, "word": " the", "probability": 0.62353515625}, {"start": 2156.07, "end": 2156.39, "word": " object", "probability": 0.95947265625}, {"start": 2156.39, "end": 2157.43, "word": " It", "probability": 0.409423828125}, {"start": 2157.43, "end": 2157.59, "word": " didn't", "probability": 0.69189453125}, {"start": 2157.59, "end": 2157.93, "word": " use", "probability": 0.78466796875}, {"start": 2157.93, "end": 2158.17, "word": " it,", "probability": 0.58837890625}, {"start": 2158.17, "end": 2158.21, "word": " it", "probability": 0.80224609375}, {"start": 2158.21, "end": 2158.21, "word": " didn't", "probability": 0.9169921875}, {"start": 2158.21, "end": 2158.43, "word": " need", "probability": 0.515625}, {"start": 2158.43, "end": 2159.39, "word": " it,", "probability": 0.9228515625}, {"start": 2159.51, "end": 2159.57, "word": " it", "probability": 0.5341796875}, {"start": 2159.57, "end": 2159.75, "word": " kept", "probability": 0.1387939453125}, {"start": 2159.75, "end": 2159.95, "word": " going", "probability": 0.1922607421875}, {"start": 2159.95, "end": 2160.05, "word": " on", "probability": 0.1734619140625}, {"start": 2160.05, "end": 2160.05, "word": " and", "probability": 0.771484375}, {"start": 2160.05, "end": 2160.31, "word": " on", "probability": 0.93701171875}, {"start": 2160.31, "end": 2161.77, "word": " The", "probability": 0.1700439453125}, {"start": 2161.77, "end": 2162.25, "word": " idea", "probability": 0.70751953125}, {"start": 2162.25, "end": 2162.29, "word": " became", "probability": 0.442138671875}, {"start": 2162.29, "end": 2162.29, "word": " clear", "probability": 0.79443359375}, {"start": 2162.29, "end": 2163.27, "word": " So", "probability": 0.2274169921875}, {"start": 2163.27, "end": 2163.67, "word": " that's", "probability": 0.733642578125}, {"start": 2163.67, "end": 2163.67, "word": " why", "probability": 0.8994140625}, {"start": 2163.67, "end": 2163.81, "word": " they", "probability": 0.66064453125}, {"start": 2163.81, "end": 2163.99, "word": " say", "probability": 0.88525390625}, {"start": 2163.99, "end": 2164.85, "word": " that", "probability": 0.56201171875}, {"start": 2164.85, "end": 2166.07, "word": " singleton", "probability": 0.819091796875}, {"start": 2166.07, "end": 2166.39, "word": " supports", "probability": 0.6591796875}, {"start": 2166.39, "end": 2166.69, "word": " something", "probability": 0.56494140625}, {"start": 2166.69, "end": 2166.93, "word": " called", "probability": 0.8408203125}, {"start": 2166.93, "end": 2167.49, "word": " lazy", "probability": 0.76171875}, {"start": 2167.49, "end": 2169.23, "word": " insensation", "probability": 0.5191650390625}, {"start": 2169.23, "end": 2169.81, "word": " Insensation", "probability": 0.600830078125}, {"start": 2169.81, "end": 2170.03, "word": " means", "probability": 0.73486328125}, {"start": 2170.03, "end": 2170.33, "word": " creating", "probability": 0.37158203125}, {"start": 2170.33, "end": 2170.41, "word": " an", "probability": 0.288330078125}, {"start": 2170.41, "end": 2170.75, "word": " object", "probability": 0.97607421875}, {"start": 2170.75, "end": 2171.93, "word": " What", "probability": 0.376220703125}, {"start": 2171.93, "end": 2171.93, "word": " does", "probability": 0.85107421875}, {"start": 2171.93, "end": 2172.13, "word": " lazy", "probability": 0.86572265625}, {"start": 2172.13, "end": 2172.35, "word": " mean?", "probability": 0.89794921875}, {"start": 2173.11, "end": 2173.51, "word": " Lazy", "probability": 0.54815673828125}], "temperature": 1.0}, {"id": 87, "seek": 217994, "start": 2175.38, "end": 2179.94, "text": "Kesal is a negative word, but here in programming it is positive.", "tokens": [42, 279, 304, 307, 257, 3671, 1349, 11, 457, 510, 294, 9410, 309, 307, 3353, 13], "avg_logprob": -0.8065257352941176, "compression_ratio": 0.9701492537313433, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 2175.38, "end": 2175.88, "word": "Kesal", "probability": 0.3187255859375}, {"start": 2175.88, "end": 2176.1, "word": " is", "probability": 0.351806640625}, {"start": 2176.1, "end": 2176.32, "word": " a", "probability": 0.40673828125}, {"start": 2176.32, "end": 2176.6, "word": " negative", "probability": 0.79736328125}, {"start": 2176.6, "end": 2176.78, "word": " word,", "probability": 0.65234375}, {"start": 2176.96, "end": 2177.54, "word": " but", "probability": 0.392578125}, {"start": 2177.54, "end": 2177.76, "word": " here", "probability": 0.2388916015625}, {"start": 2177.76, "end": 2178.06, "word": " in", "probability": 0.6533203125}, {"start": 2178.06, "end": 2178.38, "word": " programming", "probability": 0.53076171875}, {"start": 2178.38, "end": 2178.84, "word": " it", "probability": 0.6435546875}, {"start": 2178.84, "end": 2178.94, "word": " is", "probability": 0.57568359375}, {"start": 2178.94, "end": 2179.94, "word": " positive.", "probability": 0.7392578125}], "temperature": 1.0}, {"id": 88, "seek": 220408, "start": 2181.14, "end": 2204.08, "text": " The F you were happy with it, let's make an F else and so on. No, the thing is that when you find the F, what does the code mean? It's bad, because you have to pass the F again. You were happy with the E, let's make an E in each object, in each class. No, the E turned out to be negative. And the Z turned out to be positive. There are still a lot of things coming up.", "tokens": [440, 479, 291, 645, 2055, 365, 309, 11, 718, 311, 652, 364, 479, 1646, 293, 370, 322, 13, 883, 11, 264, 551, 307, 300, 562, 291, 915, 264, 479, 11, 437, 775, 264, 3089, 914, 30, 467, 311, 1578, 11, 570, 291, 362, 281, 1320, 264, 479, 797, 13, 509, 645, 2055, 365, 264, 462, 11, 718, 311, 652, 364, 462, 294, 1184, 2657, 11, 294, 1184, 1508, 13, 883, 11, 264, 462, 3574, 484, 281, 312, 3671, 13, 400, 264, 1176, 3574, 484, 281, 312, 3353, 13, 821, 366, 920, 257, 688, 295, 721, 1348, 493, 13], "avg_logprob": -0.6477272883810178, "compression_ratio": 1.6772727272727272, "no_speech_prob": 3.2186508178710938e-06, "words": [{"start": 2181.14, "end": 2181.54, "word": " The", "probability": 0.1724853515625}, {"start": 2181.54, "end": 2181.74, "word": " F", "probability": 0.669921875}, {"start": 2181.74, "end": 2181.82, "word": " you", "probability": 0.33544921875}, {"start": 2181.82, "end": 2182.0, "word": " were", "probability": 0.49658203125}, {"start": 2182.0, "end": 2182.3, "word": " happy", "probability": 0.697265625}, {"start": 2182.3, "end": 2182.6, "word": " with", "probability": 0.406494140625}, {"start": 2182.6, "end": 2182.72, "word": " it,", "probability": 0.62255859375}, {"start": 2182.74, "end": 2182.92, "word": " let's", "probability": 0.5906982421875}, {"start": 2182.92, "end": 2183.1, "word": " make", "probability": 0.48291015625}, {"start": 2183.1, "end": 2183.24, "word": " an", "probability": 0.232421875}, {"start": 2183.24, "end": 2183.36, "word": " F", "probability": 0.97998046875}, {"start": 2183.36, "end": 2183.72, "word": " else", "probability": 0.439453125}, {"start": 2183.72, "end": 2184.02, "word": " and", "probability": 0.5869140625}, {"start": 2184.02, "end": 2184.28, "word": " so", "probability": 0.55029296875}, {"start": 2184.28, "end": 2184.42, "word": " on.", "probability": 0.88037109375}, {"start": 2184.76, "end": 2185.06, "word": " No,", "probability": 0.51953125}, {"start": 2185.08, "end": 2185.16, "word": " the", "probability": 0.2030029296875}, {"start": 2185.16, "end": 2185.28, "word": " thing", "probability": 0.49169921875}, {"start": 2185.28, "end": 2185.48, "word": " is", "probability": 0.90380859375}, {"start": 2185.48, "end": 2185.5, "word": " that", "probability": 0.426025390625}, {"start": 2185.5, "end": 2185.62, "word": " when", "probability": 0.2666015625}, {"start": 2185.62, "end": 2186.3, "word": " you", "probability": 0.861328125}, {"start": 2186.3, "end": 2186.5, "word": " find", "probability": 0.6259765625}, {"start": 2186.5, "end": 2186.64, "word": " the", "probability": 0.346923828125}, {"start": 2186.64, "end": 2186.7, "word": " F,", "probability": 0.958984375}, {"start": 2186.8, "end": 2186.84, "word": " what", "probability": 0.3994140625}, {"start": 2186.84, "end": 2186.94, "word": " does", "probability": 0.6826171875}, {"start": 2186.94, "end": 2187.1, "word": " the", "probability": 0.50927734375}, {"start": 2187.1, "end": 2187.34, "word": " code", "probability": 0.8662109375}, {"start": 2187.34, "end": 2187.6, "word": " mean?", "probability": 0.5869140625}, {"start": 2188.74, "end": 2189.14, "word": " It's", "probability": 0.43023681640625}, {"start": 2189.14, "end": 2189.4, "word": " bad,", "probability": 0.81884765625}, {"start": 2189.46, "end": 2189.62, "word": " because", "probability": 0.85302734375}, {"start": 2189.62, "end": 2189.9, "word": " you", "probability": 0.333740234375}, {"start": 2189.9, "end": 2189.9, "word": " have", "probability": 0.27587890625}, {"start": 2189.9, "end": 2190.1, "word": " to", "probability": 0.9453125}, {"start": 2190.1, "end": 2190.54, "word": " pass", "probability": 0.255859375}, {"start": 2190.54, "end": 2190.66, "word": " the", "probability": 0.08367919921875}, {"start": 2190.66, "end": 2190.82, "word": " F", "probability": 0.625}, {"start": 2190.82, "end": 2191.06, "word": " again.", "probability": 0.26806640625}, {"start": 2192.22, "end": 2192.62, "word": " You", "probability": 0.408203125}, {"start": 2192.62, "end": 2192.7, "word": " were", "probability": 0.53955078125}, {"start": 2192.7, "end": 2192.96, "word": " happy", "probability": 0.783203125}, {"start": 2192.96, "end": 2193.12, "word": " with", "probability": 0.50439453125}, {"start": 2193.12, "end": 2193.26, "word": " the", "probability": 0.42626953125}, {"start": 2193.26, "end": 2193.26, "word": " E,", "probability": 0.16357421875}, {"start": 2193.34, "end": 2193.54, "word": " let's", "probability": 0.898681640625}, {"start": 2193.54, "end": 2193.74, "word": " make", "probability": 0.87060546875}, {"start": 2193.74, "end": 2193.86, "word": " an", "probability": 0.48193359375}, {"start": 2193.86, "end": 2193.98, "word": " E", "probability": 0.99267578125}, {"start": 2193.98, "end": 2194.1, "word": " in", "probability": 0.31689453125}, {"start": 2194.1, "end": 2194.26, "word": " each", "probability": 0.88232421875}, {"start": 2194.26, "end": 2194.64, "word": " object,", "probability": 0.5390625}, {"start": 2194.9, "end": 2195.2, "word": " in", "probability": 0.83984375}, {"start": 2195.2, "end": 2195.42, "word": " each", "probability": 0.7734375}, {"start": 2195.42, "end": 2195.76, "word": " class.", "probability": 0.94189453125}, {"start": 2195.86, "end": 2196.0, "word": " No,", "probability": 0.91259765625}, {"start": 2196.2, "end": 2196.3, "word": " the", "probability": 0.2919921875}, {"start": 2196.3, "end": 2196.44, "word": " E", "probability": 0.9541015625}, {"start": 2196.44, "end": 2196.66, "word": " turned", "probability": 0.1082763671875}, {"start": 2196.66, "end": 2197.62, "word": " out", "probability": 0.6572265625}, {"start": 2197.62, "end": 2197.64, "word": " to", "probability": 0.63623046875}, {"start": 2197.64, "end": 2198.28, "word": " be", "probability": 0.94873046875}, {"start": 2198.28, "end": 2198.56, "word": " negative.", "probability": 0.82568359375}, {"start": 2199.34, "end": 2199.74, "word": " And", "probability": 0.69140625}, {"start": 2199.74, "end": 2199.76, "word": " the", "probability": 0.8046875}, {"start": 2199.76, "end": 2199.98, "word": " Z", "probability": 0.3623046875}, {"start": 2199.98, "end": 2200.36, "word": " turned", "probability": 0.564453125}, {"start": 2200.36, "end": 2200.58, "word": " out", "probability": 0.86181640625}, {"start": 2200.58, "end": 2200.6, "word": " to", "probability": 0.89306640625}, {"start": 2200.6, "end": 2200.66, "word": " be", "probability": 0.943359375}, {"start": 2200.66, "end": 2200.96, "word": " positive.", "probability": 0.880859375}, {"start": 2202.24, "end": 2202.64, "word": " There", "probability": 0.1988525390625}, {"start": 2202.64, "end": 2202.98, "word": " are", "probability": 0.71728515625}, {"start": 2202.98, "end": 2203.18, "word": " still", "probability": 0.7216796875}, {"start": 2203.18, "end": 2203.62, "word": " a", "probability": 0.2225341796875}, {"start": 2203.62, "end": 2203.72, "word": " lot", "probability": 0.95361328125}, {"start": 2203.72, "end": 2203.72, "word": " of", "probability": 0.94140625}, {"start": 2203.72, "end": 2203.72, "word": " things", "probability": 0.62255859375}, {"start": 2203.72, "end": 2203.9, "word": " coming", "probability": 0.1551513671875}, {"start": 2203.9, "end": 2204.08, "word": " up.", "probability": 0.417724609375}], "temperature": 1.0}, {"id": 89, "seek": 222686, "start": 2209.24, "end": 2226.86, "text": "Okay, this explains what is the use of synchronization if two threads concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently concurrently", "tokens": [8297, 11, 341, 13948, 437, 307, 264, 764, 295, 19331, 2144, 498, 732, 19314, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356, 37702, 356], "avg_logprob": -0.15055555979410806, "compression_ratio": 16.295454545454547, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2209.24, "end": 2209.5, "word": "Okay,", "probability": 0.25048828125}, {"start": 2209.54, "end": 2209.74, "word": " this", "probability": 0.65966796875}, {"start": 2209.74, "end": 2209.98, "word": " explains", "probability": 0.4501953125}, {"start": 2209.98, "end": 2210.28, "word": " what", "probability": 0.5107421875}, {"start": 2210.28, "end": 2210.32, "word": " is", "probability": 0.35888671875}, {"start": 2210.32, "end": 2210.32, "word": " the", "probability": 0.308837890625}, {"start": 2210.32, "end": 2210.54, "word": " use", "probability": 0.269775390625}, {"start": 2210.54, "end": 2210.6, "word": " of", "probability": 0.96484375}, {"start": 2210.6, "end": 2211.32, "word": " synchronization", "probability": 0.5390625}, {"start": 2211.32, "end": 2211.9, "word": " if", "probability": 0.2255859375}, {"start": 2211.9, "end": 2212.12, "word": " two", "probability": 0.873046875}, {"start": 2212.12, "end": 2212.44, "word": " threads", "probability": 0.93505859375}, {"start": 2212.44, "end": 2213.88, "word": " concurrently", "probability": 0.936767578125}, {"start": 2213.88, "end": 2214.62, "word": " concurrently", "probability": 0.792236328125}, {"start": 2214.62, "end": 2215.18, "word": " concurrently", "probability": 0.691162109375}, {"start": 2215.18, "end": 2215.44, "word": " concurrently", "probability": 0.6282958984375}, {"start": 2215.44, "end": 2215.46, "word": " concurrently", "probability": 0.753662109375}, {"start": 2215.46, "end": 2215.9, "word": " concurrently", "probability": 0.79443359375}, {"start": 2215.9, "end": 2216.84, "word": " concurrently", "probability": 0.849609375}, {"start": 2216.84, "end": 2217.9, "word": " concurrently", "probability": 0.89990234375}, {"start": 2217.9, "end": 2218.98, "word": " concurrently", "probability": 0.93359375}, {"start": 2218.98, "end": 2218.98, "word": " concurrently", "probability": 0.953857421875}, {"start": 2218.98, "end": 2219.24, "word": " concurrently", "probability": 0.96484375}, {"start": 2219.24, "end": 2219.24, "word": " concurrently", "probability": 0.970947265625}, {"start": 2219.24, "end": 2219.24, "word": " concurrently", "probability": 0.974365234375}, {"start": 2219.24, "end": 2220.12, "word": " concurrently", "probability": 0.97607421875}, {"start": 2220.12, "end": 2220.14, "word": " concurrently", "probability": 0.97705078125}, {"start": 2220.14, "end": 2220.14, "word": " concurrently", "probability": 0.978271484375}, {"start": 2220.14, "end": 2220.14, "word": " concurrently", "probability": 0.978515625}, {"start": 2220.14, "end": 2220.14, "word": " concurrently", "probability": 0.97900390625}, {"start": 2220.14, "end": 2220.14, "word": " concurrently", "probability": 0.97900390625}, {"start": 2220.14, "end": 2220.14, "word": " concurrently", "probability": 0.97900390625}, {"start": 2220.14, "end": 2220.14, "word": " concurrently", "probability": 0.97900390625}, {"start": 2220.14, "end": 2220.14, "word": " concurrently", "probability": 0.978515625}, {"start": 2220.14, "end": 2220.16, "word": " concurrently", "probability": 0.97802734375}, {"start": 2220.16, "end": 2220.16, "word": " concurrently", "probability": 0.977294921875}, {"start": 2220.16, "end": 2220.16, "word": " concurrently", "probability": 0.9765625}, {"start": 2220.16, "end": 2220.76, "word": " concurrently", "probability": 0.976318359375}, {"start": 2220.76, "end": 2220.76, "word": " concurrently", "probability": 0.975830078125}, {"start": 2220.76, "end": 2220.76, "word": " concurrently", "probability": 0.974853515625}, {"start": 2220.76, "end": 2220.76, "word": " concurrently", "probability": 0.97412109375}, {"start": 2220.76, "end": 2223.46, "word": " concurrently", "probability": 0.97314453125}, {"start": 2223.46, "end": 2223.46, "word": " concurrently", "probability": 0.97216796875}, {"start": 2223.46, "end": 2223.46, "word": " concurrently", "probability": 0.97119140625}, {"start": 2223.46, "end": 2223.46, "word": " concurrently", "probability": 0.97021484375}, {"start": 2223.46, "end": 2223.46, "word": " concurrently", "probability": 0.9697265625}, {"start": 2223.46, "end": 2223.46, "word": " concurrently", "probability": 0.968994140625}, {"start": 2223.46, "end": 2223.46, "word": " concurrently", "probability": 0.9677734375}, {"start": 2223.46, "end": 2223.46, "word": " concurrently", "probability": 0.966796875}, {"start": 2223.46, "end": 2223.46, "word": " concurrently", "probability": 0.965576171875}, {"start": 2223.46, "end": 2223.5, "word": " concurrently", "probability": 0.96435546875}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.963134765625}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.9619140625}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.96044921875}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.959228515625}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.9580078125}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.955810546875}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.954345703125}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.95263671875}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.951171875}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.949462890625}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.947265625}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.94580078125}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.94482421875}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.94287109375}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.941162109375}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.939453125}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.937744140625}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.935546875}, {"start": 2223.5, "end": 2223.5, "word": " concurrently", "probability": 0.93408203125}, {"start": 2223.5, "end": 2223.52, "word": " concurrently", "probability": 0.931884765625}, {"start": 2223.52, "end": 2223.76, "word": " concurrently", "probability": 0.92919921875}, {"start": 2223.76, "end": 2223.76, "word": " concurrently", "probability": 0.928466796875}, {"start": 2223.76, "end": 2223.76, "word": " concurrently", "probability": 0.92626953125}, {"start": 2223.76, "end": 2223.76, "word": " concurrently", "probability": 0.92431640625}, {"start": 2223.76, "end": 2223.76, "word": " concurrently", "probability": 0.92236328125}, {"start": 2223.76, "end": 2223.76, "word": " concurrently", "probability": 0.919677734375}, {"start": 2223.76, "end": 2223.76, "word": " concurrently", "probability": 0.917724609375}, {"start": 2223.76, "end": 2223.76, "word": " concurrently", "probability": 0.91455078125}, {"start": 2223.76, "end": 2223.76, "word": " concurrently", "probability": 0.911865234375}, {"start": 2223.76, "end": 2223.76, "word": " concurrently", "probability": 0.90966796875}, {"start": 2223.76, "end": 2223.76, "word": " concurrently", "probability": 0.906494140625}, {"start": 2223.76, "end": 2223.78, "word": " concurrently", "probability": 0.904052734375}, {"start": 2223.78, "end": 2223.78, "word": " concurrently", "probability": 0.902099609375}, {"start": 2223.78, "end": 2223.78, "word": " concurrently", "probability": 0.89990234375}, {"start": 2223.78, "end": 2223.78, "word": " concurrently", "probability": 0.89599609375}, {"start": 2223.78, "end": 2223.78, "word": " concurrently", "probability": 0.8935546875}, {"start": 2223.78, "end": 2223.78, "word": " concurrently", "probability": 0.88916015625}, {"start": 2223.78, "end": 2223.78, "word": " concurrently", "probability": 0.886474609375}, {"start": 2223.78, "end": 2223.78, "word": " concurrently", "probability": 0.884033203125}, {"start": 2223.78, "end": 2224.52, "word": " concurrently", "probability": 0.880126953125}, {"start": 2224.52, "end": 2224.52, "word": " concurrently", "probability": 0.877197265625}, {"start": 2224.52, "end": 2224.54, "word": " concurrently", "probability": 0.875}, {"start": 2224.54, "end": 2224.54, "word": " concurrently", "probability": 0.86962890625}, {"start": 2224.54, "end": 2224.54, "word": " concurrently", "probability": 0.866943359375}, {"start": 2224.54, "end": 2224.54, "word": " concurrently", "probability": 0.862548828125}, {"start": 2224.54, "end": 2224.58, "word": " concurrently", "probability": 0.858154296875}, {"start": 2224.58, "end": 2224.64, "word": " concurrently", "probability": 0.8544921875}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.8515625}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.845947265625}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.843017578125}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.837890625}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.832275390625}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.830810546875}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.828857421875}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.824462890625}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.819580078125}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.8154296875}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.81298828125}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.80859375}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.806396484375}, {"start": 2224.64, "end": 2224.64, "word": " concurrently", "probability": 0.80224609375}, {"start": 2224.64, "end": 2224.72, "word": " concurrently", "probability": 0.796875}, {"start": 2224.72, "end": 2224.92, "word": " concurrently", "probability": 0.79052734375}, {"start": 2224.92, "end": 2226.08, "word": " concurrently", "probability": 0.789794921875}, {"start": 2226.08, "end": 2226.84, "word": " concurrently", "probability": 0.78564453125}, {"start": 2226.84, "end": 2226.86, "word": " concurrently", "probability": 0.77978515625}], "temperature": 1.0}, {"id": 90, "seek": 223805, "start": 2226.91, "end": 2238.05, "text": "Make the instance synchronize. Synchronization is expensive, however it is really only needed the first time the unique instance is created.", "tokens": [35650, 264, 5197, 19331, 1125, 13, 26155, 14613, 2144, 307, 5124, 11, 4461, 309, 307, 534, 787, 2978, 264, 700, 565, 264, 3845, 5197, 307, 2942, 13], "avg_logprob": -0.28906248935631346, "compression_ratio": 1.2962962962962963, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2226.91, "end": 2228.25, "word": "Make", "probability": 0.40673828125}, {"start": 2228.25, "end": 2228.43, "word": " the", "probability": 0.8427734375}, {"start": 2228.43, "end": 2228.71, "word": " instance", "probability": 0.974609375}, {"start": 2228.71, "end": 2229.43, "word": " synchronize.", "probability": 0.5859375}, {"start": 2229.49, "end": 2230.23, "word": " Synchronization", "probability": 0.8668619791666666}, {"start": 2230.23, "end": 2230.61, "word": " is", "probability": 0.955078125}, {"start": 2230.61, "end": 2231.23, "word": " expensive,", "probability": 0.927734375}, {"start": 2231.73, "end": 2232.11, "word": " however", "probability": 0.91259765625}, {"start": 2232.11, "end": 2232.75, "word": " it", "probability": 0.595703125}, {"start": 2232.75, "end": 2232.93, "word": " is", "probability": 0.86328125}, {"start": 2232.93, "end": 2233.29, "word": " really", "probability": 0.68017578125}, {"start": 2233.29, "end": 2234.59, "word": " only", "probability": 0.892578125}, {"start": 2234.59, "end": 2235.03, "word": " needed", "probability": 0.88671875}, {"start": 2235.03, "end": 2235.33, "word": " the", "probability": 0.7724609375}, {"start": 2235.33, "end": 2235.61, "word": " first", "probability": 0.89453125}, {"start": 2235.61, "end": 2236.05, "word": " time", "probability": 0.88818359375}, {"start": 2236.05, "end": 2236.81, "word": " the", "probability": 0.81103515625}, {"start": 2236.81, "end": 2237.11, "word": " unique", "probability": 0.70263671875}, {"start": 2237.11, "end": 2237.49, "word": " instance", "probability": 0.97998046875}, {"start": 2237.49, "end": 2237.73, "word": " is", "probability": 0.93701171875}, {"start": 2237.73, "end": 2238.05, "word": " created.", "probability": 0.86865234375}], "temperature": 1.0}, {"id": 91, "seek": 227773, "start": 2248.49, "end": 2277.73, "text": "It explains examples of where we can use the singleton pattern. Among these examples that we explained earlier, the logger. I need a global point of access through which I can log and record messages. From anywhere in the code, I need to record messages. Through object 1 only. Also, the configurations. In the program, I don't need settings. Whether the settings for GUI, background color, line color, and line size. I want to use these settings in all the screens that appear on my screen.", "tokens": [3522, 13948, 5110, 295, 689, 321, 393, 764, 264, 1522, 14806, 5102, 13, 16119, 613, 5110, 300, 321, 8825, 3071, 11, 264, 3565, 1321, 13, 286, 643, 257, 4338, 935, 295, 2105, 807, 597, 286, 393, 3565, 293, 2136, 7897, 13, 3358, 4992, 294, 264, 3089, 11, 286, 643, 281, 2136, 7897, 13, 8927, 2657, 502, 787, 13, 2743, 11, 264, 6662, 374, 763, 13, 682, 264, 1461, 11, 286, 500, 380, 643, 369, 83, 783, 82, 13, 8503, 264, 6257, 337, 17917, 40, 11, 3678, 2017, 11, 1622, 2017, 11, 293, 1622, 2744, 13, 286, 528, 281, 764, 613, 6257, 294, 439, 264, 11171, 300, 4204, 322, 452, 2568, 13], "avg_logprob": -0.5803571513720921, "compression_ratio": 1.7535714285714286, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 2248.49, "end": 2248.67, "word": "It", "probability": 0.1243896484375}, {"start": 2248.67, "end": 2249.17, "word": " explains", "probability": 0.39990234375}, {"start": 2249.17, "end": 2249.63, "word": " examples", "probability": 0.29345703125}, {"start": 2249.63, "end": 2249.81, "word": " of", "probability": 0.462646484375}, {"start": 2249.81, "end": 2249.87, "word": " where", "probability": 0.230712890625}, {"start": 2249.87, "end": 2250.01, "word": " we", "probability": 0.53369140625}, {"start": 2250.01, "end": 2250.19, "word": " can", "probability": 0.83056640625}, {"start": 2250.19, "end": 2250.59, "word": " use", "probability": 0.8544921875}, {"start": 2250.59, "end": 2250.77, "word": " the", "probability": 0.309814453125}, {"start": 2250.77, "end": 2251.09, "word": " singleton", "probability": 0.834716796875}, {"start": 2251.09, "end": 2251.55, "word": " pattern.", "probability": 0.8525390625}, {"start": 2252.03, "end": 2252.51, "word": " Among", "probability": 0.16650390625}, {"start": 2252.51, "end": 2252.69, "word": " these", "probability": 0.391845703125}, {"start": 2252.69, "end": 2253.01, "word": " examples", "probability": 0.7626953125}, {"start": 2253.01, "end": 2253.09, "word": " that", "probability": 0.328369140625}, {"start": 2253.09, "end": 2253.21, "word": " we", "probability": 0.58544921875}, {"start": 2253.21, "end": 2253.29, "word": " explained", "probability": 0.414794921875}, {"start": 2253.29, "end": 2253.69, "word": " earlier,", "probability": 0.42919921875}, {"start": 2254.61, "end": 2254.75, "word": " the", "probability": 0.1817626953125}, {"start": 2254.75, "end": 2255.05, "word": " logger.", "probability": 0.721435546875}, {"start": 2255.77, "end": 2256.25, "word": " I", "probability": 0.51318359375}, {"start": 2256.25, "end": 2256.81, "word": " need", "probability": 0.68798828125}, {"start": 2256.81, "end": 2257.01, "word": " a", "probability": 0.378662109375}, {"start": 2257.01, "end": 2257.25, "word": " global", "probability": 0.79833984375}, {"start": 2257.25, "end": 2257.59, "word": " point", "probability": 0.92578125}, {"start": 2257.59, "end": 2257.75, "word": " of", "probability": 0.92919921875}, {"start": 2257.75, "end": 2258.07, "word": " access", "probability": 0.93212890625}, {"start": 2258.07, "end": 2258.39, "word": " through", "probability": 0.4677734375}, {"start": 2258.39, "end": 2258.63, "word": " which", "probability": 0.59619140625}, {"start": 2258.63, "end": 2258.63, "word": " I", "probability": 0.86181640625}, {"start": 2258.63, "end": 2258.81, "word": " can", "probability": 0.55517578125}, {"start": 2258.81, "end": 2259.05, "word": " log", "probability": 0.7333984375}, {"start": 2259.05, "end": 2259.87, "word": " and", "probability": 0.6044921875}, {"start": 2259.87, "end": 2260.19, "word": " record", "probability": 0.4541015625}, {"start": 2260.19, "end": 2260.61, "word": " messages.", "probability": 0.673828125}, {"start": 2260.79, "end": 2260.93, "word": " From", "probability": 0.404052734375}, {"start": 2260.93, "end": 2261.25, "word": " anywhere", "probability": 0.302001953125}, {"start": 2261.25, "end": 2261.49, "word": " in", "probability": 0.8583984375}, {"start": 2261.49, "end": 2261.59, "word": " the", "probability": 0.82421875}, {"start": 2261.59, "end": 2261.73, "word": " code,", "probability": 0.91845703125}, {"start": 2261.81, "end": 2261.83, "word": " I", "probability": 0.96923828125}, {"start": 2261.83, "end": 2262.05, "word": " need", "probability": 0.8173828125}, {"start": 2262.05, "end": 2262.21, "word": " to", "probability": 0.916015625}, {"start": 2262.21, "end": 2262.49, "word": " record", "probability": 0.8037109375}, {"start": 2262.49, "end": 2262.95, "word": " messages.", "probability": 0.65234375}, {"start": 2263.37, "end": 2263.61, "word": " Through", "probability": 0.41748046875}, {"start": 2263.61, "end": 2264.09, "word": " object", "probability": 0.5107421875}, {"start": 2264.09, "end": 2264.49, "word": " 1", "probability": 0.61376953125}, {"start": 2264.49, "end": 2265.25, "word": " only.", "probability": 0.8271484375}, {"start": 2265.65, "end": 2265.93, "word": " Also,", "probability": 0.310546875}, {"start": 2266.05, "end": 2266.11, "word": " the", "probability": 0.275634765625}, {"start": 2266.11, "end": 2267.51, "word": " configurations.", "probability": 0.5984700520833334}, {"start": 2268.09, "end": 2268.57, "word": " In", "probability": 0.302490234375}, {"start": 2268.57, "end": 2268.83, "word": " the", "probability": 0.71533203125}, {"start": 2268.83, "end": 2269.07, "word": " program,", "probability": 0.77734375}, {"start": 2269.17, "end": 2269.17, "word": " I", "probability": 0.779296875}, {"start": 2269.17, "end": 2269.25, "word": " don't", "probability": 0.635498046875}, {"start": 2269.25, "end": 2269.33, "word": " need", "probability": 0.7314453125}, {"start": 2269.33, "end": 2269.99, "word": " settings.", "probability": 0.7390289306640625}, {"start": 2270.57, "end": 2270.95, "word": " Whether", "probability": 0.489013671875}, {"start": 2270.95, "end": 2271.07, "word": " the", "probability": 0.29345703125}, {"start": 2271.07, "end": 2271.33, "word": " settings", "probability": 0.63671875}, {"start": 2271.33, "end": 2271.51, "word": " for", "probability": 0.6767578125}, {"start": 2271.51, "end": 2272.09, "word": " GUI,", "probability": 0.736083984375}, {"start": 2272.17, "end": 2272.63, "word": " background", "probability": 0.3427734375}, {"start": 2272.63, "end": 2272.87, "word": " color,", "probability": 0.853515625}, {"start": 2273.37, "end": 2273.65, "word": " line", "probability": 0.5380859375}, {"start": 2273.65, "end": 2273.65, "word": " color,", "probability": 0.830078125}, {"start": 2273.79, "end": 2274.13, "word": " and", "probability": 0.31201171875}, {"start": 2274.13, "end": 2274.29, "word": " line", "probability": 0.794921875}, {"start": 2274.29, "end": 2274.29, "word": " size.", "probability": 0.79638671875}, {"start": 2274.43, "end": 2274.91, "word": " I", "probability": 0.595703125}, {"start": 2274.91, "end": 2275.09, "word": " want", "probability": 0.2442626953125}, {"start": 2275.09, "end": 2275.13, "word": " to", "probability": 0.79248046875}, {"start": 2275.13, "end": 2275.43, "word": " use", "probability": 0.8779296875}, {"start": 2275.43, "end": 2275.43, "word": " these", "probability": 0.77294921875}, {"start": 2275.43, "end": 2275.43, "word": " settings", "probability": 0.80224609375}, {"start": 2275.43, "end": 2275.63, "word": " in", "probability": 0.59765625}, {"start": 2275.63, "end": 2276.05, "word": " all", "probability": 0.89794921875}, {"start": 2276.05, "end": 2276.75, "word": " the", "probability": 0.491943359375}, {"start": 2276.75, "end": 2276.97, "word": " screens", "probability": 0.779296875}, {"start": 2276.97, "end": 2277.11, "word": " that", "probability": 0.724609375}, {"start": 2277.11, "end": 2277.35, "word": " appear", "probability": 0.416259765625}, {"start": 2277.35, "end": 2277.57, "word": " on", "probability": 0.402587890625}, {"start": 2277.57, "end": 2277.73, "word": " my", "probability": 0.45703125}, {"start": 2277.73, "end": 2277.73, "word": " screen.", "probability": 0.381591796875}], "temperature": 1.0}, {"id": 92, "seek": 230744, "start": 2278.56, "end": 2307.44, "text": " a specific IP in the dashboard, username, password, all these settings, I can use them anywhere. If I want to extract a program from it, I can do it by myself as a singleton, and it will stay there, and everywhere it will reach the configurations. Okay? So this can also be useful in singleton. And they also say that you can do the factory itself as a singleton, even if it is not a big issue, the factory.", "tokens": [257, 2685, 8671, 294, 264, 18342, 11, 30351, 11, 11524, 11, 439, 613, 6257, 11, 286, 393, 764, 552, 4992, 13, 759, 286, 528, 281, 8947, 257, 1461, 490, 309, 11, 286, 393, 360, 309, 538, 2059, 382, 257, 1522, 14806, 11, 293, 309, 486, 1754, 456, 11, 293, 5315, 309, 486, 2524, 264, 31493, 13, 1033, 30, 407, 341, 393, 611, 312, 4420, 294, 1522, 14806, 13, 400, 436, 611, 584, 300, 291, 393, 360, 264, 9265, 2564, 382, 257, 1522, 14806, 11, 754, 498, 309, 307, 406, 257, 955, 2734, 11, 264, 9265, 13], "avg_logprob": -0.7229381443298969, "compression_ratio": 1.707112970711297, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 2278.56, "end": 2279.12, "word": " a", "probability": 0.15234375}, {"start": 2279.12, "end": 2279.16, "word": " specific", "probability": 0.408203125}, {"start": 2279.16, "end": 2279.44, "word": " IP", "probability": 0.5322265625}, {"start": 2279.44, "end": 2280.0, "word": " in", "probability": 0.28857421875}, {"start": 2280.0, "end": 2280.02, "word": " the", "probability": 0.54296875}, {"start": 2280.02, "end": 2280.3, "word": " dashboard,", "probability": 0.7265625}, {"start": 2280.62, "end": 2281.34, "word": " username,", "probability": 0.6220703125}, {"start": 2281.56, "end": 2281.98, "word": " password,", "probability": 0.90283203125}, {"start": 2282.1, "end": 2282.32, "word": " all", "probability": 0.339111328125}, {"start": 2282.32, "end": 2283.04, "word": " these", "probability": 0.521484375}, {"start": 2283.04, "end": 2283.46, "word": " settings,", "probability": 0.453857421875}, {"start": 2283.92, "end": 2284.66, "word": " I", "probability": 0.3701171875}, {"start": 2284.66, "end": 2284.96, "word": " can", "probability": 0.27685546875}, {"start": 2284.96, "end": 2285.3, "word": " use", "probability": 0.841796875}, {"start": 2285.3, "end": 2285.5, "word": " them", "probability": 0.65185546875}, {"start": 2285.5, "end": 2285.5, "word": " anywhere.", "probability": 0.330322265625}, {"start": 2285.82, "end": 2286.3, "word": " If", "probability": 0.18408203125}, {"start": 2286.3, "end": 2286.44, "word": " I", "probability": 0.921875}, {"start": 2286.44, "end": 2287.16, "word": " want", "probability": 0.48095703125}, {"start": 2287.16, "end": 2287.2, "word": " to", "probability": 0.90283203125}, {"start": 2287.2, "end": 2287.38, "word": " extract", "probability": 0.42041015625}, {"start": 2287.38, "end": 2287.94, "word": " a", "probability": 0.217529296875}, {"start": 2287.94, "end": 2288.76, "word": " program", "probability": 0.383544921875}, {"start": 2288.76, "end": 2288.76, "word": " from", "probability": 0.728515625}, {"start": 2288.76, "end": 2288.76, "word": " it,", "probability": 0.28857421875}, {"start": 2288.84, "end": 2289.26, "word": " I", "probability": 0.673828125}, {"start": 2289.26, "end": 2289.28, "word": " can", "probability": 0.5498046875}, {"start": 2289.28, "end": 2289.44, "word": " do", "probability": 0.412109375}, {"start": 2289.44, "end": 2289.56, "word": " it", "probability": 0.81005859375}, {"start": 2289.56, "end": 2289.84, "word": " by", "probability": 0.10284423828125}, {"start": 2289.84, "end": 2290.0, "word": " myself", "probability": 0.7314453125}, {"start": 2290.0, "end": 2290.18, "word": " as", "probability": 0.63427734375}, {"start": 2290.18, "end": 2290.3, "word": " a", "probability": 0.43115234375}, {"start": 2290.3, "end": 2290.62, "word": " singleton,", "probability": 0.902587890625}, {"start": 2291.02, "end": 2291.1, "word": " and", "probability": 0.26220703125}, {"start": 2291.1, "end": 2291.1, "word": " it", "probability": 0.724609375}, {"start": 2291.1, "end": 2291.14, "word": " will", "probability": 0.364013671875}, {"start": 2291.14, "end": 2291.3, "word": " stay", "probability": 0.1746826171875}, {"start": 2291.3, "end": 2291.76, "word": " there,", "probability": 0.25537109375}, {"start": 2292.04, "end": 2292.04, "word": " and", "probability": 0.63720703125}, {"start": 2292.04, "end": 2292.2, "word": " everywhere", "probability": 0.1708984375}, {"start": 2292.2, "end": 2292.68, "word": " it", "probability": 0.484619140625}, {"start": 2292.68, "end": 2292.74, "word": " will", "probability": 0.515625}, {"start": 2292.74, "end": 2293.14, "word": " reach", "probability": 0.45263671875}, {"start": 2293.14, "end": 2293.94, "word": " the", "probability": 0.5830078125}, {"start": 2293.94, "end": 2294.5, "word": " configurations.", "probability": 0.7587890625}, {"start": 2295.38, "end": 2295.4, "word": " Okay?", "probability": 0.1534423828125}, {"start": 2295.64, "end": 2295.8, "word": " So", "probability": 0.486083984375}, {"start": 2295.8, "end": 2296.18, "word": " this", "probability": 0.3623046875}, {"start": 2296.18, "end": 2296.4, "word": " can", "probability": 0.473388671875}, {"start": 2296.4, "end": 2297.38, "word": " also", "probability": 0.59375}, {"start": 2297.38, "end": 2297.54, "word": " be", "probability": 0.63330078125}, {"start": 2297.54, "end": 2297.84, "word": " useful", "probability": 0.28955078125}, {"start": 2297.84, "end": 2298.18, "word": " in", "probability": 0.5751953125}, {"start": 2298.18, "end": 2298.62, "word": " singleton.", "probability": 0.792724609375}, {"start": 2298.92, "end": 2299.16, "word": " And", "probability": 0.447265625}, {"start": 2299.16, "end": 2299.4, "word": " they", "probability": 0.07049560546875}, {"start": 2299.4, "end": 2299.4, "word": " also", "probability": 0.75830078125}, {"start": 2299.4, "end": 2299.62, "word": " say", "probability": 0.476318359375}, {"start": 2299.62, "end": 2300.16, "word": " that", "probability": 0.36669921875}, {"start": 2300.16, "end": 2300.24, "word": " you", "probability": 0.326171875}, {"start": 2300.24, "end": 2300.58, "word": " can", "probability": 0.9228515625}, {"start": 2300.58, "end": 2300.64, "word": " do", "probability": 0.307861328125}, {"start": 2300.64, "end": 2300.82, "word": " the", "probability": 0.59521484375}, {"start": 2300.82, "end": 2301.1, "word": " factory", "probability": 0.759765625}, {"start": 2301.1, "end": 2302.32, "word": " itself", "probability": 0.7177734375}, {"start": 2302.32, "end": 2304.3, "word": " as", "probability": 0.7978515625}, {"start": 2304.3, "end": 2304.34, "word": " a", "probability": 0.61865234375}, {"start": 2304.34, "end": 2304.7, "word": " singleton,", "probability": 0.956298828125}, {"start": 2304.88, "end": 2305.06, "word": " even", "probability": 0.462158203125}, {"start": 2305.06, "end": 2305.22, "word": " if", "probability": 0.56005859375}, {"start": 2305.22, "end": 2305.44, "word": " it", "probability": 0.578125}, {"start": 2305.44, "end": 2305.54, "word": " is", "probability": 0.61279296875}, {"start": 2305.54, "end": 2305.6, "word": " not", "probability": 0.9091796875}, {"start": 2305.6, "end": 2305.66, "word": " a", "probability": 0.86474609375}, {"start": 2305.66, "end": 2306.54, "word": " big", "probability": 0.68994140625}, {"start": 2306.54, "end": 2306.54, "word": " issue,", "probability": 0.291015625}, {"start": 2306.72, "end": 2307.12, "word": " the", "probability": 0.80859375}, {"start": 2307.12, "end": 2307.44, "word": " factory.", "probability": 0.9169921875}], "temperature": 1.0}, {"id": 93, "seek": 232578, "start": 2308.72, "end": 2325.78, "text": " This is how we solved the singleton pattern How many design patterns did we use? Factory, Builder and Factory Method?", "tokens": [639, 307, 577, 321, 13041, 264, 1522, 14806, 5102, 1012, 867, 1715, 8294, 630, 321, 764, 30, 36868, 11, 11875, 260, 293, 36868, 25285, 30], "avg_logprob": -0.5841346314320197, "compression_ratio": 1.1568627450980393, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2308.72, "end": 2308.98, "word": " This", "probability": 0.10955810546875}, {"start": 2308.98, "end": 2309.04, "word": " is", "probability": 0.5126953125}, {"start": 2309.04, "end": 2309.66, "word": " how", "probability": 0.498291015625}, {"start": 2309.66, "end": 2310.44, "word": " we", "probability": 0.876953125}, {"start": 2310.44, "end": 2310.8, "word": " solved", "probability": 0.1298828125}, {"start": 2310.8, "end": 2312.24, "word": " the", "probability": 0.70654296875}, {"start": 2312.24, "end": 2312.68, "word": " singleton", "probability": 0.726318359375}, {"start": 2312.68, "end": 2314.94, "word": " pattern", "probability": 0.830078125}, {"start": 2314.94, "end": 2318.7, "word": " How", "probability": 0.2264404296875}, {"start": 2318.7, "end": 2319.54, "word": " many", "probability": 0.876953125}, {"start": 2319.54, "end": 2320.04, "word": " design", "probability": 0.64599609375}, {"start": 2320.04, "end": 2320.46, "word": " patterns", "probability": 0.8544921875}, {"start": 2320.46, "end": 2320.46, "word": " did", "probability": 0.71484375}, {"start": 2320.46, "end": 2320.46, "word": " we", "probability": 0.90966796875}, {"start": 2320.46, "end": 2320.46, "word": " use?", "probability": 0.219970703125}, {"start": 2321.4, "end": 2322.56, "word": " Factory,", "probability": 0.47705078125}, {"start": 2323.4, "end": 2324.12, "word": " Builder", "probability": 0.7822265625}, {"start": 2324.12, "end": 2325.06, "word": " and", "probability": 0.53759765625}, {"start": 2325.06, "end": 2325.46, "word": " Factory", "probability": 0.755859375}, {"start": 2325.46, "end": 2325.78, "word": " Method?", "probability": 0.450439453125}], "temperature": 1.0}, {"id": 94, "seek": 235504, "start": 2327.42, "end": 2355.04, "text": " And singleton, right? These are the four creational design patterns. From all of these, we have completed the first part of the design patterns, which is creational design patterns. But before that, I want to explain an important concept in object-oriented programming called dependency injection. This is a new topic that I added only last year, because it has been used a lot lately. This lecture will present what is dependency.", "tokens": [400, 1522, 14806, 11, 558, 30, 1981, 366, 264, 1451, 8016, 304, 1715, 8294, 13, 3358, 439, 295, 613, 11, 321, 362, 7365, 264, 700, 644, 295, 264, 1715, 8294, 11, 597, 307, 8016, 304, 1715, 8294, 13, 583, 949, 300, 11, 286, 528, 281, 2903, 364, 1021, 3410, 294, 2657, 12, 27414, 9410, 1219, 33621, 22873, 13, 639, 307, 257, 777, 4829, 300, 286, 3869, 787, 1036, 1064, 11, 570, 309, 575, 668, 1143, 257, 688, 12881, 13, 639, 7991, 486, 1974, 437, 307, 33621, 13], "avg_logprob": -0.4715909165414897, "compression_ratio": 1.6941176470588235, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 2327.42, "end": 2327.68, "word": " And", "probability": 0.20068359375}, {"start": 2327.68, "end": 2328.22, "word": " singleton,", "probability": 0.724365234375}, {"start": 2328.72, "end": 2328.88, "word": " right?", "probability": 0.2227783203125}, {"start": 2329.14, "end": 2329.38, "word": " These", "probability": 0.58251953125}, {"start": 2329.38, "end": 2329.46, "word": " are", "probability": 0.50634765625}, {"start": 2329.46, "end": 2329.58, "word": " the", "probability": 0.82421875}, {"start": 2329.58, "end": 2329.9, "word": " four", "probability": 0.62060546875}, {"start": 2329.9, "end": 2331.0, "word": " creational", "probability": 0.2811279296875}, {"start": 2331.0, "end": 2331.9, "word": " design", "probability": 0.91748046875}, {"start": 2331.9, "end": 2332.24, "word": " patterns.", "probability": 0.87353515625}, {"start": 2332.36, "end": 2332.5, "word": " From", "probability": 0.211181640625}, {"start": 2332.5, "end": 2332.66, "word": " all", "probability": 0.630859375}, {"start": 2332.66, "end": 2332.7, "word": " of", "probability": 0.58056640625}, {"start": 2332.7, "end": 2332.76, "word": " these,", "probability": 0.38916015625}, {"start": 2332.84, "end": 2332.84, "word": " we", "probability": 0.88818359375}, {"start": 2332.84, "end": 2332.84, "word": " have", "probability": 0.3642578125}, {"start": 2332.84, "end": 2333.14, "word": " completed", "probability": 0.326416015625}, {"start": 2333.14, "end": 2333.74, "word": " the", "probability": 0.86083984375}, {"start": 2333.74, "end": 2334.32, "word": " first", "probability": 0.8720703125}, {"start": 2334.32, "end": 2334.32, "word": " part", "probability": 0.57958984375}, {"start": 2334.32, "end": 2334.48, "word": " of", "probability": 0.8955078125}, {"start": 2334.48, "end": 2334.58, "word": " the", "probability": 0.6748046875}, {"start": 2334.58, "end": 2334.84, "word": " design", "probability": 0.72216796875}, {"start": 2334.84, "end": 2335.2, "word": " patterns,", "probability": 0.7958984375}, {"start": 2335.32, "end": 2335.32, "word": " which", "probability": 0.74169921875}, {"start": 2335.32, "end": 2335.42, "word": " is", "probability": 0.732421875}, {"start": 2335.42, "end": 2336.26, "word": " creational", "probability": 0.7607421875}, {"start": 2336.26, "end": 2336.98, "word": " design", "probability": 0.89599609375}, {"start": 2336.98, "end": 2337.3, "word": " patterns.", "probability": 0.88427734375}, {"start": 2337.4, "end": 2337.5, "word": " But", "probability": 0.75732421875}, {"start": 2337.5, "end": 2337.74, "word": " before", "probability": 0.79833984375}, {"start": 2337.74, "end": 2338.0, "word": " that,", "probability": 0.8125}, {"start": 2338.58, "end": 2338.68, "word": " I", "probability": 0.97412109375}, {"start": 2338.68, "end": 2338.8, "word": " want", "probability": 0.345458984375}, {"start": 2338.8, "end": 2338.84, "word": " to", "probability": 0.9697265625}, {"start": 2338.84, "end": 2339.0, "word": " explain", "probability": 0.8505859375}, {"start": 2339.0, "end": 2339.16, "word": " an", "probability": 0.8330078125}, {"start": 2339.16, "end": 2339.16, "word": " important", "probability": 0.859375}, {"start": 2339.16, "end": 2339.54, "word": " concept", "probability": 0.8505859375}, {"start": 2339.54, "end": 2340.84, "word": " in", "probability": 0.80029296875}, {"start": 2340.84, "end": 2341.12, "word": " object", "probability": 0.369873046875}, {"start": 2341.12, "end": 2341.46, "word": "-oriented", "probability": 0.775146484375}, {"start": 2341.46, "end": 2341.92, "word": " programming", "probability": 0.9287109375}, {"start": 2341.92, "end": 2342.26, "word": " called", "probability": 0.36083984375}, {"start": 2342.26, "end": 2342.9, "word": " dependency", "probability": 0.56005859375}, {"start": 2342.9, "end": 2343.88, "word": " injection.", "probability": 0.953125}, {"start": 2344.0, "end": 2344.16, "word": " This", "probability": 0.837890625}, {"start": 2344.16, "end": 2344.18, "word": " is", "probability": 0.91845703125}, {"start": 2344.18, "end": 2344.32, "word": " a", "probability": 0.70556640625}, {"start": 2344.32, "end": 2344.36, "word": " new", "probability": 0.849609375}, {"start": 2344.36, "end": 2344.78, "word": " topic", "probability": 0.65478515625}, {"start": 2344.78, "end": 2345.0, "word": " that", "probability": 0.6669921875}, {"start": 2345.0, "end": 2345.0, "word": " I", "probability": 0.8671875}, {"start": 2345.0, "end": 2345.22, "word": " added", "probability": 0.37451171875}, {"start": 2345.22, "end": 2345.5, "word": " only", "probability": 0.59228515625}, {"start": 2345.5, "end": 2345.66, "word": " last", "probability": 0.8359375}, {"start": 2345.66, "end": 2346.08, "word": " year,", "probability": 0.94970703125}, {"start": 2346.64, "end": 2347.06, "word": " because", "probability": 0.4609375}, {"start": 2347.06, "end": 2347.78, "word": " it", "probability": 0.904296875}, {"start": 2347.78, "end": 2347.84, "word": " has", "probability": 0.544921875}, {"start": 2347.84, "end": 2348.18, "word": " been", "probability": 0.6376953125}, {"start": 2348.18, "end": 2348.68, "word": " used", "probability": 0.78271484375}, {"start": 2348.68, "end": 2349.0, "word": " a", "probability": 0.79248046875}, {"start": 2349.0, "end": 2349.12, "word": " lot", "probability": 0.955078125}, {"start": 2349.12, "end": 2350.92, "word": " lately.", "probability": 0.40771484375}, {"start": 2352.76, "end": 2353.26, "word": " This", "probability": 0.52783203125}, {"start": 2353.26, "end": 2353.58, "word": " lecture", "probability": 0.87451171875}, {"start": 2353.58, "end": 2353.82, "word": " will", "probability": 0.3603515625}, {"start": 2353.82, "end": 2354.26, "word": " present", "probability": 0.34912109375}, {"start": 2354.26, "end": 2354.54, "word": " what", "probability": 0.6806640625}, {"start": 2354.54, "end": 2354.62, "word": " is", "probability": 0.48583984375}, {"start": 2354.62, "end": 2355.04, "word": " dependency.", "probability": 0.440185546875}], "temperature": 1.0}, {"id": 95, "seek": 238287, "start": 2356.67, "end": 2382.87, "text": " Injection and then in the next lecture, God willing, we will see how to apply it practically Now guys, we studied the relationship between classes, which is the relationship of association What is the relationship of association? That I am an object of a class and I need an object of another class For example, I have class A, right?", "tokens": [682, 1020, 313, 293, 550, 294, 264, 958, 7991, 11, 1265, 4950, 11, 321, 486, 536, 577, 281, 3079, 309, 15667, 823, 1074, 11, 321, 9454, 264, 2480, 1296, 5359, 11, 597, 307, 264, 2480, 295, 14598, 708, 307, 264, 2480, 295, 14598, 30, 663, 286, 669, 364, 2657, 295, 257, 1508, 293, 286, 643, 364, 2657, 295, 1071, 1508, 1171, 1365, 11, 286, 362, 1508, 316, 11, 558, 30], "avg_logprob": -0.42715668258532674, "compression_ratio": 1.7357512953367875, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 2356.67, "end": 2357.15, "word": " Injection", "probability": 0.73681640625}, {"start": 2357.15, "end": 2357.63, "word": " and", "probability": 0.439453125}, {"start": 2357.63, "end": 2357.99, "word": " then", "probability": 0.4111328125}, {"start": 2357.99, "end": 2358.33, "word": " in", "probability": 0.445068359375}, {"start": 2358.33, "end": 2358.41, "word": " the", "probability": 0.81005859375}, {"start": 2358.41, "end": 2358.75, "word": " next", "probability": 0.748046875}, {"start": 2358.75, "end": 2358.89, "word": " lecture,", "probability": 0.77685546875}, {"start": 2359.39, "end": 2359.65, "word": " God", "probability": 0.295166015625}, {"start": 2359.65, "end": 2359.65, "word": " willing,", "probability": 0.69580078125}, {"start": 2359.69, "end": 2359.79, "word": " we", "probability": 0.8955078125}, {"start": 2359.79, "end": 2359.83, "word": " will", "probability": 0.662109375}, {"start": 2359.83, "end": 2359.99, "word": " see", "probability": 0.80712890625}, {"start": 2359.99, "end": 2360.15, "word": " how", "probability": 0.92236328125}, {"start": 2360.15, "end": 2360.27, "word": " to", "probability": 0.76123046875}, {"start": 2360.27, "end": 2360.55, "word": " apply", "probability": 0.63720703125}, {"start": 2360.55, "end": 2360.67, "word": " it", "probability": 0.7724609375}, {"start": 2360.67, "end": 2362.13, "word": " practically", "probability": 0.419677734375}, {"start": 2362.13, "end": 2365.79, "word": " Now", "probability": 0.59716796875}, {"start": 2365.79, "end": 2366.15, "word": " guys,", "probability": 0.5166015625}, {"start": 2366.27, "end": 2366.45, "word": " we", "probability": 0.93359375}, {"start": 2366.45, "end": 2366.73, "word": " studied", "probability": 0.54296875}, {"start": 2366.73, "end": 2366.89, "word": " the", "probability": 0.5712890625}, {"start": 2366.89, "end": 2367.13, "word": " relationship", "probability": 0.5908203125}, {"start": 2367.13, "end": 2367.77, "word": " between", "probability": 0.83056640625}, {"start": 2367.77, "end": 2368.87, "word": " classes,", "probability": 0.7998046875}, {"start": 2369.01, "end": 2369.01, "word": " which", "probability": 0.73388671875}, {"start": 2369.01, "end": 2369.13, "word": " is", "probability": 0.9326171875}, {"start": 2369.13, "end": 2369.21, "word": " the", "probability": 0.763671875}, {"start": 2369.21, "end": 2369.33, "word": " relationship", "probability": 0.74462890625}, {"start": 2369.33, "end": 2369.47, "word": " of", "probability": 0.77490234375}, {"start": 2369.47, "end": 2370.03, "word": " association", "probability": 0.7763671875}, {"start": 2370.03, "end": 2371.23, "word": " What", "probability": 0.72119140625}, {"start": 2371.23, "end": 2371.37, "word": " is", "probability": 0.91650390625}, {"start": 2371.37, "end": 2371.43, "word": " the", "probability": 0.80029296875}, {"start": 2371.43, "end": 2371.55, "word": " relationship", "probability": 0.7998046875}, {"start": 2371.55, "end": 2371.69, "word": " of", "probability": 0.94775390625}, {"start": 2371.69, "end": 2372.21, "word": " association?", "probability": 0.88818359375}, {"start": 2372.79, "end": 2373.27, "word": " That", "probability": 0.340087890625}, {"start": 2373.27, "end": 2373.47, "word": " I", "probability": 0.63671875}, {"start": 2373.47, "end": 2373.71, "word": " am", "probability": 0.376220703125}, {"start": 2373.71, "end": 2374.11, "word": " an", "probability": 0.467041015625}, {"start": 2374.11, "end": 2374.87, "word": " object", "probability": 0.9765625}, {"start": 2374.87, "end": 2375.07, "word": " of", "probability": 0.3427734375}, {"start": 2375.07, "end": 2375.17, "word": " a", "probability": 0.67919921875}, {"start": 2375.17, "end": 2375.51, "word": " class", "probability": 0.9638671875}, {"start": 2375.51, "end": 2375.61, "word": " and", "probability": 0.40380859375}, {"start": 2375.61, "end": 2375.65, "word": " I", "probability": 0.78955078125}, {"start": 2375.65, "end": 2376.07, "word": " need", "probability": 0.93017578125}, {"start": 2376.07, "end": 2376.21, "word": " an", "probability": 0.3974609375}, {"start": 2376.21, "end": 2376.53, "word": " object", "probability": 0.97705078125}, {"start": 2376.53, "end": 2377.53, "word": " of", "probability": 0.4755859375}, {"start": 2377.53, "end": 2377.63, "word": " another", "probability": 0.63427734375}, {"start": 2377.63, "end": 2378.57, "word": " class", "probability": 0.939453125}, {"start": 2378.57, "end": 2379.21, "word": " For", "probability": 0.71826171875}, {"start": 2379.21, "end": 2379.45, "word": " example,", "probability": 0.9345703125}, {"start": 2379.77, "end": 2380.07, "word": " I", "probability": 0.9091796875}, {"start": 2380.07, "end": 2380.07, "word": " have", "probability": 0.93603515625}, {"start": 2380.07, "end": 2380.39, "word": " class", "probability": 0.693359375}, {"start": 2380.39, "end": 2380.73, "word": " A,", "probability": 0.9267578125}, {"start": 2382.63, "end": 2382.87, "word": " right?", "probability": 0.2529296875}], "temperature": 1.0}, {"id": 96, "seek": 240711, "start": 2384.69, "end": 2407.11, "text": " It needs to learn methods in another class called D Because to achieve this task, let's imagine a class A code Class A needs an object from D So what can you do from inside A?", "tokens": [467, 2203, 281, 1466, 7150, 294, 1071, 1508, 1219, 413, 1436, 281, 4584, 341, 5633, 11, 718, 311, 3811, 257, 1508, 316, 3089, 9471, 316, 2203, 364, 2657, 490, 413, 407, 437, 393, 291, 360, 490, 1854, 316, 30], "avg_logprob": -0.653125011920929, "compression_ratio": 1.353846153846154, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2384.69, "end": 2384.95, "word": " It", "probability": 0.24609375}, {"start": 2384.95, "end": 2385.25, "word": " needs", "probability": 0.55712890625}, {"start": 2385.25, "end": 2387.25, "word": " to", "probability": 0.7041015625}, {"start": 2387.25, "end": 2387.53, "word": " learn", "probability": 0.56005859375}, {"start": 2387.53, "end": 2388.07, "word": " methods", "probability": 0.251220703125}, {"start": 2388.07, "end": 2388.91, "word": " in", "probability": 0.294921875}, {"start": 2388.91, "end": 2389.29, "word": " another", "probability": 0.55810546875}, {"start": 2389.29, "end": 2389.63, "word": " class", "probability": 0.9384765625}, {"start": 2389.63, "end": 2390.19, "word": " called", "probability": 0.355712890625}, {"start": 2390.19, "end": 2391.77, "word": " D", "probability": 0.5673828125}, {"start": 2391.77, "end": 2393.67, "word": " Because", "probability": 0.292724609375}, {"start": 2393.67, "end": 2393.97, "word": " to", "probability": 0.58935546875}, {"start": 2393.97, "end": 2394.25, "word": " achieve", "probability": 0.267822265625}, {"start": 2394.25, "end": 2394.41, "word": " this", "probability": 0.80859375}, {"start": 2394.41, "end": 2394.75, "word": " task,", "probability": 0.260009765625}, {"start": 2395.17, "end": 2395.35, "word": " let's", "probability": 0.600830078125}, {"start": 2395.35, "end": 2396.13, "word": " imagine", "probability": 0.65087890625}, {"start": 2396.13, "end": 2396.33, "word": " a", "probability": 0.266845703125}, {"start": 2396.33, "end": 2396.83, "word": " class", "probability": 0.9130859375}, {"start": 2396.83, "end": 2397.07, "word": " A", "probability": 0.66845703125}, {"start": 2397.07, "end": 2397.07, "word": " code", "probability": 0.47607421875}, {"start": 2397.07, "end": 2397.57, "word": " Class", "probability": 0.208251953125}, {"start": 2397.57, "end": 2401.05, "word": " A", "probability": 0.97216796875}, {"start": 2401.05, "end": 2401.49, "word": " needs", "probability": 0.68310546875}, {"start": 2401.49, "end": 2402.25, "word": " an", "probability": 0.56298828125}, {"start": 2402.25, "end": 2402.45, "word": " object", "probability": 0.9599609375}, {"start": 2402.45, "end": 2402.77, "word": " from", "probability": 0.794921875}, {"start": 2402.77, "end": 2404.07, "word": " D", "probability": 0.84130859375}, {"start": 2404.07, "end": 2404.87, "word": " So", "probability": 0.44580078125}, {"start": 2404.87, "end": 2405.07, "word": " what", "probability": 0.40234375}, {"start": 2405.07, "end": 2405.07, "word": " can", "probability": 0.329833984375}, {"start": 2405.07, "end": 2405.33, "word": " you", "probability": 0.51025390625}, {"start": 2405.33, "end": 2405.89, "word": " do", "probability": 0.83740234375}, {"start": 2405.89, "end": 2406.57, "word": " from", "probability": 0.287353515625}, {"start": 2406.57, "end": 2406.81, "word": " inside", "probability": 0.65673828125}, {"start": 2406.81, "end": 2407.11, "word": " A?", "probability": 0.78466796875}], "temperature": 1.0}, {"id": 97, "seek": 243691, "start": 2409.19, "end": 2436.91, "text": "this is a reference to class B this is still a constant right? so the constructor of A you can say for example B is equal to B then there can be a method in A for example do public void do something", "tokens": [11176, 307, 257, 6408, 281, 1508, 363, 341, 307, 920, 257, 5754, 558, 30, 370, 264, 47479, 295, 316, 291, 393, 584, 337, 1365, 363, 307, 2681, 281, 363, 550, 456, 393, 312, 257, 3170, 294, 316, 337, 1365, 360, 1908, 22009, 360, 746], "avg_logprob": -0.517708338631524, "compression_ratio": 1.4776119402985075, "no_speech_prob": 0.0, "words": [{"start": 2409.19, "end": 2409.45, "word": "this", "probability": 0.285400390625}, {"start": 2409.45, "end": 2409.53, "word": " is", "probability": 0.8623046875}, {"start": 2409.53, "end": 2409.89, "word": " a", "probability": 0.5546875}, {"start": 2409.89, "end": 2410.23, "word": " reference", "probability": 0.88671875}, {"start": 2410.23, "end": 2410.63, "word": " to", "probability": 0.5615234375}, {"start": 2410.63, "end": 2411.95, "word": " class", "probability": 0.7685546875}, {"start": 2411.95, "end": 2412.27, "word": " B", "probability": 0.904296875}, {"start": 2412.27, "end": 2413.79, "word": " this", "probability": 0.248046875}, {"start": 2413.79, "end": 2413.93, "word": " is", "probability": 0.52685546875}, {"start": 2413.93, "end": 2414.15, "word": " still", "probability": 0.3623046875}, {"start": 2414.15, "end": 2414.37, "word": " a", "probability": 0.412841796875}, {"start": 2414.37, "end": 2414.49, "word": " constant", "probability": 0.114013671875}, {"start": 2414.49, "end": 2415.33, "word": " right?", "probability": 0.3759765625}, {"start": 2415.57, "end": 2416.01, "word": " so", "probability": 0.369873046875}, {"start": 2416.01, "end": 2416.13, "word": " the", "probability": 0.67578125}, {"start": 2416.13, "end": 2416.63, "word": " constructor", "probability": 0.9189453125}, {"start": 2416.63, "end": 2416.97, "word": " of", "probability": 0.85595703125}, {"start": 2416.97, "end": 2417.37, "word": " A", "probability": 0.6396484375}, {"start": 2417.37, "end": 2418.93, "word": " you", "probability": 0.3564453125}, {"start": 2418.93, "end": 2419.11, "word": " can", "probability": 0.857421875}, {"start": 2419.11, "end": 2419.47, "word": " say", "probability": 0.80810546875}, {"start": 2419.47, "end": 2420.29, "word": " for", "probability": 0.4677734375}, {"start": 2420.29, "end": 2420.53, "word": " example", "probability": 0.92529296875}, {"start": 2420.53, "end": 2421.05, "word": " B", "probability": 0.70068359375}, {"start": 2421.05, "end": 2421.59, "word": " is", "probability": 0.075439453125}, {"start": 2421.59, "end": 2421.87, "word": " equal", "probability": 0.85009765625}, {"start": 2421.87, "end": 2422.15, "word": " to", "probability": 0.97021484375}, {"start": 2422.15, "end": 2424.39, "word": " B", "probability": 0.935546875}, {"start": 2424.39, "end": 2427.79, "word": " then", "probability": 0.1475830078125}, {"start": 2427.79, "end": 2428.03, "word": " there", "probability": 0.461669921875}, {"start": 2428.03, "end": 2428.03, "word": " can", "probability": 0.290771484375}, {"start": 2428.03, "end": 2428.61, "word": " be", "probability": 0.8896484375}, {"start": 2428.61, "end": 2428.77, "word": " a", "probability": 0.48095703125}, {"start": 2428.77, "end": 2429.07, "word": " method", "probability": 0.779296875}, {"start": 2429.07, "end": 2429.23, "word": " in", "probability": 0.701171875}, {"start": 2429.23, "end": 2429.49, "word": " A", "probability": 0.91748046875}, {"start": 2429.49, "end": 2429.69, "word": " for", "probability": 0.64013671875}, {"start": 2429.69, "end": 2429.87, "word": " example", "probability": 0.94384765625}, {"start": 2429.87, "end": 2430.13, "word": " do", "probability": 0.67236328125}, {"start": 2430.13, "end": 2430.89, "word": " public", "probability": 0.86669921875}, {"start": 2430.89, "end": 2433.65, "word": " void", "probability": 0.93701171875}, {"start": 2433.65, "end": 2436.43, "word": " do", "probability": 0.88232421875}, {"start": 2436.43, "end": 2436.91, "word": " something", "probability": 0.80908203125}], "temperature": 1.0}, {"id": 98, "seek": 246500, "start": 2441.78, "end": 2465.0, "text": "This is a method found in class A which goes to B and says process for example. What did I do here? I did not say that A will need method in B. This is the creation of an object from B and from the value called do something which is found where? In A, I called B dot process.", "tokens": [5723, 307, 257, 3170, 1352, 294, 1508, 316, 597, 1709, 281, 363, 293, 1619, 1399, 337, 1365, 13, 708, 630, 286, 360, 510, 30, 286, 630, 406, 584, 300, 316, 486, 643, 3170, 294, 363, 13, 639, 307, 264, 8016, 295, 364, 2657, 490, 363, 293, 490, 264, 2158, 1219, 360, 746, 597, 307, 1352, 689, 30, 682, 316, 11, 286, 1219, 363, 5893, 1399, 13], "avg_logprob": -0.6282648986844874, "compression_ratio": 1.5625, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 2441.78, "end": 2442.04, "word": "This", "probability": 0.349609375}, {"start": 2442.04, "end": 2442.06, "word": " is", "probability": 0.27490234375}, {"start": 2442.06, "end": 2442.14, "word": " a", "probability": 0.68359375}, {"start": 2442.14, "end": 2442.36, "word": " method", "probability": 0.91650390625}, {"start": 2442.36, "end": 2442.64, "word": " found", "probability": 0.2164306640625}, {"start": 2442.64, "end": 2442.84, "word": " in", "probability": 0.92724609375}, {"start": 2442.84, "end": 2443.68, "word": " class", "probability": 0.64013671875}, {"start": 2443.68, "end": 2444.5, "word": " A", "probability": 0.84326171875}, {"start": 2444.5, "end": 2445.42, "word": " which", "probability": 0.177001953125}, {"start": 2445.42, "end": 2445.56, "word": " goes", "probability": 0.4970703125}, {"start": 2445.56, "end": 2445.72, "word": " to", "probability": 0.94775390625}, {"start": 2445.72, "end": 2446.0, "word": " B", "probability": 0.6728515625}, {"start": 2446.0, "end": 2447.06, "word": " and", "probability": 0.6806640625}, {"start": 2447.06, "end": 2447.26, "word": " says", "probability": 0.28173828125}, {"start": 2447.26, "end": 2447.68, "word": " process", "probability": 0.50537109375}, {"start": 2447.68, "end": 2447.88, "word": " for", "probability": 0.580078125}, {"start": 2447.88, "end": 2449.94, "word": " example.", "probability": 0.9013671875}, {"start": 2451.8, "end": 2452.02, "word": " What", "probability": 0.228759765625}, {"start": 2452.02, "end": 2452.04, "word": " did", "probability": 0.377685546875}, {"start": 2452.04, "end": 2452.2, "word": " I", "probability": 0.62548828125}, {"start": 2452.2, "end": 2452.4, "word": " do", "probability": 0.892578125}, {"start": 2452.4, "end": 2452.56, "word": " here?", "probability": 0.6826171875}, {"start": 2452.66, "end": 2452.86, "word": " I", "probability": 0.60107421875}, {"start": 2452.86, "end": 2452.96, "word": " did", "probability": 0.39404296875}, {"start": 2452.96, "end": 2453.48, "word": " not", "probability": 0.88525390625}, {"start": 2453.48, "end": 2453.48, "word": " say", "probability": 0.57275390625}, {"start": 2453.48, "end": 2453.48, "word": " that", "probability": 0.7578125}, {"start": 2453.48, "end": 2453.84, "word": " A", "probability": 0.430908203125}, {"start": 2453.84, "end": 2454.0, "word": " will", "probability": 0.3388671875}, {"start": 2454.0, "end": 2454.32, "word": " need", "probability": 0.619140625}, {"start": 2454.32, "end": 2454.84, "word": " method", "probability": 0.421142578125}, {"start": 2454.84, "end": 2455.1, "word": " in", "probability": 0.451416015625}, {"start": 2455.1, "end": 2455.32, "word": " B.", "probability": 0.61376953125}, {"start": 2456.18, "end": 2456.68, "word": " This", "probability": 0.3046875}, {"start": 2456.68, "end": 2456.76, "word": " is", "probability": 0.68505859375}, {"start": 2456.76, "end": 2456.8, "word": " the", "probability": 0.361328125}, {"start": 2456.8, "end": 2457.02, "word": " creation", "probability": 0.580078125}, {"start": 2457.02, "end": 2457.12, "word": " of", "probability": 0.97314453125}, {"start": 2457.12, "end": 2457.24, "word": " an", "probability": 0.6103515625}, {"start": 2457.24, "end": 2457.38, "word": " object", "probability": 0.978515625}, {"start": 2457.38, "end": 2457.62, "word": " from", "probability": 0.646484375}, {"start": 2457.62, "end": 2457.92, "word": " B", "probability": 0.6826171875}, {"start": 2457.92, "end": 2458.38, "word": " and", "probability": 0.55517578125}, {"start": 2458.38, "end": 2458.54, "word": " from", "probability": 0.48291015625}, {"start": 2458.54, "end": 2458.66, "word": " the", "probability": 0.5166015625}, {"start": 2458.66, "end": 2458.86, "word": " value", "probability": 0.158447265625}, {"start": 2458.86, "end": 2459.3, "word": " called", "probability": 0.256103515625}, {"start": 2459.3, "end": 2459.42, "word": " do", "probability": 0.70263671875}, {"start": 2459.42, "end": 2459.76, "word": " something", "probability": 0.77734375}, {"start": 2459.76, "end": 2460.04, "word": " which", "probability": 0.48974609375}, {"start": 2460.04, "end": 2460.08, "word": " is", "probability": 0.84228515625}, {"start": 2460.08, "end": 2460.38, "word": " found", "probability": 0.693359375}, {"start": 2460.38, "end": 2460.64, "word": " where?", "probability": 0.50634765625}, {"start": 2461.26, "end": 2461.68, "word": " In", "probability": 0.78662109375}, {"start": 2461.68, "end": 2461.96, "word": " A,", "probability": 0.7529296875}, {"start": 2462.22, "end": 2462.82, "word": " I", "probability": 0.213623046875}, {"start": 2462.82, "end": 2463.0, "word": " called", "probability": 0.1990966796875}, {"start": 2463.0, "end": 2463.38, "word": " B", "probability": 0.50927734375}, {"start": 2463.38, "end": 2463.76, "word": " dot", "probability": 0.58935546875}, {"start": 2463.76, "end": 2465.0, "word": " process.", "probability": 0.94775390625}], "temperature": 1.0}, {"id": 99, "seek": 248821, "start": 2465.98, "end": 2488.22, "text": " Ok, this is the first scenario that class A used an object from B This is the relationship between association and composition or aggregation? Composition, because B was created inside A The alternative is that I don't create B inside A I create B outside and pass it to A So how will the code look like?", "tokens": [3477, 11, 341, 307, 264, 700, 9005, 300, 1508, 316, 1143, 364, 2657, 490, 363, 639, 307, 264, 2480, 1296, 14598, 293, 12686, 420, 16743, 399, 30, 6620, 5830, 11, 570, 363, 390, 2942, 1854, 316, 440, 8535, 307, 300, 286, 500, 380, 1884, 363, 1854, 316, 286, 1884, 363, 2380, 293, 1320, 309, 281, 316, 407, 577, 486, 264, 3089, 574, 411, 30], "avg_logprob": -0.525, "compression_ratio": 1.605263157894737, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2465.98, "end": 2466.3, "word": " Ok,", "probability": 0.1124267578125}, {"start": 2466.48, "end": 2466.72, "word": " this", "probability": 0.7197265625}, {"start": 2466.72, "end": 2466.76, "word": " is", "probability": 0.8212890625}, {"start": 2466.76, "end": 2466.84, "word": " the", "probability": 0.84033203125}, {"start": 2466.84, "end": 2467.46, "word": " first", "probability": 0.7861328125}, {"start": 2467.46, "end": 2467.46, "word": " scenario", "probability": 0.6630859375}, {"start": 2467.46, "end": 2468.08, "word": " that", "probability": 0.1474609375}, {"start": 2468.08, "end": 2469.04, "word": " class", "probability": 0.70751953125}, {"start": 2469.04, "end": 2469.32, "word": " A", "probability": 0.9189453125}, {"start": 2469.32, "end": 2469.74, "word": " used", "probability": 0.491455078125}, {"start": 2469.74, "end": 2469.94, "word": " an", "probability": 0.65234375}, {"start": 2469.94, "end": 2470.08, "word": " object", "probability": 0.966796875}, {"start": 2470.08, "end": 2470.28, "word": " from", "probability": 0.7978515625}, {"start": 2470.28, "end": 2470.46, "word": " B", "probability": 0.61767578125}, {"start": 2470.46, "end": 2471.18, "word": " This", "probability": 0.2271728515625}, {"start": 2471.18, "end": 2471.26, "word": " is", "probability": 0.8427734375}, {"start": 2471.26, "end": 2471.32, "word": " the", "probability": 0.38037109375}, {"start": 2471.32, "end": 2471.5, "word": " relationship", "probability": 0.3896484375}, {"start": 2471.5, "end": 2471.64, "word": " between", "probability": 0.57421875}, {"start": 2471.64, "end": 2472.3, "word": " association", "probability": 0.5283203125}, {"start": 2472.3, "end": 2473.32, "word": " and", "probability": 0.70458984375}, {"start": 2473.32, "end": 2473.7, "word": " composition", "probability": 0.775390625}, {"start": 2473.7, "end": 2473.94, "word": " or", "probability": 0.58544921875}, {"start": 2473.94, "end": 2474.58, "word": " aggregation?", "probability": 0.96240234375}, {"start": 2475.56, "end": 2476.12, "word": " Composition,", "probability": 0.828857421875}, {"start": 2476.22, "end": 2476.36, "word": " because", "probability": 0.78662109375}, {"start": 2476.36, "end": 2476.68, "word": " B", "probability": 0.56005859375}, {"start": 2476.68, "end": 2476.82, "word": " was", "probability": 0.382568359375}, {"start": 2476.82, "end": 2477.12, "word": " created", "probability": 0.285888671875}, {"start": 2477.12, "end": 2477.62, "word": " inside", "probability": 0.76318359375}, {"start": 2477.62, "end": 2478.7, "word": " A", "probability": 0.56298828125}, {"start": 2478.7, "end": 2479.24, "word": " The", "probability": 0.434326171875}, {"start": 2479.24, "end": 2479.54, "word": " alternative", "probability": 0.8525390625}, {"start": 2479.54, "end": 2480.92, "word": " is", "probability": 0.6318359375}, {"start": 2480.92, "end": 2480.94, "word": " that", "probability": 0.65966796875}, {"start": 2480.94, "end": 2481.14, "word": " I", "probability": 0.84130859375}, {"start": 2481.14, "end": 2481.44, "word": " don't", "probability": 0.56121826171875}, {"start": 2481.44, "end": 2481.76, "word": " create", "probability": 0.67626953125}, {"start": 2481.76, "end": 2482.22, "word": " B", "probability": 0.91357421875}, {"start": 2482.22, "end": 2482.9, "word": " inside", "probability": 0.7978515625}, {"start": 2482.9, "end": 2483.18, "word": " A", "probability": 0.95849609375}, {"start": 2483.18, "end": 2483.66, "word": " I", "probability": 0.4599609375}, {"start": 2483.66, "end": 2483.9, "word": " create", "probability": 0.78564453125}, {"start": 2483.9, "end": 2484.18, "word": " B", "probability": 0.92724609375}, {"start": 2484.18, "end": 2484.5, "word": " outside", "probability": 0.7783203125}, {"start": 2484.5, "end": 2485.4, "word": " and", "probability": 0.5205078125}, {"start": 2485.4, "end": 2485.64, "word": " pass", "probability": 0.529296875}, {"start": 2485.64, "end": 2485.82, "word": " it", "probability": 0.6708984375}, {"start": 2485.82, "end": 2485.9, "word": " to", "probability": 0.5712890625}, {"start": 2485.9, "end": 2486.14, "word": " A", "probability": 0.974609375}, {"start": 2486.14, "end": 2486.72, "word": " So", "probability": 0.198974609375}, {"start": 2486.72, "end": 2487.12, "word": " how", "probability": 0.52392578125}, {"start": 2487.12, "end": 2487.34, "word": " will", "probability": 0.472900390625}, {"start": 2487.34, "end": 2487.78, "word": " the", "probability": 0.64013671875}, {"start": 2487.78, "end": 2488.1, "word": " code", "probability": 0.697265625}, {"start": 2488.1, "end": 2488.1, "word": " look", "probability": 0.7890625}, {"start": 2488.1, "end": 2488.22, "word": " like?", "probability": 0.724609375}], "temperature": 1.0}, {"id": 100, "seek": 252112, "start": 2493.56, "end": 2521.12, "text": " I have B here as well And I have the constructor of A here You can send to A the object name which is B to B On the basis that you tell him this dot B equals B And then you complete this statement which is do something or B dot process", "tokens": [286, 362, 363, 510, 382, 731, 400, 286, 362, 264, 47479, 295, 316, 510, 509, 393, 2845, 281, 316, 264, 2657, 1315, 597, 307, 363, 281, 363, 1282, 264, 5143, 300, 291, 980, 796, 341, 5893, 363, 6915, 363, 400, 550, 291, 3566, 341, 5629, 597, 307, 360, 746, 420, 363, 5893, 1399], "avg_logprob": -0.7135416567325592, "compression_ratio": 1.542483660130719, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2493.5600000000004, "end": 2494.28, "word": " I", "probability": 0.1640625}, {"start": 2494.28, "end": 2494.76, "word": " have", "probability": 0.646484375}, {"start": 2494.76, "end": 2495.28, "word": " B", "probability": 0.317626953125}, {"start": 2495.28, "end": 2495.62, "word": " here", "probability": 0.53662109375}, {"start": 2495.62, "end": 2495.66, "word": " as", "probability": 0.1563720703125}, {"start": 2495.66, "end": 2495.76, "word": " well", "probability": 0.94677734375}, {"start": 2495.76, "end": 2498.88, "word": " And", "probability": 0.2274169921875}, {"start": 2498.88, "end": 2499.02, "word": " I", "probability": 0.53369140625}, {"start": 2499.02, "end": 2499.18, "word": " have", "probability": 0.92724609375}, {"start": 2499.18, "end": 2499.98, "word": " the", "probability": 0.3720703125}, {"start": 2499.98, "end": 2500.62, "word": " constructor", "probability": 0.8876953125}, {"start": 2500.62, "end": 2500.82, "word": " of", "probability": 0.6181640625}, {"start": 2500.82, "end": 2501.16, "word": " A", "probability": 0.771484375}, {"start": 2501.16, "end": 2502.18, "word": " here", "probability": 0.63720703125}, {"start": 2502.18, "end": 2503.3, "word": " You", "probability": 0.72265625}, {"start": 2503.3, "end": 2503.58, "word": " can", "probability": 0.83544921875}, {"start": 2503.58, "end": 2503.92, "word": " send", "probability": 0.365966796875}, {"start": 2503.92, "end": 2504.02, "word": " to", "probability": 0.496337890625}, {"start": 2504.02, "end": 2504.46, "word": " A", "probability": 0.79638671875}, {"start": 2504.46, "end": 2506.46, "word": " the", "probability": 0.1053466796875}, {"start": 2506.46, "end": 2507.7, "word": " object", "probability": 0.60009765625}, {"start": 2507.7, "end": 2508.0, "word": " name", "probability": 0.341064453125}, {"start": 2508.0, "end": 2508.12, "word": " which", "probability": 0.1568603515625}, {"start": 2508.12, "end": 2508.12, "word": " is", "probability": 0.80078125}, {"start": 2508.12, "end": 2508.44, "word": " B", "probability": 0.79345703125}, {"start": 2508.44, "end": 2509.24, "word": " to", "probability": 0.1751708984375}, {"start": 2509.24, "end": 2509.62, "word": " B", "probability": 0.89501953125}, {"start": 2509.62, "end": 2510.82, "word": " On", "probability": 0.08111572265625}, {"start": 2510.82, "end": 2510.94, "word": " the", "probability": 0.46826171875}, {"start": 2510.94, "end": 2511.12, "word": " basis", "probability": 0.7626953125}, {"start": 2511.12, "end": 2511.22, "word": " that", "probability": 0.289794921875}, {"start": 2511.22, "end": 2511.24, "word": " you", "probability": 0.86767578125}, {"start": 2511.24, "end": 2511.44, "word": " tell", "probability": 0.2281494140625}, {"start": 2511.44, "end": 2511.6, "word": " him", "probability": 0.45849609375}, {"start": 2511.6, "end": 2512.16, "word": " this", "probability": 0.4765625}, {"start": 2512.16, "end": 2512.84, "word": " dot", "probability": 0.37060546875}, {"start": 2512.84, "end": 2514.38, "word": " B", "probability": 0.92529296875}, {"start": 2514.38, "end": 2515.2, "word": " equals", "probability": 0.6337890625}, {"start": 2515.2, "end": 2516.12, "word": " B", "probability": 0.9453125}, {"start": 2516.12, "end": 2516.66, "word": " And", "probability": 0.55224609375}, {"start": 2516.66, "end": 2516.92, "word": " then", "probability": 0.58203125}, {"start": 2516.92, "end": 2517.0, "word": " you", "probability": 0.62451171875}, {"start": 2517.0, "end": 2517.46, "word": " complete", "probability": 0.445556640625}, {"start": 2517.46, "end": 2517.62, "word": " this", "probability": 0.7744140625}, {"start": 2517.62, "end": 2517.86, "word": " statement", "probability": 0.07489013671875}, {"start": 2517.86, "end": 2518.32, "word": " which", "probability": 0.541015625}, {"start": 2518.32, "end": 2518.5, "word": " is", "probability": 0.89794921875}, {"start": 2518.5, "end": 2518.6, "word": " do", "probability": 0.58984375}, {"start": 2518.6, "end": 2519.0, "word": " something", "probability": 0.83984375}, {"start": 2519.0, "end": 2519.88, "word": " or", "probability": 0.394287109375}, {"start": 2519.88, "end": 2520.4, "word": " B", "probability": 0.368408203125}, {"start": 2520.4, "end": 2520.64, "word": " dot", "probability": 0.88623046875}, {"start": 2520.64, "end": 2521.12, "word": " process", "probability": 0.93505859375}], "temperature": 1.0}, {"id": 101, "seek": 254879, "start": 2521.83, "end": 2548.79, "text": "What is the difference between this and this code? The difference is that we created the B inside the A The constructor of the A is empty In this case, no. In order to create the A, you have to create a B before it So this is how you create an object from A You have to have a B and then create an object from A and give it the object B This is the relation between composition and aggregation, which is an association Now, who is better?", "tokens": [3748, 307, 264, 2649, 1296, 341, 293, 341, 3089, 30, 440, 2649, 307, 300, 321, 2942, 264, 363, 1854, 264, 316, 440, 47479, 295, 264, 316, 307, 6707, 682, 341, 1389, 11, 572, 13, 682, 1668, 281, 1884, 264, 316, 11, 291, 362, 281, 1884, 257, 363, 949, 309, 407, 341, 307, 577, 291, 1884, 364, 2657, 490, 316, 509, 362, 281, 362, 257, 363, 293, 550, 1884, 364, 2657, 490, 316, 293, 976, 309, 264, 2657, 363, 639, 307, 264, 9721, 1296, 12686, 293, 16743, 399, 11, 597, 307, 364, 14598, 823, 11, 567, 307, 1101, 30], "avg_logprob": -0.530934341026075, "compression_ratio": 1.8638297872340426, "no_speech_prob": 0.0, "words": [{"start": 2521.83, "end": 2522.17, "word": "What", "probability": 0.188232421875}, {"start": 2522.17, "end": 2522.33, "word": " is", "probability": 0.5927734375}, {"start": 2522.33, "end": 2522.47, "word": " the", "probability": 0.87158203125}, {"start": 2522.47, "end": 2522.61, "word": " difference", "probability": 0.7939453125}, {"start": 2522.61, "end": 2522.79, "word": " between", "probability": 0.80859375}, {"start": 2522.79, "end": 2523.33, "word": " this", "probability": 0.5673828125}, {"start": 2523.33, "end": 2523.45, "word": " and", "probability": 0.3505859375}, {"start": 2523.45, "end": 2523.73, "word": " this", "probability": 0.60693359375}, {"start": 2523.73, "end": 2523.73, "word": " code?", "probability": 0.74609375}, {"start": 2524.29, "end": 2524.69, "word": " The", "probability": 0.60205078125}, {"start": 2524.69, "end": 2524.95, "word": " difference", "probability": 0.78662109375}, {"start": 2524.95, "end": 2525.15, "word": " is", "probability": 0.880859375}, {"start": 2525.15, "end": 2525.21, "word": " that", "probability": 0.783203125}, {"start": 2525.21, "end": 2525.53, "word": " we", "probability": 0.60791015625}, {"start": 2525.53, "end": 2525.79, "word": " created", "probability": 0.48583984375}, {"start": 2525.79, "end": 2526.05, "word": " the", "probability": 0.264892578125}, {"start": 2526.05, "end": 2526.25, "word": " B", "probability": 0.57666015625}, {"start": 2526.25, "end": 2526.87, "word": " inside", "probability": 0.66943359375}, {"start": 2526.87, "end": 2527.03, "word": " the", "probability": 0.63525390625}, {"start": 2527.03, "end": 2527.19, "word": " A", "probability": 0.95654296875}, {"start": 2527.19, "end": 2527.81, "word": " The", "probability": 0.39453125}, {"start": 2527.81, "end": 2528.33, "word": " constructor", "probability": 0.51708984375}, {"start": 2528.33, "end": 2528.49, "word": " of", "probability": 0.72998046875}, {"start": 2528.49, "end": 2528.63, "word": " the", "probability": 0.390380859375}, {"start": 2528.63, "end": 2528.75, "word": " A", "probability": 0.9130859375}, {"start": 2528.75, "end": 2528.95, "word": " is", "probability": 0.47998046875}, {"start": 2528.95, "end": 2529.75, "word": " empty", "probability": 0.51123046875}, {"start": 2529.75, "end": 2530.25, "word": " In", "probability": 0.0966796875}, {"start": 2530.25, "end": 2530.33, "word": " this", "probability": 0.322998046875}, {"start": 2530.33, "end": 2530.35, "word": " case,", "probability": 0.74609375}, {"start": 2530.49, "end": 2530.49, "word": " no.", "probability": 0.189453125}, {"start": 2531.03, "end": 2531.19, "word": " In", "probability": 0.48779296875}, {"start": 2531.19, "end": 2531.67, "word": " order", "probability": 0.7861328125}, {"start": 2531.67, "end": 2531.91, "word": " to", "probability": 0.93603515625}, {"start": 2531.91, "end": 2532.11, "word": " create", "probability": 0.84326171875}, {"start": 2532.11, "end": 2532.29, "word": " the", "probability": 0.55517578125}, {"start": 2532.29, "end": 2532.43, "word": " A,", "probability": 0.712890625}, {"start": 2532.93, "end": 2533.49, "word": " you", "probability": 0.7578125}, {"start": 2533.49, "end": 2533.61, "word": " have", "probability": 0.283447265625}, {"start": 2533.61, "end": 2533.75, "word": " to", "probability": 0.9677734375}, {"start": 2533.75, "end": 2533.97, "word": " create", "probability": 0.68115234375}, {"start": 2533.97, "end": 2534.07, "word": " a", "probability": 0.2213134765625}, {"start": 2534.07, "end": 2534.17, "word": " B", "probability": 0.724609375}, {"start": 2534.17, "end": 2534.25, "word": " before", "probability": 0.52197265625}, {"start": 2534.25, "end": 2535.27, "word": " it", "probability": 0.76611328125}, {"start": 2535.27, "end": 2535.85, "word": " So", "probability": 0.175537109375}, {"start": 2535.85, "end": 2536.07, "word": " this", "probability": 0.6328125}, {"start": 2536.07, "end": 2536.15, "word": " is", "probability": 0.83251953125}, {"start": 2536.15, "end": 2536.37, "word": " how", "probability": 0.66357421875}, {"start": 2536.37, "end": 2537.29, "word": " you", "probability": 0.8359375}, {"start": 2537.29, "end": 2537.45, "word": " create", "probability": 0.73291015625}, {"start": 2537.45, "end": 2537.63, "word": " an", "probability": 0.828125}, {"start": 2537.63, "end": 2537.81, "word": " object", "probability": 0.97119140625}, {"start": 2537.81, "end": 2538.01, "word": " from", "probability": 0.7197265625}, {"start": 2538.01, "end": 2538.23, "word": " A", "probability": 0.8125}, {"start": 2538.23, "end": 2538.85, "word": " You", "probability": 0.529296875}, {"start": 2538.85, "end": 2538.99, "word": " have", "probability": 0.47705078125}, {"start": 2538.99, "end": 2539.03, "word": " to", "probability": 0.9462890625}, {"start": 2539.03, "end": 2539.21, "word": " have", "probability": 0.65966796875}, {"start": 2539.21, "end": 2539.43, "word": " a", "probability": 0.525390625}, {"start": 2539.43, "end": 2539.59, "word": " B", "probability": 0.98486328125}, {"start": 2539.59, "end": 2539.77, "word": " and", "probability": 0.479736328125}, {"start": 2539.77, "end": 2540.19, "word": " then", "probability": 0.7041015625}, {"start": 2540.19, "end": 2540.51, "word": " create", "probability": 0.6767578125}, {"start": 2540.51, "end": 2540.65, "word": " an", "probability": 0.83154296875}, {"start": 2540.65, "end": 2540.79, "word": " object", "probability": 0.96484375}, {"start": 2540.79, "end": 2540.99, "word": " from", "probability": 0.73486328125}, {"start": 2540.99, "end": 2541.17, "word": " A", "probability": 0.69140625}, {"start": 2541.17, "end": 2541.29, "word": " and", "probability": 0.3388671875}, {"start": 2541.29, "end": 2541.49, "word": " give", "probability": 0.12890625}, {"start": 2541.49, "end": 2541.83, "word": " it", "probability": 0.69287109375}, {"start": 2541.83, "end": 2542.51, "word": " the", "probability": 0.50244140625}, {"start": 2542.51, "end": 2542.75, "word": " object", "probability": 0.59814453125}, {"start": 2542.75, "end": 2543.01, "word": " B", "probability": 0.875}, {"start": 2543.01, "end": 2543.57, "word": " This", "probability": 0.76904296875}, {"start": 2543.57, "end": 2543.63, "word": " is", "probability": 0.8916015625}, {"start": 2543.63, "end": 2543.85, "word": " the", "probability": 0.24755859375}, {"start": 2543.85, "end": 2543.85, "word": " relation", "probability": 0.40234375}, {"start": 2543.85, "end": 2543.99, "word": " between", "probability": 0.7587890625}, {"start": 2543.99, "end": 2544.35, "word": " composition", "probability": 0.708984375}, {"start": 2544.35, "end": 2544.57, "word": " and", "probability": 0.9013671875}, {"start": 2544.57, "end": 2545.55, "word": " aggregation,", "probability": 0.78173828125}, {"start": 2545.67, "end": 2545.75, "word": " which", "probability": 0.52685546875}, {"start": 2545.75, "end": 2546.05, "word": " is", "probability": 0.7646484375}, {"start": 2546.05, "end": 2546.37, "word": " an", "probability": 0.2001953125}, {"start": 2546.37, "end": 2547.47, "word": " association", "probability": 0.60888671875}, {"start": 2547.47, "end": 2548.15, "word": " Now,", "probability": 0.705078125}, {"start": 2548.21, "end": 2548.45, "word": " who", "probability": 0.58056640625}, {"start": 2548.45, "end": 2548.53, "word": " is", "probability": 0.8798828125}, {"start": 2548.53, "end": 2548.79, "word": " better?", "probability": 0.7919921875}], "temperature": 1.0}, {"id": 102, "seek": 257892, "start": 2551.62, "end": 2578.92, "text": " Who is better in general? This one or that one? Composition or aggregation? Now, what is the advantage of composition? What is it? It is easier to use. It means that if you want an object from A, you just say Mu A. You don't know anything about B. You don't have to know anything. The B must go to where?", "tokens": [2102, 307, 1101, 294, 2674, 30, 639, 472, 420, 300, 472, 30, 6620, 5830, 420, 16743, 399, 30, 823, 11, 437, 307, 264, 5002, 295, 12686, 30, 708, 307, 309, 30, 467, 307, 3571, 281, 764, 13, 467, 1355, 300, 498, 291, 528, 364, 2657, 490, 316, 11, 291, 445, 584, 15601, 316, 13, 509, 500, 380, 458, 1340, 466, 363, 13, 509, 500, 380, 362, 281, 458, 1340, 13, 440, 363, 1633, 352, 281, 689, 30], "avg_logprob": -0.4599359001104648, "compression_ratio": 1.5482233502538072, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2551.62, "end": 2551.9, "word": " Who", "probability": 0.326416015625}, {"start": 2551.9, "end": 2552.02, "word": " is", "probability": 0.7333984375}, {"start": 2552.02, "end": 2552.26, "word": " better", "probability": 0.72216796875}, {"start": 2552.26, "end": 2552.4, "word": " in", "probability": 0.361083984375}, {"start": 2552.4, "end": 2552.92, "word": " general?", "probability": 0.84326171875}, {"start": 2553.02, "end": 2553.3, "word": " This", "probability": 0.4609375}, {"start": 2553.3, "end": 2553.46, "word": " one", "probability": 0.55810546875}, {"start": 2553.46, "end": 2553.96, "word": " or", "probability": 0.86767578125}, {"start": 2553.96, "end": 2554.22, "word": " that", "probability": 0.5576171875}, {"start": 2554.22, "end": 2554.34, "word": " one?", "probability": 0.91943359375}, {"start": 2555.36, "end": 2555.76, "word": " Composition", "probability": 0.82080078125}, {"start": 2555.76, "end": 2556.02, "word": " or", "probability": 0.93798828125}, {"start": 2556.02, "end": 2556.68, "word": " aggregation?", "probability": 0.823974609375}, {"start": 2562.38, "end": 2562.78, "word": " Now,", "probability": 0.1600341796875}, {"start": 2565.18, "end": 2566.06, "word": " what", "probability": 0.357666015625}, {"start": 2566.06, "end": 2566.2, "word": " is", "probability": 0.45654296875}, {"start": 2566.2, "end": 2566.26, "word": " the", "probability": 0.52490234375}, {"start": 2566.26, "end": 2566.58, "word": " advantage", "probability": 0.3037109375}, {"start": 2566.58, "end": 2566.62, "word": " of", "probability": 0.91943359375}, {"start": 2566.62, "end": 2566.62, "word": " composition?", "probability": 0.6328125}, {"start": 2567.5, "end": 2567.56, "word": " What", "probability": 0.10711669921875}, {"start": 2567.56, "end": 2567.64, "word": " is", "probability": 0.818359375}, {"start": 2567.64, "end": 2567.68, "word": " it?", "probability": 0.91357421875}, {"start": 2568.7, "end": 2569.1, "word": " It", "probability": 0.73681640625}, {"start": 2569.1, "end": 2569.52, "word": " is", "probability": 0.7666015625}, {"start": 2569.52, "end": 2569.98, "word": " easier", "probability": 0.85107421875}, {"start": 2569.98, "end": 2570.72, "word": " to", "probability": 0.9306640625}, {"start": 2570.72, "end": 2571.2, "word": " use.", "probability": 0.88818359375}, {"start": 2571.68, "end": 2571.88, "word": " It", "probability": 0.3115234375}, {"start": 2571.88, "end": 2572.2, "word": " means", "probability": 0.75146484375}, {"start": 2572.2, "end": 2572.58, "word": " that", "probability": 0.7470703125}, {"start": 2572.58, "end": 2572.66, "word": " if", "probability": 0.60791015625}, {"start": 2572.66, "end": 2572.86, "word": " you", "probability": 0.9228515625}, {"start": 2572.86, "end": 2573.04, "word": " want", "probability": 0.5419921875}, {"start": 2573.04, "end": 2573.22, "word": " an", "probability": 0.6552734375}, {"start": 2573.22, "end": 2573.42, "word": " object", "probability": 0.97802734375}, {"start": 2573.42, "end": 2573.62, "word": " from", "probability": 0.60302734375}, {"start": 2573.62, "end": 2573.84, "word": " A,", "probability": 0.873046875}, {"start": 2573.92, "end": 2574.06, "word": " you", "probability": 0.78759765625}, {"start": 2574.06, "end": 2574.1, "word": " just", "probability": 0.302001953125}, {"start": 2574.1, "end": 2574.22, "word": " say", "probability": 0.402099609375}, {"start": 2574.22, "end": 2574.7, "word": " Mu", "probability": 0.42138671875}, {"start": 2574.7, "end": 2574.92, "word": " A.", "probability": 0.67822265625}, {"start": 2575.36, "end": 2575.76, "word": " You", "probability": 0.77294921875}, {"start": 2575.76, "end": 2575.82, "word": " don't", "probability": 0.846435546875}, {"start": 2575.82, "end": 2576.0, "word": " know", "probability": 0.477783203125}, {"start": 2576.0, "end": 2576.22, "word": " anything", "probability": 0.75830078125}, {"start": 2576.22, "end": 2576.42, "word": " about", "probability": 0.90185546875}, {"start": 2576.42, "end": 2576.6, "word": " B.", "probability": 0.98046875}, {"start": 2576.7, "end": 2576.78, "word": " You", "probability": 0.80712890625}, {"start": 2576.78, "end": 2576.82, "word": " don't", "probability": 0.941650390625}, {"start": 2576.82, "end": 2577.0, "word": " have", "probability": 0.505859375}, {"start": 2577.0, "end": 2577.04, "word": " to", "probability": 0.97265625}, {"start": 2577.04, "end": 2577.38, "word": " know", "probability": 0.87451171875}, {"start": 2577.38, "end": 2577.64, "word": " anything.", "probability": 0.76904296875}, {"start": 2577.72, "end": 2578.02, "word": " The", "probability": 0.1632080078125}, {"start": 2578.02, "end": 2578.22, "word": " B", "probability": 0.78857421875}, {"start": 2578.22, "end": 2578.5, "word": " must", "probability": 0.273193359375}, {"start": 2578.5, "end": 2578.66, "word": " go", "probability": 0.63623046875}, {"start": 2578.66, "end": 2578.72, "word": " to", "probability": 0.4931640625}, {"start": 2578.72, "end": 2578.92, "word": " where?", "probability": 0.72607421875}], "temperature": 1.0}, {"id": 103, "seek": 260223, "start": 2579.75, "end": 2602.23, "text": " For A, okay? You might have noticed that A can use B, and B can use C, and C can use D. You can see all these chains. You move A and that's it. Each one moves what he needs inside. But there is another negativity. What is it? That I want to change B now.", "tokens": [1171, 316, 11, 1392, 30, 509, 1062, 362, 5694, 300, 316, 393, 764, 363, 11, 293, 363, 393, 764, 383, 11, 293, 383, 393, 764, 413, 13, 509, 393, 536, 439, 613, 12626, 13, 509, 1286, 316, 293, 300, 311, 309, 13, 6947, 472, 6067, 437, 415, 2203, 1854, 13, 583, 456, 307, 1071, 2485, 10662, 507, 13, 708, 307, 309, 30, 663, 286, 528, 281, 1319, 363, 586, 13], "avg_logprob": -0.5721830901965289, "compression_ratio": 1.4912280701754386, "no_speech_prob": 1.9669532775878906e-06, "words": [{"start": 2579.75, "end": 2579.99, "word": " For", "probability": 0.20703125}, {"start": 2579.99, "end": 2580.27, "word": " A,", "probability": 0.5107421875}, {"start": 2580.67, "end": 2581.01, "word": " okay?", "probability": 0.1820068359375}, {"start": 2581.41, "end": 2581.51, "word": " You", "probability": 0.36474609375}, {"start": 2581.51, "end": 2581.67, "word": " might", "probability": 0.288330078125}, {"start": 2581.67, "end": 2581.81, "word": " have", "probability": 0.271728515625}, {"start": 2581.81, "end": 2582.05, "word": " noticed", "probability": 0.3681640625}, {"start": 2582.05, "end": 2582.25, "word": " that", "probability": 0.52001953125}, {"start": 2582.25, "end": 2583.71, "word": " A", "probability": 0.47216796875}, {"start": 2583.71, "end": 2583.87, "word": " can", "probability": 0.462646484375}, {"start": 2583.87, "end": 2584.17, "word": " use", "probability": 0.55908203125}, {"start": 2584.17, "end": 2584.45, "word": " B,", "probability": 0.90625}, {"start": 2584.55, "end": 2584.57, "word": " and", "probability": 0.47705078125}, {"start": 2584.57, "end": 2584.69, "word": " B", "probability": 0.95166015625}, {"start": 2584.69, "end": 2584.85, "word": " can", "probability": 0.81689453125}, {"start": 2584.85, "end": 2585.19, "word": " use", "probability": 0.8623046875}, {"start": 2585.19, "end": 2585.45, "word": " C,", "probability": 0.99267578125}, {"start": 2585.51, "end": 2585.59, "word": " and", "probability": 0.90087890625}, {"start": 2585.59, "end": 2585.69, "word": " C", "probability": 0.97802734375}, {"start": 2585.69, "end": 2585.83, "word": " can", "probability": 0.93212890625}, {"start": 2585.83, "end": 2586.11, "word": " use", "probability": 0.89599609375}, {"start": 2586.11, "end": 2586.41, "word": " D.", "probability": 0.9970703125}, {"start": 2587.19, "end": 2587.39, "word": " You", "probability": 0.360107421875}, {"start": 2587.39, "end": 2589.99, "word": " can", "probability": 0.273193359375}, {"start": 2589.99, "end": 2590.59, "word": " see", "probability": 0.287353515625}, {"start": 2590.59, "end": 2590.59, "word": " all", "probability": 0.348876953125}, {"start": 2590.59, "end": 2590.59, "word": " these", "probability": 0.53564453125}, {"start": 2590.59, "end": 2590.59, "word": " chains.", "probability": 0.341064453125}, {"start": 2590.91, "end": 2591.09, "word": " You", "probability": 0.72216796875}, {"start": 2591.09, "end": 2591.29, "word": " move", "probability": 0.08575439453125}, {"start": 2591.29, "end": 2591.65, "word": " A", "probability": 0.80078125}, {"start": 2591.65, "end": 2591.83, "word": " and", "probability": 0.45458984375}, {"start": 2591.83, "end": 2592.05, "word": " that's", "probability": 0.628173828125}, {"start": 2592.05, "end": 2592.11, "word": " it.", "probability": 0.908203125}, {"start": 2592.19, "end": 2592.35, "word": " Each", "probability": 0.427490234375}, {"start": 2592.35, "end": 2592.51, "word": " one", "probability": 0.5712890625}, {"start": 2592.51, "end": 2592.73, "word": " moves", "probability": 0.352294921875}, {"start": 2592.73, "end": 2594.09, "word": " what", "probability": 0.4072265625}, {"start": 2594.09, "end": 2594.21, "word": " he", "probability": 0.453125}, {"start": 2594.21, "end": 2594.45, "word": " needs", "probability": 0.6083984375}, {"start": 2594.45, "end": 2594.71, "word": " inside.", "probability": 0.49609375}, {"start": 2596.55, "end": 2597.01, "word": " But", "probability": 0.88720703125}, {"start": 2597.01, "end": 2597.19, "word": " there", "probability": 0.84716796875}, {"start": 2597.19, "end": 2597.19, "word": " is", "probability": 0.64501953125}, {"start": 2597.19, "end": 2597.31, "word": " another", "probability": 0.818359375}, {"start": 2597.31, "end": 2597.67, "word": " negativity.", "probability": 0.5400797526041666}, {"start": 2598.91, "end": 2599.21, "word": " What", "probability": 0.67333984375}, {"start": 2599.21, "end": 2599.37, "word": " is", "probability": 0.82568359375}, {"start": 2599.37, "end": 2599.49, "word": " it?", "probability": 0.83203125}, {"start": 2600.19, "end": 2600.65, "word": " That", "probability": 0.43359375}, {"start": 2600.65, "end": 2601.07, "word": " I", "probability": 0.8115234375}, {"start": 2601.07, "end": 2601.33, "word": " want", "probability": 0.61865234375}, {"start": 2601.33, "end": 2601.37, "word": " to", "probability": 0.96826171875}, {"start": 2601.37, "end": 2601.63, "word": " change", "probability": 0.830078125}, {"start": 2601.63, "end": 2602.23, "word": " B", "probability": 0.90380859375}, {"start": 2602.23, "end": 2602.23, "word": " now.", "probability": 0.7666015625}], "temperature": 1.0}, {"id": 104, "seek": 262302, "start": 2603.88, "end": 2623.02, "text": "So now I passed B to him, but now B wants to change his job. He doesn't like this method of process in B. He wants to do something else. What can I do to change B? You can do X for B. Am I right or not guys? Did I find this B? I don't like B's job. Okay?", "tokens": [6455, 586, 286, 4678, 363, 281, 796, 11, 457, 586, 363, 2738, 281, 1319, 702, 1691, 13, 634, 1177, 380, 411, 341, 3170, 295, 1399, 294, 363, 13, 634, 2738, 281, 360, 746, 1646, 13, 708, 393, 286, 360, 281, 1319, 363, 30, 509, 393, 360, 1783, 337, 363, 13, 2012, 286, 558, 420, 406, 1074, 30, 2589, 286, 915, 341, 363, 30, 286, 500, 380, 411, 363, 311, 1691, 13, 1033, 30], "avg_logprob": -0.5527871702168439, "compression_ratio": 1.4853801169590644, "no_speech_prob": 2.1457672119140625e-06, "words": [{"start": 2603.88, "end": 2604.18, "word": "So", "probability": 0.2354736328125}, {"start": 2604.18, "end": 2604.58, "word": " now", "probability": 0.44677734375}, {"start": 2604.58, "end": 2605.02, "word": " I", "probability": 0.646484375}, {"start": 2605.02, "end": 2605.36, "word": " passed", "probability": 0.234130859375}, {"start": 2605.36, "end": 2605.76, "word": " B", "probability": 0.5478515625}, {"start": 2605.76, "end": 2605.78, "word": " to", "probability": 0.50830078125}, {"start": 2605.78, "end": 2605.78, "word": " him,", "probability": 0.63134765625}, {"start": 2605.88, "end": 2606.04, "word": " but", "probability": 0.73388671875}, {"start": 2606.04, "end": 2606.3, "word": " now", "probability": 0.310302734375}, {"start": 2606.3, "end": 2606.3, "word": " B", "probability": 0.52001953125}, {"start": 2606.3, "end": 2606.88, "word": " wants", "probability": 0.53515625}, {"start": 2606.88, "end": 2606.96, "word": " to", "probability": 0.96240234375}, {"start": 2606.96, "end": 2607.1, "word": " change", "probability": 0.849609375}, {"start": 2607.1, "end": 2607.26, "word": " his", "probability": 0.42431640625}, {"start": 2607.26, "end": 2607.52, "word": " job.", "probability": 0.82470703125}, {"start": 2607.62, "end": 2607.8, "word": " He", "probability": 0.324462890625}, {"start": 2607.8, "end": 2607.8, "word": " doesn't", "probability": 0.7293701171875}, {"start": 2607.8, "end": 2607.8, "word": " like", "probability": 0.9326171875}, {"start": 2607.8, "end": 2607.8, "word": " this", "probability": 0.5859375}, {"start": 2607.8, "end": 2608.02, "word": " method", "probability": 0.56982421875}, {"start": 2608.02, "end": 2608.2, "word": " of", "probability": 0.45458984375}, {"start": 2608.2, "end": 2608.54, "word": " process", "probability": 0.6435546875}, {"start": 2608.54, "end": 2608.9, "word": " in", "probability": 0.265869140625}, {"start": 2608.9, "end": 2609.24, "word": " B.", "probability": 0.9267578125}, {"start": 2610.42, "end": 2610.46, "word": " He", "probability": 0.331298828125}, {"start": 2610.46, "end": 2610.6, "word": " wants", "probability": 0.734375}, {"start": 2610.6, "end": 2610.72, "word": " to", "probability": 0.4541015625}, {"start": 2610.72, "end": 2610.94, "word": " do", "probability": 0.51220703125}, {"start": 2610.94, "end": 2611.16, "word": " something", "probability": 0.74560546875}, {"start": 2611.16, "end": 2611.46, "word": " else.", "probability": 0.85400390625}, {"start": 2612.2, "end": 2612.64, "word": " What", "probability": 0.791015625}, {"start": 2612.64, "end": 2612.78, "word": " can", "probability": 0.1976318359375}, {"start": 2612.78, "end": 2612.96, "word": " I", "probability": 0.450927734375}, {"start": 2612.96, "end": 2613.12, "word": " do", "probability": 0.94873046875}, {"start": 2613.12, "end": 2613.4, "word": " to", "probability": 0.912109375}, {"start": 2613.4, "end": 2613.8, "word": " change", "probability": 0.892578125}, {"start": 2613.8, "end": 2614.92, "word": " B?", "probability": 0.85107421875}, {"start": 2615.1, "end": 2615.42, "word": " You", "probability": 0.75537109375}, {"start": 2615.42, "end": 2615.54, "word": " can", "probability": 0.92138671875}, {"start": 2615.54, "end": 2615.78, "word": " do", "probability": 0.447998046875}, {"start": 2615.78, "end": 2616.04, "word": " X", "probability": 0.650390625}, {"start": 2616.04, "end": 2616.34, "word": " for", "probability": 0.200927734375}, {"start": 2616.34, "end": 2616.64, "word": " B.", "probability": 0.953125}, {"start": 2616.82, "end": 2617.22, "word": " Am", "probability": 0.429931640625}, {"start": 2617.22, "end": 2617.26, "word": " I", "probability": 0.984375}, {"start": 2617.26, "end": 2617.26, "word": " right", "probability": 0.8583984375}, {"start": 2617.26, "end": 2617.48, "word": " or", "probability": 0.349365234375}, {"start": 2617.48, "end": 2617.48, "word": " not", "probability": 0.7412109375}, {"start": 2617.48, "end": 2617.68, "word": " guys?", "probability": 0.3486328125}, {"start": 2618.22, "end": 2618.5, "word": " Did", "probability": 0.1400146484375}, {"start": 2618.5, "end": 2618.5, "word": " I", "probability": 0.97412109375}, {"start": 2618.5, "end": 2618.78, "word": " find", "probability": 0.49072265625}, {"start": 2618.78, "end": 2618.92, "word": " this", "probability": 0.414306640625}, {"start": 2618.92, "end": 2619.14, "word": " B?", "probability": 0.9072265625}, {"start": 2620.68, "end": 2621.2, "word": " I", "probability": 0.7705078125}, {"start": 2621.2, "end": 2621.38, "word": " don't", "probability": 0.899658203125}, {"start": 2621.38, "end": 2621.62, "word": " like", "probability": 0.94091796875}, {"start": 2621.62, "end": 2621.62, "word": " B's", "probability": 0.6422119140625}, {"start": 2621.62, "end": 2621.62, "word": " job.", "probability": 0.65673828125}, {"start": 2622.5, "end": 2623.02, "word": " Okay?", "probability": 0.234375}], "temperature": 1.0}, {"id": 105, "seek": 264847, "start": 2624.55, "end": 2648.47, "text": "I'm going to do external B, for example, I'm going to do an override of a certain method, I'm going to add a new method, okay? For example, this is B, let's call it conditional B. Because the problem with composition is that you tied yourself to where? To B. Well, let's use conditional B. Well, you have to enter the code A and remove this instead of B and put conditional B. I'm going to say it simple, there's no condition.", "tokens": [40, 478, 516, 281, 360, 8320, 363, 11, 337, 1365, 11, 286, 478, 516, 281, 360, 364, 42321, 295, 257, 1629, 3170, 11, 286, 478, 516, 281, 909, 257, 777, 3170, 11, 1392, 30, 1171, 1365, 11, 341, 307, 363, 11, 718, 311, 818, 309, 27708, 363, 13, 1436, 264, 1154, 365, 12686, 307, 300, 291, 9601, 1803, 281, 689, 30, 1407, 363, 13, 1042, 11, 718, 311, 764, 27708, 363, 13, 1042, 11, 291, 362, 281, 3242, 264, 3089, 316, 293, 4159, 341, 2602, 295, 363, 293, 829, 27708, 363, 13, 286, 478, 516, 281, 584, 309, 2199, 11, 456, 311, 572, 4188, 13], "avg_logprob": -0.5424528273771394, "compression_ratio": 1.8362068965517242, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 2624.55, "end": 2624.77, "word": "I'm", "probability": 0.416839599609375}, {"start": 2624.77, "end": 2624.91, "word": " going", "probability": 0.66015625}, {"start": 2624.91, "end": 2625.09, "word": " to", "probability": 0.96337890625}, {"start": 2625.09, "end": 2625.23, "word": " do", "probability": 0.20703125}, {"start": 2625.23, "end": 2625.77, "word": " external", "probability": 0.2978515625}, {"start": 2625.77, "end": 2626.07, "word": " B,", "probability": 0.61669921875}, {"start": 2626.17, "end": 2626.33, "word": " for", "probability": 0.415283203125}, {"start": 2626.33, "end": 2626.89, "word": " example,", "probability": 0.91748046875}, {"start": 2627.35, "end": 2627.51, "word": " I'm", "probability": 0.4139404296875}, {"start": 2627.51, "end": 2627.61, "word": " going", "probability": 0.83251953125}, {"start": 2627.61, "end": 2627.61, "word": " to", "probability": 0.9638671875}, {"start": 2627.61, "end": 2627.61, "word": " do", "probability": 0.36376953125}, {"start": 2627.61, "end": 2627.91, "word": " an", "probability": 0.268310546875}, {"start": 2627.91, "end": 2628.09, "word": " override", "probability": 0.96044921875}, {"start": 2628.09, "end": 2628.23, "word": " of", "probability": 0.52783203125}, {"start": 2628.23, "end": 2628.27, "word": " a", "probability": 0.8662109375}, {"start": 2628.27, "end": 2628.83, "word": " certain", "probability": 0.28759765625}, {"start": 2628.83, "end": 2628.85, "word": " method,", "probability": 0.91015625}, {"start": 2629.27, "end": 2629.43, "word": " I'm", "probability": 0.6207275390625}, {"start": 2629.43, "end": 2629.43, "word": " going", "probability": 0.57861328125}, {"start": 2629.43, "end": 2629.43, "word": " to", "probability": 0.9599609375}, {"start": 2629.43, "end": 2629.61, "word": " add", "probability": 0.884765625}, {"start": 2629.61, "end": 2629.73, "word": " a", "probability": 0.84326171875}, {"start": 2629.73, "end": 2629.73, "word": " new", "probability": 0.8857421875}, {"start": 2629.73, "end": 2629.99, "word": " method,", "probability": 0.90673828125}, {"start": 2630.89, "end": 2631.13, "word": " okay?", "probability": 0.306640625}, {"start": 2631.45, "end": 2631.81, "word": " For", "probability": 0.351318359375}, {"start": 2631.81, "end": 2632.05, "word": " example,", "probability": 0.93701171875}, {"start": 2632.05, "end": 2632.05, "word": " this", "probability": 0.86328125}, {"start": 2632.05, "end": 2632.05, "word": " is", "probability": 0.65966796875}, {"start": 2632.05, "end": 2632.55, "word": " B,", "probability": 0.8759765625}, {"start": 2632.65, "end": 2632.83, "word": " let's", "probability": 0.63720703125}, {"start": 2632.83, "end": 2633.07, "word": " call", "probability": 0.85205078125}, {"start": 2633.07, "end": 2633.19, "word": " it", "probability": 0.54052734375}, {"start": 2633.19, "end": 2633.55, "word": " conditional", "probability": 0.0888671875}, {"start": 2633.55, "end": 2633.55, "word": " B.", "probability": 0.96875}, {"start": 2635.27, "end": 2635.53, "word": " Because", "probability": 0.48291015625}, {"start": 2635.53, "end": 2635.67, "word": " the", "probability": 0.89794921875}, {"start": 2635.67, "end": 2635.85, "word": " problem", "probability": 0.80419921875}, {"start": 2635.85, "end": 2636.03, "word": " with", "probability": 0.50537109375}, {"start": 2636.03, "end": 2636.49, "word": " composition", "probability": 0.4521484375}, {"start": 2636.49, "end": 2636.71, "word": " is", "probability": 0.8837890625}, {"start": 2636.71, "end": 2636.83, "word": " that", "probability": 0.6123046875}, {"start": 2636.83, "end": 2637.01, "word": " you", "probability": 0.826171875}, {"start": 2637.01, "end": 2637.23, "word": " tied", "probability": 0.12890625}, {"start": 2637.23, "end": 2637.63, "word": " yourself", "probability": 0.76171875}, {"start": 2637.63, "end": 2637.81, "word": " to", "probability": 0.55615234375}, {"start": 2637.81, "end": 2638.05, "word": " where?", "probability": 0.294921875}, {"start": 2638.53, "end": 2638.91, "word": " To", "probability": 0.57080078125}, {"start": 2638.91, "end": 2639.21, "word": " B.", "probability": 0.92236328125}, {"start": 2640.45, "end": 2640.61, "word": " Well,", "probability": 0.240234375}, {"start": 2640.71, "end": 2641.17, "word": " let's", "probability": 0.5509033203125}, {"start": 2641.17, "end": 2641.43, "word": " use", "probability": 0.47216796875}, {"start": 2641.43, "end": 2641.77, "word": " conditional", "probability": 0.62451171875}, {"start": 2641.77, "end": 2641.77, "word": " B.", "probability": 0.990234375}, {"start": 2642.07, "end": 2642.17, "word": " Well,", "probability": 0.31298828125}, {"start": 2642.25, "end": 2642.41, "word": " you", "probability": 0.74853515625}, {"start": 2642.41, "end": 2642.51, "word": " have", "probability": 0.677734375}, {"start": 2642.51, "end": 2642.67, "word": " to", "probability": 0.97314453125}, {"start": 2642.67, "end": 2642.99, "word": " enter", "probability": 0.66064453125}, {"start": 2642.99, "end": 2643.09, "word": " the", "probability": 0.697265625}, {"start": 2643.09, "end": 2643.35, "word": " code", "probability": 0.277099609375}, {"start": 2643.35, "end": 2643.79, "word": " A", "probability": 0.50390625}, {"start": 2643.79, "end": 2645.05, "word": " and", "probability": 0.57275390625}, {"start": 2645.05, "end": 2645.33, "word": " remove", "probability": 0.6484375}, {"start": 2645.33, "end": 2645.53, "word": " this", "probability": 0.7802734375}, {"start": 2645.53, "end": 2645.73, "word": " instead", "probability": 0.317138671875}, {"start": 2645.73, "end": 2645.83, "word": " of", "probability": 0.9677734375}, {"start": 2645.83, "end": 2646.09, "word": " B", "probability": 0.9765625}, {"start": 2646.09, "end": 2646.51, "word": " and", "probability": 0.48681640625}, {"start": 2646.51, "end": 2646.65, "word": " put", "probability": 0.560546875}, {"start": 2646.65, "end": 2646.77, "word": " conditional", "probability": 0.53125}, {"start": 2646.77, "end": 2646.89, "word": " B.", "probability": 0.99365234375}, {"start": 2647.35, "end": 2647.65, "word": " I'm", "probability": 0.5091552734375}, {"start": 2647.65, "end": 2647.65, "word": " going", "probability": 0.84423828125}, {"start": 2647.65, "end": 2647.65, "word": " to", "probability": 0.97021484375}, {"start": 2647.65, "end": 2647.75, "word": " say", "probability": 0.68603515625}, {"start": 2647.75, "end": 2647.87, "word": " it", "probability": 0.50341796875}, {"start": 2647.87, "end": 2648.05, "word": " simple,", "probability": 0.317626953125}, {"start": 2648.13, "end": 2648.25, "word": " there's", "probability": 0.4117431640625}, {"start": 2648.25, "end": 2648.29, "word": " no", "probability": 0.9580078125}, {"start": 2648.29, "end": 2648.47, "word": " condition.", "probability": 0.83642578125}], "temperature": 1.0}, {"id": 106, "seek": 267371, "start": 2649.45, "end": 2673.71, "text": " No, you don't need to enter the code to change it. The problem is that it should be a series of dependencies. A uses B, B uses C, and C uses D. And you need to change it. You need to add it to certain classes. And when you find the U, you know that you are going the wrong way. This is the U. Where did you connect yourself? Yes, in B.", "tokens": [883, 11, 291, 500, 380, 643, 281, 3242, 264, 3089, 281, 1319, 309, 13, 440, 1154, 307, 300, 309, 820, 312, 257, 2638, 295, 36606, 13, 316, 4960, 363, 11, 363, 4960, 383, 11, 293, 383, 4960, 413, 13, 400, 291, 643, 281, 1319, 309, 13, 509, 643, 281, 909, 309, 281, 1629, 5359, 13, 400, 562, 291, 915, 264, 624, 11, 291, 458, 300, 291, 366, 516, 264, 2085, 636, 13, 639, 307, 264, 624, 13, 2305, 630, 291, 1745, 1803, 30, 1079, 11, 294, 363, 13], "avg_logprob": -0.5396769930807392, "compression_ratio": 1.6231884057971016, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 2649.45, "end": 2649.83, "word": " No,", "probability": 0.366943359375}, {"start": 2650.15, "end": 2650.41, "word": " you", "probability": 0.7021484375}, {"start": 2650.41, "end": 2650.59, "word": " don't", "probability": 0.823974609375}, {"start": 2650.59, "end": 2650.85, "word": " need", "probability": 0.59326171875}, {"start": 2650.85, "end": 2651.03, "word": " to", "probability": 0.94775390625}, {"start": 2651.03, "end": 2651.23, "word": " enter", "probability": 0.317138671875}, {"start": 2651.23, "end": 2651.45, "word": " the", "probability": 0.43408203125}, {"start": 2651.45, "end": 2651.67, "word": " code", "probability": 0.90673828125}, {"start": 2651.67, "end": 2651.85, "word": " to", "probability": 0.69384765625}, {"start": 2651.85, "end": 2652.13, "word": " change", "probability": 0.65966796875}, {"start": 2652.13, "end": 2652.51, "word": " it.", "probability": 0.59814453125}, {"start": 2652.79, "end": 2653.17, "word": " The", "probability": 0.609375}, {"start": 2653.17, "end": 2653.35, "word": " problem", "probability": 0.736328125}, {"start": 2653.35, "end": 2653.51, "word": " is", "probability": 0.587890625}, {"start": 2653.51, "end": 2653.51, "word": " that", "probability": 0.63232421875}, {"start": 2653.51, "end": 2653.63, "word": " it", "probability": 0.26611328125}, {"start": 2653.63, "end": 2653.79, "word": " should", "probability": 0.1741943359375}, {"start": 2653.79, "end": 2653.93, "word": " be", "probability": 0.84375}, {"start": 2653.93, "end": 2654.03, "word": " a", "probability": 0.751953125}, {"start": 2654.03, "end": 2654.29, "word": " series", "probability": 0.51611328125}, {"start": 2654.29, "end": 2654.47, "word": " of", "probability": 0.9482421875}, {"start": 2654.47, "end": 2655.15, "word": " dependencies.", "probability": 0.63134765625}, {"start": 2655.75, "end": 2655.99, "word": " A", "probability": 0.79541015625}, {"start": 2655.99, "end": 2656.37, "word": " uses", "probability": 0.64453125}, {"start": 2656.37, "end": 2656.67, "word": " B,", "probability": 0.9677734375}, {"start": 2656.81, "end": 2656.97, "word": " B", "probability": 0.90087890625}, {"start": 2656.97, "end": 2657.35, "word": " uses", "probability": 0.8779296875}, {"start": 2657.35, "end": 2657.67, "word": " C,", "probability": 0.990234375}, {"start": 2657.71, "end": 2657.83, "word": " and", "probability": 0.41015625}, {"start": 2657.83, "end": 2657.89, "word": " C", "probability": 0.93017578125}, {"start": 2657.89, "end": 2658.21, "word": " uses", "probability": 0.88037109375}, {"start": 2658.21, "end": 2658.57, "word": " D.", "probability": 0.99462890625}, {"start": 2659.19, "end": 2659.51, "word": " And", "probability": 0.1971435546875}, {"start": 2659.51, "end": 2659.91, "word": " you", "probability": 0.869140625}, {"start": 2659.91, "end": 2660.07, "word": " need", "probability": 0.58544921875}, {"start": 2660.07, "end": 2660.19, "word": " to", "probability": 0.9638671875}, {"start": 2660.19, "end": 2660.51, "word": " change", "probability": 0.389404296875}, {"start": 2660.51, "end": 2662.37, "word": " it.", "probability": 0.1590576171875}, {"start": 2662.39, "end": 2662.59, "word": " You", "probability": 0.442138671875}, {"start": 2662.59, "end": 2662.93, "word": " need", "probability": 0.654296875}, {"start": 2662.93, "end": 2662.95, "word": " to", "probability": 0.96533203125}, {"start": 2662.95, "end": 2662.95, "word": " add", "probability": 0.833984375}, {"start": 2662.95, "end": 2663.09, "word": " it", "probability": 0.2493896484375}, {"start": 2663.09, "end": 2663.33, "word": " to", "probability": 0.82666015625}, {"start": 2663.33, "end": 2663.39, "word": " certain", "probability": 0.391845703125}, {"start": 2663.39, "end": 2663.99, "word": " classes.", "probability": 0.87060546875}, {"start": 2665.41, "end": 2665.79, "word": " And", "probability": 0.1805419921875}, {"start": 2665.79, "end": 2666.27, "word": " when", "probability": 0.423095703125}, {"start": 2666.27, "end": 2666.41, "word": " you", "probability": 0.9404296875}, {"start": 2666.41, "end": 2666.55, "word": " find", "probability": 0.68603515625}, {"start": 2666.55, "end": 2666.69, "word": " the", "probability": 0.35107421875}, {"start": 2666.69, "end": 2666.93, "word": " U,", "probability": 0.9150390625}, {"start": 2667.05, "end": 2667.25, "word": " you", "probability": 0.374267578125}, {"start": 2667.25, "end": 2667.33, "word": " know", "probability": 0.71875}, {"start": 2667.33, "end": 2667.43, "word": " that", "probability": 0.4921875}, {"start": 2667.43, "end": 2667.55, "word": " you", "probability": 0.6884765625}, {"start": 2667.55, "end": 2667.61, "word": " are", "probability": 0.45849609375}, {"start": 2667.61, "end": 2667.65, "word": " going", "probability": 0.337890625}, {"start": 2667.65, "end": 2667.83, "word": " the", "probability": 0.489013671875}, {"start": 2667.83, "end": 2667.87, "word": " wrong", "probability": 0.69384765625}, {"start": 2667.87, "end": 2668.67, "word": " way.", "probability": 0.88720703125}, {"start": 2669.97, "end": 2670.35, "word": " This", "probability": 0.311279296875}, {"start": 2670.35, "end": 2670.39, "word": " is", "probability": 0.2392578125}, {"start": 2670.39, "end": 2670.51, "word": " the", "probability": 0.7431640625}, {"start": 2670.51, "end": 2670.67, "word": " U.", "probability": 0.9501953125}, {"start": 2670.85, "end": 2671.03, "word": " Where", "probability": 0.2105712890625}, {"start": 2671.03, "end": 2671.03, "word": " did", "probability": 0.6640625}, {"start": 2671.03, "end": 2671.21, "word": " you", "probability": 0.958984375}, {"start": 2671.21, "end": 2671.39, "word": " connect", "probability": 0.56201171875}, {"start": 2671.39, "end": 2671.71, "word": " yourself?", "probability": 0.7392578125}, {"start": 2672.77, "end": 2673.15, "word": " Yes,", "probability": 0.45751953125}, {"start": 2673.41, "end": 2673.55, "word": " in", "probability": 0.38623046875}, {"start": 2673.55, "end": 2673.71, "word": " B.", "probability": 0.92578125}], "temperature": 1.0}, {"id": 107, "seek": 269262, "start": 2674.96, "end": 2692.62, "text": "Okay, composition made it easier for me to use code, and I don't want to go into details, but at the same time, I connected my life span to a certain class, okay? And we will talk about this in the next lecture, about working in software testing, and how much this is a negative point.", "tokens": [8297, 11, 12686, 1027, 309, 3571, 337, 385, 281, 764, 3089, 11, 293, 286, 500, 380, 528, 281, 352, 666, 4365, 11, 457, 412, 264, 912, 565, 11, 286, 4582, 452, 993, 16174, 281, 257, 1629, 1508, 11, 1392, 30, 400, 321, 486, 751, 466, 341, 294, 264, 958, 7991, 11, 466, 1364, 294, 4722, 4997, 11, 293, 577, 709, 341, 307, 257, 3671, 935, 13], "avg_logprob": -0.6175373116535927, "compression_ratio": 1.4690721649484537, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 2674.96, "end": 2675.36, "word": "Okay,", "probability": 0.12322998046875}, {"start": 2675.36, "end": 2675.76, "word": " composition", "probability": 0.57275390625}, {"start": 2675.76, "end": 2676.88, "word": " made", "probability": 0.443603515625}, {"start": 2676.88, "end": 2676.88, "word": " it", "probability": 0.6708984375}, {"start": 2676.88, "end": 2677.06, "word": " easier", "probability": 0.732421875}, {"start": 2677.06, "end": 2677.24, "word": " for", "probability": 0.701171875}, {"start": 2677.24, "end": 2677.42, "word": " me", "probability": 0.9365234375}, {"start": 2677.42, "end": 2677.48, "word": " to", "probability": 0.95068359375}, {"start": 2677.48, "end": 2677.76, "word": " use", "probability": 0.71875}, {"start": 2677.76, "end": 2678.32, "word": " code,", "probability": 0.63525390625}, {"start": 2678.52, "end": 2678.6, "word": " and", "probability": 0.442626953125}, {"start": 2678.6, "end": 2678.78, "word": " I", "probability": 0.69287109375}, {"start": 2678.78, "end": 2678.9, "word": " don't", "probability": 0.682861328125}, {"start": 2678.9, "end": 2679.04, "word": " want", "probability": 0.26025390625}, {"start": 2679.04, "end": 2679.06, "word": " to", "probability": 0.95849609375}, {"start": 2679.06, "end": 2679.26, "word": " go", "probability": 0.322021484375}, {"start": 2679.26, "end": 2679.38, "word": " into", "probability": 0.6767578125}, {"start": 2679.38, "end": 2679.8, "word": " details,", "probability": 0.712890625}, {"start": 2679.96, "end": 2680.12, "word": " but", "probability": 0.83984375}, {"start": 2680.12, "end": 2680.26, "word": " at", "probability": 0.75146484375}, {"start": 2680.26, "end": 2680.36, "word": " the", "probability": 0.9189453125}, {"start": 2680.36, "end": 2680.48, "word": " same", "probability": 0.90380859375}, {"start": 2680.48, "end": 2680.9, "word": " time,", "probability": 0.88818359375}, {"start": 2681.4, "end": 2681.5, "word": " I", "probability": 0.486328125}, {"start": 2681.5, "end": 2681.74, "word": " connected", "probability": 0.16064453125}, {"start": 2681.74, "end": 2682.08, "word": " my", "probability": 0.320556640625}, {"start": 2682.08, "end": 2682.52, "word": " life", "probability": 0.408935546875}, {"start": 2682.52, "end": 2682.54, "word": " span", "probability": 0.53076171875}, {"start": 2682.54, "end": 2682.78, "word": " to", "probability": 0.424560546875}, {"start": 2682.78, "end": 2683.48, "word": " a", "probability": 0.71923828125}, {"start": 2683.48, "end": 2684.16, "word": " certain", "probability": 0.285400390625}, {"start": 2684.16, "end": 2684.24, "word": " class,", "probability": 0.90185546875}, {"start": 2686.44, "end": 2686.66, "word": " okay?", "probability": 0.4560546875}, {"start": 2687.28, "end": 2687.48, "word": " And", "probability": 0.6318359375}, {"start": 2687.48, "end": 2687.94, "word": " we", "probability": 0.2626953125}, {"start": 2687.94, "end": 2688.92, "word": " will", "probability": 0.517578125}, {"start": 2688.92, "end": 2689.12, "word": " talk", "probability": 0.74658203125}, {"start": 2689.12, "end": 2689.3, "word": " about", "probability": 0.8779296875}, {"start": 2689.3, "end": 2689.34, "word": " this", "probability": 0.76318359375}, {"start": 2689.34, "end": 2689.36, "word": " in", "probability": 0.529296875}, {"start": 2689.36, "end": 2689.38, "word": " the", "probability": 0.61962890625}, {"start": 2689.38, "end": 2689.38, "word": " next", "probability": 0.78466796875}, {"start": 2689.38, "end": 2689.76, "word": " lecture,", "probability": 0.740234375}, {"start": 2690.1, "end": 2690.14, "word": " about", "probability": 0.317626953125}, {"start": 2690.14, "end": 2690.34, "word": " working", "probability": 0.6533203125}, {"start": 2690.34, "end": 2690.48, "word": " in", "probability": 0.521484375}, {"start": 2690.48, "end": 2690.74, "word": " software", "probability": 0.83203125}, {"start": 2690.74, "end": 2691.14, "word": " testing,", "probability": 0.82666015625}, {"start": 2691.3, "end": 2691.34, "word": " and", "probability": 0.22900390625}, {"start": 2691.34, "end": 2691.5, "word": " how", "probability": 0.51025390625}, {"start": 2691.5, "end": 2691.86, "word": " much", "probability": 0.355712890625}, {"start": 2691.86, "end": 2691.94, "word": " this", "probability": 0.21630859375}, {"start": 2691.94, "end": 2692.06, "word": " is", "probability": 0.81396484375}, {"start": 2692.06, "end": 2692.22, "word": " a", "probability": 0.8701171875}, {"start": 2692.22, "end": 2692.62, "word": " negative", "probability": 0.85205078125}, {"start": 2692.62, "end": 2692.62, "word": " point.", "probability": 0.78271484375}], "temperature": 1.0}, {"id": 108, "seek": 270817, "start": 2695.27, "end": 2708.17, "text": "I pass my dependency from outside, because the word dependency is something that I need to rely on, it comes from outside, here it is inside, I pass it from outside, now I can change this passing from outside", "tokens": [40, 1320, 452, 33621, 490, 2380, 11, 570, 264, 1349, 33621, 307, 746, 300, 286, 643, 281, 10687, 322, 11, 309, 1487, 490, 2380, 11, 510, 309, 307, 1854, 11, 286, 1320, 309, 490, 2380, 11, 586, 286, 393, 1319, 341, 8437, 490, 2380], "avg_logprob": -0.622916677263048, "compression_ratio": 1.6910569105691058, "no_speech_prob": 4.827976226806641e-06, "words": [{"start": 2695.27, "end": 2695.79, "word": "I", "probability": 0.59814453125}, {"start": 2695.79, "end": 2695.85, "word": " pass", "probability": 0.235595703125}, {"start": 2695.85, "end": 2695.85, "word": " my", "probability": 0.7021484375}, {"start": 2695.85, "end": 2696.55, "word": " dependency", "probability": 0.60400390625}, {"start": 2696.55, "end": 2697.69, "word": " from", "probability": 0.56494140625}, {"start": 2697.69, "end": 2697.93, "word": " outside,", "probability": 0.77978515625}, {"start": 2698.05, "end": 2698.25, "word": " because", "probability": 0.619140625}, {"start": 2698.25, "end": 2698.51, "word": " the", "probability": 0.29296875}, {"start": 2698.51, "end": 2698.51, "word": " word", "probability": 0.6201171875}, {"start": 2698.51, "end": 2699.11, "word": " dependency", "probability": 0.77197265625}, {"start": 2699.11, "end": 2699.61, "word": " is", "probability": 0.49951171875}, {"start": 2699.61, "end": 2699.77, "word": " something", "probability": 0.333251953125}, {"start": 2699.77, "end": 2699.95, "word": " that", "probability": 0.485595703125}, {"start": 2699.95, "end": 2699.99, "word": " I", "probability": 0.78515625}, {"start": 2699.99, "end": 2700.31, "word": " need", "probability": 0.8681640625}, {"start": 2700.31, "end": 2700.45, "word": " to", "probability": 0.1302490234375}, {"start": 2700.45, "end": 2700.71, "word": " rely", "probability": 0.412841796875}, {"start": 2700.71, "end": 2701.33, "word": " on,", "probability": 0.90234375}, {"start": 2701.33, "end": 2701.61, "word": " it", "probability": 0.31689453125}, {"start": 2701.61, "end": 2701.87, "word": " comes", "probability": 0.6494140625}, {"start": 2701.87, "end": 2702.03, "word": " from", "probability": 0.86669921875}, {"start": 2702.03, "end": 2702.33, "word": " outside,", "probability": 0.7861328125}, {"start": 2702.37, "end": 2702.51, "word": " here", "probability": 0.1925048828125}, {"start": 2702.51, "end": 2702.59, "word": " it", "probability": 0.7587890625}, {"start": 2702.59, "end": 2702.89, "word": " is", "probability": 0.52490234375}, {"start": 2702.89, "end": 2703.73, "word": " inside,", "probability": 0.59130859375}, {"start": 2704.49, "end": 2704.95, "word": " I", "probability": 0.66162109375}, {"start": 2704.95, "end": 2705.21, "word": " pass", "probability": 0.87841796875}, {"start": 2705.21, "end": 2705.39, "word": " it", "probability": 0.90869140625}, {"start": 2705.39, "end": 2705.51, "word": " from", "probability": 0.74853515625}, {"start": 2705.51, "end": 2705.73, "word": " outside,", "probability": 0.8720703125}, {"start": 2705.85, "end": 2706.07, "word": " now", "probability": 0.65087890625}, {"start": 2706.07, "end": 2706.81, "word": " I", "probability": 0.51025390625}, {"start": 2706.81, "end": 2707.15, "word": " can", "probability": 0.463134765625}, {"start": 2707.15, "end": 2707.15, "word": " change", "probability": 0.89013671875}, {"start": 2707.15, "end": 2707.21, "word": " this", "probability": 0.4794921875}, {"start": 2707.21, "end": 2707.57, "word": " passing", "probability": 0.17919921875}, {"start": 2707.57, "end": 2707.89, "word": " from", "probability": 0.75048828125}, {"start": 2707.89, "end": 2708.17, "word": " outside", "probability": 0.88134765625}], "temperature": 1.0}, {"id": 109, "seek": 273577, "start": 2711.01, "end": 2735.77, "text": " So if I send a condition to B, will it accept it or not? Yes, it will accept it As we said to the graph manager when he was accepting shapes, not all of them sent circles or rectangles The advantage is that I can change in B and extend and make any class I want as long as it is of the type B, I can pass it So the extensibility of the code is higher here, I have more flexibility But at the same time, the difficulty is", "tokens": [407, 498, 286, 2845, 257, 4188, 281, 363, 11, 486, 309, 3241, 309, 420, 406, 30, 1079, 11, 309, 486, 3241, 309, 1018, 321, 848, 281, 264, 4295, 6598, 562, 415, 390, 17391, 10854, 11, 406, 439, 295, 552, 2279, 13040, 420, 24077, 904, 440, 5002, 307, 300, 286, 393, 1319, 294, 363, 293, 10101, 293, 652, 604, 1508, 286, 528, 382, 938, 382, 309, 307, 295, 264, 2010, 363, 11, 286, 393, 1320, 309, 407, 264, 1279, 694, 2841, 295, 264, 3089, 307, 2946, 510, 11, 286, 362, 544, 12635, 583, 412, 264, 912, 565, 11, 264, 10360, 307], "avg_logprob": -0.4811262435252123, "compression_ratio": 1.6640316205533596, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 2711.0099999999998, "end": 2711.43, "word": " So", "probability": 0.1112060546875}, {"start": 2711.43, "end": 2711.69, "word": " if", "probability": 0.755859375}, {"start": 2711.69, "end": 2711.83, "word": " I", "probability": 0.87646484375}, {"start": 2711.83, "end": 2712.11, "word": " send", "probability": 0.421630859375}, {"start": 2712.11, "end": 2712.29, "word": " a", "probability": 0.5283203125}, {"start": 2712.29, "end": 2712.67, "word": " condition", "probability": 0.281982421875}, {"start": 2712.67, "end": 2712.77, "word": " to", "probability": 0.38037109375}, {"start": 2712.77, "end": 2712.77, "word": " B,", "probability": 0.751953125}, {"start": 2712.83, "end": 2713.11, "word": " will", "probability": 0.61083984375}, {"start": 2713.11, "end": 2713.17, "word": " it", "probability": 0.486083984375}, {"start": 2713.17, "end": 2713.35, "word": " accept", "probability": 0.6357421875}, {"start": 2713.35, "end": 2713.45, "word": " it", "probability": 0.828125}, {"start": 2713.45, "end": 2713.53, "word": " or", "probability": 0.82666015625}, {"start": 2713.53, "end": 2713.69, "word": " not?", "probability": 0.88916015625}, {"start": 2714.23, "end": 2714.47, "word": " Yes,", "probability": 0.331298828125}, {"start": 2714.47, "end": 2714.47, "word": " it", "probability": 0.80712890625}, {"start": 2714.47, "end": 2714.47, "word": " will", "probability": 0.7734375}, {"start": 2714.47, "end": 2714.69, "word": " accept", "probability": 0.75830078125}, {"start": 2714.69, "end": 2714.79, "word": " it", "probability": 0.84033203125}, {"start": 2714.79, "end": 2715.01, "word": " As", "probability": 0.2060546875}, {"start": 2715.01, "end": 2715.23, "word": " we", "probability": 0.6787109375}, {"start": 2715.23, "end": 2715.61, "word": " said", "probability": 0.2003173828125}, {"start": 2715.61, "end": 2715.83, "word": " to", "probability": 0.54736328125}, {"start": 2715.83, "end": 2715.87, "word": " the", "probability": 0.61376953125}, {"start": 2715.87, "end": 2716.11, "word": " graph", "probability": 0.673828125}, {"start": 2716.11, "end": 2716.47, "word": " manager", "probability": 0.94677734375}, {"start": 2716.47, "end": 2716.67, "word": " when", "probability": 0.72119140625}, {"start": 2716.67, "end": 2716.87, "word": " he", "probability": 0.5517578125}, {"start": 2716.87, "end": 2716.89, "word": " was", "probability": 0.3837890625}, {"start": 2716.89, "end": 2717.07, "word": " accepting", "probability": 0.490966796875}, {"start": 2717.07, "end": 2717.41, "word": " shapes,", "probability": 0.26416015625}, {"start": 2717.47, "end": 2717.59, "word": " not", "probability": 0.82470703125}, {"start": 2717.59, "end": 2717.75, "word": " all", "probability": 0.5986328125}, {"start": 2717.75, "end": 2717.75, "word": " of", "probability": 0.278076171875}, {"start": 2717.75, "end": 2717.81, "word": " them", "probability": 0.74462890625}, {"start": 2717.81, "end": 2717.97, "word": " sent", "probability": 0.2978515625}, {"start": 2717.97, "end": 2718.55, "word": " circles", "probability": 0.450927734375}, {"start": 2718.55, "end": 2718.71, "word": " or", "probability": 0.48046875}, {"start": 2718.71, "end": 2719.29, "word": " rectangles", "probability": 0.958251953125}, {"start": 2719.29, "end": 2720.77, "word": " The", "probability": 0.54150390625}, {"start": 2720.77, "end": 2721.03, "word": " advantage", "probability": 0.75439453125}, {"start": 2721.03, "end": 2721.27, "word": " is", "probability": 0.73681640625}, {"start": 2721.27, "end": 2721.41, "word": " that", "probability": 0.80908203125}, {"start": 2721.41, "end": 2721.57, "word": " I", "probability": 0.90966796875}, {"start": 2721.57, "end": 2721.79, "word": " can", "probability": 0.91162109375}, {"start": 2721.79, "end": 2722.05, "word": " change", "probability": 0.759765625}, {"start": 2722.05, "end": 2722.23, "word": " in", "probability": 0.3017578125}, {"start": 2722.23, "end": 2722.51, "word": " B", "probability": 0.880859375}, {"start": 2722.51, "end": 2722.65, "word": " and", "probability": 0.6337890625}, {"start": 2722.65, "end": 2723.11, "word": " extend", "probability": 0.7978515625}, {"start": 2723.11, "end": 2723.37, "word": " and", "probability": 0.58642578125}, {"start": 2723.37, "end": 2723.51, "word": " make", "probability": 0.34765625}, {"start": 2723.51, "end": 2723.73, "word": " any", "probability": 0.763671875}, {"start": 2723.73, "end": 2724.03, "word": " class", "probability": 0.89208984375}, {"start": 2724.03, "end": 2724.09, "word": " I", "probability": 0.432373046875}, {"start": 2724.09, "end": 2724.33, "word": " want", "probability": 0.83642578125}, {"start": 2724.33, "end": 2724.59, "word": " as", "probability": 0.626953125}, {"start": 2724.59, "end": 2724.77, "word": " long", "probability": 0.92333984375}, {"start": 2724.77, "end": 2724.85, "word": " as", "probability": 0.95068359375}, {"start": 2724.85, "end": 2724.95, "word": " it", "probability": 0.88037109375}, {"start": 2724.95, "end": 2725.01, "word": " is", "probability": 0.63818359375}, {"start": 2725.01, "end": 2725.11, "word": " of", "probability": 0.626953125}, {"start": 2725.11, "end": 2725.19, "word": " the", "probability": 0.391845703125}, {"start": 2725.19, "end": 2725.29, "word": " type", "probability": 0.44482421875}, {"start": 2725.29, "end": 2725.59, "word": " B,", "probability": 0.923828125}, {"start": 2726.73, "end": 2726.83, "word": " I", "probability": 0.9130859375}, {"start": 2726.83, "end": 2727.03, "word": " can", "probability": 0.9091796875}, {"start": 2727.03, "end": 2727.33, "word": " pass", "probability": 0.6337890625}, {"start": 2727.33, "end": 2727.61, "word": " it", "probability": 0.7841796875}, {"start": 2727.61, "end": 2728.87, "word": " So", "probability": 0.3076171875}, {"start": 2728.87, "end": 2729.33, "word": " the", "probability": 0.716796875}, {"start": 2729.33, "end": 2730.07, "word": " extensibility", "probability": 0.8102213541666666}, {"start": 2730.07, "end": 2730.27, "word": " of", "probability": 0.94189453125}, {"start": 2730.27, "end": 2730.47, "word": " the", "probability": 0.7099609375}, {"start": 2730.47, "end": 2730.81, "word": " code", "probability": 0.9375}, {"start": 2730.81, "end": 2731.87, "word": " is", "probability": 0.79736328125}, {"start": 2731.87, "end": 2732.17, "word": " higher", "probability": 0.447265625}, {"start": 2732.17, "end": 2732.39, "word": " here,", "probability": 0.6787109375}, {"start": 2732.45, "end": 2732.65, "word": " I", "probability": 0.60888671875}, {"start": 2732.65, "end": 2732.71, "word": " have", "probability": 0.90966796875}, {"start": 2732.71, "end": 2732.71, "word": " more", "probability": 0.77001953125}, {"start": 2732.71, "end": 2733.31, "word": " flexibility", "probability": 0.96728515625}, {"start": 2733.31, "end": 2734.19, "word": " But", "probability": 0.332763671875}, {"start": 2734.19, "end": 2734.39, "word": " at", "probability": 0.91015625}, {"start": 2734.39, "end": 2734.59, "word": " the", "probability": 0.92626953125}, {"start": 2734.59, "end": 2734.59, "word": " same", "probability": 0.9111328125}, {"start": 2734.59, "end": 2734.87, "word": " time,", "probability": 0.8505859375}, {"start": 2734.95, "end": 2735.03, "word": " the", "probability": 0.82958984375}, {"start": 2735.03, "end": 2735.35, "word": " difficulty", "probability": 0.7255859375}, {"start": 2735.35, "end": 2735.77, "word": " is", "probability": 0.82275390625}], "temperature": 1.0}, {"id": 110, "seek": 276423, "start": 2736.85, "end": 2764.23, "text": " In order to identify an object from A, I need to know what is its dependency. It depends on B. It can also depend on B and C. Am I right or not? This process of aggregation is called Dependency Injection. What is Injection?", "tokens": [682, 1668, 281, 5876, 364, 2657, 490, 316, 11, 286, 643, 281, 458, 437, 307, 1080, 33621, 13, 467, 5946, 322, 363, 13, 467, 393, 611, 5672, 322, 363, 293, 383, 13, 2012, 286, 558, 420, 406, 30, 639, 1399, 295, 16743, 399, 307, 1219, 4056, 521, 3020, 682, 1020, 313, 13, 708, 307, 682, 1020, 313, 30], "avg_logprob": -0.5842160754284617, "compression_ratio": 1.4736842105263157, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2736.85, "end": 2737.31, "word": " In", "probability": 0.04827880859375}, {"start": 2737.31, "end": 2737.57, "word": " order", "probability": 0.892578125}, {"start": 2737.57, "end": 2737.81, "word": " to", "probability": 0.92529296875}, {"start": 2737.81, "end": 2738.03, "word": " identify", "probability": 0.269775390625}, {"start": 2738.03, "end": 2738.23, "word": " an", "probability": 0.5458984375}, {"start": 2738.23, "end": 2738.35, "word": " object", "probability": 0.966796875}, {"start": 2738.35, "end": 2738.59, "word": " from", "probability": 0.6748046875}, {"start": 2738.59, "end": 2738.85, "word": " A,", "probability": 0.71337890625}, {"start": 2738.87, "end": 2739.01, "word": " I", "probability": 0.3330078125}, {"start": 2739.01, "end": 2739.07, "word": " need", "probability": 0.3916015625}, {"start": 2739.07, "end": 2739.11, "word": " to", "probability": 0.9638671875}, {"start": 2739.11, "end": 2739.25, "word": " know", "probability": 0.287353515625}, {"start": 2739.25, "end": 2739.41, "word": " what", "probability": 0.432373046875}, {"start": 2739.41, "end": 2739.45, "word": " is", "probability": 0.368408203125}, {"start": 2739.45, "end": 2739.51, "word": " its", "probability": 0.70166015625}, {"start": 2739.51, "end": 2739.91, "word": " dependency.", "probability": 0.5498046875}, {"start": 2740.49, "end": 2740.95, "word": " It", "probability": 0.313232421875}, {"start": 2740.95, "end": 2741.31, "word": " depends", "probability": 0.40283203125}, {"start": 2741.31, "end": 2741.47, "word": " on", "probability": 0.86328125}, {"start": 2741.47, "end": 2741.61, "word": " B.", "probability": 0.935546875}, {"start": 2741.65, "end": 2741.69, "word": " It", "probability": 0.62890625}, {"start": 2741.69, "end": 2741.89, "word": " can", "probability": 0.2666015625}, {"start": 2741.89, "end": 2742.09, "word": " also", "probability": 0.6572265625}, {"start": 2742.09, "end": 2742.39, "word": " depend", "probability": 0.63037109375}, {"start": 2742.39, "end": 2743.03, "word": " on", "probability": 0.81201171875}, {"start": 2743.03, "end": 2743.25, "word": " B", "probability": 0.9013671875}, {"start": 2743.25, "end": 2743.39, "word": " and", "probability": 0.71875}, {"start": 2743.39, "end": 2743.59, "word": " C.", "probability": 0.98095703125}, {"start": 2744.51, "end": 2744.79, "word": " Am", "probability": 0.197021484375}, {"start": 2744.79, "end": 2744.85, "word": " I", "probability": 0.974609375}, {"start": 2744.85, "end": 2744.85, "word": " right", "probability": 0.81787109375}, {"start": 2744.85, "end": 2745.05, "word": " or", "probability": 0.4033203125}, {"start": 2745.05, "end": 2745.05, "word": " not?", "probability": 0.638671875}, {"start": 2745.99, "end": 2746.45, "word": " This", "probability": 0.2666015625}, {"start": 2746.45, "end": 2747.15, "word": " process", "probability": 0.377685546875}, {"start": 2747.15, "end": 2747.35, "word": " of", "probability": 0.62255859375}, {"start": 2747.35, "end": 2748.55, "word": " aggregation", "probability": 0.870361328125}, {"start": 2748.55, "end": 2750.43, "word": " is", "probability": 0.214599609375}, {"start": 2750.43, "end": 2751.71, "word": " called", "probability": 0.5908203125}, {"start": 2751.71, "end": 2753.57, "word": " Dependency", "probability": 0.756591796875}, {"start": 2753.57, "end": 2757.83, "word": " Injection.", "probability": 0.9697265625}, {"start": 2762.73, "end": 2763.19, "word": " What", "probability": 0.50146484375}, {"start": 2763.19, "end": 2763.31, "word": " is", "probability": 0.7958984375}, {"start": 2763.31, "end": 2764.23, "word": " Injection?", "probability": 0.7012939453125}], "temperature": 1.0}, {"id": 111, "seek": 279192, "start": 2766.48, "end": 2791.92, "text": "In order to create an object, you have to get the dependency from outside. This is the best way. We should rely on it again, despite its difficulty. What is its difficulty? I don't know why I didn't mention it. The difficulty is as follows. The process is not always simple and calm.", "tokens": [4575, 1668, 281, 1884, 364, 2657, 11, 291, 362, 281, 483, 264, 33621, 490, 2380, 13, 639, 307, 264, 1151, 636, 13, 492, 820, 10687, 322, 309, 797, 11, 7228, 1080, 10360, 13, 708, 307, 1080, 10360, 30, 286, 500, 380, 458, 983, 286, 994, 380, 2152, 309, 13, 440, 10360, 307, 382, 10002, 13, 440, 1399, 307, 406, 1009, 2199, 293, 7151, 13], "avg_logprob": -0.7461538461538462, "compression_ratio": 1.521505376344086, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 2766.48, "end": 2766.96, "word": "In", "probability": 0.046417236328125}, {"start": 2766.96, "end": 2767.44, "word": " order", "probability": 0.849609375}, {"start": 2767.44, "end": 2767.76, "word": " to", "probability": 0.94970703125}, {"start": 2767.76, "end": 2768.02, "word": " create", "probability": 0.4013671875}, {"start": 2768.02, "end": 2768.2, "word": " an", "probability": 0.488525390625}, {"start": 2768.2, "end": 2768.44, "word": " object,", "probability": 0.96728515625}, {"start": 2768.8, "end": 2768.84, "word": " you", "probability": 0.68212890625}, {"start": 2768.84, "end": 2768.98, "word": " have", "probability": 0.17822265625}, {"start": 2768.98, "end": 2768.98, "word": " to", "probability": 0.958984375}, {"start": 2768.98, "end": 2769.16, "word": " get", "probability": 0.049285888671875}, {"start": 2769.16, "end": 2769.38, "word": " the", "probability": 0.357421875}, {"start": 2769.38, "end": 2769.94, "word": " dependency", "probability": 0.677734375}, {"start": 2769.94, "end": 2770.12, "word": " from", "probability": 0.7431640625}, {"start": 2770.12, "end": 2770.42, "word": " outside.", "probability": 0.7060546875}, {"start": 2771.52, "end": 2772.0, "word": " This", "probability": 0.251708984375}, {"start": 2772.0, "end": 2773.04, "word": " is", "probability": 0.7373046875}, {"start": 2773.04, "end": 2773.2, "word": " the", "probability": 0.65966796875}, {"start": 2773.2, "end": 2773.48, "word": " best", "probability": 0.83251953125}, {"start": 2773.48, "end": 2773.54, "word": " way.", "probability": 0.327880859375}, {"start": 2773.56, "end": 2773.74, "word": " We", "probability": 0.31103515625}, {"start": 2773.74, "end": 2774.36, "word": " should", "probability": 0.568359375}, {"start": 2774.36, "end": 2774.6, "word": " rely", "probability": 0.19091796875}, {"start": 2774.6, "end": 2774.8, "word": " on", "probability": 0.90576171875}, {"start": 2774.8, "end": 2774.8, "word": " it", "probability": 0.61083984375}, {"start": 2774.8, "end": 2775.04, "word": " again,", "probability": 0.485107421875}, {"start": 2775.16, "end": 2775.58, "word": " despite", "probability": 0.4951171875}, {"start": 2775.58, "end": 2777.34, "word": " its", "probability": 0.464599609375}, {"start": 2777.34, "end": 2777.64, "word": " difficulty.", "probability": 0.30224609375}, {"start": 2779.1, "end": 2779.58, "word": " What", "probability": 0.61962890625}, {"start": 2779.58, "end": 2779.64, "word": " is", "probability": 0.67138671875}, {"start": 2779.64, "end": 2780.12, "word": " its", "probability": 0.58251953125}, {"start": 2780.12, "end": 2780.12, "word": " difficulty?", "probability": 0.77783203125}, {"start": 2780.56, "end": 2780.7, "word": " I", "probability": 0.1907958984375}, {"start": 2780.7, "end": 2780.7, "word": " don't", "probability": 0.57037353515625}, {"start": 2780.7, "end": 2780.84, "word": " know", "probability": 0.529296875}, {"start": 2780.84, "end": 2781.0, "word": " why", "probability": 0.360107421875}, {"start": 2781.0, "end": 2781.08, "word": " I", "probability": 0.8896484375}, {"start": 2781.08, "end": 2781.14, "word": " didn't", "probability": 0.6829833984375}, {"start": 2781.14, "end": 2781.34, "word": " mention", "probability": 0.138427734375}, {"start": 2781.34, "end": 2781.84, "word": " it.", "probability": 0.65771484375}, {"start": 2786.56, "end": 2787.04, "word": " The", "probability": 0.23583984375}, {"start": 2787.04, "end": 2788.4, "word": " difficulty", "probability": 0.403564453125}, {"start": 2788.4, "end": 2788.8, "word": " is", "probability": 0.405029296875}, {"start": 2788.8, "end": 2788.84, "word": " as", "probability": 0.2431640625}, {"start": 2788.84, "end": 2789.08, "word": " follows.", "probability": 0.89892578125}, {"start": 2790.3, "end": 2790.46, "word": " The", "probability": 0.304931640625}, {"start": 2790.46, "end": 2790.72, "word": " process", "probability": 0.4521484375}, {"start": 2790.72, "end": 2790.9, "word": " is", "probability": 0.71630859375}, {"start": 2790.9, "end": 2790.94, "word": " not", "probability": 0.85888671875}, {"start": 2790.94, "end": 2791.16, "word": " always", "probability": 0.50634765625}, {"start": 2791.16, "end": 2791.54, "word": " simple", "probability": 0.5634765625}, {"start": 2791.54, "end": 2791.78, "word": " and", "probability": 0.473876953125}, {"start": 2791.78, "end": 2791.92, "word": " calm.", "probability": 0.391357421875}], "temperature": 1.0}, {"id": 112, "seek": 282141, "start": 2793.35, "end": 2821.41, "text": " For example, if you have a mobile phone and you have a screen class A This screen needs something called view manager or view model So A depends on a class called B for example B needs to connect to an external repository that has a class C This C must connect to a certain API and connect to a database that needs D and E", "tokens": [1171, 1365, 11, 498, 291, 362, 257, 6013, 2593, 293, 291, 362, 257, 2568, 1508, 316, 639, 2568, 2203, 746, 1219, 1910, 6598, 420, 1910, 2316, 407, 316, 5946, 322, 257, 1508, 1219, 363, 337, 1365, 363, 2203, 281, 1745, 281, 364, 8320, 25841, 300, 575, 257, 1508, 383, 639, 383, 1633, 1745, 281, 257, 1629, 9362, 293, 1745, 281, 257, 8149, 300, 2203, 413, 293, 462], "avg_logprob": -0.48391545213320675, "compression_ratio": 1.7180851063829787, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2793.35, "end": 2793.61, "word": " For", "probability": 0.317138671875}, {"start": 2793.61, "end": 2794.21, "word": " example,", "probability": 0.79296875}, {"start": 2794.71, "end": 2794.79, "word": " if", "probability": 0.0919189453125}, {"start": 2794.79, "end": 2794.87, "word": " you", "probability": 0.599609375}, {"start": 2794.87, "end": 2794.87, "word": " have", "probability": 0.78125}, {"start": 2794.87, "end": 2794.89, "word": " a", "probability": 0.89794921875}, {"start": 2794.89, "end": 2795.05, "word": " mobile", "probability": 0.469482421875}, {"start": 2795.05, "end": 2795.37, "word": " phone", "probability": 0.436279296875}, {"start": 2795.37, "end": 2796.07, "word": " and", "probability": 0.371826171875}, {"start": 2796.07, "end": 2796.21, "word": " you", "probability": 0.459716796875}, {"start": 2796.21, "end": 2796.21, "word": " have", "probability": 0.78662109375}, {"start": 2796.21, "end": 2796.31, "word": " a", "probability": 0.84521484375}, {"start": 2796.31, "end": 2796.63, "word": " screen", "probability": 0.7109375}, {"start": 2796.63, "end": 2797.67, "word": " class", "probability": 0.45703125}, {"start": 2797.67, "end": 2797.95, "word": " A", "probability": 0.71826171875}, {"start": 2797.95, "end": 2799.61, "word": " This", "probability": 0.191650390625}, {"start": 2799.61, "end": 2799.93, "word": " screen", "probability": 0.86083984375}, {"start": 2799.93, "end": 2800.73, "word": " needs", "probability": 0.5009765625}, {"start": 2800.73, "end": 2802.65, "word": " something", "probability": 0.475341796875}, {"start": 2802.65, "end": 2802.89, "word": " called", "probability": 0.8271484375}, {"start": 2802.89, "end": 2803.11, "word": " view", "probability": 0.385986328125}, {"start": 2803.11, "end": 2803.53, "word": " manager", "probability": 0.9326171875}, {"start": 2803.53, "end": 2803.75, "word": " or", "probability": 0.85986328125}, {"start": 2803.75, "end": 2803.97, "word": " view", "probability": 0.724609375}, {"start": 2803.97, "end": 2804.29, "word": " model", "probability": 0.94873046875}, {"start": 2804.29, "end": 2805.53, "word": " So", "probability": 0.2276611328125}, {"start": 2805.53, "end": 2805.91, "word": " A", "probability": 0.34765625}, {"start": 2805.91, "end": 2806.27, "word": " depends", "probability": 0.625}, {"start": 2806.27, "end": 2806.49, "word": " on", "probability": 0.9375}, {"start": 2806.49, "end": 2806.59, "word": " a", "probability": 0.413818359375}, {"start": 2806.59, "end": 2806.79, "word": " class", "probability": 0.95556640625}, {"start": 2806.79, "end": 2807.09, "word": " called", "probability": 0.51220703125}, {"start": 2807.09, "end": 2807.93, "word": " B", "probability": 0.96533203125}, {"start": 2807.93, "end": 2808.07, "word": " for", "probability": 0.28857421875}, {"start": 2808.07, "end": 2808.23, "word": " example", "probability": 0.95849609375}, {"start": 2808.23, "end": 2809.17, "word": " B", "probability": 0.81103515625}, {"start": 2809.17, "end": 2809.55, "word": " needs", "probability": 0.794921875}, {"start": 2809.55, "end": 2809.69, "word": " to", "probability": 0.95166015625}, {"start": 2809.69, "end": 2809.85, "word": " connect", "probability": 0.81689453125}, {"start": 2809.85, "end": 2810.07, "word": " to", "probability": 0.8955078125}, {"start": 2810.07, "end": 2810.17, "word": " an", "probability": 0.68017578125}, {"start": 2810.17, "end": 2810.33, "word": " external", "probability": 0.8193359375}, {"start": 2810.33, "end": 2811.13, "word": " repository", "probability": 0.828125}, {"start": 2811.13, "end": 2812.25, "word": " that", "probability": 0.1605224609375}, {"start": 2812.25, "end": 2812.25, "word": " has", "probability": 0.5908203125}, {"start": 2812.25, "end": 2812.55, "word": " a", "probability": 0.49951171875}, {"start": 2812.55, "end": 2812.55, "word": " class", "probability": 0.93994140625}, {"start": 2812.55, "end": 2812.93, "word": " C", "probability": 0.55517578125}, {"start": 2812.93, "end": 2813.83, "word": " This", "probability": 0.53759765625}, {"start": 2813.83, "end": 2814.07, "word": " C", "probability": 0.66357421875}, {"start": 2814.07, "end": 2814.65, "word": " must", "probability": 0.439208984375}, {"start": 2814.65, "end": 2815.07, "word": " connect", "probability": 0.7802734375}, {"start": 2815.07, "end": 2815.23, "word": " to", "probability": 0.95458984375}, {"start": 2815.23, "end": 2815.37, "word": " a", "probability": 0.88330078125}, {"start": 2815.37, "end": 2816.87, "word": " certain", "probability": 0.340087890625}, {"start": 2816.87, "end": 2816.87, "word": " API", "probability": 0.908203125}, {"start": 2816.87, "end": 2817.65, "word": " and", "probability": 0.59619140625}, {"start": 2817.65, "end": 2817.87, "word": " connect", "probability": 0.483154296875}, {"start": 2817.87, "end": 2818.07, "word": " to", "probability": 0.9619140625}, {"start": 2818.07, "end": 2818.15, "word": " a", "probability": 0.84765625}, {"start": 2818.15, "end": 2818.59, "word": " database", "probability": 0.92626953125}, {"start": 2818.59, "end": 2819.35, "word": " that", "probability": 0.43310546875}, {"start": 2819.35, "end": 2819.67, "word": " needs", "probability": 0.6767578125}, {"start": 2819.67, "end": 2820.05, "word": " D", "probability": 0.68896484375}, {"start": 2820.05, "end": 2821.15, "word": " and", "probability": 0.92724609375}, {"start": 2821.15, "end": 2821.41, "word": " E", "probability": 0.98779296875}], "temperature": 1.0}, {"id": 113, "seek": 284720, "start": 2823.1, "end": 2847.2, "text": "The D that connects to API also needs another library to build objects or a JSON or a BGF And the F might need a Q and the E might need an M All of these are dependencies. This is what happens in projects So this means that in order to build an object from A", "tokens": [2278, 413, 300, 16967, 281, 9362, 611, 2203, 1071, 6405, 281, 1322, 6565, 420, 257, 31828, 420, 257, 363, 38, 37, 400, 264, 479, 1062, 643, 257, 1249, 293, 264, 462, 1062, 643, 364, 376, 1057, 295, 613, 366, 36606, 13, 639, 307, 437, 2314, 294, 4455, 407, 341, 1355, 300, 294, 1668, 281, 1322, 364, 2657, 490, 316], "avg_logprob": -0.6270833512147268, "compression_ratio": 1.5, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2823.1, "end": 2823.38, "word": "The", "probability": 0.228759765625}, {"start": 2823.38, "end": 2824.06, "word": " D", "probability": 0.697265625}, {"start": 2824.06, "end": 2824.34, "word": " that", "probability": 0.379150390625}, {"start": 2824.34, "end": 2824.58, "word": " connects", "probability": 0.8408203125}, {"start": 2824.58, "end": 2824.78, "word": " to", "probability": 0.71630859375}, {"start": 2824.78, "end": 2825.14, "word": " API", "probability": 0.70166015625}, {"start": 2825.14, "end": 2825.82, "word": " also", "probability": 0.428955078125}, {"start": 2825.82, "end": 2826.08, "word": " needs", "probability": 0.6279296875}, {"start": 2826.08, "end": 2827.08, "word": " another", "probability": 0.7666015625}, {"start": 2827.08, "end": 2827.08, "word": " library", "probability": 0.85400390625}, {"start": 2827.08, "end": 2827.9, "word": " to", "probability": 0.80712890625}, {"start": 2827.9, "end": 2828.18, "word": " build", "probability": 0.37060546875}, {"start": 2828.18, "end": 2828.6, "word": " objects", "probability": 0.4716796875}, {"start": 2828.6, "end": 2828.72, "word": " or", "probability": 0.63134765625}, {"start": 2828.72, "end": 2828.88, "word": " a", "probability": 0.1990966796875}, {"start": 2828.88, "end": 2829.58, "word": " JSON", "probability": 0.415771484375}, {"start": 2829.58, "end": 2829.76, "word": " or", "probability": 0.074462890625}, {"start": 2829.76, "end": 2829.88, "word": " a", "probability": 0.44482421875}, {"start": 2829.88, "end": 2831.74, "word": " BGF", "probability": 0.5713297526041666}, {"start": 2831.74, "end": 2833.92, "word": " And", "probability": 0.28759765625}, {"start": 2833.92, "end": 2834.04, "word": " the", "probability": 0.386962890625}, {"start": 2834.04, "end": 2834.32, "word": " F", "probability": 0.96875}, {"start": 2834.32, "end": 2834.56, "word": " might", "probability": 0.1785888671875}, {"start": 2834.56, "end": 2834.92, "word": " need", "probability": 0.841796875}, {"start": 2834.92, "end": 2835.06, "word": " a", "probability": 0.41845703125}, {"start": 2835.06, "end": 2835.34, "word": " Q", "probability": 0.94873046875}, {"start": 2835.34, "end": 2835.86, "word": " and", "probability": 0.6083984375}, {"start": 2835.86, "end": 2835.96, "word": " the", "probability": 0.6533203125}, {"start": 2835.96, "end": 2836.18, "word": " E", "probability": 0.98779296875}, {"start": 2836.18, "end": 2836.4, "word": " might", "probability": 0.396484375}, {"start": 2836.4, "end": 2836.82, "word": " need", "probability": 0.9111328125}, {"start": 2836.82, "end": 2836.96, "word": " an", "probability": 0.432373046875}, {"start": 2836.96, "end": 2837.34, "word": " M", "probability": 0.89306640625}, {"start": 2837.34, "end": 2839.48, "word": " All", "probability": 0.418212890625}, {"start": 2839.48, "end": 2839.62, "word": " of", "probability": 0.3251953125}, {"start": 2839.62, "end": 2839.74, "word": " these", "probability": 0.767578125}, {"start": 2839.74, "end": 2839.8, "word": " are", "probability": 0.4892578125}, {"start": 2839.8, "end": 2840.42, "word": " dependencies.", "probability": 0.58203125}, {"start": 2840.88, "end": 2841.1, "word": " This", "probability": 0.28759765625}, {"start": 2841.1, "end": 2841.4, "word": " is", "probability": 0.640625}, {"start": 2841.4, "end": 2842.32, "word": " what", "probability": 0.462890625}, {"start": 2842.32, "end": 2842.74, "word": " happens", "probability": 0.71337890625}, {"start": 2842.74, "end": 2842.92, "word": " in", "probability": 0.828125}, {"start": 2842.92, "end": 2843.32, "word": " projects", "probability": 0.80419921875}, {"start": 2843.32, "end": 2844.34, "word": " So", "probability": 0.221923828125}, {"start": 2844.34, "end": 2844.54, "word": " this", "probability": 0.6640625}, {"start": 2844.54, "end": 2844.88, "word": " means", "probability": 0.84619140625}, {"start": 2844.88, "end": 2845.26, "word": " that", "probability": 0.8291015625}, {"start": 2845.26, "end": 2845.94, "word": " in", "probability": 0.5205078125}, {"start": 2845.94, "end": 2846.02, "word": " order", "probability": 0.89599609375}, {"start": 2846.02, "end": 2846.2, "word": " to", "probability": 0.96484375}, {"start": 2846.2, "end": 2846.34, "word": " build", "probability": 0.55224609375}, {"start": 2846.34, "end": 2846.56, "word": " an", "probability": 0.36767578125}, {"start": 2846.56, "end": 2846.76, "word": " object", "probability": 0.9736328125}, {"start": 2846.76, "end": 2846.94, "word": " from", "probability": 0.79296875}, {"start": 2846.94, "end": 2847.2, "word": " A", "probability": 0.88525390625}], "temperature": 1.0}, {"id": 114, "seek": 287436, "start": 2848.52, "end": 2874.36, "text": " You have to calculate this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this, and this", "tokens": [509, 362, 281, 8873, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341, 11, 293, 341], "avg_logprob": -0.12958333969116212, "compression_ratio": 16.822222222222223, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 2848.52, "end": 2848.76, "word": " You", "probability": 0.1927490234375}, {"start": 2848.76, "end": 2848.76, "word": " have", "probability": 0.20654296875}, {"start": 2848.76, "end": 2850.64, "word": " to", "probability": 0.90673828125}, {"start": 2850.64, "end": 2850.94, "word": " calculate", "probability": 0.0775146484375}, {"start": 2850.94, "end": 2851.22, "word": " this,", "probability": 0.2578125}, {"start": 2851.38, "end": 2851.74, "word": " and", "probability": 0.455322265625}, {"start": 2851.74, "end": 2852.02, "word": " this,", "probability": 0.80908203125}, {"start": 2852.2, "end": 2852.34, "word": " and", "probability": 0.88525390625}, {"start": 2852.34, "end": 2852.68, "word": " this,", "probability": 0.9345703125}, {"start": 2852.76, "end": 2853.04, "word": " and", "probability": 0.88623046875}, {"start": 2853.04, "end": 2853.36, "word": " this,", "probability": 0.93017578125}, {"start": 2853.42, "end": 2853.58, "word": " and", "probability": 0.9130859375}, {"start": 2853.58, "end": 2853.88, "word": " this,", "probability": 0.94140625}, {"start": 2853.94, "end": 2853.98, "word": " and", "probability": 0.86474609375}, {"start": 2853.98, "end": 2854.3, "word": " this,", "probability": 0.77783203125}, {"start": 2854.56, "end": 2854.74, "word": " and", "probability": 0.86865234375}, {"start": 2854.74, "end": 2854.74, "word": " this,", "probability": 0.82177734375}, {"start": 2854.74, "end": 2855.02, "word": " and", "probability": 0.89404296875}, {"start": 2855.02, "end": 2855.22, "word": " this,", "probability": 0.91162109375}, {"start": 2855.22, "end": 2856.36, "word": " and", "probability": 0.9150390625}, {"start": 2856.36, "end": 2856.46, "word": " this,", "probability": 0.9404296875}, {"start": 2858.34, "end": 2858.34, "word": " and", "probability": 0.92236328125}, {"start": 2858.34, "end": 2858.34, "word": " this,", "probability": 0.94677734375}, {"start": 2858.34, "end": 2858.42, "word": " and", "probability": 0.9248046875}, {"start": 2858.42, "end": 2858.42, "word": " this,", "probability": 0.94921875}, {"start": 2858.42, "end": 2858.44, "word": " and", "probability": 0.92529296875}, {"start": 2858.44, "end": 2858.44, "word": " this,", "probability": 0.9501953125}, {"start": 2858.44, "end": 2858.44, "word": " and", "probability": 0.9228515625}, {"start": 2858.44, "end": 2858.44, "word": " this,", "probability": 0.95068359375}, {"start": 2858.44, "end": 2858.44, "word": " and", "probability": 0.9208984375}, {"start": 2858.44, "end": 2858.44, "word": " this,", "probability": 0.951171875}, {"start": 2858.44, "end": 2858.44, "word": " and", "probability": 0.91943359375}, {"start": 2858.44, "end": 2858.44, "word": " this,", "probability": 0.951171875}, {"start": 2858.44, "end": 2858.44, "word": " and", "probability": 0.919921875}, {"start": 2858.44, "end": 2858.44, "word": " this,", "probability": 0.95068359375}, {"start": 2858.44, "end": 2858.46, "word": " and", "probability": 0.92138671875}, {"start": 2858.46, "end": 2858.7, "word": " this,", "probability": 0.9521484375}, {"start": 2858.7, "end": 2858.82, "word": " and", "probability": 0.92431640625}, {"start": 2858.82, "end": 2858.96, "word": " this,", "probability": 0.95263671875}, {"start": 2859.02, "end": 2859.06, "word": " and", "probability": 0.92578125}, {"start": 2859.06, "end": 2859.08, "word": " this,", "probability": 0.95263671875}, {"start": 2859.08, "end": 2859.08, "word": " and", "probability": 0.9267578125}, {"start": 2859.08, "end": 2859.26, "word": " this,", "probability": 0.953125}, {"start": 2859.26, "end": 2859.26, "word": " and", "probability": 0.92822265625}, {"start": 2859.26, "end": 2859.28, "word": " this,", "probability": 0.953125}, {"start": 2859.34, "end": 2859.34, "word": " and", "probability": 0.92919921875}, {"start": 2859.34, "end": 2859.34, "word": " this,", "probability": 0.953125}, {"start": 2860.34, "end": 2860.34, "word": " and", "probability": 0.93115234375}, {"start": 2860.34, "end": 2860.34, "word": " this,", "probability": 0.953125}, {"start": 2860.34, "end": 2860.34, "word": " and", "probability": 0.93212890625}, {"start": 2860.34, "end": 2860.34, "word": " this,", "probability": 0.95361328125}, {"start": 2860.5, "end": 2861.02, "word": " and", "probability": 0.93212890625}, {"start": 2861.02, "end": 2861.02, "word": " this,", "probability": 0.953125}, {"start": 2861.02, "end": 2861.02, "word": " and", "probability": 0.93359375}, {"start": 2861.02, "end": 2861.02, "word": " this,", "probability": 0.95361328125}, {"start": 2861.02, "end": 2861.04, "word": " and", "probability": 0.93408203125}, {"start": 2861.04, "end": 2861.04, "word": " this,", "probability": 0.95361328125}, {"start": 2861.04, "end": 2861.04, "word": " and", "probability": 0.93359375}, {"start": 2861.04, "end": 2861.04, "word": " this,", "probability": 0.95361328125}, {"start": 2861.04, "end": 2861.04, "word": " and", "probability": 0.93408203125}, {"start": 2861.04, "end": 2861.04, "word": " this,", "probability": 0.95458984375}, {"start": 2861.04, "end": 2861.04, "word": " and", "probability": 0.93408203125}, {"start": 2861.04, "end": 2861.04, "word": " this,", "probability": 0.95361328125}, {"start": 2861.04, "end": 2861.04, "word": " and", "probability": 0.93505859375}, {"start": 2861.04, "end": 2861.04, "word": " this,", "probability": 0.95361328125}, {"start": 2861.04, "end": 2861.04, "word": " and", "probability": 0.935546875}, {"start": 2861.04, "end": 2861.04, "word": " this,", "probability": 0.95361328125}, {"start": 2861.04, "end": 2861.14, "word": " and", "probability": 0.93603515625}, {"start": 2861.14, "end": 2861.14, "word": " this,", "probability": 0.95361328125}, {"start": 2861.14, "end": 2861.3, "word": " and", "probability": 0.9365234375}, {"start": 2861.3, "end": 2861.3, "word": " this,", "probability": 0.95361328125}, {"start": 2861.3, "end": 2861.36, "word": " and", "probability": 0.9365234375}, {"start": 2861.36, "end": 2861.36, "word": " this,", "probability": 0.953125}, {"start": 2861.4, "end": 2861.4, "word": " and", "probability": 0.9384765625}, {"start": 2861.4, "end": 2861.4, "word": " this,", "probability": 0.95166015625}, {"start": 2861.54, "end": 2861.54, "word": " and", "probability": 0.93896484375}, {"start": 2861.54, "end": 2861.54, "word": " this,", "probability": 0.95263671875}, {"start": 2861.6, "end": 2861.6, "word": " and", "probability": 0.9375}, {"start": 2861.6, "end": 2861.6, "word": " this,", "probability": 0.9521484375}, {"start": 2861.72, "end": 2861.9, "word": " and", "probability": 0.9375}, {"start": 2861.9, "end": 2861.96, "word": " this,", "probability": 0.95263671875}, {"start": 2861.96, "end": 2861.96, "word": " and", "probability": 0.9384765625}, {"start": 2861.96, "end": 2861.98, "word": " this,", "probability": 0.95166015625}, {"start": 2861.98, "end": 2861.98, "word": " and", "probability": 0.93994140625}, {"start": 2861.98, "end": 2861.98, "word": " this,", "probability": 0.9521484375}, {"start": 2861.98, "end": 2861.98, "word": " and", "probability": 0.93994140625}, {"start": 2861.98, "end": 2861.98, "word": " this,", "probability": 0.9521484375}, {"start": 2861.98, "end": 2861.98, "word": " and", "probability": 0.93896484375}, {"start": 2861.98, "end": 2861.98, "word": " this,", "probability": 0.953125}, {"start": 2861.98, "end": 2861.98, "word": " and", "probability": 0.93994140625}, {"start": 2861.98, "end": 2861.98, "word": " this,", "probability": 0.95263671875}, {"start": 2861.98, "end": 2861.98, "word": " and", "probability": 0.93994140625}, {"start": 2861.98, "end": 2861.98, "word": " this,", "probability": 0.95263671875}, {"start": 2861.98, "end": 2861.98, "word": " and", "probability": 0.9404296875}, {"start": 2861.98, "end": 2861.98, "word": " this,", "probability": 0.95361328125}, {"start": 2861.98, "end": 2861.98, "word": " and", "probability": 0.939453125}, {"start": 2861.98, "end": 2861.98, "word": " this,", "probability": 0.95361328125}, {"start": 2861.98, "end": 2861.98, "word": " and", "probability": 0.94091796875}, {"start": 2861.98, "end": 2861.98, "word": " this,", "probability": 0.9541015625}, {"start": 2861.98, "end": 2861.98, "word": " and", "probability": 0.93994140625}, {"start": 2861.98, "end": 2862.04, "word": " this,", "probability": 0.9541015625}, {"start": 2862.04, "end": 2862.04, "word": " and", "probability": 0.9404296875}, {"start": 2862.04, "end": 2862.04, "word": " this,", "probability": 0.95458984375}, {"start": 2862.04, "end": 2862.04, "word": " and", "probability": 0.9404296875}, {"start": 2862.04, "end": 2862.04, "word": " this,", "probability": 0.955078125}, {"start": 2862.04, "end": 2862.04, "word": " and", "probability": 0.9404296875}, {"start": 2862.04, "end": 2862.04, "word": " this,", "probability": 0.95361328125}, {"start": 2862.04, "end": 2862.04, "word": " and", "probability": 0.9404296875}, {"start": 2862.04, "end": 2862.32, "word": " this,", "probability": 0.955078125}, {"start": 2862.6, "end": 2863.14, "word": " and", "probability": 0.939453125}, {"start": 2863.14, "end": 2863.14, "word": " this,", "probability": 0.955078125}, {"start": 2863.48, "end": 2863.64, "word": " and", "probability": 0.94091796875}, {"start": 2863.64, "end": 2863.64, "word": " this,", "probability": 0.95556640625}, {"start": 2863.96, "end": 2863.96, "word": " and", "probability": 0.94091796875}, {"start": 2863.96, "end": 2865.56, "word": " this,", "probability": 0.95556640625}, {"start": 2867.24, "end": 2867.7, "word": " and", "probability": 0.94140625}, {"start": 2867.7, "end": 2867.7, "word": " this,", "probability": 0.9560546875}, {"start": 2867.7, "end": 2867.7, "word": " and", "probability": 0.94140625}, {"start": 2867.7, "end": 2867.7, "word": " this,", "probability": 0.9560546875}, {"start": 2867.7, "end": 2867.7, "word": " and", "probability": 0.94140625}, {"start": 2867.7, "end": 2867.7, "word": " this,", "probability": 0.9560546875}, {"start": 2867.7, "end": 2867.88, "word": " and", "probability": 0.94140625}, {"start": 2867.88, "end": 2867.88, "word": " this,", "probability": 0.9560546875}, {"start": 2867.88, "end": 2867.92, "word": " and", "probability": 0.939453125}, {"start": 2867.92, "end": 2867.92, "word": " this,", "probability": 0.95654296875}, {"start": 2867.92, "end": 2867.92, "word": " and", "probability": 0.94140625}, {"start": 2867.92, "end": 2867.92, "word": " this,", "probability": 0.95654296875}, {"start": 2867.92, "end": 2867.92, "word": " and", "probability": 0.94140625}, {"start": 2867.92, "end": 2867.92, "word": " this,", "probability": 0.95751953125}, {"start": 2867.92, "end": 2867.92, "word": " and", "probability": 0.94091796875}, {"start": 2867.92, "end": 2867.92, "word": " this,", "probability": 0.9580078125}, {"start": 2867.92, "end": 2867.92, "word": " and", "probability": 0.94091796875}, {"start": 2867.92, "end": 2867.92, "word": " this,", "probability": 0.9580078125}, {"start": 2867.92, "end": 2868.22, "word": " and", "probability": 0.94091796875}, {"start": 2868.22, "end": 2868.22, "word": " this,", "probability": 0.95703125}, {"start": 2868.46, "end": 2868.46, "word": " and", "probability": 0.94091796875}, {"start": 2868.46, "end": 2868.46, "word": " this,", "probability": 0.9580078125}, {"start": 2868.46, "end": 2868.46, "word": " and", "probability": 0.94091796875}, {"start": 2868.46, "end": 2868.46, "word": " this,", "probability": 0.9580078125}, {"start": 2868.48, "end": 2868.48, "word": " and", "probability": 0.9404296875}, {"start": 2868.48, "end": 2868.48, "word": " this,", "probability": 0.9580078125}, {"start": 2868.48, "end": 2868.48, "word": " and", "probability": 0.9404296875}, {"start": 2868.48, "end": 2868.48, "word": " this,", "probability": 0.95849609375}, {"start": 2868.48, "end": 2868.48, "word": " and", "probability": 0.9404296875}, {"start": 2868.48, "end": 2868.48, "word": " this,", "probability": 0.95849609375}, {"start": 2868.48, "end": 2868.48, "word": " and", "probability": 0.93994140625}, {"start": 2868.48, "end": 2868.48, "word": " this,", "probability": 0.95849609375}, {"start": 2868.82, "end": 2869.04, "word": " and", "probability": 0.93994140625}, {"start": 2869.04, "end": 2869.16, "word": " this,", "probability": 0.95849609375}, {"start": 2870.36, "end": 2873.72, "word": " and", "probability": 0.93994140625}, {"start": 2873.72, "end": 2874.36, "word": " this", "probability": 0.9599609375}], "temperature": 1.0}, {"id": 115, "seek": 290133, "start": 2876.05, "end": 2901.33, "text": " Dependency Injection is better, I will give examples of why it is better, because as I said, any one of these that you extend in front of you gets bored, but at the same time, the code you follow is harder. That is why they have something called Dependency Injection Frameworks. What is Dependency Injection Framework? I go to the library and say, I have a tree like this.", "tokens": [4056, 521, 3020, 682, 1020, 313, 307, 1101, 11, 286, 486, 976, 5110, 295, 983, 309, 307, 1101, 11, 570, 382, 286, 848, 11, 604, 472, 295, 613, 300, 291, 10101, 294, 1868, 295, 291, 2170, 13521, 11, 457, 412, 264, 912, 565, 11, 264, 3089, 291, 1524, 307, 6081, 13, 663, 307, 983, 436, 362, 746, 1219, 4056, 521, 3020, 682, 1020, 313, 31628, 18357, 13, 708, 307, 4056, 521, 3020, 682, 1020, 313, 31628, 1902, 30, 286, 352, 281, 264, 6405, 293, 584, 11, 286, 362, 257, 4230, 411, 341, 13], "avg_logprob": -0.5492021346345861, "compression_ratio": 1.7031963470319635, "no_speech_prob": 0.0, "words": [{"start": 2876.05, "end": 2876.59, "word": " Dependency", "probability": 0.6593119303385416}, {"start": 2876.59, "end": 2877.13, "word": " Injection", "probability": 0.743408203125}, {"start": 2877.13, "end": 2877.57, "word": " is", "probability": 0.59228515625}, {"start": 2877.57, "end": 2878.25, "word": " better,", "probability": 0.6962890625}, {"start": 2878.81, "end": 2879.23, "word": " I", "probability": 0.234375}, {"start": 2879.23, "end": 2879.75, "word": " will", "probability": 0.6142578125}, {"start": 2879.75, "end": 2879.95, "word": " give", "probability": 0.765625}, {"start": 2879.95, "end": 2880.25, "word": " examples", "probability": 0.440185546875}, {"start": 2880.25, "end": 2880.37, "word": " of", "probability": 0.308837890625}, {"start": 2880.37, "end": 2880.49, "word": " why", "probability": 0.6484375}, {"start": 2880.49, "end": 2880.61, "word": " it", "probability": 0.61376953125}, {"start": 2880.61, "end": 2880.61, "word": " is", "probability": 0.82080078125}, {"start": 2880.61, "end": 2881.09, "word": " better,", "probability": 0.8427734375}, {"start": 2881.63, "end": 2882.15, "word": " because", "probability": 0.53173828125}, {"start": 2882.15, "end": 2882.25, "word": " as", "probability": 0.3642578125}, {"start": 2882.25, "end": 2882.37, "word": " I", "probability": 0.4921875}, {"start": 2882.37, "end": 2882.53, "word": " said,", "probability": 0.62939453125}, {"start": 2882.61, "end": 2882.75, "word": " any", "probability": 0.33935546875}, {"start": 2882.75, "end": 2882.97, "word": " one", "probability": 0.376953125}, {"start": 2882.97, "end": 2883.05, "word": " of", "probability": 0.912109375}, {"start": 2883.05, "end": 2883.21, "word": " these", "probability": 0.60595703125}, {"start": 2883.21, "end": 2883.29, "word": " that", "probability": 0.11016845703125}, {"start": 2883.29, "end": 2883.37, "word": " you", "probability": 0.2301025390625}, {"start": 2883.37, "end": 2883.87, "word": " extend", "probability": 0.26611328125}, {"start": 2883.87, "end": 2884.17, "word": " in", "probability": 0.1795654296875}, {"start": 2884.17, "end": 2884.17, "word": " front", "probability": 0.9091796875}, {"start": 2884.17, "end": 2884.25, "word": " of", "probability": 0.958984375}, {"start": 2884.25, "end": 2884.43, "word": " you", "probability": 0.9501953125}, {"start": 2884.43, "end": 2885.37, "word": " gets", "probability": 0.19140625}, {"start": 2885.37, "end": 2885.59, "word": " bored,", "probability": 0.46044921875}, {"start": 2886.11, "end": 2886.41, "word": " but", "probability": 0.8427734375}, {"start": 2886.41, "end": 2886.57, "word": " at", "probability": 0.90966796875}, {"start": 2886.57, "end": 2886.75, "word": " the", "probability": 0.92626953125}, {"start": 2886.75, "end": 2886.77, "word": " same", "probability": 0.9052734375}, {"start": 2886.77, "end": 2887.17, "word": " time,", "probability": 0.89208984375}, {"start": 2887.81, "end": 2887.89, "word": " the", "probability": 0.630859375}, {"start": 2887.89, "end": 2888.19, "word": " code", "probability": 0.87890625}, {"start": 2888.19, "end": 2888.31, "word": " you", "probability": 0.278076171875}, {"start": 2888.31, "end": 2888.65, "word": " follow", "probability": 0.66796875}, {"start": 2888.65, "end": 2889.33, "word": " is", "probability": 0.44775390625}, {"start": 2889.33, "end": 2889.65, "word": " harder.", "probability": 0.59375}, {"start": 2890.19, "end": 2890.51, "word": " That", "probability": 0.450927734375}, {"start": 2890.51, "end": 2890.51, "word": " is", "probability": 0.52197265625}, {"start": 2890.51, "end": 2890.85, "word": " why", "probability": 0.921875}, {"start": 2890.85, "end": 2891.15, "word": " they", "probability": 0.75244140625}, {"start": 2891.15, "end": 2891.35, "word": " have", "probability": 0.13525390625}, {"start": 2891.35, "end": 2891.63, "word": " something", "probability": 0.7275390625}, {"start": 2891.63, "end": 2892.01, "word": " called", "probability": 0.5537109375}, {"start": 2892.01, "end": 2892.83, "word": " Dependency", "probability": 0.7882486979166666}, {"start": 2892.83, "end": 2893.49, "word": " Injection", "probability": 0.98291015625}, {"start": 2893.49, "end": 2894.59, "word": " Frameworks.", "probability": 0.728759765625}, {"start": 2895.21, "end": 2895.43, "word": " What", "probability": 0.7880859375}, {"start": 2895.43, "end": 2895.67, "word": " is", "probability": 0.73291015625}, {"start": 2895.67, "end": 2896.53, "word": " Dependency", "probability": 0.8844401041666666}, {"start": 2896.53, "end": 2897.11, "word": " Injection", "probability": 0.98291015625}, {"start": 2897.11, "end": 2897.59, "word": " Framework?", "probability": 0.7958984375}, {"start": 2897.65, "end": 2897.87, "word": " I", "probability": 0.3134765625}, {"start": 2897.87, "end": 2898.03, "word": " go", "probability": 0.86376953125}, {"start": 2898.03, "end": 2898.19, "word": " to", "probability": 0.9619140625}, {"start": 2898.19, "end": 2898.29, "word": " the", "probability": 0.68505859375}, {"start": 2898.29, "end": 2898.65, "word": " library", "probability": 0.81884765625}, {"start": 2898.65, "end": 2899.57, "word": " and", "probability": 0.60107421875}, {"start": 2899.57, "end": 2899.77, "word": " say,", "probability": 0.52783203125}, {"start": 2899.95, "end": 2900.09, "word": " I", "probability": 0.7900390625}, {"start": 2900.09, "end": 2900.35, "word": " have", "probability": 0.9443359375}, {"start": 2900.35, "end": 2900.51, "word": " a", "probability": 0.77783203125}, {"start": 2900.51, "end": 2900.65, "word": " tree", "probability": 0.79150390625}, {"start": 2900.65, "end": 2900.83, "word": " like", "probability": 0.6015625}, {"start": 2900.83, "end": 2901.33, "word": " this.", "probability": 0.86279296875}], "temperature": 1.0}, {"id": 116, "seek": 293012, "start": 2902.98, "end": 2930.12, "text": " If I have A that depends on B and B that depends on C and C that depends on D and E and so on I learn the tree and then I just pull it to the right and what does the branch do? it pulls the tree to the left and it becomes a head of an advanced injection framework that is used a lot in projects whether it is mobile or desktop or web and this is what will lead to the next lecture inshallah alright guys, thank you", "tokens": [759, 286, 362, 316, 300, 5946, 322, 363, 293, 363, 300, 5946, 322, 383, 293, 383, 300, 5946, 322, 413, 293, 462, 293, 370, 322, 286, 1466, 264, 4230, 293, 550, 286, 445, 2235, 309, 281, 264, 558, 293, 437, 775, 264, 9819, 360, 30, 309, 16982, 264, 4230, 281, 264, 1411, 293, 309, 3643, 257, 1378, 295, 364, 7339, 22873, 8388, 300, 307, 1143, 257, 688, 294, 4455, 1968, 309, 307, 6013, 420, 14502, 420, 3670, 293, 341, 307, 437, 486, 1477, 281, 264, 958, 7991, 1028, 71, 13492, 5845, 1074, 11, 1309, 291], "avg_logprob": -0.6656901010622581, "compression_ratio": 1.7735042735042734, "no_speech_prob": 3.516674041748047e-06, "words": [{"start": 2902.98, "end": 2903.38, "word": " If", "probability": 0.1260986328125}, {"start": 2903.38, "end": 2903.64, "word": " I", "probability": 0.64697265625}, {"start": 2903.64, "end": 2903.64, "word": " have", "probability": 0.796875}, {"start": 2903.64, "end": 2903.84, "word": " A", "probability": 0.73583984375}, {"start": 2903.84, "end": 2903.94, "word": " that", "probability": 0.25439453125}, {"start": 2903.94, "end": 2904.18, "word": " depends", "probability": 0.55078125}, {"start": 2904.18, "end": 2904.32, "word": " on", "probability": 0.9248046875}, {"start": 2904.32, "end": 2904.5, "word": " B", "probability": 0.693359375}, {"start": 2904.5, "end": 2904.58, "word": " and", "probability": 0.53515625}, {"start": 2904.58, "end": 2904.68, "word": " B", "probability": 0.56494140625}, {"start": 2904.68, "end": 2904.78, "word": " that", "probability": 0.697265625}, {"start": 2904.78, "end": 2904.92, "word": " depends", "probability": 0.87353515625}, {"start": 2904.92, "end": 2905.12, "word": " on", "probability": 0.943359375}, {"start": 2905.12, "end": 2905.3, "word": " C", "probability": 0.990234375}, {"start": 2905.3, "end": 2905.4, "word": " and", "probability": 0.7177734375}, {"start": 2905.4, "end": 2905.5, "word": " C", "probability": 0.9267578125}, {"start": 2905.5, "end": 2905.62, "word": " that", "probability": 0.53564453125}, {"start": 2905.62, "end": 2905.76, "word": " depends", "probability": 0.86865234375}, {"start": 2905.76, "end": 2905.9, "word": " on", "probability": 0.9189453125}, {"start": 2905.9, "end": 2906.08, "word": " D", "probability": 0.9931640625}, {"start": 2906.08, "end": 2906.22, "word": " and", "probability": 0.54638671875}, {"start": 2906.22, "end": 2906.38, "word": " E", "probability": 0.8544921875}, {"start": 2906.38, "end": 2906.48, "word": " and", "probability": 0.6630859375}, {"start": 2906.48, "end": 2907.16, "word": " so", "probability": 0.65576171875}, {"start": 2907.16, "end": 2907.3, "word": " on", "probability": 0.8056640625}, {"start": 2907.3, "end": 2908.0, "word": " I", "probability": 0.476318359375}, {"start": 2908.0, "end": 2908.26, "word": " learn", "probability": 0.3193359375}, {"start": 2908.26, "end": 2908.42, "word": " the", "probability": 0.615234375}, {"start": 2908.42, "end": 2908.6, "word": " tree", "probability": 0.2529296875}, {"start": 2908.6, "end": 2909.6, "word": " and", "probability": 0.736328125}, {"start": 2909.6, "end": 2909.82, "word": " then", "probability": 0.62255859375}, {"start": 2909.82, "end": 2909.9, "word": " I", "probability": 0.60107421875}, {"start": 2909.9, "end": 2910.22, "word": " just", "probability": 0.24267578125}, {"start": 2910.22, "end": 2910.48, "word": " pull", "probability": 0.1624755859375}, {"start": 2910.48, "end": 2910.64, "word": " it", "probability": 0.318115234375}, {"start": 2910.64, "end": 2910.7, "word": " to", "probability": 0.52490234375}, {"start": 2910.7, "end": 2910.78, "word": " the", "probability": 0.53369140625}, {"start": 2910.78, "end": 2910.94, "word": " right", "probability": 0.73046875}, {"start": 2910.94, "end": 2912.36, "word": " and", "probability": 0.291015625}, {"start": 2912.36, "end": 2912.36, "word": " what", "probability": 0.4853515625}, {"start": 2912.36, "end": 2912.66, "word": " does", "probability": 0.71923828125}, {"start": 2912.66, "end": 2913.1, "word": " the", "probability": 0.43701171875}, {"start": 2913.1, "end": 2913.1, "word": " branch", "probability": 0.161376953125}, {"start": 2913.1, "end": 2913.58, "word": " do?", "probability": 0.90771484375}, {"start": 2914.58, "end": 2914.78, "word": " it", "probability": 0.177734375}, {"start": 2914.78, "end": 2914.9, "word": " pulls", "probability": 0.658203125}, {"start": 2914.9, "end": 2915.04, "word": " the", "probability": 0.4072265625}, {"start": 2915.04, "end": 2915.22, "word": " tree", "probability": 0.55126953125}, {"start": 2915.22, "end": 2915.3, "word": " to", "probability": 0.265380859375}, {"start": 2915.3, "end": 2915.46, "word": " the", "probability": 0.58642578125}, {"start": 2915.46, "end": 2915.62, "word": " left", "probability": 0.59716796875}, {"start": 2915.62, "end": 2917.82, "word": " and", "probability": 0.59912109375}, {"start": 2917.82, "end": 2918.18, "word": " it", "probability": 0.246826171875}, {"start": 2918.18, "end": 2918.34, "word": " becomes", "probability": 0.162841796875}, {"start": 2918.34, "end": 2918.5, "word": " a", "probability": 0.5517578125}, {"start": 2918.5, "end": 2918.58, "word": " head", "probability": 0.29541015625}, {"start": 2918.58, "end": 2918.68, "word": " of", "probability": 0.57373046875}, {"start": 2918.68, "end": 2918.8, "word": " an", "probability": 0.2308349609375}, {"start": 2918.8, "end": 2919.1, "word": " advanced", "probability": 0.3115234375}, {"start": 2919.1, "end": 2919.48, "word": " injection", "probability": 0.86474609375}, {"start": 2919.48, "end": 2920.0, "word": " framework", "probability": 0.89453125}, {"start": 2920.0, "end": 2920.18, "word": " that", "probability": 0.31494140625}, {"start": 2920.18, "end": 2920.18, "word": " is", "probability": 0.85791015625}, {"start": 2920.18, "end": 2920.44, "word": " used", "probability": 0.572265625}, {"start": 2920.44, "end": 2921.08, "word": " a", "probability": 0.572265625}, {"start": 2921.08, "end": 2921.48, "word": " lot", "probability": 0.95263671875}, {"start": 2921.48, "end": 2921.78, "word": " in", "probability": 0.86962890625}, {"start": 2921.78, "end": 2922.24, "word": " projects", "probability": 0.669921875}, {"start": 2922.24, "end": 2922.54, "word": " whether", "probability": 0.32470703125}, {"start": 2922.54, "end": 2922.68, "word": " it", "probability": 0.25927734375}, {"start": 2922.68, "end": 2922.68, "word": " is", "probability": 0.73828125}, {"start": 2922.68, "end": 2922.96, "word": " mobile", "probability": 0.60546875}, {"start": 2922.96, "end": 2923.38, "word": " or", "probability": 0.4130859375}, {"start": 2923.38, "end": 2923.72, "word": " desktop", "probability": 0.78076171875}, {"start": 2923.72, "end": 2924.04, "word": " or", "probability": 0.91552734375}, {"start": 2924.04, "end": 2924.34, "word": " web", "probability": 0.86669921875}, {"start": 2924.34, "end": 2925.32, "word": " and", "probability": 0.466552734375}, {"start": 2925.32, "end": 2925.52, "word": " this", "probability": 0.77685546875}, {"start": 2925.52, "end": 2925.62, "word": " is", "probability": 0.71435546875}, {"start": 2925.62, "end": 2925.62, "word": " what", "probability": 0.7451171875}, {"start": 2925.62, "end": 2925.76, "word": " will", "probability": 0.38232421875}, {"start": 2925.76, "end": 2925.94, "word": " lead", "probability": 0.1458740234375}, {"start": 2925.94, "end": 2926.36, "word": " to", "probability": 0.61328125}, {"start": 2926.36, "end": 2927.2, "word": " the", "probability": 0.744140625}, {"start": 2927.2, "end": 2927.24, "word": " next", "probability": 0.8984375}, {"start": 2927.24, "end": 2927.58, "word": " lecture", "probability": 0.89404296875}, {"start": 2927.58, "end": 2928.2, "word": " inshallah", "probability": 0.48114013671875}, {"start": 2928.2, "end": 2928.76, "word": " alright", "probability": 0.125732421875}, {"start": 2928.76, "end": 2929.18, "word": " guys,", "probability": 0.7041015625}, {"start": 2929.62, "end": 2930.06, "word": " thank", "probability": 0.2349853515625}, {"start": 2930.06, "end": 2930.12, "word": " you", "probability": 0.95458984375}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2930.89225, "duration_after_vad": 2786.0574999999876} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/bWXrVQTqtCw_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/bWXrVQTqtCw_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..cd56530ad0c4a653227b64e111d12491950779a0 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/bWXrVQTqtCw_raw.srt @@ -0,0 +1,3348 @@ +1 +00:00:07,450 --> 00:00:12,050 +In the last lecture, we introduced a new design + +2 +00:00:12,050 --> 00:00:15,790 +pattern which is the singleton design pattern And + +3 +00:00:15,790 --> 00:00:21,410 +we said that sometimes I have to create one object + +4 +00:00:21,410 --> 00:00:25,230 +from the class and use it everywhere in the + +5 +00:00:25,230 --> 00:00:28,620 +application Now we are used to say that when you + +6 +00:00:28,620 --> 00:00:30,500 +have a class, you create the object by using the + +7 +00:00:30,500 --> 00:00:34,840 +UI Right or not? But sometimes it is negative that + +8 +00:00:34,840 --> 00:00:37,180 +if you create this object in different places in + +9 +00:00:37,180 --> 00:00:40,060 +the application For example, I gave an example in + +10 +00:00:40,060 --> 00:00:41,360 +a previous lecture that I want to make a + +11 +00:00:41,360 --> 00:00:43,680 +connection to the database Of course, if you have + +12 +00:00:43,680 --> 00:00:45,340 +multiple screens in the application and from each + +13 +00:00:45,340 --> 00:00:48,600 +screen You will need to get information from the + +14 +00:00:48,600 --> 00:00:51,080 +database or to insert information in the database + +15 +00:00:51,080 --> 00:00:53,160 +So you will need to make a connection to the + +16 +00:00:53,160 --> 00:00:57,230 +database Because of this connection in every A + +17 +00:00:57,230 --> 00:01:00,410 +screen that you create will be negative because + +18 +00:01:00,410 --> 00:01:04,790 +this connection takes from resources, memory and + +19 +00:01:04,790 --> 00:01:07,930 +processing time. So, it is better to create one + +20 +00:01:07,930 --> 00:01:12,690 +object and use it everywhere in the application.I + +21 +00:01:12,690 --> 00:01:15,810 +also connect to API and create one object and use + +22 +00:01:15,810 --> 00:01:20,090 +it everywhere I connect to this API and we will + +23 +00:01:20,090 --> 00:01:23,390 +see another example when I need to create one + +24 +00:01:23,390 --> 00:01:26,270 +object from a class and use it everywhere in the + +25 +00:01:26,270 --> 00:01:29,990 +application.Singleton Pattern in short helps me to + +26 +00:01:29,990 --> 00:01:34,430 +create if I have a class I can create an object + +27 +00:01:34,430 --> 00:01:38,270 +from it and use it anywhere in my application Now, + +28 +00:01:38,610 --> 00:01:41,870 +how can I create an object and use it anywhere + +29 +00:01:41,870 --> 00:01:47,390 +else? For example, I have a class I go inside this + +30 +00:01:47,390 --> 00:01:51,150 +class and create an object of type a which is + +31 +00:01:51,150 --> 00:01:56,730 +equal to new a Now, I move to another class, this + +32 +00:01:56,730 --> 00:01:59,810 +is a screen for example, screen1 and this is + +33 +00:01:59,810 --> 00:02:04,600 +screen2How do I use this object on the other + +34 +00:02:04,600 --> 00:02:07,120 +screen? Because if I introduce it again and say + +35 +00:02:07,120 --> 00:02:11,500 +new, it will create another object. But how do I + +36 +00:02:11,500 --> 00:02:17,170 +use this same object?The other way to use this A + +37 +00:02:17,170 --> 00:02:21,010 +is when I move to another screen, I pass this + +38 +00:02:21,010 --> 00:02:25,190 +object named A to another screen as a parameter So + +39 +00:02:25,190 --> 00:02:28,290 +if this screen has a constructor named for example + +40 +00:02:28,290 --> 00:02:33,940 +screen2, I can pass it a parameter of type Awhich + +41 +00:02:33,940 --> 00:02:37,500 +is this object which I created here you can train + +42 +00:02:37,500 --> 00:02:40,140 +it as a parameter to another screen or you can + +43 +00:02:40,140 --> 00:02:44,300 +have a method called setA and train it with + +44 +00:02:44,300 --> 00:02:48,280 +objectA but + +45 +00:02:48,280 --> 00:02:51,540 +this will not solve the problem because the object + +46 +00:02:51,540 --> 00:02:54,500 +which you created you have to train it from class + +47 +00:02:54,500 --> 00:02:58,140 +to class to class this way you have coupling this + +48 +00:02:58,140 --> 00:03:01,400 +is a negative thing you linked them together like + +49 +00:03:01,400 --> 00:03:05,990 +thisOkay, before we go through the object, let's + +50 +00:03:05,990 --> 00:03:08,750 +see how we can achieve this thing. Create one + +51 +00:03:08,750 --> 00:03:12,010 +object and use it anywhere in the application. + +52 +00:03:12,550 --> 00:03:13,990 +Let's see the second example. + +53 +00:03:23,870 --> 00:03:25,010 +Now, if I suppose + +54 +00:03:30,700 --> 00:03:33,360 +I had a class whose name was for example phone + +55 +00:03:33,360 --> 00:03:37,840 +book which + +56 +00:03:37,840 --> 00:03:39,740 +is like a phone number. Do you know what is a + +57 +00:03:39,740 --> 00:03:42,820 +phone number? It is the number of phones and the + +58 +00:03:42,820 --> 00:03:44,940 +names of these people. For example, to give me the + +59 +00:03:44,940 --> 00:03:49,500 +name, it gives me the phone number.And the proof + +60 +00:03:49,500 --> 00:03:51,960 +of these phones takes from their memory because it + +61 +00:03:51,960 --> 00:03:56,860 +is huge, there are thousands of names and numbers + +62 +00:03:56,860 --> 00:04:00,660 +on their phones and phones, so it can be stored in + +63 +00:04:00,660 --> 00:04:04,140 +a database or a file and I make a note of it. So I + +64 +00:04:04,140 --> 00:04:05,980 +would like to have a class, a phone book that + +65 +00:04:05,980 --> 00:04:08,320 +contains this information so that I can read from + +66 +00:04:08,320 --> 00:04:11,000 +it For example, give me a name of a certain + +67 +00:04:11,000 --> 00:04:12,560 +person, give me his phone number. Give me, for + +68 +00:04:12,560 --> 00:04:16,680 +example, a state name that gives me the key to the + +69 +00:04:16,680 --> 00:04:20,680 +state economy in it, for example. Okay? So, how do + +70 +00:04:20,680 --> 00:04:22,740 +I store information in the phone book? I'm going + +71 +00:04:22,740 --> 00:04:25,620 +to create a data structure called Hash Map. + +72 +00:04:30,220 --> 00:04:31,880 +Okay? I'm going to name it, for example, phone + +73 +00:04:31,880 --> 00:04:32,320 +codes. + +74 +00:04:35,120 --> 00:04:37,080 +Do you know what Hash Map is, guys? Did you get + +75 +00:04:37,080 --> 00:04:40,810 +it? The hash map is a data structure, but I don't + +76 +00:04:40,810 --> 00:04:42,990 +store information in it, I store two information + +77 +00:04:42,990 --> 00:04:46,510 +next to each other, key and value, on the basis + +78 +00:04:46,510 --> 00:04:48,150 +that I want to put the key, for example, the name + +79 +00:04:48,150 --> 00:04:49,970 +of the person or the name of the country, and the + +80 +00:04:49,970 --> 00:04:53,230 +value, the phone number, because the hash map is + +81 +00:04:53,230 --> 00:04:55,970 +not yet created, I did not create it, okay? So I + +82 +00:04:55,970 --> 00:05:02,050 +go and create a constructor called phonebook, this + +83 +00:05:02,050 --> 00:05:04,570 +is the constructor, from inside the constructor, I + +84 +00:05:04,570 --> 00:05:12,170 +say phone codes is equal to Hash map Because I + +85 +00:05:12,170 --> 00:05:15,490 +want to fill the phone codes State by state, for + +86 +00:05:15,490 --> 00:05:22,290 +example, POT For example, tell him US The key of + +87 +00:05:22,290 --> 00:05:27,810 +the country to which you call 001 Phone codes POT + +88 +00:05:27,810 --> 00:05:30,910 +For example, PS + +89 +00:05:35,410 --> 00:05:43,350 +For example, the key is 00972 and so on. This is + +90 +00:05:43,350 --> 00:05:48,490 +expected to be repeated in many different + +91 +00:05:48,490 --> 00:05:54,150 +countries. Egypt, for example, UAE. + +92 +00:05:56,910 --> 00:06:02,590 +Anyway, different countries change the numbers + +93 +00:06:02,590 --> 00:06:04,310 +here. + +94 +00:06:09,800 --> 00:06:13,780 +Then I want to create a variable named public + +95 +00:06:13,780 --> 00:06:20,180 +string named getCountryCode and give it a string + +96 +00:06:20,180 --> 00:06:29,480 +countryName and return phoneCodes + +97 +00:06:29,480 --> 00:06:35,100 +.getCountryName + +98 +00:06:39,010 --> 00:06:42,170 +So this method is the one that I didn't reach, + +99 +00:06:42,390 --> 00:06:46,490 +right? This should be private, okay? Through this + +100 +00:06:46,490 --> 00:06:48,830 +data, I give it the state name, and I go to the + +101 +00:06:48,830 --> 00:06:51,770 +phone codes, and I give it the state name, and I + +102 +00:06:51,770 --> 00:06:54,130 +give it the key to return the value. If I don't + +103 +00:06:54,130 --> 00:06:56,910 +have the key, why should I return it? Because we + +104 +00:06:56,910 --> 00:06:58,930 +created this phone book, but we didn't use it, + +105 +00:06:58,990 --> 00:07:02,910 +right? We have to go and use it. We go to the test + +106 +00:07:02,910 --> 00:07:04,350 +main method. + +107 +00:07:07,800 --> 00:07:11,100 +Of course I have to create an object from the form + +108 +00:07:11,100 --> 00:07:20,920 +book P equals new form book Then I say P and + +109 +00:07:20,920 --> 00:07:27,480 +then P dot and I say get country code for example + +110 +00:07:27,480 --> 00:07:33,380 +I give it US and here system dot out dot print + +111 +00:07:36,300 --> 00:07:42,760 +USA or US, I put USA Ok, + +112 +00:07:42,920 --> 00:07:47,160 +it will run and return the country code Ok, now + +113 +00:07:47,160 --> 00:07:49,100 +the problem is not here, so far everything is fine + +114 +00:07:49,100 --> 00:07:54,340 +But better than the method went for example I want + +115 +00:07:54,340 --> 00:07:55,780 +to open another screen or I want to open another + +116 +00:07:55,780 --> 00:07:59,300 +class This is a new class, I named it for example + +117 +00:07:59,300 --> 00:08:00,020 +MainScreen + +118 +00:08:06,480 --> 00:08:12,780 +This is the public main + +119 +00:08:12,780 --> 00:08:17,920 +screen From my main, I told it to open the main + +120 +00:08:17,920 --> 00:08:29,420 +screen This is the main screen You + +121 +00:08:29,420 --> 00:08:30,840 +see that I am working inside the main and I + +122 +00:08:30,840 --> 00:08:34,060 +created an object inside the main Because in the + +123 +00:08:34,060 --> 00:08:36,380 +main screen, from inside the main screen, you + +124 +00:08:36,380 --> 00:08:40,980 +don't need the phone, the phone book. So how do I + +125 +00:08:40,980 --> 00:08:43,460 +get the phone book from here? You will have to + +126 +00:08:43,460 --> 00:08:46,000 +create a new object from it. You will say phone + +127 +00:08:46,000 --> 00:08:52,440 +book p equals new phone book. What does it mean to + +128 +00:08:52,440 --> 00:08:56,060 +create a new object? All the data it will start + +129 +00:08:56,060 --> 00:08:58,140 +loading from the beginning to the end. This is the + +130 +00:08:58,140 --> 00:08:59,420 +process of compilation that is present in the + +131 +00:08:59,420 --> 00:09:03,860 +constructor. It will repeat it again and the code + +132 +00:09:03,860 --> 00:09:05,240 +is expected to load more. It can load from the + +133 +00:09:05,240 --> 00:09:10,860 +database, from the file. Is it okay? Can I use the + +134 +00:09:10,860 --> 00:09:16,240 +phone book that I made from the main? As I said, + +135 +00:09:16,400 --> 00:09:17,820 +it is optional. You can use the main, practice + +136 +00:09:17,820 --> 00:09:22,170 +using the main.For the main screen, you can put in + +137 +00:09:22,170 --> 00:09:26,310 +the constructor this parameter, that this is a + +138 +00:09:26,310 --> 00:09:29,890 +phone book, like this. And you can say directly + +139 +00:09:29,890 --> 00:09:32,030 +that this is what happened, the phone book should + +140 +00:09:32,030 --> 00:09:34,670 +come to the main screen as what? As a parameter. + +141 +00:09:34,750 --> 00:09:37,610 +And you can say that it is getp.getcountrycode and + +142 +00:09:37,610 --> 00:09:42,510 +say ps for example. And you print it. Of course, + +143 +00:09:42,650 --> 00:09:44,630 +if I add a parameter here, where do I make a + +144 +00:09:44,630 --> 00:09:47,430 +mistake? In the main. In the main. In the main, I + +145 +00:09:47,430 --> 00:09:48,390 +will find that it is necessary. I will tell you + +146 +00:09:48,390 --> 00:09:49,690 +what it is. It needs a parameter. This is the + +147 +00:09:49,690 --> 00:09:52,770 +first time. But let's say that training this + +148 +00:09:52,770 --> 00:09:56,190 +object is not a big deal. I need it in ten places. + +149 +00:09:56,230 --> 00:09:58,750 +You can train from class to class like that. This + +150 +00:09:58,750 --> 00:10:01,730 +makes coupling and redundancy more. Okay? It means + +151 +00:10:01,730 --> 00:10:04,150 +that the main screen, instead of being an + +152 +00:10:04,150 --> 00:10:06,350 +independent class, has become dependent on whom? + +153 +00:10:06,930 --> 00:10:09,230 +On the phone book. So if I take this class and you + +154 +00:10:09,230 --> 00:10:10,510 +use it somewhere, I will tell you it is an error. + +155 +00:10:11,350 --> 00:10:11,550 +Okay? + +156 +00:10:14,450 --> 00:10:18,250 +Ok, the best solution is to apply the singleton + +157 +00:10:18,250 --> 00:10:23,130 +pattern, to make the phonebook create only one + +158 +00:10:23,130 --> 00:10:24,790 +object from it. How do we do it? Pay attention to + +159 +00:10:24,790 --> 00:10:27,350 +me, I'm applying the singleton pattern. The first + +160 +00:10:27,350 --> 00:10:32,870 +step is to go to the constructor and put private, + +161 +00:10:33,050 --> 00:10:36,410 +close the constructor. No one can say why I closed + +162 +00:10:36,410 --> 00:10:38,910 +the constructor, because no one can create an + +163 +00:10:38,910 --> 00:10:44,330 +object from it. Ok, now the phonebook and it makes + +164 +00:10:44,330 --> 00:10:55,370 +an instance in it private static phonebook named + +165 +00:10:55,370 --> 00:11:00,150 +instance and its value is null what is this now? + +166 +00:11:00,250 --> 00:11:04,810 +this is an object named instance not a phonebook, + +167 +00:11:04,890 --> 00:11:07,830 +it is the same class name okay? and what did this + +168 +00:11:07,830 --> 00:11:11,830 +do? select, until now its value is null okay + +169 +00:11:15,910 --> 00:11:19,250 +Now instead of constructor, I created a public + +170 +00:11:19,250 --> 00:11:28,570 +static called phonebook.getinstance + +171 +00:11:28,570 --> 00:11:32,490 +Now + +172 +00:11:32,490 --> 00:11:35,650 +the idea is that this instance, which we call + +173 +00:11:35,650 --> 00:11:39,470 +phonebook, is the only object that is created in + +174 +00:11:39,470 --> 00:11:43,210 +the whole application Until now it's value is none + +175 +00:11:43,210 --> 00:11:47,070 +Because this object exists as private, which means + +176 +00:11:47,070 --> 00:11:50,650 +that I can't deliver it from outside to this class + +177 +00:11:50,650 --> 00:11:53,390 +So how can I deliver it? You need to make a getter + +178 +00:11:53,390 --> 00:11:56,510 +method So I went and made a method called + +179 +00:11:56,510 --> 00:12:00,450 +getinstance What does it return? it returns the + +180 +00:12:00,450 --> 00:12:02,190 +phone book, it is clear that it returns the + +181 +00:12:02,190 --> 00:12:06,350 +instance what do I want to say here? I want to + +182 +00:12:06,350 --> 00:12:08,270 +say, look, no, not return, before return, I want + +183 +00:12:08,270 --> 00:12:11,270 +to say if instance, which is, I was null yet if + +184 +00:12:11,270 --> 00:12:17,910 +instance equals null, go to the instance and say + +185 +00:12:17,910 --> 00:12:26,710 +new phone book and then return instance, we are + +186 +00:12:26,710 --> 00:12:31,340 +done Look at me, Habit Dialogue got innocence, + +187 +00:12:31,680 --> 00:12:34,720 +what did I do to get it? Static. What does it mean + +188 +00:12:34,720 --> 00:12:37,840 +to be static? It means that you don't need to + +189 +00:12:37,840 --> 00:12:39,980 +create an object. Actually, I can't create an + +190 +00:12:39,980 --> 00:12:41,440 +object because I'm the constructor of it. Private. + +191 +00:12:42,480 --> 00:12:44,100 +Because I made it static because you asked me to + +192 +00:12:44,100 --> 00:12:46,820 +without creating an object. Ok, Habit Dialogue, + +193 +00:12:46,840 --> 00:12:50,140 +what is the first step you do? Listen, you check + +194 +00:12:50,140 --> 00:12:53,720 +the instance. If it's critical, you go and check + +195 +00:12:53,720 --> 00:12:54,960 +it and return it. + +196 +00:12:58,380 --> 00:13:01,960 +Ok, the first time you download an instance, get + +197 +00:13:01,960 --> 00:13:04,220 +instance, the first time you say the value of the + +198 +00:13:04,220 --> 00:13:06,100 +instance, it will create it. But if you download + +199 +00:13:06,100 --> 00:13:09,980 +it again, get instance, it will check if it is + +200 +00:13:09,980 --> 00:13:13,620 +null, not null, so it goes back to itself. So this + +201 +00:13:13,620 --> 00:13:17,900 +way, I promise that this instance will be created + +202 +00:13:17,900 --> 00:13:22,020 +from only one object. From the thing only. So is + +203 +00:13:22,020 --> 00:13:24,880 +it the value you say or not?When did I create it? + +204 +00:13:25,220 --> 00:13:28,560 +The first time I needed it. So the idea is that I + +205 +00:13:28,560 --> 00:13:31,600 +want this form book to allow the user to create + +206 +00:13:31,600 --> 00:13:35,880 +only one object and not more than one. The first + +207 +00:13:35,880 --> 00:13:39,000 +step I do is to close the constructor and put + +208 +00:13:39,000 --> 00:13:42,280 +private. The second step is to create the object + +209 +00:13:42,280 --> 00:13:46,160 +that I want to be unique, which is this one. I + +210 +00:13:46,160 --> 00:13:48,660 +created an object called form book static and I + +211 +00:13:48,660 --> 00:13:49,200 +made it private. + +212 +00:13:52,030 --> 00:13:54,210 +If you put it in public, it will not be asked + +213 +00:13:54,210 --> 00:13:58,250 +about it publicly. If you put it in an instance, + +214 +00:13:58,290 --> 00:14:03,230 +it will not be asked about it publicly. If you put + +215 +00:14:03,230 --> 00:14:04,870 +it in an instance, it will not be asked about it + +216 +00:14:04,870 --> 00:14:04,870 +publicly. If you put it in an instance, it will + +217 +00:14:04,870 --> 00:14:04,870 +not be asked about it publicly. If you put it in + +218 +00:14:04,870 --> 00:14:04,870 +an instance, it will not be asked about it + +219 +00:14:04,870 --> 00:14:04,870 +publicly. If you put it in an instance, it will + +220 +00:14:04,870 --> 00:14:04,870 +not be asked about it publicly. If you put it in + +221 +00:14:04,870 --> 00:14:04,870 +an instance, it will not be asked about it + +222 +00:14:04,870 --> 00:14:05,570 +publicly. If you put it in an instance, it will + +223 +00:14:05,570 --> 00:14:05,570 +not be asked about it publicly. If you put it in + +224 +00:14:05,570 --> 00:14:05,570 +an instance, it will not be asked about it + +225 +00:14:05,570 --> 00:14:05,570 +publicly. If you put it in an instance, it will + +226 +00:14:05,570 --> 00:14:06,430 +not be asked about it publicly. If you put it in + +227 +00:14:06,430 --> 00:14:06,490 +an instance, it will not be asked about it + +228 +00:14:06,490 --> 00:14:08,410 +publicly. If you put it in an instance, it will + +229 +00:14:08,410 --> 00:14:10,430 +not be asked about it publicly. If you put it in + +230 +00:14:10,430 --> 00:14:11,330 +an instance, it will not be asked about it + +231 +00:14:11,330 --> 00:14:13,850 +publicly. If you put it The whole idea is in this + +232 +00:14:13,850 --> 00:14:15,830 +diagram This diagram is the first time you will + +233 +00:14:15,830 --> 00:14:17,550 +find it If you find the instance null, it will be + +234 +00:14:17,550 --> 00:14:19,550 +the instance null, you will create it And you will + +235 +00:14:19,550 --> 00:14:21,950 +return it Second time, third time, fourth time, + +236 +00:14:21,950 --> 00:14:25,970 +you will return the same instance I create an + +237 +00:14:25,970 --> 00:14:30,390 +object 1 from the phone book Because we finished + +238 +00:14:30,390 --> 00:14:34,810 +the application, how to use it Go now to the null + +239 +00:14:34,810 --> 00:14:36,750 +method Because of course it will create an error, + +240 +00:14:36,890 --> 00:14:40,190 +why? Yes, it stopped with un-deconstruct What is + +241 +00:14:40,190 --> 00:14:42,210 +the alternative? Write phone book + +242 +00:14:47,720 --> 00:14:49,580 +.getinstance Okay, it will return me the form book + +243 +00:14:49,580 --> 00:14:54,420 +and then I copy it to p.getcountrycode So there is + +244 +00:14:54,420 --> 00:14:57,940 +no need to go through this gate, right? If I want + +245 +00:14:57,940 --> 00:15:00,640 +to edit this main screen, there is no need at all + +246 +00:15:00,640 --> 00:15:04,840 +to go through it Okay, this gate came here, + +247 +00:15:05,220 --> 00:15:10,140 +immediately I say formbook.getinstance, + +248 +00:15:10,200 --> 00:15:10,780 +I return it + +249 +00:15:14,080 --> 00:15:21,380 +phone, book, book, book, book, book, book, book, + +250 +00:15:21,380 --> 00:15:44,020 +book, book, book, + +251 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, book, book, book, + +252 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, book, book, book, + +253 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, book, book, book, + +254 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, book, book, book, + +255 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, book, book, book, + +256 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, book, book, book, + +257 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, book, book, book, + +258 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, book, book, book, + +259 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, book, book, book, + +260 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, book, book, book, + +261 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, book, book, book, + +262 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, book, book, book, + +263 +00:15:44,020 --> 00:15:44,020 +book, book, book, book, book, + +264 +00:15:47,430 --> 00:15:52,170 +Also, one of the things that can be included in + +265 +00:15:52,170 --> 00:15:55,850 +Singleton is something that we call in projects as + +266 +00:15:55,850 --> 00:15:59,840 +logging. What is the meaning of the word log?It's + +267 +00:15:59,840 --> 00:16:04,780 +not a login, it's a recording. In large databases, + +268 +00:16:05,320 --> 00:16:09,680 +especially those on the server-side, if there is + +269 +00:16:09,680 --> 00:16:13,800 +any error or warning, or for example, the user did + +270 +00:16:13,800 --> 00:16:15,560 +not register his or her login or went to the + +271 +00:16:15,560 --> 00:16:18,880 +database, all these operations are recorded in a + +272 +00:16:18,880 --> 00:16:23,230 +specific record. with the time it took, with the + +273 +00:16:23,230 --> 00:16:27,410 +code that made it work, with the user that made + +274 +00:16:27,410 --> 00:16:30,610 +it, so that if there is a problem in the program, + +275 +00:16:30,750 --> 00:16:35,790 +we can track this file and see what happened. They + +276 +00:16:35,790 --> 00:16:39,610 +use this not for the end user, but for the + +277 +00:16:39,610 --> 00:16:42,650 +developer, so that he can track their code. + +278 +00:16:43,630 --> 00:16:46,910 +Usually these files or documents are not stored in + +279 +00:16:46,910 --> 00:16:50,870 +a database, but stored in files. Because if you + +280 +00:16:50,870 --> 00:16:52,270 +download it to a database and there is a crash in + +281 +00:16:52,270 --> 00:16:54,350 +the database, it will not be able to access the + +282 +00:16:54,350 --> 00:16:57,050 +files. But the file can be opened by any tool, + +283 +00:16:57,190 --> 00:17:00,690 +Word or Notepad. You can open the file and see all + +284 +00:17:00,690 --> 00:17:05,750 +the information. Now this is a simple process of + +285 +00:17:05,750 --> 00:17:09,550 +writing on a file. But the idea is that the + +286 +00:17:09,550 --> 00:17:11,370 +process of logging does not start from one place. + +287 +00:17:12,150 --> 00:17:14,350 +You have a program with twenty, thirty or fifty + +288 +00:17:14,350 --> 00:17:17,340 +classes from anywhere. You need to record + +289 +00:17:17,340 --> 00:17:20,180 +messages. For example, this is the login page. + +290 +00:17:20,380 --> 00:17:22,440 +This is the search page. This is the insert + +291 +00:17:22,440 --> 00:17:25,240 +database page. This is the query page. All of + +292 +00:17:25,240 --> 00:17:28,900 +these classes need to add messages to the lib + +293 +00:17:28,900 --> 00:17:31,740 +file. So the messages that come here come from + +294 +00:17:31,740 --> 00:17:34,500 +where? From more than one place. From twenty or + +295 +00:17:34,500 --> 00:17:39,420 +thirty places. Actually, there is a common access + +296 +00:17:39,420 --> 00:17:42,620 +between them all on the same file. Because this + +297 +00:17:42,620 --> 00:17:43,800 +object that needs to be controlled in the file and + +298 +00:17:43,800 --> 00:17:45,020 +needs to be connected to it needs to be one + +299 +00:17:45,020 --> 00:17:50,050 +object.Object 1 is responsible for the file, and I + +300 +00:17:50,050 --> 00:17:52,610 +use this object from here, and from here, and from + +301 +00:17:52,610 --> 00:17:55,070 +here, and from here, and from here, and from here, + +302 +00:17:55,070 --> 00:17:55,990 +and from here, and from here, and from here, and + +303 +00:17:55,990 --> 00:17:56,070 +from here, and from here, and from here, and from + +304 +00:17:56,070 --> 00:17:58,630 +here, and from here, and from here, and from here, + +305 +00:17:58,630 --> 00:18:00,410 +and from here, and from here, and from here, and + +306 +00:18:00,410 --> 00:18:01,230 +from here, and from here, and from here, and from + +307 +00:18:01,230 --> 00:18:01,670 +here, and from here, and from here, and from here, + +308 +00:18:01,670 --> 00:18:02,070 +and from here, and from here, and from here, and + +309 +00:18:02,070 --> 00:18:02,090 +from here, and from here, and from here, and from + +310 +00:18:02,090 --> 00:18:02,090 +here, and from here, and from here, and from here, + +311 +00:18:02,090 --> 00:18:02,590 +and from here, and from here, and from here, and + +312 +00:18:02,590 --> 00:18:02,650 +from here, and from here, and from here, and from + +313 +00:18:02,650 --> 00:18:02,650 +here, and from here, and from here, and from here, + +314 +00:18:02,650 --> 00:18:03,550 +and from here, and from here, and from here, and + +315 +00:18:03,550 --> 00:18:11,030 +from here, and from here, and from here, and from + +316 +00:18:11,030 --> 00:18:14,190 +hereWhat is this object? And it is what is written + +317 +00:18:14,190 --> 00:18:19,830 +on the file. Centralized management. The center in + +318 +00:18:19,830 --> 00:18:22,570 +which it is controlled. Like the example I gave in + +319 +00:18:22,570 --> 00:18:26,510 +the last lecture about printing. The Prince Pool. + +320 +00:18:29,780 --> 00:18:32,380 +One object is responsible for the queue of + +321 +00:18:32,380 --> 00:18:34,540 +printing and ordering, it organizes them and + +322 +00:18:34,540 --> 00:18:38,260 +checks if the user is the owner or not. This is + +323 +00:18:38,260 --> 00:18:40,060 +the printer and this is the printer. Who is + +324 +00:18:40,060 --> 00:18:42,580 +supposed to print this? The printer. The printer + +325 +00:18:42,580 --> 00:18:46,040 +asks the owner to print it for him. Where do these + +326 +00:18:46,040 --> 00:18:53,360 +privileges exist? In this object. Now, as an + +327 +00:18:53,360 --> 00:18:55,400 +example of centralized management, let's see how + +328 +00:18:55,400 --> 00:18:58,480 +to make this logger. In Java, + +329 +00:19:08,930 --> 00:19:12,970 +second in java there is a class ready for logging + +330 +00:19:12,970 --> 00:19:20,050 +which is class named + +331 +00:19:20,050 --> 00:19:26,100 +logger class in java named loggerThey say if you + +332 +00:19:26,100 --> 00:19:29,620 +want to create a logger, which is an active name + +333 +00:19:29,620 --> 00:19:31,600 +of the logger, which is what you want to write on + +334 +00:19:31,600 --> 00:19:34,660 +the file, go and create an object in the logger as + +335 +00:19:34,660 --> 00:19:37,160 +follows, say logger.getlogger, this is a static + +336 +00:19:37,160 --> 00:19:39,660 +method, okay? And give it the name of the logger, + +337 +00:19:40,800 --> 00:19:42,140 +okay? For example, call it My + +338 +00:19:45,100 --> 00:19:49,140 +We created this logger, if you want to write a + +339 +00:19:49,140 --> 00:19:52,580 +message, you have to connect this logger to a + +340 +00:19:52,580 --> 00:19:57,840 +file, so it can write on a file, it can connect to + +341 +00:19:57,840 --> 00:19:59,840 +a network, so you can send messages to the + +342 +00:19:59,840 --> 00:20:02,260 +network, sometimes you have programs that tell you + +343 +00:20:02,260 --> 00:20:04,980 +if there is a crash, send the wrong messages to + +344 +00:20:04,980 --> 00:20:09,070 +Google You can connect it to a network, database, + +345 +00:20:09,350 --> 00:20:12,810 +anything For example, there is something called + +346 +00:20:12,810 --> 00:20:17,070 +add handler, new file handler, and give it a file + +347 +00:20:17,070 --> 00:20:22,210 +name that connects to it, for example, test.txt So + +348 +00:20:22,210 --> 00:20:25,510 +if we write on our logger, everything will be + +349 +00:20:25,510 --> 00:20:29,110 +stored in a file called test.txt Ok, we're done. + +350 +00:20:29,590 --> 00:20:32,370 +How do we write? Logger.log + +351 +00:20:40,210 --> 00:20:43,210 +What kind of message do you want to write? Because + +352 +00:20:43,210 --> 00:20:47,970 +sometimes the message is info, sometimes it is + +353 +00:20:47,970 --> 00:20:52,360 +warning, sometimes it is severemeans there is + +354 +00:20:52,360 --> 00:20:56,740 +something wrong, wrong, fatal error this is for + +355 +00:20:56,740 --> 00:21:00,280 +those who do tracking to see what kind of message + +356 +00:21:00,280 --> 00:21:02,880 +it is for example, I care about errors, I search + +357 +00:21:02,880 --> 00:21:06,520 +for messages that are wrong for example info is + +358 +00:21:06,520 --> 00:21:08,740 +just information that someone modified something + +359 +00:21:08,740 --> 00:21:14,180 +someone made a login for example this is info we + +360 +00:21:14,180 --> 00:21:18,100 +can say Ahmed logged in the system + +361 +00:21:22,000 --> 00:21:24,900 +Logger reads the message channel, I want to say + +362 +00:21:24,900 --> 00:21:27,480 +level severe, + +363 +00:21:29,520 --> 00:21:34,640 +I say for example server crashed, fatal error, + +364 +00:21:35,880 --> 00:21:38,000 +what happened to my hand? Mistake, even this + +365 +00:21:38,000 --> 00:21:41,320 +message will print it in red, okay? That's it, + +366 +00:21:41,360 --> 00:21:43,280 +it's very simple, here I created the logger, + +367 +00:21:43,320 --> 00:21:45,280 +linked it to a file, and whenever you want to + +368 +00:21:45,280 --> 00:21:49,560 +print the message, what do you say? Log, okay? And + +369 +00:21:49,560 --> 00:21:52,430 +it will read it. this is the first message but you + +370 +00:21:52,430 --> 00:21:55,870 +see it in red it shows you as an exception this + +371 +00:21:55,870 --> 00:22:00,110 +message is an info it was written in this date and + +372 +00:22:00,110 --> 00:22:05,030 +time through this class and through this method it + +373 +00:22:05,030 --> 00:22:08,150 +even shows you which class wrote it and which + +374 +00:22:08,150 --> 00:22:11,430 +method is going to print the message and it was + +375 +00:22:11,430 --> 00:22:14,110 +supposed to be written on a file this is a + +376 +00:22:14,110 --> 00:22:17,290 +printout on the console but they are supposed to + +377 +00:22:17,290 --> 00:22:22,350 +be in a file where is the file? When you click on + +378 +00:22:22,350 --> 00:22:22,830 +the project, + +379 +00:22:31,730 --> 00:22:34,990 +you will see a box called test.txt + +380 +00:22:43,230 --> 00:22:47,730 +Locked in millisecond Logar is the name of the + +381 +00:22:47,730 --> 00:22:49,370 +logar in the book MyLogar is the name of the logar + +382 +00:22:49,370 --> 00:22:51,130 +in the book The type of the message is info From + +383 +00:22:51,130 --> 00:22:53,410 +any class that printed the message And from any + +384 +00:22:53,410 --> 00:22:55,830 +method that shows you where exactly the message + +385 +00:22:55,830 --> 00:22:59,790 +came from And this is the text of the message And + +386 +00:22:59,790 --> 00:23:04,850 +this is another message Date and so on Where is + +387 +00:23:04,850 --> 00:23:06,270 +the idea in this topic? We have not talked about + +388 +00:23:06,270 --> 00:23:08,470 +it yet Where is the singleton in the story? Do you + +389 +00:23:08,470 --> 00:23:14,070 +think that this logar that I created object one + +390 +00:23:14,070 --> 00:23:17,930 +only and use it in every place so this will become + +391 +00:23:17,930 --> 00:23:22,590 +what? not singleton how? very simple go to email + +392 +00:23:22,590 --> 00:23:31,450 +class name it my singleton logar ok? + +393 +00:23:32,250 --> 00:23:36,490 +this what I want it to contain? I want it to take + +394 +00:23:36,490 --> 00:23:42,530 +this logar right? so this is my singleton logar + +395 +00:23:44,420 --> 00:23:54,700 +This is a private logger named logger I want + +396 +00:23:54,700 --> 00:23:58,820 +to import it + +397 +00:23:58,820 --> 00:24:01,940 +The first + +398 +00:24:01,940 --> 00:24:04,640 +thing I do is create a class and then convert it + +399 +00:24:04,640 --> 00:24:11,660 +to singleton Because what is this? Constructor So + +400 +00:24:11,660 --> 00:24:15,000 +now mysql.logar has covered me. What is inside it? + +401 +00:24:15,500 --> 00:24:22,720 +The logar. If I find the logar, it is equal to + +402 +00:24:22,720 --> 00:24:27,640 +get logar, we call it mylogar + +403 +00:24:27,640 --> 00:24:34,500 +.logar.add handler, a new file handler, and I send + +404 +00:24:34,500 --> 00:24:42,470 +it the file name. It is test.txt. Is it a file or + +405 +00:24:42,470 --> 00:24:46,590 +a network? Yes, the network needs a socket It has + +406 +00:24:46,590 --> 00:24:51,070 +another job Now, this one is private And this one + +407 +00:24:51,070 --> 00:24:53,090 +was created by the constructor So I need to create + +408 +00:24:53,090 --> 00:24:57,750 +a get method to get it back from the language Add + +409 +00:24:57,750 --> 00:25:08,130 +import And this one needs to add throw So + +410 +00:25:08,130 --> 00:25:12,850 +public Logar I want to say get what? + +411 +00:25:17,230 --> 00:25:22,290 +return Logar Of course this is still a normal + +412 +00:25:22,290 --> 00:25:26,130 +class Meaning that if I want to use Logar I have + +413 +00:25:26,130 --> 00:25:34,550 +to extract an object from my singleton Logar This + +414 +00:25:34,550 --> 00:25:38,050 +is S equals U my singleton + +415 +00:25:40,820 --> 00:25:45,360 +logar and then I go to the S and say get logar and + +416 +00:25:45,360 --> 00:25:51,760 +then I say make log for example this class so far + +417 +00:25:51,760 --> 00:26:00,460 +has covered the logar this is log or level.severe + +418 +00:26:00,460 --> 00:26:03,080 +and here I put the message and then you print it + +419 +00:26:05,190 --> 00:26:07,690 +Why did I put the logar in the class? Because I + +420 +00:26:07,690 --> 00:26:11,050 +wanted to convert it to singleton How to convert + +421 +00:26:11,050 --> 00:26:13,750 +it to singleton? As we learned, the first step is + +422 +00:26:13,750 --> 00:26:17,970 +to go to the constructor and put private The + +423 +00:26:17,970 --> 00:26:20,810 +second step is to make a reference of the same + +424 +00:26:20,810 --> 00:26:24,670 +type so that the class is private and static + +425 +00:26:24,670 --> 00:26:28,210 +MySingletonLogar + +426 +00:26:28,210 --> 00:26:34,890 +is called instance claimed to In order to reach + +427 +00:26:34,890 --> 00:26:37,930 +this instance, I need to create a method called + +428 +00:26:37,930 --> 00:26:41,090 +public static in order to reach it or use it + +429 +00:26:41,090 --> 00:26:43,050 +without having to initialize the object What + +430 +00:26:43,050 --> 00:26:45,010 +should it return? It should return my singleton + +431 +00:26:45,010 --> 00:26:55,230 +logger named get instance and I need to say if in + +432 +00:26:55,230 --> 00:27:00,080 +the instance you say null and go to the instance + +433 +00:27:00,080 --> 00:27:08,540 +and say new my singleton logarithm + +434 +00:27:08,540 --> 00:27:19,220 +this just need surround try-catch return instance + +435 +00:27:19,220 --> 00:27:23,460 +only if the instance is null it will go anywhere + +436 +00:27:23,460 --> 00:27:24,360 +else it will return + +437 +00:27:29,570 --> 00:27:41,490 +My Singleton Logger + +438 +00:27:42,910 --> 00:27:47,050 +and you say get instance and you use it you need + +439 +00:27:47,050 --> 00:27:49,910 +to create another node, another object in the same + +440 +00:27:49,910 --> 00:27:51,710 +way you say get instance and it brings you the + +441 +00:27:51,710 --> 00:27:55,150 +same object you don't create a new object and + +442 +00:27:55,150 --> 00:27:58,750 +that's how you apply this thing centralize access + +443 +00:27:58,750 --> 00:28:01,370 +to its files through this logarithm, because + +444 +00:28:01,370 --> 00:28:03,670 +everyone uses the same logarithm do you + +445 +00:28:03,670 --> 00:28:06,770 +understand? do you like the idea guys? ok, based + +446 +00:28:06,770 --> 00:28:08,070 +on these words, let's go back to + +447 +00:28:16,830 --> 00:28:19,890 +The singleton pattern is one of the simplest + +448 +00:28:19,890 --> 00:28:22,830 +design patterns. It involves only one class + +449 +00:28:26,560 --> 00:28:36,280 +which is responsible to instantiate itself to make + +450 +00:28:36,280 --> 00:28:42,620 +sure it creates not more than one instance in the + +451 +00:28:42,620 --> 00:28:47,190 +same time it provides a global point of access it + +452 +00:28:47,190 --> 00:28:50,470 +is clear that it allows access to this object from + +453 +00:28:50,470 --> 00:28:52,650 +anywhere in the application to achieve a global + +454 +00:28:52,650 --> 00:28:56,330 +point of access to that instance in this case, the + +455 +00:28:56,330 --> 00:28:59,530 +same instance can be used from everywhere being + +456 +00:28:59,530 --> 00:29:02,150 +impossible to invoke directly the constructor each + +457 +00:29:02,150 --> 00:29:05,890 +time you cannot use the constructor in temp, the + +458 +00:29:05,890 --> 00:29:08,770 +goal of the single tool pattern ensure that only + +459 +00:29:08,770 --> 00:29:12,140 +one instance of a class is createdYou make sure + +460 +00:29:12,140 --> 00:29:14,580 +that one object of the class was created and that + +461 +00:29:14,580 --> 00:29:16,660 +this object will be used from anywhere, or in + +462 +00:29:16,660 --> 00:29:19,600 +another sense, provide the global point of access + +463 +00:29:19,600 --> 00:29:24,620 +to that objectLook at the UML class diagram, the + +464 +00:29:24,620 --> 00:29:27,900 +singleton pattern with its general code Because if + +465 +00:29:27,900 --> 00:29:29,720 +I want to represent it as a UML class diagram, it + +466 +00:29:29,720 --> 00:29:32,900 +is a single class called singleton, for example + +467 +00:29:32,900 --> 00:29:36,900 +And notice what's in it, instance, no, singleton + +468 +00:29:36,900 --> 00:29:39,060 +This is the object that I put inside the class, + +469 +00:29:39,120 --> 00:29:43,520 +which is actually the one and only copy And this + +470 +00:29:43,520 --> 00:29:48,790 +is a sign next to it Private. Now this is the + +471 +00:29:48,790 --> 00:29:51,410 +constructor, see the constructor next to it is + +472 +00:29:51,410 --> 00:29:53,730 +also private. Instead of the constructor, so that + +473 +00:29:53,730 --> 00:29:56,570 +I can reach this, I made a statement called get + +474 +00:29:56,570 --> 00:29:59,510 +instance which is a plus sign, which is public, + +475 +00:30:00,110 --> 00:30:03,030 +this singleton returns. This is what checks if it + +476 +00:30:03,030 --> 00:30:07,830 +is null, it returns. If it is not null, it returns + +477 +00:30:07,830 --> 00:30:09,550 +immediately. This is the shape of the code. + +478 +00:30:12,280 --> 00:30:16,860 +This is the Singleton class and this is an + +479 +00:30:16,860 --> 00:30:20,800 +instance of it. This is the constructor. + +480 +00:30:23,460 --> 00:30:28,220 +This is the constructor. This is the constructor. + +481 +00:30:28,220 --> 00:30:31,060 +This is the constructor. This is the constructor. + +482 +00:30:31,060 --> 00:30:33,620 +This is the constructor. This is the constructor. + +483 +00:30:33,800 --> 00:30:34,180 +This is the constructor. This is the constructor. + +484 +00:30:34,180 --> 00:30:35,020 +This is the constructor. This is the constructor. + +485 +00:30:35,260 --> 00:30:36,120 +This is the constructor. This is the constructor. + +486 +00:30:36,120 --> 00:30:37,320 +This is the constructor. This is the constructor. + +487 +00:30:37,320 --> 00:30:37,820 +This is the constructor. This is the constructor. + +488 +00:30:37,820 --> 00:30:37,820 +This is the constructor. This is the constructor. + +489 +00:30:37,820 --> 00:30:37,820 +This is the constructor. This is the constructor. + +490 +00:30:37,820 --> 00:30:37,820 +This is the constructor. This is the constructor. + +491 +00:30:37,820 --> 00:30:37,880 +This is the constructor. This is the constructor. + +492 +00:30:37,880 --> 00:30:37,880 +This is the constructor. This is the constructor. + +493 +00:30:37,880 --> 00:30:37,880 +This is the constructor. This is the constructor. + +494 +00:30:37,880 --> 00:30:37,880 +This is the constructor. This is the constructor. + +495 +00:30:37,880 --> 00:30:37,880 +This is the constructor. This is the constructor. + +496 +00:30:37,880 --> 00:30:37,880 +This is the constructor. This is the constructor. + +497 +00:30:37,880 --> 00:30:37,880 +This is the constructor. This is the constructor. + +498 +00:30:37,880 --> 00:30:37,880 +This is the constructor. This is the constructor. + +499 +00:30:37,880 --> 00:30:37,880 +This is the constructor. This is the constructor. + +500 +00:30:37,980 --> 00:30:42,620 +This is the constructor.Public statics, but I put + +501 +00:30:42,620 --> 00:30:45,420 +a new word, it's called synchronize, we'll explain + +502 +00:30:45,420 --> 00:30:48,940 +what synchronize is, okay? It returns singleton, + +503 +00:30:49,020 --> 00:30:51,200 +it's called get instance, you check if the + +504 +00:30:51,200 --> 00:30:53,900 +instance is null, it returns singleton and returns + +505 +00:30:53,900 --> 00:30:57,660 +it, okay? Of course, this line belongs to the F + +506 +00:30:57,660 --> 00:31:00,840 +only, this doesn't belong to the F, right? Okay? + +507 +00:31:01,240 --> 00:31:06,480 +And then, this line down here, it's called? After + +508 +00:31:06,480 --> 00:31:10,180 +I reach the instance, I can call this loop. This + +509 +00:31:10,180 --> 00:31:14,020 +loop is not static. This loop needs to have an + +510 +00:31:14,020 --> 00:31:14,340 +object. + +511 +00:31:17,300 --> 00:31:20,640 +Why is this point synchronized? What is this + +512 +00:31:20,640 --> 00:31:23,060 +synchronization? In D3 programming, you will learn + +513 +00:31:23,060 --> 00:31:26,240 +about threading. How to have more than one process + +514 +00:31:26,240 --> 00:31:29,890 +running at the same time.This synchronization is + +515 +00:31:29,890 --> 00:31:32,730 +important to avoid problems if there are more than + +516 +00:31:32,730 --> 00:31:38,210 +one thread running at the same time. And they need + +517 +00:31:38,210 --> 00:31:41,610 +this singleton. In games, for example, you don't + +518 +00:31:41,610 --> 00:31:43,630 +find a person walking and hopping and a bird + +519 +00:31:43,630 --> 00:31:45,730 +flying and a person in front of you hopping on + +520 +00:31:45,730 --> 00:31:48,410 +you. These are all running together. We call it + +521 +00:31:48,410 --> 00:31:52,410 +multi-threading. And each person may need common + +522 +00:31:52,410 --> 00:31:55,950 +data that can reach singleton. Again, if they are + +523 +00:31:55,950 --> 00:31:59,220 +all running together, a problem may occur. Where + +524 +00:31:59,220 --> 00:32:01,260 +does the problem occur? Let's do tracking. Do we + +525 +00:32:01,260 --> 00:32:06,740 +know that a processor can run more than one + +526 +00:32:06,740 --> 00:32:11,220 +program at the same time? No. How can programs run + +527 +00:32:11,220 --> 00:32:14,360 +more than one program at the same time? Yes, it + +528 +00:32:14,360 --> 00:32:17,760 +creates a time slot for each processor. Basically, + +529 +00:32:17,820 --> 00:32:19,680 +the processor works for a certain period of time, + +530 +00:32:20,060 --> 00:32:21,960 +then it stops working again, but this process + +531 +00:32:21,960 --> 00:32:24,440 +takes place quickly, so you notice that the + +532 +00:32:24,440 --> 00:32:27,100 +programs work together. Unless modern processors + +533 +00:32:27,100 --> 00:32:30,600 +have multiprocessors, then each processor will + +534 +00:32:30,600 --> 00:32:33,580 +work on its own. But we are talking about a single + +535 +00:32:33,580 --> 00:32:36,400 +processor that does not run more than one process + +536 +00:32:36,400 --> 00:32:39,020 +at the same time. It gives each one a time slot. + +537 +00:32:39,100 --> 00:32:43,630 +Can you imagineIt gave a time slot for a specific + +538 +00:32:43,630 --> 00:32:44,910 +process, it started working, and this process + +539 +00:32:44,910 --> 00:32:48,530 +started producing a singleton. The proof was + +540 +00:32:48,530 --> 00:32:53,110 +created, a get instance was created, and it was + +541 +00:32:53,110 --> 00:32:57,560 +verified. This instance is equal to null. Wait a + +542 +00:32:57,560 --> 00:33:00,020 +minute. No, it hasn't started yet. Luckily, the + +543 +00:33:00,020 --> 00:33:02,940 +therapist decided that at this moment, it hasn't + +544 +00:33:02,940 --> 00:33:05,460 +started yet. She checked and found that if it + +545 +00:33:05,460 --> 00:33:07,420 +started, the therapist came and told her to stop. + +546 +00:33:07,960 --> 00:33:10,800 +That's it. Your time is over. Okay, so it hasn't + +547 +00:33:10,800 --> 00:33:13,220 +started yet? No, it's over. Your time is over. + +548 +00:33:13,360 --> 00:33:16,510 +Okay.She went left and did the next operation. + +549 +00:33:16,610 --> 00:33:18,790 +After the next operation, what did she ask for? + +550 +00:33:18,850 --> 00:33:20,890 +She got an instance. She got the instance from + +551 +00:33:20,890 --> 00:33:23,330 +her, what did she get from it? She created it and + +552 +00:33:23,330 --> 00:33:25,590 +returned the instance. She finished her work and + +553 +00:33:25,590 --> 00:33:28,010 +came back to continue working on the first one. + +554 +00:33:28,110 --> 00:33:30,190 +Where did the first one go? It ended up in the + +555 +00:33:30,190 --> 00:33:33,890 +cycle. Okay? You will go straight to do what? Nu. + +556 +00:33:34,050 --> 00:33:37,430 +What is the result of it? There are two objects. + +557 +00:33:38,010 --> 00:33:41,010 +Did you see where the problem happened? Okay? So + +558 +00:33:41,010 --> 00:33:43,250 +how can I solve this problem? They tell me that + +559 +00:33:43,250 --> 00:33:46,570 +when you put the word synchronize, it is like you + +560 +00:33:46,570 --> 00:33:49,390 +are telling the processor, hey processor, any + +561 +00:33:49,390 --> 00:33:52,410 +process that starts in this method should not be + +562 +00:33:52,410 --> 00:33:55,480 +interrupted. Like someone who eats and drinks, you + +563 +00:33:55,480 --> 00:33:58,560 +can't tell him to stop, you have to let him finish + +564 +00:33:58,560 --> 00:34:01,460 +and then start the process. So let him finish and + +565 +00:34:01,460 --> 00:34:03,800 +let him get bored. As long as he has reached his + +566 +00:34:03,800 --> 00:34:10,420 +goal, you have to finish it. The problem that + +567 +00:34:10,420 --> 00:34:12,920 +happened a while ago resulted in him stopping + +568 +00:34:12,920 --> 00:34:16,760 +someone before he could move forward. But when the + +569 +00:34:16,760 --> 00:34:18,500 +gate is set to synchronize, it means that any + +570 +00:34:18,500 --> 00:34:21,440 +process that has entered this method you have to + +571 +00:34:21,440 --> 00:34:24,880 +complete it till the end to make sure that you + +572 +00:34:24,880 --> 00:34:27,880 +don't create two objects in the same program is it + +573 +00:34:27,880 --> 00:34:29,320 +clear guys? what is the use of this + +574 +00:34:29,320 --> 00:34:32,640 +synchronization? ok, so it is necessary if you + +575 +00:34:32,640 --> 00:34:35,680 +have multi-threading in your program but if there + +576 +00:34:35,680 --> 00:34:38,640 +are no threads in the program, you don't need this + +577 +00:34:38,640 --> 00:34:41,680 +in all cases, if you put it, it is not wrong, ok? + +578 +00:34:47,480 --> 00:34:52,970 +ok, nowNote that the singleton instance is only + +579 +00:34:52,970 --> 00:34:55,570 +created when needed. This is an important point. + +580 +00:34:55,810 --> 00:34:58,090 +For example, in a phone book, it is possible that + +581 +00:34:58,090 --> 00:35:00,730 +the first thing you do is the same object, static. + +582 +00:35:01,670 --> 00:35:05,770 +We know that static can come from anywhere. But + +583 +00:35:05,770 --> 00:35:08,110 +they tell me that the problem with static is that + +584 +00:35:08,110 --> 00:35:11,830 +you drag it and put it in the memory even if you + +585 +00:35:11,830 --> 00:35:16,750 +don't use it. But in singleton, + +586 +00:35:19,520 --> 00:35:23,340 +The object is going to be controllable Correct or + +587 +00:35:23,340 --> 00:35:25,000 +not? It's not going to be created by the teacher + +588 +00:35:25,000 --> 00:35:28,020 +or the instructor unless it's needed for the first + +589 +00:35:28,020 --> 00:35:31,600 +time Correct or not? This is the big difference + +590 +00:35:31,600 --> 00:35:33,720 +between creating the object from the beginning and + +591 +00:35:33,720 --> 00:35:36,900 +leaving it in memory We don't want to create + +592 +00:35:36,900 --> 00:35:39,280 +things unless we need them for the first time A + +593 +00:35:39,280 --> 00:35:43,740 +game needs material, audio file, video file, why + +594 +00:35:43,740 --> 00:35:45,420 +not download them all when you download the game? + +595 +00:35:46,030 --> 00:35:47,470 +No, it only handles the things that are necessary + +596 +00:35:47,470 --> 00:35:49,410 +for the first level And when it comes to the + +597 +00:35:49,410 --> 00:35:51,130 +second level, what does it handle? The things + +598 +00:35:51,130 --> 00:35:54,050 +related to it So the idea of get instance, at the + +599 +00:35:54,050 --> 00:35:56,070 +first moment, at the first time, it creates the + +600 +00:35:56,070 --> 00:35:59,570 +object It didn't use it, it didn't need it, it + +601 +00:35:59,570 --> 00:36:03,270 +kept going on and on The idea became clear So + +602 +00:36:03,270 --> 00:36:06,390 +that's why they say that singleton supports + +603 +00:36:06,390 --> 00:36:09,810 +something called lazy insensation Insensation + +604 +00:36:09,810 --> 00:36:13,510 +means creating an object What does lazy mean? Lazy + +605 +00:36:15,380 --> 00:36:18,380 +Kesal is a negative word, but here in programming + +606 +00:36:18,380 --> 00:36:22,720 +it is positive. The F you were happy with it, + +607 +00:36:22,740 --> 00:36:25,480 +let's make an F else and so on. No, the thing is + +608 +00:36:25,480 --> 00:36:27,600 +that when you find the F, what does the code mean? + +609 +00:36:28,740 --> 00:36:31,060 +It's bad, because you have to pass the F again. + +610 +00:36:32,220 --> 00:36:34,260 +You were happy with the E, let's make an E in each + +611 +00:36:34,260 --> 00:36:38,280 +object, in each class. No, the E turned out to be + +612 +00:36:38,280 --> 00:36:40,960 +negative. And the Z turned out to be positive. + +613 +00:36:42,240 --> 00:36:44,080 +There are still a lot of things coming up. + +614 +00:36:49,240 --> 00:36:50,600 +Okay, this explains what is the use of + +615 +00:36:50,600 --> 00:36:53,880 +synchronization if two threads concurrently + +616 +00:36:53,880 --> 00:36:55,440 +concurrently concurrently concurrently + +617 +00:36:55,440 --> 00:36:56,840 +concurrently concurrently concurrently + +618 +00:36:56,840 --> 00:36:58,980 +concurrently concurrently concurrently + +619 +00:36:58,980 --> 00:36:59,240 +concurrently concurrently concurrently + +620 +00:36:59,240 --> 00:37:00,140 +concurrently concurrently concurrently + +621 +00:37:00,140 --> 00:37:00,140 +concurrently concurrently concurrently + +622 +00:37:00,140 --> 00:37:00,140 +concurrently concurrently concurrently + +623 +00:37:00,140 --> 00:37:00,160 +concurrently concurrently concurrently + +624 +00:37:00,160 --> 00:37:00,760 +concurrently concurrently concurrently + +625 +00:37:00,760 --> 00:37:03,460 +concurrently concurrently concurrently + +626 +00:37:03,460 --> 00:37:03,460 +concurrently concurrently concurrently + +627 +00:37:03,460 --> 00:37:03,460 +concurrently concurrently concurrently + +628 +00:37:03,460 --> 00:37:03,500 +concurrently concurrently concurrently + +629 +00:37:03,500 --> 00:37:03,500 +concurrently concurrently concurrently + +630 +00:37:03,500 --> 00:37:03,500 +concurrently concurrently concurrently + +631 +00:37:03,500 --> 00:37:03,500 +concurrently concurrently concurrently + +632 +00:37:03,500 --> 00:37:03,500 +concurrently concurrently concurrently + +633 +00:37:03,500 --> 00:37:03,500 +concurrently concurrently concurrently + +634 +00:37:03,500 --> 00:37:03,500 +concurrently concurrently concurrently + +635 +00:37:03,500 --> 00:37:03,760 +concurrently concurrently concurrently + +636 +00:37:03,760 --> 00:37:03,760 +concurrently concurrently concurrently + +637 +00:37:03,760 --> 00:37:03,760 +concurrently concurrently concurrently + +638 +00:37:03,760 --> 00:37:03,760 +concurrently concurrently concurrently + +639 +00:37:03,760 --> 00:37:03,780 +concurrently concurrently concurrently + +640 +00:37:03,780 --> 00:37:03,780 +concurrently concurrently concurrently + +641 +00:37:03,780 --> 00:37:04,520 +concurrently concurrently concurrently + +642 +00:37:04,520 --> 00:37:04,540 +concurrently concurrently concurrently + +643 +00:37:04,540 --> 00:37:04,580 +concurrently concurrently concurrently + +644 +00:37:04,580 --> 00:37:04,640 +concurrently concurrently concurrently + +645 +00:37:04,640 --> 00:37:04,640 +concurrently concurrently concurrently + +646 +00:37:04,640 --> 00:37:04,640 +concurrently concurrently concurrently + +647 +00:37:04,640 --> 00:37:04,640 +concurrently concurrently concurrently + +648 +00:37:04,640 --> 00:37:04,640 +concurrently concurrently concurrently + +649 +00:37:04,640 --> 00:37:06,080 +concurrently concurrently concurrently + +650 +00:37:06,080 --> 00:37:08,710 +concurrently concurrentlyMake the instance + +651 +00:37:08,710 --> 00:37:12,110 +synchronize. Synchronization is expensive, however + +652 +00:37:12,110 --> 00:37:17,110 +it is really only needed the first time the unique + +653 +00:37:17,110 --> 00:37:18,050 +instance is created. + +654 +00:37:28,490 --> 00:37:30,770 +It explains examples of where we can use the + +655 +00:37:30,770 --> 00:37:33,210 +singleton pattern. Among these examples that we + +656 +00:37:33,210 --> 00:37:37,250 +explained earlier, the logger. I need a global + +657 +00:37:37,250 --> 00:37:40,190 +point of access through which I can log and record + +658 +00:37:40,190 --> 00:37:42,210 +messages. From anywhere in the code, I need to + +659 +00:37:42,210 --> 00:37:46,110 +record messages. Through object 1 only. Also, the + +660 +00:37:46,110 --> 00:37:49,330 +configurations. In the program, I don't need + +661 +00:37:49,330 --> 00:37:52,630 +settings. Whether the settings for GUI, background + +662 +00:37:52,630 --> 00:37:55,430 +color, line color, and line size. I want to use + +663 +00:37:55,430 --> 00:37:57,570 +these settings in all the screens that appear on + +664 +00:37:57,570 --> 00:38:00,300 +my screen. a specific IP in the dashboard, + +665 +00:38:00,620 --> 00:38:05,300 +username, password, all these settings, I can use + +666 +00:38:05,300 --> 00:38:08,760 +them anywhere. If I want to extract a program from + +667 +00:38:08,760 --> 00:38:11,100 +it, I can do it by myself as a singleton, and it + +668 +00:38:11,100 --> 00:38:13,940 +will stay there, and everywhere it will reach the + +669 +00:38:13,940 --> 00:38:17,840 +configurations. Okay? So this can also be useful + +670 +00:38:17,840 --> 00:38:20,640 +in singleton. And they also say that you can do + +671 +00:38:20,640 --> 00:38:25,540 +the factory itself as a singleton, even if it is + +672 +00:38:25,540 --> 00:38:30,440 +not a big issue, the factory. This is how we + +673 +00:38:30,440 --> 00:38:38,700 +solved the singleton pattern How + +674 +00:38:38,700 --> 00:38:44,120 +many design patterns did we use? Factory, Builder + +675 +00:38:44,120 --> 00:38:49,380 +and Factory Method? And singleton, right? These + +676 +00:38:49,380 --> 00:38:52,660 +are the four creational design patterns. From all + +677 +00:38:52,660 --> 00:38:54,580 +of these, we have completed the first part of the + +678 +00:38:54,580 --> 00:38:56,980 +design patterns, which is creational design + +679 +00:38:56,980 --> 00:38:59,160 +patterns. But before that, I want to explain an + +680 +00:38:59,160 --> 00:39:01,920 +important concept in object-oriented programming + +681 +00:39:01,920 --> 00:39:04,780 +called dependency injection. This is a new topic + +682 +00:39:04,780 --> 00:39:08,180 +that I added only last year, because it has been + +683 +00:39:08,180 --> 00:39:10,920 +used a lot lately. + +684 +00:39:12,760 --> 00:39:15,040 +This lecture will present what is dependency. + +685 +00:39:16,670 --> 00:39:19,650 +Injection and then in the next lecture, God + +686 +00:39:19,650 --> 00:39:22,130 +willing, we will see how to apply it practically + +687 +00:39:22,130 --> 00:39:25,790 +Now + +688 +00:39:25,790 --> 00:39:28,870 +guys, we studied the relationship between classes, + +689 +00:39:29,010 --> 00:39:31,370 +which is the relationship of association What is + +690 +00:39:31,370 --> 00:39:34,110 +the relationship of association? That I am an + +691 +00:39:34,110 --> 00:39:37,630 +object of a class and I need an object of another + +692 +00:39:37,630 --> 00:39:45,250 +class For example, I have class A, right? It needs + +693 +00:39:45,250 --> 00:39:53,670 +to learn methods in another class called D Because + +694 +00:39:53,670 --> 00:39:57,070 +to achieve this task, let's imagine a class A code + +695 +00:39:57,070 --> 00:40:01,050 +Class A + +696 +00:40:01,050 --> 00:40:06,570 +needs an object from D So what can you do from + +697 +00:40:06,570 --> 00:40:13,930 +inside A?this is a reference to class B this is + +698 +00:40:13,930 --> 00:40:17,370 +still a constant right? so the constructor of A + +699 +00:40:17,370 --> 00:40:27,790 +you can say for example B is equal to B then + +700 +00:40:27,790 --> 00:40:30,890 +there can be a method in A for example do public + +701 +00:40:30,890 --> 00:40:36,910 +void do something + +702 +00:40:41,780 --> 00:40:46,000 +This is a method found in class A which goes to B + +703 +00:40:46,000 --> 00:40:49,940 +and says process for example. + +704 +00:40:51,800 --> 00:40:54,320 +What did I do here? I did not say that A will need + +705 +00:40:54,320 --> 00:40:57,380 +method in B. This is the creation of an object + +706 +00:40:57,380 --> 00:40:59,760 +from B and from the value called do something + +707 +00:40:59,760 --> 00:41:03,760 +which is found where? In A, I called B dot + +708 +00:41:03,760 --> 00:41:09,040 +process. Ok, this is the first scenario that class + +709 +00:41:09,040 --> 00:41:11,500 +A used an object from B This is the relationship + +710 +00:41:11,500 --> 00:41:13,940 +between association and composition or + +711 +00:41:13,940 --> 00:41:17,120 +aggregation? Composition, because B was created + +712 +00:41:17,120 --> 00:41:22,220 +inside A The alternative is that I don't create B + +713 +00:41:22,220 --> 00:41:26,720 +inside A I create B outside and pass it to A So + +714 +00:41:26,720 --> 00:41:28,220 +how will the code look like? + +715 +00:41:33,560 --> 00:41:38,880 +I have B here as well And + +716 +00:41:38,880 --> 00:41:44,460 +I have the constructor of A here You can send to A + +717 +00:41:44,460 --> 00:41:51,220 +the object name which is B to B On the basis that + +718 +00:41:51,220 --> 00:41:57,000 +you tell him this dot B equals B And then you + +719 +00:41:57,000 --> 00:42:00,400 +complete this statement which is do something or B + +720 +00:42:00,400 --> 00:42:03,450 +dot processWhat is the difference between this and + +721 +00:42:03,450 --> 00:42:06,250 +this code? The difference is that we created the B + +722 +00:42:06,250 --> 00:42:10,250 +inside the A The constructor of the A is empty In + +723 +00:42:10,250 --> 00:42:13,610 +this case, no. In order to create the A, you have + +724 +00:42:13,610 --> 00:42:17,450 +to create a B before it So this is how you create + +725 +00:42:17,450 --> 00:42:20,190 +an object from A You have to have a B and then + +726 +00:42:20,190 --> 00:42:23,010 +create an object from A and give it the object B + +727 +00:42:23,010 --> 00:42:24,570 +This is the relation between composition and + +728 +00:42:24,570 --> 00:42:28,530 +aggregation, which is an association Now, who is + +729 +00:42:28,530 --> 00:42:28,790 +better? + +730 +00:42:31,620 --> 00:42:34,340 +Who is better in general? This one or that one? + +731 +00:42:35,360 --> 00:42:36,680 +Composition or aggregation? + +732 +00:42:42,380 --> 00:42:47,640 +Now, what is the advantage of composition? What is + +733 +00:42:47,640 --> 00:42:53,040 +it? It is easier to use. It means that if you want + +734 +00:42:53,040 --> 00:42:55,820 +an object from A, you just say Mu A. You don't + +735 +00:42:55,820 --> 00:42:57,380 +know anything about B. You don't have to know + +736 +00:42:57,380 --> 00:43:01,510 +anything. The B must go to where? For A, okay? You + +737 +00:43:01,510 --> 00:43:05,190 +might have noticed that A can use B, and B can use + +738 +00:43:05,190 --> 00:43:10,590 +C, and C can use D. You can see all these chains. + +739 +00:43:10,910 --> 00:43:14,210 +You move A and that's it. Each one moves what he + +740 +00:43:14,210 --> 00:43:17,670 +needs inside. But there is another negativity. + +741 +00:43:18,910 --> 00:43:25,020 +What is it? That I want to change B now.So now I + +742 +00:43:25,020 --> 00:43:27,260 +passed B to him, but now B wants to change his + +743 +00:43:27,260 --> 00:43:29,240 +job. He doesn't like this method of process in B. + +744 +00:43:30,420 --> 00:43:33,400 +He wants to do something else. What can I do to + +745 +00:43:33,400 --> 00:43:37,480 +change B? You can do X for B. Am I right or not + +746 +00:43:37,480 --> 00:43:41,620 +guys? Did I find this B? I don't like B's job. + +747 +00:43:42,500 --> 00:43:47,510 +Okay?I'm going to do external B, for example, I'm + +748 +00:43:47,510 --> 00:43:49,430 +going to do an override of a certain method, I'm + +749 +00:43:49,430 --> 00:43:52,050 +going to add a new method, okay? For example, this + +750 +00:43:52,050 --> 00:43:55,670 +is B, let's call it conditional B. Because the + +751 +00:43:55,670 --> 00:43:57,630 +problem with composition is that you tied yourself + +752 +00:43:57,630 --> 00:44:01,770 +to where? To B. Well, let's use conditional B. + +753 +00:44:02,070 --> 00:44:05,530 +Well, you have to enter the code A and remove this + +754 +00:44:05,530 --> 00:44:07,650 +instead of B and put conditional B. I'm going to + +755 +00:44:07,650 --> 00:44:10,590 +say it simple, there's no condition. No, you don't + +756 +00:44:10,590 --> 00:44:13,350 +need to enter the code to change it. The problem + +757 +00:44:13,350 --> 00:44:15,990 +is that it should be a series of dependencies. A + +758 +00:44:15,990 --> 00:44:20,190 +uses B, B uses C, and C uses D. And you need to + +759 +00:44:20,190 --> 00:44:23,990 +change it. You need to add it to certain classes. + +760 +00:44:25,410 --> 00:44:27,610 +And when you find the U, you know that you are + +761 +00:44:27,610 --> 00:44:31,210 +going the wrong way. This is the U. Where did you + +762 +00:44:31,210 --> 00:44:36,880 +connect yourself? Yes, in B.Okay, composition made + +763 +00:44:36,880 --> 00:44:39,060 +it easier for me to use code, and I don't want to + +764 +00:44:39,060 --> 00:44:41,740 +go into details, but at the same time, I connected + +765 +00:44:41,740 --> 00:44:48,920 +my life span to a certain class, okay? And we will + +766 +00:44:48,920 --> 00:44:50,340 +talk about this in the next lecture, about working + +767 +00:44:50,340 --> 00:44:52,220 +in software testing, and how much this is a + +768 +00:44:52,220 --> 00:44:57,930 +negative point.I pass my dependency from outside, + +769 +00:44:58,050 --> 00:44:59,990 +because the word dependency is something that I + +770 +00:44:59,990 --> 00:45:02,890 +need to rely on, it comes from outside, here it is + +771 +00:45:02,890 --> 00:45:07,150 +inside, I pass it from outside, now I can change + +772 +00:45:07,150 --> 00:45:08,170 +this passing from outside + +773 +00:45:11,010 --> 00:45:13,450 +So if I send a condition to B, will it accept it + +774 +00:45:13,450 --> 00:45:15,870 +or not? Yes, it will accept it As we said to the + +775 +00:45:15,870 --> 00:45:17,590 +graph manager when he was accepting shapes, not + +776 +00:45:17,590 --> 00:45:20,770 +all of them sent circles or rectangles The + +777 +00:45:20,770 --> 00:45:23,370 +advantage is that I can change in B and extend and + +778 +00:45:23,370 --> 00:45:25,290 +make any class I want as long as it is of the type + +779 +00:45:25,290 --> 00:45:30,810 +B, I can pass it So the extensibility of the code + +780 +00:45:30,810 --> 00:45:34,590 +is higher here, I have more flexibility But at the + +781 +00:45:34,590 --> 00:45:38,030 +same time, the difficulty is In order to identify + +782 +00:45:38,030 --> 00:45:39,510 +an object from A, I need to know what is its + +783 +00:45:39,510 --> 00:45:43,030 +dependency. It depends on B. It can also depend on + +784 +00:45:43,030 --> 00:45:47,350 +B and C. Am I right or not? This process of + +785 +00:45:47,350 --> 00:45:57,830 +aggregation is called Dependency Injection. + +786 +00:46:02,730 --> 00:46:04,230 +What is Injection? + +787 +00:46:06,480 --> 00:46:09,380 +In order to create an object, you have to get the + +788 +00:46:09,380 --> 00:46:13,740 +dependency from outside. This is the best way. We + +789 +00:46:13,740 --> 00:46:17,640 +should rely on it again, despite its difficulty. + +790 +00:46:19,100 --> 00:46:21,140 +What is its difficulty? I don't know why I didn't + +791 +00:46:21,140 --> 00:46:21,840 +mention it. + +792 +00:46:26,560 --> 00:46:30,940 +The difficulty is as follows. The process is not + +793 +00:46:30,940 --> 00:46:34,890 +always simple and calm. For example, if you have a + +794 +00:46:34,890 --> 00:46:39,610 +mobile phone and you have a screen class A This + +795 +00:46:39,610 --> 00:46:43,970 +screen needs something called view manager or view + +796 +00:46:43,970 --> 00:46:48,230 +model So A depends on a class called B for example + +797 +00:46:48,230 --> 00:46:52,250 +B needs to connect to an external repository that + +798 +00:46:52,250 --> 00:46:56,870 +has a class C This C must connect to a certain API + +799 +00:46:56,870 --> 00:47:04,060 +and connect to a database that needs D and EThe D + +800 +00:47:04,060 --> 00:47:07,900 +that connects to API also needs another library to + +801 +00:47:07,900 --> 00:47:14,560 +build objects or a JSON or a BGF And the F might + +802 +00:47:14,560 --> 00:47:19,740 +need a Q and the E might need an M All of these + +803 +00:47:19,740 --> 00:47:23,320 +are dependencies. This is what happens in projects + +804 +00:47:23,320 --> 00:47:26,760 +So this means that in order to build an object + +805 +00:47:26,760 --> 00:47:32,340 +from A You have to calculate this, and this, and + +806 +00:47:32,340 --> 00:47:35,020 +this, and this, and this, and this, and this, and + +807 +00:47:35,020 --> 00:47:38,440 +this, and this, and this, and this, and this, and + +808 +00:47:38,440 --> 00:47:38,820 +this, and this, and this, and this, and this, and + +809 +00:47:38,820 --> 00:47:40,340 +this, and this, and this, and this, and this, and + +810 +00:47:40,340 --> 00:47:41,040 +this, and this, and this, and this, and this, and + +811 +00:47:41,040 --> 00:47:41,140 +this, and this, and this, and this, and this, and + +812 +00:47:41,140 --> 00:47:41,600 +this, and this, and this, and this, and this, and + +813 +00:47:41,600 --> 00:47:41,980 +this, and this, and this, and this, and this, and + +814 +00:47:41,980 --> 00:47:41,980 +this, and this, and this, and this, and this, and + +815 +00:47:41,980 --> 00:47:42,040 +this, and this, and this, and this, and this, and + +816 +00:47:42,040 --> 00:47:45,560 +this, and this, and this, and this, + +817 +00:47:47,240 --> 00:47:47,920 +and this, and this, and this, and this, and this, + +818 +00:47:47,920 --> 00:47:48,220 +and this, and this, and this, and this, and this, + +819 +00:47:48,460 --> 00:47:48,480 +and this, and this, and this, and this, and this, + +820 +00:47:48,480 --> 00:47:53,720 +and this, and this, and + +821 +00:47:53,720 --> 00:47:59,950 +this Dependency Injection is better, I will give + +822 +00:47:59,950 --> 00:48:02,530 +examples of why it is better, because as I said, + +823 +00:48:02,610 --> 00:48:04,430 +any one of these that you extend in front of you + +824 +00:48:04,430 --> 00:48:08,310 +gets bored, but at the same time, the code you + +825 +00:48:08,310 --> 00:48:11,630 +follow is harder. That is why they have something + +826 +00:48:11,630 --> 00:48:15,670 +called Dependency Injection Frameworks. What is + +827 +00:48:15,670 --> 00:48:18,290 +Dependency Injection Framework? I go to the + +828 +00:48:18,290 --> 00:48:23,640 +library and say, I have a tree like this. If I + +829 +00:48:23,640 --> 00:48:25,300 +have A that depends on B and B that depends on C + +830 +00:48:25,300 --> 00:48:28,260 +and C that depends on D and E and so on I learn + +831 +00:48:28,260 --> 00:48:32,360 +the tree and then I just pull it to the right and + +832 +00:48:32,360 --> 00:48:35,460 +what does the branch do? it pulls the tree to the + +833 +00:48:35,460 --> 00:48:39,100 +left and it becomes a head of an advanced + +834 +00:48:39,100 --> 00:48:42,240 +injection framework that is used a lot in projects + +835 +00:48:42,240 --> 00:48:45,620 +whether it is mobile or desktop or web and this is + +836 +00:48:45,620 --> 00:48:48,200 +what will lead to the next lecture inshallah + +837 +00:48:48,200 --> 00:48:50,120 +alright guys, thank you + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/cXH_MqH_Lss.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/cXH_MqH_Lss.srt new file mode 100644 index 0000000000000000000000000000000000000000..7b70e2600cc0491818cce6f83f3dfb2ca1e092f3 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/cXH_MqH_Lss.srt @@ -0,0 +1,2298 @@ + +1 +00:00:05,160 --> 00:00:08,440 +Ok guys, peace be upon you. Today, God willing, we + +2 +00:00:08,440 --> 00:00:10,920 +will take a new design pattern called Visitor + +3 +00:00:10,920 --> 00:00:16,040 +Design Pattern. What is Visitor? Visitor. Ok, + +4 +00:00:16,680 --> 00:00:21,440 +Visitor Design Pattern solves a problem that + +5 +00:00:21,440 --> 00:00:24,300 +programmers faced and it was one of the most + +6 +00:00:24,300 --> 00:00:29,260 +common problems and it was as follows. Now we know + +7 +00:00:29,260 --> 00:00:31,800 +in object-oriented programming that if I have an + +8 +00:00:31,800 --> 00:00:32,340 +interface + +9 +00:00:36,820 --> 00:00:41,540 +and there are methods for example A and B, and then + +10 +00:00:41,540 --> 00:00:45,960 +this interface is made of classes that implement + +11 +00:00:45,960 --> 00:00:49,360 +the interface. For example, I have class X and class + +12 +00:00:49,360 --> 00:00:53,100 +Y and these are made to implement the interface. It + +13 +00:00:53,100 --> 00:00:55,200 +is known that any class that makes an implement + +14 +00:00:55,200 --> 00:01:00,240 +interface is mandatory. You have to implement for + +15 +00:01:00,240 --> 00:01:03,540 +all methods in this interface. You have to + +16 +00:01:03,540 --> 00:01:06,120 +implement for A and B and you have to implement + +17 +00:01:06,120 --> 00:01:12,380 +for A and B. Because the existing problem is that + +18 +00:01:12,380 --> 00:01:16,240 +you want to add a new method to the interface. For + +19 +00:01:16,240 --> 00:01:20,270 +example, you want to add method C. Why do we want + +20 +00:01:20,270 --> 00:01:22,130 +to add it here? In order to support polymorphism, + +21 +00:01:22,430 --> 00:01:25,810 +in the end, these x and y are of the interface + +22 +00:01:25,810 --> 00:01:28,610 +type, right or wrong? I can put them in one array + +23 +00:01:28,610 --> 00:01:31,230 +and make a loop on them and implement method A and + +24 +00:01:31,230 --> 00:01:36,950 +B and then add method C. Now if I add a new method + +25 +00:01:36,950 --> 00:01:40,930 +to make a new function, multiply by whom? The + +26 +00:01:40,930 --> 00:01:43,510 +subclasses. Of course the process can be + +27 +00:01:43,510 --> 00:01:47,370 +complicated. I can have an interface with 20-30 + +28 +00:01:47,370 --> 00:01:51,820 +classes. Can there be a program in our life that has + +29 +00:01:51,820 --> 00:01:53,380 +an interface that is separated from it by 20 or 30 + +30 +00:01:53,380 --> 00:01:56,420 +classes? Yes, of course. For example, JavaFX or + +31 +00:01:56,420 --> 00:01:59,620 +Swing. You don't have a user interface component, + +32 +00:01:59,740 --> 00:02:04,760 +button, list, combo box, and all these items. All + +33 +00:02:04,760 --> 00:02:07,000 +of them are separated from what? From one + +34 +00:02:07,000 --> 00:02:10,320 +interface. Okay? And in Android and Flutter, all + +35 +00:02:10,320 --> 00:02:13,020 +of them are in the end user interface components + +36 +00:02:13,020 --> 00:02:15,430 +that are numbered in tens. It will be separated + +37 +00:02:15,430 --> 00:02:17,470 +from one interface. If you want to add a new + +38 +00:02:17,470 --> 00:02:23,970 +functionality that supports any UI + +39 +00:02:23,970 --> 00:02:27,070 +component, use this method. Of course, you will + +40 +00:02:27,070 --> 00:02:29,670 +add this method to the interface, but when you add + +41 +00:02:29,670 --> 00:02:32,670 +it to the interface, all the subclasses will be + +42 +00:02:32,670 --> 00:02:35,950 +affected. Now, what we want to do, our goal is to + +43 +00:02:35,950 --> 00:02:41,170 +add new functions or functions to the interface + +44 +00:02:41,170 --> 00:02:46,010 +without affecting anyone. Subclasses, this is what + +45 +00:02:46,010 --> 00:02:48,630 +we are used to always have, right or wrong, that + +46 +00:02:48,630 --> 00:02:50,190 +you add something to the interface and you + +47 +00:02:50,190 --> 00:02:54,030 +multiply by whom? Yes, all the subclasses. How can + +48 +00:02:54,030 --> 00:02:56,410 +we add something new to the interface without + +49 +00:02:56,410 --> 00:02:59,290 +multiplying by the subclasses? This is the goal + +50 +00:02:59,290 --> 00:03:02,770 +that we want to achieve. Okay guys, before we + +51 +00:03:02,770 --> 00:03:05,470 +explain the visitor pattern, this problem is one + +52 +00:03:05,470 --> 00:03:09,350 +of the problems that had a big debate even between + +53 +00:03:09,350 --> 00:03:11,970 +Java designers, okay? The Java designers + +54 +00:03:11,970 --> 00:03:14,210 +themselves, and any object-oriented programmer + +55 +00:03:14,210 --> 00:03:18,090 +said, we are overwhelmed, every time we do a + +56 +00:03:18,090 --> 00:03:19,690 +hierarchical class like that, it breaks off from + +57 +00:03:19,690 --> 00:03:22,090 +the interface and we want to add something, it + +58 +00:03:22,090 --> 00:03:25,390 +will hit us every class. So what did they do in + +59 +00:03:25,390 --> 00:03:27,450 +Java? Did you notice? This is one of the things + +60 +00:03:27,450 --> 00:03:30,610 +that appeared in Java 8, which is version 8 of + +61 +00:03:30,610 --> 00:03:32,630 +Java. Did you notice that Java reached 11 for + +62 +00:03:32,630 --> 00:03:39,970 +example? In Java 8, they added something new to + +63 +00:03:39,970 --> 00:03:43,290 +support the work that we are talking about. For + +64 +00:03:43,290 --> 00:03:45,830 +example, let's take a simple example similar to + +65 +00:03:45,830 --> 00:03:48,330 +things that we... For example, if I made an + +66 +00:03:48,330 --> 00:03:52,110 +interface called shape, okay? And there is a + +67 +00:03:52,110 --> 00:03:58,450 +method, public, for example, void, draw. Okay? And + +68 +00:03:58,450 --> 00:04:02,890 +then I made classes from this shape. This is circle. + +69 +00:04:02,890 --> 00:04:10,920 +The circle, for example, has a radius, and I also + +70 +00:04:10,920 --> 00:04:17,440 +have the rectangle, this + +71 +00:04:17,440 --> 00:04:25,880 +has integer width and height. Now + +72 +00:04:25,880 --> 00:04:28,240 +I want the circle and rectangle to have the same + +73 +00:04:28,240 --> 00:04:32,680 +shape, and both of them to implement the method + +74 +00:04:32,680 --> 00:04:35,660 +draw each one in a different way. Now I go to the + +75 +00:04:35,660 --> 00:04:39,490 +circle and say implement shape. Because, of course, + +76 +00:04:39,490 --> 00:04:41,270 +it will give me an error because I have to make an + +77 +00:04:41,270 --> 00:04:45,230 +implement to draw. And instead of this code that I + +78 +00:04:45,230 --> 00:04:49,990 +write here. For example, system.out.println. Drawing + +79 +00:04:49,990 --> 00:04:53,190 +drawing + +80 +00:04:53,190 --> 00:04:58,370 +a circle. And for example, I have rectangle + +81 +00:04:58,370 --> 00:05:01,850 +implement shape + +82 +00:05:13,620 --> 00:05:17,640 +Drawing a rectangle. Okay, now we want to go to the + +83 +00:05:17,640 --> 00:05:21,020 +interface and add a new method. For example, for + +84 +00:05:21,020 --> 00:05:23,920 +all shapes, I want to calculate their area. We want + +85 +00:05:23,920 --> 00:05:27,660 +to create a method, for example, public double calc + +86 +00:05:27,660 --> 00:05:32,300 +area to calculate the area. Of course, since I + +87 +00:05:32,300 --> 00:05:34,800 +added it here, what happened to me? They hit them. + +88 +00:05:34,800 --> 00:05:37,760 +So now we want to see how to add the new function + +89 +00:05:37,760 --> 00:05:41,790 +without hitting it. If you notice in Java, they made + +90 +00:05:41,790 --> 00:05:46,190 +new solutions. I don't think they took it in + +91 +00:05:46,190 --> 00:05:50,450 +programming. They invented something new in Java + +92 +00:05:50,450 --> 00:05:53,630 +8. You can make method calc area, for example, + +93 +00:05:54,330 --> 00:06:00,510 +return zero. We always know that in the interface + +94 +00:06:00,510 --> 00:06:03,190 +you can't put methods, the method in the interface + +95 +00:06:03,190 --> 00:06:06,210 +should be abstract. But he told us that from the + +96 +00:06:06,210 --> 00:06:08,170 +new things that they started to support, you can + +97 +00:06:08,170 --> 00:06:11,250 +put method calcarea and of course we put + +98 +00:06:11,250 --> 00:06:13,050 +implementation for it. But he told us that you + +99 +00:06:13,050 --> 00:06:16,030 +can't do that, the interface should only contain + +100 +00:06:17,170 --> 00:06:19,410 +abstract. So, I tell you to avoid the abstract and + +101 +00:06:19,410 --> 00:06:23,170 +write the word what? Default after public, for + +102 +00:06:23,170 --> 00:06:25,110 +example, or private, whatever you want. Okay? That's + +103 +00:06:25,110 --> 00:06:27,850 +how it became. That's how the interface became + +104 +00:06:27,850 --> 00:06:32,410 +similar in the class that you can put a method in + +105 +00:06:32,410 --> 00:06:34,910 +the interface and it has implementation. Now, the + +106 +00:06:34,910 --> 00:06:39,070 +method is still there, you can, did you notice the + +107 +00:06:39,070 --> 00:06:42,430 +circle and rectangle? There is no arrow in them, + +108 +00:06:42,510 --> 00:06:45,110 +okay? And they support, did you notice that they + +109 +00:06:45,110 --> 00:06:49,350 +inherited from whom? CalcArea. If they want to make + +110 +00:06:49,350 --> 00:06:52,810 +override, it's up to them, okay? You come here, + +111 +00:06:53,230 --> 00:06:56,430 +you can make override for the method that is draw + +112 +00:06:56,430 --> 00:07:03,730 +CalcArea and change the code. Of course, here you + +113 +00:07:03,730 --> 00:07:05,630 +use super by default, you change the code that you + +114 +00:07:05,630 --> 00:07:08,630 +want. Here, for example, return. I'm in any class + +115 +00:07:08,630 --> 00:07:14,370 +circle, for example, math.py x radius x radius + +116 +00:07:17,500 --> 00:07:23,140 +and it is like this in rectangle. This is one of + +117 +00:07:23,140 --> 00:07:25,660 +the new things they did in Java, which is default + +118 +00:07:25,660 --> 00:07:30,300 +method, and as I said, this is new because it solves + +119 +00:07:30,300 --> 00:07:33,960 +the problem we are talking about. Okay, this default + +120 +00:07:33,960 --> 00:07:36,100 +method is not supported in all object-oriented + +121 +00:07:36,100 --> 00:07:38,460 +programming languages. Okay, in Java, we found a + +122 +00:07:38,460 --> 00:07:40,500 +solution to the problem, and this is a new + +123 +00:07:40,500 --> 00:07:42,600 +solution they proposed, okay? But in other + +124 +00:07:42,600 --> 00:07:45,500 +languages, in PHP, for example, PHP is object + +125 +00:07:45,500 --> 00:07:47,060 +-oriented, but it does not have a solution to + +126 +00:07:47,060 --> 00:07:49,040 +what? To the default. When you make a method in the + +127 +00:07:49,040 --> 00:07:52,820 +interface, you must implement it in the classes. So + +128 +00:07:52,820 --> 00:07:54,980 +how did I find it? Let's go back to the visitor + +129 +00:07:54,980 --> 00:07:57,800 +pattern. We can add a new functionality to the + +130 +00:07:57,800 --> 00:08:01,710 +interface without hitting it. Yes, for classes, + +131 +00:08:02,270 --> 00:08:04,570 +without using the default method because it is a + +132 +00:08:04,570 --> 00:08:06,010 +default method and the solution is specific to + +133 +00:08:06,010 --> 00:08:12,370 +Java. Okay, + +134 +00:08:12,490 --> 00:08:14,170 +let's go to the gate directly and apply the + +135 +00:08:14,170 --> 00:08:16,590 +solution, let's see how we apply the visitor + +136 +00:08:16,590 --> 00:08:20,890 +pattern, pay attention with me. There are things + +137 +00:08:20,890 --> 00:08:22,790 +that may not be clear. I will explain with you at + +138 +00:08:22,790 --> 00:08:26,830 +the end. Okay, to remind ourselves of our main goal, + +139 +00:08:27,310 --> 00:08:29,430 +that we want to be able to add a new functionality + +140 +00:08:29,430 --> 00:08:35,490 +that we support in subclasses without having to + +141 +00:08:35,490 --> 00:08:44,360 +change or modify the methods. Or in my classes, it + +142 +00:08:44,360 --> 00:08:46,300 +doesn't want my implementation to be affected. + +143 +00:08:46,820 --> 00:08:48,560 +What is my implementation? It is a circle and + +144 +00:08:48,560 --> 00:08:50,800 +rectangle. It needs to be added through the + +145 +00:08:50,800 --> 00:08:53,500 +interface. It is a new method without affecting + +146 +00:08:53,500 --> 00:08:58,680 +the implementation. Okay? Okay, to do this thing, + +147 +00:08:58,980 --> 00:09:00,840 +we need to do the following. The first thing we + +148 +00:09:00,840 --> 00:09:03,940 +need to do is to create a new class. + +149 +00:09:06,300 --> 00:09:09,740 +Or a new interface at first. Its name is iVisitor. + +150 +00:09:12,550 --> 00:09:17,550 +This I means it is an interface. Now, inside the I + +151 +00:09:17,550 --> 00:09:20,610 +visitor, you see how many forms we have in our + +152 +00:09:20,610 --> 00:09:25,150 +hierarchy? Two. You see how many classes I have, I + +153 +00:09:25,150 --> 00:09:29,050 +have two classes, each one in the visitor makes a + +154 +00:09:29,050 --> 00:09:35,720 +method. You say public void process, and this one + +155 +00:09:35,720 --> 00:09:39,900 +takes an object of type circle. Of course, we will + +156 +00:09:39,900 --> 00:09:45,900 +explain these words, then public void process will + +157 +00:09:45,900 --> 00:09:50,440 +take rectangle. That's + +158 +00:09:50,440 --> 00:09:54,960 +it, because I have two classes only, and this + +159 +00:09:54,960 --> 00:09:58,080 +interface is called ivisitor. When we finish the + +160 +00:09:58,080 --> 00:10:00,740 +interface, we go to the gate to the interface which + +161 +00:10:00,740 --> 00:10:04,890 +is the basic of shapes, which is shape, we add a new + +162 +00:10:04,890 --> 00:10:11,430 +method public void named accept, or any name you + +163 +00:10:11,430 --> 00:10:15,370 +want. And this accept takes an object of type i + +164 +00:10:15,370 --> 00:10:22,170 +visitor named v. Okay? We will talk about this + +165 +00:10:22,170 --> 00:10:24,630 +method later since this method is added to the + +166 +00:10:24,630 --> 00:10:27,110 +interface shape. This method must be multiplied + +167 +00:10:27,110 --> 00:10:29,290 +where, guys? Yes. In the previous one, they + +168 +00:10:29,290 --> 00:10:32,010 +multiplied at the circle and rectangles. So I will go + +169 +00:10:32,010 --> 00:10:35,130 +to circle, and tell it to implement, and it will add + +170 +00:10:35,130 --> 00:10:39,850 +method accept, and I will also go to rectangle, and + +171 +00:10:39,850 --> 00:10:43,710 +it will add method accept. + +172 +00:10:46,110 --> 00:10:48,750 +So, it remains one step and we finish it, and then + +173 +00:10:48,750 --> 00:10:51,650 +we explain what we have done. Go to the method + +174 +00:10:51,650 --> 00:10:55,490 +accept that is in the circle. Remove the code that + +175 +00:10:55,490 --> 00:10:58,890 +you put by default, and then go to the v who is the + +176 +00:10:58,890 --> 00:11:02,890 +v? The visitor, and you tell him process, and you + +177 +00:11:02,890 --> 00:11:06,150 +give him this. Who is this? Which is the current + +178 +00:11:06,150 --> 00:11:10,330 +class. And the same thing, go to the rectangle and + +179 +00:11:10,330 --> 00:11:15,330 +tell him v.process and you give him this. + +180 +00:11:19,050 --> 00:11:23,230 +Okay guys, we're done. Do you understand what I + +181 +00:11:23,230 --> 00:11:27,890 +did? Yes? No? Okay, let's explain what we did. I + +182 +00:11:27,890 --> 00:11:32,070 +brought back the idea where it is. And to convey + +183 +00:11:32,070 --> 00:11:35,150 +the idea to you, imagine that I have a shed and I + +184 +00:11:35,150 --> 00:11:38,560 +want to add new things to it. For example, they + +185 +00:11:38,560 --> 00:11:41,440 +asked me to make a new room, open a new window, + +186 +00:11:42,660 --> 00:11:45,580 +fix a broken thing. Now, it doesn't make sense that + +187 +00:11:45,580 --> 00:11:47,640 +every time I want to do something new, they tell + +188 +00:11:47,640 --> 00:11:51,580 +me to leave the old thing and go get a new one. No, + +189 +00:11:51,760 --> 00:11:53,820 +I'm done. I'm in the old thing. I want to add new + +190 +00:11:53,820 --> 00:11:56,100 +things, at the same time. I can't add these new + +191 +00:11:56,100 --> 00:11:59,180 +things. So what do I do? For example, I want to + +192 +00:11:59,180 --> 00 + +223 +00:13:49,080 --> 00:13:54,300 +calcarea Who did they hit? All the buildings. But + +224 +00:13:54,300 --> 00:13:57,740 +no, now I want to create a space calculation. + +225 +00:13:57,740 --> 00:14:00,680 +Simply, you create a method, accept, and what does + +226 +00:14:00,680 --> 00:14:05,960 +it take? I visitor. This gate is like we want the + +227 +00:14:05,960 --> 00:14:10,540 +sheep to connect to the visitor who calculates the + +228 +00:14:10,540 --> 00:14:13,760 +space. And this visitor will receive him through + +229 +00:14:13,760 --> 00:14:16,880 +the accept. From the door of the house, I say to + +230 +00:14:16,880 --> 00:14:20,150 +him, please come in, and then I greet him. The + +231 +00:14:20,150 --> 00:14:22,450 +shape is to calculate the space it wants and make + +232 +00:14:22,450 --> 00:14:25,170 +it what it wants. Ok, we are not done yet, did you + +233 +00:14:25,170 --> 00:14:28,390 +find it? To try this thing, let's go to the main + +234 +00:14:28,390 --> 00:14:32,690 +method. And let's try to make objects of type for + +235 +00:14:32,690 --> 00:14:37,490 +example, circle c1, new circle, and give it c1 dot + +236 +00:14:37,490 --> 00:14:41,590 +radius for example 10, and then make another object + +237 +00:14:41,590 --> 00:14:48,010 +rectangle R1 equal to new rectangle, and give it r1 + +238 +00:14:48,010 --> 00:14:57,270 +.width for example 5 and r1.height 10. Now + +239 +00:14:57,270 --> 00:15:02,470 +of course, I can put these shapes in the shape of + +240 +00:15:02,470 --> 00:15:06,490 +the shape, I put c1 and r1, and then I can say for + +241 +00:15:06,490 --> 00:15:11,970 +each shape p is present in shapes, okay? Because you + +242 +00:15:11,970 --> 00:15:17,440 +can say pp.draw because this draw is present in + +243 +00:15:17,440 --> 00:15:20,880 +the interface. Ok, we like this gate because we + +244 +00:15:20,880 --> 00:15:24,760 +calculate the area of shapes. Ok, to calculate the + +245 +00:15:24,760 --> 00:15:27,640 +area of shapes, as we said, the solution that we + +246 +00:15:27,640 --> 00:15:32,180 +got used to is to add a method called calcArea, + +247 +00:15:32,180 --> 00:15:34,960 +and when you add it, it will multiply the classes + +248 +00:15:34,960 --> 00:15:37,740 +until you implement them. We don't want the classes + +249 +00:15:37,740 --> 00:15:39,800 +to multiply the implementation of it. How can we + +250 +00:15:39,800 --> 00:15:42,260 +make it calculate CalcArea without multiplying it? + +251 +00:15:42,620 --> 00:15:44,580 +I'll tell you simply, if you don't modify the + +252 +00:15:44,580 --> 00:15:49,020 +shape, go ask a visitor to do this job for you. So + +253 +00:15:49,020 --> 00:15:50,940 +what are we going to do now? I have an interface + +254 +00:15:50,940 --> 00:15:54,120 +called iVisitor, we will make a new class from + +255 +00:15:54,120 --> 00:15:57,610 +this iVisitor, It is the one that calculates the + +256 +00:15:57,610 --> 00:16:00,330 +dimensions. What can we call this visitor for + +257 +00:16:00,330 --> 00:16:03,810 +example? Area visitor. This visitor is specialized + +258 +00:16:03,810 --> 00:16:08,690 +in calculating dimensions. Okay? And we say to + +259 +00:16:08,690 --> 00:16:11,610 +him, of course, so that I can send him to + +260 +00:16:11,610 --> 00:16:14,550 +implement iVisitor. + +261 +00:16:17,090 --> 00:16:19,830 +Okay? And did you get it? He said, yes, simply. + +262 +00:16:19,950 --> 00:16:23,080 +This visitor is specialized in dimensions. It + +263 +00:16:23,080 --> 00:16:26,060 +serves a lot of people and fixes chairs and + +264 +00:16:26,060 --> 00:16:29,300 +cupboards. It fixes whatever it wants. Okay? It is + +265 +00:16:29,300 --> 00:16:32,400 +a carpenter. It is specialized in calculating + +266 +00:16:32,400 --> 00:16:34,700 +areas. It calculates the area of the circle, + +267 +00:16:34,860 --> 00:16:37,880 +rectangle, and whatever shape you want. So it comes + +268 +00:16:37,880 --> 00:16:39,040 +to the circle, for example, it wants to calculate + +269 +00:16:39,040 --> 00:16:41,500 +its area. It says, for example, system.out + +270 +00:16:41,500 --> 00:16:44,480 +.println. Where did I turn it on? In the class + +271 +00:16:44,480 --> 00:16:49,860 +called AreaVisitor. It needs to calculate math.pi + +272 +00:16:49,860 --> 00:16:59,060 +x c.radius x c.radius. In rectangle, system.out + +273 +00:16:59,060 --> 00:17:07,880 +.println r.width x r.height. This is the visitor + +274 +00:17:07,880 --> 00:17:13,330 +that I will use to do what I want. Okay, I haven't + +275 +00:17:13,330 --> 00:17:16,230 +used this class yet. Where will I use it? In the + +276 +00:17:16,230 --> 00:17:21,830 +main? I will go to the gate, and before this loop I + +277 +00:17:21,830 --> 00:17:24,210 +will create an object from area visitor, I will + +278 +00:17:24,210 --> 00:17:32,150 +call it av, you saw, new area visitor. And then when + +279 +00:17:32,150 --> 00:17:35,370 +I come to make a loop on shapes, I draw and then I + +280 +00:17:35,370 --> 00:17:39,990 +go to the shape and I say what? accept, and I send + +281 +00:17:39,990 --> 00:17:47,200 +it to whom? AV is Area Visitor. Let's + +282 +00:17:47,200 --> 00:17:49,600 +see what will happen to this gate. This gate does + +283 +00:17:49,600 --> 00:17:53,460 +not rotate and execute accept. This gate's first + +284 +00:17:53,460 --> 00:17:58,340 +shape is circle. So it goes to class circle and + +285 +00:17:58,340 --> 00:18:04,640 +executes this accept. What is this accept? I go to + +286 +00:18:04,640 --> 00:18:07,460 +the visitor and ask him to process this. Who is + +287 +00:18:07,460 --> 00:18:10,880 +this? The circle. It's like I brought my potter to + +288 +00:18:10,880 --> 00:18:14,940 +my house and told him to submit. And I leave him. + +289 +00:18:15,000 --> 00:18:17,860 +Do I have to know the details and what he does? + +290 +00:18:17,980 --> 00:18:20,200 +No, that's it. I can hand over the work and tell + +291 +00:18:20,200 --> 00:18:23,760 +him to work. And so on. I sent the visitor to the + +292 +00:18:23,760 --> 00:18:25,640 +circle. The circle received the visitor and told + +293 +00:18:25,640 --> 00:18:29,440 +him to go ahead. Take this. Who is this? The + +294 +00:18:29,440 --> 00:18:32,140 +object. To take from him who? The radius in the + +295 +00:18:32,140 --> 00:18:36,010 +other. Okay? And the same thing, when I look at the + +296 +00:18:36,010 --> 00:18:40,050 +rectangle, I will go to the rectangle and it will + +297 +00:18:40,050 --> 00:18:45,450 +say process v dot process this. So now I apply the + +298 +00:18:45,450 --> 00:18:47,650 +concept of polymorphism, I make loops on the + +299 +00:18:47,650 --> 00:18:50,850 +elements, each person calculates the area, and I + +300 +00:18:50,850 --> 00:18:52,870 +added a new functionality. For example, this is + +301 +00:18:52,870 --> 00:18:55,730 +the drawing circle, and this is its area. The + +302 +00:18:55,730 --> 00:18:58,730 +drawing rectangle, and this is the area of ​​the + +303 +00:18:58,730 --> 00:19:03,040 +rectangle, which is five times ten, because we + +304 +00:19:03,040 --> 00:19:07,160 +want to add new functions, for example, did you + +305 +00:19:07,160 --> 00:19:08,300 +notice that we want to calculate the circumference + +306 +00:19:08,300 --> 00:19:13,740 +of shapes? As we said, the traditional way that we + +307 +00:19:13,740 --> 00:19:16,660 +are used to is that you go to the shape interface + +308 +00:19:16,660 --> 00:19:20,740 +and add method calc perimeter, but also when you + +309 +00:19:20,740 --> 00:19:23,720 +added it, who hit you? The children did you notice + +310 +00:19:23,720 --> 00:19:26,180 +that? No, I don't want my children to hit me, it + +311 +00:19:26,180 --> 00:19:29,360 +costs the visitor outside to do this thing for you + +312 +00:19:29,360 --> 00:19:32,770 +so we go and create a new class. Its name is for + +313 +00:19:32,770 --> 00:19:41,330 +example Perimeter Visitor. And I say Implements to + +314 +00:19:41,330 --> 00:19:47,150 +I Visitor, Because now you are assigned to + +315 +00:19:47,150 --> 00:19:49,830 +calculate the circumference of the shapes. For + +316 +00:19:49,830 --> 00:19:51,250 +example, this is how you calculate the + +317 +00:19:51,250 --> 00:19:55,630 +circumference. System.out.println, circumference of + +318 +00:19:55,630 --> 00:19:58,550 +the circle 2 in math.py + +319 +00:20:01,730 --> 00:20:08,230 +c.radius, now the rectangle system + +320 +00:20:08,230 --> 00:20:17,530 +.out.println two times the sum of r.width plus r + +321 +00:20:17,530 --> 00:20:21,010 +.height. Correct or not, guys? Now I go back to the + +322 +00:20:21,010 --> 00:20:24,690 +main method. It has to rotate on the shapes and + +323 +00:20:24,690 --> 00:20:26,670 +calculate its circumference. All that you have to + +324 +00:20:26,670 --> 00:20:28,990 +do is go and create another visitor called + +325 +00:20:28,990 --> 00:20:29,990 +perimeter + +326 +00:20:34,110 --> 00:20:44,310 +visitor, pv, and + +327 +00:20:44,310 --> 00:20:53,170 +then rotate the shapes and say p.accept.pv, and + +328 +00:20:53,170 --> 00:20:55,530 +so on, every time you add a new function, you make + +329 +00:20:55,530 --> 00:20:59,810 +it your own visitor. Now this method, accept, is like + +330 +00:20:59,810 --> 00:21:04,290 +an open door for additions. Am I right or not + +331 +00:21:04,290 --> 00:21:11,450 +guys? I made this accept to make visitors do new + +332 +00:21:11,450 --> 00:21:14,650 +tasks and repeat them without adding additional + +333 +00:21:14,650 --> 00:21:18,050 +methods to the interface because we saw that + +334 +00:21:18,050 --> 00:21:20,250 +adding additional methods disrupted all + +335 +00:21:20,250 --> 00:21:22,930 +implementations. Someone will ask me a question + +336 +00:21:22,930 --> 00:21:24,550 +and I will say what is the accept that you made + +337 +00:21:24,550 --> 00:21:27,930 +when you added it? I changed it to subclasses. + +338 +00:21:27,950 --> 00:21:30,820 +Okay, this is the first time. Right or not? But + +339 +00:21:30,820 --> 00:21:34,540 +for the first time, when the designer designs the + +340 +00:21:34,540 --> 00:21:37,900 +hierarchy class, he puts the basic methods, and + +341 +00:21:37,900 --> 00:21:42,280 +then leaves the accept as an open door, and the + +342 +00:21:42,280 --> 00:21:45,800 +subclasses have to implement it to give the + +343 +00:21:45,800 --> 00:21:49,190 +visitor a message, but what does this do? The first + +344 +00:21:49,190 --> 00:21:51,190 +time. After that, as we said, as we saw in our + +345 +00:21:51,190 --> 00:21:52,850 +example, I have to add something to calculate the + +346 +00:21:52,850 --> 00:21:55,030 +area, to calculate the circumference, to calculate + +347 +00:21:55,030 --> 00:21:58,530 +the size, to calculate whatever, any new method, I + +348 +00:21:58,530 --> 00:22:02,110 +don't modify at all, not on the interface, nor on + +349 +00:22:02,110 --> 00:22:05,170 +the subclasses. What happened to these? They are + +350 +00:22:05,170 --> 00:22:08,610 +fixed. But I make visitors outside, like the idea + +351 +00:22:08,610 --> 00:22:11,470 +of hanging out in the house, okay? I don't want + +352 +00:22:11,470 --> 00:22:14,030 +to change the house, okay? As long as ... No, + +353 +00:22:14,150 --> 00:22:17,780 +look, come visitor, do something to me. Okay? And + +354 +00:22:17,780 --> 00:22:20,380 +I'm going to be what? I'm going to have a door to + +355 +00:22:20,380 --> 00:22:23,280 +the house that's always open to visitors, okay? + +356 +00:22:23,800 --> 00:22:25,340 +It's like the accent, it's like the door to the + +357 +00:22:25,340 --> 00:22:27,100 +house that I receive through visitors, and I charge + +358 +00:22:27,100 --> 00:22:33,920 +them with the work they do. This is the idea of the + +359 +00:22:33,920 --> 00:22:37,020 +visitor pattern. For this reason, designers who + +360 +00:22:37,020 --> 00:22:39,800 +work in a hierarchy like this, always put methods + +361 +00:22:39,800 --> 00:22:41,700 +in the interface and put a method in the end, such + +362 +00:22:41,700 --> 00:22:45,440 +as accept, to receive from within it. Anyone who + +363 +00:22:45,440 --> 00:22:48,620 +wants to add something new, he adds it through + +364 +00:22:48,620 --> 00:22:52,940 +visitors. Those who make APIs to support anyone + +365 +00:22:52,940 --> 00:22:55,860 +who wants to add a new functionality without + +366 +00:22:55,860 --> 00:22:59,260 +changing the implementation of the classes, these + +367 +00:22:59,260 --> 00:23:00,240 +APIs provide this possibility. + +368 +00:23:02,820 --> 00:23:05,560 +Now, this is just the same example. Did you get it + +369 +00:23:05,560 --> 00:23:09,300 +guys? Let's draw and imagine the shape of the UML. + +370 +00:23:10,560 --> 00:23:13,460 +Let's continue with this drawing. This is an + +371 +00:23:13,460 --> 00:23:17,620 +interface with A and B, and they made an implement + +372 +00:23:17,620 --> 00:23:21,640 +for A and B. Now I made it that it should have an + +373 +00:23:21,640 --> 00:23:24,540 +interface called IVisitor. + +374 +00:23:28,080 --> 00:23:30,660 +Because here I have x and y, so here in the + +375 +00:23:30,660 --> 00:23:31,900 +interface, you have to create a method called + +376 +00:23:31,900 --> 00:23:39,960 +process that takes x and process that takes y, ok? + +377 +00:23:40,520 --> 00:23:42,680 +And based on that, here you have to create a method + +378 +00:23:42,680 --> 00:23:47,800 +called accept, that takes an object of type mean i + +379 +00:23:47,800 --> 00:23:51,740 +visitor, and based on how much you added the method + +380 +00:23:51,740 --> 00:23:56,710 +accept, here, you have to add it below. Here I have + +381 +00:23:56,710 --> 00:24:06,810 +accept, also ivisitor, and here accept, ivisitor + +382 +00:24:06,810 --> 00:24:14,130 +and this if we see the code in it, what is it? + +383 +00:24:14,430 --> 00:24:24,640 +Ivisitor is v dot process will take this. Ok guys? + +384 +00:24:24,920 --> 00:24:30,020 +Now this + +385 +00:24:30,020 --> 00:24:35,520 +one uses x, and this one uses y, now if you want to + +386 +00:24:35,520 --> 00:24:41,000 +add a new method, all you have to do is create a + +387 +00:24:41,000 --> 00:24:45,560 +new visitor. For example, we will call this area + +388 +00:24:45,560 --> 00:24:48,100 +visitor. + +389 +00:24:49,920 --> 00:24:54,160 +Of course, this is an implementation for process X + +390 +00:24:54,160 --> 00:24:59,400 +and process Y. + +391 +00:24:59,400 --> 00:25:04,700 +Now, this is the client. Who is the client? It is + +392 +00:25:04,700 --> 00:25:09,260 +like the main method. Now, the main method takes + +393 +00:25:09,260 --> 00:25:13,140 +objects from X and Y, but in the end, it will deal + +394 +00:25:13,140 --> 00:25:17,250 +with them as the interface and it will create an + +395 +00:25:17,250 --> 00:25:19,910 +object from visitors area visitors and it will + +396 +00:25:19,910 --> 00:25:23,790 +deal with it as if it is the visitor, and in the + +397 +00:25:23,790 --> 00:25:26,350 +end, in order for it to execute anything from here + +398 +00:25:26,350 --> 00:25:32,010 +it takes the interface this shape. For example, it + +399 +00:25:32,010 --> 00:25:39,190 +takes a shape and says accept and + +400 +00:25:39,190 --> 00:25:42,310 +sends it the v which is from the visitor that you + +401 +00:25:42,310 --> 00:25:46,910 +want it to be. Something like this. For the UML + +402 +00:25:46,910 --> 00:25:49,950 +diagram of the visitor pattern. Do you understand + +403 +00:25:49,950 --> 00:25:53,390 +the idea, guys? Okay, now that we have covered + +404 +00:25:53,390 --> 00:25:55,190 +this, let's go to the slides. + +405 +00:26:02,890 --> 00:26:07,990 +Motivation. The visitor pattern represents an + +406 +00:26:07,990 --> 00:26:11,150 +operation to be performed on the elements of the + +407 +00:26:11,150 --> 00:26:13,590 +object structure. Because this is what we call the + +408 +00:26:13,590 --> 00:26:15,710 +object structure, which I don't want to modify, + +409 +00:26:16,070 --> 00:26:18,590 +okay? What does the visitor actually represent? + +410 +00:26:19,090 --> 00:26:21,370 +Whose operation is + +445 +00:28:27,880 --> 00:28:29,900 +visitor. We saw that there is a visitor-specific + +446 +00:28:29,900 --> 00:28:32,640 +to the calculation of dimensions. All the + +447 +00:28:32,640 --> 00:28:33,980 +operations of dimensions are present in this + +448 +00:28:33,980 --> 00:28:37,460 +visitor. With the interface of every visitor + +449 +00:28:37,460 --> 00:28:41,420 +representing the different kinds of objects. This + +450 +00:28:41,420 --> 00:28:44,440 +means that the visitor itself will interact with + +451 +00:28:44,440 --> 00:28:46,760 +all kinds of objects. Notice that the visitor + +452 +00:28:46,760 --> 00:28:50,180 +interacts with the X and interacts with Here, of + +453 +00:28:50,180 --> 00:28:52,820 +course, this is the limitation of the visitor + +454 +00:28:52,820 --> 00:28:56,320 +pattern. There is no solution without equations. + +455 +00:28:57,760 --> 00:29:01,620 +The bad point is that when I worked as a visitor, + +456 +00:29:01,940 --> 00:29:04,440 +there was a process for a circle and a process for + +457 +00:29:04,440 --> 00:29:07,980 +a rectangle. This means that if we add a new + +458 +00:29:07,980 --> 00:29:12,020 +shape, it will have to pass through the visitor + +459 +00:29:12,020 --> 00:29:14,460 +tree. We have two trees here. The elements tree + +460 +00:29:14,460 --> 00:29:19,070 +and the main tree. For visitors, every time you + +461 +00:29:19,070 --> 00:29:22,570 +need to do a new operation, you will do a new + +462 +00:29:22,570 --> 00:29:27,110 +visitor and you will say process X and process Y + +463 +00:29:27,110 --> 00:29:32,150 +If we add a new shape, W, you will have to go to + +464 +00:29:32,150 --> 00:29:35,710 +this interface and add the process and add it to + +465 +00:29:35,710 --> 00:29:40,640 +all visitors. So we are back to the same problem. + +466 +00:29:40,740 --> 00:29:43,800 +But what? Did you get the idea that this visitor + +467 +00:29:43,800 --> 00:29:48,040 +tree is going to be smaller than this one? This + +468 +00:29:48,040 --> 00:29:49,420 +one is going to tell you that you are using it + +469 +00:29:49,420 --> 00:29:52,160 +because it is fixed and scattered in a big way. + +470 +00:29:52,540 --> 00:29:55,400 +But the visitor usually you will need one visitor + +471 +00:29:55,400 --> 00:29:58,300 +or two visitors without much. So what is this tree + +472 +00:29:58,300 --> 00:30:02,510 +going to be? Easier to edit, okay? And then as I + +473 +00:30:02,510 --> 00:30:05,710 +told you, most of the time when I use a browser + +474 +00:30:05,710 --> 00:30:07,790 +and there is a situation where the interface is + +475 +00:30:07,790 --> 00:30:10,870 +fixed, most of the time I don't need to add a new + +476 +00:30:10,870 --> 00:30:13,870 +class, but I need to add a new functionality, + +477 +00:30:15,010 --> 00:30:17,390 +okay? Like what? What are the cases where there is + +478 +00:30:17,390 --> 00:30:20,530 +a fixed structure, but I need to add a new method? + +479 +00:30:21,530 --> 00:30:24,800 +Any library related to the UI I found the UI + +480 +00:30:24,800 --> 00:30:28,840 +components, they are fixed, they don't change from + +481 +00:30:28,840 --> 00:30:36,320 +year to year. Button, text field, text area, they + +482 +00:30:36,320 --> 00:30:41,680 +don't change. So the structure fixed, the classes + +483 +00:30:41,680 --> 00:30:43,980 +or the UI components that each one represents in + +484 +00:30:43,980 --> 00:30:46,820 +the class, they are fixed. But I need to add a + +485 +00:30:46,820 --> 00:30:49,260 +method every now and then to support them, to work + +486 +00:30:49,260 --> 00:30:56,610 +on them. So I usually use visitor when the object + +487 +00:30:56,610 --> 00:30:59,710 +structure is fixed, the number of classes is + +488 +00:30:59,710 --> 00:31:02,810 +fixed, but I need to add operations, new + +489 +00:31:02,810 --> 00:31:06,430 +operations on them. And in all cases, even if I + +490 +00:31:06,430 --> 00:31:10,610 +add a class, modifying this structure is easier + +491 +00:31:10,610 --> 00:31:13,590 +than modifying this one. How? + +492 +00:31:17,270 --> 00:31:22,170 +Ok, so we saw that in Java specifically, all the + +493 +00:31:22,170 --> 00:31:24,710 +visitor patterns on the gate won't be necessary, + +494 +00:31:24,990 --> 00:31:27,790 +right? Because the default method solved the + +495 +00:31:27,790 --> 00:31:31,270 +problem. Ok, so you want to add a new method and + +496 +00:31:31,270 --> 00:31:33,770 +you want to cache it and hit it? Make it default, + +497 +00:31:34,410 --> 00:31:36,350 +you won't force the people below to make it + +498 +00:31:36,350 --> 00:31:38,530 +implement. Those who want to make it implement, + +499 +00:31:38,710 --> 00:31:40,210 +those who don't want to use the default, + +500 +00:31:40,610 --> 00:31:44,110 +implementation. But as we said, if the interface + +501 +00:31:44,110 --> 00:31:46,190 +doesn't support the default method, like all + +502 +00:31:46,190 --> 00:31:49,950 +object-oriented languages, in this case, the + +503 +00:31:49,950 --> 00:31:52,630 +visitor pattern solves the problem for you. + +504 +00:31:53,450 --> 00:32:01,250 +Solution Consequences can add new operations + +505 +00:32:01,250 --> 00:32:04,570 +without changing objects + +506 +00:32:07,270 --> 00:32:14,710 +The visitor pattern is a way of separating the + +507 +00:32:14,710 --> 00:32:19,950 +operation from the object structure. And a way of + +508 +00:32:19,950 --> 00:32:22,450 +collecting together the different implementations + +509 +00:32:22,450 --> 00:32:24,730 +of the operation for different kinds of elements + +510 +00:32:35,440 --> 00:32:37,600 +for the different shapes. And the perimeter + +511 +00:32:37,600 --> 00:32:39,560 +visitor collects all the shapes in the + +512 +00:32:39,560 --> 00:32:44,800 +surroundings. That's why when you work in an area, + +513 +00:32:45,420 --> 00:32:46,980 +you focus on the importance of calculating the + +514 +00:32:46,980 --> 00:32:48,220 +dimensions for the shapes. That's it, you're done + +515 +00:32:48,220 --> 00:32:50,180 +with this class, focus on calculating the + +516 +00:32:50,180 --> 00:32:53,040 +dimensions. So here, collecting together the + +517 +00:32:53,040 --> 00:32:57,200 +different implementations for the same process. For + +518 +00:32:57,200 --> 00:33:01,600 +different kinds of elements. Is it clear guys? A + +519 +00:33:01,600 --> 00:33:05,040 +visitor class is created which knows how to + +520 +00:33:05,040 --> 00:33:13,440 +perform a particular operation. Each + +521 +00:33:13,440 --> 00:33:18,420 +type of element in the structure defines accept + +522 +00:33:18,420 --> 00:33:21,420 +method. This method accepts and through it receives + +523 +00:33:21,420 --> 00:33:24,760 +the visitor. It is present here and they implement + +524 +00:33:24,760 --> 00:33:24,920 +it + +525 +00:33:27,840 --> 00:33:30,680 +that can accept any kind of visitor. Of course, + +526 +00:33:30,760 --> 00:33:33,060 +how did it accept any kind of visitor? Because all + +527 +00:33:33,060 --> 00:33:36,400 +visitors follow the same interface. So it will + +528 +00:33:36,400 --> 00:33:39,820 +accept any kind of class that is implemented to + +529 +00:33:39,820 --> 00:33:44,400 +this interface. The visitor is passed to each + +530 +00:33:44,400 --> 00:33:48,400 +element in the structure. So through accepting, I + +531 +00:33:48,400 --> 00:33:53,940 +pass to whom? By calling it accept method and the + +532 +00:33:53,940 --> 00:34:09,420 +visitor then performs the operation. One important + +533 +00:34:09,420 --> 00:34:19,040 +consequence of this separation is that we can add + +534 +00:34:19,040 --> 00:34:24,020 +later. We can later add a new operation, a new kind + +535 +00:34:24,020 --> 00:34:30,340 +of visitor, without having to modify the element + +536 +00:34:30,340 --> 00:34:33,440 +classes of the object structure. Each type of + +537 +00:34:33,440 --> 00:34:37,340 +visitor defines several visit methods, one for + +538 +00:34:37,340 --> 00:34:40,420 +each kind of element. Because here I named it + +539 +00:34:40,420 --> 00:34:44,680 +process, he named it visit, that is, for each type + +540 +00:34:44,680 --> 00:34:46,720 +of shape, there must be a specific visit or + +541 +00:34:46,720 --> 00:34:50,870 +specific process. The basic insight is that the + +542 +00:34:50,870 --> 00:34:57,350 +precise set of instructions to execute depends + +543 +00:34:57,350 --> 00:35:01,410 +on + +544 +00:35:01,410 --> 00:35:05,930 +the runtime types of both the visitor and the + +545 +00:35:05,930 --> 00:35:09,150 +visited element. What does this sentence mean? We + +546 +00:35:09,150 --> 00:35:10,930 +know that polymorphism + +547 +00:35:14,150 --> 00:35:18,830 +Either the method you draw will depend on whom? On + +548 +00:35:18,830 --> 00:35:23,010 +the actual type of the shape, right? It depends on + +549 +00:35:23,010 --> 00:35:26,670 +the runtime type of the shape. If it was a circle, + +550 +00:35:26,770 --> 00:35:27,990 +it would implement the draw that exists in the + +551 +00:35:27,990 --> 00:35:31,130 +circle. This is the polymorphism, right? The same + +552 +00:35:31,130 --> 00:35:33,790 +thing with accept. But this execution of the + +553 +00:35:33,790 --> 00:35:36,710 +operation depends on two things. It depends on the + +554 +00:35:36,710 --> 00:35:39,710 +actual type of the shape. And on the type of + +555 +00:35:39,710 --> 00:35:45,300 +visitor, right? This is the meaning of the sentence + +556 +00:35:45,300 --> 00:35:47,200 +I said, that the process that will be carried out + +557 +00:35:47,200 --> 00:35:49,480 +now will depend on two things, on the type of + +558 +00:35:49,480 --> 00:35:55,160 +shape and type of visitor. Here, if the shape is a + +559 +00:35:55,160 --> 00:35:57,420 +circle and the visitor is to calculate the area, + +560 +00:35:58,240 --> 00:36:00,740 +it will come to the circle and carry out the + +561 +00:36:00,740 --> 00:36:04,700 +process, and this will calculate the area. This is + +562 +00:36:04,700 --> 00:36:05,580 +the meaning of the sentence I said. + +563 +00:36:09,180 --> 00:36:11,800 +It depends on the run-time types of both the + +564 +00:36:11,800 --> 00:36:14,460 +visitor and the visited element, which in our case + +565 +00:36:14,460 --> 00:36:17,580 +is the shape, the circle or rectangle. This is an + +566 +00:36:17,580 --> 00:36:20,700 +L-diagram similar to the one I drew, but maybe I + +567 +00:36:20,700 --> 00:36:24,590 +drew it more detailed. Take a look at today's + +568 +00:36:24,590 --> 00:36:28,630 +diagram of the visitor pattern. In today's diagram + +569 +00:36:28,630 --> 00:36:31,070 +of the visitor, there are two hierarchies, two + +570 +00:36:31,070 --> 00:36:33,790 +object structures. The main object structure that + +571 +00:36:33,790 --> 00:36:37,590 +does not change is the element and is divided into + +572 +00:36:37,590 --> 00:36:41,530 +concrete element A and concrete element B. Both + +573 +00:36:41,530 --> 00:36:45,990 +have a method accept that takes visitor. This + +574 +00:36:45,990 --> 00:36:53,300 +interface visitor has for each shape A and B عمل + +575 +00:36:53,300 --> 00:36:57,900 +visit اللي هي اللي سميتها إيش process process + +576 +00:36:57,900 --> 00:37:01,200 +concrete element B process concrete element A و B + +577 +00:37:01,200 --> 00:37:07,040 +طبعا المفروض هنا إنه في سهم يوديني على مين على ال + +578 +00:37:07,040 --> 00:37:11,280 +A و B مش حاطه عشان مايعجدش الرسمة يعني هذا الرسمة + +579 +00:37:11,280 --> 00:37:16,080 +أوضح تمام هايه مش هذا بستخدم X و Y و هذا أصلا + +580 +00:37:16,080 --> 00:37:19,520 +مشاكل ال visitor إنه هاي ال coupling هذا تمام إنه + +581 +00:37:19,520 --> 00:37:23,660 +بعتمد على نوع ال concrete objects. Okay, so the + +582 +00:37:23,660 --> 00:37:26,720 +visitor's problem is here in these two cases. Okay, + +583 +00:37:27,160 --> 00:37:30,060 +this is the visitor, the visitor has, as we said, + +584 +00:37:30,440 --> 00:37:32,520 +the visitor has visit methods for each type of + +585 +00:37:32,520 --> 00:37:34,760 +shapes. And of course, whenever you want to add a + +586 +00:37:34,760 --> 00:37:37,860 +new operation, such as visitor to the area + +587 +00:37:37,860 --> 00:37:39,380 +account, visitor to the environment account, you + +588 +00:37:39,380 --> 00:37:43,660 +will have to add what? Concrete visitors. Because + +589 +00:37:43,660 --> 00:37:46,960 +this represents the client, which is the main + +590 +00:37:46,960 --> 00:37:49,600 +method, which will actually create objects from + +591 +00:37:49,600 --> 00:37:52,920 +elements, and it will create an object from whom? + +592 +00:37:53,680 --> 00:37:56,940 +From visitor. Okay? + +593 +00:38:03,220 --> 00:38:07,840 +Okay, this explains the drawing components that we + +594 +00:38:07,840 --> 00:38:11,200 +have explained. Okay, + +595 +00:38:11,260 --> 00:38:14,180 +this just shows me the code of the shape that we + +596 +00:38:14,180 --> 00:38:17,600 +saw a while ago. Now, of course, the code is with + +597 +00:38:17,600 --> 00:38:22,430 +me. What is this interface? Or before this one, + +598 +00:38:22,430 --> 00:38:24,110 +forget about this one, here this is from the + +599 +00:38:24,110 --> 00:38:27,910 +element, this is like the shape, which has an + +600 +00:38:27,910 --> 00:38:30,730 +accept in it, of course, you don't always put an + +601 +00:38:30,730 --> 00:38:33,510 +accept, you put the methods that you know and + +602 +00:38:33,510 --> 00:38:36,670 +leave the door open for additions through what? + +603 +00:38:36,910 --> 00:38:38,810 +The accept, of course, it doesn't show the second + +604 +00:38:38,810 --> 00:38:41,010 +method because it only shows you the visitor + +605 +00:38:41,010 --> 00:38:42,970 +pattern, you put the accept and it takes an + +606 +00:38:42,970 --> 00:38:45,490 +interface of the type visitor, and this is the + +607 +00:38:45,490 --> 00:38:50,100 +interface of the visitor. It takes a visit to + +608 +00:38:50,100 --> 00:38:52,280 +concrete element A and a visit to concrete element + +609 +00:38:52,280 --> 00:39:00,440 +B. For example, this element A implements + +610 +00:39:00,440 --> 00:39:02,880 +element, and concrete element B implements element + +611 +00:39:02,880 --> 00:39:05,640 +and both of them implemented the accept and took + +612 +00:39:05,640 --> 00:39:09,100 +the visitor. When the visitor came, he was asked + +613 +00:39:09,100 --> 00:39:11,040 +to take over the work. How? Visitor visited + +614 +00:39:11,040 --> 00:39:16,050 +concrete element A this. And here visitor + +615 +00:39:16,050 --> 00:39:20,270 +.visitConcreteElementB and it also gave it this, + +616 +00:39:20,890 --> 00:39:21,530 +okay? + +617 +00:39:25,310 --> 00:39:27,210 +Let's go back to the previous slide, this visitor, + +618 +00:39:27,270 --> 00:39:29,010 +we talked about the interface, this is + +619 +00:39:29,010 --> 00:39:32,870 +ConcreteVisitorA, one, for a specific process, for + +620 +00:39:32,870 --> 00:39:36,210 +example, like AreaVisitor, implements visitor, and + +621 +00:39:36,210 --> 00:39:40,930 +then it implements the visitConcreteElementA. Of + +622 +00:39:40,930 --> 00:39:43,490 +course, the code is empty. Here, for example, we + +623 +00:39:43,490 --> 00:39:47,030 +made a circle area and here a rectangle area. And + +624 +00:39:47,030 --> 00:39:50,750 +this is visitor, another visitor. Now, in the end, + +625 +00:39:51,290 --> 00:39:53,130 +I created an object from shape. I want to add + +626 +00:39:53,130 --> 00:39:55,970 +something new to it. I remove an object from this + +627 +00:39:55,970 --> 00:39:59,350 +visitor. I go to the shape and say accept and send + +628 +00:39:59,350 --> 00:40:02,440 +it to the visitor. So what this gate does is. It's + +629 +00:40:02,440 --> 00:40:06,040 +the visitor. It's as if I assigned the new job to + +630 +00:40:06,040 --> 00:40:09,460 +an external visitor to do it. And I left the door + +631 +00:40:09,460 --> 00:40:13,520 +open for the visitor to pass through to the object + +632 +00:40:13,520 --> 00:40:17,200 +through this method accept. And accept is present + +633 +00:40:17,200 --> 00:40:19,820 +in the interface. Why? So that I can achieve the + +634 +00:40:19,820 --> 00:40:22,020 +concept of polymorphism. That I can look at shapes + +635 +00:40:22,020 --> 00:40:23,780 +regardless of what kind of shape they are, and + +636 +00:40:28,460 --> 00:40:31,880 +The visitor pattern is a great way to provide a + +637 +00:40:31,880 --> 00:40:34,760 +flexible design for adding new visitors to extend + +638 +00:40:34,760 --> 00:40:39,360 +existing functionality without changing existing + +639 +00:40:39, \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/cXH_MqH_Lss_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/cXH_MqH_Lss_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..2df147cbb49571e75171dddcd8aba72ac81383a5 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/cXH_MqH_Lss_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 3234, "start": 5.16, "end": 32.34, "text": " Ok guys, peace be upon you Today, God willing, we will take a new design pattern called Visitor Design Pattern What is Visitor? Visitor Ok, Visitor Design Pattern solves a problem that programmers faced and it was one of the most common problems and it was as follows Now we know in object oriented programming that if I have an interface", "tokens": [3477, 1074, 11, 4336, 312, 3564, 291, 2692, 11, 1265, 4950, 11, 321, 486, 747, 257, 777, 1715, 5102, 1219, 10410, 3029, 12748, 34367, 77, 708, 307, 10410, 3029, 30, 10410, 3029, 3477, 11, 10410, 3029, 12748, 34367, 77, 39890, 257, 1154, 300, 41504, 11446, 293, 309, 390, 472, 295, 264, 881, 2689, 2740, 293, 309, 390, 382, 10002, 823, 321, 458, 294, 2657, 21841, 9410, 300, 498, 286, 362, 364, 9226], "avg_logprob": -0.45676370516215287, "compression_ratio": 1.6142857142857143, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 5.16, "end": 5.42, "word": " Ok", "probability": 0.27099609375}, {"start": 5.42, "end": 5.6, "word": " guys,", "probability": 0.52783203125}, {"start": 5.64, "end": 5.9, "word": " peace", "probability": 0.1732177734375}, {"start": 5.9, "end": 6.04, "word": " be", "probability": 0.86767578125}, {"start": 6.04, "end": 6.04, "word": " upon", "probability": 0.8935546875}, {"start": 6.04, "end": 6.6, "word": " you", "probability": 0.974609375}, {"start": 6.6, "end": 7.86, "word": " Today,", "probability": 0.54345703125}, {"start": 7.96, "end": 8.14, "word": " God", "probability": 0.3115234375}, {"start": 8.14, "end": 8.14, "word": " willing,", "probability": 0.71728515625}, {"start": 8.28, "end": 8.44, "word": " we", "probability": 0.9306640625}, {"start": 8.44, "end": 8.46, "word": " will", "probability": 0.453857421875}, {"start": 8.46, "end": 8.62, "word": " take", "probability": 0.51318359375}, {"start": 8.62, "end": 8.72, "word": " a", "probability": 0.83984375}, {"start": 8.72, "end": 8.74, "word": " new", "probability": 0.88671875}, {"start": 8.74, "end": 8.98, "word": " design", "probability": 0.8447265625}, {"start": 8.98, "end": 9.66, "word": " pattern", "probability": 0.892578125}, {"start": 9.66, "end": 10.14, "word": " called", "probability": 0.432861328125}, {"start": 10.14, "end": 10.92, "word": " Visitor", "probability": 0.58203125}, {"start": 10.92, "end": 12.0, "word": " Design", "probability": 0.70751953125}, {"start": 12.0, "end": 12.4, "word": " Pattern", "probability": 0.9638671875}, {"start": 12.4, "end": 13.38, "word": " What", "probability": 0.68310546875}, {"start": 13.38, "end": 13.5, "word": " is", "probability": 0.75146484375}, {"start": 13.5, "end": 13.96, "word": " Visitor?", "probability": 0.6251220703125}, {"start": 14.98, "end": 15.58, "word": " Visitor", "probability": 0.495697021484375}, {"start": 15.58, "end": 16.04, "word": " Ok,", "probability": 0.1746826171875}, {"start": 16.68, "end": 17.42, "word": " Visitor", "probability": 0.832275390625}, {"start": 17.42, "end": 17.82, "word": " Design", "probability": 0.6630859375}, {"start": 17.82, "end": 18.92, "word": " Pattern", "probability": 0.966796875}, {"start": 18.92, "end": 19.48, "word": " solves", "probability": 0.53759765625}, {"start": 19.48, "end": 19.64, "word": " a", "probability": 0.77099609375}, {"start": 19.64, "end": 20.1, "word": " problem", "probability": 0.84130859375}, {"start": 20.1, "end": 21.44, "word": " that", "probability": 0.458251953125}, {"start": 21.44, "end": 21.44, "word": " programmers", "probability": 0.81396484375}, {"start": 21.44, "end": 22.48, "word": " faced", "probability": 0.45849609375}, {"start": 22.48, "end": 23.44, "word": " and", "probability": 0.2130126953125}, {"start": 23.44, "end": 23.66, "word": " it", "probability": 0.7587890625}, {"start": 23.66, "end": 23.96, "word": " was", "probability": 0.80419921875}, {"start": 23.96, "end": 24.04, "word": " one", "probability": 0.67626953125}, {"start": 24.04, "end": 24.16, "word": " of", "probability": 0.96826171875}, {"start": 24.16, "end": 24.18, "word": " the", "probability": 0.75390625}, {"start": 24.18, "end": 24.3, "word": " most", "probability": 0.3896484375}, {"start": 24.3, "end": 25.02, "word": " common", "probability": 0.65771484375}, {"start": 25.02, "end": 25.14, "word": " problems", "probability": 0.70361328125}, {"start": 25.14, "end": 26.02, "word": " and", "probability": 0.459228515625}, {"start": 26.02, "end": 26.18, "word": " it", "probability": 0.85302734375}, {"start": 26.18, "end": 26.38, "word": " was", "probability": 0.70458984375}, {"start": 26.38, "end": 26.42, "word": " as", "probability": 0.52880859375}, {"start": 26.42, "end": 26.7, "word": " follows", "probability": 0.80712890625}, {"start": 26.7, "end": 27.24, "word": " Now", "probability": 0.4296875}, {"start": 27.24, "end": 27.6, "word": " we", "probability": 0.50927734375}, {"start": 27.6, "end": 29.26, "word": " know", "probability": 0.84521484375}, {"start": 29.26, "end": 29.52, "word": " in", "probability": 0.71728515625}, {"start": 29.52, "end": 30.02, "word": " object", "probability": 0.6220703125}, {"start": 30.02, "end": 30.42, "word": " oriented", "probability": 0.568359375}, {"start": 30.42, "end": 30.94, "word": " programming", "probability": 0.888671875}, {"start": 30.94, "end": 31.24, "word": " that", "probability": 0.71630859375}, {"start": 31.24, "end": 31.32, "word": " if", "probability": 0.8671875}, {"start": 31.32, "end": 31.48, "word": " I", "probability": 0.951171875}, {"start": 31.48, "end": 31.68, "word": " have", "probability": 0.94384765625}, {"start": 31.68, "end": 31.8, "word": " an", "probability": 0.8916015625}, {"start": 31.8, "end": 32.34, "word": " interface", "probability": 0.88330078125}], "temperature": 1.0}, {"id": 2, "seek": 5638, "start": 36.82, "end": 56.38, "text": "and there are methods for example A and B and then this interface is made of classes that implement the interface for example I have class X and class Y and these are made to implement the interface it is known that any class that makes an implement interface is mandatory", "tokens": [474, 456, 366, 7150, 337, 1365, 316, 293, 363, 293, 550, 341, 9226, 307, 1027, 295, 5359, 300, 4445, 264, 9226, 337, 1365, 286, 362, 1508, 1783, 293, 1508, 398, 293, 613, 366, 1027, 281, 4445, 264, 9226, 309, 307, 2570, 300, 604, 1508, 300, 1669, 364, 4445, 9226, 307, 22173], "avg_logprob": -0.4558293280693201, "compression_ratio": 1.902097902097902, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 36.82, "end": 37.04, "word": "and", "probability": 0.225830078125}, {"start": 37.04, "end": 37.16, "word": " there", "probability": 0.7998046875}, {"start": 37.16, "end": 37.16, "word": " are", "probability": 0.787109375}, {"start": 37.16, "end": 37.58, "word": " methods", "probability": 0.8173828125}, {"start": 37.58, "end": 37.74, "word": " for", "probability": 0.329345703125}, {"start": 37.74, "end": 37.98, "word": " example", "probability": 0.8447265625}, {"start": 37.98, "end": 38.32, "word": " A", "probability": 0.50634765625}, {"start": 38.32, "end": 38.9, "word": " and", "probability": 0.84228515625}, {"start": 38.9, "end": 39.18, "word": " B", "probability": 0.99169921875}, {"start": 39.18, "end": 41.14, "word": " and", "probability": 0.62353515625}, {"start": 41.14, "end": 41.54, "word": " then", "probability": 0.52099609375}, {"start": 41.54, "end": 42.8, "word": " this", "probability": 0.474609375}, {"start": 42.8, "end": 43.28, "word": " interface", "probability": 0.89111328125}, {"start": 43.28, "end": 43.56, "word": " is", "probability": 0.262451171875}, {"start": 43.56, "end": 43.78, "word": " made", "probability": 0.74755859375}, {"start": 43.78, "end": 44.12, "word": " of", "probability": 0.25830078125}, {"start": 44.12, "end": 45.1, "word": " classes", "probability": 0.931640625}, {"start": 45.1, "end": 45.34, "word": " that", "probability": 0.459716796875}, {"start": 45.34, "end": 45.96, "word": " implement", "probability": 0.58837890625}, {"start": 45.96, "end": 46.18, "word": " the", "probability": 0.476806640625}, {"start": 46.18, "end": 46.92, "word": " interface", "probability": 0.90185546875}, {"start": 46.92, "end": 47.1, "word": " for", "probability": 0.578125}, {"start": 47.1, "end": 47.34, "word": " example", "probability": 0.93798828125}, {"start": 47.34, "end": 47.7, "word": " I", "probability": 0.499267578125}, {"start": 47.7, "end": 47.92, "word": " have", "probability": 0.93603515625}, {"start": 47.92, "end": 48.3, "word": " class", "probability": 0.5166015625}, {"start": 48.3, "end": 48.66, "word": " X", "probability": 0.7841796875}, {"start": 48.66, "end": 49.04, "word": " and", "probability": 0.9267578125}, {"start": 49.04, "end": 49.36, "word": " class", "probability": 0.91943359375}, {"start": 49.36, "end": 49.66, "word": " Y", "probability": 0.9873046875}, {"start": 49.66, "end": 50.76, "word": " and", "probability": 0.77978515625}, {"start": 50.76, "end": 51.06, "word": " these", "probability": 0.4609375}, {"start": 51.06, "end": 51.46, "word": " are", "probability": 0.244384765625}, {"start": 51.46, "end": 51.78, "word": " made", "probability": 0.603515625}, {"start": 51.78, "end": 52.0, "word": " to", "probability": 0.81298828125}, {"start": 52.0, "end": 52.3, "word": " implement", "probability": 0.7763671875}, {"start": 52.3, "end": 52.54, "word": " the", "probability": 0.8203125}, {"start": 52.54, "end": 53.0, "word": " interface", "probability": 0.90869140625}, {"start": 53.0, "end": 53.1, "word": " it", "probability": 0.55517578125}, {"start": 53.1, "end": 53.14, "word": " is", "probability": 0.7744140625}, {"start": 53.14, "end": 53.36, "word": " known", "probability": 0.57177734375}, {"start": 53.36, "end": 53.68, "word": " that", "probability": 0.9248046875}, {"start": 53.68, "end": 54.1, "word": " any", "probability": 0.662109375}, {"start": 54.1, "end": 54.5, "word": " class", "probability": 0.92138671875}, {"start": 54.5, "end": 54.62, "word": " that", "probability": 0.76220703125}, {"start": 54.62, "end": 54.8, "word": " makes", "probability": 0.47412109375}, {"start": 54.8, "end": 54.94, "word": " an", "probability": 0.60546875}, {"start": 54.94, "end": 55.2, "word": " implement", "probability": 0.62548828125}, {"start": 55.2, "end": 55.84, "word": " interface", "probability": 0.89453125}, {"start": 55.84, "end": 56.0, "word": " is", "probability": 0.52880859375}, {"start": 56.0, "end": 56.38, "word": " mandatory", "probability": 0.27734375}], "temperature": 1.0}, {"id": 3, "seek": 7840, "start": 58.28, "end": 78.4, "text": "You have to implement for all methods in this interface You have to implement for A and B and you have to implement for A and B Because the existing problem is that you want to add a new method to the interface For example, you want to add method C", "tokens": [3223, 362, 281, 4445, 337, 439, 7150, 294, 341, 9226, 509, 362, 281, 4445, 337, 316, 293, 363, 293, 291, 362, 281, 4445, 337, 316, 293, 363, 1436, 264, 6741, 1154, 307, 300, 291, 528, 281, 909, 257, 777, 3170, 281, 264, 9226, 1171, 1365, 11, 291, 528, 281, 909, 3170, 383], "avg_logprob": -0.36350235624133415, "compression_ratio": 1.837037037037037, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 58.28, "end": 58.76, "word": "You", "probability": 0.246337890625}, {"start": 58.76, "end": 58.86, "word": " have", "probability": 0.33154296875}, {"start": 58.86, "end": 58.98, "word": " to", "probability": 0.97119140625}, {"start": 58.98, "end": 59.62, "word": " implement", "probability": 0.5615234375}, {"start": 59.62, "end": 60.24, "word": " for", "probability": 0.336669921875}, {"start": 60.24, "end": 60.56, "word": " all", "probability": 0.7412109375}, {"start": 60.56, "end": 61.1, "word": " methods", "probability": 0.6708984375}, {"start": 61.1, "end": 61.82, "word": " in", "probability": 0.443115234375}, {"start": 61.82, "end": 61.92, "word": " this", "probability": 0.54736328125}, {"start": 61.92, "end": 62.44, "word": " interface", "probability": 0.82373046875}, {"start": 62.44, "end": 63.22, "word": " You", "probability": 0.1282958984375}, {"start": 63.22, "end": 63.44, "word": " have", "probability": 0.8330078125}, {"start": 63.44, "end": 63.54, "word": " to", "probability": 0.96240234375}, {"start": 63.54, "end": 64.02, "word": " implement", "probability": 0.437744140625}, {"start": 64.02, "end": 64.58, "word": " for", "probability": 0.755859375}, {"start": 64.58, "end": 64.78, "word": " A", "probability": 0.541015625}, {"start": 64.78, "end": 64.9, "word": " and", "probability": 0.89697265625}, {"start": 64.9, "end": 65.14, "word": " B", "probability": 0.9560546875}, {"start": 65.14, "end": 65.32, "word": " and", "probability": 0.525390625}, {"start": 65.32, "end": 65.4, "word": " you", "probability": 0.352294921875}, {"start": 65.4, "end": 65.52, "word": " have", "probability": 0.91015625}, {"start": 65.52, "end": 65.62, "word": " to", "probability": 0.95849609375}, {"start": 65.62, "end": 66.12, "word": " implement", "probability": 0.91552734375}, {"start": 66.12, "end": 66.6, "word": " for", "probability": 0.921875}, {"start": 66.6, "end": 66.92, "word": " A", "probability": 0.955078125}, {"start": 66.92, "end": 68.7, "word": " and", "probability": 0.9267578125}, {"start": 68.7, "end": 68.96, "word": " B", "probability": 0.99169921875}, {"start": 68.96, "end": 69.7, "word": " Because", "probability": 0.470703125}, {"start": 69.7, "end": 69.82, "word": " the", "probability": 0.71533203125}, {"start": 69.82, "end": 70.48, "word": " existing", "probability": 0.724609375}, {"start": 70.48, "end": 70.48, "word": " problem", "probability": 0.833984375}, {"start": 70.48, "end": 72.34, "word": " is", "probability": 0.76123046875}, {"start": 72.34, "end": 72.38, "word": " that", "probability": 0.7216796875}, {"start": 72.38, "end": 72.6, "word": " you", "probability": 0.9482421875}, {"start": 72.6, "end": 72.9, "word": " want", "probability": 0.630859375}, {"start": 72.9, "end": 73.06, "word": " to", "probability": 0.966796875}, {"start": 73.06, "end": 73.28, "word": " add", "probability": 0.9384765625}, {"start": 73.28, "end": 73.42, "word": " a", "probability": 0.87646484375}, {"start": 73.42, "end": 73.42, "word": " new", "probability": 0.90966796875}, {"start": 73.42, "end": 73.66, "word": " method", "probability": 0.9453125}, {"start": 73.66, "end": 74.1, "word": " to", "probability": 0.48583984375}, {"start": 74.1, "end": 74.16, "word": " the", "probability": 0.7802734375}, {"start": 74.16, "end": 74.66, "word": " interface", "probability": 0.84912109375}, {"start": 74.66, "end": 76.24, "word": " For", "probability": 0.611328125}, {"start": 76.24, "end": 76.42, "word": " example,", "probability": 0.92626953125}, {"start": 76.54, "end": 76.54, "word": " you", "probability": 0.81298828125}, {"start": 76.54, "end": 76.72, "word": " want", "probability": 0.81494140625}, {"start": 76.72, "end": 76.82, "word": " to", "probability": 0.96533203125}, {"start": 76.82, "end": 76.98, "word": " add", "probability": 0.93701171875}, {"start": 76.98, "end": 77.46, "word": " method", "probability": 0.5673828125}, {"start": 77.46, "end": 78.4, "word": " C", "probability": 0.71337890625}], "temperature": 1.0}, {"id": 4, "seek": 10785, "start": 79.73, "end": 107.85, "text": " Why do we want to add it here? In order to support polymorphism, in the end these x and y are of the interface type, right or wrong? I can put them in one array and make a loop on them and implement method A and B and then add method C Now if I add a new method to make a new function, multiply by whom? The subclasses Of course the process can be complicated, I can have an interface with 20-30 classes", "tokens": [1545, 360, 321, 528, 281, 909, 309, 510, 30, 682, 1668, 281, 1406, 6754, 76, 18191, 1434, 11, 294, 264, 917, 613, 2031, 293, 288, 366, 295, 264, 9226, 2010, 11, 558, 420, 2085, 30, 286, 393, 829, 552, 294, 472, 10225, 293, 652, 257, 6367, 322, 552, 293, 4445, 3170, 316, 293, 363, 293, 550, 909, 3170, 383, 823, 498, 286, 909, 257, 777, 3170, 281, 652, 257, 777, 2445, 11, 12972, 538, 7101, 30, 440, 1422, 11665, 279, 2720, 1164, 264, 1399, 393, 312, 6179, 11, 286, 393, 362, 364, 9226, 365, 945, 12, 3446, 5359], "avg_logprob": -0.4712752416880444, "compression_ratio": 1.5968379446640317, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 79.73, "end": 79.99, "word": " Why", "probability": 0.239501953125}, {"start": 79.99, "end": 80.23, "word": " do", "probability": 0.22265625}, {"start": 80.23, "end": 80.27, "word": " we", "probability": 0.794921875}, {"start": 80.27, "end": 80.27, "word": " want", "probability": 0.40966796875}, {"start": 80.27, "end": 80.35, "word": " to", "probability": 0.96337890625}, {"start": 80.35, "end": 80.51, "word": " add", "probability": 0.80419921875}, {"start": 80.51, "end": 80.61, "word": " it", "probability": 0.5185546875}, {"start": 80.61, "end": 80.77, "word": " here?", "probability": 0.75}, {"start": 80.85, "end": 81.01, "word": " In", "probability": 0.177001953125}, {"start": 81.01, "end": 81.01, "word": " order", "probability": 0.9091796875}, {"start": 81.01, "end": 81.15, "word": " to", "probability": 0.94287109375}, {"start": 81.15, "end": 81.37, "word": " support", "probability": 0.904296875}, {"start": 81.37, "end": 82.13, "word": " polymorphism,", "probability": 0.8466796875}, {"start": 82.43, "end": 82.55, "word": " in", "probability": 0.2159423828125}, {"start": 82.55, "end": 82.65, "word": " the", "probability": 0.72119140625}, {"start": 82.65, "end": 82.85, "word": " end", "probability": 0.8984375}, {"start": 82.85, "end": 83.15, "word": " these", "probability": 0.3681640625}, {"start": 83.15, "end": 83.89, "word": " x", "probability": 0.455810546875}, {"start": 83.89, "end": 84.07, "word": " and", "probability": 0.91064453125}, {"start": 84.07, "end": 84.23, "word": " y", "probability": 0.99072265625}, {"start": 84.23, "end": 84.41, "word": " are", "probability": 0.78515625}, {"start": 84.41, "end": 84.49, "word": " of", "probability": 0.15625}, {"start": 84.49, "end": 85.37, "word": " the", "probability": 0.7470703125}, {"start": 85.37, "end": 85.81, "word": " interface", "probability": 0.5966796875}, {"start": 85.81, "end": 85.93, "word": " type,", "probability": 0.80029296875}, {"start": 86.11, "end": 86.23, "word": " right", "probability": 0.607421875}, {"start": 86.23, "end": 86.45, "word": " or", "probability": 0.67333984375}, {"start": 86.45, "end": 86.55, "word": " wrong?", "probability": 0.498046875}, {"start": 87.27, "end": 87.63, "word": " I", "probability": 0.51123046875}, {"start": 87.63, "end": 87.95, "word": " can", "probability": 0.83203125}, {"start": 87.95, "end": 88.17, "word": " put", "probability": 0.5234375}, {"start": 88.17, "end": 88.23, "word": " them", "probability": 0.87890625}, {"start": 88.23, "end": 88.33, "word": " in", "probability": 0.77392578125}, {"start": 88.33, "end": 88.41, "word": " one", "probability": 0.41796875}, {"start": 88.41, "end": 88.61, "word": " array", "probability": 0.841796875}, {"start": 88.61, "end": 88.97, "word": " and", "probability": 0.79052734375}, {"start": 88.97, "end": 89.13, "word": " make", "probability": 0.2158203125}, {"start": 89.13, "end": 89.47, "word": " a", "probability": 0.419677734375}, {"start": 89.47, "end": 89.63, "word": " loop", "probability": 0.96337890625}, {"start": 89.63, "end": 89.67, "word": " on", "probability": 0.509765625}, {"start": 89.67, "end": 89.67, "word": " them", "probability": 0.828125}, {"start": 89.67, "end": 89.79, "word": " and", "probability": 0.64208984375}, {"start": 89.79, "end": 90.01, "word": " implement", "probability": 0.2978515625}, {"start": 90.01, "end": 90.41, "word": " method", "probability": 0.6669921875}, {"start": 90.41, "end": 90.71, "word": " A", "probability": 0.5986328125}, {"start": 90.71, "end": 91.23, "word": " and", "probability": 0.9111328125}, {"start": 91.23, "end": 91.43, "word": " B", "probability": 0.82275390625}, {"start": 91.43, "end": 91.77, "word": " and", "probability": 0.58544921875}, {"start": 91.77, "end": 91.87, "word": " then", "probability": 0.2666015625}, {"start": 91.87, "end": 92.29, "word": " add", "probability": 0.63623046875}, {"start": 92.29, "end": 92.61, "word": " method", "probability": 0.92236328125}, {"start": 92.61, "end": 92.89, "word": " C", "probability": 0.931640625}, {"start": 92.89, "end": 95.71, "word": " Now", "probability": 0.45947265625}, {"start": 95.71, "end": 96.03, "word": " if", "probability": 0.5654296875}, {"start": 96.03, "end": 96.09, "word": " I", "probability": 0.7734375}, {"start": 96.09, "end": 96.25, "word": " add", "probability": 0.822265625}, {"start": 96.25, "end": 96.39, "word": " a", "probability": 0.94091796875}, {"start": 96.39, "end": 96.39, "word": " new", "probability": 0.91064453125}, {"start": 96.39, "end": 96.95, "word": " method", "probability": 0.94970703125}, {"start": 96.95, "end": 97.33, "word": " to", "probability": 0.64697265625}, {"start": 97.33, "end": 97.65, "word": " make", "probability": 0.58447265625}, {"start": 97.65, "end": 97.77, "word": " a", "probability": 0.9609375}, {"start": 97.77, "end": 97.77, "word": " new", "probability": 0.90185546875}, {"start": 97.77, "end": 98.27, "word": " function,", "probability": 0.96435546875}, {"start": 99.07, "end": 99.35, "word": " multiply", "probability": 0.482421875}, {"start": 99.35, "end": 99.59, "word": " by", "probability": 0.419189453125}, {"start": 99.59, "end": 99.83, "word": " whom?", "probability": 0.3896484375}, {"start": 100.79, "end": 100.93, "word": " The", "probability": 0.4150390625}, {"start": 100.93, "end": 102.37, "word": " subclasses", "probability": 0.8453776041666666}, {"start": 102.37, "end": 102.51, "word": " Of", "probability": 0.5693359375}, {"start": 102.51, "end": 102.65, "word": " course", "probability": 0.95068359375}, {"start": 102.65, "end": 103.03, "word": " the", "probability": 0.398681640625}, {"start": 103.03, "end": 103.25, "word": " process", "probability": 0.4384765625}, {"start": 103.25, "end": 103.37, "word": " can", "probability": 0.6435546875}, {"start": 103.37, "end": 103.51, "word": " be", "probability": 0.9443359375}, {"start": 103.51, "end": 103.87, "word": " complicated,", "probability": 0.71533203125}, {"start": 104.01, "end": 104.03, "word": " I", "probability": 0.57470703125}, {"start": 104.03, "end": 104.17, "word": " can", "probability": 0.39990234375}, {"start": 104.17, "end": 104.69, "word": " have", "probability": 0.86181640625}, {"start": 104.69, "end": 105.07, "word": " an", "probability": 0.7841796875}, {"start": 105.07, "end": 105.47, "word": " interface", "probability": 0.7998046875}, {"start": 105.47, "end": 105.59, "word": " with", "probability": 0.328125}, {"start": 105.59, "end": 106.97, "word": " 20", "probability": 0.6767578125}, {"start": 106.97, "end": 107.37, "word": "-30", "probability": 0.70458984375}, {"start": 107.37, "end": 107.85, "word": " classes", "probability": 0.89990234375}], "temperature": 1.0}, {"id": 5, "seek": 13388, "start": 108.7, "end": 133.88, "text": "Can there be a program in our life that has an interface that is separated from it by 20 or 30 classes? Yes, of course. For example, JavaFX or Swing. You don't have a user interface component, button, list, combo box and all these items. All of them are separated from what? From one interface. Okay? And in Android and Flutter, all of them are in the end user interface components that are numbered in tens.", "tokens": [11531, 456, 312, 257, 1461, 294, 527, 993, 300, 575, 364, 9226, 300, 307, 12005, 490, 309, 538, 945, 420, 2217, 5359, 30, 1079, 11, 295, 1164, 13, 1171, 1365, 11, 10745, 36092, 420, 3926, 278, 13, 509, 500, 380, 362, 257, 4195, 9226, 6542, 11, 2960, 11, 1329, 11, 16859, 2424, 293, 439, 613, 4754, 13, 1057, 295, 552, 366, 12005, 490, 437, 30, 3358, 472, 9226, 13, 1033, 30, 400, 294, 8853, 293, 3235, 9947, 11, 439, 295, 552, 366, 294, 264, 917, 4195, 9226, 6677, 300, 366, 40936, 294, 10688, 13], "avg_logprob": -0.5578947293130975, "compression_ratio": 1.632, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 108.7, "end": 109.18, "word": "Can", "probability": 0.1220703125}, {"start": 109.18, "end": 109.64, "word": " there", "probability": 0.50927734375}, {"start": 109.64, "end": 109.86, "word": " be", "probability": 0.919921875}, {"start": 109.86, "end": 110.2, "word": " a", "probability": 0.137451171875}, {"start": 110.2, "end": 110.2, "word": " program", "probability": 0.65087890625}, {"start": 110.2, "end": 110.2, "word": " in", "probability": 0.289794921875}, {"start": 110.2, "end": 110.92, "word": " our", "probability": 0.72265625}, {"start": 110.92, "end": 111.24, "word": " life", "probability": 0.3505859375}, {"start": 111.24, "end": 111.8, "word": " that", "probability": 0.469482421875}, {"start": 111.8, "end": 111.82, "word": " has", "probability": 0.87109375}, {"start": 111.82, "end": 111.92, "word": " an", "probability": 0.50927734375}, {"start": 111.92, "end": 112.24, "word": " interface", "probability": 0.7744140625}, {"start": 112.24, "end": 112.36, "word": " that", "probability": 0.30029296875}, {"start": 112.36, "end": 112.46, "word": " is", "probability": 0.33544921875}, {"start": 112.46, "end": 112.64, "word": " separated", "probability": 0.1739501953125}, {"start": 112.64, "end": 112.74, "word": " from", "probability": 0.63818359375}, {"start": 112.74, "end": 112.84, "word": " it", "probability": 0.85498046875}, {"start": 112.84, "end": 112.92, "word": " by", "probability": 0.1920166015625}, {"start": 112.92, "end": 113.06, "word": " 20", "probability": 0.67236328125}, {"start": 113.06, "end": 113.16, "word": " or", "probability": 0.396728515625}, {"start": 113.16, "end": 113.38, "word": " 30", "probability": 0.97900390625}, {"start": 113.38, "end": 113.72, "word": " classes?", "probability": 0.8525390625}, {"start": 113.78, "end": 113.88, "word": " Yes,", "probability": 0.70166015625}, {"start": 113.98, "end": 114.04, "word": " of", "probability": 0.6865234375}, {"start": 114.04, "end": 114.18, "word": " course.", "probability": 0.96044921875}, {"start": 114.76, "end": 114.9, "word": " For", "probability": 0.71630859375}, {"start": 114.9, "end": 115.14, "word": " example,", "probability": 0.9287109375}, {"start": 115.28, "end": 115.9, "word": " JavaFX", "probability": 0.5177001953125}, {"start": 115.9, "end": 116.42, "word": " or", "probability": 0.7763671875}, {"start": 116.42, "end": 117.0, "word": " Swing.", "probability": 0.89794921875}, {"start": 117.5, "end": 117.94, "word": " You", "probability": 0.58056640625}, {"start": 117.94, "end": 117.98, "word": " don't", "probability": 0.862548828125}, {"start": 117.98, "end": 118.26, "word": " have", "probability": 0.94091796875}, {"start": 118.26, "end": 118.42, "word": " a", "probability": 0.734375}, {"start": 118.42, "end": 118.6, "word": " user", "probability": 0.8505859375}, {"start": 118.6, "end": 119.02, "word": " interface", "probability": 0.88720703125}, {"start": 119.02, "end": 119.62, "word": " component,", "probability": 0.82421875}, {"start": 119.74, "end": 120.12, "word": " button,", "probability": 0.46337890625}, {"start": 120.7, "end": 121.08, "word": " list,", "probability": 0.8095703125}, {"start": 121.42, "end": 122.06, "word": " combo", "probability": 0.7060546875}, {"start": 122.06, "end": 122.44, "word": " box", "probability": 0.861328125}, {"start": 122.44, "end": 122.68, "word": " and", "probability": 0.2274169921875}, {"start": 122.68, "end": 123.4, "word": " all", "probability": 0.5478515625}, {"start": 123.4, "end": 123.44, "word": " these", "probability": 0.59130859375}, {"start": 123.44, "end": 123.78, "word": " items.", "probability": 0.73779296875}, {"start": 124.48, "end": 124.76, "word": " All", "probability": 0.52783203125}, {"start": 124.76, "end": 124.86, "word": " of", "probability": 0.429931640625}, {"start": 124.86, "end": 124.86, "word": " them", "probability": 0.32958984375}, {"start": 124.86, "end": 125.02, "word": " are", "probability": 0.79150390625}, {"start": 125.02, "end": 125.26, "word": " separated", "probability": 0.72265625}, {"start": 125.26, "end": 125.44, "word": " from", "probability": 0.80126953125}, {"start": 125.44, "end": 125.66, "word": " what?", "probability": 0.6103515625}, {"start": 126.4, "end": 126.88, "word": " From", "probability": 0.5}, {"start": 126.88, "end": 127.0, "word": " one", "probability": 0.509765625}, {"start": 127.0, "end": 127.42, "word": " interface.", "probability": 0.9248046875}, {"start": 128.36, "end": 128.56, "word": " Okay?", "probability": 0.201904296875}, {"start": 128.72, "end": 128.76, "word": " And", "probability": 0.59521484375}, {"start": 128.76, "end": 128.88, "word": " in", "probability": 0.5859375}, {"start": 128.88, "end": 129.32, "word": " Android", "probability": 0.90478515625}, {"start": 129.32, "end": 129.5, "word": " and", "probability": 0.697265625}, {"start": 129.5, "end": 130.0, "word": " Flutter,", "probability": 0.8955078125}, {"start": 130.16, "end": 130.32, "word": " all", "probability": 0.611328125}, {"start": 130.32, "end": 130.44, "word": " of", "probability": 0.69091796875}, {"start": 130.44, "end": 130.68, "word": " them", "probability": 0.56201171875}, {"start": 130.68, "end": 131.38, "word": " are", "probability": 0.427978515625}, {"start": 131.38, "end": 131.44, "word": " in", "probability": 0.324951171875}, {"start": 131.44, "end": 131.54, "word": " the", "probability": 0.841796875}, {"start": 131.54, "end": 131.76, "word": " end", "probability": 0.69677734375}, {"start": 131.76, "end": 132.04, "word": " user", "probability": 0.454345703125}, {"start": 132.04, "end": 132.52, "word": " interface", "probability": 0.8779296875}, {"start": 132.52, "end": 133.02, "word": " components", "probability": 0.92724609375}, {"start": 133.02, "end": 133.18, "word": " that", "probability": 0.26171875}, {"start": 133.18, "end": 133.42, "word": " are", "probability": 0.387939453125}, {"start": 133.42, "end": 133.42, "word": " numbered", "probability": 0.2452392578125}, {"start": 133.42, "end": 133.58, "word": " in", "probability": 0.46875}, {"start": 133.58, "end": 133.88, "word": " tens.", "probability": 0.67041015625}], "temperature": 1.0}, {"id": 6, "seek": 16375, "start": 134.91, "end": 163.75, "text": " it will be separated from one interface. If you want to add a new functionality that supports any UI component, use this method. Of course, you will add this method to the interface, but when you add it to the interface, all the subclasses will be affected. Now, what we want to do, our goal is to add new functions or functions to the interface without affecting anyone.", "tokens": [309, 486, 312, 12005, 490, 472, 9226, 13, 759, 291, 528, 281, 909, 257, 777, 14980, 300, 9346, 604, 15682, 6542, 11, 764, 341, 3170, 13, 2720, 1164, 11, 291, 486, 909, 341, 3170, 281, 264, 9226, 11, 457, 562, 291, 909, 309, 281, 264, 9226, 11, 439, 264, 1422, 11665, 279, 486, 312, 8028, 13, 823, 11, 437, 321, 528, 281, 360, 11, 527, 3387, 307, 281, 909, 777, 6828, 420, 6828, 281, 264, 9226, 1553, 17476, 2878, 13], "avg_logprob": -0.51774690180649, "compression_ratio": 1.7971014492753623, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 134.91, "end": 135.09, "word": " it", "probability": 0.15869140625}, {"start": 135.09, "end": 135.17, "word": " will", "probability": 0.70947265625}, {"start": 135.17, "end": 135.33, "word": " be", "probability": 0.172607421875}, {"start": 135.33, "end": 135.43, "word": " separated", "probability": 0.44287109375}, {"start": 135.43, "end": 135.61, "word": " from", "probability": 0.8134765625}, {"start": 135.61, "end": 135.75, "word": " one", "probability": 0.55419921875}, {"start": 135.75, "end": 136.21, "word": " interface.", "probability": 0.82470703125}, {"start": 136.81, "end": 136.99, "word": " If", "probability": 0.20263671875}, {"start": 136.99, "end": 137.17, "word": " you", "probability": 0.9091796875}, {"start": 137.17, "end": 137.17, "word": " want", "probability": 0.4443359375}, {"start": 137.17, "end": 137.19, "word": " to", "probability": 0.96630859375}, {"start": 137.19, "end": 137.35, "word": " add", "probability": 0.90966796875}, {"start": 137.35, "end": 137.47, "word": " a", "probability": 0.66796875}, {"start": 137.47, "end": 137.47, "word": " new", "probability": 0.9052734375}, {"start": 137.47, "end": 137.89, "word": " functionality", "probability": 0.66552734375}, {"start": 137.89, "end": 139.51, "word": " that", "probability": 0.20654296875}, {"start": 139.51, "end": 139.79, "word": " supports", "probability": 0.63037109375}, {"start": 139.79, "end": 140.75, "word": " any", "probability": 0.427978515625}, {"start": 140.75, "end": 143.97, "word": " UI", "probability": 0.68408203125}, {"start": 143.97, "end": 144.67, "word": " component,", "probability": 0.849609375}, {"start": 144.71, "end": 145.07, "word": " use", "probability": 0.1519775390625}, {"start": 145.07, "end": 145.21, "word": " this", "probability": 0.8134765625}, {"start": 145.21, "end": 145.47, "word": " method.", "probability": 0.89453125}, {"start": 146.25, "end": 146.71, "word": " Of", "probability": 0.61962890625}, {"start": 146.71, "end": 146.75, "word": " course,", "probability": 0.96142578125}, {"start": 146.93, "end": 146.93, "word": " you", "probability": 0.8759765625}, {"start": 146.93, "end": 147.07, "word": " will", "probability": 0.261962890625}, {"start": 147.07, "end": 147.31, "word": " add", "probability": 0.51708984375}, {"start": 147.31, "end": 147.49, "word": " this", "probability": 0.84375}, {"start": 147.49, "end": 147.73, "word": " method", "probability": 0.8935546875}, {"start": 147.73, "end": 147.95, "word": " to", "probability": 0.74462890625}, {"start": 147.95, "end": 147.99, "word": " the", "probability": 0.77001953125}, {"start": 147.99, "end": 148.51, "word": " interface,", "probability": 0.7802734375}, {"start": 148.75, "end": 149.29, "word": " but", "probability": 0.87109375}, {"start": 149.29, "end": 149.43, "word": " when", "probability": 0.47216796875}, {"start": 149.43, "end": 149.53, "word": " you", "probability": 0.921875}, {"start": 149.53, "end": 149.67, "word": " add", "probability": 0.87890625}, {"start": 149.67, "end": 149.77, "word": " it", "probability": 0.84228515625}, {"start": 149.77, "end": 149.83, "word": " to", "probability": 0.91796875}, {"start": 149.83, "end": 149.91, "word": " the", "probability": 0.9033203125}, {"start": 149.91, "end": 150.23, "word": " interface,", "probability": 0.8642578125}, {"start": 150.35, "end": 151.11, "word": " all", "probability": 0.36376953125}, {"start": 151.11, "end": 152.01, "word": " the", "probability": 0.50830078125}, {"start": 152.01, "end": 152.67, "word": " subclasses", "probability": 0.80810546875}, {"start": 152.67, "end": 152.67, "word": " will", "probability": 0.427490234375}, {"start": 152.67, "end": 152.67, "word": " be", "probability": 0.603515625}, {"start": 152.67, "end": 152.67, "word": " affected.", "probability": 0.07452392578125}, {"start": 153.07, "end": 153.51, "word": " Now,", "probability": 0.6416015625}, {"start": 153.65, "end": 153.75, "word": " what", "probability": 0.58056640625}, {"start": 153.75, "end": 153.83, "word": " we", "probability": 0.91845703125}, {"start": 153.83, "end": 154.03, "word": " want", "probability": 0.74609375}, {"start": 154.03, "end": 154.13, "word": " to", "probability": 0.96875}, {"start": 154.13, "end": 154.43, "word": " do,", "probability": 0.86474609375}, {"start": 154.63, "end": 154.79, "word": " our", "probability": 0.54443359375}, {"start": 154.79, "end": 155.01, "word": " goal", "probability": 0.86083984375}, {"start": 155.01, "end": 155.55, "word": " is", "probability": 0.7373046875}, {"start": 155.55, "end": 155.95, "word": " to", "probability": 0.505859375}, {"start": 155.95, "end": 157.13, "word": " add", "probability": 0.354736328125}, {"start": 157.13, "end": 158.05, "word": " new", "probability": 0.5908203125}, {"start": 158.05, "end": 158.43, "word": " functions", "probability": 0.72607421875}, {"start": 158.43, "end": 159.63, "word": " or", "probability": 0.421142578125}, {"start": 159.63, "end": 160.05, "word": " functions", "probability": 0.595703125}, {"start": 160.05, "end": 160.47, "word": " to", "probability": 0.85400390625}, {"start": 160.47, "end": 160.55, "word": " the", "probability": 0.89501953125}, {"start": 160.55, "end": 161.17, "word": " interface", "probability": 0.86767578125}, {"start": 161.17, "end": 162.87, "word": " without", "probability": 0.7255859375}, {"start": 162.87, "end": 163.27, "word": " affecting", "probability": 0.433837890625}, {"start": 163.27, "end": 163.75, "word": " anyone.", "probability": 0.483642578125}], "temperature": 1.0}, {"id": 7, "seek": 18041, "start": 165.01, "end": 180.41, "text": "Subclasses, this is what we are used to always have, right or wrong, that you add something to the interface and you multiply by who? Yes, all the subclasses How can we add something new to the interface without multiplying by the subclasses? This is the goal that we want to achieve", "tokens": [39582, 11665, 279, 11, 341, 307, 437, 321, 366, 1143, 281, 1009, 362, 11, 558, 420, 2085, 11, 300, 291, 909, 746, 281, 264, 9226, 293, 291, 12972, 538, 567, 30, 1079, 11, 439, 264, 1422, 11665, 279, 1012, 393, 321, 909, 746, 777, 281, 264, 9226, 1553, 30955, 538, 264, 1422, 11665, 279, 30, 639, 307, 264, 3387, 300, 321, 528, 281, 4584], "avg_logprob": -0.5331730769230769, "compression_ratio": 1.6845238095238095, "no_speech_prob": 1.609325408935547e-05, "words": [{"start": 165.01, "end": 165.37, "word": "Subclasses,", "probability": 0.6851399739583334}, {"start": 165.39, "end": 165.71, "word": " this", "probability": 0.186279296875}, {"start": 165.71, "end": 166.01, "word": " is", "probability": 0.478759765625}, {"start": 166.01, "end": 166.01, "word": " what", "probability": 0.3544921875}, {"start": 166.01, "end": 166.19, "word": " we", "probability": 0.9169921875}, {"start": 166.19, "end": 166.29, "word": " are", "probability": 0.39599609375}, {"start": 166.29, "end": 166.47, "word": " used", "probability": 0.6630859375}, {"start": 166.47, "end": 166.85, "word": " to", "probability": 0.94091796875}, {"start": 166.85, "end": 167.43, "word": " always", "probability": 0.1376953125}, {"start": 167.43, "end": 167.55, "word": " have,", "probability": 0.1695556640625}, {"start": 167.69, "end": 167.79, "word": " right", "probability": 0.46044921875}, {"start": 167.79, "end": 167.97, "word": " or", "probability": 0.595703125}, {"start": 167.97, "end": 168.13, "word": " wrong,", "probability": 0.56201171875}, {"start": 168.55, "end": 168.63, "word": " that", "probability": 0.27490234375}, {"start": 168.63, "end": 168.81, "word": " you", "probability": 0.67822265625}, {"start": 168.81, "end": 168.99, "word": " add", "probability": 0.78857421875}, {"start": 168.99, "end": 169.27, "word": " something", "probability": 0.70166015625}, {"start": 169.27, "end": 169.35, "word": " to", "probability": 0.611328125}, {"start": 169.35, "end": 169.41, "word": " the", "probability": 0.78466796875}, {"start": 169.41, "end": 169.95, "word": " interface", "probability": 0.8671875}, {"start": 169.95, "end": 170.19, "word": " and", "probability": 0.59765625}, {"start": 170.19, "end": 170.19, "word": " you", "probability": 0.21044921875}, {"start": 170.19, "end": 170.39, "word": " multiply", "probability": 0.176513671875}, {"start": 170.39, "end": 170.53, "word": " by", "probability": 0.2491455078125}, {"start": 170.53, "end": 170.95, "word": " who?", "probability": 0.32421875}, {"start": 171.73, "end": 172.09, "word": " Yes,", "probability": 0.38916015625}, {"start": 172.27, "end": 172.43, "word": " all", "probability": 0.87451171875}, {"start": 172.43, "end": 172.55, "word": " the", "probability": 0.38525390625}, {"start": 172.55, "end": 173.25, "word": " subclasses", "probability": 0.9529622395833334}, {"start": 173.25, "end": 173.87, "word": " How", "probability": 0.407470703125}, {"start": 173.87, "end": 174.03, "word": " can", "probability": 0.73583984375}, {"start": 174.03, "end": 174.35, "word": " we", "probability": 0.92138671875}, {"start": 174.35, "end": 174.87, "word": " add", "probability": 0.9013671875}, {"start": 174.87, "end": 175.07, "word": " something", "probability": 0.65185546875}, {"start": 175.07, "end": 175.39, "word": " new", "probability": 0.86669921875}, {"start": 175.39, "end": 175.53, "word": " to", "probability": 0.77685546875}, {"start": 175.53, "end": 175.61, "word": " the", "probability": 0.89208984375}, {"start": 175.61, "end": 176.07, "word": " interface", "probability": 0.87646484375}, {"start": 176.07, "end": 176.41, "word": " without", "probability": 0.83642578125}, {"start": 176.41, "end": 176.75, "word": " multiplying", "probability": 0.85107421875}, {"start": 176.75, "end": 177.01, "word": " by", "probability": 0.7080078125}, {"start": 177.01, "end": 178.05, "word": " the", "probability": 0.74072265625}, {"start": 178.05, "end": 178.57, "word": " subclasses?", "probability": 0.800048828125}, {"start": 178.57, "end": 178.71, "word": " This", "probability": 0.73046875}, {"start": 178.71, "end": 178.85, "word": " is", "probability": 0.9443359375}, {"start": 178.85, "end": 178.99, "word": " the", "probability": 0.72509765625}, {"start": 178.99, "end": 179.29, "word": " goal", "probability": 0.8349609375}, {"start": 179.29, "end": 179.89, "word": " that", "probability": 0.5322265625}, {"start": 179.89, "end": 180.03, "word": " we", "probability": 0.9599609375}, {"start": 180.03, "end": 180.17, "word": " want", "probability": 0.481689453125}, {"start": 180.17, "end": 180.25, "word": " to", "probability": 0.96923828125}, {"start": 180.25, "end": 180.41, "word": " achieve", "probability": 0.443115234375}], "temperature": 1.0}, {"id": 8, "seek": 20271, "start": 181.79, "end": 202.71, "text": "Okay guys, before we explain the visitor pattern, this problem is one of the problems that had a big debate even between java designers, okay? The java designers themselves and any object-oriented programmer said, we are overwhelmed, every time we do a hierarchical class like that, it breaks off from the interface and we want to add something, it will hit us", "tokens": [8297, 1074, 11, 949, 321, 2903, 264, 28222, 5102, 11, 341, 1154, 307, 472, 295, 264, 2740, 300, 632, 257, 955, 7958, 754, 1296, 361, 4061, 16196, 11, 1392, 30, 440, 361, 4061, 16196, 552, 790, 303, 82, 293, 604, 2657, 12, 27414, 32116, 848, 11, 321, 366, 19042, 11, 633, 565, 321, 360, 257, 35250, 804, 1508, 411, 300, 11, 309, 9857, 766, 490, 264, 9226, 293, 321, 528, 281, 909, 746, 11, 309, 486, 2045, 505], "avg_logprob": -0.6337025361725047, "compression_ratio": 1.565217391304348, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 181.79, "end": 182.05, "word": "Okay", "probability": 0.11529541015625}, {"start": 182.05, "end": 182.35, "word": " guys,", "probability": 0.5625}, {"start": 182.45, "end": 182.59, "word": " before", "probability": 0.7734375}, {"start": 182.59, "end": 182.77, "word": " we", "probability": 0.54833984375}, {"start": 182.77, "end": 182.95, "word": " explain", "probability": 0.7119140625}, {"start": 182.95, "end": 183.09, "word": " the", "probability": 0.50341796875}, {"start": 183.09, "end": 183.29, "word": " visitor", "probability": 0.8994140625}, {"start": 183.29, "end": 183.75, "word": " pattern,", "probability": 0.89013671875}, {"start": 184.15, "end": 184.45, "word": " this", "probability": 0.3232421875}, {"start": 184.45, "end": 184.83, "word": " problem", "probability": 0.63232421875}, {"start": 184.83, "end": 184.97, "word": " is", "probability": 0.1287841796875}, {"start": 184.97, "end": 185.47, "word": " one", "probability": 0.2978515625}, {"start": 185.47, "end": 185.65, "word": " of", "probability": 0.90380859375}, {"start": 185.65, "end": 185.75, "word": " the", "probability": 0.8203125}, {"start": 185.75, "end": 186.29, "word": " problems", "probability": 0.40625}, {"start": 186.29, "end": 187.15, "word": " that", "probability": 0.62744140625}, {"start": 187.15, "end": 187.69, "word": " had", "probability": 0.2332763671875}, {"start": 187.69, "end": 187.83, "word": " a", "probability": 0.5888671875}, {"start": 187.83, "end": 187.83, "word": " big", "probability": 0.436767578125}, {"start": 187.83, "end": 188.19, "word": " debate", "probability": 0.5263671875}, {"start": 188.19, "end": 188.87, "word": " even", "probability": 0.56787109375}, {"start": 188.87, "end": 189.35, "word": " between", "probability": 0.57080078125}, {"start": 189.35, "end": 190.35, "word": " java", "probability": 0.629638671875}, {"start": 190.35, "end": 190.35, "word": " designers,", "probability": 0.72509765625}, {"start": 190.89, "end": 191.09, "word": " okay?", "probability": 0.56640625}, {"start": 191.21, "end": 191.29, "word": " The", "probability": 0.1795654296875}, {"start": 191.29, "end": 191.97, "word": " java", "probability": 0.894775390625}, {"start": 191.97, "end": 191.97, "word": " designers", "probability": 0.8876953125}, {"start": 191.97, "end": 192.83, "word": " themselves", "probability": 0.58636474609375}, {"start": 192.83, "end": 193.07, "word": " and", "probability": 0.7802734375}, {"start": 193.07, "end": 193.23, "word": " any", "probability": 0.89111328125}, {"start": 193.23, "end": 193.51, "word": " object", "probability": 0.935546875}, {"start": 193.51, "end": 193.83, "word": "-oriented", "probability": 0.5775146484375}, {"start": 193.83, "end": 194.21, "word": " programmer", "probability": 0.296875}, {"start": 194.21, "end": 194.45, "word": " said,", "probability": 0.64208984375}, {"start": 194.59, "end": 194.97, "word": " we", "probability": 0.07550048828125}, {"start": 194.97, "end": 195.33, "word": " are", "probability": 0.6357421875}, {"start": 195.33, "end": 195.63, "word": " overwhelmed,", "probability": 0.1273193359375}, {"start": 196.55, "end": 197.07, "word": " every", "probability": 0.318115234375}, {"start": 197.07, "end": 197.33, "word": " time", "probability": 0.7060546875}, {"start": 197.33, "end": 197.47, "word": " we", "probability": 0.943359375}, {"start": 197.47, "end": 197.71, "word": " do", "probability": 0.310791015625}, {"start": 197.71, "end": 198.09, "word": " a", "probability": 0.775390625}, {"start": 198.09, "end": 198.89, "word": " hierarchical", "probability": 0.7041015625}, {"start": 198.89, "end": 198.89, "word": " class", "probability": 0.95751953125}, {"start": 198.89, "end": 199.01, "word": " like", "probability": 0.646484375}, {"start": 199.01, "end": 199.19, "word": " that,", "probability": 0.537109375}, {"start": 199.25, "end": 199.29, "word": " it", "probability": 0.5009765625}, {"start": 199.29, "end": 199.51, "word": " breaks", "probability": 0.2340087890625}, {"start": 199.51, "end": 199.65, "word": " off", "probability": 0.1875}, {"start": 199.65, "end": 199.69, "word": " from", "probability": 0.67236328125}, {"start": 199.69, "end": 199.75, "word": " the", "probability": 0.9169921875}, {"start": 199.75, "end": 200.09, "word": " interface", "probability": 0.8994140625}, {"start": 200.09, "end": 200.23, "word": " and", "probability": 0.48193359375}, {"start": 200.23, "end": 200.57, "word": " we", "probability": 0.5244140625}, {"start": 200.57, "end": 200.57, "word": " want", "probability": 0.5869140625}, {"start": 200.57, "end": 200.71, "word": " to", "probability": 0.9697265625}, {"start": 200.71, "end": 200.91, "word": " add", "probability": 0.92431640625}, {"start": 200.91, "end": 201.41, "word": " something,", "probability": 0.75146484375}, {"start": 202.05, "end": 202.09, "word": " it", "probability": 0.65673828125}, {"start": 202.09, "end": 202.15, "word": " will", "probability": 0.54541015625}, {"start": 202.15, "end": 202.37, "word": " hit", "probability": 0.409423828125}, {"start": 202.37, "end": 202.71, "word": " us", "probability": 0.884765625}], "temperature": 1.0}, {"id": 9, "seek": 22179, "start": 203.49, "end": 221.79, "text": "Every class. So what did they do in Java? Did you notice? This is one of the things that appeared in Java 8 which is version 8 of Java. Did you notice that Java reached 11 for example? In Java 8 they added something new to support the work that we are talking about", "tokens": [15536, 1508, 13, 407, 437, 630, 436, 360, 294, 10745, 30, 2589, 291, 3449, 30, 639, 307, 472, 295, 264, 721, 300, 8516, 294, 10745, 1649, 597, 307, 3037, 1649, 295, 10745, 13, 2589, 291, 3449, 300, 10745, 6488, 2975, 337, 1365, 30, 682, 10745, 1649, 436, 3869, 746, 777, 281, 1406, 264, 589, 300, 321, 366, 1417, 466], "avg_logprob": -0.3940104161699613, "compression_ratio": 1.5142857142857142, "no_speech_prob": 2.3245811462402344e-06, "words": [{"start": 203.49, "end": 203.77, "word": "Every", "probability": 0.210205078125}, {"start": 203.77, "end": 204.15, "word": " class.", "probability": 0.71484375}, {"start": 204.63, "end": 204.87, "word": " So", "probability": 0.66259765625}, {"start": 204.87, "end": 205.03, "word": " what", "probability": 0.8251953125}, {"start": 205.03, "end": 205.13, "word": " did", "probability": 0.8212890625}, {"start": 205.13, "end": 205.25, "word": " they", "probability": 0.82763671875}, {"start": 205.25, "end": 205.25, "word": " do", "probability": 0.9443359375}, {"start": 205.25, "end": 205.39, "word": " in", "probability": 0.79833984375}, {"start": 205.39, "end": 205.73, "word": " Java?", "probability": 0.626953125}, {"start": 206.35, "end": 206.49, "word": " Did", "probability": 0.25830078125}, {"start": 206.49, "end": 206.63, "word": " you", "probability": 0.6845703125}, {"start": 206.63, "end": 206.63, "word": " notice?", "probability": 0.478515625}, {"start": 206.67, "end": 206.79, "word": " This", "probability": 0.47216796875}, {"start": 206.79, "end": 206.85, "word": " is", "probability": 0.880859375}, {"start": 206.85, "end": 206.95, "word": " one", "probability": 0.666015625}, {"start": 206.95, "end": 207.01, "word": " of", "probability": 0.9443359375}, {"start": 207.01, "end": 207.07, "word": " the", "probability": 0.8935546875}, {"start": 207.07, "end": 207.45, "word": " things", "probability": 0.78955078125}, {"start": 207.45, "end": 207.79, "word": " that", "probability": 0.8857421875}, {"start": 207.79, "end": 208.05, "word": " appeared", "probability": 0.51220703125}, {"start": 208.05, "end": 208.23, "word": " in", "probability": 0.9326171875}, {"start": 208.23, "end": 208.49, "word": " Java", "probability": 0.908203125}, {"start": 208.49, "end": 208.89, "word": " 8", "probability": 0.951171875}, {"start": 208.89, "end": 209.65, "word": " which", "probability": 0.322509765625}, {"start": 209.65, "end": 209.79, "word": " is", "probability": 0.8955078125}, {"start": 209.79, "end": 210.11, "word": " version", "probability": 0.67724609375}, {"start": 210.11, "end": 210.43, "word": " 8", "probability": 0.93212890625}, {"start": 210.43, "end": 210.61, "word": " of", "probability": 0.56201171875}, {"start": 210.61, "end": 210.85, "word": " Java.", "probability": 0.87353515625}, {"start": 210.93, "end": 210.97, "word": " Did", "probability": 0.8408203125}, {"start": 210.97, "end": 211.15, "word": " you", "probability": 0.9619140625}, {"start": 211.15, "end": 211.15, "word": " notice", "probability": 0.87255859375}, {"start": 211.15, "end": 211.25, "word": " that", "probability": 0.40087890625}, {"start": 211.25, "end": 211.47, "word": " Java", "probability": 0.890625}, {"start": 211.47, "end": 211.81, "word": " reached", "probability": 0.418212890625}, {"start": 211.81, "end": 212.35, "word": " 11", "probability": 0.88818359375}, {"start": 212.35, "end": 212.63, "word": " for", "probability": 0.373779296875}, {"start": 212.63, "end": 212.89, "word": " example?", "probability": 0.927734375}, {"start": 214.73, "end": 214.81, "word": " In", "probability": 0.75341796875}, {"start": 214.81, "end": 215.15, "word": " Java", "probability": 0.90380859375}, {"start": 215.15, "end": 215.59, "word": " 8", "probability": 0.98779296875}, {"start": 215.59, "end": 218.05, "word": " they", "probability": 0.380615234375}, {"start": 218.05, "end": 218.45, "word": " added", "probability": 0.89111328125}, {"start": 218.45, "end": 219.23, "word": " something", "probability": 0.56591796875}, {"start": 219.23, "end": 219.63, "word": " new", "probability": 0.81982421875}, {"start": 219.63, "end": 219.97, "word": " to", "probability": 0.86865234375}, {"start": 219.97, "end": 220.41, "word": " support", "probability": 0.95556640625}, {"start": 220.41, "end": 220.87, "word": " the", "probability": 0.55224609375}, {"start": 220.87, "end": 221.05, "word": " work", "probability": 0.452392578125}, {"start": 221.05, "end": 221.17, "word": " that", "probability": 0.60498046875}, {"start": 221.17, "end": 221.35, "word": " we", "probability": 0.89404296875}, {"start": 221.35, "end": 221.45, "word": " are", "probability": 0.66015625}, {"start": 221.45, "end": 221.65, "word": " talking", "probability": 0.62939453125}, {"start": 221.65, "end": 221.79, "word": " about", "probability": 0.90283203125}], "temperature": 1.0}, {"id": 10, "seek": 24643, "start": 222.73, "end": 246.43, "text": " For example, let's take a simple example similar to things that we .. For example, if I made an interface called shape, okay? And there is a method, public, for example, void, draw Okay? And then I made classes from this shape This is circle The circle, for example, has a radius", "tokens": [1171, 1365, 11, 718, 311, 747, 257, 2199, 1365, 2531, 281, 721, 300, 321, 4386, 1171, 1365, 11, 498, 286, 1027, 364, 9226, 1219, 3909, 11, 1392, 30, 400, 456, 307, 257, 3170, 11, 1908, 11, 337, 1365, 11, 22009, 11, 2642, 1033, 30, 400, 550, 286, 1027, 5359, 490, 341, 3909, 639, 307, 6329, 440, 6329, 11, 337, 1365, 11, 575, 257, 15845], "avg_logprob": -0.44567307692307695, "compression_ratio": 1.6374269005847952, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 222.73, "end": 223.29, "word": " For", "probability": 0.1304931640625}, {"start": 223.29, "end": 223.53, "word": " example,", "probability": 0.89990234375}, {"start": 223.63, "end": 223.89, "word": " let's", "probability": 0.84375}, {"start": 223.89, "end": 224.09, "word": " take", "probability": 0.77197265625}, {"start": 224.09, "end": 224.19, "word": " a", "probability": 0.88525390625}, {"start": 224.19, "end": 224.71, "word": " simple", "probability": 0.91357421875}, {"start": 224.71, "end": 224.89, "word": " example", "probability": 0.93603515625}, {"start": 224.89, "end": 225.35, "word": " similar", "probability": 0.3642578125}, {"start": 225.35, "end": 225.83, "word": " to", "probability": 0.931640625}, {"start": 225.83, "end": 226.99, "word": " things", "probability": 0.2020263671875}, {"start": 226.99, "end": 227.15, "word": " that", "probability": 0.30517578125}, {"start": 227.15, "end": 227.25, "word": " we", "probability": 0.5361328125}, {"start": 227.25, "end": 227.39, "word": " ..", "probability": 0.08367919921875}, {"start": 227.39, "end": 227.67, "word": " For", "probability": 0.31591796875}, {"start": 227.67, "end": 227.69, "word": " example,", "probability": 0.96142578125}, {"start": 227.73, "end": 227.81, "word": " if", "probability": 0.873046875}, {"start": 227.81, "end": 227.99, "word": " I", "probability": 0.96826171875}, {"start": 227.99, "end": 228.21, "word": " made", "probability": 0.5244140625}, {"start": 228.21, "end": 228.33, "word": " an", "probability": 0.82421875}, {"start": 228.33, "end": 228.67, "word": " interface", "probability": 0.89453125}, {"start": 228.67, "end": 229.01, "word": " called", "probability": 0.66162109375}, {"start": 229.01, "end": 230.45, "word": " shape,", "probability": 0.82470703125}, {"start": 230.89, "end": 231.19, "word": " okay?", "probability": 0.4248046875}, {"start": 231.65, "end": 231.85, "word": " And", "probability": 0.6748046875}, {"start": 231.85, "end": 232.01, "word": " there", "probability": 0.73779296875}, {"start": 232.01, "end": 232.01, "word": " is", "probability": 0.6787109375}, {"start": 232.01, "end": 232.11, "word": " a", "probability": 0.60107421875}, {"start": 232.11, "end": 232.47, "word": " method,", "probability": 0.93896484375}, {"start": 232.75, "end": 233.23, "word": " public,", "probability": 0.87060546875}, {"start": 233.51, "end": 233.69, "word": " for", "probability": 0.7451171875}, {"start": 233.69, "end": 233.87, "word": " example,", "probability": 0.97119140625}, {"start": 234.15, "end": 234.63, "word": " void,", "probability": 0.86572265625}, {"start": 234.85, "end": 235.15, "word": " draw", "probability": 0.78564453125}, {"start": 235.15, "end": 237.81, "word": " Okay?", "probability": 0.3115234375}, {"start": 238.09, "end": 238.45, "word": " And", "probability": 0.72021484375}, {"start": 238.45, "end": 238.85, "word": " then", "probability": 0.84423828125}, {"start": 238.85, "end": 239.09, "word": " I", "probability": 0.732421875}, {"start": 239.09, "end": 239.39, "word": " made", "probability": 0.7978515625}, {"start": 239.39, "end": 239.53, "word": " classes", "probability": 0.42333984375}, {"start": 239.53, "end": 239.53, "word": " from", "probability": 0.6728515625}, {"start": 239.53, "end": 239.93, "word": " this", "probability": 0.83203125}, {"start": 239.93, "end": 240.27, "word": " shape", "probability": 0.9130859375}, {"start": 240.27, "end": 242.29, "word": " This", "probability": 0.32421875}, {"start": 242.29, "end": 242.39, "word": " is", "probability": 0.919921875}, {"start": 242.39, "end": 242.89, "word": " circle", "probability": 0.53076171875}, {"start": 242.89, "end": 244.89, "word": " The", "probability": 0.50537109375}, {"start": 244.89, "end": 245.21, "word": " circle,", "probability": 0.9580078125}, {"start": 245.33, "end": 245.43, "word": " for", "probability": 0.94140625}, {"start": 245.43, "end": 245.53, "word": " example,", "probability": 0.9697265625}, {"start": 245.65, "end": 245.89, "word": " has", "probability": 0.84814453125}, {"start": 245.89, "end": 245.99, "word": " a", "probability": 0.53955078125}, {"start": 245.99, "end": 246.43, "word": " radius", "probability": 0.9697265625}], "temperature": 1.0}, {"id": 11, "seek": 27750, "start": 248.7, "end": 277.5, "text": " and I also have the rectangle this has integer width and height now I want the circle and rectangle to have the same shape and both of them to implement the method draw each one in a different way now I go to the circle and say implement shape", "tokens": [293, 286, 611, 362, 264, 21930, 341, 575, 24922, 11402, 293, 6681, 586, 286, 528, 264, 6329, 293, 21930, 281, 362, 264, 912, 3909, 293, 1293, 295, 552, 281, 4445, 264, 3170, 2642, 1184, 472, 294, 257, 819, 636, 586, 286, 352, 281, 264, 6329, 293, 584, 4445, 3909], "avg_logprob": -0.4771874988079071, "compression_ratio": 1.7304964539007093, "no_speech_prob": 0.0, "words": [{"start": 248.7, "end": 248.94, "word": " and", "probability": 0.2822265625}, {"start": 248.94, "end": 249.5, "word": " I", "probability": 0.44091796875}, {"start": 249.5, "end": 250.92, "word": " also", "probability": 0.428955078125}, {"start": 250.92, "end": 250.92, "word": " have", "probability": 0.845703125}, {"start": 250.92, "end": 251.5, "word": " the", "probability": 0.19140625}, {"start": 251.5, "end": 252.06, "word": " rectangle", "probability": 0.9501953125}, {"start": 252.06, "end": 257.44, "word": " this", "probability": 0.267578125}, {"start": 257.44, "end": 257.68, "word": " has", "probability": 0.53515625}, {"start": 257.68, "end": 258.3, "word": " integer", "probability": 0.61572265625}, {"start": 258.3, "end": 258.74, "word": " width", "probability": 0.9072265625}, {"start": 258.74, "end": 259.7, "word": " and", "probability": 0.91748046875}, {"start": 259.7, "end": 260.22, "word": " height", "probability": 0.87158203125}, {"start": 260.22, "end": 265.88, "word": " now", "probability": 0.2744140625}, {"start": 265.88, "end": 266.0, "word": " I", "probability": 0.7216796875}, {"start": 266.0, "end": 266.24, "word": " want", "probability": 0.70849609375}, {"start": 266.24, "end": 266.64, "word": " the", "probability": 0.462890625}, {"start": 266.64, "end": 266.94, "word": " circle", "probability": 0.955078125}, {"start": 266.94, "end": 267.08, "word": " and", "probability": 0.92919921875}, {"start": 267.08, "end": 267.54, "word": " rectangle", "probability": 0.89306640625}, {"start": 267.54, "end": 267.72, "word": " to", "probability": 0.7451171875}, {"start": 267.72, "end": 268.0, "word": " have", "probability": 0.52587890625}, {"start": 268.0, "end": 268.14, "word": " the", "probability": 0.52294921875}, {"start": 268.14, "end": 268.24, "word": " same", "probability": 0.7529296875}, {"start": 268.24, "end": 268.62, "word": " shape", "probability": 0.8076171875}, {"start": 268.62, "end": 269.42, "word": " and", "probability": 0.8173828125}, {"start": 269.42, "end": 269.88, "word": " both", "probability": 0.36572265625}, {"start": 269.88, "end": 270.22, "word": " of", "probability": 0.296875}, {"start": 270.22, "end": 270.48, "word": " them", "probability": 0.900390625}, {"start": 270.48, "end": 271.24, "word": " to", "probability": 0.485107421875}, {"start": 271.24, "end": 272.06, "word": " implement", "probability": 0.267822265625}, {"start": 272.06, "end": 272.42, "word": " the", "probability": 0.42919921875}, {"start": 272.42, "end": 272.68, "word": " method", "probability": 0.79150390625}, {"start": 272.68, "end": 272.9, "word": " draw", "probability": 0.62451171875}, {"start": 272.9, "end": 273.08, "word": " each", "probability": 0.429931640625}, {"start": 273.08, "end": 273.24, "word": " one", "probability": 0.5908203125}, {"start": 273.24, "end": 273.36, "word": " in", "probability": 0.5458984375}, {"start": 273.36, "end": 273.42, "word": " a", "probability": 0.71484375}, {"start": 273.42, "end": 273.88, "word": " different", "probability": 0.87060546875}, {"start": 273.88, "end": 274.02, "word": " way", "probability": 0.92138671875}, {"start": 274.02, "end": 275.2, "word": " now", "probability": 0.49267578125}, {"start": 275.2, "end": 275.32, "word": " I", "probability": 0.92431640625}, {"start": 275.32, "end": 275.44, "word": " go", "probability": 0.8203125}, {"start": 275.44, "end": 275.54, "word": " to", "probability": 0.94775390625}, {"start": 275.54, "end": 275.66, "word": " the", "probability": 0.8291015625}, {"start": 275.66, "end": 275.9, "word": " circle", "probability": 0.95849609375}, {"start": 275.9, "end": 276.04, "word": " and", "probability": 0.763671875}, {"start": 276.04, "end": 276.18, "word": " say", "probability": 0.396484375}, {"start": 276.18, "end": 276.62, "word": " implement", "probability": 0.74267578125}, {"start": 276.62, "end": 277.5, "word": " shape", "probability": 0.89306640625}], "temperature": 1.0}, {"id": 12, "seek": 30185, "start": 278.81, "end": 301.85, "text": " Because of course it will give me an error because I have to make an implement to draw And instead of this code that I write here for example system.out.println drawing drawing a circle And for example I have rectangle implement shape", "tokens": [1436, 295, 1164, 309, 486, 976, 385, 364, 6713, 570, 286, 362, 281, 652, 364, 4445, 281, 2642, 400, 2602, 295, 341, 3089, 300, 286, 2464, 510, 337, 1365, 1185, 13, 346, 13, 14030, 75, 77, 6316, 6316, 257, 6329, 400, 337, 1365, 286, 362, 21930, 4445, 3909], "avg_logprob": -0.5060586734693877, "compression_ratio": 1.5562913907284768, "no_speech_prob": 0.0, "words": [{"start": 278.81, "end": 279.09, "word": " Because", "probability": 0.1524658203125}, {"start": 279.09, "end": 279.23, "word": " of", "probability": 0.19580078125}, {"start": 279.23, "end": 279.49, "word": " course", "probability": 0.8837890625}, {"start": 279.49, "end": 279.83, "word": " it", "probability": 0.5517578125}, {"start": 279.83, "end": 279.89, "word": " will", "probability": 0.67236328125}, {"start": 279.89, "end": 280.03, "word": " give", "probability": 0.29052734375}, {"start": 280.03, "end": 280.19, "word": " me", "probability": 0.58447265625}, {"start": 280.19, "end": 280.43, "word": " an", "probability": 0.5390625}, {"start": 280.43, "end": 280.43, "word": " error", "probability": 0.87939453125}, {"start": 280.43, "end": 280.67, "word": " because", "probability": 0.496826171875}, {"start": 280.67, "end": 280.81, "word": " I", "probability": 0.8427734375}, {"start": 280.81, "end": 280.91, "word": " have", "probability": 0.52490234375}, {"start": 280.91, "end": 280.99, "word": " to", "probability": 0.96875}, {"start": 280.99, "end": 281.13, "word": " make", "probability": 0.21728515625}, {"start": 281.13, "end": 281.27, "word": " an", "probability": 0.5673828125}, {"start": 281.27, "end": 281.53, "word": " implement", "probability": 0.7216796875}, {"start": 281.53, "end": 281.91, "word": " to", "probability": 0.451904296875}, {"start": 281.91, "end": 282.47, "word": " draw", "probability": 0.75244140625}, {"start": 282.47, "end": 283.97, "word": " And", "probability": 0.1551513671875}, {"start": 283.97, "end": 284.23, "word": " instead", "probability": 0.55029296875}, {"start": 284.23, "end": 284.31, "word": " of", "probability": 0.9619140625}, {"start": 284.31, "end": 284.51, "word": " this", "probability": 0.826171875}, {"start": 284.51, "end": 284.81, "word": " code", "probability": 0.91748046875}, {"start": 284.81, "end": 284.91, "word": " that", "probability": 0.447021484375}, {"start": 284.91, "end": 285.23, "word": " I", "probability": 0.84326171875}, {"start": 285.23, "end": 285.53, "word": " write", "probability": 0.52392578125}, {"start": 285.53, "end": 285.65, "word": " here", "probability": 0.6435546875}, {"start": 285.65, "end": 285.65, "word": " for", "probability": 0.1845703125}, {"start": 285.65, "end": 285.89, "word": " example", "probability": 0.93115234375}, {"start": 285.89, "end": 286.43, "word": " system", "probability": 0.59375}, {"start": 286.43, "end": 287.13, "word": ".out", "probability": 0.863525390625}, {"start": 287.13, "end": 288.17, "word": ".println", "probability": 0.931640625}, {"start": 288.17, "end": 289.99, "word": " drawing", "probability": 0.27001953125}, {"start": 289.99, "end": 293.19, "word": " drawing", "probability": 0.228271484375}, {"start": 293.19, "end": 293.43, "word": " a", "probability": 0.67431640625}, {"start": 293.43, "end": 293.83, "word": " circle", "probability": 0.95458984375}, {"start": 293.83, "end": 296.67, "word": " And", "probability": 0.57763671875}, {"start": 296.67, "end": 296.75, "word": " for", "probability": 0.73681640625}, {"start": 296.75, "end": 297.11, "word": " example", "probability": 0.95166015625}, {"start": 297.11, "end": 297.49, "word": " I", "probability": 0.6904296875}, {"start": 297.49, "end": 297.69, "word": " have", "probability": 0.93603515625}, {"start": 297.69, "end": 298.37, "word": " rectangle", "probability": 0.58056640625}, {"start": 298.37, "end": 300.29, "word": " implement", "probability": 0.407470703125}, {"start": 300.29, "end": 301.85, "word": " shape", "probability": 0.85791015625}], "temperature": 1.0}, {"id": 13, "seek": 33874, "start": 313.62, "end": 338.74, "text": "Drawing a rectangle Okay, now we want to go to the interface and add a new method For example, for all shapes, I want to calculate their area We want to create a method for example public double calc area to calculate the area Of course, since I added it here, what happened to me? They hit them So now we want to see how to add the new function without hitting it", "tokens": [35, 5131, 278, 257, 21930, 1033, 11, 586, 321, 528, 281, 352, 281, 264, 9226, 293, 909, 257, 777, 3170, 1171, 1365, 11, 337, 439, 10854, 11, 286, 528, 281, 8873, 641, 1859, 492, 528, 281, 1884, 257, 3170, 337, 1365, 1908, 3834, 2104, 66, 1859, 281, 8873, 264, 1859, 2720, 1164, 11, 1670, 286, 3869, 309, 510, 11, 437, 2011, 281, 385, 30, 814, 2045, 552, 407, 586, 321, 528, 281, 536, 577, 281, 909, 264, 777, 2445, 1553, 8850, 309], "avg_logprob": -0.46272588925189284, "compression_ratio": 1.6774193548387097, "no_speech_prob": 4.231929779052734e-06, "words": [{"start": 313.62, "end": 314.06, "word": "Drawing", "probability": 0.69775390625}, {"start": 314.06, "end": 314.34, "word": " a", "probability": 0.60107421875}, {"start": 314.34, "end": 314.8, "word": " rectangle", "probability": 0.890625}, {"start": 314.8, "end": 315.44, "word": " Okay,", "probability": 0.0784912109375}, {"start": 316.0, "end": 316.36, "word": " now", "probability": 0.751953125}, {"start": 316.36, "end": 316.8, "word": " we", "probability": 0.68896484375}, {"start": 316.8, "end": 316.8, "word": " want", "probability": 0.51806640625}, {"start": 316.8, "end": 317.26, "word": " to", "probability": 0.95703125}, {"start": 317.26, "end": 317.42, "word": " go", "probability": 0.69580078125}, {"start": 317.42, "end": 317.56, "word": " to", "probability": 0.90478515625}, {"start": 317.56, "end": 317.64, "word": " the", "probability": 0.6435546875}, {"start": 317.64, "end": 318.12, "word": " interface", "probability": 0.85986328125}, {"start": 318.12, "end": 318.32, "word": " and", "probability": 0.82373046875}, {"start": 318.32, "end": 318.58, "word": " add", "probability": 0.91064453125}, {"start": 318.58, "end": 318.74, "word": " a", "probability": 0.93994140625}, {"start": 318.74, "end": 318.74, "word": " new", "probability": 0.9033203125}, {"start": 318.74, "end": 319.0, "word": " method", "probability": 0.9443359375}, {"start": 319.0, "end": 320.46, "word": " For", "probability": 0.31494140625}, {"start": 320.46, "end": 320.84, "word": " example,", "probability": 0.78271484375}, {"start": 320.98, "end": 321.02, "word": " for", "probability": 0.385986328125}, {"start": 321.02, "end": 321.24, "word": " all", "probability": 0.62109375}, {"start": 321.24, "end": 321.7, "word": " shapes,", "probability": 0.65283203125}, {"start": 321.82, "end": 321.82, "word": " I", "probability": 0.55224609375}, {"start": 321.82, "end": 321.92, "word": " want", "probability": 0.517578125}, {"start": 321.92, "end": 321.98, "word": " to", "probability": 0.8291015625}, {"start": 321.98, "end": 322.12, "word": " calculate", "probability": 0.826171875}, {"start": 322.12, "end": 322.26, "word": " their", "probability": 0.759765625}, {"start": 322.26, "end": 322.6, "word": " area", "probability": 0.6953125}, {"start": 322.6, "end": 323.78, "word": " We", "probability": 0.43212890625}, {"start": 323.78, "end": 323.92, "word": " want", "probability": 0.58203125}, {"start": 323.92, "end": 324.0, "word": " to", "probability": 0.96728515625}, {"start": 324.0, "end": 324.1, "word": " create", "probability": 0.366943359375}, {"start": 324.1, "end": 324.24, "word": " a", "probability": 0.83203125}, {"start": 324.24, "end": 324.48, "word": " method", "probability": 0.943359375}, {"start": 324.48, "end": 324.62, "word": " for", "probability": 0.16748046875}, {"start": 324.62, "end": 324.76, "word": " example", "probability": 0.90380859375}, {"start": 324.76, "end": 325.32, "word": " public", "probability": 0.64306640625}, {"start": 325.32, "end": 326.56, "word": " double", "probability": 0.84912109375}, {"start": 326.56, "end": 327.66, "word": " calc", "probability": 0.814208984375}, {"start": 327.66, "end": 329.52, "word": " area", "probability": 0.71435546875}, {"start": 329.52, "end": 330.28, "word": " to", "probability": 0.22998046875}, {"start": 330.28, "end": 330.48, "word": " calculate", "probability": 0.9140625}, {"start": 330.48, "end": 330.64, "word": " the", "probability": 0.60400390625}, {"start": 330.64, "end": 330.98, "word": " area", "probability": 0.81005859375}, {"start": 330.98, "end": 331.58, "word": " Of", "probability": 0.73583984375}, {"start": 331.58, "end": 331.68, "word": " course,", "probability": 0.96044921875}, {"start": 332.02, "end": 332.12, "word": " since", "probability": 0.209228515625}, {"start": 332.12, "end": 332.3, "word": " I", "probability": 0.76513671875}, {"start": 332.3, "end": 332.46, "word": " added", "probability": 0.7197265625}, {"start": 332.46, "end": 332.6, "word": " it", "probability": 0.56884765625}, {"start": 332.6, "end": 332.82, "word": " here,", "probability": 0.796875}, {"start": 332.94, "end": 333.0, "word": " what", "probability": 0.87548828125}, {"start": 333.0, "end": 333.16, "word": " happened", "probability": 0.708984375}, {"start": 333.16, "end": 333.28, "word": " to", "probability": 0.343505859375}, {"start": 333.28, "end": 333.46, "word": " me?", "probability": 0.5625}, {"start": 334.1, "end": 334.54, "word": " They", "probability": 0.447021484375}, {"start": 334.54, "end": 334.54, "word": " hit", "probability": 0.359619140625}, {"start": 334.54, "end": 334.8, "word": " them", "probability": 0.288818359375}, {"start": 334.8, "end": 335.38, "word": " So", "probability": 0.1641845703125}, {"start": 335.38, "end": 335.58, "word": " now", "probability": 0.372802734375}, {"start": 335.58, "end": 335.88, "word": " we", "probability": 0.75341796875}, {"start": 335.88, "end": 336.1, "word": " want", "probability": 0.728515625}, {"start": 336.1, "end": 336.16, "word": " to", "probability": 0.97119140625}, {"start": 336.16, "end": 336.3, "word": " see", "probability": 0.71337890625}, {"start": 336.3, "end": 336.5, "word": " how", "probability": 0.85791015625}, {"start": 336.5, "end": 336.96, "word": " to", "probability": 0.79345703125}, {"start": 336.96, "end": 337.24, "word": " add", "probability": 0.92529296875}, {"start": 337.24, "end": 337.44, "word": " the", "probability": 0.48095703125}, {"start": 337.44, "end": 337.48, "word": " new", "probability": 0.86328125}, {"start": 337.48, "end": 337.76, "word": " function", "probability": 0.9638671875}, {"start": 337.76, "end": 338.26, "word": " without", "probability": 0.9091796875}, {"start": 338.26, "end": 338.56, "word": " hitting", "probability": 0.611328125}, {"start": 338.56, "end": 338.74, "word": " it", "probability": 0.6669921875}], "temperature": 1.0}, {"id": 14, "seek": 35567, "start": 339.95, "end": 355.67, "text": "If you notice in Java they made new solutions, I don't think they took it in programming, they invented something new in Java 8, you can make method calc area, for example, return zero", "tokens": [8031, 291, 3449, 294, 10745, 436, 1027, 777, 6547, 11, 286, 500, 380, 519, 436, 1890, 309, 294, 9410, 11, 436, 14479, 746, 777, 294, 10745, 1649, 11, 291, 393, 652, 3170, 2104, 66, 1859, 11, 337, 1365, 11, 2736, 4018], "avg_logprob": -0.7499999829701015, "compression_ratio": 1.3834586466165413, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 339.95, "end": 340.53, "word": "If", "probability": 0.10595703125}, {"start": 340.53, "end": 340.77, "word": " you", "probability": 0.74560546875}, {"start": 340.77, "end": 340.77, "word": " notice", "probability": 0.274658203125}, {"start": 340.77, "end": 340.85, "word": " in", "probability": 0.1661376953125}, {"start": 340.85, "end": 341.13, "word": " Java", "probability": 0.53515625}, {"start": 341.13, "end": 341.63, "word": " they", "probability": 0.263671875}, {"start": 341.63, "end": 341.79, "word": " made", "probability": 0.49853515625}, {"start": 341.79, "end": 341.95, "word": " new", "probability": 0.6953125}, {"start": 341.95, "end": 342.21, "word": " solutions,", "probability": 0.58251953125}, {"start": 343.31, "end": 343.63, "word": " I", "probability": 0.38037109375}, {"start": 343.63, "end": 344.47, "word": " don't", "probability": 0.775146484375}, {"start": 344.47, "end": 345.63, "word": " think", "probability": 0.8203125}, {"start": 345.63, "end": 345.79, "word": " they", "probability": 0.3984375}, {"start": 345.79, "end": 345.99, "word": " took", "probability": 0.24365234375}, {"start": 345.99, "end": 346.09, "word": " it", "probability": 0.44482421875}, {"start": 346.09, "end": 346.19, "word": " in", "probability": 0.28173828125}, {"start": 346.19, "end": 346.55, "word": " programming,", "probability": 0.59912109375}, {"start": 346.73, "end": 347.25, "word": " they", "probability": 0.3662109375}, {"start": 347.25, "end": 349.55, "word": " invented", "probability": 0.149658203125}, {"start": 349.55, "end": 349.85, "word": " something", "probability": 0.451416015625}, {"start": 349.85, "end": 350.11, "word": " new", "probability": 0.8125}, {"start": 350.11, "end": 350.19, "word": " in", "probability": 0.8115234375}, {"start": 350.19, "end": 350.45, "word": " Java", "probability": 0.8642578125}, {"start": 350.45, "end": 350.83, "word": " 8,", "probability": 0.80224609375}, {"start": 351.05, "end": 351.17, "word": " you", "probability": 0.415283203125}, {"start": 351.17, "end": 351.41, "word": " can", "probability": 0.896484375}, {"start": 351.41, "end": 351.69, "word": " make", "probability": 0.3310546875}, {"start": 351.69, "end": 352.03, "word": " method", "probability": 0.76953125}, {"start": 352.03, "end": 352.41, "word": " calc", "probability": 0.7412109375}, {"start": 352.41, "end": 352.79, "word": " area,", "probability": 0.57958984375}, {"start": 353.19, "end": 353.31, "word": " for", "probability": 0.66650390625}, {"start": 353.31, "end": 353.63, "word": " example,", "probability": 0.8994140625}, {"start": 354.33, "end": 354.75, "word": " return", "probability": 0.67822265625}, {"start": 354.75, "end": 355.67, "word": " zero", "probability": 0.177001953125}], "temperature": 1.0}, {"id": 15, "seek": 37603, "start": 357.33, "end": 376.03, "text": " we always know that in the interface you can't put methods, the method in the interface should be abstract but he told us that from the new things that they started to support, you can put method calcarea and of course we put implementation for it but he told us that you can't do that, the interface should only contain", "tokens": [321, 1009, 458, 300, 294, 264, 9226, 291, 393, 380, 829, 7150, 11, 264, 3170, 294, 264, 9226, 820, 312, 12649, 457, 415, 1907, 505, 300, 490, 264, 777, 721, 300, 436, 1409, 281, 1406, 11, 291, 393, 829, 3170, 2104, 66, 35425, 293, 295, 1164, 321, 829, 11420, 337, 309, 457, 415, 1907, 505, 300, 291, 393, 380, 360, 300, 11, 264, 9226, 820, 787, 5304], "avg_logprob": -0.6769301584538292, "compression_ratio": 1.9107142857142858, "no_speech_prob": 1.0311603546142578e-05, "words": [{"start": 357.33, "end": 357.73, "word": " we", "probability": 0.05535888671875}, {"start": 357.73, "end": 358.01, "word": " always", "probability": 0.3623046875}, {"start": 358.01, "end": 358.87, "word": " know", "probability": 0.79248046875}, {"start": 358.87, "end": 359.09, "word": " that", "probability": 0.80322265625}, {"start": 359.09, "end": 359.97, "word": " in", "probability": 0.32763671875}, {"start": 359.97, "end": 360.07, "word": " the", "probability": 0.48046875}, {"start": 360.07, "end": 360.51, "word": " interface", "probability": 0.8564453125}, {"start": 360.51, "end": 360.67, "word": " you", "probability": 0.3359375}, {"start": 360.67, "end": 361.05, "word": " can't", "probability": 0.5870361328125}, {"start": 361.05, "end": 361.45, "word": " put", "probability": 0.44775390625}, {"start": 361.45, "end": 362.19, "word": " methods,", "probability": 0.407470703125}, {"start": 362.25, "end": 362.55, "word": " the", "probability": 0.375244140625}, {"start": 362.55, "end": 362.73, "word": " method", "probability": 0.703125}, {"start": 362.73, "end": 362.87, "word": " in", "probability": 0.4013671875}, {"start": 362.87, "end": 362.97, "word": " the", "probability": 0.84228515625}, {"start": 362.97, "end": 363.19, "word": " interface", "probability": 0.85791015625}, {"start": 363.19, "end": 363.31, "word": " should", "probability": 0.359619140625}, {"start": 363.31, "end": 363.45, "word": " be", "probability": 0.9345703125}, {"start": 363.45, "end": 363.95, "word": " abstract", "probability": 0.74169921875}, {"start": 363.95, "end": 364.97, "word": " but", "probability": 0.312255859375}, {"start": 364.97, "end": 365.17, "word": " he", "probability": 0.2191162109375}, {"start": 365.17, "end": 365.25, "word": " told", "probability": 0.461181640625}, {"start": 365.25, "end": 365.37, "word": " us", "probability": 0.51025390625}, {"start": 365.37, "end": 365.61, "word": " that", "probability": 0.439208984375}, {"start": 365.61, "end": 366.07, "word": " from", "probability": 0.12017822265625}, {"start": 366.07, "end": 366.21, "word": " the", "probability": 0.580078125}, {"start": 366.21, "end": 366.63, "word": " new", "probability": 0.755859375}, {"start": 366.63, "end": 366.69, "word": " things", "probability": 0.55126953125}, {"start": 366.69, "end": 366.75, "word": " that", "probability": 0.51806640625}, {"start": 366.75, "end": 366.97, "word": " they", "probability": 0.32373046875}, {"start": 366.97, "end": 366.97, "word": " started", "probability": 0.443603515625}, {"start": 366.97, "end": 366.99, "word": " to", "probability": 0.501953125}, {"start": 366.99, "end": 367.25, "word": " support,", "probability": 0.939453125}, {"start": 367.65, "end": 368.01, "word": " you", "probability": 0.81591796875}, {"start": 368.01, "end": 368.17, "word": " can", "probability": 0.88232421875}, {"start": 368.17, "end": 368.43, "word": " put", "probability": 0.736328125}, {"start": 368.43, "end": 368.83, "word": " method", "probability": 0.48583984375}, {"start": 368.83, "end": 369.57, "word": " calcarea", "probability": 0.648193359375}, {"start": 369.57, "end": 370.23, "word": " and", "probability": 0.5927734375}, {"start": 370.23, "end": 370.61, "word": " of", "probability": 0.367919921875}, {"start": 370.61, "end": 370.79, "word": " course", "probability": 0.94384765625}, {"start": 370.79, "end": 371.25, "word": " we", "probability": 0.55615234375}, {"start": 371.25, "end": 371.25, "word": " put", "probability": 0.280517578125}, {"start": 371.25, "end": 371.81, "word": " implementation", "probability": 0.69775390625}, {"start": 371.81, "end": 372.21, "word": " for", "probability": 0.25830078125}, {"start": 372.21, "end": 372.21, "word": " it", "probability": 0.6630859375}, {"start": 372.21, "end": 372.35, "word": " but", "probability": 0.21533203125}, {"start": 372.35, "end": 372.41, "word": " he", "probability": 0.49853515625}, {"start": 372.41, "end": 372.71, "word": " told", "probability": 0.63818359375}, {"start": 372.71, "end": 372.87, "word": " us", "probability": 0.88037109375}, {"start": 372.87, "end": 372.97, "word": " that", "probability": 0.884765625}, {"start": 372.97, "end": 373.05, "word": " you", "probability": 0.1817626953125}, {"start": 373.05, "end": 373.51, "word": " can't", "probability": 0.880126953125}, {"start": 373.51, "end": 373.51, "word": " do", "probability": 0.2301025390625}, {"start": 373.51, "end": 374.53, "word": " that,", "probability": 0.45556640625}, {"start": 374.71, "end": 374.89, "word": " the", "probability": 0.673828125}, {"start": 374.89, "end": 375.33, "word": " interface", "probability": 0.89501953125}, {"start": 375.33, "end": 375.55, "word": " should", "probability": 0.64453125}, {"start": 375.55, "end": 375.61, "word": " only", "probability": 0.62158203125}, {"start": 375.61, "end": 376.03, "word": " contain", "probability": 0.66552734375}], "temperature": 1.0}, {"id": 16, "seek": 40639, "start": 377.17, "end": 406.39, "text": " abstract, so I tell you to avoid the abstract and write the word what? default after public for example or private whatever you want, ok? that's how it became, that's how the interface became similar in the class that you can put a method in the interface and it has implementation now the method is still there, you can, did you notice the circle and rectangle? there is no arrow in them, ok? and they support, did you notice that they inherited from whom?", "tokens": [12649, 11, 370, 286, 980, 291, 281, 5042, 264, 12649, 293, 2464, 264, 1349, 437, 30, 7576, 934, 1908, 337, 1365, 420, 4551, 2035, 291, 528, 11, 3133, 30, 300, 311, 577, 309, 3062, 11, 300, 311, 577, 264, 9226, 3062, 2531, 294, 264, 1508, 300, 291, 393, 829, 257, 3170, 294, 264, 9226, 293, 309, 575, 11420, 586, 264, 3170, 307, 920, 456, 11, 291, 393, 11, 630, 291, 3449, 264, 6329, 293, 21930, 30, 456, 307, 572, 11610, 294, 552, 11, 3133, 30, 293, 436, 1406, 11, 630, 291, 3449, 300, 436, 27091, 490, 7101, 30], "avg_logprob": -0.5741792772755479, "compression_ratio": 1.8247011952191234, "no_speech_prob": 2.1457672119140625e-06, "words": [{"start": 377.17, "end": 377.61, "word": " abstract,", "probability": 0.318603515625}, {"start": 378.03, "end": 378.17, "word": " so", "probability": 0.349365234375}, {"start": 378.17, "end": 378.27, "word": " I", "probability": 0.35107421875}, {"start": 378.27, "end": 378.39, "word": " tell", "probability": 0.282958984375}, {"start": 378.39, "end": 378.57, "word": " you", "probability": 0.92431640625}, {"start": 378.57, "end": 378.75, "word": " to", "probability": 0.7041015625}, {"start": 378.75, "end": 379.05, "word": " avoid", "probability": 0.5810546875}, {"start": 379.05, "end": 379.19, "word": " the", "probability": 0.1568603515625}, {"start": 379.19, "end": 379.29, "word": " abstract", "probability": 0.463623046875}, {"start": 379.29, "end": 379.41, "word": " and", "probability": 0.41552734375}, {"start": 379.41, "end": 379.67, "word": " write", "probability": 0.53564453125}, {"start": 379.67, "end": 379.83, "word": " the", "probability": 0.280029296875}, {"start": 379.83, "end": 380.03, "word": " word", "probability": 0.85205078125}, {"start": 380.03, "end": 380.33, "word": " what?", "probability": 0.42578125}, {"start": 380.99, "end": 381.43, "word": " default", "probability": 0.65673828125}, {"start": 381.43, "end": 381.81, "word": " after", "probability": 0.673828125}, {"start": 381.81, "end": 382.93, "word": " public", "probability": 0.394287109375}, {"start": 382.93, "end": 383.17, "word": " for", "probability": 0.245849609375}, {"start": 383.17, "end": 383.35, "word": " example", "probability": 0.91748046875}, {"start": 383.35, "end": 383.57, "word": " or", "probability": 0.7666015625}, {"start": 383.57, "end": 383.99, "word": " private", "probability": 0.88916015625}, {"start": 383.99, "end": 384.17, "word": " whatever", "probability": 0.6123046875}, {"start": 384.17, "end": 384.21, "word": " you", "probability": 0.89208984375}, {"start": 384.21, "end": 384.51, "word": " want,", "probability": 0.73486328125}, {"start": 384.65, "end": 384.89, "word": " ok?", "probability": 0.2000732421875}, {"start": 384.93, "end": 385.11, "word": " that's", "probability": 0.45892333984375}, {"start": 385.11, "end": 385.11, "word": " how", "probability": 0.923828125}, {"start": 385.11, "end": 385.21, "word": " it", "probability": 0.6767578125}, {"start": 385.21, "end": 385.29, "word": " became,", "probability": 0.395263671875}, {"start": 385.55, "end": 385.89, "word": " that's", "probability": 0.82275390625}, {"start": 385.89, "end": 386.05, "word": " how", "probability": 0.931640625}, {"start": 386.05, "end": 386.53, "word": " the", "probability": 0.71728515625}, {"start": 386.53, "end": 387.61, "word": " interface", "probability": 0.923828125}, {"start": 387.61, "end": 387.85, "word": " became", "probability": 0.806640625}, {"start": 387.85, "end": 388.15, "word": " similar", "probability": 0.763671875}, {"start": 388.15, "end": 388.35, "word": " in", "probability": 0.6787109375}, {"start": 388.35, "end": 388.45, "word": " the", "probability": 0.60205078125}, {"start": 388.45, "end": 388.81, "word": " class", "probability": 0.9658203125}, {"start": 388.81, "end": 389.41, "word": " that", "probability": 0.232666015625}, {"start": 389.41, "end": 389.61, "word": " you", "probability": 0.798828125}, {"start": 389.61, "end": 389.87, "word": " can", "probability": 0.6884765625}, {"start": 389.87, "end": 390.15, "word": " put", "probability": 0.4755859375}, {"start": 390.15, "end": 390.25, "word": " a", "probability": 0.53515625}, {"start": 390.25, "end": 390.63, "word": " method", "probability": 0.955078125}, {"start": 390.63, "end": 392.41, "word": " in", "probability": 0.861328125}, {"start": 392.41, "end": 392.51, "word": " the", "probability": 0.89013671875}, {"start": 392.51, "end": 392.91, "word": " interface", "probability": 0.91455078125}, {"start": 392.91, "end": 393.05, "word": " and", "probability": 0.57421875}, {"start": 393.05, "end": 393.15, "word": " it", "probability": 0.60693359375}, {"start": 393.15, "end": 393.21, "word": " has", "probability": 0.8623046875}, {"start": 393.21, "end": 393.87, "word": " implementation", "probability": 0.72802734375}, {"start": 393.87, "end": 394.73, "word": " now", "probability": 0.360107421875}, {"start": 394.73, "end": 394.91, "word": " the", "probability": 0.62353515625}, {"start": 394.91, "end": 395.09, "word": " method", "probability": 0.7763671875}, {"start": 395.09, "end": 395.25, "word": " is", "probability": 0.52099609375}, {"start": 395.25, "end": 395.35, "word": " still", "probability": 0.27294921875}, {"start": 395.35, "end": 395.83, "word": " there,", "probability": 0.339111328125}, {"start": 396.29, "end": 396.43, "word": " you", "probability": 0.5361328125}, {"start": 396.43, "end": 396.65, "word": " can,", "probability": 0.91845703125}, {"start": 396.73, "end": 396.85, "word": " did", "probability": 0.385986328125}, {"start": 396.85, "end": 397.07, "word": " you", "probability": 0.974609375}, {"start": 397.07, "end": 397.09, "word": " notice", "probability": 0.55908203125}, {"start": 397.09, "end": 399.07, "word": " the", "probability": 0.4296875}, {"start": 399.07, "end": 399.33, "word": " circle", "probability": 0.91162109375}, {"start": 399.33, "end": 399.47, "word": " and", "probability": 0.9072265625}, {"start": 399.47, "end": 399.91, "word": " rectangle?", "probability": 0.8251953125}, {"start": 401.03, "end": 401.47, "word": " there", "probability": 0.4033203125}, {"start": 401.47, "end": 401.47, "word": " is", "probability": 0.430419921875}, {"start": 401.47, "end": 401.57, "word": " no", "probability": 0.75830078125}, {"start": 401.57, "end": 401.71, "word": " arrow", "probability": 0.2412109375}, {"start": 401.71, "end": 401.87, "word": " in", "probability": 0.483154296875}, {"start": 401.87, "end": 402.43, "word": " them,", "probability": 0.69091796875}, {"start": 402.51, "end": 402.79, "word": " ok?", "probability": 0.78955078125}, {"start": 403.39, "end": 403.53, "word": " and", "probability": 0.7919921875}, {"start": 403.53, "end": 403.67, "word": " they", "probability": 0.51416015625}, {"start": 403.67, "end": 403.91, "word": " support,", "probability": 0.8896484375}, {"start": 404.15, "end": 404.61, "word": " did", "probability": 0.7080078125}, {"start": 404.61, "end": 404.87, "word": " you", "probability": 0.95361328125}, {"start": 404.87, "end": 404.87, "word": " notice", "probability": 0.61962890625}, {"start": 404.87, "end": 405.05, "word": " that", "probability": 0.28125}, {"start": 405.05, "end": 405.11, "word": " they", "probability": 0.87109375}, {"start": 405.11, "end": 405.49, "word": " inherited", "probability": 0.701171875}, {"start": 405.49, "end": 406.17, "word": " from", "probability": 0.35595703125}, {"start": 406.17, "end": 406.39, "word": " whom?", "probability": 0.399169921875}], "temperature": 1.0}, {"id": 17, "seek": 43437, "start": 408.03, "end": 434.37, "text": "CalcArea, if they want to make override, it's up to them, okay? You come here, you can make override for the method that is draw CalcArea And change the code, of course, here you use super by default, you change the code that you want Here, for example, return, I'm in any class circle, for example, math.py x radius x radius", "tokens": [31279, 66, 32, 12057, 11, 498, 436, 528, 281, 652, 42321, 11, 309, 311, 493, 281, 552, 11, 1392, 30, 509, 808, 510, 11, 291, 393, 652, 42321, 337, 264, 3170, 300, 307, 2642, 3511, 66, 32, 12057, 400, 1319, 264, 3089, 11, 295, 1164, 11, 510, 291, 764, 1687, 538, 7576, 11, 291, 1319, 264, 3089, 300, 291, 528, 1692, 11, 337, 1365, 11, 2736, 11, 286, 478, 294, 604, 1508, 6329, 11, 337, 1365, 11, 5221, 13, 8200, 2031, 15845, 2031, 15845], "avg_logprob": -0.4886029327616972, "compression_ratio": 1.675257731958763, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 408.03000000000003, "end": 408.49, "word": "CalcArea,", "probability": 0.63543701171875}, {"start": 408.61, "end": 408.85, "word": " if", "probability": 0.472900390625}, {"start": 408.85, "end": 409.09, "word": " they", "probability": 0.453125}, {"start": 409.09, "end": 409.09, "word": " want", "probability": 0.72412109375}, {"start": 409.09, "end": 409.23, "word": " to", "probability": 0.95263671875}, {"start": 409.23, "end": 409.35, "word": " make", "probability": 0.1925048828125}, {"start": 409.35, "end": 409.81, "word": " override,", "probability": 0.53271484375}, {"start": 410.91, "end": 411.07, "word": " it's", "probability": 0.437255859375}, {"start": 411.07, "end": 411.13, "word": " up", "probability": 0.479736328125}, {"start": 411.13, "end": 411.23, "word": " to", "probability": 0.94921875}, {"start": 411.23, "end": 411.49, "word": " them,", "probability": 0.888671875}, {"start": 411.81, "end": 412.07, "word": " okay?", "probability": 0.1966552734375}, {"start": 412.19, "end": 412.29, "word": " You", "probability": 0.44287109375}, {"start": 412.29, "end": 412.45, "word": " come", "probability": 0.498291015625}, {"start": 412.45, "end": 412.81, "word": " here,", "probability": 0.8408203125}, {"start": 413.23, "end": 413.35, "word": " you", "probability": 0.7587890625}, {"start": 413.35, "end": 413.51, "word": " can", "probability": 0.92578125}, {"start": 413.51, "end": 413.95, "word": " make", "probability": 0.6064453125}, {"start": 413.95, "end": 414.69, "word": " override", "probability": 0.90966796875}, {"start": 414.69, "end": 415.01, "word": " for", "probability": 0.52734375}, {"start": 415.01, "end": 415.15, "word": " the", "probability": 0.61962890625}, {"start": 415.15, "end": 415.49, "word": " method", "probability": 0.89501953125}, {"start": 415.49, "end": 415.63, "word": " that", "probability": 0.337890625}, {"start": 415.63, "end": 415.89, "word": " is", "probability": 0.86181640625}, {"start": 415.89, "end": 416.43, "word": " draw", "probability": 0.2939453125}, {"start": 416.43, "end": 419.35, "word": " CalcArea", "probability": 0.82073974609375}, {"start": 419.35, "end": 420.53, "word": " And", "probability": 0.403076171875}, {"start": 420.53, "end": 420.83, "word": " change", "probability": 0.50439453125}, {"start": 420.83, "end": 421.03, "word": " the", "probability": 0.88916015625}, {"start": 421.03, "end": 421.37, "word": " code,", "probability": 0.9208984375}, {"start": 422.47, "end": 423.39, "word": " of", "probability": 0.69189453125}, {"start": 423.39, "end": 423.45, "word": " course,", "probability": 0.96142578125}, {"start": 423.55, "end": 423.61, "word": " here", "probability": 0.71728515625}, {"start": 423.61, "end": 423.73, "word": " you", "probability": 0.50244140625}, {"start": 423.73, "end": 423.91, "word": " use", "probability": 0.2215576171875}, {"start": 423.91, "end": 424.31, "word": " super", "probability": 0.479248046875}, {"start": 424.31, "end": 424.45, "word": " by", "probability": 0.47265625}, {"start": 424.45, "end": 424.73, "word": " default,", "probability": 0.9765625}, {"start": 424.81, "end": 424.85, "word": " you", "probability": 0.468017578125}, {"start": 424.85, "end": 425.07, "word": " change", "probability": 0.80517578125}, {"start": 425.07, "end": 425.25, "word": " the", "probability": 0.8720703125}, {"start": 425.25, "end": 425.43, "word": " code", "probability": 0.90625}, {"start": 425.43, "end": 425.53, "word": " that", "probability": 0.287109375}, {"start": 425.53, "end": 425.63, "word": " you", "probability": 0.87255859375}, {"start": 425.63, "end": 425.81, "word": " want", "probability": 0.77197265625}, {"start": 425.81, "end": 426.43, "word": " Here,", "probability": 0.427978515625}, {"start": 426.51, "end": 426.63, "word": " for", "probability": 0.88037109375}, {"start": 426.63, "end": 426.71, "word": " example,", "probability": 0.94921875}, {"start": 426.79, "end": 427.29, "word": " return,", "probability": 0.767578125}, {"start": 427.75, "end": 428.13, "word": " I'm", "probability": 0.638427734375}, {"start": 428.13, "end": 428.19, "word": " in", "probability": 0.92919921875}, {"start": 428.19, "end": 428.35, "word": " any", "probability": 0.87744140625}, {"start": 428.35, "end": 428.63, "word": " class", "probability": 0.935546875}, {"start": 428.63, "end": 429.09, "word": " circle,", "probability": 0.6767578125}, {"start": 429.53, "end": 429.73, "word": " for", "probability": 0.80615234375}, {"start": 429.73, "end": 429.87, "word": " example,", "probability": 0.96337890625}, {"start": 429.97, "end": 430.33, "word": " math", "probability": 0.533203125}, {"start": 430.33, "end": 431.31, "word": ".py", "probability": 0.681640625}, {"start": 431.31, "end": 432.37, "word": " x", "probability": 0.176025390625}, {"start": 432.37, "end": 433.43, "word": " radius", "probability": 0.927734375}, {"start": 433.43, "end": 433.91, "word": " x", "probability": 0.95654296875}, {"start": 433.91, "end": 434.37, "word": " radius", "probability": 0.9375}], "temperature": 1.0}, {"id": 18, "seek": 45140, "start": 437.5, "end": 451.4, "text": "and it is like this in rectangle this is one of the new things they did in java which is default method and as I said this is new because it solves the problem we are talking about", "tokens": [474, 309, 307, 411, 341, 294, 21930, 341, 307, 472, 295, 264, 777, 721, 436, 630, 294, 361, 4061, 597, 307, 7576, 3170, 293, 382, 286, 848, 341, 307, 777, 570, 309, 39890, 264, 1154, 321, 366, 1417, 466], "avg_logprob": -0.5898437529802323, "compression_ratio": 1.4516129032258065, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 437.5, "end": 437.94, "word": "and", "probability": 0.1153564453125}, {"start": 437.94, "end": 438.1, "word": " it", "probability": 0.23193359375}, {"start": 438.1, "end": 438.12, "word": " is", "probability": 0.328369140625}, {"start": 438.12, "end": 438.24, "word": " like", "probability": 0.537109375}, {"start": 438.24, "end": 438.84, "word": " this", "probability": 0.60986328125}, {"start": 438.84, "end": 439.2, "word": " in", "probability": 0.7705078125}, {"start": 439.2, "end": 441.08, "word": " rectangle", "probability": 0.65771484375}, {"start": 441.08, "end": 442.94, "word": " this", "probability": 0.1849365234375}, {"start": 442.94, "end": 443.0, "word": " is", "probability": 0.78271484375}, {"start": 443.0, "end": 443.08, "word": " one", "probability": 0.51904296875}, {"start": 443.08, "end": 443.14, "word": " of", "probability": 0.9091796875}, {"start": 443.14, "end": 443.16, "word": " the", "probability": 0.8203125}, {"start": 443.16, "end": 443.38, "word": " new", "probability": 0.389404296875}, {"start": 443.38, "end": 443.4, "word": " things", "probability": 0.59375}, {"start": 443.4, "end": 443.54, "word": " they", "probability": 0.387451171875}, {"start": 443.54, "end": 443.72, "word": " did", "probability": 0.43310546875}, {"start": 443.72, "end": 444.32, "word": " in", "probability": 0.841796875}, {"start": 444.32, "end": 445.02, "word": " java", "probability": 0.76025390625}, {"start": 445.02, "end": 445.2, "word": " which", "probability": 0.5751953125}, {"start": 445.2, "end": 445.36, "word": " is", "probability": 0.9345703125}, {"start": 445.36, "end": 445.66, "word": " default", "probability": 0.85546875}, {"start": 445.66, "end": 446.58, "word": " method", "probability": 0.92333984375}, {"start": 446.58, "end": 448.04, "word": " and", "probability": 0.326416015625}, {"start": 448.04, "end": 448.14, "word": " as", "probability": 0.55810546875}, {"start": 448.14, "end": 448.3, "word": " I", "probability": 0.66455078125}, {"start": 448.3, "end": 448.6, "word": " said", "probability": 0.818359375}, {"start": 448.6, "end": 448.88, "word": " this", "probability": 0.406982421875}, {"start": 448.88, "end": 448.94, "word": " is", "probability": 0.794921875}, {"start": 448.94, "end": 449.36, "word": " new", "probability": 0.61474609375}, {"start": 449.36, "end": 449.78, "word": " because", "probability": 0.3251953125}, {"start": 449.78, "end": 450.06, "word": " it", "probability": 0.443359375}, {"start": 450.06, "end": 450.3, "word": " solves", "probability": 0.457763671875}, {"start": 450.3, "end": 450.42, "word": " the", "probability": 0.73828125}, {"start": 450.42, "end": 450.66, "word": " problem", "probability": 0.7529296875}, {"start": 450.66, "end": 450.88, "word": " we", "probability": 0.37451171875}, {"start": 450.88, "end": 451.0, "word": " are", "probability": 0.5126953125}, {"start": 451.0, "end": 451.16, "word": " talking", "probability": 0.7529296875}, {"start": 451.16, "end": 451.4, "word": " about", "probability": 0.9052734375}], "temperature": 1.0}, {"id": 19, "seek": 47930, "start": 452.18, "end": 479.3, "text": "Okay, this default method is not supported in all object-oriented programming languages Okay, in Java, we found a solution to the problem, and this is a new solution they proposed, okay? But in other languages, in PHP, for example, PHP is object-oriented, but it does not have a solution to what? To the default When you make a method in the interface, you must implement it in the classes So how did I find it? Let's go back to the visitor pattern We can add a new functionality to the interface without hitting it", "tokens": [8297, 11, 341, 7576, 3170, 307, 406, 8104, 294, 439, 2657, 12, 27414, 9410, 8650, 1033, 11, 294, 10745, 11, 321, 1352, 257, 3827, 281, 264, 1154, 11, 293, 341, 307, 257, 777, 3827, 436, 10348, 11, 1392, 30, 583, 294, 661, 8650, 11, 294, 47298, 11, 337, 1365, 11, 47298, 307, 2657, 12, 27414, 11, 457, 309, 775, 406, 362, 257, 3827, 281, 437, 30, 1407, 264, 7576, 1133, 291, 652, 257, 3170, 294, 264, 9226, 11, 291, 1633, 4445, 309, 294, 264, 5359, 407, 577, 630, 286, 915, 309, 30, 961, 311, 352, 646, 281, 264, 28222, 5102, 492, 393, 909, 257, 777, 14980, 281, 264, 9226, 1553, 8850, 309], "avg_logprob": -0.3686393847507713, "compression_ratio": 1.7224080267558528, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 452.18, "end": 452.66, "word": "Okay,", "probability": 0.14208984375}, {"start": 453.26, "end": 453.66, "word": " this", "probability": 0.3447265625}, {"start": 453.66, "end": 453.96, "word": " default", "probability": 0.86181640625}, {"start": 453.96, "end": 454.46, "word": " method", "probability": 0.91748046875}, {"start": 454.46, "end": 454.74, "word": " is", "probability": 0.63720703125}, {"start": 454.74, "end": 454.8, "word": " not", "probability": 0.9189453125}, {"start": 454.8, "end": 455.04, "word": " supported", "probability": 0.35888671875}, {"start": 455.04, "end": 455.24, "word": " in", "probability": 0.74951171875}, {"start": 455.24, "end": 455.42, "word": " all", "probability": 0.7880859375}, {"start": 455.42, "end": 455.72, "word": " object", "probability": 0.779296875}, {"start": 455.72, "end": 456.1, "word": "-oriented", "probability": 0.63232421875}, {"start": 456.1, "end": 456.58, "word": " programming", "probability": 0.8388671875}, {"start": 456.58, "end": 457.14, "word": " languages", "probability": 0.94580078125}, {"start": 457.14, "end": 457.44, "word": " Okay,", "probability": 0.416015625}, {"start": 457.56, "end": 457.62, "word": " in", "probability": 0.69580078125}, {"start": 457.62, "end": 457.94, "word": " Java,", "probability": 0.79833984375}, {"start": 458.06, "end": 458.18, "word": " we", "probability": 0.76318359375}, {"start": 458.18, "end": 458.3, "word": " found", "probability": 0.7470703125}, {"start": 458.3, "end": 458.46, "word": " a", "probability": 0.88623046875}, {"start": 458.46, "end": 458.64, "word": " solution", "probability": 0.9423828125}, {"start": 458.64, "end": 459.04, "word": " to", "probability": 0.80078125}, {"start": 459.04, "end": 459.14, "word": " the", "probability": 0.67578125}, {"start": 459.14, "end": 459.44, "word": " problem,", "probability": 0.83203125}, {"start": 459.84, "end": 459.92, "word": " and", "probability": 0.587890625}, {"start": 459.92, "end": 460.02, "word": " this", "probability": 0.56494140625}, {"start": 460.02, "end": 460.08, "word": " is", "probability": 0.884765625}, {"start": 460.08, "end": 460.34, "word": " a", "probability": 0.943359375}, {"start": 460.34, "end": 460.5, "word": " new", "probability": 0.892578125}, {"start": 460.5, "end": 460.54, "word": " solution", "probability": 0.91552734375}, {"start": 460.54, "end": 460.66, "word": " they", "probability": 0.26416015625}, {"start": 460.66, "end": 460.9, "word": " proposed,", "probability": 0.4365234375}, {"start": 461.4, "end": 461.64, "word": " okay?", "probability": 0.61669921875}, {"start": 462.0, "end": 462.44, "word": " But", "probability": 0.78662109375}, {"start": 462.44, "end": 462.56, "word": " in", "probability": 0.89501953125}, {"start": 462.56, "end": 462.6, "word": " other", "probability": 0.767578125}, {"start": 462.6, "end": 462.84, "word": " languages,", "probability": 0.96533203125}, {"start": 463.14, "end": 463.2, "word": " in", "probability": 0.261962890625}, {"start": 463.2, "end": 463.6, "word": " PHP,", "probability": 0.91455078125}, {"start": 463.82, "end": 463.82, "word": " for", "probability": 0.89453125}, {"start": 463.82, "end": 464.02, "word": " example,", "probability": 0.95361328125}, {"start": 464.58, "end": 464.92, "word": " PHP", "probability": 0.89794921875}, {"start": 464.92, "end": 465.24, "word": " is", "probability": 0.87255859375}, {"start": 465.24, "end": 465.5, "word": " object", "probability": 0.96728515625}, {"start": 465.5, "end": 465.94, "word": "-oriented,", "probability": 0.8642578125}, {"start": 466.0, "end": 466.18, "word": " but", "probability": 0.91015625}, {"start": 466.18, "end": 466.34, "word": " it", "probability": 0.759765625}, {"start": 466.34, "end": 466.44, "word": " does", "probability": 0.52392578125}, {"start": 466.44, "end": 466.44, "word": " not", "probability": 0.94091796875}, {"start": 466.44, "end": 466.64, "word": " have", "probability": 0.849609375}, {"start": 466.64, "end": 466.76, "word": " a", "probability": 0.54248046875}, {"start": 466.76, "end": 466.94, "word": " solution", "probability": 0.74462890625}, {"start": 466.94, "end": 467.06, "word": " to", "probability": 0.337646484375}, {"start": 467.06, "end": 467.3, "word": " what?", "probability": 0.266845703125}, {"start": 467.34, "end": 467.48, "word": " To", "probability": 0.607421875}, {"start": 467.48, "end": 467.58, "word": " the", "probability": 0.69580078125}, {"start": 467.58, "end": 467.84, "word": " default", "probability": 0.97998046875}, {"start": 467.84, "end": 468.32, "word": " When", "probability": 0.5703125}, {"start": 468.32, "end": 468.48, "word": " you", "probability": 0.9453125}, {"start": 468.48, "end": 468.58, "word": " make", "probability": 0.422119140625}, {"start": 468.58, "end": 468.68, "word": " a", "probability": 0.9140625}, {"start": 468.68, "end": 468.86, "word": " method", "probability": 0.96337890625}, {"start": 468.86, "end": 468.96, "word": " in", "probability": 0.86181640625}, {"start": 468.96, "end": 469.04, "word": " the", "probability": 0.84375}, {"start": 469.04, "end": 469.44, "word": " interface,", "probability": 0.8828125}, {"start": 469.56, "end": 469.56, "word": " you", "probability": 0.806640625}, {"start": 469.56, "end": 469.7, "word": " must", "probability": 0.53271484375}, {"start": 469.7, "end": 470.3, "word": " implement", "probability": 0.64208984375}, {"start": 470.3, "end": 470.5, "word": " it", "probability": 0.9208984375}, {"start": 470.5, "end": 471.36, "word": " in", "probability": 0.92529296875}, {"start": 471.36, "end": 471.92, "word": " the", "probability": 0.68896484375}, {"start": 471.92, "end": 472.3, "word": " classes", "probability": 0.708984375}, {"start": 472.3, "end": 472.82, "word": " So", "probability": 0.7177734375}, {"start": 472.82, "end": 473.06, "word": " how", "probability": 0.72314453125}, {"start": 473.06, "end": 473.12, "word": " did", "probability": 0.85546875}, {"start": 473.12, "end": 473.46, "word": " I", "probability": 0.68505859375}, {"start": 473.46, "end": 473.46, "word": " find", "probability": 0.61279296875}, {"start": 473.46, "end": 473.52, "word": " it?", "probability": 0.63720703125}, {"start": 474.1, "end": 474.34, "word": " Let's", "probability": 0.759765625}, {"start": 474.34, "end": 474.5, "word": " go", "probability": 0.79736328125}, {"start": 474.5, "end": 474.56, "word": " back", "probability": 0.86474609375}, {"start": 474.56, "end": 474.64, "word": " to", "probability": 0.9697265625}, {"start": 474.64, "end": 474.76, "word": " the", "probability": 0.771484375}, {"start": 474.76, "end": 474.98, "word": " visitor", "probability": 0.95263671875}, {"start": 474.98, "end": 475.4, "word": " pattern", "probability": 0.9072265625}, {"start": 475.4, "end": 476.02, "word": " We", "probability": 0.61474609375}, {"start": 476.02, "end": 476.34, "word": " can", "probability": 0.92822265625}, {"start": 476.34, "end": 476.7, "word": " add", "probability": 0.94287109375}, {"start": 476.7, "end": 476.82, "word": " a", "probability": 0.80029296875}, {"start": 476.82, "end": 476.82, "word": " new", "probability": 0.9072265625}, {"start": 476.82, "end": 477.32, "word": " functionality", "probability": 0.92041015625}, {"start": 477.32, "end": 477.72, "word": " to", "probability": 0.8349609375}, {"start": 477.72, "end": 477.8, "word": " the", "probability": 0.9111328125}, {"start": 477.8, "end": 478.28, "word": " interface", "probability": 0.8505859375}, {"start": 478.28, "end": 478.56, "word": " without", "probability": 0.8623046875}, {"start": 478.56, "end": 478.92, "word": " hitting", "probability": 0.203125}, {"start": 478.92, "end": 479.3, "word": " it", "probability": 0.2783203125}], "temperature": 1.0}, {"id": 20, "seek": 50305, "start": 480.77, "end": 503.05, "text": "Yes, for classes, without using the default method because it is a default method and the solution is specific to Java Okay, let's go to the gate directly and apply the solution, let's see how we apply the visitor pattern, pay attention with me, there are things that may not be clear, I will explain with you at the end", "tokens": [6054, 11, 337, 5359, 11, 1553, 1228, 264, 7576, 3170, 570, 309, 307, 257, 7576, 3170, 293, 264, 3827, 307, 2685, 281, 10745, 1033, 11, 718, 311, 352, 281, 264, 8539, 3838, 293, 3079, 264, 3827, 11, 718, 311, 536, 577, 321, 3079, 264, 28222, 5102, 11, 1689, 3202, 365, 385, 11, 456, 366, 721, 300, 815, 406, 312, 1850, 11, 286, 486, 2903, 365, 291, 412, 264, 917], "avg_logprob": -0.5763392584664481, "compression_ratio": 1.6326530612244898, "no_speech_prob": 2.2649765014648438e-06, "words": [{"start": 480.77, "end": 481.11, "word": "Yes,", "probability": 0.1241455078125}, {"start": 481.19, "end": 481.29, "word": " for", "probability": 0.59765625}, {"start": 481.29, "end": 481.71, "word": " classes,", "probability": 0.8828125}, {"start": 482.27, "end": 482.79, "word": " without", "probability": 0.4296875}, {"start": 482.79, "end": 483.37, "word": " using", "probability": 0.7890625}, {"start": 483.37, "end": 483.57, "word": " the", "probability": 0.66748046875}, {"start": 483.57, "end": 483.79, "word": " default", "probability": 0.951171875}, {"start": 483.79, "end": 484.09, "word": " method", "probability": 0.93408203125}, {"start": 484.09, "end": 484.25, "word": " because", "probability": 0.52490234375}, {"start": 484.25, "end": 484.55, "word": " it", "probability": 0.412109375}, {"start": 484.55, "end": 484.55, "word": " is", "probability": 0.56005859375}, {"start": 484.55, "end": 484.57, "word": " a", "probability": 0.5703125}, {"start": 484.57, "end": 484.73, "word": " default", "probability": 0.410888671875}, {"start": 484.73, "end": 485.03, "word": " method", "probability": 0.9052734375}, {"start": 485.03, "end": 485.21, "word": " and", "probability": 0.291259765625}, {"start": 485.21, "end": 485.21, "word": " the", "probability": 0.23193359375}, {"start": 485.21, "end": 485.33, "word": " solution", "probability": 0.6201171875}, {"start": 485.33, "end": 485.43, "word": " is", "probability": 0.74072265625}, {"start": 485.43, "end": 485.79, "word": " specific", "probability": 0.37255859375}, {"start": 485.79, "end": 486.01, "word": " to", "probability": 0.68359375}, {"start": 486.01, "end": 487.59, "word": " Java", "probability": 0.4814453125}, {"start": 487.59, "end": 492.37, "word": " Okay,", "probability": 0.158203125}, {"start": 492.49, "end": 492.57, "word": " let's", "probability": 0.752685546875}, {"start": 492.57, "end": 492.67, "word": " go", "probability": 0.65380859375}, {"start": 492.67, "end": 492.73, "word": " to", "probability": 0.67919921875}, {"start": 492.73, "end": 492.77, "word": " the", "probability": 0.53515625}, {"start": 492.77, "end": 492.93, "word": " gate", "probability": 0.2081298828125}, {"start": 492.93, "end": 493.43, "word": " directly", "probability": 0.3701171875}, {"start": 493.43, "end": 493.71, "word": " and", "probability": 0.77001953125}, {"start": 493.71, "end": 493.97, "word": " apply", "probability": 0.60595703125}, {"start": 493.97, "end": 494.17, "word": " the", "probability": 0.82275390625}, {"start": 494.17, "end": 494.37, "word": " solution,", "probability": 0.93701171875}, {"start": 494.51, "end": 494.61, "word": " let's", "probability": 0.799560546875}, {"start": 494.61, "end": 494.77, "word": " see", "probability": 0.85205078125}, {"start": 494.77, "end": 494.97, "word": " how", "probability": 0.68798828125}, {"start": 494.97, "end": 495.75, "word": " we", "probability": 0.60595703125}, {"start": 495.75, "end": 496.05, "word": " apply", "probability": 0.5322265625}, {"start": 496.05, "end": 496.23, "word": " the", "probability": 0.75048828125}, {"start": 496.23, "end": 496.59, "word": " visitor", "probability": 0.93798828125}, {"start": 496.59, "end": 497.47, "word": " pattern,", "probability": 0.93798828125}, {"start": 497.49, "end": 497.71, "word": " pay", "probability": 0.391357421875}, {"start": 497.71, "end": 497.85, "word": " attention", "probability": 0.93408203125}, {"start": 497.85, "end": 497.99, "word": " with", "probability": 0.483154296875}, {"start": 497.99, "end": 498.27, "word": " me,", "probability": 0.9609375}, {"start": 499.31, "end": 500.63, "word": " there", "probability": 0.6552734375}, {"start": 500.63, "end": 500.71, "word": " are", "probability": 0.703125}, {"start": 500.71, "end": 500.89, "word": " things", "probability": 0.3916015625}, {"start": 500.89, "end": 501.01, "word": " that", "probability": 0.8095703125}, {"start": 501.01, "end": 501.11, "word": " may", "probability": 0.607421875}, {"start": 501.11, "end": 501.23, "word": " not", "probability": 0.90478515625}, {"start": 501.23, "end": 501.43, "word": " be", "probability": 0.9384765625}, {"start": 501.43, "end": 501.73, "word": " clear,", "probability": 0.84619140625}, {"start": 501.75, "end": 501.93, "word": " I", "probability": 0.58935546875}, {"start": 501.93, "end": 501.99, "word": " will", "probability": 0.720703125}, {"start": 501.99, "end": 502.13, "word": " explain", "probability": 0.69482421875}, {"start": 502.13, "end": 502.35, "word": " with", "probability": 0.258056640625}, {"start": 502.35, "end": 502.55, "word": " you", "probability": 0.9638671875}, {"start": 502.55, "end": 502.79, "word": " at", "probability": 0.5517578125}, {"start": 502.79, "end": 502.87, "word": " the", "probability": 0.9306640625}, {"start": 502.87, "end": 503.05, "word": " end", "probability": 0.916015625}], "temperature": 1.0}, {"id": 21, "seek": 52142, "start": 503.95, "end": 521.43, "text": "Okay, to remind ourselves of our main goal, that we want to be able to add a new functionality that we support in subclasses without having to change or modify the methods", "tokens": [8297, 11, 281, 4160, 4175, 295, 527, 2135, 3387, 11, 300, 321, 528, 281, 312, 1075, 281, 909, 257, 777, 14980, 300, 321, 1406, 294, 1422, 11665, 279, 1553, 1419, 281, 1319, 420, 16927, 264, 7150], "avg_logprob": -0.5443412419911977, "compression_ratio": 1.368, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 503.95, "end": 504.27, "word": "Okay,", "probability": 0.498046875}, {"start": 504.35, "end": 504.77, "word": " to", "probability": 0.5712890625}, {"start": 504.77, "end": 505.99, "word": " remind", "probability": 0.701171875}, {"start": 505.99, "end": 506.13, "word": " ourselves", "probability": 0.251953125}, {"start": 506.13, "end": 506.21, "word": " of", "probability": 0.3291015625}, {"start": 506.21, "end": 506.49, "word": " our", "probability": 0.84130859375}, {"start": 506.49, "end": 506.71, "word": " main", "probability": 0.79248046875}, {"start": 506.71, "end": 506.83, "word": " goal,", "probability": 0.7333984375}, {"start": 507.31, "end": 507.43, "word": " that", "probability": 0.46240234375}, {"start": 507.43, "end": 507.67, "word": " we", "probability": 0.9365234375}, {"start": 507.67, "end": 507.91, "word": " want", "probability": 0.393310546875}, {"start": 507.91, "end": 508.07, "word": " to", "probability": 0.96484375}, {"start": 508.07, "end": 508.13, "word": " be", "probability": 0.2296142578125}, {"start": 508.13, "end": 508.25, "word": " able", "probability": 0.9453125}, {"start": 508.25, "end": 508.41, "word": " to", "probability": 0.96826171875}, {"start": 508.41, "end": 508.73, "word": " add", "probability": 0.267333984375}, {"start": 508.73, "end": 508.85, "word": " a", "probability": 0.316162109375}, {"start": 508.85, "end": 508.87, "word": " new", "probability": 0.88720703125}, {"start": 508.87, "end": 509.43, "word": " functionality", "probability": 0.6435546875}, {"start": 509.43, "end": 509.83, "word": " that", "probability": 0.525390625}, {"start": 509.83, "end": 509.85, "word": " we", "probability": 0.6572265625}, {"start": 509.85, "end": 510.13, "word": " support", "probability": 0.56982421875}, {"start": 510.13, "end": 510.35, "word": " in", "probability": 0.798828125}, {"start": 510.35, "end": 512.05, "word": " subclasses", "probability": 0.7628580729166666}, {"start": 512.05, "end": 512.31, "word": " without", "probability": 0.6865234375}, {"start": 512.31, "end": 513.99, "word": " having", "probability": 0.421875}, {"start": 513.99, "end": 515.49, "word": " to", "probability": 0.9619140625}, {"start": 515.49, "end": 516.09, "word": " change", "probability": 0.7529296875}, {"start": 516.09, "end": 516.43, "word": " or", "probability": 0.6611328125}, {"start": 516.43, "end": 518.65, "word": " modify", "probability": 0.283203125}, {"start": 518.65, "end": 519.87, "word": " the", "probability": 0.385498046875}, {"start": 519.87, "end": 521.43, "word": " methods", "probability": 0.724609375}], "temperature": 1.0}, {"id": 22, "seek": 54974, "start": 522.6, "end": 549.74, "text": " Or in my classes, it doesn't want my implementation to be affected. What is my implementation? It is a circle and rectangle. It needs to be added through the interface. It is a new method without affecting the implementation. Okay? Okay, to do this thing, we need to do the following. The first thing we need to do is to create a new class. Or a new interface at first. Its name is iVisitor.", "tokens": [1610, 294, 452, 5359, 11, 309, 1177, 380, 528, 452, 11420, 281, 312, 8028, 13, 708, 307, 452, 11420, 30, 467, 307, 257, 6329, 293, 21930, 13, 467, 2203, 281, 312, 3869, 807, 264, 9226, 13, 467, 307, 257, 777, 3170, 1553, 17476, 264, 11420, 13, 1033, 30, 1033, 11, 281, 360, 341, 551, 11, 321, 643, 281, 360, 264, 3480, 13, 440, 700, 551, 321, 643, 281, 360, 307, 281, 1884, 257, 777, 1508, 13, 1610, 257, 777, 9226, 412, 700, 13, 6953, 1315, 307, 741, 53, 271, 3029, 13], "avg_logprob": -0.47316576767226926, "compression_ratio": 1.798165137614679, "no_speech_prob": 5.424022674560547e-06, "words": [{"start": 522.6, "end": 522.86, "word": " Or", "probability": 0.31201171875}, {"start": 522.86, "end": 522.98, "word": " in", "probability": 0.6220703125}, {"start": 522.98, "end": 523.08, "word": " my", "probability": 0.625}, {"start": 523.08, "end": 523.68, "word": " classes,", "probability": 0.8046875}, {"start": 524.18, "end": 524.36, "word": " it", "probability": 0.290283203125}, {"start": 524.36, "end": 524.46, "word": " doesn't", "probability": 0.689208984375}, {"start": 524.46, "end": 524.6, "word": " want", "probability": 0.634765625}, {"start": 524.6, "end": 524.74, "word": " my", "probability": 0.56005859375}, {"start": 524.74, "end": 525.36, "word": " implementation", "probability": 0.80517578125}, {"start": 525.36, "end": 525.98, "word": " to", "probability": 0.79248046875}, {"start": 525.98, "end": 525.98, "word": " be", "probability": 0.58544921875}, {"start": 525.98, "end": 526.3, "word": " affected.", "probability": 0.82763671875}, {"start": 526.82, "end": 526.98, "word": " What", "probability": 0.21240234375}, {"start": 526.98, "end": 527.02, "word": " is", "probability": 0.6240234375}, {"start": 527.02, "end": 527.06, "word": " my", "probability": 0.537109375}, {"start": 527.06, "end": 527.6, "word": " implementation?", "probability": 0.880859375}, {"start": 527.9, "end": 527.96, "word": " It", "probability": 0.517578125}, {"start": 527.96, "end": 528.04, "word": " is", "probability": 0.67919921875}, {"start": 528.04, "end": 528.18, "word": " a", "probability": 0.322509765625}, {"start": 528.18, "end": 528.44, "word": " circle", "probability": 0.8720703125}, {"start": 528.44, "end": 528.56, "word": " and", "probability": 0.90576171875}, {"start": 528.56, "end": 529.02, "word": " rectangle.", "probability": 0.77685546875}, {"start": 529.54, "end": 529.7, "word": " It", "probability": 0.289306640625}, {"start": 529.7, "end": 529.92, "word": " needs", "probability": 0.2459716796875}, {"start": 529.92, "end": 529.92, "word": " to", "probability": 0.85888671875}, {"start": 529.92, "end": 530.16, "word": " be", "probability": 0.546875}, {"start": 530.16, "end": 530.22, "word": " added", "probability": 0.8759765625}, {"start": 530.22, "end": 530.48, "word": " through", "probability": 0.66455078125}, {"start": 530.48, "end": 530.8, "word": " the", "probability": 0.64501953125}, {"start": 530.8, "end": 531.34, "word": " interface.", "probability": 0.90625}, {"start": 531.4, "end": 531.44, "word": " It", "probability": 0.305908203125}, {"start": 531.44, "end": 531.44, "word": " is", "probability": 0.75244140625}, {"start": 531.44, "end": 531.44, "word": " a", "probability": 0.96435546875}, {"start": 531.44, "end": 531.44, "word": " new", "probability": 0.91552734375}, {"start": 531.44, "end": 532.08, "word": " method", "probability": 0.9296875}, {"start": 532.08, "end": 532.82, "word": " without", "probability": 0.6005859375}, {"start": 532.82, "end": 533.5, "word": " affecting", "probability": 0.7451171875}, {"start": 533.5, "end": 534.08, "word": " the", "probability": 0.7099609375}, {"start": 534.08, "end": 534.7, "word": " implementation.", "probability": 0.91162109375}, {"start": 535.06, "end": 535.36, "word": " Okay?", "probability": 0.2164306640625}, {"start": 536.94, "end": 537.46, "word": " Okay,", "probability": 0.288818359375}, {"start": 537.82, "end": 538.1, "word": " to", "probability": 0.572265625}, {"start": 538.1, "end": 538.38, "word": " do", "probability": 0.765625}, {"start": 538.38, "end": 538.48, "word": " this", "probability": 0.89990234375}, {"start": 538.48, "end": 538.68, "word": " thing,", "probability": 0.497314453125}, {"start": 538.98, "end": 539.02, "word": " we", "probability": 0.8125}, {"start": 539.02, "end": 539.12, "word": " need", "probability": 0.576171875}, {"start": 539.12, "end": 539.22, "word": " to", "probability": 0.9658203125}, {"start": 539.22, "end": 539.38, "word": " do", "probability": 0.87255859375}, {"start": 539.38, "end": 539.54, "word": " the", "probability": 0.732421875}, {"start": 539.54, "end": 539.72, "word": " following.", "probability": 0.63037109375}, {"start": 539.98, "end": 540.14, "word": " The", "probability": 0.71728515625}, {"start": 540.14, "end": 540.32, "word": " first", "probability": 0.8916015625}, {"start": 540.32, "end": 540.6, "word": " thing", "probability": 0.912109375}, {"start": 540.6, "end": 540.84, "word": " we", "probability": 0.8056640625}, {"start": 540.84, "end": 540.94, "word": " need", "probability": 0.6357421875}, {"start": 540.94, "end": 541.02, "word": " to", "probability": 0.96875}, {"start": 541.02, "end": 541.32, "word": " do", "probability": 0.96337890625}, {"start": 541.32, "end": 542.28, "word": " is", "probability": 0.703125}, {"start": 542.28, "end": 542.3, "word": " to", "probability": 0.29052734375}, {"start": 542.3, "end": 542.84, "word": " create", "probability": 0.55029296875}, {"start": 542.84, "end": 543.22, "word": " a", "probability": 0.98974609375}, {"start": 543.22, "end": 543.22, "word": " new", "probability": 0.9140625}, {"start": 543.22, "end": 543.94, "word": " class.", "probability": 0.97314453125}, {"start": 546.3, "end": 546.82, "word": " Or", "probability": 0.91748046875}, {"start": 546.82, "end": 546.9, "word": " a", "probability": 0.70654296875}, {"start": 546.9, "end": 546.9, "word": " new", "probability": 0.92041015625}, {"start": 546.9, "end": 547.54, "word": " interface", "probability": 0.9072265625}, {"start": 547.54, "end": 547.72, "word": " at", "probability": 0.373291015625}, {"start": 547.72, "end": 548.02, "word": " first.", "probability": 0.73291015625}, {"start": 548.1, "end": 548.22, "word": " Its", "probability": 0.347900390625}, {"start": 548.22, "end": 548.4, "word": " name", "probability": 0.90380859375}, {"start": 548.4, "end": 549.02, "word": " is", "probability": 0.953125}, {"start": 549.02, "end": 549.74, "word": " iVisitor.", "probability": 0.74993896484375}], "temperature": 1.0}, {"id": 23, "seek": 57365, "start": 552.55, "end": 573.65, "text": "This I means it is an interface Now inside the I visitor, you see how many forms we have in our hierarchy? Two, you see how many classes I have, I have two classes, each one in the visitor makes a method, you say public void process", "tokens": [5723, 286, 1355, 309, 307, 364, 9226, 823, 1854, 264, 286, 28222, 11, 291, 536, 577, 867, 6422, 321, 362, 294, 527, 22333, 30, 4453, 11, 291, 536, 577, 867, 5359, 286, 362, 11, 286, 362, 732, 5359, 11, 1184, 472, 294, 264, 28222, 1669, 257, 3170, 11, 291, 584, 1908, 22009, 1399], "avg_logprob": -0.5410879806235984, "compression_ratio": 1.5364238410596027, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 552.55, "end": 552.77, "word": "This", "probability": 0.08697509765625}, {"start": 552.77, "end": 552.87, "word": " I", "probability": 0.58740234375}, {"start": 552.87, "end": 553.19, "word": " means", "probability": 0.292236328125}, {"start": 553.19, "end": 553.69, "word": " it", "probability": 0.295166015625}, {"start": 553.69, "end": 553.75, "word": " is", "probability": 0.50634765625}, {"start": 553.75, "end": 553.89, "word": " an", "probability": 0.619140625}, {"start": 553.89, "end": 554.31, "word": " interface", "probability": 0.8935546875}, {"start": 554.31, "end": 556.99, "word": " Now", "probability": 0.2144775390625}, {"start": 556.99, "end": 557.27, "word": " inside", "probability": 0.55615234375}, {"start": 557.27, "end": 557.43, "word": " the", "probability": 0.448486328125}, {"start": 557.43, "end": 557.55, "word": " I", "probability": 0.62939453125}, {"start": 557.55, "end": 557.89, "word": " visitor,", "probability": 0.6396484375}, {"start": 558.97, "end": 559.17, "word": " you", "probability": 0.64453125}, {"start": 559.17, "end": 559.37, "word": " see", "probability": 0.60986328125}, {"start": 559.37, "end": 559.59, "word": " how", "probability": 0.603515625}, {"start": 559.59, "end": 559.69, "word": " many", "probability": 0.8759765625}, {"start": 559.69, "end": 559.91, "word": " forms", "probability": 0.285400390625}, {"start": 559.91, "end": 560.07, "word": " we", "probability": 0.52197265625}, {"start": 560.07, "end": 560.35, "word": " have", "probability": 0.9306640625}, {"start": 560.35, "end": 560.53, "word": " in", "probability": 0.830078125}, {"start": 560.53, "end": 560.61, "word": " our", "probability": 0.81396484375}, {"start": 560.61, "end": 561.29, "word": " hierarchy?", "probability": 0.90625}, {"start": 562.17, "end": 562.61, "word": " Two,", "probability": 0.58447265625}, {"start": 562.75, "end": 563.37, "word": " you", "probability": 0.375732421875}, {"start": 563.37, "end": 563.61, "word": " see", "probability": 0.76953125}, {"start": 563.61, "end": 563.83, "word": " how", "probability": 0.53955078125}, {"start": 563.83, "end": 564.27, "word": " many", "probability": 0.8779296875}, {"start": 564.27, "end": 564.65, "word": " classes", "probability": 0.892578125}, {"start": 564.65, "end": 564.93, "word": " I", "probability": 0.82861328125}, {"start": 564.93, "end": 564.93, "word": " have,", "probability": 0.93310546875}, {"start": 564.93, "end": 565.15, "word": " I", "probability": 0.884765625}, {"start": 565.15, "end": 565.25, "word": " have", "probability": 0.951171875}, {"start": 565.25, "end": 565.45, "word": " two", "probability": 0.890625}, {"start": 565.45, "end": 566.75, "word": " classes,", "probability": 0.89794921875}, {"start": 566.93, "end": 567.07, "word": " each", "probability": 0.5830078125}, {"start": 567.07, "end": 567.41, "word": " one", "probability": 0.5654296875}, {"start": 567.41, "end": 567.55, "word": " in", "probability": 0.74462890625}, {"start": 567.55, "end": 567.67, "word": " the", "probability": 0.8818359375}, {"start": 567.67, "end": 568.03, "word": " visitor", "probability": 0.93359375}, {"start": 568.03, "end": 568.89, "word": " makes", "probability": 0.2861328125}, {"start": 568.89, "end": 569.05, "word": " a", "probability": 0.87841796875}, {"start": 569.05, "end": 569.31, "word": " method,", "probability": 0.9765625}, {"start": 570.41, "end": 570.51, "word": " you", "probability": 0.65185546875}, {"start": 570.51, "end": 570.71, "word": " say", "probability": 0.432861328125}, {"start": 570.71, "end": 572.19, "word": " public", "probability": 0.26611328125}, {"start": 572.19, "end": 572.87, "word": " void", "probability": 0.8876953125}, {"start": 572.87, "end": 573.65, "word": " process", "probability": 0.8701171875}], "temperature": 1.0}, {"id": 24, "seek": 60328, "start": 575.2, "end": 603.28, "text": " and this one takes an object of type circle of course we will explain these words then public void process will take rectangle that's it because I have two classes only and this interface is called ivisitor when we finish the interface we go to the gate to the interface which is the basic of shapes which is shape", "tokens": [293, 341, 472, 2516, 364, 2657, 295, 2010, 6329, 295, 1164, 321, 486, 2903, 613, 2283, 550, 1908, 22009, 1399, 486, 747, 21930, 300, 311, 309, 570, 286, 362, 732, 5359, 787, 293, 341, 9226, 307, 1219, 32412, 271, 3029, 562, 321, 2413, 264, 9226, 321, 352, 281, 264, 8539, 281, 264, 9226, 597, 307, 264, 3875, 295, 10854, 597, 307, 3909], "avg_logprob": -0.4970238341225518, "compression_ratio": 1.6844919786096257, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 575.2, "end": 575.44, "word": " and", "probability": 0.23486328125}, {"start": 575.44, "end": 575.64, "word": " this", "probability": 0.744140625}, {"start": 575.64, "end": 575.72, "word": " one", "probability": 0.392578125}, {"start": 575.72, "end": 575.96, "word": " takes", "probability": 0.52001953125}, {"start": 575.96, "end": 576.12, "word": " an", "probability": 0.283203125}, {"start": 576.12, "end": 576.3, "word": " object", "probability": 0.9462890625}, {"start": 576.3, "end": 576.44, "word": " of", "probability": 0.5244140625}, {"start": 576.44, "end": 576.82, "word": " type", "probability": 0.40869140625}, {"start": 576.82, "end": 578.46, "word": " circle", "probability": 0.76611328125}, {"start": 578.46, "end": 579.56, "word": " of", "probability": 0.23095703125}, {"start": 579.56, "end": 579.6, "word": " course", "probability": 0.95263671875}, {"start": 579.6, "end": 579.88, "word": " we", "probability": 0.67529296875}, {"start": 579.88, "end": 579.9, "word": " will", "probability": 0.66357421875}, {"start": 579.9, "end": 580.12, "word": " explain", "probability": 0.8046875}, {"start": 580.12, "end": 580.66, "word": " these", "probability": 0.2066650390625}, {"start": 580.66, "end": 581.06, "word": " words", "probability": 0.56494140625}, {"start": 581.06, "end": 581.64, "word": " then", "probability": 0.34912109375}, {"start": 581.64, "end": 582.06, "word": " public", "probability": 0.861328125}, {"start": 582.06, "end": 582.66, "word": " void", "probability": 0.90673828125}, {"start": 582.66, "end": 583.84, "word": " process", "probability": 0.89013671875}, {"start": 583.84, "end": 585.9, "word": " will", "probability": 0.5322265625}, {"start": 585.9, "end": 586.12, "word": " take", "probability": 0.8154296875}, {"start": 586.12, "end": 586.68, "word": " rectangle", "probability": 0.89892578125}, {"start": 586.68, "end": 590.44, "word": " that's", "probability": 0.736328125}, {"start": 590.44, "end": 590.52, "word": " it", "probability": 0.68994140625}, {"start": 590.52, "end": 590.92, "word": " because", "probability": 0.60302734375}, {"start": 590.92, "end": 591.08, "word": " I", "probability": 0.82421875}, {"start": 591.08, "end": 591.26, "word": " have", "probability": 0.7861328125}, {"start": 591.26, "end": 591.36, "word": " two", "probability": 0.501953125}, {"start": 591.36, "end": 593.42, "word": " classes", "probability": 0.405517578125}, {"start": 593.42, "end": 593.78, "word": " only", "probability": 0.60693359375}, {"start": 593.78, "end": 594.8, "word": " and", "probability": 0.82177734375}, {"start": 594.8, "end": 594.96, "word": " this", "probability": 0.91455078125}, {"start": 594.96, "end": 595.44, "word": " interface", "probability": 0.53271484375}, {"start": 595.44, "end": 595.58, "word": " is", "probability": 0.83447265625}, {"start": 595.58, "end": 595.8, "word": " called", "probability": 0.7763671875}, {"start": 595.8, "end": 596.62, "word": " ivisitor", "probability": 0.7044270833333334}, {"start": 596.62, "end": 597.56, "word": " when", "probability": 0.357421875}, {"start": 597.56, "end": 597.7, "word": " we", "probability": 0.81884765625}, {"start": 597.7, "end": 597.94, "word": " finish", "probability": 0.56103515625}, {"start": 597.94, "end": 598.08, "word": " the", "probability": 0.65576171875}, {"start": 598.08, "end": 598.64, "word": " interface", "probability": 0.89208984375}, {"start": 598.64, "end": 599.04, "word": " we", "probability": 0.68701171875}, {"start": 599.04, "end": 599.2, "word": " go", "probability": 0.7265625}, {"start": 599.2, "end": 599.38, "word": " to", "probability": 0.90966796875}, {"start": 599.38, "end": 599.4, "word": " the", "probability": 0.72314453125}, {"start": 599.4, "end": 599.64, "word": " gate", "probability": 0.759765625}, {"start": 599.64, "end": 599.94, "word": " to", "probability": 0.80126953125}, {"start": 599.94, "end": 600.18, "word": " the", "probability": 0.66064453125}, {"start": 600.18, "end": 600.62, "word": " interface", "probability": 0.828125}, {"start": 600.62, "end": 600.74, "word": " which", "probability": 0.235595703125}, {"start": 600.74, "end": 601.14, "word": " is", "probability": 0.77294921875}, {"start": 601.14, "end": 601.62, "word": " the", "probability": 0.443115234375}, {"start": 601.62, "end": 601.98, "word": " basic", "probability": 0.32421875}, {"start": 601.98, "end": 602.18, "word": " of", "probability": 0.2203369140625}, {"start": 602.18, "end": 602.7, "word": " shapes", "probability": 0.7509765625}, {"start": 602.7, "end": 602.9, "word": " which", "probability": 0.6201171875}, {"start": 602.9, "end": 603.0, "word": " is", "probability": 0.9345703125}, {"start": 603.0, "end": 603.28, "word": " shape", "probability": 0.89208984375}], "temperature": 1.0}, {"id": 25, "seek": 63087, "start": 604.19, "end": 630.87, "text": " we add a new method public void named accept or any name you want and this accept takes an object of type i visitor named v okay? we will talk about this method later since this method is added to the interface shape this method must be multiplied where guys? yes in the previous one they multiplied at the circle and rectangle", "tokens": [321, 909, 257, 777, 3170, 1908, 22009, 4926, 3241, 420, 604, 1315, 291, 528, 293, 341, 3241, 2516, 364, 2657, 295, 2010, 741, 28222, 4926, 371, 1392, 30, 321, 486, 751, 466, 341, 3170, 1780, 1670, 341, 3170, 307, 3869, 281, 264, 9226, 3909, 341, 3170, 1633, 312, 17207, 689, 1074, 30, 2086, 294, 264, 3894, 472, 436, 17207, 412, 264, 6329, 293, 21930], "avg_logprob": -0.6677884615384615, "compression_ratio": 1.7172774869109948, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 604.19, "end": 604.41, "word": " we", "probability": 0.11590576171875}, {"start": 604.41, "end": 604.65, "word": " add", "probability": 0.50146484375}, {"start": 604.65, "end": 604.85, "word": " a", "probability": 0.634765625}, {"start": 604.85, "end": 604.89, "word": " new", "probability": 0.81298828125}, {"start": 604.89, "end": 605.13, "word": " method", "probability": 0.923828125}, {"start": 605.13, "end": 606.17, "word": " public", "probability": 0.422607421875}, {"start": 606.17, "end": 607.03, "word": " void", "probability": 0.8916015625}, {"start": 607.03, "end": 608.23, "word": " named", "probability": 0.216064453125}, {"start": 608.23, "end": 608.93, "word": " accept", "probability": 0.67529296875}, {"start": 608.93, "end": 610.91, "word": " or", "probability": 0.48291015625}, {"start": 610.91, "end": 611.07, "word": " any", "probability": 0.68408203125}, {"start": 611.07, "end": 611.27, "word": " name", "probability": 0.677734375}, {"start": 611.27, "end": 611.43, "word": " you", "probability": 0.7890625}, {"start": 611.43, "end": 611.63, "word": " want", "probability": 0.658203125}, {"start": 611.63, "end": 612.05, "word": " and", "probability": 0.50439453125}, {"start": 612.05, "end": 612.19, "word": " this", "probability": 0.46044921875}, {"start": 612.19, "end": 612.61, "word": " accept", "probability": 0.87060546875}, {"start": 612.61, "end": 613.29, "word": " takes", "probability": 0.365234375}, {"start": 613.29, "end": 613.49, "word": " an", "probability": 0.35498046875}, {"start": 613.49, "end": 613.71, "word": " object", "probability": 0.9248046875}, {"start": 613.71, "end": 613.83, "word": " of", "probability": 0.5537109375}, {"start": 613.83, "end": 614.81, "word": " type", "probability": 0.7001953125}, {"start": 614.81, "end": 615.37, "word": " i", "probability": 0.286865234375}, {"start": 615.37, "end": 617.71, "word": " visitor", "probability": 0.9091796875}, {"start": 617.71, "end": 618.07, "word": " named", "probability": 0.49267578125}, {"start": 618.07, "end": 618.29, "word": " v", "probability": 0.79638671875}, {"start": 618.29, "end": 620.99, "word": " okay?", "probability": 0.19091796875}, {"start": 621.07, "end": 621.19, "word": " we", "probability": 0.47509765625}, {"start": 621.19, "end": 621.25, "word": " will", "probability": 0.572265625}, {"start": 621.25, "end": 621.43, "word": " talk", "probability": 0.53662109375}, {"start": 621.43, "end": 621.65, "word": " about", "probability": 0.84033203125}, {"start": 621.65, "end": 622.17, "word": " this", "probability": 0.467041015625}, {"start": 622.17, "end": 622.57, "word": " method", "probability": 0.9482421875}, {"start": 622.57, "end": 622.97, "word": " later", "probability": 0.47509765625}, {"start": 622.97, "end": 623.37, "word": " since", "probability": 0.1806640625}, {"start": 623.37, "end": 623.73, "word": " this", "probability": 0.427978515625}, {"start": 623.73, "end": 623.99, "word": " method", "probability": 0.89794921875}, {"start": 623.99, "end": 624.05, "word": " is", "probability": 0.378173828125}, {"start": 624.05, "end": 624.27, "word": " added", "probability": 0.69677734375}, {"start": 624.27, "end": 624.51, "word": " to", "probability": 0.36474609375}, {"start": 624.51, "end": 624.63, "word": " the", "probability": 0.3349609375}, {"start": 624.63, "end": 624.99, "word": " interface", "probability": 0.478515625}, {"start": 624.99, "end": 625.39, "word": " shape", "probability": 0.873046875}, {"start": 625.39, "end": 626.05, "word": " this", "probability": 0.31884765625}, {"start": 626.05, "end": 626.57, "word": " method", "probability": 0.93310546875}, {"start": 626.57, "end": 626.61, "word": " must", "probability": 0.440185546875}, {"start": 626.61, "end": 626.89, "word": " be", "probability": 0.7333984375}, {"start": 626.89, "end": 627.11, "word": " multiplied", "probability": 0.462646484375}, {"start": 627.11, "end": 627.33, "word": " where", "probability": 0.2421875}, {"start": 627.33, "end": 627.73, "word": " guys?", "probability": 0.452880859375}, {"start": 628.67, "end": 628.75, "word": " yes", "probability": 0.265380859375}, {"start": 628.75, "end": 628.85, "word": " in", "probability": 0.482177734375}, {"start": 628.85, "end": 628.93, "word": " the", "probability": 0.75}, {"start": 628.93, "end": 629.07, "word": " previous", "probability": 0.455078125}, {"start": 629.07, "end": 629.15, "word": " one", "probability": 0.2001953125}, {"start": 629.15, "end": 629.29, "word": " they", "probability": 0.226318359375}, {"start": 629.29, "end": 629.53, "word": " multiplied", "probability": 0.51025390625}, {"start": 629.53, "end": 629.77, "word": " at", "probability": 0.32470703125}, {"start": 629.77, "end": 629.93, "word": " the", "probability": 0.450439453125}, {"start": 629.93, "end": 630.25, "word": " circle", "probability": 0.9521484375}, {"start": 630.25, "end": 630.43, "word": " and", "probability": 0.939453125}, {"start": 630.43, "end": 630.87, "word": " rectangle", "probability": 0.85302734375}], "temperature": 1.0}, {"id": 26, "seek": 64371, "start": 631.49, "end": 643.71, "text": "so I will go to circle and tell it to implement and it will add method accept and I will also go to rectangle and it will add method accept", "tokens": [539, 286, 486, 352, 281, 6329, 293, 980, 309, 281, 4445, 293, 309, 486, 909, 3170, 3241, 293, 286, 486, 611, 352, 281, 21930, 293, 309, 486, 909, 3170, 3241], "avg_logprob": -0.5705645199744932, "compression_ratio": 1.6547619047619047, "no_speech_prob": 0.0, "words": [{"start": 631.49, "end": 631.69, "word": "so", "probability": 0.1639404296875}, {"start": 631.69, "end": 631.87, "word": " I", "probability": 0.587890625}, {"start": 631.87, "end": 631.87, "word": " will", "probability": 0.248291015625}, {"start": 631.87, "end": 632.01, "word": " go", "probability": 0.697265625}, {"start": 632.01, "end": 632.13, "word": " to", "probability": 0.9267578125}, {"start": 632.13, "end": 632.59, "word": " circle", "probability": 0.55224609375}, {"start": 632.59, "end": 633.73, "word": " and", "probability": 0.60888671875}, {"start": 633.73, "end": 633.89, "word": " tell", "probability": 0.155517578125}, {"start": 633.89, "end": 633.97, "word": " it", "probability": 0.75244140625}, {"start": 633.97, "end": 634.05, "word": " to", "probability": 0.88623046875}, {"start": 634.05, "end": 634.53, "word": " implement", "probability": 0.468017578125}, {"start": 634.53, "end": 634.81, "word": " and", "probability": 0.4677734375}, {"start": 634.81, "end": 634.91, "word": " it", "probability": 0.445068359375}, {"start": 634.91, "end": 634.95, "word": " will", "probability": 0.8212890625}, {"start": 634.95, "end": 635.13, "word": " add", "probability": 0.81396484375}, {"start": 635.13, "end": 636.27, "word": " method", "probability": 0.306884765625}, {"start": 636.27, "end": 636.73, "word": " accept", "probability": 0.72998046875}, {"start": 636.73, "end": 637.39, "word": " and", "probability": 0.389892578125}, {"start": 637.39, "end": 637.47, "word": " I", "probability": 0.359375}, {"start": 637.47, "end": 637.71, "word": " will", "probability": 0.83447265625}, {"start": 637.71, "end": 638.03, "word": " also", "probability": 0.35888671875}, {"start": 638.03, "end": 638.03, "word": " go", "probability": 0.8525390625}, {"start": 638.03, "end": 638.49, "word": " to", "probability": 0.9453125}, {"start": 638.49, "end": 639.13, "word": " rectangle", "probability": 0.85009765625}, {"start": 639.13, "end": 639.85, "word": " and", "probability": 0.8916015625}, {"start": 639.85, "end": 639.85, "word": " it", "probability": 0.2147216796875}, {"start": 639.85, "end": 639.99, "word": " will", "probability": 0.85693359375}, {"start": 639.99, "end": 640.23, "word": " add", "probability": 0.8837890625}, {"start": 640.23, "end": 641.17, "word": " method", "probability": 0.8369140625}, {"start": 641.17, "end": 643.71, "word": " accept", "probability": 0.876953125}], "temperature": 1.0}, {"id": 27, "seek": 67533, "start": 646.11, "end": 675.33, "text": " so it remains one step and we finish it and then we explain what we have done go to the method accept that is in the circle remove the code that you put by default and then go to the v who is the v? the visitor and you tell him process and you give him this who is this? which is the current class and the same thing go to the rectangle and tell him v.process and you give him this", "tokens": [370, 309, 7023, 472, 1823, 293, 321, 2413, 309, 293, 550, 321, 2903, 437, 321, 362, 1096, 352, 281, 264, 3170, 3241, 300, 307, 294, 264, 6329, 4159, 264, 3089, 300, 291, 829, 538, 7576, 293, 550, 352, 281, 264, 371, 567, 307, 264, 371, 30, 264, 28222, 293, 291, 980, 796, 1399, 293, 291, 976, 796, 341, 567, 307, 341, 30, 597, 307, 264, 2190, 1508, 293, 264, 912, 551, 352, 281, 264, 21930, 293, 980, 796, 371, 13, 41075, 293, 291, 976, 796, 341], "avg_logprob": -0.45474137519967966, "compression_ratio": 1.9390862944162437, "no_speech_prob": 4.410743713378906e-06, "words": [{"start": 646.11, "end": 646.33, "word": " so", "probability": 0.1458740234375}, {"start": 646.33, "end": 646.41, "word": " it", "probability": 0.304443359375}, {"start": 646.41, "end": 646.49, "word": " remains", "probability": 0.185302734375}, {"start": 646.49, "end": 646.61, "word": " one", "probability": 0.58203125}, {"start": 646.61, "end": 646.79, "word": " step", "probability": 0.83154296875}, {"start": 646.79, "end": 647.13, "word": " and", "probability": 0.54638671875}, {"start": 647.13, "end": 647.23, "word": " we", "probability": 0.425048828125}, {"start": 647.23, "end": 647.49, "word": " finish", "probability": 0.485595703125}, {"start": 647.49, "end": 648.13, "word": " it", "probability": 0.459228515625}, {"start": 648.13, "end": 648.53, "word": " and", "probability": 0.199951171875}, {"start": 648.53, "end": 648.75, "word": " then", "probability": 0.6767578125}, {"start": 648.75, "end": 648.93, "word": " we", "probability": 0.822265625}, {"start": 648.93, "end": 649.05, "word": " explain", "probability": 0.71728515625}, {"start": 649.05, "end": 649.31, "word": " what", "probability": 0.74658203125}, {"start": 649.31, "end": 649.45, "word": " we", "probability": 0.5986328125}, {"start": 649.45, "end": 649.53, "word": " have", "probability": 0.2900390625}, {"start": 649.53, "end": 649.69, "word": " done", "probability": 0.87353515625}, {"start": 649.69, "end": 651.11, "word": " go", "probability": 0.466064453125}, {"start": 651.11, "end": 651.37, "word": " to", "probability": 0.953125}, {"start": 651.37, "end": 651.45, "word": " the", "probability": 0.5400390625}, {"start": 651.45, "end": 651.65, "word": " method", "probability": 0.86572265625}, {"start": 651.65, "end": 652.01, "word": " accept", "probability": 0.69873046875}, {"start": 652.01, "end": 652.23, "word": " that", "probability": 0.3740234375}, {"start": 652.23, "end": 652.25, "word": " is", "probability": 0.6591796875}, {"start": 652.25, "end": 652.51, "word": " in", "probability": 0.328857421875}, {"start": 652.51, "end": 652.69, "word": " the", "probability": 0.6875}, {"start": 652.69, "end": 653.07, "word": " circle", "probability": 0.95751953125}, {"start": 653.07, "end": 654.97, "word": " remove", "probability": 0.291748046875}, {"start": 654.97, "end": 655.21, "word": " the", "probability": 0.89794921875}, {"start": 655.21, "end": 655.39, "word": " code", "probability": 0.87158203125}, {"start": 655.39, "end": 655.49, "word": " that", "probability": 0.677734375}, {"start": 655.49, "end": 655.65, "word": " you", "probability": 0.4970703125}, {"start": 655.65, "end": 655.93, "word": " put", "probability": 0.220458984375}, {"start": 655.93, "end": 656.13, "word": " by", "probability": 0.70068359375}, {"start": 656.13, "end": 656.61, "word": " default", "probability": 0.97802734375}, {"start": 656.61, "end": 657.27, "word": " and", "probability": 0.6826171875}, {"start": 657.27, "end": 657.53, "word": " then", "probability": 0.7861328125}, {"start": 657.53, "end": 657.75, "word": " go", "probability": 0.9384765625}, {"start": 657.75, "end": 657.89, "word": " to", "probability": 0.96630859375}, {"start": 657.89, "end": 658.03, "word": " the", "probability": 0.5830078125}, {"start": 658.03, "end": 658.21, "word": " v", "probability": 0.5224609375}, {"start": 658.21, "end": 658.61, "word": " who", "probability": 0.28369140625}, {"start": 658.61, "end": 658.79, "word": " is", "probability": 0.9365234375}, {"start": 658.79, "end": 658.89, "word": " the", "probability": 0.6923828125}, {"start": 658.89, "end": 659.07, "word": " v?", "probability": 0.94287109375}, {"start": 659.41, "end": 659.55, "word": " the", "probability": 0.7119140625}, {"start": 659.55, "end": 659.89, "word": " visitor", "probability": 0.94189453125}, {"start": 659.89, "end": 660.57, "word": " and", "probability": 0.76318359375}, {"start": 660.57, "end": 660.69, "word": " you", "probability": 0.59814453125}, {"start": 660.69, "end": 660.79, "word": " tell", "probability": 0.29052734375}, {"start": 660.79, "end": 660.91, "word": " him", "probability": 0.80908203125}, {"start": 660.91, "end": 661.43, "word": " process", "probability": 0.92626953125}, {"start": 661.43, "end": 662.81, "word": " and", "probability": 0.8642578125}, {"start": 662.81, "end": 662.89, "word": " you", "probability": 0.37060546875}, {"start": 662.89, "end": 663.03, "word": " give", "probability": 0.8115234375}, {"start": 663.03, "end": 663.21, "word": " him", "probability": 0.8291015625}, {"start": 663.21, "end": 663.51, "word": " this", "probability": 0.9541015625}, {"start": 663.51, "end": 664.27, "word": " who", "probability": 0.54248046875}, {"start": 664.27, "end": 664.37, "word": " is", "probability": 0.84765625}, {"start": 664.37, "end": 664.65, "word": " this?", "probability": 0.9580078125}, {"start": 664.97, "end": 665.37, "word": " which", "probability": 0.1300048828125}, {"start": 665.37, "end": 665.47, "word": " is", "probability": 0.90478515625}, {"start": 665.47, "end": 665.55, "word": " the", "probability": 0.7138671875}, {"start": 665.55, "end": 666.15, "word": " current", "probability": 0.424072265625}, {"start": 666.15, "end": 666.15, "word": " class", "probability": 0.96728515625}, {"start": 666.15, "end": 667.07, "word": " and", "probability": 0.78173828125}, {"start": 667.07, "end": 667.27, "word": " the", "probability": 0.59375}, {"start": 667.27, "end": 667.27, "word": " same", "probability": 0.9130859375}, {"start": 667.27, "end": 667.57, "word": " thing", "probability": 0.88525390625}, {"start": 667.57, "end": 667.77, "word": " go", "probability": 0.689453125}, {"start": 667.77, "end": 667.89, "word": " to", "probability": 0.966796875}, {"start": 667.89, "end": 667.97, "word": " the", "probability": 0.55419921875}, {"start": 667.97, "end": 668.45, "word": " rectangle", "probability": 0.9345703125}, {"start": 668.45, "end": 670.33, "word": " and", "probability": 0.9189453125}, {"start": 670.33, "end": 670.47, "word": " tell", "probability": 0.69873046875}, {"start": 670.47, "end": 670.57, "word": " him", "probability": 0.87646484375}, {"start": 670.57, "end": 670.89, "word": " v", "probability": 0.94384765625}, {"start": 670.89, "end": 673.37, "word": ".process", "probability": 0.640869140625}, {"start": 673.37, "end": 674.69, "word": " and", "probability": 0.87353515625}, {"start": 674.69, "end": 674.77, "word": " you", "probability": 0.6982421875}, {"start": 674.77, "end": 674.91, "word": " give", "probability": 0.87744140625}, {"start": 674.91, "end": 675.05, "word": " him", "probability": 0.88330078125}, {"start": 675.05, "end": 675.33, "word": " this", "probability": 0.96484375}], "temperature": 1.0}, {"id": 28, "seek": 69715, "start": 679.05, "end": 697.15, "text": "Okay guys, we're done. Do you understand what I did? Yes? No? Okay, let's explain what we did. I brought back the idea where it is. And to convey the idea to you, imagine that I have a shed and I want to add new things to it.", "tokens": [8297, 1074, 11, 321, 434, 1096, 13, 1144, 291, 1223, 437, 286, 630, 30, 1079, 30, 883, 30, 1033, 11, 718, 311, 2903, 437, 321, 630, 13, 286, 3038, 646, 264, 1558, 689, 309, 307, 13, 400, 281, 16965, 264, 1558, 281, 291, 11, 3811, 300, 286, 362, 257, 14951, 293, 286, 528, 281, 909, 777, 721, 281, 309, 13], "avg_logprob": -0.49513320453831405, "compression_ratio": 1.3888888888888888, "no_speech_prob": 1.6987323760986328e-05, "words": [{"start": 679.05, "end": 679.39, "word": "Okay", "probability": 0.40966796875}, {"start": 679.39, "end": 679.79, "word": " guys,", "probability": 0.748046875}, {"start": 680.13, "end": 680.29, "word": " we're", "probability": 0.635986328125}, {"start": 680.29, "end": 680.55, "word": " done.", "probability": 0.8740234375}, {"start": 681.41, "end": 681.85, "word": " Do", "probability": 0.650390625}, {"start": 681.85, "end": 682.85, "word": " you", "probability": 0.9716796875}, {"start": 682.85, "end": 682.85, "word": " understand", "probability": 0.6650390625}, {"start": 682.85, "end": 683.05, "word": " what", "probability": 0.646484375}, {"start": 683.05, "end": 683.23, "word": " I", "probability": 0.796875}, {"start": 683.23, "end": 683.53, "word": " did?", "probability": 0.54736328125}, {"start": 684.45, "end": 684.97, "word": " Yes?", "probability": 0.1903076171875}, {"start": 685.39, "end": 685.67, "word": " No?", "probability": 0.703125}, {"start": 685.93, "end": 686.15, "word": " Okay,", "probability": 0.603515625}, {"start": 686.23, "end": 686.41, "word": " let's", "probability": 0.75634765625}, {"start": 686.41, "end": 686.65, "word": " explain", "probability": 0.66650390625}, {"start": 686.65, "end": 686.83, "word": " what", "probability": 0.85791015625}, {"start": 686.83, "end": 686.95, "word": " we", "probability": 0.89599609375}, {"start": 686.95, "end": 687.19, "word": " did.", "probability": 0.79443359375}, {"start": 687.75, "end": 687.89, "word": " I", "probability": 0.77099609375}, {"start": 687.89, "end": 688.07, "word": " brought", "probability": 0.258544921875}, {"start": 688.07, "end": 688.43, "word": " back", "probability": 0.4443359375}, {"start": 688.43, "end": 688.73, "word": " the", "probability": 0.689453125}, {"start": 688.73, "end": 689.03, "word": " idea", "probability": 0.642578125}, {"start": 689.03, "end": 689.35, "word": " where", "probability": 0.1484375}, {"start": 689.35, "end": 689.41, "word": " it", "probability": 0.8740234375}, {"start": 689.41, "end": 689.63, "word": " is.", "probability": 0.548828125}, {"start": 690.83, "end": 691.35, "word": " And", "probability": 0.6748046875}, {"start": 691.35, "end": 691.63, "word": " to", "probability": 0.76806640625}, {"start": 691.63, "end": 692.07, "word": " convey", "probability": 0.1983642578125}, {"start": 692.07, "end": 692.31, "word": " the", "probability": 0.578125}, {"start": 692.31, "end": 692.49, "word": " idea", "probability": 0.8984375}, {"start": 692.49, "end": 692.55, "word": " to", "probability": 0.301513671875}, {"start": 692.55, "end": 692.55, "word": " you,", "probability": 0.96484375}, {"start": 692.59, "end": 692.99, "word": " imagine", "probability": 0.8984375}, {"start": 692.99, "end": 693.45, "word": " that", "probability": 0.310546875}, {"start": 693.45, "end": 693.65, "word": " I", "probability": 0.91455078125}, {"start": 693.65, "end": 693.95, "word": " have", "probability": 0.90771484375}, {"start": 693.95, "end": 694.17, "word": " a", "probability": 0.7685546875}, {"start": 694.17, "end": 694.35, "word": " shed", "probability": 0.2548828125}, {"start": 694.35, "end": 694.95, "word": " and", "probability": 0.408935546875}, {"start": 694.95, "end": 695.15, "word": " I", "probability": 0.9169921875}, {"start": 695.15, "end": 695.25, "word": " want", "probability": 0.6962890625}, {"start": 695.25, "end": 696.05, "word": " to", "probability": 0.96875}, {"start": 696.05, "end": 696.27, "word": " add", "probability": 0.4228515625}, {"start": 696.27, "end": 696.59, "word": " new", "probability": 0.68408203125}, {"start": 696.59, "end": 696.89, "word": " things", "probability": 0.75}, {"start": 696.89, "end": 697.15, "word": " to", "probability": 0.72802734375}, {"start": 697.15, "end": 697.15, "word": " it.", "probability": 0.94970703125}], "temperature": 1.0}, {"id": 29, "seek": 72278, "start": 698.22, "end": 722.78, "text": " For example, they asked me to make a new room, open a new window, fix a broken thing Now, it doesn't make sense that every time I want to do something new, they tell me to leave the old thing and go get a new one No, I'm done, I'm in the old thing, I want to add new things, at the same time, I can't add these new things So what do I do? For example, I want to open a new door, I reach the carpenter, I tell him to come", "tokens": [1171, 1365, 11, 436, 2351, 385, 281, 652, 257, 777, 1808, 11, 1269, 257, 777, 4910, 11, 3191, 257, 5463, 551, 823, 11, 309, 1177, 380, 652, 2020, 300, 633, 565, 286, 528, 281, 360, 746, 777, 11, 436, 980, 385, 281, 1856, 264, 1331, 551, 293, 352, 483, 257, 777, 472, 883, 11, 286, 478, 1096, 11, 286, 478, 294, 264, 1331, 551, 11, 286, 528, 281, 909, 777, 721, 11, 412, 264, 912, 565, 11, 286, 393, 380, 909, 613, 777, 721, 407, 437, 360, 286, 360, 30, 1171, 1365, 11, 286, 528, 281, 1269, 257, 777, 2853, 11, 286, 2524, 264, 26103, 14278, 11, 286, 980, 796, 281, 808], "avg_logprob": -0.42311946480675083, "compression_ratio": 1.8304347826086957, "no_speech_prob": 4.589557647705078e-06, "words": [{"start": 698.22, "end": 698.44, "word": " For", "probability": 0.1715087890625}, {"start": 698.44, "end": 698.48, "word": " example,", "probability": 0.89599609375}, {"start": 698.48, "end": 698.56, "word": " they", "probability": 0.54736328125}, {"start": 698.56, "end": 698.56, "word": " asked", "probability": 0.64111328125}, {"start": 698.56, "end": 698.82, "word": " me", "probability": 0.94775390625}, {"start": 698.82, "end": 699.42, "word": " to", "probability": 0.962890625}, {"start": 699.42, "end": 699.76, "word": " make", "probability": 0.476318359375}, {"start": 699.76, "end": 699.9, "word": " a", "probability": 0.9296875}, {"start": 699.9, "end": 700.36, "word": " new", "probability": 0.8916015625}, {"start": 700.36, "end": 700.36, "word": " room,", "probability": 0.9111328125}, {"start": 700.62, "end": 700.8, "word": " open", "probability": 0.486083984375}, {"start": 700.8, "end": 700.94, "word": " a", "probability": 0.9052734375}, {"start": 700.94, "end": 701.44, "word": " new", "probability": 0.76318359375}, {"start": 701.44, "end": 701.44, "word": " window,", "probability": 0.751953125}, {"start": 702.66, "end": 702.92, "word": " fix", "probability": 0.56884765625}, {"start": 702.92, "end": 703.22, "word": " a", "probability": 0.284423828125}, {"start": 703.22, "end": 703.46, "word": " broken", "probability": 0.7001953125}, {"start": 703.46, "end": 703.72, "word": " thing", "probability": 0.62255859375}, {"start": 703.72, "end": 704.74, "word": " Now,", "probability": 0.3759765625}, {"start": 704.84, "end": 704.96, "word": " it", "probability": 0.85986328125}, {"start": 704.96, "end": 705.1, "word": " doesn't", "probability": 0.63671875}, {"start": 705.1, "end": 705.38, "word": " make", "probability": 0.91943359375}, {"start": 705.38, "end": 705.42, "word": " sense", "probability": 0.76513671875}, {"start": 705.42, "end": 705.58, "word": " that", "probability": 0.490966796875}, {"start": 705.58, "end": 705.94, "word": " every", "probability": 0.34765625}, {"start": 705.94, "end": 706.02, "word": " time", "probability": 0.8466796875}, {"start": 706.02, "end": 706.08, "word": " I", "probability": 0.97998046875}, {"start": 706.08, "end": 706.24, "word": " want", "probability": 0.48388671875}, {"start": 706.24, "end": 706.32, "word": " to", "probability": 0.96728515625}, {"start": 706.32, "end": 706.54, "word": " do", "probability": 0.650390625}, {"start": 706.54, "end": 706.78, "word": " something", "probability": 0.791015625}, {"start": 706.78, "end": 707.16, "word": " new,", "probability": 0.8466796875}, {"start": 707.28, "end": 707.52, "word": " they", "probability": 0.68115234375}, {"start": 707.52, "end": 707.64, "word": " tell", "probability": 0.470458984375}, {"start": 707.64, "end": 707.8, "word": " me", "probability": 0.7919921875}, {"start": 707.8, "end": 708.04, "word": " to", "probability": 0.69921875}, {"start": 708.04, "end": 708.58, "word": " leave", "probability": 0.6494140625}, {"start": 708.58, "end": 708.74, "word": " the", "probability": 0.54296875}, {"start": 708.74, "end": 708.9, "word": " old", "probability": 0.5751953125}, {"start": 708.9, "end": 708.94, "word": " thing", "probability": 0.2666015625}, {"start": 708.94, "end": 709.06, "word": " and", "probability": 0.8974609375}, {"start": 709.06, "end": 709.16, "word": " go", "probability": 0.343505859375}, {"start": 709.16, "end": 709.28, "word": " get", "probability": 0.47216796875}, {"start": 709.28, "end": 709.38, "word": " a", "probability": 0.826171875}, {"start": 709.38, "end": 709.76, "word": " new", "probability": 0.919921875}, {"start": 709.76, "end": 709.76, "word": " one", "probability": 0.6982421875}, {"start": 709.76, "end": 711.58, "word": " No,", "probability": 0.62939453125}, {"start": 711.76, "end": 711.92, "word": " I'm", "probability": 0.6630859375}, {"start": 711.92, "end": 711.92, "word": " done,", "probability": 0.251708984375}, {"start": 711.98, "end": 712.34, "word": " I'm", "probability": 0.942626953125}, {"start": 712.34, "end": 712.6, "word": " in", "probability": 0.29296875}, {"start": 712.6, "end": 712.8, "word": " the", "probability": 0.7734375}, {"start": 712.8, "end": 712.98, "word": " old", "probability": 0.84228515625}, {"start": 712.98, "end": 713.04, "word": " thing,", "probability": 0.420654296875}, {"start": 713.1, "end": 713.18, "word": " I", "probability": 0.9248046875}, {"start": 713.18, "end": 713.28, "word": " want", "probability": 0.6748046875}, {"start": 713.28, "end": 713.42, "word": " to", "probability": 0.9697265625}, {"start": 713.42, "end": 713.6, "word": " add", "probability": 0.9130859375}, {"start": 713.6, "end": 713.82, "word": " new", "probability": 0.65771484375}, {"start": 713.82, "end": 714.16, "word": " things,", "probability": 0.775390625}, {"start": 714.54, "end": 714.62, "word": " at", "probability": 0.75048828125}, {"start": 714.62, "end": 714.74, "word": " the", "probability": 0.92822265625}, {"start": 714.74, "end": 714.82, "word": " same", "probability": 0.9072265625}, {"start": 714.82, "end": 715.14, "word": " time,", "probability": 0.87109375}, {"start": 715.26, "end": 715.32, "word": " I", "probability": 0.99365234375}, {"start": 715.32, "end": 715.64, "word": " can't", "probability": 0.7049560546875}, {"start": 715.64, "end": 715.92, "word": " add", "probability": 0.8447265625}, {"start": 715.92, "end": 716.06, "word": " these", "probability": 0.2802734375}, {"start": 716.06, "end": 716.1, "word": " new", "probability": 0.67578125}, {"start": 716.1, "end": 716.36, "word": " things", "probability": 0.853515625}, {"start": 716.36, "end": 717.4, "word": " So", "probability": 0.474853515625}, {"start": 717.4, "end": 717.58, "word": " what", "probability": 0.658203125}, {"start": 717.58, "end": 717.62, "word": " do", "probability": 0.87646484375}, {"start": 717.62, "end": 717.7, "word": " I", "probability": 0.99072265625}, {"start": 717.7, "end": 717.92, "word": " do?", "probability": 0.9658203125}, {"start": 718.4, "end": 718.76, "word": " For", "probability": 0.59326171875}, {"start": 718.76, "end": 719.02, "word": " example,", "probability": 0.95654296875}, {"start": 719.08, "end": 719.16, "word": " I", "probability": 0.90966796875}, {"start": 719.16, "end": 719.16, "word": " want", "probability": 0.84619140625}, {"start": 719.16, "end": 719.18, "word": " to", "probability": 0.9716796875}, {"start": 719.18, "end": 719.38, "word": " open", "probability": 0.92724609375}, {"start": 719.38, "end": 719.68, "word": " a", "probability": 0.986328125}, {"start": 719.68, "end": 719.88, "word": " new", "probability": 0.845703125}, {"start": 719.88, "end": 719.92, "word": " door,", "probability": 0.9443359375}, {"start": 720.56, "end": 720.58, "word": " I", "probability": 0.88525390625}, {"start": 720.58, "end": 720.82, "word": " reach", "probability": 0.59521484375}, {"start": 720.82, "end": 721.14, "word": " the", "probability": 0.4697265625}, {"start": 721.14, "end": 721.44, "word": " carpenter,", "probability": 0.53204345703125}, {"start": 721.58, "end": 722.18, "word": " I", "probability": 0.3759765625}, {"start": 722.18, "end": 722.42, "word": " tell", "probability": 0.343994140625}, {"start": 722.42, "end": 722.52, "word": " him", "probability": 0.93408203125}, {"start": 722.52, "end": 722.62, "word": " to", "probability": 0.51513671875}, {"start": 722.62, "end": 722.78, "word": " come", "probability": 0.8896484375}], "temperature": 1.0}, {"id": 30, "seek": 73785, "start": 724.39, "end": 737.85, "text": "I contact him because he is considered a visitor. He comes to me and I say welcome and open the door. For example, I have a piece of wood that broke.", "tokens": [40, 3385, 796, 570, 415, 307, 4888, 257, 28222, 13, 634, 1487, 281, 385, 293, 286, 584, 2928, 293, 1269, 264, 2853, 13, 1171, 1365, 11, 286, 362, 257, 2522, 295, 4576, 300, 6902, 13], "avg_logprob": -0.6328124966886308, "compression_ratio": 1.2956521739130435, "no_speech_prob": 1.1146068572998047e-05, "words": [{"start": 724.39, "end": 724.55, "word": "I", "probability": 0.38037109375}, {"start": 724.55, "end": 724.75, "word": " contact", "probability": 0.0701904296875}, {"start": 724.75, "end": 726.39, "word": " him", "probability": 0.68798828125}, {"start": 726.39, "end": 726.83, "word": " because", "probability": 0.52392578125}, {"start": 726.83, "end": 727.37, "word": " he", "probability": 0.9091796875}, {"start": 727.37, "end": 727.47, "word": " is", "probability": 0.62255859375}, {"start": 727.47, "end": 727.77, "word": " considered", "probability": 0.43359375}, {"start": 727.77, "end": 728.33, "word": " a", "probability": 0.53564453125}, {"start": 728.33, "end": 728.95, "word": " visitor.", "probability": 0.96240234375}, {"start": 730.11, "end": 730.59, "word": " He", "probability": 0.396728515625}, {"start": 730.59, "end": 730.83, "word": " comes", "probability": 0.68798828125}, {"start": 730.83, "end": 731.05, "word": " to", "probability": 0.744140625}, {"start": 731.05, "end": 731.21, "word": " me", "probability": 0.9052734375}, {"start": 731.21, "end": 731.39, "word": " and", "probability": 0.6962890625}, {"start": 731.39, "end": 731.55, "word": " I", "probability": 0.85498046875}, {"start": 731.55, "end": 731.79, "word": " say", "probability": 0.343994140625}, {"start": 731.79, "end": 733.73, "word": " welcome", "probability": 0.22119140625}, {"start": 733.73, "end": 734.81, "word": " and", "probability": 0.50732421875}, {"start": 734.81, "end": 734.99, "word": " open", "probability": 0.66796875}, {"start": 734.99, "end": 735.17, "word": " the", "probability": 0.65869140625}, {"start": 735.17, "end": 735.35, "word": " door.", "probability": 0.9365234375}, {"start": 736.21, "end": 736.69, "word": " For", "probability": 0.2003173828125}, {"start": 736.69, "end": 736.69, "word": " example,", "probability": 0.90478515625}, {"start": 736.69, "end": 736.69, "word": " I", "probability": 0.71142578125}, {"start": 736.69, "end": 736.77, "word": " have", "probability": 0.88232421875}, {"start": 736.77, "end": 737.01, "word": " a", "probability": 0.67919921875}, {"start": 737.01, "end": 737.01, "word": " piece", "probability": 0.20751953125}, {"start": 737.01, "end": 737.23, "word": " of", "probability": 0.97119140625}, {"start": 737.23, "end": 737.49, "word": " wood", "probability": 0.548828125}, {"start": 737.49, "end": 737.75, "word": " that", "probability": 0.5234375}, {"start": 737.75, "end": 737.85, "word": " broke.", "probability": 0.293701171875}], "temperature": 1.0}, {"id": 31, "seek": 76272, "start": 739.02, "end": 762.72, "text": " I went to another visitor and told him that this wood doesn't look good, it needs a carpenter. I looked at the carpenter and told him to come to my house and ask him to take over this wood and fix it. I told him that I will leave him to work. The idea behind this gate is that you take over the house and then any additions that you want to make, you leave them outside", "tokens": [286, 1437, 281, 1071, 28222, 293, 1907, 796, 300, 341, 4576, 1177, 380, 574, 665, 11, 309, 2203, 257, 26103, 14278, 13, 286, 2956, 412, 264, 26103, 14278, 293, 1907, 796, 281, 808, 281, 452, 1782, 293, 1029, 796, 281, 747, 670, 341, 4576, 293, 3191, 309, 13, 286, 1907, 796, 300, 286, 486, 1856, 796, 281, 589, 13, 440, 1558, 2261, 341, 8539, 307, 300, 291, 747, 670, 264, 1782, 293, 550, 604, 35113, 300, 291, 528, 281, 652, 11, 291, 1856, 552, 2380], "avg_logprob": -0.7172965241032977, "compression_ratio": 1.8686868686868687, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 739.02, "end": 739.46, "word": " I", "probability": 0.40087890625}, {"start": 739.46, "end": 739.56, "word": " went", "probability": 0.15380859375}, {"start": 739.56, "end": 739.64, "word": " to", "probability": 0.583984375}, {"start": 739.64, "end": 740.08, "word": " another", "probability": 0.5595703125}, {"start": 740.08, "end": 740.6, "word": " visitor", "probability": 0.93505859375}, {"start": 740.6, "end": 741.02, "word": " and", "probability": 0.4404296875}, {"start": 741.02, "end": 741.64, "word": " told", "probability": 0.158203125}, {"start": 741.64, "end": 741.68, "word": " him", "probability": 0.88623046875}, {"start": 741.68, "end": 741.74, "word": " that", "probability": 0.5615234375}, {"start": 741.74, "end": 741.86, "word": " this", "probability": 0.375244140625}, {"start": 741.86, "end": 742.12, "word": " wood", "probability": 0.56640625}, {"start": 742.12, "end": 742.36, "word": " doesn't", "probability": 0.5758056640625}, {"start": 742.36, "end": 742.68, "word": " look", "probability": 0.197265625}, {"start": 742.68, "end": 742.88, "word": " good,", "probability": 0.61962890625}, {"start": 743.18, "end": 743.24, "word": " it", "probability": 0.29833984375}, {"start": 743.24, "end": 743.42, "word": " needs", "probability": 0.55419921875}, {"start": 743.42, "end": 743.76, "word": " a", "probability": 0.78955078125}, {"start": 743.76, "end": 744.08, "word": " carpenter.", "probability": 0.6273193359375}, {"start": 744.36, "end": 744.84, "word": " I", "probability": 0.2293701171875}, {"start": 744.84, "end": 745.2, "word": " looked", "probability": 0.295166015625}, {"start": 745.2, "end": 745.32, "word": " at", "probability": 0.62255859375}, {"start": 745.32, "end": 745.44, "word": " the", "probability": 0.7392578125}, {"start": 745.44, "end": 745.6, "word": " carpenter", "probability": 0.901123046875}, {"start": 745.6, "end": 745.78, "word": " and", "probability": 0.86328125}, {"start": 745.78, "end": 745.9, "word": " told", "probability": 0.44970703125}, {"start": 745.9, "end": 745.98, "word": " him", "probability": 0.93310546875}, {"start": 745.98, "end": 746.3, "word": " to", "probability": 0.53564453125}, {"start": 746.3, "end": 746.3, "word": " come", "probability": 0.68603515625}, {"start": 746.3, "end": 746.86, "word": " to", "probability": 0.1304931640625}, {"start": 746.86, "end": 747.04, "word": " my", "probability": 0.77734375}, {"start": 747.04, "end": 747.22, "word": " house", "probability": 0.64501953125}, {"start": 747.22, "end": 749.0, "word": " and", "probability": 0.57470703125}, {"start": 749.0, "end": 749.26, "word": " ask", "probability": 0.0931396484375}, {"start": 749.26, "end": 749.26, "word": " him", "probability": 0.4501953125}, {"start": 749.26, "end": 749.34, "word": " to", "probability": 0.78759765625}, {"start": 749.34, "end": 749.54, "word": " take", "probability": 0.109375}, {"start": 749.54, "end": 750.1, "word": " over", "probability": 0.4248046875}, {"start": 750.1, "end": 750.36, "word": " this", "probability": 0.38720703125}, {"start": 750.36, "end": 750.9, "word": " wood", "probability": 0.6533203125}, {"start": 750.9, "end": 751.04, "word": " and", "probability": 0.54541015625}, {"start": 751.04, "end": 751.28, "word": " fix", "probability": 0.4248046875}, {"start": 751.28, "end": 751.52, "word": " it.", "probability": 0.93896484375}, {"start": 752.1, "end": 752.58, "word": " I", "probability": 0.287841796875}, {"start": 752.58, "end": 752.58, "word": " told", "probability": 0.367919921875}, {"start": 752.58, "end": 752.6, "word": " him", "probability": 0.92724609375}, {"start": 752.6, "end": 752.64, "word": " that", "probability": 0.42041015625}, {"start": 752.64, "end": 752.74, "word": " I", "probability": 0.85205078125}, {"start": 752.74, "end": 752.86, "word": " will", "probability": 0.372314453125}, {"start": 752.86, "end": 753.02, "word": " leave", "probability": 0.70166015625}, {"start": 753.02, "end": 753.16, "word": " him", "probability": 0.84033203125}, {"start": 753.16, "end": 753.54, "word": " to", "probability": 0.4443359375}, {"start": 753.54, "end": 754.36, "word": " work.", "probability": 0.71337890625}, {"start": 755.68, "end": 756.02, "word": " The", "probability": 0.62744140625}, {"start": 756.02, "end": 756.32, "word": " idea", "probability": 0.8115234375}, {"start": 756.32, "end": 756.44, "word": " behind", "probability": 0.37646484375}, {"start": 756.44, "end": 756.6, "word": " this", "probability": 0.693359375}, {"start": 756.6, "end": 756.86, "word": " gate", "probability": 0.254150390625}, {"start": 756.86, "end": 757.1, "word": " is", "probability": 0.76220703125}, {"start": 757.1, "end": 757.18, "word": " that", "probability": 0.830078125}, {"start": 757.18, "end": 757.5, "word": " you", "probability": 0.81689453125}, {"start": 757.5, "end": 758.08, "word": " take", "probability": 0.72705078125}, {"start": 758.08, "end": 758.24, "word": " over", "probability": 0.5927734375}, {"start": 758.24, "end": 758.28, "word": " the", "probability": 0.74755859375}, {"start": 758.28, "end": 758.54, "word": " house", "probability": 0.83251953125}, {"start": 758.54, "end": 759.02, "word": " and", "probability": 0.69775390625}, {"start": 759.02, "end": 759.1, "word": " then", "probability": 0.31201171875}, {"start": 759.1, "end": 759.4, "word": " any", "probability": 0.08251953125}, {"start": 759.4, "end": 759.84, "word": " additions", "probability": 0.63720703125}, {"start": 759.84, "end": 760.04, "word": " that", "probability": 0.56103515625}, {"start": 760.04, "end": 760.16, "word": " you", "probability": 0.86572265625}, {"start": 760.16, "end": 760.24, "word": " want", "probability": 0.66162109375}, {"start": 760.24, "end": 760.24, "word": " to", "probability": 0.9248046875}, {"start": 760.24, "end": 760.42, "word": " make,", "probability": 0.626953125}, {"start": 760.9, "end": 761.66, "word": " you", "probability": 0.83056640625}, {"start": 761.66, "end": 762.0, "word": " leave", "probability": 0.21923828125}, {"start": 762.0, "end": 762.42, "word": " them", "probability": 0.4541015625}, {"start": 762.42, "end": 762.72, "word": " outside", "probability": 0.6728515625}], "temperature": 1.0}, {"id": 32, "seek": 78850, "start": 763.88, "end": 788.5, "text": " They do it, you don't change the whole house to do it, you leave people outside to do it, okay? And this is the idea of ​​what we did with Hellgate What exactly did we do? Look with me guys Hellgate, we are in the interface shape, I have the basic method which is for example draw Or any other method that I want to do in the subclasses Now I want to open the door to add", "tokens": [814, 360, 309, 11, 291, 500, 380, 1319, 264, 1379, 1782, 281, 360, 309, 11, 291, 1856, 561, 2380, 281, 360, 309, 11, 1392, 30, 400, 341, 307, 264, 1558, 295, 8701, 5479, 321, 630, 365, 389, 898, 22514, 708, 2293, 630, 321, 360, 30, 2053, 365, 385, 1074, 12090, 22514, 11, 321, 366, 294, 264, 9226, 3909, 11, 286, 362, 264, 3875, 3170, 597, 307, 337, 1365, 2642, 1610, 604, 661, 3170, 300, 286, 528, 281, 360, 294, 264, 1422, 11665, 279, 823, 286, 528, 281, 1269, 264, 2853, 281, 909], "avg_logprob": -0.4462365706761678, "compression_ratio": 1.6277056277056277, "no_speech_prob": 9.238719940185547e-06, "words": [{"start": 763.88, "end": 764.12, "word": " They", "probability": 0.1575927734375}, {"start": 764.12, "end": 764.4, "word": " do", "probability": 0.2191162109375}, {"start": 764.4, "end": 764.54, "word": " it,", "probability": 0.72119140625}, {"start": 764.54, "end": 764.64, "word": " you", "probability": 0.619140625}, {"start": 764.64, "end": 764.7, "word": " don't", "probability": 0.859619140625}, {"start": 764.7, "end": 764.96, "word": " change", "probability": 0.779296875}, {"start": 764.96, "end": 765.14, "word": " the", "probability": 0.68701171875}, {"start": 765.14, "end": 765.52, "word": " whole", "probability": 0.6953125}, {"start": 765.52, "end": 765.52, "word": " house", "probability": 0.6796875}, {"start": 765.52, "end": 766.04, "word": " to", "probability": 0.62109375}, {"start": 766.04, "end": 766.3, "word": " do", "probability": 0.76416015625}, {"start": 766.3, "end": 766.46, "word": " it,", "probability": 0.8837890625}, {"start": 766.58, "end": 766.64, "word": " you", "probability": 0.8408203125}, {"start": 766.64, "end": 766.84, "word": " leave", "probability": 0.18994140625}, {"start": 766.84, "end": 767.14, "word": " people", "probability": 0.607421875}, {"start": 767.14, "end": 767.42, "word": " outside", "probability": 0.58203125}, {"start": 767.42, "end": 767.5, "word": " to", "probability": 0.77734375}, {"start": 767.5, "end": 767.68, "word": " do", "probability": 0.9267578125}, {"start": 767.68, "end": 768.18, "word": " it,", "probability": 0.9306640625}, {"start": 768.24, "end": 768.5, "word": " okay?", "probability": 0.392822265625}, {"start": 769.08, "end": 769.28, "word": " And", "probability": 0.611328125}, {"start": 769.28, "end": 769.5, "word": " this", "probability": 0.79833984375}, {"start": 769.5, "end": 769.54, "word": " is", "probability": 0.896484375}, {"start": 769.54, "end": 769.62, "word": " the", "probability": 0.8505859375}, {"start": 769.62, "end": 769.8, "word": " idea", "probability": 0.830078125}, {"start": 769.8, "end": 771.1, "word": " of", "probability": 0.65380859375}, {"start": 771.1, "end": 771.1, "word": " ​​what", "probability": 0.462158203125}, {"start": 771.1, "end": 771.26, "word": " we", "probability": 0.73486328125}, {"start": 771.26, "end": 771.54, "word": " did", "probability": 0.673828125}, {"start": 771.54, "end": 771.66, "word": " with", "probability": 0.505859375}, {"start": 771.66, "end": 771.96, "word": " Hellgate", "probability": 0.4204915364583333}, {"start": 771.96, "end": 772.46, "word": " What", "probability": 0.322265625}, {"start": 772.46, "end": 772.6, "word": " exactly", "probability": 0.52490234375}, {"start": 772.6, "end": 772.6, "word": " did", "probability": 0.80078125}, {"start": 772.6, "end": 773.18, "word": " we", "probability": 0.8349609375}, {"start": 773.18, "end": 773.18, "word": " do?", "probability": 0.947265625}, {"start": 773.48, "end": 773.76, "word": " Look", "probability": 0.47998046875}, {"start": 773.76, "end": 773.92, "word": " with", "probability": 0.755859375}, {"start": 773.92, "end": 774.08, "word": " me", "probability": 0.9609375}, {"start": 774.08, "end": 774.36, "word": " guys", "probability": 0.7197265625}, {"start": 774.36, "end": 776.26, "word": " Hellgate,", "probability": 0.7247314453125}, {"start": 776.4, "end": 776.5, "word": " we", "probability": 0.6455078125}, {"start": 776.5, "end": 776.66, "word": " are", "probability": 0.2802734375}, {"start": 776.66, "end": 776.82, "word": " in", "probability": 0.875}, {"start": 776.82, "end": 776.9, "word": " the", "probability": 0.73876953125}, {"start": 776.9, "end": 777.3, "word": " interface", "probability": 0.61376953125}, {"start": 777.3, "end": 777.66, "word": " shape,", "probability": 0.8623046875}, {"start": 777.74, "end": 777.8, "word": " I", "probability": 0.346435546875}, {"start": 777.8, "end": 777.94, "word": " have", "probability": 0.9453125}, {"start": 777.94, "end": 778.08, "word": " the", "probability": 0.9033203125}, {"start": 778.08, "end": 778.1, "word": " basic", "probability": 0.63671875}, {"start": 778.1, "end": 779.32, "word": " method", "probability": 0.935546875}, {"start": 779.32, "end": 779.5, "word": " which", "probability": 0.389404296875}, {"start": 779.5, "end": 779.64, "word": " is", "probability": 0.9111328125}, {"start": 779.64, "end": 779.76, "word": " for", "probability": 0.62841796875}, {"start": 779.76, "end": 779.88, "word": " example", "probability": 0.94677734375}, {"start": 779.88, "end": 780.34, "word": " draw", "probability": 0.38916015625}, {"start": 780.34, "end": 781.54, "word": " Or", "probability": 0.5546875}, {"start": 781.54, "end": 781.98, "word": " any", "probability": 0.888671875}, {"start": 781.98, "end": 782.4, "word": " other", "probability": 0.798828125}, {"start": 782.4, "end": 782.4, "word": " method", "probability": 0.94873046875}, {"start": 782.4, "end": 782.6, "word": " that", "probability": 0.34912109375}, {"start": 782.6, "end": 782.74, "word": " I", "probability": 0.94775390625}, {"start": 782.74, "end": 782.74, "word": " want", "probability": 0.78076171875}, {"start": 782.74, "end": 782.76, "word": " to", "probability": 0.9599609375}, {"start": 782.76, "end": 782.92, "word": " do", "probability": 0.65576171875}, {"start": 782.92, "end": 783.22, "word": " in", "probability": 0.81494140625}, {"start": 783.22, "end": 783.58, "word": " the", "probability": 0.60888671875}, {"start": 783.58, "end": 784.94, "word": " subclasses", "probability": 0.7119140625}, {"start": 784.94, "end": 785.5, "word": " Now", "probability": 0.83740234375}, {"start": 785.5, "end": 786.04, "word": " I", "probability": 0.796875}, {"start": 786.04, "end": 786.24, "word": " want", "probability": 0.80126953125}, {"start": 786.24, "end": 786.38, "word": " to", "probability": 0.97119140625}, {"start": 786.38, "end": 786.58, "word": " open", "probability": 0.91796875}, {"start": 786.58, "end": 786.78, "word": " the", "probability": 0.90869140625}, {"start": 786.78, "end": 787.1, "word": " door", "probability": 0.91357421875}, {"start": 787.1, "end": 788.22, "word": " to", "probability": 0.61669921875}, {"start": 788.22, "end": 788.5, "word": " add", "probability": 0.923828125}], "temperature": 1.0}, {"id": 33, "seek": 81160, "start": 789.48, "end": 811.6, "text": "New Features So he tells me that in order to add new features in the future, I should create a method called Accept And what does this method take? The visitor And since this method Accept is a door that I left open through which I will welcome the visitor to do the new things that I want him to do So that he will find the new thing, where will his code go?", "tokens": [18278, 3697, 3377, 407, 415, 5112, 385, 300, 294, 1668, 281, 909, 777, 4122, 294, 264, 2027, 11, 286, 820, 1884, 257, 3170, 1219, 39957, 400, 437, 775, 341, 3170, 747, 30, 440, 28222, 400, 1670, 341, 3170, 39957, 307, 257, 2853, 300, 286, 1411, 1269, 807, 597, 286, 486, 2928, 264, 28222, 281, 360, 264, 777, 721, 300, 286, 528, 796, 281, 360, 407, 300, 415, 486, 915, 264, 777, 551, 11, 689, 486, 702, 3089, 352, 30], "avg_logprob": -0.5093749836087227, "compression_ratio": 1.7342995169082125, "no_speech_prob": 4.380941390991211e-05, "words": [{"start": 789.48, "end": 789.64, "word": "New", "probability": 0.258056640625}, {"start": 789.64, "end": 790.06, "word": " Features", "probability": 0.54974365234375}, {"start": 790.06, "end": 791.38, "word": " So", "probability": 0.2432861328125}, {"start": 791.38, "end": 791.52, "word": " he", "probability": 0.252685546875}, {"start": 791.52, "end": 791.62, "word": " tells", "probability": 0.2666015625}, {"start": 791.62, "end": 791.74, "word": " me", "probability": 0.9453125}, {"start": 791.74, "end": 791.84, "word": " that", "probability": 0.2000732421875}, {"start": 791.84, "end": 792.14, "word": " in", "probability": 0.4892578125}, {"start": 792.14, "end": 792.66, "word": " order", "probability": 0.46630859375}, {"start": 792.66, "end": 792.82, "word": " to", "probability": 0.9326171875}, {"start": 792.82, "end": 793.0, "word": " add", "probability": 0.7724609375}, {"start": 793.0, "end": 793.12, "word": " new", "probability": 0.77783203125}, {"start": 793.12, "end": 793.46, "word": " features", "probability": 0.650390625}, {"start": 793.46, "end": 793.78, "word": " in", "probability": 0.75244140625}, {"start": 793.78, "end": 793.78, "word": " the", "probability": 0.87890625}, {"start": 793.78, "end": 793.78, "word": " future,", "probability": 0.974609375}, {"start": 793.88, "end": 793.96, "word": " I", "probability": 0.57568359375}, {"start": 793.96, "end": 794.04, "word": " should", "probability": 0.255859375}, {"start": 794.04, "end": 794.18, "word": " create", "probability": 0.378173828125}, {"start": 794.18, "end": 794.3, "word": " a", "probability": 0.88330078125}, {"start": 794.3, "end": 794.46, "word": " method", "probability": 0.95068359375}, {"start": 794.46, "end": 794.76, "word": " called", "probability": 0.76220703125}, {"start": 794.76, "end": 795.16, "word": " Accept", "probability": 0.52685546875}, {"start": 795.16, "end": 795.8, "word": " And", "probability": 0.395751953125}, {"start": 795.8, "end": 796.0, "word": " what", "probability": 0.6689453125}, {"start": 796.0, "end": 796.0, "word": " does", "probability": 0.7705078125}, {"start": 796.0, "end": 796.08, "word": " this", "probability": 0.89208984375}, {"start": 796.08, "end": 796.38, "word": " method", "probability": 0.958984375}, {"start": 796.38, "end": 796.96, "word": " take?", "probability": 0.54296875}, {"start": 797.74, "end": 798.26, "word": " The", "probability": 0.6591796875}, {"start": 798.26, "end": 798.52, "word": " visitor", "probability": 0.8486328125}, {"start": 798.52, "end": 799.16, "word": " And", "probability": 0.52099609375}, {"start": 799.16, "end": 799.4, "word": " since", "probability": 0.265869140625}, {"start": 799.4, "end": 799.74, "word": " this", "probability": 0.90185546875}, {"start": 799.74, "end": 800.0, "word": " method", "probability": 0.94873046875}, {"start": 800.0, "end": 800.34, "word": " Accept", "probability": 0.2841796875}, {"start": 800.34, "end": 800.54, "word": " is", "probability": 0.79931640625}, {"start": 800.54, "end": 800.88, "word": " a", "probability": 0.53466796875}, {"start": 800.88, "end": 801.2, "word": " door", "probability": 0.6787109375}, {"start": 801.2, "end": 801.92, "word": " that", "probability": 0.456298828125}, {"start": 801.92, "end": 802.04, "word": " I", "probability": 0.8759765625}, {"start": 802.04, "end": 802.24, "word": " left", "probability": 0.73779296875}, {"start": 802.24, "end": 802.62, "word": " open", "probability": 0.8837890625}, {"start": 802.62, "end": 802.94, "word": " through", "probability": 0.359619140625}, {"start": 802.94, "end": 803.4, "word": " which", "probability": 0.8154296875}, {"start": 803.4, "end": 804.42, "word": " I", "probability": 0.61328125}, {"start": 804.42, "end": 804.52, "word": " will", "probability": 0.7333984375}, {"start": 804.52, "end": 804.82, "word": " welcome", "probability": 0.319580078125}, {"start": 804.82, "end": 804.98, "word": " the", "probability": 0.71484375}, {"start": 804.98, "end": 805.28, "word": " visitor", "probability": 0.953125}, {"start": 805.28, "end": 805.46, "word": " to", "probability": 0.77197265625}, {"start": 805.46, "end": 805.68, "word": " do", "probability": 0.74072265625}, {"start": 805.68, "end": 805.84, "word": " the", "probability": 0.6845703125}, {"start": 805.84, "end": 805.88, "word": " new", "probability": 0.82666015625}, {"start": 805.88, "end": 806.18, "word": " things", "probability": 0.50048828125}, {"start": 806.18, "end": 806.66, "word": " that", "probability": 0.7333984375}, {"start": 806.66, "end": 806.76, "word": " I", "probability": 0.98828125}, {"start": 806.76, "end": 807.02, "word": " want", "probability": 0.8369140625}, {"start": 807.02, "end": 807.08, "word": " him", "probability": 0.2254638671875}, {"start": 807.08, "end": 807.08, "word": " to", "probability": 0.76806640625}, {"start": 807.08, "end": 808.46, "word": " do", "probability": 0.9267578125}, {"start": 808.46, "end": 808.76, "word": " So", "probability": 0.5380859375}, {"start": 808.76, "end": 809.08, "word": " that", "probability": 0.86962890625}, {"start": 809.08, "end": 809.28, "word": " he", "probability": 0.73583984375}, {"start": 809.28, "end": 809.38, "word": " will", "probability": 0.49951171875}, {"start": 809.38, "end": 809.52, "word": " find", "probability": 0.791015625}, {"start": 809.52, "end": 809.68, "word": " the", "probability": 0.52294921875}, {"start": 809.68, "end": 809.68, "word": " new", "probability": 0.80712890625}, {"start": 809.68, "end": 810.0, "word": " thing,", "probability": 0.72607421875}, {"start": 810.5, "end": 810.58, "word": " where", "probability": 0.60595703125}, {"start": 810.58, "end": 810.58, "word": " will", "probability": 0.41357421875}, {"start": 810.58, "end": 810.58, "word": " his", "probability": 0.297607421875}, {"start": 810.58, "end": 810.88, "word": " code", "probability": 0.87255859375}, {"start": 810.88, "end": 811.6, "word": " go?", "probability": 0.267578125}], "temperature": 1.0}, {"id": 34, "seek": 84128, "start": 812.78, "end": 841.28, "text": "Jewel visitor to put the shape of the gate For example, I want to add a possibility to calculate the area of the shapes For example, we want to create a method called calcarea If I add calcarea like this public void calcarea Who did they hit? All the buildings But no, now I want to create a space calculation Simply, you create a method accept and what does it take?", "tokens": [41, 1023, 338, 28222, 281, 829, 264, 3909, 295, 264, 8539, 1171, 1365, 11, 286, 528, 281, 909, 257, 7959, 281, 8873, 264, 1859, 295, 264, 10854, 1171, 1365, 11, 321, 528, 281, 1884, 257, 3170, 1219, 2104, 5685, 64, 759, 286, 909, 2104, 5685, 64, 411, 341, 1908, 22009, 2104, 5685, 64, 2102, 630, 436, 2045, 30, 1057, 264, 7446, 583, 572, 11, 586, 286, 528, 281, 1884, 257, 1901, 17108, 19596, 11, 291, 1884, 257, 3170, 3241, 293, 437, 775, 309, 747, 30], "avg_logprob": -0.6133721006471057, "compression_ratio": 1.7393364928909953, "no_speech_prob": 2.0563602447509766e-05, "words": [{"start": 812.78, "end": 813.16, "word": "Jewel", "probability": 0.61151123046875}, {"start": 813.16, "end": 813.5, "word": " visitor", "probability": 0.74609375}, {"start": 813.5, "end": 813.76, "word": " to", "probability": 0.041412353515625}, {"start": 813.76, "end": 814.22, "word": " put", "probability": 0.28515625}, {"start": 814.22, "end": 814.56, "word": " the", "probability": 0.305908203125}, {"start": 814.56, "end": 814.88, "word": " shape", "probability": 0.8984375}, {"start": 814.88, "end": 815.0, "word": " of", "probability": 0.2462158203125}, {"start": 815.0, "end": 815.08, "word": " the", "probability": 0.58837890625}, {"start": 815.08, "end": 815.32, "word": " gate", "probability": 0.72705078125}, {"start": 815.32, "end": 816.0, "word": " For", "probability": 0.32421875}, {"start": 816.0, "end": 816.12, "word": " example,", "probability": 0.92138671875}, {"start": 816.2, "end": 816.64, "word": " I", "probability": 0.71875}, {"start": 816.64, "end": 816.84, "word": " want", "probability": 0.5966796875}, {"start": 816.84, "end": 816.9, "word": " to", "probability": 0.9599609375}, {"start": 816.9, "end": 817.28, "word": " add", "probability": 0.86279296875}, {"start": 817.28, "end": 817.78, "word": " a", "probability": 0.467041015625}, {"start": 817.78, "end": 818.22, "word": " possibility", "probability": 0.68994140625}, {"start": 818.22, "end": 818.58, "word": " to", "probability": 0.4990234375}, {"start": 818.58, "end": 819.12, "word": " calculate", "probability": 0.82568359375}, {"start": 819.12, "end": 819.22, "word": " the", "probability": 0.7783203125}, {"start": 819.22, "end": 819.48, "word": " area", "probability": 0.484375}, {"start": 819.48, "end": 819.58, "word": " of", "probability": 0.94921875}, {"start": 819.58, "end": 819.66, "word": " the", "probability": 0.30419921875}, {"start": 819.66, "end": 819.98, "word": " shapes", "probability": 0.5693359375}, {"start": 819.98, "end": 821.46, "word": " For", "probability": 0.57470703125}, {"start": 821.46, "end": 821.56, "word": " example,", "probability": 0.95654296875}, {"start": 821.6, "end": 821.64, "word": " we", "probability": 0.456787109375}, {"start": 821.64, "end": 821.8, "word": " want", "probability": 0.5634765625}, {"start": 821.8, "end": 821.84, "word": " to", "probability": 0.96826171875}, {"start": 821.84, "end": 821.96, "word": " create", "probability": 0.39990234375}, {"start": 821.96, "end": 822.08, "word": " a", "probability": 0.9130859375}, {"start": 822.08, "end": 822.24, "word": " method", "probability": 0.94287109375}, {"start": 822.24, "end": 822.5, "word": " called", "probability": 0.53076171875}, {"start": 822.5, "end": 824.02, "word": " calcarea", "probability": 0.5618489583333334}, {"start": 824.02, "end": 824.94, "word": " If", "probability": 0.2159423828125}, {"start": 824.94, "end": 825.18, "word": " I", "probability": 0.87451171875}, {"start": 825.18, "end": 825.96, "word": " add", "probability": 0.68701171875}, {"start": 825.96, "end": 827.02, "word": " calcarea", "probability": 0.8291015625}, {"start": 827.02, "end": 827.02, "word": " like", "probability": 0.30078125}, {"start": 827.02, "end": 827.26, "word": " this", "probability": 0.71630859375}, {"start": 827.26, "end": 828.68, "word": " public", "probability": 0.405517578125}, {"start": 828.68, "end": 829.08, "word": " void", "probability": 0.94970703125}, {"start": 829.08, "end": 830.34, "word": " calcarea", "probability": 0.9453125}, {"start": 830.34, "end": 831.06, "word": " Who", "probability": 0.04022216796875}, {"start": 831.06, "end": 831.06, "word": " did", "probability": 0.220458984375}, {"start": 831.06, "end": 831.56, "word": " they", "probability": 0.501953125}, {"start": 831.56, "end": 831.56, "word": " hit?", "probability": 0.298583984375}, {"start": 832.94, "end": 833.46, "word": " All", "probability": 0.7060546875}, {"start": 833.46, "end": 833.54, "word": " the", "probability": 0.461181640625}, {"start": 833.54, "end": 833.76, "word": " buildings", "probability": 0.363525390625}, {"start": 833.76, "end": 834.3, "word": " But", "probability": 0.44189453125}, {"start": 834.3, "end": 834.56, "word": " no,", "probability": 0.4443359375}, {"start": 834.7, "end": 835.2, "word": " now", "probability": 0.68115234375}, {"start": 835.2, "end": 835.4, "word": " I", "probability": 0.9609375}, {"start": 835.4, "end": 835.58, "word": " want", "probability": 0.841796875}, {"start": 835.58, "end": 836.56, "word": " to", "probability": 0.96337890625}, {"start": 836.56, "end": 836.84, "word": " create", "probability": 0.7080078125}, {"start": 836.84, "end": 837.0, "word": " a", "probability": 0.8134765625}, {"start": 837.0, "end": 837.52, "word": " space", "probability": 0.296875}, {"start": 837.52, "end": 837.74, "word": " calculation", "probability": 0.70751953125}, {"start": 837.74, "end": 838.62, "word": " Simply,", "probability": 0.135986328125}, {"start": 838.88, "end": 839.18, "word": " you", "probability": 0.70361328125}, {"start": 839.18, "end": 839.38, "word": " create", "probability": 0.45703125}, {"start": 839.38, "end": 839.5, "word": " a", "probability": 0.638671875}, {"start": 839.5, "end": 839.74, "word": " method", "probability": 0.97021484375}, {"start": 839.74, "end": 840.22, "word": " accept", "probability": 0.607421875}, {"start": 840.22, "end": 840.52, "word": " and", "probability": 0.332763671875}, {"start": 840.52, "end": 840.68, "word": " what", "probability": 0.623046875}, {"start": 840.68, "end": 840.68, "word": " does", "probability": 0.56689453125}, {"start": 840.68, "end": 840.8, "word": " it", "probability": 0.476806640625}, {"start": 840.8, "end": 841.28, "word": " take?", "probability": 0.5439453125}], "temperature": 1.0}, {"id": 35, "seek": 85896, "start": 842.1, "end": 858.96, "text": "I visitor. This gate is like we want the sheep to connect to the visitor who calculates the space. And this visitor will receive him through the accept. From the door of the house, I say to him, please come in, and then I greet him.", "tokens": [40, 28222, 13, 639, 8539, 307, 411, 321, 528, 264, 14213, 281, 1745, 281, 264, 28222, 567, 4322, 1024, 264, 1901, 13, 400, 341, 28222, 486, 4774, 796, 807, 264, 3241, 13, 3358, 264, 2853, 295, 264, 1782, 11, 286, 584, 281, 796, 11, 1767, 808, 294, 11, 293, 550, 286, 12044, 796, 13], "avg_logprob": -0.6556818333539096, "compression_ratio": 1.4683544303797469, "no_speech_prob": 2.9027462005615234e-05, "words": [{"start": 842.1, "end": 842.7, "word": "I", "probability": 0.23583984375}, {"start": 842.7, "end": 843.06, "word": " visitor.", "probability": 0.58740234375}, {"start": 843.7, "end": 843.88, "word": " This", "probability": 0.230712890625}, {"start": 843.88, "end": 844.06, "word": " gate", "probability": 0.55859375}, {"start": 844.06, "end": 844.22, "word": " is", "probability": 0.361083984375}, {"start": 844.22, "end": 844.74, "word": " like", "probability": 0.5859375}, {"start": 844.74, "end": 845.34, "word": " we", "probability": 0.1944580078125}, {"start": 845.34, "end": 845.74, "word": " want", "probability": 0.320556640625}, {"start": 845.74, "end": 845.96, "word": " the", "probability": 0.48681640625}, {"start": 845.96, "end": 846.26, "word": " sheep", "probability": 0.92431640625}, {"start": 846.26, "end": 846.46, "word": " to", "probability": 0.9326171875}, {"start": 846.46, "end": 846.7, "word": " connect", "probability": 0.36376953125}, {"start": 846.7, "end": 847.66, "word": " to", "probability": 0.66064453125}, {"start": 847.66, "end": 848.16, "word": " the", "probability": 0.247314453125}, {"start": 848.16, "end": 848.5, "word": " visitor", "probability": 0.92529296875}, {"start": 848.5, "end": 849.0, "word": " who", "probability": 0.408203125}, {"start": 849.0, "end": 849.38, "word": " calculates", "probability": 0.60736083984375}, {"start": 849.38, "end": 850.54, "word": " the", "probability": 0.64794921875}, {"start": 850.54, "end": 850.84, "word": " space.", "probability": 0.352783203125}, {"start": 851.26, "end": 851.68, "word": " And", "probability": 0.54150390625}, {"start": 851.68, "end": 851.88, "word": " this", "probability": 0.7841796875}, {"start": 851.88, "end": 852.26, "word": " visitor", "probability": 0.958984375}, {"start": 852.26, "end": 852.56, "word": " will", "probability": 0.736328125}, {"start": 852.56, "end": 853.16, "word": " receive", "probability": 0.497314453125}, {"start": 853.16, "end": 853.4, "word": " him", "probability": 0.182373046875}, {"start": 853.4, "end": 853.76, "word": " through", "probability": 0.73486328125}, {"start": 853.76, "end": 855.0, "word": " the", "probability": 0.6708984375}, {"start": 855.0, "end": 855.26, "word": " accept.", "probability": 0.2196044921875}, {"start": 855.78, "end": 856.14, "word": " From", "probability": 0.5625}, {"start": 856.14, "end": 856.34, "word": " the", "probability": 0.80908203125}, {"start": 856.34, "end": 856.34, "word": " door", "probability": 0.451904296875}, {"start": 856.34, "end": 856.46, "word": " of", "probability": 0.6259765625}, {"start": 856.46, "end": 856.54, "word": " the", "probability": 0.724609375}, {"start": 856.54, "end": 856.64, "word": " house,", "probability": 0.8017578125}, {"start": 856.72, "end": 856.78, "word": " I", "probability": 0.93212890625}, {"start": 856.78, "end": 856.88, "word": " say", "probability": 0.386962890625}, {"start": 856.88, "end": 856.88, "word": " to", "probability": 0.4130859375}, {"start": 856.88, "end": 857.08, "word": " him,", "probability": 0.828125}, {"start": 857.08, "end": 857.2, "word": " please", "probability": 0.179931640625}, {"start": 857.2, "end": 857.32, "word": " come", "probability": 0.62451171875}, {"start": 857.32, "end": 857.7, "word": " in,", "probability": 0.67236328125}, {"start": 858.06, "end": 858.18, "word": " and", "probability": 0.5537109375}, {"start": 858.18, "end": 858.36, "word": " then", "probability": 0.6083984375}, {"start": 858.36, "end": 858.48, "word": " I", "probability": 0.94580078125}, {"start": 858.48, "end": 858.66, "word": " greet", "probability": 0.344970703125}, {"start": 858.66, "end": 858.96, "word": " him.", "probability": 0.90380859375}], "temperature": 1.0}, {"id": 36, "seek": 88471, "start": 859.63, "end": 884.71, "text": " The shape is to calculate the space it wants and make it what it wants Ok, we are not done yet, did you find it? To try this thing, let's go to the main method And let's try to make objects of type for example circle C1 new circle and give it C1 dot radius for example 10 and then make another object rectangle R1 equal to new", "tokens": [440, 3909, 307, 281, 8873, 264, 1901, 309, 2738, 293, 652, 309, 437, 309, 2738, 3477, 11, 321, 366, 406, 1096, 1939, 11, 630, 291, 915, 309, 30, 1407, 853, 341, 551, 11, 718, 311, 352, 281, 264, 2135, 3170, 400, 718, 311, 853, 281, 652, 6565, 295, 2010, 337, 1365, 6329, 383, 16, 777, 6329, 293, 976, 309, 383, 16, 5893, 15845, 337, 1365, 1266, 293, 550, 652, 1071, 2657, 21930, 497, 16, 2681, 281, 777], "avg_logprob": -0.5685096237903986, "compression_ratio": 1.5721153846153846, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 859.63, "end": 860.15, "word": " The", "probability": 0.1021728515625}, {"start": 860.15, "end": 860.43, "word": " shape", "probability": 0.64013671875}, {"start": 860.43, "end": 860.71, "word": " is", "probability": 0.56884765625}, {"start": 860.71, "end": 861.01, "word": " to", "probability": 0.362548828125}, {"start": 861.01, "end": 861.27, "word": " calculate", "probability": 0.82568359375}, {"start": 861.27, "end": 861.55, "word": " the", "probability": 0.52490234375}, {"start": 861.55, "end": 861.81, "word": " space", "probability": 0.231201171875}, {"start": 861.81, "end": 861.97, "word": " it", "probability": 0.187255859375}, {"start": 861.97, "end": 862.13, "word": " wants", "probability": 0.302734375}, {"start": 862.13, "end": 862.25, "word": " and", "probability": 0.5419921875}, {"start": 862.25, "end": 862.45, "word": " make", "probability": 0.2939453125}, {"start": 862.45, "end": 862.57, "word": " it", "probability": 0.3935546875}, {"start": 862.57, "end": 862.67, "word": " what", "probability": 0.2166748046875}, {"start": 862.67, "end": 862.83, "word": " it", "probability": 0.8896484375}, {"start": 862.83, "end": 862.89, "word": " wants", "probability": 0.81884765625}, {"start": 862.89, "end": 863.57, "word": " Ok,", "probability": 0.1544189453125}, {"start": 863.91, "end": 864.43, "word": " we", "probability": 0.59130859375}, {"start": 864.43, "end": 864.47, "word": " are", "probability": 0.37060546875}, {"start": 864.47, "end": 864.49, "word": " not", "probability": 0.8583984375}, {"start": 864.49, "end": 864.81, "word": " done", "probability": 0.50732421875}, {"start": 864.81, "end": 865.01, "word": " yet,", "probability": 0.81787109375}, {"start": 865.03, "end": 865.17, "word": " did", "probability": 0.2744140625}, {"start": 865.17, "end": 865.17, "word": " you", "probability": 0.96044921875}, {"start": 865.17, "end": 865.39, "word": " find", "probability": 0.5205078125}, {"start": 865.39, "end": 865.71, "word": " it?", "probability": 0.5244140625}, {"start": 865.75, "end": 866.11, "word": " To", "probability": 0.5205078125}, {"start": 866.11, "end": 866.43, "word": " try", "probability": 0.822265625}, {"start": 866.43, "end": 866.59, "word": " this", "probability": 0.86767578125}, {"start": 866.59, "end": 866.87, "word": " thing,", "probability": 0.6513671875}, {"start": 867.83, "end": 868.01, "word": " let's", "probability": 0.657958984375}, {"start": 868.01, "end": 868.19, "word": " go", "probability": 0.55859375}, {"start": 868.19, "end": 868.21, "word": " to", "probability": 0.9208984375}, {"start": 868.21, "end": 868.25, "word": " the", "probability": 0.479736328125}, {"start": 868.25, "end": 868.39, "word": " main", "probability": 0.853515625}, {"start": 868.39, "end": 868.75, "word": " method", "probability": 0.95703125}, {"start": 868.75, "end": 869.61, "word": " And", "probability": 0.456298828125}, {"start": 869.61, "end": 870.51, "word": " let's", "probability": 0.79248046875}, {"start": 870.51, "end": 870.63, "word": " try", "probability": 0.8056640625}, {"start": 870.63, "end": 870.77, "word": " to", "probability": 0.4775390625}, {"start": 870.77, "end": 871.01, "word": " make", "probability": 0.71875}, {"start": 871.01, "end": 871.53, "word": " objects", "probability": 0.892578125}, {"start": 871.53, "end": 871.71, "word": " of", "probability": 0.61279296875}, {"start": 871.71, "end": 872.47, "word": " type", "probability": 0.402099609375}, {"start": 872.47, "end": 872.69, "word": " for", "probability": 0.27880859375}, {"start": 872.69, "end": 872.89, "word": " example", "probability": 0.93310546875}, {"start": 872.89, "end": 873.33, "word": " circle", "probability": 0.7734375}, {"start": 873.33, "end": 873.89, "word": " C1", "probability": 0.615234375}, {"start": 873.89, "end": 874.61, "word": " new", "probability": 0.393798828125}, {"start": 874.61, "end": 875.13, "word": " circle", "probability": 0.83203125}, {"start": 875.13, "end": 876.23, "word": " and", "probability": 0.426025390625}, {"start": 876.23, "end": 876.47, "word": " give", "probability": 0.6171875}, {"start": 876.47, "end": 876.71, "word": " it", "probability": 0.85400390625}, {"start": 876.71, "end": 877.31, "word": " C1", "probability": 0.84326171875}, {"start": 877.31, "end": 877.49, "word": " dot", "probability": 0.4033203125}, {"start": 877.49, "end": 878.05, "word": " radius", "probability": 0.9599609375}, {"start": 878.05, "end": 878.75, "word": " for", "probability": 0.50244140625}, {"start": 878.75, "end": 879.01, "word": " example", "probability": 0.96142578125}, {"start": 879.01, "end": 879.29, "word": " 10", "probability": 0.81396484375}, {"start": 879.29, "end": 880.45, "word": " and", "probability": 0.521484375}, {"start": 880.45, "end": 880.67, "word": " then", "probability": 0.751953125}, {"start": 880.67, "end": 880.93, "word": " make", "probability": 0.634765625}, {"start": 880.93, "end": 881.59, "word": " another", "probability": 0.68017578125}, {"start": 881.59, "end": 881.59, "word": " object", "probability": 0.9208984375}, {"start": 881.59, "end": 882.39, "word": " rectangle", "probability": 0.83935546875}, {"start": 882.39, "end": 883.17, "word": " R1", "probability": 0.970947265625}, {"start": 883.17, "end": 884.27, "word": " equal", "probability": 0.1788330078125}, {"start": 884.27, "end": 884.43, "word": " to", "probability": 0.587890625}, {"start": 884.43, "end": 884.71, "word": " new", "probability": 0.75927734375}], "temperature": 1.0}, {"id": 37, "seek": 91273, "start": 885.95, "end": 912.73, "text": " rectangle and give it r1.width for example 5 and r1.height 10 now of course I can put these shapes in the shape of the shape I put c1 and r1 and then I can say for each shape p is present in shapes okay because you can say p", "tokens": [21930, 293, 976, 309, 367, 16, 13, 21271, 337, 1365, 1025, 293, 367, 16, 13, 675, 397, 1266, 586, 295, 1164, 286, 393, 829, 613, 10854, 294, 264, 3909, 295, 264, 3909, 286, 829, 269, 16, 293, 367, 16, 293, 550, 286, 393, 584, 337, 1184, 3909, 280, 307, 1974, 294, 10854, 1392, 570, 291, 393, 584, 280], "avg_logprob": -0.4586864285549875, "compression_ratio": 1.5845070422535212, "no_speech_prob": 6.139278411865234e-06, "words": [{"start": 885.95, "end": 886.61, "word": " rectangle", "probability": 0.623046875}, {"start": 886.61, "end": 886.87, "word": " and", "probability": 0.70751953125}, {"start": 886.87, "end": 887.13, "word": " give", "probability": 0.4658203125}, {"start": 887.13, "end": 887.45, "word": " it", "probability": 0.76611328125}, {"start": 887.45, "end": 888.01, "word": " r1", "probability": 0.6749267578125}, {"start": 888.01, "end": 889.07, "word": ".width", "probability": 0.89453125}, {"start": 889.07, "end": 889.29, "word": " for", "probability": 0.0970458984375}, {"start": 889.29, "end": 889.63, "word": " example", "probability": 0.9306640625}, {"start": 889.63, "end": 890.11, "word": " 5", "probability": 0.779296875}, {"start": 890.11, "end": 890.99, "word": " and", "probability": 0.81494140625}, {"start": 890.99, "end": 891.57, "word": " r1", "probability": 0.959228515625}, {"start": 891.57, "end": 893.23, "word": ".height", "probability": 0.9283854166666666}, {"start": 893.23, "end": 894.23, "word": " 10", "probability": 0.81201171875}, {"start": 894.23, "end": 897.27, "word": " now", "probability": 0.4716796875}, {"start": 897.27, "end": 897.97, "word": " of", "probability": 0.38671875}, {"start": 897.97, "end": 898.01, "word": " course", "probability": 0.90869140625}, {"start": 898.01, "end": 898.31, "word": " I", "probability": 0.73583984375}, {"start": 898.31, "end": 898.49, "word": " can", "probability": 0.89599609375}, {"start": 898.49, "end": 898.89, "word": " put", "probability": 0.7099609375}, {"start": 898.89, "end": 899.03, "word": " these", "probability": 0.55078125}, {"start": 899.03, "end": 899.39, "word": " shapes", "probability": 0.783203125}, {"start": 899.39, "end": 901.97, "word": " in", "probability": 0.8173828125}, {"start": 901.97, "end": 902.09, "word": " the", "probability": 0.18896484375}, {"start": 902.09, "end": 902.25, "word": " shape", "probability": 0.374755859375}, {"start": 902.25, "end": 902.47, "word": " of", "probability": 0.131103515625}, {"start": 902.47, "end": 902.77, "word": " the", "probability": 0.171142578125}, {"start": 902.77, "end": 902.99, "word": " shape", "probability": 0.6953125}, {"start": 902.99, "end": 903.15, "word": " I", "probability": 0.263916015625}, {"start": 903.15, "end": 903.39, "word": " put", "probability": 0.708984375}, {"start": 903.39, "end": 903.89, "word": " c1", "probability": 0.848876953125}, {"start": 903.89, "end": 904.49, "word": " and", "probability": 0.916015625}, {"start": 904.49, "end": 904.93, "word": " r1", "probability": 0.981689453125}, {"start": 904.93, "end": 905.51, "word": " and", "probability": 0.7158203125}, {"start": 905.51, "end": 905.71, "word": " then", "probability": 0.703125}, {"start": 905.71, "end": 905.85, "word": " I", "probability": 0.94677734375}, {"start": 905.85, "end": 906.01, "word": " can", "probability": 0.90234375}, {"start": 906.01, "end": 906.29, "word": " say", "probability": 0.457275390625}, {"start": 906.29, "end": 906.49, "word": " for", "probability": 0.4404296875}, {"start": 906.49, "end": 906.85, "word": " each", "probability": 0.6943359375}, {"start": 906.85, "end": 907.67, "word": " shape", "probability": 0.87158203125}, {"start": 907.67, "end": 908.13, "word": " p", "probability": 0.43310546875}, {"start": 908.13, "end": 908.85, "word": " is", "probability": 0.51318359375}, {"start": 908.85, "end": 909.19, "word": " present", "probability": 0.67529296875}, {"start": 909.19, "end": 909.35, "word": " in", "probability": 0.69775390625}, {"start": 909.35, "end": 909.91, "word": " shapes", "probability": 0.82275390625}, {"start": 909.91, "end": 911.29, "word": " okay", "probability": 0.1627197265625}, {"start": 911.29, "end": 911.77, "word": " because", "probability": 0.23193359375}, {"start": 911.77, "end": 911.97, "word": " you", "probability": 0.95166015625}, {"start": 911.97, "end": 912.11, "word": " can", "probability": 0.93408203125}, {"start": 912.11, "end": 912.39, "word": " say", "probability": 0.7099609375}, {"start": 912.39, "end": 912.73, "word": " p", "probability": 0.7744140625}], "temperature": 1.0}, {"id": 38, "seek": 93096, "start": 914.2, "end": 930.96, "text": "p.draw because this draw is present in the interface. Ok, we like this gate because we calculate the area of shapes. Ok, to calculate the area of shapes, as we said, the solution that we got used to is to add a method called calc", "tokens": [79, 13, 48848, 570, 341, 2642, 307, 1974, 294, 264, 9226, 13, 3477, 11, 321, 411, 341, 8539, 570, 321, 8873, 264, 1859, 295, 10854, 13, 3477, 11, 281, 8873, 264, 1859, 295, 10854, 11, 382, 321, 848, 11, 264, 3827, 300, 321, 658, 1143, 281, 307, 281, 909, 257, 3170, 1219, 2104, 66], "avg_logprob": -0.5289772445505315, "compression_ratio": 1.6838235294117647, "no_speech_prob": 3.0219554901123047e-05, "words": [{"start": 914.2, "end": 914.46, "word": "p", "probability": 0.474365234375}, {"start": 914.46, "end": 915.0, "word": ".draw", "probability": 0.839599609375}, {"start": 915.0, "end": 915.94, "word": " because", "probability": 0.2685546875}, {"start": 915.94, "end": 916.14, "word": " this", "probability": 0.55712890625}, {"start": 916.14, "end": 916.34, "word": " draw", "probability": 0.58837890625}, {"start": 916.34, "end": 916.44, "word": " is", "probability": 0.69970703125}, {"start": 916.44, "end": 916.76, "word": " present", "probability": 0.32421875}, {"start": 916.76, "end": 917.44, "word": " in", "probability": 0.87548828125}, {"start": 917.44, "end": 917.54, "word": " the", "probability": 0.78662109375}, {"start": 917.54, "end": 917.96, "word": " interface.", "probability": 0.8330078125}, {"start": 918.22, "end": 918.62, "word": " Ok,", "probability": 0.1746826171875}, {"start": 918.68, "end": 918.96, "word": " we", "probability": 0.267333984375}, {"start": 918.96, "end": 918.96, "word": " like", "probability": 0.250244140625}, {"start": 918.96, "end": 919.2, "word": " this", "probability": 0.7861328125}, {"start": 919.2, "end": 919.58, "word": " gate", "probability": 0.796875}, {"start": 919.58, "end": 920.4, "word": " because", "probability": 0.2978515625}, {"start": 920.4, "end": 920.88, "word": " we", "probability": 0.83203125}, {"start": 920.88, "end": 922.0, "word": " calculate", "probability": 0.57177734375}, {"start": 922.0, "end": 922.1, "word": " the", "probability": 0.68701171875}, {"start": 922.1, "end": 922.32, "word": " area", "probability": 0.324462890625}, {"start": 922.32, "end": 922.42, "word": " of", "probability": 0.95556640625}, {"start": 922.42, "end": 922.76, "word": " shapes.", "probability": 0.57421875}, {"start": 923.8, "end": 924.06, "word": " Ok,", "probability": 0.54931640625}, {"start": 924.2, "end": 924.38, "word": " to", "probability": 0.59765625}, {"start": 924.38, "end": 924.68, "word": " calculate", "probability": 0.91943359375}, {"start": 924.68, "end": 924.76, "word": " the", "probability": 0.8681640625}, {"start": 924.76, "end": 924.94, "word": " area", "probability": 0.849609375}, {"start": 924.94, "end": 925.08, "word": " of", "probability": 0.96142578125}, {"start": 925.08, "end": 925.34, "word": " shapes,", "probability": 0.9296875}, {"start": 925.46, "end": 925.5, "word": " as", "probability": 0.7080078125}, {"start": 925.5, "end": 925.66, "word": " we", "probability": 0.6689453125}, {"start": 925.66, "end": 925.86, "word": " said,", "probability": 0.8193359375}, {"start": 926.92, "end": 927.14, "word": " the", "probability": 0.8330078125}, {"start": 927.14, "end": 927.36, "word": " solution", "probability": 0.8369140625}, {"start": 927.36, "end": 927.46, "word": " that", "probability": 0.53857421875}, {"start": 927.46, "end": 927.64, "word": " we", "probability": 0.94384765625}, {"start": 927.64, "end": 927.72, "word": " got", "probability": 0.3095703125}, {"start": 927.72, "end": 928.04, "word": " used", "probability": 0.8701171875}, {"start": 928.04, "end": 928.38, "word": " to", "probability": 0.87255859375}, {"start": 928.38, "end": 928.9, "word": " is", "probability": 0.449462890625}, {"start": 928.9, "end": 929.14, "word": " to", "probability": 0.54345703125}, {"start": 929.14, "end": 929.44, "word": " add", "probability": 0.68359375}, {"start": 929.44, "end": 929.7, "word": " a", "probability": 0.283203125}, {"start": 929.7, "end": 930.18, "word": " method", "probability": 0.91357421875}, {"start": 930.18, "end": 930.44, "word": " called", "probability": 0.484375}, {"start": 930.44, "end": 930.96, "word": " calc", "probability": 0.727783203125}], "temperature": 1.0}, {"id": 39, "seek": 95468, "start": 931.74, "end": 954.68, "text": "Area, and when you add it, it will multiply the classes until you implement them We don't want the classes to multiply the implementation of it How can we make it calculate CalcArea without multiplying it? I'll tell you simply, if you don't modify the shape, go ask a visitor to do this job for you So what are we going to do now? I have an interface called iVisitor, we will make a new class from this iVisitor", "tokens": [32, 12057, 11, 293, 562, 291, 909, 309, 11, 309, 486, 12972, 264, 5359, 1826, 291, 4445, 552, 492, 500, 380, 528, 264, 5359, 281, 12972, 264, 11420, 295, 309, 1012, 393, 321, 652, 309, 8873, 3511, 66, 32, 12057, 1553, 30955, 309, 30, 286, 603, 980, 291, 2935, 11, 498, 291, 500, 380, 16927, 264, 3909, 11, 352, 1029, 257, 28222, 281, 360, 341, 1691, 337, 291, 407, 437, 366, 321, 516, 281, 360, 586, 30, 286, 362, 364, 9226, 1219, 741, 53, 271, 3029, 11, 321, 486, 652, 257, 777, 1508, 490, 341, 741, 53, 271, 3029], "avg_logprob": -0.5118749839067459, "compression_ratio": 1.6983471074380165, "no_speech_prob": 1.9490718841552734e-05, "words": [{"start": 931.7399999999999, "end": 932.18, "word": "Area,", "probability": 0.547607421875}, {"start": 932.64, "end": 933.0, "word": " and", "probability": 0.7119140625}, {"start": 933.0, "end": 933.12, "word": " when", "probability": 0.77197265625}, {"start": 933.12, "end": 933.26, "word": " you", "probability": 0.94140625}, {"start": 933.26, "end": 933.5, "word": " add", "probability": 0.8251953125}, {"start": 933.5, "end": 933.74, "word": " it,", "probability": 0.716796875}, {"start": 933.86, "end": 933.88, "word": " it", "probability": 0.5166015625}, {"start": 933.88, "end": 933.96, "word": " will", "probability": 0.619140625}, {"start": 933.96, "end": 934.22, "word": " multiply", "probability": 0.25341796875}, {"start": 934.22, "end": 934.58, "word": " the", "probability": 0.396728515625}, {"start": 934.58, "end": 934.96, "word": " classes", "probability": 0.90283203125}, {"start": 934.96, "end": 935.18, "word": " until", "probability": 0.65576171875}, {"start": 935.18, "end": 935.48, "word": " you", "probability": 0.80078125}, {"start": 935.48, "end": 935.92, "word": " implement", "probability": 0.39892578125}, {"start": 935.92, "end": 936.44, "word": " them", "probability": 0.4677734375}, {"start": 936.44, "end": 937.02, "word": " We", "probability": 0.468994140625}, {"start": 937.02, "end": 937.14, "word": " don't", "probability": 0.87744140625}, {"start": 937.14, "end": 937.36, "word": " want", "probability": 0.85986328125}, {"start": 937.36, "end": 937.48, "word": " the", "probability": 0.3974609375}, {"start": 937.48, "end": 937.74, "word": " classes", "probability": 0.89306640625}, {"start": 937.74, "end": 937.92, "word": " to", "probability": 0.78271484375}, {"start": 937.92, "end": 938.1, "word": " multiply", "probability": 0.91162109375}, {"start": 938.1, "end": 938.22, "word": " the", "probability": 0.281494140625}, {"start": 938.22, "end": 938.74, "word": " implementation", "probability": 0.7578125}, {"start": 938.74, "end": 938.96, "word": " of", "probability": 0.40966796875}, {"start": 938.96, "end": 939.08, "word": " it", "probability": 0.266357421875}, {"start": 939.08, "end": 939.5, "word": " How", "probability": 0.2420654296875}, {"start": 939.5, "end": 939.68, "word": " can", "probability": 0.57421875}, {"start": 939.68, "end": 939.8, "word": " we", "probability": 0.4501953125}, {"start": 939.8, "end": 939.98, "word": " make", "probability": 0.54248046875}, {"start": 939.98, "end": 940.2, "word": " it", "probability": 0.74169921875}, {"start": 940.2, "end": 940.54, "word": " calculate", "probability": 0.6318359375}, {"start": 940.54, "end": 941.4, "word": " CalcArea", "probability": 0.56048583984375}, {"start": 941.4, "end": 941.62, "word": " without", "probability": 0.77001953125}, {"start": 941.62, "end": 942.02, "word": " multiplying", "probability": 0.8486328125}, {"start": 942.02, "end": 942.26, "word": " it?", "probability": 0.4296875}, {"start": 942.62, "end": 942.84, "word": " I'll", "probability": 0.3865966796875}, {"start": 942.84, "end": 942.92, "word": " tell", "probability": 0.5830078125}, {"start": 942.92, "end": 943.0, "word": " you", "probability": 0.96484375}, {"start": 943.0, "end": 943.36, "word": " simply,", "probability": 0.311767578125}, {"start": 943.54, "end": 943.68, "word": " if", "probability": 0.2919921875}, {"start": 943.68, "end": 943.78, "word": " you", "probability": 0.95556640625}, {"start": 943.78, "end": 943.94, "word": " don't", "probability": 0.837890625}, {"start": 943.94, "end": 944.32, "word": " modify", "probability": 0.33056640625}, {"start": 944.32, "end": 944.58, "word": " the", "probability": 0.6552734375}, {"start": 944.58, "end": 944.9, "word": " shape,", "probability": 0.8984375}, {"start": 945.78, "end": 946.04, "word": " go", "probability": 0.60205078125}, {"start": 946.04, "end": 946.5, "word": " ask", "probability": 0.4013671875}, {"start": 946.5, "end": 946.62, "word": " a", "probability": 0.1922607421875}, {"start": 946.62, "end": 947.3, "word": " visitor", "probability": 0.77294921875}, {"start": 947.3, "end": 947.48, "word": " to", "probability": 0.75927734375}, {"start": 947.48, "end": 947.68, "word": " do", "probability": 0.8623046875}, {"start": 947.68, "end": 947.88, "word": " this", "probability": 0.5966796875}, {"start": 947.88, "end": 948.14, "word": " job", "probability": 0.330078125}, {"start": 948.14, "end": 948.74, "word": " for", "probability": 0.693359375}, {"start": 948.74, "end": 948.74, "word": " you", "probability": 0.96630859375}, {"start": 948.74, "end": 949.02, "word": " So", "probability": 0.269287109375}, {"start": 949.02, "end": 949.16, "word": " what", "probability": 0.68603515625}, {"start": 949.16, "end": 949.28, "word": " are", "probability": 0.5400390625}, {"start": 949.28, "end": 949.34, "word": " we", "probability": 0.953125}, {"start": 949.34, "end": 949.36, "word": " going", "probability": 0.853515625}, {"start": 949.36, "end": 949.36, "word": " to", "probability": 0.97265625}, {"start": 949.36, "end": 949.52, "word": " do", "probability": 0.94140625}, {"start": 949.52, "end": 949.66, "word": " now?", "probability": 0.164794921875}, {"start": 949.9, "end": 950.2, "word": " I", "probability": 0.8623046875}, {"start": 950.2, "end": 950.44, "word": " have", "probability": 0.9072265625}, {"start": 950.44, "end": 950.56, "word": " an", "probability": 0.84765625}, {"start": 950.56, "end": 950.94, "word": " interface", "probability": 0.88720703125}, {"start": 950.94, "end": 951.22, "word": " called", "probability": 0.794921875}, {"start": 951.22, "end": 951.94, "word": " iVisitor,", "probability": 0.76165771484375}, {"start": 952.68, "end": 952.88, "word": " we", "probability": 0.60791015625}, {"start": 952.88, "end": 952.92, "word": " will", "probability": 0.296142578125}, {"start": 952.92, "end": 953.14, "word": " make", "probability": 0.455322265625}, {"start": 953.14, "end": 953.32, "word": " a", "probability": 0.9638671875}, {"start": 953.32, "end": 953.32, "word": " new", "probability": 0.908203125}, {"start": 953.32, "end": 953.66, "word": " class", "probability": 0.9697265625}, {"start": 953.66, "end": 954.12, "word": " from", "probability": 0.68701171875}, {"start": 954.12, "end": 954.24, "word": " this", "probability": 0.802734375}, {"start": 954.24, "end": 954.68, "word": " iVisitor", "probability": 0.9296875}], "temperature": 1.0}, {"id": 40, "seek": 98199, "start": 955.65, "end": 981.99, "text": "It is the one that calculates the dimensions. What can we call this visitor for example? Area visitor. This visitor is specialized in calculating dimensions. Okay? And we say to him, of course, so that I can send him to implement iVisitor. Okay? And did you get it? He said, yes, simply. This visitor is specialized in dimensions.", "tokens": [3522, 307, 264, 472, 300, 4322, 1024, 264, 12819, 13, 708, 393, 321, 818, 341, 28222, 337, 1365, 30, 19405, 28222, 13, 639, 28222, 307, 19813, 294, 28258, 12819, 13, 1033, 30, 400, 321, 584, 281, 796, 11, 295, 1164, 11, 370, 300, 286, 393, 2845, 796, 281, 4445, 741, 53, 271, 3029, 13, 1033, 30, 400, 630, 291, 483, 309, 30, 634, 848, 11, 2086, 11, 2935, 13, 639, 28222, 307, 19813, 294, 12819, 13], "avg_logprob": -0.5836039053929316, "compression_ratio": 1.8032786885245902, "no_speech_prob": 7.092952728271484e-06, "words": [{"start": 955.65, "end": 955.93, "word": "It", "probability": 0.1572265625}, {"start": 955.93, "end": 956.01, "word": " is", "probability": 0.3623046875}, {"start": 956.01, "end": 956.15, "word": " the", "probability": 0.302490234375}, {"start": 956.15, "end": 956.15, "word": " one", "probability": 0.5224609375}, {"start": 956.15, "end": 956.19, "word": " that", "probability": 0.49365234375}, {"start": 956.19, "end": 956.61, "word": " calculates", "probability": 0.7041015625}, {"start": 956.61, "end": 957.61, "word": " the", "probability": 0.380859375}, {"start": 957.61, "end": 957.89, "word": " dimensions.", "probability": 0.318603515625}, {"start": 958.29, "end": 958.75, "word": " What", "probability": 0.337646484375}, {"start": 958.75, "end": 958.89, "word": " can", "probability": 0.30859375}, {"start": 958.89, "end": 958.97, "word": " we", "probability": 0.791015625}, {"start": 958.97, "end": 959.19, "word": " call", "probability": 0.68994140625}, {"start": 959.19, "end": 959.73, "word": " this", "probability": 0.6474609375}, {"start": 959.73, "end": 960.05, "word": " visitor", "probability": 0.892578125}, {"start": 960.05, "end": 960.33, "word": " for", "probability": 0.244873046875}, {"start": 960.33, "end": 960.33, "word": " example?", "probability": 0.92919921875}, {"start": 960.47, "end": 960.91, "word": " Area", "probability": 0.68310546875}, {"start": 960.91, "end": 961.59, "word": " visitor.", "probability": 0.78955078125}, {"start": 962.37, "end": 962.73, "word": " This", "probability": 0.253173828125}, {"start": 962.73, "end": 963.25, "word": " visitor", "probability": 0.5556640625}, {"start": 963.25, "end": 963.37, "word": " is", "probability": 0.51220703125}, {"start": 963.37, "end": 963.81, "word": " specialized", "probability": 0.86376953125}, {"start": 963.81, "end": 964.07, "word": " in", "probability": 0.8515625}, {"start": 964.07, "end": 966.07, "word": " calculating", "probability": 0.51904296875}, {"start": 966.07, "end": 966.53, "word": " dimensions.", "probability": 0.74658203125}, {"start": 967.63, "end": 967.81, "word": " Okay?", "probability": 0.1171875}, {"start": 968.03, "end": 968.27, "word": " And", "probability": 0.412109375}, {"start": 968.27, "end": 968.37, "word": " we", "probability": 0.623046875}, {"start": 968.37, "end": 968.53, "word": " say", "probability": 0.2425537109375}, {"start": 968.53, "end": 968.69, "word": " to", "probability": 0.26513671875}, {"start": 968.69, "end": 968.69, "word": " him,", "probability": 0.343017578125}, {"start": 968.83, "end": 968.85, "word": " of", "probability": 0.418212890625}, {"start": 968.85, "end": 969.03, "word": " course,", "probability": 0.9599609375}, {"start": 969.21, "end": 969.39, "word": " so", "probability": 0.46533203125}, {"start": 969.39, "end": 969.69, "word": " that", "probability": 0.7138671875}, {"start": 969.69, "end": 970.09, "word": " I", "probability": 0.9052734375}, {"start": 970.09, "end": 970.29, "word": " can", "probability": 0.90283203125}, {"start": 970.29, "end": 970.59, "word": " send", "probability": 0.69775390625}, {"start": 970.59, "end": 971.43, "word": " him", "probability": 0.80126953125}, {"start": 971.43, "end": 971.61, "word": " to", "probability": 0.451904296875}, {"start": 971.61, "end": 972.29, "word": " implement", "probability": 0.6025390625}, {"start": 972.29, "end": 974.55, "word": " iVisitor.", "probability": 0.69146728515625}, {"start": 977.09, "end": 977.61, "word": " Okay?", "probability": 0.56982421875}, {"start": 977.95, "end": 978.23, "word": " And", "probability": 0.61865234375}, {"start": 978.23, "end": 978.33, "word": " did", "probability": 0.312744140625}, {"start": 978.33, "end": 978.69, "word": " you", "probability": 0.378662109375}, {"start": 978.69, "end": 978.69, "word": " get", "probability": 0.39208984375}, {"start": 978.69, "end": 978.75, "word": " it?", "probability": 0.73779296875}, {"start": 978.93, "end": 979.19, "word": " He", "probability": 0.740234375}, {"start": 979.19, "end": 979.33, "word": " said,", "probability": 0.5234375}, {"start": 979.49, "end": 979.59, "word": " yes,", "probability": 0.402587890625}, {"start": 979.71, "end": 979.83, "word": " simply.", "probability": 0.349609375}, {"start": 979.95, "end": 980.21, "word": " This", "probability": 0.8671875}, {"start": 980.21, "end": 980.51, "word": " visitor", "probability": 0.9375}, {"start": 980.51, "end": 980.63, "word": " is", "probability": 0.77978515625}, {"start": 980.63, "end": 981.09, "word": " specialized", "probability": 0.98828125}, {"start": 981.09, "end": 981.33, "word": " in", "probability": 0.93310546875}, {"start": 981.33, "end": 981.99, "word": " dimensions.", "probability": 0.8974609375}], "temperature": 1.0}, {"id": 41, "seek": 100568, "start": 982.88, "end": 1005.68, "text": "It serves a lot of people and fixes chairs and cupboards. It fixes whatever it wants. Okay? It is a carpenter. It is specialized in calculating areas. It calculates the area of the circle, rectangle and whatever shape you want. So it comes to the circle, for example, it wants to calculate its area. It says, for example, system.out.println. Where did I turn it on? In the class called AreaVisitor.", "tokens": [3522, 13451, 257, 688, 295, 561, 293, 32539, 18299, 293, 4414, 17228, 13, 467, 32539, 2035, 309, 2738, 13, 1033, 30, 467, 307, 257, 26103, 14278, 13, 467, 307, 19813, 294, 28258, 3179, 13, 467, 4322, 1024, 264, 1859, 295, 264, 6329, 11, 21930, 293, 2035, 3909, 291, 528, 13, 407, 309, 1487, 281, 264, 6329, 11, 337, 1365, 11, 309, 2738, 281, 8873, 1080, 1859, 13, 467, 1619, 11, 337, 1365, 11, 1185, 13, 346, 13, 14030, 75, 77, 13, 2305, 630, 286, 1261, 309, 322, 30, 682, 264, 1508, 1219, 19405, 53, 271, 3029, 13], "avg_logprob": -0.5031887870662066, "compression_ratio": 1.7081545064377683, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 982.88, "end": 983.08, "word": "It", "probability": 0.1607666015625}, {"start": 983.08, "end": 983.34, "word": " serves", "probability": 0.1961669921875}, {"start": 983.34, "end": 983.52, "word": " a", "probability": 0.223388671875}, {"start": 983.52, "end": 983.94, "word": " lot", "probability": 0.9326171875}, {"start": 983.94, "end": 984.04, "word": " of", "probability": 0.95263671875}, {"start": 984.04, "end": 984.04, "word": " people", "probability": 0.9287109375}, {"start": 984.04, "end": 985.04, "word": " and", "probability": 0.485595703125}, {"start": 985.04, "end": 985.34, "word": " fixes", "probability": 0.4091796875}, {"start": 985.34, "end": 985.88, "word": " chairs", "probability": 0.28857421875}, {"start": 985.88, "end": 986.06, "word": " and", "probability": 0.69580078125}, {"start": 986.06, "end": 987.7, "word": " cupboards.", "probability": 0.34442138671875}, {"start": 987.86, "end": 987.86, "word": " It", "probability": 0.471923828125}, {"start": 987.86, "end": 988.02, "word": " fixes", "probability": 0.6123046875}, {"start": 988.02, "end": 988.16, "word": " whatever", "probability": 0.59423828125}, {"start": 988.16, "end": 988.4, "word": " it", "probability": 0.73193359375}, {"start": 988.4, "end": 988.4, "word": " wants.", "probability": 0.59716796875}, {"start": 988.8, "end": 989.02, "word": " Okay?", "probability": 0.1412353515625}, {"start": 989.1, "end": 989.22, "word": " It", "probability": 0.429931640625}, {"start": 989.22, "end": 989.3, "word": " is", "probability": 0.541015625}, {"start": 989.3, "end": 989.58, "word": " a", "probability": 0.81005859375}, {"start": 989.58, "end": 989.86, "word": " carpenter.", "probability": 0.55975341796875}, {"start": 990.66, "end": 991.02, "word": " It", "probability": 0.6884765625}, {"start": 991.02, "end": 991.08, "word": " is", "probability": 0.77099609375}, {"start": 991.08, "end": 991.92, "word": " specialized", "probability": 0.759765625}, {"start": 991.92, "end": 992.14, "word": " in", "probability": 0.91748046875}, {"start": 992.14, "end": 992.4, "word": " calculating", "probability": 0.304443359375}, {"start": 992.4, "end": 992.76, "word": " areas.", "probability": 0.30419921875}, {"start": 993.28, "end": 993.64, "word": " It", "probability": 0.91015625}, {"start": 993.64, "end": 993.84, "word": " calculates", "probability": 0.962646484375}, {"start": 993.84, "end": 993.92, "word": " the", "probability": 0.51513671875}, {"start": 993.92, "end": 994.16, "word": " area", "probability": 0.7099609375}, {"start": 994.16, "end": 994.3, "word": " of", "probability": 0.94677734375}, {"start": 994.3, "end": 994.38, "word": " the", "probability": 0.386962890625}, {"start": 994.38, "end": 994.7, "word": " circle,", "probability": 0.9345703125}, {"start": 994.86, "end": 995.34, "word": " rectangle", "probability": 0.84228515625}, {"start": 995.34, "end": 995.48, "word": " and", "probability": 0.40625}, {"start": 995.48, "end": 995.64, "word": " whatever", "probability": 0.5888671875}, {"start": 995.64, "end": 996.12, "word": " shape", "probability": 0.57763671875}, {"start": 996.12, "end": 996.72, "word": " you", "probability": 0.81298828125}, {"start": 996.72, "end": 996.96, "word": " want.", "probability": 0.7626953125}, {"start": 997.3, "end": 997.66, "word": " So", "probability": 0.5380859375}, {"start": 997.66, "end": 997.78, "word": " it", "probability": 0.498046875}, {"start": 997.78, "end": 997.88, "word": " comes", "probability": 0.697265625}, {"start": 997.88, "end": 997.98, "word": " to", "probability": 0.9296875}, {"start": 997.98, "end": 998.1, "word": " the", "probability": 0.86181640625}, {"start": 998.1, "end": 998.38, "word": " circle,", "probability": 0.9619140625}, {"start": 998.48, "end": 998.56, "word": " for", "probability": 0.81884765625}, {"start": 998.56, "end": 998.64, "word": " example,", "probability": 0.94775390625}, {"start": 998.66, "end": 998.76, "word": " it", "probability": 0.5830078125}, {"start": 998.76, "end": 998.86, "word": " wants", "probability": 0.521484375}, {"start": 998.86, "end": 998.9, "word": " to", "probability": 0.9697265625}, {"start": 998.9, "end": 999.04, "word": " calculate", "probability": 0.90234375}, {"start": 999.04, "end": 999.16, "word": " its", "probability": 0.80078125}, {"start": 999.16, "end": 999.44, "word": " area.", "probability": 0.8935546875}, {"start": 999.82, "end": 1000.08, "word": " It", "probability": 0.7392578125}, {"start": 1000.08, "end": 1000.22, "word": " says,", "probability": 0.71240234375}, {"start": 1000.3, "end": 1000.38, "word": " for", "probability": 0.83154296875}, {"start": 1000.38, "end": 1000.5, "word": " example,", "probability": 0.96337890625}, {"start": 1000.58, "end": 1000.92, "word": " system", "probability": 0.79345703125}, {"start": 1000.92, "end": 1001.5, "word": ".out", "probability": 0.8046875}, {"start": 1001.5, "end": 1002.14, "word": ".println.", "probability": 0.895263671875}, {"start": 1002.18, "end": 1002.36, "word": " Where", "probability": 0.54248046875}, {"start": 1002.36, "end": 1002.48, "word": " did", "probability": 0.669921875}, {"start": 1002.48, "end": 1002.48, "word": " I", "probability": 0.9453125}, {"start": 1002.48, "end": 1002.66, "word": " turn", "probability": 0.3818359375}, {"start": 1002.66, "end": 1002.84, "word": " it", "probability": 0.7880859375}, {"start": 1002.84, "end": 1002.84, "word": " on?", "probability": 0.947265625}, {"start": 1003.52, "end": 1003.88, "word": " In", "probability": 0.441162109375}, {"start": 1003.88, "end": 1004.02, "word": " the", "probability": 0.82568359375}, {"start": 1004.02, "end": 1004.48, "word": " class", "probability": 0.95263671875}, {"start": 1004.48, "end": 1004.9, "word": " called", "probability": 0.68603515625}, {"start": 1004.9, "end": 1005.68, "word": " AreaVisitor.", "probability": 0.71441650390625}], "temperature": 1.0}, {"id": 42, "seek": 103142, "start": 1006.36, "end": 1031.42, "text": " it needs to calculate math.pi x c.radius x c.radius in rectangle system.out.println r.width x r.height this is the visitor that I will use to do what I want", "tokens": [309, 2203, 281, 8873, 5221, 13, 22630, 2031, 269, 13, 6206, 4872, 2031, 269, 13, 6206, 4872, 294, 21930, 1185, 13, 346, 13, 14030, 75, 77, 367, 13, 21271, 2031, 367, 13, 675, 397, 341, 307, 264, 28222, 300, 286, 486, 764, 281, 360, 437, 286, 528], "avg_logprob": -0.3385416554907958, "compression_ratio": 1.353448275862069, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1006.36, "end": 1007.26, "word": " it", "probability": 0.136474609375}, {"start": 1007.26, "end": 1007.56, "word": " needs", "probability": 0.1585693359375}, {"start": 1007.56, "end": 1007.96, "word": " to", "probability": 0.88916015625}, {"start": 1007.96, "end": 1008.24, "word": " calculate", "probability": 0.75390625}, {"start": 1008.24, "end": 1008.64, "word": " math", "probability": 0.376220703125}, {"start": 1008.64, "end": 1009.86, "word": ".pi", "probability": 0.5596923828125}, {"start": 1009.86, "end": 1011.08, "word": " x", "probability": 0.11541748046875}, {"start": 1011.08, "end": 1011.74, "word": " c", "probability": 0.8896484375}, {"start": 1011.74, "end": 1012.56, "word": ".radius", "probability": 0.9427083333333334}, {"start": 1012.56, "end": 1013.24, "word": " x", "probability": 0.95849609375}, {"start": 1013.24, "end": 1013.68, "word": " c", "probability": 0.9912109375}, {"start": 1013.68, "end": 1014.94, "word": ".radius", "probability": 0.9801432291666666}, {"start": 1014.94, "end": 1016.46, "word": " in", "probability": 0.521484375}, {"start": 1016.46, "end": 1017.04, "word": " rectangle", "probability": 0.8056640625}, {"start": 1017.04, "end": 1017.86, "word": " system", "probability": 0.8662109375}, {"start": 1017.86, "end": 1019.06, "word": ".out", "probability": 0.955322265625}, {"start": 1019.06, "end": 1020.12, "word": ".println", "probability": 0.9774169921875}, {"start": 1020.12, "end": 1022.42, "word": " r", "probability": 0.34912109375}, {"start": 1022.42, "end": 1023.0, "word": ".width", "probability": 0.98193359375}, {"start": 1023.0, "end": 1023.7, "word": " x", "probability": 0.93505859375}, {"start": 1023.7, "end": 1024.46, "word": " r", "probability": 0.99658203125}, {"start": 1024.46, "end": 1025.94, "word": ".height", "probability": 0.9549153645833334}, {"start": 1025.94, "end": 1027.32, "word": " this", "probability": 0.415283203125}, {"start": 1027.32, "end": 1027.42, "word": " is", "probability": 0.339599609375}, {"start": 1027.42, "end": 1027.5, "word": " the", "probability": 0.7490234375}, {"start": 1027.5, "end": 1027.88, "word": " visitor", "probability": 0.92724609375}, {"start": 1027.88, "end": 1028.42, "word": " that", "probability": 0.51904296875}, {"start": 1028.42, "end": 1028.6, "word": " I", "probability": 0.6650390625}, {"start": 1028.6, "end": 1028.76, "word": " will", "probability": 0.54345703125}, {"start": 1028.76, "end": 1029.08, "word": " use", "probability": 0.73095703125}, {"start": 1029.08, "end": 1030.5, "word": " to", "probability": 0.810546875}, {"start": 1030.5, "end": 1030.78, "word": " do", "probability": 0.75927734375}, {"start": 1030.78, "end": 1031.12, "word": " what", "probability": 0.2861328125}, {"start": 1031.12, "end": 1031.28, "word": " I", "probability": 0.69140625}, {"start": 1031.28, "end": 1031.42, "word": " want", "probability": 0.69677734375}], "temperature": 1.0}, {"id": 43, "seek": 106036, "start": 1032.51, "end": 1060.37, "text": "Okay, I haven't used this class yet Where will I use it? In the main? I will go to the gate and before this loop I will create an object from area visitor I will call it av you saw new area visitor and then when I come to make a loop on shapes I draw and then I go to the shape and I say what? accept and I send it to whom?", "tokens": [8297, 11, 286, 2378, 380, 1143, 341, 1508, 1939, 2305, 486, 286, 764, 309, 30, 682, 264, 2135, 30, 286, 486, 352, 281, 264, 8539, 293, 949, 341, 6367, 286, 486, 1884, 364, 2657, 490, 1859, 28222, 286, 486, 818, 309, 1305, 291, 1866, 777, 1859, 28222, 293, 550, 562, 286, 808, 281, 652, 257, 6367, 322, 10854, 286, 2642, 293, 550, 286, 352, 281, 264, 3909, 293, 286, 584, 437, 30, 3241, 293, 286, 2845, 309, 281, 7101, 30], "avg_logprob": -0.47299382127361533, "compression_ratio": 1.6822916666666667, "no_speech_prob": 0.0, "words": [{"start": 1032.51, "end": 1032.81, "word": "Okay,", "probability": 0.19140625}, {"start": 1033.05, "end": 1033.33, "word": " I", "probability": 0.66552734375}, {"start": 1033.33, "end": 1033.33, "word": " haven't", "probability": 0.6693115234375}, {"start": 1033.33, "end": 1033.33, "word": " used", "probability": 0.85986328125}, {"start": 1033.33, "end": 1033.69, "word": " this", "probability": 0.83349609375}, {"start": 1033.69, "end": 1034.01, "word": " class", "probability": 0.9453125}, {"start": 1034.01, "end": 1034.91, "word": " yet", "probability": 0.89697265625}, {"start": 1034.91, "end": 1035.47, "word": " Where", "probability": 0.25830078125}, {"start": 1035.47, "end": 1035.57, "word": " will", "probability": 0.421875}, {"start": 1035.57, "end": 1035.65, "word": " I", "probability": 0.94482421875}, {"start": 1035.65, "end": 1035.87, "word": " use", "probability": 0.89794921875}, {"start": 1035.87, "end": 1036.01, "word": " it?", "probability": 0.873046875}, {"start": 1036.09, "end": 1036.15, "word": " In", "probability": 0.6669921875}, {"start": 1036.15, "end": 1036.23, "word": " the", "probability": 0.5517578125}, {"start": 1036.23, "end": 1036.43, "word": " main?", "probability": 0.82373046875}, {"start": 1036.89, "end": 1037.33, "word": " I", "probability": 0.9140625}, {"start": 1037.33, "end": 1037.39, "word": " will", "probability": 0.6171875}, {"start": 1037.39, "end": 1037.53, "word": " go", "probability": 0.83544921875}, {"start": 1037.53, "end": 1037.63, "word": " to", "probability": 0.8564453125}, {"start": 1037.63, "end": 1037.69, "word": " the", "probability": 0.66650390625}, {"start": 1037.69, "end": 1038.03, "word": " gate", "probability": 0.75146484375}, {"start": 1038.03, "end": 1038.53, "word": " and", "probability": 0.2373046875}, {"start": 1038.53, "end": 1038.75, "word": " before", "probability": 0.6005859375}, {"start": 1038.75, "end": 1038.89, "word": " this", "probability": 0.70654296875}, {"start": 1038.89, "end": 1039.11, "word": " loop", "probability": 0.9658203125}, {"start": 1039.11, "end": 1041.83, "word": " I", "probability": 0.7685546875}, {"start": 1041.83, "end": 1041.93, "word": " will", "probability": 0.409423828125}, {"start": 1041.93, "end": 1042.09, "word": " create", "probability": 0.47265625}, {"start": 1042.09, "end": 1042.25, "word": " an", "probability": 0.7275390625}, {"start": 1042.25, "end": 1042.51, "word": " object", "probability": 0.95849609375}, {"start": 1042.51, "end": 1042.81, "word": " from", "probability": 0.6416015625}, {"start": 1042.81, "end": 1043.31, "word": " area", "probability": 0.49853515625}, {"start": 1043.31, "end": 1043.71, "word": " visitor", "probability": 0.77734375}, {"start": 1043.71, "end": 1044.13, "word": " I", "probability": 0.28564453125}, {"start": 1044.13, "end": 1044.21, "word": " will", "probability": 0.80322265625}, {"start": 1044.21, "end": 1044.39, "word": " call", "probability": 0.5439453125}, {"start": 1044.39, "end": 1044.49, "word": " it", "probability": 0.8720703125}, {"start": 1044.49, "end": 1044.81, "word": " av", "probability": 0.364990234375}, {"start": 1044.81, "end": 1045.81, "word": " you", "probability": 0.4921875}, {"start": 1045.81, "end": 1046.03, "word": " saw", "probability": 0.437744140625}, {"start": 1046.03, "end": 1046.43, "word": " new", "probability": 0.78125}, {"start": 1046.43, "end": 1047.73, "word": " area", "probability": 0.7861328125}, {"start": 1047.73, "end": 1048.93, "word": " visitor", "probability": 0.87744140625}, {"start": 1048.93, "end": 1051.29, "word": " and", "probability": 0.4462890625}, {"start": 1051.29, "end": 1051.69, "word": " then", "probability": 0.66748046875}, {"start": 1051.69, "end": 1052.15, "word": " when", "probability": 0.7490234375}, {"start": 1052.15, "end": 1052.27, "word": " I", "probability": 0.68896484375}, {"start": 1052.27, "end": 1052.41, "word": " come", "probability": 0.281982421875}, {"start": 1052.41, "end": 1052.47, "word": " to", "probability": 0.458740234375}, {"start": 1052.47, "end": 1052.61, "word": " make", "probability": 0.364990234375}, {"start": 1052.61, "end": 1052.77, "word": " a", "probability": 0.78759765625}, {"start": 1052.77, "end": 1052.93, "word": " loop", "probability": 0.9658203125}, {"start": 1052.93, "end": 1053.09, "word": " on", "probability": 0.76416015625}, {"start": 1053.09, "end": 1053.55, "word": " shapes", "probability": 0.489013671875}, {"start": 1053.55, "end": 1054.37, "word": " I", "probability": 0.8798828125}, {"start": 1054.37, "end": 1054.57, "word": " draw", "probability": 0.1025390625}, {"start": 1054.57, "end": 1055.03, "word": " and", "probability": 0.297607421875}, {"start": 1055.03, "end": 1055.25, "word": " then", "probability": 0.55615234375}, {"start": 1055.25, "end": 1055.37, "word": " I", "probability": 0.71923828125}, {"start": 1055.37, "end": 1055.47, "word": " go", "probability": 0.87939453125}, {"start": 1055.47, "end": 1055.59, "word": " to", "probability": 0.9453125}, {"start": 1055.59, "end": 1055.71, "word": " the", "probability": 0.5830078125}, {"start": 1055.71, "end": 1056.01, "word": " shape", "probability": 0.8662109375}, {"start": 1056.01, "end": 1056.59, "word": " and", "probability": 0.8134765625}, {"start": 1056.59, "end": 1056.67, "word": " I", "probability": 0.5078125}, {"start": 1056.67, "end": 1056.81, "word": " say", "probability": 0.52001953125}, {"start": 1056.81, "end": 1057.29, "word": " what?", "probability": 0.5361328125}, {"start": 1058.21, "end": 1058.65, "word": " accept", "probability": 0.65478515625}, {"start": 1058.65, "end": 1059.67, "word": " and", "probability": 0.7451171875}, {"start": 1059.67, "end": 1059.79, "word": " I", "probability": 0.6630859375}, {"start": 1059.79, "end": 1059.99, "word": " send", "probability": 0.440673828125}, {"start": 1059.99, "end": 1060.19, "word": " it", "probability": 0.78759765625}, {"start": 1060.19, "end": 1060.23, "word": " to", "probability": 0.90625}, {"start": 1060.23, "end": 1060.37, "word": " whom?", "probability": 0.712890625}], "temperature": 1.0}, {"id": 44, "seek": 108200, "start": 1061.72, "end": 1082.0, "text": "AV is Area Visitor Let's see what will happen to this gate This gate does not rotate and execute accept This gate's first shape is circle So it goes to class circle and executes this accept What is this accept?", "tokens": [32, 53, 307, 19405, 10410, 3029, 961, 311, 536, 437, 486, 1051, 281, 341, 8539, 639, 8539, 775, 406, 13121, 293, 14483, 3241, 639, 8539, 311, 700, 3909, 307, 6329, 407, 309, 1709, 281, 1508, 6329, 293, 4454, 1819, 341, 3241, 708, 307, 341, 3241, 30], "avg_logprob": -0.6961436297031159, "compression_ratio": 1.6030534351145038, "no_speech_prob": 1.817941665649414e-05, "words": [{"start": 1061.72, "end": 1062.26, "word": "AV", "probability": 0.43450927734375}, {"start": 1062.26, "end": 1062.6, "word": " is", "probability": 0.1456298828125}, {"start": 1062.6, "end": 1062.88, "word": " Area", "probability": 0.43310546875}, {"start": 1062.88, "end": 1064.0, "word": " Visitor", "probability": 0.835205078125}, {"start": 1064.0, "end": 1067.2, "word": " Let's", "probability": 0.49761962890625}, {"start": 1067.2, "end": 1067.34, "word": " see", "probability": 0.76025390625}, {"start": 1067.34, "end": 1067.54, "word": " what", "probability": 0.9091796875}, {"start": 1067.54, "end": 1067.68, "word": " will", "probability": 0.338623046875}, {"start": 1067.68, "end": 1067.92, "word": " happen", "probability": 0.88623046875}, {"start": 1067.92, "end": 1068.02, "word": " to", "probability": 0.09075927734375}, {"start": 1068.02, "end": 1068.12, "word": " this", "probability": 0.65576171875}, {"start": 1068.12, "end": 1068.32, "word": " gate", "probability": 0.63427734375}, {"start": 1068.32, "end": 1068.92, "word": " This", "probability": 0.2457275390625}, {"start": 1068.92, "end": 1069.26, "word": " gate", "probability": 0.88720703125}, {"start": 1069.26, "end": 1069.6, "word": " does", "probability": 0.308837890625}, {"start": 1069.6, "end": 1069.64, "word": " not", "probability": 0.9208984375}, {"start": 1069.64, "end": 1070.02, "word": " rotate", "probability": 0.4150390625}, {"start": 1070.02, "end": 1070.46, "word": " and", "probability": 0.2498779296875}, {"start": 1070.46, "end": 1070.82, "word": " execute", "probability": 0.28369140625}, {"start": 1070.82, "end": 1071.2, "word": " accept", "probability": 0.491943359375}, {"start": 1071.2, "end": 1072.34, "word": " This", "probability": 0.072509765625}, {"start": 1072.34, "end": 1073.32, "word": " gate's", "probability": 0.563232421875}, {"start": 1073.32, "end": 1073.46, "word": " first", "probability": 0.7998046875}, {"start": 1073.46, "end": 1073.86, "word": " shape", "probability": 0.6689453125}, {"start": 1073.86, "end": 1074.6, "word": " is", "probability": 0.90576171875}, {"start": 1074.6, "end": 1075.22, "word": " circle", "probability": 0.56591796875}, {"start": 1075.22, "end": 1076.06, "word": " So", "probability": 0.494384765625}, {"start": 1076.06, "end": 1076.14, "word": " it", "probability": 0.56103515625}, {"start": 1076.14, "end": 1076.32, "word": " goes", "probability": 0.4736328125}, {"start": 1076.32, "end": 1076.48, "word": " to", "probability": 0.94921875}, {"start": 1076.48, "end": 1076.82, "word": " class", "probability": 0.646484375}, {"start": 1076.82, "end": 1077.34, "word": " circle", "probability": 0.6865234375}, {"start": 1077.34, "end": 1078.34, "word": " and", "probability": 0.71240234375}, {"start": 1078.34, "end": 1078.68, "word": " executes", "probability": 0.8330078125}, {"start": 1078.68, "end": 1079.22, "word": " this", "probability": 0.1641845703125}, {"start": 1079.22, "end": 1080.18, "word": " accept", "probability": 0.916015625}, {"start": 1080.18, "end": 1081.28, "word": " What", "probability": 0.634765625}, {"start": 1081.28, "end": 1081.38, "word": " is", "probability": 0.47998046875}, {"start": 1081.38, "end": 1081.64, "word": " this", "probability": 0.73779296875}, {"start": 1081.64, "end": 1082.0, "word": " accept?", "probability": 0.9248046875}], "temperature": 1.0}, {"id": 45, "seek": 111228, "start": 1084.12, "end": 1112.28, "text": " I go to the visitor and ask him to process this. Who is this? The circle. It's like I brought my potter to my house and told him to submit. And I leave him. Do I have to know the details and what he does? No, that's it. I can hand over the work and tell him to work. And so on. I sent the visitor to the circle. The circle received the visitor and told him to go ahead. Take this. Who is this? The object. To take from him who? The radius in the other.", "tokens": [286, 352, 281, 264, 28222, 293, 1029, 796, 281, 1399, 341, 13, 2102, 307, 341, 30, 440, 6329, 13, 467, 311, 411, 286, 3038, 452, 1847, 391, 281, 452, 1782, 293, 1907, 796, 281, 10315, 13, 400, 286, 1856, 796, 13, 1144, 286, 362, 281, 458, 264, 4365, 293, 437, 415, 775, 30, 883, 11, 300, 311, 309, 13, 286, 393, 1011, 670, 264, 589, 293, 980, 796, 281, 589, 13, 400, 370, 322, 13, 286, 2279, 264, 28222, 281, 264, 6329, 13, 440, 6329, 4613, 264, 28222, 293, 1907, 796, 281, 352, 2286, 13, 3664, 341, 13, 2102, 307, 341, 30, 440, 2657, 13, 1407, 747, 490, 796, 567, 30, 440, 15845, 294, 264, 661, 13], "avg_logprob": -0.4912605990292662, "compression_ratio": 1.812, "no_speech_prob": 1.5676021575927734e-05, "words": [{"start": 1084.12, "end": 1084.38, "word": " I", "probability": 0.31591796875}, {"start": 1084.38, "end": 1084.48, "word": " go", "probability": 0.63671875}, {"start": 1084.48, "end": 1084.64, "word": " to", "probability": 0.90966796875}, {"start": 1084.64, "end": 1084.76, "word": " the", "probability": 0.81884765625}, {"start": 1084.76, "end": 1085.04, "word": " visitor", "probability": 0.93212890625}, {"start": 1085.04, "end": 1085.24, "word": " and", "probability": 0.845703125}, {"start": 1085.24, "end": 1085.42, "word": " ask", "probability": 0.2783203125}, {"start": 1085.42, "end": 1085.54, "word": " him", "probability": 0.8056640625}, {"start": 1085.54, "end": 1085.6, "word": " to", "probability": 0.71630859375}, {"start": 1085.6, "end": 1086.04, "word": " process", "probability": 0.9189453125}, {"start": 1086.04, "end": 1086.98, "word": " this.", "probability": 0.78466796875}, {"start": 1087.14, "end": 1087.34, "word": " Who", "probability": 0.37939453125}, {"start": 1087.34, "end": 1087.46, "word": " is", "probability": 0.6640625}, {"start": 1087.46, "end": 1087.7, "word": " this?", "probability": 0.89501953125}, {"start": 1088.12, "end": 1088.52, "word": " The", "probability": 0.63232421875}, {"start": 1088.52, "end": 1088.82, "word": " circle.", "probability": 0.9052734375}, {"start": 1089.2, "end": 1089.5, "word": " It's", "probability": 0.37017822265625}, {"start": 1089.5, "end": 1089.62, "word": " like", "probability": 0.80126953125}, {"start": 1089.62, "end": 1089.94, "word": " I", "probability": 0.373291015625}, {"start": 1089.94, "end": 1090.24, "word": " brought", "probability": 0.359130859375}, {"start": 1090.24, "end": 1090.38, "word": " my", "probability": 0.57275390625}, {"start": 1090.38, "end": 1090.68, "word": " potter", "probability": 0.1844482421875}, {"start": 1090.68, "end": 1090.88, "word": " to", "probability": 0.355712890625}, {"start": 1090.88, "end": 1091.1, "word": " my", "probability": 0.69677734375}, {"start": 1091.1, "end": 1091.38, "word": " house", "probability": 0.578125}, {"start": 1091.38, "end": 1092.2, "word": " and", "probability": 0.73681640625}, {"start": 1092.2, "end": 1092.34, "word": " told", "probability": 0.289306640625}, {"start": 1092.34, "end": 1092.48, "word": " him", "probability": 0.78076171875}, {"start": 1092.48, "end": 1092.56, "word": " to", "probability": 0.93798828125}, {"start": 1092.56, "end": 1092.8, "word": " submit.", "probability": 0.1461181640625}, {"start": 1094.18, "end": 1094.58, "word": " And", "probability": 0.41650390625}, {"start": 1094.58, "end": 1094.64, "word": " I", "probability": 0.8193359375}, {"start": 1094.64, "end": 1094.84, "word": " leave", "probability": 0.6005859375}, {"start": 1094.84, "end": 1094.94, "word": " him.", "probability": 0.69970703125}, {"start": 1095.0, "end": 1095.26, "word": " Do", "probability": 0.3916015625}, {"start": 1095.26, "end": 1095.88, "word": " I", "probability": 0.99072265625}, {"start": 1095.88, "end": 1096.08, "word": " have", "probability": 0.6064453125}, {"start": 1096.08, "end": 1096.2, "word": " to", "probability": 0.97265625}, {"start": 1096.2, "end": 1096.68, "word": " know", "probability": 0.646484375}, {"start": 1096.68, "end": 1096.84, "word": " the", "probability": 0.456787109375}, {"start": 1096.84, "end": 1097.14, "word": " details", "probability": 0.78515625}, {"start": 1097.14, "end": 1097.38, "word": " and", "probability": 0.454833984375}, {"start": 1097.38, "end": 1097.5, "word": " what", "probability": 0.81298828125}, {"start": 1097.5, "end": 1097.62, "word": " he", "probability": 0.5478515625}, {"start": 1097.62, "end": 1097.86, "word": " does?", "probability": 0.62109375}, {"start": 1097.98, "end": 1098.12, "word": " No,", "probability": 0.75634765625}, {"start": 1098.24, "end": 1098.32, "word": " that's", "probability": 0.6080322265625}, {"start": 1098.32, "end": 1098.36, "word": " it.", "probability": 0.66796875}, {"start": 1098.44, "end": 1098.52, "word": " I", "probability": 0.93408203125}, {"start": 1098.52, "end": 1098.66, "word": " can", "probability": 0.78857421875}, {"start": 1098.66, "end": 1099.34, "word": " hand", "probability": 0.28076171875}, {"start": 1099.34, "end": 1099.46, "word": " over", "probability": 0.568359375}, {"start": 1099.46, "end": 1099.54, "word": " the", "probability": 0.66162109375}, {"start": 1099.54, "end": 1099.68, "word": " work", "probability": 0.345703125}, {"start": 1099.68, "end": 1099.98, "word": " and", "probability": 0.77587890625}, {"start": 1099.98, "end": 1100.2, "word": " tell", "probability": 0.435791015625}, {"start": 1100.2, "end": 1100.28, "word": " him", "probability": 0.93603515625}, {"start": 1100.28, "end": 1100.46, "word": " to", "probability": 0.82861328125}, {"start": 1100.46, "end": 1100.7, "word": " work.", "probability": 0.58251953125}, {"start": 1101.48, "end": 1101.74, "word": " And", "probability": 0.419921875}, {"start": 1101.74, "end": 1101.96, "word": " so", "probability": 0.50341796875}, {"start": 1101.96, "end": 1102.14, "word": " on.", "probability": 0.403564453125}, {"start": 1102.64, "end": 1102.84, "word": " I", "probability": 0.9833984375}, {"start": 1102.84, "end": 1103.12, "word": " sent", "probability": 0.6103515625}, {"start": 1103.12, "end": 1103.24, "word": " the", "probability": 0.880859375}, {"start": 1103.24, "end": 1103.44, "word": " visitor", "probability": 0.95849609375}, {"start": 1103.44, "end": 1103.62, "word": " to", "probability": 0.9541015625}, {"start": 1103.62, "end": 1103.76, "word": " the", "probability": 0.91455078125}, {"start": 1103.76, "end": 1104.0, "word": " circle.", "probability": 0.962890625}, {"start": 1104.08, "end": 1104.2, "word": " The", "probability": 0.87109375}, {"start": 1104.2, "end": 1104.48, "word": " circle", "probability": 0.96728515625}, {"start": 1104.48, "end": 1104.84, "word": " received", "probability": 0.472412109375}, {"start": 1104.84, "end": 1105.14, "word": " the", "probability": 0.90673828125}, {"start": 1105.14, "end": 1105.38, "word": " visitor", "probability": 0.9482421875}, {"start": 1105.38, "end": 1105.54, "word": " and", "probability": 0.87939453125}, {"start": 1105.54, "end": 1105.64, "word": " told", "probability": 0.4951171875}, {"start": 1105.64, "end": 1105.8, "word": " him", "probability": 0.91650390625}, {"start": 1105.8, "end": 1105.86, "word": " to", "probability": 0.83251953125}, {"start": 1105.86, "end": 1106.08, "word": " go", "probability": 0.5791015625}, {"start": 1106.08, "end": 1106.22, "word": " ahead.", "probability": 0.765625}, {"start": 1106.5, "end": 1106.78, "word": " Take", "probability": 0.79443359375}, {"start": 1106.78, "end": 1107.16, "word": " this.", "probability": 0.78173828125}, {"start": 1108.32, "end": 1108.72, "word": " Who", "probability": 0.75537109375}, {"start": 1108.72, "end": 1108.72, "word": " is", "probability": 0.939453125}, {"start": 1108.72, "end": 1108.96, "word": " this?", "probability": 0.9189453125}, {"start": 1109.34, "end": 1109.44, "word": " The", "probability": 0.64599609375}, {"start": 1109.44, "end": 1109.7, "word": " object.", "probability": 0.62158203125}, {"start": 1109.98, "end": 1110.18, "word": " To", "probability": 0.35205078125}, {"start": 1110.18, "end": 1110.46, "word": " take", "probability": 0.74267578125}, {"start": 1110.46, "end": 1110.58, "word": " from", "probability": 0.5498046875}, {"start": 1110.58, "end": 1110.7, "word": " him", "probability": 0.60009765625}, {"start": 1110.7, "end": 1110.92, "word": " who?", "probability": 0.5966796875}, {"start": 1111.44, "end": 1111.68, "word": " The", "probability": 0.51513671875}, {"start": 1111.68, "end": 1111.9, "word": " radius", "probability": 0.91357421875}, {"start": 1111.9, "end": 1112.06, "word": " in", "probability": 0.57861328125}, {"start": 1112.06, "end": 1112.14, "word": " the", "probability": 0.86279296875}, {"start": 1112.14, "end": 1112.28, "word": " other.", "probability": 0.53369140625}], "temperature": 1.0}, {"id": 46, "seek": 114001, "start": 1112.87, "end": 1140.01, "text": "Okay? And the same thing, when I look at the rectangle, I will go to the rectangle and it will say process v dot process this. So now I apply the concept of polymorphism, I make loops on the elements, each person calculates the area, and I added a new functionality. For example, this is the drawing circle and this is its area. The drawing rectangle and this is the area of ​​the rectangle, which is five times ten.", "tokens": [8297, 30, 400, 264, 912, 551, 11, 562, 286, 574, 412, 264, 21930, 11, 286, 486, 352, 281, 264, 21930, 293, 309, 486, 584, 1399, 371, 5893, 1399, 341, 13, 407, 586, 286, 3079, 264, 3410, 295, 6754, 76, 18191, 1434, 11, 286, 652, 16121, 322, 264, 4959, 11, 1184, 954, 4322, 1024, 264, 1859, 11, 293, 286, 3869, 257, 777, 14980, 13, 1171, 1365, 11, 341, 307, 264, 6316, 6329, 293, 341, 307, 1080, 1859, 13, 440, 6316, 21930, 293, 341, 307, 264, 1859, 295, 8701, 3322, 21930, 11, 597, 307, 1732, 1413, 2064, 13], "avg_logprob": -0.3869201129244775, "compression_ratio": 1.7004048582995952, "no_speech_prob": 1.7285346984863281e-06, "words": [{"start": 1112.87, "end": 1113.15, "word": "Okay?", "probability": 0.0927734375}, {"start": 1113.55, "end": 1113.69, "word": " And", "probability": 0.576171875}, {"start": 1113.69, "end": 1113.79, "word": " the", "probability": 0.499267578125}, {"start": 1113.79, "end": 1113.89, "word": " same", "probability": 0.90869140625}, {"start": 1113.89, "end": 1114.31, "word": " thing,", "probability": 0.771484375}, {"start": 1115.21, "end": 1115.45, "word": " when", "probability": 0.82470703125}, {"start": 1115.45, "end": 1115.61, "word": " I", "probability": 0.90234375}, {"start": 1115.61, "end": 1115.73, "word": " look", "probability": 0.1607666015625}, {"start": 1115.73, "end": 1115.91, "word": " at", "probability": 0.82958984375}, {"start": 1115.91, "end": 1116.01, "word": " the", "probability": 0.7470703125}, {"start": 1116.01, "end": 1116.49, "word": " rectangle,", "probability": 0.9326171875}, {"start": 1116.93, "end": 1117.13, "word": " I", "probability": 0.60546875}, {"start": 1117.13, "end": 1117.17, "word": " will", "probability": 0.263427734375}, {"start": 1117.17, "end": 1117.29, "word": " go", "probability": 0.7861328125}, {"start": 1117.29, "end": 1117.39, "word": " to", "probability": 0.92626953125}, {"start": 1117.39, "end": 1117.45, "word": " the", "probability": 0.81005859375}, {"start": 1117.45, "end": 1117.97, "word": " rectangle", "probability": 0.95947265625}, {"start": 1117.97, "end": 1119.69, "word": " and", "probability": 0.4619140625}, {"start": 1119.69, "end": 1119.93, "word": " it", "probability": 0.76025390625}, {"start": 1119.93, "end": 1120.05, "word": " will", "probability": 0.80615234375}, {"start": 1120.05, "end": 1120.27, "word": " say", "probability": 0.52392578125}, {"start": 1120.27, "end": 1120.79, "word": " process", "probability": 0.61083984375}, {"start": 1120.79, "end": 1121.23, "word": " v", "probability": 0.478515625}, {"start": 1121.23, "end": 1121.45, "word": " dot", "probability": 0.83154296875}, {"start": 1121.45, "end": 1121.81, "word": " process", "probability": 0.951171875}, {"start": 1121.81, "end": 1122.13, "word": " this.", "probability": 0.88232421875}, {"start": 1124.35, "end": 1124.65, "word": " So", "probability": 0.64501953125}, {"start": 1124.65, "end": 1124.87, "word": " now", "probability": 0.80322265625}, {"start": 1124.87, "end": 1125.03, "word": " I", "probability": 0.69189453125}, {"start": 1125.03, "end": 1125.29, "word": " apply", "probability": 0.76953125}, {"start": 1125.29, "end": 1125.45, "word": " the", "probability": 0.89111328125}, {"start": 1125.45, "end": 1125.69, "word": " concept", "probability": 0.76806640625}, {"start": 1125.69, "end": 1125.83, "word": " of", "probability": 0.96923828125}, {"start": 1125.83, "end": 1126.51, "word": " polymorphism,", "probability": 0.90869140625}, {"start": 1126.97, "end": 1127.03, "word": " I", "probability": 0.849609375}, {"start": 1127.03, "end": 1127.25, "word": " make", "probability": 0.509765625}, {"start": 1127.25, "end": 1127.45, "word": " loops", "probability": 0.271728515625}, {"start": 1127.45, "end": 1127.59, "word": " on", "probability": 0.73388671875}, {"start": 1127.59, "end": 1127.65, "word": " the", "probability": 0.33544921875}, {"start": 1127.65, "end": 1127.89, "word": " elements,", "probability": 0.76904296875}, {"start": 1128.05, "end": 1128.21, "word": " each", "probability": 0.6923828125}, {"start": 1128.21, "end": 1128.43, "word": " person", "probability": 0.389892578125}, {"start": 1128.43, "end": 1128.77, "word": " calculates", "probability": 0.8779296875}, {"start": 1128.77, "end": 1128.95, "word": " the", "probability": 0.75537109375}, {"start": 1128.95, "end": 1129.33, "word": " area,", "probability": 0.51708984375}, {"start": 1129.69, "end": 1130.65, "word": " and", "probability": 0.88330078125}, {"start": 1130.65, "end": 1130.85, "word": " I", "probability": 0.97216796875}, {"start": 1130.85, "end": 1131.05, "word": " added", "probability": 0.71435546875}, {"start": 1131.05, "end": 1131.17, "word": " a", "probability": 0.52685546875}, {"start": 1131.17, "end": 1131.17, "word": " new", "probability": 0.89794921875}, {"start": 1131.17, "end": 1131.77, "word": " functionality.", "probability": 0.859375}, {"start": 1132.43, "end": 1132.63, "word": " For", "probability": 0.66650390625}, {"start": 1132.63, "end": 1132.83, "word": " example,", "probability": 0.951171875}, {"start": 1132.83, "end": 1132.83, "word": " this", "probability": 0.7109375}, {"start": 1132.83, "end": 1132.87, "word": " is", "probability": 0.89453125}, {"start": 1132.87, "end": 1132.97, "word": " the", "probability": 0.371337890625}, {"start": 1132.97, "end": 1133.21, "word": " drawing", "probability": 0.927734375}, {"start": 1133.21, "end": 1133.63, "word": " circle", "probability": 0.9384765625}, {"start": 1133.63, "end": 1133.83, "word": " and", "probability": 0.68896484375}, {"start": 1133.83, "end": 1133.95, "word": " this", "probability": 0.8349609375}, {"start": 1133.95, "end": 1134.07, "word": " is", "probability": 0.92724609375}, {"start": 1134.07, "end": 1134.65, "word": " its", "probability": 0.3876953125}, {"start": 1134.65, "end": 1134.91, "word": " area.", "probability": 0.8603515625}, {"start": 1135.45, "end": 1135.73, "word": " The", "probability": 0.5380859375}, {"start": 1135.73, "end": 1135.95, "word": " drawing", "probability": 0.9287109375}, {"start": 1135.95, "end": 1136.49, "word": " rectangle", "probability": 0.9619140625}, {"start": 1136.49, "end": 1137.25, "word": " and", "probability": 0.6591796875}, {"start": 1137.25, "end": 1137.35, "word": " this", "probability": 0.8564453125}, {"start": 1137.35, "end": 1137.47, "word": " is", "probability": 0.93115234375}, {"start": 1137.47, "end": 1137.47, "word": " the", "probability": 0.91015625}, {"start": 1137.47, "end": 1137.75, "word": " area", "probability": 0.77197265625}, {"start": 1137.75, "end": 1138.67, "word": " of", "probability": 0.95654296875}, {"start": 1138.67, "end": 1138.73, "word": " ​​the", "probability": 0.6474609375}, {"start": 1138.73, "end": 1139.17, "word": " rectangle,", "probability": 0.9423828125}, {"start": 1139.27, "end": 1139.35, "word": " which", "probability": 0.93115234375}, {"start": 1139.35, "end": 1139.45, "word": " is", "probability": 0.9375}, {"start": 1139.45, "end": 1139.63, "word": " five", "probability": 0.5400390625}, {"start": 1139.63, "end": 1139.79, "word": " times", "probability": 0.544921875}, {"start": 1139.79, "end": 1140.01, "word": " ten.", "probability": 0.9091796875}], "temperature": 1.0}, {"id": 47, "seek": 117066, "start": 1142.32, "end": 1170.66, "text": " because we want to add new functions for example, did you notice that we want to calculate the circumference of shapes? as we said, the traditional way that we are used to is that you go to the shape interface and add method calc perimeter but also when you added it, who hit you? the children did you notice that? no, I don't want my children to hit me it costs the visitor outside to do this thing for you so we go and create a new class", "tokens": [570, 321, 528, 281, 909, 777, 6828, 337, 1365, 11, 630, 291, 3449, 300, 321, 528, 281, 8873, 264, 7125, 5158, 295, 10854, 30, 382, 321, 848, 11, 264, 5164, 636, 300, 321, 366, 1143, 281, 307, 300, 291, 352, 281, 264, 3909, 9226, 293, 909, 3170, 2104, 66, 32404, 457, 611, 562, 291, 3869, 309, 11, 567, 2045, 291, 30, 264, 2227, 630, 291, 3449, 300, 30, 572, 11, 286, 500, 380, 528, 452, 2227, 281, 2045, 385, 309, 5497, 264, 28222, 2380, 281, 360, 341, 551, 337, 291, 370, 321, 352, 293, 1884, 257, 777, 1508], "avg_logprob": -0.5148358417279792, "compression_ratio": 1.7886178861788617, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 1142.32, "end": 1142.6, "word": " because", "probability": 0.157958984375}, {"start": 1142.6, "end": 1143.04, "word": " we", "probability": 0.79443359375}, {"start": 1143.04, "end": 1143.04, "word": " want", "probability": 0.405517578125}, {"start": 1143.04, "end": 1143.16, "word": " to", "probability": 0.96875}, {"start": 1143.16, "end": 1143.54, "word": " add", "probability": 0.90087890625}, {"start": 1143.54, "end": 1145.0, "word": " new", "probability": 0.7099609375}, {"start": 1145.0, "end": 1145.42, "word": " functions", "probability": 0.278076171875}, {"start": 1145.42, "end": 1146.48, "word": " for", "probability": 0.62060546875}, {"start": 1146.48, "end": 1146.7, "word": " example,", "probability": 0.9345703125}, {"start": 1146.94, "end": 1147.16, "word": " did", "probability": 0.1717529296875}, {"start": 1147.16, "end": 1147.16, "word": " you", "probability": 0.96435546875}, {"start": 1147.16, "end": 1147.22, "word": " notice", "probability": 0.5146484375}, {"start": 1147.22, "end": 1147.24, "word": " that", "probability": 0.474365234375}, {"start": 1147.24, "end": 1147.58, "word": " we", "probability": 0.92529296875}, {"start": 1147.58, "end": 1147.58, "word": " want", "probability": 0.7021484375}, {"start": 1147.58, "end": 1147.68, "word": " to", "probability": 0.966796875}, {"start": 1147.68, "end": 1147.92, "word": " calculate", "probability": 0.80615234375}, {"start": 1147.92, "end": 1148.06, "word": " the", "probability": 0.66259765625}, {"start": 1148.06, "end": 1148.3, "word": " circumference", "probability": 0.68359375}, {"start": 1148.3, "end": 1148.4, "word": " of", "probability": 0.93017578125}, {"start": 1148.4, "end": 1148.78, "word": " shapes?", "probability": 0.60791015625}, {"start": 1150.3, "end": 1150.52, "word": " as", "probability": 0.1834716796875}, {"start": 1150.52, "end": 1151.26, "word": " we", "probability": 0.849609375}, {"start": 1151.26, "end": 1151.5, "word": " said,", "probability": 0.75048828125}, {"start": 1151.9, "end": 1152.8, "word": " the", "probability": 0.309814453125}, {"start": 1152.8, "end": 1153.46, "word": " traditional", "probability": 0.70654296875}, {"start": 1153.46, "end": 1153.58, "word": " way", "probability": 0.85693359375}, {"start": 1153.58, "end": 1153.68, "word": " that", "probability": 0.55517578125}, {"start": 1153.68, "end": 1153.74, "word": " we", "probability": 0.8984375}, {"start": 1153.74, "end": 1153.76, "word": " are", "probability": 0.390380859375}, {"start": 1153.76, "end": 1154.0, "word": " used", "probability": 0.8076171875}, {"start": 1154.0, "end": 1154.4, "word": " to", "probability": 0.93603515625}, {"start": 1154.4, "end": 1154.54, "word": " is", "probability": 0.362060546875}, {"start": 1154.54, "end": 1154.62, "word": " that", "probability": 0.41455078125}, {"start": 1154.62, "end": 1154.88, "word": " you", "probability": 0.83740234375}, {"start": 1154.88, "end": 1155.12, "word": " go", "probability": 0.78515625}, {"start": 1155.12, "end": 1155.42, "word": " to", "probability": 0.83349609375}, {"start": 1155.42, "end": 1155.56, "word": " the", "probability": 0.7314453125}, {"start": 1155.56, "end": 1156.64, "word": " shape", "probability": 0.49462890625}, {"start": 1156.64, "end": 1156.66, "word": " interface", "probability": 0.84716796875}, {"start": 1156.66, "end": 1157.68, "word": " and", "probability": 0.78662109375}, {"start": 1157.68, "end": 1157.92, "word": " add", "probability": 0.78271484375}, {"start": 1157.92, "end": 1158.42, "word": " method", "probability": 0.5068359375}, {"start": 1158.42, "end": 1158.84, "word": " calc", "probability": 0.6798095703125}, {"start": 1158.84, "end": 1159.26, "word": " perimeter", "probability": 0.7646484375}, {"start": 1159.26, "end": 1160.24, "word": " but", "probability": 0.814453125}, {"start": 1160.24, "end": 1160.52, "word": " also", "probability": 0.2218017578125}, {"start": 1160.52, "end": 1160.64, "word": " when", "probability": 0.70703125}, {"start": 1160.64, "end": 1160.74, "word": " you", "probability": 0.86865234375}, {"start": 1160.74, "end": 1160.92, "word": " added", "probability": 0.34423828125}, {"start": 1160.92, "end": 1161.08, "word": " it,", "probability": 0.84326171875}, {"start": 1161.18, "end": 1161.34, "word": " who", "probability": 0.412353515625}, {"start": 1161.34, "end": 1161.34, "word": " hit", "probability": 0.1517333984375}, {"start": 1161.34, "end": 1161.64, "word": " you?", "probability": 0.74267578125}, {"start": 1162.66, "end": 1162.8, "word": " the", "probability": 0.335205078125}, {"start": 1162.8, "end": 1163.02, "word": " children", "probability": 0.46337890625}, {"start": 1163.02, "end": 1163.52, "word": " did", "probability": 0.50927734375}, {"start": 1163.52, "end": 1163.54, "word": " you", "probability": 0.9375}, {"start": 1163.54, "end": 1163.72, "word": " notice", "probability": 0.80615234375}, {"start": 1163.72, "end": 1163.8, "word": " that?", "probability": 0.456787109375}, {"start": 1163.86, "end": 1163.92, "word": " no,", "probability": 0.293701171875}, {"start": 1163.94, "end": 1164.04, "word": " I", "probability": 0.80126953125}, {"start": 1164.04, "end": 1164.16, "word": " don't", "probability": 0.867919921875}, {"start": 1164.16, "end": 1164.32, "word": " want", "probability": 0.86572265625}, {"start": 1164.32, "end": 1164.4, "word": " my", "probability": 0.3916015625}, {"start": 1164.4, "end": 1164.62, "word": " children", "probability": 0.6826171875}, {"start": 1164.62, "end": 1164.78, "word": " to", "probability": 0.9150390625}, {"start": 1164.78, "end": 1164.9, "word": " hit", "probability": 0.8525390625}, {"start": 1164.9, "end": 1165.54, "word": " me", "probability": 0.765625}, {"start": 1165.54, "end": 1166.18, "word": " it", "probability": 0.0872802734375}, {"start": 1166.18, "end": 1166.74, "word": " costs", "probability": 0.257568359375}, {"start": 1166.74, "end": 1166.98, "word": " the", "probability": 0.23876953125}, {"start": 1166.98, "end": 1167.26, "word": " visitor", "probability": 0.87060546875}, {"start": 1167.26, "end": 1167.68, "word": " outside", "probability": 0.59130859375}, {"start": 1167.68, "end": 1168.4, "word": " to", "probability": 0.72802734375}, {"start": 1168.4, "end": 1168.64, "word": " do", "probability": 0.85107421875}, {"start": 1168.64, "end": 1168.86, "word": " this", "probability": 0.75}, {"start": 1168.86, "end": 1169.08, "word": " thing", "probability": 0.425048828125}, {"start": 1169.08, "end": 1169.36, "word": " for", "probability": 0.541015625}, {"start": 1169.36, "end": 1169.36, "word": " you", "probability": 0.81201171875}, {"start": 1169.36, "end": 1169.72, "word": " so", "probability": 0.6953125}, {"start": 1169.72, "end": 1169.86, "word": " we", "probability": 0.66748046875}, {"start": 1169.86, "end": 1170.0, "word": " go", "probability": 0.51611328125}, {"start": 1170.0, "end": 1170.12, "word": " and", "probability": 0.51953125}, {"start": 1170.12, "end": 1170.26, "word": " create", "probability": 0.47021484375}, {"start": 1170.26, "end": 1170.38, "word": " a", "probability": 0.94384765625}, {"start": 1170.38, "end": 1170.38, "word": " new", "probability": 0.90771484375}, {"start": 1170.38, "end": 1170.66, "word": " class", "probability": 0.974609375}], "temperature": 1.0}, {"id": 48, "seek": 119855, "start": 1172.09, "end": 1198.55, "text": "Its name is for example Perimeter Visitor And I say Implements to I Visitor Because now you are assigned to calculate the circumference of the shapes For example, this is how you calculate the circumference System.out.println circumference of the circle 2 in math.py", "tokens": [40, 1373, 1315, 307, 337, 1365, 3026, 9685, 10410, 3029, 400, 286, 584, 4331, 781, 1117, 281, 286, 10410, 3029, 1436, 586, 291, 366, 13279, 281, 8873, 264, 7125, 5158, 295, 264, 10854, 1171, 1365, 11, 341, 307, 577, 291, 8873, 264, 7125, 5158, 8910, 13, 346, 13, 14030, 75, 77, 7125, 5158, 295, 264, 6329, 568, 294, 5221, 13, 8200], "avg_logprob": -0.6068548483233298, "compression_ratio": 1.6319018404907975, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1172.09, "end": 1172.31, "word": "Its", "probability": 0.476654052734375}, {"start": 1172.31, "end": 1172.51, "word": " name", "probability": 0.857421875}, {"start": 1172.51, "end": 1172.65, "word": " is", "probability": 0.76611328125}, {"start": 1172.65, "end": 1172.77, "word": " for", "probability": 0.19482421875}, {"start": 1172.77, "end": 1172.91, "word": " example", "probability": 0.8916015625}, {"start": 1172.91, "end": 1173.57, "word": " Perimeter", "probability": 0.69482421875}, {"start": 1173.57, "end": 1176.03, "word": " Visitor", "probability": 0.803955078125}, {"start": 1176.03, "end": 1178.51, "word": " And", "probability": 0.1395263671875}, {"start": 1178.51, "end": 1178.93, "word": " I", "probability": 0.42041015625}, {"start": 1178.93, "end": 1179.11, "word": " say", "probability": 0.385986328125}, {"start": 1179.11, "end": 1180.11, "word": " Implements", "probability": 0.6018880208333334}, {"start": 1180.11, "end": 1181.33, "word": " to", "probability": 0.442626953125}, {"start": 1181.33, "end": 1181.75, "word": " I", "probability": 0.5595703125}, {"start": 1181.75, "end": 1184.13, "word": " Visitor", "probability": 0.8642578125}, {"start": 1184.13, "end": 1184.77, "word": " Because", "probability": 0.2578125}, {"start": 1184.77, "end": 1185.37, "word": " now", "probability": 0.3291015625}, {"start": 1185.37, "end": 1185.61, "word": " you", "probability": 0.76708984375}, {"start": 1185.61, "end": 1185.75, "word": " are", "probability": 0.72802734375}, {"start": 1185.75, "end": 1185.87, "word": " assigned", "probability": 0.1641845703125}, {"start": 1185.87, "end": 1187.15, "word": " to", "probability": 0.57373046875}, {"start": 1187.15, "end": 1187.47, "word": " calculate", "probability": 0.7900390625}, {"start": 1187.47, "end": 1187.65, "word": " the", "probability": 0.6357421875}, {"start": 1187.65, "end": 1187.89, "word": " circumference", "probability": 0.45465087890625}, {"start": 1187.89, "end": 1188.05, "word": " of", "probability": 0.7958984375}, {"start": 1188.05, "end": 1188.17, "word": " the", "probability": 0.328125}, {"start": 1188.17, "end": 1188.49, "word": " shapes", "probability": 0.343017578125}, {"start": 1188.49, "end": 1189.83, "word": " For", "probability": 0.318115234375}, {"start": 1189.83, "end": 1190.55, "word": " example,", "probability": 0.9326171875}, {"start": 1190.55, "end": 1190.55, "word": " this", "probability": 0.65283203125}, {"start": 1190.55, "end": 1190.55, "word": " is", "probability": 0.485107421875}, {"start": 1190.55, "end": 1190.79, "word": " how", "probability": 0.6875}, {"start": 1190.79, "end": 1190.79, "word": " you", "probability": 0.231689453125}, {"start": 1190.79, "end": 1191.09, "word": " calculate", "probability": 0.8857421875}, {"start": 1191.09, "end": 1191.25, "word": " the", "probability": 0.703125}, {"start": 1191.25, "end": 1191.61, "word": " circumference", "probability": 0.942138671875}, {"start": 1191.61, "end": 1192.33, "word": " System", "probability": 0.6708984375}, {"start": 1192.33, "end": 1192.95, "word": ".out", "probability": 0.658203125}, {"start": 1192.95, "end": 1193.85, "word": ".println", "probability": 0.81988525390625}, {"start": 1193.85, "end": 1195.49, "word": " circumference", "probability": 0.42755126953125}, {"start": 1195.49, "end": 1195.63, "word": " of", "probability": 0.681640625}, {"start": 1195.63, "end": 1195.75, "word": " the", "probability": 0.494384765625}, {"start": 1195.75, "end": 1195.93, "word": " circle", "probability": 0.669921875}, {"start": 1195.93, "end": 1196.55, "word": " 2", "probability": 0.347900390625}, {"start": 1196.55, "end": 1197.41, "word": " in", "probability": 0.4619140625}, {"start": 1197.41, "end": 1197.73, "word": " math", "probability": 0.56982421875}, {"start": 1197.73, "end": 1198.55, "word": ".py", "probability": 0.892333984375}], "temperature": 1.0}, {"id": 49, "seek": 122999, "start": 1201.73, "end": 1229.99, "text": " c.radius now the rectangle system.out.println two times the sum of r.width plus r.height correct or not guys? now I go back to the main method it has to rotate on the shapes and calculate its circumference all that you have to do is go and create another visitor called perimeter", "tokens": [269, 13, 6206, 4872, 586, 264, 21930, 1185, 13, 346, 13, 14030, 75, 77, 732, 1413, 264, 2408, 295, 367, 13, 21271, 1804, 367, 13, 675, 397, 3006, 420, 406, 1074, 30, 586, 286, 352, 646, 281, 264, 2135, 3170, 309, 575, 281, 13121, 322, 264, 10854, 293, 8873, 1080, 7125, 5158, 439, 300, 291, 362, 281, 360, 307, 352, 293, 1884, 1071, 28222, 1219, 32404], "avg_logprob": -0.5452425604435935, "compression_ratio": 1.5217391304347827, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 1201.73, "end": 1202.11, "word": " c", "probability": 0.2103271484375}, {"start": 1202.11, "end": 1202.73, "word": ".radius", "probability": 0.6686197916666666}, {"start": 1202.73, "end": 1203.57, "word": " now", "probability": 0.321533203125}, {"start": 1203.57, "end": 1203.73, "word": " the", "probability": 0.268310546875}, {"start": 1203.73, "end": 1204.29, "word": " rectangle", "probability": 0.9345703125}, {"start": 1204.29, "end": 1208.23, "word": " system", "probability": 0.78173828125}, {"start": 1208.23, "end": 1208.83, "word": ".out", "probability": 0.905517578125}, {"start": 1208.83, "end": 1209.77, "word": ".println", "probability": 0.813720703125}, {"start": 1209.77, "end": 1212.31, "word": " two", "probability": 0.364013671875}, {"start": 1212.31, "end": 1212.77, "word": " times", "probability": 0.483642578125}, {"start": 1212.77, "end": 1213.03, "word": " the", "probability": 0.466796875}, {"start": 1213.03, "end": 1213.35, "word": " sum", "probability": 0.1990966796875}, {"start": 1213.35, "end": 1214.13, "word": " of", "probability": 0.72802734375}, {"start": 1214.13, "end": 1214.81, "word": " r", "probability": 0.56396484375}, {"start": 1214.81, "end": 1215.37, "word": ".width", "probability": 0.95947265625}, {"start": 1215.37, "end": 1217.17, "word": " plus", "probability": 0.66552734375}, {"start": 1217.17, "end": 1217.53, "word": " r", "probability": 0.81201171875}, {"start": 1217.53, "end": 1218.11, "word": ".height", "probability": 0.9391276041666666}, {"start": 1218.11, "end": 1218.73, "word": " correct", "probability": 0.2279052734375}, {"start": 1218.73, "end": 1218.85, "word": " or", "probability": 0.70703125}, {"start": 1218.85, "end": 1218.95, "word": " not", "probability": 0.89013671875}, {"start": 1218.95, "end": 1219.35, "word": " guys?", "probability": 0.466796875}, {"start": 1219.59, "end": 1220.31, "word": " now", "probability": 0.798828125}, {"start": 1220.31, "end": 1220.67, "word": " I", "probability": 0.32666015625}, {"start": 1220.67, "end": 1220.67, "word": " go", "probability": 0.423095703125}, {"start": 1220.67, "end": 1220.79, "word": " back", "probability": 0.875}, {"start": 1220.79, "end": 1220.91, "word": " to", "probability": 0.95263671875}, {"start": 1220.91, "end": 1221.01, "word": " the", "probability": 0.7880859375}, {"start": 1221.01, "end": 1221.19, "word": " main", "probability": 0.91650390625}, {"start": 1221.19, "end": 1221.55, "word": " method", "probability": 0.9423828125}, {"start": 1221.55, "end": 1221.97, "word": " it", "probability": 0.376953125}, {"start": 1221.97, "end": 1222.11, "word": " has", "probability": 0.294921875}, {"start": 1222.11, "end": 1222.21, "word": " to", "probability": 0.96826171875}, {"start": 1222.21, "end": 1222.35, "word": " rotate", "probability": 0.427734375}, {"start": 1222.35, "end": 1222.53, "word": " on", "probability": 0.306396484375}, {"start": 1222.53, "end": 1222.57, "word": " the", "probability": 0.267822265625}, {"start": 1222.57, "end": 1223.05, "word": " shapes", "probability": 0.65185546875}, {"start": 1223.05, "end": 1224.69, "word": " and", "probability": 0.86083984375}, {"start": 1224.69, "end": 1224.91, "word": " calculate", "probability": 0.767578125}, {"start": 1224.91, "end": 1225.07, "word": " its", "probability": 0.50146484375}, {"start": 1225.07, "end": 1225.43, "word": " circumference", "probability": 0.61865234375}, {"start": 1225.43, "end": 1226.23, "word": " all", "probability": 0.42578125}, {"start": 1226.23, "end": 1226.41, "word": " that", "probability": 0.14306640625}, {"start": 1226.41, "end": 1226.49, "word": " you", "probability": 0.3681640625}, {"start": 1226.49, "end": 1226.53, "word": " have", "probability": 0.27197265625}, {"start": 1226.53, "end": 1226.67, "word": " to", "probability": 0.79638671875}, {"start": 1226.67, "end": 1226.89, "word": " do", "probability": 0.91943359375}, {"start": 1226.89, "end": 1227.15, "word": " is", "probability": 0.67919921875}, {"start": 1227.15, "end": 1227.25, "word": " go", "probability": 0.310791015625}, {"start": 1227.25, "end": 1227.41, "word": " and", "probability": 0.44970703125}, {"start": 1227.41, "end": 1227.61, "word": " create", "probability": 0.56640625}, {"start": 1227.61, "end": 1227.75, "word": " another", "probability": 0.62353515625}, {"start": 1227.75, "end": 1228.15, "word": " visitor", "probability": 0.8896484375}, {"start": 1228.15, "end": 1228.99, "word": " called", "probability": 0.35009765625}, {"start": 1228.99, "end": 1229.99, "word": " perimeter", "probability": 0.86376953125}], "temperature": 1.0}, {"id": 50, "seek": 126105, "start": 1234.11, "end": 1261.05, "text": " visitor.pv and then rotate the shapes and say p.accept.pv and so on, every time you add a new function you make it your own visitor now this method accept is like an open door", "tokens": [28222, 13, 79, 85, 293, 550, 13121, 264, 10854, 293, 584, 280, 13, 24870, 13, 79, 85, 293, 370, 322, 11, 633, 565, 291, 909, 257, 777, 2445, 291, 652, 309, 428, 1065, 28222, 586, 341, 3170, 3241, 307, 411, 364, 1269, 2853], "avg_logprob": -0.60333805734461, "compression_ratio": 1.4426229508196722, "no_speech_prob": 2.4616718292236328e-05, "words": [{"start": 1234.11, "end": 1234.83, "word": " visitor", "probability": 0.323486328125}, {"start": 1234.83, "end": 1235.55, "word": ".pv", "probability": 0.6427001953125}, {"start": 1235.55, "end": 1244.31, "word": " and", "probability": 0.1783447265625}, {"start": 1244.31, "end": 1244.97, "word": " then", "probability": 0.62939453125}, {"start": 1244.97, "end": 1245.29, "word": " rotate", "probability": 0.11480712890625}, {"start": 1245.29, "end": 1245.49, "word": " the", "probability": 0.51025390625}, {"start": 1245.49, "end": 1245.95, "word": " shapes", "probability": 0.432861328125}, {"start": 1245.95, "end": 1246.81, "word": " and", "probability": 0.6201171875}, {"start": 1246.81, "end": 1247.01, "word": " say", "probability": 0.302978515625}, {"start": 1247.01, "end": 1247.37, "word": " p", "probability": 0.7353515625}, {"start": 1247.37, "end": 1248.29, "word": ".accept", "probability": 0.76953125}, {"start": 1248.29, "end": 1249.73, "word": ".pv", "probability": 0.7288818359375}, {"start": 1249.73, "end": 1253.17, "word": " and", "probability": 0.452392578125}, {"start": 1253.17, "end": 1253.45, "word": " so", "probability": 0.321533203125}, {"start": 1253.45, "end": 1253.63, "word": " on,", "probability": 0.89453125}, {"start": 1253.71, "end": 1253.83, "word": " every", "probability": 0.1900634765625}, {"start": 1253.83, "end": 1253.89, "word": " time", "probability": 0.81884765625}, {"start": 1253.89, "end": 1254.07, "word": " you", "probability": 0.91552734375}, {"start": 1254.07, "end": 1254.33, "word": " add", "probability": 0.748046875}, {"start": 1254.33, "end": 1254.45, "word": " a", "probability": 0.81884765625}, {"start": 1254.45, "end": 1254.49, "word": " new", "probability": 0.8720703125}, {"start": 1254.49, "end": 1254.69, "word": " function", "probability": 0.5830078125}, {"start": 1254.69, "end": 1255.29, "word": " you", "probability": 0.41845703125}, {"start": 1255.29, "end": 1255.53, "word": " make", "probability": 0.299072265625}, {"start": 1255.53, "end": 1256.31, "word": " it", "probability": 0.74609375}, {"start": 1256.31, "end": 1256.43, "word": " your", "probability": 0.283203125}, {"start": 1256.43, "end": 1256.43, "word": " own", "probability": 0.6181640625}, {"start": 1256.43, "end": 1257.07, "word": " visitor", "probability": 0.94677734375}, {"start": 1257.07, "end": 1257.89, "word": " now", "probability": 0.475341796875}, {"start": 1257.89, "end": 1258.25, "word": " this", "probability": 0.767578125}, {"start": 1258.25, "end": 1258.57, "word": " method", "probability": 0.9462890625}, {"start": 1258.57, "end": 1259.17, "word": " accept", "probability": 0.65087890625}, {"start": 1259.17, "end": 1259.67, "word": " is", "probability": 0.199951171875}, {"start": 1259.67, "end": 1259.81, "word": " like", "probability": 0.765625}, {"start": 1259.81, "end": 1260.45, "word": " an", "probability": 0.3974609375}, {"start": 1260.45, "end": 1261.05, "word": " open", "probability": 0.85302734375}, {"start": 1261.05, "end": 1261.05, "word": " door", "probability": 0.86181640625}], "temperature": 1.0}, {"id": 51, "seek": 128875, "start": 1262.03, "end": 1288.75, "text": " for additions. Am I right or not guys? I made this accept to make visitors do new tasks and repeat them without adding additional methods to the interface because we saw that adding additional methods disrupted all implementations. Someone will ask me a question and I will say what is the accept that you made when you added it? I changed it to subclasses. Okay, this is the first time.", "tokens": [337, 35113, 13, 2012, 286, 558, 420, 406, 1074, 30, 286, 1027, 341, 3241, 281, 652, 14315, 360, 777, 9608, 293, 7149, 552, 1553, 5127, 4497, 7150, 281, 264, 9226, 570, 321, 1866, 300, 5127, 4497, 7150, 42271, 439, 4445, 763, 13, 8734, 486, 1029, 385, 257, 1168, 293, 286, 486, 584, 437, 307, 264, 3241, 300, 291, 1027, 562, 291, 3869, 309, 30, 286, 3105, 309, 281, 1422, 11665, 279, 13, 1033, 11, 341, 307, 264, 700, 565, 13], "avg_logprob": -0.5856481599219051, "compression_ratio": 1.7017543859649122, "no_speech_prob": 6.67572021484375e-06, "words": [{"start": 1262.03, "end": 1262.27, "word": " for", "probability": 0.18505859375}, {"start": 1262.27, "end": 1262.65, "word": " additions.", "probability": 0.294189453125}, {"start": 1263.59, "end": 1264.07, "word": " Am", "probability": 0.357177734375}, {"start": 1264.07, "end": 1264.11, "word": " I", "probability": 0.94482421875}, {"start": 1264.11, "end": 1264.11, "word": " right", "probability": 0.818359375}, {"start": 1264.11, "end": 1264.29, "word": " or", "probability": 0.62646484375}, {"start": 1264.29, "end": 1264.29, "word": " not", "probability": 0.7958984375}, {"start": 1264.29, "end": 1264.61, "word": " guys?", "probability": 0.427978515625}, {"start": 1265.59, "end": 1266.07, "word": " I", "probability": 0.248291015625}, {"start": 1266.07, "end": 1267.73, "word": " made", "probability": 0.45947265625}, {"start": 1267.73, "end": 1267.87, "word": " this", "probability": 0.53125}, {"start": 1267.87, "end": 1268.19, "word": " accept", "probability": 0.5419921875}, {"start": 1268.19, "end": 1269.35, "word": " to", "probability": 0.36279296875}, {"start": 1269.35, "end": 1270.11, "word": " make", "probability": 0.6083984375}, {"start": 1270.11, "end": 1270.75, "word": " visitors", "probability": 0.73095703125}, {"start": 1270.75, "end": 1271.21, "word": " do", "probability": 0.462158203125}, {"start": 1271.21, "end": 1271.45, "word": " new", "probability": 0.418701171875}, {"start": 1271.45, "end": 1272.33, "word": " tasks", "probability": 0.31494140625}, {"start": 1272.33, "end": 1272.99, "word": " and", "probability": 0.4658203125}, {"start": 1272.99, "end": 1273.27, "word": " repeat", "probability": 0.51904296875}, {"start": 1273.27, "end": 1273.47, "word": " them", "probability": 0.76708984375}, {"start": 1273.47, "end": 1273.77, "word": " without", "probability": 0.625}, {"start": 1273.77, "end": 1274.51, "word": " adding", "probability": 0.6337890625}, {"start": 1274.51, "end": 1274.65, "word": " additional", "probability": 0.4365234375}, {"start": 1274.65, "end": 1275.07, "word": " methods", "probability": 0.90625}, {"start": 1275.07, "end": 1276.25, "word": " to", "probability": 0.78125}, {"start": 1276.25, "end": 1276.35, "word": " the", "probability": 0.82861328125}, {"start": 1276.35, "end": 1276.85, "word": " interface", "probability": 0.8671875}, {"start": 1276.85, "end": 1277.57, "word": " because", "probability": 0.343505859375}, {"start": 1277.57, "end": 1277.85, "word": " we", "probability": 0.67236328125}, {"start": 1277.85, "end": 1277.85, "word": " saw", "probability": 0.72216796875}, {"start": 1277.85, "end": 1278.05, "word": " that", "probability": 0.77685546875}, {"start": 1278.05, "end": 1278.27, "word": " adding", "probability": 0.38916015625}, {"start": 1278.27, "end": 1278.73, "word": " additional", "probability": 0.552734375}, {"start": 1278.73, "end": 1279.07, "word": " methods", "probability": 0.87646484375}, {"start": 1279.07, "end": 1279.59, "word": " disrupted", "probability": 0.0697021484375}, {"start": 1279.59, "end": 1280.25, "word": " all", "probability": 0.83837890625}, {"start": 1280.25, "end": 1281.23, "word": " implementations.", "probability": 0.889892578125}, {"start": 1282.15, "end": 1282.29, "word": " Someone", "probability": 0.51220703125}, {"start": 1282.29, "end": 1282.47, "word": " will", "probability": 0.483154296875}, {"start": 1282.47, "end": 1282.59, "word": " ask", "probability": 0.93505859375}, {"start": 1282.59, "end": 1282.77, "word": " me", "probability": 0.83203125}, {"start": 1282.77, "end": 1282.81, "word": " a", "probability": 0.7470703125}, {"start": 1282.81, "end": 1282.93, "word": " question", "probability": 0.9267578125}, {"start": 1282.93, "end": 1283.09, "word": " and", "probability": 0.223388671875}, {"start": 1283.09, "end": 1283.13, "word": " I", "probability": 0.70361328125}, {"start": 1283.13, "end": 1283.15, "word": " will", "probability": 0.64697265625}, {"start": 1283.15, "end": 1283.25, "word": " say", "probability": 0.472900390625}, {"start": 1283.25, "end": 1283.49, "word": " what", "probability": 0.2103271484375}, {"start": 1283.49, "end": 1283.65, "word": " is", "probability": 0.78955078125}, {"start": 1283.65, "end": 1283.77, "word": " the", "probability": 0.5283203125}, {"start": 1283.77, "end": 1284.13, "word": " accept", "probability": 0.8154296875}, {"start": 1284.13, "end": 1284.49, "word": " that", "probability": 0.54443359375}, {"start": 1284.49, "end": 1284.53, "word": " you", "probability": 0.85546875}, {"start": 1284.53, "end": 1284.55, "word": " made", "probability": 0.20458984375}, {"start": 1284.55, "end": 1284.61, "word": " when", "probability": 0.6220703125}, {"start": 1284.61, "end": 1284.71, "word": " you", "probability": 0.86279296875}, {"start": 1284.71, "end": 1284.87, "word": " added", "probability": 0.73291015625}, {"start": 1284.87, "end": 1285.07, "word": " it?", "probability": 0.7490234375}, {"start": 1285.65, "end": 1285.79, "word": " I", "probability": 0.3251953125}, {"start": 1285.79, "end": 1286.03, "word": " changed", "probability": 0.358154296875}, {"start": 1286.03, "end": 1286.21, "word": " it", "probability": 0.572265625}, {"start": 1286.21, "end": 1286.69, "word": " to", "probability": 0.84130859375}, {"start": 1286.69, "end": 1287.93, "word": " subclasses.", "probability": 0.7295735677083334}, {"start": 1287.95, "end": 1288.07, "word": " Okay,", "probability": 0.3994140625}, {"start": 1288.19, "end": 1288.27, "word": " this", "probability": 0.72900390625}, {"start": 1288.27, "end": 1288.27, "word": " is", "probability": 0.92431640625}, {"start": 1288.27, "end": 1288.37, "word": " the", "probability": 0.8173828125}, {"start": 1288.37, "end": 1288.47, "word": " first", "probability": 0.8828125}, {"start": 1288.47, "end": 1288.75, "word": " time.", "probability": 0.876953125}], "temperature": 1.0}, {"id": 52, "seek": 130794, "start": 1289.86, "end": 1307.94, "text": " Right or not? But for the first time, when the designer designs the hierarchy class, he puts the basic methods and then leaves the accept as an open door and the subclasses have to implement it to give the visitor a message, but what does this do?", "tokens": [1779, 420, 406, 30, 583, 337, 264, 700, 565, 11, 562, 264, 11795, 11347, 264, 22333, 1508, 11, 415, 8137, 264, 3875, 7150, 293, 550, 5510, 264, 3241, 382, 364, 1269, 2853, 293, 264, 1422, 11665, 279, 362, 281, 4445, 309, 281, 976, 264, 28222, 257, 3636, 11, 457, 437, 775, 341, 360, 30], "avg_logprob": -0.7346590974114158, "compression_ratio": 1.5403726708074534, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 1289.86, "end": 1290.12, "word": " Right", "probability": 0.286376953125}, {"start": 1290.12, "end": 1290.3, "word": " or", "probability": 0.880859375}, {"start": 1290.3, "end": 1290.38, "word": " not?", "probability": 0.265625}, {"start": 1290.58, "end": 1290.82, "word": " But", "probability": 0.439208984375}, {"start": 1290.82, "end": 1290.98, "word": " for", "probability": 0.1966552734375}, {"start": 1290.98, "end": 1291.1, "word": " the", "probability": 0.919921875}, {"start": 1291.1, "end": 1291.1, "word": " first", "probability": 0.86865234375}, {"start": 1291.1, "end": 1291.44, "word": " time,", "probability": 0.89892578125}, {"start": 1291.92, "end": 1292.68, "word": " when", "probability": 0.27880859375}, {"start": 1292.68, "end": 1293.58, "word": " the", "probability": 0.293701171875}, {"start": 1293.58, "end": 1293.94, "word": " designer", "probability": 0.60986328125}, {"start": 1293.94, "end": 1294.36, "word": " designs", "probability": 0.66162109375}, {"start": 1294.36, "end": 1294.54, "word": " the", "probability": 0.62744140625}, {"start": 1294.54, "end": 1295.06, "word": " hierarchy", "probability": 0.79638671875}, {"start": 1295.06, "end": 1295.26, "word": " class,", "probability": 0.458740234375}, {"start": 1295.5, "end": 1295.96, "word": " he", "probability": 0.65478515625}, {"start": 1295.96, "end": 1296.2, "word": " puts", "probability": 0.3291015625}, {"start": 1296.2, "end": 1296.36, "word": " the", "probability": 0.6953125}, {"start": 1296.36, "end": 1296.36, "word": " basic", "probability": 0.45361328125}, {"start": 1296.36, "end": 1297.52, "word": " methods", "probability": 0.82763671875}, {"start": 1297.52, "end": 1297.9, "word": " and", "probability": 0.3916015625}, {"start": 1297.9, "end": 1298.06, "word": " then", "probability": 0.386962890625}, {"start": 1298.06, "end": 1298.38, "word": " leaves", "probability": 0.572265625}, {"start": 1298.38, "end": 1298.54, "word": " the", "probability": 0.4755859375}, {"start": 1298.54, "end": 1298.86, "word": " accept", "probability": 0.2366943359375}, {"start": 1298.86, "end": 1299.24, "word": " as", "probability": 0.281005859375}, {"start": 1299.24, "end": 1300.48, "word": " an", "probability": 0.38916015625}, {"start": 1300.48, "end": 1300.48, "word": " open", "probability": 0.84716796875}, {"start": 1300.48, "end": 1300.84, "word": " door", "probability": 0.70751953125}, {"start": 1300.84, "end": 1301.82, "word": " and", "probability": 0.361328125}, {"start": 1301.82, "end": 1302.28, "word": " the", "probability": 0.57177734375}, {"start": 1302.28, "end": 1303.0, "word": " subclasses", "probability": 0.8277994791666666}, {"start": 1303.0, "end": 1303.02, "word": " have", "probability": 0.321044921875}, {"start": 1303.02, "end": 1303.02, "word": " to", "probability": 0.96630859375}, {"start": 1303.02, "end": 1303.56, "word": " implement", "probability": 0.595703125}, {"start": 1303.56, "end": 1304.02, "word": " it", "probability": 0.250244140625}, {"start": 1304.02, "end": 1305.14, "word": " to", "probability": 0.27001953125}, {"start": 1305.14, "end": 1305.36, "word": " give", "probability": 0.2042236328125}, {"start": 1305.36, "end": 1305.8, "word": " the", "probability": 0.1990966796875}, {"start": 1305.8, "end": 1306.82, "word": " visitor", "probability": 0.92041015625}, {"start": 1306.82, "end": 1306.82, "word": " a", "probability": 0.33935546875}, {"start": 1306.82, "end": 1306.82, "word": " message,", "probability": 0.08648681640625}, {"start": 1307.08, "end": 1307.44, "word": " but", "probability": 0.75634765625}, {"start": 1307.44, "end": 1307.62, "word": " what", "probability": 0.24560546875}, {"start": 1307.62, "end": 1307.62, "word": " does", "probability": 0.398193359375}, {"start": 1307.62, "end": 1307.62, "word": " this", "probability": 0.572265625}, {"start": 1307.62, "end": 1307.94, "word": " do?", "probability": 0.42919921875}], "temperature": 1.0}, {"id": 53, "seek": 133633, "start": 1308.91, "end": 1336.33, "text": "The first time. After that, as we said, as we saw in our example, I have to add something to calculate the area, to calculate the circumference, to calculate the size, to calculate whatever, any new method, I don't modify at all, not on the interface, nor on the subclasses. What happened to these? They are fixed. But I make visitors outside, like the idea of ​​hanging out in the house, okay? I don't want to change the house, okay? As long as ... No, look, come visitor, do something to me.", "tokens": [2278, 700, 565, 13, 2381, 300, 11, 382, 321, 848, 11, 382, 321, 1866, 294, 527, 1365, 11, 286, 362, 281, 909, 746, 281, 8873, 264, 1859, 11, 281, 8873, 264, 7125, 5158, 11, 281, 8873, 264, 2744, 11, 281, 8873, 2035, 11, 604, 777, 3170, 11, 286, 500, 380, 16927, 412, 439, 11, 406, 322, 264, 9226, 11, 6051, 322, 264, 1422, 11665, 279, 13, 708, 2011, 281, 613, 30, 814, 366, 6806, 13, 583, 286, 652, 14315, 2380, 11, 411, 264, 1558, 295, 8701, 71, 9741, 484, 294, 264, 1782, 11, 1392, 30, 286, 500, 380, 528, 281, 1319, 264, 1782, 11, 1392, 30, 1018, 938, 382, 4386, 13, 883, 11, 574, 11, 808, 28222, 11, 360, 746, 281, 385, 13], "avg_logprob": -0.515120949475996, "compression_ratio": 1.7377622377622377, "no_speech_prob": 8.821487426757812e-06, "words": [{"start": 1308.91, "end": 1309.11, "word": "The", "probability": 0.054229736328125}, {"start": 1309.11, "end": 1309.19, "word": " first", "probability": 0.75390625}, {"start": 1309.19, "end": 1309.49, "word": " time.", "probability": 0.8466796875}, {"start": 1309.55, "end": 1309.83, "word": " After", "probability": 0.2410888671875}, {"start": 1309.83, "end": 1310.03, "word": " that,", "probability": 0.79833984375}, {"start": 1310.15, "end": 1310.15, "word": " as", "probability": 0.69677734375}, {"start": 1310.15, "end": 1310.31, "word": " we", "probability": 0.8310546875}, {"start": 1310.31, "end": 1310.47, "word": " said,", "probability": 0.318603515625}, {"start": 1310.61, "end": 1310.63, "word": " as", "probability": 0.80224609375}, {"start": 1310.63, "end": 1310.77, "word": " we", "probability": 0.8193359375}, {"start": 1310.77, "end": 1310.95, "word": " saw", "probability": 0.7626953125}, {"start": 1310.95, "end": 1311.13, "word": " in", "probability": 0.88232421875}, {"start": 1311.13, "end": 1311.19, "word": " our", "probability": 0.8212890625}, {"start": 1311.19, "end": 1311.43, "word": " example,", "probability": 0.9462890625}, {"start": 1311.79, "end": 1311.93, "word": " I", "probability": 0.630859375}, {"start": 1311.93, "end": 1311.95, "word": " have", "probability": 0.2222900390625}, {"start": 1311.95, "end": 1312.01, "word": " to", "probability": 0.9677734375}, {"start": 1312.01, "end": 1312.19, "word": " add", "probability": 0.8837890625}, {"start": 1312.19, "end": 1312.41, "word": " something", "probability": 0.5361328125}, {"start": 1312.41, "end": 1312.55, "word": " to", "probability": 0.499755859375}, {"start": 1312.55, "end": 1312.71, "word": " calculate", "probability": 0.826171875}, {"start": 1312.71, "end": 1312.85, "word": " the", "probability": 0.367919921875}, {"start": 1312.85, "end": 1313.19, "word": " area,", "probability": 0.65869140625}, {"start": 1313.47, "end": 1313.47, "word": " to", "probability": 0.320068359375}, {"start": 1313.47, "end": 1313.71, "word": " calculate", "probability": 0.94873046875}, {"start": 1313.71, "end": 1313.83, "word": " the", "probability": 0.814453125}, {"start": 1313.83, "end": 1314.27, "word": " circumference,", "probability": 0.704833984375}, {"start": 1314.73, "end": 1314.83, "word": " to", "probability": 0.88623046875}, {"start": 1314.83, "end": 1315.03, "word": " calculate", "probability": 0.94873046875}, {"start": 1315.03, "end": 1315.15, "word": " the", "probability": 0.884765625}, {"start": 1315.15, "end": 1315.35, "word": " size,", "probability": 0.72314453125}, {"start": 1315.45, "end": 1315.57, "word": " to", "probability": 0.78857421875}, {"start": 1315.57, "end": 1315.69, "word": " calculate", "probability": 0.9306640625}, {"start": 1315.69, "end": 1316.15, "word": " whatever,", "probability": 0.85205078125}, {"start": 1316.35, "end": 1316.61, "word": " any", "probability": 0.73046875}, {"start": 1316.61, "end": 1317.01, "word": " new", "probability": 0.892578125}, {"start": 1317.01, "end": 1317.45, "word": " method,", "probability": 0.3896484375}, {"start": 1318.15, "end": 1318.53, "word": " I", "probability": 0.85498046875}, {"start": 1318.53, "end": 1318.57, "word": " don't", "probability": 0.7548828125}, {"start": 1318.57, "end": 1318.99, "word": " modify", "probability": 0.329833984375}, {"start": 1318.99, "end": 1319.19, "word": " at", "probability": 0.482666015625}, {"start": 1319.19, "end": 1319.59, "word": " all,", "probability": 0.9501953125}, {"start": 1319.67, "end": 1319.87, "word": " not", "probability": 0.458251953125}, {"start": 1319.87, "end": 1319.99, "word": " on", "probability": 0.5185546875}, {"start": 1319.99, "end": 1320.07, "word": " the", "probability": 0.90771484375}, {"start": 1320.07, "end": 1320.75, "word": " interface,", "probability": 0.875}, {"start": 1321.51, "end": 1321.89, "word": " nor", "probability": 0.53662109375}, {"start": 1321.89, "end": 1322.11, "word": " on", "probability": 0.896484375}, {"start": 1322.11, "end": 1322.95, "word": " the", "probability": 0.89990234375}, {"start": 1322.95, "end": 1323.53, "word": " subclasses.", "probability": 0.83154296875}, {"start": 1323.53, "end": 1323.71, "word": " What", "probability": 0.3955078125}, {"start": 1323.71, "end": 1324.19, "word": " happened", "probability": 0.291748046875}, {"start": 1324.19, "end": 1324.55, "word": " to", "probability": 0.859375}, {"start": 1324.55, "end": 1324.55, "word": " these?", "probability": 0.5224609375}, {"start": 1324.77, "end": 1325.17, "word": " They", "probability": 0.377685546875}, {"start": 1325.17, "end": 1325.17, "word": " are", "probability": 0.2030029296875}, {"start": 1325.17, "end": 1325.43, "word": " fixed.", "probability": 0.71923828125}, {"start": 1325.73, "end": 1326.13, "word": " But", "probability": 0.69677734375}, {"start": 1326.13, "end": 1326.29, "word": " I", "probability": 0.90625}, {"start": 1326.29, "end": 1326.47, "word": " make", "probability": 0.521484375}, {"start": 1326.47, "end": 1327.05, "word": " visitors", "probability": 0.90087890625}, {"start": 1327.05, "end": 1327.77, "word": " outside,", "probability": 0.6591796875}, {"start": 1327.99, "end": 1328.33, "word": " like", "probability": 0.64794921875}, {"start": 1328.33, "end": 1328.45, "word": " the", "probability": 0.78369140625}, {"start": 1328.45, "end": 1328.61, "word": " idea", "probability": 0.859375}, {"start": 1328.61, "end": 1328.75, "word": " of", "probability": 0.828125}, {"start": 1328.75, "end": 1329.01, "word": " ​​hanging", "probability": 0.2839152018229167}, {"start": 1329.01, "end": 1329.17, "word": " out", "probability": 0.41845703125}, {"start": 1329.17, "end": 1329.21, "word": " in", "probability": 0.43798828125}, {"start": 1329.21, "end": 1329.31, "word": " the", "probability": 0.7919921875}, {"start": 1329.31, "end": 1329.53, "word": " house,", "probability": 0.84912109375}, {"start": 1330.15, "end": 1330.37, "word": " okay?", "probability": 0.615234375}, {"start": 1330.59, "end": 1330.81, "word": " I", "probability": 0.9736328125}, {"start": 1330.81, "end": 1331.15, "word": " don't", "probability": 0.879150390625}, {"start": 1331.15, "end": 1331.47, "word": " want", "probability": 0.775390625}, {"start": 1331.47, "end": 1331.51, "word": " to", "probability": 0.9697265625}, {"start": 1331.51, "end": 1331.63, "word": " change", "probability": 0.8896484375}, {"start": 1331.63, "end": 1331.81, "word": " the", "probability": 0.77734375}, {"start": 1331.81, "end": 1332.01, "word": " house,", "probability": 0.85205078125}, {"start": 1332.43, "end": 1333.09, "word": " okay?", "probability": 0.7197265625}, {"start": 1333.29, "end": 1333.47, "word": " As", "probability": 0.2015380859375}, {"start": 1333.47, "end": 1333.55, "word": " long", "probability": 0.56396484375}, {"start": 1333.55, "end": 1333.77, "word": " as", "probability": 0.970703125}, {"start": 1333.77, "end": 1333.85, "word": " ...", "probability": 0.265625}, {"start": 1333.93, "end": 1334.03, "word": " No,", "probability": 0.44384765625}, {"start": 1334.15, "end": 1334.53, "word": " look,", "probability": 0.298583984375}, {"start": 1334.63, "end": 1334.81, "word": " come", "probability": 0.66455078125}, {"start": 1334.81, "end": 1335.19, "word": " visitor,", "probability": 0.457763671875}, {"start": 1335.49, "end": 1335.71, "word": " do", "probability": 0.7666015625}, {"start": 1335.71, "end": 1336.07, "word": " something", "probability": 0.69580078125}, {"start": 1336.07, "end": 1336.33, "word": " to", "probability": 0.5263671875}, {"start": 1336.33, "end": 1336.33, "word": " me.", "probability": 0.9599609375}], "temperature": 1.0}, {"id": 54, "seek": 134926, "start": 1337.24, "end": 1349.26, "text": "Okay? And I'm going to be what? I'm going to have a door to the house that's always open to visitors, okay? It's like the accent, it's like the door to the house that I receive through visitors and I charge them with the work they do", "tokens": [8297, 30, 400, 286, 478, 516, 281, 312, 437, 30, 286, 478, 516, 281, 362, 257, 2853, 281, 264, 1782, 300, 311, 1009, 1269, 281, 14315, 11, 1392, 30, 467, 311, 411, 264, 11982, 11, 309, 311, 411, 264, 2853, 281, 264, 1782, 300, 286, 4774, 807, 14315, 293, 286, 4602, 552, 365, 264, 589, 436, 360], "avg_logprob": -0.5641163947253391, "compression_ratio": 1.6408450704225352, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1337.24, "end": 1337.5, "word": "Okay?", "probability": 0.254150390625}, {"start": 1337.7, "end": 1337.78, "word": " And", "probability": 0.67431640625}, {"start": 1337.78, "end": 1337.96, "word": " I'm", "probability": 0.52398681640625}, {"start": 1337.96, "end": 1338.0, "word": " going", "probability": 0.330322265625}, {"start": 1338.0, "end": 1338.08, "word": " to", "probability": 0.9638671875}, {"start": 1338.08, "end": 1338.08, "word": " be", "probability": 0.54736328125}, {"start": 1338.08, "end": 1338.34, "word": " what?", "probability": 0.1744384765625}, {"start": 1338.44, "end": 1338.66, "word": " I'm", "probability": 0.5174560546875}, {"start": 1338.66, "end": 1338.88, "word": " going", "probability": 0.5537109375}, {"start": 1338.88, "end": 1339.76, "word": " to", "probability": 0.95654296875}, {"start": 1339.76, "end": 1340.08, "word": " have", "probability": 0.5478515625}, {"start": 1340.08, "end": 1340.12, "word": " a", "probability": 0.3076171875}, {"start": 1340.12, "end": 1340.24, "word": " door", "probability": 0.6162109375}, {"start": 1340.24, "end": 1340.38, "word": " to", "probability": 0.291015625}, {"start": 1340.38, "end": 1340.42, "word": " the", "probability": 0.6123046875}, {"start": 1340.42, "end": 1340.58, "word": " house", "probability": 0.8466796875}, {"start": 1340.58, "end": 1340.94, "word": " that's", "probability": 0.46343994140625}, {"start": 1340.94, "end": 1341.04, "word": " always", "probability": 0.7890625}, {"start": 1341.04, "end": 1341.52, "word": " open", "probability": 0.84326171875}, {"start": 1341.52, "end": 1341.72, "word": " to", "probability": 0.57373046875}, {"start": 1341.72, "end": 1342.52, "word": " visitors,", "probability": 0.70166015625}, {"start": 1343.02, "end": 1343.28, "word": " okay?", "probability": 0.76904296875}, {"start": 1343.8, "end": 1344.08, "word": " It's", "probability": 0.6708984375}, {"start": 1344.08, "end": 1344.32, "word": " like", "probability": 0.83154296875}, {"start": 1344.32, "end": 1344.42, "word": " the", "probability": 0.5400390625}, {"start": 1344.42, "end": 1344.66, "word": " accent,", "probability": 0.1640625}, {"start": 1344.8, "end": 1344.94, "word": " it's", "probability": 0.844970703125}, {"start": 1344.94, "end": 1345.08, "word": " like", "probability": 0.8994140625}, {"start": 1345.08, "end": 1345.2, "word": " the", "probability": 0.708984375}, {"start": 1345.2, "end": 1345.2, "word": " door", "probability": 0.7568359375}, {"start": 1345.2, "end": 1345.32, "word": " to", "probability": 0.7578125}, {"start": 1345.32, "end": 1345.34, "word": " the", "probability": 0.84326171875}, {"start": 1345.34, "end": 1345.48, "word": " house", "probability": 0.8798828125}, {"start": 1345.48, "end": 1345.6, "word": " that", "probability": 0.2705078125}, {"start": 1345.6, "end": 1345.68, "word": " I", "probability": 0.96728515625}, {"start": 1345.68, "end": 1345.92, "word": " receive", "probability": 0.3134765625}, {"start": 1345.92, "end": 1346.16, "word": " through", "probability": 0.69970703125}, {"start": 1346.16, "end": 1346.62, "word": " visitors", "probability": 0.448974609375}, {"start": 1346.62, "end": 1346.78, "word": " and", "probability": 0.56787109375}, {"start": 1346.78, "end": 1346.82, "word": " I", "probability": 0.8056640625}, {"start": 1346.82, "end": 1347.1, "word": " charge", "probability": 0.367431640625}, {"start": 1347.1, "end": 1347.5, "word": " them", "probability": 0.900390625}, {"start": 1347.5, "end": 1348.1, "word": " with", "probability": 0.423095703125}, {"start": 1348.1, "end": 1348.16, "word": " the", "probability": 0.69677734375}, {"start": 1348.16, "end": 1348.44, "word": " work", "probability": 0.7822265625}, {"start": 1348.44, "end": 1349.04, "word": " they", "probability": 0.7353515625}, {"start": 1349.04, "end": 1349.26, "word": " do", "probability": 0.9130859375}], "temperature": 1.0}, {"id": 55, "seek": 138024, "start": 1351.04, "end": 1380.24, "text": " This is the idea of the visitor pattern. For this reason, designers who work in a hierarchy like this always put methods in the interface and put a method in the end, such as accept, to receive from within it. Anyone who wants to add something new, he adds it through visitors. Those who make APIs to support anyone who wants to add a new functionality without changing the implementation of the classes, these APIs provide this possibility.", "tokens": [639, 307, 264, 1558, 295, 264, 28222, 5102, 13, 1171, 341, 1778, 11, 16196, 567, 589, 294, 257, 22333, 411, 341, 1009, 829, 7150, 294, 264, 9226, 293, 829, 257, 3170, 294, 264, 917, 11, 1270, 382, 3241, 11, 281, 4774, 490, 1951, 309, 13, 14643, 567, 2738, 281, 909, 746, 777, 11, 415, 10860, 309, 807, 14315, 13, 3950, 567, 652, 21445, 281, 1406, 2878, 567, 2738, 281, 909, 257, 777, 14980, 1553, 4473, 264, 11420, 295, 264, 5359, 11, 613, 21445, 2893, 341, 7959, 13], "avg_logprob": -0.6438210335644808, "compression_ratio": 1.7065637065637065, "no_speech_prob": 6.079673767089844e-06, "words": [{"start": 1351.04, "end": 1351.34, "word": " This", "probability": 0.139404296875}, {"start": 1351.34, "end": 1351.48, "word": " is", "probability": 0.51708984375}, {"start": 1351.48, "end": 1351.68, "word": " the", "probability": 0.6904296875}, {"start": 1351.68, "end": 1351.86, "word": " idea", "probability": 0.53759765625}, {"start": 1351.86, "end": 1353.36, "word": " of", "probability": 0.52783203125}, {"start": 1353.36, "end": 1353.92, "word": " the", "probability": 0.340087890625}, {"start": 1353.92, "end": 1354.22, "word": " visitor", "probability": 0.783203125}, {"start": 1354.22, "end": 1354.8, "word": " pattern.", "probability": 0.86181640625}, {"start": 1355.2, "end": 1355.34, "word": " For", "probability": 0.19189453125}, {"start": 1355.34, "end": 1355.52, "word": " this", "probability": 0.6142578125}, {"start": 1355.52, "end": 1355.54, "word": " reason,", "probability": 0.8740234375}, {"start": 1355.82, "end": 1356.22, "word": " designers", "probability": 0.4404296875}, {"start": 1356.22, "end": 1357.02, "word": " who", "probability": 0.439453125}, {"start": 1357.02, "end": 1357.36, "word": " work", "probability": 0.7958984375}, {"start": 1357.36, "end": 1357.5, "word": " in", "probability": 0.3388671875}, {"start": 1357.5, "end": 1357.5, "word": " a", "probability": 0.404052734375}, {"start": 1357.5, "end": 1357.86, "word": " hierarchy", "probability": 0.7041015625}, {"start": 1357.86, "end": 1357.96, "word": " like", "probability": 0.322998046875}, {"start": 1357.96, "end": 1358.32, "word": " this", "probability": 0.75830078125}, {"start": 1358.32, "end": 1359.08, "word": " always", "probability": 0.38037109375}, {"start": 1359.08, "end": 1359.42, "word": " put", "probability": 0.54931640625}, {"start": 1359.42, "end": 1359.8, "word": " methods", "probability": 0.56689453125}, {"start": 1359.8, "end": 1359.88, "word": " in", "probability": 0.85400390625}, {"start": 1359.88, "end": 1359.94, "word": " the", "probability": 0.81640625}, {"start": 1359.94, "end": 1360.4, "word": " interface", "probability": 0.869140625}, {"start": 1360.4, "end": 1360.52, "word": " and", "probability": 0.82080078125}, {"start": 1360.52, "end": 1360.74, "word": " put", "probability": 0.10626220703125}, {"start": 1360.74, "end": 1360.88, "word": " a", "probability": 0.1871337890625}, {"start": 1360.88, "end": 1360.88, "word": " method", "probability": 0.826171875}, {"start": 1360.88, "end": 1360.88, "word": " in", "probability": 0.4306640625}, {"start": 1360.88, "end": 1360.96, "word": " the", "probability": 0.9072265625}, {"start": 1360.96, "end": 1361.18, "word": " end,", "probability": 0.466796875}, {"start": 1361.56, "end": 1361.7, "word": " such", "probability": 0.408447265625}, {"start": 1361.7, "end": 1361.72, "word": " as", "probability": 0.970703125}, {"start": 1361.72, "end": 1362.08, "word": " accept,", "probability": 0.347412109375}, {"start": 1362.74, "end": 1363.16, "word": " to", "probability": 0.2978515625}, {"start": 1363.16, "end": 1363.5, "word": " receive", "probability": 0.583984375}, {"start": 1363.5, "end": 1363.68, "word": " from", "probability": 0.1767578125}, {"start": 1363.68, "end": 1364.02, "word": " within", "probability": 0.261962890625}, {"start": 1364.02, "end": 1364.16, "word": " it.", "probability": 0.475341796875}, {"start": 1364.58, "end": 1365.18, "word": " Anyone", "probability": 0.2171630859375}, {"start": 1365.18, "end": 1365.44, "word": " who", "probability": 0.744140625}, {"start": 1365.44, "end": 1365.56, "word": " wants", "probability": 0.63623046875}, {"start": 1365.56, "end": 1365.56, "word": " to", "probability": 0.9638671875}, {"start": 1365.56, "end": 1365.64, "word": " add", "probability": 0.90185546875}, {"start": 1365.64, "end": 1365.92, "word": " something", "probability": 0.42529296875}, {"start": 1365.92, "end": 1366.38, "word": " new,", "probability": 0.86376953125}, {"start": 1366.64, "end": 1367.24, "word": " he", "probability": 0.1953125}, {"start": 1367.24, "end": 1368.24, "word": " adds", "probability": 0.5908203125}, {"start": 1368.24, "end": 1368.38, "word": " it", "probability": 0.7744140625}, {"start": 1368.38, "end": 1368.62, "word": " through", "probability": 0.76806640625}, {"start": 1368.62, "end": 1369.16, "word": " visitors.", "probability": 0.5537109375}, {"start": 1370.04, "end": 1370.2, "word": " Those", "probability": 0.58642578125}, {"start": 1370.2, "end": 1370.24, "word": " who", "probability": 0.8994140625}, {"start": 1370.24, "end": 1370.48, "word": " make", "probability": 0.470703125}, {"start": 1370.48, "end": 1370.98, "word": " APIs", "probability": 0.8857421875}, {"start": 1370.98, "end": 1371.26, "word": " to", "probability": 0.88525390625}, {"start": 1371.26, "end": 1371.64, "word": " support", "probability": 0.9169921875}, {"start": 1371.64, "end": 1372.94, "word": " anyone", "probability": 0.5205078125}, {"start": 1372.94, "end": 1373.66, "word": " who", "probability": 0.548828125}, {"start": 1373.66, "end": 1374.04, "word": " wants", "probability": 0.61962890625}, {"start": 1374.04, "end": 1374.04, "word": " to", "probability": 0.95068359375}, {"start": 1374.04, "end": 1374.32, "word": " add", "probability": 0.93017578125}, {"start": 1374.32, "end": 1374.92, "word": " a", "probability": 0.29296875}, {"start": 1374.92, "end": 1374.92, "word": " new", "probability": 0.87939453125}, {"start": 1374.92, "end": 1375.42, "word": " functionality", "probability": 0.425048828125}, {"start": 1375.42, "end": 1375.86, "word": " without", "probability": 0.833984375}, {"start": 1375.86, "end": 1376.48, "word": " changing", "probability": 0.755859375}, {"start": 1376.48, "end": 1377.5, "word": " the", "probability": 0.46826171875}, {"start": 1377.5, "end": 1378.12, "word": " implementation", "probability": 0.81396484375}, {"start": 1378.12, "end": 1378.34, "word": " of", "probability": 0.875}, {"start": 1378.34, "end": 1378.42, "word": " the", "probability": 0.470703125}, {"start": 1378.42, "end": 1378.72, "word": " classes,", "probability": 0.8583984375}, {"start": 1378.82, "end": 1379.26, "word": " these", "probability": 0.0811767578125}, {"start": 1379.26, "end": 1379.26, "word": " APIs", "probability": 0.71044921875}, {"start": 1379.26, "end": 1379.62, "word": " provide", "probability": 0.59814453125}, {"start": 1379.62, "end": 1379.8, "word": " this", "probability": 0.6376953125}, {"start": 1379.8, "end": 1380.24, "word": " possibility.", "probability": 0.474365234375}], "temperature": 1.0}, {"id": 56, "seek": 140454, "start": 1382.82, "end": 1404.54, "text": "Now, this is just the same example, did you get it guys? Let's draw and imagine the shape of the UML. Let's continue with this drawing. This is an interface with A and B, and they made an implement for A and B. Now I made it that it should have an interface called IVisitor.", "tokens": [13267, 11, 341, 307, 445, 264, 912, 1365, 11, 630, 291, 483, 309, 1074, 30, 961, 311, 2642, 293, 3811, 264, 3909, 295, 264, 624, 12683, 13, 961, 311, 2354, 365, 341, 6316, 13, 639, 307, 364, 9226, 365, 316, 293, 363, 11, 293, 436, 1027, 364, 4445, 337, 316, 293, 363, 13, 823, 286, 1027, 309, 300, 309, 820, 362, 364, 9226, 1219, 15967, 271, 3029, 13], "avg_logprob": -0.6145833540653837, "compression_ratio": 1.5307262569832403, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1382.8200000000002, "end": 1383.38, "word": "Now,", "probability": 0.318603515625}, {"start": 1383.38, "end": 1383.94, "word": " this", "probability": 0.37939453125}, {"start": 1383.94, "end": 1384.16, "word": " is", "probability": 0.291015625}, {"start": 1384.16, "end": 1384.58, "word": " just", "probability": 0.173583984375}, {"start": 1384.58, "end": 1384.86, "word": " the", "probability": 0.42724609375}, {"start": 1384.86, "end": 1384.88, "word": " same", "probability": 0.845703125}, {"start": 1384.88, "end": 1385.12, "word": " example,", "probability": 0.84814453125}, {"start": 1385.18, "end": 1385.24, "word": " did", "probability": 0.256591796875}, {"start": 1385.24, "end": 1385.24, "word": " you", "probability": 0.95458984375}, {"start": 1385.24, "end": 1385.42, "word": " get", "probability": 0.276123046875}, {"start": 1385.42, "end": 1385.56, "word": " it", "probability": 0.861328125}, {"start": 1385.56, "end": 1385.84, "word": " guys?", "probability": 0.35693359375}, {"start": 1386.84, "end": 1387.4, "word": " Let's", "probability": 0.75634765625}, {"start": 1387.4, "end": 1388.06, "word": " draw", "probability": 0.482666015625}, {"start": 1388.06, "end": 1388.28, "word": " and", "probability": 0.1370849609375}, {"start": 1388.28, "end": 1388.6, "word": " imagine", "probability": 0.8662109375}, {"start": 1388.6, "end": 1388.74, "word": " the", "probability": 0.5400390625}, {"start": 1388.74, "end": 1388.8, "word": " shape", "probability": 0.81201171875}, {"start": 1388.8, "end": 1388.96, "word": " of", "probability": 0.9619140625}, {"start": 1388.96, "end": 1388.98, "word": " the", "probability": 0.471435546875}, {"start": 1388.98, "end": 1389.3, "word": " UML.", "probability": 0.6766357421875}, {"start": 1390.56, "end": 1391.12, "word": " Let's", "probability": 0.669189453125}, {"start": 1391.12, "end": 1391.42, "word": " continue", "probability": 0.68017578125}, {"start": 1391.42, "end": 1391.54, "word": " with", "probability": 0.2373046875}, {"start": 1391.54, "end": 1391.58, "word": " this", "probability": 0.771484375}, {"start": 1391.58, "end": 1391.82, "word": " drawing.", "probability": 0.80419921875}, {"start": 1392.58, "end": 1392.8, "word": " This", "probability": 0.7880859375}, {"start": 1392.8, "end": 1392.84, "word": " is", "probability": 0.919921875}, {"start": 1392.84, "end": 1393.46, "word": " an", "probability": 0.6708984375}, {"start": 1393.46, "end": 1393.46, "word": " interface", "probability": 0.888671875}, {"start": 1393.46, "end": 1394.72, "word": " with", "probability": 0.213134765625}, {"start": 1394.72, "end": 1395.14, "word": " A", "probability": 0.798828125}, {"start": 1395.14, "end": 1395.32, "word": " and", "probability": 0.92919921875}, {"start": 1395.32, "end": 1395.56, "word": " B,", "probability": 0.998046875}, {"start": 1396.12, "end": 1396.52, "word": " and", "probability": 0.75732421875}, {"start": 1396.52, "end": 1396.76, "word": " they", "probability": 0.2291259765625}, {"start": 1396.76, "end": 1397.02, "word": " made", "probability": 0.216796875}, {"start": 1397.02, "end": 1397.32, "word": " an", "probability": 0.63818359375}, {"start": 1397.32, "end": 1397.62, "word": " implement", "probability": 0.65185546875}, {"start": 1397.62, "end": 1397.88, "word": " for", "probability": 0.81787109375}, {"start": 1397.88, "end": 1398.06, "word": " A", "probability": 0.72216796875}, {"start": 1398.06, "end": 1398.18, "word": " and", "probability": 0.943359375}, {"start": 1398.18, "end": 1398.4, "word": " B.", "probability": 0.99365234375}, {"start": 1398.86, "end": 1399.24, "word": " Now", "probability": 0.309326171875}, {"start": 1399.24, "end": 1399.48, "word": " I", "probability": 0.459228515625}, {"start": 1399.48, "end": 1399.68, "word": " made", "probability": 0.15869140625}, {"start": 1399.68, "end": 1400.16, "word": " it", "probability": 0.6806640625}, {"start": 1400.16, "end": 1400.58, "word": " that", "probability": 0.1715087890625}, {"start": 1400.58, "end": 1401.02, "word": " it", "probability": 0.63134765625}, {"start": 1401.02, "end": 1401.14, "word": " should", "probability": 0.375244140625}, {"start": 1401.14, "end": 1401.46, "word": " have", "probability": 0.92578125}, {"start": 1401.46, "end": 1401.64, "word": " an", "probability": 0.884765625}, {"start": 1401.64, "end": 1402.24, "word": " interface", "probability": 0.896484375}, {"start": 1402.24, "end": 1403.88, "word": " called", "probability": 0.61376953125}, {"start": 1403.88, "end": 1404.54, "word": " IVisitor.", "probability": 0.7325846354166666}], "temperature": 1.0}, {"id": 57, "seek": 143364, "start": 1408.08, "end": 1433.64, "text": "because here I have x and y so here in the interface you have to create a method called process that takes x and process that takes y ok? and based on that here you have to create a method called accept that takes an object of type mean i visitor and based on how much you added the method accept here you have to add it below", "tokens": [17566, 510, 286, 362, 2031, 293, 288, 370, 510, 294, 264, 9226, 291, 362, 281, 1884, 257, 3170, 1219, 1399, 300, 2516, 2031, 293, 1399, 300, 2516, 288, 3133, 30, 293, 2361, 322, 300, 510, 291, 362, 281, 1884, 257, 3170, 1219, 3241, 300, 2516, 364, 2657, 295, 2010, 914, 741, 28222, 293, 2361, 322, 577, 709, 291, 3869, 264, 3170, 3241, 510, 291, 362, 281, 909, 309, 2507], "avg_logprob": -0.495982164144516, "compression_ratio": 2.0123456790123457, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1408.08, "end": 1408.38, "word": "because", "probability": 0.193115234375}, {"start": 1408.38, "end": 1408.66, "word": " here", "probability": 0.39404296875}, {"start": 1408.66, "end": 1408.7, "word": " I", "probability": 0.463623046875}, {"start": 1408.7, "end": 1408.72, "word": " have", "probability": 0.91845703125}, {"start": 1408.72, "end": 1408.98, "word": " x", "probability": 0.6376953125}, {"start": 1408.98, "end": 1409.14, "word": " and", "probability": 0.48095703125}, {"start": 1409.14, "end": 1409.24, "word": " y", "probability": 0.9921875}, {"start": 1409.24, "end": 1409.96, "word": " so", "probability": 0.33251953125}, {"start": 1409.96, "end": 1410.42, "word": " here", "probability": 0.2047119140625}, {"start": 1410.42, "end": 1410.58, "word": " in", "probability": 0.69384765625}, {"start": 1410.58, "end": 1410.66, "word": " the", "probability": 0.6767578125}, {"start": 1410.66, "end": 1411.04, "word": " interface", "probability": 0.8837890625}, {"start": 1411.04, "end": 1411.18, "word": " you", "probability": 0.482421875}, {"start": 1411.18, "end": 1411.18, "word": " have", "probability": 0.367431640625}, {"start": 1411.18, "end": 1411.18, "word": " to", "probability": 0.9599609375}, {"start": 1411.18, "end": 1411.34, "word": " create", "probability": 0.313232421875}, {"start": 1411.34, "end": 1411.44, "word": " a", "probability": 0.779296875}, {"start": 1411.44, "end": 1411.66, "word": " method", "probability": 0.94970703125}, {"start": 1411.66, "end": 1411.9, "word": " called", "probability": 0.60205078125}, {"start": 1411.9, "end": 1412.5, "word": " process", "probability": 0.943359375}, {"start": 1412.5, "end": 1413.86, "word": " that", "probability": 0.18408203125}, {"start": 1413.86, "end": 1414.04, "word": " takes", "probability": 0.72998046875}, {"start": 1414.04, "end": 1414.48, "word": " x", "probability": 0.78857421875}, {"start": 1414.48, "end": 1414.98, "word": " and", "probability": 0.8740234375}, {"start": 1414.98, "end": 1415.56, "word": " process", "probability": 0.9130859375}, {"start": 1415.56, "end": 1417.16, "word": " that", "probability": 0.53759765625}, {"start": 1417.16, "end": 1417.36, "word": " takes", "probability": 0.80859375}, {"start": 1417.36, "end": 1417.7, "word": " y", "probability": 0.97607421875}, {"start": 1417.7, "end": 1419.96, "word": " ok?", "probability": 0.1680908203125}, {"start": 1420.52, "end": 1420.78, "word": " and", "probability": 0.7685546875}, {"start": 1420.78, "end": 1420.96, "word": " based", "probability": 0.482177734375}, {"start": 1420.96, "end": 1421.22, "word": " on", "probability": 0.94140625}, {"start": 1421.22, "end": 1421.4, "word": " that", "probability": 0.53369140625}, {"start": 1421.4, "end": 1421.76, "word": " here", "probability": 0.27001953125}, {"start": 1421.76, "end": 1421.82, "word": " you", "probability": 0.92138671875}, {"start": 1421.82, "end": 1421.98, "word": " have", "probability": 0.70849609375}, {"start": 1421.98, "end": 1421.98, "word": " to", "probability": 0.96728515625}, {"start": 1421.98, "end": 1422.2, "word": " create", "probability": 0.84765625}, {"start": 1422.2, "end": 1422.3, "word": " a", "probability": 0.94140625}, {"start": 1422.3, "end": 1422.68, "word": " method", "probability": 0.95556640625}, {"start": 1422.68, "end": 1423.8, "word": " called", "probability": 0.79736328125}, {"start": 1423.8, "end": 1424.26, "word": " accept", "probability": 0.87353515625}, {"start": 1424.26, "end": 1425.36, "word": " that", "probability": 0.29833984375}, {"start": 1425.36, "end": 1425.68, "word": " takes", "probability": 0.78662109375}, {"start": 1425.68, "end": 1425.8, "word": " an", "probability": 0.472412109375}, {"start": 1425.8, "end": 1426.04, "word": " object", "probability": 0.97021484375}, {"start": 1426.04, "end": 1426.2, "word": " of", "probability": 0.422607421875}, {"start": 1426.2, "end": 1426.42, "word": " type", "probability": 0.342529296875}, {"start": 1426.42, "end": 1426.76, "word": " mean", "probability": 0.484375}, {"start": 1426.76, "end": 1427.8, "word": " i", "probability": 0.2476806640625}, {"start": 1427.8, "end": 1428.74, "word": " visitor", "probability": 0.87109375}, {"start": 1428.74, "end": 1430.26, "word": " and", "probability": 0.8828125}, {"start": 1430.26, "end": 1430.46, "word": " based", "probability": 0.87158203125}, {"start": 1430.46, "end": 1430.7, "word": " on", "probability": 0.9482421875}, {"start": 1430.7, "end": 1431.06, "word": " how", "probability": 0.294189453125}, {"start": 1431.06, "end": 1431.12, "word": " much", "probability": 0.493408203125}, {"start": 1431.12, "end": 1431.18, "word": " you", "probability": 0.45849609375}, {"start": 1431.18, "end": 1431.38, "word": " added", "probability": 0.5244140625}, {"start": 1431.38, "end": 1431.54, "word": " the", "probability": 0.51806640625}, {"start": 1431.54, "end": 1431.74, "word": " method", "probability": 0.9580078125}, {"start": 1431.74, "end": 1432.16, "word": " accept", "probability": 0.8486328125}, {"start": 1432.16, "end": 1432.52, "word": " here", "probability": 0.7353515625}, {"start": 1432.52, "end": 1432.66, "word": " you", "probability": 0.72265625}, {"start": 1432.66, "end": 1432.76, "word": " have", "probability": 0.8095703125}, {"start": 1432.76, "end": 1432.96, "word": " to", "probability": 0.96484375}, {"start": 1432.96, "end": 1433.28, "word": " add", "probability": 0.640625}, {"start": 1433.28, "end": 1433.48, "word": " it", "probability": 0.87109375}, {"start": 1433.48, "end": 1433.64, "word": " below", "probability": 0.5087890625}], "temperature": 1.0}, {"id": 58, "seek": 146167, "start": 1436.11, "end": 1461.67, "text": " here I have accept, also ivisitor and here accept ivisitor and this if we see the code in it what is it? ivisitor is v dot process will take this", "tokens": [510, 286, 362, 3241, 11, 611, 32412, 271, 3029, 293, 510, 3241, 32412, 271, 3029, 293, 341, 498, 321, 536, 264, 3089, 294, 309, 437, 307, 309, 30, 32412, 271, 3029, 307, 371, 5893, 1399, 486, 747, 341], "avg_logprob": -0.5380609066058428, "compression_ratio": 1.46, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1436.11, "end": 1436.39, "word": " here", "probability": 0.296875}, {"start": 1436.39, "end": 1436.53, "word": " I", "probability": 0.66845703125}, {"start": 1436.53, "end": 1436.71, "word": " have", "probability": 0.85986328125}, {"start": 1436.71, "end": 1437.29, "word": " accept,", "probability": 0.66162109375}, {"start": 1437.77, "end": 1438.73, "word": " also", "probability": 0.55419921875}, {"start": 1438.73, "end": 1439.51, "word": " ivisitor", "probability": 0.7222900390625}, {"start": 1439.51, "end": 1442.49, "word": " and", "probability": 0.70166015625}, {"start": 1442.49, "end": 1442.63, "word": " here", "probability": 0.67578125}, {"start": 1442.63, "end": 1443.27, "word": " accept", "probability": 0.8037109375}, {"start": 1443.27, "end": 1446.81, "word": " ivisitor", "probability": 0.8130696614583334}, {"start": 1446.81, "end": 1448.61, "word": " and", "probability": 0.779296875}, {"start": 1448.61, "end": 1448.87, "word": " this", "probability": 0.413818359375}, {"start": 1448.87, "end": 1449.01, "word": " if", "probability": 0.459716796875}, {"start": 1449.01, "end": 1449.21, "word": " we", "probability": 0.8837890625}, {"start": 1449.21, "end": 1449.41, "word": " see", "probability": 0.666015625}, {"start": 1449.41, "end": 1449.59, "word": " the", "probability": 0.84033203125}, {"start": 1449.59, "end": 1449.81, "word": " code", "probability": 0.900390625}, {"start": 1449.81, "end": 1450.05, "word": " in", "probability": 0.120361328125}, {"start": 1450.05, "end": 1451.05, "word": " it", "probability": 0.7490234375}, {"start": 1451.05, "end": 1453.75, "word": " what", "probability": 0.22314453125}, {"start": 1453.75, "end": 1453.75, "word": " is", "probability": 0.595703125}, {"start": 1453.75, "end": 1454.13, "word": " it?", "probability": 0.71337890625}, {"start": 1454.43, "end": 1455.15, "word": " ivisitor", "probability": 0.8113606770833334}, {"start": 1455.15, "end": 1455.37, "word": " is", "probability": 0.86083984375}, {"start": 1455.37, "end": 1455.73, "word": " v", "probability": 0.58544921875}, {"start": 1455.73, "end": 1457.57, "word": " dot", "probability": 0.4091796875}, {"start": 1457.57, "end": 1458.51, "word": " process", "probability": 0.93359375}, {"start": 1458.51, "end": 1461.11, "word": " will", "probability": 0.1251220703125}, {"start": 1461.11, "end": 1461.33, "word": " take", "probability": 0.681640625}, {"start": 1461.33, "end": 1461.67, "word": " this", "probability": 0.9306640625}], "temperature": 1.0}, {"id": 59, "seek": 148810, "start": 1463.82, "end": 1488.1, "text": " ok guys? now this one uses x and this one uses y now if you want to add a new method all you have to do is create a new visitor for example we will call this area visitor", "tokens": [3133, 1074, 30, 586, 341, 472, 4960, 2031, 293, 341, 472, 4960, 288, 586, 498, 291, 528, 281, 909, 257, 777, 3170, 439, 291, 362, 281, 360, 307, 1884, 257, 777, 28222, 337, 1365, 321, 486, 818, 341, 1859, 28222], "avg_logprob": -0.3770960249551913, "compression_ratio": 1.5, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1463.82, "end": 1464.12, "word": " ok", "probability": 0.065185546875}, {"start": 1464.12, "end": 1464.64, "word": " guys?", "probability": 0.763671875}, {"start": 1464.92, "end": 1465.44, "word": " now", "probability": 0.474853515625}, {"start": 1465.44, "end": 1470.02, "word": " this", "probability": 0.4453125}, {"start": 1470.02, "end": 1470.1, "word": " one", "probability": 0.4091796875}, {"start": 1470.1, "end": 1470.48, "word": " uses", "probability": 0.5673828125}, {"start": 1470.48, "end": 1471.0, "word": " x", "probability": 0.60302734375}, {"start": 1471.0, "end": 1471.12, "word": " and", "probability": 0.88232421875}, {"start": 1471.12, "end": 1471.28, "word": " this", "probability": 0.7021484375}, {"start": 1471.28, "end": 1471.28, "word": " one", "probability": 0.8515625}, {"start": 1471.28, "end": 1472.52, "word": " uses", "probability": 0.87451171875}, {"start": 1472.52, "end": 1473.38, "word": " y", "probability": 0.9765625}, {"start": 1473.38, "end": 1474.16, "word": " now", "probability": 0.7119140625}, {"start": 1474.16, "end": 1474.62, "word": " if", "probability": 0.7001953125}, {"start": 1474.62, "end": 1475.26, "word": " you", "probability": 0.96484375}, {"start": 1475.26, "end": 1475.26, "word": " want", "probability": 0.732421875}, {"start": 1475.26, "end": 1475.52, "word": " to", "probability": 0.96533203125}, {"start": 1475.52, "end": 1475.94, "word": " add", "probability": 0.90283203125}, {"start": 1475.94, "end": 1477.04, "word": " a", "probability": 0.87841796875}, {"start": 1477.04, "end": 1477.04, "word": " new", "probability": 0.91259765625}, {"start": 1477.04, "end": 1477.36, "word": " method", "probability": 0.931640625}, {"start": 1477.36, "end": 1478.34, "word": " all", "probability": 0.58154296875}, {"start": 1478.34, "end": 1478.52, "word": " you", "probability": 0.927734375}, {"start": 1478.52, "end": 1478.64, "word": " have", "probability": 0.65771484375}, {"start": 1478.64, "end": 1478.74, "word": " to", "probability": 0.970703125}, {"start": 1478.74, "end": 1478.98, "word": " do", "probability": 0.95654296875}, {"start": 1478.98, "end": 1479.5, "word": " is", "probability": 0.89990234375}, {"start": 1479.5, "end": 1480.04, "word": " create", "probability": 0.424560546875}, {"start": 1480.04, "end": 1481.0, "word": " a", "probability": 0.96533203125}, {"start": 1481.0, "end": 1481.02, "word": " new", "probability": 0.91259765625}, {"start": 1481.02, "end": 1481.38, "word": " visitor", "probability": 0.95263671875}, {"start": 1481.38, "end": 1483.76, "word": " for", "probability": 0.47998046875}, {"start": 1483.76, "end": 1484.12, "word": " example", "probability": 0.9326171875}, {"start": 1484.12, "end": 1484.32, "word": " we", "probability": 0.364501953125}, {"start": 1484.32, "end": 1484.4, "word": " will", "probability": 0.53662109375}, {"start": 1484.4, "end": 1484.76, "word": " call", "probability": 0.6318359375}, {"start": 1484.76, "end": 1484.94, "word": " this", "probability": 0.67529296875}, {"start": 1484.94, "end": 1485.56, "word": " area", "probability": 0.5517578125}, {"start": 1485.56, "end": 1488.1, "word": " visitor", "probability": 0.85302734375}], "temperature": 1.0}, {"id": 60, "seek": 151360, "start": 1489.92, "end": 1513.6, "text": " Of course, this is an implementation for process X and process Y Now, this is the client Who is the client? It is like the main method Now, the main method takes objects from X and Y, but in the end it will deal with them as", "tokens": [2720, 1164, 11, 341, 307, 364, 11420, 337, 1399, 1783, 293, 1399, 398, 823, 11, 341, 307, 264, 6423, 2102, 307, 264, 6423, 30, 467, 307, 411, 264, 2135, 3170, 823, 11, 264, 2135, 3170, 2516, 6565, 490, 1783, 293, 398, 11, 457, 294, 264, 917, 309, 486, 2028, 365, 552, 382], "avg_logprob": -0.6096697978253635, "compression_ratio": 1.5957446808510638, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1489.9199999999998, "end": 1490.36, "word": " Of", "probability": 0.0677490234375}, {"start": 1490.36, "end": 1490.66, "word": " course,", "probability": 0.9326171875}, {"start": 1490.84, "end": 1491.0, "word": " this", "probability": 0.5439453125}, {"start": 1491.0, "end": 1491.1, "word": " is", "probability": 0.25537109375}, {"start": 1491.1, "end": 1491.36, "word": " an", "probability": 0.12371826171875}, {"start": 1491.36, "end": 1491.72, "word": " implementation", "probability": 0.5732421875}, {"start": 1491.72, "end": 1491.94, "word": " for", "probability": 0.480712890625}, {"start": 1491.94, "end": 1492.54, "word": " process", "probability": 0.381591796875}, {"start": 1492.54, "end": 1494.16, "word": " X", "probability": 0.60595703125}, {"start": 1494.16, "end": 1495.52, "word": " and", "probability": 0.83984375}, {"start": 1495.52, "end": 1496.06, "word": " process", "probability": 0.8310546875}, {"start": 1496.06, "end": 1499.4, "word": " Y", "probability": 0.978515625}, {"start": 1499.4, "end": 1500.68, "word": " Now,", "probability": 0.429443359375}, {"start": 1500.74, "end": 1500.92, "word": " this", "probability": 0.583984375}, {"start": 1500.92, "end": 1500.92, "word": " is", "probability": 0.8818359375}, {"start": 1500.92, "end": 1501.06, "word": " the", "probability": 0.75146484375}, {"start": 1501.06, "end": 1501.5, "word": " client", "probability": 0.669921875}, {"start": 1501.5, "end": 1503.16, "word": " Who", "probability": 0.191650390625}, {"start": 1503.16, "end": 1503.22, "word": " is", "probability": 0.830078125}, {"start": 1503.22, "end": 1503.32, "word": " the", "probability": 0.677734375}, {"start": 1503.32, "end": 1503.6, "word": " client?", "probability": 0.94091796875}, {"start": 1504.2, "end": 1504.64, "word": " It", "probability": 0.208984375}, {"start": 1504.64, "end": 1504.7, "word": " is", "probability": 0.6162109375}, {"start": 1504.7, "end": 1504.82, "word": " like", "probability": 0.471923828125}, {"start": 1504.82, "end": 1504.92, "word": " the", "probability": 0.7431640625}, {"start": 1504.92, "end": 1505.04, "word": " main", "probability": 0.86572265625}, {"start": 1505.04, "end": 1505.4, "word": " method", "probability": 0.95068359375}, {"start": 1505.4, "end": 1507.2, "word": " Now,", "probability": 0.363037109375}, {"start": 1507.36, "end": 1507.46, "word": " the", "probability": 0.84521484375}, {"start": 1507.46, "end": 1507.62, "word": " main", "probability": 0.9306640625}, {"start": 1507.62, "end": 1508.06, "word": " method", "probability": 0.94482421875}, {"start": 1508.06, "end": 1509.26, "word": " takes", "probability": 0.06304931640625}, {"start": 1509.26, "end": 1509.84, "word": " objects", "probability": 0.86572265625}, {"start": 1509.84, "end": 1510.16, "word": " from", "probability": 0.8173828125}, {"start": 1510.16, "end": 1511.16, "word": " X", "probability": 0.7158203125}, {"start": 1511.16, "end": 1511.34, "word": " and", "probability": 0.8466796875}, {"start": 1511.34, "end": 1511.58, "word": " Y,", "probability": 0.99169921875}, {"start": 1512.3, "end": 1512.38, "word": " but", "probability": 0.798828125}, {"start": 1512.38, "end": 1512.5, "word": " in", "probability": 0.52587890625}, {"start": 1512.5, "end": 1512.58, "word": " the", "probability": 0.89111328125}, {"start": 1512.58, "end": 1512.76, "word": " end", "probability": 0.896484375}, {"start": 1512.76, "end": 1512.9, "word": " it", "probability": 0.489013671875}, {"start": 1512.9, "end": 1512.92, "word": " will", "probability": 0.479248046875}, {"start": 1512.92, "end": 1513.14, "word": " deal", "probability": 0.38916015625}, {"start": 1513.14, "end": 1513.32, "word": " with", "probability": 0.8984375}, {"start": 1513.32, "end": 1513.46, "word": " them", "probability": 0.759765625}, {"start": 1513.46, "end": 1513.6, "word": " as", "probability": 0.564453125}], "temperature": 1.0}, {"id": 61, "seek": 154399, "start": 1515.27, "end": 1543.99, "text": " the interface and it will create an object from visitors area visitors and it will deal with it as if it is the visitor and in the end in order for it to execute anything from here it takes the interface this shape for example it takes a shape and says accept and sends it the v which is from the visitor that you want it to be something like this", "tokens": [264, 9226, 293, 309, 486, 1884, 364, 2657, 490, 14315, 1859, 14315, 293, 309, 486, 2028, 365, 309, 382, 498, 309, 307, 264, 28222, 293, 294, 264, 917, 294, 1668, 337, 309, 281, 14483, 1340, 490, 510, 309, 2516, 264, 9226, 341, 3909, 337, 1365, 309, 2516, 257, 3909, 293, 1619, 3241, 293, 14790, 309, 264, 371, 597, 307, 490, 264, 28222, 300, 291, 528, 309, 281, 312, 746, 411, 341], "avg_logprob": -0.5447048478656344, "compression_ratio": 1.9661016949152543, "no_speech_prob": 1.823902130126953e-05, "words": [{"start": 1515.27, "end": 1515.49, "word": " the", "probability": 0.1314697265625}, {"start": 1515.49, "end": 1516.01, "word": " interface", "probability": 0.88525390625}, {"start": 1516.01, "end": 1516.69, "word": " and", "probability": 0.450927734375}, {"start": 1516.69, "end": 1516.85, "word": " it", "probability": 0.282470703125}, {"start": 1516.85, "end": 1516.85, "word": " will", "probability": 0.6513671875}, {"start": 1516.85, "end": 1517.05, "word": " create", "probability": 0.74658203125}, {"start": 1517.05, "end": 1517.25, "word": " an", "probability": 0.488525390625}, {"start": 1517.25, "end": 1517.43, "word": " object", "probability": 0.95751953125}, {"start": 1517.43, "end": 1517.65, "word": " from", "probability": 0.6650390625}, {"start": 1517.65, "end": 1518.13, "word": " visitors", "probability": 0.708984375}, {"start": 1518.13, "end": 1518.63, "word": " area", "probability": 0.1605224609375}, {"start": 1518.63, "end": 1519.07, "word": " visitors", "probability": 0.5068359375}, {"start": 1519.07, "end": 1519.77, "word": " and", "probability": 0.3603515625}, {"start": 1519.77, "end": 1519.85, "word": " it", "probability": 0.70556640625}, {"start": 1519.85, "end": 1519.91, "word": " will", "probability": 0.80126953125}, {"start": 1519.91, "end": 1520.17, "word": " deal", "probability": 0.50634765625}, {"start": 1520.17, "end": 1520.33, "word": " with", "probability": 0.88525390625}, {"start": 1520.33, "end": 1520.51, "word": " it", "probability": 0.49462890625}, {"start": 1520.51, "end": 1520.65, "word": " as", "probability": 0.2010498046875}, {"start": 1520.65, "end": 1520.95, "word": " if", "probability": 0.45068359375}, {"start": 1520.95, "end": 1520.95, "word": " it", "probability": 0.89697265625}, {"start": 1520.95, "end": 1521.03, "word": " is", "probability": 0.48779296875}, {"start": 1521.03, "end": 1522.37, "word": " the", "probability": 0.498046875}, {"start": 1522.37, "end": 1522.67, "word": " visitor", "probability": 0.84033203125}, {"start": 1522.67, "end": 1523.61, "word": " and", "probability": 0.7890625}, {"start": 1523.61, "end": 1523.71, "word": " in", "probability": 0.45556640625}, {"start": 1523.71, "end": 1523.79, "word": " the", "probability": 0.83935546875}, {"start": 1523.79, "end": 1524.03, "word": " end", "probability": 0.8994140625}, {"start": 1524.03, "end": 1524.33, "word": " in", "probability": 0.27392578125}, {"start": 1524.33, "end": 1524.43, "word": " order", "probability": 0.91015625}, {"start": 1524.43, "end": 1524.83, "word": " for", "probability": 0.331787109375}, {"start": 1524.83, "end": 1525.11, "word": " it", "probability": 0.74267578125}, {"start": 1525.11, "end": 1525.19, "word": " to", "probability": 0.9619140625}, {"start": 1525.19, "end": 1525.51, "word": " execute", "probability": 0.50732421875}, {"start": 1525.51, "end": 1525.93, "word": " anything", "probability": 0.51708984375}, {"start": 1525.93, "end": 1526.13, "word": " from", "probability": 0.7822265625}, {"start": 1526.13, "end": 1526.35, "word": " here", "probability": 0.8173828125}, {"start": 1526.35, "end": 1526.53, "word": " it", "probability": 0.7822265625}, {"start": 1526.53, "end": 1526.93, "word": " takes", "probability": 0.53369140625}, {"start": 1526.93, "end": 1527.77, "word": " the", "probability": 0.35205078125}, {"start": 1527.77, "end": 1528.33, "word": " interface", "probability": 0.759765625}, {"start": 1528.33, "end": 1528.59, "word": " this", "probability": 0.36572265625}, {"start": 1528.59, "end": 1528.95, "word": " shape", "probability": 0.9150390625}, {"start": 1528.95, "end": 1529.13, "word": " for", "probability": 0.78857421875}, {"start": 1529.13, "end": 1529.37, "word": " example", "probability": 0.90380859375}, {"start": 1529.37, "end": 1532.01, "word": " it", "probability": 0.345703125}, {"start": 1532.01, "end": 1532.57, "word": " takes", "probability": 0.81787109375}, {"start": 1532.57, "end": 1532.73, "word": " a", "probability": 0.30126953125}, {"start": 1532.73, "end": 1533.11, "word": " shape", "probability": 0.9111328125}, {"start": 1533.11, "end": 1534.87, "word": " and", "probability": 0.8779296875}, {"start": 1534.87, "end": 1535.05, "word": " says", "probability": 0.45556640625}, {"start": 1535.05, "end": 1535.55, "word": " accept", "probability": 0.80615234375}, {"start": 1535.55, "end": 1539.19, "word": " and", "probability": 0.8408203125}, {"start": 1539.19, "end": 1539.49, "word": " sends", "probability": 0.44384765625}, {"start": 1539.49, "end": 1539.73, "word": " it", "probability": 0.7294921875}, {"start": 1539.73, "end": 1540.07, "word": " the", "probability": 0.54052734375}, {"start": 1540.07, "end": 1540.29, "word": " v", "probability": 0.67919921875}, {"start": 1540.29, "end": 1540.55, "word": " which", "probability": 0.63427734375}, {"start": 1540.55, "end": 1540.71, "word": " is", "probability": 0.7802734375}, {"start": 1540.71, "end": 1540.95, "word": " from", "probability": 0.40380859375}, {"start": 1540.95, "end": 1541.79, "word": " the", "probability": 0.82421875}, {"start": 1541.79, "end": 1542.03, "word": " visitor", "probability": 0.90673828125}, {"start": 1542.03, "end": 1542.15, "word": " that", "probability": 0.334716796875}, {"start": 1542.15, "end": 1542.31, "word": " you", "probability": 0.89501953125}, {"start": 1542.31, "end": 1542.55, "word": " want", "probability": 0.70703125}, {"start": 1542.55, "end": 1542.71, "word": " it", "probability": 0.44580078125}, {"start": 1542.71, "end": 1542.71, "word": " to", "probability": 0.5712890625}, {"start": 1542.71, "end": 1543.15, "word": " be", "probability": 0.9052734375}, {"start": 1543.15, "end": 1543.55, "word": " something", "probability": 0.152587890625}, {"start": 1543.55, "end": 1543.75, "word": " like", "probability": 0.80712890625}, {"start": 1543.75, "end": 1543.99, "word": " this", "probability": 0.58056640625}], "temperature": 1.0}, {"id": 62, "seek": 155519, "start": 1545.65, "end": 1555.19, "text": " For the UML diagram of the visitor pattern Do you understand the idea guys? Okay, now that we have covered this, let's go to the slides", "tokens": [1171, 264, 624, 12683, 10686, 295, 264, 28222, 5102, 1144, 291, 1223, 264, 1558, 1074, 30, 1033, 11, 586, 300, 321, 362, 5343, 341, 11, 718, 311, 352, 281, 264, 9788], "avg_logprob": -0.6269531045109034, "compression_ratio": 1.2035398230088497, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1545.65, "end": 1546.01, "word": " For", "probability": 0.11065673828125}, {"start": 1546.01, "end": 1546.61, "word": " the", "probability": 0.5458984375}, {"start": 1546.61, "end": 1546.91, "word": " UML", "probability": 0.60595703125}, {"start": 1546.91, "end": 1547.47, "word": " diagram", "probability": 0.78125}, {"start": 1547.47, "end": 1547.95, "word": " of", "probability": 0.58984375}, {"start": 1547.95, "end": 1548.07, "word": " the", "probability": 0.380615234375}, {"start": 1548.07, "end": 1548.49, "word": " visitor", "probability": 0.880859375}, {"start": 1548.49, "end": 1549.29, "word": " pattern", "probability": 0.9052734375}, {"start": 1549.29, "end": 1549.77, "word": " Do", "probability": 0.2227783203125}, {"start": 1549.77, "end": 1549.77, "word": " you", "probability": 0.95068359375}, {"start": 1549.77, "end": 1549.95, "word": " understand", "probability": 0.572265625}, {"start": 1549.95, "end": 1550.07, "word": " the", "probability": 0.54833984375}, {"start": 1550.07, "end": 1550.25, "word": " idea", "probability": 0.64306640625}, {"start": 1550.25, "end": 1550.53, "word": " guys?", "probability": 0.379150390625}, {"start": 1551.13, "end": 1551.51, "word": " Okay,", "probability": 0.1912841796875}, {"start": 1552.07, "end": 1552.35, "word": " now", "probability": 0.4189453125}, {"start": 1552.35, "end": 1552.67, "word": " that", "probability": 0.30322265625}, {"start": 1552.67, "end": 1553.11, "word": " we", "probability": 0.92041015625}, {"start": 1553.11, "end": 1553.17, "word": " have", "probability": 0.309326171875}, {"start": 1553.17, "end": 1553.39, "word": " covered", "probability": 0.6865234375}, {"start": 1553.39, "end": 1553.67, "word": " this,", "probability": 0.71435546875}, {"start": 1553.81, "end": 1554.17, "word": " let's", "probability": 0.93359375}, {"start": 1554.17, "end": 1554.33, "word": " go", "probability": 0.4267578125}, {"start": 1554.33, "end": 1554.57, "word": " to", "probability": 0.74609375}, {"start": 1554.57, "end": 1554.87, "word": " the", "probability": 0.6796875}, {"start": 1554.87, "end": 1555.19, "word": " slides", "probability": 0.93212890625}], "temperature": 1.0}, {"id": 63, "seek": 158631, "start": 1562.89, "end": 1586.31, "text": " Motivation The visitor pattern represents an operation to be performed on the elements of the object structure Because this is what we call the object structure, which I don't want to modify, okay? What does the visitor actually represent? Whose operation is going to be carried out on this object structure? And each visitor is responsible for a specific job. Visitor", "tokens": [8956, 592, 399, 440, 28222, 5102, 8855, 364, 6916, 281, 312, 10332, 322, 264, 4959, 295, 264, 2657, 3877, 1436, 341, 307, 437, 321, 818, 264, 2657, 3877, 11, 597, 286, 500, 380, 528, 281, 16927, 11, 1392, 30, 708, 775, 264, 28222, 767, 2906, 30, 28463, 6916, 307, 516, 281, 312, 9094, 484, 322, 341, 2657, 3877, 30, 400, 1184, 28222, 307, 6250, 337, 257, 2685, 1691, 13, 10410, 3029], "avg_logprob": -0.4409722259475125, "compression_ratio": 1.7004608294930876, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1562.89, "end": 1563.49, "word": " Motivation", "probability": 0.76025390625}, {"start": 1563.49, "end": 1564.09, "word": " The", "probability": 0.06549072265625}, {"start": 1564.09, "end": 1564.89, "word": " visitor", "probability": 0.658203125}, {"start": 1564.89, "end": 1565.31, "word": " pattern", "probability": 0.84521484375}, {"start": 1565.31, "end": 1567.43, "word": " represents", "probability": 0.8837890625}, {"start": 1567.43, "end": 1567.99, "word": " an", "probability": 0.8818359375}, {"start": 1567.99, "end": 1568.49, "word": " operation", "probability": 0.94091796875}, {"start": 1568.49, "end": 1569.01, "word": " to", "probability": 0.8837890625}, {"start": 1569.01, "end": 1569.17, "word": " be", "probability": 0.953125}, {"start": 1569.17, "end": 1569.75, "word": " performed", "probability": 0.74951171875}, {"start": 1569.75, "end": 1570.03, "word": " on", "probability": 0.931640625}, {"start": 1570.03, "end": 1570.15, "word": " the", "probability": 0.876953125}, {"start": 1570.15, "end": 1570.51, "word": " elements", "probability": 0.91552734375}, {"start": 1570.51, "end": 1570.85, "word": " of", "probability": 0.95654296875}, {"start": 1570.85, "end": 1571.15, "word": " the", "probability": 0.8623046875}, {"start": 1571.15, "end": 1571.47, "word": " object", "probability": 0.94677734375}, {"start": 1571.47, "end": 1572.01, "word": " structure", "probability": 0.8515625}, {"start": 1572.01, "end": 1572.85, "word": " Because", "probability": 0.2149658203125}, {"start": 1572.85, "end": 1573.11, "word": " this", "probability": 0.7412109375}, {"start": 1573.11, "end": 1573.17, "word": " is", "probability": 0.7451171875}, {"start": 1573.17, "end": 1573.23, "word": " what", "probability": 0.6142578125}, {"start": 1573.23, "end": 1573.31, "word": " we", "probability": 0.78564453125}, {"start": 1573.31, "end": 1573.47, "word": " call", "probability": 0.87451171875}, {"start": 1573.47, "end": 1573.59, "word": " the", "probability": 0.2244873046875}, {"start": 1573.59, "end": 1573.81, "word": " object", "probability": 0.92919921875}, {"start": 1573.81, "end": 1574.31, "word": " structure,", "probability": 0.857421875}, {"start": 1574.43, "end": 1574.97, "word": " which", "probability": 0.67578125}, {"start": 1574.97, "end": 1575.09, "word": " I", "probability": 0.947265625}, {"start": 1575.09, "end": 1575.39, "word": " don't", "probability": 0.798095703125}, {"start": 1575.39, "end": 1575.39, "word": " want", "probability": 0.8349609375}, {"start": 1575.39, "end": 1575.49, "word": " to", "probability": 0.9521484375}, {"start": 1575.49, "end": 1575.71, "word": " modify,", "probability": 0.378173828125}, {"start": 1576.07, "end": 1576.77, "word": " okay?", "probability": 0.388427734375}, {"start": 1577.37, "end": 1577.51, "word": " What", "probability": 0.496826171875}, {"start": 1577.51, "end": 1577.51, "word": " does", "probability": 0.70068359375}, {"start": 1577.51, "end": 1577.59, "word": " the", "probability": 0.568359375}, {"start": 1577.59, "end": 1577.93, "word": " visitor", "probability": 0.9658203125}, {"start": 1577.93, "end": 1578.25, "word": " actually", "probability": 0.354736328125}, {"start": 1578.25, "end": 1578.59, "word": " represent?", "probability": 0.6982421875}, {"start": 1579.09, "end": 1579.49, "word": " Whose", "probability": 0.351318359375}, {"start": 1579.49, "end": 1579.49, "word": " operation", "probability": 0.29638671875}, {"start": 1579.49, "end": 1579.67, "word": " is", "probability": 0.37060546875}, {"start": 1579.67, "end": 1579.77, "word": " going", "probability": 0.67578125}, {"start": 1579.77, "end": 1579.77, "word": " to", "probability": 0.9501953125}, {"start": 1579.77, "end": 1579.87, "word": " be", "probability": 0.595703125}, {"start": 1579.87, "end": 1580.05, "word": " carried", "probability": 0.199951171875}, {"start": 1580.05, "end": 1581.01, "word": " out", "probability": 0.85302734375}, {"start": 1581.01, "end": 1581.31, "word": " on", "probability": 0.77880859375}, {"start": 1581.31, "end": 1581.37, "word": " this", "probability": 0.8798828125}, {"start": 1581.37, "end": 1581.59, "word": " object", "probability": 0.96630859375}, {"start": 1581.59, "end": 1582.09, "word": " structure?", "probability": 0.83447265625}, {"start": 1582.29, "end": 1582.39, "word": " And", "probability": 0.5986328125}, {"start": 1582.39, "end": 1582.53, "word": " each", "probability": 0.7216796875}, {"start": 1582.53, "end": 1582.77, "word": " visitor", "probability": 0.953125}, {"start": 1582.77, "end": 1582.91, "word": " is", "probability": 0.865234375}, {"start": 1582.91, "end": 1583.11, "word": " responsible", "probability": 0.85546875}, {"start": 1583.11, "end": 1583.23, "word": " for", "probability": 0.9326171875}, {"start": 1583.23, "end": 1583.33, "word": " a", "probability": 0.96435546875}, {"start": 1583.33, "end": 1584.61, "word": " specific", "probability": 0.3544921875}, {"start": 1584.61, "end": 1584.61, "word": " job.", "probability": 0.3623046875}, {"start": 1585.77, "end": 1586.31, "word": " Visitor", "probability": 0.833740234375}], "temperature": 1.0}, {"id": 64, "seek": 159831, "start": 1587.67, "end": 1598.31, "text": "Lets you define a new operation without changing the classes of the elements on which it operates Clear, the visitor makes you add a new operation", "tokens": [43, 1385, 291, 6964, 257, 777, 6916, 1553, 4473, 264, 5359, 295, 264, 4959, 322, 597, 309, 22577, 14993, 11, 264, 28222, 1669, 291, 909, 257, 777, 6916], "avg_logprob": -0.35102369867522143, "compression_ratio": 1.3773584905660377, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 1587.67, "end": 1588.13, "word": "Lets", "probability": 0.5095977783203125}, {"start": 1588.13, "end": 1588.43, "word": " you", "probability": 0.95166015625}, {"start": 1588.43, "end": 1588.95, "word": " define", "probability": 0.93701171875}, {"start": 1588.95, "end": 1589.17, "word": " a", "probability": 0.9638671875}, {"start": 1589.17, "end": 1589.41, "word": " new", "probability": 0.9013671875}, {"start": 1589.41, "end": 1589.95, "word": " operation", "probability": 0.953125}, {"start": 1589.95, "end": 1590.97, "word": " without", "probability": 0.8623046875}, {"start": 1590.97, "end": 1591.73, "word": " changing", "probability": 0.90478515625}, {"start": 1591.73, "end": 1592.03, "word": " the", "probability": 0.89111328125}, {"start": 1592.03, "end": 1592.85, "word": " classes", "probability": 0.7470703125}, {"start": 1592.85, "end": 1593.15, "word": " of", "probability": 0.95263671875}, {"start": 1593.15, "end": 1593.31, "word": " the", "probability": 0.83251953125}, {"start": 1593.31, "end": 1593.75, "word": " elements", "probability": 0.830078125}, {"start": 1593.75, "end": 1593.99, "word": " on", "probability": 0.87353515625}, {"start": 1593.99, "end": 1594.25, "word": " which", "probability": 0.947265625}, {"start": 1594.25, "end": 1594.47, "word": " it", "probability": 0.951171875}, {"start": 1594.47, "end": 1594.95, "word": " operates", "probability": 0.8837890625}, {"start": 1594.95, "end": 1596.27, "word": " Clear,", "probability": 0.28271484375}, {"start": 1596.63, "end": 1596.81, "word": " the", "probability": 0.59765625}, {"start": 1596.81, "end": 1597.11, "word": " visitor", "probability": 0.95849609375}, {"start": 1597.11, "end": 1597.39, "word": " makes", "probability": 0.28466796875}, {"start": 1597.39, "end": 1597.59, "word": " you", "probability": 0.9560546875}, {"start": 1597.59, "end": 1597.77, "word": " add", "probability": 0.76318359375}, {"start": 1597.77, "end": 1597.87, "word": " a", "probability": 0.85400390625}, {"start": 1597.87, "end": 1597.87, "word": " new", "probability": 0.9130859375}, {"start": 1597.87, "end": 1598.31, "word": " operation", "probability": 0.93115234375}], "temperature": 1.0}, {"id": 65, "seek": 161985, "start": 1599.61, "end": 1619.85, "text": "without changing the classes I don't modify these classes because before adding a new task or adding a new method in the interface, I have to modify these classes Now I add a new method and pass it through the visitor without modifying anything on the object structure All of this here is the object structure which is mentioned in the slide", "tokens": [11820, 346, 4473, 264, 5359, 286, 500, 380, 16927, 613, 5359, 570, 949, 5127, 257, 777, 5633, 420, 5127, 257, 777, 3170, 294, 264, 9226, 11, 286, 362, 281, 16927, 613, 5359, 823, 286, 909, 257, 777, 3170, 293, 1320, 309, 807, 264, 28222, 1553, 42626, 1340, 322, 264, 2657, 3877, 1057, 295, 341, 510, 307, 264, 2657, 3877, 597, 307, 2835, 294, 264, 4137], "avg_logprob": -0.5094697032914017, "compression_ratio": 1.8235294117647058, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 1599.6100000000001, "end": 1600.13, "word": "without", "probability": 0.654541015625}, {"start": 1600.13, "end": 1600.63, "word": " changing", "probability": 0.89990234375}, {"start": 1600.63, "end": 1600.83, "word": " the", "probability": 0.8486328125}, {"start": 1600.83, "end": 1601.19, "word": " classes", "probability": 0.88623046875}, {"start": 1601.19, "end": 1601.77, "word": " I", "probability": 0.360107421875}, {"start": 1601.77, "end": 1601.99, "word": " don't", "probability": 0.799560546875}, {"start": 1601.99, "end": 1602.33, "word": " modify", "probability": 0.33740234375}, {"start": 1602.33, "end": 1602.65, "word": " these", "probability": 0.44580078125}, {"start": 1602.65, "end": 1603.07, "word": " classes", "probability": 0.91943359375}, {"start": 1603.07, "end": 1603.29, "word": " because", "probability": 0.61962890625}, {"start": 1603.29, "end": 1603.65, "word": " before", "probability": 0.45458984375}, {"start": 1603.65, "end": 1604.49, "word": " adding", "probability": 0.35302734375}, {"start": 1604.49, "end": 1604.61, "word": " a", "probability": 0.7880859375}, {"start": 1604.61, "end": 1604.61, "word": " new", "probability": 0.8916015625}, {"start": 1604.61, "end": 1604.85, "word": " task", "probability": 0.406494140625}, {"start": 1604.85, "end": 1605.33, "word": " or", "probability": 0.29296875}, {"start": 1605.33, "end": 1605.53, "word": " adding", "probability": 0.327392578125}, {"start": 1605.53, "end": 1605.67, "word": " a", "probability": 0.87548828125}, {"start": 1605.67, "end": 1605.75, "word": " new", "probability": 0.428466796875}, {"start": 1605.75, "end": 1605.89, "word": " method", "probability": 0.91455078125}, {"start": 1605.89, "end": 1605.99, "word": " in", "probability": 0.437744140625}, {"start": 1605.99, "end": 1606.05, "word": " the", "probability": 0.81982421875}, {"start": 1606.05, "end": 1606.51, "word": " interface,", "probability": 0.86474609375}, {"start": 1606.71, "end": 1606.71, "word": " I", "probability": 0.4931640625}, {"start": 1606.71, "end": 1606.77, "word": " have", "probability": 0.2305908203125}, {"start": 1606.77, "end": 1606.95, "word": " to", "probability": 0.95556640625}, {"start": 1606.95, "end": 1607.21, "word": " modify", "probability": 0.8037109375}, {"start": 1607.21, "end": 1608.47, "word": " these", "probability": 0.241943359375}, {"start": 1608.47, "end": 1608.69, "word": " classes", "probability": 0.6572265625}, {"start": 1608.69, "end": 1609.07, "word": " Now", "probability": 0.239013671875}, {"start": 1609.07, "end": 1609.31, "word": " I", "probability": 0.73046875}, {"start": 1609.31, "end": 1609.57, "word": " add", "probability": 0.66845703125}, {"start": 1609.57, "end": 1610.21, "word": " a", "probability": 0.95263671875}, {"start": 1610.21, "end": 1610.23, "word": " new", "probability": 0.90869140625}, {"start": 1610.23, "end": 1610.53, "word": " method", "probability": 0.93359375}, {"start": 1610.53, "end": 1611.83, "word": " and", "probability": 0.7431640625}, {"start": 1611.83, "end": 1612.09, "word": " pass", "probability": 0.397705078125}, {"start": 1612.09, "end": 1612.27, "word": " it", "probability": 0.8916015625}, {"start": 1612.27, "end": 1612.53, "word": " through", "probability": 0.8193359375}, {"start": 1612.53, "end": 1612.79, "word": " the", "probability": 0.2176513671875}, {"start": 1612.79, "end": 1613.03, "word": " visitor", "probability": 0.8623046875}, {"start": 1613.03, "end": 1613.35, "word": " without", "probability": 0.7529296875}, {"start": 1613.35, "end": 1613.69, "word": " modifying", "probability": 0.85400390625}, {"start": 1613.69, "end": 1614.13, "word": " anything", "probability": 0.68408203125}, {"start": 1614.13, "end": 1614.47, "word": " on", "probability": 0.521484375}, {"start": 1614.47, "end": 1615.19, "word": " the", "probability": 0.8701171875}, {"start": 1615.19, "end": 1615.41, "word": " object", "probability": 0.9130859375}, {"start": 1615.41, "end": 1615.93, "word": " structure", "probability": 0.89404296875}, {"start": 1615.93, "end": 1616.49, "word": " All", "probability": 0.2437744140625}, {"start": 1616.49, "end": 1616.67, "word": " of", "probability": 0.333251953125}, {"start": 1616.67, "end": 1616.67, "word": " this", "probability": 0.66748046875}, {"start": 1616.67, "end": 1616.93, "word": " here", "probability": 0.453125}, {"start": 1616.93, "end": 1617.17, "word": " is", "probability": 0.79833984375}, {"start": 1617.17, "end": 1617.35, "word": " the", "probability": 0.79736328125}, {"start": 1617.35, "end": 1617.55, "word": " object", "probability": 0.96728515625}, {"start": 1617.55, "end": 1618.07, "word": " structure", "probability": 0.8623046875}, {"start": 1618.07, "end": 1618.91, "word": " which", "probability": 0.2042236328125}, {"start": 1618.91, "end": 1618.99, "word": " is", "probability": 0.6064453125}, {"start": 1618.99, "end": 1619.17, "word": " mentioned", "probability": 0.34814453125}, {"start": 1619.17, "end": 1619.43, "word": " in", "probability": 0.7587890625}, {"start": 1619.43, "end": 1619.55, "word": " the", "probability": 0.88037109375}, {"start": 1619.55, "end": 1619.85, "word": " slide", "probability": 0.91259765625}], "temperature": 1.0}, {"id": 66, "seek": 164337, "start": 1628.81, "end": 1643.37, "text": "Now, what are the cases that make me use the visitor? When I have an interface and elements separated from it, I want them to be fixed, okay? They don't change. And also, if they are many,", "tokens": [13267, 11, 437, 366, 264, 3331, 300, 652, 385, 764, 264, 28222, 30, 1133, 286, 362, 364, 9226, 293, 4959, 12005, 490, 309, 11, 286, 528, 552, 281, 312, 6806, 11, 1392, 30, 814, 500, 380, 1319, 13, 400, 611, 11, 498, 436, 366, 867, 11], "avg_logprob": -0.5126329914052435, "compression_ratio": 1.3055555555555556, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1628.81, "end": 1629.37, "word": "Now,", "probability": 0.395263671875}, {"start": 1630.01, "end": 1630.29, "word": " what", "probability": 0.7314453125}, {"start": 1630.29, "end": 1630.37, "word": " are", "probability": 0.69287109375}, {"start": 1630.37, "end": 1630.45, "word": " the", "probability": 0.81494140625}, {"start": 1630.45, "end": 1630.91, "word": " cases", "probability": 0.42578125}, {"start": 1630.91, "end": 1631.43, "word": " that", "probability": 0.7568359375}, {"start": 1631.43, "end": 1631.75, "word": " make", "probability": 0.284912109375}, {"start": 1631.75, "end": 1632.01, "word": " me", "probability": 0.81005859375}, {"start": 1632.01, "end": 1632.37, "word": " use", "probability": 0.638671875}, {"start": 1632.37, "end": 1632.53, "word": " the", "probability": 0.33447265625}, {"start": 1632.53, "end": 1632.83, "word": " visitor?", "probability": 0.85009765625}, {"start": 1633.37, "end": 1633.67, "word": " When", "probability": 0.607421875}, {"start": 1633.67, "end": 1634.31, "word": " I", "probability": 0.90380859375}, {"start": 1634.31, "end": 1634.31, "word": " have", "probability": 0.89111328125}, {"start": 1634.31, "end": 1635.51, "word": " an", "probability": 0.58203125}, {"start": 1635.51, "end": 1636.07, "word": " interface", "probability": 0.83642578125}, {"start": 1636.07, "end": 1636.41, "word": " and", "probability": 0.66259765625}, {"start": 1636.41, "end": 1636.81, "word": " elements", "probability": 0.791015625}, {"start": 1636.81, "end": 1637.19, "word": " separated", "probability": 0.16455078125}, {"start": 1637.19, "end": 1637.39, "word": " from", "probability": 0.8408203125}, {"start": 1637.39, "end": 1637.55, "word": " it,", "probability": 0.9033203125}, {"start": 1637.65, "end": 1637.79, "word": " I", "probability": 0.449462890625}, {"start": 1637.79, "end": 1637.89, "word": " want", "probability": 0.658203125}, {"start": 1637.89, "end": 1638.15, "word": " them", "probability": 0.468017578125}, {"start": 1638.15, "end": 1638.23, "word": " to", "probability": 0.9140625}, {"start": 1638.23, "end": 1638.39, "word": " be", "probability": 0.88232421875}, {"start": 1638.39, "end": 1638.73, "word": " fixed,", "probability": 0.87646484375}, {"start": 1640.23, "end": 1640.47, "word": " okay?", "probability": 0.324951171875}, {"start": 1640.83, "end": 1640.87, "word": " They", "probability": 0.6015625}, {"start": 1640.87, "end": 1640.91, "word": " don't", "probability": 0.7152099609375}, {"start": 1640.91, "end": 1641.31, "word": " change.", "probability": 0.79638671875}, {"start": 1642.05, "end": 1642.17, "word": " And", "probability": 0.4599609375}, {"start": 1642.17, "end": 1642.45, "word": " also,", "probability": 0.7177734375}, {"start": 1642.71, "end": 1642.89, "word": " if", "probability": 0.904296875}, {"start": 1642.89, "end": 1643.13, "word": " they", "probability": 0.69482421875}, {"start": 1643.13, "end": 1643.13, "word": " are", "probability": 0.498291015625}, {"start": 1643.13, "end": 1643.37, "word": " many,", "probability": 0.497314453125}], "temperature": 1.0}, {"id": 67, "seek": 167329, "start": 1644.47, "end": 1673.29, "text": " which means that the modification here will affect a large number of classes. So in case if the object interface is fixed and diverse, in this case, modifying the interface will affect the whole world. No, you open the door of the visitor so that in the future you can add new things without modifying the object structure. The second point is that you need to allow new operations without", "tokens": [597, 1355, 300, 264, 26747, 510, 486, 3345, 257, 2416, 1230, 295, 5359, 13, 407, 294, 1389, 498, 264, 2657, 9226, 307, 6806, 293, 9521, 11, 294, 341, 1389, 11, 42626, 264, 9226, 486, 3345, 264, 1379, 1002, 13, 883, 11, 291, 1269, 264, 2853, 295, 264, 28222, 370, 300, 294, 264, 2027, 291, 393, 909, 777, 721, 1553, 42626, 264, 2657, 3877, 13, 440, 1150, 935, 307, 300, 291, 643, 281, 2089, 777, 7705, 1553], "avg_logprob": -0.47930194340743026, "compression_ratio": 1.7333333333333334, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1644.47, "end": 1644.65, "word": " which", "probability": 0.141357421875}, {"start": 1644.65, "end": 1644.83, "word": " means", "probability": 0.90869140625}, {"start": 1644.83, "end": 1644.91, "word": " that", "probability": 0.406494140625}, {"start": 1644.91, "end": 1644.97, "word": " the", "probability": 0.1319580078125}, {"start": 1644.97, "end": 1645.25, "word": " modification", "probability": 0.46728515625}, {"start": 1645.25, "end": 1645.59, "word": " here", "probability": 0.52392578125}, {"start": 1645.59, "end": 1646.39, "word": " will", "probability": 0.591796875}, {"start": 1646.39, "end": 1646.63, "word": " affect", "probability": 0.130615234375}, {"start": 1646.63, "end": 1646.97, "word": " a", "probability": 0.40966796875}, {"start": 1646.97, "end": 1647.01, "word": " large", "probability": 0.474365234375}, {"start": 1647.01, "end": 1647.17, "word": " number", "probability": 0.65869140625}, {"start": 1647.17, "end": 1647.51, "word": " of", "probability": 0.96337890625}, {"start": 1647.51, "end": 1647.91, "word": " classes.", "probability": 0.57958984375}, {"start": 1648.37, "end": 1648.49, "word": " So", "probability": 0.623046875}, {"start": 1648.49, "end": 1648.63, "word": " in", "probability": 0.412841796875}, {"start": 1648.63, "end": 1648.95, "word": " case", "probability": 0.71728515625}, {"start": 1648.95, "end": 1649.19, "word": " if", "probability": 0.52783203125}, {"start": 1649.19, "end": 1649.59, "word": " the", "probability": 0.82421875}, {"start": 1649.59, "end": 1649.87, "word": " object", "probability": 0.87109375}, {"start": 1649.87, "end": 1650.39, "word": " interface", "probability": 0.72705078125}, {"start": 1650.39, "end": 1650.59, "word": " is", "probability": 0.671875}, {"start": 1650.59, "end": 1650.91, "word": " fixed", "probability": 0.896484375}, {"start": 1650.91, "end": 1651.25, "word": " and", "probability": 0.88525390625}, {"start": 1651.25, "end": 1652.49, "word": " diverse,", "probability": 0.744140625}, {"start": 1654.83, "end": 1654.83, "word": " in", "probability": 0.1668701171875}, {"start": 1654.83, "end": 1656.03, "word": " this", "probability": 0.896484375}, {"start": 1656.03, "end": 1656.59, "word": " case,", "probability": 0.90478515625}, {"start": 1657.13, "end": 1657.57, "word": " modifying", "probability": 0.345947265625}, {"start": 1657.57, "end": 1657.81, "word": " the", "probability": 0.74365234375}, {"start": 1657.81, "end": 1658.35, "word": " interface", "probability": 0.86083984375}, {"start": 1658.35, "end": 1658.55, "word": " will", "probability": 0.82470703125}, {"start": 1658.55, "end": 1658.75, "word": " affect", "probability": 0.71484375}, {"start": 1658.75, "end": 1659.13, "word": " the", "probability": 0.57470703125}, {"start": 1659.13, "end": 1659.13, "word": " whole", "probability": 0.599609375}, {"start": 1659.13, "end": 1659.29, "word": " world.", "probability": 0.85791015625}, {"start": 1660.07, "end": 1660.29, "word": " No,", "probability": 0.57177734375}, {"start": 1660.39, "end": 1660.51, "word": " you", "probability": 0.461669921875}, {"start": 1660.51, "end": 1660.93, "word": " open", "probability": 0.470703125}, {"start": 1660.93, "end": 1661.13, "word": " the", "probability": 0.82177734375}, {"start": 1661.13, "end": 1661.25, "word": " door", "probability": 0.65869140625}, {"start": 1661.25, "end": 1661.39, "word": " of", "probability": 0.5126953125}, {"start": 1661.39, "end": 1661.77, "word": " the", "probability": 0.7314453125}, {"start": 1661.77, "end": 1662.13, "word": " visitor", "probability": 0.94189453125}, {"start": 1662.13, "end": 1663.01, "word": " so", "probability": 0.344970703125}, {"start": 1663.01, "end": 1663.21, "word": " that", "probability": 0.8857421875}, {"start": 1663.21, "end": 1663.23, "word": " in", "probability": 0.765625}, {"start": 1663.23, "end": 1663.37, "word": " the", "probability": 0.86962890625}, {"start": 1663.37, "end": 1663.73, "word": " future", "probability": 0.984375}, {"start": 1663.73, "end": 1664.39, "word": " you", "probability": 0.80810546875}, {"start": 1664.39, "end": 1664.63, "word": " can", "probability": 0.88818359375}, {"start": 1664.63, "end": 1664.83, "word": " add", "probability": 0.347412109375}, {"start": 1664.83, "end": 1664.89, "word": " new", "probability": 0.82421875}, {"start": 1664.89, "end": 1665.47, "word": " things", "probability": 0.7607421875}, {"start": 1665.47, "end": 1665.77, "word": " without", "probability": 0.89013671875}, {"start": 1665.77, "end": 1666.17, "word": " modifying", "probability": 0.83544921875}, {"start": 1666.17, "end": 1667.59, "word": " the", "probability": 0.86572265625}, {"start": 1667.59, "end": 1668.05, "word": " object", "probability": 0.955078125}, {"start": 1668.05, "end": 1668.59, "word": " structure.", "probability": 0.8798828125}, {"start": 1669.65, "end": 1670.29, "word": " The", "probability": 0.399658203125}, {"start": 1670.29, "end": 1670.83, "word": " second", "probability": 0.80810546875}, {"start": 1670.83, "end": 1670.83, "word": " point", "probability": 0.94677734375}, {"start": 1670.83, "end": 1671.03, "word": " is", "probability": 0.5322265625}, {"start": 1671.03, "end": 1671.05, "word": " that", "probability": 0.52685546875}, {"start": 1671.05, "end": 1671.21, "word": " you", "probability": 0.71826171875}, {"start": 1671.21, "end": 1671.49, "word": " need", "probability": 0.8681640625}, {"start": 1671.49, "end": 1671.61, "word": " to", "probability": 0.96826171875}, {"start": 1671.61, "end": 1671.95, "word": " allow", "probability": 0.92333984375}, {"start": 1671.95, "end": 1672.27, "word": " new", "probability": 0.89306640625}, {"start": 1672.27, "end": 1672.83, "word": " operations", "probability": 0.9619140625}, {"start": 1672.83, "end": 1673.29, "word": " without", "probability": 0.888671875}], "temperature": 1.0}, {"id": 68, "seek": 169994, "start": 1674.64, "end": 1699.94, "text": " Coupling means that I add new things without increasing my coupling and I noticed that I used the visitor pattern and it kept supporting the polymorphism that is, the main idea is that the polymorphism remains with it I add all the shapes in one array and I say loop and execute the process that I want The solution represents operations to be performed as visitors", "tokens": [26180, 11970, 1355, 300, 286, 909, 777, 721, 1553, 5662, 452, 37447, 293, 286, 5694, 300, 286, 1143, 264, 28222, 5102, 293, 309, 4305, 7231, 264, 6754, 76, 18191, 1434, 300, 307, 11, 264, 2135, 1558, 307, 300, 264, 6754, 76, 18191, 1434, 7023, 365, 309, 286, 909, 439, 264, 10854, 294, 472, 10225, 293, 286, 584, 6367, 293, 14483, 264, 1399, 300, 286, 528, 440, 3827, 8855, 7705, 281, 312, 10332, 382, 14315], "avg_logprob": -0.4979166841506958, "compression_ratio": 1.7766990291262137, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1674.64, "end": 1675.12, "word": " Coupling", "probability": 0.7322998046875}, {"start": 1675.12, "end": 1675.7, "word": " means", "probability": 0.7138671875}, {"start": 1675.7, "end": 1675.82, "word": " that", "probability": 0.276123046875}, {"start": 1675.82, "end": 1675.82, "word": " I", "probability": 0.61376953125}, {"start": 1675.82, "end": 1676.04, "word": " add", "probability": 0.3291015625}, {"start": 1676.04, "end": 1676.78, "word": " new", "probability": 0.49658203125}, {"start": 1676.78, "end": 1676.78, "word": " things", "probability": 0.5400390625}, {"start": 1676.78, "end": 1677.1, "word": " without", "probability": 0.70703125}, {"start": 1677.1, "end": 1677.6, "word": " increasing", "probability": 0.380859375}, {"start": 1677.6, "end": 1677.9, "word": " my", "probability": 0.75146484375}, {"start": 1677.9, "end": 1678.34, "word": " coupling", "probability": 0.82568359375}, {"start": 1678.34, "end": 1680.1, "word": " and", "probability": 0.273681640625}, {"start": 1680.1, "end": 1680.32, "word": " I", "probability": 0.904296875}, {"start": 1680.32, "end": 1680.78, "word": " noticed", "probability": 0.728515625}, {"start": 1680.78, "end": 1681.34, "word": " that", "probability": 0.75244140625}, {"start": 1681.34, "end": 1681.8, "word": " I", "probability": 0.492919921875}, {"start": 1681.8, "end": 1682.2, "word": " used", "probability": 0.7880859375}, {"start": 1682.2, "end": 1682.4, "word": " the", "probability": 0.51416015625}, {"start": 1682.4, "end": 1682.56, "word": " visitor", "probability": 0.962890625}, {"start": 1682.56, "end": 1682.98, "word": " pattern", "probability": 0.8779296875}, {"start": 1682.98, "end": 1683.16, "word": " and", "probability": 0.7529296875}, {"start": 1683.16, "end": 1683.18, "word": " it", "probability": 0.62646484375}, {"start": 1683.18, "end": 1683.42, "word": " kept", "probability": 0.2459716796875}, {"start": 1683.42, "end": 1683.9, "word": " supporting", "probability": 0.66357421875}, {"start": 1683.9, "end": 1684.04, "word": " the", "probability": 0.68017578125}, {"start": 1684.04, "end": 1684.62, "word": " polymorphism", "probability": 0.9224853515625}, {"start": 1684.62, "end": 1684.8, "word": " that", "probability": 0.0880126953125}, {"start": 1684.8, "end": 1684.82, "word": " is,", "probability": 0.69140625}, {"start": 1684.82, "end": 1684.94, "word": " the", "probability": 0.78564453125}, {"start": 1684.94, "end": 1684.98, "word": " main", "probability": 0.488525390625}, {"start": 1684.98, "end": 1685.54, "word": " idea", "probability": 0.861328125}, {"start": 1685.54, "end": 1685.76, "word": " is", "probability": 0.607421875}, {"start": 1685.76, "end": 1685.8, "word": " that", "probability": 0.88134765625}, {"start": 1685.8, "end": 1685.92, "word": " the", "probability": 0.66943359375}, {"start": 1685.92, "end": 1686.44, "word": " polymorphism", "probability": 0.9449462890625}, {"start": 1686.44, "end": 1686.68, "word": " remains", "probability": 0.15869140625}, {"start": 1686.68, "end": 1686.88, "word": " with", "probability": 0.437255859375}, {"start": 1686.88, "end": 1687.16, "word": " it", "probability": 0.4990234375}, {"start": 1687.16, "end": 1687.58, "word": " I", "probability": 0.32666015625}, {"start": 1687.58, "end": 1687.76, "word": " add", "probability": 0.47119140625}, {"start": 1687.76, "end": 1687.98, "word": " all", "probability": 0.62109375}, {"start": 1687.98, "end": 1688.3, "word": " the", "probability": 0.60205078125}, {"start": 1688.3, "end": 1688.7, "word": " shapes", "probability": 0.7216796875}, {"start": 1688.7, "end": 1689.66, "word": " in", "probability": 0.437744140625}, {"start": 1689.66, "end": 1689.84, "word": " one", "probability": 0.78076171875}, {"start": 1689.84, "end": 1690.06, "word": " array", "probability": 0.939453125}, {"start": 1690.06, "end": 1690.5, "word": " and", "probability": 0.72802734375}, {"start": 1690.5, "end": 1690.58, "word": " I", "probability": 0.33740234375}, {"start": 1690.58, "end": 1690.72, "word": " say", "probability": 0.2198486328125}, {"start": 1690.72, "end": 1690.96, "word": " loop", "probability": 0.91064453125}, {"start": 1690.96, "end": 1691.1, "word": " and", "probability": 0.7939453125}, {"start": 1691.1, "end": 1691.52, "word": " execute", "probability": 0.29833984375}, {"start": 1691.52, "end": 1692.96, "word": " the", "probability": 0.783203125}, {"start": 1692.96, "end": 1693.26, "word": " process", "probability": 0.44580078125}, {"start": 1693.26, "end": 1693.34, "word": " that", "probability": 0.45263671875}, {"start": 1693.34, "end": 1693.62, "word": " I", "probability": 0.77978515625}, {"start": 1693.62, "end": 1693.64, "word": " want", "probability": 0.8330078125}, {"start": 1693.64, "end": 1695.94, "word": " The", "probability": 0.1422119140625}, {"start": 1695.94, "end": 1696.5, "word": " solution", "probability": 0.9580078125}, {"start": 1696.5, "end": 1697.68, "word": " represents", "probability": 0.80712890625}, {"start": 1697.68, "end": 1698.36, "word": " operations", "probability": 0.923828125}, {"start": 1698.36, "end": 1698.58, "word": " to", "probability": 0.95263671875}, {"start": 1698.58, "end": 1698.78, "word": " be", "probability": 0.95654296875}, {"start": 1698.78, "end": 1699.2, "word": " performed", "probability": 0.75439453125}, {"start": 1699.2, "end": 1699.54, "word": " as", "probability": 0.9296875}, {"start": 1699.54, "end": 1699.94, "word": " visitors", "probability": 0.8896484375}], "temperature": 1.0}, {"id": 69, "seek": 172822, "start": 1700.96, "end": 1728.22, "text": " represent operations to be performed as visitors. The operation itself is represented by whom? The visitor. We saw that there is a visitor specific to the calculation of dimensions. All the operations of dimensions are present in this visitor. With the interface of every visitor representing the different kinds of objects. This means that the visitor itself will interact with all kinds of objects. Notice that the visitor interacts with the X and interacts with", "tokens": [2906, 7705, 281, 312, 10332, 382, 14315, 13, 440, 6916, 2564, 307, 10379, 538, 7101, 30, 440, 28222, 13, 492, 1866, 300, 456, 307, 257, 28222, 2685, 281, 264, 17108, 295, 12819, 13, 1057, 264, 7705, 295, 12819, 366, 1974, 294, 341, 28222, 13, 2022, 264, 9226, 295, 633, 28222, 13460, 264, 819, 3685, 295, 6565, 13, 639, 1355, 300, 264, 28222, 2564, 486, 4648, 365, 439, 3685, 295, 6565, 13, 13428, 300, 264, 28222, 43582, 365, 264, 1783, 293, 43582, 365], "avg_logprob": -0.43975902896329583, "compression_ratio": 2.03056768558952, "no_speech_prob": 2.384185791015625e-06, "words": [{"start": 1700.96, "end": 1701.54, "word": " represent", "probability": 0.376220703125}, {"start": 1701.54, "end": 1702.12, "word": " operations", "probability": 0.8916015625}, {"start": 1702.12, "end": 1702.36, "word": " to", "probability": 0.77685546875}, {"start": 1702.36, "end": 1702.56, "word": " be", "probability": 0.89111328125}, {"start": 1702.56, "end": 1703.42, "word": " performed", "probability": 0.66845703125}, {"start": 1703.42, "end": 1703.76, "word": " as", "probability": 0.87548828125}, {"start": 1703.76, "end": 1704.46, "word": " visitors.", "probability": 0.90380859375}, {"start": 1705.04, "end": 1705.26, "word": " The", "probability": 0.1568603515625}, {"start": 1705.26, "end": 1705.64, "word": " operation", "probability": 0.5712890625}, {"start": 1705.64, "end": 1706.32, "word": " itself", "probability": 0.45849609375}, {"start": 1706.32, "end": 1706.78, "word": " is", "probability": 0.5361328125}, {"start": 1706.78, "end": 1706.78, "word": " represented", "probability": 0.70849609375}, {"start": 1706.78, "end": 1706.94, "word": " by", "probability": 0.8564453125}, {"start": 1706.94, "end": 1707.18, "word": " whom?", "probability": 0.200439453125}, {"start": 1707.74, "end": 1707.88, "word": " The", "probability": 0.2225341796875}, {"start": 1707.88, "end": 1708.22, "word": " visitor.", "probability": 0.92919921875}, {"start": 1708.58, "end": 1708.88, "word": " We", "probability": 0.59228515625}, {"start": 1708.88, "end": 1708.88, "word": " saw", "probability": 0.497314453125}, {"start": 1708.88, "end": 1709.06, "word": " that", "probability": 0.63427734375}, {"start": 1709.06, "end": 1709.14, "word": " there", "probability": 0.8759765625}, {"start": 1709.14, "end": 1709.14, "word": " is", "probability": 0.63525390625}, {"start": 1709.14, "end": 1709.22, "word": " a", "probability": 0.9521484375}, {"start": 1709.22, "end": 1709.5, "word": " visitor", "probability": 0.90673828125}, {"start": 1709.5, "end": 1709.9, "word": " specific", "probability": 0.2366943359375}, {"start": 1709.9, "end": 1710.1, "word": " to", "probability": 0.8984375}, {"start": 1710.1, "end": 1710.5, "word": " the", "probability": 0.42626953125}, {"start": 1710.5, "end": 1710.5, "word": " calculation", "probability": 0.18359375}, {"start": 1710.5, "end": 1711.16, "word": " of", "probability": 0.9609375}, {"start": 1711.16, "end": 1711.44, "word": " dimensions.", "probability": 0.399658203125}, {"start": 1712.24, "end": 1712.56, "word": " All", "probability": 0.8349609375}, {"start": 1712.56, "end": 1712.64, "word": " the", "probability": 0.304443359375}, {"start": 1712.64, "end": 1713.0, "word": " operations", "probability": 0.78173828125}, {"start": 1713.0, "end": 1713.14, "word": " of", "probability": 0.4951171875}, {"start": 1713.14, "end": 1713.46, "word": " dimensions", "probability": 0.828125}, {"start": 1713.46, "end": 1713.62, "word": " are", "probability": 0.78271484375}, {"start": 1713.62, "end": 1713.78, "word": " present", "probability": 0.355224609375}, {"start": 1713.78, "end": 1713.88, "word": " in", "probability": 0.876953125}, {"start": 1713.88, "end": 1713.98, "word": " this", "probability": 0.85498046875}, {"start": 1713.98, "end": 1714.24, "word": " visitor.", "probability": 0.970703125}, {"start": 1715.42, "end": 1716.0, "word": " With", "probability": 0.546875}, {"start": 1716.0, "end": 1716.12, "word": " the", "probability": 0.892578125}, {"start": 1716.12, "end": 1716.52, "word": " interface", "probability": 0.84765625}, {"start": 1716.52, "end": 1716.8, "word": " of", "probability": 0.96728515625}, {"start": 1716.8, "end": 1717.12, "word": " every", "probability": 0.84130859375}, {"start": 1717.12, "end": 1717.46, "word": " visitor", "probability": 0.974609375}, {"start": 1717.46, "end": 1718.04, "word": " representing", "probability": 0.62841796875}, {"start": 1718.04, "end": 1718.34, "word": " the", "probability": 0.8662109375}, {"start": 1718.34, "end": 1718.66, "word": " different", "probability": 0.8955078125}, {"start": 1718.66, "end": 1719.22, "word": " kinds", "probability": 0.8466796875}, {"start": 1719.22, "end": 1720.34, "word": " of", "probability": 0.970703125}, {"start": 1720.34, "end": 1720.78, "word": " objects.", "probability": 0.95947265625}, {"start": 1721.26, "end": 1721.42, "word": " This", "probability": 0.131103515625}, {"start": 1721.42, "end": 1721.54, "word": " means", "probability": 0.93701171875}, {"start": 1721.54, "end": 1722.34, "word": " that", "probability": 0.85302734375}, {"start": 1722.34, "end": 1722.46, "word": " the", "probability": 0.84033203125}, {"start": 1722.46, "end": 1722.78, "word": " visitor", "probability": 0.9716796875}, {"start": 1722.78, "end": 1723.26, "word": " itself", "probability": 0.2325439453125}, {"start": 1723.26, "end": 1723.86, "word": " will", "probability": 0.57568359375}, {"start": 1723.86, "end": 1724.2, "word": " interact", "probability": 0.455810546875}, {"start": 1724.2, "end": 1724.44, "word": " with", "probability": 0.890625}, {"start": 1724.44, "end": 1724.72, "word": " all", "probability": 0.458984375}, {"start": 1724.72, "end": 1725.0, "word": " kinds", "probability": 0.6181640625}, {"start": 1725.0, "end": 1725.1, "word": " of", "probability": 0.96875}, {"start": 1725.1, "end": 1725.76, "word": " objects.", "probability": 0.9638671875}, {"start": 1725.88, "end": 1726.12, "word": " Notice", "probability": 0.7060546875}, {"start": 1726.12, "end": 1726.34, "word": " that", "probability": 0.91015625}, {"start": 1726.34, "end": 1726.48, "word": " the", "probability": 0.65625}, {"start": 1726.48, "end": 1726.76, "word": " visitor", "probability": 0.96728515625}, {"start": 1726.76, "end": 1727.12, "word": " interacts", "probability": 0.939453125}, {"start": 1727.12, "end": 1727.3, "word": " with", "probability": 0.900390625}, {"start": 1727.3, "end": 1727.42, "word": " the", "probability": 0.380859375}, {"start": 1727.42, "end": 1727.62, "word": " X", "probability": 0.80126953125}, {"start": 1727.62, "end": 1727.74, "word": " and", "probability": 0.53515625}, {"start": 1727.74, "end": 1728.0, "word": " interacts", "probability": 0.83349609375}, {"start": 1728.0, "end": 1728.22, "word": " with", "probability": 0.89794921875}], "temperature": 1.0}, {"id": 70, "seek": 175632, "start": 1729.46, "end": 1756.32, "text": " Here, of course, this is the limitation of the visitor pattern. There is no solution without equations. The bad point is that when I worked as a visitor, there was a process for a circle and a process for a rectangle. This means that if we add a new shape, it will have to pass through the visitor tree. We have two trees here. The elements tree and the main tree.", "tokens": [1692, 11, 295, 1164, 11, 341, 307, 264, 27432, 295, 264, 28222, 5102, 13, 821, 307, 572, 3827, 1553, 11787, 13, 440, 1578, 935, 307, 300, 562, 286, 2732, 382, 257, 28222, 11, 456, 390, 257, 1399, 337, 257, 6329, 293, 257, 1399, 337, 257, 21930, 13, 639, 1355, 300, 498, 321, 909, 257, 777, 3909, 11, 309, 486, 362, 281, 1320, 807, 264, 28222, 4230, 13, 492, 362, 732, 5852, 510, 13, 440, 4959, 4230, 293, 264, 2135, 4230, 13], "avg_logprob": -0.4077744047816207, "compression_ratio": 1.7548076923076923, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 1729.46, "end": 1729.94, "word": " Here,", "probability": 0.0908203125}, {"start": 1730.1, "end": 1730.18, "word": " of", "probability": 0.61572265625}, {"start": 1730.18, "end": 1730.24, "word": " course,", "probability": 0.94970703125}, {"start": 1730.84, "end": 1731.06, "word": " this", "probability": 0.455810546875}, {"start": 1731.06, "end": 1731.24, "word": " is", "probability": 0.88916015625}, {"start": 1731.24, "end": 1731.86, "word": " the", "probability": 0.7275390625}, {"start": 1731.86, "end": 1732.28, "word": " limitation", "probability": 0.912109375}, {"start": 1732.28, "end": 1732.52, "word": " of", "probability": 0.89404296875}, {"start": 1732.52, "end": 1732.62, "word": " the", "probability": 0.449951171875}, {"start": 1732.62, "end": 1732.82, "word": " visitor", "probability": 0.86865234375}, {"start": 1732.82, "end": 1733.22, "word": " pattern.", "probability": 0.86865234375}, {"start": 1734.12, "end": 1734.12, "word": " There", "probability": 0.673828125}, {"start": 1734.12, "end": 1734.22, "word": " is", "probability": 0.83935546875}, {"start": 1734.22, "end": 1734.34, "word": " no", "probability": 0.921875}, {"start": 1734.34, "end": 1734.66, "word": " solution", "probability": 0.9091796875}, {"start": 1734.66, "end": 1735.48, "word": " without", "probability": 0.82666015625}, {"start": 1735.48, "end": 1736.32, "word": " equations.", "probability": 0.11651611328125}, {"start": 1737.76, "end": 1738.16, "word": " The", "probability": 0.77197265625}, {"start": 1738.16, "end": 1738.62, "word": " bad", "probability": 0.62841796875}, {"start": 1738.62, "end": 1738.68, "word": " point", "probability": 0.8642578125}, {"start": 1738.68, "end": 1739.22, "word": " is", "probability": 0.3994140625}, {"start": 1739.22, "end": 1739.56, "word": " that", "probability": 0.68603515625}, {"start": 1739.56, "end": 1740.54, "word": " when", "probability": 0.4814453125}, {"start": 1740.54, "end": 1740.78, "word": " I", "probability": 0.9580078125}, {"start": 1740.78, "end": 1741.12, "word": " worked", "probability": 0.6689453125}, {"start": 1741.12, "end": 1741.3, "word": " as", "probability": 0.59912109375}, {"start": 1741.3, "end": 1741.36, "word": " a", "probability": 0.75439453125}, {"start": 1741.36, "end": 1741.62, "word": " visitor,", "probability": 0.97802734375}, {"start": 1741.94, "end": 1742.44, "word": " there", "probability": 0.6015625}, {"start": 1742.44, "end": 1742.6, "word": " was", "probability": 0.80419921875}, {"start": 1742.6, "end": 1742.84, "word": " a", "probability": 0.91796875}, {"start": 1742.84, "end": 1743.1, "word": " process", "probability": 0.765625}, {"start": 1743.1, "end": 1743.28, "word": " for", "probability": 0.80859375}, {"start": 1743.28, "end": 1743.4, "word": " a", "probability": 0.32373046875}, {"start": 1743.4, "end": 1743.7, "word": " circle", "probability": 0.9619140625}, {"start": 1743.7, "end": 1743.86, "word": " and", "probability": 0.908203125}, {"start": 1743.86, "end": 1744.0, "word": " a", "probability": 0.8056640625}, {"start": 1744.0, "end": 1744.16, "word": " process", "probability": 0.61376953125}, {"start": 1744.16, "end": 1744.44, "word": " for", "probability": 0.9384765625}, {"start": 1744.44, "end": 1745.2, "word": " a", "probability": 0.8662109375}, {"start": 1745.2, "end": 1745.64, "word": " rectangle.", "probability": 0.95166015625}, {"start": 1745.82, "end": 1746.04, "word": " This", "probability": 0.311767578125}, {"start": 1746.04, "end": 1746.32, "word": " means", "probability": 0.92138671875}, {"start": 1746.32, "end": 1746.6, "word": " that", "probability": 0.8017578125}, {"start": 1746.6, "end": 1746.92, "word": " if", "probability": 0.896484375}, {"start": 1746.92, "end": 1746.94, "word": " we", "probability": 0.6748046875}, {"start": 1746.94, "end": 1747.2, "word": " add", "probability": 0.57568359375}, {"start": 1747.2, "end": 1747.42, "word": " a", "probability": 0.81494140625}, {"start": 1747.42, "end": 1747.98, "word": " new", "probability": 0.84130859375}, {"start": 1747.98, "end": 1748.04, "word": " shape,", "probability": 0.85546875}, {"start": 1748.68, "end": 1749.68, "word": " it", "probability": 0.476806640625}, {"start": 1749.68, "end": 1749.8, "word": " will", "probability": 0.64892578125}, {"start": 1749.8, "end": 1750.04, "word": " have", "probability": 0.81201171875}, {"start": 1750.04, "end": 1750.22, "word": " to", "probability": 0.96875}, {"start": 1750.22, "end": 1750.42, "word": " pass", "probability": 0.446533203125}, {"start": 1750.42, "end": 1750.66, "word": " through", "probability": 0.492431640625}, {"start": 1750.66, "end": 1751.44, "word": " the", "probability": 0.732421875}, {"start": 1751.44, "end": 1752.02, "word": " visitor", "probability": 0.59375}, {"start": 1752.02, "end": 1752.14, "word": " tree.", "probability": 0.64208984375}, {"start": 1752.22, "end": 1752.4, "word": " We", "probability": 0.54736328125}, {"start": 1752.4, "end": 1752.58, "word": " have", "probability": 0.873046875}, {"start": 1752.58, "end": 1752.76, "word": " two", "probability": 0.7890625}, {"start": 1752.76, "end": 1753.0, "word": " trees", "probability": 0.93798828125}, {"start": 1753.0, "end": 1753.26, "word": " here.", "probability": 0.796875}, {"start": 1753.66, "end": 1754.14, "word": " The", "probability": 0.320068359375}, {"start": 1754.14, "end": 1754.44, "word": " elements", "probability": 0.408447265625}, {"start": 1754.44, "end": 1754.46, "word": " tree", "probability": 0.79541015625}, {"start": 1754.46, "end": 1755.52, "word": " and", "probability": 0.830078125}, {"start": 1755.52, "end": 1755.92, "word": " the", "probability": 0.74755859375}, {"start": 1755.92, "end": 1756.16, "word": " main", "probability": 0.217529296875}, {"start": 1756.16, "end": 1756.32, "word": " tree.", "probability": 0.8251953125}], "temperature": 1.0}, {"id": 71, "seek": 177701, "start": 1756.99, "end": 1777.01, "text": "For visitors, every time you need to do a new operation, you will do a new visitor and you will say process X and process Y If we add a new shape, W, you will have to go to this interface and add the process and add it to all visitors", "tokens": [12587, 14315, 11, 633, 565, 291, 643, 281, 360, 257, 777, 6916, 11, 291, 486, 360, 257, 777, 28222, 293, 291, 486, 584, 1399, 1783, 293, 1399, 398, 759, 321, 909, 257, 777, 3909, 11, 343, 11, 291, 486, 362, 281, 352, 281, 341, 9226, 293, 909, 264, 1399, 293, 909, 309, 281, 439, 14315], "avg_logprob": -0.47042409756353926, "compression_ratio": 1.683453237410072, "no_speech_prob": 6.616115570068359e-06, "words": [{"start": 1756.99, "end": 1757.11, "word": "For", "probability": 0.2587890625}, {"start": 1757.11, "end": 1757.51, "word": " visitors,", "probability": 0.54052734375}, {"start": 1757.71, "end": 1758.15, "word": " every", "probability": 0.1611328125}, {"start": 1758.15, "end": 1758.33, "word": " time", "probability": 0.7265625}, {"start": 1758.33, "end": 1759.07, "word": " you", "probability": 0.92138671875}, {"start": 1759.07, "end": 1759.33, "word": " need", "probability": 0.324462890625}, {"start": 1759.33, "end": 1759.49, "word": " to", "probability": 0.927734375}, {"start": 1759.49, "end": 1759.67, "word": " do", "probability": 0.437744140625}, {"start": 1759.67, "end": 1759.85, "word": " a", "probability": 0.76513671875}, {"start": 1759.85, "end": 1760.57, "word": " new", "probability": 0.91650390625}, {"start": 1760.57, "end": 1760.65, "word": " operation,", "probability": 0.8837890625}, {"start": 1761.21, "end": 1761.27, "word": " you", "probability": 0.6796875}, {"start": 1761.27, "end": 1761.37, "word": " will", "probability": 0.331787109375}, {"start": 1761.37, "end": 1761.65, "word": " do", "probability": 0.2401123046875}, {"start": 1761.65, "end": 1762.39, "word": " a", "probability": 0.54248046875}, {"start": 1762.39, "end": 1762.57, "word": " new", "probability": 0.87548828125}, {"start": 1762.57, "end": 1763.25, "word": " visitor", "probability": 0.75048828125}, {"start": 1763.25, "end": 1763.61, "word": " and", "probability": 0.375732421875}, {"start": 1763.61, "end": 1763.69, "word": " you", "probability": 0.31884765625}, {"start": 1763.69, "end": 1763.71, "word": " will", "probability": 0.61572265625}, {"start": 1763.71, "end": 1763.79, "word": " say", "probability": 0.400634765625}, {"start": 1763.79, "end": 1764.35, "word": " process", "probability": 0.70166015625}, {"start": 1764.35, "end": 1765.33, "word": " X", "probability": 0.498291015625}, {"start": 1765.33, "end": 1765.97, "word": " and", "probability": 0.88330078125}, {"start": 1765.97, "end": 1766.43, "word": " process", "probability": 0.9091796875}, {"start": 1766.43, "end": 1767.11, "word": " Y", "probability": 0.98974609375}, {"start": 1767.11, "end": 1767.87, "word": " If", "probability": 0.225341796875}, {"start": 1767.87, "end": 1768.27, "word": " we", "probability": 0.65478515625}, {"start": 1768.27, "end": 1768.27, "word": " add", "probability": 0.55126953125}, {"start": 1768.27, "end": 1768.37, "word": " a", "probability": 0.87939453125}, {"start": 1768.37, "end": 1768.37, "word": " new", "probability": 0.89453125}, {"start": 1768.37, "end": 1768.79, "word": " shape,", "probability": 0.496826171875}, {"start": 1769.19, "end": 1769.65, "word": " W,", "probability": 0.63818359375}, {"start": 1771.07, "end": 1771.17, "word": " you", "probability": 0.8193359375}, {"start": 1771.17, "end": 1771.33, "word": " will", "probability": 0.57470703125}, {"start": 1771.33, "end": 1771.61, "word": " have", "probability": 0.5966796875}, {"start": 1771.61, "end": 1771.75, "word": " to", "probability": 0.9697265625}, {"start": 1771.75, "end": 1771.91, "word": " go", "probability": 0.71533203125}, {"start": 1771.91, "end": 1772.15, "word": " to", "probability": 0.84130859375}, {"start": 1772.15, "end": 1772.31, "word": " this", "probability": 0.69970703125}, {"start": 1772.31, "end": 1772.85, "word": " interface", "probability": 0.89404296875}, {"start": 1772.85, "end": 1773.19, "word": " and", "probability": 0.86767578125}, {"start": 1773.19, "end": 1773.39, "word": " add", "probability": 0.9033203125}, {"start": 1773.39, "end": 1773.61, "word": " the", "probability": 0.50439453125}, {"start": 1773.61, "end": 1774.07, "word": " process", "probability": 0.849609375}, {"start": 1774.07, "end": 1775.15, "word": " and", "probability": 0.471923828125}, {"start": 1775.15, "end": 1775.39, "word": " add", "probability": 0.79931640625}, {"start": 1775.39, "end": 1775.53, "word": " it", "probability": 0.85009765625}, {"start": 1775.53, "end": 1775.71, "word": " to", "probability": 0.65087890625}, {"start": 1775.71, "end": 1776.09, "word": " all", "probability": 0.89990234375}, {"start": 1776.09, "end": 1777.01, "word": " visitors", "probability": 0.74853515625}], "temperature": 1.0}, {"id": 72, "seek": 179870, "start": 1778.22, "end": 1798.7, "text": "So we are back to the same problem. But what? Did you get the idea that this visitor tree is going to be smaller than this one? This one is going to tell you that you are using it because it is fixed and scattered in a big way. But the visitor usually you will need one visitor or two visitors without much. So what is this tree going to be?", "tokens": [6455, 321, 366, 646, 281, 264, 912, 1154, 13, 583, 437, 30, 2589, 291, 483, 264, 1558, 300, 341, 28222, 4230, 307, 516, 281, 312, 4356, 813, 341, 472, 30, 639, 472, 307, 516, 281, 980, 291, 300, 291, 366, 1228, 309, 570, 309, 307, 6806, 293, 21986, 294, 257, 955, 636, 13, 583, 264, 28222, 2673, 291, 486, 643, 472, 28222, 420, 732, 14315, 1553, 709, 13, 407, 437, 307, 341, 4230, 516, 281, 312, 30], "avg_logprob": -0.5504807822215252, "compression_ratio": 1.7135678391959799, "no_speech_prob": 2.0265579223632812e-06, "words": [{"start": 1778.22, "end": 1778.5, "word": "So", "probability": 0.405517578125}, {"start": 1778.5, "end": 1778.72, "word": " we", "probability": 0.56396484375}, {"start": 1778.72, "end": 1778.72, "word": " are", "probability": 0.28564453125}, {"start": 1778.72, "end": 1778.72, "word": " back", "probability": 0.71728515625}, {"start": 1778.72, "end": 1778.9, "word": " to", "probability": 0.8994140625}, {"start": 1778.9, "end": 1780.1, "word": " the", "probability": 0.80029296875}, {"start": 1780.1, "end": 1780.24, "word": " same", "probability": 0.849609375}, {"start": 1780.24, "end": 1780.64, "word": " problem.", "probability": 0.43359375}, {"start": 1780.74, "end": 1781.02, "word": " But", "probability": 0.127197265625}, {"start": 1781.02, "end": 1781.48, "word": " what?", "probability": 0.52001953125}, {"start": 1781.86, "end": 1782.04, "word": " Did", "probability": 0.226806640625}, {"start": 1782.04, "end": 1782.06, "word": " you", "probability": 0.806640625}, {"start": 1782.06, "end": 1782.22, "word": " get", "probability": 0.58154296875}, {"start": 1782.22, "end": 1782.4, "word": " the", "probability": 0.84326171875}, {"start": 1782.4, "end": 1782.66, "word": " idea", "probability": 0.85595703125}, {"start": 1782.66, "end": 1783.14, "word": " that", "probability": 0.875}, {"start": 1783.14, "end": 1783.52, "word": " this", "probability": 0.68798828125}, {"start": 1783.52, "end": 1783.8, "word": " visitor", "probability": 0.7548828125}, {"start": 1783.8, "end": 1783.98, "word": " tree", "probability": 0.64990234375}, {"start": 1783.98, "end": 1785.22, "word": " is", "probability": 0.31396484375}, {"start": 1785.22, "end": 1785.22, "word": " going", "probability": 0.4443359375}, {"start": 1785.22, "end": 1785.26, "word": " to", "probability": 0.97216796875}, {"start": 1785.26, "end": 1785.44, "word": " be", "probability": 0.95068359375}, {"start": 1785.44, "end": 1785.76, "word": " smaller", "probability": 0.83837890625}, {"start": 1785.76, "end": 1786.0, "word": " than", "probability": 0.9140625}, {"start": 1786.0, "end": 1786.34, "word": " this", "probability": 0.50048828125}, {"start": 1786.34, "end": 1787.48, "word": " one?", "probability": 0.5595703125}, {"start": 1787.58, "end": 1788.04, "word": " This", "probability": 0.398193359375}, {"start": 1788.04, "end": 1788.12, "word": " one", "probability": 0.67138671875}, {"start": 1788.12, "end": 1788.2, "word": " is", "probability": 0.258544921875}, {"start": 1788.2, "end": 1788.2, "word": " going", "probability": 0.6298828125}, {"start": 1788.2, "end": 1788.2, "word": " to", "probability": 0.970703125}, {"start": 1788.2, "end": 1788.48, "word": " tell", "probability": 0.2529296875}, {"start": 1788.48, "end": 1788.64, "word": " you", "probability": 0.96337890625}, {"start": 1788.64, "end": 1788.74, "word": " that", "probability": 0.70654296875}, {"start": 1788.74, "end": 1788.82, "word": " you", "probability": 0.6494140625}, {"start": 1788.82, "end": 1788.96, "word": " are", "probability": 0.41162109375}, {"start": 1788.96, "end": 1789.3, "word": " using", "probability": 0.576171875}, {"start": 1789.3, "end": 1789.42, "word": " it", "probability": 0.76123046875}, {"start": 1789.42, "end": 1789.52, "word": " because", "probability": 0.80419921875}, {"start": 1789.52, "end": 1789.76, "word": " it", "probability": 0.7861328125}, {"start": 1789.76, "end": 1789.78, "word": " is", "probability": 0.802734375}, {"start": 1789.78, "end": 1790.1, "word": " fixed", "probability": 0.623046875}, {"start": 1790.1, "end": 1790.3, "word": " and", "probability": 0.8974609375}, {"start": 1790.3, "end": 1790.72, "word": " scattered", "probability": 0.058197021484375}, {"start": 1790.72, "end": 1790.86, "word": " in", "probability": 0.33154296875}, {"start": 1790.86, "end": 1791.18, "word": " a", "probability": 0.8681640625}, {"start": 1791.18, "end": 1791.98, "word": " big", "probability": 0.5146484375}, {"start": 1791.98, "end": 1792.16, "word": " way.", "probability": 0.8759765625}, {"start": 1792.54, "end": 1792.78, "word": " But", "probability": 0.86962890625}, {"start": 1792.78, "end": 1792.94, "word": " the", "probability": 0.3037109375}, {"start": 1792.94, "end": 1793.22, "word": " visitor", "probability": 0.9375}, {"start": 1793.22, "end": 1793.82, "word": " usually", "probability": 0.482177734375}, {"start": 1793.82, "end": 1794.06, "word": " you", "probability": 0.1832275390625}, {"start": 1794.06, "end": 1794.16, "word": " will", "probability": 0.283935546875}, {"start": 1794.16, "end": 1794.4, "word": " need", "probability": 0.814453125}, {"start": 1794.4, "end": 1794.92, "word": " one", "probability": 0.806640625}, {"start": 1794.92, "end": 1795.4, "word": " visitor", "probability": 0.59375}, {"start": 1795.4, "end": 1795.58, "word": " or", "probability": 0.939453125}, {"start": 1795.58, "end": 1795.84, "word": " two", "probability": 0.9130859375}, {"start": 1795.84, "end": 1796.24, "word": " visitors", "probability": 0.88671875}, {"start": 1796.24, "end": 1796.56, "word": " without", "probability": 0.2257080078125}, {"start": 1796.56, "end": 1796.88, "word": " much.", "probability": 0.55712890625}, {"start": 1797.44, "end": 1797.7, "word": " So", "probability": 0.8994140625}, {"start": 1797.7, "end": 1797.96, "word": " what", "probability": 0.5322265625}, {"start": 1797.96, "end": 1797.96, "word": " is", "probability": 0.33642578125}, {"start": 1797.96, "end": 1798.04, "word": " this", "probability": 0.884765625}, {"start": 1798.04, "end": 1798.3, "word": " tree", "probability": 0.83642578125}, {"start": 1798.3, "end": 1798.46, "word": " going", "probability": 0.6220703125}, {"start": 1798.46, "end": 1798.46, "word": " to", "probability": 0.97705078125}, {"start": 1798.46, "end": 1798.7, "word": " be?", "probability": 0.9423828125}], "temperature": 1.0}, {"id": 73, "seek": 182313, "start": 1799.95, "end": 1823.13, "text": "easier to edit, okay? And then as I told you, most of the time when I use a browser and there is a situation where the interface is fixed, most of the time I don't need to add a new class, but I need to add a new functionality, okay? Like what? What are the cases where there is a fixed structure, but I need to add a new method? Any library related to the UI", "tokens": [68, 296, 811, 281, 8129, 11, 1392, 30, 400, 550, 382, 286, 1907, 291, 11, 881, 295, 264, 565, 562, 286, 764, 257, 11185, 293, 456, 307, 257, 2590, 689, 264, 9226, 307, 6806, 11, 881, 295, 264, 565, 286, 500, 380, 643, 281, 909, 257, 777, 1508, 11, 457, 286, 643, 281, 909, 257, 777, 14980, 11, 1392, 30, 1743, 437, 30, 708, 366, 264, 3331, 689, 456, 307, 257, 6806, 3877, 11, 457, 286, 643, 281, 909, 257, 777, 3170, 30, 2639, 6405, 4077, 281, 264, 15682], "avg_logprob": -0.47569443417920004, "compression_ratio": 1.795, "no_speech_prob": 8.881092071533203e-06, "words": [{"start": 1799.95, "end": 1800.37, "word": "easier", "probability": 0.603515625}, {"start": 1800.37, "end": 1800.51, "word": " to", "probability": 0.5595703125}, {"start": 1800.51, "end": 1800.85, "word": " edit,", "probability": 0.349853515625}, {"start": 1801.39, "end": 1801.65, "word": " okay?", "probability": 0.223388671875}, {"start": 1801.97, "end": 1802.05, "word": " And", "probability": 0.412353515625}, {"start": 1802.05, "end": 1802.23, "word": " then", "probability": 0.357666015625}, {"start": 1802.23, "end": 1802.37, "word": " as", "probability": 0.5009765625}, {"start": 1802.37, "end": 1802.51, "word": " I", "probability": 0.9365234375}, {"start": 1802.51, "end": 1802.69, "word": " told", "probability": 0.3525390625}, {"start": 1802.69, "end": 1802.91, "word": " you,", "probability": 0.96484375}, {"start": 1803.25, "end": 1803.83, "word": " most", "probability": 0.2066650390625}, {"start": 1803.83, "end": 1803.83, "word": " of", "probability": 0.457275390625}, {"start": 1803.83, "end": 1805.01, "word": " the", "probability": 0.609375}, {"start": 1805.01, "end": 1805.01, "word": " time", "probability": 0.52587890625}, {"start": 1805.01, "end": 1805.09, "word": " when", "probability": 0.28466796875}, {"start": 1805.09, "end": 1805.09, "word": " I", "probability": 0.75390625}, {"start": 1805.09, "end": 1805.39, "word": " use", "probability": 0.73583984375}, {"start": 1805.39, "end": 1805.51, "word": " a", "probability": 0.343017578125}, {"start": 1805.51, "end": 1805.71, "word": " browser", "probability": 0.1954345703125}, {"start": 1805.71, "end": 1805.95, "word": " and", "probability": 0.36474609375}, {"start": 1805.95, "end": 1805.95, "word": " there", "probability": 0.422607421875}, {"start": 1805.95, "end": 1805.99, "word": " is", "probability": 0.54296875}, {"start": 1805.99, "end": 1806.05, "word": " a", "probability": 0.84375}, {"start": 1806.05, "end": 1806.29, "word": " situation", "probability": 0.4013671875}, {"start": 1806.29, "end": 1806.43, "word": " where", "probability": 0.51220703125}, {"start": 1806.43, "end": 1807.17, "word": " the", "probability": 0.314453125}, {"start": 1807.17, "end": 1807.61, "word": " interface", "probability": 0.8330078125}, {"start": 1807.61, "end": 1807.79, "word": " is", "probability": 0.833984375}, {"start": 1807.79, "end": 1808.09, "word": " fixed,", "probability": 0.80859375}, {"start": 1808.71, "end": 1809.13, "word": " most", "probability": 0.2001953125}, {"start": 1809.13, "end": 1809.79, "word": " of", "probability": 0.71533203125}, {"start": 1809.79, "end": 1809.89, "word": " the", "probability": 0.90576171875}, {"start": 1809.89, "end": 1809.89, "word": " time", "probability": 0.830078125}, {"start": 1809.89, "end": 1809.97, "word": " I", "probability": 0.80419921875}, {"start": 1809.97, "end": 1810.03, "word": " don't", "probability": 0.75732421875}, {"start": 1810.03, "end": 1810.53, "word": " need", "probability": 0.7978515625}, {"start": 1810.53, "end": 1810.63, "word": " to", "probability": 0.9365234375}, {"start": 1810.63, "end": 1810.77, "word": " add", "probability": 0.9345703125}, {"start": 1810.77, "end": 1810.87, "word": " a", "probability": 0.84130859375}, {"start": 1810.87, "end": 1810.87, "word": " new", "probability": 0.91943359375}, {"start": 1810.87, "end": 1811.17, "word": " class,", "probability": 0.9619140625}, {"start": 1812.03, "end": 1812.27, "word": " but", "probability": 0.865234375}, {"start": 1812.27, "end": 1812.43, "word": " I", "probability": 0.96630859375}, {"start": 1812.43, "end": 1812.77, "word": " need", "probability": 0.8388671875}, {"start": 1812.77, "end": 1812.95, "word": " to", "probability": 0.95703125}, {"start": 1812.95, "end": 1813.13, "word": " add", "probability": 0.9375}, {"start": 1813.13, "end": 1813.21, "word": " a", "probability": 0.8828125}, {"start": 1813.21, "end": 1813.21, "word": " new", "probability": 0.91064453125}, {"start": 1813.21, "end": 1813.87, "word": " functionality,", "probability": 0.89208984375}, {"start": 1815.01, "end": 1815.63, "word": " okay?", "probability": 0.7626953125}, {"start": 1816.05, "end": 1816.29, "word": " Like", "probability": 0.59765625}, {"start": 1816.29, "end": 1816.53, "word": " what?", "probability": 0.80859375}, {"start": 1816.53, "end": 1816.71, "word": " What", "probability": 0.791015625}, {"start": 1816.71, "end": 1816.83, "word": " are", "probability": 0.4853515625}, {"start": 1816.83, "end": 1816.87, "word": " the", "probability": 0.31494140625}, {"start": 1816.87, "end": 1817.11, "word": " cases", "probability": 0.67822265625}, {"start": 1817.11, "end": 1817.31, "word": " where", "probability": 0.63427734375}, {"start": 1817.31, "end": 1817.39, "word": " there", "probability": 0.473388671875}, {"start": 1817.39, "end": 1817.39, "word": " is", "probability": 0.7021484375}, {"start": 1817.39, "end": 1817.43, "word": " a", "probability": 0.9736328125}, {"start": 1817.43, "end": 1817.75, "word": " fixed", "probability": 0.91357421875}, {"start": 1817.75, "end": 1819.09, "word": " structure,", "probability": 0.8486328125}, {"start": 1819.19, "end": 1819.39, "word": " but", "probability": 0.91650390625}, {"start": 1819.39, "end": 1819.55, "word": " I", "probability": 0.97998046875}, {"start": 1819.55, "end": 1819.77, "word": " need", "probability": 0.9208984375}, {"start": 1819.77, "end": 1819.91, "word": " to", "probability": 0.95751953125}, {"start": 1819.91, "end": 1820.09, "word": " add", "probability": 0.9423828125}, {"start": 1820.09, "end": 1820.17, "word": " a", "probability": 0.9765625}, {"start": 1820.17, "end": 1820.17, "word": " new", "probability": 0.91748046875}, {"start": 1820.17, "end": 1820.53, "word": " method?", "probability": 0.9521484375}, {"start": 1821.53, "end": 1821.93, "word": " Any", "probability": 0.884765625}, {"start": 1821.93, "end": 1822.29, "word": " library", "probability": 0.81201171875}, {"start": 1822.29, "end": 1822.63, "word": " related", "probability": 0.3662109375}, {"start": 1822.63, "end": 1822.85, "word": " to", "probability": 0.9638671875}, {"start": 1822.85, "end": 1822.91, "word": " the", "probability": 0.4111328125}, {"start": 1822.91, "end": 1823.13, "word": " UI", "probability": 0.94775390625}], "temperature": 1.0}, {"id": 74, "seek": 184972, "start": 1824.1, "end": 1849.72, "text": " I found the UI components, they are fixed, they don't change from year to year. Button, text field, text area, they don't change. So the structure fixed, the classes or the UI components that each one represents in the class, they are fixed. But I need to add a method every now and then to support them, to work on them.", "tokens": [286, 1352, 264, 15682, 6677, 11, 436, 366, 6806, 11, 436, 500, 380, 1319, 490, 1064, 281, 1064, 13, 38435, 11, 2487, 2519, 11, 2487, 1859, 11, 436, 500, 380, 1319, 13, 407, 264, 3877, 6806, 11, 264, 5359, 420, 264, 15682, 6677, 300, 1184, 472, 8855, 294, 264, 1508, 11, 436, 366, 6806, 13, 583, 286, 643, 281, 909, 257, 3170, 633, 586, 293, 550, 281, 1406, 552, 11, 281, 589, 322, 552, 13], "avg_logprob": -0.5078125156854328, "compression_ratio": 1.788888888888889, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1824.1, "end": 1824.3, "word": " I", "probability": 0.08978271484375}, {"start": 1824.3, "end": 1824.48, "word": " found", "probability": 0.3427734375}, {"start": 1824.48, "end": 1824.58, "word": " the", "probability": 0.4013671875}, {"start": 1824.58, "end": 1824.8, "word": " UI", "probability": 0.88427734375}, {"start": 1824.8, "end": 1825.48, "word": " components,", "probability": 0.85400390625}, {"start": 1826.24, "end": 1826.54, "word": " they", "probability": 0.226806640625}, {"start": 1826.54, "end": 1826.64, "word": " are", "probability": 0.466796875}, {"start": 1826.64, "end": 1826.94, "word": " fixed,", "probability": 0.63916015625}, {"start": 1827.68, "end": 1828.12, "word": " they", "probability": 0.54541015625}, {"start": 1828.12, "end": 1828.24, "word": " don't", "probability": 0.69677734375}, {"start": 1828.24, "end": 1828.54, "word": " change", "probability": 0.8876953125}, {"start": 1828.54, "end": 1828.84, "word": " from", "probability": 0.459716796875}, {"start": 1828.84, "end": 1829.94, "word": " year", "probability": 0.8291015625}, {"start": 1829.94, "end": 1830.08, "word": " to", "probability": 0.96728515625}, {"start": 1830.08, "end": 1830.32, "word": " year.", "probability": 0.927734375}, {"start": 1830.54, "end": 1831.12, "word": " Button,", "probability": 0.66943359375}, {"start": 1831.82, "end": 1832.14, "word": " text", "probability": 0.51904296875}, {"start": 1832.14, "end": 1832.58, "word": " field,", "probability": 0.84814453125}, {"start": 1833.5, "end": 1834.22, "word": " text", "probability": 0.9443359375}, {"start": 1834.22, "end": 1834.68, "word": " area,", "probability": 0.85205078125}, {"start": 1834.92, "end": 1836.32, "word": " they", "probability": 0.32275390625}, {"start": 1836.32, "end": 1836.48, "word": " don't", "probability": 0.896728515625}, {"start": 1836.48, "end": 1836.8, "word": " change.", "probability": 0.90234375}, {"start": 1837.8, "end": 1838.38, "word": " So", "probability": 0.47900390625}, {"start": 1838.38, "end": 1839.36, "word": " the", "probability": 0.611328125}, {"start": 1839.36, "end": 1839.82, "word": " structure", "probability": 0.5634765625}, {"start": 1839.82, "end": 1840.44, "word": " fixed,", "probability": 0.53759765625}, {"start": 1840.82, "end": 1841.22, "word": " the", "probability": 0.29296875}, {"start": 1841.22, "end": 1841.68, "word": " classes", "probability": 0.8310546875}, {"start": 1841.68, "end": 1841.94, "word": " or", "probability": 0.68798828125}, {"start": 1841.94, "end": 1842.06, "word": " the", "probability": 0.51513671875}, {"start": 1842.06, "end": 1842.28, "word": " UI", "probability": 0.95654296875}, {"start": 1842.28, "end": 1842.94, "word": " components", "probability": 0.91552734375}, {"start": 1842.94, "end": 1843.12, "word": " that", "probability": 0.407470703125}, {"start": 1843.12, "end": 1843.34, "word": " each", "probability": 0.810546875}, {"start": 1843.34, "end": 1843.52, "word": " one", "probability": 0.382568359375}, {"start": 1843.52, "end": 1843.82, "word": " represents", "probability": 0.55029296875}, {"start": 1843.82, "end": 1843.98, "word": " in", "probability": 0.8603515625}, {"start": 1843.98, "end": 1844.06, "word": " the", "probability": 0.5556640625}, {"start": 1844.06, "end": 1844.34, "word": " class,", "probability": 0.9462890625}, {"start": 1844.76, "end": 1844.92, "word": " they", "probability": 0.358642578125}, {"start": 1844.92, "end": 1845.02, "word": " are", "probability": 0.8544921875}, {"start": 1845.02, "end": 1845.26, "word": " fixed.", "probability": 0.85400390625}, {"start": 1845.46, "end": 1845.64, "word": " But", "probability": 0.87744140625}, {"start": 1845.64, "end": 1845.86, "word": " I", "probability": 0.93017578125}, {"start": 1845.86, "end": 1846.28, "word": " need", "probability": 0.89794921875}, {"start": 1846.28, "end": 1846.44, "word": " to", "probability": 0.9580078125}, {"start": 1846.44, "end": 1846.64, "word": " add", "probability": 0.9140625}, {"start": 1846.64, "end": 1846.82, "word": " a", "probability": 0.599609375}, {"start": 1846.82, "end": 1846.82, "word": " method", "probability": 0.9228515625}, {"start": 1846.82, "end": 1846.82, "word": " every", "probability": 0.354736328125}, {"start": 1846.82, "end": 1847.14, "word": " now", "probability": 0.306884765625}, {"start": 1847.14, "end": 1847.46, "word": " and", "probability": 0.939453125}, {"start": 1847.46, "end": 1847.98, "word": " then", "probability": 0.79150390625}, {"start": 1847.98, "end": 1848.66, "word": " to", "probability": 0.3876953125}, {"start": 1848.66, "end": 1848.86, "word": " support", "probability": 0.414306640625}, {"start": 1848.86, "end": 1849.0, "word": " them,", "probability": 0.339599609375}, {"start": 1849.0, "end": 1849.08, "word": " to", "probability": 0.7138671875}, {"start": 1849.08, "end": 1849.26, "word": " work", "probability": 0.79541015625}, {"start": 1849.26, "end": 1849.56, "word": " on", "probability": 0.6748046875}, {"start": 1849.56, "end": 1849.72, "word": " them.", "probability": 0.89892578125}], "temperature": 1.0}, {"id": 75, "seek": 187359, "start": 1852.09, "end": 1873.59, "text": "So I usually use visitor when the object structure is fixed, the number of classes is fixed, but I need to add operations, new operations on them. And in all cases, even if I add a class, modifying this structure is easier than modifying this one. How?", "tokens": [6455, 286, 2673, 764, 28222, 562, 264, 2657, 3877, 307, 6806, 11, 264, 1230, 295, 5359, 307, 6806, 11, 457, 286, 643, 281, 909, 7705, 11, 777, 7705, 322, 552, 13, 400, 294, 439, 3331, 11, 754, 498, 286, 909, 257, 1508, 11, 42626, 341, 3877, 307, 3571, 813, 42626, 341, 472, 13, 1012, 30], "avg_logprob": -0.5092076158949307, "compression_ratio": 1.575, "no_speech_prob": 5.424022674560547e-06, "words": [{"start": 1852.0900000000001, "end": 1852.69, "word": "So", "probability": 0.155029296875}, {"start": 1852.69, "end": 1853.29, "word": " I", "probability": 0.1671142578125}, {"start": 1853.29, "end": 1853.81, "word": " usually", "probability": 0.464111328125}, {"start": 1853.81, "end": 1854.33, "word": " use", "probability": 0.84619140625}, {"start": 1854.33, "end": 1854.33, "word": " visitor", "probability": 0.4638671875}, {"start": 1854.33, "end": 1854.47, "word": " when", "probability": 0.430419921875}, {"start": 1854.47, "end": 1856.01, "word": " the", "probability": 0.294189453125}, {"start": 1856.01, "end": 1856.61, "word": " object", "probability": 0.9091796875}, {"start": 1856.61, "end": 1857.19, "word": " structure", "probability": 0.8388671875}, {"start": 1857.19, "end": 1857.41, "word": " is", "probability": 0.849609375}, {"start": 1857.41, "end": 1858.01, "word": " fixed,", "probability": 0.845703125}, {"start": 1858.61, "end": 1858.93, "word": " the", "probability": 0.318359375}, {"start": 1858.93, "end": 1859.09, "word": " number", "probability": 0.7421875}, {"start": 1859.09, "end": 1859.23, "word": " of", "probability": 0.9658203125}, {"start": 1859.23, "end": 1859.59, "word": " classes", "probability": 0.93505859375}, {"start": 1859.59, "end": 1859.71, "word": " is", "probability": 0.58203125}, {"start": 1859.71, "end": 1860.01, "word": " fixed,", "probability": 0.4619140625}, {"start": 1860.03, "end": 1860.21, "word": " but", "probability": 0.78662109375}, {"start": 1860.21, "end": 1860.45, "word": " I", "probability": 0.92333984375}, {"start": 1860.45, "end": 1860.77, "word": " need", "probability": 0.8212890625}, {"start": 1860.77, "end": 1860.93, "word": " to", "probability": 0.953125}, {"start": 1860.93, "end": 1861.21, "word": " add", "probability": 0.88037109375}, {"start": 1861.21, "end": 1862.71, "word": " operations,", "probability": 0.67529296875}, {"start": 1862.77, "end": 1862.81, "word": " new", "probability": 0.814453125}, {"start": 1862.81, "end": 1863.49, "word": " operations", "probability": 0.84814453125}, {"start": 1863.49, "end": 1863.69, "word": " on", "probability": 0.5166015625}, {"start": 1863.69, "end": 1863.95, "word": " them.", "probability": 0.72705078125}, {"start": 1864.59, "end": 1865.09, "word": " And", "probability": 0.544921875}, {"start": 1865.09, "end": 1865.19, "word": " in", "probability": 0.5673828125}, {"start": 1865.19, "end": 1865.45, "word": " all", "probability": 0.490234375}, {"start": 1865.45, "end": 1865.85, "word": " cases,", "probability": 0.81689453125}, {"start": 1866.01, "end": 1866.21, "word": " even", "probability": 0.84716796875}, {"start": 1866.21, "end": 1866.39, "word": " if", "probability": 0.92724609375}, {"start": 1866.39, "end": 1866.43, "word": " I", "probability": 0.77587890625}, {"start": 1866.43, "end": 1866.63, "word": " add", "probability": 0.6220703125}, {"start": 1866.63, "end": 1866.77, "word": " a", "probability": 0.52978515625}, {"start": 1866.77, "end": 1867.01, "word": " class,", "probability": 0.92041015625}, {"start": 1867.25, "end": 1867.47, "word": " modifying", "probability": 0.37646484375}, {"start": 1867.47, "end": 1868.21, "word": " this", "probability": 0.830078125}, {"start": 1868.21, "end": 1869.15, "word": " structure", "probability": 0.798828125}, {"start": 1869.15, "end": 1869.73, "word": " is", "probability": 0.91259765625}, {"start": 1869.73, "end": 1870.61, "word": " easier", "probability": 0.9384765625}, {"start": 1870.61, "end": 1870.93, "word": " than", "probability": 0.9140625}, {"start": 1870.93, "end": 1871.97, "word": " modifying", "probability": 0.85009765625}, {"start": 1871.97, "end": 1872.31, "word": " this", "probability": 0.72607421875}, {"start": 1872.31, "end": 1872.31, "word": " one.", "probability": 0.6083984375}, {"start": 1872.99, "end": 1873.59, "word": " How?", "probability": 0.250732421875}], "temperature": 1.0}, {"id": 76, "seek": 189223, "start": 1877.27, "end": 1892.23, "text": " Ok, so we saw that in Java specifically, all the visitor patterns on the gate won't be necessary, right? Because the default method solved the problem. Ok, so you want to add a new method and you want to cache it and hit it?", "tokens": [3477, 11, 370, 321, 1866, 300, 294, 10745, 4682, 11, 439, 264, 28222, 8294, 322, 264, 8539, 1582, 380, 312, 4818, 11, 558, 30, 1436, 264, 7576, 3170, 13041, 264, 1154, 13, 3477, 11, 370, 291, 528, 281, 909, 257, 777, 3170, 293, 291, 528, 281, 19459, 309, 293, 2045, 309, 30], "avg_logprob": -0.6055424528301887, "compression_ratio": 1.4516129032258065, "no_speech_prob": 4.291534423828125e-06, "words": [{"start": 1877.27, "end": 1877.75, "word": " Ok,", "probability": 0.1751708984375}, {"start": 1878.33, "end": 1878.77, "word": " so", "probability": 0.319091796875}, {"start": 1878.77, "end": 1879.15, "word": " we", "probability": 0.68994140625}, {"start": 1879.15, "end": 1880.09, "word": " saw", "probability": 0.548828125}, {"start": 1880.09, "end": 1880.37, "word": " that", "probability": 0.765625}, {"start": 1880.37, "end": 1880.47, "word": " in", "probability": 0.6923828125}, {"start": 1880.47, "end": 1880.83, "word": " Java", "probability": 0.53955078125}, {"start": 1880.83, "end": 1881.47, "word": " specifically,", "probability": 0.366943359375}, {"start": 1881.93, "end": 1882.07, "word": " all", "probability": 0.62646484375}, {"start": 1882.07, "end": 1882.17, "word": " the", "probability": 0.358154296875}, {"start": 1882.17, "end": 1882.39, "word": " visitor", "probability": 0.5126953125}, {"start": 1882.39, "end": 1882.87, "word": " patterns", "probability": 0.7353515625}, {"start": 1882.87, "end": 1883.05, "word": " on", "probability": 0.11871337890625}, {"start": 1883.05, "end": 1883.07, "word": " the", "probability": 0.53857421875}, {"start": 1883.07, "end": 1883.33, "word": " gate", "probability": 0.6455078125}, {"start": 1883.33, "end": 1884.31, "word": " won't", "probability": 0.6258544921875}, {"start": 1884.31, "end": 1884.45, "word": " be", "probability": 0.378662109375}, {"start": 1884.45, "end": 1884.71, "word": " necessary,", "probability": 0.2064208984375}, {"start": 1884.99, "end": 1885.25, "word": " right?", "probability": 0.4619140625}, {"start": 1885.41, "end": 1885.63, "word": " Because", "probability": 0.79541015625}, {"start": 1885.63, "end": 1886.01, "word": " the", "probability": 0.8388671875}, {"start": 1886.01, "end": 1886.35, "word": " default", "probability": 0.96484375}, {"start": 1886.35, "end": 1886.77, "word": " method", "probability": 0.94677734375}, {"start": 1886.77, "end": 1887.65, "word": " solved", "probability": 0.70703125}, {"start": 1887.65, "end": 1887.79, "word": " the", "probability": 0.89404296875}, {"start": 1887.79, "end": 1888.11, "word": " problem.", "probability": 0.80224609375}, {"start": 1888.59, "end": 1888.77, "word": " Ok,", "probability": 0.30029296875}, {"start": 1888.97, "end": 1889.29, "word": " so", "probability": 0.56689453125}, {"start": 1889.29, "end": 1889.65, "word": " you", "probability": 0.7744140625}, {"start": 1889.65, "end": 1889.83, "word": " want", "probability": 0.58349609375}, {"start": 1889.83, "end": 1889.89, "word": " to", "probability": 0.96826171875}, {"start": 1889.89, "end": 1890.09, "word": " add", "probability": 0.93408203125}, {"start": 1890.09, "end": 1890.15, "word": " a", "probability": 0.86328125}, {"start": 1890.15, "end": 1890.15, "word": " new", "probability": 0.91259765625}, {"start": 1890.15, "end": 1890.43, "word": " method", "probability": 0.89794921875}, {"start": 1890.43, "end": 1891.27, "word": " and", "probability": 0.669921875}, {"start": 1891.27, "end": 1891.33, "word": " you", "probability": 0.38623046875}, {"start": 1891.33, "end": 1891.41, "word": " want", "probability": 0.68798828125}, {"start": 1891.41, "end": 1891.45, "word": " to", "probability": 0.7431640625}, {"start": 1891.45, "end": 1891.57, "word": " cache", "probability": 0.58642578125}, {"start": 1891.57, "end": 1891.71, "word": " it", "probability": 0.32568359375}, {"start": 1891.71, "end": 1891.83, "word": " and", "probability": 0.42919921875}, {"start": 1891.83, "end": 1892.03, "word": " hit", "probability": 0.13427734375}, {"start": 1892.03, "end": 1892.23, "word": " it?", "probability": 0.85595703125}], "temperature": 1.0}, {"id": 77, "seek": 191399, "start": 1892.97, "end": 1913.99, "text": " Make it default, you won't force the people below to make it implement. Those who want to make it implement, those who don't want to use the default, implementation. But as we said, if the interface doesn't support the default method, like all object oriented languages, in this case, the visitor pattern solves the problem for you. Solution", "tokens": [4387, 309, 7576, 11, 291, 1582, 380, 3464, 264, 561, 2507, 281, 652, 309, 4445, 13, 3950, 567, 528, 281, 652, 309, 4445, 11, 729, 567, 500, 380, 528, 281, 764, 264, 7576, 11, 11420, 13, 583, 382, 321, 848, 11, 498, 264, 9226, 1177, 380, 1406, 264, 7576, 3170, 11, 411, 439, 2657, 21841, 8650, 11, 294, 341, 1389, 11, 264, 28222, 5102, 39890, 264, 1154, 337, 291, 13, 318, 3386], "avg_logprob": -0.4773116307715847, "compression_ratio": 1.6847290640394088, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 1892.97, "end": 1893.29, "word": " Make", "probability": 0.084716796875}, {"start": 1893.29, "end": 1893.45, "word": " it", "probability": 0.85009765625}, {"start": 1893.45, "end": 1893.77, "word": " default,", "probability": 0.76025390625}, {"start": 1894.41, "end": 1894.55, "word": " you", "probability": 0.350830078125}, {"start": 1894.55, "end": 1894.63, "word": " won't", "probability": 0.6226806640625}, {"start": 1894.63, "end": 1895.01, "word": " force", "probability": 0.7900390625}, {"start": 1895.01, "end": 1895.19, "word": " the", "probability": 0.3173828125}, {"start": 1895.19, "end": 1895.31, "word": " people", "probability": 0.25830078125}, {"start": 1895.31, "end": 1895.53, "word": " below", "probability": 0.444091796875}, {"start": 1895.53, "end": 1895.85, "word": " to", "probability": 0.82080078125}, {"start": 1895.85, "end": 1896.09, "word": " make", "probability": 0.5546875}, {"start": 1896.09, "end": 1896.35, "word": " it", "probability": 0.68310546875}, {"start": 1896.35, "end": 1897.15, "word": " implement.", "probability": 0.62548828125}, {"start": 1897.43, "end": 1897.57, "word": " Those", "probability": 0.406005859375}, {"start": 1897.57, "end": 1897.65, "word": " who", "probability": 0.88818359375}, {"start": 1897.65, "end": 1897.83, "word": " want", "probability": 0.67236328125}, {"start": 1897.83, "end": 1897.93, "word": " to", "probability": 0.4033203125}, {"start": 1897.93, "end": 1898.11, "word": " make", "probability": 0.480224609375}, {"start": 1898.11, "end": 1898.23, "word": " it", "probability": 0.91748046875}, {"start": 1898.23, "end": 1898.53, "word": " implement,", "probability": 0.759765625}, {"start": 1898.71, "end": 1898.77, "word": " those", "probability": 0.66455078125}, {"start": 1898.77, "end": 1898.79, "word": " who", "probability": 0.90869140625}, {"start": 1898.79, "end": 1899.11, "word": " don't", "probability": 0.9248046875}, {"start": 1899.11, "end": 1899.27, "word": " want", "probability": 0.62744140625}, {"start": 1899.27, "end": 1899.29, "word": " to", "probability": 0.59130859375}, {"start": 1899.29, "end": 1899.63, "word": " use", "probability": 0.62841796875}, {"start": 1899.63, "end": 1899.91, "word": " the", "probability": 0.485595703125}, {"start": 1899.91, "end": 1900.21, "word": " default,", "probability": 0.97216796875}, {"start": 1900.61, "end": 1901.21, "word": " implementation.", "probability": 0.315673828125}, {"start": 1901.93, "end": 1902.33, "word": " But", "probability": 0.818359375}, {"start": 1902.33, "end": 1902.49, "word": " as", "probability": 0.71044921875}, {"start": 1902.49, "end": 1902.63, "word": " we", "probability": 0.65234375}, {"start": 1902.63, "end": 1902.83, "word": " said,", "probability": 0.880859375}, {"start": 1903.43, "end": 1903.57, "word": " if", "probability": 0.93408203125}, {"start": 1903.57, "end": 1903.69, "word": " the", "probability": 0.892578125}, {"start": 1903.69, "end": 1904.11, "word": " interface", "probability": 0.87646484375}, {"start": 1904.11, "end": 1904.29, "word": " doesn't", "probability": 0.78271484375}, {"start": 1904.29, "end": 1904.47, "word": " support", "probability": 0.97509765625}, {"start": 1904.47, "end": 1904.75, "word": " the", "probability": 0.609375}, {"start": 1904.75, "end": 1904.95, "word": " default", "probability": 0.9814453125}, {"start": 1904.95, "end": 1905.37, "word": " method,", "probability": 0.8671875}, {"start": 1905.85, "end": 1905.99, "word": " like", "probability": 0.75830078125}, {"start": 1905.99, "end": 1906.19, "word": " all", "probability": 0.72412109375}, {"start": 1906.19, "end": 1906.67, "word": " object", "probability": 0.460205078125}, {"start": 1906.67, "end": 1907.21, "word": " oriented", "probability": 0.537109375}, {"start": 1907.21, "end": 1907.39, "word": " languages,", "probability": 0.96435546875}, {"start": 1908.63, "end": 1909.03, "word": " in", "probability": 0.66796875}, {"start": 1909.03, "end": 1909.11, "word": " this", "probability": 0.84765625}, {"start": 1909.11, "end": 1909.47, "word": " case,", "probability": 0.8955078125}, {"start": 1909.83, "end": 1909.95, "word": " the", "probability": 0.5078125}, {"start": 1909.95, "end": 1910.13, "word": " visitor", "probability": 0.87109375}, {"start": 1910.13, "end": 1910.49, "word": " pattern", "probability": 0.90869140625}, {"start": 1910.49, "end": 1910.79, "word": " solves", "probability": 0.62841796875}, {"start": 1910.79, "end": 1911.55, "word": " the", "probability": 0.72509765625}, {"start": 1911.55, "end": 1911.81, "word": " problem", "probability": 0.798828125}, {"start": 1911.81, "end": 1912.21, "word": " for", "probability": 0.480712890625}, {"start": 1912.21, "end": 1912.63, "word": " you.", "probability": 0.95654296875}, {"start": 1913.45, "end": 1913.99, "word": " Solution", "probability": 0.728515625}], "temperature": 1.0}, {"id": 78, "seek": 192457, "start": 1916.27, "end": 1924.57, "text": "Consequences can add new operations without changing objects", "tokens": [34, 3739, 358, 2667, 393, 909, 777, 7705, 1553, 4473, 6565], "avg_logprob": -0.3574218824505806, "compression_ratio": 0.967741935483871, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1916.27, "end": 1917.43, "word": "Consequences", "probability": 0.73919677734375}, {"start": 1917.43, "end": 1918.45, "word": " can", "probability": 0.430908203125}, {"start": 1918.45, "end": 1920.25, "word": " add", "probability": 0.8564453125}, {"start": 1920.25, "end": 1920.53, "word": " new", "probability": 0.90478515625}, {"start": 1920.53, "end": 1921.25, "word": " operations", "probability": 0.94677734375}, {"start": 1921.25, "end": 1922.25, "word": " without", "probability": 0.88623046875}, {"start": 1922.25, "end": 1922.89, "word": " changing", "probability": 0.92724609375}, {"start": 1922.89, "end": 1924.57, "word": " objects", "probability": 0.90478515625}], "temperature": 1.0}, {"id": 79, "seek": 194473, "start": 1927.27, "end": 1944.73, "text": "The visitor pattern is a way of separating the operation from the object structure And a way of collecting together the different implementations of the operation for different kinds of elements", "tokens": [2278, 28222, 5102, 307, 257, 636, 295, 29279, 264, 6916, 490, 264, 2657, 3877, 400, 257, 636, 295, 12510, 1214, 264, 819, 4445, 763, 295, 264, 6916, 337, 819, 3685, 295, 4959], "avg_logprob": -0.25426136363636365, "compression_ratio": 1.5772357723577235, "no_speech_prob": 0.4296875, "words": [{"start": 1927.27, "end": 1927.99, "word": "The", "probability": 0.057159423828125}, {"start": 1927.99, "end": 1928.71, "word": " visitor", "probability": 0.85302734375}, {"start": 1928.71, "end": 1929.05, "word": " pattern", "probability": 0.84765625}, {"start": 1929.05, "end": 1929.21, "word": " is", "probability": 0.91845703125}, {"start": 1929.21, "end": 1929.31, "word": " a", "probability": 0.892578125}, {"start": 1929.31, "end": 1929.45, "word": " way", "probability": 0.93603515625}, {"start": 1929.45, "end": 1929.59, "word": " of", "probability": 0.8310546875}, {"start": 1929.59, "end": 1930.19, "word": " separating", "probability": 0.9599609375}, {"start": 1930.19, "end": 1934.71, "word": " the", "probability": 0.76318359375}, {"start": 1934.71, "end": 1935.15, "word": " operation", "probability": 0.90576171875}, {"start": 1935.15, "end": 1936.43, "word": " from", "probability": 0.84716796875}, {"start": 1936.43, "end": 1936.55, "word": " the", "probability": 0.8818359375}, {"start": 1936.55, "end": 1936.77, "word": " object", "probability": 0.94921875}, {"start": 1936.77, "end": 1937.35, "word": " structure", "probability": 0.853515625}, {"start": 1937.35, "end": 1938.03, "word": " And", "probability": 0.257080078125}, {"start": 1938.03, "end": 1939.47, "word": " a", "probability": 0.8818359375}, {"start": 1939.47, "end": 1939.71, "word": " way", "probability": 0.9599609375}, {"start": 1939.71, "end": 1939.95, "word": " of", "probability": 0.9541015625}, {"start": 1939.95, "end": 1940.45, "word": " collecting", "probability": 0.7841796875}, {"start": 1940.45, "end": 1940.93, "word": " together", "probability": 0.7822265625}, {"start": 1940.93, "end": 1941.15, "word": " the", "probability": 0.837890625}, {"start": 1941.15, "end": 1941.55, "word": " different", "probability": 0.884765625}, {"start": 1941.55, "end": 1942.45, "word": " implementations", "probability": 0.955078125}, {"start": 1942.45, "end": 1942.65, "word": " of", "probability": 0.9375}, {"start": 1942.65, "end": 1942.79, "word": " the", "probability": 0.876953125}, {"start": 1942.79, "end": 1943.21, "word": " operation", "probability": 0.84130859375}, {"start": 1943.21, "end": 1943.53, "word": " for", "probability": 0.89697265625}, {"start": 1943.53, "end": 1943.87, "word": " different", "probability": 0.8759765625}, {"start": 1943.87, "end": 1944.23, "word": " kinds", "probability": 0.8125}, {"start": 1944.23, "end": 1944.35, "word": " of", "probability": 0.9697265625}, {"start": 1944.35, "end": 1944.73, "word": " elements", "probability": 0.912109375}], "temperature": 1.0}, {"id": 80, "seek": 197570, "start": 1955.44, "end": 1975.7, "text": "for the different shapes. And the perimeter visitor collects all the shapes in the surroundings. That's why when you work in an area, you focus on the importance of calculating the dimensions for the shapes. That's it, you're done with this class, focus on calculating the dimensions. So here, collecting together the different implementations for the same process.", "tokens": [2994, 264, 819, 10854, 13, 400, 264, 32404, 28222, 39897, 439, 264, 10854, 294, 264, 25314, 13, 663, 311, 983, 562, 291, 589, 294, 364, 1859, 11, 291, 1879, 322, 264, 7379, 295, 28258, 264, 12819, 337, 264, 10854, 13, 663, 311, 309, 11, 291, 434, 1096, 365, 341, 1508, 11, 1879, 322, 28258, 264, 12819, 13, 407, 510, 11, 12510, 1214, 264, 819, 4445, 763, 337, 264, 912, 1399, 13], "avg_logprob": -0.6328125091062652, "compression_ratio": 1.806930693069307, "no_speech_prob": 2.6345252990722656e-05, "words": [{"start": 1955.44, "end": 1955.64, "word": "for", "probability": 0.15673828125}, {"start": 1955.64, "end": 1955.76, "word": " the", "probability": 0.2998046875}, {"start": 1955.76, "end": 1955.84, "word": " different", "probability": 0.5986328125}, {"start": 1955.84, "end": 1956.04, "word": " shapes.", "probability": 0.37255859375}, {"start": 1956.82, "end": 1957.14, "word": " And", "probability": 0.442626953125}, {"start": 1957.14, "end": 1957.26, "word": " the", "probability": 0.5263671875}, {"start": 1957.26, "end": 1957.6, "word": " perimeter", "probability": 0.5556640625}, {"start": 1957.6, "end": 1958.14, "word": " visitor", "probability": 0.70458984375}, {"start": 1958.14, "end": 1958.94, "word": " collects", "probability": 0.206298828125}, {"start": 1958.94, "end": 1959.14, "word": " all", "probability": 0.283935546875}, {"start": 1959.14, "end": 1959.14, "word": " the", "probability": 0.491455078125}, {"start": 1959.14, "end": 1959.14, "word": " shapes", "probability": 0.425537109375}, {"start": 1959.14, "end": 1959.14, "word": " in", "probability": 0.32958984375}, {"start": 1959.14, "end": 1959.56, "word": " the", "probability": 0.2054443359375}, {"start": 1959.56, "end": 1960.28, "word": " surroundings.", "probability": 0.119873046875}, {"start": 1962.14, "end": 1962.58, "word": " That's", "probability": 0.5362548828125}, {"start": 1962.58, "end": 1962.8, "word": " why", "probability": 0.91162109375}, {"start": 1962.8, "end": 1963.16, "word": " when", "probability": 0.49462890625}, {"start": 1963.16, "end": 1964.12, "word": " you", "probability": 0.92919921875}, {"start": 1964.12, "end": 1964.3, "word": " work", "probability": 0.63623046875}, {"start": 1964.3, "end": 1964.44, "word": " in", "probability": 0.4248046875}, {"start": 1964.44, "end": 1964.8, "word": " an", "probability": 0.5419921875}, {"start": 1964.8, "end": 1964.8, "word": " area,", "probability": 0.89697265625}, {"start": 1965.42, "end": 1965.68, "word": " you", "probability": 0.904296875}, {"start": 1965.68, "end": 1965.94, "word": " focus", "probability": 0.5859375}, {"start": 1965.94, "end": 1966.12, "word": " on", "probability": 0.87353515625}, {"start": 1966.12, "end": 1966.2, "word": " the", "probability": 0.53173828125}, {"start": 1966.2, "end": 1966.46, "word": " importance", "probability": 0.453125}, {"start": 1966.46, "end": 1966.64, "word": " of", "probability": 0.93505859375}, {"start": 1966.64, "end": 1966.88, "word": " calculating", "probability": 0.358642578125}, {"start": 1966.88, "end": 1966.98, "word": " the", "probability": 0.490966796875}, {"start": 1966.98, "end": 1967.18, "word": " dimensions", "probability": 0.286865234375}, {"start": 1967.18, "end": 1967.34, "word": " for", "probability": 0.57470703125}, {"start": 1967.34, "end": 1967.4, "word": " the", "probability": 0.59326171875}, {"start": 1967.4, "end": 1967.62, "word": " shapes.", "probability": 0.87109375}, {"start": 1967.78, "end": 1967.84, "word": " That's", "probability": 0.56890869140625}, {"start": 1967.84, "end": 1967.92, "word": " it,", "probability": 0.8818359375}, {"start": 1967.98, "end": 1968.14, "word": " you're", "probability": 0.4833984375}, {"start": 1968.14, "end": 1968.22, "word": " done", "probability": 0.830078125}, {"start": 1968.22, "end": 1968.32, "word": " with", "probability": 0.74560546875}, {"start": 1968.32, "end": 1968.36, "word": " this", "probability": 0.662109375}, {"start": 1968.36, "end": 1968.66, "word": " class,", "probability": 0.93701171875}, {"start": 1968.68, "end": 1968.92, "word": " focus", "probability": 0.18115234375}, {"start": 1968.92, "end": 1969.12, "word": " on", "probability": 0.7861328125}, {"start": 1969.12, "end": 1969.5, "word": " calculating", "probability": 0.71435546875}, {"start": 1969.5, "end": 1970.18, "word": " the", "probability": 0.56640625}, {"start": 1970.18, "end": 1970.44, "word": " dimensions.", "probability": 0.96728515625}, {"start": 1971.26, "end": 1971.46, "word": " So", "probability": 0.24267578125}, {"start": 1971.46, "end": 1971.62, "word": " here,", "probability": 0.58349609375}, {"start": 1971.72, "end": 1972.12, "word": " collecting", "probability": 0.54833984375}, {"start": 1972.12, "end": 1972.68, "word": " together", "probability": 0.822265625}, {"start": 1972.68, "end": 1973.04, "word": " the", "probability": 0.80126953125}, {"start": 1973.04, "end": 1973.48, "word": " different", "probability": 0.89794921875}, {"start": 1973.48, "end": 1974.68, "word": " implementations", "probability": 0.959716796875}, {"start": 1974.68, "end": 1975.28, "word": " for", "probability": 0.70556640625}, {"start": 1975.28, "end": 1975.4, "word": " the", "probability": 0.88671875}, {"start": 1975.4, "end": 1975.42, "word": " same", "probability": 0.40478515625}, {"start": 1975.42, "end": 1975.7, "word": " process.", "probability": 0.74853515625}], "temperature": 1.0}, {"id": 81, "seek": 200492, "start": 1976.96, "end": 2004.92, "text": "For different kinds of elements Is it clear guys? A visitor class is created which knows how to perform a particular operation Each type of element in the structure defines accept method This method accepts and through it receives the visitor It is present here and they implement it", "tokens": [12587, 819, 3685, 295, 4959, 1119, 309, 1850, 1074, 30, 316, 28222, 1508, 307, 2942, 597, 3255, 577, 281, 2042, 257, 1729, 6916, 6947, 2010, 295, 4478, 294, 264, 3877, 23122, 3241, 3170, 639, 3170, 33538, 293, 807, 309, 20717, 264, 28222, 467, 307, 1974, 510, 293, 436, 4445, 309], "avg_logprob": -0.4218750140246223, "compression_ratio": 1.546448087431694, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 1976.96, "end": 1977.2, "word": "For", "probability": 0.296142578125}, {"start": 1977.2, "end": 1978.24, "word": " different", "probability": 0.77587890625}, {"start": 1978.24, "end": 1978.68, "word": " kinds", "probability": 0.8046875}, {"start": 1978.68, "end": 1978.82, "word": " of", "probability": 0.97314453125}, {"start": 1978.82, "end": 1979.12, "word": " elements", "probability": 0.87939453125}, {"start": 1979.12, "end": 1979.7, "word": " Is", "probability": 0.229248046875}, {"start": 1979.7, "end": 1979.78, "word": " it", "probability": 0.673828125}, {"start": 1979.78, "end": 1979.88, "word": " clear", "probability": 0.8447265625}, {"start": 1979.88, "end": 1980.34, "word": " guys?", "probability": 0.251220703125}, {"start": 1980.9, "end": 1981.6, "word": " A", "probability": 0.234375}, {"start": 1981.6, "end": 1981.92, "word": " visitor", "probability": 0.89599609375}, {"start": 1981.92, "end": 1982.44, "word": " class", "probability": 0.96923828125}, {"start": 1982.44, "end": 1982.68, "word": " is", "probability": 0.9365234375}, {"start": 1982.68, "end": 1983.22, "word": " created", "probability": 0.8134765625}, {"start": 1983.22, "end": 1984.26, "word": " which", "probability": 0.7958984375}, {"start": 1984.26, "end": 1984.64, "word": " knows", "probability": 0.77783203125}, {"start": 1984.64, "end": 1984.84, "word": " how", "probability": 0.943359375}, {"start": 1984.84, "end": 1985.04, "word": " to", "probability": 0.974609375}, {"start": 1985.04, "end": 1985.44, "word": " perform", "probability": 0.8173828125}, {"start": 1985.44, "end": 1985.64, "word": " a", "probability": 0.97900390625}, {"start": 1985.64, "end": 1986.04, "word": " particular", "probability": 0.90478515625}, {"start": 1986.04, "end": 1986.52, "word": " operation", "probability": 0.9482421875}, {"start": 1986.52, "end": 1993.44, "word": " Each", "probability": 0.2451171875}, {"start": 1993.44, "end": 1995.9, "word": " type", "probability": 0.97119140625}, {"start": 1995.9, "end": 1996.16, "word": " of", "probability": 0.96826171875}, {"start": 1996.16, "end": 1996.52, "word": " element", "probability": 0.9541015625}, {"start": 1996.52, "end": 1996.82, "word": " in", "probability": 0.92578125}, {"start": 1996.82, "end": 1996.98, "word": " the", "probability": 0.88037109375}, {"start": 1996.98, "end": 1997.38, "word": " structure", "probability": 0.8447265625}, {"start": 1997.38, "end": 1997.94, "word": " defines", "probability": 0.8173828125}, {"start": 1997.94, "end": 1998.42, "word": " accept", "probability": 0.5048828125}, {"start": 1998.42, "end": 1998.92, "word": " method", "probability": 0.89990234375}, {"start": 1998.92, "end": 1999.7, "word": " This", "probability": 0.462158203125}, {"start": 1999.7, "end": 2000.0, "word": " method", "probability": 0.81982421875}, {"start": 2000.0, "end": 2000.34, "word": " accepts", "probability": 0.488525390625}, {"start": 2000.34, "end": 2000.54, "word": " and", "probability": 0.205322265625}, {"start": 2000.54, "end": 2000.64, "word": " through", "probability": 0.484619140625}, {"start": 2000.64, "end": 2001.04, "word": " it", "probability": 0.759765625}, {"start": 2001.04, "end": 2001.42, "word": " receives", "probability": 0.2452392578125}, {"start": 2001.42, "end": 2002.4, "word": " the", "probability": 0.76953125}, {"start": 2002.4, "end": 2002.72, "word": " visitor", "probability": 0.93359375}, {"start": 2002.72, "end": 2003.32, "word": " It", "probability": 0.4189453125}, {"start": 2003.32, "end": 2003.42, "word": " is", "probability": 0.64208984375}, {"start": 2003.42, "end": 2003.7, "word": " present", "probability": 0.50244140625}, {"start": 2003.7, "end": 2004.0, "word": " here", "probability": 0.8115234375}, {"start": 2004.0, "end": 2004.2, "word": " and", "probability": 0.73876953125}, {"start": 2004.2, "end": 2004.42, "word": " they", "probability": 0.470703125}, {"start": 2004.42, "end": 2004.76, "word": " implement", "probability": 0.3232421875}, {"start": 2004.76, "end": 2004.92, "word": " it", "probability": 0.89453125}], "temperature": 1.0}, {"id": 82, "seek": 202978, "start": 2007.84, "end": 2029.78, "text": "that can accept any kind of visitor. Of course, how did it accept any kind of visitor? Because all visitors follow the same interface. So it will accept any kind of class that is implemented to this interface. The visitor is passed to each element in the structure. So through accepting, I pass to whom?", "tokens": [6780, 393, 3241, 604, 733, 295, 28222, 13, 2720, 1164, 11, 577, 630, 309, 3241, 604, 733, 295, 28222, 30, 1436, 439, 14315, 1524, 264, 912, 9226, 13, 407, 309, 486, 3241, 604, 733, 295, 1508, 300, 307, 12270, 281, 341, 9226, 13, 440, 28222, 307, 4678, 281, 1184, 4478, 294, 264, 3877, 13, 407, 807, 17391, 11, 286, 1320, 281, 7101, 30], "avg_logprob": -0.4326171800494194, "compression_ratio": 1.7314285714285715, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2007.84, "end": 2008.22, "word": "that", "probability": 0.44140625}, {"start": 2008.22, "end": 2008.5, "word": " can", "probability": 0.9541015625}, {"start": 2008.5, "end": 2008.92, "word": " accept", "probability": 0.91552734375}, {"start": 2008.92, "end": 2009.16, "word": " any", "probability": 0.91064453125}, {"start": 2009.16, "end": 2009.46, "word": " kind", "probability": 0.89404296875}, {"start": 2009.46, "end": 2009.58, "word": " of", "probability": 0.97216796875}, {"start": 2009.58, "end": 2009.88, "word": " visitor.", "probability": 0.9541015625}, {"start": 2010.54, "end": 2010.62, "word": " Of", "probability": 0.1668701171875}, {"start": 2010.62, "end": 2010.68, "word": " course,", "probability": 0.94287109375}, {"start": 2010.76, "end": 2010.9, "word": " how", "probability": 0.79345703125}, {"start": 2010.9, "end": 2011.16, "word": " did", "probability": 0.66064453125}, {"start": 2011.16, "end": 2011.24, "word": " it", "probability": 0.61962890625}, {"start": 2011.24, "end": 2011.54, "word": " accept", "probability": 0.359130859375}, {"start": 2011.54, "end": 2011.78, "word": " any", "probability": 0.84765625}, {"start": 2011.78, "end": 2012.06, "word": " kind", "probability": 0.845703125}, {"start": 2012.06, "end": 2012.18, "word": " of", "probability": 0.9697265625}, {"start": 2012.18, "end": 2012.48, "word": " visitor?", "probability": 0.89892578125}, {"start": 2012.6, "end": 2012.7, "word": " Because", "probability": 0.33154296875}, {"start": 2012.7, "end": 2013.06, "word": " all", "probability": 0.58203125}, {"start": 2013.06, "end": 2013.38, "word": " visitors", "probability": 0.70654296875}, {"start": 2013.38, "end": 2014.16, "word": " follow", "probability": 0.45703125}, {"start": 2014.16, "end": 2015.2, "word": " the", "probability": 0.86474609375}, {"start": 2015.2, "end": 2015.32, "word": " same", "probability": 0.87109375}, {"start": 2015.32, "end": 2015.92, "word": " interface.", "probability": 0.900390625}, {"start": 2016.06, "end": 2016.14, "word": " So", "probability": 0.501953125}, {"start": 2016.14, "end": 2016.24, "word": " it", "probability": 0.52392578125}, {"start": 2016.24, "end": 2016.4, "word": " will", "probability": 0.326904296875}, {"start": 2016.4, "end": 2016.54, "word": " accept", "probability": 0.84326171875}, {"start": 2016.54, "end": 2016.8, "word": " any", "probability": 0.8427734375}, {"start": 2016.8, "end": 2016.98, "word": " kind", "probability": 0.53125}, {"start": 2016.98, "end": 2017.42, "word": " of", "probability": 0.84765625}, {"start": 2017.42, "end": 2019.0, "word": " class", "probability": 0.54833984375}, {"start": 2019.0, "end": 2019.16, "word": " that", "probability": 0.35302734375}, {"start": 2019.16, "end": 2019.28, "word": " is", "probability": 0.336669921875}, {"start": 2019.28, "end": 2019.62, "word": " implemented", "probability": 0.64794921875}, {"start": 2019.62, "end": 2019.82, "word": " to", "probability": 0.417236328125}, {"start": 2019.82, "end": 2019.84, "word": " this", "probability": 0.489990234375}, {"start": 2019.84, "end": 2020.34, "word": " interface.", "probability": 0.916015625}, {"start": 2022.24, "end": 2022.76, "word": " The", "probability": 0.796875}, {"start": 2022.76, "end": 2023.12, "word": " visitor", "probability": 0.94775390625}, {"start": 2023.12, "end": 2023.52, "word": " is", "probability": 0.9462890625}, {"start": 2023.52, "end": 2023.88, "word": " passed", "probability": 0.78369140625}, {"start": 2023.88, "end": 2024.12, "word": " to", "probability": 0.95947265625}, {"start": 2024.12, "end": 2024.4, "word": " each", "probability": 0.95068359375}, {"start": 2024.4, "end": 2024.74, "word": " element", "probability": 0.9609375}, {"start": 2024.74, "end": 2024.98, "word": " in", "probability": 0.919921875}, {"start": 2024.98, "end": 2025.1, "word": " the", "probability": 0.7939453125}, {"start": 2025.1, "end": 2025.52, "word": " structure.", "probability": 0.8359375}, {"start": 2026.46, "end": 2026.56, "word": " So", "probability": 0.50830078125}, {"start": 2026.56, "end": 2027.18, "word": " through", "probability": 0.220703125}, {"start": 2027.18, "end": 2028.14, "word": " accepting,", "probability": 0.26708984375}, {"start": 2028.26, "end": 2028.4, "word": " I", "probability": 0.71728515625}, {"start": 2028.4, "end": 2028.58, "word": " pass", "probability": 0.611328125}, {"start": 2028.58, "end": 2029.56, "word": " to", "probability": 0.311279296875}, {"start": 2029.56, "end": 2029.78, "word": " whom?", "probability": 0.9072265625}], "temperature": 1.0}, {"id": 83, "seek": 205952, "start": 2030.5, "end": 2059.52, "text": " by calling it accept method and the visitor then performs the operation one important consequence of this separation is that we can add later", "tokens": [538, 5141, 309, 3241, 3170, 293, 264, 28222, 550, 26213, 264, 6916, 472, 1021, 18326, 295, 341, 14634, 307, 300, 321, 393, 909, 1780], "avg_logprob": -0.3082812595367432, "compression_ratio": 1.3653846153846154, "no_speech_prob": 2.1457672119140625e-06, "words": [{"start": 2030.5, "end": 2031.2, "word": " by", "probability": 0.09014892578125}, {"start": 2031.2, "end": 2032.48, "word": " calling", "probability": 0.857421875}, {"start": 2032.48, "end": 2032.78, "word": " it", "probability": 0.94091796875}, {"start": 2032.78, "end": 2033.12, "word": " accept", "probability": 0.479248046875}, {"start": 2033.12, "end": 2033.54, "word": " method", "probability": 0.9345703125}, {"start": 2033.54, "end": 2033.8, "word": " and", "probability": 0.76416015625}, {"start": 2033.8, "end": 2033.94, "word": " the", "probability": 0.81640625}, {"start": 2033.94, "end": 2034.2, "word": " visitor", "probability": 0.943359375}, {"start": 2034.2, "end": 2034.62, "word": " then", "probability": 0.6953125}, {"start": 2034.62, "end": 2035.44, "word": " performs", "probability": 0.73876953125}, {"start": 2035.44, "end": 2035.6, "word": " the", "probability": 0.77587890625}, {"start": 2035.6, "end": 2036.02, "word": " operation", "probability": 0.943359375}, {"start": 2036.02, "end": 2038.78, "word": " one", "probability": 0.328369140625}, {"start": 2038.78, "end": 2049.42, "word": " important", "probability": 0.86279296875}, {"start": 2049.42, "end": 2050.24, "word": " consequence", "probability": 0.74951171875}, {"start": 2050.24, "end": 2052.02, "word": " of", "probability": 0.923828125}, {"start": 2052.02, "end": 2052.26, "word": " this", "probability": 0.916015625}, {"start": 2052.26, "end": 2052.9, "word": " separation", "probability": 0.96533203125}, {"start": 2052.9, "end": 2055.72, "word": " is", "probability": 0.548828125}, {"start": 2055.72, "end": 2058.16, "word": " that", "probability": 0.93994140625}, {"start": 2058.16, "end": 2058.36, "word": " we", "probability": 0.9287109375}, {"start": 2058.36, "end": 2058.7, "word": " can", "probability": 0.9453125}, {"start": 2058.7, "end": 2059.04, "word": " add", "probability": 0.89697265625}, {"start": 2059.04, "end": 2059.52, "word": " later", "probability": 0.9306640625}], "temperature": 1.0}, {"id": 84, "seek": 208714, "start": 2061.2, "end": 2087.14, "text": "We can later add a new operation, a new kind of visitor, without having to modify the element classes of the object structure Each type of visitor defines several visit methods, one for each kind of element Because here I named it process, he named it visit, that is, for each type of shape, there must be a specific visit or specific process", "tokens": [4360, 393, 1780, 909, 257, 777, 6916, 11, 257, 777, 733, 295, 28222, 11, 1553, 1419, 281, 16927, 264, 4478, 5359, 295, 264, 2657, 3877, 6947, 2010, 295, 28222, 23122, 2940, 3441, 7150, 11, 472, 337, 1184, 733, 295, 4478, 1436, 510, 286, 4926, 309, 1399, 11, 415, 4926, 309, 3441, 11, 300, 307, 11, 337, 1184, 2010, 295, 3909, 11, 456, 1633, 312, 257, 2685, 3441, 420, 2685, 1399], "avg_logprob": -0.3727993075276764, "compression_ratio": 1.71, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2061.2, "end": 2061.44, "word": "We", "probability": 0.38623046875}, {"start": 2061.44, "end": 2061.7, "word": " can", "probability": 0.93505859375}, {"start": 2061.7, "end": 2062.12, "word": " later", "probability": 0.916015625}, {"start": 2062.12, "end": 2062.38, "word": " add", "probability": 0.8798828125}, {"start": 2062.38, "end": 2062.54, "word": " a", "probability": 0.96826171875}, {"start": 2062.54, "end": 2062.7, "word": " new", "probability": 0.9013671875}, {"start": 2062.7, "end": 2063.18, "word": " operation,", "probability": 0.908203125}, {"start": 2063.44, "end": 2063.54, "word": " a", "probability": 0.96240234375}, {"start": 2063.54, "end": 2063.72, "word": " new", "probability": 0.90380859375}, {"start": 2063.72, "end": 2064.02, "word": " kind", "probability": 0.88134765625}, {"start": 2064.02, "end": 2064.16, "word": " of", "probability": 0.97412109375}, {"start": 2064.16, "end": 2064.44, "word": " visitor,", "probability": 0.92431640625}, {"start": 2067.12, "end": 2067.76, "word": " without", "probability": 0.61669921875}, {"start": 2067.76, "end": 2069.12, "word": " having", "probability": 0.89697265625}, {"start": 2069.12, "end": 2069.32, "word": " to", "probability": 0.9716796875}, {"start": 2069.32, "end": 2069.7, "word": " modify", "probability": 0.94677734375}, {"start": 2069.7, "end": 2069.96, "word": " the", "probability": 0.9072265625}, {"start": 2069.96, "end": 2070.34, "word": " element", "probability": 0.92333984375}, {"start": 2070.34, "end": 2071.04, "word": " classes", "probability": 0.888671875}, {"start": 2071.04, "end": 2071.24, "word": " of", "probability": 0.9453125}, {"start": 2071.24, "end": 2071.34, "word": " the", "probability": 0.86376953125}, {"start": 2071.34, "end": 2071.54, "word": " object", "probability": 0.947265625}, {"start": 2071.54, "end": 2072.02, "word": " structure", "probability": 0.8525390625}, {"start": 2072.02, "end": 2072.88, "word": " Each", "probability": 0.469482421875}, {"start": 2072.88, "end": 2073.24, "word": " type", "probability": 0.97509765625}, {"start": 2073.24, "end": 2073.44, "word": " of", "probability": 0.97509765625}, {"start": 2073.44, "end": 2073.72, "word": " visitor", "probability": 0.95458984375}, {"start": 2073.72, "end": 2074.28, "word": " defines", "probability": 0.72265625}, {"start": 2074.28, "end": 2074.9, "word": " several", "probability": 0.9169921875}, {"start": 2074.9, "end": 2075.86, "word": " visit", "probability": 0.80322265625}, {"start": 2075.86, "end": 2076.38, "word": " methods,", "probability": 0.88525390625}, {"start": 2076.8, "end": 2077.04, "word": " one", "probability": 0.931640625}, {"start": 2077.04, "end": 2077.34, "word": " for", "probability": 0.951171875}, {"start": 2077.34, "end": 2077.64, "word": " each", "probability": 0.93994140625}, {"start": 2077.64, "end": 2078.14, "word": " kind", "probability": 0.86328125}, {"start": 2078.14, "end": 2078.58, "word": " of", "probability": 0.966796875}, {"start": 2078.58, "end": 2078.88, "word": " element", "probability": 0.951171875}, {"start": 2078.88, "end": 2079.54, "word": " Because", "probability": 0.10528564453125}, {"start": 2079.54, "end": 2079.92, "word": " here", "probability": 0.2802734375}, {"start": 2079.92, "end": 2080.0, "word": " I", "probability": 0.8056640625}, {"start": 2080.0, "end": 2080.28, "word": " named", "probability": 0.422607421875}, {"start": 2080.28, "end": 2080.42, "word": " it", "probability": 0.85302734375}, {"start": 2080.42, "end": 2080.84, "word": " process,", "probability": 0.5390625}, {"start": 2081.56, "end": 2081.96, "word": " he", "probability": 0.43310546875}, {"start": 2081.96, "end": 2082.22, "word": " named", "probability": 0.73486328125}, {"start": 2082.22, "end": 2082.4, "word": " it", "probability": 0.94580078125}, {"start": 2082.4, "end": 2083.54, "word": " visit,", "probability": 0.66845703125}, {"start": 2083.76, "end": 2084.08, "word": " that", "probability": 0.137939453125}, {"start": 2084.08, "end": 2084.08, "word": " is,", "probability": 0.62890625}, {"start": 2084.18, "end": 2084.2, "word": " for", "probability": 0.5400390625}, {"start": 2084.2, "end": 2084.42, "word": " each", "probability": 0.5810546875}, {"start": 2084.42, "end": 2084.68, "word": " type", "probability": 0.423095703125}, {"start": 2084.68, "end": 2084.84, "word": " of", "probability": 0.9091796875}, {"start": 2084.84, "end": 2085.26, "word": " shape,", "probability": 0.2076416015625}, {"start": 2085.42, "end": 2085.42, "word": " there", "probability": 0.49853515625}, {"start": 2085.42, "end": 2085.54, "word": " must", "probability": 0.425537109375}, {"start": 2085.54, "end": 2085.74, "word": " be", "probability": 0.87646484375}, {"start": 2085.74, "end": 2085.88, "word": " a", "probability": 0.7216796875}, {"start": 2085.88, "end": 2085.88, "word": " specific", "probability": 0.52978515625}, {"start": 2085.88, "end": 2086.1, "word": " visit", "probability": 0.85400390625}, {"start": 2086.1, "end": 2086.72, "word": " or", "probability": 0.86669921875}, {"start": 2086.72, "end": 2086.78, "word": " specific", "probability": 0.51123046875}, {"start": 2086.78, "end": 2087.14, "word": " process", "probability": 0.95263671875}], "temperature": 1.0}, {"id": 85, "seek": 211092, "start": 2088.97, "end": 2110.93, "text": "The basic insight is that the precise set of instructions to execute depends on the runtime types of both the visitor and the visited element. What does this sentence mean? We know that polymorphism", "tokens": [2278, 3875, 11269, 307, 300, 264, 13600, 992, 295, 9415, 281, 14483, 5946, 322, 264, 34474, 3467, 295, 1293, 264, 28222, 293, 264, 11220, 4478, 13, 708, 775, 341, 8174, 914, 30, 492, 458, 300, 6754, 76, 18191, 1434], "avg_logprob": -0.2796875014901161, "compression_ratio": 1.4142857142857144, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 2088.97, "end": 2089.21, "word": "The", "probability": 0.732421875}, {"start": 2089.21, "end": 2089.61, "word": " basic", "probability": 0.9423828125}, {"start": 2089.61, "end": 2090.13, "word": " insight", "probability": 0.95654296875}, {"start": 2090.13, "end": 2090.39, "word": " is", "probability": 0.9443359375}, {"start": 2090.39, "end": 2090.65, "word": " that", "probability": 0.92822265625}, {"start": 2090.65, "end": 2090.87, "word": " the", "probability": 0.873046875}, {"start": 2090.87, "end": 2091.41, "word": " precise", "probability": 0.9375}, {"start": 2091.41, "end": 2091.73, "word": " set", "probability": 0.9306640625}, {"start": 2091.73, "end": 2091.87, "word": " of", "probability": 0.97119140625}, {"start": 2091.87, "end": 2092.43, "word": " instructions", "probability": 0.83935546875}, {"start": 2092.43, "end": 2092.61, "word": " to", "probability": 0.95263671875}, {"start": 2092.61, "end": 2093.15, "word": " execute", "probability": 0.9560546875}, {"start": 2093.15, "end": 2097.35, "word": " depends", "probability": 0.380615234375}, {"start": 2097.35, "end": 2101.41, "word": " on", "probability": 0.947265625}, {"start": 2101.41, "end": 2101.59, "word": " the", "probability": 0.904296875}, {"start": 2101.59, "end": 2102.09, "word": " runtime", "probability": 0.7216796875}, {"start": 2102.09, "end": 2103.27, "word": " types", "probability": 0.7646484375}, {"start": 2103.27, "end": 2103.85, "word": " of", "probability": 0.9609375}, {"start": 2103.85, "end": 2104.25, "word": " both", "probability": 0.8857421875}, {"start": 2104.25, "end": 2104.47, "word": " the", "probability": 0.9052734375}, {"start": 2104.47, "end": 2104.93, "word": " visitor", "probability": 0.9169921875}, {"start": 2104.93, "end": 2105.77, "word": " and", "probability": 0.9287109375}, {"start": 2105.77, "end": 2105.93, "word": " the", "probability": 0.8935546875}, {"start": 2105.93, "end": 2106.39, "word": " visited", "probability": 0.9619140625}, {"start": 2106.39, "end": 2107.33, "word": " element.", "probability": 0.90771484375}, {"start": 2107.47, "end": 2107.55, "word": " What", "probability": 0.6015625}, {"start": 2107.55, "end": 2107.73, "word": " does", "probability": 0.70703125}, {"start": 2107.73, "end": 2108.21, "word": " this", "probability": 0.85107421875}, {"start": 2108.21, "end": 2108.21, "word": " sentence", "probability": 0.78173828125}, {"start": 2108.21, "end": 2108.21, "word": " mean?", "probability": 0.93505859375}, {"start": 2108.73, "end": 2109.15, "word": " We", "probability": 0.2105712890625}, {"start": 2109.15, "end": 2109.55, "word": " know", "probability": 0.51806640625}, {"start": 2109.55, "end": 2110.11, "word": " that", "probability": 0.35595703125}, {"start": 2110.11, "end": 2110.93, "word": " polymorphism", "probability": 0.77838134765625}], "temperature": 1.0}, {"id": 86, "seek": 214207, "start": 2114.15, "end": 2142.07, "text": "Either the method you draw will depend on whom? On the actual type of the shape, right? It depends on the runtime type of the shape If it was a circle, it would implement the draw that exists in the circle This is the promorphism, right? The same thing with accept But this execution of the operation depends on two things It depends on the actual type of the shape And on the type of visitor, right?", "tokens": [36, 1839, 264, 3170, 291, 2642, 486, 5672, 322, 7101, 30, 1282, 264, 3539, 2010, 295, 264, 3909, 11, 558, 30, 467, 5946, 322, 264, 34474, 2010, 295, 264, 3909, 759, 309, 390, 257, 6329, 11, 309, 576, 4445, 264, 2642, 300, 8198, 294, 264, 6329, 639, 307, 264, 2234, 18191, 1434, 11, 558, 30, 440, 912, 551, 365, 3241, 583, 341, 15058, 295, 264, 6916, 5946, 322, 732, 721, 467, 5946, 322, 264, 3539, 2010, 295, 264, 3909, 400, 322, 264, 2010, 295, 28222, 11, 558, 30], "avg_logprob": -0.5358146335301774, "compression_ratio": 1.8779342723004695, "no_speech_prob": 4.190206527709961e-05, "words": [{"start": 2114.15, "end": 2114.55, "word": "Either", "probability": 0.4192352294921875}, {"start": 2114.55, "end": 2114.81, "word": " the", "probability": 0.68896484375}, {"start": 2114.81, "end": 2115.05, "word": " method", "probability": 0.86083984375}, {"start": 2115.05, "end": 2115.19, "word": " you", "probability": 0.176513671875}, {"start": 2115.19, "end": 2115.45, "word": " draw", "probability": 0.7734375}, {"start": 2115.45, "end": 2116.23, "word": " will", "probability": 0.1751708984375}, {"start": 2116.23, "end": 2117.25, "word": " depend", "probability": 0.359130859375}, {"start": 2117.25, "end": 2117.47, "word": " on", "probability": 0.90625}, {"start": 2117.47, "end": 2117.71, "word": " whom?", "probability": 0.1614990234375}, {"start": 2118.31, "end": 2118.83, "word": " On", "probability": 0.407958984375}, {"start": 2118.83, "end": 2118.91, "word": " the", "probability": 0.79248046875}, {"start": 2118.91, "end": 2119.39, "word": " actual", "probability": 0.2366943359375}, {"start": 2119.39, "end": 2119.71, "word": " type", "probability": 0.5107421875}, {"start": 2119.71, "end": 2120.53, "word": " of", "probability": 0.60595703125}, {"start": 2120.53, "end": 2120.59, "word": " the", "probability": 0.46826171875}, {"start": 2120.59, "end": 2120.89, "word": " shape,", "probability": 0.7548828125}, {"start": 2121.03, "end": 2121.83, "word": " right?", "probability": 0.51318359375}, {"start": 2122.03, "end": 2122.27, "word": " It", "probability": 0.51025390625}, {"start": 2122.27, "end": 2122.57, "word": " depends", "probability": 0.72998046875}, {"start": 2122.57, "end": 2123.01, "word": " on", "probability": 0.9296875}, {"start": 2123.01, "end": 2123.13, "word": " the", "probability": 0.6884765625}, {"start": 2123.13, "end": 2123.49, "word": " runtime", "probability": 0.6552734375}, {"start": 2123.49, "end": 2124.27, "word": " type", "probability": 0.70166015625}, {"start": 2124.27, "end": 2124.41, "word": " of", "probability": 0.7841796875}, {"start": 2124.41, "end": 2124.51, "word": " the", "probability": 0.338134765625}, {"start": 2124.51, "end": 2125.05, "word": " shape", "probability": 0.8134765625}, {"start": 2125.05, "end": 2125.91, "word": " If", "probability": 0.4765625}, {"start": 2125.91, "end": 2126.25, "word": " it", "probability": 0.87060546875}, {"start": 2126.25, "end": 2126.25, "word": " was", "probability": 0.373779296875}, {"start": 2126.25, "end": 2126.35, "word": " a", "probability": 0.75537109375}, {"start": 2126.35, "end": 2126.67, "word": " circle,", "probability": 0.96044921875}, {"start": 2126.77, "end": 2126.81, "word": " it", "probability": 0.6640625}, {"start": 2126.81, "end": 2126.87, "word": " would", "probability": 0.478271484375}, {"start": 2126.87, "end": 2127.07, "word": " implement", "probability": 0.136474609375}, {"start": 2127.07, "end": 2127.25, "word": " the", "probability": 0.84814453125}, {"start": 2127.25, "end": 2127.45, "word": " draw", "probability": 0.476806640625}, {"start": 2127.45, "end": 2127.57, "word": " that", "probability": 0.348876953125}, {"start": 2127.57, "end": 2127.75, "word": " exists", "probability": 0.263916015625}, {"start": 2127.75, "end": 2127.85, "word": " in", "probability": 0.70068359375}, {"start": 2127.85, "end": 2127.99, "word": " the", "probability": 0.7177734375}, {"start": 2127.99, "end": 2128.35, "word": " circle", "probability": 0.95068359375}, {"start": 2128.35, "end": 2129.11, "word": " This", "probability": 0.5732421875}, {"start": 2129.11, "end": 2129.33, "word": " is", "probability": 0.91455078125}, {"start": 2129.33, "end": 2129.41, "word": " the", "probability": 0.31640625}, {"start": 2129.41, "end": 2129.95, "word": " promorphism,", "probability": 0.7032063802083334}, {"start": 2129.99, "end": 2130.23, "word": " right?", "probability": 0.8603515625}, {"start": 2130.65, "end": 2131.01, "word": " The", "probability": 0.5107421875}, {"start": 2131.01, "end": 2131.13, "word": " same", "probability": 0.89697265625}, {"start": 2131.13, "end": 2131.41, "word": " thing", "probability": 0.6669921875}, {"start": 2131.41, "end": 2131.49, "word": " with", "probability": 0.462158203125}, {"start": 2131.49, "end": 2131.81, "word": " accept", "probability": 0.52197265625}, {"start": 2131.81, "end": 2132.83, "word": " But", "probability": 0.4267578125}, {"start": 2132.83, "end": 2133.11, "word": " this", "probability": 0.7548828125}, {"start": 2133.11, "end": 2133.53, "word": " execution", "probability": 0.275146484375}, {"start": 2133.53, "end": 2133.65, "word": " of", "probability": 0.441162109375}, {"start": 2133.65, "end": 2133.79, "word": " the", "probability": 0.73095703125}, {"start": 2133.79, "end": 2134.15, "word": " operation", "probability": 0.9404296875}, {"start": 2134.15, "end": 2134.45, "word": " depends", "probability": 0.7470703125}, {"start": 2134.45, "end": 2134.69, "word": " on", "probability": 0.9453125}, {"start": 2134.69, "end": 2135.03, "word": " two", "probability": 0.86083984375}, {"start": 2135.03, "end": 2135.03, "word": " things", "probability": 0.75634765625}, {"start": 2135.03, "end": 2135.99, "word": " It", "probability": 0.779296875}, {"start": 2135.99, "end": 2136.37, "word": " depends", "probability": 0.8701171875}, {"start": 2136.37, "end": 2136.61, "word": " on", "probability": 0.95263671875}, {"start": 2136.61, "end": 2136.71, "word": " the", "probability": 0.9130859375}, {"start": 2136.71, "end": 2136.75, "word": " actual", "probability": 0.771484375}, {"start": 2136.75, "end": 2137.35, "word": " type", "probability": 0.91845703125}, {"start": 2137.35, "end": 2137.53, "word": " of", "probability": 0.95849609375}, {"start": 2137.53, "end": 2137.67, "word": " the", "probability": 0.80126953125}, {"start": 2137.67, "end": 2137.99, "word": " shape", "probability": 0.89990234375}, {"start": 2137.99, "end": 2138.93, "word": " And", "probability": 0.41015625}, {"start": 2138.93, "end": 2139.09, "word": " on", "probability": 0.67822265625}, {"start": 2139.09, "end": 2139.19, "word": " the", "probability": 0.76806640625}, {"start": 2139.19, "end": 2139.37, "word": " type", "probability": 0.72265625}, {"start": 2139.37, "end": 2139.71, "word": " of", "probability": 0.9638671875}, {"start": 2139.71, "end": 2140.79, "word": " visitor,", "probability": 0.5458984375}, {"start": 2141.71, "end": 2142.07, "word": " right?", "probability": 0.382568359375}], "temperature": 1.0}, {"id": 87, "seek": 216558, "start": 2144.44, "end": 2165.58, "text": "This is the meaning of the sentence I said, that the process that will be carried out now will depend on two things, on the type of shape and type of visitor. Here, if the shape is a circle and the visitor is to calculate the area, it will come to the circle and carry out the process and this will calculate the area. This is the meaning of the sentence I said.", "tokens": [5723, 307, 264, 3620, 295, 264, 8174, 286, 848, 11, 300, 264, 1399, 300, 486, 312, 9094, 484, 586, 486, 5672, 322, 732, 721, 11, 322, 264, 2010, 295, 3909, 293, 2010, 295, 28222, 13, 1692, 11, 498, 264, 3909, 307, 257, 6329, 293, 264, 28222, 307, 281, 8873, 264, 1859, 11, 309, 486, 808, 281, 264, 6329, 293, 3985, 484, 264, 1399, 293, 341, 486, 8873, 264, 1859, 13, 639, 307, 264, 3620, 295, 264, 8174, 286, 848, 13], "avg_logprob": -0.45871914168934763, "compression_ratio": 1.989010989010989, "no_speech_prob": 1.138448715209961e-05, "words": [{"start": 2144.44, "end": 2144.76, "word": "This", "probability": 0.1529541015625}, {"start": 2144.76, "end": 2144.84, "word": " is", "probability": 0.88525390625}, {"start": 2144.84, "end": 2144.9, "word": " the", "probability": 0.822265625}, {"start": 2144.9, "end": 2144.94, "word": " meaning", "probability": 0.7421875}, {"start": 2144.94, "end": 2145.12, "word": " of", "probability": 0.9365234375}, {"start": 2145.12, "end": 2145.16, "word": " the", "probability": 0.77099609375}, {"start": 2145.16, "end": 2145.3, "word": " sentence", "probability": 0.7412109375}, {"start": 2145.3, "end": 2145.44, "word": " I", "probability": 0.392822265625}, {"start": 2145.44, "end": 2145.7, "word": " said,", "probability": 0.275146484375}, {"start": 2145.98, "end": 2146.08, "word": " that", "probability": 0.51806640625}, {"start": 2146.08, "end": 2146.2, "word": " the", "probability": 0.775390625}, {"start": 2146.2, "end": 2146.44, "word": " process", "probability": 0.6806640625}, {"start": 2146.44, "end": 2146.6, "word": " that", "probability": 0.261474609375}, {"start": 2146.6, "end": 2146.76, "word": " will", "probability": 0.64453125}, {"start": 2146.76, "end": 2146.88, "word": " be", "probability": 0.5869140625}, {"start": 2146.88, "end": 2147.08, "word": " carried", "probability": 0.272216796875}, {"start": 2147.08, "end": 2147.2, "word": " out", "probability": 0.86669921875}, {"start": 2147.2, "end": 2147.42, "word": " now", "probability": 0.275390625}, {"start": 2147.42, "end": 2147.58, "word": " will", "probability": 0.63330078125}, {"start": 2147.58, "end": 2147.82, "word": " depend", "probability": 0.81103515625}, {"start": 2147.82, "end": 2147.98, "word": " on", "probability": 0.9462890625}, {"start": 2147.98, "end": 2148.38, "word": " two", "probability": 0.86865234375}, {"start": 2148.38, "end": 2148.38, "word": " things,", "probability": 0.5927734375}, {"start": 2149.06, "end": 2149.14, "word": " on", "probability": 0.5859375}, {"start": 2149.14, "end": 2149.22, "word": " the", "probability": 0.76953125}, {"start": 2149.22, "end": 2149.36, "word": " type", "probability": 0.73095703125}, {"start": 2149.36, "end": 2149.48, "word": " of", "probability": 0.96484375}, {"start": 2149.48, "end": 2149.8, "word": " shape", "probability": 0.485107421875}, {"start": 2149.8, "end": 2150.88, "word": " and", "probability": 0.7431640625}, {"start": 2150.88, "end": 2151.1, "word": " type", "probability": 0.52587890625}, {"start": 2151.1, "end": 2151.14, "word": " of", "probability": 0.9443359375}, {"start": 2151.14, "end": 2152.42, "word": " visitor.", "probability": 0.64208984375}, {"start": 2154.06, "end": 2154.38, "word": " Here,", "probability": 0.435546875}, {"start": 2154.46, "end": 2154.58, "word": " if", "probability": 0.94970703125}, {"start": 2154.58, "end": 2154.7, "word": " the", "probability": 0.89599609375}, {"start": 2154.7, "end": 2154.88, "word": " shape", "probability": 0.84716796875}, {"start": 2154.88, "end": 2155.0, "word": " is", "probability": 0.89013671875}, {"start": 2155.0, "end": 2155.16, "word": " a", "probability": 0.495361328125}, {"start": 2155.16, "end": 2155.42, "word": " circle", "probability": 0.970703125}, {"start": 2155.42, "end": 2155.96, "word": " and", "probability": 0.67138671875}, {"start": 2155.96, "end": 2156.08, "word": " the", "probability": 0.8505859375}, {"start": 2156.08, "end": 2156.38, "word": " visitor", "probability": 0.96484375}, {"start": 2156.38, "end": 2156.58, "word": " is", "probability": 0.55078125}, {"start": 2156.58, "end": 2156.6, "word": " to", "probability": 0.08929443359375}, {"start": 2156.6, "end": 2156.88, "word": " calculate", "probability": 0.86572265625}, {"start": 2156.88, "end": 2157.02, "word": " the", "probability": 0.86572265625}, {"start": 2157.02, "end": 2157.42, "word": " area,", "probability": 0.77392578125}, {"start": 2158.24, "end": 2158.58, "word": " it", "probability": 0.2327880859375}, {"start": 2158.58, "end": 2158.94, "word": " will", "probability": 0.716796875}, {"start": 2158.94, "end": 2159.08, "word": " come", "probability": 0.7578125}, {"start": 2159.08, "end": 2159.16, "word": " to", "probability": 0.94384765625}, {"start": 2159.16, "end": 2159.3, "word": " the", "probability": 0.896484375}, {"start": 2159.3, "end": 2159.74, "word": " circle", "probability": 0.96533203125}, {"start": 2159.74, "end": 2160.3, "word": " and", "probability": 0.7314453125}, {"start": 2160.3, "end": 2160.54, "word": " carry", "probability": 0.67822265625}, {"start": 2160.54, "end": 2160.6, "word": " out", "probability": 0.87841796875}, {"start": 2160.6, "end": 2160.74, "word": " the", "probability": 0.90673828125}, {"start": 2160.74, "end": 2161.16, "word": " process", "probability": 0.93994140625}, {"start": 2161.16, "end": 2161.58, "word": " and", "probability": 0.6904296875}, {"start": 2161.58, "end": 2162.04, "word": " this", "probability": 0.35986328125}, {"start": 2162.04, "end": 2162.2, "word": " will", "probability": 0.4921875}, {"start": 2162.2, "end": 2162.44, "word": " calculate", "probability": 0.356689453125}, {"start": 2162.44, "end": 2163.62, "word": " the", "probability": 0.70458984375}, {"start": 2163.62, "end": 2163.94, "word": " area.", "probability": 0.85888671875}, {"start": 2164.3, "end": 2164.62, "word": " This", "probability": 0.767578125}, {"start": 2164.62, "end": 2164.7, "word": " is", "probability": 0.94189453125}, {"start": 2164.7, "end": 2164.78, "word": " the", "probability": 0.91796875}, {"start": 2164.78, "end": 2164.8, "word": " meaning", "probability": 0.8486328125}, {"start": 2164.8, "end": 2164.96, "word": " of", "probability": 0.9736328125}, {"start": 2164.96, "end": 2164.98, "word": " the", "probability": 0.91650390625}, {"start": 2164.98, "end": 2165.14, "word": " sentence", "probability": 0.86083984375}, {"start": 2165.14, "end": 2165.3, "word": " I", "probability": 0.62109375}, {"start": 2165.3, "end": 2165.58, "word": " said.", "probability": 0.5849609375}], "temperature": 1.0}, {"id": 88, "seek": 218142, "start": 2169.18, "end": 2181.42, "text": "It depends on the run-time types of both the visitor and the visited element, which in our case is the shape, the circle or rectangle. This is an L-diagram similar to the one I drew, but maybe I drew it more detailed.", "tokens": [3522, 5946, 322, 264, 1190, 12, 3766, 3467, 295, 1293, 264, 28222, 293, 264, 11220, 4478, 11, 597, 294, 527, 1389, 307, 264, 3909, 11, 264, 6329, 420, 21930, 13, 639, 307, 364, 441, 12, 4504, 3914, 2531, 281, 264, 472, 286, 12804, 11, 457, 1310, 286, 12804, 309, 544, 9942, 13], "avg_logprob": -0.4587264105958759, "compression_ratio": 1.4370860927152318, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 2169.18, "end": 2169.42, "word": "It", "probability": 0.3876953125}, {"start": 2169.42, "end": 2169.9, "word": " depends", "probability": 0.66796875}, {"start": 2169.9, "end": 2170.12, "word": " on", "probability": 0.9345703125}, {"start": 2170.12, "end": 2170.3, "word": " the", "probability": 0.84521484375}, {"start": 2170.3, "end": 2170.48, "word": " run", "probability": 0.43896484375}, {"start": 2170.48, "end": 2170.78, "word": "-time", "probability": 0.805908203125}, {"start": 2170.78, "end": 2171.18, "word": " types", "probability": 0.47265625}, {"start": 2171.18, "end": 2171.4, "word": " of", "probability": 0.92236328125}, {"start": 2171.4, "end": 2171.64, "word": " both", "probability": 0.8427734375}, {"start": 2171.64, "end": 2171.8, "word": " the", "probability": 0.80810546875}, {"start": 2171.8, "end": 2172.1, "word": " visitor", "probability": 0.876953125}, {"start": 2172.1, "end": 2172.56, "word": " and", "probability": 0.9208984375}, {"start": 2172.56, "end": 2172.68, "word": " the", "probability": 0.83642578125}, {"start": 2172.68, "end": 2172.98, "word": " visited", "probability": 0.94921875}, {"start": 2172.98, "end": 2173.44, "word": " element,", "probability": 0.8955078125}, {"start": 2173.86, "end": 2173.86, "word": " which", "probability": 0.62255859375}, {"start": 2173.86, "end": 2174.06, "word": " in", "probability": 0.361572265625}, {"start": 2174.06, "end": 2174.46, "word": " our", "probability": 0.77392578125}, {"start": 2174.46, "end": 2174.46, "word": " case", "probability": 0.90234375}, {"start": 2174.46, "end": 2174.48, "word": " is", "probability": 0.79736328125}, {"start": 2174.48, "end": 2174.6, "word": " the", "probability": 0.55224609375}, {"start": 2174.6, "end": 2174.9, "word": " shape,", "probability": 0.87353515625}, {"start": 2175.0, "end": 2175.12, "word": " the", "probability": 0.33154296875}, {"start": 2175.12, "end": 2175.4, "word": " circle", "probability": 0.94140625}, {"start": 2175.4, "end": 2175.58, "word": " or", "probability": 0.88720703125}, {"start": 2175.58, "end": 2176.06, "word": " rectangle.", "probability": 0.77294921875}, {"start": 2176.96, "end": 2177.28, "word": " This", "probability": 0.2158203125}, {"start": 2177.28, "end": 2177.46, "word": " is", "probability": 0.515625}, {"start": 2177.46, "end": 2177.58, "word": " an", "probability": 0.307861328125}, {"start": 2177.58, "end": 2177.7, "word": " L", "probability": 0.806640625}, {"start": 2177.7, "end": 2178.2, "word": "-diagram", "probability": 0.6900227864583334}, {"start": 2178.2, "end": 2179.08, "word": " similar", "probability": 0.456298828125}, {"start": 2179.08, "end": 2179.4, "word": " to", "probability": 0.95849609375}, {"start": 2179.4, "end": 2179.58, "word": " the", "probability": 0.57763671875}, {"start": 2179.58, "end": 2179.58, "word": " one", "probability": 0.85693359375}, {"start": 2179.58, "end": 2179.72, "word": " I", "probability": 0.86962890625}, {"start": 2179.72, "end": 2180.02, "word": " drew,", "probability": 0.740234375}, {"start": 2180.22, "end": 2180.34, "word": " but", "probability": 0.76904296875}, {"start": 2180.34, "end": 2180.56, "word": " maybe", "probability": 0.380615234375}, {"start": 2180.56, "end": 2180.7, "word": " I", "probability": 0.287109375}, {"start": 2180.7, "end": 2180.94, "word": " drew", "probability": 0.705078125}, {"start": 2180.94, "end": 2181.08, "word": " it", "probability": 0.80029296875}, {"start": 2181.08, "end": 2181.14, "word": " more", "probability": 0.6123046875}, {"start": 2181.14, "end": 2181.42, "word": " detailed.", "probability": 0.6064453125}], "temperature": 1.0}, {"id": 89, "seek": 221163, "start": 2183.71, "end": 2211.63, "text": " Take a look at today's diagram of the visitor pattern. In today's diagram of the visitor, there are two hierarchies, two object structures. The main object structure that does not change is the element and is divided into concrete element A and concrete element B. Both have a method accept that takes visitor. This interface visitor has for each shape A and B", "tokens": [3664, 257, 574, 412, 965, 311, 10686, 295, 264, 28222, 5102, 13, 682, 965, 311, 10686, 295, 264, 28222, 11, 456, 366, 732, 35250, 530, 11, 732, 2657, 9227, 13, 440, 2135, 2657, 3877, 300, 775, 406, 1319, 307, 264, 4478, 293, 307, 6666, 666, 9859, 4478, 316, 293, 9859, 4478, 363, 13, 6767, 362, 257, 3170, 3241, 300, 2516, 28222, 13, 639, 9226, 28222, 575, 337, 1184, 3909, 316, 293, 363], "avg_logprob": -0.5231164122281009, "compression_ratio": 1.7871287128712872, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2183.71, "end": 2184.17, "word": " Take", "probability": 0.09796142578125}, {"start": 2184.17, "end": 2184.31, "word": " a", "probability": 0.89013671875}, {"start": 2184.31, "end": 2184.31, "word": " look", "probability": 0.96728515625}, {"start": 2184.31, "end": 2184.41, "word": " at", "probability": 0.8505859375}, {"start": 2184.41, "end": 2184.59, "word": " today's", "probability": 0.5565185546875}, {"start": 2184.59, "end": 2185.01, "word": " diagram", "probability": 0.382568359375}, {"start": 2185.01, "end": 2186.09, "word": " of", "probability": 0.445068359375}, {"start": 2186.09, "end": 2186.21, "word": " the", "probability": 0.2890625}, {"start": 2186.21, "end": 2186.39, "word": " visitor", "probability": 0.8681640625}, {"start": 2186.39, "end": 2186.87, "word": " pattern.", "probability": 0.8095703125}, {"start": 2187.43, "end": 2187.93, "word": " In", "probability": 0.1640625}, {"start": 2187.93, "end": 2188.17, "word": " today's", "probability": 0.834228515625}, {"start": 2188.17, "end": 2188.63, "word": " diagram", "probability": 0.76806640625}, {"start": 2188.63, "end": 2189.41, "word": " of", "probability": 0.365966796875}, {"start": 2189.41, "end": 2189.55, "word": " the", "probability": 0.64794921875}, {"start": 2189.55, "end": 2189.77, "word": " visitor,", "probability": 0.9345703125}, {"start": 2189.89, "end": 2189.89, "word": " there", "probability": 0.493896484375}, {"start": 2189.89, "end": 2189.89, "word": " are", "probability": 0.90673828125}, {"start": 2189.89, "end": 2190.11, "word": " two", "probability": 0.8369140625}, {"start": 2190.11, "end": 2190.71, "word": " hierarchies,", "probability": 0.94140625}, {"start": 2190.91, "end": 2191.07, "word": " two", "probability": 0.875}, {"start": 2191.07, "end": 2191.41, "word": " object", "probability": 0.83935546875}, {"start": 2191.41, "end": 2191.89, "word": " structures.", "probability": 0.83349609375}, {"start": 2192.39, "end": 2192.67, "word": " The", "probability": 0.333984375}, {"start": 2192.67, "end": 2192.67, "word": " main", "probability": 0.67041015625}, {"start": 2192.67, "end": 2192.87, "word": " object", "probability": 0.83740234375}, {"start": 2192.87, "end": 2193.69, "word": " structure", "probability": 0.85595703125}, {"start": 2193.69, "end": 2193.79, "word": " that", "probability": 0.37548828125}, {"start": 2193.79, "end": 2193.91, "word": " does", "probability": 0.251953125}, {"start": 2193.91, "end": 2193.95, "word": " not", "probability": 0.94287109375}, {"start": 2193.95, "end": 2194.37, "word": " change", "probability": 0.673828125}, {"start": 2194.37, "end": 2194.73, "word": " is", "probability": 0.6005859375}, {"start": 2194.73, "end": 2195.81, "word": " the", "probability": 0.78173828125}, {"start": 2195.81, "end": 2196.33, "word": " element", "probability": 0.75}, {"start": 2196.33, "end": 2196.97, "word": " and", "probability": 0.34619140625}, {"start": 2196.97, "end": 2197.07, "word": " is", "probability": 0.1865234375}, {"start": 2197.07, "end": 2197.29, "word": " divided", "probability": 0.45361328125}, {"start": 2197.29, "end": 2197.59, "word": " into", "probability": 0.775390625}, {"start": 2197.59, "end": 2197.95, "word": " concrete", "probability": 0.55810546875}, {"start": 2197.95, "end": 2198.39, "word": " element", "probability": 0.9013671875}, {"start": 2198.39, "end": 2198.73, "word": " A", "probability": 0.787109375}, {"start": 2198.73, "end": 2198.89, "word": " and", "probability": 0.71728515625}, {"start": 2198.89, "end": 2199.17, "word": " concrete", "probability": 0.8935546875}, {"start": 2199.17, "end": 2199.51, "word": " element", "probability": 0.95703125}, {"start": 2199.51, "end": 2200.53, "word": " B.", "probability": 0.9970703125}, {"start": 2200.89, "end": 2201.53, "word": " Both", "probability": 0.5908203125}, {"start": 2201.53, "end": 2201.75, "word": " have", "probability": 0.495361328125}, {"start": 2201.75, "end": 2201.97, "word": " a", "probability": 0.57958984375}, {"start": 2201.97, "end": 2202.15, "word": " method", "probability": 0.9501953125}, {"start": 2202.15, "end": 2202.67, "word": " accept", "probability": 0.469482421875}, {"start": 2202.67, "end": 2202.91, "word": " that", "probability": 0.6171875}, {"start": 2202.91, "end": 2203.27, "word": " takes", "probability": 0.6533203125}, {"start": 2203.27, "end": 2204.61, "word": " visitor.", "probability": 0.41796875}, {"start": 2205.45, "end": 2205.99, "word": " This", "probability": 0.5087890625}, {"start": 2205.99, "end": 2207.15, "word": " interface", "probability": 0.578125}, {"start": 2207.15, "end": 2207.67, "word": " visitor", "probability": 0.7060546875}, {"start": 2207.67, "end": 2209.05, "word": " has", "probability": 0.30908203125}, {"start": 2209.05, "end": 2209.99, "word": " for", "probability": 0.2705078125}, {"start": 2209.99, "end": 2210.35, "word": " each", "probability": 0.8369140625}, {"start": 2210.35, "end": 2210.83, "word": " shape", "probability": 0.8427734375}, {"start": 2210.83, "end": 2211.27, "word": " A", "probability": 0.529296875}, {"start": 2211.27, "end": 2211.39, "word": " and", "probability": 0.89306640625}, {"start": 2211.39, "end": 2211.63, "word": " B", "probability": 0.9970703125}], "temperature": 1.0}, {"id": 90, "seek": 224126, "start": 2212.9, "end": 2241.26, "text": "عمل visit اللي هي اللي سميتها إيش process process concrete element B process concrete element A و B طبعا المفروض هنا إنه في سهم يوديني على مين على ال A و B مش حاطه عشان مايعجدش الرسمة يعني هذا الرسمة أوضح تمام هايه مش هذا بستخدم X و Y و هذا أصلا مشاكل ال visitor إنه هاي ال coupling هذا تمام إنه بعتمد على نوع ال concrete objects", "tokens": [25957, 1211, 3441, 13672, 1829, 39896, 13672, 1829, 8608, 2304, 36081, 11296, 11933, 1829, 8592, 1399, 1399, 9859, 4478, 363, 1399, 9859, 4478, 316, 4032, 363, 23032, 3555, 3615, 995, 9673, 5172, 32887, 11242, 34105, 36145, 3224, 8978, 8608, 16095, 7251, 23328, 9957, 1829, 15844, 3714, 9957, 15844, 2423, 316, 4032, 363, 37893, 11331, 41193, 3224, 6225, 8592, 7649, 19446, 40228, 7435, 3215, 8592, 34892, 38251, 3660, 37495, 22653, 23758, 34892, 38251, 3660, 34051, 11242, 5016, 46811, 10943, 8032, 995, 1829, 3224, 37893, 23758, 4724, 14851, 9778, 40448, 1783, 4032, 398, 4032, 23758, 5551, 9381, 15040, 37893, 995, 28820, 2423, 28222, 36145, 3224, 8032, 47302, 2423, 37447, 23758, 46811, 10943, 36145, 3224, 4724, 34268, 2304, 3215, 15844, 8717, 45367, 2423, 9859, 6565], "avg_logprob": -0.26448172088561017, "compression_ratio": 1.8444444444444446, "no_speech_prob": 1.3709068298339844e-06, "words": [{"start": 2212.9, "end": 2213.3, "word": "عمل", "probability": 0.519561767578125}, {"start": 2213.3, "end": 2213.62, "word": " visit", "probability": 0.794921875}, {"start": 2213.62, "end": 2214.4, "word": " اللي", "probability": 0.4779052734375}, {"start": 2214.4, "end": 2214.66, "word": " هي", "probability": 0.260986328125}, {"start": 2214.66, "end": 2215.1, "word": " اللي", "probability": 0.7001953125}, {"start": 2215.1, "end": 2215.54, "word": " سميتها", "probability": 0.86572265625}, {"start": 2215.54, "end": 2215.78, "word": " إيش", "probability": 0.7164713541666666}, {"start": 2215.78, "end": 2216.72, "word": " process", "probability": 0.76171875}, {"start": 2216.72, "end": 2217.9, "word": " process", "probability": 0.7177734375}, {"start": 2217.9, "end": 2218.38, "word": " concrete", "probability": 0.84326171875}, {"start": 2218.38, "end": 2218.7, "word": " element", "probability": 0.92529296875}, {"start": 2218.7, "end": 2218.96, "word": " B", "probability": 0.460693359375}, {"start": 2218.96, "end": 2219.32, "word": " process", "probability": 0.63232421875}, {"start": 2219.32, "end": 2219.84, "word": " concrete", "probability": 0.859375}, {"start": 2219.84, "end": 2220.48, "word": " element", "probability": 0.9189453125}, {"start": 2220.48, "end": 2220.94, "word": " A", "probability": 0.7958984375}, {"start": 2220.94, "end": 2221.06, "word": " و", "probability": 0.62646484375}, {"start": 2221.06, "end": 2221.2, "word": " B", "probability": 0.4443359375}, {"start": 2221.2, "end": 2222.7, "word": " طبعا", "probability": 0.9793701171875}, {"start": 2222.7, "end": 2223.18, "word": " المفروض", "probability": 0.9796142578125}, {"start": 2223.18, "end": 2223.4, "word": " هنا", "probability": 0.97802734375}, {"start": 2223.4, "end": 2223.62, "word": " إنه", "probability": 0.6099853515625}, {"start": 2223.62, "end": 2223.82, "word": " في", "probability": 0.794921875}, {"start": 2223.82, "end": 2224.42, "word": " سهم", "probability": 0.84228515625}, {"start": 2224.42, "end": 2225.44, "word": " يوديني", "probability": 0.8489990234375}, {"start": 2225.44, "end": 2225.56, "word": " على", "probability": 0.59765625}, {"start": 2225.56, "end": 2225.88, "word": " مين", "probability": 0.97216796875}, {"start": 2225.88, "end": 2226.9, "word": " على", "probability": 0.50341796875}, {"start": 2226.9, "end": 2227.04, "word": " ال", "probability": 0.72216796875}, {"start": 2227.04, "end": 2227.08, "word": " A", "probability": 0.69921875}, {"start": 2227.08, "end": 2227.16, "word": " و", "probability": 0.96728515625}, {"start": 2227.16, "end": 2227.2, "word": " B", "probability": 0.91650390625}, {"start": 2227.2, "end": 2227.44, "word": " مش", "probability": 0.76123046875}, {"start": 2227.44, "end": 2227.78, "word": " حاطه", "probability": 0.78369140625}, {"start": 2227.78, "end": 2228.0, "word": " عشان", "probability": 0.9480794270833334}, {"start": 2228.0, "end": 2228.58, "word": " مايعجدش", "probability": 0.7810546875}, {"start": 2228.58, "end": 2229.16, "word": " الرسمة", "probability": 0.9488932291666666}, {"start": 2229.16, "end": 2229.62, "word": " يعني", "probability": 0.880126953125}, {"start": 2229.62, "end": 2229.82, "word": " هذا", "probability": 0.716796875}, {"start": 2229.82, "end": 2231.28, "word": " الرسمة", "probability": 0.9344075520833334}, {"start": 2231.28, "end": 2232.2, "word": " أوضح", "probability": 0.9278971354166666}, {"start": 2232.2, "end": 2232.92, "word": " تمام", "probability": 0.6826171875}, {"start": 2232.92, "end": 2233.28, "word": " هايه", "probability": 0.53778076171875}, {"start": 2233.28, "end": 2233.44, "word": " مش", "probability": 0.9306640625}, {"start": 2233.44, "end": 2233.66, "word": " هذا", "probability": 0.7822265625}, {"start": 2233.66, "end": 2234.1, "word": " بستخدم", "probability": 0.857666015625}, {"start": 2234.1, "end": 2234.34, "word": " X", "probability": 0.943359375}, {"start": 2234.34, "end": 2234.56, "word": " و", "probability": 0.98046875}, {"start": 2234.56, "end": 2234.8, "word": " Y", "probability": 0.7578125}, {"start": 2234.8, "end": 2235.58, "word": " و", "probability": 0.5654296875}, {"start": 2235.58, "end": 2235.78, "word": " هذا", "probability": 0.76220703125}, {"start": 2235.78, "end": 2236.08, "word": " أصلا", "probability": 0.8811848958333334}, {"start": 2236.08, "end": 2236.56, "word": " مشاكل", "probability": 0.9781901041666666}, {"start": 2236.56, "end": 2236.7, "word": " ال", "probability": 0.83984375}, {"start": 2236.7, "end": 2236.98, "word": " visitor", "probability": 0.537109375}, {"start": 2236.98, "end": 2237.22, "word": " إنه", "probability": 0.5465087890625}, {"start": 2237.22, "end": 2237.34, "word": " هاي", "probability": 0.762939453125}, {"start": 2237.34, "end": 2237.42, "word": " ال", "probability": 0.845703125}, {"start": 2237.42, "end": 2237.72, "word": " coupling", "probability": 0.98974609375}, {"start": 2237.72, "end": 2238.12, "word": " هذا", "probability": 0.8076171875}, {"start": 2238.12, "end": 2239.24, "word": " تمام", "probability": 0.86669921875}, {"start": 2239.24, "end": 2239.52, "word": " إنه", "probability": 0.8154296875}, {"start": 2239.52, "end": 2240.0, "word": " بعتمد", "probability": 0.8787841796875}, {"start": 2240.0, "end": 2240.16, "word": " على", "probability": 0.95849609375}, {"start": 2240.16, "end": 2240.38, "word": " نوع", "probability": 0.99462890625}, {"start": 2240.38, "end": 2240.5, "word": " ال", "probability": 0.93505859375}, {"start": 2240.5, "end": 2240.8, "word": " concrete", "probability": 0.9453125}, {"start": 2240.8, "end": 2241.26, "word": " objects", "probability": 0.8212890625}], "temperature": 1.0}, {"id": 91, "seek": 227012, "start": 2242.8, "end": 2270.12, "text": "Okay, so the visitor's problem is here in these two cases Okay, this is the visitor, the visitor has, as we said, the visitor has visit methods for each type of shapes And of course, whenever you want to add a new operation, such as visitor to the area account, visitor to the environment account, you will have to add what? Concrete visitors Because this represents the client, which is the main method, which will actually create objects from elements", "tokens": [8297, 11, 370, 264, 28222, 311, 1154, 307, 510, 294, 613, 732, 3331, 1033, 11, 341, 307, 264, 28222, 11, 264, 28222, 575, 11, 382, 321, 848, 11, 264, 28222, 575, 3441, 7150, 337, 1184, 2010, 295, 10854, 400, 295, 1164, 11, 5699, 291, 528, 281, 909, 257, 777, 6916, 11, 1270, 382, 28222, 281, 264, 1859, 2696, 11, 28222, 281, 264, 2823, 2696, 11, 291, 486, 362, 281, 909, 437, 30, 18200, 7600, 14315, 1436, 341, 8855, 264, 6423, 11, 597, 307, 264, 2135, 3170, 11, 597, 486, 767, 1884, 6565, 490, 4959], "avg_logprob": -0.5250000037645038, "compression_ratio": 1.8047808764940239, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2242.8, "end": 2243.08, "word": "Okay,", "probability": 0.06512451171875}, {"start": 2243.26, "end": 2243.42, "word": " so", "probability": 0.392822265625}, {"start": 2243.42, "end": 2243.66, "word": " the", "probability": 0.3779296875}, {"start": 2243.66, "end": 2244.28, "word": " visitor's", "probability": 0.34759521484375}, {"start": 2244.28, "end": 2244.28, "word": " problem", "probability": 0.365234375}, {"start": 2244.28, "end": 2244.52, "word": " is", "probability": 0.54296875}, {"start": 2244.52, "end": 2244.62, "word": " here", "probability": 0.295654296875}, {"start": 2244.62, "end": 2244.7, "word": " in", "probability": 0.4921875}, {"start": 2244.7, "end": 2244.96, "word": " these", "probability": 0.5712890625}, {"start": 2244.96, "end": 2245.8, "word": " two", "probability": 0.8701171875}, {"start": 2245.8, "end": 2246.22, "word": " cases", "probability": 0.17333984375}, {"start": 2246.22, "end": 2246.72, "word": " Okay,", "probability": 0.343505859375}, {"start": 2247.16, "end": 2248.32, "word": " this", "probability": 0.412353515625}, {"start": 2248.32, "end": 2248.36, "word": " is", "probability": 0.9072265625}, {"start": 2248.36, "end": 2248.48, "word": " the", "probability": 0.78857421875}, {"start": 2248.48, "end": 2248.82, "word": " visitor,", "probability": 0.92529296875}, {"start": 2248.94, "end": 2249.08, "word": " the", "probability": 0.2978515625}, {"start": 2249.08, "end": 2249.34, "word": " visitor", "probability": 0.55615234375}, {"start": 2249.34, "end": 2249.56, "word": " has,", "probability": 0.7861328125}, {"start": 2249.62, "end": 2249.74, "word": " as", "probability": 0.8525390625}, {"start": 2249.74, "end": 2249.9, "word": " we", "probability": 0.74951171875}, {"start": 2249.9, "end": 2250.06, "word": " said,", "probability": 0.7685546875}, {"start": 2250.44, "end": 2250.46, "word": " the", "probability": 0.146240234375}, {"start": 2250.46, "end": 2250.74, "word": " visitor", "probability": 0.88818359375}, {"start": 2250.74, "end": 2251.08, "word": " has", "probability": 0.935546875}, {"start": 2251.08, "end": 2251.56, "word": " visit", "probability": 0.6708984375}, {"start": 2251.56, "end": 2251.88, "word": " methods", "probability": 0.88330078125}, {"start": 2251.88, "end": 2252.08, "word": " for", "probability": 0.861328125}, {"start": 2252.08, "end": 2252.28, "word": " each", "probability": 0.6865234375}, {"start": 2252.28, "end": 2252.46, "word": " type", "probability": 0.481201171875}, {"start": 2252.46, "end": 2252.52, "word": " of", "probability": 0.89697265625}, {"start": 2252.52, "end": 2253.0, "word": " shapes", "probability": 0.51708984375}, {"start": 2253.0, "end": 2253.74, "word": " And", "probability": 0.479248046875}, {"start": 2253.74, "end": 2253.98, "word": " of", "probability": 0.69384765625}, {"start": 2253.98, "end": 2253.98, "word": " course,", "probability": 0.95751953125}, {"start": 2254.14, "end": 2254.26, "word": " whenever", "probability": 0.306396484375}, {"start": 2254.26, "end": 2254.44, "word": " you", "probability": 0.88671875}, {"start": 2254.44, "end": 2254.54, "word": " want", "probability": 0.471923828125}, {"start": 2254.54, "end": 2254.54, "word": " to", "probability": 0.96923828125}, {"start": 2254.54, "end": 2254.68, "word": " add", "probability": 0.90966796875}, {"start": 2254.68, "end": 2254.76, "word": " a", "probability": 0.88427734375}, {"start": 2254.76, "end": 2254.76, "word": " new", "probability": 0.919921875}, {"start": 2254.76, "end": 2255.54, "word": " operation,", "probability": 0.939453125}, {"start": 2255.9, "end": 2256.38, "word": " such", "probability": 0.412353515625}, {"start": 2256.38, "end": 2256.4, "word": " as", "probability": 0.97412109375}, {"start": 2256.4, "end": 2256.72, "word": " visitor", "probability": 0.6572265625}, {"start": 2256.72, "end": 2256.88, "word": " to", "probability": 0.4951171875}, {"start": 2256.88, "end": 2257.26, "word": " the", "probability": 0.564453125}, {"start": 2257.26, "end": 2257.86, "word": " area", "probability": 0.264892578125}, {"start": 2257.86, "end": 2258.04, "word": " account,", "probability": 0.278564453125}, {"start": 2258.14, "end": 2258.32, "word": " visitor", "probability": 0.7119140625}, {"start": 2258.32, "end": 2258.52, "word": " to", "probability": 0.9619140625}, {"start": 2258.52, "end": 2258.86, "word": " the", "probability": 0.92041015625}, {"start": 2258.86, "end": 2259.14, "word": " environment", "probability": 0.188720703125}, {"start": 2259.14, "end": 2259.16, "word": " account,", "probability": 0.8623046875}, {"start": 2259.28, "end": 2259.38, "word": " you", "probability": 0.8837890625}, {"start": 2259.38, "end": 2259.48, "word": " will", "probability": 0.328125}, {"start": 2259.48, "end": 2259.76, "word": " have", "probability": 0.78662109375}, {"start": 2259.76, "end": 2259.86, "word": " to", "probability": 0.97021484375}, {"start": 2259.86, "end": 2260.14, "word": " add", "probability": 0.90380859375}, {"start": 2260.14, "end": 2260.48, "word": " what?", "probability": 0.491455078125}, {"start": 2261.08, "end": 2261.6, "word": " Concrete", "probability": 0.87158203125}, {"start": 2261.6, "end": 2262.54, "word": " visitors", "probability": 0.87255859375}, {"start": 2262.54, "end": 2263.66, "word": " Because", "probability": 0.229248046875}, {"start": 2263.66, "end": 2263.86, "word": " this", "probability": 0.8701171875}, {"start": 2263.86, "end": 2264.16, "word": " represents", "probability": 0.7587890625}, {"start": 2264.16, "end": 2265.04, "word": " the", "probability": 0.86083984375}, {"start": 2265.04, "end": 2265.46, "word": " client,", "probability": 0.8896484375}, {"start": 2266.0, "end": 2266.1, "word": " which", "probability": 0.91796875}, {"start": 2266.1, "end": 2266.34, "word": " is", "probability": 0.935546875}, {"start": 2266.34, "end": 2266.68, "word": " the", "probability": 0.91796875}, {"start": 2266.68, "end": 2266.96, "word": " main", "probability": 0.90283203125}, {"start": 2266.96, "end": 2267.62, "word": " method,", "probability": 0.94287109375}, {"start": 2267.94, "end": 2268.06, "word": " which", "probability": 0.90576171875}, {"start": 2268.06, "end": 2268.56, "word": " will", "probability": 0.77880859375}, {"start": 2268.56, "end": 2268.56, "word": " actually", "probability": 0.84130859375}, {"start": 2268.56, "end": 2268.86, "word": " create", "probability": 0.80224609375}, {"start": 2268.86, "end": 2269.4, "word": " objects", "probability": 0.94970703125}, {"start": 2269.4, "end": 2269.6, "word": " from", "probability": 0.85009765625}, {"start": 2269.6, "end": 2270.12, "word": " elements", "probability": 0.53369140625}], "temperature": 1.0}, {"id": 92, "seek": 229926, "start": 2271.56, "end": 2299.26, "text": "And it will create an object from whom? From visitor Okay? Okay, this explains the drawing components that we have explained Okay, this just shows me the code of the shape that we saw a while ago Now, of course, the code is with me What is this interface?", "tokens": [5289, 309, 486, 1884, 364, 2657, 490, 7101, 30, 3358, 28222, 1033, 30, 1033, 11, 341, 13948, 264, 6316, 6677, 300, 321, 362, 8825, 1033, 11, 341, 445, 3110, 385, 264, 3089, 295, 264, 3909, 300, 321, 1866, 257, 1339, 2057, 823, 11, 295, 1164, 11, 264, 3089, 307, 365, 385, 708, 307, 341, 9226, 30], "avg_logprob": -0.5745613784120794, "compression_ratio": 1.526946107784431, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2271.56, "end": 2271.76, "word": "And", "probability": 0.2744140625}, {"start": 2271.76, "end": 2271.88, "word": " it", "probability": 0.2496337890625}, {"start": 2271.88, "end": 2271.92, "word": " will", "probability": 0.66455078125}, {"start": 2271.92, "end": 2272.12, "word": " create", "probability": 0.7578125}, {"start": 2272.12, "end": 2272.34, "word": " an", "probability": 0.7080078125}, {"start": 2272.34, "end": 2272.52, "word": " object", "probability": 0.9580078125}, {"start": 2272.52, "end": 2272.72, "word": " from", "probability": 0.77001953125}, {"start": 2272.72, "end": 2272.92, "word": " whom?", "probability": 0.18505859375}, {"start": 2273.68, "end": 2274.12, "word": " From", "probability": 0.68505859375}, {"start": 2274.12, "end": 2275.24, "word": " visitor", "probability": 0.70361328125}, {"start": 2275.24, "end": 2276.94, "word": " Okay?", "probability": 0.1162109375}, {"start": 2283.22, "end": 2283.66, "word": " Okay,", "probability": 0.40234375}, {"start": 2283.78, "end": 2284.0, "word": " this", "probability": 0.68408203125}, {"start": 2284.0, "end": 2285.42, "word": " explains", "probability": 0.42529296875}, {"start": 2285.42, "end": 2285.82, "word": " the", "probability": 0.79248046875}, {"start": 2285.82, "end": 2287.0, "word": " drawing", "probability": 0.35302734375}, {"start": 2287.0, "end": 2287.08, "word": " components", "probability": 0.50244140625}, {"start": 2287.08, "end": 2287.72, "word": " that", "probability": 0.449951171875}, {"start": 2287.72, "end": 2287.84, "word": " we", "probability": 0.9033203125}, {"start": 2287.84, "end": 2287.9, "word": " have", "probability": 0.32666015625}, {"start": 2287.9, "end": 2288.14, "word": " explained", "probability": 0.492919921875}, {"start": 2288.14, "end": 2291.2, "word": " Okay,", "probability": 0.59228515625}, {"start": 2291.26, "end": 2291.44, "word": " this", "probability": 0.85302734375}, {"start": 2291.44, "end": 2291.56, "word": " just", "probability": 0.17431640625}, {"start": 2291.56, "end": 2291.7, "word": " shows", "probability": 0.51611328125}, {"start": 2291.7, "end": 2291.84, "word": " me", "probability": 0.58203125}, {"start": 2291.84, "end": 2292.16, "word": " the", "probability": 0.8779296875}, {"start": 2292.16, "end": 2292.52, "word": " code", "probability": 0.79541015625}, {"start": 2292.52, "end": 2293.0, "word": " of", "probability": 0.61328125}, {"start": 2293.0, "end": 2293.44, "word": " the", "probability": 0.646484375}, {"start": 2293.44, "end": 2293.7, "word": " shape", "probability": 0.56298828125}, {"start": 2293.7, "end": 2294.06, "word": " that", "probability": 0.6796875}, {"start": 2294.06, "end": 2294.18, "word": " we", "probability": 0.91845703125}, {"start": 2294.18, "end": 2294.4, "word": " saw", "probability": 0.476806640625}, {"start": 2294.4, "end": 2294.58, "word": " a", "probability": 0.354736328125}, {"start": 2294.58, "end": 2294.92, "word": " while", "probability": 0.5908203125}, {"start": 2294.92, "end": 2294.96, "word": " ago", "probability": 0.88427734375}, {"start": 2294.96, "end": 2296.16, "word": " Now,", "probability": 0.76416015625}, {"start": 2296.52, "end": 2296.68, "word": " of", "probability": 0.45458984375}, {"start": 2296.68, "end": 2296.72, "word": " course,", "probability": 0.95703125}, {"start": 2296.78, "end": 2296.88, "word": " the", "probability": 0.60791015625}, {"start": 2296.88, "end": 2297.2, "word": " code", "probability": 0.91455078125}, {"start": 2297.2, "end": 2297.4, "word": " is", "probability": 0.266357421875}, {"start": 2297.4, "end": 2297.6, "word": " with", "probability": 0.38671875}, {"start": 2297.6, "end": 2297.86, "word": " me", "probability": 0.92529296875}, {"start": 2297.86, "end": 2298.48, "word": " What", "probability": 0.32373046875}, {"start": 2298.48, "end": 2298.68, "word": " is", "probability": 0.83544921875}, {"start": 2298.68, "end": 2298.68, "word": " this", "probability": 0.896484375}, {"start": 2298.68, "end": 2299.26, "word": " interface?", "probability": 0.7587890625}], "temperature": 1.0}, {"id": 93, "seek": 232635, "start": 2301.23, "end": 2326.35, "text": "or before this one, forget about this one, here this is from the element, this is like the shape, which has an accept in it, of course you don't always put an accept, you put the methods that you know and leave the door open for additions through what? the accept, of course it doesn't show the second method because it only shows you the visitor pattern, you put the accept and it takes an interface of the type visitor and this is the interface of the visitor", "tokens": [284, 949, 341, 472, 11, 2870, 466, 341, 472, 11, 510, 341, 307, 490, 264, 4478, 11, 341, 307, 411, 264, 3909, 11, 597, 575, 364, 3241, 294, 309, 11, 295, 1164, 291, 500, 380, 1009, 829, 364, 3241, 11, 291, 829, 264, 7150, 300, 291, 458, 293, 1856, 264, 2853, 1269, 337, 35113, 807, 437, 30, 264, 3241, 11, 295, 1164, 309, 1177, 380, 855, 264, 1150, 3170, 570, 309, 787, 3110, 291, 264, 28222, 5102, 11, 291, 829, 264, 3241, 293, 309, 2516, 364, 9226, 295, 264, 2010, 28222, 293, 341, 307, 264, 9226, 295, 264, 28222], "avg_logprob": -0.5137499821186066, "compression_ratio": 1.9369747899159664, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 2301.23, "end": 2301.63, "word": "or", "probability": 0.382080078125}, {"start": 2301.63, "end": 2301.91, "word": " before", "probability": 0.263916015625}, {"start": 2301.91, "end": 2302.17, "word": " this", "probability": 0.46044921875}, {"start": 2302.17, "end": 2302.43, "word": " one,", "probability": 0.272216796875}, {"start": 2302.43, "end": 2302.47, "word": " forget", "probability": 0.6865234375}, {"start": 2302.47, "end": 2302.57, "word": " about", "probability": 0.48095703125}, {"start": 2302.57, "end": 2302.77, "word": " this", "probability": 0.75146484375}, {"start": 2302.77, "end": 2303.03, "word": " one,", "probability": 0.87939453125}, {"start": 2303.19, "end": 2303.39, "word": " here", "probability": 0.1947021484375}, {"start": 2303.39, "end": 2303.53, "word": " this", "probability": 0.413330078125}, {"start": 2303.53, "end": 2303.53, "word": " is", "probability": 0.677734375}, {"start": 2303.53, "end": 2303.81, "word": " from", "probability": 0.49951171875}, {"start": 2303.81, "end": 2304.11, "word": " the", "probability": 0.73974609375}, {"start": 2304.11, "end": 2304.41, "word": " element,", "probability": 0.890625}, {"start": 2305.19, "end": 2305.41, "word": " this", "probability": 0.619140625}, {"start": 2305.41, "end": 2305.49, "word": " is", "probability": 0.80322265625}, {"start": 2305.49, "end": 2305.61, "word": " like", "probability": 0.84521484375}, {"start": 2305.61, "end": 2305.73, "word": " the", "probability": 0.43359375}, {"start": 2305.73, "end": 2305.97, "word": " shape,", "probability": 0.9404296875}, {"start": 2306.17, "end": 2306.29, "word": " which", "probability": 0.389404296875}, {"start": 2306.29, "end": 2306.57, "word": " has", "probability": 0.42333984375}, {"start": 2306.57, "end": 2307.91, "word": " an", "probability": 0.177001953125}, {"start": 2307.91, "end": 2308.21, "word": " accept", "probability": 0.5234375}, {"start": 2308.21, "end": 2308.47, "word": " in", "probability": 0.1787109375}, {"start": 2308.47, "end": 2308.47, "word": " it,", "probability": 0.91796875}, {"start": 2309.09, "end": 2309.27, "word": " of", "probability": 0.5810546875}, {"start": 2309.27, "end": 2309.27, "word": " course", "probability": 0.95166015625}, {"start": 2309.27, "end": 2309.73, "word": " you", "probability": 0.322998046875}, {"start": 2309.73, "end": 2309.83, "word": " don't", "probability": 0.8505859375}, {"start": 2309.83, "end": 2310.13, "word": " always", "probability": 0.280517578125}, {"start": 2310.13, "end": 2310.55, "word": " put", "probability": 0.6806640625}, {"start": 2310.55, "end": 2310.73, "word": " an", "probability": 0.17822265625}, {"start": 2310.73, "end": 2311.13, "word": " accept,", "probability": 0.84912109375}, {"start": 2311.19, "end": 2311.35, "word": " you", "probability": 0.9130859375}, {"start": 2311.35, "end": 2311.67, "word": " put", "probability": 0.78662109375}, {"start": 2311.67, "end": 2311.81, "word": " the", "probability": 0.8408203125}, {"start": 2311.81, "end": 2312.05, "word": " methods", "probability": 0.8115234375}, {"start": 2312.05, "end": 2312.19, "word": " that", "probability": 0.62060546875}, {"start": 2312.19, "end": 2312.35, "word": " you", "probability": 0.96826171875}, {"start": 2312.35, "end": 2312.61, "word": " know", "probability": 0.81591796875}, {"start": 2312.61, "end": 2313.51, "word": " and", "probability": 0.468994140625}, {"start": 2313.51, "end": 2313.91, "word": " leave", "probability": 0.578125}, {"start": 2313.91, "end": 2314.07, "word": " the", "probability": 0.8408203125}, {"start": 2314.07, "end": 2314.23, "word": " door", "probability": 0.8134765625}, {"start": 2314.23, "end": 2314.77, "word": " open", "probability": 0.91650390625}, {"start": 2314.77, "end": 2315.49, "word": " for", "probability": 0.58056640625}, {"start": 2315.49, "end": 2315.91, "word": " additions", "probability": 0.7734375}, {"start": 2315.91, "end": 2316.29, "word": " through", "probability": 0.65234375}, {"start": 2316.29, "end": 2316.67, "word": " what?", "probability": 0.393310546875}, {"start": 2316.91, "end": 2317.31, "word": " the", "probability": 0.32861328125}, {"start": 2317.31, "end": 2317.53, "word": " accept,", "probability": 0.87548828125}, {"start": 2317.63, "end": 2317.79, "word": " of", "probability": 0.88330078125}, {"start": 2317.79, "end": 2317.81, "word": " course", "probability": 0.96142578125}, {"start": 2317.81, "end": 2317.91, "word": " it", "probability": 0.311767578125}, {"start": 2317.91, "end": 2318.05, "word": " doesn't", "probability": 0.6846923828125}, {"start": 2318.05, "end": 2318.31, "word": " show", "probability": 0.56982421875}, {"start": 2318.31, "end": 2318.41, "word": " the", "probability": 0.6875}, {"start": 2318.41, "end": 2318.81, "word": " second", "probability": 0.61669921875}, {"start": 2318.81, "end": 2318.81, "word": " method", "probability": 0.93994140625}, {"start": 2318.81, "end": 2319.03, "word": " because", "probability": 0.62939453125}, {"start": 2319.03, "end": 2319.17, "word": " it", "probability": 0.7900390625}, {"start": 2319.17, "end": 2319.39, "word": " only", "probability": 0.50634765625}, {"start": 2319.39, "end": 2319.67, "word": " shows", "probability": 0.8642578125}, {"start": 2319.67, "end": 2319.85, "word": " you", "probability": 0.72900390625}, {"start": 2319.85, "end": 2320.79, "word": " the", "probability": 0.88623046875}, {"start": 2320.79, "end": 2321.01, "word": " visitor", "probability": 0.98046875}, {"start": 2321.01, "end": 2321.37, "word": " pattern,", "probability": 0.716796875}, {"start": 2321.77, "end": 2321.85, "word": " you", "probability": 0.498779296875}, {"start": 2321.85, "end": 2322.03, "word": " put", "probability": 0.85205078125}, {"start": 2322.03, "end": 2322.17, "word": " the", "probability": 0.7705078125}, {"start": 2322.17, "end": 2322.41, "word": " accept", "probability": 0.91357421875}, {"start": 2322.41, "end": 2322.59, "word": " and", "probability": 0.48095703125}, {"start": 2322.59, "end": 2322.63, "word": " it", "probability": 0.1771240234375}, {"start": 2322.63, "end": 2322.85, "word": " takes", "probability": 0.57666015625}, {"start": 2322.85, "end": 2322.97, "word": " an", "probability": 0.5078125}, {"start": 2322.97, "end": 2323.31, "word": " interface", "probability": 0.86474609375}, {"start": 2323.31, "end": 2323.45, "word": " of", "probability": 0.7119140625}, {"start": 2323.45, "end": 2323.57, "word": " the", "probability": 0.6826171875}, {"start": 2323.57, "end": 2323.71, "word": " type", "probability": 0.308349609375}, {"start": 2323.71, "end": 2324.85, "word": " visitor", "probability": 0.79248046875}, {"start": 2324.85, "end": 2325.21, "word": " and", "probability": 0.67236328125}, {"start": 2325.21, "end": 2325.35, "word": " this", "probability": 0.6494140625}, {"start": 2325.35, "end": 2325.43, "word": " is", "probability": 0.916015625}, {"start": 2325.43, "end": 2325.49, "word": " the", "probability": 0.8505859375}, {"start": 2325.49, "end": 2325.85, "word": " interface", "probability": 0.79150390625}, {"start": 2325.85, "end": 2326.01, "word": " of", "probability": 0.72509765625}, {"start": 2326.01, "end": 2326.13, "word": " the", "probability": 0.67138671875}, {"start": 2326.13, "end": 2326.35, "word": " visitor", "probability": 0.9619140625}], "temperature": 1.0}, {"id": 94, "seek": 235296, "start": 2327.42, "end": 2352.96, "text": "It takes a visit to concrete element A and a visit to concrete element B. For example, this element A implements element and concrete element B implements element and both of them implemented the accept and took the visitor. When the visitor came, he was asked to take over the work. How? Visitor visited concrete element A this.", "tokens": [3522, 2516, 257, 3441, 281, 9859, 4478, 316, 293, 257, 3441, 281, 9859, 4478, 363, 13, 1171, 1365, 11, 341, 4478, 316, 704, 17988, 4478, 293, 9859, 4478, 363, 704, 17988, 4478, 293, 1293, 295, 552, 12270, 264, 3241, 293, 1890, 264, 28222, 13, 1133, 264, 28222, 1361, 11, 415, 390, 2351, 281, 747, 670, 264, 589, 13, 1012, 30, 10410, 3029, 11220, 9859, 4478, 316, 341, 13], "avg_logprob": -0.5765398688938307, "compression_ratio": 2.05625, "no_speech_prob": 0.0, "words": [{"start": 2327.42, "end": 2328.02, "word": "It", "probability": 0.0870361328125}, {"start": 2328.02, "end": 2328.3, "word": " takes", "probability": 0.345703125}, {"start": 2328.3, "end": 2329.04, "word": " a", "probability": 0.583984375}, {"start": 2329.04, "end": 2329.38, "word": " visit", "probability": 0.83056640625}, {"start": 2329.38, "end": 2330.1, "word": " to", "probability": 0.7529296875}, {"start": 2330.1, "end": 2330.6, "word": " concrete", "probability": 0.57421875}, {"start": 2330.6, "end": 2331.06, "word": " element", "probability": 0.93359375}, {"start": 2331.06, "end": 2331.3, "word": " A", "probability": 0.759765625}, {"start": 2331.3, "end": 2331.42, "word": " and", "probability": 0.8369140625}, {"start": 2331.42, "end": 2331.5, "word": " a", "probability": 0.517578125}, {"start": 2331.5, "end": 2331.6, "word": " visit", "probability": 0.92431640625}, {"start": 2331.6, "end": 2331.74, "word": " to", "probability": 0.95947265625}, {"start": 2331.74, "end": 2331.98, "word": " concrete", "probability": 0.83203125}, {"start": 2331.98, "end": 2332.28, "word": " element", "probability": 0.96875}, {"start": 2332.28, "end": 2332.58, "word": " B.", "probability": 0.994140625}, {"start": 2333.38, "end": 2333.42, "word": " For", "probability": 0.0966796875}, {"start": 2333.42, "end": 2334.24, "word": " example,", "probability": 0.50146484375}, {"start": 2335.56, "end": 2335.72, "word": " this", "probability": 0.29150390625}, {"start": 2335.72, "end": 2336.1, "word": " element", "probability": 0.8740234375}, {"start": 2336.1, "end": 2337.1, "word": " A", "probability": 0.244140625}, {"start": 2337.1, "end": 2340.44, "word": " implements", "probability": 0.7607421875}, {"start": 2340.44, "end": 2340.9, "word": " element", "probability": 0.6171875}, {"start": 2340.9, "end": 2341.04, "word": " and", "probability": 0.55859375}, {"start": 2341.04, "end": 2341.54, "word": " concrete", "probability": 0.38232421875}, {"start": 2341.54, "end": 2341.84, "word": " element", "probability": 0.90478515625}, {"start": 2341.84, "end": 2342.06, "word": " B", "probability": 0.99072265625}, {"start": 2342.06, "end": 2342.54, "word": " implements", "probability": 0.9140625}, {"start": 2342.54, "end": 2342.88, "word": " element", "probability": 0.935546875}, {"start": 2342.88, "end": 2343.48, "word": " and", "probability": 0.367431640625}, {"start": 2343.48, "end": 2343.78, "word": " both", "probability": 0.50048828125}, {"start": 2343.78, "end": 2343.88, "word": " of", "probability": 0.2666015625}, {"start": 2343.88, "end": 2343.88, "word": " them", "probability": 0.8984375}, {"start": 2343.88, "end": 2344.36, "word": " implemented", "probability": 0.19287109375}, {"start": 2344.36, "end": 2344.66, "word": " the", "probability": 0.444091796875}, {"start": 2344.66, "end": 2344.98, "word": " accept", "probability": 0.51611328125}, {"start": 2344.98, "end": 2345.28, "word": " and", "probability": 0.5869140625}, {"start": 2345.28, "end": 2345.64, "word": " took", "probability": 0.54296875}, {"start": 2345.64, "end": 2346.28, "word": " the", "probability": 0.79296875}, {"start": 2346.28, "end": 2346.58, "word": " visitor.", "probability": 0.93359375}, {"start": 2347.3, "end": 2347.58, "word": " When", "probability": 0.7900390625}, {"start": 2347.58, "end": 2348.18, "word": " the", "probability": 0.76953125}, {"start": 2348.18, "end": 2348.48, "word": " visitor", "probability": 0.9423828125}, {"start": 2348.48, "end": 2348.48, "word": " came,", "probability": 0.66943359375}, {"start": 2348.58, "end": 2348.84, "word": " he", "probability": 0.65234375}, {"start": 2348.84, "end": 2348.88, "word": " was", "probability": 0.284912109375}, {"start": 2348.88, "end": 2349.1, "word": " asked", "probability": 0.43603515625}, {"start": 2349.1, "end": 2349.34, "word": " to", "probability": 0.91015625}, {"start": 2349.34, "end": 2349.54, "word": " take", "probability": 0.1602783203125}, {"start": 2349.54, "end": 2349.7, "word": " over", "probability": 0.73583984375}, {"start": 2349.7, "end": 2349.72, "word": " the", "probability": 0.469482421875}, {"start": 2349.72, "end": 2349.98, "word": " work.", "probability": 0.408935546875}, {"start": 2350.14, "end": 2350.36, "word": " How?", "probability": 0.54296875}, {"start": 2350.4, "end": 2350.76, "word": " Visitor", "probability": 0.56597900390625}, {"start": 2350.76, "end": 2351.04, "word": " visited", "probability": 0.281494140625}, {"start": 2351.04, "end": 2351.58, "word": " concrete", "probability": 0.86572265625}, {"start": 2351.58, "end": 2352.1, "word": " element", "probability": 0.96728515625}, {"start": 2352.1, "end": 2352.5, "word": " A", "probability": 0.9794921875}, {"start": 2352.5, "end": 2352.96, "word": " this.", "probability": 0.275390625}], "temperature": 1.0}, {"id": 95, "seek": 237989, "start": 2354.33, "end": 2379.89, "text": "and here visitor.visitConcreteElementB and it also gave it this, okay? Let's go back to the previous slide, this visitor, we talked about the interface, this is ConcreteVisitorA, one, for a specific process, for example, like AreaVisitor, implements visitor, and then it implements the visitConcreteElementA", "tokens": [474, 510, 28222, 13, 4938, 270, 9838, 66, 7600, 36, 3054, 33, 293, 309, 611, 2729, 309, 341, 11, 1392, 30, 961, 311, 352, 646, 281, 264, 3894, 4137, 11, 341, 28222, 11, 321, 2825, 466, 264, 9226, 11, 341, 307, 18200, 7600, 53, 271, 3029, 32, 11, 472, 11, 337, 257, 2685, 1399, 11, 337, 1365, 11, 411, 19405, 53, 271, 3029, 11, 704, 17988, 28222, 11, 293, 550, 309, 704, 17988, 264, 3441, 9838, 66, 7600, 36, 3054, 32], "avg_logprob": -0.5160060917458883, "compression_ratio": 1.6594594594594594, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2354.33, "end": 2354.59, "word": "and", "probability": 0.345947265625}, {"start": 2354.59, "end": 2354.85, "word": " here", "probability": 0.7568359375}, {"start": 2354.85, "end": 2356.05, "word": " visitor", "probability": 0.6611328125}, {"start": 2356.05, "end": 2358.45, "word": ".visitConcreteElementB", "probability": 0.7530788845486112}, {"start": 2358.45, "end": 2358.69, "word": " and", "probability": 0.416748046875}, {"start": 2358.69, "end": 2358.77, "word": " it", "probability": 0.19287109375}, {"start": 2358.77, "end": 2358.89, "word": " also", "probability": 0.34765625}, {"start": 2358.89, "end": 2358.89, "word": " gave", "probability": 0.57568359375}, {"start": 2358.89, "end": 2359.33, "word": " it", "probability": 0.357421875}, {"start": 2359.33, "end": 2360.27, "word": " this,", "probability": 0.8193359375}, {"start": 2360.89, "end": 2361.53, "word": " okay?", "probability": 0.2421875}, {"start": 2365.31, "end": 2365.53, "word": " Let's", "probability": 0.5994873046875}, {"start": 2365.53, "end": 2365.55, "word": " go", "probability": 0.7490234375}, {"start": 2365.55, "end": 2365.69, "word": " back", "probability": 0.8505859375}, {"start": 2365.69, "end": 2365.77, "word": " to", "probability": 0.94775390625}, {"start": 2365.77, "end": 2365.85, "word": " the", "probability": 0.8349609375}, {"start": 2365.85, "end": 2366.25, "word": " previous", "probability": 0.70166015625}, {"start": 2366.25, "end": 2366.25, "word": " slide,", "probability": 0.96337890625}, {"start": 2366.37, "end": 2366.67, "word": " this", "probability": 0.259765625}, {"start": 2366.67, "end": 2367.21, "word": " visitor,", "probability": 0.763671875}, {"start": 2367.27, "end": 2367.37, "word": " we", "probability": 0.7578125}, {"start": 2367.37, "end": 2367.53, "word": " talked", "probability": 0.486572265625}, {"start": 2367.53, "end": 2367.71, "word": " about", "probability": 0.9150390625}, {"start": 2367.71, "end": 2367.77, "word": " the", "probability": 0.474609375}, {"start": 2367.77, "end": 2368.31, "word": " interface,", "probability": 0.875}, {"start": 2368.73, "end": 2368.89, "word": " this", "probability": 0.50927734375}, {"start": 2368.89, "end": 2369.01, "word": " is", "probability": 0.34130859375}, {"start": 2369.01, "end": 2370.09, "word": " ConcreteVisitorA,", "probability": 0.8033447265625}, {"start": 2370.69, "end": 2370.93, "word": " one,", "probability": 0.64892578125}, {"start": 2371.57, "end": 2371.99, "word": " for", "probability": 0.39794921875}, {"start": 2371.99, "end": 2372.05, "word": " a", "probability": 0.8466796875}, {"start": 2372.05, "end": 2372.65, "word": " specific", "probability": 0.470458984375}, {"start": 2372.65, "end": 2372.65, "word": " process,", "probability": 0.43115234375}, {"start": 2372.81, "end": 2372.87, "word": " for", "probability": 0.54248046875}, {"start": 2372.87, "end": 2373.01, "word": " example,", "probability": 0.92236328125}, {"start": 2373.09, "end": 2373.29, "word": " like", "probability": 0.5478515625}, {"start": 2373.29, "end": 2374.05, "word": " AreaVisitor,", "probability": 0.77716064453125}, {"start": 2374.29, "end": 2375.05, "word": " implements", "probability": 0.702392578125}, {"start": 2375.05, "end": 2375.47, "word": " visitor,", "probability": 0.8369140625}, {"start": 2376.07, "end": 2376.21, "word": " and", "probability": 0.7021484375}, {"start": 2376.21, "end": 2376.57, "word": " then", "probability": 0.7734375}, {"start": 2376.57, "end": 2377.53, "word": " it", "probability": 0.57373046875}, {"start": 2377.53, "end": 2378.35, "word": " implements", "probability": 0.58770751953125}, {"start": 2378.35, "end": 2378.53, "word": " the", "probability": 0.39111328125}, {"start": 2378.53, "end": 2379.89, "word": " visitConcreteElementA", "probability": 0.9016462053571429}], "temperature": 1.0}, {"id": 96, "seek": 240215, "start": 2380.69, "end": 2402.15, "text": " Of course, the code is empty. Here, for example, we made a circle area and here a rectangle area. And this is visitor, another visitor. Now, in the end, I created an object from shape. I want to add something new to it. I remove an object from this visitor. I go to the shape and say accept and send it to the visitor. So what this gate does is", "tokens": [2720, 1164, 11, 264, 3089, 307, 6707, 13, 1692, 11, 337, 1365, 11, 321, 1027, 257, 6329, 1859, 293, 510, 257, 21930, 1859, 13, 400, 341, 307, 28222, 11, 1071, 28222, 13, 823, 11, 294, 264, 917, 11, 286, 2942, 364, 2657, 490, 3909, 13, 286, 528, 281, 909, 746, 777, 281, 309, 13, 286, 4159, 364, 2657, 490, 341, 28222, 13, 286, 352, 281, 264, 3909, 293, 584, 3241, 293, 2845, 309, 281, 264, 28222, 13, 407, 437, 341, 8539, 775, 307], "avg_logprob": -0.5636160607848849, "compression_ratio": 1.6666666666666667, "no_speech_prob": 7.569789886474609e-06, "words": [{"start": 2380.69, "end": 2380.93, "word": " Of", "probability": 0.06689453125}, {"start": 2380.93, "end": 2381.05, "word": " course,", "probability": 0.91552734375}, {"start": 2381.11, "end": 2381.37, "word": " the", "probability": 0.263916015625}, {"start": 2381.37, "end": 2381.57, "word": " code", "probability": 0.61376953125}, {"start": 2381.57, "end": 2381.67, "word": " is", "probability": 0.453125}, {"start": 2381.67, "end": 2382.69, "word": " empty.", "probability": 0.46484375}, {"start": 2382.77, "end": 2383.03, "word": " Here,", "probability": 0.276123046875}, {"start": 2383.11, "end": 2383.19, "word": " for", "probability": 0.67431640625}, {"start": 2383.19, "end": 2383.29, "word": " example,", "probability": 0.87890625}, {"start": 2383.45, "end": 2383.49, "word": " we", "probability": 0.76318359375}, {"start": 2383.49, "end": 2383.49, "word": " made", "probability": 0.269775390625}, {"start": 2383.49, "end": 2383.61, "word": " a", "probability": 0.7333984375}, {"start": 2383.61, "end": 2384.19, "word": " circle", "probability": 0.7255859375}, {"start": 2384.19, "end": 2384.33, "word": " area", "probability": 0.17041015625}, {"start": 2384.33, "end": 2384.57, "word": " and", "probability": 0.300048828125}, {"start": 2384.57, "end": 2385.09, "word": " here", "probability": 0.429443359375}, {"start": 2385.09, "end": 2385.47, "word": " a", "probability": 0.42333984375}, {"start": 2385.47, "end": 2385.47, "word": " rectangle", "probability": 0.80224609375}, {"start": 2385.47, "end": 2386.67, "word": " area.", "probability": 0.8173828125}, {"start": 2386.87, "end": 2387.03, "word": " And", "probability": 0.55517578125}, {"start": 2387.03, "end": 2387.17, "word": " this", "probability": 0.7734375}, {"start": 2387.17, "end": 2387.23, "word": " is", "probability": 0.8857421875}, {"start": 2387.23, "end": 2387.61, "word": " visitor,", "probability": 0.41552734375}, {"start": 2387.99, "end": 2388.45, "word": " another", "probability": 0.64404296875}, {"start": 2388.45, "end": 2388.85, "word": " visitor.", "probability": 0.90478515625}, {"start": 2389.75, "end": 2390.09, "word": " Now,", "probability": 0.7119140625}, {"start": 2390.37, "end": 2390.47, "word": " in", "probability": 0.337890625}, {"start": 2390.47, "end": 2390.55, "word": " the", "probability": 0.876953125}, {"start": 2390.55, "end": 2390.75, "word": " end,", "probability": 0.900390625}, {"start": 2391.29, "end": 2391.55, "word": " I", "probability": 0.84228515625}, {"start": 2391.55, "end": 2391.81, "word": " created", "probability": 0.326904296875}, {"start": 2391.81, "end": 2392.01, "word": " an", "probability": 0.82861328125}, {"start": 2392.01, "end": 2392.13, "word": " object", "probability": 0.9736328125}, {"start": 2392.13, "end": 2392.39, "word": " from", "probability": 0.73046875}, {"start": 2392.39, "end": 2392.63, "word": " shape.", "probability": 0.78662109375}, {"start": 2392.67, "end": 2392.81, "word": " I", "probability": 0.83544921875}, {"start": 2392.81, "end": 2392.89, "word": " want", "probability": 0.3193359375}, {"start": 2392.89, "end": 2392.97, "word": " to", "probability": 0.97119140625}, {"start": 2392.97, "end": 2393.13, "word": " add", "probability": 0.92529296875}, {"start": 2393.13, "end": 2393.73, "word": " something", "probability": 0.59033203125}, {"start": 2393.73, "end": 2394.11, "word": " new", "probability": 0.6435546875}, {"start": 2394.11, "end": 2394.21, "word": " to", "probability": 0.8017578125}, {"start": 2394.21, "end": 2394.21, "word": " it.", "probability": 0.90869140625}, {"start": 2394.71, "end": 2394.87, "word": " I", "probability": 0.92578125}, {"start": 2394.87, "end": 2395.23, "word": " remove", "probability": 0.21142578125}, {"start": 2395.23, "end": 2395.45, "word": " an", "probability": 0.51611328125}, {"start": 2395.45, "end": 2395.61, "word": " object", "probability": 0.9658203125}, {"start": 2395.61, "end": 2395.85, "word": " from", "probability": 0.873046875}, {"start": 2395.85, "end": 2395.97, "word": " this", "probability": 0.77734375}, {"start": 2395.97, "end": 2396.27, "word": " visitor.", "probability": 0.93017578125}, {"start": 2396.81, "end": 2397.21, "word": " I", "probability": 0.82568359375}, {"start": 2397.21, "end": 2397.37, "word": " go", "probability": 0.87939453125}, {"start": 2397.37, "end": 2397.57, "word": " to", "probability": 0.95556640625}, {"start": 2397.57, "end": 2397.77, "word": " the", "probability": 0.35546875}, {"start": 2397.77, "end": 2398.11, "word": " shape", "probability": 0.91162109375}, {"start": 2398.11, "end": 2398.23, "word": " and", "probability": 0.603515625}, {"start": 2398.23, "end": 2398.39, "word": " say", "probability": 0.40966796875}, {"start": 2398.39, "end": 2398.85, "word": " accept", "probability": 0.55126953125}, {"start": 2398.85, "end": 2399.07, "word": " and", "probability": 0.529296875}, {"start": 2399.07, "end": 2399.35, "word": " send", "probability": 0.401123046875}, {"start": 2399.35, "end": 2399.53, "word": " it", "probability": 0.4140625}, {"start": 2399.53, "end": 2400.09, "word": " to", "probability": 0.5791015625}, {"start": 2400.09, "end": 2400.15, "word": " the", "probability": 0.79931640625}, {"start": 2400.15, "end": 2400.35, "word": " visitor.", "probability": 0.92822265625}, {"start": 2400.49, "end": 2400.59, "word": " So", "probability": 0.666015625}, {"start": 2400.59, "end": 2400.71, "word": " what", "probability": 0.274658203125}, {"start": 2400.71, "end": 2401.21, "word": " this", "probability": 0.366455078125}, {"start": 2401.21, "end": 2401.57, "word": " gate", "probability": 0.84765625}, {"start": 2401.57, "end": 2401.57, "word": " does", "probability": 0.65673828125}, {"start": 2401.57, "end": 2402.15, "word": " is", "probability": 0.5908203125}], "temperature": 1.0}, {"id": 97, "seek": 242378, "start": 2402.22, "end": 2423.78, "text": "It's the visitor. It's as if I assigned the new job to an external visitor to do it. And I left the door open for the visitor to pass through to the object through this method accept. And accept is present in the interface. Why? So that I can achieve the concept of polymorphism. That I can look at shapes regardless of what kind of shape they are, and accept them.", "tokens": [3522, 311, 264, 28222, 13, 467, 311, 382, 498, 286, 13279, 264, 777, 1691, 281, 364, 8320, 28222, 281, 360, 309, 13, 400, 286, 1411, 264, 2853, 1269, 337, 264, 28222, 281, 1320, 807, 281, 264, 2657, 807, 341, 3170, 3241, 13, 400, 3241, 307, 1974, 294, 264, 9226, 13, 1545, 30, 407, 300, 286, 393, 4584, 264, 3410, 295, 6754, 76, 18191, 1434, 13, 663, 286, 393, 574, 412, 10854, 10060, 295, 437, 733, 295, 3909, 436, 366, 11, 293, 3241, 552, 13], "avg_logprob": -0.5022059104021858, "compression_ratio": 1.6743119266055047, "no_speech_prob": 5.066394805908203e-06, "words": [{"start": 2402.22, "end": 2402.44, "word": "It's", "probability": 0.4791259765625}, {"start": 2402.44, "end": 2402.56, "word": " the", "probability": 0.1282958984375}, {"start": 2402.56, "end": 2402.8, "word": " visitor.", "probability": 0.95458984375}, {"start": 2402.9, "end": 2403.04, "word": " It's", "probability": 0.6695556640625}, {"start": 2403.04, "end": 2403.16, "word": " as", "probability": 0.33203125}, {"start": 2403.16, "end": 2403.34, "word": " if", "probability": 0.9189453125}, {"start": 2403.34, "end": 2403.66, "word": " I", "probability": 0.86767578125}, {"start": 2403.66, "end": 2403.94, "word": " assigned", "probability": 0.11273193359375}, {"start": 2403.94, "end": 2404.02, "word": " the", "probability": 0.335205078125}, {"start": 2404.02, "end": 2404.04, "word": " new", "probability": 0.5576171875}, {"start": 2404.04, "end": 2404.88, "word": " job", "probability": 0.87548828125}, {"start": 2404.88, "end": 2406.04, "word": " to", "probability": 0.92333984375}, {"start": 2406.04, "end": 2406.56, "word": " an", "probability": 0.7255859375}, {"start": 2406.56, "end": 2406.82, "word": " external", "probability": 0.4716796875}, {"start": 2406.82, "end": 2407.04, "word": " visitor", "probability": 0.947265625}, {"start": 2407.04, "end": 2407.68, "word": " to", "probability": 0.53466796875}, {"start": 2407.68, "end": 2407.9, "word": " do", "probability": 0.62939453125}, {"start": 2407.9, "end": 2408.16, "word": " it.", "probability": 0.88427734375}, {"start": 2408.46, "end": 2408.82, "word": " And", "probability": 0.52490234375}, {"start": 2408.82, "end": 2408.86, "word": " I", "probability": 0.8671875}, {"start": 2408.86, "end": 2409.08, "word": " left", "probability": 0.85400390625}, {"start": 2409.08, "end": 2409.26, "word": " the", "probability": 0.8876953125}, {"start": 2409.26, "end": 2409.46, "word": " door", "probability": 0.9052734375}, {"start": 2409.46, "end": 2409.94, "word": " open", "probability": 0.90283203125}, {"start": 2409.94, "end": 2410.16, "word": " for", "probability": 0.51611328125}, {"start": 2410.16, "end": 2410.4, "word": " the", "probability": 0.88037109375}, {"start": 2410.4, "end": 2410.86, "word": " visitor", "probability": 0.970703125}, {"start": 2410.86, "end": 2411.08, "word": " to", "probability": 0.9482421875}, {"start": 2411.08, "end": 2411.3, "word": " pass", "probability": 0.54736328125}, {"start": 2411.3, "end": 2412.96, "word": " through", "probability": 0.240966796875}, {"start": 2412.96, "end": 2413.18, "word": " to", "probability": 0.46826171875}, {"start": 2413.18, "end": 2413.24, "word": " the", "probability": 0.80126953125}, {"start": 2413.24, "end": 2413.52, "word": " object", "probability": 0.966796875}, {"start": 2413.52, "end": 2413.84, "word": " through", "probability": 0.61328125}, {"start": 2413.84, "end": 2414.2, "word": " this", "probability": 0.5146484375}, {"start": 2414.2, "end": 2414.52, "word": " method", "probability": 0.6533203125}, {"start": 2414.52, "end": 2415.44, "word": " accept.", "probability": 0.2408447265625}, {"start": 2416.12, "end": 2416.42, "word": " And", "probability": 0.6689453125}, {"start": 2416.42, "end": 2416.84, "word": " accept", "probability": 0.6240234375}, {"start": 2416.84, "end": 2417.0, "word": " is", "probability": 0.66943359375}, {"start": 2417.0, "end": 2417.2, "word": " present", "probability": 0.49560546875}, {"start": 2417.2, "end": 2417.38, "word": " in", "probability": 0.90185546875}, {"start": 2417.38, "end": 2417.48, "word": " the", "probability": 0.890625}, {"start": 2417.48, "end": 2418.12, "word": " interface.", "probability": 0.85400390625}, {"start": 2418.68, "end": 2418.94, "word": " Why?", "probability": 0.78857421875}, {"start": 2419.0, "end": 2419.22, "word": " So", "probability": 0.2381591796875}, {"start": 2419.22, "end": 2419.32, "word": " that", "probability": 0.65673828125}, {"start": 2419.32, "end": 2419.38, "word": " I", "probability": 0.79443359375}, {"start": 2419.38, "end": 2419.4, "word": " can", "probability": 0.646484375}, {"start": 2419.4, "end": 2419.64, "word": " achieve", "probability": 0.37060546875}, {"start": 2419.64, "end": 2419.82, "word": " the", "probability": 0.861328125}, {"start": 2419.82, "end": 2420.08, "word": " concept", "probability": 0.75439453125}, {"start": 2420.08, "end": 2420.2, "word": " of", "probability": 0.97216796875}, {"start": 2420.2, "end": 2420.94, "word": " polymorphism.", "probability": 0.909423828125}, {"start": 2421.24, "end": 2421.32, "word": " That", "probability": 0.304443359375}, {"start": 2421.32, "end": 2421.42, "word": " I", "probability": 0.46728515625}, {"start": 2421.42, "end": 2421.44, "word": " can", "probability": 0.591796875}, {"start": 2421.44, "end": 2421.56, "word": " look", "probability": 0.53515625}, {"start": 2421.56, "end": 2421.68, "word": " at", "probability": 0.939453125}, {"start": 2421.68, "end": 2422.02, "word": " shapes", "probability": 0.6083984375}, {"start": 2422.02, "end": 2422.28, "word": " regardless", "probability": 0.54833984375}, {"start": 2422.28, "end": 2422.46, "word": " of", "probability": 0.92529296875}, {"start": 2422.46, "end": 2422.78, "word": " what", "probability": 0.4609375}, {"start": 2422.78, "end": 2422.92, "word": " kind", "probability": 0.386474609375}, {"start": 2422.92, "end": 2422.96, "word": " of", "probability": 0.43115234375}, {"start": 2422.96, "end": 2422.96, "word": " shape", "probability": 0.65283203125}, {"start": 2422.96, "end": 2423.02, "word": " they", "probability": 0.654296875}, {"start": 2423.02, "end": 2423.42, "word": " are,", "probability": 0.822265625}, {"start": 2423.42, "end": 2423.78, "word": " and", "probability": 0.6865234375}, {"start": 2423.78, "end": 2423.78, "word": " accept", "probability": 0.229736328125}, {"start": 2423.78, "end": 2423.78, "word": " them.", "probability": 0.4462890625}], "temperature": 1.0}, {"id": 98, "seek": 244423, "start": 2428.46, "end": 2444.24, "text": "The visitor pattern is a great way to provide a flexible design for adding new visitors to extend existing functionality without changing existing code The visitor pattern comes with a drawback", "tokens": [2278, 28222, 5102, 307, 257, 869, 636, 281, 2893, 257, 11358, 1715, 337, 5127, 777, 14315, 281, 10101, 6741, 14980, 1553, 4473, 6741, 3089, 440, 28222, 5102, 1487, 365, 257, 2642, 3207], "avg_logprob": -0.15660511363636365, "compression_ratio": 1.496124031007752, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2428.46, "end": 2428.72, "word": "The", "probability": 0.73876953125}, {"start": 2428.72, "end": 2429.04, "word": " visitor", "probability": 0.9619140625}, {"start": 2429.04, "end": 2429.44, "word": " pattern", "probability": 0.8642578125}, {"start": 2429.44, "end": 2429.68, "word": " is", "probability": 0.94091796875}, {"start": 2429.68, "end": 2429.8, "word": " a", "probability": 0.986328125}, {"start": 2429.8, "end": 2430.14, "word": " great", "probability": 0.90283203125}, {"start": 2430.14, "end": 2430.48, "word": " way", "probability": 0.95263671875}, {"start": 2430.48, "end": 2431.24, "word": " to", "probability": 0.96728515625}, {"start": 2431.24, "end": 2431.66, "word": " provide", "probability": 0.94091796875}, {"start": 2431.66, "end": 2431.88, "word": " a", "probability": 0.98828125}, {"start": 2431.88, "end": 2432.28, "word": " flexible", "probability": 0.83349609375}, {"start": 2432.28, "end": 2432.74, "word": " design", "probability": 0.97705078125}, {"start": 2432.74, "end": 2433.0, "word": " for", "probability": 0.9365234375}, {"start": 2433.0, "end": 2433.3, "word": " adding", "probability": 0.91064453125}, {"start": 2433.3, "end": 2433.68, "word": " new", "probability": 0.90380859375}, {"start": 2433.68, "end": 2434.08, "word": " visitors", "probability": 0.90771484375}, {"start": 2434.08, "end": 2434.36, "word": " to", "probability": 0.95458984375}, {"start": 2434.36, "end": 2434.76, "word": " extend", "probability": 0.896484375}, {"start": 2434.76, "end": 2436.86, "word": " existing", "probability": 0.91064453125}, {"start": 2436.86, "end": 2437.5, "word": " functionality", "probability": 0.85009765625}, {"start": 2437.5, "end": 2438.44, "word": " without", "probability": 0.88818359375}, {"start": 2438.44, "end": 2438.88, "word": " changing", "probability": 0.90234375}, {"start": 2438.88, "end": 2439.36, "word": " existing", "probability": 0.927734375}, {"start": 2439.36, "end": 2439.66, "word": " code", "probability": 0.94140625}, {"start": 2439.66, "end": 2441.78, "word": " The", "probability": 0.1220703125}, {"start": 2441.78, "end": 2442.54, "word": " visitor", "probability": 0.9599609375}, {"start": 2442.54, "end": 2442.98, "word": " pattern", "probability": 0.84130859375}, {"start": 2442.98, "end": 2443.4, "word": " comes", "probability": 0.8583984375}, {"start": 2443.4, "end": 2443.6, "word": " with", "probability": 0.904296875}, {"start": 2443.6, "end": 2443.74, "word": " a", "probability": 0.9755859375}, {"start": 2443.74, "end": 2444.24, "word": " drawback", "probability": 0.94091796875}], "temperature": 1.0}, {"id": 99, "seek": 246171, "start": 2448.62, "end": 2461.72, "text": "If a new visitable object is added, if a new visitable object is added, there is a difference between visitor and visitable, visitable is who I am visiting, it is like the same example you said, I would like to add a new element", "tokens": [8031, 257, 777, 3441, 712, 2657, 307, 3869, 11, 498, 257, 777, 3441, 712, 2657, 307, 3869, 11, 456, 307, 257, 2649, 1296, 28222, 293, 3441, 712, 11, 3441, 712, 307, 567, 286, 669, 11700, 11, 309, 307, 411, 264, 912, 1365, 291, 848, 11, 286, 576, 411, 281, 909, 257, 777, 4478], "avg_logprob": -0.4600694444444444, "compression_ratio": 1.7538461538461538, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 2448.62, "end": 2449.06, "word": "If", "probability": 0.14990234375}, {"start": 2449.06, "end": 2449.5, "word": " a", "probability": 0.87451171875}, {"start": 2449.5, "end": 2449.72, "word": " new", "probability": 0.90673828125}, {"start": 2449.72, "end": 2450.28, "word": " visitable", "probability": 0.807373046875}, {"start": 2450.28, "end": 2450.66, "word": " object", "probability": 0.94482421875}, {"start": 2450.66, "end": 2450.88, "word": " is", "probability": 0.9267578125}, {"start": 2450.88, "end": 2451.22, "word": " added,", "probability": 0.91162109375}, {"start": 2451.5, "end": 2451.6, "word": " if", "probability": 0.1668701171875}, {"start": 2451.6, "end": 2451.74, "word": " a", "probability": 0.70068359375}, {"start": 2451.74, "end": 2451.88, "word": " new", "probability": 0.88232421875}, {"start": 2451.88, "end": 2452.44, "word": " visitable", "probability": 0.859619140625}, {"start": 2452.44, "end": 2452.7, "word": " object", "probability": 0.85595703125}, {"start": 2452.7, "end": 2452.9, "word": " is", "probability": 0.53466796875}, {"start": 2452.9, "end": 2452.9, "word": " added,", "probability": 0.88818359375}, {"start": 2452.9, "end": 2453.02, "word": " there", "probability": 0.383056640625}, {"start": 2453.02, "end": 2453.2, "word": " is", "probability": 0.72265625}, {"start": 2453.2, "end": 2453.26, "word": " a", "probability": 0.900390625}, {"start": 2453.26, "end": 2453.42, "word": " difference", "probability": 0.82763671875}, {"start": 2453.42, "end": 2453.58, "word": " between", "probability": 0.8671875}, {"start": 2453.58, "end": 2454.6, "word": " visitor", "probability": 0.89892578125}, {"start": 2454.6, "end": 2454.76, "word": " and", "probability": 0.9384765625}, {"start": 2454.76, "end": 2455.26, "word": " visitable,", "probability": 0.96826171875}, {"start": 2455.6, "end": 2456.12, "word": " visitable", "probability": 0.82861328125}, {"start": 2456.12, "end": 2456.26, "word": " is", "probability": 0.448974609375}, {"start": 2456.26, "end": 2456.46, "word": " who", "probability": 0.315673828125}, {"start": 2456.46, "end": 2457.08, "word": " I", "probability": 0.6279296875}, {"start": 2457.08, "end": 2457.2, "word": " am", "probability": 0.615234375}, {"start": 2457.2, "end": 2457.44, "word": " visiting,", "probability": 0.8642578125}, {"start": 2458.22, "end": 2458.3, "word": " it", "probability": 0.404541015625}, {"start": 2458.3, "end": 2458.66, "word": " is", "probability": 0.63671875}, {"start": 2458.66, "end": 2458.74, "word": " like", "probability": 0.5751953125}, {"start": 2458.74, "end": 2459.0, "word": " the", "probability": 0.5126953125}, {"start": 2459.0, "end": 2459.14, "word": " same", "probability": 0.56640625}, {"start": 2459.14, "end": 2459.48, "word": " example", "probability": 0.94287109375}, {"start": 2459.48, "end": 2459.56, "word": " you", "probability": 0.29345703125}, {"start": 2459.56, "end": 2459.82, "word": " said,", "probability": 0.25537109375}, {"start": 2459.92, "end": 2460.14, "word": " I", "probability": 0.75732421875}, {"start": 2460.14, "end": 2460.18, "word": " would", "probability": 0.350341796875}, {"start": 2460.18, "end": 2460.22, "word": " like", "probability": 0.853515625}, {"start": 2460.22, "end": 2460.3, "word": " to", "probability": 0.96875}, {"start": 2460.3, "end": 2460.58, "word": " add", "probability": 0.89501953125}, {"start": 2460.58, "end": 2461.4, "word": " a", "probability": 0.884765625}, {"start": 2461.4, "end": 2461.4, "word": " new", "probability": 0.89599609375}, {"start": 2461.4, "end": 2461.72, "word": " element", "probability": 0.9521484375}], "temperature": 1.0}, {"id": 100, "seek": 247598, "start": 2464.77, "end": 2475.99, "text": "This means that if a new visitable object is added to the framework structure, all the implemented visitors need to be modified", "tokens": [5723, 1355, 300, 498, 257, 777, 3441, 712, 2657, 307, 3869, 281, 264, 8388, 3877, 11, 439, 264, 12270, 14315, 643, 281, 312, 15873], "avg_logprob": -0.31625000953674315, "compression_ratio": 1.2828282828282829, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 2464.7699999999995, "end": 2465.5699999999997, "word": "This", "probability": 0.1177978515625}, {"start": 2465.5699999999997, "end": 2466.37, "word": " means", "probability": 0.40185546875}, {"start": 2466.37, "end": 2467.29, "word": " that", "probability": 0.80517578125}, {"start": 2467.29, "end": 2467.35, "word": " if", "probability": 0.7412109375}, {"start": 2467.35, "end": 2468.33, "word": " a", "probability": 0.9296875}, {"start": 2468.33, "end": 2468.55, "word": " new", "probability": 0.876953125}, {"start": 2468.55, "end": 2469.05, "word": " visitable", "probability": 0.774658203125}, {"start": 2469.05, "end": 2469.45, "word": " object", "probability": 0.94873046875}, {"start": 2469.45, "end": 2469.85, "word": " is", "probability": 0.93505859375}, {"start": 2469.85, "end": 2470.19, "word": " added", "probability": 0.89453125}, {"start": 2470.19, "end": 2470.41, "word": " to", "probability": 0.9638671875}, {"start": 2470.41, "end": 2470.59, "word": " the", "probability": 0.87939453125}, {"start": 2470.59, "end": 2471.15, "word": " framework", "probability": 0.7822265625}, {"start": 2471.15, "end": 2471.71, "word": " structure,", "probability": 0.75537109375}, {"start": 2471.91, "end": 2472.27, "word": " all", "probability": 0.91357421875}, {"start": 2472.27, "end": 2472.47, "word": " the", "probability": 0.8583984375}, {"start": 2472.47, "end": 2472.99, "word": " implemented", "probability": 0.6767578125}, {"start": 2472.99, "end": 2473.61, "word": " visitors", "probability": 0.912109375}, {"start": 2473.61, "end": 2474.51, "word": " need", "probability": 0.91015625}, {"start": 2474.51, "end": 2474.67, "word": " to", "probability": 0.97314453125}, {"start": 2474.67, "end": 2474.93, "word": " be", "probability": 0.94140625}, {"start": 2474.93, "end": 2475.99, "word": " modified", "probability": 0.90576171875}], "temperature": 1.0}, {"id": 101, "seek": 251369, "start": 2487.58, "end": 2513.7, "text": "The separation of visitors and visitable is only in one sense. This separation between visitors and visitable has a price, which is that visitors depend on visitable. Visitors depend on visitable. And the proof is these two words. Ok, you added a new word, you must add a method. But visitable does not depend on visitable.", "tokens": [2278, 14634, 295, 14315, 293, 3441, 712, 307, 787, 294, 472, 2020, 13, 639, 14634, 1296, 14315, 293, 3441, 712, 575, 257, 3218, 11, 597, 307, 300, 14315, 5672, 322, 3441, 712, 13, 10410, 9862, 5672, 322, 3441, 712, 13, 400, 264, 8177, 307, 613, 732, 2283, 13, 3477, 11, 291, 3869, 257, 777, 1349, 11, 291, 1633, 909, 257, 3170, 13, 583, 3441, 712, 775, 406, 5672, 322, 3441, 712, 13], "avg_logprob": -0.440068489884677, "compression_ratio": 1.9341317365269461, "no_speech_prob": 0.0, "words": [{"start": 2487.58, "end": 2487.82, "word": "The", "probability": 0.60791015625}, {"start": 2487.82, "end": 2488.32, "word": " separation", "probability": 0.9384765625}, {"start": 2488.32, "end": 2488.62, "word": " of", "probability": 0.9248046875}, {"start": 2488.62, "end": 2489.1, "word": " visitors", "probability": 0.82080078125}, {"start": 2489.1, "end": 2489.7, "word": " and", "probability": 0.94921875}, {"start": 2489.7, "end": 2490.26, "word": " visitable", "probability": 0.626953125}, {"start": 2490.26, "end": 2490.98, "word": " is", "probability": 0.92333984375}, {"start": 2490.98, "end": 2491.3, "word": " only", "probability": 0.92431640625}, {"start": 2491.3, "end": 2491.48, "word": " in", "probability": 0.92919921875}, {"start": 2491.48, "end": 2491.7, "word": " one", "probability": 0.93701171875}, {"start": 2491.7, "end": 2492.06, "word": " sense.", "probability": 0.83447265625}, {"start": 2493.14, "end": 2493.14, "word": " This", "probability": 0.4599609375}, {"start": 2493.14, "end": 2493.48, "word": " separation", "probability": 0.65576171875}, {"start": 2493.48, "end": 2493.66, "word": " between", "probability": 0.7060546875}, {"start": 2493.66, "end": 2494.34, "word": " visitors", "probability": 0.76904296875}, {"start": 2494.34, "end": 2494.58, "word": " and", "probability": 0.9453125}, {"start": 2494.58, "end": 2495.2, "word": " visitable", "probability": 0.91552734375}, {"start": 2495.2, "end": 2495.74, "word": " has", "probability": 0.779296875}, {"start": 2495.74, "end": 2495.84, "word": " a", "probability": 0.697265625}, {"start": 2495.84, "end": 2496.08, "word": " price,", "probability": 0.64013671875}, {"start": 2496.52, "end": 2496.9, "word": " which", "probability": 0.6005859375}, {"start": 2496.9, "end": 2497.04, "word": " is", "probability": 0.8369140625}, {"start": 2497.04, "end": 2497.14, "word": " that", "probability": 0.52783203125}, {"start": 2497.14, "end": 2497.6, "word": " visitors", "probability": 0.8193359375}, {"start": 2497.6, "end": 2498.0, "word": " depend", "probability": 0.88720703125}, {"start": 2498.0, "end": 2498.34, "word": " on", "probability": 0.93994140625}, {"start": 2498.34, "end": 2498.8, "word": " visitable.", "probability": 0.810546875}, {"start": 2499.86, "end": 2500.42, "word": " Visitors", "probability": 0.6339111328125}, {"start": 2500.42, "end": 2501.4, "word": " depend", "probability": 0.337646484375}, {"start": 2501.4, "end": 2501.98, "word": " on", "probability": 0.91015625}, {"start": 2501.98, "end": 2502.46, "word": " visitable.", "probability": 0.93505859375}, {"start": 2502.78, "end": 2503.14, "word": " And", "probability": 0.560546875}, {"start": 2503.14, "end": 2503.2, "word": " the", "probability": 0.638671875}, {"start": 2503.2, "end": 2503.46, "word": " proof", "probability": 0.67041015625}, {"start": 2503.46, "end": 2503.76, "word": " is", "probability": 0.75927734375}, {"start": 2503.76, "end": 2503.9, "word": " these", "probability": 0.21484375}, {"start": 2503.9, "end": 2504.08, "word": " two", "probability": 0.260498046875}, {"start": 2504.08, "end": 2504.1, "word": " words.", "probability": 0.2578125}, {"start": 2505.9, "end": 2506.36, "word": " Ok,", "probability": 0.179931640625}, {"start": 2506.44, "end": 2506.82, "word": " you", "probability": 0.2486572265625}, {"start": 2506.82, "end": 2506.82, "word": " added", "probability": 0.6328125}, {"start": 2506.82, "end": 2507.12, "word": " a", "probability": 0.81494140625}, {"start": 2507.12, "end": 2507.58, "word": " new", "probability": 0.88623046875}, {"start": 2507.58, "end": 2507.6, "word": " word,", "probability": 0.87890625}, {"start": 2507.8, "end": 2507.8, "word": " you", "probability": 0.52734375}, {"start": 2507.8, "end": 2508.04, "word": " must", "probability": 0.296875}, {"start": 2508.04, "end": 2509.46, "word": " add", "probability": 0.8525390625}, {"start": 2509.46, "end": 2509.64, "word": " a", "probability": 0.25341796875}, {"start": 2509.64, "end": 2509.86, "word": " method.", "probability": 0.72265625}, {"start": 2510.14, "end": 2510.68, "word": " But", "probability": 0.8203125}, {"start": 2510.68, "end": 2511.48, "word": " visitable", "probability": 0.819580078125}, {"start": 2511.48, "end": 2512.82, "word": " does", "probability": 0.72021484375}, {"start": 2512.82, "end": 2512.84, "word": " not", "probability": 0.93994140625}, {"start": 2512.84, "end": 2513.08, "word": " depend", "probability": 0.92236328125}, {"start": 2513.08, "end": 2513.3, "word": " on", "probability": 0.94775390625}, {"start": 2513.3, "end": 2513.7, "word": " visitable.", "probability": 0.88525390625}], "temperature": 1.0}, {"id": 102, "seek": 254212, "start": 2515.3, "end": 2542.12, "text": "the visitable doesn't depend on the visitor and this is the logic because this is the complexity I have here I don't want to complicate them so I don't want them to depend on the visitor but the visitor has a small hierarchy so the modification on it remains simple okay guys? is there any question about the visitor pattern? may God bless you all", "tokens": [3322, 3441, 712, 1177, 380, 5672, 322, 264, 28222, 293, 341, 307, 264, 9952, 570, 341, 307, 264, 14024, 286, 362, 510, 286, 500, 380, 528, 281, 1209, 8700, 552, 370, 286, 500, 380, 528, 552, 281, 5672, 322, 264, 28222, 457, 264, 28222, 575, 257, 1359, 22333, 370, 264, 26747, 322, 309, 7023, 2199, 1392, 1074, 30, 307, 456, 604, 1168, 466, 264, 28222, 5102, 30, 815, 1265, 5227, 291, 439], "avg_logprob": -0.5590753555297852, "compression_ratio": 1.8167539267015707, "no_speech_prob": 3.9637088775634766e-05, "words": [{"start": 2515.3, "end": 2515.58, "word": "the", "probability": 0.1282958984375}, {"start": 2515.58, "end": 2516.1, "word": " visitable", "probability": 0.927490234375}, {"start": 2516.1, "end": 2516.76, "word": " doesn't", "probability": 0.6956787109375}, {"start": 2516.76, "end": 2517.08, "word": " depend", "probability": 0.75634765625}, {"start": 2517.08, "end": 2517.32, "word": " on", "probability": 0.923828125}, {"start": 2517.32, "end": 2519.42, "word": " the", "probability": 0.298583984375}, {"start": 2519.42, "end": 2520.38, "word": " visitor", "probability": 0.857421875}, {"start": 2520.38, "end": 2521.34, "word": " and", "probability": 0.1494140625}, {"start": 2521.34, "end": 2521.66, "word": " this", "probability": 0.57958984375}, {"start": 2521.66, "end": 2521.78, "word": " is", "probability": 0.471923828125}, {"start": 2521.78, "end": 2522.26, "word": " the", "probability": 0.2095947265625}, {"start": 2522.26, "end": 2522.58, "word": " logic", "probability": 0.88134765625}, {"start": 2522.58, "end": 2522.96, "word": " because", "probability": 0.44287109375}, {"start": 2522.96, "end": 2523.36, "word": " this", "probability": 0.60107421875}, {"start": 2523.36, "end": 2523.4, "word": " is", "probability": 0.8623046875}, {"start": 2523.4, "end": 2523.54, "word": " the", "probability": 0.45751953125}, {"start": 2523.54, "end": 2523.9, "word": " complexity", "probability": 0.43310546875}, {"start": 2523.9, "end": 2524.04, "word": " I", "probability": 0.278564453125}, {"start": 2524.04, "end": 2524.2, "word": " have", "probability": 0.904296875}, {"start": 2524.2, "end": 2524.5, "word": " here", "probability": 0.73193359375}, {"start": 2524.5, "end": 2525.08, "word": " I", "probability": 0.57958984375}, {"start": 2525.08, "end": 2525.1, "word": " don't", "probability": 0.939453125}, {"start": 2525.1, "end": 2525.24, "word": " want", "probability": 0.77099609375}, {"start": 2525.24, "end": 2525.34, "word": " to", "probability": 0.9033203125}, {"start": 2525.34, "end": 2525.56, "word": " complicate", "probability": 0.6392822265625}, {"start": 2525.56, "end": 2525.74, "word": " them", "probability": 0.23388671875}, {"start": 2525.74, "end": 2526.0, "word": " so", "probability": 0.5126953125}, {"start": 2526.0, "end": 2526.1, "word": " I", "probability": 0.8994140625}, {"start": 2526.1, "end": 2526.26, "word": " don't", "probability": 0.6746826171875}, {"start": 2526.26, "end": 2526.26, "word": " want", "probability": 0.392333984375}, {"start": 2526.26, "end": 2526.46, "word": " them", "probability": 0.8466796875}, {"start": 2526.46, "end": 2526.54, "word": " to", "probability": 0.943359375}, {"start": 2526.54, "end": 2526.74, "word": " depend", "probability": 0.72998046875}, {"start": 2526.74, "end": 2527.12, "word": " on", "probability": 0.9462890625}, {"start": 2527.12, "end": 2527.82, "word": " the", "probability": 0.75146484375}, {"start": 2527.82, "end": 2528.1, "word": " visitor", "probability": 0.9208984375}, {"start": 2528.1, "end": 2528.72, "word": " but", "probability": 0.7646484375}, {"start": 2528.72, "end": 2528.92, "word": " the", "probability": 0.79443359375}, {"start": 2528.92, "end": 2529.24, "word": " visitor", "probability": 0.93896484375}, {"start": 2529.24, "end": 2529.9, "word": " has", "probability": 0.168701171875}, {"start": 2529.9, "end": 2530.08, "word": " a", "probability": 0.7216796875}, {"start": 2530.08, "end": 2530.08, "word": " small", "probability": 0.7568359375}, {"start": 2530.08, "end": 2530.42, "word": " hierarchy", "probability": 0.96337890625}, {"start": 2530.42, "end": 2533.6, "word": " so", "probability": 0.317138671875}, {"start": 2533.6, "end": 2533.74, "word": " the", "probability": 0.67236328125}, {"start": 2533.74, "end": 2533.96, "word": " modification", "probability": 0.248046875}, {"start": 2533.96, "end": 2534.12, "word": " on", "probability": 0.32080078125}, {"start": 2534.12, "end": 2534.2, "word": " it", "probability": 0.75732421875}, {"start": 2534.2, "end": 2534.58, "word": " remains", "probability": 0.34326171875}, {"start": 2534.58, "end": 2535.42, "word": " simple", "probability": 0.8876953125}, {"start": 2535.42, "end": 2536.54, "word": " okay", "probability": 0.2349853515625}, {"start": 2536.54, "end": 2536.94, "word": " guys?", "probability": 0.75927734375}, {"start": 2537.88, "end": 2538.44, "word": " is", "probability": 0.306884765625}, {"start": 2538.44, "end": 2538.48, "word": " there", "probability": 0.9150390625}, {"start": 2538.48, "end": 2538.6, "word": " any", "probability": 0.83837890625}, {"start": 2538.6, "end": 2538.88, "word": " question", "probability": 0.751953125}, {"start": 2538.88, "end": 2539.28, "word": " about", "probability": 0.43408203125}, {"start": 2539.28, "end": 2539.46, "word": " the", "probability": 0.67041015625}, {"start": 2539.46, "end": 2539.66, "word": " visitor", "probability": 0.947265625}, {"start": 2539.66, "end": 2540.04, "word": " pattern?", "probability": 0.89794921875}, {"start": 2541.3, "end": 2541.86, "word": " may", "probability": 0.3154296875}, {"start": 2541.86, "end": 2541.86, "word": " God", "probability": 0.42724609375}, {"start": 2541.86, "end": 2542.0, "word": " bless", "probability": 0.362548828125}, {"start": 2542.0, "end": 2542.1, "word": " you", "probability": 0.96435546875}, {"start": 2542.1, "end": 2542.12, "word": " all", "probability": 0.806640625}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2542.72425, "duration_after_vad": 2424.788124999995} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/cXH_MqH_Lss_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/cXH_MqH_Lss_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..0eddbc592cbd095b55e8c5bfc772a35b3aab0d0b --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/cXH_MqH_Lss_raw.srt @@ -0,0 +1,2652 @@ +1 +00:00:05,160 --> 00:00:08,440 +Ok guys, peace be upon you Today, God willing, we + +2 +00:00:08,440 --> 00:00:10,920 +will take a new design pattern called Visitor + +3 +00:00:10,920 --> 00:00:16,040 +Design Pattern What is Visitor? Visitor Ok, + +4 +00:00:16,680 --> 00:00:21,440 +Visitor Design Pattern solves a problem that + +5 +00:00:21,440 --> 00:00:24,300 +programmers faced and it was one of the most + +6 +00:00:24,300 --> 00:00:29,260 +common problems and it was as follows Now we know + +7 +00:00:29,260 --> 00:00:31,800 +in object oriented programming that if I have an + +8 +00:00:31,800 --> 00:00:32,340 +interface + +9 +00:00:36,820 --> 00:00:41,540 +and there are methods for example A and B and then + +10 +00:00:41,540 --> 00:00:45,960 +this interface is made of classes that implement + +11 +00:00:45,960 --> 00:00:49,360 +the interface for example I have class X and class + +12 +00:00:49,360 --> 00:00:53,100 +Y and these are made to implement the interface it + +13 +00:00:53,100 --> 00:00:55,200 +is known that any class that makes an implement + +14 +00:00:55,200 --> 00:01:00,240 +interface is mandatoryYou have to implement for + +15 +00:01:00,240 --> 00:01:03,540 +all methods in this interface You have to + +16 +00:01:03,540 --> 00:01:06,120 +implement for A and B and you have to implement + +17 +00:01:06,120 --> 00:01:12,380 +for A and B Because the existing problem is that + +18 +00:01:12,380 --> 00:01:16,240 +you want to add a new method to the interface For + +19 +00:01:16,240 --> 00:01:20,270 +example, you want to add method C Why do we want + +20 +00:01:20,270 --> 00:01:22,130 +to add it here? In order to support polymorphism, + +21 +00:01:22,430 --> 00:01:25,810 +in the end these x and y are of the interface + +22 +00:01:25,810 --> 00:01:28,610 +type, right or wrong? I can put them in one array + +23 +00:01:28,610 --> 00:01:31,230 +and make a loop on them and implement method A and + +24 +00:01:31,230 --> 00:01:36,950 +B and then add method C Now if I add a new method + +25 +00:01:36,950 --> 00:01:40,930 +to make a new function, multiply by whom? The + +26 +00:01:40,930 --> 00:01:43,510 +subclasses Of course the process can be + +27 +00:01:43,510 --> 00:01:47,370 +complicated, I can have an interface with 20-30 + +28 +00:01:47,370 --> 00:01:51,820 +classesCan there be a program in our life that has + +29 +00:01:51,820 --> 00:01:53,380 +an interface that is separated from it by 20 or 30 + +30 +00:01:53,380 --> 00:01:56,420 +classes? Yes, of course. For example, JavaFX or + +31 +00:01:56,420 --> 00:01:59,620 +Swing. You don't have a user interface component, + +32 +00:01:59,740 --> 00:02:04,760 +button, list, combo box and all these items. All + +33 +00:02:04,760 --> 00:02:07,000 +of them are separated from what? From one + +34 +00:02:07,000 --> 00:02:10,320 +interface. Okay? And in Android and Flutter, all + +35 +00:02:10,320 --> 00:02:13,020 +of them are in the end user interface components + +36 +00:02:13,020 --> 00:02:15,430 +that are numbered in tens. it will be separated + +37 +00:02:15,430 --> 00:02:17,470 +from one interface. If you want to add a new + +38 +00:02:17,470 --> 00:02:23,970 +functionality that supports any UI + +39 +00:02:23,970 --> 00:02:27,070 +component, use this method. Of course, you will + +40 +00:02:27,070 --> 00:02:29,670 +add this method to the interface, but when you add + +41 +00:02:29,670 --> 00:02:32,670 +it to the interface, all the subclasses will be + +42 +00:02:32,670 --> 00:02:35,950 +affected. Now, what we want to do, our goal is to + +43 +00:02:35,950 --> 00:02:41,170 +add new functions or functions to the interface + +44 +00:02:41,170 --> 00:02:46,010 +without affecting anyone.Subclasses, this is what + +45 +00:02:46,010 --> 00:02:48,630 +we are used to always have, right or wrong, that + +46 +00:02:48,630 --> 00:02:50,190 +you add something to the interface and you + +47 +00:02:50,190 --> 00:02:54,030 +multiply by who? Yes, all the subclasses How can + +48 +00:02:54,030 --> 00:02:56,410 +we add something new to the interface without + +49 +00:02:56,410 --> 00:02:59,290 +multiplying by the subclasses? This is the goal + +50 +00:02:59,290 --> 00:03:02,770 +that we want to achieveOkay guys, before we + +51 +00:03:02,770 --> 00:03:05,470 +explain the visitor pattern, this problem is one + +52 +00:03:05,470 --> 00:03:09,350 +of the problems that had a big debate even between + +53 +00:03:09,350 --> 00:03:11,970 +java designers, okay? The java designers + +54 +00:03:11,970 --> 00:03:14,210 +themselves and any object-oriented programmer + +55 +00:03:14,210 --> 00:03:18,090 +said, we are overwhelmed, every time we do a + +56 +00:03:18,090 --> 00:03:19,690 +hierarchical class like that, it breaks off from + +57 +00:03:19,690 --> 00:03:22,090 +the interface and we want to add something, it + +58 +00:03:22,090 --> 00:03:25,390 +will hit usEvery class. So what did they do in + +59 +00:03:25,390 --> 00:03:27,450 +Java? Did you notice? This is one of the things + +60 +00:03:27,450 --> 00:03:30,610 +that appeared in Java 8 which is version 8 of + +61 +00:03:30,610 --> 00:03:32,630 +Java. Did you notice that Java reached 11 for + +62 +00:03:32,630 --> 00:03:39,970 +example? In Java 8 they added something new to + +63 +00:03:39,970 --> 00:03:43,290 +support the work that we are talking about For + +64 +00:03:43,290 --> 00:03:45,830 +example, let's take a simple example similar to + +65 +00:03:45,830 --> 00:03:48,330 +things that we .. For example, if I made an + +66 +00:03:48,330 --> 00:03:52,110 +interface called shape, okay? And there is a + +67 +00:03:52,110 --> 00:03:58,450 +method, public, for example, void, draw Okay? And + +68 +00:03:58,450 --> 00:04:02,890 +then I made classes from this shape This is circle + +69 +00:04:02,890 --> 00:04:10,920 +The circle, for example, has a radius and I also + +70 +00:04:10,920 --> 00:04:17,440 +have the rectangle this + +71 +00:04:17,440 --> 00:04:25,880 +has integer width and height now + +72 +00:04:25,880 --> 00:04:28,240 +I want the circle and rectangle to have the same + +73 +00:04:28,240 --> 00:04:32,680 +shape and both of them to implement the method + +74 +00:04:32,680 --> 00:04:35,660 +draw each one in a different way now I go to the + +75 +00:04:35,660 --> 00:04:39,490 +circle and say implement shape Because of course + +76 +00:04:39,490 --> 00:04:41,270 +it will give me an error because I have to make an + +77 +00:04:41,270 --> 00:04:45,230 +implement to draw And instead of this code that I + +78 +00:04:45,230 --> 00:04:49,990 +write here for example system.out.println drawing + +79 +00:04:49,990 --> 00:04:53,190 +drawing + +80 +00:04:53,190 --> 00:04:58,370 +a circle And for example I have rectangle + +81 +00:04:58,370 --> 00:05:01,850 +implement shape + +82 +00:05:13,620 --> 00:05:17,640 +Drawing a rectangle Okay, now we want to go to the + +83 +00:05:17,640 --> 00:05:21,020 +interface and add a new method For example, for + +84 +00:05:21,020 --> 00:05:23,920 +all shapes, I want to calculate their area We want + +85 +00:05:23,920 --> 00:05:27,660 +to create a method for example public double calc + +86 +00:05:27,660 --> 00:05:32,300 +area to calculate the area Of course, since I + +87 +00:05:32,300 --> 00:05:34,800 +added it here, what happened to me? They hit them + +88 +00:05:34,800 --> 00:05:37,760 +So now we want to see how to add the new function + +89 +00:05:37,760 --> 00:05:41,790 +without hitting itIf you notice in Java they made + +90 +00:05:41,790 --> 00:05:46,190 +new solutions, I don't think they took it in + +91 +00:05:46,190 --> 00:05:50,450 +programming, they invented something new in Java + +92 +00:05:50,450 --> 00:05:53,630 +8, you can make method calc area, for example, + +93 +00:05:54,330 --> 00:06:00,510 +return zero we always know that in the interface + +94 +00:06:00,510 --> 00:06:03,190 +you can't put methods, the method in the interface + +95 +00:06:03,190 --> 00:06:06,210 +should be abstract but he told us that from the + +96 +00:06:06,210 --> 00:06:08,170 +new things that they started to support, you can + +97 +00:06:08,170 --> 00:06:11,250 +put method calcarea and of course we put + +98 +00:06:11,250 --> 00:06:13,050 +implementation for it but he told us that you + +99 +00:06:13,050 --> 00:06:16,030 +can't do that, the interface should only contain + +100 +00:06:17,170 --> 00:06:19,410 +abstract, so I tell you to avoid the abstract and + +101 +00:06:19,410 --> 00:06:23,170 +write the word what? default after public for + +102 +00:06:23,170 --> 00:06:25,110 +example or private whatever you want, ok? that's + +103 +00:06:25,110 --> 00:06:27,850 +how it became, that's how the interface became + +104 +00:06:27,850 --> 00:06:32,410 +similar in the class that you can put a method in + +105 +00:06:32,410 --> 00:06:34,910 +the interface and it has implementation now the + +106 +00:06:34,910 --> 00:06:39,070 +method is still there, you can, did you notice the + +107 +00:06:39,070 --> 00:06:42,430 +circle and rectangle? there is no arrow in them, + +108 +00:06:42,510 --> 00:06:45,110 +ok? and they support, did you notice that they + +109 +00:06:45,110 --> 00:06:49,350 +inherited from whom?CalcArea, if they want to make + +110 +00:06:49,350 --> 00:06:52,810 +override, it's up to them, okay? You come here, + +111 +00:06:53,230 --> 00:06:56,430 +you can make override for the method that is draw + +112 +00:06:56,430 --> 00:07:03,730 +CalcArea And change the code, of course, here you + +113 +00:07:03,730 --> 00:07:05,630 +use super by default, you change the code that you + +114 +00:07:05,630 --> 00:07:08,630 +want Here, for example, return, I'm in any class + +115 +00:07:08,630 --> 00:07:14,370 +circle, for example, math.py x radius x radius + +116 +00:07:17,500 --> 00:07:23,140 +and it is like this in rectangle this is one of + +117 +00:07:23,140 --> 00:07:25,660 +the new things they did in java which is default + +118 +00:07:25,660 --> 00:07:30,300 +method and as I said this is new because it solves + +119 +00:07:30,300 --> 00:07:33,960 +the problem we are talking aboutOkay, this default + +120 +00:07:33,960 --> 00:07:36,100 +method is not supported in all object-oriented + +121 +00:07:36,100 --> 00:07:38,460 +programming languages Okay, in Java, we found a + +122 +00:07:38,460 --> 00:07:40,500 +solution to the problem, and this is a new + +123 +00:07:40,500 --> 00:07:42,600 +solution they proposed, okay? But in other + +124 +00:07:42,600 --> 00:07:45,500 +languages, in PHP, for example, PHP is object + +125 +00:07:45,500 --> 00:07:47,060 +-oriented, but it does not have a solution to + +126 +00:07:47,060 --> 00:07:49,040 +what? To the default When you make a method in the + +127 +00:07:49,040 --> 00:07:52,820 +interface, you must implement it in the classes So + +128 +00:07:52,820 --> 00:07:54,980 +how did I find it? Let's go back to the visitor + +129 +00:07:54,980 --> 00:07:57,800 +pattern We can add a new functionality to the + +130 +00:07:57,800 --> 00:08:01,710 +interface without hitting itYes, for classes, + +131 +00:08:02,270 --> 00:08:04,570 +without using the default method because it is a + +132 +00:08:04,570 --> 00:08:06,010 +default method and the solution is specific to + +133 +00:08:06,010 --> 00:08:12,370 +Java Okay, + +134 +00:08:12,490 --> 00:08:14,170 +let's go to the gate directly and apply the + +135 +00:08:14,170 --> 00:08:16,590 +solution, let's see how we apply the visitor + +136 +00:08:16,590 --> 00:08:20,890 +pattern, pay attention with me, there are things + +137 +00:08:20,890 --> 00:08:22,790 +that may not be clear, I will explain with you at + +138 +00:08:22,790 --> 00:08:26,830 +the endOkay, to remind ourselves of our main goal, + +139 +00:08:27,310 --> 00:08:29,430 +that we want to be able to add a new functionality + +140 +00:08:29,430 --> 00:08:35,490 +that we support in subclasses without having to + +141 +00:08:35,490 --> 00:08:44,360 +change or modify the methods Or in my classes, it + +142 +00:08:44,360 --> 00:08:46,300 +doesn't want my implementation to be affected. + +143 +00:08:46,820 --> 00:08:48,560 +What is my implementation? It is a circle and + +144 +00:08:48,560 --> 00:08:50,800 +rectangle. It needs to be added through the + +145 +00:08:50,800 --> 00:08:53,500 +interface. It is a new method without affecting + +146 +00:08:53,500 --> 00:08:58,680 +the implementation. Okay? Okay, to do this thing, + +147 +00:08:58,980 --> 00:09:00,840 +we need to do the following. The first thing we + +148 +00:09:00,840 --> 00:09:03,940 +need to do is to create a new class. + +149 +00:09:06,300 --> 00:09:09,740 +Or a new interface at first. Its name is iVisitor. + +150 +00:09:12,550 --> 00:09:17,550 +This I means it is an interface Now inside the I + +151 +00:09:17,550 --> 00:09:20,610 +visitor, you see how many forms we have in our + +152 +00:09:20,610 --> 00:09:25,150 +hierarchy? Two, you see how many classes I have, I + +153 +00:09:25,150 --> 00:09:29,050 +have two classes, each one in the visitor makes a + +154 +00:09:29,050 --> 00:09:35,720 +method, you say public void process and this one + +155 +00:09:35,720 --> 00:09:39,900 +takes an object of type circle of course we will + +156 +00:09:39,900 --> 00:09:45,900 +explain these words then public void process will + +157 +00:09:45,900 --> 00:09:50,440 +take rectangle that's + +158 +00:09:50,440 --> 00:09:54,960 +it because I have two classes only and this + +159 +00:09:54,960 --> 00:09:58,080 +interface is called ivisitor when we finish the + +160 +00:09:58,080 --> 00:10:00,740 +interface we go to the gate to the interface which + +161 +00:10:00,740 --> 00:10:04,890 +is the basic of shapes which is shape we add a new + +162 +00:10:04,890 --> 00:10:11,430 +method public void named accept or any name you + +163 +00:10:11,430 --> 00:10:15,370 +want and this accept takes an object of type i + +164 +00:10:15,370 --> 00:10:22,170 +visitor named v okay? we will talk about this + +165 +00:10:22,170 --> 00:10:24,630 +method later since this method is added to the + +166 +00:10:24,630 --> 00:10:27,110 +interface shape this method must be multiplied + +167 +00:10:27,110 --> 00:10:29,290 +where guys? yes in the previous one they + +168 +00:10:29,290 --> 00:10:32,010 +multiplied at the circle and rectangleso I will go + +169 +00:10:32,010 --> 00:10:35,130 +to circle and tell it to implement and it will add + +170 +00:10:35,130 --> 00:10:39,850 +method accept and I will also go to rectangle and + +171 +00:10:39,850 --> 00:10:43,710 +it will add method accept + +172 +00:10:46,110 --> 00:10:48,750 +so it remains one step and we finish it and then + +173 +00:10:48,750 --> 00:10:51,650 +we explain what we have done go to the method + +174 +00:10:51,650 --> 00:10:55,490 +accept that is in the circle remove the code that + +175 +00:10:55,490 --> 00:10:58,890 +you put by default and then go to the v who is the + +176 +00:10:58,890 --> 00:11:02,890 +v? the visitor and you tell him process and you + +177 +00:11:02,890 --> 00:11:06,150 +give him this who is this? which is the current + +178 +00:11:06,150 --> 00:11:10,330 +class and the same thing go to the rectangle and + +179 +00:11:10,330 --> 00:11:15,330 +tell him v.process and you give him this + +180 +00:11:19,050 --> 00:11:23,230 +Okay guys, we're done. Do you understand what I + +181 +00:11:23,230 --> 00:11:27,890 +did? Yes? No? Okay, let's explain what we did. I + +182 +00:11:27,890 --> 00:11:32,070 +brought back the idea where it is. And to convey + +183 +00:11:32,070 --> 00:11:35,150 +the idea to you, imagine that I have a shed and I + +184 +00:11:35,150 --> 00:11:38,560 +want to add new things to it. For example, they + +185 +00:11:38,560 --> 00:11:41,440 +asked me to make a new room, open a new window, + +186 +00:11:42,660 --> 00:11:45,580 +fix a broken thing Now, it doesn't make sense that + +187 +00:11:45,580 --> 00:11:47,640 +every time I want to do something new, they tell + +188 +00:11:47,640 --> 00:11:51,580 +me to leave the old thing and go get a new one No, + +189 +00:11:51,760 --> 00:11:53,820 +I'm done, I'm in the old thing, I want to add new + +190 +00:11:53,820 --> 00:11:56,100 +things, at the same time, I can't add these new + +191 +00:11:56,100 --> 00:11:59,180 +things So what do I do? For example, I want to + +192 +00:11:59,180 --> 00:12:02,520 +open a new door, I reach the carpenter, I tell him + +193 +00:12:02,520 --> 00:12:08,330 +to comeI contact him because he is considered a + +194 +00:12:08,330 --> 00:12:14,990 +visitor. He comes to me and I say welcome and open + +195 +00:12:14,990 --> 00:12:17,750 +the door. For example, I have a piece of wood that + +196 +00:12:17,750 --> 00:12:21,740 +broke. I went to another visitor and told him that + +197 +00:12:21,740 --> 00:12:24,080 +this wood doesn't look good, it needs a carpenter. + +198 +00:12:24,360 --> 00:12:26,860 +I looked at the carpenter and told him to come to + +199 +00:12:26,860 --> 00:12:31,040 +my house and ask him to take over this wood and + +200 +00:12:31,040 --> 00:12:34,360 +fix it. I told him that I will leave him to work. + +201 +00:12:35,680 --> 00:12:38,240 +The idea behind this gate is that you take over + +202 +00:12:38,240 --> 00:12:40,240 +the house and then any additions that you want to + +203 +00:12:40,240 --> 00:12:44,700 +make, you leave them outside They do it, you don't + +204 +00:12:44,700 --> 00:12:47,140 +change the whole house to do it, you leave people + +205 +00:12:47,140 --> 00:12:51,100 +outside to do it, okay? And this is the idea of + +206 +00:12:51,100 --> 00:12:53,180 +​​what we did with Hellgate What exactly did we + +207 +00:12:53,180 --> 00:12:56,900 +do? Look with me guys Hellgate, we are in the + +208 +00:12:56,900 --> 00:12:59,640 +interface shape, I have the basic method which is + +209 +00:12:59,640 --> 00:13:02,740 +for example draw Or any other method that I want + +210 +00:13:02,740 --> 00:13:06,780 +to do in the subclasses Now I want to open the + +211 +00:13:06,780 --> 00:13:12,140 +door to addNew Features So he tells me that in + +212 +00:13:12,140 --> 00:13:14,040 +order to add new features in the future, I should + +213 +00:13:14,040 --> 00:13:16,080 +create a method called Accept And what does this + +214 +00:13:16,080 --> 00:13:20,000 +method take? The visitor And since this method + +215 +00:13:20,000 --> 00:13:24,420 +Accept is a door that I left open through which I + +216 +00:13:24,420 --> 00:13:26,660 +will welcome the visitor to do the new things that + +217 +00:13:26,660 --> 00:13:29,680 +I want him to do So that he will find the new + +218 +00:13:29,680 --> 00:13:34,220 +thing, where will his code go?Jewel visitor to put + +219 +00:13:34,220 --> 00:13:37,780 +the shape of the gate For example, I want to add a + +220 +00:13:37,780 --> 00:13:39,980 +possibility to calculate the area of the shapes + +221 +00:13:39,980 --> 00:13:42,500 +For example, we want to create a method called + +222 +00:13:42,500 --> 00:13:49,080 +calcarea If I add calcarea like this public void + +223 +00:13:49,080 --> 00:13:54,300 +calcarea Who did they hit? All the buildings But + +224 +00:13:54,300 --> 00:13:57,740 +no, now I want to create a space calculation + +225 +00:13:57,740 --> 00:14:00,680 +Simply, you create a method accept and what does + +226 +00:14:00,680 --> 00:14:05,960 +it take?I visitor. This gate is like we want the + +227 +00:14:05,960 --> 00:14:10,540 +sheep to connect to the visitor who calculates the + +228 +00:14:10,540 --> 00:14:13,760 +space. And this visitor will receive him through + +229 +00:14:13,760 --> 00:14:16,880 +the accept. From the door of the house, I say to + +230 +00:14:16,880 --> 00:14:20,150 +him, please come in, and then I greet him. The + +231 +00:14:20,150 --> 00:14:22,450 +shape is to calculate the space it wants and make + +232 +00:14:22,450 --> 00:14:25,170 +it what it wants Ok, we are not done yet, did you + +233 +00:14:25,170 --> 00:14:28,390 +find it? To try this thing, let's go to the main + +234 +00:14:28,390 --> 00:14:32,690 +method And let's try to make objects of type for + +235 +00:14:32,690 --> 00:14:37,490 +example circle C1 new circle and give it C1 dot + +236 +00:14:37,490 --> 00:14:41,590 +radius for example 10 and then make another object + +237 +00:14:41,590 --> 00:14:48,010 +rectangle R1 equal to new rectangle and give it r1 + +238 +00:14:48,010 --> 00:14:57,270 +.width for example 5 and r1.height 10 now + +239 +00:14:57,270 --> 00:15:02,470 +of course I can put these shapes in the shape of + +240 +00:15:02,470 --> 00:15:06,490 +the shape I put c1 and r1 and then I can say for + +241 +00:15:06,490 --> 00:15:11,970 +each shape p is present in shapes okay because you + +242 +00:15:11,970 --> 00:15:17,440 +can say pp.draw because this draw is present in + +243 +00:15:17,440 --> 00:15:20,880 +the interface. Ok, we like this gate because we + +244 +00:15:20,880 --> 00:15:24,760 +calculate the area of shapes. Ok, to calculate the + +245 +00:15:24,760 --> 00:15:27,640 +area of shapes, as we said, the solution that we + +246 +00:15:27,640 --> 00:15:32,180 +got used to is to add a method called calcArea, + +247 +00:15:32,640 --> 00:15:34,960 +and when you add it, it will multiply the classes + +248 +00:15:34,960 --> 00:15:37,740 +until you implement them We don't want the classes + +249 +00:15:37,740 --> 00:15:39,800 +to multiply the implementation of it How can we + +250 +00:15:39,800 --> 00:15:42,260 +make it calculate CalcArea without multiplying it? + +251 +00:15:42,620 --> 00:15:44,580 +I'll tell you simply, if you don't modify the + +252 +00:15:44,580 --> 00:15:49,020 +shape, go ask a visitor to do this job for you So + +253 +00:15:49,020 --> 00:15:50,940 +what are we going to do now? I have an interface + +254 +00:15:50,940 --> 00:15:54,120 +called iVisitor, we will make a new class from + +255 +00:15:54,120 --> 00:15:57,610 +this iVisitorIt is the one that calculates the + +256 +00:15:57,610 --> 00:16:00,330 +dimensions. What can we call this visitor for + +257 +00:16:00,330 --> 00:16:03,810 +example? Area visitor. This visitor is specialized + +258 +00:16:03,810 --> 00:16:08,690 +in calculating dimensions. Okay? And we say to + +259 +00:16:08,690 --> 00:16:11,610 +him, of course, so that I can send him to + +260 +00:16:11,610 --> 00:16:14,550 +implement iVisitor. + +261 +00:16:17,090 --> 00:16:19,830 +Okay? And did you get it? He said, yes, simply. + +262 +00:16:19,950 --> 00:16:23,080 +This visitor is specialized in dimensions.It + +263 +00:16:23,080 --> 00:16:26,060 +serves a lot of people and fixes chairs and + +264 +00:16:26,060 --> 00:16:29,300 +cupboards. It fixes whatever it wants. Okay? It is + +265 +00:16:29,300 --> 00:16:32,400 +a carpenter. It is specialized in calculating + +266 +00:16:32,400 --> 00:16:34,700 +areas. It calculates the area of the circle, + +267 +00:16:34,860 --> 00:16:37,880 +rectangle and whatever shape you want. So it comes + +268 +00:16:37,880 --> 00:16:39,040 +to the circle, for example, it wants to calculate + +269 +00:16:39,040 --> 00:16:41,500 +its area. It says, for example, system.out + +270 +00:16:41,500 --> 00:16:44,480 +.println. Where did I turn it on? In the class + +271 +00:16:44,480 --> 00:16:49,860 +called AreaVisitor. it needs to calculate math.pi + +272 +00:16:49,860 --> 00:16:59,060 +x c.radius x c.radius in rectangle system.out + +273 +00:16:59,060 --> 00:17:07,880 +.println r.width x r.height this is the visitor + +274 +00:17:07,880 --> 00:17:13,330 +that I will use to do what I wantOkay, I haven't + +275 +00:17:13,330 --> 00:17:16,230 +used this class yet Where will I use it? In the + +276 +00:17:16,230 --> 00:17:21,830 +main? I will go to the gate and before this loop I + +277 +00:17:21,830 --> 00:17:24,210 +will create an object from area visitor I will + +278 +00:17:24,210 --> 00:17:32,150 +call it av you saw new area visitor and then when + +279 +00:17:32,150 --> 00:17:35,370 +I come to make a loop on shapes I draw and then I + +280 +00:17:35,370 --> 00:17:39,990 +go to the shape and I say what? accept and I send + +281 +00:17:39,990 --> 00:17:47,200 +it to whom?AV is Area Visitor Let's + +282 +00:17:47,200 --> 00:17:49,600 +see what will happen to this gate This gate does + +283 +00:17:49,600 --> 00:17:53,460 +not rotate and execute accept This gate's first + +284 +00:17:53,460 --> 00:17:58,340 +shape is circle So it goes to class circle and + +285 +00:17:58,340 --> 00:18:04,640 +executes this accept What is this accept? I go to + +286 +00:18:04,640 --> 00:18:07,460 +the visitor and ask him to process this. Who is + +287 +00:18:07,460 --> 00:18:10,880 +this? The circle. It's like I brought my potter to + +288 +00:18:10,880 --> 00:18:14,940 +my house and told him to submit. And I leave him. + +289 +00:18:15,000 --> 00:18:17,860 +Do I have to know the details and what he does? + +290 +00:18:17,980 --> 00:18:20,200 +No, that's it. I can hand over the work and tell + +291 +00:18:20,200 --> 00:18:23,760 +him to work. And so on. I sent the visitor to the + +292 +00:18:23,760 --> 00:18:25,640 +circle. The circle received the visitor and told + +293 +00:18:25,640 --> 00:18:29,440 +him to go ahead. Take this. Who is this? The + +294 +00:18:29,440 --> 00:18:32,140 +object. To take from him who? The radius in the + +295 +00:18:32,140 --> 00:18:36,010 +other.Okay? And the same thing, when I look at the + +296 +00:18:36,010 --> 00:18:40,050 +rectangle, I will go to the rectangle and it will + +297 +00:18:40,050 --> 00:18:45,450 +say process v dot process this. So now I apply the + +298 +00:18:45,450 --> 00:18:47,650 +concept of polymorphism, I make loops on the + +299 +00:18:47,650 --> 00:18:50,850 +elements, each person calculates the area, and I + +300 +00:18:50,850 --> 00:18:52,870 +added a new functionality. For example, this is + +301 +00:18:52,870 --> 00:18:55,730 +the drawing circle and this is its area. The + +302 +00:18:55,730 --> 00:18:58,730 +drawing rectangle and this is the area of ​​the + +303 +00:18:58,730 --> 00:19:03,040 +rectangle, which is five times ten. because we + +304 +00:19:03,040 --> 00:19:07,160 +want to add new functions for example, did you + +305 +00:19:07,160 --> 00:19:08,300 +notice that we want to calculate the circumference + +306 +00:19:08,300 --> 00:19:13,740 +of shapes? as we said, the traditional way that we + +307 +00:19:13,740 --> 00:19:16,660 +are used to is that you go to the shape interface + +308 +00:19:16,660 --> 00:19:20,740 +and add method calc perimeter but also when you + +309 +00:19:20,740 --> 00:19:23,720 +added it, who hit you? the children did you notice + +310 +00:19:23,720 --> 00:19:26,180 +that? no, I don't want my children to hit me it + +311 +00:19:26,180 --> 00:19:29,360 +costs the visitor outside to do this thing for you + +312 +00:19:29,360 --> 00:19:32,770 +so we go and create a new classIts name is for + +313 +00:19:32,770 --> 00:19:41,330 +example Perimeter Visitor And I say Implements to + +314 +00:19:41,330 --> 00:19:47,150 +I Visitor Because now you are assigned to + +315 +00:19:47,150 --> 00:19:49,830 +calculate the circumference of the shapes For + +316 +00:19:49,830 --> 00:19:51,250 +example, this is how you calculate the + +317 +00:19:51,250 --> 00:19:55,630 +circumference System.out.println circumference of + +318 +00:19:55,630 --> 00:19:58,550 +the circle 2 in math.py + +319 +00:20:01,730 --> 00:20:08,230 +c.radius now the rectangle system + +320 +00:20:08,230 --> 00:20:17,530 +.out.println two times the sum of r.width plus r + +321 +00:20:17,530 --> 00:20:21,010 +.height correct or not guys? now I go back to the + +322 +00:20:21,010 --> 00:20:24,690 +main method it has to rotate on the shapes and + +323 +00:20:24,690 --> 00:20:26,670 +calculate its circumference all that you have to + +324 +00:20:26,670 --> 00:20:28,990 +do is go and create another visitor called + +325 +00:20:28,990 --> 00:20:29,990 +perimeter + +326 +00:20:34,110 --> 00:20:44,310 +visitor.pv and + +327 +00:20:44,310 --> 00:20:53,170 +then rotate the shapes and say p.accept.pv and + +328 +00:20:53,170 --> 00:20:55,530 +so on, every time you add a new function you make + +329 +00:20:55,530 --> 00:20:59,810 +it your own visitor now this method accept is like + +330 +00:20:59,810 --> 00:21:04,290 +an open door for additions. Am I right or not + +331 +00:21:04,290 --> 00:21:11,450 +guys? I made this accept to make visitors do new + +332 +00:21:11,450 --> 00:21:14,650 +tasks and repeat them without adding additional + +333 +00:21:14,650 --> 00:21:18,050 +methods to the interface because we saw that + +334 +00:21:18,050 --> 00:21:20,250 +adding additional methods disrupted all + +335 +00:21:20,250 --> 00:21:22,930 +implementations. Someone will ask me a question + +336 +00:21:22,930 --> 00:21:24,550 +and I will say what is the accept that you made + +337 +00:21:24,550 --> 00:21:27,930 +when you added it? I changed it to subclasses. + +338 +00:21:27,950 --> 00:21:30,820 +Okay, this is the first time. Right or not? But + +339 +00:21:30,820 --> 00:21:34,540 +for the first time, when the designer designs the + +340 +00:21:34,540 --> 00:21:37,900 +hierarchy class, he puts the basic methods and + +341 +00:21:37,900 --> 00:21:42,280 +then leaves the accept as an open door and the + +342 +00:21:42,280 --> 00:21:45,800 +subclasses have to implement it to give the + +343 +00:21:45,800 --> 00:21:49,190 +visitor a message, but what does this do?The first + +344 +00:21:49,190 --> 00:21:51,190 +time. After that, as we said, as we saw in our + +345 +00:21:51,190 --> 00:21:52,850 +example, I have to add something to calculate the + +346 +00:21:52,850 --> 00:21:55,030 +area, to calculate the circumference, to calculate + +347 +00:21:55,030 --> 00:21:58,530 +the size, to calculate whatever, any new method, I + +348 +00:21:58,530 --> 00:22:02,110 +don't modify at all, not on the interface, nor on + +349 +00:22:02,110 --> 00:22:05,170 +the subclasses. What happened to these? They are + +350 +00:22:05,170 --> 00:22:08,610 +fixed. But I make visitors outside, like the idea + +351 +00:22:08,610 --> 00:22:11,470 +of ​​hanging out in the house, okay? I don't want + +352 +00:22:11,470 --> 00:22:14,030 +to change the house, okay? As long as ... No, + +353 +00:22:14,150 --> 00:22:17,780 +look, come visitor, do something to me.Okay? And + +354 +00:22:17,780 --> 00:22:20,380 +I'm going to be what? I'm going to have a door to + +355 +00:22:20,380 --> 00:22:23,280 +the house that's always open to visitors, okay? + +356 +00:22:23,800 --> 00:22:25,340 +It's like the accent, it's like the door to the + +357 +00:22:25,340 --> 00:22:27,100 +house that I receive through visitors and I charge + +358 +00:22:27,100 --> 00:22:33,920 +them with the work they do This is the idea of the + +359 +00:22:33,920 --> 00:22:37,020 +visitor pattern. For this reason, designers who + +360 +00:22:37,020 --> 00:22:39,800 +work in a hierarchy like this always put methods + +361 +00:22:39,800 --> 00:22:41,700 +in the interface and put a method in the end, such + +362 +00:22:41,700 --> 00:22:45,440 +as accept, to receive from within it. Anyone who + +363 +00:22:45,440 --> 00:22:48,620 +wants to add something new, he adds it through + +364 +00:22:48,620 --> 00:22:52,940 +visitors. Those who make APIs to support anyone + +365 +00:22:52,940 --> 00:22:55,860 +who wants to add a new functionality without + +366 +00:22:55,860 --> 00:22:59,260 +changing the implementation of the classes, these + +367 +00:22:59,260 --> 00:23:00,240 +APIs provide this possibility. + +368 +00:23:02,820 --> 00:23:05,560 +Now, this is just the same example, did you get it + +369 +00:23:05,560 --> 00:23:09,300 +guys? Let's draw and imagine the shape of the UML. + +370 +00:23:10,560 --> 00:23:13,460 +Let's continue with this drawing. This is an + +371 +00:23:13,460 --> 00:23:17,620 +interface with A and B, and they made an implement + +372 +00:23:17,620 --> 00:23:21,640 +for A and B. Now I made it that it should have an + +373 +00:23:21,640 --> 00:23:24,540 +interface called IVisitor. + +374 +00:23:28,080 --> 00:23:30,660 +because here I have x and y so here in the + +375 +00:23:30,660 --> 00:23:31,900 +interface you have to create a method called + +376 +00:23:31,900 --> 00:23:39,960 +process that takes x and process that takes y ok? + +377 +00:23:40,520 --> 00:23:42,680 +and based on that here you have to create a method + +378 +00:23:42,680 --> 00:23:47,800 +called accept that takes an object of type mean i + +379 +00:23:47,800 --> 00:23:51,740 +visitor and based on how much you added the method + +380 +00:23:51,740 --> 00:23:56,710 +accept here you have to add it below here I have + +381 +00:23:56,710 --> 00:24:06,810 +accept, also ivisitor and here accept ivisitor + +382 +00:24:06,810 --> 00:24:14,130 +and this if we see the code in it what is it? + +383 +00:24:14,430 --> 00:24:24,640 +ivisitor is v dot process will take this ok guys? + +384 +00:24:24,920 --> 00:24:30,020 +now this + +385 +00:24:30,020 --> 00:24:35,520 +one uses x and this one uses y now if you want to + +386 +00:24:35,520 --> 00:24:41,000 +add a new method all you have to do is create a + +387 +00:24:41,000 --> 00:24:45,560 +new visitor for example we will call this area + +388 +00:24:45,560 --> 00:24:48,100 +visitor + +389 +00:24:49,920 --> 00:24:54,160 +Of course, this is an implementation for process X + +390 +00:24:54,160 --> 00:24:59,400 +and process Y + +391 +00:24:59,400 --> 00:25:04,700 +Now, this is the client Who is the client? It is + +392 +00:25:04,700 --> 00:25:09,260 +like the main method Now, the main method takes + +393 +00:25:09,260 --> 00:25:13,140 +objects from X and Y, but in the end it will deal + +394 +00:25:13,140 --> 00:25:17,250 +with them as the interface and it will create an + +395 +00:25:17,250 --> 00:25:19,910 +object from visitors area visitors and it will + +396 +00:25:19,910 --> 00:25:23,790 +deal with it as if it is the visitor and in the + +397 +00:25:23,790 --> 00:25:26,350 +end in order for it to execute anything from here + +398 +00:25:26,350 --> 00:25:32,010 +it takes the interface this shape for example it + +399 +00:25:32,010 --> 00:25:39,190 +takes a shape and says accept and + +400 +00:25:39,190 --> 00:25:42,310 +sends it the v which is from the visitor that you + +401 +00:25:42,310 --> 00:25:46,910 +want it to be something like this For the UML + +402 +00:25:46,910 --> 00:25:49,950 +diagram of the visitor pattern Do you understand + +403 +00:25:49,950 --> 00:25:53,390 +the idea guys? Okay, now that we have covered + +404 +00:25:53,390 --> 00:25:55,190 +this, let's go to the slides + +405 +00:26:02,890 --> 00:26:07,990 +Motivation The visitor pattern represents an + +406 +00:26:07,990 --> 00:26:11,150 +operation to be performed on the elements of the + +407 +00:26:11,150 --> 00:26:13,590 +object structure Because this is what we call the + +408 +00:26:13,590 --> 00:26:15,710 +object structure, which I don't want to modify, + +409 +00:26:16,070 --> 00:26:18,590 +okay? What does the visitor actually represent? + +410 +00:26:19,090 --> 00:26:21,370 +Whose operation is going to be carried out on this + +411 +00:26:21,370 --> 00:26:23,110 +object structure? And each visitor is responsible + +412 +00:26:23,110 --> 00:26:29,410 +for a specific job. VisitorLets you define a new + +413 +00:26:29,410 --> 00:26:33,310 +operation without changing the classes of the + +414 +00:26:33,310 --> 00:26:37,110 +elements on which it operates Clear, the visitor + +415 +00:26:37,110 --> 00:26:40,830 +makes you add a new operationwithout changing the + +416 +00:26:40,830 --> 00:26:43,290 +classes I don't modify these classes because + +417 +00:26:43,290 --> 00:26:45,990 +before adding a new task or adding a new method in + +418 +00:26:45,990 --> 00:26:49,070 +the interface, I have to modify these classes Now + +419 +00:26:49,070 --> 00:26:53,030 +I add a new method and pass it through the visitor + +420 +00:26:53,030 --> 00:26:55,930 +without modifying anything on the object structure + +421 +00:26:55,930 --> 00:26:58,990 +All of this here is the object structure which is + +422 +00:26:58,990 --> 00:26:59,850 +mentioned in the slide + +423 +00:27:08,810 --> 00:27:12,530 +Now, what are the cases that make me use the + +424 +00:27:12,530 --> 00:27:16,810 +visitor? When I have an interface and elements + +425 +00:27:16,810 --> 00:27:20,470 +separated from it, I want them to be fixed, okay? + +426 +00:27:20,830 --> 00:27:23,370 +They don't change. And also, if they are many, + +427 +00:27:24,470 --> 00:27:26,630 +which means that the modification here will affect + +428 +00:27:26,630 --> 00:27:29,590 +a large number of classes. So in case if the + +429 +00:27:29,590 --> 00:27:32,490 +object interface is fixed and diverse, + +430 +00:27:34,830 --> 00:27:38,750 +in this case, modifying the interface will affect + +431 +00:27:38,750 --> 00:27:41,770 +the whole world. No, you open the door of the + +432 +00:27:41,770 --> 00:27:44,890 +visitor so that in the future you can add new + +433 +00:27:44,890 --> 00:27:50,290 +things without modifying the object structure. The + +434 +00:27:50,290 --> 00:27:52,270 +second point is that you need to allow new + +435 +00:27:52,270 --> 00:27:56,780 +operations without Coupling means that I add new + +436 +00:27:56,780 --> 00:28:00,320 +things without increasing my coupling and I + +437 +00:28:00,320 --> 00:28:03,180 +noticed that I used the visitor pattern and it + +438 +00:28:03,180 --> 00:28:04,980 +kept supporting the polymorphism that is, the main + +439 +00:28:04,980 --> 00:28:07,580 +idea is that the polymorphism remains with it I + +440 +00:28:07,580 --> 00:28:11,100 +add all the shapes in one array and I say loop and + +441 +00:28:11,100 --> 00:28:16,500 +execute the process that I want The solution + +442 +00:28:16,500 --> 00:28:19,940 +represents operations to be performed as visitors + +443 +00:28:20,960 --> 00:28:24,460 +represent operations to be performed as visitors. + +444 +00:28:25,040 --> 00:28:27,880 +The operation itself is represented by whom? The + +445 +00:28:27,880 --> 00:28:29,900 +visitor. We saw that there is a visitor specific + +446 +00:28:29,900 --> 00:28:32,640 +to the calculation of dimensions. All the + +447 +00:28:32,640 --> 00:28:33,980 +operations of dimensions are present in this + +448 +00:28:33,980 --> 00:28:37,460 +visitor. With the interface of every visitor + +449 +00:28:37,460 --> 00:28:41,420 +representing the different kinds of objects. This + +450 +00:28:41,420 --> 00:28:44,440 +means that the visitor itself will interact with + +451 +00:28:44,440 --> 00:28:46,760 +all kinds of objects. Notice that the visitor + +452 +00:28:46,760 --> 00:28:50,180 +interacts with the X and interacts with Here, of + +453 +00:28:50,180 --> 00:28:52,820 +course, this is the limitation of the visitor + +454 +00:28:52,820 --> 00:28:56,320 +pattern. There is no solution without equations. + +455 +00:28:57,760 --> 00:29:01,620 +The bad point is that when I worked as a visitor, + +456 +00:29:01,940 --> 00:29:04,440 +there was a process for a circle and a process for + +457 +00:29:04,440 --> 00:29:07,980 +a rectangle. This means that if we add a new + +458 +00:29:07,980 --> 00:29:12,020 +shape, it will have to pass through the visitor + +459 +00:29:12,020 --> 00:29:14,460 +tree. We have two trees here. The elements tree + +460 +00:29:14,460 --> 00:29:19,070 +and the main tree.For visitors, every time you + +461 +00:29:19,070 --> 00:29:22,570 +need to do a new operation, you will do a new + +462 +00:29:22,570 --> 00:29:27,110 +visitor and you will say process X and process Y + +463 +00:29:27,110 --> 00:29:32,150 +If we add a new shape, W, you will have to go to + +464 +00:29:32,150 --> 00:29:35,710 +this interface and add the process and add it to + +465 +00:29:35,710 --> 00:29:40,640 +all visitorsSo we are back to the same problem. + +466 +00:29:40,740 --> 00:29:43,800 +But what? Did you get the idea that this visitor + +467 +00:29:43,800 --> 00:29:48,040 +tree is going to be smaller than this one? This + +468 +00:29:48,040 --> 00:29:49,420 +one is going to tell you that you are using it + +469 +00:29:49,420 --> 00:29:52,160 +because it is fixed and scattered in a big way. + +470 +00:29:52,540 --> 00:29:55,400 +But the visitor usually you will need one visitor + +471 +00:29:55,400 --> 00:29:58,300 +or two visitors without much. So what is this tree + +472 +00:29:58,300 --> 00:30:02,510 +going to be?easier to edit, okay? And then as I + +473 +00:30:02,510 --> 00:30:05,710 +told you, most of the time when I use a browser + +474 +00:30:05,710 --> 00:30:07,790 +and there is a situation where the interface is + +475 +00:30:07,790 --> 00:30:10,870 +fixed, most of the time I don't need to add a new + +476 +00:30:10,870 --> 00:30:13,870 +class, but I need to add a new functionality, + +477 +00:30:15,010 --> 00:30:17,390 +okay? Like what? What are the cases where there is + +478 +00:30:17,390 --> 00:30:20,530 +a fixed structure, but I need to add a new method? + +479 +00:30:21,530 --> 00:30:24,800 +Any library related to the UI I found the UI + +480 +00:30:24,800 --> 00:30:28,840 +components, they are fixed, they don't change from + +481 +00:30:28,840 --> 00:30:36,320 +year to year. Button, text field, text area, they + +482 +00:30:36,320 --> 00:30:41,680 +don't change. So the structure fixed, the classes + +483 +00:30:41,680 --> 00:30:43,980 +or the UI components that each one represents in + +484 +00:30:43,980 --> 00:30:46,820 +the class, they are fixed. But I need to add a + +485 +00:30:46,820 --> 00:30:49,260 +method every now and then to support them, to work + +486 +00:30:49,260 --> 00:30:56,610 +on them.So I usually use visitor when the object + +487 +00:30:56,610 --> 00:30:59,710 +structure is fixed, the number of classes is + +488 +00:30:59,710 --> 00:31:02,810 +fixed, but I need to add operations, new + +489 +00:31:02,810 --> 00:31:06,430 +operations on them. And in all cases, even if I + +490 +00:31:06,430 --> 00:31:10,610 +add a class, modifying this structure is easier + +491 +00:31:10,610 --> 00:31:13,590 +than modifying this one. How? + +492 +00:31:17,270 --> 00:31:22,170 +Ok, so we saw that in Java specifically, all the + +493 +00:31:22,170 --> 00:31:24,710 +visitor patterns on the gate won't be necessary, + +494 +00:31:24,990 --> 00:31:27,790 +right? Because the default method solved the + +495 +00:31:27,790 --> 00:31:31,270 +problem. Ok, so you want to add a new method and + +496 +00:31:31,270 --> 00:31:33,770 +you want to cache it and hit it? Make it default, + +497 +00:31:34,410 --> 00:31:36,350 +you won't force the people below to make it + +498 +00:31:36,350 --> 00:31:38,530 +implement. Those who want to make it implement, + +499 +00:31:38,710 --> 00:31:40,210 +those who don't want to use the default, + +500 +00:31:40,610 --> 00:31:44,110 +implementation. But as we said, if the interface + +501 +00:31:44,110 --> 00:31:46,190 +doesn't support the default method, like all + +502 +00:31:46,190 --> 00:31:49,950 +object oriented languages, in this case, the + +503 +00:31:49,950 --> 00:31:52,630 +visitor pattern solves the problem for you. + +504 +00:31:53,450 --> 00:32:01,250 +SolutionConsequences can add new operations + +505 +00:32:01,250 --> 00:32:04,570 +without changing objects + +506 +00:32:07,270 --> 00:32:14,710 +The visitor pattern is a way of separating the + +507 +00:32:14,710 --> 00:32:19,950 +operation from the object structure And a way of + +508 +00:32:19,950 --> 00:32:22,450 +collecting together the different implementations + +509 +00:32:22,450 --> 00:32:24,730 +of the operation for different kinds of elements + +510 +00:32:35,440 --> 00:32:37,600 +for the different shapes. And the perimeter + +511 +00:32:37,600 --> 00:32:39,560 +visitor collects all the shapes in the + +512 +00:32:39,560 --> 00:32:44,800 +surroundings. That's why when you work in an area, + +513 +00:32:45,420 --> 00:32:46,980 +you focus on the importance of calculating the + +514 +00:32:46,980 --> 00:32:48,220 +dimensions for the shapes. That's it, you're done + +515 +00:32:48,220 --> 00:32:50,180 +with this class, focus on calculating the + +516 +00:32:50,180 --> 00:32:53,040 +dimensions. So here, collecting together the + +517 +00:32:53,040 --> 00:32:57,200 +different implementations for the same process.For + +518 +00:32:57,200 --> 00:33:01,600 +different kinds of elements Is it clear guys? A + +519 +00:33:01,600 --> 00:33:05,040 +visitor class is created which knows how to + +520 +00:33:05,040 --> 00:33:13,440 +perform a particular operation Each + +521 +00:33:13,440 --> 00:33:18,420 +type of element in the structure defines accept + +522 +00:33:18,420 --> 00:33:21,420 +method This method accepts and through it receives + +523 +00:33:21,420 --> 00:33:24,760 +the visitor It is present here and they implement + +524 +00:33:24,760 --> 00:33:24,920 +it + +525 +00:33:27,840 --> 00:33:30,680 +that can accept any kind of visitor. Of course, + +526 +00:33:30,760 --> 00:33:33,060 +how did it accept any kind of visitor? Because all + +527 +00:33:33,060 --> 00:33:36,400 +visitors follow the same interface. So it will + +528 +00:33:36,400 --> 00:33:39,820 +accept any kind of class that is implemented to + +529 +00:33:39,820 --> 00:33:44,400 +this interface. The visitor is passed to each + +530 +00:33:44,400 --> 00:33:48,400 +element in the structure. So through accepting, I + +531 +00:33:48,400 --> 00:33:53,940 +pass to whom? by calling it accept method and the + +532 +00:33:53,940 --> 00:34:09,420 +visitor then performs the operation one important + +533 +00:34:09,420 --> 00:34:19,040 +consequence of this separation is that we can add + +534 +00:34:19,040 --> 00:34:24,020 +laterWe can later add a new operation, a new kind + +535 +00:34:24,020 --> 00:34:30,340 +of visitor, without having to modify the element + +536 +00:34:30,340 --> 00:34:33,440 +classes of the object structure Each type of + +537 +00:34:33,440 --> 00:34:37,340 +visitor defines several visit methods, one for + +538 +00:34:37,340 --> 00:34:40,420 +each kind of element Because here I named it + +539 +00:34:40,420 --> 00:34:44,680 +process, he named it visit, that is, for each type + +540 +00:34:44,680 --> 00:34:46,720 +of shape, there must be a specific visit or + +541 +00:34:46,720 --> 00:34:50,870 +specific processThe basic insight is that the + +542 +00:34:50,870 --> 00:34:57,350 +precise set of instructions to execute depends + +543 +00:34:57,350 --> 00:35:01,410 +on + +544 +00:35:01,410 --> 00:35:05,930 +the runtime types of both the visitor and the + +545 +00:35:05,930 --> 00:35:09,150 +visited element. What does this sentence mean? We + +546 +00:35:09,150 --> 00:35:10,930 +know that polymorphism + +547 +00:35:14,150 --> 00:35:18,830 +Either the method you draw will depend on whom? On + +548 +00:35:18,830 --> 00:35:23,010 +the actual type of the shape, right? It depends on + +549 +00:35:23,010 --> 00:35:26,670 +the runtime type of the shape If it was a circle, + +550 +00:35:26,770 --> 00:35:27,990 +it would implement the draw that exists in the + +551 +00:35:27,990 --> 00:35:31,130 +circle This is the promorphism, right? The same + +552 +00:35:31,130 --> 00:35:33,790 +thing with accept But this execution of the + +553 +00:35:33,790 --> 00:35:36,710 +operation depends on two things It depends on the + +554 +00:35:36,710 --> 00:35:39,710 +actual type of the shape And on the type of + +555 +00:35:39,710 --> 00:35:45,300 +visitor, right?This is the meaning of the sentence + +556 +00:35:45,300 --> 00:35:47,200 +I said, that the process that will be carried out + +557 +00:35:47,200 --> 00:35:49,480 +now will depend on two things, on the type of + +558 +00:35:49,480 --> 00:35:55,160 +shape and type of visitor. Here, if the shape is a + +559 +00:35:55,160 --> 00:35:57,420 +circle and the visitor is to calculate the area, + +560 +00:35:58,240 --> 00:36:00,740 +it will come to the circle and carry out the + +561 +00:36:00,740 --> 00:36:04,700 +process and this will calculate the area. This is + +562 +00:36:04,700 --> 00:36:05,580 +the meaning of the sentence I said. + +563 +00:36:09,180 --> 00:36:11,800 +It depends on the run-time types of both the + +564 +00:36:11,800 --> 00:36:14,460 +visitor and the visited element, which in our case + +565 +00:36:14,460 --> 00:36:17,580 +is the shape, the circle or rectangle. This is an + +566 +00:36:17,580 --> 00:36:20,700 +L-diagram similar to the one I drew, but maybe I + +567 +00:36:20,700 --> 00:36:24,590 +drew it more detailed. Take a look at today's + +568 +00:36:24,590 --> 00:36:28,630 +diagram of the visitor pattern. In today's diagram + +569 +00:36:28,630 --> 00:36:31,070 +of the visitor, there are two hierarchies, two + +570 +00:36:31,070 --> 00:36:33,790 +object structures. The main object structure that + +571 +00:36:33,790 --> 00:36:37,590 +does not change is the element and is divided into + +572 +00:36:37,590 --> 00:36:41,530 +concrete element A and concrete element B. Both + +573 +00:36:41,530 --> 00:36:45,990 +have a method accept that takes visitor. This + +574 +00:36:45,990 --> 00:36:53,300 +interface visitor has for each shape A and Bعمل + +575 +00:36:53,300 --> 00:36:57,900 +visit اللي هي اللي سميتها إيش process process + +576 +00:36:57,900 --> 00:37:01,200 +concrete element B process concrete element A و B + +577 +00:37:01,200 --> 00:37:07,040 +طبعا المفروض هنا إنه في سهم يوديني على مين على ال + +578 +00:37:07,040 --> 00:37:11,280 +A و B مش حاطه عشان مايعجدش الرسمة يعني هذا الرسمة + +579 +00:37:11,280 --> 00:37:16,080 +أوضح تمام هايه مش هذا بستخدم X و Y و هذا أصلا + +580 +00:37:16,080 --> 00:37:19,520 +مشاكل ال visitor إنه هاي ال coupling هذا تمام إنه + +581 +00:37:19,520 --> 00:37:23,660 +بعتمد على نوع ال concrete objectsOkay, so the + +582 +00:37:23,660 --> 00:37:26,720 +visitor's problem is here in these two cases Okay, + +583 +00:37:27,160 --> 00:37:30,060 +this is the visitor, the visitor has, as we said, + +584 +00:37:30,440 --> 00:37:32,520 +the visitor has visit methods for each type of + +585 +00:37:32,520 --> 00:37:34,760 +shapes And of course, whenever you want to add a + +586 +00:37:34,760 --> 00:37:37,860 +new operation, such as visitor to the area + +587 +00:37:37,860 --> 00:37:39,380 +account, visitor to the environment account, you + +588 +00:37:39,380 --> 00:37:43,660 +will have to add what? Concrete visitors Because + +589 +00:37:43,660 --> 00:37:46,960 +this represents the client, which is the main + +590 +00:37:46,960 --> 00:37:49,600 +method, which will actually create objects from + +591 +00:37:49,600 --> 00:37:52,920 +elementsAnd it will create an object from whom? + +592 +00:37:53,680 --> 00:37:56,940 +From visitor Okay? + +593 +00:38:03,220 --> 00:38:07,840 +Okay, this explains the drawing components that we + +594 +00:38:07,840 --> 00:38:11,200 +have explained Okay, + +595 +00:38:11,260 --> 00:38:14,180 +this just shows me the code of the shape that we + +596 +00:38:14,180 --> 00:38:17,600 +saw a while ago Now, of course, the code is with + +597 +00:38:17,600 --> 00:38:22,430 +me What is this interface?or before this one, + +598 +00:38:22,430 --> 00:38:24,110 +forget about this one, here this is from the + +599 +00:38:24,110 --> 00:38:27,910 +element, this is like the shape, which has an + +600 +00:38:27,910 --> 00:38:30,730 +accept in it, of course you don't always put an + +601 +00:38:30,730 --> 00:38:33,510 +accept, you put the methods that you know and + +602 +00:38:33,510 --> 00:38:36,670 +leave the door open for additions through what? + +603 +00:38:36,910 --> 00:38:38,810 +the accept, of course it doesn't show the second + +604 +00:38:38,810 --> 00:38:41,010 +method because it only shows you the visitor + +605 +00:38:41,010 --> 00:38:42,970 +pattern, you put the accept and it takes an + +606 +00:38:42,970 --> 00:38:45,490 +interface of the type visitor and this is the + +607 +00:38:45,490 --> 00:38:50,100 +interface of the visitorIt takes a visit to + +608 +00:38:50,100 --> 00:38:52,280 +concrete element A and a visit to concrete element + +609 +00:38:52,280 --> 00:39:00,440 +B. For example, this element A implements + +610 +00:39:00,440 --> 00:39:02,880 +element and concrete element B implements element + +611 +00:39:02,880 --> 00:39:05,640 +and both of them implemented the accept and took + +612 +00:39:05,640 --> 00:39:09,100 +the visitor. When the visitor came, he was asked + +613 +00:39:09,100 --> 00:39:11,040 +to take over the work. How? Visitor visited + +614 +00:39:11,040 --> 00:39:16,050 +concrete element A this.and here visitor + +615 +00:39:16,050 --> 00:39:20,270 +.visitConcreteElementB and it also gave it this, + +616 +00:39:20,890 --> 00:39:21,530 +okay? + +617 +00:39:25,310 --> 00:39:27,210 +Let's go back to the previous slide, this visitor, + +618 +00:39:27,270 --> 00:39:29,010 +we talked about the interface, this is + +619 +00:39:29,010 --> 00:39:32,870 +ConcreteVisitorA, one, for a specific process, for + +620 +00:39:32,870 --> 00:39:36,210 +example, like AreaVisitor, implements visitor, and + +621 +00:39:36,210 --> 00:39:40,930 +then it implements the visitConcreteElementA Of + +622 +00:39:40,930 --> 00:39:43,490 +course, the code is empty. Here, for example, we + +623 +00:39:43,490 --> 00:39:47,030 +made a circle area and here a rectangle area. And + +624 +00:39:47,030 --> 00:39:50,750 +this is visitor, another visitor. Now, in the end, + +625 +00:39:51,290 --> 00:39:53,130 +I created an object from shape. I want to add + +626 +00:39:53,130 --> 00:39:55,970 +something new to it. I remove an object from this + +627 +00:39:55,970 --> 00:39:59,350 +visitor. I go to the shape and say accept and send + +628 +00:39:59,350 --> 00:40:02,440 +it to the visitor. So what this gate does isIt's + +629 +00:40:02,440 --> 00:40:06,040 +the visitor. It's as if I assigned the new job to + +630 +00:40:06,040 --> 00:40:09,460 +an external visitor to do it. And I left the door + +631 +00:40:09,460 --> 00:40:13,520 +open for the visitor to pass through to the object + +632 +00:40:13,520 --> 00:40:17,200 +through this method accept. And accept is present + +633 +00:40:17,200 --> 00:40:19,820 +in the interface. Why? So that I can achieve the + +634 +00:40:19,820 --> 00:40:22,020 +concept of polymorphism. That I can look at shapes + +635 +00:40:22,020 --> 00:40:23,780 +regardless of what kind of shape they are, and + +636 +00:40:23,780 --> 00:40:23,780 +accept them. + +637 +00:40:28,460 --> 00:40:31,880 +The visitor pattern is a great way to provide a + +638 +00:40:31,880 --> 00:40:34,760 +flexible design for adding new visitors to extend + +639 +00:40:34,760 --> 00:40:39,360 +existing functionality without changing existing + +640 +00:40:39,360 --> 00:40:44,240 +code The visitor pattern comes with a drawback + +641 +00:40:48,620 --> 00:40:51,880 +If a new visitable object is added, if a new + +642 +00:40:51,880 --> 00:40:53,420 +visitable object is added, there is a difference + +643 +00:40:53,420 --> 00:40:57,080 +between visitor and visitable, visitable is who I + +644 +00:40:57,080 --> 00:40:59,820 +am visiting, it is like the same example you said, + +645 +00:40:59,920 --> 00:41:01,720 +I would like to add a new element + +646 +00:41:04,770 --> 00:41:10,190 +This means that if a new visitable object is added + +647 +00:41:10,190 --> 00:41:12,990 +to the framework structure, all the implemented + +648 +00:41:12,990 --> 00:41:15,990 +visitors need to be modified + +649 +00:41:27,580 --> 00:41:31,300 +The separation of visitors and visitable is only + +650 +00:41:31,300 --> 00:41:34,580 +in one sense. This separation between visitors and + +651 +00:41:34,580 --> 00:41:37,600 +visitable has a price, which is that visitors + +652 +00:41:37,600 --> 00:41:42,460 +depend on visitable. Visitors depend on visitable. + +653 +00:41:42,780 --> 00:41:47,120 +And the proof is these two words. Ok, you added a + +654 +00:41:47,120 --> 00:41:51,480 +new word, you must add a method. But visitable + +655 +00:41:51,480 --> 00:41:56,760 +does not depend on visitable.the visitable doesn't + +656 +00:41:56,760 --> 00:42:02,580 +depend on the visitor and this is the logic + +657 +00:42:02,580 --> 00:42:05,100 +because this is the complexity I have here I don't + +658 +00:42:05,100 --> 00:42:06,540 +want to complicate them so I don't want them to + +659 +00:42:06,540 --> 00:42:10,080 +depend on the visitor but the visitor has a small + +660 +00:42:10,080 --> 00:42:13,600 +hierarchy so + +661 +00:42:13,600 --> 00:42:16,940 +the modification on it remains simple okay guys? + +662 +00:42:17,880 --> 00:42:20,040 +is there any question about the visitor pattern? + +663 +00:42:21,300 --> 00:42:22,120 +may God bless you all + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/ctDyWjX-bfc_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/ctDyWjX-bfc_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..5c390dfb1a203061f5651d9e240100387ee7a3e4 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/ctDyWjX-bfc_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 2749, "start": 5.25, "end": 27.49, "text": "Okay guys, Assalamu Alaikum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walekum Assalam Walek", "tokens": [8297, 1074, 11, 6281, 23819, 84, 46289, 35518, 6281, 23819, 9707, 916, 449, 1018, 15142, 335, 9707, 916, 449, 1018, 15142, 335, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916, 449, 6281, 23819, 9707, 916], "avg_logprob": -0.1493055534362793, "compression_ratio": 14.854166666666666, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 5.25, "end": 5.53, "word": "Okay", "probability": 0.199951171875}, {"start": 5.53, "end": 5.77, "word": " guys,", "probability": 0.6474609375}, {"start": 5.85, "end": 6.15, "word": " Assalamu", "probability": 0.604736328125}, {"start": 6.15, "end": 6.39, "word": " Alaikum", "probability": 0.762451171875}, {"start": 6.39, "end": 7.15, "word": " Assalam", "probability": 0.60894775390625}, {"start": 7.15, "end": 7.43, "word": " Walekum", "probability": 0.56011962890625}, {"start": 7.43, "end": 7.81, "word": " Assalam", "probability": 0.5856119791666666}, {"start": 7.81, "end": 7.89, "word": " Walekum", "probability": 0.7287190755208334}, {"start": 7.89, "end": 8.11, "word": " Assalam", "probability": 0.6377360026041666}, {"start": 8.11, "end": 8.23, "word": " Walekum", "probability": 0.7527669270833334}, {"start": 8.23, "end": 8.23, "word": " Assalam", "probability": 0.607177734375}, {"start": 8.23, "end": 8.27, "word": " Walekum", "probability": 0.7770182291666666}, {"start": 8.27, "end": 8.29, "word": " Assalam", "probability": 0.7939453125}, {"start": 8.29, "end": 8.29, "word": " Walekum", "probability": 0.8295084635416666}, {"start": 8.29, "end": 9.53, "word": " Assalam", "probability": 0.8603515625}, {"start": 9.53, "end": 10.47, "word": " Walekum", "probability": 0.8570963541666666}, {"start": 10.47, "end": 10.71, "word": " Assalam", "probability": 0.89501953125}, {"start": 10.71, "end": 10.91, "word": " Walekum", "probability": 0.8736979166666666}, {"start": 10.91, "end": 11.23, "word": " Assalam", "probability": 0.91650390625}, {"start": 11.23, "end": 11.55, "word": " Walekum", "probability": 0.8834635416666666}, {"start": 11.55, "end": 11.55, "word": " Assalam", "probability": 0.92919921875}, {"start": 11.55, "end": 11.55, "word": " Walekum", "probability": 0.8893229166666666}, {"start": 11.55, "end": 11.55, "word": " Assalam", "probability": 0.937744140625}, {"start": 11.55, "end": 11.55, "word": " Walekum", "probability": 0.8924153645833334}, {"start": 11.55, "end": 11.55, "word": " Assalam", "probability": 0.943603515625}, {"start": 11.55, "end": 11.55, "word": " Walekum", "probability": 0.8953450520833334}, {"start": 11.55, "end": 11.55, "word": " Assalam", "probability": 0.947265625}, {"start": 11.55, "end": 11.55, "word": " Walekum", "probability": 0.8963216145833334}, {"start": 11.55, "end": 11.55, "word": " Assalam", "probability": 0.951904296875}, {"start": 11.55, "end": 11.55, "word": " Walekum", "probability": 0.9002278645833334}, {"start": 11.55, "end": 11.55, "word": " Assalam", "probability": 0.954833984375}, {"start": 11.55, "end": 11.57, "word": " Walekum", "probability": 0.90087890625}, {"start": 11.57, "end": 11.57, "word": " Assalam", "probability": 0.95703125}, {"start": 11.57, "end": 13.31, "word": " Walekum", "probability": 0.9031575520833334}, {"start": 13.31, "end": 14.09, "word": " Assalam", "probability": 0.95849609375}, {"start": 14.09, "end": 14.61, "word": " Walekum", "probability": 0.9054361979166666}, {"start": 14.61, "end": 14.61, "word": " Assalam", "probability": 0.95947265625}, {"start": 14.61, "end": 14.61, "word": " Walekum", "probability": 0.9103190104166666}, {"start": 14.61, "end": 14.61, "word": " Assalam", "probability": 0.961181640625}, {"start": 14.61, "end": 14.61, "word": " Walekum", "probability": 0.9129231770833334}, {"start": 14.61, "end": 14.61, "word": " Assalam", "probability": 0.962158203125}, {"start": 14.61, "end": 14.75, "word": " Walekum", "probability": 0.9156901041666666}, {"start": 14.75, "end": 14.75, "word": " Assalam", "probability": 0.96240234375}, {"start": 14.75, "end": 15.01, "word": " Walekum", "probability": 0.9187825520833334}, {"start": 15.01, "end": 15.01, "word": " Assalam", "probability": 0.963134765625}, {"start": 15.01, "end": 15.01, "word": " Walekum", "probability": 0.9226888020833334}, {"start": 15.01, "end": 15.01, "word": " Assalam", "probability": 0.9638671875}, {"start": 15.01, "end": 15.01, "word": " Walekum", "probability": 0.92333984375}, {"start": 15.01, "end": 15.01, "word": " Assalam", "probability": 0.96337890625}, {"start": 15.01, "end": 15.01, "word": " Walekum", "probability": 0.9265950520833334}, {"start": 15.01, "end": 15.01, "word": " Assalam", "probability": 0.964111328125}, {"start": 15.01, "end": 15.01, "word": " Walekum", "probability": 0.9298502604166666}, {"start": 15.01, "end": 15.01, "word": " Assalam", "probability": 0.96435546875}, {"start": 15.01, "end": 15.41, "word": " Walekum", "probability": 0.9337565104166666}, {"start": 15.41, "end": 15.45, "word": " Assalam", "probability": 0.96484375}, {"start": 15.45, "end": 16.21, "word": " Walekum", "probability": 0.9358723958333334}, {"start": 16.21, "end": 16.57, "word": " Assalam", "probability": 0.965087890625}, {"start": 16.57, "end": 16.89, "word": " Walekum", "probability": 0.9404296875}, {"start": 16.89, "end": 16.99, "word": " Assalam", "probability": 0.964599609375}, {"start": 16.99, "end": 17.41, "word": " Walekum", "probability": 0.9407552083333334}, {"start": 17.41, "end": 17.43, "word": " Assalam", "probability": 0.96435546875}, {"start": 17.43, "end": 17.47, "word": " Walekum", "probability": 0.9435221354166666}, {"start": 17.47, "end": 17.49, "word": " Assalam", "probability": 0.964111328125}, {"start": 17.49, "end": 17.55, "word": " Walekum", "probability": 0.9446614583333334}, {"start": 17.55, "end": 17.55, "word": " Assalam", "probability": 0.964111328125}, {"start": 17.55, "end": 17.55, "word": " Walekum", "probability": 0.94677734375}, {"start": 17.55, "end": 17.55, "word": " Assalam", "probability": 0.963623046875}, {"start": 17.55, "end": 17.55, "word": " Walekum", "probability": 0.9493815104166666}, {"start": 17.55, "end": 17.55, "word": " Assalam", "probability": 0.963134765625}, {"start": 17.55, "end": 17.55, "word": " Walekum", "probability": 0.95263671875}, {"start": 17.55, "end": 17.55, "word": " Assalam", "probability": 0.962646484375}, {"start": 17.55, "end": 17.55, "word": " Walekum", "probability": 0.9518229166666666}, {"start": 17.55, "end": 17.55, "word": " Assalam", "probability": 0.96240234375}, {"start": 17.55, "end": 17.55, "word": " Walekum", "probability": 0.9537760416666666}, {"start": 17.55, "end": 18.03, "word": " Assalam", "probability": 0.961181640625}, {"start": 18.03, "end": 19.09, "word": " Walekum", "probability": 0.953125}, {"start": 19.09, "end": 19.73, "word": " Assalam", "probability": 0.9609375}, {"start": 19.73, "end": 20.53, "word": " Walekum", "probability": 0.9552408854166666}, {"start": 20.53, "end": 20.87, "word": " Assalam", "probability": 0.96044921875}, {"start": 20.87, "end": 20.99, "word": " Walekum", "probability": 0.9571940104166666}, {"start": 20.99, "end": 21.51, "word": " Assalam", "probability": 0.960205078125}, {"start": 21.51, "end": 21.93, "word": " Walekum", "probability": 0.9576822916666666}, {"start": 21.93, "end": 22.67, "word": " Assalam", "probability": 0.9599609375}, {"start": 22.67, "end": 22.93, "word": " Walekum", "probability": 0.9593098958333334}, {"start": 22.93, "end": 23.69, "word": " Assalam", "probability": 0.958740234375}, {"start": 23.69, "end": 25.69, "word": " Walekum", "probability": 0.9576822916666666}, {"start": 25.69, "end": 26.39, "word": " Assalam", "probability": 0.958251953125}, {"start": 26.39, "end": 26.91, "word": " Walekum", "probability": 0.9544270833333334}, {"start": 26.91, "end": 27.49, "word": " Assalam", "probability": 0.95751953125}, {"start": 27.49, "end": 27.49, "word": " Walek", "probability": 0.934814453125}], "temperature": 1.0}, {"id": 2, "seek": 4570, "start": 27.52, "end": 45.7, "text": "For example, Singleton's goal was to create one object and use it everywhere Factory's goal was to combine the creation in one class or method and whatever difference the subclass creates in the end returns from the interface or superclass", "tokens": [12587, 1365, 11, 7474, 14806, 311, 3387, 390, 281, 1884, 472, 2657, 293, 764, 309, 5315, 36868, 311, 3387, 390, 281, 10432, 264, 8016, 294, 472, 1508, 420, 3170, 293, 2035, 2649, 264, 1422, 11665, 7829, 294, 264, 917, 11247, 490, 264, 9226, 420, 1687, 11665], "avg_logprob": -0.5531914741434949, "compression_ratio": 1.551948051948052, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 27.52, "end": 27.78, "word": "For", "probability": 0.384765625}, {"start": 27.78, "end": 28.06, "word": " example,", "probability": 0.83203125}, {"start": 28.2, "end": 28.96, "word": " Singleton's", "probability": 0.5125325520833334}, {"start": 28.96, "end": 29.18, "word": " goal", "probability": 0.50439453125}, {"start": 29.18, "end": 29.52, "word": " was", "probability": 0.875}, {"start": 29.52, "end": 30.34, "word": " to", "probability": 0.919921875}, {"start": 30.34, "end": 30.62, "word": " create", "probability": 0.64599609375}, {"start": 30.62, "end": 30.74, "word": " one", "probability": 0.50341796875}, {"start": 30.74, "end": 31.02, "word": " object", "probability": 0.92578125}, {"start": 31.02, "end": 31.34, "word": " and", "probability": 0.88232421875}, {"start": 31.34, "end": 31.64, "word": " use", "probability": 0.80810546875}, {"start": 31.64, "end": 32.44, "word": " it", "probability": 0.93505859375}, {"start": 32.44, "end": 32.94, "word": " everywhere", "probability": 0.52685546875}, {"start": 32.94, "end": 35.48, "word": " Factory's", "probability": 0.63427734375}, {"start": 35.48, "end": 35.74, "word": " goal", "probability": 0.94580078125}, {"start": 35.74, "end": 36.18, "word": " was", "probability": 0.91015625}, {"start": 36.18, "end": 36.34, "word": " to", "probability": 0.95849609375}, {"start": 36.34, "end": 36.66, "word": " combine", "probability": 0.2127685546875}, {"start": 36.66, "end": 36.82, "word": " the", "probability": 0.2315673828125}, {"start": 36.82, "end": 37.18, "word": " creation", "probability": 0.481689453125}, {"start": 37.18, "end": 37.48, "word": " in", "probability": 0.48876953125}, {"start": 37.48, "end": 37.56, "word": " one", "probability": 0.529296875}, {"start": 37.56, "end": 37.86, "word": " class", "probability": 0.78125}, {"start": 37.86, "end": 38.02, "word": " or", "probability": 0.728515625}, {"start": 38.02, "end": 38.42, "word": " method", "probability": 0.912109375}, {"start": 38.42, "end": 40.14, "word": " and", "probability": 0.49072265625}, {"start": 40.14, "end": 40.48, "word": " whatever", "probability": 0.27685546875}, {"start": 40.48, "end": 40.84, "word": " difference", "probability": 0.283447265625}, {"start": 40.84, "end": 41.62, "word": " the", "probability": 0.330322265625}, {"start": 41.62, "end": 42.48, "word": " subclass", "probability": 0.7734375}, {"start": 42.48, "end": 42.94, "word": " creates", "probability": 0.28759765625}, {"start": 42.94, "end": 43.1, "word": " in", "probability": 0.19677734375}, {"start": 43.1, "end": 43.18, "word": " the", "probability": 0.90234375}, {"start": 43.18, "end": 43.34, "word": " end", "probability": 0.916015625}, {"start": 43.34, "end": 43.72, "word": " returns", "probability": 0.2103271484375}, {"start": 43.72, "end": 43.88, "word": " from", "probability": 0.56298828125}, {"start": 43.88, "end": 44.14, "word": " the", "probability": 0.75341796875}, {"start": 44.14, "end": 44.76, "word": " interface", "probability": 0.87548828125}, {"start": 44.76, "end": 44.96, "word": " or", "probability": 0.59423828125}, {"start": 44.96, "end": 45.7, "word": " superclass", "probability": 0.73876953125}], "temperature": 1.0}, {"id": 3, "seek": 7419, "start": 46.51, "end": 74.19, "text": "the factory method we use it when the class does not know or has a common code between subclasses but they are different in the object that is being created so instead of having to put all the code in the subclasses we put the code in the superclass and we entrust the subclass through the factory method to create the different object what else is there? the builder for example has a specific function", "tokens": [3322, 9265, 3170, 321, 764, 309, 562, 264, 1508, 775, 406, 458, 420, 575, 257, 598, 2174, 266, 3089, 1296, 1422, 11665, 279, 457, 436, 366, 819, 294, 264, 2657, 300, 307, 885, 2942, 370, 2602, 295, 1419, 281, 829, 439, 264, 3089, 294, 264, 1422, 11665, 279, 321, 829, 264, 3089, 294, 264, 1687, 11665, 293, 321, 8041, 381, 264, 1422, 11665, 807, 264, 9265, 3170, 281, 1884, 264, 819, 2657, 437, 1646, 307, 456, 30, 264, 27377, 337, 1365, 575, 257, 2685, 2445], "avg_logprob": -0.43931687294050703, "compression_ratio": 1.8744186046511628, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 46.51, "end": 46.75, "word": "the", "probability": 0.16748046875}, {"start": 46.75, "end": 47.07, "word": " factory", "probability": 0.64404296875}, {"start": 47.07, "end": 47.57, "word": " method", "probability": 0.93896484375}, {"start": 47.57, "end": 48.37, "word": " we", "probability": 0.416015625}, {"start": 48.37, "end": 48.83, "word": " use", "probability": 0.86962890625}, {"start": 48.83, "end": 49.05, "word": " it", "probability": 0.54443359375}, {"start": 49.05, "end": 49.15, "word": " when", "probability": 0.8037109375}, {"start": 49.15, "end": 50.79, "word": " the", "probability": 0.471435546875}, {"start": 50.79, "end": 51.29, "word": " class", "probability": 0.90966796875}, {"start": 51.29, "end": 52.29, "word": " does", "probability": 0.158935546875}, {"start": 52.29, "end": 52.29, "word": " not", "probability": 0.84033203125}, {"start": 52.29, "end": 52.67, "word": " know", "probability": 0.6923828125}, {"start": 52.67, "end": 53.29, "word": " or", "probability": 0.46044921875}, {"start": 53.29, "end": 53.69, "word": " has", "probability": 0.343505859375}, {"start": 53.69, "end": 53.99, "word": " a", "probability": 0.84423828125}, {"start": 53.99, "end": 54.71, "word": " common", "probability": 0.6454671223958334}, {"start": 54.71, "end": 54.71, "word": " code", "probability": 0.85986328125}, {"start": 54.71, "end": 55.03, "word": " between", "probability": 0.71728515625}, {"start": 55.03, "end": 55.75, "word": " subclasses", "probability": 0.74462890625}, {"start": 55.75, "end": 55.89, "word": " but", "probability": 0.70751953125}, {"start": 55.89, "end": 56.03, "word": " they", "probability": 0.4052734375}, {"start": 56.03, "end": 56.07, "word": " are", "probability": 0.31298828125}, {"start": 56.07, "end": 56.39, "word": " different", "probability": 0.73779296875}, {"start": 56.39, "end": 57.19, "word": " in", "probability": 0.68994140625}, {"start": 57.19, "end": 57.29, "word": " the", "probability": 0.814453125}, {"start": 57.29, "end": 57.59, "word": " object", "probability": 0.76318359375}, {"start": 57.59, "end": 57.71, "word": " that", "probability": 0.366455078125}, {"start": 57.71, "end": 57.95, "word": " is", "probability": 0.322265625}, {"start": 57.95, "end": 58.01, "word": " being", "probability": 0.509765625}, {"start": 58.01, "end": 58.23, "word": " created", "probability": 0.41064453125}, {"start": 58.23, "end": 59.29, "word": " so", "probability": 0.48193359375}, {"start": 59.29, "end": 59.51, "word": " instead", "probability": 0.6767578125}, {"start": 59.51, "end": 59.65, "word": " of", "probability": 0.95361328125}, {"start": 59.65, "end": 60.25, "word": " having", "probability": 0.62353515625}, {"start": 60.25, "end": 60.29, "word": " to", "probability": 0.9609375}, {"start": 60.29, "end": 60.55, "word": " put", "probability": 0.71435546875}, {"start": 60.55, "end": 60.71, "word": " all", "probability": 0.74072265625}, {"start": 60.71, "end": 60.73, "word": " the", "probability": 0.80517578125}, {"start": 60.73, "end": 60.95, "word": " code", "probability": 0.916015625}, {"start": 60.95, "end": 61.31, "word": " in", "probability": 0.8955078125}, {"start": 61.31, "end": 61.41, "word": " the", "probability": 0.5400390625}, {"start": 61.41, "end": 62.51, "word": " subclasses", "probability": 0.8347981770833334}, {"start": 62.51, "end": 62.65, "word": " we", "probability": 0.73486328125}, {"start": 62.65, "end": 62.87, "word": " put", "probability": 0.8212890625}, {"start": 62.87, "end": 63.01, "word": " the", "probability": 0.68017578125}, {"start": 63.01, "end": 63.13, "word": " code", "probability": 0.92822265625}, {"start": 63.13, "end": 63.25, "word": " in", "probability": 0.93701171875}, {"start": 63.25, "end": 63.37, "word": " the", "probability": 0.83251953125}, {"start": 63.37, "end": 63.93, "word": " superclass", "probability": 0.8857421875}, {"start": 63.93, "end": 64.11, "word": " and", "probability": 0.85009765625}, {"start": 64.11, "end": 64.19, "word": " we", "probability": 0.365478515625}, {"start": 64.19, "end": 64.61, "word": " entrust", "probability": 0.5250091552734375}, {"start": 64.61, "end": 65.43, "word": " the", "probability": 0.82080078125}, {"start": 65.43, "end": 65.95, "word": " subclass", "probability": 0.950439453125}, {"start": 65.95, "end": 66.23, "word": " through", "probability": 0.65185546875}, {"start": 66.23, "end": 66.49, "word": " the", "probability": 0.8876953125}, {"start": 66.49, "end": 66.79, "word": " factory", "probability": 0.82763671875}, {"start": 66.79, "end": 67.13, "word": " method", "probability": 0.95458984375}, {"start": 67.13, "end": 67.31, "word": " to", "probability": 0.87158203125}, {"start": 67.31, "end": 67.61, "word": " create", "probability": 0.849609375}, {"start": 67.61, "end": 67.75, "word": " the", "probability": 0.72900390625}, {"start": 67.75, "end": 67.77, "word": " different", "probability": 0.79638671875}, {"start": 67.77, "end": 69.17, "word": " object", "probability": 0.82958984375}, {"start": 69.17, "end": 70.95, "word": " what", "probability": 0.8369140625}, {"start": 70.95, "end": 71.09, "word": " else", "probability": 0.76123046875}, {"start": 71.09, "end": 71.09, "word": " is", "probability": 0.52294921875}, {"start": 71.09, "end": 71.37, "word": " there?", "probability": 0.82763671875}, {"start": 71.93, "end": 72.47, "word": " the", "probability": 0.2427978515625}, {"start": 72.47, "end": 72.77, "word": " builder", "probability": 0.67919921875}, {"start": 72.77, "end": 73.05, "word": " for", "probability": 0.39306640625}, {"start": 73.05, "end": 73.23, "word": " example", "probability": 0.94091796875}, {"start": 73.23, "end": 73.47, "word": " has", "probability": 0.74462890625}, {"start": 73.47, "end": 73.55, "word": " a", "probability": 0.89208984375}, {"start": 73.55, "end": 73.55, "word": " specific", "probability": 0.485595703125}, {"start": 73.55, "end": 74.19, "word": " function", "probability": 0.57373046875}], "temperature": 1.0}, {"id": 4, "seek": 8856, "start": 75.06, "end": 88.56, "text": " When I create an object through the constructor, the constructor takes a lot of parameters, so I can create the object step by step through the builder pattern.", "tokens": [1133, 286, 1884, 364, 2657, 807, 264, 47479, 11, 264, 47479, 2516, 257, 688, 295, 9834, 11, 370, 286, 393, 1884, 264, 2657, 1823, 538, 1823, 807, 264, 27377, 5102, 13], "avg_logprob": -0.709960924461484, "compression_ratio": 1.4770642201834863, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 75.06, "end": 75.48, "word": " When", "probability": 0.1107177734375}, {"start": 75.48, "end": 76.02, "word": " I", "probability": 0.6357421875}, {"start": 76.02, "end": 76.72, "word": " create", "probability": 0.2037353515625}, {"start": 76.72, "end": 76.88, "word": " an", "probability": 0.2493896484375}, {"start": 76.88, "end": 77.12, "word": " object", "probability": 0.96875}, {"start": 77.12, "end": 77.46, "word": " through", "probability": 0.2919921875}, {"start": 77.46, "end": 77.66, "word": " the", "probability": 0.2484130859375}, {"start": 77.66, "end": 78.12, "word": " constructor,", "probability": 0.66162109375}, {"start": 78.68, "end": 78.88, "word": " the", "probability": 0.0806884765625}, {"start": 78.88, "end": 79.42, "word": " constructor", "probability": 0.86474609375}, {"start": 79.42, "end": 80.12, "word": " takes", "probability": 0.446533203125}, {"start": 80.12, "end": 80.26, "word": " a", "probability": 0.413818359375}, {"start": 80.26, "end": 80.26, "word": " lot", "probability": 0.943359375}, {"start": 80.26, "end": 80.32, "word": " of", "probability": 0.96337890625}, {"start": 80.32, "end": 80.76, "word": " parameters,", "probability": 0.95458984375}, {"start": 81.96, "end": 82.12, "word": " so", "probability": 0.401611328125}, {"start": 82.12, "end": 82.66, "word": " I", "probability": 0.39013671875}, {"start": 82.66, "end": 83.26, "word": " can", "probability": 0.379150390625}, {"start": 83.26, "end": 85.16, "word": " create", "probability": 0.54833984375}, {"start": 85.16, "end": 85.3, "word": " the", "probability": 0.3076171875}, {"start": 85.3, "end": 85.52, "word": " object", "probability": 0.822265625}, {"start": 85.52, "end": 85.8, "word": " step", "probability": 0.796875}, {"start": 85.8, "end": 86.0, "word": " by", "probability": 0.84521484375}, {"start": 86.0, "end": 86.38, "word": " step", "probability": 0.921875}, {"start": 86.38, "end": 87.04, "word": " through", "probability": 0.5283203125}, {"start": 87.04, "end": 87.26, "word": " the", "probability": 0.461181640625}, {"start": 87.26, "end": 87.56, "word": " builder", "probability": 0.87646484375}, {"start": 87.56, "end": 88.56, "word": " pattern.", "probability": 0.7470703125}], "temperature": 1.0}, {"id": 5, "seek": 10985, "start": 90.35, "end": 109.85, "text": "This is a summary of the most important creation design patterns that we went through. The last thing is dependency injection, which means that any dependency on any object is better to go through from the outside. Of course, when you go through from the outside, creating the object will become more difficult, especially if I have a lot of dependencies, right or not?", "tokens": [5723, 307, 257, 12691, 295, 264, 881, 1021, 8016, 1715, 8294, 300, 321, 1437, 807, 13, 440, 1036, 551, 307, 33621, 22873, 11, 597, 1355, 300, 604, 33621, 322, 604, 2657, 307, 1101, 281, 352, 807, 490, 264, 2380, 13, 2720, 1164, 11, 562, 291, 352, 807, 490, 264, 2380, 11, 4084, 264, 2657, 486, 1813, 544, 2252, 11, 2318, 498, 286, 362, 257, 688, 295, 36606, 11, 558, 420, 406, 30], "avg_logprob": -0.5329623091710757, "compression_ratio": 1.6926605504587156, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 90.35, "end": 90.75, "word": "This", "probability": 0.350830078125}, {"start": 90.75, "end": 90.81, "word": " is", "probability": 0.728515625}, {"start": 90.81, "end": 90.85, "word": " a", "probability": 0.2327880859375}, {"start": 90.85, "end": 91.19, "word": " summary", "probability": 0.39990234375}, {"start": 91.19, "end": 91.93, "word": " of", "probability": 0.81884765625}, {"start": 91.93, "end": 92.79, "word": " the", "probability": 0.70166015625}, {"start": 92.79, "end": 92.87, "word": " most", "probability": 0.509765625}, {"start": 92.87, "end": 93.05, "word": " important", "probability": 0.7841796875}, {"start": 93.05, "end": 93.53, "word": " creation", "probability": 0.1429443359375}, {"start": 93.53, "end": 94.13, "word": " design", "probability": 0.490966796875}, {"start": 94.13, "end": 94.47, "word": " patterns", "probability": 0.79443359375}, {"start": 94.47, "end": 94.57, "word": " that", "probability": 0.416259765625}, {"start": 94.57, "end": 94.67, "word": " we", "probability": 0.6015625}, {"start": 94.67, "end": 94.87, "word": " went", "probability": 0.09686279296875}, {"start": 94.87, "end": 95.11, "word": " through.", "probability": 0.81787109375}, {"start": 95.45, "end": 95.75, "word": " The", "probability": 0.57958984375}, {"start": 95.75, "end": 95.93, "word": " last", "probability": 0.822265625}, {"start": 95.93, "end": 96.15, "word": " thing", "probability": 0.59228515625}, {"start": 96.15, "end": 96.45, "word": " is", "probability": 0.7197265625}, {"start": 96.45, "end": 97.01, "word": " dependency", "probability": 0.72119140625}, {"start": 97.01, "end": 97.57, "word": " injection,", "probability": 0.962890625}, {"start": 98.23, "end": 98.29, "word": " which", "probability": 0.52880859375}, {"start": 98.29, "end": 98.53, "word": " means", "probability": 0.55322265625}, {"start": 98.53, "end": 98.89, "word": " that", "probability": 0.35595703125}, {"start": 98.89, "end": 99.71, "word": " any", "probability": 0.30322265625}, {"start": 99.71, "end": 100.23, "word": " dependency", "probability": 0.8427734375}, {"start": 100.23, "end": 100.37, "word": " on", "probability": 0.62158203125}, {"start": 100.37, "end": 100.47, "word": " any", "probability": 0.74853515625}, {"start": 100.47, "end": 100.75, "word": " object", "probability": 0.876953125}, {"start": 100.75, "end": 100.91, "word": " is", "probability": 0.5283203125}, {"start": 100.91, "end": 101.17, "word": " better", "probability": 0.86279296875}, {"start": 101.17, "end": 101.37, "word": " to", "probability": 0.646484375}, {"start": 101.37, "end": 101.57, "word": " go", "probability": 0.1673583984375}, {"start": 101.57, "end": 101.79, "word": " through", "probability": 0.7861328125}, {"start": 101.79, "end": 102.89, "word": " from", "probability": 0.465087890625}, {"start": 102.89, "end": 103.17, "word": " the", "probability": 0.474609375}, {"start": 103.17, "end": 103.51, "word": " outside.", "probability": 0.81884765625}, {"start": 104.15, "end": 104.27, "word": " Of", "probability": 0.428466796875}, {"start": 104.27, "end": 104.39, "word": " course,", "probability": 0.95458984375}, {"start": 104.55, "end": 104.63, "word": " when", "probability": 0.7841796875}, {"start": 104.63, "end": 104.77, "word": " you", "probability": 0.8427734375}, {"start": 104.77, "end": 104.91, "word": " go", "probability": 0.77734375}, {"start": 104.91, "end": 105.03, "word": " through", "probability": 0.7900390625}, {"start": 105.03, "end": 105.15, "word": " from", "probability": 0.57373046875}, {"start": 105.15, "end": 105.27, "word": " the", "probability": 0.70947265625}, {"start": 105.27, "end": 105.63, "word": " outside,", "probability": 0.890625}, {"start": 105.81, "end": 106.03, "word": " creating", "probability": 0.260009765625}, {"start": 106.03, "end": 106.19, "word": " the", "probability": 0.393798828125}, {"start": 106.19, "end": 106.39, "word": " object", "probability": 0.86328125}, {"start": 106.39, "end": 106.59, "word": " will", "probability": 0.53857421875}, {"start": 106.59, "end": 106.77, "word": " become", "probability": 0.52099609375}, {"start": 106.77, "end": 106.91, "word": " more", "probability": 0.5263671875}, {"start": 106.91, "end": 107.13, "word": " difficult,", "probability": 0.8994140625}, {"start": 107.53, "end": 107.75, "word": " especially", "probability": 0.79248046875}, {"start": 107.75, "end": 107.93, "word": " if", "probability": 0.85400390625}, {"start": 107.93, "end": 108.05, "word": " I", "probability": 0.50048828125}, {"start": 108.05, "end": 108.25, "word": " have", "probability": 0.93310546875}, {"start": 108.25, "end": 108.27, "word": " a", "probability": 0.52587890625}, {"start": 108.27, "end": 108.27, "word": " lot", "probability": 0.9462890625}, {"start": 108.27, "end": 108.29, "word": " of", "probability": 0.966796875}, {"start": 108.29, "end": 108.75, "word": " dependencies,", "probability": 0.892578125}, {"start": 109.37, "end": 109.61, "word": " right", "probability": 0.78955078125}, {"start": 109.61, "end": 109.79, "word": " or", "probability": 0.6640625}, {"start": 109.79, "end": 109.85, "word": " not?", "probability": 0.583984375}], "temperature": 1.0}, {"id": 6, "seek": 12733, "start": 110.65, "end": 127.33, "text": "In this case, we can use dependency injection framework like Juice for example to facilitate the creation of objects if I use dependency injection. So all the design patterns that we talked about previously are related to the creation of objects.", "tokens": [4575, 341, 1389, 11, 321, 393, 764, 33621, 22873, 8388, 411, 47776, 337, 1365, 281, 20207, 264, 8016, 295, 6565, 498, 286, 764, 33621, 22873, 13, 407, 439, 264, 1715, 8294, 300, 321, 2825, 466, 8046, 366, 4077, 281, 264, 8016, 295, 6565, 13], "avg_logprob": -0.5236111217074924, "compression_ratio": 1.6291390728476822, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 110.65, "end": 111.09, "word": "In", "probability": 0.55615234375}, {"start": 111.09, "end": 111.25, "word": " this", "probability": 0.56787109375}, {"start": 111.25, "end": 111.43, "word": " case,", "probability": 0.8623046875}, {"start": 111.59, "end": 111.59, "word": " we", "probability": 0.53955078125}, {"start": 111.59, "end": 111.83, "word": " can", "probability": 0.61865234375}, {"start": 111.83, "end": 112.71, "word": " use", "probability": 0.81787109375}, {"start": 112.71, "end": 114.23, "word": " dependency", "probability": 0.71728515625}, {"start": 114.23, "end": 114.65, "word": " injection", "probability": 0.9443359375}, {"start": 114.65, "end": 115.39, "word": " framework", "probability": 0.67236328125}, {"start": 115.39, "end": 116.13, "word": " like", "probability": 0.443115234375}, {"start": 116.13, "end": 116.49, "word": " Juice", "probability": 0.327392578125}, {"start": 116.49, "end": 116.71, "word": " for", "probability": 0.209716796875}, {"start": 116.71, "end": 116.89, "word": " example", "probability": 0.69677734375}, {"start": 116.89, "end": 117.15, "word": " to", "probability": 0.5556640625}, {"start": 117.15, "end": 117.59, "word": " facilitate", "probability": 0.5302734375}, {"start": 117.59, "end": 117.71, "word": " the", "probability": 0.498291015625}, {"start": 117.71, "end": 117.99, "word": " creation", "probability": 0.4599609375}, {"start": 117.99, "end": 118.13, "word": " of", "probability": 0.9697265625}, {"start": 118.13, "end": 118.59, "word": " objects", "probability": 0.92333984375}, {"start": 118.59, "end": 118.87, "word": " if", "probability": 0.50048828125}, {"start": 118.87, "end": 119.47, "word": " I", "probability": 0.378173828125}, {"start": 119.47, "end": 119.93, "word": " use", "probability": 0.54150390625}, {"start": 119.93, "end": 120.91, "word": " dependency", "probability": 0.91552734375}, {"start": 120.91, "end": 122.11, "word": " injection.", "probability": 0.92578125}, {"start": 122.87, "end": 123.11, "word": " So", "probability": 0.31103515625}, {"start": 123.11, "end": 123.33, "word": " all", "probability": 0.64453125}, {"start": 123.33, "end": 123.43, "word": " the", "probability": 0.48828125}, {"start": 123.43, "end": 123.71, "word": " design", "probability": 0.7998046875}, {"start": 123.71, "end": 124.05, "word": " patterns", "probability": 0.8623046875}, {"start": 124.05, "end": 124.13, "word": " that", "probability": 0.400390625}, {"start": 124.13, "end": 124.29, "word": " we", "probability": 0.7060546875}, {"start": 124.29, "end": 124.43, "word": " talked", "probability": 0.3974609375}, {"start": 124.43, "end": 124.69, "word": " about", "probability": 0.86474609375}, {"start": 124.69, "end": 125.11, "word": " previously", "probability": 0.2066650390625}, {"start": 125.11, "end": 125.37, "word": " are", "probability": 0.27880859375}, {"start": 125.37, "end": 125.63, "word": " related", "probability": 0.84716796875}, {"start": 125.63, "end": 126.01, "word": " to", "probability": 0.9287109375}, {"start": 126.01, "end": 126.03, "word": " the", "probability": 0.3203125}, {"start": 126.03, "end": 126.45, "word": " creation", "probability": 0.8369140625}, {"start": 126.45, "end": 126.77, "word": " of", "probability": 0.95703125}, {"start": 126.77, "end": 127.33, "word": " objects.", "probability": 0.91796875}], "temperature": 1.0}, {"id": 7, "seek": 13911, "start": 128.01, "end": 139.11, "text": "The second part, Behavioral Design Patterns, has to do with communication between objects, how objects interact with each other, how objects create methods in other objects.", "tokens": [2278, 1150, 644, 11, 45807, 304, 12748, 34367, 3695, 11, 575, 281, 360, 365, 6101, 1296, 6565, 11, 577, 6565, 4648, 365, 1184, 661, 11, 577, 6565, 1884, 7150, 294, 661, 6565, 13], "avg_logprob": -0.49172796396648183, "compression_ratio": 1.453781512605042, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 128.01, "end": 128.45, "word": "The", "probability": 0.5439453125}, {"start": 128.45, "end": 128.47, "word": " second", "probability": 0.70654296875}, {"start": 128.47, "end": 129.19, "word": " part,", "probability": 0.2408447265625}, {"start": 129.51, "end": 130.11, "word": " Behavioral", "probability": 0.5953369140625}, {"start": 130.11, "end": 130.37, "word": " Design", "probability": 0.89013671875}, {"start": 130.37, "end": 130.91, "word": " Patterns,", "probability": 0.956787109375}, {"start": 131.01, "end": 131.11, "word": " has", "probability": 0.3671875}, {"start": 131.11, "end": 131.29, "word": " to", "probability": 0.7626953125}, {"start": 131.29, "end": 131.39, "word": " do", "probability": 0.970703125}, {"start": 131.39, "end": 131.61, "word": " with", "probability": 0.896484375}, {"start": 131.61, "end": 132.49, "word": " communication", "probability": 0.515625}, {"start": 132.49, "end": 132.83, "word": " between", "probability": 0.8056640625}, {"start": 132.83, "end": 133.37, "word": " objects,", "probability": 0.90283203125}, {"start": 134.05, "end": 134.29, "word": " how", "probability": 0.288818359375}, {"start": 134.29, "end": 134.87, "word": " objects", "probability": 0.9072265625}, {"start": 134.87, "end": 135.39, "word": " interact", "probability": 0.68896484375}, {"start": 135.39, "end": 135.59, "word": " with", "probability": 0.791015625}, {"start": 135.59, "end": 135.89, "word": " each", "probability": 0.896484375}, {"start": 135.89, "end": 135.91, "word": " other,", "probability": 0.8876953125}, {"start": 136.11, "end": 136.19, "word": " how", "probability": 0.67578125}, {"start": 136.19, "end": 136.69, "word": " objects", "probability": 0.83837890625}, {"start": 136.69, "end": 137.17, "word": " create", "probability": 0.1898193359375}, {"start": 137.17, "end": 137.53, "word": " methods", "probability": 0.78955078125}, {"start": 137.53, "end": 137.67, "word": " in", "probability": 0.69970703125}, {"start": 137.67, "end": 137.75, "word": " other", "probability": 0.560546875}, {"start": 137.75, "end": 139.11, "word": " objects.", "probability": 0.9765625}], "temperature": 1.0}, {"id": 8, "seek": 17216, "start": 144.86, "end": 172.16, "text": " Behavioral Design Patterns are used more than Creational Design Patterns and they are more effective in reducing coupling of objects. In general, all design patterns aim to reduce coupling. Behavioral Design Patterns aim to improve communication between objects and classes. You know that I make any application, I make classes, and classes have methods.", "tokens": [45807, 304, 12748, 34367, 3695, 366, 1143, 544, 813, 9549, 1478, 12748, 34367, 3695, 293, 436, 366, 544, 4942, 294, 12245, 37447, 295, 6565, 13, 682, 2674, 11, 439, 1715, 8294, 5939, 281, 5407, 37447, 13, 45807, 304, 12748, 34367, 3695, 5939, 281, 3470, 6101, 1296, 6565, 293, 5359, 13, 509, 458, 300, 286, 652, 604, 3861, 11, 286, 652, 5359, 11, 293, 5359, 362, 7150, 13], "avg_logprob": -0.5183823608300265, "compression_ratio": 1.8020304568527918, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 144.86, "end": 145.62, "word": " Behavioral", "probability": 0.714599609375}, {"start": 145.62, "end": 145.9, "word": " Design", "probability": 0.49609375}, {"start": 145.9, "end": 146.36, "word": " Patterns", "probability": 0.954833984375}, {"start": 146.36, "end": 146.52, "word": " are", "probability": 0.4609375}, {"start": 146.52, "end": 147.42, "word": " used", "probability": 0.274658203125}, {"start": 147.42, "end": 147.94, "word": " more", "probability": 0.802734375}, {"start": 147.94, "end": 148.18, "word": " than", "probability": 0.7978515625}, {"start": 148.18, "end": 148.76, "word": " Creational", "probability": 0.58123779296875}, {"start": 148.76, "end": 149.12, "word": " Design", "probability": 0.96484375}, {"start": 149.12, "end": 149.7, "word": " Patterns", "probability": 0.972412109375}, {"start": 149.7, "end": 150.3, "word": " and", "probability": 0.277587890625}, {"start": 150.3, "end": 150.58, "word": " they", "probability": 0.435302734375}, {"start": 150.58, "end": 150.64, "word": " are", "probability": 0.40380859375}, {"start": 150.64, "end": 150.68, "word": " more", "probability": 0.5869140625}, {"start": 150.68, "end": 151.06, "word": " effective", "probability": 0.2012939453125}, {"start": 151.06, "end": 151.8, "word": " in", "probability": 0.79296875}, {"start": 151.8, "end": 152.2, "word": " reducing", "probability": 0.417724609375}, {"start": 152.2, "end": 152.68, "word": " coupling", "probability": 0.603515625}, {"start": 152.68, "end": 152.94, "word": " of", "probability": 0.355712890625}, {"start": 152.94, "end": 153.42, "word": " objects.", "probability": 0.91845703125}, {"start": 153.84, "end": 154.6, "word": " In", "probability": 0.27734375}, {"start": 154.6, "end": 155.18, "word": " general,", "probability": 0.8046875}, {"start": 155.46, "end": 155.6, "word": " all", "probability": 0.462646484375}, {"start": 155.6, "end": 155.98, "word": " design", "probability": 0.6162109375}, {"start": 155.98, "end": 156.42, "word": " patterns", "probability": 0.87646484375}, {"start": 156.42, "end": 156.7, "word": " aim", "probability": 0.483642578125}, {"start": 156.7, "end": 157.78, "word": " to", "probability": 0.74658203125}, {"start": 157.78, "end": 158.24, "word": " reduce", "probability": 0.84375}, {"start": 158.24, "end": 159.08, "word": " coupling.", "probability": 0.92431640625}, {"start": 161.02, "end": 161.78, "word": " Behavioral", "probability": 0.892333984375}, {"start": 161.78, "end": 162.02, "word": " Design", "probability": 0.93896484375}, {"start": 162.02, "end": 162.54, "word": " Patterns", "probability": 0.978515625}, {"start": 162.54, "end": 162.8, "word": " aim", "probability": 0.71826171875}, {"start": 162.8, "end": 163.16, "word": " to", "probability": 0.89404296875}, {"start": 163.16, "end": 163.58, "word": " improve", "probability": 0.6435546875}, {"start": 163.58, "end": 164.58, "word": " communication", "probability": 0.50048828125}, {"start": 164.58, "end": 165.2, "word": " between", "probability": 0.5625}, {"start": 165.2, "end": 165.68, "word": " objects", "probability": 0.92822265625}, {"start": 165.68, "end": 165.9, "word": " and", "probability": 0.2130126953125}, {"start": 165.9, "end": 166.3, "word": " classes.", "probability": 0.9140625}, {"start": 167.22, "end": 167.98, "word": " You", "probability": 0.34716796875}, {"start": 167.98, "end": 168.56, "word": " know", "probability": 0.576171875}, {"start": 168.56, "end": 168.76, "word": " that", "probability": 0.55029296875}, {"start": 168.76, "end": 168.9, "word": " I", "probability": 0.6708984375}, {"start": 168.9, "end": 169.28, "word": " make", "probability": 0.1243896484375}, {"start": 169.28, "end": 169.52, "word": " any", "probability": 0.62353515625}, {"start": 169.52, "end": 169.92, "word": " application,", "probability": 0.58740234375}, {"start": 170.04, "end": 170.12, "word": " I", "probability": 0.7099609375}, {"start": 170.12, "end": 170.48, "word": " make", "probability": 0.50146484375}, {"start": 170.48, "end": 171.0, "word": " classes,", "probability": 0.9033203125}, {"start": 171.1, "end": 171.14, "word": " and", "probability": 0.7275390625}, {"start": 171.14, "end": 171.5, "word": " classes", "probability": 0.489013671875}, {"start": 171.5, "end": 171.72, "word": " have", "probability": 0.83544921875}, {"start": 171.72, "end": 172.16, "word": " methods.", "probability": 0.8798828125}], "temperature": 1.0}, {"id": 9, "seek": 19931, "start": 172.71, "end": 199.31, "text": " and usually objects from these classes use each other Of course from one object to another class, I will have to use a method in another class So there is a relationship or communication between objects If you don't build the communication correctly, your program will be complicated as we will see in some examples and we will use the observer to improve the communication between parts of the objects Behavioral Design Patterns", "tokens": [293, 2673, 6565, 490, 613, 5359, 764, 1184, 661, 2720, 1164, 490, 472, 2657, 281, 1071, 1508, 11, 286, 486, 362, 281, 764, 257, 3170, 294, 1071, 1508, 407, 456, 307, 257, 2480, 420, 6101, 1296, 6565, 759, 291, 500, 380, 1322, 264, 6101, 8944, 11, 428, 1461, 486, 312, 6179, 382, 321, 486, 536, 294, 512, 5110, 293, 321, 486, 764, 264, 27878, 281, 3470, 264, 6101, 1296, 3166, 295, 264, 6565, 45807, 304, 12748, 34367, 3695], "avg_logprob": -0.4501582286025904, "compression_ratio": 1.7842323651452283, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 172.71, "end": 172.97, "word": " and", "probability": 0.455322265625}, {"start": 172.97, "end": 173.43, "word": " usually", "probability": 0.6875}, {"start": 173.43, "end": 174.47, "word": " objects", "probability": 0.322509765625}, {"start": 174.47, "end": 174.97, "word": " from", "probability": 0.403564453125}, {"start": 174.97, "end": 175.11, "word": " these", "probability": 0.603515625}, {"start": 175.11, "end": 175.53, "word": " classes", "probability": 0.87890625}, {"start": 175.53, "end": 176.05, "word": " use", "probability": 0.72216796875}, {"start": 176.05, "end": 176.43, "word": " each", "probability": 0.88818359375}, {"start": 176.43, "end": 176.43, "word": " other", "probability": 0.82373046875}, {"start": 176.43, "end": 176.89, "word": " Of", "probability": 0.0814208984375}, {"start": 176.89, "end": 177.11, "word": " course", "probability": 0.95166015625}, {"start": 177.11, "end": 177.45, "word": " from", "probability": 0.2352294921875}, {"start": 177.45, "end": 177.69, "word": " one", "probability": 0.430419921875}, {"start": 177.69, "end": 178.01, "word": " object", "probability": 0.89599609375}, {"start": 178.01, "end": 178.17, "word": " to", "probability": 0.908203125}, {"start": 178.17, "end": 178.25, "word": " another", "probability": 0.85009765625}, {"start": 178.25, "end": 178.45, "word": " class,", "probability": 0.477294921875}, {"start": 178.77, "end": 178.91, "word": " I", "probability": 0.87353515625}, {"start": 178.91, "end": 179.01, "word": " will", "probability": 0.422119140625}, {"start": 179.01, "end": 179.25, "word": " have", "probability": 0.3916015625}, {"start": 179.25, "end": 179.61, "word": " to", "probability": 0.96435546875}, {"start": 179.61, "end": 180.03, "word": " use", "probability": 0.8623046875}, {"start": 180.03, "end": 180.21, "word": " a", "probability": 0.50439453125}, {"start": 180.21, "end": 180.49, "word": " method", "probability": 0.8837890625}, {"start": 180.49, "end": 181.43, "word": " in", "probability": 0.60107421875}, {"start": 181.43, "end": 181.93, "word": " another", "probability": 0.79931640625}, {"start": 181.93, "end": 182.33, "word": " class", "probability": 0.9443359375}, {"start": 182.33, "end": 184.01, "word": " So", "probability": 0.1578369140625}, {"start": 184.01, "end": 184.29, "word": " there", "probability": 0.81201171875}, {"start": 184.29, "end": 184.37, "word": " is", "probability": 0.79248046875}, {"start": 184.37, "end": 184.47, "word": " a", "probability": 0.8564453125}, {"start": 184.47, "end": 184.79, "word": " relationship", "probability": 0.45751953125}, {"start": 184.79, "end": 184.97, "word": " or", "probability": 0.7431640625}, {"start": 184.97, "end": 185.39, "word": " communication", "probability": 0.8525390625}, {"start": 185.39, "end": 185.93, "word": " between", "probability": 0.86181640625}, {"start": 185.93, "end": 186.39, "word": " objects", "probability": 0.7958984375}, {"start": 186.39, "end": 187.01, "word": " If", "probability": 0.7431640625}, {"start": 187.01, "end": 187.21, "word": " you", "probability": 0.93115234375}, {"start": 187.21, "end": 187.21, "word": " don't", "probability": 0.805908203125}, {"start": 187.21, "end": 187.49, "word": " build", "probability": 0.59130859375}, {"start": 187.49, "end": 187.63, "word": " the", "probability": 0.31689453125}, {"start": 187.63, "end": 188.13, "word": " communication", "probability": 0.56201171875}, {"start": 188.13, "end": 188.79, "word": " correctly,", "probability": 0.5615234375}, {"start": 188.95, "end": 189.21, "word": " your", "probability": 0.6875}, {"start": 189.21, "end": 189.49, "word": " program", "probability": 0.673828125}, {"start": 189.49, "end": 189.63, "word": " will", "probability": 0.80078125}, {"start": 189.63, "end": 189.63, "word": " be", "probability": 0.2724609375}, {"start": 189.63, "end": 190.07, "word": " complicated", "probability": 0.65576171875}, {"start": 190.07, "end": 190.73, "word": " as", "probability": 0.45068359375}, {"start": 190.73, "end": 190.89, "word": " we", "probability": 0.70947265625}, {"start": 190.89, "end": 190.97, "word": " will", "probability": 0.673828125}, {"start": 190.97, "end": 191.21, "word": " see", "probability": 0.92138671875}, {"start": 191.21, "end": 191.31, "word": " in", "probability": 0.89306640625}, {"start": 191.31, "end": 191.51, "word": " some", "probability": 0.85400390625}, {"start": 191.51, "end": 191.91, "word": " examples", "probability": 0.7109375}, {"start": 191.91, "end": 192.77, "word": " and", "probability": 0.445556640625}, {"start": 192.77, "end": 192.89, "word": " we", "probability": 0.9287109375}, {"start": 192.89, "end": 192.91, "word": " will", "probability": 0.8115234375}, {"start": 192.91, "end": 193.21, "word": " use", "probability": 0.85693359375}, {"start": 193.21, "end": 193.37, "word": " the", "probability": 0.7412109375}, {"start": 193.37, "end": 193.69, "word": " observer", "probability": 0.697265625}, {"start": 193.69, "end": 194.05, "word": " to", "probability": 0.91650390625}, {"start": 194.05, "end": 194.49, "word": " improve", "probability": 0.6328125}, {"start": 194.49, "end": 195.31, "word": " the", "probability": 0.462646484375}, {"start": 195.31, "end": 195.91, "word": " communication", "probability": 0.87744140625}, {"start": 195.91, "end": 196.29, "word": " between", "probability": 0.86474609375}, {"start": 196.29, "end": 196.55, "word": " parts", "probability": 0.5712890625}, {"start": 196.55, "end": 196.75, "word": " of", "probability": 0.96923828125}, {"start": 196.75, "end": 196.79, "word": " the", "probability": 0.482421875}, {"start": 196.79, "end": 197.13, "word": " objects", "probability": 0.8271484375}, {"start": 197.13, "end": 198.43, "word": " Behavioral", "probability": 0.6136474609375}, {"start": 198.43, "end": 198.73, "word": " Design", "probability": 0.432861328125}, {"start": 198.73, "end": 199.31, "word": " Patterns", "probability": 0.966552734375}], "temperature": 1.0}, {"id": 10, "seek": 21760, "start": 199.88, "end": 217.6, "text": " are design patterns that identify common communication patterns between objects and realize these patterns By doing so, these patterns increase flexibility in carrying out this communication", "tokens": [366, 1715, 8294, 300, 5876, 2689, 6101, 8294, 1296, 6565, 293, 4325, 613, 8294, 3146, 884, 370, 11, 613, 8294, 3488, 12635, 294, 9792, 484, 341, 6101], "avg_logprob": -0.19726561967815673, "compression_ratio": 1.5655737704918034, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 199.88, "end": 200.16, "word": " are", "probability": 0.73046875}, {"start": 200.16, "end": 200.56, "word": " design", "probability": 0.87939453125}, {"start": 200.56, "end": 200.92, "word": " patterns", "probability": 0.90283203125}, {"start": 200.92, "end": 201.22, "word": " that", "probability": 0.93505859375}, {"start": 201.22, "end": 201.86, "word": " identify", "probability": 0.90576171875}, {"start": 201.86, "end": 202.36, "word": " common", "probability": 0.8427734375}, {"start": 202.36, "end": 203.08, "word": " communication", "probability": 0.87109375}, {"start": 203.08, "end": 203.6, "word": " patterns", "probability": 0.87158203125}, {"start": 203.6, "end": 203.96, "word": " between", "probability": 0.88623046875}, {"start": 203.96, "end": 204.46, "word": " objects", "probability": 0.95751953125}, {"start": 204.46, "end": 205.46, "word": " and", "probability": 0.83203125}, {"start": 205.46, "end": 206.3, "word": " realize", "probability": 0.7939453125}, {"start": 206.3, "end": 206.58, "word": " these", "probability": 0.87744140625}, {"start": 206.58, "end": 206.98, "word": " patterns", "probability": 0.90673828125}, {"start": 206.98, "end": 210.7, "word": " By", "probability": 0.21044921875}, {"start": 210.7, "end": 212.4, "word": " doing", "probability": 0.95654296875}, {"start": 212.4, "end": 212.82, "word": " so,", "probability": 0.95068359375}, {"start": 213.34, "end": 213.6, "word": " these", "probability": 0.87158203125}, {"start": 213.6, "end": 214.1, "word": " patterns", "probability": 0.89697265625}, {"start": 214.1, "end": 214.6, "word": " increase", "probability": 0.8447265625}, {"start": 214.6, "end": 215.42, "word": " flexibility", "probability": 0.9111328125}, {"start": 215.42, "end": 216.1, "word": " in", "probability": 0.93408203125}, {"start": 216.1, "end": 216.42, "word": " carrying", "probability": 0.9091796875}, {"start": 216.42, "end": 216.76, "word": " out", "probability": 0.87646484375}, {"start": 216.76, "end": 216.96, "word": " this", "probability": 0.80322265625}, {"start": 216.96, "end": 217.6, "word": " communication", "probability": 0.88232421875}], "temperature": 1.0}, {"id": 11, "seek": 23349, "start": 220.33, "end": 233.49, "text": "among the design patterns that we will talk about in this section, there are a number of design patterns including strategy, state, observer, command, momentum, chain of responsibility, template pattern and visitor", "tokens": [335, 556, 264, 1715, 8294, 300, 321, 486, 751, 466, 294, 341, 3541, 11, 456, 366, 257, 1230, 295, 1715, 8294, 3009, 5206, 11, 1785, 11, 27878, 11, 5622, 11, 11244, 11, 5021, 295, 6357, 11, 12379, 5102, 293, 28222], "avg_logprob": -0.46951218349177665, "compression_ratio": 1.5177304964539007, "no_speech_prob": 0.0, "words": [{"start": 220.33, "end": 220.75, "word": "among", "probability": 0.540008544921875}, {"start": 220.75, "end": 220.99, "word": " the", "probability": 0.407470703125}, {"start": 220.99, "end": 221.31, "word": " design", "probability": 0.875}, {"start": 221.31, "end": 221.69, "word": " patterns", "probability": 0.81494140625}, {"start": 221.69, "end": 221.81, "word": " that", "probability": 0.338134765625}, {"start": 221.81, "end": 221.91, "word": " we", "probability": 0.61865234375}, {"start": 221.91, "end": 221.95, "word": " will", "probability": 0.65283203125}, {"start": 221.95, "end": 222.21, "word": " talk", "probability": 0.0904541015625}, {"start": 222.21, "end": 222.49, "word": " about", "probability": 0.90087890625}, {"start": 222.49, "end": 222.65, "word": " in", "probability": 0.292724609375}, {"start": 222.65, "end": 222.97, "word": " this", "probability": 0.92626953125}, {"start": 222.97, "end": 223.33, "word": " section,", "probability": 0.5390625}, {"start": 223.89, "end": 224.23, "word": " there", "probability": 0.6201171875}, {"start": 224.23, "end": 224.23, "word": " are", "probability": 0.8720703125}, {"start": 224.23, "end": 224.23, "word": " a", "probability": 0.229248046875}, {"start": 224.23, "end": 224.47, "word": " number", "probability": 0.7470703125}, {"start": 224.47, "end": 224.63, "word": " of", "probability": 0.935546875}, {"start": 224.63, "end": 224.97, "word": " design", "probability": 0.4873046875}, {"start": 224.97, "end": 225.43, "word": " patterns", "probability": 0.87890625}, {"start": 225.43, "end": 225.81, "word": " including", "probability": 0.2269287109375}, {"start": 225.81, "end": 227.11, "word": " strategy,", "probability": 0.59033203125}, {"start": 227.39, "end": 227.73, "word": " state,", "probability": 0.90771484375}, {"start": 228.05, "end": 228.57, "word": " observer,", "probability": 0.87060546875}, {"start": 228.87, "end": 229.37, "word": " command,", "probability": 0.8955078125}, {"start": 229.55, "end": 230.03, "word": " momentum,", "probability": 0.420654296875}, {"start": 230.71, "end": 230.93, "word": " chain", "probability": 0.8876953125}, {"start": 230.93, "end": 231.07, "word": " of", "probability": 0.96142578125}, {"start": 231.07, "end": 231.87, "word": " responsibility,", "probability": 0.90185546875}, {"start": 232.21, "end": 232.49, "word": " template", "probability": 0.9345703125}, {"start": 232.49, "end": 232.95, "word": " pattern", "probability": 0.78466796875}, {"start": 232.95, "end": 233.13, "word": " and", "probability": 0.52978515625}, {"start": 233.13, "end": 233.49, "word": " visitor", "probability": 0.9384765625}], "temperature": 1.0}, {"id": 12, "seek": 26320, "start": 235.51, "end": 263.21, "text": "today we will start with the first design pattern of this section which is the observer pattern which is, in my opinion, the most important design pattern among the behavioral design patterns and most of them are used, okay? okay, let's read some information about the observer pattern and see as a practical example where is the programming problem and how does the observer pattern solve this problem as usual", "tokens": [83, 378, 320, 321, 486, 722, 365, 264, 700, 1715, 5102, 295, 341, 3541, 597, 307, 264, 27878, 5102, 597, 307, 11, 294, 452, 4800, 11, 264, 881, 1021, 1715, 5102, 3654, 264, 19124, 1715, 8294, 293, 881, 295, 552, 366, 1143, 11, 1392, 30, 1392, 11, 718, 311, 1401, 512, 1589, 466, 264, 27878, 5102, 293, 536, 382, 257, 8496, 1365, 689, 307, 264, 9410, 1154, 293, 577, 775, 264, 27878, 5102, 5039, 341, 1154, 382, 7713], "avg_logprob": -0.45094938066941276, "compression_ratio": 1.885321100917431, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 235.51, "end": 235.81, "word": "today", "probability": 0.68463134765625}, {"start": 235.81, "end": 236.01, "word": " we", "probability": 0.7216796875}, {"start": 236.01, "end": 236.01, "word": " will", "probability": 0.60888671875}, {"start": 236.01, "end": 236.29, "word": " start", "probability": 0.7939453125}, {"start": 236.29, "end": 236.79, "word": " with", "probability": 0.5732421875}, {"start": 236.79, "end": 237.07, "word": " the", "probability": 0.791015625}, {"start": 237.07, "end": 237.07, "word": " first", "probability": 0.783203125}, {"start": 237.07, "end": 237.41, "word": " design", "probability": 0.84619140625}, {"start": 237.41, "end": 237.85, "word": " pattern", "probability": 0.89208984375}, {"start": 237.85, "end": 238.23, "word": " of", "probability": 0.331298828125}, {"start": 238.23, "end": 238.51, "word": " this", "probability": 0.85546875}, {"start": 238.51, "end": 238.85, "word": " section", "probability": 0.29638671875}, {"start": 238.85, "end": 239.59, "word": " which", "probability": 0.55810546875}, {"start": 239.59, "end": 239.73, "word": " is", "probability": 0.94775390625}, {"start": 239.73, "end": 239.85, "word": " the", "probability": 0.69091796875}, {"start": 239.85, "end": 240.23, "word": " observer", "probability": 0.58447265625}, {"start": 240.23, "end": 240.75, "word": " pattern", "probability": 0.89306640625}, {"start": 240.75, "end": 241.35, "word": " which", "probability": 0.385498046875}, {"start": 241.35, "end": 241.83, "word": " is,", "probability": 0.59228515625}, {"start": 241.83, "end": 242.11, "word": " in", "probability": 0.45068359375}, {"start": 242.11, "end": 242.29, "word": " my", "probability": 0.96875}, {"start": 242.29, "end": 242.73, "word": " opinion,", "probability": 0.72607421875}, {"start": 242.91, "end": 243.41, "word": " the", "probability": 0.6328125}, {"start": 243.41, "end": 243.51, "word": " most", "probability": 0.8466796875}, {"start": 243.51, "end": 243.63, "word": " important", "probability": 0.83984375}, {"start": 243.63, "end": 243.99, "word": " design", "probability": 0.6943359375}, {"start": 243.99, "end": 244.45, "word": " pattern", "probability": 0.853515625}, {"start": 244.45, "end": 245.05, "word": " among", "probability": 0.439697265625}, {"start": 245.05, "end": 245.65, "word": " the", "probability": 0.361572265625}, {"start": 245.65, "end": 246.07, "word": " behavioral", "probability": 0.75732421875}, {"start": 246.07, "end": 246.47, "word": " design", "probability": 0.70947265625}, {"start": 246.47, "end": 246.85, "word": " patterns", "probability": 0.87646484375}, {"start": 246.85, "end": 246.95, "word": " and", "probability": 0.5517578125}, {"start": 246.95, "end": 247.25, "word": " most", "probability": 0.71484375}, {"start": 247.25, "end": 247.39, "word": " of", "probability": 0.72900390625}, {"start": 247.39, "end": 247.57, "word": " them", "probability": 0.83349609375}, {"start": 247.57, "end": 248.17, "word": " are", "probability": 0.453125}, {"start": 248.17, "end": 248.47, "word": " used,", "probability": 0.34814453125}, {"start": 249.11, "end": 249.41, "word": " okay?", "probability": 0.328857421875}, {"start": 250.45, "end": 251.13, "word": " okay,", "probability": 0.37353515625}, {"start": 251.21, "end": 251.49, "word": " let's", "probability": 0.884033203125}, {"start": 251.49, "end": 251.79, "word": " read", "probability": 0.9423828125}, {"start": 251.79, "end": 253.25, "word": " some", "probability": 0.84619140625}, {"start": 253.25, "end": 253.67, "word": " information", "probability": 0.6923828125}, {"start": 253.67, "end": 253.95, "word": " about", "probability": 0.85400390625}, {"start": 253.95, "end": 254.05, "word": " the", "probability": 0.8359375}, {"start": 254.05, "end": 254.41, "word": " observer", "probability": 0.86376953125}, {"start": 254.41, "end": 254.91, "word": " pattern", "probability": 0.875}, {"start": 254.91, "end": 255.33, "word": " and", "probability": 0.79931640625}, {"start": 255.33, "end": 255.75, "word": " see", "probability": 0.42236328125}, {"start": 255.75, "end": 257.25, "word": " as", "probability": 0.197021484375}, {"start": 257.25, "end": 257.75, "word": " a", "probability": 0.70556640625}, {"start": 257.75, "end": 258.31, "word": " practical", "probability": 0.95751953125}, {"start": 258.31, "end": 258.31, "word": " example", "probability": 0.9716796875}, {"start": 258.31, "end": 258.89, "word": " where", "probability": 0.7158203125}, {"start": 258.89, "end": 259.01, "word": " is", "probability": 0.5751953125}, {"start": 259.01, "end": 259.09, "word": " the", "probability": 0.88427734375}, {"start": 259.09, "end": 260.05, "word": " programming", "probability": 0.156494140625}, {"start": 260.05, "end": 260.23, "word": " problem", "probability": 0.8017578125}, {"start": 260.23, "end": 260.83, "word": " and", "probability": 0.60791015625}, {"start": 260.83, "end": 261.05, "word": " how", "probability": 0.9423828125}, {"start": 261.05, "end": 261.13, "word": " does", "probability": 0.62744140625}, {"start": 261.13, "end": 261.21, "word": " the", "probability": 0.7724609375}, {"start": 261.21, "end": 261.53, "word": " observer", "probability": 0.89111328125}, {"start": 261.53, "end": 261.93, "word": " pattern", "probability": 0.82958984375}, {"start": 261.93, "end": 262.21, "word": " solve", "probability": 0.72265625}, {"start": 262.21, "end": 262.31, "word": " this", "probability": 0.78125}, {"start": 262.31, "end": 262.59, "word": " problem", "probability": 0.83056640625}, {"start": 262.59, "end": 262.91, "word": " as", "probability": 0.6689453125}, {"start": 262.91, "end": 263.21, "word": " usual", "probability": 0.8896484375}], "temperature": 1.0}, {"id": 13, "seek": 29311, "start": 264.75, "end": 293.11, "text": " The goal of the intent is to define a one-to-many dependency between objects one-to-many dependency between objects so that when one object changes state all its dependents are notified and updated automatically What does this mean guys? Let's talk about the scenario Sometimes in my application I have a certain component, a certain object and this object needs", "tokens": [440, 3387, 295, 264, 8446, 307, 281, 6964, 257, 472, 12, 1353, 12, 76, 1325, 33621, 1296, 6565, 472, 12, 1353, 12, 76, 1325, 33621, 1296, 6565, 370, 300, 562, 472, 2657, 2962, 1785, 439, 1080, 5672, 791, 366, 18013, 293, 10588, 6772, 708, 775, 341, 914, 1074, 30, 961, 311, 751, 466, 264, 9005, 4803, 294, 452, 3861, 286, 362, 257, 1629, 6542, 11, 257, 1629, 2657, 293, 341, 2657, 2203], "avg_logprob": -0.36194348661866904, "compression_ratio": 1.7203791469194314, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 264.75, "end": 265.35, "word": " The", "probability": 0.179443359375}, {"start": 265.35, "end": 265.55, "word": " goal", "probability": 0.496826171875}, {"start": 265.55, "end": 265.59, "word": " of", "probability": 0.56298828125}, {"start": 265.59, "end": 265.59, "word": " the", "probability": 0.318115234375}, {"start": 265.59, "end": 265.59, "word": " intent", "probability": 0.6171875}, {"start": 265.59, "end": 265.81, "word": " is", "probability": 0.8896484375}, {"start": 265.81, "end": 265.93, "word": " to", "probability": 0.58154296875}, {"start": 265.93, "end": 266.29, "word": " define", "probability": 0.86865234375}, {"start": 266.29, "end": 266.55, "word": " a", "probability": 0.77490234375}, {"start": 266.55, "end": 266.67, "word": " one", "probability": 0.93505859375}, {"start": 266.67, "end": 266.81, "word": "-to", "probability": 0.808837890625}, {"start": 266.81, "end": 267.03, "word": "-many", "probability": 0.9431966145833334}, {"start": 267.03, "end": 267.87, "word": " dependency", "probability": 0.9111328125}, {"start": 267.87, "end": 268.35, "word": " between", "probability": 0.853515625}, {"start": 268.35, "end": 268.93, "word": " objects", "probability": 0.95556640625}, {"start": 268.93, "end": 270.31, "word": " one", "probability": 0.39111328125}, {"start": 270.31, "end": 270.49, "word": "-to", "probability": 0.94921875}, {"start": 270.49, "end": 270.67, "word": "-many", "probability": 0.9469401041666666}, {"start": 270.67, "end": 271.31, "word": " dependency", "probability": 0.91259765625}, {"start": 271.31, "end": 271.65, "word": " between", "probability": 0.87158203125}, {"start": 271.65, "end": 272.11, "word": " objects", "probability": 0.9599609375}, {"start": 272.11, "end": 272.41, "word": " so", "probability": 0.6708984375}, {"start": 272.41, "end": 272.75, "word": " that", "probability": 0.9365234375}, {"start": 272.75, "end": 272.95, "word": " when", "probability": 0.892578125}, {"start": 272.95, "end": 273.17, "word": " one", "probability": 0.9169921875}, {"start": 273.17, "end": 273.53, "word": " object", "probability": 0.50390625}, {"start": 273.53, "end": 274.35, "word": " changes", "probability": 0.578125}, {"start": 274.35, "end": 275.07, "word": " state", "probability": 0.900390625}, {"start": 275.07, "end": 275.81, "word": " all", "probability": 0.7109375}, {"start": 275.81, "end": 276.09, "word": " its", "probability": 0.8740234375}, {"start": 276.09, "end": 276.73, "word": " dependents", "probability": 0.707275390625}, {"start": 276.73, "end": 276.95, "word": " are", "probability": 0.94482421875}, {"start": 276.95, "end": 277.43, "word": " notified", "probability": 0.92236328125}, {"start": 277.43, "end": 277.79, "word": " and", "probability": 0.9296875}, {"start": 277.79, "end": 278.35, "word": " updated", "probability": 0.93798828125}, {"start": 278.35, "end": 279.63, "word": " automatically", "probability": 0.87353515625}, {"start": 279.63, "end": 282.03, "word": " What", "probability": 0.407470703125}, {"start": 282.03, "end": 282.17, "word": " does", "probability": 0.73876953125}, {"start": 282.17, "end": 282.35, "word": " this", "probability": 0.75537109375}, {"start": 282.35, "end": 282.51, "word": " mean", "probability": 0.52294921875}, {"start": 282.51, "end": 283.03, "word": " guys?", "probability": 0.258544921875}, {"start": 283.47, "end": 283.87, "word": " Let's", "probability": 0.6925048828125}, {"start": 283.87, "end": 284.69, "word": " talk", "probability": 0.50048828125}, {"start": 284.69, "end": 284.77, "word": " about", "probability": 0.8994140625}, {"start": 284.77, "end": 284.83, "word": " the", "probability": 0.7080078125}, {"start": 284.83, "end": 285.23, "word": " scenario", "probability": 0.84326171875}, {"start": 285.23, "end": 287.03, "word": " Sometimes", "probability": 0.361083984375}, {"start": 287.03, "end": 287.21, "word": " in", "probability": 0.65380859375}, {"start": 287.21, "end": 287.29, "word": " my", "probability": 0.93896484375}, {"start": 287.29, "end": 287.71, "word": " application", "probability": 0.5703125}, {"start": 287.71, "end": 288.13, "word": " I", "probability": 0.3544921875}, {"start": 288.13, "end": 288.59, "word": " have", "probability": 0.76953125}, {"start": 288.59, "end": 289.37, "word": " a", "probability": 0.87890625}, {"start": 289.37, "end": 289.41, "word": " certain", "probability": 0.468505859375}, {"start": 289.41, "end": 289.87, "word": " component,", "probability": 0.8017578125}, {"start": 290.33, "end": 290.45, "word": " a", "probability": 0.52490234375}, {"start": 290.45, "end": 290.99, "word": " certain", "probability": 0.78466796875}, {"start": 290.99, "end": 290.99, "word": " object", "probability": 0.9755859375}, {"start": 290.99, "end": 292.05, "word": " and", "probability": 0.57568359375}, {"start": 292.05, "end": 292.13, "word": " this", "probability": 0.79638671875}, {"start": 292.13, "end": 292.47, "word": " object", "probability": 0.9453125}, {"start": 292.47, "end": 293.11, "word": " needs", "probability": 0.50146484375}], "temperature": 1.0}, {"id": 14, "seek": 32387, "start": 294.91, "end": 323.87, "text": " it communicates or communicates with other components in this way these are objects and these are associations for example this can be a backend where data is modified based on the modification of the data this is the frontend which can be web based this can be mobile", "tokens": [309, 3363, 1024, 420, 3363, 1024, 365, 661, 6677, 294, 341, 636, 613, 366, 6565, 293, 613, 366, 26597, 337, 1365, 341, 393, 312, 257, 38087, 689, 1412, 307, 15873, 2361, 322, 264, 26747, 295, 264, 1412, 341, 307, 264, 1868, 521, 597, 393, 312, 3670, 2361, 341, 393, 312, 6013], "avg_logprob": -0.6346154052477616, "compression_ratio": 1.8175675675675675, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 294.91, "end": 295.13, "word": " it", "probability": 0.07965087890625}, {"start": 295.13, "end": 295.49, "word": " communicates", "probability": 0.826171875}, {"start": 295.49, "end": 295.77, "word": " or", "probability": 0.4326171875}, {"start": 295.77, "end": 296.21, "word": " communicates", "probability": 0.902099609375}, {"start": 296.21, "end": 296.67, "word": " with", "probability": 0.85107421875}, {"start": 296.67, "end": 298.39, "word": " other", "probability": 0.51416015625}, {"start": 298.39, "end": 299.37, "word": " components", "probability": 0.80126953125}, {"start": 299.37, "end": 299.65, "word": " in", "probability": 0.1358642578125}, {"start": 299.65, "end": 304.41, "word": " this", "probability": 0.6875}, {"start": 304.41, "end": 304.67, "word": " way", "probability": 0.69091796875}, {"start": 304.67, "end": 305.69, "word": " these", "probability": 0.2005615234375}, {"start": 305.69, "end": 305.77, "word": " are", "probability": 0.498046875}, {"start": 305.77, "end": 306.23, "word": " objects", "probability": 0.172607421875}, {"start": 306.23, "end": 307.71, "word": " and", "probability": 0.482666015625}, {"start": 307.71, "end": 307.87, "word": " these", "probability": 0.42236328125}, {"start": 307.87, "end": 307.93, "word": " are", "probability": 0.908203125}, {"start": 307.93, "end": 308.85, "word": " associations", "probability": 0.496826171875}, {"start": 308.85, "end": 309.55, "word": " for", "probability": 0.29541015625}, {"start": 309.55, "end": 311.25, "word": " example", "probability": 0.9111328125}, {"start": 311.25, "end": 313.15, "word": " this", "probability": 0.650390625}, {"start": 313.15, "end": 313.37, "word": " can", "probability": 0.43603515625}, {"start": 313.37, "end": 313.81, "word": " be", "probability": 0.92919921875}, {"start": 313.81, "end": 314.33, "word": " a", "probability": 0.364501953125}, {"start": 314.33, "end": 314.79, "word": " backend", "probability": 0.8662109375}, {"start": 314.79, "end": 315.55, "word": " where", "probability": 0.13037109375}, {"start": 315.55, "end": 315.69, "word": " data", "probability": 0.382568359375}, {"start": 315.69, "end": 316.53, "word": " is", "probability": 0.480712890625}, {"start": 316.53, "end": 316.53, "word": " modified", "probability": 0.658203125}, {"start": 316.53, "end": 317.21, "word": " based", "probability": 0.320068359375}, {"start": 317.21, "end": 317.47, "word": " on", "probability": 0.94775390625}, {"start": 317.47, "end": 317.51, "word": " the", "probability": 0.19091796875}, {"start": 317.51, "end": 317.73, "word": " modification", "probability": 0.5537109375}, {"start": 317.73, "end": 317.81, "word": " of", "probability": 0.86572265625}, {"start": 317.81, "end": 317.87, "word": " the", "probability": 0.337890625}, {"start": 317.87, "end": 318.17, "word": " data", "probability": 0.8720703125}, {"start": 318.17, "end": 318.39, "word": " this", "probability": 0.353759765625}, {"start": 318.39, "end": 318.53, "word": " is", "probability": 0.411376953125}, {"start": 318.53, "end": 319.03, "word": " the", "probability": 0.493408203125}, {"start": 319.03, "end": 319.67, "word": " frontend", "probability": 0.720458984375}, {"start": 319.67, "end": 319.89, "word": " which", "probability": 0.52392578125}, {"start": 319.89, "end": 320.17, "word": " can", "probability": 0.72998046875}, {"start": 320.17, "end": 320.45, "word": " be", "probability": 0.91943359375}, {"start": 320.45, "end": 321.29, "word": " web", "probability": 0.73291015625}, {"start": 321.29, "end": 321.83, "word": " based", "probability": 0.6142578125}, {"start": 321.83, "end": 323.07, "word": " this", "probability": 0.67138671875}, {"start": 323.07, "end": 323.27, "word": " can", "probability": 0.826171875}, {"start": 323.27, "end": 323.55, "word": " be", "probability": 0.94580078125}, {"start": 323.55, "end": 323.87, "word": " mobile", "probability": 0.91259765625}], "temperature": 1.0}, {"id": 15, "seek": 35011, "start": 325.47, "end": 350.11, "text": " This can be a desktop, okay? These are user interfaces that are different from each other. There is an adjustment that happened here. This adjustment should reach these three edges, okay? So here I have the relationship, and notice, one-to-many dependency. So the change here will affect whom?", "tokens": [639, 393, 312, 257, 14502, 11, 1392, 30, 1981, 366, 4195, 28416, 300, 366, 819, 490, 1184, 661, 13, 821, 307, 364, 17132, 300, 2011, 510, 13, 639, 17132, 820, 2524, 613, 1045, 8819, 11, 1392, 30, 407, 510, 286, 362, 264, 2480, 11, 293, 3449, 11, 472, 12, 1353, 12, 76, 1325, 33621, 13, 407, 264, 1319, 510, 486, 3345, 7101, 30], "avg_logprob": -0.5781250242143869, "compression_ratio": 1.5473684210526315, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 325.47, "end": 325.77, "word": " This", "probability": 0.258056640625}, {"start": 325.77, "end": 325.93, "word": " can", "probability": 0.372802734375}, {"start": 325.93, "end": 326.37, "word": " be", "probability": 0.94091796875}, {"start": 326.37, "end": 327.73, "word": " a", "probability": 0.59033203125}, {"start": 327.73, "end": 328.17, "word": " desktop,", "probability": 0.82421875}, {"start": 331.63, "end": 331.89, "word": " okay?", "probability": 0.212158203125}, {"start": 332.11, "end": 332.53, "word": " These", "probability": 0.20947265625}, {"start": 332.53, "end": 332.67, "word": " are", "probability": 0.90234375}, {"start": 332.67, "end": 332.91, "word": " user", "probability": 0.64013671875}, {"start": 332.91, "end": 333.65, "word": " interfaces", "probability": 0.85546875}, {"start": 333.65, "end": 334.75, "word": " that", "probability": 0.42431640625}, {"start": 334.75, "end": 334.79, "word": " are", "probability": 0.7568359375}, {"start": 334.79, "end": 335.09, "word": " different", "probability": 0.80126953125}, {"start": 335.09, "end": 335.37, "word": " from", "probability": 0.8681640625}, {"start": 335.37, "end": 335.69, "word": " each", "probability": 0.80419921875}, {"start": 335.69, "end": 335.69, "word": " other.", "probability": 0.88623046875}, {"start": 336.25, "end": 336.31, "word": " There", "probability": 0.49072265625}, {"start": 336.31, "end": 336.39, "word": " is", "probability": 0.5234375}, {"start": 336.39, "end": 336.55, "word": " an", "probability": 0.5537109375}, {"start": 336.55, "end": 336.77, "word": " adjustment", "probability": 0.42333984375}, {"start": 336.77, "end": 337.05, "word": " that", "probability": 0.361083984375}, {"start": 337.05, "end": 337.07, "word": " happened", "probability": 0.4248046875}, {"start": 337.07, "end": 337.41, "word": " here.", "probability": 0.8349609375}, {"start": 338.13, "end": 338.31, "word": " This", "probability": 0.671875}, {"start": 338.31, "end": 338.59, "word": " adjustment", "probability": 0.84814453125}, {"start": 338.59, "end": 338.97, "word": " should", "probability": 0.1715087890625}, {"start": 338.97, "end": 339.39, "word": " reach", "probability": 0.1397705078125}, {"start": 339.39, "end": 340.23, "word": " these", "probability": 0.466064453125}, {"start": 340.23, "end": 340.81, "word": " three", "probability": 0.82470703125}, {"start": 340.81, "end": 341.19, "word": " edges,", "probability": 0.26416015625}, {"start": 341.77, "end": 342.27, "word": " okay?", "probability": 0.7509765625}, {"start": 342.61, "end": 342.89, "word": " So", "probability": 0.51318359375}, {"start": 342.89, "end": 343.21, "word": " here", "probability": 0.269287109375}, {"start": 343.21, "end": 343.27, "word": " I", "probability": 0.74658203125}, {"start": 343.27, "end": 343.29, "word": " have", "probability": 0.8994140625}, {"start": 343.29, "end": 343.41, "word": " the", "probability": 0.474853515625}, {"start": 343.41, "end": 343.79, "word": " relationship,", "probability": 0.76318359375}, {"start": 344.23, "end": 344.39, "word": " and", "probability": 0.37451171875}, {"start": 344.39, "end": 344.77, "word": " notice,", "probability": 0.48291015625}, {"start": 345.07, "end": 345.31, "word": " one", "probability": 0.765625}, {"start": 345.31, "end": 345.51, "word": "-to", "probability": 0.82470703125}, {"start": 345.51, "end": 345.65, "word": "-many", "probability": 0.9109700520833334}, {"start": 345.65, "end": 346.25, "word": " dependency.", "probability": 0.8935546875}, {"start": 346.81, "end": 347.03, "word": " So", "probability": 0.310302734375}, {"start": 347.03, "end": 347.15, "word": " the", "probability": 0.30126953125}, {"start": 347.15, "end": 347.43, "word": " change", "probability": 0.87255859375}, {"start": 347.43, "end": 347.93, "word": " here", "probability": 0.8212890625}, {"start": 347.93, "end": 349.37, "word": " will", "probability": 0.41796875}, {"start": 349.37, "end": 349.73, "word": " affect", "probability": 0.76708984375}, {"start": 349.73, "end": 350.11, "word": " whom?", "probability": 0.6904296875}], "temperature": 1.0}, {"id": 16, "seek": 37879, "start": 351.17, "end": 378.79, "text": " on the three of them, a specific data was changed for example, a stock exchange program okay, the price of the stock has changed, the update should take place on the three screens for example not necessarily in another scenario, maybe in one user interface, one screen I found that sometimes when I design any screen, the screen above has a control button I have a status bar down here, I have a list on the left", "tokens": [322, 264, 1045, 295, 552, 11, 257, 2685, 1412, 390, 3105, 337, 1365, 11, 257, 4127, 7742, 1461, 1392, 11, 264, 3218, 295, 264, 4127, 575, 3105, 11, 264, 5623, 820, 747, 1081, 322, 264, 1045, 11171, 337, 1365, 406, 4725, 294, 1071, 9005, 11, 1310, 294, 472, 4195, 9226, 11, 472, 2568, 286, 1352, 300, 2171, 562, 286, 1715, 604, 2568, 11, 264, 2568, 3673, 575, 257, 1969, 2960, 286, 362, 257, 6558, 2159, 760, 510, 11, 286, 362, 257, 1329, 322, 264, 1411], "avg_logprob": -0.5436046629451042, "compression_ratio": 1.8274336283185841, "no_speech_prob": 1.9073486328125e-06, "words": [{"start": 351.17, "end": 351.69, "word": " on", "probability": 0.27978515625}, {"start": 351.69, "end": 351.89, "word": " the", "probability": 0.233154296875}, {"start": 351.89, "end": 352.13, "word": " three", "probability": 0.63427734375}, {"start": 352.13, "end": 352.19, "word": " of", "probability": 0.435791015625}, {"start": 352.19, "end": 352.49, "word": " them,", "probability": 0.525390625}, {"start": 352.59, "end": 352.71, "word": " a", "probability": 0.509765625}, {"start": 352.71, "end": 353.17, "word": " specific", "probability": 0.4287109375}, {"start": 353.17, "end": 353.31, "word": " data", "probability": 0.64013671875}, {"start": 353.31, "end": 353.47, "word": " was", "probability": 0.207275390625}, {"start": 353.47, "end": 353.77, "word": " changed", "probability": 0.8427734375}, {"start": 353.77, "end": 354.13, "word": " for", "probability": 0.450439453125}, {"start": 354.13, "end": 354.39, "word": " example,", "probability": 0.89697265625}, {"start": 354.53, "end": 355.03, "word": " a", "probability": 0.477783203125}, {"start": 355.03, "end": 355.23, "word": " stock", "probability": 0.4267578125}, {"start": 355.23, "end": 355.39, "word": " exchange", "probability": 0.630859375}, {"start": 355.39, "end": 355.51, "word": " program", "probability": 0.37841796875}, {"start": 355.51, "end": 356.23, "word": " okay,", "probability": 0.11248779296875}, {"start": 356.47, "end": 356.47, "word": " the", "probability": 0.8017578125}, {"start": 356.47, "end": 356.57, "word": " price", "probability": 0.53662109375}, {"start": 356.57, "end": 356.73, "word": " of", "probability": 0.90478515625}, {"start": 356.73, "end": 356.75, "word": " the", "probability": 0.64501953125}, {"start": 356.75, "end": 356.89, "word": " stock", "probability": 0.350341796875}, {"start": 356.89, "end": 357.03, "word": " has", "probability": 0.53173828125}, {"start": 357.03, "end": 357.29, "word": " changed,", "probability": 0.7568359375}, {"start": 357.41, "end": 357.81, "word": " the", "probability": 0.5029296875}, {"start": 357.81, "end": 358.13, "word": " update", "probability": 0.293212890625}, {"start": 358.13, "end": 358.33, "word": " should", "probability": 0.6240234375}, {"start": 358.33, "end": 358.59, "word": " take", "probability": 0.2188720703125}, {"start": 358.59, "end": 358.67, "word": " place", "probability": 0.8681640625}, {"start": 358.67, "end": 359.49, "word": " on", "probability": 0.9130859375}, {"start": 359.49, "end": 359.75, "word": " the", "probability": 0.5478515625}, {"start": 359.75, "end": 359.97, "word": " three", "probability": 0.9052734375}, {"start": 359.97, "end": 360.39, "word": " screens", "probability": 0.84619140625}, {"start": 360.39, "end": 360.87, "word": " for", "probability": 0.63232421875}, {"start": 360.87, "end": 361.43, "word": " example", "probability": 0.9267578125}, {"start": 361.43, "end": 363.97, "word": " not", "probability": 0.2349853515625}, {"start": 363.97, "end": 364.39, "word": " necessarily", "probability": 0.5888671875}, {"start": 364.39, "end": 365.39, "word": " in", "probability": 0.59765625}, {"start": 365.39, "end": 366.11, "word": " another", "probability": 0.712890625}, {"start": 366.11, "end": 366.55, "word": " scenario,", "probability": 0.892578125}, {"start": 367.07, "end": 367.47, "word": " maybe", "probability": 0.5888671875}, {"start": 367.47, "end": 368.63, "word": " in", "probability": 0.78076171875}, {"start": 368.63, "end": 369.01, "word": " one", "probability": 0.73681640625}, {"start": 369.01, "end": 369.17, "word": " user", "probability": 0.92626953125}, {"start": 369.17, "end": 369.77, "word": " interface,", "probability": 0.90234375}, {"start": 370.07, "end": 370.09, "word": " one", "probability": 0.814453125}, {"start": 370.09, "end": 370.63, "word": " screen", "probability": 0.8427734375}, {"start": 370.63, "end": 370.83, "word": " I", "probability": 0.4521484375}, {"start": 370.83, "end": 371.03, "word": " found", "probability": 0.355224609375}, {"start": 371.03, "end": 371.15, "word": " that", "probability": 0.315185546875}, {"start": 371.15, "end": 371.45, "word": " sometimes", "probability": 0.6181640625}, {"start": 371.45, "end": 371.77, "word": " when", "probability": 0.837890625}, {"start": 371.77, "end": 371.89, "word": " I", "probability": 0.97216796875}, {"start": 371.89, "end": 372.13, "word": " design", "probability": 0.9140625}, {"start": 372.13, "end": 372.39, "word": " any", "probability": 0.646484375}, {"start": 372.39, "end": 372.77, "word": " screen,", "probability": 0.87353515625}, {"start": 372.91, "end": 373.01, "word": " the", "probability": 0.473388671875}, {"start": 373.01, "end": 373.27, "word": " screen", "probability": 0.72021484375}, {"start": 373.27, "end": 373.53, "word": " above", "probability": 0.77685546875}, {"start": 373.53, "end": 373.75, "word": " has", "probability": 0.395751953125}, {"start": 373.75, "end": 373.99, "word": " a", "probability": 0.37255859375}, {"start": 373.99, "end": 374.55, "word": " control", "probability": 0.72265625}, {"start": 374.55, "end": 374.61, "word": " button", "probability": 0.69580078125}, {"start": 374.61, "end": 375.13, "word": " I", "probability": 0.2734375}, {"start": 375.13, "end": 375.71, "word": " have", "probability": 0.888671875}, {"start": 375.71, "end": 375.83, "word": " a", "probability": 0.50537109375}, {"start": 375.83, "end": 376.53, "word": " status", "probability": 0.96923828125}, {"start": 376.53, "end": 376.97, "word": " bar", "probability": 0.94677734375}, {"start": 376.97, "end": 376.97, "word": " down", "probability": 0.28271484375}, {"start": 376.97, "end": 376.97, "word": " here,", "probability": 0.82568359375}, {"start": 377.41, "end": 377.57, "word": " I", "probability": 0.775390625}, {"start": 377.57, "end": 377.79, "word": " have", "probability": 0.9296875}, {"start": 377.79, "end": 377.93, "word": " a", "probability": 0.94482421875}, {"start": 377.93, "end": 378.11, "word": " list", "probability": 0.65869140625}, {"start": 378.11, "end": 378.33, "word": " on", "probability": 0.76171875}, {"start": 378.33, "end": 378.51, "word": " the", "probability": 0.91943359375}, {"start": 378.51, "end": 378.79, "word": " left", "probability": 0.95751953125}], "temperature": 1.0}, {"id": 17, "seek": 40972, "start": 381.5, "end": 409.72, "text": "Control or Tree for example, and I have content in the middle of the screen here Sometimes changing in one part affects all other parts For example, if I click on an element here, based on it, the content here changes based on it, there are buttons that activate and buttons that become non-active, for example, okay? So here there is a change in this, and the status bar writes to me, for example, a message that it was done this and that, this happens in three", "tokens": [29821, 6623, 420, 22291, 337, 1365, 11, 293, 286, 362, 2701, 294, 264, 2808, 295, 264, 2568, 510, 4803, 4473, 294, 472, 644, 11807, 439, 661, 3166, 1171, 1365, 11, 498, 286, 2052, 322, 364, 4478, 510, 11, 2361, 322, 309, 11, 264, 2701, 510, 2962, 2361, 322, 309, 11, 456, 366, 9905, 300, 13615, 293, 9905, 300, 1813, 2107, 12, 12596, 11, 337, 1365, 11, 1392, 30, 407, 510, 456, 307, 257, 1319, 294, 341, 11, 293, 264, 6558, 2159, 13657, 281, 385, 11, 337, 1365, 11, 257, 3636, 300, 309, 390, 1096, 341, 293, 300, 11, 341, 2314, 294, 1045], "avg_logprob": -0.5175970989523582, "compression_ratio": 1.848, "no_speech_prob": 3.7670135498046875e-05, "words": [{"start": 381.5, "end": 381.98, "word": "Control", "probability": 0.4849700927734375}, {"start": 381.98, "end": 382.2, "word": " or", "probability": 0.58056640625}, {"start": 382.2, "end": 382.46, "word": " Tree", "probability": 0.59912109375}, {"start": 382.46, "end": 382.72, "word": " for", "probability": 0.724609375}, {"start": 382.72, "end": 382.82, "word": " example,", "probability": 0.88818359375}, {"start": 383.0, "end": 383.0, "word": " and", "probability": 0.58056640625}, {"start": 383.0, "end": 383.16, "word": " I", "probability": 0.6171875}, {"start": 383.16, "end": 383.34, "word": " have", "probability": 0.8642578125}, {"start": 383.34, "end": 383.74, "word": " content", "probability": 0.7392578125}, {"start": 383.74, "end": 383.94, "word": " in", "probability": 0.734375}, {"start": 383.94, "end": 384.04, "word": " the", "probability": 0.79345703125}, {"start": 384.04, "end": 384.14, "word": " middle", "probability": 0.794921875}, {"start": 384.14, "end": 384.26, "word": " of", "probability": 0.94482421875}, {"start": 384.26, "end": 384.32, "word": " the", "probability": 0.85888671875}, {"start": 384.32, "end": 384.64, "word": " screen", "probability": 0.8388671875}, {"start": 384.64, "end": 385.24, "word": " here", "probability": 0.60791015625}, {"start": 385.24, "end": 386.22, "word": " Sometimes", "probability": 0.26123046875}, {"start": 386.22, "end": 386.68, "word": " changing", "probability": 0.301513671875}, {"start": 386.68, "end": 386.96, "word": " in", "probability": 0.40576171875}, {"start": 386.96, "end": 387.64, "word": " one", "probability": 0.78515625}, {"start": 387.64, "end": 387.64, "word": " part", "probability": 0.5263671875}, {"start": 387.64, "end": 388.08, "word": " affects", "probability": 0.6865234375}, {"start": 388.08, "end": 388.46, "word": " all", "probability": 0.849609375}, {"start": 388.46, "end": 388.52, "word": " other", "probability": 0.515625}, {"start": 388.52, "end": 388.8, "word": " parts", "probability": 0.89697265625}, {"start": 388.8, "end": 389.96, "word": " For", "probability": 0.150146484375}, {"start": 389.96, "end": 390.54, "word": " example,", "probability": 0.94482421875}, {"start": 390.66, "end": 390.68, "word": " if", "probability": 0.2442626953125}, {"start": 390.68, "end": 390.78, "word": " I", "probability": 0.97119140625}, {"start": 390.78, "end": 390.94, "word": " click", "probability": 0.390625}, {"start": 390.94, "end": 391.38, "word": " on", "probability": 0.8740234375}, {"start": 391.38, "end": 391.66, "word": " an", "probability": 0.5966796875}, {"start": 391.66, "end": 391.84, "word": " element", "probability": 0.71435546875}, {"start": 391.84, "end": 392.38, "word": " here,", "probability": 0.80419921875}, {"start": 392.66, "end": 392.96, "word": " based", "probability": 0.325439453125}, {"start": 392.96, "end": 393.2, "word": " on", "probability": 0.9501953125}, {"start": 393.2, "end": 393.36, "word": " it,", "probability": 0.478271484375}, {"start": 393.4, "end": 393.48, "word": " the", "probability": 0.81396484375}, {"start": 393.48, "end": 393.82, "word": " content", "probability": 0.943359375}, {"start": 393.82, "end": 394.14, "word": " here", "probability": 0.3212890625}, {"start": 394.14, "end": 395.64, "word": " changes", "probability": 0.4482421875}, {"start": 395.64, "end": 396.96, "word": " based", "probability": 0.275634765625}, {"start": 396.96, "end": 397.28, "word": " on", "probability": 0.94775390625}, {"start": 397.28, "end": 397.42, "word": " it,", "probability": 0.82080078125}, {"start": 397.46, "end": 397.52, "word": " there", "probability": 0.63525390625}, {"start": 397.52, "end": 397.64, "word": " are", "probability": 0.8427734375}, {"start": 397.64, "end": 397.96, "word": " buttons", "probability": 0.6640625}, {"start": 397.96, "end": 398.1, "word": " that", "probability": 0.72900390625}, {"start": 398.1, "end": 398.44, "word": " activate", "probability": 0.4658203125}, {"start": 398.44, "end": 398.68, "word": " and", "probability": 0.81787109375}, {"start": 398.68, "end": 399.74, "word": " buttons", "probability": 0.60888671875}, {"start": 399.74, "end": 400.14, "word": " that", "probability": 0.58251953125}, {"start": 400.14, "end": 400.4, "word": " become", "probability": 0.61474609375}, {"start": 400.4, "end": 400.72, "word": " non", "probability": 0.8193359375}, {"start": 400.72, "end": 401.1, "word": "-active,", "probability": 0.829345703125}, {"start": 401.36, "end": 401.52, "word": " for", "probability": 0.8623046875}, {"start": 401.52, "end": 402.14, "word": " example,", "probability": 0.9638671875}, {"start": 402.16, "end": 402.44, "word": " okay?", "probability": 0.354248046875}, {"start": 402.68, "end": 402.78, "word": " So", "probability": 0.401123046875}, {"start": 402.78, "end": 402.92, "word": " here", "probability": 0.497314453125}, {"start": 402.92, "end": 402.96, "word": " there", "probability": 0.59521484375}, {"start": 402.96, "end": 403.22, "word": " is", "probability": 0.69921875}, {"start": 403.22, "end": 403.38, "word": " a", "probability": 0.82568359375}, {"start": 403.38, "end": 403.78, "word": " change", "probability": 0.8974609375}, {"start": 403.78, "end": 404.56, "word": " in", "probability": 0.837890625}, {"start": 404.56, "end": 404.86, "word": " this,", "probability": 0.88525390625}, {"start": 405.04, "end": 405.36, "word": " and", "probability": 0.9228515625}, {"start": 405.36, "end": 405.46, "word": " the", "probability": 0.7939453125}, {"start": 405.46, "end": 405.8, "word": " status", "probability": 0.78857421875}, {"start": 405.8, "end": 406.2, "word": " bar", "probability": 0.94970703125}, {"start": 406.2, "end": 406.64, "word": " writes", "probability": 0.23095703125}, {"start": 406.64, "end": 406.76, "word": " to", "probability": 0.46044921875}, {"start": 406.76, "end": 406.86, "word": " me,", "probability": 0.68798828125}, {"start": 407.04, "end": 407.04, "word": " for", "probability": 0.92578125}, {"start": 407.04, "end": 407.04, "word": " example,", "probability": 0.970703125}, {"start": 407.1, "end": 407.28, "word": " a", "probability": 0.51123046875}, {"start": 407.28, "end": 407.28, "word": " message", "probability": 0.89892578125}, {"start": 407.28, "end": 407.52, "word": " that", "probability": 0.76318359375}, {"start": 407.52, "end": 407.6, "word": " it", "probability": 0.257568359375}, {"start": 407.6, "end": 407.76, "word": " was", "probability": 0.6845703125}, {"start": 407.76, "end": 408.02, "word": " done", "probability": 0.81787109375}, {"start": 408.02, "end": 408.26, "word": " this", "probability": 0.461669921875}, {"start": 408.26, "end": 408.42, "word": " and", "probability": 0.281494140625}, {"start": 408.42, "end": 408.62, "word": " that,", "probability": 0.79052734375}, {"start": 408.76, "end": 408.92, "word": " this", "probability": 0.5205078125}, {"start": 408.92, "end": 409.18, "word": " happens", "probability": 0.55517578125}, {"start": 409.18, "end": 409.34, "word": " in", "probability": 0.55078125}, {"start": 409.34, "end": 409.72, "word": " three", "probability": 0.8271484375}], "temperature": 1.0}, {"id": 18, "seek": 43745, "start": 410.47, "end": 437.45, "text": "means that one change here in this part affected whom? on these three parts one-to-many dependency relation one element changes and affects many other elements present this scenario can be found in many applications the need to maintain consistency between related objects without making classes tightly coupled", "tokens": [1398, 599, 300, 472, 1319, 510, 294, 341, 644, 8028, 7101, 30, 322, 613, 1045, 3166, 472, 12, 1353, 12, 76, 1325, 33621, 9721, 472, 4478, 2962, 293, 11807, 867, 661, 4959, 1974, 341, 9005, 393, 312, 1352, 294, 867, 5821, 264, 643, 281, 6909, 14416, 1296, 4077, 6565, 1553, 1455, 5359, 21952, 29482], "avg_logprob": -0.4772727207704024, "compression_ratio": 1.6455026455026456, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 410.47, "end": 410.81, "word": "means", "probability": 0.45294189453125}, {"start": 410.81, "end": 410.91, "word": " that", "probability": 0.37744140625}, {"start": 410.91, "end": 411.53, "word": " one", "probability": 0.290771484375}, {"start": 411.53, "end": 411.75, "word": " change", "probability": 0.8359375}, {"start": 411.75, "end": 412.73, "word": " here", "probability": 0.294189453125}, {"start": 412.73, "end": 412.89, "word": " in", "probability": 0.476318359375}, {"start": 412.89, "end": 413.71, "word": " this", "probability": 0.82666015625}, {"start": 413.71, "end": 413.95, "word": " part", "probability": 0.52197265625}, {"start": 413.95, "end": 414.35, "word": " affected", "probability": 0.404052734375}, {"start": 414.35, "end": 414.75, "word": " whom?", "probability": 0.1802978515625}, {"start": 415.35, "end": 415.47, "word": " on", "probability": 0.43310546875}, {"start": 415.47, "end": 415.63, "word": " these", "probability": 0.57275390625}, {"start": 415.63, "end": 416.25, "word": " three", "probability": 0.75341796875}, {"start": 416.25, "end": 416.37, "word": " parts", "probability": 0.7724609375}, {"start": 416.37, "end": 418.17, "word": " one", "probability": 0.716796875}, {"start": 418.17, "end": 418.33, "word": "-to", "probability": 0.60986328125}, {"start": 418.33, "end": 418.57, "word": "-many", "probability": 0.9241536458333334}, {"start": 418.57, "end": 419.53, "word": " dependency", "probability": 0.869140625}, {"start": 419.53, "end": 420.81, "word": " relation", "probability": 0.93505859375}, {"start": 420.81, "end": 422.13, "word": " one", "probability": 0.2222900390625}, {"start": 422.13, "end": 422.57, "word": " element", "probability": 0.82275390625}, {"start": 422.57, "end": 423.11, "word": " changes", "probability": 0.572265625}, {"start": 423.11, "end": 423.35, "word": " and", "probability": 0.392578125}, {"start": 423.35, "end": 423.65, "word": " affects", "probability": 0.5380859375}, {"start": 423.65, "end": 424.57, "word": " many", "probability": 0.638671875}, {"start": 424.57, "end": 425.47, "word": " other", "probability": 0.654296875}, {"start": 425.47, "end": 425.63, "word": " elements", "probability": 0.78564453125}, {"start": 425.63, "end": 426.37, "word": " present", "probability": 0.255859375}, {"start": 426.37, "end": 427.35, "word": " this", "probability": 0.61181640625}, {"start": 427.35, "end": 427.91, "word": " scenario", "probability": 0.689453125}, {"start": 427.91, "end": 428.61, "word": " can", "probability": 0.4658203125}, {"start": 428.61, "end": 429.03, "word": " be", "probability": 0.65185546875}, {"start": 429.03, "end": 429.27, "word": " found", "probability": 0.70751953125}, {"start": 429.27, "end": 429.47, "word": " in", "probability": 0.9072265625}, {"start": 429.47, "end": 430.53, "word": " many", "probability": 0.50244140625}, {"start": 430.53, "end": 431.51, "word": " applications", "probability": 0.5224609375}, {"start": 431.51, "end": 432.69, "word": " the", "probability": 0.794921875}, {"start": 432.69, "end": 432.93, "word": " need", "probability": 0.94580078125}, {"start": 432.93, "end": 433.11, "word": " to", "probability": 0.9736328125}, {"start": 433.11, "end": 433.43, "word": " maintain", "probability": 0.8427734375}, {"start": 433.43, "end": 434.21, "word": " consistency", "probability": 0.87158203125}, {"start": 434.21, "end": 434.57, "word": " between", "probability": 0.88232421875}, {"start": 434.57, "end": 434.99, "word": " related", "probability": 0.9580078125}, {"start": 434.99, "end": 435.41, "word": " objects", "probability": 0.95703125}, {"start": 435.41, "end": 435.79, "word": " without", "probability": 0.904296875}, {"start": 435.79, "end": 436.21, "word": " making", "probability": 0.9189453125}, {"start": 436.21, "end": 436.71, "word": " classes", "probability": 0.9111328125}, {"start": 436.71, "end": 437.13, "word": " tightly", "probability": 0.97412109375}, {"start": 437.13, "end": 437.45, "word": " coupled", "probability": 0.86572265625}], "temperature": 1.0}, {"id": 19, "seek": 45469, "start": 438.19, "end": 454.69, "text": "Now, the main goal is that I have to implement this relationship, but at the same time, I shouldn't have a high coupling, okay? This is the main goal. How will there be a high coupling?", "tokens": [13267, 11, 264, 2135, 3387, 307, 300, 286, 362, 281, 4445, 341, 2480, 11, 457, 412, 264, 912, 565, 11, 286, 4659, 380, 362, 257, 1090, 37447, 11, 1392, 30, 639, 307, 264, 2135, 3387, 13, 1012, 486, 456, 312, 257, 1090, 37447, 30], "avg_logprob": -0.5253472275204129, "compression_ratio": 1.4122137404580153, "no_speech_prob": 2.682209014892578e-06, "words": [{"start": 438.19, "end": 438.55, "word": "Now,", "probability": 0.323974609375}, {"start": 438.59, "end": 438.67, "word": " the", "probability": 0.76025390625}, {"start": 438.67, "end": 439.17, "word": " main", "probability": 0.76123046875}, {"start": 439.17, "end": 439.33, "word": " goal", "probability": 0.61181640625}, {"start": 439.33, "end": 439.87, "word": " is", "probability": 0.501953125}, {"start": 439.87, "end": 440.05, "word": " that", "probability": 0.615234375}, {"start": 440.05, "end": 440.27, "word": " I", "probability": 0.90283203125}, {"start": 440.27, "end": 441.57, "word": " have", "probability": 0.40673828125}, {"start": 441.57, "end": 441.67, "word": " to", "probability": 0.9677734375}, {"start": 441.67, "end": 442.07, "word": " implement", "probability": 0.1456298828125}, {"start": 442.07, "end": 442.35, "word": " this", "probability": 0.64306640625}, {"start": 442.35, "end": 442.75, "word": " relationship,", "probability": 0.413330078125}, {"start": 442.87, "end": 444.59, "word": " but", "probability": 0.55517578125}, {"start": 444.59, "end": 445.41, "word": " at", "probability": 0.77099609375}, {"start": 445.41, "end": 445.65, "word": " the", "probability": 0.9208984375}, {"start": 445.65, "end": 445.65, "word": " same", "probability": 0.9052734375}, {"start": 445.65, "end": 446.09, "word": " time,", "probability": 0.88671875}, {"start": 446.43, "end": 446.43, "word": " I", "probability": 0.477783203125}, {"start": 446.43, "end": 446.67, "word": " shouldn't", "probability": 0.6300048828125}, {"start": 446.67, "end": 446.93, "word": " have", "probability": 0.7529296875}, {"start": 446.93, "end": 447.87, "word": " a", "probability": 0.33251953125}, {"start": 447.87, "end": 448.03, "word": " high", "probability": 0.76611328125}, {"start": 448.03, "end": 448.41, "word": " coupling,", "probability": 0.98583984375}, {"start": 449.11, "end": 449.39, "word": " okay?", "probability": 0.302734375}, {"start": 450.61, "end": 450.85, "word": " This", "probability": 0.5703125}, {"start": 450.85, "end": 450.93, "word": " is", "probability": 0.939453125}, {"start": 450.93, "end": 450.97, "word": " the", "probability": 0.8466796875}, {"start": 450.97, "end": 450.97, "word": " main", "probability": 0.91015625}, {"start": 450.97, "end": 451.79, "word": " goal.", "probability": 0.88916015625}, {"start": 453.31, "end": 453.83, "word": " How", "probability": 0.91455078125}, {"start": 453.83, "end": 454.01, "word": " will", "probability": 0.2578125}, {"start": 454.01, "end": 454.11, "word": " there", "probability": 0.30908203125}, {"start": 454.11, "end": 454.23, "word": " be", "probability": 0.95458984375}, {"start": 454.23, "end": 454.29, "word": " a", "probability": 0.75537109375}, {"start": 454.29, "end": 454.43, "word": " high", "probability": 0.92138671875}, {"start": 454.43, "end": 454.69, "word": " coupling?", "probability": 0.98388671875}], "temperature": 1.0}, {"id": 20, "seek": 47733, "start": 456.91, "end": 477.33, "text": "this scenario that we talked about when an element affects the change on other elements let's see how we can do it with a very simple example programmatically the example that I am going to present is not very practical okay it is just for clarification in the next lecture we will see a more practical example application okay we want to show in this example how I have a component", "tokens": [11176, 9005, 300, 321, 2825, 466, 562, 364, 4478, 11807, 264, 1319, 322, 661, 4959, 718, 311, 536, 577, 321, 393, 360, 309, 365, 257, 588, 2199, 1365, 37648, 5030, 264, 1365, 300, 286, 669, 516, 281, 1974, 307, 406, 588, 8496, 1392, 309, 307, 445, 337, 34449, 294, 264, 958, 7991, 321, 486, 536, 257, 544, 8496, 1365, 3861, 1392, 321, 528, 281, 855, 294, 341, 1365, 577, 286, 362, 257, 6542], "avg_logprob": -0.45523648447281606, "compression_ratio": 1.7522935779816513, "no_speech_prob": 6.4373016357421875e-06, "words": [{"start": 456.90999999999997, "end": 457.39, "word": "this", "probability": 0.2435302734375}, {"start": 457.39, "end": 457.87, "word": " scenario", "probability": 0.56884765625}, {"start": 457.87, "end": 457.95, "word": " that", "probability": 0.344482421875}, {"start": 457.95, "end": 458.09, "word": " we", "probability": 0.86083984375}, {"start": 458.09, "end": 458.31, "word": " talked", "probability": 0.47705078125}, {"start": 458.31, "end": 458.51, "word": " about", "probability": 0.89892578125}, {"start": 458.51, "end": 458.73, "word": " when", "probability": 0.41650390625}, {"start": 458.73, "end": 458.91, "word": " an", "probability": 0.62451171875}, {"start": 458.91, "end": 459.23, "word": " element", "probability": 0.9619140625}, {"start": 459.23, "end": 459.93, "word": " affects", "probability": 0.40380859375}, {"start": 459.93, "end": 460.09, "word": " the", "probability": 0.306396484375}, {"start": 460.09, "end": 460.37, "word": " change", "probability": 0.36962890625}, {"start": 460.37, "end": 460.81, "word": " on", "probability": 0.385009765625}, {"start": 460.81, "end": 460.91, "word": " other", "probability": 0.7216796875}, {"start": 460.91, "end": 461.51, "word": " elements", "probability": 0.8603515625}, {"start": 461.51, "end": 461.77, "word": " let's", "probability": 0.58203125}, {"start": 461.77, "end": 461.95, "word": " see", "probability": 0.87451171875}, {"start": 461.95, "end": 462.13, "word": " how", "probability": 0.9169921875}, {"start": 462.13, "end": 462.35, "word": " we", "probability": 0.845703125}, {"start": 462.35, "end": 462.61, "word": " can", "probability": 0.91845703125}, {"start": 462.61, "end": 462.85, "word": " do", "probability": 0.70849609375}, {"start": 462.85, "end": 463.05, "word": " it", "probability": 0.8388671875}, {"start": 463.05, "end": 463.23, "word": " with", "probability": 0.5302734375}, {"start": 463.23, "end": 463.31, "word": " a", "probability": 0.8388671875}, {"start": 463.31, "end": 463.55, "word": " very", "probability": 0.681640625}, {"start": 463.55, "end": 463.93, "word": " simple", "probability": 0.90869140625}, {"start": 463.93, "end": 464.35, "word": " example", "probability": 0.72607421875}, {"start": 464.35, "end": 464.89, "word": " programmatically", "probability": 0.662109375}, {"start": 464.89, "end": 465.55, "word": " the", "probability": 0.69384765625}, {"start": 465.55, "end": 465.81, "word": " example", "probability": 0.97119140625}, {"start": 465.81, "end": 465.95, "word": " that", "probability": 0.65771484375}, {"start": 465.95, "end": 466.53, "word": " I", "probability": 0.931640625}, {"start": 466.53, "end": 466.53, "word": " am", "probability": 0.1856689453125}, {"start": 466.53, "end": 466.53, "word": " going", "probability": 0.52099609375}, {"start": 466.53, "end": 466.59, "word": " to", "probability": 0.97119140625}, {"start": 466.59, "end": 466.81, "word": " present", "probability": 0.3232421875}, {"start": 466.81, "end": 467.01, "word": " is", "probability": 0.8095703125}, {"start": 467.01, "end": 467.11, "word": " not", "probability": 0.91357421875}, {"start": 467.11, "end": 467.17, "word": " very", "probability": 0.41845703125}, {"start": 467.17, "end": 467.43, "word": " practical", "probability": 0.94287109375}, {"start": 467.43, "end": 468.59, "word": " okay", "probability": 0.2164306640625}, {"start": 468.59, "end": 468.83, "word": " it", "probability": 0.490966796875}, {"start": 468.83, "end": 468.93, "word": " is", "probability": 0.61279296875}, {"start": 468.93, "end": 469.09, "word": " just", "probability": 0.7294921875}, {"start": 469.09, "end": 469.29, "word": " for", "probability": 0.52197265625}, {"start": 469.29, "end": 469.79, "word": " clarification", "probability": 0.8876953125}, {"start": 469.79, "end": 470.45, "word": " in", "probability": 0.466064453125}, {"start": 470.45, "end": 470.49, "word": " the", "probability": 0.81787109375}, {"start": 470.49, "end": 470.93, "word": " next", "probability": 0.5}, {"start": 470.93, "end": 470.93, "word": " lecture", "probability": 0.7802734375}, {"start": 470.93, "end": 471.13, "word": " we", "probability": 0.67236328125}, {"start": 471.13, "end": 471.13, "word": " will", "probability": 0.7470703125}, {"start": 471.13, "end": 471.25, "word": " see", "probability": 0.85791015625}, {"start": 471.25, "end": 471.35, "word": " a", "probability": 0.72900390625}, {"start": 471.35, "end": 471.63, "word": " more", "probability": 0.7490234375}, {"start": 471.63, "end": 472.17, "word": " practical", "probability": 0.9345703125}, {"start": 472.17, "end": 472.17, "word": " example", "probability": 0.802734375}, {"start": 472.17, "end": 472.57, "word": " application", "probability": 0.2337646484375}, {"start": 472.57, "end": 473.51, "word": " okay", "probability": 0.53857421875}, {"start": 473.51, "end": 474.57, "word": " we", "probability": 0.693359375}, {"start": 474.57, "end": 474.73, "word": " want", "probability": 0.490478515625}, {"start": 474.73, "end": 474.81, "word": " to", "probability": 0.96435546875}, {"start": 474.81, "end": 475.05, "word": " show", "probability": 0.80908203125}, {"start": 475.05, "end": 475.23, "word": " in", "probability": 0.5244140625}, {"start": 475.23, "end": 475.35, "word": " this", "probability": 0.572265625}, {"start": 475.35, "end": 475.63, "word": " example", "probability": 0.9716796875}, {"start": 475.63, "end": 476.11, "word": " how", "probability": 0.806640625}, {"start": 476.11, "end": 476.45, "word": " I", "probability": 0.80029296875}, {"start": 476.45, "end": 476.77, "word": " have", "probability": 0.943359375}, {"start": 476.77, "end": 476.89, "word": " a", "probability": 0.76025390625}, {"start": 476.89, "end": 477.33, "word": " component", "probability": 0.90234375}], "temperature": 1.0}, {"id": 21, "seek": 50212, "start": 478.92, "end": 502.12, "text": " how to make the component report by updating multiple components and how to design it in a bad way to see how the design is bad and how to improve this design by using the observer pattern because we have not seen the problem yet we are talking about using the observer if I have an element whose change affects", "tokens": [577, 281, 652, 264, 6542, 2275, 538, 25113, 3866, 6677, 293, 577, 281, 1715, 309, 294, 257, 1578, 636, 281, 536, 577, 264, 1715, 307, 1578, 293, 577, 281, 3470, 341, 1715, 538, 1228, 264, 27878, 5102, 570, 321, 362, 406, 1612, 264, 1154, 1939, 321, 366, 1417, 466, 1228, 264, 27878, 498, 286, 362, 364, 4478, 6104, 1319, 11807], "avg_logprob": -0.5753073926831855, "compression_ratio": 1.7727272727272727, "no_speech_prob": 9.119510650634766e-06, "words": [{"start": 478.92, "end": 479.48, "word": " how", "probability": 0.048065185546875}, {"start": 479.48, "end": 479.84, "word": " to", "probability": 0.47216796875}, {"start": 479.84, "end": 480.0, "word": " make", "probability": 0.423828125}, {"start": 480.0, "end": 480.12, "word": " the", "probability": 0.372314453125}, {"start": 480.12, "end": 480.62, "word": " component", "probability": 0.705078125}, {"start": 480.62, "end": 481.54, "word": " report", "probability": 0.1319580078125}, {"start": 481.54, "end": 482.18, "word": " by", "probability": 0.211181640625}, {"start": 482.18, "end": 482.76, "word": " updating", "probability": 0.8427734375}, {"start": 482.76, "end": 482.94, "word": " multiple", "probability": 0.32373046875}, {"start": 482.94, "end": 483.78, "word": " components", "probability": 0.68994140625}, {"start": 483.78, "end": 485.34, "word": " and", "probability": 0.320556640625}, {"start": 485.34, "end": 487.08, "word": " how", "probability": 0.84033203125}, {"start": 487.08, "end": 487.36, "word": " to", "probability": 0.73388671875}, {"start": 487.36, "end": 487.76, "word": " design", "probability": 0.943359375}, {"start": 487.76, "end": 487.96, "word": " it", "probability": 0.638671875}, {"start": 487.96, "end": 488.48, "word": " in", "probability": 0.402099609375}, {"start": 488.48, "end": 488.84, "word": " a", "probability": 0.70458984375}, {"start": 488.84, "end": 488.9, "word": " bad", "probability": 0.49072265625}, {"start": 488.9, "end": 489.66, "word": " way", "probability": 0.82373046875}, {"start": 489.66, "end": 490.0, "word": " to", "probability": 0.1953125}, {"start": 490.0, "end": 490.14, "word": " see", "probability": 0.483154296875}, {"start": 490.14, "end": 490.36, "word": " how", "probability": 0.7392578125}, {"start": 490.36, "end": 490.48, "word": " the", "probability": 0.49169921875}, {"start": 490.48, "end": 490.74, "word": " design", "probability": 0.91796875}, {"start": 490.74, "end": 490.96, "word": " is", "probability": 0.640625}, {"start": 490.96, "end": 491.36, "word": " bad", "probability": 0.814453125}, {"start": 491.36, "end": 492.2, "word": " and", "probability": 0.75830078125}, {"start": 492.2, "end": 492.4, "word": " how", "probability": 0.7890625}, {"start": 492.4, "end": 492.5, "word": " to", "probability": 0.87841796875}, {"start": 492.5, "end": 492.8, "word": " improve", "probability": 0.6103515625}, {"start": 492.8, "end": 493.02, "word": " this", "probability": 0.36328125}, {"start": 493.02, "end": 493.4, "word": " design", "probability": 0.91845703125}, {"start": 493.4, "end": 493.68, "word": " by", "probability": 0.468505859375}, {"start": 493.68, "end": 494.62, "word": " using", "probability": 0.9150390625}, {"start": 494.62, "end": 494.94, "word": " the", "probability": 0.66943359375}, {"start": 494.94, "end": 495.28, "word": " observer", "probability": 0.6962890625}, {"start": 495.28, "end": 495.62, "word": " pattern", "probability": 0.8916015625}, {"start": 495.62, "end": 495.84, "word": " because", "probability": 0.61669921875}, {"start": 495.84, "end": 496.24, "word": " we", "probability": 0.86865234375}, {"start": 496.24, "end": 496.28, "word": " have", "probability": 0.31689453125}, {"start": 496.28, "end": 496.36, "word": " not", "probability": 0.9150390625}, {"start": 496.36, "end": 496.58, "word": " seen", "probability": 0.7373046875}, {"start": 496.58, "end": 496.74, "word": " the", "probability": 0.85302734375}, {"start": 496.74, "end": 497.0, "word": " problem", "probability": 0.83740234375}, {"start": 497.0, "end": 497.1, "word": " yet", "probability": 0.70458984375}, {"start": 497.1, "end": 497.22, "word": " we", "probability": 0.45556640625}, {"start": 497.22, "end": 497.42, "word": " are", "probability": 0.33837890625}, {"start": 497.42, "end": 497.68, "word": " talking", "probability": 0.54296875}, {"start": 497.68, "end": 498.52, "word": " about", "probability": 0.7490234375}, {"start": 498.52, "end": 499.14, "word": " using", "probability": 0.71337890625}, {"start": 499.14, "end": 499.28, "word": " the", "probability": 0.7587890625}, {"start": 499.28, "end": 499.66, "word": " observer", "probability": 0.7783203125}, {"start": 499.66, "end": 499.96, "word": " if", "probability": 0.2325439453125}, {"start": 499.96, "end": 500.54, "word": " I", "probability": 0.67041015625}, {"start": 500.54, "end": 500.76, "word": " have", "probability": 0.91943359375}, {"start": 500.76, "end": 500.94, "word": " an", "probability": 0.367431640625}, {"start": 500.94, "end": 501.1, "word": " element", "probability": 0.8935546875}, {"start": 501.1, "end": 501.34, "word": " whose", "probability": 0.424072265625}, {"start": 501.34, "end": 501.62, "word": " change", "probability": 0.8232421875}, {"start": 501.62, "end": 502.12, "word": " affects", "probability": 0.724609375}], "temperature": 1.0}, {"id": 22, "seek": 53304, "start": 505.31, "end": 533.05, "text": " Where is the existing problem? We still don't understand the problem. When we work on this implementation, problems will appear. Now, in my application, I imagine the following. This component here, I consider it a class, for example, called A. And this is B, C,", "tokens": [2305, 307, 264, 6741, 1154, 30, 492, 920, 500, 380, 1223, 264, 1154, 13, 1133, 321, 589, 322, 341, 11420, 11, 2740, 486, 4204, 13, 823, 11, 294, 452, 3861, 11, 286, 3811, 264, 3480, 13, 639, 6542, 510, 11, 286, 1949, 309, 257, 1508, 11, 337, 1365, 11, 1219, 316, 13, 400, 341, 307, 363, 11, 383, 11], "avg_logprob": -0.6161458502213161, "compression_ratio": 1.461111111111111, "no_speech_prob": 1.1742115020751953e-05, "words": [{"start": 505.30999999999995, "end": 505.84999999999997, "word": " Where", "probability": 0.039031982421875}, {"start": 505.84999999999997, "end": 506.39, "word": " is", "probability": 0.7734375}, {"start": 506.39, "end": 506.45, "word": " the", "probability": 0.80322265625}, {"start": 506.45, "end": 507.03, "word": " existing", "probability": 0.51416015625}, {"start": 507.03, "end": 507.03, "word": " problem?", "probability": 0.787109375}, {"start": 507.33, "end": 507.67, "word": " We", "probability": 0.5302734375}, {"start": 507.67, "end": 507.67, "word": " still", "probability": 0.31640625}, {"start": 507.67, "end": 507.89, "word": " don't", "probability": 0.75927734375}, {"start": 507.89, "end": 508.11, "word": " understand", "probability": 0.39453125}, {"start": 508.11, "end": 508.29, "word": " the", "probability": 0.50927734375}, {"start": 508.29, "end": 508.49, "word": " problem.", "probability": 0.814453125}, {"start": 508.59, "end": 508.71, "word": " When", "probability": 0.61328125}, {"start": 508.71, "end": 508.95, "word": " we", "probability": 0.89453125}, {"start": 508.95, "end": 509.25, "word": " work", "probability": 0.1197509765625}, {"start": 509.25, "end": 509.45, "word": " on", "probability": 0.80908203125}, {"start": 509.45, "end": 509.57, "word": " this", "probability": 0.544921875}, {"start": 509.57, "end": 510.33, "word": " implementation,", "probability": 0.8271484375}, {"start": 511.39, "end": 511.59, "word": " problems", "probability": 0.299072265625}, {"start": 511.59, "end": 513.23, "word": " will", "probability": 0.8212890625}, {"start": 513.23, "end": 513.23, "word": " appear.", "probability": 0.2061767578125}, {"start": 517.45, "end": 517.99, "word": " Now,", "probability": 0.26416015625}, {"start": 518.09, "end": 518.15, "word": " in", "probability": 0.61181640625}, {"start": 518.15, "end": 518.23, "word": " my", "probability": 0.77294921875}, {"start": 518.23, "end": 518.71, "word": " application,", "probability": 0.7998046875}, {"start": 518.95, "end": 518.95, "word": " I", "probability": 0.6484375}, {"start": 518.95, "end": 519.35, "word": " imagine", "probability": 0.253173828125}, {"start": 519.35, "end": 519.57, "word": " the", "probability": 0.384765625}, {"start": 519.57, "end": 519.81, "word": " following.", "probability": 0.857421875}, {"start": 523.69, "end": 524.23, "word": " This", "probability": 0.73193359375}, {"start": 524.23, "end": 524.95, "word": " component", "probability": 0.833984375}, {"start": 524.95, "end": 525.55, "word": " here,", "probability": 0.63916015625}, {"start": 526.91, "end": 527.49, "word": " I", "probability": 0.74853515625}, {"start": 527.49, "end": 527.85, "word": " consider", "probability": 0.38623046875}, {"start": 527.85, "end": 528.09, "word": " it", "probability": 0.33349609375}, {"start": 528.09, "end": 528.15, "word": " a", "probability": 0.41552734375}, {"start": 528.15, "end": 528.49, "word": " class,", "probability": 0.94775390625}, {"start": 528.61, "end": 528.71, "word": " for", "probability": 0.73974609375}, {"start": 528.71, "end": 528.87, "word": " example,", "probability": 0.9482421875}, {"start": 528.97, "end": 529.25, "word": " called", "probability": 0.392578125}, {"start": 529.25, "end": 530.61, "word": " A.", "probability": 0.634765625}, {"start": 530.79, "end": 531.33, "word": " And", "probability": 0.65576171875}, {"start": 531.33, "end": 531.53, "word": " this", "probability": 0.81640625}, {"start": 531.53, "end": 531.57, "word": " is", "probability": 0.759765625}, {"start": 531.57, "end": 531.83, "word": " B,", "probability": 0.97607421875}, {"start": 532.63, "end": 533.05, "word": " C,", "probability": 0.7734375}], "temperature": 1.0}, {"id": 23, "seek": 55062, "start": 534.26, "end": 550.62, "text": "D. Okay? It is supposed that A had a change when I sent him data. It is supposed that A reported these changes to B, C and D. Okay? So now I want to remove these components. I want to remove A class named A.", "tokens": [35, 13, 1033, 30, 467, 307, 3442, 300, 316, 632, 257, 1319, 562, 286, 2279, 796, 1412, 13, 467, 307, 3442, 300, 316, 7055, 613, 2962, 281, 363, 11, 383, 293, 413, 13, 1033, 30, 407, 586, 286, 528, 281, 4159, 613, 6677, 13, 286, 528, 281, 4159, 316, 1508, 4926, 316, 13], "avg_logprob": -0.6180555665934527, "compression_ratio": 1.556390977443609, "no_speech_prob": 2.8192996978759766e-05, "words": [{"start": 534.26, "end": 534.66, "word": "D.", "probability": 0.2822265625}, {"start": 535.4, "end": 535.48, "word": " Okay?", "probability": 0.2305908203125}, {"start": 536.02, "end": 536.1, "word": " It", "probability": 0.1392822265625}, {"start": 536.1, "end": 536.2, "word": " is", "probability": 0.364990234375}, {"start": 536.2, "end": 536.44, "word": " supposed", "probability": 0.69482421875}, {"start": 536.44, "end": 536.92, "word": " that", "probability": 0.7451171875}, {"start": 536.92, "end": 537.22, "word": " A", "probability": 0.544921875}, {"start": 537.22, "end": 538.78, "word": " had", "probability": 0.08380126953125}, {"start": 538.78, "end": 538.94, "word": " a", "probability": 0.3798828125}, {"start": 538.94, "end": 539.22, "word": " change", "probability": 0.85986328125}, {"start": 539.22, "end": 539.42, "word": " when", "probability": 0.231689453125}, {"start": 539.42, "end": 539.5, "word": " I", "probability": 0.89208984375}, {"start": 539.5, "end": 539.8, "word": " sent", "probability": 0.609375}, {"start": 539.8, "end": 539.92, "word": " him", "probability": 0.8671875}, {"start": 539.92, "end": 540.18, "word": " data.", "probability": 0.4609375}, {"start": 540.3, "end": 540.36, "word": " It", "probability": 0.40966796875}, {"start": 540.36, "end": 540.44, "word": " is", "probability": 0.83349609375}, {"start": 540.44, "end": 540.56, "word": " supposed", "probability": 0.8974609375}, {"start": 540.56, "end": 540.7, "word": " that", "probability": 0.916015625}, {"start": 540.7, "end": 540.82, "word": " A", "probability": 0.8935546875}, {"start": 540.82, "end": 541.14, "word": " reported", "probability": 0.136474609375}, {"start": 541.14, "end": 541.3, "word": " these", "probability": 0.58447265625}, {"start": 541.3, "end": 541.98, "word": " changes", "probability": 0.529296875}, {"start": 541.98, "end": 543.04, "word": " to", "probability": 0.5458984375}, {"start": 543.04, "end": 543.28, "word": " B,", "probability": 0.89306640625}, {"start": 543.42, "end": 543.74, "word": " C", "probability": 0.7822265625}, {"start": 543.74, "end": 544.56, "word": " and", "probability": 0.6318359375}, {"start": 544.56, "end": 544.8, "word": " D.", "probability": 0.99365234375}, {"start": 545.04, "end": 545.42, "word": " Okay?", "probability": 0.75830078125}, {"start": 546.62, "end": 547.02, "word": " So", "probability": 0.60986328125}, {"start": 547.02, "end": 547.2, "word": " now", "probability": 0.65869140625}, {"start": 547.2, "end": 547.4, "word": " I", "probability": 0.63623046875}, {"start": 547.4, "end": 547.54, "word": " want", "probability": 0.175537109375}, {"start": 547.54, "end": 547.68, "word": " to", "probability": 0.9560546875}, {"start": 547.68, "end": 547.78, "word": " remove", "probability": 0.1707763671875}, {"start": 547.78, "end": 547.9, "word": " these", "probability": 0.806640625}, {"start": 547.9, "end": 548.36, "word": " components.", "probability": 0.87939453125}, {"start": 548.56, "end": 548.64, "word": " I", "probability": 0.91162109375}, {"start": 548.64, "end": 548.78, "word": " want", "probability": 0.8076171875}, {"start": 548.78, "end": 548.88, "word": " to", "probability": 0.96240234375}, {"start": 548.88, "end": 549.02, "word": " remove", "probability": 0.9033203125}, {"start": 549.02, "end": 549.36, "word": " A", "probability": 0.2435302734375}, {"start": 549.36, "end": 550.04, "word": " class", "probability": 0.849609375}, {"start": 550.04, "end": 550.34, "word": " named", "probability": 0.267822265625}, {"start": 550.34, "end": 550.62, "word": " A.", "probability": 0.84228515625}], "temperature": 1.0}, {"id": 24, "seek": 57971, "start": 561.75, "end": 579.71, "text": "Four different components A, B, C, D And I also want to make a main method so that in the end we will run everything from here", "tokens": [37, 396, 819, 6677, 316, 11, 363, 11, 383, 11, 413, 400, 286, 611, 528, 281, 652, 257, 2135, 3170, 370, 300, 294, 264, 917, 321, 486, 1190, 1203, 490, 510], "avg_logprob": -0.43701172061264515, "compression_ratio": 1.1775700934579438, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 561.75, "end": 562.13, "word": "Four", "probability": 0.55999755859375}, {"start": 562.13, "end": 562.25, "word": " different", "probability": 0.6279296875}, {"start": 562.25, "end": 563.13, "word": " components", "probability": 0.87646484375}, {"start": 563.13, "end": 563.61, "word": " A,", "probability": 0.56298828125}, {"start": 563.73, "end": 563.89, "word": " B,", "probability": 0.51171875}, {"start": 564.11, "end": 564.39, "word": " C,", "probability": 0.96337890625}, {"start": 564.95, "end": 565.75, "word": " D", "probability": 0.81298828125}, {"start": 565.75, "end": 574.01, "word": " And", "probability": 0.342529296875}, {"start": 574.01, "end": 574.21, "word": " I", "probability": 0.8955078125}, {"start": 574.21, "end": 574.39, "word": " also", "probability": 0.309326171875}, {"start": 574.39, "end": 574.39, "word": " want", "probability": 0.7041015625}, {"start": 574.39, "end": 574.59, "word": " to", "probability": 0.96923828125}, {"start": 574.59, "end": 574.81, "word": " make", "probability": 0.3896484375}, {"start": 574.81, "end": 575.31, "word": " a", "probability": 0.6962890625}, {"start": 575.31, "end": 575.49, "word": " main", "probability": 0.81689453125}, {"start": 575.49, "end": 575.89, "word": " method", "probability": 0.96484375}, {"start": 575.89, "end": 576.27, "word": " so", "probability": 0.305419921875}, {"start": 576.27, "end": 576.51, "word": " that", "probability": 0.791015625}, {"start": 576.51, "end": 576.55, "word": " in", "probability": 0.3828125}, {"start": 576.55, "end": 576.65, "word": " the", "probability": 0.91650390625}, {"start": 576.65, "end": 576.85, "word": " end", "probability": 0.87841796875}, {"start": 576.85, "end": 577.21, "word": " we", "probability": 0.6640625}, {"start": 577.21, "end": 578.65, "word": " will", "probability": 0.340087890625}, {"start": 578.65, "end": 578.89, "word": " run", "probability": 0.67236328125}, {"start": 578.89, "end": 579.19, "word": " everything", "probability": 0.92236328125}, {"start": 579.19, "end": 579.51, "word": " from", "probability": 0.86572265625}, {"start": 579.51, "end": 579.71, "word": " here", "probability": 0.84716796875}], "temperature": 1.0}, {"id": 25, "seek": 59253, "start": 592.19, "end": 592.53, "text": " Okay.", "tokens": [1033, 13], "avg_logprob": -0.783203125, "compression_ratio": 0.42857142857142855, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 592.19, "end": 592.53, "word": " Okay.", "probability": 0.1964111328125}], "temperature": 1.0}, {"id": 26, "seek": 64597, "start": 618.01, "end": 645.97, "text": " what did I do? I made 4 objects from these classes now method A or class A I will make method public void setdata string data this is the data in A, I called it setdata when A takes these data, the scenario I want A to report to whom", "tokens": [437, 630, 286, 360, 30, 286, 1027, 1017, 6565, 490, 613, 5359, 586, 3170, 316, 420, 1508, 316, 286, 486, 652, 3170, 1908, 22009, 992, 67, 3274, 6798, 1412, 341, 307, 264, 1412, 294, 316, 11, 286, 1219, 309, 992, 67, 3274, 562, 316, 2516, 613, 1412, 11, 264, 4191, 3504, 78, 286, 528, 316, 281, 2275, 281, 7101], "avg_logprob": -0.6052083492279052, "compression_ratio": 1.5294117647058822, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 618.01, "end": 618.25, "word": " what", "probability": 0.2216796875}, {"start": 618.25, "end": 618.35, "word": " did", "probability": 0.6220703125}, {"start": 618.35, "end": 618.35, "word": " I", "probability": 0.61328125}, {"start": 618.35, "end": 618.55, "word": " do?", "probability": 0.93603515625}, {"start": 618.67, "end": 618.75, "word": " I", "probability": 0.93896484375}, {"start": 618.75, "end": 618.91, "word": " made", "probability": 0.445556640625}, {"start": 618.91, "end": 619.23, "word": " 4", "probability": 0.53369140625}, {"start": 619.23, "end": 619.79, "word": " objects", "probability": 0.9443359375}, {"start": 619.79, "end": 620.81, "word": " from", "probability": 0.43505859375}, {"start": 620.81, "end": 621.17, "word": " these", "probability": 0.51220703125}, {"start": 621.17, "end": 621.57, "word": " classes", "probability": 0.85302734375}, {"start": 621.57, "end": 623.05, "word": " now", "probability": 0.417236328125}, {"start": 623.05, "end": 623.61, "word": " method", "probability": 0.3271484375}, {"start": 623.61, "end": 623.95, "word": " A", "probability": 0.44140625}, {"start": 623.95, "end": 624.69, "word": " or", "probability": 0.77099609375}, {"start": 624.69, "end": 625.09, "word": " class", "probability": 0.9169921875}, {"start": 625.09, "end": 625.39, "word": " A", "probability": 0.95751953125}, {"start": 625.39, "end": 627.35, "word": " I", "probability": 0.58056640625}, {"start": 627.35, "end": 627.41, "word": " will", "probability": 0.623046875}, {"start": 627.41, "end": 627.59, "word": " make", "probability": 0.61767578125}, {"start": 627.59, "end": 628.19, "word": " method", "probability": 0.6484375}, {"start": 628.19, "end": 629.31, "word": " public", "probability": 0.74267578125}, {"start": 629.31, "end": 629.99, "word": " void", "probability": 0.89892578125}, {"start": 629.99, "end": 631.87, "word": " setdata", "probability": 0.6759033203125}, {"start": 631.87, "end": 634.31, "word": " string", "probability": 0.587890625}, {"start": 634.31, "end": 635.23, "word": " data", "probability": 0.89306640625}, {"start": 635.23, "end": 639.45, "word": " this", "probability": 0.403076171875}, {"start": 639.45, "end": 639.53, "word": " is", "probability": 0.77197265625}, {"start": 639.53, "end": 639.73, "word": " the", "probability": 0.62890625}, {"start": 639.73, "end": 639.73, "word": " data", "probability": 0.09014892578125}, {"start": 639.73, "end": 639.95, "word": " in", "probability": 0.68603515625}, {"start": 639.95, "end": 640.21, "word": " A,", "probability": 0.671875}, {"start": 640.27, "end": 640.33, "word": " I", "probability": 0.7734375}, {"start": 640.33, "end": 640.49, "word": " called", "probability": 0.20458984375}, {"start": 640.49, "end": 640.65, "word": " it", "probability": 0.86767578125}, {"start": 640.65, "end": 641.11, "word": " setdata", "probability": 0.92626953125}, {"start": 641.11, "end": 641.39, "word": " when", "probability": 0.828125}, {"start": 641.39, "end": 641.77, "word": " A", "probability": 0.92041015625}, {"start": 641.77, "end": 642.11, "word": " takes", "probability": 0.6123046875}, {"start": 642.11, "end": 642.33, "word": " these", "probability": 0.1571044921875}, {"start": 642.33, "end": 642.55, "word": " data,", "probability": 0.65087890625}, {"start": 642.77, "end": 642.93, "word": " the", "probability": 0.31787109375}, {"start": 642.93, "end": 644.27, "word": " scenario", "probability": 0.6426595052083334}, {"start": 644.27, "end": 644.35, "word": " I", "probability": 0.529296875}, {"start": 644.35, "end": 644.47, "word": " want", "probability": 0.73095703125}, {"start": 644.47, "end": 645.15, "word": " A", "probability": 0.11328125}, {"start": 645.15, "end": 645.33, "word": " to", "probability": 0.42724609375}, {"start": 645.33, "end": 645.59, "word": " report", "probability": 0.375}, {"start": 645.59, "end": 645.81, "word": " to", "probability": 0.73681640625}, {"start": 645.81, "end": 645.97, "word": " whom", "probability": 0.46875}], "temperature": 1.0}, {"id": 27, "seek": 65900, "start": 646.8, "end": 659.0, "text": "A should notify B, C and D", "tokens": [32, 820, 36560, 363, 11, 383, 293, 413], "avg_logprob": -0.5928819444444444, "compression_ratio": 0.7647058823529411, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 646.8, "end": 647.5, "word": "A", "probability": 0.03765869140625}, {"start": 647.5, "end": 652.6, "word": " should", "probability": 0.85791015625}, {"start": 652.6, "end": 654.24, "word": " notify", "probability": 0.962890625}, {"start": 654.24, "end": 656.56, "word": " B,", "probability": 0.86767578125}, {"start": 656.84, "end": 657.86, "word": " C", "probability": 0.6630859375}, {"start": 657.86, "end": 658.68, "word": " and", "probability": 0.59130859375}, {"start": 658.68, "end": 659.0, "word": " D", "probability": 0.9658203125}], "temperature": 1.0}, {"id": 28, "seek": 68919, "start": 664.37, "end": 689.19, "text": "I went to the main method, now I say a.setdata, for example, hello world, we want to send, did you find it? The a is supposed to be a by itself, from inside, you send these data to whom? To b and c and d, of course, this is not present inside the a right now. Well, how does the a, let's go back to the main method, how does the a reach b and c and d?", "tokens": [40, 1437, 281, 264, 2135, 3170, 11, 586, 286, 584, 257, 13, 3854, 67, 3274, 11, 337, 1365, 11, 7751, 1002, 11, 321, 528, 281, 2845, 11, 630, 291, 915, 309, 30, 440, 257, 307, 3442, 281, 312, 257, 538, 2564, 11, 490, 1854, 11, 291, 2845, 613, 1412, 281, 7101, 30, 1407, 272, 293, 269, 293, 274, 11, 295, 1164, 11, 341, 307, 406, 1974, 1854, 264, 257, 558, 586, 13, 1042, 11, 577, 775, 264, 257, 11, 718, 311, 352, 646, 281, 264, 2135, 3170, 11, 577, 775, 264, 257, 2524, 272, 293, 269, 293, 274, 30], "avg_logprob": -0.4562499976158142, "compression_ratio": 1.703883495145631, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 664.37, "end": 664.59, "word": "I", "probability": 0.5712890625}, {"start": 664.59, "end": 664.73, "word": " went", "probability": 0.58203125}, {"start": 664.73, "end": 664.85, "word": " to", "probability": 0.91650390625}, {"start": 664.85, "end": 664.93, "word": " the", "probability": 0.677734375}, {"start": 664.93, "end": 665.05, "word": " main", "probability": 0.8779296875}, {"start": 665.05, "end": 665.47, "word": " method,", "probability": 0.95361328125}, {"start": 665.55, "end": 665.83, "word": " now", "probability": 0.382568359375}, {"start": 665.83, "end": 666.05, "word": " I", "probability": 0.859375}, {"start": 666.05, "end": 666.31, "word": " say", "probability": 0.37548828125}, {"start": 666.31, "end": 666.75, "word": " a", "probability": 0.29052734375}, {"start": 666.75, "end": 670.15, "word": ".setdata,", "probability": 0.826904296875}, {"start": 670.41, "end": 670.69, "word": " for", "probability": 0.79931640625}, {"start": 670.69, "end": 670.95, "word": " example,", "probability": 0.94580078125}, {"start": 671.77, "end": 671.91, "word": " hello", "probability": 0.439453125}, {"start": 671.91, "end": 672.25, "word": " world,", "probability": 0.9658203125}, {"start": 672.51, "end": 672.57, "word": " we", "probability": 0.365234375}, {"start": 672.57, "end": 672.71, "word": " want", "probability": 0.498046875}, {"start": 672.71, "end": 672.87, "word": " to", "probability": 0.95068359375}, {"start": 672.87, "end": 672.95, "word": " send,", "probability": 0.736328125}, {"start": 673.07, "end": 673.15, "word": " did", "probability": 0.381591796875}, {"start": 673.15, "end": 673.19, "word": " you", "probability": 0.962890625}, {"start": 673.19, "end": 673.33, "word": " find", "probability": 0.5703125}, {"start": 673.33, "end": 673.55, "word": " it?", "probability": 0.338623046875}, {"start": 673.63, "end": 673.79, "word": " The", "probability": 0.286376953125}, {"start": 673.79, "end": 673.93, "word": " a", "probability": 0.72021484375}, {"start": 673.93, "end": 674.05, "word": " is", "probability": 0.479736328125}, {"start": 674.05, "end": 674.29, "word": " supposed", "probability": 0.8544921875}, {"start": 674.29, "end": 674.41, "word": " to", "probability": 0.94775390625}, {"start": 674.41, "end": 674.75, "word": " be", "probability": 0.455322265625}, {"start": 674.75, "end": 674.93, "word": " a", "probability": 0.1756591796875}, {"start": 674.93, "end": 675.13, "word": " by", "probability": 0.400390625}, {"start": 675.13, "end": 675.37, "word": " itself,", "probability": 0.6728515625}, {"start": 675.47, "end": 675.57, "word": " from", "probability": 0.53857421875}, {"start": 675.57, "end": 675.89, "word": " inside,", "probability": 0.595703125}, {"start": 676.03, "end": 676.15, "word": " you", "probability": 0.64990234375}, {"start": 676.15, "end": 676.33, "word": " send", "probability": 0.8115234375}, {"start": 676.33, "end": 677.33, "word": " these", "probability": 0.50390625}, {"start": 677.33, "end": 677.59, "word": " data", "probability": 0.814453125}, {"start": 677.59, "end": 677.95, "word": " to", "probability": 0.9248046875}, {"start": 677.95, "end": 678.07, "word": " whom?", "probability": 0.87548828125}, {"start": 678.15, "end": 678.25, "word": " To", "probability": 0.693359375}, {"start": 678.25, "end": 678.37, "word": " b", "probability": 0.53759765625}, {"start": 678.37, "end": 678.53, "word": " and", "probability": 0.83251953125}, {"start": 678.53, "end": 678.77, "word": " c", "probability": 0.98681640625}, {"start": 678.77, "end": 679.69, "word": " and", "probability": 0.63623046875}, {"start": 679.69, "end": 679.85, "word": " d,", "probability": 0.931640625}, {"start": 679.95, "end": 680.07, "word": " of", "probability": 0.9033203125}, {"start": 680.07, "end": 680.13, "word": " course,", "probability": 0.96240234375}, {"start": 680.21, "end": 680.31, "word": " this", "probability": 0.76416015625}, {"start": 680.31, "end": 680.39, "word": " is", "probability": 0.82177734375}, {"start": 680.39, "end": 680.51, "word": " not", "probability": 0.91796875}, {"start": 680.51, "end": 680.81, "word": " present", "probability": 0.3935546875}, {"start": 680.81, "end": 681.39, "word": " inside", "probability": 0.54736328125}, {"start": 681.39, "end": 682.53, "word": " the", "probability": 0.43994140625}, {"start": 682.53, "end": 682.67, "word": " a", "probability": 0.8779296875}, {"start": 682.67, "end": 682.71, "word": " right", "probability": 0.221923828125}, {"start": 682.71, "end": 683.13, "word": " now.", "probability": 0.9326171875}, {"start": 683.35, "end": 683.53, "word": " Well,", "probability": 0.265380859375}, {"start": 683.63, "end": 683.81, "word": " how", "probability": 0.87646484375}, {"start": 683.81, "end": 683.93, "word": " does", "probability": 0.775390625}, {"start": 683.93, "end": 684.01, "word": " the", "probability": 0.8154296875}, {"start": 684.01, "end": 684.25, "word": " a,", "probability": 0.94677734375}, {"start": 684.95, "end": 685.23, "word": " let's", "probability": 0.6998291015625}, {"start": 685.23, "end": 685.37, "word": " go", "probability": 0.8095703125}, {"start": 685.37, "end": 685.45, "word": " back", "probability": 0.86865234375}, {"start": 685.45, "end": 685.59, "word": " to", "probability": 0.9677734375}, {"start": 685.59, "end": 685.91, "word": " the", "probability": 0.9091796875}, {"start": 685.91, "end": 686.09, "word": " main", "probability": 0.9384765625}, {"start": 686.09, "end": 686.45, "word": " method,", "probability": 0.9560546875}, {"start": 686.85, "end": 687.11, "word": " how", "probability": 0.91845703125}, {"start": 687.11, "end": 687.19, "word": " does", "probability": 0.96337890625}, {"start": 687.19, "end": 687.29, "word": " the", "probability": 0.8447265625}, {"start": 687.29, "end": 687.41, "word": " a", "probability": 0.95751953125}, {"start": 687.41, "end": 687.89, "word": " reach", "probability": 0.17578125}, {"start": 687.89, "end": 688.27, "word": " b", "probability": 0.3818359375}, {"start": 688.27, "end": 688.51, "word": " and", "probability": 0.55859375}, {"start": 688.51, "end": 688.77, "word": " c", "probability": 0.99560546875}, {"start": 688.77, "end": 688.99, "word": " and", "probability": 0.9404296875}, {"start": 688.99, "end": 689.19, "word": " d?", "probability": 0.982421875}], "temperature": 1.0}, {"id": 29, "seek": 70939, "start": 691.59, "end": 709.39, "text": "The first thing is that in order for A to communicate with B, C and D, it must have references from them, right or wrong? In this case, A needs B. Why does she need B? In order to communicate with her. Dependency, right or wrong? And A also needs C. Why?", "tokens": [2278, 700, 551, 307, 300, 294, 1668, 337, 316, 281, 7890, 365, 363, 11, 383, 293, 413, 11, 309, 1633, 362, 15400, 490, 552, 11, 558, 420, 2085, 30, 682, 341, 1389, 11, 316, 2203, 363, 13, 1545, 775, 750, 643, 363, 30, 682, 1668, 281, 7890, 365, 720, 13, 4056, 521, 3020, 11, 558, 420, 2085, 30, 400, 316, 611, 2203, 383, 13, 1545, 30], "avg_logprob": -0.4321362002572017, "compression_ratio": 1.548780487804878, "no_speech_prob": 9.238719940185547e-06, "words": [{"start": 691.59, "end": 691.99, "word": "The", "probability": 0.07708740234375}, {"start": 691.99, "end": 692.13, "word": " first", "probability": 0.669921875}, {"start": 692.13, "end": 692.49, "word": " thing", "probability": 0.80419921875}, {"start": 692.49, "end": 692.71, "word": " is", "probability": 0.50244140625}, {"start": 692.71, "end": 693.05, "word": " that", "probability": 0.62060546875}, {"start": 693.05, "end": 693.17, "word": " in", "probability": 0.2193603515625}, {"start": 693.17, "end": 693.17, "word": " order", "probability": 0.91455078125}, {"start": 693.17, "end": 693.17, "word": " for", "probability": 0.388916015625}, {"start": 693.17, "end": 693.37, "word": " A", "probability": 0.68017578125}, {"start": 693.37, "end": 693.73, "word": " to", "probability": 0.96630859375}, {"start": 693.73, "end": 694.03, "word": " communicate", "probability": 0.260009765625}, {"start": 694.03, "end": 694.17, "word": " with", "probability": 0.59912109375}, {"start": 694.17, "end": 694.29, "word": " B,", "probability": 0.90234375}, {"start": 694.39, "end": 694.59, "word": " C", "probability": 0.76171875}, {"start": 694.59, "end": 694.69, "word": " and", "probability": 0.55322265625}, {"start": 694.69, "end": 694.83, "word": " D,", "probability": 0.99658203125}, {"start": 694.91, "end": 694.95, "word": " it", "probability": 0.6416015625}, {"start": 694.95, "end": 695.15, "word": " must", "probability": 0.360107421875}, {"start": 695.15, "end": 695.73, "word": " have", "probability": 0.88427734375}, {"start": 695.73, "end": 696.23, "word": " references", "probability": 0.57958984375}, {"start": 696.23, "end": 696.43, "word": " from", "probability": 0.73388671875}, {"start": 696.43, "end": 697.35, "word": " them,", "probability": 0.708984375}, {"start": 697.47, "end": 697.71, "word": " right", "probability": 0.61474609375}, {"start": 697.71, "end": 697.87, "word": " or", "probability": 0.5419921875}, {"start": 697.87, "end": 697.99, "word": " wrong?", "probability": 0.6337890625}, {"start": 698.57, "end": 698.83, "word": " In", "probability": 0.229248046875}, {"start": 698.83, "end": 698.95, "word": " this", "probability": 0.58056640625}, {"start": 698.95, "end": 699.15, "word": " case,", "probability": 0.77685546875}, {"start": 700.29, "end": 701.59, "word": " A", "probability": 0.62451171875}, {"start": 701.59, "end": 702.63, "word": " needs", "probability": 0.81298828125}, {"start": 702.63, "end": 702.93, "word": " B.", "probability": 0.95947265625}, {"start": 703.05, "end": 703.23, "word": " Why", "probability": 0.83349609375}, {"start": 703.23, "end": 703.37, "word": " does", "probability": 0.8642578125}, {"start": 703.37, "end": 703.37, "word": " she", "probability": 0.43408203125}, {"start": 703.37, "end": 703.67, "word": " need", "probability": 0.92529296875}, {"start": 703.67, "end": 703.93, "word": " B?", "probability": 0.9755859375}, {"start": 704.53, "end": 704.97, "word": " In", "probability": 0.4931640625}, {"start": 704.97, "end": 704.97, "word": " order", "probability": 0.93017578125}, {"start": 704.97, "end": 705.09, "word": " to", "probability": 0.78515625}, {"start": 705.09, "end": 705.35, "word": " communicate", "probability": 0.83203125}, {"start": 705.35, "end": 705.53, "word": " with", "probability": 0.5224609375}, {"start": 705.53, "end": 705.53, "word": " her.", "probability": 0.84326171875}, {"start": 705.69, "end": 706.13, "word": " Dependency,", "probability": 0.8483072916666666}, {"start": 706.49, "end": 706.75, "word": " right", "probability": 0.74609375}, {"start": 706.75, "end": 706.97, "word": " or", "probability": 0.91015625}, {"start": 706.97, "end": 707.07, "word": " wrong?", "probability": 0.89697265625}, {"start": 707.51, "end": 707.69, "word": " And", "probability": 0.591796875}, {"start": 707.69, "end": 707.97, "word": " A", "probability": 0.767578125}, {"start": 707.97, "end": 708.27, "word": " also", "probability": 0.7109375}, {"start": 708.27, "end": 708.73, "word": " needs", "probability": 0.88525390625}, {"start": 708.73, "end": 709.05, "word": " C.", "probability": 0.99267578125}, {"start": 709.11, "end": 709.39, "word": " Why?", "probability": 0.89013671875}], "temperature": 1.0}, {"id": 30, "seek": 73573, "start": 710.23, "end": 735.73, "text": "to report them and you need D. The first step you should do, since A wants to report B, C and D as you can see, what does the word report mean? It means it needs a reference from them in order to invoke a method in them, okay? The word report B, C and D, okay? There may be a method in B, C and D that A wants to invoke these methods to send data to B, C and D.", "tokens": [1353, 2275, 552, 293, 291, 643, 413, 13, 440, 700, 1823, 291, 820, 360, 11, 1670, 316, 2738, 281, 2275, 363, 11, 383, 293, 413, 382, 291, 393, 536, 11, 437, 775, 264, 1349, 2275, 914, 30, 467, 1355, 309, 2203, 257, 6408, 490, 552, 294, 1668, 281, 41117, 257, 3170, 294, 552, 11, 1392, 30, 440, 1349, 2275, 363, 11, 383, 293, 413, 11, 1392, 30, 821, 815, 312, 257, 3170, 294, 363, 11, 383, 293, 413, 300, 316, 2738, 281, 41117, 613, 7150, 281, 2845, 1412, 281, 363, 11, 383, 293, 413, 13], "avg_logprob": -0.4775390634313226, "compression_ratio": 1.8608247422680413, "no_speech_prob": 9.834766387939453e-06, "words": [{"start": 710.23, "end": 710.57, "word": "to", "probability": 0.260986328125}, {"start": 710.57, "end": 710.87, "word": " report", "probability": 0.07733154296875}, {"start": 710.87, "end": 711.09, "word": " them", "probability": 0.3720703125}, {"start": 711.09, "end": 711.21, "word": " and", "probability": 0.44921875}, {"start": 711.21, "end": 711.33, "word": " you", "probability": 0.677734375}, {"start": 711.33, "end": 711.63, "word": " need", "probability": 0.837890625}, {"start": 711.63, "end": 711.91, "word": " D.", "probability": 0.49267578125}, {"start": 712.63, "end": 713.07, "word": " The", "probability": 0.375244140625}, {"start": 713.07, "end": 713.53, "word": " first", "probability": 0.87451171875}, {"start": 713.53, "end": 713.83, "word": " step", "probability": 0.8212890625}, {"start": 713.83, "end": 713.93, "word": " you", "probability": 0.60546875}, {"start": 713.93, "end": 714.11, "word": " should", "probability": 0.33447265625}, {"start": 714.11, "end": 714.49, "word": " do,", "probability": 0.7578125}, {"start": 714.69, "end": 714.93, "word": " since", "probability": 0.61962890625}, {"start": 714.93, "end": 715.43, "word": " A", "probability": 0.8095703125}, {"start": 715.43, "end": 715.65, "word": " wants", "probability": 0.3046875}, {"start": 715.65, "end": 715.77, "word": " to", "probability": 0.9560546875}, {"start": 715.77, "end": 716.07, "word": " report", "probability": 0.9296875}, {"start": 716.07, "end": 717.23, "word": " B,", "probability": 0.354248046875}, {"start": 717.45, "end": 717.61, "word": " C", "probability": 0.599609375}, {"start": 717.61, "end": 717.79, "word": " and", "probability": 0.646484375}, {"start": 717.79, "end": 718.05, "word": " D", "probability": 0.998046875}, {"start": 718.05, "end": 718.05, "word": " as", "probability": 0.37255859375}, {"start": 718.05, "end": 718.05, "word": " you", "probability": 0.91015625}, {"start": 718.05, "end": 718.05, "word": " can", "probability": 0.360595703125}, {"start": 718.05, "end": 718.05, "word": " see,", "probability": 0.931640625}, {"start": 718.35, "end": 718.55, "word": " what", "probability": 0.5869140625}, {"start": 718.55, "end": 718.67, "word": " does", "probability": 0.46337890625}, {"start": 718.67, "end": 718.73, "word": " the", "probability": 0.47314453125}, {"start": 718.73, "end": 718.87, "word": " word", "probability": 0.87451171875}, {"start": 718.87, "end": 719.23, "word": " report", "probability": 0.8017578125}, {"start": 719.23, "end": 719.51, "word": " mean?", "probability": 0.54248046875}, {"start": 719.91, "end": 720.35, "word": " It", "probability": 0.63037109375}, {"start": 720.35, "end": 720.35, "word": " means", "probability": 0.79931640625}, {"start": 720.35, "end": 720.77, "word": " it", "probability": 0.39111328125}, {"start": 720.77, "end": 721.13, "word": " needs", "probability": 0.51513671875}, {"start": 721.13, "end": 721.89, "word": " a", "probability": 0.4267578125}, {"start": 721.89, "end": 722.33, "word": " reference", "probability": 0.89697265625}, {"start": 722.33, "end": 722.53, "word": " from", "probability": 0.79296875}, {"start": 722.53, "end": 722.61, "word": " them", "probability": 0.89208984375}, {"start": 722.61, "end": 722.79, "word": " in", "probability": 0.1676025390625}, {"start": 722.79, "end": 722.85, "word": " order", "probability": 0.90283203125}, {"start": 722.85, "end": 723.01, "word": " to", "probability": 0.87646484375}, {"start": 723.01, "end": 723.29, "word": " invoke", "probability": 0.08062744140625}, {"start": 723.29, "end": 723.41, "word": " a", "probability": 0.80322265625}, {"start": 723.41, "end": 723.63, "word": " method", "probability": 0.955078125}, {"start": 723.63, "end": 723.79, "word": " in", "probability": 0.54345703125}, {"start": 723.79, "end": 724.21, "word": " them,", "probability": 0.89453125}, {"start": 724.85, "end": 725.13, "word": " okay?", "probability": 0.3212890625}, {"start": 725.57, "end": 725.97, "word": " The", "probability": 0.501953125}, {"start": 725.97, "end": 726.19, "word": " word", "probability": 0.9033203125}, {"start": 726.19, "end": 726.59, "word": " report", "probability": 0.791015625}, {"start": 726.59, "end": 726.95, "word": " B,", "probability": 0.904296875}, {"start": 727.15, "end": 727.33, "word": " C", "probability": 0.8857421875}, {"start": 727.33, "end": 727.53, "word": " and", "probability": 0.76123046875}, {"start": 727.53, "end": 727.71, "word": " D,", "probability": 0.9990234375}, {"start": 728.05, "end": 728.59, "word": " okay?", "probability": 0.66943359375}, {"start": 728.75, "end": 728.77, "word": " There", "probability": 0.52099609375}, {"start": 728.77, "end": 728.89, "word": " may", "probability": 0.30078125}, {"start": 728.89, "end": 729.23, "word": " be", "probability": 0.95703125}, {"start": 729.23, "end": 729.43, "word": " a", "probability": 0.89697265625}, {"start": 729.43, "end": 729.73, "word": " method", "probability": 0.94580078125}, {"start": 729.73, "end": 729.89, "word": " in", "probability": 0.8251953125}, {"start": 729.89, "end": 730.15, "word": " B,", "probability": 0.974609375}, {"start": 730.31, "end": 730.49, "word": " C", "probability": 0.9677734375}, {"start": 730.49, "end": 730.65, "word": " and", "probability": 0.8466796875}, {"start": 730.65, "end": 730.85, "word": " D", "probability": 0.9990234375}, {"start": 730.85, "end": 731.33, "word": " that", "probability": 0.35400390625}, {"start": 731.33, "end": 731.49, "word": " A", "probability": 0.8720703125}, {"start": 731.49, "end": 731.73, "word": " wants", "probability": 0.56005859375}, {"start": 731.73, "end": 731.85, "word": " to", "probability": 0.95947265625}, {"start": 731.85, "end": 732.19, "word": " invoke", "probability": 0.94921875}, {"start": 732.19, "end": 733.19, "word": " these", "probability": 0.389892578125}, {"start": 733.19, "end": 733.55, "word": " methods", "probability": 0.9150390625}, {"start": 733.55, "end": 733.99, "word": " to", "probability": 0.492431640625}, {"start": 733.99, "end": 734.31, "word": " send", "probability": 0.765625}, {"start": 734.31, "end": 734.71, "word": " data", "probability": 0.6318359375}, {"start": 734.71, "end": 734.91, "word": " to", "probability": 0.96337890625}, {"start": 734.91, "end": 735.11, "word": " B,", "probability": 0.97998046875}, {"start": 735.23, "end": 735.41, "word": " C", "probability": 0.97802734375}, {"start": 735.41, "end": 735.57, "word": " and", "probability": 0.888671875}, {"start": 735.57, "end": 735.73, "word": " D.", "probability": 0.99951171875}], "temperature": 1.0}, {"id": 31, "seek": 75198, "start": 737.32, "end": 751.98, "text": "So let's assume that the gate H brought B, C and D and made a method called public void data received. Where is this method present?", "tokens": [6455, 718, 311, 6552, 300, 264, 8539, 389, 3038, 363, 11, 383, 293, 413, 293, 1027, 257, 3170, 1219, 1908, 22009, 1412, 4613, 13, 2305, 307, 341, 3170, 1974, 30], "avg_logprob": -0.6678427611627886, "compression_ratio": 1.2, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 737.32, "end": 737.6, "word": "So", "probability": 0.345947265625}, {"start": 737.6, "end": 737.76, "word": " let's", "probability": 0.5614013671875}, {"start": 737.76, "end": 738.08, "word": " assume", "probability": 0.43603515625}, {"start": 738.08, "end": 738.2, "word": " that", "probability": 0.4892578125}, {"start": 738.2, "end": 738.26, "word": " the", "probability": 0.2325439453125}, {"start": 738.26, "end": 738.4, "word": " gate", "probability": 0.54736328125}, {"start": 738.4, "end": 738.72, "word": " H", "probability": 0.40576171875}, {"start": 738.72, "end": 739.5, "word": " brought", "probability": 0.1143798828125}, {"start": 739.5, "end": 739.98, "word": " B,", "probability": 0.487060546875}, {"start": 740.4, "end": 740.62, "word": " C", "probability": 0.480712890625}, {"start": 740.62, "end": 740.8, "word": " and", "probability": 0.642578125}, {"start": 740.8, "end": 741.04, "word": " D", "probability": 0.99658203125}, {"start": 741.04, "end": 741.88, "word": " and", "probability": 0.205322265625}, {"start": 741.88, "end": 742.12, "word": " made", "probability": 0.155517578125}, {"start": 742.12, "end": 742.54, "word": " a", "probability": 0.7138671875}, {"start": 742.54, "end": 742.8, "word": " method", "probability": 0.93603515625}, {"start": 742.8, "end": 743.14, "word": " called", "probability": 0.463623046875}, {"start": 743.14, "end": 743.7, "word": " public", "probability": 0.74072265625}, {"start": 743.7, "end": 744.96, "word": " void", "probability": 0.83740234375}, {"start": 744.96, "end": 745.9, "word": " data", "probability": 0.88037109375}, {"start": 745.9, "end": 746.82, "word": " received.", "probability": 0.66015625}, {"start": 750.34, "end": 750.98, "word": " Where", "probability": 0.5478515625}, {"start": 750.98, "end": 750.98, "word": " is", "probability": 0.64599609375}, {"start": 750.98, "end": 751.1, "word": " this", "probability": 0.9130859375}, {"start": 751.1, "end": 751.42, "word": " method", "probability": 0.95947265625}, {"start": 751.42, "end": 751.98, "word": " present?", "probability": 0.2313232421875}], "temperature": 1.0}, {"id": 32, "seek": 78033, "start": 753.15, "end": 780.33, "text": "in B, who should claim it? A, right? it is like this, this is the communication between objects, if there is .. why should I use another object? because there is a method and this should claim it, right? what should I write in it? I want to say for example system.out.println I want to say B received data from A", "tokens": [259, 363, 11, 567, 820, 3932, 309, 30, 316, 11, 558, 30, 309, 307, 411, 341, 11, 341, 307, 264, 6101, 1296, 6565, 11, 498, 456, 307, 4386, 983, 820, 286, 764, 1071, 2657, 30, 570, 456, 307, 257, 3170, 293, 341, 820, 3932, 309, 11, 558, 30, 437, 820, 286, 2464, 294, 309, 30, 286, 528, 281, 584, 337, 1365, 1185, 13, 346, 13, 14030, 75, 77, 286, 528, 281, 584, 363, 4613, 1412, 490, 316], "avg_logprob": -0.5360576854302332, "compression_ratio": 1.6595744680851063, "no_speech_prob": 3.5762786865234375e-06, "words": [{"start": 753.15, "end": 753.33, "word": "in", "probability": 0.1495361328125}, {"start": 753.33, "end": 753.55, "word": " B,", "probability": 0.509765625}, {"start": 753.61, "end": 753.83, "word": " who", "probability": 0.2122802734375}, {"start": 753.83, "end": 754.23, "word": " should", "probability": 0.65625}, {"start": 754.23, "end": 754.61, "word": " claim", "probability": 0.27197265625}, {"start": 754.61, "end": 754.87, "word": " it?", "probability": 0.2467041015625}, {"start": 755.63, "end": 756.07, "word": " A,", "probability": 0.4453125}, {"start": 756.27, "end": 756.69, "word": " right?", "probability": 0.189697265625}, {"start": 757.15, "end": 757.35, "word": " it", "probability": 0.0960693359375}, {"start": 757.35, "end": 757.45, "word": " is", "probability": 0.560546875}, {"start": 757.45, "end": 757.69, "word": " like", "probability": 0.395751953125}, {"start": 757.69, "end": 757.81, "word": " this,", "probability": 0.6826171875}, {"start": 757.81, "end": 757.81, "word": " this", "probability": 0.40283203125}, {"start": 757.81, "end": 757.83, "word": " is", "probability": 0.87548828125}, {"start": 757.83, "end": 757.89, "word": " the", "probability": 0.55908203125}, {"start": 757.89, "end": 758.43, "word": " communication", "probability": 0.85498046875}, {"start": 758.43, "end": 758.63, "word": " between", "probability": 0.8095703125}, {"start": 758.63, "end": 759.01, "word": " objects,", "probability": 0.8701171875}, {"start": 759.09, "end": 759.19, "word": " if", "probability": 0.333984375}, {"start": 759.19, "end": 759.55, "word": " there", "probability": 0.849609375}, {"start": 759.55, "end": 759.63, "word": " is", "probability": 0.80712890625}, {"start": 759.63, "end": 759.93, "word": " ..", "probability": 0.1844482421875}, {"start": 759.93, "end": 760.11, "word": " why", "probability": 0.2352294921875}, {"start": 760.11, "end": 760.23, "word": " should", "probability": 0.253662109375}, {"start": 760.23, "end": 760.31, "word": " I", "probability": 0.67578125}, {"start": 760.31, "end": 761.07, "word": " use", "probability": 0.8388671875}, {"start": 761.07, "end": 761.21, "word": " another", "probability": 0.78857421875}, {"start": 761.21, "end": 761.47, "word": " object?", "probability": 0.97119140625}, {"start": 762.09, "end": 762.47, "word": " because", "probability": 0.427734375}, {"start": 762.47, "end": 762.79, "word": " there", "probability": 0.83203125}, {"start": 762.79, "end": 762.79, "word": " is", "probability": 0.82470703125}, {"start": 762.79, "end": 762.93, "word": " a", "probability": 0.853515625}, {"start": 762.93, "end": 763.31, "word": " method", "probability": 0.9501953125}, {"start": 763.31, "end": 763.73, "word": " and", "probability": 0.53857421875}, {"start": 763.73, "end": 763.91, "word": " this", "probability": 0.546875}, {"start": 763.91, "end": 763.99, "word": " should", "probability": 0.136474609375}, {"start": 763.99, "end": 764.27, "word": " claim", "probability": 0.9169921875}, {"start": 764.27, "end": 764.83, "word": " it,", "probability": 0.9052734375}, {"start": 765.05, "end": 765.29, "word": " right?", "probability": 0.336669921875}, {"start": 766.01, "end": 766.43, "word": " what", "probability": 0.78271484375}, {"start": 766.43, "end": 766.57, "word": " should", "probability": 0.5703125}, {"start": 766.57, "end": 766.65, "word": " I", "probability": 0.8212890625}, {"start": 766.65, "end": 766.81, "word": " write", "probability": 0.8203125}, {"start": 766.81, "end": 766.95, "word": " in", "probability": 0.7744140625}, {"start": 766.95, "end": 767.09, "word": " it?", "probability": 0.876953125}, {"start": 767.15, "end": 767.21, "word": " I", "probability": 0.72705078125}, {"start": 767.21, "end": 767.31, "word": " want", "probability": 0.2998046875}, {"start": 767.31, "end": 767.35, "word": " to", "probability": 0.96484375}, {"start": 767.35, "end": 767.47, "word": " say", "probability": 0.5}, {"start": 767.47, "end": 767.63, "word": " for", "probability": 0.51611328125}, {"start": 767.63, "end": 767.79, "word": " example", "probability": 0.9462890625}, {"start": 767.79, "end": 768.35, "word": " system", "probability": 0.736328125}, {"start": 768.35, "end": 769.57, "word": ".out", "probability": 0.853515625}, {"start": 769.57, "end": 771.27, "word": ".println", "probability": 0.93994140625}, {"start": 771.27, "end": 772.09, "word": " I", "probability": 0.335693359375}, {"start": 772.09, "end": 772.23, "word": " want", "probability": 0.77978515625}, {"start": 772.23, "end": 772.31, "word": " to", "probability": 0.97021484375}, {"start": 772.31, "end": 772.47, "word": " say", "probability": 0.79296875}, {"start": 772.47, "end": 772.73, "word": " B", "probability": 0.61669921875}, {"start": 772.73, "end": 773.49, "word": " received", "probability": 0.76123046875}, {"start": 773.49, "end": 777.05, "word": " data", "probability": 0.92333984375}, {"start": 777.05, "end": 780.07, "word": " from", "probability": 0.88330078125}, {"start": 780.07, "end": 780.33, "word": " A", "probability": 0.958984375}], "temperature": 1.0}, {"id": 33, "seek": 81106, "start": 782.14, "end": 811.06, "text": " As you can see, I wrote this one as Jewel Now, the same idea, this sign, I want to do the same thing with the same name or other names in C But what does this one do? And this one is D And this one is only D Do you agree or not? So everything I have done so far is correct?", "tokens": [1018, 291, 393, 536, 11, 286, 4114, 341, 472, 382, 5679, 338, 823, 11, 264, 912, 1558, 11, 341, 1465, 11, 286, 528, 281, 360, 264, 912, 551, 365, 264, 912, 1315, 420, 661, 5288, 294, 383, 583, 437, 775, 341, 472, 360, 30, 400, 341, 472, 307, 413, 400, 341, 472, 307, 787, 413, 1144, 291, 3986, 420, 406, 30, 407, 1203, 286, 362, 1096, 370, 1400, 307, 3006, 30], "avg_logprob": -0.6679687367545234, "compression_ratio": 1.6506024096385543, "no_speech_prob": 8.940696716308594e-06, "words": [{"start": 782.14, "end": 782.46, "word": " As", "probability": 0.0657958984375}, {"start": 782.46, "end": 782.46, "word": " you", "probability": 0.95947265625}, {"start": 782.46, "end": 782.62, "word": " can", "probability": 0.7333984375}, {"start": 782.62, "end": 782.64, "word": " see,", "probability": 0.9248046875}, {"start": 782.74, "end": 783.22, "word": " I", "probability": 0.8837890625}, {"start": 783.22, "end": 783.5, "word": " wrote", "probability": 0.76611328125}, {"start": 783.5, "end": 783.54, "word": " this", "probability": 0.476318359375}, {"start": 783.54, "end": 783.54, "word": " one", "probability": 0.32470703125}, {"start": 783.54, "end": 783.58, "word": " as", "probability": 0.1883544921875}, {"start": 783.58, "end": 783.92, "word": " Jewel", "probability": 0.56304931640625}, {"start": 783.92, "end": 786.54, "word": " Now,", "probability": 0.367919921875}, {"start": 786.62, "end": 786.88, "word": " the", "probability": 0.4990234375}, {"start": 786.88, "end": 786.88, "word": " same", "probability": 0.8203125}, {"start": 786.88, "end": 787.28, "word": " idea,", "probability": 0.77734375}, {"start": 787.74, "end": 788.34, "word": " this", "probability": 0.65625}, {"start": 788.34, "end": 788.66, "word": " sign,", "probability": 0.0653076171875}, {"start": 788.82, "end": 788.96, "word": " I", "probability": 0.45947265625}, {"start": 788.96, "end": 789.06, "word": " want", "probability": 0.2802734375}, {"start": 789.06, "end": 789.2, "word": " to", "probability": 0.8701171875}, {"start": 789.2, "end": 789.46, "word": " do", "probability": 0.267822265625}, {"start": 789.46, "end": 789.96, "word": " the", "probability": 0.30224609375}, {"start": 789.96, "end": 789.96, "word": " same", "probability": 0.88037109375}, {"start": 789.96, "end": 790.0, "word": " thing", "probability": 0.475830078125}, {"start": 790.0, "end": 790.06, "word": " with", "probability": 0.67041015625}, {"start": 790.06, "end": 790.32, "word": " the", "probability": 0.86376953125}, {"start": 790.32, "end": 790.32, "word": " same", "probability": 0.89013671875}, {"start": 790.32, "end": 790.7, "word": " name", "probability": 0.85595703125}, {"start": 790.7, "end": 791.0, "word": " or", "probability": 0.5029296875}, {"start": 791.0, "end": 791.18, "word": " other", "probability": 0.442138671875}, {"start": 791.18, "end": 791.78, "word": " names", "probability": 0.78564453125}, {"start": 791.78, "end": 793.14, "word": " in", "probability": 0.334716796875}, {"start": 793.14, "end": 793.5, "word": " C", "probability": 0.62060546875}, {"start": 793.5, "end": 797.28, "word": " But", "probability": 0.449462890625}, {"start": 797.28, "end": 797.38, "word": " what", "probability": 0.677734375}, {"start": 797.38, "end": 797.38, "word": " does", "probability": 0.41796875}, {"start": 797.38, "end": 797.52, "word": " this", "probability": 0.84130859375}, {"start": 797.52, "end": 797.64, "word": " one", "probability": 0.39697265625}, {"start": 797.64, "end": 797.98, "word": " do?", "probability": 0.67041015625}, {"start": 800.56, "end": 801.08, "word": " And", "probability": 0.5263671875}, {"start": 801.08, "end": 801.26, "word": " this", "probability": 0.76611328125}, {"start": 801.26, "end": 801.34, "word": " one", "probability": 0.42333984375}, {"start": 801.34, "end": 801.4, "word": " is", "probability": 0.2310791015625}, {"start": 801.4, "end": 802.04, "word": " D", "probability": 0.8427734375}, {"start": 802.04, "end": 803.86, "word": " And", "probability": 0.421875}, {"start": 803.86, "end": 804.0, "word": " this", "probability": 0.2491455078125}, {"start": 804.0, "end": 804.02, "word": " one", "probability": 0.724609375}, {"start": 804.02, "end": 804.06, "word": " is", "probability": 0.68994140625}, {"start": 804.06, "end": 804.24, "word": " only", "probability": 0.36181640625}, {"start": 804.24, "end": 804.82, "word": " D", "probability": 0.947265625}, {"start": 804.82, "end": 807.46, "word": " Do", "probability": 0.45556640625}, {"start": 807.46, "end": 807.46, "word": " you", "probability": 0.9697265625}, {"start": 807.46, "end": 807.6, "word": " agree", "probability": 0.261962890625}, {"start": 807.6, "end": 807.74, "word": " or", "probability": 0.521484375}, {"start": 807.74, "end": 807.94, "word": " not?", "probability": 0.88232421875}, {"start": 808.08, "end": 808.6, "word": " So", "probability": 0.4033203125}, {"start": 808.6, "end": 808.88, "word": " everything", "probability": 0.412109375}, {"start": 808.88, "end": 809.04, "word": " I", "probability": 0.60205078125}, {"start": 809.04, "end": 809.3, "word": " have", "probability": 0.404541015625}, {"start": 809.3, "end": 809.3, "word": " done", "probability": 0.890625}, {"start": 809.3, "end": 809.66, "word": " so", "probability": 0.3310546875}, {"start": 809.66, "end": 810.1, "word": " far", "probability": 0.9296875}, {"start": 810.1, "end": 810.9, "word": " is", "probability": 0.5693359375}, {"start": 810.9, "end": 811.06, "word": " correct?", "probability": 0.450927734375}], "temperature": 1.0}, {"id": 34, "seek": 84393, "start": 814.55, "end": 843.93, "text": "that in each one of them there will be a cd I made a data called data received data received and it has a parameter of course data received okay this data I didn't use it right or not?", "tokens": [6780, 294, 1184, 472, 295, 552, 456, 486, 312, 257, 269, 67, 286, 1027, 257, 1412, 1219, 1412, 4613, 1412, 4613, 293, 309, 575, 257, 13075, 295, 1164, 1412, 4613, 1392, 341, 1412, 286, 994, 380, 764, 309, 558, 420, 406, 30], "avg_logprob": -0.5494186046511628, "compression_ratio": 1.546218487394958, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 814.55, "end": 814.87, "word": "that", "probability": 0.11920166015625}, {"start": 814.87, "end": 814.99, "word": " in", "probability": 0.68115234375}, {"start": 814.99, "end": 815.27, "word": " each", "probability": 0.73828125}, {"start": 815.27, "end": 815.59, "word": " one", "probability": 0.51904296875}, {"start": 815.59, "end": 815.71, "word": " of", "probability": 0.9130859375}, {"start": 815.71, "end": 816.09, "word": " them", "probability": 0.2783203125}, {"start": 816.09, "end": 818.19, "word": " there", "probability": 0.233154296875}, {"start": 818.19, "end": 818.19, "word": " will", "probability": 0.430908203125}, {"start": 818.19, "end": 818.41, "word": " be", "probability": 0.9541015625}, {"start": 818.41, "end": 819.55, "word": " a", "probability": 0.35888671875}, {"start": 819.55, "end": 820.19, "word": " cd", "probability": 0.5799560546875}, {"start": 820.19, "end": 820.69, "word": " I", "probability": 0.66943359375}, {"start": 820.69, "end": 821.03, "word": " made", "probability": 0.69091796875}, {"start": 821.03, "end": 821.45, "word": " a", "probability": 0.873046875}, {"start": 821.45, "end": 821.55, "word": " data", "probability": 0.1346435546875}, {"start": 821.55, "end": 821.93, "word": " called", "probability": 0.5107421875}, {"start": 821.93, "end": 822.99, "word": " data", "probability": 0.8876953125}, {"start": 822.99, "end": 826.29, "word": " received", "probability": 0.63671875}, {"start": 826.29, "end": 828.75, "word": " data", "probability": 0.765625}, {"start": 828.75, "end": 830.33, "word": " received", "probability": 0.80322265625}, {"start": 830.33, "end": 834.35, "word": " and", "probability": 0.44677734375}, {"start": 834.35, "end": 834.45, "word": " it", "probability": 0.822265625}, {"start": 834.45, "end": 834.51, "word": " has", "probability": 0.92578125}, {"start": 834.51, "end": 834.59, "word": " a", "probability": 0.345458984375}, {"start": 834.59, "end": 834.97, "word": " parameter", "probability": 0.96484375}, {"start": 834.97, "end": 835.15, "word": " of", "probability": 0.56640625}, {"start": 835.15, "end": 835.23, "word": " course", "probability": 0.95068359375}, {"start": 835.23, "end": 835.67, "word": " data", "probability": 0.7099609375}, {"start": 835.67, "end": 836.87, "word": " received", "probability": 0.78515625}, {"start": 836.87, "end": 841.97, "word": " okay", "probability": 0.251220703125}, {"start": 841.97, "end": 842.09, "word": " this", "probability": 0.376953125}, {"start": 842.09, "end": 842.33, "word": " data", "probability": 0.7109375}, {"start": 842.33, "end": 842.63, "word": " I", "probability": 0.734375}, {"start": 842.63, "end": 842.73, "word": " didn't", "probability": 0.6973876953125}, {"start": 842.73, "end": 843.13, "word": " use", "probability": 0.8564453125}, {"start": 843.13, "end": 843.49, "word": " it", "probability": 0.6298828125}, {"start": 843.49, "end": 843.71, "word": " right", "probability": 0.465576171875}, {"start": 843.71, "end": 843.89, "word": " or", "probability": 0.740234375}, {"start": 843.89, "end": 843.93, "word": " not?", "probability": 0.66455078125}], "temperature": 1.0}, {"id": 35, "seek": 86501, "start": 845.57, "end": 865.01, "text": "Who is supposed to claim this proof? When will the A claim it? When I say who? How does the A claim the B? He should have a reference. One can think in a stupid way. As long as we want B, go and do B.", "tokens": [10927, 307, 3442, 281, 3932, 341, 8177, 30, 1133, 486, 264, 316, 3932, 309, 30, 1133, 286, 584, 567, 30, 1012, 775, 264, 316, 3932, 264, 363, 30, 634, 820, 362, 257, 1895, 68, 10760, 13, 1485, 393, 519, 294, 257, 6631, 636, 13, 1018, 938, 382, 321, 528, 363, 11, 352, 293, 360, 363, 13], "avg_logprob": -0.6370614035087719, "compression_ratio": 1.3986013986013985, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 845.5699999999999, "end": 846.01, "word": "Who", "probability": 0.2244873046875}, {"start": 846.01, "end": 846.09, "word": " is", "probability": 0.41357421875}, {"start": 846.09, "end": 846.35, "word": " supposed", "probability": 0.666015625}, {"start": 846.35, "end": 846.49, "word": " to", "probability": 0.9697265625}, {"start": 846.49, "end": 846.81, "word": " claim", "probability": 0.2398681640625}, {"start": 846.81, "end": 847.03, "word": " this", "probability": 0.81298828125}, {"start": 847.03, "end": 847.25, "word": " proof?", "probability": 0.4296875}, {"start": 848.73, "end": 849.17, "word": " When", "probability": 0.44140625}, {"start": 849.17, "end": 850.23, "word": " will", "probability": 0.63134765625}, {"start": 850.23, "end": 850.31, "word": " the", "probability": 0.269287109375}, {"start": 850.31, "end": 850.37, "word": " A", "probability": 0.4189453125}, {"start": 850.37, "end": 850.91, "word": " claim", "probability": 0.93359375}, {"start": 850.91, "end": 851.15, "word": " it?", "probability": 0.736328125}, {"start": 851.27, "end": 851.41, "word": " When", "probability": 0.66455078125}, {"start": 851.41, "end": 851.51, "word": " I", "probability": 0.69091796875}, {"start": 851.51, "end": 851.63, "word": " say", "probability": 0.47412109375}, {"start": 851.63, "end": 851.95, "word": " who?", "probability": 0.4091796875}, {"start": 854.43, "end": 854.87, "word": " How", "probability": 0.1077880859375}, {"start": 854.87, "end": 855.43, "word": " does", "probability": 0.537109375}, {"start": 855.43, "end": 855.51, "word": " the", "probability": 0.60986328125}, {"start": 855.51, "end": 855.71, "word": " A", "probability": 0.96875}, {"start": 855.71, "end": 856.45, "word": " claim", "probability": 0.25}, {"start": 856.45, "end": 857.47, "word": " the", "probability": 0.27099609375}, {"start": 857.47, "end": 857.67, "word": " B?", "probability": 0.9208984375}, {"start": 857.75, "end": 858.05, "word": " He", "probability": 0.451171875}, {"start": 858.05, "end": 858.95, "word": " should", "probability": 0.1832275390625}, {"start": 858.95, "end": 859.33, "word": " have", "probability": 0.84228515625}, {"start": 859.33, "end": 859.45, "word": " a", "probability": 0.82666015625}, {"start": 859.45, "end": 859.69, "word": " reference.", "probability": 0.5223388671875}, {"start": 859.75, "end": 859.97, "word": " One", "probability": 0.1817626953125}, {"start": 859.97, "end": 860.27, "word": " can", "probability": 0.51318359375}, {"start": 860.27, "end": 861.03, "word": " think", "probability": 0.662109375}, {"start": 861.03, "end": 861.17, "word": " in", "probability": 0.65576171875}, {"start": 861.17, "end": 861.49, "word": " a", "probability": 0.89892578125}, {"start": 861.49, "end": 861.71, "word": " stupid", "probability": 0.6572265625}, {"start": 861.71, "end": 861.83, "word": " way.", "probability": 0.93896484375}, {"start": 862.75, "end": 863.19, "word": " As", "probability": 0.3525390625}, {"start": 863.19, "end": 863.85, "word": " long", "probability": 0.7412109375}, {"start": 863.85, "end": 863.87, "word": " as", "probability": 0.96728515625}, {"start": 863.87, "end": 864.17, "word": " we", "probability": 0.84619140625}, {"start": 864.17, "end": 864.17, "word": " want", "probability": 0.7841796875}, {"start": 864.17, "end": 864.37, "word": " B,", "probability": 0.93115234375}, {"start": 864.45, "end": 864.55, "word": " go", "probability": 0.273681640625}, {"start": 864.55, "end": 864.65, "word": " and", "probability": 0.451904296875}, {"start": 864.65, "end": 864.71, "word": " do", "probability": 0.2529296875}, {"start": 864.71, "end": 865.01, "word": " B.", "probability": 0.90673828125}], "temperature": 1.0}, {"id": 36, "seek": 88746, "start": 867.02, "end": 887.46, "text": "New B, right? Yes, and then I say B.data received. No, here you created a new object. Correct. Correct? This object B, where did we create it? In the main. In the main. The one I created in the main is supposed to pass through it to what? Okay, one says it's wrong to do it inside.", "tokens": [18278, 363, 11, 558, 30, 1079, 11, 293, 550, 286, 584, 363, 13, 67, 3274, 4613, 13, 883, 11, 510, 291, 2942, 257, 777, 2657, 13, 12753, 13, 12753, 30, 639, 2657, 363, 11, 689, 630, 321, 1884, 309, 30, 682, 264, 2135, 13, 682, 264, 2135, 13, 440, 472, 286, 2942, 294, 264, 2135, 307, 3442, 281, 1320, 807, 309, 281, 437, 30, 1033, 11, 472, 1619, 309, 311, 2085, 281, 360, 309, 1854, 13], "avg_logprob": -0.5969967408613726, "compression_ratio": 1.5524861878453038, "no_speech_prob": 0.0001074075698852539, "words": [{"start": 867.02, "end": 867.38, "word": "New", "probability": 0.11346435546875}, {"start": 867.38, "end": 867.66, "word": " B,", "probability": 0.74755859375}, {"start": 867.82, "end": 868.02, "word": " right?", "probability": 0.46875}, {"start": 868.88, "end": 869.24, "word": " Yes,", "probability": 0.28173828125}, {"start": 869.42, "end": 869.52, "word": " and", "probability": 0.66650390625}, {"start": 869.52, "end": 869.76, "word": " then", "probability": 0.70068359375}, {"start": 869.76, "end": 869.86, "word": " I", "probability": 0.432373046875}, {"start": 869.86, "end": 870.0, "word": " say", "probability": 0.5}, {"start": 870.0, "end": 870.3, "word": " B", "probability": 0.74267578125}, {"start": 870.3, "end": 871.34, "word": ".data", "probability": 0.76611328125}, {"start": 871.34, "end": 872.14, "word": " received.", "probability": 0.406982421875}, {"start": 872.26, "end": 872.42, "word": " No,", "probability": 0.7861328125}, {"start": 872.48, "end": 872.64, "word": " here", "probability": 0.5556640625}, {"start": 872.64, "end": 872.9, "word": " you", "probability": 0.8935546875}, {"start": 872.9, "end": 873.2, "word": " created", "probability": 0.2396240234375}, {"start": 873.2, "end": 873.34, "word": " a", "probability": 0.83251953125}, {"start": 873.34, "end": 873.36, "word": " new", "probability": 0.90966796875}, {"start": 873.36, "end": 873.92, "word": " object.", "probability": 0.9697265625}, {"start": 874.42, "end": 874.64, "word": " Correct.", "probability": 0.472900390625}, {"start": 875.0, "end": 875.18, "word": " Correct?", "probability": 0.1510009765625}, {"start": 876.48, "end": 876.84, "word": " This", "probability": 0.5126953125}, {"start": 876.84, "end": 877.24, "word": " object", "probability": 0.8115234375}, {"start": 877.24, "end": 877.5, "word": " B,", "probability": 0.91162109375}, {"start": 877.68, "end": 878.12, "word": " where", "probability": 0.8115234375}, {"start": 878.12, "end": 878.12, "word": " did", "probability": 0.92578125}, {"start": 878.12, "end": 878.24, "word": " we", "probability": 0.88671875}, {"start": 878.24, "end": 878.52, "word": " create", "probability": 0.74169921875}, {"start": 878.52, "end": 878.76, "word": " it?", "probability": 0.9326171875}, {"start": 880.18, "end": 880.54, "word": " In", "probability": 0.88330078125}, {"start": 880.54, "end": 880.66, "word": " the", "probability": 0.459228515625}, {"start": 880.66, "end": 880.76, "word": " main.", "probability": 0.830078125}, {"start": 880.84, "end": 880.86, "word": " In", "probability": 0.20361328125}, {"start": 880.86, "end": 880.94, "word": " the", "probability": 0.8935546875}, {"start": 880.94, "end": 881.1, "word": " main.", "probability": 0.92724609375}, {"start": 881.28, "end": 881.64, "word": " The", "probability": 0.192626953125}, {"start": 881.64, "end": 881.64, "word": " one", "probability": 0.40966796875}, {"start": 881.64, "end": 882.36, "word": " I", "probability": 0.2432861328125}, {"start": 882.36, "end": 882.74, "word": " created", "probability": 0.73828125}, {"start": 882.74, "end": 882.9, "word": " in", "probability": 0.62744140625}, {"start": 882.9, "end": 883.02, "word": " the", "probability": 0.8818359375}, {"start": 883.02, "end": 883.18, "word": " main", "probability": 0.9228515625}, {"start": 883.18, "end": 883.34, "word": " is", "probability": 0.131103515625}, {"start": 883.34, "end": 883.34, "word": " supposed", "probability": 0.73291015625}, {"start": 883.34, "end": 883.34, "word": " to", "probability": 0.97314453125}, {"start": 883.34, "end": 883.56, "word": " pass", "probability": 0.2381591796875}, {"start": 883.56, "end": 883.74, "word": " through", "probability": 0.25439453125}, {"start": 883.74, "end": 884.5, "word": " it", "probability": 0.505859375}, {"start": 884.5, "end": 884.62, "word": " to", "probability": 0.383544921875}, {"start": 884.62, "end": 884.82, "word": " what?", "probability": 0.73486328125}, {"start": 885.84, "end": 886.2, "word": " Okay,", "probability": 0.1649169921875}, {"start": 886.24, "end": 886.36, "word": " one", "probability": 0.1680908203125}, {"start": 886.36, "end": 886.54, "word": " says", "probability": 0.441650390625}, {"start": 886.54, "end": 886.68, "word": " it's", "probability": 0.486083984375}, {"start": 886.68, "end": 886.88, "word": " wrong", "probability": 0.80859375}, {"start": 886.88, "end": 887.02, "word": " to", "probability": 0.79052734375}, {"start": 887.02, "end": 887.14, "word": " do", "probability": 0.467041015625}, {"start": 887.14, "end": 887.3, "word": " it", "probability": 0.67431640625}, {"start": 887.3, "end": 887.46, "word": " inside.", "probability": 0.7265625}], "temperature": 1.0}, {"id": 37, "seek": 91768, "start": 888.92, "end": 917.68, "text": " Yes, of course it is wrong. For two reasons. First of all, if you do it here, it means that whenever you do the same data, it will create an object. He will say, okay, let's do one only up here. Okay, it works, but in this case, you cancelled the dependency injection. We said that it is preferable for you to go out with your clients and tease them, okay? Okay, before solving this problem, did you notice that we .. let's .. so that you don't get confused. This is the main. This is A, B, C and D.", "tokens": [1079, 11, 295, 1164, 309, 307, 2085, 13, 1171, 732, 4112, 13, 2386, 295, 439, 11, 498, 291, 360, 309, 510, 11, 309, 1355, 300, 5699, 291, 360, 264, 912, 1412, 11, 309, 486, 1884, 364, 2657, 13, 634, 486, 584, 11, 1392, 11, 718, 311, 360, 472, 787, 493, 510, 13, 1033, 11, 309, 1985, 11, 457, 294, 341, 1389, 11, 291, 25103, 264, 33621, 22873, 13, 492, 848, 300, 309, 307, 4382, 712, 337, 291, 281, 352, 484, 365, 428, 6982, 293, 30444, 552, 11, 1392, 30, 1033, 11, 949, 12606, 341, 1154, 11, 630, 291, 3449, 300, 321, 4386, 718, 311, 4386, 370, 300, 291, 500, 380, 483, 9019, 13, 639, 307, 264, 2135, 13, 639, 307, 316, 11, 363, 11, 383, 293, 413, 13], "avg_logprob": -0.5847868217054264, "compression_ratio": 1.6666666666666667, "no_speech_prob": 2.6226043701171875e-06, "words": [{"start": 888.92, "end": 889.16, "word": " Yes,", "probability": 0.319091796875}, {"start": 889.24, "end": 889.44, "word": " of", "probability": 0.60595703125}, {"start": 889.44, "end": 889.44, "word": " course", "probability": 0.94287109375}, {"start": 889.44, "end": 889.54, "word": " it", "probability": 0.3515625}, {"start": 889.54, "end": 889.54, "word": " is", "probability": 0.490478515625}, {"start": 889.54, "end": 889.78, "word": " wrong.", "probability": 0.8955078125}, {"start": 890.52, "end": 890.92, "word": " For", "probability": 0.482421875}, {"start": 890.92, "end": 891.34, "word": " two", "probability": 0.74365234375}, {"start": 891.34, "end": 891.34, "word": " reasons.", "probability": 0.88671875}, {"start": 891.5, "end": 891.74, "word": " First", "probability": 0.472900390625}, {"start": 891.74, "end": 891.94, "word": " of", "probability": 0.15771484375}, {"start": 891.94, "end": 891.96, "word": " all,", "probability": 0.94677734375}, {"start": 892.14, "end": 892.14, "word": " if", "probability": 0.7431640625}, {"start": 892.14, "end": 893.1, "word": " you", "probability": 0.92822265625}, {"start": 893.1, "end": 893.26, "word": " do", "probability": 0.454833984375}, {"start": 893.26, "end": 893.42, "word": " it", "probability": 0.58349609375}, {"start": 893.42, "end": 893.54, "word": " here,", "probability": 0.80419921875}, {"start": 893.62, "end": 893.68, "word": " it", "probability": 0.3349609375}, {"start": 893.68, "end": 893.78, "word": " means", "probability": 0.74609375}, {"start": 893.78, "end": 893.96, "word": " that", "probability": 0.83447265625}, {"start": 893.96, "end": 894.06, "word": " whenever", "probability": 0.331787109375}, {"start": 894.06, "end": 894.24, "word": " you", "probability": 0.93994140625}, {"start": 894.24, "end": 894.4, "word": " do", "probability": 0.66552734375}, {"start": 894.4, "end": 894.54, "word": " the", "probability": 0.2213134765625}, {"start": 894.54, "end": 894.66, "word": " same", "probability": 0.81982421875}, {"start": 894.66, "end": 895.04, "word": " data,", "probability": 0.96044921875}, {"start": 895.4, "end": 896.04, "word": " it", "probability": 0.73974609375}, {"start": 896.04, "end": 896.12, "word": " will", "probability": 0.63037109375}, {"start": 896.12, "end": 896.32, "word": " create", "probability": 0.275146484375}, {"start": 896.32, "end": 896.4, "word": " an", "probability": 0.58447265625}, {"start": 896.4, "end": 896.6, "word": " object.", "probability": 0.97705078125}, {"start": 896.92, "end": 897.1, "word": " He", "probability": 0.14501953125}, {"start": 897.1, "end": 897.16, "word": " will", "probability": 0.1842041015625}, {"start": 897.16, "end": 897.32, "word": " say,", "probability": 0.771484375}, {"start": 897.44, "end": 897.52, "word": " okay,", "probability": 0.3134765625}, {"start": 897.62, "end": 897.82, "word": " let's", "probability": 0.791748046875}, {"start": 897.82, "end": 898.0, "word": " do", "probability": 0.373779296875}, {"start": 898.0, "end": 898.28, "word": " one", "probability": 0.76708984375}, {"start": 898.28, "end": 898.5, "word": " only", "probability": 0.1697998046875}, {"start": 898.5, "end": 898.76, "word": " up", "probability": 0.251708984375}, {"start": 898.76, "end": 899.02, "word": " here.", "probability": 0.587890625}, {"start": 899.66, "end": 900.06, "word": " Okay,", "probability": 0.626953125}, {"start": 900.14, "end": 900.22, "word": " it", "probability": 0.376220703125}, {"start": 900.22, "end": 900.38, "word": " works,", "probability": 0.5576171875}, {"start": 900.66, "end": 900.84, "word": " but", "probability": 0.91015625}, {"start": 900.84, "end": 900.94, "word": " in", "probability": 0.90869140625}, {"start": 900.94, "end": 901.04, "word": " this", "probability": 0.91162109375}, {"start": 901.04, "end": 901.28, "word": " case,", "probability": 0.8984375}, {"start": 902.06, "end": 902.3, "word": " you", "probability": 0.93359375}, {"start": 902.3, "end": 902.44, "word": " cancelled", "probability": 0.1522216796875}, {"start": 902.44, "end": 902.78, "word": " the", "probability": 0.8525390625}, {"start": 902.78, "end": 903.06, "word": " dependency", "probability": 0.853515625}, {"start": 903.06, "end": 903.62, "word": " injection.", "probability": 0.96728515625}, {"start": 903.78, "end": 903.94, "word": " We", "probability": 0.6533203125}, {"start": 903.94, "end": 904.14, "word": " said", "probability": 0.8515625}, {"start": 904.14, "end": 904.98, "word": " that", "probability": 0.55126953125}, {"start": 904.98, "end": 904.98, "word": " it", "probability": 0.82470703125}, {"start": 904.98, "end": 905.06, "word": " is", "probability": 0.853515625}, {"start": 905.06, "end": 905.44, "word": " preferable", "probability": 0.68212890625}, {"start": 905.44, "end": 905.52, "word": " for", "probability": 0.27490234375}, {"start": 905.52, "end": 905.66, "word": " you", "probability": 0.919921875}, {"start": 905.66, "end": 905.72, "word": " to", "probability": 0.95849609375}, {"start": 905.72, "end": 905.9, "word": " go", "probability": 0.04840087890625}, {"start": 905.9, "end": 906.04, "word": " out", "probability": 0.38232421875}, {"start": 906.04, "end": 906.04, "word": " with", "probability": 0.1474609375}, {"start": 906.04, "end": 906.34, "word": " your", "probability": 0.496826171875}, {"start": 906.34, "end": 906.34, "word": " clients", "probability": 0.3515625}, {"start": 906.34, "end": 907.5, "word": " and", "probability": 0.80810546875}, {"start": 907.5, "end": 907.76, "word": " tease", "probability": 0.0758056640625}, {"start": 907.76, "end": 908.04, "word": " them,", "probability": 0.88623046875}, {"start": 908.52, "end": 908.7, "word": " okay?", "probability": 0.72998046875}, {"start": 910.46, "end": 910.86, "word": " Okay,", "probability": 0.57568359375}, {"start": 911.08, "end": 911.52, "word": " before", "probability": 0.343994140625}, {"start": 911.52, "end": 911.84, "word": " solving", "probability": 0.6298828125}, {"start": 911.84, "end": 912.5, "word": " this", "probability": 0.93017578125}, {"start": 912.5, "end": 912.5, "word": " problem,", "probability": 0.8623046875}, {"start": 913.06, "end": 913.18, "word": " did", "probability": 0.181640625}, {"start": 913.18, "end": 913.36, "word": " you", "probability": 0.96630859375}, {"start": 913.36, "end": 913.36, "word": " notice", "probability": 0.552734375}, {"start": 913.36, "end": 913.82, "word": " that", "probability": 0.71923828125}, {"start": 913.82, "end": 913.82, "word": " we", "probability": 0.68310546875}, {"start": 913.82, "end": 914.1, "word": " ..", "probability": 0.106201171875}, {"start": 914.1, "end": 914.26, "word": " let's", "probability": 0.61279296875}, {"start": 914.26, "end": 914.54, "word": " ..", "probability": 0.2333984375}, {"start": 914.54, "end": 914.74, "word": " so", "probability": 0.3876953125}, {"start": 914.74, "end": 914.82, "word": " that", "probability": 0.6201171875}, {"start": 914.82, "end": 914.88, "word": " you", "probability": 0.265380859375}, {"start": 914.88, "end": 914.88, "word": " don't", "probability": 0.79638671875}, {"start": 914.88, "end": 914.98, "word": " get", "probability": 0.5400390625}, {"start": 914.98, "end": 915.2, "word": " confused.", "probability": 0.306640625}, {"start": 915.24, "end": 915.38, "word": " This", "probability": 0.67236328125}, {"start": 915.38, "end": 915.42, "word": " is", "probability": 0.94970703125}, {"start": 915.42, "end": 915.5, "word": " the", "probability": 0.8935546875}, {"start": 915.5, "end": 915.7, "word": " main.", "probability": 0.9140625}, {"start": 916.04, "end": 916.22, "word": " This", "probability": 0.81201171875}, {"start": 916.22, "end": 916.32, "word": " is", "probability": 0.947265625}, {"start": 916.32, "end": 916.54, "word": " A,", "probability": 0.5927734375}, {"start": 916.7, "end": 916.9, "word": " B,", "probability": 0.92333984375}, {"start": 917.1, "end": 917.3, "word": " C", "probability": 0.9365234375}, {"start": 917.3, "end": 917.48, "word": " and", "probability": 0.66796875}, {"start": 917.48, "end": 917.68, "word": " D.", "probability": 0.99755859375}], "temperature": 1.0}, {"id": 38, "seek": 94308, "start": 918.76, "end": 943.08, "text": " Who needs this A? It needs to be inside these, okay? So that you can send data to them. Okay, so what do we do? We go to A and say here in A BBCCDD. What are these? References. References. These are still null values. Okay? Now, you make a constructor", "tokens": [2102, 2203, 341, 316, 30, 467, 2203, 281, 312, 1854, 613, 11, 1392, 30, 407, 300, 291, 393, 2845, 1412, 281, 552, 13, 1033, 11, 370, 437, 360, 321, 360, 30, 492, 352, 281, 316, 293, 584, 510, 294, 316, 22669, 16508, 35, 13, 708, 366, 613, 30, 36889, 2667, 13, 36889, 2667, 13, 1981, 366, 920, 18184, 4190, 13, 1033, 30, 823, 11, 291, 652, 257, 47479], "avg_logprob": -0.4950181401294211, "compression_ratio": 1.4651162790697674, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 918.76, "end": 919.24, "word": " Who", "probability": 0.220947265625}, {"start": 919.24, "end": 919.72, "word": " needs", "probability": 0.6044921875}, {"start": 919.72, "end": 919.86, "word": " this", "probability": 0.49658203125}, {"start": 919.86, "end": 919.86, "word": " A?", "probability": 0.603515625}, {"start": 920.56, "end": 920.94, "word": " It", "probability": 0.27587890625}, {"start": 920.94, "end": 921.24, "word": " needs", "probability": 0.434326171875}, {"start": 921.24, "end": 921.38, "word": " to", "probability": 0.958984375}, {"start": 921.38, "end": 921.56, "word": " be", "probability": 0.90380859375}, {"start": 921.56, "end": 921.82, "word": " inside", "probability": 0.5654296875}, {"start": 921.82, "end": 922.36, "word": " these,", "probability": 0.404541015625}, {"start": 922.44, "end": 923.34, "word": " okay?", "probability": 0.2349853515625}, {"start": 923.4, "end": 923.54, "word": " So", "probability": 0.78515625}, {"start": 923.54, "end": 923.7, "word": " that", "probability": 0.55078125}, {"start": 923.7, "end": 923.74, "word": " you", "probability": 0.92626953125}, {"start": 923.74, "end": 923.94, "word": " can", "probability": 0.87451171875}, {"start": 923.94, "end": 924.2, "word": " send", "probability": 0.66552734375}, {"start": 924.2, "end": 924.52, "word": " data", "probability": 0.39697265625}, {"start": 924.52, "end": 924.7, "word": " to", "probability": 0.89892578125}, {"start": 924.7, "end": 924.9, "word": " them.", "probability": 0.8583984375}, {"start": 925.34, "end": 925.64, "word": " Okay,", "probability": 0.55126953125}, {"start": 925.76, "end": 925.8, "word": " so", "probability": 0.75341796875}, {"start": 925.8, "end": 925.96, "word": " what", "probability": 0.88623046875}, {"start": 925.96, "end": 926.08, "word": " do", "probability": 0.35205078125}, {"start": 926.08, "end": 926.16, "word": " we", "probability": 0.94580078125}, {"start": 926.16, "end": 926.36, "word": " do?", "probability": 0.8837890625}, {"start": 926.52, "end": 926.64, "word": " We", "probability": 0.90234375}, {"start": 926.64, "end": 926.92, "word": " go", "probability": 0.68212890625}, {"start": 926.92, "end": 927.08, "word": " to", "probability": 0.95263671875}, {"start": 927.08, "end": 927.48, "word": " A", "probability": 0.60888671875}, {"start": 927.48, "end": 928.82, "word": " and", "probability": 0.4609375}, {"start": 928.82, "end": 929.08, "word": " say", "probability": 0.352294921875}, {"start": 929.08, "end": 929.34, "word": " here", "probability": 0.74658203125}, {"start": 929.34, "end": 929.52, "word": " in", "probability": 0.84033203125}, {"start": 929.52, "end": 929.92, "word": " A", "probability": 0.92919921875}, {"start": 929.92, "end": 935.74, "word": " BBCCDD.", "probability": 0.6939290364583334}, {"start": 935.8, "end": 936.04, "word": " What", "probability": 0.86669921875}, {"start": 936.04, "end": 936.08, "word": " are", "probability": 0.8173828125}, {"start": 936.08, "end": 936.38, "word": " these?", "probability": 0.84326171875}, {"start": 938.42, "end": 938.9, "word": " References.", "probability": 0.875732421875}, {"start": 938.9, "end": 938.9, "word": " References.", "probability": 0.7451171875}, {"start": 939.02, "end": 939.2, "word": " These", "probability": 0.5615234375}, {"start": 939.2, "end": 939.42, "word": " are", "probability": 0.63427734375}, {"start": 939.42, "end": 939.42, "word": " still", "probability": 0.7021484375}, {"start": 939.42, "end": 939.96, "word": " null", "probability": 0.85546875}, {"start": 939.96, "end": 939.96, "word": " values.", "probability": 0.90283203125}, {"start": 940.72, "end": 940.96, "word": " Okay?", "probability": 0.72216796875}, {"start": 941.54, "end": 941.82, "word": " Now,", "probability": 0.67822265625}, {"start": 941.9, "end": 942.0, "word": " you", "probability": 0.279541015625}, {"start": 942.0, "end": 942.36, "word": " make", "probability": 0.3369140625}, {"start": 942.36, "end": 942.5, "word": " a", "probability": 0.65966796875}, {"start": 942.5, "end": 943.08, "word": " constructor", "probability": 0.873046875}], "temperature": 1.0}, {"id": 39, "seek": 96098, "start": 943.92, "end": 960.98, "text": "What are methods? Let's make methods public, void, but you have to make a method for each one set B because I say this dot B equals B and public void", "tokens": [3748, 366, 7150, 30, 961, 311, 652, 7150, 1908, 11, 22009, 11, 457, 291, 362, 281, 652, 257, 3170, 337, 1184, 472, 992, 363, 570, 286, 584, 341, 5893, 363, 6915, 363, 293, 1908, 22009], "avg_logprob": -0.5872395800219642, "compression_ratio": 1.3070175438596492, "no_speech_prob": 8.821487426757812e-06, "words": [{"start": 943.92, "end": 944.14, "word": "What", "probability": 0.0252685546875}, {"start": 944.14, "end": 944.2, "word": " are", "probability": 0.59716796875}, {"start": 944.2, "end": 944.6, "word": " methods?", "probability": 0.76513671875}, {"start": 945.28, "end": 946.0, "word": " Let's", "probability": 0.5533447265625}, {"start": 946.0, "end": 946.16, "word": " make", "probability": 0.7548828125}, {"start": 946.16, "end": 946.66, "word": " methods", "probability": 0.66162109375}, {"start": 946.66, "end": 947.38, "word": " public,", "probability": 0.308349609375}, {"start": 947.58, "end": 947.78, "word": " void,", "probability": 0.84375}, {"start": 948.0, "end": 948.0, "word": " but", "probability": 0.398681640625}, {"start": 948.0, "end": 948.12, "word": " you", "probability": 0.58447265625}, {"start": 948.12, "end": 948.2, "word": " have", "probability": 0.296142578125}, {"start": 948.2, "end": 948.28, "word": " to", "probability": 0.96484375}, {"start": 948.28, "end": 948.42, "word": " make", "probability": 0.91748046875}, {"start": 948.42, "end": 948.52, "word": " a", "probability": 0.280517578125}, {"start": 948.52, "end": 948.74, "word": " method", "probability": 0.955078125}, {"start": 948.74, "end": 948.94, "word": " for", "probability": 0.9150390625}, {"start": 948.94, "end": 949.84, "word": " each", "probability": 0.84375}, {"start": 949.84, "end": 950.36, "word": " one", "probability": 0.73828125}, {"start": 950.36, "end": 951.44, "word": " set", "probability": 0.396240234375}, {"start": 951.44, "end": 951.96, "word": " B", "probability": 0.7626953125}, {"start": 951.96, "end": 955.5, "word": " because", "probability": 0.2315673828125}, {"start": 955.5, "end": 955.66, "word": " I", "probability": 0.78271484375}, {"start": 955.66, "end": 955.82, "word": " say", "probability": 0.37841796875}, {"start": 955.82, "end": 956.18, "word": " this", "probability": 0.890625}, {"start": 956.18, "end": 956.44, "word": " dot", "probability": 0.491943359375}, {"start": 956.44, "end": 956.82, "word": " B", "probability": 0.9228515625}, {"start": 956.82, "end": 957.4, "word": " equals", "probability": 0.650390625}, {"start": 957.4, "end": 958.78, "word": " B", "probability": 0.91650390625}, {"start": 958.78, "end": 959.94, "word": " and", "probability": 0.70458984375}, {"start": 959.94, "end": 960.32, "word": " public", "probability": 0.9130859375}, {"start": 960.32, "end": 960.98, "word": " void", "probability": 0.6962890625}], "temperature": 1.0}, {"id": 40, "seek": 100813, "start": 981.65, "end": 1008.13, "text": " Ok? These are the set methods So that I can send B, C and D Did you notice that after I did these things here I can go to the test Ok? And here I created A, B and C Did you notice that these that we created B, C and D should be sent to whom? To A I go to A and tell it to set B and send B to it A dot set C", "tokens": [3477, 30, 1981, 366, 264, 992, 7150, 407, 300, 286, 393, 2845, 363, 11, 383, 293, 413, 2589, 291, 3449, 300, 934, 286, 630, 613, 721, 510, 286, 393, 352, 281, 264, 1500, 3477, 30, 400, 510, 286, 2942, 316, 11, 363, 293, 383, 2589, 291, 3449, 300, 613, 300, 321, 2942, 363, 11, 383, 293, 413, 820, 312, 2279, 281, 7101, 30, 1407, 316, 286, 352, 281, 316, 293, 980, 309, 281, 992, 363, 293, 2845, 363, 281, 309, 316, 5893, 992, 383], "avg_logprob": -0.4235294159720926, "compression_ratio": 1.734463276836158, "no_speech_prob": 4.589557647705078e-06, "words": [{"start": 981.65, "end": 982.09, "word": " Ok?", "probability": 0.08587646484375}, {"start": 982.57, "end": 982.95, "word": " These", "probability": 0.51220703125}, {"start": 982.95, "end": 983.01, "word": " are", "probability": 0.91748046875}, {"start": 983.01, "end": 983.07, "word": " the", "probability": 0.60498046875}, {"start": 983.07, "end": 983.19, "word": " set", "probability": 0.6796875}, {"start": 983.19, "end": 983.61, "word": " methods", "probability": 0.67236328125}, {"start": 983.61, "end": 984.29, "word": " So", "probability": 0.2239990234375}, {"start": 984.29, "end": 984.41, "word": " that", "probability": 0.54248046875}, {"start": 984.41, "end": 984.71, "word": " I", "probability": 0.90771484375}, {"start": 984.71, "end": 984.71, "word": " can", "probability": 0.86865234375}, {"start": 984.71, "end": 984.87, "word": " send", "probability": 0.6474609375}, {"start": 984.87, "end": 985.19, "word": " B,", "probability": 0.56298828125}, {"start": 985.35, "end": 985.55, "word": " C", "probability": 0.6982421875}, {"start": 985.55, "end": 985.73, "word": " and", "probability": 0.6103515625}, {"start": 985.73, "end": 985.95, "word": " D", "probability": 0.99609375}, {"start": 985.95, "end": 986.83, "word": " Did", "probability": 0.275146484375}, {"start": 986.83, "end": 986.89, "word": " you", "probability": 0.96484375}, {"start": 986.89, "end": 987.03, "word": " notice", "probability": 0.5419921875}, {"start": 987.03, "end": 987.15, "word": " that", "probability": 0.474853515625}, {"start": 987.15, "end": 987.31, "word": " after", "probability": 0.751953125}, {"start": 987.31, "end": 987.75, "word": " I", "probability": 0.495849609375}, {"start": 987.75, "end": 987.75, "word": " did", "probability": 0.51171875}, {"start": 987.75, "end": 988.07, "word": " these", "probability": 0.5869140625}, {"start": 988.07, "end": 988.47, "word": " things", "probability": 0.6552734375}, {"start": 988.47, "end": 988.77, "word": " here", "probability": 0.7099609375}, {"start": 988.77, "end": 990.65, "word": " I", "probability": 0.609375}, {"start": 990.65, "end": 990.89, "word": " can", "probability": 0.869140625}, {"start": 990.89, "end": 991.13, "word": " go", "probability": 0.810546875}, {"start": 991.13, "end": 991.27, "word": " to", "probability": 0.88037109375}, {"start": 991.27, "end": 991.39, "word": " the", "probability": 0.69775390625}, {"start": 991.39, "end": 991.75, "word": " test", "probability": 0.8134765625}, {"start": 991.75, "end": 993.71, "word": " Ok?", "probability": 0.41015625}, {"start": 994.57, "end": 995.01, "word": " And", "probability": 0.426513671875}, {"start": 995.01, "end": 995.19, "word": " here", "probability": 0.5263671875}, {"start": 995.19, "end": 995.29, "word": " I", "probability": 0.9306640625}, {"start": 995.29, "end": 995.57, "word": " created", "probability": 0.701171875}, {"start": 995.57, "end": 995.91, "word": " A,", "probability": 0.84521484375}, {"start": 996.03, "end": 996.19, "word": " B", "probability": 0.876953125}, {"start": 996.19, "end": 996.33, "word": " and", "probability": 0.75244140625}, {"start": 996.33, "end": 996.59, "word": " C", "probability": 0.998046875}, {"start": 996.59, "end": 996.87, "word": " Did", "probability": 0.78076171875}, {"start": 996.87, "end": 996.91, "word": " you", "probability": 0.9677734375}, {"start": 996.91, "end": 997.07, "word": " notice", "probability": 0.8466796875}, {"start": 997.07, "end": 997.19, "word": " that", "probability": 0.62890625}, {"start": 997.19, "end": 997.33, "word": " these", "probability": 0.343505859375}, {"start": 997.33, "end": 998.01, "word": " that", "probability": 0.25048828125}, {"start": 998.01, "end": 998.15, "word": " we", "probability": 0.68408203125}, {"start": 998.15, "end": 998.47, "word": " created", "probability": 0.724609375}, {"start": 998.47, "end": 998.83, "word": " B,", "probability": 0.74365234375}, {"start": 999.01, "end": 999.19, "word": " C", "probability": 0.88623046875}, {"start": 999.19, "end": 999.35, "word": " and", "probability": 0.890625}, {"start": 999.35, "end": 999.47, "word": " D", "probability": 0.99853515625}, {"start": 999.47, "end": 999.65, "word": " should", "probability": 0.08038330078125}, {"start": 999.65, "end": 999.69, "word": " be", "probability": 0.5244140625}, {"start": 999.69, "end": 999.91, "word": " sent", "probability": 0.8583984375}, {"start": 999.91, "end": 1000.13, "word": " to", "probability": 0.9140625}, {"start": 1000.13, "end": 1000.35, "word": " whom?", "probability": 0.892578125}, {"start": 1000.99, "end": 1001.33, "word": " To", "probability": 0.88623046875}, {"start": 1001.33, "end": 1001.59, "word": " A", "probability": 0.86279296875}, {"start": 1001.59, "end": 1002.01, "word": " I", "probability": 0.53466796875}, {"start": 1002.01, "end": 1002.19, "word": " go", "probability": 0.837890625}, {"start": 1002.19, "end": 1002.33, "word": " to", "probability": 0.97021484375}, {"start": 1002.33, "end": 1002.69, "word": " A", "probability": 0.970703125}, {"start": 1002.69, "end": 1002.91, "word": " and", "probability": 0.88330078125}, {"start": 1002.91, "end": 1003.09, "word": " tell", "probability": 0.434814453125}, {"start": 1003.09, "end": 1003.23, "word": " it", "probability": 0.53125}, {"start": 1003.23, "end": 1003.27, "word": " to", "probability": 0.521484375}, {"start": 1003.27, "end": 1003.57, "word": " set", "probability": 0.453857421875}, {"start": 1003.57, "end": 1005.05, "word": " B", "probability": 0.93408203125}, {"start": 1005.05, "end": 1005.35, "word": " and", "probability": 0.52099609375}, {"start": 1005.35, "end": 1005.59, "word": " send", "probability": 0.705078125}, {"start": 1005.59, "end": 1005.91, "word": " B", "probability": 0.59375}, {"start": 1005.91, "end": 1006.05, "word": " to", "probability": 0.71630859375}, {"start": 1006.05, "end": 1006.05, "word": " it", "probability": 0.72900390625}, {"start": 1006.05, "end": 1006.81, "word": " A", "probability": 0.85498046875}, {"start": 1006.81, "end": 1007.41, "word": " dot", "probability": 0.5458984375}, {"start": 1007.41, "end": 1007.73, "word": " set", "probability": 0.9609375}, {"start": 1007.73, "end": 1008.13, "word": " C", "probability": 0.94287109375}], "temperature": 1.0}, {"id": 41, "seek": 103557, "start": 1010.33, "end": 1035.57, "text": " A dot set D All this I did in A So that I can send it to them Now I came and told A to set data This is the goal that we want to achieve, did you get it? A has reached data, it should report it to whom? To the other Did you get it? As long as it has reached data, it should do like this F", "tokens": [316, 5893, 992, 413, 1057, 341, 286, 630, 294, 316, 407, 300, 286, 393, 2845, 309, 281, 552, 823, 286, 1361, 293, 1907, 316, 281, 992, 1412, 639, 307, 264, 3387, 300, 321, 528, 281, 4584, 11, 630, 291, 483, 309, 30, 316, 575, 6488, 1412, 11, 309, 820, 2275, 309, 281, 7101, 30, 1407, 264, 661, 2589, 291, 483, 309, 30, 1018, 938, 382, 309, 575, 6488, 1412, 11, 309, 820, 360, 411, 341, 479], "avg_logprob": -0.6120130055910581, "compression_ratio": 1.670520231213873, "no_speech_prob": 7.450580596923828e-06, "words": [{"start": 1010.33, "end": 1010.73, "word": " A", "probability": 0.126220703125}, {"start": 1010.73, "end": 1011.13, "word": " dot", "probability": 0.6904296875}, {"start": 1011.13, "end": 1011.53, "word": " set", "probability": 0.8603515625}, {"start": 1011.53, "end": 1012.69, "word": " D", "probability": 0.71533203125}, {"start": 1012.69, "end": 1017.39, "word": " All", "probability": 0.451416015625}, {"start": 1017.39, "end": 1017.67, "word": " this", "probability": 0.349609375}, {"start": 1017.67, "end": 1017.75, "word": " I", "probability": 0.285888671875}, {"start": 1017.75, "end": 1018.01, "word": " did", "probability": 0.55615234375}, {"start": 1018.01, "end": 1018.19, "word": " in", "probability": 0.67724609375}, {"start": 1018.19, "end": 1018.51, "word": " A", "probability": 0.73583984375}, {"start": 1018.51, "end": 1020.85, "word": " So", "probability": 0.277587890625}, {"start": 1020.85, "end": 1020.97, "word": " that", "probability": 0.47021484375}, {"start": 1020.97, "end": 1021.05, "word": " I", "probability": 0.94970703125}, {"start": 1021.05, "end": 1021.13, "word": " can", "probability": 0.6962890625}, {"start": 1021.13, "end": 1021.39, "word": " send", "probability": 0.66650390625}, {"start": 1021.39, "end": 1021.51, "word": " it", "probability": 0.347412109375}, {"start": 1021.51, "end": 1021.53, "word": " to", "probability": 0.72900390625}, {"start": 1021.53, "end": 1021.75, "word": " them", "probability": 0.2275390625}, {"start": 1021.75, "end": 1022.07, "word": " Now", "probability": 0.5107421875}, {"start": 1022.07, "end": 1023.81, "word": " I", "probability": 0.21826171875}, {"start": 1023.81, "end": 1024.23, "word": " came", "probability": 0.172607421875}, {"start": 1024.23, "end": 1024.31, "word": " and", "probability": 0.62255859375}, {"start": 1024.31, "end": 1024.47, "word": " told", "probability": 0.70703125}, {"start": 1024.47, "end": 1024.87, "word": " A", "probability": 0.4736328125}, {"start": 1024.87, "end": 1025.07, "word": " to", "probability": 0.359375}, {"start": 1025.07, "end": 1025.21, "word": " set", "probability": 0.7734375}, {"start": 1025.21, "end": 1025.51, "word": " data", "probability": 0.9091796875}, {"start": 1025.51, "end": 1026.47, "word": " This", "probability": 0.260986328125}, {"start": 1026.47, "end": 1027.45, "word": " is", "probability": 0.91015625}, {"start": 1027.45, "end": 1027.53, "word": " the", "probability": 0.79443359375}, {"start": 1027.53, "end": 1027.71, "word": " goal", "probability": 0.63623046875}, {"start": 1027.71, "end": 1027.89, "word": " that", "probability": 0.314208984375}, {"start": 1027.89, "end": 1027.99, "word": " we", "probability": 0.5673828125}, {"start": 1027.99, "end": 1028.05, "word": " want", "probability": 0.7041015625}, {"start": 1028.05, "end": 1028.05, "word": " to", "probability": 0.42041015625}, {"start": 1028.05, "end": 1028.21, "word": " achieve,", "probability": 0.6298828125}, {"start": 1028.25, "end": 1028.37, "word": " did", "probability": 0.5380859375}, {"start": 1028.37, "end": 1028.39, "word": " you", "probability": 0.97314453125}, {"start": 1028.39, "end": 1028.53, "word": " get", "probability": 0.249755859375}, {"start": 1028.53, "end": 1028.63, "word": " it?", "probability": 0.8388671875}, {"start": 1028.95, "end": 1029.29, "word": " A", "probability": 0.62109375}, {"start": 1029.29, "end": 1029.43, "word": " has", "probability": 0.255615234375}, {"start": 1029.43, "end": 1029.71, "word": " reached", "probability": 0.60009765625}, {"start": 1029.71, "end": 1030.07, "word": " data,", "probability": 0.62353515625}, {"start": 1030.15, "end": 1030.19, "word": " it", "probability": 0.497314453125}, {"start": 1030.19, "end": 1030.39, "word": " should", "probability": 0.64794921875}, {"start": 1030.39, "end": 1030.75, "word": " report", "probability": 0.203125}, {"start": 1030.75, "end": 1030.87, "word": " it", "probability": 0.7783203125}, {"start": 1030.87, "end": 1030.99, "word": " to", "probability": 0.9189453125}, {"start": 1030.99, "end": 1031.15, "word": " whom?", "probability": 0.828125}, {"start": 1031.53, "end": 1031.93, "word": " To", "probability": 0.81591796875}, {"start": 1031.93, "end": 1032.03, "word": " the", "probability": 0.50390625}, {"start": 1032.03, "end": 1032.25, "word": " other", "probability": 0.75146484375}, {"start": 1032.25, "end": 1032.69, "word": " Did", "probability": 0.2374267578125}, {"start": 1032.69, "end": 1032.89, "word": " you", "probability": 0.970703125}, {"start": 1032.89, "end": 1032.95, "word": " get", "probability": 0.84228515625}, {"start": 1032.95, "end": 1033.05, "word": " it?", "probability": 0.90234375}, {"start": 1033.05, "end": 1033.13, "word": " As", "probability": 0.56982421875}, {"start": 1033.13, "end": 1033.29, "word": " long", "probability": 0.72314453125}, {"start": 1033.29, "end": 1033.29, "word": " as", "probability": 0.96826171875}, {"start": 1033.29, "end": 1033.63, "word": " it", "probability": 0.266357421875}, {"start": 1033.63, "end": 1033.63, "word": " has", "probability": 0.6484375}, {"start": 1033.63, "end": 1033.63, "word": " reached", "probability": 0.81005859375}, {"start": 1033.63, "end": 1034.07, "word": " data,", "probability": 0.75537109375}, {"start": 1034.17, "end": 1034.25, "word": " it", "probability": 0.7412109375}, {"start": 1034.25, "end": 1034.37, "word": " should", "probability": 0.45751953125}, {"start": 1034.37, "end": 1034.69, "word": " do", "probability": 0.5166015625}, {"start": 1034.69, "end": 1034.93, "word": " like", "probability": 0.257080078125}, {"start": 1034.93, "end": 1035.17, "word": " this", "probability": 0.89453125}, {"start": 1035.17, "end": 1035.57, "word": " F", "probability": 0.67333984375}], "temperature": 1.0}, {"id": 42, "seek": 106105, "start": 1036.39, "end": 1061.05, "text": " if A is not equal to null, I can't make it set, right? No, I go to B if B is not equal to null, B dot data received if C is not equal to null, C dot data received if D is not equal to null, D dot data", "tokens": [498, 316, 307, 406, 2681, 281, 18184, 11, 286, 393, 380, 652, 309, 992, 11, 558, 30, 883, 11, 286, 352, 281, 363, 498, 363, 307, 406, 2681, 281, 18184, 11, 363, 5893, 1412, 4613, 498, 383, 307, 406, 2681, 281, 18184, 11, 383, 5893, 1412, 4613, 498, 413, 307, 406, 2681, 281, 18184, 11, 413, 5893, 1412], "avg_logprob": -0.3702330599396916, "compression_ratio": 1.9142857142857144, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 1036.39, "end": 1036.67, "word": " if", "probability": 0.50439453125}, {"start": 1036.67, "end": 1037.05, "word": " A", "probability": 0.336181640625}, {"start": 1037.05, "end": 1037.47, "word": " is", "probability": 0.3974609375}, {"start": 1037.47, "end": 1037.47, "word": " not", "probability": 0.763671875}, {"start": 1037.47, "end": 1037.87, "word": " equal", "probability": 0.8740234375}, {"start": 1037.87, "end": 1037.97, "word": " to", "probability": 0.97607421875}, {"start": 1037.97, "end": 1038.13, "word": " null,", "probability": 0.513671875}, {"start": 1038.59, "end": 1038.69, "word": " I", "probability": 0.443603515625}, {"start": 1038.69, "end": 1039.13, "word": " can't", "probability": 0.5546875}, {"start": 1039.13, "end": 1039.57, "word": " make", "probability": 0.302001953125}, {"start": 1039.57, "end": 1039.67, "word": " it", "probability": 0.35107421875}, {"start": 1039.67, "end": 1039.95, "word": " set,", "probability": 0.61669921875}, {"start": 1040.09, "end": 1040.33, "word": " right?", "probability": 0.53759765625}, {"start": 1040.49, "end": 1040.59, "word": " No,", "probability": 0.204833984375}, {"start": 1040.61, "end": 1040.73, "word": " I", "probability": 0.5927734375}, {"start": 1040.73, "end": 1040.87, "word": " go", "probability": 0.45068359375}, {"start": 1040.87, "end": 1041.41, "word": " to", "probability": 0.4267578125}, {"start": 1041.41, "end": 1041.75, "word": " B", "probability": 0.56884765625}, {"start": 1041.75, "end": 1041.99, "word": " if", "probability": 0.42578125}, {"start": 1041.99, "end": 1042.25, "word": " B", "probability": 0.935546875}, {"start": 1042.25, "end": 1042.35, "word": " is", "probability": 0.8974609375}, {"start": 1042.35, "end": 1042.43, "word": " not", "probability": 0.923828125}, {"start": 1042.43, "end": 1042.75, "word": " equal", "probability": 0.89697265625}, {"start": 1042.75, "end": 1042.83, "word": " to", "probability": 0.9697265625}, {"start": 1042.83, "end": 1043.03, "word": " null,", "probability": 0.96875}, {"start": 1043.27, "end": 1043.87, "word": " B", "probability": 0.82568359375}, {"start": 1043.87, "end": 1044.37, "word": " dot", "probability": 0.494873046875}, {"start": 1044.37, "end": 1044.95, "word": " data", "probability": 0.943359375}, {"start": 1044.95, "end": 1046.37, "word": " received", "probability": 0.75048828125}, {"start": 1046.37, "end": 1047.71, "word": " if", "probability": 0.77685546875}, {"start": 1047.71, "end": 1048.91, "word": " C", "probability": 0.9541015625}, {"start": 1048.91, "end": 1049.35, "word": " is", "probability": 0.908203125}, {"start": 1049.35, "end": 1049.37, "word": " not", "probability": 0.93994140625}, {"start": 1049.37, "end": 1049.77, "word": " equal", "probability": 0.89453125}, {"start": 1049.77, "end": 1049.89, "word": " to", "probability": 0.97216796875}, {"start": 1049.89, "end": 1050.09, "word": " null,", "probability": 0.9736328125}, {"start": 1050.45, "end": 1050.95, "word": " C", "probability": 0.9560546875}, {"start": 1050.95, "end": 1051.31, "word": " dot", "probability": 0.912109375}, {"start": 1051.31, "end": 1051.79, "word": " data", "probability": 0.9453125}, {"start": 1051.79, "end": 1054.63, "word": " received", "probability": 0.78369140625}, {"start": 1054.63, "end": 1055.13, "word": " if", "probability": 0.9228515625}, {"start": 1055.13, "end": 1056.45, "word": " D", "probability": 0.9951171875}, {"start": 1056.45, "end": 1056.95, "word": " is", "probability": 0.9423828125}, {"start": 1056.95, "end": 1057.05, "word": " not", "probability": 0.94091796875}, {"start": 1057.05, "end": 1057.47, "word": " equal", "probability": 0.904296875}, {"start": 1057.47, "end": 1057.59, "word": " to", "probability": 0.97314453125}, {"start": 1057.59, "end": 1057.79, "word": " null,", "probability": 0.9755859375}, {"start": 1058.35, "end": 1060.27, "word": " D", "probability": 0.99169921875}, {"start": 1060.27, "end": 1060.59, "word": " dot", "probability": 0.9443359375}, {"start": 1060.59, "end": 1061.05, "word": " data", "probability": 0.95703125}], "temperature": 1.0}, {"id": 43, "seek": 108527, "start": 1065.49, "end": 1085.27, "text": "Receive, خلصنا,الان انا فعليا اعملت تلاتة objects, في أربع objects, في علاقة one to many between them, dependency ان ال A بتعتمد على ال B و ال C و ال D على أساس ان لو صار فيه تغيير في ال A بده يبلغ ال B و ال C و ال D الفكرة كيف؟ بدك توصل ال dependencies يعني ال B و ال C و ال D ل ال A", "tokens": [8524, 384, 488, 11, 16490, 1211, 9381, 8315, 11, 6027, 7649, 1975, 8315, 6156, 3615, 20292, 995, 1975, 25957, 1211, 2655, 6055, 1211, 9307, 3660, 6565, 11, 8978, 5551, 25513, 3615, 6565, 11, 8978, 11203, 995, 28671, 472, 281, 867, 1296, 552, 11, 33621, 16472, 2423, 316, 39894, 34268, 2304, 3215, 15844, 2423, 363, 4032, 2423, 383, 4032, 2423, 413, 15844, 5551, 3794, 32277, 16472, 45164, 20328, 9640, 8978, 3224, 6055, 17082, 1829, 13546, 8978, 2423, 316, 47525, 3224, 7251, 36150, 17082, 2423, 363, 4032, 2423, 383, 4032, 2423, 413, 27188, 4117, 25720, 9122, 33911, 22807, 47525, 4117, 33427, 36520, 2423, 36606, 37495, 22653, 2423, 363, 4032, 2423, 383, 4032, 2423, 413, 5296, 2423, 316], "avg_logprob": -0.2906788705751814, "compression_ratio": 1.7573221757322175, "no_speech_prob": 2.777576446533203e-05, "words": [{"start": 1065.4900000000002, "end": 1065.8500000000001, "word": "Receive,", "probability": 0.5862019856770834}, {"start": 1065.8500000000001, "end": 1066.21, "word": " خلصنا", "probability": 0.8203125}, {"start": 1066.21, "end": 1067.21, "word": ",الان", "probability": 0.3776041666666667}, {"start": 1067.21, "end": 1067.39, "word": " انا", "probability": 0.862060546875}, {"start": 1067.39, "end": 1067.95, "word": " فعليا", "probability": 0.839599609375}, {"start": 1067.95, "end": 1068.45, "word": " اعملت", "probability": 0.8275146484375}, {"start": 1068.45, "end": 1068.89, "word": " تلاتة", "probability": 0.9365234375}, {"start": 1068.89, "end": 1069.29, "word": " objects,", "probability": 0.951171875}, {"start": 1069.61, "end": 1069.79, "word": " في", "probability": 0.464599609375}, {"start": 1069.79, "end": 1070.41, "word": " أربع", "probability": 0.7245279947916666}, {"start": 1070.41, "end": 1070.79, "word": " objects,", "probability": 0.96435546875}, {"start": 1070.87, "end": 1070.97, "word": " في", "probability": 0.6494140625}, {"start": 1070.97, "end": 1071.47, "word": " علاقة", "probability": 0.90576171875}, {"start": 1071.47, "end": 1071.75, "word": " one", "probability": 0.91845703125}, {"start": 1071.75, "end": 1071.93, "word": " to", "probability": 0.8154296875}, {"start": 1071.93, "end": 1072.13, "word": " many", "probability": 0.83251953125}, {"start": 1072.13, "end": 1072.39, "word": " between", "probability": 0.5576171875}, {"start": 1072.39, "end": 1072.73, "word": " them,", "probability": 0.64208984375}, {"start": 1072.77, "end": 1073.29, "word": " dependency", "probability": 0.69970703125}, {"start": 1073.29, "end": 1074.83, "word": " ان", "probability": 0.56298828125}, {"start": 1074.83, "end": 1074.99, "word": " ال", "probability": 0.9384765625}, {"start": 1074.99, "end": 1075.15, "word": " A", "probability": 0.47119140625}, {"start": 1075.15, "end": 1075.73, "word": " بتعتمد", "probability": 0.9249267578125}, {"start": 1075.73, "end": 1075.87, "word": " على", "probability": 0.59521484375}, {"start": 1075.87, "end": 1075.95, "word": " ال", "probability": 0.88525390625}, {"start": 1075.95, "end": 1076.09, "word": " B", "probability": 0.98095703125}, {"start": 1076.09, "end": 1076.25, "word": " و", "probability": 0.79248046875}, {"start": 1076.25, "end": 1076.35, "word": " ال", "probability": 0.73583984375}, {"start": 1076.35, "end": 1076.49, "word": " C", "probability": 0.97412109375}, {"start": 1076.49, "end": 1076.65, "word": " و", "probability": 0.994140625}, {"start": 1076.65, "end": 1076.73, "word": " ال", "probability": 0.80615234375}, {"start": 1076.73, "end": 1076.93, "word": " D", "probability": 0.998046875}, {"start": 1076.93, "end": 1077.25, "word": " على", "probability": 0.7060546875}, {"start": 1077.25, "end": 1077.57, "word": " أساس", "probability": 0.8518880208333334}, {"start": 1077.57, "end": 1077.71, "word": " ان", "probability": 0.59130859375}, {"start": 1077.71, "end": 1077.89, "word": " لو", "probability": 0.69873046875}, {"start": 1077.89, "end": 1078.11, "word": " صار", "probability": 0.8232421875}, {"start": 1078.11, "end": 1078.29, "word": " فيه", "probability": 0.882080078125}, {"start": 1078.29, "end": 1078.65, "word": " تغيير", "probability": 0.929443359375}, {"start": 1078.65, "end": 1078.77, "word": " في", "probability": 0.91845703125}, {"start": 1078.77, "end": 1078.89, "word": " ال", "probability": 0.98291015625}, {"start": 1078.89, "end": 1079.07, "word": " A", "probability": 0.990234375}, {"start": 1079.07, "end": 1079.31, "word": " بده", "probability": 0.51947021484375}, {"start": 1079.31, "end": 1079.71, "word": " يبلغ", "probability": 0.9464518229166666}, {"start": 1079.71, "end": 1079.83, "word": " ال", "probability": 0.92724609375}, {"start": 1079.83, "end": 1079.97, "word": " B", "probability": 0.99267578125}, {"start": 1079.97, "end": 1080.13, "word": " و", "probability": 0.99267578125}, {"start": 1080.13, "end": 1080.19, "word": " ال", "probability": 0.921875}, {"start": 1080.19, "end": 1080.33, "word": " C", "probability": 0.9873046875}, {"start": 1080.33, "end": 1080.47, "word": " و", "probability": 0.99462890625}, {"start": 1080.47, "end": 1080.55, "word": " ال", "probability": 0.84912109375}, {"start": 1080.55, "end": 1080.75, "word": " D", "probability": 0.99853515625}, {"start": 1080.75, "end": 1081.89, "word": " الفكرة", "probability": 0.9285481770833334}, {"start": 1081.89, "end": 1082.31, "word": " كيف؟", "probability": 0.771484375}, {"start": 1082.31, "end": 1082.53, "word": " بدك", "probability": 0.8720703125}, {"start": 1082.53, "end": 1082.95, "word": " توصل", "probability": 0.844970703125}, {"start": 1082.95, "end": 1083.09, "word": " ال", "probability": 0.9619140625}, {"start": 1083.09, "end": 1083.57, "word": " dependencies", "probability": 0.59033203125}, {"start": 1083.57, "end": 1083.89, "word": " يعني", "probability": 0.447845458984375}, {"start": 1083.89, "end": 1084.03, "word": " ال", "probability": 0.83447265625}, {"start": 1084.03, "end": 1084.17, "word": " B", "probability": 0.99267578125}, {"start": 1084.17, "end": 1084.31, "word": " و", "probability": 0.9951171875}, {"start": 1084.31, "end": 1084.39, "word": " ال", "probability": 0.876953125}, {"start": 1084.39, "end": 1084.53, "word": " C", "probability": 0.984375}, {"start": 1084.53, "end": 1084.69, "word": " و", "probability": 0.99560546875}, {"start": 1084.69, "end": 1084.73, "word": " ال", "probability": 0.78271484375}, {"start": 1084.73, "end": 1084.87, "word": " D", "probability": 0.9990234375}, {"start": 1084.87, "end": 1084.97, "word": " ل", "probability": 0.55224609375}, {"start": 1084.97, "end": 1085.11, "word": " ال", "probability": 0.492919921875}, {"start": 1085.11, "end": 1085.27, "word": " A", "probability": 0.9951171875}], "temperature": 1.0}, {"id": 44, "seek": 111269, "start": 1086.07, "end": 1112.69, "text": " In order to do it, I went to A and made a reference to all their dependencies, B, C and D And I made three methods, setB, setB, setC, setD And I told him that in setData, if there is a modification to A, we report the rest and go to each one and tell him B.data received, C.data received, D.data received Now, make sure when you come to run a test", "tokens": [682, 1668, 281, 360, 309, 11, 286, 1437, 281, 316, 293, 1027, 257, 6408, 281, 439, 641, 36606, 11, 363, 11, 383, 293, 413, 400, 286, 1027, 1045, 7150, 11, 992, 33, 11, 992, 33, 11, 992, 34, 11, 992, 35, 400, 286, 1907, 796, 300, 294, 992, 35, 3274, 11, 498, 456, 307, 257, 26747, 281, 316, 11, 321, 2275, 264, 1472, 293, 352, 281, 1184, 472, 293, 980, 796, 363, 13, 67, 3274, 4613, 11, 383, 13, 67, 3274, 4613, 11, 413, 13, 67, 3274, 4613, 823, 11, 652, 988, 562, 291, 808, 281, 1190, 257, 1500], "avg_logprob": -0.48156250298023223, "compression_ratio": 1.681159420289855, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1086.07, "end": 1086.43, "word": " In", "probability": 0.09112548828125}, {"start": 1086.43, "end": 1086.43, "word": " order", "probability": 0.89013671875}, {"start": 1086.43, "end": 1086.53, "word": " to", "probability": 0.9501953125}, {"start": 1086.53, "end": 1086.77, "word": " do", "probability": 0.67724609375}, {"start": 1086.77, "end": 1086.99, "word": " it,", "probability": 0.4111328125}, {"start": 1087.55, "end": 1087.67, "word": " I", "probability": 0.6591796875}, {"start": 1087.67, "end": 1087.85, "word": " went", "probability": 0.68212890625}, {"start": 1087.85, "end": 1088.01, "word": " to", "probability": 0.95947265625}, {"start": 1088.01, "end": 1088.37, "word": " A", "probability": 0.391357421875}, {"start": 1088.37, "end": 1089.35, "word": " and", "probability": 0.290771484375}, {"start": 1089.35, "end": 1089.61, "word": " made", "probability": 0.374267578125}, {"start": 1089.61, "end": 1089.91, "word": " a", "probability": 0.603515625}, {"start": 1089.91, "end": 1090.25, "word": " reference", "probability": 0.8515625}, {"start": 1090.25, "end": 1090.55, "word": " to", "probability": 0.53955078125}, {"start": 1090.55, "end": 1090.73, "word": " all", "probability": 0.78515625}, {"start": 1090.73, "end": 1090.73, "word": " their", "probability": 0.41015625}, {"start": 1090.73, "end": 1091.69, "word": " dependencies,", "probability": 0.84716796875}, {"start": 1092.31, "end": 1092.49, "word": " B,", "probability": 0.7431640625}, {"start": 1092.63, "end": 1092.83, "word": " C", "probability": 0.71923828125}, {"start": 1092.83, "end": 1092.99, "word": " and", "probability": 0.498291015625}, {"start": 1092.99, "end": 1093.27, "word": " D", "probability": 0.998046875}, {"start": 1093.27, "end": 1094.05, "word": " And", "probability": 0.236572265625}, {"start": 1094.05, "end": 1094.13, "word": " I", "probability": 0.6455078125}, {"start": 1094.13, "end": 1094.29, "word": " made", "probability": 0.6015625}, {"start": 1094.29, "end": 1094.63, "word": " three", "probability": 0.658203125}, {"start": 1094.63, "end": 1095.03, "word": " methods,", "probability": 0.712890625}, {"start": 1095.15, "end": 1095.51, "word": " setB,", "probability": 0.6051025390625}, {"start": 1095.63, "end": 1096.11, "word": " setB,", "probability": 0.662841796875}, {"start": 1096.29, "end": 1096.85, "word": " setC,", "probability": 0.966552734375}, {"start": 1096.99, "end": 1097.45, "word": " setD", "probability": 0.92529296875}, {"start": 1097.45, "end": 1098.19, "word": " And", "probability": 0.61328125}, {"start": 1098.19, "end": 1098.23, "word": " I", "probability": 0.76806640625}, {"start": 1098.23, "end": 1098.39, "word": " told", "probability": 0.8095703125}, {"start": 1098.39, "end": 1098.57, "word": " him", "probability": 0.42333984375}, {"start": 1098.57, "end": 1098.65, "word": " that", "probability": 0.370849609375}, {"start": 1098.65, "end": 1098.67, "word": " in", "probability": 0.75439453125}, {"start": 1098.67, "end": 1099.25, "word": " setData,", "probability": 0.9269205729166666}, {"start": 1099.31, "end": 1099.47, "word": " if", "probability": 0.3720703125}, {"start": 1099.47, "end": 1099.63, "word": " there", "probability": 0.69140625}, {"start": 1099.63, "end": 1099.87, "word": " is", "probability": 0.7705078125}, {"start": 1099.87, "end": 1100.21, "word": " a", "probability": 0.33447265625}, {"start": 1100.21, "end": 1100.63, "word": " modification", "probability": 0.7060546875}, {"start": 1100.63, "end": 1100.85, "word": " to", "probability": 0.509765625}, {"start": 1100.85, "end": 1101.25, "word": " A,", "probability": 0.7412109375}, {"start": 1101.59, "end": 1102.05, "word": " we", "probability": 0.2431640625}, {"start": 1102.05, "end": 1102.45, "word": " report", "probability": 0.1357421875}, {"start": 1102.45, "end": 1102.65, "word": " the", "probability": 0.4052734375}, {"start": 1102.65, "end": 1102.85, "word": " rest", "probability": 0.568359375}, {"start": 1102.85, "end": 1103.03, "word": " and", "probability": 0.31103515625}, {"start": 1103.03, "end": 1103.19, "word": " go", "probability": 0.498779296875}, {"start": 1103.19, "end": 1103.35, "word": " to", "probability": 0.86474609375}, {"start": 1103.35, "end": 1103.59, "word": " each", "probability": 0.82373046875}, {"start": 1103.59, "end": 1103.81, "word": " one", "probability": 0.64208984375}, {"start": 1103.81, "end": 1103.93, "word": " and", "probability": 0.71435546875}, {"start": 1103.93, "end": 1104.09, "word": " tell", "probability": 0.58203125}, {"start": 1104.09, "end": 1104.33, "word": " him", "probability": 0.6962890625}, {"start": 1104.33, "end": 1104.81, "word": " B", "probability": 0.348388671875}, {"start": 1104.81, "end": 1105.25, "word": ".data", "probability": 0.7255859375}, {"start": 1105.25, "end": 1105.63, "word": " received,", "probability": 0.61865234375}, {"start": 1105.79, "end": 1105.99, "word": " C", "probability": 0.8798828125}, {"start": 1105.99, "end": 1106.35, "word": ".data", "probability": 0.9620768229166666}, {"start": 1106.35, "end": 1106.73, "word": " received,", "probability": 0.79931640625}, {"start": 1106.83, "end": 1106.97, "word": " D", "probability": 0.95068359375}, {"start": 1106.97, "end": 1107.55, "word": ".data", "probability": 0.9519856770833334}, {"start": 1107.55, "end": 1108.81, "word": " received", "probability": 0.775390625}, {"start": 1108.81, "end": 1110.71, "word": " Now,", "probability": 0.77587890625}, {"start": 1110.79, "end": 1111.01, "word": " make", "probability": 0.39453125}, {"start": 1111.01, "end": 1111.45, "word": " sure", "probability": 0.93017578125}, {"start": 1111.45, "end": 1111.81, "word": " when", "probability": 0.546875}, {"start": 1111.81, "end": 1111.93, "word": " you", "probability": 0.9443359375}, {"start": 1111.93, "end": 1112.03, "word": " come", "probability": 0.41015625}, {"start": 1112.03, "end": 1112.13, "word": " to", "probability": 0.5546875}, {"start": 1112.13, "end": 1112.33, "word": " run", "probability": 0.54541015625}, {"start": 1112.33, "end": 1112.43, "word": " a", "probability": 0.51171875}, {"start": 1112.43, "end": 1112.69, "word": " test", "probability": 0.8505859375}], "temperature": 1.0}, {"id": 45, "seek": 113429, "start": 1129.37, "end": 1134.29, "text": "this scenario you will do in any application", "tokens": [11176, 9005, 291, 486, 360, 294, 604, 3861], "avg_logprob": -0.8151041666666666, "compression_ratio": 0.8979591836734694, "no_speech_prob": 0.0001195073127746582, "words": [{"start": 1129.37, "end": 1130.35, "word": "this", "probability": 0.07794189453125}, {"start": 1130.35, "end": 1131.33, "word": " scenario", "probability": 0.50341796875}, {"start": 1131.33, "end": 1131.59, "word": " you", "probability": 0.5302734375}, {"start": 1131.59, "end": 1131.83, "word": " will", "probability": 0.59423828125}, {"start": 1131.83, "end": 1132.19, "word": " do", "probability": 0.4560546875}, {"start": 1132.19, "end": 1133.45, "word": " in", "probability": 0.62353515625}, {"start": 1133.45, "end": 1133.67, "word": " any", "probability": 0.83251953125}, {"start": 1133.67, "end": 1134.29, "word": " application", "probability": 0.448974609375}], "temperature": 1.0}, {"id": 46, "seek": 115125, "start": 1135.03, "end": 1151.25, "text": "You have to make relations between objects like this, that is, B and A can be, for example, this object has a class relationship in the database, B has a relationship with mobile, is it clear how? Or, for example, A can be the screen on the left.", "tokens": [3223, 362, 281, 652, 2299, 1296, 6565, 411, 341, 11, 300, 307, 11, 363, 293, 316, 393, 312, 11, 337, 1365, 11, 341, 2657, 575, 257, 1508, 2480, 294, 264, 8149, 11, 363, 575, 257, 2480, 365, 6013, 11, 307, 309, 1850, 577, 30, 1610, 11, 337, 1365, 11, 316, 393, 312, 264, 2568, 322, 264, 1411, 13], "avg_logprob": -0.46557203187780866, "compression_ratio": 1.607843137254902, "no_speech_prob": 3.6954879760742188e-06, "words": [{"start": 1135.03, "end": 1135.19, "word": "You", "probability": 0.5576171875}, {"start": 1135.19, "end": 1135.31, "word": " have", "probability": 0.250244140625}, {"start": 1135.31, "end": 1135.41, "word": " to", "probability": 0.9658203125}, {"start": 1135.41, "end": 1135.63, "word": " make", "probability": 0.5703125}, {"start": 1135.63, "end": 1135.99, "word": " relations", "probability": 0.30615234375}, {"start": 1135.99, "end": 1136.37, "word": " between", "probability": 0.7373046875}, {"start": 1136.37, "end": 1136.75, "word": " objects", "probability": 0.86865234375}, {"start": 1136.75, "end": 1136.93, "word": " like", "probability": 0.61865234375}, {"start": 1136.93, "end": 1137.09, "word": " this,", "probability": 0.69482421875}, {"start": 1137.21, "end": 1137.33, "word": " that", "probability": 0.115478515625}, {"start": 1137.33, "end": 1137.35, "word": " is,", "probability": 0.7392578125}, {"start": 1137.41, "end": 1137.67, "word": " B", "probability": 0.483154296875}, {"start": 1137.67, "end": 1137.87, "word": " and", "probability": 0.78369140625}, {"start": 1137.87, "end": 1138.29, "word": " A", "probability": 0.9853515625}, {"start": 1138.29, "end": 1138.93, "word": " can", "probability": 0.347900390625}, {"start": 1138.93, "end": 1139.59, "word": " be,", "probability": 0.8359375}, {"start": 1139.69, "end": 1139.75, "word": " for", "probability": 0.87109375}, {"start": 1139.75, "end": 1139.97, "word": " example,", "probability": 0.9501953125}, {"start": 1140.05, "end": 1140.29, "word": " this", "probability": 0.7333984375}, {"start": 1140.29, "end": 1140.77, "word": " object", "probability": 0.947265625}, {"start": 1140.77, "end": 1140.93, "word": " has", "probability": 0.8369140625}, {"start": 1140.93, "end": 1141.41, "word": " a", "probability": 0.81884765625}, {"start": 1141.41, "end": 1141.67, "word": " class", "probability": 0.3486328125}, {"start": 1141.67, "end": 1141.71, "word": " relationship", "probability": 0.552734375}, {"start": 1141.71, "end": 1141.81, "word": " in", "probability": 0.85205078125}, {"start": 1141.81, "end": 1141.89, "word": " the", "probability": 0.8623046875}, {"start": 1141.89, "end": 1142.35, "word": " database,", "probability": 0.9130859375}, {"start": 1143.21, "end": 1143.49, "word": " B", "probability": 0.89208984375}, {"start": 1143.49, "end": 1143.69, "word": " has", "probability": 0.818359375}, {"start": 1143.69, "end": 1144.13, "word": " a", "probability": 0.9296875}, {"start": 1144.13, "end": 1144.13, "word": " relationship", "probability": 0.73193359375}, {"start": 1144.13, "end": 1144.35, "word": " with", "probability": 0.79443359375}, {"start": 1144.35, "end": 1145.05, "word": " mobile,", "probability": 0.53564453125}, {"start": 1145.45, "end": 1145.61, "word": " is", "probability": 0.1956787109375}, {"start": 1145.61, "end": 1145.79, "word": " it", "probability": 0.681640625}, {"start": 1145.79, "end": 1145.79, "word": " clear", "probability": 0.85205078125}, {"start": 1145.79, "end": 1146.11, "word": " how?", "probability": 0.6064453125}, {"start": 1146.79, "end": 1147.27, "word": " Or,", "probability": 0.18994140625}, {"start": 1147.51, "end": 1147.57, "word": " for", "probability": 0.8310546875}, {"start": 1147.57, "end": 1147.81, "word": " example,", "probability": 0.97119140625}, {"start": 1148.01, "end": 1148.29, "word": " A", "probability": 0.89306640625}, {"start": 1148.29, "end": 1148.91, "word": " can", "probability": 0.7900390625}, {"start": 1148.91, "end": 1149.29, "word": " be", "probability": 0.951171875}, {"start": 1149.29, "end": 1149.45, "word": " the", "probability": 0.78466796875}, {"start": 1149.45, "end": 1149.81, "word": " screen", "probability": 0.7978515625}, {"start": 1149.81, "end": 1150.23, "word": " on", "probability": 0.8466796875}, {"start": 1150.23, "end": 1150.93, "word": " the", "probability": 0.7890625}, {"start": 1150.93, "end": 1151.25, "word": " left.", "probability": 0.943359375}], "temperature": 1.0}, {"id": 47, "seek": 117602, "start": 1152.14, "end": 1176.02, "text": "Okay? Which is this tree B and C and D can be this is B and this is C and this is what? Yes and this is D So always when you make relationships, you will do almost the same coding that is in front of you Okay, what are the problems in this coding? There are many problems The first problem is that we want one of B, C and D to be modified", "tokens": [8297, 30, 3013, 307, 341, 4230, 363, 293, 383, 293, 413, 393, 312, 341, 307, 363, 293, 341, 307, 383, 293, 341, 307, 437, 30, 1079, 293, 341, 307, 413, 407, 1009, 562, 291, 652, 6159, 11, 291, 486, 360, 1920, 264, 912, 17720, 300, 307, 294, 1868, 295, 291, 1033, 11, 437, 366, 264, 2740, 294, 341, 17720, 30, 821, 366, 867, 2740, 440, 700, 1154, 307, 300, 321, 528, 472, 295, 363, 11, 383, 293, 413, 281, 312, 15873], "avg_logprob": -0.42987805750311875, "compression_ratio": 1.6984924623115578, "no_speech_prob": 1.3649463653564453e-05, "words": [{"start": 1152.14, "end": 1152.46, "word": "Okay?", "probability": 0.1741943359375}, {"start": 1152.78, "end": 1152.98, "word": " Which", "probability": 0.359619140625}, {"start": 1152.98, "end": 1153.14, "word": " is", "probability": 0.8564453125}, {"start": 1153.14, "end": 1153.54, "word": " this", "probability": 0.76025390625}, {"start": 1153.54, "end": 1153.86, "word": " tree", "probability": 0.6748046875}, {"start": 1153.86, "end": 1155.4, "word": " B", "probability": 0.2255859375}, {"start": 1155.4, "end": 1155.72, "word": " and", "probability": 0.4130859375}, {"start": 1155.72, "end": 1155.88, "word": " C", "probability": 0.88330078125}, {"start": 1155.88, "end": 1156.1, "word": " and", "probability": 0.9306640625}, {"start": 1156.1, "end": 1156.34, "word": " D", "probability": 0.99462890625}, {"start": 1156.34, "end": 1157.02, "word": " can", "probability": 0.46728515625}, {"start": 1157.02, "end": 1157.48, "word": " be", "probability": 0.859375}, {"start": 1157.48, "end": 1158.06, "word": " this", "probability": 0.54296875}, {"start": 1158.06, "end": 1158.22, "word": " is", "probability": 0.51904296875}, {"start": 1158.22, "end": 1158.42, "word": " B", "probability": 0.94482421875}, {"start": 1158.42, "end": 1158.58, "word": " and", "probability": 0.62890625}, {"start": 1158.58, "end": 1158.74, "word": " this", "probability": 0.85888671875}, {"start": 1158.74, "end": 1158.76, "word": " is", "probability": 0.93310546875}, {"start": 1158.76, "end": 1159.0, "word": " C", "probability": 0.98095703125}, {"start": 1159.0, "end": 1159.14, "word": " and", "probability": 0.8466796875}, {"start": 1159.14, "end": 1159.3, "word": " this", "probability": 0.8251953125}, {"start": 1159.3, "end": 1159.32, "word": " is", "probability": 0.92919921875}, {"start": 1159.32, "end": 1159.6, "word": " what?", "probability": 0.3720703125}, {"start": 1160.26, "end": 1160.48, "word": " Yes", "probability": 0.429443359375}, {"start": 1160.48, "end": 1160.64, "word": " and", "probability": 0.45556640625}, {"start": 1160.64, "end": 1160.76, "word": " this", "probability": 0.91552734375}, {"start": 1160.76, "end": 1160.84, "word": " is", "probability": 0.9443359375}, {"start": 1160.84, "end": 1161.04, "word": " D", "probability": 0.97900390625}, {"start": 1161.04, "end": 1161.7, "word": " So", "probability": 0.49853515625}, {"start": 1161.7, "end": 1162.1, "word": " always", "probability": 0.2281494140625}, {"start": 1162.1, "end": 1162.26, "word": " when", "probability": 0.87744140625}, {"start": 1162.26, "end": 1162.38, "word": " you", "probability": 0.953125}, {"start": 1162.38, "end": 1162.54, "word": " make", "probability": 0.5712890625}, {"start": 1162.54, "end": 1163.0, "word": " relationships,", "probability": 0.364013671875}, {"start": 1163.54, "end": 1163.78, "word": " you", "probability": 0.89453125}, {"start": 1163.78, "end": 1163.88, "word": " will", "probability": 0.611328125}, {"start": 1163.88, "end": 1164.16, "word": " do", "probability": 0.5361328125}, {"start": 1164.16, "end": 1164.46, "word": " almost", "probability": 0.38623046875}, {"start": 1164.46, "end": 1164.46, "word": " the", "probability": 0.890625}, {"start": 1164.46, "end": 1164.46, "word": " same", "probability": 0.89892578125}, {"start": 1164.46, "end": 1165.06, "word": " coding", "probability": 0.94287109375}, {"start": 1165.06, "end": 1165.86, "word": " that", "probability": 0.396240234375}, {"start": 1165.86, "end": 1165.98, "word": " is", "probability": 0.62890625}, {"start": 1165.98, "end": 1166.08, "word": " in", "probability": 0.50341796875}, {"start": 1166.08, "end": 1166.38, "word": " front", "probability": 0.9384765625}, {"start": 1166.38, "end": 1166.44, "word": " of", "probability": 0.96337890625}, {"start": 1166.44, "end": 1166.6, "word": " you", "probability": 0.9541015625}, {"start": 1166.6, "end": 1167.2, "word": " Okay,", "probability": 0.2303466796875}, {"start": 1167.78, "end": 1168.4, "word": " what", "probability": 0.4765625}, {"start": 1168.4, "end": 1168.54, "word": " are", "probability": 0.74169921875}, {"start": 1168.54, "end": 1168.6, "word": " the", "probability": 0.90185546875}, {"start": 1168.6, "end": 1168.92, "word": " problems", "probability": 0.80224609375}, {"start": 1168.92, "end": 1169.42, "word": " in", "probability": 0.46875}, {"start": 1169.42, "end": 1169.42, "word": " this", "probability": 0.9111328125}, {"start": 1169.42, "end": 1169.42, "word": " coding?", "probability": 0.9267578125}, {"start": 1169.92, "end": 1170.38, "word": " There", "probability": 0.71923828125}, {"start": 1170.38, "end": 1170.44, "word": " are", "probability": 0.9306640625}, {"start": 1170.44, "end": 1170.98, "word": " many", "probability": 0.79052734375}, {"start": 1170.98, "end": 1170.98, "word": " problems", "probability": 0.81591796875}, {"start": 1170.98, "end": 1171.64, "word": " The", "probability": 0.314453125}, {"start": 1171.64, "end": 1171.84, "word": " first", "probability": 0.88671875}, {"start": 1171.84, "end": 1172.26, "word": " problem", "probability": 0.88232421875}, {"start": 1172.26, "end": 1173.68, "word": " is", "probability": 0.5634765625}, {"start": 1173.68, "end": 1173.68, "word": " that", "probability": 0.50927734375}, {"start": 1173.68, "end": 1173.68, "word": " we", "probability": 0.447021484375}, {"start": 1173.68, "end": 1173.94, "word": " want", "probability": 0.4580078125}, {"start": 1173.94, "end": 1174.6, "word": " one", "probability": 0.86328125}, {"start": 1174.6, "end": 1174.8, "word": " of", "probability": 0.94091796875}, {"start": 1174.8, "end": 1175.08, "word": " B,", "probability": 0.87109375}, {"start": 1175.24, "end": 1175.42, "word": " C", "probability": 0.8603515625}, {"start": 1175.42, "end": 1175.6, "word": " and", "probability": 0.75830078125}, {"start": 1175.6, "end": 1175.68, "word": " D", "probability": 0.9970703125}, {"start": 1175.68, "end": 1175.78, "word": " to", "probability": 0.9228515625}, {"start": 1175.78, "end": 1175.8, "word": " be", "probability": 0.41748046875}, {"start": 1175.8, "end": 1176.02, "word": " modified", "probability": 0.52294921875}], "temperature": 1.0}, {"id": 48, "seek": 120728, "start": 1178.3, "end": 1207.28, "text": "there was a change, the name changed, I tell you it's not a name, this method which is in B, okay, I want to change its name, okay, for example, I want to call it message received, who did you get right away? The A, anything from the dependencies that differed, okay, who will you hit? You will hit the A directly, let's go back again,", "tokens": [15456, 390, 257, 1319, 11, 264, 1315, 3105, 11, 286, 980, 291, 309, 311, 406, 257, 1315, 11, 341, 3170, 597, 307, 294, 363, 11, 1392, 11, 286, 528, 281, 1319, 1080, 1315, 11, 1392, 11, 337, 1365, 11, 286, 528, 281, 818, 309, 3636, 4613, 11, 567, 630, 291, 483, 558, 1314, 30, 440, 316, 11, 1340, 490, 264, 36606, 300, 743, 292, 11, 1392, 11, 567, 486, 291, 2045, 30, 509, 486, 2045, 264, 316, 3838, 11, 718, 311, 352, 646, 797, 11], "avg_logprob": -0.5599563932696054, "compression_ratio": 1.6028708133971292, "no_speech_prob": 2.3186206817626953e-05, "words": [{"start": 1178.3, "end": 1178.74, "word": "there", "probability": 0.103759765625}, {"start": 1178.74, "end": 1178.74, "word": " was", "probability": 0.349853515625}, {"start": 1178.74, "end": 1178.86, "word": " a", "probability": 0.89111328125}, {"start": 1178.86, "end": 1179.14, "word": " change,", "probability": 0.87841796875}, {"start": 1179.84, "end": 1180.38, "word": " the", "probability": 0.4140625}, {"start": 1180.38, "end": 1180.58, "word": " name", "probability": 0.76513671875}, {"start": 1180.58, "end": 1180.74, "word": " changed,", "probability": 0.43408203125}, {"start": 1180.98, "end": 1181.26, "word": " I", "probability": 0.5693359375}, {"start": 1181.26, "end": 1181.44, "word": " tell", "probability": 0.33251953125}, {"start": 1181.44, "end": 1181.64, "word": " you", "probability": 0.96728515625}, {"start": 1181.64, "end": 1181.72, "word": " it's", "probability": 0.488525390625}, {"start": 1181.72, "end": 1181.8, "word": " not", "probability": 0.93798828125}, {"start": 1181.8, "end": 1181.94, "word": " a", "probability": 0.76953125}, {"start": 1181.94, "end": 1182.14, "word": " name,", "probability": 0.869140625}, {"start": 1182.3, "end": 1182.4, "word": " this", "probability": 0.361328125}, {"start": 1182.4, "end": 1182.68, "word": " method", "probability": 0.63916015625}, {"start": 1182.68, "end": 1183.1, "word": " which", "probability": 0.266357421875}, {"start": 1183.1, "end": 1183.12, "word": " is", "probability": 0.888671875}, {"start": 1183.12, "end": 1183.18, "word": " in", "probability": 0.89404296875}, {"start": 1183.18, "end": 1183.5, "word": " B,", "probability": 0.6025390625}, {"start": 1184.32, "end": 1184.62, "word": " okay,", "probability": 0.385498046875}, {"start": 1184.9, "end": 1185.12, "word": " I", "probability": 0.6865234375}, {"start": 1185.12, "end": 1185.2, "word": " want", "probability": 0.439697265625}, {"start": 1185.2, "end": 1185.24, "word": " to", "probability": 0.9609375}, {"start": 1185.24, "end": 1185.42, "word": " change", "probability": 0.9013671875}, {"start": 1185.42, "end": 1185.9, "word": " its", "probability": 0.78466796875}, {"start": 1185.9, "end": 1186.68, "word": " name,", "probability": 0.904296875}, {"start": 1186.74, "end": 1187.0, "word": " okay,", "probability": 0.7275390625}, {"start": 1187.38, "end": 1187.84, "word": " for", "probability": 0.90283203125}, {"start": 1187.84, "end": 1187.96, "word": " example,", "probability": 0.9453125}, {"start": 1188.04, "end": 1188.1, "word": " I", "probability": 0.97705078125}, {"start": 1188.1, "end": 1188.18, "word": " want", "probability": 0.81787109375}, {"start": 1188.18, "end": 1188.3, "word": " to", "probability": 0.96923828125}, {"start": 1188.3, "end": 1188.5, "word": " call", "probability": 0.80322265625}, {"start": 1188.5, "end": 1189.04, "word": " it", "probability": 0.94091796875}, {"start": 1189.04, "end": 1189.58, "word": " message", "probability": 0.7451171875}, {"start": 1189.58, "end": 1190.14, "word": " received,", "probability": 0.71875}, {"start": 1194.8, "end": 1194.94, "word": " who", "probability": 0.2222900390625}, {"start": 1194.94, "end": 1194.94, "word": " did", "probability": 0.404052734375}, {"start": 1194.94, "end": 1195.68, "word": " you", "probability": 0.49609375}, {"start": 1195.68, "end": 1195.68, "word": " get", "probability": 0.433837890625}, {"start": 1195.68, "end": 1195.68, "word": " right", "probability": 0.1705322265625}, {"start": 1195.68, "end": 1195.68, "word": " away?", "probability": 0.88330078125}, {"start": 1196.32, "end": 1196.8, "word": " The", "probability": 0.18359375}, {"start": 1196.8, "end": 1197.0, "word": " A,", "probability": 0.74853515625}, {"start": 1197.88, "end": 1198.98, "word": " anything", "probability": 0.378662109375}, {"start": 1198.98, "end": 1199.4, "word": " from", "probability": 0.404541015625}, {"start": 1199.4, "end": 1199.5, "word": " the", "probability": 0.685546875}, {"start": 1199.5, "end": 1200.02, "word": " dependencies", "probability": 0.68310546875}, {"start": 1200.02, "end": 1200.22, "word": " that", "probability": 0.41259765625}, {"start": 1200.22, "end": 1200.74, "word": " differed,", "probability": 0.61114501953125}, {"start": 1201.02, "end": 1201.92, "word": " okay,", "probability": 0.78076171875}, {"start": 1202.1, "end": 1202.18, "word": " who", "probability": 0.546875}, {"start": 1202.18, "end": 1202.18, "word": " will", "probability": 0.591796875}, {"start": 1202.18, "end": 1202.32, "word": " you", "probability": 0.94873046875}, {"start": 1202.32, "end": 1202.46, "word": " hit?", "probability": 0.43115234375}, {"start": 1203.2, "end": 1203.68, "word": " You", "probability": 0.6142578125}, {"start": 1203.68, "end": 1203.8, "word": " will", "probability": 0.74951171875}, {"start": 1203.8, "end": 1204.04, "word": " hit", "probability": 0.845703125}, {"start": 1204.04, "end": 1204.16, "word": " the", "probability": 0.73583984375}, {"start": 1204.16, "end": 1204.3, "word": " A", "probability": 0.91845703125}, {"start": 1204.3, "end": 1205.56, "word": " directly,", "probability": 0.50927734375}, {"start": 1206.12, "end": 1206.6, "word": " let's", "probability": 0.35235595703125}, {"start": 1206.6, "end": 1206.66, "word": " go", "probability": 0.5068359375}, {"start": 1206.66, "end": 1206.9, "word": " back", "probability": 0.8447265625}, {"start": 1206.9, "end": 1207.28, "word": " again,", "probability": 0.88525390625}], "temperature": 1.0}, {"id": 49, "seek": 123323, "start": 1212.03, "end": 1233.23, "text": "You changed the name of one of the classes, B, C, and D. The letter A will also multiply. Why will the letter A multiply? Because the letter A is based on B, C, and D with the names. Okay? Okay, the biggest problem is that you need to add a new dependency. That is, you need to add a new element here that belongs to the letter A.", "tokens": [3223, 3105, 264, 1315, 295, 472, 295, 264, 5359, 11, 363, 11, 383, 11, 293, 413, 13, 440, 5063, 316, 486, 611, 12972, 13, 1545, 486, 264, 5063, 316, 12972, 30, 1436, 264, 5063, 316, 307, 2361, 322, 363, 11, 383, 11, 293, 413, 365, 264, 5288, 13, 1033, 30, 1033, 11, 264, 3880, 1154, 307, 300, 291, 643, 281, 909, 257, 777, 33621, 13, 663, 307, 11, 291, 643, 281, 909, 257, 777, 4478, 510, 300, 12953, 281, 264, 5063, 316, 13], "avg_logprob": -0.48660714037361597, "compression_ratio": 1.71875, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 1212.03, "end": 1212.25, "word": "You", "probability": 0.34033203125}, {"start": 1212.25, "end": 1212.47, "word": " changed", "probability": 0.78466796875}, {"start": 1212.47, "end": 1212.79, "word": " the", "probability": 0.2763671875}, {"start": 1212.79, "end": 1212.79, "word": " name", "probability": 0.76953125}, {"start": 1212.79, "end": 1212.93, "word": " of", "probability": 0.9384765625}, {"start": 1212.93, "end": 1213.05, "word": " one", "probability": 0.7763671875}, {"start": 1213.05, "end": 1213.21, "word": " of", "probability": 0.90966796875}, {"start": 1213.21, "end": 1213.29, "word": " the", "probability": 0.75439453125}, {"start": 1213.29, "end": 1213.67, "word": " classes,", "probability": 0.82373046875}, {"start": 1213.83, "end": 1213.95, "word": " B,", "probability": 0.5927734375}, {"start": 1214.11, "end": 1214.29, "word": " C,", "probability": 0.6337890625}, {"start": 1214.39, "end": 1214.45, "word": " and", "probability": 0.484375}, {"start": 1214.45, "end": 1214.61, "word": " D.", "probability": 0.99365234375}, {"start": 1215.63, "end": 1215.99, "word": " The", "probability": 0.2403564453125}, {"start": 1215.99, "end": 1216.11, "word": " letter", "probability": 0.384521484375}, {"start": 1216.11, "end": 1216.15, "word": " A", "probability": 0.71728515625}, {"start": 1216.15, "end": 1216.37, "word": " will", "probability": 0.45556640625}, {"start": 1216.37, "end": 1216.65, "word": " also", "probability": 0.19580078125}, {"start": 1216.65, "end": 1216.81, "word": " multiply.", "probability": 0.25146484375}, {"start": 1216.89, "end": 1217.05, "word": " Why", "probability": 0.6806640625}, {"start": 1217.05, "end": 1217.13, "word": " will", "probability": 0.2476806640625}, {"start": 1217.13, "end": 1217.21, "word": " the", "probability": 0.5302734375}, {"start": 1217.21, "end": 1217.21, "word": " letter", "probability": 0.8203125}, {"start": 1217.21, "end": 1217.27, "word": " A", "probability": 0.95947265625}, {"start": 1217.27, "end": 1217.59, "word": " multiply?", "probability": 0.8779296875}, {"start": 1217.65, "end": 1217.83, "word": " Because", "probability": 0.86767578125}, {"start": 1217.83, "end": 1217.97, "word": " the", "probability": 0.4970703125}, {"start": 1217.97, "end": 1217.99, "word": " letter", "probability": 0.8173828125}, {"start": 1217.99, "end": 1218.11, "word": " A", "probability": 0.97021484375}, {"start": 1218.11, "end": 1218.29, "word": " is", "probability": 0.491943359375}, {"start": 1218.29, "end": 1218.57, "word": " based", "probability": 0.46923828125}, {"start": 1218.57, "end": 1218.99, "word": " on", "probability": 0.9482421875}, {"start": 1218.99, "end": 1220.39, "word": " B,", "probability": 0.368408203125}, {"start": 1220.61, "end": 1220.81, "word": " C,", "probability": 0.91796875}, {"start": 1220.91, "end": 1220.99, "word": " and", "probability": 0.8955078125}, {"start": 1220.99, "end": 1221.19, "word": " D", "probability": 0.998046875}, {"start": 1221.19, "end": 1221.77, "word": " with", "probability": 0.40625}, {"start": 1221.77, "end": 1221.85, "word": " the", "probability": 0.323486328125}, {"start": 1221.85, "end": 1222.23, "word": " names.", "probability": 0.416748046875}, {"start": 1222.91, "end": 1223.15, "word": " Okay?", "probability": 0.262451171875}, {"start": 1223.79, "end": 1224.15, "word": " Okay,", "probability": 0.381591796875}, {"start": 1224.67, "end": 1224.85, "word": " the", "probability": 0.82958984375}, {"start": 1224.85, "end": 1225.45, "word": " biggest", "probability": 0.517578125}, {"start": 1225.45, "end": 1225.47, "word": " problem", "probability": 0.85546875}, {"start": 1225.47, "end": 1225.97, "word": " is", "probability": 0.72021484375}, {"start": 1225.97, "end": 1225.97, "word": " that", "probability": 0.75634765625}, {"start": 1225.97, "end": 1226.07, "word": " you", "probability": 0.951171875}, {"start": 1226.07, "end": 1226.23, "word": " need", "probability": 0.5361328125}, {"start": 1226.23, "end": 1226.37, "word": " to", "probability": 0.966796875}, {"start": 1226.37, "end": 1226.71, "word": " add", "probability": 0.94091796875}, {"start": 1226.71, "end": 1227.39, "word": " a", "probability": 0.83740234375}, {"start": 1227.39, "end": 1227.39, "word": " new", "probability": 0.9189453125}, {"start": 1227.39, "end": 1227.93, "word": " dependency.", "probability": 0.82275390625}, {"start": 1229.95, "end": 1230.25, "word": " That", "probability": 0.27392578125}, {"start": 1230.25, "end": 1230.27, "word": " is,", "probability": 0.481689453125}, {"start": 1230.29, "end": 1230.35, "word": " you", "probability": 0.9541015625}, {"start": 1230.35, "end": 1230.51, "word": " need", "probability": 0.84326171875}, {"start": 1230.51, "end": 1230.67, "word": " to", "probability": 0.96630859375}, {"start": 1230.67, "end": 1230.91, "word": " add", "probability": 0.9365234375}, {"start": 1230.91, "end": 1231.03, "word": " a", "probability": 0.947265625}, {"start": 1231.03, "end": 1231.51, "word": " new", "probability": 0.9189453125}, {"start": 1231.51, "end": 1231.51, "word": " element", "probability": 0.82666015625}, {"start": 1231.51, "end": 1231.99, "word": " here", "probability": 0.51806640625}, {"start": 1231.99, "end": 1232.45, "word": " that", "probability": 0.544921875}, {"start": 1232.45, "end": 1232.75, "word": " belongs", "probability": 0.0928955078125}, {"start": 1232.75, "end": 1232.93, "word": " to", "probability": 0.974609375}, {"start": 1232.93, "end": 1233.07, "word": " the", "probability": 0.59326171875}, {"start": 1233.07, "end": 1233.07, "word": " letter", "probability": 0.884765625}, {"start": 1233.07, "end": 1233.23, "word": " A.", "probability": 0.9873046875}], "temperature": 1.0}, {"id": 50, "seek": 126258, "start": 1234.45, "end": 1262.59, "text": " For example, this person told you that he wants to make a sub-screen that can be affected by this, or for example a logger that stores data. If I click on anything here, there is a fourth component that I want it to listen to the events. Its name is E. What should we do when we add this E element? We need to modify many things. The first thing we do is go to A and make a reference to E. And we make a new set and a new F at the bottom.", "tokens": [1171, 1365, 11, 341, 954, 1907, 291, 300, 415, 2738, 281, 652, 257, 1422, 12, 12439, 300, 393, 312, 8028, 538, 341, 11, 420, 337, 1365, 257, 3565, 1321, 300, 9512, 1412, 13, 759, 286, 2052, 322, 1340, 510, 11, 456, 307, 257, 6409, 6542, 300, 286, 528, 309, 281, 2140, 281, 264, 3931, 13, 6953, 1315, 307, 462, 13, 708, 820, 321, 360, 562, 321, 909, 341, 462, 4478, 30, 492, 643, 281, 16927, 867, 721, 13, 440, 700, 551, 321, 360, 307, 352, 281, 316, 293, 652, 257, 6408, 281, 462, 13, 400, 321, 652, 257, 777, 992, 293, 257, 777, 479, 412, 264, 2767, 13], "avg_logprob": -0.601490834437379, "compression_ratio": 1.6692015209125475, "no_speech_prob": 1.3470649719238281e-05, "words": [{"start": 1234.45, "end": 1234.89, "word": " For", "probability": 0.0965576171875}, {"start": 1234.89, "end": 1234.91, "word": " example,", "probability": 0.814453125}, {"start": 1234.91, "end": 1234.91, "word": " this", "probability": 0.228271484375}, {"start": 1234.91, "end": 1235.17, "word": " person", "probability": 0.6142578125}, {"start": 1235.17, "end": 1235.37, "word": " told", "probability": 0.176513671875}, {"start": 1235.37, "end": 1235.49, "word": " you", "probability": 0.52685546875}, {"start": 1235.49, "end": 1235.59, "word": " that", "probability": 0.53759765625}, {"start": 1235.59, "end": 1235.65, "word": " he", "probability": 0.170166015625}, {"start": 1235.65, "end": 1235.65, "word": " wants", "probability": 0.494384765625}, {"start": 1235.65, "end": 1235.71, "word": " to", "probability": 0.86181640625}, {"start": 1235.71, "end": 1235.99, "word": " make", "probability": 0.53955078125}, {"start": 1235.99, "end": 1237.11, "word": " a", "probability": 0.8310546875}, {"start": 1237.11, "end": 1237.37, "word": " sub", "probability": 0.0241851806640625}, {"start": 1237.37, "end": 1237.59, "word": "-screen", "probability": 0.583251953125}, {"start": 1237.59, "end": 1238.01, "word": " that", "probability": 0.333251953125}, {"start": 1238.01, "end": 1238.05, "word": " can", "probability": 0.330322265625}, {"start": 1238.05, "end": 1238.11, "word": " be", "probability": 0.609375}, {"start": 1238.11, "end": 1238.43, "word": " affected", "probability": 0.2083740234375}, {"start": 1238.43, "end": 1238.61, "word": " by", "probability": 0.4951171875}, {"start": 1238.61, "end": 1238.95, "word": " this,", "probability": 0.32666015625}, {"start": 1238.97, "end": 1239.17, "word": " or", "probability": 0.9033203125}, {"start": 1239.17, "end": 1239.31, "word": " for", "probability": 0.27294921875}, {"start": 1239.31, "end": 1239.49, "word": " example", "probability": 0.81982421875}, {"start": 1239.49, "end": 1239.69, "word": " a", "probability": 0.49658203125}, {"start": 1239.69, "end": 1239.93, "word": " logger", "probability": 0.830322265625}, {"start": 1239.93, "end": 1240.03, "word": " that", "probability": 0.61083984375}, {"start": 1240.03, "end": 1240.29, "word": " stores", "probability": 0.68310546875}, {"start": 1240.29, "end": 1240.77, "word": " data.", "probability": 0.65625}, {"start": 1241.01, "end": 1241.15, "word": " If", "probability": 0.56640625}, {"start": 1241.15, "end": 1241.91, "word": " I", "probability": 0.8779296875}, {"start": 1241.91, "end": 1242.09, "word": " click", "probability": 0.4765625}, {"start": 1242.09, "end": 1242.35, "word": " on", "probability": 0.80615234375}, {"start": 1242.35, "end": 1242.63, "word": " anything", "probability": 0.6982421875}, {"start": 1242.63, "end": 1242.99, "word": " here,", "probability": 0.69091796875}, {"start": 1243.31, "end": 1243.63, "word": " there", "probability": 0.67236328125}, {"start": 1243.63, "end": 1243.63, "word": " is", "probability": 0.7099609375}, {"start": 1243.63, "end": 1243.77, "word": " a", "probability": 0.92529296875}, {"start": 1243.77, "end": 1244.61, "word": " fourth", "probability": 0.873046875}, {"start": 1244.61, "end": 1244.63, "word": " component", "probability": 0.82861328125}, {"start": 1244.63, "end": 1244.85, "word": " that", "probability": 0.720703125}, {"start": 1244.85, "end": 1245.07, "word": " I", "probability": 0.1556396484375}, {"start": 1245.07, "end": 1245.41, "word": " want", "probability": 0.75634765625}, {"start": 1245.41, "end": 1245.55, "word": " it", "probability": 0.302490234375}, {"start": 1245.55, "end": 1245.61, "word": " to", "probability": 0.9638671875}, {"start": 1245.61, "end": 1245.87, "word": " listen", "probability": 0.469482421875}, {"start": 1245.87, "end": 1246.03, "word": " to", "probability": 0.9345703125}, {"start": 1246.03, "end": 1246.35, "word": " the", "probability": 0.47607421875}, {"start": 1246.35, "end": 1246.79, "word": " events.", "probability": 0.845703125}, {"start": 1247.93, "end": 1248.25, "word": " Its", "probability": 0.139404296875}, {"start": 1248.25, "end": 1248.53, "word": " name", "probability": 0.90283203125}, {"start": 1248.53, "end": 1248.57, "word": " is", "probability": 0.95166015625}, {"start": 1248.57, "end": 1248.75, "word": " E.", "probability": 0.7685546875}, {"start": 1249.93, "end": 1250.19, "word": " What", "probability": 0.85205078125}, {"start": 1250.19, "end": 1250.39, "word": " should", "probability": 0.64892578125}, {"start": 1250.39, "end": 1250.59, "word": " we", "probability": 0.8935546875}, {"start": 1250.59, "end": 1250.83, "word": " do", "probability": 0.95068359375}, {"start": 1250.83, "end": 1251.19, "word": " when", "probability": 0.43505859375}, {"start": 1251.19, "end": 1251.37, "word": " we", "probability": 0.9248046875}, {"start": 1251.37, "end": 1251.55, "word": " add", "probability": 0.90234375}, {"start": 1251.55, "end": 1251.69, "word": " this", "probability": 0.7705078125}, {"start": 1251.69, "end": 1252.17, "word": " E", "probability": 0.28564453125}, {"start": 1252.17, "end": 1252.17, "word": " element?", "probability": 0.6708984375}, {"start": 1252.57, "end": 1253.01, "word": " We", "probability": 0.85986328125}, {"start": 1253.01, "end": 1253.17, "word": " need", "probability": 0.272705078125}, {"start": 1253.17, "end": 1253.45, "word": " to", "probability": 0.9677734375}, {"start": 1253.45, "end": 1253.69, "word": " modify", "probability": 0.22216796875}, {"start": 1253.69, "end": 1254.21, "word": " many", "probability": 0.63671875}, {"start": 1254.21, "end": 1254.21, "word": " things.", "probability": 0.81201171875}, {"start": 1254.95, "end": 1255.13, "word": " The", "probability": 0.51416015625}, {"start": 1255.13, "end": 1255.29, "word": " first", "probability": 0.88330078125}, {"start": 1255.29, "end": 1255.53, "word": " thing", "probability": 0.8837890625}, {"start": 1255.53, "end": 1255.67, "word": " we", "probability": 0.423583984375}, {"start": 1255.67, "end": 1255.87, "word": " do", "probability": 0.38134765625}, {"start": 1255.87, "end": 1255.89, "word": " is", "probability": 0.83740234375}, {"start": 1255.89, "end": 1255.89, "word": " go", "probability": 0.44140625}, {"start": 1255.89, "end": 1255.99, "word": " to", "probability": 0.955078125}, {"start": 1255.99, "end": 1256.29, "word": " A", "probability": 0.492431640625}, {"start": 1256.29, "end": 1256.43, "word": " and", "probability": 0.71337890625}, {"start": 1256.43, "end": 1256.59, "word": " make", "probability": 0.4052734375}, {"start": 1256.59, "end": 1256.77, "word": " a", "probability": 0.833984375}, {"start": 1256.77, "end": 1257.13, "word": " reference", "probability": 0.8505859375}, {"start": 1257.13, "end": 1257.31, "word": " to", "probability": 0.765625}, {"start": 1257.31, "end": 1257.59, "word": " E.", "probability": 0.8720703125}, {"start": 1257.95, "end": 1258.23, "word": " And", "probability": 0.435546875}, {"start": 1258.23, "end": 1258.35, "word": " we", "probability": 0.57568359375}, {"start": 1258.35, "end": 1258.55, "word": " make", "probability": 0.5673828125}, {"start": 1258.55, "end": 1258.77, "word": " a", "probability": 0.84228515625}, {"start": 1258.77, "end": 1258.77, "word": " new", "probability": 0.89208984375}, {"start": 1258.77, "end": 1258.97, "word": " set", "probability": 0.68896484375}, {"start": 1258.97, "end": 1260.33, "word": " and", "probability": 0.214599609375}, {"start": 1260.33, "end": 1261.21, "word": " a", "probability": 0.173828125}, {"start": 1261.21, "end": 1261.33, "word": " new", "probability": 0.814453125}, {"start": 1261.33, "end": 1261.95, "word": " F", "probability": 0.89013671875}, {"start": 1261.95, "end": 1262.41, "word": " at", "probability": 0.126220703125}, {"start": 1262.41, "end": 1262.59, "word": " the", "probability": 0.91650390625}, {"start": 1262.59, "end": 1262.59, "word": " bottom.", "probability": 0.78662109375}], "temperature": 1.0}, {"id": 51, "seek": 129423, "start": 1266.13, "end": 1294.23, "text": " So here in A, you had to do E, right? And make a new 6 And go down and tell him Fe is not equal to make data data received The solution that we made worked, right? But there is a problem with flexibility, right? Any change in dependency affected who? Class A", "tokens": [407, 510, 294, 316, 11, 291, 632, 281, 360, 462, 11, 558, 30, 400, 652, 257, 777, 1386, 400, 352, 760, 293, 980, 796, 3697, 307, 406, 2681, 281, 652, 1412, 1412, 4613, 440, 3827, 300, 321, 1027, 2732, 11, 558, 30, 583, 456, 307, 257, 1154, 365, 12635, 11, 558, 30, 2639, 1319, 294, 33621, 8028, 567, 30, 9471, 316], "avg_logprob": -0.623991939329332, "compression_ratio": 1.4230769230769231, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 1266.13, "end": 1266.47, "word": " So", "probability": 0.1761474609375}, {"start": 1266.47, "end": 1266.73, "word": " here", "probability": 0.48681640625}, {"start": 1266.73, "end": 1267.01, "word": " in", "probability": 0.607421875}, {"start": 1267.01, "end": 1267.29, "word": " A,", "probability": 0.521484375}, {"start": 1267.33, "end": 1267.57, "word": " you", "probability": 0.90283203125}, {"start": 1267.57, "end": 1267.63, "word": " had", "probability": 0.218505859375}, {"start": 1267.63, "end": 1267.87, "word": " to", "probability": 0.97021484375}, {"start": 1267.87, "end": 1268.21, "word": " do", "probability": 0.353515625}, {"start": 1268.21, "end": 1268.67, "word": " E,", "probability": 0.8095703125}, {"start": 1269.83, "end": 1270.31, "word": " right?", "probability": 0.67724609375}, {"start": 1270.65, "end": 1271.33, "word": " And", "probability": 0.5810546875}, {"start": 1271.33, "end": 1271.67, "word": " make", "probability": 0.2108154296875}, {"start": 1271.67, "end": 1271.77, "word": " a", "probability": 0.52587890625}, {"start": 1271.77, "end": 1271.77, "word": " new", "probability": 0.875}, {"start": 1271.77, "end": 1272.07, "word": " 6", "probability": 0.6455078125}, {"start": 1272.07, "end": 1273.59, "word": " And", "probability": 0.34814453125}, {"start": 1273.59, "end": 1273.87, "word": " go", "probability": 0.45849609375}, {"start": 1273.87, "end": 1274.19, "word": " down", "probability": 0.7548828125}, {"start": 1274.19, "end": 1274.67, "word": " and", "probability": 0.65283203125}, {"start": 1274.67, "end": 1274.95, "word": " tell", "probability": 0.3759765625}, {"start": 1274.95, "end": 1275.11, "word": " him", "probability": 0.72705078125}, {"start": 1275.11, "end": 1275.51, "word": " Fe", "probability": 0.2445068359375}, {"start": 1275.51, "end": 1275.81, "word": " is", "probability": 0.38037109375}, {"start": 1275.81, "end": 1275.81, "word": " not", "probability": 0.7265625}, {"start": 1275.81, "end": 1276.19, "word": " equal", "probability": 0.6494140625}, {"start": 1276.19, "end": 1276.39, "word": " to", "probability": 0.9228515625}, {"start": 1276.39, "end": 1276.57, "word": " make", "probability": 0.408203125}, {"start": 1276.57, "end": 1277.09, "word": " data", "probability": 0.474365234375}, {"start": 1277.09, "end": 1278.63, "word": " data", "probability": 0.255859375}, {"start": 1278.63, "end": 1279.09, "word": " received", "probability": 0.69873046875}, {"start": 1279.09, "end": 1281.41, "word": " The", "probability": 0.252197265625}, {"start": 1281.41, "end": 1282.13, "word": " solution", "probability": 0.8515625}, {"start": 1282.13, "end": 1282.43, "word": " that", "probability": 0.3818359375}, {"start": 1282.43, "end": 1282.63, "word": " we", "probability": 0.9296875}, {"start": 1282.63, "end": 1282.89, "word": " made", "probability": 0.402099609375}, {"start": 1282.89, "end": 1283.35, "word": " worked,", "probability": 0.32568359375}, {"start": 1284.19, "end": 1284.21, "word": " right?", "probability": 0.256103515625}, {"start": 1285.31, "end": 1285.99, "word": " But", "probability": 0.6416015625}, {"start": 1285.99, "end": 1286.91, "word": " there", "probability": 0.818359375}, {"start": 1286.91, "end": 1287.25, "word": " is", "probability": 0.69140625}, {"start": 1287.25, "end": 1287.83, "word": " a", "probability": 0.96533203125}, {"start": 1287.83, "end": 1288.03, "word": " problem", "probability": 0.8349609375}, {"start": 1288.03, "end": 1288.19, "word": " with", "probability": 0.455810546875}, {"start": 1288.19, "end": 1288.87, "word": " flexibility,", "probability": 0.822265625}, {"start": 1288.87, "end": 1289.65, "word": " right?", "probability": 0.448486328125}, {"start": 1289.91, "end": 1290.15, "word": " Any", "probability": 0.9111328125}, {"start": 1290.15, "end": 1290.45, "word": " change", "probability": 0.272216796875}, {"start": 1290.45, "end": 1290.69, "word": " in", "probability": 0.91552734375}, {"start": 1290.69, "end": 1291.43, "word": " dependency", "probability": 0.64013671875}, {"start": 1291.43, "end": 1292.61, "word": " affected", "probability": 0.3447265625}, {"start": 1292.61, "end": 1292.97, "word": " who?", "probability": 0.4189453125}, {"start": 1293.59, "end": 1293.97, "word": " Class", "probability": 0.72265625}, {"start": 1293.97, "end": 1294.23, "word": " A", "probability": 0.97119140625}], "temperature": 1.0}, {"id": 52, "seek": 132480, "start": 1296.62, "end": 1324.8, "text": " Our goal is that when there is a one-to-many relationship in this way that any change affects a group of other objects, we want to design the code in a better way, so that if there is any modification here or any addition to new people who want to attend the event or new applicants, we do not want to change a single line in the code. What do we add now?", "tokens": [2621, 3387, 307, 300, 562, 456, 307, 257, 472, 12, 1353, 12, 76, 1325, 2480, 294, 341, 636, 300, 604, 1319, 11807, 257, 1594, 295, 661, 6565, 11, 321, 528, 281, 1715, 264, 3089, 294, 257, 1101, 636, 11, 370, 300, 498, 456, 307, 604, 26747, 510, 420, 604, 4500, 281, 777, 561, 567, 528, 281, 6888, 264, 2280, 420, 777, 28767, 11, 321, 360, 406, 528, 281, 1319, 257, 2167, 1622, 294, 264, 3089, 13, 708, 360, 321, 909, 586, 30], "avg_logprob": -0.4216867570417473, "compression_ratio": 1.7115384615384615, "no_speech_prob": 3.039836883544922e-06, "words": [{"start": 1296.62, "end": 1297.06, "word": " Our", "probability": 0.289794921875}, {"start": 1297.06, "end": 1297.5, "word": " goal", "probability": 0.73388671875}, {"start": 1297.5, "end": 1298.24, "word": " is", "probability": 0.66455078125}, {"start": 1298.24, "end": 1299.04, "word": " that", "probability": 0.5419921875}, {"start": 1299.04, "end": 1300.44, "word": " when", "probability": 0.607421875}, {"start": 1300.44, "end": 1300.64, "word": " there", "probability": 0.751953125}, {"start": 1300.64, "end": 1300.88, "word": " is", "probability": 0.7646484375}, {"start": 1300.88, "end": 1301.34, "word": " a", "probability": 0.80810546875}, {"start": 1301.34, "end": 1301.5, "word": " one", "probability": 0.6318359375}, {"start": 1301.5, "end": 1301.68, "word": "-to", "probability": 0.836669921875}, {"start": 1301.68, "end": 1301.92, "word": "-many", "probability": 0.95654296875}, {"start": 1301.92, "end": 1301.92, "word": " relationship", "probability": 0.70751953125}, {"start": 1301.92, "end": 1302.06, "word": " in", "probability": 0.2646484375}, {"start": 1302.06, "end": 1302.7, "word": " this", "probability": 0.705078125}, {"start": 1302.7, "end": 1302.7, "word": " way", "probability": 0.69677734375}, {"start": 1302.7, "end": 1303.02, "word": " that", "probability": 0.2471923828125}, {"start": 1303.02, "end": 1303.86, "word": " any", "probability": 0.6796875}, {"start": 1303.86, "end": 1304.26, "word": " change", "probability": 0.8154296875}, {"start": 1304.26, "end": 1304.92, "word": " affects", "probability": 0.26171875}, {"start": 1304.92, "end": 1305.22, "word": " a", "probability": 0.56005859375}, {"start": 1305.22, "end": 1305.48, "word": " group", "probability": 0.56591796875}, {"start": 1305.48, "end": 1305.62, "word": " of", "probability": 0.966796875}, {"start": 1305.62, "end": 1306.2, "word": " other", "probability": 0.51611328125}, {"start": 1306.2, "end": 1306.46, "word": " objects,", "probability": 0.94384765625}, {"start": 1306.78, "end": 1308.38, "word": " we", "probability": 0.65234375}, {"start": 1308.38, "end": 1308.62, "word": " want", "probability": 0.1759033203125}, {"start": 1308.62, "end": 1308.76, "word": " to", "probability": 0.95703125}, {"start": 1308.76, "end": 1309.02, "word": " design", "probability": 0.91064453125}, {"start": 1309.02, "end": 1309.26, "word": " the", "probability": 0.7978515625}, {"start": 1309.26, "end": 1309.5, "word": " code", "probability": 0.9208984375}, {"start": 1309.5, "end": 1309.62, "word": " in", "probability": 0.6962890625}, {"start": 1309.62, "end": 1309.92, "word": " a", "probability": 0.9267578125}, {"start": 1309.92, "end": 1310.22, "word": " better", "probability": 0.87158203125}, {"start": 1310.22, "end": 1310.3, "word": " way,", "probability": 0.919921875}, {"start": 1310.44, "end": 1310.56, "word": " so", "probability": 0.767578125}, {"start": 1310.56, "end": 1310.82, "word": " that", "probability": 0.8818359375}, {"start": 1310.82, "end": 1311.0, "word": " if", "probability": 0.8466796875}, {"start": 1311.0, "end": 1311.26, "word": " there", "probability": 0.69921875}, {"start": 1311.26, "end": 1311.4, "word": " is", "probability": 0.85595703125}, {"start": 1311.4, "end": 1311.66, "word": " any", "probability": 0.87890625}, {"start": 1311.66, "end": 1312.02, "word": " modification", "probability": 0.6689453125}, {"start": 1312.02, "end": 1312.4, "word": " here", "probability": 0.61669921875}, {"start": 1312.4, "end": 1313.34, "word": " or", "probability": 0.64697265625}, {"start": 1313.34, "end": 1313.56, "word": " any", "probability": 0.79443359375}, {"start": 1313.56, "end": 1313.96, "word": " addition", "probability": 0.90966796875}, {"start": 1313.96, "end": 1315.32, "word": " to", "probability": 0.654296875}, {"start": 1315.32, "end": 1315.4, "word": " new", "probability": 0.5947265625}, {"start": 1315.4, "end": 1315.9, "word": " people", "probability": 0.900390625}, {"start": 1315.9, "end": 1316.02, "word": " who", "probability": 0.5771484375}, {"start": 1316.02, "end": 1316.16, "word": " want", "probability": 0.5224609375}, {"start": 1316.16, "end": 1316.2, "word": " to", "probability": 0.96875}, {"start": 1316.2, "end": 1316.46, "word": " attend", "probability": 0.50244140625}, {"start": 1316.46, "end": 1316.62, "word": " the", "probability": 0.86962890625}, {"start": 1316.62, "end": 1316.86, "word": " event", "probability": 0.8525390625}, {"start": 1316.86, "end": 1317.02, "word": " or", "probability": 0.84521484375}, {"start": 1317.02, "end": 1317.1, "word": " new", "probability": 0.705078125}, {"start": 1317.1, "end": 1317.58, "word": " applicants,", "probability": 0.394287109375}, {"start": 1319.42, "end": 1319.56, "word": " we", "probability": 0.84033203125}, {"start": 1319.56, "end": 1319.7, "word": " do", "probability": 0.48046875}, {"start": 1319.7, "end": 1319.7, "word": " not", "probability": 0.9404296875}, {"start": 1319.7, "end": 1319.86, "word": " want", "probability": 0.78369140625}, {"start": 1319.86, "end": 1319.94, "word": " to", "probability": 0.75390625}, {"start": 1319.94, "end": 1320.36, "word": " change", "probability": 0.87060546875}, {"start": 1320.36, "end": 1320.74, "word": " a", "probability": 0.211669921875}, {"start": 1320.74, "end": 1320.74, "word": " single", "probability": 0.466064453125}, {"start": 1320.74, "end": 1321.02, "word": " line", "probability": 0.80908203125}, {"start": 1321.02, "end": 1322.52, "word": " in", "probability": 0.58251953125}, {"start": 1322.52, "end": 1322.62, "word": " the", "probability": 0.58056640625}, {"start": 1322.62, "end": 1322.76, "word": " code.", "probability": 0.305908203125}, {"start": 1323.12, "end": 1323.64, "word": " What", "probability": 0.205078125}, {"start": 1323.64, "end": 1323.64, "word": " do", "probability": 0.66455078125}, {"start": 1323.64, "end": 1323.9, "word": " we", "probability": 0.9404296875}, {"start": 1323.9, "end": 1324.66, "word": " add", "probability": 0.7724609375}, {"start": 1324.66, "end": 1324.8, "word": " now?", "probability": 0.6943359375}], "temperature": 1.0}, {"id": 53, "seek": 134933, "start": 1325.93, "end": 1349.33, "text": "and F and W and whatever you want and keep sending and deleting data without changing any line in the A currently, you don't need to change any object, you just need to put a reference or something like that how can we do this thing? we need to see how to apply it pay attention to me now I have explained how to do dependency", "tokens": [474, 479, 293, 343, 293, 2035, 291, 528, 293, 1066, 7750, 293, 48946, 1412, 1553, 4473, 604, 1622, 294, 264, 316, 4362, 11, 291, 500, 380, 643, 281, 1319, 604, 2657, 11, 291, 445, 643, 281, 829, 257, 6408, 420, 746, 411, 300, 577, 393, 321, 360, 341, 551, 30, 321, 643, 281, 536, 577, 281, 3079, 309, 1689, 3202, 281, 385, 586, 286, 362, 8825, 577, 281, 360, 33621], "avg_logprob": -0.7486795539587316, "compression_ratio": 1.613861386138614, "no_speech_prob": 6.496906280517578e-06, "words": [{"start": 1325.93, "end": 1326.19, "word": "and", "probability": 0.2059326171875}, {"start": 1326.19, "end": 1326.49, "word": " F", "probability": 0.6328125}, {"start": 1326.49, "end": 1326.75, "word": " and", "probability": 0.7626953125}, {"start": 1326.75, "end": 1327.13, "word": " W", "probability": 0.970703125}, {"start": 1327.13, "end": 1327.27, "word": " and", "probability": 0.472900390625}, {"start": 1327.27, "end": 1327.37, "word": " whatever", "probability": 0.84228515625}, {"start": 1327.37, "end": 1327.63, "word": " you", "probability": 0.76416015625}, {"start": 1327.63, "end": 1327.63, "word": " want", "probability": 0.70849609375}, {"start": 1327.63, "end": 1328.67, "word": " and", "probability": 0.215087890625}, {"start": 1328.67, "end": 1329.43, "word": " keep", "probability": 0.1790771484375}, {"start": 1329.43, "end": 1330.17, "word": " sending", "probability": 0.382080078125}, {"start": 1330.17, "end": 1330.71, "word": " and", "probability": 0.296630859375}, {"start": 1330.71, "end": 1331.15, "word": " deleting", "probability": 0.2030029296875}, {"start": 1331.15, "end": 1331.33, "word": " data", "probability": 0.40673828125}, {"start": 1331.33, "end": 1331.79, "word": " without", "probability": 0.650390625}, {"start": 1331.79, "end": 1332.31, "word": " changing", "probability": 0.70458984375}, {"start": 1332.31, "end": 1332.53, "word": " any", "probability": 0.2420654296875}, {"start": 1332.53, "end": 1332.85, "word": " line", "probability": 0.64697265625}, {"start": 1332.85, "end": 1334.47, "word": " in", "probability": 0.291259765625}, {"start": 1334.47, "end": 1334.55, "word": " the", "probability": 0.270751953125}, {"start": 1334.55, "end": 1334.63, "word": " A", "probability": 0.21484375}, {"start": 1334.63, "end": 1335.25, "word": " currently,", "probability": 0.2900390625}, {"start": 1335.59, "end": 1335.71, "word": " you", "probability": 0.323974609375}, {"start": 1335.71, "end": 1335.71, "word": " don't", "probability": 0.7073974609375}, {"start": 1335.71, "end": 1336.11, "word": " need", "probability": 0.59619140625}, {"start": 1336.11, "end": 1336.31, "word": " to", "probability": 0.560546875}, {"start": 1336.31, "end": 1336.31, "word": " change", "probability": 0.2841796875}, {"start": 1336.31, "end": 1336.53, "word": " any", "probability": 0.556640625}, {"start": 1336.53, "end": 1337.23, "word": " object,", "probability": 0.6318359375}, {"start": 1337.45, "end": 1337.49, "word": " you", "probability": 0.568359375}, {"start": 1337.49, "end": 1337.71, "word": " just", "probability": 0.14453125}, {"start": 1337.71, "end": 1337.71, "word": " need", "probability": 0.73583984375}, {"start": 1337.71, "end": 1337.77, "word": " to", "probability": 0.93212890625}, {"start": 1337.77, "end": 1337.97, "word": " put", "probability": 0.326904296875}, {"start": 1337.97, "end": 1338.13, "word": " a", "probability": 0.32080078125}, {"start": 1338.13, "end": 1338.59, "word": " reference", "probability": 0.78173828125}, {"start": 1338.59, "end": 1338.75, "word": " or", "probability": 0.346923828125}, {"start": 1338.75, "end": 1339.09, "word": " something", "probability": 0.270263671875}, {"start": 1339.09, "end": 1339.85, "word": " like", "probability": 0.28125}, {"start": 1339.85, "end": 1339.85, "word": " that", "probability": 0.64990234375}, {"start": 1339.85, "end": 1340.75, "word": " how", "probability": 0.26513671875}, {"start": 1340.75, "end": 1340.89, "word": " can", "probability": 0.68115234375}, {"start": 1340.89, "end": 1341.19, "word": " we", "probability": 0.91259765625}, {"start": 1341.19, "end": 1341.33, "word": " do", "probability": 0.8583984375}, {"start": 1341.33, "end": 1341.45, "word": " this", "probability": 0.5849609375}, {"start": 1341.45, "end": 1341.67, "word": " thing?", "probability": 0.231689453125}, {"start": 1342.49, "end": 1342.79, "word": " we", "probability": 0.677734375}, {"start": 1342.79, "end": 1342.93, "word": " need", "probability": 0.2408447265625}, {"start": 1342.93, "end": 1342.99, "word": " to", "probability": 0.96923828125}, {"start": 1342.99, "end": 1343.13, "word": " see", "probability": 0.70068359375}, {"start": 1343.13, "end": 1343.31, "word": " how", "probability": 0.70068359375}, {"start": 1343.31, "end": 1343.67, "word": " to", "probability": 0.67431640625}, {"start": 1343.67, "end": 1344.01, "word": " apply", "probability": 0.486572265625}, {"start": 1344.01, "end": 1344.57, "word": " it", "probability": 0.7197265625}, {"start": 1344.57, "end": 1344.85, "word": " pay", "probability": 0.1090087890625}, {"start": 1344.85, "end": 1345.31, "word": " attention", "probability": 0.927734375}, {"start": 1345.31, "end": 1345.41, "word": " to", "probability": 0.5224609375}, {"start": 1345.41, "end": 1345.73, "word": " me", "probability": 0.54345703125}, {"start": 1345.73, "end": 1346.39, "word": " now", "probability": 0.416748046875}, {"start": 1346.39, "end": 1347.15, "word": " I", "probability": 0.63720703125}, {"start": 1347.15, "end": 1347.23, "word": " have", "probability": 0.27734375}, {"start": 1347.23, "end": 1347.53, "word": " explained", "probability": 0.70751953125}, {"start": 1347.53, "end": 1348.43, "word": " how", "probability": 0.845703125}, {"start": 1348.43, "end": 1348.61, "word": " to", "probability": 0.62744140625}, {"start": 1348.61, "end": 1348.83, "word": " do", "probability": 0.529296875}, {"start": 1348.83, "end": 1349.33, "word": " dependency", "probability": 0.490966796875}], "temperature": 1.0}, {"id": 54, "seek": 137863, "start": 1350.75, "end": 1378.63, "text": "How is the traditional way? Any object that wants to use other objects must have references from them. The A has a relationship with four classes, so it took references from these four classes. This is the existing problem. How do I improve the design so that I don't modify anything in the A? The problem is that in the A there is a reference to the B", "tokens": [6462, 307, 264, 5164, 636, 30, 2639, 2657, 300, 2738, 281, 764, 661, 6565, 1633, 362, 15400, 490, 552, 13, 440, 316, 575, 257, 2480, 365, 1451, 5359, 11, 370, 309, 1890, 15400, 490, 613, 1451, 5359, 13, 639, 307, 264, 6741, 1154, 13, 1012, 360, 286, 3470, 264, 1715, 370, 300, 286, 500, 380, 16927, 1340, 294, 264, 316, 30, 440, 1154, 307, 300, 294, 264, 316, 456, 307, 257, 6408, 281, 264, 363], "avg_logprob": -0.5941611763678099, "compression_ratio": 1.6842105263157894, "no_speech_prob": 9.179115295410156e-06, "words": [{"start": 1350.75, "end": 1351.19, "word": "How", "probability": 0.07379150390625}, {"start": 1351.19, "end": 1351.33, "word": " is", "probability": 0.375}, {"start": 1351.33, "end": 1351.39, "word": " the", "probability": 0.5947265625}, {"start": 1351.39, "end": 1351.95, "word": " traditional", "probability": 0.6630859375}, {"start": 1351.95, "end": 1352.11, "word": " way?", "probability": 0.65771484375}, {"start": 1352.27, "end": 1352.49, "word": " Any", "probability": 0.446533203125}, {"start": 1352.49, "end": 1352.83, "word": " object", "probability": 0.90283203125}, {"start": 1352.83, "end": 1352.95, "word": " that", "probability": 0.55224609375}, {"start": 1352.95, "end": 1353.03, "word": " wants", "probability": 0.285888671875}, {"start": 1353.03, "end": 1353.03, "word": " to", "probability": 0.96533203125}, {"start": 1353.03, "end": 1353.33, "word": " use", "probability": 0.82568359375}, {"start": 1353.33, "end": 1353.89, "word": " other", "probability": 0.544921875}, {"start": 1353.89, "end": 1353.95, "word": " objects", "probability": 0.9599609375}, {"start": 1353.95, "end": 1354.19, "word": " must", "probability": 0.375244140625}, {"start": 1354.19, "end": 1354.49, "word": " have", "probability": 0.8759765625}, {"start": 1354.49, "end": 1355.01, "word": " references", "probability": 0.7451171875}, {"start": 1355.01, "end": 1355.21, "word": " from", "probability": 0.701171875}, {"start": 1355.21, "end": 1355.93, "word": " them.", "probability": 0.70947265625}, {"start": 1356.53, "end": 1356.97, "word": " The", "probability": 0.25}, {"start": 1356.97, "end": 1357.25, "word": " A", "probability": 0.68310546875}, {"start": 1357.25, "end": 1357.77, "word": " has", "probability": 0.389404296875}, {"start": 1357.77, "end": 1357.91, "word": " a", "probability": 0.51806640625}, {"start": 1357.91, "end": 1358.29, "word": " relationship", "probability": 0.64990234375}, {"start": 1358.29, "end": 1358.55, "word": " with", "probability": 0.2012939453125}, {"start": 1358.55, "end": 1360.79, "word": " four", "probability": 0.1864013671875}, {"start": 1360.79, "end": 1361.49, "word": " classes,", "probability": 0.75048828125}, {"start": 1361.53, "end": 1361.63, "word": " so", "probability": 0.46435546875}, {"start": 1361.63, "end": 1361.75, "word": " it", "probability": 0.6630859375}, {"start": 1361.75, "end": 1361.95, "word": " took", "probability": 0.4580078125}, {"start": 1361.95, "end": 1362.39, "word": " references", "probability": 0.77197265625}, {"start": 1362.39, "end": 1362.59, "word": " from", "probability": 0.8662109375}, {"start": 1362.59, "end": 1362.77, "word": " these", "probability": 0.472900390625}, {"start": 1362.77, "end": 1362.93, "word": " four", "probability": 0.85595703125}, {"start": 1362.93, "end": 1363.15, "word": " classes.", "probability": 0.50830078125}, {"start": 1363.69, "end": 1363.83, "word": " This", "probability": 0.50537109375}, {"start": 1363.83, "end": 1363.85, "word": " is", "probability": 0.88818359375}, {"start": 1363.85, "end": 1363.95, "word": " the", "probability": 0.8388671875}, {"start": 1363.95, "end": 1363.99, "word": " existing", "probability": 0.1744384765625}, {"start": 1363.99, "end": 1364.21, "word": " problem.", "probability": 0.77685546875}, {"start": 1365.31, "end": 1365.75, "word": " How", "probability": 0.1419677734375}, {"start": 1365.75, "end": 1366.11, "word": " do", "probability": 0.50927734375}, {"start": 1366.11, "end": 1366.11, "word": " I", "probability": 0.79541015625}, {"start": 1366.11, "end": 1366.51, "word": " improve", "probability": 0.783203125}, {"start": 1366.51, "end": 1366.73, "word": " the", "probability": 0.65771484375}, {"start": 1366.73, "end": 1367.23, "word": " design", "probability": 0.9482421875}, {"start": 1367.23, "end": 1368.45, "word": " so", "probability": 0.1629638671875}, {"start": 1368.45, "end": 1368.73, "word": " that", "probability": 0.83935546875}, {"start": 1368.73, "end": 1368.79, "word": " I", "probability": 0.401123046875}, {"start": 1368.79, "end": 1368.89, "word": " don't", "probability": 0.7861328125}, {"start": 1368.89, "end": 1369.17, "word": " modify", "probability": 0.5009765625}, {"start": 1369.17, "end": 1369.71, "word": " anything", "probability": 0.83544921875}, {"start": 1369.71, "end": 1371.25, "word": " in", "probability": 0.75439453125}, {"start": 1371.25, "end": 1371.37, "word": " the", "probability": 0.49169921875}, {"start": 1371.37, "end": 1371.51, "word": " A?", "probability": 0.9453125}, {"start": 1371.65, "end": 1371.97, "word": " The", "probability": 0.302001953125}, {"start": 1371.97, "end": 1372.49, "word": " problem", "probability": 0.86376953125}, {"start": 1372.49, "end": 1372.61, "word": " is", "probability": 0.61962890625}, {"start": 1372.61, "end": 1372.79, "word": " that", "probability": 0.80615234375}, {"start": 1372.79, "end": 1374.09, "word": " in", "probability": 0.2186279296875}, {"start": 1374.09, "end": 1377.23, "word": " the", "probability": 0.472900390625}, {"start": 1377.23, "end": 1377.41, "word": " A", "probability": 0.93701171875}, {"start": 1377.41, "end": 1377.55, "word": " there", "probability": 0.5537109375}, {"start": 1377.55, "end": 1377.61, "word": " is", "probability": 0.86181640625}, {"start": 1377.61, "end": 1377.71, "word": " a", "probability": 0.84619140625}, {"start": 1377.71, "end": 1378.01, "word": " reference", "probability": 0.8623046875}, {"start": 1378.01, "end": 1378.29, "word": " to", "probability": 0.58642578125}, {"start": 1378.29, "end": 1378.41, "word": " the", "probability": 0.5595703125}, {"start": 1378.41, "end": 1378.63, "word": " B", "probability": 0.9833984375}], "temperature": 1.0}, {"id": 55, "seek": 140615, "start": 1379.55, "end": 1406.15, "text": " and C and D. Am I right guys? These are references for these, right? And there are also set methods set B and set C and set D. All of this is inside the A. By adding a component of G, I had to add a reference and another set and so on. Okay, the improvement of the design will be as follows. Look with me. Because we will see how to apply the observer pattern.", "tokens": [293, 383, 293, 413, 13, 2012, 286, 558, 1074, 30, 1981, 366, 15400, 337, 613, 11, 558, 30, 400, 456, 366, 611, 992, 7150, 992, 363, 293, 992, 383, 293, 992, 413, 13, 1057, 295, 341, 307, 1854, 264, 316, 13, 3146, 5127, 257, 6542, 295, 460, 11, 286, 632, 281, 909, 257, 6408, 293, 1071, 992, 293, 370, 322, 13, 1033, 11, 264, 10444, 295, 264, 1715, 486, 312, 382, 10002, 13, 2053, 365, 385, 13, 1436, 321, 486, 536, 577, 281, 3079, 264, 27878, 5102, 13], "avg_logprob": -0.4870084376817339, "compression_ratio": 1.5833333333333333, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 1379.55, "end": 1379.79, "word": " and", "probability": 0.27880859375}, {"start": 1379.79, "end": 1380.05, "word": " C", "probability": 0.54638671875}, {"start": 1380.05, "end": 1380.31, "word": " and", "probability": 0.8857421875}, {"start": 1380.31, "end": 1380.53, "word": " D.", "probability": 0.9912109375}, {"start": 1381.05, "end": 1381.15, "word": " Am", "probability": 0.2381591796875}, {"start": 1381.15, "end": 1381.15, "word": " I", "probability": 0.93994140625}, {"start": 1381.15, "end": 1381.19, "word": " right", "probability": 0.71142578125}, {"start": 1381.19, "end": 1381.65, "word": " guys?", "probability": 0.2998046875}, {"start": 1383.67, "end": 1384.13, "word": " These", "probability": 0.459228515625}, {"start": 1384.13, "end": 1384.23, "word": " are", "probability": 0.873046875}, {"start": 1384.23, "end": 1384.75, "word": " references", "probability": 0.65673828125}, {"start": 1384.75, "end": 1384.89, "word": " for", "probability": 0.607421875}, {"start": 1384.89, "end": 1385.13, "word": " these,", "probability": 0.7080078125}, {"start": 1385.27, "end": 1385.59, "word": " right?", "probability": 0.78173828125}, {"start": 1385.87, "end": 1386.01, "word": " And", "probability": 0.5703125}, {"start": 1386.01, "end": 1386.15, "word": " there", "probability": 0.77880859375}, {"start": 1386.15, "end": 1386.21, "word": " are", "probability": 0.7451171875}, {"start": 1386.21, "end": 1386.49, "word": " also", "probability": 0.77734375}, {"start": 1386.49, "end": 1386.77, "word": " set", "probability": 0.341064453125}, {"start": 1386.77, "end": 1387.25, "word": " methods", "probability": 0.787109375}, {"start": 1387.25, "end": 1388.15, "word": " set", "probability": 0.41748046875}, {"start": 1388.15, "end": 1388.51, "word": " B", "probability": 0.71533203125}, {"start": 1388.51, "end": 1389.61, "word": " and", "probability": 0.6982421875}, {"start": 1389.61, "end": 1389.85, "word": " set", "probability": 0.93115234375}, {"start": 1389.85, "end": 1390.21, "word": " C", "probability": 0.99267578125}, {"start": 1390.21, "end": 1390.99, "word": " and", "probability": 0.92041015625}, {"start": 1390.99, "end": 1391.25, "word": " set", "probability": 0.951171875}, {"start": 1391.25, "end": 1391.55, "word": " D.", "probability": 0.99658203125}, {"start": 1392.51, "end": 1392.73, "word": " All", "probability": 0.62109375}, {"start": 1392.73, "end": 1392.99, "word": " of", "probability": 0.477783203125}, {"start": 1392.99, "end": 1392.99, "word": " this", "probability": 0.41552734375}, {"start": 1392.99, "end": 1393.45, "word": " is", "probability": 0.55908203125}, {"start": 1393.45, "end": 1393.53, "word": " inside", "probability": 0.673828125}, {"start": 1393.53, "end": 1394.41, "word": " the", "probability": 0.385009765625}, {"start": 1394.41, "end": 1394.63, "word": " A.", "probability": 0.53271484375}, {"start": 1394.77, "end": 1395.07, "word": " By", "probability": 0.1251220703125}, {"start": 1395.07, "end": 1395.07, "word": " adding", "probability": 0.833984375}, {"start": 1395.07, "end": 1395.19, "word": " a", "probability": 0.39013671875}, {"start": 1395.19, "end": 1395.57, "word": " component", "probability": 0.63720703125}, {"start": 1395.57, "end": 1395.75, "word": " of", "probability": 0.1943359375}, {"start": 1395.75, "end": 1395.83, "word": " G,", "probability": 0.87939453125}, {"start": 1395.93, "end": 1396.01, "word": " I", "probability": 0.328125}, {"start": 1396.01, "end": 1396.13, "word": " had", "probability": 0.53271484375}, {"start": 1396.13, "end": 1396.37, "word": " to", "probability": 0.96630859375}, {"start": 1396.37, "end": 1396.55, "word": " add", "probability": 0.88525390625}, {"start": 1396.55, "end": 1396.65, "word": " a", "probability": 0.765625}, {"start": 1396.65, "end": 1397.07, "word": " reference", "probability": 0.86083984375}, {"start": 1397.07, "end": 1397.27, "word": " and", "probability": 0.71142578125}, {"start": 1397.27, "end": 1397.55, "word": " another", "probability": 0.5654296875}, {"start": 1397.55, "end": 1397.55, "word": " set", "probability": 0.962890625}, {"start": 1397.55, "end": 1397.85, "word": " and", "probability": 0.61279296875}, {"start": 1397.85, "end": 1398.09, "word": " so", "probability": 0.86962890625}, {"start": 1398.09, "end": 1398.29, "word": " on.", "probability": 0.91064453125}, {"start": 1400.01, "end": 1400.33, "word": " Okay,", "probability": 0.3212890625}, {"start": 1400.61, "end": 1400.67, "word": " the", "probability": 0.326416015625}, {"start": 1400.67, "end": 1400.87, "word": " improvement", "probability": 0.42236328125}, {"start": 1400.87, "end": 1401.07, "word": " of", "probability": 0.72509765625}, {"start": 1401.07, "end": 1401.15, "word": " the", "probability": 0.50927734375}, {"start": 1401.15, "end": 1401.37, "word": " design", "probability": 0.95556640625}, {"start": 1401.37, "end": 1401.55, "word": " will", "probability": 0.7041015625}, {"start": 1401.55, "end": 1401.71, "word": " be", "probability": 0.9169921875}, {"start": 1401.71, "end": 1401.89, "word": " as", "probability": 0.70849609375}, {"start": 1401.89, "end": 1402.13, "word": " follows.", "probability": 0.78466796875}, {"start": 1402.23, "end": 1402.41, "word": " Look", "probability": 0.5166015625}, {"start": 1402.41, "end": 1402.57, "word": " with", "probability": 0.64453125}, {"start": 1402.57, "end": 1402.75, "word": " me.", "probability": 0.96826171875}, {"start": 1402.83, "end": 1403.01, "word": " Because", "probability": 0.62451171875}, {"start": 1403.01, "end": 1403.33, "word": " we", "probability": 0.60107421875}, {"start": 1403.33, "end": 1403.51, "word": " will", "probability": 0.383544921875}, {"start": 1403.51, "end": 1403.67, "word": " see", "probability": 0.8876953125}, {"start": 1403.67, "end": 1403.87, "word": " how", "probability": 0.93115234375}, {"start": 1403.87, "end": 1404.03, "word": " to", "probability": 0.69140625}, {"start": 1404.03, "end": 1404.49, "word": " apply", "probability": 0.7890625}, {"start": 1404.49, "end": 1405.33, "word": " the", "probability": 0.86083984375}, {"start": 1405.33, "end": 1405.73, "word": " observer", "probability": 0.62548828125}, {"start": 1405.73, "end": 1406.15, "word": " pattern.", "probability": 0.90625}], "temperature": 1.0}, {"id": 56, "seek": 143373, "start": 1409.25, "end": 1433.73, "text": "First of all, notice what I did. I deleted all relationships. This is the first step. And I deleted the girls. And who did I delete? The attributes. So now what am I inside? I deleted these. And I deleted these.", "tokens": [27454, 295, 439, 11, 3449, 437, 286, 630, 13, 286, 22981, 439, 6159, 13, 639, 307, 264, 700, 1823, 13, 400, 286, 22981, 264, 4519, 13, 400, 567, 630, 286, 12097, 30, 440, 17212, 13, 407, 586, 437, 669, 286, 1854, 30, 286, 22981, 613, 13, 400, 286, 22981, 613, 13], "avg_logprob": -0.49338943568559795, "compression_ratio": 1.586466165413534, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1409.25, "end": 1409.63, "word": "First", "probability": 0.248779296875}, {"start": 1409.63, "end": 1409.89, "word": " of", "probability": 0.2406005859375}, {"start": 1409.89, "end": 1409.99, "word": " all,", "probability": 0.9521484375}, {"start": 1410.13, "end": 1410.39, "word": " notice", "probability": 0.537109375}, {"start": 1410.39, "end": 1410.57, "word": " what", "probability": 0.88916015625}, {"start": 1410.57, "end": 1411.57, "word": " I", "probability": 0.69677734375}, {"start": 1411.57, "end": 1411.57, "word": " did.", "probability": 0.69873046875}, {"start": 1412.41, "end": 1413.01, "word": " I", "probability": 0.89111328125}, {"start": 1413.01, "end": 1413.01, "word": " deleted", "probability": 0.436279296875}, {"start": 1413.01, "end": 1413.15, "word": " all", "probability": 0.75830078125}, {"start": 1413.15, "end": 1413.45, "word": " relationships.", "probability": 0.268310546875}, {"start": 1414.65, "end": 1414.79, "word": " This", "probability": 0.380615234375}, {"start": 1414.79, "end": 1414.85, "word": " is", "probability": 0.7158203125}, {"start": 1414.85, "end": 1415.05, "word": " the", "probability": 0.828125}, {"start": 1415.05, "end": 1415.05, "word": " first", "probability": 0.88720703125}, {"start": 1415.05, "end": 1415.35, "word": " step.", "probability": 0.90380859375}, {"start": 1416.53, "end": 1416.73, "word": " And", "probability": 0.4580078125}, {"start": 1416.73, "end": 1416.85, "word": " I", "probability": 0.861328125}, {"start": 1416.85, "end": 1417.03, "word": " deleted", "probability": 0.67919921875}, {"start": 1417.03, "end": 1417.17, "word": " the", "probability": 0.3515625}, {"start": 1417.17, "end": 1417.47, "word": " girls.", "probability": 0.27197265625}, {"start": 1418.15, "end": 1418.59, "word": " And", "probability": 0.83154296875}, {"start": 1418.59, "end": 1419.01, "word": " who", "probability": 0.391357421875}, {"start": 1419.01, "end": 1419.01, "word": " did", "probability": 0.8701171875}, {"start": 1419.01, "end": 1419.01, "word": " I", "probability": 0.9892578125}, {"start": 1419.01, "end": 1419.01, "word": " delete?", "probability": 0.88818359375}, {"start": 1420.17, "end": 1420.59, "word": " The", "probability": 0.716796875}, {"start": 1420.59, "end": 1421.07, "word": " attributes.", "probability": 0.87158203125}, {"start": 1423.73, "end": 1424.33, "word": " So", "probability": 0.384765625}, {"start": 1424.33, "end": 1424.61, "word": " now", "probability": 0.62158203125}, {"start": 1424.61, "end": 1424.77, "word": " what", "probability": 0.39306640625}, {"start": 1424.77, "end": 1424.77, "word": " am", "probability": 0.494873046875}, {"start": 1424.77, "end": 1424.87, "word": " I", "probability": 0.99072265625}, {"start": 1424.87, "end": 1425.03, "word": " inside?", "probability": 0.40283203125}, {"start": 1427.13, "end": 1427.73, "word": " I", "probability": 0.92578125}, {"start": 1427.73, "end": 1427.89, "word": " deleted", "probability": 0.7568359375}, {"start": 1427.89, "end": 1428.27, "word": " these.", "probability": 0.448486328125}, {"start": 1432.53, "end": 1433.13, "word": " And", "probability": 0.87841796875}, {"start": 1433.13, "end": 1433.39, "word": " I", "probability": 0.6328125}, {"start": 1433.39, "end": 1433.39, "word": " deleted", "probability": 0.86181640625}, {"start": 1433.39, "end": 1433.73, "word": " these.", "probability": 0.82861328125}], "temperature": 1.0}, {"id": 57, "seek": 146240, "start": 1436.5, "end": 1462.4, "text": "رجع ال a إيش؟ فاضي تمام و أكيد هال gate مدام فش a تمام رجعوا ال objects ما لهم مفصولين عن بعض إيش تمام تمام طيب الخطوة الآن جوا ال class A رح نعمل interface سميه مثلا أنا بدي سميه a listener", "tokens": [47341, 3615, 2423, 257, 11933, 1829, 8592, 22807, 6156, 46958, 1829, 46811, 10943, 4032, 5551, 4117, 25708, 8032, 6027, 8539, 3714, 3215, 10943, 6156, 8592, 257, 46811, 10943, 12602, 7435, 3615, 14407, 2423, 6565, 19446, 5296, 16095, 3714, 5172, 9381, 12610, 9957, 18871, 45030, 11242, 11933, 1829, 8592, 46811, 10943, 46811, 10943, 23032, 1829, 3555, 33962, 9566, 2407, 3660, 6024, 48506, 10874, 14407, 2423, 1508, 316, 12602, 5016, 8717, 25957, 1211, 9226, 8608, 2304, 1829, 3224, 50113, 15040, 41850, 4724, 16254, 8608, 2304, 1829, 3224, 257, 31569], "avg_logprob": -0.2776988517831672, "compression_ratio": 1.556701030927835, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 1436.5, "end": 1436.9, "word": "رجع", "probability": 0.47794342041015625}, {"start": 1436.9, "end": 1437.02, "word": " ال", "probability": 0.54833984375}, {"start": 1437.02, "end": 1437.16, "word": " a", "probability": 0.346923828125}, {"start": 1437.16, "end": 1438.0, "word": " إيش؟", "probability": 0.7537841796875}, {"start": 1438.0, "end": 1438.96, "word": " فاضي", "probability": 0.8855794270833334}, {"start": 1438.96, "end": 1439.8, "word": " تمام", "probability": 0.56500244140625}, {"start": 1439.8, "end": 1440.98, "word": " و", "probability": 0.5869140625}, {"start": 1440.98, "end": 1441.28, "word": " أكيد", "probability": 0.8951822916666666}, {"start": 1441.28, "end": 1441.46, "word": " هال", "probability": 0.756591796875}, {"start": 1441.46, "end": 1441.66, "word": " gate", "probability": 0.81396484375}, {"start": 1441.66, "end": 1442.0, "word": " مدام", "probability": 0.8531901041666666}, {"start": 1442.0, "end": 1442.3, "word": " فش", "probability": 0.626953125}, {"start": 1442.3, "end": 1442.56, "word": " a", "probability": 0.56298828125}, {"start": 1442.56, "end": 1444.62, "word": " تمام", "probability": 0.686279296875}, {"start": 1444.62, "end": 1445.08, "word": " رجعوا", "probability": 0.8460693359375}, {"start": 1445.08, "end": 1445.16, "word": " ال", "probability": 0.9716796875}, {"start": 1445.16, "end": 1445.56, "word": " objects", "probability": 0.96728515625}, {"start": 1445.56, "end": 1445.82, "word": " ما", "probability": 0.59326171875}, {"start": 1445.82, "end": 1446.1, "word": " لهم", "probability": 0.77392578125}, {"start": 1446.1, "end": 1446.8, "word": " مفصولين", "probability": 0.9072265625}, {"start": 1446.8, "end": 1446.92, "word": " عن", "probability": 0.98876953125}, {"start": 1446.92, "end": 1447.34, "word": " بعض", "probability": 0.9814453125}, {"start": 1447.34, "end": 1448.98, "word": " إيش", "probability": 0.8361002604166666}, {"start": 1448.98, "end": 1449.52, "word": " تمام", "probability": 0.928466796875}, {"start": 1449.52, "end": 1450.52, "word": " تمام", "probability": 0.867919921875}, {"start": 1450.52, "end": 1451.62, "word": " طيب", "probability": 0.9181315104166666}, {"start": 1451.62, "end": 1452.2, "word": " الخطوة", "probability": 0.9693603515625}, {"start": 1452.2, "end": 1452.6, "word": " الآن", "probability": 0.60321044921875}, {"start": 1452.6, "end": 1454.72, "word": " جوا", "probability": 0.8359375}, {"start": 1454.72, "end": 1454.86, "word": " ال", "probability": 0.79541015625}, {"start": 1454.86, "end": 1455.18, "word": " class", "probability": 0.98681640625}, {"start": 1455.18, "end": 1455.48, "word": " A", "probability": 0.607421875}, {"start": 1455.48, "end": 1456.5, "word": " رح", "probability": 0.90576171875}, {"start": 1456.5, "end": 1456.78, "word": " نعمل", "probability": 0.9441731770833334}, {"start": 1456.78, "end": 1457.44, "word": " interface", "probability": 0.9287109375}, {"start": 1457.44, "end": 1460.22, "word": " سميه", "probability": 0.8572998046875}, {"start": 1460.22, "end": 1460.9, "word": " مثلا", "probability": 0.990966796875}, {"start": 1460.9, "end": 1461.08, "word": " أنا", "probability": 0.80419921875}, {"start": 1461.08, "end": 1461.26, "word": " بدي", "probability": 0.719970703125}, {"start": 1461.26, "end": 1461.8, "word": " سميه", "probability": 0.927734375}, {"start": 1461.8, "end": 1462.02, "word": " a", "probability": 0.400146484375}, {"start": 1462.02, "end": 1462.4, "word": " listener", "probability": 0.4697265625}], "temperature": 1.0}, {"id": 58, "seek": 149262, "start": 1466.96, "end": 1492.62, "text": "What does a listener mean? What does a listener mean? The listener. What is the listener for? That's what it means. A listener. This interface is here. I want to put an abstract method in this interface. Its name is data, data received. Okay?", "tokens": [3748, 775, 257, 31569, 914, 30, 708, 775, 257, 31569, 914, 30, 440, 31569, 13, 708, 307, 264, 31569, 337, 30, 663, 311, 437, 309, 1355, 13, 316, 31569, 13, 639, 9226, 307, 510, 13, 286, 528, 281, 829, 364, 12649, 3170, 294, 341, 9226, 13, 6953, 1315, 307, 1412, 11, 1412, 4613, 13, 1033, 30], "avg_logprob": -0.5180921052631579, "compression_ratio": 1.6923076923076923, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 1466.96, "end": 1467.24, "word": "What", "probability": 0.379150390625}, {"start": 1467.24, "end": 1467.36, "word": " does", "probability": 0.56103515625}, {"start": 1467.36, "end": 1467.54, "word": " a", "probability": 0.38427734375}, {"start": 1467.54, "end": 1467.92, "word": " listener", "probability": 0.78955078125}, {"start": 1467.92, "end": 1468.02, "word": " mean?", "probability": 0.87939453125}, {"start": 1468.24, "end": 1468.9, "word": " What", "probability": 0.1529541015625}, {"start": 1468.9, "end": 1468.9, "word": " does", "probability": 0.7333984375}, {"start": 1468.9, "end": 1468.9, "word": " a", "probability": 0.30126953125}, {"start": 1468.9, "end": 1468.9, "word": " listener", "probability": 0.9375}, {"start": 1468.9, "end": 1469.22, "word": " mean?", "probability": 0.919921875}, {"start": 1469.76, "end": 1470.46, "word": " The", "probability": 0.2188720703125}, {"start": 1470.46, "end": 1470.74, "word": " listener.", "probability": 0.8837890625}, {"start": 1470.82, "end": 1470.96, "word": " What", "probability": 0.284912109375}, {"start": 1470.96, "end": 1470.96, "word": " is", "probability": 0.54248046875}, {"start": 1470.96, "end": 1471.0, "word": " the", "probability": 0.51953125}, {"start": 1471.0, "end": 1471.3, "word": " listener", "probability": 0.919921875}, {"start": 1471.3, "end": 1471.56, "word": " for?", "probability": 0.6181640625}, {"start": 1472.42, "end": 1472.64, "word": " That's", "probability": 0.53662109375}, {"start": 1472.64, "end": 1472.7, "word": " what", "probability": 0.642578125}, {"start": 1472.7, "end": 1473.04, "word": " it", "probability": 0.82763671875}, {"start": 1473.04, "end": 1473.04, "word": " means.", "probability": 0.9404296875}, {"start": 1473.22, "end": 1473.72, "word": " A", "probability": 0.238037109375}, {"start": 1473.72, "end": 1474.16, "word": " listener.", "probability": 0.7001953125}, {"start": 1474.92, "end": 1475.54, "word": " This", "probability": 0.693359375}, {"start": 1475.54, "end": 1476.16, "word": " interface", "probability": 0.53466796875}, {"start": 1476.16, "end": 1476.58, "word": " is", "probability": 0.79248046875}, {"start": 1476.58, "end": 1477.04, "word": " here.", "probability": 0.4482421875}, {"start": 1477.52, "end": 1478.24, "word": " I", "probability": 0.5810546875}, {"start": 1478.24, "end": 1478.48, "word": " want", "probability": 0.484619140625}, {"start": 1478.48, "end": 1478.5, "word": " to", "probability": 0.96484375}, {"start": 1478.5, "end": 1478.72, "word": " put", "probability": 0.72314453125}, {"start": 1478.72, "end": 1479.12, "word": " an", "probability": 0.5126953125}, {"start": 1479.12, "end": 1479.46, "word": " abstract", "probability": 0.8759765625}, {"start": 1479.46, "end": 1480.12, "word": " method", "probability": 0.93798828125}, {"start": 1480.12, "end": 1480.56, "word": " in", "probability": 0.4521484375}, {"start": 1480.56, "end": 1480.56, "word": " this", "probability": 0.81494140625}, {"start": 1480.56, "end": 1480.56, "word": " interface.", "probability": 0.88525390625}, {"start": 1482.3, "end": 1483.02, "word": " Its", "probability": 0.48779296875}, {"start": 1483.02, "end": 1483.2, "word": " name", "probability": 0.90625}, {"start": 1483.2, "end": 1483.34, "word": " is", "probability": 0.9638671875}, {"start": 1483.34, "end": 1483.76, "word": " data,", "probability": 0.78857421875}, {"start": 1484.46, "end": 1486.86, "word": " data", "probability": 0.8876953125}, {"start": 1486.86, "end": 1488.32, "word": " received.", "probability": 0.70263671875}, {"start": 1491.9, "end": 1492.62, "word": " Okay?", "probability": 0.298095703125}], "temperature": 1.0}, {"id": 59, "seek": 152203, "start": 1494.65, "end": 1522.03, "text": "Okay, let's apply it and then we'll see how it works. Now, B doesn't want to listen to the updates in A. Either B wants to listen to what happens in A, you have to go and implement for whom? For the A listener. Or C wants to listen to anything that happens in A, you have to implement for whom? For the A listener. So all of these have to implement for whom? For the A listener.", "tokens": [8297, 11, 718, 311, 3079, 309, 293, 550, 321, 603, 536, 577, 309, 1985, 13, 823, 11, 363, 1177, 380, 528, 281, 2140, 281, 264, 9205, 294, 316, 13, 13746, 363, 2738, 281, 2140, 281, 437, 2314, 294, 316, 11, 291, 362, 281, 352, 293, 4445, 337, 7101, 30, 1171, 264, 316, 31569, 13, 1610, 383, 2738, 281, 2140, 281, 1340, 300, 2314, 294, 316, 11, 291, 362, 281, 4445, 337, 7101, 30, 1171, 264, 316, 31569, 13, 407, 439, 295, 613, 362, 281, 4445, 337, 7101, 30, 1171, 264, 316, 31569, 13], "avg_logprob": -0.34607712195274676, "compression_ratio": 2.1, "no_speech_prob": 4.708766937255859e-06, "words": [{"start": 1494.65, "end": 1494.97, "word": "Okay,", "probability": 0.37744140625}, {"start": 1494.99, "end": 1495.27, "word": " let's", "probability": 0.70068359375}, {"start": 1495.27, "end": 1495.53, "word": " apply", "probability": 0.69091796875}, {"start": 1495.53, "end": 1495.63, "word": " it", "probability": 0.71044921875}, {"start": 1495.63, "end": 1495.71, "word": " and", "probability": 0.6123046875}, {"start": 1495.71, "end": 1495.87, "word": " then", "probability": 0.498779296875}, {"start": 1495.87, "end": 1496.03, "word": " we'll", "probability": 0.52880859375}, {"start": 1496.03, "end": 1496.25, "word": " see", "probability": 0.849609375}, {"start": 1496.25, "end": 1496.53, "word": " how", "probability": 0.7578125}, {"start": 1496.53, "end": 1497.21, "word": " it", "probability": 0.48193359375}, {"start": 1497.21, "end": 1497.37, "word": " works.", "probability": 0.4677734375}, {"start": 1497.67, "end": 1497.97, "word": " Now,", "probability": 0.5986328125}, {"start": 1498.13, "end": 1498.45, "word": " B", "probability": 0.65869140625}, {"start": 1498.45, "end": 1500.49, "word": " doesn't", "probability": 0.7734375}, {"start": 1500.49, "end": 1500.65, "word": " want", "probability": 0.66552734375}, {"start": 1500.65, "end": 1500.75, "word": " to", "probability": 0.970703125}, {"start": 1500.75, "end": 1501.01, "word": " listen", "probability": 0.54833984375}, {"start": 1501.01, "end": 1501.17, "word": " to", "probability": 0.953125}, {"start": 1501.17, "end": 1501.25, "word": " the", "probability": 0.61962890625}, {"start": 1501.25, "end": 1501.57, "word": " updates", "probability": 0.7119140625}, {"start": 1501.57, "end": 1502.17, "word": " in", "probability": 0.49755859375}, {"start": 1502.17, "end": 1502.41, "word": " A.", "probability": 0.94873046875}, {"start": 1502.79, "end": 1503.01, "word": " Either", "probability": 0.466552734375}, {"start": 1503.01, "end": 1503.19, "word": " B", "probability": 0.9326171875}, {"start": 1503.19, "end": 1503.57, "word": " wants", "probability": 0.6708984375}, {"start": 1503.57, "end": 1503.69, "word": " to", "probability": 0.970703125}, {"start": 1503.69, "end": 1504.05, "word": " listen", "probability": 0.89111328125}, {"start": 1504.05, "end": 1504.23, "word": " to", "probability": 0.9599609375}, {"start": 1504.23, "end": 1504.91, "word": " what", "probability": 0.89990234375}, {"start": 1504.91, "end": 1505.19, "word": " happens", "probability": 0.46044921875}, {"start": 1505.19, "end": 1505.33, "word": " in", "probability": 0.9404296875}, {"start": 1505.33, "end": 1505.67, "word": " A,", "probability": 0.99169921875}, {"start": 1506.09, "end": 1506.43, "word": " you", "probability": 0.41162109375}, {"start": 1506.43, "end": 1506.57, "word": " have", "probability": 0.56494140625}, {"start": 1506.57, "end": 1506.73, "word": " to", "probability": 0.96875}, {"start": 1506.73, "end": 1506.83, "word": " go", "probability": 0.52392578125}, {"start": 1506.83, "end": 1506.95, "word": " and", "probability": 0.60400390625}, {"start": 1506.95, "end": 1507.53, "word": " implement", "probability": 0.79345703125}, {"start": 1507.53, "end": 1507.81, "word": " for", "probability": 0.42333984375}, {"start": 1507.81, "end": 1507.97, "word": " whom?", "probability": 0.84716796875}, {"start": 1509.03, "end": 1509.47, "word": " For", "probability": 0.662109375}, {"start": 1509.47, "end": 1509.59, "word": " the", "probability": 0.29931640625}, {"start": 1509.59, "end": 1509.59, "word": " A", "probability": 0.66357421875}, {"start": 1509.59, "end": 1509.87, "word": " listener.", "probability": 0.61474609375}, {"start": 1511.05, "end": 1511.23, "word": " Or", "probability": 0.537109375}, {"start": 1511.23, "end": 1511.61, "word": " C", "probability": 0.865234375}, {"start": 1511.61, "end": 1511.95, "word": " wants", "probability": 0.7265625}, {"start": 1511.95, "end": 1512.11, "word": " to", "probability": 0.9716796875}, {"start": 1512.11, "end": 1512.39, "word": " listen", "probability": 0.90380859375}, {"start": 1512.39, "end": 1512.57, "word": " to", "probability": 0.9677734375}, {"start": 1512.57, "end": 1512.87, "word": " anything", "probability": 0.60595703125}, {"start": 1512.87, "end": 1513.05, "word": " that", "probability": 0.87548828125}, {"start": 1513.05, "end": 1513.31, "word": " happens", "probability": 0.923828125}, {"start": 1513.31, "end": 1513.43, "word": " in", "probability": 0.93994140625}, {"start": 1513.43, "end": 1513.77, "word": " A,", "probability": 0.9912109375}, {"start": 1514.43, "end": 1514.43, "word": " you", "probability": 0.849609375}, {"start": 1514.43, "end": 1514.65, "word": " have", "probability": 0.8623046875}, {"start": 1514.65, "end": 1514.83, "word": " to", "probability": 0.97119140625}, {"start": 1514.83, "end": 1515.57, "word": " implement", "probability": 0.548828125}, {"start": 1515.57, "end": 1516.07, "word": " for", "probability": 0.78125}, {"start": 1516.07, "end": 1516.23, "word": " whom?", "probability": 0.9365234375}, {"start": 1516.41, "end": 1516.69, "word": " For", "probability": 0.93505859375}, {"start": 1516.69, "end": 1516.77, "word": " the", "probability": 0.89892578125}, {"start": 1516.77, "end": 1516.93, "word": " A", "probability": 0.9931640625}, {"start": 1516.93, "end": 1517.15, "word": " listener.", "probability": 0.7587890625}, {"start": 1517.31, "end": 1517.47, "word": " So", "probability": 0.33837890625}, {"start": 1517.47, "end": 1517.65, "word": " all", "probability": 0.438720703125}, {"start": 1517.65, "end": 1517.75, "word": " of", "probability": 0.77001953125}, {"start": 1517.75, "end": 1517.83, "word": " these", "probability": 0.4599609375}, {"start": 1517.83, "end": 1518.47, "word": " have", "probability": 0.6240234375}, {"start": 1518.47, "end": 1519.37, "word": " to", "probability": 0.97314453125}, {"start": 1519.37, "end": 1519.59, "word": " implement", "probability": 0.87841796875}, {"start": 1519.59, "end": 1520.23, "word": " for", "probability": 0.85107421875}, {"start": 1520.23, "end": 1520.35, "word": " whom?", "probability": 0.91064453125}, {"start": 1521.17, "end": 1521.61, "word": " For", "probability": 0.927734375}, {"start": 1521.61, "end": 1521.69, "word": " the", "probability": 0.90771484375}, {"start": 1521.69, "end": 1521.85, "word": " A", "probability": 0.99658203125}, {"start": 1521.85, "end": 1522.03, "word": " listener.", "probability": 0.7734375}], "temperature": 1.0}, {"id": 60, "seek": 154482, "start": 1522.92, "end": 1544.82, "text": "until now notice that there is no relation between A and who? and these people okay this gate inside A not like before we used to put inside A we used to put reference from B and C and D okay now we don't put reference for B and C and D and E we put list of A", "tokens": [2760, 388, 586, 3449, 300, 456, 307, 572, 9721, 1296, 316, 293, 567, 30, 293, 613, 561, 1392, 341, 8539, 1854, 316, 406, 411, 949, 321, 1143, 281, 829, 1854, 316, 321, 1143, 281, 829, 6408, 490, 363, 293, 383, 293, 413, 1392, 586, 321, 500, 380, 829, 6408, 337, 363, 293, 383, 293, 413, 293, 462, 321, 829, 1329, 295, 316], "avg_logprob": -0.46106151550535174, "compression_ratio": 1.7152317880794703, "no_speech_prob": 5.9604644775390625e-06, "words": [{"start": 1522.92, "end": 1523.34, "word": "until", "probability": 0.5335693359375}, {"start": 1523.34, "end": 1523.64, "word": " now", "probability": 0.91015625}, {"start": 1523.64, "end": 1523.9, "word": " notice", "probability": 0.2359619140625}, {"start": 1523.9, "end": 1524.0, "word": " that", "probability": 0.34716796875}, {"start": 1524.0, "end": 1524.12, "word": " there", "probability": 0.83544921875}, {"start": 1524.12, "end": 1524.16, "word": " is", "probability": 0.806640625}, {"start": 1524.16, "end": 1524.22, "word": " no", "probability": 0.88623046875}, {"start": 1524.22, "end": 1524.52, "word": " relation", "probability": 0.73291015625}, {"start": 1524.52, "end": 1524.72, "word": " between", "probability": 0.85693359375}, {"start": 1524.72, "end": 1524.88, "word": " A", "probability": 0.4658203125}, {"start": 1524.88, "end": 1525.0, "word": " and", "probability": 0.826171875}, {"start": 1525.0, "end": 1525.2, "word": " who?", "probability": 0.312255859375}, {"start": 1525.76, "end": 1526.24, "word": " and", "probability": 0.51806640625}, {"start": 1526.24, "end": 1526.48, "word": " these", "probability": 0.5615234375}, {"start": 1526.48, "end": 1526.96, "word": " people", "probability": 0.25341796875}, {"start": 1526.96, "end": 1527.24, "word": " okay", "probability": 0.2138671875}, {"start": 1527.24, "end": 1527.94, "word": " this", "probability": 0.371337890625}, {"start": 1527.94, "end": 1528.12, "word": " gate", "probability": 0.75341796875}, {"start": 1528.12, "end": 1528.38, "word": " inside", "probability": 0.74462890625}, {"start": 1528.38, "end": 1528.64, "word": " A", "probability": 0.73046875}, {"start": 1528.64, "end": 1528.84, "word": " not", "probability": 0.1583251953125}, {"start": 1528.84, "end": 1529.12, "word": " like", "probability": 0.290771484375}, {"start": 1529.12, "end": 1529.36, "word": " before", "probability": 0.24755859375}, {"start": 1529.36, "end": 1529.82, "word": " we", "probability": 0.51220703125}, {"start": 1529.82, "end": 1529.98, "word": " used", "probability": 0.4560546875}, {"start": 1529.98, "end": 1530.04, "word": " to", "probability": 0.96142578125}, {"start": 1530.04, "end": 1530.28, "word": " put", "probability": 0.74365234375}, {"start": 1530.28, "end": 1530.48, "word": " inside", "probability": 0.53466796875}, {"start": 1530.48, "end": 1530.98, "word": " A", "probability": 0.96484375}, {"start": 1530.98, "end": 1534.44, "word": " we", "probability": 0.7724609375}, {"start": 1534.44, "end": 1534.56, "word": " used", "probability": 0.83935546875}, {"start": 1534.56, "end": 1534.68, "word": " to", "probability": 0.9716796875}, {"start": 1534.68, "end": 1534.88, "word": " put", "probability": 0.88232421875}, {"start": 1534.88, "end": 1535.34, "word": " reference", "probability": 0.693359375}, {"start": 1535.34, "end": 1535.58, "word": " from", "probability": 0.65478515625}, {"start": 1535.58, "end": 1535.82, "word": " B", "probability": 0.96142578125}, {"start": 1535.82, "end": 1535.96, "word": " and", "probability": 0.62353515625}, {"start": 1535.96, "end": 1536.14, "word": " C", "probability": 0.97998046875}, {"start": 1536.14, "end": 1536.3, "word": " and", "probability": 0.93359375}, {"start": 1536.3, "end": 1536.48, "word": " D", "probability": 0.99365234375}, {"start": 1536.48, "end": 1537.44, "word": " okay", "probability": 0.337158203125}, {"start": 1537.44, "end": 1537.98, "word": " now", "probability": 0.54052734375}, {"start": 1537.98, "end": 1538.18, "word": " we", "probability": 0.927734375}, {"start": 1538.18, "end": 1538.18, "word": " don't", "probability": 0.7548828125}, {"start": 1538.18, "end": 1538.52, "word": " put", "probability": 0.69970703125}, {"start": 1538.52, "end": 1538.98, "word": " reference", "probability": 0.83837890625}, {"start": 1538.98, "end": 1539.16, "word": " for", "probability": 0.4873046875}, {"start": 1539.16, "end": 1539.38, "word": " B", "probability": 0.9658203125}, {"start": 1539.38, "end": 1539.56, "word": " and", "probability": 0.7119140625}, {"start": 1539.56, "end": 1539.74, "word": " C", "probability": 0.9921875}, {"start": 1539.74, "end": 1539.92, "word": " and", "probability": 0.9326171875}, {"start": 1539.92, "end": 1540.04, "word": " D", "probability": 0.984375}, {"start": 1540.04, "end": 1540.18, "word": " and", "probability": 0.90625}, {"start": 1540.18, "end": 1540.34, "word": " E", "probability": 0.8720703125}, {"start": 1540.34, "end": 1540.94, "word": " we", "probability": 0.822265625}, {"start": 1540.94, "end": 1541.3, "word": " put", "probability": 0.73779296875}, {"start": 1541.3, "end": 1541.86, "word": " list", "probability": 0.71435546875}, {"start": 1541.86, "end": 1542.36, "word": " of", "probability": 0.97265625}, {"start": 1542.36, "end": 1544.82, "word": " A", "probability": 0.51611328125}], "temperature": 1.0}, {"id": 61, "seek": 157582, "start": 1548.2, "end": 1575.82, "text": "listener list of what type? A listener means that this list can contain B, C and D as long as it is of the type of what? of the type of A listener this instead of who? of reference A from B, C and D that's it, I'm back to a list that has only one list now, I also had 6 B, 6 C and 6 D", "tokens": [8264, 7971, 1329, 295, 437, 2010, 30, 316, 1329, 7971, 1355, 300, 341, 1329, 393, 5304, 363, 11, 383, 293, 413, 382, 938, 382, 309, 307, 295, 264, 2010, 295, 437, 30, 295, 264, 2010, 295, 316, 1329, 7971, 341, 2602, 295, 567, 30, 295, 6408, 316, 490, 363, 11, 383, 293, 413, 300, 311, 309, 11, 286, 478, 646, 281, 257, 1329, 300, 575, 787, 472, 1329, 586, 11, 286, 611, 632, 1386, 363, 11, 1386, 383, 293, 1386, 413], "avg_logprob": -0.5754573199807144, "compression_ratio": 1.7212121212121212, "no_speech_prob": 1.5676021575927734e-05, "words": [{"start": 1548.2, "end": 1548.72, "word": "listener", "probability": 0.6461181640625}, {"start": 1548.72, "end": 1549.24, "word": " list", "probability": 0.402099609375}, {"start": 1549.24, "end": 1551.02, "word": " of", "probability": 0.130126953125}, {"start": 1551.02, "end": 1552.42, "word": " what", "probability": 0.46484375}, {"start": 1552.42, "end": 1552.42, "word": " type?", "probability": 0.448974609375}, {"start": 1553.24, "end": 1553.76, "word": " A", "probability": 0.6220703125}, {"start": 1553.76, "end": 1554.16, "word": " listener", "probability": 0.62060546875}, {"start": 1554.16, "end": 1554.68, "word": " means", "probability": 0.1531982421875}, {"start": 1554.68, "end": 1554.86, "word": " that", "probability": 0.45068359375}, {"start": 1554.86, "end": 1555.04, "word": " this", "probability": 0.74267578125}, {"start": 1555.04, "end": 1555.42, "word": " list", "probability": 0.87353515625}, {"start": 1555.42, "end": 1556.62, "word": " can", "probability": 0.767578125}, {"start": 1556.62, "end": 1557.08, "word": " contain", "probability": 0.312744140625}, {"start": 1557.08, "end": 1557.46, "word": " B,", "probability": 0.6513671875}, {"start": 1557.96, "end": 1558.26, "word": " C", "probability": 0.6220703125}, {"start": 1558.26, "end": 1558.72, "word": " and", "probability": 0.5859375}, {"start": 1558.72, "end": 1558.9, "word": " D", "probability": 0.994140625}, {"start": 1558.9, "end": 1559.3, "word": " as", "probability": 0.53369140625}, {"start": 1559.3, "end": 1559.36, "word": " long", "probability": 0.912109375}, {"start": 1559.36, "end": 1559.48, "word": " as", "probability": 0.94873046875}, {"start": 1559.48, "end": 1559.68, "word": " it", "probability": 0.77783203125}, {"start": 1559.68, "end": 1559.68, "word": " is", "probability": 0.62451171875}, {"start": 1559.68, "end": 1559.82, "word": " of", "probability": 0.77783203125}, {"start": 1559.82, "end": 1559.84, "word": " the", "probability": 0.2305908203125}, {"start": 1559.84, "end": 1560.0, "word": " type", "probability": 0.8466796875}, {"start": 1560.0, "end": 1560.06, "word": " of", "probability": 0.75048828125}, {"start": 1560.06, "end": 1560.28, "word": " what?", "probability": 0.3857421875}, {"start": 1561.12, "end": 1561.28, "word": " of", "probability": 0.4931640625}, {"start": 1561.28, "end": 1561.38, "word": " the", "probability": 0.6279296875}, {"start": 1561.38, "end": 1561.44, "word": " type", "probability": 0.9130859375}, {"start": 1561.44, "end": 1561.52, "word": " of", "probability": 0.88623046875}, {"start": 1561.52, "end": 1561.6, "word": " A", "probability": 0.89990234375}, {"start": 1561.6, "end": 1561.96, "word": " listener", "probability": 0.61138916015625}, {"start": 1561.96, "end": 1562.7, "word": " this", "probability": 0.474609375}, {"start": 1562.7, "end": 1563.02, "word": " instead", "probability": 0.357666015625}, {"start": 1563.02, "end": 1563.34, "word": " of", "probability": 0.95947265625}, {"start": 1563.34, "end": 1563.62, "word": " who?", "probability": 0.331787109375}, {"start": 1564.38, "end": 1564.64, "word": " of", "probability": 0.5244140625}, {"start": 1564.64, "end": 1565.34, "word": " reference", "probability": 0.471923828125}, {"start": 1565.34, "end": 1566.3, "word": " A", "probability": 0.5888671875}, {"start": 1566.3, "end": 1566.66, "word": " from", "probability": 0.6044921875}, {"start": 1566.66, "end": 1567.0, "word": " B,", "probability": 0.9736328125}, {"start": 1567.36, "end": 1567.6, "word": " C", "probability": 0.91015625}, {"start": 1567.6, "end": 1567.82, "word": " and", "probability": 0.859375}, {"start": 1567.82, "end": 1567.96, "word": " D", "probability": 0.99658203125}, {"start": 1567.96, "end": 1568.22, "word": " that's", "probability": 0.5068359375}, {"start": 1568.22, "end": 1568.28, "word": " it,", "probability": 0.86181640625}, {"start": 1568.36, "end": 1568.66, "word": " I'm", "probability": 0.4017333984375}, {"start": 1568.66, "end": 1568.88, "word": " back", "probability": 0.12152099609375}, {"start": 1568.88, "end": 1569.02, "word": " to", "probability": 0.75830078125}, {"start": 1569.02, "end": 1569.2, "word": " a", "probability": 0.51123046875}, {"start": 1569.2, "end": 1569.4, "word": " list", "probability": 0.9169921875}, {"start": 1569.4, "end": 1569.62, "word": " that", "probability": 0.162109375}, {"start": 1569.62, "end": 1569.8, "word": " has", "probability": 0.65380859375}, {"start": 1569.8, "end": 1570.32, "word": " only", "probability": 0.517578125}, {"start": 1570.32, "end": 1570.82, "word": " one", "probability": 0.9140625}, {"start": 1570.82, "end": 1571.08, "word": " list", "probability": 0.77685546875}, {"start": 1571.08, "end": 1572.02, "word": " now,", "probability": 0.65234375}, {"start": 1572.1, "end": 1572.48, "word": " I", "probability": 0.7529296875}, {"start": 1572.48, "end": 1572.86, "word": " also", "probability": 0.490478515625}, {"start": 1572.86, "end": 1572.86, "word": " had", "probability": 0.8798828125}, {"start": 1572.86, "end": 1573.1, "word": " 6", "probability": 0.0863037109375}, {"start": 1573.1, "end": 1574.44, "word": " B,", "probability": 0.46484375}, {"start": 1574.66, "end": 1574.88, "word": " 6", "probability": 0.84765625}, {"start": 1574.88, "end": 1575.16, "word": " C", "probability": 0.8369140625}, {"start": 1575.16, "end": 1575.34, "word": " and", "probability": 0.8154296875}, {"start": 1575.34, "end": 1575.48, "word": " 6", "probability": 0.97900390625}, {"start": 1575.48, "end": 1575.82, "word": " D", "probability": 0.9716796875}], "temperature": 1.0}, {"id": 62, "seek": 160180, "start": 1576.34, "end": 1601.8, "text": "Okay? Did you find it? No. Instead of them, you have to make one example called add a listener or add listener. What does this example take? It takes an object of the type of a listener. Why? You can take here, as long as it takes an object of the type of a listener, you can take any one of them, anything of the type of a listener. And actually, what you will take from here, you will take and add where?", "tokens": [8297, 30, 2589, 291, 915, 309, 30, 883, 13, 7156, 295, 552, 11, 291, 362, 281, 652, 472, 1365, 1219, 909, 257, 31569, 420, 909, 31569, 13, 708, 775, 341, 1365, 747, 30, 467, 2516, 364, 2657, 295, 264, 2010, 295, 257, 31569, 13, 1545, 30, 509, 393, 747, 510, 11, 382, 938, 382, 309, 2516, 364, 2657, 295, 264, 2010, 295, 257, 31569, 11, 291, 393, 747, 604, 472, 295, 552, 11, 1340, 295, 264, 2010, 295, 257, 31569, 13, 400, 767, 11, 437, 291, 486, 747, 490, 510, 11, 291, 486, 747, 293, 909, 689, 30], "avg_logprob": -0.46527777717571067, "compression_ratio": 1.961352657004831, "no_speech_prob": 2.0265579223632812e-06, "words": [{"start": 1576.34, "end": 1576.62, "word": "Okay?", "probability": 0.123779296875}, {"start": 1577.02, "end": 1577.28, "word": " Did", "probability": 0.13818359375}, {"start": 1577.28, "end": 1577.28, "word": " you", "probability": 0.7958984375}, {"start": 1577.28, "end": 1577.42, "word": " find", "probability": 0.419189453125}, {"start": 1577.42, "end": 1577.5, "word": " it?", "probability": 0.53564453125}, {"start": 1577.5, "end": 1577.62, "word": " No.", "probability": 0.48876953125}, {"start": 1577.7, "end": 1578.12, "word": " Instead", "probability": 0.72021484375}, {"start": 1578.12, "end": 1578.12, "word": " of", "probability": 0.444091796875}, {"start": 1578.12, "end": 1578.5, "word": " them,", "probability": 0.440185546875}, {"start": 1578.64, "end": 1578.66, "word": " you", "probability": 0.64990234375}, {"start": 1578.66, "end": 1578.8, "word": " have", "probability": 0.28076171875}, {"start": 1578.8, "end": 1578.84, "word": " to", "probability": 0.9697265625}, {"start": 1578.84, "end": 1579.0, "word": " make", "probability": 0.64892578125}, {"start": 1579.0, "end": 1579.44, "word": " one", "probability": 0.377197265625}, {"start": 1579.44, "end": 1579.44, "word": " example", "probability": 0.12396240234375}, {"start": 1579.44, "end": 1579.94, "word": " called", "probability": 0.2249755859375}, {"start": 1579.94, "end": 1580.58, "word": " add", "probability": 0.251953125}, {"start": 1580.58, "end": 1581.74, "word": " a", "probability": 0.172119140625}, {"start": 1581.74, "end": 1582.72, "word": " listener", "probability": 0.89453125}, {"start": 1582.72, "end": 1582.94, "word": " or", "probability": 0.75146484375}, {"start": 1582.94, "end": 1583.14, "word": " add", "probability": 0.91064453125}, {"start": 1583.14, "end": 1583.48, "word": " listener.", "probability": 0.828125}, {"start": 1585.44, "end": 1585.88, "word": " What", "probability": 0.414306640625}, {"start": 1585.88, "end": 1585.88, "word": " does", "probability": 0.7001953125}, {"start": 1585.88, "end": 1586.2, "word": " this", "probability": 0.90771484375}, {"start": 1586.2, "end": 1586.48, "word": " example", "probability": 0.85986328125}, {"start": 1586.48, "end": 1587.02, "word": " take?", "probability": 0.68017578125}, {"start": 1587.1, "end": 1587.2, "word": " It", "probability": 0.85498046875}, {"start": 1587.2, "end": 1587.44, "word": " takes", "probability": 0.8056640625}, {"start": 1587.44, "end": 1587.58, "word": " an", "probability": 0.736328125}, {"start": 1587.58, "end": 1587.82, "word": " object", "probability": 0.96484375}, {"start": 1587.82, "end": 1587.98, "word": " of", "probability": 0.78955078125}, {"start": 1587.98, "end": 1588.48, "word": " the", "probability": 0.68994140625}, {"start": 1588.48, "end": 1588.48, "word": " type", "probability": 0.42431640625}, {"start": 1588.48, "end": 1588.7, "word": " of", "probability": 0.3095703125}, {"start": 1588.7, "end": 1588.74, "word": " a", "probability": 0.53857421875}, {"start": 1588.74, "end": 1589.88, "word": " listener.", "probability": 0.84033203125}, {"start": 1590.54, "end": 1590.98, "word": " Why?", "probability": 0.80712890625}, {"start": 1591.18, "end": 1591.4, "word": " You", "probability": 0.55126953125}, {"start": 1591.4, "end": 1591.6, "word": " can", "probability": 0.92724609375}, {"start": 1591.6, "end": 1591.92, "word": " take", "probability": 0.87939453125}, {"start": 1591.92, "end": 1592.18, "word": " here,", "probability": 0.65869140625}, {"start": 1592.82, "end": 1593.0, "word": " as", "probability": 0.411865234375}, {"start": 1593.0, "end": 1593.1, "word": " long", "probability": 0.82666015625}, {"start": 1593.1, "end": 1593.1, "word": " as", "probability": 0.9677734375}, {"start": 1593.1, "end": 1593.24, "word": " it", "probability": 0.84375}, {"start": 1593.24, "end": 1593.46, "word": " takes", "probability": 0.62353515625}, {"start": 1593.46, "end": 1593.6, "word": " an", "probability": 0.29052734375}, {"start": 1593.6, "end": 1593.6, "word": " object", "probability": 0.54833984375}, {"start": 1593.6, "end": 1593.6, "word": " of", "probability": 0.94189453125}, {"start": 1593.6, "end": 1593.7, "word": " the", "probability": 0.82666015625}, {"start": 1593.7, "end": 1593.72, "word": " type", "probability": 0.94873046875}, {"start": 1593.72, "end": 1593.78, "word": " of", "probability": 0.9462890625}, {"start": 1593.78, "end": 1593.9, "word": " a", "probability": 0.90966796875}, {"start": 1593.9, "end": 1594.14, "word": " listener,", "probability": 0.81396484375}, {"start": 1594.62, "end": 1594.72, "word": " you", "probability": 0.77490234375}, {"start": 1594.72, "end": 1595.02, "word": " can", "probability": 0.93994140625}, {"start": 1595.02, "end": 1595.38, "word": " take", "probability": 0.8544921875}, {"start": 1595.38, "end": 1595.64, "word": " any", "probability": 0.78515625}, {"start": 1595.64, "end": 1595.9, "word": " one", "probability": 0.634765625}, {"start": 1595.9, "end": 1596.1, "word": " of", "probability": 0.9462890625}, {"start": 1596.1, "end": 1596.36, "word": " them,", "probability": 0.5810546875}, {"start": 1596.44, "end": 1596.78, "word": " anything", "probability": 0.55224609375}, {"start": 1596.78, "end": 1597.04, "word": " of", "probability": 0.86279296875}, {"start": 1597.04, "end": 1597.4, "word": " the", "probability": 0.88037109375}, {"start": 1597.4, "end": 1597.4, "word": " type", "probability": 0.95947265625}, {"start": 1597.4, "end": 1598.28, "word": " of", "probability": 0.83544921875}, {"start": 1598.28, "end": 1598.46, "word": " a", "probability": 0.9443359375}, {"start": 1598.46, "end": 1598.7, "word": " listener.", "probability": 0.818359375}, {"start": 1599.04, "end": 1599.26, "word": " And", "probability": 0.873046875}, {"start": 1599.26, "end": 1599.56, "word": " actually,", "probability": 0.48876953125}, {"start": 1599.84, "end": 1599.96, "word": " what", "probability": 0.75439453125}, {"start": 1599.96, "end": 1600.16, "word": " you", "probability": 0.84814453125}, {"start": 1600.16, "end": 1600.18, "word": " will", "probability": 0.388916015625}, {"start": 1600.18, "end": 1600.4, "word": " take", "probability": 0.79638671875}, {"start": 1600.4, "end": 1600.54, "word": " from", "probability": 0.84033203125}, {"start": 1600.54, "end": 1600.78, "word": " here,", "probability": 0.8564453125}, {"start": 1600.86, "end": 1601.0, "word": " you", "probability": 0.50048828125}, {"start": 1601.0, "end": 1601.02, "word": " will", "probability": 0.826171875}, {"start": 1601.02, "end": 1601.16, "word": " take", "probability": 0.429931640625}, {"start": 1601.16, "end": 1601.32, "word": " and", "probability": 0.84912109375}, {"start": 1601.32, "end": 1601.48, "word": " add", "probability": 0.91015625}, {"start": 1601.48, "end": 1601.8, "word": " where?", "probability": 0.456298828125}], "temperature": 1.0}, {"id": 63, "seek": 162161, "start": 1603.79, "end": 1621.61, "text": "So the idea here is to make this A accept his dependencies, but he will accept them as an A listener. He will stop dealing with them as A, B, C or D. He started seeing them as one type, which is an A listener.", "tokens": [6455, 264, 1558, 510, 307, 281, 652, 341, 316, 3241, 702, 36606, 11, 457, 415, 486, 3241, 552, 382, 364, 316, 31569, 13, 634, 486, 1590, 6260, 365, 552, 382, 316, 11, 363, 11, 383, 420, 413, 13, 634, 1409, 2577, 552, 382, 472, 2010, 11, 597, 307, 364, 316, 31569, 13], "avg_logprob": -0.5610259343992989, "compression_ratio": 1.5144927536231885, "no_speech_prob": 1.531839370727539e-05, "words": [{"start": 1603.7900000000002, "end": 1604.39, "word": "So", "probability": 0.11224365234375}, {"start": 1604.39, "end": 1604.55, "word": " the", "probability": 0.55224609375}, {"start": 1604.55, "end": 1604.85, "word": " idea", "probability": 0.8291015625}, {"start": 1604.85, "end": 1605.07, "word": " here", "probability": 0.197509765625}, {"start": 1605.07, "end": 1605.45, "word": " is", "probability": 0.78515625}, {"start": 1605.45, "end": 1605.63, "word": " to", "probability": 0.5703125}, {"start": 1605.63, "end": 1605.91, "word": " make", "probability": 0.419189453125}, {"start": 1605.91, "end": 1606.33, "word": " this", "probability": 0.325927734375}, {"start": 1606.33, "end": 1606.55, "word": " A", "probability": 0.5986328125}, {"start": 1606.55, "end": 1607.45, "word": " accept", "probability": 0.412109375}, {"start": 1607.45, "end": 1608.47, "word": " his", "probability": 0.587890625}, {"start": 1608.47, "end": 1609.23, "word": " dependencies,", "probability": 0.75537109375}, {"start": 1609.97, "end": 1610.13, "word": " but", "probability": 0.82568359375}, {"start": 1610.13, "end": 1610.23, "word": " he", "probability": 0.271484375}, {"start": 1610.23, "end": 1610.29, "word": " will", "probability": 0.453125}, {"start": 1610.29, "end": 1610.61, "word": " accept", "probability": 0.67822265625}, {"start": 1610.61, "end": 1610.79, "word": " them", "probability": 0.79833984375}, {"start": 1610.79, "end": 1611.19, "word": " as", "probability": 0.44775390625}, {"start": 1611.19, "end": 1611.43, "word": " an", "probability": 0.2939453125}, {"start": 1611.43, "end": 1611.55, "word": " A", "probability": 0.79443359375}, {"start": 1611.55, "end": 1612.63, "word": " listener.", "probability": 0.69970703125}, {"start": 1612.81, "end": 1613.31, "word": " He", "probability": 0.69140625}, {"start": 1613.31, "end": 1613.41, "word": " will", "probability": 0.7666015625}, {"start": 1613.41, "end": 1613.69, "word": " stop", "probability": 0.78076171875}, {"start": 1613.69, "end": 1614.03, "word": " dealing", "probability": 0.38623046875}, {"start": 1614.03, "end": 1614.19, "word": " with", "probability": 0.8876953125}, {"start": 1614.19, "end": 1614.31, "word": " them", "probability": 0.8798828125}, {"start": 1614.31, "end": 1614.49, "word": " as", "probability": 0.845703125}, {"start": 1614.49, "end": 1615.05, "word": " A,", "probability": 0.495361328125}, {"start": 1615.23, "end": 1615.75, "word": " B,", "probability": 0.8515625}, {"start": 1616.23, "end": 1616.55, "word": " C", "probability": 0.92529296875}, {"start": 1616.55, "end": 1616.85, "word": " or", "probability": 0.399169921875}, {"start": 1616.85, "end": 1617.21, "word": " D.", "probability": 0.98291015625}, {"start": 1617.81, "end": 1618.41, "word": " He", "probability": 0.311279296875}, {"start": 1618.41, "end": 1618.81, "word": " started", "probability": 0.2144775390625}, {"start": 1618.81, "end": 1619.11, "word": " seeing", "probability": 0.468994140625}, {"start": 1619.11, "end": 1619.27, "word": " them", "probability": 0.89599609375}, {"start": 1619.27, "end": 1619.47, "word": " as", "probability": 0.92236328125}, {"start": 1619.47, "end": 1620.03, "word": " one", "probability": 0.56103515625}, {"start": 1620.03, "end": 1620.07, "word": " type,", "probability": 0.70947265625}, {"start": 1620.57, "end": 1621.05, "word": " which", "probability": 0.5869140625}, {"start": 1621.05, "end": 1621.21, "word": " is", "probability": 0.8935546875}, {"start": 1621.21, "end": 1621.29, "word": " an", "probability": 0.449951171875}, {"start": 1621.29, "end": 1621.39, "word": " A", "probability": 0.9873046875}, {"start": 1621.39, "end": 1621.61, "word": " listener.", "probability": 0.82080078125}], "temperature": 1.0}, {"id": 64, "seek": 165084, "start": 1622.58, "end": 1650.84, "text": "Okay, did you notice that inside A there is a method called send data, right? Because what does it do? It goes to B and says data received, and to C it says data received, right? Did you notice? No, did you notice? It loops to the list and says data received for each one of them. Now, what is the advantage of this design? Of course, there is a relationship between A and the type of interface. This is the relationship of associations.", "tokens": [8297, 11, 630, 291, 3449, 300, 1854, 316, 456, 307, 257, 3170, 1219, 2845, 1412, 11, 558, 30, 1436, 437, 775, 309, 360, 30, 467, 1709, 281, 363, 293, 1619, 1412, 4613, 11, 293, 281, 383, 309, 1619, 1412, 4613, 11, 558, 30, 2589, 291, 3449, 30, 883, 11, 630, 291, 3449, 30, 467, 16121, 281, 264, 1329, 293, 1619, 1412, 4613, 337, 1184, 472, 295, 552, 13, 823, 11, 437, 307, 264, 5002, 295, 341, 1715, 30, 2720, 1164, 11, 456, 307, 257, 2480, 1296, 316, 293, 264, 2010, 295, 9226, 13, 639, 307, 264, 2480, 295, 26597, 13], "avg_logprob": -0.390779706511167, "compression_ratio": 1.8516949152542372, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1622.58, "end": 1622.96, "word": "Okay,", "probability": 0.2325439453125}, {"start": 1623.08, "end": 1623.22, "word": " did", "probability": 0.626953125}, {"start": 1623.22, "end": 1623.36, "word": " you", "probability": 0.962890625}, {"start": 1623.36, "end": 1623.36, "word": " notice", "probability": 0.41162109375}, {"start": 1623.36, "end": 1623.6, "word": " that", "probability": 0.392578125}, {"start": 1623.6, "end": 1623.6, "word": " inside", "probability": 0.338134765625}, {"start": 1623.6, "end": 1624.0, "word": " A", "probability": 0.4814453125}, {"start": 1624.0, "end": 1624.4, "word": " there", "probability": 0.56494140625}, {"start": 1624.4, "end": 1624.48, "word": " is", "probability": 0.6142578125}, {"start": 1624.48, "end": 1624.54, "word": " a", "probability": 0.876953125}, {"start": 1624.54, "end": 1624.78, "word": " method", "probability": 0.9130859375}, {"start": 1624.78, "end": 1625.08, "word": " called", "probability": 0.748046875}, {"start": 1625.08, "end": 1625.38, "word": " send", "probability": 0.39892578125}, {"start": 1625.38, "end": 1625.78, "word": " data,", "probability": 0.65966796875}, {"start": 1626.42, "end": 1626.52, "word": " right?", "probability": 0.607421875}, {"start": 1626.66, "end": 1626.76, "word": " Because", "probability": 0.615234375}, {"start": 1626.76, "end": 1627.02, "word": " what", "probability": 0.459716796875}, {"start": 1627.02, "end": 1627.16, "word": " does", "probability": 0.287109375}, {"start": 1627.16, "end": 1627.38, "word": " it", "probability": 0.8212890625}, {"start": 1627.38, "end": 1627.72, "word": " do?", "probability": 0.923828125}, {"start": 1627.94, "end": 1628.36, "word": " It", "probability": 0.77978515625}, {"start": 1628.36, "end": 1628.6, "word": " goes", "probability": 0.82568359375}, {"start": 1628.6, "end": 1628.8, "word": " to", "probability": 0.94580078125}, {"start": 1628.8, "end": 1629.44, "word": " B", "probability": 0.8125}, {"start": 1629.44, "end": 1629.7, "word": " and", "probability": 0.82373046875}, {"start": 1629.7, "end": 1629.98, "word": " says", "probability": 0.289794921875}, {"start": 1629.98, "end": 1630.62, "word": " data", "probability": 0.4990234375}, {"start": 1630.62, "end": 1631.1, "word": " received,", "probability": 0.7998046875}, {"start": 1631.24, "end": 1631.38, "word": " and", "probability": 0.82275390625}, {"start": 1631.38, "end": 1631.42, "word": " to", "probability": 0.67333984375}, {"start": 1631.42, "end": 1631.76, "word": " C", "probability": 0.9658203125}, {"start": 1631.76, "end": 1631.88, "word": " it", "probability": 0.4501953125}, {"start": 1631.88, "end": 1632.04, "word": " says", "probability": 0.78466796875}, {"start": 1632.04, "end": 1632.28, "word": " data", "probability": 0.89208984375}, {"start": 1632.28, "end": 1632.8, "word": " received,", "probability": 0.7958984375}, {"start": 1633.3, "end": 1633.54, "word": " right?", "probability": 0.82763671875}, {"start": 1633.94, "end": 1634.42, "word": " Did", "probability": 0.57666015625}, {"start": 1634.42, "end": 1634.46, "word": " you", "probability": 0.95947265625}, {"start": 1634.46, "end": 1634.62, "word": " notice?", "probability": 0.6875}, {"start": 1634.74, "end": 1634.84, "word": " No,", "probability": 0.62158203125}, {"start": 1634.9, "end": 1635.06, "word": " did", "probability": 0.7666015625}, {"start": 1635.06, "end": 1635.06, "word": " you", "probability": 0.9677734375}, {"start": 1635.06, "end": 1635.16, "word": " notice?", "probability": 0.8896484375}, {"start": 1635.22, "end": 1635.34, "word": " It", "probability": 0.828125}, {"start": 1635.34, "end": 1636.06, "word": " loops", "probability": 0.3955078125}, {"start": 1636.06, "end": 1637.32, "word": " to", "probability": 0.353515625}, {"start": 1637.32, "end": 1637.38, "word": " the", "probability": 0.5556640625}, {"start": 1637.38, "end": 1637.72, "word": " list", "probability": 0.90380859375}, {"start": 1637.72, "end": 1638.02, "word": " and", "probability": 0.82177734375}, {"start": 1638.02, "end": 1638.24, "word": " says", "probability": 0.5947265625}, {"start": 1638.24, "end": 1638.5, "word": " data", "probability": 0.89404296875}, {"start": 1638.5, "end": 1638.96, "word": " received", "probability": 0.81201171875}, {"start": 1638.96, "end": 1639.18, "word": " for", "probability": 0.619140625}, {"start": 1639.18, "end": 1639.4, "word": " each", "probability": 0.8642578125}, {"start": 1639.4, "end": 1640.48, "word": " one", "probability": 0.58056640625}, {"start": 1640.48, "end": 1640.6, "word": " of", "probability": 0.84033203125}, {"start": 1640.6, "end": 1641.2, "word": " them.", "probability": 0.88232421875}, {"start": 1642.16, "end": 1642.64, "word": " Now,", "probability": 0.58154296875}, {"start": 1642.76, "end": 1643.1, "word": " what", "probability": 0.93701171875}, {"start": 1643.1, "end": 1643.14, "word": " is", "probability": 0.73583984375}, {"start": 1643.14, "end": 1643.24, "word": " the", "probability": 0.7333984375}, {"start": 1643.24, "end": 1643.44, "word": " advantage", "probability": 0.6787109375}, {"start": 1643.44, "end": 1643.56, "word": " of", "probability": 0.72900390625}, {"start": 1643.56, "end": 1643.66, "word": " this", "probability": 0.93505859375}, {"start": 1643.66, "end": 1644.02, "word": " design?", "probability": 0.970703125}, {"start": 1644.36, "end": 1644.74, "word": " Of", "probability": 0.802734375}, {"start": 1644.74, "end": 1644.88, "word": " course,", "probability": 0.95947265625}, {"start": 1645.24, "end": 1645.8, "word": " there", "probability": 0.8125}, {"start": 1645.8, "end": 1645.9, "word": " is", "probability": 0.849609375}, {"start": 1645.9, "end": 1646.08, "word": " a", "probability": 0.87744140625}, {"start": 1646.08, "end": 1646.4, "word": " relationship", "probability": 0.64697265625}, {"start": 1646.4, "end": 1646.66, "word": " between", "probability": 0.89453125}, {"start": 1646.66, "end": 1647.06, "word": " A", "probability": 0.87451171875}, {"start": 1647.06, "end": 1648.38, "word": " and", "probability": 0.93896484375}, {"start": 1648.38, "end": 1648.62, "word": " the", "probability": 0.796875}, {"start": 1648.62, "end": 1648.62, "word": " type", "probability": 0.50537109375}, {"start": 1648.62, "end": 1648.7, "word": " of", "probability": 0.97119140625}, {"start": 1648.7, "end": 1649.3, "word": " interface.", "probability": 0.8115234375}, {"start": 1649.72, "end": 1649.9, "word": " This", "probability": 0.71826171875}, {"start": 1649.9, "end": 1649.96, "word": " is", "probability": 0.90478515625}, {"start": 1649.96, "end": 1650.0, "word": " the", "probability": 0.489501953125}, {"start": 1650.0, "end": 1650.18, "word": " relationship", "probability": 0.83544921875}, {"start": 1650.18, "end": 1650.3, "word": " of", "probability": 0.7958984375}, {"start": 1650.3, "end": 1650.84, "word": " associations.", "probability": 0.740234375}], "temperature": 1.0}, {"id": 65, "seek": 167007, "start": 1652.01, "end": 1670.07, "text": "I'm dealing with a list of A's to C's But there is no relationship between A, B, C, D and E My relationship is only with A to C This means that when I want to add a new element that belongs to A", "tokens": [40, 478, 6260, 365, 257, 1329, 295, 316, 311, 281, 383, 311, 583, 456, 307, 572, 2480, 1296, 316, 11, 363, 11, 383, 11, 413, 293, 462, 1222, 2480, 307, 787, 365, 316, 281, 383, 639, 1355, 300, 562, 286, 528, 281, 909, 257, 777, 4478, 300, 12953, 281, 316], "avg_logprob": -0.4531249988312815, "compression_ratio": 1.375886524822695, "no_speech_prob": 5.245208740234375e-06, "words": [{"start": 1652.01, "end": 1652.57, "word": "I'm", "probability": 0.3868408203125}, {"start": 1652.57, "end": 1653.05, "word": " dealing", "probability": 0.78662109375}, {"start": 1653.05, "end": 1654.01, "word": " with", "probability": 0.89404296875}, {"start": 1654.01, "end": 1654.11, "word": " a", "probability": 0.386474609375}, {"start": 1654.11, "end": 1654.33, "word": " list", "probability": 0.88232421875}, {"start": 1654.33, "end": 1654.51, "word": " of", "probability": 0.397705078125}, {"start": 1654.51, "end": 1655.95, "word": " A's", "probability": 0.4166259765625}, {"start": 1655.95, "end": 1655.97, "word": " to", "probability": 0.202880859375}, {"start": 1655.97, "end": 1656.37, "word": " C's", "probability": 0.4676513671875}, {"start": 1656.37, "end": 1657.03, "word": " But", "probability": 0.3408203125}, {"start": 1657.03, "end": 1657.41, "word": " there", "probability": 0.5693359375}, {"start": 1657.41, "end": 1657.49, "word": " is", "probability": 0.369873046875}, {"start": 1657.49, "end": 1657.95, "word": " no", "probability": 0.7890625}, {"start": 1657.95, "end": 1658.35, "word": " relationship", "probability": 0.414794921875}, {"start": 1658.35, "end": 1658.53, "word": " between", "probability": 0.84912109375}, {"start": 1658.53, "end": 1658.97, "word": " A,", "probability": 0.88134765625}, {"start": 1659.59, "end": 1660.41, "word": " B,", "probability": 0.6259765625}, {"start": 1660.75, "end": 1661.05, "word": " C,", "probability": 0.89501953125}, {"start": 1661.31, "end": 1661.53, "word": " D", "probability": 0.94287109375}, {"start": 1661.53, "end": 1661.77, "word": " and", "probability": 0.67822265625}, {"start": 1661.77, "end": 1661.99, "word": " E", "probability": 0.92822265625}, {"start": 1661.99, "end": 1662.41, "word": " My", "probability": 0.490234375}, {"start": 1662.41, "end": 1662.73, "word": " relationship", "probability": 0.7578125}, {"start": 1662.73, "end": 1662.97, "word": " is", "probability": 0.78857421875}, {"start": 1662.97, "end": 1662.99, "word": " only", "probability": 0.63916015625}, {"start": 1662.99, "end": 1663.17, "word": " with", "probability": 0.8603515625}, {"start": 1663.17, "end": 1664.87, "word": " A", "probability": 0.53515625}, {"start": 1664.87, "end": 1665.09, "word": " to", "probability": 0.833984375}, {"start": 1665.09, "end": 1665.23, "word": " C", "probability": 0.96240234375}, {"start": 1665.23, "end": 1666.85, "word": " This", "probability": 0.3701171875}, {"start": 1666.85, "end": 1667.21, "word": " means", "probability": 0.880859375}, {"start": 1667.21, "end": 1667.59, "word": " that", "probability": 0.80908203125}, {"start": 1667.59, "end": 1667.85, "word": " when", "probability": 0.630859375}, {"start": 1667.85, "end": 1667.93, "word": " I", "probability": 0.93798828125}, {"start": 1667.93, "end": 1668.15, "word": " want", "probability": 0.64697265625}, {"start": 1668.15, "end": 1668.19, "word": " to", "probability": 0.96923828125}, {"start": 1668.19, "end": 1668.35, "word": " add", "probability": 0.91845703125}, {"start": 1668.35, "end": 1668.51, "word": " a", "probability": 0.81982421875}, {"start": 1668.51, "end": 1669.05, "word": " new", "probability": 0.8935546875}, {"start": 1669.05, "end": 1669.05, "word": " element", "probability": 0.7919921875}, {"start": 1669.05, "end": 1669.27, "word": " that", "probability": 0.4306640625}, {"start": 1669.27, "end": 1669.57, "word": " belongs", "probability": 0.28662109375}, {"start": 1669.57, "end": 1669.75, "word": " to", "probability": 0.97265625}, {"start": 1669.75, "end": 1670.07, "word": " A", "probability": 0.939453125}], "temperature": 1.0}, {"id": 66, "seek": 170208, "start": 1673.04, "end": 1702.08, "text": " I'm not going to change anything in A I'm going to tell him this is a new element and all you have to do is go from it to A lesson and I take it and put it somewhere in this list to understand better let's apply this existing solution because I skipped A completely there is no relation between objects A, B, C and D okay? okay, I went to A now we want to do the first step of the interface that you see okay? we come here inside class A", "tokens": [286, 478, 406, 516, 281, 1319, 1340, 294, 316, 286, 478, 516, 281, 980, 796, 341, 307, 257, 777, 4478, 293, 439, 291, 362, 281, 360, 307, 352, 490, 309, 281, 316, 6898, 293, 286, 747, 309, 293, 829, 309, 4079, 294, 341, 1329, 281, 1223, 1101, 718, 311, 3079, 341, 6741, 3827, 570, 286, 30193, 316, 2584, 456, 307, 572, 9721, 1296, 6565, 316, 11, 363, 11, 383, 293, 413, 1392, 30, 1392, 11, 286, 1437, 281, 316, 586, 321, 528, 281, 360, 264, 700, 1823, 295, 264, 9226, 300, 291, 536, 1392, 30, 321, 808, 510, 1854, 1508, 316], "avg_logprob": -0.5033700863520304, "compression_ratio": 1.6781609195402298, "no_speech_prob": 1.3232231140136719e-05, "words": [{"start": 1673.04, "end": 1673.32, "word": " I'm", "probability": 0.3826904296875}, {"start": 1673.32, "end": 1673.44, "word": " not", "probability": 0.9091796875}, {"start": 1673.44, "end": 1673.54, "word": " going", "probability": 0.4423828125}, {"start": 1673.54, "end": 1673.78, "word": " to", "probability": 0.97021484375}, {"start": 1673.78, "end": 1673.78, "word": " change", "probability": 0.79638671875}, {"start": 1673.78, "end": 1674.1, "word": " anything", "probability": 0.7626953125}, {"start": 1674.1, "end": 1674.26, "word": " in", "probability": 0.75830078125}, {"start": 1674.26, "end": 1674.42, "word": " A", "probability": 0.28173828125}, {"start": 1674.42, "end": 1674.58, "word": " I'm", "probability": 0.5048828125}, {"start": 1674.58, "end": 1674.62, "word": " going", "probability": 0.6279296875}, {"start": 1674.62, "end": 1674.62, "word": " to", "probability": 0.96875}, {"start": 1674.62, "end": 1674.74, "word": " tell", "probability": 0.45947265625}, {"start": 1674.74, "end": 1674.84, "word": " him", "probability": 0.544921875}, {"start": 1674.84, "end": 1675.12, "word": " this", "probability": 0.2320556640625}, {"start": 1675.12, "end": 1675.22, "word": " is", "probability": 0.73974609375}, {"start": 1675.22, "end": 1675.92, "word": " a", "probability": 0.51123046875}, {"start": 1675.92, "end": 1676.02, "word": " new", "probability": 0.89453125}, {"start": 1676.02, "end": 1676.02, "word": " element", "probability": 0.84326171875}, {"start": 1676.02, "end": 1676.36, "word": " and", "probability": 0.2435302734375}, {"start": 1676.36, "end": 1676.46, "word": " all", "probability": 0.55029296875}, {"start": 1676.46, "end": 1676.78, "word": " you", "probability": 0.85791015625}, {"start": 1676.78, "end": 1676.86, "word": " have", "probability": 0.69140625}, {"start": 1676.86, "end": 1676.86, "word": " to", "probability": 0.96826171875}, {"start": 1676.86, "end": 1677.04, "word": " do", "probability": 0.95068359375}, {"start": 1677.04, "end": 1677.28, "word": " is", "probability": 0.90283203125}, {"start": 1677.28, "end": 1677.68, "word": " go", "probability": 0.1173095703125}, {"start": 1677.68, "end": 1677.8, "word": " from", "probability": 0.80419921875}, {"start": 1677.8, "end": 1678.22, "word": " it", "probability": 0.466796875}, {"start": 1678.22, "end": 1678.78, "word": " to", "probability": 0.87353515625}, {"start": 1678.78, "end": 1678.96, "word": " A", "probability": 0.211181640625}, {"start": 1678.96, "end": 1679.18, "word": " lesson", "probability": 0.26171875}, {"start": 1679.18, "end": 1679.94, "word": " and", "probability": 0.381103515625}, {"start": 1679.94, "end": 1680.16, "word": " I", "probability": 0.44482421875}, {"start": 1680.16, "end": 1680.36, "word": " take", "probability": 0.3349609375}, {"start": 1680.36, "end": 1680.44, "word": " it", "probability": 0.7373046875}, {"start": 1680.44, "end": 1680.54, "word": " and", "probability": 0.890625}, {"start": 1680.54, "end": 1680.82, "word": " put", "probability": 0.492919921875}, {"start": 1680.82, "end": 1680.92, "word": " it", "probability": 0.90673828125}, {"start": 1680.92, "end": 1681.12, "word": " somewhere", "probability": 0.447509765625}, {"start": 1681.12, "end": 1681.84, "word": " in", "probability": 0.7919921875}, {"start": 1681.84, "end": 1681.94, "word": " this", "probability": 0.7880859375}, {"start": 1681.94, "end": 1682.24, "word": " list", "probability": 0.90380859375}, {"start": 1682.24, "end": 1683.28, "word": " to", "probability": 0.34423828125}, {"start": 1683.28, "end": 1683.62, "word": " understand", "probability": 0.492431640625}, {"start": 1683.62, "end": 1683.94, "word": " better", "probability": 0.43408203125}, {"start": 1683.94, "end": 1684.22, "word": " let's", "probability": 0.72802734375}, {"start": 1684.22, "end": 1684.56, "word": " apply", "probability": 0.740234375}, {"start": 1684.56, "end": 1684.78, "word": " this", "probability": 0.54833984375}, {"start": 1684.78, "end": 1686.52, "word": " existing", "probability": 0.439208984375}, {"start": 1686.52, "end": 1686.52, "word": " solution", "probability": 0.8984375}, {"start": 1686.52, "end": 1687.86, "word": " because", "probability": 0.75537109375}, {"start": 1687.86, "end": 1688.14, "word": " I", "probability": 0.90576171875}, {"start": 1688.14, "end": 1688.38, "word": " skipped", "probability": 0.50830078125}, {"start": 1688.38, "end": 1688.84, "word": " A", "probability": 0.65673828125}, {"start": 1688.84, "end": 1689.62, "word": " completely", "probability": 0.380859375}, {"start": 1689.62, "end": 1690.38, "word": " there", "probability": 0.55517578125}, {"start": 1690.38, "end": 1690.52, "word": " is", "probability": 0.66650390625}, {"start": 1690.52, "end": 1690.72, "word": " no", "probability": 0.86181640625}, {"start": 1690.72, "end": 1691.1, "word": " relation", "probability": 0.488525390625}, {"start": 1691.1, "end": 1691.42, "word": " between", "probability": 0.86279296875}, {"start": 1691.42, "end": 1691.94, "word": " objects", "probability": 0.72119140625}, {"start": 1691.94, "end": 1692.3, "word": " A,", "probability": 0.91357421875}, {"start": 1692.42, "end": 1692.6, "word": " B,", "probability": 0.736328125}, {"start": 1692.8, "end": 1692.94, "word": " C", "probability": 0.94091796875}, {"start": 1692.94, "end": 1693.1, "word": " and", "probability": 0.55419921875}, {"start": 1693.1, "end": 1693.32, "word": " D", "probability": 0.99755859375}, {"start": 1693.32, "end": 1694.02, "word": " okay?", "probability": 0.303955078125}, {"start": 1694.66, "end": 1695.12, "word": " okay,", "probability": 0.461181640625}, {"start": 1695.24, "end": 1695.62, "word": " I", "probability": 0.280029296875}, {"start": 1695.62, "end": 1695.8, "word": " went", "probability": 0.485107421875}, {"start": 1695.8, "end": 1695.96, "word": " to", "probability": 0.95654296875}, {"start": 1695.96, "end": 1696.2, "word": " A", "probability": 0.93603515625}, {"start": 1696.2, "end": 1696.54, "word": " now", "probability": 0.78466796875}, {"start": 1696.54, "end": 1696.7, "word": " we", "probability": 0.388916015625}, {"start": 1696.7, "end": 1696.82, "word": " want", "probability": 0.371826171875}, {"start": 1696.82, "end": 1696.96, "word": " to", "probability": 0.9677734375}, {"start": 1696.96, "end": 1697.12, "word": " do", "probability": 0.499755859375}, {"start": 1697.12, "end": 1697.46, "word": " the", "probability": 0.86962890625}, {"start": 1697.46, "end": 1697.46, "word": " first", "probability": 0.8779296875}, {"start": 1697.46, "end": 1697.68, "word": " step", "probability": 0.54150390625}, {"start": 1697.68, "end": 1697.82, "word": " of", "probability": 0.798828125}, {"start": 1697.82, "end": 1697.86, "word": " the", "probability": 0.7958984375}, {"start": 1697.86, "end": 1698.32, "word": " interface", "probability": 0.88330078125}, {"start": 1698.32, "end": 1698.46, "word": " that", "probability": 0.548828125}, {"start": 1698.46, "end": 1698.52, "word": " you", "probability": 0.53564453125}, {"start": 1698.52, "end": 1698.84, "word": " see", "probability": 0.82470703125}, {"start": 1698.84, "end": 1699.94, "word": " okay?", "probability": 0.7138671875}, {"start": 1700.46, "end": 1700.68, "word": " we", "probability": 0.7451171875}, {"start": 1700.68, "end": 1700.86, "word": " come", "probability": 0.4072265625}, {"start": 1700.86, "end": 1701.14, "word": " here", "probability": 0.71044921875}, {"start": 1701.14, "end": 1701.38, "word": " inside", "probability": 0.72265625}, {"start": 1701.38, "end": 1701.82, "word": " class", "probability": 0.63427734375}, {"start": 1701.82, "end": 1702.08, "word": " A", "probability": 0.9775390625}], "temperature": 1.0}, {"id": 67, "seek": 173193, "start": 1702.89, "end": 1731.93, "text": "The interface can be done in an external file or inside the A The best thing here is to make an interface inside the class Why? Because this is related to the A So for people who want to listen to the A, they need to implement this interface We put it inside the A, so when you use it in another application, you take with you its interface So I want to call it public interface I want to call it A listener", "tokens": [2278, 9226, 393, 312, 1096, 294, 364, 8320, 3991, 420, 1854, 264, 316, 440, 1151, 551, 510, 307, 281, 652, 364, 9226, 1854, 264, 1508, 1545, 30, 1436, 341, 307, 4077, 281, 264, 316, 407, 337, 561, 567, 528, 281, 2140, 281, 264, 316, 11, 436, 643, 281, 4445, 341, 9226, 492, 829, 309, 1854, 264, 316, 11, 370, 562, 291, 764, 309, 294, 1071, 3861, 11, 291, 747, 365, 291, 1080, 9226, 407, 286, 528, 281, 818, 309, 1908, 9226, 286, 528, 281, 818, 309, 316, 31569], "avg_logprob": -0.5572331192788114, "compression_ratio": 1.8584474885844748, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 1702.89, "end": 1703.21, "word": "The", "probability": 0.0875244140625}, {"start": 1703.21, "end": 1703.59, "word": " interface", "probability": 0.75244140625}, {"start": 1703.59, "end": 1703.83, "word": " can", "probability": 0.480712890625}, {"start": 1703.83, "end": 1704.05, "word": " be", "probability": 0.8798828125}, {"start": 1704.05, "end": 1704.15, "word": " done", "probability": 0.339599609375}, {"start": 1704.15, "end": 1704.27, "word": " in", "probability": 0.463134765625}, {"start": 1704.27, "end": 1704.73, "word": " an", "probability": 0.29052734375}, {"start": 1704.73, "end": 1704.73, "word": " external", "probability": 0.57275390625}, {"start": 1704.73, "end": 1704.73, "word": " file", "probability": 0.638671875}, {"start": 1704.73, "end": 1705.47, "word": " or", "probability": 0.61572265625}, {"start": 1705.47, "end": 1706.01, "word": " inside", "probability": 0.505859375}, {"start": 1706.01, "end": 1706.19, "word": " the", "probability": 0.3408203125}, {"start": 1706.19, "end": 1706.21, "word": " A", "probability": 0.4365234375}, {"start": 1706.21, "end": 1706.37, "word": " The", "probability": 0.1258544921875}, {"start": 1706.37, "end": 1706.65, "word": " best", "probability": 0.81396484375}, {"start": 1706.65, "end": 1706.77, "word": " thing", "probability": 0.36767578125}, {"start": 1706.77, "end": 1707.05, "word": " here", "probability": 0.461669921875}, {"start": 1707.05, "end": 1707.89, "word": " is", "probability": 0.84228515625}, {"start": 1707.89, "end": 1708.01, "word": " to", "probability": 0.6904296875}, {"start": 1708.01, "end": 1708.25, "word": " make", "probability": 0.556640625}, {"start": 1708.25, "end": 1708.63, "word": " an", "probability": 0.435546875}, {"start": 1708.63, "end": 1709.09, "word": " interface", "probability": 0.91455078125}, {"start": 1709.09, "end": 1709.51, "word": " inside", "probability": 0.66552734375}, {"start": 1709.51, "end": 1709.69, "word": " the", "probability": 0.7099609375}, {"start": 1709.69, "end": 1710.03, "word": " class", "probability": 0.93359375}, {"start": 1710.03, "end": 1710.91, "word": " Why?", "probability": 0.46484375}, {"start": 1710.97, "end": 1711.21, "word": " Because", "probability": 0.79638671875}, {"start": 1711.21, "end": 1712.21, "word": " this", "probability": 0.6962890625}, {"start": 1712.21, "end": 1712.87, "word": " is", "probability": 0.327392578125}, {"start": 1712.87, "end": 1713.93, "word": " related", "probability": 0.4482421875}, {"start": 1713.93, "end": 1714.03, "word": " to", "probability": 0.966796875}, {"start": 1714.03, "end": 1714.13, "word": " the", "probability": 0.72021484375}, {"start": 1714.13, "end": 1714.29, "word": " A", "probability": 0.7099609375}, {"start": 1714.29, "end": 1714.95, "word": " So", "probability": 0.2109375}, {"start": 1714.95, "end": 1715.11, "word": " for", "probability": 0.447021484375}, {"start": 1715.11, "end": 1715.41, "word": " people", "probability": 0.445068359375}, {"start": 1715.41, "end": 1715.53, "word": " who", "probability": 0.75439453125}, {"start": 1715.53, "end": 1715.69, "word": " want", "probability": 0.449951171875}, {"start": 1715.69, "end": 1715.73, "word": " to", "probability": 0.9658203125}, {"start": 1715.73, "end": 1715.93, "word": " listen", "probability": 0.31005859375}, {"start": 1715.93, "end": 1716.07, "word": " to", "probability": 0.94775390625}, {"start": 1716.07, "end": 1716.17, "word": " the", "probability": 0.75537109375}, {"start": 1716.17, "end": 1716.43, "word": " A,", "probability": 0.97216796875}, {"start": 1716.65, "end": 1717.59, "word": " they", "probability": 0.302490234375}, {"start": 1717.59, "end": 1717.73, "word": " need", "probability": 0.2239990234375}, {"start": 1717.73, "end": 1717.83, "word": " to", "probability": 0.947265625}, {"start": 1717.83, "end": 1718.33, "word": " implement", "probability": 0.623046875}, {"start": 1718.33, "end": 1718.55, "word": " this", "probability": 0.76513671875}, {"start": 1718.55, "end": 1719.29, "word": " interface", "probability": 0.89697265625}, {"start": 1719.29, "end": 1719.89, "word": " We", "probability": 0.2337646484375}, {"start": 1719.89, "end": 1720.13, "word": " put", "probability": 0.65966796875}, {"start": 1720.13, "end": 1720.35, "word": " it", "probability": 0.806640625}, {"start": 1720.35, "end": 1720.51, "word": " inside", "probability": 0.896484375}, {"start": 1720.51, "end": 1720.65, "word": " the", "probability": 0.849609375}, {"start": 1720.65, "end": 1720.73, "word": " A,", "probability": 0.9814453125}, {"start": 1720.79, "end": 1720.93, "word": " so", "probability": 0.73291015625}, {"start": 1720.93, "end": 1721.09, "word": " when", "probability": 0.60400390625}, {"start": 1721.09, "end": 1721.23, "word": " you", "probability": 0.8466796875}, {"start": 1721.23, "end": 1722.07, "word": " use", "probability": 0.52099609375}, {"start": 1722.07, "end": 1722.23, "word": " it", "probability": 0.51953125}, {"start": 1722.23, "end": 1722.35, "word": " in", "probability": 0.734375}, {"start": 1722.35, "end": 1722.41, "word": " another", "probability": 0.78271484375}, {"start": 1722.41, "end": 1722.91, "word": " application,", "probability": 0.5302734375}, {"start": 1723.57, "end": 1723.65, "word": " you", "probability": 0.71142578125}, {"start": 1723.65, "end": 1723.87, "word": " take", "probability": 0.331298828125}, {"start": 1723.87, "end": 1723.97, "word": " with", "probability": 0.52099609375}, {"start": 1723.97, "end": 1724.17, "word": " you", "probability": 0.84130859375}, {"start": 1724.17, "end": 1724.81, "word": " its", "probability": 0.31591796875}, {"start": 1724.81, "end": 1725.83, "word": " interface", "probability": 0.93359375}, {"start": 1725.83, "end": 1726.85, "word": " So", "probability": 0.64599609375}, {"start": 1726.85, "end": 1726.95, "word": " I", "probability": 0.90185546875}, {"start": 1726.95, "end": 1727.01, "word": " want", "probability": 0.4931640625}, {"start": 1727.01, "end": 1727.03, "word": " to", "probability": 0.97216796875}, {"start": 1727.03, "end": 1727.17, "word": " call", "probability": 0.293212890625}, {"start": 1727.17, "end": 1727.29, "word": " it", "probability": 0.76318359375}, {"start": 1727.29, "end": 1727.57, "word": " public", "probability": 0.444580078125}, {"start": 1727.57, "end": 1728.49, "word": " interface", "probability": 0.86962890625}, {"start": 1728.49, "end": 1731.13, "word": " I", "probability": 0.498291015625}, {"start": 1731.13, "end": 1731.13, "word": " want", "probability": 0.48974609375}, {"start": 1731.13, "end": 1731.17, "word": " to", "probability": 0.96240234375}, {"start": 1731.17, "end": 1731.33, "word": " call", "probability": 0.65771484375}, {"start": 1731.33, "end": 1731.51, "word": " it", "probability": 0.93310546875}, {"start": 1731.51, "end": 1731.69, "word": " A", "probability": 0.6005859375}, {"start": 1731.69, "end": 1731.93, "word": " listener", "probability": 0.444091796875}], "temperature": 1.0}, {"id": 68, "seek": 175094, "start": 1734.06, "end": 1750.94, "text": "وبدأحط جوا public void data received string data هذا ال interface جوا ال class A طيب لسه انا في ال class A", "tokens": [2407, 44510, 10721, 5016, 9566, 10874, 14407, 1908, 22009, 1412, 4613, 6798, 1412, 23758, 2423, 9226, 10874, 14407, 2423, 1508, 316, 23032, 1829, 3555, 5296, 3794, 3224, 1975, 8315, 8978, 2423, 1508, 316], "avg_logprob": -0.32398896532900195, "compression_ratio": 1.1596638655462186, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1734.06, "end": 1734.72, "word": "وبدأحط", "probability": 0.4979248046875}, {"start": 1734.72, "end": 1735.22, "word": " جوا", "probability": 0.898193359375}, {"start": 1735.22, "end": 1736.04, "word": " public", "probability": 0.94140625}, {"start": 1736.04, "end": 1737.04, "word": " void", "probability": 0.7412109375}, {"start": 1737.04, "end": 1738.52, "word": " data", "probability": 0.79443359375}, {"start": 1738.52, "end": 1741.02, "word": " received", "probability": 0.630859375}, {"start": 1741.02, "end": 1741.92, "word": " string", "probability": 0.64453125}, {"start": 1741.92, "end": 1744.42, "word": " data", "probability": 0.9462890625}, {"start": 1744.42, "end": 1746.0, "word": " هذا", "probability": 0.53369140625}, {"start": 1746.0, "end": 1746.1, "word": " ال", "probability": 0.367431640625}, {"start": 1746.1, "end": 1746.48, "word": " interface", "probability": 0.75}, {"start": 1746.48, "end": 1746.74, "word": " جوا", "probability": 0.97509765625}, {"start": 1746.74, "end": 1746.86, "word": " ال", "probability": 0.7109375}, {"start": 1746.86, "end": 1747.26, "word": " class", "probability": 0.9853515625}, {"start": 1747.26, "end": 1748.0, "word": " A", "probability": 0.60693359375}, {"start": 1748.0, "end": 1749.88, "word": " طيب", "probability": 0.9288736979166666}, {"start": 1749.88, "end": 1750.18, "word": " لسه", "probability": 0.9098307291666666}, {"start": 1750.18, "end": 1750.3, "word": " انا", "probability": 0.7105712890625}, {"start": 1750.3, "end": 1750.42, "word": " في", "probability": 0.65576171875}, {"start": 1750.42, "end": 1750.5, "word": " ال", "probability": 0.98583984375}, {"start": 1750.5, "end": 1750.76, "word": " class", "probability": 0.98828125}, {"start": 1750.76, "end": 1750.94, "word": " A", "probability": 0.93408203125}], "temperature": 1.0}, {"id": 69, "seek": 177510, "start": 1751.72, "end": 1775.1, "text": "If you find a class A that does not require references to B, C and D, it will tell you that it has nothing to do with B, C and D. Those who want to listen to me should come to me in the form of an A listener, in the form of an interface header. And since more than one person can listen to A, we need to make a list, a private list of type A", "tokens": [8031, 291, 915, 257, 1508, 316, 300, 775, 406, 3651, 15400, 281, 363, 11, 383, 293, 413, 11, 309, 486, 980, 291, 300, 309, 575, 1825, 281, 360, 365, 363, 11, 383, 293, 413, 13, 3950, 567, 528, 281, 2140, 281, 385, 820, 808, 281, 385, 294, 264, 1254, 295, 364, 316, 31569, 11, 294, 264, 1254, 295, 364, 9226, 23117, 13, 400, 1670, 544, 813, 472, 954, 393, 2140, 281, 316, 11, 321, 643, 281, 652, 257, 1329, 11, 257, 4551, 1329, 295, 2010, 316], "avg_logprob": -0.44899424602245464, "compression_ratio": 1.6473429951690821, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1751.72, "end": 1751.94, "word": "If", "probability": 0.200439453125}, {"start": 1751.94, "end": 1751.94, "word": " you", "probability": 0.59375}, {"start": 1751.94, "end": 1752.1, "word": " find", "probability": 0.19384765625}, {"start": 1752.1, "end": 1752.26, "word": " a", "probability": 0.51025390625}, {"start": 1752.26, "end": 1752.56, "word": " class", "probability": 0.91162109375}, {"start": 1752.56, "end": 1752.8, "word": " A", "probability": 0.7353515625}, {"start": 1752.8, "end": 1752.92, "word": " that", "probability": 0.3720703125}, {"start": 1752.92, "end": 1753.04, "word": " does", "probability": 0.30029296875}, {"start": 1753.04, "end": 1753.04, "word": " not", "probability": 0.8388671875}, {"start": 1753.04, "end": 1753.52, "word": " require", "probability": 0.463623046875}, {"start": 1753.52, "end": 1754.8, "word": " references", "probability": 0.61572265625}, {"start": 1754.8, "end": 1755.08, "word": " to", "probability": 0.671875}, {"start": 1755.08, "end": 1755.42, "word": " B,", "probability": 0.6826171875}, {"start": 1755.6, "end": 1755.88, "word": " C", "probability": 0.6396484375}, {"start": 1755.88, "end": 1756.08, "word": " and", "probability": 0.41455078125}, {"start": 1756.08, "end": 1756.32, "word": " D,", "probability": 0.99609375}, {"start": 1756.48, "end": 1756.88, "word": " it", "probability": 0.427001953125}, {"start": 1756.88, "end": 1756.98, "word": " will", "probability": 0.415771484375}, {"start": 1756.98, "end": 1757.08, "word": " tell", "probability": 0.50341796875}, {"start": 1757.08, "end": 1757.24, "word": " you", "probability": 0.962890625}, {"start": 1757.24, "end": 1757.36, "word": " that", "probability": 0.625}, {"start": 1757.36, "end": 1757.82, "word": " it", "probability": 0.7412109375}, {"start": 1757.82, "end": 1757.98, "word": " has", "probability": 0.6201171875}, {"start": 1757.98, "end": 1758.0, "word": " nothing", "probability": 0.6640625}, {"start": 1758.0, "end": 1758.58, "word": " to", "probability": 0.9599609375}, {"start": 1758.58, "end": 1758.62, "word": " do", "probability": 0.96142578125}, {"start": 1758.62, "end": 1759.14, "word": " with", "probability": 0.88525390625}, {"start": 1759.14, "end": 1759.34, "word": " B,", "probability": 0.5517578125}, {"start": 1759.46, "end": 1759.64, "word": " C", "probability": 0.86279296875}, {"start": 1759.64, "end": 1759.76, "word": " and", "probability": 0.591796875}, {"start": 1759.76, "end": 1759.88, "word": " D.", "probability": 0.99755859375}, {"start": 1759.96, "end": 1760.06, "word": " Those", "probability": 0.142578125}, {"start": 1760.06, "end": 1760.12, "word": " who", "probability": 0.8564453125}, {"start": 1760.12, "end": 1760.32, "word": " want", "probability": 0.7490234375}, {"start": 1760.32, "end": 1760.38, "word": " to", "probability": 0.96875}, {"start": 1760.38, "end": 1760.58, "word": " listen", "probability": 0.60205078125}, {"start": 1760.58, "end": 1760.7, "word": " to", "probability": 0.77978515625}, {"start": 1760.7, "end": 1760.96, "word": " me", "probability": 0.84423828125}, {"start": 1760.96, "end": 1761.88, "word": " should", "probability": 0.29638671875}, {"start": 1761.88, "end": 1762.22, "word": " come", "probability": 0.288818359375}, {"start": 1762.22, "end": 1762.34, "word": " to", "probability": 0.419677734375}, {"start": 1762.34, "end": 1762.34, "word": " me", "probability": 0.923828125}, {"start": 1762.34, "end": 1762.4, "word": " in", "probability": 0.38330078125}, {"start": 1762.4, "end": 1762.42, "word": " the", "probability": 0.80712890625}, {"start": 1762.42, "end": 1762.64, "word": " form", "probability": 0.77587890625}, {"start": 1762.64, "end": 1762.86, "word": " of", "probability": 0.9755859375}, {"start": 1762.86, "end": 1763.82, "word": " an", "probability": 0.28369140625}, {"start": 1763.82, "end": 1763.96, "word": " A", "probability": 0.85986328125}, {"start": 1763.96, "end": 1764.22, "word": " listener,", "probability": 0.5751953125}, {"start": 1764.42, "end": 1764.54, "word": " in", "probability": 0.6982421875}, {"start": 1764.54, "end": 1764.6, "word": " the", "probability": 0.89599609375}, {"start": 1764.6, "end": 1764.7, "word": " form", "probability": 0.7958984375}, {"start": 1764.7, "end": 1764.78, "word": " of", "probability": 0.970703125}, {"start": 1764.78, "end": 1764.88, "word": " an", "probability": 0.4814453125}, {"start": 1764.88, "end": 1765.34, "word": " interface", "probability": 0.87451171875}, {"start": 1765.34, "end": 1765.64, "word": " header.", "probability": 0.76416015625}, {"start": 1766.36, "end": 1766.36, "word": " And", "probability": 0.392578125}, {"start": 1766.36, "end": 1767.12, "word": " since", "probability": 0.6787109375}, {"start": 1767.12, "end": 1767.68, "word": " more", "probability": 0.87353515625}, {"start": 1767.68, "end": 1767.9, "word": " than", "probability": 0.93310546875}, {"start": 1767.9, "end": 1768.12, "word": " one", "probability": 0.9296875}, {"start": 1768.12, "end": 1768.26, "word": " person", "probability": 0.861328125}, {"start": 1768.26, "end": 1768.56, "word": " can", "probability": 0.9111328125}, {"start": 1768.56, "end": 1768.88, "word": " listen", "probability": 0.7705078125}, {"start": 1768.88, "end": 1769.02, "word": " to", "probability": 0.9716796875}, {"start": 1769.02, "end": 1769.28, "word": " A,", "probability": 0.69091796875}, {"start": 1769.98, "end": 1770.16, "word": " we", "probability": 0.814453125}, {"start": 1770.16, "end": 1770.32, "word": " need", "probability": 0.267822265625}, {"start": 1770.32, "end": 1770.58, "word": " to", "probability": 0.94580078125}, {"start": 1770.58, "end": 1771.44, "word": " make", "probability": 0.57177734375}, {"start": 1771.44, "end": 1771.94, "word": " a", "probability": 0.935546875}, {"start": 1771.94, "end": 1772.32, "word": " list,", "probability": 0.66015625}, {"start": 1772.82, "end": 1773.1, "word": " a", "probability": 0.5908203125}, {"start": 1773.1, "end": 1773.42, "word": " private", "probability": 0.9091796875}, {"start": 1773.42, "end": 1774.08, "word": " list", "probability": 0.9072265625}, {"start": 1774.08, "end": 1774.4, "word": " of", "probability": 0.841796875}, {"start": 1774.4, "end": 1774.72, "word": " type", "probability": 0.342041015625}, {"start": 1774.72, "end": 1775.1, "word": " A", "probability": 0.93701171875}], "temperature": 1.0}, {"id": 70, "seek": 180419, "start": 1777.17, "end": 1804.19, "text": "listener, what do we call them? listeners equals new ArrayList okay now I made this list but what do I add to this list? I need to make method add", "tokens": [8264, 7971, 11, 437, 360, 321, 818, 552, 30, 23274, 6915, 777, 1587, 3458, 43, 468, 1392, 586, 286, 1027, 341, 1329, 457, 437, 360, 286, 909, 281, 341, 1329, 30, 286, 643, 281, 652, 3170, 909], "avg_logprob": -0.5834704151279048, "compression_ratio": 1.3518518518518519, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1777.17, "end": 1777.71, "word": "listener,", "probability": 0.5389404296875}, {"start": 1777.77, "end": 1777.93, "word": " what", "probability": 0.5341796875}, {"start": 1777.93, "end": 1778.05, "word": " do", "probability": 0.26806640625}, {"start": 1778.05, "end": 1778.07, "word": " we", "probability": 0.85986328125}, {"start": 1778.07, "end": 1778.37, "word": " call", "probability": 0.78173828125}, {"start": 1778.37, "end": 1778.69, "word": " them?", "probability": 0.572265625}, {"start": 1778.77, "end": 1779.35, "word": " listeners", "probability": 0.4775390625}, {"start": 1779.35, "end": 1781.03, "word": " equals", "probability": 0.1859130859375}, {"start": 1781.03, "end": 1781.51, "word": " new", "probability": 0.796875}, {"start": 1781.51, "end": 1782.95, "word": " ArrayList", "probability": 0.79974365234375}, {"start": 1782.95, "end": 1798.15, "word": " okay", "probability": 0.138671875}, {"start": 1798.15, "end": 1799.41, "word": " now", "probability": 0.3955078125}, {"start": 1799.41, "end": 1799.63, "word": " I", "probability": 0.442138671875}, {"start": 1799.63, "end": 1799.83, "word": " made", "probability": 0.53515625}, {"start": 1799.83, "end": 1800.01, "word": " this", "probability": 0.82568359375}, {"start": 1800.01, "end": 1800.27, "word": " list", "probability": 0.8935546875}, {"start": 1800.27, "end": 1800.93, "word": " but", "probability": 0.56884765625}, {"start": 1800.93, "end": 1801.45, "word": " what", "probability": 0.734375}, {"start": 1801.45, "end": 1801.63, "word": " do", "probability": 0.428466796875}, {"start": 1801.63, "end": 1801.63, "word": " I", "probability": 0.444580078125}, {"start": 1801.63, "end": 1801.95, "word": " add", "probability": 0.611328125}, {"start": 1801.95, "end": 1802.23, "word": " to", "probability": 0.61474609375}, {"start": 1802.23, "end": 1802.23, "word": " this", "probability": 0.58349609375}, {"start": 1802.23, "end": 1802.23, "word": " list?", "probability": 0.7841796875}, {"start": 1802.85, "end": 1802.93, "word": " I", "probability": 0.56884765625}, {"start": 1802.93, "end": 1803.07, "word": " need", "probability": 0.376953125}, {"start": 1803.07, "end": 1803.21, "word": " to", "probability": 0.8203125}, {"start": 1803.21, "end": 1803.35, "word": " make", "probability": 0.369140625}, {"start": 1803.35, "end": 1803.77, "word": " method", "probability": 0.560546875}, {"start": 1803.77, "end": 1804.19, "word": " add", "probability": 0.89306640625}], "temperature": 1.0}, {"id": 71, "seek": 181839, "start": 1805.75, "end": 1818.39, "text": "Public, void, add a listener And this will take an object of type a listener, for example, L Because here I say if", "tokens": [47, 3865, 11, 22009, 11, 909, 257, 31569, 400, 341, 486, 747, 364, 2657, 295, 2010, 257, 31569, 11, 337, 1365, 11, 441, 1436, 510, 286, 584, 498], "avg_logprob": -0.5840517405805916, "compression_ratio": 1.175257731958763, "no_speech_prob": 8.52346420288086e-06, "words": [{"start": 1805.75, "end": 1806.51, "word": "Public,", "probability": 0.65087890625}, {"start": 1807.11, "end": 1807.65, "word": " void,", "probability": 0.6484375}, {"start": 1808.03, "end": 1809.23, "word": " add", "probability": 0.75830078125}, {"start": 1809.23, "end": 1809.83, "word": " a", "probability": 0.49365234375}, {"start": 1809.83, "end": 1810.27, "word": " listener", "probability": 0.841796875}, {"start": 1810.27, "end": 1812.97, "word": " And", "probability": 0.2008056640625}, {"start": 1812.97, "end": 1813.19, "word": " this", "probability": 0.623046875}, {"start": 1813.19, "end": 1813.31, "word": " will", "probability": 0.445556640625}, {"start": 1813.31, "end": 1813.61, "word": " take", "probability": 0.77392578125}, {"start": 1813.61, "end": 1813.69, "word": " an", "probability": 0.51904296875}, {"start": 1813.69, "end": 1813.91, "word": " object", "probability": 0.9521484375}, {"start": 1813.91, "end": 1814.07, "word": " of", "probability": 0.537109375}, {"start": 1814.07, "end": 1814.75, "word": " type", "probability": 0.385009765625}, {"start": 1814.75, "end": 1815.19, "word": " a", "probability": 0.388671875}, {"start": 1815.19, "end": 1815.55, "word": " listener,", "probability": 0.82275390625}, {"start": 1815.73, "end": 1815.93, "word": " for", "probability": 0.374755859375}, {"start": 1815.93, "end": 1816.51, "word": " example,", "probability": 0.93212890625}, {"start": 1816.51, "end": 1816.51, "word": " L", "probability": 0.398193359375}, {"start": 1816.51, "end": 1817.47, "word": " Because", "probability": 0.351806640625}, {"start": 1817.47, "end": 1817.67, "word": " here", "probability": 0.740234375}, {"start": 1817.67, "end": 1817.77, "word": " I", "probability": 0.90087890625}, {"start": 1817.77, "end": 1817.99, "word": " say", "probability": 0.376708984375}, {"start": 1817.99, "end": 1818.39, "word": " if", "probability": 0.6025390625}], "temperature": 1.0}, {"id": 72, "seek": 183984, "start": 1832.18, "end": 1839.84, "text": "I tell him if it's not in the list, add it. Of course, you can also do daily move, okay?", "tokens": [40, 980, 796, 498, 309, 311, 406, 294, 264, 1329, 11, 909, 309, 13, 2720, 1164, 11, 291, 393, 611, 360, 274, 864, 88, 1286, 11, 1392, 30], "avg_logprob": -0.6282327503993593, "compression_ratio": 1.0602409638554218, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1832.18, "end": 1832.4, "word": "I", "probability": 0.1702880859375}, {"start": 1832.4, "end": 1832.7, "word": " tell", "probability": 0.2052001953125}, {"start": 1832.7, "end": 1832.8, "word": " him", "probability": 0.57666015625}, {"start": 1832.8, "end": 1832.9, "word": " if", "probability": 0.576171875}, {"start": 1832.9, "end": 1833.12, "word": " it's", "probability": 0.530517578125}, {"start": 1833.12, "end": 1833.16, "word": " not", "probability": 0.9208984375}, {"start": 1833.16, "end": 1833.6, "word": " in", "probability": 0.455078125}, {"start": 1833.6, "end": 1833.74, "word": " the", "probability": 0.837890625}, {"start": 1833.74, "end": 1834.08, "word": " list,", "probability": 0.90673828125}, {"start": 1834.72, "end": 1834.88, "word": " add", "probability": 0.623046875}, {"start": 1834.88, "end": 1835.24, "word": " it.", "probability": 0.88916015625}, {"start": 1837.0, "end": 1837.12, "word": " Of", "probability": 0.406494140625}, {"start": 1837.12, "end": 1837.16, "word": " course,", "probability": 0.943359375}, {"start": 1837.26, "end": 1837.26, "word": " you", "probability": 0.9267578125}, {"start": 1837.26, "end": 1837.46, "word": " can", "probability": 0.86474609375}, {"start": 1837.46, "end": 1837.76, "word": " also", "probability": 0.7216796875}, {"start": 1837.76, "end": 1837.76, "word": " do", "probability": 0.448974609375}, {"start": 1837.76, "end": 1838.18, "word": " daily", "probability": 0.4725748697916667}, {"start": 1838.18, "end": 1838.52, "word": " move,", "probability": 0.884765625}, {"start": 1839.52, "end": 1839.84, "word": " okay?", "probability": 0.51171875}], "temperature": 1.0}, {"id": 73, "seek": 186351, "start": 1841.33, "end": 1863.51, "text": "Okay, we're done again. So I made a list. This is an alternative to main, which I did a while ago, which is B instead of references. And this is add listener instead of main. Set A and set B and set C and set D. Okay? So this is one step. Set data. I sent data to A. The A was supposed to deliver it to whom?", "tokens": [8297, 11, 321, 434, 1096, 797, 13, 407, 286, 1027, 257, 1329, 13, 639, 307, 364, 8535, 281, 2135, 11, 597, 286, 630, 257, 1339, 2057, 11, 597, 307, 363, 2602, 295, 15400, 13, 400, 341, 307, 909, 31569, 2602, 295, 2135, 13, 8928, 316, 293, 992, 363, 293, 992, 383, 293, 992, 413, 13, 1033, 30, 407, 341, 307, 472, 1823, 13, 8928, 1412, 13, 286, 2279, 1412, 281, 316, 13, 440, 316, 390, 3442, 281, 4239, 309, 281, 7101, 30], "avg_logprob": -0.46724398667553824, "compression_ratio": 1.6041666666666667, "no_speech_prob": 9.655952453613281e-06, "words": [{"start": 1841.33, "end": 1841.81, "word": "Okay,", "probability": 0.485595703125}, {"start": 1841.89, "end": 1842.07, "word": " we're", "probability": 0.4346923828125}, {"start": 1842.07, "end": 1842.39, "word": " done", "probability": 0.56787109375}, {"start": 1842.39, "end": 1842.91, "word": " again.", "probability": 0.275390625}, {"start": 1842.95, "end": 1843.09, "word": " So", "probability": 0.375244140625}, {"start": 1843.09, "end": 1843.35, "word": " I", "probability": 0.6845703125}, {"start": 1843.35, "end": 1843.57, "word": " made", "probability": 0.7265625}, {"start": 1843.57, "end": 1843.77, "word": " a", "probability": 0.97265625}, {"start": 1843.77, "end": 1844.13, "word": " list.", "probability": 0.92724609375}, {"start": 1844.53, "end": 1844.77, "word": " This", "probability": 0.681640625}, {"start": 1844.77, "end": 1844.85, "word": " is", "probability": 0.857421875}, {"start": 1844.85, "end": 1844.99, "word": " an", "probability": 0.5341796875}, {"start": 1844.99, "end": 1845.09, "word": " alternative", "probability": 0.85546875}, {"start": 1845.09, "end": 1845.31, "word": " to", "probability": 0.5205078125}, {"start": 1845.31, "end": 1845.59, "word": " main,", "probability": 0.30859375}, {"start": 1845.73, "end": 1845.93, "word": " which", "probability": 0.70849609375}, {"start": 1845.93, "end": 1846.23, "word": " I", "probability": 0.62255859375}, {"start": 1846.23, "end": 1846.41, "word": " did", "probability": 0.3076171875}, {"start": 1846.41, "end": 1846.73, "word": " a", "probability": 0.396240234375}, {"start": 1846.73, "end": 1846.89, "word": " while", "probability": 0.73828125}, {"start": 1846.89, "end": 1847.11, "word": " ago,", "probability": 0.8408203125}, {"start": 1847.65, "end": 1847.75, "word": " which", "probability": 0.80859375}, {"start": 1847.75, "end": 1848.19, "word": " is", "probability": 0.85986328125}, {"start": 1848.19, "end": 1848.83, "word": " B", "probability": 0.376708984375}, {"start": 1848.83, "end": 1850.43, "word": " instead", "probability": 0.11590576171875}, {"start": 1850.43, "end": 1850.49, "word": " of", "probability": 0.96826171875}, {"start": 1850.49, "end": 1851.03, "word": " references.", "probability": 0.78564453125}, {"start": 1851.41, "end": 1851.65, "word": " And", "probability": 0.7890625}, {"start": 1851.65, "end": 1851.95, "word": " this", "probability": 0.857421875}, {"start": 1851.95, "end": 1852.05, "word": " is", "probability": 0.84375}, {"start": 1852.05, "end": 1852.35, "word": " add", "probability": 0.58740234375}, {"start": 1852.35, "end": 1852.79, "word": " listener", "probability": 0.57177734375}, {"start": 1852.79, "end": 1853.07, "word": " instead", "probability": 0.791015625}, {"start": 1853.07, "end": 1853.19, "word": " of", "probability": 0.974609375}, {"start": 1853.19, "end": 1853.47, "word": " main.", "probability": 0.8291015625}, {"start": 1853.87, "end": 1854.05, "word": " Set", "probability": 0.80078125}, {"start": 1854.05, "end": 1854.33, "word": " A", "probability": 0.77587890625}, {"start": 1854.33, "end": 1854.51, "word": " and", "probability": 0.380615234375}, {"start": 1854.51, "end": 1854.89, "word": " set", "probability": 0.7314453125}, {"start": 1854.89, "end": 1855.13, "word": " B", "probability": 0.93017578125}, {"start": 1855.13, "end": 1855.31, "word": " and", "probability": 0.78564453125}, {"start": 1855.31, "end": 1855.47, "word": " set", "probability": 0.9365234375}, {"start": 1855.47, "end": 1855.67, "word": " C", "probability": 0.970703125}, {"start": 1855.67, "end": 1855.81, "word": " and", "probability": 0.93310546875}, {"start": 1855.81, "end": 1855.97, "word": " set", "probability": 0.83642578125}, {"start": 1855.97, "end": 1856.17, "word": " D.", "probability": 0.9970703125}, {"start": 1856.61, "end": 1856.79, "word": " Okay?", "probability": 0.461669921875}, {"start": 1857.95, "end": 1858.41, "word": " So", "probability": 0.24365234375}, {"start": 1858.41, "end": 1858.53, "word": " this", "probability": 0.615234375}, {"start": 1858.53, "end": 1858.59, "word": " is", "probability": 0.90625}, {"start": 1858.59, "end": 1858.63, "word": " one", "probability": 0.6533203125}, {"start": 1858.63, "end": 1858.83, "word": " step.", "probability": 0.7890625}, {"start": 1859.35, "end": 1859.71, "word": " Set", "probability": 0.9150390625}, {"start": 1859.71, "end": 1860.03, "word": " data.", "probability": 0.90869140625}, {"start": 1860.17, "end": 1860.37, "word": " I", "probability": 0.97900390625}, {"start": 1860.37, "end": 1860.71, "word": " sent", "probability": 0.744140625}, {"start": 1860.71, "end": 1861.05, "word": " data", "probability": 0.859375}, {"start": 1861.05, "end": 1861.23, "word": " to", "probability": 0.96533203125}, {"start": 1861.23, "end": 1861.45, "word": " A.", "probability": 0.60205078125}, {"start": 1861.75, "end": 1862.13, "word": " The", "probability": 0.331787109375}, {"start": 1862.13, "end": 1862.27, "word": " A", "probability": 0.82666015625}, {"start": 1862.27, "end": 1862.43, "word": " was", "probability": 0.21044921875}, {"start": 1862.43, "end": 1862.43, "word": " supposed", "probability": 0.86962890625}, {"start": 1862.43, "end": 1862.43, "word": " to", "probability": 0.96875}, {"start": 1862.43, "end": 1862.83, "word": " deliver", "probability": 0.11859130859375}, {"start": 1862.83, "end": 1863.11, "word": " it", "probability": 0.79248046875}, {"start": 1863.11, "end": 1863.23, "word": " to", "probability": 0.94970703125}, {"start": 1863.23, "end": 1863.51, "word": " whom?", "probability": 0.84814453125}], "temperature": 1.0}, {"id": 74, "seek": 189146, "start": 1864.9, "end": 1891.46, "text": "It stopped knowing B and C and D, it knows listeners, so it does for each A listener, L is present in listeners, go and tell him L and tell him data received and send him the data, like this. Now here we designed the A, we finished it, we designed it, this is one job, but now we will not modify the A at all.", "tokens": [3522, 5936, 5276, 363, 293, 383, 293, 413, 11, 309, 3255, 23274, 11, 370, 309, 775, 337, 1184, 316, 31569, 11, 441, 307, 1974, 294, 23274, 11, 352, 293, 980, 796, 441, 293, 980, 796, 1412, 4613, 293, 2845, 796, 264, 1412, 11, 411, 341, 13, 823, 510, 321, 4761, 264, 316, 11, 321, 4335, 309, 11, 321, 4761, 309, 11, 341, 307, 472, 1691, 11, 457, 586, 321, 486, 406, 16927, 264, 316, 412, 439, 13], "avg_logprob": -0.5657051098652375, "compression_ratio": 1.6524064171122994, "no_speech_prob": 1.5079975128173828e-05, "words": [{"start": 1864.9, "end": 1865.5, "word": "It", "probability": 0.06854248046875}, {"start": 1865.5, "end": 1866.1, "word": " stopped", "probability": 0.50634765625}, {"start": 1866.1, "end": 1866.6, "word": " knowing", "probability": 0.397705078125}, {"start": 1866.6, "end": 1866.96, "word": " B", "probability": 0.440185546875}, {"start": 1866.96, "end": 1867.32, "word": " and", "probability": 0.2113037109375}, {"start": 1867.32, "end": 1867.56, "word": " C", "probability": 0.89306640625}, {"start": 1867.56, "end": 1867.76, "word": " and", "probability": 0.88134765625}, {"start": 1867.76, "end": 1867.92, "word": " D,", "probability": 0.99072265625}, {"start": 1868.06, "end": 1868.4, "word": " it", "probability": 0.61376953125}, {"start": 1868.4, "end": 1868.64, "word": " knows", "probability": 0.3310546875}, {"start": 1868.64, "end": 1869.08, "word": " listeners,", "probability": 0.340576171875}, {"start": 1869.24, "end": 1869.72, "word": " so", "probability": 0.67626953125}, {"start": 1869.72, "end": 1869.86, "word": " it", "probability": 0.45751953125}, {"start": 1869.86, "end": 1870.04, "word": " does", "probability": 0.364013671875}, {"start": 1870.04, "end": 1870.26, "word": " for", "probability": 0.42041015625}, {"start": 1870.26, "end": 1870.7, "word": " each", "probability": 0.386474609375}, {"start": 1870.7, "end": 1871.5, "word": " A", "probability": 0.681640625}, {"start": 1871.5, "end": 1871.92, "word": " listener,", "probability": 0.7509765625}, {"start": 1873.4, "end": 1873.76, "word": " L", "probability": 0.43701171875}, {"start": 1873.76, "end": 1874.64, "word": " is", "probability": 0.52197265625}, {"start": 1874.64, "end": 1874.96, "word": " present", "probability": 0.548828125}, {"start": 1874.96, "end": 1875.08, "word": " in", "probability": 0.8857421875}, {"start": 1875.08, "end": 1875.66, "word": " listeners,", "probability": 0.6044921875}, {"start": 1876.68, "end": 1876.92, "word": " go", "probability": 0.66943359375}, {"start": 1876.92, "end": 1877.18, "word": " and", "probability": 0.462890625}, {"start": 1877.18, "end": 1877.18, "word": " tell", "probability": 0.64013671875}, {"start": 1877.18, "end": 1877.24, "word": " him", "probability": 0.342041015625}, {"start": 1877.24, "end": 1877.62, "word": " L", "probability": 0.315673828125}, {"start": 1877.62, "end": 1878.4, "word": " and", "probability": 0.59326171875}, {"start": 1878.4, "end": 1878.54, "word": " tell", "probability": 0.478271484375}, {"start": 1878.54, "end": 1878.62, "word": " him", "probability": 0.91357421875}, {"start": 1878.62, "end": 1879.0, "word": " data", "probability": 0.69384765625}, {"start": 1879.0, "end": 1880.32, "word": " received", "probability": 0.7412109375}, {"start": 1880.32, "end": 1880.8, "word": " and", "probability": 0.67822265625}, {"start": 1880.8, "end": 1880.98, "word": " send", "probability": 0.59228515625}, {"start": 1880.98, "end": 1881.1, "word": " him", "probability": 0.78759765625}, {"start": 1881.1, "end": 1881.18, "word": " the", "probability": 0.491455078125}, {"start": 1881.18, "end": 1881.46, "word": " data,", "probability": 0.947265625}, {"start": 1882.04, "end": 1882.18, "word": " like", "probability": 0.4560546875}, {"start": 1882.18, "end": 1882.66, "word": " this.", "probability": 0.7119140625}, {"start": 1883.54, "end": 1883.82, "word": " Now", "probability": 0.75830078125}, {"start": 1883.82, "end": 1884.06, "word": " here", "probability": 0.413330078125}, {"start": 1884.06, "end": 1884.28, "word": " we", "probability": 0.8212890625}, {"start": 1884.28, "end": 1884.58, "word": " designed", "probability": 0.453125}, {"start": 1884.58, "end": 1884.82, "word": " the", "probability": 0.5732421875}, {"start": 1884.82, "end": 1884.96, "word": " A,", "probability": 0.91845703125}, {"start": 1885.06, "end": 1885.1, "word": " we", "probability": 0.65625}, {"start": 1885.1, "end": 1885.32, "word": " finished", "probability": 0.5546875}, {"start": 1885.32, "end": 1885.62, "word": " it,", "probability": 0.87060546875}, {"start": 1886.2, "end": 1886.6, "word": " we", "probability": 0.787109375}, {"start": 1886.6, "end": 1886.6, "word": " designed", "probability": 0.9169921875}, {"start": 1886.6, "end": 1886.8, "word": " it,", "probability": 0.6669921875}, {"start": 1886.82, "end": 1886.92, "word": " this", "probability": 0.490478515625}, {"start": 1886.92, "end": 1887.16, "word": " is", "probability": 0.6630859375}, {"start": 1887.16, "end": 1887.16, "word": " one", "probability": 0.63232421875}, {"start": 1887.16, "end": 1887.18, "word": " job,", "probability": 0.3681640625}, {"start": 1887.54, "end": 1888.4, "word": " but", "probability": 0.88720703125}, {"start": 1888.4, "end": 1888.76, "word": " now", "probability": 0.90625}, {"start": 1888.76, "end": 1889.1, "word": " we", "probability": 0.6689453125}, {"start": 1889.1, "end": 1889.44, "word": " will", "probability": 0.6552734375}, {"start": 1889.44, "end": 1889.44, "word": " not", "probability": 0.9033203125}, {"start": 1889.44, "end": 1889.74, "word": " modify", "probability": 0.367431640625}, {"start": 1889.74, "end": 1890.02, "word": " the", "probability": 0.77783203125}, {"start": 1890.02, "end": 1890.02, "word": " A", "probability": 0.98193359375}, {"start": 1890.02, "end": 1890.42, "word": " at", "probability": 0.822265625}, {"start": 1890.42, "end": 1891.46, "word": " all.", "probability": 0.95068359375}], "temperature": 1.0}, {"id": 75, "seek": 191666, "start": 1892.38, "end": 1916.66, "text": "Okay, we haven't finished our work yet, the program hasn't started yet. Okay, now this is A, B, C and D, okay? We want these guys to listen to A, so that if A receives data, it will notify B, C and D. Isn't this our goal that we started with at the beginning? Yes, we came to A, we went to A, we said to him, hey A, add a new listener to listen to you.", "tokens": [8297, 11, 321, 2378, 380, 4335, 527, 589, 1939, 11, 264, 1461, 6132, 380, 1409, 1939, 13, 1033, 11, 586, 341, 307, 316, 11, 363, 11, 383, 293, 413, 11, 1392, 30, 492, 528, 613, 1074, 281, 2140, 281, 316, 11, 370, 300, 498, 316, 20717, 1412, 11, 309, 486, 36560, 363, 11, 383, 293, 413, 13, 6998, 380, 341, 527, 3387, 300, 321, 1409, 365, 412, 264, 2863, 30, 1079, 11, 321, 1361, 281, 316, 11, 321, 1437, 281, 316, 11, 321, 848, 281, 796, 11, 4177, 316, 11, 909, 257, 777, 31569, 281, 2140, 281, 291, 13], "avg_logprob": -0.4134374892711639, "compression_ratio": 1.6073059360730593, "no_speech_prob": 1.2516975402832031e-05, "words": [{"start": 1892.38, "end": 1892.7, "word": "Okay,", "probability": 0.544921875}, {"start": 1892.8, "end": 1892.98, "word": " we", "probability": 0.73779296875}, {"start": 1892.98, "end": 1893.06, "word": " haven't", "probability": 0.60699462890625}, {"start": 1893.06, "end": 1893.4, "word": " finished", "probability": 0.59375}, {"start": 1893.4, "end": 1893.5, "word": " our", "probability": 0.6376953125}, {"start": 1893.5, "end": 1893.72, "word": " work", "probability": 0.5107421875}, {"start": 1893.72, "end": 1893.86, "word": " yet,", "probability": 0.7421875}, {"start": 1893.96, "end": 1894.2, "word": " the", "probability": 0.66943359375}, {"start": 1894.2, "end": 1894.44, "word": " program", "probability": 0.60791015625}, {"start": 1894.44, "end": 1894.62, "word": " hasn't", "probability": 0.645751953125}, {"start": 1894.62, "end": 1894.96, "word": " started", "probability": 0.68701171875}, {"start": 1894.96, "end": 1895.4, "word": " yet.", "probability": 0.84765625}, {"start": 1896.24, "end": 1896.68, "word": " Okay,", "probability": 0.43701171875}, {"start": 1896.94, "end": 1897.2, "word": " now", "probability": 0.498291015625}, {"start": 1897.2, "end": 1897.42, "word": " this", "probability": 0.279052734375}, {"start": 1897.42, "end": 1897.48, "word": " is", "probability": 0.9052734375}, {"start": 1897.48, "end": 1897.78, "word": " A,", "probability": 0.7158203125}, {"start": 1898.1, "end": 1898.42, "word": " B,", "probability": 0.76953125}, {"start": 1898.78, "end": 1899.1, "word": " C", "probability": 0.89697265625}, {"start": 1899.1, "end": 1899.44, "word": " and", "probability": 0.61962890625}, {"start": 1899.44, "end": 1899.62, "word": " D,", "probability": 0.9970703125}, {"start": 1900.24, "end": 1900.64, "word": " okay?", "probability": 0.62060546875}, {"start": 1901.14, "end": 1901.28, "word": " We", "probability": 0.7919921875}, {"start": 1901.28, "end": 1901.64, "word": " want", "probability": 0.7158203125}, {"start": 1901.64, "end": 1902.22, "word": " these", "probability": 0.73974609375}, {"start": 1902.22, "end": 1902.6, "word": " guys", "probability": 0.62646484375}, {"start": 1902.6, "end": 1903.28, "word": " to", "probability": 0.95849609375}, {"start": 1903.28, "end": 1903.56, "word": " listen", "probability": 0.6962890625}, {"start": 1903.56, "end": 1903.7, "word": " to", "probability": 0.96044921875}, {"start": 1903.7, "end": 1903.94, "word": " A,", "probability": 0.7138671875}, {"start": 1904.14, "end": 1904.34, "word": " so", "probability": 0.80908203125}, {"start": 1904.34, "end": 1904.66, "word": " that", "probability": 0.69873046875}, {"start": 1904.66, "end": 1904.78, "word": " if", "probability": 0.81982421875}, {"start": 1904.78, "end": 1904.96, "word": " A", "probability": 0.875}, {"start": 1904.96, "end": 1905.36, "word": " receives", "probability": 0.174560546875}, {"start": 1905.36, "end": 1905.92, "word": " data,", "probability": 0.68310546875}, {"start": 1906.58, "end": 1906.74, "word": " it", "probability": 0.60302734375}, {"start": 1906.74, "end": 1906.8, "word": " will", "probability": 0.260009765625}, {"start": 1906.8, "end": 1907.08, "word": " notify", "probability": 0.164306640625}, {"start": 1907.08, "end": 1907.48, "word": " B,", "probability": 0.95654296875}, {"start": 1907.92, "end": 1908.24, "word": " C", "probability": 0.9541015625}, {"start": 1908.24, "end": 1908.74, "word": " and", "probability": 0.85498046875}, {"start": 1908.74, "end": 1908.96, "word": " D.", "probability": 0.99951171875}, {"start": 1909.04, "end": 1909.14, "word": " Isn't", "probability": 0.80908203125}, {"start": 1909.14, "end": 1909.34, "word": " this", "probability": 0.62451171875}, {"start": 1909.34, "end": 1909.54, "word": " our", "probability": 0.5634765625}, {"start": 1909.54, "end": 1909.8, "word": " goal", "probability": 0.78662109375}, {"start": 1909.8, "end": 1909.94, "word": " that", "probability": 0.5224609375}, {"start": 1909.94, "end": 1910.02, "word": " we", "probability": 0.94677734375}, {"start": 1910.02, "end": 1910.2, "word": " started", "probability": 0.83349609375}, {"start": 1910.2, "end": 1910.4, "word": " with", "probability": 0.568359375}, {"start": 1910.4, "end": 1910.56, "word": " at", "probability": 0.5224609375}, {"start": 1910.56, "end": 1910.68, "word": " the", "probability": 0.87255859375}, {"start": 1910.68, "end": 1910.9, "word": " beginning?", "probability": 0.89208984375}, {"start": 1911.58, "end": 1911.82, "word": " Yes,", "probability": 0.56298828125}, {"start": 1911.92, "end": 1912.2, "word": " we", "probability": 0.80322265625}, {"start": 1912.2, "end": 1912.2, "word": " came", "probability": 0.53955078125}, {"start": 1912.2, "end": 1912.4, "word": " to", "probability": 0.935546875}, {"start": 1912.4, "end": 1912.64, "word": " A,", "probability": 0.97216796875}, {"start": 1913.26, "end": 1913.68, "word": " we", "probability": 0.419921875}, {"start": 1913.68, "end": 1913.82, "word": " went", "probability": 0.7529296875}, {"start": 1913.82, "end": 1913.96, "word": " to", "probability": 0.96044921875}, {"start": 1913.96, "end": 1914.14, "word": " A,", "probability": 0.84814453125}, {"start": 1914.22, "end": 1914.22, "word": " we", "probability": 0.70947265625}, {"start": 1914.22, "end": 1914.36, "word": " said", "probability": 0.671875}, {"start": 1914.36, "end": 1914.54, "word": " to", "probability": 0.5224609375}, {"start": 1914.54, "end": 1914.6, "word": " him,", "probability": 0.876953125}, {"start": 1914.66, "end": 1914.7, "word": " hey", "probability": 0.1826171875}, {"start": 1914.7, "end": 1914.94, "word": " A,", "probability": 0.689453125}, {"start": 1915.06, "end": 1915.26, "word": " add", "probability": 0.90673828125}, {"start": 1915.26, "end": 1915.54, "word": " a", "probability": 0.55078125}, {"start": 1915.54, "end": 1915.54, "word": " new", "probability": 0.352294921875}, {"start": 1915.54, "end": 1915.78, "word": " listener", "probability": 0.8740234375}, {"start": 1915.78, "end": 1916.14, "word": " to", "probability": 0.72021484375}, {"start": 1916.14, "end": 1916.3, "word": " listen", "probability": 0.77880859375}, {"start": 1916.3, "end": 1916.36, "word": " to", "probability": 0.96337890625}, {"start": 1916.36, "end": 1916.66, "word": " you.", "probability": 0.9326171875}], "temperature": 1.0}, {"id": 76, "seek": 194229, "start": 1917.59, "end": 1942.29, "text": " Who wants to listen to the A? The B. Put the B. Okay? You will get an error. They will say, wait, come on, you as a B cannot listen. You must be of the type A listener. So we want to go to the B with Allah's help. Okay? And we do implements to A listener. And of course when you do implement,", "tokens": [2102, 2738, 281, 2140, 281, 264, 316, 30, 440, 363, 13, 4935, 264, 363, 13, 1033, 30, 509, 486, 483, 364, 6713, 13, 814, 486, 584, 11, 1699, 11, 808, 322, 11, 291, 382, 257, 363, 2644, 2140, 13, 509, 1633, 312, 295, 264, 2010, 316, 31569, 13, 407, 321, 528, 281, 352, 281, 264, 363, 365, 4574, 311, 854, 13, 1033, 30, 400, 321, 360, 704, 17988, 281, 316, 31569, 13, 400, 295, 1164, 562, 291, 360, 4445, 11], "avg_logprob": -0.5015432098765432, "compression_ratio": 1.6010928961748634, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 1917.59, "end": 1917.85, "word": " Who", "probability": 0.3662109375}, {"start": 1917.85, "end": 1918.05, "word": " wants", "probability": 0.607421875}, {"start": 1918.05, "end": 1918.19, "word": " to", "probability": 0.970703125}, {"start": 1918.19, "end": 1918.39, "word": " listen", "probability": 0.609375}, {"start": 1918.39, "end": 1918.55, "word": " to", "probability": 0.96044921875}, {"start": 1918.55, "end": 1918.65, "word": " the", "probability": 0.1904296875}, {"start": 1918.65, "end": 1918.85, "word": " A?", "probability": 0.734375}, {"start": 1919.41, "end": 1919.79, "word": " The", "probability": 0.364501953125}, {"start": 1919.79, "end": 1919.95, "word": " B.", "probability": 0.982421875}, {"start": 1920.11, "end": 1920.39, "word": " Put", "probability": 0.78369140625}, {"start": 1920.39, "end": 1920.57, "word": " the", "probability": 0.67578125}, {"start": 1920.57, "end": 1920.73, "word": " B.", "probability": 0.98681640625}, {"start": 1921.21, "end": 1921.59, "word": " Okay?", "probability": 0.28466796875}, {"start": 1921.65, "end": 1921.77, "word": " You", "probability": 0.3076171875}, {"start": 1921.77, "end": 1921.81, "word": " will", "probability": 0.44140625}, {"start": 1921.81, "end": 1921.89, "word": " get", "probability": 0.2232666015625}, {"start": 1921.89, "end": 1922.21, "word": " an", "probability": 0.4990234375}, {"start": 1922.21, "end": 1922.45, "word": " error.", "probability": 0.84912109375}, {"start": 1922.97, "end": 1923.35, "word": " They", "probability": 0.2435302734375}, {"start": 1923.35, "end": 1923.41, "word": " will", "probability": 0.50634765625}, {"start": 1923.41, "end": 1923.45, "word": " say,", "probability": 0.84521484375}, {"start": 1923.57, "end": 1923.73, "word": " wait,", "probability": 0.4716796875}, {"start": 1923.91, "end": 1924.05, "word": " come", "probability": 0.642578125}, {"start": 1924.05, "end": 1924.43, "word": " on,", "probability": 0.386474609375}, {"start": 1924.59, "end": 1924.91, "word": " you", "probability": 0.654296875}, {"start": 1924.91, "end": 1925.07, "word": " as", "probability": 0.490234375}, {"start": 1925.07, "end": 1925.11, "word": " a", "probability": 0.4912109375}, {"start": 1925.11, "end": 1925.23, "word": " B", "probability": 0.97509765625}, {"start": 1925.23, "end": 1925.53, "word": " cannot", "probability": 0.5048828125}, {"start": 1925.53, "end": 1926.03, "word": " listen.", "probability": 0.5771484375}, {"start": 1926.13, "end": 1926.23, "word": " You", "probability": 0.93701171875}, {"start": 1926.23, "end": 1926.41, "word": " must", "probability": 0.4638671875}, {"start": 1926.41, "end": 1926.73, "word": " be", "probability": 0.93798828125}, {"start": 1926.73, "end": 1926.77, "word": " of", "probability": 0.486572265625}, {"start": 1926.77, "end": 1927.47, "word": " the", "probability": 0.68115234375}, {"start": 1927.47, "end": 1927.47, "word": " type", "probability": 0.64599609375}, {"start": 1927.47, "end": 1927.71, "word": " A", "probability": 0.460693359375}, {"start": 1927.71, "end": 1928.99, "word": " listener.", "probability": 0.64697265625}, {"start": 1929.33, "end": 1929.71, "word": " So", "probability": 0.8134765625}, {"start": 1929.71, "end": 1929.97, "word": " we", "probability": 0.73583984375}, {"start": 1929.97, "end": 1929.97, "word": " want", "probability": 0.498046875}, {"start": 1929.97, "end": 1930.09, "word": " to", "probability": 0.970703125}, {"start": 1930.09, "end": 1930.19, "word": " go", "probability": 0.951171875}, {"start": 1930.19, "end": 1930.33, "word": " to", "probability": 0.95458984375}, {"start": 1930.33, "end": 1930.43, "word": " the", "probability": 0.501953125}, {"start": 1930.43, "end": 1930.57, "word": " B", "probability": 0.99072265625}, {"start": 1930.57, "end": 1930.73, "word": " with", "probability": 0.32470703125}, {"start": 1930.73, "end": 1931.19, "word": " Allah's", "probability": 0.660888671875}, {"start": 1931.19, "end": 1931.19, "word": " help.", "probability": 0.77587890625}, {"start": 1932.01, "end": 1932.39, "word": " Okay?", "probability": 0.591796875}, {"start": 1932.85, "end": 1933.13, "word": " And", "probability": 0.8955078125}, {"start": 1933.13, "end": 1933.23, "word": " we", "probability": 0.71533203125}, {"start": 1933.23, "end": 1933.41, "word": " do", "probability": 0.468994140625}, {"start": 1933.41, "end": 1934.27, "word": " implements", "probability": 0.7276611328125}, {"start": 1934.27, "end": 1938.83, "word": " to", "probability": 0.52392578125}, {"start": 1938.83, "end": 1939.01, "word": " A", "probability": 0.86181640625}, {"start": 1939.01, "end": 1939.31, "word": " listener.", "probability": 0.787109375}, {"start": 1940.81, "end": 1941.19, "word": " And", "probability": 0.85791015625}, {"start": 1941.19, "end": 1941.39, "word": " of", "probability": 0.5380859375}, {"start": 1941.39, "end": 1941.39, "word": " course", "probability": 0.9619140625}, {"start": 1941.39, "end": 1941.57, "word": " when", "probability": 0.70556640625}, {"start": 1941.57, "end": 1941.73, "word": " you", "probability": 0.96240234375}, {"start": 1941.73, "end": 1941.85, "word": " do", "probability": 0.79541015625}, {"start": 1941.85, "end": 1942.29, "word": " implement,", "probability": 0.6455078125}], "temperature": 1.0}, {"id": 77, "seek": 197167, "start": 1943.85, "end": 1971.67, "text": "it will ask you to implement a data receipt for the data but we have already written it you put the code in it, what does the B want to do if it gets the data? and the same thing we will do in any class that listens to the A because any C that listens to the A must also say implements a listener otherwise it will not accept to say add listener to the C", "tokens": [270, 486, 1029, 291, 281, 4445, 257, 1412, 33882, 337, 264, 1412, 457, 321, 362, 1217, 3720, 309, 291, 829, 264, 3089, 294, 309, 11, 437, 775, 264, 363, 528, 281, 360, 498, 309, 2170, 264, 1412, 30, 293, 264, 912, 551, 321, 486, 360, 294, 604, 1508, 300, 35959, 281, 264, 316, 570, 604, 383, 300, 35959, 281, 264, 316, 1633, 611, 584, 704, 17988, 257, 31569, 5911, 309, 486, 406, 3241, 281, 584, 909, 31569, 281, 264, 383], "avg_logprob": -0.5810185420660325, "compression_ratio": 1.778894472361809, "no_speech_prob": 5.364418029785156e-06, "words": [{"start": 1943.85, "end": 1944.05, "word": "it", "probability": 0.1038818359375}, {"start": 1944.05, "end": 1944.39, "word": " will", "probability": 0.5888671875}, {"start": 1944.39, "end": 1944.63, "word": " ask", "probability": 0.8271484375}, {"start": 1944.63, "end": 1944.87, "word": " you", "probability": 0.86376953125}, {"start": 1944.87, "end": 1945.99, "word": " to", "probability": 0.94970703125}, {"start": 1945.99, "end": 1946.45, "word": " implement", "probability": 0.51416015625}, {"start": 1946.45, "end": 1946.73, "word": " a", "probability": 0.21923828125}, {"start": 1946.73, "end": 1946.95, "word": " data", "probability": 0.72998046875}, {"start": 1946.95, "end": 1948.19, "word": " receipt", "probability": 0.67431640625}, {"start": 1948.19, "end": 1948.27, "word": " for", "probability": 0.277099609375}, {"start": 1948.27, "end": 1948.27, "word": " the", "probability": 0.35546875}, {"start": 1948.27, "end": 1948.27, "word": " data", "probability": 0.5830078125}, {"start": 1948.27, "end": 1948.27, "word": " but", "probability": 0.3388671875}, {"start": 1948.27, "end": 1948.55, "word": " we", "probability": 0.8046875}, {"start": 1948.55, "end": 1948.63, "word": " have", "probability": 0.2490234375}, {"start": 1948.63, "end": 1948.69, "word": " already", "probability": 0.428466796875}, {"start": 1948.69, "end": 1948.85, "word": " written", "probability": 0.7578125}, {"start": 1948.85, "end": 1949.45, "word": " it", "probability": 0.7646484375}, {"start": 1949.45, "end": 1950.51, "word": " you", "probability": 0.20703125}, {"start": 1950.51, "end": 1951.15, "word": " put", "probability": 0.259765625}, {"start": 1951.15, "end": 1951.47, "word": " the", "probability": 0.415771484375}, {"start": 1951.47, "end": 1951.75, "word": " code", "probability": 0.9052734375}, {"start": 1951.75, "end": 1951.75, "word": " in", "probability": 0.4248046875}, {"start": 1951.75, "end": 1951.75, "word": " it,", "probability": 0.76904296875}, {"start": 1951.81, "end": 1951.95, "word": " what", "probability": 0.6103515625}, {"start": 1951.95, "end": 1952.15, "word": " does", "probability": 0.56103515625}, {"start": 1952.15, "end": 1952.39, "word": " the", "probability": 0.56982421875}, {"start": 1952.39, "end": 1952.57, "word": " B", "probability": 0.280029296875}, {"start": 1952.57, "end": 1952.71, "word": " want", "probability": 0.2939453125}, {"start": 1952.71, "end": 1952.71, "word": " to", "probability": 0.90087890625}, {"start": 1952.71, "end": 1953.01, "word": " do", "probability": 0.9423828125}, {"start": 1953.01, "end": 1953.29, "word": " if", "probability": 0.6552734375}, {"start": 1953.29, "end": 1953.31, "word": " it", "probability": 0.38916015625}, {"start": 1953.31, "end": 1953.57, "word": " gets", "probability": 0.28759765625}, {"start": 1953.57, "end": 1954.61, "word": " the", "probability": 0.495849609375}, {"start": 1954.61, "end": 1954.89, "word": " data?", "probability": 0.8017578125}, {"start": 1955.37, "end": 1955.81, "word": " and", "probability": 0.413818359375}, {"start": 1955.81, "end": 1956.57, "word": " the", "probability": 0.5234375}, {"start": 1956.57, "end": 1956.67, "word": " same", "probability": 0.9013671875}, {"start": 1956.67, "end": 1957.07, "word": " thing", "probability": 0.83544921875}, {"start": 1957.07, "end": 1957.29, "word": " we", "probability": 0.399658203125}, {"start": 1957.29, "end": 1957.29, "word": " will", "probability": 0.6337890625}, {"start": 1957.29, "end": 1957.51, "word": " do", "probability": 0.8896484375}, {"start": 1957.51, "end": 1957.79, "word": " in", "probability": 0.384521484375}, {"start": 1957.79, "end": 1959.11, "word": " any", "probability": 0.72900390625}, {"start": 1959.11, "end": 1959.61, "word": " class", "probability": 0.88671875}, {"start": 1959.61, "end": 1959.77, "word": " that", "probability": 0.46630859375}, {"start": 1959.77, "end": 1960.11, "word": " listens", "probability": 0.458251953125}, {"start": 1960.11, "end": 1960.27, "word": " to", "probability": 0.96630859375}, {"start": 1960.27, "end": 1960.35, "word": " the", "probability": 0.287109375}, {"start": 1960.35, "end": 1960.51, "word": " A", "probability": 0.94287109375}, {"start": 1960.51, "end": 1962.35, "word": " because", "probability": 0.5234375}, {"start": 1962.35, "end": 1962.61, "word": " any", "probability": 0.468994140625}, {"start": 1962.61, "end": 1962.87, "word": " C", "probability": 0.74169921875}, {"start": 1962.87, "end": 1963.29, "word": " that", "probability": 0.78125}, {"start": 1963.29, "end": 1963.55, "word": " listens", "probability": 0.93701171875}, {"start": 1963.55, "end": 1963.73, "word": " to", "probability": 0.966796875}, {"start": 1963.73, "end": 1963.83, "word": " the", "probability": 0.7607421875}, {"start": 1963.83, "end": 1964.05, "word": " A", "probability": 0.9921875}, {"start": 1964.05, "end": 1965.03, "word": " must", "probability": 0.263671875}, {"start": 1965.03, "end": 1965.19, "word": " also", "probability": 0.43701171875}, {"start": 1965.19, "end": 1965.35, "word": " say", "probability": 0.529296875}, {"start": 1965.35, "end": 1966.23, "word": " implements", "probability": 0.59765625}, {"start": 1966.23, "end": 1966.91, "word": " a", "probability": 0.491455078125}, {"start": 1966.91, "end": 1967.29, "word": " listener", "probability": 0.83251953125}, {"start": 1967.29, "end": 1967.79, "word": " otherwise", "probability": 0.33251953125}, {"start": 1967.79, "end": 1968.03, "word": " it", "probability": 0.708984375}, {"start": 1968.03, "end": 1968.15, "word": " will", "probability": 0.7109375}, {"start": 1968.15, "end": 1968.15, "word": " not", "probability": 0.91552734375}, {"start": 1968.15, "end": 1968.63, "word": " accept", "probability": 0.7412109375}, {"start": 1968.63, "end": 1969.11, "word": " to", "probability": 0.499267578125}, {"start": 1969.11, "end": 1969.33, "word": " say", "probability": 0.533203125}, {"start": 1969.33, "end": 1969.79, "word": " add", "probability": 0.849609375}, {"start": 1969.79, "end": 1971.21, "word": " listener", "probability": 0.671875}, {"start": 1971.21, "end": 1971.47, "word": " to", "probability": 0.828125}, {"start": 1971.47, "end": 1971.51, "word": " the", "probability": 0.6943359375}, {"start": 1971.51, "end": 1971.67, "word": " C", "probability": 0.94677734375}], "temperature": 1.0}, {"id": 78, "seek": 199786, "start": 1973.34, "end": 1997.86, "text": "So we did the same thing with B, C and D Because all of them, B, C and D became of the type of A So I can go to A", "tokens": [6455, 321, 630, 264, 912, 551, 365, 363, 11, 383, 293, 413, 1436, 439, 295, 552, 11, 363, 11, 383, 293, 413, 3062, 295, 264, 2010, 295, 316, 407, 286, 393, 352, 281, 316], "avg_logprob": -0.4723214302744184, "compression_ratio": 1.2282608695652173, "no_speech_prob": 0.0, "words": [{"start": 1973.34, "end": 1973.58, "word": "So", "probability": 0.5458984375}, {"start": 1973.58, "end": 1973.76, "word": " we", "probability": 0.60009765625}, {"start": 1973.76, "end": 1973.76, "word": " did", "probability": 0.82421875}, {"start": 1973.76, "end": 1973.86, "word": " the", "probability": 0.857421875}, {"start": 1973.86, "end": 1973.86, "word": " same", "probability": 0.89208984375}, {"start": 1973.86, "end": 1974.38, "word": " thing", "probability": 0.7646484375}, {"start": 1974.38, "end": 1975.84, "word": " with", "probability": 0.398681640625}, {"start": 1975.84, "end": 1976.22, "word": " B,", "probability": 0.638671875}, {"start": 1976.64, "end": 1977.0, "word": " C", "probability": 0.71728515625}, {"start": 1977.0, "end": 1977.4, "word": " and", "probability": 0.65966796875}, {"start": 1977.4, "end": 1977.66, "word": " D", "probability": 0.99755859375}, {"start": 1977.66, "end": 1991.36, "word": " Because", "probability": 0.39892578125}, {"start": 1991.36, "end": 1991.64, "word": " all", "probability": 0.673828125}, {"start": 1991.64, "end": 1991.76, "word": " of", "probability": 0.6337890625}, {"start": 1991.76, "end": 1992.14, "word": " them,", "probability": 0.53515625}, {"start": 1992.4, "end": 1993.14, "word": " B,", "probability": 0.93310546875}, {"start": 1993.34, "end": 1993.5, "word": " C", "probability": 0.9111328125}, {"start": 1993.5, "end": 1993.62, "word": " and", "probability": 0.79931640625}, {"start": 1993.62, "end": 1993.74, "word": " D", "probability": 0.998046875}, {"start": 1993.74, "end": 1994.12, "word": " became", "probability": 0.436767578125}, {"start": 1994.12, "end": 1994.24, "word": " of", "probability": 0.171875}, {"start": 1994.24, "end": 1994.92, "word": " the", "probability": 0.7119140625}, {"start": 1994.92, "end": 1994.96, "word": " type", "probability": 0.50634765625}, {"start": 1994.96, "end": 1995.0, "word": " of", "probability": 0.431884765625}, {"start": 1995.0, "end": 1995.84, "word": " A", "probability": 0.4130859375}, {"start": 1995.84, "end": 1996.22, "word": " So", "probability": 0.2880859375}, {"start": 1996.22, "end": 1996.58, "word": " I", "probability": 0.7958984375}, {"start": 1996.58, "end": 1996.72, "word": " can", "probability": 0.82568359375}, {"start": 1996.72, "end": 1997.22, "word": " go", "probability": 0.48046875}, {"start": 1997.22, "end": 1997.48, "word": " to", "probability": 0.85009765625}, {"start": 1997.48, "end": 1997.86, "word": " A", "probability": 0.412109375}], "temperature": 1.0}, {"id": 79, "seek": 202960, "start": 2001.0, "end": 2029.6, "text": "and I will tell him add listener B and C and D now B, C and D are all registered with A but where are they registered? in this list, ok? ok, let's go back to the main gate we came to A and told it the word what should A do? tell this word to whom? to all existing listeners what will A do?", "tokens": [474, 286, 486, 980, 796, 909, 31569, 363, 293, 383, 293, 413, 586, 363, 11, 383, 293, 413, 366, 439, 13968, 365, 316, 457, 689, 366, 436, 13968, 30, 294, 341, 1329, 11, 3133, 30, 3133, 11, 718, 311, 352, 646, 281, 264, 2135, 8539, 321, 1361, 281, 316, 293, 1907, 309, 264, 1349, 437, 820, 316, 360, 30, 980, 341, 1349, 281, 7101, 30, 281, 439, 6741, 23274, 437, 486, 316, 360, 30], "avg_logprob": -0.5333333094914754, "compression_ratio": 1.6235955056179776, "no_speech_prob": 3.2782554626464844e-06, "words": [{"start": 2001.0, "end": 2001.22, "word": "and", "probability": 0.2073974609375}, {"start": 2001.22, "end": 2001.24, "word": " I", "probability": 0.66650390625}, {"start": 2001.24, "end": 2001.28, "word": " will", "probability": 0.369873046875}, {"start": 2001.28, "end": 2001.38, "word": " tell", "probability": 0.406982421875}, {"start": 2001.38, "end": 2001.5, "word": " him", "probability": 0.80712890625}, {"start": 2001.5, "end": 2001.72, "word": " add", "probability": 0.426513671875}, {"start": 2001.72, "end": 2002.2, "word": " listener", "probability": 0.69921875}, {"start": 2002.2, "end": 2003.24, "word": " B", "probability": 0.525390625}, {"start": 2003.24, "end": 2003.94, "word": " and", "probability": 0.87158203125}, {"start": 2003.94, "end": 2005.12, "word": " C", "probability": 0.79833984375}, {"start": 2005.12, "end": 2006.26, "word": " and", "probability": 0.299072265625}, {"start": 2006.26, "end": 2008.48, "word": " D", "probability": 0.99169921875}, {"start": 2008.48, "end": 2009.38, "word": " now", "probability": 0.29052734375}, {"start": 2009.38, "end": 2009.7, "word": " B,", "probability": 0.583984375}, {"start": 2009.94, "end": 2010.16, "word": " C", "probability": 0.6513671875}, {"start": 2010.16, "end": 2010.4, "word": " and", "probability": 0.6171875}, {"start": 2010.4, "end": 2010.66, "word": " D", "probability": 0.99560546875}, {"start": 2010.66, "end": 2011.12, "word": " are", "probability": 0.32177734375}, {"start": 2011.12, "end": 2011.12, "word": " all", "probability": 0.76708984375}, {"start": 2011.12, "end": 2011.62, "word": " registered", "probability": 0.423095703125}, {"start": 2011.62, "end": 2011.88, "word": " with", "probability": 0.318603515625}, {"start": 2011.88, "end": 2012.18, "word": " A", "probability": 0.78515625}, {"start": 2012.18, "end": 2013.08, "word": " but", "probability": 0.7431640625}, {"start": 2013.08, "end": 2013.68, "word": " where", "probability": 0.5439453125}, {"start": 2013.68, "end": 2013.68, "word": " are", "probability": 0.2291259765625}, {"start": 2013.68, "end": 2013.68, "word": " they", "probability": 0.7451171875}, {"start": 2013.68, "end": 2013.68, "word": " registered?", "probability": 0.78369140625}, {"start": 2014.8, "end": 2014.86, "word": " in", "probability": 0.73046875}, {"start": 2014.86, "end": 2015.68, "word": " this", "probability": 0.7587890625}, {"start": 2015.68, "end": 2016.26, "word": " list,", "probability": 0.916015625}, {"start": 2016.54, "end": 2017.34, "word": " ok?", "probability": 0.33251953125}, {"start": 2018.58, "end": 2018.82, "word": " ok,", "probability": 0.55322265625}, {"start": 2018.94, "end": 2019.12, "word": " let's", "probability": 0.810546875}, {"start": 2019.12, "end": 2019.28, "word": " go", "probability": 0.7041015625}, {"start": 2019.28, "end": 2019.32, "word": " back", "probability": 0.86865234375}, {"start": 2019.32, "end": 2019.42, "word": " to", "probability": 0.96240234375}, {"start": 2019.42, "end": 2019.58, "word": " the", "probability": 0.65771484375}, {"start": 2019.58, "end": 2019.7, "word": " main", "probability": 0.89697265625}, {"start": 2019.7, "end": 2020.08, "word": " gate", "probability": 0.2471923828125}, {"start": 2020.08, "end": 2020.36, "word": " we", "probability": 0.4921875}, {"start": 2020.36, "end": 2020.54, "word": " came", "probability": 0.59765625}, {"start": 2020.54, "end": 2020.72, "word": " to", "probability": 0.95703125}, {"start": 2020.72, "end": 2020.98, "word": " A", "probability": 0.88427734375}, {"start": 2020.98, "end": 2021.16, "word": " and", "probability": 0.8681640625}, {"start": 2021.16, "end": 2021.36, "word": " told", "probability": 0.115478515625}, {"start": 2021.36, "end": 2021.68, "word": " it", "probability": 0.466796875}, {"start": 2021.68, "end": 2021.82, "word": " the", "probability": 0.35791015625}, {"start": 2021.82, "end": 2022.1, "word": " word", "probability": 0.95068359375}, {"start": 2022.1, "end": 2022.92, "word": " what", "probability": 0.71240234375}, {"start": 2022.92, "end": 2023.04, "word": " should", "probability": 0.68505859375}, {"start": 2023.04, "end": 2023.78, "word": " A", "probability": 0.806640625}, {"start": 2023.78, "end": 2023.78, "word": " do?", "probability": 0.93017578125}, {"start": 2024.48, "end": 2025.0, "word": " tell", "probability": 0.296630859375}, {"start": 2025.0, "end": 2025.2, "word": " this", "probability": 0.32568359375}, {"start": 2025.2, "end": 2025.44, "word": " word", "probability": 0.7529296875}, {"start": 2025.44, "end": 2025.74, "word": " to", "probability": 0.89599609375}, {"start": 2025.74, "end": 2025.94, "word": " whom?", "probability": 0.79052734375}, {"start": 2026.5, "end": 2027.02, "word": " to", "probability": 0.79833984375}, {"start": 2027.02, "end": 2027.42, "word": " all", "probability": 0.95068359375}, {"start": 2027.42, "end": 2027.54, "word": " existing", "probability": 0.39013671875}, {"start": 2027.54, "end": 2028.02, "word": " listeners", "probability": 0.904296875}, {"start": 2028.02, "end": 2028.8, "word": " what", "probability": 0.70947265625}, {"start": 2028.8, "end": 2028.94, "word": " will", "probability": 0.369140625}, {"start": 2028.94, "end": 2029.5, "word": " A", "probability": 0.927734375}, {"start": 2029.5, "end": 2029.6, "word": " do?", "probability": 0.84521484375}], "temperature": 1.0}, {"id": 80, "seek": 205785, "start": 2030.89, "end": 2057.85, "text": "it will come here and make a loop this loop for each A listener which includes B, C and D it will execute which one? data received it will call the data received in B, C and D it will make a run it will execute B received, C received and D received now if I want to add a new element that listens to this", "tokens": [270, 486, 808, 510, 293, 652, 257, 6367, 341, 6367, 337, 1184, 316, 31569, 597, 5974, 363, 11, 383, 293, 413, 309, 486, 14483, 597, 472, 30, 1412, 4613, 309, 486, 818, 264, 1412, 4613, 294, 363, 11, 383, 293, 413, 309, 486, 652, 257, 1190, 309, 486, 14483, 363, 4613, 11, 383, 4613, 293, 413, 4613, 586, 498, 286, 528, 281, 909, 257, 777, 4478, 300, 35959, 281, 341], "avg_logprob": -0.5092429778945278, "compression_ratio": 1.9119496855345912, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 2030.89, "end": 2031.17, "word": "it", "probability": 0.269775390625}, {"start": 2031.17, "end": 2031.17, "word": " will", "probability": 0.62060546875}, {"start": 2031.17, "end": 2031.39, "word": " come", "probability": 0.61181640625}, {"start": 2031.39, "end": 2031.71, "word": " here", "probability": 0.8046875}, {"start": 2031.71, "end": 2032.85, "word": " and", "probability": 0.65478515625}, {"start": 2032.85, "end": 2033.13, "word": " make", "probability": 0.343994140625}, {"start": 2033.13, "end": 2033.33, "word": " a", "probability": 0.7333984375}, {"start": 2033.33, "end": 2033.59, "word": " loop", "probability": 0.947265625}, {"start": 2033.59, "end": 2034.25, "word": " this", "probability": 0.189208984375}, {"start": 2034.25, "end": 2034.61, "word": " loop", "probability": 0.92529296875}, {"start": 2034.61, "end": 2035.01, "word": " for", "probability": 0.6875}, {"start": 2035.01, "end": 2035.25, "word": " each", "probability": 0.537109375}, {"start": 2035.25, "end": 2035.43, "word": " A", "probability": 0.58154296875}, {"start": 2035.43, "end": 2035.77, "word": " listener", "probability": 0.70849609375}, {"start": 2035.77, "end": 2036.19, "word": " which", "probability": 0.307373046875}, {"start": 2036.19, "end": 2036.57, "word": " includes", "probability": 0.2476806640625}, {"start": 2036.57, "end": 2037.09, "word": " B,", "probability": 0.80517578125}, {"start": 2037.27, "end": 2037.61, "word": " C", "probability": 0.578125}, {"start": 2037.61, "end": 2038.19, "word": " and", "probability": 0.634765625}, {"start": 2038.19, "end": 2038.31, "word": " D", "probability": 0.9892578125}, {"start": 2038.31, "end": 2038.45, "word": " it", "probability": 0.1729736328125}, {"start": 2038.45, "end": 2038.51, "word": " will", "probability": 0.56591796875}, {"start": 2038.51, "end": 2038.77, "word": " execute", "probability": 0.2841796875}, {"start": 2038.77, "end": 2038.97, "word": " which", "probability": 0.2451171875}, {"start": 2038.97, "end": 2039.47, "word": " one?", "probability": 0.330078125}, {"start": 2039.71, "end": 2039.97, "word": " data", "probability": 0.63330078125}, {"start": 2039.97, "end": 2040.29, "word": " received", "probability": 0.69921875}, {"start": 2040.29, "end": 2040.43, "word": " it", "probability": 0.568359375}, {"start": 2040.43, "end": 2041.03, "word": " will", "probability": 0.822265625}, {"start": 2041.03, "end": 2041.25, "word": " call", "probability": 0.1646728515625}, {"start": 2041.25, "end": 2041.39, "word": " the", "probability": 0.560546875}, {"start": 2041.39, "end": 2041.57, "word": " data", "probability": 0.85205078125}, {"start": 2041.57, "end": 2041.95, "word": " received", "probability": 0.71142578125}, {"start": 2041.95, "end": 2042.41, "word": " in", "probability": 0.402099609375}, {"start": 2042.41, "end": 2042.71, "word": " B,", "probability": 0.88330078125}, {"start": 2042.85, "end": 2043.29, "word": " C", "probability": 0.880859375}, {"start": 2043.29, "end": 2044.07, "word": " and", "probability": 0.8466796875}, {"start": 2044.07, "end": 2044.31, "word": " D", "probability": 0.99755859375}, {"start": 2044.31, "end": 2047.21, "word": " it", "probability": 0.40234375}, {"start": 2047.21, "end": 2047.31, "word": " will", "probability": 0.76220703125}, {"start": 2047.31, "end": 2047.61, "word": " make", "probability": 0.393310546875}, {"start": 2047.61, "end": 2047.71, "word": " a", "probability": 0.765625}, {"start": 2047.71, "end": 2047.99, "word": " run", "probability": 0.90966796875}, {"start": 2047.99, "end": 2049.47, "word": " it", "probability": 0.411376953125}, {"start": 2049.47, "end": 2049.67, "word": " will", "probability": 0.81640625}, {"start": 2049.67, "end": 2049.99, "word": " execute", "probability": 0.81640625}, {"start": 2049.99, "end": 2050.33, "word": " B", "probability": 0.95556640625}, {"start": 2050.33, "end": 2051.05, "word": " received,", "probability": 0.708984375}, {"start": 2051.15, "end": 2051.31, "word": " C", "probability": 0.96044921875}, {"start": 2051.31, "end": 2051.93, "word": " received", "probability": 0.78466796875}, {"start": 2051.93, "end": 2052.61, "word": " and", "probability": 0.80126953125}, {"start": 2052.61, "end": 2052.73, "word": " D", "probability": 0.998046875}, {"start": 2052.73, "end": 2053.21, "word": " received", "probability": 0.80322265625}, {"start": 2053.21, "end": 2053.75, "word": " now", "probability": 0.2978515625}, {"start": 2053.75, "end": 2053.93, "word": " if", "probability": 0.82958984375}, {"start": 2053.93, "end": 2054.15, "word": " I", "probability": 0.78466796875}, {"start": 2054.15, "end": 2054.15, "word": " want", "probability": 0.351318359375}, {"start": 2054.15, "end": 2054.23, "word": " to", "probability": 0.96923828125}, {"start": 2054.23, "end": 2054.57, "word": " add", "probability": 0.9052734375}, {"start": 2054.57, "end": 2055.77, "word": " a", "probability": 0.69384765625}, {"start": 2055.77, "end": 2055.81, "word": " new", "probability": 0.8955078125}, {"start": 2055.81, "end": 2056.11, "word": " element", "probability": 0.7275390625}, {"start": 2056.11, "end": 2056.47, "word": " that", "probability": 0.408447265625}, {"start": 2056.47, "end": 2056.73, "word": " listens", "probability": 0.3291015625}, {"start": 2056.73, "end": 2056.91, "word": " to", "probability": 0.94873046875}, {"start": 2056.91, "end": 2057.85, "word": " this", "probability": 0.5986328125}], "temperature": 1.0}, {"id": 81, "seek": 206086, "start": 2058.36, "end": 2060.86, "text": "Because all I have to do is add the new class", "tokens": [21831, 439, 286, 362, 281, 360, 307, 909, 264, 777, 1508], "avg_logprob": -0.6471354415019354, "compression_ratio": 0.8490566037735849, "no_speech_prob": 0.0, "words": [{"start": 2058.36, "end": 2058.64, "word": "Because", "probability": 0.202880859375}, {"start": 2058.64, "end": 2058.9, "word": " all", "probability": 0.44921875}, {"start": 2058.9, "end": 2059.06, "word": " I", "probability": 0.6494140625}, {"start": 2059.06, "end": 2059.14, "word": " have", "probability": 0.69384765625}, {"start": 2059.14, "end": 2059.28, "word": " to", "probability": 0.970703125}, {"start": 2059.28, "end": 2059.56, "word": " do", "probability": 0.9501953125}, {"start": 2059.56, "end": 2059.86, "word": " is", "probability": 0.8427734375}, {"start": 2059.86, "end": 2060.1, "word": " add", "probability": 0.4921875}, {"start": 2060.1, "end": 2060.28, "word": " the", "probability": 0.273681640625}, {"start": 2060.28, "end": 2060.38, "word": " new", "probability": 0.85400390625}, {"start": 2060.38, "end": 2060.86, "word": " class", "probability": 0.57080078125}], "temperature": 1.0}, {"id": 82, "seek": 209263, "start": 2065.19, "end": 2092.63, "text": " Ok? Wait a minute, you don't know for example, this Ensofdk listens to the changes in the A. You are a new programmer, you came to the program and you don't know what to do. Ok? You came to the main, you found the guys who added B, C and D. You said let's do what? Let's do like them. So you go to the A and you say add A listener and add 2 to the E. So this is assuming that we did E E equals U E.", "tokens": [3477, 30, 3802, 257, 3456, 11, 291, 500, 380, 458, 337, 1365, 11, 341, 2193, 539, 69, 67, 74, 35959, 281, 264, 2962, 294, 264, 316, 13, 509, 366, 257, 777, 32116, 11, 291, 1361, 281, 264, 1461, 293, 291, 500, 380, 458, 437, 281, 360, 13, 3477, 30, 509, 1361, 281, 264, 2135, 11, 291, 1352, 264, 1074, 567, 3869, 363, 11, 383, 293, 413, 13, 509, 848, 718, 311, 360, 437, 30, 961, 311, 360, 411, 552, 13, 407, 291, 352, 281, 264, 316, 293, 291, 584, 909, 316, 31569, 293, 909, 568, 281, 264, 462, 13, 407, 341, 307, 11926, 300, 321, 630, 462, 462, 6915, 624, 462, 13], "avg_logprob": -0.5436946987050825, "compression_ratio": 1.6906779661016949, "no_speech_prob": 0.0002665519714355469, "words": [{"start": 2065.19, "end": 2065.59, "word": " Ok?", "probability": 0.056976318359375}, {"start": 2065.97, "end": 2066.21, "word": " Wait", "probability": 0.326416015625}, {"start": 2066.21, "end": 2066.33, "word": " a", "probability": 0.57177734375}, {"start": 2066.33, "end": 2066.33, "word": " minute,", "probability": 0.483154296875}, {"start": 2066.41, "end": 2066.49, "word": " you", "probability": 0.57763671875}, {"start": 2066.49, "end": 2066.61, "word": " don't", "probability": 0.85888671875}, {"start": 2066.61, "end": 2066.95, "word": " know", "probability": 0.84326171875}, {"start": 2066.95, "end": 2067.21, "word": " for", "probability": 0.2498779296875}, {"start": 2067.21, "end": 2067.33, "word": " example,", "probability": 0.89306640625}, {"start": 2067.45, "end": 2067.69, "word": " this", "probability": 0.78369140625}, {"start": 2067.69, "end": 2068.43, "word": " Ensofdk", "probability": 0.386322021484375}, {"start": 2068.43, "end": 2068.89, "word": " listens", "probability": 0.52099609375}, {"start": 2068.89, "end": 2069.31, "word": " to", "probability": 0.91064453125}, {"start": 2069.31, "end": 2069.85, "word": " the", "probability": 0.63720703125}, {"start": 2069.85, "end": 2070.19, "word": " changes", "probability": 0.64306640625}, {"start": 2070.19, "end": 2070.83, "word": " in", "probability": 0.71533203125}, {"start": 2070.83, "end": 2071.47, "word": " the", "probability": 0.444091796875}, {"start": 2071.47, "end": 2071.55, "word": " A.", "probability": 0.428955078125}, {"start": 2071.71, "end": 2071.97, "word": " You", "probability": 0.86181640625}, {"start": 2071.97, "end": 2072.03, "word": " are", "probability": 0.29638671875}, {"start": 2072.03, "end": 2072.09, "word": " a", "probability": 0.5732421875}, {"start": 2072.09, "end": 2072.59, "word": " new", "probability": 0.615234375}, {"start": 2072.59, "end": 2072.59, "word": " programmer,", "probability": 0.8740234375}, {"start": 2072.81, "end": 2072.87, "word": " you", "probability": 0.7763671875}, {"start": 2072.87, "end": 2073.03, "word": " came", "probability": 0.61865234375}, {"start": 2073.03, "end": 2073.39, "word": " to", "probability": 0.85400390625}, {"start": 2073.39, "end": 2073.49, "word": " the", "probability": 0.744140625}, {"start": 2073.49, "end": 2073.83, "word": " program", "probability": 0.51416015625}, {"start": 2073.83, "end": 2073.99, "word": " and", "probability": 0.7216796875}, {"start": 2073.99, "end": 2074.07, "word": " you", "probability": 0.4443359375}, {"start": 2074.07, "end": 2074.15, "word": " don't", "probability": 0.926513671875}, {"start": 2074.15, "end": 2074.41, "word": " know", "probability": 0.88720703125}, {"start": 2074.41, "end": 2074.57, "word": " what", "probability": 0.91162109375}, {"start": 2074.57, "end": 2074.69, "word": " to", "probability": 0.90771484375}, {"start": 2074.69, "end": 2074.87, "word": " do.", "probability": 0.96533203125}, {"start": 2075.45, "end": 2075.67, "word": " Ok?", "probability": 0.7373046875}, {"start": 2076.43, "end": 2076.83, "word": " You", "probability": 0.900390625}, {"start": 2076.83, "end": 2077.03, "word": " came", "probability": 0.765625}, {"start": 2077.03, "end": 2077.23, "word": " to", "probability": 0.95068359375}, {"start": 2077.23, "end": 2077.31, "word": " the", "probability": 0.73779296875}, {"start": 2077.31, "end": 2077.39, "word": " main,", "probability": 0.8466796875}, {"start": 2077.43, "end": 2077.53, "word": " you", "probability": 0.8447265625}, {"start": 2077.53, "end": 2077.71, "word": " found", "probability": 0.386474609375}, {"start": 2077.71, "end": 2077.87, "word": " the", "probability": 0.58447265625}, {"start": 2077.87, "end": 2078.15, "word": " guys", "probability": 0.6982421875}, {"start": 2078.15, "end": 2078.27, "word": " who", "probability": 0.12060546875}, {"start": 2078.27, "end": 2078.61, "word": " added", "probability": 0.235595703125}, {"start": 2078.61, "end": 2078.97, "word": " B,", "probability": 0.65234375}, {"start": 2079.11, "end": 2079.31, "word": " C", "probability": 0.7490234375}, {"start": 2079.31, "end": 2079.41, "word": " and", "probability": 0.73486328125}, {"start": 2079.41, "end": 2079.51, "word": " D.", "probability": 0.9765625}, {"start": 2079.57, "end": 2079.61, "word": " You", "probability": 0.77099609375}, {"start": 2079.61, "end": 2079.77, "word": " said", "probability": 0.7109375}, {"start": 2079.77, "end": 2080.33, "word": " let's", "probability": 0.62255859375}, {"start": 2080.33, "end": 2080.51, "word": " do", "probability": 0.81982421875}, {"start": 2080.51, "end": 2080.81, "word": " what?", "probability": 0.515625}, {"start": 2081.17, "end": 2081.35, "word": " Let's", "probability": 0.7156982421875}, {"start": 2081.35, "end": 2081.51, "word": " do", "probability": 0.89208984375}, {"start": 2081.51, "end": 2081.69, "word": " like", "probability": 0.61181640625}, {"start": 2081.69, "end": 2081.93, "word": " them.", "probability": 0.89453125}, {"start": 2082.33, "end": 2082.65, "word": " So", "probability": 0.475830078125}, {"start": 2082.65, "end": 2082.81, "word": " you", "probability": 0.857421875}, {"start": 2082.81, "end": 2082.95, "word": " go", "probability": 0.9189453125}, {"start": 2082.95, "end": 2083.09, "word": " to", "probability": 0.9501953125}, {"start": 2083.09, "end": 2083.19, "word": " the", "probability": 0.46875}, {"start": 2083.19, "end": 2083.43, "word": " A", "probability": 0.951171875}, {"start": 2083.43, "end": 2083.87, "word": " and", "probability": 0.66650390625}, {"start": 2083.87, "end": 2084.01, "word": " you", "probability": 0.56982421875}, {"start": 2084.01, "end": 2084.17, "word": " say", "probability": 0.66845703125}, {"start": 2084.17, "end": 2084.67, "word": " add", "probability": 0.60595703125}, {"start": 2084.67, "end": 2085.59, "word": " A", "probability": 0.54541015625}, {"start": 2085.59, "end": 2085.91, "word": " listener", "probability": 0.720703125}, {"start": 2085.91, "end": 2086.23, "word": " and", "probability": 0.798828125}, {"start": 2086.23, "end": 2086.43, "word": " add", "probability": 0.599609375}, {"start": 2086.43, "end": 2086.73, "word": " 2", "probability": 0.258544921875}, {"start": 2086.73, "end": 2086.93, "word": " to", "probability": 0.5908203125}, {"start": 2086.93, "end": 2086.97, "word": " the", "probability": 0.494140625}, {"start": 2086.97, "end": 2087.15, "word": " E.", "probability": 0.92626953125}, {"start": 2087.63, "end": 2087.81, "word": " So", "probability": 0.40185546875}, {"start": 2087.81, "end": 2087.99, "word": " this", "probability": 0.290771484375}, {"start": 2087.99, "end": 2088.03, "word": " is", "probability": 0.50537109375}, {"start": 2088.03, "end": 2088.27, "word": " assuming", "probability": 0.30078125}, {"start": 2088.27, "end": 2088.63, "word": " that", "probability": 0.84130859375}, {"start": 2088.63, "end": 2088.85, "word": " we", "probability": 0.9228515625}, {"start": 2088.85, "end": 2089.17, "word": " did", "probability": 0.395263671875}, {"start": 2089.17, "end": 2089.95, "word": " E", "probability": 0.328369140625}, {"start": 2089.95, "end": 2090.37, "word": " E", "probability": 0.479248046875}, {"start": 2090.37, "end": 2090.95, "word": " equals", "probability": 0.354736328125}, {"start": 2090.95, "end": 2091.37, "word": " U", "probability": 0.51806640625}, {"start": 2091.37, "end": 2092.63, "word": " E.", "probability": 0.953125}], "temperature": 1.0}, {"id": 83, "seek": 210746, "start": 2106.07, "end": 2107.47, "text": "implement", "tokens": [332, 43704], "avg_logprob": -0.8854166666666666, "compression_ratio": 0.5294117647058824, "no_speech_prob": 6.020069122314453e-05, "words": [{"start": 2106.0699999999997, "end": 2107.47, "word": "implement", "probability": 0.5421142578125}], "temperature": 1.0}, {"id": 84, "seek": 213705, "start": 2109.63, "end": 2137.05, "text": "What is a listener? Isn't that what it wants? An Arduino. We made it like that and it told you to implement a method called what? Data received. So you specified in this method what you want it to do in the data if it reaches you. Okay, you say system.out.println E received plus data. Okay? Done. Okay.", "tokens": [3748, 307, 257, 31569, 30, 6998, 380, 300, 437, 309, 2738, 30, 1107, 39539, 13, 492, 1027, 309, 411, 300, 293, 309, 1907, 291, 281, 4445, 257, 3170, 1219, 437, 30, 11888, 4613, 13, 407, 291, 22206, 294, 341, 3170, 437, 291, 528, 309, 281, 360, 294, 264, 1412, 498, 309, 14235, 291, 13, 1033, 11, 291, 584, 1185, 13, 346, 13, 14030, 75, 77, 462, 4613, 1804, 1412, 13, 1033, 30, 18658, 13, 1033, 13], "avg_logprob": -0.5900973871156767, "compression_ratio": 1.5538461538461539, "no_speech_prob": 1.4185905456542969e-05, "words": [{"start": 2109.63, "end": 2109.89, "word": "What", "probability": 0.17822265625}, {"start": 2109.89, "end": 2109.93, "word": " is", "probability": 0.392822265625}, {"start": 2109.93, "end": 2110.11, "word": " a", "probability": 0.4287109375}, {"start": 2110.11, "end": 2110.29, "word": " listener?", "probability": 0.6708984375}, {"start": 2110.83, "end": 2111.13, "word": " Isn't", "probability": 0.589599609375}, {"start": 2111.13, "end": 2111.31, "word": " that", "probability": 0.41162109375}, {"start": 2111.31, "end": 2111.47, "word": " what", "probability": 0.62353515625}, {"start": 2111.47, "end": 2111.55, "word": " it", "probability": 0.280029296875}, {"start": 2111.55, "end": 2111.79, "word": " wants?", "probability": 0.67529296875}, {"start": 2111.99, "end": 2112.39, "word": " An", "probability": 0.1866455078125}, {"start": 2112.39, "end": 2112.73, "word": " Arduino.", "probability": 0.36328125}, {"start": 2113.39, "end": 2113.47, "word": " We", "probability": 0.64013671875}, {"start": 2113.47, "end": 2113.69, "word": " made", "probability": 0.51904296875}, {"start": 2113.69, "end": 2113.91, "word": " it", "probability": 0.861328125}, {"start": 2113.91, "end": 2114.03, "word": " like", "probability": 0.6982421875}, {"start": 2114.03, "end": 2114.45, "word": " that", "probability": 0.5322265625}, {"start": 2114.45, "end": 2114.69, "word": " and", "probability": 0.400634765625}, {"start": 2114.69, "end": 2114.69, "word": " it", "probability": 0.56103515625}, {"start": 2114.69, "end": 2114.87, "word": " told", "probability": 0.3515625}, {"start": 2114.87, "end": 2115.61, "word": " you", "probability": 0.84521484375}, {"start": 2115.61, "end": 2115.75, "word": " to", "probability": 0.837890625}, {"start": 2115.75, "end": 2116.89, "word": " implement", "probability": 0.65625}, {"start": 2116.89, "end": 2117.43, "word": " a", "probability": 0.74072265625}, {"start": 2117.43, "end": 2117.85, "word": " method", "probability": 0.95361328125}, {"start": 2117.85, "end": 2118.25, "word": " called", "probability": 0.52734375}, {"start": 2118.25, "end": 2118.45, "word": " what?", "probability": 0.29638671875}, {"start": 2119.31, "end": 2119.79, "word": " Data", "probability": 0.6630859375}, {"start": 2119.79, "end": 2120.13, "word": " received.", "probability": 0.2685546875}, {"start": 2120.21, "end": 2120.33, "word": " So", "probability": 0.2196044921875}, {"start": 2120.33, "end": 2120.57, "word": " you", "probability": 0.77392578125}, {"start": 2120.57, "end": 2120.91, "word": " specified", "probability": 0.1204833984375}, {"start": 2120.91, "end": 2121.17, "word": " in", "probability": 0.73486328125}, {"start": 2121.17, "end": 2121.27, "word": " this", "probability": 0.783203125}, {"start": 2121.27, "end": 2121.53, "word": " method", "probability": 0.96142578125}, {"start": 2121.53, "end": 2121.89, "word": " what", "probability": 0.81591796875}, {"start": 2121.89, "end": 2121.99, "word": " you", "probability": 0.6083984375}, {"start": 2121.99, "end": 2122.17, "word": " want", "probability": 0.63623046875}, {"start": 2122.17, "end": 2122.37, "word": " it", "probability": 0.86181640625}, {"start": 2122.37, "end": 2122.41, "word": " to", "probability": 0.95654296875}, {"start": 2122.41, "end": 2122.65, "word": " do", "probability": 0.953125}, {"start": 2122.65, "end": 2122.77, "word": " in", "probability": 0.54931640625}, {"start": 2122.77, "end": 2122.89, "word": " the", "probability": 0.78564453125}, {"start": 2122.89, "end": 2123.13, "word": " data", "probability": 0.943359375}, {"start": 2123.13, "end": 2123.29, "word": " if", "probability": 0.2509765625}, {"start": 2123.29, "end": 2123.35, "word": " it", "probability": 0.58251953125}, {"start": 2123.35, "end": 2123.53, "word": " reaches", "probability": 0.54931640625}, {"start": 2123.53, "end": 2123.85, "word": " you.", "probability": 0.93603515625}, {"start": 2124.21, "end": 2124.45, "word": " Okay,", "probability": 0.270263671875}, {"start": 2124.47, "end": 2124.61, "word": " you", "probability": 0.78955078125}, {"start": 2124.61, "end": 2124.75, "word": " say", "probability": 0.36572265625}, {"start": 2124.75, "end": 2125.31, "word": " system", "probability": 0.77197265625}, {"start": 2125.31, "end": 2126.39, "word": ".out", "probability": 0.813720703125}, {"start": 2126.39, "end": 2128.09, "word": ".println", "probability": 0.9453125}, {"start": 2128.09, "end": 2129.57, "word": " E", "probability": 0.06298828125}, {"start": 2129.57, "end": 2130.93, "word": " received", "probability": 0.491455078125}, {"start": 2130.93, "end": 2131.69, "word": " plus", "probability": 0.309326171875}, {"start": 2131.69, "end": 2133.65, "word": " data.", "probability": 0.93310546875}, {"start": 2135.83, "end": 2136.31, "word": " Okay?", "probability": 0.6552734375}, {"start": 2136.45, "end": 2136.75, "word": " Done.", "probability": 0.361328125}, {"start": 2136.87, "end": 2137.05, "word": " Okay.", "probability": 0.447509765625}], "temperature": 1.0}, {"id": 85, "seek": 216188, "start": 2138.62, "end": 2161.88, "text": "All you have to do is say add to the set. We haven't changed anything in the a. Do the n run and it will tell you a,b,c,d,e, all of them are what? All of them are the creators of the data. And you can also, what do you do guys? Take it out of my head, pay attention to it, it has passed through you before, but you, yes, no, take it out with me. We also want to make an element that listens to the a.", "tokens": [7868, 291, 362, 281, 360, 307, 584, 909, 281, 264, 992, 13, 492, 2378, 380, 3105, 1340, 294, 264, 257, 13, 1144, 264, 297, 1190, 293, 309, 486, 980, 291, 257, 11, 65, 11, 66, 11, 67, 11, 68, 11, 439, 295, 552, 366, 437, 30, 1057, 295, 552, 366, 264, 16039, 295, 264, 1412, 13, 400, 291, 393, 611, 11, 437, 360, 291, 360, 1074, 30, 3664, 309, 484, 295, 452, 1378, 11, 1689, 3202, 281, 309, 11, 309, 575, 4678, 807, 291, 949, 11, 457, 291, 11, 2086, 11, 572, 11, 747, 309, 484, 365, 385, 13, 492, 611, 528, 281, 652, 364, 4478, 300, 35959, 281, 264, 257, 13], "avg_logprob": -0.6139380446577494, "compression_ratio": 1.680672268907563, "no_speech_prob": 2.9206275939941406e-06, "words": [{"start": 2138.62, "end": 2138.94, "word": "All", "probability": 0.03863525390625}, {"start": 2138.94, "end": 2138.94, "word": " you", "probability": 0.8056640625}, {"start": 2138.94, "end": 2139.08, "word": " have", "probability": 0.45654296875}, {"start": 2139.08, "end": 2139.08, "word": " to", "probability": 0.96923828125}, {"start": 2139.08, "end": 2139.18, "word": " do", "probability": 0.76318359375}, {"start": 2139.18, "end": 2139.18, "word": " is", "probability": 0.9189453125}, {"start": 2139.18, "end": 2139.2, "word": " say", "probability": 0.263427734375}, {"start": 2139.2, "end": 2139.48, "word": " add", "probability": 0.26220703125}, {"start": 2139.48, "end": 2139.64, "word": " to", "probability": 0.453125}, {"start": 2139.64, "end": 2139.66, "word": " the", "probability": 0.513671875}, {"start": 2139.66, "end": 2139.8, "word": " set.", "probability": 0.295654296875}, {"start": 2140.34, "end": 2140.66, "word": " We", "probability": 0.48291015625}, {"start": 2140.66, "end": 2140.7, "word": " haven't", "probability": 0.7010498046875}, {"start": 2140.7, "end": 2141.06, "word": " changed", "probability": 0.84521484375}, {"start": 2141.06, "end": 2141.68, "word": " anything", "probability": 0.71240234375}, {"start": 2141.68, "end": 2143.22, "word": " in", "probability": 0.6240234375}, {"start": 2143.22, "end": 2143.34, "word": " the", "probability": 0.51416015625}, {"start": 2143.34, "end": 2143.48, "word": " a.", "probability": 0.1790771484375}, {"start": 2143.94, "end": 2144.26, "word": " Do", "probability": 0.1876220703125}, {"start": 2144.26, "end": 2144.4, "word": " the", "probability": 0.6376953125}, {"start": 2144.4, "end": 2144.56, "word": " n", "probability": 0.1685791015625}, {"start": 2144.56, "end": 2144.78, "word": " run", "probability": 0.7177734375}, {"start": 2144.78, "end": 2146.08, "word": " and", "probability": 0.402099609375}, {"start": 2146.08, "end": 2146.24, "word": " it", "probability": 0.52880859375}, {"start": 2146.24, "end": 2146.24, "word": " will", "probability": 0.70751953125}, {"start": 2146.24, "end": 2146.44, "word": " tell", "probability": 0.312744140625}, {"start": 2146.44, "end": 2146.6, "word": " you", "probability": 0.87841796875}, {"start": 2146.6, "end": 2146.84, "word": " a", "probability": 0.53955078125}, {"start": 2146.84, "end": 2147.12, "word": ",b", "probability": 0.724853515625}, {"start": 2147.12, "end": 2147.5, "word": ",c", "probability": 0.984375}, {"start": 2147.5, "end": 2147.82, "word": ",d", "probability": 0.976806640625}, {"start": 2147.82, "end": 2148.12, "word": ",e,", "probability": 0.93994140625}, {"start": 2148.18, "end": 2148.34, "word": " all", "probability": 0.4091796875}, {"start": 2148.34, "end": 2148.36, "word": " of", "probability": 0.38623046875}, {"start": 2148.36, "end": 2148.54, "word": " them", "probability": 0.6533203125}, {"start": 2148.54, "end": 2148.74, "word": " are", "probability": 0.64501953125}, {"start": 2148.74, "end": 2148.74, "word": " what?", "probability": 0.340576171875}, {"start": 2149.16, "end": 2149.44, "word": " All", "probability": 0.60302734375}, {"start": 2149.44, "end": 2149.44, "word": " of", "probability": 0.75927734375}, {"start": 2149.44, "end": 2149.52, "word": " them", "probability": 0.89990234375}, {"start": 2149.52, "end": 2149.6, "word": " are", "probability": 0.849609375}, {"start": 2149.6, "end": 2149.72, "word": " the", "probability": 0.37451171875}, {"start": 2149.72, "end": 2149.92, "word": " creators", "probability": 0.08795166015625}, {"start": 2149.92, "end": 2150.74, "word": " of", "probability": 0.96826171875}, {"start": 2150.74, "end": 2150.8, "word": " the", "probability": 0.61865234375}, {"start": 2150.8, "end": 2151.06, "word": " data.", "probability": 0.83837890625}, {"start": 2152.8, "end": 2152.88, "word": " And", "probability": 0.6064453125}, {"start": 2152.88, "end": 2153.06, "word": " you", "probability": 0.35791015625}, {"start": 2153.06, "end": 2153.14, "word": " can", "probability": 0.7216796875}, {"start": 2153.14, "end": 2153.38, "word": " also,", "probability": 0.81005859375}, {"start": 2153.4, "end": 2153.52, "word": " what", "probability": 0.67236328125}, {"start": 2153.52, "end": 2153.58, "word": " do", "probability": 0.420654296875}, {"start": 2153.58, "end": 2153.6, "word": " you", "probability": 0.96533203125}, {"start": 2153.6, "end": 2153.78, "word": " do", "probability": 0.66748046875}, {"start": 2153.78, "end": 2154.14, "word": " guys?", "probability": 0.64453125}, {"start": 2154.28, "end": 2154.48, "word": " Take", "probability": 0.1878662109375}, {"start": 2154.48, "end": 2154.66, "word": " it", "probability": 0.25}, {"start": 2154.66, "end": 2154.66, "word": " out", "probability": 0.6513671875}, {"start": 2154.66, "end": 2154.76, "word": " of", "probability": 0.460693359375}, {"start": 2154.76, "end": 2155.02, "word": " my", "probability": 0.2734375}, {"start": 2155.02, "end": 2155.02, "word": " head,", "probability": 0.60107421875}, {"start": 2155.08, "end": 2155.24, "word": " pay", "probability": 0.222412109375}, {"start": 2155.24, "end": 2155.38, "word": " attention", "probability": 0.93994140625}, {"start": 2155.38, "end": 2155.56, "word": " to", "probability": 0.85888671875}, {"start": 2155.56, "end": 2155.68, "word": " it,", "probability": 0.91650390625}, {"start": 2155.72, "end": 2155.84, "word": " it", "probability": 0.4169921875}, {"start": 2155.84, "end": 2155.84, "word": " has", "probability": 0.252685546875}, {"start": 2155.84, "end": 2156.0, "word": " passed", "probability": 0.279052734375}, {"start": 2156.0, "end": 2156.18, "word": " through", "probability": 0.380859375}, {"start": 2156.18, "end": 2156.3, "word": " you", "probability": 0.865234375}, {"start": 2156.3, "end": 2156.44, "word": " before,", "probability": 0.75048828125}, {"start": 2156.74, "end": 2156.9, "word": " but", "probability": 0.822265625}, {"start": 2156.9, "end": 2157.08, "word": " you,", "probability": 0.8828125}, {"start": 2158.12, "end": 2158.36, "word": " yes,", "probability": 0.24462890625}, {"start": 2158.56, "end": 2158.74, "word": " no,", "probability": 0.6337890625}, {"start": 2158.8, "end": 2158.94, "word": " take", "probability": 0.75732421875}, {"start": 2158.94, "end": 2159.02, "word": " it", "probability": 0.916015625}, {"start": 2159.02, "end": 2159.08, "word": " out", "probability": 0.59716796875}, {"start": 2159.08, "end": 2159.14, "word": " with", "probability": 0.76953125}, {"start": 2159.14, "end": 2159.34, "word": " me.", "probability": 0.8154296875}, {"start": 2160.02, "end": 2160.2, "word": " We", "probability": 0.9326171875}, {"start": 2160.2, "end": 2160.32, "word": " also", "probability": 0.6748046875}, {"start": 2160.32, "end": 2160.32, "word": " want", "probability": 0.4521484375}, {"start": 2160.32, "end": 2160.6, "word": " to", "probability": 0.97265625}, {"start": 2160.6, "end": 2160.6, "word": " make", "probability": 0.59716796875}, {"start": 2160.6, "end": 2160.96, "word": " an", "probability": 0.2939453125}, {"start": 2160.96, "end": 2161.16, "word": " element", "probability": 0.85107421875}, {"start": 2161.16, "end": 2161.32, "word": " that", "probability": 0.64697265625}, {"start": 2161.32, "end": 2161.52, "word": " listens", "probability": 0.462646484375}, {"start": 2161.52, "end": 2161.64, "word": " to", "probability": 0.97216796875}, {"start": 2161.64, "end": 2161.74, "word": " the", "probability": 0.80810546875}, {"start": 2161.74, "end": 2161.88, "word": " a.", "probability": 0.87255859375}], "temperature": 1.0}, {"id": 86, "seek": 218609, "start": 2163.31, "end": 2186.09, "text": "We are not doing B and C and D and E. Someone says it is a story. No, look with me. A wants to make a new element in the hearing without making a new class outside. Add a listener. And here I say new a listener. What do we call this in programming? Anonymous class.", "tokens": [4360, 366, 406, 884, 363, 293, 383, 293, 413, 293, 462, 13, 8734, 1619, 309, 307, 257, 1657, 13, 883, 11, 574, 365, 385, 13, 316, 2738, 281, 652, 257, 777, 4478, 294, 264, 4763, 1553, 1455, 257, 777, 1508, 2380, 13, 5349, 257, 31569, 13, 400, 510, 286, 584, 777, 257, 31569, 13, 708, 360, 321, 818, 341, 294, 9410, 30, 1107, 18092, 1508, 13], "avg_logprob": -0.48740670663207325, "compression_ratio": 1.4887640449438202, "no_speech_prob": 5.9604644775390625e-06, "words": [{"start": 2163.31, "end": 2163.51, "word": "We", "probability": 0.271240234375}, {"start": 2163.51, "end": 2163.55, "word": " are", "probability": 0.389892578125}, {"start": 2163.55, "end": 2163.69, "word": " not", "probability": 0.919921875}, {"start": 2163.69, "end": 2163.91, "word": " doing", "probability": 0.69287109375}, {"start": 2163.91, "end": 2164.15, "word": " B", "probability": 0.73974609375}, {"start": 2164.15, "end": 2164.35, "word": " and", "probability": 0.352294921875}, {"start": 2164.35, "end": 2164.49, "word": " C", "probability": 0.9228515625}, {"start": 2164.49, "end": 2164.63, "word": " and", "probability": 0.86865234375}, {"start": 2164.63, "end": 2164.77, "word": " D", "probability": 0.98681640625}, {"start": 2164.77, "end": 2164.87, "word": " and", "probability": 0.9228515625}, {"start": 2164.87, "end": 2165.07, "word": " E.", "probability": 0.93359375}, {"start": 2165.55, "end": 2165.73, "word": " Someone", "probability": 0.2021484375}, {"start": 2165.73, "end": 2165.93, "word": " says", "probability": 0.35595703125}, {"start": 2165.93, "end": 2166.11, "word": " it", "probability": 0.412109375}, {"start": 2166.11, "end": 2166.13, "word": " is", "probability": 0.5009765625}, {"start": 2166.13, "end": 2166.23, "word": " a", "probability": 0.6455078125}, {"start": 2166.23, "end": 2166.41, "word": " story.", "probability": 0.80615234375}, {"start": 2167.09, "end": 2167.43, "word": " No,", "probability": 0.65087890625}, {"start": 2167.59, "end": 2167.81, "word": " look", "probability": 0.57177734375}, {"start": 2167.81, "end": 2167.97, "word": " with", "probability": 0.447265625}, {"start": 2167.97, "end": 2168.19, "word": " me.", "probability": 0.9462890625}, {"start": 2168.51, "end": 2168.77, "word": " A", "probability": 0.505859375}, {"start": 2168.77, "end": 2169.03, "word": " wants", "probability": 0.18408203125}, {"start": 2169.03, "end": 2169.09, "word": " to", "probability": 0.96875}, {"start": 2169.09, "end": 2169.23, "word": " make", "probability": 0.6572265625}, {"start": 2169.23, "end": 2169.37, "word": " a", "probability": 0.85888671875}, {"start": 2169.37, "end": 2169.79, "word": " new", "probability": 0.892578125}, {"start": 2169.79, "end": 2169.81, "word": " element", "probability": 0.69921875}, {"start": 2169.81, "end": 2169.95, "word": " in", "probability": 0.55419921875}, {"start": 2169.95, "end": 2170.05, "word": " the", "probability": 0.58154296875}, {"start": 2170.05, "end": 2170.17, "word": " hearing", "probability": 0.3427734375}, {"start": 2170.17, "end": 2170.51, "word": " without", "probability": 0.20068359375}, {"start": 2170.51, "end": 2170.81, "word": " making", "probability": 0.48876953125}, {"start": 2170.81, "end": 2170.91, "word": " a", "probability": 0.91552734375}, {"start": 2170.91, "end": 2171.37, "word": " new", "probability": 0.88525390625}, {"start": 2171.37, "end": 2171.37, "word": " class", "probability": 0.94970703125}, {"start": 2171.37, "end": 2171.69, "word": " outside.", "probability": 0.464111328125}, {"start": 2172.73, "end": 2173.17, "word": " Add", "probability": 0.23486328125}, {"start": 2173.17, "end": 2174.79, "word": " a", "probability": 0.65966796875}, {"start": 2174.79, "end": 2175.29, "word": " listener.", "probability": 0.86279296875}, {"start": 2176.33, "end": 2176.65, "word": " And", "probability": 0.32275390625}, {"start": 2176.65, "end": 2176.85, "word": " here", "probability": 0.78564453125}, {"start": 2176.85, "end": 2176.95, "word": " I", "probability": 0.93505859375}, {"start": 2176.95, "end": 2177.17, "word": " say", "probability": 0.77587890625}, {"start": 2177.17, "end": 2177.59, "word": " new", "probability": 0.74462890625}, {"start": 2177.59, "end": 2178.73, "word": " a", "probability": 0.77490234375}, {"start": 2178.73, "end": 2179.27, "word": " listener.", "probability": 0.82275390625}, {"start": 2182.61, "end": 2182.91, "word": " What", "probability": 0.8642578125}, {"start": 2182.91, "end": 2182.99, "word": " do", "probability": 0.72705078125}, {"start": 2182.99, "end": 2183.21, "word": " we", "probability": 0.95263671875}, {"start": 2183.21, "end": 2183.51, "word": " call", "probability": 0.8740234375}, {"start": 2183.51, "end": 2183.61, "word": " this", "probability": 0.81396484375}, {"start": 2183.61, "end": 2183.87, "word": " in", "probability": 0.84814453125}, {"start": 2183.87, "end": 2184.21, "word": " programming?", "probability": 0.87841796875}, {"start": 2184.41, "end": 2184.61, "word": " Anonymous", "probability": 0.744140625}, {"start": 2184.61, "end": 2186.09, "word": " class.", "probability": 0.92431640625}], "temperature": 1.0}, {"id": 87, "seek": 220658, "start": 2188.06, "end": 2206.58, "text": "So instead of making a class outside and create an object out of it, it's okay, but I don't want to make a new class, this is a new A listener, a new object of the type A listener, okay? This is all hosted as what? As an ad A listener", "tokens": [6455, 2602, 295, 1455, 257, 1508, 2380, 293, 1884, 364, 2657, 484, 295, 309, 11, 309, 311, 1392, 11, 457, 286, 500, 380, 528, 281, 652, 257, 777, 1508, 11, 341, 307, 257, 777, 316, 31569, 11, 257, 777, 2657, 295, 264, 2010, 316, 31569, 11, 1392, 30, 639, 307, 439, 19204, 382, 437, 30, 1018, 364, 614, 316, 31569], "avg_logprob": -0.5271516276187584, "compression_ratio": 1.56, "no_speech_prob": 6.079673767089844e-06, "words": [{"start": 2188.06, "end": 2188.34, "word": "So", "probability": 0.27978515625}, {"start": 2188.34, "end": 2188.72, "word": " instead", "probability": 0.411865234375}, {"start": 2188.72, "end": 2188.9, "word": " of", "probability": 0.9599609375}, {"start": 2188.9, "end": 2189.14, "word": " making", "probability": 0.1595458984375}, {"start": 2189.14, "end": 2189.98, "word": " a", "probability": 0.3349609375}, {"start": 2189.98, "end": 2190.34, "word": " class", "probability": 0.398681640625}, {"start": 2190.34, "end": 2190.68, "word": " outside", "probability": 0.481689453125}, {"start": 2190.68, "end": 2191.04, "word": " and", "probability": 0.6064453125}, {"start": 2191.04, "end": 2191.44, "word": " create", "probability": 0.212158203125}, {"start": 2191.44, "end": 2191.56, "word": " an", "probability": 0.73193359375}, {"start": 2191.56, "end": 2191.76, "word": " object", "probability": 0.97802734375}, {"start": 2191.76, "end": 2191.98, "word": " out", "probability": 0.249267578125}, {"start": 2191.98, "end": 2191.98, "word": " of", "probability": 0.96728515625}, {"start": 2191.98, "end": 2192.04, "word": " it,", "probability": 0.900390625}, {"start": 2192.16, "end": 2192.26, "word": " it's", "probability": 0.3463134765625}, {"start": 2192.26, "end": 2192.48, "word": " okay,", "probability": 0.24853515625}, {"start": 2192.6, "end": 2192.72, "word": " but", "probability": 0.83349609375}, {"start": 2192.72, "end": 2192.94, "word": " I", "probability": 0.77685546875}, {"start": 2192.94, "end": 2195.26, "word": " don't", "probability": 0.81494140625}, {"start": 2195.26, "end": 2195.5, "word": " want", "probability": 0.6171875}, {"start": 2195.5, "end": 2195.62, "word": " to", "probability": 0.955078125}, {"start": 2195.62, "end": 2195.74, "word": " make", "probability": 0.70458984375}, {"start": 2195.74, "end": 2195.82, "word": " a", "probability": 0.921875}, {"start": 2195.82, "end": 2195.82, "word": " new", "probability": 0.90185546875}, {"start": 2195.82, "end": 2196.3, "word": " class,", "probability": 0.9462890625}, {"start": 2196.6, "end": 2196.96, "word": " this", "probability": 0.350341796875}, {"start": 2196.96, "end": 2197.0, "word": " is", "probability": 0.763671875}, {"start": 2197.0, "end": 2198.0, "word": " a", "probability": 0.66162109375}, {"start": 2198.0, "end": 2198.16, "word": " new", "probability": 0.90234375}, {"start": 2198.16, "end": 2198.4, "word": " A", "probability": 0.490234375}, {"start": 2198.4, "end": 2198.7, "word": " listener,", "probability": 0.619140625}, {"start": 2199.14, "end": 2199.24, "word": " a", "probability": 0.67138671875}, {"start": 2199.24, "end": 2199.28, "word": " new", "probability": 0.88427734375}, {"start": 2199.28, "end": 2199.58, "word": " object", "probability": 0.927734375}, {"start": 2199.58, "end": 2200.0, "word": " of", "probability": 0.623046875}, {"start": 2200.0, "end": 2200.1, "word": " the", "probability": 0.63427734375}, {"start": 2200.1, "end": 2200.2, "word": " type", "probability": 0.475830078125}, {"start": 2200.2, "end": 2200.4, "word": " A", "probability": 0.65283203125}, {"start": 2200.4, "end": 2200.72, "word": " listener,", "probability": 0.71044921875}, {"start": 2201.44, "end": 2201.7, "word": " okay?", "probability": 0.399658203125}, {"start": 2202.84, "end": 2203.12, "word": " This", "probability": 0.339111328125}, {"start": 2203.12, "end": 2203.28, "word": " is", "probability": 0.89306640625}, {"start": 2203.28, "end": 2203.66, "word": " all", "probability": 0.84912109375}, {"start": 2203.66, "end": 2204.24, "word": " hosted", "probability": 0.54736328125}, {"start": 2204.24, "end": 2204.5, "word": " as", "probability": 0.7353515625}, {"start": 2204.5, "end": 2204.82, "word": " what?", "probability": 0.62109375}, {"start": 2205.64, "end": 2205.82, "word": " As", "probability": 0.86572265625}, {"start": 2205.82, "end": 2205.92, "word": " an", "probability": 0.61962890625}, {"start": 2205.92, "end": 2206.14, "word": " ad", "probability": 0.385498046875}, {"start": 2206.14, "end": 2206.34, "word": " A", "probability": 0.705078125}, {"start": 2206.34, "end": 2206.58, "word": " listener", "probability": 0.72119140625}], "temperature": 1.0}, {"id": 88, "seek": 223764, "start": 2208.8, "end": 2237.64, "text": "this is anonymous class same as B, C, D and E but the difference is that instead of doing it in an external file and we do it instead of logging in and logging out we made it anonymous class which means class without a name from which door, which speed this is and here we write system.out.println anonymous received", "tokens": [11176, 307, 24932, 1508, 912, 382, 363, 11, 383, 11, 413, 293, 462, 457, 264, 2649, 307, 300, 2602, 295, 884, 309, 294, 364, 8320, 3991, 293, 321, 360, 309, 2602, 295, 27991, 294, 293, 27991, 484, 321, 1027, 309, 24932, 1508, 597, 1355, 1508, 1553, 257, 1315, 490, 597, 2853, 11, 597, 3073, 341, 307, 293, 510, 321, 2464, 1185, 13, 346, 13, 14030, 75, 77, 24932, 4613], "avg_logprob": -0.6892857262066432, "compression_ratio": 1.6898395721925135, "no_speech_prob": 1.3649463653564453e-05, "words": [{"start": 2208.8, "end": 2209.06, "word": "this", "probability": 0.26123046875}, {"start": 2209.06, "end": 2209.08, "word": " is", "probability": 0.87060546875}, {"start": 2209.08, "end": 2209.4, "word": " anonymous", "probability": 0.654296875}, {"start": 2209.4, "end": 2209.94, "word": " class", "probability": 0.9697265625}, {"start": 2209.94, "end": 2211.1, "word": " same", "probability": 0.125732421875}, {"start": 2211.1, "end": 2211.24, "word": " as", "probability": 0.62548828125}, {"start": 2211.24, "end": 2212.2, "word": " B,", "probability": 0.2169189453125}, {"start": 2212.46, "end": 2212.7, "word": " C,", "probability": 0.51611328125}, {"start": 2212.9, "end": 2213.08, "word": " D", "probability": 0.84521484375}, {"start": 2213.08, "end": 2213.26, "word": " and", "probability": 0.496337890625}, {"start": 2213.26, "end": 2213.5, "word": " E", "probability": 0.986328125}, {"start": 2213.5, "end": 2214.3, "word": " but", "probability": 0.56787109375}, {"start": 2214.3, "end": 2214.44, "word": " the", "probability": 0.429931640625}, {"start": 2214.44, "end": 2214.64, "word": " difference", "probability": 0.7451171875}, {"start": 2214.64, "end": 2214.9, "word": " is", "probability": 0.8251953125}, {"start": 2214.9, "end": 2215.02, "word": " that", "probability": 0.45068359375}, {"start": 2215.02, "end": 2215.18, "word": " instead", "probability": 0.63818359375}, {"start": 2215.18, "end": 2215.28, "word": " of", "probability": 0.94970703125}, {"start": 2215.28, "end": 2215.6, "word": " doing", "probability": 0.09295654296875}, {"start": 2215.6, "end": 2215.66, "word": " it", "probability": 0.4736328125}, {"start": 2215.66, "end": 2215.72, "word": " in", "probability": 0.58349609375}, {"start": 2215.72, "end": 2215.84, "word": " an", "probability": 0.1795654296875}, {"start": 2215.84, "end": 2216.3, "word": " external", "probability": 0.62158203125}, {"start": 2216.3, "end": 2216.3, "word": " file", "probability": 0.7294921875}, {"start": 2216.3, "end": 2217.18, "word": " and", "probability": 0.371337890625}, {"start": 2217.18, "end": 2217.3, "word": " we", "probability": 0.1939697265625}, {"start": 2217.3, "end": 2217.48, "word": " do", "probability": 0.60791015625}, {"start": 2217.48, "end": 2217.6, "word": " it", "probability": 0.85205078125}, {"start": 2217.6, "end": 2217.78, "word": " instead", "probability": 0.2392578125}, {"start": 2217.78, "end": 2217.9, "word": " of", "probability": 0.9580078125}, {"start": 2217.9, "end": 2218.14, "word": " logging", "probability": 0.037933349609375}, {"start": 2218.14, "end": 2218.36, "word": " in", "probability": 0.50732421875}, {"start": 2218.36, "end": 2218.38, "word": " and", "probability": 0.7861328125}, {"start": 2218.38, "end": 2218.6, "word": " logging", "probability": 0.225341796875}, {"start": 2218.6, "end": 2218.7, "word": " out", "probability": 0.88427734375}, {"start": 2218.7, "end": 2219.36, "word": " we", "probability": 0.51123046875}, {"start": 2219.36, "end": 2219.56, "word": " made", "probability": 0.390380859375}, {"start": 2219.56, "end": 2219.74, "word": " it", "probability": 0.7412109375}, {"start": 2219.74, "end": 2220.18, "word": " anonymous", "probability": 0.75244140625}, {"start": 2220.18, "end": 2220.66, "word": " class", "probability": 0.92822265625}, {"start": 2220.66, "end": 2220.8, "word": " which", "probability": 0.2001953125}, {"start": 2220.8, "end": 2220.84, "word": " means", "probability": 0.55029296875}, {"start": 2220.84, "end": 2221.12, "word": " class", "probability": 0.5205078125}, {"start": 2221.12, "end": 2221.28, "word": " without", "probability": 0.7578125}, {"start": 2221.28, "end": 2221.48, "word": " a", "probability": 0.65673828125}, {"start": 2221.48, "end": 2221.76, "word": " name", "probability": 0.87744140625}, {"start": 2221.76, "end": 2222.48, "word": " from", "probability": 0.595703125}, {"start": 2222.48, "end": 2223.02, "word": " which", "probability": 0.14892578125}, {"start": 2223.02, "end": 2223.02, "word": " door,", "probability": 0.166748046875}, {"start": 2223.14, "end": 2223.38, "word": " which", "probability": 0.2763671875}, {"start": 2223.38, "end": 2223.38, "word": " speed", "probability": 0.6171875}, {"start": 2223.38, "end": 2223.68, "word": " this", "probability": 0.200927734375}, {"start": 2223.68, "end": 2224.0, "word": " is", "probability": 0.7109375}, {"start": 2224.0, "end": 2224.52, "word": " and", "probability": 0.2413330078125}, {"start": 2224.52, "end": 2225.22, "word": " here", "probability": 0.77099609375}, {"start": 2225.22, "end": 2225.36, "word": " we", "probability": 0.83447265625}, {"start": 2225.36, "end": 2225.6, "word": " write", "probability": 0.62744140625}, {"start": 2225.6, "end": 2228.52, "word": " system", "probability": 0.77294921875}, {"start": 2228.52, "end": 2230.02, "word": ".out", "probability": 0.8984375}, {"start": 2230.02, "end": 2231.34, "word": ".println", "probability": 0.96044921875}, {"start": 2231.34, "end": 2233.04, "word": " anonymous", "probability": 0.378662109375}, {"start": 2233.04, "end": 2237.64, "word": " received", "probability": 0.390625}], "temperature": 1.0}, {"id": 89, "seek": 225880, "start": 2240.04, "end": 2258.8, "text": "Data. Where did this anonymous class pass to us? In the GUI when you were dealing with buttons in JavaFX, in events, you used to do it like that. Am I right or not guys? Did you notice that all JavaFX and Swing and others are applications for the observer pattern?", "tokens": [35, 3274, 13, 2305, 630, 341, 24932, 1508, 1320, 281, 505, 30, 682, 264, 17917, 40, 562, 291, 645, 6260, 365, 9905, 294, 10745, 36092, 11, 294, 3931, 11, 291, 1143, 281, 360, 309, 411, 300, 13, 2012, 286, 558, 420, 406, 1074, 30, 2589, 291, 3449, 300, 439, 10745, 36092, 293, 3926, 278, 293, 2357, 366, 5821, 337, 264, 27878, 5102, 30], "avg_logprob": -0.570800774730742, "compression_ratio": 1.3968253968253967, "no_speech_prob": 4.76837158203125e-06, "words": [{"start": 2240.04, "end": 2240.5, "word": "Data.", "probability": 0.5787353515625}, {"start": 2241.04, "end": 2241.2, "word": " Where", "probability": 0.708984375}, {"start": 2241.2, "end": 2241.48, "word": " did", "probability": 0.802734375}, {"start": 2241.48, "end": 2241.94, "word": " this", "probability": 0.53271484375}, {"start": 2241.94, "end": 2242.28, "word": " anonymous", "probability": 0.64794921875}, {"start": 2242.28, "end": 2242.8, "word": " class", "probability": 0.97314453125}, {"start": 2242.8, "end": 2242.8, "word": " pass", "probability": 0.34619140625}, {"start": 2242.8, "end": 2242.8, "word": " to", "probability": 0.25244140625}, {"start": 2242.8, "end": 2242.8, "word": " us?", "probability": 0.9140625}, {"start": 2244.06, "end": 2244.7, "word": " In", "probability": 0.70361328125}, {"start": 2244.7, "end": 2244.76, "word": " the", "probability": 0.365966796875}, {"start": 2244.76, "end": 2245.18, "word": " GUI", "probability": 0.902587890625}, {"start": 2245.18, "end": 2245.3, "word": " when", "probability": 0.62109375}, {"start": 2245.3, "end": 2245.62, "word": " you", "probability": 0.7373046875}, {"start": 2245.62, "end": 2245.62, "word": " were", "probability": 0.1932373046875}, {"start": 2245.62, "end": 2245.88, "word": " dealing", "probability": 0.55322265625}, {"start": 2245.88, "end": 2246.06, "word": " with", "probability": 0.8916015625}, {"start": 2246.06, "end": 2246.5, "word": " buttons", "probability": 0.255615234375}, {"start": 2246.5, "end": 2247.66, "word": " in", "probability": 0.6943359375}, {"start": 2247.66, "end": 2248.4, "word": " JavaFX,", "probability": 0.54541015625}, {"start": 2248.7, "end": 2248.8, "word": " in", "probability": 0.56640625}, {"start": 2248.8, "end": 2249.28, "word": " events,", "probability": 0.430419921875}, {"start": 2249.38, "end": 2249.5, "word": " you", "probability": 0.5791015625}, {"start": 2249.5, "end": 2249.64, "word": " used", "probability": 0.2646484375}, {"start": 2249.64, "end": 2249.66, "word": " to", "probability": 0.951171875}, {"start": 2249.66, "end": 2249.82, "word": " do", "probability": 0.7958984375}, {"start": 2249.82, "end": 2249.94, "word": " it", "probability": 0.163818359375}, {"start": 2249.94, "end": 2250.0, "word": " like", "probability": 0.7783203125}, {"start": 2250.0, "end": 2250.56, "word": " that.", "probability": 0.5703125}, {"start": 2250.9, "end": 2251.52, "word": " Am", "probability": 0.20263671875}, {"start": 2251.52, "end": 2251.56, "word": " I", "probability": 0.96337890625}, {"start": 2251.56, "end": 2251.56, "word": " right", "probability": 0.875}, {"start": 2251.56, "end": 2251.74, "word": " or", "probability": 0.6689453125}, {"start": 2251.74, "end": 2251.76, "word": " not", "probability": 0.84521484375}, {"start": 2251.76, "end": 2252.02, "word": " guys?", "probability": 0.451171875}, {"start": 2253.06, "end": 2253.22, "word": " Did", "probability": 0.513671875}, {"start": 2253.22, "end": 2253.56, "word": " you", "probability": 0.96484375}, {"start": 2253.56, "end": 2253.56, "word": " notice", "probability": 0.5341796875}, {"start": 2253.56, "end": 2254.06, "word": " that", "probability": 0.630859375}, {"start": 2254.06, "end": 2254.32, "word": " all", "probability": 0.75048828125}, {"start": 2254.32, "end": 2255.24, "word": " JavaFX", "probability": 0.74609375}, {"start": 2255.24, "end": 2255.62, "word": " and", "probability": 0.427001953125}, {"start": 2255.62, "end": 2256.26, "word": " Swing", "probability": 0.72998046875}, {"start": 2256.26, "end": 2256.36, "word": " and", "probability": 0.75341796875}, {"start": 2256.36, "end": 2256.68, "word": " others", "probability": 0.486572265625}, {"start": 2256.68, "end": 2257.28, "word": " are", "probability": 0.59375}, {"start": 2257.28, "end": 2257.72, "word": " applications", "probability": 0.341064453125}, {"start": 2257.72, "end": 2257.98, "word": " for", "probability": 0.63134765625}, {"start": 2257.98, "end": 2258.04, "word": " the", "probability": 0.724609375}, {"start": 2258.04, "end": 2258.42, "word": " observer", "probability": 0.325927734375}, {"start": 2258.42, "end": 2258.8, "word": " pattern?", "probability": 0.9228515625}], "temperature": 1.0}, {"id": 90, "seek": 227801, "start": 2259.93, "end": 2278.01, "text": "Did you find the button class? For example, isn't there a class in Java called button? Is there or not? If you find the button when you click on it and you want it to listen to the event, what do you tell it? Do you have an ad?", "tokens": [17648, 291, 915, 264, 2960, 1508, 30, 1171, 1365, 11, 1943, 380, 456, 257, 1508, 294, 10745, 1219, 2960, 30, 1119, 456, 420, 406, 30, 759, 291, 915, 264, 2960, 562, 291, 2052, 322, 309, 293, 291, 528, 309, 281, 2140, 281, 264, 2280, 11, 437, 360, 291, 980, 309, 30, 1144, 291, 362, 364, 614, 30], "avg_logprob": -0.4730603561319154, "compression_ratio": 1.5763888888888888, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2259.93, "end": 2260.13, "word": "Did", "probability": 0.2100830078125}, {"start": 2260.13, "end": 2260.17, "word": " you", "probability": 0.96484375}, {"start": 2260.17, "end": 2260.33, "word": " find", "probability": 0.45849609375}, {"start": 2260.33, "end": 2260.49, "word": " the", "probability": 0.5400390625}, {"start": 2260.49, "end": 2261.15, "word": " button", "probability": 0.270263671875}, {"start": 2261.15, "end": 2261.19, "word": " class?", "probability": 0.89404296875}, {"start": 2261.51, "end": 2261.65, "word": " For", "probability": 0.494384765625}, {"start": 2261.65, "end": 2261.87, "word": " example,", "probability": 0.9130859375}, {"start": 2262.73, "end": 2262.87, "word": " isn't", "probability": 0.603515625}, {"start": 2262.87, "end": 2263.19, "word": " there", "probability": 0.87841796875}, {"start": 2263.19, "end": 2263.45, "word": " a", "probability": 0.87841796875}, {"start": 2263.45, "end": 2263.77, "word": " class", "probability": 0.77294921875}, {"start": 2263.77, "end": 2263.97, "word": " in", "probability": 0.796875}, {"start": 2263.97, "end": 2267.73, "word": " Java", "probability": 0.469482421875}, {"start": 2267.73, "end": 2268.13, "word": " called", "probability": 0.362548828125}, {"start": 2268.13, "end": 2268.49, "word": " button?", "probability": 0.39892578125}, {"start": 2268.93, "end": 2269.19, "word": " Is", "probability": 0.329833984375}, {"start": 2269.19, "end": 2269.27, "word": " there", "probability": 0.744140625}, {"start": 2269.27, "end": 2269.37, "word": " or", "probability": 0.463623046875}, {"start": 2269.37, "end": 2269.57, "word": " not?", "probability": 0.4755859375}, {"start": 2270.23, "end": 2270.63, "word": " If", "probability": 0.09588623046875}, {"start": 2270.63, "end": 2271.07, "word": " you", "probability": 0.95361328125}, {"start": 2271.07, "end": 2271.19, "word": " find", "probability": 0.630859375}, {"start": 2271.19, "end": 2271.33, "word": " the", "probability": 0.6796875}, {"start": 2271.33, "end": 2271.55, "word": " button", "probability": 0.85791015625}, {"start": 2271.55, "end": 2271.93, "word": " when", "probability": 0.5087890625}, {"start": 2271.93, "end": 2272.13, "word": " you", "probability": 0.94921875}, {"start": 2272.13, "end": 2272.31, "word": " click", "probability": 0.364013671875}, {"start": 2272.31, "end": 2272.71, "word": " on", "probability": 0.5654296875}, {"start": 2272.71, "end": 2272.71, "word": " it", "probability": 0.5537109375}, {"start": 2272.71, "end": 2273.17, "word": " and", "probability": 0.64111328125}, {"start": 2273.17, "end": 2273.23, "word": " you", "probability": 0.6572265625}, {"start": 2273.23, "end": 2273.39, "word": " want", "probability": 0.71826171875}, {"start": 2273.39, "end": 2273.81, "word": " it", "probability": 0.72705078125}, {"start": 2273.81, "end": 2274.23, "word": " to", "probability": 0.9443359375}, {"start": 2274.23, "end": 2274.49, "word": " listen", "probability": 0.78662109375}, {"start": 2274.49, "end": 2274.63, "word": " to", "probability": 0.95068359375}, {"start": 2274.63, "end": 2274.69, "word": " the", "probability": 0.8115234375}, {"start": 2274.69, "end": 2274.97, "word": " event,", "probability": 0.8671875}, {"start": 2275.01, "end": 2275.15, "word": " what", "probability": 0.89599609375}, {"start": 2275.15, "end": 2275.21, "word": " do", "probability": 0.78271484375}, {"start": 2275.21, "end": 2275.29, "word": " you", "probability": 0.962890625}, {"start": 2275.29, "end": 2275.47, "word": " tell", "probability": 0.33251953125}, {"start": 2275.47, "end": 2275.63, "word": " it?", "probability": 0.798828125}, {"start": 2276.23, "end": 2276.41, "word": " Do", "probability": 0.31494140625}, {"start": 2276.41, "end": 2277.31, "word": " you", "probability": 0.95947265625}, {"start": 2277.31, "end": 2277.45, "word": " have", "probability": 0.86767578125}, {"start": 2277.45, "end": 2277.65, "word": " an", "probability": 0.51318359375}, {"start": 2277.65, "end": 2278.01, "word": " ad?", "probability": 0.6650390625}], "temperature": 1.0}, {"id": 91, "seek": 230864, "start": 2283.02, "end": 2308.64, "text": " in javafx what did you do? sit on action sit on action sit on action ok lambda is the same and then what do you put between the brackets? event action right or wrong?", "tokens": [294, 361, 706, 2792, 87, 437, 630, 291, 360, 30, 1394, 322, 3069, 1394, 322, 3069, 1394, 322, 3069, 3133, 13607, 307, 264, 912, 293, 550, 437, 360, 291, 829, 1296, 264, 26179, 30, 2280, 3069, 558, 420, 2085, 30], "avg_logprob": -0.6364329268292683, "compression_ratio": 1.5321100917431192, "no_speech_prob": 2.8014183044433594e-06, "words": [{"start": 2283.0199999999995, "end": 2283.7799999999997, "word": " in", "probability": 0.0677490234375}, {"start": 2283.7799999999997, "end": 2284.54, "word": " javafx", "probability": 0.68701171875}, {"start": 2284.54, "end": 2284.7, "word": " what", "probability": 0.51220703125}, {"start": 2284.7, "end": 2284.88, "word": " did", "probability": 0.29833984375}, {"start": 2284.88, "end": 2285.0, "word": " you", "probability": 0.81396484375}, {"start": 2285.0, "end": 2285.14, "word": " do?", "probability": 0.58740234375}, {"start": 2286.12, "end": 2286.88, "word": " sit", "probability": 0.2568359375}, {"start": 2286.88, "end": 2288.44, "word": " on", "probability": 0.6572265625}, {"start": 2288.44, "end": 2290.08, "word": " action", "probability": 0.89990234375}, {"start": 2290.08, "end": 2290.92, "word": " sit", "probability": 0.42919921875}, {"start": 2290.92, "end": 2291.12, "word": " on", "probability": 0.90234375}, {"start": 2291.12, "end": 2291.54, "word": " action", "probability": 0.904296875}, {"start": 2291.54, "end": 2292.98, "word": " sit", "probability": 0.401123046875}, {"start": 2292.98, "end": 2293.34, "word": " on", "probability": 0.94873046875}, {"start": 2293.34, "end": 2293.84, "word": " action", "probability": 0.9287109375}, {"start": 2293.84, "end": 2295.62, "word": " ok", "probability": 0.22900390625}, {"start": 2295.62, "end": 2296.32, "word": " lambda", "probability": 0.51123046875}, {"start": 2296.32, "end": 2296.64, "word": " is", "probability": 0.677734375}, {"start": 2296.64, "end": 2297.06, "word": " the", "probability": 0.35400390625}, {"start": 2297.06, "end": 2297.3, "word": " same", "probability": 0.89501953125}, {"start": 2297.3, "end": 2298.96, "word": " and", "probability": 0.08367919921875}, {"start": 2298.96, "end": 2299.7, "word": " then", "probability": 0.469970703125}, {"start": 2299.7, "end": 2299.84, "word": " what", "probability": 0.77880859375}, {"start": 2299.84, "end": 2299.96, "word": " do", "probability": 0.436279296875}, {"start": 2299.96, "end": 2299.96, "word": " you", "probability": 0.9306640625}, {"start": 2299.96, "end": 2300.14, "word": " put", "probability": 0.662109375}, {"start": 2300.14, "end": 2300.46, "word": " between", "probability": 0.703125}, {"start": 2300.46, "end": 2300.54, "word": " the", "probability": 0.481689453125}, {"start": 2300.54, "end": 2300.84, "word": " brackets?", "probability": 0.447998046875}, {"start": 2303.14, "end": 2303.9, "word": " event", "probability": 0.227294921875}, {"start": 2303.9, "end": 2307.96, "word": " action", "probability": 0.94189453125}, {"start": 2307.96, "end": 2308.38, "word": " right", "probability": 0.27392578125}, {"start": 2308.38, "end": 2308.6, "word": " or", "probability": 0.71240234375}, {"start": 2308.6, "end": 2308.64, "word": " wrong?", "probability": 0.72216796875}], "temperature": 1.0}, {"id": 92, "seek": 233717, "start": 2309.81, "end": 2337.17, "text": "Isn't that what you used to do? Did you understand what's going on? What's this event action? You used to memorize it, but you didn't understand it. Did you find a class button? When this button is designed, you can use it anywhere. When you press the button, it will notify my frame. It will notify the screen that I'm in. Did you find me in my application? The screen might have the name X.", "tokens": [48310, 380, 300, 437, 291, 1143, 281, 360, 30, 2589, 291, 1223, 437, 311, 516, 322, 30, 708, 311, 341, 2280, 3069, 30, 509, 1143, 281, 27478, 309, 11, 457, 291, 994, 380, 1223, 309, 13, 2589, 291, 915, 257, 1508, 2960, 30, 1133, 341, 2960, 307, 4761, 11, 291, 393, 764, 309, 4992, 13, 1133, 291, 1886, 264, 2960, 11, 309, 486, 36560, 452, 3920, 13, 467, 486, 36560, 264, 2568, 300, 286, 478, 294, 13, 2589, 291, 915, 385, 294, 452, 3861, 30, 440, 2568, 1062, 362, 264, 1315, 1783, 13], "avg_logprob": -0.5123005445967329, "compression_ratio": 1.7818181818181817, "no_speech_prob": 8.761882781982422e-06, "words": [{"start": 2309.81, "end": 2310.05, "word": "Isn't", "probability": 0.6170654296875}, {"start": 2310.05, "end": 2310.21, "word": " that", "probability": 0.57177734375}, {"start": 2310.21, "end": 2310.29, "word": " what", "probability": 0.58447265625}, {"start": 2310.29, "end": 2310.55, "word": " you", "probability": 0.9541015625}, {"start": 2310.55, "end": 2310.55, "word": " used", "probability": 0.346923828125}, {"start": 2310.55, "end": 2310.57, "word": " to", "probability": 0.97509765625}, {"start": 2310.57, "end": 2310.83, "word": " do?", "probability": 0.9521484375}, {"start": 2311.25, "end": 2311.73, "word": " Did", "probability": 0.279052734375}, {"start": 2311.73, "end": 2311.79, "word": " you", "probability": 0.86328125}, {"start": 2311.79, "end": 2312.11, "word": " understand", "probability": 0.219970703125}, {"start": 2312.11, "end": 2312.57, "word": " what's", "probability": 0.5135498046875}, {"start": 2312.57, "end": 2312.79, "word": " going", "probability": 0.357666015625}, {"start": 2312.79, "end": 2313.03, "word": " on?", "probability": 0.9423828125}, {"start": 2313.13, "end": 2313.33, "word": " What's", "probability": 0.640380859375}, {"start": 2313.33, "end": 2313.65, "word": " this", "probability": 0.6923828125}, {"start": 2313.65, "end": 2313.87, "word": " event", "probability": 0.66259765625}, {"start": 2313.87, "end": 2314.19, "word": " action?", "probability": 0.7666015625}, {"start": 2314.21, "end": 2314.51, "word": " You", "probability": 0.66064453125}, {"start": 2314.51, "end": 2314.51, "word": " used", "probability": 0.490234375}, {"start": 2314.51, "end": 2314.55, "word": " to", "probability": 0.970703125}, {"start": 2314.55, "end": 2315.01, "word": " memorize", "probability": 0.77294921875}, {"start": 2315.01, "end": 2315.45, "word": " it,", "probability": 0.8720703125}, {"start": 2315.49, "end": 2315.87, "word": " but", "probability": 0.5390625}, {"start": 2315.87, "end": 2315.99, "word": " you", "probability": 0.71533203125}, {"start": 2315.99, "end": 2316.09, "word": " didn't", "probability": 0.82373046875}, {"start": 2316.09, "end": 2316.37, "word": " understand", "probability": 0.63134765625}, {"start": 2316.37, "end": 2317.03, "word": " it.", "probability": 0.8291015625}, {"start": 2317.39, "end": 2317.87, "word": " Did", "probability": 0.640625}, {"start": 2317.87, "end": 2317.87, "word": " you", "probability": 0.9697265625}, {"start": 2317.87, "end": 2318.03, "word": " find", "probability": 0.436767578125}, {"start": 2318.03, "end": 2318.19, "word": " a", "probability": 0.396484375}, {"start": 2318.19, "end": 2318.49, "word": " class", "probability": 0.87451171875}, {"start": 2318.49, "end": 2318.87, "word": " button?", "probability": 0.62841796875}, {"start": 2320.29, "end": 2320.41, "word": " When", "probability": 0.271240234375}, {"start": 2320.41, "end": 2320.41, "word": " this", "probability": 0.333984375}, {"start": 2320.41, "end": 2320.73, "word": " button", "probability": 0.8408203125}, {"start": 2320.73, "end": 2324.95, "word": " is", "probability": 0.79736328125}, {"start": 2324.95, "end": 2325.21, "word": " designed,", "probability": 0.771484375}, {"start": 2325.55, "end": 2326.25, "word": " you", "probability": 0.374267578125}, {"start": 2326.25, "end": 2326.33, "word": " can", "probability": 0.26025390625}, {"start": 2326.33, "end": 2326.67, "word": " use", "probability": 0.88623046875}, {"start": 2326.67, "end": 2326.95, "word": " it", "probability": 0.8955078125}, {"start": 2326.95, "end": 2327.33, "word": " anywhere.", "probability": 0.63671875}, {"start": 2328.35, "end": 2328.69, "word": " When", "probability": 0.1944580078125}, {"start": 2328.69, "end": 2330.29, "word": " you", "probability": 0.5810546875}, {"start": 2330.29, "end": 2330.53, "word": " press", "probability": 0.5478515625}, {"start": 2330.53, "end": 2330.81, "word": " the", "probability": 0.353515625}, {"start": 2330.81, "end": 2330.81, "word": " button,", "probability": 0.9130859375}, {"start": 2330.85, "end": 2330.97, "word": " it", "probability": 0.791015625}, {"start": 2330.97, "end": 2331.05, "word": " will", "probability": 0.2110595703125}, {"start": 2331.05, "end": 2331.29, "word": " notify", "probability": 0.21826171875}, {"start": 2331.29, "end": 2331.43, "word": " my", "probability": 0.35693359375}, {"start": 2331.43, "end": 2331.75, "word": " frame.", "probability": 0.73779296875}, {"start": 2332.41, "end": 2332.65, "word": " It", "probability": 0.66259765625}, {"start": 2332.65, "end": 2332.69, "word": " will", "probability": 0.705078125}, {"start": 2332.69, "end": 2332.89, "word": " notify", "probability": 0.91259765625}, {"start": 2332.89, "end": 2333.05, "word": " the", "probability": 0.69189453125}, {"start": 2333.05, "end": 2333.23, "word": " screen", "probability": 0.77001953125}, {"start": 2333.23, "end": 2333.35, "word": " that", "probability": 0.379638671875}, {"start": 2333.35, "end": 2333.47, "word": " I'm", "probability": 0.80908203125}, {"start": 2333.47, "end": 2333.63, "word": " in.", "probability": 0.646484375}, {"start": 2334.19, "end": 2334.43, "word": " Did", "probability": 0.7685546875}, {"start": 2334.43, "end": 2334.49, "word": " you", "probability": 0.93115234375}, {"start": 2334.49, "end": 2334.59, "word": " find", "probability": 0.783203125}, {"start": 2334.59, "end": 2334.77, "word": " me", "probability": 0.25244140625}, {"start": 2334.77, "end": 2334.85, "word": " in", "probability": 0.73779296875}, {"start": 2334.85, "end": 2335.37, "word": " my", "probability": 0.9052734375}, {"start": 2335.37, "end": 2335.37, "word": " application?", "probability": 0.6171875}, {"start": 2335.71, "end": 2336.07, "word": " The", "probability": 0.54833984375}, {"start": 2336.07, "end": 2336.31, "word": " screen", "probability": 0.74072265625}, {"start": 2336.31, "end": 2336.41, "word": " might", "probability": 0.24267578125}, {"start": 2336.41, "end": 2336.57, "word": " have", "probability": 0.52783203125}, {"start": 2336.57, "end": 2336.63, "word": " the", "probability": 0.279296875}, {"start": 2336.63, "end": 2336.83, "word": " name", "probability": 0.8544921875}, {"start": 2336.83, "end": 2337.17, "word": " X.", "probability": 0.6474609375}], "temperature": 1.0}, {"id": 93, "seek": 236713, "start": 2338.23, "end": 2367.13, "text": "In another application, Y, Z, it changes. So how do we make the button work wherever we put it? It's simple. The button has an interface called event action. Inside the button class, there is an interface called event action.", "tokens": [4575, 1071, 3861, 11, 398, 11, 1176, 11, 309, 2962, 13, 407, 577, 360, 321, 652, 264, 2960, 589, 8660, 321, 829, 309, 30, 467, 311, 2199, 13, 440, 2960, 575, 364, 9226, 1219, 2280, 3069, 13, 15123, 264, 2960, 1508, 11, 456, 307, 364, 9226, 1219, 2280, 3069, 13], "avg_logprob": -0.6096813608618343, "compression_ratio": 1.5845070422535212, "no_speech_prob": 3.516674041748047e-05, "words": [{"start": 2338.23, "end": 2338.41, "word": "In", "probability": 0.2060546875}, {"start": 2338.41, "end": 2338.91, "word": " another", "probability": 0.356689453125}, {"start": 2338.91, "end": 2339.27, "word": " application,", "probability": 0.494140625}, {"start": 2339.67, "end": 2340.37, "word": " Y,", "probability": 0.434326171875}, {"start": 2340.81, "end": 2341.49, "word": " Z,", "probability": 0.77587890625}, {"start": 2341.71, "end": 2341.81, "word": " it", "probability": 0.33349609375}, {"start": 2341.81, "end": 2342.13, "word": " changes.", "probability": 0.55859375}, {"start": 2342.99, "end": 2343.13, "word": " So", "probability": 0.295654296875}, {"start": 2343.13, "end": 2343.39, "word": " how", "probability": 0.65771484375}, {"start": 2343.39, "end": 2343.53, "word": " do", "probability": 0.43505859375}, {"start": 2343.53, "end": 2343.65, "word": " we", "probability": 0.85302734375}, {"start": 2343.65, "end": 2343.87, "word": " make", "probability": 0.62548828125}, {"start": 2343.87, "end": 2344.01, "word": " the", "probability": 0.7265625}, {"start": 2344.01, "end": 2344.23, "word": " button", "probability": 0.56689453125}, {"start": 2344.23, "end": 2344.79, "word": " work", "probability": 0.7666015625}, {"start": 2344.79, "end": 2346.13, "word": " wherever", "probability": 0.26025390625}, {"start": 2346.13, "end": 2346.57, "word": " we", "probability": 0.7490234375}, {"start": 2346.57, "end": 2346.75, "word": " put", "probability": 0.60107421875}, {"start": 2346.75, "end": 2347.03, "word": " it?", "probability": 0.921875}, {"start": 2348.03, "end": 2348.83, "word": " It's", "probability": 0.363433837890625}, {"start": 2348.83, "end": 2349.17, "word": " simple.", "probability": 0.7958984375}, {"start": 2349.53, "end": 2350.21, "word": " The", "probability": 0.4873046875}, {"start": 2350.21, "end": 2350.49, "word": " button", "probability": 0.8134765625}, {"start": 2350.49, "end": 2350.67, "word": " has", "probability": 0.327392578125}, {"start": 2350.67, "end": 2351.07, "word": " an", "probability": 0.87548828125}, {"start": 2351.07, "end": 2351.67, "word": " interface", "probability": 0.888671875}, {"start": 2351.67, "end": 2352.07, "word": " called", "probability": 0.77783203125}, {"start": 2352.07, "end": 2353.97, "word": " event", "probability": 0.276123046875}, {"start": 2353.97, "end": 2354.45, "word": " action.", "probability": 0.76904296875}, {"start": 2354.77, "end": 2355.17, "word": " Inside", "probability": 0.216064453125}, {"start": 2355.17, "end": 2355.39, "word": " the", "probability": 0.83203125}, {"start": 2355.39, "end": 2355.97, "word": " button", "probability": 0.5732421875}, {"start": 2355.97, "end": 2355.97, "word": " class,", "probability": 0.8671875}, {"start": 2356.19, "end": 2356.27, "word": " there", "probability": 0.42919921875}, {"start": 2356.27, "end": 2356.27, "word": " is", "probability": 0.6318359375}, {"start": 2356.27, "end": 2357.65, "word": " an", "probability": 0.87646484375}, {"start": 2357.65, "end": 2358.31, "word": " interface", "probability": 0.9169921875}, {"start": 2358.31, "end": 2361.67, "word": " called", "probability": 0.822265625}, {"start": 2361.67, "end": 2363.55, "word": " event", "probability": 0.7587890625}, {"start": 2363.55, "end": 2367.13, "word": " action.", "probability": 0.93359375}], "temperature": 1.0}, {"id": 94, "seek": 238829, "start": 2368.05, "end": 2388.29, "text": "Okay? And inside it there is an arrow. What is the name of this arrow? Handle. Okay? This empty arrow is present where? Inside this interface. And inside the button there is a list. From whom? From event action.", "tokens": [8297, 30, 400, 1854, 309, 456, 307, 364, 11610, 13, 708, 307, 264, 1315, 295, 341, 11610, 30, 8854, 306, 13, 1033, 30, 639, 6707, 11610, 307, 1974, 689, 30, 15123, 341, 9226, 13, 400, 1854, 264, 2960, 456, 307, 257, 1329, 13, 3358, 7101, 30, 3358, 2280, 3069, 13], "avg_logprob": -0.4886642098426819, "compression_ratio": 1.4755244755244756, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 2368.05, "end": 2368.35, "word": "Okay?", "probability": 0.1328125}, {"start": 2368.53, "end": 2368.69, "word": " And", "probability": 0.5380859375}, {"start": 2368.69, "end": 2368.99, "word": " inside", "probability": 0.6845703125}, {"start": 2368.99, "end": 2369.23, "word": " it", "probability": 0.5390625}, {"start": 2369.23, "end": 2369.27, "word": " there", "probability": 0.466552734375}, {"start": 2369.27, "end": 2369.27, "word": " is", "probability": 0.63525390625}, {"start": 2369.27, "end": 2369.57, "word": " an", "probability": 0.255126953125}, {"start": 2369.57, "end": 2369.57, "word": " arrow.", "probability": 0.405517578125}, {"start": 2369.83, "end": 2370.11, "word": " What", "probability": 0.771484375}, {"start": 2370.11, "end": 2370.19, "word": " is", "probability": 0.697265625}, {"start": 2370.19, "end": 2370.33, "word": " the", "probability": 0.62646484375}, {"start": 2370.33, "end": 2370.33, "word": " name", "probability": 0.83203125}, {"start": 2370.33, "end": 2370.39, "word": " of", "probability": 0.96533203125}, {"start": 2370.39, "end": 2370.53, "word": " this", "probability": 0.5712890625}, {"start": 2370.53, "end": 2370.77, "word": " arrow?", "probability": 0.77734375}, {"start": 2373.35, "end": 2373.91, "word": " Handle.", "probability": 0.83447265625}, {"start": 2374.21, "end": 2374.41, "word": " Okay?", "probability": 0.56884765625}, {"start": 2376.91, "end": 2377.47, "word": " This", "probability": 0.7109375}, {"start": 2377.47, "end": 2377.55, "word": " empty", "probability": 0.32421875}, {"start": 2377.55, "end": 2378.07, "word": " arrow", "probability": 0.8271484375}, {"start": 2378.07, "end": 2378.25, "word": " is", "probability": 0.7841796875}, {"start": 2378.25, "end": 2378.51, "word": " present", "probability": 0.2156982421875}, {"start": 2378.51, "end": 2378.69, "word": " where?", "probability": 0.64306640625}, {"start": 2378.93, "end": 2379.45, "word": " Inside", "probability": 0.80615234375}, {"start": 2379.45, "end": 2379.83, "word": " this", "probability": 0.363037109375}, {"start": 2379.83, "end": 2380.39, "word": " interface.", "probability": 0.87353515625}, {"start": 2380.81, "end": 2381.29, "word": " And", "probability": 0.8671875}, {"start": 2381.29, "end": 2381.51, "word": " inside", "probability": 0.90087890625}, {"start": 2381.51, "end": 2381.65, "word": " the", "probability": 0.71630859375}, {"start": 2381.65, "end": 2381.95, "word": " button", "probability": 0.8193359375}, {"start": 2381.95, "end": 2382.45, "word": " there", "probability": 0.59033203125}, {"start": 2382.45, "end": 2382.45, "word": " is", "probability": 0.92431640625}, {"start": 2382.45, "end": 2382.59, "word": " a", "probability": 0.98193359375}, {"start": 2382.59, "end": 2382.97, "word": " list.", "probability": 0.9296875}, {"start": 2383.87, "end": 2384.43, "word": " From", "probability": 0.5751953125}, {"start": 2384.43, "end": 2384.69, "word": " whom?", "probability": 0.56884765625}, {"start": 2385.03, "end": 2385.23, "word": " From", "probability": 0.7685546875}, {"start": 2385.23, "end": 2385.77, "word": " event", "probability": 0.5625}, {"start": 2385.77, "end": 2388.29, "word": " action.", "probability": 0.318359375}], "temperature": 1.0}, {"id": 95, "seek": 241929, "start": 2390.75, "end": 2419.29, "text": "it's called listeners for example or actions or events where is all of this? inside the button you will find that when you do this b.sitonaction it's like adding a listener and now when you say new event action you created a new object called event action you can let your class implement event action and put this did you get this or not?", "tokens": [270, 311, 1219, 23274, 337, 1365, 420, 5909, 420, 3931, 689, 307, 439, 295, 341, 30, 1854, 264, 2960, 291, 486, 915, 300, 562, 291, 360, 341, 272, 13, 82, 270, 266, 2894, 309, 311, 411, 5127, 257, 31569, 293, 586, 562, 291, 584, 777, 2280, 3069, 291, 2942, 257, 777, 2657, 1219, 2280, 3069, 291, 393, 718, 428, 1508, 4445, 2280, 3069, 293, 829, 341, 630, 291, 483, 341, 420, 406, 30], "avg_logprob": -0.5329392141587025, "compression_ratio": 1.803191489361702, "no_speech_prob": 1.7285346984863281e-06, "words": [{"start": 2390.75, "end": 2390.99, "word": "it's", "probability": 0.410491943359375}, {"start": 2390.99, "end": 2391.19, "word": " called", "probability": 0.496826171875}, {"start": 2391.19, "end": 2391.57, "word": " listeners", "probability": 0.498779296875}, {"start": 2391.57, "end": 2391.85, "word": " for", "probability": 0.496337890625}, {"start": 2391.85, "end": 2392.03, "word": " example", "probability": 0.9140625}, {"start": 2392.03, "end": 2392.23, "word": " or", "probability": 0.62548828125}, {"start": 2392.23, "end": 2392.61, "word": " actions", "probability": 0.896484375}, {"start": 2392.61, "end": 2392.81, "word": " or", "probability": 0.91015625}, {"start": 2392.81, "end": 2393.23, "word": " events", "probability": 0.87451171875}, {"start": 2393.23, "end": 2394.23, "word": " where", "probability": 0.38720703125}, {"start": 2394.23, "end": 2394.23, "word": " is", "probability": 0.321533203125}, {"start": 2394.23, "end": 2394.47, "word": " all", "probability": 0.81640625}, {"start": 2394.47, "end": 2394.57, "word": " of", "probability": 0.25927734375}, {"start": 2394.57, "end": 2394.61, "word": " this?", "probability": 0.5537109375}, {"start": 2395.21, "end": 2395.91, "word": " inside", "probability": 0.429931640625}, {"start": 2395.91, "end": 2396.19, "word": " the", "probability": 0.71923828125}, {"start": 2396.19, "end": 2396.19, "word": " button", "probability": 0.343505859375}, {"start": 2396.19, "end": 2397.07, "word": " you", "probability": 0.1907958984375}, {"start": 2397.07, "end": 2397.27, "word": " will", "probability": 0.361328125}, {"start": 2397.27, "end": 2397.39, "word": " find", "probability": 0.44921875}, {"start": 2397.39, "end": 2397.87, "word": " that", "probability": 0.576171875}, {"start": 2397.87, "end": 2397.97, "word": " when", "probability": 0.65185546875}, {"start": 2397.97, "end": 2398.43, "word": " you", "probability": 0.95751953125}, {"start": 2398.43, "end": 2398.63, "word": " do", "probability": 0.58447265625}, {"start": 2398.63, "end": 2399.11, "word": " this", "probability": 0.548828125}, {"start": 2399.11, "end": 2399.43, "word": " b", "probability": 0.42236328125}, {"start": 2399.43, "end": 2400.71, "word": ".sitonaction", "probability": 0.766796875}, {"start": 2400.71, "end": 2401.51, "word": " it's", "probability": 0.6370849609375}, {"start": 2401.51, "end": 2401.75, "word": " like", "probability": 0.80908203125}, {"start": 2401.75, "end": 2402.19, "word": " adding", "probability": 0.23828125}, {"start": 2402.19, "end": 2402.37, "word": " a", "probability": 0.85986328125}, {"start": 2402.37, "end": 2402.77, "word": " listener", "probability": 0.88330078125}, {"start": 2402.77, "end": 2404.17, "word": " and", "probability": 0.336181640625}, {"start": 2404.17, "end": 2404.75, "word": " now", "probability": 0.239013671875}, {"start": 2404.75, "end": 2404.91, "word": " when", "probability": 0.8759765625}, {"start": 2404.91, "end": 2405.03, "word": " you", "probability": 0.95654296875}, {"start": 2405.03, "end": 2405.17, "word": " say", "probability": 0.8447265625}, {"start": 2405.17, "end": 2405.77, "word": " new", "probability": 0.84912109375}, {"start": 2405.77, "end": 2406.79, "word": " event", "probability": 0.86767578125}, {"start": 2406.79, "end": 2407.31, "word": " action", "probability": 0.810546875}, {"start": 2407.31, "end": 2407.69, "word": " you", "probability": 0.74365234375}, {"start": 2407.69, "end": 2408.19, "word": " created", "probability": 0.51611328125}, {"start": 2408.19, "end": 2409.49, "word": " a", "probability": 0.9150390625}, {"start": 2409.49, "end": 2409.49, "word": " new", "probability": 0.89111328125}, {"start": 2409.49, "end": 2410.01, "word": " object", "probability": 0.9697265625}, {"start": 2410.01, "end": 2410.69, "word": " called", "probability": 0.169677734375}, {"start": 2410.69, "end": 2411.59, "word": " event", "probability": 0.826171875}, {"start": 2411.59, "end": 2412.03, "word": " action", "probability": 0.9267578125}, {"start": 2412.03, "end": 2412.83, "word": " you", "probability": 0.80859375}, {"start": 2412.83, "end": 2413.11, "word": " can", "probability": 0.89794921875}, {"start": 2413.11, "end": 2413.53, "word": " let", "probability": 0.34375}, {"start": 2413.53, "end": 2413.75, "word": " your", "probability": 0.78271484375}, {"start": 2413.75, "end": 2414.15, "word": " class", "probability": 0.837890625}, {"start": 2414.15, "end": 2415.97, "word": " implement", "probability": 0.677734375}, {"start": 2415.97, "end": 2416.81, "word": " event", "probability": 0.79345703125}, {"start": 2416.81, "end": 2417.27, "word": " action", "probability": 0.9423828125}, {"start": 2417.27, "end": 2417.63, "word": " and", "probability": 0.6865234375}, {"start": 2417.63, "end": 2417.85, "word": " put", "probability": 0.2587890625}, {"start": 2417.85, "end": 2418.23, "word": " this", "probability": 0.908203125}, {"start": 2418.23, "end": 2418.75, "word": " did", "probability": 0.3466796875}, {"start": 2418.75, "end": 2418.83, "word": " you", "probability": 0.90087890625}, {"start": 2418.83, "end": 2418.83, "word": " get", "probability": 0.263916015625}, {"start": 2418.83, "end": 2419.09, "word": " this", "probability": 0.5302734375}, {"start": 2419.09, "end": 2419.21, "word": " or", "probability": 0.58984375}, {"start": 2419.21, "end": 2419.29, "word": " not?", "probability": 0.74755859375}], "temperature": 1.0}, {"id": 96, "seek": 242387, "start": 2421.69, "end": 2423.87, "text": " ماخدتهاش برضه، فح؟", "tokens": [3714, 47283, 3215, 47395, 33599, 4724, 43042, 3224, 12399, 6156, 5016, 22807], "avg_logprob": -0.5679086538461539, "compression_ratio": 0.813953488372093, "no_speech_prob": 0.0, "words": [{"start": 2421.69, "end": 2422.81, "word": " ماخدتهاش", "probability": 0.690069580078125}, {"start": 2422.81, "end": 2423.31, "word": " برضه،", "probability": 0.75555419921875}, {"start": 2423.31, "end": 2423.87, "word": " فح؟", "probability": 0.7111002604166666}], "temperature": 1.0}, {"id": 97, "seek": 245539, "start": 2427.35, "end": 2455.39, "text": "Anyway, this event action really makes the peton, not the peton wants to hear a sentence, it doesn't know where the peton is placed in class X or Y or Z. Who wants to receive the event from the peton? When I click on the peton, does it want to send me something? Who does it want to send it to? I don't know. So it says, I don't have an invitation, where do you want to put me? What concerns me, what I want to send him must be some kind of action event.", "tokens": [29647, 676, 11, 341, 2280, 3069, 534, 1669, 264, 3817, 266, 11, 406, 264, 3817, 266, 2738, 281, 1568, 257, 8174, 11, 309, 1177, 380, 458, 689, 264, 3817, 266, 307, 7074, 294, 1508, 1783, 420, 398, 420, 1176, 13, 2102, 2738, 281, 4774, 264, 2280, 490, 264, 3817, 266, 30, 1133, 286, 2052, 322, 264, 3817, 266, 11, 775, 309, 528, 281, 2845, 385, 746, 30, 2102, 775, 309, 528, 281, 2845, 309, 281, 30, 286, 500, 380, 458, 13, 407, 309, 1619, 11, 286, 500, 380, 362, 364, 17890, 11, 689, 360, 291, 528, 281, 829, 385, 30, 708, 7389, 385, 11, 437, 286, 528, 281, 2845, 796, 1633, 312, 512, 733, 295, 3069, 2280, 13], "avg_logprob": -0.4543067372145773, "compression_ratio": 1.823293172690763, "no_speech_prob": 5.364418029785156e-06, "words": [{"start": 2427.35, "end": 2427.71, "word": "Anyway,", "probability": 0.49822998046875}, {"start": 2427.71, "end": 2428.07, "word": " this", "probability": 0.67919921875}, {"start": 2428.07, "end": 2428.45, "word": " event", "probability": 0.72021484375}, {"start": 2428.45, "end": 2429.03, "word": " action", "probability": 0.638671875}, {"start": 2429.03, "end": 2429.93, "word": " really", "probability": 0.1513671875}, {"start": 2429.93, "end": 2430.49, "word": " makes", "probability": 0.58447265625}, {"start": 2430.49, "end": 2430.65, "word": " the", "probability": 0.7734375}, {"start": 2430.65, "end": 2431.01, "word": " peton,", "probability": 0.25372314453125}, {"start": 2431.69, "end": 2431.93, "word": " not", "probability": 0.6337890625}, {"start": 2431.93, "end": 2432.03, "word": " the", "probability": 0.66845703125}, {"start": 2432.03, "end": 2432.27, "word": " peton", "probability": 0.9248046875}, {"start": 2432.27, "end": 2432.49, "word": " wants", "probability": 0.279296875}, {"start": 2432.49, "end": 2432.53, "word": " to", "probability": 0.9541015625}, {"start": 2432.53, "end": 2432.81, "word": " hear", "probability": 0.6611328125}, {"start": 2432.81, "end": 2433.17, "word": " a", "probability": 0.521484375}, {"start": 2433.17, "end": 2433.17, "word": " sentence,", "probability": 0.339111328125}, {"start": 2433.85, "end": 2434.05, "word": " it", "probability": 0.223876953125}, {"start": 2434.05, "end": 2434.11, "word": " doesn't", "probability": 0.760009765625}, {"start": 2434.11, "end": 2434.41, "word": " know", "probability": 0.857421875}, {"start": 2434.41, "end": 2434.57, "word": " where", "probability": 0.67626953125}, {"start": 2434.57, "end": 2434.59, "word": " the", "probability": 0.64892578125}, {"start": 2434.59, "end": 2434.81, "word": " peton", "probability": 0.947265625}, {"start": 2434.81, "end": 2434.99, "word": " is", "probability": 0.90771484375}, {"start": 2434.99, "end": 2435.33, "word": " placed", "probability": 0.26123046875}, {"start": 2435.33, "end": 2435.53, "word": " in", "probability": 0.4189453125}, {"start": 2435.53, "end": 2435.91, "word": " class", "probability": 0.59912109375}, {"start": 2435.91, "end": 2436.41, "word": " X", "probability": 0.787109375}, {"start": 2436.41, "end": 2436.65, "word": " or", "probability": 0.67138671875}, {"start": 2436.65, "end": 2437.01, "word": " Y", "probability": 0.98193359375}, {"start": 2437.01, "end": 2437.21, "word": " or", "probability": 0.880859375}, {"start": 2437.21, "end": 2437.43, "word": " Z.", "probability": 0.9599609375}, {"start": 2437.57, "end": 2437.67, "word": " Who", "probability": 0.54052734375}, {"start": 2437.67, "end": 2438.35, "word": " wants", "probability": 0.47900390625}, {"start": 2438.35, "end": 2438.43, "word": " to", "probability": 0.77978515625}, {"start": 2438.43, "end": 2438.83, "word": " receive", "probability": 0.513671875}, {"start": 2438.83, "end": 2439.71, "word": " the", "probability": 0.82470703125}, {"start": 2439.71, "end": 2440.11, "word": " event", "probability": 0.76806640625}, {"start": 2440.11, "end": 2440.71, "word": " from", "probability": 0.84912109375}, {"start": 2440.71, "end": 2440.85, "word": " the", "probability": 0.88916015625}, {"start": 2440.85, "end": 2441.17, "word": " peton?", "probability": 0.960205078125}, {"start": 2442.27, "end": 2442.63, "word": " When", "probability": 0.44677734375}, {"start": 2442.63, "end": 2444.71, "word": " I", "probability": 0.94873046875}, {"start": 2444.71, "end": 2444.89, "word": " click", "probability": 0.267822265625}, {"start": 2444.89, "end": 2445.03, "word": " on", "probability": 0.8984375}, {"start": 2445.03, "end": 2445.11, "word": " the", "probability": 0.8427734375}, {"start": 2445.11, "end": 2445.29, "word": " peton,", "probability": 0.947998046875}, {"start": 2445.35, "end": 2445.43, "word": " does", "probability": 0.1982421875}, {"start": 2445.43, "end": 2445.43, "word": " it", "probability": 0.84375}, {"start": 2445.43, "end": 2445.57, "word": " want", "probability": 0.66845703125}, {"start": 2445.57, "end": 2445.61, "word": " to", "probability": 0.96826171875}, {"start": 2445.61, "end": 2445.79, "word": " send", "probability": 0.8251953125}, {"start": 2445.79, "end": 2445.93, "word": " me", "probability": 0.76123046875}, {"start": 2445.93, "end": 2446.17, "word": " something?", "probability": 0.67431640625}, {"start": 2446.63, "end": 2446.99, "word": " Who", "probability": 0.33251953125}, {"start": 2446.99, "end": 2447.15, "word": " does", "probability": 0.65673828125}, {"start": 2447.15, "end": 2447.31, "word": " it", "probability": 0.9091796875}, {"start": 2447.31, "end": 2447.31, "word": " want", "probability": 0.8515625}, {"start": 2447.31, "end": 2447.33, "word": " to", "probability": 0.9560546875}, {"start": 2447.33, "end": 2447.45, "word": " send", "probability": 0.7998046875}, {"start": 2447.45, "end": 2447.55, "word": " it", "probability": 0.50048828125}, {"start": 2447.55, "end": 2447.55, "word": " to?", "probability": 0.88134765625}, {"start": 2447.57, "end": 2447.67, "word": " I", "probability": 0.9462890625}, {"start": 2447.67, "end": 2447.73, "word": " don't", "probability": 0.929931640625}, {"start": 2447.73, "end": 2448.07, "word": " know.", "probability": 0.89990234375}, {"start": 2448.63, "end": 2448.73, "word": " So", "probability": 0.51318359375}, {"start": 2448.73, "end": 2448.83, "word": " it", "probability": 0.57373046875}, {"start": 2448.83, "end": 2448.99, "word": " says,", "probability": 0.6953125}, {"start": 2449.09, "end": 2449.15, "word": " I", "probability": 0.44775390625}, {"start": 2449.15, "end": 2449.25, "word": " don't", "probability": 0.80908203125}, {"start": 2449.25, "end": 2449.41, "word": " have", "probability": 0.6494140625}, {"start": 2449.41, "end": 2449.51, "word": " an", "probability": 0.18798828125}, {"start": 2449.51, "end": 2449.65, "word": " invitation,", "probability": 0.9287109375}, {"start": 2449.83, "end": 2450.01, "word": " where", "probability": 0.748046875}, {"start": 2450.01, "end": 2450.13, "word": " do", "probability": 0.6318359375}, {"start": 2450.13, "end": 2450.15, "word": " you", "probability": 0.9130859375}, {"start": 2450.15, "end": 2450.19, "word": " want", "probability": 0.391845703125}, {"start": 2450.19, "end": 2450.19, "word": " to", "probability": 0.7041015625}, {"start": 2450.19, "end": 2450.33, "word": " put", "probability": 0.7431640625}, {"start": 2450.33, "end": 2450.51, "word": " me?", "probability": 0.95947265625}, {"start": 2450.81, "end": 2451.17, "word": " What", "probability": 0.51171875}, {"start": 2451.17, "end": 2451.41, "word": " concerns", "probability": 0.1697998046875}, {"start": 2451.41, "end": 2451.65, "word": " me,", "probability": 0.96337890625}, {"start": 2451.73, "end": 2451.85, "word": " what", "probability": 0.7958984375}, {"start": 2451.85, "end": 2452.01, "word": " I", "probability": 0.98583984375}, {"start": 2452.01, "end": 2452.21, "word": " want", "probability": 0.8349609375}, {"start": 2452.21, "end": 2452.27, "word": " to", "probability": 0.96533203125}, {"start": 2452.27, "end": 2452.47, "word": " send", "probability": 0.78759765625}, {"start": 2452.47, "end": 2452.63, "word": " him", "probability": 0.338623046875}, {"start": 2452.63, "end": 2452.83, "word": " must", "probability": 0.529296875}, {"start": 2452.83, "end": 2453.11, "word": " be", "probability": 0.955078125}, {"start": 2453.11, "end": 2453.25, "word": " some", "probability": 0.1708984375}, {"start": 2453.25, "end": 2453.39, "word": " kind", "probability": 0.6640625}, {"start": 2453.39, "end": 2453.45, "word": " of", "probability": 0.9677734375}, {"start": 2453.45, "end": 2453.87, "word": " action", "probability": 0.9267578125}, {"start": 2453.87, "end": 2455.39, "word": " event.", "probability": 0.34619140625}], "temperature": 1.0}, {"id": 98, "seek": 247816, "start": 2456.42, "end": 2478.16, "text": "Okay? So it comes to the button and creates an object inside it with a new event action. It's like I created a new object of this kind of interface. On the basis of this object that was created between the two branches. Like this one that I created between the two branches. It will be added to the list. Okay? It will be added to the list inside it.", "tokens": [8297, 30, 407, 309, 1487, 281, 264, 2960, 293, 7829, 364, 2657, 1854, 309, 365, 257, 777, 2280, 3069, 13, 467, 311, 411, 286, 2942, 257, 777, 2657, 295, 341, 733, 295, 9226, 13, 1282, 264, 5143, 295, 341, 2657, 300, 390, 2942, 1296, 264, 732, 14770, 13, 1743, 341, 472, 300, 286, 2942, 1296, 264, 732, 14770, 13, 467, 486, 312, 3869, 281, 264, 1329, 13, 1033, 30, 467, 486, 312, 3869, 281, 264, 1329, 1854, 309, 13], "avg_logprob": -0.5777343899011612, "compression_ratio": 1.9230769230769231, "no_speech_prob": 8.046627044677734e-06, "words": [{"start": 2456.42, "end": 2456.82, "word": "Okay?", "probability": 0.182373046875}, {"start": 2457.36, "end": 2457.64, "word": " So", "probability": 0.6591796875}, {"start": 2457.64, "end": 2457.86, "word": " it", "probability": 0.1282958984375}, {"start": 2457.86, "end": 2458.04, "word": " comes", "probability": 0.2293701171875}, {"start": 2458.04, "end": 2458.18, "word": " to", "probability": 0.86279296875}, {"start": 2458.18, "end": 2458.26, "word": " the", "probability": 0.7587890625}, {"start": 2458.26, "end": 2458.54, "word": " button", "probability": 0.51416015625}, {"start": 2458.54, "end": 2459.16, "word": " and", "probability": 0.75}, {"start": 2459.16, "end": 2459.42, "word": " creates", "probability": 0.5107421875}, {"start": 2459.42, "end": 2460.08, "word": " an", "probability": 0.7587890625}, {"start": 2460.08, "end": 2460.08, "word": " object", "probability": 0.95703125}, {"start": 2460.08, "end": 2460.66, "word": " inside", "probability": 0.11993408203125}, {"start": 2460.66, "end": 2460.84, "word": " it", "probability": 0.283203125}, {"start": 2460.84, "end": 2460.84, "word": " with", "probability": 0.2310791015625}, {"start": 2460.84, "end": 2460.92, "word": " a", "probability": 0.298828125}, {"start": 2460.92, "end": 2461.14, "word": " new", "probability": 0.27734375}, {"start": 2461.14, "end": 2461.88, "word": " event", "probability": 0.7919921875}, {"start": 2461.88, "end": 2462.6, "word": " action.", "probability": 0.8974609375}, {"start": 2462.64, "end": 2462.8, "word": " It's", "probability": 0.4482421875}, {"start": 2462.8, "end": 2462.9, "word": " like", "probability": 0.6533203125}, {"start": 2462.9, "end": 2463.06, "word": " I", "probability": 0.43017578125}, {"start": 2463.06, "end": 2463.26, "word": " created", "probability": 0.392822265625}, {"start": 2463.26, "end": 2463.42, "word": " a", "probability": 0.95849609375}, {"start": 2463.42, "end": 2463.42, "word": " new", "probability": 0.900390625}, {"start": 2463.42, "end": 2463.92, "word": " object", "probability": 0.92431640625}, {"start": 2463.92, "end": 2464.52, "word": " of", "probability": 0.306640625}, {"start": 2464.52, "end": 2464.68, "word": " this", "probability": 0.6923828125}, {"start": 2464.68, "end": 2464.82, "word": " kind", "probability": 0.2783203125}, {"start": 2464.82, "end": 2464.88, "word": " of", "probability": 0.9287109375}, {"start": 2464.88, "end": 2465.5, "word": " interface.", "probability": 0.89599609375}, {"start": 2466.72, "end": 2466.92, "word": " On", "probability": 0.1197509765625}, {"start": 2466.92, "end": 2467.02, "word": " the", "probability": 0.70703125}, {"start": 2467.02, "end": 2467.28, "word": " basis", "probability": 0.86962890625}, {"start": 2467.28, "end": 2467.82, "word": " of", "probability": 0.369384765625}, {"start": 2467.82, "end": 2468.12, "word": " this", "probability": 0.71875}, {"start": 2468.12, "end": 2468.58, "word": " object", "probability": 0.95166015625}, {"start": 2468.58, "end": 2468.74, "word": " that", "probability": 0.58642578125}, {"start": 2468.74, "end": 2469.1, "word": " was", "probability": 0.55126953125}, {"start": 2469.1, "end": 2469.5, "word": " created", "probability": 0.7841796875}, {"start": 2469.5, "end": 2469.74, "word": " between", "probability": 0.6494140625}, {"start": 2469.74, "end": 2469.88, "word": " the", "probability": 0.603515625}, {"start": 2469.88, "end": 2470.24, "word": " two", "probability": 0.2030029296875}, {"start": 2470.24, "end": 2470.24, "word": " branches.", "probability": 0.041717529296875}, {"start": 2471.48, "end": 2471.88, "word": " Like", "probability": 0.736328125}, {"start": 2471.88, "end": 2472.3, "word": " this", "probability": 0.90283203125}, {"start": 2472.3, "end": 2472.38, "word": " one", "probability": 0.68310546875}, {"start": 2472.38, "end": 2472.56, "word": " that", "probability": 0.509765625}, {"start": 2472.56, "end": 2472.6, "word": " I", "probability": 0.454345703125}, {"start": 2472.6, "end": 2472.92, "word": " created", "probability": 0.70263671875}, {"start": 2472.92, "end": 2473.14, "word": " between", "probability": 0.83447265625}, {"start": 2473.14, "end": 2473.26, "word": " the", "probability": 0.63818359375}, {"start": 2473.26, "end": 2473.6, "word": " two", "probability": 0.81494140625}, {"start": 2473.6, "end": 2473.6, "word": " branches.", "probability": 0.8701171875}, {"start": 2473.74, "end": 2473.78, "word": " It", "probability": 0.7705078125}, {"start": 2473.78, "end": 2473.84, "word": " will", "probability": 0.630859375}, {"start": 2473.84, "end": 2473.94, "word": " be", "probability": 0.779296875}, {"start": 2473.94, "end": 2474.08, "word": " added", "probability": 0.9228515625}, {"start": 2474.08, "end": 2474.26, "word": " to", "probability": 0.9150390625}, {"start": 2474.26, "end": 2474.32, "word": " the", "probability": 0.8759765625}, {"start": 2474.32, "end": 2474.64, "word": " list.", "probability": 0.87158203125}, {"start": 2475.8, "end": 2476.2, "word": " Okay?", "probability": 0.7021484375}, {"start": 2476.36, "end": 2476.44, "word": " It", "probability": 0.88427734375}, {"start": 2476.44, "end": 2476.52, "word": " will", "probability": 0.83740234375}, {"start": 2476.52, "end": 2476.6, "word": " be", "probability": 0.93994140625}, {"start": 2476.6, "end": 2476.72, "word": " added", "probability": 0.9052734375}, {"start": 2476.72, "end": 2476.86, "word": " to", "probability": 0.9560546875}, {"start": 2476.86, "end": 2476.94, "word": " the", "probability": 0.91943359375}, {"start": 2476.94, "end": 2477.16, "word": " list", "probability": 0.86279296875}, {"start": 2477.16, "end": 2477.8, "word": " inside", "probability": 0.458740234375}, {"start": 2477.8, "end": 2478.16, "word": " it.", "probability": 0.216552734375}], "temperature": 1.0}, {"id": 99, "seek": 250869, "start": 2479.29, "end": 2508.69, "text": " inside the button and when the button is pressed and there is an action on the button you don't control it, it's the user who presses it there is actually a loop inside the button and it tells every event action you have to execute the command called handle so actually all the GUI you see, add action, set on action, it's all an application for whom? for the observer pattern so that they can design it so that the item can work anywhere it is placed in", "tokens": [1854, 264, 2960, 293, 562, 264, 2960, 307, 17355, 293, 456, 307, 364, 3069, 322, 264, 2960, 291, 500, 380, 1969, 309, 11, 309, 311, 264, 4195, 567, 40892, 309, 456, 307, 767, 257, 6367, 1854, 264, 2960, 293, 309, 5112, 633, 2280, 3069, 291, 362, 281, 14483, 264, 5622, 1219, 4813, 370, 767, 439, 264, 17917, 40, 291, 536, 11, 909, 3069, 11, 992, 322, 3069, 11, 309, 311, 439, 364, 3861, 337, 7101, 30, 337, 264, 27878, 5102, 370, 300, 436, 393, 1715, 309, 370, 300, 264, 3174, 393, 589, 4992, 309, 307, 7074, 294], "avg_logprob": -0.5723852326675337, "compression_ratio": 1.903765690376569, "no_speech_prob": 9.953975677490234e-05, "words": [{"start": 2479.29, "end": 2479.59, "word": " inside", "probability": 0.11053466796875}, {"start": 2479.59, "end": 2479.75, "word": " the", "probability": 0.78173828125}, {"start": 2479.75, "end": 2479.91, "word": " button", "probability": 0.50927734375}, {"start": 2479.91, "end": 2480.03, "word": " and", "probability": 0.344970703125}, {"start": 2480.03, "end": 2480.25, "word": " when", "probability": 0.86083984375}, {"start": 2480.25, "end": 2480.55, "word": " the", "probability": 0.60986328125}, {"start": 2480.55, "end": 2481.07, "word": " button", "probability": 0.89697265625}, {"start": 2481.07, "end": 2481.07, "word": " is", "probability": 0.64404296875}, {"start": 2481.07, "end": 2481.07, "word": " pressed", "probability": 0.54150390625}, {"start": 2481.07, "end": 2481.25, "word": " and", "probability": 0.6337890625}, {"start": 2481.25, "end": 2481.47, "word": " there", "probability": 0.54052734375}, {"start": 2481.47, "end": 2481.61, "word": " is", "probability": 0.724609375}, {"start": 2481.61, "end": 2481.81, "word": " an", "probability": 0.34375}, {"start": 2481.81, "end": 2482.11, "word": " action", "probability": 0.94921875}, {"start": 2482.11, "end": 2482.23, "word": " on", "probability": 0.775390625}, {"start": 2482.23, "end": 2482.33, "word": " the", "probability": 0.78515625}, {"start": 2482.33, "end": 2482.55, "word": " button", "probability": 0.91748046875}, {"start": 2482.55, "end": 2483.17, "word": " you", "probability": 0.474609375}, {"start": 2483.17, "end": 2483.29, "word": " don't", "probability": 0.7587890625}, {"start": 2483.29, "end": 2483.67, "word": " control", "probability": 0.479736328125}, {"start": 2483.67, "end": 2483.89, "word": " it,", "probability": 0.78662109375}, {"start": 2483.91, "end": 2484.03, "word": " it's", "probability": 0.500244140625}, {"start": 2484.03, "end": 2484.11, "word": " the", "probability": 0.83544921875}, {"start": 2484.11, "end": 2484.31, "word": " user", "probability": 0.951171875}, {"start": 2484.31, "end": 2484.47, "word": " who", "probability": 0.3515625}, {"start": 2484.47, "end": 2484.61, "word": " presses", "probability": 0.77978515625}, {"start": 2484.61, "end": 2484.99, "word": " it", "probability": 0.76416015625}, {"start": 2484.99, "end": 2485.51, "word": " there", "probability": 0.255859375}, {"start": 2485.51, "end": 2486.11, "word": " is", "probability": 0.55908203125}, {"start": 2486.11, "end": 2486.11, "word": " actually", "probability": 0.3916015625}, {"start": 2486.11, "end": 2486.49, "word": " a", "probability": 0.97705078125}, {"start": 2486.49, "end": 2486.67, "word": " loop", "probability": 0.8837890625}, {"start": 2486.67, "end": 2487.09, "word": " inside", "probability": 0.320068359375}, {"start": 2487.09, "end": 2487.37, "word": " the", "probability": 0.8974609375}, {"start": 2487.37, "end": 2487.89, "word": " button", "probability": 0.90283203125}, {"start": 2487.89, "end": 2488.17, "word": " and", "probability": 0.209716796875}, {"start": 2488.17, "end": 2488.79, "word": " it", "probability": 0.432861328125}, {"start": 2488.79, "end": 2488.93, "word": " tells", "probability": 0.4404296875}, {"start": 2488.93, "end": 2489.41, "word": " every", "probability": 0.43408203125}, {"start": 2489.41, "end": 2489.97, "word": " event", "probability": 0.62060546875}, {"start": 2489.97, "end": 2490.39, "word": " action", "probability": 0.533203125}, {"start": 2490.39, "end": 2490.49, "word": " you", "probability": 0.467529296875}, {"start": 2490.49, "end": 2491.03, "word": " have", "probability": 0.84423828125}, {"start": 2491.03, "end": 2491.27, "word": " to", "probability": 0.763671875}, {"start": 2491.27, "end": 2491.55, "word": " execute", "probability": 0.440673828125}, {"start": 2491.55, "end": 2491.75, "word": " the", "probability": 0.2724609375}, {"start": 2491.75, "end": 2491.99, "word": " command", "probability": 0.4482421875}, {"start": 2491.99, "end": 2492.39, "word": " called", "probability": 0.427490234375}, {"start": 2492.39, "end": 2493.63, "word": " handle", "probability": 0.6201171875}, {"start": 2493.63, "end": 2494.71, "word": " so", "probability": 0.48388671875}, {"start": 2494.71, "end": 2495.09, "word": " actually", "probability": 0.2476806640625}, {"start": 2495.09, "end": 2495.47, "word": " all", "probability": 0.673828125}, {"start": 2495.47, "end": 2495.61, "word": " the", "probability": 0.84228515625}, {"start": 2495.61, "end": 2496.09, "word": " GUI", "probability": 0.863525390625}, {"start": 2496.09, "end": 2496.21, "word": " you", "probability": 0.412109375}, {"start": 2496.21, "end": 2496.57, "word": " see,", "probability": 0.89404296875}, {"start": 2496.65, "end": 2497.21, "word": " add", "probability": 0.428955078125}, {"start": 2497.21, "end": 2497.61, "word": " action,", "probability": 0.357666015625}, {"start": 2497.67, "end": 2498.03, "word": " set", "probability": 0.7646484375}, {"start": 2498.03, "end": 2498.23, "word": " on", "probability": 0.66162109375}, {"start": 2498.23, "end": 2498.65, "word": " action,", "probability": 0.94921875}, {"start": 2498.79, "end": 2499.19, "word": " it's", "probability": 0.45355224609375}, {"start": 2499.19, "end": 2499.45, "word": " all", "probability": 0.63232421875}, {"start": 2499.45, "end": 2499.61, "word": " an", "probability": 0.291748046875}, {"start": 2499.61, "end": 2499.85, "word": " application", "probability": 0.830078125}, {"start": 2499.85, "end": 2500.05, "word": " for", "probability": 0.68359375}, {"start": 2500.05, "end": 2500.21, "word": " whom?", "probability": 0.6337890625}, {"start": 2501.13, "end": 2501.57, "word": " for", "probability": 0.61865234375}, {"start": 2501.57, "end": 2501.69, "word": " the", "probability": 0.865234375}, {"start": 2501.69, "end": 2502.05, "word": " observer", "probability": 0.740234375}, {"start": 2502.05, "end": 2502.45, "word": " pattern", "probability": 0.875}, {"start": 2502.45, "end": 2503.23, "word": " so", "probability": 0.388916015625}, {"start": 2503.23, "end": 2503.39, "word": " that", "probability": 0.446533203125}, {"start": 2503.39, "end": 2504.43, "word": " they", "probability": 0.5830078125}, {"start": 2504.43, "end": 2504.79, "word": " can", "probability": 0.40185546875}, {"start": 2504.79, "end": 2504.79, "word": " design", "probability": 0.8203125}, {"start": 2504.79, "end": 2505.09, "word": " it", "probability": 0.8447265625}, {"start": 2505.09, "end": 2505.23, "word": " so", "probability": 0.171630859375}, {"start": 2505.23, "end": 2505.41, "word": " that", "probability": 0.89208984375}, {"start": 2505.41, "end": 2505.77, "word": " the", "probability": 0.7626953125}, {"start": 2505.77, "end": 2506.15, "word": " item", "probability": 0.9521484375}, {"start": 2506.15, "end": 2506.33, "word": " can", "probability": 0.426513671875}, {"start": 2506.33, "end": 2506.55, "word": " work", "probability": 0.71923828125}, {"start": 2506.55, "end": 2507.03, "word": " anywhere", "probability": 0.6572265625}, {"start": 2507.03, "end": 2508.07, "word": " it", "probability": 0.533203125}, {"start": 2508.07, "end": 2508.13, "word": " is", "probability": 0.3642578125}, {"start": 2508.13, "end": 2508.35, "word": " placed", "probability": 0.56884765625}, {"start": 2508.35, "end": 2508.69, "word": " in", "probability": 0.70361328125}], "temperature": 1.0}, {"id": 100, "seek": 253421, "start": 2511.74, "end": 2534.22, "text": "How does the baton send a message to an item it doesn't know its name? Because the baton can be used anywhere. For example, I don't care about the baton. Anyone who wants to listen to me must be of the event action type. Just like the A. Anyone who wants to listen to me must be of the A listener type. He must implement for the A listener.", "tokens": [6462, 775, 264, 7362, 266, 2845, 257, 3636, 281, 364, 3174, 309, 1177, 380, 458, 1080, 1315, 30, 1436, 264, 7362, 266, 393, 312, 1143, 4992, 13, 1171, 1365, 11, 286, 500, 380, 1127, 466, 264, 7362, 266, 13, 14643, 567, 2738, 281, 2140, 281, 385, 1633, 312, 295, 264, 2280, 3069, 2010, 13, 1449, 411, 264, 316, 13, 14643, 567, 2738, 281, 2140, 281, 385, 1633, 312, 295, 264, 316, 31569, 2010, 13, 634, 1633, 4445, 337, 264, 316, 31569, 13], "avg_logprob": -0.457078318998038, "compression_ratio": 1.8085106382978724, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 2511.74, "end": 2512.18, "word": "How", "probability": 0.5390625}, {"start": 2512.18, "end": 2512.62, "word": " does", "probability": 0.505859375}, {"start": 2512.62, "end": 2512.72, "word": " the", "probability": 0.57470703125}, {"start": 2512.72, "end": 2513.12, "word": " baton", "probability": 0.62115478515625}, {"start": 2513.12, "end": 2514.52, "word": " send", "probability": 0.29296875}, {"start": 2514.52, "end": 2514.74, "word": " a", "probability": 0.2344970703125}, {"start": 2514.74, "end": 2514.74, "word": " message", "probability": 0.70068359375}, {"start": 2514.74, "end": 2514.74, "word": " to", "probability": 0.8740234375}, {"start": 2514.74, "end": 2514.86, "word": " an", "probability": 0.75732421875}, {"start": 2514.86, "end": 2515.06, "word": " item", "probability": 0.80517578125}, {"start": 2515.06, "end": 2515.22, "word": " it", "probability": 0.274658203125}, {"start": 2515.22, "end": 2515.32, "word": " doesn't", "probability": 0.789794921875}, {"start": 2515.32, "end": 2515.62, "word": " know", "probability": 0.80029296875}, {"start": 2515.62, "end": 2515.76, "word": " its", "probability": 0.51220703125}, {"start": 2515.76, "end": 2515.96, "word": " name?", "probability": 0.88916015625}, {"start": 2516.52, "end": 2516.72, "word": " Because", "probability": 0.78173828125}, {"start": 2516.72, "end": 2516.86, "word": " the", "probability": 0.734375}, {"start": 2516.86, "end": 2517.08, "word": " baton", "probability": 0.96826171875}, {"start": 2517.08, "end": 2517.28, "word": " can", "probability": 0.72216796875}, {"start": 2517.28, "end": 2517.7, "word": " be", "probability": 0.9248046875}, {"start": 2517.7, "end": 2517.92, "word": " used", "probability": 0.91845703125}, {"start": 2517.92, "end": 2518.38, "word": " anywhere.", "probability": 0.5185546875}, {"start": 2519.14, "end": 2519.44, "word": " For", "probability": 0.2174072265625}, {"start": 2519.44, "end": 2519.44, "word": " example,", "probability": 0.78466796875}, {"start": 2519.68, "end": 2519.8, "word": " I", "probability": 0.1514892578125}, {"start": 2519.8, "end": 2519.96, "word": " don't", "probability": 0.82763671875}, {"start": 2519.96, "end": 2520.26, "word": " care", "probability": 0.476318359375}, {"start": 2520.26, "end": 2520.46, "word": " about", "probability": 0.62890625}, {"start": 2520.46, "end": 2520.52, "word": " the", "probability": 0.75048828125}, {"start": 2520.52, "end": 2520.82, "word": " baton.", "probability": 0.96435546875}, {"start": 2521.28, "end": 2521.68, "word": " Anyone", "probability": 0.356201171875}, {"start": 2521.68, "end": 2521.82, "word": " who", "probability": 0.720703125}, {"start": 2521.82, "end": 2521.94, "word": " wants", "probability": 0.69873046875}, {"start": 2521.94, "end": 2521.94, "word": " to", "probability": 0.97021484375}, {"start": 2521.94, "end": 2522.22, "word": " listen", "probability": 0.6953125}, {"start": 2522.22, "end": 2522.32, "word": " to", "probability": 0.8115234375}, {"start": 2522.32, "end": 2522.5, "word": " me", "probability": 0.939453125}, {"start": 2522.5, "end": 2522.78, "word": " must", "probability": 0.359619140625}, {"start": 2522.78, "end": 2523.1, "word": " be", "probability": 0.51220703125}, {"start": 2523.1, "end": 2523.2, "word": " of", "probability": 0.66748046875}, {"start": 2523.2, "end": 2524.16, "word": " the", "probability": 0.7392578125}, {"start": 2524.16, "end": 2524.4, "word": " event", "probability": 0.269287109375}, {"start": 2524.4, "end": 2525.58, "word": " action", "probability": 0.6953125}, {"start": 2525.58, "end": 2525.58, "word": " type.", "probability": 0.78564453125}, {"start": 2525.72, "end": 2526.1, "word": " Just", "probability": 0.23681640625}, {"start": 2526.1, "end": 2526.16, "word": " like", "probability": 0.90478515625}, {"start": 2526.16, "end": 2526.68, "word": " the", "probability": 0.5654296875}, {"start": 2526.68, "end": 2526.9, "word": " A.", "probability": 0.50830078125}, {"start": 2527.72, "end": 2528.16, "word": " Anyone", "probability": 0.347900390625}, {"start": 2528.16, "end": 2528.38, "word": " who", "probability": 0.8564453125}, {"start": 2528.38, "end": 2528.52, "word": " wants", "probability": 0.818359375}, {"start": 2528.52, "end": 2528.58, "word": " to", "probability": 0.9716796875}, {"start": 2528.58, "end": 2528.82, "word": " listen", "probability": 0.873046875}, {"start": 2528.82, "end": 2528.94, "word": " to", "probability": 0.91064453125}, {"start": 2528.94, "end": 2529.08, "word": " me", "probability": 0.94775390625}, {"start": 2529.08, "end": 2529.32, "word": " must", "probability": 0.77880859375}, {"start": 2529.32, "end": 2529.58, "word": " be", "probability": 0.89208984375}, {"start": 2529.58, "end": 2529.66, "word": " of", "probability": 0.8349609375}, {"start": 2529.66, "end": 2530.72, "word": " the", "probability": 0.8427734375}, {"start": 2530.72, "end": 2530.8, "word": " A", "probability": 0.833984375}, {"start": 2530.8, "end": 2531.1, "word": " listener", "probability": 0.68212890625}, {"start": 2531.1, "end": 2531.32, "word": " type.", "probability": 0.9453125}, {"start": 2532.48, "end": 2532.82, "word": " He", "probability": 0.372802734375}, {"start": 2532.82, "end": 2532.96, "word": " must", "probability": 0.7021484375}, {"start": 2532.96, "end": 2533.56, "word": " implement", "probability": 0.60791015625}, {"start": 2533.56, "end": 2533.82, "word": " for", "probability": 0.55615234375}, {"start": 2533.82, "end": 2533.9, "word": " the", "probability": 0.397705078125}, {"start": 2533.9, "end": 2533.96, "word": " A", "probability": 0.98388671875}, {"start": 2533.96, "end": 2534.22, "word": " listener.", "probability": 0.74462890625}], "temperature": 1.0}, {"id": 101, "seek": 256435, "start": 2535.65, "end": 2564.35, "text": " You took the anonymous class method, but by the way, there is more than one method that you should have learned. Not even lambda. The frame itself, the screen itself should say above implement event action and put this here. The class itself became an event action. This is what you used to apply in GUI, but you didn't understand it.", "tokens": [509, 1890, 264, 24932, 1508, 3170, 11, 457, 538, 264, 636, 11, 456, 307, 544, 813, 472, 3170, 300, 291, 820, 362, 3264, 13, 1726, 754, 13607, 13, 440, 3920, 2564, 11, 264, 2568, 2564, 820, 584, 3673, 4445, 2280, 3069, 293, 829, 341, 510, 13, 440, 1508, 2564, 3062, 364, 2280, 3069, 13, 639, 307, 437, 291, 1143, 281, 3079, 294, 17917, 40, 11, 457, 291, 994, 380, 1223, 309, 13], "avg_logprob": -0.5800513763950296, "compression_ratio": 1.6105769230769231, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 2535.65, "end": 2535.95, "word": " You", "probability": 0.491455078125}, {"start": 2535.95, "end": 2536.27, "word": " took", "probability": 0.405517578125}, {"start": 2536.27, "end": 2536.41, "word": " the", "probability": 0.4541015625}, {"start": 2536.41, "end": 2536.95, "word": " anonymous", "probability": 0.38671875}, {"start": 2536.95, "end": 2537.43, "word": " class", "probability": 0.9365234375}, {"start": 2537.43, "end": 2537.43, "word": " method,", "probability": 0.371826171875}, {"start": 2537.63, "end": 2537.75, "word": " but", "probability": 0.63134765625}, {"start": 2537.75, "end": 2537.85, "word": " by", "probability": 0.40087890625}, {"start": 2537.85, "end": 2537.97, "word": " the", "probability": 0.935546875}, {"start": 2537.97, "end": 2538.05, "word": " way,", "probability": 0.96533203125}, {"start": 2538.17, "end": 2538.17, "word": " there", "probability": 0.8408203125}, {"start": 2538.17, "end": 2538.21, "word": " is", "probability": 0.335205078125}, {"start": 2538.21, "end": 2538.45, "word": " more", "probability": 0.630859375}, {"start": 2538.45, "end": 2538.57, "word": " than", "probability": 0.8212890625}, {"start": 2538.57, "end": 2538.89, "word": " one", "probability": 0.84375}, {"start": 2538.89, "end": 2538.95, "word": " method", "probability": 0.52001953125}, {"start": 2538.95, "end": 2539.03, "word": " that", "probability": 0.448974609375}, {"start": 2539.03, "end": 2539.19, "word": " you", "probability": 0.7744140625}, {"start": 2539.19, "end": 2539.19, "word": " should", "probability": 0.470703125}, {"start": 2539.19, "end": 2539.35, "word": " have", "probability": 0.367919921875}, {"start": 2539.35, "end": 2539.59, "word": " learned.", "probability": 0.70263671875}, {"start": 2540.15, "end": 2540.81, "word": " Not", "probability": 0.1356201171875}, {"start": 2540.81, "end": 2541.83, "word": " even", "probability": 0.37744140625}, {"start": 2541.83, "end": 2542.17, "word": " lambda.", "probability": 0.587890625}, {"start": 2543.27, "end": 2543.93, "word": " The", "probability": 0.361328125}, {"start": 2543.93, "end": 2545.09, "word": " frame", "probability": 0.5068359375}, {"start": 2545.09, "end": 2545.63, "word": " itself,", "probability": 0.578125}, {"start": 2546.49, "end": 2547.43, "word": " the", "probability": 0.66650390625}, {"start": 2547.43, "end": 2547.77, "word": " screen", "probability": 0.7294921875}, {"start": 2547.77, "end": 2548.33, "word": " itself", "probability": 0.708984375}, {"start": 2548.33, "end": 2548.63, "word": " should", "probability": 0.10546875}, {"start": 2548.63, "end": 2548.81, "word": " say", "probability": 0.63623046875}, {"start": 2548.81, "end": 2549.29, "word": " above", "probability": 0.3037109375}, {"start": 2549.29, "end": 2549.97, "word": " implement", "probability": 0.250732421875}, {"start": 2549.97, "end": 2551.19, "word": " event", "probability": 0.81298828125}, {"start": 2551.19, "end": 2551.59, "word": " action", "probability": 0.904296875}, {"start": 2551.59, "end": 2552.19, "word": " and", "probability": 0.3720703125}, {"start": 2552.19, "end": 2552.43, "word": " put", "probability": 0.46240234375}, {"start": 2552.43, "end": 2552.89, "word": " this", "probability": 0.63671875}, {"start": 2552.89, "end": 2553.37, "word": " here.", "probability": 0.5986328125}, {"start": 2553.65, "end": 2553.95, "word": " The", "probability": 0.55908203125}, {"start": 2553.95, "end": 2554.31, "word": " class", "probability": 0.90966796875}, {"start": 2554.31, "end": 2554.75, "word": " itself", "probability": 0.444580078125}, {"start": 2554.75, "end": 2554.99, "word": " became", "probability": 0.353271484375}, {"start": 2554.99, "end": 2555.15, "word": " an", "probability": 0.49609375}, {"start": 2555.15, "end": 2556.23, "word": " event", "probability": 0.86083984375}, {"start": 2556.23, "end": 2556.71, "word": " action.", "probability": 0.89306640625}, {"start": 2557.61, "end": 2558.21, "word": " This", "probability": 0.353271484375}, {"start": 2558.21, "end": 2558.31, "word": " is", "probability": 0.84375}, {"start": 2558.31, "end": 2559.79, "word": " what", "probability": 0.87451171875}, {"start": 2559.79, "end": 2560.13, "word": " you", "probability": 0.7275390625}, {"start": 2560.13, "end": 2560.19, "word": " used", "probability": 0.2415771484375}, {"start": 2560.19, "end": 2560.21, "word": " to", "probability": 0.90283203125}, {"start": 2560.21, "end": 2560.47, "word": " apply", "probability": 0.80615234375}, {"start": 2560.47, "end": 2560.85, "word": " in", "probability": 0.7109375}, {"start": 2560.85, "end": 2561.99, "word": " GUI,", "probability": 0.861572265625}, {"start": 2562.97, "end": 2563.15, "word": " but", "probability": 0.8984375}, {"start": 2563.15, "end": 2563.37, "word": " you", "probability": 0.92578125}, {"start": 2563.37, "end": 2563.91, "word": " didn't", "probability": 0.6505126953125}, {"start": 2563.91, "end": 2564.21, "word": " understand", "probability": 0.64697265625}, {"start": 2564.21, "end": 2564.35, "word": " it.", "probability": 0.6015625}], "temperature": 1.0}, {"id": 102, "seek": 257279, "start": 2565.45, "end": 2572.79, "text": "Do you understand what I am saying? This thing that you used in the GUI is an application for the observer pattern", "tokens": [7653, 291, 1223, 437, 286, 669, 1566, 30, 639, 551, 300, 291, 1143, 294, 264, 17917, 40, 307, 364, 3861, 337, 264, 27878, 5102], "avg_logprob": -0.7393750190734864, "compression_ratio": 1.1515151515151516, "no_speech_prob": 1.9073486328125e-06, "words": [{"start": 2565.45, "end": 2565.89, "word": "Do", "probability": 0.0953369140625}, {"start": 2565.89, "end": 2566.27, "word": " you", "probability": 0.884765625}, {"start": 2566.27, "end": 2566.59, "word": " understand", "probability": 0.50732421875}, {"start": 2566.59, "end": 2566.93, "word": " what", "probability": 0.3798828125}, {"start": 2566.93, "end": 2567.05, "word": " I", "probability": 0.82958984375}, {"start": 2567.05, "end": 2567.05, "word": " am", "probability": 0.27392578125}, {"start": 2567.05, "end": 2567.11, "word": " saying?", "probability": 0.65283203125}, {"start": 2568.81, "end": 2569.37, "word": " This", "probability": 0.1983642578125}, {"start": 2569.37, "end": 2569.63, "word": " thing", "probability": 0.210693359375}, {"start": 2569.63, "end": 2569.69, "word": " that", "probability": 0.3994140625}, {"start": 2569.69, "end": 2569.93, "word": " you", "probability": 0.865234375}, {"start": 2569.93, "end": 2570.27, "word": " used", "probability": 0.341796875}, {"start": 2570.27, "end": 2570.51, "word": " in", "probability": 0.63330078125}, {"start": 2570.51, "end": 2570.57, "word": " the", "probability": 0.28564453125}, {"start": 2570.57, "end": 2570.91, "word": " GUI", "probability": 0.900634765625}, {"start": 2570.91, "end": 2571.13, "word": " is", "probability": 0.67919921875}, {"start": 2571.13, "end": 2571.27, "word": " an", "probability": 0.50048828125}, {"start": 2571.27, "end": 2571.57, "word": " application", "probability": 0.67724609375}, {"start": 2571.57, "end": 2572.01, "word": " for", "probability": 0.47509765625}, {"start": 2572.01, "end": 2572.05, "word": " the", "probability": 0.330810546875}, {"start": 2572.05, "end": 2572.47, "word": " observer", "probability": 0.50732421875}, {"start": 2572.47, "end": 2572.79, "word": " pattern", "probability": 0.8408203125}], "temperature": 1.0}, {"id": 103, "seek": 260248, "start": 2574.47, "end": 2602.49, "text": " But the idea is that you have to know how they did it. Because you won't stay all your life using other people's libraries. Maybe in the future you will reach a stage where you make your own library. This is how they did it. They applied an observer pattern on the GUI. The GUI library that we made. Like here, we applied an observer pattern. We let component A report any ... Take the A and put it in any new application that works.", "tokens": [583, 264, 1558, 307, 300, 291, 362, 281, 458, 577, 436, 630, 309, 13, 1436, 291, 1582, 380, 1754, 439, 428, 993, 1228, 661, 561, 311, 15148, 13, 2704, 294, 264, 2027, 291, 486, 2524, 257, 3233, 689, 291, 652, 428, 1065, 6405, 13, 639, 307, 577, 436, 630, 309, 13, 814, 6456, 364, 27878, 5102, 322, 264, 17917, 40, 13, 440, 17917, 40, 6405, 300, 321, 1027, 13, 1743, 510, 11, 321, 6456, 364, 27878, 5102, 13, 492, 718, 6542, 316, 2275, 604, 1097, 3664, 264, 316, 293, 829, 309, 294, 604, 777, 3861, 300, 1985, 13], "avg_logprob": -0.5009469889631175, "compression_ratio": 1.7222222222222223, "no_speech_prob": 8.64267349243164e-06, "words": [{"start": 2574.47, "end": 2574.75, "word": " But", "probability": 0.36767578125}, {"start": 2574.75, "end": 2574.85, "word": " the", "probability": 0.353759765625}, {"start": 2574.85, "end": 2575.07, "word": " idea", "probability": 0.64453125}, {"start": 2575.07, "end": 2575.27, "word": " is", "probability": 0.6689453125}, {"start": 2575.27, "end": 2575.41, "word": " that", "probability": 0.67919921875}, {"start": 2575.41, "end": 2575.55, "word": " you", "probability": 0.8505859375}, {"start": 2575.55, "end": 2575.69, "word": " have", "probability": 0.2919921875}, {"start": 2575.69, "end": 2575.87, "word": " to", "probability": 0.9716796875}, {"start": 2575.87, "end": 2576.37, "word": " know", "probability": 0.80029296875}, {"start": 2576.37, "end": 2577.15, "word": " how", "probability": 0.87744140625}, {"start": 2577.15, "end": 2577.17, "word": " they", "probability": 0.7705078125}, {"start": 2577.17, "end": 2577.41, "word": " did", "probability": 0.56201171875}, {"start": 2577.41, "end": 2577.97, "word": " it.", "probability": 0.892578125}, {"start": 2577.99, "end": 2578.35, "word": " Because", "probability": 0.77197265625}, {"start": 2578.35, "end": 2578.55, "word": " you", "probability": 0.8828125}, {"start": 2578.55, "end": 2578.71, "word": " won't", "probability": 0.60150146484375}, {"start": 2578.71, "end": 2578.91, "word": " stay", "probability": 0.3388671875}, {"start": 2578.91, "end": 2579.03, "word": " all", "probability": 0.44287109375}, {"start": 2579.03, "end": 2579.03, "word": " your", "probability": 0.8583984375}, {"start": 2579.03, "end": 2579.35, "word": " life", "probability": 0.91259765625}, {"start": 2579.35, "end": 2580.53, "word": " using", "probability": 0.30078125}, {"start": 2580.53, "end": 2581.65, "word": " other", "probability": 0.5419921875}, {"start": 2581.65, "end": 2582.37, "word": " people's", "probability": 0.7318115234375}, {"start": 2582.37, "end": 2582.37, "word": " libraries.", "probability": 0.75732421875}, {"start": 2582.55, "end": 2582.85, "word": " Maybe", "probability": 0.32275390625}, {"start": 2582.85, "end": 2583.11, "word": " in", "probability": 0.78369140625}, {"start": 2583.11, "end": 2583.29, "word": " the", "probability": 0.87939453125}, {"start": 2583.29, "end": 2583.57, "word": " future", "probability": 0.98193359375}, {"start": 2583.57, "end": 2583.73, "word": " you", "probability": 0.74365234375}, {"start": 2583.73, "end": 2583.81, "word": " will", "probability": 0.427734375}, {"start": 2583.81, "end": 2583.97, "word": " reach", "probability": 0.72900390625}, {"start": 2583.97, "end": 2584.23, "word": " a", "probability": 0.88525390625}, {"start": 2584.23, "end": 2584.23, "word": " stage", "probability": 0.62548828125}, {"start": 2584.23, "end": 2584.37, "word": " where", "probability": 0.77099609375}, {"start": 2584.37, "end": 2584.51, "word": " you", "probability": 0.95654296875}, {"start": 2584.51, "end": 2584.89, "word": " make", "probability": 0.11029052734375}, {"start": 2584.89, "end": 2586.39, "word": " your", "probability": 0.53271484375}, {"start": 2586.39, "end": 2586.39, "word": " own", "probability": 0.84326171875}, {"start": 2586.39, "end": 2586.65, "word": " library.", "probability": 0.9150390625}, {"start": 2586.73, "end": 2586.91, "word": " This", "probability": 0.38671875}, {"start": 2586.91, "end": 2586.91, "word": " is", "probability": 0.9091796875}, {"start": 2586.91, "end": 2586.99, "word": " how", "probability": 0.8779296875}, {"start": 2586.99, "end": 2586.99, "word": " they", "probability": 0.87158203125}, {"start": 2586.99, "end": 2587.25, "word": " did", "probability": 0.76123046875}, {"start": 2587.25, "end": 2587.41, "word": " it.", "probability": 0.93994140625}, {"start": 2588.51, "end": 2589.03, "word": " They", "probability": 0.75927734375}, {"start": 2589.03, "end": 2589.23, "word": " applied", "probability": 0.64453125}, {"start": 2589.23, "end": 2589.39, "word": " an", "probability": 0.315673828125}, {"start": 2589.39, "end": 2589.71, "word": " observer", "probability": 0.78857421875}, {"start": 2589.71, "end": 2590.21, "word": " pattern", "probability": 0.89111328125}, {"start": 2590.21, "end": 2590.49, "word": " on", "probability": 0.5224609375}, {"start": 2590.49, "end": 2590.57, "word": " the", "probability": 0.6123046875}, {"start": 2590.57, "end": 2591.07, "word": " GUI.", "probability": 0.9677734375}, {"start": 2591.33, "end": 2591.59, "word": " The", "probability": 0.2362060546875}, {"start": 2591.59, "end": 2592.33, "word": " GUI", "probability": 0.853759765625}, {"start": 2592.33, "end": 2592.33, "word": " library", "probability": 0.87744140625}, {"start": 2592.33, "end": 2592.41, "word": " that", "probability": 0.52197265625}, {"start": 2592.41, "end": 2592.45, "word": " we", "probability": 0.67138671875}, {"start": 2592.45, "end": 2592.67, "word": " made.", "probability": 0.382568359375}, {"start": 2593.17, "end": 2593.53, "word": " Like", "probability": 0.1610107421875}, {"start": 2593.53, "end": 2594.15, "word": " here,", "probability": 0.38818359375}, {"start": 2594.23, "end": 2594.23, "word": " we", "probability": 0.9365234375}, {"start": 2594.23, "end": 2594.67, "word": " applied", "probability": 0.70751953125}, {"start": 2594.67, "end": 2595.47, "word": " an", "probability": 0.712890625}, {"start": 2595.47, "end": 2595.77, "word": " observer", "probability": 0.8671875}, {"start": 2595.77, "end": 2596.19, "word": " pattern.", "probability": 0.87939453125}, {"start": 2596.71, "end": 2596.75, "word": " We", "probability": 0.455810546875}, {"start": 2596.75, "end": 2597.11, "word": " let", "probability": 0.54638671875}, {"start": 2597.11, "end": 2597.79, "word": " component", "probability": 0.5654296875}, {"start": 2597.79, "end": 2598.33, "word": " A", "probability": 0.77880859375}, {"start": 2598.33, "end": 2599.37, "word": " report", "probability": 0.10113525390625}, {"start": 2599.37, "end": 2599.79, "word": " any", "probability": 0.462158203125}, {"start": 2599.79, "end": 2600.07, "word": " ...", "probability": 0.255859375}, {"start": 2600.07, "end": 2600.59, "word": " Take", "probability": 0.261962890625}, {"start": 2600.59, "end": 2600.79, "word": " the", "probability": 0.293212890625}, {"start": 2600.79, "end": 2600.95, "word": " A", "probability": 0.77685546875}, {"start": 2600.95, "end": 2601.07, "word": " and", "probability": 0.6240234375}, {"start": 2601.07, "end": 2601.27, "word": " put", "probability": 0.58837890625}, {"start": 2601.27, "end": 2601.33, "word": " it", "probability": 0.90869140625}, {"start": 2601.33, "end": 2601.43, "word": " in", "probability": 0.7744140625}, {"start": 2601.43, "end": 2601.55, "word": " any", "probability": 0.87255859375}, {"start": 2601.55, "end": 2602.09, "word": " new", "probability": 0.75146484375}, {"start": 2602.09, "end": 2602.09, "word": " application", "probability": 0.7255859375}, {"start": 2602.09, "end": 2602.23, "word": " that", "probability": 0.626953125}, {"start": 2602.23, "end": 2602.49, "word": " works.", "probability": 0.343505859375}], "temperature": 1.0}, {"id": 104, "seek": 262161, "start": 2603.29, "end": 2621.61, "text": "Yes, it works normally, there is no problem. Remove this class A, it and its interface in the same class. Take it and put it in another application, and the A remains the same. The A remains running. Anyone who wants to listen to the A only has to implement to whom? To its interface. And so on. This is how the button works everywhere.", "tokens": [6054, 11, 309, 1985, 5646, 11, 456, 307, 572, 1154, 13, 18831, 341, 1508, 316, 11, 309, 293, 1080, 9226, 294, 264, 912, 1508, 13, 3664, 309, 293, 829, 309, 294, 1071, 3861, 11, 293, 264, 316, 7023, 264, 912, 13, 440, 316, 7023, 2614, 13, 14643, 567, 2738, 281, 2140, 281, 264, 316, 787, 575, 281, 4445, 281, 7101, 30, 1407, 1080, 9226, 13, 400, 370, 322, 13, 639, 307, 577, 264, 2960, 1985, 5315, 13], "avg_logprob": -0.4979967780602284, "compression_ratio": 1.6470588235294117, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 2603.29, "end": 2603.57, "word": "Yes,", "probability": 0.244384765625}, {"start": 2603.61, "end": 2603.69, "word": " it", "probability": 0.73388671875}, {"start": 2603.69, "end": 2603.87, "word": " works", "probability": 0.54150390625}, {"start": 2603.87, "end": 2604.17, "word": " normally,", "probability": 0.4521484375}, {"start": 2604.27, "end": 2604.27, "word": " there", "probability": 0.5048828125}, {"start": 2604.27, "end": 2604.43, "word": " is", "probability": 0.56787109375}, {"start": 2604.43, "end": 2604.53, "word": " no", "probability": 0.8818359375}, {"start": 2604.53, "end": 2604.91, "word": " problem.", "probability": 0.76416015625}, {"start": 2605.03, "end": 2605.23, "word": " Remove", "probability": 0.59326171875}, {"start": 2605.23, "end": 2605.51, "word": " this", "probability": 0.63037109375}, {"start": 2605.51, "end": 2605.93, "word": " class", "probability": 0.79833984375}, {"start": 2605.93, "end": 2606.25, "word": " A,", "probability": 0.658203125}, {"start": 2606.97, "end": 2607.25, "word": " it", "probability": 0.2529296875}, {"start": 2607.25, "end": 2607.93, "word": " and", "probability": 0.7763671875}, {"start": 2607.93, "end": 2607.99, "word": " its", "probability": 0.59521484375}, {"start": 2607.99, "end": 2608.55, "word": " interface", "probability": 0.9208984375}, {"start": 2608.55, "end": 2609.71, "word": " in", "probability": 0.447509765625}, {"start": 2609.71, "end": 2609.79, "word": " the", "probability": 0.90771484375}, {"start": 2609.79, "end": 2609.93, "word": " same", "probability": 0.89306640625}, {"start": 2609.93, "end": 2610.27, "word": " class.", "probability": 0.951171875}, {"start": 2610.33, "end": 2610.49, "word": " Take", "probability": 0.44140625}, {"start": 2610.49, "end": 2610.59, "word": " it", "probability": 0.685546875}, {"start": 2610.59, "end": 2610.65, "word": " and", "probability": 0.8369140625}, {"start": 2610.65, "end": 2610.81, "word": " put", "probability": 0.60400390625}, {"start": 2610.81, "end": 2610.89, "word": " it", "probability": 0.9150390625}, {"start": 2610.89, "end": 2610.95, "word": " in", "probability": 0.82373046875}, {"start": 2610.95, "end": 2611.01, "word": " another", "probability": 0.70166015625}, {"start": 2611.01, "end": 2611.31, "word": " application,", "probability": 0.5224609375}, {"start": 2611.65, "end": 2611.65, "word": " and", "probability": 0.61865234375}, {"start": 2611.65, "end": 2611.93, "word": " the", "probability": 0.6611328125}, {"start": 2611.93, "end": 2612.09, "word": " A", "probability": 0.7216796875}, {"start": 2612.09, "end": 2612.13, "word": " remains", "probability": 0.375732421875}, {"start": 2612.13, "end": 2612.31, "word": " the", "probability": 0.2137451171875}, {"start": 2612.31, "end": 2612.39, "word": " same.", "probability": 0.85302734375}, {"start": 2613.13, "end": 2613.49, "word": " The", "probability": 0.451171875}, {"start": 2613.49, "end": 2613.65, "word": " A", "probability": 0.9580078125}, {"start": 2613.65, "end": 2613.69, "word": " remains", "probability": 0.5556640625}, {"start": 2613.69, "end": 2613.89, "word": " running.", "probability": 0.6083984375}, {"start": 2615.49, "end": 2615.85, "word": " Anyone", "probability": 0.8017578125}, {"start": 2615.85, "end": 2616.05, "word": " who", "probability": 0.57421875}, {"start": 2616.05, "end": 2616.13, "word": " wants", "probability": 0.59326171875}, {"start": 2616.13, "end": 2616.19, "word": " to", "probability": 0.93017578125}, {"start": 2616.19, "end": 2616.41, "word": " listen", "probability": 0.71826171875}, {"start": 2616.41, "end": 2616.53, "word": " to", "probability": 0.9609375}, {"start": 2616.53, "end": 2616.65, "word": " the", "probability": 0.8173828125}, {"start": 2616.65, "end": 2616.77, "word": " A", "probability": 0.97216796875}, {"start": 2616.77, "end": 2616.97, "word": " only", "probability": 0.15673828125}, {"start": 2616.97, "end": 2617.11, "word": " has", "probability": 0.33740234375}, {"start": 2617.11, "end": 2617.15, "word": " to", "probability": 0.97216796875}, {"start": 2617.15, "end": 2617.63, "word": " implement", "probability": 0.50830078125}, {"start": 2617.63, "end": 2617.91, "word": " to", "probability": 0.2481689453125}, {"start": 2617.91, "end": 2618.05, "word": " whom?", "probability": 0.607421875}, {"start": 2618.33, "end": 2618.61, "word": " To", "probability": 0.80810546875}, {"start": 2618.61, "end": 2618.67, "word": " its", "probability": 0.444580078125}, {"start": 2618.67, "end": 2619.13, "word": " interface.", "probability": 0.91259765625}, {"start": 2619.65, "end": 2619.77, "word": " And", "probability": 0.61181640625}, {"start": 2619.77, "end": 2620.05, "word": " so", "probability": 0.43798828125}, {"start": 2620.05, "end": 2620.21, "word": " on.", "probability": 0.84130859375}, {"start": 2620.23, "end": 2620.41, "word": " This", "probability": 0.4296875}, {"start": 2620.41, "end": 2620.43, "word": " is", "probability": 0.74169921875}, {"start": 2620.43, "end": 2620.49, "word": " how", "probability": 0.92236328125}, {"start": 2620.49, "end": 2620.57, "word": " the", "probability": 0.53369140625}, {"start": 2620.57, "end": 2620.75, "word": " button", "probability": 0.75634765625}, {"start": 2620.75, "end": 2621.17, "word": " works", "probability": 0.42529296875}, {"start": 2621.17, "end": 2621.61, "word": " everywhere.", "probability": 0.638671875}], "temperature": 1.0}, {"id": 105, "seek": 263803, "start": 2622.95, "end": 2638.03, "text": "The button I use in my program? Ok. How do I work? I have an idea. You give me a set on action and the object must be an event action. Like here, it must be an ALS. Ok? Is this idea clear?", "tokens": [2278, 2960, 286, 764, 294, 452, 1461, 30, 3477, 13, 1012, 360, 286, 589, 30, 286, 362, 364, 1558, 13, 509, 976, 385, 257, 992, 322, 3069, 293, 264, 2657, 1633, 312, 364, 2280, 3069, 13, 1743, 510, 11, 309, 1633, 312, 364, 7056, 50, 13, 3477, 30, 1119, 341, 1558, 1850, 30], "avg_logprob": -0.6047453935499545, "compression_ratio": 1.3146853146853146, "no_speech_prob": 1.2993812561035156e-05, "words": [{"start": 2622.95, "end": 2623.17, "word": "The", "probability": 0.1513671875}, {"start": 2623.17, "end": 2623.39, "word": " button", "probability": 0.673828125}, {"start": 2623.39, "end": 2623.51, "word": " I", "probability": 0.50537109375}, {"start": 2623.51, "end": 2623.83, "word": " use", "probability": 0.76513671875}, {"start": 2623.83, "end": 2624.03, "word": " in", "probability": 0.8173828125}, {"start": 2624.03, "end": 2624.11, "word": " my", "probability": 0.904296875}, {"start": 2624.11, "end": 2624.45, "word": " program?", "probability": 0.57568359375}, {"start": 2625.19, "end": 2625.63, "word": " Ok.", "probability": 0.261962890625}, {"start": 2625.85, "end": 2626.23, "word": " How", "probability": 0.345703125}, {"start": 2626.23, "end": 2626.45, "word": " do", "probability": 0.47607421875}, {"start": 2626.45, "end": 2626.49, "word": " I", "probability": 0.96826171875}, {"start": 2626.49, "end": 2626.77, "word": " work?", "probability": 0.693359375}, {"start": 2627.19, "end": 2627.39, "word": " I", "probability": 0.75244140625}, {"start": 2627.39, "end": 2627.55, "word": " have", "probability": 0.76611328125}, {"start": 2627.55, "end": 2627.71, "word": " an", "probability": 0.274658203125}, {"start": 2627.71, "end": 2627.73, "word": " idea.", "probability": 0.669921875}, {"start": 2628.05, "end": 2628.19, "word": " You", "probability": 0.52490234375}, {"start": 2628.19, "end": 2628.65, "word": " give", "probability": 0.137451171875}, {"start": 2628.65, "end": 2628.87, "word": " me", "probability": 0.87939453125}, {"start": 2628.87, "end": 2628.93, "word": " a", "probability": 0.58935546875}, {"start": 2628.93, "end": 2629.09, "word": " set", "probability": 0.4287109375}, {"start": 2629.09, "end": 2629.25, "word": " on", "probability": 0.53515625}, {"start": 2629.25, "end": 2629.69, "word": " action", "probability": 0.93896484375}, {"start": 2629.69, "end": 2630.11, "word": " and", "probability": 0.53759765625}, {"start": 2630.11, "end": 2630.49, "word": " the", "probability": 0.5517578125}, {"start": 2630.49, "end": 2631.05, "word": " object", "probability": 0.96044921875}, {"start": 2631.05, "end": 2631.89, "word": " must", "probability": 0.12225341796875}, {"start": 2631.89, "end": 2632.07, "word": " be", "probability": 0.82080078125}, {"start": 2632.07, "end": 2632.15, "word": " an", "probability": 0.384521484375}, {"start": 2632.15, "end": 2633.61, "word": " event", "probability": 0.84375}, {"start": 2633.61, "end": 2634.13, "word": " action.", "probability": 0.93359375}, {"start": 2634.41, "end": 2634.63, "word": " Like", "probability": 0.52685546875}, {"start": 2634.63, "end": 2634.87, "word": " here,", "probability": 0.5751953125}, {"start": 2634.97, "end": 2634.97, "word": " it", "probability": 0.59375}, {"start": 2634.97, "end": 2635.09, "word": " must", "probability": 0.5615234375}, {"start": 2635.09, "end": 2635.31, "word": " be", "probability": 0.9365234375}, {"start": 2635.31, "end": 2635.43, "word": " an", "probability": 0.59521484375}, {"start": 2635.43, "end": 2635.93, "word": " ALS.", "probability": 0.50714111328125}, {"start": 2636.75, "end": 2637.19, "word": " Ok?", "probability": 0.410400390625}, {"start": 2637.33, "end": 2637.51, "word": " Is", "probability": 0.5703125}, {"start": 2637.51, "end": 2637.77, "word": " this", "probability": 0.6123046875}, {"start": 2637.77, "end": 2638.03, "word": " idea", "probability": 0.640625}, {"start": 2638.03, "end": 2638.03, "word": " clear?", "probability": 0.8876953125}], "temperature": 1.0}, {"id": 106, "seek": 265322, "start": 2639.72, "end": 2653.22, "text": "This is just to explain to you the concept of Observer Pattern Next time we will see a practical example on this topic and we will continue the slides to see today's diagram of the Observer Pattern and God bless you all", "tokens": [5723, 307, 445, 281, 2903, 281, 291, 264, 3410, 295, 20707, 38241, 34367, 77, 3087, 565, 321, 486, 536, 257, 8496, 1365, 322, 341, 4829, 293, 321, 486, 2354, 264, 9788, 281, 536, 965, 311, 10686, 295, 264, 20707, 38241, 34367, 77, 293, 1265, 5227, 291, 439], "avg_logprob": -0.5504557018478712, "compression_ratio": 1.5, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2639.72, "end": 2640.04, "word": "This", "probability": 0.4052734375}, {"start": 2640.04, "end": 2640.12, "word": " is", "probability": 0.436279296875}, {"start": 2640.12, "end": 2640.22, "word": " just", "probability": 0.6005859375}, {"start": 2640.22, "end": 2640.46, "word": " to", "probability": 0.84033203125}, {"start": 2640.46, "end": 2640.8, "word": " explain", "probability": 0.400634765625}, {"start": 2640.8, "end": 2640.8, "word": " to", "probability": 0.39208984375}, {"start": 2640.8, "end": 2640.96, "word": " you", "probability": 0.95263671875}, {"start": 2640.96, "end": 2641.2, "word": " the", "probability": 0.27783203125}, {"start": 2641.2, "end": 2641.42, "word": " concept", "probability": 0.28564453125}, {"start": 2641.42, "end": 2641.64, "word": " of", "probability": 0.8837890625}, {"start": 2641.64, "end": 2642.3, "word": " Observer", "probability": 0.5263671875}, {"start": 2642.3, "end": 2642.8, "word": " Pattern", "probability": 0.851318359375}, {"start": 2642.8, "end": 2643.24, "word": " Next", "probability": 0.3251953125}, {"start": 2643.24, "end": 2643.46, "word": " time", "probability": 0.771484375}, {"start": 2643.46, "end": 2643.82, "word": " we", "probability": 0.58056640625}, {"start": 2643.82, "end": 2643.82, "word": " will", "probability": 0.712890625}, {"start": 2643.82, "end": 2643.98, "word": " see", "probability": 0.5302734375}, {"start": 2643.98, "end": 2644.08, "word": " a", "probability": 0.451416015625}, {"start": 2644.08, "end": 2644.66, "word": " practical", "probability": 0.6787109375}, {"start": 2644.66, "end": 2645.14, "word": " example", "probability": 0.9423828125}, {"start": 2645.14, "end": 2645.58, "word": " on", "probability": 0.299072265625}, {"start": 2645.58, "end": 2645.66, "word": " this", "probability": 0.79736328125}, {"start": 2645.66, "end": 2645.94, "word": " topic", "probability": 0.6708984375}, {"start": 2645.94, "end": 2646.26, "word": " and", "probability": 0.460205078125}, {"start": 2646.26, "end": 2646.34, "word": " we", "probability": 0.32958984375}, {"start": 2646.34, "end": 2646.4, "word": " will", "probability": 0.7421875}, {"start": 2646.4, "end": 2646.76, "word": " continue", "probability": 0.57421875}, {"start": 2646.76, "end": 2648.62, "word": " the", "probability": 0.31884765625}, {"start": 2648.62, "end": 2649.12, "word": " slides", "probability": 0.9599609375}, {"start": 2649.12, "end": 2649.32, "word": " to", "probability": 0.68603515625}, {"start": 2649.32, "end": 2649.68, "word": " see", "probability": 0.740234375}, {"start": 2649.68, "end": 2650.08, "word": " today's", "probability": 0.519287109375}, {"start": 2650.08, "end": 2650.56, "word": " diagram", "probability": 0.6279296875}, {"start": 2650.56, "end": 2651.54, "word": " of", "probability": 0.88720703125}, {"start": 2651.54, "end": 2651.64, "word": " the", "probability": 0.54443359375}, {"start": 2651.64, "end": 2652.02, "word": " Observer", "probability": 0.80419921875}, {"start": 2652.02, "end": 2652.58, "word": " Pattern", "probability": 0.961669921875}, {"start": 2652.58, "end": 2652.86, "word": " and", "probability": 0.367919921875}, {"start": 2652.86, "end": 2653.04, "word": " God", "probability": 0.322509765625}, {"start": 2653.04, "end": 2653.1, "word": " bless", "probability": 0.71875}, {"start": 2653.1, "end": 2653.2, "word": " you", "probability": 0.9306640625}, {"start": 2653.2, "end": 2653.22, "word": " all", "probability": 0.66259765625}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2653.646, "duration_after_vad": 2464.66624999999} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/ctDyWjX-bfc_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/ctDyWjX-bfc_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..a512cac6d7eaecee94b0dc17796f76b3831a1fb2 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/ctDyWjX-bfc_raw.srt @@ -0,0 +1,2552 @@ +1 +00:00:05,250 --> 00:00:07,430 +Okay guys, Assalamu Alaikum Assalam Walekum + +2 +00:00:07,430 --> 00:00:08,270 +Assalam Walekum Assalam Walekum Assalam Walekum + +3 +00:00:08,270 --> 00:00:10,910 +Assalam Walekum Assalam Walekum Assalam Walekum + +4 +00:00:10,910 --> 00:00:11,550 +Assalam Walekum Assalam Walekum Assalam Walekum + +5 +00:00:11,550 --> 00:00:11,550 +Assalam Walekum Assalam Walekum Assalam Walekum + +6 +00:00:11,550 --> 00:00:14,610 +Assalam Walekum Assalam Walekum Assalam Walekum + +7 +00:00:14,610 --> 00:00:14,750 +Assalam Walekum Assalam Walekum Assalam Walekum + +8 +00:00:14,750 --> 00:00:15,010 +Assalam Walekum Assalam Walekum Assalam Walekum + +9 +00:00:15,010 --> 00:00:15,410 +Assalam Walekum Assalam Walekum Assalam Walekum + +10 +00:00:15,410 --> 00:00:17,410 +Assalam Walekum Assalam Walekum Assalam Walekum + +11 +00:00:17,410 --> 00:00:17,550 +Assalam Walekum Assalam Walekum Assalam Walekum + +12 +00:00:17,550 --> 00:00:17,550 +Assalam Walekum Assalam Walekum Assalam Walekum + +13 +00:00:17,550 --> 00:00:20,530 +Assalam Walekum Assalam Walekum Assalam Walekum + +14 +00:00:20,530 --> 00:00:22,930 +Assalam Walekum Assalam Walekum Assalam Walekum + +15 +00:00:22,930 --> 00:00:27,780 +Assalam Walekum Assalam Walekum Assalam WalekFor + +16 +00:00:27,780 --> 00:00:31,020 +example, Singleton's goal was to create one object + +17 +00:00:31,020 --> 00:00:36,340 +and use it everywhere Factory's goal was to + +18 +00:00:36,340 --> 00:00:40,140 +combine the creation in one class or method and + +19 +00:00:40,140 --> 00:00:43,180 +whatever difference the subclass creates in the + +20 +00:00:43,180 --> 00:00:46,750 +end returns from the interface or superclassthe + +21 +00:00:46,750 --> 00:00:52,290 +factory method we use it when the class does not + +22 +00:00:52,290 --> 00:00:55,890 +know or has a common code between subclasses but + +23 +00:00:55,890 --> 00:00:58,010 +they are different in the object that is being + +24 +00:00:58,010 --> 00:01:00,950 +created so instead of having to put all the code + +25 +00:01:00,950 --> 00:01:03,370 +in the subclasses we put the code in the + +26 +00:01:03,370 --> 00:01:06,490 +superclass and we entrust the subclass through the + +27 +00:01:06,490 --> 00:01:10,950 +factory method to create the different object what + +28 +00:01:10,950 --> 00:01:13,550 +else is there? the builder for example has a + +29 +00:01:13,550 --> 00:01:17,460 +specific function When I create an object through + +30 +00:01:17,460 --> 00:01:20,320 +the constructor, the constructor takes a lot of + +31 +00:01:20,320 --> 00:01:26,000 +parameters, so I can create the object step by + +32 +00:01:26,000 --> 00:01:31,190 +step through the builder pattern.This is a summary + +33 +00:01:31,190 --> 00:01:34,470 +of the most important creation design patterns + +34 +00:01:34,470 --> 00:01:37,010 +that we went through. The last thing is dependency + +35 +00:01:37,010 --> 00:01:40,470 +injection, which means that any dependency on any + +36 +00:01:40,470 --> 00:01:43,510 +object is better to go through from the outside. + +37 +00:01:44,150 --> 00:01:45,630 +Of course, when you go through from the outside, + +38 +00:01:45,810 --> 00:01:47,130 +creating the object will become more difficult, + +39 +00:01:47,530 --> 00:01:49,610 +especially if I have a lot of dependencies, right + +40 +00:01:49,610 --> 00:01:54,230 +or not?In this case, we can use dependency + +41 +00:01:54,230 --> 00:01:57,150 +injection framework like Juice for example to + +42 +00:01:57,150 --> 00:01:59,930 +facilitate the creation of objects if I use + +43 +00:01:59,930 --> 00:02:04,050 +dependency injection. So all the design patterns + +44 +00:02:04,050 --> 00:02:06,030 +that we talked about previously are related to the + +45 +00:02:06,030 --> 00:02:10,110 +creation of objects.The second part, Behavioral + +46 +00:02:10,110 --> 00:02:12,490 +Design Patterns, has to do with communication + +47 +00:02:12,490 --> 00:02:15,890 +between objects, how objects interact with each + +48 +00:02:15,890 --> 00:02:17,750 +other, how objects create methods in other + +49 +00:02:17,750 --> 00:02:19,110 +objects. + +50 +00:02:24,860 --> 00:02:28,180 +Behavioral Design Patterns are used more than + +51 +00:02:28,180 --> 00:02:30,680 +Creational Design Patterns and they are more + +52 +00:02:30,680 --> 00:02:34,600 +effective in reducing coupling of objects. In + +53 +00:02:34,600 --> 00:02:38,240 +general, all design patterns aim to reduce + +54 +00:02:38,240 --> 00:02:43,160 +coupling. Behavioral Design Patterns aim to + +55 +00:02:43,160 --> 00:02:46,300 +improve communication between objects and classes. + +56 +00:02:47,220 --> 00:02:50,480 +You know that I make any application, I make + +57 +00:02:50,480 --> 00:02:53,430 +classes, and classes have methods. and usually + +58 +00:02:53,430 --> 00:02:56,890 +objects from these classes use each other Of + +59 +00:02:56,890 --> 00:02:59,010 +course from one object to another class, I will + +60 +00:02:59,010 --> 00:03:04,370 +have to use a method in another class So there is + +61 +00:03:04,370 --> 00:03:07,010 +a relationship or communication between objects If + +62 +00:03:07,010 --> 00:03:09,210 +you don't build the communication correctly, your + +63 +00:03:09,210 --> 00:03:11,510 +program will be complicated as we will see in some + +64 +00:03:11,510 --> 00:03:14,490 +examples and we will use the observer to improve + +65 +00:03:14,490 --> 00:03:17,130 +the communication between parts of the objects + +66 +00:03:17,130 --> 00:03:20,920 +Behavioral Design Patterns are design patterns + +67 +00:03:20,920 --> 00:03:23,600 +that identify common communication patterns + +68 +00:03:23,600 --> 00:03:30,700 +between objects and realize these patterns By + +69 +00:03:30,700 --> 00:03:36,100 +doing so, these patterns increase flexibility in + +70 +00:03:36,100 --> 00:03:37,600 +carrying out this communication + +71 +00:03:40,330 --> 00:03:42,490 +among the design patterns that we will talk about + +72 +00:03:42,490 --> 00:03:44,970 +in this section, there are a number of design + +73 +00:03:44,970 --> 00:03:48,570 +patterns including strategy, state, observer, + +74 +00:03:48,870 --> 00:03:51,870 +command, momentum, chain of responsibility, + +75 +00:03:52,210 --> 00:03:56,290 +template pattern and visitortoday we will start + +76 +00:03:56,290 --> 00:03:58,850 +with the first design pattern of this section + +77 +00:03:58,850 --> 00:04:02,290 +which is the observer pattern which is, in my + +78 +00:04:02,290 --> 00:04:05,050 +opinion, the most important design pattern among + +79 +00:04:05,050 --> 00:04:07,570 +the behavioral design patterns and most of them + +80 +00:04:07,570 --> 00:04:13,670 +are used, okay? okay, let's read some information + +81 +00:04:13,670 --> 00:04:18,310 +about the observer pattern and see as a practical + +82 +00:04:18,310 --> 00:04:21,050 +example where is the programming problem and how + +83 +00:04:21,050 --> 00:04:22,910 +does the observer pattern solve this problem as + +84 +00:04:22,910 --> 00:04:26,810 +usual The goal of the intent is to define a one-to + +85 +00:04:26,810 --> 00:04:30,670 +-many dependency between objects one-to-many + +86 +00:04:30,670 --> 00:04:33,530 +dependency between objects so that when one object + +87 +00:04:33,530 --> 00:04:37,790 +changes state all its dependents are notified and + +88 +00:04:37,790 --> 00:04:43,030 +updated automatically What does this mean guys? + +89 +00:04:43,470 --> 00:04:47,290 +Let's talk about the scenario Sometimes in my + +90 +00:04:47,290 --> 00:04:50,990 +application I have a certain component, a certain + +91 +00:04:50,990 --> 00:04:55,770 +object and this object needs it communicates or + +92 +00:04:55,770 --> 00:05:04,410 +communicates with other components in this + +93 +00:05:04,410 --> 00:05:08,850 +way these are objects and these are associations + +94 +00:05:08,850 --> 00:05:16,530 +for example this can be a backend where data is + +95 +00:05:16,530 --> 00:05:18,170 +modified based on the modification of the data + +96 +00:05:18,170 --> 00:05:23,070 +this is the frontend which can be web based this + +97 +00:05:23,070 --> 00:05:28,170 +can be mobile This can be a desktop, + +98 +00:05:31,630 --> 00:05:35,090 +okay? These are user interfaces that are different + +99 +00:05:35,090 --> 00:05:37,050 +from each other. There is an adjustment that + +100 +00:05:37,050 --> 00:05:40,230 +happened here. This adjustment should reach these + +101 +00:05:40,230 --> 00:05:43,410 +three edges, okay? So here I have the + +102 +00:05:43,410 --> 00:05:46,250 +relationship, and notice, one-to-many dependency. + +103 +00:05:46,810 --> 00:05:52,130 +So the change here will affect whom? on the three + +104 +00:05:52,130 --> 00:05:54,390 +of them, a specific data was changed for example, + +105 +00:05:54,530 --> 00:05:56,750 +a stock exchange program okay, the price of the + +106 +00:05:56,750 --> 00:05:59,490 +stock has changed, the update should take place on + +107 +00:05:59,490 --> 00:06:05,390 +the three screens for example not necessarily in + +108 +00:06:05,390 --> 00:06:10,090 +another scenario, maybe in one user interface, one + +109 +00:06:10,090 --> 00:06:12,390 +screen I found that sometimes when I design any + +110 +00:06:12,390 --> 00:06:15,130 +screen, the screen above has a control button I + +111 +00:06:15,130 --> 00:06:18,510 +have a status bar down here, I have a list on the + +112 +00:06:18,510 --> 00:06:23,340 +leftControl or Tree for example, and I have + +113 +00:06:23,340 --> 00:06:26,220 +content in the middle of the screen here Sometimes + +114 +00:06:26,220 --> 00:06:29,960 +changing in one part affects all other parts For + +115 +00:06:29,960 --> 00:06:33,200 +example, if I click on an element here, based on + +116 +00:06:33,200 --> 00:06:37,520 +it, the content here changes based on it, there + +117 +00:06:37,520 --> 00:06:40,400 +are buttons that activate and buttons that become + +118 +00:06:40,400 --> 00:06:43,380 +non-active, for example, okay? So here there is a + +119 +00:06:43,380 --> 00:06:46,860 +change in this, and the status bar writes to me, + +120 +00:06:47,040 --> 00:06:48,420 +for example, a message that it was done this and + +121 +00:06:48,420 --> 00:06:51,750 +that, this happens in threemeans that one change + +122 +00:06:51,750 --> 00:06:56,250 +here in this part affected whom? on these three + +123 +00:06:56,250 --> 00:07:02,570 +parts one-to-many dependency relation one element + +124 +00:07:02,570 --> 00:07:06,370 +changes and affects many other elements present + +125 +00:07:06,370 --> 00:07:11,510 +this scenario can be found in many applications + +126 +00:07:11,510 --> 00:07:14,990 +the need to maintain consistency between related + +127 +00:07:14,990 --> 00:07:18,550 +objects without making classes tightly coupledNow, + +128 +00:07:18,590 --> 00:07:22,350 +the main goal is that I have to implement this + +129 +00:07:22,350 --> 00:07:26,670 +relationship, but at the same time, I shouldn't + +130 +00:07:26,670 --> 00:07:31,790 +have a high coupling, okay? This is the main goal. + +131 +00:07:33,310 --> 00:07:37,870 +How will there be a high coupling?this scenario + +132 +00:07:37,870 --> 00:07:40,090 +that we talked about when an element affects the + +133 +00:07:40,090 --> 00:07:42,850 +change on other elements let's see how we can do + +134 +00:07:42,850 --> 00:07:45,550 +it with a very simple example programmatically the + +135 +00:07:45,550 --> 00:07:47,170 +example that I am going to present is not very + +136 +00:07:47,170 --> 00:07:50,490 +practical okay it is just for clarification in the + +137 +00:07:50,490 --> 00:07:52,170 +next lecture we will see a more practical example + +138 +00:07:52,170 --> 00:07:55,630 +application okay we want to show in this example + +139 +00:07:55,630 --> 00:08:00,620 +how I have a component how to make the component + +140 +00:08:00,620 --> 00:08:07,360 +report by updating multiple components and how to + +141 +00:08:07,360 --> 00:08:10,960 +design it in a bad way to see how the design is + +142 +00:08:10,960 --> 00:08:14,940 +bad and how to improve this design by using the + +143 +00:08:14,940 --> 00:08:16,740 +observer pattern because we have not seen the + +144 +00:08:16,740 --> 00:08:19,280 +problem yet we are talking about using the + +145 +00:08:19,280 --> 00:08:22,120 +observer if I have an element whose change affects + +146 +00:08:25,310 --> 00:08:27,890 +Where is the existing problem? We still don't + +147 +00:08:27,890 --> 00:08:29,570 +understand the problem. When we work on this + +148 +00:08:29,570 --> 00:08:33,230 +implementation, problems will appear. + +149 +00:08:37,450 --> 00:08:39,810 +Now, in my application, I imagine the following. + +150 +00:08:43,690 --> 00:08:48,710 +This component here, I consider it a class, for + +151 +00:08:48,710 --> 00:08:56,200 +example, called A. And this is B, C,D. Okay? It is + +152 +00:08:56,200 --> 00:09:00,180 +supposed that A had a change when I sent him data. + +153 +00:09:00,300 --> 00:09:03,280 +It is supposed that A reported these changes to B, + +154 +00:09:03,420 --> 00:09:07,900 +C and D. Okay? So now I want to remove these + +155 +00:09:07,900 --> 00:09:10,620 +components. I want to remove A class named A. + +156 +00:09:21,750 --> 00:09:34,010 +Four different components A, B, C, D And + +157 +00:09:34,010 --> 00:09:36,650 +I also want to make a main method so that in the + +158 +00:09:36,650 --> 00:09:39,710 +end we will run everything from here + +159 +00:09:52,190 --> 00:09:52,530 +Okay. + +160 +00:10:18,010 --> 00:10:21,570 +what did I do? I made 4 objects from these classes + +161 +00:10:21,570 --> 00:10:29,310 +now method A or class A I will make method public + +162 +00:10:29,310 --> 00:10:39,450 +void setdata string data this + +163 +00:10:39,450 --> 00:10:42,110 +is the data in A, I called it setdata when A takes + +164 +00:10:42,110 --> 00:10:45,810 +these data, the scenario I want A to report to + +165 +00:10:45,810 --> 00:10:52,600 +whomA should + +166 +00:10:52,600 --> 00:10:59,000 +notify B, C and D + +167 +00:11:04,370 --> 00:11:10,150 +I went to the main method, now I say a.setdata, + +168 +00:11:10,410 --> 00:11:13,190 +for example, hello world, we want to send, did you + +169 +00:11:13,190 --> 00:11:15,570 +find it? The a is supposed to be a by itself, from + +170 +00:11:15,570 --> 00:11:18,770 +inside, you send these data to whom? To b and c + +171 +00:11:18,770 --> 00:11:22,670 +and d, of course, this is not present inside the a + +172 +00:11:22,670 --> 00:11:25,590 +right now. Well, how does the a, let's go back to + +173 +00:11:25,590 --> 00:11:28,990 +the main method, how does the a reach b and c and + +174 +00:11:28,990 --> 00:11:33,730 +d?The first thing is that in order for A to + +175 +00:11:33,730 --> 00:11:35,730 +communicate with B, C and D, it must have + +176 +00:11:35,730 --> 00:11:38,950 +references from them, right or wrong? In this + +177 +00:11:38,950 --> 00:11:45,090 +case, A needs B. Why does she need B? In order to + +178 +00:11:45,090 --> 00:11:47,070 +communicate with her. Dependency, right or wrong? + +179 +00:11:47,510 --> 00:11:51,330 +And A also needs C. Why?to report them and you + +180 +00:11:51,330 --> 00:11:55,430 +need D. The first step you should do, since A + +181 +00:11:55,430 --> 00:11:58,550 +wants to report B, C and D as you can see, what + +182 +00:11:58,550 --> 00:12:01,890 +does the word report mean? It means it needs a + +183 +00:12:01,890 --> 00:12:03,790 +reference from them in order to invoke a method in + +184 +00:12:03,790 --> 00:12:08,590 +them, okay? The word report B, C and D, okay? + +185 +00:12:08,750 --> 00:12:11,730 +There may be a method in B, C and D that A wants + +186 +00:12:11,730 --> 00:12:15,570 +to invoke these methods to send data to B, C and + +187 +00:12:15,570 --> 00:12:20,800 +D.So let's assume that the gate H brought B, C and + +188 +00:12:20,800 --> 00:12:25,900 +D and made a method called public void data + +189 +00:12:25,900 --> 00:12:26,820 +received. + +190 +00:12:30,340 --> 00:12:34,230 +Where is this method present?in B, who should + +191 +00:12:34,230 --> 00:12:37,890 +claim it? A, right? it is like this, this is the + +192 +00:12:37,890 --> 00:12:40,110 +communication between objects, if there is .. why + +193 +00:12:40,110 --> 00:12:42,930 +should I use another object? because there is a + +194 +00:12:42,930 --> 00:12:46,430 +method and this should claim it, right? what + +195 +00:12:46,430 --> 00:12:47,790 +should I write in it? I want to say for example + +196 +00:12:47,790 --> 00:12:57,050 +system.out.println I want to say B received data + +197 +00:12:57,050 --> 00:13:00,070 +from + +198 +00:13:00,070 --> 00:13:06,540 +A As you can see, I wrote this one as Jewel Now, + +199 +00:13:06,620 --> 00:13:09,960 +the same idea, this sign, I want to do the same + +200 +00:13:09,960 --> 00:13:17,280 +thing with the same name or other names in C But + +201 +00:13:17,280 --> 00:13:24,000 +what does this one do? And this one is D And this + +202 +00:13:24,000 --> 00:13:29,040 +one is only D Do you agree or not? So everything I + +203 +00:13:29,040 --> 00:13:31,060 +have done so far is correct? + +204 +00:13:34,550 --> 00:13:41,030 +that in each one of them there will be a cd I made + +205 +00:13:41,030 --> 00:13:46,290 +a data called data received + +206 +00:13:46,290 --> 00:13:54,350 +data received and + +207 +00:13:54,350 --> 00:14:01,970 +it has a parameter of course data received okay + +208 +00:14:01,970 --> 00:14:06,090 +this data I didn't use it right or not?Who is + +209 +00:14:06,090 --> 00:14:10,370 +supposed to claim this proof? When will the A + +210 +00:14:10,370 --> 00:14:17,470 +claim it? When I say who? How does the A claim the + +211 +00:14:17,470 --> 00:14:21,490 +B? He should have a reference. One can think in a + +212 +00:14:21,490 --> 00:14:27,380 +stupid way. As long as we want B, go and do B.New + +213 +00:14:27,380 --> 00:14:32,420 +B, right? Yes, and then I say B.data received. No, + +214 +00:14:32,480 --> 00:14:35,180 +here you created a new object. Correct. Correct? + +215 +00:14:36,480 --> 00:14:40,660 +This object B, where did we create it? In the + +216 +00:14:40,660 --> 00:14:43,180 +main. In the main. The one I created in the main + +217 +00:14:43,180 --> 00:14:46,360 +is supposed to pass through it to what? Okay, one + +218 +00:14:46,360 --> 00:14:49,540 +says it's wrong to do it inside. Yes, of course it + +219 +00:14:49,540 --> 00:14:53,260 +is wrong. For two reasons. First of all, if you do + +220 +00:14:53,260 --> 00:14:54,660 +it here, it means that whenever you do the same + +221 +00:14:54,660 --> 00:14:57,520 +data, it will create an object. He will say, okay, + +222 +00:14:57,620 --> 00:15:00,940 +let's do one only up here. Okay, it works, but in + +223 +00:15:00,940 --> 00:15:03,620 +this case, you cancelled the dependency injection. + +224 +00:15:03,780 --> 00:15:06,040 +We said that it is preferable for you to go out + +225 +00:15:06,040 --> 00:15:10,860 +with your clients and tease them, okay? Okay, + +226 +00:15:11,080 --> 00:15:13,820 +before solving this problem, did you notice that + +227 +00:15:13,820 --> 00:15:15,200 +we .. let's .. so that you don't get confused. + +228 +00:15:15,240 --> 00:15:19,720 +This is the main. This is A, B, C and D. Who needs + +229 +00:15:19,720 --> 00:15:23,700 +this A? It needs to be inside these, okay? So that + +230 +00:15:23,700 --> 00:15:26,360 +you can send data to them. Okay, so what do we do? + +231 +00:15:26,520 --> 00:15:35,740 +We go to A and say here in A BBCCDD. + +232 +00:15:35,800 --> 00:15:39,420 +What are these? References. References. These are + +233 +00:15:39,420 --> 00:15:42,500 +still null values. Okay? Now, you make a + +234 +00:15:42,500 --> 00:15:46,660 +constructorWhat are methods? Let's make methods + +235 +00:15:46,660 --> 00:15:48,940 +public, void, but you have to make a method for + +236 +00:15:48,940 --> 00:15:55,500 +each one set B because + +237 +00:15:55,500 --> 00:16:00,980 +I say this dot B equals B and public void + +238 +00:16:21,650 --> 00:16:24,870 +Ok? These are the set methods So that I can send + +239 +00:16:24,870 --> 00:16:28,070 +B, C and D Did you notice that after I did these + +240 +00:16:28,070 --> 00:16:35,290 +things here I can go to the test Ok? And here I + +241 +00:16:35,290 --> 00:16:38,010 +created A, B and C Did you notice that these that + +242 +00:16:38,010 --> 00:16:41,590 +we created B, C and D should be sent to whom? To A + +243 +00:16:41,590 --> 00:16:46,810 +I go to A and tell it to set B and send B to it A + +244 +00:16:46,810 --> 00:16:57,390 +dot set C A dot set D All + +245 +00:16:57,390 --> 00:17:02,070 +this I did in A So that I can send it to them Now + +246 +00:17:02,070 --> 00:17:07,710 +I came and told A to set data This is the goal + +247 +00:17:07,710 --> 00:17:09,430 +that we want to achieve, did you get it? A has + +248 +00:17:09,430 --> 00:17:12,030 +reached data, it should report it to whom? To the + +249 +00:17:12,030 --> 00:17:13,630 +other Did you get it? As long as it has reached + +250 +00:17:13,630 --> 00:17:17,870 +data, it should do like this F if A is not equal + +251 +00:17:17,870 --> 00:17:21,750 +to null, I can't make it set, right? No, I go to B + +252 +00:17:21,750 --> 00:17:27,710 +if B is not equal to null, B dot data received if + +253 +00:17:27,710 --> 00:17:36,450 +C is not equal to null, C dot data received if D + +254 +00:17:36,450 --> 00:17:41,050 +is not equal to null, D dot data + +255 +00:17:45,490 --> 00:17:49,290 +Receive, خلصنا,الان انا فعليا اعملت تلاتة objects, + +256 +00:17:49,610 --> 00:17:52,390 +في أربع objects, في علاقة one to many between + +257 +00:17:52,390 --> 00:17:56,650 +them, dependency ان ال A بتعتمد على ال B و ال C و + +258 +00:17:56,650 --> 00:17:59,710 +ال D على أساس ان لو صار فيه تغيير في ال A بده يبلغ + +259 +00:17:59,710 --> 00:18:03,090 +ال B و ال C و ال D الفكرة كيف؟ بدك توصل ال + +260 +00:18:03,090 --> 00:18:06,430 +dependencies يعني ال B و ال C و ال D ل ال A In + +261 +00:18:06,430 --> 00:18:10,250 +order to do it, I went to A and made a reference + +262 +00:18:10,250 --> 00:18:14,290 +to all their dependencies, B, C and D And I made + +263 +00:18:14,290 --> 00:18:18,390 +three methods, setB, setB, setC, setD And I told + +264 +00:18:18,390 --> 00:18:20,850 +him that in setData, if there is a modification to + +265 +00:18:20,850 --> 00:18:24,090 +A, we report the rest and go to each one and tell + +266 +00:18:24,090 --> 00:18:27,550 +him B.data received, C.data received, D.data + +267 +00:18:27,550 --> 00:18:32,430 +received Now, make sure when you come to run a + +268 +00:18:32,430 --> 00:18:32,690 +test + +269 +00:18:49,370 --> 00:18:55,190 +this scenario you will do in any applicationYou + +270 +00:18:55,190 --> 00:18:57,090 +have to make relations between objects like this, + +271 +00:18:57,210 --> 00:19:00,770 +that is, B and A can be, for example, this object + +272 +00:19:00,770 --> 00:19:04,130 +has a class relationship in the database, B has a + +273 +00:19:04,130 --> 00:19:07,570 +relationship with mobile, is it clear how? Or, for + +274 +00:19:07,570 --> 00:19:12,460 +example, A can be the screen on the left.Okay? + +275 +00:19:12,780 --> 00:19:18,420 +Which is this tree B and C and D can be this is B + +276 +00:19:18,420 --> 00:19:21,040 +and this is C and this is what? Yes and this is D + +277 +00:19:21,040 --> 00:19:24,160 +So always when you make relationships, you will do + +278 +00:19:24,160 --> 00:19:26,600 +almost the same coding that is in front of you + +279 +00:19:26,600 --> 00:19:30,380 +Okay, what are the problems in this coding? There + +280 +00:19:30,380 --> 00:19:33,680 +are many problems The first problem is that we + +281 +00:19:33,680 --> 00:19:38,860 +want one of B, C and D to be modifiedthere was a + +282 +00:19:38,860 --> 00:19:41,940 +change, the name changed, I tell you it's not a + +283 +00:19:41,940 --> 00:19:45,240 +name, this method which is in B, okay, I want to + +284 +00:19:45,240 --> 00:19:48,500 +change its name, okay, for example, I want to call + +285 +00:19:48,500 --> 00:19:50,140 +it message received, + +286 +00:19:54,800 --> 00:19:59,400 +who did you get right away? The A, anything from + +287 +00:19:59,400 --> 00:20:02,320 +the dependencies that differed, okay, who will you + +288 +00:20:02,320 --> 00:20:06,900 +hit? You will hit the A directly, let's go back + +289 +00:20:06,900 --> 00:20:07,280 +again, + +290 +00:20:12,030 --> 00:20:14,290 +You changed the name of one of the classes, B, C, + +291 +00:20:14,390 --> 00:20:17,130 +and D. The letter A will also multiply. Why will + +292 +00:20:17,130 --> 00:20:18,290 +the letter A multiply? Because the letter A is + +293 +00:20:18,290 --> 00:20:24,150 +based on B, C, and D with the names. Okay? Okay, + +294 +00:20:24,670 --> 00:20:27,390 +the biggest problem is that you need to add a new + +295 +00:20:27,390 --> 00:20:31,510 +dependency. That is, you need to add a new element + +296 +00:20:31,510 --> 00:20:34,910 +here that belongs to the letter A. For example, + +297 +00:20:34,910 --> 00:20:37,370 +this person told you that he wants to make a sub + +298 +00:20:37,370 --> 00:20:39,310 +-screen that can be affected by this, or for + +299 +00:20:39,310 --> 00:20:42,350 +example a logger that stores data. If I click on + +300 +00:20:42,350 --> 00:20:45,070 +anything here, there is a fourth component that I + +301 +00:20:45,070 --> 00:20:48,750 +want it to listen to the events. Its name is E. + +302 +00:20:49,930 --> 00:20:53,010 +What should we do when we add this E element? We + +303 +00:20:53,010 --> 00:20:55,870 +need to modify many things. The first thing we do + +304 +00:20:55,870 --> 00:20:58,550 +is go to A and make a reference to E. And we make + +305 +00:20:58,550 --> 00:21:02,590 +a new set and a new F at the bottom. + +306 +00:21:06,130 --> 00:21:11,770 +So here in A, you had to do E, right? And make a + +307 +00:21:11,770 --> 00:21:16,390 +new 6 And go down and tell him Fe is not equal to + +308 +00:21:16,390 --> 00:21:22,890 +make data data received The solution that we made + +309 +00:21:22,890 --> 00:21:28,190 +worked, right? But there is a problem with + +310 +00:21:28,190 --> 00:21:31,430 +flexibility, right? Any change in dependency + +311 +00:21:31,430 --> 00:21:40,640 +affected who? Class A Our goal is that when there + +312 +00:21:40,640 --> 00:21:43,860 +is a one-to-many relationship in this way that any + +313 +00:21:43,860 --> 00:21:48,620 +change affects a group of other objects, we want + +314 +00:21:48,620 --> 00:21:51,000 +to design the code in a better way, so that if + +315 +00:21:51,000 --> 00:21:55,320 +there is any modification here or any addition to + +316 +00:21:55,320 --> 00:21:57,100 +new people who want to attend the event or new + +317 +00:21:57,100 --> 00:22:01,020 +applicants, we do not want to change a single line + +318 +00:22:01,020 --> 00:22:07,270 +in the code. What do we add now?and F and W and + +319 +00:22:07,270 --> 00:22:11,150 +whatever you want and keep sending and deleting + +320 +00:22:11,150 --> 00:22:15,250 +data without changing any line in the A currently, + +321 +00:22:15,590 --> 00:22:17,710 +you don't need to change any object, you just need + +322 +00:22:17,710 --> 00:22:20,890 +to put a reference or something like that how can + +323 +00:22:20,890 --> 00:22:24,570 +we do this thing? we need to see how to apply it + +324 +00:22:24,570 --> 00:22:28,830 +pay attention to me now I have explained how to do + +325 +00:22:28,830 --> 00:22:32,830 +dependencyHow is the traditional way? Any object + +326 +00:22:32,830 --> 00:22:34,490 +that wants to use other objects must have + +327 +00:22:34,490 --> 00:22:38,290 +references from them. The A has a relationship + +328 +00:22:38,290 --> 00:22:42,590 +with four classes, so it took references from + +329 +00:22:42,590 --> 00:22:44,210 +these four classes. This is the existing problem. + +330 +00:22:45,310 --> 00:22:49,170 +How do I improve the design so that I don't modify + +331 +00:22:49,170 --> 00:22:57,230 +anything in the A? The problem is that in the + +332 +00:22:57,230 --> 00:23:01,150 +A there is a reference to the B and C and D. Am I + +333 +00:23:01,150 --> 00:23:05,590 +right guys? These are references for these, right? + +334 +00:23:05,870 --> 00:23:10,990 +And there are also set methods set B and set C and + +335 +00:23:10,990 --> 00:23:15,190 +set D. All of this is inside the A. By adding a + +336 +00:23:15,190 --> 00:23:17,270 +component of G, I had to add a reference and + +337 +00:23:17,270 --> 00:23:21,070 +another set and so on. Okay, the improvement of + +338 +00:23:21,070 --> 00:23:22,750 +the design will be as follows. Look with me. + +339 +00:23:22,830 --> 00:23:25,730 +Because we will see how to apply the observer + +340 +00:23:25,730 --> 00:23:26,150 +pattern. + +341 +00:23:29,250 --> 00:23:33,150 +First of all, notice what I did. I deleted all + +342 +00:23:33,150 --> 00:23:36,850 +relationships. This is the first step. And I + +343 +00:23:36,850 --> 00:23:40,590 +deleted the girls. And who did I delete? The + +344 +00:23:40,590 --> 00:23:41,070 +attributes. + +345 +00:23:43,730 --> 00:23:48,270 +So now what am I inside? I deleted these. + +346 +00:23:52,530 --> 00:23:53,730 +And I deleted these. + +347 +00:23:56,500 --> 00:24:02,560 +رجع ال a إيش؟ فاضي تمام و أكيد هال gate مدام فش a + +348 +00:24:02,560 --> 00:24:08,980 +تمام رجعوا ال objects ما لهم مفصولين عن بعض إيش + +349 +00:24:08,980 --> 00:24:16,780 +تمام تمام طيب الخطوة الآن جوا ال class A رح نعمل + +350 +00:24:16,780 --> 00:24:22,400 +interface سميه مثلا أنا بدي سميه a listener + +351 +00:24:26,960 --> 00:24:28,900 +What does a listener mean? What does a listener + +352 +00:24:28,900 --> 00:24:31,560 +mean? The listener. What is the listener for? + +353 +00:24:32,420 --> 00:24:36,160 +That's what it means. A listener. This interface + +354 +00:24:36,160 --> 00:24:40,560 +is here. I want to put an abstract method in this + +355 +00:24:40,560 --> 00:24:48,320 +interface. Its name is data, data received. + +356 +00:24:51,900 --> 00:24:56,530 +Okay?Okay, let's apply it and then we'll see how + +357 +00:24:56,530 --> 00:25:01,250 +it works. Now, B doesn't want to listen to the + +358 +00:25:01,250 --> 00:25:04,910 +updates in A. Either B wants to listen to what + +359 +00:25:04,910 --> 00:25:07,810 +happens in A, you have to go and implement for + +360 +00:25:07,810 --> 00:25:12,570 +whom? For the A listener. Or C wants to listen to + +361 +00:25:12,570 --> 00:25:15,570 +anything that happens in A, you have to implement + +362 +00:25:15,570 --> 00:25:18,470 +for whom? For the A listener. So all of these have + +363 +00:25:18,470 --> 00:25:23,340 +to implement for whom? For the A listener.until + +364 +00:25:23,340 --> 00:25:25,000 +now notice that there is no relation between A and + +365 +00:25:25,000 --> 00:25:28,840 +who? and these people okay this gate inside A not + +366 +00:25:28,840 --> 00:25:34,440 +like before we used to put inside A we + +367 +00:25:34,440 --> 00:25:37,980 +used to put reference from B and C and D okay now + +368 +00:25:37,980 --> 00:25:40,940 +we don't put reference for B and C and D and E we + +369 +00:25:40,940 --> 00:25:44,820 +put list of A + +370 +00:25:48,200 --> 00:25:54,860 +listener list of what type? A listener means that + +371 +00:25:54,860 --> 00:25:59,680 +this list can contain B, C and D as long as it is + +372 +00:25:59,680 --> 00:26:01,960 +of the type of what? of the type of A listener + +373 +00:26:01,960 --> 00:26:07,820 +this instead of who? of reference A from B, C and + +374 +00:26:07,820 --> 00:26:10,820 +D that's it, I'm back to a list that has only one + +375 +00:26:10,820 --> 00:26:17,280 +list now, I also had 6 B, 6 C and 6 DOkay? Did you + +376 +00:26:17,280 --> 00:26:19,440 +find it? No. Instead of them, you have to make one + +377 +00:26:19,440 --> 00:26:23,480 +example called add a listener or add listener. + +378 +00:26:25,440 --> 00:26:27,980 +What does this example take? It takes an object of + +379 +00:26:27,980 --> 00:26:33,000 +the type of a listener. Why? You can take here, as + +380 +00:26:33,000 --> 00:26:33,900 +long as it takes an object of the type of a + +381 +00:26:33,900 --> 00:26:36,780 +listener, you can take any one of them, anything + +382 +00:26:36,780 --> 00:26:40,160 +of the type of a listener. And actually, what you + +383 +00:26:40,160 --> 00:26:41,800 +will take from here, you will take and add where? + +384 +00:26:43,790 --> 00:26:48,470 +So the idea here is to make this A accept his + +385 +00:26:48,470 --> 00:26:51,550 +dependencies, but he will accept them as an A + +386 +00:26:51,550 --> 00:26:55,750 +listener. He will stop dealing with them as A, B, + +387 +00:26:56,230 --> 00:27:01,050 +C or D. He started seeing them as one type, which + +388 +00:27:01,050 --> 00:27:03,600 +is an A listener.Okay, did you notice that inside + +389 +00:27:03,600 --> 00:27:06,520 +A there is a method called send data, right? + +390 +00:27:06,660 --> 00:27:09,980 +Because what does it do? It goes to B and says + +391 +00:27:09,980 --> 00:27:12,800 +data received, and to C it says data received, + +392 +00:27:13,300 --> 00:27:15,340 +right? Did you notice? No, did you notice? It + +393 +00:27:15,340 --> 00:27:19,400 +loops to the list and says data received for each + +394 +00:27:19,400 --> 00:27:23,660 +one of them. Now, what is the advantage of this + +395 +00:27:23,660 --> 00:27:26,660 +design? Of course, there is a relationship between + +396 +00:27:26,660 --> 00:27:30,000 +A and the type of interface. This is the + +397 +00:27:30,000 --> 00:27:34,110 +relationship of associations.I'm dealing with a + +398 +00:27:34,110 --> 00:27:38,350 +list of A's to C's But there is no relationship + +399 +00:27:38,350 --> 00:27:42,990 +between A, B, C, D and E My relationship is only + +400 +00:27:42,990 --> 00:27:48,510 +with A to C This means that when I want to add a + +401 +00:27:48,510 --> 00:27:50,070 +new element that belongs to A + +402 +00:27:53,040 --> 00:27:54,620 +I'm not going to change anything in A I'm going to + +403 +00:27:54,620 --> 00:27:56,860 +tell him this is a new element and all you have to + +404 +00:27:56,860 --> 00:28:00,820 +do is go from it to A lesson and I take it and put + +405 +00:28:00,820 --> 00:28:03,940 +it somewhere in this list to understand better + +406 +00:28:03,940 --> 00:28:08,140 +let's apply this existing solution because I + +407 +00:28:08,140 --> 00:28:11,420 +skipped A completely there is no relation between + +408 +00:28:11,420 --> 00:28:16,540 +objects A, B, C and D okay? okay, I went to A now + +409 +00:28:16,540 --> 00:28:18,460 +we want to do the first step of the interface that + +410 +00:28:18,460 --> 00:28:23,210 +you see okay? we come here inside class AThe + +411 +00:28:23,210 --> 00:28:25,470 +interface can be done in an external file or + +412 +00:28:25,470 --> 00:28:28,630 +inside the A The best thing here is to make an + +413 +00:28:28,630 --> 00:28:32,870 +interface inside the class Why? Because this is + +414 +00:28:32,870 --> 00:28:35,930 +related to the A So for people who want to listen + +415 +00:28:35,930 --> 00:28:39,890 +to the A, they need to implement this interface We + +416 +00:28:39,890 --> 00:28:42,410 +put it inside the A, so when you use it in another + +417 +00:28:42,410 --> 00:28:46,950 +application, you take with you its interface So I + +418 +00:28:46,950 --> 00:28:51,510 +want to call it public interface I want to call it + +419 +00:28:51,510 --> 00:29:01,020 +A listenerوبدأحط جوا public void data received + +420 +00:29:01,020 --> 00:29:09,880 +string data هذا ال interface جوا ال class A طيب + +421 +00:29:09,880 --> 00:29:12,920 +لسه انا في ال class AIf you find a class A that + +422 +00:29:12,920 --> 00:29:16,980 +does not require references to B, C and D, it will + +423 +00:29:16,980 --> 00:29:19,760 +tell you that it has nothing to do with B, C and + +424 +00:29:19,760 --> 00:29:22,340 +D. Those who want to listen to me should come to + +425 +00:29:22,340 --> 00:29:24,880 +me in the form of an A listener, in the form of an + +426 +00:29:24,880 --> 00:29:28,260 +interface header. And since more than one person + +427 +00:29:28,260 --> 00:29:33,420 +can listen to A, we need to make a list, a private + +428 +00:29:33,420 --> 00:29:38,690 +list of type Alistener, what do we call them? + +429 +00:29:38,770 --> 00:29:58,150 +listeners equals new ArrayList okay + +430 +00:29:58,150 --> 00:30:02,230 +now I made this list but what do I add to this + +431 +00:30:02,230 --> 00:30:09,830 +list? I need to make method addPublic, void, add a + +432 +00:30:09,830 --> 00:30:15,190 +listener And this will take an object of type a + +433 +00:30:15,190 --> 00:30:18,390 +listener, for example, L Because here I say if + +434 +00:30:32,180 --> 00:30:37,120 +I tell him if it's not in the list, add it. Of + +435 +00:30:37,120 --> 00:30:41,810 +course, you can also do daily move, okay?Okay, + +436 +00:30:41,890 --> 00:30:44,990 +we're done again. So I made a list. This is an + +437 +00:30:44,990 --> 00:30:47,110 +alternative to main, which I did a while ago, + +438 +00:30:47,650 --> 00:30:52,350 +which is B instead of references. And this is add + +439 +00:30:52,350 --> 00:30:55,470 +listener instead of main. Set A and set B and set + +440 +00:30:55,470 --> 00:31:00,030 +C and set D. Okay? So this is one step. Set data. + +441 +00:31:00,170 --> 00:31:03,110 +I sent data to A. The A was supposed to deliver it + +442 +00:31:03,110 --> 00:31:08,640 +to whom?It stopped knowing B and C and D, it knows + +443 +00:31:08,640 --> 00:31:14,640 +listeners, so it does for each A listener, L is + +444 +00:31:14,640 --> 00:31:18,540 +present in listeners, go and tell him L and tell + +445 +00:31:18,540 --> 00:31:22,180 +him data received and send him the data, like + +446 +00:31:22,180 --> 00:31:25,620 +this. Now here we designed the A, we finished it, + +447 +00:31:26,200 --> 00:31:29,440 +we designed it, this is one job, but now we will + +448 +00:31:29,440 --> 00:31:33,400 +not modify the A at all.Okay, we haven't finished + +449 +00:31:33,400 --> 00:31:35,400 +our work yet, the program hasn't started yet. + +450 +00:31:36,240 --> 00:31:41,640 +Okay, now this is A, B, C and D, okay? We want + +451 +00:31:41,640 --> 00:31:45,360 +these guys to listen to A, so that if A receives + +452 +00:31:45,360 --> 00:31:49,540 +data, it will notify B, C and D. Isn't this our + +453 +00:31:49,540 --> 00:31:51,820 +goal that we started with at the beginning? Yes, + +454 +00:31:51,920 --> 00:31:54,940 +we came to A, we went to A, we said to him, hey A, + +455 +00:31:55,060 --> 00:31:58,190 +add a new listener to listen to you. Who wants to + +456 +00:31:58,190 --> 00:32:01,810 +listen to the A? The B. Put the B. Okay? You will + +457 +00:32:01,810 --> 00:32:05,070 +get an error. They will say, wait, come on, you as + +458 +00:32:05,070 --> 00:32:07,710 +a B cannot listen. You must be of the type A + +459 +00:32:07,710 --> 00:32:11,190 +listener. So we want to go to the B with Allah's + +460 +00:32:11,190 --> 00:32:18,830 +help. Okay? And we do implements to + +461 +00:32:18,830 --> 00:32:24,050 +A listener. And of course when you do implement,it + +462 +00:32:24,050 --> 00:32:28,270 +will ask you to implement a data receipt for the + +463 +00:32:28,270 --> 00:32:31,470 +data but we have already written it you put the + +464 +00:32:31,470 --> 00:32:33,570 +code in it, what does the B want to do if it gets + +465 +00:32:33,570 --> 00:32:39,110 +the data? and the same thing we will do in any + +466 +00:32:39,110 --> 00:32:43,290 +class that listens to the A because any C that + +467 +00:32:43,290 --> 00:32:46,910 +listens to the A must also say implements a + +468 +00:32:46,910 --> 00:32:49,790 +listener otherwise it will not accept to say add + +469 +00:32:49,790 --> 00:32:56,220 +listener to the CSo we did the same thing with B, + +470 +00:32:56,640 --> 00:33:11,360 +C and D Because + +471 +00:33:11,360 --> 00:33:16,220 +all of them, B, C and D became of the type of A So + +472 +00:33:16,220 --> 00:33:17,860 +I can go to A + +473 +00:33:21,000 --> 00:33:29,380 +and I will tell him add listener B and C and D now + +474 +00:33:29,380 --> 00:33:33,680 +B, C and D are all registered with A but where are + +475 +00:33:33,680 --> 00:33:39,280 +they registered? in this list, ok? ok, let's go + +476 +00:33:39,280 --> 00:33:41,820 +back to the main gate we came to A and told it the + +477 +00:33:41,820 --> 00:33:47,020 +word what should A do? tell this word to whom? to + +478 +00:33:47,020 --> 00:33:51,390 +all existing listeners what will A do?it will come + +479 +00:33:51,390 --> 00:33:55,770 +here and make a loop this loop for each A listener + +480 +00:33:55,770 --> 00:33:58,970 +which includes B, C and D it will execute which + +481 +00:33:58,970 --> 00:34:01,950 +one? data received it will call the data received + +482 +00:34:01,950 --> 00:34:10,330 +in B, C and D it will make a run it will execute B + +483 +00:34:10,330 --> 00:34:14,150 +received, C received and D received now if I want + +484 +00:34:14,150 --> 00:34:18,640 +to add a new element that listens to thisBecause + +485 +00:34:18,640 --> 00:34:20,860 +all I have to do is add the new class + +486 +00:34:25,190 --> 00:34:27,330 +Ok? Wait a minute, you don't know for example, + +487 +00:34:27,450 --> 00:34:31,970 +this Ensofdk listens to the changes in the A. You + +488 +00:34:31,970 --> 00:34:33,990 +are a new programmer, you came to the program and + +489 +00:34:33,990 --> 00:34:37,310 +you don't know what to do. Ok? You came to the + +490 +00:34:37,310 --> 00:34:39,610 +main, you found the guys who added B, C and D. You + +491 +00:34:39,610 --> 00:34:42,950 +said let's do what? Let's do like them. So you go + +492 +00:34:42,950 --> 00:34:46,930 +to the A and you say add A listener and add 2 to + +493 +00:34:46,930 --> 00:34:50,950 +the E. So this is assuming that we did E E equals + +494 +00:34:50,950 --> 00:34:52,630 +U E. + +495 +00:35:06,070 --> 00:35:07,470 +implement + +496 +00:35:09,630 --> 00:35:12,390 +What is a listener? Isn't that what it wants? An + +497 +00:35:12,390 --> 00:35:15,750 +Arduino. We made it like that and it told you to + +498 +00:35:15,750 --> 00:35:20,330 +implement a method called what? Data received. So + +499 +00:35:20,330 --> 00:35:22,410 +you specified in this method what you want it to + +500 +00:35:22,410 --> 00:35:24,750 +do in the data if it reaches you. Okay, you say + +501 +00:35:24,750 --> 00:35:33,650 +system.out.println E received plus data. + +502 +00:35:35,830 --> 00:35:39,640 +Okay? Done. Okay.All you have to do is say add to + +503 +00:35:39,640 --> 00:35:44,260 +the set. We haven't changed anything in the a. Do + +504 +00:35:44,260 --> 00:35:48,360 +the n run and it will tell you a,b,c,d,e, all of + +505 +00:35:48,360 --> 00:35:50,800 +them are what? All of them are the creators of the + +506 +00:35:50,800 --> 00:35:54,480 +data. And you can also, what do you do guys? Take + +507 +00:35:54,480 --> 00:35:55,840 +it out of my head, pay attention to it, it has + +508 +00:35:55,840 --> 00:35:58,940 +passed through you before, but you, yes, no, take + +509 +00:35:58,940 --> 00:36:01,160 +it out with me. We also want to make an element + +510 +00:36:01,160 --> 00:36:04,630 +that listens to the a.We are not doing B and C and + +511 +00:36:04,630 --> 00:36:07,970 +D and E. Someone says it is a story. No, look with + +512 +00:36:07,970 --> 00:36:10,170 +me. A wants to make a new element in the hearing + +513 +00:36:10,170 --> 00:36:14,790 +without making a new class outside. Add a + +514 +00:36:14,790 --> 00:36:19,270 +listener. And here I say new a listener. + +515 +00:36:22,610 --> 00:36:24,610 +What do we call this in programming? Anonymous + +516 +00:36:24,610 --> 00:36:26,090 +class. + +517 +00:36:28,060 --> 00:36:31,560 +So instead of making a class outside and create an + +518 +00:36:31,560 --> 00:36:35,620 +object out of it, it's okay, but I don't want to + +519 +00:36:35,620 --> 00:36:39,280 +make a new class, this is a new A listener, a new + +520 +00:36:39,280 --> 00:36:43,660 +object of the type A listener, okay? This is all + +521 +00:36:43,660 --> 00:36:49,080 +hosted as what? As an ad A listenerthis is + +522 +00:36:49,080 --> 00:36:54,440 +anonymous class same as B, C, D and E but the + +523 +00:36:54,440 --> 00:36:55,840 +difference is that instead of doing it in an + +524 +00:36:55,840 --> 00:36:58,360 +external file and we do it instead of logging in + +525 +00:36:58,360 --> 00:37:00,800 +and logging out we made it anonymous class which + +526 +00:37:00,800 --> 00:37:03,380 +means class without a name from which door, which + +527 +00:37:03,380 --> 00:37:11,340 +speed this is and here we write system.out.println + +528 +00:37:11,340 --> 00:37:17,640 +anonymous received + +529 +00:37:20,040 --> 00:37:22,800 +Data. Where did this anonymous class pass to us? + +530 +00:37:24,060 --> 00:37:27,660 +In the GUI when you were dealing with buttons in + +531 +00:37:27,660 --> 00:37:31,520 +JavaFX, in events, you used to do it like that. Am + +532 +00:37:31,520 --> 00:37:34,320 +I right or not guys? Did you notice that all + +533 +00:37:34,320 --> 00:37:37,980 +JavaFX and Swing and others are applications for + +534 +00:37:37,980 --> 00:37:41,150 +the observer pattern?Did you find the button + +535 +00:37:41,150 --> 00:37:47,730 +class? For example, isn't there a class in Java + +536 +00:37:47,730 --> 00:37:51,330 +called button? Is there or not? If you find the + +537 +00:37:51,330 --> 00:37:54,230 +button when you click on it and you want it to + +538 +00:37:54,230 --> 00:37:57,310 +listen to the event, what do you tell it? Do you + +539 +00:37:57,310 --> 00:37:58,010 +have an ad? + +540 +00:38:03,020 --> 00:38:11,120 +in javafx what did you do? sit on action sit on + +541 +00:38:11,120 --> 00:38:18,960 +action sit on action ok lambda is the same and + +542 +00:38:18,960 --> 00:38:23,900 +then what do you put between the brackets? event + +543 +00:38:23,900 --> 00:38:27,960 +action + +544 +00:38:27,960 --> 00:38:31,730 +right or wrong?Isn't that what you used to do? Did + +545 +00:38:31,730 --> 00:38:33,870 +you understand what's going on? What's this event + +546 +00:38:33,870 --> 00:38:36,090 +action? You used to memorize it, but you didn't + +547 +00:38:36,090 --> 00:38:40,410 +understand it. Did you find a class button? When + +548 +00:38:40,410 --> 00:38:44,950 +this button is + +549 +00:38:44,950 --> 00:38:50,530 +designed, you can use it anywhere. When you press + +550 +00:38:50,530 --> 00:38:52,690 +the button, it will notify my frame. It will + +551 +00:38:52,690 --> 00:38:54,850 +notify the screen that I'm in. Did you find me in + +552 +00:38:54,850 --> 00:38:57,170 +my application? The screen might have the name X. + +553 +00:38:58,230 --> 00:39:03,390 +In another application, Y, Z, it changes. So how + +554 +00:39:03,390 --> 00:39:07,030 +do we make the button work wherever we put it? + +555 +00:39:08,030 --> 00:39:12,070 +It's simple. The button has an interface called + +556 +00:39:12,070 --> 00:39:17,650 +event action. Inside the button class, there is an + +557 +00:39:17,650 --> 00:39:21,670 +interface called + +558 +00:39:21,670 --> 00:39:27,130 +event action. + +559 +00:39:28,050 --> 00:39:30,330 +Okay? And inside it there is an arrow. What is the + +560 +00:39:30,330 --> 00:39:38,070 +name of this arrow? Handle. Okay? This empty arrow + +561 +00:39:38,070 --> 00:39:41,290 +is present where? Inside this interface. And + +562 +00:39:41,290 --> 00:39:45,230 +inside the button there is a list. From whom? From + +563 +00:39:45,230 --> 00:39:48,290 +event action. + +564 +00:39:50,750 --> 00:39:52,810 +it's called listeners for example or actions or + +565 +00:39:52,810 --> 00:39:57,070 +events where is all of this? inside the button you + +566 +00:39:57,070 --> 00:40:01,510 +will find that when you do this b.sitonaction it's + +567 +00:40:01,510 --> 00:40:05,770 +like adding a listener and now when you say new + +568 +00:40:05,770 --> 00:40:11,590 +event action you created a new object called event + +569 +00:40:11,590 --> 00:40:16,810 +action you can let your class implement event + +570 +00:40:16,810 --> 00:40:19,290 +action and put this did you get this or not? + +571 +00:40:21,690 --> 00:40:23,870 +ماخدتهاش برضه، فح؟ + +572 +00:40:27,350 --> 00:40:31,010 +Anyway, this event action really makes the peton, + +573 +00:40:31,690 --> 00:40:34,110 +not the peton wants to hear a sentence, it doesn't + +574 +00:40:34,110 --> 00:40:37,210 +know where the peton is placed in class X or Y or + +575 +00:40:37,210 --> 00:40:41,170 +Z. Who wants to receive the event from the peton? + +576 +00:40:42,270 --> 00:40:45,930 +When I click on the peton, does it want to send me + +577 +00:40:45,930 --> 00:40:47,730 +something? Who does it want to send it to? I don't + +578 +00:40:47,730 --> 00:40:49,650 +know. So it says, I don't have an invitation, + +579 +00:40:49,830 --> 00:40:51,650 +where do you want to put me? What concerns me, + +580 +00:40:51,730 --> 00:40:53,450 +what I want to send him must be some kind of + +581 +00:40:53,450 --> 00:40:59,160 +action event.Okay? So it comes to the button and + +582 +00:40:59,160 --> 00:41:01,880 +creates an object inside it with a new event + +583 +00:41:01,880 --> 00:41:04,680 +action. It's like I created a new object of this + +584 +00:41:04,680 --> 00:41:08,580 +kind of interface. On the basis of this object + +585 +00:41:08,580 --> 00:41:11,880 +that was created between the two branches. Like + +586 +00:41:11,880 --> 00:41:13,600 +this one that I created between the two branches. + +587 +00:41:13,740 --> 00:41:16,600 +It will be added to the list. Okay? It will be + +588 +00:41:16,600 --> 00:41:20,030 +added to the list inside it. inside the button and + +589 +00:41:20,030 --> 00:41:22,110 +when the button is pressed and there is an action + +590 +00:41:22,110 --> 00:41:24,310 +on the button you don't control it, it's the user + +591 +00:41:24,310 --> 00:41:27,370 +who presses it there is actually a loop inside the + +592 +00:41:27,370 --> 00:41:31,270 +button and it tells every event action you have to + +593 +00:41:31,270 --> 00:41:35,470 +execute the command called handle so actually all + +594 +00:41:35,470 --> 00:41:39,190 +the GUI you see, add action, set on action, it's + +595 +00:41:39,190 --> 00:41:42,050 +all an application for whom? for the observer + +596 +00:41:42,050 --> 00:41:45,770 +pattern so that they can design it so that the + +597 +00:41:45,770 --> 00:41:48,690 +item can work anywhere it is placed in + +598 +00:41:51,740 --> 00:41:55,220 +How does the baton send a message to an item it + +599 +00:41:55,220 --> 00:41:57,700 +doesn't know its name? Because the baton can be + +600 +00:41:57,700 --> 00:42:00,520 +used anywhere. For example, I don't care about the + +601 +00:42:00,520 --> 00:42:03,200 +baton. Anyone who wants to listen to me must be of + +602 +00:42:03,200 --> 00:42:08,380 +the event action type. Just like the A. Anyone who + +603 +00:42:08,380 --> 00:42:11,100 +wants to listen to me must be of the A listener + +604 +00:42:11,100 --> 00:42:15,950 +type. He must implement for the A listener. You + +605 +00:42:15,950 --> 00:42:18,050 +took the anonymous class method, but by the way, + +606 +00:42:18,170 --> 00:42:19,350 +there is more than one method that you should have + +607 +00:42:19,350 --> 00:42:27,430 +learned. Not even lambda. The frame itself, the + +608 +00:42:27,430 --> 00:42:31,190 +screen itself should say above implement event + +609 +00:42:31,190 --> 00:42:34,990 +action and put this here. The class itself became + +610 +00:42:34,990 --> 00:42:40,850 +an event action. This is what you used to apply in + +611 +00:42:40,850 --> 00:42:46,270 +GUI, but you didn't understand it.Do you + +612 +00:42:46,270 --> 00:42:49,930 +understand what I am saying? This thing that you + +613 +00:42:49,930 --> 00:42:52,470 +used in the GUI is an application for the observer + +614 +00:42:52,470 --> 00:42:57,150 +pattern But the idea is that you have to know how + +615 +00:42:57,150 --> 00:42:59,350 +they did it. Because you won't stay all your life + +616 +00:42:59,350 --> 00:43:03,290 +using other people's libraries. Maybe in the + +617 +00:43:03,290 --> 00:43:06,390 +future you will reach a stage where you make your + +618 +00:43:06,390 --> 00:43:09,230 +own library. This is how they did it. They applied + +619 +00:43:09,230 --> 00:43:12,330 +an observer pattern on the GUI. The GUI library + +620 +00:43:12,330 --> 00:43:15,770 +that we made. Like here, we applied an observer + +621 +00:43:15,770 --> 00:43:20,590 +pattern. We let component A report any ... Take + +622 +00:43:20,590 --> 00:43:22,230 +the A and put it in any new application that + +623 +00:43:22,230 --> 00:43:24,910 +works.Yes, it works normally, there is no problem. + +624 +00:43:25,030 --> 00:43:29,790 +Remove this class A, it and its interface in the + +625 +00:43:29,790 --> 00:43:31,010 +same class. Take it and put it in another + +626 +00:43:31,010 --> 00:43:33,650 +application, and the A remains the same. The A + +627 +00:43:33,650 --> 00:43:36,650 +remains running. Anyone who wants to listen to the + +628 +00:43:36,650 --> 00:43:39,130 +A only has to implement to whom? To its interface. + +629 +00:43:39,650 --> 00:43:41,170 +And so on. This is how the button works + +630 +00:43:41,170 --> 00:43:46,230 +everywhere.The button I use in my program? Ok. How + +631 +00:43:46,230 --> 00:43:49,250 +do I work? I have an idea. You give me a set on + +632 +00:43:49,250 --> 00:43:54,130 +action and the object must be an event action. + +633 +00:43:54,410 --> 00:43:58,030 +Like here, it must be an ALS. Ok? Is this idea + +634 +00:43:58,030 --> 00:44:01,420 +clear?This is just to explain to you the concept + +635 +00:44:01,420 --> 00:44:04,080 +of Observer Pattern Next time we will see a + +636 +00:44:04,080 --> 00:44:06,400 +practical example on this topic and we will + +637 +00:44:06,400 --> 00:44:11,640 +continue the slides to see today's diagram of the + +638 +00:44:11,640 --> 00:44:13,220 +Observer Pattern and God bless you all + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/fcxwhPA5dg4.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/fcxwhPA5dg4.srt new file mode 100644 index 0000000000000000000000000000000000000000..01c74f586be075ef73f89eb085fc9b7fa9bd2922 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/fcxwhPA5dg4.srt @@ -0,0 +1,2917 @@ + +1 +00:00:05,060 --> 00:00:09,420 +Ok guys, peace be upon you. Today, + +2 +00:00:09,580 --> 00:00:12,480 +God willing, we will take two design patterns to + +3 +00:00:12,480 --> 00:00:16,720 +complete the design patterns with us. And the two + +4 +00:00:16,720 --> 00:00:18,860 +that we will take today are also among the + +5 +00:00:18,860 --> 00:00:23,400 +structural design patterns. The first design + +6 +00:00:23,400 --> 00:00:26,800 +pattern is a simple design pattern called the + +7 +00:00:26,800 --> 00:00:30,640 +composite design pattern. First of all, what does + +8 +00:00:30,640 --> 00:00:34,960 +the word composite mean? When we say that there is + +9 +00:00:34,960 --> 00:00:36,540 +a composition, it means that there is a + +10 +00:00:36,540 --> 00:00:40,880 +combination or a composition. Let's go back to the + +11 +00:00:40,880 --> 00:00:42,120 +word that is present here and then we will see a + +12 +00:00:42,120 --> 00:00:45,560 +practical example. He says that the goal of intent + +13 +00:00:45,560 --> 00:00:49,600 +is to compose objects into tree structures to + +14 +00:00:49,600 --> 00:00:54,030 +represent part-whole hierarchies. Compose objects, + +15 +00:00:54,090 --> 00:00:59,550 +جمع ال objects ك tree structure على شكل tree عشان + +16 +00:00:59,550 --> 00:01:03,290 +تمثل ال whole part hierarchy زمان يكون عندك + +17 +00:01:03,290 --> 00:01:08,290 +hierarchy زي تفرع من مجموعة عناصر مثل العناصر + +18 +00:01:08,290 --> 00:01:11,330 +الموجودة في ال hierarchy هذه باستخدام ال composite + +19 +00:01:11,330 --> 00:01:17,520 +pattern. طيب عشان نفهم الكلام هذا بشكل أفضل. Let's + +20 +00:01:17,520 --> 00:01:22,640 +see a practical example on this topic. The first + +21 +00:01:22,640 --> 00:01:27,310 +example we are going to talk about is Any UI, UI + +22 +00:01:27,310 --> 00:01:31,870 +design library has design elements or elements for + +23 +00:01:31,870 --> 00:01:35,310 +the UI. For example, in JavaFX or Swing, there are + +24 +00:01:35,310 --> 00:01:38,250 +elements for printing text, label for example, or + +25 +00:01:38,250 --> 00:01:40,950 +text view, they call it in some libraries. There + +26 +00:01:40,950 --> 00:01:45,370 +are elements for writing text. There are compiled + +27 +00:01:45,370 --> 00:01:47,410 +elements, you can find them a little bit. It has + +28 +00:01:47,410 --> 00:01:50,670 +details like combo box or drop list, they call it + +29 +00:01:50,670 --> 00:01:55,100 +in some libraries. In the tab view and others, + +30 +00:01:55,260 --> 00:01:57,480 +there are many elements in the UI components. + +31 +00:01:57,980 --> 00:02:01,780 +Actually, the elements of the UI that you see, of + +32 +00:02:01,780 --> 00:02:05,000 +course, your program deals with all elements in + +33 +00:02:05,000 --> 00:02:11,460 +the same way. For example, in JavaFX or Swing, all + +34 +00:02:11,460 --> 00:02:14,380 +elements or in Android, for example, all elements + +35 +00:02:14,380 --> 00:02:17,660 +of the screen, whether it is a label which is the + +36 +00:02:17,660 --> 00:02:19,380 +label for the presentation or an element for + +37 +00:02:19,380 --> 00:02:23,480 +writing texts or for example when you make a drop + +38 +00:02:23,480 --> 00:02:29,120 +list or combo books because all these elements are + +39 +00:02:29,120 --> 00:02:31,060 +considered from the same type which is for example + +40 +00:02:31,060 --> 00:02:36,840 +view or component or UI item. + +41 +00:02:39,620 --> 00:02:41,060 +All of them are considered to be of the same type + +42 +00:02:41,060 --> 00:02:45,060 +and are drawn in the same way and even with the + +43 +00:02:45,060 --> 00:02:48,880 +same code machine. Now take one of these and look + +44 +00:02:48,880 --> 00:02:51,060 +at the drop list for example. Do you know how the + +45 +00:02:51,060 --> 00:02:54,220 +drop list was originally made? When they made the + +46 +00:02:54,220 --> 00:02:56,660 +drop list and programmed it, it was originally + +47 +00:02:56,660 --> 00:03:00,120 +composed of other elements. So this is your label + +48 +00:03:00,120 --> 00:03:01,920 +and they actually put more than one label + +49 +00:03:01,920 --> 00:03:07,150 +underneath each other. In order for me to have a + +50 +00:03:07,150 --> 00:03:09,610 +drop list, I put a button here, for example, that + +51 +00:03:09,610 --> 00:03:12,790 +you click on in order to have a drop list. And + +52 +00:03:12,790 --> 00:03:18,090 +here I can put a text field. So actually, this + +53 +00:03:18,090 --> 00:03:23,170 +drop list is made up of a group of other UI + +54 +00:03:23,170 --> 00:03:27,770 +elements. Of course, you don't know what I'm + +55 +00:03:27,770 --> 00:03:29,730 +talking about. In the end, you deal with the fact + +56 +00:03:29,730 --> 00:03:34,690 +that it is one thing. And you see it and you draw + +57 +00:03:34,690 --> 00:03:37,530 +it as it is and as you draw the main element. + +58 +00:03:38,270 --> 00:03:42,330 +Because this element we call it composite. Why? + +59 +00:03:42,810 --> 00:03:45,750 +Because it is composed. Actually, it is a + +60 +00:03:45,750 --> 00:03:48,430 +compilation of other elements. This is the main + +61 +00:03:48,430 --> 00:03:54,130 +element. Okay? You as a programmer use the + +62 +00:03:54,130 --> 00:03:55,970 +elements of this library. You will not + +63 +00:03:55,970 --> 00:03:59,470 +differentiate this from this. You draw this as you + +64 +00:03:59,470 --> 00:04:01,710 +draw this. You add this to the screen as you add + +65 +00:04:01,710 --> 00:04:06,710 +it. This is on the screen. Of course, you can do + +66 +00:04:06,710 --> 00:04:09,870 +this because the programmer of the library made + +67 +00:04:09,870 --> 00:04:13,010 +the elements composite, but in the end he told you + +68 +00:04:13,010 --> 00:04:16,570 +to deal with this element as if you were dealing + +69 +00:04:16,570 --> 00:04:21,790 +with the main element. You don't even have to know + +70 +00:04:21,790 --> 00:04:26,190 +that this element is composed of other elements. + +71 +00:04:26,850 --> 00:04:29,750 +No, it deals with the component as it deals with + +72 +00:04:29,750 --> 00:04:32,330 +the element. This is to facilitate you in + +73 +00:04:32,330 --> 00:04:34,450 +programming and processing. This is the meaning of + +74 +00:04:34,450 --> 00:04:36,870 +the composite pattern. If you are a programmer and + +75 +00:04:36,870 --> 00:04:41,310 +you want to make a library, you will have elements + +76 +00:04:41,310 --> 00:04:45,310 +composed of other elements. Let the compiled + +77 +00:04:45,310 --> 00:04:48,530 +element appear to the programmer as the main + +78 +00:04:48,530 --> 00:04:50,850 +element appears. This is a simple summary of the + +79 +00:04:50,850 --> 00:04:52,010 +topic. + +80 +00:04:54,870 --> 00:04:57,630 +Now let's look at this example to see how it will + +81 +00:04:57,630 --> 00:05:00,330 +help us in programming and where it is applied. We + +82 +00:05:00,330 --> 00:05:03,750 +want to see a simple example that shows the + +83 +00:05:03,750 --> 00:05:06,090 +concept of the composite pattern and also to see + +84 +00:05:06,090 --> 00:05:09,730 +in Java where the composite pattern is used in + +85 +00:05:09,730 --> 00:05:13,250 +Java itself. Okay, the first example + +86 +00:05:33,600 --> 00:05:36,380 +Okay, it's an addition to the previous program + +87 +00:05:36,380 --> 00:05:37,020 +that we took. + +88 +00:05:49,740 --> 00:05:50,480 +One second. + +89 +00:05:58,490 --> 00:06:00,430 +Okay, we took before a program for drawing + +90 +00:06:00,430 --> 00:06:03,210 +mechanical shapes, which is when you draw, you + +91 +00:06:03,210 --> 00:06:05,270 +press on circle, you draw circles, you press on + +92 +00:06:05,270 --> 00:06:08,970 +rectangle, you draw rectangles, okay? Now, what I + +93 +00:06:08,970 --> 00:06:12,450 +want to do, guys, I want to make a different + +94 +00:06:12,450 --> 00:06:14,350 +shape, I want to draw a human being, for example, + +95 +00:06:14,510 --> 00:06:17,110 +you want to draw a circle, and here is a + +96 +00:06:17,110 --> 00:06:18,650 +rectangle, and here is a rectangle, right or not? + +97 +00:06:18,810 --> 00:06:23,860 +For example. Okay? So this is a shape that is a + +98 +00:06:23,860 --> 00:06:26,460 +combination of what? Other shapes, a combination + +99 +00:06:26,460 --> 00:06:28,760 +of circles with rectangles, a certain order in + +100 +00:06:28,760 --> 00:06:31,620 +between them, this shape. So I would like to make + +101 +00:06:31,620 --> 00:06:35,220 +my shape to be composed or composed of other basic + +102 +00:06:35,220 --> 00:06:39,330 +shapes that I made, like circle and rectangle. For + +103 +00:06:39,330 --> 00:06:41,390 +example, this is the custom shape. It's a simple + +104 +00:06:41,390 --> 00:06:47,410 +custom shape. It's a square inside a circle. At + +105 +00:06:47,410 --> 00:06:49,890 +the same time, I don't want to change much in the + +106 +00:06:49,890 --> 00:06:52,930 +program. If you remember, in the program we made, + +107 +00:06:54,010 --> 00:06:57,290 +there was a class called Graph Editor or Graph + +108 +00:06:57,290 --> 00:07:03,620 +Manager, which was a method called + +109 +00:07:03,620 --> 00:07:07,160 +draw and a method called clear to erase what's on + +110 +00:07:07,160 --> 00:07:10,700 +the screen and I had undo undo which means that + +111 +00:07:10,700 --> 00:07:13,960 +whatever shape I draw, I store it where? in shapes + +112 +00:07:13,960 --> 00:07:15,640 +and then I make loops on the shape and I say + +113 +00:07:15,640 --> 00:07:19,260 +shapes and I say draw. And the graph editor's + +114 +00:07:19,260 --> 00:07:20,280 +characteristic was that it had nothing to do with + +115 +00:07:20,280 --> 00:07:22,380 +the shapes I made, whether it was a circle, + +116 +00:07:22,520 --> 00:07:27,460 +rectangle, square, whatever. In the end, I deal + +117 +00:07:27,460 --> 00:07:30,100 +with it as a kind of shape. I draw the shape and + +118 +00:07:30,100 --> 00:07:33,360 +throw it away. Even when we applied reflection, I + +119 +00:07:33,360 --> 00:07:36,040 +made a class for the shape and threw the shape + +120 +00:07:36,040 --> 00:07:40,220 +away in the book. And I made buttons for it and + +121 +00:07:40,220 --> 00:07:42,840 +drew the shape without modifying anything on the + +122 +00:07:42,840 --> 00:07:47,430 +code. Because we wanted to make a complex shape. So + +123 +00:07:47,430 --> 00:07:49,590 +that we can draw a rectangle and inside it a + +124 +00:07:49,590 --> 00:07:52,490 +circle or we can draw a shape like this, but at + +125 +00:07:52,490 --> 00:07:55,130 +the same time we don't have to change anything in + +126 +00:07:55,130 --> 00:07:58,790 +the code. Okay? So that we don't have to change + +127 +00:07:58,790 --> 00:08:00,770 +anything in the code, it means that the graph + +128 +00:08:00,770 --> 00:08:05,390 +editor has to see the new shape from beginning to + +129 +00:08:05,390 --> 00:08:10,770 +end and also the program that uses reflection. And + +130 +00:08:10,770 --> 00:08:13,410 +it creates a loop on the classes to see if they + +131 +00:08:13,410 --> 00:08:15,050 +are of the same shape and it creates an arrow for + +132 +00:08:15,050 --> 00:08:18,350 +each one of them. So if you want to create a + +133 +00:08:18,350 --> 00:08:20,310 +complex shape like this, go and create a new class + +134 +00:08:20,310 --> 00:08:25,110 +called Custom Shape Implements Shape, which means + +135 +00:08:25,110 --> 00:08:30,010 +that this class is also of the same shape because + +136 +00:08:30,010 --> 00:08:35,900 +inside it what is this? List of shapes, which means + +137 +00:08:35,900 --> 00:08:37,560 +that this custom shape consists of a list of + +138 +00:08:37,560 --> 00:08:39,360 +shapes. And of course, what is this? This is the + +139 +00:08:39,360 --> 00:08:41,980 +constructor, okay? As soon as I create an object + +140 +00:08:41,980 --> 00:08:45,600 +from a custom shape, it will create a list, then I + +141 +00:08:45,600 --> 00:08:48,160 +create a circle, then I create a square, and it + +142 +00:08:48,160 --> 00:08:52,830 +will add them to whom? To this list. Now, of + +143 +00:08:52,830 --> 00:08:54,890 +course, since I made an implement for the shape + +144 +00:08:54,890 --> 00:08:57,350 +interface, I made an implement for the draw + +145 +00:08:57,350 --> 00:09:01,650 +method, which will not draw a new shape, it will + +146 +00:09:01,650 --> 00:09:04,450 +actually make a loop on the array and say shape + +147 +00:09:04,450 --> 00:09:10,710 +.draw. In the circle and rectangle, I used to bring + +148 +00:09:10,710 --> 00:09:13,030 +graphics and say draw over and draw a rectangle, + +149 +00:09:13,510 --> 00:09:16,590 +but now I tell it to make a loop on them and draw + +150 +00:09:16,590 --> 00:09:22,120 +a draw. Okay, so this shape is actually a + +151 +00:09:22,120 --> 00:09:25,140 +combination of other shapes, but the idea is that + +152 +00:09:25,140 --> 00:09:27,160 +this shape is a composite because it is composed + +153 +00:09:27,160 --> 00:09:30,300 +of a set of basic shapes and I made it deal with + +154 +00:09:30,300 --> 00:09:32,660 +the composite in the same way as it deals with the + +155 +00:09:32,660 --> 00:09:33,980 +basic shape because they are all of the same type + +156 +00:09:34,790 --> 00:09:37,230 +all of them are shaped because actually instead of + +157 +00:09:37,230 --> 00:09:39,090 +adding them to the class we saw the reflection + +158 +00:09:39,090 --> 00:09:43,950 +factory which in the end I give it a class name + +159 +00:09:43,950 --> 00:09:47,970 +and I use the reflection to create the object here. + +160 +00:09:47,970 --> 00:09:52,730 +I have a class name create shape which depends on + +161 +00:09:52,730 --> 00:09:56,510 +the class name that I give it and I create the + +162 +00:09:56,510 --> 00:09:58,450 +object and return it regardless of whether it is + +163 +00:09:58,450 --> 00:10:01,980 +circle, rectangle. And the idea is that the graph + +164 +00:10:01,980 --> 00:10:06,000 +editor, because this list can have circle, + +165 +00:10:06,160 --> 00:10:09,140 +rectangle, square or custom shape. If it is a + +166 +00:10:09,140 --> 00:10:13,040 +custom shape, it will draw and draw and draw and + +167 +00:10:13,040 --> 00:10:17,260 +loop on the shapes and draw and draw. So the point + +168 +00:10:17,260 --> 00:10:20,420 +is that if you want to make a composition of basic + +169 +00:10:20,420 --> 00:10:23,500 +shapes, make the composition of the same type of + +170 +00:10:23,500 --> 00:10:26,910 +shapes inside. This is in short the concept of + +171 +00:10:26,910 --> 00:10:32,390 +composite pattern. Now another example to show that + +172 +00:10:32,390 --> 00:10:39,550 +composite pattern is used. Now in java. Have you + +173 +00:10:39,550 --> 00:10:41,270 +tried dealing with files before? Of course, have + +174 +00:10:41,270 --> 00:10:42,770 +you dealt with files? Okay, what about magazines? + +175 +00:10:43,090 --> 00:10:46,950 +If you try to read a magazine in java, now notice + +176 +00:10:46,950 --> 00:10:51,010 +that in java there is no class called directory, + +177 +00:10:51,110 --> 00:10:54,130 +in java there is no class called directory, but + +178 +00:10:54,130 --> 00:10:56,490 +there is a class called file. + +179 +00:11:00,670 --> 00:11:03,370 +Okay, if you have a file, you put it in this file, + +180 +00:11:03,810 --> 00:11:07,110 +you remove the object from the file and connect it + +181 +00:11:07,110 --> 00:11:09,710 +to the file you put in the file. Okay, why do you + +182 +00:11:09,710 --> 00:11:11,810 +want to connect it to a file? Okay, I tell you to + +183 +00:11:11,810 --> 00:11:15,970 +use the same file. For example, there is a file + +184 +00:11:15,970 --> 00:11:20,050 +called files. Use the same class. Of course, you + +185 +00:11:20,050 --> 00:11:22,490 +would wonder, is it possible that a copywriter + +186 +00:11:22,490 --> 00:11:25,350 +uses a class file? It doesn't make much sense, + +187 +00:11:25,610 --> 00:11:28,630 +right? No. So why didn't he make a class called + +188 +00:11:28,630 --> 00:11:32,030 +directory? He said, no, here we deal with the + +189 +00:11:32,030 --> 00:11:36,950 +copywriter and the file in the same way, okay? + +190 +00:11:37,090 --> 00:11:38,470 +What will benefit us from this treatment? Many + +191 +00:11:3 + +223 +00:14:07,340 --> 00:14:10,780 +beginning, what did you give it? You gave it an + +224 +00:14:10,780 --> 00:14:14,640 +object of type file and gave it a path, a folder + +225 +00:14:15,590 --> 00:14:17,690 +because it will execute the process file it will + +226 +00:14:17,690 --> 00:14:19,810 +take what you passed what you passed can be a file + +227 +00:14:19,810 --> 00:14:23,390 +can be a file if it was a file you tell it to read + +228 +00:14:23,390 --> 00:14:26,330 +the content of the file and follow it if it was a + +229 +00:14:26,330 --> 00:14:31,370 +file else means what? you can tell it else if F is + +230 +00:14:31,370 --> 00:14:32,850 +directory there is a method that I will show you + +231 +00:14:32,850 --> 00:14:36,310 +it's directory look what I tell it leave + +232 +00:14:36,310 --> 00:14:38,410 +everything that is inside this file and return to + +233 +00:14:38,410 --> 00:14:41,490 +it also some kind of array of files and make loop + +234 +00:14:41,490 --> 00:14:45,540 +on it and the second meanSubfile, what is subfile? + +235 +00:14:45,940 --> 00:14:48,400 +Recursion, which means that it took itself and + +236 +00:14:48,400 --> 00:14:52,420 +sent the file, which can also be either file or + +237 +00:14:52,420 --> 00:14:56,820 +directory. So now it deals with the composite and + +238 +00:14:56,820 --> 00:15:01,270 +the individual inside it in the same way.Don't + +239 +00:15:01,270 --> 00:15:03,630 +make a class for a directory and make a class for + +240 +00:15:03,630 --> 00:15:06,470 +a file. This makes you deal with them in the same + +241 +00:15:06,470 --> 00:15:10,310 +way. One code deals with the file and with the + +242 +00:15:10,310 --> 00:15:12,750 +folder. And this is also where we see that + +243 +00:15:12,750 --> 00:15:17,290 +algorithms work a lot. For example, dealing with + +244 +00:15:17,290 --> 00:15:20,050 +trees. I got back to the tree. When you make a + +245 +00:15:20,050 --> 00:15:20,730 +process for a tree, + +246 +00:15:23,970 --> 00:15:27,970 +A family tree, a student tree, a file tree, okay? + +247 +00:15:28,630 --> 00:15:32,110 +The nodes all have to be of the same type, okay? + +248 +00:15:33,010 --> 00:15:35,590 +For example, this is the leaf, the outer leaves, + +249 +00:15:35,990 --> 00:15:38,910 +okay? It has to be of the node type, and this also + +250 +00:15:38,910 --> 00:15:42,150 +has to be of the node type, because when you come + +251 +00:15:42,150 --> 00:15:46,740 +to read the treeYou use mercagin because the + +252 +00:15:46,740 --> 00:15:49,620 +father passes it on to his children and this app + +253 +00:15:49,620 --> 00:15:52,160 +passes it on to his children, okay? So you keep + +254 +00:15:52,160 --> 00:15:54,620 +running the same code that will run the process + +255 +00:15:54,620 --> 00:15:57,820 +for the parent, which will run the process for the + +256 +00:15:57,820 --> 00:16:00,680 +leaf, okay? So what deals with algorithms, for + +257 +00:16:00,680 --> 00:16:02,500 +example, I want to deal with a street view, for + +258 +00:16:02,500 --> 00:16:05,830 +example, a graph that represents the city mapout + +259 +00:16:05,830 --> 00:16:07,770 +of the city, the nodes represent, for example, + +260 +00:16:07,970 --> 00:16:14,950 +each node represents a city or a village or a + +261 +00:16:14,950 --> 00:16:17,350 +residential area because these nodes are supposed + +262 +00:16:17,350 --> 00:16:24,340 +to express the node in a wayone, so that when you + +263 +00:16:24,340 --> 00:16:27,060 +build an algorithm and move, for example, you want + +264 +00:16:27,060 --> 00:16:28,520 +to build an algorithm that brings you the shortest + +265 +00:16:28,520 --> 00:16:31,420 +path from one city to another city, all the nodes + +266 +00:16:31,420 --> 00:16:33,920 +that deal with them are of the same type, so that + +267 +00:16:33,920 --> 00:16:36,380 +the code in dealing with the nodes is one + +268 +00:16:36,380 --> 00:16:40,720 +regardless of their differences.Okay, and this is + +269 +00:16:40,720 --> 00:16:44,380 +the idea of the composite pattern, in short, and + +270 +00:16:44,380 --> 00:16:47,840 +we saw how an application in a simple example that + +271 +00:16:47,840 --> 00:16:49,880 +I explained has to do with drawing shapes, and in + +272 +00:16:49,880 --> 00:16:52,240 +Java it is also applied in dealing with files and + +273 +00:16:52,240 --> 00:16:55,200 +directories, that they all deal with the same file + +274 +00:17:00,020 --> 00:17:02,760 +Composite objects compose objects into a tree + +275 +00:17:02,760 --> 00:17:04,660 +structure, which means that objects are composed + +276 +00:17:04,660 --> 00:17:06,900 +into a tree structure in order to represent their + +277 +00:17:06,900 --> 00:17:11,120 +hierarchical part. This is clear now. Composite + +278 +00:17:11,120 --> 00:17:14,040 +pattern lets clients treat, this is the main goal. + +279 +00:17:15,200 --> 00:17:20,560 +The goal is to let clients treat each other with + +280 +00:17:20,560 --> 00:17:24,760 +individual objects and compositions of objects in + +281 +00:17:24,760 --> 00:17:29,060 +a uniform way, in a unified way. + +282 +00:17:30,870 --> 00:17:34,930 +When to use it? When you have any hierarchies or + +283 +00:17:34,930 --> 00:17:38,570 +trees of elements consisting of sub-tribes and + +284 +00:17:38,570 --> 00:17:41,270 +complex things, use the composite pattern, like + +285 +00:17:41,270 --> 00:17:45,030 +what UI does in the UI library, you need it, okay? + +286 +00:17:45,970 --> 00:17:49,210 +Algorithms that have tree and recursion also need + +287 +00:17:49,210 --> 00:17:52,240 +the composite pattern.You want clients to ignore + +288 +00:17:52,240 --> 00:17:54,760 +the differences between parts and holes. You want + +289 +00:17:54,760 --> 00:17:56,860 +them to cache the differences between parts and + +290 +00:17:56,860 --> 00:17:59,160 +holes. For example, in the graph editor, in our + +291 +00:17:59,160 --> 00:18:01,420 +example, in the end, I don't want to modify the + +292 +00:18:01,420 --> 00:18:03,900 +graph editor. This has a way to draw, and this has + +293 +00:18:03,900 --> 00:18:05,840 +another way to draw. The graph editor is supposed + +294 +00:18:05,840 --> 00:18:09,620 +to draw whatever type of shape it sees as a shape. + +295 +00:18:10,040 --> 00:18:12,560 +So whether it is a complex shape or an individual + +296 +00:18:12,560 --> 00:18:15,060 +shape, they will all see it as a shape and will + +297 +00:18:15,060 --> 00:18:20,350 +follow the draw method.Now, this is the UML + +298 +00:18:20,350 --> 00:18:25,630 +diagram of the composite Actually, I have an + +299 +00:18:25,630 --> 00:18:28,790 +interface or an abstract class called component + +300 +00:18:28,790 --> 00:18:31,410 +with method operation What does this represent in + +301 +00:18:31,410 --> 00:18:34,370 +our example? Which is the shape and method draw in + +302 +00:18:34,370 --> 00:18:37,550 +it Because these are the basic shapes, leaf A, B, + +303 +00:18:37,730 --> 00:18:42,530 +C, the leaves and all of them implement the + +304 +00:18:42,530 --> 00:18:47,150 +interface and method operation or drawWe want to + +305 +00:18:47,150 --> 00:18:49,410 +make a complex shape, as we saw before, I will + +306 +00:18:49,410 --> 00:18:53,690 +make a class called composite And to make my + +307 +00:18:53,690 --> 00:18:56,750 +program deal with the composite as it deals with + +308 +00:18:56,750 --> 00:18:58,210 +these, this does not require special treatment, + +309 +00:18:58,330 --> 00:19:01,370 +even if it is a complex shape, let it implement + +310 +00:19:01,370 --> 00:19:04,230 +for the same interface, and notice that from the + +311 +00:19:04,230 --> 00:19:09,680 +insideuse, بستخدم components طبعا هنا لعمل المعين + +312 +00:19:09,680 --> 00:19:13,620 +مفتوح ده إيش معناه؟ إن الأجزاء بتتمتم إنشاءها برا + +313 +00:19:13,620 --> 00:19:17,880 +و بمررها طبعا أنا بفضل يكون مغلق مش شرط هو حسم + +314 +00:19:17,880 --> 00:19:21,500 +البرنامج مغلق إيش يعني؟ يعني بتتمن إنشاء الأشياء + +315 +00:19:21,500 --> 00:19:25,000 +جوا، من غير ما أنا أشوفها طب ليش هنا أفضل؟ لأن أنت + +316 +00:19:25,000 --> 00:19:28,360 +لما تنشق مثلا drop a combo boxDo you go and + +317 +00:19:28,360 --> 00:19:31,280 +extract the objects inside it? No, you tell it to + +318 +00:19:31,280 --> 00:19:34,800 +make a comma box and it will extract the objects + +319 +00:19:34,800 --> 00:19:37,840 +inside it. Okay? Of course, notice that this also + +320 +00:19:37,840 --> 00:19:41,500 +implements the method draw or operation. It means + +321 +00:19:41,500 --> 00:19:45,220 +that if I can make a code polymorphism that loops + +322 +00:19:45,220 --> 00:19:49,410 +on shapes and implements the method,But here in + +323 +00:19:49,410 --> 00:19:52,950 +the method operation, what does it do? It makes a + +324 +00:19:52,950 --> 00:19:56,590 +loop and executes the operation in each child, it + +325 +00:19:56,590 --> 00:19:58,270 +doesn't say that this is a complex shape, actually + +326 +00:19:58,270 --> 00:20:01,010 +when it comes to draw it, it will draw the shapes + +327 +00:20:01,010 --> 00:20:04,830 +inside And these are method add and remove to add + +328 +00:20:04,830 --> 00:20:08,170 +new shapes to this complex shape, so these are + +329 +00:20:08,170 --> 00:20:08,670 +optional things + +330 +00:20:13,020 --> 00:20:17,600 +This diagram explains that in case of Tree + +331 +00:20:17,600 --> 00:20:20,580 +Structure or UI component, for example, I have a + +332 +00:20:20,580 --> 00:20:24,620 +picture which is basically a composite item + +333 +00:20:24,620 --> 00:20:27,820 +consisting of a rectangle and a line, and it can + +334 +00:20:27,820 --> 00:20:30,360 +form another picture, and this picture consists of + +335 +00:20:30,360 --> 00:20:34,900 +a rectangle, a line and a text. Actually, when I + +336 +00:20:34,900 --> 00:20:39,240 +draw the picture and implement the method ROJ, and + +337 +00:20:39,240 --> 00:20:41,910 +it creates a loop on whom? on its shapes and it + +338 +00:20:41,910 --> 00:20:44,690 +executes draw and draw and draw for this one and + +339 +00:20:44,690 --> 00:20:47,590 +this is a composite when it executes its draw it + +340 +00:20:47,590 --> 00:20:50,030 +will loop and execute the draw for the shapes + +341 +00:20:50,030 --> 00:20:54,330 +inside but in the end I see any node of these in + +342 +00:20:54,330 --> 00:20:58,710 +the same way or in the same mechanism so not every + +343 +00:20:58,710 --> 00:21:02,510 +node has its own code that works with it this is + +344 +00:21:02,510 --> 00:21:04,210 +the same shape this is the drawing of the UML + +345 +00:21:04,210 --> 00:21:09,370 +diagram followed by it okay here is the last thing + +346 +00:21:10,990 --> 00:21:15,770 +I will leave this idea for you to read it We will + +347 +00:21:15,770 --> 00:21:18,370 +come to another design pattern, and this is the + +348 +00:21:18,370 --> 00:21:20,610 +last design pattern, which is called flyweight + +349 +00:21:20,610 --> 00:21:29,470 +design pattern What is flyweight? How? Fly means + +350 +00:21:29,470 --> 00:21:35,130 +flying, and fly also means an ant, okay? Fly is an + +351 +00:21:35,130 --> 00:21:38,900 +antso here flyweight means the weight of a fly you + +352 +00:21:38,900 --> 00:21:42,500 +hear that in fighting there are categories there + +353 +00:21:42,500 --> 00:21:43,720 +is the weight of the fly, the weight of the + +354 +00:21:43,720 --> 00:21:46,240 +feather and the heavy weight this is the famous + +355 +00:21:46,240 --> 00:21:48,160 +one, the famous one is the heavy weight you hear + +356 +00:21:48,160 --> 00:21:51,080 +about it because it is bigger than the other but + +357 +00:21:51,080 --> 00:21:53,580 +there are fighters who are small in size, small in + +358 +00:21:53,580 --> 00:21:55,840 +weight so the weight of the fly and each one + +359 +00:21:55,840 --> 00:22:00,800 +fights for his own weight and each one has his own + +360 +00:22:00,800 --> 00:22:03,420 +championship but the famous one among the people + +361 +00:22:04,230 --> 00:22:06,690 +Like the weight of Muhammad Ali Kly and Tyson and + +362 +00:22:06,690 --> 00:22:10,050 +stuff like that Ok, back to Flyweight, the weight + +363 +00:22:10,050 --> 00:22:12,950 +of a butterfly It's one of the design patterns + +364 +00:22:12,950 --> 00:22:19,230 +that are useful Especially used in games and + +365 +00:22:19,230 --> 00:22:24,370 +mobile applications When you need to save on + +366 +00:22:24,370 --> 00:22:28,730 +memory usage specifically And to understand this, + +367 +00:22:28,810 --> 00:22:31,510 +we need to take an example Pay attention with me + +368 +00:22:31,510 --> 00:22:41,790 +guys to explain how the flyweight works Imagine + +369 +00:22:41,790 --> 00:22:44,630 +that you want to make a game and you want to draw + +370 +00:22:44,630 --> 00:22:47,770 +in it a natural view of a forest And the forest is + +371 +00:22:47,770 --> 00:22:51,150 +made of what? Of trees So you actually draw a + +372 +00:22:51,150 --> 00:22:53,310 +forest, you draw a tree, you repeat it a thousand + +373 +00:22:53,310 --> 00:22:57,830 +times a year you have a forestBecause the tree has + +374 +00:22:57,830 --> 00:22:59,750 +attributes that you can draw on it Imagine that + +375 +00:22:59,750 --> 00:23:03,730 +you came to make a class for the tree This is + +376 +00:23:03,730 --> 00:23:07,110 +class 3 and we are thinking about the attributes + +377 +00:23:07,110 --> 00:23:09,310 +that we are going to make for the tree The first + +378 +00:23:09,310 --> 00:23:12,510 +thing that the tree has is color + +379 +00:23:15,390 --> 00:23:17,510 +Right or wrong? For example, there is a tree that + +380 +00:23:17,510 --> 00:23:19,810 +is green and there is a tree that is orange + +381 +00:23:19,810 --> 00:23:22,750 +because you know that in autumn, the leaves turn + +382 +00:23:22,750 --> 00:23:27,430 +green and turn green, right? And it can also be + +383 +00:23:27,430 --> 00:23:30,210 +red, like a camel, and it may not have leaves at + +384 +00:23:30,210 --> 00:23:34,110 +all, right? Other than the color, there is also + +385 +00:23:34,110 --> 00:23:39,150 +the height The height of the tree, there is also + +386 +00:23:39,150 --> 00:23:42,990 +the size of the leaves, right? There is also + +387 +00:23:42,990 --> 00:23:43,650 +texture + +388 +00:23:46,240 --> 00:23:50,660 +which is the fabric or the outer shape of it, + +389 +00:23:50,760 --> 00:23:53,140 +which is the shape of the paper, okay? There are + +390 +00:23:53,140 --> 00:23:55,500 +big and small papers, this is the texture, okay? + +391 +00:23:56,920 --> 00:24:01,720 +And there is also X and Y, which is its location. + +392 +00:24:02,360 --> 00:24:05,380 +When you draw a tree, you want to distribute the + +393 +00:24:05,380 --> 00:24:07,940 +forest, not all the trees are in one place, okay? + +394 +00:24:08,320 --> 00:24:10,980 +These are the information you need to grow a tree + +395 +00:24:10,980 --> 00:24:14,840 +and draw it.And now you are going to create from + +396 +00:24:14,840 --> 00:24:19,660 +this class not just one object, but 1000, 10,000 + +397 +00:24:19,660 --> 00:24:24,420 +objects and draw them, okay? Okay, let's also + +398 +00:24:24,420 --> 00:24:27,860 +imagine how much if you made 1000 objects from the + +399 +00:24:27,860 --> 00:24:31,040 +tree you will take in memory. Now, the color does + +400 +00:24:31,040 --> 00:24:34,390 +not take much.Let's say for example 3 bytes, each + +401 +00:24:34,390 --> 00:24:39,890 +RGB takes 1 byte, each R1 3 channel takes 3 bytes, + +402 +00:24:40,190 --> 00:24:45,510 +the height is 1 byte, the size is 1 byte, the + +403 +00:24:45,510 --> 00:24:55,930 +texture will take a lot, which is the drawing of + +404 +00:24:55,930 --> 00:25:00,670 +the paper itself, this is graphics It has a size + +405 +00:25:00,670 --> 00:25:05,870 +in the memory For example, this tree will take 5 + +406 +00:25:05,870 --> 00:25:13,010 +kilobytes The x and y have no size, one byte, one + +407 +00:25:13,010 --> 00:25:19,030 +byte is too much So this tree when you make 1000 + +408 +00:25:19,030 --> 00:25:21,650 +of it, it has a size of 5 kilobytes And these + +409 +00:25:21,650 --> 00:25:25,670 +trees have no size So the size of the whole tree, + +410 +00:25:25,930 --> 00:25:29,910 +the whole object is the size of who?So you need to + +411 +00:25:29,910 --> 00:25:35,970 +make for example 10,000 trees, which is 50,000 + +412 +00:25:35,970 --> 00:25:39,170 +kilobytes, + +413 +00:25:39,610 --> 00:2 + +445 +00:28:01,900 --> 00:28:07,200 +So now the attributes of this class include x, y, + +446 +00:28:07,340 --> 00:28:12,000 +size, height and object of the type What did we + +447 +00:28:12,000 --> 00:28:14,540 +do? Nothing. Is it correct or not? Is it correct + +448 +00:28:14,540 --> 00:28:17,400 +or not? Is it correct or not? Is it correct or + +449 +00:28:17,400 --> 00:28:17,540 +not? Is it correct or not? Is it correct or not? + +450 +00:28:17,540 --> 00:28:17,660 +correct or not? Is it correct or not? Is it + +451 +00:28:17,660 --> 00:28:17,760 +correct or not? Is it correct or not? Is it + +452 +00:28:17,760 --> 00:28:21,140 +correct or not? Is it correct or not? Is it + +453 +00:28:21,140 --> 00:28:21,180 +correct or not? Is it correct or not? Is it + +454 +00:28:21,180 --> 00:28:21,260 +correct or not? Is it correct or not? Is it + +455 +00:28:21,260 --> 00:28:21,320 +correct or not? Is it correct or not? Is it + +456 +00:28:21,320 --> 00:28:28,000 +correct or not? Is it correct or not? Is it + +457 +00:28:28,000 --> 00:28:32,840 +correct or not? Is it correct or not? + +458 +00:28:37,660 --> 00:28:40,530 +We will do the following, we will go to the + +459 +00:28:40,530 --> 00:28:45,070 +TreeBasicData and make from it only 3 objects and + +460 +00:28:45,070 --> 00:28:50,430 +save them For example, all of them are of the type + +461 +00:28:50,430 --> 00:28:54,910 +of what guys? TreeBasicData In the first object, + +462 +00:28:55,610 --> 00:28:59,690 +we put in it for example this green tree For + +463 +00:28:59,690 --> 00:29:02,690 +example, let's say it's a pine tree, or what did + +464 +00:29:02,690 --> 00:29:07,370 +we agree on? Olives. You put here the texture of + +465 +00:29:07,370 --> 00:29:10,050 +the olive and its color. And this is the + +466 +00:29:10,050 --> 00:29:11,850 +Clementine. You put the texture of the Clementine + +467 +00:29:11,850 --> 00:29:17,050 +and its color. What's the third one? Anything. You + +468 +00:29:17,050 --> 00:29:20,130 +put the texture. How many objects did you create? + +469 +00:29:20,350 --> 00:29:27,230 +One, two, three. Fifteen. Okay. Okay. We haven't + +470 +00:29:27,230 --> 00:29:29,640 +created any of these objects yet. We only created + +471 +00:29:29,640 --> 00:29:33,820 +these three trees and stored them aside. What does + +472 +00:29:33,820 --> 00:29:35,420 +this mean? It means that we divide the forest in + +473 +00:29:35,420 --> 00:29:37,680 +this way. How many trees does the forest need? We + +474 +00:29:37,680 --> 00:29:41,100 +agreed on 10,000 trees. You come and create an + +475 +00:29:41,100 --> 00:29:43,120 +object from the tree. Of course, you have to give + +476 +00:29:43,120 --> 00:29:45,820 +it attributes to use it. You give it a height, + +477 +00:29:45,960 --> 00:29:50,340 +size, x and y. randomly for example, but when you + +478 +00:29:50,340 --> 00:29:53,120 +create a tree with basic data, you tell it to take + +479 +00:29:53,120 --> 00:29:56,800 +one of these objects, for example, if it is an + +480 +00:29:56,800 --> 00:29:58,600 +olive tree, give it a number, give it a number 1, + +481 +00:29:58,660 --> 00:30:00,860 +it is the same object, it did not create a new + +482 +00:30:00,860 --> 00:30:04,180 +object, it used an object from where? From what is + +483 +00:30:04,180 --> 00:30:07,720 +stored here, so you create 3000 objects from the + +484 +00:30:07,720 --> 00:30:11,780 +tree, It gives him 3000 different information about + +485 +00:30:11,780 --> 00:30:14,540 +how to size x and y. It's not a problem, 3000 + +486 +00:30:14,540 --> 00:30:17,880 +information, but what is their size? Nothing. But + +487 +00:30:17,880 --> 00:30:22,560 +for all 3000 information, he used the same object. + +488 +00:30:25,010 --> 00:30:28,510 +Ok? We finished the 3000 olive trees, now we come + +489 +00:30:28,510 --> 00:30:31,970 +to Clementina, we make 4000 Clementina trees, it + +490 +00:30:31,970 --> 00:30:34,990 +produces 4000 objects from the tree, all of them + +491 +00:30:34,990 --> 00:30:38,570 +use the same attribute, this object of the + +492 +00:30:38,570 --> 00:30:43,790 +Clementina tree. Ok? And it gives them different + +493 +00:30:43,790 --> 00:30:46,610 +information from height, size and x and y. And the + +494 +00:30:46,610 --> 00:30:48,710 +last thing that works is the綱, or the bull, or I + +495 +00:30:48,710 --> 00:30:51,770 +don't know what. It produces 2000 trees using the + +496 +00:30:51,770 --> 00:30:53,590 +third object, and it gives them different + +497 +00:30:53,590 --> 00:30:58,960 +information here. So how much is the size of 10,000 + +498 +00:30:58,960 --> 00:31:06,960 +trees? 1, 2, 3, 4, 4 bytes right or wrong? 4 bytes + +499 +00:31:06,960 --> 00:31:15,560 +in what? In 10,000, right? So 40,000 bytes, which + +500 +00:31:15,560 --> 00:31:16,260 +is approximately 40 + +501 +00:31:19,800 --> 00:31:22,440 +Kilobyte, plus, we said each one of these how + +502 +00:31:22,440 --> 00:31:27,740 +much? 555 plus 15 bytes, kilobyte, right? Not each + +503 +00:31:27,740 --> 00:31:29,360 +one of these, I mean, how much is the size of the + +504 +00:31:29,360 --> 00:31:34,740 +whole tree? 55 kilobyte, how much was the previous + +505 +00:31:34,740 --> 00:31:39,620 +size? 500 megabytes, okay? I mean, look how we + +506 +00:31:39,620 --> 00:31:41,620 +separated the information of the tree into two + +507 +00:31:41,620 --> 00:31:45,860 +parts, the part changes continuously, + +508 +00:31:46,580 --> 00:31:50,200 +which is its small size, and a section that is + +509 +00:31:50,200 --> 00:31:53,980 +large but does not change significantly and I give + +510 +00:31:53,980 --> 00:31:56,460 +it fixed information which is the textures used + +511 +00:31:56,460 --> 00:31:58,800 +and I have three types of textures and I extract + +512 +00:31:58,800 --> 00:32:02,020 +three objects from them specifically and then for + +513 +00:32:02,020 --> 00:32:04,140 +the 10,000 objects that I make military, I make + +514 +00:32:04,140 --> 00:32:10,580 +them reuse for these objects That's how we saved a + +515 +00:32:10,580 --> 00:32:14,940 +lot of memory. Let's see this example in practice. + +516 +00:32:15,620 --> 00:32:24,480 +I didn't explain this design pattern last year. + +517 +00:32:25,920 --> 00:32:30,060 +I added this example yesterday. Let's see this + +518 +00:32:30,060 --> 00:32:31,900 +example quickly. + +519 +00:32:34,540 --> 00:32:38,420 +Pay attention with me. Because today's diagram is + +520 +00:32:38,420 --> 00:32:41,140 +based on the understanding that is here. Did you + +521 +00:32:41,140 --> 00:32:44,280 +notice guys? The same idea that I applied here. + +522 +00:32:44,340 --> 00:32:49,030 +Look with me. I came to make a class representing + +523 +00:32:49,030 --> 00:32:51,850 +the pine tree What is the pine tree? It is the + +524 +00:32:51,850 --> 00:32:54,070 +pine tree Why did I choose the pine tree? In + +525 +00:32:54,070 --> 00:32:57,070 +Europe, all the trees have a pine tree The + +526 +00:32:57,070 --> 00:33:02,970 +Christmas tree is also a pine tree Okay, what are + +527 +00:33:02,970 --> 00:33:05,850 +the attributes of this pine tree? I have the size, + +528 +00:33:05,990 --> 00:33:09,530 +height, x and y And I have the weight information + +529 +00:33:09,530 --> 00:33:13,670 +which is for example the texture and color I + +530 +00:33:13,670 --> 00:33:17,760 +separated them In an independent class I named it + +531 +00:33:17,760 --> 00:33:21,640 +BasicTree Let's see how this BasicTree looks like + +532 +00:33:21,640 --> 00:33:24,240 +Of course, I just added it as an explanation of + +533 +00:33:24,240 --> 00:33:28,240 +what is the car I assumed that the car takes a + +534 +00:33:28,240 --> 00:33:30,320 +lot, so I separated it into one class called + +535 +00:33:30,320 --> 00:33:33,540 +BasicTree And here I made it use an attribute of + +536 +00:33:33,540 --> 00:33:37,260 +the BasicTree type And what are these? Sitters and + +537 +00:33:37,260 --> 00:33:40,980 +Gitters Now the constructor of the PineTree came + +538 +00:33:40,980 --> 00:33:42,600 +out When I create the constructor, I have to send + +539 +00:33:42,600 --> 00:33:44,950 +it to whom? Basic Tree and they gave me other + +540 +00:33:44,950 --> 00:33:49,870 +information In the end, I also have a method + +541 +00:33:49,870 --> 00:33:52,770 +called Draw When I draw this tree, how do I draw + +542 +00:33:52,770 --> 00:33:56,030 +it? Of course, the first thing is when I draw it, + +543 +00:33:56,050 --> 00:33:59,270 +I let it draw the trunk of the tree Or it gives + +544 +00:33:59,270 --> 00:34:03,530 +color, this is brown, okay? To draw the trunk of + +545 +00:34:03,530 --> 00:34:07,510 +the tree And this is Draw Fill Rectangle Imagine a + +546 +00:34:07,510 --> 00:34:12,070 +tree trunk as a rectangle. Then let it take a set + +547 +00:34:12,070 --> 00:34:15,990 +color, go to the basic tree and take the color, + +548 +00:34:17,310 --> 00:34:19,690 +which is the color of the tree itself, this + +549 +00:34:19,690 --> 00:34:24,390 +texture. And in the oval, let it draw an oval + +550 +00:34:24,390 --> 00:34:25,030 +shape like this. + +551 +00:34:30,570 --> 00:34:33,310 +Okay, now we've seen these two classes, but we + +552 +00:34:33,310 --> 00:34:35,010 +haven't talked about using them yet, we haven't + +553 +00:34:35,010 --> 00:34:37,570 +created objects from them yet After that, what did + +554 +00:34:37,570 --> 00:34:39,350 +we agree on? From the basic tree, how many do we + +555 +00:34:39,350 --> 00:34:43,970 +want to make? Yes, three So see how I organized + +556 +00:34:43,970 --> 00:34:48,870 +this process, look with me This is the basic + +557 +00:34:48,870 --> 00:34:50,850 +program, let me turn on the program first and show + +558 +00:34:50,850 --> 00:34:54,280 +you what it looks like Okay, it's for placement, so + +559 +00:34:54,280 --> 00:34:58,000 +you don't have to laugh So this button is called + +560 +00:34:58,000 --> 00:35:00,000 +draw tree, when you press it, what do you get? + +561 +00:35:01,440 --> 00:35:05,980 +Imagine it's a tree, okay? These are different + +562 +00:35:05,980 --> 00:35:11,930 +colors, this is a forest Ok, so how do they draw? + +563 +00:35:13,630 --> 00:35:17,590 +Let's see the code, let's draw it. It's a simple + +564 +00:35:17,590 --> 00:35:19,870 +code, I press the button, when I press the button, + +565 +00:35:19,930 --> 00:35:23,530 +what happens? When I press the button, what does + +566 +00:35:23,530 --> 00:35:27,410 +it do? Between x, y, height and z, it does it + +567 +00:35:27,410 --> 00:35:30,010 +randomly. Everything is random, random, random. + +568 +00:35:30,550 --> 00:35:35,470 +This is the size of the screen. And then we come + +569 +00:35:35,470 --> 00:35:39,770 +to the main information, which is the basic data I + +570 +00:35:39,770 --> 00:35:44,430 +assumed that my trees will be either green, + +571 +00:35:45,170 --> 00:35:50,790 +orange, orange or red So I have these three types + +572 +00:35:50,790 --> 00:35:55,550 +stored in a list called tree types And then I want + +573 +00:35:55,550 --> 00:35:58,630 +to choose one of these tree types, so I also made + +574 +00:35:58,630 --> 00:36:02,500 +an index which is what we see in the array, it + +575 +00:36:02,500 --> 00:36:04,620 +makes either index or zero or one or two to choose + +576 +00:36:04,620 --> 00:36:09,940 +one of these types Okay, I chose one of the types, + +577 +00:36:10,320 --> 00:36:13,300 +the index is now three types dot get index, here I + +578 +00:36:13,300 --> 00:36:16,720 +chose the type Then I went and did what guys? I + +579 +00:36:16,720 --> 00:36:20,180 +did factory class, okay? What is in the hand of + +580 +00:36:20,180 --> 00:36:21,780 +the factory class? It is what will create who? + +581 +00:36:22,520 --> 00:36:26,790 +This basic data This is the factory class, I give + +582 +00:36:26,790 --> 00:36:29,610 +it the type of tree it wants and in the end it + +583 +00:36:29,610 --> 00:36:35,590 +returns an object of the type of pine tree. Let's + +584 +00:36:35,590 --> 00:36:40,490 +stop here and see how the factory is made. Look at + +585 +00:36:40,490 --> 00:36:46,670 +the factory with me. The factory actually contains + +586 +00:36:46,670 --> 00:36:51,410 +a hash map. What is it? It contains objects of the + +587 +00:36:51,410 --> 00:36:55,030 +type of basic tree. Okay? And with that, it will + +588 +00:36:55,030 --> 00:36:57,250 +give you the key. So, why did I make this hash + +589 +00:36:57,250 --> 00:37:01,590 +map? We agreed that we will make three objects, + +590 +00:37:01,610 --> 00:37:03,690 +like these three. And they will always be stored + +591 +00:37:03,690 --> 00:37:08,430 +with me. So, I will take from whom? Yes, one of + +592 +00:37:08,430 --> 00:37:10,090 +these three objects. What else will we do other + +593 +00:37:10,090 --> 00:37:13,130 +than these three objects? So, actually, the hash + +594 +00:37:13,130 --> 00:37:16,870 +map represents the list that contains these three + +595 +00:37:16,870 --> 00:37:19,090 +objects. I did not create the list myself. Okay? + +596 +00:37:19,770 --> 00:37:26,740 +So, in the beginning, This list will be empty. Ok + +597 +00:37:26,740 --> 00:37:31,500 +guys, focus with me. I went for the first time, I + +598 +00:37:31,500 --> 00:37:35,480 +pressed the button and told him get a tree and I + +599 +00:37:35,480 --> 00:37:38,240 +sent him the type of tree, one of the three, + +600 +00:37:38,280 --> 00:37:43,880 +either green, red or orange. Ok? Ok, the first + +601 +00:37:43,880 --> 00:37:47,080 +thing will come and look for the type of tree In + +602 +00:37:47,080 --> 00:37:49,200 +the tree map, is it present or not present? Look, + +603 +00:37:49,340 --> 00:37:52,280 +give him the basic tree, give him the red one and + +604 +00:37:52,280 --> 00:37:53,960 +return the basic tree to him. If it is not + +605 +00:37:53,960 --> 00:37:55,020 +present, in the first case, what will it return? + +606 +00:37:55,520 --> 00:37:59,900 +Null. Null means that it is not present. Now look, + +607 +00:38:00,060 --> 00:38:02,460 +what is the existing type? Well, if it is green, + +608 +00:38:03,280 --> 00:38:08,090 +go load it, make a basic tree and give it what? If + +609 +00:38:08,090 --> 00:38:11,470 +it's orange, this is the type I sold it to. Create + +610 +00:38:11,470 --> 00:38:15,470 +an object from a basic tree and give it an orange + +611 +00:38:15,470 --> 00:38:21,050 +color. If it's red, create red and give it a + +612 +00:38:21,050 --> 00:38:23,430 +color. Let's assume that we sold it in the first + +613 +00:38:23,430 --> 00:38:27,470 +green color. The basic tree will be null because + +614 +00:38:27,470 --> 00:38:31,350 +the map is empty. If it is green, it will create a + +615 +00:38:31,350 --> 00:38:34,010 +basic tree and give it green. It will not pass + +616 +00:38:34,010 --> 00:38:36,570 +through this or that tree. It will come here and + +617 +00:38:36,570 --> 00:38:38,310 +say, if the basic tree is not null, go put it + +618 +00:38:38,310 --> 00:38:43,410 +where? In the map. That is, the first time I ask + +619 +00:38:43,410 --> 00:38:47,250 +for a green tree, it will load the object from the + +620 +00:38:47,250 --> 00:38:49,850 +basic tree and put it here. What happened here? + +621 +00:38:51,400 --> 00:38:54,080 +Agreed? Bear with me here. We still haven't built + +622 +00:38:54,080 --> 00:38:57,620 +the pine tree yet, right? We still haven't built + +623 +00:38:57,620 --> 00:39:01,440 +the basic object, the basic tree. Am I right or + +624 +00:39:01,440 --> 00:39:03,400 +not, guys? Okay, we're not done yet. What's our + +625 +00:39:03,400 --> 00:39:06,160 +goal? We want to build this one. This one that I'm + +626 +00:39:06,160 --> 00:39:09,440 +drawing, not this one, right? Am I right or not, + +627 +00:39:09,500 --> 00:39:13,800 +guys? Yes. Come down here. What's this thing? Take + +628 +00:39:13,800 --> 00:39:15,720 +an object from the pine tree and give it to whom? + +629 +00:39:16,760 --> 00:39:19,020 +Basic tree. So he will take an object from this + +630 +00:39:19,020 --> 00:39: + +667 +00:41:39,810 --> 00:41:41,650 +there is no problem, but what I did is that it + +668 +00:41:41,650 --> 00:41:45,310 +does not download the texture until I need it, + +669 +00:41:45,350 --> 00:41:47,170 +okay? Do you understand how? I mean, the first + +670 +00:41:47,170 --> 00:41:50,370 +time I want it, I create it, you can relax if you + +671 +00:41:50,370 --> 00:41:52,310 +want to create them in the first time, okay? But I + +672 +00:41:52,310 --> 00:41:55,250 +said no, when I need it in the moment I need it, I + +673 +00:41:55,250 --> 00:41:58,690 +create it, okay? Now go back and complete in the + +674 +00:41:58,690 --> 00:42:05,490 +demo and draw the tree, go back again and so on. It + +675 +00:42:05,490 --> 00:42:08,990 +keeps using the existing object. And the proof + +676 +00:42:08,990 --> 00:42:10,850 +that it is using, let me show you the word run. + +677 +00:42:13,690 --> 00:42:19,490 +Look what is printed on the screen. Now Hydro tree + +678 +00:42:19,490 --> 00:42:21,810 +drew a tree. It tells me the number of basic + +679 +00:42:21,810 --> 00:42:31,600 +trees. one number of pine trees one number of pine + +680 +00:42:31,600 --> 00:42:32,620 +trees one + +681 +00:42:40,220 --> 00:42:42,340 +Okay, the orange is not present, so I will create + +682 +00:42:42,340 --> 00:42:45,720 +an orange basic tree and then create a pine tree + +683 +00:42:45,720 --> 00:42:48,780 +that uses this orange. Okay, so the number of the + +684 +00:42:48,780 --> 00:42:52,060 +basic tree is 2 and the pine tree is 2. Again, + +685 +00:42:52,580 --> 00:42:54,840 +this is orange. Notice that what is left of the + +686 +00:42:54,840 --> 00:42:58,320 +basic tree? 2, it did not change, but the pine + +687 +00:42:58,320 --> 00:43:02,200 +tree is 3. Press again, this is green. The basic + +688 +00:43:02,200 --> 00:43:07,400 +tree became 3.and the pine tree is 4, from now on + +689 +00:43:07,400 --> 00:43:12,200 +the basic tree remains 1 and the pine tree remains + +690 +00:43:12,200 --> 00:43:17,780 +3 and the pine tree remains 4 so the heavy objects + +691 +00:43:17,780 --> 00:43:22,800 +are made from only 3 objects, but the pine tree + +692 +00:43:22,800 --> 00:43:28,410 +itself. Okay? I did a lot from I to X and Y, but I + +693 +00:43:28,410 --> 00:43:32,290 +used the same information. That's why I save a lot + +694 +00:43:32,290 --> 00:43:37,570 +of memory. And this flyweight can't do any game + +695 +00:43:37,570 --> 00:43:42,010 +except using it. Imagine the size of the hammock + +696 +00:43:42,010 --> 00:43:45,150 +you're going to make if you want to make a forest + +697 +00:43:45,150 --> 00:43:47,650 +with a thousand trees and each tree has its own + +698 +00:43:47,650 --> 00:43:50,990 +object and the texture of each tree has its own + +699 +00:43:50,990 --> 00:43:55,340 +texture. This way we can save a lot of space in + +700 +00:43:55,340 --> 00:44:01,060 +our memory by using Flyweight. Is it clear guys? + +701 +00:44:02,360 --> 00:44:08,130 +Let's go back to the slides. Flyweightis a + +702 +00:44:08,130 --> 00:44:11,530 +structural design pattern that lets you fit more + +703 +00:44:11,530 --> 00:44:16,470 +objects into the available amount of RAM by + +704 +00:44:16,470 --> 00:44:20,970 +sharing + +705 +00:44:20,970 --> 00:44:23,730 +common parts of state between multiple objects + +706 +00:44:30,450 --> 00:44:37,210 +You shared common parts of + +707 +00:44:37,210 --> 00:44:43,190 +state + +708 +00:44:43,190 --> 00:44:47,250 +between multiple objects instead of keeping all of + +709 +00:44:47,250 --> 00:44:53,890 +the data in each object. Now, + +710 +00:44:56,410 --> 00:44:58,110 +this is a problem, this code still has a problem. + +711 +00:44:59,120 --> 00:45:01,060 +What is the problem? Because it wants to make a + +712 +00:45:01,060 --> 00:45:04,140 +game with particles, which are moving objects, + +713 +00:45:05,100 --> 00:45:06,600 +bullets for example. + +714 +00:45:09,030 --> 00:45:12,770 +Each bullet has an object that represents it. This + +715 +00:45:12,770 --> 00:45:14,690 +object is the information of the bullet. What does + +716 +00:45:14,690 --> 00:45:22,230 +it include? Coordinates, vector, speed, color, and + +717 +00:45:22,230 --> 00:45:25,990 +sprite. Sprite is the 3D model chart that draws + +718 +00:45:25,990 --> 00:45:30,610 +the bullet. And there is method move and draw. Of + +719 +00:45:30,610 --> 00:45:32,010 +course, the bullet does not move. + +720 +00:45:34,780 --> 00:45:36,680 +These information will continue to change, for + +721 +00:45:36,680 --> 00:45:38,840 +example, the vector and coordinates will certainly + +722 +00:45:38,840 --> 00:45:42,320 +continue to change continuously. But the sprite, + +723 +00:45:42,460 --> 00:45:44,400 +which is the shape of the bullet and its 3D model, + +724 +00:45:44,960 --> 00:45:49,720 +remains almost constant. So if you made, let's + +725 +00:45:49,720 --> 00:45:52,760 +say, this is the estimated volume of the parts, + +726 +00:45:52,900 --> 00:45:54,800 +for example, the coordinates are 8 bytes, the + +727 +00:45:54,800 --> 00:45:57,520 +vector is 16 bytes, the speed is 4 bytes, the + +728 +00:45:57,520 --> 00:46:02,360 +color is 4 bytes, the sprite is 20 kilobytes. So + +729 +00:46:02,360 --> 00:46:06,520 +if you want to make a million bullets, Okay, a + +730 +00:46:06,520 --> 00:46:09,320 +million bullets in 21 kilobytes approximately, the + +731 +00:46:09,320 --> 00:46:12,200 +total size of this will come out to you to make a + +732 +00:46:12,200 --> 00:46:14,240 +million bullets and put them in the same scene + +733 +00:46:14,240 --> 00:46:16,360 +Okay, someone will tell me that there is a million + +734 +00:46:16,360 --> 00:46:19,380 +bullets in the same scene, it is possible Rambo or + +735 +00:46:19,380 --> 00:46:21,580 +John Wick, it is not a joke. Okay, you start + +736 +00:46:21,580 --> 00:46:24,300 +putting a million bullets and none of them hit you + +737 +00:46:24,300 --> 00:46:29,760 +Okay, how big are they? They are 21 gigabytes in + +738 +00:46:29,760 --> 00:46:30,140 +memory + +739 +00:46:32,950 --> 00:46:35,930 +Now, what is the solution to this problem? Let's + +740 +00:46:35,930 --> 00:46:39,550 +see here, on closer inspection of the particle + +741 +00:46:39,550 --> 00:46:44,970 +class, you may + +742 +00:46:44,970 --> 00:46:48,510 +notice that the color and sprite fields consume a + +743 +00:46:48,510 --> 00:46:51,670 +lot of memory, a lot more memory than other + +744 +00:46:51,670 --> 00:46:51,990 +fields. + +745 +00:46:57,600 --> 00:47:00,760 +What's worse is that these two fields store almost + +746 +00:47:00,760 --> 00:47:01,820 +identical data. + +747 +00:47:06,440 --> 00:47:12,900 +For example, + +748 +00:47:13,140 --> 00:47:16,300 +all bullets have the same color and sprite. + +749 +00:47:24,080 --> 00:47:26,580 +because the particle represents elements that + +750 +00:47:26,580 --> 00:47:29,480 +don't change which are for example the color and + +751 +00:47:29,480 --> 00:47:33,940 +the sprite and the moving particle represents the + +752 +00:47:33,940 --> 00:47:38,160 +different elements that change continuously in + +753 +00:47:38,160 --> 00:47:41,340 +addition to an object of the particle type here, + +754 +00:47:41,460 --> 00:47:44,000 +not like here, I made a tree and inside it an + +755 +00:47:44,000 --> 00:47:46,320 +attribute from whom? from basic tree, it separated + +756 +00:47:46,320 --> 00:47:48,240 +between them what is the use of this separation? + +757 +00:47:48,840 --> 00:47:51,800 +because after that I want to make one object of + +758 +00:47:51,800 --> 00:47:52,100 +this + +759 +00:48:09,850 --> 00:48:15,490 +other parts of a particle state such + +760 +00:48:15,490 --> 00:48:19,110 +as coordinates, movement vector and speed are + +761 +00:48:19,110 --> 00:48:22,470 +unique to each particle. means that the movement + +762 +00:48:22,470 --> 00:48:25,710 +and speed change for each particle, each particle + +763 +00:48:25,710 --> 00:48:28,390 +has its own information about it, but the sprite + +764 +00:48:28,390 --> 00:48:32,110 +and the color are one and the same after all, the + +765 +00:48:32,110 --> 00:48:35,150 +values of these fields change over time, these + +766 +00:48:35,150 --> 00:48:38,170 +coordinates and vectors change with time because + +767 +00:48:38,170 --> 00:48:41,410 +they interact with each other this data represents + +768 +00:48:41,410 --> 00:48:44,230 +the always changing context in which the particle + +769 +00:48:44,230 --> 00:48:47,310 +exists while the color and sprite remain constant + +770 +00:48:47,310 --> 00:48:52,350 +for each particle. this constant data of an object + +771 +00:48:52,350 --> 00:49:01,370 +is usually called intrinsic state. It + +772 +00:49:01,370 --> 00:49:04,770 +lives + +773 +00:49:04,770 --> 00:49:05,590 +with the object. + +774 +00:49:08,370 --> 00:49:11,590 +It lives within the object, other objects can only + +775 +00:49:11,590 --> 00:49:13,450 +read it, not change it. + +776 +00:49:19,250 --> 00:49:23,730 +The rest of the object state, often called from the + +777 +00:49:23,730 --> 00:49:26,930 +outside by the other object, is called the + +778 +00:49:26,930 --> 00:49:28,010 +extrinsic state. + +779 +00:49:45,230 --> 00:49:49,590 +The flight weight pattern suggests that you stop + +780 +00:49:49,590 --> 00:49:53,170 +storing extrinsic state inside the object. + +781 +00:50:08,360 --> 00:50:11,080 +Stop storing the extrinsic state inside the + +782 +00:50:11,080 --> 00:50:13,480 +object. Instead, you should pass this state to + +783 +00:50:13,480 --> 00:50:16,500 +specific methods which rely on it. Only the + +784 +00:50:16,500 --> 00:50:19,240 +intrinsic state stays within the object. + +785 +00:50:25,960 --> 00:50:29,800 +As a result, you would need fewer of these + +786 +00:50:29,800 --> 00:50:34,640 +objects.these objects عائد عمين على آخر ذكر ل + +787 +00:50:34,640 --> 00:50:38,860 +intrinsic state. يعني intrinsic هتحتاج منهم عدد + +788 +00:50:38,860 --> 00:50:43,400 +قليل intrinsic. هذا ال constant اللي ملزمش هتغير + +789 +00:50:43,400 --> 00:50:46,840 +بشكل كبير اللي ممثل في مثالنا ال green و ال red. + +790 +00:50:46,840 --> 00:50:51,140 +تمام هدولة انت ملزمك fewer number of objects. هذا + +791 +00:50:51,140 --> 00:50:54,720 +الكلام اللي حاكلك عليه since they only differ in + +792 +00:50:54,720 --> 00:50:57,850 +the intrinsic state, which has much fewer + +793 +00:50:57,850 --> 00:51:02,890 +variations than the extrinsic. Much fewer + +794 +00:51:02,890 --> 00:51:04,990 +variations. What does variations mean? + +795 +00:51:05,630 --> 00:51:08,470 +Differences. Differences are mostly present in the + +796 +00:51:08,470 --> 00:51:12,270 +extrinsic, which are x, y, height, and size. That + +797 +00:51:12,270 --> 00:51:14,970 +is why I left them out, so that I can constantly + +798 +00:51:14,970 --> 00:51:17,790 +change them for each new object that I make. But + +799 +00:51:17,790 --> 00:51:20,610 +the intrinsic, I left only one copy or two copies + +800 +00:51:20,610 --> 00:51:28,760 +of it. And this is the diagram after the change. Now + +801 +00:51:28,760 --> 00:51:31,980 +this same particle has two parts, one is a + +802 +00:51:31,980 --> 00:51:35,160 +particle and the other is a moving particle. And + +803 +00:51:35,160 --> 00:51:37,940 +the moving particle uses an object from which? + +804 +00:51:38,540 --> 00:51:41,560 +From a particle. And notice here in the game I used + +805 +00:51:41,560 --> 00:51:44,900 +two lists, one is called moving particle and the + +806 +00:51:44,900 --> 00:51:49,440 +other is called particle. Actually this particle + +807 +00:51:49,440 --> 00:51:53,320 +has how many? Two, three, four, this is like the + +808 +00:51:53,320 --> 00:51:56,700 +map I have here. But the moving particle will have + +809 +00:51:56,700 --> 00:52:00,120 +a number that can reach millions or thousands. + +810 +00:52:04,280 --> 00:52:07,300 +Okay? This brings me to the final calculation. + +811 +00:52:07,980 --> 00:52:13,300 +Okay? How much does RAM consume? Actually, here I + +812 +00:52:13,300 --> 00:52:15,920 +created an object, one of whom? From a particle. + +813 +00:52:16,300 --> 00:52:21,250 +What is the size of this object? 21 kilobytes. But + +814 +00:52:21,250 --> 00:52:24,310 +it will create one object from which? From a + +815 +00:52:24,310 --> 00:52:26,870 +particle, which is this one, the red one is the + +816 +00:52:26,870 --> 00:52:32,670 +particle, this is the empty one, which is the + +817 +00:52:32,670 --> 00:52:34,630 +moving particle. It will create millions of them. + +818 +00:52:34,790 --> 00:52:38,090 +Notice that all these millions will use the same + +819 +00:52:38,090 --> 00:52:45,030 +mean. These millions are small sizes because each + +820 +00:52:45,030 --> 00:52:47,110 +one of them has coordinates, vector, speed and + +821 +00:52:47,110 --> 00:52:51,570 +particle. Each one of them is 32 bytes in size. So + +822 +00:52:51,570 --> 00:52:57,350 +each one of them is 32 megabytes in size. And each + +823 +00:52:57,350 --> 00:53:01,940 +one of them is only 21 kilos in size. For whom? For + +824 +00:53:01,940 --> 00:53:04,680 +the particle. So the total size of the memory is + +825 +00:53:04,680 --> 00:53:08,700 +32MB + +826 +00:53:08,700 --> 00:53:13,340 +instead of 21GB + +827 +00:53:13,340 --> 00:53:17,180 +in the previous case. Is it clear? Is there any + +828 +00:53:17,180 --> 00:53:19,980 +question or clarification? God bless you all. diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/fz-PJyaQdF0.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/fz-PJyaQdF0.srt new file mode 100644 index 0000000000000000000000000000000000000000..0a8c55bb56e02d1c0fa030e54bab025b61115b94 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/fz-PJyaQdF0.srt @@ -0,0 +1,2915 @@ + +1 +00:00:05,310 --> 00:00:09,370 +Ok guys, peace be upon you. In the last lecture + +2 +00:00:09,370 --> 00:00:13,350 +guys, we took two design patterns. The first one + +3 +00:00:13,350 --> 00:00:16,610 +was a template method design pattern. And the goal + +4 +00:00:16,610 --> 00:00:21,350 +of it is that I want to make an application or for + +5 +00:00:21,350 --> 00:00:25,010 +example a library through which anyone who wants + +6 +00:00:25,010 --> 00:00:27,910 +to use this library is forced to follow certain + +7 +00:00:27,910 --> 00:00:32,130 +steps of the algorithm, okay? But keep in mind that + +8 +00:00:32,130 --> 00:00:35,500 +each step determines its details. And we saw through + +9 +00:00:35,500 --> 00:00:37,360 +the example of text processing that there are + +10 +00:00:37,360 --> 00:00:41,100 +steps that are fixed to process texts in sequence. + +11 +00:00:42,060 --> 00:00:46,740 +I want anyone who wants to make a text processor + +12 +00:00:46,740 --> 00:00:49,420 +to stick to these steps, but can change them. + +13 +00:00:50,280 --> 00:00:54,260 +Details of each step, okay? And this is what we + +14 +00:00:54,260 --> 00:00:56,020 +saw through the template method, which determines + +15 +00:00:56,020 --> 00:00:58,380 +a certain form and order to implement the steps, + +16 +00:00:58,540 --> 00:01:02,500 +but you can change the details of the steps by + +17 +00:01:02,500 --> 00:01:06,860 +implementing abstract methods. The second design + +18 +00:01:06,860 --> 00:01:10,200 +pattern that we saw in the previous lecture, which + +19 +00:01:10,200 --> 00:01:13,040 +is the strategy pattern, which is also one of the + +20 +00:01:13,040 --> 00:01:16,400 +most important design patterns because it has many + +21 +00:01:16,400 --> 00:01:19,300 +applications. Actually, the strategy pattern I use + +22 +00:01:19,300 --> 00:01:21,160 +when I have an application that changes its + +23 +00:01:21,160 --> 00:01:24,700 +behavior during runtime. What does it mean? While it + +24 +00:01:24,700 --> 00:01:26,100 +is running, sometimes it will make the application + +25 +00:01:26,100 --> 00:01:29,220 +work in a way and then change the way it works in + +26 +00:01:29,220 --> 00:01:33,040 +another way, okay? So when we started the previous + +27 +00:01:33,040 --> 00:01:36,380 +lecture on the example of the mobile application + +28 +00:01:36,380 --> 00:01:38,520 +changing depending on the battery status or the + +29 +00:01:38,520 --> 00:01:41,220 +status of the internet connection, we used to make + +30 +00:01:41,220 --> 00:01:43,560 +a method which is execute or process for example + +31 +00:01:43,560 --> 00:01:48,140 +which takes an ID number which shows the status + +32 +00:01:49,410 --> 00:01:51,990 +Because of this number, it changes the code it + +33 +00:01:51,990 --> 00:01:53,890 +wants to execute, so we made a series of if-else + +34 +00:01:53,890 --> 00:01:57,270 +statements. But this method is bad because if I + +35 +00:01:57,270 --> 00:02:00,310 +want to add a new status and a new algorithm to + +36 +00:02:00,310 --> 00:02:03,610 +execute it, it means I have to modify the if-else + +37 +00:02:03,610 --> 00:02:08,150 +statements to add the code of the new algorithm. So + +38 +00:02:08,150 --> 00:02:11,090 +in order to avoid making changes to the code, the + +39 +00:02:11,090 --> 00:02:13,950 +idea of the strategy pattern was that if the + +40 +00:02:13,950 --> 00:02:16,350 +following program works with more than three or + +41 +00:02:16,350 --> 00:02:18,750 +four algorithms alternating during the runtime, + +42 +00:02:18,890 --> 00:02:20,830 +each algorithm should separate it into separate + +43 +00:02:20,830 --> 00:02:24,990 +classes. As is clear in today's diagram of the + +44 +00:02:24,990 --> 00:02:29,310 +strategy pattern, that I have a concrete strategy + +45 +00:02:29,310 --> 00:02:32,010 +A, concrete strategy B, concrete strategy C, these + +46 +00:02:32,010 --> 00:02:35,110 +represent different algorithms for implementation. + +47 +00:02:38,740 --> 00:02:42,760 +Now all these algorithms to make them one go and + +48 +00:02:42,760 --> 00:02:45,580 +make an interface called IStrategy and there is a + +49 +00:02:45,580 --> 00:02:48,780 +method called BehaviorInterface. Now all of them + +50 +00:02:48,780 --> 00:02:51,760 +will implement the behavior interface but in a + +51 +00:02:51,760 --> 00:02:53,960 +different way so that each one has different + +52 +00:02:53,960 --> 00:02:56,500 +algorithms. Well, it turns out that we encapsulated + +53 +00:02:56,500 --> 00:03:01,560 +each algorithm into a class. How do I use them? + +54 +00:03:01,740 --> 00:03:03,260 +Because this is the context, this is my + +55 +00:03:03,260 --> 00:03:06,260 +application that will execute the algorithm and + +56 +00:03:06,260 --> 00:03:09,960 +change the execution during the runtime. Now, I + +57 +00:03:09,960 --> 00:03:13,160 +actually have a method called some method that + +58 +00:03:13,160 --> 00:03:17,460 +executes the code. It will actually execute one of + +59 +00:03:25,280 --> 00:03:30,480 +The idea is that he has an attribute called a + +60 +00:03:30,480 --> 00:03:33,680 +strategy of the type I strategy, which accepts the + +61 +00:03:33,680 --> 00:03:35,960 +type of interface. Since it accepts the type of + +62 +00:03:35,960 --> 00:03:38,380 +interface, it means that I can send any unit to + +63 +00:03:38,380 --> 00:03:41,350 +any point in time. Of course here I have 6 methods + +64 +00:03:41,350 --> 00:03:46,730 +through which I will send the strategy. All that + +65 +00:03:46,730 --> 00:03:48,750 +will happen is that when I say some method, it + +66 +00:03:48,750 --> 00:03:52,650 +will go to the object of the strategy and claim + +67 +00:03:52,650 --> 00:03:56,130 +that to the behavior interface I want to change + +68 +00:03:56,130 --> 00:03:58,270 +the execution method and once I send the strategy + +69 +00:03:58,270 --> 00:04:01,450 +to A and I tell him I'm going to implement the sum + +70 +00:04:01,450 --> 00:04:04,850 +method and then I send him strategy B and I + +71 +00:04:04,850 --> 00:04:06,510 +implement the sum method so that's what happens + +72 +00:04:06,510 --> 00:04:08,590 +during the runtime, I send him the algorithm that + +73 +00:04:08,590 --> 00:04:12,670 +he wants to work on and he implements it. The idea + +74 +00:04:12,670 --> 00:04:14,530 +now is that if I want to add a new algorithm, all + +75 +00:04:14,530 --> 00:04:17,330 +I need to do is create a new class and implement + +76 +00:04:17,330 --> 00:04:21,120 +it the interface and I put in it the new code of + +77 +00:04:21,120 --> 00:04:23,160 +the algorithm and then I bench the object from it + +78 +00:04:23,160 --> 00:04:25,260 +and I send it to whom? To the context which + +79 +00:04:25,260 --> 00:04:27,640 +represents my application. So actually the + +80 +00:04:27,640 --> 00:04:30,480 +application will behave like this and I won't need + +81 +00:04:30,480 --> 00:04:32,940 +to make any changes to it. Whenever I want to make + +82 +00:04:32,940 --> 00:04:35,080 +a new algorithm, I add a new class but I don't + +83 +00:04:35,080 --> 00:04:37,560 +modify any line on the written code. + +84 +00:04:40,650 --> 00:04:42,810 +Now, this is an explanation of the UML diagram + +85 +00:04:42,810 --> 00:04:46,190 +that we saw a while ago. Now, in addition to the + +86 +00:04:46,190 --> 00:04:47,850 +example that we took in the previous lecture which + +87 +00:04:47,850 --> 00:04:50,030 +talks about mobile applications and the modes in + +88 +00:04:50,030 --> 00:04:52,430 +which they work. Let's see another example that + +89 +00:04:52,430 --> 00:04:55,510 +talks about robots applications. They want to make + +90 +00:04:55,510 --> 00:04:57,690 +a robot application or similar to the previous + +91 +00:04:57,690 --> 00:05:01,060 +lecture in computer player. Now, the player in the + +92 +00:05:01,060 --> 00:05:03,220 +computer or the robot, for example, sometimes it + +93 +00:05:03,220 --> 00:05:04,640 +is an attacker, sometimes it is a defender, + +94 +00:05:04,840 --> 00:05:07,580 +sometimes it is in a normal situation, so we want + +95 +00:05:07,580 --> 00:05:11,560 +to see how this robot can change the code or the + +96 +00:05:11,560 --> 00:05:14,660 +state in which it works during the runtime by + +97 +00:05:14,660 --> 00:05:18,820 +applying the strategy pattern. Let's consider an + +98 +00:05:18,820 --> 00:05:22,580 +application used to simulate and study robots + +99 +00:05:22,580 --> 00:05:31,040 +interaction. For the + +100 +00:05:31,040 --> 00:05:33,820 +beginning, a simple application is created to + +101 +00:05:33,820 --> 00:05:41,660 +simulate an arena where robots are interacting. We + +102 +00:05:41,660 --> 00:05:46,270 +have the following classes. Now, the first thing is + +103 +00:05:46,270 --> 00:05:50,030 +the UML diagram for the code to be executed, but + +104 +00:05:50,030 --> 00:05:52,150 +before we see the UML diagram, let's look at the + +105 +00:05:52,150 --> 00:05:52,670 +code itself. + +106 +00:05:57,040 --> 00:05:58,760 +As I said, the robot will work with different + +107 +00:05:58,760 --> 00:06:02,000 +algorithms. The algorithms that the robot will + +108 +00:06:02,000 --> 00:06:03,800 +work with are aggressive, + +109 +00:06:06,460 --> 00:06:11,780 +defensive and defensive. And each one of them has + +110 +00:06:11,780 --> 00:06:14,400 +a different code than the other. So he tells me to + +111 +00:06:14,400 --> 00:06:18,980 +make all three algorithms in a class and make them + +112 +00:06:18,980 --> 00:06:21,440 +all the same type by implementing an interface + +113 +00:06:21,440 --> 00:06:25,240 +called I behavior so I made an interface called I + +114 +00:06:25,240 --> 00:06:28,200 +behavior there is a method called move command + +115 +00:06:28,200 --> 00:06:31,280 +because each one implemented the move command in a + +116 +00:06:31,280 --> 00:06:34,500 +different way the aggressive behavior of course I + +117 +00:06:34,500 --> 00:06:37,900 +just wrote a message if find another robot attack + +118 +00:06:37,900 --> 00:06:40,800 +it means what will this do? it will attack the + +119 +00:06:40,800 --> 00:06:44,560 +second defensive behavior also implemented the + +120 +00:06:44,560 --> 00:06:47,380 +move command and this is a message if find another + +121 +00:06:47,380 --> 00:06:53,460 +robot run from it this is defensive the normal By + +122 +00:06:53,460 --> 00:06:55,480 +printing the message, if you find another robot, + +123 +00:06:55,840 --> 00:06:59,040 +ignore it. So these are three algorithms, each + +124 +00:06:59,040 --> 00:07:01,020 +algorithm is present in the class. + +125 +00:07:04,460 --> 00:07:07,940 +Now this class is the robot, which is my app that + +126 +00:07:07,940 --> 00:07:10,160 +I want it to work in different situations during + +127 +00:07:10,160 --> 00:07:13,220 +execution. So this is the class robot, and one of + +128 +00:07:13,220 --> 00:07:15,960 +the attributes in the class robot is what? The eye + +129 +00:07:15,960 --> 00:07:19,440 +behavior. In the end, it will take one attribute of + +130 +00:07:19,440 --> 00:07:21,820 +the eye behavior type because in one moment it + +131 +00:07:21,820 --> 00:07:25,250 +will work in one way, okay? And this is the + +132 +00:07:25,250 --> 00:07:27,270 +attribute name for the robot, just to give it a + +133 +00:07:27,270 --> 00:07:30,150 +name. This is the constructor of the robot, and + +134 +00:07:30,150 --> 00:07:33,470 +since I have an attribute of the type IBehaviour, + +135 +00:07:33,510 --> 00:07:36,550 +I have to make it a set method, and this is a get + +136 +00:07:36,550 --> 00:07:40,150 +method, it is not a must. The set behavior takes an + +137 +00:07:40,150 --> 00:07:42,910 +object of the type IBehaviour, the interface type, + +138 +00:07:43,050 --> 00:07:47,190 +this means that we can send any object implemented + +139 +00:07:47,190 --> 00:07:51,000 +to the interface. Now, this is the method move that + +140 +00:07:51,000 --> 00:07:54,820 +runs the robot. Actually, when I say move, it will + +141 +00:07:54,820 --> 00:07:57,220 +print this message that the robot in this name + +142 +00:07:57,220 --> 00:08:00,600 +based on current position, the behavior object + +143 +00:08:00,600 --> 00:08:03,560 +decides the next move to be, for example, it goes + +144 +00:08:03,560 --> 00:08:08,580 +to behavior and executes move. Because the idea is + +145 +00:08:08,580 --> 00:08:10,600 +that I want to change the behavior, I have to make + +146 +00:08:10,600 --> 00:08:14,060 +a set behavior and send it a new behavior and then + +147 +00:08:14,060 --> 00:08:19,800 +execute the move. As we will see in the main method + +148 +00:08:19,800 --> 00:08:22,700 +in the application. Because in the main method I + +149 +00:08:22,700 --> 00:08:28,490 +made three robots R1, R2, R3. They want to make + +150 +00:08:28,490 --> 00:08:30,890 +them work, but before they make them work, they + +151 +00:08:30,890 --> 00:08:33,910 +have to send a behavior to each one of them. So + +152 +00:08:33,910 --> 00:08:36,250 +the first one sent a set behavior and created an + +153 +00:08:36,250 --> 00:08:40,630 +object of a kind of aggressive behavior. The + +154 +00:08:40,630 --> 00:08:42,410 +second one sent a set behavior of a kind of + +155 +00:08:42,410 --> 00:08:43,870 +defensive behavior, and the third one sent a set + +156 +00:08:43,870 --> 00:08:46,590 +behavior of a kind of normal behavior. It sent to + +157 +00:08:46,590 --> 00:08:48,850 +each one of them an algorithm that will work as a + +158 +00:08:48,850 --> 00:08:51,660 +class. and then as an object from the class + +159 +00:08:51,660 --> 00:08:56,160 +IBehaviour and then they say R1 move move move R2 + +160 +00:08:56,160 --> 00:09:00,760 +move R3 move each one runs its own behavior until + +161 +00:09:00,760 --> 00:09:05,940 +it wants to change the behavior. He went to R1 and + +162 +00:09:05,940 --> 00:09:08,300 +told him set behavior, a new defensive behavior. + +163 +00:09:08,440 --> 00:09:11,960 +It was aggressive, so he made it defensive. The + +164 +00:09:11,960 --> 00:09:14,260 +second one was defensive, so he made it + +165 +00:09:14,260 --> 00:09:16,460 +aggressive. The third one, he didn't change + +166 +00:09:16,460 --> 00:09:19,740 +anything about it. Then he went back and told him + +167 +00:09:19,740 --> 00:09:24,490 +R1 move, R2 move, R3 move. This is how I change the + +168 +00:09:24,490 --> 00:09:26,630 +algorithm that I work with and I send it to it + +169 +00:09:26,630 --> 00:09:29,050 +from outside and I change it whenever I want and I + +170 +00:09:29,050 --> 00:09:31,350 +want to make a new algorithm, I will not change + +171 +00:09:31,350 --> 00:09:33,730 +any line where? In the robot, but I make an + +172 +00:09:33,730 --> 00:09:35,890 +implement for I behavior and I put the new code, + +173 +00:09:36,790 --> 00:09:40,430 +okay? And this is how we have changed or completed + +174 +00:09:40,430 --> 00:09:45,810 +the strategy pattern. As I said, the strategy is + +175 +00:09:45,810 --> 00:09:48,490 +important to use and use a lot because this + +176 +00:09:48,490 --> 00:09:50,670 +scenario that the application changes its + +177 +00:09:50,670 --> 00:09:53,170 +implementation during the runtime can be found in + +178 +00:09:53,170 --> 00:09:55,550 +many applications. So instead of using if + +179 +00:09:55,550 --> 00:09:58,850 +statements, each block in the if statement is + +180 +00:09:58,850 --> 00:10:00,710 +separated by a separate algorithm. + +181 +00:10:14,000 --> 00:10:17,260 +Okay guys, now we will come to the command, to the + +182 +00:10:17,260 --> 00:10:20,480 +new design pattern which is called command pattern. + +183 +00:10:20,480 --> 00:10:24,420 +It is a simple design pattern, you will notice + +184 +00:10:24,420 --> 00:10:27,060 +that it is similar even to the previous design + +185 +00:10:27,060 --> 00:10:32,350 +patterns, but they separated it or made it as an + +186 +00:10:32,350 --> 00:10:34,430 +independent design pattern because it has a + +187 +00:10:34,430 --> 00:10:36,870 +different goal. It has another goal and benefits + +188 +00:10:36,870 --> 00:10:39,590 +that we will talk about now. So what is the word + +189 +00:10:39,590 --> 00:10:45,810 +command? command? command, okay. Now, in short, we + +190 +00:10:45,810 --> 00:10:50,350 +use the command pattern in cases where we want to + +191 +00:10:50,350 --> 00:10:53,630 +make a queue of commands to implement these + +192 +00:10:53,630 --> 00:10:57,930 +commands later. I'll give you an example. Sometimes + +193 +00:10:57,930 --> 00:11:03,490 +in applications, we need to execute commands, but + +194 +00:11:03,490 --> 00:11:08,330 +we don't execute them instantly. We need to store + +195 +00:11:08,330 --> 00:11:10,830 +these commands so that + +223 +00:12:35,420 --> 00:12:38,650 +front of a scenario where I have ordersWith + +224 +00:12:38,650 --> 00:12:40,670 +certain information or certain details that I want + +225 +00:12:40,670 --> 00:12:41,950 +it to be implemented, but I don't want to + +226 +00:12:41,950 --> 00:12:43,130 +implement it now, I want to postpone its + +227 +00:12:43,130 --> 00:12:47,230 +implementation for later. Okay? So we need a way + +228 +00:12:47,230 --> 00:12:50,980 +that the commands are calmI store it in a certain + +229 +00:12:50,980 --> 00:12:53,600 +way so that I can implement it again and when I + +230 +00:12:53,600 --> 00:12:55,540 +implement it again, I want to implement it again + +231 +00:12:55,540 --> 00:13:00,020 +easily so that I don't have to overdo it to + +232 +00:13:00,020 --> 00:13:02,040 +remember every detail, not every detail, we said + +233 +00:13:02,040 --> 00:13:04,380 +that I have to have specific details to implement + +234 +00:13:04,380 --> 00:13:08,520 +them, so any scenario like that, I have to make + +235 +00:13:08,520 --> 00:13:12,160 +commands and implement the commands later, okay? I + +236 +00:13:12,160 --> 00:13:15,840 +have to have the command pattern in itAnother + +237 +00:13:15,840 --> 00:13:22,460 +common pattern is undo + +238 +00:13:22,460 --> 00:13:27,590 +and redoHave you tried undo and redo before? Have + +239 +00:13:27,590 --> 00:13:29,590 +you gone to the office in Word? Do you have a + +240 +00:13:29,590 --> 00:13:33,290 +review arrow? Right or wrong? Ctrl-Z and Ctrl-Y, + +241 +00:13:33,510 --> 00:13:37,970 +right? Or this ASSUMption? Have you found yourself + +242 +00:13:37,970 --> 00:13:40,630 +typing in Word and changing the coordination and + +243 +00:13:40,630 --> 00:13:43,110 +changing the colors of the line? It is possible + +244 +00:13:43,110 --> 00:13:46,410 +that when you click on this arrow, each click + +245 +00:13:46,410 --> 00:13:50,630 +returns to the previous step. And then each click + +246 +00:13:50,630 --> 00:13:53,130 +here returns to the steps that have been done. + +247 +00:13:54,210 --> 00:13:56,730 +Have you ever wondered how to do undo and redo? + +248 +00:13:56,910 --> 00:13:59,490 +Have you ever tried to do it? How do you execute + +249 +00:13:59,490 --> 00:14:02,910 +undo and redo? Have you tried to do it? Okay, you + +250 +00:14:02,910 --> 00:14:04,490 +will say stack, I know how to put it in the stack + +251 +00:14:04,490 --> 00:14:07,230 +and get it, but have you ever tried to do it in a + +252 +00:14:07,230 --> 00:14:09,950 +specific application? We want to try, of course, + +253 +00:14:10,670 --> 00:14:14,390 +the command pattern helps us execute the process + +254 +00:14:14,390 --> 00:14:17,790 +of undo and redo because it is actually what? + +255 +00:14:18,990 --> 00:14:22,720 +Commands that have been executed currentlyBut at + +256 +00:14:22,720 --> 00:14:24,240 +the same time, I took and stored the same commands + +257 +00:14:24,240 --> 00:14:24,800 +that were executed. + +258 +00:14:27,590 --> 00:14:30,970 +Okay, why did I save it? So that I can go back to + +259 +00:14:30,970 --> 00:14:36,710 +it and run it again, for example, to do redo So + +260 +00:14:36,710 --> 00:14:40,430 +this example, undo and redo also includes that you + +261 +00:14:40,430 --> 00:14:44,250 +save the commands that have been executed so that + +262 +00:14:44,250 --> 00:14:49,530 +later you can go back to it or run it again Also, + +263 +00:14:49,650 --> 00:14:52,110 +we will take an example, we will run it, we will + +264 +00:14:52,110 --> 00:14:54,170 +see how to do undo and redo on a drawing program + +265 +00:14:54,980 --> 00:14:56,680 +But this is the next lecture. For example, we will + +266 +00:14:56,680 --> 00:15:00,020 +make the artist draw with the mouse and then we + +267 +00:15:00,020 --> 00:15:02,500 +will tell him to undo it. So you will find that + +268 +00:15:02,500 --> 00:15:06,000 +the drawing itself is repeated part by part and he + +269 +00:15:06,000 --> 00:15:09,780 +wants to redraw it again. Ok? So the command + +270 +00:15:09,780 --> 00:15:13,280 +pattern will also help me in memorizing the + +271 +00:15:13,280 --> 00:15:16,080 +commands that were executed in order to repeat + +272 +00:15:16,080 --> 00:15:20,650 +them or cancel them. Let's read this slide and + +273 +00:15:20,650 --> 00:15:22,990 +then see a practical example of using the command + +274 +00:15:22,990 --> 00:15:25,970 +pattern It says that the command design pattern + +275 +00:15:25,970 --> 00:15:33,190 +encapsulates commands, method calls in objects The + +276 +00:15:33,190 --> 00:15:38,070 +idea is that when I execute a command, the command + +277 +00:15:38,070 --> 00:15:41,310 +is of course a method that executes these commands + +278 +00:15:41,310 --> 00:15:44,790 +But I turn these method calls into Java objects + +279 +00:15:46,750 --> 00:15:48,510 +What is the benefit of changing the method calls + +280 +00:15:48,510 --> 00:15:50,330 +to java objects? Or how does this work? We will + +281 +00:15:50,330 --> 00:15:52,750 +see it through this practical example. This is + +282 +00:15:52,750 --> 00:15:55,390 +allowing us, when I change the method to java + +283 +00:15:55,390 --> 00:15:59,350 +objects and store it, this enables us to issue a + +284 +00:15:59,350 --> 00:16:02,630 +request to issue commands again to issue a request + +285 +00:16:02,630 --> 00:16:06,290 +to issue commands or to execute or execute these + +286 +00:16:06,290 --> 00:16:09,770 +commands without knowing the requested operation + +287 +00:16:09,770 --> 00:16:12,690 +or the requesting the requested operation or the + +288 +00:16:12,690 --> 00:16:15,620 +requesting object. even these commands, we will + +289 +00:16:15,620 --> 00:16:18,000 +see how when we wrap them or turn them into java + +290 +00:16:18,000 --> 00:16:20,740 +objects and store them we can re-execute them + +291 +00:16:20,740 --> 00:16:23,060 +without knowing the details of execution who + +292 +00:16:23,060 --> 00:16:26,760 +executes or how execution is done command pattern + +293 +00:16:26,760 --> 00:16:29,380 +provides the options to queue commands what is the + +294 +00:16:29,380 --> 00:16:36,140 +word queue commands? queue means you store the + +295 +00:16:36,140 --> 00:16:39,060 +commands as a queue in order to execute them later + +296 +00:16:40,330 --> 00:16:43,890 +Or later on, you do undo redo actions and other + +297 +00:16:43,890 --> 00:16:47,050 +manipulations Now, these words are not very + +298 +00:16:47,050 --> 00:16:49,870 +meaningful, so in order to better understand them, + +299 +00:16:50,190 --> 00:16:58,170 +let's take an example, a practical example Now + +300 +00:16:58,170 --> 00:17:02,430 +guys, let's assume that you are dealing with the + +301 +00:17:02,430 --> 00:17:03,990 +example of the stock market that I told you about, + +302 +00:17:04,410 --> 00:17:07,290 +okay? Of course, we want to make a class called + +303 +00:17:07,290 --> 00:17:11,850 +Stock MarketWhat does this represent? The stock + +304 +00:17:11,850 --> 00:17:14,490 +market. Now, in the stock market, there are many + +305 +00:17:14,490 --> 00:17:17,790 +commands that we use, for example, buy stocks or + +306 +00:17:17,790 --> 00:17:21,090 +sell stocks or start a company. Now, what do we + +307 +00:17:21,090 --> 00:17:24,050 +want to do? Each of these commands will have a + +308 +00:17:24,050 --> 00:17:27,670 +method in this class. That's how we do it. We + +309 +00:17:27,670 --> 00:17:32,910 +don't say that any behavior of the class is + +310 +00:17:32,910 --> 00:17:36,130 +represented by a method. Okay? So, we say we make + +311 +00:17:36,130 --> 00:17:39,370 +a method, for example, public void. مثلا buy + +312 +00:17:39,370 --> 00:17:46,750 +shares اش يعني buy shares اشتري أسهم تمام ال + +313 +00:17:46,750 --> 00:17:49,550 +method هذي عشان يقدر ينفذ عملية الشراء بدها + +314 +00:17:49,550 --> 00:17:55,930 +معلومات اش هي مثلا string مثلا buyer ID اش يعني + +315 +00:17:55,930 --> 00:18:02,790 +buyer ID مين اللي بده يشتري string seller ID int + +316 +00:18:02,790 --> 00:18:08,080 +number of shares the number of shares he wants to + +317 +00:18:08,080 --> 00:18:17,160 +buy, double tax ratio or tax rate, and double + +318 +00:18:17,160 --> 00:18:20,360 +share price. + +319 +00:18:23,980 --> 00:18:26,900 +Because this method is what executes the process + +320 +00:18:26,900 --> 00:18:30,930 +of the purchase based on the information that came + +321 +00:18:30,930 --> 00:18:33,610 +here of course we are not going to implement this + +322 +00:18:33,610 --> 00:18:35,890 +gate but we are going to look at what to do we + +323 +00:18:35,890 --> 00:18:39,330 +print a message that if this method is implemented + +324 +00:18:39,330 --> 00:18:44,550 +what will happen buying a certain number for + +325 +00:18:44,550 --> 00:18:53,570 +example which is number of shares from + +326 +00:18:53,570 --> 00:19:02,530 +who do we want to buy from seller IDtwo or four to + +327 +00:19:02,530 --> 00:19:13,570 +buyer ID and then we say total price which + +328 +00:19:13,570 --> 00:19:20,710 +is number of shares multiplied by share price + +329 +00:19:27,170 --> 00:19:30,430 +Okay, for example, we don't actually execute, this + +330 +00:19:30,430 --> 00:19:32,730 +is just a proof that this is how the process is + +331 +00:19:32,730 --> 00:19:34,350 +executed, it may need to make a connection to a + +332 +00:19:34,350 --> 00:19:38,350 +database, other operations and so on So, we also + +333 +00:19:38,350 --> 00:19:44,350 +make another method, which is buy or public void, + +334 +00:19:44,490 --> 00:19:48,790 +for example, sell shares or open company, whatever + +335 +00:19:48,790 --> 00:19:49,010 +it wants + +336 +00:19:55,230 --> 00:20:02,670 +مثلا public void open companyString for example + +337 +00:20:02,670 --> 00:20:08,290 +company id, name, + +338 +00:20:10,430 --> 00:20:10,910 +capital, + +339 +00:20:15,590 --> 00:20:20,290 +number of shares + +340 +00:20:33,700 --> 00:20:51,420 +Opening company ID with name and capital + +341 +00:20:57,700 --> 00:21:00,020 +Anyway, and you can also print the number of what? + +342 +00:21:00,140 --> 00:21:03,080 +The number of stocks. The idea is of course that + +343 +00:21:03,080 --> 00:21:05,060 +there will be methods, each process that takes + +344 +00:21:05,060 --> 00:21:07,700 +place in the stock market has what? It has + +345 +00:21:07,700 --> 00:21:09,760 +existing methods that take certain parameters and + +346 +00:21:09,760 --> 00:21:13,910 +based on these parameters, it works. Okay?Okay, + +347 +00:21:14,050 --> 00:21:18,190 +now I went to the main operation, now of course I + +348 +00:21:18,190 --> 00:21:19,750 +want to start on the stock market, I want to + +349 +00:21:19,750 --> 00:21:23,190 +create an object from who? From stock market, this + +350 +00:21:23,190 --> 00:21:31,130 +is stock market, new stock and + +351 +00:21:31,130 --> 00:21:36,490 +then I say stock market, I want to buy stocks, I + +352 +00:21:36,490 --> 00:21:40,630 +say buy, buy shares and I send him the details + +353 +00:21:41,630 --> 00:21:45,810 +Okay, I want to open a company, a stock market, + +354 +00:21:47,090 --> 00:21:51,570 +okay, I say open company and I send him the + +355 +00:21:51,570 --> 00:21:54,510 +necessary details to open a company. We also want + +356 +00:21:54,510 --> 00:21:58,930 +to buy stocks, which is new, because in one day + +357 +00:21:58,930 --> 00:21:59,830 +you can open a company + +358 +00:22:07,170 --> 00:22:13,270 +Buy shares can be 10 to 20 transactions with an + +359 +00:22:13,270 --> 00:22:18,930 +open company and it's two seriesNow, we made a way + +360 +00:22:18,930 --> 00:22:23,210 +for the stock market to execute the orders, but we + +361 +00:22:23,210 --> 00:22:25,750 +don't want the orders to be executed immediately. + +362 +00:22:26,170 --> 00:22:28,370 +What did we agree on? That these orders should be + +363 +00:22:28,370 --> 00:22:33,380 +stored to be executedin a later period of time. + +364 +00:22:33,540 --> 00:22:35,880 +This idea is present here. So how do these + +365 +00:22:35,880 --> 00:22:38,360 +commands that have different attributes and + +366 +00:22:38,360 --> 00:22:39,620 +different information .. I mean, it's true that + +367 +00:22:39,620 --> 00:22:42,560 +when I say buy shares, it's the same command, but + +368 +00:22:42,560 --> 00:22:47,220 +its details are different. So we need a way to + +369 +00:22:47,220 --> 00:22:49,840 +issue commands that specify that I have, for + +370 +00:22:49,840 --> 00:22:52,840 +example, three purchasing operations, then two + +371 +00:22:52,840 --> 00:22:54,640 +operations to open a company, then two purchasing + +372 +00:22:54,640 --> 00:22:56,880 +operations, then three operations in this order, + +373 +00:22:57,680 --> 00:22:59,820 +and store their information, and then implement + +374 +00:22:59,820 --> 00:23:04,280 +them later.So now we are going to start applying + +375 +00:23:04,280 --> 00:23:07,440 +the concept of command pattern to do this thing So + +376 +00:23:07,440 --> 00:23:08,880 +the first thing that I am going to say or the idea + +377 +00:23:08,880 --> 00:23:12,240 +of command pattern is that the method calls that I + +378 +00:23:12,240 --> 00:23:13,960 +have, what are the method calls that I have? They + +379 +00:23:13,960 --> 00:23:16,900 +are buy, share and open company, okay? These + +380 +00:23:16,900 --> 00:23:18,780 +method calls we are going to wrap them in an + +381 +00:23:18,780 --> 00:23:22,750 +object, okay? With all their details How does this + +382 +00:23:22,750 --> 00:23:24,790 +work? Pay attention with me, how do you execute + +383 +00:23:24,790 --> 00:23:26,470 +it? The first step I'm going to do, of course here + +384 +00:23:26,470 --> 00:23:28,810 +there are errors because we didn't specify the + +385 +00:23:28,810 --> 00:23:31,870 +attributes, okay? So we want to see this guide on + +386 +00:23:31,870 --> 00:23:33,450 +how to execute the command pattern. The first + +387 +00:23:33,450 --> 00:23:35,770 +thing I say about it, the commands that exist, the + +388 +00:23:35,770 --> 00:23:37,170 +commands that exist with me, their types are + +389 +00:23:37,170 --> 00:23:39,390 +different, right? It can be a process of selling, + +390 +00:23:39,550 --> 00:23:40,950 +a process of buying, a process of opening a + +391 +00:23:40,950 --> 00:23:43,410 +company, closing a company, writing, transforming, + +392 +00:23:43,930 --> 00:23:46,610 +okay? Different processes, so tell me, since I + +393 +00:23:46,610 --> 00:23:48,510 +have different processes, the first step you do, + +394 +00:23:49,010 --> 00:23:52,190 +you need to make an interfaceunite all these + +395 +00:23:52,190 --> 00:23:55,150 +processes what I want to call it for example I + +396 +00:23:55,150 --> 00:24:01,070 +want to call it for example stock command this + +397 +00:24:01,070 --> 00:24:04,890 +will represent for me as a programmer any + +398 +00:24:04,890 --> 00:24:08,730 +financing process in the stock market then inside + +399 +00:24:08,730 --> 00:24:10,950 +the interface I will make a method called public + +400 +00:24:10,950 --> 00:24:15,910 +execute what does it mean? execute the command for + +401 +00:24:15,910 --> 00:24:19,150 +meOf course, this is an interface, I have to make + +402 +00:24:19,150 --> 00:24:22,830 +subclasses from it Now, the stock market here, how + +403 +00:24:22,830 --> 00:24:25,970 +many operations do I do in it? Two methods, you + +404 +00:24:25,970 --> 00:24:29,650 +have to make a class for each method So here I see + +405 +00:24:29,650 --> 00:24:32,550 +what I have to do, every method call, I turn it + +406 +00:24:32,550 --> 00:24:36,090 +into what? Into a whole class, okay? Why? So that + +407 +00:24:36,090 --> 00:24:38,550 +I can create from this class an object and store + +408 +00:24:38,550 --> 00:24:42,290 +it How? As follows, I go and make a new class, + +409 +00:24:43,550 --> 00:24:48,040 +okay? I call it, for example, buyshares command + +410 +00:24:48,040 --> 00:24:51,080 +تمام؟ + +411 +00:24:51,080 --> 00:24:58,380 +و هذا implements stock command احنا ممكن نسهلها + +412 +00:24:58,380 --> 00:25:03,880 +نسميها ايش buy shares بس تمام؟ و هذا نغير اسمه بدل + +413 +00:25:03,880 --> 00:25:06,580 +ان نضلاش نكرر كلمة command + +414 +00:25:15,510 --> 00:25:38,250 +طيب بلاش تمام + +415 +00:25:38,250 --> 00:25:39,670 +وهي جابن ال method execute + +416 +00:25:43,550 --> 00:25:47,870 +Okay, now of course the buy + +445 +00:27:49,080 --> 00:27:50,580 +here I have an attribute which is the most + +446 +00:27:50,580 --> 00:27:56,500 +important one which is private stock market and + +447 +00:27:56,500 --> 00:27:57,360 +here I say this + +448 +00:28:03,130 --> 00:28:08,110 +And here I say this. stockmarket is equal to + +449 +00:28:08,110 --> 00:28:12,570 +stockmarket So pay attention guys, what really + +450 +00:28:12,570 --> 00:28:17,190 +happened is that I want to encapsulate or convert + +451 +00:28:17,190 --> 00:28:23,270 +the method call to java objectI made a class + +452 +00:28:23,270 --> 00:28:26,650 +called buy shares from stock command and I made + +453 +00:28:26,650 --> 00:28:28,870 +all the necessary information to execute the + +454 +00:28:28,870 --> 00:28:32,730 +buying process as an attribute in this class. + +455 +00:28:37,230 --> 00:28:40,650 +we sent it as what? as a parameter for the + +456 +00:28:40,650 --> 00:28:43,250 +constructor which is who? the stock market you + +457 +00:28:43,250 --> 00:28:45,070 +don't create the stock market and create a new + +458 +00:28:45,070 --> 00:28:48,590 +stock market we do this once and twice and it will + +459 +00:28:48,590 --> 00:28:53,030 +be stored here until it executes when it executes + +460 +00:28:53,030 --> 00:28:54,770 +how does it execute? of course it is not it that + +461 +00:28:54,770 --> 00:28:57,870 +will execute it will use who? the stock market it + +462 +00:28:57,870 --> 00:29:01,730 +will say here stock market and it will say what is + +463 +00:29:01,730 --> 00:29:05,090 +the process? buy shares and it will send it who? + +464 +00:29:06,730 --> 00:29:10,730 +attributes that are up there, okay? I put them by + +465 +00:29:10,730 --> 00:29:18,210 +myself. Am I right or not, guys? Okay? So now, of + +466 +00:29:18,210 --> 00:29:19,330 +course these sitters and getters, we didn't + +467 +00:29:19,330 --> 00:29:23,490 +mention them. Now, actually, I made a class called + +468 +00:29:23,490 --> 00:29:27,330 +Buy Shares. Okay, why this loop? Did you find that + +469 +00:29:27,330 --> 00:29:32,230 +we agreed that I don't want to claim this? بدلا + +470 +00:29:32,230 --> 00:29:37,150 +منها عشان أعمل أو أنافذ أي أمر بده أناق أعمل + +471 +00:29:37,150 --> 00:29:44,230 +object اسمه or buy shares هذا أمر مين؟ أمر الشراء، + +472 +00:29:44,230 --> 00:29:50,820 +بده أسميه c1 زي command 1 in you buy sharesAnd as + +473 +00:29:50,820 --> 00:29:55,380 +if this object represents the order of buying Of + +474 +00:29:55,380 --> 00:29:57,460 +course there is error because the constructor + +475 +00:29:57,460 --> 00:30:05,220 +wants the stock market Now you come to C1 and you + +476 +00:30:05,220 --> 00:30:07,680 +give him the necessary information for buying + +477 +00:30:07,680 --> 00:30:11,280 +through the setter methods This is the buyer ID + +478 +00:30:11,280 --> 00:30:14,740 +and this is the seller ID + +479 +00:30:19,270 --> 00:30:21,590 +c1.set the number of shares you want to buy for + +480 +00:30:21,590 --> 00:30:26,290 +example 1000 and + +481 +00:30:26,290 --> 00:30:32,450 +the share price for example 10% and the tax ratio + +482 +00:30:32,450 --> 00:30:36,940 +1% Now, we want to execute the buying process, + +483 +00:30:37,040 --> 00:30:42,620 +what do we do? We say c1.execute + +484 +00:30:42,620 --> 00:30:46,220 +It will execute, of course, within the execute I + +485 +00:30:46,220 --> 00:30:48,500 +go to the stock market and I say what? Execute + +486 +00:30:48,500 --> 00:30:51,600 +Now, of course, someone will say, why this loop? + +487 +00:30:51,960 --> 00:30:55,060 +You go back and forth, you go back to what we were + +488 +00:30:55,060 --> 00:30:57,640 +in the beginning, yes, we need to claim who? The + +489 +00:30:57,640 --> 00:30:59,960 +buy shares and we send him the data, right or not? + +490 +00:31:00,360 --> 00:31:03,280 +All we did is that we overcame ourselves, we made + +491 +00:31:03,280 --> 00:31:08,340 +a classBuy shares, we sent it to the stock market, + +492 +00:31:08,640 --> 00:31:11,560 +and from within the execute, we called the buy + +493 +00:31:11,560 --> 00:31:13,940 +shares. So it's like, where's your mouth? Right or + +494 +00:31:13,940 --> 00:31:17,660 +wrong? Okay, fine. This is what it seems to be the + +495 +00:31:17,660 --> 00:31:20,760 +gate. Just like we did for the purchase process, + +496 +00:31:20,900 --> 00:31:24,250 +we also need to create a command for whom? to open + +497 +00:31:24,250 --> 00:31:25,830 +the company and then we will see what is the + +498 +00:31:25,830 --> 00:31:29,050 +benefit that will appear in the end this is also a + +499 +00:31:29,050 --> 00:31:31,750 +class called open company, this is the second + +500 +00:31:31,750 --> 00:31:34,670 +thing that I have and this also I want to say + +501 +00:31:34,670 --> 00:31:41,610 +implements stock command, okay? and here I have + +502 +00:31:41,610 --> 00:31:45,150 +implement and let's not forget to do this also + +503 +00:31:45,150 --> 00:31:48,330 +needs to execute an object from who? from the + +504 +00:31:48,330 --> 00:31:48,990 +stock market + +505 +00:31:52,860 --> 00:32:15,560 +تمام؟ و هي public open company هي stock market و + +506 +00:32:15,560 --> 00:32:20,860 +بعدين جوا ال method execute بدي أقوله روحي لل + +507 +00:32:20,860 --> 00:32:26,270 +stock marketand execute the operation of open + +508 +00:32:26,270 --> 00:32:29,790 +company and what does this open company need? id + +509 +00:32:29,790 --> 00:32:33,890 +and name and capital and number of shares which + +510 +00:32:33,890 --> 00:32:37,370 +must also be attributes here so I want to say + +511 +00:32:37,370 --> 00:32:46,510 +private string company id companyname, int number + +512 +00:32:46,510 --> 00:32:52,430 +of shares, and what is the next parameter, is this + +513 +00:32:52,430 --> 00:32:57,190 +double or? wait a minute, let me see, this is the + +514 +00:32:57,190 --> 00:33:01,890 +stock market, company id, name, double capital, + +515 +00:33:04,770 --> 00:33:11,490 +this is double capitalOkay, these are the + +516 +00:33:11,490 --> 00:33:13,370 +attributes and now I want to create for the + +517 +00:33:13,370 --> 00:33:25,810 +attributes these setters and getters Okay, + +518 +00:33:26,170 --> 00:33:31,370 +now when I say execute Of course, he made a get + +519 +00:33:31,370 --> 00:33:34,850 +company id by himself Leave it, okay, he used the + +520 +00:33:34,850 --> 00:33:39,110 +getter and here I want to put the capital and here + +521 +00:33:39,110 --> 00:33:48,790 +I want to put number of shares now + +522 +00:33:48,790 --> 00:33:54,570 +the same idea instead + +523 +00:33:54,570 --> 00:34:01,530 +of calling it open company it is now wrapped in + +524 +00:34:01,530 --> 00:34:07,510 +class I create an object from open companywhich is + +525 +00:34:07,510 --> 00:34:14,070 +command to new open company and this will take the + +526 +00:34:14,070 --> 00:34:19,530 +stock market now c2 will send him the necessary + +527 +00:34:19,530 --> 00:34:21,610 +information to buy the company which is the + +528 +00:34:21,610 --> 00:34:21,950 +company ID + +529 +00:34:27,050 --> 00:34:34,890 +6 company name apple for example c2 6 number of + +530 +00:34:34,890 --> 00:34:42,510 +shares 10,000 and 6 capital + +531 +00:34:42,510 --> 00:34:50,170 +for example okay because I also want to implement + +532 +00:34:50,170 --> 00:34:54,820 +this thing all I have to do is c to dateExecute + +533 +00:34:54,820 --> 00:35:01,900 +طيب لحد تلان احنا فعليا لفنا لفة كبيرة In the + +534 +00:35:01,900 --> 00:35:04,460 +beginning, I had the stock market and I wanted to + +535 +00:35:04,460 --> 00:35:06,040 +execute any operation, but I used the method that + +536 +00:35:06,040 --> 00:35:09,720 +existed in it. But instead of having a method + +537 +00:35:09,720 --> 00:35:14,620 +call, I turned every call to a method and turned + +538 +00:35:14,620 --> 00:35:17,760 +it into a Java object. What is the goal of this + +539 +00:35:17,760 --> 00:35:21,940 +process? The goal is as follows. Look with me. I + +540 +00:35:21,940 --> 00:35:23,220 +don't want to execute these commands right now. + +541 +00:35:23,780 --> 00:35:26,160 +This execute has nothing to do with it. I want to + +542 +00:35:26,160 --> 00:35:29,610 +remove this line and this line.because really + +543 +00:35:29,610 --> 00:35:32,890 +every object represents a whole thing, its + +544 +00:35:32,890 --> 00:35:37,070 +information is inside this object but I don't want + +545 +00:35:37,070 --> 00:35:38,270 +to implement them now, I want to implement them + +546 +00:35:38,270 --> 00:35:40,930 +later in time for example, you went and did a new + +547 +00:35:40,930 --> 00:35:45,270 +class and you want to implement it as a stock + +548 +00:35:45,270 --> 00:35:50,900 +agentAction Stock Agent, which is the client that + +549 +00:35:50,900 --> 00:35:52,720 +works in the stock market. This is supposed to + +550 +00:35:52,720 --> 00:35:55,140 +come at the end of the day to take all the + +551 +00:35:55,140 --> 00:35:58,940 +commands and execute them. Okay? Inside this Stock + +552 +00:35:58,940 --> 00:36:04,480 +Agent, we made a private list that takes an object + +553 +00:36:04,480 --> 00:36:10,180 +of stock type and + +554 +00:36:10,180 --> 00:36:14,240 +this is called commands-new-array-list + +555 +00:36:26,930 --> 00:36:30,010 +Ok, the stock agent has a list of what? Of + +556 +00:36:30,010 --> 00:36:32,290 +commands, and this list takes objects of what type + +557 +00:36:32,290 --> 00:36:35,050 +guys? Stock command, because I want to make a + +558 +00:36:35,050 --> 00:36:38,430 +method public void so that I can add a command to + +559 +00:36:38,430 --> 00:36:40,450 +this list, because this is a private list, right? + +560 +00:36:40,490 --> 00:36:42,890 +I can't reach it, so I have to do this, its name + +561 +00:36:42,890 --> 00:36:47,910 +is addStockCommand, what will this take? object of + +562 +00:36:47,910 --> 00:36:52,810 +type StockCommand, it will be C, in order to go + +563 +00:36:52,810 --> 00:36:58,860 +and tell the commands to add who?add c now i want + +564 +00:36:58,860 --> 00:37:02,200 +to make method public void inside the stock agent + +565 +00:37:02,200 --> 00:37:09,860 +name it execute all name it only execute all which + +566 +00:37:09,860 --> 00:37:12,400 +is supposed to do what? rotate the commands and + +567 +00:37:12,400 --> 00:37:15,460 +execute them for each command or for each stock + +568 +00:37:15,460 --> 00:37:22,560 +command c is present in commands go to c and say + +569 +00:37:22,560 --> 00:37:25,120 +execute + +570 +00:37:27,170 --> 00:37:29,970 +Okay, we haven't used this stock agent yet, right + +571 +00:37:29,970 --> 00:37:35,230 +or not? Let's go to the main page Above, I have a + +572 +00:37:35,230 --> 00:37:37,490 +stock market, I also want to create an object from + +573 +00:37:37,490 --> 00:37:42,450 +which? From the stock agent, this is agent equals + +574 +00:37:42,450 --> 00:37:44,310 +new stock + +575 +00:37:46,030 --> 00:37:48,890 +agent. I created the first order and gave him all + +576 +00:37:48,890 --> 00:37:50,910 +the necessary details and gave him the stock + +577 +00:37:50,910 --> 00:37:52,670 +market that is necessary for whom? For + +578 +00:37:52,670 --> 00:37:55,690 +implementation. I created the second order to open + +579 +00:37:55,690 --> 00:37:57,730 +a company and gave him all the necessary + +580 +00:37:57,730 --> 00:37:59,970 +information and also gave him the stock market + +581 +00:37:59,970 --> 00:38:01,790 +because without it he will not be able to + +582 +00:38:01,790 --> 00:38:04,810 +implement it. Now, as I said, these orders I do + +583 +00:38:04,810 --> 00:38:06,370 +not want to implement right now. These orders I + +584 +00:38:06,370 --> 00:38:09,010 +want to store, okay? So I'm going to go to the + +585 +00:38:09,010 --> 00:38:14,280 +agentand tell him to add stock command what should + +586 +00:38:14,280 --> 00:38:19,980 +I add to it? c1 and c2 now these two things are + +587 +00:38:19,980 --> 00:38:22,340 +different and they have different details and the + +588 +00:38:22,340 --> 00:38:24,800 +execution method of each one is completely + +589 +00:38:24,800 --> 00:38:27,640 +different from the other but the idea is that the + +590 +00:38:27,640 --> 00:38:29,800 +agent will now take these commands with all their + +591 +00:38:29,800 --> 00:38:32,520 +details and store them as a stock command without + +592 +00:38:32,520 --> 00:38:36,890 +knowing what the details are in it and you can do + +593 +00:38:36,890 --> 00:38:41,790 +10, 20, 30 by command with open command, with + +594 +00:38:41,790 --> 00:38:46,710 +cell, with transfer whatever the command is at the + +595 +00:38:46,710 --> 00:38:51,070 +end the method call at the end when it comes to + +596 +00:38:51,070 --> 00:38:53,850 +execute to execute them later I have to go to the + +597 +00:38:53,850 --> 00:38:57,890 +agent and tell him execute all right or not the + +598 +00:38:57,890 --> 00:39:00,810 +agent will make a loop on them and execute it + +599 +00:39:00,810 --> 00:39:04,110 +because he does not know the details but we know + +600 +00:39:04,110 --> 00:39:07,980 +that inside execute it will do something + +601 +00:39:07,980 --> 00:39:11,000 +different, the execute of the open company will go + +602 +00:39:11,000 --> 00:39:13,940 +to the stock market and execute open, the execute + +603 +00:39:13,940 --> 00:39:16,460 +of the buy shares will go and execute from inside + +604 +00:39:16,460 --> 00:39:19,560 +the execute buy shares, but in the end the agent + +605 +00:39:19,560 --> 00:39:23,120 +does not know anything about these details, okay? + +606 +00:39:23,580 --> 00:39:26,500 +So that's how I was able to do what I wanted to do + +607 +00:39:26,500 --> 00:39:29,020 +from the beginning, that I'm the commands that I + +608 +00:39:29,020 --> 00:39:30,100 +want to implement on the stock market, I don't + +609 +00:39:30,100 --> 00:39:32,520 +want to implement it now, okay? I want to issue + +610 +00:39:32,520 --> 00:39:35,840 +these commands and store them laterWhat did I do? + +611 +00:39:36,420 --> 00:39:39,080 +I changed the method calls that it executes to + +612 +00:39:40,210 --> 00:39:44,770 +object, this object contains the data that must be + +613 +00:39:44,770 --> 00:39:47,330 +executed, which are the attributes, for example, + +614 +00:39:47,650 --> 00:39:50,270 +who buys, who sells, the number of shares, the + +615 +00:39:50,270 --> 00:39:52,870 +price, the tax, these are all data that must be + +616 +00:39:52,870 --> 00:39:56,130 +executed, it also contains the object that + +617 +00:39:56,130 --> 00:39:59,250 +actually executes, which is who, the stock market, + +618 +00:39:59,810 --> 00:40:02,370 +okay, and there is a method execute through which + +619 +00:40:02,370 --> 00:40:06,290 +I call the method that executes my commandIn order + +620 +00:40:06,290 --> 00:40:08,950 +to execute these commands later on, all I had to + +621 +00:40:08,950 --> 00:40:12,250 +do was to make them all from one interface type I + +622 +00:40:12,250 --> 00:40:15,650 +made a stock agent which will actually store all + +623 +00:40:15,650 --> 00:40:19,770 +the commands without knowing their details and in + +624 +00:40:19,770 --> 00:40:23,470 +order to execute them later on Of course, it will + +625 +00:40:23,470 --> 00:40:25,450 +be able to execute them because each one of them + +626 +00:40:25,450 --> 00:40:27,450 +contains the information and contains the method + +627 +00:40:27,450 --> 00:40:31,030 +method call and this is the idea of the command + +628 +00:40:31,030 --> 00:40:35,540 +patternOf course, in the next lecture, we will see + +629 +00:40:35,540 --> 00:40:38,660 +an example similar to this one, but we will apply + +630 +00:40:38,660 --> 00:40:42,700 +undo and redo through it. We will see how undo and + +631 +00:40:42,700 --> 00:40:44,460 +redo operations, which can be for example meet, + +632 +00:40:44,520 --> 00:40:47,580 +meet, meet, meet, meet, meet, meet, meet, meet, + +633 +00:40:47,580 --> 00:40:47,880 +meet, meet, meet, meet, meet, meet, meet, meet, + +634 +00:40:47,880 --> 00:40:47,920 +meet, meet, meet, meet, meet, meet, meet, meet, + +635 +00:40:47,920 --> 00:40:52,520 +meet, meet, meet, meet, meet, meet, meet, meet, + +636 +00:40:53,060 --> 00:41:00,640 +meet, meet, meet, meet, meet, meet, meet, meet, + +63 + +667 +00:42:32,550 --> 00:42:38,350 +allows me to save the request in a queue let's + +668 +00:42:38,350 --> 00:42:41,350 +look at the diagram of the command pattern and + +669 +00:42:41,350 --> 00:42:45,030 +look at the example that we just explained the + +670 +00:42:45,030 --> 00:42:47,590 +idea is that I have a class here called receiver + +671 +00:42:47,590 --> 00:42:51,210 +this class receiver performs the operations that I + +672 +00:42:51,210 --> 00:42:53,950 +want it to do. Okay, like the process of selling and + +673 +00:42:53,950 --> 00:42:57,050 +buying. So this receiver is represented in our + +674 +00:42:57,050 --> 00:42:59,450 +program for the stock market. As soon as we + +675 +00:42:59,450 --> 00:43:02,150 +started the program, I had a stock market class + +676 +00:43:02,150 --> 00:43:06,010 +with buy method, sell, open company, close + +677 +00:43:06,010 --> 00:43:10,720 +company, all methods. Okay? Now, I need a way to + +678 +00:43:10,720 --> 00:43:13,620 +issue orders to buy and sell and open companies, + +679 +00:43:13,800 --> 00:43:16,100 +but I store these orders to implement them later. + +680 +00:43:16,540 --> 00:43:19,460 +So that I can do this work, every order I want to + +681 +00:43:19,460 --> 00:43:22,780 +claim or every method I want to claim, I turn it + +682 +00:43:22,780 --> 00:43:25,800 +into a Java object. How? I made an interface + +683 +00:43:25,800 --> 00:43:28,720 +called command, which represents the stock + +684 +00:43:28,720 --> 00:43:30,480 +command, and there is a method execute, the same + +685 +00:43:30,480 --> 00:43:36,390 +as I did. Now, Each command or each method used in + +686 +00:43:36,390 --> 00:43:41,530 +the receiver is a concrete command. Here I have + +687 +00:43:41,530 --> 00:43:45,250 +buy shares and open company. How many commands did + +688 +00:43:45,250 --> 00:43:49,810 +I do? Two. Buy shares and open company. Each class + +689 +00:43:49,810 --> 00:43:55,020 +represents a method used here. And this one, what + +690 +00:43:55,020 --> 00:43:58,020 +did we do for it? Implement for the command, so of + +691 +00:43:58,020 --> 00:44:00,500 +course it wants to implement for whom? For execute + +692 +00:44:00,500 --> 00:44:03,980 +And of course, this command, so that I can execute + +693 +00:44:03,980 --> 00:44:07,040 +it later, it needs two things. It needs to deal + +694 +00:44:07,040 --> 00:44:08,720 +with the receiver because he is the one executing + +695 +00:44:08,720 --> 00:44:15,180 +it, right? Okay? This is hidden. I mean, when I + +696 +00:44:15,180 --> 00:44:17,920 +execute, I won't know who is executing because + +697 +00:44:17,920 --> 00:44:23,180 +this will... one of his attributes is that he will + +698 +00:44:23,180 --> 00:44:26,640 +use the receiver in addition to all this state, + +699 +00:44:26,760 --> 00:44:29,140 +all the necessary information to carry out the + +700 +00:44:29,140 --> 00:44:31,840 +task. For example, buying stocks, I need to know + +701 +00:44:31,840 --> 00:44:33,940 +where to buy from, who is the buyer, who is the + +702 +00:44:33,940 --> 00:44:35,960 +seller, the number of stocks and so on. All these + +703 +00:44:35,960 --> 00:44:38,580 +are the information that is available here. Okay? + +704 +00:44:39,820 --> 00:44:42,120 +And I extract from it, as I said, every method + +705 +00:44:42,120 --> 00:44:46,040 +call in the receiver, I make it a command here. So + +706 +00:44:46,040 --> 00:44:50,140 +I extract this execute, the method execute, what + +707 +00:44:50,140 --> 00:44:55,420 +did it do? It went to receiver.action So actually + +708 +00:44:55,420 --> 00:44:57,580 +from inside the execute, I extract the method that + +709 +00:44:57,580 --> 00:45:01,320 +is in the receiver. What is the benefit of this + +710 +00:45:01,320 --> 00:45:03,820 +loop? The benefit is here with the invoker, which + +711 +00:45:03,820 --> 00:45:06,560 +represents the agent. The word invoke, what does + +712 +00:45:06,560 --> 00:45:08,660 +it mean? Invoke, yes, call, like call. The invoker + +713 +00:45:08,660 --> 00:45:11,280 +is the one who calls. My goal is that the invoker + +714 +00:45:11,280 --> 00:45:12,960 +wants to store the commands in it and let it + +715 +00:45:12,960 --> 00:45:16,040 +execute without knowing how it executes and who + +716 +00:45:16,040 --> 00:45:19,700 +executes it. Okay? Now all the commands have their + +717 +00:45:19,700 --> 00:45:22,500 +details in them and they have a method execute. + +718 +00:45:23,220 --> 00:45:26,400 +Okay? So all these commands that I create, that I + +719 +00:45:26,400 --> 00:45:30,640 +create an object from a concrete command 2, 3, 4, I + +720 +00:45:30,640 --> 00:45:33,600 +take them and add them to the invoker. Notice that + +721 +00:45:33,600 --> 00:45:38,120 +the invoker deals with or uses which command? It is + +722 +00:45:38,120 --> 00:45:40,880 +basically using a list of commands. Okay? And this + +723 +00:45:40,880 --> 00:45:43,380 +specific indication means that the command is + +724 +00:45:43,380 --> 00:45:45,600 +created outside and I send it to whom? To the + +725 +00:45:45,600 --> 00:45:47,700 +invoker. And this is what I did, I made a list in + +726 +00:45:47,700 --> 00:45:51,440 +it. And I made a method add stock command to add it + +727 +00:45:51,440 --> 00:45:54,900 +to the existing list. Now this invoker will execute + +728 +00:45:54,900 --> 00:45:57,560 +the commands later, all it needs to do is to loop + +729 +00:45:57,560 --> 00:46:01,520 +the commands it has and tell it to execute. Now it + +730 +00:46:01,520 --> 00:46:03,380 +needs to add new commands, all it needs to do is + +731 +00:46:03,380 --> 00:46:06,920 +to make new classes extend from the command, okay? + +732 +00:46:07,480 --> 00:46:10,360 +No modification will be made to the invoker, and + +733 +00:46:10,360 --> 00:46:11,960 +notice that the invoker does not know the details + +734 +00:46:11,960 --> 00:46:14,060 +of execution, that is, the invoker does not know + +735 +00:46:14,060 --> 00:46:17,580 +anything about who? About the receiver, the + +736 +00:46:17,580 --> 00:46:19,820 +commanders can use other libraries and classes + +737 +00:46:19,820 --> 00:46:22,620 +again to execute. What are the different ways of + +738 +00:46:22,620 --> 00:46:26,880 +execution? In the end, it stores the commands and + +739 +00:46:26,880 --> 00:46:31,840 +makes a loop and executes them. Okay? Did you get + +740 +00:46:31,840 --> 00:46:32,260 +it? Okay, + +741 +00:46:36,060 --> 00:46:40,340 +this explains the parts of the UML diagram. Now + +742 +00:46:40,340 --> 00:46:45,100 +this example really, it is an application for the + +743 +00:46:45,100 --> 00:46:46,880 +stock market that we have explained. Let's go + +744 +00:46:46,880 --> 00:46:48,980 +through it quickly because we have explained it + +745 +00:46:48,980 --> 00:46:51,420 +and there is no need to repeat it next time. Now + +746 +00:46:51,420 --> 00:46:52,940 +because it is the same example that I have done. + +747 +00:46:52,940 --> 00:46:57,900 +Now this interface is called order which has what? + +748 +00:46:58,200 --> 00:47:00,140 +Execute. I called it stock command, what did it + +749 +00:47:00,140 --> 00:47:03,840 +call? Order. Now this class which is the stock + +750 +00:47:03,840 --> 00:47:07,650 +market. You see, it's what actually executes. I + +751 +00:47:07,650 --> 00:47:11,290 +called it the stock market. He called it the stock + +752 +00:47:11,290 --> 00:47:14,510 +trade. It has a method which is buy and sell, + +753 +00:47:14,990 --> 00:47:17,770 +which actually executes the operations. Because I + +754 +00:47:17,770 --> 00:47:19,390 +want to ask myself to store the operations of + +755 +00:47:19,390 --> 00:47:23,740 +buying and selling in order to execute later. So + +756 +00:47:23,740 --> 00:47:26,700 +now I made an interface that represents the order + +757 +00:47:26,700 --> 00:47:29,220 +in method execute and I made a class for each + +758 +00:47:29,220 --> 00:47:34,780 +method call here buy stock order and sell stock + +759 +00:47:34,780 --> 00:47:38,920 +order all of them implement to whom? To execute in + +760 +00:47:38,920 --> 00:47:42,300 +a different way and both of them take the object + +761 +00:47:42,300 --> 00:47:45,400 +from who? Stock trade not us in the constructor + +762 +00:47:45,400 --> 00:47:48,300 +that each one of us sent to the stock trade, okay? + +763 +00:47:48,500 --> 00:47:52,100 +Add to that any attributes that they need to + +764 +00:47:52,100 --> 00:47:57,190 +execute the commands. Okay? Now inside this execute + +765 +00:47:57,190 --> 00:48:01,790 +of buy, I go to the stock trade of this object and + +766 +00:48:01,790 --> 00:48:02,930 +it executes buy. + +767 +00:48:05,850 --> 00:48:08,290 +Notice that I am using execute without knowing who + +768 +00:48:08,290 --> 00:48:11,030 +is executing this execute. It is inside of it and the + +769 +00:48:11,030 --> 00:48:14,470 +execute of the cell goes to the stock and makes a + +770 +00:48:14,470 --> 00:48:18,170 +cell. Now this is our agent which will actually + +771 +00:48:18,170 --> 00:48:20,830 +store the list, what is called here, but it is a + +772 +00:48:20,830 --> 00:48:24,210 +queue and it has a method called place order which + +773 +00:48:24,210 --> 00:48:26,890 +is similar to add stock command. + +774 +00:48:30,730 --> 00:48:34,230 +Now let's look at the code quickly. This is my + +775 +00:48:34,230 --> 00:48:39,150 +interface, order. This is main, buy stock order, + +776 +00:48:39,270 --> 00:48:42,330 +implements order, and sell stock order, implements + +777 +00:48:42,330 --> 00:48:45,330 +order. These are my commands. And each one of these + +778 +00:48:45,330 --> 00:48:48,550 +constructors takes the stock trade, which is + +779 +00:48:48,550 --> 00:48:51,990 +necessary for execution. Now it wants to execute, + +780 +00:48:52,610 --> 00:48:54,230 +it goes to the stock, it does buy, and this one + +781 +00:48:54,230 --> 00:48:56,550 +does stock, and this one does sell. Here it made + +782 +00:48:56,550 --> 00:49:00,940 +the commands. Now, this class StockTrade that I + +783 +00:49:00,940 --> 00:49:03,240 +started in this program, which is actually the one + +784 +00:49:03,240 --> 00:49:05,420 +that implements the process of selling and buying, + +785 +00:49:05,900 --> 00:49:09,320 +but this use has now been reduced to whom? To + +786 +00:49:09,320 --> 00:49:13,740 +these classes. Now, there is a class that we don't + +787 +00:49:13,740 --> 00:49:17,340 +see, in front of the client, which is the agent, + +788 +00:49:17,880 --> 00:49:20,640 +this is the agent, okay? There is a queue in the + +789 +00:49:20,640 --> 00:49:22,880 +array list, there is a place that I put in the + +790 +00:49:22,880 --> 00:49:25,460 +array list, there are process orders. Do you see + +791 +00:49:25,460 --> 00:49:28,100 +them? This is like execute all, which makes a loop + +792 +00:49:28,100 --> 00:49:31,780 +on each order that I tell it to execute. Because + +793 +00:49:31,780 --> 00:49:34,380 +this is the main method for final use, the main + +794 +00:49:34,380 --> 00:49:37,040 +method of course creates an object from whom? From + +795 +00:49:37,040 --> 00:49:38,980 +StockTrade. This is the class that executes + +796 +00:49:38,980 --> 00:49:41,800 +everything. Then it made a command to buy stock + +797 +00:49:41,800 --> 00:49:44,420 +order and sell stock order, and each one sent him + +798 +00:49:44,420 --> 00:49:48,500 +the stock to execute it. Then it made an agent and + +799 +00:49:48,500 --> 00:49:50,500 +went to the agent and told him to add the first + +800 +00:49:50,500 --> 00:49:53,160 +order and the second order. The orders were + +801 +00:49:53,160 --> 00:49:56,460 +stored, it wanted to execute them later, yes, I + +802 +00:49:56,460 --> 00:50:03,740 +tell him, I call this method which is process orders + +803 +00:50:03,740 --> 00:50:05,640 +in order to execute them later on. This way, we + +804 +00:50:05,640 --> 00:50:07,880 +were able to make these execution commands, which + +805 +00:50:07,880 --> 00:50:11,430 +were originally method calls. How do we store them + +806 +00:50:11,430 --> 00:50:13,350 +to execute them later? We converted them to Java + +807 +00:50:13,350 --> 00:50:16,890 +objects and stored them in an array to execute them + +808 +00:50:16,890 --> 00:50:20,350 +later without knowing the details of execution. + +809 +00:50:20,450 --> 00:50:24,130 +Just loop and execute. Okay, guys? This is a summary + +810 +00:50:24,130 --> 00:50:25,890 +of command pattern. Next time we will take a + +811 +00:50:25,890 --> 00:50:29,330 +bigger example than this which shows us how to + +812 +00:50:29,330 --> 00:50:33,050 +execute undo and redo using command pattern. God + +813 +00:50:33,050 --> 00:50:33,290 +bless you all. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/fz-PJyaQdF0_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/fz-PJyaQdF0_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..c48561a8805d2faa53d63a3ce5a8324a03140f6c --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/fz-PJyaQdF0_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 3381, "start": 5.31, "end": 33.81, "text": " Ok guys, peace be upon you In the last lecture guys, we took two design patterns The first one was a template method design pattern And the goal of it is that I want to make an application or for example a library through which anyone who wants to use this library is forced to follow certain steps of the algorithm, ok? But keep in mind that each step determines its details", "tokens": [3477, 1074, 11, 4336, 312, 3564, 291, 682, 264, 1036, 7991, 1074, 11, 321, 1890, 732, 1715, 8294, 440, 700, 472, 390, 257, 12379, 3170, 1715, 5102, 400, 264, 3387, 295, 309, 307, 300, 286, 528, 281, 652, 364, 3861, 420, 337, 1365, 257, 6405, 807, 597, 2878, 567, 2738, 281, 764, 341, 6405, 307, 7579, 281, 1524, 1629, 4439, 295, 264, 9284, 11, 3133, 30, 583, 1066, 294, 1575, 300, 1184, 1823, 24799, 1080, 4365], "avg_logprob": -0.47321427487707757, "compression_ratio": 1.5864978902953586, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 5.31, "end": 5.59, "word": " Ok", "probability": 0.268310546875}, {"start": 5.59, "end": 5.83, "word": " guys,", "probability": 0.67626953125}, {"start": 5.85, "end": 6.09, "word": " peace", "probability": 0.2298583984375}, {"start": 6.09, "end": 6.23, "word": " be", "probability": 0.84619140625}, {"start": 6.23, "end": 6.23, "word": " upon", "probability": 0.896484375}, {"start": 6.23, "end": 6.55, "word": " you", "probability": 0.9765625}, {"start": 6.55, "end": 8.77, "word": " In", "probability": 0.5830078125}, {"start": 8.77, "end": 8.89, "word": " the", "probability": 0.79541015625}, {"start": 8.89, "end": 8.95, "word": " last", "probability": 0.42919921875}, {"start": 8.95, "end": 9.37, "word": " lecture", "probability": 0.841796875}, {"start": 9.37, "end": 9.95, "word": " guys,", "probability": 0.337158203125}, {"start": 10.21, "end": 10.73, "word": " we", "probability": 0.90380859375}, {"start": 10.73, "end": 10.93, "word": " took", "probability": 0.68115234375}, {"start": 10.93, "end": 11.17, "word": " two", "probability": 0.794921875}, {"start": 11.17, "end": 11.57, "word": " design", "probability": 0.91015625}, {"start": 11.57, "end": 12.31, "word": " patterns", "probability": 0.8671875}, {"start": 12.31, "end": 12.79, "word": " The", "probability": 0.24267578125}, {"start": 12.79, "end": 13.05, "word": " first", "probability": 0.884765625}, {"start": 13.05, "end": 13.35, "word": " one", "probability": 0.85791015625}, {"start": 13.35, "end": 13.55, "word": " was", "probability": 0.83203125}, {"start": 13.55, "end": 13.71, "word": " a", "probability": 0.40380859375}, {"start": 13.71, "end": 14.01, "word": " template", "probability": 0.92724609375}, {"start": 14.01, "end": 14.69, "word": " method", "probability": 0.5205078125}, {"start": 14.69, "end": 15.07, "word": " design", "probability": 0.72509765625}, {"start": 15.07, "end": 15.55, "word": " pattern", "probability": 0.8671875}, {"start": 15.55, "end": 16.31, "word": " And", "probability": 0.449951171875}, {"start": 16.31, "end": 16.41, "word": " the", "probability": 0.66796875}, {"start": 16.41, "end": 16.61, "word": " goal", "probability": 0.505859375}, {"start": 16.61, "end": 17.51, "word": " of", "probability": 0.44970703125}, {"start": 17.51, "end": 17.69, "word": " it", "probability": 0.79345703125}, {"start": 17.69, "end": 17.83, "word": " is", "probability": 0.46923828125}, {"start": 17.83, "end": 17.89, "word": " that", "probability": 0.6357421875}, {"start": 17.89, "end": 18.05, "word": " I", "probability": 0.93798828125}, {"start": 18.05, "end": 18.25, "word": " want", "probability": 0.62841796875}, {"start": 18.25, "end": 18.31, "word": " to", "probability": 0.96923828125}, {"start": 18.31, "end": 18.43, "word": " make", "probability": 0.6748046875}, {"start": 18.43, "end": 19.71, "word": " an", "probability": 0.78369140625}, {"start": 19.71, "end": 20.25, "word": " application", "probability": 0.93701171875}, {"start": 20.25, "end": 21.15, "word": " or", "probability": 0.6259765625}, {"start": 21.15, "end": 21.35, "word": " for", "probability": 0.2919921875}, {"start": 21.35, "end": 21.61, "word": " example", "probability": 0.9306640625}, {"start": 21.61, "end": 21.75, "word": " a", "probability": 0.685546875}, {"start": 21.75, "end": 22.13, "word": " library", "probability": 0.81787109375}, {"start": 22.13, "end": 23.65, "word": " through", "probability": 0.1123046875}, {"start": 23.65, "end": 24.41, "word": " which", "probability": 0.91455078125}, {"start": 24.41, "end": 24.65, "word": " anyone", "probability": 0.69091796875}, {"start": 24.65, "end": 24.81, "word": " who", "probability": 0.346923828125}, {"start": 24.81, "end": 25.01, "word": " wants", "probability": 0.75537109375}, {"start": 25.01, "end": 25.05, "word": " to", "probability": 0.96630859375}, {"start": 25.05, "end": 25.51, "word": " use", "probability": 0.8740234375}, {"start": 25.51, "end": 26.09, "word": " this", "probability": 0.78125}, {"start": 26.09, "end": 26.55, "word": " library", "probability": 0.93701171875}, {"start": 26.55, "end": 26.91, "word": " is", "probability": 0.17578125}, {"start": 26.91, "end": 26.91, "word": " forced", "probability": 0.63623046875}, {"start": 26.91, "end": 27.03, "word": " to", "probability": 0.95703125}, {"start": 27.03, "end": 27.57, "word": " follow", "probability": 0.485595703125}, {"start": 27.57, "end": 27.91, "word": " certain", "probability": 0.701171875}, {"start": 27.91, "end": 28.31, "word": " steps", "probability": 0.79248046875}, {"start": 28.31, "end": 28.85, "word": " of", "probability": 0.66162109375}, {"start": 28.85, "end": 28.95, "word": " the", "probability": 0.7646484375}, {"start": 28.95, "end": 29.43, "word": " algorithm,", "probability": 0.9208984375}, {"start": 30.11, "end": 30.33, "word": " ok?", "probability": 0.258056640625}, {"start": 30.69, "end": 31.13, "word": " But", "probability": 0.7041015625}, {"start": 31.13, "end": 31.45, "word": " keep", "probability": 0.11480712890625}, {"start": 31.45, "end": 31.57, "word": " in", "probability": 0.89453125}, {"start": 31.57, "end": 31.65, "word": " mind", "probability": 0.8779296875}, {"start": 31.65, "end": 32.13, "word": " that", "probability": 0.86376953125}, {"start": 32.13, "end": 32.37, "word": " each", "probability": 0.64892578125}, {"start": 32.37, "end": 32.73, "word": " step", "probability": 0.921875}, {"start": 32.73, "end": 33.33, "word": " determines", "probability": 0.51123046875}, {"start": 33.33, "end": 33.51, "word": " its", "probability": 0.6015625}, {"start": 33.51, "end": 33.81, "word": " details", "probability": 0.7802734375}], "temperature": 1.0}, {"id": 2, "seek": 4942, "start": 34.54, "end": 49.42, "text": "And we saw through the example of text processing that there are steps that are fixed to process texts in sequence. I want anyone who wants to make a text processor to stick to these steps, but can change them.", "tokens": [5289, 321, 1866, 807, 264, 1365, 295, 2487, 9007, 300, 456, 366, 4439, 300, 366, 6806, 281, 1399, 15765, 294, 8310, 13, 286, 528, 2878, 567, 2738, 281, 652, 257, 2487, 15321, 281, 2897, 281, 613, 4439, 11, 457, 393, 1319, 552, 13], "avg_logprob": -0.49893467128276825, "compression_ratio": 1.5217391304347827, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 34.54, "end": 34.72, "word": "And", "probability": 0.25048828125}, {"start": 34.72, "end": 34.96, "word": " we", "probability": 0.755859375}, {"start": 34.96, "end": 34.96, "word": " saw", "probability": 0.630859375}, {"start": 34.96, "end": 35.5, "word": " through", "probability": 0.484375}, {"start": 35.5, "end": 35.74, "word": " the", "probability": 0.75439453125}, {"start": 35.74, "end": 35.96, "word": " example", "probability": 0.888671875}, {"start": 35.96, "end": 36.1, "word": " of", "probability": 0.94970703125}, {"start": 36.1, "end": 36.32, "word": " text", "probability": 0.77880859375}, {"start": 36.32, "end": 36.82, "word": " processing", "probability": 0.9130859375}, {"start": 36.82, "end": 37.16, "word": " that", "probability": 0.6962890625}, {"start": 37.16, "end": 37.3, "word": " there", "probability": 0.89208984375}, {"start": 37.3, "end": 37.36, "word": " are", "probability": 0.8642578125}, {"start": 37.36, "end": 37.92, "word": " steps", "probability": 0.356689453125}, {"start": 37.92, "end": 38.08, "word": " that", "probability": 0.400634765625}, {"start": 38.08, "end": 38.84, "word": " are", "probability": 0.533203125}, {"start": 38.84, "end": 38.98, "word": " fixed", "probability": 0.52734375}, {"start": 38.98, "end": 39.16, "word": " to", "probability": 0.35791015625}, {"start": 39.16, "end": 39.9, "word": " process", "probability": 0.720703125}, {"start": 39.9, "end": 40.44, "word": " texts", "probability": 0.51513671875}, {"start": 40.44, "end": 40.6, "word": " in", "probability": 0.318359375}, {"start": 40.6, "end": 41.1, "word": " sequence.", "probability": 0.2000732421875}, {"start": 42.06, "end": 42.14, "word": " I", "probability": 0.344482421875}, {"start": 42.14, "end": 42.56, "word": " want", "probability": 0.79052734375}, {"start": 42.56, "end": 43.1, "word": " anyone", "probability": 0.8447265625}, {"start": 43.1, "end": 44.58, "word": " who", "probability": 0.74560546875}, {"start": 44.58, "end": 45.72, "word": " wants", "probability": 0.78271484375}, {"start": 45.72, "end": 45.82, "word": " to", "probability": 0.97216796875}, {"start": 45.82, "end": 45.96, "word": " make", "probability": 0.6572265625}, {"start": 45.96, "end": 46.04, "word": " a", "probability": 0.953125}, {"start": 46.04, "end": 46.2, "word": " text", "probability": 0.966796875}, {"start": 46.2, "end": 46.74, "word": " processor", "probability": 0.89794921875}, {"start": 46.74, "end": 46.88, "word": " to", "probability": 0.68994140625}, {"start": 46.88, "end": 47.14, "word": " stick", "probability": 0.39453125}, {"start": 47.14, "end": 47.28, "word": " to", "probability": 0.8916015625}, {"start": 47.28, "end": 47.34, "word": " these", "probability": 0.82275390625}, {"start": 47.34, "end": 47.78, "word": " steps,", "probability": 0.88818359375}, {"start": 48.04, "end": 48.28, "word": " but", "probability": 0.89306640625}, {"start": 48.28, "end": 48.84, "word": " can", "probability": 0.44921875}, {"start": 48.84, "end": 49.2, "word": " change", "probability": 0.755859375}, {"start": 49.2, "end": 49.42, "word": " them.", "probability": 0.1407470703125}], "temperature": 1.0}, {"id": 3, "seek": 6456, "start": 50.28, "end": 64.56, "text": "Details of each step, okay? And this is what we saw through the template method, which determines a certain form and order to implement the steps, but you can change the details of the steps by implementing abstract methods", "tokens": [41444, 6227, 295, 1184, 1823, 11, 1392, 30, 400, 341, 307, 437, 321, 1866, 807, 264, 12379, 3170, 11, 597, 24799, 257, 1629, 1254, 293, 1668, 281, 4445, 264, 4439, 11, 457, 291, 393, 1319, 264, 4365, 295, 264, 4439, 538, 18114, 12649, 7150], "avg_logprob": -0.4999999894036187, "compression_ratio": 1.5067567567567568, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 50.28, "end": 50.78, "word": "Details", "probability": 0.48681640625}, {"start": 50.78, "end": 50.96, "word": " of", "probability": 0.72314453125}, {"start": 50.96, "end": 51.06, "word": " each", "probability": 0.56787109375}, {"start": 51.06, "end": 51.38, "word": " step,", "probability": 0.90087890625}, {"start": 51.88, "end": 52.14, "word": " okay?", "probability": 0.255126953125}, {"start": 53.24, "end": 53.78, "word": " And", "probability": 0.60400390625}, {"start": 53.78, "end": 53.96, "word": " this", "probability": 0.494873046875}, {"start": 53.96, "end": 53.98, "word": " is", "probability": 0.52490234375}, {"start": 53.98, "end": 54.0, "word": " what", "probability": 0.82373046875}, {"start": 54.0, "end": 54.26, "word": " we", "probability": 0.9375}, {"start": 54.26, "end": 54.26, "word": " saw", "probability": 0.63916015625}, {"start": 54.26, "end": 54.64, "word": " through", "probability": 0.53564453125}, {"start": 54.64, "end": 54.88, "word": " the", "probability": 0.76123046875}, {"start": 54.88, "end": 55.18, "word": " template", "probability": 0.8466796875}, {"start": 55.18, "end": 55.56, "word": " method,", "probability": 0.9423828125}, {"start": 55.62, "end": 55.72, "word": " which", "probability": 0.7041015625}, {"start": 55.72, "end": 56.02, "word": " determines", "probability": 0.289306640625}, {"start": 56.02, "end": 56.22, "word": " a", "probability": 0.78564453125}, {"start": 56.22, "end": 56.28, "word": " certain", "probability": 0.459716796875}, {"start": 56.28, "end": 56.38, "word": " form", "probability": 0.2498779296875}, {"start": 56.38, "end": 56.54, "word": " and", "probability": 0.888671875}, {"start": 56.54, "end": 56.88, "word": " order", "probability": 0.4697265625}, {"start": 56.88, "end": 57.56, "word": " to", "probability": 0.308349609375}, {"start": 57.56, "end": 57.94, "word": " implement", "probability": 0.488037109375}, {"start": 57.94, "end": 58.1, "word": " the", "probability": 0.74072265625}, {"start": 58.1, "end": 58.38, "word": " steps,", "probability": 0.876953125}, {"start": 58.54, "end": 58.7, "word": " but", "probability": 0.8984375}, {"start": 58.7, "end": 58.94, "word": " you", "probability": 0.962890625}, {"start": 58.94, "end": 59.18, "word": " can", "probability": 0.935546875}, {"start": 59.18, "end": 59.58, "word": " change", "probability": 0.8427734375}, {"start": 59.58, "end": 59.76, "word": " the", "probability": 0.83935546875}, {"start": 59.76, "end": 60.1, "word": " details", "probability": 0.7763671875}, {"start": 60.1, "end": 61.54, "word": " of", "probability": 0.9306640625}, {"start": 61.54, "end": 61.56, "word": " the", "probability": 0.83154296875}, {"start": 61.56, "end": 61.88, "word": " steps", "probability": 0.884765625}, {"start": 61.88, "end": 62.5, "word": " by", "probability": 0.85107421875}, {"start": 62.5, "end": 63.22, "word": " implementing", "probability": 0.4169921875}, {"start": 63.22, "end": 63.9, "word": " abstract", "probability": 0.84521484375}, {"start": 63.9, "end": 64.56, "word": " methods", "probability": 0.900390625}], "temperature": 1.0}, {"id": 4, "seek": 8294, "start": 66.32, "end": 82.94, "text": "The second design pattern that we saw in the previous lecture, which is the strategy pattern, which is also one of the most important design patterns because it has many applications Actually, the strategy pattern I use when I have an application that changes its behavior during runtime", "tokens": [2278, 1150, 1715, 5102, 300, 321, 1866, 294, 264, 3894, 7991, 11, 597, 307, 264, 5206, 5102, 11, 597, 307, 611, 472, 295, 264, 881, 1021, 1715, 8294, 570, 309, 575, 867, 5821, 5135, 11, 264, 5206, 5102, 286, 764, 562, 286, 362, 364, 3861, 300, 2962, 1080, 5223, 1830, 34474], "avg_logprob": -0.37469953069320094, "compression_ratio": 1.7083333333333333, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 66.32, "end": 66.56, "word": "The", "probability": 0.72509765625}, {"start": 66.56, "end": 66.72, "word": " second", "probability": 0.81982421875}, {"start": 66.72, "end": 66.86, "word": " design", "probability": 0.751953125}, {"start": 66.86, "end": 67.28, "word": " pattern", "probability": 0.86279296875}, {"start": 67.28, "end": 68.76, "word": " that", "probability": 0.391357421875}, {"start": 68.76, "end": 68.8, "word": " we", "probability": 0.88232421875}, {"start": 68.8, "end": 68.96, "word": " saw", "probability": 0.5224609375}, {"start": 68.96, "end": 69.34, "word": " in", "probability": 0.76220703125}, {"start": 69.34, "end": 69.42, "word": " the", "probability": 0.70703125}, {"start": 69.42, "end": 69.42, "word": " previous", "probability": 0.49267578125}, {"start": 69.42, "end": 69.96, "word": " lecture,", "probability": 0.7578125}, {"start": 70.2, "end": 70.2, "word": " which", "probability": 0.5322265625}, {"start": 70.2, "end": 70.3, "word": " is", "probability": 0.91064453125}, {"start": 70.3, "end": 70.4, "word": " the", "probability": 0.64453125}, {"start": 70.4, "end": 70.78, "word": " strategy", "probability": 0.82861328125}, {"start": 70.78, "end": 71.2, "word": " pattern,", "probability": 0.86279296875}, {"start": 71.4, "end": 71.56, "word": " which", "probability": 0.4287109375}, {"start": 71.56, "end": 71.74, "word": " is", "probability": 0.8974609375}, {"start": 71.74, "end": 72.02, "word": " also", "probability": 0.61767578125}, {"start": 72.02, "end": 72.14, "word": " one", "probability": 0.744140625}, {"start": 72.14, "end": 73.0, "word": " of", "probability": 0.970703125}, {"start": 73.0, "end": 73.04, "word": " the", "probability": 0.919921875}, {"start": 73.04, "end": 73.2, "word": " most", "probability": 0.377197265625}, {"start": 73.2, "end": 73.2, "word": " important", "probability": 0.859375}, {"start": 73.2, "end": 73.3, "word": " design", "probability": 0.8466796875}, {"start": 73.3, "end": 74.14, "word": " patterns", "probability": 0.8935546875}, {"start": 74.14, "end": 75.42, "word": " because", "probability": 0.5849609375}, {"start": 75.42, "end": 76.18, "word": " it", "probability": 0.869140625}, {"start": 76.18, "end": 76.34, "word": " has", "probability": 0.89111328125}, {"start": 76.34, "end": 76.4, "word": " many", "probability": 0.72900390625}, {"start": 76.4, "end": 76.86, "word": " applications", "probability": 0.80322265625}, {"start": 76.86, "end": 77.48, "word": " Actually,", "probability": 0.16064453125}, {"start": 77.62, "end": 77.68, "word": " the", "probability": 0.4921875}, {"start": 77.68, "end": 78.0, "word": " strategy", "probability": 0.92529296875}, {"start": 78.0, "end": 78.42, "word": " pattern", "probability": 0.84765625}, {"start": 78.42, "end": 78.9, "word": " I", "probability": 0.60498046875}, {"start": 78.9, "end": 79.3, "word": " use", "probability": 0.86474609375}, {"start": 79.3, "end": 79.52, "word": " when", "probability": 0.81591796875}, {"start": 79.52, "end": 79.88, "word": " I", "probability": 0.96240234375}, {"start": 79.88, "end": 80.0, "word": " have", "probability": 0.91943359375}, {"start": 80.0, "end": 80.18, "word": " an", "probability": 0.626953125}, {"start": 80.18, "end": 80.5, "word": " application", "probability": 0.91748046875}, {"start": 80.5, "end": 80.68, "word": " that", "probability": 0.3583984375}, {"start": 80.68, "end": 81.02, "word": " changes", "probability": 0.7978515625}, {"start": 81.02, "end": 81.16, "word": " its", "probability": 0.79541015625}, {"start": 81.16, "end": 81.88, "word": " behavior", "probability": 0.89892578125}, {"start": 81.88, "end": 82.42, "word": " during", "probability": 0.86279296875}, {"start": 82.42, "end": 82.94, "word": " runtime", "probability": 0.3818359375}], "temperature": 1.0}, {"id": 5, "seek": 10814, "start": 83.7, "end": 108.14, "text": "What does it mean? While it is running, sometimes it will make the application work in a way and then change the way it works in another way, okay? So when we started the previous lecture on the example of the mobile application changing depending on the battery status or the status of the internet connection, we used to make a method which is execute or process for example which takes an ID number which shows the status", "tokens": [3748, 775, 309, 914, 30, 3987, 309, 307, 2614, 11, 2171, 309, 486, 652, 264, 3861, 589, 294, 257, 636, 293, 550, 1319, 264, 636, 309, 1985, 294, 1071, 636, 11, 1392, 30, 407, 562, 321, 1409, 264, 3894, 7991, 322, 264, 1365, 295, 264, 6013, 3861, 4473, 5413, 322, 264, 5809, 6558, 420, 264, 6558, 295, 264, 4705, 4984, 11, 321, 1143, 281, 652, 257, 3170, 597, 307, 14483, 420, 1399, 337, 1365, 597, 2516, 364, 7348, 1230, 597, 3110, 264, 6558], "avg_logprob": -0.4694940600366819, "compression_ratio": 1.7377049180327868, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 83.7, "end": 83.96, "word": "What", "probability": 0.405517578125}, {"start": 83.96, "end": 84.14, "word": " does", "probability": 0.73828125}, {"start": 84.14, "end": 84.22, "word": " it", "probability": 0.57080078125}, {"start": 84.22, "end": 84.22, "word": " mean?", "probability": 0.95166015625}, {"start": 84.28, "end": 84.5, "word": " While", "probability": 0.07769775390625}, {"start": 84.5, "end": 84.7, "word": " it", "probability": 0.54345703125}, {"start": 84.7, "end": 84.74, "word": " is", "probability": 0.49755859375}, {"start": 84.74, "end": 85.02, "word": " running,", "probability": 0.40087890625}, {"start": 85.14, "end": 85.34, "word": " sometimes", "probability": 0.68310546875}, {"start": 85.34, "end": 85.5, "word": " it", "probability": 0.7568359375}, {"start": 85.5, "end": 85.6, "word": " will", "probability": 0.3056640625}, {"start": 85.6, "end": 85.72, "word": " make", "probability": 0.348388671875}, {"start": 85.72, "end": 85.84, "word": " the", "probability": 0.84130859375}, {"start": 85.84, "end": 86.1, "word": " application", "probability": 0.64013671875}, {"start": 86.1, "end": 86.38, "word": " work", "probability": 0.587890625}, {"start": 86.38, "end": 86.48, "word": " in", "probability": 0.59423828125}, {"start": 86.48, "end": 86.62, "word": " a", "probability": 0.50439453125}, {"start": 86.62, "end": 86.9, "word": " way", "probability": 0.452880859375}, {"start": 86.9, "end": 87.88, "word": " and", "probability": 0.6708984375}, {"start": 87.88, "end": 88.12, "word": " then", "probability": 0.75634765625}, {"start": 88.12, "end": 88.38, "word": " change", "probability": 0.6611328125}, {"start": 88.38, "end": 88.56, "word": " the", "probability": 0.60009765625}, {"start": 88.56, "end": 88.76, "word": " way", "probability": 0.79296875}, {"start": 88.76, "end": 88.9, "word": " it", "probability": 0.69677734375}, {"start": 88.9, "end": 89.12, "word": " works", "probability": 0.65771484375}, {"start": 89.12, "end": 89.22, "word": " in", "probability": 0.568359375}, {"start": 89.22, "end": 89.32, "word": " another", "probability": 0.8193359375}, {"start": 89.32, "end": 89.88, "word": " way,", "probability": 0.93017578125}, {"start": 89.96, "end": 90.44, "word": " okay?", "probability": 0.471435546875}, {"start": 91.3, "end": 91.64, "word": " So", "probability": 0.82421875}, {"start": 91.64, "end": 91.98, "word": " when", "probability": 0.77880859375}, {"start": 91.98, "end": 92.26, "word": " we", "probability": 0.955078125}, {"start": 92.26, "end": 92.26, "word": " started", "probability": 0.88623046875}, {"start": 92.26, "end": 92.38, "word": " the", "probability": 0.7158203125}, {"start": 92.38, "end": 93.04, "word": " previous", "probability": 0.36376953125}, {"start": 93.04, "end": 93.04, "word": " lecture", "probability": 0.79931640625}, {"start": 93.04, "end": 93.3, "word": " on", "probability": 0.74755859375}, {"start": 93.3, "end": 93.44, "word": " the", "probability": 0.74072265625}, {"start": 93.44, "end": 93.74, "word": " example", "probability": 0.7705078125}, {"start": 93.74, "end": 94.44, "word": " of", "probability": 0.9169921875}, {"start": 94.44, "end": 95.54, "word": " the", "probability": 0.447998046875}, {"start": 95.54, "end": 95.7, "word": " mobile", "probability": 0.59228515625}, {"start": 95.7, "end": 96.38, "word": " application", "probability": 0.919921875}, {"start": 96.38, "end": 96.86, "word": " changing", "probability": 0.47314453125}, {"start": 96.86, "end": 97.16, "word": " depending", "probability": 0.404296875}, {"start": 97.16, "end": 97.46, "word": " on", "probability": 0.9521484375}, {"start": 97.46, "end": 97.78, "word": " the", "probability": 0.76416015625}, {"start": 97.78, "end": 98.02, "word": " battery", "probability": 0.640625}, {"start": 98.02, "end": 98.02, "word": " status", "probability": 0.3447265625}, {"start": 98.02, "end": 98.46, "word": " or", "probability": 0.9072265625}, {"start": 98.46, "end": 98.52, "word": " the", "probability": 0.3798828125}, {"start": 98.52, "end": 98.6, "word": " status", "probability": 0.3583984375}, {"start": 98.6, "end": 99.22, "word": " of", "probability": 0.93798828125}, {"start": 99.22, "end": 99.32, "word": " the", "probability": 0.474853515625}, {"start": 99.32, "end": 100.02, "word": " internet", "probability": 0.6474609375}, {"start": 100.02, "end": 100.02, "word": " connection,", "probability": 0.65380859375}, {"start": 100.68, "end": 100.94, "word": " we", "probability": 0.89208984375}, {"start": 100.94, "end": 100.94, "word": " used", "probability": 0.384033203125}, {"start": 100.94, "end": 101.04, "word": " to", "probability": 0.95556640625}, {"start": 101.04, "end": 101.22, "word": " make", "probability": 0.330322265625}, {"start": 101.22, "end": 101.44, "word": " a", "probability": 0.9384765625}, {"start": 101.44, "end": 101.82, "word": " method", "probability": 0.95751953125}, {"start": 101.82, "end": 102.0, "word": " which", "probability": 0.48876953125}, {"start": 102.0, "end": 102.14, "word": " is", "probability": 0.873046875}, {"start": 102.14, "end": 102.66, "word": " execute", "probability": 0.75634765625}, {"start": 102.66, "end": 102.88, "word": " or", "probability": 0.86328125}, {"start": 102.88, "end": 103.22, "word": " process", "probability": 0.95556640625}, {"start": 103.22, "end": 103.44, "word": " for", "probability": 0.439208984375}, {"start": 103.44, "end": 103.56, "word": " example", "probability": 0.9462890625}, {"start": 103.56, "end": 103.76, "word": " which", "probability": 0.3486328125}, {"start": 103.76, "end": 104.16, "word": " takes", "probability": 0.767578125}, {"start": 104.16, "end": 105.3, "word": " an", "probability": 0.5595703125}, {"start": 105.3, "end": 105.6, "word": " ID", "probability": 0.72802734375}, {"start": 105.6, "end": 106.32, "word": " number", "probability": 0.78466796875}, {"start": 106.32, "end": 107.02, "word": " which", "probability": 0.736328125}, {"start": 107.02, "end": 107.5, "word": " shows", "probability": 0.66943359375}, {"start": 107.5, "end": 107.7, "word": " the", "probability": 0.794921875}, {"start": 107.7, "end": 108.14, "word": " status", "probability": 0.95849609375}], "temperature": 1.0}, {"id": 6, "seek": 12561, "start": 109.41, "end": 125.61, "text": " Because of this number, it changes the code it wants to execute, so we made a series of if-else statements But this method is bad because if I want to add a new status and a new algorithm to execute it, it means I have to modify the if-else statements to add the code of the new algorithm", "tokens": [1436, 295, 341, 1230, 11, 309, 2962, 264, 3089, 309, 2738, 281, 14483, 11, 370, 321, 1027, 257, 2638, 295, 498, 12, 44408, 12363, 583, 341, 3170, 307, 1578, 570, 498, 286, 528, 281, 909, 257, 777, 6558, 293, 257, 777, 9284, 281, 14483, 309, 11, 309, 1355, 286, 362, 281, 16927, 264, 498, 12, 44408, 12363, 281, 909, 264, 3089, 295, 264, 777, 9284], "avg_logprob": -0.4694602277242776, "compression_ratio": 1.7409638554216869, "no_speech_prob": 5.424022674560547e-06, "words": [{"start": 109.41, "end": 109.85, "word": " Because", "probability": 0.0489501953125}, {"start": 109.85, "end": 110.25, "word": " of", "probability": 0.369384765625}, {"start": 110.25, "end": 110.39, "word": " this", "probability": 0.76611328125}, {"start": 110.39, "end": 110.57, "word": " number,", "probability": 0.744140625}, {"start": 110.87, "end": 110.95, "word": " it", "probability": 0.44189453125}, {"start": 110.95, "end": 111.19, "word": " changes", "probability": 0.5888671875}, {"start": 111.19, "end": 111.37, "word": " the", "probability": 0.85498046875}, {"start": 111.37, "end": 111.67, "word": " code", "probability": 0.82421875}, {"start": 111.67, "end": 111.99, "word": " it", "probability": 0.2197265625}, {"start": 111.99, "end": 112.23, "word": " wants", "probability": 0.53369140625}, {"start": 112.23, "end": 112.27, "word": " to", "probability": 0.95751953125}, {"start": 112.27, "end": 112.49, "word": " execute,", "probability": 0.66015625}, {"start": 112.61, "end": 112.65, "word": " so", "probability": 0.67431640625}, {"start": 112.65, "end": 112.89, "word": " we", "probability": 0.80224609375}, {"start": 112.89, "end": 112.89, "word": " made", "probability": 0.48681640625}, {"start": 112.89, "end": 113.01, "word": " a", "probability": 0.90966796875}, {"start": 113.01, "end": 113.27, "word": " series", "probability": 0.497802734375}, {"start": 113.27, "end": 113.47, "word": " of", "probability": 0.94921875}, {"start": 113.47, "end": 113.69, "word": " if", "probability": 0.421630859375}, {"start": 113.69, "end": 113.89, "word": "-else", "probability": 0.611083984375}, {"start": 113.89, "end": 114.51, "word": " statements", "probability": 0.8095703125}, {"start": 114.51, "end": 115.31, "word": " But", "probability": 0.406494140625}, {"start": 115.31, "end": 115.63, "word": " this", "probability": 0.5029296875}, {"start": 115.63, "end": 115.89, "word": " method", "probability": 0.64697265625}, {"start": 115.89, "end": 116.09, "word": " is", "probability": 0.85791015625}, {"start": 116.09, "end": 116.31, "word": " bad", "probability": 0.56298828125}, {"start": 116.31, "end": 116.55, "word": " because", "probability": 0.49462890625}, {"start": 116.55, "end": 117.11, "word": " if", "probability": 0.859375}, {"start": 117.11, "end": 117.27, "word": " I", "probability": 0.9326171875}, {"start": 117.27, "end": 117.33, "word": " want", "probability": 0.650390625}, {"start": 117.33, "end": 117.37, "word": " to", "probability": 0.96337890625}, {"start": 117.37, "end": 117.55, "word": " add", "probability": 0.91845703125}, {"start": 117.55, "end": 118.05, "word": " a", "probability": 0.86083984375}, {"start": 118.05, "end": 118.05, "word": " new", "probability": 0.91259765625}, {"start": 118.05, "end": 118.45, "word": " status", "probability": 0.61474609375}, {"start": 118.45, "end": 119.43, "word": " and", "probability": 0.79296875}, {"start": 119.43, "end": 119.51, "word": " a", "probability": 0.4150390625}, {"start": 119.51, "end": 119.53, "word": " new", "probability": 0.90576171875}, {"start": 119.53, "end": 119.89, "word": " algorithm", "probability": 0.93603515625}, {"start": 119.89, "end": 120.31, "word": " to", "probability": 0.646484375}, {"start": 120.31, "end": 120.67, "word": " execute", "probability": 0.51611328125}, {"start": 120.67, "end": 121.07, "word": " it,", "probability": 0.480712890625}, {"start": 121.35, "end": 121.51, "word": " it", "probability": 0.53515625}, {"start": 121.51, "end": 121.51, "word": " means", "probability": 0.72265625}, {"start": 121.51, "end": 121.65, "word": " I", "probability": 0.53466796875}, {"start": 121.65, "end": 121.79, "word": " have", "probability": 0.497802734375}, {"start": 121.79, "end": 121.95, "word": " to", "probability": 0.9677734375}, {"start": 121.95, "end": 122.21, "word": " modify", "probability": 0.2919921875}, {"start": 122.21, "end": 123.23, "word": " the", "probability": 0.78662109375}, {"start": 123.23, "end": 123.41, "word": " if", "probability": 0.77294921875}, {"start": 123.41, "end": 123.61, "word": "-else", "probability": 0.94921875}, {"start": 123.61, "end": 124.19, "word": " statements", "probability": 0.5390625}, {"start": 124.19, "end": 124.41, "word": " to", "probability": 0.68603515625}, {"start": 124.41, "end": 124.65, "word": " add", "probability": 0.90625}, {"start": 124.65, "end": 124.83, "word": " the", "probability": 0.6533203125}, {"start": 124.83, "end": 125.03, "word": " code", "probability": 0.73291015625}, {"start": 125.03, "end": 125.15, "word": " of", "probability": 0.471923828125}, {"start": 125.15, "end": 125.23, "word": " the", "probability": 0.8359375}, {"start": 125.23, "end": 125.31, "word": " new", "probability": 0.50732421875}, {"start": 125.31, "end": 125.61, "word": " algorithm", "probability": 0.947265625}], "temperature": 1.0}, {"id": 7, "seek": 15511, "start": 127.91, "end": 155.11, "text": " So in order to avoid making changes to the code, the idea of the strategy pattern was that if the following program works with more than three or four algorithms alternating during the runtime, each algorithm should separate it into separate classes. As is clear in today's diagram of the strategy pattern, that I have a concrete strategy A, concrete strategy B, concrete strategy C, these represent different algorithms for implementation.", "tokens": [407, 294, 1668, 281, 5042, 1455, 2962, 281, 264, 3089, 11, 264, 1558, 295, 264, 5206, 5102, 390, 300, 498, 264, 3480, 1461, 1985, 365, 544, 813, 1045, 420, 1451, 14642, 40062, 1830, 264, 34474, 11, 1184, 9284, 820, 4994, 309, 666, 4994, 5359, 13, 1018, 307, 1850, 294, 965, 311, 10686, 295, 264, 5206, 5102, 11, 300, 286, 362, 257, 9859, 5206, 316, 11, 9859, 5206, 363, 11, 9859, 5206, 383, 11, 613, 2906, 819, 14642, 337, 11420, 13], "avg_logprob": -0.4976851851851852, "compression_ratio": 1.8451882845188285, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 127.91, "end": 128.15, "word": " So", "probability": 0.2705078125}, {"start": 128.15, "end": 128.33, "word": " in", "probability": 0.253173828125}, {"start": 128.33, "end": 128.33, "word": " order", "probability": 0.92822265625}, {"start": 128.33, "end": 128.45, "word": " to", "probability": 0.93994140625}, {"start": 128.45, "end": 128.71, "word": " avoid", "probability": 0.8583984375}, {"start": 128.71, "end": 129.11, "word": " making", "probability": 0.348876953125}, {"start": 129.11, "end": 129.39, "word": " changes", "probability": 0.181884765625}, {"start": 129.39, "end": 129.67, "word": " to", "probability": 0.72900390625}, {"start": 129.67, "end": 129.75, "word": " the", "probability": 0.74462890625}, {"start": 129.75, "end": 130.03, "word": " code,", "probability": 0.90576171875}, {"start": 130.19, "end": 131.09, "word": " the", "probability": 0.65478515625}, {"start": 131.09, "end": 131.43, "word": " idea", "probability": 0.42041015625}, {"start": 131.43, "end": 131.67, "word": " of", "probability": 0.447998046875}, {"start": 131.67, "end": 131.83, "word": " the", "probability": 0.44580078125}, {"start": 131.83, "end": 132.17, "word": " strategy", "probability": 0.78173828125}, {"start": 132.17, "end": 132.61, "word": " pattern", "probability": 0.8779296875}, {"start": 132.61, "end": 132.61, "word": " was", "probability": 0.48193359375}, {"start": 132.61, "end": 133.35, "word": " that", "probability": 0.4609375}, {"start": 133.35, "end": 133.75, "word": " if", "probability": 0.89990234375}, {"start": 133.75, "end": 133.95, "word": " the", "probability": 0.5380859375}, {"start": 133.95, "end": 134.63, "word": " following", "probability": 0.286376953125}, {"start": 134.63, "end": 134.63, "word": " program", "probability": 0.759765625}, {"start": 134.63, "end": 135.05, "word": " works", "probability": 0.336181640625}, {"start": 135.05, "end": 135.23, "word": " with", "probability": 0.76416015625}, {"start": 135.23, "end": 135.47, "word": " more", "probability": 0.853515625}, {"start": 135.47, "end": 135.77, "word": " than", "probability": 0.9501953125}, {"start": 135.77, "end": 136.17, "word": " three", "probability": 0.43359375}, {"start": 136.17, "end": 136.35, "word": " or", "probability": 0.8974609375}, {"start": 136.35, "end": 136.63, "word": " four", "probability": 0.91015625}, {"start": 136.63, "end": 137.15, "word": " algorithms", "probability": 0.9423828125}, {"start": 137.15, "end": 137.61, "word": " alternating", "probability": 0.21826171875}, {"start": 137.61, "end": 138.13, "word": " during", "probability": 0.447998046875}, {"start": 138.13, "end": 138.31, "word": " the", "probability": 0.354248046875}, {"start": 138.31, "end": 138.75, "word": " runtime,", "probability": 0.73974609375}, {"start": 138.89, "end": 139.07, "word": " each", "probability": 0.55712890625}, {"start": 139.07, "end": 139.55, "word": " algorithm", "probability": 0.880859375}, {"start": 139.55, "end": 139.67, "word": " should", "probability": 0.414306640625}, {"start": 139.67, "end": 139.95, "word": " separate", "probability": 0.623046875}, {"start": 139.95, "end": 140.21, "word": " it", "probability": 0.43603515625}, {"start": 140.21, "end": 140.79, "word": " into", "probability": 0.375244140625}, {"start": 140.79, "end": 140.83, "word": " separate", "probability": 0.3623046875}, {"start": 140.83, "end": 141.47, "word": " classes.", "probability": 0.8291015625}, {"start": 141.93, "end": 142.49, "word": " As", "probability": 0.458251953125}, {"start": 142.49, "end": 143.01, "word": " is", "probability": 0.44091796875}, {"start": 143.01, "end": 143.35, "word": " clear", "probability": 0.59814453125}, {"start": 143.35, "end": 143.59, "word": " in", "probability": 0.76708984375}, {"start": 143.59, "end": 144.03, "word": " today's", "probability": 0.75732421875}, {"start": 144.03, "end": 144.49, "word": " diagram", "probability": 0.521484375}, {"start": 144.49, "end": 144.85, "word": " of", "probability": 0.7470703125}, {"start": 144.85, "end": 144.99, "word": " the", "probability": 0.74755859375}, {"start": 144.99, "end": 145.31, "word": " strategy", "probability": 0.86376953125}, {"start": 145.31, "end": 145.75, "word": " pattern,", "probability": 0.88818359375}, {"start": 146.65, "end": 146.83, "word": " that", "probability": 0.318359375}, {"start": 146.83, "end": 147.85, "word": " I", "probability": 0.73388671875}, {"start": 147.85, "end": 148.05, "word": " have", "probability": 0.93310546875}, {"start": 148.05, "end": 148.47, "word": " a", "probability": 0.7958984375}, {"start": 148.47, "end": 148.79, "word": " concrete", "probability": 0.76806640625}, {"start": 148.79, "end": 149.31, "word": " strategy", "probability": 0.755859375}, {"start": 149.31, "end": 149.55, "word": " A,", "probability": 0.88134765625}, {"start": 149.65, "end": 149.99, "word": " concrete", "probability": 0.583984375}, {"start": 149.99, "end": 150.43, "word": " strategy", "probability": 0.87451171875}, {"start": 150.43, "end": 150.65, "word": " B,", "probability": 0.9951171875}, {"start": 150.81, "end": 151.09, "word": " concrete", "probability": 0.7958984375}, {"start": 151.09, "end": 151.59, "word": " strategy", "probability": 0.86572265625}, {"start": 151.59, "end": 151.79, "word": " C,", "probability": 0.99072265625}, {"start": 151.85, "end": 152.01, "word": " these", "probability": 0.490478515625}, {"start": 152.01, "end": 152.39, "word": " represent", "probability": 0.345703125}, {"start": 152.39, "end": 153.09, "word": " different", "probability": 0.8779296875}, {"start": 153.09, "end": 153.57, "word": " algorithms", "probability": 0.95166015625}, {"start": 153.57, "end": 154.73, "word": " for", "probability": 0.57275390625}, {"start": 154.73, "end": 155.11, "word": " implementation.", "probability": 0.47412109375}], "temperature": 1.0}, {"id": 8, "seek": 17954, "start": 158.74, "end": 179.54, "text": "Now all these algorithms to make them one go and make an interface called IStrategy and there is a method called BehaviorInterface Now all of them will implement the behavior interface but in a different way so that each one has different algorithms Well, it turns out that we encapsulated each algorithm into a class", "tokens": [13267, 439, 613, 14642, 281, 652, 552, 472, 352, 293, 652, 364, 9226, 1219, 286, 4520, 37464, 293, 456, 307, 257, 3170, 1219, 45807, 13406, 2868, 823, 439, 295, 552, 486, 4445, 264, 5223, 9226, 457, 294, 257, 819, 636, 370, 300, 1184, 472, 575, 819, 14642, 1042, 11, 309, 4523, 484, 300, 321, 38745, 6987, 1184, 9284, 666, 257, 1508], "avg_logprob": -0.5504032440723912, "compression_ratio": 1.7043010752688172, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 158.74, "end": 159.12, "word": "Now", "probability": 0.2176513671875}, {"start": 159.12, "end": 159.3, "word": " all", "probability": 0.303955078125}, {"start": 159.3, "end": 159.44, "word": " these", "probability": 0.70458984375}, {"start": 159.44, "end": 159.98, "word": " algorithms", "probability": 0.92724609375}, {"start": 159.98, "end": 160.5, "word": " to", "probability": 0.350341796875}, {"start": 160.5, "end": 160.88, "word": " make", "probability": 0.7236328125}, {"start": 160.88, "end": 161.08, "word": " them", "probability": 0.83544921875}, {"start": 161.08, "end": 161.14, "word": " one", "probability": 0.20263671875}, {"start": 161.14, "end": 162.42, "word": " go", "probability": 0.133056640625}, {"start": 162.42, "end": 162.76, "word": " and", "probability": 0.60205078125}, {"start": 162.76, "end": 162.96, "word": " make", "probability": 0.478759765625}, {"start": 162.96, "end": 163.08, "word": " an", "probability": 0.497314453125}, {"start": 163.08, "end": 163.54, "word": " interface", "probability": 0.935546875}, {"start": 163.54, "end": 163.94, "word": " called", "probability": 0.60498046875}, {"start": 163.94, "end": 165.26, "word": " IStrategy", "probability": 0.6251627604166666}, {"start": 165.26, "end": 165.4, "word": " and", "probability": 0.389404296875}, {"start": 165.4, "end": 165.54, "word": " there", "probability": 0.73193359375}, {"start": 165.54, "end": 165.56, "word": " is", "probability": 0.6455078125}, {"start": 165.56, "end": 165.58, "word": " a", "probability": 0.82470703125}, {"start": 165.58, "end": 165.8, "word": " method", "probability": 0.94140625}, {"start": 165.8, "end": 166.12, "word": " called", "probability": 0.78515625}, {"start": 166.12, "end": 167.26, "word": " BehaviorInterface", "probability": 0.7008463541666666}, {"start": 167.26, "end": 168.22, "word": " Now", "probability": 0.376220703125}, {"start": 168.22, "end": 168.68, "word": " all", "probability": 0.462890625}, {"start": 168.68, "end": 168.76, "word": " of", "probability": 0.7802734375}, {"start": 168.76, "end": 168.78, "word": " them", "probability": 0.892578125}, {"start": 168.78, "end": 168.98, "word": " will", "probability": 0.63427734375}, {"start": 168.98, "end": 169.64, "word": " implement", "probability": 0.6591796875}, {"start": 169.64, "end": 169.84, "word": " the", "probability": 0.263671875}, {"start": 169.84, "end": 170.16, "word": " behavior", "probability": 0.6630859375}, {"start": 170.16, "end": 170.6, "word": " interface", "probability": 0.91552734375}, {"start": 170.6, "end": 170.78, "word": " but", "probability": 0.74755859375}, {"start": 170.78, "end": 170.94, "word": " in", "probability": 0.728515625}, {"start": 170.94, "end": 171.76, "word": " a", "probability": 0.68017578125}, {"start": 171.76, "end": 172.14, "word": " different", "probability": 0.84814453125}, {"start": 172.14, "end": 172.16, "word": " way", "probability": 0.87548828125}, {"start": 172.16, "end": 172.4, "word": " so", "probability": 0.5625}, {"start": 172.4, "end": 172.7, "word": " that", "probability": 0.7919921875}, {"start": 172.7, "end": 172.88, "word": " each", "probability": 0.83984375}, {"start": 172.88, "end": 173.06, "word": " one", "probability": 0.428466796875}, {"start": 173.06, "end": 173.62, "word": " has", "probability": 0.61376953125}, {"start": 173.62, "end": 173.96, "word": " different", "probability": 0.60498046875}, {"start": 173.96, "end": 173.96, "word": " algorithms", "probability": 0.9560546875}, {"start": 173.96, "end": 174.98, "word": " Well,", "probability": 0.1273193359375}, {"start": 175.54, "end": 175.86, "word": " it", "probability": 0.267333984375}, {"start": 175.86, "end": 175.98, "word": " turns", "probability": 0.467041015625}, {"start": 175.98, "end": 176.1, "word": " out", "probability": 0.8818359375}, {"start": 176.1, "end": 176.28, "word": " that", "probability": 0.822265625}, {"start": 176.28, "end": 176.5, "word": " we", "probability": 0.37109375}, {"start": 176.5, "end": 176.5, "word": " encapsulated", "probability": 0.6610107421875}, {"start": 176.5, "end": 176.52, "word": " each", "probability": 0.6015625}, {"start": 176.52, "end": 177.16, "word": " algorithm", "probability": 0.87451171875}, {"start": 177.16, "end": 178.56, "word": " into", "probability": 0.26708984375}, {"start": 178.56, "end": 179.2, "word": " a", "probability": 0.84521484375}, {"start": 179.2, "end": 179.54, "word": " class", "probability": 0.9326171875}], "temperature": 1.0}, {"id": 9, "seek": 19746, "start": 180.34, "end": 197.46, "text": "How do I use them? Because this is the context, this is my application that will execute the algorithm and change the execution during the runtime. Now, I actually have a method called some method that executes the code. It will actually execute one of", "tokens": [6462, 360, 286, 764, 552, 30, 1436, 341, 307, 264, 4319, 11, 341, 307, 452, 3861, 300, 486, 14483, 264, 9284, 293, 1319, 264, 15058, 1830, 264, 34474, 13, 823, 11, 286, 767, 362, 257, 3170, 1219, 512, 3170, 300, 4454, 1819, 264, 3089, 13, 467, 486, 767, 14483, 472, 295], "avg_logprob": -0.5030047904986602, "compression_ratio": 1.605095541401274, "no_speech_prob": 3.141164779663086e-05, "words": [{"start": 180.34, "end": 180.74, "word": "How", "probability": 0.178466796875}, {"start": 180.74, "end": 180.88, "word": " do", "probability": 0.26171875}, {"start": 180.88, "end": 180.9, "word": " I", "probability": 0.6767578125}, {"start": 180.9, "end": 181.24, "word": " use", "probability": 0.8271484375}, {"start": 181.24, "end": 181.56, "word": " them?", "probability": 0.7333984375}, {"start": 181.74, "end": 181.9, "word": " Because", "probability": 0.446533203125}, {"start": 181.9, "end": 182.1, "word": " this", "probability": 0.734375}, {"start": 182.1, "end": 182.22, "word": " is", "probability": 0.9208984375}, {"start": 182.22, "end": 182.34, "word": " the", "probability": 0.64697265625}, {"start": 182.34, "end": 182.8, "word": " context,", "probability": 0.86474609375}, {"start": 182.98, "end": 183.12, "word": " this", "probability": 0.397705078125}, {"start": 183.12, "end": 183.14, "word": " is", "probability": 0.90869140625}, {"start": 183.14, "end": 183.26, "word": " my", "probability": 0.54443359375}, {"start": 183.26, "end": 183.88, "word": " application", "probability": 0.662109375}, {"start": 183.88, "end": 184.6, "word": " that", "probability": 0.66845703125}, {"start": 184.6, "end": 184.8, "word": " will", "probability": 0.37158203125}, {"start": 184.8, "end": 185.12, "word": " execute", "probability": 0.427490234375}, {"start": 185.12, "end": 185.24, "word": " the", "probability": 0.6767578125}, {"start": 185.24, "end": 185.62, "word": " algorithm", "probability": 0.892578125}, {"start": 185.62, "end": 186.26, "word": " and", "probability": 0.5703125}, {"start": 186.26, "end": 186.8, "word": " change", "probability": 0.3740234375}, {"start": 186.8, "end": 187.0, "word": " the", "probability": 0.3740234375}, {"start": 187.0, "end": 187.42, "word": " execution", "probability": 0.77197265625}, {"start": 187.42, "end": 187.78, "word": " during", "probability": 0.70751953125}, {"start": 187.78, "end": 187.96, "word": " the", "probability": 0.60595703125}, {"start": 187.96, "end": 188.34, "word": " runtime.", "probability": 0.7080078125}, {"start": 189.22, "end": 189.54, "word": " Now,", "probability": 0.58251953125}, {"start": 189.92, "end": 189.96, "word": " I", "probability": 0.84033203125}, {"start": 189.96, "end": 190.28, "word": " actually", "probability": 0.414306640625}, {"start": 190.28, "end": 191.24, "word": " have", "probability": 0.935546875}, {"start": 191.24, "end": 191.36, "word": " a", "probability": 0.91748046875}, {"start": 191.36, "end": 191.64, "word": " method", "probability": 0.951171875}, {"start": 191.64, "end": 192.02, "word": " called", "probability": 0.7822265625}, {"start": 192.02, "end": 192.6, "word": " some", "probability": 0.5166015625}, {"start": 192.6, "end": 192.88, "word": " method", "probability": 0.78857421875}, {"start": 192.88, "end": 193.16, "word": " that", "probability": 0.341552734375}, {"start": 193.16, "end": 194.8, "word": " executes", "probability": 0.767578125}, {"start": 194.8, "end": 194.92, "word": " the", "probability": 0.83154296875}, {"start": 194.92, "end": 195.14, "word": " code.", "probability": 0.9384765625}, {"start": 195.78, "end": 195.88, "word": " It", "probability": 0.71875}, {"start": 195.88, "end": 196.48, "word": " will", "probability": 0.6806640625}, {"start": 196.48, "end": 196.56, "word": " actually", "probability": 0.61572265625}, {"start": 196.56, "end": 196.88, "word": " execute", "probability": 0.85546875}, {"start": 196.88, "end": 197.18, "word": " one", "probability": 0.87255859375}, {"start": 197.18, "end": 197.46, "word": " of", "probability": 0.91650390625}], "temperature": 1.0}, {"id": 10, "seek": 21838, "start": 205.28, "end": 218.38, "text": "The idea is that he has an attribute called a strategy of the type I strategy, which accepts the type of interface. Since it accepts the type of interface, it means that I can send any unit to any point in time.", "tokens": [2278, 1558, 307, 300, 415, 575, 364, 19667, 1219, 257, 5206, 295, 264, 2010, 286, 5206, 11, 597, 33538, 264, 2010, 295, 9226, 13, 4162, 309, 33538, 264, 2010, 295, 9226, 11, 309, 1355, 300, 286, 393, 2845, 604, 4985, 281, 604, 935, 294, 565, 13], "avg_logprob": -0.6599068869935706, "compression_ratio": 1.6106870229007633, "no_speech_prob": 5.739927291870117e-05, "words": [{"start": 205.27999999999997, "end": 205.73999999999998, "word": "The", "probability": 0.04498291015625}, {"start": 205.73999999999998, "end": 206.2, "word": " idea", "probability": 0.354248046875}, {"start": 206.2, "end": 207.42, "word": " is", "probability": 0.7744140625}, {"start": 207.42, "end": 207.5, "word": " that", "probability": 0.677734375}, {"start": 207.5, "end": 207.66, "word": " he", "probability": 0.385009765625}, {"start": 207.66, "end": 208.88, "word": " has", "probability": 0.80908203125}, {"start": 208.88, "end": 209.4, "word": " an", "probability": 0.521484375}, {"start": 209.4, "end": 209.68, "word": " attribute", "probability": 0.9482421875}, {"start": 209.68, "end": 210.06, "word": " called", "probability": 0.57958984375}, {"start": 210.06, "end": 210.48, "word": " a", "probability": 0.1624755859375}, {"start": 210.48, "end": 210.88, "word": " strategy", "probability": 0.81201171875}, {"start": 210.88, "end": 211.0, "word": " of", "probability": 0.7431640625}, {"start": 211.0, "end": 211.12, "word": " the", "probability": 0.55126953125}, {"start": 211.12, "end": 211.36, "word": " type", "probability": 0.38037109375}, {"start": 211.36, "end": 212.36, "word": " I", "probability": 0.50927734375}, {"start": 212.36, "end": 212.84, "word": " strategy,", "probability": 0.5126953125}, {"start": 213.02, "end": 213.14, "word": " which", "probability": 0.365234375}, {"start": 213.14, "end": 213.5, "word": " accepts", "probability": 0.326416015625}, {"start": 213.5, "end": 213.68, "word": " the", "probability": 0.58642578125}, {"start": 213.68, "end": 213.8, "word": " type", "probability": 0.64404296875}, {"start": 213.8, "end": 213.98, "word": " of", "probability": 0.921875}, {"start": 213.98, "end": 214.48, "word": " interface.", "probability": 0.8125}, {"start": 215.1, "end": 215.34, "word": " Since", "probability": 0.58203125}, {"start": 215.34, "end": 215.56, "word": " it", "probability": 0.748046875}, {"start": 215.56, "end": 215.7, "word": " accepts", "probability": 0.81396484375}, {"start": 215.7, "end": 215.84, "word": " the", "probability": 0.8369140625}, {"start": 215.84, "end": 215.88, "word": " type", "probability": 0.796875}, {"start": 215.88, "end": 215.96, "word": " of", "probability": 0.955078125}, {"start": 215.96, "end": 216.34, "word": " interface,", "probability": 0.84326171875}, {"start": 216.46, "end": 216.5, "word": " it", "probability": 0.7919921875}, {"start": 216.5, "end": 216.58, "word": " means", "probability": 0.669921875}, {"start": 216.58, "end": 216.76, "word": " that", "probability": 0.615234375}, {"start": 216.76, "end": 216.76, "word": " I", "probability": 0.7099609375}, {"start": 216.76, "end": 216.96, "word": " can", "probability": 0.9326171875}, {"start": 216.96, "end": 217.2, "word": " send", "probability": 0.74267578125}, {"start": 217.2, "end": 217.4, "word": " any", "probability": 0.7578125}, {"start": 217.4, "end": 217.72, "word": " unit", "probability": 0.5732421875}, {"start": 217.72, "end": 218.38, "word": " to", "probability": 0.40966796875}, {"start": 218.38, "end": 218.38, "word": " any", "probability": 0.2110595703125}, {"start": 218.38, "end": 218.38, "word": " point", "probability": 0.212158203125}, {"start": 218.38, "end": 218.38, "word": " in", "probability": 0.3115234375}, {"start": 218.38, "end": 218.38, "word": " time.", "probability": 0.422607421875}], "temperature": 1.0}, {"id": 11, "seek": 23853, "start": 218.41, "end": 238.53, "text": "Of course here I have 6 methods through which I will send the strategy All that will happen is that when I say some method, it will go to the object of the strategy and claim that to the behavior interface I want to change the execution method and once I send the strategy to A", "tokens": [23919, 1164, 510, 286, 362, 1386, 7150, 807, 597, 286, 486, 2845, 264, 5206, 1057, 300, 486, 1051, 307, 300, 562, 286, 584, 512, 3170, 11, 309, 486, 352, 281, 264, 2657, 295, 264, 5206, 293, 3932, 300, 281, 264, 5223, 9226, 286, 528, 281, 1319, 264, 15058, 3170, 293, 1564, 286, 2845, 264, 5206, 281, 316], "avg_logprob": -0.541487053550523, "compression_ratio": 1.6993865030674846, "no_speech_prob": 1.0013580322265625e-05, "words": [{"start": 218.41, "end": 218.59, "word": "Of", "probability": 0.1722412109375}, {"start": 218.59, "end": 219.19, "word": " course", "probability": 0.74560546875}, {"start": 219.19, "end": 220.07, "word": " here", "probability": 0.1434326171875}, {"start": 220.07, "end": 220.29, "word": " I", "probability": 0.60546875}, {"start": 220.29, "end": 220.65, "word": " have", "probability": 0.438232421875}, {"start": 220.65, "end": 220.93, "word": " 6", "probability": 0.55615234375}, {"start": 220.93, "end": 221.35, "word": " methods", "probability": 0.8134765625}, {"start": 221.35, "end": 221.71, "word": " through", "probability": 0.2042236328125}, {"start": 221.71, "end": 222.21, "word": " which", "probability": 0.9169921875}, {"start": 222.21, "end": 222.39, "word": " I", "probability": 0.951171875}, {"start": 222.39, "end": 222.43, "word": " will", "probability": 0.33251953125}, {"start": 222.43, "end": 222.53, "word": " send", "probability": 0.76220703125}, {"start": 222.53, "end": 223.93, "word": " the", "probability": 0.488525390625}, {"start": 223.93, "end": 224.41, "word": " strategy", "probability": 0.8564453125}, {"start": 224.41, "end": 225.21, "word": " All", "probability": 0.140869140625}, {"start": 225.21, "end": 226.73, "word": " that", "probability": 0.68017578125}, {"start": 226.73, "end": 226.83, "word": " will", "probability": 0.3466796875}, {"start": 226.83, "end": 227.13, "word": " happen", "probability": 0.87890625}, {"start": 227.13, "end": 227.35, "word": " is", "probability": 0.68896484375}, {"start": 227.35, "end": 227.43, "word": " that", "probability": 0.53662109375}, {"start": 227.43, "end": 227.63, "word": " when", "probability": 0.8076171875}, {"start": 227.63, "end": 227.71, "word": " I", "probability": 0.97705078125}, {"start": 227.71, "end": 227.87, "word": " say", "probability": 0.67822265625}, {"start": 227.87, "end": 228.15, "word": " some", "probability": 0.75439453125}, {"start": 228.15, "end": 228.53, "word": " method,", "probability": 0.9384765625}, {"start": 228.75, "end": 228.75, "word": " it", "probability": 0.72705078125}, {"start": 228.75, "end": 228.91, "word": " will", "probability": 0.7587890625}, {"start": 228.91, "end": 229.11, "word": " go", "probability": 0.875}, {"start": 229.11, "end": 229.45, "word": " to", "probability": 0.94677734375}, {"start": 229.45, "end": 229.77, "word": " the", "probability": 0.81591796875}, {"start": 229.77, "end": 230.27, "word": " object", "probability": 0.8212890625}, {"start": 230.27, "end": 231.11, "word": " of", "probability": 0.77587890625}, {"start": 231.11, "end": 231.25, "word": " the", "probability": 0.7822265625}, {"start": 231.25, "end": 231.73, "word": " strategy", "probability": 0.8955078125}, {"start": 231.73, "end": 232.27, "word": " and", "probability": 0.7646484375}, {"start": 232.27, "end": 232.65, "word": " claim", "probability": 0.1826171875}, {"start": 232.65, "end": 232.93, "word": " that", "probability": 0.31201171875}, {"start": 232.93, "end": 233.11, "word": " to", "probability": 0.3505859375}, {"start": 233.11, "end": 233.95, "word": " the", "probability": 0.465087890625}, {"start": 233.95, "end": 234.23, "word": " behavior", "probability": 0.7587890625}, {"start": 234.23, "end": 234.87, "word": " interface", "probability": 0.9375}, {"start": 234.87, "end": 235.37, "word": " I", "probability": 0.3515625}, {"start": 235.37, "end": 235.63, "word": " want", "probability": 0.57373046875}, {"start": 235.63, "end": 235.79, "word": " to", "probability": 0.96875}, {"start": 235.79, "end": 236.13, "word": " change", "probability": 0.88916015625}, {"start": 236.13, "end": 236.33, "word": " the", "probability": 0.66259765625}, {"start": 236.33, "end": 237.07, "word": " execution", "probability": 0.294677734375}, {"start": 237.07, "end": 237.07, "word": " method", "probability": 0.728515625}, {"start": 237.07, "end": 237.29, "word": " and", "probability": 0.45361328125}, {"start": 237.29, "end": 237.45, "word": " once", "probability": 0.5068359375}, {"start": 237.45, "end": 237.59, "word": " I", "probability": 0.93310546875}, {"start": 237.59, "end": 237.75, "word": " send", "probability": 0.73388671875}, {"start": 237.75, "end": 237.89, "word": " the", "probability": 0.60888671875}, {"start": 237.89, "end": 238.27, "word": " strategy", "probability": 0.92138671875}, {"start": 238.27, "end": 238.41, "word": " to", "probability": 0.5634765625}, {"start": 238.41, "end": 238.53, "word": " A", "probability": 0.485595703125}], "temperature": 1.0}, {"id": 12, "seek": 25770, "start": 239.49, "end": 257.71, "text": "and I tell him I'm going to implement the sum method and then I send him strategy B and I implement the sum method so that's what happens during the runtime, I send him the algorithm that he wants to work on and he implements it. The idea now is that if I want to add a new algorithm, all I need to do is create a new class and implement it", "tokens": [474, 286, 980, 796, 286, 478, 516, 281, 4445, 264, 2408, 3170, 293, 550, 286, 2845, 796, 5206, 363, 293, 286, 4445, 264, 2408, 3170, 370, 300, 311, 437, 2314, 1830, 264, 34474, 11, 286, 2845, 796, 264, 9284, 300, 415, 2738, 281, 589, 322, 293, 415, 704, 17988, 309, 13, 440, 1558, 586, 307, 300, 498, 286, 528, 281, 909, 257, 777, 9284, 11, 439, 286, 643, 281, 360, 307, 1884, 257, 777, 1508, 293, 4445, 309], "avg_logprob": -0.4058544190624092, "compression_ratio": 1.7708333333333333, "no_speech_prob": 1.2755393981933594e-05, "words": [{"start": 239.49, "end": 239.73, "word": "and", "probability": 0.28564453125}, {"start": 239.73, "end": 239.81, "word": " I", "probability": 0.568359375}, {"start": 239.81, "end": 239.97, "word": " tell", "probability": 0.31201171875}, {"start": 239.97, "end": 240.19, "word": " him", "probability": 0.69384765625}, {"start": 240.19, "end": 240.89, "word": " I'm", "probability": 0.3826904296875}, {"start": 240.89, "end": 240.95, "word": " going", "probability": 0.46435546875}, {"start": 240.95, "end": 240.95, "word": " to", "probability": 0.96435546875}, {"start": 240.95, "end": 241.15, "word": " implement", "probability": 0.41748046875}, {"start": 241.15, "end": 241.31, "word": " the", "probability": 0.513671875}, {"start": 241.31, "end": 241.45, "word": " sum", "probability": 0.3984375}, {"start": 241.45, "end": 241.73, "word": " method", "probability": 0.9130859375}, {"start": 241.73, "end": 242.17, "word": " and", "probability": 0.546875}, {"start": 242.17, "end": 242.37, "word": " then", "probability": 0.55810546875}, {"start": 242.37, "end": 242.49, "word": " I", "probability": 0.90380859375}, {"start": 242.49, "end": 242.71, "word": " send", "probability": 0.58447265625}, {"start": 242.71, "end": 243.19, "word": " him", "probability": 0.8681640625}, {"start": 243.19, "end": 244.19, "word": " strategy", "probability": 0.6689453125}, {"start": 244.19, "end": 244.47, "word": " B", "probability": 0.78125}, {"start": 244.47, "end": 244.77, "word": " and", "probability": 0.76904296875}, {"start": 244.77, "end": 244.85, "word": " I", "probability": 0.462890625}, {"start": 244.85, "end": 245.07, "word": " implement", "probability": 0.4951171875}, {"start": 245.07, "end": 245.23, "word": " the", "probability": 0.8408203125}, {"start": 245.23, "end": 245.39, "word": " sum", "probability": 0.92236328125}, {"start": 245.39, "end": 245.63, "word": " method", "probability": 0.93359375}, {"start": 245.63, "end": 245.81, "word": " so", "probability": 0.2308349609375}, {"start": 245.81, "end": 246.01, "word": " that's", "probability": 0.604248046875}, {"start": 246.01, "end": 246.19, "word": " what", "probability": 0.70166015625}, {"start": 246.19, "end": 246.51, "word": " happens", "probability": 0.88818359375}, {"start": 246.51, "end": 246.79, "word": " during", "probability": 0.70703125}, {"start": 246.79, "end": 246.97, "word": " the", "probability": 0.6298828125}, {"start": 246.97, "end": 247.31, "word": " runtime,", "probability": 0.6416015625}, {"start": 247.43, "end": 247.55, "word": " I", "probability": 0.955078125}, {"start": 247.55, "end": 247.85, "word": " send", "probability": 0.7626953125}, {"start": 247.85, "end": 248.01, "word": " him", "probability": 0.8837890625}, {"start": 248.01, "end": 248.07, "word": " the", "probability": 0.8837890625}, {"start": 248.07, "end": 248.43, "word": " algorithm", "probability": 0.9365234375}, {"start": 248.43, "end": 248.59, "word": " that", "probability": 0.640625}, {"start": 248.59, "end": 248.73, "word": " he", "probability": 0.4208984375}, {"start": 248.73, "end": 248.81, "word": " wants", "probability": 0.7197265625}, {"start": 248.81, "end": 248.81, "word": " to", "probability": 0.9560546875}, {"start": 248.81, "end": 249.05, "word": " work", "probability": 0.333251953125}, {"start": 249.05, "end": 249.25, "word": " on", "probability": 0.7666015625}, {"start": 249.25, "end": 249.31, "word": " and", "probability": 0.81298828125}, {"start": 249.31, "end": 250.07, "word": " he", "probability": 0.88232421875}, {"start": 250.07, "end": 251.51, "word": " implements", "probability": 0.767822265625}, {"start": 251.51, "end": 251.87, "word": " it.", "probability": 0.92724609375}, {"start": 252.31, "end": 252.43, "word": " The", "probability": 0.62060546875}, {"start": 252.43, "end": 252.67, "word": " idea", "probability": 0.88037109375}, {"start": 252.67, "end": 252.89, "word": " now", "probability": 0.5390625}, {"start": 252.89, "end": 253.01, "word": " is", "probability": 0.505859375}, {"start": 253.01, "end": 253.01, "word": " that", "probability": 0.56494140625}, {"start": 253.01, "end": 253.03, "word": " if", "probability": 0.70654296875}, {"start": 253.03, "end": 253.19, "word": " I", "probability": 0.98388671875}, {"start": 253.19, "end": 253.35, "word": " want", "probability": 0.6513671875}, {"start": 253.35, "end": 253.35, "word": " to", "probability": 0.9697265625}, {"start": 253.35, "end": 253.47, "word": " add", "probability": 0.939453125}, {"start": 253.47, "end": 253.59, "word": " a", "probability": 0.9423828125}, {"start": 253.59, "end": 254.17, "word": " new", "probability": 0.90625}, {"start": 254.17, "end": 254.17, "word": " algorithm,", "probability": 0.9326171875}, {"start": 254.39, "end": 254.53, "word": " all", "probability": 0.625}, {"start": 254.53, "end": 254.67, "word": " I", "probability": 0.873046875}, {"start": 254.67, "end": 254.91, "word": " need", "probability": 0.77978515625}, {"start": 254.91, "end": 255.07, "word": " to", "probability": 0.8681640625}, {"start": 255.07, "end": 255.19, "word": " do", "probability": 0.95947265625}, {"start": 255.19, "end": 255.39, "word": " is", "probability": 0.9296875}, {"start": 255.39, "end": 255.63, "word": " create", "probability": 0.40625}, {"start": 255.63, "end": 255.73, "word": " a", "probability": 0.97314453125}, {"start": 255.73, "end": 255.73, "word": " new", "probability": 0.91064453125}, {"start": 255.73, "end": 256.05, "word": " class", "probability": 0.9755859375}, {"start": 256.05, "end": 256.93, "word": " and", "probability": 0.56640625}, {"start": 256.93, "end": 257.33, "word": " implement", "probability": 0.8583984375}, {"start": 257.33, "end": 257.71, "word": " it", "probability": 0.9296875}], "temperature": 1.0}, {"id": 13, "seek": 27756, "start": 258.46, "end": 277.56, "text": " the interface and I put in it the new code of the algorithm and then I bench the object from it and I send it to whom? To the context which represents my application. So actually the application will behave like this and I won't need to make any changes to it. Whenever I want to make a new algorithm, I add a new class but I don't modify any line on the written code.", "tokens": [264, 9226, 293, 286, 829, 294, 309, 264, 777, 3089, 295, 264, 9284, 293, 550, 286, 10638, 264, 2657, 490, 309, 293, 286, 2845, 309, 281, 7101, 30, 1407, 264, 4319, 597, 8855, 452, 3861, 13, 407, 767, 264, 3861, 486, 15158, 411, 341, 293, 286, 1582, 380, 643, 281, 652, 604, 2962, 281, 309, 13, 14159, 286, 528, 281, 652, 257, 777, 9284, 11, 286, 909, 257, 777, 1508, 457, 286, 500, 380, 16927, 604, 1622, 322, 264, 3720, 3089, 13], "avg_logprob": -0.48268073366349, "compression_ratio": 1.6473214285714286, "no_speech_prob": 1.2218952178955078e-05, "words": [{"start": 258.46000000000004, "end": 258.86, "word": " the", "probability": 0.11297607421875}, {"start": 258.86, "end": 259.26, "word": " interface", "probability": 0.88330078125}, {"start": 259.26, "end": 259.88, "word": " and", "probability": 0.6279296875}, {"start": 259.88, "end": 259.98, "word": " I", "probability": 0.309326171875}, {"start": 259.98, "end": 260.18, "word": " put", "probability": 0.30322265625}, {"start": 260.18, "end": 260.26, "word": " in", "probability": 0.2337646484375}, {"start": 260.26, "end": 260.38, "word": " it", "probability": 0.81396484375}, {"start": 260.38, "end": 260.46, "word": " the", "probability": 0.81201171875}, {"start": 260.46, "end": 260.94, "word": " new", "probability": 0.724609375}, {"start": 260.94, "end": 260.98, "word": " code", "probability": 0.83349609375}, {"start": 260.98, "end": 261.12, "word": " of", "probability": 0.751953125}, {"start": 261.12, "end": 261.26, "word": " the", "probability": 0.71875}, {"start": 261.26, "end": 261.62, "word": " algorithm", "probability": 0.8916015625}, {"start": 261.62, "end": 261.94, "word": " and", "probability": 0.6767578125}, {"start": 261.94, "end": 262.22, "word": " then", "probability": 0.625}, {"start": 262.22, "end": 262.34, "word": " I", "probability": 0.79736328125}, {"start": 262.34, "end": 262.5, "word": " bench", "probability": 0.08282470703125}, {"start": 262.5, "end": 262.62, "word": " the", "probability": 0.293701171875}, {"start": 262.62, "end": 262.9, "word": " object", "probability": 0.94384765625}, {"start": 262.9, "end": 263.06, "word": " from", "probability": 0.62255859375}, {"start": 263.06, "end": 263.16, "word": " it", "probability": 0.865234375}, {"start": 263.16, "end": 263.24, "word": " and", "probability": 0.84716796875}, {"start": 263.24, "end": 263.32, "word": " I", "probability": 0.349365234375}, {"start": 263.32, "end": 263.52, "word": " send", "probability": 0.5908203125}, {"start": 263.52, "end": 263.64, "word": " it", "probability": 0.90185546875}, {"start": 263.64, "end": 263.76, "word": " to", "probability": 0.9169921875}, {"start": 263.76, "end": 263.92, "word": " whom?", "probability": 0.64111328125}, {"start": 264.36, "end": 264.54, "word": " To", "probability": 0.482177734375}, {"start": 264.54, "end": 264.66, "word": " the", "probability": 0.67041015625}, {"start": 264.66, "end": 265.02, "word": " context", "probability": 0.8935546875}, {"start": 265.02, "end": 265.26, "word": " which", "probability": 0.54736328125}, {"start": 265.26, "end": 265.6, "word": " represents", "probability": 0.4501953125}, {"start": 265.6, "end": 265.76, "word": " my", "probability": 0.58154296875}, {"start": 265.76, "end": 266.2, "word": " application.", "probability": 0.61474609375}, {"start": 267.02, "end": 267.14, "word": " So", "probability": 0.7431640625}, {"start": 267.14, "end": 267.44, "word": " actually", "probability": 0.1773681640625}, {"start": 267.44, "end": 267.64, "word": " the", "probability": 0.451171875}, {"start": 267.64, "end": 268.12, "word": " application", "probability": 0.86083984375}, {"start": 268.12, "end": 268.72, "word": " will", "probability": 0.66357421875}, {"start": 268.72, "end": 269.12, "word": " behave", "probability": 0.328857421875}, {"start": 269.12, "end": 269.18, "word": " like", "probability": 0.4501953125}, {"start": 269.18, "end": 269.6, "word": " this", "probability": 0.71044921875}, {"start": 269.6, "end": 269.78, "word": " and", "probability": 0.386474609375}, {"start": 269.78, "end": 269.9, "word": " I", "probability": 0.515625}, {"start": 269.9, "end": 270.14, "word": " won't", "probability": 0.668212890625}, {"start": 270.14, "end": 270.48, "word": " need", "probability": 0.669921875}, {"start": 270.48, "end": 270.6, "word": " to", "probability": 0.9267578125}, {"start": 270.6, "end": 270.72, "word": " make", "probability": 0.60009765625}, {"start": 270.72, "end": 271.14, "word": " any", "probability": 0.89111328125}, {"start": 271.14, "end": 271.46, "word": " changes", "probability": 0.60986328125}, {"start": 271.46, "end": 271.84, "word": " to", "probability": 0.50146484375}, {"start": 271.84, "end": 271.84, "word": " it.", "probability": 0.94970703125}, {"start": 272.32, "end": 272.56, "word": " Whenever", "probability": 0.2225341796875}, {"start": 272.56, "end": 272.68, "word": " I", "probability": 0.9736328125}, {"start": 272.68, "end": 272.82, "word": " want", "probability": 0.70166015625}, {"start": 272.82, "end": 272.84, "word": " to", "probability": 0.9716796875}, {"start": 272.84, "end": 272.94, "word": " make", "probability": 0.57080078125}, {"start": 272.94, "end": 273.04, "word": " a", "probability": 0.94775390625}, {"start": 273.04, "end": 273.06, "word": " new", "probability": 0.9189453125}, {"start": 273.06, "end": 273.32, "word": " algorithm,", "probability": 0.93603515625}, {"start": 273.62, "end": 273.74, "word": " I", "probability": 0.994140625}, {"start": 273.74, "end": 273.94, "word": " add", "probability": 0.87646484375}, {"start": 273.94, "end": 274.12, "word": " a", "probability": 0.9130859375}, {"start": 274.12, "end": 274.12, "word": " new", "probability": 0.9013671875}, {"start": 274.12, "end": 274.36, "word": " class", "probability": 0.96337890625}, {"start": 274.36, "end": 274.84, "word": " but", "probability": 0.70361328125}, {"start": 274.84, "end": 275.08, "word": " I", "probability": 0.95458984375}, {"start": 275.08, "end": 275.08, "word": " don't", "probability": 0.884033203125}, {"start": 275.08, "end": 275.54, "word": " modify", "probability": 0.41455078125}, {"start": 275.54, "end": 275.86, "word": " any", "probability": 0.80224609375}, {"start": 275.86, "end": 276.1, "word": " line", "probability": 0.77099609375}, {"start": 276.1, "end": 276.28, "word": " on", "probability": 0.58935546875}, {"start": 276.28, "end": 276.42, "word": " the", "probability": 0.916015625}, {"start": 276.42, "end": 277.56, "word": " written", "probability": 0.4404296875}, {"start": 277.56, "end": 277.56, "word": " code.", "probability": 0.94921875}], "temperature": 1.0}, {"id": 14, "seek": 29920, "start": 280.65, "end": 299.21, "text": "Now, this is an explanation of the UML diagram that we saw a while ago Now, in addition to the example that we took in the previous lecture which talks about mobile applications and the modes in which they work Let's see another example that talks about robots applications They want to make a robot application or similar to the previous lecture in computer player", "tokens": [13267, 11, 341, 307, 364, 10835, 295, 264, 624, 12683, 10686, 300, 321, 1866, 257, 1339, 2057, 823, 11, 294, 4500, 281, 264, 1365, 300, 321, 1890, 294, 264, 3894, 7991, 597, 6686, 466, 6013, 5821, 293, 264, 14068, 294, 597, 436, 589, 961, 311, 536, 1071, 1365, 300, 6686, 466, 14733, 5821, 814, 528, 281, 652, 257, 7881, 3861, 420, 2531, 281, 264, 3894, 7991, 294, 3820, 4256], "avg_logprob": -0.4479910637651171, "compression_ratio": 1.7804878048780488, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 280.65, "end": 281.07, "word": "Now,", "probability": 0.43359375}, {"start": 281.17, "end": 281.49, "word": " this", "probability": 0.716796875}, {"start": 281.49, "end": 281.55, "word": " is", "probability": 0.83056640625}, {"start": 281.55, "end": 281.67, "word": " an", "probability": 0.54931640625}, {"start": 281.67, "end": 281.83, "word": " explanation", "probability": 0.472412109375}, {"start": 281.83, "end": 282.03, "word": " of", "probability": 0.479248046875}, {"start": 282.03, "end": 282.11, "word": " the", "probability": 0.7158203125}, {"start": 282.11, "end": 282.37, "word": " UML", "probability": 0.854248046875}, {"start": 282.37, "end": 282.81, "word": " diagram", "probability": 0.82421875}, {"start": 282.81, "end": 283.13, "word": " that", "probability": 0.333251953125}, {"start": 283.13, "end": 283.13, "word": " we", "probability": 0.91552734375}, {"start": 283.13, "end": 283.31, "word": " saw", "probability": 0.64013671875}, {"start": 283.31, "end": 283.43, "word": " a", "probability": 0.29931640625}, {"start": 283.43, "end": 283.71, "word": " while", "probability": 0.6513671875}, {"start": 283.71, "end": 284.01, "word": " ago", "probability": 0.8681640625}, {"start": 284.01, "end": 285.25, "word": " Now,", "probability": 0.45361328125}, {"start": 285.47, "end": 285.65, "word": " in", "probability": 0.67236328125}, {"start": 285.65, "end": 285.93, "word": " addition", "probability": 0.9755859375}, {"start": 285.93, "end": 286.13, "word": " to", "probability": 0.91650390625}, {"start": 286.13, "end": 286.19, "word": " the", "probability": 0.8583984375}, {"start": 286.19, "end": 286.47, "word": " example", "probability": 0.85009765625}, {"start": 286.47, "end": 286.59, "word": " that", "probability": 0.439453125}, {"start": 286.59, "end": 286.59, "word": " we", "probability": 0.90966796875}, {"start": 286.59, "end": 286.79, "word": " took", "probability": 0.73828125}, {"start": 286.79, "end": 286.95, "word": " in", "probability": 0.52099609375}, {"start": 286.95, "end": 286.97, "word": " the", "probability": 0.8408203125}, {"start": 286.97, "end": 286.97, "word": " previous", "probability": 0.472900390625}, {"start": 286.97, "end": 287.57, "word": " lecture", "probability": 0.76220703125}, {"start": 287.57, "end": 287.85, "word": " which", "probability": 0.34326171875}, {"start": 287.85, "end": 288.39, "word": " talks", "probability": 0.38037109375}, {"start": 288.39, "end": 288.53, "word": " about", "probability": 0.9091796875}, {"start": 288.53, "end": 288.83, "word": " mobile", "probability": 0.712890625}, {"start": 288.83, "end": 289.37, "word": " applications", "probability": 0.61474609375}, {"start": 289.37, "end": 289.61, "word": " and", "probability": 0.9111328125}, {"start": 289.61, "end": 289.67, "word": " the", "probability": 0.68701171875}, {"start": 289.67, "end": 289.89, "word": " modes", "probability": 0.6201171875}, {"start": 289.89, "end": 290.03, "word": " in", "probability": 0.2978515625}, {"start": 290.03, "end": 290.59, "word": " which", "probability": 0.93408203125}, {"start": 290.59, "end": 290.59, "word": " they", "probability": 0.51025390625}, {"start": 290.59, "end": 290.59, "word": " work", "probability": 0.80029296875}, {"start": 290.59, "end": 291.43, "word": " Let's", "probability": 0.7139892578125}, {"start": 291.43, "end": 291.63, "word": " see", "probability": 0.5400390625}, {"start": 291.63, "end": 292.23, "word": " another", "probability": 0.89111328125}, {"start": 292.23, "end": 292.23, "word": " example", "probability": 0.97314453125}, {"start": 292.23, "end": 292.43, "word": " that", "probability": 0.4560546875}, {"start": 292.43, "end": 292.63, "word": " talks", "probability": 0.84423828125}, {"start": 292.63, "end": 292.87, "word": " about", "probability": 0.91552734375}, {"start": 292.87, "end": 293.29, "word": " robots", "probability": 0.44677734375}, {"start": 293.29, "end": 293.97, "word": " applications", "probability": 0.75}, {"start": 293.97, "end": 295.23, "word": " They", "probability": 0.2587890625}, {"start": 295.23, "end": 295.39, "word": " want", "probability": 0.78564453125}, {"start": 295.39, "end": 295.41, "word": " to", "probability": 0.9716796875}, {"start": 295.41, "end": 295.51, "word": " make", "probability": 0.625}, {"start": 295.51, "end": 295.65, "word": " a", "probability": 0.52001953125}, {"start": 295.65, "end": 296.13, "word": " robot", "probability": 0.71533203125}, {"start": 296.13, "end": 296.49, "word": " application", "probability": 0.693359375}, {"start": 296.49, "end": 296.85, "word": " or", "probability": 0.57861328125}, {"start": 296.85, "end": 297.35, "word": " similar", "probability": 0.306640625}, {"start": 297.35, "end": 297.59, "word": " to", "probability": 0.93310546875}, {"start": 297.59, "end": 297.65, "word": " the", "probability": 0.5322265625}, {"start": 297.65, "end": 297.69, "word": " previous", "probability": 0.57568359375}, {"start": 297.69, "end": 298.11, "word": " lecture", "probability": 0.875}, {"start": 298.11, "end": 298.51, "word": " in", "probability": 0.58349609375}, {"start": 298.51, "end": 298.83, "word": " computer", "probability": 0.486328125}, {"start": 298.83, "end": 299.21, "word": " player", "probability": 0.81201171875}], "temperature": 1.0}, {"id": 15, "seek": 31658, "start": 300.1, "end": 316.58, "text": "Now, the player in the computer or the robot, for example, sometimes it is an attacker, sometimes it is a defender, sometimes it is in a normal situation, so we want to see how this robot can change the code or the state in which it works during the runtime by applying the strategy pattern", "tokens": [13267, 11, 264, 4256, 294, 264, 3820, 420, 264, 7881, 11, 337, 1365, 11, 2171, 309, 307, 364, 35871, 11, 2171, 309, 307, 257, 26537, 11, 2171, 309, 307, 294, 257, 2710, 2590, 11, 370, 321, 528, 281, 536, 577, 341, 7881, 393, 1319, 264, 3089, 420, 264, 1785, 294, 597, 309, 1985, 1830, 264, 34474, 538, 9275, 264, 5206, 5102], "avg_logprob": -0.4682459739908095, "compression_ratio": 1.7261904761904763, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 300.1, "end": 300.5, "word": "Now,", "probability": 0.1005859375}, {"start": 300.58, "end": 300.6, "word": " the", "probability": 0.266845703125}, {"start": 300.6, "end": 300.82, "word": " player", "probability": 0.5751953125}, {"start": 300.82, "end": 300.96, "word": " in", "probability": 0.443115234375}, {"start": 300.96, "end": 301.06, "word": " the", "probability": 0.70849609375}, {"start": 301.06, "end": 301.48, "word": " computer", "probability": 0.8134765625}, {"start": 301.48, "end": 301.68, "word": " or", "probability": 0.7763671875}, {"start": 301.68, "end": 301.78, "word": " the", "probability": 0.5458984375}, {"start": 301.78, "end": 302.04, "word": " robot,", "probability": 0.9072265625}, {"start": 302.34, "end": 302.44, "word": " for", "probability": 0.599609375}, {"start": 302.44, "end": 302.64, "word": " example,", "probability": 0.8974609375}, {"start": 302.88, "end": 303.08, "word": " sometimes", "probability": 0.46435546875}, {"start": 303.08, "end": 303.22, "word": " it", "probability": 0.3447265625}, {"start": 303.22, "end": 303.36, "word": " is", "probability": 0.5556640625}, {"start": 303.36, "end": 303.52, "word": " an", "probability": 0.348388671875}, {"start": 303.52, "end": 303.76, "word": " attacker,", "probability": 0.86572265625}, {"start": 303.94, "end": 304.06, "word": " sometimes", "probability": 0.89892578125}, {"start": 304.06, "end": 304.12, "word": " it", "probability": 0.662109375}, {"start": 304.12, "end": 304.3, "word": " is", "probability": 0.8662109375}, {"start": 304.3, "end": 304.4, "word": " a", "probability": 0.89599609375}, {"start": 304.4, "end": 304.64, "word": " defender,", "probability": 0.82568359375}, {"start": 304.84, "end": 304.98, "word": " sometimes", "probability": 0.86474609375}, {"start": 304.98, "end": 305.1, "word": " it", "probability": 0.9140625}, {"start": 305.1, "end": 305.28, "word": " is", "probability": 0.86376953125}, {"start": 305.28, "end": 305.34, "word": " in", "probability": 0.86083984375}, {"start": 305.34, "end": 305.64, "word": " a", "probability": 0.5703125}, {"start": 305.64, "end": 306.14, "word": " normal", "probability": 0.583984375}, {"start": 306.14, "end": 306.3, "word": " situation,", "probability": 0.338623046875}, {"start": 307.02, "end": 307.26, "word": " so", "probability": 0.66845703125}, {"start": 307.26, "end": 307.44, "word": " we", "probability": 0.91748046875}, {"start": 307.44, "end": 307.58, "word": " want", "probability": 0.7529296875}, {"start": 307.58, "end": 307.68, "word": " to", "probability": 0.97216796875}, {"start": 307.68, "end": 307.86, "word": " see", "probability": 0.8837890625}, {"start": 307.86, "end": 308.12, "word": " how", "probability": 0.93359375}, {"start": 308.12, "end": 308.44, "word": " this", "probability": 0.48486328125}, {"start": 308.44, "end": 308.76, "word": " robot", "probability": 0.9150390625}, {"start": 308.76, "end": 309.18, "word": " can", "probability": 0.2288818359375}, {"start": 309.18, "end": 309.96, "word": " change", "probability": 0.85986328125}, {"start": 309.96, "end": 310.76, "word": " the", "probability": 0.87353515625}, {"start": 310.76, "end": 311.12, "word": " code", "probability": 0.8134765625}, {"start": 311.12, "end": 311.4, "word": " or", "probability": 0.91455078125}, {"start": 311.4, "end": 311.56, "word": " the", "probability": 0.77099609375}, {"start": 311.56, "end": 311.86, "word": " state", "probability": 0.55126953125}, {"start": 311.86, "end": 311.96, "word": " in", "probability": 0.2164306640625}, {"start": 311.96, "end": 311.96, "word": " which", "probability": 0.94482421875}, {"start": 311.96, "end": 312.04, "word": " it", "probability": 0.89501953125}, {"start": 312.04, "end": 312.38, "word": " works", "probability": 0.5712890625}, {"start": 312.38, "end": 313.02, "word": " during", "probability": 0.83837890625}, {"start": 313.02, "end": 313.58, "word": " the", "probability": 0.61083984375}, {"start": 313.58, "end": 314.06, "word": " runtime", "probability": 0.64794921875}, {"start": 314.06, "end": 314.66, "word": " by", "probability": 0.314697265625}, {"start": 314.66, "end": 315.76, "word": " applying", "probability": 0.3955078125}, {"start": 315.76, "end": 315.96, "word": " the", "probability": 0.70068359375}, {"start": 315.96, "end": 316.28, "word": " strategy", "probability": 0.6806640625}, {"start": 316.28, "end": 316.58, "word": " pattern", "probability": 0.7900390625}], "temperature": 1.0}, {"id": 16, "seek": 34346, "start": 317.42, "end": 343.46, "text": "Let's consider an application used to simulate and study robots interaction For the beginning, a simple application is created to simulate an arena where robots are interacting We have the following classes", "tokens": [8373, 311, 1949, 364, 3861, 1143, 281, 27817, 293, 2979, 14733, 9285, 1171, 264, 2863, 11, 257, 2199, 3861, 307, 2942, 281, 27817, 364, 18451, 689, 14733, 366, 18017, 492, 362, 264, 3480, 5359], "avg_logprob": -0.24575894219534739, "compression_ratio": 1.5606060606060606, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 317.42, "end": 318.16, "word": "Let's", "probability": 0.4832000732421875}, {"start": 318.16, "end": 318.6, "word": " consider", "probability": 0.88427734375}, {"start": 318.6, "end": 318.82, "word": " an", "probability": 0.91650390625}, {"start": 318.82, "end": 319.4, "word": " application", "probability": 0.92138671875}, {"start": 319.4, "end": 320.44, "word": " used", "probability": 0.873046875}, {"start": 320.44, "end": 320.84, "word": " to", "probability": 0.96728515625}, {"start": 320.84, "end": 321.44, "word": " simulate", "probability": 0.97802734375}, {"start": 321.44, "end": 321.82, "word": " and", "probability": 0.93017578125}, {"start": 321.82, "end": 322.22, "word": " study", "probability": 0.9306640625}, {"start": 322.22, "end": 322.58, "word": " robots", "probability": 0.85302734375}, {"start": 322.58, "end": 323.2, "word": " interaction", "probability": 0.71533203125}, {"start": 323.2, "end": 324.16, "word": " For", "probability": 0.3173828125}, {"start": 324.16, "end": 331.04, "word": " the", "probability": 0.80712890625}, {"start": 331.04, "end": 331.4, "word": " beginning,", "probability": 0.916015625}, {"start": 331.82, "end": 331.98, "word": " a", "probability": 0.94091796875}, {"start": 331.98, "end": 332.3, "word": " simple", "probability": 0.935546875}, {"start": 332.3, "end": 332.84, "word": " application", "probability": 0.9208984375}, {"start": 332.84, "end": 333.08, "word": " is", "probability": 0.93798828125}, {"start": 333.08, "end": 333.6, "word": " created", "probability": 0.81640625}, {"start": 333.6, "end": 333.82, "word": " to", "probability": 0.96923828125}, {"start": 333.82, "end": 334.22, "word": " simulate", "probability": 0.98779296875}, {"start": 334.22, "end": 335.06, "word": " an", "probability": 0.92822265625}, {"start": 335.06, "end": 335.46, "word": " arena", "probability": 0.900390625}, {"start": 335.46, "end": 335.66, "word": " where", "probability": 0.90087890625}, {"start": 335.66, "end": 335.98, "word": " robots", "probability": 0.89208984375}, {"start": 335.98, "end": 336.14, "word": " are", "probability": 0.908203125}, {"start": 336.14, "end": 336.76, "word": " interacting", "probability": 0.84423828125}, {"start": 336.76, "end": 341.66, "word": " We", "probability": 0.45361328125}, {"start": 341.66, "end": 341.96, "word": " have", "probability": 0.94677734375}, {"start": 341.96, "end": 342.12, "word": " the", "probability": 0.9150390625}, {"start": 342.12, "end": 342.52, "word": " following", "probability": 0.9140625}, {"start": 342.52, "end": 343.46, "word": " classes", "probability": 0.86328125}], "temperature": 1.0}, {"id": 17, "seek": 35267, "start": 344.75, "end": 352.67, "text": "Now, the first thing is the UML diagram for the code to be executed, but before we see the UML diagram, let's look at the code itself", "tokens": [13267, 11, 264, 700, 551, 307, 264, 31335, 43, 10686, 337, 264, 3089, 281, 312, 17577, 11, 457, 949, 321, 536, 264, 31335, 43, 10686, 11, 718, 311, 574, 412, 264, 3089, 2564], "avg_logprob": -0.5390625210369334, "compression_ratio": 1.316831683168317, "no_speech_prob": 2.1457672119140625e-06, "words": [{"start": 344.75, "end": 345.15, "word": "Now,", "probability": 0.20556640625}, {"start": 345.21, "end": 345.43, "word": " the", "probability": 0.273681640625}, {"start": 345.43, "end": 345.43, "word": " first", "probability": 0.8544921875}, {"start": 345.43, "end": 345.73, "word": " thing", "probability": 0.75}, {"start": 345.73, "end": 346.27, "word": " is", "probability": 0.56201171875}, {"start": 346.27, "end": 346.91, "word": " the", "probability": 0.40576171875}, {"start": 346.91, "end": 347.31, "word": " UML", "probability": 0.63671875}, {"start": 347.31, "end": 347.65, "word": " diagram", "probability": 0.73583984375}, {"start": 347.65, "end": 347.89, "word": " for", "probability": 0.4794921875}, {"start": 347.89, "end": 347.99, "word": " the", "probability": 0.81591796875}, {"start": 347.99, "end": 348.33, "word": " code", "probability": 0.87744140625}, {"start": 348.33, "end": 349.15, "word": " to", "probability": 0.130615234375}, {"start": 349.15, "end": 349.33, "word": " be", "probability": 0.51953125}, {"start": 349.33, "end": 349.61, "word": " executed,", "probability": 0.80078125}, {"start": 349.89, "end": 350.03, "word": " but", "probability": 0.814453125}, {"start": 350.03, "end": 350.35, "word": " before", "probability": 0.77001953125}, {"start": 350.35, "end": 350.55, "word": " we", "probability": 0.3837890625}, {"start": 350.55, "end": 350.71, "word": " see", "probability": 0.55224609375}, {"start": 350.71, "end": 350.83, "word": " the", "probability": 0.77880859375}, {"start": 350.83, "end": 351.05, "word": " UML", "probability": 0.6710205078125}, {"start": 351.05, "end": 351.37, "word": " diagram,", "probability": 0.81689453125}, {"start": 351.51, "end": 351.69, "word": " let's", "probability": 0.89794921875}, {"start": 351.69, "end": 351.93, "word": " look", "probability": 0.51318359375}, {"start": 351.93, "end": 352.05, "word": " at", "probability": 0.958984375}, {"start": 352.05, "end": 352.15, "word": " the", "probability": 0.90380859375}, {"start": 352.15, "end": 352.33, "word": " code", "probability": 0.90283203125}, {"start": 352.33, "end": 352.67, "word": " itself", "probability": 0.6376953125}], "temperature": 1.0}, {"id": 18, "seek": 38212, "start": 357.04, "end": 382.12, "text": " As I said, the robot will work with different algorithms. The algorithms that the robot will work with are aggressive, defensive and defensive. And each one of them has a different code than the other. So he tells me to make all three algorithms in a class and make them all the same type by implementing an interface called", "tokens": [1018, 286, 848, 11, 264, 7881, 486, 589, 365, 819, 14642, 13, 440, 14642, 300, 264, 7881, 486, 589, 365, 366, 10762, 11, 16468, 293, 16468, 13, 400, 1184, 472, 295, 552, 575, 257, 819, 3089, 813, 264, 661, 13, 407, 415, 5112, 385, 281, 652, 439, 1045, 14642, 294, 257, 1508, 293, 652, 552, 439, 264, 912, 2010, 538, 18114, 364, 9226, 1219], "avg_logprob": -0.58125, "compression_ratio": 1.7379679144385027, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 357.04, "end": 357.3, "word": " As", "probability": 0.35400390625}, {"start": 357.3, "end": 357.44, "word": " I", "probability": 0.87548828125}, {"start": 357.44, "end": 357.68, "word": " said,", "probability": 0.6865234375}, {"start": 357.82, "end": 357.9, "word": " the", "probability": 0.51025390625}, {"start": 357.9, "end": 358.1, "word": " robot", "probability": 0.73193359375}, {"start": 358.1, "end": 358.28, "word": " will", "probability": 0.25537109375}, {"start": 358.28, "end": 358.54, "word": " work", "probability": 0.375}, {"start": 358.54, "end": 358.68, "word": " with", "probability": 0.5263671875}, {"start": 358.68, "end": 358.76, "word": " different", "probability": 0.77783203125}, {"start": 358.76, "end": 359.2, "word": " algorithms.", "probability": 0.94873046875}, {"start": 360.7, "end": 361.24, "word": " The", "probability": 0.364501953125}, {"start": 361.24, "end": 361.8, "word": " algorithms", "probability": 0.91357421875}, {"start": 361.8, "end": 361.94, "word": " that", "probability": 0.310546875}, {"start": 361.94, "end": 362.0, "word": " the", "probability": 0.54296875}, {"start": 362.0, "end": 362.0, "word": " robot", "probability": 0.88037109375}, {"start": 362.0, "end": 362.0, "word": " will", "probability": 0.66455078125}, {"start": 362.0, "end": 362.18, "word": " work", "probability": 0.763671875}, {"start": 362.18, "end": 362.66, "word": " with", "probability": 0.76025390625}, {"start": 362.66, "end": 363.18, "word": " are", "probability": 0.409423828125}, {"start": 363.18, "end": 363.8, "word": " aggressive,", "probability": 0.498291015625}, {"start": 366.46, "end": 367.0, "word": " defensive", "probability": 0.8154296875}, {"start": 367.0, "end": 369.24, "word": " and", "probability": 0.33837890625}, {"start": 369.24, "end": 370.3, "word": " defensive.", "probability": 0.413818359375}, {"start": 370.36, "end": 370.9, "word": " And", "probability": 0.2103271484375}, {"start": 370.9, "end": 371.1, "word": " each", "probability": 0.822265625}, {"start": 371.1, "end": 371.32, "word": " one", "probability": 0.58837890625}, {"start": 371.32, "end": 371.46, "word": " of", "probability": 0.53173828125}, {"start": 371.46, "end": 371.58, "word": " them", "probability": 0.85595703125}, {"start": 371.58, "end": 371.78, "word": " has", "probability": 0.78466796875}, {"start": 371.78, "end": 371.94, "word": " a", "probability": 0.7333984375}, {"start": 371.94, "end": 372.44, "word": " different", "probability": 0.6591796875}, {"start": 372.44, "end": 372.44, "word": " code", "probability": 0.90185546875}, {"start": 372.44, "end": 372.72, "word": " than", "probability": 0.330322265625}, {"start": 372.72, "end": 372.86, "word": " the", "probability": 0.890625}, {"start": 372.86, "end": 373.06, "word": " other.", "probability": 0.76513671875}, {"start": 373.18, "end": 373.28, "word": " So", "probability": 0.54443359375}, {"start": 373.28, "end": 373.42, "word": " he", "probability": 0.437744140625}, {"start": 373.42, "end": 373.64, "word": " tells", "probability": 0.33935546875}, {"start": 373.64, "end": 373.96, "word": " me", "probability": 0.6572265625}, {"start": 373.96, "end": 374.4, "word": " to", "probability": 0.81298828125}, {"start": 374.4, "end": 374.9, "word": " make", "probability": 0.494873046875}, {"start": 374.9, "end": 375.02, "word": " all", "probability": 0.411376953125}, {"start": 375.02, "end": 375.02, "word": " three", "probability": 0.3125}, {"start": 375.02, "end": 375.64, "word": " algorithms", "probability": 0.94189453125}, {"start": 375.64, "end": 376.66, "word": " in", "probability": 0.56298828125}, {"start": 376.66, "end": 376.74, "word": " a", "probability": 0.22607421875}, {"start": 376.74, "end": 377.12, "word": " class", "probability": 0.89111328125}, {"start": 377.12, "end": 378.14, "word": " and", "probability": 0.45751953125}, {"start": 378.14, "end": 378.42, "word": " make", "probability": 0.413330078125}, {"start": 378.42, "end": 378.98, "word": " them", "probability": 0.78173828125}, {"start": 378.98, "end": 378.98, "word": " all", "probability": 0.802734375}, {"start": 378.98, "end": 379.16, "word": " the", "probability": 0.5087890625}, {"start": 379.16, "end": 379.5, "word": " same", "probability": 0.8974609375}, {"start": 379.5, "end": 379.5, "word": " type", "probability": 0.52783203125}, {"start": 379.5, "end": 379.86, "word": " by", "probability": 0.77783203125}, {"start": 379.86, "end": 380.68, "word": " implementing", "probability": 0.533203125}, {"start": 380.68, "end": 381.02, "word": " an", "probability": 0.44677734375}, {"start": 381.02, "end": 381.44, "word": " interface", "probability": 0.8798828125}, {"start": 381.44, "end": 382.12, "word": " called", "probability": 0.66552734375}], "temperature": 1.0}, {"id": 19, "seek": 41186, "start": 382.84, "end": 411.86, "text": " I behavior so I made an interface called I behavior there is a method called move command because each one implemented the move command in a different way the aggressive behavior of course I just wrote a message if find another robot attack it means what will this do? it will attack the second defensive behavior also implemented the move command and this is a message if find another robot run from it this is defensive the normal", "tokens": [286, 5223, 370, 286, 1027, 364, 9226, 1219, 286, 5223, 456, 307, 257, 3170, 1219, 1286, 5622, 570, 1184, 472, 12270, 264, 1286, 5622, 294, 257, 819, 636, 264, 10762, 5223, 295, 1164, 286, 445, 4114, 257, 3636, 498, 915, 1071, 7881, 2690, 309, 1355, 437, 486, 341, 360, 30, 309, 486, 2690, 264, 1150, 16468, 5223, 611, 12270, 264, 1286, 5622, 293, 341, 307, 257, 3636, 498, 915, 1071, 7881, 1190, 490, 309, 341, 307, 16468, 264, 2710], "avg_logprob": -0.45195313058793546, "compression_ratio": 2.0233644859813085, "no_speech_prob": 7.092952728271484e-05, "words": [{"start": 382.84, "end": 383.08, "word": " I", "probability": 0.45751953125}, {"start": 383.08, "end": 383.54, "word": " behavior", "probability": 0.56494140625}, {"start": 383.54, "end": 384.12, "word": " so", "probability": 0.11083984375}, {"start": 384.12, "end": 384.2, "word": " I", "probability": 0.5615234375}, {"start": 384.2, "end": 384.3, "word": " made", "probability": 0.572265625}, {"start": 384.3, "end": 384.4, "word": " an", "probability": 0.55712890625}, {"start": 384.4, "end": 384.78, "word": " interface", "probability": 0.892578125}, {"start": 384.78, "end": 385.04, "word": " called", "probability": 0.40087890625}, {"start": 385.04, "end": 385.24, "word": " I", "probability": 0.82177734375}, {"start": 385.24, "end": 385.68, "word": " behavior", "probability": 0.83642578125}, {"start": 385.68, "end": 385.94, "word": " there", "probability": 0.1512451171875}, {"start": 385.94, "end": 385.94, "word": " is", "probability": 0.7216796875}, {"start": 385.94, "end": 386.02, "word": " a", "probability": 0.85791015625}, {"start": 386.02, "end": 386.24, "word": " method", "probability": 0.9462890625}, {"start": 386.24, "end": 386.54, "word": " called", "probability": 0.60205078125}, {"start": 386.54, "end": 386.98, "word": " move", "probability": 0.87841796875}, {"start": 386.98, "end": 388.2, "word": " command", "probability": 0.67626953125}, {"start": 388.2, "end": 388.96, "word": " because", "probability": 0.552734375}, {"start": 388.96, "end": 389.26, "word": " each", "probability": 0.53466796875}, {"start": 389.26, "end": 389.46, "word": " one", "probability": 0.51220703125}, {"start": 389.46, "end": 390.04, "word": " implemented", "probability": 0.154541015625}, {"start": 390.04, "end": 390.34, "word": " the", "probability": 0.61328125}, {"start": 390.34, "end": 390.52, "word": " move", "probability": 0.93212890625}, {"start": 390.52, "end": 390.84, "word": " command", "probability": 0.9287109375}, {"start": 390.84, "end": 391.0, "word": " in", "probability": 0.744140625}, {"start": 391.0, "end": 391.28, "word": " a", "probability": 0.7763671875}, {"start": 391.28, "end": 391.5, "word": " different", "probability": 0.87255859375}, {"start": 391.5, "end": 391.72, "word": " way", "probability": 0.91796875}, {"start": 391.72, "end": 392.5, "word": " the", "probability": 0.342041015625}, {"start": 392.5, "end": 392.96, "word": " aggressive", "probability": 0.70947265625}, {"start": 392.96, "end": 393.56, "word": " behavior", "probability": 0.94482421875}, {"start": 393.56, "end": 393.88, "word": " of", "probability": 0.496826171875}, {"start": 393.88, "end": 393.96, "word": " course", "probability": 0.9521484375}, {"start": 393.96, "end": 394.5, "word": " I", "probability": 0.86962890625}, {"start": 394.5, "end": 394.62, "word": " just", "probability": 0.1832275390625}, {"start": 394.62, "end": 394.62, "word": " wrote", "probability": 0.7451171875}, {"start": 394.62, "end": 395.04, "word": " a", "probability": 0.7880859375}, {"start": 395.04, "end": 395.38, "word": " message", "probability": 0.71533203125}, {"start": 395.38, "end": 395.72, "word": " if", "probability": 0.6767578125}, {"start": 395.72, "end": 396.04, "word": " find", "probability": 0.537109375}, {"start": 396.04, "end": 396.34, "word": " another", "probability": 0.921875}, {"start": 396.34, "end": 396.78, "word": " robot", "probability": 0.9326171875}, {"start": 396.78, "end": 397.9, "word": " attack", "probability": 0.87109375}, {"start": 397.9, "end": 398.2, "word": " it", "probability": 0.95947265625}, {"start": 398.2, "end": 398.48, "word": " means", "probability": 0.2376708984375}, {"start": 398.48, "end": 398.74, "word": " what", "probability": 0.46923828125}, {"start": 398.74, "end": 398.88, "word": " will", "probability": 0.2459716796875}, {"start": 398.88, "end": 398.88, "word": " this", "probability": 0.371826171875}, {"start": 398.88, "end": 399.24, "word": " do?", "probability": 0.61962890625}, {"start": 399.36, "end": 399.74, "word": " it", "probability": 0.460205078125}, {"start": 399.74, "end": 399.76, "word": " will", "probability": 0.85498046875}, {"start": 399.76, "end": 399.96, "word": " attack", "probability": 0.904296875}, {"start": 399.96, "end": 400.8, "word": " the", "probability": 0.404052734375}, {"start": 400.8, "end": 401.14, "word": " second", "probability": 0.7958984375}, {"start": 401.14, "end": 402.24, "word": " defensive", "probability": 0.84033203125}, {"start": 402.24, "end": 402.84, "word": " behavior", "probability": 0.95263671875}, {"start": 402.84, "end": 403.7, "word": " also", "probability": 0.697265625}, {"start": 403.7, "end": 404.2, "word": " implemented", "probability": 0.66357421875}, {"start": 404.2, "end": 404.56, "word": " the", "probability": 0.7548828125}, {"start": 404.56, "end": 404.74, "word": " move", "probability": 0.951171875}, {"start": 404.74, "end": 405.22, "word": " command", "probability": 0.9296875}, {"start": 405.22, "end": 405.68, "word": " and", "probability": 0.7841796875}, {"start": 405.68, "end": 405.88, "word": " this", "probability": 0.84228515625}, {"start": 405.88, "end": 405.92, "word": " is", "probability": 0.74853515625}, {"start": 405.92, "end": 406.18, "word": " a", "probability": 0.62939453125}, {"start": 406.18, "end": 406.26, "word": " message", "probability": 0.900390625}, {"start": 406.26, "end": 406.26, "word": " if", "probability": 0.50390625}, {"start": 406.26, "end": 407.08, "word": " find", "probability": 0.7666015625}, {"start": 407.08, "end": 407.38, "word": " another", "probability": 0.921875}, {"start": 407.38, "end": 407.88, "word": " robot", "probability": 0.927734375}, {"start": 407.88, "end": 408.74, "word": " run", "probability": 0.85888671875}, {"start": 408.74, "end": 409.0, "word": " from", "probability": 0.86669921875}, {"start": 409.0, "end": 409.18, "word": " it", "probability": 0.92431640625}, {"start": 409.18, "end": 410.32, "word": " this", "probability": 0.410400390625}, {"start": 410.32, "end": 410.4, "word": " is", "probability": 0.8837890625}, {"start": 410.4, "end": 410.82, "word": " defensive", "probability": 0.66015625}, {"start": 410.82, "end": 411.5, "word": " the", "probability": 0.50146484375}, {"start": 411.5, "end": 411.86, "word": " normal", "probability": 0.849609375}], "temperature": 1.0}, {"id": 20, "seek": 42102, "start": 413.28, "end": 421.02, "text": "By printing the message, if you find another robot, ignore it So these are three algorithms, each algorithm is present in the class", "tokens": [27690, 14699, 264, 3636, 11, 498, 291, 915, 1071, 7881, 11, 11200, 309, 407, 613, 366, 1045, 14642, 11, 1184, 9284, 307, 1974, 294, 264, 1508], "avg_logprob": -0.5350115917347096, "compression_ratio": 1.297029702970297, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 413.28, "end": 413.46, "word": "By", "probability": 0.19873046875}, {"start": 413.46, "end": 413.68, "word": " printing", "probability": 0.396728515625}, {"start": 413.68, "end": 413.8, "word": " the", "probability": 0.39306640625}, {"start": 413.8, "end": 414.18, "word": " message,", "probability": 0.8271484375}, {"start": 414.32, "end": 414.46, "word": " if", "probability": 0.496826171875}, {"start": 414.46, "end": 414.64, "word": " you", "probability": 0.548828125}, {"start": 414.64, "end": 414.74, "word": " find", "probability": 0.8134765625}, {"start": 414.74, "end": 415.06, "word": " another", "probability": 0.9130859375}, {"start": 415.06, "end": 415.48, "word": " robot,", "probability": 0.908203125}, {"start": 415.84, "end": 416.08, "word": " ignore", "probability": 0.849609375}, {"start": 416.08, "end": 416.96, "word": " it", "probability": 0.9462890625}, {"start": 416.96, "end": 417.46, "word": " So", "probability": 0.2357177734375}, {"start": 417.46, "end": 417.88, "word": " these", "probability": 0.4501953125}, {"start": 417.88, "end": 417.96, "word": " are", "probability": 0.72216796875}, {"start": 417.96, "end": 418.28, "word": " three", "probability": 0.630859375}, {"start": 418.28, "end": 418.82, "word": " algorithms,", "probability": 0.931640625}, {"start": 418.88, "end": 419.04, "word": " each", "probability": 0.58984375}, {"start": 419.04, "end": 419.5, "word": " algorithm", "probability": 0.3876953125}, {"start": 419.5, "end": 419.62, "word": " is", "probability": 0.5703125}, {"start": 419.62, "end": 419.88, "word": " present", "probability": 0.5380859375}, {"start": 419.88, "end": 420.66, "word": " in", "probability": 0.912109375}, {"start": 420.66, "end": 420.74, "word": " the", "probability": 0.42626953125}, {"start": 420.74, "end": 421.02, "word": " class", "probability": 0.95361328125}], "temperature": 1.0}, {"id": 21, "seek": 44416, "start": 424.46, "end": 444.16, "text": "Now this class is the robot, which is my app that I want it to work in different situations during execution So this is the class robot, and one of the attributes in the class robot is what? The eye behavior In the end, it will take one attribute of the eye behavior type because in one moment it will work in one way, okay?", "tokens": [13267, 341, 1508, 307, 264, 7881, 11, 597, 307, 452, 724, 300, 286, 528, 309, 281, 589, 294, 819, 6851, 1830, 15058, 407, 341, 307, 264, 1508, 7881, 11, 293, 472, 295, 264, 17212, 294, 264, 1508, 7881, 307, 437, 30, 440, 3313, 5223, 682, 264, 917, 11, 309, 486, 747, 472, 19667, 295, 264, 3313, 5223, 2010, 570, 294, 472, 1623, 309, 486, 589, 294, 472, 636, 11, 1392, 30], "avg_logprob": -0.4683159585628245, "compression_ratio": 1.7142857142857142, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 424.46, "end": 424.86, "word": "Now", "probability": 0.45458984375}, {"start": 424.86, "end": 425.08, "word": " this", "probability": 0.67529296875}, {"start": 425.08, "end": 425.5, "word": " class", "probability": 0.560546875}, {"start": 425.5, "end": 425.64, "word": " is", "probability": 0.36181640625}, {"start": 425.64, "end": 425.68, "word": " the", "probability": 0.406494140625}, {"start": 425.68, "end": 425.98, "word": " robot,", "probability": 0.87646484375}, {"start": 426.66, "end": 426.7, "word": " which", "probability": 0.64111328125}, {"start": 426.7, "end": 426.86, "word": " is", "probability": 0.9267578125}, {"start": 426.86, "end": 426.94, "word": " my", "probability": 0.2264404296875}, {"start": 426.94, "end": 427.54, "word": " app", "probability": 0.38525390625}, {"start": 427.54, "end": 427.94, "word": " that", "probability": 0.62548828125}, {"start": 427.94, "end": 428.18, "word": " I", "probability": 0.3291015625}, {"start": 428.18, "end": 428.18, "word": " want", "probability": 0.81640625}, {"start": 428.18, "end": 428.4, "word": " it", "probability": 0.66650390625}, {"start": 428.4, "end": 428.46, "word": " to", "probability": 0.94287109375}, {"start": 428.46, "end": 428.7, "word": " work", "probability": 0.59326171875}, {"start": 428.7, "end": 428.84, "word": " in", "probability": 0.71923828125}, {"start": 428.84, "end": 429.58, "word": " different", "probability": 0.7822265625}, {"start": 429.58, "end": 429.7, "word": " situations", "probability": 0.46044921875}, {"start": 429.7, "end": 430.16, "word": " during", "probability": 0.52978515625}, {"start": 430.16, "end": 430.64, "word": " execution", "probability": 0.44482421875}, {"start": 430.64, "end": 431.48, "word": " So", "probability": 0.468017578125}, {"start": 431.48, "end": 431.74, "word": " this", "probability": 0.810546875}, {"start": 431.74, "end": 431.8, "word": " is", "probability": 0.8369140625}, {"start": 431.8, "end": 431.86, "word": " the", "probability": 0.71044921875}, {"start": 431.86, "end": 432.14, "word": " class", "probability": 0.6572265625}, {"start": 432.14, "end": 432.48, "word": " robot,", "probability": 0.68701171875}, {"start": 432.78, "end": 432.88, "word": " and", "probability": 0.88037109375}, {"start": 432.88, "end": 433.1, "word": " one", "probability": 0.90576171875}, {"start": 433.1, "end": 433.22, "word": " of", "probability": 0.921875}, {"start": 433.22, "end": 433.24, "word": " the", "probability": 0.81005859375}, {"start": 433.24, "end": 433.72, "word": " attributes", "probability": 0.88330078125}, {"start": 433.72, "end": 433.86, "word": " in", "probability": 0.5478515625}, {"start": 433.86, "end": 433.94, "word": " the", "probability": 0.61376953125}, {"start": 433.94, "end": 434.18, "word": " class", "probability": 0.7392578125}, {"start": 434.18, "end": 434.44, "word": " robot", "probability": 0.92529296875}, {"start": 434.44, "end": 434.66, "word": " is", "probability": 0.90673828125}, {"start": 434.66, "end": 434.86, "word": " what?", "probability": 0.286865234375}, {"start": 435.42, "end": 435.78, "word": " The", "probability": 0.5126953125}, {"start": 435.78, "end": 435.96, "word": " eye", "probability": 0.444091796875}, {"start": 435.96, "end": 436.36, "word": " behavior", "probability": 0.8349609375}, {"start": 436.36, "end": 437.48, "word": " In", "probability": 0.2069091796875}, {"start": 437.48, "end": 437.62, "word": " the", "probability": 0.85107421875}, {"start": 437.62, "end": 437.78, "word": " end,", "probability": 0.92041015625}, {"start": 437.88, "end": 437.88, "word": " it", "probability": 0.7958984375}, {"start": 437.88, "end": 438.0, "word": " will", "probability": 0.7314453125}, {"start": 438.0, "end": 438.2, "word": " take", "probability": 0.6787109375}, {"start": 438.2, "end": 438.96, "word": " one", "probability": 0.7216796875}, {"start": 438.96, "end": 438.96, "word": " attribute", "probability": 0.81494140625}, {"start": 438.96, "end": 439.44, "word": " of", "probability": 0.59326171875}, {"start": 439.44, "end": 439.54, "word": " the", "probability": 0.705078125}, {"start": 439.54, "end": 439.84, "word": " eye", "probability": 0.68212890625}, {"start": 439.84, "end": 440.28, "word": " behavior", "probability": 0.92724609375}, {"start": 440.28, "end": 440.28, "word": " type", "probability": 0.486328125}, {"start": 440.28, "end": 440.5, "word": " because", "probability": 0.333740234375}, {"start": 440.5, "end": 440.66, "word": " in", "probability": 0.464111328125}, {"start": 440.66, "end": 440.76, "word": " one", "probability": 0.406005859375}, {"start": 440.76, "end": 441.36, "word": " moment", "probability": 0.7998046875}, {"start": 441.36, "end": 441.82, "word": " it", "probability": 0.77392578125}, {"start": 441.82, "end": 441.88, "word": " will", "probability": 0.79296875}, {"start": 441.88, "end": 442.12, "word": " work", "probability": 0.8505859375}, {"start": 442.12, "end": 442.22, "word": " in", "probability": 0.7177734375}, {"start": 442.22, "end": 443.32, "word": " one", "probability": 0.74267578125}, {"start": 443.32, "end": 443.5, "word": " way,", "probability": 0.8662109375}, {"start": 443.92, "end": 444.16, "word": " okay?", "probability": 0.475830078125}], "temperature": 1.0}, {"id": 22, "seek": 46873, "start": 444.87, "end": 468.73, "text": "And this is the attribute name for the robot, just to give it a name This is the constructor of the robot, and since I have an attribute of the type IBehaviour, I have to make it a set method, and this is a get method, it is not a must The set behavior takes an object of the type IBehaviour, the interface type, this means that we can send any object implemented to the interface", "tokens": [5289, 341, 307, 264, 19667, 1315, 337, 264, 7881, 11, 445, 281, 976, 309, 257, 1315, 639, 307, 264, 47479, 295, 264, 7881, 11, 293, 1670, 286, 362, 364, 19667, 295, 264, 2010, 286, 6524, 71, 18442, 396, 11, 286, 362, 281, 652, 309, 257, 992, 3170, 11, 293, 341, 307, 257, 483, 3170, 11, 309, 307, 406, 257, 1633, 440, 992, 5223, 2516, 364, 2657, 295, 264, 2010, 286, 6524, 71, 18442, 396, 11, 264, 9226, 2010, 11, 341, 1355, 300, 321, 393, 2845, 604, 2657, 12270, 281, 264, 9226], "avg_logprob": -0.44395380920690036, "compression_ratio": 1.9387755102040816, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 444.87, "end": 445.01, "word": "And", "probability": 0.2147216796875}, {"start": 445.01, "end": 445.15, "word": " this", "probability": 0.75048828125}, {"start": 445.15, "end": 445.17, "word": " is", "probability": 0.6630859375}, {"start": 445.17, "end": 445.25, "word": " the", "probability": 0.330078125}, {"start": 445.25, "end": 445.51, "word": " attribute", "probability": 0.77587890625}, {"start": 445.51, "end": 445.97, "word": " name", "probability": 0.85205078125}, {"start": 445.97, "end": 446.39, "word": " for", "probability": 0.459228515625}, {"start": 446.39, "end": 446.51, "word": " the", "probability": 0.724609375}, {"start": 446.51, "end": 446.65, "word": " robot,", "probability": 0.8818359375}, {"start": 446.75, "end": 446.83, "word": " just", "probability": 0.256103515625}, {"start": 446.83, "end": 446.91, "word": " to", "probability": 0.82177734375}, {"start": 446.91, "end": 447.09, "word": " give", "probability": 0.666015625}, {"start": 447.09, "end": 447.21, "word": " it", "probability": 0.59130859375}, {"start": 447.21, "end": 447.27, "word": " a", "probability": 0.9140625}, {"start": 447.27, "end": 447.41, "word": " name", "probability": 0.85595703125}, {"start": 447.41, "end": 448.19, "word": " This", "probability": 0.2587890625}, {"start": 448.19, "end": 448.57, "word": " is", "probability": 0.92138671875}, {"start": 448.57, "end": 448.59, "word": " the", "probability": 0.8173828125}, {"start": 448.59, "end": 448.97, "word": " constructor", "probability": 0.78759765625}, {"start": 448.97, "end": 449.31, "word": " of", "probability": 0.6201171875}, {"start": 449.31, "end": 449.43, "word": " the", "probability": 0.857421875}, {"start": 449.43, "end": 449.71, "word": " robot,", "probability": 0.93310546875}, {"start": 449.91, "end": 450.15, "word": " and", "probability": 0.71826171875}, {"start": 450.15, "end": 450.59, "word": " since", "probability": 0.435302734375}, {"start": 450.59, "end": 451.13, "word": " I", "probability": 0.69287109375}, {"start": 451.13, "end": 451.45, "word": " have", "probability": 0.90673828125}, {"start": 451.45, "end": 451.65, "word": " an", "probability": 0.67919921875}, {"start": 451.65, "end": 452.15, "word": " attribute", "probability": 0.859375}, {"start": 452.15, "end": 452.63, "word": " of", "probability": 0.744140625}, {"start": 452.63, "end": 452.79, "word": " the", "probability": 0.3857421875}, {"start": 452.79, "end": 452.85, "word": " type", "probability": 0.434814453125}, {"start": 452.85, "end": 453.47, "word": " IBehaviour,", "probability": 0.69248046875}, {"start": 453.51, "end": 453.67, "word": " I", "probability": 0.7255859375}, {"start": 453.67, "end": 453.85, "word": " have", "probability": 0.32373046875}, {"start": 453.85, "end": 453.93, "word": " to", "probability": 0.96728515625}, {"start": 453.93, "end": 454.11, "word": " make", "probability": 0.5595703125}, {"start": 454.11, "end": 454.25, "word": " it", "probability": 0.841796875}, {"start": 454.25, "end": 454.31, "word": " a", "probability": 0.373291015625}, {"start": 454.31, "end": 454.53, "word": " set", "probability": 0.7822265625}, {"start": 454.53, "end": 455.83, "word": " method,", "probability": 0.82568359375}, {"start": 455.93, "end": 456.13, "word": " and", "probability": 0.79541015625}, {"start": 456.13, "end": 456.33, "word": " this", "probability": 0.85205078125}, {"start": 456.33, "end": 456.39, "word": " is", "probability": 0.89501953125}, {"start": 456.39, "end": 456.55, "word": " a", "probability": 0.609375}, {"start": 456.55, "end": 456.55, "word": " get", "probability": 0.93505859375}, {"start": 456.55, "end": 456.83, "word": " method,", "probability": 0.9580078125}, {"start": 456.89, "end": 456.97, "word": " it", "probability": 0.2337646484375}, {"start": 456.97, "end": 456.97, "word": " is", "probability": 0.4580078125}, {"start": 456.97, "end": 457.03, "word": " not", "probability": 0.91796875}, {"start": 457.03, "end": 457.25, "word": " a", "probability": 0.248291015625}, {"start": 457.25, "end": 457.27, "word": " must", "probability": 0.36279296875}, {"start": 457.27, "end": 458.71, "word": " The", "probability": 0.212646484375}, {"start": 458.71, "end": 459.29, "word": " set", "probability": 0.94287109375}, {"start": 459.29, "end": 459.65, "word": " behavior", "probability": 0.453857421875}, {"start": 459.65, "end": 459.95, "word": " takes", "probability": 0.73095703125}, {"start": 459.95, "end": 460.15, "word": " an", "probability": 0.59423828125}, {"start": 460.15, "end": 460.33, "word": " object", "probability": 0.97314453125}, {"start": 460.33, "end": 460.51, "word": " of", "probability": 0.85888671875}, {"start": 460.51, "end": 460.81, "word": " the", "probability": 0.70947265625}, {"start": 460.81, "end": 460.81, "word": " type", "probability": 0.88330078125}, {"start": 460.81, "end": 462.25, "word": " IBehaviour,", "probability": 0.93369140625}, {"start": 462.33, "end": 462.35, "word": " the", "probability": 0.5009765625}, {"start": 462.35, "end": 462.87, "word": " interface", "probability": 0.7080078125}, {"start": 462.87, "end": 462.91, "word": " type,", "probability": 0.83251953125}, {"start": 463.05, "end": 463.17, "word": " this", "probability": 0.400634765625}, {"start": 463.17, "end": 463.39, "word": " means", "probability": 0.912109375}, {"start": 463.39, "end": 463.57, "word": " that", "probability": 0.78369140625}, {"start": 463.57, "end": 463.71, "word": " we", "probability": 0.8896484375}, {"start": 463.71, "end": 463.89, "word": " can", "probability": 0.91650390625}, {"start": 463.89, "end": 464.37, "word": " send", "probability": 0.68408203125}, {"start": 464.37, "end": 465.29, "word": " any", "probability": 0.86279296875}, {"start": 465.29, "end": 465.85, "word": " object", "probability": 0.958984375}, {"start": 465.85, "end": 467.19, "word": " implemented", "probability": 0.1754150390625}, {"start": 467.19, "end": 467.57, "word": " to", "probability": 0.783203125}, {"start": 467.57, "end": 468.21, "word": " the", "probability": 0.8759765625}, {"start": 468.21, "end": 468.73, "word": " interface", "probability": 0.88671875}], "temperature": 1.0}, {"id": 23, "seek": 48532, "start": 469.58, "end": 485.32, "text": "Now, this is the method move that runs the robot. Actually, when I say move, it will print this message that the robot in this name based on current position, the behavior object decides the next move to be, for example, it goes to behavior and executes move", "tokens": [13267, 11, 341, 307, 264, 3170, 1286, 300, 6676, 264, 7881, 13, 5135, 11, 562, 286, 584, 1286, 11, 309, 486, 4482, 341, 3636, 300, 264, 7881, 294, 341, 1315, 2361, 322, 2190, 2535, 11, 264, 5223, 2657, 14898, 264, 958, 1286, 281, 312, 11, 337, 1365, 11, 309, 1709, 281, 5223, 293, 4454, 1819, 1286], "avg_logprob": -0.47341007517095196, "compression_ratio": 1.5731707317073171, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 469.58, "end": 469.96, "word": "Now,", "probability": 0.1796875}, {"start": 470.04, "end": 470.14, "word": " this", "probability": 0.7919921875}, {"start": 470.14, "end": 470.24, "word": " is", "probability": 0.50537109375}, {"start": 470.24, "end": 470.24, "word": " the", "probability": 0.7197265625}, {"start": 470.24, "end": 470.46, "word": " method", "probability": 0.58984375}, {"start": 470.46, "end": 470.72, "word": " move", "probability": 0.76708984375}, {"start": 470.72, "end": 471.0, "word": " that", "probability": 0.27685546875}, {"start": 471.0, "end": 471.52, "word": " runs", "probability": 0.488525390625}, {"start": 471.52, "end": 472.32, "word": " the", "probability": 0.77587890625}, {"start": 472.32, "end": 472.6, "word": " robot.", "probability": 0.9296875}, {"start": 473.08, "end": 473.48, "word": " Actually,", "probability": 0.2210693359375}, {"start": 473.82, "end": 473.92, "word": " when", "probability": 0.80078125}, {"start": 473.92, "end": 474.02, "word": " I", "probability": 0.623046875}, {"start": 474.02, "end": 474.12, "word": " say", "probability": 0.65185546875}, {"start": 474.12, "end": 474.52, "word": " move,", "probability": 0.8876953125}, {"start": 474.64, "end": 474.74, "word": " it", "probability": 0.75439453125}, {"start": 474.74, "end": 474.82, "word": " will", "probability": 0.51318359375}, {"start": 474.82, "end": 475.1, "word": " print", "probability": 0.70556640625}, {"start": 475.1, "end": 475.28, "word": " this", "probability": 0.383056640625}, {"start": 475.28, "end": 475.68, "word": " message", "probability": 0.91552734375}, {"start": 475.68, "end": 476.08, "word": " that", "probability": 0.63720703125}, {"start": 476.08, "end": 476.22, "word": " the", "probability": 0.437255859375}, {"start": 476.22, "end": 476.46, "word": " robot", "probability": 0.85302734375}, {"start": 476.46, "end": 476.78, "word": " in", "probability": 0.1207275390625}, {"start": 476.78, "end": 476.92, "word": " this", "probability": 0.82470703125}, {"start": 476.92, "end": 477.22, "word": " name", "probability": 0.86181640625}, {"start": 477.22, "end": 477.82, "word": " based", "probability": 0.54833984375}, {"start": 477.82, "end": 478.08, "word": " on", "probability": 0.951171875}, {"start": 478.08, "end": 478.48, "word": " current", "probability": 0.63818359375}, {"start": 478.48, "end": 479.14, "word": " position,", "probability": 0.93310546875}, {"start": 479.62, "end": 479.72, "word": " the", "probability": 0.826171875}, {"start": 479.72, "end": 480.12, "word": " behavior", "probability": 0.8486328125}, {"start": 480.12, "end": 480.6, "word": " object", "probability": 0.93408203125}, {"start": 480.6, "end": 481.06, "word": " decides", "probability": 0.54541015625}, {"start": 481.06, "end": 481.26, "word": " the", "probability": 0.87744140625}, {"start": 481.26, "end": 481.48, "word": " next", "probability": 0.94091796875}, {"start": 481.48, "end": 481.92, "word": " move", "probability": 0.94482421875}, {"start": 481.92, "end": 482.16, "word": " to", "probability": 0.92431640625}, {"start": 482.16, "end": 482.36, "word": " be,", "probability": 0.94384765625}, {"start": 482.48, "end": 482.54, "word": " for", "probability": 0.912109375}, {"start": 482.54, "end": 482.84, "word": " example,", "probability": 0.95654296875}, {"start": 483.32, "end": 483.44, "word": " it", "probability": 0.1544189453125}, {"start": 483.44, "end": 483.56, "word": " goes", "probability": 0.78759765625}, {"start": 483.56, "end": 483.68, "word": " to", "probability": 0.89306640625}, {"start": 483.68, "end": 484.14, "word": " behavior", "probability": 0.85791015625}, {"start": 484.14, "end": 484.56, "word": " and", "probability": 0.830078125}, {"start": 484.56, "end": 484.92, "word": " executes", "probability": 0.6451416015625}, {"start": 484.92, "end": 485.32, "word": " move", "probability": 0.4755859375}], "temperature": 1.0}, {"id": 24, "seek": 50354, "start": 487.24, "end": 503.54, "text": " Because the idea is that I want to change the behavior, I have to make a set behavior and send it a new behavior and then execute the move As we will see in the main method in the application Because in the main method I made three robots", "tokens": [1436, 264, 1558, 307, 300, 286, 528, 281, 1319, 264, 5223, 11, 286, 362, 281, 652, 257, 992, 5223, 293, 2845, 309, 257, 777, 5223, 293, 550, 14483, 264, 1286, 1018, 321, 486, 536, 294, 264, 2135, 3170, 294, 264, 3861, 1436, 294, 264, 2135, 3170, 286, 1027, 1045, 14733], "avg_logprob": -0.4427083274897407, "compression_ratio": 1.6950354609929077, "no_speech_prob": 1.5914440155029297e-05, "words": [{"start": 487.24, "end": 487.68, "word": " Because", "probability": 0.07879638671875}, {"start": 487.68, "end": 488.12, "word": " the", "probability": 0.53759765625}, {"start": 488.12, "end": 488.38, "word": " idea", "probability": 0.84814453125}, {"start": 488.38, "end": 488.58, "word": " is", "probability": 0.8310546875}, {"start": 488.58, "end": 488.64, "word": " that", "probability": 0.5966796875}, {"start": 488.64, "end": 488.76, "word": " I", "probability": 0.76953125}, {"start": 488.76, "end": 488.9, "word": " want", "probability": 0.75244140625}, {"start": 488.9, "end": 488.94, "word": " to", "probability": 0.9658203125}, {"start": 488.94, "end": 489.16, "word": " change", "probability": 0.87158203125}, {"start": 489.16, "end": 489.3, "word": " the", "probability": 0.6171875}, {"start": 489.3, "end": 489.74, "word": " behavior,", "probability": 0.8447265625}, {"start": 489.88, "end": 489.96, "word": " I", "probability": 0.499755859375}, {"start": 489.96, "end": 490.02, "word": " have", "probability": 0.36572265625}, {"start": 490.02, "end": 490.3, "word": " to", "probability": 0.96142578125}, {"start": 490.3, "end": 490.6, "word": " make", "probability": 0.37548828125}, {"start": 490.6, "end": 490.76, "word": " a", "probability": 0.346923828125}, {"start": 490.76, "end": 491.06, "word": " set", "probability": 0.66552734375}, {"start": 491.06, "end": 492.06, "word": " behavior", "probability": 0.5615234375}, {"start": 492.06, "end": 492.2, "word": " and", "probability": 0.77294921875}, {"start": 492.2, "end": 492.4, "word": " send", "probability": 0.52392578125}, {"start": 492.4, "end": 492.54, "word": " it", "probability": 0.59814453125}, {"start": 492.54, "end": 492.56, "word": " a", "probability": 0.8115234375}, {"start": 492.56, "end": 492.6, "word": " new", "probability": 0.8857421875}, {"start": 492.6, "end": 493.02, "word": " behavior", "probability": 0.94677734375}, {"start": 493.02, "end": 493.84, "word": " and", "probability": 0.578125}, {"start": 493.84, "end": 494.06, "word": " then", "probability": 0.720703125}, {"start": 494.06, "end": 494.6, "word": " execute", "probability": 0.2222900390625}, {"start": 494.6, "end": 495.6, "word": " the", "probability": 0.83203125}, {"start": 495.6, "end": 495.86, "word": " move", "probability": 0.89892578125}, {"start": 495.86, "end": 496.56, "word": " As", "probability": 0.349365234375}, {"start": 496.56, "end": 497.4, "word": " we", "probability": 0.7080078125}, {"start": 497.4, "end": 497.5, "word": " will", "probability": 0.689453125}, {"start": 497.5, "end": 497.7, "word": " see", "probability": 0.9228515625}, {"start": 497.7, "end": 498.18, "word": " in", "probability": 0.444580078125}, {"start": 498.18, "end": 499.32, "word": " the", "probability": 0.6748046875}, {"start": 499.32, "end": 499.48, "word": " main", "probability": 0.86279296875}, {"start": 499.48, "end": 499.8, "word": " method", "probability": 0.96826171875}, {"start": 499.8, "end": 499.94, "word": " in", "probability": 0.58642578125}, {"start": 499.94, "end": 500.0, "word": " the", "probability": 0.86328125}, {"start": 500.0, "end": 500.36, "word": " application", "probability": 0.81884765625}, {"start": 500.36, "end": 501.28, "word": " Because", "probability": 0.33154296875}, {"start": 501.28, "end": 501.42, "word": " in", "probability": 0.8896484375}, {"start": 501.42, "end": 501.52, "word": " the", "probability": 0.90478515625}, {"start": 501.52, "end": 501.66, "word": " main", "probability": 0.93408203125}, {"start": 501.66, "end": 502.1, "word": " method", "probability": 0.9619140625}, {"start": 502.1, "end": 502.7, "word": " I", "probability": 0.411376953125}, {"start": 502.7, "end": 502.86, "word": " made", "probability": 0.65087890625}, {"start": 502.86, "end": 503.2, "word": " three", "probability": 0.642578125}, {"start": 503.2, "end": 503.54, "word": " robots", "probability": 0.91455078125}], "temperature": 1.0}, {"id": 25, "seek": 52927, "start": 505.29, "end": 529.27, "text": " R1, R2, R3. They want to make them work, but before they make them work, they have to send a behavior to each one of them. So the first one sent a set behavior and created an object of a kind of aggressive behavior. The second one sent a set behavior of a kind of defensive behavior, and the third one sent a set behavior of a kind of normal behavior. It sent to each one of them an algorithm that will work as a class.", "tokens": [497, 16, 11, 497, 17, 11, 497, 18, 13, 814, 528, 281, 652, 552, 589, 11, 457, 949, 436, 652, 552, 589, 11, 436, 362, 281, 2845, 257, 5223, 281, 1184, 472, 295, 552, 13, 407, 264, 700, 472, 2279, 257, 992, 5223, 293, 2942, 364, 2657, 295, 257, 733, 295, 10762, 5223, 13, 440, 1150, 472, 2279, 257, 992, 5223, 295, 257, 733, 295, 16468, 5223, 11, 293, 264, 2636, 472, 2279, 257, 992, 5223, 295, 257, 733, 295, 2710, 5223, 13, 467, 2279, 281, 1184, 472, 295, 552, 364, 9284, 300, 486, 589, 382, 257, 1508, 13], "avg_logprob": -0.5081249874830246, "compression_ratio": 2.048780487804878, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 505.28999999999996, "end": 505.77, "word": " R1,", "probability": 0.750244140625}, {"start": 505.85, "end": 506.21, "word": " R2,", "probability": 0.97802734375}, {"start": 506.37, "end": 507.39, "word": " R3.", "probability": 0.955810546875}, {"start": 507.77, "end": 507.97, "word": " They", "probability": 0.2061767578125}, {"start": 507.97, "end": 508.19, "word": " want", "probability": 0.6025390625}, {"start": 508.19, "end": 508.25, "word": " to", "probability": 0.9111328125}, {"start": 508.25, "end": 508.49, "word": " make", "probability": 0.128662109375}, {"start": 508.49, "end": 508.59, "word": " them", "probability": 0.73828125}, {"start": 508.59, "end": 508.59, "word": " work,", "probability": 0.59765625}, {"start": 508.91, "end": 509.07, "word": " but", "probability": 0.8720703125}, {"start": 509.07, "end": 509.31, "word": " before", "probability": 0.76318359375}, {"start": 509.31, "end": 509.45, "word": " they", "probability": 0.345947265625}, {"start": 509.45, "end": 509.63, "word": " make", "probability": 0.368896484375}, {"start": 509.63, "end": 509.97, "word": " them", "probability": 0.8388671875}, {"start": 509.97, "end": 510.45, "word": " work,", "probability": 0.90576171875}, {"start": 510.73, "end": 510.89, "word": " they", "probability": 0.6630859375}, {"start": 510.89, "end": 510.99, "word": " have", "probability": 0.3388671875}, {"start": 510.99, "end": 511.11, "word": " to", "probability": 0.96435546875}, {"start": 511.11, "end": 511.31, "word": " send", "probability": 0.6728515625}, {"start": 511.31, "end": 511.79, "word": " a", "probability": 0.181884765625}, {"start": 511.79, "end": 513.05, "word": " behavior", "probability": 0.66064453125}, {"start": 513.05, "end": 513.17, "word": " to", "probability": 0.58642578125}, {"start": 513.17, "end": 513.17, "word": " each", "probability": 0.88720703125}, {"start": 513.17, "end": 513.17, "word": " one", "probability": 0.48388671875}, {"start": 513.17, "end": 513.17, "word": " of", "probability": 0.72998046875}, {"start": 513.17, "end": 513.17, "word": " them.", "probability": 0.90283203125}, {"start": 513.59, "end": 513.91, "word": " So", "probability": 0.44677734375}, {"start": 513.91, "end": 514.17, "word": " the", "probability": 0.375732421875}, {"start": 514.17, "end": 514.43, "word": " first", "probability": 0.84423828125}, {"start": 514.43, "end": 514.43, "word": " one", "probability": 0.525390625}, {"start": 514.43, "end": 514.61, "word": " sent", "probability": 0.231201171875}, {"start": 514.61, "end": 514.75, "word": " a", "probability": 0.481689453125}, {"start": 514.75, "end": 514.89, "word": " set", "probability": 0.69140625}, {"start": 514.89, "end": 515.39, "word": " behavior", "probability": 0.9150390625}, {"start": 515.39, "end": 515.75, "word": " and", "probability": 0.47265625}, {"start": 515.75, "end": 516.11, "word": " created", "probability": 0.41015625}, {"start": 516.11, "end": 516.25, "word": " an", "probability": 0.751953125}, {"start": 516.25, "end": 516.57, "word": " object", "probability": 0.9765625}, {"start": 516.57, "end": 517.33, "word": " of", "probability": 0.205810546875}, {"start": 517.33, "end": 517.59, "word": " a", "probability": 0.283447265625}, {"start": 517.59, "end": 517.69, "word": " kind", "probability": 0.3671875}, {"start": 517.69, "end": 519.05, "word": " of", "probability": 0.43310546875}, {"start": 519.05, "end": 519.55, "word": " aggressive", "probability": 0.3154296875}, {"start": 519.55, "end": 520.05, "word": " behavior.", "probability": 0.9609375}, {"start": 520.21, "end": 520.63, "word": " The", "probability": 0.8173828125}, {"start": 520.63, "end": 520.93, "word": " second", "probability": 0.8916015625}, {"start": 520.93, "end": 521.19, "word": " one", "probability": 0.429931640625}, {"start": 521.19, "end": 521.37, "word": " sent", "probability": 0.58642578125}, {"start": 521.37, "end": 521.39, "word": " a", "probability": 0.91943359375}, {"start": 521.39, "end": 521.59, "word": " set", "probability": 0.70068359375}, {"start": 521.59, "end": 522.07, "word": " behavior", "probability": 0.76513671875}, {"start": 522.07, "end": 522.25, "word": " of", "probability": 0.70654296875}, {"start": 522.25, "end": 522.41, "word": " a", "probability": 0.57568359375}, {"start": 522.41, "end": 522.41, "word": " kind", "probability": 0.365966796875}, {"start": 522.41, "end": 522.41, "word": " of", "probability": 0.9609375}, {"start": 522.41, "end": 522.79, "word": " defensive", "probability": 0.9228515625}, {"start": 522.79, "end": 522.93, "word": " behavior,", "probability": 0.81787109375}, {"start": 522.99, "end": 523.09, "word": " and", "probability": 0.7197265625}, {"start": 523.09, "end": 523.19, "word": " the", "probability": 0.90771484375}, {"start": 523.19, "end": 523.41, "word": " third", "probability": 0.904296875}, {"start": 523.41, "end": 523.45, "word": " one", "probability": 0.80859375}, {"start": 523.45, "end": 523.55, "word": " sent", "probability": 0.5673828125}, {"start": 523.55, "end": 523.87, "word": " a", "probability": 0.95849609375}, {"start": 523.87, "end": 523.87, "word": " set", "probability": 0.335205078125}, {"start": 523.87, "end": 523.87, "word": " behavior", "probability": 0.8427734375}, {"start": 523.87, "end": 523.87, "word": " of", "probability": 0.9208984375}, {"start": 523.87, "end": 524.35, "word": " a", "probability": 0.493896484375}, {"start": 524.35, "end": 524.35, "word": " kind", "probability": 0.6796875}, {"start": 524.35, "end": 524.35, "word": " of", "probability": 0.96826171875}, {"start": 524.35, "end": 524.87, "word": " normal", "probability": 0.7958984375}, {"start": 524.87, "end": 525.73, "word": " behavior.", "probability": 0.9580078125}, {"start": 526.01, "end": 526.25, "word": " It", "probability": 0.1524658203125}, {"start": 526.25, "end": 526.47, "word": " sent", "probability": 0.60791015625}, {"start": 526.47, "end": 526.59, "word": " to", "probability": 0.3203125}, {"start": 526.59, "end": 526.83, "word": " each", "probability": 0.95068359375}, {"start": 526.83, "end": 527.17, "word": " one", "probability": 0.69091796875}, {"start": 527.17, "end": 527.27, "word": " of", "probability": 0.7001953125}, {"start": 527.27, "end": 527.27, "word": " them", "probability": 0.88916015625}, {"start": 527.27, "end": 527.53, "word": " an", "probability": 0.3076171875}, {"start": 527.53, "end": 527.89, "word": " algorithm", "probability": 0.9326171875}, {"start": 527.89, "end": 528.07, "word": " that", "probability": 0.59228515625}, {"start": 528.07, "end": 528.15, "word": " will", "probability": 0.239501953125}, {"start": 528.15, "end": 528.35, "word": " work", "probability": 0.6142578125}, {"start": 528.35, "end": 528.77, "word": " as", "probability": 0.78759765625}, {"start": 528.77, "end": 528.85, "word": " a", "probability": 0.9560546875}, {"start": 528.85, "end": 529.27, "word": " class.", "probability": 0.95458984375}], "temperature": 1.0}, {"id": 26, "seek": 54288, "start": 529.8, "end": 542.88, "text": "and then as an object from the class IBehaviour and then they say R1 move move move R2 move R3 move each one runs its own behavior until it wants to change the behavior", "tokens": [474, 550, 382, 364, 2657, 490, 264, 1508, 286, 6524, 71, 18442, 396, 293, 550, 436, 584, 497, 16, 1286, 1286, 1286, 497, 17, 1286, 497, 18, 1286, 1184, 472, 6676, 1080, 1065, 5223, 1826, 309, 2738, 281, 1319, 264, 5223], "avg_logprob": -0.41852677932807375, "compression_ratio": 1.423728813559322, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 529.8, "end": 529.94, "word": "and", "probability": 0.288818359375}, {"start": 529.94, "end": 530.24, "word": " then", "probability": 0.5595703125}, {"start": 530.24, "end": 530.4, "word": " as", "probability": 0.7470703125}, {"start": 530.4, "end": 530.5, "word": " an", "probability": 0.544921875}, {"start": 530.5, "end": 530.78, "word": " object", "probability": 0.9736328125}, {"start": 530.78, "end": 530.98, "word": " from", "probability": 0.360107421875}, {"start": 530.98, "end": 531.24, "word": " the", "probability": 0.642578125}, {"start": 531.24, "end": 531.66, "word": " class", "probability": 0.919921875}, {"start": 531.66, "end": 532.5, "word": " IBehaviour", "probability": 0.7130126953125}, {"start": 532.5, "end": 533.02, "word": " and", "probability": 0.67041015625}, {"start": 533.02, "end": 533.24, "word": " then", "probability": 0.79296875}, {"start": 533.24, "end": 533.34, "word": " they", "probability": 0.345947265625}, {"start": 533.34, "end": 533.52, "word": " say", "probability": 0.7666015625}, {"start": 533.52, "end": 534.0, "word": " R1", "probability": 0.867431640625}, {"start": 534.0, "end": 534.38, "word": " move", "probability": 0.80029296875}, {"start": 534.38, "end": 534.82, "word": " move", "probability": 0.51611328125}, {"start": 534.82, "end": 535.24, "word": " move", "probability": 0.93212890625}, {"start": 535.24, "end": 536.16, "word": " R2", "probability": 0.861083984375}, {"start": 536.16, "end": 536.48, "word": " move", "probability": 0.95703125}, {"start": 536.48, "end": 536.92, "word": " R3", "probability": 0.93310546875}, {"start": 536.92, "end": 537.28, "word": " move", "probability": 0.96240234375}, {"start": 537.28, "end": 537.92, "word": " each", "probability": 0.2666015625}, {"start": 537.92, "end": 538.2, "word": " one", "probability": 0.7587890625}, {"start": 538.2, "end": 538.58, "word": " runs", "probability": 0.238037109375}, {"start": 538.58, "end": 539.34, "word": " its", "probability": 0.322021484375}, {"start": 539.34, "end": 540.04, "word": " own", "probability": 0.53759765625}, {"start": 540.04, "end": 540.3, "word": " behavior", "probability": 0.52392578125}, {"start": 540.3, "end": 540.76, "word": " until", "probability": 0.72265625}, {"start": 540.76, "end": 541.0, "word": " it", "probability": 0.70947265625}, {"start": 541.0, "end": 541.12, "word": " wants", "probability": 0.6826171875}, {"start": 541.12, "end": 541.18, "word": " to", "probability": 0.97119140625}, {"start": 541.18, "end": 541.56, "word": " change", "probability": 0.8916015625}, {"start": 541.56, "end": 542.5, "word": " the", "probability": 0.583984375}, {"start": 542.5, "end": 542.88, "word": " behavior", "probability": 0.9658203125}], "temperature": 1.0}, {"id": 27, "seek": 56255, "start": 544.82, "end": 562.56, "text": " He went to R1 and told him set behavior, a new defensive behavior. It was aggressive, so he made it defensive. The second one was defensive, so he made it aggressive. The third one, he didn't change anything about it. Then he went back and told him R1 move, R2 move, R3 move.", "tokens": [634, 1437, 281, 497, 16, 293, 1907, 796, 992, 5223, 11, 257, 777, 16468, 5223, 13, 467, 390, 10762, 11, 370, 415, 1027, 309, 16468, 13, 440, 1150, 472, 390, 16468, 11, 370, 415, 1027, 309, 10762, 13, 440, 2636, 472, 11, 415, 994, 380, 1319, 1340, 466, 309, 13, 1396, 415, 1437, 646, 293, 1907, 796, 497, 16, 1286, 11, 497, 17, 1286, 11, 497, 18, 1286, 13], "avg_logprob": -0.39531249020780834, "compression_ratio": 1.7142857142857142, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 544.82, "end": 545.02, "word": " He", "probability": 0.2509765625}, {"start": 545.02, "end": 545.12, "word": " went", "probability": 0.74951171875}, {"start": 545.12, "end": 545.24, "word": " to", "probability": 0.9326171875}, {"start": 545.24, "end": 545.7, "word": " R1", "probability": 0.9287109375}, {"start": 545.7, "end": 545.94, "word": " and", "probability": 0.83837890625}, {"start": 545.94, "end": 546.06, "word": " told", "probability": 0.47119140625}, {"start": 546.06, "end": 546.12, "word": " him", "probability": 0.89111328125}, {"start": 546.12, "end": 546.3, "word": " set", "probability": 0.125732421875}, {"start": 546.3, "end": 546.82, "word": " behavior,", "probability": 0.6953125}, {"start": 547.06, "end": 547.16, "word": " a", "probability": 0.456787109375}, {"start": 547.16, "end": 547.34, "word": " new", "probability": 0.8681640625}, {"start": 547.34, "end": 547.82, "word": " defensive", "probability": 0.93408203125}, {"start": 547.82, "end": 548.3, "word": " behavior.", "probability": 0.9599609375}, {"start": 548.44, "end": 548.62, "word": " It", "probability": 0.234130859375}, {"start": 548.62, "end": 548.64, "word": " was", "probability": 0.63427734375}, {"start": 548.64, "end": 549.34, "word": " aggressive,", "probability": 0.68896484375}, {"start": 549.98, "end": 550.04, "word": " so", "probability": 0.292724609375}, {"start": 550.04, "end": 550.12, "word": " he", "probability": 0.50341796875}, {"start": 550.12, "end": 550.34, "word": " made", "probability": 0.623046875}, {"start": 550.34, "end": 550.5, "word": " it", "probability": 0.80615234375}, {"start": 550.5, "end": 551.14, "word": " defensive.", "probability": 0.94189453125}, {"start": 551.7, "end": 551.96, "word": " The", "probability": 0.71728515625}, {"start": 551.96, "end": 552.24, "word": " second", "probability": 0.861328125}, {"start": 552.24, "end": 552.44, "word": " one", "probability": 0.42724609375}, {"start": 552.44, "end": 552.76, "word": " was", "probability": 0.80419921875}, {"start": 552.76, "end": 553.26, "word": " defensive,", "probability": 0.90283203125}, {"start": 553.42, "end": 553.56, "word": " so", "probability": 0.66357421875}, {"start": 553.56, "end": 553.64, "word": " he", "probability": 0.8916015625}, {"start": 553.64, "end": 553.64, "word": " made", "probability": 0.8740234375}, {"start": 553.64, "end": 554.26, "word": " it", "probability": 0.88720703125}, {"start": 554.26, "end": 554.76, "word": " aggressive.", "probability": 0.79443359375}, {"start": 554.9, "end": 555.06, "word": " The", "probability": 0.78857421875}, {"start": 555.06, "end": 555.32, "word": " third", "probability": 0.92138671875}, {"start": 555.32, "end": 555.82, "word": " one,", "probability": 0.767578125}, {"start": 556.06, "end": 556.16, "word": " he", "probability": 0.529296875}, {"start": 556.16, "end": 556.22, "word": " didn't", "probability": 0.824951171875}, {"start": 556.22, "end": 556.46, "word": " change", "probability": 0.84228515625}, {"start": 556.46, "end": 556.68, "word": " anything", "probability": 0.60009765625}, {"start": 556.68, "end": 556.68, "word": " about", "probability": 0.474365234375}, {"start": 556.68, "end": 557.42, "word": " it.", "probability": 0.8564453125}, {"start": 558.58, "end": 558.88, "word": " Then", "probability": 0.5859375}, {"start": 558.88, "end": 559.02, "word": " he", "probability": 0.765625}, {"start": 559.02, "end": 559.08, "word": " went", "probability": 0.418212890625}, {"start": 559.08, "end": 559.2, "word": " back", "probability": 0.814453125}, {"start": 559.2, "end": 559.46, "word": " and", "probability": 0.3837890625}, {"start": 559.46, "end": 559.64, "word": " told", "probability": 0.78125}, {"start": 559.64, "end": 559.74, "word": " him", "probability": 0.771484375}, {"start": 559.74, "end": 560.12, "word": " R1", "probability": 0.91455078125}, {"start": 560.12, "end": 560.5, "word": " move,", "probability": 0.8291015625}, {"start": 560.6, "end": 560.92, "word": " R2", "probability": 0.99609375}, {"start": 560.92, "end": 561.26, "word": " move,", "probability": 0.9521484375}, {"start": 561.34, "end": 561.8, "word": " R3", "probability": 0.99560546875}, {"start": 561.8, "end": 562.56, "word": " move.", "probability": 0.6484375}], "temperature": 1.0}, {"id": 28, "seek": 58229, "start": 562.59, "end": 582.29, "text": "This is how I change the algorithm that I work with and I send it to it from outside and I change it whenever I want and I want to make a new algorithm, I will not change any line where? In the robot, but I make an implement for I behavior and I put the new code, okay? And this is how we have changed or completed the strategy pattern", "tokens": [5723, 307, 577, 286, 1319, 264, 9284, 300, 286, 589, 365, 293, 286, 2845, 309, 281, 309, 490, 2380, 293, 286, 1319, 309, 5699, 286, 528, 293, 286, 528, 281, 652, 257, 777, 9284, 11, 286, 486, 406, 1319, 604, 1622, 689, 30, 682, 264, 7881, 11, 457, 286, 652, 364, 4445, 337, 286, 5223, 293, 286, 829, 264, 777, 3089, 11, 1392, 30, 400, 341, 307, 577, 321, 362, 3105, 420, 7365, 264, 5206, 5102], "avg_logprob": -0.5247565213736002, "compression_ratio": 1.6834170854271358, "no_speech_prob": 3.212690353393555e-05, "words": [{"start": 562.59, "end": 563.39, "word": "This", "probability": 0.10662841796875}, {"start": 563.39, "end": 563.49, "word": " is", "probability": 0.478759765625}, {"start": 563.49, "end": 563.49, "word": " how", "probability": 0.888671875}, {"start": 563.49, "end": 563.75, "word": " I", "probability": 0.8564453125}, {"start": 563.75, "end": 564.19, "word": " change", "probability": 0.73486328125}, {"start": 564.19, "end": 564.49, "word": " the", "probability": 0.6923828125}, {"start": 564.49, "end": 565.01, "word": " algorithm", "probability": 0.87890625}, {"start": 565.01, "end": 565.31, "word": " that", "probability": 0.426025390625}, {"start": 565.31, "end": 565.39, "word": " I", "probability": 0.5048828125}, {"start": 565.39, "end": 565.59, "word": " work", "probability": 0.23583984375}, {"start": 565.59, "end": 565.93, "word": " with", "probability": 0.544921875}, {"start": 565.93, "end": 566.07, "word": " and", "probability": 0.35302734375}, {"start": 566.07, "end": 566.07, "word": " I", "probability": 0.2177734375}, {"start": 566.07, "end": 566.25, "word": " send", "probability": 0.2548828125}, {"start": 566.25, "end": 566.57, "word": " it", "probability": 0.837890625}, {"start": 566.57, "end": 566.63, "word": " to", "probability": 0.46630859375}, {"start": 566.63, "end": 566.63, "word": " it", "probability": 0.484375}, {"start": 566.63, "end": 566.69, "word": " from", "probability": 0.720703125}, {"start": 566.69, "end": 567.03, "word": " outside", "probability": 0.65869140625}, {"start": 567.03, "end": 567.61, "word": " and", "probability": 0.521484375}, {"start": 567.61, "end": 567.73, "word": " I", "probability": 0.491455078125}, {"start": 567.73, "end": 567.93, "word": " change", "probability": 0.8154296875}, {"start": 567.93, "end": 568.09, "word": " it", "probability": 0.9306640625}, {"start": 568.09, "end": 568.23, "word": " whenever", "probability": 0.466552734375}, {"start": 568.23, "end": 568.45, "word": " I", "probability": 0.95849609375}, {"start": 568.45, "end": 568.67, "word": " want", "probability": 0.85595703125}, {"start": 568.67, "end": 568.97, "word": " and", "probability": 0.55615234375}, {"start": 568.97, "end": 569.05, "word": " I", "probability": 0.56298828125}, {"start": 569.05, "end": 569.21, "word": " want", "probability": 0.230712890625}, {"start": 569.21, "end": 569.23, "word": " to", "probability": 0.95751953125}, {"start": 569.23, "end": 569.35, "word": " make", "probability": 0.6025390625}, {"start": 569.35, "end": 569.49, "word": " a", "probability": 0.85986328125}, {"start": 569.49, "end": 570.13, "word": " new", "probability": 0.90380859375}, {"start": 570.13, "end": 570.13, "word": " algorithm,", "probability": 0.9404296875}, {"start": 570.67, "end": 570.91, "word": " I", "probability": 0.89697265625}, {"start": 570.91, "end": 571.01, "word": " will", "probability": 0.55029296875}, {"start": 571.01, "end": 571.01, "word": " not", "probability": 0.9033203125}, {"start": 571.01, "end": 571.35, "word": " change", "probability": 0.876953125}, {"start": 571.35, "end": 571.57, "word": " any", "probability": 0.26025390625}, {"start": 571.57, "end": 571.85, "word": " line", "probability": 0.65478515625}, {"start": 571.85, "end": 572.09, "word": " where?", "probability": 0.216552734375}, {"start": 572.55, "end": 572.77, "word": " In", "probability": 0.73583984375}, {"start": 572.77, "end": 572.83, "word": " the", "probability": 0.84033203125}, {"start": 572.83, "end": 573.09, "word": " robot,", "probability": 0.88720703125}, {"start": 573.17, "end": 573.37, "word": " but", "probability": 0.56640625}, {"start": 573.37, "end": 573.49, "word": " I", "probability": 0.96337890625}, {"start": 573.49, "end": 573.59, "word": " make", "probability": 0.3037109375}, {"start": 573.59, "end": 573.73, "word": " an", "probability": 0.463134765625}, {"start": 573.73, "end": 574.03, "word": " implement", "probability": 0.61474609375}, {"start": 574.03, "end": 574.37, "word": " for", "probability": 0.779296875}, {"start": 574.37, "end": 574.71, "word": " I", "probability": 0.249267578125}, {"start": 574.71, "end": 575.07, "word": " behavior", "probability": 0.5546875}, {"start": 575.07, "end": 575.27, "word": " and", "probability": 0.90576171875}, {"start": 575.27, "end": 575.35, "word": " I", "probability": 0.6337890625}, {"start": 575.35, "end": 575.55, "word": " put", "probability": 0.69482421875}, {"start": 575.55, "end": 575.67, "word": " the", "probability": 0.7958984375}, {"start": 575.67, "end": 575.69, "word": " new", "probability": 0.73583984375}, {"start": 575.69, "end": 575.89, "word": " code,", "probability": 0.93359375}, {"start": 576.79, "end": 577.05, "word": " okay?", "probability": 0.483154296875}, {"start": 577.81, "end": 578.19, "word": " And", "probability": 0.70361328125}, {"start": 578.19, "end": 578.33, "word": " this", "probability": 0.64013671875}, {"start": 578.33, "end": 578.39, "word": " is", "probability": 0.8681640625}, {"start": 578.39, "end": 578.63, "word": " how", "probability": 0.943359375}, {"start": 578.63, "end": 578.81, "word": " we", "probability": 0.9453125}, {"start": 578.81, "end": 578.81, "word": " have", "probability": 0.260986328125}, {"start": 578.81, "end": 579.13, "word": " changed", "probability": 0.84375}, {"start": 579.13, "end": 580.03, "word": " or", "probability": 0.87451171875}, {"start": 580.03, "end": 580.43, "word": " completed", "probability": 0.374755859375}, {"start": 580.43, "end": 580.93, "word": " the", "probability": 0.8779296875}, {"start": 580.93, "end": 581.59, "word": " strategy", "probability": 0.84326171875}, {"start": 581.59, "end": 582.29, "word": " pattern", "probability": 0.8740234375}], "temperature": 1.0}, {"id": 29, "seek": 60071, "start": 584.53, "end": 600.71, "text": "As I said, the strategy is important to use and use a lot because this scenario that the application changes its implementation during the runtime can be found in many applications So instead of using if statements, each block in the if statement is separated by a separate algorithm", "tokens": [10884, 286, 848, 11, 264, 5206, 307, 1021, 281, 764, 293, 764, 257, 688, 570, 341, 9005, 300, 264, 3861, 2962, 1080, 11420, 1830, 264, 34474, 393, 312, 1352, 294, 867, 5821, 407, 2602, 295, 1228, 498, 12363, 11, 1184, 3461, 294, 264, 498, 5629, 307, 12005, 538, 257, 4994, 9284], "avg_logprob": -0.42367787945729035, "compression_ratio": 1.6171428571428572, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 584.53, "end": 584.77, "word": "As", "probability": 0.38232421875}, {"start": 584.77, "end": 584.93, "word": " I", "probability": 0.837890625}, {"start": 584.93, "end": 585.15, "word": " said,", "probability": 0.6357421875}, {"start": 585.23, "end": 585.25, "word": " the", "probability": 0.403564453125}, {"start": 585.25, "end": 585.69, "word": " strategy", "probability": 0.8466796875}, {"start": 585.69, "end": 585.81, "word": " is", "probability": 0.84130859375}, {"start": 585.81, "end": 585.99, "word": " important", "probability": 0.55419921875}, {"start": 585.99, "end": 586.19, "word": " to", "probability": 0.82763671875}, {"start": 586.19, "end": 586.53, "word": " use", "probability": 0.6513671875}, {"start": 586.53, "end": 586.75, "word": " and", "probability": 0.35595703125}, {"start": 586.75, "end": 587.17, "word": " use", "probability": 0.474853515625}, {"start": 587.17, "end": 587.33, "word": " a", "probability": 0.467529296875}, {"start": 587.33, "end": 587.55, "word": " lot", "probability": 0.95947265625}, {"start": 587.55, "end": 588.33, "word": " because", "probability": 0.62109375}, {"start": 588.33, "end": 588.49, "word": " this", "probability": 0.428955078125}, {"start": 588.49, "end": 588.89, "word": " scenario", "probability": 0.83544921875}, {"start": 588.89, "end": 589.27, "word": " that", "probability": 0.2498779296875}, {"start": 589.27, "end": 589.37, "word": " the", "probability": 0.81884765625}, {"start": 589.37, "end": 589.67, "word": " application", "probability": 0.76806640625}, {"start": 589.67, "end": 590.17, "word": " changes", "probability": 0.72802734375}, {"start": 590.17, "end": 590.67, "word": " its", "probability": 0.6630859375}, {"start": 590.67, "end": 591.05, "word": " implementation", "probability": 0.55078125}, {"start": 591.05, "end": 591.57, "word": " during", "probability": 0.81591796875}, {"start": 591.57, "end": 591.71, "word": " the", "probability": 0.60595703125}, {"start": 591.71, "end": 592.17, "word": " runtime", "probability": 0.68505859375}, {"start": 592.17, "end": 592.45, "word": " can", "probability": 0.6298828125}, {"start": 592.45, "end": 592.67, "word": " be", "probability": 0.9130859375}, {"start": 592.67, "end": 592.95, "word": " found", "probability": 0.880859375}, {"start": 592.95, "end": 593.17, "word": " in", "probability": 0.91162109375}, {"start": 593.17, "end": 593.25, "word": " many", "probability": 0.845703125}, {"start": 593.25, "end": 593.83, "word": " applications", "probability": 0.77001953125}, {"start": 593.83, "end": 594.71, "word": " So", "probability": 0.2880859375}, {"start": 594.71, "end": 594.89, "word": " instead", "probability": 0.61669921875}, {"start": 594.89, "end": 595.01, "word": " of", "probability": 0.96923828125}, {"start": 595.01, "end": 595.37, "word": " using", "probability": 0.92041015625}, {"start": 595.37, "end": 595.55, "word": " if", "probability": 0.7705078125}, {"start": 595.55, "end": 596.21, "word": " statements,", "probability": 0.8251953125}, {"start": 596.37, "end": 597.01, "word": " each", "probability": 0.287109375}, {"start": 597.01, "end": 597.83, "word": " block", "probability": 0.904296875}, {"start": 597.83, "end": 597.95, "word": " in", "probability": 0.7109375}, {"start": 597.95, "end": 598.05, "word": " the", "probability": 0.87548828125}, {"start": 598.05, "end": 598.19, "word": " if", "probability": 0.89111328125}, {"start": 598.19, "end": 598.61, "word": " statement", "probability": 0.81689453125}, {"start": 598.61, "end": 598.85, "word": " is", "probability": 0.402587890625}, {"start": 598.85, "end": 599.13, "word": " separated", "probability": 0.69091796875}, {"start": 599.13, "end": 599.85, "word": " by", "probability": 0.45263671875}, {"start": 599.85, "end": 599.89, "word": " a", "probability": 0.60498046875}, {"start": 599.89, "end": 600.71, "word": " separate", "probability": 0.76904296875}, {"start": 600.71, "end": 600.71, "word": " algorithm", "probability": 0.9189453125}], "temperature": 1.0}, {"id": 30, "seek": 62924, "start": 614.0, "end": 629.24, "text": "Okay guys, now we will come to the command, to the new design pattern which is called command pattern It is a simple design pattern, you will notice that it is similar even to the previous design patterns, but", "tokens": [8297, 1074, 11, 586, 321, 486, 808, 281, 264, 5622, 11, 281, 264, 777, 1715, 5102, 597, 307, 1219, 5622, 5102, 467, 307, 257, 2199, 1715, 5102, 11, 291, 486, 3449, 300, 309, 307, 2531, 754, 281, 264, 3894, 1715, 8294, 11, 457], "avg_logprob": -0.4197443290190263, "compression_ratio": 1.6076923076923078, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 614.0, "end": 614.28, "word": "Okay", "probability": 0.27783203125}, {"start": 614.28, "end": 614.56, "word": " guys,", "probability": 0.671875}, {"start": 614.68, "end": 614.94, "word": " now", "probability": 0.71240234375}, {"start": 614.94, "end": 615.62, "word": " we", "probability": 0.53857421875}, {"start": 615.62, "end": 615.66, "word": " will", "probability": 0.49267578125}, {"start": 615.66, "end": 615.8, "word": " come", "probability": 0.4052734375}, {"start": 615.8, "end": 615.92, "word": " to", "probability": 0.91796875}, {"start": 615.92, "end": 616.02, "word": " the", "probability": 0.55029296875}, {"start": 616.02, "end": 616.46, "word": " command,", "probability": 0.63427734375}, {"start": 616.72, "end": 617.04, "word": " to", "probability": 0.74609375}, {"start": 617.04, "end": 617.26, "word": " the", "probability": 0.859375}, {"start": 617.26, "end": 617.3, "word": " new", "probability": 0.87255859375}, {"start": 617.3, "end": 617.56, "word": " design", "probability": 0.89501953125}, {"start": 617.56, "end": 617.94, "word": " pattern", "probability": 0.89013671875}, {"start": 617.94, "end": 618.3, "word": " which", "probability": 0.52734375}, {"start": 618.3, "end": 618.46, "word": " is", "probability": 0.9248046875}, {"start": 618.46, "end": 618.7, "word": " called", "probability": 0.62255859375}, {"start": 618.7, "end": 619.28, "word": " command", "probability": 0.54345703125}, {"start": 619.28, "end": 620.48, "word": " pattern", "probability": 0.84765625}, {"start": 620.48, "end": 621.18, "word": " It", "probability": 0.32958984375}, {"start": 621.18, "end": 621.36, "word": " is", "probability": 0.71826171875}, {"start": 621.36, "end": 621.5, "word": " a", "probability": 0.94287109375}, {"start": 621.5, "end": 621.54, "word": " simple", "probability": 0.89892578125}, {"start": 621.54, "end": 621.78, "word": " design", "probability": 0.92578125}, {"start": 621.78, "end": 622.86, "word": " pattern,", "probability": 0.87841796875}, {"start": 623.74, "end": 623.86, "word": " you", "probability": 0.56982421875}, {"start": 623.86, "end": 624.14, "word": " will", "probability": 0.81640625}, {"start": 624.14, "end": 624.42, "word": " notice", "probability": 0.837890625}, {"start": 624.42, "end": 624.64, "word": " that", "probability": 0.74609375}, {"start": 624.64, "end": 624.76, "word": " it", "probability": 0.92578125}, {"start": 624.76, "end": 624.78, "word": " is", "probability": 0.84814453125}, {"start": 624.78, "end": 625.04, "word": " similar", "probability": 0.830078125}, {"start": 625.04, "end": 625.44, "word": " even", "probability": 0.417236328125}, {"start": 625.44, "end": 625.7, "word": " to", "probability": 0.60791015625}, {"start": 625.7, "end": 626.76, "word": " the", "probability": 0.74951171875}, {"start": 626.76, "end": 626.76, "word": " previous", "probability": 0.82275390625}, {"start": 626.76, "end": 627.06, "word": " design", "probability": 0.6484375}, {"start": 627.06, "end": 627.96, "word": " patterns,", "probability": 0.71728515625}, {"start": 628.84, "end": 629.24, "word": " but", "probability": 0.8232421875}], "temperature": 1.0}, {"id": 31, "seek": 65447, "start": 630.21, "end": 654.47, "text": " They separated it or made it as an independent design pattern because it has a different goal It has another goal and benefits that we will talk about now So what is the word command? command? command, okay Now, in short, we use the command pattern in cases where we want to make a queue of commands to implement these commands later", "tokens": [814, 12005, 309, 420, 1027, 309, 382, 364, 6695, 1715, 5102, 570, 309, 575, 257, 819, 3387, 467, 575, 1071, 3387, 293, 5311, 300, 321, 486, 751, 466, 586, 407, 437, 307, 264, 1349, 5622, 30, 5622, 30, 5622, 11, 1392, 823, 11, 294, 2099, 11, 321, 764, 264, 5622, 5102, 294, 3331, 689, 321, 528, 281, 652, 257, 18639, 295, 16901, 281, 4445, 613, 16901, 1780], "avg_logprob": -0.5041360381771537, "compression_ratio": 1.645320197044335, "no_speech_prob": 2.8014183044433594e-06, "words": [{"start": 630.21, "end": 630.69, "word": " They", "probability": 0.1256103515625}, {"start": 630.69, "end": 631.09, "word": " separated", "probability": 0.359375}, {"start": 631.09, "end": 631.25, "word": " it", "probability": 0.625}, {"start": 631.25, "end": 631.39, "word": " or", "probability": 0.478271484375}, {"start": 631.39, "end": 631.65, "word": " made", "probability": 0.59375}, {"start": 631.65, "end": 632.11, "word": " it", "probability": 0.8037109375}, {"start": 632.11, "end": 632.27, "word": " as", "probability": 0.5029296875}, {"start": 632.27, "end": 632.35, "word": " an", "probability": 0.63671875}, {"start": 632.35, "end": 632.35, "word": " independent", "probability": 0.806640625}, {"start": 632.35, "end": 632.61, "word": " design", "probability": 0.51416015625}, {"start": 632.61, "end": 633.31, "word": " pattern", "probability": 0.87939453125}, {"start": 633.31, "end": 633.53, "word": " because", "probability": 0.71044921875}, {"start": 633.53, "end": 633.73, "word": " it", "probability": 0.84912109375}, {"start": 633.73, "end": 633.77, "word": " has", "probability": 0.8203125}, {"start": 633.77, "end": 634.43, "word": " a", "probability": 0.521484375}, {"start": 634.43, "end": 634.81, "word": " different", "probability": 0.84130859375}, {"start": 634.81, "end": 634.89, "word": " goal", "probability": 0.51416015625}, {"start": 634.89, "end": 634.99, "word": " It", "probability": 0.1700439453125}, {"start": 634.99, "end": 635.15, "word": " has", "probability": 0.93408203125}, {"start": 635.15, "end": 635.69, "word": " another", "probability": 0.6708984375}, {"start": 635.69, "end": 635.71, "word": " goal", "probability": 0.8486328125}, {"start": 635.71, "end": 636.43, "word": " and", "probability": 0.830078125}, {"start": 636.43, "end": 636.87, "word": " benefits", "probability": 0.7392578125}, {"start": 636.87, "end": 637.03, "word": " that", "probability": 0.2474365234375}, {"start": 637.03, "end": 637.13, "word": " we", "probability": 0.93115234375}, {"start": 637.13, "end": 637.17, "word": " will", "probability": 0.6162109375}, {"start": 637.17, "end": 637.45, "word": " talk", "probability": 0.7685546875}, {"start": 637.45, "end": 637.67, "word": " about", "probability": 0.8994140625}, {"start": 637.67, "end": 638.29, "word": " now", "probability": 0.615234375}, {"start": 638.29, "end": 639.11, "word": " So", "probability": 0.3359375}, {"start": 639.11, "end": 639.27, "word": " what", "probability": 0.7626953125}, {"start": 639.27, "end": 639.39, "word": " is", "probability": 0.83203125}, {"start": 639.39, "end": 639.45, "word": " the", "probability": 0.76220703125}, {"start": 639.45, "end": 639.59, "word": " word", "probability": 0.8232421875}, {"start": 639.59, "end": 640.03, "word": " command?", "probability": 0.703125}, {"start": 641.21, "end": 641.65, "word": " command?", "probability": 0.3330078125}, {"start": 642.19, "end": 642.37, "word": " command,", "probability": 0.25244140625}, {"start": 642.55, "end": 643.09, "word": " okay", "probability": 0.332275390625}, {"start": 643.09, "end": 644.59, "word": " Now,", "probability": 0.62451171875}, {"start": 644.79, "end": 644.87, "word": " in", "probability": 0.6865234375}, {"start": 644.87, "end": 645.19, "word": " short,", "probability": 0.38427734375}, {"start": 645.65, "end": 645.81, "word": " we", "probability": 0.3310546875}, {"start": 645.81, "end": 645.81, "word": " use", "probability": 0.87109375}, {"start": 645.81, "end": 645.81, "word": " the", "probability": 0.70166015625}, {"start": 645.81, "end": 646.11, "word": " command", "probability": 0.86962890625}, {"start": 646.11, "end": 646.61, "word": " pattern", "probability": 0.8583984375}, {"start": 646.61, "end": 647.39, "word": " in", "probability": 0.83251953125}, {"start": 647.39, "end": 647.99, "word": " cases", "probability": 0.6845703125}, {"start": 647.99, "end": 649.01, "word": " where", "probability": 0.488037109375}, {"start": 649.01, "end": 649.41, "word": " we", "probability": 0.95556640625}, {"start": 649.41, "end": 650.01, "word": " want", "probability": 0.75439453125}, {"start": 650.01, "end": 650.35, "word": " to", "probability": 0.97119140625}, {"start": 650.35, "end": 650.71, "word": " make", "probability": 0.61083984375}, {"start": 650.71, "end": 650.99, "word": " a", "probability": 0.658203125}, {"start": 650.99, "end": 651.33, "word": " queue", "probability": 0.87353515625}, {"start": 651.33, "end": 651.97, "word": " of", "probability": 0.9208984375}, {"start": 651.97, "end": 652.61, "word": " commands", "probability": 0.86083984375}, {"start": 652.61, "end": 653.11, "word": " to", "probability": 0.47216796875}, {"start": 653.11, "end": 653.45, "word": " implement", "probability": 0.52001953125}, {"start": 653.45, "end": 653.63, "word": " these", "probability": 0.5361328125}, {"start": 653.63, "end": 653.99, "word": " commands", "probability": 0.916015625}, {"start": 653.99, "end": 654.47, "word": " later", "probability": 0.82666015625}], "temperature": 1.0}, {"id": 32, "seek": 67083, "start": 655.81, "end": 670.83, "text": "I'll give you an example. Sometimes in applications, we need to execute commands, but we don't execute them instantly. We need to store these commands so that we can execute them later.", "tokens": [40, 603, 976, 291, 364, 1365, 13, 4803, 294, 5821, 11, 321, 643, 281, 14483, 16901, 11, 457, 321, 500, 380, 14483, 552, 13518, 13, 492, 643, 281, 3531, 613, 16901, 370, 300, 321, 393, 14483, 552, 1780, 13], "avg_logprob": -0.4441406339406967, "compression_ratio": 1.48, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 655.81, "end": 656.33, "word": "I'll", "probability": 0.3701171875}, {"start": 656.33, "end": 656.41, "word": " give", "probability": 0.763671875}, {"start": 656.41, "end": 656.53, "word": " you", "probability": 0.8759765625}, {"start": 656.53, "end": 656.85, "word": " an", "probability": 0.9228515625}, {"start": 656.85, "end": 656.85, "word": " example.", "probability": 0.97705078125}, {"start": 657.55, "end": 657.93, "word": " Sometimes", "probability": 0.7158203125}, {"start": 657.93, "end": 659.33, "word": " in", "probability": 0.29931640625}, {"start": 659.33, "end": 660.09, "word": " applications,", "probability": 0.322998046875}, {"start": 661.01, "end": 661.15, "word": " we", "probability": 0.8740234375}, {"start": 661.15, "end": 661.57, "word": " need", "probability": 0.80712890625}, {"start": 661.57, "end": 662.05, "word": " to", "probability": 0.9609375}, {"start": 662.05, "end": 662.59, "word": " execute", "probability": 0.3896484375}, {"start": 662.59, "end": 663.01, "word": " commands,", "probability": 0.65087890625}, {"start": 663.23, "end": 663.49, "word": " but", "probability": 0.85302734375}, {"start": 663.49, "end": 663.67, "word": " we", "probability": 0.6181640625}, {"start": 663.67, "end": 663.71, "word": " don't", "probability": 0.876708984375}, {"start": 663.71, "end": 664.07, "word": " execute", "probability": 0.57470703125}, {"start": 664.07, "end": 664.27, "word": " them", "probability": 0.80712890625}, {"start": 664.27, "end": 664.93, "word": " instantly.", "probability": 0.44580078125}, {"start": 665.83, "end": 665.83, "word": " We", "probability": 0.8173828125}, {"start": 665.83, "end": 666.01, "word": " need", "probability": 0.525390625}, {"start": 666.01, "end": 667.15, "word": " to", "probability": 0.93359375}, {"start": 667.15, "end": 668.33, "word": " store", "probability": 0.4990234375}, {"start": 668.33, "end": 668.51, "word": " these", "probability": 0.69140625}, {"start": 668.51, "end": 668.51, "word": " commands", "probability": 0.80712890625}, {"start": 668.51, "end": 669.71, "word": " so", "probability": 0.2783203125}, {"start": 669.71, "end": 670.09, "word": " that", "probability": 0.84130859375}, {"start": 670.09, "end": 670.19, "word": " we", "probability": 0.7412109375}, {"start": 670.19, "end": 670.31, "word": " can", "probability": 0.7490234375}, {"start": 670.31, "end": 670.39, "word": " execute", "probability": 0.6240234375}, {"start": 670.39, "end": 670.39, "word": " them", "probability": 0.87744140625}, {"start": 670.39, "end": 670.83, "word": " later.", "probability": 0.822265625}], "temperature": 1.0}, {"id": 33, "seek": 68691, "start": 672.93, "end": 686.91, "text": "Okay? Where does this apply to? That we store orders but we don't implement them, we come later and implement them? There are many cases. The first case, for example, let's say you want to make a program for the stock market", "tokens": [8297, 30, 2305, 775, 341, 3079, 281, 30, 663, 321, 3531, 9470, 457, 321, 500, 380, 4445, 552, 11, 321, 808, 1780, 293, 4445, 552, 30, 821, 366, 867, 3331, 13, 440, 700, 1389, 11, 337, 1365, 11, 718, 311, 584, 291, 528, 281, 652, 257, 1461, 337, 264, 4127, 2142], "avg_logprob": -0.4939903880541141, "compression_ratio": 1.4545454545454546, "no_speech_prob": 2.5987625122070312e-05, "words": [{"start": 672.93, "end": 673.41, "word": "Okay?", "probability": 0.271484375}, {"start": 674.25, "end": 674.51, "word": " Where", "probability": 0.48583984375}, {"start": 674.51, "end": 674.71, "word": " does", "probability": 0.603515625}, {"start": 674.71, "end": 674.87, "word": " this", "probability": 0.66064453125}, {"start": 674.87, "end": 675.11, "word": " apply", "probability": 0.050384521484375}, {"start": 675.11, "end": 675.25, "word": " to?", "probability": 0.8388671875}, {"start": 675.59, "end": 675.79, "word": " That", "probability": 0.5234375}, {"start": 675.79, "end": 676.09, "word": " we", "probability": 0.7919921875}, {"start": 676.09, "end": 676.15, "word": " store", "probability": 0.53662109375}, {"start": 676.15, "end": 676.63, "word": " orders", "probability": 0.318603515625}, {"start": 676.63, "end": 677.69, "word": " but", "probability": 0.57666015625}, {"start": 677.69, "end": 677.85, "word": " we", "probability": 0.2381591796875}, {"start": 677.85, "end": 677.85, "word": " don't", "probability": 0.869873046875}, {"start": 677.85, "end": 678.17, "word": " implement", "probability": 0.462646484375}, {"start": 678.17, "end": 678.29, "word": " them,", "probability": 0.77099609375}, {"start": 678.37, "end": 678.49, "word": " we", "probability": 0.5654296875}, {"start": 678.49, "end": 678.57, "word": " come", "probability": 0.4697265625}, {"start": 678.57, "end": 679.01, "word": " later", "probability": 0.44775390625}, {"start": 679.01, "end": 679.41, "word": " and", "probability": 0.517578125}, {"start": 679.41, "end": 679.73, "word": " implement", "probability": 0.65087890625}, {"start": 679.73, "end": 679.97, "word": " them?", "probability": 0.78662109375}, {"start": 680.27, "end": 680.43, "word": " There", "probability": 0.65869140625}, {"start": 680.43, "end": 680.49, "word": " are", "probability": 0.89453125}, {"start": 680.49, "end": 680.93, "word": " many", "probability": 0.8291015625}, {"start": 680.93, "end": 680.93, "word": " cases.", "probability": 0.80615234375}, {"start": 681.43, "end": 681.65, "word": " The", "probability": 0.69482421875}, {"start": 681.65, "end": 681.77, "word": " first", "probability": 0.892578125}, {"start": 681.77, "end": 682.05, "word": " case,", "probability": 0.62939453125}, {"start": 682.19, "end": 682.25, "word": " for", "probability": 0.72509765625}, {"start": 682.25, "end": 682.49, "word": " example,", "probability": 0.95458984375}, {"start": 682.63, "end": 682.91, "word": " let's", "probability": 0.903076171875}, {"start": 682.91, "end": 683.11, "word": " say", "probability": 0.94482421875}, {"start": 683.11, "end": 683.41, "word": " you", "probability": 0.62890625}, {"start": 683.41, "end": 683.61, "word": " want", "probability": 0.84521484375}, {"start": 683.61, "end": 683.75, "word": " to", "probability": 0.97314453125}, {"start": 683.75, "end": 683.87, "word": " make", "probability": 0.68994140625}, {"start": 683.87, "end": 683.99, "word": " a", "probability": 0.98095703125}, {"start": 683.99, "end": 684.49, "word": " program", "probability": 0.6884765625}, {"start": 684.49, "end": 685.47, "word": " for", "probability": 0.9345703125}, {"start": 685.47, "end": 686.11, "word": " the", "probability": 0.88037109375}, {"start": 686.11, "end": 686.49, "word": " stock", "probability": 0.83349609375}, {"start": 686.49, "end": 686.91, "word": " market", "probability": 0.9150390625}], "temperature": 1.0}, {"id": 34, "seek": 70354, "start": 688.62, "end": 703.54, "text": "For those who don't know how to deal with the stock market, during the day there are orders for orders such as selling stocks, buying stocks, writing books, transferring stocks, closing a company, opening a company, many things are ordered during the day", "tokens": [12587, 729, 567, 500, 380, 458, 577, 281, 2028, 365, 264, 4127, 2142, 11, 1830, 264, 786, 456, 366, 9470, 337, 9470, 1270, 382, 6511, 12966, 11, 6382, 12966, 11, 3579, 3642, 11, 31437, 12966, 11, 10377, 257, 2237, 11, 5193, 257, 2237, 11, 867, 721, 366, 8866, 1830, 264, 786], "avg_logprob": -0.4891826814183822, "compression_ratio": 1.7517241379310344, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 688.62, "end": 688.84, "word": "For", "probability": 0.0933837890625}, {"start": 688.84, "end": 688.9, "word": " those", "probability": 0.6904296875}, {"start": 688.9, "end": 688.9, "word": " who", "probability": 0.74755859375}, {"start": 688.9, "end": 689.62, "word": " don't", "probability": 0.749267578125}, {"start": 689.62, "end": 690.08, "word": " know", "probability": 0.880859375}, {"start": 690.08, "end": 690.34, "word": " how", "probability": 0.87255859375}, {"start": 690.34, "end": 690.38, "word": " to", "probability": 0.9072265625}, {"start": 690.38, "end": 690.62, "word": " deal", "probability": 0.29150390625}, {"start": 690.62, "end": 690.76, "word": " with", "probability": 0.76513671875}, {"start": 690.76, "end": 690.86, "word": " the", "probability": 0.410888671875}, {"start": 690.86, "end": 691.04, "word": " stock", "probability": 0.65771484375}, {"start": 691.04, "end": 691.24, "word": " market,", "probability": 0.68017578125}, {"start": 692.42, "end": 693.06, "word": " during", "probability": 0.416259765625}, {"start": 693.06, "end": 693.48, "word": " the", "probability": 0.8525390625}, {"start": 693.48, "end": 693.76, "word": " day", "probability": 0.96142578125}, {"start": 693.76, "end": 693.8, "word": " there", "probability": 0.26806640625}, {"start": 693.8, "end": 694.32, "word": " are", "probability": 0.70263671875}, {"start": 694.32, "end": 694.68, "word": " orders", "probability": 0.4775390625}, {"start": 694.68, "end": 695.0, "word": " for", "probability": 0.393798828125}, {"start": 695.0, "end": 695.4, "word": " orders", "probability": 0.1473388671875}, {"start": 695.4, "end": 695.7, "word": " such", "probability": 0.35107421875}, {"start": 695.7, "end": 696.14, "word": " as", "probability": 0.974609375}, {"start": 696.14, "end": 696.34, "word": " selling", "probability": 0.796875}, {"start": 696.34, "end": 696.72, "word": " stocks,", "probability": 0.461181640625}, {"start": 697.02, "end": 697.28, "word": " buying", "probability": 0.85400390625}, {"start": 697.28, "end": 697.84, "word": " stocks,", "probability": 0.796875}, {"start": 698.0, "end": 698.14, "word": " writing", "probability": 0.52001953125}, {"start": 698.14, "end": 698.68, "word": " books,", "probability": 0.4619140625}, {"start": 698.82, "end": 699.1, "word": " transferring", "probability": 0.346923828125}, {"start": 699.1, "end": 699.56, "word": " stocks,", "probability": 0.70751953125}, {"start": 699.68, "end": 699.94, "word": " closing", "probability": 0.80078125}, {"start": 699.94, "end": 700.12, "word": " a", "probability": 0.625}, {"start": 700.12, "end": 700.4, "word": " company,", "probability": 0.90869140625}, {"start": 700.54, "end": 700.72, "word": " opening", "probability": 0.7568359375}, {"start": 700.72, "end": 701.24, "word": " a", "probability": 0.92041015625}, {"start": 701.24, "end": 701.24, "word": " company,", "probability": 0.9130859375}, {"start": 701.66, "end": 701.8, "word": " many", "probability": 0.50048828125}, {"start": 701.8, "end": 702.28, "word": " things", "probability": 0.6708984375}, {"start": 702.28, "end": 702.5, "word": " are", "probability": 0.5009765625}, {"start": 702.5, "end": 702.88, "word": " ordered", "probability": 0.269775390625}, {"start": 702.88, "end": 703.18, "word": " during", "probability": 0.81591796875}, {"start": 703.18, "end": 703.38, "word": " the", "probability": 0.9296875}, {"start": 703.38, "end": 703.54, "word": " day", "probability": 0.95654296875}], "temperature": 1.0}, {"id": 35, "seek": 73209, "start": 704.39, "end": 732.09, "text": " And each one of these commands has specific steps for execution and specific data. For example, I want to open a certain company, I need a license for the company, ID for the company, name, capital and so on. I want to buy stocks, I need to know where I want to buy them from, and who wants to buy them, and how many stocks there are, and how much tax is going to be paid. I mean, each one of these commands has many details and many steps. Okay? But these commands are not executed instantly.", "tokens": [400, 1184, 472, 295, 613, 16901, 575, 2685, 4439, 337, 15058, 293, 2685, 1412, 13, 1171, 1365, 11, 286, 528, 281, 1269, 257, 1629, 2237, 11, 286, 643, 257, 10476, 337, 264, 2237, 11, 7348, 337, 264, 2237, 11, 1315, 11, 4238, 293, 370, 322, 13, 286, 528, 281, 2256, 12966, 11, 286, 643, 281, 458, 689, 286, 528, 281, 2256, 552, 490, 11, 293, 567, 2738, 281, 2256, 552, 11, 293, 577, 867, 12966, 456, 366, 11, 293, 577, 709, 3366, 307, 516, 281, 312, 4835, 13, 286, 914, 11, 1184, 472, 295, 613, 16901, 575, 867, 4365, 293, 867, 4439, 13, 1033, 30, 583, 613, 16901, 366, 406, 17577, 13518, 13], "avg_logprob": -0.46408990835934355, "compression_ratio": 1.9839357429718876, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 704.39, "end": 704.71, "word": " And", "probability": 0.26904296875}, {"start": 704.71, "end": 705.05, "word": " each", "probability": 0.4697265625}, {"start": 705.05, "end": 705.27, "word": " one", "probability": 0.328369140625}, {"start": 705.27, "end": 705.39, "word": " of", "probability": 0.92138671875}, {"start": 705.39, "end": 705.89, "word": " these", "probability": 0.6904296875}, {"start": 705.89, "end": 705.89, "word": " commands", "probability": 0.45458984375}, {"start": 705.89, "end": 706.35, "word": " has", "probability": 0.6689453125}, {"start": 706.35, "end": 706.47, "word": " specific", "probability": 0.39306640625}, {"start": 706.47, "end": 706.81, "word": " steps", "probability": 0.65869140625}, {"start": 706.81, "end": 707.33, "word": " for", "probability": 0.2734375}, {"start": 707.33, "end": 707.81, "word": " execution", "probability": 0.5380859375}, {"start": 707.81, "end": 708.03, "word": " and", "probability": 0.313232421875}, {"start": 708.03, "end": 708.11, "word": " specific", "probability": 0.470458984375}, {"start": 708.11, "end": 708.43, "word": " data.", "probability": 0.69873046875}, {"start": 709.09, "end": 709.47, "word": " For", "probability": 0.404296875}, {"start": 709.47, "end": 709.47, "word": " example,", "probability": 0.88671875}, {"start": 709.47, "end": 709.59, "word": " I", "probability": 0.74365234375}, {"start": 709.59, "end": 709.79, "word": " want", "probability": 0.419921875}, {"start": 709.79, "end": 709.83, "word": " to", "probability": 0.9638671875}, {"start": 709.83, "end": 709.99, "word": " open", "probability": 0.49560546875}, {"start": 709.99, "end": 710.37, "word": " a", "probability": 0.93310546875}, {"start": 710.37, "end": 710.63, "word": " certain", "probability": 0.2900390625}, {"start": 710.63, "end": 710.71, "word": " company,", "probability": 0.88818359375}, {"start": 710.89, "end": 710.95, "word": " I", "probability": 0.634765625}, {"start": 710.95, "end": 711.21, "word": " need", "probability": 0.5859375}, {"start": 711.21, "end": 712.17, "word": " a", "probability": 0.419921875}, {"start": 712.17, "end": 712.55, "word": " license", "probability": 0.433837890625}, {"start": 712.55, "end": 712.71, "word": " for", "probability": 0.5390625}, {"start": 712.71, "end": 712.79, "word": " the", "probability": 0.76708984375}, {"start": 712.79, "end": 713.11, "word": " company,", "probability": 0.916015625}, {"start": 713.27, "end": 713.57, "word": " ID", "probability": 0.33544921875}, {"start": 713.57, "end": 713.77, "word": " for", "probability": 0.7197265625}, {"start": 713.77, "end": 713.89, "word": " the", "probability": 0.90478515625}, {"start": 713.89, "end": 714.19, "word": " company,", "probability": 0.92431640625}, {"start": 714.39, "end": 714.75, "word": " name,", "probability": 0.67138671875}, {"start": 715.39, "end": 715.63, "word": " capital", "probability": 0.5712890625}, {"start": 715.63, "end": 716.07, "word": " and", "probability": 0.4921875}, {"start": 716.07, "end": 716.25, "word": " so", "probability": 0.422119140625}, {"start": 716.25, "end": 716.35, "word": " on.", "probability": 0.88134765625}, {"start": 716.69, "end": 716.79, "word": " I", "probability": 0.87158203125}, {"start": 716.79, "end": 716.95, "word": " want", "probability": 0.6064453125}, {"start": 716.95, "end": 716.99, "word": " to", "probability": 0.97509765625}, {"start": 716.99, "end": 717.17, "word": " buy", "probability": 0.9384765625}, {"start": 717.17, "end": 717.53, "word": " stocks,", "probability": 0.457275390625}, {"start": 717.93, "end": 718.13, "word": " I", "probability": 0.93359375}, {"start": 718.13, "end": 718.25, "word": " need", "probability": 0.455810546875}, {"start": 718.25, "end": 718.33, "word": " to", "probability": 0.96533203125}, {"start": 718.33, "end": 718.45, "word": " know", "probability": 0.869140625}, {"start": 718.45, "end": 718.79, "word": " where", "probability": 0.646484375}, {"start": 718.79, "end": 718.91, "word": " I", "probability": 0.4267578125}, {"start": 718.91, "end": 719.01, "word": " want", "probability": 0.609375}, {"start": 719.01, "end": 719.09, "word": " to", "probability": 0.9658203125}, {"start": 719.09, "end": 719.29, "word": " buy", "probability": 0.9326171875}, {"start": 719.29, "end": 719.55, "word": " them", "probability": 0.386962890625}, {"start": 719.55, "end": 719.67, "word": " from,", "probability": 0.481689453125}, {"start": 719.67, "end": 719.79, "word": " and", "probability": 0.382080078125}, {"start": 719.79, "end": 719.91, "word": " who", "probability": 0.794921875}, {"start": 719.91, "end": 720.09, "word": " wants", "probability": 0.61669921875}, {"start": 720.09, "end": 720.19, "word": " to", "probability": 0.9541015625}, {"start": 720.19, "end": 720.39, "word": " buy", "probability": 0.93505859375}, {"start": 720.39, "end": 720.49, "word": " them,", "probability": 0.85302734375}, {"start": 720.55, "end": 720.63, "word": " and", "probability": 0.71044921875}, {"start": 720.63, "end": 720.71, "word": " how", "probability": 0.55224609375}, {"start": 720.71, "end": 721.03, "word": " many", "probability": 0.7607421875}, {"start": 721.03, "end": 721.47, "word": " stocks", "probability": 0.71337890625}, {"start": 721.47, "end": 721.55, "word": " there", "probability": 0.13037109375}, {"start": 721.55, "end": 721.55, "word": " are,", "probability": 0.91259765625}, {"start": 721.55, "end": 721.67, "word": " and", "probability": 0.83544921875}, {"start": 721.67, "end": 721.79, "word": " how", "probability": 0.892578125}, {"start": 721.79, "end": 721.95, "word": " much", "probability": 0.88916015625}, {"start": 721.95, "end": 722.23, "word": " tax", "probability": 0.552734375}, {"start": 722.23, "end": 722.35, "word": " is", "probability": 0.2447509765625}, {"start": 722.35, "end": 722.49, "word": " going", "probability": 0.482666015625}, {"start": 722.49, "end": 722.55, "word": " to", "probability": 0.9736328125}, {"start": 722.55, "end": 722.69, "word": " be", "probability": 0.76025390625}, {"start": 722.69, "end": 722.91, "word": " paid.", "probability": 0.80419921875}, {"start": 723.45, "end": 723.59, "word": " I", "probability": 0.23974609375}, {"start": 723.59, "end": 723.69, "word": " mean,", "probability": 0.90625}, {"start": 723.77, "end": 723.99, "word": " each", "probability": 0.90283203125}, {"start": 723.99, "end": 724.25, "word": " one", "probability": 0.487060546875}, {"start": 724.25, "end": 724.35, "word": " of", "probability": 0.97216796875}, {"start": 724.35, "end": 724.47, "word": " these", "probability": 0.83447265625}, {"start": 724.47, "end": 724.73, "word": " commands", "probability": 0.73291015625}, {"start": 724.73, "end": 725.09, "word": " has", "probability": 0.904296875}, {"start": 725.09, "end": 725.19, "word": " many", "probability": 0.4892578125}, {"start": 725.19, "end": 725.63, "word": " details", "probability": 0.7666015625}, {"start": 725.63, "end": 726.97, "word": " and", "probability": 0.77783203125}, {"start": 726.97, "end": 727.13, "word": " many", "probability": 0.4638671875}, {"start": 727.13, "end": 727.51, "word": " steps.", "probability": 0.9150390625}, {"start": 728.31, "end": 728.53, "word": " Okay?", "probability": 0.403076171875}, {"start": 728.99, "end": 729.39, "word": " But", "probability": 0.84130859375}, {"start": 729.39, "end": 729.99, "word": " these", "probability": 0.76416015625}, {"start": 729.99, "end": 730.37, "word": " commands", "probability": 0.82177734375}, {"start": 730.37, "end": 730.99, "word": " are", "probability": 0.7421875}, {"start": 730.99, "end": 731.11, "word": " not", "probability": 0.94384765625}, {"start": 731.11, "end": 731.83, "word": " executed", "probability": 0.60546875}, {"start": 731.83, "end": 732.09, "word": " instantly.", "probability": 0.6796875}], "temperature": 1.0}, {"id": 36, "seek": 75710, "start": 734.02, "end": 757.1, "text": "The broker or the agent collects these orders and then at the end of the day, all the orders that were ordered during the day are executed at the end of the day. When I close the stock market or before closing the stock market, I go and execute all the orders that were ordered or opened by a company or someone else. Now I am in front of a scenario where I have orders", "tokens": [2278, 26502, 420, 264, 9461, 39897, 613, 9470, 293, 550, 412, 264, 917, 295, 264, 786, 11, 439, 264, 9470, 300, 645, 8866, 1830, 264, 786, 366, 17577, 412, 264, 917, 295, 264, 786, 13, 1133, 286, 1998, 264, 4127, 2142, 420, 949, 10377, 264, 4127, 2142, 11, 286, 352, 293, 14483, 439, 264, 9470, 300, 645, 8866, 420, 5625, 538, 257, 2237, 420, 1580, 1646, 13, 823, 286, 669, 294, 1868, 295, 257, 9005, 689, 286, 362, 9470], "avg_logprob": -0.5292968936264515, "compression_ratio": 1.8636363636363635, "no_speech_prob": 6.794929504394531e-06, "words": [{"start": 734.0199999999999, "end": 734.4599999999999, "word": "The", "probability": 0.25146484375}, {"start": 734.4599999999999, "end": 734.9, "word": " broker", "probability": 0.7958984375}, {"start": 734.9, "end": 735.16, "word": " or", "probability": 0.70849609375}, {"start": 735.16, "end": 735.3, "word": " the", "probability": 0.45166015625}, {"start": 735.3, "end": 735.76, "word": " agent", "probability": 0.900390625}, {"start": 735.76, "end": 736.52, "word": " collects", "probability": 0.447021484375}, {"start": 736.52, "end": 736.7, "word": " these", "probability": 0.431396484375}, {"start": 736.7, "end": 736.96, "word": " orders", "probability": 0.64111328125}, {"start": 736.96, "end": 737.48, "word": " and", "probability": 0.68212890625}, {"start": 737.48, "end": 737.78, "word": " then", "probability": 0.2386474609375}, {"start": 737.78, "end": 737.9, "word": " at", "probability": 0.5693359375}, {"start": 737.9, "end": 738.1, "word": " the", "probability": 0.92578125}, {"start": 738.1, "end": 738.2, "word": " end", "probability": 0.7353515625}, {"start": 738.2, "end": 738.28, "word": " of", "probability": 0.95458984375}, {"start": 738.28, "end": 738.36, "word": " the", "probability": 0.8837890625}, {"start": 738.36, "end": 738.68, "word": " day,", "probability": 0.96630859375}, {"start": 739.74, "end": 740.6, "word": " all", "probability": 0.7763671875}, {"start": 740.6, "end": 740.76, "word": " the", "probability": 0.473388671875}, {"start": 740.76, "end": 741.1, "word": " orders", "probability": 0.7431640625}, {"start": 741.1, "end": 741.3, "word": " that", "probability": 0.6455078125}, {"start": 741.3, "end": 741.5, "word": " were", "probability": 0.7109375}, {"start": 741.5, "end": 741.86, "word": " ordered", "probability": 0.301513671875}, {"start": 741.86, "end": 742.2, "word": " during", "probability": 0.65966796875}, {"start": 742.2, "end": 742.42, "word": " the", "probability": 0.89501953125}, {"start": 742.42, "end": 742.64, "word": " day", "probability": 0.95458984375}, {"start": 742.64, "end": 742.86, "word": " are", "probability": 0.5791015625}, {"start": 742.86, "end": 743.38, "word": " executed", "probability": 0.4208984375}, {"start": 743.38, "end": 743.68, "word": " at", "probability": 0.77197265625}, {"start": 743.68, "end": 743.8, "word": " the", "probability": 0.92822265625}, {"start": 743.8, "end": 743.9, "word": " end", "probability": 0.9052734375}, {"start": 743.9, "end": 743.98, "word": " of", "probability": 0.958984375}, {"start": 743.98, "end": 744.04, "word": " the", "probability": 0.921875}, {"start": 744.04, "end": 744.26, "word": " day.", "probability": 0.96630859375}, {"start": 745.28, "end": 745.66, "word": " When", "probability": 0.23291015625}, {"start": 745.66, "end": 745.9, "word": " I", "probability": 0.373046875}, {"start": 745.9, "end": 746.34, "word": " close", "probability": 0.5302734375}, {"start": 746.34, "end": 746.58, "word": " the", "probability": 0.6123046875}, {"start": 746.58, "end": 746.78, "word": " stock", "probability": 0.349609375}, {"start": 746.78, "end": 746.82, "word": " market", "probability": 0.405029296875}, {"start": 746.82, "end": 746.94, "word": " or", "probability": 0.6123046875}, {"start": 746.94, "end": 747.18, "word": " before", "probability": 0.6337890625}, {"start": 747.18, "end": 747.54, "word": " closing", "probability": 0.607421875}, {"start": 747.54, "end": 747.68, "word": " the", "probability": 0.60400390625}, {"start": 747.68, "end": 747.84, "word": " stock", "probability": 0.70556640625}, {"start": 747.84, "end": 747.92, "word": " market,", "probability": 0.88916015625}, {"start": 748.08, "end": 748.5, "word": " I", "probability": 0.892578125}, {"start": 748.5, "end": 748.62, "word": " go", "probability": 0.5048828125}, {"start": 748.62, "end": 748.74, "word": " and", "probability": 0.6142578125}, {"start": 748.74, "end": 749.04, "word": " execute", "probability": 0.4765625}, {"start": 749.04, "end": 749.34, "word": " all", "probability": 0.92626953125}, {"start": 749.34, "end": 749.44, "word": " the", "probability": 0.78759765625}, {"start": 749.44, "end": 749.74, "word": " orders", "probability": 0.62255859375}, {"start": 749.74, "end": 749.88, "word": " that", "probability": 0.369873046875}, {"start": 749.88, "end": 750.12, "word": " were", "probability": 0.654296875}, {"start": 750.12, "end": 751.6, "word": " ordered", "probability": 0.28076171875}, {"start": 751.6, "end": 752.38, "word": " or", "probability": 0.259765625}, {"start": 752.38, "end": 752.86, "word": " opened", "probability": 0.33447265625}, {"start": 752.86, "end": 752.98, "word": " by", "probability": 0.51904296875}, {"start": 752.98, "end": 753.34, "word": " a", "probability": 0.6640625}, {"start": 753.34, "end": 753.34, "word": " company", "probability": 0.87744140625}, {"start": 753.34, "end": 753.56, "word": " or", "probability": 0.7177734375}, {"start": 753.56, "end": 753.74, "word": " someone", "probability": 0.2294921875}, {"start": 753.74, "end": 753.86, "word": " else.", "probability": 0.85302734375}, {"start": 754.48, "end": 754.92, "word": " Now", "probability": 0.2066650390625}, {"start": 754.92, "end": 755.24, "word": " I", "probability": 0.64990234375}, {"start": 755.24, "end": 755.3, "word": " am", "probability": 0.328857421875}, {"start": 755.3, "end": 755.42, "word": " in", "probability": 0.491943359375}, {"start": 755.42, "end": 755.48, "word": " front", "probability": 0.935546875}, {"start": 755.48, "end": 755.6, "word": " of", "probability": 0.96630859375}, {"start": 755.6, "end": 755.66, "word": " a", "probability": 0.8212890625}, {"start": 755.66, "end": 755.96, "word": " scenario", "probability": 0.90283203125}, {"start": 755.96, "end": 756.18, "word": " where", "probability": 0.400634765625}, {"start": 756.18, "end": 756.36, "word": " I", "probability": 0.98193359375}, {"start": 756.36, "end": 756.62, "word": " have", "probability": 0.9287109375}, {"start": 756.62, "end": 757.1, "word": " orders", "probability": 0.77978515625}], "temperature": 1.0}, {"id": 37, "seek": 76829, "start": 758.43, "end": 768.29, "text": "With certain information or certain details that I want it to be implemented, but I don't want to implement it now, I want to postpone its implementation for later. Okay? So we need a way that the commands are calm", "tokens": [20943, 1629, 1589, 420, 1629, 4365, 300, 286, 528, 309, 281, 312, 12270, 11, 457, 286, 500, 380, 528, 281, 4445, 309, 586, 11, 286, 528, 281, 28973, 546, 1080, 11420, 337, 1780, 13, 1033, 30, 407, 321, 643, 257, 636, 300, 264, 16901, 366, 7151], "avg_logprob": -0.5801197011420067, "compression_ratio": 1.4965034965034965, "no_speech_prob": 5.704164505004883e-05, "words": [{"start": 758.43, "end": 758.65, "word": "With", "probability": 0.0296478271484375}, {"start": 758.65, "end": 758.77, "word": " certain", "probability": 0.3486328125}, {"start": 758.77, "end": 759.43, "word": " information", "probability": 0.59716796875}, {"start": 759.43, "end": 759.65, "word": " or", "probability": 0.46923828125}, {"start": 759.65, "end": 759.71, "word": " certain", "probability": 0.400390625}, {"start": 759.71, "end": 760.27, "word": " details", "probability": 0.80908203125}, {"start": 760.27, "end": 760.49, "word": " that", "probability": 0.452880859375}, {"start": 760.49, "end": 760.59, "word": " I", "probability": 0.56396484375}, {"start": 760.59, "end": 760.67, "word": " want", "probability": 0.7431640625}, {"start": 760.67, "end": 760.83, "word": " it", "probability": 0.24365234375}, {"start": 760.83, "end": 760.89, "word": " to", "probability": 0.88671875}, {"start": 760.89, "end": 761.01, "word": " be", "probability": 0.70703125}, {"start": 761.01, "end": 761.21, "word": " implemented,", "probability": 0.2398681640625}, {"start": 761.35, "end": 761.49, "word": " but", "probability": 0.87109375}, {"start": 761.49, "end": 761.63, "word": " I", "probability": 0.8447265625}, {"start": 761.63, "end": 761.67, "word": " don't", "probability": 0.7259521484375}, {"start": 761.67, "end": 761.83, "word": " want", "probability": 0.865234375}, {"start": 761.83, "end": 761.95, "word": " to", "probability": 0.908203125}, {"start": 761.95, "end": 762.11, "word": " implement", "probability": 0.6142578125}, {"start": 762.11, "end": 762.23, "word": " it", "probability": 0.69921875}, {"start": 762.23, "end": 762.47, "word": " now,", "probability": 0.72705078125}, {"start": 762.59, "end": 762.63, "word": " I", "probability": 0.83251953125}, {"start": 762.63, "end": 762.73, "word": " want", "probability": 0.79736328125}, {"start": 762.73, "end": 762.85, "word": " to", "probability": 0.95654296875}, {"start": 762.85, "end": 763.01, "word": " postpone", "probability": 0.699951171875}, {"start": 763.01, "end": 763.13, "word": " its", "probability": 0.6650390625}, {"start": 763.13, "end": 763.49, "word": " implementation", "probability": 0.767578125}, {"start": 763.49, "end": 764.49, "word": " for", "probability": 0.45458984375}, {"start": 764.49, "end": 764.93, "word": " later.", "probability": 0.67333984375}, {"start": 765.51, "end": 765.83, "word": " Okay?", "probability": 0.38720703125}, {"start": 766.39, "end": 766.61, "word": " So", "probability": 0.84716796875}, {"start": 766.61, "end": 766.67, "word": " we", "probability": 0.66796875}, {"start": 766.67, "end": 766.83, "word": " need", "probability": 0.861328125}, {"start": 766.83, "end": 766.95, "word": " a", "probability": 0.9677734375}, {"start": 766.95, "end": 767.23, "word": " way", "probability": 0.83154296875}, {"start": 767.23, "end": 767.55, "word": " that", "probability": 0.454833984375}, {"start": 767.55, "end": 767.65, "word": " the", "probability": 0.466064453125}, {"start": 767.65, "end": 767.93, "word": " commands", "probability": 0.271484375}, {"start": 767.93, "end": 768.15, "word": " are", "probability": 0.73193359375}, {"start": 768.15, "end": 768.29, "word": " calm", "probability": 0.5048828125}], "temperature": 1.0}, {"id": 38, "seek": 79326, "start": 769.7, "end": 793.26, "text": "I store it in a certain way so that I can implement it again and when I implement it again, I want to implement it again easily so that I don't have to overdo it to remember every detail, not every detail, we said that I have to have specific details to implement them, so any scenario like that, I have to make commands and implement the commands later, okay? I have to have the command pattern in it", "tokens": [40, 3531, 309, 294, 257, 1629, 636, 370, 300, 286, 393, 4445, 309, 797, 293, 562, 286, 4445, 309, 797, 11, 286, 528, 281, 4445, 309, 797, 3612, 370, 300, 286, 500, 380, 362, 281, 670, 2595, 309, 281, 1604, 633, 2607, 11, 406, 633, 2607, 11, 321, 848, 300, 286, 362, 281, 362, 2685, 4365, 281, 4445, 552, 11, 370, 604, 9005, 411, 300, 11, 286, 362, 281, 652, 16901, 293, 4445, 264, 16901, 1780, 11, 1392, 30, 286, 362, 281, 362, 264, 5622, 5102, 294, 309], "avg_logprob": -0.5410814713895991, "compression_ratio": 2.045918367346939, "no_speech_prob": 9.775161743164062e-06, "words": [{"start": 769.7, "end": 769.9, "word": "I", "probability": 0.50439453125}, {"start": 769.9, "end": 770.18, "word": " store", "probability": 0.22265625}, {"start": 770.18, "end": 770.38, "word": " it", "probability": 0.456298828125}, {"start": 770.38, "end": 770.48, "word": " in", "probability": 0.65478515625}, {"start": 770.48, "end": 770.6, "word": " a", "probability": 0.5107421875}, {"start": 770.6, "end": 770.98, "word": " certain", "probability": 0.23681640625}, {"start": 770.98, "end": 771.1, "word": " way", "probability": 0.91845703125}, {"start": 771.1, "end": 771.54, "word": " so", "probability": 0.274658203125}, {"start": 771.54, "end": 771.72, "word": " that", "probability": 0.64453125}, {"start": 771.72, "end": 771.88, "word": " I", "probability": 0.85888671875}, {"start": 771.88, "end": 772.24, "word": " can", "probability": 0.8193359375}, {"start": 772.24, "end": 772.4, "word": " implement", "probability": 0.217529296875}, {"start": 772.4, "end": 772.7, "word": " it", "probability": 0.90673828125}, {"start": 772.7, "end": 772.7, "word": " again", "probability": 0.54052734375}, {"start": 772.7, "end": 773.28, "word": " and", "probability": 0.4423828125}, {"start": 773.28, "end": 773.46, "word": " when", "probability": 0.6435546875}, {"start": 773.46, "end": 773.6, "word": " I", "probability": 0.97705078125}, {"start": 773.6, "end": 774.1, "word": " implement", "probability": 0.32666015625}, {"start": 774.1, "end": 774.4, "word": " it", "probability": 0.92626953125}, {"start": 774.4, "end": 774.44, "word": " again,", "probability": 0.673828125}, {"start": 774.58, "end": 774.58, "word": " I", "probability": 0.94873046875}, {"start": 774.58, "end": 774.76, "word": " want", "probability": 0.63037109375}, {"start": 774.76, "end": 775.12, "word": " to", "probability": 0.9208984375}, {"start": 775.12, "end": 775.32, "word": " implement", "probability": 0.7685546875}, {"start": 775.32, "end": 775.52, "word": " it", "probability": 0.94775390625}, {"start": 775.52, "end": 775.54, "word": " again", "probability": 0.4609375}, {"start": 775.54, "end": 776.0, "word": " easily", "probability": 0.74462890625}, {"start": 776.0, "end": 776.36, "word": " so", "probability": 0.472900390625}, {"start": 776.36, "end": 776.84, "word": " that", "probability": 0.90478515625}, {"start": 776.84, "end": 779.14, "word": " I", "probability": 0.771484375}, {"start": 779.14, "end": 779.42, "word": " don't", "probability": 0.854248046875}, {"start": 779.42, "end": 779.42, "word": " have", "probability": 0.58154296875}, {"start": 779.42, "end": 779.52, "word": " to", "probability": 0.96826171875}, {"start": 779.52, "end": 779.8, "word": " overdo", "probability": 0.4161376953125}, {"start": 779.8, "end": 779.86, "word": " it", "probability": 0.87109375}, {"start": 779.86, "end": 780.02, "word": " to", "probability": 0.62158203125}, {"start": 780.02, "end": 780.4, "word": " remember", "probability": 0.6630859375}, {"start": 780.4, "end": 781.02, "word": " every", "probability": 0.51806640625}, {"start": 781.02, "end": 781.22, "word": " detail,", "probability": 0.60400390625}, {"start": 781.3, "end": 781.48, "word": " not", "probability": 0.86083984375}, {"start": 781.48, "end": 781.68, "word": " every", "probability": 0.68798828125}, {"start": 781.68, "end": 781.82, "word": " detail,", "probability": 0.387451171875}, {"start": 781.9, "end": 781.92, "word": " we", "probability": 0.53271484375}, {"start": 781.92, "end": 782.04, "word": " said", "probability": 0.57568359375}, {"start": 782.04, "end": 782.2, "word": " that", "probability": 0.43212890625}, {"start": 782.2, "end": 782.2, "word": " I", "probability": 0.2071533203125}, {"start": 782.2, "end": 782.26, "word": " have", "probability": 0.376708984375}, {"start": 782.26, "end": 782.26, "word": " to", "probability": 0.9443359375}, {"start": 782.26, "end": 782.36, "word": " have", "probability": 0.257568359375}, {"start": 782.36, "end": 782.44, "word": " specific", "probability": 0.49267578125}, {"start": 782.44, "end": 782.84, "word": " details", "probability": 0.791015625}, {"start": 782.84, "end": 783.98, "word": " to", "probability": 0.64501953125}, {"start": 783.98, "end": 784.38, "word": " implement", "probability": 0.615234375}, {"start": 784.38, "end": 784.74, "word": " them,", "probability": 0.4111328125}, {"start": 785.44, "end": 785.86, "word": " so", "probability": 0.81591796875}, {"start": 785.86, "end": 786.24, "word": " any", "probability": 0.81396484375}, {"start": 786.24, "end": 786.7, "word": " scenario", "probability": 0.892578125}, {"start": 786.7, "end": 786.82, "word": " like", "probability": 0.876953125}, {"start": 786.82, "end": 787.12, "word": " that,", "probability": 0.6943359375}, {"start": 787.2, "end": 787.22, "word": " I", "probability": 0.82177734375}, {"start": 787.22, "end": 787.38, "word": " have", "probability": 0.5908203125}, {"start": 787.38, "end": 787.7, "word": " to", "probability": 0.97265625}, {"start": 787.7, "end": 788.52, "word": " make", "probability": 0.276611328125}, {"start": 788.52, "end": 788.96, "word": " commands", "probability": 0.4580078125}, {"start": 788.96, "end": 789.28, "word": " and", "probability": 0.81591796875}, {"start": 789.28, "end": 789.6, "word": " implement", "probability": 0.70068359375}, {"start": 789.6, "end": 789.78, "word": " the", "probability": 0.450927734375}, {"start": 789.78, "end": 790.06, "word": " commands", "probability": 0.82861328125}, {"start": 790.06, "end": 790.9, "word": " later,", "probability": 0.82568359375}, {"start": 791.72, "end": 791.94, "word": " okay?", "probability": 0.548828125}, {"start": 792.08, "end": 792.16, "word": " I", "probability": 0.58544921875}, {"start": 792.16, "end": 792.24, "word": " have", "probability": 0.61083984375}, {"start": 792.24, "end": 792.36, "word": " to", "probability": 0.96142578125}, {"start": 792.36, "end": 792.56, "word": " have", "probability": 0.7392578125}, {"start": 792.56, "end": 792.68, "word": " the", "probability": 0.6171875}, {"start": 792.68, "end": 792.98, "word": " command", "probability": 0.923828125}, {"start": 792.98, "end": 793.26, "word": " pattern", "probability": 0.87939453125}, {"start": 793.26, "end": 793.26, "word": " in", "probability": 0.4580078125}, {"start": 793.26, "end": 793.26, "word": " it", "probability": 0.931640625}], "temperature": 1.0}, {"id": 39, "seek": 80314, "start": 795.3, "end": 803.14, "text": "Another common pattern is undo and redo", "tokens": [46028, 2689, 5102, 307, 23779, 293, 29956], "avg_logprob": -0.5644531100988388, "compression_ratio": 0.8297872340425532, "no_speech_prob": 0.0, "words": [{"start": 795.3, "end": 795.84, "word": "Another", "probability": 0.83740234375}, {"start": 795.84, "end": 796.74, "word": " common", "probability": 0.25537109375}, {"start": 796.74, "end": 797.28, "word": " pattern", "probability": 0.46630859375}, {"start": 797.28, "end": 799.22, "word": " is", "probability": 0.266845703125}, {"start": 799.22, "end": 802.46, "word": " undo", "probability": 0.8408203125}, {"start": 802.46, "end": 802.86, "word": " and", "probability": 0.70654296875}, {"start": 802.86, "end": 803.14, "word": " redo", "probability": 0.95263671875}], "temperature": 1.0}, {"id": 40, "seek": 83313, "start": 805.17, "end": 833.13, "text": "Have you tried undo and redo before? Have you gone to the office in Word? Do you have a review arrow? Right or wrong? Ctrl-Z and Ctrl-Y, right? Or this ASSUMption? Have you found yourself typing in Word and changing the coordination and changing the colors of the line? It is possible that when you click on this arrow, each click returns to the previous step. And then each click here returns to the steps that have been done.", "tokens": [25659, 291, 3031, 23779, 293, 29956, 949, 30, 3560, 291, 2780, 281, 264, 3398, 294, 8725, 30, 1144, 291, 362, 257, 3131, 11610, 30, 1779, 420, 2085, 30, 35233, 12, 57, 293, 35233, 12, 56, 11, 558, 30, 1610, 341, 7469, 50, 14340, 1695, 30, 3560, 291, 1352, 1803, 18444, 294, 8725, 293, 4473, 264, 21252, 293, 4473, 264, 4577, 295, 264, 1622, 30, 467, 307, 1944, 300, 562, 291, 2052, 322, 341, 11610, 11, 1184, 2052, 11247, 281, 264, 3894, 1823, 13, 400, 550, 1184, 2052, 510, 11247, 281, 264, 4439, 300, 362, 668, 1096, 13], "avg_logprob": -0.5908800837944965, "compression_ratio": 1.714859437751004, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 805.17, "end": 805.39, "word": "Have", "probability": 0.1380615234375}, {"start": 805.39, "end": 805.61, "word": " you", "probability": 0.962890625}, {"start": 805.61, "end": 805.61, "word": " tried", "probability": 0.5341796875}, {"start": 805.61, "end": 805.93, "word": " undo", "probability": 0.84375}, {"start": 805.93, "end": 806.15, "word": " and", "probability": 0.389892578125}, {"start": 806.15, "end": 806.39, "word": " redo", "probability": 0.9716796875}, {"start": 806.39, "end": 806.65, "word": " before?", "probability": 0.6181640625}, {"start": 807.39, "end": 807.59, "word": " Have", "probability": 0.317138671875}, {"start": 807.59, "end": 807.59, "word": " you", "probability": 0.9638671875}, {"start": 807.59, "end": 807.73, "word": " gone", "probability": 0.07818603515625}, {"start": 807.73, "end": 807.83, "word": " to", "probability": 0.81884765625}, {"start": 807.83, "end": 807.89, "word": " the", "probability": 0.623046875}, {"start": 807.89, "end": 808.17, "word": " office", "probability": 0.556640625}, {"start": 808.17, "end": 808.33, "word": " in", "probability": 0.374267578125}, {"start": 808.33, "end": 808.59, "word": " Word?", "probability": 0.6806640625}, {"start": 808.89, "end": 809.19, "word": " Do", "probability": 0.301025390625}, {"start": 809.19, "end": 809.25, "word": " you", "probability": 0.9619140625}, {"start": 809.25, "end": 809.43, "word": " have", "probability": 0.8984375}, {"start": 809.43, "end": 809.59, "word": " a", "probability": 0.490478515625}, {"start": 809.59, "end": 810.21, "word": " review", "probability": 0.03997802734375}, {"start": 810.21, "end": 810.21, "word": " arrow?", "probability": 0.85107421875}, {"start": 810.47, "end": 810.67, "word": " Right", "probability": 0.3125}, {"start": 810.67, "end": 810.81, "word": " or", "probability": 0.6943359375}, {"start": 810.81, "end": 810.97, "word": " wrong?", "probability": 0.65673828125}, {"start": 811.67, "end": 812.17, "word": " Ctrl", "probability": 0.377685546875}, {"start": 812.17, "end": 812.51, "word": "-Z", "probability": 0.2950439453125}, {"start": 812.51, "end": 812.71, "word": " and", "probability": 0.7666015625}, {"start": 812.71, "end": 812.95, "word": " Ctrl", "probability": 0.95654296875}, {"start": 812.95, "end": 813.29, "word": "-Y,", "probability": 0.971435546875}, {"start": 813.51, "end": 813.77, "word": " right?", "probability": 0.6591796875}, {"start": 814.57, "end": 815.07, "word": " Or", "probability": 0.282470703125}, {"start": 815.07, "end": 815.47, "word": " this", "probability": 0.366943359375}, {"start": 815.47, "end": 815.95, "word": " ASSUMption?", "probability": 0.550445556640625}, {"start": 816.47, "end": 816.79, "word": " Have", "probability": 0.65576171875}, {"start": 816.79, "end": 816.79, "word": " you", "probability": 0.96630859375}, {"start": 816.79, "end": 817.09, "word": " found", "probability": 0.196533203125}, {"start": 817.09, "end": 817.97, "word": " yourself", "probability": 0.66455078125}, {"start": 817.97, "end": 818.21, "word": " typing", "probability": 0.391357421875}, {"start": 818.21, "end": 819.19, "word": " in", "probability": 0.5283203125}, {"start": 819.19, "end": 819.53, "word": " Word", "probability": 0.90966796875}, {"start": 819.53, "end": 819.63, "word": " and", "probability": 0.382568359375}, {"start": 819.63, "end": 819.93, "word": " changing", "probability": 0.716796875}, {"start": 819.93, "end": 820.07, "word": " the", "probability": 0.52099609375}, {"start": 820.07, "end": 820.39, "word": " coordination", "probability": 0.07232666015625}, {"start": 820.39, "end": 820.63, "word": " and", "probability": 0.69921875}, {"start": 820.63, "end": 821.45, "word": " changing", "probability": 0.56884765625}, {"start": 821.45, "end": 821.59, "word": " the", "probability": 0.79345703125}, {"start": 821.59, "end": 821.75, "word": " colors", "probability": 0.407470703125}, {"start": 821.75, "end": 821.89, "word": " of", "probability": 0.91357421875}, {"start": 821.89, "end": 821.91, "word": " the", "probability": 0.86962890625}, {"start": 821.91, "end": 822.17, "word": " line?", "probability": 0.8076171875}, {"start": 822.77, "end": 822.89, "word": " It", "probability": 0.2255859375}, {"start": 822.89, "end": 823.11, "word": " is", "probability": 0.5908203125}, {"start": 823.11, "end": 823.11, "word": " possible", "probability": 0.47216796875}, {"start": 823.11, "end": 823.23, "word": " that", "probability": 0.4609375}, {"start": 823.23, "end": 824.01, "word": " when", "probability": 0.63720703125}, {"start": 824.01, "end": 824.17, "word": " you", "probability": 0.94873046875}, {"start": 824.17, "end": 824.35, "word": " click", "probability": 0.37060546875}, {"start": 824.35, "end": 824.49, "word": " on", "probability": 0.80322265625}, {"start": 824.49, "end": 824.61, "word": " this", "probability": 0.8232421875}, {"start": 824.61, "end": 824.83, "word": " arrow,", "probability": 0.9580078125}, {"start": 825.31, "end": 825.89, "word": " each", "probability": 0.45166015625}, {"start": 825.89, "end": 826.41, "word": " click", "probability": 0.381591796875}, {"start": 826.41, "end": 826.99, "word": " returns", "probability": 0.363525390625}, {"start": 826.99, "end": 828.15, "word": " to", "probability": 0.83349609375}, {"start": 828.15, "end": 828.23, "word": " the", "probability": 0.7880859375}, {"start": 828.23, "end": 828.75, "word": " previous", "probability": 0.845703125}, {"start": 828.75, "end": 828.75, "word": " step.", "probability": 0.91552734375}, {"start": 829.43, "end": 829.93, "word": " And", "probability": 0.7021484375}, {"start": 829.93, "end": 830.11, "word": " then", "probability": 0.6962890625}, {"start": 830.11, "end": 830.35, "word": " each", "probability": 0.6396484375}, {"start": 830.35, "end": 830.63, "word": " click", "probability": 0.8212890625}, {"start": 830.63, "end": 830.91, "word": " here", "probability": 0.72509765625}, {"start": 830.91, "end": 831.35, "word": " returns", "probability": 0.60791015625}, {"start": 831.35, "end": 831.51, "word": " to", "probability": 0.5234375}, {"start": 831.51, "end": 831.53, "word": " the", "probability": 0.890625}, {"start": 831.53, "end": 832.03, "word": " steps", "probability": 0.58251953125}, {"start": 832.03, "end": 832.71, "word": " that", "probability": 0.83203125}, {"start": 832.71, "end": 832.83, "word": " have", "probability": 0.451171875}, {"start": 832.83, "end": 832.91, "word": " been", "probability": 0.90966796875}, {"start": 832.91, "end": 833.13, "word": " done.", "probability": 0.5390625}], "temperature": 1.0}, {"id": 41, "seek": 86121, "start": 834.21, "end": 861.21, "text": " Have you ever wondered how to do undo and redo? Have you ever tried to do it? How do you execute undo and redo? Have you tried to do it? Okay, you will say stack, I know how to put it in the stack and get it, but have you ever tried to do it in a specific application? We want to try, of course, the command pattern helps us execute the process of undo and redo because it is actually what? Commands that have been executed currently", "tokens": [3560, 291, 1562, 17055, 577, 281, 360, 23779, 293, 29956, 30, 3560, 291, 1562, 3031, 281, 360, 309, 30, 1012, 360, 291, 14483, 23779, 293, 29956, 30, 3560, 291, 3031, 281, 360, 309, 30, 1033, 11, 291, 486, 584, 8630, 11, 286, 458, 577, 281, 829, 309, 294, 264, 8630, 293, 483, 309, 11, 457, 362, 291, 1562, 3031, 281, 360, 309, 294, 257, 2685, 3861, 30, 492, 528, 281, 853, 11, 295, 1164, 11, 264, 5622, 5102, 3665, 505, 14483, 264, 1399, 295, 23779, 293, 29956, 570, 309, 307, 767, 437, 30, 3046, 2967, 300, 362, 668, 17577, 4362], "avg_logprob": -0.47400989154777906, "compression_ratio": 1.9035087719298245, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 834.21, "end": 834.51, "word": " Have", "probability": 0.10919189453125}, {"start": 834.51, "end": 834.75, "word": " you", "probability": 0.96533203125}, {"start": 834.75, "end": 834.75, "word": " ever", "probability": 0.81884765625}, {"start": 834.75, "end": 835.07, "word": " wondered", "probability": 0.34912109375}, {"start": 835.07, "end": 835.35, "word": " how", "probability": 0.8076171875}, {"start": 835.35, "end": 835.63, "word": " to", "probability": 0.46923828125}, {"start": 835.63, "end": 835.93, "word": " do", "probability": 0.276611328125}, {"start": 835.93, "end": 836.41, "word": " undo", "probability": 0.49072265625}, {"start": 836.41, "end": 836.57, "word": " and", "probability": 0.354248046875}, {"start": 836.57, "end": 836.73, "word": " redo?", "probability": 0.96142578125}, {"start": 836.91, "end": 837.27, "word": " Have", "probability": 0.7705078125}, {"start": 837.27, "end": 837.45, "word": " you", "probability": 0.97119140625}, {"start": 837.45, "end": 837.45, "word": " ever", "probability": 0.7666015625}, {"start": 837.45, "end": 837.83, "word": " tried", "probability": 0.82177734375}, {"start": 837.83, "end": 838.09, "word": " to", "probability": 0.68994140625}, {"start": 838.09, "end": 838.35, "word": " do", "probability": 0.469482421875}, {"start": 838.35, "end": 838.45, "word": " it?", "probability": 0.833984375}, {"start": 838.59, "end": 838.65, "word": " How", "probability": 0.261474609375}, {"start": 838.65, "end": 839.17, "word": " do", "probability": 0.49365234375}, {"start": 839.17, "end": 839.19, "word": " you", "probability": 0.94775390625}, {"start": 839.19, "end": 839.49, "word": " execute", "probability": 0.320556640625}, {"start": 839.49, "end": 839.77, "word": " undo", "probability": 0.399658203125}, {"start": 839.77, "end": 839.97, "word": " and", "probability": 0.923828125}, {"start": 839.97, "end": 840.17, "word": " redo?", "probability": 0.8583984375}, {"start": 840.25, "end": 840.35, "word": " Have", "probability": 0.421142578125}, {"start": 840.35, "end": 840.35, "word": " you", "probability": 0.96923828125}, {"start": 840.35, "end": 840.57, "word": " tried", "probability": 0.5625}, {"start": 840.57, "end": 840.71, "word": " to", "probability": 0.55517578125}, {"start": 840.71, "end": 840.93, "word": " do", "probability": 0.8681640625}, {"start": 840.93, "end": 841.13, "word": " it?", "probability": 0.93798828125}, {"start": 841.71, "end": 842.15, "word": " Okay,", "probability": 0.33740234375}, {"start": 842.73, "end": 842.91, "word": " you", "probability": 0.84814453125}, {"start": 842.91, "end": 842.91, "word": " will", "probability": 0.410400390625}, {"start": 842.91, "end": 843.05, "word": " say", "probability": 0.7216796875}, {"start": 843.05, "end": 843.39, "word": " stack,", "probability": 0.2158203125}, {"start": 843.57, "end": 843.57, "word": " I", "probability": 0.490478515625}, {"start": 843.57, "end": 843.71, "word": " know", "probability": 0.501953125}, {"start": 843.71, "end": 843.83, "word": " how", "probability": 0.72802734375}, {"start": 843.83, "end": 843.83, "word": " to", "probability": 0.94384765625}, {"start": 843.83, "end": 844.03, "word": " put", "probability": 0.440673828125}, {"start": 844.03, "end": 844.13, "word": " it", "probability": 0.39794921875}, {"start": 844.13, "end": 844.13, "word": " in", "probability": 0.86474609375}, {"start": 844.13, "end": 844.21, "word": " the", "probability": 0.517578125}, {"start": 844.21, "end": 844.49, "word": " stack", "probability": 0.9853515625}, {"start": 844.49, "end": 844.61, "word": " and", "probability": 0.810546875}, {"start": 844.61, "end": 844.73, "word": " get", "probability": 0.38525390625}, {"start": 844.73, "end": 844.87, "word": " it,", "probability": 0.91455078125}, {"start": 844.95, "end": 845.11, "word": " but", "probability": 0.8818359375}, {"start": 845.11, "end": 845.51, "word": " have", "probability": 0.82763671875}, {"start": 845.51, "end": 845.65, "word": " you", "probability": 0.9677734375}, {"start": 845.65, "end": 845.79, "word": " ever", "probability": 0.402587890625}, {"start": 845.79, "end": 846.01, "word": " tried", "probability": 0.91259765625}, {"start": 846.01, "end": 846.21, "word": " to", "probability": 0.8974609375}, {"start": 846.21, "end": 846.41, "word": " do", "probability": 0.9033203125}, {"start": 846.41, "end": 846.61, "word": " it", "probability": 0.95263671875}, {"start": 846.61, "end": 847.13, "word": " in", "probability": 0.76953125}, {"start": 847.13, "end": 847.23, "word": " a", "probability": 0.9560546875}, {"start": 847.23, "end": 847.77, "word": " specific", "probability": 0.37158203125}, {"start": 847.77, "end": 847.77, "word": " application?", "probability": 0.77197265625}, {"start": 848.61, "end": 848.89, "word": " We", "probability": 0.50146484375}, {"start": 848.89, "end": 849.05, "word": " want", "probability": 0.68115234375}, {"start": 849.05, "end": 849.17, "word": " to", "probability": 0.97119140625}, {"start": 849.17, "end": 849.35, "word": " try,", "probability": 0.9228515625}, {"start": 849.47, "end": 849.85, "word": " of", "probability": 0.6552734375}, {"start": 849.85, "end": 849.95, "word": " course,", "probability": 0.96044921875}, {"start": 850.67, "end": 850.91, "word": " the", "probability": 0.7333984375}, {"start": 850.91, "end": 851.41, "word": " command", "probability": 0.923828125}, {"start": 851.41, "end": 851.87, "word": " pattern", "probability": 0.88916015625}, {"start": 851.87, "end": 852.87, "word": " helps", "probability": 0.3828125}, {"start": 852.87, "end": 853.39, "word": " us", "probability": 0.93505859375}, {"start": 853.39, "end": 854.01, "word": " execute", "probability": 0.40576171875}, {"start": 854.01, "end": 854.09, "word": " the", "probability": 0.73828125}, {"start": 854.09, "end": 854.39, "word": " process", "probability": 0.61572265625}, {"start": 854.39, "end": 854.97, "word": " of", "probability": 0.94580078125}, {"start": 854.97, "end": 855.27, "word": " undo", "probability": 0.9169921875}, {"start": 855.27, "end": 855.45, "word": " and", "probability": 0.9287109375}, {"start": 855.45, "end": 855.67, "word": " redo", "probability": 0.876953125}, {"start": 855.67, "end": 856.23, "word": " because", "probability": 0.19873046875}, {"start": 856.23, "end": 856.37, "word": " it", "probability": 0.541015625}, {"start": 856.37, "end": 856.51, "word": " is", "probability": 0.52001953125}, {"start": 856.51, "end": 856.83, "word": " actually", "probability": 0.420654296875}, {"start": 856.83, "end": 857.79, "word": " what?", "probability": 0.5224609375}, {"start": 858.99, "end": 859.43, "word": " Commands", "probability": 0.771728515625}, {"start": 859.43, "end": 860.17, "word": " that", "probability": 0.4765625}, {"start": 860.17, "end": 860.29, "word": " have", "probability": 0.7099609375}, {"start": 860.29, "end": 860.35, "word": " been", "probability": 0.81201171875}, {"start": 860.35, "end": 860.71, "word": " executed", "probability": 0.74365234375}, {"start": 860.71, "end": 861.21, "word": " currently", "probability": 0.3251953125}], "temperature": 1.0}, {"id": 42, "seek": 86480, "start": 861.9, "end": 864.8, "text": "But at the same time, I took and stored the same commands that were executed.", "tokens": [7835, 412, 264, 912, 565, 11, 286, 1890, 293, 12187, 264, 912, 16901, 300, 645, 17577, 13], "avg_logprob": -0.557725684510337, "compression_ratio": 1.0694444444444444, "no_speech_prob": 0.0, "words": [{"start": 861.9, "end": 862.28, "word": "But", "probability": 0.38134765625}, {"start": 862.28, "end": 862.72, "word": " at", "probability": 0.74560546875}, {"start": 862.72, "end": 863.0, "word": " the", "probability": 0.92822265625}, {"start": 863.0, "end": 863.0, "word": " same", "probability": 0.90673828125}, {"start": 863.0, "end": 863.34, "word": " time,", "probability": 0.86767578125}, {"start": 863.56, "end": 863.86, "word": " I", "probability": 0.61474609375}, {"start": 863.86, "end": 863.86, "word": " took", "probability": 0.361083984375}, {"start": 863.86, "end": 863.86, "word": " and", "probability": 0.269287109375}, {"start": 863.86, "end": 863.86, "word": " stored", "probability": 0.73291015625}, {"start": 863.86, "end": 863.86, "word": " the", "probability": 0.71826171875}, {"start": 863.86, "end": 863.86, "word": " same", "probability": 0.7080078125}, {"start": 863.86, "end": 864.24, "word": " commands", "probability": 0.263671875}, {"start": 864.24, "end": 864.4, "word": " that", "probability": 0.68212890625}, {"start": 864.4, "end": 864.52, "word": " were", "probability": 0.63671875}, {"start": 864.52, "end": 864.8, "word": " executed.", "probability": 0.35546875}], "temperature": 1.0}, {"id": 43, "seek": 89417, "start": 867.59, "end": 894.17, "text": "Okay, why did I save it? So that I can go back to it and run it again, for example, to do redo So this example, undo and redo also includes that you save the commands that have been executed so that later you can go back to it or run it again Also, we will take an example, we will run it, we will see how to do undo and redo on a drawing program", "tokens": [8297, 11, 983, 630, 286, 3155, 309, 30, 407, 300, 286, 393, 352, 646, 281, 309, 293, 1190, 309, 797, 11, 337, 1365, 11, 281, 360, 29956, 407, 341, 1365, 11, 23779, 293, 29956, 611, 5974, 300, 291, 3155, 264, 16901, 300, 362, 668, 17577, 370, 300, 1780, 291, 393, 352, 646, 281, 309, 420, 1190, 309, 797, 2743, 11, 321, 486, 747, 364, 1365, 11, 321, 486, 1190, 309, 11, 321, 486, 536, 577, 281, 360, 23779, 293, 29956, 322, 257, 6316, 1461], "avg_logprob": -0.45183824931873995, "compression_ratio": 1.8020833333333333, "no_speech_prob": 1.3470649719238281e-05, "words": [{"start": 867.59, "end": 867.89, "word": "Okay,", "probability": 0.2015380859375}, {"start": 867.95, "end": 868.13, "word": " why", "probability": 0.81787109375}, {"start": 868.13, "end": 868.23, "word": " did", "probability": 0.7060546875}, {"start": 868.23, "end": 868.23, "word": " I", "probability": 0.69287109375}, {"start": 868.23, "end": 868.41, "word": " save", "probability": 0.6923828125}, {"start": 868.41, "end": 868.71, "word": " it?", "probability": 0.81396484375}, {"start": 868.99, "end": 869.23, "word": " So", "probability": 0.6005859375}, {"start": 869.23, "end": 869.33, "word": " that", "probability": 0.6748046875}, {"start": 869.33, "end": 869.49, "word": " I", "probability": 0.96435546875}, {"start": 869.49, "end": 869.69, "word": " can", "probability": 0.74609375}, {"start": 869.69, "end": 870.39, "word": " go", "probability": 0.101806640625}, {"start": 870.39, "end": 870.69, "word": " back", "probability": 0.8056640625}, {"start": 870.69, "end": 870.97, "word": " to", "probability": 0.486083984375}, {"start": 870.97, "end": 871.09, "word": " it", "probability": 0.87158203125}, {"start": 871.09, "end": 872.03, "word": " and", "probability": 0.78271484375}, {"start": 872.03, "end": 872.61, "word": " run", "probability": 0.287353515625}, {"start": 872.61, "end": 872.89, "word": " it", "probability": 0.93798828125}, {"start": 872.89, "end": 873.09, "word": " again,", "probability": 0.8564453125}, {"start": 873.51, "end": 873.67, "word": " for", "probability": 0.830078125}, {"start": 873.67, "end": 873.89, "word": " example,", "probability": 0.90185546875}, {"start": 874.01, "end": 874.85, "word": " to", "probability": 0.43017578125}, {"start": 874.85, "end": 875.23, "word": " do", "probability": 0.317626953125}, {"start": 875.23, "end": 875.95, "word": " redo", "probability": 0.61083984375}, {"start": 875.95, "end": 876.71, "word": " So", "probability": 0.487060546875}, {"start": 876.71, "end": 876.93, "word": " this", "probability": 0.6923828125}, {"start": 876.93, "end": 877.27, "word": " example,", "probability": 0.8388671875}, {"start": 877.47, "end": 877.97, "word": " undo", "probability": 0.6015625}, {"start": 877.97, "end": 878.13, "word": " and", "probability": 0.344970703125}, {"start": 878.13, "end": 878.43, "word": " redo", "probability": 0.9306640625}, {"start": 878.43, "end": 879.49, "word": " also", "probability": 0.205078125}, {"start": 879.49, "end": 879.89, "word": " includes", "probability": 0.5751953125}, {"start": 879.89, "end": 880.15, "word": " that", "probability": 0.278076171875}, {"start": 880.15, "end": 880.43, "word": " you", "probability": 0.95849609375}, {"start": 880.43, "end": 880.71, "word": " save", "probability": 0.611328125}, {"start": 880.71, "end": 880.89, "word": " the", "probability": 0.7568359375}, {"start": 880.89, "end": 881.25, "word": " commands", "probability": 0.77392578125}, {"start": 881.25, "end": 882.03, "word": " that", "probability": 0.818359375}, {"start": 882.03, "end": 882.23, "word": " have", "probability": 0.411865234375}, {"start": 882.23, "end": 882.31, "word": " been", "probability": 0.9150390625}, {"start": 882.31, "end": 882.73, "word": " executed", "probability": 0.6884765625}, {"start": 882.73, "end": 883.53, "word": " so", "probability": 0.30908203125}, {"start": 883.53, "end": 884.25, "word": " that", "probability": 0.8505859375}, {"start": 884.25, "end": 884.65, "word": " later", "probability": 0.61669921875}, {"start": 884.65, "end": 885.59, "word": " you", "probability": 0.80126953125}, {"start": 885.59, "end": 885.73, "word": " can", "probability": 0.85205078125}, {"start": 885.73, "end": 885.81, "word": " go", "probability": 0.470458984375}, {"start": 885.81, "end": 886.01, "word": " back", "probability": 0.84765625}, {"start": 886.01, "end": 886.19, "word": " to", "probability": 0.84130859375}, {"start": 886.19, "end": 886.37, "word": " it", "probability": 0.65478515625}, {"start": 886.37, "end": 886.67, "word": " or", "probability": 0.830078125}, {"start": 886.67, "end": 887.17, "word": " run", "probability": 0.76171875}, {"start": 887.17, "end": 887.55, "word": " it", "probability": 0.84814453125}, {"start": 887.55, "end": 888.49, "word": " again", "probability": 0.95654296875}, {"start": 888.49, "end": 889.53, "word": " Also,", "probability": 0.396484375}, {"start": 889.65, "end": 889.77, "word": " we", "probability": 0.92529296875}, {"start": 889.77, "end": 889.91, "word": " will", "probability": 0.64404296875}, {"start": 889.91, "end": 890.13, "word": " take", "probability": 0.818359375}, {"start": 890.13, "end": 890.29, "word": " an", "probability": 0.83544921875}, {"start": 890.29, "end": 890.61, "word": " example,", "probability": 0.9697265625}, {"start": 891.33, "end": 891.39, "word": " we", "probability": 0.71435546875}, {"start": 891.39, "end": 891.43, "word": " will", "probability": 0.84130859375}, {"start": 891.43, "end": 891.75, "word": " run", "probability": 0.401123046875}, {"start": 891.75, "end": 891.97, "word": " it,", "probability": 0.8134765625}, {"start": 891.99, "end": 892.11, "word": " we", "probability": 0.7705078125}, {"start": 892.11, "end": 892.11, "word": " will", "probability": 0.83154296875}, {"start": 892.11, "end": 892.23, "word": " see", "probability": 0.90283203125}, {"start": 892.23, "end": 892.43, "word": " how", "probability": 0.93798828125}, {"start": 892.43, "end": 892.55, "word": " to", "probability": 0.7333984375}, {"start": 892.55, "end": 892.67, "word": " do", "probability": 0.65087890625}, {"start": 892.67, "end": 892.95, "word": " undo", "probability": 0.79052734375}, {"start": 892.95, "end": 893.17, "word": " and", "probability": 0.900390625}, {"start": 893.17, "end": 893.31, "word": " redo", "probability": 0.90771484375}, {"start": 893.31, "end": 893.49, "word": " on", "probability": 0.83642578125}, {"start": 893.49, "end": 893.91, "word": " a", "probability": 0.6201171875}, {"start": 893.91, "end": 894.13, "word": " drawing", "probability": 0.7724609375}, {"start": 894.13, "end": 894.17, "word": " program", "probability": 0.484375}], "temperature": 1.0}, {"id": 44, "seek": 91784, "start": 894.98, "end": 917.84, "text": "But this is the next lecture. For example, we will make the artist draw with the mouse and then we will tell him to undo it. So you will find that the drawing itself is repeated part by part and he wants to redraw it again. Ok? So the command pattern will also help me in memorizing the commands that were executed in order to repeat them or cancel them.", "tokens": [7835, 341, 307, 264, 958, 7991, 13, 1171, 1365, 11, 321, 486, 652, 264, 5748, 2642, 365, 264, 9719, 293, 550, 321, 486, 980, 796, 281, 23779, 309, 13, 407, 291, 486, 915, 300, 264, 6316, 2564, 307, 10477, 644, 538, 644, 293, 415, 2738, 281, 2182, 5131, 309, 797, 13, 3477, 30, 407, 264, 5622, 5102, 486, 611, 854, 385, 294, 10560, 3319, 264, 16901, 300, 645, 17577, 294, 1668, 281, 7149, 552, 420, 10373, 552, 13], "avg_logprob": -0.5569620509690876, "compression_ratio": 1.6465116279069767, "no_speech_prob": 2.2649765014648438e-06, "words": [{"start": 894.98, "end": 895.2, "word": "But", "probability": 0.54150390625}, {"start": 895.2, "end": 895.4, "word": " this", "probability": 0.767578125}, {"start": 895.4, "end": 895.44, "word": " is", "probability": 0.88134765625}, {"start": 895.44, "end": 895.48, "word": " the", "probability": 0.61865234375}, {"start": 895.48, "end": 896.02, "word": " next", "probability": 0.7978515625}, {"start": 896.02, "end": 896.02, "word": " lecture.", "probability": 0.6552734375}, {"start": 896.36, "end": 896.62, "word": " For", "probability": 0.2452392578125}, {"start": 896.62, "end": 896.62, "word": " example,", "probability": 0.87109375}, {"start": 896.62, "end": 896.68, "word": " we", "probability": 0.65380859375}, {"start": 896.68, "end": 896.68, "word": " will", "probability": 0.415771484375}, {"start": 896.68, "end": 896.9, "word": " make", "probability": 0.361083984375}, {"start": 896.9, "end": 897.26, "word": " the", "probability": 0.6416015625}, {"start": 897.26, "end": 897.62, "word": " artist", "probability": 0.416259765625}, {"start": 897.62, "end": 897.98, "word": " draw", "probability": 0.7978515625}, {"start": 897.98, "end": 898.12, "word": " with", "probability": 0.70361328125}, {"start": 898.12, "end": 898.22, "word": " the", "probability": 0.56103515625}, {"start": 898.22, "end": 898.54, "word": " mouse", "probability": 0.96142578125}, {"start": 898.54, "end": 899.32, "word": " and", "probability": 0.3330078125}, {"start": 899.32, "end": 899.84, "word": " then", "probability": 0.73193359375}, {"start": 899.84, "end": 900.02, "word": " we", "probability": 0.33447265625}, {"start": 900.02, "end": 900.04, "word": " will", "probability": 0.375732421875}, {"start": 900.04, "end": 900.16, "word": " tell", "probability": 0.49072265625}, {"start": 900.16, "end": 900.24, "word": " him", "probability": 0.91162109375}, {"start": 900.24, "end": 900.32, "word": " to", "probability": 0.9111328125}, {"start": 900.32, "end": 900.82, "word": " undo", "probability": 0.66796875}, {"start": 900.82, "end": 901.08, "word": " it.", "probability": 0.28466796875}, {"start": 901.48, "end": 901.7, "word": " So", "probability": 0.38134765625}, {"start": 901.7, "end": 902.04, "word": " you", "probability": 0.6689453125}, {"start": 902.04, "end": 902.16, "word": " will", "probability": 0.60009765625}, {"start": 902.16, "end": 902.3, "word": " find", "probability": 0.49560546875}, {"start": 902.3, "end": 902.5, "word": " that", "probability": 0.66015625}, {"start": 902.5, "end": 902.54, "word": " the", "probability": 0.845703125}, {"start": 902.54, "end": 902.78, "word": " drawing", "probability": 0.77734375}, {"start": 902.78, "end": 903.5, "word": " itself", "probability": 0.402587890625}, {"start": 903.5, "end": 903.92, "word": " is", "probability": 0.364501953125}, {"start": 903.92, "end": 904.26, "word": " repeated", "probability": 0.08197021484375}, {"start": 904.26, "end": 904.64, "word": " part", "probability": 0.2066650390625}, {"start": 904.64, "end": 904.8, "word": " by", "probability": 0.92822265625}, {"start": 904.8, "end": 905.08, "word": " part", "probability": 0.904296875}, {"start": 905.08, "end": 905.68, "word": " and", "probability": 0.62353515625}, {"start": 905.68, "end": 906.0, "word": " he", "probability": 0.287841796875}, {"start": 906.0, "end": 906.0, "word": " wants", "probability": 0.5546875}, {"start": 906.0, "end": 906.44, "word": " to", "probability": 0.88330078125}, {"start": 906.44, "end": 906.6, "word": " redraw", "probability": 0.6416015625}, {"start": 906.6, "end": 907.52, "word": " it", "probability": 0.91748046875}, {"start": 907.52, "end": 908.08, "word": " again.", "probability": 0.83203125}, {"start": 908.9, "end": 909.04, "word": " Ok?", "probability": 0.1712646484375}, {"start": 909.26, "end": 909.38, "word": " So", "probability": 0.87255859375}, {"start": 909.38, "end": 909.48, "word": " the", "probability": 0.654296875}, {"start": 909.48, "end": 909.78, "word": " command", "probability": 0.87548828125}, {"start": 909.78, "end": 910.14, "word": " pattern", "probability": 0.9169921875}, {"start": 910.14, "end": 911.78, "word": " will", "probability": 0.67138671875}, {"start": 911.78, "end": 911.86, "word": " also", "probability": 0.62451171875}, {"start": 911.86, "end": 912.06, "word": " help", "probability": 0.80712890625}, {"start": 912.06, "end": 912.26, "word": " me", "probability": 0.8056640625}, {"start": 912.26, "end": 912.26, "word": " in", "probability": 0.262451171875}, {"start": 912.26, "end": 913.14, "word": " memorizing", "probability": 0.69921875}, {"start": 913.14, "end": 913.28, "word": " the", "probability": 0.87890625}, {"start": 913.28, "end": 913.66, "word": " commands", "probability": 0.70703125}, {"start": 913.66, "end": 914.32, "word": " that", "probability": 0.8017578125}, {"start": 914.32, "end": 914.54, "word": " were", "probability": 0.398681640625}, {"start": 914.54, "end": 914.96, "word": " executed", "probability": 0.884765625}, {"start": 914.96, "end": 915.26, "word": " in", "probability": 0.466064453125}, {"start": 915.26, "end": 915.26, "word": " order", "probability": 0.89794921875}, {"start": 915.26, "end": 915.82, "word": " to", "probability": 0.88916015625}, {"start": 915.82, "end": 916.08, "word": " repeat", "probability": 0.29833984375}, {"start": 916.08, "end": 916.5, "word": " them", "probability": 0.3623046875}, {"start": 916.5, "end": 916.7, "word": " or", "probability": 0.6845703125}, {"start": 916.7, "end": 917.02, "word": " cancel", "probability": 0.6875}, {"start": 917.02, "end": 917.84, "word": " them.", "probability": 0.7216796875}], "temperature": 1.0}, {"id": 45, "seek": 94479, "start": 919.07, "end": 944.79, "text": " Let's read this slide and then see a practical example of using the command pattern It says that the command design pattern encapsulates commands, method calls in objects The idea is that when I execute a command, the command is of course a method that executes these commands But I turn these method calls into Java objects", "tokens": [961, 311, 1401, 341, 4137, 293, 550, 536, 257, 8496, 1365, 295, 1228, 264, 5622, 5102, 467, 1619, 300, 264, 5622, 1715, 5102, 38745, 26192, 16901, 11, 3170, 5498, 294, 6565, 440, 1558, 307, 300, 562, 286, 14483, 257, 5622, 11, 264, 5622, 307, 295, 1164, 257, 3170, 300, 4454, 1819, 613, 16901, 583, 286, 1261, 613, 3170, 5498, 666, 10745, 6565], "avg_logprob": -0.48115080405795385, "compression_ratio": 1.8156424581005586, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 919.07, "end": 919.75, "word": " Let's", "probability": 0.551513671875}, {"start": 919.75, "end": 919.95, "word": " read", "probability": 0.89013671875}, {"start": 919.95, "end": 920.11, "word": " this", "probability": 0.79052734375}, {"start": 920.11, "end": 920.37, "word": " slide", "probability": 0.95068359375}, {"start": 920.37, "end": 920.65, "word": " and", "probability": 0.4072265625}, {"start": 920.65, "end": 920.81, "word": " then", "probability": 0.53271484375}, {"start": 920.81, "end": 921.07, "word": " see", "probability": 0.328369140625}, {"start": 921.07, "end": 921.55, "word": " a", "probability": 0.368896484375}, {"start": 921.55, "end": 921.77, "word": " practical", "probability": 0.90380859375}, {"start": 921.77, "end": 921.77, "word": " example", "probability": 0.94921875}, {"start": 921.77, "end": 922.11, "word": " of", "probability": 0.487548828125}, {"start": 922.11, "end": 922.55, "word": " using", "probability": 0.447265625}, {"start": 922.55, "end": 922.77, "word": " the", "probability": 0.423583984375}, {"start": 922.77, "end": 922.99, "word": " command", "probability": 0.84326171875}, {"start": 922.99, "end": 923.39, "word": " pattern", "probability": 0.77099609375}, {"start": 923.39, "end": 924.09, "word": " It", "probability": 0.355224609375}, {"start": 924.09, "end": 924.23, "word": " says", "probability": 0.59814453125}, {"start": 924.23, "end": 924.51, "word": " that", "probability": 0.287109375}, {"start": 924.51, "end": 924.57, "word": " the", "probability": 0.60546875}, {"start": 924.57, "end": 924.97, "word": " command", "probability": 0.90234375}, {"start": 924.97, "end": 925.39, "word": " design", "probability": 0.90625}, {"start": 925.39, "end": 925.97, "word": " pattern", "probability": 0.880859375}, {"start": 925.97, "end": 928.75, "word": " encapsulates", "probability": 0.863525390625}, {"start": 928.75, "end": 929.41, "word": " commands,", "probability": 0.72021484375}, {"start": 929.53, "end": 929.77, "word": " method", "probability": 0.8916015625}, {"start": 929.77, "end": 930.15, "word": " calls", "probability": 0.87255859375}, {"start": 930.15, "end": 930.49, "word": " in", "probability": 0.65966796875}, {"start": 930.49, "end": 930.99, "word": " objects", "probability": 0.94482421875}, {"start": 930.99, "end": 933.19, "word": " The", "probability": 0.1285400390625}, {"start": 933.19, "end": 933.49, "word": " idea", "probability": 0.74951171875}, {"start": 933.49, "end": 933.83, "word": " is", "probability": 0.55859375}, {"start": 933.83, "end": 935.43, "word": " that", "probability": 0.71044921875}, {"start": 935.43, "end": 935.87, "word": " when", "probability": 0.71484375}, {"start": 935.87, "end": 936.41, "word": " I", "probability": 0.904296875}, {"start": 936.41, "end": 936.71, "word": " execute", "probability": 0.77685546875}, {"start": 936.71, "end": 936.85, "word": " a", "probability": 0.416259765625}, {"start": 936.85, "end": 937.05, "word": " command,", "probability": 0.69775390625}, {"start": 937.31, "end": 937.87, "word": " the", "probability": 0.2744140625}, {"start": 937.87, "end": 938.07, "word": " command", "probability": 0.861328125}, {"start": 938.07, "end": 938.63, "word": " is", "probability": 0.666015625}, {"start": 938.63, "end": 938.63, "word": " of", "probability": 0.3447265625}, {"start": 938.63, "end": 938.63, "word": " course", "probability": 0.9599609375}, {"start": 938.63, "end": 939.17, "word": " a", "probability": 0.515625}, {"start": 939.17, "end": 939.51, "word": " method", "probability": 0.888671875}, {"start": 939.51, "end": 940.41, "word": " that", "probability": 0.347900390625}, {"start": 940.41, "end": 940.91, "word": " executes", "probability": 0.957275390625}, {"start": 940.91, "end": 941.03, "word": " these", "probability": 0.451904296875}, {"start": 941.03, "end": 941.31, "word": " commands", "probability": 0.80859375}, {"start": 941.31, "end": 942.29, "word": " But", "probability": 0.32470703125}, {"start": 942.29, "end": 942.55, "word": " I", "probability": 0.7705078125}, {"start": 942.55, "end": 942.55, "word": " turn", "probability": 0.427734375}, {"start": 942.55, "end": 942.61, "word": " these", "probability": 0.74365234375}, {"start": 942.61, "end": 942.89, "word": " method", "probability": 0.93310546875}, {"start": 942.89, "end": 943.29, "word": " calls", "probability": 0.88671875}, {"start": 943.29, "end": 943.99, "word": " into", "probability": 0.77392578125}, {"start": 943.99, "end": 944.27, "word": " Java", "probability": 0.55712890625}, {"start": 944.27, "end": 944.79, "word": " objects", "probability": 0.919921875}], "temperature": 1.0}, {"id": 46, "seek": 97341, "start": 946.75, "end": 973.41, "text": "What is the benefit of changing the method calls to java objects? Or how does this work? We will see it through this practical example. This is allowing us, when I change the method to java objects and store it, this enables us to issue a request to issue commands again to issue a request to issue commands or to execute or execute these commands without knowing the requested operation or the requesting the requested operation or the requesting object.", "tokens": [3748, 307, 264, 5121, 295, 4473, 264, 3170, 5498, 281, 361, 4061, 6565, 30, 1610, 577, 775, 341, 589, 30, 492, 486, 536, 309, 807, 341, 8496, 1365, 13, 639, 307, 8293, 505, 11, 562, 286, 1319, 264, 3170, 281, 361, 4061, 6565, 293, 3531, 309, 11, 341, 17077, 505, 281, 2734, 257, 5308, 281, 2734, 16901, 797, 281, 2734, 257, 5308, 281, 2734, 16901, 420, 281, 14483, 420, 14483, 613, 16901, 1553, 5276, 264, 16436, 6916, 420, 264, 31937, 264, 16436, 6916, 420, 264, 31937, 2657, 13], "avg_logprob": -0.4483848421761159, "compression_ratio": 2.0403587443946187, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 946.75, "end": 947.05, "word": "What", "probability": 0.259521484375}, {"start": 947.05, "end": 947.09, "word": " is", "probability": 0.654296875}, {"start": 947.09, "end": 947.21, "word": " the", "probability": 0.86083984375}, {"start": 947.21, "end": 947.45, "word": " benefit", "probability": 0.478515625}, {"start": 947.45, "end": 947.59, "word": " of", "probability": 0.8427734375}, {"start": 947.59, "end": 947.91, "word": " changing", "probability": 0.1048583984375}, {"start": 947.91, "end": 948.03, "word": " the", "probability": 0.423095703125}, {"start": 948.03, "end": 948.27, "word": " method", "probability": 0.7763671875}, {"start": 948.27, "end": 948.51, "word": " calls", "probability": 0.5830078125}, {"start": 948.51, "end": 948.69, "word": " to", "probability": 0.85693359375}, {"start": 948.69, "end": 948.89, "word": " java", "probability": 0.782470703125}, {"start": 948.89, "end": 949.15, "word": " objects?", "probability": 0.93701171875}, {"start": 949.29, "end": 949.35, "word": " Or", "probability": 0.32568359375}, {"start": 949.35, "end": 949.59, "word": " how", "probability": 0.8291015625}, {"start": 949.59, "end": 949.71, "word": " does", "probability": 0.6767578125}, {"start": 949.71, "end": 949.81, "word": " this", "probability": 0.501953125}, {"start": 949.81, "end": 950.07, "word": " work?", "probability": 0.60498046875}, {"start": 950.17, "end": 950.27, "word": " We", "probability": 0.49755859375}, {"start": 950.27, "end": 950.33, "word": " will", "probability": 0.67529296875}, {"start": 950.33, "end": 950.53, "word": " see", "probability": 0.78466796875}, {"start": 950.53, "end": 950.65, "word": " it", "probability": 0.1910400390625}, {"start": 950.65, "end": 950.81, "word": " through", "probability": 0.2919921875}, {"start": 950.81, "end": 950.97, "word": " this", "probability": 0.4404296875}, {"start": 950.97, "end": 951.47, "word": " practical", "probability": 0.60400390625}, {"start": 951.47, "end": 951.47, "word": " example.", "probability": 0.97119140625}, {"start": 952.43, "end": 952.65, "word": " This", "probability": 0.436279296875}, {"start": 952.65, "end": 952.75, "word": " is", "probability": 0.31591796875}, {"start": 952.75, "end": 953.19, "word": " allowing", "probability": 0.65283203125}, {"start": 953.19, "end": 953.59, "word": " us,", "probability": 0.9375}, {"start": 954.03, "end": 954.13, "word": " when", "probability": 0.82958984375}, {"start": 954.13, "end": 954.25, "word": " I", "probability": 0.6181640625}, {"start": 954.25, "end": 954.49, "word": " change", "probability": 0.71923828125}, {"start": 954.49, "end": 954.65, "word": " the", "probability": 0.85107421875}, {"start": 954.65, "end": 954.85, "word": " method", "probability": 0.5771484375}, {"start": 954.85, "end": 955.07, "word": " to", "probability": 0.8779296875}, {"start": 955.07, "end": 955.39, "word": " java", "probability": 0.889404296875}, {"start": 955.39, "end": 955.81, "word": " objects", "probability": 0.9365234375}, {"start": 955.81, "end": 955.95, "word": " and", "probability": 0.8330078125}, {"start": 955.95, "end": 956.21, "word": " store", "probability": 0.658203125}, {"start": 956.21, "end": 956.55, "word": " it,", "probability": 0.7607421875}, {"start": 957.13, "end": 957.35, "word": " this", "probability": 0.6669921875}, {"start": 957.35, "end": 957.75, "word": " enables", "probability": 0.43212890625}, {"start": 957.75, "end": 958.69, "word": " us", "probability": 0.8681640625}, {"start": 958.69, "end": 958.85, "word": " to", "probability": 0.70263671875}, {"start": 958.85, "end": 959.15, "word": " issue", "probability": 0.86328125}, {"start": 959.15, "end": 959.35, "word": " a", "probability": 0.407470703125}, {"start": 959.35, "end": 959.77, "word": " request", "probability": 0.91943359375}, {"start": 959.77, "end": 960.43, "word": " to", "probability": 0.6826171875}, {"start": 960.43, "end": 960.73, "word": " issue", "probability": 0.90625}, {"start": 960.73, "end": 961.21, "word": " commands", "probability": 0.3330078125}, {"start": 961.21, "end": 961.55, "word": " again", "probability": 0.9150390625}, {"start": 961.55, "end": 961.73, "word": " to", "probability": 0.4287109375}, {"start": 961.73, "end": 962.07, "word": " issue", "probability": 0.9140625}, {"start": 962.07, "end": 962.29, "word": " a", "probability": 0.7255859375}, {"start": 962.29, "end": 962.63, "word": " request", "probability": 0.8505859375}, {"start": 962.63, "end": 962.89, "word": " to", "probability": 0.79443359375}, {"start": 962.89, "end": 963.19, "word": " issue", "probability": 0.91064453125}, {"start": 963.19, "end": 964.07, "word": " commands", "probability": 0.78662109375}, {"start": 964.07, "end": 964.33, "word": " or", "probability": 0.5634765625}, {"start": 964.33, "end": 964.47, "word": " to", "probability": 0.365478515625}, {"start": 964.47, "end": 964.79, "word": " execute", "probability": 0.368896484375}, {"start": 964.79, "end": 965.31, "word": " or", "probability": 0.390380859375}, {"start": 965.31, "end": 965.79, "word": " execute", "probability": 0.56982421875}, {"start": 965.79, "end": 966.29, "word": " these", "probability": 0.70556640625}, {"start": 966.29, "end": 967.09, "word": " commands", "probability": 0.85205078125}, {"start": 967.09, "end": 968.09, "word": " without", "probability": 0.80419921875}, {"start": 968.09, "end": 968.57, "word": " knowing", "probability": 0.82275390625}, {"start": 968.57, "end": 968.85, "word": " the", "probability": 0.8935546875}, {"start": 968.85, "end": 969.21, "word": " requested", "probability": 0.92529296875}, {"start": 969.21, "end": 969.77, "word": " operation", "probability": 0.95751953125}, {"start": 969.77, "end": 970.11, "word": " or", "probability": 0.9072265625}, {"start": 970.11, "end": 970.23, "word": " the", "probability": 0.84716796875}, {"start": 970.23, "end": 970.65, "word": " requesting", "probability": 0.66162109375}, {"start": 970.65, "end": 971.31, "word": " the", "probability": 0.333740234375}, {"start": 971.31, "end": 971.75, "word": " requested", "probability": 0.9404296875}, {"start": 971.75, "end": 972.29, "word": " operation", "probability": 0.95654296875}, {"start": 972.29, "end": 972.57, "word": " or", "probability": 0.94580078125}, {"start": 972.57, "end": 972.69, "word": " the", "probability": 0.9052734375}, {"start": 972.69, "end": 973.03, "word": " requesting", "probability": 0.8427734375}, {"start": 973.03, "end": 973.41, "word": " object.", "probability": 0.970703125}], "temperature": 1.0}, {"id": 47, "seek": 99906, "start": 973.9, "end": 999.06, "text": " even these commands, we will see how when we wrap them or turn them into java objects and store them we can re-execute them without knowing the details of execution who executes or how execution is done command pattern provides the options to queue commands what is the word queue commands? queue means you store the commands as a queue in order to execute them later", "tokens": [754, 613, 16901, 11, 321, 486, 536, 577, 562, 321, 7019, 552, 420, 1261, 552, 666, 361, 4061, 6565, 293, 3531, 552, 321, 393, 319, 12, 3121, 3045, 1169, 552, 1553, 5276, 264, 4365, 295, 15058, 567, 4454, 1819, 420, 577, 15058, 307, 1096, 5622, 5102, 6417, 264, 3956, 281, 18639, 16901, 437, 307, 264, 1349, 18639, 16901, 30, 18639, 1355, 291, 3531, 264, 16901, 382, 257, 18639, 294, 1668, 281, 14483, 552, 1780], "avg_logprob": -0.44791666984558104, "compression_ratio": 1.868020304568528, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 973.9, "end": 974.34, "word": " even", "probability": 0.1534423828125}, {"start": 974.34, "end": 974.5, "word": " these", "probability": 0.58544921875}, {"start": 974.5, "end": 974.76, "word": " commands,", "probability": 0.66015625}, {"start": 975.24, "end": 975.58, "word": " we", "probability": 0.57861328125}, {"start": 975.58, "end": 975.62, "word": " will", "probability": 0.498046875}, {"start": 975.62, "end": 975.82, "word": " see", "probability": 0.78955078125}, {"start": 975.82, "end": 976.02, "word": " how", "probability": 0.6953125}, {"start": 976.02, "end": 976.14, "word": " when", "probability": 0.377197265625}, {"start": 976.14, "end": 976.3, "word": " we", "probability": 0.8974609375}, {"start": 976.3, "end": 976.56, "word": " wrap", "probability": 0.36328125}, {"start": 976.56, "end": 976.74, "word": " them", "probability": 0.5615234375}, {"start": 976.74, "end": 976.98, "word": " or", "probability": 0.5947265625}, {"start": 976.98, "end": 977.28, "word": " turn", "probability": 0.280029296875}, {"start": 977.28, "end": 977.44, "word": " them", "probability": 0.85986328125}, {"start": 977.44, "end": 977.56, "word": " into", "probability": 0.78759765625}, {"start": 977.56, "end": 978.0, "word": " java", "probability": 0.7119140625}, {"start": 978.0, "end": 978.4, "word": " objects", "probability": 0.9453125}, {"start": 978.4, "end": 978.54, "word": " and", "probability": 0.76171875}, {"start": 978.54, "end": 978.82, "word": " store", "probability": 0.755859375}, {"start": 978.82, "end": 979.16, "word": " them", "probability": 0.88427734375}, {"start": 979.16, "end": 979.68, "word": " we", "probability": 0.55078125}, {"start": 979.68, "end": 980.0, "word": " can", "probability": 0.8388671875}, {"start": 980.0, "end": 980.24, "word": " re", "probability": 0.09228515625}, {"start": 980.24, "end": 980.62, "word": "-execute", "probability": 0.729736328125}, {"start": 980.62, "end": 980.74, "word": " them", "probability": 0.6943359375}, {"start": 980.74, "end": 980.96, "word": " without", "probability": 0.87158203125}, {"start": 980.96, "end": 981.34, "word": " knowing", "probability": 0.779296875}, {"start": 981.34, "end": 981.44, "word": " the", "probability": 0.7578125}, {"start": 981.44, "end": 981.76, "word": " details", "probability": 0.74072265625}, {"start": 981.76, "end": 981.9, "word": " of", "probability": 0.90625}, {"start": 981.9, "end": 982.34, "word": " execution", "probability": 0.54052734375}, {"start": 982.34, "end": 983.06, "word": " who", "probability": 0.52001953125}, {"start": 983.06, "end": 983.54, "word": " executes", "probability": 0.770751953125}, {"start": 983.54, "end": 983.7, "word": " or", "probability": 0.281494140625}, {"start": 983.7, "end": 983.98, "word": " how", "probability": 0.94140625}, {"start": 983.98, "end": 984.86, "word": " execution", "probability": 0.54345703125}, {"start": 984.86, "end": 985.28, "word": " is", "probability": 0.5537109375}, {"start": 985.28, "end": 985.32, "word": " done", "probability": 0.58984375}, {"start": 985.32, "end": 986.06, "word": " command", "probability": 0.64013671875}, {"start": 986.06, "end": 986.76, "word": " pattern", "probability": 0.806640625}, {"start": 986.76, "end": 987.38, "word": " provides", "probability": 0.86279296875}, {"start": 987.38, "end": 987.58, "word": " the", "probability": 0.8056640625}, {"start": 987.58, "end": 987.96, "word": " options", "probability": 0.736328125}, {"start": 987.96, "end": 988.22, "word": " to", "probability": 0.96435546875}, {"start": 988.22, "end": 988.44, "word": " queue", "probability": 0.9677734375}, {"start": 988.44, "end": 989.0, "word": " commands", "probability": 0.908203125}, {"start": 989.0, "end": 989.22, "word": " what", "probability": 0.54736328125}, {"start": 989.22, "end": 989.34, "word": " is", "probability": 0.783203125}, {"start": 989.34, "end": 989.38, "word": " the", "probability": 0.61572265625}, {"start": 989.38, "end": 989.52, "word": " word", "probability": 0.62451171875}, {"start": 989.52, "end": 989.86, "word": " queue", "probability": 0.77587890625}, {"start": 989.86, "end": 990.42, "word": " commands?", "probability": 0.70703125}, {"start": 992.32, "end": 992.88, "word": " queue", "probability": 0.83154296875}, {"start": 992.88, "end": 993.88, "word": " means", "probability": 0.1881103515625}, {"start": 993.88, "end": 994.4, "word": " you", "probability": 0.5927734375}, {"start": 994.4, "end": 995.92, "word": " store", "probability": 0.8203125}, {"start": 995.92, "end": 996.14, "word": " the", "probability": 0.388671875}, {"start": 996.14, "end": 996.58, "word": " commands", "probability": 0.84619140625}, {"start": 996.58, "end": 996.84, "word": " as", "probability": 0.80859375}, {"start": 996.84, "end": 996.92, "word": " a", "probability": 0.9052734375}, {"start": 996.92, "end": 997.14, "word": " queue", "probability": 0.9345703125}, {"start": 997.14, "end": 997.86, "word": " in", "probability": 0.28173828125}, {"start": 997.86, "end": 997.86, "word": " order", "probability": 0.9150390625}, {"start": 997.86, "end": 998.06, "word": " to", "probability": 0.95361328125}, {"start": 998.06, "end": 998.52, "word": " execute", "probability": 0.76513671875}, {"start": 998.52, "end": 998.72, "word": " them", "probability": 0.87744140625}, {"start": 998.72, "end": 999.06, "word": " later", "probability": 0.9052734375}], "temperature": 1.0}, {"id": 48, "seek": 102833, "start": 1000.33, "end": 1028.33, "text": " Or later on, you do undo redo actions and other manipulations Now, these words are not very meaningful, so in order to better understand them, let's take an example, a practical example Now guys, let's assume that you are dealing with the example of the stock market that I told you about, okay? Of course, we want to make a class called Stock Market", "tokens": [1610, 1780, 322, 11, 291, 360, 23779, 29956, 5909, 293, 661, 9258, 4136, 823, 11, 613, 2283, 366, 406, 588, 10995, 11, 370, 294, 1668, 281, 1101, 1223, 552, 11, 718, 311, 747, 364, 1365, 11, 257, 8496, 1365, 823, 1074, 11, 718, 311, 6552, 300, 291, 366, 6260, 365, 264, 1365, 295, 264, 4127, 2142, 300, 286, 1907, 291, 466, 11, 1392, 30, 2720, 1164, 11, 321, 528, 281, 652, 257, 1508, 1219, 17857, 15596], "avg_logprob": -0.5357143011960116, "compression_ratio": 1.5954545454545455, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 1000.33, "end": 1000.55, "word": " Or", "probability": 0.216796875}, {"start": 1000.55, "end": 1001.23, "word": " later", "probability": 0.43017578125}, {"start": 1001.23, "end": 1001.51, "word": " on,", "probability": 0.21728515625}, {"start": 1001.77, "end": 1001.91, "word": " you", "probability": 0.371826171875}, {"start": 1001.91, "end": 1002.09, "word": " do", "probability": 0.53515625}, {"start": 1002.09, "end": 1002.43, "word": " undo", "probability": 0.91064453125}, {"start": 1002.43, "end": 1002.75, "word": " redo", "probability": 0.53857421875}, {"start": 1002.75, "end": 1003.35, "word": " actions", "probability": 0.91015625}, {"start": 1003.35, "end": 1003.63, "word": " and", "probability": 0.8935546875}, {"start": 1003.63, "end": 1003.89, "word": " other", "probability": 0.849609375}, {"start": 1003.89, "end": 1004.57, "word": " manipulations", "probability": 0.906005859375}, {"start": 1004.57, "end": 1006.19, "word": " Now,", "probability": 0.38037109375}, {"start": 1006.29, "end": 1006.55, "word": " these", "probability": 0.22021484375}, {"start": 1006.55, "end": 1006.83, "word": " words", "probability": 0.63818359375}, {"start": 1006.83, "end": 1006.99, "word": " are", "probability": 0.59716796875}, {"start": 1006.99, "end": 1006.99, "word": " not", "probability": 0.818359375}, {"start": 1006.99, "end": 1007.05, "word": " very", "probability": 0.35546875}, {"start": 1007.05, "end": 1007.31, "word": " meaningful,", "probability": 0.10369873046875}, {"start": 1007.95, "end": 1008.03, "word": " so", "probability": 0.72900390625}, {"start": 1008.03, "end": 1008.35, "word": " in", "probability": 0.277587890625}, {"start": 1008.35, "end": 1008.41, "word": " order", "probability": 0.91943359375}, {"start": 1008.41, "end": 1008.55, "word": " to", "probability": 0.79296875}, {"start": 1008.55, "end": 1008.93, "word": " better", "probability": 0.437255859375}, {"start": 1008.93, "end": 1008.99, "word": " understand", "probability": 0.6669921875}, {"start": 1008.99, "end": 1009.87, "word": " them,", "probability": 0.59814453125}, {"start": 1010.19, "end": 1010.55, "word": " let's", "probability": 0.870849609375}, {"start": 1010.55, "end": 1010.83, "word": " take", "probability": 0.7119140625}, {"start": 1010.83, "end": 1011.75, "word": " an", "probability": 0.63134765625}, {"start": 1011.75, "end": 1011.75, "word": " example,", "probability": 0.91064453125}, {"start": 1011.75, "end": 1012.73, "word": " a", "probability": 0.58740234375}, {"start": 1012.73, "end": 1013.29, "word": " practical", "probability": 0.9130859375}, {"start": 1013.29, "end": 1016.17, "word": " example", "probability": 0.966796875}, {"start": 1016.17, "end": 1018.17, "word": " Now", "probability": 0.6845703125}, {"start": 1018.17, "end": 1018.57, "word": " guys,", "probability": 0.4169921875}, {"start": 1018.85, "end": 1018.93, "word": " let's", "probability": 0.788818359375}, {"start": 1018.93, "end": 1019.35, "word": " assume", "probability": 0.474365234375}, {"start": 1019.35, "end": 1020.49, "word": " that", "probability": 0.759765625}, {"start": 1020.49, "end": 1021.47, "word": " you", "probability": 0.92333984375}, {"start": 1021.47, "end": 1021.65, "word": " are", "probability": 0.37109375}, {"start": 1021.65, "end": 1021.93, "word": " dealing", "probability": 0.42822265625}, {"start": 1021.93, "end": 1022.31, "word": " with", "probability": 0.66796875}, {"start": 1022.31, "end": 1022.43, "word": " the", "probability": 0.410400390625}, {"start": 1022.43, "end": 1022.61, "word": " example", "probability": 0.31103515625}, {"start": 1022.61, "end": 1022.77, "word": " of", "probability": 0.85498046875}, {"start": 1022.77, "end": 1022.89, "word": " the", "probability": 0.794921875}, {"start": 1022.89, "end": 1022.89, "word": " stock", "probability": 0.80322265625}, {"start": 1022.89, "end": 1023.27, "word": " market", "probability": 0.806640625}, {"start": 1023.27, "end": 1023.37, "word": " that", "probability": 0.408935546875}, {"start": 1023.37, "end": 1023.43, "word": " I", "probability": 0.94775390625}, {"start": 1023.43, "end": 1023.61, "word": " told", "probability": 0.72216796875}, {"start": 1023.61, "end": 1023.77, "word": " you", "probability": 0.96484375}, {"start": 1023.77, "end": 1023.99, "word": " about,", "probability": 0.7080078125}, {"start": 1024.41, "end": 1024.77, "word": " okay?", "probability": 0.39013671875}, {"start": 1025.61, "end": 1025.89, "word": " Of", "probability": 0.72265625}, {"start": 1025.89, "end": 1025.89, "word": " course,", "probability": 0.9580078125}, {"start": 1026.01, "end": 1026.17, "word": " we", "probability": 0.75341796875}, {"start": 1026.17, "end": 1026.35, "word": " want", "probability": 0.66796875}, {"start": 1026.35, "end": 1026.41, "word": " to", "probability": 0.97216796875}, {"start": 1026.41, "end": 1026.51, "word": " make", "probability": 0.4580078125}, {"start": 1026.51, "end": 1026.65, "word": " a", "probability": 0.95361328125}, {"start": 1026.65, "end": 1026.95, "word": " class", "probability": 0.984375}, {"start": 1026.95, "end": 1027.29, "word": " called", "probability": 0.68408203125}, {"start": 1027.29, "end": 1027.87, "word": " Stock", "probability": 0.368896484375}, {"start": 1027.87, "end": 1028.33, "word": " Market", "probability": 0.7548828125}], "temperature": 1.0}, {"id": 49, "seek": 105767, "start": 1029.07, "end": 1057.67, "text": "What does this represent? The stock market. Now, in the stock market, there are many commands that we use, for example, buy stocks or sell stocks or start a company. Now, what do we want to do? Each of these commands will have a method in this class. That's how we do it. We don't say that any behavior of the class is represented by a method. Okay? So, we say we make a method, for example, public void.", "tokens": [3748, 775, 341, 2906, 30, 440, 4127, 2142, 13, 823, 11, 294, 264, 4127, 2142, 11, 456, 366, 867, 16901, 300, 321, 764, 11, 337, 1365, 11, 2256, 12966, 420, 3607, 12966, 420, 722, 257, 2237, 13, 823, 11, 437, 360, 321, 528, 281, 360, 30, 6947, 295, 613, 16901, 486, 362, 257, 3170, 294, 341, 1508, 13, 663, 311, 577, 321, 360, 309, 13, 492, 500, 380, 584, 300, 604, 5223, 295, 264, 1508, 307, 10379, 538, 257, 3170, 13, 1033, 30, 407, 11, 321, 584, 321, 652, 257, 3170, 11, 337, 1365, 11, 1908, 22009, 13], "avg_logprob": -0.43876263830396867, "compression_ratio": 1.7565217391304349, "no_speech_prob": 4.172325134277344e-06, "words": [{"start": 1029.07, "end": 1029.41, "word": "What", "probability": 0.1214599609375}, {"start": 1029.41, "end": 1029.89, "word": " does", "probability": 0.57666015625}, {"start": 1029.89, "end": 1030.19, "word": " this", "probability": 0.5078125}, {"start": 1030.19, "end": 1030.19, "word": " represent?", "probability": 0.441162109375}, {"start": 1031.31, "end": 1031.45, "word": " The", "probability": 0.424560546875}, {"start": 1031.45, "end": 1031.85, "word": " stock", "probability": 0.662109375}, {"start": 1031.85, "end": 1031.95, "word": " market.", "probability": 0.76513671875}, {"start": 1032.07, "end": 1032.29, "word": " Now,", "probability": 0.37744140625}, {"start": 1032.37, "end": 1032.41, "word": " in", "probability": 0.385986328125}, {"start": 1032.41, "end": 1032.71, "word": " the", "probability": 0.892578125}, {"start": 1032.71, "end": 1032.93, "word": " stock", "probability": 0.87158203125}, {"start": 1032.93, "end": 1033.09, "word": " market,", "probability": 0.85791015625}, {"start": 1033.33, "end": 1033.87, "word": " there", "probability": 0.81005859375}, {"start": 1033.87, "end": 1033.91, "word": " are", "probability": 0.89306640625}, {"start": 1033.91, "end": 1034.49, "word": " many", "probability": 0.5595703125}, {"start": 1034.49, "end": 1034.49, "word": " commands", "probability": 0.3798828125}, {"start": 1034.49, "end": 1034.65, "word": " that", "probability": 0.5986328125}, {"start": 1034.65, "end": 1034.79, "word": " we", "probability": 0.79833984375}, {"start": 1034.79, "end": 1035.13, "word": " use,", "probability": 0.4765625}, {"start": 1035.41, "end": 1035.59, "word": " for", "probability": 0.364501953125}, {"start": 1035.59, "end": 1035.99, "word": " example,", "probability": 0.90625}, {"start": 1036.17, "end": 1036.51, "word": " buy", "probability": 0.51318359375}, {"start": 1036.51, "end": 1036.87, "word": " stocks", "probability": 0.1845703125}, {"start": 1036.87, "end": 1037.79, "word": " or", "probability": 0.54541015625}, {"start": 1037.79, "end": 1038.03, "word": " sell", "probability": 0.8720703125}, {"start": 1038.03, "end": 1038.43, "word": " stocks", "probability": 0.857421875}, {"start": 1038.43, "end": 1038.67, "word": " or", "probability": 0.82568359375}, {"start": 1038.67, "end": 1038.93, "word": " start", "probability": 0.4560546875}, {"start": 1038.93, "end": 1039.05, "word": " a", "probability": 0.96044921875}, {"start": 1039.05, "end": 1039.35, "word": " company.", "probability": 0.85888671875}, {"start": 1040.41, "end": 1040.57, "word": " Now,", "probability": 0.65966796875}, {"start": 1040.67, "end": 1040.93, "word": " what", "probability": 0.46630859375}, {"start": 1040.93, "end": 1040.95, "word": " do", "probability": 0.59521484375}, {"start": 1040.95, "end": 1041.09, "word": " we", "probability": 0.892578125}, {"start": 1041.09, "end": 1041.09, "word": " want", "probability": 0.64697265625}, {"start": 1041.09, "end": 1041.99, "word": " to", "probability": 0.9619140625}, {"start": 1041.99, "end": 1042.15, "word": " do?", "probability": 0.95849609375}, {"start": 1042.21, "end": 1042.41, "word": " Each", "probability": 0.62158203125}, {"start": 1042.41, "end": 1042.63, "word": " of", "probability": 0.3349609375}, {"start": 1042.63, "end": 1042.83, "word": " these", "probability": 0.8232421875}, {"start": 1042.83, "end": 1043.15, "word": " commands", "probability": 0.71875}, {"start": 1043.15, "end": 1043.63, "word": " will", "probability": 0.3251953125}, {"start": 1043.63, "end": 1043.93, "word": " have", "probability": 0.92333984375}, {"start": 1043.93, "end": 1044.05, "word": " a", "probability": 0.93798828125}, {"start": 1044.05, "end": 1044.37, "word": " method", "probability": 0.9443359375}, {"start": 1044.37, "end": 1044.99, "word": " in", "probability": 0.81396484375}, {"start": 1044.99, "end": 1045.11, "word": " this", "probability": 0.81591796875}, {"start": 1045.11, "end": 1045.41, "word": " class.", "probability": 0.9453125}, {"start": 1046.15, "end": 1046.37, "word": " That's", "probability": 0.6036376953125}, {"start": 1046.37, "end": 1046.41, "word": " how", "probability": 0.71044921875}, {"start": 1046.41, "end": 1046.65, "word": " we", "probability": 0.95458984375}, {"start": 1046.65, "end": 1047.05, "word": " do", "probability": 0.3271484375}, {"start": 1047.05, "end": 1047.13, "word": " it.", "probability": 0.85791015625}, {"start": 1047.27, "end": 1047.67, "word": " We", "probability": 0.83056640625}, {"start": 1047.67, "end": 1048.03, "word": " don't", "probability": 0.889892578125}, {"start": 1048.03, "end": 1048.21, "word": " say", "probability": 0.65673828125}, {"start": 1048.21, "end": 1049.27, "word": " that", "probability": 0.80712890625}, {"start": 1049.27, "end": 1049.81, "word": " any", "probability": 0.888671875}, {"start": 1049.81, "end": 1050.59, "word": " behavior", "probability": 0.6123046875}, {"start": 1050.59, "end": 1051.01, "word": " of", "probability": 0.689453125}, {"start": 1051.01, "end": 1051.95, "word": " the", "probability": 0.73779296875}, {"start": 1051.95, "end": 1052.57, "word": " class", "probability": 0.9677734375}, {"start": 1052.57, "end": 1052.91, "word": " is", "probability": 0.371337890625}, {"start": 1052.91, "end": 1053.27, "word": " represented", "probability": 0.7783203125}, {"start": 1053.27, "end": 1053.37, "word": " by", "probability": 0.81591796875}, {"start": 1053.37, "end": 1053.67, "word": " a", "probability": 0.81201171875}, {"start": 1053.67, "end": 1054.03, "word": " method.", "probability": 0.943359375}, {"start": 1054.49, "end": 1054.71, "word": " Okay?", "probability": 0.318359375}, {"start": 1055.25, "end": 1055.45, "word": " So,", "probability": 0.865234375}, {"start": 1055.57, "end": 1055.69, "word": " we", "probability": 0.87841796875}, {"start": 1055.69, "end": 1055.83, "word": " say", "probability": 0.806640625}, {"start": 1055.83, "end": 1055.97, "word": " we", "probability": 0.375244140625}, {"start": 1055.97, "end": 1056.13, "word": " make", "probability": 0.423583984375}, {"start": 1056.13, "end": 1056.25, "word": " a", "probability": 0.78955078125}, {"start": 1056.25, "end": 1056.51, "word": " method,", "probability": 0.9619140625}, {"start": 1056.59, "end": 1056.67, "word": " for", "probability": 0.8603515625}, {"start": 1056.67, "end": 1056.83, "word": " example,", "probability": 0.9619140625}, {"start": 1056.95, "end": 1057.25, "word": " public", "probability": 0.87353515625}, {"start": 1057.25, "end": 1057.67, "word": " void.", "probability": 0.857421875}], "temperature": 1.0}, {"id": 50, "seek": 108507, "start": 1058.57, "end": 1085.07, "text": " مثلا buy shares اش يعني buy shares اشتري أسهم تمام ال method هذي عشان يقدر ينفذ عملية الشراء بدها معلومات اش هي مثلا string مثلا buyer ID اش يعني buyer ID مين اللي بده يشتري string seller ID int number of shares", "tokens": [50113, 15040, 2256, 12182, 1975, 8592, 37495, 22653, 2256, 12182, 1975, 8592, 2655, 16572, 5551, 3794, 16095, 46811, 10943, 2423, 3170, 8032, 8848, 1829, 6225, 8592, 7649, 7251, 28543, 2288, 7251, 1863, 5172, 8848, 6225, 42213, 10632, 25124, 2288, 16606, 47525, 11296, 20449, 1211, 20498, 9307, 1975, 8592, 39896, 50113, 15040, 6798, 50113, 15040, 24645, 7348, 1975, 8592, 37495, 22653, 24645, 7348, 3714, 9957, 13672, 1829, 47525, 3224, 7251, 8592, 2655, 16572, 6798, 23600, 7348, 560, 1230, 295, 12182], "avg_logprob": -0.1962890552356839, "compression_ratio": 1.6073298429319371, "no_speech_prob": 3.7550926208496094e-06, "words": [{"start": 1058.57, "end": 1059.03, "word": " مثلا", "probability": 0.51385498046875}, {"start": 1059.03, "end": 1059.37, "word": " buy", "probability": 0.66015625}, {"start": 1059.37, "end": 1059.83, "word": " shares", "probability": 0.86962890625}, {"start": 1059.83, "end": 1062.47, "word": " اش", "probability": 0.63330078125}, {"start": 1062.47, "end": 1062.59, "word": " يعني", "probability": 0.64208984375}, {"start": 1062.59, "end": 1062.77, "word": " buy", "probability": 0.9501953125}, {"start": 1062.77, "end": 1063.21, "word": " shares", "probability": 0.88671875}, {"start": 1063.21, "end": 1064.23, "word": " اشتري", "probability": 0.85693359375}, {"start": 1064.23, "end": 1065.41, "word": " أسهم", "probability": 0.81201171875}, {"start": 1065.41, "end": 1065.95, "word": " تمام", "probability": 0.918701171875}, {"start": 1065.95, "end": 1066.75, "word": " ال", "probability": 0.68701171875}, {"start": 1066.75, "end": 1066.97, "word": " method", "probability": 0.9658203125}, {"start": 1066.97, "end": 1067.27, "word": " هذي", "probability": 0.58837890625}, {"start": 1067.27, "end": 1067.57, "word": " عشان", "probability": 0.9894205729166666}, {"start": 1067.57, "end": 1068.11, "word": " يقدر", "probability": 0.89404296875}, {"start": 1068.11, "end": 1068.63, "word": " ينفذ", "probability": 0.9498291015625}, {"start": 1068.63, "end": 1068.93, "word": " عملية", "probability": 0.9915364583333334}, {"start": 1068.93, "end": 1069.33, "word": " الشراء", "probability": 0.8115234375}, {"start": 1069.33, "end": 1069.55, "word": " بدها", "probability": 0.78125}, {"start": 1069.55, "end": 1070.11, "word": " معلومات", "probability": 0.9862060546875}, {"start": 1070.11, "end": 1070.67, "word": " اش", "probability": 0.856689453125}, {"start": 1070.67, "end": 1070.81, "word": " هي", "probability": 0.5986328125}, {"start": 1070.81, "end": 1071.17, "word": " مثلا", "probability": 0.99462890625}, {"start": 1071.17, "end": 1071.77, "word": " string", "probability": 0.7666015625}, {"start": 1071.77, "end": 1073.01, "word": " مثلا", "probability": 0.89794921875}, {"start": 1073.01, "end": 1074.11, "word": " buyer", "probability": 0.912109375}, {"start": 1074.11, "end": 1074.53, "word": " ID", "probability": 0.62353515625}, {"start": 1074.53, "end": 1075.81, "word": " اش", "probability": 0.88671875}, {"start": 1075.81, "end": 1075.93, "word": " يعني", "probability": 0.916259765625}, {"start": 1075.93, "end": 1076.19, "word": " buyer", "probability": 0.95703125}, {"start": 1076.19, "end": 1076.53, "word": " ID", "probability": 0.9638671875}, {"start": 1076.53, "end": 1077.29, "word": " مين", "probability": 0.85498046875}, {"start": 1077.29, "end": 1077.43, "word": " اللي", "probability": 0.97802734375}, {"start": 1077.43, "end": 1077.59, "word": " بده", "probability": 0.75634765625}, {"start": 1077.59, "end": 1077.93, "word": " يشتري", "probability": 0.9326171875}, {"start": 1077.93, "end": 1079.13, "word": " string", "probability": 0.66796875}, {"start": 1079.13, "end": 1079.85, "word": " seller", "probability": 0.85595703125}, {"start": 1079.85, "end": 1081.25, "word": " ID", "probability": 0.8251953125}, {"start": 1081.25, "end": 1082.79, "word": " int", "probability": 0.52685546875}, {"start": 1082.79, "end": 1083.49, "word": " number", "probability": 0.9599609375}, {"start": 1083.49, "end": 1084.67, "word": " of", "probability": 0.97998046875}, {"start": 1084.67, "end": 1085.07, "word": " shares", "probability": 0.86328125}], "temperature": 1.0}, {"id": 51, "seek": 110746, "start": 1085.8, "end": 1107.46, "text": " the number of shares he wants to buy, double tax ratio or tax rate, and double share price. Because this method is what executes the process of", "tokens": [264, 1230, 295, 12182, 415, 2738, 281, 2256, 11, 3834, 3366, 8509, 420, 3366, 3314, 11, 293, 3834, 2073, 3218, 13, 1436, 341, 3170, 307, 437, 4454, 1819, 264, 1399, 295], "avg_logprob": -0.6249999813735485, "compression_ratio": 1.3457943925233644, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 1085.8, "end": 1086.02, "word": " the", "probability": 0.262939453125}, {"start": 1086.02, "end": 1086.16, "word": " number", "probability": 0.37353515625}, {"start": 1086.16, "end": 1086.32, "word": " of", "probability": 0.97119140625}, {"start": 1086.32, "end": 1086.58, "word": " shares", "probability": 0.42822265625}, {"start": 1086.58, "end": 1087.88, "word": " he", "probability": 0.1932373046875}, {"start": 1087.88, "end": 1088.04, "word": " wants", "probability": 0.5966796875}, {"start": 1088.04, "end": 1088.08, "word": " to", "probability": 0.958984375}, {"start": 1088.08, "end": 1088.32, "word": " buy,", "probability": 0.92724609375}, {"start": 1088.92, "end": 1090.0, "word": " double", "probability": 0.3994140625}, {"start": 1090.0, "end": 1091.32, "word": " tax", "probability": 0.53466796875}, {"start": 1091.32, "end": 1092.64, "word": " ratio", "probability": 0.81005859375}, {"start": 1092.64, "end": 1093.06, "word": " or", "probability": 0.39013671875}, {"start": 1093.06, "end": 1093.4, "word": " tax", "probability": 0.91650390625}, {"start": 1093.4, "end": 1095.06, "word": " rate,", "probability": 0.96630859375}, {"start": 1095.06, "end": 1096.0, "word": " and", "probability": 0.49365234375}, {"start": 1096.0, "end": 1097.16, "word": " double", "probability": 0.85302734375}, {"start": 1097.16, "end": 1099.78, "word": " share", "probability": 0.9140625}, {"start": 1099.78, "end": 1100.36, "word": " price.", "probability": 0.92236328125}, {"start": 1103.98, "end": 1104.94, "word": " Because", "probability": 0.2255859375}, {"start": 1104.94, "end": 1105.22, "word": " this", "probability": 0.90283203125}, {"start": 1105.22, "end": 1105.7, "word": " method", "probability": 0.91796875}, {"start": 1105.7, "end": 1105.88, "word": " is", "probability": 0.3564453125}, {"start": 1105.88, "end": 1106.04, "word": " what", "probability": 0.285888671875}, {"start": 1106.04, "end": 1106.54, "word": " executes", "probability": 0.6126708984375}, {"start": 1106.54, "end": 1106.62, "word": " the", "probability": 0.77734375}, {"start": 1106.62, "end": 1106.9, "word": " process", "probability": 0.751953125}, {"start": 1106.9, "end": 1107.46, "word": " of", "probability": 0.8583984375}], "temperature": 1.0}, {"id": 52, "seek": 113758, "start": 1108.45, "end": 1137.59, "text": " the purchase based on the information that came here of course we are not going to implement this gate but we are going to look at what to do we print a message that if this method is implemented what will happen buying a certain number for example which is number of shares from who do we want to buy from seller ID", "tokens": [264, 8110, 2361, 322, 264, 1589, 300, 1361, 510, 295, 1164, 321, 366, 406, 516, 281, 4445, 341, 8539, 457, 321, 366, 516, 281, 574, 412, 437, 281, 360, 321, 4482, 257, 3636, 300, 498, 341, 3170, 307, 12270, 437, 486, 1051, 6382, 257, 1629, 1230, 337, 1365, 597, 307, 1230, 295, 12182, 490, 567, 360, 321, 528, 281, 2256, 490, 23600, 7348], "avg_logprob": -0.5170898661017418, "compression_ratio": 1.695187165775401, "no_speech_prob": 2.8371810913085938e-05, "words": [{"start": 1108.45, "end": 1108.69, "word": " the", "probability": 0.1143798828125}, {"start": 1108.69, "end": 1108.91, "word": " purchase", "probability": 0.64501953125}, {"start": 1108.91, "end": 1109.27, "word": " based", "probability": 0.513671875}, {"start": 1109.27, "end": 1109.55, "word": " on", "probability": 0.951171875}, {"start": 1109.55, "end": 1109.69, "word": " the", "probability": 0.78369140625}, {"start": 1109.69, "end": 1109.93, "word": " information", "probability": 0.64599609375}, {"start": 1109.93, "end": 1110.77, "word": " that", "probability": 0.447021484375}, {"start": 1110.77, "end": 1110.93, "word": " came", "probability": 0.1627197265625}, {"start": 1110.93, "end": 1111.23, "word": " here", "probability": 0.67236328125}, {"start": 1111.23, "end": 1112.13, "word": " of", "probability": 0.2958984375}, {"start": 1112.13, "end": 1112.17, "word": " course", "probability": 0.9423828125}, {"start": 1112.17, "end": 1112.49, "word": " we", "probability": 0.662109375}, {"start": 1112.49, "end": 1112.59, "word": " are", "probability": 0.19384765625}, {"start": 1112.59, "end": 1113.09, "word": " not", "probability": 0.90625}, {"start": 1113.09, "end": 1113.25, "word": " going", "probability": 0.84912109375}, {"start": 1113.25, "end": 1113.25, "word": " to", "probability": 0.962890625}, {"start": 1113.25, "end": 1113.45, "word": " implement", "probability": 0.490234375}, {"start": 1113.45, "end": 1113.61, "word": " this", "probability": 0.8671875}, {"start": 1113.61, "end": 1113.81, "word": " gate", "probability": 0.6240234375}, {"start": 1113.81, "end": 1114.03, "word": " but", "probability": 0.6650390625}, {"start": 1114.03, "end": 1114.21, "word": " we", "probability": 0.64794921875}, {"start": 1114.21, "end": 1114.25, "word": " are", "probability": 0.382568359375}, {"start": 1114.25, "end": 1114.41, "word": " going", "probability": 0.92626953125}, {"start": 1114.41, "end": 1114.53, "word": " to", "probability": 0.9501953125}, {"start": 1114.53, "end": 1114.65, "word": " look", "probability": 0.31396484375}, {"start": 1114.65, "end": 1114.65, "word": " at", "probability": 0.28271484375}, {"start": 1114.65, "end": 1114.77, "word": " what", "probability": 0.8115234375}, {"start": 1114.77, "end": 1114.87, "word": " to", "probability": 0.59423828125}, {"start": 1114.87, "end": 1115.15, "word": " do", "probability": 0.96435546875}, {"start": 1115.15, "end": 1115.89, "word": " we", "probability": 0.28271484375}, {"start": 1115.89, "end": 1116.13, "word": " print", "probability": 0.59228515625}, {"start": 1116.13, "end": 1116.65, "word": " a", "probability": 0.8837890625}, {"start": 1116.65, "end": 1116.65, "word": " message", "probability": 0.8642578125}, {"start": 1116.65, "end": 1117.57, "word": " that", "probability": 0.73583984375}, {"start": 1117.57, "end": 1118.17, "word": " if", "probability": 0.888671875}, {"start": 1118.17, "end": 1118.87, "word": " this", "probability": 0.8125}, {"start": 1118.87, "end": 1119.17, "word": " method", "probability": 0.96142578125}, {"start": 1119.17, "end": 1119.33, "word": " is", "probability": 0.6552734375}, {"start": 1119.33, "end": 1119.33, "word": " implemented", "probability": 0.54736328125}, {"start": 1119.33, "end": 1119.93, "word": " what", "probability": 0.42333984375}, {"start": 1119.93, "end": 1119.93, "word": " will", "probability": 0.51806640625}, {"start": 1119.93, "end": 1120.67, "word": " happen", "probability": 0.599609375}, {"start": 1120.67, "end": 1121.97, "word": " buying", "probability": 0.4765625}, {"start": 1121.97, "end": 1123.63, "word": " a", "probability": 0.281005859375}, {"start": 1123.63, "end": 1123.63, "word": " certain", "probability": 0.45654296875}, {"start": 1123.63, "end": 1124.31, "word": " number", "probability": 0.80419921875}, {"start": 1124.31, "end": 1124.55, "word": " for", "probability": 0.429443359375}, {"start": 1124.55, "end": 1124.73, "word": " example", "probability": 0.95263671875}, {"start": 1124.73, "end": 1124.89, "word": " which", "probability": 0.48388671875}, {"start": 1124.89, "end": 1125.07, "word": " is", "probability": 0.9375}, {"start": 1125.07, "end": 1125.33, "word": " number", "probability": 0.61474609375}, {"start": 1125.33, "end": 1127.11, "word": " of", "probability": 0.9638671875}, {"start": 1127.11, "end": 1127.63, "word": " shares", "probability": 0.86669921875}, {"start": 1127.63, "end": 1133.57, "word": " from", "probability": 0.7060546875}, {"start": 1133.57, "end": 1135.57, "word": " who", "probability": 0.28271484375}, {"start": 1135.57, "end": 1135.77, "word": " do", "probability": 0.482421875}, {"start": 1135.77, "end": 1135.89, "word": " we", "probability": 0.92138671875}, {"start": 1135.89, "end": 1135.89, "word": " want", "probability": 0.7841796875}, {"start": 1135.89, "end": 1135.97, "word": " to", "probability": 0.96484375}, {"start": 1135.97, "end": 1136.17, "word": " buy", "probability": 0.91943359375}, {"start": 1136.17, "end": 1136.65, "word": " from", "probability": 0.6357421875}, {"start": 1136.65, "end": 1137.19, "word": " seller", "probability": 0.349609375}, {"start": 1137.19, "end": 1137.59, "word": " ID", "probability": 0.5126953125}], "temperature": 1.0}, {"id": 53, "seek": 116071, "start": 1138.47, "end": 1160.71, "text": "two or four to buyer ID and then we say total price which is number of shares multiplied by share price", "tokens": [20534, 420, 1451, 281, 24645, 7348, 293, 550, 321, 584, 3217, 3218, 597, 307, 1230, 295, 12182, 17207, 538, 2073, 3218], "avg_logprob": -0.4300426231189208, "compression_ratio": 1.2117647058823529, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1138.47, "end": 1139.87, "word": "two", "probability": 0.249755859375}, {"start": 1139.87, "end": 1140.69, "word": " or", "probability": 0.94287109375}, {"start": 1140.69, "end": 1141.19, "word": " four", "probability": 0.94482421875}, {"start": 1141.19, "end": 1142.53, "word": " to", "probability": 0.26708984375}, {"start": 1142.53, "end": 1143.15, "word": " buyer", "probability": 0.91943359375}, {"start": 1143.15, "end": 1145.57, "word": " ID", "probability": 0.422607421875}, {"start": 1145.57, "end": 1147.83, "word": " and", "probability": 0.41943359375}, {"start": 1147.83, "end": 1148.03, "word": " then", "probability": 0.7216796875}, {"start": 1148.03, "end": 1148.19, "word": " we", "probability": 0.728515625}, {"start": 1148.19, "end": 1148.41, "word": " say", "probability": 0.56982421875}, {"start": 1148.41, "end": 1149.23, "word": " total", "probability": 0.58837890625}, {"start": 1149.23, "end": 1149.93, "word": " price", "probability": 0.88427734375}, {"start": 1149.93, "end": 1153.57, "word": " which", "probability": 0.456787109375}, {"start": 1153.57, "end": 1153.77, "word": " is", "probability": 0.6611328125}, {"start": 1153.77, "end": 1154.99, "word": " number", "probability": 0.77294921875}, {"start": 1154.99, "end": 1155.33, "word": " of", "probability": 0.97705078125}, {"start": 1155.33, "end": 1155.85, "word": " shares", "probability": 0.84033203125}, {"start": 1155.85, "end": 1158.15, "word": " multiplied", "probability": 0.348876953125}, {"start": 1158.15, "end": 1159.65, "word": " by", "probability": 0.9443359375}, {"start": 1159.65, "end": 1160.35, "word": " share", "probability": 0.84375}, {"start": 1160.35, "end": 1160.71, "word": " price", "probability": 0.8837890625}], "temperature": 1.0}, {"id": 54, "seek": 118901, "start": 1167.17, "end": 1189.01, "text": "Okay, for example, we don't actually execute, this is just a proof that this is how the process is executed, it may need to make a connection to a database, other operations and so on So, we also make another method, which is buy or public void, for example, sell shares or open company, whatever it wants", "tokens": [8297, 11, 337, 1365, 11, 321, 500, 380, 767, 14483, 11, 341, 307, 445, 257, 8177, 300, 341, 307, 577, 264, 1399, 307, 17577, 11, 309, 815, 643, 281, 652, 257, 4984, 281, 257, 8149, 11, 661, 7705, 293, 370, 322, 407, 11, 321, 611, 652, 1071, 3170, 11, 597, 307, 2256, 420, 1908, 22009, 11, 337, 1365, 11, 3607, 12182, 420, 1269, 2237, 11, 2035, 309, 2738], "avg_logprob": -0.4397644789322563, "compression_ratio": 1.5885416666666667, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1167.17, "end": 1167.49, "word": "Okay,", "probability": 0.12646484375}, {"start": 1167.59, "end": 1167.89, "word": " for", "probability": 0.8125}, {"start": 1167.89, "end": 1167.89, "word": " example,", "probability": 0.89208984375}, {"start": 1168.69, "end": 1168.87, "word": " we", "probability": 0.81640625}, {"start": 1168.87, "end": 1169.47, "word": " don't", "probability": 0.643798828125}, {"start": 1169.47, "end": 1169.63, "word": " actually", "probability": 0.38720703125}, {"start": 1169.63, "end": 1169.85, "word": " execute,", "probability": 0.34912109375}, {"start": 1170.27, "end": 1170.43, "word": " this", "probability": 0.57177734375}, {"start": 1170.43, "end": 1170.49, "word": " is", "probability": 0.90966796875}, {"start": 1170.49, "end": 1170.65, "word": " just", "probability": 0.68701171875}, {"start": 1170.65, "end": 1170.93, "word": " a", "probability": 0.38525390625}, {"start": 1170.93, "end": 1171.09, "word": " proof", "probability": 0.81298828125}, {"start": 1171.09, "end": 1171.35, "word": " that", "probability": 0.89013671875}, {"start": 1171.35, "end": 1171.85, "word": " this", "probability": 0.603515625}, {"start": 1171.85, "end": 1171.97, "word": " is", "probability": 0.90380859375}, {"start": 1171.97, "end": 1171.97, "word": " how", "probability": 0.91943359375}, {"start": 1171.97, "end": 1172.47, "word": " the", "probability": 0.74072265625}, {"start": 1172.47, "end": 1172.73, "word": " process", "probability": 0.8203125}, {"start": 1172.73, "end": 1172.73, "word": " is", "probability": 0.50537109375}, {"start": 1172.73, "end": 1172.73, "word": " executed,", "probability": 0.9130859375}, {"start": 1172.81, "end": 1172.83, "word": " it", "probability": 0.58935546875}, {"start": 1172.83, "end": 1172.99, "word": " may", "probability": 0.7236328125}, {"start": 1172.99, "end": 1173.39, "word": " need", "probability": 0.85205078125}, {"start": 1173.39, "end": 1173.51, "word": " to", "probability": 0.93603515625}, {"start": 1173.51, "end": 1173.71, "word": " make", "probability": 0.63720703125}, {"start": 1173.71, "end": 1173.81, "word": " a", "probability": 0.65380859375}, {"start": 1173.81, "end": 1174.09, "word": " connection", "probability": 0.93115234375}, {"start": 1174.09, "end": 1174.27, "word": " to", "probability": 0.9013671875}, {"start": 1174.27, "end": 1174.35, "word": " a", "probability": 0.63916015625}, {"start": 1174.35, "end": 1174.77, "word": " database,", "probability": 0.95166015625}, {"start": 1175.33, "end": 1175.41, "word": " other", "probability": 0.685546875}, {"start": 1175.41, "end": 1175.73, "word": " operations", "probability": 0.55078125}, {"start": 1175.73, "end": 1176.17, "word": " and", "probability": 0.5146484375}, {"start": 1176.17, "end": 1176.33, "word": " so", "probability": 0.794921875}, {"start": 1176.33, "end": 1176.71, "word": " on", "probability": 0.8740234375}, {"start": 1176.71, "end": 1177.29, "word": " So,", "probability": 0.251708984375}, {"start": 1177.57, "end": 1178.35, "word": " we", "probability": 0.6318359375}, {"start": 1178.35, "end": 1178.35, "word": " also", "probability": 0.7861328125}, {"start": 1178.35, "end": 1178.77, "word": " make", "probability": 0.476806640625}, {"start": 1178.77, "end": 1179.07, "word": " another", "probability": 0.58837890625}, {"start": 1179.07, "end": 1179.47, "word": " method,", "probability": 0.953125}, {"start": 1179.95, "end": 1180.01, "word": " which", "probability": 0.7822265625}, {"start": 1180.01, "end": 1180.21, "word": " is", "probability": 0.9404296875}, {"start": 1180.21, "end": 1180.85, "word": " buy", "probability": 0.34765625}, {"start": 1180.85, "end": 1182.25, "word": " or", "probability": 0.56787109375}, {"start": 1182.25, "end": 1183.29, "word": " public", "probability": 0.90234375}, {"start": 1183.29, "end": 1184.35, "word": " void,", "probability": 0.89501953125}, {"start": 1184.49, "end": 1184.63, "word": " for", "probability": 0.85546875}, {"start": 1184.63, "end": 1184.85, "word": " example,", "probability": 0.96337890625}, {"start": 1185.31, "end": 1185.57, "word": " sell", "probability": 0.7431640625}, {"start": 1185.57, "end": 1186.05, "word": " shares", "probability": 0.86279296875}, {"start": 1186.05, "end": 1187.83, "word": " or", "probability": 0.69140625}, {"start": 1187.83, "end": 1188.15, "word": " open", "probability": 0.900390625}, {"start": 1188.15, "end": 1188.59, "word": " company,", "probability": 0.873046875}, {"start": 1188.67, "end": 1188.79, "word": " whatever", "probability": 0.72900390625}, {"start": 1188.79, "end": 1189.01, "word": " it", "probability": 0.6357421875}, {"start": 1189.01, "end": 1189.01, "word": " wants", "probability": 0.76611328125}], "temperature": 1.0}, {"id": 55, "seek": 119845, "start": 1195.23, "end": 1198.45, "text": "مثلا public void open company", "tokens": [2304, 12984, 15040, 1908, 22009, 1269, 2237], "avg_logprob": -0.4387207180261612, "compression_ratio": 0.8048780487804879, "no_speech_prob": 0.0, "words": [{"start": 1195.23, "end": 1196.31, "word": "مثلا", "probability": 0.6843058268229166}, {"start": 1196.31, "end": 1196.73, "word": " public", "probability": 0.828125}, {"start": 1196.73, "end": 1197.27, "word": " void", "probability": 0.50146484375}, {"start": 1197.27, "end": 1197.93, "word": " open", "probability": 0.77880859375}, {"start": 1197.93, "end": 1198.45, "word": " company", "probability": 0.927734375}], "temperature": 1.0}, {"id": 56, "seek": 122029, "start": 1200.79, "end": 1220.29, "text": "String for example company id, name, capital, number of shares", "tokens": [4520, 2937, 337, 1365, 2237, 4496, 11, 1315, 11, 4238, 11, 1230, 295, 12182], "avg_logprob": -0.6296874761581421, "compression_ratio": 0.9253731343283582, "no_speech_prob": 0.374755859375, "words": [{"start": 1200.79, "end": 1202.15, "word": "String", "probability": 0.6815185546875}, {"start": 1202.15, "end": 1202.45, "word": " for", "probability": 0.14697265625}, {"start": 1202.45, "end": 1202.67, "word": " example", "probability": 0.92822265625}, {"start": 1202.67, "end": 1203.15, "word": " company", "probability": 0.63671875}, {"start": 1203.15, "end": 1204.17, "word": " id,", "probability": 0.396484375}, {"start": 1204.95, "end": 1208.29, "word": " name,", "probability": 0.365234375}, {"start": 1210.43, "end": 1210.91, "word": " capital,", "probability": 0.8134765625}, {"start": 1215.59, "end": 1218.31, "word": " number", "probability": 0.388916015625}, {"start": 1218.31, "end": 1219.87, "word": " of", "probability": 0.96533203125}, {"start": 1219.87, "end": 1220.29, "word": " shares", "probability": 0.91064453125}], "temperature": 1.0}, {"id": 57, "seek": 125142, "start": 1233.7, "end": 1251.42, "text": " Opening company ID with name and capital", "tokens": [41137, 2237, 7348, 365, 1315, 293, 4238], "avg_logprob": -0.5146484300494194, "compression_ratio": 0.8367346938775511, "no_speech_prob": 0.0, "words": [{"start": 1233.6999999999998, "end": 1235.1, "word": " Opening", "probability": 0.38037109375}, {"start": 1235.1, "end": 1236.5, "word": " company", "probability": 0.603515625}, {"start": 1236.5, "end": 1237.86, "word": " ID", "probability": 0.47216796875}, {"start": 1237.86, "end": 1240.08, "word": " with", "probability": 0.8037109375}, {"start": 1240.08, "end": 1242.64, "word": " name", "probability": 0.86474609375}, {"start": 1242.64, "end": 1244.8, "word": " and", "probability": 0.396240234375}, {"start": 1244.8, "end": 1251.42, "word": " capital", "probability": 0.779296875}], "temperature": 1.0}, {"id": 58, "seek": 127274, "start": 1257.7, "end": 1272.74, "text": "Anyway, and you can also print the number of what? The number of stocks. The idea is of course that there will be methods, each process that takes place in the stock market has what? It has existing methods that take certain parameters and based on these parameters, it works. Okay?", "tokens": [29647, 676, 11, 293, 291, 393, 611, 4482, 264, 1230, 295, 437, 30, 440, 1230, 295, 12966, 13, 440, 1558, 307, 295, 1164, 300, 456, 486, 312, 7150, 11, 1184, 1399, 300, 2516, 1081, 294, 264, 4127, 2142, 575, 437, 30, 467, 575, 6741, 7150, 300, 747, 1629, 9834, 293, 2361, 322, 613, 9834, 11, 309, 1985, 13, 1033, 30], "avg_logprob": -0.4492827907937472, "compression_ratio": 1.6022727272727273, "no_speech_prob": 2.3245811462402344e-06, "words": [{"start": 1257.6999999999998, "end": 1258.1, "word": "Anyway,", "probability": 0.508544921875}, {"start": 1258.22, "end": 1258.24, "word": " and", "probability": 0.3291015625}, {"start": 1258.24, "end": 1258.62, "word": " you", "probability": 0.78369140625}, {"start": 1258.62, "end": 1258.9, "word": " can", "probability": 0.88525390625}, {"start": 1258.9, "end": 1259.06, "word": " also", "probability": 0.342041015625}, {"start": 1259.06, "end": 1259.22, "word": " print", "probability": 0.73876953125}, {"start": 1259.22, "end": 1259.62, "word": " the", "probability": 0.5029296875}, {"start": 1259.62, "end": 1259.78, "word": " number", "probability": 0.71337890625}, {"start": 1259.78, "end": 1259.88, "word": " of", "probability": 0.9345703125}, {"start": 1259.88, "end": 1260.02, "word": " what?", "probability": 0.384521484375}, {"start": 1260.14, "end": 1260.2, "word": " The", "probability": 0.44970703125}, {"start": 1260.2, "end": 1260.28, "word": " number", "probability": 0.8232421875}, {"start": 1260.28, "end": 1260.44, "word": " of", "probability": 0.97021484375}, {"start": 1260.44, "end": 1260.7, "word": " stocks.", "probability": 0.53125}, {"start": 1261.7, "end": 1262.1, "word": " The", "probability": 0.78173828125}, {"start": 1262.1, "end": 1262.38, "word": " idea", "probability": 0.8701171875}, {"start": 1262.38, "end": 1262.7, "word": " is", "probability": 0.501953125}, {"start": 1262.7, "end": 1262.86, "word": " of", "probability": 0.33056640625}, {"start": 1262.86, "end": 1262.92, "word": " course", "probability": 0.96435546875}, {"start": 1262.92, "end": 1263.08, "word": " that", "probability": 0.60791015625}, {"start": 1263.08, "end": 1263.1, "word": " there", "probability": 0.88623046875}, {"start": 1263.1, "end": 1263.1, "word": " will", "probability": 0.65673828125}, {"start": 1263.1, "end": 1263.3, "word": " be", "probability": 0.955078125}, {"start": 1263.3, "end": 1263.78, "word": " methods,", "probability": 0.84375}, {"start": 1264.08, "end": 1264.32, "word": " each", "probability": 0.6474609375}, {"start": 1264.32, "end": 1264.68, "word": " process", "probability": 0.7705078125}, {"start": 1264.68, "end": 1264.86, "word": " that", "probability": 0.2265625}, {"start": 1264.86, "end": 1265.06, "word": " takes", "probability": 0.384521484375}, {"start": 1265.06, "end": 1265.1, "word": " place", "probability": 0.89013671875}, {"start": 1265.1, "end": 1265.16, "word": " in", "probability": 0.9169921875}, {"start": 1265.16, "end": 1265.24, "word": " the", "probability": 0.90673828125}, {"start": 1265.24, "end": 1265.42, "word": " stock", "probability": 0.783203125}, {"start": 1265.42, "end": 1265.82, "word": " market", "probability": 0.89794921875}, {"start": 1265.82, "end": 1266.02, "word": " has", "probability": 0.72998046875}, {"start": 1266.02, "end": 1266.34, "word": " what?", "probability": 0.74560546875}, {"start": 1267.22, "end": 1267.54, "word": " It", "probability": 0.76025390625}, {"start": 1267.54, "end": 1267.7, "word": " has", "probability": 0.95068359375}, {"start": 1267.7, "end": 1267.72, "word": " existing", "probability": 0.484619140625}, {"start": 1267.72, "end": 1268.3, "word": " methods", "probability": 0.7783203125}, {"start": 1268.3, "end": 1268.52, "word": " that", "probability": 0.54833984375}, {"start": 1268.52, "end": 1268.72, "word": " take", "probability": 0.77001953125}, {"start": 1268.72, "end": 1268.8, "word": " certain", "probability": 0.638671875}, {"start": 1268.8, "end": 1269.6, "word": " parameters", "probability": 0.9755859375}, {"start": 1269.6, "end": 1269.76, "word": " and", "probability": 0.7138671875}, {"start": 1269.76, "end": 1269.9, "word": " based", "probability": 0.58935546875}, {"start": 1269.9, "end": 1270.1, "word": " on", "probability": 0.9482421875}, {"start": 1270.1, "end": 1270.24, "word": " these", "probability": 0.32177734375}, {"start": 1270.24, "end": 1270.88, "word": " parameters,", "probability": 0.98681640625}, {"start": 1271.5, "end": 1271.62, "word": " it", "probability": 0.69189453125}, {"start": 1271.62, "end": 1271.94, "word": " works.", "probability": 0.60693359375}, {"start": 1272.48, "end": 1272.74, "word": " Okay?", "probability": 0.396728515625}], "temperature": 1.0}, {"id": 59, "seek": 130063, "start": 1273.59, "end": 1300.63, "text": "Okay, now I went to the main operation, now of course I want to start on the stock market, I want to create an object from who? From stock market, this is stock market, new stock and then I say stock market, I want to buy stocks, I say buy, buy shares and I send him the details", "tokens": [8297, 11, 586, 286, 1437, 281, 264, 2135, 6916, 11, 586, 295, 1164, 286, 528, 281, 722, 322, 264, 4127, 2142, 11, 286, 528, 281, 1884, 364, 2657, 490, 567, 30, 3358, 4127, 2142, 11, 341, 307, 4127, 2142, 11, 777, 4127, 293, 550, 286, 584, 4127, 2142, 11, 286, 528, 281, 2256, 12966, 11, 286, 584, 2256, 11, 2256, 12182, 293, 286, 2845, 796, 264, 4365], "avg_logprob": -0.49080881038132834, "compression_ratio": 1.8051948051948052, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1273.59, "end": 1273.91, "word": "Okay,", "probability": 0.2088623046875}, {"start": 1274.05, "end": 1274.43, "word": " now", "probability": 0.734375}, {"start": 1274.43, "end": 1274.61, "word": " I", "probability": 0.85595703125}, {"start": 1274.61, "end": 1274.79, "word": " went", "probability": 0.3115234375}, {"start": 1274.79, "end": 1275.29, "word": " to", "probability": 0.849609375}, {"start": 1275.29, "end": 1275.43, "word": " the", "probability": 0.7421875}, {"start": 1275.43, "end": 1275.69, "word": " main", "probability": 0.89111328125}, {"start": 1275.69, "end": 1276.83, "word": " operation,", "probability": 0.68359375}, {"start": 1277.47, "end": 1277.69, "word": " now", "probability": 0.450439453125}, {"start": 1277.69, "end": 1277.99, "word": " of", "probability": 0.2783203125}, {"start": 1277.99, "end": 1277.99, "word": " course", "probability": 0.95556640625}, {"start": 1277.99, "end": 1278.19, "word": " I", "probability": 0.88037109375}, {"start": 1278.19, "end": 1278.33, "word": " want", "probability": 0.48974609375}, {"start": 1278.33, "end": 1278.37, "word": " to", "probability": 0.962890625}, {"start": 1278.37, "end": 1278.53, "word": " start", "probability": 0.12091064453125}, {"start": 1278.53, "end": 1278.67, "word": " on", "probability": 0.49658203125}, {"start": 1278.67, "end": 1278.77, "word": " the", "probability": 0.83642578125}, {"start": 1278.77, "end": 1278.93, "word": " stock", "probability": 0.79541015625}, {"start": 1278.93, "end": 1279.37, "word": " market,", "probability": 0.91259765625}, {"start": 1279.51, "end": 1279.53, "word": " I", "probability": 0.58349609375}, {"start": 1279.53, "end": 1279.67, "word": " want", "probability": 0.79345703125}, {"start": 1279.67, "end": 1279.75, "word": " to", "probability": 0.966796875}, {"start": 1279.75, "end": 1279.89, "word": " create", "probability": 0.79150390625}, {"start": 1279.89, "end": 1280.03, "word": " an", "probability": 0.751953125}, {"start": 1280.03, "end": 1280.25, "word": " object", "probability": 0.984375}, {"start": 1280.25, "end": 1280.43, "word": " from", "probability": 0.734375}, {"start": 1280.43, "end": 1280.63, "word": " who?", "probability": 0.1661376953125}, {"start": 1281.45, "end": 1281.79, "word": " From", "probability": 0.54736328125}, {"start": 1281.79, "end": 1282.21, "word": " stock", "probability": 0.39111328125}, {"start": 1282.21, "end": 1282.65, "word": " market,", "probability": 0.77197265625}, {"start": 1282.97, "end": 1283.19, "word": " this", "probability": 0.6396484375}, {"start": 1283.19, "end": 1283.27, "word": " is", "probability": 0.9248046875}, {"start": 1283.27, "end": 1283.75, "word": " stock", "probability": 0.55224609375}, {"start": 1283.75, "end": 1285.09, "word": " market,", "probability": 0.84326171875}, {"start": 1286.07, "end": 1286.75, "word": " new", "probability": 0.8701171875}, {"start": 1286.75, "end": 1287.51, "word": " stock", "probability": 0.81298828125}, {"start": 1287.51, "end": 1291.13, "word": " and", "probability": 0.2374267578125}, {"start": 1291.13, "end": 1291.39, "word": " then", "probability": 0.458740234375}, {"start": 1291.39, "end": 1291.55, "word": " I", "probability": 0.6318359375}, {"start": 1291.55, "end": 1291.85, "word": " say", "probability": 0.35400390625}, {"start": 1291.85, "end": 1292.23, "word": " stock", "probability": 0.486328125}, {"start": 1292.23, "end": 1292.79, "word": " market,", "probability": 0.87890625}, {"start": 1293.31, "end": 1293.65, "word": " I", "probability": 0.58984375}, {"start": 1293.65, "end": 1293.83, "word": " want", "probability": 0.80908203125}, {"start": 1293.83, "end": 1293.97, "word": " to", "probability": 0.96435546875}, {"start": 1293.97, "end": 1294.53, "word": " buy", "probability": 0.291259765625}, {"start": 1294.53, "end": 1296.23, "word": " stocks,", "probability": 0.3427734375}, {"start": 1296.37, "end": 1296.49, "word": " I", "probability": 0.84033203125}, {"start": 1296.49, "end": 1296.63, "word": " say", "probability": 0.828125}, {"start": 1296.63, "end": 1296.99, "word": " buy,", "probability": 0.89501953125}, {"start": 1297.59, "end": 1298.07, "word": " buy", "probability": 0.88671875}, {"start": 1298.07, "end": 1298.41, "word": " shares", "probability": 0.88525390625}, {"start": 1298.41, "end": 1298.53, "word": " and", "probability": 0.70849609375}, {"start": 1298.53, "end": 1298.59, "word": " I", "probability": 0.50390625}, {"start": 1298.59, "end": 1298.79, "word": " send", "probability": 0.6611328125}, {"start": 1298.79, "end": 1298.93, "word": " him", "probability": 0.6484375}, {"start": 1298.93, "end": 1300.19, "word": " the", "probability": 0.453125}, {"start": 1300.19, "end": 1300.63, "word": " details", "probability": 0.873046875}], "temperature": 1.0}, {"id": 60, "seek": 131983, "start": 1301.63, "end": 1319.83, "text": "Okay, I want to open a company, a stock market, okay, I say open company and I send him the necessary details to open a company. We also want to buy stocks, which is new, because in one day you can open a company", "tokens": [8297, 11, 286, 528, 281, 1269, 257, 2237, 11, 257, 4127, 2142, 11, 1392, 11, 286, 584, 1269, 2237, 293, 286, 2845, 796, 264, 4818, 4365, 281, 1269, 257, 2237, 13, 492, 611, 528, 281, 2256, 12966, 11, 597, 307, 777, 11, 570, 294, 472, 786, 291, 393, 1269, 257, 2237], "avg_logprob": -0.5030047904986602, "compression_ratio": 1.593984962406015, "no_speech_prob": 0.00018465518951416016, "words": [{"start": 1301.63, "end": 1301.95, "word": "Okay,", "probability": 0.184326171875}, {"start": 1302.11, "end": 1302.27, "word": " I", "probability": 0.86181640625}, {"start": 1302.27, "end": 1302.43, "word": " want", "probability": 0.6630859375}, {"start": 1302.43, "end": 1302.59, "word": " to", "probability": 0.95947265625}, {"start": 1302.59, "end": 1302.93, "word": " open", "probability": 0.49658203125}, {"start": 1302.93, "end": 1304.09, "word": " a", "probability": 0.8818359375}, {"start": 1304.09, "end": 1304.51, "word": " company,", "probability": 0.79541015625}, {"start": 1304.85, "end": 1304.97, "word": " a", "probability": 0.389892578125}, {"start": 1304.97, "end": 1305.23, "word": " stock", "probability": 0.775390625}, {"start": 1305.23, "end": 1305.81, "word": " market,", "probability": 0.89697265625}, {"start": 1307.09, "end": 1307.49, "word": " okay,", "probability": 0.54296875}, {"start": 1307.61, "end": 1307.69, "word": " I", "probability": 0.87255859375}, {"start": 1307.69, "end": 1307.85, "word": " say", "probability": 0.439697265625}, {"start": 1307.85, "end": 1308.33, "word": " open", "probability": 0.611328125}, {"start": 1308.33, "end": 1310.29, "word": " company", "probability": 0.83642578125}, {"start": 1310.29, "end": 1310.45, "word": " and", "probability": 0.626953125}, {"start": 1310.45, "end": 1310.53, "word": " I", "probability": 0.6328125}, {"start": 1310.53, "end": 1310.77, "word": " send", "probability": 0.71142578125}, {"start": 1310.77, "end": 1310.93, "word": " him", "probability": 0.78955078125}, {"start": 1310.93, "end": 1311.57, "word": " the", "probability": 0.5400390625}, {"start": 1311.57, "end": 1312.35, "word": " necessary", "probability": 0.74951171875}, {"start": 1312.35, "end": 1312.35, "word": " details", "probability": 0.82421875}, {"start": 1312.35, "end": 1312.79, "word": " to", "probability": 0.6318359375}, {"start": 1312.79, "end": 1313.07, "word": " open", "probability": 0.50146484375}, {"start": 1313.07, "end": 1313.11, "word": " a", "probability": 0.38818359375}, {"start": 1313.11, "end": 1313.71, "word": " company.", "probability": 0.904296875}, {"start": 1314.05, "end": 1314.17, "word": " We", "probability": 0.82373046875}, {"start": 1314.17, "end": 1314.35, "word": " also", "probability": 0.7353515625}, {"start": 1314.35, "end": 1314.51, "word": " want", "probability": 0.58837890625}, {"start": 1314.51, "end": 1315.45, "word": " to", "probability": 0.9716796875}, {"start": 1315.45, "end": 1315.45, "word": " buy", "probability": 0.939453125}, {"start": 1315.45, "end": 1315.85, "word": " stocks,", "probability": 0.5869140625}, {"start": 1316.87, "end": 1317.05, "word": " which", "probability": 0.43115234375}, {"start": 1317.05, "end": 1317.05, "word": " is", "probability": 0.9091796875}, {"start": 1317.05, "end": 1317.35, "word": " new,", "probability": 0.446044921875}, {"start": 1318.03, "end": 1318.33, "word": " because", "probability": 0.59814453125}, {"start": 1318.33, "end": 1318.43, "word": " in", "probability": 0.392578125}, {"start": 1318.43, "end": 1318.93, "word": " one", "probability": 0.71484375}, {"start": 1318.93, "end": 1318.93, "word": " day", "probability": 0.95751953125}, {"start": 1318.93, "end": 1319.17, "word": " you", "probability": 0.412109375}, {"start": 1319.17, "end": 1319.35, "word": " can", "probability": 0.5732421875}, {"start": 1319.35, "end": 1319.51, "word": " open", "probability": 0.56787109375}, {"start": 1319.51, "end": 1319.55, "word": " a", "probability": 0.85595703125}, {"start": 1319.55, "end": 1319.83, "word": " company", "probability": 0.68798828125}], "temperature": 1.0}, {"id": 61, "seek": 133531, "start": 1327.17, "end": 1335.31, "text": "Buy shares can be 10 to 20 transactions with an open company and it's two series", "tokens": [33, 7493, 12182, 393, 312, 1266, 281, 945, 16856, 365, 364, 1269, 2237, 293, 309, 311, 732, 2638], "avg_logprob": -0.9588815914957147, "compression_ratio": 1.0256410256410255, "no_speech_prob": 4.589557647705078e-06, "words": [{"start": 1327.17, "end": 1328.21, "word": "Buy", "probability": 0.528961181640625}, {"start": 1328.21, "end": 1328.59, "word": " shares", "probability": 0.83984375}, {"start": 1328.59, "end": 1329.11, "word": " can", "probability": 0.11236572265625}, {"start": 1329.11, "end": 1329.79, "word": " be", "probability": 0.57080078125}, {"start": 1329.79, "end": 1330.89, "word": " 10", "probability": 0.31396484375}, {"start": 1330.89, "end": 1331.07, "word": " to", "probability": 0.299560546875}, {"start": 1331.07, "end": 1331.57, "word": " 20", "probability": 0.966796875}, {"start": 1331.57, "end": 1332.19, "word": " transactions", "probability": 0.1612548828125}, {"start": 1332.19, "end": 1333.11, "word": " with", "probability": 0.64501953125}, {"start": 1333.11, "end": 1333.27, "word": " an", "probability": 0.20361328125}, {"start": 1333.27, "end": 1333.41, "word": " open", "probability": 0.84619140625}, {"start": 1333.41, "end": 1334.05, "word": " company", "probability": 0.90771484375}, {"start": 1334.05, "end": 1334.87, "word": " and", "probability": 0.381591796875}, {"start": 1334.87, "end": 1335.07, "word": " it's", "probability": 0.22833251953125}, {"start": 1335.07, "end": 1335.07, "word": " two", "probability": 0.322998046875}, {"start": 1335.07, "end": 1335.31, "word": " series", "probability": 0.55078125}], "temperature": 1.0}, {"id": 62, "seek": 135087, "start": 1337.53, "end": 1350.87, "text": "Now, we made a way for the stock market to execute the orders, but we don't want the orders to be executed immediately. What did we agree on? That these orders should be stored to be executed", "tokens": [13267, 11, 321, 1027, 257, 636, 337, 264, 4127, 2142, 281, 14483, 264, 9470, 11, 457, 321, 500, 380, 528, 264, 9470, 281, 312, 17577, 4258, 13, 708, 630, 321, 3986, 322, 30, 663, 613, 9470, 820, 312, 12187, 281, 312, 17577], "avg_logprob": -0.5283430454342865, "compression_ratio": 1.4692307692307693, "no_speech_prob": 1.5556812286376953e-05, "words": [{"start": 1337.53, "end": 1337.97, "word": "Now,", "probability": 0.429931640625}, {"start": 1338.11, "end": 1338.29, "word": " we", "probability": 0.84912109375}, {"start": 1338.29, "end": 1338.49, "word": " made", "probability": 0.2220458984375}, {"start": 1338.49, "end": 1338.55, "word": " a", "probability": 0.7373046875}, {"start": 1338.55, "end": 1338.93, "word": " way", "probability": 0.67333984375}, {"start": 1338.93, "end": 1340.85, "word": " for", "probability": 0.6728515625}, {"start": 1340.85, "end": 1340.91, "word": " the", "probability": 0.7685546875}, {"start": 1340.91, "end": 1341.07, "word": " stock", "probability": 0.457763671875}, {"start": 1341.07, "end": 1341.41, "word": " market", "probability": 0.85009765625}, {"start": 1341.41, "end": 1341.67, "word": " to", "probability": 0.576171875}, {"start": 1341.67, "end": 1342.03, "word": " execute", "probability": 0.33203125}, {"start": 1342.03, "end": 1342.17, "word": " the", "probability": 0.312744140625}, {"start": 1342.17, "end": 1342.45, "word": " orders,", "probability": 0.5283203125}, {"start": 1342.65, "end": 1342.87, "word": " but", "probability": 0.818359375}, {"start": 1342.87, "end": 1343.21, "word": " we", "probability": 0.75927734375}, {"start": 1343.21, "end": 1343.83, "word": " don't", "probability": 0.83154296875}, {"start": 1343.83, "end": 1344.15, "word": " want", "probability": 0.72705078125}, {"start": 1344.15, "end": 1344.27, "word": " the", "probability": 0.236328125}, {"start": 1344.27, "end": 1344.59, "word": " orders", "probability": 0.7568359375}, {"start": 1344.59, "end": 1344.95, "word": " to", "probability": 0.83740234375}, {"start": 1344.95, "end": 1345.29, "word": " be", "probability": 0.7646484375}, {"start": 1345.29, "end": 1345.29, "word": " executed", "probability": 0.88916015625}, {"start": 1345.29, "end": 1345.75, "word": " immediately.", "probability": 0.3994140625}, {"start": 1346.17, "end": 1346.39, "word": " What", "probability": 0.59033203125}, {"start": 1346.39, "end": 1346.45, "word": " did", "probability": 0.71630859375}, {"start": 1346.45, "end": 1346.47, "word": " we", "probability": 0.95703125}, {"start": 1346.47, "end": 1346.81, "word": " agree", "probability": 0.88037109375}, {"start": 1346.81, "end": 1347.01, "word": " on?", "probability": 0.458251953125}, {"start": 1347.05, "end": 1347.21, "word": " That", "probability": 0.7080078125}, {"start": 1347.21, "end": 1347.33, "word": " these", "probability": 0.46435546875}, {"start": 1347.33, "end": 1347.71, "word": " orders", "probability": 0.86083984375}, {"start": 1347.71, "end": 1348.25, "word": " should", "probability": 0.3779296875}, {"start": 1348.25, "end": 1348.37, "word": " be", "probability": 0.93994140625}, {"start": 1348.37, "end": 1348.81, "word": " stored", "probability": 0.71728515625}, {"start": 1348.81, "end": 1350.23, "word": " to", "probability": 0.38916015625}, {"start": 1350.23, "end": 1350.47, "word": " be", "probability": 0.86328125}, {"start": 1350.47, "end": 1350.87, "word": " executed", "probability": 0.845703125}], "temperature": 1.0}, {"id": 63, "seek": 138156, "start": 1352.16, "end": 1381.56, "text": "in a later period of time. This idea is present here. So how do these commands that have different attributes and different information .. I mean, it's true that when I say buy shares, it's the same command, but its details are different. So we need a way to issue commands that specify that I have, for example, three purchasing operations, then two operations to open a company, then two purchasing operations, then three operations in this order, and store their information, and then implement them later.", "tokens": [259, 257, 1780, 2896, 295, 565, 13, 639, 1558, 307, 1974, 510, 13, 407, 577, 360, 613, 16901, 300, 362, 819, 17212, 293, 819, 1589, 4386, 286, 914, 11, 309, 311, 2074, 300, 562, 286, 584, 2256, 12182, 11, 309, 311, 264, 912, 5622, 11, 457, 1080, 4365, 366, 819, 13, 407, 321, 643, 257, 636, 281, 2734, 16901, 300, 16500, 300, 286, 362, 11, 337, 1365, 11, 1045, 20906, 7705, 11, 550, 732, 7705, 281, 1269, 257, 2237, 11, 550, 732, 20906, 7705, 11, 550, 1045, 7705, 294, 341, 1668, 11, 293, 3531, 641, 1589, 11, 293, 550, 4445, 552, 1780, 13], "avg_logprob": -0.4678485519610919, "compression_ratio": 1.950191570881226, "no_speech_prob": 0.8486328125, "words": [{"start": 1352.16, "end": 1352.4, "word": "in", "probability": 0.09295654296875}, {"start": 1352.4, "end": 1352.5, "word": " a", "probability": 0.341552734375}, {"start": 1352.5, "end": 1352.9, "word": " later", "probability": 0.7646484375}, {"start": 1352.9, "end": 1352.9, "word": " period", "probability": 0.39306640625}, {"start": 1352.9, "end": 1353.16, "word": " of", "probability": 0.650390625}, {"start": 1353.16, "end": 1353.38, "word": " time.", "probability": 0.87890625}, {"start": 1353.54, "end": 1353.66, "word": " This", "probability": 0.445068359375}, {"start": 1353.66, "end": 1354.0, "word": " idea", "probability": 0.556640625}, {"start": 1354.0, "end": 1354.22, "word": " is", "probability": 0.64990234375}, {"start": 1354.22, "end": 1354.5, "word": " present", "probability": 0.3779296875}, {"start": 1354.5, "end": 1354.8, "word": " here.", "probability": 0.759765625}, {"start": 1355.32, "end": 1355.48, "word": " So", "probability": 0.69677734375}, {"start": 1355.48, "end": 1355.72, "word": " how", "probability": 0.77685546875}, {"start": 1355.72, "end": 1355.82, "word": " do", "probability": 0.25634765625}, {"start": 1355.82, "end": 1355.88, "word": " these", "probability": 0.72216796875}, {"start": 1355.88, "end": 1356.18, "word": " commands", "probability": 0.364013671875}, {"start": 1356.18, "end": 1356.74, "word": " that", "probability": 0.21826171875}, {"start": 1356.74, "end": 1357.08, "word": " have", "probability": 0.90478515625}, {"start": 1357.08, "end": 1357.18, "word": " different", "probability": 0.8583984375}, {"start": 1357.18, "end": 1357.66, "word": " attributes", "probability": 0.87451171875}, {"start": 1357.66, "end": 1358.36, "word": " and", "probability": 0.83935546875}, {"start": 1358.36, "end": 1358.44, "word": " different", "probability": 0.66796875}, {"start": 1358.44, "end": 1358.82, "word": " information", "probability": 0.72314453125}, {"start": 1358.82, "end": 1359.12, "word": " ..", "probability": 0.136474609375}, {"start": 1359.12, "end": 1359.24, "word": " I", "probability": 0.347900390625}, {"start": 1359.24, "end": 1359.3, "word": " mean,", "probability": 0.87109375}, {"start": 1359.38, "end": 1359.46, "word": " it's", "probability": 0.48974609375}, {"start": 1359.46, "end": 1359.54, "word": " true", "probability": 0.88671875}, {"start": 1359.54, "end": 1359.62, "word": " that", "probability": 0.71875}, {"start": 1359.62, "end": 1359.84, "word": " when", "probability": 0.2265625}, {"start": 1359.84, "end": 1359.88, "word": " I", "probability": 0.833984375}, {"start": 1359.88, "end": 1360.1, "word": " say", "probability": 0.5322265625}, {"start": 1360.1, "end": 1360.34, "word": " buy", "probability": 0.6005859375}, {"start": 1360.34, "end": 1360.72, "word": " shares,", "probability": 0.8818359375}, {"start": 1360.88, "end": 1361.1, "word": " it's", "probability": 0.633544921875}, {"start": 1361.1, "end": 1361.28, "word": " the", "probability": 0.88720703125}, {"start": 1361.28, "end": 1361.44, "word": " same", "probability": 0.90478515625}, {"start": 1361.44, "end": 1361.72, "word": " command,", "probability": 0.380859375}, {"start": 1362.08, "end": 1362.56, "word": " but", "probability": 0.90966796875}, {"start": 1362.56, "end": 1362.74, "word": " its", "probability": 0.391357421875}, {"start": 1362.74, "end": 1363.1, "word": " details", "probability": 0.65625}, {"start": 1363.1, "end": 1363.78, "word": " are", "probability": 0.77587890625}, {"start": 1363.78, "end": 1363.88, "word": " different.", "probability": 0.8701171875}, {"start": 1365.5, "end": 1365.92, "word": " So", "probability": 0.76416015625}, {"start": 1365.92, "end": 1366.16, "word": " we", "probability": 0.83154296875}, {"start": 1366.16, "end": 1366.36, "word": " need", "probability": 0.87255859375}, {"start": 1366.36, "end": 1366.5, "word": " a", "probability": 0.97021484375}, {"start": 1366.5, "end": 1366.78, "word": " way", "probability": 0.90234375}, {"start": 1366.78, "end": 1367.22, "word": " to", "probability": 0.94140625}, {"start": 1367.22, "end": 1367.6, "word": " issue", "probability": 0.7265625}, {"start": 1367.6, "end": 1368.06, "word": " commands", "probability": 0.40234375}, {"start": 1368.06, "end": 1368.26, "word": " that", "probability": 0.57177734375}, {"start": 1368.26, "end": 1368.54, "word": " specify", "probability": 0.3212890625}, {"start": 1368.54, "end": 1368.78, "word": " that", "probability": 0.75341796875}, {"start": 1368.78, "end": 1369.18, "word": " I", "probability": 0.380859375}, {"start": 1369.18, "end": 1369.62, "word": " have,", "probability": 0.9013671875}, {"start": 1369.66, "end": 1369.84, "word": " for", "probability": 0.92333984375}, {"start": 1369.84, "end": 1370.0, "word": " example,", "probability": 0.958984375}, {"start": 1370.64, "end": 1371.22, "word": " three", "probability": 0.81591796875}, {"start": 1371.22, "end": 1371.88, "word": " purchasing", "probability": 0.2406005859375}, {"start": 1371.88, "end": 1371.92, "word": " operations,", "probability": 0.8212890625}, {"start": 1372.1, "end": 1372.28, "word": " then", "probability": 0.7041015625}, {"start": 1372.28, "end": 1372.84, "word": " two", "probability": 0.91455078125}, {"start": 1372.84, "end": 1372.88, "word": " operations", "probability": 0.6484375}, {"start": 1372.88, "end": 1372.96, "word": " to", "probability": 0.56884765625}, {"start": 1372.96, "end": 1373.12, "word": " open", "probability": 0.83984375}, {"start": 1373.12, "end": 1373.26, "word": " a", "probability": 0.9560546875}, {"start": 1373.26, "end": 1373.46, "word": " company,", "probability": 0.9208984375}, {"start": 1373.64, "end": 1373.88, "word": " then", "probability": 0.81005859375}, {"start": 1373.88, "end": 1374.3, "word": " two", "probability": 0.94140625}, {"start": 1374.3, "end": 1374.64, "word": " purchasing", "probability": 0.5361328125}, {"start": 1374.64, "end": 1374.64, "word": " operations,", "probability": 0.978515625}, {"start": 1374.9, "end": 1375.1, "word": " then", "probability": 0.65478515625}, {"start": 1375.1, "end": 1375.4, "word": " three", "probability": 0.91259765625}, {"start": 1375.4, "end": 1375.82, "word": " operations", "probability": 0.96044921875}, {"start": 1375.82, "end": 1376.22, "word": " in", "probability": 0.4453125}, {"start": 1376.22, "end": 1376.56, "word": " this", "probability": 0.51708984375}, {"start": 1376.56, "end": 1376.88, "word": " order,", "probability": 0.84228515625}, {"start": 1377.68, "end": 1378.06, "word": " and", "probability": 0.64453125}, {"start": 1378.06, "end": 1378.38, "word": " store", "probability": 0.50390625}, {"start": 1378.38, "end": 1378.56, "word": " their", "probability": 0.90087890625}, {"start": 1378.56, "end": 1378.96, "word": " information,", "probability": 0.74755859375}, {"start": 1379.16, "end": 1379.36, "word": " and", "probability": 0.873046875}, {"start": 1379.36, "end": 1379.52, "word": " then", "probability": 0.65576171875}, {"start": 1379.52, "end": 1379.82, "word": " implement", "probability": 0.53857421875}, {"start": 1379.82, "end": 1381.36, "word": " them", "probability": 0.8798828125}, {"start": 1381.36, "end": 1381.56, "word": " later.", "probability": 0.81787109375}], "temperature": 1.0}, {"id": 64, "seek": 140106, "start": 1382.5, "end": 1401.06, "text": "So now we are going to start applying the concept of command pattern to do this thing So the first thing that I am going to say or the idea of command pattern is that the method calls that I have, what are the method calls that I have? They are buy, share and open company, okay? These method calls we are going to wrap them in an object, okay? With all their details", "tokens": [6455, 586, 321, 366, 516, 281, 722, 9275, 264, 3410, 295, 5622, 5102, 281, 360, 341, 551, 407, 264, 700, 551, 300, 286, 669, 516, 281, 584, 420, 264, 1558, 295, 5622, 5102, 307, 300, 264, 3170, 5498, 300, 286, 362, 11, 437, 366, 264, 3170, 5498, 300, 286, 362, 30, 814, 366, 2256, 11, 2073, 293, 1269, 2237, 11, 1392, 30, 1981, 3170, 5498, 321, 366, 516, 281, 7019, 552, 294, 364, 2657, 11, 1392, 30, 2022, 439, 641, 4365], "avg_logprob": -0.4916158623811675, "compression_ratio": 1.9417989417989419, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 1382.5, "end": 1382.78, "word": "So", "probability": 0.20556640625}, {"start": 1382.78, "end": 1383.2, "word": " now", "probability": 0.6787109375}, {"start": 1383.2, "end": 1383.36, "word": " we", "probability": 0.73974609375}, {"start": 1383.36, "end": 1383.52, "word": " are", "probability": 0.1341552734375}, {"start": 1383.52, "end": 1383.66, "word": " going", "probability": 0.8720703125}, {"start": 1383.66, "end": 1383.66, "word": " to", "probability": 0.9638671875}, {"start": 1383.66, "end": 1383.72, "word": " start", "probability": 0.2073974609375}, {"start": 1383.72, "end": 1384.28, "word": " applying", "probability": 0.654296875}, {"start": 1384.28, "end": 1384.54, "word": " the", "probability": 0.6435546875}, {"start": 1384.54, "end": 1384.82, "word": " concept", "probability": 0.705078125}, {"start": 1384.82, "end": 1384.98, "word": " of", "probability": 0.9609375}, {"start": 1384.98, "end": 1385.36, "word": " command", "probability": 0.52978515625}, {"start": 1385.36, "end": 1385.76, "word": " pattern", "probability": 0.79345703125}, {"start": 1385.76, "end": 1386.0, "word": " to", "probability": 0.67578125}, {"start": 1386.0, "end": 1386.28, "word": " do", "probability": 0.525390625}, {"start": 1386.28, "end": 1386.42, "word": " this", "probability": 0.7880859375}, {"start": 1386.42, "end": 1386.64, "word": " thing", "probability": 0.230712890625}, {"start": 1386.64, "end": 1387.44, "word": " So", "probability": 0.4189453125}, {"start": 1387.44, "end": 1387.7, "word": " the", "probability": 0.609375}, {"start": 1387.7, "end": 1387.7, "word": " first", "probability": 0.85546875}, {"start": 1387.7, "end": 1387.96, "word": " thing", "probability": 0.87548828125}, {"start": 1387.96, "end": 1388.08, "word": " that", "probability": 0.31201171875}, {"start": 1388.08, "end": 1388.08, "word": " I", "probability": 0.270751953125}, {"start": 1388.08, "end": 1388.14, "word": " am", "probability": 0.1617431640625}, {"start": 1388.14, "end": 1388.14, "word": " going", "probability": 0.779296875}, {"start": 1388.14, "end": 1388.14, "word": " to", "probability": 0.96875}, {"start": 1388.14, "end": 1388.28, "word": " say", "probability": 0.487548828125}, {"start": 1388.28, "end": 1388.6, "word": " or", "probability": 0.310546875}, {"start": 1388.6, "end": 1388.68, "word": " the", "probability": 0.8017578125}, {"start": 1388.68, "end": 1388.88, "word": " idea", "probability": 0.6572265625}, {"start": 1388.88, "end": 1389.02, "word": " of", "probability": 0.8212890625}, {"start": 1389.02, "end": 1389.32, "word": " command", "probability": 0.67236328125}, {"start": 1389.32, "end": 1389.74, "word": " pattern", "probability": 0.8544921875}, {"start": 1389.74, "end": 1390.08, "word": " is", "probability": 0.8291015625}, {"start": 1390.08, "end": 1390.24, "word": " that", "probability": 0.363037109375}, {"start": 1390.24, "end": 1390.28, "word": " the", "probability": 0.61279296875}, {"start": 1390.28, "end": 1390.52, "word": " method", "probability": 0.89306640625}, {"start": 1390.52, "end": 1390.96, "word": " calls", "probability": 0.4990234375}, {"start": 1390.96, "end": 1392.14, "word": " that", "probability": 0.6728515625}, {"start": 1392.14, "end": 1392.24, "word": " I", "probability": 0.7197265625}, {"start": 1392.24, "end": 1392.64, "word": " have,", "probability": 0.90234375}, {"start": 1392.7, "end": 1392.84, "word": " what", "probability": 0.490966796875}, {"start": 1392.84, "end": 1392.92, "word": " are", "probability": 0.7724609375}, {"start": 1392.92, "end": 1392.96, "word": " the", "probability": 0.705078125}, {"start": 1392.96, "end": 1393.2, "word": " method", "probability": 0.50048828125}, {"start": 1393.2, "end": 1393.5, "word": " calls", "probability": 0.85400390625}, {"start": 1393.5, "end": 1393.6, "word": " that", "probability": 0.73583984375}, {"start": 1393.6, "end": 1393.68, "word": " I", "probability": 0.89990234375}, {"start": 1393.68, "end": 1393.76, "word": " have?", "probability": 0.94091796875}, {"start": 1393.82, "end": 1393.96, "word": " They", "probability": 0.38916015625}, {"start": 1393.96, "end": 1394.04, "word": " are", "probability": 0.908203125}, {"start": 1394.04, "end": 1394.24, "word": " buy,", "probability": 0.78564453125}, {"start": 1394.4, "end": 1394.62, "word": " share", "probability": 0.7841796875}, {"start": 1394.62, "end": 1394.76, "word": " and", "probability": 0.74462890625}, {"start": 1394.76, "end": 1395.04, "word": " open", "probability": 0.94970703125}, {"start": 1395.04, "end": 1395.62, "word": " company,", "probability": 0.84619140625}, {"start": 1396.0, "end": 1396.22, "word": " okay?", "probability": 0.353271484375}, {"start": 1396.66, "end": 1396.9, "word": " These", "probability": 0.372314453125}, {"start": 1396.9, "end": 1397.32, "word": " method", "probability": 0.79345703125}, {"start": 1397.32, "end": 1397.68, "word": " calls", "probability": 0.8759765625}, {"start": 1397.68, "end": 1397.88, "word": " we", "probability": 0.467041015625}, {"start": 1397.88, "end": 1397.96, "word": " are", "probability": 0.309326171875}, {"start": 1397.96, "end": 1398.0, "word": " going", "probability": 0.89599609375}, {"start": 1398.0, "end": 1398.0, "word": " to", "probability": 0.96875}, {"start": 1398.0, "end": 1398.28, "word": " wrap", "probability": 0.7119140625}, {"start": 1398.28, "end": 1398.58, "word": " them", "probability": 0.72900390625}, {"start": 1398.58, "end": 1398.68, "word": " in", "probability": 0.78466796875}, {"start": 1398.68, "end": 1398.78, "word": " an", "probability": 0.445556640625}, {"start": 1398.78, "end": 1399.14, "word": " object,", "probability": 0.97412109375}, {"start": 1400.04, "end": 1400.26, "word": " okay?", "probability": 0.73291015625}, {"start": 1400.34, "end": 1400.48, "word": " With", "probability": 0.478759765625}, {"start": 1400.48, "end": 1400.64, "word": " all", "probability": 0.89453125}, {"start": 1400.64, "end": 1400.74, "word": " their", "probability": 0.72705078125}, {"start": 1400.74, "end": 1401.06, "word": " details", "probability": 0.8642578125}], "temperature": 1.0}, {"id": 65, "seek": 143035, "start": 1402.21, "end": 1430.35, "text": " How does this work? Pay attention with me, how do you execute it? The first step I'm going to do, of course here there are errors because we didn't specify the attributes, okay? So we want to see this guide on how to execute the command pattern. The first thing I say about it, the commands that exist, the commands that exist with me, their types are different, right? It can be a process of selling, a process of buying, a process of opening a company, closing a company, writing, transforming, okay? Different processes, so tell me, since I have different processes, the first step you do, you need to make an interface", "tokens": [1012, 775, 341, 589, 30, 11431, 3202, 365, 385, 11, 577, 360, 291, 14483, 309, 30, 440, 700, 1823, 286, 478, 516, 281, 360, 11, 295, 1164, 510, 456, 366, 13603, 570, 321, 994, 380, 16500, 264, 17212, 11, 1392, 30, 407, 321, 528, 281, 536, 341, 5934, 322, 577, 281, 14483, 264, 5622, 5102, 13, 440, 700, 551, 286, 584, 466, 309, 11, 264, 16901, 300, 2514, 11, 264, 16901, 300, 2514, 365, 385, 11, 641, 3467, 366, 819, 11, 558, 30, 467, 393, 312, 257, 1399, 295, 6511, 11, 257, 1399, 295, 6382, 11, 257, 1399, 295, 5193, 257, 2237, 11, 10377, 257, 2237, 11, 3579, 11, 1145, 48610, 11, 1392, 30, 20825, 7555, 11, 370, 980, 385, 11, 1670, 286, 362, 819, 7555, 11, 264, 700, 1823, 291, 360, 11, 291, 643, 281, 652, 364, 9226], "avg_logprob": -0.44821428103106364, "compression_ratio": 1.9228395061728396, "no_speech_prob": 4.410743713378906e-06, "words": [{"start": 1402.21, "end": 1402.53, "word": " How", "probability": 0.278564453125}, {"start": 1402.53, "end": 1402.61, "word": " does", "probability": 0.2271728515625}, {"start": 1402.61, "end": 1402.75, "word": " this", "probability": 0.50634765625}, {"start": 1402.75, "end": 1403.19, "word": " work?", "probability": 0.58642578125}, {"start": 1403.55, "end": 1403.83, "word": " Pay", "probability": 0.2939453125}, {"start": 1403.83, "end": 1403.91, "word": " attention", "probability": 0.9130859375}, {"start": 1403.91, "end": 1404.03, "word": " with", "probability": 0.2464599609375}, {"start": 1404.03, "end": 1404.21, "word": " me,", "probability": 0.95654296875}, {"start": 1404.25, "end": 1404.43, "word": " how", "probability": 0.75}, {"start": 1404.43, "end": 1404.51, "word": " do", "probability": 0.2354736328125}, {"start": 1404.51, "end": 1404.57, "word": " you", "probability": 0.50537109375}, {"start": 1404.57, "end": 1404.79, "word": " execute", "probability": 0.378173828125}, {"start": 1404.79, "end": 1404.91, "word": " it?", "probability": 0.76123046875}, {"start": 1404.97, "end": 1405.09, "word": " The", "probability": 0.529296875}, {"start": 1405.09, "end": 1405.21, "word": " first", "probability": 0.88525390625}, {"start": 1405.21, "end": 1405.51, "word": " step", "probability": 0.80224609375}, {"start": 1405.51, "end": 1405.69, "word": " I'm", "probability": 0.357177734375}, {"start": 1405.69, "end": 1405.77, "word": " going", "probability": 0.87158203125}, {"start": 1405.77, "end": 1405.77, "word": " to", "probability": 0.96875}, {"start": 1405.77, "end": 1405.95, "word": " do,", "probability": 0.7939453125}, {"start": 1406.11, "end": 1406.27, "word": " of", "probability": 0.712890625}, {"start": 1406.27, "end": 1406.31, "word": " course", "probability": 0.9599609375}, {"start": 1406.31, "end": 1406.47, "word": " here", "probability": 0.254638671875}, {"start": 1406.47, "end": 1406.63, "word": " there", "probability": 0.54931640625}, {"start": 1406.63, "end": 1406.75, "word": " are", "probability": 0.76220703125}, {"start": 1406.75, "end": 1407.07, "word": " errors", "probability": 0.578125}, {"start": 1407.07, "end": 1407.29, "word": " because", "probability": 0.70849609375}, {"start": 1407.29, "end": 1408.35, "word": " we", "probability": 0.499267578125}, {"start": 1408.35, "end": 1408.49, "word": " didn't", "probability": 0.6597900390625}, {"start": 1408.49, "end": 1408.81, "word": " specify", "probability": 0.6240234375}, {"start": 1408.81, "end": 1408.81, "word": " the", "probability": 0.734375}, {"start": 1408.81, "end": 1408.81, "word": " attributes,", "probability": 0.90966796875}, {"start": 1409.53, "end": 1409.77, "word": " okay?", "probability": 0.564453125}, {"start": 1410.73, "end": 1410.95, "word": " So", "probability": 0.79638671875}, {"start": 1410.95, "end": 1411.07, "word": " we", "probability": 0.6552734375}, {"start": 1411.07, "end": 1411.19, "word": " want", "probability": 0.51171875}, {"start": 1411.19, "end": 1411.27, "word": " to", "probability": 0.96875}, {"start": 1411.27, "end": 1411.43, "word": " see", "probability": 0.8662109375}, {"start": 1411.43, "end": 1411.57, "word": " this", "probability": 0.372802734375}, {"start": 1411.57, "end": 1411.71, "word": " guide", "probability": 0.6416015625}, {"start": 1411.71, "end": 1411.87, "word": " on", "probability": 0.269287109375}, {"start": 1411.87, "end": 1411.89, "word": " how", "probability": 0.93798828125}, {"start": 1411.89, "end": 1412.01, "word": " to", "probability": 0.87646484375}, {"start": 1412.01, "end": 1412.25, "word": " execute", "probability": 0.865234375}, {"start": 1412.25, "end": 1412.39, "word": " the", "probability": 0.67822265625}, {"start": 1412.39, "end": 1412.63, "word": " command", "probability": 0.892578125}, {"start": 1412.63, "end": 1412.95, "word": " pattern.", "probability": 0.84765625}, {"start": 1413.13, "end": 1413.29, "word": " The", "probability": 0.70703125}, {"start": 1413.29, "end": 1413.45, "word": " first", "probability": 0.88134765625}, {"start": 1413.45, "end": 1413.67, "word": " thing", "probability": 0.912109375}, {"start": 1413.67, "end": 1413.79, "word": " I", "probability": 0.77880859375}, {"start": 1413.79, "end": 1413.97, "word": " say", "probability": 0.38330078125}, {"start": 1413.97, "end": 1414.19, "word": " about", "probability": 0.51318359375}, {"start": 1414.19, "end": 1414.37, "word": " it,", "probability": 0.876953125}, {"start": 1414.59, "end": 1414.71, "word": " the", "probability": 0.798828125}, {"start": 1414.71, "end": 1415.13, "word": " commands", "probability": 0.8603515625}, {"start": 1415.13, "end": 1415.27, "word": " that", "probability": 0.454833984375}, {"start": 1415.27, "end": 1415.55, "word": " exist,", "probability": 0.278564453125}, {"start": 1415.63, "end": 1415.77, "word": " the", "probability": 0.8427734375}, {"start": 1415.77, "end": 1416.09, "word": " commands", "probability": 0.830078125}, {"start": 1416.09, "end": 1416.25, "word": " that", "probability": 0.85400390625}, {"start": 1416.25, "end": 1416.49, "word": " exist", "probability": 0.64794921875}, {"start": 1416.49, "end": 1416.67, "word": " with", "probability": 0.36328125}, {"start": 1416.67, "end": 1416.83, "word": " me,", "probability": 0.89697265625}, {"start": 1416.83, "end": 1416.85, "word": " their", "probability": 0.25341796875}, {"start": 1416.85, "end": 1417.03, "word": " types", "probability": 0.71826171875}, {"start": 1417.03, "end": 1417.17, "word": " are", "probability": 0.9091796875}, {"start": 1417.17, "end": 1417.55, "word": " different,", "probability": 0.892578125}, {"start": 1418.13, "end": 1418.31, "word": " right?", "probability": 0.81396484375}, {"start": 1418.39, "end": 1418.43, "word": " It", "probability": 0.79736328125}, {"start": 1418.43, "end": 1418.55, "word": " can", "probability": 0.439453125}, {"start": 1418.55, "end": 1418.77, "word": " be", "probability": 0.9580078125}, {"start": 1418.77, "end": 1418.85, "word": " a", "probability": 0.57958984375}, {"start": 1418.85, "end": 1419.05, "word": " process", "probability": 0.227783203125}, {"start": 1419.05, "end": 1419.17, "word": " of", "probability": 0.955078125}, {"start": 1419.17, "end": 1419.39, "word": " selling,", "probability": 0.56884765625}, {"start": 1419.55, "end": 1419.61, "word": " a", "probability": 0.62939453125}, {"start": 1419.61, "end": 1419.79, "word": " process", "probability": 0.77685546875}, {"start": 1419.79, "end": 1419.91, "word": " of", "probability": 0.96875}, {"start": 1419.91, "end": 1420.11, "word": " buying,", "probability": 0.64794921875}, {"start": 1420.35, "end": 1420.41, "word": " a", "probability": 0.81591796875}, {"start": 1420.41, "end": 1420.51, "word": " process", "probability": 0.91064453125}, {"start": 1420.51, "end": 1420.63, "word": " of", "probability": 0.9609375}, {"start": 1420.63, "end": 1420.81, "word": " opening", "probability": 0.77880859375}, {"start": 1420.81, "end": 1420.95, "word": " a", "probability": 0.5693359375}, {"start": 1420.95, "end": 1421.19, "word": " company,", "probability": 0.921875}, {"start": 1421.29, "end": 1421.49, "word": " closing", "probability": 0.63818359375}, {"start": 1421.49, "end": 1421.73, "word": " a", "probability": 0.951171875}, {"start": 1421.73, "end": 1421.87, "word": " company,", "probability": 0.94140625}, {"start": 1422.05, "end": 1422.31, "word": " writing,", "probability": 0.3388671875}, {"start": 1422.93, "end": 1423.41, "word": " transforming,", "probability": 0.27655029296875}, {"start": 1423.93, "end": 1424.11, "word": " okay?", "probability": 0.70068359375}, {"start": 1424.83, "end": 1424.83, "word": " Different", "probability": 0.630859375}, {"start": 1424.83, "end": 1425.51, "word": " processes,", "probability": 0.6015625}, {"start": 1425.73, "end": 1425.83, "word": " so", "probability": 0.93115234375}, {"start": 1425.83, "end": 1426.03, "word": " tell", "probability": 0.47412109375}, {"start": 1426.03, "end": 1426.21, "word": " me,", "probability": 0.96826171875}, {"start": 1426.21, "end": 1426.35, "word": " since", "probability": 0.755859375}, {"start": 1426.35, "end": 1426.61, "word": " I", "probability": 0.9580078125}, {"start": 1426.61, "end": 1426.79, "word": " have", "probability": 0.94384765625}, {"start": 1426.79, "end": 1426.83, "word": " different", "probability": 0.85986328125}, {"start": 1426.83, "end": 1427.45, "word": " processes,", "probability": 0.89208984375}, {"start": 1427.59, "end": 1427.69, "word": " the", "probability": 0.87451171875}, {"start": 1427.69, "end": 1427.83, "word": " first", "probability": 0.89111328125}, {"start": 1427.83, "end": 1428.07, "word": " step", "probability": 0.90869140625}, {"start": 1428.07, "end": 1428.25, "word": " you", "probability": 0.7900390625}, {"start": 1428.25, "end": 1428.51, "word": " do,", "probability": 0.74462890625}, {"start": 1429.01, "end": 1429.25, "word": " you", "probability": 0.92822265625}, {"start": 1429.25, "end": 1429.37, "word": " need", "probability": 0.454833984375}, {"start": 1429.37, "end": 1429.49, "word": " to", "probability": 0.97265625}, {"start": 1429.49, "end": 1429.63, "word": " make", "probability": 0.65625}, {"start": 1429.63, "end": 1429.77, "word": " an", "probability": 0.8935546875}, {"start": 1429.77, "end": 1430.35, "word": " interface", "probability": 0.8818359375}], "temperature": 1.0}, {"id": 66, "seek": 145591, "start": 1431.01, "end": 1455.91, "text": "unite all these processes what I want to call it for example I want to call it for example stock command this will represent for me as a programmer any financing process in the stock market then inside the interface I will make a method called public execute what does it mean? execute the command for me", "tokens": [409, 642, 439, 613, 7555, 437, 286, 528, 281, 818, 309, 337, 1365, 286, 528, 281, 818, 309, 337, 1365, 4127, 5622, 341, 486, 2906, 337, 385, 382, 257, 32116, 604, 22286, 1399, 294, 264, 4127, 2142, 550, 1854, 264, 9226, 286, 486, 652, 257, 3170, 1219, 1908, 14483, 437, 775, 309, 914, 30, 14483, 264, 5622, 337, 385], "avg_logprob": -0.4973958561817805, "compression_ratio": 1.7777777777777777, "no_speech_prob": 1.8715858459472656e-05, "words": [{"start": 1431.01, "end": 1431.43, "word": "unite", "probability": 0.416015625}, {"start": 1431.43, "end": 1431.59, "word": " all", "probability": 0.60791015625}, {"start": 1431.59, "end": 1432.19, "word": " these", "probability": 0.513671875}, {"start": 1432.19, "end": 1432.19, "word": " processes", "probability": 0.4765625}, {"start": 1432.19, "end": 1433.33, "word": " what", "probability": 0.1422119140625}, {"start": 1433.33, "end": 1433.81, "word": " I", "probability": 0.2313232421875}, {"start": 1433.81, "end": 1433.91, "word": " want", "probability": 0.3291015625}, {"start": 1433.91, "end": 1434.01, "word": " to", "probability": 0.96240234375}, {"start": 1434.01, "end": 1434.19, "word": " call", "probability": 0.57080078125}, {"start": 1434.19, "end": 1434.31, "word": " it", "probability": 0.63232421875}, {"start": 1434.31, "end": 1434.41, "word": " for", "probability": 0.435546875}, {"start": 1434.41, "end": 1434.63, "word": " example", "probability": 0.93212890625}, {"start": 1434.63, "end": 1435.15, "word": " I", "probability": 0.270263671875}, {"start": 1435.15, "end": 1435.29, "word": " want", "probability": 0.8330078125}, {"start": 1435.29, "end": 1435.41, "word": " to", "probability": 0.9560546875}, {"start": 1435.41, "end": 1435.61, "word": " call", "probability": 0.80078125}, {"start": 1435.61, "end": 1435.75, "word": " it", "probability": 0.8671875}, {"start": 1435.75, "end": 1435.85, "word": " for", "probability": 0.283203125}, {"start": 1435.85, "end": 1435.99, "word": " example", "probability": 0.93994140625}, {"start": 1435.99, "end": 1436.51, "word": " stock", "probability": 0.408203125}, {"start": 1436.51, "end": 1437.43, "word": " command", "probability": 0.806640625}, {"start": 1437.43, "end": 1441.07, "word": " this", "probability": 0.2476806640625}, {"start": 1441.07, "end": 1441.85, "word": " will", "probability": 0.615234375}, {"start": 1441.85, "end": 1442.43, "word": " represent", "probability": 0.6005859375}, {"start": 1442.43, "end": 1442.85, "word": " for", "probability": 0.62255859375}, {"start": 1442.85, "end": 1443.33, "word": " me", "probability": 0.9384765625}, {"start": 1443.33, "end": 1443.67, "word": " as", "probability": 0.89697265625}, {"start": 1443.67, "end": 1443.79, "word": " a", "probability": 0.81298828125}, {"start": 1443.79, "end": 1444.01, "word": " programmer", "probability": 0.94921875}, {"start": 1444.01, "end": 1444.89, "word": " any", "probability": 0.69189453125}, {"start": 1444.89, "end": 1445.61, "word": " financing", "probability": 0.126708984375}, {"start": 1445.61, "end": 1445.73, "word": " process", "probability": 0.75830078125}, {"start": 1445.73, "end": 1446.77, "word": " in", "probability": 0.80810546875}, {"start": 1446.77, "end": 1446.83, "word": " the", "probability": 0.85595703125}, {"start": 1446.83, "end": 1447.07, "word": " stock", "probability": 0.7705078125}, {"start": 1447.07, "end": 1447.33, "word": " market", "probability": 0.6611328125}, {"start": 1447.33, "end": 1448.29, "word": " then", "probability": 0.60498046875}, {"start": 1448.29, "end": 1448.73, "word": " inside", "probability": 0.681640625}, {"start": 1448.73, "end": 1448.91, "word": " the", "probability": 0.8671875}, {"start": 1448.91, "end": 1449.39, "word": " interface", "probability": 0.876953125}, {"start": 1449.39, "end": 1449.63, "word": " I", "probability": 0.8720703125}, {"start": 1449.63, "end": 1449.71, "word": " will", "probability": 0.66455078125}, {"start": 1449.71, "end": 1449.89, "word": " make", "probability": 0.419677734375}, {"start": 1449.89, "end": 1449.99, "word": " a", "probability": 0.8515625}, {"start": 1449.99, "end": 1450.31, "word": " method", "probability": 0.9541015625}, {"start": 1450.31, "end": 1450.57, "word": " called", "probability": 0.73779296875}, {"start": 1450.57, "end": 1450.95, "word": " public", "probability": 0.89990234375}, {"start": 1450.95, "end": 1452.07, "word": " execute", "probability": 0.9306640625}, {"start": 1452.07, "end": 1452.59, "word": " what", "probability": 0.65283203125}, {"start": 1452.59, "end": 1452.77, "word": " does", "probability": 0.7919921875}, {"start": 1452.77, "end": 1453.37, "word": " it", "probability": 0.6103515625}, {"start": 1453.37, "end": 1453.37, "word": " mean?", "probability": 0.9638671875}, {"start": 1453.65, "end": 1454.23, "word": " execute", "probability": 0.3115234375}, {"start": 1454.23, "end": 1455.55, "word": " the", "probability": 0.61669921875}, {"start": 1455.55, "end": 1455.91, "word": " command", "probability": 0.90087890625}, {"start": 1455.91, "end": 1455.91, "word": " for", "probability": 0.80322265625}, {"start": 1455.91, "end": 1455.91, "word": " me", "probability": 0.9404296875}], "temperature": 1.0}, {"id": 67, "seek": 148539, "start": 1456.55, "end": 1485.39, "text": "Of course, this is an interface, I have to make subclasses from it Now, the stock market here, how many operations do I do in it? Two methods, you have to make a class for each method So here I see what I have to do, every method call, I turn it into what? Into a whole class, okay? Why? So that I can create from this class an object and store it How? As follows, I go and make a new class, okay? I call it, for example, buy", "tokens": [23919, 1164, 11, 341, 307, 364, 9226, 11, 286, 362, 281, 652, 1422, 11665, 279, 490, 309, 823, 11, 264, 4127, 2142, 510, 11, 577, 867, 7705, 360, 286, 360, 294, 309, 30, 4453, 7150, 11, 291, 362, 281, 652, 257, 1508, 337, 1184, 3170, 407, 510, 286, 536, 437, 286, 362, 281, 360, 11, 633, 3170, 818, 11, 286, 1261, 309, 666, 437, 30, 23373, 257, 1379, 1508, 11, 1392, 30, 1545, 30, 407, 300, 286, 393, 1884, 490, 341, 1508, 364, 2657, 293, 3531, 309, 1012, 30, 1018, 10002, 11, 286, 352, 293, 652, 257, 777, 1508, 11, 1392, 30, 286, 818, 309, 11, 337, 1365, 11, 2256], "avg_logprob": -0.4380630587672328, "compression_ratio": 1.6932270916334662, "no_speech_prob": 2.1457672119140625e-06, "words": [{"start": 1456.55, "end": 1456.87, "word": "Of", "probability": 0.1796875}, {"start": 1456.87, "end": 1456.89, "word": " course,", "probability": 0.8876953125}, {"start": 1456.97, "end": 1457.13, "word": " this", "probability": 0.73046875}, {"start": 1457.13, "end": 1457.13, "word": " is", "probability": 0.84912109375}, {"start": 1457.13, "end": 1457.27, "word": " an", "probability": 0.607421875}, {"start": 1457.27, "end": 1457.75, "word": " interface,", "probability": 0.88330078125}, {"start": 1458.45, "end": 1458.65, "word": " I", "probability": 0.654296875}, {"start": 1458.65, "end": 1458.85, "word": " have", "probability": 0.3447265625}, {"start": 1458.85, "end": 1458.95, "word": " to", "probability": 0.970703125}, {"start": 1458.95, "end": 1459.15, "word": " make", "probability": 0.63037109375}, {"start": 1459.15, "end": 1460.79, "word": " subclasses", "probability": 0.6521809895833334}, {"start": 1460.79, "end": 1460.79, "word": " from", "probability": 0.45654296875}, {"start": 1460.79, "end": 1460.79, "word": " it", "probability": 0.8994140625}, {"start": 1460.79, "end": 1461.53, "word": " Now,", "probability": 0.57958984375}, {"start": 1461.63, "end": 1461.77, "word": " the", "probability": 0.40234375}, {"start": 1461.77, "end": 1462.01, "word": " stock", "probability": 0.7685546875}, {"start": 1462.01, "end": 1462.41, "word": " market", "probability": 0.880859375}, {"start": 1462.41, "end": 1462.61, "word": " here,", "probability": 0.69873046875}, {"start": 1462.63, "end": 1462.83, "word": " how", "probability": 0.861328125}, {"start": 1462.83, "end": 1462.91, "word": " many", "probability": 0.8896484375}, {"start": 1462.91, "end": 1463.19, "word": " operations", "probability": 0.576171875}, {"start": 1463.19, "end": 1463.37, "word": " do", "probability": 0.26953125}, {"start": 1463.37, "end": 1463.37, "word": " I", "probability": 0.978515625}, {"start": 1463.37, "end": 1463.59, "word": " do", "probability": 0.5673828125}, {"start": 1463.59, "end": 1463.79, "word": " in", "probability": 0.666015625}, {"start": 1463.79, "end": 1464.03, "word": " it?", "probability": 0.91455078125}, {"start": 1464.73, "end": 1465.15, "word": " Two", "probability": 0.4892578125}, {"start": 1465.15, "end": 1465.59, "word": " methods,", "probability": 0.9013671875}, {"start": 1465.79, "end": 1465.97, "word": " you", "probability": 0.71044921875}, {"start": 1465.97, "end": 1466.07, "word": " have", "probability": 0.6669921875}, {"start": 1466.07, "end": 1466.23, "word": " to", "probability": 0.97119140625}, {"start": 1466.23, "end": 1466.49, "word": " make", "probability": 0.52783203125}, {"start": 1466.49, "end": 1466.57, "word": " a", "probability": 0.43359375}, {"start": 1466.57, "end": 1466.57, "word": " class", "probability": 0.95654296875}, {"start": 1466.57, "end": 1466.57, "word": " for", "probability": 0.8798828125}, {"start": 1466.57, "end": 1466.87, "word": " each", "probability": 0.81396484375}, {"start": 1466.87, "end": 1467.73, "word": " method", "probability": 0.9140625}, {"start": 1467.73, "end": 1469.01, "word": " So", "probability": 0.280029296875}, {"start": 1469.01, "end": 1469.21, "word": " here", "probability": 0.263916015625}, {"start": 1469.21, "end": 1469.43, "word": " I", "probability": 0.245361328125}, {"start": 1469.43, "end": 1469.65, "word": " see", "probability": 0.60400390625}, {"start": 1469.65, "end": 1469.79, "word": " what", "probability": 0.80224609375}, {"start": 1469.79, "end": 1469.91, "word": " I", "probability": 0.87890625}, {"start": 1469.91, "end": 1469.93, "word": " have", "probability": 0.62646484375}, {"start": 1469.93, "end": 1469.97, "word": " to", "probability": 0.9716796875}, {"start": 1469.97, "end": 1470.11, "word": " do,", "probability": 0.951171875}, {"start": 1470.19, "end": 1470.41, "word": " every", "probability": 0.25439453125}, {"start": 1470.41, "end": 1470.77, "word": " method", "probability": 0.72119140625}, {"start": 1470.77, "end": 1471.17, "word": " call,", "probability": 0.413330078125}, {"start": 1472.05, "end": 1472.19, "word": " I", "probability": 0.84375}, {"start": 1472.19, "end": 1472.43, "word": " turn", "probability": 0.572265625}, {"start": 1472.43, "end": 1472.55, "word": " it", "probability": 0.71533203125}, {"start": 1472.55, "end": 1472.65, "word": " into", "probability": 0.677734375}, {"start": 1472.65, "end": 1472.89, "word": " what?", "probability": 0.52490234375}, {"start": 1473.49, "end": 1473.73, "word": " Into", "probability": 0.370361328125}, {"start": 1473.73, "end": 1473.77, "word": " a", "probability": 0.86669921875}, {"start": 1473.77, "end": 1473.77, "word": " whole", "probability": 0.3798828125}, {"start": 1473.77, "end": 1474.15, "word": " class,", "probability": 0.96044921875}, {"start": 1474.85, "end": 1475.09, "word": " okay?", "probability": 0.5234375}, {"start": 1475.43, "end": 1475.77, "word": " Why?", "probability": 0.794921875}, {"start": 1475.83, "end": 1475.99, "word": " So", "probability": 0.5693359375}, {"start": 1475.99, "end": 1476.09, "word": " that", "probability": 0.70263671875}, {"start": 1476.09, "end": 1476.25, "word": " I", "probability": 0.99072265625}, {"start": 1476.25, "end": 1476.49, "word": " can", "probability": 0.9287109375}, {"start": 1476.49, "end": 1476.85, "word": " create", "probability": 0.55517578125}, {"start": 1476.85, "end": 1476.97, "word": " from", "probability": 0.4033203125}, {"start": 1476.97, "end": 1477.15, "word": " this", "probability": 0.85107421875}, {"start": 1477.15, "end": 1477.47, "word": " class", "probability": 0.94921875}, {"start": 1477.47, "end": 1477.83, "word": " an", "probability": 0.587890625}, {"start": 1477.83, "end": 1478.07, "word": " object", "probability": 0.96923828125}, {"start": 1478.07, "end": 1478.27, "word": " and", "probability": 0.92578125}, {"start": 1478.27, "end": 1478.55, "word": " store", "probability": 0.81396484375}, {"start": 1478.55, "end": 1478.89, "word": " it", "probability": 0.93994140625}, {"start": 1478.89, "end": 1479.79, "word": " How?", "probability": 0.7568359375}, {"start": 1479.91, "end": 1480.05, "word": " As", "probability": 0.41162109375}, {"start": 1480.05, "end": 1480.33, "word": " follows,", "probability": 0.814453125}, {"start": 1480.65, "end": 1480.87, "word": " I", "probability": 0.990234375}, {"start": 1480.87, "end": 1480.99, "word": " go", "probability": 0.673828125}, {"start": 1480.99, "end": 1481.09, "word": " and", "probability": 0.59326171875}, {"start": 1481.09, "end": 1481.31, "word": " make", "probability": 0.59814453125}, {"start": 1481.31, "end": 1481.55, "word": " a", "probability": 0.9775390625}, {"start": 1481.55, "end": 1481.55, "word": " new", "probability": 0.91064453125}, {"start": 1481.55, "end": 1482.29, "word": " class,", "probability": 0.96533203125}, {"start": 1483.55, "end": 1483.81, "word": " okay?", "probability": 0.78125}, {"start": 1483.87, "end": 1484.01, "word": " I", "probability": 0.77294921875}, {"start": 1484.01, "end": 1484.35, "word": " call", "probability": 0.342529296875}, {"start": 1484.35, "end": 1484.55, "word": " it,", "probability": 0.93896484375}, {"start": 1484.57, "end": 1484.73, "word": " for", "probability": 0.94677734375}, {"start": 1484.73, "end": 1484.85, "word": " example,", "probability": 0.9619140625}, {"start": 1484.97, "end": 1485.39, "word": " buy", "probability": 0.326904296875}], "temperature": 1.0}, {"id": 68, "seek": 150658, "start": 1486.72, "end": 1506.58, "text": "shares command تمام؟ و هذا implements stock command احنا ممكن نسهلها نسميها ايش buy shares بس تمام؟ و هذا نغير اسمه بدل ان نضلاش نكرر كلمة command", "tokens": [2716, 8643, 5622, 46811, 10943, 22807, 4032, 23758, 704, 17988, 4127, 5622, 1975, 5016, 8315, 3714, 43020, 8717, 3794, 3224, 1211, 11296, 8717, 38251, 1829, 11296, 1975, 1829, 8592, 2256, 12182, 4724, 3794, 46811, 10943, 22807, 4032, 23758, 8717, 17082, 13546, 24525, 2304, 3224, 47525, 1211, 16472, 8717, 11242, 1211, 33599, 8717, 37983, 2288, 9122, 19528, 3660, 5622], "avg_logprob": -0.23808262711864406, "compression_ratio": 1.4333333333333333, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 1486.72, "end": 1487.48, "word": "shares", "probability": 0.44970703125}, {"start": 1487.48, "end": 1488.04, "word": " command", "probability": 0.82763671875}, {"start": 1488.04, "end": 1491.08, "word": " تمام؟", "probability": 0.6530354817708334}, {"start": 1491.08, "end": 1491.4, "word": " و", "probability": 0.468505859375}, {"start": 1491.4, "end": 1491.66, "word": " هذا", "probability": 0.54833984375}, {"start": 1491.66, "end": 1492.62, "word": " implements", "probability": 0.7003173828125}, {"start": 1492.62, "end": 1494.62, "word": " stock", "probability": 0.83984375}, {"start": 1494.62, "end": 1496.72, "word": " command", "probability": 0.9169921875}, {"start": 1496.72, "end": 1497.36, "word": " احنا", "probability": 0.8888346354166666}, {"start": 1497.36, "end": 1497.72, "word": " ممكن", "probability": 0.99462890625}, {"start": 1497.72, "end": 1498.38, "word": " نسهلها", "probability": 0.9458984375}, {"start": 1498.38, "end": 1498.88, "word": " نسميها", "probability": 0.94384765625}, {"start": 1498.88, "end": 1499.14, "word": " ايش", "probability": 0.7698567708333334}, {"start": 1499.14, "end": 1499.4, "word": " buy", "probability": 0.488525390625}, {"start": 1499.4, "end": 1499.86, "word": " shares", "probability": 0.89404296875}, {"start": 1499.86, "end": 1500.64, "word": " بس", "probability": 0.962158203125}, {"start": 1500.64, "end": 1502.24, "word": " تمام؟", "probability": 0.9607747395833334}, {"start": 1502.24, "end": 1502.46, "word": " و", "probability": 0.96728515625}, {"start": 1502.46, "end": 1502.68, "word": " هذا", "probability": 0.81005859375}, {"start": 1502.68, "end": 1503.24, "word": " نغير", "probability": 0.9588216145833334}, {"start": 1503.24, "end": 1503.64, "word": " اسمه", "probability": 0.9514973958333334}, {"start": 1503.64, "end": 1503.88, "word": " بدل", "probability": 0.894287109375}, {"start": 1503.88, "end": 1503.96, "word": " ان", "probability": 0.65771484375}, {"start": 1503.96, "end": 1505.4, "word": " نضلاش", "probability": 0.4727783203125}, {"start": 1505.4, "end": 1505.74, "word": " نكرر", "probability": 0.97900390625}, {"start": 1505.74, "end": 1506.08, "word": " كلمة", "probability": 0.9265950520833334}, {"start": 1506.08, "end": 1506.58, "word": " command", "probability": 0.95361328125}], "temperature": 1.0}, {"id": 69, "seek": 153967, "start": 1515.51, "end": 1539.67, "text": "طيب بلاش تمام وهي جابن ال method execute", "tokens": [9566, 1829, 3555, 4724, 1211, 33599, 46811, 10943, 37037, 1829, 10874, 16758, 1863, 2423, 3170, 14483], "avg_logprob": -0.49862132352941174, "compression_ratio": 0.8695652173913043, "no_speech_prob": 0.0, "words": [{"start": 1515.51, "end": 1515.85, "word": "طيب", "probability": 0.4623209635416667}, {"start": 1515.85, "end": 1516.25, "word": " بلاش", "probability": 0.7777506510416666}, {"start": 1516.25, "end": 1538.25, "word": " تمام", "probability": 0.882568359375}, {"start": 1538.25, "end": 1538.49, "word": " وهي", "probability": 0.565185546875}, {"start": 1538.49, "end": 1538.77, "word": " جابن", "probability": 0.5256754557291666}, {"start": 1538.77, "end": 1538.83, "word": " ال", "probability": 0.8427734375}, {"start": 1538.83, "end": 1539.11, "word": " method", "probability": 0.97119140625}, {"start": 1539.11, "end": 1539.67, "word": " execute", "probability": 0.90478515625}], "temperature": 1.0}, {"id": 70, "seek": 155487, "start": 1543.55, "end": 1554.87, "text": "Okay, now of course the buy shares actually to work they need what? first they need the necessary information to make the purchase", "tokens": [8297, 11, 586, 295, 1164, 264, 2256, 12182, 767, 281, 589, 436, 643, 437, 30, 700, 436, 643, 264, 4818, 1589, 281, 652, 264, 8110], "avg_logprob": -0.6917067445241488, "compression_ratio": 1.2621359223300972, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1543.55, "end": 1543.91, "word": "Okay,", "probability": 0.15869140625}, {"start": 1544.17, "end": 1544.35, "word": " now", "probability": 0.650390625}, {"start": 1544.35, "end": 1544.53, "word": " of", "probability": 0.3154296875}, {"start": 1544.53, "end": 1544.75, "word": " course", "probability": 0.9345703125}, {"start": 1544.75, "end": 1545.17, "word": " the", "probability": 0.240478515625}, {"start": 1545.17, "end": 1545.39, "word": " buy", "probability": 0.61865234375}, {"start": 1545.39, "end": 1545.83, "word": " shares", "probability": 0.8984375}, {"start": 1545.83, "end": 1547.61, "word": " actually", "probability": 0.2489013671875}, {"start": 1547.61, "end": 1547.87, "word": " to", "probability": 0.46435546875}, {"start": 1547.87, "end": 1548.37, "word": " work", "probability": 0.76953125}, {"start": 1548.37, "end": 1550.63, "word": " they", "probability": 0.29638671875}, {"start": 1550.63, "end": 1550.89, "word": " need", "probability": 0.6171875}, {"start": 1550.89, "end": 1552.01, "word": " what?", "probability": 0.402587890625}, {"start": 1552.15, "end": 1552.41, "word": " first", "probability": 0.28759765625}, {"start": 1552.41, "end": 1552.75, "word": " they", "probability": 0.333984375}, {"start": 1552.75, "end": 1553.05, "word": " need", "probability": 0.92578125}, {"start": 1553.05, "end": 1553.33, "word": " the", "probability": 0.65380859375}, {"start": 1553.33, "end": 1554.09, "word": " necessary", "probability": 0.413818359375}, {"start": 1554.09, "end": 1554.09, "word": " information", "probability": 0.79638671875}, {"start": 1554.09, "end": 1554.31, "word": " to", "probability": 0.34765625}, {"start": 1554.31, "end": 1554.51, "word": " make", "probability": 0.53955078125}, {"start": 1554.51, "end": 1554.69, "word": " the", "probability": 0.6162109375}, {"start": 1554.69, "end": 1554.87, "word": " purchase", "probability": 0.86083984375}], "temperature": 1.0}, {"id": 71, "seek": 157553, "start": 1556.07, "end": 1575.53, "text": "Also, it's not him who's going to implement it, it's going to implement who? The stock market. I have a class here called stock market. We agreed that it's the one that has all my code that implements the process. So it's really not him who's going to implement it, he's going to claim, he's going to use this stock market. So now what do we have to do?", "tokens": [9171, 539, 11, 309, 311, 406, 796, 567, 311, 516, 281, 4445, 309, 11, 309, 311, 516, 281, 4445, 567, 30, 440, 4127, 2142, 13, 286, 362, 257, 1508, 510, 1219, 4127, 2142, 13, 492, 9166, 300, 309, 311, 264, 472, 300, 575, 439, 452, 3089, 300, 704, 17988, 264, 1399, 13, 407, 309, 311, 534, 406, 796, 567, 311, 516, 281, 4445, 309, 11, 415, 311, 516, 281, 3932, 11, 415, 311, 516, 281, 764, 341, 4127, 2142, 13, 407, 586, 437, 360, 321, 362, 281, 360, 30], "avg_logprob": -0.4465277744664086, "compression_ratio": 2.040462427745665, "no_speech_prob": 7.68899917602539e-05, "words": [{"start": 1556.07, "end": 1556.53, "word": "Also,", "probability": 0.4942779541015625}, {"start": 1557.29, "end": 1557.45, "word": " it's", "probability": 0.3992919921875}, {"start": 1557.45, "end": 1557.47, "word": " not", "probability": 0.919921875}, {"start": 1557.47, "end": 1557.67, "word": " him", "probability": 0.51416015625}, {"start": 1557.67, "end": 1557.89, "word": " who's", "probability": 0.427978515625}, {"start": 1557.89, "end": 1557.93, "word": " going", "probability": 0.6640625}, {"start": 1557.93, "end": 1557.99, "word": " to", "probability": 0.962890625}, {"start": 1557.99, "end": 1558.35, "word": " implement", "probability": 0.40869140625}, {"start": 1558.35, "end": 1558.59, "word": " it,", "probability": 0.49560546875}, {"start": 1558.77, "end": 1558.95, "word": " it's", "probability": 0.6453857421875}, {"start": 1558.95, "end": 1558.95, "word": " going", "probability": 0.292236328125}, {"start": 1558.95, "end": 1559.03, "word": " to", "probability": 0.96484375}, {"start": 1559.03, "end": 1559.37, "word": " implement", "probability": 0.63818359375}, {"start": 1559.37, "end": 1559.61, "word": " who?", "probability": 0.333984375}, {"start": 1560.17, "end": 1560.33, "word": " The", "probability": 0.6630859375}, {"start": 1560.33, "end": 1560.55, "word": " stock", "probability": 0.6728515625}, {"start": 1560.55, "end": 1560.93, "word": " market.", "probability": 0.90625}, {"start": 1561.03, "end": 1561.25, "word": " I", "probability": 0.3896484375}, {"start": 1561.25, "end": 1561.41, "word": " have", "probability": 0.82568359375}, {"start": 1561.41, "end": 1561.95, "word": " a", "probability": 0.8056640625}, {"start": 1561.95, "end": 1562.31, "word": " class", "probability": 0.96923828125}, {"start": 1562.31, "end": 1562.33, "word": " here", "probability": 0.41455078125}, {"start": 1562.33, "end": 1562.69, "word": " called", "probability": 0.5888671875}, {"start": 1562.69, "end": 1563.47, "word": " stock", "probability": 0.449951171875}, {"start": 1563.47, "end": 1563.93, "word": " market.", "probability": 0.87646484375}, {"start": 1564.07, "end": 1564.09, "word": " We", "probability": 0.63916015625}, {"start": 1564.09, "end": 1564.39, "word": " agreed", "probability": 0.8095703125}, {"start": 1564.39, "end": 1564.61, "word": " that", "probability": 0.85107421875}, {"start": 1564.61, "end": 1565.01, "word": " it's", "probability": 0.650390625}, {"start": 1565.01, "end": 1565.31, "word": " the", "probability": 0.50146484375}, {"start": 1565.31, "end": 1565.31, "word": " one", "probability": 0.7021484375}, {"start": 1565.31, "end": 1565.33, "word": " that", "probability": 0.486572265625}, {"start": 1565.33, "end": 1565.59, "word": " has", "probability": 0.662109375}, {"start": 1565.59, "end": 1565.91, "word": " all", "probability": 0.87060546875}, {"start": 1565.91, "end": 1566.01, "word": " my", "probability": 0.478515625}, {"start": 1566.01, "end": 1566.43, "word": " code", "probability": 0.80029296875}, {"start": 1566.43, "end": 1567.21, "word": " that", "probability": 0.67724609375}, {"start": 1567.21, "end": 1567.53, "word": " implements", "probability": 0.655029296875}, {"start": 1567.53, "end": 1567.65, "word": " the", "probability": 0.6650390625}, {"start": 1567.65, "end": 1567.97, "word": " process.", "probability": 0.61474609375}, {"start": 1568.59, "end": 1568.67, "word": " So", "probability": 0.767578125}, {"start": 1568.67, "end": 1568.91, "word": " it's", "probability": 0.6903076171875}, {"start": 1568.91, "end": 1569.19, "word": " really", "probability": 0.439208984375}, {"start": 1569.19, "end": 1569.49, "word": " not", "probability": 0.904296875}, {"start": 1569.49, "end": 1569.69, "word": " him", "probability": 0.77978515625}, {"start": 1569.69, "end": 1569.89, "word": " who's", "probability": 0.756591796875}, {"start": 1569.89, "end": 1569.91, "word": " going", "probability": 0.92626953125}, {"start": 1569.91, "end": 1569.99, "word": " to", "probability": 0.9677734375}, {"start": 1569.99, "end": 1570.19, "word": " implement", "probability": 0.7861328125}, {"start": 1570.19, "end": 1570.29, "word": " it,", "probability": 0.82568359375}, {"start": 1570.35, "end": 1570.59, "word": " he's", "probability": 0.6259765625}, {"start": 1570.59, "end": 1570.65, "word": " going", "probability": 0.9267578125}, {"start": 1570.65, "end": 1570.81, "word": " to", "probability": 0.96484375}, {"start": 1570.81, "end": 1571.11, "word": " claim,", "probability": 0.42333984375}, {"start": 1571.73, "end": 1572.05, "word": " he's", "probability": 0.874267578125}, {"start": 1572.05, "end": 1572.05, "word": " going", "probability": 0.9384765625}, {"start": 1572.05, "end": 1572.05, "word": " to", "probability": 0.9677734375}, {"start": 1572.05, "end": 1572.41, "word": " use", "probability": 0.8759765625}, {"start": 1572.41, "end": 1572.57, "word": " this", "probability": 0.83642578125}, {"start": 1572.57, "end": 1572.79, "word": " stock", "probability": 0.87841796875}, {"start": 1572.79, "end": 1573.19, "word": " market.", "probability": 0.8916015625}, {"start": 1574.03, "end": 1574.47, "word": " So", "probability": 0.77783203125}, {"start": 1574.47, "end": 1574.89, "word": " now", "probability": 0.72802734375}, {"start": 1574.89, "end": 1575.07, "word": " what", "probability": 0.68994140625}, {"start": 1575.07, "end": 1575.19, "word": " do", "probability": 0.6435546875}, {"start": 1575.19, "end": 1575.27, "word": " we", "probability": 0.9560546875}, {"start": 1575.27, "end": 1575.27, "word": " have", "probability": 0.58544921875}, {"start": 1575.27, "end": 1575.29, "word": " to", "probability": 0.9716796875}, {"start": 1575.29, "end": 1575.53, "word": " do?", "probability": 0.96484375}], "temperature": 1.0}, {"id": 72, "seek": 160273, "start": 1577.25, "end": 1602.73, "text": " What are the attributes necessary for buying? Buyer ID, seller ID, tax, number of shares and price of shares, okay? So I come here in buy shares, all this information necessary for buying, I put it as attributes, okay? Which is for example private string seller ID and I have buyer", "tokens": [708, 366, 264, 951, 81, 897, 1819, 4818, 337, 6382, 30, 4078, 7224, 7348, 11, 23600, 7348, 11, 3366, 11, 1230, 295, 12182, 293, 3218, 295, 12182, 11, 1392, 30, 407, 286, 808, 510, 294, 2256, 12182, 11, 439, 341, 1589, 4818, 337, 6382, 11, 286, 829, 309, 382, 17212, 11, 1392, 30, 3013, 307, 337, 1365, 4551, 6798, 23600, 7348, 293, 286, 362, 24645], "avg_logprob": -0.5468749729069796, "compression_ratio": 1.630057803468208, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1577.25, "end": 1577.53, "word": " What", "probability": 0.379638671875}, {"start": 1577.53, "end": 1577.59, "word": " are", "probability": 0.7587890625}, {"start": 1577.59, "end": 1577.69, "word": " the", "probability": 0.8330078125}, {"start": 1577.69, "end": 1578.11, "word": " attributes", "probability": 0.6341552734375}, {"start": 1578.11, "end": 1578.45, "word": " necessary", "probability": 0.2454833984375}, {"start": 1578.45, "end": 1578.59, "word": " for", "probability": 0.66357421875}, {"start": 1578.59, "end": 1578.95, "word": " buying?", "probability": 0.5185546875}, {"start": 1580.41, "end": 1580.83, "word": " Buyer", "probability": 0.60565185546875}, {"start": 1580.83, "end": 1581.21, "word": " ID,", "probability": 0.7138671875}, {"start": 1581.91, "end": 1582.13, "word": " seller", "probability": 0.35595703125}, {"start": 1582.13, "end": 1582.61, "word": " ID,", "probability": 0.951171875}, {"start": 1583.13, "end": 1583.65, "word": " tax,", "probability": 0.6884765625}, {"start": 1584.13, "end": 1584.31, "word": " number", "probability": 0.2210693359375}, {"start": 1584.31, "end": 1584.49, "word": " of", "probability": 0.96337890625}, {"start": 1584.49, "end": 1584.73, "word": " shares", "probability": 0.69921875}, {"start": 1584.73, "end": 1585.15, "word": " and", "probability": 0.52099609375}, {"start": 1585.15, "end": 1585.31, "word": " price", "probability": 0.62158203125}, {"start": 1585.31, "end": 1585.45, "word": " of", "probability": 0.86083984375}, {"start": 1585.45, "end": 1585.71, "word": " shares,", "probability": 0.6318359375}, {"start": 1586.07, "end": 1586.29, "word": " okay?", "probability": 0.349609375}, {"start": 1586.79, "end": 1587.05, "word": " So", "probability": 0.213623046875}, {"start": 1587.05, "end": 1587.35, "word": " I", "probability": 0.47412109375}, {"start": 1587.35, "end": 1587.59, "word": " come", "probability": 0.4931640625}, {"start": 1587.59, "end": 1587.91, "word": " here", "probability": 0.80615234375}, {"start": 1587.91, "end": 1588.09, "word": " in", "probability": 0.52978515625}, {"start": 1588.09, "end": 1588.37, "word": " buy", "probability": 0.3828125}, {"start": 1588.37, "end": 1588.79, "word": " shares,", "probability": 0.88720703125}, {"start": 1588.95, "end": 1589.13, "word": " all", "probability": 0.70654296875}, {"start": 1589.13, "end": 1589.53, "word": " this", "probability": 0.341064453125}, {"start": 1589.53, "end": 1589.91, "word": " information", "probability": 0.568359375}, {"start": 1589.91, "end": 1590.49, "word": " necessary", "probability": 0.403076171875}, {"start": 1590.49, "end": 1590.69, "word": " for", "probability": 0.7470703125}, {"start": 1590.69, "end": 1591.01, "word": " buying,", "probability": 0.78369140625}, {"start": 1591.69, "end": 1591.85, "word": " I", "probability": 0.9013671875}, {"start": 1591.85, "end": 1592.01, "word": " put", "probability": 0.447021484375}, {"start": 1592.01, "end": 1592.57, "word": " it", "probability": 0.666015625}, {"start": 1592.57, "end": 1592.65, "word": " as", "probability": 0.861328125}, {"start": 1592.65, "end": 1593.13, "word": " attributes,", "probability": 0.7646484375}, {"start": 1593.55, "end": 1593.83, "word": " okay?", "probability": 0.7080078125}, {"start": 1594.37, "end": 1594.47, "word": " Which", "probability": 0.427490234375}, {"start": 1594.47, "end": 1594.65, "word": " is", "probability": 0.71240234375}, {"start": 1594.65, "end": 1594.81, "word": " for", "probability": 0.470703125}, {"start": 1594.81, "end": 1594.95, "word": " example", "probability": 0.9521484375}, {"start": 1594.95, "end": 1595.59, "word": " private", "probability": 0.54736328125}, {"start": 1595.59, "end": 1596.89, "word": " string", "probability": 0.496826171875}, {"start": 1596.89, "end": 1598.01, "word": " seller", "probability": 0.8115234375}, {"start": 1598.01, "end": 1599.97, "word": " ID", "probability": 0.8193359375}, {"start": 1599.97, "end": 1601.51, "word": " and", "probability": 0.6484375}, {"start": 1601.51, "end": 1601.89, "word": " I", "probability": 0.96142578125}, {"start": 1601.89, "end": 1601.95, "word": " have", "probability": 0.93505859375}, {"start": 1601.95, "end": 1602.73, "word": " buyer", "probability": 0.8369140625}], "temperature": 1.0}, {"id": 73, "seek": 162060, "start": 1604.64, "end": 1620.6, "text": " private int number of shares private double tax rate share price", "tokens": [4551, 560, 1230, 295, 12182, 4551, 3834, 3366, 3314, 2073, 3218], "avg_logprob": -0.365234375, "compression_ratio": 1.1016949152542372, "no_speech_prob": 0.0, "words": [{"start": 1604.6399999999999, "end": 1606.04, "word": " private", "probability": 0.1334228515625}, {"start": 1606.04, "end": 1607.0, "word": " int", "probability": 0.46044921875}, {"start": 1607.0, "end": 1607.72, "word": " number", "probability": 0.82763671875}, {"start": 1607.72, "end": 1608.92, "word": " of", "probability": 0.8515625}, {"start": 1608.92, "end": 1609.34, "word": " shares", "probability": 0.841796875}, {"start": 1609.34, "end": 1613.18, "word": " private", "probability": 0.6640625}, {"start": 1613.18, "end": 1614.32, "word": " double", "probability": 0.921875}, {"start": 1614.32, "end": 1616.4, "word": " tax", "probability": 0.89306640625}, {"start": 1616.4, "end": 1617.66, "word": " rate", "probability": 0.94873046875}, {"start": 1617.66, "end": 1619.52, "word": " share", "probability": 0.7373046875}, {"start": 1619.52, "end": 1620.6, "word": " price", "probability": 0.90283203125}], "temperature": 1.0}, {"id": 74, "seek": 164679, "start": 1621.43, "end": 1646.79, "text": "isn't this the right information guys? okay and then this one I also do it because I added an attribute, what do I do with it guys? setter and getters, here refactor, encapsulate fields okay, here I added the setters and getters and now since now when I execute, it's not this one that executes, let's not forget who executes or where does every execution process exist?", "tokens": [271, 77, 380, 341, 264, 558, 1589, 1074, 30, 1392, 293, 550, 341, 472, 286, 611, 360, 309, 570, 286, 3869, 364, 19667, 11, 437, 360, 286, 360, 365, 309, 1074, 30, 992, 391, 293, 483, 1559, 11, 510, 1895, 15104, 11, 38745, 5256, 7909, 1392, 11, 510, 286, 3869, 264, 992, 1559, 293, 483, 1559, 293, 586, 1670, 586, 562, 286, 14483, 11, 309, 311, 406, 341, 472, 300, 4454, 1819, 11, 718, 311, 406, 2870, 567, 4454, 1819, 420, 689, 775, 633, 15058, 1399, 2514, 30], "avg_logprob": -0.5656601070018297, "compression_ratio": 1.7619047619047619, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 1621.43, "end": 1621.69, "word": "isn't", "probability": 0.4608968098958333}, {"start": 1621.69, "end": 1621.81, "word": " this", "probability": 0.61181640625}, {"start": 1621.81, "end": 1621.97, "word": " the", "probability": 0.5390625}, {"start": 1621.97, "end": 1622.17, "word": " right", "probability": 0.30810546875}, {"start": 1622.17, "end": 1622.41, "word": " information", "probability": 0.55224609375}, {"start": 1622.41, "end": 1623.75, "word": " guys?", "probability": 0.446044921875}, {"start": 1623.95, "end": 1624.45, "word": " okay", "probability": 0.0977783203125}, {"start": 1624.45, "end": 1625.11, "word": " and", "probability": 0.397705078125}, {"start": 1625.11, "end": 1625.37, "word": " then", "probability": 0.437255859375}, {"start": 1625.37, "end": 1625.75, "word": " this", "probability": 0.49853515625}, {"start": 1625.75, "end": 1625.89, "word": " one", "probability": 0.5625}, {"start": 1625.89, "end": 1626.03, "word": " I", "probability": 0.48828125}, {"start": 1626.03, "end": 1626.27, "word": " also", "probability": 0.52978515625}, {"start": 1626.27, "end": 1626.55, "word": " do", "probability": 0.32421875}, {"start": 1626.55, "end": 1627.19, "word": " it", "probability": 0.385986328125}, {"start": 1627.19, "end": 1627.79, "word": " because", "probability": 0.40771484375}, {"start": 1627.79, "end": 1628.05, "word": " I", "probability": 0.95068359375}, {"start": 1628.05, "end": 1628.25, "word": " added", "probability": 0.82080078125}, {"start": 1628.25, "end": 1628.39, "word": " an", "probability": 0.298828125}, {"start": 1628.39, "end": 1628.87, "word": " attribute,", "probability": 0.93798828125}, {"start": 1629.03, "end": 1629.11, "word": " what", "probability": 0.51708984375}, {"start": 1629.11, "end": 1629.15, "word": " do", "probability": 0.417236328125}, {"start": 1629.15, "end": 1629.21, "word": " I", "probability": 0.92724609375}, {"start": 1629.21, "end": 1629.37, "word": " do", "probability": 0.66357421875}, {"start": 1629.37, "end": 1629.47, "word": " with", "probability": 0.35302734375}, {"start": 1629.47, "end": 1629.63, "word": " it", "probability": 0.84619140625}, {"start": 1629.63, "end": 1630.01, "word": " guys?", "probability": 0.7685546875}, {"start": 1631.09, "end": 1631.47, "word": " setter", "probability": 0.652099609375}, {"start": 1631.47, "end": 1631.61, "word": " and", "probability": 0.8359375}, {"start": 1631.61, "end": 1632.09, "word": " getters,", "probability": 0.8798828125}, {"start": 1632.27, "end": 1632.43, "word": " here", "probability": 0.2041015625}, {"start": 1632.43, "end": 1633.11, "word": " refactor,", "probability": 0.57373046875}, {"start": 1633.41, "end": 1634.01, "word": " encapsulate", "probability": 0.94921875}, {"start": 1634.01, "end": 1634.57, "word": " fields", "probability": 0.91455078125}, {"start": 1634.57, "end": 1637.51, "word": " okay,", "probability": 0.482421875}, {"start": 1637.65, "end": 1637.73, "word": " here", "probability": 0.67919921875}, {"start": 1637.73, "end": 1637.77, "word": " I", "probability": 0.95361328125}, {"start": 1637.77, "end": 1637.99, "word": " added", "probability": 0.83349609375}, {"start": 1637.99, "end": 1638.13, "word": " the", "probability": 0.51806640625}, {"start": 1638.13, "end": 1638.41, "word": " setters", "probability": 0.84765625}, {"start": 1638.41, "end": 1638.55, "word": " and", "probability": 0.9462890625}, {"start": 1638.55, "end": 1638.97, "word": " getters", "probability": 0.851318359375}, {"start": 1638.97, "end": 1639.45, "word": " and", "probability": 0.7578125}, {"start": 1639.45, "end": 1639.87, "word": " now", "probability": 0.9091796875}, {"start": 1639.87, "end": 1640.61, "word": " since", "probability": 0.34375}, {"start": 1640.61, "end": 1641.51, "word": " now", "probability": 0.372314453125}, {"start": 1641.51, "end": 1641.93, "word": " when", "probability": 0.8623046875}, {"start": 1641.93, "end": 1642.03, "word": " I", "probability": 0.984375}, {"start": 1642.03, "end": 1642.37, "word": " execute,", "probability": 0.5185546875}, {"start": 1642.77, "end": 1642.93, "word": " it's", "probability": 0.39697265625}, {"start": 1642.93, "end": 1642.97, "word": " not", "probability": 0.94677734375}, {"start": 1642.97, "end": 1643.17, "word": " this", "probability": 0.658203125}, {"start": 1643.17, "end": 1643.21, "word": " one", "probability": 0.38720703125}, {"start": 1643.21, "end": 1643.27, "word": " that", "probability": 0.76025390625}, {"start": 1643.27, "end": 1643.65, "word": " executes,", "probability": 0.6588134765625}, {"start": 1643.93, "end": 1644.13, "word": " let's", "probability": 0.69091796875}, {"start": 1644.13, "end": 1644.13, "word": " not", "probability": 0.9296875}, {"start": 1644.13, "end": 1644.43, "word": " forget", "probability": 0.91455078125}, {"start": 1644.43, "end": 1644.63, "word": " who", "probability": 0.262939453125}, {"start": 1644.63, "end": 1645.09, "word": " executes", "probability": 0.95751953125}, {"start": 1645.09, "end": 1645.35, "word": " or", "probability": 0.8408203125}, {"start": 1645.35, "end": 1645.59, "word": " where", "probability": 0.623046875}, {"start": 1645.59, "end": 1645.59, "word": " does", "probability": 0.299560546875}, {"start": 1645.59, "end": 1645.63, "word": " every", "probability": 0.34814453125}, {"start": 1645.63, "end": 1646.21, "word": " execution", "probability": 0.88916015625}, {"start": 1646.21, "end": 1646.41, "word": " process", "probability": 0.83251953125}, {"start": 1646.41, "end": 1646.79, "word": " exist?", "probability": 0.65185546875}], "temperature": 1.0}, {"id": 75, "seek": 167736, "start": 1647.88, "end": 1677.36, "text": "in the stock market this command should have a constructor that should have an object from who? from the stock market basically here I have an attribute which is the most important one which is private stock market and here I say this", "tokens": [259, 264, 4127, 2142, 341, 5622, 820, 362, 257, 47479, 300, 820, 362, 364, 2657, 490, 567, 30, 490, 264, 4127, 2142, 1936, 510, 286, 362, 364, 19667, 597, 307, 264, 881, 1021, 472, 597, 307, 4551, 4127, 2142, 293, 510, 286, 584, 341], "avg_logprob": -0.5187499788072374, "compression_ratio": 1.7080291970802919, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 1647.88, "end": 1648.1, "word": "in", "probability": 0.51025390625}, {"start": 1648.1, "end": 1648.22, "word": " the", "probability": 0.77392578125}, {"start": 1648.22, "end": 1648.42, "word": " stock", "probability": 0.76025390625}, {"start": 1648.42, "end": 1648.86, "word": " market", "probability": 0.9072265625}, {"start": 1648.86, "end": 1649.54, "word": " this", "probability": 0.277099609375}, {"start": 1649.54, "end": 1650.56, "word": " command", "probability": 0.8818359375}, {"start": 1650.56, "end": 1651.3, "word": " should", "probability": 0.424560546875}, {"start": 1651.3, "end": 1651.58, "word": " have", "probability": 0.2305908203125}, {"start": 1651.58, "end": 1651.82, "word": " a", "probability": 0.5244140625}, {"start": 1651.82, "end": 1652.5, "word": " constructor", "probability": 0.9033203125}, {"start": 1652.5, "end": 1656.24, "word": " that", "probability": 0.200927734375}, {"start": 1656.24, "end": 1656.94, "word": " should", "probability": 0.234130859375}, {"start": 1656.94, "end": 1657.26, "word": " have", "probability": 0.3369140625}, {"start": 1657.26, "end": 1657.88, "word": " an", "probability": 0.576171875}, {"start": 1657.88, "end": 1658.36, "word": " object", "probability": 0.97509765625}, {"start": 1658.36, "end": 1658.6, "word": " from", "probability": 0.55126953125}, {"start": 1658.6, "end": 1658.84, "word": " who?", "probability": 0.2646484375}, {"start": 1659.26, "end": 1659.88, "word": " from", "probability": 0.7822265625}, {"start": 1659.88, "end": 1660.0, "word": " the", "probability": 0.483642578125}, {"start": 1660.0, "end": 1660.34, "word": " stock", "probability": 0.83837890625}, {"start": 1660.34, "end": 1661.94, "word": " market", "probability": 0.888671875}, {"start": 1661.94, "end": 1669.08, "word": " basically", "probability": 0.33203125}, {"start": 1669.08, "end": 1669.48, "word": " here", "probability": 0.489990234375}, {"start": 1669.48, "end": 1669.68, "word": " I", "probability": 0.7236328125}, {"start": 1669.68, "end": 1669.8, "word": " have", "probability": 0.92529296875}, {"start": 1669.8, "end": 1669.96, "word": " an", "probability": 0.45654296875}, {"start": 1669.96, "end": 1670.36, "word": " attribute", "probability": 0.818359375}, {"start": 1670.36, "end": 1670.56, "word": " which", "probability": 0.250732421875}, {"start": 1670.56, "end": 1670.56, "word": " is", "probability": 0.9326171875}, {"start": 1670.56, "end": 1670.58, "word": " the", "probability": 0.354736328125}, {"start": 1670.58, "end": 1670.58, "word": " most", "probability": 0.7919921875}, {"start": 1670.58, "end": 1670.76, "word": " important", "probability": 0.86474609375}, {"start": 1670.76, "end": 1671.36, "word": " one", "probability": 0.5830078125}, {"start": 1671.36, "end": 1671.88, "word": " which", "probability": 0.69970703125}, {"start": 1671.88, "end": 1672.0, "word": " is", "probability": 0.95068359375}, {"start": 1672.0, "end": 1672.46, "word": " private", "probability": 0.82568359375}, {"start": 1672.46, "end": 1673.1, "word": " stock", "probability": 0.7109375}, {"start": 1673.1, "end": 1675.36, "word": " market", "probability": 0.8662109375}, {"start": 1675.36, "end": 1676.5, "word": " and", "probability": 0.81103515625}, {"start": 1676.5, "end": 1676.68, "word": " here", "probability": 0.763671875}, {"start": 1676.68, "end": 1676.8, "word": " I", "probability": 0.958984375}, {"start": 1676.8, "end": 1676.96, "word": " say", "probability": 0.51416015625}, {"start": 1676.96, "end": 1677.36, "word": " this", "probability": 0.93212890625}], "temperature": 1.0}, {"id": 76, "seek": 169981, "start": 1683.13, "end": 1699.81, "text": " And here I say this.stockmarket is equal to stockmarket So pay attention guys, what really happened is that I want to encapsulate or convert the method call to java object", "tokens": [400, 510, 286, 584, 341, 13, 23914, 16414, 307, 2681, 281, 4127, 16414, 407, 1689, 3202, 1074, 11, 437, 534, 2011, 307, 300, 286, 528, 281, 38745, 5256, 420, 7620, 264, 3170, 818, 281, 361, 4061, 2657], "avg_logprob": -0.5222039661909404, "compression_ratio": 1.3543307086614174, "no_speech_prob": 1.2934207916259766e-05, "words": [{"start": 1683.13, "end": 1683.93, "word": " And", "probability": 0.1407470703125}, {"start": 1683.93, "end": 1684.73, "word": " here", "probability": 0.72412109375}, {"start": 1684.73, "end": 1684.79, "word": " I", "probability": 0.837890625}, {"start": 1684.79, "end": 1685.07, "word": " say", "probability": 0.2088623046875}, {"start": 1685.07, "end": 1685.45, "word": " this", "probability": 0.7412109375}, {"start": 1685.45, "end": 1686.99, "word": ".stockmarket", "probability": 0.7918294270833334}, {"start": 1686.99, "end": 1687.39, "word": " is", "probability": 0.01311492919921875}, {"start": 1687.39, "end": 1687.67, "word": " equal", "probability": 0.833984375}, {"start": 1687.67, "end": 1688.11, "word": " to", "probability": 0.96923828125}, {"start": 1688.11, "end": 1689.45, "word": " stockmarket", "probability": 0.784423828125}, {"start": 1689.45, "end": 1690.63, "word": " So", "probability": 0.2080078125}, {"start": 1690.63, "end": 1691.37, "word": " pay", "probability": 0.1600341796875}, {"start": 1691.37, "end": 1691.47, "word": " attention", "probability": 0.92822265625}, {"start": 1691.47, "end": 1691.99, "word": " guys,", "probability": 0.3740234375}, {"start": 1692.11, "end": 1692.29, "word": " what", "probability": 0.84814453125}, {"start": 1692.29, "end": 1692.57, "word": " really", "probability": 0.3720703125}, {"start": 1692.57, "end": 1692.57, "word": " happened", "probability": 0.78271484375}, {"start": 1692.57, "end": 1693.65, "word": " is", "probability": 0.64599609375}, {"start": 1693.65, "end": 1694.23, "word": " that", "probability": 0.60546875}, {"start": 1694.23, "end": 1694.55, "word": " I", "probability": 0.96533203125}, {"start": 1694.55, "end": 1695.35, "word": " want", "probability": 0.5302734375}, {"start": 1695.35, "end": 1695.45, "word": " to", "probability": 0.9716796875}, {"start": 1695.45, "end": 1696.43, "word": " encapsulate", "probability": 0.74853515625}, {"start": 1696.43, "end": 1696.69, "word": " or", "probability": 0.7236328125}, {"start": 1696.69, "end": 1697.19, "word": " convert", "probability": 0.307861328125}, {"start": 1697.19, "end": 1697.57, "word": " the", "probability": 0.5830078125}, {"start": 1697.57, "end": 1697.83, "word": " method", "probability": 0.8232421875}, {"start": 1697.83, "end": 1698.21, "word": " call", "probability": 0.83935546875}, {"start": 1698.21, "end": 1698.93, "word": " to", "probability": 0.8095703125}, {"start": 1698.93, "end": 1699.43, "word": " java", "probability": 0.655517578125}, {"start": 1699.43, "end": 1699.81, "word": " object", "probability": 0.95751953125}], "temperature": 1.0}, {"id": 77, "seek": 171273, "start": 1700.61, "end": 1712.73, "text": "I made a class called buy shares from stock command and I made all the necessary information to execute the buying process as an attribute in this class.", "tokens": [40, 1027, 257, 1508, 1219, 2256, 12182, 490, 4127, 395, 22396, 293, 286, 1027, 439, 264, 4818, 1589, 281, 14483, 264, 6382, 1399, 382, 364, 19667, 294, 341, 1508, 13], "avg_logprob": -0.8704636942955756, "compression_ratio": 1.3421052631578947, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1700.61, "end": 1700.99, "word": "I", "probability": 0.1409912109375}, {"start": 1700.99, "end": 1701.53, "word": " made", "probability": 0.3203125}, {"start": 1701.53, "end": 1702.97, "word": " a", "probability": 0.81103515625}, {"start": 1702.97, "end": 1703.27, "word": " class", "probability": 0.919921875}, {"start": 1703.27, "end": 1703.57, "word": " called", "probability": 0.341796875}, {"start": 1703.57, "end": 1703.81, "word": " buy", "probability": 0.513671875}, {"start": 1703.81, "end": 1704.25, "word": " shares", "probability": 0.865234375}, {"start": 1704.25, "end": 1704.81, "word": " from", "probability": 0.255615234375}, {"start": 1704.81, "end": 1705.57, "word": " stock", "probability": 0.38427734375}, {"start": 1705.57, "end": 1706.05, "word": " command", "probability": 0.21368408203125}, {"start": 1706.05, "end": 1706.27, "word": " and", "probability": 0.2626953125}, {"start": 1706.27, "end": 1706.65, "word": " I", "probability": 0.2744140625}, {"start": 1706.65, "end": 1706.65, "word": " made", "probability": 0.2064208984375}, {"start": 1706.65, "end": 1706.71, "word": " all", "probability": 0.54541015625}, {"start": 1706.71, "end": 1706.87, "word": " the", "probability": 0.415283203125}, {"start": 1706.87, "end": 1707.63, "word": " necessary", "probability": 0.37451171875}, {"start": 1707.63, "end": 1707.67, "word": " information", "probability": 0.5634765625}, {"start": 1707.67, "end": 1707.89, "word": " to", "probability": 0.455322265625}, {"start": 1707.89, "end": 1708.27, "word": " execute", "probability": 0.1640625}, {"start": 1708.27, "end": 1708.87, "word": " the", "probability": 0.7001953125}, {"start": 1708.87, "end": 1709.51, "word": " buying", "probability": 0.35009765625}, {"start": 1709.51, "end": 1709.75, "word": " process", "probability": 0.7548828125}, {"start": 1709.75, "end": 1710.69, "word": " as", "probability": 0.7548828125}, {"start": 1710.69, "end": 1711.07, "word": " an", "probability": 0.47412109375}, {"start": 1711.07, "end": 1711.35, "word": " attribute", "probability": 0.9375}, {"start": 1711.35, "end": 1711.69, "word": " in", "probability": 0.302490234375}, {"start": 1711.69, "end": 1712.27, "word": " this", "probability": 0.60009765625}, {"start": 1712.27, "end": 1712.73, "word": " class.", "probability": 0.962890625}], "temperature": 1.0}, {"id": 78, "seek": 174509, "start": 1717.23, "end": 1745.09, "text": " we sent it as what? as a parameter for the constructor which is who? the stock market you don't create the stock market and create a new stock market we do this once and twice and it will be stored here until it executes when it executes how does it execute? of course it is not it that will execute it will use who? the stock market it will say here stock market and it will say what is the process? buy shares and it will send it who?", "tokens": [321, 2279, 309, 382, 437, 30, 382, 257, 13075, 337, 264, 47479, 597, 307, 567, 30, 264, 4127, 2142, 291, 500, 380, 1884, 264, 4127, 2142, 293, 1884, 257, 777, 4127, 2142, 321, 360, 341, 1564, 293, 6091, 293, 309, 486, 312, 12187, 510, 1826, 309, 4454, 1819, 562, 309, 4454, 1819, 577, 775, 309, 14483, 30, 295, 1164, 309, 307, 406, 309, 300, 486, 14483, 309, 486, 764, 567, 30, 264, 4127, 2142, 309, 486, 584, 510, 4127, 2142, 293, 309, 486, 584, 437, 307, 264, 1399, 30, 2256, 12182, 293, 309, 486, 2845, 309, 567, 30], "avg_logprob": -0.5192550757918695, "compression_ratio": 2.121359223300971, "no_speech_prob": 5.4836273193359375e-06, "words": [{"start": 1717.23, "end": 1717.41, "word": " we", "probability": 0.32177734375}, {"start": 1717.41, "end": 1717.63, "word": " sent", "probability": 0.438720703125}, {"start": 1717.63, "end": 1718.03, "word": " it", "probability": 0.63232421875}, {"start": 1718.03, "end": 1718.43, "word": " as", "probability": 0.78466796875}, {"start": 1718.43, "end": 1718.71, "word": " what?", "probability": 0.37451171875}, {"start": 1719.19, "end": 1719.39, "word": " as", "probability": 0.87060546875}, {"start": 1719.39, "end": 1719.45, "word": " a", "probability": 0.55126953125}, {"start": 1719.45, "end": 1719.85, "word": " parameter", "probability": 0.9267578125}, {"start": 1719.85, "end": 1720.55, "word": " for", "probability": 0.447265625}, {"start": 1720.55, "end": 1720.65, "word": " the", "probability": 0.64111328125}, {"start": 1720.65, "end": 1721.11, "word": " constructor", "probability": 0.88916015625}, {"start": 1721.11, "end": 1721.33, "word": " which", "probability": 0.43212890625}, {"start": 1721.33, "end": 1721.51, "word": " is", "probability": 0.84814453125}, {"start": 1721.51, "end": 1721.69, "word": " who?", "probability": 0.388427734375}, {"start": 1722.03, "end": 1722.33, "word": " the", "probability": 0.76123046875}, {"start": 1722.33, "end": 1722.51, "word": " stock", "probability": 0.77978515625}, {"start": 1722.51, "end": 1722.89, "word": " market", "probability": 0.90185546875}, {"start": 1722.89, "end": 1723.25, "word": " you", "probability": 0.2174072265625}, {"start": 1723.25, "end": 1723.37, "word": " don't", "probability": 0.75390625}, {"start": 1723.37, "end": 1723.81, "word": " create", "probability": 0.37060546875}, {"start": 1723.81, "end": 1723.99, "word": " the", "probability": 0.465576171875}, {"start": 1723.99, "end": 1724.21, "word": " stock", "probability": 0.57958984375}, {"start": 1724.21, "end": 1724.55, "word": " market", "probability": 0.88623046875}, {"start": 1724.55, "end": 1724.67, "word": " and", "probability": 0.433349609375}, {"start": 1724.67, "end": 1724.77, "word": " create", "probability": 0.262939453125}, {"start": 1724.77, "end": 1724.91, "word": " a", "probability": 0.68017578125}, {"start": 1724.91, "end": 1725.07, "word": " new", "probability": 0.908203125}, {"start": 1725.07, "end": 1725.29, "word": " stock", "probability": 0.53515625}, {"start": 1725.29, "end": 1725.47, "word": " market", "probability": 0.86328125}, {"start": 1725.47, "end": 1725.71, "word": " we", "probability": 0.1995849609375}, {"start": 1725.71, "end": 1726.01, "word": " do", "probability": 0.25830078125}, {"start": 1726.01, "end": 1726.05, "word": " this", "probability": 0.357177734375}, {"start": 1726.05, "end": 1726.35, "word": " once", "probability": 0.6484375}, {"start": 1726.35, "end": 1727.05, "word": " and", "probability": 0.217529296875}, {"start": 1727.05, "end": 1727.29, "word": " twice", "probability": 0.35205078125}, {"start": 1727.29, "end": 1728.27, "word": " and", "probability": 0.2193603515625}, {"start": 1728.27, "end": 1728.53, "word": " it", "probability": 0.73828125}, {"start": 1728.53, "end": 1728.59, "word": " will", "probability": 0.324462890625}, {"start": 1728.59, "end": 1728.67, "word": " be", "probability": 0.408203125}, {"start": 1728.67, "end": 1728.91, "word": " stored", "probability": 0.85498046875}, {"start": 1728.91, "end": 1729.39, "word": " here", "probability": 0.73681640625}, {"start": 1729.39, "end": 1729.93, "word": " until", "probability": 0.54150390625}, {"start": 1729.93, "end": 1730.17, "word": " it", "probability": 0.2193603515625}, {"start": 1730.17, "end": 1730.75, "word": " executes", "probability": 0.93017578125}, {"start": 1730.75, "end": 1731.41, "word": " when", "probability": 0.787109375}, {"start": 1731.41, "end": 1731.55, "word": " it", "probability": 0.76611328125}, {"start": 1731.55, "end": 1733.03, "word": " executes", "probability": 0.7388916015625}, {"start": 1733.03, "end": 1733.27, "word": " how", "probability": 0.495361328125}, {"start": 1733.27, "end": 1733.35, "word": " does", "probability": 0.732421875}, {"start": 1733.35, "end": 1733.43, "word": " it", "probability": 0.91748046875}, {"start": 1733.43, "end": 1733.75, "word": " execute?", "probability": 0.57470703125}, {"start": 1733.87, "end": 1734.13, "word": " of", "probability": 0.467041015625}, {"start": 1734.13, "end": 1734.23, "word": " course", "probability": 0.94091796875}, {"start": 1734.23, "end": 1734.39, "word": " it", "probability": 0.63134765625}, {"start": 1734.39, "end": 1734.39, "word": " is", "probability": 0.362548828125}, {"start": 1734.39, "end": 1734.53, "word": " not", "probability": 0.9345703125}, {"start": 1734.53, "end": 1734.69, "word": " it", "probability": 0.252197265625}, {"start": 1734.69, "end": 1734.77, "word": " that", "probability": 0.6025390625}, {"start": 1734.77, "end": 1734.85, "word": " will", "probability": 0.423095703125}, {"start": 1734.85, "end": 1735.07, "word": " execute", "probability": 0.9296875}, {"start": 1735.07, "end": 1735.23, "word": " it", "probability": 0.6064453125}, {"start": 1735.23, "end": 1735.35, "word": " will", "probability": 0.6845703125}, {"start": 1735.35, "end": 1735.81, "word": " use", "probability": 0.86328125}, {"start": 1735.81, "end": 1736.09, "word": " who?", "probability": 0.7802734375}, {"start": 1736.59, "end": 1737.07, "word": " the", "probability": 0.87890625}, {"start": 1737.07, "end": 1737.33, "word": " stock", "probability": 0.86376953125}, {"start": 1737.33, "end": 1737.67, "word": " market", "probability": 0.8876953125}, {"start": 1737.67, "end": 1737.87, "word": " it", "probability": 0.75244140625}, {"start": 1737.87, "end": 1737.91, "word": " will", "probability": 0.81689453125}, {"start": 1737.91, "end": 1738.23, "word": " say", "probability": 0.303955078125}, {"start": 1738.23, "end": 1738.49, "word": " here", "probability": 0.65478515625}, {"start": 1738.49, "end": 1738.79, "word": " stock", "probability": 0.6875}, {"start": 1738.79, "end": 1739.35, "word": " market", "probability": 0.8173828125}, {"start": 1739.35, "end": 1741.03, "word": " and", "probability": 0.80908203125}, {"start": 1741.03, "end": 1741.13, "word": " it", "probability": 0.424560546875}, {"start": 1741.13, "end": 1741.13, "word": " will", "probability": 0.52490234375}, {"start": 1741.13, "end": 1741.27, "word": " say", "probability": 0.438232421875}, {"start": 1741.27, "end": 1741.61, "word": " what", "probability": 0.87939453125}, {"start": 1741.61, "end": 1741.73, "word": " is", "probability": 0.491455078125}, {"start": 1741.73, "end": 1741.85, "word": " the", "probability": 0.76806640625}, {"start": 1741.85, "end": 1742.17, "word": " process?", "probability": 0.76220703125}, {"start": 1742.81, "end": 1743.05, "word": " buy", "probability": 0.86572265625}, {"start": 1743.05, "end": 1743.47, "word": " shares", "probability": 0.86181640625}, {"start": 1743.47, "end": 1744.41, "word": " and", "probability": 0.446044921875}, {"start": 1744.41, "end": 1744.53, "word": " it", "probability": 0.4638671875}, {"start": 1744.53, "end": 1744.57, "word": " will", "probability": 0.5126953125}, {"start": 1744.57, "end": 1744.79, "word": " send", "probability": 0.7802734375}, {"start": 1744.79, "end": 1744.91, "word": " it", "probability": 0.4619140625}, {"start": 1744.91, "end": 1745.09, "word": " who?", "probability": 0.412353515625}], "temperature": 1.0}, {"id": 79, "seek": 177087, "start": 1746.73, "end": 1770.87, "text": "attributes that are up there, okay? I put them by myself. Am I right or not, guys? Okay? So now, of course these sitters and getters, we didn't mention them. Now, actually, I made a class called Buy Shares. Okay, why this loop? Did you find that we agreed that I don't want to claim this?", "tokens": [1591, 2024, 1819, 300, 366, 493, 456, 11, 1392, 30, 286, 829, 552, 538, 2059, 13, 2012, 286, 558, 420, 406, 11, 1074, 30, 1033, 30, 407, 586, 11, 295, 1164, 613, 1394, 1559, 293, 483, 1559, 11, 321, 994, 380, 2152, 552, 13, 823, 11, 767, 11, 286, 1027, 257, 1508, 1219, 19146, 1160, 8643, 13, 1033, 11, 983, 341, 6367, 30, 2589, 291, 915, 300, 321, 9166, 300, 286, 500, 380, 528, 281, 3932, 341, 30], "avg_logprob": -0.6435917751698554, "compression_ratio": 1.4472361809045227, "no_speech_prob": 8.106231689453125e-06, "words": [{"start": 1746.73, "end": 1747.25, "word": "attributes", "probability": 0.6562296549479166}, {"start": 1747.25, "end": 1747.41, "word": " that", "probability": 0.289794921875}, {"start": 1747.41, "end": 1747.47, "word": " are", "probability": 0.7275390625}, {"start": 1747.47, "end": 1747.83, "word": " up", "probability": 0.1434326171875}, {"start": 1747.83, "end": 1748.49, "word": " there,", "probability": 0.58740234375}, {"start": 1749.77, "end": 1750.01, "word": " okay?", "probability": 0.1865234375}, {"start": 1750.03, "end": 1750.19, "word": " I", "probability": 0.12225341796875}, {"start": 1750.19, "end": 1750.57, "word": " put", "probability": 0.25146484375}, {"start": 1750.57, "end": 1750.73, "word": " them", "probability": 0.7939453125}, {"start": 1750.73, "end": 1750.73, "word": " by", "probability": 0.396240234375}, {"start": 1750.73, "end": 1750.73, "word": " myself.", "probability": 0.56494140625}, {"start": 1751.61, "end": 1751.81, "word": " Am", "probability": 0.328857421875}, {"start": 1751.81, "end": 1751.81, "word": " I", "probability": 0.9794921875}, {"start": 1751.81, "end": 1751.81, "word": " right", "probability": 0.79052734375}, {"start": 1751.81, "end": 1752.05, "word": " or", "probability": 0.60888671875}, {"start": 1752.05, "end": 1752.05, "word": " not,", "probability": 0.7783203125}, {"start": 1752.15, "end": 1752.35, "word": " guys?", "probability": 0.7509765625}, {"start": 1752.69, "end": 1753.21, "word": " Okay?", "probability": 0.339599609375}, {"start": 1755.21, "end": 1755.73, "word": " So", "probability": 0.290283203125}, {"start": 1755.73, "end": 1756.27, "word": " now,", "probability": 0.59228515625}, {"start": 1756.87, "end": 1758.21, "word": " of", "probability": 0.74365234375}, {"start": 1758.21, "end": 1758.21, "word": " course", "probability": 0.95458984375}, {"start": 1758.21, "end": 1758.49, "word": " these", "probability": 0.181396484375}, {"start": 1758.49, "end": 1758.79, "word": " sitters", "probability": 0.6297607421875}, {"start": 1758.79, "end": 1758.95, "word": " and", "probability": 0.6572265625}, {"start": 1758.95, "end": 1759.19, "word": " getters,", "probability": 0.7275390625}, {"start": 1759.27, "end": 1759.31, "word": " we", "probability": 0.53564453125}, {"start": 1759.31, "end": 1759.33, "word": " didn't", "probability": 0.6903076171875}, {"start": 1759.33, "end": 1759.59, "word": " mention", "probability": 0.34521484375}, {"start": 1759.59, "end": 1759.87, "word": " them.", "probability": 0.8359375}, {"start": 1760.75, "end": 1761.27, "word": " Now,", "probability": 0.77783203125}, {"start": 1761.37, "end": 1761.69, "word": " actually,", "probability": 0.38671875}, {"start": 1762.21, "end": 1762.41, "word": " I", "probability": 0.99267578125}, {"start": 1762.41, "end": 1762.67, "word": " made", "probability": 0.3046875}, {"start": 1762.67, "end": 1762.99, "word": " a", "probability": 0.94970703125}, {"start": 1762.99, "end": 1763.27, "word": " class", "probability": 0.970703125}, {"start": 1763.27, "end": 1763.49, "word": " called", "probability": 0.728515625}, {"start": 1763.49, "end": 1763.73, "word": " Buy", "probability": 0.353515625}, {"start": 1763.73, "end": 1764.03, "word": " Shares.", "probability": 0.746337890625}, {"start": 1764.55, "end": 1764.73, "word": " Okay,", "probability": 0.57958984375}, {"start": 1765.83, "end": 1766.17, "word": " why", "probability": 0.8779296875}, {"start": 1766.17, "end": 1766.29, "word": " this", "probability": 0.533203125}, {"start": 1766.29, "end": 1766.49, "word": " loop?", "probability": 0.353515625}, {"start": 1766.83, "end": 1766.99, "word": " Did", "probability": 0.397705078125}, {"start": 1766.99, "end": 1767.19, "word": " you", "probability": 0.8876953125}, {"start": 1767.19, "end": 1767.19, "word": " find", "probability": 0.50048828125}, {"start": 1767.19, "end": 1767.33, "word": " that", "probability": 0.482666015625}, {"start": 1767.33, "end": 1767.69, "word": " we", "probability": 0.43359375}, {"start": 1767.69, "end": 1768.21, "word": " agreed", "probability": 0.78564453125}, {"start": 1768.21, "end": 1768.47, "word": " that", "probability": 0.8466796875}, {"start": 1768.47, "end": 1768.67, "word": " I", "probability": 0.9716796875}, {"start": 1768.67, "end": 1768.79, "word": " don't", "probability": 0.83544921875}, {"start": 1768.79, "end": 1769.05, "word": " want", "probability": 0.837890625}, {"start": 1769.05, "end": 1769.13, "word": " to", "probability": 0.95654296875}, {"start": 1769.13, "end": 1769.45, "word": " claim", "probability": 0.2149658203125}, {"start": 1769.45, "end": 1770.87, "word": " this?", "probability": 0.552734375}], "temperature": 1.0}, {"id": 80, "seek": 178925, "start": 1771.47, "end": 1789.25, "text": "بدلا منها عشان اعمل او انافذ اي أمر بده اناق أعمل object اسمه or buy shares هذا أمر مين؟ أمر الشراء، بده أسميه c1 زي command 1 in you buy shares", "tokens": [3555, 3215, 15040, 9154, 11296, 6225, 8592, 7649, 1975, 25957, 1211, 1975, 2407, 1975, 8315, 5172, 8848, 1975, 1829, 5551, 29973, 47525, 3224, 1975, 8315, 4587, 5551, 25957, 1211, 2657, 24525, 2304, 3224, 420, 2256, 12182, 23758, 5551, 29973, 3714, 9957, 22807, 5551, 29973, 25124, 2288, 16606, 12399, 47525, 3224, 5551, 38251, 1829, 3224, 269, 16, 30767, 1829, 5622, 502, 294, 291, 2256, 12182], "avg_logprob": -0.2848557692307692, "compression_ratio": 1.391025641025641, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 1771.47, "end": 1772.23, "word": "بدلا", "probability": 0.5613606770833334}, {"start": 1772.23, "end": 1772.85, "word": " منها", "probability": 0.964111328125}, {"start": 1772.85, "end": 1774.53, "word": " عشان", "probability": 0.9410807291666666}, {"start": 1774.53, "end": 1775.19, "word": " اعمل", "probability": 0.9088541666666666}, {"start": 1775.19, "end": 1775.35, "word": " او", "probability": 0.95263671875}, {"start": 1775.35, "end": 1775.75, "word": " انافذ", "probability": 0.83184814453125}, {"start": 1775.75, "end": 1775.93, "word": " اي", "probability": 0.918701171875}, {"start": 1775.93, "end": 1776.21, "word": " أمر", "probability": 0.702392578125}, {"start": 1776.21, "end": 1776.49, "word": " بده", "probability": 0.448974609375}, {"start": 1776.49, "end": 1776.85, "word": " اناق", "probability": 0.8245442708333334}, {"start": 1776.85, "end": 1777.15, "word": " أعمل", "probability": 0.86865234375}, {"start": 1777.15, "end": 1777.59, "word": " object", "probability": 0.97998046875}, {"start": 1777.59, "end": 1778.35, "word": " اسمه", "probability": 0.9505208333333334}, {"start": 1778.35, "end": 1778.59, "word": " or", "probability": 0.2181396484375}, {"start": 1778.59, "end": 1780.15, "word": " buy", "probability": 0.8544921875}, {"start": 1780.15, "end": 1781.27, "word": " shares", "probability": 0.8837890625}, {"start": 1781.27, "end": 1782.35, "word": " هذا", "probability": 0.421142578125}, {"start": 1782.35, "end": 1782.61, "word": " أمر", "probability": 0.95947265625}, {"start": 1782.61, "end": 1783.33, "word": " مين؟", "probability": 0.8728841145833334}, {"start": 1783.33, "end": 1783.75, "word": " أمر", "probability": 0.94287109375}, {"start": 1783.75, "end": 1784.23, "word": " الشراء،", "probability": 0.680908203125}, {"start": 1784.23, "end": 1784.39, "word": " بده", "probability": 0.8447265625}, {"start": 1784.39, "end": 1784.73, "word": " أسميه", "probability": 0.80914306640625}, {"start": 1784.73, "end": 1785.13, "word": " c1", "probability": 0.71875}, {"start": 1785.13, "end": 1785.39, "word": " زي", "probability": 0.88427734375}, {"start": 1785.39, "end": 1785.77, "word": " command", "probability": 0.9150390625}, {"start": 1785.77, "end": 1786.15, "word": " 1", "probability": 0.599609375}, {"start": 1786.15, "end": 1786.59, "word": " in", "probability": 0.548828125}, {"start": 1786.59, "end": 1786.87, "word": " you", "probability": 0.87744140625}, {"start": 1786.87, "end": 1787.87, "word": " buy", "probability": 0.88720703125}, {"start": 1787.87, "end": 1789.25, "word": " shares", "probability": 0.8955078125}], "temperature": 1.0}, {"id": 81, "seek": 181474, "start": 1790.44, "end": 1814.74, "text": "And as if this object represents the order of buying Of course there is error because the constructor wants the stock market Now you come to C1 and you give him the necessary information for buying through the setter methods This is the buyer ID and this is the seller ID", "tokens": [5289, 382, 498, 341, 2657, 8855, 264, 1668, 295, 6382, 2720, 1164, 456, 307, 6713, 570, 264, 47479, 2738, 264, 4127, 2142, 823, 291, 808, 281, 383, 16, 293, 291, 976, 796, 264, 4818, 1589, 337, 6382, 807, 264, 992, 391, 7150, 639, 307, 264, 24645, 7348, 293, 341, 307, 264, 23600, 7348], "avg_logprob": -0.5263310229336774, "compression_ratio": 1.5310734463276836, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1790.44, "end": 1790.68, "word": "And", "probability": 0.0855712890625}, {"start": 1790.68, "end": 1790.82, "word": " as", "probability": 0.269775390625}, {"start": 1790.82, "end": 1791.02, "word": " if", "probability": 0.89501953125}, {"start": 1791.02, "end": 1791.24, "word": " this", "probability": 0.771484375}, {"start": 1791.24, "end": 1791.66, "word": " object", "probability": 0.958984375}, {"start": 1791.66, "end": 1792.14, "word": " represents", "probability": 0.66552734375}, {"start": 1792.14, "end": 1793.12, "word": " the", "probability": 0.416748046875}, {"start": 1793.12, "end": 1793.38, "word": " order", "probability": 0.6484375}, {"start": 1793.38, "end": 1794.28, "word": " of", "probability": 0.8232421875}, {"start": 1794.28, "end": 1794.6, "word": " buying", "probability": 0.358642578125}, {"start": 1794.6, "end": 1795.38, "word": " Of", "probability": 0.1884765625}, {"start": 1795.38, "end": 1795.88, "word": " course", "probability": 0.92626953125}, {"start": 1795.88, "end": 1796.48, "word": " there", "probability": 0.2333984375}, {"start": 1796.48, "end": 1796.48, "word": " is", "probability": 0.46826171875}, {"start": 1796.48, "end": 1796.68, "word": " error", "probability": 0.556640625}, {"start": 1796.68, "end": 1796.86, "word": " because", "probability": 0.62548828125}, {"start": 1796.86, "end": 1796.96, "word": " the", "probability": 0.61181640625}, {"start": 1796.96, "end": 1797.46, "word": " constructor", "probability": 0.83740234375}, {"start": 1797.46, "end": 1797.72, "word": " wants", "probability": 0.55517578125}, {"start": 1797.72, "end": 1798.86, "word": " the", "probability": 0.45068359375}, {"start": 1798.86, "end": 1799.24, "word": " stock", "probability": 0.64599609375}, {"start": 1799.24, "end": 1801.04, "word": " market", "probability": 0.859375}, {"start": 1801.04, "end": 1803.82, "word": " Now", "probability": 0.6025390625}, {"start": 1803.82, "end": 1804.02, "word": " you", "probability": 0.370849609375}, {"start": 1804.02, "end": 1804.16, "word": " come", "probability": 0.497314453125}, {"start": 1804.16, "end": 1804.22, "word": " to", "probability": 0.9638671875}, {"start": 1804.22, "end": 1804.76, "word": " C1", "probability": 0.832275390625}, {"start": 1804.76, "end": 1805.1, "word": " and", "probability": 0.75048828125}, {"start": 1805.1, "end": 1805.22, "word": " you", "probability": 0.318603515625}, {"start": 1805.22, "end": 1805.4, "word": " give", "probability": 0.75634765625}, {"start": 1805.4, "end": 1805.56, "word": " him", "probability": 0.4619140625}, {"start": 1805.56, "end": 1805.6, "word": " the", "probability": 0.85498046875}, {"start": 1805.6, "end": 1806.46, "word": " necessary", "probability": 0.6845703125}, {"start": 1806.46, "end": 1806.46, "word": " information", "probability": 0.78759765625}, {"start": 1806.46, "end": 1807.32, "word": " for", "probability": 0.55224609375}, {"start": 1807.32, "end": 1807.68, "word": " buying", "probability": 0.61962890625}, {"start": 1807.68, "end": 1808.5, "word": " through", "probability": 0.337158203125}, {"start": 1808.5, "end": 1808.76, "word": " the", "probability": 0.71875}, {"start": 1808.76, "end": 1809.06, "word": " setter", "probability": 0.5672607421875}, {"start": 1809.06, "end": 1810.02, "word": " methods", "probability": 0.66650390625}, {"start": 1810.02, "end": 1810.48, "word": " This", "probability": 0.314697265625}, {"start": 1810.48, "end": 1810.58, "word": " is", "probability": 0.92333984375}, {"start": 1810.58, "end": 1810.64, "word": " the", "probability": 0.703125}, {"start": 1810.64, "end": 1810.84, "word": " buyer", "probability": 0.8671875}, {"start": 1810.84, "end": 1811.28, "word": " ID", "probability": 0.6494140625}, {"start": 1811.28, "end": 1813.34, "word": " and", "probability": 0.466552734375}, {"start": 1813.34, "end": 1813.54, "word": " this", "probability": 0.8466796875}, {"start": 1813.54, "end": 1813.68, "word": " is", "probability": 0.92138671875}, {"start": 1813.68, "end": 1813.94, "word": " the", "probability": 0.775390625}, {"start": 1813.94, "end": 1814.2, "word": " seller", "probability": 0.7900390625}, {"start": 1814.2, "end": 1814.74, "word": " ID", "probability": 0.943359375}], "temperature": 1.0}, {"id": 82, "seek": 183339, "start": 1819.27, "end": 1833.39, "text": " c1.set the number of shares you want to buy for example 1000 and the share price for example 10% and the tax ratio 1%", "tokens": [269, 16, 13, 3854, 264, 1230, 295, 12182, 291, 528, 281, 2256, 337, 1365, 9714, 293, 264, 2073, 3218, 337, 1365, 1266, 4, 293, 264, 3366, 8509, 502, 4], "avg_logprob": -0.4005208204189936, "compression_ratio": 1.3258426966292134, "no_speech_prob": 1.9669532775878906e-06, "words": [{"start": 1819.27, "end": 1819.71, "word": " c1", "probability": 0.49810791015625}, {"start": 1819.71, "end": 1820.15, "word": ".set", "probability": 0.873779296875}, {"start": 1820.15, "end": 1820.43, "word": " the", "probability": 0.22314453125}, {"start": 1820.43, "end": 1820.57, "word": " number", "probability": 0.443603515625}, {"start": 1820.57, "end": 1820.73, "word": " of", "probability": 0.96533203125}, {"start": 1820.73, "end": 1820.93, "word": " shares", "probability": 0.630859375}, {"start": 1820.93, "end": 1821.05, "word": " you", "probability": 0.50927734375}, {"start": 1821.05, "end": 1821.19, "word": " want", "probability": 0.63720703125}, {"start": 1821.19, "end": 1821.23, "word": " to", "probability": 0.96337890625}, {"start": 1821.23, "end": 1821.41, "word": " buy", "probability": 0.91748046875}, {"start": 1821.41, "end": 1821.59, "word": " for", "probability": 0.37060546875}, {"start": 1821.59, "end": 1821.81, "word": " example", "probability": 0.9052734375}, {"start": 1821.81, "end": 1822.21, "word": " 1000", "probability": 0.7177734375}, {"start": 1822.21, "end": 1826.29, "word": " and", "probability": 0.411865234375}, {"start": 1826.29, "end": 1827.23, "word": " the", "probability": 0.638671875}, {"start": 1827.23, "end": 1827.37, "word": " share", "probability": 0.428466796875}, {"start": 1827.37, "end": 1827.79, "word": " price", "probability": 0.9150390625}, {"start": 1827.79, "end": 1828.01, "word": " for", "probability": 0.70068359375}, {"start": 1828.01, "end": 1828.19, "word": " example", "probability": 0.966796875}, {"start": 1828.19, "end": 1828.43, "word": " 10", "probability": 0.84375}, {"start": 1828.43, "end": 1829.41, "word": "%", "probability": 0.4765625}, {"start": 1829.41, "end": 1829.63, "word": " and", "probability": 0.90771484375}, {"start": 1829.63, "end": 1829.75, "word": " the", "probability": 0.64306640625}, {"start": 1829.75, "end": 1830.13, "word": " tax", "probability": 0.884765625}, {"start": 1830.13, "end": 1832.45, "word": " ratio", "probability": 0.95654296875}, {"start": 1832.45, "end": 1833.07, "word": " 1", "probability": 0.8662109375}, {"start": 1833.07, "end": 1833.39, "word": "%", "probability": 0.78564453125}], "temperature": 1.0}, {"id": 83, "seek": 186382, "start": 1835.32, "end": 1863.82, "text": " Now, we want to execute the buying process, what do we do? We say c1.execute It will execute, of course, within the execute I go to the stock market and I say what? Execute Now, of course, someone will say, why this loop? You go back and forth, you go back to what we were in the beginning, yes, we need to claim who? The buy shares and we send him the data, right or not? All we did is that we overcame ourselves, we made a class", "tokens": [823, 11, 321, 528, 281, 14483, 264, 6382, 1399, 11, 437, 360, 321, 360, 30, 492, 584, 269, 16, 13, 3121, 3045, 1169, 467, 486, 14483, 11, 295, 1164, 11, 1951, 264, 14483, 286, 352, 281, 264, 4127, 2142, 293, 286, 584, 437, 30, 17662, 1169, 823, 11, 295, 1164, 11, 1580, 486, 584, 11, 983, 341, 6367, 30, 509, 352, 646, 293, 5220, 11, 291, 352, 646, 281, 437, 321, 645, 294, 264, 2863, 11, 2086, 11, 321, 643, 281, 3932, 567, 30, 440, 2256, 12182, 293, 321, 2845, 796, 264, 1412, 11, 558, 420, 406, 30, 1057, 321, 630, 307, 300, 321, 670, 3005, 4175, 11, 321, 1027, 257, 1508], "avg_logprob": -0.5840708133393684, "compression_ratio": 1.6901960784313725, "no_speech_prob": 3.7550926208496094e-06, "words": [{"start": 1835.32, "end": 1835.62, "word": " Now,", "probability": 0.327392578125}, {"start": 1835.68, "end": 1835.74, "word": " we", "probability": 0.54443359375}, {"start": 1835.74, "end": 1835.86, "word": " want", "probability": 0.50927734375}, {"start": 1835.86, "end": 1835.96, "word": " to", "probability": 0.95556640625}, {"start": 1835.96, "end": 1836.18, "word": " execute", "probability": 0.330078125}, {"start": 1836.18, "end": 1836.66, "word": " the", "probability": 0.7119140625}, {"start": 1836.66, "end": 1836.92, "word": " buying", "probability": 0.24072265625}, {"start": 1836.92, "end": 1836.94, "word": " process,", "probability": 0.828125}, {"start": 1837.04, "end": 1837.22, "word": " what", "probability": 0.603515625}, {"start": 1837.22, "end": 1837.32, "word": " do", "probability": 0.669921875}, {"start": 1837.32, "end": 1837.36, "word": " we", "probability": 0.95166015625}, {"start": 1837.36, "end": 1837.58, "word": " do?", "probability": 0.92236328125}, {"start": 1838.24, "end": 1838.4, "word": " We", "probability": 0.62353515625}, {"start": 1838.4, "end": 1838.52, "word": " say", "probability": 0.43212890625}, {"start": 1838.52, "end": 1839.3, "word": " c1", "probability": 0.73583984375}, {"start": 1839.3, "end": 1842.62, "word": ".execute", "probability": 0.87548828125}, {"start": 1842.62, "end": 1843.14, "word": " It", "probability": 0.22216796875}, {"start": 1843.14, "end": 1843.3, "word": " will", "probability": 0.7412109375}, {"start": 1843.3, "end": 1843.7, "word": " execute,", "probability": 0.53662109375}, {"start": 1843.84, "end": 1843.96, "word": " of", "probability": 0.3896484375}, {"start": 1843.96, "end": 1844.06, "word": " course,", "probability": 0.95849609375}, {"start": 1844.28, "end": 1844.46, "word": " within", "probability": 0.2471923828125}, {"start": 1844.46, "end": 1845.12, "word": " the", "probability": 0.452880859375}, {"start": 1845.12, "end": 1845.5, "word": " execute", "probability": 0.66552734375}, {"start": 1845.5, "end": 1846.22, "word": " I", "probability": 0.12152099609375}, {"start": 1846.22, "end": 1846.36, "word": " go", "probability": 0.8564453125}, {"start": 1846.36, "end": 1846.5, "word": " to", "probability": 0.95751953125}, {"start": 1846.5, "end": 1846.62, "word": " the", "probability": 0.818359375}, {"start": 1846.62, "end": 1846.78, "word": " stock", "probability": 0.77099609375}, {"start": 1846.78, "end": 1847.14, "word": " market", "probability": 0.9091796875}, {"start": 1847.14, "end": 1847.32, "word": " and", "probability": 0.68896484375}, {"start": 1847.32, "end": 1847.36, "word": " I", "probability": 0.226806640625}, {"start": 1847.36, "end": 1847.46, "word": " say", "probability": 0.66455078125}, {"start": 1847.46, "end": 1847.82, "word": " what?", "probability": 0.34326171875}, {"start": 1848.12, "end": 1848.5, "word": " Execute", "probability": 0.60150146484375}, {"start": 1848.5, "end": 1849.52, "word": " Now,", "probability": 0.62890625}, {"start": 1849.64, "end": 1849.72, "word": " of", "probability": 0.744140625}, {"start": 1849.72, "end": 1849.78, "word": " course,", "probability": 0.955078125}, {"start": 1849.9, "end": 1850.18, "word": " someone", "probability": 0.390625}, {"start": 1850.18, "end": 1850.34, "word": " will", "probability": 0.6396484375}, {"start": 1850.34, "end": 1850.5, "word": " say,", "probability": 0.472900390625}, {"start": 1850.74, "end": 1851.18, "word": " why", "probability": 0.449951171875}, {"start": 1851.18, "end": 1851.38, "word": " this", "probability": 0.318359375}, {"start": 1851.38, "end": 1851.6, "word": " loop?", "probability": 0.452392578125}, {"start": 1851.96, "end": 1852.3, "word": " You", "probability": 0.6337890625}, {"start": 1852.3, "end": 1852.62, "word": " go", "probability": 0.245849609375}, {"start": 1852.62, "end": 1852.92, "word": " back", "probability": 0.1846923828125}, {"start": 1852.92, "end": 1852.92, "word": " and", "probability": 0.7939453125}, {"start": 1852.92, "end": 1853.08, "word": " forth,", "probability": 0.9375}, {"start": 1853.18, "end": 1853.26, "word": " you", "probability": 0.3974609375}, {"start": 1853.26, "end": 1853.26, "word": " go", "probability": 0.36328125}, {"start": 1853.26, "end": 1853.46, "word": " back", "probability": 0.81005859375}, {"start": 1853.46, "end": 1854.34, "word": " to", "probability": 0.166748046875}, {"start": 1854.34, "end": 1854.62, "word": " what", "probability": 0.489501953125}, {"start": 1854.62, "end": 1854.86, "word": " we", "probability": 0.81640625}, {"start": 1854.86, "end": 1855.06, "word": " were", "probability": 0.740234375}, {"start": 1855.06, "end": 1855.18, "word": " in", "probability": 0.50244140625}, {"start": 1855.18, "end": 1855.28, "word": " the", "probability": 0.92236328125}, {"start": 1855.28, "end": 1855.46, "word": " beginning,", "probability": 0.6474609375}, {"start": 1855.72, "end": 1855.72, "word": " yes,", "probability": 0.2435302734375}, {"start": 1855.76, "end": 1855.86, "word": " we", "probability": 0.67041015625}, {"start": 1855.86, "end": 1855.96, "word": " need", "probability": 0.226318359375}, {"start": 1855.96, "end": 1856.04, "word": " to", "probability": 0.9521484375}, {"start": 1856.04, "end": 1856.2, "word": " claim", "probability": 0.477294921875}, {"start": 1856.2, "end": 1856.5, "word": " who?", "probability": 0.505859375}, {"start": 1857.48, "end": 1857.64, "word": " The", "probability": 0.32763671875}, {"start": 1857.64, "end": 1857.86, "word": " buy", "probability": 0.58642578125}, {"start": 1857.86, "end": 1858.14, "word": " shares", "probability": 0.845703125}, {"start": 1858.14, "end": 1858.28, "word": " and", "probability": 0.64404296875}, {"start": 1858.28, "end": 1858.38, "word": " we", "probability": 0.487060546875}, {"start": 1858.38, "end": 1858.54, "word": " send", "probability": 0.50341796875}, {"start": 1858.54, "end": 1858.74, "word": " him", "probability": 0.51708984375}, {"start": 1858.74, "end": 1858.8, "word": " the", "probability": 0.7236328125}, {"start": 1858.8, "end": 1859.1, "word": " data,", "probability": 0.88623046875}, {"start": 1859.34, "end": 1859.72, "word": " right", "probability": 0.63232421875}, {"start": 1859.72, "end": 1859.96, "word": " or", "probability": 0.78857421875}, {"start": 1859.96, "end": 1859.96, "word": " not?", "probability": 0.443603515625}, {"start": 1860.36, "end": 1860.56, "word": " All", "probability": 0.724609375}, {"start": 1860.56, "end": 1860.7, "word": " we", "probability": 0.7998046875}, {"start": 1860.7, "end": 1860.92, "word": " did", "probability": 0.73681640625}, {"start": 1860.92, "end": 1861.26, "word": " is", "probability": 0.457763671875}, {"start": 1861.26, "end": 1861.26, "word": " that", "probability": 0.34619140625}, {"start": 1861.26, "end": 1862.22, "word": " we", "probability": 0.93115234375}, {"start": 1862.22, "end": 1862.68, "word": " overcame", "probability": 0.5411376953125}, {"start": 1862.68, "end": 1862.98, "word": " ourselves,", "probability": 0.55810546875}, {"start": 1863.1, "end": 1863.14, "word": " we", "probability": 0.90771484375}, {"start": 1863.14, "end": 1863.28, "word": " made", "probability": 0.480224609375}, {"start": 1863.28, "end": 1863.44, "word": " a", "probability": 0.80224609375}, {"start": 1863.44, "end": 1863.82, "word": " class", "probability": 0.974609375}], "temperature": 1.0}, {"id": 84, "seek": 188274, "start": 1864.9, "end": 1882.74, "text": "Buy shares, we sent it to the stock market, and from within the execute, we called the buy shares. So it's like, where's your mouth? Right or wrong? Okay, fine. This is what it seems to be the gate. Just like we did for the purchase process, we also need to create a command for whom?", "tokens": [33, 7493, 12182, 11, 321, 2279, 309, 281, 264, 4127, 2142, 11, 293, 490, 1951, 264, 14483, 11, 321, 1219, 264, 2256, 12182, 13, 407, 309, 311, 411, 11, 689, 311, 428, 4525, 30, 1779, 420, 2085, 30, 1033, 11, 2489, 13, 639, 307, 437, 309, 2544, 281, 312, 264, 8539, 13, 1449, 411, 321, 630, 337, 264, 8110, 1399, 11, 321, 611, 643, 281, 1884, 257, 5622, 337, 7101, 30], "avg_logprob": -0.7309027637044588, "compression_ratio": 1.4639175257731958, "no_speech_prob": 3.9517879486083984e-05, "words": [{"start": 1864.8999999999999, "end": 1865.34, "word": "Buy", "probability": 0.52801513671875}, {"start": 1865.34, "end": 1865.64, "word": " shares,", "probability": 0.650390625}, {"start": 1865.76, "end": 1865.82, "word": " we", "probability": 0.53125}, {"start": 1865.82, "end": 1866.04, "word": " sent", "probability": 0.362548828125}, {"start": 1866.04, "end": 1866.34, "word": " it", "probability": 0.268798828125}, {"start": 1866.34, "end": 1867.52, "word": " to", "probability": 0.619140625}, {"start": 1867.52, "end": 1867.56, "word": " the", "probability": 0.69873046875}, {"start": 1867.56, "end": 1867.8, "word": " stock", "probability": 0.72998046875}, {"start": 1867.8, "end": 1868.34, "word": " market,", "probability": 0.89990234375}, {"start": 1868.64, "end": 1868.98, "word": " and", "probability": 0.75927734375}, {"start": 1868.98, "end": 1869.06, "word": " from", "probability": 0.449951171875}, {"start": 1869.06, "end": 1869.3, "word": " within", "probability": 0.44189453125}, {"start": 1869.3, "end": 1869.4, "word": " the", "probability": 0.4482421875}, {"start": 1869.4, "end": 1869.98, "word": " execute,", "probability": 0.57421875}, {"start": 1870.66, "end": 1870.78, "word": " we", "probability": 0.89111328125}, {"start": 1870.78, "end": 1871.08, "word": " called", "probability": 0.221923828125}, {"start": 1871.08, "end": 1871.36, "word": " the", "probability": 0.432373046875}, {"start": 1871.36, "end": 1871.56, "word": " buy", "probability": 0.84326171875}, {"start": 1871.56, "end": 1871.86, "word": " shares.", "probability": 0.86376953125}, {"start": 1872.16, "end": 1872.24, "word": " So", "probability": 0.1395263671875}, {"start": 1872.24, "end": 1872.38, "word": " it's", "probability": 0.42633056640625}, {"start": 1872.38, "end": 1872.42, "word": " like,", "probability": 0.80615234375}, {"start": 1872.6, "end": 1872.84, "word": " where's", "probability": 0.4130859375}, {"start": 1872.84, "end": 1873.12, "word": " your", "probability": 0.8515625}, {"start": 1873.12, "end": 1873.12, "word": " mouth?", "probability": 0.53271484375}, {"start": 1873.54, "end": 1873.76, "word": " Right", "probability": 0.230712890625}, {"start": 1873.76, "end": 1873.94, "word": " or", "probability": 0.77294921875}, {"start": 1873.94, "end": 1874.08, "word": " wrong?", "probability": 0.5791015625}, {"start": 1874.84, "end": 1875.12, "word": " Okay,", "probability": 0.310302734375}, {"start": 1876.0, "end": 1876.26, "word": " fine.", "probability": 0.1395263671875}, {"start": 1876.38, "end": 1876.52, "word": " This", "probability": 0.5283203125}, {"start": 1876.52, "end": 1876.58, "word": " is", "probability": 0.85498046875}, {"start": 1876.58, "end": 1877.0, "word": " what", "probability": 0.87744140625}, {"start": 1877.0, "end": 1877.1, "word": " it", "probability": 0.12310791015625}, {"start": 1877.1, "end": 1877.24, "word": " seems", "probability": 0.222900390625}, {"start": 1877.24, "end": 1877.44, "word": " to", "probability": 0.6259765625}, {"start": 1877.44, "end": 1877.48, "word": " be", "probability": 0.71142578125}, {"start": 1877.48, "end": 1877.66, "word": " the", "probability": 0.349365234375}, {"start": 1877.66, "end": 1877.94, "word": " gate.", "probability": 0.45849609375}, {"start": 1878.72, "end": 1879.16, "word": " Just", "probability": 0.308349609375}, {"start": 1879.16, "end": 1879.24, "word": " like", "probability": 0.734375}, {"start": 1879.24, "end": 1879.3, "word": " we", "probability": 0.62255859375}, {"start": 1879.3, "end": 1879.52, "word": " did", "probability": 0.8671875}, {"start": 1879.52, "end": 1879.94, "word": " for", "probability": 0.370849609375}, {"start": 1879.94, "end": 1880.12, "word": " the", "probability": 0.61279296875}, {"start": 1880.12, "end": 1880.66, "word": " purchase", "probability": 0.364013671875}, {"start": 1880.66, "end": 1880.76, "word": " process,", "probability": 0.491943359375}, {"start": 1880.9, "end": 1880.96, "word": " we", "probability": 0.87109375}, {"start": 1880.96, "end": 1881.18, "word": " also", "probability": 0.37451171875}, {"start": 1881.18, "end": 1881.78, "word": " need", "probability": 0.5361328125}, {"start": 1881.78, "end": 1881.78, "word": " to", "probability": 0.96484375}, {"start": 1881.78, "end": 1881.9, "word": " create", "probability": 0.2073974609375}, {"start": 1881.9, "end": 1882.08, "word": " a", "probability": 0.92529296875}, {"start": 1882.08, "end": 1882.4, "word": " command", "probability": 0.892578125}, {"start": 1882.4, "end": 1882.58, "word": " for", "probability": 0.6962890625}, {"start": 1882.58, "end": 1882.74, "word": " whom?", "probability": 0.736328125}], "temperature": 1.0}, {"id": 85, "seek": 190899, "start": 1883.33, "end": 1908.99, "text": " to open the company and then we will see what is the benefit that will appear in the end this is also a class called open company, this is the second thing that I have and this also I want to say implements stock command, okay? and here I have implement and let's not forget to do this also needs to execute an object from who? from the stock market", "tokens": [281, 1269, 264, 2237, 293, 550, 321, 486, 536, 437, 307, 264, 5121, 300, 486, 4204, 294, 264, 917, 341, 307, 611, 257, 1508, 1219, 1269, 2237, 11, 341, 307, 264, 1150, 551, 300, 286, 362, 293, 341, 611, 286, 528, 281, 584, 704, 17988, 4127, 5622, 11, 1392, 30, 293, 510, 286, 362, 4445, 293, 718, 311, 406, 2870, 281, 360, 341, 611, 2203, 281, 14483, 364, 2657, 490, 567, 30, 490, 264, 4127, 2142], "avg_logprob": -0.5267857049966788, "compression_ratio": 1.7587939698492463, "no_speech_prob": 1.3887882232666016e-05, "words": [{"start": 1883.33, "end": 1883.85, "word": " to", "probability": 0.247314453125}, {"start": 1883.85, "end": 1884.25, "word": " open", "probability": 0.69140625}, {"start": 1884.25, "end": 1884.47, "word": " the", "probability": 0.595703125}, {"start": 1884.47, "end": 1884.83, "word": " company", "probability": 0.87060546875}, {"start": 1884.83, "end": 1884.95, "word": " and", "probability": 0.5595703125}, {"start": 1884.95, "end": 1885.15, "word": " then", "probability": 0.60595703125}, {"start": 1885.15, "end": 1885.33, "word": " we", "probability": 0.50390625}, {"start": 1885.33, "end": 1885.33, "word": " will", "probability": 0.341064453125}, {"start": 1885.33, "end": 1885.53, "word": " see", "probability": 0.79296875}, {"start": 1885.53, "end": 1885.73, "word": " what", "probability": 0.50927734375}, {"start": 1885.73, "end": 1885.83, "word": " is", "probability": 0.22509765625}, {"start": 1885.83, "end": 1885.83, "word": " the", "probability": 0.75146484375}, {"start": 1885.83, "end": 1886.07, "word": " benefit", "probability": 0.595703125}, {"start": 1886.07, "end": 1886.29, "word": " that", "probability": 0.183349609375}, {"start": 1886.29, "end": 1886.31, "word": " will", "probability": 0.599609375}, {"start": 1886.31, "end": 1886.55, "word": " appear", "probability": 0.404541015625}, {"start": 1886.55, "end": 1887.03, "word": " in", "probability": 0.346435546875}, {"start": 1887.03, "end": 1887.15, "word": " the", "probability": 0.83837890625}, {"start": 1887.15, "end": 1887.41, "word": " end", "probability": 0.7568359375}, {"start": 1887.41, "end": 1888.31, "word": " this", "probability": 0.474365234375}, {"start": 1888.31, "end": 1888.43, "word": " is", "probability": 0.5458984375}, {"start": 1888.43, "end": 1888.57, "word": " also", "probability": 0.611328125}, {"start": 1888.57, "end": 1889.05, "word": " a", "probability": 0.47412109375}, {"start": 1889.05, "end": 1889.49, "word": " class", "probability": 0.9462890625}, {"start": 1889.49, "end": 1890.17, "word": " called", "probability": 0.3876953125}, {"start": 1890.17, "end": 1890.49, "word": " open", "probability": 0.7294921875}, {"start": 1890.49, "end": 1890.91, "word": " company,", "probability": 0.79541015625}, {"start": 1890.97, "end": 1891.11, "word": " this", "probability": 0.74365234375}, {"start": 1891.11, "end": 1891.15, "word": " is", "probability": 0.92236328125}, {"start": 1891.15, "end": 1891.23, "word": " the", "probability": 0.84228515625}, {"start": 1891.23, "end": 1891.75, "word": " second", "probability": 0.8193359375}, {"start": 1891.75, "end": 1891.77, "word": " thing", "probability": 0.541015625}, {"start": 1891.77, "end": 1892.45, "word": " that", "probability": 0.55615234375}, {"start": 1892.45, "end": 1892.55, "word": " I", "probability": 0.6376953125}, {"start": 1892.55, "end": 1892.95, "word": " have", "probability": 0.90869140625}, {"start": 1892.95, "end": 1893.77, "word": " and", "probability": 0.57373046875}, {"start": 1893.77, "end": 1894.01, "word": " this", "probability": 0.71728515625}, {"start": 1894.01, "end": 1894.27, "word": " also", "probability": 0.405029296875}, {"start": 1894.27, "end": 1894.35, "word": " I", "probability": 0.5634765625}, {"start": 1894.35, "end": 1894.45, "word": " want", "probability": 0.60986328125}, {"start": 1894.45, "end": 1894.53, "word": " to", "probability": 0.9677734375}, {"start": 1894.53, "end": 1894.67, "word": " say", "probability": 0.49560546875}, {"start": 1894.67, "end": 1895.49, "word": " implements", "probability": 0.772216796875}, {"start": 1895.49, "end": 1896.87, "word": " stock", "probability": 0.73291015625}, {"start": 1896.87, "end": 1898.71, "word": " command,", "probability": 0.38525390625}, {"start": 1898.89, "end": 1899.87, "word": " okay?", "probability": 0.328857421875}, {"start": 1900.91, "end": 1901.23, "word": " and", "probability": 0.8330078125}, {"start": 1901.23, "end": 1901.37, "word": " here", "probability": 0.330810546875}, {"start": 1901.37, "end": 1901.49, "word": " I", "probability": 0.8896484375}, {"start": 1901.49, "end": 1901.61, "word": " have", "probability": 0.94091796875}, {"start": 1901.61, "end": 1902.05, "word": " implement", "probability": 0.869140625}, {"start": 1902.05, "end": 1902.71, "word": " and", "probability": 0.75927734375}, {"start": 1902.71, "end": 1902.87, "word": " let's", "probability": 0.5430908203125}, {"start": 1902.87, "end": 1902.87, "word": " not", "probability": 0.9189453125}, {"start": 1902.87, "end": 1903.25, "word": " forget", "probability": 0.9013671875}, {"start": 1903.25, "end": 1903.55, "word": " to", "probability": 0.609375}, {"start": 1903.55, "end": 1903.95, "word": " do", "probability": 0.78662109375}, {"start": 1903.95, "end": 1905.07, "word": " this", "probability": 0.406005859375}, {"start": 1905.07, "end": 1905.15, "word": " also", "probability": 0.59326171875}, {"start": 1905.15, "end": 1905.45, "word": " needs", "probability": 0.60986328125}, {"start": 1905.45, "end": 1905.75, "word": " to", "probability": 0.55810546875}, {"start": 1905.75, "end": 1906.15, "word": " execute", "probability": 0.37744140625}, {"start": 1906.15, "end": 1906.79, "word": " an", "probability": 0.261962890625}, {"start": 1906.79, "end": 1907.11, "word": " object", "probability": 0.98193359375}, {"start": 1907.11, "end": 1907.35, "word": " from", "probability": 0.705078125}, {"start": 1907.35, "end": 1907.55, "word": " who?", "probability": 0.333984375}, {"start": 1907.91, "end": 1908.21, "word": " from", "probability": 0.771484375}, {"start": 1908.21, "end": 1908.33, "word": " the", "probability": 0.7939453125}, {"start": 1908.33, "end": 1908.53, "word": " stock", "probability": 0.84228515625}, {"start": 1908.53, "end": 1908.99, "word": " market", "probability": 0.91015625}], "temperature": 1.0}, {"id": 86, "seek": 194174, "start": 1912.86, "end": 1941.74, "text": " تمام؟ و هى public open company هى stock market و بعدين جوا ال method execute بدى أقوله روحي لل stock market", "tokens": [46811, 10943, 22807, 4032, 8032, 7578, 1908, 1269, 2237, 8032, 7578, 4127, 2142, 4032, 39182, 9957, 10874, 14407, 2423, 3170, 14483, 47525, 7578, 5551, 39648, 3224, 12602, 2407, 5016, 1829, 24976, 4127, 2142], "avg_logprob": -0.41819853554753694, "compression_ratio": 1.144, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1912.86, "end": 1913.42, "word": " تمام؟", "probability": 0.5030721028645834}, {"start": 1913.42, "end": 1913.5, "word": " و", "probability": 0.2998046875}, {"start": 1913.5, "end": 1913.6, "word": " هى", "probability": 0.6788330078125}, {"start": 1913.6, "end": 1914.18, "word": " public", "probability": 0.87890625}, {"start": 1914.18, "end": 1916.82, "word": " open", "probability": 0.498779296875}, {"start": 1916.82, "end": 1917.46, "word": " company", "probability": 0.8330078125}, {"start": 1917.46, "end": 1919.1, "word": " هى", "probability": 0.8857421875}, {"start": 1919.1, "end": 1919.6, "word": " stock", "probability": 0.77978515625}, {"start": 1919.6, "end": 1921.36, "word": " market", "probability": 0.923828125}, {"start": 1921.36, "end": 1935.56, "word": " و", "probability": 0.91748046875}, {"start": 1935.56, "end": 1936.16, "word": " بعدين", "probability": 0.919677734375}, {"start": 1936.16, "end": 1937.28, "word": " جوا", "probability": 0.9111328125}, {"start": 1937.28, "end": 1937.44, "word": " ال", "probability": 0.4814453125}, {"start": 1937.44, "end": 1937.6, "word": " method", "probability": 0.98291015625}, {"start": 1937.6, "end": 1938.28, "word": " execute", "probability": 0.9609375}, {"start": 1938.28, "end": 1940.28, "word": " بدى", "probability": 0.4281005859375}, {"start": 1940.28, "end": 1940.48, "word": " أقوله", "probability": 0.7775065104166666}, {"start": 1940.48, "end": 1940.74, "word": " روحي", "probability": 0.72161865234375}, {"start": 1940.74, "end": 1940.86, "word": " لل", "probability": 0.375732421875}, {"start": 1940.86, "end": 1941.18, "word": " stock", "probability": 0.822265625}, {"start": 1941.18, "end": 1941.74, "word": " market", "probability": 0.9384765625}], "temperature": 1.0}, {"id": 87, "seek": 196273, "start": 1943.95, "end": 1962.73, "text": "and execute the operation of open company and what does this open company need? id and name and capital and number of shares which must also be attributes here so I want to say private string company id company", "tokens": [474, 14483, 264, 6916, 295, 1269, 2237, 293, 437, 775, 341, 1269, 2237, 643, 30, 4496, 293, 1315, 293, 4238, 293, 1230, 295, 12182, 597, 1633, 611, 312, 17212, 510, 370, 286, 528, 281, 584, 4551, 6798, 2237, 4496, 2237], "avg_logprob": -0.570884157971638, "compression_ratio": 1.532846715328467, "no_speech_prob": 2.1457672119140625e-05, "words": [{"start": 1943.95, "end": 1944.19, "word": "and", "probability": 0.19677734375}, {"start": 1944.19, "end": 1944.47, "word": " execute", "probability": 0.32861328125}, {"start": 1944.47, "end": 1944.57, "word": " the", "probability": 0.4111328125}, {"start": 1944.57, "end": 1944.81, "word": " operation", "probability": 0.16796875}, {"start": 1944.81, "end": 1944.99, "word": " of", "probability": 0.50244140625}, {"start": 1944.99, "end": 1946.27, "word": " open", "probability": 0.49853515625}, {"start": 1946.27, "end": 1947.23, "word": " company", "probability": 0.78515625}, {"start": 1947.23, "end": 1947.41, "word": " and", "probability": 0.326904296875}, {"start": 1947.41, "end": 1947.75, "word": " what", "probability": 0.60302734375}, {"start": 1947.75, "end": 1947.93, "word": " does", "probability": 0.6748046875}, {"start": 1947.93, "end": 1948.07, "word": " this", "probability": 0.29736328125}, {"start": 1948.07, "end": 1948.25, "word": " open", "probability": 0.8154296875}, {"start": 1948.25, "end": 1948.77, "word": " company", "probability": 0.90380859375}, {"start": 1948.77, "end": 1948.83, "word": " need?", "probability": 0.486328125}, {"start": 1949.41, "end": 1949.79, "word": " id", "probability": 0.405517578125}, {"start": 1949.79, "end": 1950.41, "word": " and", "probability": 0.322265625}, {"start": 1950.41, "end": 1950.77, "word": " name", "probability": 0.93994140625}, {"start": 1950.77, "end": 1951.15, "word": " and", "probability": 0.810546875}, {"start": 1951.15, "end": 1951.33, "word": " capital", "probability": 0.630859375}, {"start": 1951.33, "end": 1952.39, "word": " and", "probability": 0.5595703125}, {"start": 1952.39, "end": 1952.71, "word": " number", "probability": 0.494384765625}, {"start": 1952.71, "end": 1953.35, "word": " of", "probability": 0.9384765625}, {"start": 1953.35, "end": 1953.63, "word": " shares", "probability": 0.4990234375}, {"start": 1953.63, "end": 1953.89, "word": " which", "probability": 0.300048828125}, {"start": 1953.89, "end": 1954.15, "word": " must", "probability": 0.44970703125}, {"start": 1954.15, "end": 1954.63, "word": " also", "probability": 0.705078125}, {"start": 1954.63, "end": 1954.83, "word": " be", "probability": 0.73583984375}, {"start": 1954.83, "end": 1956.09, "word": " attributes", "probability": 0.68212890625}, {"start": 1956.09, "end": 1956.59, "word": " here", "probability": 0.44677734375}, {"start": 1956.59, "end": 1957.07, "word": " so", "probability": 0.487548828125}, {"start": 1957.07, "end": 1957.15, "word": " I", "probability": 0.76806640625}, {"start": 1957.15, "end": 1957.21, "word": " want", "probability": 0.441162109375}, {"start": 1957.21, "end": 1957.25, "word": " to", "probability": 0.97119140625}, {"start": 1957.25, "end": 1957.37, "word": " say", "probability": 0.51611328125}, {"start": 1957.37, "end": 1958.01, "word": " private", "probability": 0.85888671875}, {"start": 1958.01, "end": 1959.37, "word": " string", "probability": 0.79833984375}, {"start": 1959.37, "end": 1960.57, "word": " company", "probability": 0.91015625}, {"start": 1960.57, "end": 1961.45, "word": " id", "probability": 0.9091796875}, {"start": 1961.45, "end": 1962.73, "word": " company", "probability": 0.912109375}], "temperature": 1.0}, {"id": 88, "seek": 198913, "start": 1963.57, "end": 1989.13, "text": "name, int number of shares, and what is the next parameter, is this double or? wait a minute, let me see, this is the stock market, company id, name, double capital, this is double capital", "tokens": [16344, 11, 560, 1230, 295, 12182, 11, 293, 437, 307, 264, 958, 13075, 11, 307, 341, 3834, 420, 30, 1699, 257, 3456, 11, 718, 385, 536, 11, 341, 307, 264, 4127, 2142, 11, 2237, 4496, 11, 1315, 11, 3834, 4238, 11, 341, 307, 3834, 4238], "avg_logprob": -0.47486414404019067, "compression_ratio": 1.5161290322580645, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1963.57, "end": 1964.03, "word": "name,", "probability": 0.347900390625}, {"start": 1964.75, "end": 1965.93, "word": " int", "probability": 0.481689453125}, {"start": 1965.93, "end": 1966.51, "word": " number", "probability": 0.9169921875}, {"start": 1966.51, "end": 1967.71, "word": " of", "probability": 0.96044921875}, {"start": 1967.71, "end": 1968.25, "word": " shares,", "probability": 0.869140625}, {"start": 1970.29, "end": 1970.53, "word": " and", "probability": 0.371337890625}, {"start": 1970.53, "end": 1971.23, "word": " what", "probability": 0.640625}, {"start": 1971.23, "end": 1971.29, "word": " is", "probability": 0.62841796875}, {"start": 1971.29, "end": 1971.35, "word": " the", "probability": 0.837890625}, {"start": 1971.35, "end": 1971.45, "word": " next", "probability": 0.86376953125}, {"start": 1971.45, "end": 1971.75, "word": " parameter,", "probability": 0.97216796875}, {"start": 1972.25, "end": 1972.25, "word": " is", "probability": 0.368896484375}, {"start": 1972.25, "end": 1972.43, "word": " this", "probability": 0.44775390625}, {"start": 1972.43, "end": 1973.23, "word": " double", "probability": 0.59521484375}, {"start": 1973.23, "end": 1973.59, "word": " or?", "probability": 0.70361328125}, {"start": 1974.71, "end": 1975.03, "word": " wait", "probability": 0.312255859375}, {"start": 1975.03, "end": 1975.39, "word": " a", "probability": 0.8994140625}, {"start": 1975.39, "end": 1975.39, "word": " minute,", "probability": 0.451171875}, {"start": 1975.51, "end": 1975.65, "word": " let", "probability": 0.68505859375}, {"start": 1975.65, "end": 1975.65, "word": " me", "probability": 0.88671875}, {"start": 1975.65, "end": 1975.89, "word": " see,", "probability": 0.67236328125}, {"start": 1975.95, "end": 1977.07, "word": " this", "probability": 0.82861328125}, {"start": 1977.07, "end": 1977.09, "word": " is", "probability": 0.92041015625}, {"start": 1977.09, "end": 1977.19, "word": " the", "probability": 0.74365234375}, {"start": 1977.19, "end": 1977.41, "word": " stock", "probability": 0.83447265625}, {"start": 1977.41, "end": 1977.97, "word": " market,", "probability": 0.90087890625}, {"start": 1978.53, "end": 1980.03, "word": " company", "probability": 0.896484375}, {"start": 1980.03, "end": 1980.41, "word": " id,", "probability": 0.4453125}, {"start": 1980.63, "end": 1980.89, "word": " name,", "probability": 0.87451171875}, {"start": 1980.99, "end": 1981.29, "word": " double", "probability": 0.66845703125}, {"start": 1981.29, "end": 1981.89, "word": " capital,", "probability": 0.908203125}, {"start": 1984.77, "end": 1987.45, "word": " this", "probability": 0.80029296875}, {"start": 1987.45, "end": 1987.51, "word": " is", "probability": 0.9267578125}, {"start": 1987.51, "end": 1987.85, "word": " double", "probability": 0.919921875}, {"start": 1987.85, "end": 1989.13, "word": " capital", "probability": 0.89208984375}], "temperature": 1.0}, {"id": 89, "seek": 201733, "start": 1990.79, "end": 2017.33, "text": "Okay, these are the attributes and now I want to create for the attributes these setters and getters Okay, now when I say execute Of course, he made a get company id by himself Leave it, okay, he used the getter and here I want to put the capital", "tokens": [8297, 11, 613, 366, 264, 17212, 293, 586, 286, 528, 281, 1884, 337, 264, 17212, 613, 992, 1559, 293, 483, 1559, 1033, 11, 586, 562, 286, 584, 14483, 2720, 1164, 11, 415, 1027, 257, 483, 2237, 4496, 538, 3647, 9825, 309, 11, 1392, 11, 415, 1143, 264, 483, 391, 293, 510, 286, 528, 281, 829, 264, 4238], "avg_logprob": -0.6007543031511635, "compression_ratio": 1.5974025974025974, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1990.79, "end": 1991.09, "word": "Okay,", "probability": 0.061370849609375}, {"start": 1991.17, "end": 1991.39, "word": " these", "probability": 0.49169921875}, {"start": 1991.39, "end": 1991.45, "word": " are", "probability": 0.91845703125}, {"start": 1991.45, "end": 1991.49, "word": " the", "probability": 0.6259765625}, {"start": 1991.49, "end": 1992.07, "word": " attributes", "probability": 0.85302734375}, {"start": 1992.07, "end": 1992.25, "word": " and", "probability": 0.401123046875}, {"start": 1992.25, "end": 1992.47, "word": " now", "probability": 0.7998046875}, {"start": 1992.47, "end": 1992.61, "word": " I", "probability": 0.75439453125}, {"start": 1992.61, "end": 1992.73, "word": " want", "probability": 0.3046875}, {"start": 1992.73, "end": 1992.75, "word": " to", "probability": 0.9521484375}, {"start": 1992.75, "end": 1992.99, "word": " create", "probability": 0.186767578125}, {"start": 1992.99, "end": 1993.27, "word": " for", "probability": 0.189453125}, {"start": 1993.27, "end": 1993.37, "word": " the", "probability": 0.41748046875}, {"start": 1993.37, "end": 1993.77, "word": " attributes", "probability": 0.7724609375}, {"start": 1993.77, "end": 1993.95, "word": " these", "probability": 0.337158203125}, {"start": 1993.95, "end": 1994.47, "word": " setters", "probability": 0.828857421875}, {"start": 1994.47, "end": 1995.55, "word": " and", "probability": 0.859375}, {"start": 1995.55, "end": 1996.03, "word": " getters", "probability": 0.922119140625}, {"start": 1996.03, "end": 2005.81, "word": " Okay,", "probability": 0.59228515625}, {"start": 2006.17, "end": 2006.53, "word": " now", "probability": 0.7861328125}, {"start": 2006.53, "end": 2006.73, "word": " when", "probability": 0.857421875}, {"start": 2006.73, "end": 2006.83, "word": " I", "probability": 0.97802734375}, {"start": 2006.83, "end": 2006.97, "word": " say", "probability": 0.301025390625}, {"start": 2006.97, "end": 2007.57, "word": " execute", "probability": 0.87939453125}, {"start": 2007.57, "end": 2010.37, "word": " Of", "probability": 0.458740234375}, {"start": 2010.37, "end": 2010.49, "word": " course,", "probability": 0.94921875}, {"start": 2010.59, "end": 2010.67, "word": " he", "probability": 0.401611328125}, {"start": 2010.67, "end": 2011.11, "word": " made", "probability": 0.2247314453125}, {"start": 2011.11, "end": 2011.25, "word": " a", "probability": 0.269775390625}, {"start": 2011.25, "end": 2011.37, "word": " get", "probability": 0.59423828125}, {"start": 2011.37, "end": 2011.75, "word": " company", "probability": 0.52392578125}, {"start": 2011.75, "end": 2012.15, "word": " id", "probability": 0.446044921875}, {"start": 2012.15, "end": 2012.63, "word": " by", "probability": 0.243408203125}, {"start": 2012.63, "end": 2012.63, "word": " himself", "probability": 0.7333984375}, {"start": 2012.63, "end": 2013.03, "word": " Leave", "probability": 0.1705322265625}, {"start": 2013.03, "end": 2013.45, "word": " it,", "probability": 0.90771484375}, {"start": 2013.81, "end": 2014.07, "word": " okay,", "probability": 0.68701171875}, {"start": 2014.33, "end": 2014.45, "word": " he", "probability": 0.315673828125}, {"start": 2014.45, "end": 2014.65, "word": " used", "probability": 0.89111328125}, {"start": 2014.65, "end": 2014.85, "word": " the", "probability": 0.77294921875}, {"start": 2014.85, "end": 2015.09, "word": " getter", "probability": 0.90234375}, {"start": 2015.09, "end": 2015.27, "word": " and", "probability": 0.2093505859375}, {"start": 2015.27, "end": 2016.15, "word": " here", "probability": 0.7587890625}, {"start": 2016.15, "end": 2016.33, "word": " I", "probability": 0.92041015625}, {"start": 2016.33, "end": 2016.43, "word": " want", "probability": 0.7080078125}, {"start": 2016.43, "end": 2016.49, "word": " to", "probability": 0.9658203125}, {"start": 2016.49, "end": 2016.69, "word": " put", "probability": 0.60986328125}, {"start": 2016.69, "end": 2016.93, "word": " the", "probability": 0.451171875}, {"start": 2016.93, "end": 2017.33, "word": " capital", "probability": 0.95166015625}], "temperature": 1.0}, {"id": 90, "seek": 204543, "start": 2018.65, "end": 2045.43, "text": " and here I want to put number of shares now the same idea instead of calling it open company it is now wrapped in class I create an object from open company", "tokens": [293, 510, 286, 528, 281, 829, 1230, 295, 12182, 586, 264, 912, 1558, 2602, 295, 5141, 309, 1269, 2237, 309, 307, 586, 14226, 294, 1508, 286, 1884, 364, 2657, 490, 1269, 2237], "avg_logprob": -0.5160984848484849, "compression_ratio": 1.3893805309734513, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 2018.65, "end": 2018.91, "word": " and", "probability": 0.4453125}, {"start": 2018.91, "end": 2019.11, "word": " here", "probability": 0.68896484375}, {"start": 2019.11, "end": 2019.23, "word": " I", "probability": 0.7216796875}, {"start": 2019.23, "end": 2019.37, "word": " want", "probability": 0.31103515625}, {"start": 2019.37, "end": 2019.43, "word": " to", "probability": 0.9697265625}, {"start": 2019.43, "end": 2019.65, "word": " put", "probability": 0.37451171875}, {"start": 2019.65, "end": 2021.37, "word": " number", "probability": 0.68115234375}, {"start": 2021.37, "end": 2022.57, "word": " of", "probability": 0.93408203125}, {"start": 2022.57, "end": 2022.93, "word": " shares", "probability": 0.86083984375}, {"start": 2022.93, "end": 2028.79, "word": " now", "probability": 0.10870361328125}, {"start": 2028.79, "end": 2029.15, "word": " the", "probability": 0.5185546875}, {"start": 2029.15, "end": 2029.29, "word": " same", "probability": 0.8994140625}, {"start": 2029.29, "end": 2029.77, "word": " idea", "probability": 0.77734375}, {"start": 2029.77, "end": 2034.57, "word": " instead", "probability": 0.31298828125}, {"start": 2034.57, "end": 2034.73, "word": " of", "probability": 0.9609375}, {"start": 2034.73, "end": 2035.21, "word": " calling", "probability": 0.41943359375}, {"start": 2035.21, "end": 2035.71, "word": " it", "probability": 0.30224609375}, {"start": 2035.71, "end": 2036.03, "word": " open", "probability": 0.71923828125}, {"start": 2036.03, "end": 2036.67, "word": " company", "probability": 0.79736328125}, {"start": 2036.67, "end": 2038.15, "word": " it", "probability": 0.400146484375}, {"start": 2038.15, "end": 2040.31, "word": " is", "probability": 0.5859375}, {"start": 2040.31, "end": 2040.31, "word": " now", "probability": 0.470947265625}, {"start": 2040.31, "end": 2040.73, "word": " wrapped", "probability": 0.2437744140625}, {"start": 2040.73, "end": 2041.53, "word": " in", "probability": 0.7197265625}, {"start": 2041.53, "end": 2041.97, "word": " class", "probability": 0.83447265625}, {"start": 2041.97, "end": 2042.67, "word": " I", "probability": 0.69384765625}, {"start": 2042.67, "end": 2042.79, "word": " create", "probability": 0.7607421875}, {"start": 2042.79, "end": 2042.99, "word": " an", "probability": 0.52294921875}, {"start": 2042.99, "end": 2043.23, "word": " object", "probability": 0.9755859375}, {"start": 2043.23, "end": 2043.59, "word": " from", "probability": 0.73876953125}, {"start": 2043.59, "end": 2044.21, "word": " open", "probability": 0.8408203125}, {"start": 2044.21, "end": 2045.43, "word": " company", "probability": 0.888671875}], "temperature": 1.0}, {"id": 91, "seek": 206194, "start": 2047.09, "end": 2061.95, "text": "which is command to new open company and this will take the stock market now c2 will send him the necessary information to buy the company which is the company ID", "tokens": [13690, 307, 5622, 281, 777, 1269, 2237, 293, 341, 486, 747, 264, 4127, 2142, 586, 269, 17, 486, 2845, 796, 264, 4818, 1589, 281, 2256, 264, 2237, 597, 307, 264, 2237, 7348], "avg_logprob": -0.4756155303030303, "compression_ratio": 1.4336283185840708, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 2047.09, "end": 2047.37, "word": "which", "probability": 0.455810546875}, {"start": 2047.37, "end": 2047.51, "word": " is", "probability": 0.845703125}, {"start": 2047.51, "end": 2047.87, "word": " command", "probability": 0.66845703125}, {"start": 2047.87, "end": 2048.23, "word": " to", "probability": 0.55322265625}, {"start": 2048.23, "end": 2049.21, "word": " new", "probability": 0.86376953125}, {"start": 2049.21, "end": 2050.39, "word": " open", "probability": 0.85888671875}, {"start": 2050.39, "end": 2051.85, "word": " company", "probability": 0.92626953125}, {"start": 2051.85, "end": 2053.29, "word": " and", "probability": 0.447509765625}, {"start": 2053.29, "end": 2053.51, "word": " this", "probability": 0.57275390625}, {"start": 2053.51, "end": 2053.65, "word": " will", "probability": 0.29296875}, {"start": 2053.65, "end": 2053.95, "word": " take", "probability": 0.60498046875}, {"start": 2053.95, "end": 2054.07, "word": " the", "probability": 0.460693359375}, {"start": 2054.07, "end": 2054.37, "word": " stock", "probability": 0.83349609375}, {"start": 2054.37, "end": 2054.95, "word": " market", "probability": 0.90087890625}, {"start": 2054.95, "end": 2057.11, "word": " now", "probability": 0.35009765625}, {"start": 2057.11, "end": 2058.19, "word": " c2", "probability": 0.501708984375}, {"start": 2058.19, "end": 2058.35, "word": " will", "probability": 0.403564453125}, {"start": 2058.35, "end": 2058.57, "word": " send", "probability": 0.64501953125}, {"start": 2058.57, "end": 2058.71, "word": " him", "probability": 0.54638671875}, {"start": 2058.71, "end": 2058.75, "word": " the", "probability": 0.705078125}, {"start": 2058.75, "end": 2059.53, "word": " necessary", "probability": 0.3056640625}, {"start": 2059.53, "end": 2059.53, "word": " information", "probability": 0.669921875}, {"start": 2059.53, "end": 2060.09, "word": " to", "probability": 0.8125}, {"start": 2060.09, "end": 2060.37, "word": " buy", "probability": 0.82861328125}, {"start": 2060.37, "end": 2060.95, "word": " the", "probability": 0.79345703125}, {"start": 2060.95, "end": 2061.17, "word": " company", "probability": 0.85595703125}, {"start": 2061.17, "end": 2061.37, "word": " which", "probability": 0.54638671875}, {"start": 2061.37, "end": 2061.53, "word": " is", "probability": 0.927734375}, {"start": 2061.53, "end": 2061.61, "word": " the", "probability": 0.72021484375}, {"start": 2061.61, "end": 2061.81, "word": " company", "probability": 0.67724609375}, {"start": 2061.81, "end": 2061.95, "word": " ID", "probability": 0.4384765625}], "temperature": 1.0}, {"id": 92, "seek": 209311, "start": 2067.05, "end": 2093.11, "text": " 6 company name apple for example c2 6 number of shares 10,000 and 6 capital for example okay because I also want to implement this thing all I have to do is c to date", "tokens": [1386, 2237, 1315, 10606, 337, 1365, 269, 17, 1386, 1230, 295, 12182, 1266, 11, 1360, 293, 1386, 4238, 337, 1365, 1392, 570, 286, 611, 528, 281, 4445, 341, 551, 439, 286, 362, 281, 360, 307, 269, 281, 4002], "avg_logprob": -0.4775641102057237, "compression_ratio": 1.3577235772357723, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 2067.05, "end": 2067.53, "word": " 6", "probability": 0.28271484375}, {"start": 2067.53, "end": 2068.51, "word": " company", "probability": 0.53466796875}, {"start": 2068.51, "end": 2069.11, "word": " name", "probability": 0.853515625}, {"start": 2069.11, "end": 2069.99, "word": " apple", "probability": 0.386474609375}, {"start": 2069.99, "end": 2070.79, "word": " for", "probability": 0.6875}, {"start": 2070.79, "end": 2070.93, "word": " example", "probability": 0.93994140625}, {"start": 2070.93, "end": 2072.65, "word": " c2", "probability": 0.6358642578125}, {"start": 2072.65, "end": 2073.59, "word": " 6", "probability": 0.783203125}, {"start": 2073.59, "end": 2074.59, "word": " number", "probability": 0.94287109375}, {"start": 2074.59, "end": 2074.89, "word": " of", "probability": 0.97802734375}, {"start": 2074.89, "end": 2075.35, "word": " shares", "probability": 0.86669921875}, {"start": 2075.35, "end": 2076.73, "word": " 10", "probability": 0.339111328125}, {"start": 2076.73, "end": 2077.25, "word": ",000", "probability": 0.7030029296875}, {"start": 2077.25, "end": 2078.97, "word": " and", "probability": 0.724609375}, {"start": 2078.97, "end": 2079.47, "word": " 6", "probability": 0.94873046875}, {"start": 2079.47, "end": 2082.51, "word": " capital", "probability": 0.84130859375}, {"start": 2082.51, "end": 2084.27, "word": " for", "probability": 0.73193359375}, {"start": 2084.27, "end": 2085.67, "word": " example", "probability": 0.9716796875}, {"start": 2085.67, "end": 2086.59, "word": " okay", "probability": 0.16796875}, {"start": 2086.59, "end": 2089.03, "word": " because", "probability": 0.244140625}, {"start": 2089.03, "end": 2089.27, "word": " I", "probability": 0.65283203125}, {"start": 2089.27, "end": 2089.41, "word": " also", "probability": 0.72021484375}, {"start": 2089.41, "end": 2089.77, "word": " want", "probability": 0.82763671875}, {"start": 2089.77, "end": 2089.93, "word": " to", "probability": 0.9658203125}, {"start": 2089.93, "end": 2090.17, "word": " implement", "probability": 0.325439453125}, {"start": 2090.17, "end": 2090.79, "word": " this", "probability": 0.845703125}, {"start": 2090.79, "end": 2090.79, "word": " thing", "probability": 0.257080078125}, {"start": 2090.79, "end": 2091.21, "word": " all", "probability": 0.318359375}, {"start": 2091.21, "end": 2091.45, "word": " I", "probability": 0.453857421875}, {"start": 2091.45, "end": 2091.53, "word": " have", "probability": 0.744140625}, {"start": 2091.53, "end": 2091.53, "word": " to", "probability": 0.962890625}, {"start": 2091.53, "end": 2091.77, "word": " do", "probability": 0.96044921875}, {"start": 2091.77, "end": 2092.01, "word": " is", "probability": 0.7236328125}, {"start": 2092.01, "end": 2092.59, "word": " c", "probability": 0.75439453125}, {"start": 2092.59, "end": 2092.79, "word": " to", "probability": 0.438720703125}, {"start": 2092.79, "end": 2093.11, "word": " date", "probability": 0.5673828125}], "temperature": 1.0}, {"id": 93, "seek": 210004, "start": 2093.76, "end": 2100.04, "text": "Execute طيب لحد تلان احنا فعليا لفنا لفة كبيرة", "tokens": [11149, 3045, 1169, 23032, 1829, 3555, 5296, 24401, 6055, 1211, 7649, 1975, 5016, 8315, 6156, 3615, 20292, 995, 5296, 5172, 8315, 5296, 5172, 3660, 9122, 3555, 48923], "avg_logprob": -0.26074218430689405, "compression_ratio": 0.9871794871794872, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 2093.76, "end": 2094.82, "word": "Execute", "probability": 0.7351481119791666}, {"start": 2094.82, "end": 2095.26, "word": " طيب", "probability": 0.5395914713541666}, {"start": 2095.26, "end": 2095.82, "word": " لحد", "probability": 0.828857421875}, {"start": 2095.82, "end": 2096.26, "word": " تلان", "probability": 0.7023111979166666}, {"start": 2096.26, "end": 2097.02, "word": " احنا", "probability": 0.8860677083333334}, {"start": 2097.02, "end": 2097.9, "word": " فعليا", "probability": 0.8944091796875}, {"start": 2097.9, "end": 2099.46, "word": " لفنا", "probability": 0.8836263020833334}, {"start": 2099.46, "end": 2099.74, "word": " لفة", "probability": 0.92822265625}, {"start": 2099.74, "end": 2100.04, "word": " كبيرة", "probability": 0.9763997395833334}], "temperature": 1.0}, {"id": 94, "seek": 212798, "start": 2101.34, "end": 2127.98, "text": " In the beginning, I had the stock market and I wanted to execute any operation, but I used the method that existed in it. But instead of having a method call, I turned every call to a method and turned it into a Java object. What is the goal of this process? The goal is as follows. Look with me. I don't want to execute these commands right now. This execute has nothing to do with it. I want to remove this line and this line.", "tokens": [682, 264, 2863, 11, 286, 632, 264, 4127, 2142, 293, 286, 1415, 281, 14483, 604, 6916, 11, 457, 286, 1143, 264, 3170, 300, 13135, 294, 309, 13, 583, 2602, 295, 1419, 257, 3170, 818, 11, 286, 3574, 633, 818, 281, 257, 3170, 293, 3574, 309, 666, 257, 10745, 2657, 13, 708, 307, 264, 3387, 295, 341, 1399, 30, 440, 3387, 307, 382, 10002, 13, 2053, 365, 385, 13, 286, 500, 380, 528, 281, 14483, 613, 16901, 558, 586, 13, 639, 14483, 575, 1825, 281, 360, 365, 309, 13, 286, 528, 281, 4159, 341, 1622, 293, 341, 1622, 13], "avg_logprob": -0.5445075890030524, "compression_ratio": 1.7228915662650603, "no_speech_prob": 1.5735626220703125e-05, "words": [{"start": 2101.34, "end": 2101.76, "word": " In", "probability": 0.1011962890625}, {"start": 2101.76, "end": 2101.9, "word": " the", "probability": 0.87890625}, {"start": 2101.9, "end": 2102.16, "word": " beginning,", "probability": 0.80078125}, {"start": 2102.36, "end": 2103.22, "word": " I", "probability": 0.378173828125}, {"start": 2103.22, "end": 2103.36, "word": " had", "probability": 0.31103515625}, {"start": 2103.36, "end": 2103.48, "word": " the", "probability": 0.2371826171875}, {"start": 2103.48, "end": 2103.72, "word": " stock", "probability": 0.560546875}, {"start": 2103.72, "end": 2104.14, "word": " market", "probability": 0.90283203125}, {"start": 2104.14, "end": 2104.22, "word": " and", "probability": 0.389404296875}, {"start": 2104.22, "end": 2104.26, "word": " I", "probability": 0.634765625}, {"start": 2104.26, "end": 2104.38, "word": " wanted", "probability": 0.5263671875}, {"start": 2104.38, "end": 2104.46, "word": " to", "probability": 0.95849609375}, {"start": 2104.46, "end": 2104.66, "word": " execute", "probability": 0.52099609375}, {"start": 2104.66, "end": 2104.82, "word": " any", "probability": 0.5615234375}, {"start": 2104.82, "end": 2105.16, "word": " operation,", "probability": 0.313232421875}, {"start": 2105.28, "end": 2105.42, "word": " but", "probability": 0.351806640625}, {"start": 2105.42, "end": 2105.48, "word": " I", "probability": 0.463623046875}, {"start": 2105.48, "end": 2105.48, "word": " used", "probability": 0.1221923828125}, {"start": 2105.48, "end": 2105.7, "word": " the", "probability": 0.71923828125}, {"start": 2105.7, "end": 2105.94, "word": " method", "probability": 0.5908203125}, {"start": 2105.94, "end": 2106.04, "word": " that", "probability": 0.315673828125}, {"start": 2106.04, "end": 2106.3, "word": " existed", "probability": 0.2139892578125}, {"start": 2106.3, "end": 2106.48, "word": " in", "probability": 0.378662109375}, {"start": 2106.48, "end": 2107.04, "word": " it.", "probability": 0.794921875}, {"start": 2107.26, "end": 2107.46, "word": " But", "probability": 0.66552734375}, {"start": 2107.46, "end": 2108.34, "word": " instead", "probability": 0.337646484375}, {"start": 2108.34, "end": 2109.02, "word": " of", "probability": 0.96435546875}, {"start": 2109.02, "end": 2109.34, "word": " having", "probability": 0.64453125}, {"start": 2109.34, "end": 2109.52, "word": " a", "probability": 0.6640625}, {"start": 2109.52, "end": 2109.72, "word": " method", "probability": 0.7978515625}, {"start": 2109.72, "end": 2110.04, "word": " call,", "probability": 0.5830078125}, {"start": 2110.22, "end": 2110.22, "word": " I", "probability": 0.9375}, {"start": 2110.22, "end": 2110.56, "word": " turned", "probability": 0.311279296875}, {"start": 2110.56, "end": 2111.78, "word": " every", "probability": 0.35107421875}, {"start": 2111.78, "end": 2113.6, "word": " call", "probability": 0.283935546875}, {"start": 2113.6, "end": 2113.88, "word": " to", "probability": 0.5712890625}, {"start": 2113.88, "end": 2113.92, "word": " a", "probability": 0.394287109375}, {"start": 2113.92, "end": 2114.2, "word": " method", "probability": 0.6220703125}, {"start": 2114.2, "end": 2114.36, "word": " and", "probability": 0.5078125}, {"start": 2114.36, "end": 2114.62, "word": " turned", "probability": 0.365234375}, {"start": 2114.62, "end": 2114.76, "word": " it", "probability": 0.7783203125}, {"start": 2114.76, "end": 2114.8, "word": " into", "probability": 0.61962890625}, {"start": 2114.8, "end": 2114.9, "word": " a", "probability": 0.77685546875}, {"start": 2114.9, "end": 2115.22, "word": " Java", "probability": 0.64990234375}, {"start": 2115.22, "end": 2116.26, "word": " object.", "probability": 0.89892578125}, {"start": 2116.74, "end": 2117.16, "word": " What", "probability": 0.42626953125}, {"start": 2117.16, "end": 2117.2, "word": " is", "probability": 0.81201171875}, {"start": 2117.2, "end": 2117.3, "word": " the", "probability": 0.90966796875}, {"start": 2117.3, "end": 2117.48, "word": " goal", "probability": 0.363525390625}, {"start": 2117.48, "end": 2117.64, "word": " of", "probability": 0.869140625}, {"start": 2117.64, "end": 2117.76, "word": " this", "probability": 0.8291015625}, {"start": 2117.76, "end": 2118.0, "word": " process?", "probability": 0.1607666015625}, {"start": 2118.34, "end": 2118.42, "word": " The", "probability": 0.50341796875}, {"start": 2118.42, "end": 2118.6, "word": " goal", "probability": 0.85546875}, {"start": 2118.6, "end": 2118.82, "word": " is", "probability": 0.90087890625}, {"start": 2118.82, "end": 2119.02, "word": " as", "probability": 0.4658203125}, {"start": 2119.02, "end": 2119.08, "word": " follows.", "probability": 0.88427734375}, {"start": 2119.5, "end": 2119.6, "word": " Look", "probability": 0.357421875}, {"start": 2119.6, "end": 2119.78, "word": " with", "probability": 0.46484375}, {"start": 2119.78, "end": 2120.02, "word": " me.", "probability": 0.96630859375}, {"start": 2121.52, "end": 2121.94, "word": " I", "probability": 0.81103515625}, {"start": 2121.94, "end": 2122.08, "word": " don't", "probability": 0.708251953125}, {"start": 2122.08, "end": 2122.3, "word": " want", "probability": 0.8798828125}, {"start": 2122.3, "end": 2122.36, "word": " to", "probability": 0.95361328125}, {"start": 2122.36, "end": 2122.62, "word": " execute", "probability": 0.8798828125}, {"start": 2122.62, "end": 2122.66, "word": " these", "probability": 0.77197265625}, {"start": 2122.66, "end": 2122.66, "word": " commands", "probability": 0.7734375}, {"start": 2122.66, "end": 2122.88, "word": " right", "probability": 0.456298828125}, {"start": 2122.88, "end": 2123.22, "word": " now.", "probability": 0.939453125}, {"start": 2123.78, "end": 2124.04, "word": " This", "probability": 0.27001953125}, {"start": 2124.04, "end": 2124.94, "word": " execute", "probability": 0.74951171875}, {"start": 2124.94, "end": 2125.32, "word": " has", "probability": 0.4814453125}, {"start": 2125.32, "end": 2125.34, "word": " nothing", "probability": 0.63134765625}, {"start": 2125.34, "end": 2125.44, "word": " to", "probability": 0.9033203125}, {"start": 2125.44, "end": 2125.44, "word": " do", "probability": 0.96826171875}, {"start": 2125.44, "end": 2125.6, "word": " with", "probability": 0.81884765625}, {"start": 2125.6, "end": 2125.6, "word": " it.", "probability": 0.58740234375}, {"start": 2125.84, "end": 2125.96, "word": " I", "probability": 0.900390625}, {"start": 2125.96, "end": 2126.08, "word": " want", "probability": 0.6572265625}, {"start": 2126.08, "end": 2126.16, "word": " to", "probability": 0.96337890625}, {"start": 2126.16, "end": 2126.32, "word": " remove", "probability": 0.74072265625}, {"start": 2126.32, "end": 2126.46, "word": " this", "probability": 0.876953125}, {"start": 2126.46, "end": 2126.7, "word": " line", "probability": 0.83935546875}, {"start": 2126.7, "end": 2127.36, "word": " and", "probability": 0.814453125}, {"start": 2127.36, "end": 2127.66, "word": " this", "probability": 0.55615234375}, {"start": 2127.66, "end": 2127.98, "word": " line.", "probability": 0.8388671875}], "temperature": 1.0}, {"id": 95, "seek": 214575, "start": 2128.91, "end": 2145.75, "text": "because really every object represents a whole thing, its information is inside this object but I don't want to implement them now, I want to implement them later in time for example, you went and did a new class and you want to implement it as a stock agent", "tokens": [17566, 534, 633, 2657, 8855, 257, 1379, 551, 11, 1080, 1589, 307, 1854, 341, 2657, 457, 286, 500, 380, 528, 281, 4445, 552, 586, 11, 286, 528, 281, 4445, 552, 1780, 294, 565, 337, 1365, 11, 291, 1437, 293, 630, 257, 777, 1508, 293, 291, 528, 281, 4445, 309, 382, 257, 4127, 9461], "avg_logprob": -0.5549768441253238, "compression_ratio": 1.6538461538461537, "no_speech_prob": 1.3709068298339844e-06, "words": [{"start": 2128.91, "end": 2129.23, "word": "because", "probability": 0.307861328125}, {"start": 2129.23, "end": 2129.61, "word": " really", "probability": 0.2298583984375}, {"start": 2129.61, "end": 2130.59, "word": " every", "probability": 0.40380859375}, {"start": 2130.59, "end": 2130.97, "word": " object", "probability": 0.95068359375}, {"start": 2130.97, "end": 2131.47, "word": " represents", "probability": 0.337890625}, {"start": 2131.47, "end": 2131.79, "word": " a", "probability": 0.61328125}, {"start": 2131.79, "end": 2132.31, "word": " whole", "probability": 0.493408203125}, {"start": 2132.31, "end": 2132.33, "word": " thing,", "probability": 0.57421875}, {"start": 2132.79, "end": 2132.89, "word": " its", "probability": 0.296630859375}, {"start": 2132.89, "end": 2133.33, "word": " information", "probability": 0.64501953125}, {"start": 2133.33, "end": 2133.55, "word": " is", "probability": 0.6259765625}, {"start": 2133.55, "end": 2133.95, "word": " inside", "probability": 0.33984375}, {"start": 2133.95, "end": 2135.21, "word": " this", "probability": 0.313232421875}, {"start": 2135.21, "end": 2135.59, "word": " object", "probability": 0.94921875}, {"start": 2135.59, "end": 2136.39, "word": " but", "probability": 0.2357177734375}, {"start": 2136.39, "end": 2136.87, "word": " I", "probability": 0.71044921875}, {"start": 2136.87, "end": 2136.93, "word": " don't", "probability": 0.849853515625}, {"start": 2136.93, "end": 2137.07, "word": " want", "probability": 0.85986328125}, {"start": 2137.07, "end": 2137.19, "word": " to", "probability": 0.955078125}, {"start": 2137.19, "end": 2137.37, "word": " implement", "probability": 0.6015625}, {"start": 2137.37, "end": 2137.47, "word": " them", "probability": 0.609375}, {"start": 2137.47, "end": 2137.71, "word": " now,", "probability": 0.71923828125}, {"start": 2137.77, "end": 2137.81, "word": " I", "probability": 0.76416015625}, {"start": 2137.81, "end": 2137.91, "word": " want", "probability": 0.8125}, {"start": 2137.91, "end": 2137.99, "word": " to", "probability": 0.93017578125}, {"start": 2137.99, "end": 2138.17, "word": " implement", "probability": 0.87744140625}, {"start": 2138.17, "end": 2138.27, "word": " them", "probability": 0.892578125}, {"start": 2138.27, "end": 2139.01, "word": " later", "probability": 0.78955078125}, {"start": 2139.01, "end": 2139.23, "word": " in", "probability": 0.095703125}, {"start": 2139.23, "end": 2139.23, "word": " time", "probability": 0.5869140625}, {"start": 2139.23, "end": 2140.27, "word": " for", "probability": 0.1986083984375}, {"start": 2140.27, "end": 2140.27, "word": " example,", "probability": 0.9208984375}, {"start": 2140.29, "end": 2140.37, "word": " you", "probability": 0.55810546875}, {"start": 2140.37, "end": 2140.51, "word": " went", "probability": 0.39599609375}, {"start": 2140.51, "end": 2140.65, "word": " and", "probability": 0.61181640625}, {"start": 2140.65, "end": 2140.81, "word": " did", "probability": 0.27294921875}, {"start": 2140.81, "end": 2140.93, "word": " a", "probability": 0.958984375}, {"start": 2140.93, "end": 2140.93, "word": " new", "probability": 0.8896484375}, {"start": 2140.93, "end": 2141.57, "word": " class", "probability": 0.9384765625}, {"start": 2141.57, "end": 2143.63, "word": " and", "probability": 0.305908203125}, {"start": 2143.63, "end": 2143.63, "word": " you", "probability": 0.73583984375}, {"start": 2143.63, "end": 2143.79, "word": " want", "probability": 0.85400390625}, {"start": 2143.79, "end": 2143.87, "word": " to", "probability": 0.958984375}, {"start": 2143.87, "end": 2144.11, "word": " implement", "probability": 0.884765625}, {"start": 2144.11, "end": 2144.21, "word": " it", "probability": 0.88916015625}, {"start": 2144.21, "end": 2144.93, "word": " as", "probability": 0.32763671875}, {"start": 2144.93, "end": 2144.97, "word": " a", "probability": 0.833984375}, {"start": 2144.97, "end": 2145.27, "word": " stock", "probability": 0.80810546875}, {"start": 2145.27, "end": 2145.75, "word": " agent", "probability": 0.8994140625}], "temperature": 1.0}, {"id": 96, "seek": 217423, "start": 2148.14, "end": 2174.24, "text": "Action Stock Agent, which is the client that works in the stock market. This is supposed to come at the end of the day to take all the commands and execute them. Okay? Inside this Stock Agent, we made a private list that takes an object of stock type and this is called commands-new-array-list", "tokens": [32, 882, 17857, 27174, 11, 597, 307, 264, 6423, 300, 1985, 294, 264, 4127, 2142, 13, 639, 307, 3442, 281, 808, 412, 264, 917, 295, 264, 786, 281, 747, 439, 264, 16901, 293, 14483, 552, 13, 1033, 30, 15123, 341, 17857, 27174, 11, 321, 1027, 257, 4551, 1329, 300, 2516, 364, 2657, 295, 4127, 2010, 293, 341, 307, 1219, 16901, 12, 7686, 12, 2284, 320, 12, 8264], "avg_logprob": -0.573529402999317, "compression_ratio": 1.575268817204301, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2148.14, "end": 2148.48, "word": "Action", "probability": 0.54437255859375}, {"start": 2148.48, "end": 2148.76, "word": " Stock", "probability": 0.6142578125}, {"start": 2148.76, "end": 2149.2, "word": " Agent,", "probability": 0.82177734375}, {"start": 2149.8, "end": 2149.84, "word": " which", "probability": 0.369140625}, {"start": 2149.84, "end": 2149.94, "word": " is", "probability": 0.8896484375}, {"start": 2149.94, "end": 2150.06, "word": " the", "probability": 0.7294921875}, {"start": 2150.06, "end": 2150.32, "word": " client", "probability": 0.2122802734375}, {"start": 2150.32, "end": 2150.9, "word": " that", "probability": 0.40771484375}, {"start": 2150.9, "end": 2151.2, "word": " works", "probability": 0.6123046875}, {"start": 2151.2, "end": 2151.36, "word": " in", "probability": 0.486083984375}, {"start": 2151.36, "end": 2151.42, "word": " the", "probability": 0.77783203125}, {"start": 2151.42, "end": 2151.6, "word": " stock", "probability": 0.716796875}, {"start": 2151.6, "end": 2151.72, "word": " market.", "probability": 0.525390625}, {"start": 2152.1, "end": 2152.24, "word": " This", "probability": 0.394287109375}, {"start": 2152.24, "end": 2152.26, "word": " is", "probability": 0.194580078125}, {"start": 2152.26, "end": 2152.6, "word": " supposed", "probability": 0.44482421875}, {"start": 2152.6, "end": 2152.72, "word": " to", "probability": 0.96142578125}, {"start": 2152.72, "end": 2152.86, "word": " come", "probability": 0.53369140625}, {"start": 2152.86, "end": 2153.0, "word": " at", "probability": 0.60302734375}, {"start": 2153.0, "end": 2153.08, "word": " the", "probability": 0.9248046875}, {"start": 2153.08, "end": 2153.08, "word": " end", "probability": 0.91796875}, {"start": 2153.08, "end": 2153.12, "word": " of", "probability": 0.96923828125}, {"start": 2153.12, "end": 2153.22, "word": " the", "probability": 0.89013671875}, {"start": 2153.22, "end": 2153.42, "word": " day", "probability": 0.970703125}, {"start": 2153.42, "end": 2153.62, "word": " to", "probability": 0.24658203125}, {"start": 2153.62, "end": 2154.94, "word": " take", "probability": 0.433349609375}, {"start": 2154.94, "end": 2155.12, "word": " all", "probability": 0.74658203125}, {"start": 2155.12, "end": 2155.14, "word": " the", "probability": 0.646484375}, {"start": 2155.14, "end": 2155.56, "word": " commands", "probability": 0.77685546875}, {"start": 2155.56, "end": 2156.52, "word": " and", "probability": 0.86328125}, {"start": 2156.52, "end": 2156.82, "word": " execute", "probability": 0.384033203125}, {"start": 2156.82, "end": 2157.46, "word": " them.", "probability": 0.85205078125}, {"start": 2157.56, "end": 2157.78, "word": " Okay?", "probability": 0.1856689453125}, {"start": 2158.36, "end": 2158.56, "word": " Inside", "probability": 0.6162109375}, {"start": 2158.56, "end": 2158.72, "word": " this", "probability": 0.79736328125}, {"start": 2158.72, "end": 2158.94, "word": " Stock", "probability": 0.7099609375}, {"start": 2158.94, "end": 2159.34, "word": " Agent,", "probability": 0.91162109375}, {"start": 2160.14, "end": 2160.54, "word": " we", "probability": 0.81201171875}, {"start": 2160.54, "end": 2160.7, "word": " made", "probability": 0.2452392578125}, {"start": 2160.7, "end": 2161.46, "word": " a", "probability": 0.92578125}, {"start": 2161.46, "end": 2161.9, "word": " private", "probability": 0.78955078125}, {"start": 2161.9, "end": 2162.8, "word": " list", "probability": 0.91748046875}, {"start": 2162.8, "end": 2163.56, "word": " that", "probability": 0.456787109375}, {"start": 2163.56, "end": 2163.84, "word": " takes", "probability": 0.759765625}, {"start": 2163.84, "end": 2164.48, "word": " an", "probability": 0.36328125}, {"start": 2164.48, "end": 2164.48, "word": " object", "probability": 0.9755859375}, {"start": 2164.48, "end": 2165.4, "word": " of", "probability": 0.69580078125}, {"start": 2165.4, "end": 2166.06, "word": " stock", "probability": 0.29345703125}, {"start": 2166.06, "end": 2166.64, "word": " type", "probability": 0.8828125}, {"start": 2166.64, "end": 2170.18, "word": " and", "probability": 0.3154296875}, {"start": 2170.18, "end": 2170.42, "word": " this", "probability": 0.50390625}, {"start": 2170.42, "end": 2170.46, "word": " is", "probability": 0.63232421875}, {"start": 2170.46, "end": 2170.76, "word": " called", "probability": 0.46826171875}, {"start": 2170.76, "end": 2172.06, "word": " commands", "probability": 0.497314453125}, {"start": 2172.06, "end": 2172.68, "word": "-new", "probability": 0.509033203125}, {"start": 2172.68, "end": 2173.9, "word": "-array", "probability": 0.8098958333333334}, {"start": 2173.9, "end": 2174.24, "word": "-list", "probability": 0.632080078125}], "temperature": 1.0}, {"id": 97, "seek": 221471, "start": 2186.93, "end": 2214.71, "text": " Ok, the stock agent has a list of what? Of commands, and this list takes objects of what type guys? Stock command, because I want to make a method public void so that I can add a command to this list, because this is a private list, right? I can't reach it, so I have to do this, its name is addStockCommand, what will this take? object of type StockCommand, it will be C, in order to go and tell the commands to add who?", "tokens": [3477, 11, 264, 4127, 9461, 575, 257, 1329, 295, 437, 30, 2720, 16901, 11, 293, 341, 1329, 2516, 6565, 295, 437, 2010, 1074, 30, 17857, 5622, 11, 570, 286, 528, 281, 652, 257, 3170, 1908, 22009, 370, 300, 286, 393, 909, 257, 5622, 281, 341, 1329, 11, 570, 341, 307, 257, 4551, 1329, 11, 558, 30, 286, 393, 380, 2524, 309, 11, 370, 286, 362, 281, 360, 341, 11, 1080, 1315, 307, 909, 4520, 1560, 39206, 474, 11, 437, 486, 341, 747, 30, 2657, 295, 2010, 17857, 39206, 474, 11, 309, 486, 312, 383, 11, 294, 1668, 281, 352, 293, 980, 264, 16901, 281, 909, 567, 30], "avg_logprob": -0.4568865790411278, "compression_ratio": 1.780590717299578, "no_speech_prob": 2.9802322387695312e-06, "words": [{"start": 2186.93, "end": 2187.33, "word": " Ok,", "probability": 0.154296875}, {"start": 2187.71, "end": 2187.87, "word": " the", "probability": 0.4921875}, {"start": 2187.87, "end": 2188.05, "word": " stock", "probability": 0.6025390625}, {"start": 2188.05, "end": 2188.35, "word": " agent", "probability": 0.8544921875}, {"start": 2188.35, "end": 2188.57, "word": " has", "probability": 0.84814453125}, {"start": 2188.57, "end": 2188.65, "word": " a", "probability": 0.91796875}, {"start": 2188.65, "end": 2188.87, "word": " list", "probability": 0.8642578125}, {"start": 2188.87, "end": 2189.03, "word": " of", "probability": 0.94091796875}, {"start": 2189.03, "end": 2189.31, "word": " what?", "probability": 0.59912109375}, {"start": 2189.67, "end": 2190.01, "word": " Of", "probability": 0.464111328125}, {"start": 2190.01, "end": 2190.35, "word": " commands,", "probability": 0.7060546875}, {"start": 2190.47, "end": 2190.51, "word": " and", "probability": 0.8134765625}, {"start": 2190.51, "end": 2190.57, "word": " this", "probability": 0.6904296875}, {"start": 2190.57, "end": 2190.73, "word": " list", "probability": 0.90283203125}, {"start": 2190.73, "end": 2191.15, "word": " takes", "probability": 0.65087890625}, {"start": 2191.15, "end": 2191.53, "word": " objects", "probability": 0.8994140625}, {"start": 2191.53, "end": 2191.67, "word": " of", "probability": 0.5751953125}, {"start": 2191.67, "end": 2192.07, "word": " what", "probability": 0.6845703125}, {"start": 2192.07, "end": 2192.29, "word": " type", "probability": 0.38134765625}, {"start": 2192.29, "end": 2192.43, "word": " guys?", "probability": 0.36474609375}, {"start": 2193.29, "end": 2193.69, "word": " Stock", "probability": 0.736328125}, {"start": 2193.69, "end": 2194.03, "word": " command,", "probability": 0.4541015625}, {"start": 2194.21, "end": 2194.45, "word": " because", "probability": 0.61865234375}, {"start": 2194.45, "end": 2194.65, "word": " I", "probability": 0.9111328125}, {"start": 2194.65, "end": 2194.81, "word": " want", "probability": 0.474365234375}, {"start": 2194.81, "end": 2194.81, "word": " to", "probability": 0.96826171875}, {"start": 2194.81, "end": 2194.95, "word": " make", "probability": 0.48779296875}, {"start": 2194.95, "end": 2195.05, "word": " a", "probability": 0.59326171875}, {"start": 2195.05, "end": 2195.43, "word": " method", "probability": 0.88525390625}, {"start": 2195.43, "end": 2196.35, "word": " public", "probability": 0.6396484375}, {"start": 2196.35, "end": 2196.85, "word": " void", "probability": 0.85546875}, {"start": 2196.85, "end": 2197.15, "word": " so", "probability": 0.265625}, {"start": 2197.15, "end": 2197.31, "word": " that", "probability": 0.50732421875}, {"start": 2197.31, "end": 2197.41, "word": " I", "probability": 0.98779296875}, {"start": 2197.41, "end": 2197.57, "word": " can", "probability": 0.9140625}, {"start": 2197.57, "end": 2197.85, "word": " add", "probability": 0.90087890625}, {"start": 2197.85, "end": 2198.03, "word": " a", "probability": 0.7607421875}, {"start": 2198.03, "end": 2198.25, "word": " command", "probability": 0.8623046875}, {"start": 2198.25, "end": 2198.43, "word": " to", "probability": 0.72314453125}, {"start": 2198.43, "end": 2198.49, "word": " this", "probability": 0.91455078125}, {"start": 2198.49, "end": 2198.93, "word": " list,", "probability": 0.9326171875}, {"start": 2199.25, "end": 2199.39, "word": " because", "probability": 0.427001953125}, {"start": 2199.39, "end": 2199.55, "word": " this", "probability": 0.86474609375}, {"start": 2199.55, "end": 2199.71, "word": " is", "probability": 0.58447265625}, {"start": 2199.71, "end": 2199.85, "word": " a", "probability": 0.88916015625}, {"start": 2199.85, "end": 2200.13, "word": " private", "probability": 0.91015625}, {"start": 2200.13, "end": 2200.17, "word": " list,", "probability": 0.921875}, {"start": 2200.33, "end": 2200.45, "word": " right?", "probability": 0.63232421875}, {"start": 2200.49, "end": 2200.61, "word": " I", "probability": 0.85205078125}, {"start": 2200.61, "end": 2200.83, "word": " can't", "probability": 0.731689453125}, {"start": 2200.83, "end": 2201.05, "word": " reach", "probability": 0.326416015625}, {"start": 2201.05, "end": 2201.29, "word": " it,", "probability": 0.88134765625}, {"start": 2201.75, "end": 2201.91, "word": " so", "probability": 0.9140625}, {"start": 2201.91, "end": 2202.01, "word": " I", "probability": 0.8955078125}, {"start": 2202.01, "end": 2202.11, "word": " have", "probability": 0.76953125}, {"start": 2202.11, "end": 2202.15, "word": " to", "probability": 0.970703125}, {"start": 2202.15, "end": 2202.33, "word": " do", "probability": 0.78369140625}, {"start": 2202.33, "end": 2202.57, "word": " this,", "probability": 0.83837890625}, {"start": 2202.59, "end": 2202.69, "word": " its", "probability": 0.286865234375}, {"start": 2202.69, "end": 2202.89, "word": " name", "probability": 0.8583984375}, {"start": 2202.89, "end": 2203.03, "word": " is", "probability": 0.9404296875}, {"start": 2203.03, "end": 2205.79, "word": " addStockCommand,", "probability": 0.7408203125}, {"start": 2205.97, "end": 2206.25, "word": " what", "probability": 0.81201171875}, {"start": 2206.25, "end": 2206.37, "word": " will", "probability": 0.490478515625}, {"start": 2206.37, "end": 2206.85, "word": " this", "probability": 0.49267578125}, {"start": 2206.85, "end": 2206.85, "word": " take?", "probability": 0.448974609375}, {"start": 2207.37, "end": 2207.77, "word": " object", "probability": 0.35546875}, {"start": 2207.77, "end": 2207.91, "word": " of", "probability": 0.9326171875}, {"start": 2207.91, "end": 2208.13, "word": " type", "probability": 0.3046875}, {"start": 2208.13, "end": 2209.19, "word": " StockCommand,", "probability": 0.7486979166666666}, {"start": 2210.79, "end": 2211.05, "word": " it", "probability": 0.44140625}, {"start": 2211.05, "end": 2211.05, "word": " will", "probability": 0.64697265625}, {"start": 2211.05, "end": 2211.21, "word": " be", "probability": 0.5126953125}, {"start": 2211.21, "end": 2211.43, "word": " C,", "probability": 0.5791015625}, {"start": 2212.23, "end": 2212.39, "word": " in", "probability": 0.272705078125}, {"start": 2212.39, "end": 2212.57, "word": " order", "probability": 0.92236328125}, {"start": 2212.57, "end": 2212.69, "word": " to", "probability": 0.88525390625}, {"start": 2212.69, "end": 2212.81, "word": " go", "probability": 0.740234375}, {"start": 2212.81, "end": 2212.95, "word": " and", "probability": 0.501953125}, {"start": 2212.95, "end": 2213.09, "word": " tell", "probability": 0.62109375}, {"start": 2213.09, "end": 2213.33, "word": " the", "probability": 0.59912109375}, {"start": 2213.33, "end": 2213.79, "word": " commands", "probability": 0.8330078125}, {"start": 2213.79, "end": 2213.93, "word": " to", "probability": 0.337890625}, {"start": 2213.93, "end": 2214.39, "word": " add", "probability": 0.5322265625}, {"start": 2214.39, "end": 2214.71, "word": " who?", "probability": 0.367919921875}], "temperature": 1.0}, {"id": 98, "seek": 224512, "start": 2216.6, "end": 2245.12, "text": "add c now i want to make method public void inside the stock agent name it execute all name it only execute all which is supposed to do what? rotate the commands and execute them for each command or for each stock command c is present in commands go to c and say execute", "tokens": [25224, 269, 586, 741, 528, 281, 652, 3170, 1908, 22009, 1854, 264, 4127, 9461, 1315, 309, 14483, 439, 1315, 309, 787, 14483, 439, 597, 307, 3442, 281, 360, 437, 30, 13121, 264, 16901, 293, 14483, 552, 337, 1184, 5622, 420, 337, 1184, 4127, 5622, 269, 307, 1974, 294, 16901, 352, 281, 269, 293, 584, 14483], "avg_logprob": -0.5005580559372902, "compression_ratio": 1.7647058823529411, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2216.6, "end": 2216.94, "word": "add", "probability": 0.303466796875}, {"start": 2216.94, "end": 2217.12, "word": " c", "probability": 0.52001953125}, {"start": 2217.12, "end": 2218.46, "word": " now", "probability": 0.365478515625}, {"start": 2218.46, "end": 2218.82, "word": " i", "probability": 0.29248046875}, {"start": 2218.82, "end": 2218.86, "word": " want", "probability": 0.47412109375}, {"start": 2218.86, "end": 2218.9, "word": " to", "probability": 0.94140625}, {"start": 2218.9, "end": 2219.02, "word": " make", "probability": 0.466796875}, {"start": 2219.02, "end": 2219.5, "word": " method", "probability": 0.58984375}, {"start": 2219.5, "end": 2219.98, "word": " public", "probability": 0.912109375}, {"start": 2219.98, "end": 2220.44, "word": " void", "probability": 0.91357421875}, {"start": 2220.44, "end": 2221.14, "word": " inside", "probability": 0.63818359375}, {"start": 2221.14, "end": 2221.28, "word": " the", "probability": 0.56396484375}, {"start": 2221.28, "end": 2221.46, "word": " stock", "probability": 0.43408203125}, {"start": 2221.46, "end": 2222.2, "word": " agent", "probability": 0.81103515625}, {"start": 2222.2, "end": 2222.48, "word": " name", "probability": 0.287109375}, {"start": 2222.48, "end": 2222.62, "word": " it", "probability": 0.398681640625}, {"start": 2222.62, "end": 2223.12, "word": " execute", "probability": 0.86572265625}, {"start": 2223.12, "end": 2224.46, "word": " all", "probability": 0.74462890625}, {"start": 2224.46, "end": 2227.3, "word": " name", "probability": 0.284912109375}, {"start": 2227.3, "end": 2227.92, "word": " it", "probability": 0.876953125}, {"start": 2227.92, "end": 2228.08, "word": " only", "probability": 0.34716796875}, {"start": 2228.08, "end": 2228.54, "word": " execute", "probability": 0.92431640625}, {"start": 2228.54, "end": 2229.04, "word": " all", "probability": 0.9375}, {"start": 2229.04, "end": 2229.86, "word": " which", "probability": 0.28515625}, {"start": 2229.86, "end": 2229.88, "word": " is", "probability": 0.267822265625}, {"start": 2229.88, "end": 2230.12, "word": " supposed", "probability": 0.6005859375}, {"start": 2230.12, "end": 2230.34, "word": " to", "probability": 0.92236328125}, {"start": 2230.34, "end": 2230.6, "word": " do", "probability": 0.72314453125}, {"start": 2230.6, "end": 2230.84, "word": " what?", "probability": 0.57861328125}, {"start": 2231.08, "end": 2231.48, "word": " rotate", "probability": 0.0965576171875}, {"start": 2231.48, "end": 2231.68, "word": " the", "probability": 0.485595703125}, {"start": 2231.68, "end": 2232.04, "word": " commands", "probability": 0.70751953125}, {"start": 2232.04, "end": 2232.4, "word": " and", "probability": 0.8662109375}, {"start": 2232.4, "end": 2232.7, "word": " execute", "probability": 0.82177734375}, {"start": 2232.7, "end": 2232.92, "word": " them", "probability": 0.84912109375}, {"start": 2232.92, "end": 2233.08, "word": " for", "probability": 0.6484375}, {"start": 2233.08, "end": 2233.38, "word": " each", "probability": 0.4404296875}, {"start": 2233.38, "end": 2234.06, "word": " command", "probability": 0.77001953125}, {"start": 2234.06, "end": 2234.78, "word": " or", "probability": 0.88671875}, {"start": 2234.78, "end": 2234.96, "word": " for", "probability": 0.64892578125}, {"start": 2234.96, "end": 2235.12, "word": " each", "probability": 0.89599609375}, {"start": 2235.12, "end": 2235.46, "word": " stock", "probability": 0.7509765625}, {"start": 2235.46, "end": 2236.08, "word": " command", "probability": 0.86865234375}, {"start": 2236.08, "end": 2238.06, "word": " c", "probability": 0.73388671875}, {"start": 2238.06, "end": 2238.68, "word": " is", "probability": 0.59912109375}, {"start": 2238.68, "end": 2239.02, "word": " present", "probability": 0.53857421875}, {"start": 2239.02, "end": 2239.2, "word": " in", "probability": 0.916015625}, {"start": 2239.2, "end": 2239.9, "word": " commands", "probability": 0.5283203125}, {"start": 2239.9, "end": 2241.1, "word": " go", "probability": 0.86083984375}, {"start": 2241.1, "end": 2241.24, "word": " to", "probability": 0.94775390625}, {"start": 2241.24, "end": 2241.64, "word": " c", "probability": 0.6396484375}, {"start": 2241.64, "end": 2242.28, "word": " and", "probability": 0.912109375}, {"start": 2242.28, "end": 2242.56, "word": " say", "probability": 0.4404296875}, {"start": 2242.56, "end": 2245.12, "word": " execute", "probability": 0.951171875}], "temperature": 1.0}, {"id": 99, "seek": 226431, "start": 2247.17, "end": 2264.31, "text": "Okay, we haven't used this stock agent yet, right or not? Let's go to the main page Above, I have a stock market, I also want to create an object from which? From the stock agent, this is agent equals new stock", "tokens": [8297, 11, 321, 2378, 380, 1143, 341, 4127, 9461, 1939, 11, 558, 420, 406, 30, 961, 311, 352, 281, 264, 2135, 3028, 32691, 11, 286, 362, 257, 4127, 2142, 11, 286, 611, 528, 281, 1884, 364, 2657, 490, 597, 30, 3358, 264, 4127, 9461, 11, 341, 307, 9461, 6915, 777, 4127], "avg_logprob": -0.5609975709364965, "compression_ratio": 1.4093959731543624, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 2247.17, "end": 2247.51, "word": "Okay,", "probability": 0.450927734375}, {"start": 2247.57, "end": 2247.71, "word": " we", "probability": 0.4697265625}, {"start": 2247.71, "end": 2247.71, "word": " haven't", "probability": 0.6846923828125}, {"start": 2247.71, "end": 2247.71, "word": " used", "probability": 0.8720703125}, {"start": 2247.71, "end": 2247.71, "word": " this", "probability": 0.7373046875}, {"start": 2247.71, "end": 2248.01, "word": " stock", "probability": 0.546875}, {"start": 2248.01, "end": 2248.33, "word": " agent", "probability": 0.86865234375}, {"start": 2248.33, "end": 2249.59, "word": " yet,", "probability": 0.83447265625}, {"start": 2249.79, "end": 2249.97, "word": " right", "probability": 0.6201171875}, {"start": 2249.97, "end": 2250.15, "word": " or", "probability": 0.2078857421875}, {"start": 2250.15, "end": 2250.25, "word": " not?", "probability": 0.5771484375}, {"start": 2250.63, "end": 2250.95, "word": " Let's", "probability": 0.6591796875}, {"start": 2250.95, "end": 2251.11, "word": " go", "probability": 0.355712890625}, {"start": 2251.11, "end": 2251.43, "word": " to", "probability": 0.6806640625}, {"start": 2251.43, "end": 2251.57, "word": " the", "probability": 0.62060546875}, {"start": 2251.57, "end": 2251.75, "word": " main", "probability": 0.80419921875}, {"start": 2251.75, "end": 2253.61, "word": " page", "probability": 0.30029296875}, {"start": 2253.61, "end": 2254.53, "word": " Above,", "probability": 0.11932373046875}, {"start": 2254.85, "end": 2254.95, "word": " I", "probability": 0.802734375}, {"start": 2254.95, "end": 2255.13, "word": " have", "probability": 0.8740234375}, {"start": 2255.13, "end": 2255.23, "word": " a", "probability": 0.63232421875}, {"start": 2255.23, "end": 2255.45, "word": " stock", "probability": 0.8310546875}, {"start": 2255.45, "end": 2255.91, "word": " market,", "probability": 0.912109375}, {"start": 2256.09, "end": 2256.09, "word": " I", "probability": 0.68310546875}, {"start": 2256.09, "end": 2256.19, "word": " also", "probability": 0.270751953125}, {"start": 2256.19, "end": 2256.23, "word": " want", "probability": 0.459716796875}, {"start": 2256.23, "end": 2256.25, "word": " to", "probability": 0.96728515625}, {"start": 2256.25, "end": 2256.49, "word": " create", "probability": 0.460693359375}, {"start": 2256.49, "end": 2257.09, "word": " an", "probability": 0.7587890625}, {"start": 2257.09, "end": 2257.29, "word": " object", "probability": 0.98291015625}, {"start": 2257.29, "end": 2257.49, "word": " from", "probability": 0.6015625}, {"start": 2257.49, "end": 2257.71, "word": " which?", "probability": 0.31005859375}, {"start": 2258.69, "end": 2259.13, "word": " From", "probability": 0.72119140625}, {"start": 2259.13, "end": 2259.25, "word": " the", "probability": 0.71240234375}, {"start": 2259.25, "end": 2259.45, "word": " stock", "probability": 0.82421875}, {"start": 2259.45, "end": 2259.93, "word": " agent,", "probability": 0.880859375}, {"start": 2260.21, "end": 2260.65, "word": " this", "probability": 0.7158203125}, {"start": 2260.65, "end": 2260.69, "word": " is", "probability": 0.73974609375}, {"start": 2260.69, "end": 2261.17, "word": " agent", "probability": 0.3681640625}, {"start": 2261.17, "end": 2262.45, "word": " equals", "probability": 0.1329345703125}, {"start": 2262.45, "end": 2263.01, "word": " new", "probability": 0.7373046875}, {"start": 2263.01, "end": 2264.31, "word": " stock", "probability": 0.79541015625}], "temperature": 1.0}, {"id": 100, "seek": 228933, "start": 2266.03, "end": 2289.33, "text": "agent. I created the first order and gave him all the necessary details and gave him the stock market that is necessary for whom? For implementation. I created the second order to open a company and gave him all the necessary information and also gave him the stock market because without it he will not be able to implement it. Now, as I said, these orders I do not want to implement right now. These orders I want to store, okay? So I'm going to go to the agent", "tokens": [559, 317, 13, 286, 2942, 264, 700, 1668, 293, 2729, 796, 439, 264, 4818, 4365, 293, 2729, 796, 264, 4127, 2142, 300, 307, 4818, 337, 7101, 30, 1171, 11420, 13, 286, 2942, 264, 1150, 1668, 281, 1269, 257, 2237, 293, 2729, 796, 439, 264, 4818, 1589, 293, 611, 2729, 796, 264, 4127, 2142, 570, 1553, 309, 415, 486, 406, 312, 1075, 281, 4445, 309, 13, 823, 11, 382, 286, 848, 11, 613, 9470, 286, 360, 406, 528, 281, 4445, 558, 586, 13, 1981, 9470, 286, 528, 281, 3531, 11, 1392, 30, 407, 286, 478, 516, 281, 352, 281, 264, 9461], "avg_logprob": -0.3654084288247741, "compression_ratio": 1.9535864978902953, "no_speech_prob": 0.0002987384796142578, "words": [{"start": 2266.0299999999997, "end": 2266.43, "word": "agent.", "probability": 0.6336669921875}, {"start": 2266.79, "end": 2267.03, "word": " I", "probability": 0.58251953125}, {"start": 2267.03, "end": 2267.29, "word": " created", "probability": 0.310546875}, {"start": 2267.29, "end": 2267.45, "word": " the", "probability": 0.78857421875}, {"start": 2267.45, "end": 2267.51, "word": " first", "probability": 0.78466796875}, {"start": 2267.51, "end": 2267.67, "word": " order", "probability": 0.44140625}, {"start": 2267.67, "end": 2268.33, "word": " and", "probability": 0.740234375}, {"start": 2268.33, "end": 2268.61, "word": " gave", "probability": 0.642578125}, {"start": 2268.61, "end": 2268.73, "word": " him", "probability": 0.436279296875}, {"start": 2268.73, "end": 2268.89, "word": " all", "probability": 0.880859375}, {"start": 2268.89, "end": 2269.01, "word": " the", "probability": 0.75048828125}, {"start": 2269.01, "end": 2269.65, "word": " necessary", "probability": 0.521484375}, {"start": 2269.65, "end": 2269.65, "word": " details", "probability": 0.74365234375}, {"start": 2269.65, "end": 2270.19, "word": " and", "probability": 0.53466796875}, {"start": 2270.19, "end": 2270.49, "word": " gave", "probability": 0.69970703125}, {"start": 2270.49, "end": 2270.63, "word": " him", "probability": 0.87255859375}, {"start": 2270.63, "end": 2270.69, "word": " the", "probability": 0.80078125}, {"start": 2270.69, "end": 2270.91, "word": " stock", "probability": 0.7587890625}, {"start": 2270.91, "end": 2271.31, "word": " market", "probability": 0.927734375}, {"start": 2271.31, "end": 2271.47, "word": " that", "probability": 0.438232421875}, {"start": 2271.47, "end": 2271.55, "word": " is", "probability": 0.51171875}, {"start": 2271.55, "end": 2271.75, "word": " necessary", "probability": 0.61279296875}, {"start": 2271.75, "end": 2271.91, "word": " for", "probability": 0.701171875}, {"start": 2271.91, "end": 2272.05, "word": " whom?", "probability": 0.1995849609375}, {"start": 2272.55, "end": 2272.67, "word": " For", "probability": 0.3662109375}, {"start": 2272.67, "end": 2272.95, "word": " implementation.", "probability": 0.439208984375}, {"start": 2273.55, "end": 2273.75, "word": " I", "probability": 0.875}, {"start": 2273.75, "end": 2273.99, "word": " created", "probability": 0.77197265625}, {"start": 2273.99, "end": 2274.15, "word": " the", "probability": 0.84521484375}, {"start": 2274.15, "end": 2274.67, "word": " second", "probability": 0.8740234375}, {"start": 2274.67, "end": 2274.77, "word": " order", "probability": 0.951171875}, {"start": 2274.77, "end": 2275.45, "word": " to", "probability": 0.74169921875}, {"start": 2275.45, "end": 2275.69, "word": " open", "probability": 0.7666015625}, {"start": 2275.69, "end": 2275.83, "word": " a", "probability": 0.9775390625}, {"start": 2275.83, "end": 2276.09, "word": " company", "probability": 0.92333984375}, {"start": 2276.09, "end": 2276.37, "word": " and", "probability": 0.86474609375}, {"start": 2276.37, "end": 2276.57, "word": " gave", "probability": 0.8359375}, {"start": 2276.57, "end": 2276.71, "word": " him", "probability": 0.7978515625}, {"start": 2276.71, "end": 2276.87, "word": " all", "probability": 0.94091796875}, {"start": 2276.87, "end": 2276.99, "word": " the", "probability": 0.8837890625}, {"start": 2276.99, "end": 2277.73, "word": " necessary", "probability": 0.71826171875}, {"start": 2277.73, "end": 2277.73, "word": " information", "probability": 0.806640625}, {"start": 2277.73, "end": 2278.09, "word": " and", "probability": 0.8583984375}, {"start": 2278.09, "end": 2278.31, "word": " also", "probability": 0.5751953125}, {"start": 2278.31, "end": 2278.31, "word": " gave", "probability": 0.8310546875}, {"start": 2278.31, "end": 2278.61, "word": " him", "probability": 0.90185546875}, {"start": 2278.61, "end": 2278.77, "word": " the", "probability": 0.87255859375}, {"start": 2278.77, "end": 2279.07, "word": " stock", "probability": 0.865234375}, {"start": 2279.07, "end": 2279.97, "word": " market", "probability": 0.8896484375}, {"start": 2279.97, "end": 2280.17, "word": " because", "probability": 0.72900390625}, {"start": 2280.17, "end": 2280.37, "word": " without", "probability": 0.84228515625}, {"start": 2280.37, "end": 2280.51, "word": " it", "probability": 0.6123046875}, {"start": 2280.51, "end": 2280.71, "word": " he", "probability": 0.56884765625}, {"start": 2280.71, "end": 2280.73, "word": " will", "probability": 0.63720703125}, {"start": 2280.73, "end": 2280.73, "word": " not", "probability": 0.93603515625}, {"start": 2280.73, "end": 2280.91, "word": " be", "probability": 0.9423828125}, {"start": 2280.91, "end": 2281.11, "word": " able", "probability": 0.958984375}, {"start": 2281.11, "end": 2281.79, "word": " to", "probability": 0.96728515625}, {"start": 2281.79, "end": 2282.01, "word": " implement", "probability": 0.341796875}, {"start": 2282.01, "end": 2282.39, "word": " it.", "probability": 0.52880859375}, {"start": 2282.81, "end": 2283.21, "word": " Now,", "probability": 0.9072265625}, {"start": 2283.35, "end": 2283.75, "word": " as", "probability": 0.91259765625}, {"start": 2283.75, "end": 2283.91, "word": " I", "probability": 0.89453125}, {"start": 2283.91, "end": 2284.13, "word": " said,", "probability": 0.9140625}, {"start": 2284.21, "end": 2284.35, "word": " these", "probability": 0.802734375}, {"start": 2284.35, "end": 2284.59, "word": " orders", "probability": 0.6943359375}, {"start": 2284.59, "end": 2284.75, "word": " I", "probability": 0.495361328125}, {"start": 2284.75, "end": 2284.81, "word": " do", "probability": 0.56591796875}, {"start": 2284.81, "end": 2284.81, "word": " not", "probability": 0.94287109375}, {"start": 2284.81, "end": 2284.95, "word": " want", "probability": 0.89208984375}, {"start": 2284.95, "end": 2285.03, "word": " to", "probability": 0.94921875}, {"start": 2285.03, "end": 2285.19, "word": " implement", "probability": 0.68310546875}, {"start": 2285.19, "end": 2285.43, "word": " right", "probability": 0.2467041015625}, {"start": 2285.43, "end": 2285.67, "word": " now.", "probability": 0.9365234375}, {"start": 2285.75, "end": 2285.93, "word": " These", "probability": 0.66455078125}, {"start": 2285.93, "end": 2286.15, "word": " orders", "probability": 0.88818359375}, {"start": 2286.15, "end": 2286.37, "word": " I", "probability": 0.89404296875}, {"start": 2286.37, "end": 2286.55, "word": " want", "probability": 0.85205078125}, {"start": 2286.55, "end": 2286.67, "word": " to", "probability": 0.96630859375}, {"start": 2286.67, "end": 2286.87, "word": " store,", "probability": 0.75927734375}, {"start": 2287.75, "end": 2288.03, "word": " okay?", "probability": 0.76171875}, {"start": 2288.29, "end": 2288.43, "word": " So", "probability": 0.87109375}, {"start": 2288.43, "end": 2288.57, "word": " I'm", "probability": 0.6859130859375}, {"start": 2288.57, "end": 2288.69, "word": " going", "probability": 0.947265625}, {"start": 2288.69, "end": 2288.81, "word": " to", "probability": 0.9697265625}, {"start": 2288.81, "end": 2288.81, "word": " go", "probability": 0.66162109375}, {"start": 2288.81, "end": 2288.91, "word": " to", "probability": 0.95849609375}, {"start": 2288.91, "end": 2289.01, "word": " the", "probability": 0.88818359375}, {"start": 2289.01, "end": 2289.33, "word": " agent", "probability": 0.90234375}], "temperature": 1.0}, {"id": 101, "seek": 231528, "start": 2290.66, "end": 2315.28, "text": "and tell him to add stock command what should I add to it? c1 and c2 now these two things are different and they have different details and the execution method of each one is completely different from the other but the idea is that the agent will now take these commands with all their details and store them as a stock command without knowing what the details are in it", "tokens": [474, 980, 796, 281, 909, 4127, 5622, 437, 820, 286, 909, 281, 309, 30, 269, 16, 293, 269, 17, 586, 613, 732, 721, 366, 819, 293, 436, 362, 819, 4365, 293, 264, 15058, 3170, 295, 1184, 472, 307, 2584, 819, 490, 264, 661, 457, 264, 1558, 307, 300, 264, 9461, 486, 586, 747, 613, 16901, 365, 439, 641, 4365, 293, 3531, 552, 382, 257, 4127, 5622, 1553, 5276, 437, 264, 4365, 366, 294, 309], "avg_logprob": -0.42083332141240437, "compression_ratio": 1.8097560975609757, "no_speech_prob": 4.8279762268066406e-05, "words": [{"start": 2290.66, "end": 2291.2, "word": "and", "probability": 0.2330322265625}, {"start": 2291.2, "end": 2291.4, "word": " tell", "probability": 0.26708984375}, {"start": 2291.4, "end": 2291.5, "word": " him", "probability": 0.62060546875}, {"start": 2291.5, "end": 2291.86, "word": " to", "probability": 0.351806640625}, {"start": 2291.86, "end": 2292.32, "word": " add", "probability": 0.84716796875}, {"start": 2292.32, "end": 2293.26, "word": " stock", "probability": 0.44384765625}, {"start": 2293.26, "end": 2293.66, "word": " command", "probability": 0.80126953125}, {"start": 2293.66, "end": 2294.12, "word": " what", "probability": 0.383056640625}, {"start": 2294.12, "end": 2294.28, "word": " should", "probability": 0.357666015625}, {"start": 2294.28, "end": 2294.34, "word": " I", "probability": 0.59716796875}, {"start": 2294.34, "end": 2294.54, "word": " add", "probability": 0.78857421875}, {"start": 2294.54, "end": 2294.92, "word": " to", "probability": 0.225830078125}, {"start": 2294.92, "end": 2294.92, "word": " it?", "probability": 0.72314453125}, {"start": 2294.98, "end": 2295.54, "word": " c1", "probability": 0.7138671875}, {"start": 2295.54, "end": 2296.94, "word": " and", "probability": 0.83349609375}, {"start": 2296.94, "end": 2297.4, "word": " c2", "probability": 0.9921875}, {"start": 2297.4, "end": 2299.3, "word": " now", "probability": 0.61865234375}, {"start": 2299.3, "end": 2299.42, "word": " these", "probability": 0.424560546875}, {"start": 2299.42, "end": 2299.42, "word": " two", "probability": 0.83203125}, {"start": 2299.42, "end": 2299.68, "word": " things", "probability": 0.5400390625}, {"start": 2299.68, "end": 2299.98, "word": " are", "probability": 0.86181640625}, {"start": 2299.98, "end": 2300.4, "word": " different", "probability": 0.7939453125}, {"start": 2300.4, "end": 2300.88, "word": " and", "probability": 0.65673828125}, {"start": 2300.88, "end": 2301.0, "word": " they", "probability": 0.384765625}, {"start": 2301.0, "end": 2301.12, "word": " have", "probability": 0.8916015625}, {"start": 2301.12, "end": 2301.96, "word": " different", "probability": 0.8759765625}, {"start": 2301.96, "end": 2301.96, "word": " details", "probability": 0.79541015625}, {"start": 2301.96, "end": 2302.28, "word": " and", "probability": 0.748046875}, {"start": 2302.28, "end": 2302.34, "word": " the", "probability": 0.37890625}, {"start": 2302.34, "end": 2302.86, "word": " execution", "probability": 0.141845703125}, {"start": 2302.86, "end": 2302.88, "word": " method", "probability": 0.6103515625}, {"start": 2302.88, "end": 2303.04, "word": " of", "probability": 0.71484375}, {"start": 2303.04, "end": 2303.26, "word": " each", "probability": 0.947265625}, {"start": 2303.26, "end": 2303.72, "word": " one", "probability": 0.54931640625}, {"start": 2303.72, "end": 2304.26, "word": " is", "probability": 0.8955078125}, {"start": 2304.26, "end": 2304.8, "word": " completely", "probability": 0.499267578125}, {"start": 2304.8, "end": 2304.8, "word": " different", "probability": 0.87353515625}, {"start": 2304.8, "end": 2305.94, "word": " from", "probability": 0.73291015625}, {"start": 2305.94, "end": 2306.1, "word": " the", "probability": 0.7861328125}, {"start": 2306.1, "end": 2306.28, "word": " other", "probability": 0.7490234375}, {"start": 2306.28, "end": 2306.96, "word": " but", "probability": 0.7216796875}, {"start": 2306.96, "end": 2307.16, "word": " the", "probability": 0.88720703125}, {"start": 2307.16, "end": 2307.34, "word": " idea", "probability": 0.876953125}, {"start": 2307.34, "end": 2307.54, "word": " is", "probability": 0.80517578125}, {"start": 2307.54, "end": 2307.6, "word": " that", "probability": 0.91748046875}, {"start": 2307.6, "end": 2307.64, "word": " the", "probability": 0.80859375}, {"start": 2307.64, "end": 2307.96, "word": " agent", "probability": 0.939453125}, {"start": 2307.96, "end": 2308.52, "word": " will", "probability": 0.5673828125}, {"start": 2308.52, "end": 2308.52, "word": " now", "probability": 0.3603515625}, {"start": 2308.52, "end": 2308.82, "word": " take", "probability": 0.7978515625}, {"start": 2308.82, "end": 2308.92, "word": " these", "probability": 0.74609375}, {"start": 2308.92, "end": 2309.28, "word": " commands", "probability": 0.64892578125}, {"start": 2309.28, "end": 2309.6, "word": " with", "probability": 0.61279296875}, {"start": 2309.6, "end": 2309.74, "word": " all", "probability": 0.916015625}, {"start": 2309.74, "end": 2309.8, "word": " their", "probability": 0.51708984375}, {"start": 2309.8, "end": 2310.2, "word": " details", "probability": 0.86328125}, {"start": 2310.2, "end": 2311.06, "word": " and", "probability": 0.916015625}, {"start": 2311.06, "end": 2311.36, "word": " store", "probability": 0.73779296875}, {"start": 2311.36, "end": 2311.56, "word": " them", "probability": 0.8095703125}, {"start": 2311.56, "end": 2311.68, "word": " as", "probability": 0.9296875}, {"start": 2311.68, "end": 2311.78, "word": " a", "probability": 0.677734375}, {"start": 2311.78, "end": 2311.94, "word": " stock", "probability": 0.79638671875}, {"start": 2311.94, "end": 2312.28, "word": " command", "probability": 0.890625}, {"start": 2312.28, "end": 2312.52, "word": " without", "probability": 0.904296875}, {"start": 2312.52, "end": 2313.1, "word": " knowing", "probability": 0.76318359375}, {"start": 2313.1, "end": 2314.16, "word": " what", "probability": 0.734375}, {"start": 2314.16, "end": 2314.28, "word": " the", "probability": 0.487060546875}, {"start": 2314.28, "end": 2314.58, "word": " details", "probability": 0.82470703125}, {"start": 2314.58, "end": 2314.72, "word": " are", "probability": 0.68359375}, {"start": 2314.72, "end": 2315.14, "word": " in", "probability": 0.65576171875}, {"start": 2315.14, "end": 2315.28, "word": " it", "probability": 0.8154296875}], "temperature": 1.0}, {"id": 102, "seek": 234509, "start": 2315.89, "end": 2345.09, "text": " and you can do 10, 20, 30 by command with open command, with cell, with transfer whatever the command is at the end the method call at the end when it comes to execute to execute them later I have to go to the agent and tell him execute all right or not the agent will make a loop on them and execute it because he does not know the details but we know that inside execute", "tokens": [293, 291, 393, 360, 1266, 11, 945, 11, 2217, 538, 5622, 365, 1269, 5622, 11, 365, 2815, 11, 365, 5003, 2035, 264, 5622, 307, 412, 264, 917, 264, 3170, 818, 412, 264, 917, 562, 309, 1487, 281, 14483, 281, 14483, 552, 1780, 286, 362, 281, 352, 281, 264, 9461, 293, 980, 796, 14483, 439, 558, 420, 406, 264, 9461, 486, 652, 257, 6367, 322, 552, 293, 14483, 309, 570, 415, 775, 406, 458, 264, 4365, 457, 321, 458, 300, 1854, 14483], "avg_logprob": -0.45769818127155304, "compression_ratio": 1.8106796116504855, "no_speech_prob": 7.450580596923828e-06, "words": [{"start": 2315.89, "end": 2316.29, "word": " and", "probability": 0.184326171875}, {"start": 2316.29, "end": 2316.41, "word": " you", "probability": 0.7880859375}, {"start": 2316.41, "end": 2316.55, "word": " can", "probability": 0.890625}, {"start": 2316.55, "end": 2316.89, "word": " do", "probability": 0.451416015625}, {"start": 2316.89, "end": 2317.59, "word": " 10,", "probability": 0.74169921875}, {"start": 2317.69, "end": 2318.11, "word": " 20,", "probability": 0.818359375}, {"start": 2318.27, "end": 2318.71, "word": " 30", "probability": 0.9052734375}, {"start": 2318.71, "end": 2319.57, "word": " by", "probability": 0.34423828125}, {"start": 2319.57, "end": 2320.31, "word": " command", "probability": 0.68408203125}, {"start": 2320.31, "end": 2320.67, "word": " with", "probability": 0.744140625}, {"start": 2320.67, "end": 2321.01, "word": " open", "probability": 0.900390625}, {"start": 2321.01, "end": 2321.55, "word": " command,", "probability": 0.89404296875}, {"start": 2321.71, "end": 2321.79, "word": " with", "probability": 0.84375}, {"start": 2321.79, "end": 2322.11, "word": " cell,", "probability": 0.450439453125}, {"start": 2322.59, "end": 2322.81, "word": " with", "probability": 0.88671875}, {"start": 2322.81, "end": 2323.63, "word": " transfer", "probability": 0.9267578125}, {"start": 2323.63, "end": 2325.21, "word": " whatever", "probability": 0.1551513671875}, {"start": 2325.21, "end": 2325.73, "word": " the", "probability": 0.444091796875}, {"start": 2325.73, "end": 2326.25, "word": " command", "probability": 0.91748046875}, {"start": 2326.25, "end": 2326.31, "word": " is", "probability": 0.5107421875}, {"start": 2326.31, "end": 2326.53, "word": " at", "probability": 0.1270751953125}, {"start": 2326.53, "end": 2326.71, "word": " the", "probability": 0.9140625}, {"start": 2326.71, "end": 2327.05, "word": " end", "probability": 0.89453125}, {"start": 2327.05, "end": 2327.95, "word": " the", "probability": 0.297119140625}, {"start": 2327.95, "end": 2328.25, "word": " method", "probability": 0.89306640625}, {"start": 2328.25, "end": 2328.65, "word": " call", "probability": 0.85107421875}, {"start": 2328.65, "end": 2330.23, "word": " at", "probability": 0.297119140625}, {"start": 2330.23, "end": 2330.37, "word": " the", "probability": 0.92919921875}, {"start": 2330.37, "end": 2330.61, "word": " end", "probability": 0.89111328125}, {"start": 2330.61, "end": 2330.79, "word": " when", "probability": 0.775390625}, {"start": 2330.79, "end": 2330.91, "word": " it", "probability": 0.6767578125}, {"start": 2330.91, "end": 2330.99, "word": " comes", "probability": 0.42041015625}, {"start": 2330.99, "end": 2331.07, "word": " to", "probability": 0.708984375}, {"start": 2331.07, "end": 2331.45, "word": " execute", "probability": 0.67626953125}, {"start": 2331.45, "end": 2332.21, "word": " to", "probability": 0.475830078125}, {"start": 2332.21, "end": 2332.57, "word": " execute", "probability": 0.7353515625}, {"start": 2332.57, "end": 2332.67, "word": " them", "probability": 0.57958984375}, {"start": 2332.67, "end": 2333.11, "word": " later", "probability": 0.7841796875}, {"start": 2333.11, "end": 2333.33, "word": " I", "probability": 0.58544921875}, {"start": 2333.33, "end": 2333.47, "word": " have", "probability": 0.2430419921875}, {"start": 2333.47, "end": 2333.55, "word": " to", "probability": 0.9638671875}, {"start": 2333.55, "end": 2333.63, "word": " go", "probability": 0.81005859375}, {"start": 2333.63, "end": 2333.75, "word": " to", "probability": 0.91650390625}, {"start": 2333.75, "end": 2333.85, "word": " the", "probability": 0.7265625}, {"start": 2333.85, "end": 2334.11, "word": " agent", "probability": 0.93603515625}, {"start": 2334.11, "end": 2334.27, "word": " and", "probability": 0.8759765625}, {"start": 2334.27, "end": 2334.39, "word": " tell", "probability": 0.4697265625}, {"start": 2334.39, "end": 2334.43, "word": " him", "probability": 0.80419921875}, {"start": 2334.43, "end": 2334.97, "word": " execute", "probability": 0.62548828125}, {"start": 2334.97, "end": 2336.05, "word": " all", "probability": 0.83837890625}, {"start": 2336.05, "end": 2336.81, "word": " right", "probability": 0.334228515625}, {"start": 2336.81, "end": 2336.99, "word": " or", "probability": 0.9453125}, {"start": 2336.99, "end": 2337.11, "word": " not", "probability": 0.76025390625}, {"start": 2337.11, "end": 2337.89, "word": " the", "probability": 0.373779296875}, {"start": 2337.89, "end": 2338.23, "word": " agent", "probability": 0.92919921875}, {"start": 2338.23, "end": 2338.41, "word": " will", "probability": 0.6181640625}, {"start": 2338.41, "end": 2338.85, "word": " make", "probability": 0.28564453125}, {"start": 2338.85, "end": 2339.03, "word": " a", "probability": 0.65966796875}, {"start": 2339.03, "end": 2339.15, "word": " loop", "probability": 0.96484375}, {"start": 2339.15, "end": 2339.31, "word": " on", "probability": 0.68603515625}, {"start": 2339.31, "end": 2339.45, "word": " them", "probability": 0.849609375}, {"start": 2339.45, "end": 2339.59, "word": " and", "probability": 0.876953125}, {"start": 2339.59, "end": 2339.99, "word": " execute", "probability": 0.740234375}, {"start": 2339.99, "end": 2340.81, "word": " it", "probability": 0.26123046875}, {"start": 2340.81, "end": 2341.63, "word": " because", "probability": 0.4306640625}, {"start": 2341.63, "end": 2342.43, "word": " he", "probability": 0.69580078125}, {"start": 2342.43, "end": 2342.63, "word": " does", "probability": 0.48486328125}, {"start": 2342.63, "end": 2342.63, "word": " not", "probability": 0.89892578125}, {"start": 2342.63, "end": 2342.89, "word": " know", "probability": 0.890625}, {"start": 2342.89, "end": 2343.05, "word": " the", "probability": 0.86376953125}, {"start": 2343.05, "end": 2343.31, "word": " details", "probability": 0.8681640625}, {"start": 2343.31, "end": 2343.61, "word": " but", "probability": 0.71826171875}, {"start": 2343.61, "end": 2343.81, "word": " we", "probability": 0.93359375}, {"start": 2343.81, "end": 2344.11, "word": " know", "probability": 0.8623046875}, {"start": 2344.11, "end": 2344.29, "word": " that", "probability": 0.7607421875}, {"start": 2344.29, "end": 2344.55, "word": " inside", "probability": 0.434814453125}, {"start": 2344.55, "end": 2345.09, "word": " execute", "probability": 0.60302734375}], "temperature": 1.0}, {"id": 103, "seek": 237402, "start": 2346.68, "end": 2374.02, "text": " it will do something different, the execute of the open company will go to the stock market and execute open, the execute of the buy shares will go and execute from inside the execute buy shares, but in the end the agent does not know anything about these details, okay? So that's how I was able to do what I wanted to do from the beginning, that I'm the commands that I want to implement on the stock market, I don't want to implement it now, okay? I want to issue these commands and store them later", "tokens": [309, 486, 360, 746, 819, 11, 264, 14483, 295, 264, 1269, 2237, 486, 352, 281, 264, 4127, 2142, 293, 14483, 1269, 11, 264, 14483, 295, 264, 2256, 12182, 486, 352, 293, 14483, 490, 1854, 264, 14483, 2256, 12182, 11, 457, 294, 264, 917, 264, 9461, 775, 406, 458, 1340, 466, 613, 4365, 11, 1392, 30, 407, 300, 311, 577, 286, 390, 1075, 281, 360, 437, 286, 1415, 281, 360, 490, 264, 2863, 11, 300, 286, 478, 264, 16901, 300, 286, 528, 281, 4445, 322, 264, 4127, 2142, 11, 286, 500, 380, 528, 281, 4445, 309, 586, 11, 1392, 30, 286, 528, 281, 2734, 613, 16901, 293, 3531, 552, 1780], "avg_logprob": -0.3715909090909091, "compression_ratio": 2.024193548387097, "no_speech_prob": 1.0371208190917969e-05, "words": [{"start": 2346.68, "end": 2347.12, "word": " it", "probability": 0.09759521484375}, {"start": 2347.12, "end": 2347.56, "word": " will", "probability": 0.673828125}, {"start": 2347.56, "end": 2347.78, "word": " do", "probability": 0.6337890625}, {"start": 2347.78, "end": 2347.98, "word": " something", "probability": 0.60400390625}, {"start": 2347.98, "end": 2348.42, "word": " different,", "probability": 0.84033203125}, {"start": 2348.72, "end": 2348.8, "word": " the", "probability": 0.56591796875}, {"start": 2348.8, "end": 2349.22, "word": " execute", "probability": 0.68408203125}, {"start": 2349.22, "end": 2349.46, "word": " of", "probability": 0.72265625}, {"start": 2349.46, "end": 2349.56, "word": " the", "probability": 0.437744140625}, {"start": 2349.56, "end": 2349.78, "word": " open", "probability": 0.85546875}, {"start": 2349.78, "end": 2350.32, "word": " company", "probability": 0.859375}, {"start": 2350.32, "end": 2350.8, "word": " will", "probability": 0.78271484375}, {"start": 2350.8, "end": 2351.0, "word": " go", "probability": 0.6435546875}, {"start": 2351.0, "end": 2351.18, "word": " to", "probability": 0.91357421875}, {"start": 2351.18, "end": 2351.52, "word": " the", "probability": 0.8466796875}, {"start": 2351.52, "end": 2351.84, "word": " stock", "probability": 0.73583984375}, {"start": 2351.84, "end": 2352.18, "word": " market", "probability": 0.8994140625}, {"start": 2352.18, "end": 2352.34, "word": " and", "probability": 0.84033203125}, {"start": 2352.34, "end": 2352.62, "word": " execute", "probability": 0.4482421875}, {"start": 2352.62, "end": 2352.96, "word": " open,", "probability": 0.67138671875}, {"start": 2353.24, "end": 2353.52, "word": " the", "probability": 0.6650390625}, {"start": 2353.52, "end": 2353.94, "word": " execute", "probability": 0.7900390625}, {"start": 2353.94, "end": 2354.12, "word": " of", "probability": 0.93896484375}, {"start": 2354.12, "end": 2354.28, "word": " the", "probability": 0.5654296875}, {"start": 2354.28, "end": 2354.48, "word": " buy", "probability": 0.90966796875}, {"start": 2354.48, "end": 2354.8, "word": " shares", "probability": 0.873046875}, {"start": 2354.8, "end": 2355.0, "word": " will", "probability": 0.81884765625}, {"start": 2355.0, "end": 2355.14, "word": " go", "probability": 0.59033203125}, {"start": 2355.14, "end": 2355.24, "word": " and", "probability": 0.394287109375}, {"start": 2355.24, "end": 2355.72, "word": " execute", "probability": 0.8603515625}, {"start": 2355.72, "end": 2356.26, "word": " from", "probability": 0.427978515625}, {"start": 2356.26, "end": 2356.46, "word": " inside", "probability": 0.45654296875}, {"start": 2356.46, "end": 2356.56, "word": " the", "probability": 0.7158203125}, {"start": 2356.56, "end": 2357.08, "word": " execute", "probability": 0.75}, {"start": 2357.08, "end": 2357.86, "word": " buy", "probability": 0.54833984375}, {"start": 2357.86, "end": 2358.2, "word": " shares,", "probability": 0.86572265625}, {"start": 2358.4, "end": 2358.68, "word": " but", "probability": 0.888671875}, {"start": 2358.68, "end": 2358.86, "word": " in", "probability": 0.56884765625}, {"start": 2358.86, "end": 2359.04, "word": " the", "probability": 0.9189453125}, {"start": 2359.04, "end": 2359.14, "word": " end", "probability": 0.92529296875}, {"start": 2359.14, "end": 2359.28, "word": " the", "probability": 0.58935546875}, {"start": 2359.28, "end": 2359.56, "word": " agent", "probability": 0.921875}, {"start": 2359.56, "end": 2359.8, "word": " does", "probability": 0.52783203125}, {"start": 2359.8, "end": 2359.8, "word": " not", "probability": 0.91064453125}, {"start": 2359.8, "end": 2360.04, "word": " know", "probability": 0.88671875}, {"start": 2360.04, "end": 2360.38, "word": " anything", "probability": 0.80615234375}, {"start": 2360.38, "end": 2360.76, "word": " about", "probability": 0.88037109375}, {"start": 2360.76, "end": 2361.64, "word": " these", "probability": 0.71337890625}, {"start": 2361.64, "end": 2362.06, "word": " details,", "probability": 0.86376953125}, {"start": 2362.88, "end": 2363.12, "word": " okay?", "probability": 0.328369140625}, {"start": 2363.58, "end": 2363.74, "word": " So", "probability": 0.484619140625}, {"start": 2363.74, "end": 2364.06, "word": " that's", "probability": 0.5546875}, {"start": 2364.06, "end": 2364.06, "word": " how", "probability": 0.8916015625}, {"start": 2364.06, "end": 2364.28, "word": " I", "probability": 0.9853515625}, {"start": 2364.28, "end": 2364.38, "word": " was", "probability": 0.53125}, {"start": 2364.38, "end": 2364.52, "word": " able", "probability": 0.958984375}, {"start": 2364.52, "end": 2365.2, "word": " to", "probability": 0.96923828125}, {"start": 2365.2, "end": 2365.44, "word": " do", "probability": 0.94189453125}, {"start": 2365.44, "end": 2365.66, "word": " what", "probability": 0.92333984375}, {"start": 2365.66, "end": 2365.84, "word": " I", "probability": 0.9912109375}, {"start": 2365.84, "end": 2366.26, "word": " wanted", "probability": 0.66845703125}, {"start": 2366.26, "end": 2366.34, "word": " to", "probability": 0.81787109375}, {"start": 2366.34, "end": 2366.5, "word": " do", "probability": 0.9306640625}, {"start": 2366.5, "end": 2366.6, "word": " from", "probability": 0.74462890625}, {"start": 2366.6, "end": 2366.7, "word": " the", "probability": 0.93212890625}, {"start": 2366.7, "end": 2366.94, "word": " beginning,", "probability": 0.77294921875}, {"start": 2367.08, "end": 2367.2, "word": " that", "probability": 0.60107421875}, {"start": 2367.2, "end": 2367.42, "word": " I'm", "probability": 0.43914794921875}, {"start": 2367.42, "end": 2367.54, "word": " the", "probability": 0.74365234375}, {"start": 2367.54, "end": 2367.92, "word": " commands", "probability": 0.51318359375}, {"start": 2367.92, "end": 2368.82, "word": " that", "probability": 0.69384765625}, {"start": 2368.82, "end": 2369.02, "word": " I", "probability": 0.92041015625}, {"start": 2369.02, "end": 2369.02, "word": " want", "probability": 0.8359375}, {"start": 2369.02, "end": 2369.12, "word": " to", "probability": 0.953125}, {"start": 2369.12, "end": 2369.34, "word": " implement", "probability": 0.438232421875}, {"start": 2369.34, "end": 2369.52, "word": " on", "probability": 0.91845703125}, {"start": 2369.52, "end": 2369.6, "word": " the", "probability": 0.91650390625}, {"start": 2369.6, "end": 2369.78, "word": " stock", "probability": 0.86328125}, {"start": 2369.78, "end": 2369.88, "word": " market,", "probability": 0.73876953125}, {"start": 2369.96, "end": 2370.02, "word": " I", "probability": 0.73046875}, {"start": 2370.02, "end": 2370.1, "word": " don't", "probability": 0.7705078125}, {"start": 2370.1, "end": 2370.22, "word": " want", "probability": 0.8896484375}, {"start": 2370.22, "end": 2370.3, "word": " to", "probability": 0.94189453125}, {"start": 2370.3, "end": 2370.52, "word": " implement", "probability": 0.7216796875}, {"start": 2370.52, "end": 2370.68, "word": " it", "probability": 0.61572265625}, {"start": 2370.68, "end": 2371.02, "word": " now,", "probability": 0.6298828125}, {"start": 2371.78, "end": 2371.98, "word": " okay?", "probability": 0.5712890625}, {"start": 2371.98, "end": 2372.12, "word": " I", "probability": 0.98046875}, {"start": 2372.12, "end": 2372.24, "word": " want", "probability": 0.8115234375}, {"start": 2372.24, "end": 2372.34, "word": " to", "probability": 0.96923828125}, {"start": 2372.34, "end": 2372.52, "word": " issue", "probability": 0.876953125}, {"start": 2372.52, "end": 2372.7, "word": " these", "probability": 0.77734375}, {"start": 2372.7, "end": 2373.0, "word": " commands", "probability": 0.72998046875}, {"start": 2373.0, "end": 2373.42, "word": " and", "probability": 0.9130859375}, {"start": 2373.42, "end": 2373.64, "word": " store", "probability": 0.7890625}, {"start": 2373.64, "end": 2373.86, "word": " them", "probability": 0.75732421875}, {"start": 2373.86, "end": 2374.02, "word": " later", "probability": 0.91650390625}], "temperature": 1.0}, {"id": 104, "seek": 237908, "start": 2375.22, "end": 2379.08, "text": "What did I do? I changed the method calls that it executes to", "tokens": [3748, 630, 286, 360, 30, 286, 3105, 264, 3170, 5498, 300, 309, 4454, 1819, 281], "avg_logprob": -0.6440429762005806, "compression_ratio": 0.953125, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2375.22, "end": 2375.46, "word": "What", "probability": 0.2410888671875}, {"start": 2375.46, "end": 2375.54, "word": " did", "probability": 0.358154296875}, {"start": 2375.54, "end": 2375.68, "word": " I", "probability": 0.7822265625}, {"start": 2375.68, "end": 2375.84, "word": " do?", "probability": 0.890625}, {"start": 2376.42, "end": 2376.9, "word": " I", "probability": 0.748046875}, {"start": 2376.9, "end": 2376.9, "word": " changed", "probability": 0.336181640625}, {"start": 2376.9, "end": 2376.98, "word": " the", "probability": 0.61865234375}, {"start": 2376.98, "end": 2377.22, "word": " method", "probability": 0.90966796875}, {"start": 2377.22, "end": 2377.64, "word": " calls", "probability": 0.66064453125}, {"start": 2377.64, "end": 2377.76, "word": " that", "probability": 0.22216796875}, {"start": 2377.76, "end": 2377.88, "word": " it", "probability": 0.3017578125}, {"start": 2377.88, "end": 2378.4, "word": " executes", "probability": 0.7054443359375}, {"start": 2378.4, "end": 2379.08, "word": " to", "probability": 0.71044921875}], "temperature": 1.0}, {"id": 105, "seek": 240435, "start": 2380.21, "end": 2404.35, "text": "object, this object contains the data that must be executed, which are the attributes, for example, who buys, who sells, the number of shares, the price, the tax, these are all data that must be executed, it also contains the object that actually executes, which is who, the stock market, okay, and there is a method execute through which I call the method that executes my command", "tokens": [41070, 11, 341, 2657, 8306, 264, 1412, 300, 1633, 312, 17577, 11, 597, 366, 264, 17212, 11, 337, 1365, 11, 567, 28153, 11, 567, 20897, 11, 264, 1230, 295, 12182, 11, 264, 3218, 11, 264, 3366, 11, 613, 366, 439, 1412, 300, 1633, 312, 17577, 11, 309, 611, 8306, 264, 2657, 300, 767, 4454, 1819, 11, 597, 307, 567, 11, 264, 4127, 2142, 11, 1392, 11, 293, 456, 307, 257, 3170, 14483, 807, 597, 286, 818, 264, 3170, 300, 4454, 1819, 452, 5622], "avg_logprob": -0.42857144205343156, "compression_ratio": 1.914572864321608, "no_speech_prob": 9.775161743164062e-06, "words": [{"start": 2380.21, "end": 2380.69, "word": "object,", "probability": 0.54052734375}, {"start": 2381.15, "end": 2381.31, "word": " this", "probability": 0.37744140625}, {"start": 2381.31, "end": 2381.67, "word": " object", "probability": 0.921875}, {"start": 2381.67, "end": 2382.31, "word": " contains", "probability": 0.66748046875}, {"start": 2382.31, "end": 2383.83, "word": " the", "probability": 0.333740234375}, {"start": 2383.83, "end": 2384.13, "word": " data", "probability": 0.388427734375}, {"start": 2384.13, "end": 2384.37, "word": " that", "probability": 0.4423828125}, {"start": 2384.37, "end": 2384.59, "word": " must", "probability": 0.4345703125}, {"start": 2384.59, "end": 2384.77, "word": " be", "probability": 0.9208984375}, {"start": 2384.77, "end": 2385.19, "word": " executed,", "probability": 0.72119140625}, {"start": 2385.51, "end": 2385.61, "word": " which", "probability": 0.5546875}, {"start": 2385.61, "end": 2385.73, "word": " are", "probability": 0.669921875}, {"start": 2385.73, "end": 2385.79, "word": " the", "probability": 0.44140625}, {"start": 2385.79, "end": 2386.35, "word": " attributes,", "probability": 0.85595703125}, {"start": 2386.81, "end": 2387.13, "word": " for", "probability": 0.7109375}, {"start": 2387.13, "end": 2387.33, "word": " example,", "probability": 0.96044921875}, {"start": 2387.65, "end": 2387.85, "word": " who", "probability": 0.85546875}, {"start": 2387.85, "end": 2388.47, "word": " buys,", "probability": 0.8369140625}, {"start": 2388.71, "end": 2388.95, "word": " who", "probability": 0.7890625}, {"start": 2388.95, "end": 2389.25, "word": " sells,", "probability": 0.91552734375}, {"start": 2389.47, "end": 2389.47, "word": " the", "probability": 0.60302734375}, {"start": 2389.47, "end": 2389.63, "word": " number", "probability": 0.70166015625}, {"start": 2389.63, "end": 2389.77, "word": " of", "probability": 0.9716796875}, {"start": 2389.77, "end": 2390.01, "word": " shares,", "probability": 0.4462890625}, {"start": 2390.27, "end": 2390.27, "word": " the", "probability": 0.5615234375}, {"start": 2390.27, "end": 2390.55, "word": " price,", "probability": 0.88232421875}, {"start": 2390.77, "end": 2390.85, "word": " the", "probability": 0.673828125}, {"start": 2390.85, "end": 2391.19, "word": " tax,", "probability": 0.7705078125}, {"start": 2391.65, "end": 2391.85, "word": " these", "probability": 0.179443359375}, {"start": 2391.85, "end": 2391.97, "word": " are", "probability": 0.87158203125}, {"start": 2391.97, "end": 2392.05, "word": " all", "probability": 0.92431640625}, {"start": 2392.05, "end": 2392.35, "word": " data", "probability": 0.42919921875}, {"start": 2392.35, "end": 2392.57, "word": " that", "probability": 0.8955078125}, {"start": 2392.57, "end": 2392.69, "word": " must", "probability": 0.81396484375}, {"start": 2392.69, "end": 2392.87, "word": " be", "probability": 0.94775390625}, {"start": 2392.87, "end": 2393.29, "word": " executed,", "probability": 0.83837890625}, {"start": 2393.77, "end": 2393.83, "word": " it", "probability": 0.6142578125}, {"start": 2393.83, "end": 2393.93, "word": " also", "probability": 0.84814453125}, {"start": 2393.93, "end": 2394.25, "word": " contains", "probability": 0.767578125}, {"start": 2394.25, "end": 2395.61, "word": " the", "probability": 0.8232421875}, {"start": 2395.61, "end": 2395.97, "word": " object", "probability": 0.92041015625}, {"start": 2395.97, "end": 2396.13, "word": " that", "probability": 0.91455078125}, {"start": 2396.13, "end": 2396.25, "word": " actually", "probability": 0.68701171875}, {"start": 2396.25, "end": 2396.79, "word": " executes,", "probability": 0.773681640625}, {"start": 2397.47, "end": 2397.59, "word": " which", "probability": 0.8291015625}, {"start": 2397.59, "end": 2397.75, "word": " is", "probability": 0.9111328125}, {"start": 2397.75, "end": 2398.01, "word": " who,", "probability": 0.370849609375}, {"start": 2398.51, "end": 2398.59, "word": " the", "probability": 0.85986328125}, {"start": 2398.59, "end": 2398.81, "word": " stock", "probability": 0.8056640625}, {"start": 2398.81, "end": 2399.25, "word": " market,", "probability": 0.912109375}, {"start": 2399.81, "end": 2400.03, "word": " okay,", "probability": 0.46435546875}, {"start": 2400.27, "end": 2400.43, "word": " and", "probability": 0.92333984375}, {"start": 2400.43, "end": 2400.59, "word": " there", "probability": 0.8720703125}, {"start": 2400.59, "end": 2400.59, "word": " is", "probability": 0.8671875}, {"start": 2400.59, "end": 2400.69, "word": " a", "probability": 0.61328125}, {"start": 2400.69, "end": 2400.87, "word": " method", "probability": 0.9482421875}, {"start": 2400.87, "end": 2401.51, "word": " execute", "probability": 0.81787109375}, {"start": 2401.51, "end": 2401.91, "word": " through", "probability": 0.77783203125}, {"start": 2401.91, "end": 2402.37, "word": " which", "probability": 0.50927734375}, {"start": 2402.37, "end": 2402.51, "word": " I", "probability": 0.56640625}, {"start": 2402.51, "end": 2402.75, "word": " call", "probability": 0.304931640625}, {"start": 2402.75, "end": 2402.91, "word": " the", "probability": 0.86083984375}, {"start": 2402.91, "end": 2403.19, "word": " method", "probability": 0.94921875}, {"start": 2403.19, "end": 2403.35, "word": " that", "probability": 0.90087890625}, {"start": 2403.35, "end": 2403.69, "word": " executes", "probability": 0.91748046875}, {"start": 2403.69, "end": 2403.83, "word": " my", "probability": 0.28271484375}, {"start": 2403.83, "end": 2404.35, "word": " command", "probability": 0.86962890625}], "temperature": 1.0}, {"id": 106, "seek": 243209, "start": 2405.83, "end": 2432.09, "text": "In order to execute these commands later on, all I had to do was to make them all from one interface type I made a stock agent which will actually store all the commands without knowing their details and in order to execute them later on Of course, it will be able to execute them because each one of them contains the information and contains the method method call and this is the idea of the command pattern", "tokens": [4575, 1668, 281, 14483, 613, 16901, 1780, 322, 11, 439, 286, 632, 281, 360, 390, 281, 652, 552, 439, 490, 472, 9226, 2010, 286, 1027, 257, 4127, 9461, 597, 486, 767, 3531, 439, 264, 16901, 1553, 5276, 641, 4365, 293, 294, 1668, 281, 14483, 552, 1780, 322, 2720, 1164, 11, 309, 486, 312, 1075, 281, 14483, 552, 570, 1184, 472, 295, 552, 8306, 264, 1589, 293, 8306, 264, 3170, 3170, 818, 293, 341, 307, 264, 1558, 295, 264, 5622, 5102], "avg_logprob": -0.5189043209876543, "compression_ratio": 1.8721461187214612, "no_speech_prob": 1.6689300537109375e-06, "words": [{"start": 2405.83, "end": 2406.23, "word": "In", "probability": 0.158203125}, {"start": 2406.23, "end": 2406.29, "word": " order", "probability": 0.904296875}, {"start": 2406.29, "end": 2406.47, "word": " to", "probability": 0.95068359375}, {"start": 2406.47, "end": 2406.75, "word": " execute", "probability": 0.52685546875}, {"start": 2406.75, "end": 2406.89, "word": " these", "probability": 0.603515625}, {"start": 2406.89, "end": 2407.19, "word": " commands", "probability": 0.779296875}, {"start": 2407.19, "end": 2407.87, "word": " later", "probability": 0.568359375}, {"start": 2407.87, "end": 2408.05, "word": " on,", "probability": 0.361572265625}, {"start": 2408.39, "end": 2408.57, "word": " all", "probability": 0.474365234375}, {"start": 2408.57, "end": 2408.73, "word": " I", "probability": 0.8232421875}, {"start": 2408.73, "end": 2408.95, "word": " had", "probability": 0.387451171875}, {"start": 2408.95, "end": 2408.95, "word": " to", "probability": 0.970703125}, {"start": 2408.95, "end": 2409.21, "word": " do", "probability": 0.95849609375}, {"start": 2409.21, "end": 2409.79, "word": " was", "probability": 0.515625}, {"start": 2409.79, "end": 2409.87, "word": " to", "probability": 0.27294921875}, {"start": 2409.87, "end": 2410.09, "word": " make", "probability": 0.50732421875}, {"start": 2410.09, "end": 2410.23, "word": " them", "probability": 0.62353515625}, {"start": 2410.23, "end": 2410.45, "word": " all", "probability": 0.67626953125}, {"start": 2410.45, "end": 2410.55, "word": " from", "probability": 0.27099609375}, {"start": 2410.55, "end": 2410.69, "word": " one", "probability": 0.58740234375}, {"start": 2410.69, "end": 2411.25, "word": " interface", "probability": 0.81640625}, {"start": 2411.25, "end": 2411.53, "word": " type", "probability": 0.537109375}, {"start": 2411.53, "end": 2412.25, "word": " I", "probability": 0.30517578125}, {"start": 2412.25, "end": 2412.55, "word": " made", "probability": 0.5244140625}, {"start": 2412.55, "end": 2412.81, "word": " a", "probability": 0.7646484375}, {"start": 2412.81, "end": 2413.07, "word": " stock", "probability": 0.59326171875}, {"start": 2413.07, "end": 2413.59, "word": " agent", "probability": 0.8837890625}, {"start": 2413.59, "end": 2414.15, "word": " which", "probability": 0.41064453125}, {"start": 2414.15, "end": 2414.97, "word": " will", "probability": 0.55615234375}, {"start": 2414.97, "end": 2414.97, "word": " actually", "probability": 0.427001953125}, {"start": 2414.97, "end": 2415.33, "word": " store", "probability": 0.865234375}, {"start": 2415.33, "end": 2415.65, "word": " all", "probability": 0.916015625}, {"start": 2415.65, "end": 2415.73, "word": " the", "probability": 0.537109375}, {"start": 2415.73, "end": 2416.07, "word": " commands", "probability": 0.75}, {"start": 2416.07, "end": 2416.33, "word": " without", "probability": 0.8662109375}, {"start": 2416.33, "end": 2416.97, "word": " knowing", "probability": 0.74169921875}, {"start": 2416.97, "end": 2418.17, "word": " their", "probability": 0.5595703125}, {"start": 2418.17, "end": 2418.63, "word": " details", "probability": 0.75830078125}, {"start": 2418.63, "end": 2419.59, "word": " and", "probability": 0.46240234375}, {"start": 2419.59, "end": 2419.77, "word": " in", "probability": 0.1734619140625}, {"start": 2419.77, "end": 2419.79, "word": " order", "probability": 0.90576171875}, {"start": 2419.79, "end": 2420.33, "word": " to", "probability": 0.8291015625}, {"start": 2420.33, "end": 2420.59, "word": " execute", "probability": 0.1463623046875}, {"start": 2420.59, "end": 2420.79, "word": " them", "probability": 0.71728515625}, {"start": 2420.79, "end": 2420.79, "word": " later", "probability": 0.8544921875}, {"start": 2420.79, "end": 2421.39, "word": " on", "probability": 0.57763671875}, {"start": 2421.39, "end": 2423.15, "word": " Of", "probability": 0.217041015625}, {"start": 2423.15, "end": 2423.33, "word": " course,", "probability": 0.92138671875}, {"start": 2423.43, "end": 2423.43, "word": " it", "probability": 0.325927734375}, {"start": 2423.43, "end": 2423.47, "word": " will", "probability": 0.425048828125}, {"start": 2423.47, "end": 2423.65, "word": " be", "probability": 0.86572265625}, {"start": 2423.65, "end": 2423.67, "word": " able", "probability": 0.947265625}, {"start": 2423.67, "end": 2423.77, "word": " to", "probability": 0.96728515625}, {"start": 2423.77, "end": 2424.05, "word": " execute", "probability": 0.82861328125}, {"start": 2424.05, "end": 2424.15, "word": " them", "probability": 0.7294921875}, {"start": 2424.15, "end": 2424.33, "word": " because", "probability": 0.703125}, {"start": 2424.33, "end": 2424.71, "word": " each", "probability": 0.7177734375}, {"start": 2424.71, "end": 2424.99, "word": " one", "probability": 0.251708984375}, {"start": 2424.99, "end": 2425.13, "word": " of", "probability": 0.78857421875}, {"start": 2425.13, "end": 2425.45, "word": " them", "probability": 0.72021484375}, {"start": 2425.45, "end": 2425.85, "word": " contains", "probability": 0.72314453125}, {"start": 2425.85, "end": 2426.03, "word": " the", "probability": 0.41650390625}, {"start": 2426.03, "end": 2426.33, "word": " information", "probability": 0.58349609375}, {"start": 2426.33, "end": 2426.63, "word": " and", "probability": 0.873046875}, {"start": 2426.63, "end": 2426.93, "word": " contains", "probability": 0.66943359375}, {"start": 2426.93, "end": 2427.13, "word": " the", "probability": 0.88671875}, {"start": 2427.13, "end": 2427.45, "word": " method", "probability": 0.9169921875}, {"start": 2427.45, "end": 2428.35, "word": " method", "probability": 0.27099609375}, {"start": 2428.35, "end": 2428.73, "word": " call", "probability": 0.5263671875}, {"start": 2428.73, "end": 2429.31, "word": " and", "probability": 0.52001953125}, {"start": 2429.31, "end": 2429.43, "word": " this", "probability": 0.79541015625}, {"start": 2429.43, "end": 2429.49, "word": " is", "probability": 0.92138671875}, {"start": 2429.49, "end": 2429.53, "word": " the", "probability": 0.88671875}, {"start": 2429.53, "end": 2429.71, "word": " idea", "probability": 0.705078125}, {"start": 2429.71, "end": 2430.47, "word": " of", "probability": 0.80078125}, {"start": 2430.47, "end": 2430.55, "word": " the", "probability": 0.2476806640625}, {"start": 2430.55, "end": 2431.03, "word": " command", "probability": 0.87451171875}, {"start": 2431.03, "end": 2432.09, "word": " pattern", "probability": 0.91064453125}], "temperature": 1.0}, {"id": 107, "seek": 246064, "start": 2433.76, "end": 2460.64, "text": "Of course, in the next lecture, we will see an example similar to this one, but we will apply undo and redo through it. We will see how undo and redo operations, which can be for example meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet, meet,", "tokens": [23919, 1164, 11, 294, 264, 958, 7991, 11, 321, 486, 536, 364, 1365, 2531, 281, 341, 472, 11, 457, 321, 486, 3079, 23779, 293, 29956, 807, 309, 13, 492, 486, 536, 577, 23779, 293, 29956, 7705, 11, 597, 393, 312, 337, 1365, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11, 1677, 11], "avg_logprob": -0.14722222434149848, "compression_ratio": 5.343065693430657, "no_speech_prob": 1.6570091247558594e-05, "words": [{"start": 2433.7599999999998, "end": 2434.24, "word": "Of", "probability": 0.29150390625}, {"start": 2434.24, "end": 2434.34, "word": " course,", "probability": 0.90625}, {"start": 2434.44, "end": 2434.48, "word": " in", "probability": 0.646484375}, {"start": 2434.48, "end": 2434.52, "word": " the", "probability": 0.83056640625}, {"start": 2434.52, "end": 2434.52, "word": " next", "probability": 0.7744140625}, {"start": 2434.52, "end": 2434.9, "word": " lecture,", "probability": 0.6982421875}, {"start": 2435.26, "end": 2435.34, "word": " we", "probability": 0.892578125}, {"start": 2435.34, "end": 2435.34, "word": " will", "probability": 0.63525390625}, {"start": 2435.34, "end": 2435.54, "word": " see", "probability": 0.66015625}, {"start": 2435.54, "end": 2436.08, "word": " an", "probability": 0.5947265625}, {"start": 2436.08, "end": 2436.08, "word": " example", "probability": 0.93701171875}, {"start": 2436.08, "end": 2436.48, "word": " similar", "probability": 0.6435546875}, {"start": 2436.48, "end": 2436.68, "word": " to", "probability": 0.9677734375}, {"start": 2436.68, "end": 2436.92, "word": " this", "probability": 0.87939453125}, {"start": 2436.92, "end": 2437.12, "word": " one,", "probability": 0.3916015625}, {"start": 2437.5, "end": 2438.1, "word": " but", "probability": 0.87109375}, {"start": 2438.1, "end": 2438.26, "word": " we", "probability": 0.66064453125}, {"start": 2438.26, "end": 2438.36, "word": " will", "probability": 0.83740234375}, {"start": 2438.36, "end": 2438.66, "word": " apply", "probability": 0.7353515625}, {"start": 2438.66, "end": 2439.84, "word": " undo", "probability": 0.283203125}, {"start": 2439.84, "end": 2440.74, "word": " and", "probability": 0.876953125}, {"start": 2440.74, "end": 2441.04, "word": " redo", "probability": 0.97412109375}, {"start": 2441.04, "end": 2441.12, "word": " through", "probability": 0.39306640625}, {"start": 2441.12, "end": 2441.12, "word": " it.", "probability": 0.8505859375}, {"start": 2441.22, "end": 2441.34, "word": " We", "probability": 0.79248046875}, {"start": 2441.34, "end": 2441.34, "word": " will", "probability": 0.8427734375}, {"start": 2441.34, "end": 2441.56, "word": " see", "probability": 0.853515625}, {"start": 2441.56, "end": 2441.76, "word": " how", "probability": 0.80078125}, {"start": 2441.76, "end": 2442.48, "word": " undo", "probability": 0.4404296875}, {"start": 2442.48, "end": 2442.7, "word": " and", "probability": 0.9130859375}, {"start": 2442.7, "end": 2442.98, "word": " redo", "probability": 0.8916015625}, {"start": 2442.98, "end": 2442.98, "word": " operations,", "probability": 0.4013671875}, {"start": 2443.14, "end": 2443.26, "word": " which", "probability": 0.80419921875}, {"start": 2443.26, "end": 2443.58, "word": " can", "probability": 0.71337890625}, {"start": 2443.58, "end": 2443.88, "word": " be", "probability": 0.8349609375}, {"start": 2443.88, "end": 2443.98, "word": " for", "probability": 0.241943359375}, {"start": 2443.98, "end": 2444.2, "word": " example", "probability": 0.90673828125}, {"start": 2444.2, "end": 2444.46, "word": " meet,", "probability": 0.62255859375}, {"start": 2444.52, "end": 2444.72, "word": " meet,", "probability": 0.9541015625}, {"start": 2445.38, "end": 2445.38, "word": " meet,", "probability": 0.309814453125}, {"start": 2446.24, "end": 2446.24, "word": " meet,", "probability": 0.408203125}, {"start": 2446.24, "end": 2446.24, "word": " meet,", "probability": 0.4970703125}, {"start": 2446.4, "end": 2446.4, "word": " meet,", "probability": 0.59716796875}, {"start": 2446.52, "end": 2446.86, "word": " meet,", "probability": 0.6845703125}, {"start": 2447.34, "end": 2447.34, "word": " meet,", "probability": 0.7548828125}, {"start": 2447.58, "end": 2447.58, "word": " meet,", "probability": 0.80419921875}, {"start": 2447.58, "end": 2447.58, "word": " meet,", "probability": 0.83349609375}, {"start": 2447.58, "end": 2447.58, "word": " meet,", "probability": 0.85009765625}, {"start": 2447.58, "end": 2447.58, "word": " meet,", "probability": 0.8583984375}, {"start": 2447.58, "end": 2447.58, "word": " meet,", "probability": 0.861328125}, {"start": 2447.58, "end": 2447.58, "word": " meet,", "probability": 0.87109375}, {"start": 2447.58, "end": 2447.58, "word": " meet,", "probability": 0.87841796875}, {"start": 2447.58, "end": 2447.58, "word": " meet,", "probability": 0.890625}, {"start": 2447.58, "end": 2447.58, "word": " meet,", "probability": 0.900390625}, {"start": 2447.58, "end": 2447.58, "word": " meet,", "probability": 0.908203125}, {"start": 2447.58, "end": 2447.58, "word": " meet,", "probability": 0.91650390625}, {"start": 2447.58, "end": 2447.58, "word": " meet,", "probability": 0.92138671875}, {"start": 2447.6, "end": 2447.6, "word": " meet,", "probability": 0.92529296875}, {"start": 2447.6, "end": 2447.6, "word": " meet,", "probability": 0.9296875}, {"start": 2447.6, "end": 2447.6, "word": " meet,", "probability": 0.93212890625}, {"start": 2447.6, "end": 2447.88, "word": " meet,", "probability": 0.935546875}, {"start": 2447.88, "end": 2447.88, "word": " meet,", "probability": 0.9375}, {"start": 2447.88, "end": 2447.9, "word": " meet,", "probability": 0.93994140625}, {"start": 2447.9, "end": 2447.9, "word": " meet,", "probability": 0.94091796875}, {"start": 2447.9, "end": 2447.9, "word": " meet,", "probability": 0.94287109375}, {"start": 2447.9, "end": 2447.92, "word": " meet,", "probability": 0.94384765625}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.9453125}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.94580078125}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.947265625}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.94775390625}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.9482421875}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.94873046875}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.94970703125}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.9501953125}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.95166015625}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.95166015625}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.95263671875}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.9541015625}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.95458984375}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.955078125}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.9560546875}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.95654296875}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.9580078125}, {"start": 2447.92, "end": 2447.92, "word": " meet,", "probability": 0.9580078125}, {"start": 2447.94, "end": 2448.12, "word": " meet,", "probability": 0.958984375}, {"start": 2449.58, "end": 2452.52, "word": " meet,", "probability": 0.95947265625}, {"start": 2453.06, "end": 2453.18, "word": " meet,", "probability": 0.96044921875}, {"start": 2455.02, "end": 2455.28, "word": " meet,", "probability": 0.96044921875}, {"start": 2456.26, "end": 2457.84, "word": " meet,", "probability": 0.9609375}, {"start": 2458.2, "end": 2458.28, "word": " meet,", "probability": 0.96142578125}, {"start": 2458.28, "end": 2458.28, "word": " meet,", "probability": 0.9619140625}, {"start": 2458.28, "end": 2458.28, "word": " meet,", "probability": 0.962890625}, {"start": 2458.28, "end": 2460.64, "word": " meet,", "probability": 0.96337890625}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96337890625}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96435546875}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96435546875}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96533203125}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96533203125}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.9658203125}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.9658203125}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96630859375}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96728515625}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96728515625}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96728515625}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.9677734375}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96826171875}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96826171875}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96875}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96875}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96923828125}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96875}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96923828125}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96923828125}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.9697265625}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.96923828125}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.9697265625}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.97021484375}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.97021484375}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.970703125}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.970703125}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.970703125}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.97119140625}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.9716796875}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.9716796875}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.9716796875}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.97216796875}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.97119140625}, {"start": 2460.64, "end": 2460.64, "word": " meet,", "probability": 0.9716796875}], "temperature": 1.0}, {"id": 108, "seek": 247929, "start": 2461.57, "end": 2479.29, "text": "Each command has a specific way to execute it and a way to return to execute it. Now, based on this talk, let's read the slide and see the UML diagram of the command pattern. The command design pattern", "tokens": [36, 608, 5622, 575, 257, 2685, 636, 281, 14483, 309, 293, 257, 636, 281, 2736, 281, 14483, 309, 13, 823, 11, 2361, 322, 341, 751, 11, 718, 311, 1401, 264, 4137, 293, 536, 264, 624, 12683, 10686, 295, 264, 5622, 5102, 13, 440, 5622, 1715, 5102], "avg_logprob": -0.4956781990984653, "compression_ratio": 1.5, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 2461.57, "end": 2461.99, "word": "Each", "probability": 0.50933837890625}, {"start": 2461.99, "end": 2462.39, "word": " command", "probability": 0.814453125}, {"start": 2462.39, "end": 2462.59, "word": " has", "probability": 0.3681640625}, {"start": 2462.59, "end": 2462.67, "word": " a", "probability": 0.43603515625}, {"start": 2462.67, "end": 2462.97, "word": " specific", "probability": 0.3369140625}, {"start": 2462.97, "end": 2463.55, "word": " way", "probability": 0.5205078125}, {"start": 2463.55, "end": 2463.73, "word": " to", "probability": 0.383056640625}, {"start": 2463.73, "end": 2464.11, "word": " execute", "probability": 0.6044921875}, {"start": 2464.11, "end": 2464.27, "word": " it", "probability": 0.6240234375}, {"start": 2464.27, "end": 2464.35, "word": " and", "probability": 0.53564453125}, {"start": 2464.35, "end": 2464.37, "word": " a", "probability": 0.35888671875}, {"start": 2464.37, "end": 2464.59, "word": " way", "probability": 0.458740234375}, {"start": 2464.59, "end": 2464.97, "word": " to", "probability": 0.8544921875}, {"start": 2464.97, "end": 2465.21, "word": " return", "probability": 0.352294921875}, {"start": 2465.21, "end": 2465.35, "word": " to", "probability": 0.60595703125}, {"start": 2465.35, "end": 2465.65, "word": " execute", "probability": 0.669921875}, {"start": 2465.65, "end": 2466.37, "word": " it.", "probability": 0.9091796875}, {"start": 2467.71, "end": 2468.23, "word": " Now,", "probability": 0.244384765625}, {"start": 2471.85, "end": 2471.95, "word": " based", "probability": 0.54736328125}, {"start": 2471.95, "end": 2472.13, "word": " on", "probability": 0.9443359375}, {"start": 2472.13, "end": 2472.31, "word": " this", "probability": 0.5859375}, {"start": 2472.31, "end": 2472.49, "word": " talk,", "probability": 0.297119140625}, {"start": 2472.73, "end": 2472.97, "word": " let's", "probability": 0.87744140625}, {"start": 2472.97, "end": 2473.29, "word": " read", "probability": 0.75048828125}, {"start": 2473.29, "end": 2473.53, "word": " the", "probability": 0.7685546875}, {"start": 2473.53, "end": 2473.95, "word": " slide", "probability": 0.8935546875}, {"start": 2473.95, "end": 2475.05, "word": " and", "probability": 0.650390625}, {"start": 2475.05, "end": 2475.41, "word": " see", "probability": 0.62109375}, {"start": 2475.41, "end": 2475.57, "word": " the", "probability": 0.87841796875}, {"start": 2475.57, "end": 2475.83, "word": " UML", "probability": 0.781005859375}, {"start": 2475.83, "end": 2476.29, "word": " diagram", "probability": 0.8984375}, {"start": 2476.29, "end": 2476.51, "word": " of", "probability": 0.7392578125}, {"start": 2476.51, "end": 2476.61, "word": " the", "probability": 0.75927734375}, {"start": 2476.61, "end": 2476.85, "word": " command", "probability": 0.84814453125}, {"start": 2476.85, "end": 2477.23, "word": " pattern.", "probability": 0.7724609375}, {"start": 2477.73, "end": 2478.11, "word": " The", "probability": 0.775390625}, {"start": 2478.11, "end": 2478.43, "word": " command", "probability": 0.67529296875}, {"start": 2478.43, "end": 2478.85, "word": " design", "probability": 0.94140625}, {"start": 2478.85, "end": 2479.29, "word": " pattern", "probability": 0.87109375}], "temperature": 1.0}, {"id": 109, "seek": 251012, "start": 2480.64, "end": 2510.12, "text": " Let's go back again Encapsulate commands, method calls in objects Meaning the process of calling the method call is converted to what? To objects Allowing us to issue requests, to issue commands without knowing the requested operation or the requesting object Without knowing who is asking for the operation and who is executing it I just take the commands, store them in a list, create a loop and execute it The agent executing it does not know anything about the details of the execution", "tokens": [961, 311, 352, 646, 797, 2193, 496, 1878, 5256, 16901, 11, 3170, 5498, 294, 6565, 19948, 264, 1399, 295, 5141, 264, 3170, 818, 307, 16424, 281, 437, 30, 1407, 6565, 1057, 9637, 505, 281, 2734, 12475, 11, 281, 2734, 16901, 1553, 5276, 264, 16436, 6916, 420, 264, 31937, 2657, 9129, 5276, 567, 307, 3365, 337, 264, 6916, 293, 567, 307, 32368, 309, 286, 445, 747, 264, 16901, 11, 3531, 552, 294, 257, 1329, 11, 1884, 257, 6367, 293, 14483, 309, 440, 9461, 32368, 309, 775, 406, 458, 1340, 466, 264, 4365, 295, 264, 15058], "avg_logprob": -0.5098683934462698, "compression_ratio": 1.8992248062015504, "no_speech_prob": 1.049041748046875e-05, "words": [{"start": 2480.64, "end": 2480.84, "word": " Let's", "probability": 0.5369873046875}, {"start": 2480.84, "end": 2481.04, "word": " go", "probability": 0.62939453125}, {"start": 2481.04, "end": 2481.12, "word": " back", "probability": 0.8466796875}, {"start": 2481.12, "end": 2481.4, "word": " again", "probability": 0.406005859375}, {"start": 2481.4, "end": 2482.3, "word": " Encapsulate", "probability": 0.7540283203125}, {"start": 2482.3, "end": 2482.92, "word": " commands,", "probability": 0.84423828125}, {"start": 2483.1, "end": 2483.36, "word": " method", "probability": 0.9189453125}, {"start": 2483.36, "end": 2483.68, "word": " calls", "probability": 0.8818359375}, {"start": 2483.68, "end": 2483.92, "word": " in", "probability": 0.7392578125}, {"start": 2483.92, "end": 2484.38, "word": " objects", "probability": 0.94189453125}, {"start": 2484.38, "end": 2485.22, "word": " Meaning", "probability": 0.11376953125}, {"start": 2485.22, "end": 2485.32, "word": " the", "probability": 0.310546875}, {"start": 2485.32, "end": 2485.56, "word": " process", "probability": 0.20751953125}, {"start": 2485.56, "end": 2485.82, "word": " of", "probability": 0.92529296875}, {"start": 2485.82, "end": 2486.12, "word": " calling", "probability": 0.12060546875}, {"start": 2486.12, "end": 2486.38, "word": " the", "probability": 0.332275390625}, {"start": 2486.38, "end": 2486.56, "word": " method", "probability": 0.9267578125}, {"start": 2486.56, "end": 2486.86, "word": " call", "probability": 0.6591796875}, {"start": 2486.86, "end": 2487.14, "word": " is", "probability": 0.11163330078125}, {"start": 2487.14, "end": 2487.5, "word": " converted", "probability": 0.5107421875}, {"start": 2487.5, "end": 2487.68, "word": " to", "probability": 0.51318359375}, {"start": 2487.68, "end": 2487.96, "word": " what?", "probability": 0.2386474609375}, {"start": 2488.44, "end": 2488.56, "word": " To", "probability": 0.368896484375}, {"start": 2488.56, "end": 2489.0, "word": " objects", "probability": 0.935546875}, {"start": 2489.0, "end": 2490.26, "word": " Allowing", "probability": 0.770263671875}, {"start": 2490.26, "end": 2490.56, "word": " us", "probability": 0.931640625}, {"start": 2490.56, "end": 2490.7, "word": " to", "probability": 0.96875}, {"start": 2490.7, "end": 2490.86, "word": " issue", "probability": 0.9365234375}, {"start": 2490.86, "end": 2491.48, "word": " requests,", "probability": 0.6708984375}, {"start": 2491.76, "end": 2492.14, "word": " to", "probability": 0.55712890625}, {"start": 2492.14, "end": 2492.7, "word": " issue", "probability": 0.88427734375}, {"start": 2492.7, "end": 2493.04, "word": " commands", "probability": 0.2064208984375}, {"start": 2493.04, "end": 2493.8, "word": " without", "probability": 0.51416015625}, {"start": 2493.8, "end": 2494.9, "word": " knowing", "probability": 0.79736328125}, {"start": 2494.9, "end": 2495.14, "word": " the", "probability": 0.87255859375}, {"start": 2495.14, "end": 2495.52, "word": " requested", "probability": 0.92626953125}, {"start": 2495.52, "end": 2496.16, "word": " operation", "probability": 0.93701171875}, {"start": 2496.16, "end": 2497.1, "word": " or", "probability": 0.83154296875}, {"start": 2497.1, "end": 2497.3, "word": " the", "probability": 0.85791015625}, {"start": 2497.3, "end": 2497.72, "word": " requesting", "probability": 0.78955078125}, {"start": 2497.72, "end": 2498.16, "word": " object", "probability": 0.9365234375}, {"start": 2498.16, "end": 2498.4, "word": " Without", "probability": 0.5986328125}, {"start": 2498.4, "end": 2498.94, "word": " knowing", "probability": 0.7177734375}, {"start": 2498.94, "end": 2499.32, "word": " who", "probability": 0.82080078125}, {"start": 2499.32, "end": 2499.52, "word": " is", "probability": 0.330810546875}, {"start": 2499.52, "end": 2499.68, "word": " asking", "probability": 0.41015625}, {"start": 2499.68, "end": 2499.8, "word": " for", "probability": 0.72607421875}, {"start": 2499.8, "end": 2499.86, "word": " the", "probability": 0.6162109375}, {"start": 2499.86, "end": 2500.14, "word": " operation", "probability": 0.49609375}, {"start": 2500.14, "end": 2500.36, "word": " and", "probability": 0.75634765625}, {"start": 2500.36, "end": 2500.56, "word": " who", "probability": 0.89697265625}, {"start": 2500.56, "end": 2500.66, "word": " is", "probability": 0.8349609375}, {"start": 2500.66, "end": 2500.92, "word": " executing", "probability": 0.794921875}, {"start": 2500.92, "end": 2501.4, "word": " it", "probability": 0.60205078125}, {"start": 2501.4, "end": 2501.68, "word": " I", "probability": 0.69091796875}, {"start": 2501.68, "end": 2501.88, "word": " just", "probability": 0.55322265625}, {"start": 2501.88, "end": 2502.14, "word": " take", "probability": 0.68310546875}, {"start": 2502.14, "end": 2502.28, "word": " the", "probability": 0.70849609375}, {"start": 2502.28, "end": 2502.64, "word": " commands,", "probability": 0.8203125}, {"start": 2502.74, "end": 2502.96, "word": " store", "probability": 0.5849609375}, {"start": 2502.96, "end": 2503.14, "word": " them", "probability": 0.869140625}, {"start": 2503.14, "end": 2503.2, "word": " in", "probability": 0.8505859375}, {"start": 2503.2, "end": 2503.3, "word": " a", "probability": 0.81201171875}, {"start": 2503.3, "end": 2503.46, "word": " list,", "probability": 0.9150390625}, {"start": 2503.54, "end": 2503.72, "word": " create", "probability": 0.27001953125}, {"start": 2503.72, "end": 2503.9, "word": " a", "probability": 0.94287109375}, {"start": 2503.9, "end": 2504.06, "word": " loop", "probability": 0.96484375}, {"start": 2504.06, "end": 2504.18, "word": " and", "probability": 0.75732421875}, {"start": 2504.18, "end": 2504.76, "word": " execute", "probability": 0.84912109375}, {"start": 2504.76, "end": 2506.3, "word": " it", "probability": 0.6396484375}, {"start": 2506.3, "end": 2506.5, "word": " The", "probability": 0.26953125}, {"start": 2506.5, "end": 2507.2, "word": " agent", "probability": 0.64990234375}, {"start": 2507.2, "end": 2507.6, "word": " executing", "probability": 0.384521484375}, {"start": 2507.6, "end": 2507.74, "word": " it", "probability": 0.389404296875}, {"start": 2507.74, "end": 2507.82, "word": " does", "probability": 0.51171875}, {"start": 2507.82, "end": 2507.82, "word": " not", "probability": 0.9228515625}, {"start": 2507.82, "end": 2508.08, "word": " know", "probability": 0.8837890625}, {"start": 2508.08, "end": 2508.4, "word": " anything", "probability": 0.71484375}, {"start": 2508.4, "end": 2509.14, "word": " about", "probability": 0.8818359375}, {"start": 2509.14, "end": 2509.42, "word": " the", "probability": 0.828125}, {"start": 2509.42, "end": 2509.68, "word": " details", "probability": 0.4482421875}, {"start": 2509.68, "end": 2509.86, "word": " of", "probability": 0.9560546875}, {"start": 2509.86, "end": 2509.94, "word": " the", "probability": 0.625}, {"start": 2509.94, "end": 2510.12, "word": " execution", "probability": 0.818359375}], "temperature": 1.0}, {"id": 110, "seek": 253046, "start": 2512.2, "end": 2530.46, "text": "Of course, this also makes the program more flexible, because I can make a new command without changing anything on the agent that executes it, okay? I make commands, the program becomes more flexible, because I add new commands and store these commands without having to change anything on the agent that executes it", "tokens": [23919, 1164, 11, 341, 611, 1669, 264, 1461, 544, 11358, 11, 570, 286, 393, 652, 257, 777, 5622, 1553, 4473, 1340, 322, 264, 9461, 300, 4454, 1819, 309, 11, 1392, 30, 286, 652, 16901, 11, 264, 1461, 3643, 544, 11358, 11, 570, 286, 909, 777, 16901, 293, 3531, 613, 16901, 1553, 1419, 281, 1319, 1340, 322, 264, 9461, 300, 4454, 1819, 309], "avg_logprob": -0.41641864227870157, "compression_ratio": 1.9096385542168675, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 2512.2, "end": 2512.38, "word": "Of", "probability": 0.1363525390625}, {"start": 2512.38, "end": 2512.52, "word": " course,", "probability": 0.91015625}, {"start": 2512.64, "end": 2512.72, "word": " this", "probability": 0.80810546875}, {"start": 2512.72, "end": 2513.1, "word": " also", "probability": 0.441162109375}, {"start": 2513.1, "end": 2513.5, "word": " makes", "probability": 0.775390625}, {"start": 2513.5, "end": 2513.92, "word": " the", "probability": 0.822265625}, {"start": 2513.92, "end": 2514.3, "word": " program", "probability": 0.72216796875}, {"start": 2514.3, "end": 2514.52, "word": " more", "probability": 0.80615234375}, {"start": 2514.52, "end": 2514.74, "word": " flexible,", "probability": 0.62939453125}, {"start": 2515.04, "end": 2515.2, "word": " because", "probability": 0.61181640625}, {"start": 2515.2, "end": 2515.34, "word": " I", "probability": 0.9560546875}, {"start": 2515.34, "end": 2515.54, "word": " can", "probability": 0.94091796875}, {"start": 2515.54, "end": 2515.76, "word": " make", "probability": 0.67724609375}, {"start": 2515.76, "end": 2515.88, "word": " a", "probability": 0.392578125}, {"start": 2515.88, "end": 2515.88, "word": " new", "probability": 0.8984375}, {"start": 2515.88, "end": 2516.18, "word": " command", "probability": 0.78564453125}, {"start": 2516.18, "end": 2518.22, "word": " without", "probability": 0.76513671875}, {"start": 2518.22, "end": 2518.66, "word": " changing", "probability": 0.689453125}, {"start": 2518.66, "end": 2518.88, "word": " anything", "probability": 0.70263671875}, {"start": 2518.88, "end": 2519.04, "word": " on", "probability": 0.351318359375}, {"start": 2519.04, "end": 2519.14, "word": " the", "probability": 0.89599609375}, {"start": 2519.14, "end": 2519.48, "word": " agent", "probability": 0.366943359375}, {"start": 2519.48, "end": 2519.74, "word": " that", "probability": 0.41943359375}, {"start": 2519.74, "end": 2520.12, "word": " executes", "probability": 0.676513671875}, {"start": 2520.12, "end": 2520.58, "word": " it,", "probability": 0.7763671875}, {"start": 2520.58, "end": 2520.84, "word": " okay?", "probability": 0.404541015625}, {"start": 2521.4, "end": 2521.52, "word": " I", "probability": 0.82763671875}, {"start": 2521.52, "end": 2521.74, "word": " make", "probability": 0.7861328125}, {"start": 2521.74, "end": 2522.08, "word": " commands,", "probability": 0.669921875}, {"start": 2522.22, "end": 2522.28, "word": " the", "probability": 0.77099609375}, {"start": 2522.28, "end": 2522.76, "word": " program", "probability": 0.8857421875}, {"start": 2522.76, "end": 2523.74, "word": " becomes", "probability": 0.80029296875}, {"start": 2523.74, "end": 2524.16, "word": " more", "probability": 0.66162109375}, {"start": 2524.16, "end": 2524.46, "word": " flexible,", "probability": 0.7841796875}, {"start": 2524.56, "end": 2524.66, "word": " because", "probability": 0.382568359375}, {"start": 2524.66, "end": 2524.76, "word": " I", "probability": 0.97802734375}, {"start": 2524.76, "end": 2524.94, "word": " add", "probability": 0.712890625}, {"start": 2524.94, "end": 2525.72, "word": " new", "probability": 0.88916015625}, {"start": 2525.72, "end": 2525.72, "word": " commands", "probability": 0.82763671875}, {"start": 2525.72, "end": 2526.88, "word": " and", "probability": 0.796875}, {"start": 2526.88, "end": 2527.34, "word": " store", "probability": 0.68603515625}, {"start": 2527.34, "end": 2528.1, "word": " these", "probability": 0.74609375}, {"start": 2528.1, "end": 2528.1, "word": " commands", "probability": 0.80859375}, {"start": 2528.1, "end": 2528.44, "word": " without", "probability": 0.90966796875}, {"start": 2528.44, "end": 2528.88, "word": " having", "probability": 0.6201171875}, {"start": 2528.88, "end": 2528.98, "word": " to", "probability": 0.97021484375}, {"start": 2528.98, "end": 2529.2, "word": " change", "probability": 0.55615234375}, {"start": 2529.2, "end": 2529.32, "word": " anything", "probability": 0.4892578125}, {"start": 2529.32, "end": 2529.38, "word": " on", "probability": 0.6005859375}, {"start": 2529.38, "end": 2529.5, "word": " the", "probability": 0.92041015625}, {"start": 2529.5, "end": 2529.76, "word": " agent", "probability": 0.69873046875}, {"start": 2529.76, "end": 2529.94, "word": " that", "probability": 0.84228515625}, {"start": 2529.94, "end": 2530.26, "word": " executes", "probability": 0.961181640625}, {"start": 2530.26, "end": 2530.46, "word": " it", "probability": 0.615234375}], "temperature": 1.0}, {"id": 111, "seek": 255161, "start": 2532.35, "end": 2551.61, "text": " Of course, he will tell us his apps that I can make a queue for commands, this is what we made a queue for commands, the commands that we created, we stored them in a queue and executed them later on Undo, Read and Actions, we will see how to execute them in the next lecture The goal is to encapsulate a request in an object, the request or the order or the command, we turned it into an object", "tokens": [2720, 1164, 11, 415, 486, 980, 505, 702, 7733, 300, 286, 393, 652, 257, 18639, 337, 16901, 11, 341, 307, 437, 321, 1027, 257, 18639, 337, 16901, 11, 264, 16901, 300, 321, 2942, 11, 321, 12187, 552, 294, 257, 18639, 293, 17577, 552, 1780, 322, 2719, 78, 11, 17604, 293, 3251, 626, 11, 321, 486, 536, 577, 281, 14483, 552, 294, 264, 958, 7991, 440, 3387, 307, 281, 38745, 5256, 257, 5308, 294, 364, 2657, 11, 264, 5308, 420, 264, 1668, 420, 264, 5622, 11, 321, 3574, 309, 666, 364, 2657], "avg_logprob": -0.4915081615681234, "compression_ratio": 1.841860465116279, "no_speech_prob": 5.125999450683594e-06, "words": [{"start": 2532.35, "end": 2532.73, "word": " Of", "probability": 0.10479736328125}, {"start": 2532.73, "end": 2532.91, "word": " course,", "probability": 0.91064453125}, {"start": 2532.97, "end": 2532.99, "word": " he", "probability": 0.2607421875}, {"start": 2532.99, "end": 2533.09, "word": " will", "probability": 0.5537109375}, {"start": 2533.09, "end": 2533.23, "word": " tell", "probability": 0.50927734375}, {"start": 2533.23, "end": 2533.33, "word": " us", "probability": 0.6943359375}, {"start": 2533.33, "end": 2533.37, "word": " his", "probability": 0.615234375}, {"start": 2533.37, "end": 2533.75, "word": " apps", "probability": 0.381103515625}, {"start": 2533.75, "end": 2534.09, "word": " that", "probability": 0.4208984375}, {"start": 2534.09, "end": 2534.29, "word": " I", "probability": 0.39599609375}, {"start": 2534.29, "end": 2534.55, "word": " can", "probability": 0.88818359375}, {"start": 2534.55, "end": 2534.77, "word": " make", "probability": 0.41552734375}, {"start": 2534.77, "end": 2534.91, "word": " a", "probability": 0.396484375}, {"start": 2534.91, "end": 2535.07, "word": " queue", "probability": 0.9169921875}, {"start": 2535.07, "end": 2535.23, "word": " for", "probability": 0.6162109375}, {"start": 2535.23, "end": 2535.65, "word": " commands,", "probability": 0.7939453125}, {"start": 2535.73, "end": 2535.85, "word": " this", "probability": 0.244873046875}, {"start": 2535.85, "end": 2535.91, "word": " is", "probability": 0.77734375}, {"start": 2535.91, "end": 2535.91, "word": " what", "probability": 0.46630859375}, {"start": 2535.91, "end": 2535.91, "word": " we", "probability": 0.89404296875}, {"start": 2535.91, "end": 2536.15, "word": " made", "probability": 0.248779296875}, {"start": 2536.15, "end": 2536.31, "word": " a", "probability": 0.36181640625}, {"start": 2536.31, "end": 2536.43, "word": " queue", "probability": 0.95849609375}, {"start": 2536.43, "end": 2536.57, "word": " for", "probability": 0.87060546875}, {"start": 2536.57, "end": 2536.99, "word": " commands,", "probability": 0.8369140625}, {"start": 2537.41, "end": 2537.51, "word": " the", "probability": 0.5791015625}, {"start": 2537.51, "end": 2537.77, "word": " commands", "probability": 0.69189453125}, {"start": 2537.77, "end": 2537.91, "word": " that", "probability": 0.55322265625}, {"start": 2537.91, "end": 2537.99, "word": " we", "probability": 0.91162109375}, {"start": 2537.99, "end": 2538.25, "word": " created,", "probability": 0.40576171875}, {"start": 2538.53, "end": 2538.61, "word": " we", "probability": 0.3896484375}, {"start": 2538.61, "end": 2538.83, "word": " stored", "probability": 0.62548828125}, {"start": 2538.83, "end": 2539.05, "word": " them", "probability": 0.5556640625}, {"start": 2539.05, "end": 2539.15, "word": " in", "probability": 0.93212890625}, {"start": 2539.15, "end": 2539.35, "word": " a", "probability": 0.63427734375}, {"start": 2539.35, "end": 2539.35, "word": " queue", "probability": 0.9638671875}, {"start": 2539.35, "end": 2539.47, "word": " and", "probability": 0.63720703125}, {"start": 2539.47, "end": 2539.75, "word": " executed", "probability": 0.191650390625}, {"start": 2539.75, "end": 2540.57, "word": " them", "probability": 0.6875}, {"start": 2540.57, "end": 2540.97, "word": " later", "probability": 0.8447265625}, {"start": 2540.97, "end": 2541.39, "word": " on", "probability": 0.56005859375}, {"start": 2541.39, "end": 2541.91, "word": " Undo,", "probability": 0.611328125}, {"start": 2541.97, "end": 2542.07, "word": " Read", "probability": 0.418212890625}, {"start": 2542.07, "end": 2542.17, "word": " and", "probability": 0.6416015625}, {"start": 2542.17, "end": 2542.55, "word": " Actions,", "probability": 0.902099609375}, {"start": 2542.57, "end": 2542.65, "word": " we", "probability": 0.8798828125}, {"start": 2542.65, "end": 2542.69, "word": " will", "probability": 0.79248046875}, {"start": 2542.69, "end": 2542.83, "word": " see", "probability": 0.8828125}, {"start": 2542.83, "end": 2543.01, "word": " how", "probability": 0.90234375}, {"start": 2543.01, "end": 2543.11, "word": " to", "probability": 0.66748046875}, {"start": 2543.11, "end": 2543.41, "word": " execute", "probability": 0.34375}, {"start": 2543.41, "end": 2543.61, "word": " them", "probability": 0.51806640625}, {"start": 2543.61, "end": 2544.21, "word": " in", "probability": 0.77880859375}, {"start": 2544.21, "end": 2544.23, "word": " the", "probability": 0.82275390625}, {"start": 2544.23, "end": 2544.23, "word": " next", "probability": 0.86474609375}, {"start": 2544.23, "end": 2544.83, "word": " lecture", "probability": 0.76904296875}, {"start": 2544.83, "end": 2545.57, "word": " The", "probability": 0.53955078125}, {"start": 2545.57, "end": 2545.79, "word": " goal", "probability": 0.7314453125}, {"start": 2545.79, "end": 2546.01, "word": " is", "probability": 0.6015625}, {"start": 2546.01, "end": 2546.33, "word": " to", "probability": 0.857421875}, {"start": 2546.33, "end": 2546.97, "word": " encapsulate", "probability": 0.9228515625}, {"start": 2546.97, "end": 2547.19, "word": " a", "probability": 0.94189453125}, {"start": 2547.19, "end": 2547.53, "word": " request", "probability": 0.9560546875}, {"start": 2547.53, "end": 2547.69, "word": " in", "probability": 0.83740234375}, {"start": 2547.69, "end": 2547.81, "word": " an", "probability": 0.896484375}, {"start": 2547.81, "end": 2548.19, "word": " object,", "probability": 0.9775390625}, {"start": 2548.47, "end": 2548.69, "word": " the", "probability": 0.65869140625}, {"start": 2548.69, "end": 2548.89, "word": " request", "probability": 0.8095703125}, {"start": 2548.89, "end": 2549.07, "word": " or", "probability": 0.6689453125}, {"start": 2549.07, "end": 2549.73, "word": " the", "probability": 0.50146484375}, {"start": 2549.73, "end": 2550.05, "word": " order", "probability": 0.63720703125}, {"start": 2550.05, "end": 2550.25, "word": " or", "probability": 0.908203125}, {"start": 2550.25, "end": 2550.37, "word": " the", "probability": 0.84326171875}, {"start": 2550.37, "end": 2550.69, "word": " command,", "probability": 0.88525390625}, {"start": 2550.77, "end": 2550.83, "word": " we", "probability": 0.73388671875}, {"start": 2550.83, "end": 2551.01, "word": " turned", "probability": 0.2080078125}, {"start": 2551.01, "end": 2551.19, "word": " it", "probability": 0.8427734375}, {"start": 2551.19, "end": 2551.25, "word": " into", "probability": 0.794921875}, {"start": 2551.25, "end": 2551.35, "word": " an", "probability": 0.83544921875}, {"start": 2551.35, "end": 2551.61, "word": " object", "probability": 0.98046875}], "temperature": 1.0}, {"id": 112, "seek": 257165, "start": 2552.17, "end": 2571.65, "text": "and this allows me to save the request in a queue let's look at the diagram of the command pattern and look at the example that we just explained the idea is that I have a class here called receiver this class receiver performs the operations that I want it to do", "tokens": [474, 341, 4045, 385, 281, 3155, 264, 5308, 294, 257, 18639, 718, 311, 574, 412, 264, 10686, 295, 264, 5622, 5102, 293, 574, 412, 264, 1365, 300, 321, 445, 8825, 264, 1558, 307, 300, 286, 362, 257, 1508, 510, 1219, 20086, 341, 1508, 20086, 26213, 264, 7705, 300, 286, 528, 309, 281, 360], "avg_logprob": -0.5179398357868195, "compression_ratio": 1.6335403726708075, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 2552.17, "end": 2552.33, "word": "and", "probability": 0.2166748046875}, {"start": 2552.33, "end": 2552.55, "word": " this", "probability": 0.6962890625}, {"start": 2552.55, "end": 2552.87, "word": " allows", "probability": 0.337890625}, {"start": 2552.87, "end": 2553.17, "word": " me", "probability": 0.82568359375}, {"start": 2553.17, "end": 2553.97, "word": " to", "probability": 0.84814453125}, {"start": 2553.97, "end": 2554.25, "word": " save", "probability": 0.68408203125}, {"start": 2554.25, "end": 2554.47, "word": " the", "probability": 0.58447265625}, {"start": 2554.47, "end": 2554.83, "word": " request", "probability": 0.7958984375}, {"start": 2554.83, "end": 2554.99, "word": " in", "probability": 0.7216796875}, {"start": 2554.99, "end": 2555.13, "word": " a", "probability": 0.87158203125}, {"start": 2555.13, "end": 2555.33, "word": " queue", "probability": 0.93408203125}, {"start": 2555.33, "end": 2558.35, "word": " let's", "probability": 0.4854736328125}, {"start": 2558.35, "end": 2558.77, "word": " look", "probability": 0.212890625}, {"start": 2558.77, "end": 2558.91, "word": " at", "probability": 0.9111328125}, {"start": 2558.91, "end": 2559.17, "word": " the", "probability": 0.46484375}, {"start": 2559.17, "end": 2559.65, "word": " diagram", "probability": 0.64208984375}, {"start": 2559.65, "end": 2560.35, "word": " of", "probability": 0.53369140625}, {"start": 2560.35, "end": 2560.51, "word": " the", "probability": 0.433349609375}, {"start": 2560.51, "end": 2560.73, "word": " command", "probability": 0.58642578125}, {"start": 2560.73, "end": 2561.19, "word": " pattern", "probability": 0.833984375}, {"start": 2561.19, "end": 2561.35, "word": " and", "probability": 0.724609375}, {"start": 2561.35, "end": 2561.59, "word": " look", "probability": 0.1815185546875}, {"start": 2561.59, "end": 2561.85, "word": " at", "probability": 0.8671875}, {"start": 2561.85, "end": 2561.95, "word": " the", "probability": 0.7587890625}, {"start": 2561.95, "end": 2562.23, "word": " example", "probability": 0.92822265625}, {"start": 2562.23, "end": 2562.31, "word": " that", "probability": 0.359130859375}, {"start": 2562.31, "end": 2563.09, "word": " we", "probability": 0.716796875}, {"start": 2563.09, "end": 2563.17, "word": " just", "probability": 0.14990234375}, {"start": 2563.17, "end": 2563.45, "word": " explained", "probability": 0.420654296875}, {"start": 2563.45, "end": 2565.03, "word": " the", "probability": 0.3544921875}, {"start": 2565.03, "end": 2565.29, "word": " idea", "probability": 0.8017578125}, {"start": 2565.29, "end": 2565.65, "word": " is", "probability": 0.74658203125}, {"start": 2565.65, "end": 2565.75, "word": " that", "probability": 0.810546875}, {"start": 2565.75, "end": 2565.87, "word": " I", "probability": 0.71044921875}, {"start": 2565.87, "end": 2566.13, "word": " have", "probability": 0.93603515625}, {"start": 2566.13, "end": 2566.41, "word": " a", "probability": 0.69873046875}, {"start": 2566.41, "end": 2566.73, "word": " class", "probability": 0.96875}, {"start": 2566.73, "end": 2566.75, "word": " here", "probability": 0.366455078125}, {"start": 2566.75, "end": 2567.03, "word": " called", "probability": 0.57421875}, {"start": 2567.03, "end": 2567.59, "word": " receiver", "probability": 0.7568359375}, {"start": 2567.59, "end": 2568.87, "word": " this", "probability": 0.6328125}, {"start": 2568.87, "end": 2569.17, "word": " class", "probability": 0.90771484375}, {"start": 2569.17, "end": 2569.73, "word": " receiver", "probability": 0.60791015625}, {"start": 2569.73, "end": 2570.41, "word": " performs", "probability": 0.327392578125}, {"start": 2570.41, "end": 2570.55, "word": " the", "probability": 0.71337890625}, {"start": 2570.55, "end": 2570.95, "word": " operations", "probability": 0.69482421875}, {"start": 2570.95, "end": 2571.11, "word": " that", "probability": 0.87109375}, {"start": 2571.11, "end": 2571.21, "word": " I", "probability": 0.97216796875}, {"start": 2571.21, "end": 2571.45, "word": " want", "probability": 0.71044921875}, {"start": 2571.45, "end": 2571.65, "word": " it", "probability": 0.76123046875}, {"start": 2571.65, "end": 2571.65, "word": " to", "probability": 0.97265625}, {"start": 2571.65, "end": 2571.65, "word": " do", "probability": 0.60791015625}], "temperature": 1.0}, {"id": 113, "seek": 258785, "start": 2572.39, "end": 2587.85, "text": "Okay, like the process of selling and buying. So this receiver is represented in our program for the stock market. As soon as we started the program, I had a stock market class with buy method, sell, open company, close company, all methods. Okay?", "tokens": [8297, 11, 411, 264, 1399, 295, 6511, 293, 6382, 13, 407, 341, 20086, 307, 10379, 294, 527, 1461, 337, 264, 4127, 2142, 13, 1018, 2321, 382, 321, 1409, 264, 1461, 11, 286, 632, 257, 4127, 2142, 1508, 365, 2256, 3170, 11, 3607, 11, 1269, 2237, 11, 1998, 2237, 11, 439, 7150, 13, 1033, 30], "avg_logprob": -0.46960226622494783, "compression_ratio": 1.5060975609756098, "no_speech_prob": 2.1398067474365234e-05, "words": [{"start": 2572.39, "end": 2572.67, "word": "Okay,", "probability": 0.11358642578125}, {"start": 2572.85, "end": 2573.05, "word": " like", "probability": 0.56982421875}, {"start": 2573.05, "end": 2573.13, "word": " the", "probability": 0.1761474609375}, {"start": 2573.13, "end": 2573.31, "word": " process", "probability": 0.6201171875}, {"start": 2573.31, "end": 2573.51, "word": " of", "probability": 0.95703125}, {"start": 2573.51, "end": 2573.73, "word": " selling", "probability": 0.451904296875}, {"start": 2573.73, "end": 2573.95, "word": " and", "probability": 0.875}, {"start": 2573.95, "end": 2574.23, "word": " buying.", "probability": 0.6904296875}, {"start": 2574.85, "end": 2575.01, "word": " So", "probability": 0.56884765625}, {"start": 2575.01, "end": 2575.25, "word": " this", "probability": 0.7607421875}, {"start": 2575.25, "end": 2575.71, "word": " receiver", "probability": 0.8974609375}, {"start": 2575.71, "end": 2575.89, "word": " is", "probability": 0.2939453125}, {"start": 2575.89, "end": 2576.29, "word": " represented", "probability": 0.50048828125}, {"start": 2576.29, "end": 2576.43, "word": " in", "probability": 0.875}, {"start": 2576.43, "end": 2577.05, "word": " our", "probability": 0.88232421875}, {"start": 2577.05, "end": 2577.05, "word": " program", "probability": 0.8232421875}, {"start": 2577.05, "end": 2577.81, "word": " for", "probability": 0.359375}, {"start": 2577.81, "end": 2577.87, "word": " the", "probability": 0.837890625}, {"start": 2577.87, "end": 2578.05, "word": " stock", "probability": 0.7470703125}, {"start": 2578.05, "end": 2578.49, "word": " market.", "probability": 0.9130859375}, {"start": 2579.05, "end": 2579.19, "word": " As", "probability": 0.3427734375}, {"start": 2579.19, "end": 2579.31, "word": " soon", "probability": 0.94384765625}, {"start": 2579.31, "end": 2579.37, "word": " as", "probability": 0.97314453125}, {"start": 2579.37, "end": 2579.45, "word": " we", "probability": 0.92333984375}, {"start": 2579.45, "end": 2579.63, "word": " started", "probability": 0.83251953125}, {"start": 2579.63, "end": 2579.79, "word": " the", "probability": 0.8291015625}, {"start": 2579.79, "end": 2580.29, "word": " program,", "probability": 0.9208984375}, {"start": 2580.71, "end": 2580.77, "word": " I", "probability": 0.89990234375}, {"start": 2580.77, "end": 2581.03, "word": " had", "probability": 0.8828125}, {"start": 2581.03, "end": 2581.41, "word": " a", "probability": 0.79296875}, {"start": 2581.41, "end": 2581.53, "word": " stock", "probability": 0.259765625}, {"start": 2581.53, "end": 2582.15, "word": " market", "probability": 0.89208984375}, {"start": 2582.15, "end": 2582.15, "word": " class", "probability": 0.97314453125}, {"start": 2582.15, "end": 2582.65, "word": " with", "probability": 0.25732421875}, {"start": 2582.65, "end": 2583.35, "word": " buy", "probability": 0.404541015625}, {"start": 2583.35, "end": 2583.53, "word": " method,", "probability": 0.63818359375}, {"start": 2584.01, "end": 2584.31, "word": " sell,", "probability": 0.8857421875}, {"start": 2584.77, "end": 2585.15, "word": " open", "probability": 0.9189453125}, {"start": 2585.15, "end": 2585.63, "word": " company,", "probability": 0.91357421875}, {"start": 2585.77, "end": 2586.01, "word": " close", "probability": 0.53076171875}, {"start": 2586.01, "end": 2586.45, "word": " company,", "probability": 0.896484375}, {"start": 2586.49, "end": 2586.75, "word": " all", "probability": 0.79833984375}, {"start": 2586.75, "end": 2587.11, "word": " methods.", "probability": 0.484619140625}, {"start": 2587.51, "end": 2587.85, "word": " Okay?", "probability": 0.68359375}], "temperature": 1.0}, {"id": 114, "seek": 261284, "start": 2588.66, "end": 2612.84, "text": " Now, I need a way to issue orders to buy and sell and open companies, but I store these orders to implement them later. So that I can do this work, every order I want to claim or every method I want to claim, I turn it into a Java object. How? I made an interface called command, which represents the stock command, and there is a method execute, the same as I did. Now,", "tokens": [823, 11, 286, 643, 257, 636, 281, 2734, 9470, 281, 2256, 293, 3607, 293, 1269, 3431, 11, 457, 286, 3531, 613, 9470, 281, 4445, 552, 1780, 13, 407, 300, 286, 393, 360, 341, 589, 11, 633, 1668, 286, 528, 281, 3932, 420, 633, 3170, 286, 528, 281, 3932, 11, 286, 1261, 309, 666, 257, 10745, 2657, 13, 1012, 30, 286, 1027, 364, 9226, 1219, 5622, 11, 597, 8855, 264, 4127, 5622, 11, 293, 456, 307, 257, 3170, 14483, 11, 264, 912, 382, 286, 630, 13, 823, 11], "avg_logprob": -0.4992897618900646, "compression_ratio": 1.65625, "no_speech_prob": 9.894371032714844e-06, "words": [{"start": 2588.66, "end": 2589.06, "word": " Now,", "probability": 0.41015625}, {"start": 2589.12, "end": 2589.3, "word": " I", "probability": 0.9345703125}, {"start": 2589.3, "end": 2589.46, "word": " need", "probability": 0.4462890625}, {"start": 2589.46, "end": 2589.6, "word": " a", "probability": 0.912109375}, {"start": 2589.6, "end": 2589.88, "word": " way", "probability": 0.56689453125}, {"start": 2589.88, "end": 2590.72, "word": " to", "probability": 0.7568359375}, {"start": 2590.72, "end": 2591.2, "word": " issue", "probability": 0.62060546875}, {"start": 2591.2, "end": 2591.68, "word": " orders", "probability": 0.3623046875}, {"start": 2591.68, "end": 2592.12, "word": " to", "probability": 0.47900390625}, {"start": 2592.12, "end": 2592.38, "word": " buy", "probability": 0.41015625}, {"start": 2592.38, "end": 2592.84, "word": " and", "probability": 0.68603515625}, {"start": 2592.84, "end": 2592.84, "word": " sell", "probability": 0.83984375}, {"start": 2592.84, "end": 2593.0, "word": " and", "probability": 0.5927734375}, {"start": 2593.0, "end": 2593.2, "word": " open", "probability": 0.471435546875}, {"start": 2593.2, "end": 2593.62, "word": " companies,", "probability": 0.53515625}, {"start": 2593.8, "end": 2593.9, "word": " but", "probability": 0.67236328125}, {"start": 2593.9, "end": 2594.28, "word": " I", "probability": 0.422119140625}, {"start": 2594.28, "end": 2594.92, "word": " store", "probability": 0.34423828125}, {"start": 2594.92, "end": 2595.0, "word": " these", "probability": 0.54345703125}, {"start": 2595.0, "end": 2595.0, "word": " orders", "probability": 0.83154296875}, {"start": 2595.0, "end": 2595.28, "word": " to", "probability": 0.45361328125}, {"start": 2595.28, "end": 2595.62, "word": " implement", "probability": 0.29248046875}, {"start": 2595.62, "end": 2595.72, "word": " them", "probability": 0.796875}, {"start": 2595.72, "end": 2596.1, "word": " later.", "probability": 0.90771484375}, {"start": 2596.54, "end": 2596.76, "word": " So", "probability": 0.32861328125}, {"start": 2596.76, "end": 2596.88, "word": " that", "probability": 0.5234375}, {"start": 2596.88, "end": 2596.94, "word": " I", "probability": 0.96923828125}, {"start": 2596.94, "end": 2597.1, "word": " can", "probability": 0.8984375}, {"start": 2597.1, "end": 2597.3, "word": " do", "probability": 0.8662109375}, {"start": 2597.3, "end": 2597.42, "word": " this", "probability": 0.78759765625}, {"start": 2597.42, "end": 2597.66, "word": " work,", "probability": 0.316650390625}, {"start": 2597.98, "end": 2598.3, "word": " every", "probability": 0.2568359375}, {"start": 2598.3, "end": 2598.74, "word": " order", "probability": 0.83984375}, {"start": 2598.74, "end": 2599.1, "word": " I", "probability": 0.404052734375}, {"start": 2599.1, "end": 2599.32, "word": " want", "probability": 0.46875}, {"start": 2599.32, "end": 2599.46, "word": " to", "probability": 0.89404296875}, {"start": 2599.46, "end": 2599.76, "word": " claim", "probability": 0.1676025390625}, {"start": 2599.76, "end": 2600.06, "word": " or", "probability": 0.6142578125}, {"start": 2600.06, "end": 2600.28, "word": " every", "probability": 0.708984375}, {"start": 2600.28, "end": 2600.56, "word": " method", "probability": 0.95361328125}, {"start": 2600.56, "end": 2600.68, "word": " I", "probability": 0.9072265625}, {"start": 2600.68, "end": 2600.84, "word": " want", "probability": 0.84619140625}, {"start": 2600.84, "end": 2600.96, "word": " to", "probability": 0.962890625}, {"start": 2600.96, "end": 2601.26, "word": " claim,", "probability": 0.93701171875}, {"start": 2601.72, "end": 2602.3, "word": " I", "probability": 0.96142578125}, {"start": 2602.3, "end": 2602.6, "word": " turn", "probability": 0.37109375}, {"start": 2602.6, "end": 2602.78, "word": " it", "probability": 0.75732421875}, {"start": 2602.78, "end": 2602.92, "word": " into", "probability": 0.796875}, {"start": 2602.92, "end": 2602.96, "word": " a", "probability": 0.74755859375}, {"start": 2602.96, "end": 2603.3, "word": " Java", "probability": 0.74560546875}, {"start": 2603.3, "end": 2604.14, "word": " object.", "probability": 0.8515625}, {"start": 2604.28, "end": 2604.58, "word": " How?", "probability": 0.904296875}, {"start": 2604.7, "end": 2605.04, "word": " I", "probability": 0.978515625}, {"start": 2605.04, "end": 2605.22, "word": " made", "probability": 0.60546875}, {"start": 2605.22, "end": 2605.38, "word": " an", "probability": 0.90576171875}, {"start": 2605.38, "end": 2605.8, "word": " interface", "probability": 0.89013671875}, {"start": 2605.8, "end": 2606.16, "word": " called", "probability": 0.77294921875}, {"start": 2606.16, "end": 2607.24, "word": " command,", "probability": 0.41943359375}, {"start": 2607.4, "end": 2607.52, "word": " which", "probability": 0.8994140625}, {"start": 2607.52, "end": 2607.94, "word": " represents", "probability": 0.52685546875}, {"start": 2607.94, "end": 2608.32, "word": " the", "probability": 0.529296875}, {"start": 2608.32, "end": 2608.72, "word": " stock", "probability": 0.42919921875}, {"start": 2608.72, "end": 2609.16, "word": " command,", "probability": 0.8955078125}, {"start": 2609.16, "end": 2609.24, "word": " and", "probability": 0.853515625}, {"start": 2609.24, "end": 2609.38, "word": " there", "probability": 0.734375}, {"start": 2609.38, "end": 2609.38, "word": " is", "probability": 0.81689453125}, {"start": 2609.38, "end": 2609.64, "word": " a", "probability": 0.449951171875}, {"start": 2609.64, "end": 2609.64, "word": " method", "probability": 0.95166015625}, {"start": 2609.64, "end": 2610.12, "word": " execute,", "probability": 0.74267578125}, {"start": 2610.32, "end": 2610.38, "word": " the", "probability": 0.415771484375}, {"start": 2610.38, "end": 2610.48, "word": " same", "probability": 0.890625}, {"start": 2610.48, "end": 2610.62, "word": " as", "probability": 0.4296875}, {"start": 2610.62, "end": 2610.84, "word": " I", "probability": 0.5498046875}, {"start": 2610.84, "end": 2611.66, "word": " did.", "probability": 0.810546875}, {"start": 2612.32, "end": 2612.84, "word": " Now,", "probability": 0.9150390625}], "temperature": 1.0}, {"id": 115, "seek": 263275, "start": 2613.97, "end": 2632.75, "text": "Each command or each method used in the receiver is a concrete command. Here I have buy shares and open company. How many commands did I do? Two. Buy shares and open company. Each class represents a method used here.", "tokens": [36, 608, 5622, 420, 1184, 3170, 1143, 294, 264, 20086, 307, 257, 9859, 5622, 13, 1692, 286, 362, 2256, 12182, 293, 1269, 2237, 13, 1012, 867, 16901, 630, 286, 360, 30, 4453, 13, 19146, 12182, 293, 1269, 2237, 13, 6947, 1508, 8855, 257, 3170, 1143, 510, 13], "avg_logprob": -0.5172525917490324, "compression_ratio": 1.6, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2613.97, "end": 2614.31, "word": "Each", "probability": 0.60546875}, {"start": 2614.31, "end": 2614.61, "word": " command", "probability": 0.66943359375}, {"start": 2614.61, "end": 2614.89, "word": " or", "probability": 0.72412109375}, {"start": 2614.89, "end": 2615.13, "word": " each", "probability": 0.462646484375}, {"start": 2615.13, "end": 2615.79, "word": " method", "probability": 0.1348876953125}, {"start": 2615.79, "end": 2615.99, "word": " used", "probability": 0.187744140625}, {"start": 2615.99, "end": 2616.39, "word": " in", "probability": 0.7998046875}, {"start": 2616.39, "end": 2616.49, "word": " the", "probability": 0.71533203125}, {"start": 2616.49, "end": 2616.89, "word": " receiver", "probability": 0.80859375}, {"start": 2616.89, "end": 2617.77, "word": " is", "probability": 0.462890625}, {"start": 2617.77, "end": 2618.57, "word": " a", "probability": 0.419921875}, {"start": 2618.57, "end": 2619.19, "word": " concrete", "probability": 0.83447265625}, {"start": 2619.19, "end": 2620.15, "word": " command.", "probability": 0.85693359375}, {"start": 2620.47, "end": 2621.01, "word": " Here", "probability": 0.1630859375}, {"start": 2621.01, "end": 2621.33, "word": " I", "probability": 0.7275390625}, {"start": 2621.33, "end": 2621.53, "word": " have", "probability": 0.8984375}, {"start": 2621.53, "end": 2621.87, "word": " buy", "probability": 0.6953125}, {"start": 2621.87, "end": 2622.53, "word": " shares", "probability": 0.90185546875}, {"start": 2622.53, "end": 2622.75, "word": " and", "probability": 0.88037109375}, {"start": 2622.75, "end": 2623.21, "word": " open", "probability": 0.8212890625}, {"start": 2623.21, "end": 2623.69, "word": " company.", "probability": 0.677734375}, {"start": 2623.97, "end": 2624.47, "word": " How", "probability": 0.43212890625}, {"start": 2624.47, "end": 2624.85, "word": " many", "probability": 0.89501953125}, {"start": 2624.85, "end": 2625.25, "word": " commands", "probability": 0.84619140625}, {"start": 2625.25, "end": 2625.25, "word": " did", "probability": 0.83935546875}, {"start": 2625.25, "end": 2625.25, "word": " I", "probability": 0.51318359375}, {"start": 2625.25, "end": 2625.25, "word": " do?", "probability": 0.45556640625}, {"start": 2625.69, "end": 2626.47, "word": " Two.", "probability": 0.374755859375}, {"start": 2627.03, "end": 2627.27, "word": " Buy", "probability": 0.63525390625}, {"start": 2627.27, "end": 2627.71, "word": " shares", "probability": 0.849609375}, {"start": 2627.71, "end": 2627.95, "word": " and", "probability": 0.90966796875}, {"start": 2627.95, "end": 2628.17, "word": " open", "probability": 0.90869140625}, {"start": 2628.17, "end": 2628.61, "word": " company.", "probability": 0.90185546875}, {"start": 2629.05, "end": 2629.33, "word": " Each", "probability": 0.6318359375}, {"start": 2629.33, "end": 2629.81, "word": " class", "probability": 0.9287109375}, {"start": 2629.81, "end": 2630.71, "word": " represents", "probability": 0.308837890625}, {"start": 2630.71, "end": 2631.07, "word": " a", "probability": 0.80517578125}, {"start": 2631.07, "end": 2631.75, "word": " method", "probability": 0.4013671875}, {"start": 2631.75, "end": 2632.39, "word": " used", "probability": 0.61865234375}, {"start": 2632.39, "end": 2632.75, "word": " here.", "probability": 0.6689453125}], "temperature": 1.0}, {"id": 116, "seek": 264984, "start": 2634.32, "end": 2649.84, "text": "And this one, what did we do for it? Implement for the command, so of course it wants to implement for whom? For execute And of course, this command, so that I can execute it later, it needs two things It needs to deal with the receiver because he is the one executing it, right?", "tokens": [5289, 341, 472, 11, 437, 630, 321, 360, 337, 309, 30, 4331, 43704, 337, 264, 5622, 11, 370, 295, 1164, 309, 2738, 281, 4445, 337, 7101, 30, 1171, 14483, 400, 295, 1164, 11, 341, 5622, 11, 370, 300, 286, 393, 14483, 309, 1780, 11, 309, 2203, 732, 721, 467, 2203, 281, 2028, 365, 264, 20086, 570, 415, 307, 264, 472, 32368, 309, 11, 558, 30], "avg_logprob": -0.4872159185734662, "compression_ratio": 1.650887573964497, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 2634.32, "end": 2634.54, "word": "And", "probability": 0.5283203125}, {"start": 2634.54, "end": 2634.82, "word": " this", "probability": 0.467041015625}, {"start": 2634.82, "end": 2634.88, "word": " one,", "probability": 0.497314453125}, {"start": 2635.02, "end": 2635.02, "word": " what", "probability": 0.59228515625}, {"start": 2635.02, "end": 2635.02, "word": " did", "probability": 0.72607421875}, {"start": 2635.02, "end": 2635.26, "word": " we", "probability": 0.82958984375}, {"start": 2635.26, "end": 2635.26, "word": " do", "probability": 0.61572265625}, {"start": 2635.26, "end": 2635.42, "word": " for", "probability": 0.310546875}, {"start": 2635.42, "end": 2635.58, "word": " it?", "probability": 0.68408203125}, {"start": 2636.18, "end": 2636.58, "word": " Implement", "probability": 0.5833740234375}, {"start": 2636.58, "end": 2636.78, "word": " for", "probability": 0.7890625}, {"start": 2636.78, "end": 2636.86, "word": " the", "probability": 0.76123046875}, {"start": 2636.86, "end": 2637.06, "word": " command,", "probability": 0.277099609375}, {"start": 2637.58, "end": 2637.78, "word": " so", "probability": 0.75}, {"start": 2637.78, "end": 2638.02, "word": " of", "probability": 0.181640625}, {"start": 2638.02, "end": 2638.02, "word": " course", "probability": 0.955078125}, {"start": 2638.02, "end": 2638.12, "word": " it", "probability": 0.7578125}, {"start": 2638.12, "end": 2638.22, "word": " wants", "probability": 0.1444091796875}, {"start": 2638.22, "end": 2638.26, "word": " to", "probability": 0.96630859375}, {"start": 2638.26, "end": 2638.7, "word": " implement", "probability": 0.378173828125}, {"start": 2638.7, "end": 2639.08, "word": " for", "probability": 0.61181640625}, {"start": 2639.08, "end": 2639.24, "word": " whom?", "probability": 0.8037109375}, {"start": 2639.96, "end": 2640.1, "word": " For", "probability": 0.77880859375}, {"start": 2640.1, "end": 2640.5, "word": " execute", "probability": 0.85986328125}, {"start": 2640.5, "end": 2641.26, "word": " And", "probability": 0.41259765625}, {"start": 2641.26, "end": 2641.46, "word": " of", "probability": 0.89404296875}, {"start": 2641.46, "end": 2641.64, "word": " course,", "probability": 0.9609375}, {"start": 2642.24, "end": 2642.46, "word": " this", "probability": 0.748046875}, {"start": 2642.46, "end": 2642.78, "word": " command,", "probability": 0.88330078125}, {"start": 2642.88, "end": 2643.0, "word": " so", "probability": 0.4521484375}, {"start": 2643.0, "end": 2643.16, "word": " that", "probability": 0.62353515625}, {"start": 2643.16, "end": 2643.6, "word": " I", "probability": 0.93408203125}, {"start": 2643.6, "end": 2643.64, "word": " can", "probability": 0.85595703125}, {"start": 2643.64, "end": 2643.98, "word": " execute", "probability": 0.3828125}, {"start": 2643.98, "end": 2644.14, "word": " it", "probability": 0.6015625}, {"start": 2644.14, "end": 2644.44, "word": " later,", "probability": 0.88623046875}, {"start": 2644.62, "end": 2644.74, "word": " it", "probability": 0.55908203125}, {"start": 2644.74, "end": 2644.84, "word": " needs", "probability": 0.6259765625}, {"start": 2644.84, "end": 2645.3, "word": " two", "probability": 0.77197265625}, {"start": 2645.3, "end": 2645.3, "word": " things", "probability": 0.7763671875}, {"start": 2645.3, "end": 2646.1, "word": " It", "probability": 0.488525390625}, {"start": 2646.1, "end": 2646.34, "word": " needs", "probability": 0.646484375}, {"start": 2646.34, "end": 2646.78, "word": " to", "probability": 0.95361328125}, {"start": 2646.78, "end": 2647.04, "word": " deal", "probability": 0.52197265625}, {"start": 2647.04, "end": 2647.24, "word": " with", "probability": 0.89892578125}, {"start": 2647.24, "end": 2647.34, "word": " the", "probability": 0.8193359375}, {"start": 2647.34, "end": 2647.64, "word": " receiver", "probability": 0.90771484375}, {"start": 2647.64, "end": 2647.84, "word": " because", "probability": 0.662109375}, {"start": 2647.84, "end": 2648.04, "word": " he", "probability": 0.390380859375}, {"start": 2648.04, "end": 2648.12, "word": " is", "probability": 0.6142578125}, {"start": 2648.12, "end": 2648.32, "word": " the", "probability": 0.477294921875}, {"start": 2648.32, "end": 2648.36, "word": " one", "probability": 0.8857421875}, {"start": 2648.36, "end": 2648.72, "word": " executing", "probability": 0.4072265625}, {"start": 2648.72, "end": 2649.36, "word": " it,", "probability": 0.576171875}, {"start": 2649.36, "end": 2649.84, "word": " right?", "probability": 0.80419921875}], "temperature": 1.0}, {"id": 117, "seek": 267858, "start": 2650.68, "end": 2678.58, "text": "Okay? This is hidden. I mean, when I execute, I won't know who is executing because this will .. one of his attributes is that he will use the receiver in addition to all this state, all the necessary information to carry out the task. For example, buying stocks, I need to know where to buy from, who is the buyer, who is the seller, the number of stocks and so on. All these are the information that is available here. Okay?", "tokens": [8297, 30, 639, 307, 7633, 13, 286, 914, 11, 562, 286, 14483, 11, 286, 1582, 380, 458, 567, 307, 32368, 570, 341, 486, 4386, 472, 295, 702, 17212, 307, 300, 415, 486, 764, 264, 20086, 294, 4500, 281, 439, 341, 1785, 11, 439, 264, 4818, 1589, 281, 3985, 484, 264, 5633, 13, 1171, 1365, 11, 6382, 12966, 11, 286, 643, 281, 458, 689, 281, 2256, 490, 11, 567, 307, 264, 24645, 11, 567, 307, 264, 23600, 11, 264, 1230, 295, 12966, 293, 370, 322, 13, 1057, 613, 366, 264, 1589, 300, 307, 2435, 510, 13, 1033, 30], "avg_logprob": -0.4952168349100619, "compression_ratio": 1.7108433734939759, "no_speech_prob": 3.1054019927978516e-05, "words": [{"start": 2650.68, "end": 2651.12, "word": "Okay?", "probability": 0.1488037109375}, {"start": 2651.12, "end": 2651.56, "word": " This", "probability": 0.473388671875}, {"start": 2651.56, "end": 2651.6, "word": " is", "probability": 0.84130859375}, {"start": 2651.6, "end": 2651.92, "word": " hidden.", "probability": 0.1873779296875}, {"start": 2652.14, "end": 2652.4, "word": " I", "probability": 0.325439453125}, {"start": 2652.4, "end": 2653.08, "word": " mean,", "probability": 0.64404296875}, {"start": 2653.14, "end": 2653.14, "word": " when", "probability": 0.295654296875}, {"start": 2653.14, "end": 2655.18, "word": " I", "probability": 0.96630859375}, {"start": 2655.18, "end": 2655.46, "word": " execute,", "probability": 0.55859375}, {"start": 2656.12, "end": 2656.2, "word": " I", "probability": 0.96240234375}, {"start": 2656.2, "end": 2656.26, "word": " won't", "probability": 0.6639404296875}, {"start": 2656.26, "end": 2656.66, "word": " know", "probability": 0.82275390625}, {"start": 2656.66, "end": 2657.04, "word": " who", "probability": 0.85595703125}, {"start": 2657.04, "end": 2657.22, "word": " is", "probability": 0.239013671875}, {"start": 2657.22, "end": 2657.52, "word": " executing", "probability": 0.7734375}, {"start": 2657.52, "end": 2657.92, "word": " because", "probability": 0.249755859375}, {"start": 2657.92, "end": 2659.34, "word": " this", "probability": 0.1798095703125}, {"start": 2659.34, "end": 2659.58, "word": " will", "probability": 0.453369140625}, {"start": 2659.58, "end": 2660.06, "word": " ..", "probability": 0.279541015625}, {"start": 2660.06, "end": 2660.36, "word": " one", "probability": 0.320556640625}, {"start": 2660.36, "end": 2660.6, "word": " of", "probability": 0.958984375}, {"start": 2660.6, "end": 2660.68, "word": " his", "probability": 0.452392578125}, {"start": 2660.68, "end": 2661.18, "word": " attributes", "probability": 0.85693359375}, {"start": 2661.18, "end": 2662.3, "word": " is", "probability": 0.488525390625}, {"start": 2662.3, "end": 2662.4, "word": " that", "probability": 0.7197265625}, {"start": 2662.4, "end": 2663.02, "word": " he", "probability": 0.77001953125}, {"start": 2663.02, "end": 2663.18, "word": " will", "probability": 0.77392578125}, {"start": 2663.18, "end": 2663.52, "word": " use", "probability": 0.861328125}, {"start": 2663.52, "end": 2663.68, "word": " the", "probability": 0.8037109375}, {"start": 2663.68, "end": 2664.16, "word": " receiver", "probability": 0.896484375}, {"start": 2664.16, "end": 2664.5, "word": " in", "probability": 0.74609375}, {"start": 2664.5, "end": 2664.88, "word": " addition", "probability": 0.9609375}, {"start": 2664.88, "end": 2665.1, "word": " to", "probability": 0.93603515625}, {"start": 2665.1, "end": 2665.44, "word": " all", "probability": 0.87353515625}, {"start": 2665.44, "end": 2666.08, "word": " this", "probability": 0.546875}, {"start": 2666.08, "end": 2666.64, "word": " state,", "probability": 0.80908203125}, {"start": 2666.76, "end": 2666.92, "word": " all", "probability": 0.87158203125}, {"start": 2666.92, "end": 2667.06, "word": " the", "probability": 0.68359375}, {"start": 2667.06, "end": 2667.8, "word": " necessary", "probability": 0.58203125}, {"start": 2667.8, "end": 2667.8, "word": " information", "probability": 0.77294921875}, {"start": 2667.8, "end": 2668.7, "word": " to", "probability": 0.89208984375}, {"start": 2668.7, "end": 2668.96, "word": " carry", "probability": 0.177001953125}, {"start": 2668.96, "end": 2669.02, "word": " out", "probability": 0.86328125}, {"start": 2669.02, "end": 2669.14, "word": " the", "probability": 0.78466796875}, {"start": 2669.14, "end": 2669.32, "word": " task.", "probability": 0.329345703125}, {"start": 2669.76, "end": 2669.96, "word": " For", "probability": 0.86572265625}, {"start": 2669.96, "end": 2670.16, "word": " example,", "probability": 0.947265625}, {"start": 2670.64, "end": 2670.88, "word": " buying", "probability": 0.41259765625}, {"start": 2670.88, "end": 2671.2, "word": " stocks,", "probability": 0.482177734375}, {"start": 2671.34, "end": 2671.46, "word": " I", "probability": 0.92578125}, {"start": 2671.46, "end": 2671.6, "word": " need", "probability": 0.29052734375}, {"start": 2671.6, "end": 2671.7, "word": " to", "probability": 0.96875}, {"start": 2671.7, "end": 2671.84, "word": " know", "probability": 0.8837890625}, {"start": 2671.84, "end": 2672.18, "word": " where", "probability": 0.66552734375}, {"start": 2672.18, "end": 2672.32, "word": " to", "probability": 0.73876953125}, {"start": 2672.32, "end": 2672.52, "word": " buy", "probability": 0.9306640625}, {"start": 2672.52, "end": 2672.7, "word": " from,", "probability": 0.53369140625}, {"start": 2672.86, "end": 2673.14, "word": " who", "probability": 0.35595703125}, {"start": 2673.14, "end": 2673.22, "word": " is", "probability": 0.57373046875}, {"start": 2673.22, "end": 2673.26, "word": " the", "probability": 0.74365234375}, {"start": 2673.26, "end": 2673.48, "word": " buyer,", "probability": 0.970703125}, {"start": 2673.64, "end": 2673.78, "word": " who", "probability": 0.61767578125}, {"start": 2673.78, "end": 2673.82, "word": " is", "probability": 0.92041015625}, {"start": 2673.82, "end": 2673.94, "word": " the", "probability": 0.89111328125}, {"start": 2673.94, "end": 2674.16, "word": " seller,", "probability": 0.9111328125}, {"start": 2674.34, "end": 2674.38, "word": " the", "probability": 0.552734375}, {"start": 2674.38, "end": 2674.54, "word": " number", "probability": 0.8798828125}, {"start": 2674.54, "end": 2674.68, "word": " of", "probability": 0.96875}, {"start": 2674.68, "end": 2674.9, "word": " stocks", "probability": 0.78271484375}, {"start": 2674.9, "end": 2675.02, "word": " and", "probability": 0.58935546875}, {"start": 2675.02, "end": 2675.16, "word": " so", "probability": 0.54638671875}, {"start": 2675.16, "end": 2675.28, "word": " on.", "probability": 0.91943359375}, {"start": 2675.68, "end": 2675.84, "word": " All", "probability": 0.7939453125}, {"start": 2675.84, "end": 2675.96, "word": " these", "probability": 0.380615234375}, {"start": 2675.96, "end": 2676.32, "word": " are", "probability": 0.775390625}, {"start": 2676.32, "end": 2676.52, "word": " the", "probability": 0.7236328125}, {"start": 2676.52, "end": 2676.86, "word": " information", "probability": 0.69189453125}, {"start": 2676.86, "end": 2677.08, "word": " that", "probability": 0.391845703125}, {"start": 2677.08, "end": 2677.2, "word": " is", "probability": 0.58837890625}, {"start": 2677.2, "end": 2677.44, "word": " available", "probability": 0.273193359375}, {"start": 2677.44, "end": 2677.7, "word": " here.", "probability": 0.81787109375}, {"start": 2678.4, "end": 2678.58, "word": " Okay?", "probability": 0.72412109375}], "temperature": 1.0}, {"id": 118, "seek": 269934, "start": 2679.82, "end": 2699.34, "text": "And I extract from it, as I said, every method call in the receiver, I make it a command here So I extract this execute, the method execute, what did it do? It went to receiver.action So actually from inside the execute, I extract the method that is in the receiver", "tokens": [5289, 286, 8947, 490, 309, 11, 382, 286, 848, 11, 633, 3170, 818, 294, 264, 20086, 11, 286, 652, 309, 257, 5622, 510, 407, 286, 8947, 341, 14483, 11, 264, 3170, 14483, 11, 437, 630, 309, 360, 30, 467, 1437, 281, 20086, 13, 2894, 407, 767, 490, 1854, 264, 14483, 11, 286, 8947, 264, 3170, 300, 307, 294, 264, 20086], "avg_logprob": -0.5312499843659948, "compression_ratio": 1.7320261437908497, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 2679.82, "end": 2680.04, "word": "And", "probability": 0.25390625}, {"start": 2680.04, "end": 2680.32, "word": " I", "probability": 0.205078125}, {"start": 2680.32, "end": 2680.62, "word": " extract", "probability": 0.231201171875}, {"start": 2680.62, "end": 2680.72, "word": " from", "probability": 0.439697265625}, {"start": 2680.72, "end": 2680.82, "word": " it,", "probability": 0.53955078125}, {"start": 2681.04, "end": 2681.16, "word": " as", "probability": 0.6357421875}, {"start": 2681.16, "end": 2681.36, "word": " I", "probability": 0.8935546875}, {"start": 2681.36, "end": 2681.52, "word": " said,", "probability": 0.73828125}, {"start": 2681.64, "end": 2681.82, "word": " every", "probability": 0.453857421875}, {"start": 2681.82, "end": 2682.12, "word": " method", "probability": 0.7998046875}, {"start": 2682.12, "end": 2682.36, "word": " call", "probability": 0.74169921875}, {"start": 2682.36, "end": 2682.76, "word": " in", "probability": 0.53271484375}, {"start": 2682.76, "end": 2682.9, "word": " the", "probability": 0.82080078125}, {"start": 2682.9, "end": 2683.26, "word": " receiver,", "probability": 0.833984375}, {"start": 2683.76, "end": 2683.92, "word": " I", "probability": 0.80419921875}, {"start": 2683.92, "end": 2684.16, "word": " make", "probability": 0.367431640625}, {"start": 2684.16, "end": 2684.4, "word": " it", "probability": 0.297119140625}, {"start": 2684.4, "end": 2685.04, "word": " a", "probability": 0.71630859375}, {"start": 2685.04, "end": 2685.4, "word": " command", "probability": 0.87353515625}, {"start": 2685.4, "end": 2685.68, "word": " here", "probability": 0.67529296875}, {"start": 2685.68, "end": 2686.04, "word": " So", "probability": 0.11083984375}, {"start": 2686.04, "end": 2686.16, "word": " I", "probability": 0.3662109375}, {"start": 2686.16, "end": 2686.46, "word": " extract", "probability": 0.5634765625}, {"start": 2686.46, "end": 2686.66, "word": " this", "probability": 0.71435546875}, {"start": 2686.66, "end": 2687.28, "word": " execute,", "probability": 0.630859375}, {"start": 2688.54, "end": 2689.24, "word": " the", "probability": 0.3955078125}, {"start": 2689.24, "end": 2689.46, "word": " method", "probability": 0.93994140625}, {"start": 2689.46, "end": 2689.92, "word": " execute,", "probability": 0.82421875}, {"start": 2690.02, "end": 2690.14, "word": " what", "probability": 0.406494140625}, {"start": 2690.14, "end": 2690.3, "word": " did", "probability": 0.61572265625}, {"start": 2690.3, "end": 2690.48, "word": " it", "probability": 0.92138671875}, {"start": 2690.48, "end": 2690.48, "word": " do?", "probability": 0.939453125}, {"start": 2690.6, "end": 2690.62, "word": " It", "probability": 0.77587890625}, {"start": 2690.62, "end": 2690.76, "word": " went", "probability": 0.7666015625}, {"start": 2690.76, "end": 2690.96, "word": " to", "probability": 0.955078125}, {"start": 2690.96, "end": 2691.4, "word": " receiver", "probability": 0.740234375}, {"start": 2691.4, "end": 2694.32, "word": ".action", "probability": 0.78173828125}, {"start": 2694.32, "end": 2695.08, "word": " So", "probability": 0.48876953125}, {"start": 2695.08, "end": 2695.42, "word": " actually", "probability": 0.33740234375}, {"start": 2695.42, "end": 2695.64, "word": " from", "probability": 0.53515625}, {"start": 2695.64, "end": 2695.84, "word": " inside", "probability": 0.53125}, {"start": 2695.84, "end": 2695.96, "word": " the", "probability": 0.72216796875}, {"start": 2695.96, "end": 2696.32, "word": " execute,", "probability": 0.9365234375}, {"start": 2696.52, "end": 2696.72, "word": " I", "probability": 0.9921875}, {"start": 2696.72, "end": 2697.02, "word": " extract", "probability": 0.343017578125}, {"start": 2697.02, "end": 2697.2, "word": " the", "probability": 0.8447265625}, {"start": 2697.2, "end": 2697.46, "word": " method", "probability": 0.92578125}, {"start": 2697.46, "end": 2697.58, "word": " that", "probability": 0.51806640625}, {"start": 2697.58, "end": 2697.7, "word": " is", "probability": 0.64990234375}, {"start": 2697.7, "end": 2697.94, "word": " in", "probability": 0.2861328125}, {"start": 2697.94, "end": 2698.3, "word": " the", "probability": 0.77197265625}, {"start": 2698.3, "end": 2699.34, "word": " receiver", "probability": 0.84619140625}], "temperature": 1.0}, {"id": 119, "seek": 272250, "start": 2700.0, "end": 2722.5, "text": "What is the benefit of this loop? The benefit is here with the invoker, which represents the agent. The word invoke, what does it mean? Invoke, yes, call, like call. The invoker is the one who calls. My goal is that the invoker wants to store the commands in it and let it execute without knowing how it executes and who executes it. Okay? Now all the commands have their details in them and they have a method execute.", "tokens": [3748, 307, 264, 5121, 295, 341, 6367, 30, 440, 5121, 307, 510, 365, 264, 1048, 16722, 11, 597, 8855, 264, 9461, 13, 440, 1349, 41117, 11, 437, 775, 309, 914, 30, 31124, 2949, 11, 2086, 11, 818, 11, 411, 818, 13, 440, 1048, 16722, 307, 264, 472, 567, 5498, 13, 1222, 3387, 307, 300, 264, 1048, 16722, 2738, 281, 3531, 264, 16901, 294, 309, 293, 718, 309, 14483, 1553, 5276, 577, 309, 4454, 1819, 293, 567, 4454, 1819, 309, 13, 1033, 30, 823, 439, 264, 16901, 362, 641, 4365, 294, 552, 293, 436, 362, 257, 3170, 14483, 13], "avg_logprob": -0.45896464887291494, "compression_ratio": 1.8296943231441047, "no_speech_prob": 3.7550926208496094e-06, "words": [{"start": 2700.0, "end": 2700.34, "word": "What", "probability": 0.411376953125}, {"start": 2700.34, "end": 2700.38, "word": " is", "probability": 0.693359375}, {"start": 2700.38, "end": 2700.44, "word": " the", "probability": 0.84521484375}, {"start": 2700.44, "end": 2700.64, "word": " benefit", "probability": 0.2276611328125}, {"start": 2700.64, "end": 2700.8, "word": " of", "probability": 0.9443359375}, {"start": 2700.8, "end": 2701.32, "word": " this", "probability": 0.62158203125}, {"start": 2701.32, "end": 2701.32, "word": " loop?", "probability": 0.65869140625}, {"start": 2701.76, "end": 2702.16, "word": " The", "probability": 0.401611328125}, {"start": 2702.16, "end": 2702.38, "word": " benefit", "probability": 0.580078125}, {"start": 2702.38, "end": 2702.7, "word": " is", "probability": 0.5732421875}, {"start": 2702.7, "end": 2702.84, "word": " here", "probability": 0.406494140625}, {"start": 2702.84, "end": 2703.06, "word": " with", "probability": 0.405517578125}, {"start": 2703.06, "end": 2703.18, "word": " the", "probability": 0.78173828125}, {"start": 2703.18, "end": 2703.6, "word": " invoker,", "probability": 0.814208984375}, {"start": 2703.74, "end": 2703.82, "word": " which", "probability": 0.72705078125}, {"start": 2703.82, "end": 2704.28, "word": " represents", "probability": 0.491943359375}, {"start": 2704.28, "end": 2704.46, "word": " the", "probability": 0.89404296875}, {"start": 2704.46, "end": 2704.84, "word": " agent.", "probability": 0.9072265625}, {"start": 2705.54, "end": 2705.66, "word": " The", "probability": 0.65380859375}, {"start": 2705.66, "end": 2705.76, "word": " word", "probability": 0.81298828125}, {"start": 2705.76, "end": 2706.24, "word": " invoke,", "probability": 0.73681640625}, {"start": 2706.26, "end": 2706.44, "word": " what", "probability": 0.72509765625}, {"start": 2706.44, "end": 2706.56, "word": " does", "probability": 0.51904296875}, {"start": 2706.56, "end": 2706.62, "word": " it", "probability": 0.7080078125}, {"start": 2706.62, "end": 2706.62, "word": " mean?", "probability": 0.7666015625}, {"start": 2706.76, "end": 2706.96, "word": " Invoke,", "probability": 0.620361328125}, {"start": 2707.02, "end": 2707.14, "word": " yes,", "probability": 0.7177734375}, {"start": 2707.24, "end": 2707.4, "word": " call,", "probability": 0.39453125}, {"start": 2707.52, "end": 2707.58, "word": " like", "probability": 0.300048828125}, {"start": 2707.58, "end": 2707.98, "word": " call.", "probability": 0.72216796875}, {"start": 2708.26, "end": 2708.44, "word": " The", "probability": 0.483154296875}, {"start": 2708.44, "end": 2708.66, "word": " invoker", "probability": 0.850830078125}, {"start": 2708.66, "end": 2708.8, "word": " is", "probability": 0.6513671875}, {"start": 2708.8, "end": 2708.9, "word": " the", "probability": 0.7685546875}, {"start": 2708.9, "end": 2708.96, "word": " one", "probability": 0.828125}, {"start": 2708.96, "end": 2708.96, "word": " who", "probability": 0.57421875}, {"start": 2708.96, "end": 2709.2, "word": " calls.", "probability": 0.67724609375}, {"start": 2709.78, "end": 2709.98, "word": " My", "probability": 0.55322265625}, {"start": 2709.98, "end": 2710.22, "word": " goal", "probability": 0.80126953125}, {"start": 2710.22, "end": 2710.62, "word": " is", "probability": 0.927734375}, {"start": 2710.62, "end": 2710.72, "word": " that", "probability": 0.82958984375}, {"start": 2710.72, "end": 2710.8, "word": " the", "probability": 0.90185546875}, {"start": 2710.8, "end": 2711.28, "word": " invoker", "probability": 0.94384765625}, {"start": 2711.28, "end": 2711.52, "word": " wants", "probability": 0.325927734375}, {"start": 2711.52, "end": 2711.64, "word": " to", "probability": 0.96142578125}, {"start": 2711.64, "end": 2711.9, "word": " store", "probability": 0.73779296875}, {"start": 2711.9, "end": 2712.16, "word": " the", "probability": 0.388671875}, {"start": 2712.16, "end": 2712.44, "word": " commands", "probability": 0.73193359375}, {"start": 2712.44, "end": 2712.52, "word": " in", "probability": 0.6806640625}, {"start": 2712.52, "end": 2712.52, "word": " it", "probability": 0.71533203125}, {"start": 2712.52, "end": 2712.66, "word": " and", "probability": 0.763671875}, {"start": 2712.66, "end": 2712.82, "word": " let", "probability": 0.556640625}, {"start": 2712.82, "end": 2712.96, "word": " it", "probability": 0.70556640625}, {"start": 2712.96, "end": 2713.22, "word": " execute", "probability": 0.64599609375}, {"start": 2713.22, "end": 2713.48, "word": " without", "probability": 0.8525390625}, {"start": 2713.48, "end": 2714.08, "word": " knowing", "probability": 0.6650390625}, {"start": 2714.08, "end": 2715.04, "word": " how", "probability": 0.8310546875}, {"start": 2715.04, "end": 2715.36, "word": " it", "probability": 0.322998046875}, {"start": 2715.36, "end": 2715.72, "word": " executes", "probability": 0.69140625}, {"start": 2715.72, "end": 2715.84, "word": " and", "probability": 0.83642578125}, {"start": 2715.84, "end": 2716.04, "word": " who", "probability": 0.8134765625}, {"start": 2716.04, "end": 2716.56, "word": " executes", "probability": 0.89306640625}, {"start": 2716.56, "end": 2717.12, "word": " it.", "probability": 0.55908203125}, {"start": 2717.16, "end": 2717.38, "word": " Okay?", "probability": 0.302734375}, {"start": 2717.76, "end": 2718.02, "word": " Now", "probability": 0.8896484375}, {"start": 2718.02, "end": 2718.12, "word": " all", "probability": 0.70849609375}, {"start": 2718.12, "end": 2718.14, "word": " the", "probability": 0.70751953125}, {"start": 2718.14, "end": 2718.48, "word": " commands", "probability": 0.873046875}, {"start": 2718.48, "end": 2719.64, "word": " have", "probability": 0.7958984375}, {"start": 2719.64, "end": 2719.7, "word": " their", "probability": 0.6572265625}, {"start": 2719.7, "end": 2720.08, "word": " details", "probability": 0.6552734375}, {"start": 2720.08, "end": 2720.66, "word": " in", "probability": 0.398193359375}, {"start": 2720.66, "end": 2721.32, "word": " them", "probability": 0.71142578125}, {"start": 2721.32, "end": 2721.64, "word": " and", "probability": 0.68115234375}, {"start": 2721.64, "end": 2721.78, "word": " they", "probability": 0.278564453125}, {"start": 2721.78, "end": 2721.82, "word": " have", "probability": 0.88037109375}, {"start": 2721.82, "end": 2721.92, "word": " a", "probability": 0.5126953125}, {"start": 2721.92, "end": 2722.12, "word": " method", "probability": 0.94921875}, {"start": 2722.12, "end": 2722.5, "word": " execute.", "probability": 0.83447265625}], "temperature": 1.0}, {"id": 120, "seek": 275210, "start": 2723.22, "end": 2752.1, "text": "Okay? So all these commands that I create, that I create an object from a concrete command 2, 3, 4 I take them and add them to the invoker Notice that the invoker deals with or uses which command It is basically using a list of commands Okay? And this specific indication means that the command is created outside and I send it to whom? To the invoker And this is what I did, I made a list in it And I made a method add stock command to add it to the existing list", "tokens": [8297, 30, 407, 439, 613, 16901, 300, 286, 1884, 11, 300, 286, 1884, 364, 2657, 490, 257, 9859, 5622, 568, 11, 805, 11, 1017, 286, 747, 552, 293, 909, 552, 281, 264, 1048, 16722, 13428, 300, 264, 1048, 16722, 11215, 365, 420, 4960, 597, 5622, 467, 307, 1936, 1228, 257, 1329, 295, 16901, 1033, 30, 400, 341, 2685, 18877, 1355, 300, 264, 5622, 307, 2942, 2380, 293, 286, 2845, 309, 281, 7101, 30, 1407, 264, 1048, 16722, 400, 341, 307, 437, 286, 630, 11, 286, 1027, 257, 1329, 294, 309, 400, 286, 1027, 257, 3170, 909, 4127, 5622, 281, 909, 309, 281, 264, 6741, 1329], "avg_logprob": -0.4345518941024564, "compression_ratio": 1.8785425101214575, "no_speech_prob": 5.829334259033203e-05, "words": [{"start": 2723.22, "end": 2723.7, "word": "Okay?", "probability": 0.1871337890625}, {"start": 2724.24, "end": 2724.4, "word": " So", "probability": 0.6708984375}, {"start": 2724.4, "end": 2724.64, "word": " all", "probability": 0.73095703125}, {"start": 2724.64, "end": 2724.74, "word": " these", "probability": 0.63720703125}, {"start": 2724.74, "end": 2725.08, "word": " commands", "probability": 0.70751953125}, {"start": 2725.08, "end": 2725.4, "word": " that", "probability": 0.6201171875}, {"start": 2725.4, "end": 2725.6, "word": " I", "probability": 0.9404296875}, {"start": 2725.6, "end": 2725.92, "word": " create,", "probability": 0.65576171875}, {"start": 2726.16, "end": 2726.26, "word": " that", "probability": 0.167724609375}, {"start": 2726.26, "end": 2726.4, "word": " I", "probability": 0.95166015625}, {"start": 2726.4, "end": 2726.64, "word": " create", "probability": 0.83203125}, {"start": 2726.64, "end": 2726.76, "word": " an", "probability": 0.414794921875}, {"start": 2726.76, "end": 2726.98, "word": " object", "probability": 0.97607421875}, {"start": 2726.98, "end": 2727.28, "word": " from", "probability": 0.61767578125}, {"start": 2727.28, "end": 2727.5, "word": " a", "probability": 0.256103515625}, {"start": 2727.5, "end": 2727.94, "word": " concrete", "probability": 0.86962890625}, {"start": 2727.94, "end": 2728.62, "word": " command", "probability": 0.630859375}, {"start": 2728.62, "end": 2729.04, "word": " 2,", "probability": 0.28271484375}, {"start": 2729.16, "end": 2729.48, "word": " 3,", "probability": 0.5595703125}, {"start": 2729.54, "end": 2729.88, "word": " 4", "probability": 0.89208984375}, {"start": 2729.88, "end": 2730.64, "word": " I", "probability": 0.36669921875}, {"start": 2730.64, "end": 2731.02, "word": " take", "probability": 0.65966796875}, {"start": 2731.02, "end": 2731.16, "word": " them", "probability": 0.4453125}, {"start": 2731.16, "end": 2731.28, "word": " and", "probability": 0.88037109375}, {"start": 2731.28, "end": 2731.48, "word": " add", "probability": 0.7412109375}, {"start": 2731.48, "end": 2731.72, "word": " them", "probability": 0.85498046875}, {"start": 2731.72, "end": 2731.86, "word": " to", "probability": 0.6923828125}, {"start": 2731.86, "end": 2732.82, "word": " the", "probability": 0.5224609375}, {"start": 2732.82, "end": 2733.18, "word": " invoker", "probability": 0.8798828125}, {"start": 2733.18, "end": 2733.42, "word": " Notice", "probability": 0.4873046875}, {"start": 2733.42, "end": 2733.6, "word": " that", "probability": 0.6728515625}, {"start": 2733.6, "end": 2733.64, "word": " the", "probability": 0.8603515625}, {"start": 2733.64, "end": 2734.06, "word": " invoker", "probability": 0.950927734375}, {"start": 2734.06, "end": 2734.96, "word": " deals", "probability": 0.453857421875}, {"start": 2734.96, "end": 2735.22, "word": " with", "probability": 0.86328125}, {"start": 2735.22, "end": 2735.46, "word": " or", "probability": 0.5966796875}, {"start": 2735.46, "end": 2735.94, "word": " uses", "probability": 0.77001953125}, {"start": 2735.94, "end": 2736.3, "word": " which", "probability": 0.1966552734375}, {"start": 2736.3, "end": 2737.34, "word": " command", "probability": 0.865234375}, {"start": 2737.34, "end": 2738.04, "word": " It", "probability": 0.28369140625}, {"start": 2738.04, "end": 2738.12, "word": " is", "probability": 0.488037109375}, {"start": 2738.12, "end": 2738.4, "word": " basically", "probability": 0.43212890625}, {"start": 2738.4, "end": 2738.82, "word": " using", "probability": 0.52197265625}, {"start": 2738.82, "end": 2738.92, "word": " a", "probability": 0.5986328125}, {"start": 2738.92, "end": 2739.12, "word": " list", "probability": 0.8671875}, {"start": 2739.12, "end": 2739.3, "word": " of", "probability": 0.9736328125}, {"start": 2739.3, "end": 2739.72, "word": " commands", "probability": 0.8994140625}, {"start": 2739.72, "end": 2740.46, "word": " Okay?", "probability": 0.34716796875}, {"start": 2740.56, "end": 2740.72, "word": " And", "probability": 0.74853515625}, {"start": 2740.72, "end": 2740.88, "word": " this", "probability": 0.7470703125}, {"start": 2740.88, "end": 2741.38, "word": " specific", "probability": 0.359619140625}, {"start": 2741.38, "end": 2741.6, "word": " indication", "probability": 0.383544921875}, {"start": 2741.6, "end": 2741.9, "word": " means", "probability": 0.76171875}, {"start": 2741.9, "end": 2742.34, "word": " that", "probability": 0.57421875}, {"start": 2742.34, "end": 2743.06, "word": " the", "probability": 0.7421875}, {"start": 2743.06, "end": 2743.32, "word": " command", "probability": 0.87353515625}, {"start": 2743.32, "end": 2743.38, "word": " is", "probability": 0.8291015625}, {"start": 2743.38, "end": 2743.38, "word": " created", "probability": 0.37646484375}, {"start": 2743.38, "end": 2743.68, "word": " outside", "probability": 0.7001953125}, {"start": 2743.68, "end": 2744.38, "word": " and", "probability": 0.60107421875}, {"start": 2744.38, "end": 2744.5, "word": " I", "probability": 0.578125}, {"start": 2744.5, "end": 2744.64, "word": " send", "probability": 0.6708984375}, {"start": 2744.64, "end": 2744.78, "word": " it", "probability": 0.90087890625}, {"start": 2744.78, "end": 2744.86, "word": " to", "probability": 0.95654296875}, {"start": 2744.86, "end": 2745.02, "word": " whom?", "probability": 0.77490234375}, {"start": 2745.4, "end": 2745.5, "word": " To", "probability": 0.8408203125}, {"start": 2745.5, "end": 2745.6, "word": " the", "probability": 0.91943359375}, {"start": 2745.6, "end": 2745.96, "word": " invoker", "probability": 0.943359375}, {"start": 2745.96, "end": 2746.12, "word": " And", "probability": 0.5576171875}, {"start": 2746.12, "end": 2746.26, "word": " this", "probability": 0.62255859375}, {"start": 2746.26, "end": 2746.28, "word": " is", "probability": 0.9072265625}, {"start": 2746.28, "end": 2746.34, "word": " what", "probability": 0.94384765625}, {"start": 2746.34, "end": 2746.4, "word": " I", "probability": 0.98828125}, {"start": 2746.4, "end": 2746.62, "word": " did,", "probability": 0.89306640625}, {"start": 2746.74, "end": 2746.86, "word": " I", "probability": 0.67529296875}, {"start": 2746.86, "end": 2747.14, "word": " made", "probability": 0.5068359375}, {"start": 2747.14, "end": 2747.3, "word": " a", "probability": 0.95068359375}, {"start": 2747.3, "end": 2747.68, "word": " list", "probability": 0.939453125}, {"start": 2747.68, "end": 2747.7, "word": " in", "probability": 0.42529296875}, {"start": 2747.7, "end": 2747.7, "word": " it", "probability": 0.86669921875}, {"start": 2747.7, "end": 2748.3, "word": " And", "probability": 0.432861328125}, {"start": 2748.3, "end": 2748.38, "word": " I", "probability": 0.84375}, {"start": 2748.38, "end": 2748.5, "word": " made", "probability": 0.54296875}, {"start": 2748.5, "end": 2748.56, "word": " a", "probability": 0.5390625}, {"start": 2748.56, "end": 2748.8, "word": " method", "probability": 0.94775390625}, {"start": 2748.8, "end": 2749.2, "word": " add", "probability": 0.66015625}, {"start": 2749.2, "end": 2749.78, "word": " stock", "probability": 0.353515625}, {"start": 2749.78, "end": 2750.84, "word": " command", "probability": 0.89404296875}, {"start": 2750.84, "end": 2751.06, "word": " to", "probability": 0.7939453125}, {"start": 2751.06, "end": 2751.32, "word": " add", "probability": 0.9296875}, {"start": 2751.32, "end": 2751.44, "word": " it", "probability": 0.39453125}, {"start": 2751.44, "end": 2751.5, "word": " to", "probability": 0.91357421875}, {"start": 2751.5, "end": 2751.56, "word": " the", "probability": 0.861328125}, {"start": 2751.56, "end": 2752.1, "word": " existing", "probability": 0.69091796875}, {"start": 2752.1, "end": 2752.1, "word": " list", "probability": 0.923828125}], "temperature": 1.0}, {"id": 121, "seek": 278058, "start": 2753.12, "end": 2780.58, "text": "Now this invoker will execute the commands later, all it needs to do is to loop the commands it has and tell it to execute Now it needs to add new commands, all it needs to do is to make new classes extend from the command, okay? No modification will be made to the invoker, and notice that the invoker does not know the details of execution, that is, the invoker does not know anything about who? About the receiver, the commanders can use other libraries and classes again to execute", "tokens": [13267, 341, 1048, 16722, 486, 14483, 264, 16901, 1780, 11, 439, 309, 2203, 281, 360, 307, 281, 6367, 264, 16901, 309, 575, 293, 980, 309, 281, 14483, 823, 309, 2203, 281, 909, 777, 16901, 11, 439, 309, 2203, 281, 360, 307, 281, 652, 777, 5359, 10101, 490, 264, 5622, 11, 1392, 30, 883, 26747, 486, 312, 1027, 281, 264, 1048, 16722, 11, 293, 3449, 300, 264, 1048, 16722, 775, 406, 458, 264, 4365, 295, 15058, 11, 300, 307, 11, 264, 1048, 16722, 775, 406, 458, 1340, 466, 567, 30, 7769, 264, 20086, 11, 264, 42932, 393, 764, 661, 15148, 293, 5359, 797, 281, 14483], "avg_logprob": -0.47797618366423106, "compression_ratio": 2.072649572649573, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 2753.12, "end": 2753.52, "word": "Now", "probability": 0.228515625}, {"start": 2753.52, "end": 2753.72, "word": " this", "probability": 0.494140625}, {"start": 2753.72, "end": 2754.16, "word": " invoker", "probability": 0.880859375}, {"start": 2754.16, "end": 2754.56, "word": " will", "probability": 0.66455078125}, {"start": 2754.56, "end": 2754.9, "word": " execute", "probability": 0.7216796875}, {"start": 2754.9, "end": 2755.0, "word": " the", "probability": 0.30810546875}, {"start": 2755.0, "end": 2755.22, "word": " commands", "probability": 0.578125}, {"start": 2755.22, "end": 2755.76, "word": " later,", "probability": 0.52001953125}, {"start": 2755.86, "end": 2756.02, "word": " all", "probability": 0.29833984375}, {"start": 2756.02, "end": 2756.12, "word": " it", "probability": 0.2332763671875}, {"start": 2756.12, "end": 2756.4, "word": " needs", "probability": 0.6728515625}, {"start": 2756.4, "end": 2756.6, "word": " to", "probability": 0.88037109375}, {"start": 2756.6, "end": 2756.76, "word": " do", "probability": 0.9404296875}, {"start": 2756.76, "end": 2757.02, "word": " is", "probability": 0.869140625}, {"start": 2757.02, "end": 2757.08, "word": " to", "probability": 0.43701171875}, {"start": 2757.08, "end": 2757.56, "word": " loop", "probability": 0.51806640625}, {"start": 2757.56, "end": 2757.8, "word": " the", "probability": 0.277099609375}, {"start": 2757.8, "end": 2758.12, "word": " commands", "probability": 0.6796875}, {"start": 2758.12, "end": 2758.28, "word": " it", "probability": 0.279541015625}, {"start": 2758.28, "end": 2758.48, "word": " has", "probability": 0.80908203125}, {"start": 2758.48, "end": 2758.6, "word": " and", "probability": 0.79248046875}, {"start": 2758.6, "end": 2758.76, "word": " tell", "probability": 0.488525390625}, {"start": 2758.76, "end": 2758.92, "word": " it", "probability": 0.787109375}, {"start": 2758.92, "end": 2759.56, "word": " to", "probability": 0.654296875}, {"start": 2759.56, "end": 2759.9, "word": " execute", "probability": 0.92919921875}, {"start": 2759.9, "end": 2761.38, "word": " Now", "probability": 0.2763671875}, {"start": 2761.38, "end": 2761.52, "word": " it", "probability": 0.76904296875}, {"start": 2761.52, "end": 2761.66, "word": " needs", "probability": 0.26171875}, {"start": 2761.66, "end": 2761.66, "word": " to", "probability": 0.9609375}, {"start": 2761.66, "end": 2761.84, "word": " add", "probability": 0.90087890625}, {"start": 2761.84, "end": 2762.52, "word": " new", "probability": 0.796875}, {"start": 2762.52, "end": 2762.52, "word": " commands,", "probability": 0.8603515625}, {"start": 2762.7, "end": 2762.82, "word": " all", "probability": 0.8310546875}, {"start": 2762.82, "end": 2762.9, "word": " it", "probability": 0.58251953125}, {"start": 2762.9, "end": 2763.16, "word": " needs", "probability": 0.8291015625}, {"start": 2763.16, "end": 2763.32, "word": " to", "probability": 0.85986328125}, {"start": 2763.32, "end": 2763.38, "word": " do", "probability": 0.9345703125}, {"start": 2763.38, "end": 2763.38, "word": " is", "probability": 0.767578125}, {"start": 2763.38, "end": 2763.38, "word": " to", "probability": 0.405029296875}, {"start": 2763.38, "end": 2763.56, "word": " make", "probability": 0.23388671875}, {"start": 2763.56, "end": 2763.56, "word": " new", "probability": 0.70458984375}, {"start": 2763.56, "end": 2763.94, "word": " classes", "probability": 0.90673828125}, {"start": 2763.94, "end": 2764.7, "word": " extend", "probability": 0.3642578125}, {"start": 2764.7, "end": 2764.98, "word": " from", "probability": 0.5869140625}, {"start": 2764.98, "end": 2765.98, "word": " the", "probability": 0.7890625}, {"start": 2765.98, "end": 2766.18, "word": " command,", "probability": 0.17431640625}, {"start": 2766.66, "end": 2766.92, "word": " okay?", "probability": 0.27685546875}, {"start": 2767.48, "end": 2767.62, "word": " No", "probability": 0.3359375}, {"start": 2767.62, "end": 2767.62, "word": " modification", "probability": 0.67138671875}, {"start": 2767.62, "end": 2767.62, "word": " will", "probability": 0.755859375}, {"start": 2767.62, "end": 2768.18, "word": " be", "probability": 0.6845703125}, {"start": 2768.18, "end": 2768.98, "word": " made", "probability": 0.66552734375}, {"start": 2768.98, "end": 2769.2, "word": " to", "probability": 0.564453125}, {"start": 2769.2, "end": 2769.8, "word": " the", "probability": 0.896484375}, {"start": 2769.8, "end": 2770.18, "word": " invoker,", "probability": 0.948486328125}, {"start": 2770.26, "end": 2770.36, "word": " and", "probability": 0.80810546875}, {"start": 2770.36, "end": 2770.58, "word": " notice", "probability": 0.67138671875}, {"start": 2770.58, "end": 2770.7, "word": " that", "probability": 0.68798828125}, {"start": 2770.7, "end": 2770.74, "word": " the", "probability": 0.89794921875}, {"start": 2770.74, "end": 2771.1, "word": " invoker", "probability": 0.95751953125}, {"start": 2771.1, "end": 2771.32, "word": " does", "probability": 0.72998046875}, {"start": 2771.32, "end": 2771.32, "word": " not", "probability": 0.9443359375}, {"start": 2771.32, "end": 2771.56, "word": " know", "probability": 0.89404296875}, {"start": 2771.56, "end": 2771.7, "word": " the", "probability": 0.88525390625}, {"start": 2771.7, "end": 2771.96, "word": " details", "probability": 0.861328125}, {"start": 2771.96, "end": 2772.14, "word": " of", "probability": 0.9658203125}, {"start": 2772.14, "end": 2772.52, "word": " execution,", "probability": 0.56396484375}, {"start": 2773.04, "end": 2773.22, "word": " that", "probability": 0.332763671875}, {"start": 2773.22, "end": 2773.22, "word": " is,", "probability": 0.90771484375}, {"start": 2773.26, "end": 2773.34, "word": " the", "probability": 0.89892578125}, {"start": 2773.34, "end": 2773.68, "word": " invoker", "probability": 0.948974609375}, {"start": 2773.68, "end": 2773.86, "word": " does", "probability": 0.9169921875}, {"start": 2773.86, "end": 2774.06, "word": " not", "probability": 0.9443359375}, {"start": 2774.06, "end": 2774.06, "word": " know", "probability": 0.89794921875}, {"start": 2774.06, "end": 2774.28, "word": " anything", "probability": 0.78759765625}, {"start": 2774.28, "end": 2774.48, "word": " about", "probability": 0.85400390625}, {"start": 2774.48, "end": 2774.68, "word": " who?", "probability": 0.428466796875}, {"start": 2775.58, "end": 2775.82, "word": " About", "probability": 0.28857421875}, {"start": 2775.82, "end": 2776.12, "word": " the", "probability": 0.89453125}, {"start": 2776.12, "end": 2776.48, "word": " receiver,", "probability": 0.875}, {"start": 2776.84, "end": 2777.58, "word": " the", "probability": 0.57275390625}, {"start": 2777.58, "end": 2777.92, "word": " commanders", "probability": 0.237060546875}, {"start": 2777.92, "end": 2778.02, "word": " can", "probability": 0.525390625}, {"start": 2778.02, "end": 2778.4, "word": " use", "probability": 0.86474609375}, {"start": 2778.4, "end": 2779.1, "word": " other", "probability": 0.83935546875}, {"start": 2779.1, "end": 2779.1, "word": " libraries", "probability": 0.96044921875}, {"start": 2779.1, "end": 2779.48, "word": " and", "probability": 0.90673828125}, {"start": 2779.48, "end": 2779.82, "word": " classes", "probability": 0.77001953125}, {"start": 2779.82, "end": 2780.12, "word": " again", "probability": 0.58056640625}, {"start": 2780.12, "end": 2780.3, "word": " to", "probability": 0.6455078125}, {"start": 2780.3, "end": 2780.58, "word": " execute", "probability": 0.75244140625}], "temperature": 1.0}, {"id": 122, "seek": 280246, "start": 2781.34, "end": 2802.46, "text": "What are the different ways of execution? In the end, it stores the commands and makes a loop and executes them. Okay? Did you get it? Okay, this explains the parts of the UML diagram. Now this example really", "tokens": [3748, 366, 264, 819, 2098, 295, 15058, 30, 682, 264, 917, 11, 309, 9512, 264, 16901, 293, 1669, 257, 6367, 293, 4454, 1819, 552, 13, 1033, 30, 2589, 291, 483, 309, 30, 1033, 11, 341, 13948, 264, 3166, 295, 264, 624, 12683, 10686, 13, 823, 341, 1365, 534], "avg_logprob": -0.7200255296668228, "compression_ratio": 1.395973154362416, "no_speech_prob": 6.198883056640625e-06, "words": [{"start": 2781.34, "end": 2781.7, "word": "What", "probability": 0.09356689453125}, {"start": 2781.7, "end": 2781.76, "word": " are", "probability": 0.255615234375}, {"start": 2781.76, "end": 2782.24, "word": " the", "probability": 0.77099609375}, {"start": 2782.24, "end": 2782.24, "word": " different", "probability": 0.6708984375}, {"start": 2782.24, "end": 2782.44, "word": " ways", "probability": 0.61083984375}, {"start": 2782.44, "end": 2782.62, "word": " of", "probability": 0.60693359375}, {"start": 2782.62, "end": 2782.96, "word": " execution?", "probability": 0.282470703125}, {"start": 2784.18, "end": 2784.62, "word": " In", "probability": 0.18310546875}, {"start": 2784.62, "end": 2784.8, "word": " the", "probability": 0.8017578125}, {"start": 2784.8, "end": 2784.98, "word": " end,", "probability": 0.908203125}, {"start": 2785.24, "end": 2785.42, "word": " it", "probability": 0.2100830078125}, {"start": 2785.42, "end": 2785.8, "word": " stores", "probability": 0.200927734375}, {"start": 2785.8, "end": 2786.02, "word": " the", "probability": 0.51513671875}, {"start": 2786.02, "end": 2786.28, "word": " commands", "probability": 0.5859375}, {"start": 2786.28, "end": 2786.88, "word": " and", "probability": 0.646484375}, {"start": 2786.88, "end": 2787.06, "word": " makes", "probability": 0.26025390625}, {"start": 2787.06, "end": 2787.24, "word": " a", "probability": 0.52880859375}, {"start": 2787.24, "end": 2787.5, "word": " loop", "probability": 0.96533203125}, {"start": 2787.5, "end": 2788.2, "word": " and", "probability": 0.626953125}, {"start": 2788.2, "end": 2788.56, "word": " executes", "probability": 0.764404296875}, {"start": 2788.56, "end": 2789.26, "word": " them.", "probability": 0.71533203125}, {"start": 2789.34, "end": 2789.58, "word": " Okay?", "probability": 0.132080078125}, {"start": 2791.04, "end": 2791.74, "word": " Did", "probability": 0.124267578125}, {"start": 2791.74, "end": 2791.84, "word": " you", "probability": 0.57568359375}, {"start": 2791.84, "end": 2791.84, "word": " get", "probability": 0.4052734375}, {"start": 2791.84, "end": 2791.86, "word": " it?", "probability": 0.2998046875}, {"start": 2791.98, "end": 2792.26, "word": " Okay,", "probability": 0.2398681640625}, {"start": 2796.06, "end": 2796.5, "word": " this", "probability": 0.66748046875}, {"start": 2796.5, "end": 2796.78, "word": " explains", "probability": 0.63818359375}, {"start": 2796.78, "end": 2797.52, "word": " the", "probability": 0.71337890625}, {"start": 2797.52, "end": 2797.9, "word": " parts", "probability": 0.6962890625}, {"start": 2797.9, "end": 2798.26, "word": " of", "probability": 0.9619140625}, {"start": 2798.26, "end": 2798.52, "word": " the", "probability": 0.7666015625}, {"start": 2798.52, "end": 2798.82, "word": " UML", "probability": 0.720458984375}, {"start": 2798.82, "end": 2799.36, "word": " diagram.", "probability": 0.85595703125}, {"start": 2799.94, "end": 2800.34, "word": " Now", "probability": 0.58203125}, {"start": 2800.34, "end": 2801.02, "word": " this", "probability": 0.4501953125}, {"start": 2801.02, "end": 2801.5, "word": " example", "probability": 0.91162109375}, {"start": 2801.5, "end": 2802.46, "word": " really", "probability": 0.229248046875}], "temperature": 1.0}, {"id": 123, "seek": 282430, "start": 2803.46, "end": 2824.3, "text": "It is an application for the stock market that we have explained Let's go through it quickly because we have explained it and there is no need to repeat it next time Now because it is the same example that I have done Now this interface is called order which has what? Execute I called it stock command, what did it call? Order Now this class which is the stock market", "tokens": [3522, 307, 364, 3861, 337, 264, 4127, 2142, 300, 321, 362, 8825, 961, 311, 352, 807, 309, 2661, 570, 321, 362, 8825, 309, 293, 456, 307, 572, 643, 281, 7149, 309, 958, 565, 823, 570, 309, 307, 264, 912, 1365, 300, 286, 362, 1096, 823, 341, 9226, 307, 1219, 1668, 597, 575, 437, 30, 17662, 1169, 286, 1219, 309, 4127, 5622, 11, 437, 630, 309, 818, 30, 16321, 823, 341, 1508, 597, 307, 264, 4127, 2142], "avg_logprob": -0.4890421954068271, "compression_ratio": 1.7037037037037037, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 2803.46, "end": 2803.68, "word": "It", "probability": 0.362060546875}, {"start": 2803.68, "end": 2803.78, "word": " is", "probability": 0.46337890625}, {"start": 2803.78, "end": 2803.92, "word": " an", "probability": 0.54736328125}, {"start": 2803.92, "end": 2804.18, "word": " application", "probability": 0.80859375}, {"start": 2804.18, "end": 2804.76, "word": " for", "probability": 0.58544921875}, {"start": 2804.76, "end": 2805.1, "word": " the", "probability": 0.75927734375}, {"start": 2805.1, "end": 2805.36, "word": " stock", "probability": 0.7451171875}, {"start": 2805.36, "end": 2805.68, "word": " market", "probability": 0.8974609375}, {"start": 2805.68, "end": 2805.8, "word": " that", "probability": 0.56494140625}, {"start": 2805.8, "end": 2805.98, "word": " we", "probability": 0.78125}, {"start": 2805.98, "end": 2806.06, "word": " have", "probability": 0.2578125}, {"start": 2806.06, "end": 2806.18, "word": " explained", "probability": 0.432861328125}, {"start": 2806.18, "end": 2806.74, "word": " Let's", "probability": 0.572509765625}, {"start": 2806.74, "end": 2806.88, "word": " go", "probability": 0.477294921875}, {"start": 2806.88, "end": 2807.02, "word": " through", "probability": 0.5888671875}, {"start": 2807.02, "end": 2807.1, "word": " it", "probability": 0.87939453125}, {"start": 2807.1, "end": 2807.42, "word": " quickly", "probability": 0.66845703125}, {"start": 2807.42, "end": 2807.68, "word": " because", "probability": 0.693359375}, {"start": 2807.68, "end": 2807.96, "word": " we", "probability": 0.654296875}, {"start": 2807.96, "end": 2808.0, "word": " have", "probability": 0.64404296875}, {"start": 2808.0, "end": 2808.16, "word": " explained", "probability": 0.54052734375}, {"start": 2808.16, "end": 2808.98, "word": " it", "probability": 0.51171875}, {"start": 2808.98, "end": 2808.98, "word": " and", "probability": 0.16162109375}, {"start": 2808.98, "end": 2809.12, "word": " there", "probability": 0.6083984375}, {"start": 2809.12, "end": 2809.2, "word": " is", "probability": 0.8212890625}, {"start": 2809.2, "end": 2809.3, "word": " no", "probability": 0.9462890625}, {"start": 2809.3, "end": 2809.5, "word": " need", "probability": 0.650390625}, {"start": 2809.5, "end": 2809.8, "word": " to", "probability": 0.89306640625}, {"start": 2809.8, "end": 2810.0, "word": " repeat", "probability": 0.7939453125}, {"start": 2810.0, "end": 2810.08, "word": " it", "probability": 0.876953125}, {"start": 2810.08, "end": 2810.42, "word": " next", "probability": 0.34423828125}, {"start": 2810.42, "end": 2810.92, "word": " time", "probability": 0.87646484375}, {"start": 2810.92, "end": 2811.42, "word": " Now", "probability": 0.328857421875}, {"start": 2811.42, "end": 2811.92, "word": " because", "probability": 0.401123046875}, {"start": 2811.92, "end": 2812.04, "word": " it", "probability": 0.666015625}, {"start": 2812.04, "end": 2812.04, "word": " is", "probability": 0.7978515625}, {"start": 2812.04, "end": 2812.14, "word": " the", "probability": 0.8896484375}, {"start": 2812.14, "end": 2812.22, "word": " same", "probability": 0.890625}, {"start": 2812.22, "end": 2812.56, "word": " example", "probability": 0.96044921875}, {"start": 2812.56, "end": 2812.64, "word": " that", "probability": 0.5576171875}, {"start": 2812.64, "end": 2812.64, "word": " I", "probability": 0.62841796875}, {"start": 2812.64, "end": 2812.74, "word": " have", "probability": 0.30859375}, {"start": 2812.74, "end": 2812.94, "word": " done", "probability": 0.55078125}, {"start": 2812.94, "end": 2814.04, "word": " Now", "probability": 0.37841796875}, {"start": 2814.04, "end": 2815.66, "word": " this", "probability": 0.79833984375}, {"start": 2815.66, "end": 2816.48, "word": " interface", "probability": 0.7373046875}, {"start": 2816.48, "end": 2816.62, "word": " is", "probability": 0.453369140625}, {"start": 2816.62, "end": 2816.8, "word": " called", "probability": 0.82177734375}, {"start": 2816.8, "end": 2817.1, "word": " order", "probability": 0.62890625}, {"start": 2817.1, "end": 2817.46, "word": " which", "probability": 0.265380859375}, {"start": 2817.46, "end": 2817.64, "word": " has", "probability": 0.6748046875}, {"start": 2817.64, "end": 2817.9, "word": " what?", "probability": 0.356201171875}, {"start": 2818.2, "end": 2818.62, "word": " Execute", "probability": 0.77587890625}, {"start": 2818.62, "end": 2818.78, "word": " I", "probability": 0.60693359375}, {"start": 2818.78, "end": 2819.12, "word": " called", "probability": 0.30810546875}, {"start": 2819.12, "end": 2819.22, "word": " it", "probability": 0.892578125}, {"start": 2819.22, "end": 2819.44, "word": " stock", "probability": 0.63720703125}, {"start": 2819.44, "end": 2819.82, "word": " command,", "probability": 0.82373046875}, {"start": 2819.9, "end": 2820.02, "word": " what", "probability": 0.64404296875}, {"start": 2820.02, "end": 2820.02, "word": " did", "probability": 0.58056640625}, {"start": 2820.02, "end": 2820.14, "word": " it", "probability": 0.6484375}, {"start": 2820.14, "end": 2820.32, "word": " call?", "probability": 0.76904296875}, {"start": 2821.28, "end": 2821.7, "word": " Order", "probability": 0.64892578125}, {"start": 2821.7, "end": 2822.38, "word": " Now", "probability": 0.45654296875}, {"start": 2822.38, "end": 2822.74, "word": " this", "probability": 0.86376953125}, {"start": 2822.74, "end": 2823.26, "word": " class", "probability": 0.96533203125}, {"start": 2823.26, "end": 2823.42, "word": " which", "probability": 0.443115234375}, {"start": 2823.42, "end": 2823.52, "word": " is", "probability": 0.9404296875}, {"start": 2823.52, "end": 2823.62, "word": " the", "probability": 0.6943359375}, {"start": 2823.62, "end": 2823.84, "word": " stock", "probability": 0.84423828125}, {"start": 2823.84, "end": 2824.3, "word": " market", "probability": 0.8955078125}], "temperature": 1.0}, {"id": 124, "seek": 284153, "start": 2825.01, "end": 2841.53, "text": " You see, it's what actually executes. I called it the stock market. He called it the stock trade. It has a method which is buy and sell, which actually executes the operations. Because I want to ask myself to store the operations of buying and selling in order to execute later.", "tokens": [509, 536, 11, 309, 311, 437, 767, 4454, 1819, 13, 286, 1219, 309, 264, 4127, 2142, 13, 634, 1219, 309, 264, 4127, 4923, 13, 467, 575, 257, 3170, 597, 307, 2256, 293, 3607, 11, 597, 767, 4454, 1819, 264, 7705, 13, 1436, 286, 528, 281, 1029, 2059, 281, 3531, 264, 7705, 295, 6382, 293, 6511, 294, 1668, 281, 14483, 1780, 13], "avg_logprob": -0.5720766273237043, "compression_ratio": 1.690909090909091, "no_speech_prob": 3.3974647521972656e-05, "words": [{"start": 2825.01, "end": 2825.13, "word": " You", "probability": 0.1539306640625}, {"start": 2825.13, "end": 2825.41, "word": " see,", "probability": 0.83154296875}, {"start": 2825.49, "end": 2825.55, "word": " it's", "probability": 0.4478759765625}, {"start": 2825.55, "end": 2825.61, "word": " what", "probability": 0.3896484375}, {"start": 2825.61, "end": 2825.75, "word": " actually", "probability": 0.401611328125}, {"start": 2825.75, "end": 2826.01, "word": " executes.", "probability": 0.557037353515625}, {"start": 2827.21, "end": 2827.65, "word": " I", "probability": 0.422119140625}, {"start": 2827.65, "end": 2828.03, "word": " called", "probability": 0.45263671875}, {"start": 2828.03, "end": 2829.91, "word": " it", "probability": 0.90869140625}, {"start": 2829.91, "end": 2829.97, "word": " the", "probability": 0.207763671875}, {"start": 2829.97, "end": 2830.13, "word": " stock", "probability": 0.43896484375}, {"start": 2830.13, "end": 2830.43, "word": " market.", "probability": 0.91796875}, {"start": 2830.51, "end": 2830.61, "word": " He", "probability": 0.75244140625}, {"start": 2830.61, "end": 2830.85, "word": " called", "probability": 0.8115234375}, {"start": 2830.85, "end": 2830.97, "word": " it", "probability": 0.94482421875}, {"start": 2830.97, "end": 2831.03, "word": " the", "probability": 0.59130859375}, {"start": 2831.03, "end": 2831.29, "word": " stock", "probability": 0.845703125}, {"start": 2831.29, "end": 2832.01, "word": " trade.", "probability": 0.896484375}, {"start": 2832.41, "end": 2832.51, "word": " It", "probability": 0.7197265625}, {"start": 2832.51, "end": 2832.63, "word": " has", "probability": 0.83837890625}, {"start": 2832.63, "end": 2832.75, "word": " a", "probability": 0.34619140625}, {"start": 2832.75, "end": 2832.99, "word": " method", "probability": 0.9033203125}, {"start": 2832.99, "end": 2833.07, "word": " which", "probability": 0.2164306640625}, {"start": 2833.07, "end": 2833.17, "word": " is", "probability": 0.8955078125}, {"start": 2833.17, "end": 2833.55, "word": " buy", "probability": 0.60791015625}, {"start": 2833.55, "end": 2834.27, "word": " and", "probability": 0.92236328125}, {"start": 2834.27, "end": 2834.51, "word": " sell,", "probability": 0.88623046875}, {"start": 2834.99, "end": 2835.17, "word": " which", "probability": 0.83740234375}, {"start": 2835.17, "end": 2835.33, "word": " actually", "probability": 0.67822265625}, {"start": 2835.33, "end": 2835.65, "word": " executes", "probability": 0.895751953125}, {"start": 2835.65, "end": 2835.77, "word": " the", "probability": 0.3857421875}, {"start": 2835.77, "end": 2836.17, "word": " operations.", "probability": 0.4501953125}, {"start": 2837.35, "end": 2837.55, "word": " Because", "probability": 0.2423095703125}, {"start": 2837.55, "end": 2837.77, "word": " I", "probability": 0.8876953125}, {"start": 2837.77, "end": 2837.99, "word": " want", "probability": 0.51171875}, {"start": 2837.99, "end": 2838.11, "word": " to", "probability": 0.52685546875}, {"start": 2838.11, "end": 2838.31, "word": " ask", "probability": 0.467041015625}, {"start": 2838.31, "end": 2838.59, "word": " myself", "probability": 0.263427734375}, {"start": 2838.59, "end": 2838.81, "word": " to", "probability": 0.51611328125}, {"start": 2838.81, "end": 2838.81, "word": " store", "probability": 0.55908203125}, {"start": 2838.81, "end": 2838.81, "word": " the", "probability": 0.703125}, {"start": 2838.81, "end": 2839.21, "word": " operations", "probability": 0.56103515625}, {"start": 2839.21, "end": 2839.39, "word": " of", "probability": 0.857421875}, {"start": 2839.39, "end": 2839.55, "word": " buying", "probability": 0.469970703125}, {"start": 2839.55, "end": 2840.09, "word": " and", "probability": 0.93115234375}, {"start": 2840.09, "end": 2840.09, "word": " selling", "probability": 0.8271484375}, {"start": 2840.09, "end": 2840.21, "word": " in", "probability": 0.219482421875}, {"start": 2840.21, "end": 2840.85, "word": " order", "probability": 0.91943359375}, {"start": 2840.85, "end": 2841.03, "word": " to", "probability": 0.81201171875}, {"start": 2841.03, "end": 2841.37, "word": " execute", "probability": 0.83251953125}, {"start": 2841.37, "end": 2841.53, "word": " later.", "probability": 0.50439453125}], "temperature": 1.0}, {"id": 125, "seek": 287282, "start": 2843.5, "end": 2872.82, "text": "so now I made an interface that represents the order in method execute and I made a class for each method call here buy stock order and sell stock order all of them implement to whom? to execute in a different way and both of them take the object from who? stock trade not us in the constructor that each one of us sent to the stock trade okay? add to that any attributes that they need to execute the commands", "tokens": [539, 586, 286, 1027, 364, 9226, 300, 8855, 264, 1668, 294, 3170, 14483, 293, 286, 1027, 257, 1508, 337, 1184, 3170, 818, 510, 2256, 4127, 1668, 293, 3607, 4127, 1668, 439, 295, 552, 4445, 281, 7101, 30, 281, 14483, 294, 257, 819, 636, 293, 1293, 295, 552, 747, 264, 2657, 490, 567, 30, 4127, 4923, 406, 505, 294, 264, 47479, 300, 1184, 472, 295, 505, 2279, 281, 264, 4127, 4923, 1392, 30, 909, 281, 300, 604, 17212, 300, 436, 643, 281, 14483, 264, 16901], "avg_logprob": -0.5106617899502025, "compression_ratio": 1.8636363636363635, "no_speech_prob": 0.12139892578125, "words": [{"start": 2843.5, "end": 2843.74, "word": "so", "probability": 0.2353515625}, {"start": 2843.74, "end": 2844.0, "word": " now", "probability": 0.69091796875}, {"start": 2844.0, "end": 2844.86, "word": " I", "probability": 0.56982421875}, {"start": 2844.86, "end": 2845.08, "word": " made", "probability": 0.353515625}, {"start": 2845.08, "end": 2845.28, "word": " an", "probability": 0.5712890625}, {"start": 2845.28, "end": 2845.76, "word": " interface", "probability": 0.90478515625}, {"start": 2845.76, "end": 2846.0, "word": " that", "probability": 0.31005859375}, {"start": 2846.0, "end": 2846.26, "word": " represents", "probability": 0.4619140625}, {"start": 2846.26, "end": 2846.4, "word": " the", "probability": 0.5185546875}, {"start": 2846.4, "end": 2846.7, "word": " order", "probability": 0.8818359375}, {"start": 2846.7, "end": 2847.0, "word": " in", "probability": 0.37060546875}, {"start": 2847.0, "end": 2847.28, "word": " method", "probability": 0.666015625}, {"start": 2847.28, "end": 2847.74, "word": " execute", "probability": 0.85986328125}, {"start": 2847.74, "end": 2848.06, "word": " and", "probability": 0.65478515625}, {"start": 2848.06, "end": 2848.22, "word": " I", "probability": 0.433349609375}, {"start": 2848.22, "end": 2848.7, "word": " made", "probability": 0.705078125}, {"start": 2848.7, "end": 2848.84, "word": " a", "probability": 0.55029296875}, {"start": 2848.84, "end": 2848.84, "word": " class", "probability": 0.93798828125}, {"start": 2848.84, "end": 2848.84, "word": " for", "probability": 0.81298828125}, {"start": 2848.84, "end": 2849.22, "word": " each", "probability": 0.5322265625}, {"start": 2849.22, "end": 2849.62, "word": " method", "probability": 0.77099609375}, {"start": 2849.62, "end": 2849.98, "word": " call", "probability": 0.85791015625}, {"start": 2849.98, "end": 2851.5, "word": " here", "probability": 0.53369140625}, {"start": 2851.5, "end": 2853.18, "word": " buy", "probability": 0.37109375}, {"start": 2853.18, "end": 2853.54, "word": " stock", "probability": 0.3662109375}, {"start": 2853.54, "end": 2854.04, "word": " order", "probability": 0.90771484375}, {"start": 2854.04, "end": 2854.26, "word": " and", "probability": 0.78125}, {"start": 2854.26, "end": 2854.46, "word": " sell", "probability": 0.92138671875}, {"start": 2854.46, "end": 2854.78, "word": " stock", "probability": 0.89111328125}, {"start": 2854.78, "end": 2855.14, "word": " order", "probability": 0.92431640625}, {"start": 2855.14, "end": 2856.04, "word": " all", "probability": 0.220947265625}, {"start": 2856.04, "end": 2856.14, "word": " of", "probability": 0.74560546875}, {"start": 2856.14, "end": 2856.14, "word": " them", "probability": 0.88427734375}, {"start": 2856.14, "end": 2856.72, "word": " implement", "probability": 0.51806640625}, {"start": 2856.72, "end": 2857.08, "word": " to", "probability": 0.40869140625}, {"start": 2857.08, "end": 2857.22, "word": " whom?", "probability": 0.78759765625}, {"start": 2857.62, "end": 2858.22, "word": " to", "probability": 0.75830078125}, {"start": 2858.22, "end": 2858.74, "word": " execute", "probability": 0.90673828125}, {"start": 2858.74, "end": 2858.92, "word": " in", "probability": 0.765625}, {"start": 2858.92, "end": 2859.28, "word": " a", "probability": 0.6611328125}, {"start": 2859.28, "end": 2859.52, "word": " different", "probability": 0.875}, {"start": 2859.52, "end": 2859.74, "word": " way", "probability": 0.91015625}, {"start": 2859.74, "end": 2860.46, "word": " and", "probability": 0.80126953125}, {"start": 2860.46, "end": 2860.98, "word": " both", "probability": 0.6748046875}, {"start": 2860.98, "end": 2860.98, "word": " of", "probability": 0.429931640625}, {"start": 2860.98, "end": 2861.36, "word": " them", "probability": 0.8974609375}, {"start": 2861.36, "end": 2861.86, "word": " take", "probability": 0.59326171875}, {"start": 2861.86, "end": 2861.96, "word": " the", "probability": 0.56298828125}, {"start": 2861.96, "end": 2862.3, "word": " object", "probability": 0.9677734375}, {"start": 2862.3, "end": 2862.52, "word": " from", "probability": 0.279052734375}, {"start": 2862.52, "end": 2862.84, "word": " who?", "probability": 0.33984375}, {"start": 2863.22, "end": 2863.58, "word": " stock", "probability": 0.479248046875}, {"start": 2863.58, "end": 2863.96, "word": " trade", "probability": 0.56689453125}, {"start": 2863.96, "end": 2864.34, "word": " not", "probability": 0.4404296875}, {"start": 2864.34, "end": 2864.64, "word": " us", "probability": 0.1942138671875}, {"start": 2864.64, "end": 2864.78, "word": " in", "probability": 0.63134765625}, {"start": 2864.78, "end": 2864.84, "word": " the", "probability": 0.48193359375}, {"start": 2864.84, "end": 2865.4, "word": " constructor", "probability": 0.92529296875}, {"start": 2865.4, "end": 2865.6, "word": " that", "probability": 0.314208984375}, {"start": 2865.6, "end": 2865.82, "word": " each", "probability": 0.459716796875}, {"start": 2865.82, "end": 2866.16, "word": " one", "probability": 0.66015625}, {"start": 2866.16, "end": 2866.24, "word": " of", "probability": 0.5478515625}, {"start": 2866.24, "end": 2866.24, "word": " us", "probability": 0.57666015625}, {"start": 2866.24, "end": 2866.46, "word": " sent", "probability": 0.50927734375}, {"start": 2866.46, "end": 2866.74, "word": " to", "probability": 0.37060546875}, {"start": 2866.74, "end": 2866.8, "word": " the", "probability": 0.462158203125}, {"start": 2866.8, "end": 2867.02, "word": " stock", "probability": 0.86572265625}, {"start": 2867.02, "end": 2867.46, "word": " trade", "probability": 0.87109375}, {"start": 2867.46, "end": 2868.3, "word": " okay?", "probability": 0.1953125}, {"start": 2868.5, "end": 2868.74, "word": " add", "probability": 0.291259765625}, {"start": 2868.74, "end": 2868.94, "word": " to", "probability": 0.7578125}, {"start": 2868.94, "end": 2869.32, "word": " that", "probability": 0.8154296875}, {"start": 2869.32, "end": 2869.58, "word": " any", "probability": 0.69287109375}, {"start": 2869.58, "end": 2870.16, "word": " attributes", "probability": 0.77392578125}, {"start": 2870.16, "end": 2870.34, "word": " that", "probability": 0.55712890625}, {"start": 2870.34, "end": 2870.42, "word": " they", "probability": 0.8271484375}, {"start": 2870.42, "end": 2870.94, "word": " need", "probability": 0.90283203125}, {"start": 2870.94, "end": 2872.1, "word": " to", "probability": 0.9091796875}, {"start": 2872.1, "end": 2872.44, "word": " execute", "probability": 0.525390625}, {"start": 2872.44, "end": 2872.58, "word": " the", "probability": 0.75732421875}, {"start": 2872.58, "end": 2872.82, "word": " commands", "probability": 0.489501953125}], "temperature": 1.0}, {"id": 126, "seek": 288293, "start": 2873.59, "end": 2882.93, "text": "Okay? Now inside this execute of buy, I go to the stock trade of this object and it executes buy", "tokens": [8297, 30, 823, 1854, 341, 14483, 295, 2256, 11, 286, 352, 281, 264, 4127, 4923, 295, 341, 2657, 293, 309, 4454, 1819, 2256], "avg_logprob": -0.6933593774835268, "compression_ratio": 1.1294117647058823, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 2873.59, "end": 2873.99, "word": "Okay?", "probability": 0.1488037109375}, {"start": 2875.23, "end": 2875.99, "word": " Now", "probability": 0.81787109375}, {"start": 2875.99, "end": 2876.59, "word": " inside", "probability": 0.48779296875}, {"start": 2876.59, "end": 2876.75, "word": " this", "probability": 0.58203125}, {"start": 2876.75, "end": 2877.19, "word": " execute", "probability": 0.444580078125}, {"start": 2877.19, "end": 2878.25, "word": " of", "probability": 0.278076171875}, {"start": 2878.25, "end": 2878.71, "word": " buy,", "probability": 0.2203369140625}, {"start": 2878.87, "end": 2879.01, "word": " I", "probability": 0.607421875}, {"start": 2879.01, "end": 2879.17, "word": " go", "probability": 0.77392578125}, {"start": 2879.17, "end": 2879.35, "word": " to", "probability": 0.9462890625}, {"start": 2879.35, "end": 2879.43, "word": " the", "probability": 0.40234375}, {"start": 2879.43, "end": 2879.73, "word": " stock", "probability": 0.71337890625}, {"start": 2879.73, "end": 2880.33, "word": " trade", "probability": 0.62451171875}, {"start": 2880.33, "end": 2880.97, "word": " of", "probability": 0.289306640625}, {"start": 2880.97, "end": 2880.99, "word": " this", "probability": 0.791015625}, {"start": 2880.99, "end": 2881.35, "word": " object", "probability": 0.9208984375}, {"start": 2881.35, "end": 2881.79, "word": " and", "probability": 0.67578125}, {"start": 2881.79, "end": 2881.87, "word": " it", "probability": 0.259765625}, {"start": 2881.87, "end": 2882.13, "word": " executes", "probability": 0.6922607421875}, {"start": 2882.13, "end": 2882.93, "word": " buy", "probability": 0.31396484375}], "temperature": 1.0}, {"id": 127, "seek": 290689, "start": 2885.85, "end": 2906.89, "text": "notice that I am using execute without knowing who is executing this execute is inside of it and the execute of the cell goes to the stock and makes a cell now this is our agent which will actually store the list what is called here but it is a queue and it has a method called place order which is similar to add stock command", "tokens": [2247, 573, 300, 286, 669, 1228, 14483, 1553, 5276, 567, 307, 32368, 341, 14483, 307, 1854, 295, 309, 293, 264, 14483, 295, 264, 2815, 1709, 281, 264, 4127, 293, 1669, 257, 2815, 586, 341, 307, 527, 9461, 597, 486, 767, 3531, 264, 1329, 437, 307, 1219, 510, 457, 309, 307, 257, 18639, 293, 309, 575, 257, 3170, 1219, 1081, 1668, 597, 307, 2531, 281, 909, 4127, 5622], "avg_logprob": -0.6148897286723641, "compression_ratio": 1.7580645161290323, "no_speech_prob": 2.6226043701171875e-06, "words": [{"start": 2885.85, "end": 2886.37, "word": "notice", "probability": 0.339141845703125}, {"start": 2886.37, "end": 2886.47, "word": " that", "probability": 0.75048828125}, {"start": 2886.47, "end": 2886.63, "word": " I", "probability": 0.7294921875}, {"start": 2886.63, "end": 2886.69, "word": " am", "probability": 0.36181640625}, {"start": 2886.69, "end": 2886.89, "word": " using", "probability": 0.118408203125}, {"start": 2886.89, "end": 2887.41, "word": " execute", "probability": 0.67236328125}, {"start": 2887.41, "end": 2887.71, "word": " without", "probability": 0.5283203125}, {"start": 2887.71, "end": 2888.03, "word": " knowing", "probability": 0.712890625}, {"start": 2888.03, "end": 2888.29, "word": " who", "probability": 0.82666015625}, {"start": 2888.29, "end": 2888.43, "word": " is", "probability": 0.53515625}, {"start": 2888.43, "end": 2888.73, "word": " executing", "probability": 0.6044921875}, {"start": 2888.73, "end": 2889.03, "word": " this", "probability": 0.2462158203125}, {"start": 2889.03, "end": 2889.47, "word": " execute", "probability": 0.45947265625}, {"start": 2889.47, "end": 2889.55, "word": " is", "probability": 0.5712890625}, {"start": 2889.55, "end": 2889.91, "word": " inside", "probability": 0.60205078125}, {"start": 2889.91, "end": 2890.07, "word": " of", "probability": 0.1893310546875}, {"start": 2890.07, "end": 2890.07, "word": " it", "probability": 0.56201171875}, {"start": 2890.07, "end": 2890.95, "word": " and", "probability": 0.63232421875}, {"start": 2890.95, "end": 2891.03, "word": " the", "probability": 0.359375}, {"start": 2891.03, "end": 2891.45, "word": " execute", "probability": 0.609375}, {"start": 2891.45, "end": 2891.79, "word": " of", "probability": 0.814453125}, {"start": 2891.79, "end": 2891.95, "word": " the", "probability": 0.362060546875}, {"start": 2891.95, "end": 2892.19, "word": " cell", "probability": 0.89111328125}, {"start": 2892.19, "end": 2892.55, "word": " goes", "probability": 0.78076171875}, {"start": 2892.55, "end": 2892.71, "word": " to", "probability": 0.9482421875}, {"start": 2892.71, "end": 2892.81, "word": " the", "probability": 0.83203125}, {"start": 2892.81, "end": 2893.03, "word": " stock", "probability": 0.5615234375}, {"start": 2893.03, "end": 2893.17, "word": " and", "probability": 0.79931640625}, {"start": 2893.17, "end": 2893.39, "word": " makes", "probability": 0.26416015625}, {"start": 2893.39, "end": 2894.47, "word": " a", "probability": 0.458251953125}, {"start": 2894.47, "end": 2894.67, "word": " cell", "probability": 0.90234375}, {"start": 2894.67, "end": 2895.37, "word": " now", "probability": 0.53369140625}, {"start": 2895.37, "end": 2895.61, "word": " this", "probability": 0.7958984375}, {"start": 2895.61, "end": 2895.63, "word": " is", "probability": 0.2244873046875}, {"start": 2895.63, "end": 2895.71, "word": " our", "probability": 0.67626953125}, {"start": 2895.71, "end": 2896.19, "word": " agent", "probability": 0.9326171875}, {"start": 2896.19, "end": 2897.73, "word": " which", "probability": 0.323974609375}, {"start": 2897.73, "end": 2898.17, "word": " will", "probability": 0.47119140625}, {"start": 2898.17, "end": 2898.17, "word": " actually", "probability": 0.33349609375}, {"start": 2898.17, "end": 2898.43, "word": " store", "probability": 0.2027587890625}, {"start": 2898.43, "end": 2898.57, "word": " the", "probability": 0.77783203125}, {"start": 2898.57, "end": 2898.91, "word": " list", "probability": 0.9013671875}, {"start": 2898.91, "end": 2899.31, "word": " what", "probability": 0.180419921875}, {"start": 2899.31, "end": 2899.45, "word": " is", "probability": 0.2861328125}, {"start": 2899.45, "end": 2899.67, "word": " called", "probability": 0.292724609375}, {"start": 2899.67, "end": 2899.89, "word": " here", "probability": 0.7099609375}, {"start": 2899.89, "end": 2900.15, "word": " but", "probability": 0.316162109375}, {"start": 2900.15, "end": 2900.35, "word": " it", "probability": 0.7841796875}, {"start": 2900.35, "end": 2900.39, "word": " is", "probability": 0.80126953125}, {"start": 2900.39, "end": 2900.83, "word": " a", "probability": 0.296630859375}, {"start": 2900.83, "end": 2901.07, "word": " queue", "probability": 0.900390625}, {"start": 2901.07, "end": 2901.65, "word": " and", "probability": 0.72509765625}, {"start": 2901.65, "end": 2901.79, "word": " it", "probability": 0.72216796875}, {"start": 2901.79, "end": 2901.85, "word": " has", "probability": 0.92578125}, {"start": 2901.85, "end": 2901.93, "word": " a", "probability": 0.81494140625}, {"start": 2901.93, "end": 2902.15, "word": " method", "probability": 0.95849609375}, {"start": 2902.15, "end": 2902.43, "word": " called", "probability": 0.69189453125}, {"start": 2902.43, "end": 2902.85, "word": " place", "probability": 0.787109375}, {"start": 2902.85, "end": 2903.29, "word": " order", "probability": 0.7705078125}, {"start": 2903.29, "end": 2904.21, "word": " which", "probability": 0.818359375}, {"start": 2904.21, "end": 2904.73, "word": " is", "probability": 0.6435546875}, {"start": 2904.73, "end": 2904.97, "word": " similar", "probability": 0.71484375}, {"start": 2904.97, "end": 2905.23, "word": " to", "probability": 0.94677734375}, {"start": 2905.23, "end": 2905.61, "word": " add", "probability": 0.83544921875}, {"start": 2905.61, "end": 2906.13, "word": " stock", "probability": 0.4580078125}, {"start": 2906.13, "end": 2906.89, "word": " command", "probability": 0.8798828125}], "temperature": 1.0}, {"id": 128, "seek": 293707, "start": 2910.73, "end": 2937.07, "text": " Now let's look at the code quickly This is my interface, order This is main, buy stock order, implements order, and sell stock order, implements order, these are my commands And each one of these constructors takes the stock trade, which is necessary for execution Now it wants to execute, it goes to the stock, it does buy, and this one does stock, and this one does sell, here it made the commands", "tokens": [823, 718, 311, 574, 412, 264, 3089, 2661, 639, 307, 452, 9226, 11, 1668, 639, 307, 2135, 11, 2256, 4127, 1668, 11, 704, 17988, 1668, 11, 293, 3607, 4127, 1668, 11, 704, 17988, 1668, 11, 613, 366, 452, 16901, 400, 1184, 472, 295, 613, 7690, 830, 2516, 264, 4127, 4923, 11, 597, 307, 4818, 337, 15058, 823, 309, 2738, 281, 14483, 11, 309, 1709, 281, 264, 4127, 11, 309, 775, 2256, 11, 293, 341, 472, 775, 4127, 11, 293, 341, 472, 775, 3607, 11, 510, 309, 1027, 264, 16901], "avg_logprob": -0.5378472487131755, "compression_ratio": 1.8779342723004695, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2910.73, "end": 2911.07, "word": " Now", "probability": 0.2066650390625}, {"start": 2911.07, "end": 2911.35, "word": " let's", "probability": 0.715576171875}, {"start": 2911.35, "end": 2911.63, "word": " look", "probability": 0.34716796875}, {"start": 2911.63, "end": 2911.69, "word": " at", "probability": 0.935546875}, {"start": 2911.69, "end": 2911.81, "word": " the", "probability": 0.8203125}, {"start": 2911.81, "end": 2912.03, "word": " code", "probability": 0.85986328125}, {"start": 2912.03, "end": 2912.75, "word": " quickly", "probability": 0.1961669921875}, {"start": 2912.75, "end": 2913.89, "word": " This", "probability": 0.151611328125}, {"start": 2913.89, "end": 2914.13, "word": " is", "probability": 0.9072265625}, {"start": 2914.13, "end": 2914.23, "word": " my", "probability": 0.7080078125}, {"start": 2914.23, "end": 2914.73, "word": " interface,", "probability": 0.60546875}, {"start": 2915.37, "end": 2915.91, "word": " order", "probability": 0.55419921875}, {"start": 2915.91, "end": 2917.31, "word": " This", "probability": 0.31396484375}, {"start": 2917.31, "end": 2917.69, "word": " is", "probability": 0.61083984375}, {"start": 2917.69, "end": 2918.03, "word": " main,", "probability": 0.3701171875}, {"start": 2918.19, "end": 2918.43, "word": " buy", "probability": 0.57568359375}, {"start": 2918.43, "end": 2918.75, "word": " stock", "probability": 0.5517578125}, {"start": 2918.75, "end": 2919.15, "word": " order,", "probability": 0.91943359375}, {"start": 2919.27, "end": 2919.73, "word": " implements", "probability": 0.6309814453125}, {"start": 2919.73, "end": 2920.23, "word": " order,", "probability": 0.9111328125}, {"start": 2920.37, "end": 2920.49, "word": " and", "probability": 0.5185546875}, {"start": 2920.49, "end": 2920.65, "word": " sell", "probability": 0.841796875}, {"start": 2920.65, "end": 2920.99, "word": " stock", "probability": 0.89501953125}, {"start": 2920.99, "end": 2921.41, "word": " order,", "probability": 0.92529296875}, {"start": 2921.81, "end": 2922.33, "word": " implements", "probability": 0.897216796875}, {"start": 2922.33, "end": 2923.05, "word": " order,", "probability": 0.9375}, {"start": 2923.11, "end": 2923.25, "word": " these", "probability": 0.64453125}, {"start": 2923.25, "end": 2923.27, "word": " are", "probability": 0.91162109375}, {"start": 2923.27, "end": 2923.37, "word": " my", "probability": 0.5986328125}, {"start": 2923.37, "end": 2923.73, "word": " commands", "probability": 0.8662109375}, {"start": 2923.73, "end": 2924.71, "word": " And", "probability": 0.343994140625}, {"start": 2924.71, "end": 2924.95, "word": " each", "probability": 0.7529296875}, {"start": 2924.95, "end": 2925.15, "word": " one", "probability": 0.439697265625}, {"start": 2925.15, "end": 2925.25, "word": " of", "probability": 0.66064453125}, {"start": 2925.25, "end": 2925.33, "word": " these", "probability": 0.52587890625}, {"start": 2925.33, "end": 2925.99, "word": " constructors", "probability": 0.70849609375}, {"start": 2925.99, "end": 2926.55, "word": " takes", "probability": 0.391845703125}, {"start": 2926.55, "end": 2927.79, "word": " the", "probability": 0.2420654296875}, {"start": 2927.79, "end": 2928.05, "word": " stock", "probability": 0.80517578125}, {"start": 2928.05, "end": 2928.39, "word": " trade,", "probability": 0.91552734375}, {"start": 2928.43, "end": 2928.55, "word": " which", "probability": 0.2744140625}, {"start": 2928.55, "end": 2928.55, "word": " is", "probability": 0.609375}, {"start": 2928.55, "end": 2928.71, "word": " necessary", "probability": 0.321533203125}, {"start": 2928.71, "end": 2928.85, "word": " for", "probability": 0.73876953125}, {"start": 2928.85, "end": 2929.33, "word": " execution", "probability": 0.45947265625}, {"start": 2929.33, "end": 2931.33, "word": " Now", "probability": 0.279052734375}, {"start": 2931.33, "end": 2931.49, "word": " it", "probability": 0.471923828125}, {"start": 2931.49, "end": 2931.59, "word": " wants", "probability": 0.438232421875}, {"start": 2931.59, "end": 2931.71, "word": " to", "probability": 0.9521484375}, {"start": 2931.71, "end": 2931.99, "word": " execute,", "probability": 0.87548828125}, {"start": 2932.61, "end": 2932.67, "word": " it", "probability": 0.52392578125}, {"start": 2932.67, "end": 2932.81, "word": " goes", "probability": 0.9130859375}, {"start": 2932.81, "end": 2932.91, "word": " to", "probability": 0.9521484375}, {"start": 2932.91, "end": 2933.05, "word": " the", "probability": 0.80712890625}, {"start": 2933.05, "end": 2933.23, "word": " stock,", "probability": 0.7802734375}, {"start": 2933.33, "end": 2933.33, "word": " it", "probability": 0.484375}, {"start": 2933.33, "end": 2933.49, "word": " does", "probability": 0.50439453125}, {"start": 2933.49, "end": 2933.83, "word": " buy,", "probability": 0.8974609375}, {"start": 2933.91, "end": 2934.01, "word": " and", "probability": 0.611328125}, {"start": 2934.01, "end": 2934.15, "word": " this", "probability": 0.59326171875}, {"start": 2934.15, "end": 2934.23, "word": " one", "probability": 0.47802734375}, {"start": 2934.23, "end": 2934.37, "word": " does", "probability": 0.7529296875}, {"start": 2934.37, "end": 2934.77, "word": " stock,", "probability": 0.50537109375}, {"start": 2934.85, "end": 2934.97, "word": " and", "probability": 0.4501953125}, {"start": 2934.97, "end": 2935.31, "word": " this", "probability": 0.70947265625}, {"start": 2935.31, "end": 2935.73, "word": " one", "probability": 0.88232421875}, {"start": 2935.73, "end": 2935.95, "word": " does", "probability": 0.81201171875}, {"start": 2935.95, "end": 2936.17, "word": " sell,", "probability": 0.89208984375}, {"start": 2936.21, "end": 2936.35, "word": " here", "probability": 0.443359375}, {"start": 2936.35, "end": 2936.43, "word": " it", "probability": 0.59765625}, {"start": 2936.43, "end": 2936.55, "word": " made", "probability": 0.228271484375}, {"start": 2936.55, "end": 2936.69, "word": " the", "probability": 0.607421875}, {"start": 2936.69, "end": 2937.07, "word": " commands", "probability": 0.87158203125}], "temperature": 1.0}, {"id": 129, "seek": 294986, "start": 2937.92, "end": 2949.86, "text": "Now, this class StockTrade that I started in this program, which is actually the one that implements the process of selling and buying, but this use has now been reduced to whom? To these classes", "tokens": [13267, 11, 341, 1508, 17857, 14252, 762, 300, 286, 1409, 294, 341, 1461, 11, 597, 307, 767, 264, 472, 300, 704, 17988, 264, 1399, 295, 6511, 293, 6382, 11, 457, 341, 764, 575, 586, 668, 9212, 281, 7101, 30, 1407, 613, 5359], "avg_logprob": -0.6631540725397509, "compression_ratio": 1.3636363636363635, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2937.92, "end": 2938.44, "word": "Now,", "probability": 0.3154296875}, {"start": 2938.78, "end": 2939.1, "word": " this", "probability": 0.52197265625}, {"start": 2939.1, "end": 2939.5, "word": " class", "probability": 0.74072265625}, {"start": 2939.5, "end": 2940.34, "word": " StockTrade", "probability": 0.6261393229166666}, {"start": 2940.34, "end": 2940.72, "word": " that", "probability": 0.330810546875}, {"start": 2940.72, "end": 2940.94, "word": " I", "probability": 0.93798828125}, {"start": 2940.94, "end": 2941.32, "word": " started", "probability": 0.73486328125}, {"start": 2941.32, "end": 2941.46, "word": " in", "probability": 0.309326171875}, {"start": 2941.46, "end": 2941.66, "word": " this", "probability": 0.4365234375}, {"start": 2941.66, "end": 2942.06, "word": " program,", "probability": 0.58154296875}, {"start": 2942.3, "end": 2942.36, "word": " which", "probability": 0.352294921875}, {"start": 2942.36, "end": 2942.52, "word": " is", "probability": 0.33349609375}, {"start": 2942.52, "end": 2942.92, "word": " actually", "probability": 0.48583984375}, {"start": 2942.92, "end": 2943.24, "word": " the", "probability": 0.227783203125}, {"start": 2943.24, "end": 2943.24, "word": " one", "probability": 0.6357421875}, {"start": 2943.24, "end": 2943.36, "word": " that", "probability": 0.703125}, {"start": 2943.36, "end": 2943.68, "word": " implements", "probability": 0.550262451171875}, {"start": 2943.68, "end": 2943.74, "word": " the", "probability": 0.6064453125}, {"start": 2943.74, "end": 2943.92, "word": " process", "probability": 0.22509765625}, {"start": 2943.92, "end": 2944.08, "word": " of", "probability": 0.96630859375}, {"start": 2944.08, "end": 2944.32, "word": " selling", "probability": 0.364013671875}, {"start": 2944.32, "end": 2945.12, "word": " and", "probability": 0.923828125}, {"start": 2945.12, "end": 2945.42, "word": " buying,", "probability": 0.74658203125}, {"start": 2945.9, "end": 2946.1, "word": " but", "probability": 0.85498046875}, {"start": 2946.1, "end": 2946.24, "word": " this", "probability": 0.58984375}, {"start": 2946.24, "end": 2946.72, "word": " use", "probability": 0.58984375}, {"start": 2946.72, "end": 2947.4, "word": " has", "probability": 0.45166015625}, {"start": 2947.4, "end": 2947.52, "word": " now", "probability": 0.5439453125}, {"start": 2947.52, "end": 2947.68, "word": " been", "probability": 0.57275390625}, {"start": 2947.68, "end": 2947.92, "word": " reduced", "probability": 0.217529296875}, {"start": 2947.92, "end": 2948.2, "word": " to", "probability": 0.88671875}, {"start": 2948.2, "end": 2948.4, "word": " whom?", "probability": 0.390869140625}, {"start": 2949.1, "end": 2949.32, "word": " To", "probability": 0.67578125}, {"start": 2949.32, "end": 2949.48, "word": " these", "probability": 0.802734375}, {"start": 2949.48, "end": 2949.86, "word": " classes", "probability": 0.92578125}], "temperature": 1.0}, {"id": 130, "seek": 297608, "start": 2952.44, "end": 2976.08, "text": "Now, there is a class that we don't see, in front of the client, which is the agent, this is the agent, okay? There is a queue in the array list, there is a place that I put in the array list, there are process orders, do you see them? This is like execute all, which makes a loop on each order that I tell it to execute Because this is the main method for final use, the main method of course creates an object from whom?", "tokens": [13267, 11, 456, 307, 257, 1508, 300, 321, 500, 380, 536, 11, 294, 1868, 295, 264, 6423, 11, 597, 307, 264, 9461, 11, 341, 307, 264, 9461, 11, 1392, 30, 821, 307, 257, 18639, 294, 264, 10225, 1329, 11, 456, 307, 257, 1081, 300, 286, 829, 294, 264, 10225, 1329, 11, 456, 366, 1399, 9470, 11, 360, 291, 536, 552, 30, 639, 307, 411, 14483, 439, 11, 597, 1669, 257, 6367, 322, 1184, 1668, 300, 286, 980, 309, 281, 14483, 1436, 341, 307, 264, 2135, 3170, 337, 2572, 764, 11, 264, 2135, 3170, 295, 1164, 7829, 364, 2657, 490, 7101, 30], "avg_logprob": -0.4010416596543555, "compression_ratio": 1.8590308370044053, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2952.44, "end": 2952.8, "word": "Now,", "probability": 0.400390625}, {"start": 2952.9, "end": 2953.02, "word": " there", "probability": 0.76708984375}, {"start": 2953.02, "end": 2953.02, "word": " is", "probability": 0.60107421875}, {"start": 2953.02, "end": 2953.12, "word": " a", "probability": 0.95458984375}, {"start": 2953.12, "end": 2953.4, "word": " class", "probability": 0.939453125}, {"start": 2953.4, "end": 2953.5, "word": " that", "probability": 0.425048828125}, {"start": 2953.5, "end": 2953.6, "word": " we", "probability": 0.798828125}, {"start": 2953.6, "end": 2953.74, "word": " don't", "probability": 0.6710205078125}, {"start": 2953.74, "end": 2954.1, "word": " see,", "probability": 0.85888671875}, {"start": 2954.92, "end": 2955.3, "word": " in", "probability": 0.339599609375}, {"start": 2955.3, "end": 2955.42, "word": " front", "probability": 0.9423828125}, {"start": 2955.42, "end": 2955.52, "word": " of", "probability": 0.9658203125}, {"start": 2955.52, "end": 2955.62, "word": " the", "probability": 0.794921875}, {"start": 2955.62, "end": 2955.98, "word": " client,", "probability": 0.888671875}, {"start": 2956.52, "end": 2956.6, "word": " which", "probability": 0.64697265625}, {"start": 2956.6, "end": 2956.74, "word": " is", "probability": 0.94580078125}, {"start": 2956.74, "end": 2956.86, "word": " the", "probability": 0.51123046875}, {"start": 2956.86, "end": 2957.34, "word": " agent,", "probability": 0.81982421875}, {"start": 2957.88, "end": 2958.06, "word": " this", "probability": 0.36474609375}, {"start": 2958.06, "end": 2958.1, "word": " is", "probability": 0.9248046875}, {"start": 2958.1, "end": 2958.22, "word": " the", "probability": 0.86376953125}, {"start": 2958.22, "end": 2958.56, "word": " agent,", "probability": 0.92333984375}, {"start": 2958.9, "end": 2959.2, "word": " okay?", "probability": 0.327392578125}, {"start": 2959.44, "end": 2959.58, "word": " There", "probability": 0.5986328125}, {"start": 2959.58, "end": 2959.6, "word": " is", "probability": 0.8427734375}, {"start": 2959.6, "end": 2959.78, "word": " a", "probability": 0.5732421875}, {"start": 2959.78, "end": 2960.0, "word": " queue", "probability": 0.80419921875}, {"start": 2960.0, "end": 2960.52, "word": " in", "probability": 0.417236328125}, {"start": 2960.52, "end": 2960.64, "word": " the", "probability": 0.85107421875}, {"start": 2960.64, "end": 2960.82, "word": " array", "probability": 0.85595703125}, {"start": 2960.82, "end": 2961.18, "word": " list,", "probability": 0.55322265625}, {"start": 2961.7, "end": 2961.84, "word": " there", "probability": 0.7509765625}, {"start": 2961.84, "end": 2961.9, "word": " is", "probability": 0.92578125}, {"start": 2961.9, "end": 2961.96, "word": " a", "probability": 0.93408203125}, {"start": 2961.96, "end": 2962.32, "word": " place", "probability": 0.91064453125}, {"start": 2962.32, "end": 2962.48, "word": " that", "probability": 0.40625}, {"start": 2962.48, "end": 2962.52, "word": " I", "probability": 0.5673828125}, {"start": 2962.52, "end": 2962.7, "word": " put", "probability": 0.6689453125}, {"start": 2962.7, "end": 2962.8, "word": " in", "probability": 0.89208984375}, {"start": 2962.8, "end": 2962.88, "word": " the", "probability": 0.88525390625}, {"start": 2962.88, "end": 2963.06, "word": " array", "probability": 0.88916015625}, {"start": 2963.06, "end": 2963.38, "word": " list,", "probability": 0.91943359375}, {"start": 2963.68, "end": 2963.82, "word": " there", "probability": 0.84912109375}, {"start": 2963.82, "end": 2963.92, "word": " are", "probability": 0.58447265625}, {"start": 2963.92, "end": 2964.34, "word": " process", "probability": 0.93359375}, {"start": 2964.34, "end": 2964.9, "word": " orders,", "probability": 0.87548828125}, {"start": 2965.08, "end": 2965.2, "word": " do", "probability": 0.167236328125}, {"start": 2965.2, "end": 2965.2, "word": " you", "probability": 0.97216796875}, {"start": 2965.2, "end": 2965.46, "word": " see", "probability": 0.931640625}, {"start": 2965.46, "end": 2965.7, "word": " them?", "probability": 0.5810546875}, {"start": 2965.96, "end": 2966.32, "word": " This", "probability": 0.53369140625}, {"start": 2966.32, "end": 2966.42, "word": " is", "probability": 0.86962890625}, {"start": 2966.42, "end": 2966.52, "word": " like", "probability": 0.85595703125}, {"start": 2966.52, "end": 2966.98, "word": " execute", "probability": 0.6630859375}, {"start": 2966.98, "end": 2967.26, "word": " all,", "probability": 0.68505859375}, {"start": 2967.32, "end": 2967.4, "word": " which", "probability": 0.54541015625}, {"start": 2967.4, "end": 2967.58, "word": " makes", "probability": 0.35009765625}, {"start": 2967.58, "end": 2967.8, "word": " a", "probability": 0.8623046875}, {"start": 2967.8, "end": 2968.1, "word": " loop", "probability": 0.96435546875}, {"start": 2968.1, "end": 2968.82, "word": " on", "probability": 0.5693359375}, {"start": 2968.82, "end": 2969.24, "word": " each", "probability": 0.64892578125}, {"start": 2969.24, "end": 2969.54, "word": " order", "probability": 0.91162109375}, {"start": 2969.54, "end": 2969.64, "word": " that", "probability": 0.282470703125}, {"start": 2969.64, "end": 2969.7, "word": " I", "probability": 0.9130859375}, {"start": 2969.7, "end": 2969.9, "word": " tell", "probability": 0.52587890625}, {"start": 2969.9, "end": 2970.08, "word": " it", "probability": 0.83935546875}, {"start": 2970.08, "end": 2970.7, "word": " to", "probability": 0.88916015625}, {"start": 2970.7, "end": 2971.18, "word": " execute", "probability": 0.96484375}, {"start": 2971.18, "end": 2971.78, "word": " Because", "probability": 0.404052734375}, {"start": 2971.78, "end": 2971.98, "word": " this", "probability": 0.89794921875}, {"start": 2971.98, "end": 2972.02, "word": " is", "probability": 0.94775390625}, {"start": 2972.02, "end": 2972.1, "word": " the", "probability": 0.92333984375}, {"start": 2972.1, "end": 2972.26, "word": " main", "probability": 0.9091796875}, {"start": 2972.26, "end": 2972.6, "word": " method", "probability": 0.9423828125}, {"start": 2972.6, "end": 2972.76, "word": " for", "probability": 0.6962890625}, {"start": 2972.76, "end": 2973.38, "word": " final", "probability": 0.376953125}, {"start": 2973.38, "end": 2973.46, "word": " use,", "probability": 0.66748046875}, {"start": 2974.08, "end": 2974.2, "word": " the", "probability": 0.64208984375}, {"start": 2974.2, "end": 2974.38, "word": " main", "probability": 0.92138671875}, {"start": 2974.38, "end": 2974.62, "word": " method", "probability": 0.9453125}, {"start": 2974.62, "end": 2974.76, "word": " of", "probability": 0.34521484375}, {"start": 2974.76, "end": 2974.92, "word": " course", "probability": 0.947265625}, {"start": 2974.92, "end": 2975.22, "word": " creates", "probability": 0.1854248046875}, {"start": 2975.22, "end": 2975.42, "word": " an", "probability": 0.7080078125}, {"start": 2975.42, "end": 2975.66, "word": " object", "probability": 0.97900390625}, {"start": 2975.66, "end": 2975.84, "word": " from", "probability": 0.783203125}, {"start": 2975.84, "end": 2976.08, "word": " whom?", "probability": 0.51611328125}], "temperature": 1.0}, {"id": 131, "seek": 300062, "start": 2976.78, "end": 3000.62, "text": "From StockTrade, this is the class that executes everything, then it made a command to buy stock order and sell stock order, and each one sent him the stock to execute it, then it made an agent and went to the agent and told him to add the first order and the second order, the orders were stored, it wanted to execute them later, yes, I tell him I call this method which is", "tokens": [40305, 298, 17857, 14252, 762, 11, 341, 307, 264, 1508, 300, 4454, 1819, 1203, 11, 550, 309, 1027, 257, 5622, 281, 2256, 4127, 1668, 293, 3607, 4127, 1668, 11, 293, 1184, 472, 2279, 796, 264, 4127, 281, 14483, 309, 11, 550, 309, 1027, 364, 9461, 293, 1437, 281, 264, 9461, 293, 1907, 796, 281, 909, 264, 700, 1668, 293, 264, 1150, 1668, 11, 264, 9470, 645, 12187, 11, 309, 1415, 281, 14483, 552, 1780, 11, 2086, 11, 286, 980, 796, 286, 818, 341, 3170, 597, 307], "avg_logprob": -0.570043132222932, "compression_ratio": 1.8423645320197044, "no_speech_prob": 6.973743438720703e-06, "words": [{"start": 2976.78, "end": 2977.04, "word": "From", "probability": 0.521453857421875}, {"start": 2977.04, "end": 2977.74, "word": " StockTrade,", "probability": 0.5501302083333334}, {"start": 2977.94, "end": 2978.18, "word": " this", "probability": 0.52685546875}, {"start": 2978.18, "end": 2978.22, "word": " is", "probability": 0.5703125}, {"start": 2978.22, "end": 2978.3, "word": " the", "probability": 0.830078125}, {"start": 2978.3, "end": 2978.54, "word": " class", "probability": 0.93994140625}, {"start": 2978.54, "end": 2978.72, "word": " that", "probability": 0.80029296875}, {"start": 2978.72, "end": 2978.98, "word": " executes", "probability": 0.661865234375}, {"start": 2978.98, "end": 2979.4, "word": " everything,", "probability": 0.89892578125}, {"start": 2979.86, "end": 2980.36, "word": " then", "probability": 0.32958984375}, {"start": 2980.36, "end": 2980.52, "word": " it", "probability": 0.5830078125}, {"start": 2980.52, "end": 2980.68, "word": " made", "probability": 0.392578125}, {"start": 2980.68, "end": 2980.8, "word": " a", "probability": 0.72021484375}, {"start": 2980.8, "end": 2981.18, "word": " command", "probability": 0.84716796875}, {"start": 2981.18, "end": 2981.36, "word": " to", "probability": 0.1954345703125}, {"start": 2981.36, "end": 2981.52, "word": " buy", "probability": 0.87548828125}, {"start": 2981.52, "end": 2981.8, "word": " stock", "probability": 0.63720703125}, {"start": 2981.8, "end": 2982.22, "word": " order", "probability": 0.68359375}, {"start": 2982.22, "end": 2982.66, "word": " and", "probability": 0.73486328125}, {"start": 2982.66, "end": 2982.88, "word": " sell", "probability": 0.82080078125}, {"start": 2982.88, "end": 2983.2, "word": " stock", "probability": 0.61669921875}, {"start": 2983.2, "end": 2983.5, "word": " order,", "probability": 0.916015625}, {"start": 2983.6, "end": 2983.66, "word": " and", "probability": 0.51953125}, {"start": 2983.66, "end": 2983.78, "word": " each", "probability": 0.666015625}, {"start": 2983.78, "end": 2984.0, "word": " one", "probability": 0.59619140625}, {"start": 2984.0, "end": 2984.28, "word": " sent", "probability": 0.445556640625}, {"start": 2984.28, "end": 2984.42, "word": " him", "probability": 0.254638671875}, {"start": 2984.42, "end": 2985.0, "word": " the", "probability": 0.2471923828125}, {"start": 2985.0, "end": 2985.86, "word": " stock", "probability": 0.70263671875}, {"start": 2985.86, "end": 2986.32, "word": " to", "probability": 0.57958984375}, {"start": 2986.32, "end": 2986.68, "word": " execute", "probability": 0.72705078125}, {"start": 2986.68, "end": 2987.02, "word": " it,", "probability": 0.51806640625}, {"start": 2987.26, "end": 2987.5, "word": " then", "probability": 0.7138671875}, {"start": 2987.5, "end": 2987.6, "word": " it", "probability": 0.399169921875}, {"start": 2987.6, "end": 2987.74, "word": " made", "probability": 0.8193359375}, {"start": 2987.74, "end": 2987.88, "word": " an", "probability": 0.41943359375}, {"start": 2987.88, "end": 2988.24, "word": " agent", "probability": 0.90673828125}, {"start": 2988.24, "end": 2988.5, "word": " and", "probability": 0.392822265625}, {"start": 2988.5, "end": 2988.62, "word": " went", "probability": 0.49072265625}, {"start": 2988.62, "end": 2988.74, "word": " to", "probability": 0.9345703125}, {"start": 2988.74, "end": 2988.8, "word": " the", "probability": 0.697265625}, {"start": 2988.8, "end": 2989.08, "word": " agent", "probability": 0.91357421875}, {"start": 2989.08, "end": 2989.24, "word": " and", "probability": 0.86328125}, {"start": 2989.24, "end": 2989.4, "word": " told", "probability": 0.56689453125}, {"start": 2989.4, "end": 2989.52, "word": " him", "probability": 0.92236328125}, {"start": 2989.52, "end": 2989.62, "word": " to", "probability": 0.8544921875}, {"start": 2989.62, "end": 2989.72, "word": " add", "probability": 0.908203125}, {"start": 2989.72, "end": 2989.92, "word": " the", "probability": 0.748046875}, {"start": 2989.92, "end": 2990.5, "word": " first", "probability": 0.783203125}, {"start": 2990.5, "end": 2990.5, "word": " order", "probability": 0.95361328125}, {"start": 2990.5, "end": 2990.68, "word": " and", "probability": 0.85888671875}, {"start": 2990.68, "end": 2990.94, "word": " the", "probability": 0.483154296875}, {"start": 2990.94, "end": 2991.48, "word": " second", "probability": 0.83251953125}, {"start": 2991.48, "end": 2992.26, "word": " order,", "probability": 0.7685546875}, {"start": 2992.28, "end": 2992.78, "word": " the", "probability": 0.328857421875}, {"start": 2992.78, "end": 2993.16, "word": " orders", "probability": 0.748046875}, {"start": 2993.16, "end": 2993.16, "word": " were", "probability": 0.44384765625}, {"start": 2993.16, "end": 2993.16, "word": " stored,", "probability": 0.440673828125}, {"start": 2993.78, "end": 2994.2, "word": " it", "probability": 0.339599609375}, {"start": 2994.2, "end": 2994.34, "word": " wanted", "probability": 0.5087890625}, {"start": 2994.34, "end": 2994.42, "word": " to", "probability": 0.96142578125}, {"start": 2994.42, "end": 2994.62, "word": " execute", "probability": 0.89697265625}, {"start": 2994.62, "end": 2994.78, "word": " them", "probability": 0.84912109375}, {"start": 2994.78, "end": 2995.16, "word": " later,", "probability": 0.89794921875}, {"start": 2996.0, "end": 2996.24, "word": " yes,", "probability": 0.2191162109375}, {"start": 2996.38, "end": 2996.46, "word": " I", "probability": 0.76806640625}, {"start": 2996.46, "end": 2996.64, "word": " tell", "probability": 0.240478515625}, {"start": 2996.64, "end": 2997.02, "word": " him", "probability": 0.697265625}, {"start": 2997.02, "end": 2998.44, "word": " I", "probability": 0.354736328125}, {"start": 2998.44, "end": 2998.7, "word": " call", "probability": 0.258056640625}, {"start": 2998.7, "end": 2999.04, "word": " this", "probability": 0.8544921875}, {"start": 2999.04, "end": 2999.42, "word": " method", "probability": 0.94873046875}, {"start": 2999.42, "end": 3000.3, "word": " which", "probability": 0.55810546875}, {"start": 3000.3, "end": 3000.62, "word": " is", "probability": 0.939453125}], "temperature": 1.0}, {"id": 132, "seek": 300928, "start": 3002.96, "end": 3009.28, "text": "process orders in order to execute them later on. This way, we were able to make these execution commands, which were originally method calls", "tokens": [41075, 9470, 294, 1668, 281, 14483, 552, 1780, 322, 13, 639, 636, 11, 321, 645, 1075, 281, 652, 613, 15058, 16901, 11, 597, 645, 7993, 3170, 5498], "avg_logprob": -0.7388392835855484, "compression_ratio": 1.3177570093457944, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 3002.96, "end": 3003.34, "word": "process", "probability": 0.167724609375}, {"start": 3003.34, "end": 3003.74, "word": " orders", "probability": 0.486572265625}, {"start": 3003.74, "end": 3003.96, "word": " in", "probability": 0.11834716796875}, {"start": 3003.96, "end": 3003.96, "word": " order", "probability": 0.88623046875}, {"start": 3003.96, "end": 3004.04, "word": " to", "probability": 0.93359375}, {"start": 3004.04, "end": 3004.28, "word": " execute", "probability": 0.385986328125}, {"start": 3004.28, "end": 3004.42, "word": " them", "probability": 0.8193359375}, {"start": 3004.42, "end": 3004.7, "word": " later", "probability": 0.6435546875}, {"start": 3004.7, "end": 3005.0, "word": " on.", "probability": 0.362548828125}, {"start": 3005.22, "end": 3005.4, "word": " This", "probability": 0.1622314453125}, {"start": 3005.4, "end": 3005.44, "word": " way,", "probability": 0.63330078125}, {"start": 3005.64, "end": 3005.64, "word": " we", "probability": 0.875}, {"start": 3005.64, "end": 3005.88, "word": " were", "probability": 0.374755859375}, {"start": 3005.88, "end": 3005.92, "word": " able", "probability": 0.939453125}, {"start": 3005.92, "end": 3006.46, "word": " to", "probability": 0.9599609375}, {"start": 3006.46, "end": 3006.56, "word": " make", "probability": 0.11181640625}, {"start": 3006.56, "end": 3006.58, "word": " these", "probability": 0.2900390625}, {"start": 3006.58, "end": 3007.3, "word": " execution", "probability": 0.67724609375}, {"start": 3007.3, "end": 3007.7, "word": " commands,", "probability": 0.47705078125}, {"start": 3007.74, "end": 3007.88, "word": " which", "probability": 0.869140625}, {"start": 3007.88, "end": 3008.5, "word": " were", "probability": 0.5234375}, {"start": 3008.5, "end": 3008.5, "word": " originally", "probability": 0.5888671875}, {"start": 3008.5, "end": 3008.88, "word": " method", "probability": 0.8271484375}, {"start": 3008.88, "end": 3009.28, "word": " calls", "probability": 0.837890625}], "temperature": 1.0}, {"id": 133, "seek": 303329, "start": 3010.41, "end": 3033.29, "text": "How do we store them to execute them later? We converted them to java objects and stored them in array to execute them later without knowing the details of execution. Just loop and execute. Ok guys? This is a summary of command pattern. Next time we will take a bigger example than this which shows us how to execute undo and redo using command pattern. God bless you all.", "tokens": [6462, 360, 321, 3531, 552, 281, 14483, 552, 1780, 30, 492, 16424, 552, 281, 361, 4061, 6565, 293, 12187, 552, 294, 10225, 281, 14483, 552, 1780, 1553, 5276, 264, 4365, 295, 15058, 13, 1449, 6367, 293, 14483, 13, 3477, 1074, 30, 639, 307, 257, 12691, 295, 5622, 5102, 13, 3087, 565, 321, 486, 747, 257, 3801, 1365, 813, 341, 597, 3110, 505, 577, 281, 14483, 23779, 293, 29956, 1228, 5622, 5102, 13, 1265, 5227, 291, 439, 13], "avg_logprob": -0.4979967780602284, "compression_ratio": 1.6832579185520362, "no_speech_prob": 4.106760025024414e-05, "words": [{"start": 3010.41, "end": 3010.71, "word": "How", "probability": 0.271240234375}, {"start": 3010.71, "end": 3010.83, "word": " do", "probability": 0.3955078125}, {"start": 3010.83, "end": 3010.95, "word": " we", "probability": 0.87451171875}, {"start": 3010.95, "end": 3011.27, "word": " store", "probability": 0.68896484375}, {"start": 3011.27, "end": 3011.43, "word": " them", "probability": 0.4521484375}, {"start": 3011.43, "end": 3011.63, "word": " to", "probability": 0.327392578125}, {"start": 3011.63, "end": 3011.97, "word": " execute", "probability": 0.2125244140625}, {"start": 3011.97, "end": 3012.13, "word": " them", "probability": 0.5615234375}, {"start": 3012.13, "end": 3012.25, "word": " later?", "probability": 0.9091796875}, {"start": 3012.33, "end": 3012.47, "word": " We", "probability": 0.6962890625}, {"start": 3012.47, "end": 3012.77, "word": " converted", "probability": 0.1834716796875}, {"start": 3012.77, "end": 3012.99, "word": " them", "probability": 0.82080078125}, {"start": 3012.99, "end": 3013.11, "word": " to", "probability": 0.708984375}, {"start": 3013.11, "end": 3013.35, "word": " java", "probability": 0.7451171875}, {"start": 3013.35, "end": 3013.81, "word": " objects", "probability": 0.91943359375}, {"start": 3013.81, "end": 3014.83, "word": " and", "probability": 0.5224609375}, {"start": 3014.83, "end": 3015.15, "word": " stored", "probability": 0.724609375}, {"start": 3015.15, "end": 3015.49, "word": " them", "probability": 0.857421875}, {"start": 3015.49, "end": 3015.57, "word": " in", "probability": 0.796875}, {"start": 3015.57, "end": 3015.85, "word": " array", "probability": 0.52880859375}, {"start": 3015.85, "end": 3016.13, "word": " to", "probability": 0.673828125}, {"start": 3016.13, "end": 3016.75, "word": " execute", "probability": 0.7509765625}, {"start": 3016.75, "end": 3016.89, "word": " them", "probability": 0.861328125}, {"start": 3016.89, "end": 3018.01, "word": " later", "probability": 0.8837890625}, {"start": 3018.01, "end": 3018.45, "word": " without", "probability": 0.5146484375}, {"start": 3018.45, "end": 3018.89, "word": " knowing", "probability": 0.8046875}, {"start": 3018.89, "end": 3019.05, "word": " the", "probability": 0.6640625}, {"start": 3019.05, "end": 3019.39, "word": " details", "probability": 0.76806640625}, {"start": 3019.39, "end": 3019.93, "word": " of", "probability": 0.89013671875}, {"start": 3019.93, "end": 3020.35, "word": " execution.", "probability": 0.59375}, {"start": 3020.45, "end": 3020.63, "word": " Just", "probability": 0.428466796875}, {"start": 3020.63, "end": 3021.03, "word": " loop", "probability": 0.8359375}, {"start": 3021.03, "end": 3021.43, "word": " and", "probability": 0.8466796875}, {"start": 3021.43, "end": 3021.79, "word": " execute.", "probability": 0.8056640625}, {"start": 3022.25, "end": 3022.57, "word": " Ok", "probability": 0.1865234375}, {"start": 3022.57, "end": 3022.95, "word": " guys?", "probability": 0.62744140625}, {"start": 3023.57, "end": 3023.77, "word": " This", "probability": 0.6162109375}, {"start": 3023.77, "end": 3023.85, "word": " is", "probability": 0.7431640625}, {"start": 3023.85, "end": 3023.97, "word": " a", "probability": 0.363037109375}, {"start": 3023.97, "end": 3024.13, "word": " summary", "probability": 0.38916015625}, {"start": 3024.13, "end": 3024.29, "word": " of", "probability": 0.875}, {"start": 3024.29, "end": 3024.51, "word": " command", "probability": 0.478271484375}, {"start": 3024.51, "end": 3024.87, "word": " pattern.", "probability": 0.76953125}, {"start": 3024.95, "end": 3025.05, "word": " Next", "probability": 0.86083984375}, {"start": 3025.05, "end": 3025.21, "word": " time", "probability": 0.84619140625}, {"start": 3025.21, "end": 3025.61, "word": " we", "probability": 0.408935546875}, {"start": 3025.61, "end": 3025.63, "word": " will", "probability": 0.6943359375}, {"start": 3025.63, "end": 3025.79, "word": " take", "probability": 0.720703125}, {"start": 3025.79, "end": 3025.89, "word": " a", "probability": 0.80126953125}, {"start": 3025.89, "end": 3026.63, "word": " bigger", "probability": 0.79052734375}, {"start": 3026.63, "end": 3026.63, "word": " example", "probability": 0.96240234375}, {"start": 3026.63, "end": 3027.45, "word": " than", "probability": 0.27587890625}, {"start": 3027.45, "end": 3027.81, "word": " this", "probability": 0.87548828125}, {"start": 3027.81, "end": 3028.31, "word": " which", "probability": 0.27685546875}, {"start": 3028.31, "end": 3028.71, "word": " shows", "probability": 0.53076171875}, {"start": 3028.71, "end": 3028.95, "word": " us", "probability": 0.335205078125}, {"start": 3028.95, "end": 3029.17, "word": " how", "probability": 0.923828125}, {"start": 3029.17, "end": 3029.33, "word": " to", "probability": 0.923828125}, {"start": 3029.33, "end": 3029.57, "word": " execute", "probability": 0.5361328125}, {"start": 3029.57, "end": 3029.97, "word": " undo", "probability": 0.76025390625}, {"start": 3029.97, "end": 3030.19, "word": " and", "probability": 0.87744140625}, {"start": 3030.19, "end": 3030.47, "word": " redo", "probability": 0.953125}, {"start": 3030.47, "end": 3031.13, "word": " using", "probability": 0.54638671875}, {"start": 3031.13, "end": 3032.09, "word": " command", "probability": 0.7353515625}, {"start": 3032.09, "end": 3032.45, "word": " pattern.", "probability": 0.822265625}, {"start": 3032.87, "end": 3033.05, "word": " God", "probability": 0.341552734375}, {"start": 3033.05, "end": 3033.17, "word": " bless", "probability": 0.822265625}, {"start": 3033.17, "end": 3033.25, "word": " you", "probability": 0.9130859375}, {"start": 3033.25, "end": 3033.29, "word": " all.", "probability": 0.53515625}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 3033.91925, "duration_after_vad": 2898.033124999982} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/iFbuKNu9BGs.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/iFbuKNu9BGs.srt new file mode 100644 index 0000000000000000000000000000000000000000..fe25f6a6132eb01ba2ce490ebeab51e19f09a90b --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/iFbuKNu9BGs.srt @@ -0,0 +1,1947 @@ + +1 +00:00:06,120 --> 00:00:08,540 +Okay guys, peace be upon you. This lecture, God + +2 +00:00:08,540 --> 00:00:11,380 +willing, will take a new design pattern. In the + +3 +00:00:11,380 --> 00:00:13,820 +previous lecture, we finished the factory design + +4 +00:00:13,820 --> 00:00:16,680 +pattern. We said that the factory is one of the + +5 +00:00:16,680 --> 00:00:18,520 +creation patterns and has a relationship with the + +6 +00:00:18,520 --> 00:00:20,900 +construction of objects. The main goal is that it + +7 +00:00:20,900 --> 00:00:22,960 +combines the process of constructing objects in + +8 +00:00:22,960 --> 00:00:26,220 +one class on the basis of change. If there is a + +9 +00:00:26,220 --> 00:00:29,820 +change in one place, whatever the type of objects + +10 +00:00:29,820 --> 00:00:31,780 +they create, in the end, it returns an object of + +11 +00:00:31,780 --> 00:00:34,960 +the type of interface or superclass. This means + +12 +00:00:34,960 --> 00:00:37,420 +that the client does not need to know what types + +13 +00:00:37,420 --> 00:00:40,140 +of objects I have, he only knows the type of + +14 +00:00:40,140 --> 00:00:42,200 +superclass. This means that even if I add + +15 +00:00:42,200 --> 00:00:45,420 +additional objects, the code of the client will + +16 +00:00:45,420 --> 00:00:47,280 +not change. Because in the end, he sees that they + +17 +00:00:47,280 --> 00:00:49,620 +are the type of app. And we also saw in the + +18 +00:00:49,620 --> 00:00:53,120 +previous lecture a new design for the factory + +19 +00:00:53,120 --> 00:00:55,980 +using the Reflection API, which actually makes + +20 +00:00:59,730 --> 00:01:03,490 +read the class and create an object out of it + +21 +00:01:03,490 --> 00:01:09,520 +without having to modify anything the factory, and + +22 +00:01:09,520 --> 00:01:13,040 +we modified the shapes program so that it uses the + +23 +00:01:13,040 --> 00:01:15,560 +factory pattern and reaches a stage where it + +24 +00:01:15,560 --> 00:01:18,320 +doesn't need any modification of any line of code. + +25 +00:01:18,540 --> 00:01:21,100 +And this is the idea of how plugins are made, how + +26 +00:01:21,100 --> 00:01:23,520 +programs are made, for example, an update is made + +27 +00:01:23,520 --> 00:01:28,140 +to a specific program. An update is not a complete + +28 +00:01:28,140 --> 00:01:31,450 +program, it is a new part added to the program. In + +29 +00:01:31,450 --> 00:01:32,950 +this addition, you notice that it is installed on + +30 +00:01:32,950 --> 00:01:35,770 +the program and it starts working without needing + +31 +00:01:35,770 --> 00:01:38,630 +to modify the existing code that is downloaded on + +32 +00:01:38,630 --> 00:01:41,750 +the program, for example, on the phone or on the + +33 +00:01:41,750 --> 00:01:45,810 +device of the client. Okay, we are still in the topic + +34 +00:01:45,810 --> 00:01:48,270 +of creation patterns, and today I will explain a + +35 +00:01:48,270 --> 00:01:50,130 +new design pattern, which is the simplest design + +36 +00:01:50,130 --> 00:01:52,650 +pattern available with us, it is called Builder + +37 +00:01:52,650 --> 00:01:54,950 +Design Pattern. It is explained in the slides, not + +38 +00:01:54,950 --> 00:01:57,390 +directly after the factory, I mean the design + +39 +00:01:57,390 --> 00:02:01,990 +pattern, if you look at the slides, you will find + +40 +00:02:01,990 --> 00:02:06,020 +it before Name Design Patterns, Factory Method and + +41 +00:02:06,020 --> 00:02:07,380 +Singleton. We will come back to them in the next + +42 +00:02:07,380 --> 00:02:11,400 +lecture. But today we will apply a simple pattern + +43 +00:02:11,400 --> 00:02:14,520 +called Builder Design Pattern. What is Builder? + +44 +00:02:15,910 --> 00:02:19,970 +The builder is a creation design pattern that has + +45 +00:02:19,970 --> 00:02:22,250 +to do with the construction of objects. What is + +46 +00:02:22,250 --> 00:02:26,950 +the problem solved by the builder pattern? This + +47 +00:02:26,950 --> 00:02:29,730 +pattern was introduced to solve some of the + +48 +00:02:29,730 --> 00:02:33,090 +problems with factories when the object contains a + +49 +00:02:33,090 --> 00:02:36,620 +lot of attributes. For example, use it when you + +50 +00:02:36,620 --> 00:02:39,460 +have too many arguments to pass from the client + +51 +00:02:39,460 --> 00:02:41,780 +program via the constructor that can be error + +52 +00:02:41,780 --> 00:02:44,560 +prone because most of the time the type of + +53 +00:02:44,560 --> 00:02:48,380 +arguments are seen from client side, it's hard to + +54 +00:02:48,380 --> 00:02:50,880 +maintain the order of the argument, some of the + +55 +00:02:50,880 --> 00:02:52,900 +parameters might be optional, but using a + +56 +00:02:52,900 --> 00:02:55,480 +constructor, we are forced to send all the + +57 +00:02:55,480 --> 00:02:57,880 +parameters. Okay, this speech will not be very + +58 +00:02:57,880 --> 00:03:00,400 +comprehensive unless we see a practical example + +59 +00:03:00,400 --> 00:03:02,400 +that explains this problem. + +60 +00:03:07,880 --> 00:03:11,560 +Okay, to explain the existing problem and then + +61 +00:03:11,560 --> 00:03:13,940 +propose its solution, let's say I have a class, + +62 +00:03:14,900 --> 00:03:18,860 +for example, class student, okay? The student has + +63 +00:03:18,860 --> 00:03:22,840 +a large number of parameters, let's say first + +64 +00:03:22,840 --> 00:03:27,740 +name, last name, department, + +65 +00:03:29,780 --> 00:03:39,830 +faculty, age, GPA, email, No, these are strings, + +66 +00:03:40,310 --> 00:03:48,430 +email, mobile number, float, + +67 +00:03:48,950 --> 00:03:55,750 +GPA, int age, and so on. These are all attributes + +68 +00:03:55,750 --> 00:03:59,850 +specific to the student. Let's make a setter and + +69 +00:03:59,850 --> 00:04:00,470 +getter for them. + +70 +00:04:13,120 --> 00:04:16,260 +Okay, now if I want to use this class + +71 +00:04:32,630 --> 00:04:36,690 +The class student that I have, there is no + +72 +00:04:36,690 --> 00:04:38,930 +constructor except default constructor, right or + +73 +00:04:38,930 --> 00:04:44,470 +not? So to create a student, I say student as new + +74 +00:04:44,470 --> 00:04:45,470 +student + +75 +00:04:48,270 --> 00:04:52,330 +I use the setters to set the attributes of the + +76 +00:04:52,330 --> 00:04:56,850 +student. If we assume that the student is a + +77 +00:04:56,850 --> 00:05:01,270 +constructor based on the fact that most of this + +78 +00:05:01,270 --> 00:05:05,730 +information is required when creating. In some + +79 +00:05:05,730 --> 00:05:10,410 +cases, I have classes in my library. When I create + +80 +00:05:10,410 --> 00:05:13,130 +an object from it, all the parameters must be + +81 +00:05:13,130 --> 00:05:15,950 +present. In this case, you need to create a + +82 +00:05:15,950 --> 00:05:21,250 +constructor. Okay, we will add a constructor. We can + +83 +00:05:21,250 --> 00:05:25,690 +add Netbeans + +84 +00:05:25,690 --> 00:05:30,950 +to Android. Insert code. Okay, this is a constructor. + +85 +00:05:37,330 --> 00:05:41,870 +It will select all and add a constructor that + +86 +00:05:41,870 --> 00:05:45,210 +makes set to all parameters. Now I have a + +87 +00:05:45,210 --> 00:05:49,250 +constructor, but it made an error because it left + +88 +00:05:49,250 --> 00:05:53,850 +the argument constructor. To add all attributes, I + +89 +00:05:53,850 --> 00:05:58,430 +found a problem, this constructor takes data a lot + +90 +00:05:58,430 --> 00:06:02,090 +of data. So I have to remember the type of data + +91 +00:06:02,090 --> 00:06:05,170 +and arrange them. For example, I have 5 or 6 + +92 +00:06:05,170 --> 00:06:07,590 +strings. I have to know which is the first, second + +93 +00:06:07,590 --> 00:06:09,410 +and third string, which is the integer and which + +94 +00:06:09,410 --> 00:06:12,210 +is the float. So building the object strings + +95 +00:06:12,210 --> 00:06:14,450 +became difficult for me. I had to go to the + +96 +00:06:14,450 --> 00:06:17,370 +documentation and see all the information to + +97 +00:06:17,370 --> 00:06:22,310 +justify them all. Of course, if there was no + +98 +00:06:22,310 --> 00:06:24,550 +constructor, it would have been easier. Because + +99 +00:06:24,550 --> 00:06:28,250 +the setters. It's easier to use it because the set + +100 +00:06:28,250 --> 00:06:30,070 +doesn't explain itself, right or wrong? When you + +101 +00:06:30,070 --> 00:06:32,510 +tell me set age, I understand what it is. Set + +102 +00:06:32,510 --> 00:06:34,970 +faculty, I understand what it is. Set email, okay? + +103 +00:06:35,490 --> 00:06:37,090 +But the problem here is that someone says, okay, + +104 +00:06:37,150 --> 00:06:39,730 +why don't you leave it blank and teach them? No, + +105 +00:06:40,010 --> 00:06:42,630 +here the library wants the object not to be built + +106 +00:06:42,630 --> 00:06:47,120 +if all these data exist. Okay, this is a + +107 +00:06:47,120 --> 00:06:49,240 +requirement and the object should be there. And + +108 +00:06:49,240 --> 00:06:50,840 +the problem is that if it becomes a requirement, + +109 +00:06:51,220 --> 00:06:53,840 +it will be difficult to create the object because + +110 +00:06:53,840 --> 00:06:55,600 +the constructor uses the setter methods. The + +111 +00:06:55,600 --> 00:06:58,480 +constructor does not explain every argument, what + +112 +00:06:58,480 --> 00:07:00,180 +it means, right or wrong, or what type it is. You + +113 +00:07:00,180 --> 00:07:02,800 +have to go back to the documentation. So this is + +114 +00:07:02,800 --> 00:07:05,800 +the problem that exists in some cases, that it is + +115 +00:07:05,800 --> 00:07:08,020 +difficult to create the object because the + +116 +00:07:08,020 --> 00:07:11,420 +constructor requires a lot of parameters. So you + +117 +00:07:11,420 --> 00:07:12,800 +have to know what are the types of these + +118 +00:07:12,800 --> 00:07:16,700 +parameters and how to arrange them. Okay? Some + +119 +00:07:16,700 --> 00:07:18,560 +parameters might be mandatory and some might be + +120 +00:07:18,560 --> 00:07:21,300 +optional. But even optional parameters should be + +121 +00:07:21,300 --> 00:07:23,800 +given value. For example, if you want cash, you + +122 +00:07:23,800 --> 00:07:25,560 +should give it value. The important thing is that + +123 +00:07:25,560 --> 00:07:27,340 +you should know all the parameters. In these + +124 +00:07:27,340 --> 00:07:30,480 +cases, it is difficult to build an object because + +125 +00:07:30,480 --> 00:07:33,580 +each structure requires many parameters. We can + +126 +00:07:33,580 --> 00:07:36,640 +make the builder pattern that makes it easier for + +127 +00:07:36,640 --> 00:07:39,380 +me to build the object. Because this object needs + +128 +00:07:39,380 --> 00:07:42,300 +many parameters. Do you know what is the problem + +129 +00:07:42,300 --> 00:07:44,920 +with this solution? Every design pattern has a + +130 +00:07:44,920 --> 00:07:47,380 +specific problem. This specific problem that we + +131 +00:07:47,380 --> 00:07:50,660 +will solve today is that I have a library with + +132 +00:07:50,660 --> 00:07:54,060 +some objects and a constructor and the constructor + +133 +00:07:54,060 --> 00:07:57,040 +takes a lot of data. How can I make it easier for + +134 +00:07:57,040 --> 00:07:59,720 +the client to create an object from the class + +135 +00:07:59,720 --> 00:08:02,840 +where the constructor has many parameters? This is + +136 +00:08:02,840 --> 00:08:05,160 +the problem that we will solve. Is it clear? Okay, + +137 +00:08:05,220 --> 00:08:07,620 +let's go to the solution. Now, the solution will + +138 +00:08:07,620 --> 00:08:12,100 +depend on something. The solution depends on the + +139 +00:08:12,100 --> 00:08:14,560 +fact that the setter methods are easier to use + +140 +00:08:14,560 --> 00:08:20,960 +than the constructor. I wish I could make the + +141 +00:08:20,960 --> 00:08:25,140 +student empty and then tell him s.set blah blah + +142 +00:08:25,140 --> 00:08:28,020 +blah and fill in the data. It is true that you need + +143 +00:08:28,020 --> 00:08:31,140 +7, 8 lines or 10 or 20 lines to fill in the data + +144 +00:08:31,140 --> 00:08:35,760 +but at least this is a concept, right? If this + +145 +00:08:35,760 --> 00:08:39,780 +library or this class is not made by you and you + +146 +00:08:39,780 --> 00:08:41,380 +took out the setter methods, you will understand + +147 +00:08:41,380 --> 00:08:44,500 +each one's meaning. But the problem is that + +148 +00:08:44,500 --> 00:08:48,200 +setters cannot be used unless the object is + +149 +00:08:48,200 --> 00:08:53,360 +present. Right or wrong? I mean, we got into a + +150 +00:08:53,360 --> 00:08:55,580 +problem that the object, in order to run, it needs + +151 +00:08:55,580 --> 00:08:58,740 +a lot of parameters. So you cannot use the setters + +152 +00:08:59,590 --> 00:09:02,150 +before creating the object because our whole idea + +153 +00:09:02,150 --> 00:09:04,530 +in the builder pattern. We want to find a way to + +154 +00:09:04,530 --> 00:09:07,990 +make it possible for us to use the setters. And + +155 +00:09:07,990 --> 00:09:12,050 +then create the object. The opposite. Okay? I mean, + +156 +00:09:12,190 --> 00:09:14,750 +why do I need to use the setters? To fill the data + +157 +00:09:14,750 --> 00:09:20,690 +step by step. Then I say what? Create. Okay? But can + +158 +00:09:20,690 --> 00:09:24,570 +I do this now? No, because first I need to have an + +159 +00:09:24,570 --> 00:09:27,850 +object. So that I can use the setters. How can we + +160 +00:09:27,850 --> 00:09:31,880 +activate the setters? To fill the data step by step + +161 +00:09:31,880 --> 00:09:34,120 +because the setters are excellent and explain + +162 +00:09:34,120 --> 00:09:37,280 +exactly what each parameter means, and then after + +163 +00:09:37,280 --> 00:09:40,360 +filling the setters, we say to create the object. + +164 +00:09:40,460 --> 00:09:44,620 +So we reverse the verse. Not to create the object + +165 +00:09:44,620 --> 00:09:46,840 +and then use the setters. Yes, because creating + +166 +00:09:46,840 --> 00:09:48,420 +the object is difficult in the case of this verse + +167 +00:09:48,420 --> 00:09:50,540 +because it requires a lot of parameters. We use + +168 +00:09:50,540 --> 00:09:53,380 +the setters, fill the data step by step, and then + +169 +00:09:53,380 --> 00:09:59,290 +create the object. We reverse it. This is the + +170 +00:09:59,290 --> 00:10:01,730 +builder pattern that we are going to use. In order + +171 +00:10:01,730 --> 00:10:04,190 +to implement this solution, we need to do the + +172 +00:10:04,190 --> 00:10:09,370 +following. Go to the class student. The first step + +173 +00:10:09,370 --> 00:10:14,710 +is to go to the constructor and make it private. + +174 +00:10:14,870 --> 00:10:18,370 +What does this mean? This means that no one will + +175 +00:10:18,370 --> 00:10:20,910 +be able to create an object from the student. + +176 +00:10:22,110 --> 00:10:24,730 +There is no empty constructor, we stopped the + +177 +00:10:24,730 --> 00:10:30,150 +construction of object student in the end, down + +178 +00:10:30,150 --> 00:10:33,970 +here we + +179 +00:10:33,970 --> 00:10:36,770 +go to class student and create the following + +180 +00:10:36,770 --> 00:10:43,610 +public static class + +181 +00:10:43,610 --> 00:10:48,030 +builder + +182 +00:10:49,530 --> 00:10:52,790 +I think this static is not necessary. public class + +183 +00:10:52,790 --> 00:10:56,950 +builder. What does it mean? We made inside the + +184 +00:10:56,950 --> 00:11:01,150 +class student an inner class, its name is builder + +185 +00:11:01,150 --> 00:11:06,530 +then all the attributes of the student, you see + +186 +00:11:06,530 --> 00:11:06,850 +them? + +187 +00:11:11,330 --> 00:11:12,450 +Take a copy of them + +188 +00:11:18,100 --> 00:11:29,500 +And we put it in the builder. Okay, + +189 +00:11:32,060 --> 00:11:35,760 +so far it is understood. What we did now, let's + +190 +00:11:35,760 --> 00:11:41,440 +draw this one. I have a class Student + +191 +00:11:43,400 --> 00:11:47,620 +The class student has a group of attributes 1,2,3 + +192 +00:11:47,620 --> 00:11:52,560 +,4 these are attributes. + +193 +00:11:52,560 --> 00:11:57,940 +Inside the class student, I went and made a class + +223 +00:14:15,100 --> 00:14:19,420 +all of them the student wants all of them so they + +224 +00:14:19,420 --> 00:14:23,500 +want to put all of them first name last name + +225 +00:14:23,500 --> 00:14:32,740 +department faculty email mobile number + +226 +00:14:42,170 --> 00:14:46,970 +GPA GPA Age Okay, + +227 +00:14:47,170 --> 00:14:51,590 +I will create a student and a man. Of course, you + +228 +00:14:51,590 --> 00:14:55,250 +may not understand what happened yet. + +229 +00:14:56,630 --> 00:14:58,070 +Okay, we will go to + +230 +00:15:00,750 --> 00:15:03,670 +On the main method, we see the usage to see what + +231 +00:15:03,670 --> 00:15:05,190 +is going to happen or what is the use of the + +232 +00:15:05,190 --> 00:15:08,670 +builder that we made Did you notice that the code + +233 +00:15:08,670 --> 00:15:11,740 +is no longer prohibited? Because the constructor + +234 +00:15:11,740 --> 00:15:13,860 +is private, it will never be able to create a + +235 +00:15:13,860 --> 00:15:15,740 +student. So how will we be able to create a + +236 +00:15:15,740 --> 00:15:18,480 +student? They say, wait, did you come to create a + +237 +00:15:18,480 --> 00:15:21,820 +student? You can't create it directly, the + +238 +00:15:21,820 --> 00:15:23,860 +constructor is gone. There is a secretary who is + +239 +00:15:23,860 --> 00:15:26,260 +responsible for getting to whom? To the student. + +240 +00:15:26,380 --> 00:15:28,540 +Who is the secretary of this builder? You must + +241 +00:15:28,540 --> 00:15:31,120 +first connect to whom? To the builder. So we go + +242 +00:15:31,120 --> 00:15:34,300 +and tell him student dot builder. To create a + +243 +00:15:34,300 --> 00:15:37,780 +student, you must first create a builder equal to + +244 +00:15:37,780 --> 00:15:39,580 +new student + +245 +00:15:44,900 --> 00:15:51,940 +student.builder student + +246 +00:15:51,940 --> 00:16:04,280 +.builder + +247 +00:16:04,280 --> 00:16:11,940 +student.builder student.builder student.builder + +248 +00:16:16,070 --> 00:16:17,630 +What will you find there? You will find the set + +249 +00:16:17,630 --> 00:16:20,210 +methods There is no such thing as set methods, set + +250 +00:16:20,210 --> 00:16:23,270 +methods explain themselves, right or wrong? For + +251 +00:16:23,270 --> 00:16:28,470 +example, set first name and you say Ahmed and you + +252 +00:16:28,470 --> 00:16:33,390 +have to do what? set last name, this is Ali and + +253 +00:16:33,390 --> 00:16:38,690 +you fill in the data through the builder set email + +254 +00:16:38,690 --> 00:16:42,850 +anything at anything builder + +255 +00:16:49,630 --> 00:16:55,670 +Builder, Set, Department, + +256 +00:16:56,130 --> 00:16:59,950 +Software Development. It fills all the data one by + +257 +00:16:59,950 --> 00:17:03,010 +one. And then, we don't want Builder. What do we + +258 +00:17:03,010 --> 00:17:05,610 +want in the end? We want Student. You go to + +259 +00:17:05,610 --> 00:17:09,370 +Builder itself, and you say dot, and you have a + +260 +00:17:09,370 --> 00:17:11,290 +method called Create. + +261 +00:17:13,650 --> 00:17:17,290 +.create what inside create is called? the + +262 +00:17:17,290 --> 00:17:19,190 +constructor of the student, I don't see it, it is + +263 +00:17:19,190 --> 00:17:22,290 +the one who creates it and this I return to + +264 +00:17:22,290 --> 00:17:26,130 +student + +265 +00:17:26,130 --> 00:17:33,750 +s and then I say for confirmation s + +266 +00:17:33,750 --> 00:17:37,650 +.get + +267 +00:17:37,650 --> 00:17:39,070 +first name + +268 +00:17:43,670 --> 00:17:49,430 +I stopped using the builder instead of using the + +269 +00:17:49,430 --> 00:17:53,590 +student. I give him all the data I want through + +270 +00:17:53,590 --> 00:17:56,190 +the setter methods. When I am sure that I have + +271 +00:17:56,190 --> 00:17:59,850 +filled all the data, I tell him to create the + +272 +00:17:59,850 --> 00:18:05,410 +student. There is another small problem. Notice + +273 +00:18:05,410 --> 00:18:11,020 +that I created a method. This is like a barrier + +274 +00:18:11,020 --> 00:18:15,140 +before I can reach the student. It's like it asks + +275 +00:18:15,140 --> 00:18:18,780 +for data one by one. It tells me that this student + +276 +00:18:18,780 --> 00:18:20,960 +needs a lot of data and you won't be able to pass + +277 +00:18:20,960 --> 00:18:24,420 +it on. It passes it on to me first and I take the + +278 +00:18:24,420 --> 00:18:29,420 +data from you one by one. Okay? We are giving + +279 +00:18:29,420 --> 00:18:32,190 +information to whom? To the builder, it takes them + +280 +00:18:32,190 --> 00:18:35,290 +one by one in order, it takes all the information + +281 +00:18:35,290 --> 00:18:37,930 +through setter methods, I tell it in the end + +282 +00:18:37,930 --> 00:18:40,550 +builder create a student for me, I go to the + +283 +00:18:40,550 --> 00:18:42,150 +builder from inside to inside, I download the + +284 +00:18:42,150 --> 00:18:44,290 +constructor of the student and create it for him, + +285 +00:18:44,690 --> 00:18:46,990 +there is one problem that remains, that I can + +286 +00:18:48,550 --> 00:18:50,410 +Important data should not be filled What is the + +287 +00:18:50,410 --> 00:18:53,070 +idea of the student's constructor? That there are + +288 +00:18:53,070 --> 00:18:57,250 +compulsory data that must be filled So in the + +289 +00:18:57,250 --> 00:19:00,610 +builder, for example, in this class builder There + +290 +00:19:00,610 --> 00:19:03,510 +is no method create It is supposed here before the + +291 +00:19:03,510 --> 00:19:06,930 +student does I put a condition I make sure that it + +292 +00:19:06,930 --> 00:19:09,210 +filled the compulsory data This is like a + +293 +00:19:09,210 --> 00:19:11,510 +secretary It makes sure that it takes the data + +294 +00:19:11,510 --> 00:19:13,950 +from him It makes sure that if the data is correct + +295 +00:19:13,950 --> 00:19:16,370 +It goes to the student If there is something + +296 +00:19:16,370 --> 00:19:20,070 +missing okay, it will warn me, it will say no come + +297 +00:19:20,070 --> 00:19:22,550 +with me, when it is 100% sure, it will go and tell + +298 +00:19:22,550 --> 00:19:27,170 +the student so here for example I can say if the + +299 +00:19:27,170 --> 00:19:35,110 +first name equals null or the last name equals + +300 +00:19:35,110 --> 00:19:44,050 +null or for example the faculty equals null okay, + +301 +00:19:44,610 --> 00:19:53,770 +throw it in you means + +302 +00:19:53,770 --> 00:19:56,110 +tell him that there is a problem this is missing + +303 +00:19:56,110 --> 00:19:59,290 +required + +304 +00:19:59,290 --> 00:20:02,750 +parameters I explain to him for example in the + +305 +00:20:02,750 --> 00:20:09,050 +message what is required else create who create + +306 +00:20:09,050 --> 00:20:12,270 +the student so now guys as if the builder works as + +307 +00:20:12,270 --> 00:20:14,010 +a barrier it makes sure that the information is + +308 +00:20:14,010 --> 00:20:16,960 +taken by all that is required All the information + +309 +00:20:16,960 --> 00:20:20,260 +goes to the builder to create the student. By + +310 +00:20:20,260 --> 00:20:24,960 +using this builder, I reflected that the student + +311 +00:20:24,960 --> 00:20:28,640 +needs a lot of parameters to create. I don't know + +312 +00:20:28,640 --> 00:20:30,740 +how to create parameters, so I created a way for + +313 +00:20:30,740 --> 00:20:33,500 +the builder to take information step by step + +314 +00:20:33,500 --> 00:20:37,120 +through a set of methods. After the information is + +315 +00:20:37,120 --> 00:20:40,000 +completed, it goes to the builder and I say create + +316 +00:20:40,000 --> 00:20:42,440 +and inside create I make sure that the information + +317 +00:20:42,440 --> 00:20:45,580 +is complete if it is complete I create it for the + +318 +00:20:45,580 --> 00:20:48,120 +student for example here there is no problem it + +319 +00:20:48,120 --> 00:20:50,320 +will create it but if there is important + +320 +00:20:50,320 --> 00:20:53,260 +information I did not pass it like for example + +321 +00:20:53,260 --> 00:20:59,660 +this faculty went here comment run + +322 +00:20:59,660 --> 00:21:01,100 +here it shows the exception I say there is + +323 +00:21:01,100 --> 00:21:04,420 +information missing you did not pass it here + +324 +00:21:04,420 --> 00:21:05,220 +missing required + +325 +00:21:09,090 --> 00:21:10,790 +Parameters. And this is the idea of builder + +326 +00:21:10,790 --> 00:21:16,610 +pattern. Instead of using the constructor, we + +327 +00:21:16,610 --> 00:21:20,090 +started using the setter methods to put the data + +328 +00:21:20,090 --> 00:21:22,670 +and then tell it to create. This way, building + +329 +00:21:22,670 --> 00:21:25,730 +objects became easier. Because tomorrow when you + +330 +00:21:25,730 --> 00:21:29,370 +build your own library and build a class that + +331 +00:21:29,370 --> 00:21:32,950 +needs a lot of information in this way, you can + +332 +00:21:32,950 --> 00:21:35,850 +resort to using the builder to make it easier for + +333 +00:21:35,850 --> 00:21:39,540 +people to build objects especially in your office. + +334 +00:21:40,220 --> 00:21:45,280 +By the way, Builder is used in many places. For + +335 +00:21:45,280 --> 00:21:48,600 +example, because I program Android, Builder is + +336 +00:21:48,600 --> 00:21:50,640 +used in Android a lot. Let me give you an example. + +337 +00:21:51,740 --> 00:21:53,280 +For example, in Android, there is something we + +338 +00:21:53,280 --> 00:21:55,580 +call notification. Do you know notification? + +339 +00:21:55,820 --> 00:21:57,880 +Notifications that come. Did you see how + +340 +00:21:57,880 --> 00:22:00,040 +notification is created in Android? There is a + +341 +00:22:00,040 --> 00:22:03,770 +class called Notification, but this class of + +342 +00:22:03,770 --> 00:22:05,530 +notification has a constructor that takes a lot of + +343 +00:22:05,530 --> 00:22:08,570 +parameters. For example, what is the title of the + +344 +00:22:08,570 --> 00:22:11,430 +notification, the text of the notification, the + +345 +00:22:11,430 --> 00:22:16,530 +icon, does the sound come with it or not, and what + +346 +00:22:16,530 --> 00:22:18,230 +is the sound that comes with it, is there a + +347 +00:22:18,230 --> 00:22:20,890 +vibration in the phone or not, what is the + +348 +00:22:20,890 --> 00:22:23,110 +background color, the color of the line and the + +349 +00:22:23,110 --> 00:22:27,260 +color of the title, what are the settings and what + +350 +00:22:27,260 --> 00:22:30,460 +will happen when I click on it will there be an + +351 +00:22:30,460 --> 00:22:32,500 +action in the notification or not all these + +352 +00:22:32,500 --> 00:22:34,440 +settings will be sent to the notification + +353 +00:22:34,440 --> 00:22:38,340 +constructor so the one who designed the android + +354 +00:22:38,340 --> 00:22:42,780 +library said that if the normal user asks for all + +355 +00:22:42,780 --> 00:22:46,480 +this information it will be difficult to create it + +356 +00:22:46,480 --> 00:22:48,420 +so what did he say? it said that we create a + +357 +00:22:48,420 --> 00:22:51,700 +builder for the notification so for example in + +358 +00:22:51,700 --> 00:22:54,000 +android in order to create a notification you must + +359 +00:22:54,000 --> 00:22:57,790 +first say notification Either in Java or Kotlin + +360 +00:22:57,790 --> 00:23:03,430 +Notification.builder Creates a builder, B for + +361 +00:23:03,430 --> 00:23:07,890 +example, equals new Notification.builder Then in + +362 +00:23:07,890 --> 00:23:11,430 +this builder, you say B dot And it gives you what? + +363 +00:23:12,490 --> 00:23:17,950 +Setter methods For example, setTitle It gives me + +364 +00:23:17,950 --> 00:23:23,240 +the title of the notification B dot setIcon You + +365 +00:23:23,240 --> 00:23:28,520 +give it an icon, B dot set background color, B dot + +366 +00:23:28,520 --> 00:23:30,840 +this and that. In the end, to create a + +367 +00:23:30,840 --> 00:23:36,400 +notification, you say B dot build or create. What + +368 +00:23:36,400 --> 00:23:39,100 +does this return? The notification. Because if + +369 +00:23:39,100 --> 00:23:40,580 +there is an important information that you did not + +370 +00:23:40,580 --> 00:23:43,880 +pass through, this build will give you an + +371 +00:23:43,880 --> 00:23:48,370 +exception.Instead of going to a construction + +372 +00:23:48,370 --> 00:23:52,090 +company and asking them to look at the + +373 +00:23:52,090 --> 00:23:55,630 +documentation to find out what each piece of + +374 +00:23:55,630 --> 00:23:58,850 +information has to say, it went step by step + +375 +00:23:59,570 --> 00:24:03,150 +creation law for the object, okay? So this builder + +376 +00:24:03,150 --> 00:24:06,050 +pattern, as I said, the problem it solves is that + +377 +00:24:06,050 --> 00:24:08,430 +sometimes when we create classes, creating objects + +378 +00:24:08,430 --> 00:24:11,310 +from them requires a lot of parameters. At the + +379 +00:24:11,310 --> 00:24:13,550 +same time, I cannot create an empty constructor + +380 +00:24:13,550 --> 00:24:17,300 +because this information must be passed through So + +381 +00:24:17,300 --> 00:24:19,940 +the constructor has to be there. So how does it + +382 +00:24:19,940 --> 00:24:22,920 +work? How does it make it easier for the user to + +383 +00:24:22,920 --> 00:24:26,260 +create? There is a way to use the builder. We try + +384 +00:24:26,260 --> 00:24:29,100 +to change it. Instead of using the constructor, it + +385 +00:24:29,100 --> 00:24:32,820 +uses the setter method. How does it work? The + +386 +00:24:32,820 --> 00:24:38,420 +builderInner class has the same attributes as the + +387 +00:24:38,420 --> 00:24:40,600 +main class that you want to create And there are + +388 +00:24:40,600 --> 00:24:44,260 +setter methods like the ones in the main class The + +389 +00:24:44,260 --> 00:24:45,940 +idea is that I create a builder in the beginning + +390 +00:24:45,940 --> 00:24:48,220 +and pass all the information to it through setter + +391 +00:24:48,220 --> 00:24:50,900 +methods And then I tell the builder to create an + +392 +00:24:50,900 --> 00:24:54,940 +object from the class that you have or that you + +393 +00:24:54,940 --> 00:24:58,960 +are inside So it's like a manager with a secretary + +394 +00:25:00,890 --> 00:25:03,150 +I arrange things with the secretary and see what + +395 +00:25:03,150 --> 00:25:05,390 +information is necessary, and when it's complete, + +396 +00:25:05,530 --> 00:25:08,210 +he sends the papers to the manager. This is the + +397 +00:25:08,210 --> 00:25:10,910 +idea of the builder, and as I said, many libraries + +398 +00:25:10,910 --> 00:25:14,050 +use the idea of the builder pattern to facilitate + +399 +00:25:14,050 --> 00:25:18,760 +construction. objects from the classes that have a + +400 +00:25:18,760 --> 00:25:21,220 +constructor that takes a lot of parameters. And + +401 +00:25:21,220 --> 00:25:24,340 +this is the meaning of reading the slides again. + +402 +00:25:24,380 --> 00:25:26,680 +Because in the builder design pattern, we can + +403 +00:25:26,680 --> 00:25:29,280 +solve the issues with a large number of parameters + +404 +00:25:29,280 --> 00:25:34,300 +by providing a constructor with the required + +405 +00:25:34,300 --> 00:25:36,940 +parameters and then... No, let's see before this + +406 +00:25:36,940 --> 00:25:41,460 +slide. When to use? When I have too many arguments + +407 +00:25:41,460 --> 00:25:43,840 +to pass from the client program via the + +408 +00:25:43,840 --> 00:25:47,390 +constructor. A large number of arguments need to + +409 +00:25:47,390 --> 00:25:51,390 +go through the constructor that can be error + +410 +00:25:51,390 --> 00:25:53,850 +-prone. What does error-prone mean? It means error + +411 +00:25:53,850 --> 00:25:57,330 +-prone in a big way. You make mistakes. You don't + +412 +00:25:57,330 --> 00:26:00,430 +know what each parameter means. Because most of + +413 +00:26:00,430 --> 00:26:02,490 +the time, the type of parameters are the same. + +414 +00:26:03,200 --> 00:26:05,360 +Sometimes there are 5 stains behind each other. + +415 +00:26:08,980 --> 00:26:13,620 +It is hard to + +416 +00:26:13,620 --> 00:26:14,920 +maintain the order of the argument. + +417 +00:26:18,200 --> 00:26:20,540 +The other case is that sometimes you have a + +418 +00:26:20,540 --> 00:26:22,940 +constructor with compulsory and optional + +419 +00:26:22,940 --> 00:26:25,040 +information and you can't distinguish what is + +4 + +445 +00:27:37,990 --> 00:27:40,310 +This case also does not solve the problem of + +446 +00:27:40,310 --> 00:27:42,910 +creating an empty constructor because the object + +447 +00:27:42,910 --> 00:27:44,830 +state in this case will be inconsistent. What does + +448 +00:27:44,830 --> 00:27:49,180 +inconsistent mean? I mean it's not solid, it's not + +449 +00:27:49,180 --> 00:27:54,890 +complete, it's incomplete, okay? The solution to + +450 +00:27:54,890 --> 00:27:56,710 +this problem is through Builder Pattern. Builder + +451 +00:27:56,710 --> 00:27:58,930 +Pattern solves this issue with large number of + +452 +00:27:58,930 --> 00:28:01,190 +optional parameters and inconsistent state by + +453 +00:28:01,190 --> 00:28:04,290 +providing a way to build the object step by step. + +454 +00:28:04,470 --> 00:28:08,790 +It provides a + +455 +00:28:08,790 --> 00:28:11,870 +method that will actually retain the final object. + +456 +00:28:11,930 --> 00:28:13,770 +What is this method that returns the final object + +457 +00:28:13,770 --> 00:28:18,670 +that we called create or build? This is a summary + +458 +00:28:18,670 --> 00:28:23,360 +of Builder Pattern. Now we will enter in a new + +459 +00:28:23,360 --> 00:28:27,300 +design pattern for this lecture We will explain + +460 +00:28:27,300 --> 00:28:31,680 +the next lectures Dependency Injection But there + +461 +00:28:31,680 --> 00:28:33,860 +is still a small point that I would like to touch + +462 +00:28:33,860 --> 00:28:36,700 +on which is the subject of assignment that I gave + +463 +00:28:36,700 --> 00:28:39,480 +you I explained this assignment, right? I opened + +464 +00:28:39,480 --> 00:28:42,320 +the assignment on the model and I left it for + +465 +00:28:42,320 --> 00:28:45,600 +about two weeks For example, for those who are + +466 +00:28:45,600 --> 00:28:47,180 +still weak in GUI or something like that, if they + +467 +00:28:47,180 --> 00:28:49,120 +want to learn something, they should learn so that + +468 +00:28:49,120 --> 00:28:50,620 +they can do the assignment because the first part + +469 +00:28:50,620 --> 00:28:53,780 +is the tabs explanation, right? I want to make a + +470 +00:28:53,780 --> 00:28:56,500 +new class and put it in the program to show the + +471 +00:28:56,500 --> 00:29:01,680 +tab because the second task that you need which is + +472 +00:29:01,680 --> 00:29:04,880 +in the slider is the search program What is a + +473 +00:29:04,880 --> 00:29:07,620 +search program? In search programs, there is a + +474 +00:29:07,620 --> 00:29:11,640 +search and sometimes the search is divided into + +475 +00:29:11,640 --> 00:29:13,720 +criteria. For example, I want to search for + +476 +00:29:13,720 --> 00:29:14,780 +employee data. + +477 +00:29:17,020 --> 00:29:20,800 +You put here what you want to search for and + +478 +00:29:20,800 --> 00:29:23,600 +choose search from here. Criteria, what does + +479 +00:29:23,600 --> 00:29:25,400 +search criteria mean? Do you want to search for + +480 +00:29:25,400 --> 00:29:29,340 +the first name? Or the last name? Or the title of + +481 +00:29:29,340 --> 00:29:33,220 +the employee? Or his job title? You need to + +482 +00:29:33,220 --> 00:29:38,100 +specify what you want to search for For example, + +483 +00:29:38,340 --> 00:29:44,060 +if I deal with a program with two employees, each + +484 +00:29:44,060 --> 00:29:46,460 +employee represents an object of the type of + +485 +00:29:46,460 --> 00:29:48,720 +employee, the class is called employee The basic + +486 +00:29:48,720 --> 00:29:50,940 +data of the employee, which is for example ID, + +487 +00:29:51,160 --> 00:29:56,960 +first name, last name and job title ok? The + +488 +00:29:56,960 --> 00:30:01,240 +objects in any job can be in a database and I read + +489 +00:30:01,240 --> 00:30:04,840 +from it it can be in an ArrayList it is for + +490 +00:30:04,840 --> 00:30:06,980 +facilitation suppose that you have an ArrayList + +491 +00:30:06,980 --> 00:30:10,340 +from what? from what type? from employee type you + +492 +00:30:10,340 --> 00:30:12,840 +make a class employee you make objects from it you + +493 +00:30:12,840 --> 00:30:14,500 +fill them with any data and you put them in this + +494 +00:30:14,500 --> 00:30:17,980 +ArrayList if we make a simple face program we + +495 +00:30:17,980 --> 00:30:20,900 +search in this ArrayList what does it mean? For + +496 +00:30:20,900 --> 00:30:24,470 +example I say here write Mohammed Okay? And I + +497 +00:30:24,470 --> 00:30:27,330 +choose from here what? For example, first name. + +498 +00:30:27,730 --> 00:30:31,170 +And I do a search and I get here all the employees + +499 +00:30:31,170 --> 00:30:34,310 +whose name is Mohamed. On the basis of, for + +500 +00:30:34,310 --> 00:30:36,130 +example, the program. Then I double click on this + +501 +00:30:36,130 --> 00:30:38,590 +and it gives me details. But this is not what we + +502 +00:30:38,590 --> 00:30:41,210 +want to do in this game. I can write here Gaza, + +503 +00:30:41,350 --> 00:30:43,440 +for example. and then we choose the search + +504 +00:30:43,440 --> 00:30:45,540 +criteria, for example, the title of the search if + +505 +00:30:45,540 --> 00:30:48,460 +it is one of the attributes of the title and I say + +506 +00:30:48,460 --> 00:30:49,900 +search and it brings me all the employees whose + +507 +00:30:49,900 --> 00:30:54,240 +title is Gaza. What is required from us? We need + +508 +00:30:54,240 --> 00:30:57,960 +to design this program to be extendable. What does + +509 +00:30:57,960 --> 00:31:01,680 +extendable mean? For example, we want to search + +510 +00:31:01,680 --> 00:31:04,780 +for the first name. I want to create a class + +511 +00:31:14,830 --> 00:31:20,570 +search by name search + +512 +00:31:20,570 --> 00:31:29,670 +by name search + +513 +00:31:29,670 --> 00:31:36,300 +by name search by name search by name Okay, from + +514 +00:31:36,300 --> 00:31:39,140 +the attributes of the employee in the title I go + +515 +00:31:39,140 --> 00:31:43,200 +and make a new class Okay, I do the search in the + +516 +00:31:43,200 --> 00:31:45,780 +title Same thing, I take the class and throw it in + +517 +00:31:45,780 --> 00:31:49,660 +the book Okay, I run the program I find out that I + +518 +00:31:49,660 --> 00:31:51,640 +have a new search criteria in addition to the name + +519 +00:31:51,640 --> 00:31:58,060 +What? Search by address If I choose it and write a + +520 +00:31:58,060 --> 00:32:03,640 +word here I search in all employee data In the + +521 +00:32:03,640 --> 00:32:08,820 +address of the word that you wrote here, okay? So + +522 +00:32:08,820 --> 00:32:12,620 +the fields of this search, you change them into + +523 +00:32:12,620 --> 00:32:16,660 +classes. Put and remove. That's it. Okay? We will + +524 +00:32:16,660 --> 00:32:19,280 +not change anything in the GUI. Think about how + +525 +00:32:19,280 --> 00:32:21,460 +you do it. I know that these questions are + +526 +00:32:21,460 --> 00:32:24,240 +challenging in a way, okay? But this is + +527 +00:32:24,240 --> 00:32:26,580 +established tomorrow. This is a service available + +528 +00:32:26,580 --> 00:32:29,720 +in many applications and many websites. If you + +529 +00:32:29,720 --> 00:32:31,320 +need to use it, you will find a service like this. + +530 +00:32:31,760 --> 00:32:34,640 +Instead of coding everything and modifying it in + +531 +00:32:34,640 --> 00:32:39,220 +the combo box or the drop list that comes up and + +532 +00:32:39,220 --> 00:32:41,780 +fix it and your boss comes and tells you that you + +533 +00:32:41,780 --> 00:32:46,560 +need to work for a week, you still need to modify + +534 +00:32:46,560 --> 00:32:49,620 +the interface and add this and that, you need to + +535 +00:32:49,620 --> 00:32:52,520 +work for a week. No, you need to put a class and + +536 +00:32:52,520 --> 00:32:56,690 +then what? Try it, work on it, okay? Work on it, + +537 +00:32:56,730 --> 00:33:02,130 +learn a new way of thinking in code design, okay? + +538 +00:33:02,550 --> 00:33:06,730 +Okay guys, work on it, I'll give you all of it, + +539 +00:33:06,930 --> 00:33:09,850 +make it a desktop, web, mobile, whatever you want, + +540 +00:33:10,190 --> 00:33:10,690 +okay? + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/iFbuKNu9BGs_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/iFbuKNu9BGs_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..9c9f0877cb02980955e7e98a5b46b4b3dbf6a6ec --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/iFbuKNu9BGs_postprocess.srt @@ -0,0 +1,2160 @@ +1 +00:00:06,120 --> 00:00:08,540 +Okay guys, peace be upon you. This lecture, God + +2 +00:00:08,540 --> 00:00:11,380 +willing, will take a new design pattern. In the + +3 +00:00:11,380 --> 00:00:13,820 +previous lecture, we finished the factory design + +4 +00:00:13,820 --> 00:00:16,680 +pattern. We said that the factory is one of the + +5 +00:00:16,680 --> 00:00:18,520 +creation patterns and has a relationship with the + +6 +00:00:18,520 --> 00:00:20,900 +construction of objects. The main goal is that it + +7 +00:00:20,900 --> 00:00:22,960 +combines the process of constructing objects in + +8 +00:00:22,960 --> 00:00:26,220 +one class on the basis of change. If there is a + +9 +00:00:26,220 --> 00:00:29,820 +change in one place, whatever the type of objects + +10 +00:00:29,820 --> 00:00:31,780 +they create, in the end, it returns an object of + +11 +00:00:31,780 --> 00:00:34,960 +the type of interface or superclass. This means + +12 +00:00:34,960 --> 00:00:37,420 +that the client does not need to know what types + +13 +00:00:37,420 --> 00:00:40,140 +of objects I have, he only knows the type of + +14 +00:00:40,140 --> 00:00:42,200 +superclass. This means that even if I add + +15 +00:00:42,200 --> 00:00:45,420 +additional objects, the code of the client will + +16 +00:00:45,420 --> 00:00:47,280 +not change. Because in the end, he sees that they + +17 +00:00:47,280 --> 00:00:49,620 +are the type of app. And we also saw in the + +18 +00:00:49,620 --> 00:00:53,120 +previous lecture a new design for the factory + +19 +00:00:53,120 --> 00:00:55,980 +using the Reflection API, which actually makes + +20 +00:00:59,730 --> 00:01:03,490 +read the class and create an object out of it + +21 +00:01:03,490 --> 00:01:09,520 +without having to modify anything the factory, and + +22 +00:01:09,520 --> 00:01:13,040 +we modified the shapes program so that it uses the + +23 +00:01:13,040 --> 00:01:15,560 +factory pattern and reaches a stage where it + +24 +00:01:15,560 --> 00:01:18,320 +doesn't need any modification of any line of code. + +25 +00:01:18,540 --> 00:01:21,100 +And this is the idea of how plugins are made, how + +26 +00:01:21,100 --> 00:01:23,520 +programs are made, for example, an update is made + +27 +00:01:23,520 --> 00:01:28,140 +to a specific program. An update is not a complete + +28 +00:01:28,140 --> 00:01:31,450 +program, it is a new part added to the program.In + +29 +00:01:31,450 --> 00:01:32,950 +this addition, you notice that it is installed on + +30 +00:01:32,950 --> 00:01:35,770 +the program and it starts working without needing + +31 +00:01:35,770 --> 00:01:38,630 +to modify the existing code that is downloaded on + +32 +00:01:38,630 --> 00:01:41,750 +the program, for example, on the phone or on the + +33 +00:01:41,750 --> 00:01:45,810 +device of the client Ok, we are still in the topic + +34 +00:01:45,810 --> 00:01:48,270 +of creation patterns, and today I will explain a + +35 +00:01:48,270 --> 00:01:50,130 +new design pattern, which is the simplest design + +36 +00:01:50,130 --> 00:01:52,650 +pattern available with us, it is called Build-up + +37 +00:01:52,650 --> 00:01:54,950 +Design Pattern. It is explained in the slides, not + +38 +00:01:54,950 --> 00:01:57,390 +directly after the factory, I mean the design + +39 +00:01:57,390 --> 00:02:01,990 +pattern, if you look at the slides, you will find + +40 +00:02:01,990 --> 00:02:06,020 +it beforeName Design Patterns, Factory Method and + +41 +00:02:06,020 --> 00:02:07,380 +Singleton. We will come back to them in the next + +42 +00:02:07,380 --> 00:02:11,400 +lecture But today we will apply a simple pattern + +43 +00:02:11,400 --> 00:02:14,520 +called Builder Design Pattern. What is Builder? + +44 +00:02:15,910 --> 00:02:19,970 +The builder is a creation design pattern that has + +45 +00:02:19,970 --> 00:02:22,250 +to do with the construction of objects. What is + +46 +00:02:22,250 --> 00:02:26,950 +the problem solved by the builder pattern? This + +47 +00:02:26,950 --> 00:02:29,730 +pattern was introduced to solve some of the + +48 +00:02:29,730 --> 00:02:33,090 +problems with factories when the object contains a + +49 +00:02:33,090 --> 00:02:36,620 +lot of attributes.For example, use it when you + +50 +00:02:36,620 --> 00:02:39,460 +have too many arguments to pass from the client + +51 +00:02:39,460 --> 00:02:41,780 +program via the constructor that can be error + +52 +00:02:41,780 --> 00:02:44,560 +prone because most of the time the type of + +53 +00:02:44,560 --> 00:02:48,380 +arguments are seen from client side, it's hard to + +54 +00:02:48,380 --> 00:02:50,880 +maintain the order of the argument, some of the + +55 +00:02:50,880 --> 00:02:52,900 +parameters might be optional, but using a + +56 +00:02:52,900 --> 00:02:55,480 +constructor, we are forced to send all the + +57 +00:02:55,480 --> 00:02:57,880 +parameters. Okay, this speech will not be very + +58 +00:02:57,880 --> 00:03:00,400 +comprehensive unless we see a practical example + +59 +00:03:00,400 --> 00:03:02,400 +that explains this problem. + +60 +00:03:07,880 --> 00:03:11,560 +Okay, to explain the existing problem and then + +61 +00:03:11,560 --> 00:03:13,940 +propose its solution, let's say I have a class, + +62 +00:03:14,900 --> 00:03:18,860 +for example, class student, okay? The student has + +63 +00:03:18,860 --> 00:03:22,840 +a large number of parameters, let's say first + +64 +00:03:22,840 --> 00:03:27,740 +name, last name, department, + +65 +00:03:29,780 --> 00:03:39,830 +faculty, age, GPA, email, No, these are strings, + +66 +00:03:40,310 --> 00:03:48,430 +email, mobile number, float, + +67 +00:03:48,950 --> 00:03:55,750 +GPA, int age, and so on. These are all attributes + +68 +00:03:55,750 --> 00:03:59,850 +specific to the student. Let's make a setar and + +69 +00:03:59,850 --> 00:04:00,470 +getar for them. + +70 +00:04:13,120 --> 00:04:16,260 +Okay, now if I want to use this class + +71 +00:04:32,630 --> 00:04:36,690 +The class student that I have, there is no + +72 +00:04:36,690 --> 00:04:38,930 +constructor except default constructor, right or + +73 +00:04:38,930 --> 00:04:44,470 +not? So to create a student, I say student as new + +74 +00:04:44,470 --> 00:04:45,470 +student + +75 +00:04:48,270 --> 00:04:52,330 +I use the setters to set the attributes of the + +76 +00:04:52,330 --> 00:04:56,850 +student If we assume that the student is a + +77 +00:04:56,850 --> 00:05:01,270 +constructor based on the fact that most of this + +78 +00:05:01,270 --> 00:05:05,730 +information is required when creating In some + +79 +00:05:05,730 --> 00:05:10,410 +cases, I have classes in my library When I create + +80 +00:05:10,410 --> 00:05:13,130 +an object from it, all the parameters must be + +81 +00:05:13,130 --> 00:05:15,950 +present In this case, you need to create a + +82 +00:05:15,950 --> 00:05:21,250 +constructor Ok, we will add a constructor We can + +83 +00:05:21,250 --> 00:05:25,690 +add netbeans + +84 +00:05:25,690 --> 00:05:30,950 +to Android Insert code Ok, this is a constructor + +85 +00:05:37,330 --> 00:05:41,870 +It will select all and add a constructor that + +86 +00:05:41,870 --> 00:05:45,210 +makes set to all parameters Now I have a + +87 +00:05:45,210 --> 00:05:49,250 +constructor, but it made an error because it left + +88 +00:05:49,250 --> 00:05:53,850 +the argument constructor To add all attributes, I + +89 +00:05:53,850 --> 00:05:58,430 +found a problem, this constructor takes data a lot + +90 +00:05:58,430 --> 00:06:02,090 +of data. So I have to remember the type of data + +91 +00:06:02,090 --> 00:06:05,170 +and arrange them. For example, I have 5 or 6 + +92 +00:06:05,170 --> 00:06:07,590 +strings. I have to know which is the first, second + +93 +00:06:07,590 --> 00:06:09,410 +and third string, which is the integer and which + +94 +00:06:09,410 --> 00:06:12,210 +is the float. So building the object strings + +95 +00:06:12,210 --> 00:06:14,450 +became difficult for me. I had to go to the + +96 +00:06:14,450 --> 00:06:17,370 +documentation and see all the information to + +97 +00:06:17,370 --> 00:06:22,310 +justify them all. Of course, if there was no + +98 +00:06:22,310 --> 00:06:24,550 +constructor, it would have been easier. Because + +99 +00:06:24,550 --> 00:06:28,250 +the settersIt's easier to use it because the set + +100 +00:06:28,250 --> 00:06:30,070 +doesn't explain itself, right or wrong? When you + +101 +00:06:30,070 --> 00:06:32,510 +tell me set age, I understand what it is. Set + +102 +00:06:32,510 --> 00:06:34,970 +faculty, I understand what it is. Set email, okay? + +103 +00:06:35,490 --> 00:06:37,090 +But the problem here is that someone says, okay, + +104 +00:06:37,150 --> 00:06:39,730 +why don't you leave it blank and teach them? No, + +105 +00:06:40,010 --> 00:06:42,630 +here the library wants the object not to be built + +106 +00:06:42,630 --> 00:06:47,120 +if all these data exist.Okay, this is a + +107 +00:06:47,120 --> 00:06:49,240 +requirement and the object should be there. And + +108 +00:06:49,240 --> 00:06:50,840 +the problem is that if it becomes a requirement, + +109 +00:06:51,220 --> 00:06:53,840 +it will be difficult to create the object because + +110 +00:06:53,840 --> 00:06:55,600 +the constructor uses the setter methods. The + +111 +00:06:55,600 --> 00:06:58,480 +constructor does not explain every argument, what + +112 +00:06:58,480 --> 00:07:00,180 +it means, right or wrong, or what type it is. You + +113 +00:07:00,180 --> 00:07:02,800 +have to go back to the documentation. So this is + +114 +00:07:02,800 --> 00:07:05,800 +the problem that exists in some cases, that it is + +115 +00:07:05,800 --> 00:07:08,020 +difficult to create the object because the + +116 +00:07:08,020 --> 00:07:11,420 +constructor requires a lot of parameters. So you + +117 +00:07:11,420 --> 00:07:12,800 +have to know what are the types of these + +118 +00:07:12,800 --> 00:07:16,700 +parameters and how to arrange them.Okay? Some + +119 +00:07:16,700 --> 00:07:18,560 +parameters might be mandatory and some might be + +120 +00:07:18,560 --> 00:07:21,300 +optional. But even optional parameters should be + +121 +00:07:21,300 --> 00:07:23,800 +given value. For example, if you want cash, you + +122 +00:07:23,800 --> 00:07:25,560 +should give it value. The important thing is that + +123 +00:07:25,560 --> 00:07:27,340 +you should know all the parameters. In these + +124 +00:07:27,340 --> 00:07:30,480 +cases, it is difficult to build an object because + +125 +00:07:30,480 --> 00:07:33,580 +each structure requires many parameters. We can + +126 +00:07:33,580 --> 00:07:36,640 +make the builder pattern that makes it easier for + +127 +00:07:36,640 --> 00:07:39,380 +me to build the object. Because this object needs + +128 +00:07:39,380 --> 00:07:42,300 +many parameters.Do you know what is the problem + +129 +00:07:42,300 --> 00:07:44,920 +with this solution? Every design pattern has a + +130 +00:07:44,920 --> 00:07:47,380 +specific problem. This specific problem that we + +131 +00:07:47,380 --> 00:07:50,660 +will solve today is that I have a library with + +132 +00:07:50,660 --> 00:07:54,060 +some objects and a constructor and the constructor + +133 +00:07:54,060 --> 00:07:57,040 +takes a lot of data. How can I make it easier for + +134 +00:07:57,040 --> 00:07:59,720 +the client to create an object from the class + +135 +00:07:59,720 --> 00:08:02,840 +where the constructor has many parameters? This is + +136 +00:08:02,840 --> 00:08:05,160 +the problem that we will solve. Is it clear? Okay, + +137 +00:08:05,220 --> 00:08:07,620 +let's go to the solution. Now, the solution will + +138 +00:08:07,620 --> 00:08:12,100 +depend on something.The solution depends on the + +139 +00:08:12,100 --> 00:08:14,560 +fact that the setter methods are easier to use + +140 +00:08:14,560 --> 00:08:20,960 +than the constructor I wish I could make the + +141 +00:08:20,960 --> 00:08:25,140 +student empty and then tell him s.set blah blah + +142 +00:08:25,140 --> 00:08:28,020 +blah and fill in the data It is true that you need + +143 +00:08:28,020 --> 00:08:31,140 +7, 8 lines or 10 or 20 lines to fill in the data + +144 +00:08:31,140 --> 00:08:35,760 +but at least This is a concept, right? If this + +145 +00:08:35,760 --> 00:08:39,780 +library or this class is not made by you and you + +146 +00:08:39,780 --> 00:08:41,380 +took out the setter methods, you will understand + +147 +00:08:41,380 --> 00:08:44,500 +each one's meaning. But the problem is that + +148 +00:08:44,500 --> 00:08:48,200 +setters cannot be used unless the object is + +149 +00:08:48,200 --> 00:08:53,360 +present. Right or wrong? I mean, we got into a + +150 +00:08:53,360 --> 00:08:55,580 +problem that the object, in order to run, it needs + +151 +00:08:55,580 --> 00:08:58,740 +a lot of parameters. So you cannot use the setters + +152 +00:08:59,590 --> 00:09:02,150 +Before creating the object Because our whole idea + +153 +00:09:02,150 --> 00:09:04,530 +in the builder pattern We want to find a way to + +154 +00:09:04,530 --> 00:09:07,990 +make it possible for us to use the setters And + +155 +00:09:07,990 --> 00:09:12,050 +then create the object The opposite Okay? I mean, + +156 +00:09:12,190 --> 00:09:14,750 +why do I need to use the setters? To fill the data + +157 +00:09:14,750 --> 00:09:20,690 +Step by step Then I say what? Create Okay? But can + +158 +00:09:20,690 --> 00:09:24,570 +I do this now? No, because first I need to have an + +159 +00:09:24,570 --> 00:09:27,850 +object So that I can use the setters How can we + +160 +00:09:27,850 --> 00:09:31,880 +activate the setters?To fill the data step by step + +161 +00:09:31,880 --> 00:09:34,120 +because the setters are excellent and explain + +162 +00:09:34,120 --> 00:09:37,280 +exactly what each parameter means, and then after + +163 +00:09:37,280 --> 00:09:40,360 +filling the setters, we say to create the object. + +164 +00:09:40,460 --> 00:09:44,620 +So we reverse the verse. Not to create the object + +165 +00:09:44,620 --> 00:09:46,840 +and then use the setters. Yes, because creating + +166 +00:09:46,840 --> 00:09:48,420 +the object is difficult in the case of this verse + +167 +00:09:48,420 --> 00:09:50,540 +because it requires a lot of parameters. We use + +168 +00:09:50,540 --> 00:09:53,380 +the setters, fill the data step by step, and then + +169 +00:09:53,380 --> 00:09:59,290 +create the object. We reverse it. This is the + +170 +00:09:59,290 --> 00:10:01,730 +builder pattern that we are going to use. In order + +171 +00:10:01,730 --> 00:10:04,190 +to implement this solution, we need to do the + +172 +00:10:04,190 --> 00:10:09,370 +following. Go to the class student. The first step + +173 +00:10:09,370 --> 00:10:14,710 +is to go to the constructor and make it private. + +174 +00:10:14,870 --> 00:10:18,370 +What does this mean? This means that no one will + +175 +00:10:18,370 --> 00:10:20,910 +be able to create an object from the student. + +176 +00:10:22,110 --> 00:10:24,730 +there is no empty constructor, we stopped the + +177 +00:10:24,730 --> 00:10:30,150 +construction of object student in the end, down + +178 +00:10:30,150 --> 00:10:33,970 +here we + +179 +00:10:33,970 --> 00:10:36,770 +go to class student and create the following + +180 +00:10:36,770 --> 00:10:43,610 +public static class + +181 +00:10:43,610 --> 00:10:48,030 +builder + +182 +00:10:49,530 --> 00:10:52,790 +I think this static is not necessary public class + +183 +00:10:52,790 --> 00:10:56,950 +builder what does it mean? we made inside the + +184 +00:10:56,950 --> 00:11:01,150 +class student inner class, its name is builder + +185 +00:11:01,150 --> 00:11:06,530 +then all the attributes of the student, you see + +186 +00:11:06,530 --> 00:11:06,850 +them? + +187 +00:11:11,330 --> 00:11:12,450 +take a copy of them + +188 +00:11:18,100 --> 00:11:29,500 +And we put it in the builder Ok, + +189 +00:11:32,060 --> 00:11:35,760 +so far it is understood What we did now, let's + +190 +00:11:35,760 --> 00:11:41,440 +draw this one I have a class Student + +191 +00:11:43,400 --> 00:11:47,620 +The class student has a group of attributes 1,2,3 + +192 +00:11:47,620 --> 00:11:52,560 +,4 these are attributes + +193 +00:11:52,560 --> 00:11:57,940 +inside the class student I went and made a class + +194 +00:11:57,940 --> 00:12:05,480 +called builder and builder also has the same name + +195 +00:12:05,480 --> 00:12:14,460 +of attributes that are present in the studentThe + +196 +00:12:14,460 --> 00:12:18,120 +builder does not have a constructor. The default + +197 +00:12:18,120 --> 00:12:24,780 +is constructor. The next step is to go to the + +198 +00:12:24,780 --> 00:12:28,180 +builder and + +199 +00:12:28,180 --> 00:12:31,240 +create setter methods. For whom? These are + +200 +00:12:31,240 --> 00:12:34,280 +private. These are not private inside the builder. + +201 +00:12:34,400 --> 00:12:37,220 +We create setter methods in them. So you go to + +202 +00:12:37,220 --> 00:12:38,020 +refactor. + +203 +00:12:42,860 --> 00:12:48,040 +There's no need for the guitars, okay? So, we only + +204 +00:12:48,040 --> 00:12:51,460 +need the sitters, we don't need the guitars, so I + +205 +00:12:51,460 --> 00:12:58,620 +can remove them from here. Yes, it's select. Wait + +206 +00:12:58,620 --> 00:12:59,760 +a second, I'll remove it like this. + +207 +00:13:06,330 --> 00:13:11,790 +select the setters and refactor them put the + +208 +00:13:11,790 --> 00:13:17,630 +setters inside the builder notice that even now + +209 +00:13:17,630 --> 00:13:21,130 +the builder has nothing to do with the student + +210 +00:13:21,130 --> 00:13:26,270 +because the last step when we finish we go inside + +211 +00:13:26,270 --> 00:13:30,470 +the builder here + +212 +00:13:30,470 --> 00:13:35,050 +I am inside the builder now we make a data it's + +213 +00:13:35,050 --> 00:13:40,290 +name is create or build what + +214 +00:13:40,290 --> 00:13:43,950 +does create take? nothing what does it return? it + +215 +00:13:43,950 --> 00:13:50,170 +returns an object from student question, + +216 +00:13:50,510 --> 00:13:53,550 +can I use the constructor of student from inside + +217 +00:13:53,550 --> 00:13:57,090 +the builder? of course, why? because I'm inside + +218 +00:13:57,090 --> 00:14:00,430 +the class, it's not inner class so I can use the + +219 +00:14:00,430 --> 00:14:02,610 +constructor of student, can I say new again? + +220 +00:14:05,400 --> 00:14:09,960 +student and I can immediately say here return new + +221 +00:14:09,960 --> 00:14:12,780 +student of course what do they want? they want the + +222 +00:14:12,780 --> 00:14:14,440 +parameters what parameters do they want to put? + +223 +00:14:15,100 --> 00:14:19,420 +all of them the student wants all of them so they + +224 +00:14:19,420 --> 00:14:23,500 +want to put all of them first name last name + +225 +00:14:23,500 --> 00:14:32,740 +department faculty email mobile number + +226 +00:14:42,170 --> 00:14:46,970 +GPA GPA Age Okay, + +227 +00:14:47,170 --> 00:14:51,590 +I will create a student and a man. Of course, you + +228 +00:14:51,590 --> 00:14:55,250 +may not understand what happened yet. + +229 +00:14:56,630 --> 00:14:58,070 +Okay, we will go to + +230 +00:15:00,750 --> 00:15:03,670 +On the main method, we see the usage to see what + +231 +00:15:03,670 --> 00:15:05,190 +is going to happen or what is the use of the + +232 +00:15:05,190 --> 00:15:08,670 +builder that we made Did you notice that the code + +233 +00:15:08,670 --> 00:15:11,740 +is no longer prohibited? Because the constructor + +234 +00:15:11,740 --> 00:15:13,860 +is private, he will never be able to create a + +235 +00:15:13,860 --> 00:15:15,740 +student. So how will we be able to create a + +236 +00:15:15,740 --> 00:15:18,480 +student? They say, wait, did you come to create a + +237 +00:15:18,480 --> 00:15:21,820 +student? You can't create him directly, the + +238 +00:15:21,820 --> 00:15:23,860 +constructor is gone. There is a secretary who is + +239 +00:15:23,860 --> 00:15:26,260 +responsible for getting to whom? To the student. + +240 +00:15:26,380 --> 00:15:28,540 +Who is the secretary of this builder? You must + +241 +00:15:28,540 --> 00:15:31,120 +first connect to whom? To the builder. So we go + +242 +00:15:31,120 --> 00:15:34,300 +and tell him student dot builder. To create a + +243 +00:15:34,300 --> 00:15:37,780 +student, you must first create a builder equal to + +244 +00:15:37,780 --> 00:15:39,580 +new student + +245 +00:15:44,900 --> 00:15:51,940 +student.builder student + +246 +00:15:51,940 --> 00:16:04,280 +.builder + +247 +00:16:04,280 --> 00:16:11,940 +student.builder student.builder student.builder + +248 +00:16:16,070 --> 00:16:17,630 +What will you find there? You will find the set + +249 +00:16:17,630 --> 00:16:20,210 +methods There is no such thing as set methods, set + +250 +00:16:20,210 --> 00:16:23,270 +methods explain themselves, right or wrong? For + +251 +00:16:23,270 --> 00:16:28,470 +example, set first name and you say Ahmed and you + +252 +00:16:28,470 --> 00:16:33,390 +have to do what? set last name, this is Ali and + +253 +00:16:33,390 --> 00:16:38,690 +you fill in the data through the builder set email + +254 +00:16:38,690 --> 00:16:42,850 +anything at anything builder + +255 +00:16:49,630 --> 00:16:55,670 +Builder, Set, Department, + +256 +00:16:56,130 --> 00:16:59,950 +Software Development. It fills all the data one by + +257 +00:16:59,950 --> 00:17:03,010 +one. And then, we don't want Builder. What do we + +258 +00:17:03,010 --> 00:17:05,610 +want in the end? We want Student. You go to + +259 +00:17:05,610 --> 00:17:09,370 +Builder itself, and you say dot, and you have a + +260 +00:17:09,370 --> 00:17:11,290 +method called Create. + +261 +00:17:13,650 --> 00:17:17,290 +.create what inside create is called? the + +262 +00:17:17,290 --> 00:17:19,190 +constructor of the student, I don't see it, he is + +263 +00:17:19,190 --> 00:17:22,290 +the one who creates it and this I return to + +264 +00:17:22,290 --> 00:17:26,130 +student + +265 +00:17:26,130 --> 00:17:33,750 +s and then I say for confirmation s + +266 +00:17:33,750 --> 00:17:37,650 +.get + +267 +00:17:37,650 --> 00:17:39,070 +first name + +268 +00:17:43,670 --> 00:17:49,430 +I stopped using the builder instead of using the + +269 +00:17:49,430 --> 00:17:53,590 +student. I give him all the data I want through + +270 +00:17:53,590 --> 00:17:56,190 +the setter methods. When I am sure that I have + +271 +00:17:56,190 --> 00:17:59,850 +filled all the data, I tell him to create the + +272 +00:17:59,850 --> 00:18:05,410 +student. There is another small problem. Notice + +273 +00:18:05,410 --> 00:18:11,020 +that I created a method. This is like a barrier + +274 +00:18:11,020 --> 00:18:15,140 +before I can reach the student. It's like he asks + +275 +00:18:15,140 --> 00:18:18,780 +for data one by one. He tells me that this student + +276 +00:18:18,780 --> 00:18:20,960 +needs a lot of data and you won't be able to pass + +277 +00:18:20,960 --> 00:18:24,420 +it on. He passes it on to me first and I take the + +278 +00:18:24,420 --> 00:18:29,420 +data from you one by one. Okay? We are giving + +279 +00:18:29,420 --> 00:18:32,190 +information to whom?no the builder, he takes them + +280 +00:18:32,190 --> 00:18:35,290 +one by one in order, he takes all the information + +281 +00:18:35,290 --> 00:18:37,930 +through setter methods, I tell him in the end + +282 +00:18:37,930 --> 00:18:40,550 +builder create a student for me, I go to the + +283 +00:18:40,550 --> 00:18:42,150 +builder from inside to inside, I download the + +284 +00:18:42,150 --> 00:18:44,290 +constructor of the student and create it for him, + +285 +00:18:44,690 --> 00:18:46,990 +there is one problem that remains, that I can + +286 +00:18:48,550 --> 00:18:50,410 +Important data should not be filled What is the + +287 +00:18:50,410 --> 00:18:53,070 +idea of the student's constructor? That there are + +288 +00:18:53,070 --> 00:18:57,250 +compulsory data that must be filled So in the + +289 +00:18:57,250 --> 00:19:00,610 +builder, for example, in this class builder There + +290 +00:19:00,610 --> 00:19:03,510 +is no method create It is supposed here before the + +291 +00:19:03,510 --> 00:19:06,930 +student does I put a condition I make sure that he + +292 +00:19:06,930 --> 00:19:09,210 +filled the compulsory data This is like a + +293 +00:19:09,210 --> 00:19:11,510 +secretary He makes sure that he takes the data + +294 +00:19:11,510 --> 00:19:13,950 +from him He makes sure that if the data is correct + +295 +00:19:13,950 --> 00:19:16,370 +He goes to the student If there is something + +296 +00:19:16,370 --> 00:19:20,070 +missing okay, he will warn me, he will say no come + +297 +00:19:20,070 --> 00:19:22,550 +with me, when he is 100% sure, he will go and tell + +298 +00:19:22,550 --> 00:19:27,170 +the student so here for example I can say if the + +299 +00:19:27,170 --> 00:19:35,110 +first name equals null or the last name equals + +300 +00:19:35,110 --> 00:19:44,050 +null or for example the faculty equals null okay, + +301 +00:19:44,610 --> 00:19:53,770 +throw it in you means + +302 +00:19:53,770 --> 00:19:56,110 +tell him that there is a problem this is missing + +303 +00:19:56,110 --> 00:19:59,290 +required + +304 +00:19:59,290 --> 00:20:02,750 +parameters I explain to him for example in the + +305 +00:20:02,750 --> 00:20:09,050 +message what is required else create who create + +306 +00:20:09,050 --> 00:20:12,270 +the student so now guys as if the builder works as + +307 +00:20:12,270 --> 00:20:14,010 +a barrier he makes sure that the information is + +308 +00:20:14,010 --> 00:20:16,960 +taken by all that is required All the information + +309 +00:20:16,960 --> 00:20:20,260 +goes to the builder to create the student. By + +310 +00:20:20,260 --> 00:20:24,960 +using this builder, I reflected that the student + +311 +00:20:24,960 --> 00:20:28,640 +needs a lot of parameters to create. I don't know + +312 +00:20:28,640 --> 00:20:30,740 +how to create parameters, so I created a way for + +313 +00:20:30,740 --> 00:20:33,500 +the builder to take information step by step + +314 +00:20:33,500 --> 00:20:37,120 +through a set of methods. After the information is + +315 +00:20:37,120 --> 00:20:40,000 +completed, it goes to the builder and I say create + +316 +00:20:40,000 --> 00:20:42,440 +and inside create I make sure that the information + +317 +00:20:42,440 --> 00:20:45,580 +is complete if it is complete I create it for the + +318 +00:20:45,580 --> 00:20:48,120 +student for example here there is no problem it + +319 +00:20:48,120 --> 00:20:50,320 +will create it but if there is important + +320 +00:20:50,320 --> 00:20:53,260 +information I did not pass it like for example + +321 +00:20:53,260 --> 00:20:59,660 +this faculty went here comment run + +322 +00:20:59,660 --> 00:21:01,100 +here it shows the exception I say there is + +323 +00:21:01,100 --> 00:21:04,420 +information missing you did not pass it here + +324 +00:21:04,420 --> 00:21:05,220 +missing required + +325 +00:21:09,090 --> 00:21:10,790 +Parameters. And this is the idea of builder + +326 +00:21:10,790 --> 00:21:16,610 +pattern. Instead of using the constructor, we + +327 +00:21:16,610 --> 00:21:20,090 +started using the setter methods to put the data + +328 +00:21:20,090 --> 00:21:22,670 +and then tell it to create. This way, building + +329 +00:21:22,670 --> 00:21:25,730 +objects became easier. Because tomorrow when you + +330 +00:21:25,730 --> 00:21:29,370 +build your own library and build a class that + +331 +00:21:29,370 --> 00:21:32,950 +needs a lot of information in this way, you can + +332 +00:21:32,950 --> 00:21:35,850 +resort to using the builder to make it easier for + +333 +00:21:35,850 --> 00:21:39,540 +people to build objects especially in your office. + +334 +00:21:40,220 --> 00:21:45,280 +By the way, Builder is used in many places. For + +335 +00:21:45,280 --> 00:21:48,600 +example, because I program Android, Builder is + +336 +00:21:48,600 --> 00:21:50,640 +used in Android a lot. Let me give you an example. + +337 +00:21:51,740 --> 00:21:53,280 +For example, in Android, there is something we + +338 +00:21:53,280 --> 00:21:55,580 +call notification. Do you know notification? + +339 +00:21:55,820 --> 00:21:57,880 +Notifications that come. Did you see how + +340 +00:21:57,880 --> 00:22:00,040 +notification is created in Android? There is a + +341 +00:22:00,040 --> 00:22:03,770 +class calledNotification, but this class of + +342 +00:22:03,770 --> 00:22:05,530 +notification has a constructor that takes a lot of + +343 +00:22:05,530 --> 00:22:08,570 +parameters. For example, what is the title of the + +344 +00:22:08,570 --> 00:22:11,430 +notification, the text of the notification, the + +345 +00:22:11,430 --> 00:22:16,530 +icon, does the sound come with it or not, and what + +346 +00:22:16,530 --> 00:22:18,230 +is the sound that comes with it, is there a + +347 +00:22:18,230 --> 00:22:20,890 +vibration in the phone or not, what is the + +348 +00:22:20,890 --> 00:22:23,110 +background color, the color of the line and the + +349 +00:22:23,110 --> 00:22:27,260 +color of the title, what are the settings and what + +350 +00:22:27,260 --> 00:22:30,460 +will happen when I click on it will there be an + +351 +00:22:30,460 --> 00:22:32,500 +action in the notification or not all these + +352 +00:22:32,500 --> 00:22:34,440 +settings will be sent to the notification + +353 +00:22:34,440 --> 00:22:38,340 +constructor so the one who designed the android + +354 +00:22:38,340 --> 00:22:42,780 +library said that if the normal user asks for all + +355 +00:22:42,780 --> 00:22:46,480 +this information it will be difficult to create it + +356 +00:22:46,480 --> 00:22:48,420 +so what did he say? he said that we create a + +357 +00:22:48,420 --> 00:22:51,700 +builder for the notification so for example in + +358 +00:22:51,700 --> 00:22:54,000 +android in order to create a notification you must + +359 +00:22:54,000 --> 00:22:57,790 +first say notification Either in Java or Kotlin + +360 +00:22:57,790 --> 00:23:03,430 +Notification.builder Creates a builder, B for + +361 +00:23:03,430 --> 00:23:07,890 +example, equals new Notification.builder Then in + +362 +00:23:07,890 --> 00:23:11,430 +this builder, you say B dot And it gives you what? + +363 +00:23:12,490 --> 00:23:17,950 +Setter methods For example, setTitle It gives me + +364 +00:23:17,950 --> 00:23:23,240 +the title of the notification B dot setIcon You + +365 +00:23:23,240 --> 00:23:28,520 +give it an icon, B dot set background color, B dot + +366 +00:23:28,520 --> 00:23:30,840 +this and that. In the end, to create a + +367 +00:23:30,840 --> 00:23:36,400 +notification, you say B dot build or create. What + +368 +00:23:36,400 --> 00:23:39,100 +does this return? The notification. Because if + +369 +00:23:39,100 --> 00:23:40,580 +there is an important information that you did not + +370 +00:23:40,580 --> 00:23:43,880 +pass through, this build will give you an + +371 +00:23:43,880 --> 00:23:48,370 +exception.Instead of going to a construction + +372 +00:23:48,370 --> 00:23:52,090 +company and asking them to look at the + +373 +00:23:52,090 --> 00:23:55,630 +documentation to find out what each piece of + +374 +00:23:55,630 --> 00:23:58,850 +information has to say, he went step by step + +375 +00:23:59,570 --> 00:24:03,150 +creation law for the object, okay? So this builder + +376 +00:24:03,150 --> 00:24:06,050 +pattern, as I said, the problem it solves is that + +377 +00:24:06,050 --> 00:24:08,430 +sometimes when we create classes, creating objects + +378 +00:24:08,430 --> 00:24:11,310 +from them requires a lot of parameters. At the + +379 +00:24:11,310 --> 00:24:13,550 +same time, I cannot create an empty constructor + +380 +00:24:13,550 --> 00:24:17,300 +because this information must be passed through So + +381 +00:24:17,300 --> 00:24:19,940 +the constructor has to be there. So how does it + +382 +00:24:19,940 --> 00:24:22,920 +work? How does it make it easier for the user to + +383 +00:24:22,920 --> 00:24:26,260 +create? There is a way to use the builder. We try + +384 +00:24:26,260 --> 00:24:29,100 +to change it. Instead of using the constructor, it + +385 +00:24:29,100 --> 00:24:32,820 +uses the setter method. How does it work? The + +386 +00:24:32,820 --> 00:24:38,420 +builderInner class has the same attributes as the + +387 +00:24:38,420 --> 00:24:40,600 +main class that you want to create And there are + +388 +00:24:40,600 --> 00:24:44,260 +setter methods like the ones in the main class The + +389 +00:24:44,260 --> 00:24:45,940 +idea is that I create a builder in the beginning + +390 +00:24:45,940 --> 00:24:48,220 +and pass all the information to it through setter + +391 +00:24:48,220 --> 00:24:50,900 +methods And then I tell the builder to create an + +392 +00:24:50,900 --> 00:24:54,940 +object from the class that you have or that you + +393 +00:24:54,940 --> 00:24:58,960 +are inside So it's like a manager with a secretary + +394 +00:25:00,890 --> 00:25:03,150 +I arrange things with the secretary and see what + +395 +00:25:03,150 --> 00:25:05,390 +information is necessary, and when it's complete, + +396 +00:25:05,530 --> 00:25:08,210 +he sends the papers to the manager. This is the + +397 +00:25:08,210 --> 00:25:10,910 +idea of the builder, and as I said, many libraries + +398 +00:25:10,910 --> 00:25:14,050 +use the idea of the builder pattern to facilitate + +399 +00:25:14,050 --> 00:25:18,760 +construction. objects from the classes that have a + +400 +00:25:18,760 --> 00:25:21,220 +constructor that takes a lot of parameters. And + +401 +00:25:21,220 --> 00:25:24,340 +this is the meaning of reading the slides again. + +402 +00:25:24,380 --> 00:25:26,680 +Because in the builder design pattern, we can + +403 +00:25:26,680 --> 00:25:29,280 +solve the issues with a large number of parameters + +404 +00:25:29,280 --> 00:25:34,300 +by providing a constructor with the required + +405 +00:25:34,300 --> 00:25:36,940 +parameters and then... No, let's see before this + +406 +00:25:36,940 --> 00:25:41,460 +slide. When to use? When I have too many arguments + +407 +00:25:41,460 --> 00:25:43,840 +to pass from the client program via the + +408 +00:25:43,840 --> 00:25:47,390 +constructor. A large number of arguments need to + +409 +00:25:47,390 --> 00:25:51,390 +go through the constructor that can be error + +410 +00:25:51,390 --> 00:25:53,850 +-prone. What does error-prone mean? It means error + +411 +00:25:53,850 --> 00:25:57,330 +-prone in a big way. You make mistakes. You don't + +412 +00:25:57,330 --> 00:26:00,430 +know what each parameter means. Because most of + +413 +00:26:00,430 --> 00:26:02,490 +the time, the type of parameters are the same. + +414 +00:26:03,200 --> 00:26:05,360 +Sometimes there are 5 stains behind each other. + +415 +00:26:08,980 --> 00:26:13,620 +It is hard to + +416 +00:26:13,620 --> 00:26:14,920 +maintain the order of the argument. + +417 +00:26:18,200 --> 00:26:20,540 +The other case is that sometimes you have a + +418 +00:26:20,540 --> 00:26:22,940 +constructor with compulsory and optional + +419 +00:26:22,940 --> 00:26:25,040 +information and you can't distinguish what is + +420 +00:26:25,040 --> 00:26:27,480 +compulsory and what is optional. Of course, the + +421 +00:26:27,480 --> 00:26:29,980 +optional can be trained by the null, but through + +422 +00:26:29,980 --> 00:26:32,340 +the builder pattern, you train through setter + +423 +00:26:32,340 --> 00:26:34,760 +methods and it warns you what is compulsory and + +424 +00:26:34,760 --> 00:26:38,780 +what is optional.If things go well and the object + +425 +00:26:38,780 --> 00:26:40,220 +is created, it means that the information that you + +426 +00:26:40,220 --> 00:26:42,920 +passed through is not necessary. If you succeed, + +427 +00:26:43,140 --> 00:26:46,820 +you can pass the required information again. We + +428 +00:26:46,820 --> 00:26:48,880 +can solve this issue with a large number of + +429 +00:26:48,880 --> 00:26:51,180 +parameters by providing a constructor with + +430 +00:26:51,180 --> 00:26:54,130 +required parameters and thendifferent setter + +431 +00:26:54,130 --> 00:26:56,030 +methods to set the optional parameters, but the + +432 +00:26:56,030 --> 00:26:58,490 +problem with this is that the object state will be + +433 +00:26:58,490 --> 00:27:01,950 +inconsistent." Yes, I mean, someone might say, why + +434 +00:27:01,950 --> 00:27:06,430 +do we use builder? Put the constructor empty and + +435 +00:27:06,430 --> 00:27:10,370 +pass the data through setter methods. No, we said + +436 +00:27:10,370 --> 00:27:13,370 +that I use it in cases where the object can't move + +437 +00:27:13,370 --> 00:27:16,850 +without passing data through it. So here, we can't + +438 +00:27:16,850 --> 00:27:19,410 +create notification without giving it the basic + +439 +00:27:19,410 --> 00:27:23,250 +information.Notification is basically to create a + +440 +00:27:23,250 --> 00:27:25,810 +GUI. It wants to draw it. It wants the basic + +441 +00:27:25,810 --> 00:27:29,290 +information to draw it. Notification defines its + +442 +00:27:29,290 --> 00:27:31,150 +dimensions, for example, based on the size of the + +443 +00:27:31,150 --> 00:27:33,950 +text that you passed to it. So how do you want to + +444 +00:27:33,950 --> 00:27:37,990 +do it? Make it empty and then fill it, okay? So + +445 +00:27:37,990 --> 00:27:40,310 +this case also does not solve the problem of + +446 +00:27:40,310 --> 00:27:42,910 +creating an empty constructor because the object + +447 +00:27:42,910 --> 00:27:44,830 +state in this case will be inconsistent. What does + +448 +00:27:44,830 --> 00:27:49,180 +inconsistent mean?I mean it's not solid, it's not + +449 +00:27:49,180 --> 00:27:54,890 +complete, it's incomplete, okay?The solution to + +450 +00:27:54,890 --> 00:27:56,710 +this problem is through Builder Pattern. Builder + +451 +00:27:56,710 --> 00:27:58,930 +Pattern solves this issue with large number of + +452 +00:27:58,930 --> 00:28:01,190 +optional parameters and inconsistent state by + +453 +00:28:01,190 --> 00:28:04,290 +providing a way to build the object step by step. + +454 +00:28:04,470 --> 00:28:08,790 +It provides a + +455 +00:28:08,790 --> 00:28:11,870 +method that will actually retain the final object. + +456 +00:28:11,930 --> 00:28:13,770 +What is this method that returns the final object + +457 +00:28:13,770 --> 00:28:18,670 +that we called create or build? This is a summary + +458 +00:28:18,670 --> 00:28:23,360 +of Builder Pattern.Now we will enter in a new + +459 +00:28:23,360 --> 00:28:27,300 +design pattern for this lecture We will explain + +460 +00:28:27,300 --> 00:28:31,680 +the next lectures Dependency Injection But there + +461 +00:28:31,680 --> 00:28:33,860 +is still a small point that I would like to touch + +462 +00:28:33,860 --> 00:28:36,700 +on which is the subject of assignment that I gave + +463 +00:28:36,700 --> 00:28:39,480 +you I explained this assignment, right? I opened + +464 +00:28:39,480 --> 00:28:42,320 +the assignment on the model and I left it for + +465 +00:28:42,320 --> 00:28:45,600 +about two weeks For example, for those who are + +466 +00:28:45,600 --> 00:28:47,180 +still weak in GUI or something like that, if they + +467 +00:28:47,180 --> 00:28:49,120 +want to learn something, they should learn so that + +468 +00:28:49,120 --> 00:28:50,620 +they can do the assignmentbecause the first part + +469 +00:28:50,620 --> 00:28:53,780 +is the tabs explanation, right? I want to make a + +470 +00:28:53,780 --> 00:28:56,500 +new class and put it in the program to show the + +471 +00:28:56,500 --> 00:29:01,680 +tab because the second task that you need which is + +472 +00:29:01,680 --> 00:29:04,880 +in the slider is the search programWhat is a + +473 +00:29:04,880 --> 00:29:07,620 +search program? In search programs, there is a + +474 +00:29:07,620 --> 00:29:11,640 +search and sometimes the search is divided into + +475 +00:29:11,640 --> 00:29:13,720 +criteria. For example, I want to search for + +476 +00:29:13,720 --> 00:29:14,780 +employee data. + +477 +00:29:17,020 --> 00:29:20,800 +You put here what you want to search for and + +478 +00:29:20,800 --> 00:29:23,600 +choose search from here. Criteria, what does + +479 +00:29:23,600 --> 00:29:25,400 +search criteria mean? Do you want to search for + +480 +00:29:25,400 --> 00:29:29,340 +the first name? Or the last name? Or the title of + +481 +00:29:29,340 --> 00:29:33,220 +the employee? Or his job title? You need to + +482 +00:29:33,220 --> 00:29:38,100 +specify what you want to search for For example, + +483 +00:29:38,340 --> 00:29:44,060 +if I deal with a program with two employees, each + +484 +00:29:44,060 --> 00:29:46,460 +employee represents an object of the type of + +485 +00:29:46,460 --> 00:29:48,720 +employee, the class is called employee The basic + +486 +00:29:48,720 --> 00:29:50,940 +data of the employee, which is for example ID, + +487 +00:29:51,160 --> 00:29:56,960 +first name, last name and job title ok? the + +488 +00:29:56,960 --> 00:30:01,240 +objects in any job can be in a database and I read + +489 +00:30:01,240 --> 00:30:04,840 +from it it can be in an ArrayList it is for + +490 +00:30:04,840 --> 00:30:06,980 +facilitation suppose that you have an ArrayList + +491 +00:30:06,980 --> 00:30:10,340 +from what? from what type? from employee type you + +492 +00:30:10,340 --> 00:30:12,840 +make a class employee you make objects from it you + +493 +00:30:12,840 --> 00:30:14,500 +fill them with any data and you put them in this + +494 +00:30:14,500 --> 00:30:17,980 +ArrayList if we make a simple face program we + +495 +00:30:17,980 --> 00:30:20,900 +search in this ArrayList what does it mean? for + +496 +00:30:20,900 --> 00:30:24,470 +example I say here write MohammedOkay? And I + +497 +00:30:24,470 --> 00:30:27,330 +choose from here what? For example, first name. + +498 +00:30:27,730 --> 00:30:31,170 +And I do a search and I get here all the employees + +499 +00:30:31,170 --> 00:30:34,310 +whose name is Mohamed. On the basis of, for + +500 +00:30:34,310 --> 00:30:36,130 +example, the program. Then I double click on this + +501 +00:30:36,130 --> 00:30:38,590 +and it gives me details. But this is not what we + +502 +00:30:38,590 --> 00:30:41,210 +want to do in this game. I can write here Gaza, + +503 +00:30:41,350 --> 00:30:43,440 +for example. and then we choose the search + +504 +00:30:43,440 --> 00:30:45,540 +criteria, for example, the title of the search if + +505 +00:30:45,540 --> 00:30:48,460 +it is one of the attributes of the title and I say + +506 +00:30:48,460 --> 00:30:49,900 +search and it brings me all the employees whose + +507 +00:30:49,900 --> 00:30:54,240 +title is Gaza. What is required from us? We need + +508 +00:30:54,240 --> 00:30:57,960 +to design this program to be extendable. What does + +509 +00:30:57,960 --> 00:31:01,680 +extendable mean? For example, we want to search + +510 +00:31:01,680 --> 00:31:04,780 +for the first name. I want to create a class + +511 +00:31:14,830 --> 00:31:20,570 +search by name search + +512 +00:31:20,570 --> 00:31:29,670 +by name search + +513 +00:31:29,670 --> 00:31:36,300 +by name search by name search by name Okay, from + +514 +00:31:36,300 --> 00:31:39,140 +the attributes of the employee in the title I go + +515 +00:31:39,140 --> 00:31:43,200 +and make a new class Okay, I do the search in the + +516 +00:31:43,200 --> 00:31:45,780 +title Same thing, I take the class and throw it in + +517 +00:31:45,780 --> 00:31:49,660 +the book Okay, I run the program I find out that I + +518 +00:31:49,660 --> 00:31:51,640 +have a new search criteria in addition to the name + +519 +00:31:51,640 --> 00:31:58,060 +What? Search by address If I choose it and write a + +520 +00:31:58,060 --> 00:32:03,640 +word here I search in all employee data In the + +521 +00:32:03,640 --> 00:32:08,820 +address of the word that you wrote here, okay? So + +522 +00:32:08,820 --> 00:32:12,620 +the fields of this search, you change them into + +523 +00:32:12,620 --> 00:32:16,660 +classes. Put and remove. That's it. Okay? We will + +524 +00:32:16,660 --> 00:32:19,280 +not change anything in the GUI. Think about how + +525 +00:32:19,280 --> 00:32:21,460 +you do it. I know that these questions are + +526 +00:32:21,460 --> 00:32:24,240 +challenging in a way, okay? But this is + +527 +00:32:24,240 --> 00:32:26,580 +established tomorrow. This is a service available + +528 +00:32:26,580 --> 00:32:29,720 +in many applications and many websites. If you + +529 +00:32:29,720 --> 00:32:31,320 +need to use it, you will find a service like this. + +530 +00:32:31,760 --> 00:32:34,640 +Instead of coding everything and modifying it in + +531 +00:32:34,640 --> 00:32:39,220 +the combo box or the drop list that comes up and + +532 +00:32:39,220 --> 00:32:41,780 +fix it and your boss comes and tells you that you + +533 +00:32:41,780 --> 00:32:46,560 +need to work for a week, you still need to modify + +534 +00:32:46,560 --> 00:32:49,620 +the interface and add this and that, you need to + +535 +00:32:49,620 --> 00:32:52,520 +work for a week. No, you need to put a class and + +536 +00:32:52,520 --> 00:32:56,690 +then what? Try it, work on it, okay? Work on it, + +537 +00:32:56,730 --> 00:33:02,130 +learn a new way of thinking in code design, okay? + +538 +00:33:02,550 --> 00:33:06,730 +Okay guys, work on it, I'll give you all of it, + +539 +00:33:06,930 --> 00:33:09,850 +make it a desktop, web, mobile, whatever you want, + +540 +00:33:10,190 --> 00:33:10,690 +okay? + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/iFbuKNu9BGs_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/iFbuKNu9BGs_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..714a7c6548942d5c9488457ad75d52ce46211177 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/iFbuKNu9BGs_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 2718, "start": 6.12, "end": 27.18, "text": "Okay guys, peace be upon you. This lecture, God willing, will take a new design pattern. In the previous lecture, we finished the factory design pattern. We said that the factory is one of the creation patterns and has a relationship with the construction of objects. The main goal is that it combines the process of constructing objects in one class on the basis of change. If there is a change in one place,", "tokens": [8297, 1074, 11, 4336, 312, 3564, 291, 13, 639, 7991, 11, 1265, 4950, 11, 486, 747, 257, 777, 1715, 5102, 13, 682, 264, 3894, 7991, 11, 321, 4335, 264, 9265, 1715, 5102, 13, 492, 848, 300, 264, 9265, 307, 472, 295, 264, 8016, 8294, 293, 575, 257, 2480, 365, 264, 6435, 295, 6565, 13, 440, 2135, 3387, 307, 300, 309, 29520, 264, 1399, 295, 39969, 6565, 294, 472, 1508, 322, 264, 5143, 295, 1319, 13, 759, 456, 307, 257, 1319, 294, 472, 1081, 11], "avg_logprob": -0.4764705966500675, "compression_ratio": 1.7705627705627707, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 6.12, "end": 6.4, "word": "Okay", "probability": 0.2222900390625}, {"start": 6.4, "end": 6.62, "word": " guys,", "probability": 0.52587890625}, {"start": 6.7, "end": 6.86, "word": " peace", "probability": 0.1553955078125}, {"start": 6.86, "end": 7.02, "word": " be", "probability": 0.9033203125}, {"start": 7.02, "end": 7.02, "word": " upon", "probability": 0.89306640625}, {"start": 7.02, "end": 7.16, "word": " you.", "probability": 0.97802734375}, {"start": 7.46, "end": 7.78, "word": " This", "probability": 0.393310546875}, {"start": 7.78, "end": 8.14, "word": " lecture,", "probability": 0.84912109375}, {"start": 8.4, "end": 8.54, "word": " God", "probability": 0.36669921875}, {"start": 8.54, "end": 8.62, "word": " willing,", "probability": 0.74365234375}, {"start": 8.74, "end": 9.06, "word": " will", "probability": 0.63720703125}, {"start": 9.06, "end": 9.26, "word": " take", "probability": 0.50537109375}, {"start": 9.26, "end": 9.36, "word": " a", "probability": 0.432373046875}, {"start": 9.36, "end": 9.38, "word": " new", "probability": 0.8896484375}, {"start": 9.38, "end": 9.66, "word": " design", "probability": 0.86083984375}, {"start": 9.66, "end": 10.08, "word": " pattern.", "probability": 0.89697265625}, {"start": 10.9, "end": 11.34, "word": " In", "probability": 0.68212890625}, {"start": 11.34, "end": 11.38, "word": " the", "probability": 0.8798828125}, {"start": 11.38, "end": 11.38, "word": " previous", "probability": 0.400146484375}, {"start": 11.38, "end": 11.92, "word": " lecture,", "probability": 0.89013671875}, {"start": 12.06, "end": 12.5, "word": " we", "probability": 0.93212890625}, {"start": 12.5, "end": 12.5, "word": " finished", "probability": 0.36962890625}, {"start": 12.5, "end": 13.08, "word": " the", "probability": 0.8125}, {"start": 13.08, "end": 13.46, "word": " factory", "probability": 0.677734375}, {"start": 13.46, "end": 13.82, "word": " design", "probability": 0.96240234375}, {"start": 13.82, "end": 14.38, "word": " pattern.", "probability": 0.88671875}, {"start": 15.1, "end": 15.24, "word": " We", "probability": 0.1156005859375}, {"start": 15.24, "end": 15.24, "word": " said", "probability": 0.3349609375}, {"start": 15.24, "end": 15.38, "word": " that", "probability": 0.86865234375}, {"start": 15.38, "end": 15.44, "word": " the", "probability": 0.8193359375}, {"start": 15.44, "end": 15.8, "word": " factory", "probability": 0.8818359375}, {"start": 15.8, "end": 16.14, "word": " is", "probability": 0.90087890625}, {"start": 16.14, "end": 16.42, "word": " one", "probability": 0.88525390625}, {"start": 16.42, "end": 16.6, "word": " of", "probability": 0.97119140625}, {"start": 16.6, "end": 16.68, "word": " the", "probability": 0.89990234375}, {"start": 16.68, "end": 17.06, "word": " creation", "probability": 0.42041015625}, {"start": 17.06, "end": 17.46, "word": " patterns", "probability": 0.84423828125}, {"start": 17.46, "end": 17.78, "word": " and", "probability": 0.30322265625}, {"start": 17.78, "end": 17.92, "word": " has", "probability": 0.437744140625}, {"start": 17.92, "end": 18.02, "word": " a", "probability": 0.477783203125}, {"start": 18.02, "end": 18.28, "word": " relationship", "probability": 0.51513671875}, {"start": 18.28, "end": 18.44, "word": " with", "probability": 0.49169921875}, {"start": 18.44, "end": 18.52, "word": " the", "probability": 0.401611328125}, {"start": 18.52, "end": 18.64, "word": " construction", "probability": 0.8583984375}, {"start": 18.64, "end": 18.8, "word": " of", "probability": 0.97314453125}, {"start": 18.8, "end": 19.22, "word": " objects.", "probability": 0.95654296875}, {"start": 19.78, "end": 19.82, "word": " The", "probability": 0.85009765625}, {"start": 19.82, "end": 19.82, "word": " main", "probability": 0.7099609375}, {"start": 19.82, "end": 20.3, "word": " goal", "probability": 0.58251953125}, {"start": 20.3, "end": 20.64, "word": " is", "probability": 0.62060546875}, {"start": 20.64, "end": 20.78, "word": " that", "probability": 0.3701171875}, {"start": 20.78, "end": 20.9, "word": " it", "probability": 0.7578125}, {"start": 20.9, "end": 21.16, "word": " combines", "probability": 0.281494140625}, {"start": 21.16, "end": 21.24, "word": " the", "probability": 0.86669921875}, {"start": 21.24, "end": 21.46, "word": " process", "probability": 0.86865234375}, {"start": 21.46, "end": 21.6, "word": " of", "probability": 0.97314453125}, {"start": 21.6, "end": 21.82, "word": " constructing", "probability": 0.509765625}, {"start": 21.82, "end": 22.44, "word": " objects", "probability": 0.82373046875}, {"start": 22.44, "end": 22.96, "word": " in", "probability": 0.89208984375}, {"start": 22.96, "end": 23.0, "word": " one", "probability": 0.62841796875}, {"start": 23.0, "end": 23.86, "word": " class", "probability": 0.9521484375}, {"start": 23.86, "end": 24.56, "word": " on", "probability": 0.1968994140625}, {"start": 24.56, "end": 24.64, "word": " the", "probability": 0.92578125}, {"start": 24.64, "end": 24.78, "word": " basis", "probability": 0.9423828125}, {"start": 24.78, "end": 24.88, "word": " of", "probability": 0.857421875}, {"start": 24.88, "end": 25.18, "word": " change.", "probability": 0.7216796875}, {"start": 25.5, "end": 25.78, "word": " If", "probability": 0.68798828125}, {"start": 25.78, "end": 25.94, "word": " there", "probability": 0.2457275390625}, {"start": 25.94, "end": 26.04, "word": " is", "probability": 0.7587890625}, {"start": 26.04, "end": 26.22, "word": " a", "probability": 0.6982421875}, {"start": 26.22, "end": 26.46, "word": " change", "probability": 0.78369140625}, {"start": 26.46, "end": 26.6, "word": " in", "probability": 0.83740234375}, {"start": 26.6, "end": 26.72, "word": " one", "probability": 0.79345703125}, {"start": 26.72, "end": 27.18, "word": " place,", "probability": 0.83740234375}], "temperature": 1.0}, {"id": 2, "seek": 5598, "start": 28.58, "end": 55.98, "text": " whatever the type of objects they create, in the end, it returns an object of the type of interface or superclass. This means that the client does not need to know what types of objects I have, he only knows the type of superclass. This means that even if I add additional objects, the code of the client will not change. Because in the end, he sees that they are the type of app. And we also saw in the previous lecture a new design for the factory using the Reflection API, which actually makes", "tokens": [2035, 264, 2010, 295, 6565, 436, 1884, 11, 294, 264, 917, 11, 309, 11247, 364, 2657, 295, 264, 2010, 295, 9226, 420, 1687, 11665, 13, 639, 1355, 300, 264, 6423, 775, 406, 643, 281, 458, 437, 3467, 295, 6565, 286, 362, 11, 415, 787, 3255, 264, 2010, 295, 1687, 11665, 13, 639, 1355, 300, 754, 498, 286, 909, 4497, 6565, 11, 264, 3089, 295, 264, 6423, 486, 406, 1319, 13, 1436, 294, 264, 917, 11, 415, 8194, 300, 436, 366, 264, 2010, 295, 724, 13, 400, 321, 611, 1866, 294, 264, 3894, 7991, 257, 777, 1715, 337, 264, 9265, 1228, 264, 16957, 5450, 9362, 11, 597, 767, 1669], "avg_logprob": -0.4048165050121622, "compression_ratio": 1.8754716981132076, "no_speech_prob": 1.6689300537109375e-06, "words": [{"start": 28.58, "end": 28.98, "word": " whatever", "probability": 0.413330078125}, {"start": 28.98, "end": 29.28, "word": " the", "probability": 0.22900390625}, {"start": 29.28, "end": 29.38, "word": " type", "probability": 0.59521484375}, {"start": 29.38, "end": 29.48, "word": " of", "probability": 0.94384765625}, {"start": 29.48, "end": 29.82, "word": " objects", "probability": 0.62158203125}, {"start": 29.82, "end": 30.0, "word": " they", "probability": 0.338134765625}, {"start": 30.0, "end": 30.26, "word": " create,", "probability": 0.36279296875}, {"start": 30.48, "end": 30.56, "word": " in", "probability": 0.264892578125}, {"start": 30.56, "end": 30.64, "word": " the", "probability": 0.9072265625}, {"start": 30.64, "end": 30.8, "word": " end,", "probability": 0.8984375}, {"start": 30.92, "end": 31.0, "word": " it", "probability": 0.30615234375}, {"start": 31.0, "end": 31.16, "word": " returns", "probability": 0.59375}, {"start": 31.16, "end": 31.66, "word": " an", "probability": 0.5380859375}, {"start": 31.66, "end": 31.66, "word": " object", "probability": 0.962890625}, {"start": 31.66, "end": 31.78, "word": " of", "probability": 0.389404296875}, {"start": 31.78, "end": 32.12, "word": " the", "probability": 0.60107421875}, {"start": 32.12, "end": 32.16, "word": " type", "probability": 0.58740234375}, {"start": 32.16, "end": 32.38, "word": " of", "probability": 0.74169921875}, {"start": 32.38, "end": 32.96, "word": " interface", "probability": 0.7431640625}, {"start": 32.96, "end": 33.2, "word": " or", "probability": 0.84033203125}, {"start": 33.2, "end": 34.06, "word": " superclass.", "probability": 0.802001953125}, {"start": 34.58, "end": 34.7, "word": " This", "probability": 0.67041015625}, {"start": 34.7, "end": 34.96, "word": " means", "probability": 0.92333984375}, {"start": 34.96, "end": 35.14, "word": " that", "probability": 0.85595703125}, {"start": 35.14, "end": 35.24, "word": " the", "probability": 0.8486328125}, {"start": 35.24, "end": 35.6, "word": " client", "probability": 0.91357421875}, {"start": 35.6, "end": 35.88, "word": " does", "probability": 0.5595703125}, {"start": 35.88, "end": 35.88, "word": " not", "probability": 0.9482421875}, {"start": 35.88, "end": 36.54, "word": " need", "probability": 0.6220703125}, {"start": 36.54, "end": 36.8, "word": " to", "probability": 0.9677734375}, {"start": 36.8, "end": 37.0, "word": " know", "probability": 0.85302734375}, {"start": 37.0, "end": 37.22, "word": " what", "probability": 0.57373046875}, {"start": 37.22, "end": 37.42, "word": " types", "probability": 0.43017578125}, {"start": 37.42, "end": 37.52, "word": " of", "probability": 0.966796875}, {"start": 37.52, "end": 37.9, "word": " objects", "probability": 0.95703125}, {"start": 37.9, "end": 38.06, "word": " I", "probability": 0.283935546875}, {"start": 38.06, "end": 38.5, "word": " have,", "probability": 0.9052734375}, {"start": 38.54, "end": 38.66, "word": " he", "probability": 0.461669921875}, {"start": 38.66, "end": 38.9, "word": " only", "probability": 0.626953125}, {"start": 38.9, "end": 38.9, "word": " knows", "probability": 0.6962890625}, {"start": 38.9, "end": 39.52, "word": " the", "probability": 0.609375}, {"start": 39.52, "end": 39.52, "word": " type", "probability": 0.849609375}, {"start": 39.52, "end": 40.14, "word": " of", "probability": 0.9599609375}, {"start": 40.14, "end": 40.78, "word": " superclass.", "probability": 0.877685546875}, {"start": 40.86, "end": 41.0, "word": " This", "probability": 0.82470703125}, {"start": 41.0, "end": 41.26, "word": " means", "probability": 0.9345703125}, {"start": 41.26, "end": 41.42, "word": " that", "probability": 0.91162109375}, {"start": 41.42, "end": 41.8, "word": " even", "probability": 0.794921875}, {"start": 41.8, "end": 41.98, "word": " if", "probability": 0.94140625}, {"start": 41.98, "end": 41.98, "word": " I", "probability": 0.66259765625}, {"start": 41.98, "end": 42.2, "word": " add", "probability": 0.8046875}, {"start": 42.2, "end": 43.08, "word": " additional", "probability": 0.7197265625}, {"start": 43.08, "end": 43.08, "word": " objects,", "probability": 0.962890625}, {"start": 44.32, "end": 44.7, "word": " the", "probability": 0.89599609375}, {"start": 44.7, "end": 44.84, "word": " code", "probability": 0.67822265625}, {"start": 44.84, "end": 44.96, "word": " of", "probability": 0.8173828125}, {"start": 44.96, "end": 45.0, "word": " the", "probability": 0.91015625}, {"start": 45.0, "end": 45.26, "word": " client", "probability": 0.93896484375}, {"start": 45.26, "end": 45.42, "word": " will", "probability": 0.83740234375}, {"start": 45.42, "end": 45.48, "word": " not", "probability": 0.923828125}, {"start": 45.48, "end": 45.88, "word": " change.", "probability": 0.8623046875}, {"start": 46.04, "end": 46.18, "word": " Because", "probability": 0.77587890625}, {"start": 46.18, "end": 46.28, "word": " in", "probability": 0.5859375}, {"start": 46.28, "end": 46.4, "word": " the", "probability": 0.92578125}, {"start": 46.4, "end": 46.52, "word": " end,", "probability": 0.91259765625}, {"start": 46.6, "end": 46.68, "word": " he", "probability": 0.623046875}, {"start": 46.68, "end": 46.96, "word": " sees", "probability": 0.7509765625}, {"start": 46.96, "end": 47.16, "word": " that", "probability": 0.492431640625}, {"start": 47.16, "end": 47.28, "word": " they", "probability": 0.62890625}, {"start": 47.28, "end": 47.32, "word": " are", "probability": 0.89111328125}, {"start": 47.32, "end": 47.44, "word": " the", "probability": 0.509765625}, {"start": 47.44, "end": 47.64, "word": " type", "probability": 0.7802734375}, {"start": 47.64, "end": 48.4, "word": " of", "probability": 0.88720703125}, {"start": 48.4, "end": 48.62, "word": " app.", "probability": 0.73583984375}, {"start": 48.68, "end": 48.8, "word": " And", "probability": 0.56494140625}, {"start": 48.8, "end": 49.0, "word": " we", "probability": 0.861328125}, {"start": 49.0, "end": 49.0, "word": " also", "probability": 0.60888671875}, {"start": 49.0, "end": 49.0, "word": " saw", "probability": 0.8837890625}, {"start": 49.0, "end": 49.12, "word": " in", "probability": 0.2010498046875}, {"start": 49.12, "end": 49.62, "word": " the", "probability": 0.65185546875}, {"start": 49.62, "end": 49.7, "word": " previous", "probability": 0.359619140625}, {"start": 49.7, "end": 49.7, "word": " lecture", "probability": 0.8310546875}, {"start": 49.7, "end": 50.06, "word": " a", "probability": 0.223388671875}, {"start": 50.06, "end": 50.06, "word": " new", "probability": 0.90087890625}, {"start": 50.06, "end": 50.4, "word": " design", "probability": 0.953125}, {"start": 50.4, "end": 50.86, "word": " for", "probability": 0.87841796875}, {"start": 50.86, "end": 52.66, "word": " the", "probability": 0.82763671875}, {"start": 52.66, "end": 53.12, "word": " factory", "probability": 0.75341796875}, {"start": 53.12, "end": 53.8, "word": " using", "probability": 0.744140625}, {"start": 53.8, "end": 54.02, "word": " the", "probability": 0.72021484375}, {"start": 54.02, "end": 54.5, "word": " Reflection", "probability": 0.7666015625}, {"start": 54.5, "end": 54.98, "word": " API,", "probability": 0.94677734375}, {"start": 55.62, "end": 55.68, "word": " which", "probability": 0.9140625}, {"start": 55.68, "end": 55.84, "word": " actually", "probability": 0.442626953125}, {"start": 55.84, "end": 55.98, "word": " makes", "probability": 0.73486328125}], "temperature": 1.0}, {"id": 3, "seek": 6589, "start": 59.73, "end": 65.89, "text": "read the class and create an object out of it without having to modify anything", "tokens": [2538, 264, 1508, 293, 1884, 364, 2657, 484, 295, 309, 1553, 1419, 281, 16927, 1340], "avg_logprob": -0.6757812760770321, "compression_ratio": 1.0972222222222223, "no_speech_prob": 1.9073486328125e-06, "words": [{"start": 59.730000000000004, "end": 60.45, "word": "read", "probability": 0.0787353515625}, {"start": 60.45, "end": 61.17, "word": " the", "probability": 0.6015625}, {"start": 61.17, "end": 61.41, "word": " class", "probability": 0.8759765625}, {"start": 61.41, "end": 61.59, "word": " and", "probability": 0.650390625}, {"start": 61.59, "end": 61.79, "word": " create", "probability": 0.3759765625}, {"start": 61.79, "end": 62.77, "word": " an", "probability": 0.372802734375}, {"start": 62.77, "end": 63.05, "word": " object", "probability": 0.9755859375}, {"start": 63.05, "end": 63.49, "word": " out", "probability": 0.257080078125}, {"start": 63.49, "end": 63.49, "word": " of", "probability": 0.96630859375}, {"start": 63.49, "end": 63.49, "word": " it", "probability": 0.9013671875}, {"start": 63.49, "end": 63.83, "word": " without", "probability": 0.638671875}, {"start": 63.83, "end": 64.81, "word": " having", "probability": 0.38427734375}, {"start": 64.81, "end": 65.29, "word": " to", "probability": 0.9658203125}, {"start": 65.29, "end": 65.53, "word": " modify", "probability": 0.292236328125}, {"start": 65.53, "end": 65.89, "word": " anything", "probability": 0.78564453125}], "temperature": 1.0}, {"id": 4, "seek": 9042, "start": 67.52, "end": 90.42, "text": " the factory, and we modified the shapes program so that it uses the factory pattern and reaches a stage where it doesn't need any modification of any line of code. And this is the idea of how plugins are made, how programs are made, for example, an update is made to a specific program. An update is not a complete program, it is a new part added to the program.", "tokens": [264, 9265, 11, 293, 321, 15873, 264, 10854, 1461, 370, 300, 309, 4960, 264, 9265, 5102, 293, 14235, 257, 3233, 689, 309, 1177, 380, 643, 604, 26747, 295, 604, 1622, 295, 3089, 13, 400, 341, 307, 264, 1558, 295, 577, 33759, 366, 1027, 11, 577, 4268, 366, 1027, 11, 337, 1365, 11, 364, 5623, 307, 1027, 281, 257, 2685, 1461, 13, 1107, 5623, 307, 406, 257, 3566, 1461, 11, 309, 307, 257, 777, 644, 3869, 281, 264, 1461, 13], "avg_logprob": -0.5687500037252903, "compression_ratio": 1.8059701492537314, "no_speech_prob": 5.9604644775390625e-06, "words": [{"start": 67.52, "end": 67.74, "word": " the", "probability": 0.07843017578125}, {"start": 67.74, "end": 68.08, "word": " factory,", "probability": 0.78662109375}, {"start": 68.72, "end": 69.52, "word": " and", "probability": 0.79541015625}, {"start": 69.52, "end": 70.22, "word": " we", "probability": 0.389404296875}, {"start": 70.22, "end": 71.06, "word": " modified", "probability": 0.349609375}, {"start": 71.06, "end": 71.3, "word": " the", "probability": 0.7880859375}, {"start": 71.3, "end": 72.06, "word": " shapes", "probability": 0.6396484375}, {"start": 72.06, "end": 72.06, "word": " program", "probability": 0.5556640625}, {"start": 72.06, "end": 72.38, "word": " so", "probability": 0.300537109375}, {"start": 72.38, "end": 72.5, "word": " that", "probability": 0.69970703125}, {"start": 72.5, "end": 72.6, "word": " it", "probability": 0.423828125}, {"start": 72.6, "end": 72.88, "word": " uses", "probability": 0.1951904296875}, {"start": 72.88, "end": 73.04, "word": " the", "probability": 0.63525390625}, {"start": 73.04, "end": 73.32, "word": " factory", "probability": 0.912109375}, {"start": 73.32, "end": 73.78, "word": " pattern", "probability": 0.86865234375}, {"start": 73.78, "end": 74.64, "word": " and", "probability": 0.48046875}, {"start": 74.64, "end": 74.92, "word": " reaches", "probability": 0.21875}, {"start": 74.92, "end": 75.1, "word": " a", "probability": 0.78271484375}, {"start": 75.1, "end": 75.3, "word": " stage", "probability": 0.432373046875}, {"start": 75.3, "end": 75.56, "word": " where", "probability": 0.62646484375}, {"start": 75.56, "end": 75.56, "word": " it", "probability": 0.39306640625}, {"start": 75.56, "end": 75.72, "word": " doesn't", "probability": 0.638427734375}, {"start": 75.72, "end": 76.02, "word": " need", "probability": 0.525390625}, {"start": 76.02, "end": 76.44, "word": " any", "probability": 0.771484375}, {"start": 76.44, "end": 76.74, "word": " modification", "probability": 0.2325439453125}, {"start": 76.74, "end": 76.88, "word": " of", "probability": 0.29833984375}, {"start": 76.88, "end": 76.98, "word": " any", "probability": 0.857421875}, {"start": 76.98, "end": 77.24, "word": " line", "probability": 0.72900390625}, {"start": 77.24, "end": 78.1, "word": " of", "probability": 0.73583984375}, {"start": 78.1, "end": 78.32, "word": " code.", "probability": 0.9306640625}, {"start": 78.54, "end": 78.92, "word": " And", "probability": 0.52783203125}, {"start": 78.92, "end": 79.06, "word": " this", "probability": 0.771484375}, {"start": 79.06, "end": 79.14, "word": " is", "probability": 0.86328125}, {"start": 79.14, "end": 79.3, "word": " the", "probability": 0.49365234375}, {"start": 79.3, "end": 79.3, "word": " idea", "probability": 0.77392578125}, {"start": 79.3, "end": 79.5, "word": " of", "probability": 0.73681640625}, {"start": 79.5, "end": 79.64, "word": " how", "probability": 0.7646484375}, {"start": 79.64, "end": 80.12, "word": " plugins", "probability": 0.54345703125}, {"start": 80.12, "end": 80.36, "word": " are", "probability": 0.89892578125}, {"start": 80.36, "end": 80.62, "word": " made,", "probability": 0.6748046875}, {"start": 80.82, "end": 81.1, "word": " how", "probability": 0.370361328125}, {"start": 81.1, "end": 81.5, "word": " programs", "probability": 0.62890625}, {"start": 81.5, "end": 81.62, "word": " are", "probability": 0.5849609375}, {"start": 81.62, "end": 81.78, "word": " made,", "probability": 0.29052734375}, {"start": 81.92, "end": 82.02, "word": " for", "probability": 0.78955078125}, {"start": 82.02, "end": 82.18, "word": " example,", "probability": 0.93994140625}, {"start": 82.32, "end": 82.36, "word": " an", "probability": 0.2181396484375}, {"start": 82.36, "end": 82.78, "word": " update", "probability": 0.88916015625}, {"start": 82.78, "end": 83.34, "word": " is", "probability": 0.303466796875}, {"start": 83.34, "end": 83.52, "word": " made", "probability": 0.6279296875}, {"start": 83.52, "end": 83.62, "word": " to", "probability": 0.488525390625}, {"start": 83.62, "end": 83.72, "word": " a", "probability": 0.93701171875}, {"start": 83.72, "end": 83.72, "word": " specific", "probability": 0.347412109375}, {"start": 83.72, "end": 84.2, "word": " program.", "probability": 0.85107421875}, {"start": 84.98, "end": 85.2, "word": " An", "probability": 0.31494140625}, {"start": 85.2, "end": 85.6, "word": " update", "probability": 0.853515625}, {"start": 85.6, "end": 85.98, "word": " is", "probability": 0.77197265625}, {"start": 85.98, "end": 86.28, "word": " not", "probability": 0.63818359375}, {"start": 86.28, "end": 87.48, "word": " a", "probability": 0.5927734375}, {"start": 87.48, "end": 88.14, "word": " complete", "probability": 0.479248046875}, {"start": 88.14, "end": 88.14, "word": " program,", "probability": 0.8818359375}, {"start": 88.3, "end": 88.4, "word": " it", "probability": 0.47607421875}, {"start": 88.4, "end": 88.58, "word": " is", "probability": 0.67431640625}, {"start": 88.58, "end": 88.94, "word": " a", "probability": 0.78369140625}, {"start": 88.94, "end": 89.06, "word": " new", "probability": 0.84765625}, {"start": 89.06, "end": 89.46, "word": " part", "probability": 0.5830078125}, {"start": 89.46, "end": 89.7, "word": " added", "probability": 0.262939453125}, {"start": 89.7, "end": 90.0, "word": " to", "probability": 0.95947265625}, {"start": 90.0, "end": 90.08, "word": " the", "probability": 0.8818359375}, {"start": 90.08, "end": 90.42, "word": " program.", "probability": 0.8701171875}], "temperature": 1.0}, {"id": 5, "seek": 10255, "start": 91.09, "end": 102.55, "text": "In this addition, you notice that it is installed on the program and it starts working without needing to modify the existing code that is downloaded on the program, for example, on the phone or on the device of the client", "tokens": [4575, 341, 4500, 11, 291, 3449, 300, 309, 307, 8899, 322, 264, 1461, 293, 309, 3719, 1364, 1553, 18006, 281, 16927, 264, 6741, 3089, 300, 307, 21748, 322, 264, 1461, 11, 337, 1365, 11, 322, 264, 2593, 420, 322, 264, 4302, 295, 264, 6423], "avg_logprob": -0.6263888888888889, "compression_ratio": 1.5857142857142856, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 91.09, "end": 91.45, "word": "In", "probability": 0.4189453125}, {"start": 91.45, "end": 91.65, "word": " this", "probability": 0.458740234375}, {"start": 91.65, "end": 91.95, "word": " addition,", "probability": 0.363037109375}, {"start": 92.11, "end": 92.11, "word": " you", "probability": 0.4375}, {"start": 92.11, "end": 92.23, "word": " notice", "probability": 0.31640625}, {"start": 92.23, "end": 92.39, "word": " that", "probability": 0.77197265625}, {"start": 92.39, "end": 92.45, "word": " it", "probability": 0.39501953125}, {"start": 92.45, "end": 92.61, "word": " is", "probability": 0.56005859375}, {"start": 92.61, "end": 92.81, "word": " installed", "probability": 0.380615234375}, {"start": 92.81, "end": 92.95, "word": " on", "probability": 0.6298828125}, {"start": 92.95, "end": 93.01, "word": " the", "probability": 0.72412109375}, {"start": 93.01, "end": 93.29, "word": " program", "probability": 0.2275390625}, {"start": 93.29, "end": 93.61, "word": " and", "probability": 0.76318359375}, {"start": 93.61, "end": 93.73, "word": " it", "probability": 0.344970703125}, {"start": 93.73, "end": 93.91, "word": " starts", "probability": 0.290771484375}, {"start": 93.91, "end": 94.53, "word": " working", "probability": 0.615234375}, {"start": 94.53, "end": 95.25, "word": " without", "probability": 0.7392578125}, {"start": 95.25, "end": 95.77, "word": " needing", "probability": 0.29736328125}, {"start": 95.77, "end": 95.99, "word": " to", "probability": 0.6591796875}, {"start": 95.99, "end": 96.33, "word": " modify", "probability": 0.246337890625}, {"start": 96.33, "end": 96.71, "word": " the", "probability": 0.712890625}, {"start": 96.71, "end": 97.29, "word": " existing", "probability": 0.7783203125}, {"start": 97.29, "end": 97.33, "word": " code", "probability": 0.8759765625}, {"start": 97.33, "end": 97.85, "word": " that", "probability": 0.33544921875}, {"start": 97.85, "end": 98.13, "word": " is", "probability": 0.4599609375}, {"start": 98.13, "end": 98.35, "word": " downloaded", "probability": 0.53759765625}, {"start": 98.35, "end": 98.63, "word": " on", "probability": 0.56201171875}, {"start": 98.63, "end": 98.75, "word": " the", "probability": 0.845703125}, {"start": 98.75, "end": 99.11, "word": " program,", "probability": 0.286865234375}, {"start": 99.31, "end": 99.33, "word": " for", "probability": 0.40380859375}, {"start": 99.33, "end": 99.79, "word": " example,", "probability": 0.94580078125}, {"start": 100.21, "end": 100.35, "word": " on", "probability": 0.7490234375}, {"start": 100.35, "end": 100.45, "word": " the", "probability": 0.76318359375}, {"start": 100.45, "end": 100.69, "word": " phone", "probability": 0.34619140625}, {"start": 100.69, "end": 101.17, "word": " or", "probability": 0.9296875}, {"start": 101.17, "end": 101.37, "word": " on", "probability": 0.5908203125}, {"start": 101.37, "end": 101.75, "word": " the", "probability": 0.859375}, {"start": 101.75, "end": 102.03, "word": " device", "probability": 0.76806640625}, {"start": 102.03, "end": 102.17, "word": " of", "probability": 0.52294921875}, {"start": 102.17, "end": 102.27, "word": " the", "probability": 0.85595703125}, {"start": 102.27, "end": 102.55, "word": " client", "probability": 0.8759765625}], "temperature": 1.0}, {"id": 6, "seek": 12237, "start": 103.91, "end": 122.37, "text": " Ok, we are still in the topic of creation patterns, and today I will explain a new design pattern, which is the simplest design pattern available with us, it is called Build-up Design Pattern. It is explained in the slides, not directly after the factory, I mean the design pattern, if you look at the slides, you will find it before", "tokens": [3477, 11, 321, 366, 920, 294, 264, 4829, 295, 8016, 8294, 11, 293, 965, 286, 486, 2903, 257, 777, 1715, 5102, 11, 597, 307, 264, 22811, 1715, 5102, 2435, 365, 505, 11, 309, 307, 1219, 11875, 12, 1010, 12748, 34367, 77, 13, 467, 307, 8825, 294, 264, 9788, 11, 406, 3838, 934, 264, 9265, 11, 286, 914, 264, 1715, 5102, 11, 498, 291, 574, 412, 264, 9788, 11, 291, 486, 915, 309, 949], "avg_logprob": -0.5084459467514141, "compression_ratio": 1.6954314720812182, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 103.91000000000001, "end": 104.29, "word": " Ok,", "probability": 0.1512451171875}, {"start": 104.75, "end": 105.07, "word": " we", "probability": 0.72412109375}, {"start": 105.07, "end": 105.13, "word": " are", "probability": 0.26171875}, {"start": 105.13, "end": 105.31, "word": " still", "probability": 0.8671875}, {"start": 105.31, "end": 105.55, "word": " in", "probability": 0.368896484375}, {"start": 105.55, "end": 105.61, "word": " the", "probability": 0.634765625}, {"start": 105.61, "end": 105.81, "word": " topic", "probability": 0.262939453125}, {"start": 105.81, "end": 105.91, "word": " of", "probability": 0.93310546875}, {"start": 105.91, "end": 106.29, "word": " creation", "probability": 0.3525390625}, {"start": 106.29, "end": 106.91, "word": " patterns,", "probability": 0.64208984375}, {"start": 107.29, "end": 107.63, "word": " and", "probability": 0.6943359375}, {"start": 107.63, "end": 107.81, "word": " today", "probability": 0.79052734375}, {"start": 107.81, "end": 107.93, "word": " I", "probability": 0.85791015625}, {"start": 107.93, "end": 107.97, "word": " will", "probability": 0.73876953125}, {"start": 107.97, "end": 108.11, "word": " explain", "probability": 0.82763671875}, {"start": 108.11, "end": 108.27, "word": " a", "probability": 0.67724609375}, {"start": 108.27, "end": 108.27, "word": " new", "probability": 0.86083984375}, {"start": 108.27, "end": 108.49, "word": " design", "probability": 0.6640625}, {"start": 108.49, "end": 108.81, "word": " pattern,", "probability": 0.89501953125}, {"start": 109.19, "end": 109.35, "word": " which", "probability": 0.41796875}, {"start": 109.35, "end": 109.43, "word": " is", "probability": 0.9306640625}, {"start": 109.43, "end": 109.53, "word": " the", "probability": 0.837890625}, {"start": 109.53, "end": 109.71, "word": " simplest", "probability": 0.90283203125}, {"start": 109.71, "end": 110.13, "word": " design", "probability": 0.52099609375}, {"start": 110.13, "end": 110.43, "word": " pattern", "probability": 0.861328125}, {"start": 110.43, "end": 110.75, "word": " available", "probability": 0.259765625}, {"start": 110.75, "end": 110.89, "word": " with", "probability": 0.65380859375}, {"start": 110.89, "end": 111.17, "word": " us,", "probability": 0.92041015625}, {"start": 111.69, "end": 111.87, "word": " it", "probability": 0.18603515625}, {"start": 111.87, "end": 111.89, "word": " is", "probability": 0.62890625}, {"start": 111.89, "end": 112.13, "word": " called", "probability": 0.7421875}, {"start": 112.13, "end": 112.49, "word": " Build", "probability": 0.5224609375}, {"start": 112.49, "end": 112.65, "word": "-up", "probability": 0.5147705078125}, {"start": 112.65, "end": 112.99, "word": " Design", "probability": 0.6044921875}, {"start": 112.99, "end": 113.45, "word": " Pattern.", "probability": 0.958251953125}, {"start": 113.73, "end": 113.87, "word": " It", "probability": 0.85498046875}, {"start": 113.87, "end": 113.99, "word": " is", "probability": 0.83984375}, {"start": 113.99, "end": 114.13, "word": " explained", "probability": 0.2156982421875}, {"start": 114.13, "end": 114.29, "word": " in", "probability": 0.88037109375}, {"start": 114.29, "end": 114.41, "word": " the", "probability": 0.69677734375}, {"start": 114.41, "end": 114.69, "word": " slides,", "probability": 0.9345703125}, {"start": 114.81, "end": 114.95, "word": " not", "probability": 0.70458984375}, {"start": 114.95, "end": 115.37, "word": " directly", "probability": 0.68701171875}, {"start": 115.37, "end": 115.65, "word": " after", "probability": 0.81591796875}, {"start": 115.65, "end": 115.83, "word": " the", "probability": 0.837890625}, {"start": 115.83, "end": 116.19, "word": " factory,", "probability": 0.82080078125}, {"start": 116.67, "end": 116.83, "word": " I", "probability": 0.249267578125}, {"start": 116.83, "end": 116.95, "word": " mean", "probability": 0.9482421875}, {"start": 116.95, "end": 117.15, "word": " the", "probability": 0.419677734375}, {"start": 117.15, "end": 117.39, "word": " design", "probability": 0.91943359375}, {"start": 117.39, "end": 117.83, "word": " pattern,", "probability": 0.8583984375}, {"start": 120.33, "end": 120.69, "word": " if", "probability": 0.44677734375}, {"start": 120.69, "end": 120.83, "word": " you", "probability": 0.9521484375}, {"start": 120.83, "end": 121.01, "word": " look", "probability": 0.70703125}, {"start": 121.01, "end": 121.15, "word": " at", "probability": 0.90625}, {"start": 121.15, "end": 121.29, "word": " the", "probability": 0.9013671875}, {"start": 121.29, "end": 121.55, "word": " slides,", "probability": 0.45361328125}, {"start": 121.63, "end": 121.67, "word": " you", "probability": 0.9345703125}, {"start": 121.67, "end": 121.73, "word": " will", "probability": 0.830078125}, {"start": 121.73, "end": 121.99, "word": " find", "probability": 0.7509765625}, {"start": 121.99, "end": 122.17, "word": " it", "probability": 0.335205078125}, {"start": 122.17, "end": 122.37, "word": " before", "probability": 0.5224609375}], "temperature": 1.0}, {"id": 7, "seek": 13452, "start": 123.54, "end": 134.52, "text": "Name Design Patterns, Factory Method and Singleton. We will come back to them in the next lecture But today we will apply a simple pattern called Builder Design Pattern. What is Builder?", "tokens": [45, 529, 12748, 34367, 3695, 11, 36868, 25285, 293, 7474, 14806, 13, 492, 486, 808, 646, 281, 552, 294, 264, 958, 7991, 583, 965, 321, 486, 3079, 257, 2199, 5102, 1219, 11875, 260, 12748, 34367, 77, 13, 708, 307, 11875, 260, 30], "avg_logprob": -0.46475290974905326, "compression_ratio": 1.3576642335766422, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 123.54, "end": 123.92, "word": "Name", "probability": 0.541351318359375}, {"start": 123.92, "end": 124.26, "word": " Design", "probability": 0.311767578125}, {"start": 124.26, "end": 124.86, "word": " Patterns,", "probability": 0.948974609375}, {"start": 125.18, "end": 125.52, "word": " Factory", "probability": 0.765625}, {"start": 125.52, "end": 125.88, "word": " Method", "probability": 0.84033203125}, {"start": 125.88, "end": 126.02, "word": " and", "probability": 0.4072265625}, {"start": 126.02, "end": 126.42, "word": " Singleton.", "probability": 0.91455078125}, {"start": 126.46, "end": 126.54, "word": " We", "probability": 0.449951171875}, {"start": 126.54, "end": 126.64, "word": " will", "probability": 0.71923828125}, {"start": 126.64, "end": 126.78, "word": " come", "probability": 0.1873779296875}, {"start": 126.78, "end": 126.82, "word": " back", "probability": 0.8671875}, {"start": 126.82, "end": 126.94, "word": " to", "probability": 0.92529296875}, {"start": 126.94, "end": 126.98, "word": " them", "probability": 0.38232421875}, {"start": 126.98, "end": 127.36, "word": " in", "probability": 0.73095703125}, {"start": 127.36, "end": 127.38, "word": " the", "probability": 0.72998046875}, {"start": 127.38, "end": 127.38, "word": " next", "probability": 0.798828125}, {"start": 127.38, "end": 127.98, "word": " lecture", "probability": 0.76025390625}, {"start": 127.98, "end": 128.84, "word": " But", "probability": 0.273681640625}, {"start": 128.84, "end": 129.06, "word": " today", "probability": 0.60498046875}, {"start": 129.06, "end": 129.2, "word": " we", "probability": 0.66845703125}, {"start": 129.2, "end": 129.26, "word": " will", "probability": 0.6181640625}, {"start": 129.26, "end": 129.52, "word": " apply", "probability": 0.58544921875}, {"start": 129.52, "end": 129.72, "word": " a", "probability": 0.63134765625}, {"start": 129.72, "end": 130.16, "word": " simple", "probability": 0.85986328125}, {"start": 130.16, "end": 131.4, "word": " pattern", "probability": 0.72998046875}, {"start": 131.4, "end": 132.36, "word": " called", "probability": 0.5322265625}, {"start": 132.36, "end": 132.96, "word": " Builder", "probability": 0.805908203125}, {"start": 132.96, "end": 133.26, "word": " Design", "probability": 0.8720703125}, {"start": 133.26, "end": 133.6, "word": " Pattern.", "probability": 0.95068359375}, {"start": 133.66, "end": 133.76, "word": " What", "probability": 0.83740234375}, {"start": 133.76, "end": 133.92, "word": " is", "probability": 0.72119140625}, {"start": 133.92, "end": 134.52, "word": " Builder?", "probability": 0.6988525390625}], "temperature": 1.0}, {"id": 8, "seek": 15413, "start": 135.91, "end": 154.13, "text": " The builder is a creation design pattern that has to do with the construction of objects. What is the problem solved by the builder pattern? This pattern was introduced to solve some of the problems with factories when the object contains a lot of attributes.", "tokens": [440, 27377, 307, 257, 8016, 1715, 5102, 300, 575, 281, 360, 365, 264, 6435, 295, 6565, 13, 708, 307, 264, 1154, 13041, 538, 264, 27377, 5102, 30, 639, 5102, 390, 7268, 281, 5039, 512, 295, 264, 2740, 365, 24813, 562, 264, 2657, 8306, 257, 688, 295, 17212, 13], "avg_logprob": -0.4282525412890376, "compression_ratio": 1.5853658536585367, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 135.91, "end": 136.15, "word": " The", "probability": 0.360595703125}, {"start": 136.15, "end": 136.37, "word": " builder", "probability": 0.261962890625}, {"start": 136.37, "end": 137.69, "word": " is", "probability": 0.4736328125}, {"start": 137.69, "end": 137.95, "word": " a", "probability": 0.487548828125}, {"start": 137.95, "end": 138.49, "word": " creation", "probability": 0.556640625}, {"start": 138.49, "end": 139.09, "word": " design", "probability": 0.53759765625}, {"start": 139.09, "end": 139.41, "word": " pattern", "probability": 0.90087890625}, {"start": 139.41, "end": 139.81, "word": " that", "probability": 0.1873779296875}, {"start": 139.81, "end": 139.97, "word": " has", "probability": 0.37548828125}, {"start": 139.97, "end": 140.25, "word": " to", "probability": 0.517578125}, {"start": 140.25, "end": 140.25, "word": " do", "probability": 0.9658203125}, {"start": 140.25, "end": 140.43, "word": " with", "probability": 0.88671875}, {"start": 140.43, "end": 140.51, "word": " the", "probability": 0.39697265625}, {"start": 140.51, "end": 140.67, "word": " construction", "probability": 0.475830078125}, {"start": 140.67, "end": 141.45, "word": " of", "probability": 0.9482421875}, {"start": 141.45, "end": 141.79, "word": " objects.", "probability": 0.689453125}, {"start": 141.91, "end": 142.17, "word": " What", "probability": 0.38818359375}, {"start": 142.17, "end": 142.25, "word": " is", "probability": 0.80224609375}, {"start": 142.25, "end": 142.35, "word": " the", "probability": 0.748046875}, {"start": 142.35, "end": 142.65, "word": " problem", "probability": 0.71875}, {"start": 142.65, "end": 143.09, "word": " solved", "probability": 0.208251953125}, {"start": 143.09, "end": 143.49, "word": " by", "probability": 0.908203125}, {"start": 143.49, "end": 143.69, "word": " the", "probability": 0.66162109375}, {"start": 143.69, "end": 143.95, "word": " builder", "probability": 0.916015625}, {"start": 143.95, "end": 144.41, "word": " pattern?", "probability": 0.85107421875}, {"start": 146.35, "end": 146.95, "word": " This", "probability": 0.285400390625}, {"start": 146.95, "end": 147.37, "word": " pattern", "probability": 0.7412109375}, {"start": 147.37, "end": 147.91, "word": " was", "probability": 0.90234375}, {"start": 147.91, "end": 148.43, "word": " introduced", "probability": 0.8193359375}, {"start": 148.43, "end": 148.87, "word": " to", "probability": 0.943359375}, {"start": 148.87, "end": 149.17, "word": " solve", "probability": 0.9189453125}, {"start": 149.17, "end": 149.45, "word": " some", "probability": 0.85546875}, {"start": 149.45, "end": 149.61, "word": " of", "probability": 0.82763671875}, {"start": 149.61, "end": 149.73, "word": " the", "probability": 0.9150390625}, {"start": 149.73, "end": 150.13, "word": " problems", "probability": 0.81005859375}, {"start": 150.13, "end": 150.37, "word": " with", "probability": 0.720703125}, {"start": 150.37, "end": 150.79, "word": " factories", "probability": 0.74951171875}, {"start": 150.79, "end": 151.01, "word": " when", "probability": 0.32861328125}, {"start": 151.01, "end": 151.13, "word": " the", "probability": 0.8349609375}, {"start": 151.13, "end": 151.47, "word": " object", "probability": 0.84375}, {"start": 151.47, "end": 152.19, "word": " contains", "probability": 0.8291015625}, {"start": 152.19, "end": 153.09, "word": " a", "probability": 0.91357421875}, {"start": 153.09, "end": 153.31, "word": " lot", "probability": 0.9521484375}, {"start": 153.31, "end": 153.57, "word": " of", "probability": 0.970703125}, {"start": 153.57, "end": 154.13, "word": " attributes.", "probability": 0.8798828125}], "temperature": 1.0}, {"id": 9, "seek": 18240, "start": 154.96, "end": 182.4, "text": "For example, use it when you have too many arguments to pass from the client program via the constructor that can be error prone because most of the time the type of arguments are seen from client side, it's hard to maintain the order of the argument, some of the parameters might be optional, but using a constructor, we are forced to send all the parameters. Okay, this speech will not be very comprehensive unless we see a practical example that explains this problem.", "tokens": [12587, 1365, 11, 764, 309, 562, 291, 362, 886, 867, 12869, 281, 1320, 490, 264, 6423, 1461, 5766, 264, 47479, 300, 393, 312, 6713, 25806, 570, 881, 295, 264, 565, 264, 2010, 295, 12869, 366, 1612, 490, 6423, 1252, 11, 309, 311, 1152, 281, 6909, 264, 1668, 295, 264, 6770, 11, 512, 295, 264, 9834, 1062, 312, 17312, 11, 457, 1228, 257, 47479, 11, 321, 366, 7579, 281, 2845, 439, 264, 9834, 13, 1033, 11, 341, 6218, 486, 406, 312, 588, 13914, 5969, 321, 536, 257, 8496, 1365, 300, 13948, 341, 1154, 13], "avg_logprob": -0.3450797824783528, "compression_ratio": 1.7444444444444445, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 154.96, "end": 155.28, "word": "For", "probability": 0.321044921875}, {"start": 155.28, "end": 155.36, "word": " example,", "probability": 0.90234375}, {"start": 155.38, "end": 155.72, "word": " use", "probability": 0.1329345703125}, {"start": 155.72, "end": 156.08, "word": " it", "probability": 0.87890625}, {"start": 156.08, "end": 156.48, "word": " when", "probability": 0.8037109375}, {"start": 156.48, "end": 156.62, "word": " you", "probability": 0.69140625}, {"start": 156.62, "end": 157.02, "word": " have", "probability": 0.8916015625}, {"start": 157.02, "end": 157.2, "word": " too", "probability": 0.85595703125}, {"start": 157.2, "end": 157.5, "word": " many", "probability": 0.8779296875}, {"start": 157.5, "end": 158.08, "word": " arguments", "probability": 0.8525390625}, {"start": 158.08, "end": 158.34, "word": " to", "probability": 0.9052734375}, {"start": 158.34, "end": 158.68, "word": " pass", "probability": 0.84326171875}, {"start": 158.68, "end": 158.98, "word": " from", "probability": 0.7626953125}, {"start": 158.98, "end": 159.16, "word": " the", "probability": 0.830078125}, {"start": 159.16, "end": 159.46, "word": " client", "probability": 0.87890625}, {"start": 159.46, "end": 159.88, "word": " program", "probability": 0.75244140625}, {"start": 159.88, "end": 160.16, "word": " via", "probability": 0.8115234375}, {"start": 160.16, "end": 160.34, "word": " the", "probability": 0.8330078125}, {"start": 160.34, "end": 160.8, "word": " constructor", "probability": 0.9306640625}, {"start": 160.8, "end": 161.08, "word": " that", "probability": 0.662109375}, {"start": 161.08, "end": 161.32, "word": " can", "probability": 0.9326171875}, {"start": 161.32, "end": 161.5, "word": " be", "probability": 0.94873046875}, {"start": 161.5, "end": 161.78, "word": " error", "probability": 0.810546875}, {"start": 161.78, "end": 162.74, "word": " prone", "probability": 0.83984375}, {"start": 162.74, "end": 163.14, "word": " because", "probability": 0.712890625}, {"start": 163.14, "end": 163.44, "word": " most", "probability": 0.89111328125}, {"start": 163.44, "end": 163.6, "word": " of", "probability": 0.96875}, {"start": 163.6, "end": 163.72, "word": " the", "probability": 0.91455078125}, {"start": 163.72, "end": 163.94, "word": " time", "probability": 0.85693359375}, {"start": 163.94, "end": 164.12, "word": " the", "probability": 0.7177734375}, {"start": 164.12, "end": 164.4, "word": " type", "probability": 0.84765625}, {"start": 164.4, "end": 164.56, "word": " of", "probability": 0.95068359375}, {"start": 164.56, "end": 164.98, "word": " arguments", "probability": 0.82373046875}, {"start": 164.98, "end": 165.3, "word": " are", "probability": 0.912109375}, {"start": 165.3, "end": 165.62, "word": " seen", "probability": 0.638671875}, {"start": 165.62, "end": 166.0, "word": " from", "probability": 0.88427734375}, {"start": 166.0, "end": 166.84, "word": " client", "probability": 0.63818359375}, {"start": 166.84, "end": 167.28, "word": " side,", "probability": 0.609375}, {"start": 167.82, "end": 168.02, "word": " it's", "probability": 0.76171875}, {"start": 168.02, "end": 168.22, "word": " hard", "probability": 0.90869140625}, {"start": 168.22, "end": 168.38, "word": " to", "probability": 0.97216796875}, {"start": 168.38, "end": 168.66, "word": " maintain", "probability": 0.83544921875}, {"start": 168.66, "end": 168.8, "word": " the", "probability": 0.85791015625}, {"start": 168.8, "end": 169.04, "word": " order", "probability": 0.94970703125}, {"start": 169.04, "end": 169.18, "word": " of", "probability": 0.96142578125}, {"start": 169.18, "end": 169.26, "word": " the", "probability": 0.7900390625}, {"start": 169.26, "end": 169.72, "word": " argument,", "probability": 0.86572265625}, {"start": 169.98, "end": 170.38, "word": " some", "probability": 0.370361328125}, {"start": 170.38, "end": 170.74, "word": " of", "probability": 0.90478515625}, {"start": 170.74, "end": 170.88, "word": " the", "probability": 0.896484375}, {"start": 170.88, "end": 171.3, "word": " parameters", "probability": 0.94287109375}, {"start": 171.3, "end": 171.64, "word": " might", "probability": 0.8466796875}, {"start": 171.64, "end": 171.8, "word": " be", "probability": 0.94873046875}, {"start": 171.8, "end": 172.14, "word": " optional,", "probability": 0.8662109375}, {"start": 172.28, "end": 172.4, "word": " but", "probability": 0.89306640625}, {"start": 172.4, "end": 172.7, "word": " using", "probability": 0.8994140625}, {"start": 172.7, "end": 172.9, "word": " a", "probability": 0.94287109375}, {"start": 172.9, "end": 173.34, "word": " constructor,", "probability": 0.91943359375}, {"start": 174.02, "end": 174.12, "word": " we", "probability": 0.90283203125}, {"start": 174.12, "end": 174.34, "word": " are", "probability": 0.9326171875}, {"start": 174.34, "end": 174.66, "word": " forced", "probability": 0.92138671875}, {"start": 174.66, "end": 174.86, "word": " to", "probability": 0.96728515625}, {"start": 174.86, "end": 175.1, "word": " send", "probability": 0.88232421875}, {"start": 175.1, "end": 175.32, "word": " all", "probability": 0.9453125}, {"start": 175.32, "end": 175.48, "word": " the", "probability": 0.8359375}, {"start": 175.48, "end": 175.92, "word": " parameters.", "probability": 0.91015625}, {"start": 176.5, "end": 176.68, "word": " Okay,", "probability": 0.1422119140625}, {"start": 177.0, "end": 177.22, "word": " this", "probability": 0.5927734375}, {"start": 177.22, "end": 177.46, "word": " speech", "probability": 0.26953125}, {"start": 177.46, "end": 177.68, "word": " will", "probability": 0.31689453125}, {"start": 177.68, "end": 177.68, "word": " not", "probability": 0.90185546875}, {"start": 177.68, "end": 177.84, "word": " be", "probability": 0.7724609375}, {"start": 177.84, "end": 177.88, "word": " very", "probability": 0.47998046875}, {"start": 177.88, "end": 178.16, "word": " comprehensive", "probability": 0.25439453125}, {"start": 178.16, "end": 178.64, "word": " unless", "probability": 0.26806640625}, {"start": 178.64, "end": 179.0, "word": " we", "probability": 0.81494140625}, {"start": 179.0, "end": 179.24, "word": " see", "probability": 0.541015625}, {"start": 179.24, "end": 179.92, "word": " a", "probability": 0.6689453125}, {"start": 179.92, "end": 180.4, "word": " practical", "probability": 0.88330078125}, {"start": 180.4, "end": 180.4, "word": " example", "probability": 0.95654296875}, {"start": 180.4, "end": 180.64, "word": " that", "probability": 0.453125}, {"start": 180.64, "end": 180.94, "word": " explains", "probability": 0.492431640625}, {"start": 180.94, "end": 182.1, "word": " this", "probability": 0.71484375}, {"start": 182.1, "end": 182.4, "word": " problem.", "probability": 0.7509765625}], "temperature": 1.0}, {"id": 10, "seek": 21486, "start": 187.88, "end": 214.86, "text": " Okay, to explain the existing problem and then propose its solution, let's say I have a class, for example, class student, okay? The student has a large number of parameters, let's say first name, last name, department, faculty, age, GPA, email,", "tokens": [1033, 11, 281, 2903, 264, 6741, 1154, 293, 550, 17421, 1080, 3827, 11, 718, 311, 584, 286, 362, 257, 1508, 11, 337, 1365, 11, 1508, 3107, 11, 1392, 30, 440, 3107, 575, 257, 2416, 1230, 295, 9834, 11, 718, 311, 584, 700, 1315, 11, 1036, 1315, 11, 5882, 11, 6389, 11, 3205, 11, 41321, 11, 3796, 11], "avg_logprob": -0.4372306049897753, "compression_ratio": 1.4642857142857142, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 187.88, "end": 188.24, "word": " Okay,", "probability": 0.1402587890625}, {"start": 188.5, "end": 188.82, "word": " to", "probability": 0.70263671875}, {"start": 188.82, "end": 189.18, "word": " explain", "probability": 0.470947265625}, {"start": 189.18, "end": 189.78, "word": " the", "probability": 0.59228515625}, {"start": 189.78, "end": 190.5, "word": " existing", "probability": 0.63330078125}, {"start": 190.5, "end": 190.5, "word": " problem", "probability": 0.791015625}, {"start": 190.5, "end": 191.34, "word": " and", "probability": 0.52490234375}, {"start": 191.34, "end": 191.56, "word": " then", "probability": 0.63916015625}, {"start": 191.56, "end": 191.88, "word": " propose", "probability": 0.2410888671875}, {"start": 191.88, "end": 191.98, "word": " its", "probability": 0.377685546875}, {"start": 191.98, "end": 192.28, "word": " solution,", "probability": 0.90771484375}, {"start": 192.6, "end": 192.72, "word": " let's", "probability": 0.6297607421875}, {"start": 192.72, "end": 193.0, "word": " say", "probability": 0.63330078125}, {"start": 193.0, "end": 193.2, "word": " I", "probability": 0.74609375}, {"start": 193.2, "end": 193.4, "word": " have", "probability": 0.92236328125}, {"start": 193.4, "end": 193.52, "word": " a", "probability": 0.9404296875}, {"start": 193.52, "end": 193.94, "word": " class,", "probability": 0.95751953125}, {"start": 194.9, "end": 195.12, "word": " for", "probability": 0.724609375}, {"start": 195.12, "end": 195.38, "word": " example,", "probability": 0.9130859375}, {"start": 195.52, "end": 195.8, "word": " class", "probability": 0.279541015625}, {"start": 195.8, "end": 196.2, "word": " student,", "probability": 0.76318359375}, {"start": 196.82, "end": 197.08, "word": " okay?", "probability": 0.58349609375}, {"start": 198.14, "end": 198.38, "word": " The", "probability": 0.70263671875}, {"start": 198.38, "end": 198.68, "word": " student", "probability": 0.939453125}, {"start": 198.68, "end": 198.86, "word": " has", "probability": 0.7041015625}, {"start": 198.86, "end": 198.94, "word": " a", "probability": 0.6328125}, {"start": 198.94, "end": 198.98, "word": " large", "probability": 0.7119140625}, {"start": 198.98, "end": 199.12, "word": " number", "probability": 0.9267578125}, {"start": 199.12, "end": 199.54, "word": " of", "probability": 0.97119140625}, {"start": 199.54, "end": 200.24, "word": " parameters,", "probability": 0.96875}, {"start": 201.0, "end": 201.64, "word": " let's", "probability": 0.65185546875}, {"start": 201.64, "end": 201.94, "word": " say", "probability": 0.2646484375}, {"start": 201.94, "end": 202.84, "word": " first", "probability": 0.55322265625}, {"start": 202.84, "end": 203.28, "word": " name,", "probability": 0.82421875}, {"start": 204.06, "end": 204.42, "word": " last", "probability": 0.8994140625}, {"start": 204.42, "end": 204.9, "word": " name,", "probability": 0.89892578125}, {"start": 206.4, "end": 207.74, "word": " department,", "probability": 0.94482421875}, {"start": 209.78, "end": 210.34, "word": " faculty,", "probability": 0.84375}, {"start": 211.06, "end": 211.62, "word": " age,", "probability": 0.93994140625}, {"start": 212.8, "end": 213.24, "word": " GPA,", "probability": 0.91064453125}, {"start": 214.36, "end": 214.86, "word": " email,", "probability": 0.9345703125}], "temperature": 1.0}, {"id": 11, "seek": 24047, "start": 217.03, "end": 240.47, "text": " No, these are strings, email, mobile number, float, GPA, int age, and so on. These are all attributes specific to the student. Let's make a setar and getar for them.", "tokens": [883, 11, 613, 366, 13985, 11, 3796, 11, 6013, 1230, 11, 15706, 11, 41321, 11, 560, 3205, 11, 293, 370, 322, 13, 1981, 366, 439, 17212, 2685, 281, 264, 3107, 13, 961, 311, 652, 257, 992, 289, 293, 483, 289, 337, 552, 13], "avg_logprob": -0.4698153537782756, "compression_ratio": 1.296875, "no_speech_prob": 0.0, "words": [{"start": 217.03, "end": 217.31, "word": " No,", "probability": 0.07269287109375}, {"start": 217.31, "end": 217.57, "word": " these", "probability": 0.70068359375}, {"start": 217.57, "end": 217.81, "word": " are", "probability": 0.89208984375}, {"start": 217.81, "end": 219.83, "word": " strings,", "probability": 0.306884765625}, {"start": 220.31, "end": 221.93, "word": " email,", "probability": 0.82421875}, {"start": 222.23, "end": 222.45, "word": " mobile", "probability": 0.9306640625}, {"start": 222.45, "end": 223.13, "word": " number,", "probability": 0.95361328125}, {"start": 224.53, "end": 228.43, "word": " float,", "probability": 0.83056640625}, {"start": 228.95, "end": 229.59, "word": " GPA,", "probability": 0.8359375}, {"start": 231.15, "end": 231.67, "word": " int", "probability": 0.6279296875}, {"start": 231.67, "end": 232.15, "word": " age,", "probability": 0.59423828125}, {"start": 232.39, "end": 234.23, "word": " and", "probability": 0.552734375}, {"start": 234.23, "end": 234.39, "word": " so", "probability": 0.8369140625}, {"start": 234.39, "end": 234.57, "word": " on.", "probability": 0.89453125}, {"start": 234.63, "end": 234.83, "word": " These", "probability": 0.5068359375}, {"start": 234.83, "end": 234.95, "word": " are", "probability": 0.88818359375}, {"start": 234.95, "end": 235.07, "word": " all", "probability": 0.6982421875}, {"start": 235.07, "end": 235.75, "word": " attributes", "probability": 0.8681640625}, {"start": 235.75, "end": 236.35, "word": " specific", "probability": 0.287841796875}, {"start": 236.35, "end": 236.49, "word": " to", "probability": 0.88720703125}, {"start": 236.49, "end": 236.75, "word": " the", "probability": 0.6240234375}, {"start": 236.75, "end": 237.19, "word": " student.", "probability": 0.86962890625}, {"start": 238.03, "end": 238.63, "word": " Let's", "probability": 0.6578369140625}, {"start": 238.63, "end": 239.15, "word": " make", "probability": 0.39697265625}, {"start": 239.15, "end": 239.47, "word": " a", "probability": 0.6103515625}, {"start": 239.47, "end": 239.77, "word": " setar", "probability": 0.4173583984375}, {"start": 239.77, "end": 239.85, "word": " and", "probability": 0.84765625}, {"start": 239.85, "end": 240.11, "word": " getar", "probability": 0.7470703125}, {"start": 240.11, "end": 240.27, "word": " for", "probability": 0.7900390625}, {"start": 240.27, "end": 240.47, "word": " them.", "probability": 0.861328125}], "temperature": 1.0}, {"id": 12, "seek": 25626, "start": 253.12, "end": 256.26, "text": " Okay, now if I want to use this class", "tokens": [1033, 11, 586, 498, 286, 528, 281, 764, 341, 1508], "avg_logprob": -0.42578125541860407, "compression_ratio": 0.8260869565217391, "no_speech_prob": 0.0, "words": [{"start": 253.12, "end": 253.46, "word": " Okay,", "probability": 0.11346435546875}, {"start": 253.64, "end": 254.04, "word": " now", "probability": 0.703125}, {"start": 254.04, "end": 254.86, "word": " if", "probability": 0.80126953125}, {"start": 254.86, "end": 255.04, "word": " I", "probability": 0.91455078125}, {"start": 255.04, "end": 255.16, "word": " want", "probability": 0.59033203125}, {"start": 255.16, "end": 255.28, "word": " to", "probability": 0.97216796875}, {"start": 255.28, "end": 255.68, "word": " use", "probability": 0.8837890625}, {"start": 255.68, "end": 255.92, "word": " this", "probability": 0.890625}, {"start": 255.92, "end": 256.26, "word": " class", "probability": 0.9482421875}], "temperature": 1.0}, {"id": 13, "seek": 28547, "start": 272.63, "end": 285.47, "text": "The class student that I have, there is no constructor except default constructor, right or not? So to create a student, I say student as new student", "tokens": [2278, 1508, 3107, 300, 286, 362, 11, 456, 307, 572, 47479, 3993, 7576, 47479, 11, 558, 420, 406, 30, 407, 281, 1884, 257, 3107, 11, 286, 584, 3107, 382, 777, 3107], "avg_logprob": -0.6152343656867743, "compression_ratio": 1.3925233644859814, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 272.63, "end": 273.29, "word": "The", "probability": 0.2108154296875}, {"start": 273.29, "end": 273.59, "word": " class", "probability": 0.552734375}, {"start": 273.59, "end": 274.01, "word": " student", "probability": 0.8115234375}, {"start": 274.01, "end": 274.19, "word": " that", "probability": 0.2666015625}, {"start": 274.19, "end": 274.55, "word": " I", "probability": 0.65380859375}, {"start": 274.55, "end": 274.69, "word": " have,", "probability": 0.84912109375}, {"start": 275.83, "end": 276.45, "word": " there", "probability": 0.323486328125}, {"start": 276.45, "end": 276.55, "word": " is", "probability": 0.80029296875}, {"start": 276.55, "end": 276.69, "word": " no", "probability": 0.8583984375}, {"start": 276.69, "end": 277.29, "word": " constructor", "probability": 0.9033203125}, {"start": 277.29, "end": 277.53, "word": " except", "probability": 0.51220703125}, {"start": 277.53, "end": 277.91, "word": " default", "probability": 0.355224609375}, {"start": 277.91, "end": 278.53, "word": " constructor,", "probability": 0.8994140625}, {"start": 278.63, "end": 278.77, "word": " right", "probability": 0.380615234375}, {"start": 278.77, "end": 278.93, "word": " or", "probability": 0.6279296875}, {"start": 278.93, "end": 279.09, "word": " not?", "probability": 0.53857421875}, {"start": 279.69, "end": 279.85, "word": " So", "probability": 0.339111328125}, {"start": 279.85, "end": 280.53, "word": " to", "probability": 0.298095703125}, {"start": 280.53, "end": 280.79, "word": " create", "probability": 0.80029296875}, {"start": 280.79, "end": 280.97, "word": " a", "probability": 0.783203125}, {"start": 280.97, "end": 281.41, "word": " student,", "probability": 0.82373046875}, {"start": 282.07, "end": 282.31, "word": " I", "probability": 0.916015625}, {"start": 282.31, "end": 282.45, "word": " say", "probability": 0.32958984375}, {"start": 282.45, "end": 283.05, "word": " student", "probability": 0.86474609375}, {"start": 283.05, "end": 283.73, "word": " as", "probability": 0.358154296875}, {"start": 283.73, "end": 284.47, "word": " new", "probability": 0.478759765625}, {"start": 284.47, "end": 285.47, "word": " student", "probability": 0.8798828125}], "temperature": 1.0}, {"id": 14, "seek": 30377, "start": 288.27, "end": 303.77, "text": "I use the setters to set the attributes of the student If we assume that the student is a constructor based on the fact that most of this information is required when creating", "tokens": [40, 764, 264, 992, 1559, 281, 992, 264, 17212, 295, 264, 3107, 759, 321, 6552, 300, 264, 3107, 307, 257, 47479, 2361, 322, 264, 1186, 300, 881, 295, 341, 1589, 307, 4739, 562, 4084], "avg_logprob": -0.7026785612106323, "compression_ratio": 1.5625, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 288.27, "end": 288.49, "word": "I", "probability": 0.5166015625}, {"start": 288.49, "end": 288.79, "word": " use", "probability": 0.48486328125}, {"start": 288.79, "end": 288.99, "word": " the", "probability": 0.2479248046875}, {"start": 288.99, "end": 289.33, "word": " setters", "probability": 0.668212890625}, {"start": 289.33, "end": 289.57, "word": " to", "probability": 0.66162109375}, {"start": 289.57, "end": 290.13, "word": " set", "probability": 0.29931640625}, {"start": 290.13, "end": 290.43, "word": " the", "probability": 0.433837890625}, {"start": 290.43, "end": 291.19, "word": " attributes", "probability": 0.52587890625}, {"start": 291.19, "end": 291.57, "word": " of", "probability": 0.6923828125}, {"start": 291.57, "end": 292.33, "word": " the", "probability": 0.513671875}, {"start": 292.33, "end": 292.67, "word": " student", "probability": 0.7587890625}, {"start": 292.67, "end": 294.39, "word": " If", "probability": 0.1143798828125}, {"start": 294.39, "end": 294.87, "word": " we", "probability": 0.78466796875}, {"start": 294.87, "end": 295.15, "word": " assume", "probability": 0.54833984375}, {"start": 295.15, "end": 295.71, "word": " that", "probability": 0.8388671875}, {"start": 295.71, "end": 296.09, "word": " the", "probability": 0.428466796875}, {"start": 296.09, "end": 296.43, "word": " student", "probability": 0.916015625}, {"start": 296.43, "end": 296.75, "word": " is", "probability": 0.3125}, {"start": 296.75, "end": 296.85, "word": " a", "probability": 0.272705078125}, {"start": 296.85, "end": 297.63, "word": " constructor", "probability": 0.84521484375}, {"start": 297.63, "end": 297.89, "word": " based", "probability": 0.1788330078125}, {"start": 297.89, "end": 298.55, "word": " on", "probability": 0.91650390625}, {"start": 298.55, "end": 298.87, "word": " the", "probability": 0.29443359375}, {"start": 298.87, "end": 298.99, "word": " fact", "probability": 0.5703125}, {"start": 298.99, "end": 299.41, "word": " that", "probability": 0.9130859375}, {"start": 299.41, "end": 300.03, "word": " most", "probability": 0.6279296875}, {"start": 300.03, "end": 300.21, "word": " of", "probability": 0.67333984375}, {"start": 300.21, "end": 301.27, "word": " this", "probability": 0.286376953125}, {"start": 301.27, "end": 301.27, "word": " information", "probability": 0.56494140625}, {"start": 301.27, "end": 302.77, "word": " is", "probability": 0.51171875}, {"start": 302.77, "end": 303.15, "word": " required", "probability": 0.74755859375}, {"start": 303.15, "end": 303.45, "word": " when", "probability": 0.285888671875}, {"start": 303.45, "end": 303.77, "word": " creating", "probability": 0.4443359375}], "temperature": 1.0}, {"id": 15, "seek": 33095, "start": 305.33, "end": 330.95, "text": " In some cases, I have classes in my library When I create an object from it, all the parameters must be present In this case, you need to create a constructor Ok, we will add a constructor We can add netbeans to Android Insert code Ok, this is a constructor", "tokens": [682, 512, 3331, 11, 286, 362, 5359, 294, 452, 6405, 1133, 286, 1884, 364, 2657, 490, 309, 11, 439, 264, 9834, 1633, 312, 1974, 682, 341, 1389, 11, 291, 643, 281, 1884, 257, 47479, 3477, 11, 321, 486, 909, 257, 47479, 492, 393, 909, 2533, 40488, 281, 8853, 36487, 3089, 3477, 11, 341, 307, 257, 47479], "avg_logprob": -0.5942982623451635, "compression_ratio": 1.5636363636363637, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 305.33, "end": 305.53, "word": " In", "probability": 0.266845703125}, {"start": 305.53, "end": 305.73, "word": " some", "probability": 0.677734375}, {"start": 305.73, "end": 306.11, "word": " cases,", "probability": 0.7626953125}, {"start": 306.27, "end": 306.27, "word": " I", "probability": 0.31884765625}, {"start": 306.27, "end": 306.83, "word": " have", "probability": 0.5693359375}, {"start": 306.83, "end": 309.33, "word": " classes", "probability": 0.55712890625}, {"start": 309.33, "end": 309.33, "word": " in", "probability": 0.80224609375}, {"start": 309.33, "end": 309.33, "word": " my", "probability": 0.59619140625}, {"start": 309.33, "end": 309.33, "word": " library", "probability": 0.568359375}, {"start": 309.33, "end": 310.13, "word": " When", "probability": 0.2021484375}, {"start": 310.13, "end": 310.25, "word": " I", "probability": 0.93994140625}, {"start": 310.25, "end": 310.41, "word": " create", "probability": 0.681640625}, {"start": 310.41, "end": 310.55, "word": " an", "probability": 0.56005859375}, {"start": 310.55, "end": 310.75, "word": " object", "probability": 0.97607421875}, {"start": 310.75, "end": 310.97, "word": " from", "probability": 0.7294921875}, {"start": 310.97, "end": 311.11, "word": " it,", "probability": 0.390869140625}, {"start": 311.33, "end": 312.11, "word": " all", "probability": 0.428955078125}, {"start": 312.11, "end": 312.29, "word": " the", "probability": 0.30517578125}, {"start": 312.29, "end": 312.81, "word": " parameters", "probability": 0.88232421875}, {"start": 312.81, "end": 313.03, "word": " must", "probability": 0.5107421875}, {"start": 313.03, "end": 313.13, "word": " be", "probability": 0.81201171875}, {"start": 313.13, "end": 313.47, "word": " present", "probability": 0.39453125}, {"start": 313.47, "end": 313.65, "word": " In", "probability": 0.358642578125}, {"start": 313.65, "end": 313.87, "word": " this", "probability": 0.8125}, {"start": 313.87, "end": 313.97, "word": " case,", "probability": 0.9013671875}, {"start": 314.11, "end": 314.31, "word": " you", "probability": 0.72998046875}, {"start": 314.31, "end": 314.55, "word": " need", "probability": 0.241943359375}, {"start": 314.55, "end": 314.69, "word": " to", "probability": 0.9462890625}, {"start": 314.69, "end": 314.95, "word": " create", "probability": 0.5537109375}, {"start": 314.95, "end": 315.95, "word": " a", "probability": 0.74853515625}, {"start": 315.95, "end": 316.43, "word": " constructor", "probability": 0.86865234375}, {"start": 316.43, "end": 317.01, "word": " Ok,", "probability": 0.209228515625}, {"start": 318.33, "end": 318.65, "word": " we", "probability": 0.3056640625}, {"start": 318.65, "end": 318.97, "word": " will", "probability": 0.316162109375}, {"start": 318.97, "end": 319.15, "word": " add", "probability": 0.89501953125}, {"start": 319.15, "end": 319.31, "word": " a", "probability": 0.80615234375}, {"start": 319.31, "end": 319.87, "word": " constructor", "probability": 0.88818359375}, {"start": 319.87, "end": 321.05, "word": " We", "probability": 0.495849609375}, {"start": 321.05, "end": 321.25, "word": " can", "probability": 0.71240234375}, {"start": 321.25, "end": 321.57, "word": " add", "probability": 0.41357421875}, {"start": 321.57, "end": 325.69, "word": " netbeans", "probability": 0.5528564453125}, {"start": 325.69, "end": 325.69, "word": " to", "probability": 0.270263671875}, {"start": 325.69, "end": 325.69, "word": " Android", "probability": 0.464599609375}, {"start": 325.69, "end": 328.33, "word": " Insert", "probability": 0.342529296875}, {"start": 328.33, "end": 328.95, "word": " code", "probability": 0.7451171875}, {"start": 328.95, "end": 330.11, "word": " Ok,", "probability": 0.224609375}, {"start": 330.23, "end": 330.39, "word": " this", "probability": 0.6298828125}, {"start": 330.39, "end": 330.39, "word": " is", "probability": 0.89599609375}, {"start": 330.39, "end": 330.57, "word": " a", "probability": 0.404052734375}, {"start": 330.57, "end": 330.95, "word": " constructor", "probability": 0.9033203125}], "temperature": 1.0}, {"id": 16, "seek": 35601, "start": 337.33, "end": 356.01, "text": "It will select all and add a constructor that makes set to all parameters Now I have a constructor, but it made an error because it left the argument constructor To add all attributes, I found a problem, this constructor takes data", "tokens": [3522, 486, 3048, 439, 293, 909, 257, 47479, 300, 1669, 992, 281, 439, 9834, 823, 286, 362, 257, 47479, 11, 457, 309, 1027, 364, 6713, 570, 309, 1411, 264, 6770, 47479, 1407, 909, 439, 17212, 11, 286, 1352, 257, 1154, 11, 341, 47479, 2516, 1412], "avg_logprob": -0.8165760856607686, "compression_ratio": 1.6041666666666667, "no_speech_prob": 2.0265579223632812e-05, "words": [{"start": 337.33, "end": 337.83, "word": "It", "probability": 0.0938720703125}, {"start": 337.83, "end": 337.97, "word": " will", "probability": 0.46533203125}, {"start": 337.97, "end": 338.41, "word": " select", "probability": 0.46923828125}, {"start": 338.41, "end": 339.79, "word": " all", "probability": 0.86328125}, {"start": 339.79, "end": 340.03, "word": " and", "probability": 0.5341796875}, {"start": 340.03, "end": 340.31, "word": " add", "probability": 0.43603515625}, {"start": 340.31, "end": 340.47, "word": " a", "probability": 0.253662109375}, {"start": 340.47, "end": 340.99, "word": " constructor", "probability": 0.9150390625}, {"start": 340.99, "end": 341.87, "word": " that", "probability": 0.41015625}, {"start": 341.87, "end": 342.05, "word": " makes", "probability": 0.410400390625}, {"start": 342.05, "end": 342.29, "word": " set", "probability": 0.68310546875}, {"start": 342.29, "end": 342.39, "word": " to", "probability": 0.367919921875}, {"start": 342.39, "end": 342.61, "word": " all", "probability": 0.83544921875}, {"start": 342.61, "end": 343.17, "word": " parameters", "probability": 0.7255859375}, {"start": 343.17, "end": 344.31, "word": " Now", "probability": 0.2315673828125}, {"start": 344.31, "end": 344.75, "word": " I", "probability": 0.155517578125}, {"start": 344.75, "end": 345.07, "word": " have", "probability": 0.52734375}, {"start": 345.07, "end": 345.21, "word": " a", "probability": 0.5478515625}, {"start": 345.21, "end": 345.57, "word": " constructor,", "probability": 0.92236328125}, {"start": 345.69, "end": 346.23, "word": " but", "probability": 0.23779296875}, {"start": 346.23, "end": 346.45, "word": " it", "probability": 0.2802734375}, {"start": 346.45, "end": 346.67, "word": " made", "probability": 0.1923828125}, {"start": 346.67, "end": 346.89, "word": " an", "probability": 0.7099609375}, {"start": 346.89, "end": 347.07, "word": " error", "probability": 0.88525390625}, {"start": 347.07, "end": 347.59, "word": " because", "probability": 0.52099609375}, {"start": 347.59, "end": 349.07, "word": " it", "probability": 0.7080078125}, {"start": 349.07, "end": 349.25, "word": " left", "probability": 0.09161376953125}, {"start": 349.25, "end": 349.65, "word": " the", "probability": 0.302734375}, {"start": 349.65, "end": 349.93, "word": " argument", "probability": 0.302490234375}, {"start": 349.93, "end": 350.43, "word": " constructor", "probability": 0.76904296875}, {"start": 350.43, "end": 351.09, "word": " To", "probability": 0.28076171875}, {"start": 351.09, "end": 351.39, "word": " add", "probability": 0.89453125}, {"start": 351.39, "end": 351.53, "word": " all", "probability": 0.81884765625}, {"start": 351.53, "end": 352.03, "word": " attributes,", "probability": 0.724609375}, {"start": 353.73, "end": 353.85, "word": " I", "probability": 0.14453125}, {"start": 353.85, "end": 354.03, "word": " found", "probability": 0.197265625}, {"start": 354.03, "end": 354.23, "word": " a", "probability": 0.439208984375}, {"start": 354.23, "end": 354.55, "word": " problem,", "probability": 0.7705078125}, {"start": 354.65, "end": 354.83, "word": " this", "probability": 0.62353515625}, {"start": 354.83, "end": 355.37, "word": " constructor", "probability": 0.9052734375}, {"start": 355.37, "end": 355.69, "word": " takes", "probability": 0.6259765625}, {"start": 355.69, "end": 356.01, "word": " data", "probability": 0.7099609375}], "temperature": 1.0}, {"id": 17, "seek": 38529, "start": 357.75, "end": 385.29, "text": " a lot of data. So I have to remember the type of data and arrange them. For example, I have 5 or 6 strings. I have to know which is the first, second and third string, which is the integer and which is the float. So building the object strings became difficult for me. I had to go to the documentation and see all the information to justify them all. Of course, if there was no constructor, it would have been easier. Because the setters", "tokens": [257, 688, 295, 1412, 13, 407, 286, 362, 281, 1604, 264, 2010, 295, 1412, 293, 9424, 552, 13, 1171, 1365, 11, 286, 362, 1025, 420, 1386, 13985, 13, 286, 362, 281, 458, 597, 307, 264, 700, 11, 1150, 293, 2636, 6798, 11, 597, 307, 264, 24922, 293, 597, 307, 264, 15706, 13, 407, 2390, 264, 2657, 13985, 3062, 2252, 337, 385, 13, 286, 632, 281, 352, 281, 264, 14333, 293, 536, 439, 264, 1589, 281, 20833, 552, 439, 13, 2720, 1164, 11, 498, 456, 390, 572, 47479, 11, 309, 576, 362, 668, 3571, 13, 1436, 264, 992, 1559], "avg_logprob": -0.494318167368571, "compression_ratio": 1.7109375, "no_speech_prob": 2.8014183044433594e-06, "words": [{"start": 357.75, "end": 357.95, "word": " a", "probability": 0.09466552734375}, {"start": 357.95, "end": 358.43, "word": " lot", "probability": 0.91064453125}, {"start": 358.43, "end": 358.43, "word": " of", "probability": 0.9501953125}, {"start": 358.43, "end": 358.43, "word": " data.", "probability": 0.79833984375}, {"start": 358.93, "end": 359.25, "word": " So", "probability": 0.59130859375}, {"start": 359.25, "end": 359.71, "word": " I", "probability": 0.70751953125}, {"start": 359.71, "end": 359.75, "word": " have", "probability": 0.357177734375}, {"start": 359.75, "end": 359.75, "word": " to", "probability": 0.9697265625}, {"start": 359.75, "end": 361.25, "word": " remember", "probability": 0.30322265625}, {"start": 361.25, "end": 361.57, "word": " the", "probability": 0.468994140625}, {"start": 361.57, "end": 361.75, "word": " type", "probability": 0.57421875}, {"start": 361.75, "end": 361.89, "word": " of", "probability": 0.90673828125}, {"start": 361.89, "end": 362.09, "word": " data", "probability": 0.86474609375}, {"start": 362.09, "end": 362.35, "word": " and", "probability": 0.84228515625}, {"start": 362.35, "end": 362.63, "word": " arrange", "probability": 0.296875}, {"start": 362.63, "end": 362.93, "word": " them.", "probability": 0.56787109375}, {"start": 363.55, "end": 363.85, "word": " For", "probability": 0.381591796875}, {"start": 363.85, "end": 363.85, "word": " example,", "probability": 0.9150390625}, {"start": 363.85, "end": 363.97, "word": " I", "probability": 0.7685546875}, {"start": 363.97, "end": 364.27, "word": " have", "probability": 0.92041015625}, {"start": 364.27, "end": 364.81, "word": " 5", "probability": 0.615234375}, {"start": 364.81, "end": 364.95, "word": " or", "probability": 0.55322265625}, {"start": 364.95, "end": 365.17, "word": " 6", "probability": 0.99609375}, {"start": 365.17, "end": 365.57, "word": " strings.", "probability": 0.873046875}, {"start": 365.65, "end": 365.69, "word": " I", "probability": 0.9013671875}, {"start": 365.69, "end": 365.79, "word": " have", "probability": 0.46826171875}, {"start": 365.79, "end": 365.85, "word": " to", "probability": 0.97119140625}, {"start": 365.85, "end": 366.27, "word": " know", "probability": 0.82275390625}, {"start": 366.27, "end": 366.47, "word": " which", "probability": 0.5048828125}, {"start": 366.47, "end": 366.59, "word": " is", "probability": 0.52001953125}, {"start": 366.59, "end": 366.59, "word": " the", "probability": 0.81591796875}, {"start": 366.59, "end": 367.09, "word": " first,", "probability": 0.83740234375}, {"start": 367.15, "end": 367.59, "word": " second", "probability": 0.74462890625}, {"start": 367.59, "end": 367.75, "word": " and", "probability": 0.47509765625}, {"start": 367.75, "end": 368.11, "word": " third", "probability": 0.8994140625}, {"start": 368.11, "end": 368.11, "word": " string,", "probability": 0.6044921875}, {"start": 368.41, "end": 368.63, "word": " which", "probability": 0.5009765625}, {"start": 368.63, "end": 368.67, "word": " is", "probability": 0.724609375}, {"start": 368.67, "end": 368.75, "word": " the", "probability": 0.73046875}, {"start": 368.75, "end": 369.07, "word": " integer", "probability": 0.84716796875}, {"start": 369.07, "end": 369.25, "word": " and", "probability": 0.6630859375}, {"start": 369.25, "end": 369.41, "word": " which", "probability": 0.77587890625}, {"start": 369.41, "end": 369.49, "word": " is", "probability": 0.93798828125}, {"start": 369.49, "end": 369.55, "word": " the", "probability": 0.79052734375}, {"start": 369.55, "end": 369.91, "word": " float.", "probability": 0.92578125}, {"start": 370.95, "end": 371.23, "word": " So", "probability": 0.43505859375}, {"start": 371.23, "end": 371.51, "word": " building", "probability": 0.2027587890625}, {"start": 371.51, "end": 371.69, "word": " the", "probability": 0.29150390625}, {"start": 371.69, "end": 371.91, "word": " object", "probability": 0.496826171875}, {"start": 371.91, "end": 372.21, "word": " strings", "probability": 0.2442626953125}, {"start": 372.21, "end": 372.59, "word": " became", "probability": 0.50146484375}, {"start": 372.59, "end": 372.95, "word": " difficult", "probability": 0.55029296875}, {"start": 372.95, "end": 373.09, "word": " for", "probability": 0.71826171875}, {"start": 373.09, "end": 373.31, "word": " me.", "probability": 0.96630859375}, {"start": 373.81, "end": 373.97, "word": " I", "probability": 0.541015625}, {"start": 373.97, "end": 374.01, "word": " had", "probability": 0.46240234375}, {"start": 374.01, "end": 374.07, "word": " to", "probability": 0.9716796875}, {"start": 374.07, "end": 374.27, "word": " go", "probability": 0.724609375}, {"start": 374.27, "end": 374.39, "word": " to", "probability": 0.90478515625}, {"start": 374.39, "end": 374.45, "word": " the", "probability": 0.57568359375}, {"start": 374.45, "end": 375.05, "word": " documentation", "probability": 0.9052734375}, {"start": 375.05, "end": 375.85, "word": " and", "probability": 0.76904296875}, {"start": 375.85, "end": 376.05, "word": " see", "probability": 0.36962890625}, {"start": 376.05, "end": 376.35, "word": " all", "probability": 0.493408203125}, {"start": 376.35, "end": 376.41, "word": " the", "probability": 0.8515625}, {"start": 376.41, "end": 376.75, "word": " information", "probability": 0.6923828125}, {"start": 376.75, "end": 377.37, "word": " to", "probability": 0.5556640625}, {"start": 377.37, "end": 377.63, "word": " justify", "probability": 0.247802734375}, {"start": 377.63, "end": 378.05, "word": " them", "probability": 0.273193359375}, {"start": 378.05, "end": 379.81, "word": " all.", "probability": 0.77001953125}, {"start": 380.59, "end": 380.79, "word": " Of", "probability": 0.8701171875}, {"start": 380.79, "end": 380.93, "word": " course,", "probability": 0.95947265625}, {"start": 381.43, "end": 381.49, "word": " if", "probability": 0.84814453125}, {"start": 381.49, "end": 382.09, "word": " there", "probability": 0.697265625}, {"start": 382.09, "end": 382.27, "word": " was", "probability": 0.65771484375}, {"start": 382.27, "end": 382.31, "word": " no", "probability": 0.7138671875}, {"start": 382.31, "end": 382.89, "word": " constructor,", "probability": 0.6455078125}, {"start": 383.03, "end": 383.13, "word": " it", "probability": 0.650390625}, {"start": 383.13, "end": 383.15, "word": " would", "probability": 0.62255859375}, {"start": 383.15, "end": 383.21, "word": " have", "probability": 0.41552734375}, {"start": 383.21, "end": 383.21, "word": " been", "probability": 0.8896484375}, {"start": 383.21, "end": 383.75, "word": " easier.", "probability": 0.88525390625}, {"start": 384.07, "end": 384.55, "word": " Because", "probability": 0.8837890625}, {"start": 384.55, "end": 384.83, "word": " the", "probability": 0.492919921875}, {"start": 384.83, "end": 385.29, "word": " setters", "probability": 0.6644287109375}], "temperature": 1.0}, {"id": 18, "seek": 40541, "start": 386.69, "end": 405.41, "text": "It's easier to use it because the set doesn't explain itself, right or wrong? When you tell me set age, I understand what it is. Set faculty, I understand what it is. Set email, okay? But the problem here is that someone says, okay, why don't you leave it blank and teach them? No, here the library wants the object not to be built if all these data exist.", "tokens": [3522, 311, 3571, 281, 764, 309, 570, 264, 992, 1177, 380, 2903, 2564, 11, 558, 420, 2085, 30, 1133, 291, 980, 385, 992, 3205, 11, 286, 1223, 437, 309, 307, 13, 8928, 6389, 11, 286, 1223, 437, 309, 307, 13, 8928, 3796, 11, 1392, 30, 583, 264, 1154, 510, 307, 300, 1580, 1619, 11, 1392, 11, 983, 500, 380, 291, 1856, 309, 8247, 293, 2924, 552, 30, 883, 11, 510, 264, 6405, 2738, 264, 2657, 406, 281, 312, 3094, 498, 439, 613, 1412, 2514, 13], "avg_logprob": -0.5559593023255814, "compression_ratio": 1.6108597285067874, "no_speech_prob": 1.5676021575927734e-05, "words": [{"start": 386.69, "end": 386.91, "word": "It's", "probability": 0.35125732421875}, {"start": 386.91, "end": 387.15, "word": " easier", "probability": 0.73193359375}, {"start": 387.15, "end": 387.27, "word": " to", "probability": 0.90673828125}, {"start": 387.27, "end": 387.57, "word": " use", "probability": 0.88134765625}, {"start": 387.57, "end": 387.79, "word": " it", "probability": 0.269775390625}, {"start": 387.79, "end": 387.99, "word": " because", "probability": 0.51806640625}, {"start": 387.99, "end": 388.13, "word": " the", "probability": 0.5390625}, {"start": 388.13, "end": 388.25, "word": " set", "probability": 0.2181396484375}, {"start": 388.25, "end": 388.39, "word": " doesn't", "probability": 0.78955078125}, {"start": 388.39, "end": 388.67, "word": " explain", "probability": 0.53369140625}, {"start": 388.67, "end": 389.07, "word": " itself,", "probability": 0.69775390625}, {"start": 389.11, "end": 389.27, "word": " right", "probability": 0.65771484375}, {"start": 389.27, "end": 389.43, "word": " or", "probability": 0.623046875}, {"start": 389.43, "end": 389.55, "word": " wrong?", "probability": 0.59716796875}, {"start": 389.83, "end": 389.97, "word": " When", "probability": 0.703125}, {"start": 389.97, "end": 390.07, "word": " you", "probability": 0.53173828125}, {"start": 390.07, "end": 390.19, "word": " tell", "probability": 0.29736328125}, {"start": 390.19, "end": 390.29, "word": " me", "probability": 0.79052734375}, {"start": 390.29, "end": 390.45, "word": " set", "probability": 0.58984375}, {"start": 390.45, "end": 390.69, "word": " age,", "probability": 0.283935546875}, {"start": 390.83, "end": 390.89, "word": " I", "probability": 0.66650390625}, {"start": 390.89, "end": 391.23, "word": " understand", "probability": 0.35009765625}, {"start": 391.23, "end": 391.37, "word": " what", "probability": 0.403564453125}, {"start": 391.37, "end": 391.51, "word": " it", "probability": 0.391357421875}, {"start": 391.51, "end": 391.75, "word": " is.", "probability": 0.39599609375}, {"start": 392.17, "end": 392.51, "word": " Set", "probability": 0.80224609375}, {"start": 392.51, "end": 392.91, "word": " faculty,", "probability": 0.86474609375}, {"start": 393.07, "end": 393.07, "word": " I", "probability": 0.87158203125}, {"start": 393.07, "end": 393.35, "word": " understand", "probability": 0.67529296875}, {"start": 393.35, "end": 393.53, "word": " what", "probability": 0.242919921875}, {"start": 393.53, "end": 393.53, "word": " it", "probability": 0.80322265625}, {"start": 393.53, "end": 393.55, "word": " is.", "probability": 0.89306640625}, {"start": 393.63, "end": 393.83, "word": " Set", "probability": 0.92578125}, {"start": 393.83, "end": 394.27, "word": " email,", "probability": 0.94091796875}, {"start": 394.77, "end": 394.97, "word": " okay?", "probability": 0.1854248046875}, {"start": 395.49, "end": 395.71, "word": " But", "probability": 0.8828125}, {"start": 395.71, "end": 395.87, "word": " the", "probability": 0.82666015625}, {"start": 395.87, "end": 396.07, "word": " problem", "probability": 0.8271484375}, {"start": 396.07, "end": 396.25, "word": " here", "probability": 0.37548828125}, {"start": 396.25, "end": 396.37, "word": " is", "probability": 0.85693359375}, {"start": 396.37, "end": 396.47, "word": " that", "probability": 0.505859375}, {"start": 396.47, "end": 396.65, "word": " someone", "probability": 0.35791015625}, {"start": 396.65, "end": 396.89, "word": " says,", "probability": 0.459716796875}, {"start": 396.99, "end": 397.09, "word": " okay,", "probability": 0.29345703125}, {"start": 397.15, "end": 397.23, "word": " why", "probability": 0.73974609375}, {"start": 397.23, "end": 397.51, "word": " don't", "probability": 0.61285400390625}, {"start": 397.51, "end": 397.67, "word": " you", "probability": 0.8564453125}, {"start": 397.67, "end": 397.79, "word": " leave", "probability": 0.399658203125}, {"start": 397.79, "end": 398.07, "word": " it", "probability": 0.66015625}, {"start": 398.07, "end": 398.37, "word": " blank", "probability": 0.529296875}, {"start": 398.37, "end": 398.57, "word": " and", "probability": 0.78662109375}, {"start": 398.57, "end": 398.93, "word": " teach", "probability": 0.2666015625}, {"start": 398.93, "end": 399.17, "word": " them?", "probability": 0.87255859375}, {"start": 399.53, "end": 399.73, "word": " No,", "probability": 0.923828125}, {"start": 400.01, "end": 400.15, "word": " here", "probability": 0.359130859375}, {"start": 400.15, "end": 400.33, "word": " the", "probability": 0.35693359375}, {"start": 400.33, "end": 400.87, "word": " library", "probability": 0.7216796875}, {"start": 400.87, "end": 401.19, "word": " wants", "probability": 0.712890625}, {"start": 401.19, "end": 401.61, "word": " the", "probability": 0.578125}, {"start": 401.61, "end": 401.95, "word": " object", "probability": 0.95263671875}, {"start": 401.95, "end": 402.09, "word": " not", "probability": 0.5009765625}, {"start": 402.09, "end": 402.19, "word": " to", "probability": 0.9228515625}, {"start": 402.19, "end": 402.31, "word": " be", "probability": 0.8671875}, {"start": 402.31, "end": 402.63, "word": " built", "probability": 0.284912109375}, {"start": 402.63, "end": 404.05, "word": " if", "probability": 0.289794921875}, {"start": 404.05, "end": 404.17, "word": " all", "probability": 0.78857421875}, {"start": 404.17, "end": 404.21, "word": " these", "probability": 0.34375}, {"start": 404.21, "end": 404.43, "word": " data", "probability": 0.82763671875}, {"start": 404.43, "end": 405.41, "word": " exist.", "probability": 0.47265625}], "temperature": 1.0}, {"id": 19, "seek": 43440, "start": 406.2, "end": 434.4, "text": "Okay, this is a requirement and the object should be there. And the problem is that if it becomes a requirement, it will be difficult to create the object because the constructor uses the setter methods. The constructor does not explain every argument, what it means, right or wrong, or what type it is. You have to go back to the documentation. So this is the problem that exists in some cases, that it is difficult to create the object because the constructor requires a lot of parameters. So you have to know what are the types of these parameters and how to arrange them.", "tokens": [8297, 11, 341, 307, 257, 11695, 293, 264, 2657, 820, 312, 456, 13, 400, 264, 1154, 307, 300, 498, 309, 3643, 257, 11695, 11, 309, 486, 312, 2252, 281, 1884, 264, 2657, 570, 264, 47479, 4960, 264, 992, 391, 7150, 13, 440, 47479, 775, 406, 2903, 633, 6770, 11, 437, 309, 1355, 11, 558, 420, 2085, 11, 420, 437, 2010, 309, 307, 13, 509, 362, 281, 352, 646, 281, 264, 14333, 13, 407, 341, 307, 264, 1154, 300, 8198, 294, 512, 3331, 11, 300, 309, 307, 2252, 281, 1884, 264, 2657, 570, 264, 47479, 7029, 257, 688, 295, 9834, 13, 407, 291, 362, 281, 458, 437, 366, 264, 3467, 295, 613, 9834, 293, 577, 281, 9424, 552, 13], "avg_logprob": -0.47373949379480185, "compression_ratio": 1.9965277777777777, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 406.2, "end": 406.5, "word": "Okay,", "probability": 0.12042236328125}, {"start": 406.64, "end": 406.98, "word": " this", "probability": 0.345947265625}, {"start": 406.98, "end": 406.98, "word": " is", "probability": 0.9033203125}, {"start": 406.98, "end": 407.12, "word": " a", "probability": 0.58251953125}, {"start": 407.12, "end": 407.54, "word": " requirement", "probability": 0.91845703125}, {"start": 407.54, "end": 407.72, "word": " and", "probability": 0.319091796875}, {"start": 407.72, "end": 407.78, "word": " the", "probability": 0.55419921875}, {"start": 407.78, "end": 408.0, "word": " object", "probability": 0.9404296875}, {"start": 408.0, "end": 408.18, "word": " should", "probability": 0.2880859375}, {"start": 408.18, "end": 408.2, "word": " be", "probability": 0.66943359375}, {"start": 408.2, "end": 408.56, "word": " there.", "probability": 0.355224609375}, {"start": 408.96, "end": 409.24, "word": " And", "probability": 0.32568359375}, {"start": 409.24, "end": 409.34, "word": " the", "probability": 0.55615234375}, {"start": 409.34, "end": 409.56, "word": " problem", "probability": 0.77685546875}, {"start": 409.56, "end": 409.84, "word": " is", "probability": 0.79443359375}, {"start": 409.84, "end": 409.9, "word": " that", "probability": 0.595703125}, {"start": 409.9, "end": 410.04, "word": " if", "probability": 0.83447265625}, {"start": 410.04, "end": 410.28, "word": " it", "probability": 0.32373046875}, {"start": 410.28, "end": 410.28, "word": " becomes", "probability": 0.3974609375}, {"start": 410.28, "end": 410.36, "word": " a", "probability": 0.978515625}, {"start": 410.36, "end": 410.84, "word": " requirement,", "probability": 0.90966796875}, {"start": 411.22, "end": 411.22, "word": " it", "probability": 0.56640625}, {"start": 411.22, "end": 411.36, "word": " will", "probability": 0.413818359375}, {"start": 411.36, "end": 411.46, "word": " be", "probability": 0.42822265625}, {"start": 411.46, "end": 411.8, "word": " difficult", "probability": 0.7021484375}, {"start": 411.8, "end": 411.92, "word": " to", "probability": 0.68310546875}, {"start": 411.92, "end": 412.24, "word": " create", "probability": 0.472900390625}, {"start": 412.24, "end": 412.42, "word": " the", "probability": 0.69482421875}, {"start": 412.42, "end": 412.7, "word": " object", "probability": 0.96142578125}, {"start": 412.7, "end": 413.84, "word": " because", "probability": 0.5107421875}, {"start": 413.84, "end": 413.98, "word": " the", "probability": 0.8623046875}, {"start": 413.98, "end": 414.44, "word": " constructor", "probability": 0.9599609375}, {"start": 414.44, "end": 414.7, "word": " uses", "probability": 0.4248046875}, {"start": 414.7, "end": 414.86, "word": " the", "probability": 0.47802734375}, {"start": 414.86, "end": 415.12, "word": " setter", "probability": 0.823974609375}, {"start": 415.12, "end": 415.42, "word": " methods.", "probability": 0.45703125}, {"start": 415.52, "end": 415.6, "word": " The", "probability": 0.77685546875}, {"start": 415.6, "end": 415.96, "word": " constructor", "probability": 0.91455078125}, {"start": 415.96, "end": 416.14, "word": " does", "probability": 0.64697265625}, {"start": 416.14, "end": 416.18, "word": " not", "probability": 0.94873046875}, {"start": 416.18, "end": 416.6, "word": " explain", "probability": 0.86669921875}, {"start": 416.6, "end": 417.8, "word": " every", "probability": 0.25390625}, {"start": 417.8, "end": 418.3, "word": " argument,", "probability": 0.8447265625}, {"start": 418.48, "end": 418.48, "word": " what", "probability": 0.5244140625}, {"start": 418.48, "end": 418.54, "word": " it", "probability": 0.3193359375}, {"start": 418.54, "end": 418.78, "word": " means,", "probability": 0.399658203125}, {"start": 419.02, "end": 419.2, "word": " right", "probability": 0.33984375}, {"start": 419.2, "end": 419.36, "word": " or", "probability": 0.7333984375}, {"start": 419.36, "end": 419.46, "word": " wrong,", "probability": 0.88427734375}, {"start": 419.54, "end": 419.64, "word": " or", "probability": 0.6171875}, {"start": 419.64, "end": 419.8, "word": " what", "probability": 0.79052734375}, {"start": 419.8, "end": 419.96, "word": " type", "probability": 0.253173828125}, {"start": 419.96, "end": 419.98, "word": " it", "probability": 0.468017578125}, {"start": 419.98, "end": 419.98, "word": " is.", "probability": 0.814453125}, {"start": 420.06, "end": 420.18, "word": " You", "probability": 0.70654296875}, {"start": 420.18, "end": 420.38, "word": " have", "probability": 0.336181640625}, {"start": 420.38, "end": 420.52, "word": " to", "probability": 0.970703125}, {"start": 420.52, "end": 420.66, "word": " go", "probability": 0.62158203125}, {"start": 420.66, "end": 420.8, "word": " back", "probability": 0.86376953125}, {"start": 420.8, "end": 421.06, "word": " to", "probability": 0.88134765625}, {"start": 421.06, "end": 421.66, "word": " the", "probability": 0.6845703125}, {"start": 421.66, "end": 422.18, "word": " documentation.", "probability": 0.89892578125}, {"start": 422.34, "end": 422.5, "word": " So", "probability": 0.6083984375}, {"start": 422.5, "end": 422.78, "word": " this", "probability": 0.6162109375}, {"start": 422.78, "end": 422.8, "word": " is", "probability": 0.58984375}, {"start": 422.8, "end": 423.16, "word": " the", "probability": 0.69384765625}, {"start": 423.16, "end": 423.44, "word": " problem", "probability": 0.66259765625}, {"start": 423.44, "end": 423.62, "word": " that", "probability": 0.501953125}, {"start": 423.62, "end": 423.92, "word": " exists", "probability": 0.8203125}, {"start": 423.92, "end": 424.1, "word": " in", "probability": 0.9326171875}, {"start": 424.1, "end": 424.32, "word": " some", "probability": 0.876953125}, {"start": 424.32, "end": 424.78, "word": " cases,", "probability": 0.92626953125}, {"start": 425.4, "end": 425.5, "word": " that", "probability": 0.5595703125}, {"start": 425.5, "end": 425.6, "word": " it", "probability": 0.3720703125}, {"start": 425.6, "end": 425.8, "word": " is", "probability": 0.82080078125}, {"start": 425.8, "end": 425.82, "word": " difficult", "probability": 0.9111328125}, {"start": 425.82, "end": 426.02, "word": " to", "probability": 0.7490234375}, {"start": 426.02, "end": 426.4, "word": " create", "probability": 0.8486328125}, {"start": 426.4, "end": 426.6, "word": " the", "probability": 0.6552734375}, {"start": 426.6, "end": 426.98, "word": " object", "probability": 0.96728515625}, {"start": 426.98, "end": 427.42, "word": " because", "probability": 0.75146484375}, {"start": 427.42, "end": 428.02, "word": " the", "probability": 0.8876953125}, {"start": 428.02, "end": 428.02, "word": " constructor", "probability": 0.90771484375}, {"start": 428.02, "end": 428.7, "word": " requires", "probability": 0.7109375}, {"start": 428.7, "end": 428.82, "word": " a", "probability": 0.440673828125}, {"start": 428.82, "end": 428.82, "word": " lot", "probability": 0.94970703125}, {"start": 428.82, "end": 429.6, "word": " of", "probability": 0.96533203125}, {"start": 429.6, "end": 430.22, "word": " parameters.", "probability": 0.9697265625}, {"start": 431.14, "end": 431.32, "word": " So", "probability": 0.80908203125}, {"start": 431.32, "end": 431.42, "word": " you", "probability": 0.8359375}, {"start": 431.42, "end": 431.5, "word": " have", "probability": 0.560546875}, {"start": 431.5, "end": 431.66, "word": " to", "probability": 0.9716796875}, {"start": 431.66, "end": 432.08, "word": " know", "probability": 0.84375}, {"start": 432.08, "end": 432.32, "word": " what", "probability": 0.75732421875}, {"start": 432.32, "end": 432.36, "word": " are", "probability": 0.2281494140625}, {"start": 432.36, "end": 432.62, "word": " the", "probability": 0.775390625}, {"start": 432.62, "end": 432.62, "word": " types", "probability": 0.7216796875}, {"start": 432.62, "end": 432.7, "word": " of", "probability": 0.95068359375}, {"start": 432.7, "end": 432.8, "word": " these", "probability": 0.60498046875}, {"start": 432.8, "end": 433.24, "word": " parameters", "probability": 0.97265625}, {"start": 433.24, "end": 433.7, "word": " and", "probability": 0.86376953125}, {"start": 433.7, "end": 433.9, "word": " how", "probability": 0.231201171875}, {"start": 433.9, "end": 433.92, "word": " to", "probability": 0.78759765625}, {"start": 433.92, "end": 434.22, "word": " arrange", "probability": 0.609375}, {"start": 434.22, "end": 434.4, "word": " them.", "probability": 0.892578125}], "temperature": 1.0}, {"id": 20, "seek": 45990, "start": 435.86, "end": 459.9, "text": "Okay? Some parameters might be mandatory and some might be optional. But even optional parameters should be given value. For example, if you want cash, you should give it value. The important thing is that you should know all the parameters. In these cases, it is difficult to build an object because each structure requires many parameters. We can make the builder pattern that makes it easier for me to build the object. Because this object needs many parameters.", "tokens": [8297, 30, 2188, 9834, 1062, 312, 22173, 293, 512, 1062, 312, 17312, 13, 583, 754, 17312, 9834, 820, 312, 2212, 2158, 13, 1171, 1365, 11, 498, 291, 528, 6388, 11, 291, 820, 976, 309, 2158, 13, 440, 1021, 551, 307, 300, 291, 820, 458, 439, 264, 9834, 13, 682, 613, 3331, 11, 309, 307, 2252, 281, 1322, 364, 2657, 570, 1184, 3877, 7029, 867, 9834, 13, 492, 393, 652, 264, 27377, 5102, 300, 1669, 309, 3571, 337, 385, 281, 1322, 264, 2657, 13, 1436, 341, 2657, 2203, 867, 9834, 13], "avg_logprob": -0.6026785714285714, "compression_ratio": 1.8379446640316206, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 435.85999999999996, "end": 436.28, "word": "Okay?", "probability": 0.09149169921875}, {"start": 436.28, "end": 436.7, "word": " Some", "probability": 0.52490234375}, {"start": 436.7, "end": 437.38, "word": " parameters", "probability": 0.64111328125}, {"start": 437.38, "end": 437.42, "word": " might", "probability": 0.2474365234375}, {"start": 437.42, "end": 437.42, "word": " be", "probability": 0.89794921875}, {"start": 437.42, "end": 437.74, "word": " mandatory", "probability": 0.5673828125}, {"start": 437.74, "end": 437.98, "word": " and", "probability": 0.288818359375}, {"start": 437.98, "end": 438.44, "word": " some", "probability": 0.6708984375}, {"start": 438.44, "end": 438.56, "word": " might", "probability": 0.388671875}, {"start": 438.56, "end": 438.56, "word": " be", "probability": 0.8740234375}, {"start": 438.56, "end": 439.08, "word": " optional.", "probability": 0.84130859375}, {"start": 439.8, "end": 440.22, "word": " But", "probability": 0.393798828125}, {"start": 440.22, "end": 440.48, "word": " even", "probability": 0.69775390625}, {"start": 440.48, "end": 440.84, "word": " optional", "probability": 0.339599609375}, {"start": 440.84, "end": 441.0, "word": " parameters", "probability": 0.658203125}, {"start": 441.0, "end": 441.14, "word": " should", "probability": 0.38232421875}, {"start": 441.14, "end": 441.3, "word": " be", "probability": 0.44580078125}, {"start": 441.3, "end": 441.5, "word": " given", "probability": 0.2244873046875}, {"start": 441.5, "end": 442.26, "word": " value.", "probability": 0.2734375}, {"start": 442.26, "end": 442.26, "word": " For", "probability": 0.125}, {"start": 442.26, "end": 442.44, "word": " example,", "probability": 0.8896484375}, {"start": 442.6, "end": 442.76, "word": " if", "probability": 0.57666015625}, {"start": 442.76, "end": 443.4, "word": " you", "probability": 0.54931640625}, {"start": 443.4, "end": 443.58, "word": " want", "probability": 0.51904296875}, {"start": 443.58, "end": 443.74, "word": " cash,", "probability": 0.61328125}, {"start": 443.8, "end": 443.8, "word": " you", "probability": 0.5302734375}, {"start": 443.8, "end": 443.86, "word": " should", "probability": 0.345703125}, {"start": 443.86, "end": 444.02, "word": " give", "probability": 0.78125}, {"start": 444.02, "end": 444.22, "word": " it", "probability": 0.489501953125}, {"start": 444.22, "end": 445.02, "word": " value.", "probability": 0.927734375}, {"start": 445.14, "end": 445.24, "word": " The", "probability": 0.2327880859375}, {"start": 445.24, "end": 445.36, "word": " important", "probability": 0.49462890625}, {"start": 445.36, "end": 445.4, "word": " thing", "probability": 0.82666015625}, {"start": 445.4, "end": 445.56, "word": " is", "probability": 0.91845703125}, {"start": 445.56, "end": 445.56, "word": " that", "probability": 0.6318359375}, {"start": 445.56, "end": 445.74, "word": " you", "probability": 0.8427734375}, {"start": 445.74, "end": 445.86, "word": " should", "probability": 0.62451171875}, {"start": 445.86, "end": 446.18, "word": " know", "probability": 0.73291015625}, {"start": 446.18, "end": 446.5, "word": " all", "probability": 0.89697265625}, {"start": 446.5, "end": 446.6, "word": " the", "probability": 0.5439453125}, {"start": 446.6, "end": 446.98, "word": " parameters.", "probability": 0.9345703125}, {"start": 447.08, "end": 447.24, "word": " In", "probability": 0.4384765625}, {"start": 447.24, "end": 447.34, "word": " these", "probability": 0.56396484375}, {"start": 447.34, "end": 447.92, "word": " cases,", "probability": 0.8486328125}, {"start": 448.92, "end": 449.0, "word": " it", "probability": 0.22021484375}, {"start": 449.0, "end": 449.0, "word": " is", "probability": 0.61767578125}, {"start": 449.0, "end": 449.0, "word": " difficult", "probability": 0.7294921875}, {"start": 449.0, "end": 449.12, "word": " to", "probability": 0.71142578125}, {"start": 449.12, "end": 449.6, "word": " build", "probability": 0.341552734375}, {"start": 449.6, "end": 449.8, "word": " an", "probability": 0.38037109375}, {"start": 449.8, "end": 450.02, "word": " object", "probability": 0.97998046875}, {"start": 450.02, "end": 450.48, "word": " because", "probability": 0.6044921875}, {"start": 450.48, "end": 450.7, "word": " each", "probability": 0.364501953125}, {"start": 450.7, "end": 451.14, "word": " structure", "probability": 0.76123046875}, {"start": 451.14, "end": 451.38, "word": " requires", "probability": 0.4560546875}, {"start": 451.38, "end": 451.46, "word": " many", "probability": 0.484130859375}, {"start": 451.46, "end": 451.92, "word": " parameters.", "probability": 0.9677734375}, {"start": 453.1, "end": 453.4, "word": " We", "probability": 0.14501953125}, {"start": 453.4, "end": 453.58, "word": " can", "probability": 0.79345703125}, {"start": 453.58, "end": 454.18, "word": " make", "probability": 0.1907958984375}, {"start": 454.18, "end": 454.46, "word": " the", "probability": 0.595703125}, {"start": 454.46, "end": 454.72, "word": " builder", "probability": 0.8818359375}, {"start": 454.72, "end": 455.24, "word": " pattern", "probability": 0.8916015625}, {"start": 455.24, "end": 455.56, "word": " that", "probability": 0.331298828125}, {"start": 455.56, "end": 455.88, "word": " makes", "probability": 0.2274169921875}, {"start": 455.88, "end": 455.96, "word": " it", "probability": 0.716796875}, {"start": 455.96, "end": 456.48, "word": " easier", "probability": 0.71337890625}, {"start": 456.48, "end": 456.64, "word": " for", "probability": 0.392578125}, {"start": 456.64, "end": 456.82, "word": " me", "probability": 0.87744140625}, {"start": 456.82, "end": 456.98, "word": " to", "probability": 0.96875}, {"start": 456.98, "end": 457.14, "word": " build", "probability": 0.82568359375}, {"start": 457.14, "end": 457.3, "word": " the", "probability": 0.65673828125}, {"start": 457.3, "end": 457.78, "word": " object.", "probability": 0.95751953125}, {"start": 458.1, "end": 458.52, "word": " Because", "probability": 0.7890625}, {"start": 458.52, "end": 458.6, "word": " this", "probability": 0.59814453125}, {"start": 458.6, "end": 458.86, "word": " object", "probability": 0.9775390625}, {"start": 458.86, "end": 459.38, "word": " needs", "probability": 0.41552734375}, {"start": 459.38, "end": 459.5, "word": " many", "probability": 0.65185546875}, {"start": 459.5, "end": 459.9, "word": " parameters.", "probability": 0.9716796875}], "temperature": 1.0}, {"id": 21, "seek": 48816, "start": 461.12, "end": 488.16, "text": "Do you know what is the problem with this solution? Every design pattern has a specific problem. This specific problem that we will solve today is that I have a library with some objects and a constructor and the constructor takes a lot of data. How can I make it easier for the client to create an object from the class where the constructor has many parameters? This is the problem that we will solve. Is it clear? Okay, let's go to the solution. Now, the solution will depend on something.", "tokens": [7653, 291, 458, 437, 307, 264, 1154, 365, 341, 3827, 30, 2048, 1715, 5102, 575, 257, 2685, 1154, 13, 639, 2685, 1154, 300, 321, 486, 5039, 965, 307, 300, 286, 362, 257, 6405, 365, 512, 6565, 293, 257, 47479, 293, 264, 47479, 2516, 257, 688, 295, 1412, 13, 1012, 393, 286, 652, 309, 3571, 337, 264, 6423, 281, 1884, 364, 2657, 490, 264, 1508, 689, 264, 47479, 575, 867, 9834, 30, 639, 307, 264, 1154, 300, 321, 486, 5039, 13, 1119, 309, 1850, 30, 1033, 11, 718, 311, 352, 281, 264, 3827, 13, 823, 11, 264, 3827, 486, 5672, 322, 746, 13], "avg_logprob": -0.4617718521831105, "compression_ratio": 1.8154981549815499, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 461.12, "end": 461.38, "word": "Do", "probability": 0.10577392578125}, {"start": 461.38, "end": 461.58, "word": " you", "probability": 0.87353515625}, {"start": 461.58, "end": 461.76, "word": " know", "probability": 0.61865234375}, {"start": 461.76, "end": 462.02, "word": " what", "probability": 0.69189453125}, {"start": 462.02, "end": 462.02, "word": " is", "probability": 0.427734375}, {"start": 462.02, "end": 462.08, "word": " the", "probability": 0.7890625}, {"start": 462.08, "end": 462.3, "word": " problem", "probability": 0.76025390625}, {"start": 462.3, "end": 462.46, "word": " with", "probability": 0.3134765625}, {"start": 462.46, "end": 462.66, "word": " this", "probability": 0.49755859375}, {"start": 462.66, "end": 462.78, "word": " solution?", "probability": 0.397216796875}, {"start": 463.34, "end": 463.78, "word": " Every", "probability": 0.429443359375}, {"start": 463.78, "end": 464.12, "word": " design", "probability": 0.625}, {"start": 464.12, "end": 464.36, "word": " pattern", "probability": 0.75634765625}, {"start": 464.36, "end": 464.58, "word": " has", "probability": 0.7724609375}, {"start": 464.58, "end": 464.92, "word": " a", "probability": 0.6884765625}, {"start": 464.92, "end": 465.32, "word": " specific", "probability": 0.5126953125}, {"start": 465.32, "end": 465.32, "word": " problem.", "probability": 0.77099609375}, {"start": 465.98, "end": 466.28, "word": " This", "probability": 0.32080078125}, {"start": 466.28, "end": 466.4, "word": " specific", "probability": 0.57958984375}, {"start": 466.4, "end": 467.04, "word": " problem", "probability": 0.8681640625}, {"start": 467.04, "end": 467.28, "word": " that", "probability": 0.347412109375}, {"start": 467.28, "end": 467.38, "word": " we", "probability": 0.5986328125}, {"start": 467.38, "end": 467.46, "word": " will", "probability": 0.1749267578125}, {"start": 467.46, "end": 467.56, "word": " solve", "probability": 0.80908203125}, {"start": 467.56, "end": 468.02, "word": " today", "probability": 0.76806640625}, {"start": 468.02, "end": 468.72, "word": " is", "probability": 0.67431640625}, {"start": 468.72, "end": 468.78, "word": " that", "probability": 0.64111328125}, {"start": 468.78, "end": 469.0, "word": " I", "probability": 0.69384765625}, {"start": 469.0, "end": 469.38, "word": " have", "probability": 0.84423828125}, {"start": 469.38, "end": 469.66, "word": " a", "probability": 0.6064453125}, {"start": 469.66, "end": 470.4, "word": " library", "probability": 0.7509765625}, {"start": 470.4, "end": 470.66, "word": " with", "probability": 0.472412109375}, {"start": 470.66, "end": 471.52, "word": " some", "probability": 0.46728515625}, {"start": 471.52, "end": 472.16, "word": " objects", "probability": 0.9404296875}, {"start": 472.16, "end": 472.76, "word": " and", "probability": 0.481689453125}, {"start": 472.76, "end": 473.06, "word": " a", "probability": 0.404541015625}, {"start": 473.06, "end": 473.52, "word": " constructor", "probability": 0.9287109375}, {"start": 473.52, "end": 473.66, "word": " and", "probability": 0.280517578125}, {"start": 473.66, "end": 473.7, "word": " the", "probability": 0.46240234375}, {"start": 473.7, "end": 474.06, "word": " constructor", "probability": 0.884765625}, {"start": 474.06, "end": 474.42, "word": " takes", "probability": 0.67724609375}, {"start": 474.42, "end": 474.54, "word": " a", "probability": 0.52880859375}, {"start": 474.54, "end": 474.54, "word": " lot", "probability": 0.94921875}, {"start": 474.54, "end": 474.54, "word": " of", "probability": 0.97265625}, {"start": 474.54, "end": 474.86, "word": " data.", "probability": 0.87744140625}, {"start": 475.68, "end": 476.08, "word": " How", "probability": 0.89892578125}, {"start": 476.08, "end": 476.26, "word": " can", "probability": 0.501953125}, {"start": 476.26, "end": 476.42, "word": " I", "probability": 0.9765625}, {"start": 476.42, "end": 476.66, "word": " make", "probability": 0.56591796875}, {"start": 476.66, "end": 476.66, "word": " it", "probability": 0.90185546875}, {"start": 476.66, "end": 476.9, "word": " easier", "probability": 0.71630859375}, {"start": 476.9, "end": 477.04, "word": " for", "probability": 0.87939453125}, {"start": 477.04, "end": 477.16, "word": " the", "probability": 0.7685546875}, {"start": 477.16, "end": 477.6, "word": " client", "probability": 0.904296875}, {"start": 477.6, "end": 478.34, "word": " to", "probability": 0.9462890625}, {"start": 478.34, "end": 478.66, "word": " create", "probability": 0.662109375}, {"start": 478.66, "end": 478.86, "word": " an", "probability": 0.4169921875}, {"start": 478.86, "end": 479.1, "word": " object", "probability": 0.97607421875}, {"start": 479.1, "end": 479.32, "word": " from", "probability": 0.705078125}, {"start": 479.32, "end": 479.44, "word": " the", "probability": 0.77490234375}, {"start": 479.44, "end": 479.72, "word": " class", "probability": 0.94140625}, {"start": 479.72, "end": 479.9, "word": " where", "probability": 0.2281494140625}, {"start": 479.9, "end": 480.0, "word": " the", "probability": 0.75439453125}, {"start": 480.0, "end": 480.46, "word": " constructor", "probability": 0.93017578125}, {"start": 480.46, "end": 480.98, "word": " has", "probability": 0.5888671875}, {"start": 480.98, "end": 481.46, "word": " many", "probability": 0.47607421875}, {"start": 481.46, "end": 482.02, "word": " parameters?", "probability": 0.951171875}, {"start": 482.44, "end": 482.82, "word": " This", "probability": 0.791015625}, {"start": 482.82, "end": 482.84, "word": " is", "probability": 0.87939453125}, {"start": 482.84, "end": 482.9, "word": " the", "probability": 0.88037109375}, {"start": 482.9, "end": 483.06, "word": " problem", "probability": 0.84375}, {"start": 483.06, "end": 483.22, "word": " that", "probability": 0.56005859375}, {"start": 483.22, "end": 483.24, "word": " we", "probability": 0.8759765625}, {"start": 483.24, "end": 483.32, "word": " will", "probability": 0.759765625}, {"start": 483.32, "end": 483.48, "word": " solve.", "probability": 0.8740234375}, {"start": 483.78, "end": 483.88, "word": " Is", "probability": 0.324951171875}, {"start": 483.88, "end": 483.88, "word": " it", "probability": 0.783203125}, {"start": 483.88, "end": 484.0, "word": " clear?", "probability": 0.88525390625}, {"start": 484.9, "end": 485.16, "word": " Okay,", "probability": 0.2396240234375}, {"start": 485.22, "end": 485.3, "word": " let's", "probability": 0.824951171875}, {"start": 485.3, "end": 485.42, "word": " go", "probability": 0.411376953125}, {"start": 485.42, "end": 485.54, "word": " to", "probability": 0.64794921875}, {"start": 485.54, "end": 485.76, "word": " the", "probability": 0.888671875}, {"start": 485.76, "end": 485.96, "word": " solution.", "probability": 0.9404296875}, {"start": 486.66, "end": 487.1, "word": " Now,", "probability": 0.732421875}, {"start": 487.18, "end": 487.26, "word": " the", "probability": 0.77294921875}, {"start": 487.26, "end": 487.4, "word": " solution", "probability": 0.93310546875}, {"start": 487.4, "end": 487.62, "word": " will", "probability": 0.34423828125}, {"start": 487.62, "end": 487.8, "word": " depend", "probability": 0.748046875}, {"start": 487.8, "end": 487.94, "word": " on", "probability": 0.9482421875}, {"start": 487.94, "end": 488.16, "word": " something.", "probability": 0.580078125}], "temperature": 1.0}, {"id": 22, "seek": 51186, "start": 490.66, "end": 511.86, "text": "The solution depends on the fact that the setter methods are easier to use than the constructor I wish I could make the student empty and then tell him s.set blah blah blah and fill in the data It is true that you need 7, 8 lines or 10 or 20 lines to fill in the data but at least", "tokens": [2278, 3827, 5946, 322, 264, 1186, 300, 264, 992, 391, 7150, 366, 3571, 281, 764, 813, 264, 47479, 286, 3172, 286, 727, 652, 264, 3107, 6707, 293, 550, 980, 796, 262, 13, 3854, 12288, 12288, 12288, 293, 2836, 294, 264, 1412, 467, 307, 2074, 300, 291, 643, 1614, 11, 1649, 3876, 420, 1266, 420, 945, 3876, 281, 2836, 294, 264, 1412, 457, 412, 1935], "avg_logprob": -0.4932692307692308, "compression_ratio": 1.5819209039548023, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 490.66, "end": 490.9, "word": "The", "probability": 0.66064453125}, {"start": 490.9, "end": 491.1, "word": " solution", "probability": 0.8525390625}, {"start": 491.1, "end": 491.48, "word": " depends", "probability": 0.39892578125}, {"start": 491.48, "end": 492.1, "word": " on", "probability": 0.771484375}, {"start": 492.1, "end": 492.1, "word": " the", "probability": 0.5712890625}, {"start": 492.1, "end": 492.1, "word": " fact", "probability": 0.060699462890625}, {"start": 492.1, "end": 492.56, "word": " that", "probability": 0.91357421875}, {"start": 492.56, "end": 492.64, "word": " the", "probability": 0.6201171875}, {"start": 492.64, "end": 492.92, "word": " setter", "probability": 0.748046875}, {"start": 492.92, "end": 493.42, "word": " methods", "probability": 0.64599609375}, {"start": 493.42, "end": 494.08, "word": " are", "probability": 0.697265625}, {"start": 494.08, "end": 494.08, "word": " easier", "probability": 0.7919921875}, {"start": 494.08, "end": 494.08, "word": " to", "probability": 0.89990234375}, {"start": 494.08, "end": 494.56, "word": " use", "probability": 0.8583984375}, {"start": 494.56, "end": 495.18, "word": " than", "probability": 0.90869140625}, {"start": 495.18, "end": 496.0, "word": " the", "probability": 0.8251953125}, {"start": 496.0, "end": 497.02, "word": " constructor", "probability": 0.79541015625}, {"start": 497.02, "end": 497.7, "word": " I", "probability": 0.29833984375}, {"start": 497.7, "end": 499.14, "word": " wish", "probability": 0.65380859375}, {"start": 499.14, "end": 499.44, "word": " I", "probability": 0.62060546875}, {"start": 499.44, "end": 499.76, "word": " could", "probability": 0.7587890625}, {"start": 499.76, "end": 500.5, "word": " make", "probability": 0.40185546875}, {"start": 500.5, "end": 500.96, "word": " the", "probability": 0.375732421875}, {"start": 500.96, "end": 501.5, "word": " student", "probability": 0.72265625}, {"start": 501.5, "end": 501.84, "word": " empty", "probability": 0.4453125}, {"start": 501.84, "end": 501.98, "word": " and", "probability": 0.4794921875}, {"start": 501.98, "end": 502.18, "word": " then", "probability": 0.677734375}, {"start": 502.18, "end": 502.52, "word": " tell", "probability": 0.37939453125}, {"start": 502.52, "end": 503.16, "word": " him", "probability": 0.876953125}, {"start": 503.16, "end": 503.62, "word": " s", "probability": 0.3388671875}, {"start": 503.62, "end": 504.22, "word": ".set", "probability": 0.82763671875}, {"start": 504.22, "end": 504.98, "word": " blah", "probability": 0.177734375}, {"start": 504.98, "end": 505.14, "word": " blah", "probability": 0.89892578125}, {"start": 505.14, "end": 505.42, "word": " blah", "probability": 0.8349609375}, {"start": 505.42, "end": 505.54, "word": " and", "probability": 0.61572265625}, {"start": 505.54, "end": 505.72, "word": " fill", "probability": 0.6591796875}, {"start": 505.72, "end": 505.78, "word": " in", "probability": 0.30224609375}, {"start": 505.78, "end": 505.86, "word": " the", "probability": 0.7470703125}, {"start": 505.86, "end": 506.06, "word": " data", "probability": 0.7607421875}, {"start": 506.06, "end": 507.06, "word": " It", "probability": 0.241943359375}, {"start": 507.06, "end": 507.14, "word": " is", "probability": 0.466064453125}, {"start": 507.14, "end": 507.24, "word": " true", "probability": 0.76220703125}, {"start": 507.24, "end": 507.38, "word": " that", "probability": 0.8251953125}, {"start": 507.38, "end": 507.8, "word": " you", "probability": 0.69580078125}, {"start": 507.8, "end": 508.02, "word": " need", "probability": 0.457275390625}, {"start": 508.02, "end": 508.38, "word": " 7,", "probability": 0.4765625}, {"start": 508.46, "end": 508.68, "word": " 8", "probability": 0.58642578125}, {"start": 508.68, "end": 508.92, "word": " lines", "probability": 0.39453125}, {"start": 508.92, "end": 509.16, "word": " or", "probability": 0.69580078125}, {"start": 509.16, "end": 509.42, "word": " 10", "probability": 0.86083984375}, {"start": 509.42, "end": 509.76, "word": " or", "probability": 0.779296875}, {"start": 509.76, "end": 510.12, "word": " 20", "probability": 0.91064453125}, {"start": 510.12, "end": 510.42, "word": " lines", "probability": 0.83349609375}, {"start": 510.42, "end": 510.62, "word": " to", "probability": 0.90478515625}, {"start": 510.62, "end": 510.8, "word": " fill", "probability": 0.82373046875}, {"start": 510.8, "end": 510.92, "word": " in", "probability": 0.61279296875}, {"start": 510.92, "end": 510.92, "word": " the", "probability": 0.830078125}, {"start": 510.92, "end": 511.14, "word": " data", "probability": 0.90087890625}, {"start": 511.14, "end": 511.38, "word": " but", "probability": 0.4208984375}, {"start": 511.38, "end": 511.54, "word": " at", "probability": 0.9189453125}, {"start": 511.54, "end": 511.86, "word": " least", "probability": 0.94970703125}], "temperature": 1.0}, {"id": 23, "seek": 53874, "start": 512.64, "end": 538.74, "text": " This is a concept, right? If this library or this class is not made by you and you took out the setter methods, you will understand each one's meaning. But the problem is that setters cannot be used unless the object is present. Right or wrong? I mean, we got into a problem that the object, in order to run, it needs a lot of parameters. So you cannot use the setters", "tokens": [639, 307, 257, 3410, 11, 558, 30, 759, 341, 6405, 420, 341, 1508, 307, 406, 1027, 538, 291, 293, 291, 1890, 484, 264, 992, 391, 7150, 11, 291, 486, 1223, 1184, 472, 311, 3620, 13, 583, 264, 1154, 307, 300, 992, 1559, 2644, 312, 1143, 5969, 264, 2657, 307, 1974, 13, 1779, 420, 2085, 30, 286, 914, 11, 321, 658, 666, 257, 1154, 300, 264, 2657, 11, 294, 1668, 281, 1190, 11, 309, 2203, 257, 688, 295, 9834, 13, 407, 291, 2644, 764, 264, 992, 1559], "avg_logprob": -0.5312499808168959, "compression_ratio": 1.64, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 512.64, "end": 512.92, "word": " This", "probability": 0.1513671875}, {"start": 512.92, "end": 512.96, "word": " is", "probability": 0.8818359375}, {"start": 512.96, "end": 513.1, "word": " a", "probability": 0.337890625}, {"start": 513.1, "end": 513.24, "word": " concept,", "probability": 0.7080078125}, {"start": 513.86, "end": 514.22, "word": " right?", "probability": 0.650390625}, {"start": 514.52, "end": 514.88, "word": " If", "probability": 0.6435546875}, {"start": 514.88, "end": 515.76, "word": " this", "probability": 0.1053466796875}, {"start": 515.76, "end": 516.14, "word": " library", "probability": 0.36181640625}, {"start": 516.14, "end": 518.36, "word": " or", "probability": 0.56201171875}, {"start": 518.36, "end": 518.46, "word": " this", "probability": 0.59033203125}, {"start": 518.46, "end": 518.76, "word": " class", "probability": 0.96533203125}, {"start": 518.76, "end": 518.96, "word": " is", "probability": 0.46337890625}, {"start": 518.96, "end": 519.0, "word": " not", "probability": 0.67333984375}, {"start": 519.0, "end": 519.36, "word": " made", "probability": 0.27197265625}, {"start": 519.36, "end": 519.52, "word": " by", "probability": 0.9599609375}, {"start": 519.52, "end": 519.52, "word": " you", "probability": 0.92236328125}, {"start": 519.52, "end": 519.68, "word": " and", "probability": 0.55078125}, {"start": 519.68, "end": 519.78, "word": " you", "probability": 0.67236328125}, {"start": 519.78, "end": 519.94, "word": " took", "probability": 0.09539794921875}, {"start": 519.94, "end": 520.08, "word": " out", "probability": 0.4912109375}, {"start": 520.08, "end": 520.24, "word": " the", "probability": 0.7626953125}, {"start": 520.24, "end": 520.46, "word": " setter", "probability": 0.7666015625}, {"start": 520.46, "end": 520.78, "word": " methods,", "probability": 0.81591796875}, {"start": 520.8, "end": 520.88, "word": " you", "probability": 0.72509765625}, {"start": 520.88, "end": 520.98, "word": " will", "probability": 0.70263671875}, {"start": 520.98, "end": 521.38, "word": " understand", "probability": 0.728515625}, {"start": 521.38, "end": 522.14, "word": " each", "probability": 0.58203125}, {"start": 522.14, "end": 522.84, "word": " one's", "probability": 0.43359375}, {"start": 522.84, "end": 523.12, "word": " meaning.", "probability": 0.67431640625}, {"start": 523.4, "end": 523.88, "word": " But", "probability": 0.80712890625}, {"start": 523.88, "end": 524.04, "word": " the", "probability": 0.8896484375}, {"start": 524.04, "end": 524.26, "word": " problem", "probability": 0.84375}, {"start": 524.26, "end": 524.42, "word": " is", "probability": 0.9384765625}, {"start": 524.42, "end": 524.5, "word": " that", "probability": 0.88134765625}, {"start": 524.5, "end": 524.82, "word": " setters", "probability": 0.6092529296875}, {"start": 524.82, "end": 525.08, "word": " cannot", "probability": 0.68359375}, {"start": 525.08, "end": 525.42, "word": " be", "probability": 0.92626953125}, {"start": 525.42, "end": 525.78, "word": " used", "probability": 0.9375}, {"start": 525.78, "end": 527.18, "word": " unless", "probability": 0.52001953125}, {"start": 527.18, "end": 527.56, "word": " the", "probability": 0.81005859375}, {"start": 527.56, "end": 527.8, "word": " object", "probability": 0.95654296875}, {"start": 527.8, "end": 528.2, "word": " is", "probability": 0.67578125}, {"start": 528.2, "end": 529.7, "word": " present.", "probability": 0.499267578125}, {"start": 529.9, "end": 530.12, "word": " Right", "probability": 0.48583984375}, {"start": 530.12, "end": 530.3, "word": " or", "probability": 0.76220703125}, {"start": 530.3, "end": 530.42, "word": " wrong?", "probability": 0.60595703125}, {"start": 531.32, "end": 531.46, "word": " I", "probability": 0.1768798828125}, {"start": 531.46, "end": 531.54, "word": " mean,", "probability": 0.94091796875}, {"start": 532.16, "end": 532.62, "word": " we", "probability": 0.607421875}, {"start": 532.62, "end": 533.04, "word": " got", "probability": 0.37646484375}, {"start": 533.04, "end": 533.3, "word": " into", "probability": 0.82958984375}, {"start": 533.3, "end": 533.36, "word": " a", "probability": 0.84912109375}, {"start": 533.36, "end": 533.6, "word": " problem", "probability": 0.833984375}, {"start": 533.6, "end": 533.9, "word": " that", "probability": 0.33056640625}, {"start": 533.9, "end": 534.18, "word": " the", "probability": 0.458740234375}, {"start": 534.18, "end": 534.58, "word": " object,", "probability": 0.97119140625}, {"start": 534.7, "end": 534.8, "word": " in", "probability": 0.60400390625}, {"start": 534.8, "end": 534.92, "word": " order", "probability": 0.89794921875}, {"start": 534.92, "end": 535.06, "word": " to", "probability": 0.93359375}, {"start": 535.06, "end": 535.28, "word": " run,", "probability": 0.301513671875}, {"start": 535.42, "end": 535.44, "word": " it", "probability": 0.3369140625}, {"start": 535.44, "end": 535.58, "word": " needs", "probability": 0.548828125}, {"start": 535.58, "end": 535.64, "word": " a", "probability": 0.56103515625}, {"start": 535.64, "end": 535.64, "word": " lot", "probability": 0.95068359375}, {"start": 535.64, "end": 535.64, "word": " of", "probability": 0.9677734375}, {"start": 535.64, "end": 536.14, "word": " parameters.", "probability": 0.9541015625}, {"start": 536.98, "end": 537.38, "word": " So", "probability": 0.84716796875}, {"start": 537.38, "end": 537.48, "word": " you", "probability": 0.60693359375}, {"start": 537.48, "end": 537.66, "word": " cannot", "probability": 0.634765625}, {"start": 537.66, "end": 538.18, "word": " use", "probability": 0.88037109375}, {"start": 538.18, "end": 538.34, "word": " the", "probability": 0.447265625}, {"start": 538.34, "end": 538.74, "word": " setters", "probability": 0.92919921875}], "temperature": 1.0}, {"id": 24, "seek": 56891, "start": 539.59, "end": 568.91, "text": " Before creating the object Because our whole idea in the builder pattern We want to find a way to make it possible for us to use the setters And then create the object The opposite Okay? I mean, why do I need to use the setters? To fill the data Step by step Then I say what? Create Okay? But can I do this now? No, because first I need to have an object So that I can use the setters How can we activate the setters?", "tokens": [4546, 4084, 264, 2657, 1436, 527, 1379, 1558, 294, 264, 27377, 5102, 492, 528, 281, 915, 257, 636, 281, 652, 309, 1944, 337, 505, 281, 764, 264, 992, 1559, 400, 550, 1884, 264, 2657, 440, 6182, 1033, 30, 286, 914, 11, 983, 360, 286, 643, 281, 764, 264, 992, 1559, 30, 1407, 2836, 264, 1412, 5470, 538, 1823, 1396, 286, 584, 437, 30, 20248, 1033, 30, 583, 393, 286, 360, 341, 586, 30, 883, 11, 570, 700, 286, 643, 281, 362, 364, 2657, 407, 300, 286, 393, 764, 264, 992, 1559, 1012, 393, 321, 13615, 264, 992, 1559, 30], "avg_logprob": -0.4368749964237213, "compression_ratio": 1.7563025210084033, "no_speech_prob": 8.52346420288086e-06, "words": [{"start": 539.59, "end": 539.97, "word": " Before", "probability": 0.1058349609375}, {"start": 539.97, "end": 540.41, "word": " creating", "probability": 0.34228515625}, {"start": 540.41, "end": 540.77, "word": " the", "probability": 0.67626953125}, {"start": 540.77, "end": 541.05, "word": " object", "probability": 0.88427734375}, {"start": 541.05, "end": 541.41, "word": " Because", "probability": 0.273681640625}, {"start": 541.41, "end": 541.75, "word": " our", "probability": 0.404296875}, {"start": 541.75, "end": 541.89, "word": " whole", "probability": 0.252685546875}, {"start": 541.89, "end": 542.15, "word": " idea", "probability": 0.734375}, {"start": 542.15, "end": 542.43, "word": " in", "probability": 0.58935546875}, {"start": 542.43, "end": 542.53, "word": " the", "probability": 0.3330078125}, {"start": 542.53, "end": 542.73, "word": " builder", "probability": 0.830078125}, {"start": 542.73, "end": 543.19, "word": " pattern", "probability": 0.87060546875}, {"start": 543.19, "end": 543.59, "word": " We", "probability": 0.2093505859375}, {"start": 543.59, "end": 543.73, "word": " want", "probability": 0.6943359375}, {"start": 543.73, "end": 543.81, "word": " to", "probability": 0.9609375}, {"start": 543.81, "end": 543.93, "word": " find", "probability": 0.355224609375}, {"start": 543.93, "end": 544.35, "word": " a", "probability": 0.8720703125}, {"start": 544.35, "end": 544.35, "word": " way", "probability": 0.93359375}, {"start": 544.35, "end": 544.53, "word": " to", "probability": 0.81494140625}, {"start": 544.53, "end": 544.83, "word": " make", "probability": 0.359619140625}, {"start": 544.83, "end": 545.05, "word": " it", "probability": 0.62646484375}, {"start": 545.05, "end": 545.31, "word": " possible", "probability": 0.83544921875}, {"start": 545.31, "end": 545.49, "word": " for", "probability": 0.401611328125}, {"start": 545.49, "end": 545.61, "word": " us", "probability": 0.7666015625}, {"start": 545.61, "end": 545.65, "word": " to", "probability": 0.90576171875}, {"start": 545.65, "end": 546.07, "word": " use", "probability": 0.8115234375}, {"start": 546.07, "end": 546.23, "word": " the", "probability": 0.60595703125}, {"start": 546.23, "end": 546.65, "word": " setters", "probability": 0.79052734375}, {"start": 546.65, "end": 547.99, "word": " And", "probability": 0.61767578125}, {"start": 547.99, "end": 548.27, "word": " then", "probability": 0.7578125}, {"start": 548.27, "end": 548.51, "word": " create", "probability": 0.681640625}, {"start": 548.51, "end": 548.63, "word": " the", "probability": 0.85546875}, {"start": 548.63, "end": 548.99, "word": " object", "probability": 0.953125}, {"start": 548.99, "end": 549.61, "word": " The", "probability": 0.191650390625}, {"start": 549.61, "end": 549.87, "word": " opposite", "probability": 0.79248046875}, {"start": 549.87, "end": 551.31, "word": " Okay?", "probability": 0.1541748046875}, {"start": 551.79, "end": 552.01, "word": " I", "probability": 0.34814453125}, {"start": 552.01, "end": 552.05, "word": " mean,", "probability": 0.80517578125}, {"start": 552.19, "end": 552.65, "word": " why", "probability": 0.7255859375}, {"start": 552.65, "end": 552.67, "word": " do", "probability": 0.5947265625}, {"start": 552.67, "end": 552.75, "word": " I", "probability": 0.931640625}, {"start": 552.75, "end": 552.89, "word": " need", "probability": 0.39404296875}, {"start": 552.89, "end": 552.99, "word": " to", "probability": 0.96337890625}, {"start": 552.99, "end": 553.15, "word": " use", "probability": 0.85791015625}, {"start": 553.15, "end": 553.33, "word": " the", "probability": 0.78759765625}, {"start": 553.33, "end": 553.61, "word": " setters?", "probability": 0.912109375}, {"start": 553.71, "end": 553.89, "word": " To", "probability": 0.64599609375}, {"start": 553.89, "end": 554.17, "word": " fill", "probability": 0.73828125}, {"start": 554.17, "end": 554.29, "word": " the", "probability": 0.54248046875}, {"start": 554.29, "end": 554.75, "word": " data", "probability": 0.74560546875}, {"start": 554.75, "end": 555.71, "word": " Step", "probability": 0.59619140625}, {"start": 555.71, "end": 555.89, "word": " by", "probability": 0.96484375}, {"start": 555.89, "end": 556.19, "word": " step", "probability": 0.91162109375}, {"start": 556.19, "end": 556.77, "word": " Then", "probability": 0.42724609375}, {"start": 556.77, "end": 556.95, "word": " I", "probability": 0.615234375}, {"start": 556.95, "end": 557.09, "word": " say", "probability": 0.4296875}, {"start": 557.09, "end": 557.51, "word": " what?", "probability": 0.72705078125}, {"start": 558.05, "end": 558.35, "word": " Create", "probability": 0.46923828125}, {"start": 558.35, "end": 559.39, "word": " Okay?", "probability": 0.341796875}, {"start": 559.99, "end": 560.47, "word": " But", "probability": 0.88623046875}, {"start": 560.47, "end": 560.69, "word": " can", "probability": 0.69775390625}, {"start": 560.69, "end": 561.05, "word": " I", "probability": 0.9580078125}, {"start": 561.05, "end": 561.39, "word": " do", "probability": 0.94677734375}, {"start": 561.39, "end": 561.49, "word": " this", "probability": 0.55029296875}, {"start": 561.49, "end": 561.79, "word": " now?", "probability": 0.6884765625}, {"start": 562.31, "end": 562.87, "word": " No,", "probability": 0.916015625}, {"start": 562.91, "end": 563.09, "word": " because", "probability": 0.88232421875}, {"start": 563.09, "end": 563.79, "word": " first", "probability": 0.262939453125}, {"start": 563.79, "end": 563.97, "word": " I", "probability": 0.395751953125}, {"start": 563.97, "end": 563.97, "word": " need", "probability": 0.5263671875}, {"start": 563.97, "end": 563.99, "word": " to", "probability": 0.912109375}, {"start": 563.99, "end": 564.19, "word": " have", "probability": 0.927734375}, {"start": 564.19, "end": 564.57, "word": " an", "probability": 0.7265625}, {"start": 564.57, "end": 564.79, "word": " object", "probability": 0.98046875}, {"start": 564.79, "end": 564.99, "word": " So", "probability": 0.3427734375}, {"start": 564.99, "end": 565.09, "word": " that", "probability": 0.5859375}, {"start": 565.09, "end": 565.17, "word": " I", "probability": 0.9892578125}, {"start": 565.17, "end": 565.27, "word": " can", "probability": 0.92822265625}, {"start": 565.27, "end": 565.65, "word": " use", "probability": 0.865234375}, {"start": 565.65, "end": 566.47, "word": " the", "probability": 0.8955078125}, {"start": 566.47, "end": 566.75, "word": " setters", "probability": 0.927490234375}, {"start": 566.75, "end": 567.25, "word": " How", "probability": 0.9482421875}, {"start": 567.25, "end": 567.41, "word": " can", "probability": 0.80224609375}, {"start": 567.41, "end": 567.85, "word": " we", "probability": 0.95068359375}, {"start": 567.85, "end": 568.27, "word": " activate", "probability": 0.55517578125}, {"start": 568.27, "end": 568.49, "word": " the", "probability": 0.91259765625}, {"start": 568.49, "end": 568.91, "word": " setters?", "probability": 0.9345703125}], "temperature": 1.0}, {"id": 25, "seek": 59488, "start": 570.14, "end": 594.88, "text": "To fill the data step by step because the setters are excellent and explain exactly what each parameter means, and then after filling the setters, we say to create the object. So we reverse the verse. Not to create the object and then use the setters. Yes, because creating the object is difficult in the case of this verse because it requires a lot of parameters. We use the setters, fill the data step by step, and then create the object. We reverse it.", "tokens": [13342, 2836, 264, 1412, 1823, 538, 1823, 570, 264, 992, 1559, 366, 7103, 293, 2903, 2293, 437, 1184, 13075, 1355, 11, 293, 550, 934, 10623, 264, 992, 1559, 11, 321, 584, 281, 1884, 264, 2657, 13, 407, 321, 9943, 264, 7996, 13, 1726, 281, 1884, 264, 2657, 293, 550, 764, 264, 992, 1559, 13, 1079, 11, 570, 4084, 264, 2657, 307, 2252, 294, 264, 1389, 295, 341, 7996, 570, 309, 7029, 257, 688, 295, 9834, 13, 492, 764, 264, 992, 1559, 11, 2836, 264, 1412, 1823, 538, 1823, 11, 293, 550, 1884, 264, 2657, 13, 492, 9943, 309, 13], "avg_logprob": -0.4262499967217445, "compression_ratio": 2.116279069767442, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 570.1400000000001, "end": 570.58, "word": "To", "probability": 0.1929931640625}, {"start": 570.58, "end": 570.86, "word": " fill", "probability": 0.72998046875}, {"start": 570.86, "end": 571.0, "word": " the", "probability": 0.5078125}, {"start": 571.0, "end": 571.24, "word": " data", "probability": 0.7138671875}, {"start": 571.24, "end": 571.5, "word": " step", "probability": 0.78076171875}, {"start": 571.5, "end": 571.66, "word": " by", "probability": 0.9541015625}, {"start": 571.66, "end": 571.88, "word": " step", "probability": 0.921875}, {"start": 571.88, "end": 572.14, "word": " because", "probability": 0.50341796875}, {"start": 572.14, "end": 572.28, "word": " the", "probability": 0.66650390625}, {"start": 572.28, "end": 572.54, "word": " setters", "probability": 0.5406494140625}, {"start": 572.54, "end": 572.66, "word": " are", "probability": 0.68310546875}, {"start": 572.66, "end": 573.14, "word": " excellent", "probability": 0.712890625}, {"start": 573.14, "end": 573.78, "word": " and", "probability": 0.68798828125}, {"start": 573.78, "end": 574.12, "word": " explain", "probability": 0.48193359375}, {"start": 574.12, "end": 574.64, "word": " exactly", "probability": 0.55419921875}, {"start": 574.64, "end": 574.88, "word": " what", "probability": 0.5322265625}, {"start": 574.88, "end": 574.96, "word": " each", "probability": 0.7158203125}, {"start": 574.96, "end": 575.64, "word": " parameter", "probability": 0.9599609375}, {"start": 575.64, "end": 576.18, "word": " means,", "probability": 0.90478515625}, {"start": 576.48, "end": 576.72, "word": " and", "probability": 0.642578125}, {"start": 576.72, "end": 577.02, "word": " then", "probability": 0.67529296875}, {"start": 577.02, "end": 577.28, "word": " after", "probability": 0.55322265625}, {"start": 577.28, "end": 577.68, "word": " filling", "probability": 0.445068359375}, {"start": 577.68, "end": 577.9, "word": " the", "probability": 0.58447265625}, {"start": 577.9, "end": 578.22, "word": " setters,", "probability": 0.93212890625}, {"start": 578.3, "end": 578.34, "word": " we", "probability": 0.658203125}, {"start": 578.34, "end": 578.6, "word": " say", "probability": 0.11505126953125}, {"start": 578.6, "end": 578.82, "word": " to", "probability": 0.1812744140625}, {"start": 578.82, "end": 578.92, "word": " create", "probability": 0.525390625}, {"start": 578.92, "end": 580.16, "word": " the", "probability": 0.78369140625}, {"start": 580.16, "end": 580.36, "word": " object.", "probability": 0.8740234375}, {"start": 580.46, "end": 580.52, "word": " So", "probability": 0.59912109375}, {"start": 580.52, "end": 580.66, "word": " we", "probability": 0.7275390625}, {"start": 580.66, "end": 580.9, "word": " reverse", "probability": 0.297607421875}, {"start": 580.9, "end": 581.12, "word": " the", "probability": 0.876953125}, {"start": 581.12, "end": 581.3, "word": " verse.", "probability": 0.54833984375}, {"start": 582.26, "end": 582.58, "word": " Not", "probability": 0.291748046875}, {"start": 582.58, "end": 584.08, "word": " to", "probability": 0.31201171875}, {"start": 584.08, "end": 584.3, "word": " create", "probability": 0.7607421875}, {"start": 584.3, "end": 584.44, "word": " the", "probability": 0.7861328125}, {"start": 584.44, "end": 584.62, "word": " object", "probability": 0.9638671875}, {"start": 584.62, "end": 584.8, "word": " and", "probability": 0.57666015625}, {"start": 584.8, "end": 584.9, "word": " then", "probability": 0.8115234375}, {"start": 584.9, "end": 585.18, "word": " use", "probability": 0.52880859375}, {"start": 585.18, "end": 585.38, "word": " the", "probability": 0.8427734375}, {"start": 585.38, "end": 585.74, "word": " setters.", "probability": 0.94140625}, {"start": 586.3, "end": 586.42, "word": " Yes,", "probability": 0.253662109375}, {"start": 586.54, "end": 586.58, "word": " because", "probability": 0.7841796875}, {"start": 586.58, "end": 586.84, "word": " creating", "probability": 0.6806640625}, {"start": 586.84, "end": 587.0, "word": " the", "probability": 0.7392578125}, {"start": 587.0, "end": 587.22, "word": " object", "probability": 0.970703125}, {"start": 587.22, "end": 587.32, "word": " is", "probability": 0.89599609375}, {"start": 587.32, "end": 587.6, "word": " difficult", "probability": 0.8349609375}, {"start": 587.6, "end": 587.8, "word": " in", "probability": 0.88818359375}, {"start": 587.8, "end": 587.9, "word": " the", "probability": 0.267822265625}, {"start": 587.9, "end": 588.04, "word": " case", "probability": 0.83837890625}, {"start": 588.04, "end": 588.14, "word": " of", "probability": 0.97265625}, {"start": 588.14, "end": 588.42, "word": " this", "probability": 0.47314453125}, {"start": 588.42, "end": 588.42, "word": " verse", "probability": 0.78466796875}, {"start": 588.42, "end": 588.62, "word": " because", "probability": 0.501953125}, {"start": 588.62, "end": 588.7, "word": " it", "probability": 0.7001953125}, {"start": 588.7, "end": 588.84, "word": " requires", "probability": 0.591796875}, {"start": 588.84, "end": 588.92, "word": " a", "probability": 0.420166015625}, {"start": 588.92, "end": 588.92, "word": " lot", "probability": 0.94873046875}, {"start": 588.92, "end": 588.92, "word": " of", "probability": 0.9638671875}, {"start": 588.92, "end": 589.34, "word": " parameters.", "probability": 0.96630859375}, {"start": 589.98, "end": 590.1, "word": " We", "probability": 0.87060546875}, {"start": 590.1, "end": 590.54, "word": " use", "probability": 0.80712890625}, {"start": 590.54, "end": 590.84, "word": " the", "probability": 0.89453125}, {"start": 590.84, "end": 591.26, "word": " setters,", "probability": 0.94677734375}, {"start": 591.84, "end": 592.16, "word": " fill", "probability": 0.4267578125}, {"start": 592.16, "end": 592.3, "word": " the", "probability": 0.85205078125}, {"start": 592.3, "end": 592.52, "word": " data", "probability": 0.9140625}, {"start": 592.52, "end": 592.72, "word": " step", "probability": 0.88916015625}, {"start": 592.72, "end": 592.88, "word": " by", "probability": 0.97705078125}, {"start": 592.88, "end": 593.0, "word": " step,", "probability": 0.908203125}, {"start": 593.06, "end": 593.16, "word": " and", "probability": 0.83447265625}, {"start": 593.16, "end": 593.38, "word": " then", "probability": 0.83544921875}, {"start": 593.38, "end": 593.66, "word": " create", "probability": 0.828125}, {"start": 593.66, "end": 593.8, "word": " the", "probability": 0.91015625}, {"start": 593.8, "end": 593.96, "word": " object.", "probability": 0.9609375}, {"start": 594.02, "end": 594.2, "word": " We", "probability": 0.8603515625}, {"start": 594.2, "end": 594.44, "word": " reverse", "probability": 0.83251953125}, {"start": 594.44, "end": 594.88, "word": " it.", "probability": 0.351806640625}], "temperature": 1.0}, {"id": 26, "seek": 62091, "start": 596.51, "end": 620.91, "text": " This is the builder pattern that we are going to use. In order to implement this solution, we need to do the following. Go to the class student. The first step is to go to the constructor and make it private. What does this mean? This means that no one will be able to create an object from the student.", "tokens": [639, 307, 264, 27377, 5102, 300, 321, 366, 516, 281, 764, 13, 682, 1668, 281, 4445, 341, 3827, 11, 321, 643, 281, 360, 264, 3480, 13, 1037, 281, 264, 1508, 3107, 13, 440, 700, 1823, 307, 281, 352, 281, 264, 47479, 293, 652, 309, 4551, 13, 708, 775, 341, 914, 30, 639, 1355, 300, 572, 472, 486, 312, 1075, 281, 1884, 364, 2657, 490, 264, 3107, 13], "avg_logprob": -0.46277574186815934, "compression_ratio": 1.5670103092783505, "no_speech_prob": 6.973743438720703e-06, "words": [{"start": 596.51, "end": 596.91, "word": " This", "probability": 0.0614013671875}, {"start": 596.91, "end": 597.31, "word": " is", "probability": 0.75048828125}, {"start": 597.31, "end": 599.29, "word": " the", "probability": 0.6123046875}, {"start": 599.29, "end": 599.53, "word": " builder", "probability": 0.65576171875}, {"start": 599.53, "end": 600.07, "word": " pattern", "probability": 0.888671875}, {"start": 600.07, "end": 600.69, "word": " that", "probability": 0.47900390625}, {"start": 600.69, "end": 600.89, "word": " we", "probability": 0.8251953125}, {"start": 600.89, "end": 600.89, "word": " are", "probability": 0.269775390625}, {"start": 600.89, "end": 601.01, "word": " going", "probability": 0.8583984375}, {"start": 601.01, "end": 601.09, "word": " to", "probability": 0.966796875}, {"start": 601.09, "end": 601.45, "word": " use.", "probability": 0.8447265625}, {"start": 601.55, "end": 601.69, "word": " In", "probability": 0.276123046875}, {"start": 601.69, "end": 601.73, "word": " order", "probability": 0.9287109375}, {"start": 601.73, "end": 601.87, "word": " to", "probability": 0.9619140625}, {"start": 601.87, "end": 602.19, "word": " implement", "probability": 0.423828125}, {"start": 602.19, "end": 602.33, "word": " this", "probability": 0.87939453125}, {"start": 602.33, "end": 602.59, "word": " solution,", "probability": 0.77001953125}, {"start": 603.59, "end": 603.59, "word": " we", "probability": 0.7001953125}, {"start": 603.59, "end": 603.77, "word": " need", "probability": 0.49169921875}, {"start": 603.77, "end": 603.87, "word": " to", "probability": 0.94384765625}, {"start": 603.87, "end": 603.99, "word": " do", "probability": 0.4033203125}, {"start": 603.99, "end": 604.19, "word": " the", "probability": 0.763671875}, {"start": 604.19, "end": 604.35, "word": " following.", "probability": 0.833984375}, {"start": 605.17, "end": 605.57, "word": " Go", "probability": 0.35888671875}, {"start": 605.57, "end": 605.83, "word": " to", "probability": 0.9462890625}, {"start": 605.83, "end": 605.91, "word": " the", "probability": 0.475830078125}, {"start": 605.91, "end": 606.21, "word": " class", "probability": 0.857421875}, {"start": 606.21, "end": 606.59, "word": " student.", "probability": 0.69580078125}, {"start": 608.49, "end": 608.89, "word": " The", "probability": 0.295166015625}, {"start": 608.89, "end": 609.09, "word": " first", "probability": 0.89111328125}, {"start": 609.09, "end": 609.37, "word": " step", "probability": 0.79150390625}, {"start": 609.37, "end": 609.93, "word": " is", "probability": 0.298583984375}, {"start": 609.93, "end": 610.29, "word": " to", "probability": 0.7275390625}, {"start": 610.29, "end": 610.43, "word": " go", "probability": 0.68359375}, {"start": 610.43, "end": 610.55, "word": " to", "probability": 0.931640625}, {"start": 610.55, "end": 610.63, "word": " the", "probability": 0.7734375}, {"start": 610.63, "end": 611.07, "word": " constructor", "probability": 0.92138671875}, {"start": 611.07, "end": 611.21, "word": " and", "probability": 0.85205078125}, {"start": 611.21, "end": 611.47, "word": " make", "probability": 0.3740234375}, {"start": 611.47, "end": 612.15, "word": " it", "probability": 0.798828125}, {"start": 612.15, "end": 614.71, "word": " private.", "probability": 0.86572265625}, {"start": 614.87, "end": 614.99, "word": " What", "probability": 0.658203125}, {"start": 614.99, "end": 615.15, "word": " does", "probability": 0.79296875}, {"start": 615.15, "end": 615.27, "word": " this", "probability": 0.72265625}, {"start": 615.27, "end": 615.41, "word": " mean?", "probability": 0.8505859375}, {"start": 617.05, "end": 617.45, "word": " This", "probability": 0.2958984375}, {"start": 617.45, "end": 617.45, "word": " means", "probability": 0.89306640625}, {"start": 617.45, "end": 617.79, "word": " that", "probability": 0.81591796875}, {"start": 617.79, "end": 617.93, "word": " no", "probability": 0.432373046875}, {"start": 617.93, "end": 618.13, "word": " one", "probability": 0.9052734375}, {"start": 618.13, "end": 618.37, "word": " will", "probability": 0.533203125}, {"start": 618.37, "end": 618.57, "word": " be", "probability": 0.529296875}, {"start": 618.57, "end": 618.85, "word": " able", "probability": 0.94287109375}, {"start": 618.85, "end": 620.01, "word": " to", "probability": 0.9677734375}, {"start": 620.01, "end": 620.19, "word": " create", "probability": 0.6162109375}, {"start": 620.19, "end": 620.33, "word": " an", "probability": 0.255615234375}, {"start": 620.33, "end": 620.41, "word": " object", "probability": 0.98291015625}, {"start": 620.41, "end": 620.61, "word": " from", "probability": 0.60791015625}, {"start": 620.61, "end": 620.67, "word": " the", "probability": 0.7666015625}, {"start": 620.67, "end": 620.91, "word": " student.", "probability": 0.9033203125}], "temperature": 1.0}, {"id": 27, "seek": 64803, "start": 622.11, "end": 648.03, "text": " there is no empty constructor, we stopped the construction of object student in the end, down here we go to class student and create the following public static class builder", "tokens": [456, 307, 572, 6707, 47479, 11, 321, 5936, 264, 6435, 295, 2657, 3107, 294, 264, 917, 11, 760, 510, 321, 352, 281, 1508, 3107, 293, 1884, 264, 3480, 1908, 13437, 1508, 27377], "avg_logprob": -0.7258522727272727, "compression_ratio": 1.4830508474576272, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 622.11, "end": 622.35, "word": " there", "probability": 0.042755126953125}, {"start": 622.35, "end": 622.45, "word": " is", "probability": 0.485595703125}, {"start": 622.45, "end": 622.45, "word": " no", "probability": 0.70263671875}, {"start": 622.45, "end": 623.19, "word": " empty", "probability": 0.431640625}, {"start": 623.19, "end": 623.19, "word": " constructor,", "probability": 0.68310546875}, {"start": 623.53, "end": 624.17, "word": " we", "probability": 0.322998046875}, {"start": 624.17, "end": 624.59, "word": " stopped", "probability": 0.58544921875}, {"start": 624.59, "end": 624.73, "word": " the", "probability": 0.26904296875}, {"start": 624.73, "end": 625.13, "word": " construction", "probability": 0.402099609375}, {"start": 625.13, "end": 627.41, "word": " of", "probability": 0.64599609375}, {"start": 627.41, "end": 627.69, "word": " object", "probability": 0.487060546875}, {"start": 627.69, "end": 628.15, "word": " student", "probability": 0.69677734375}, {"start": 628.15, "end": 629.49, "word": " in", "probability": 0.1241455078125}, {"start": 629.49, "end": 629.59, "word": " the", "probability": 0.853515625}, {"start": 629.59, "end": 629.85, "word": " end,", "probability": 0.76953125}, {"start": 630.05, "end": 630.15, "word": " down", "probability": 0.275634765625}, {"start": 630.15, "end": 630.83, "word": " here", "probability": 0.81005859375}, {"start": 630.83, "end": 633.97, "word": " we", "probability": 0.43994140625}, {"start": 633.97, "end": 634.29, "word": " go", "probability": 0.300537109375}, {"start": 634.29, "end": 634.53, "word": " to", "probability": 0.3759765625}, {"start": 634.53, "end": 635.03, "word": " class", "probability": 0.77294921875}, {"start": 635.03, "end": 635.53, "word": " student", "probability": 0.92041015625}, {"start": 635.53, "end": 636.11, "word": " and", "probability": 0.5234375}, {"start": 636.11, "end": 636.37, "word": " create", "probability": 0.384765625}, {"start": 636.37, "end": 636.55, "word": " the", "probability": 0.416015625}, {"start": 636.55, "end": 636.77, "word": " following", "probability": 0.70947265625}, {"start": 636.77, "end": 637.67, "word": " public", "probability": 0.7275390625}, {"start": 637.67, "end": 640.01, "word": " static", "probability": 0.98095703125}, {"start": 640.01, "end": 643.61, "word": " class", "probability": 0.96630859375}, {"start": 643.61, "end": 648.03, "word": " builder", "probability": 0.94580078125}], "temperature": 1.0}, {"id": 28, "seek": 67245, "start": 649.53, "end": 672.45, "text": " I think this static is not necessary public class builder what does it mean? we made inside the class student inner class, its name is builder then all the attributes of the student, you see them? take a copy of them", "tokens": [286, 519, 341, 13437, 307, 406, 4818, 1908, 1508, 27377, 437, 775, 309, 914, 30, 321, 1027, 1854, 264, 1508, 3107, 7284, 1508, 11, 1080, 1315, 307, 27377, 550, 439, 264, 17212, 295, 264, 3107, 11, 291, 536, 552, 30, 747, 257, 5055, 295, 552], "avg_logprob": -0.5777853144251782, "compression_ratio": 1.5390070921985815, "no_speech_prob": 5.185604095458984e-06, "words": [{"start": 649.53, "end": 649.83, "word": " I", "probability": 0.302490234375}, {"start": 649.83, "end": 650.43, "word": " think", "probability": 0.56396484375}, {"start": 650.43, "end": 650.51, "word": " this", "probability": 0.39208984375}, {"start": 650.51, "end": 650.77, "word": " static", "probability": 0.212158203125}, {"start": 650.77, "end": 650.99, "word": " is", "probability": 0.66748046875}, {"start": 650.99, "end": 651.07, "word": " not", "probability": 0.64599609375}, {"start": 651.07, "end": 651.41, "word": " necessary", "probability": 0.61474609375}, {"start": 651.41, "end": 652.17, "word": " public", "probability": 0.1876220703125}, {"start": 652.17, "end": 652.79, "word": " class", "probability": 0.8583984375}, {"start": 652.79, "end": 654.15, "word": " builder", "probability": 0.935546875}, {"start": 654.15, "end": 655.75, "word": " what", "probability": 0.490966796875}, {"start": 655.75, "end": 655.91, "word": " does", "probability": 0.75732421875}, {"start": 655.91, "end": 656.05, "word": " it", "probability": 0.6396484375}, {"start": 656.05, "end": 656.05, "word": " mean?", "probability": 0.9462890625}, {"start": 656.19, "end": 656.53, "word": " we", "probability": 0.517578125}, {"start": 656.53, "end": 656.53, "word": " made", "probability": 0.308349609375}, {"start": 656.53, "end": 656.77, "word": " inside", "probability": 0.41015625}, {"start": 656.77, "end": 656.95, "word": " the", "probability": 0.76318359375}, {"start": 656.95, "end": 657.19, "word": " class", "probability": 0.89453125}, {"start": 657.19, "end": 657.71, "word": " student", "probability": 0.60546875}, {"start": 657.71, "end": 658.09, "word": " inner", "probability": 0.5576171875}, {"start": 658.09, "end": 659.87, "word": " class,", "probability": 0.8984375}, {"start": 659.91, "end": 659.99, "word": " its", "probability": 0.312744140625}, {"start": 659.99, "end": 660.21, "word": " name", "probability": 0.90673828125}, {"start": 660.21, "end": 660.65, "word": " is", "probability": 0.88134765625}, {"start": 660.65, "end": 661.15, "word": " builder", "probability": 0.9208984375}, {"start": 661.15, "end": 662.55, "word": " then", "probability": 0.494140625}, {"start": 662.55, "end": 664.27, "word": " all", "probability": 0.60546875}, {"start": 664.27, "end": 664.41, "word": " the", "probability": 0.45166015625}, {"start": 664.41, "end": 664.89, "word": " attributes", "probability": 0.447021484375}, {"start": 664.89, "end": 665.11, "word": " of", "probability": 0.8818359375}, {"start": 665.11, "end": 665.33, "word": " the", "probability": 0.70654296875}, {"start": 665.33, "end": 665.83, "word": " student,", "probability": 0.892578125}, {"start": 666.07, "end": 666.29, "word": " you", "probability": 0.314697265625}, {"start": 666.29, "end": 666.53, "word": " see", "probability": 0.7939453125}, {"start": 666.53, "end": 666.85, "word": " them?", "probability": 0.2763671875}, {"start": 671.33, "end": 671.81, "word": " take", "probability": 0.53076171875}, {"start": 671.81, "end": 671.93, "word": " a", "probability": 0.7353515625}, {"start": 671.93, "end": 672.09, "word": " copy", "probability": 0.88916015625}, {"start": 672.09, "end": 672.27, "word": " of", "probability": 0.775390625}, {"start": 672.27, "end": 672.45, "word": " them", "probability": 0.56201171875}], "temperature": 1.0}, {"id": 29, "seek": 70144, "start": 678.1, "end": 701.44, "text": " And we put it in the builder Ok, so far it is understood What we did now, let's draw this one I have a class Student", "tokens": [400, 321, 829, 309, 294, 264, 27377, 3477, 11, 370, 1400, 309, 307, 7320, 708, 321, 630, 586, 11, 718, 311, 2642, 341, 472, 286, 362, 257, 1508, 12464], "avg_logprob": -0.8083333492279052, "compression_ratio": 1.1584158415841583, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 678.1, "end": 678.32, "word": " And", "probability": 0.25146484375}, {"start": 678.32, "end": 678.56, "word": " we", "probability": 0.498046875}, {"start": 678.56, "end": 678.56, "word": " put", "probability": 0.406005859375}, {"start": 678.56, "end": 678.8, "word": " it", "probability": 0.53515625}, {"start": 678.8, "end": 678.86, "word": " in", "probability": 0.484619140625}, {"start": 678.86, "end": 679.0, "word": " the", "probability": 0.4072265625}, {"start": 679.0, "end": 679.28, "word": " builder", "probability": 0.62255859375}, {"start": 679.28, "end": 689.5, "word": " Ok,", "probability": 0.12249755859375}, {"start": 692.06, "end": 692.28, "word": " so", "probability": 0.270751953125}, {"start": 692.28, "end": 692.5, "word": " far", "probability": 0.8330078125}, {"start": 692.5, "end": 692.66, "word": " it", "probability": 0.302734375}, {"start": 692.66, "end": 692.66, "word": " is", "probability": 0.48828125}, {"start": 692.66, "end": 692.98, "word": " understood", "probability": 0.439697265625}, {"start": 692.98, "end": 694.48, "word": " What", "probability": 0.200439453125}, {"start": 694.48, "end": 694.94, "word": " we", "probability": 0.89990234375}, {"start": 694.94, "end": 694.94, "word": " did", "probability": 0.416015625}, {"start": 694.94, "end": 695.48, "word": " now,", "probability": 0.5078125}, {"start": 695.54, "end": 695.76, "word": " let's", "probability": 0.5643310546875}, {"start": 695.76, "end": 696.02, "word": " draw", "probability": 0.81640625}, {"start": 696.02, "end": 696.86, "word": " this", "probability": 0.60205078125}, {"start": 696.86, "end": 697.5, "word": " one", "probability": 0.2213134765625}, {"start": 697.5, "end": 697.8, "word": " I", "probability": 0.2418212890625}, {"start": 697.8, "end": 698.1, "word": " have", "probability": 0.80810546875}, {"start": 698.1, "end": 698.2, "word": " a", "probability": 0.42626953125}, {"start": 698.2, "end": 698.66, "word": " class", "probability": 0.97509765625}, {"start": 698.66, "end": 701.44, "word": " Student", "probability": 0.412353515625}], "temperature": 1.0}, {"id": 30, "seek": 73204, "start": 703.4, "end": 732.04, "text": "The class student has a group of attributes 1,2,3,4 these are attributes inside the class student I went and made a class called builder and builder also has the same name of attributes that are present in the student", "tokens": [2278, 1508, 3107, 575, 257, 1594, 295, 17212, 502, 11, 17, 11, 18, 11, 19, 613, 366, 17212, 1854, 264, 1508, 3107, 286, 1437, 293, 1027, 257, 1508, 1219, 27377, 293, 27377, 611, 575, 264, 912, 1315, 295, 17212, 300, 366, 1974, 294, 264, 3107], "avg_logprob": -0.4972826009211333, "compression_ratio": 1.631578947368421, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 703.4, "end": 703.9, "word": "The", "probability": 0.175048828125}, {"start": 703.9, "end": 704.22, "word": " class", "probability": 0.8857421875}, {"start": 704.22, "end": 704.6, "word": " student", "probability": 0.7685546875}, {"start": 704.6, "end": 704.88, "word": " has", "probability": 0.64990234375}, {"start": 704.88, "end": 704.98, "word": " a", "probability": 0.58984375}, {"start": 704.98, "end": 705.18, "word": " group", "probability": 0.497314453125}, {"start": 705.18, "end": 705.34, "word": " of", "probability": 0.966796875}, {"start": 705.34, "end": 705.82, "word": " attributes", "probability": 0.814453125}, {"start": 705.82, "end": 706.14, "word": " 1", "probability": 0.28759765625}, {"start": 706.14, "end": 706.66, "word": ",2", "probability": 0.68994140625}, {"start": 706.66, "end": 707.62, "word": ",3", "probability": 0.964599609375}, {"start": 707.62, "end": 708.14, "word": ",4", "probability": 0.958984375}, {"start": 708.14, "end": 708.88, "word": " these", "probability": 0.382568359375}, {"start": 708.88, "end": 709.28, "word": " are", "probability": 0.7529296875}, {"start": 709.28, "end": 712.56, "word": " attributes", "probability": 0.65771484375}, {"start": 712.56, "end": 714.3, "word": " inside", "probability": 0.2027587890625}, {"start": 714.3, "end": 714.58, "word": " the", "probability": 0.79345703125}, {"start": 714.58, "end": 714.86, "word": " class", "probability": 0.94140625}, {"start": 714.86, "end": 715.5, "word": " student", "probability": 0.96484375}, {"start": 715.5, "end": 716.86, "word": " I", "probability": 0.41943359375}, {"start": 716.86, "end": 717.0, "word": " went", "probability": 0.2310791015625}, {"start": 717.0, "end": 717.14, "word": " and", "probability": 0.76123046875}, {"start": 717.14, "end": 717.3, "word": " made", "probability": 0.44287109375}, {"start": 717.3, "end": 717.42, "word": " a", "probability": 0.95654296875}, {"start": 717.42, "end": 717.94, "word": " class", "probability": 0.96923828125}, {"start": 717.94, "end": 719.98, "word": " called", "probability": 0.460693359375}, {"start": 719.98, "end": 722.5, "word": " builder", "probability": 0.8095703125}, {"start": 722.5, "end": 723.7, "word": " and", "probability": 0.64306640625}, {"start": 723.7, "end": 723.98, "word": " builder", "probability": 0.478759765625}, {"start": 723.98, "end": 724.38, "word": " also", "probability": 0.5556640625}, {"start": 724.38, "end": 724.66, "word": " has", "probability": 0.830078125}, {"start": 724.66, "end": 725.14, "word": " the", "probability": 0.79736328125}, {"start": 725.14, "end": 725.14, "word": " same", "probability": 0.86181640625}, {"start": 725.14, "end": 725.48, "word": " name", "probability": 0.2301025390625}, {"start": 725.48, "end": 725.66, "word": " of", "probability": 0.59423828125}, {"start": 725.66, "end": 726.36, "word": " attributes", "probability": 0.677734375}, {"start": 726.36, "end": 727.74, "word": " that", "probability": 0.375732421875}, {"start": 727.74, "end": 727.86, "word": " are", "probability": 0.66650390625}, {"start": 727.86, "end": 728.2, "word": " present", "probability": 0.33837890625}, {"start": 728.2, "end": 731.04, "word": " in", "probability": 0.91748046875}, {"start": 731.04, "end": 731.64, "word": " the", "probability": 0.75927734375}, {"start": 731.64, "end": 732.04, "word": " student", "probability": 0.85205078125}], "temperature": 1.0}, {"id": 31, "seek": 75802, "start": 734.2, "end": 758.02, "text": "The builder does not have a constructor. The default is constructor. The next step is to go to the builder and create setter methods. For whom? These are private. These are not private inside the builder. We create setter methods in them. So you go to refactor.", "tokens": [2278, 27377, 775, 406, 362, 257, 47479, 13, 440, 7576, 307, 47479, 13, 440, 958, 1823, 307, 281, 352, 281, 264, 27377, 293, 1884, 992, 391, 7150, 13, 1171, 7101, 30, 1981, 366, 4551, 13, 1981, 366, 406, 4551, 1854, 264, 27377, 13, 492, 1884, 992, 391, 7150, 294, 552, 13, 407, 291, 352, 281, 1895, 15104, 13], "avg_logprob": -0.4615995661687043, "compression_ratio": 1.74, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 734.2, "end": 734.46, "word": "The", "probability": 0.2054443359375}, {"start": 734.46, "end": 734.68, "word": " builder", "probability": 0.880859375}, {"start": 734.68, "end": 734.92, "word": " does", "probability": 0.476318359375}, {"start": 734.92, "end": 734.92, "word": " not", "probability": 0.89892578125}, {"start": 734.92, "end": 735.06, "word": " have", "probability": 0.787109375}, {"start": 735.06, "end": 735.16, "word": " a", "probability": 0.5869140625}, {"start": 735.16, "end": 735.52, "word": " constructor.", "probability": 0.91845703125}, {"start": 736.1, "end": 736.64, "word": " The", "probability": 0.357666015625}, {"start": 736.64, "end": 738.12, "word": " default", "probability": 0.9267578125}, {"start": 738.12, "end": 738.5, "word": " is", "probability": 0.469970703125}, {"start": 738.5, "end": 739.28, "word": " constructor.", "probability": 0.595703125}, {"start": 741.14, "end": 741.46, "word": " The", "probability": 0.2027587890625}, {"start": 741.46, "end": 743.08, "word": " next", "probability": 0.83837890625}, {"start": 743.08, "end": 743.14, "word": " step", "probability": 0.8916015625}, {"start": 743.14, "end": 744.18, "word": " is", "probability": 0.87548828125}, {"start": 744.18, "end": 744.34, "word": " to", "probability": 0.720703125}, {"start": 744.34, "end": 744.52, "word": " go", "probability": 0.671875}, {"start": 744.52, "end": 744.66, "word": " to", "probability": 0.93994140625}, {"start": 744.66, "end": 744.78, "word": " the", "probability": 0.67578125}, {"start": 744.78, "end": 745.08, "word": " builder", "probability": 0.9482421875}, {"start": 745.08, "end": 748.18, "word": " and", "probability": 0.69921875}, {"start": 748.18, "end": 748.5, "word": " create", "probability": 0.69921875}, {"start": 748.5, "end": 749.16, "word": " setter", "probability": 0.6387939453125}, {"start": 749.16, "end": 749.58, "word": " methods.", "probability": 0.876953125}, {"start": 749.92, "end": 750.34, "word": " For", "probability": 0.344482421875}, {"start": 750.34, "end": 750.56, "word": " whom?", "probability": 0.93896484375}, {"start": 750.76, "end": 751.12, "word": " These", "probability": 0.427978515625}, {"start": 751.12, "end": 751.24, "word": " are", "probability": 0.79931640625}, {"start": 751.24, "end": 751.6, "word": " private.", "probability": 0.8505859375}, {"start": 752.6, "end": 753.14, "word": " These", "probability": 0.619140625}, {"start": 753.14, "end": 753.24, "word": " are", "probability": 0.82177734375}, {"start": 753.24, "end": 753.34, "word": " not", "probability": 0.90185546875}, {"start": 753.34, "end": 753.66, "word": " private", "probability": 0.89794921875}, {"start": 753.66, "end": 753.9, "word": " inside", "probability": 0.5634765625}, {"start": 753.9, "end": 754.06, "word": " the", "probability": 0.833984375}, {"start": 754.06, "end": 754.28, "word": " builder.", "probability": 0.92822265625}, {"start": 754.4, "end": 754.5, "word": " We", "probability": 0.6044921875}, {"start": 754.5, "end": 754.74, "word": " create", "probability": 0.408447265625}, {"start": 754.74, "end": 755.26, "word": " setter", "probability": 0.9267578125}, {"start": 755.26, "end": 755.62, "word": " methods", "probability": 0.88671875}, {"start": 755.62, "end": 755.62, "word": " in", "probability": 0.20751953125}, {"start": 755.62, "end": 755.62, "word": " them.", "probability": 0.81884765625}, {"start": 756.72, "end": 756.76, "word": " So", "probability": 0.31884765625}, {"start": 756.76, "end": 756.92, "word": " you", "probability": 0.443115234375}, {"start": 756.92, "end": 757.1, "word": " go", "probability": 0.81103515625}, {"start": 757.1, "end": 757.22, "word": " to", "probability": 0.8046875}, {"start": 757.22, "end": 758.02, "word": " refactor.", "probability": 0.5880126953125}], "temperature": 1.0}, {"id": 32, "seek": 77976, "start": 762.86, "end": 779.76, "text": "There's no need for the guitars, okay? So, we only need the sitters, we don't need the guitars, so I can remove them from here. Yes, it's select. Wait a second, I'll remove it like this.", "tokens": [9077, 311, 572, 643, 337, 264, 36809, 11, 1392, 30, 407, 11, 321, 787, 643, 264, 1394, 1559, 11, 321, 500, 380, 643, 264, 36809, 11, 370, 286, 393, 4159, 552, 490, 510, 13, 1079, 11, 309, 311, 3048, 13, 3802, 257, 1150, 11, 286, 603, 4159, 309, 411, 341, 13], "avg_logprob": -0.5252403788841687, "compression_ratio": 1.3984962406015038, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 762.86, "end": 763.34, "word": "There's", "probability": 0.200927734375}, {"start": 763.34, "end": 763.46, "word": " no", "probability": 0.9228515625}, {"start": 763.46, "end": 763.66, "word": " need", "probability": 0.62109375}, {"start": 763.66, "end": 763.82, "word": " for", "probability": 0.73095703125}, {"start": 763.82, "end": 763.94, "word": " the", "probability": 0.32470703125}, {"start": 763.94, "end": 764.3, "word": " guitars,", "probability": 0.67431640625}, {"start": 764.9, "end": 765.2, "word": " okay?", "probability": 0.30810546875}, {"start": 765.52, "end": 765.84, "word": " So,", "probability": 0.420166015625}, {"start": 766.56, "end": 767.92, "word": " we", "probability": 0.89501953125}, {"start": 767.92, "end": 768.04, "word": " only", "probability": 0.408447265625}, {"start": 768.04, "end": 768.1, "word": " need", "probability": 0.69287109375}, {"start": 768.1, "end": 768.26, "word": " the", "probability": 0.8828125}, {"start": 768.26, "end": 768.58, "word": " sitters,", "probability": 0.794677734375}, {"start": 768.94, "end": 769.66, "word": " we", "probability": 0.307373046875}, {"start": 769.66, "end": 770.66, "word": " don't", "probability": 0.886474609375}, {"start": 770.66, "end": 770.82, "word": " need", "probability": 0.8525390625}, {"start": 770.82, "end": 770.82, "word": " the", "probability": 0.72314453125}, {"start": 770.82, "end": 770.82, "word": " guitars,", "probability": 0.9423828125}, {"start": 771.06, "end": 771.2, "word": " so", "probability": 0.8115234375}, {"start": 771.2, "end": 771.46, "word": " I", "probability": 0.78271484375}, {"start": 771.46, "end": 771.46, "word": " can", "probability": 0.60107421875}, {"start": 771.46, "end": 771.78, "word": " remove", "probability": 0.390869140625}, {"start": 771.78, "end": 771.98, "word": " them", "probability": 0.89501953125}, {"start": 771.98, "end": 772.1, "word": " from", "probability": 0.81884765625}, {"start": 772.1, "end": 772.38, "word": " here.", "probability": 0.8466796875}, {"start": 774.92, "end": 775.4, "word": " Yes,", "probability": 0.460693359375}, {"start": 775.44, "end": 775.58, "word": " it's", "probability": 0.787841796875}, {"start": 775.58, "end": 776.0, "word": " select.", "probability": 0.5927734375}, {"start": 778.14, "end": 778.62, "word": " Wait", "probability": 0.390869140625}, {"start": 778.62, "end": 778.78, "word": " a", "probability": 0.77978515625}, {"start": 778.78, "end": 778.78, "word": " second,", "probability": 0.433837890625}, {"start": 778.94, "end": 779.18, "word": " I'll", "probability": 0.5506591796875}, {"start": 779.18, "end": 779.38, "word": " remove", "probability": 0.7001953125}, {"start": 779.38, "end": 779.62, "word": " it", "probability": 0.6728515625}, {"start": 779.62, "end": 779.7, "word": " like", "probability": 0.673828125}, {"start": 779.7, "end": 779.76, "word": " this.", "probability": 0.7841796875}], "temperature": 1.0}, {"id": 33, "seek": 81283, "start": 786.33, "end": 812.83, "text": " select the setters and refactor them put the setters inside the builder notice that even now the builder has nothing to do with the student because the last step when we finish we go inside the builder here I am inside the builder now we make a data", "tokens": [3048, 264, 992, 1559, 293, 1895, 15104, 552, 829, 264, 992, 1559, 1854, 264, 27377, 3449, 300, 754, 586, 264, 27377, 575, 1825, 281, 360, 365, 264, 3107, 570, 264, 1036, 1823, 562, 321, 2413, 321, 352, 1854, 264, 27377, 510, 286, 669, 1854, 264, 27377, 586, 321, 652, 257, 1412], "avg_logprob": -0.6670673008148487, "compression_ratio": 1.8518518518518519, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 786.3300000000002, "end": 787.0100000000001, "word": " select", "probability": 0.1558837890625}, {"start": 787.0100000000001, "end": 787.69, "word": " the", "probability": 0.25927734375}, {"start": 787.69, "end": 788.09, "word": " setters", "probability": 0.5079345703125}, {"start": 788.09, "end": 788.23, "word": " and", "probability": 0.2191162109375}, {"start": 788.23, "end": 789.65, "word": " refactor", "probability": 0.55615234375}, {"start": 789.65, "end": 790.29, "word": " them", "probability": 0.4736328125}, {"start": 790.29, "end": 791.25, "word": " put", "probability": 0.057708740234375}, {"start": 791.25, "end": 791.79, "word": " the", "probability": 0.65283203125}, {"start": 791.79, "end": 792.29, "word": " setters", "probability": 0.8642578125}, {"start": 792.29, "end": 793.67, "word": " inside", "probability": 0.423583984375}, {"start": 793.67, "end": 794.09, "word": " the", "probability": 0.62353515625}, {"start": 794.09, "end": 794.09, "word": " builder", "probability": 0.93701171875}, {"start": 794.09, "end": 796.91, "word": " notice", "probability": 0.36572265625}, {"start": 796.91, "end": 797.19, "word": " that", "probability": 0.75}, {"start": 797.19, "end": 797.39, "word": " even", "probability": 0.173095703125}, {"start": 797.39, "end": 797.63, "word": " now", "probability": 0.77587890625}, {"start": 797.63, "end": 797.71, "word": " the", "probability": 0.7255859375}, {"start": 797.71, "end": 797.95, "word": " builder", "probability": 0.9072265625}, {"start": 797.95, "end": 798.25, "word": " has", "probability": 0.55029296875}, {"start": 798.25, "end": 798.25, "word": " nothing", "probability": 0.474365234375}, {"start": 798.25, "end": 798.71, "word": " to", "probability": 0.95458984375}, {"start": 798.71, "end": 798.71, "word": " do", "probability": 0.9580078125}, {"start": 798.71, "end": 798.81, "word": " with", "probability": 0.89453125}, {"start": 798.81, "end": 799.33, "word": " the", "probability": 0.402099609375}, {"start": 799.33, "end": 801.13, "word": " student", "probability": 0.8603515625}, {"start": 801.13, "end": 802.87, "word": " because", "probability": 0.1776123046875}, {"start": 802.87, "end": 803.05, "word": " the", "probability": 0.63671875}, {"start": 803.05, "end": 803.25, "word": " last", "probability": 0.84814453125}, {"start": 803.25, "end": 803.65, "word": " step", "probability": 0.88671875}, {"start": 803.65, "end": 804.25, "word": " when", "probability": 0.08502197265625}, {"start": 804.25, "end": 804.31, "word": " we", "probability": 0.77001953125}, {"start": 804.31, "end": 804.65, "word": " finish", "probability": 0.486083984375}, {"start": 804.65, "end": 805.73, "word": " we", "probability": 0.466064453125}, {"start": 805.73, "end": 806.01, "word": " go", "probability": 0.447509765625}, {"start": 806.01, "end": 806.27, "word": " inside", "probability": 0.7119140625}, {"start": 806.27, "end": 806.39, "word": " the", "probability": 0.80615234375}, {"start": 806.39, "end": 806.77, "word": " builder", "probability": 0.94287109375}, {"start": 806.77, "end": 810.47, "word": " here", "probability": 0.1959228515625}, {"start": 810.47, "end": 810.65, "word": " I", "probability": 0.6611328125}, {"start": 810.65, "end": 810.69, "word": " am", "probability": 0.8017578125}, {"start": 810.69, "end": 810.81, "word": " inside", "probability": 0.85595703125}, {"start": 810.81, "end": 810.99, "word": " the", "probability": 0.87451171875}, {"start": 810.99, "end": 811.19, "word": " builder", "probability": 0.935546875}, {"start": 811.19, "end": 811.63, "word": " now", "probability": 0.65087890625}, {"start": 811.63, "end": 812.25, "word": " we", "probability": 0.65087890625}, {"start": 812.25, "end": 812.51, "word": " make", "probability": 0.364990234375}, {"start": 812.51, "end": 812.69, "word": " a", "probability": 0.7001953125}, {"start": 812.69, "end": 812.83, "word": " data", "probability": 0.126708984375}], "temperature": 1.0}, {"id": 34, "seek": 84261, "start": 814.81, "end": 842.61, "text": " it's name is create or build what does create take? nothing what does it return? it returns an object from student question, can I use the constructor of student from inside the builder? of course, why? because I'm inside the class, it's not inner class so I can use the constructor of student, can I say new again?", "tokens": [309, 311, 1315, 307, 1884, 420, 1322, 437, 775, 1884, 747, 30, 1825, 437, 775, 309, 2736, 30, 309, 11247, 364, 2657, 490, 3107, 1168, 11, 393, 286, 764, 264, 47479, 295, 3107, 490, 1854, 264, 27377, 30, 295, 1164, 11, 983, 30, 570, 286, 478, 1854, 264, 1508, 11, 309, 311, 406, 7284, 1508, 370, 286, 393, 764, 264, 47479, 295, 3107, 11, 393, 286, 584, 777, 797, 30], "avg_logprob": -0.5110035228057647, "compression_ratio": 1.8265895953757225, "no_speech_prob": 3.4570693969726562e-06, "words": [{"start": 814.81, "end": 815.05, "word": " it's", "probability": 0.424224853515625}, {"start": 815.05, "end": 815.23, "word": " name", "probability": 0.53173828125}, {"start": 815.23, "end": 815.49, "word": " is", "probability": 0.921875}, {"start": 815.49, "end": 815.85, "word": " create", "probability": 0.68994140625}, {"start": 815.85, "end": 816.33, "word": " or", "probability": 0.86376953125}, {"start": 816.33, "end": 816.65, "word": " build", "probability": 0.9052734375}, {"start": 816.65, "end": 820.29, "word": " what", "probability": 0.283203125}, {"start": 820.29, "end": 820.49, "word": " does", "probability": 0.367431640625}, {"start": 820.49, "end": 821.23, "word": " create", "probability": 0.7109375}, {"start": 821.23, "end": 821.29, "word": " take?", "probability": 0.300537109375}, {"start": 821.65, "end": 822.01, "word": " nothing", "probability": 0.65771484375}, {"start": 822.01, "end": 822.69, "word": " what", "probability": 0.640625}, {"start": 822.69, "end": 822.83, "word": " does", "probability": 0.61279296875}, {"start": 822.83, "end": 822.97, "word": " it", "probability": 0.38427734375}, {"start": 822.97, "end": 823.21, "word": " return?", "probability": 0.326171875}, {"start": 823.79, "end": 823.95, "word": " it", "probability": 0.354248046875}, {"start": 823.95, "end": 824.37, "word": " returns", "probability": 0.8408203125}, {"start": 824.37, "end": 824.59, "word": " an", "probability": 0.261474609375}, {"start": 824.59, "end": 824.77, "word": " object", "probability": 0.97607421875}, {"start": 824.77, "end": 825.13, "word": " from", "probability": 0.79541015625}, {"start": 825.13, "end": 826.81, "word": " student", "probability": 0.76904296875}, {"start": 826.81, "end": 830.17, "word": " question,", "probability": 0.1304931640625}, {"start": 830.51, "end": 830.87, "word": " can", "probability": 0.443359375}, {"start": 830.87, "end": 832.01, "word": " I", "probability": 0.53466796875}, {"start": 832.01, "end": 832.43, "word": " use", "probability": 0.74365234375}, {"start": 832.43, "end": 832.55, "word": " the", "probability": 0.426025390625}, {"start": 832.55, "end": 832.99, "word": " constructor", "probability": 0.433837890625}, {"start": 832.99, "end": 833.19, "word": " of", "probability": 0.5185546875}, {"start": 833.19, "end": 833.55, "word": " student", "probability": 0.595703125}, {"start": 833.55, "end": 833.55, "word": " from", "probability": 0.6787109375}, {"start": 833.55, "end": 833.55, "word": " inside", "probability": 0.67529296875}, {"start": 833.55, "end": 833.55, "word": " the", "probability": 0.45458984375}, {"start": 833.55, "end": 833.55, "word": " builder?", "probability": 0.93994140625}, {"start": 834.71, "end": 835.35, "word": " of", "probability": 0.3505859375}, {"start": 835.35, "end": 835.35, "word": " course,", "probability": 0.939453125}, {"start": 835.53, "end": 835.85, "word": " why?", "probability": 0.88623046875}, {"start": 836.59, "end": 836.83, "word": " because", "probability": 0.865234375}, {"start": 836.83, "end": 836.97, "word": " I'm", "probability": 0.719970703125}, {"start": 836.97, "end": 837.09, "word": " inside", "probability": 0.91015625}, {"start": 837.09, "end": 837.23, "word": " the", "probability": 0.84228515625}, {"start": 837.23, "end": 837.45, "word": " class,", "probability": 0.9658203125}, {"start": 837.51, "end": 837.63, "word": " it's", "probability": 0.57861328125}, {"start": 837.63, "end": 837.63, "word": " not", "probability": 0.94140625}, {"start": 837.63, "end": 837.99, "word": " inner", "probability": 0.5634765625}, {"start": 837.99, "end": 838.47, "word": " class", "probability": 0.92431640625}, {"start": 838.47, "end": 838.67, "word": " so", "probability": 0.2369384765625}, {"start": 838.67, "end": 838.83, "word": " I", "probability": 0.84423828125}, {"start": 838.83, "end": 839.01, "word": " can", "probability": 0.9326171875}, {"start": 839.01, "end": 839.47, "word": " use", "probability": 0.85888671875}, {"start": 839.47, "end": 840.43, "word": " the", "probability": 0.8525390625}, {"start": 840.43, "end": 840.83, "word": " constructor", "probability": 0.91259765625}, {"start": 840.83, "end": 841.03, "word": " of", "probability": 0.8623046875}, {"start": 841.03, "end": 841.37, "word": " student,", "probability": 0.71484375}, {"start": 841.45, "end": 841.67, "word": " can", "probability": 0.51171875}, {"start": 841.67, "end": 841.85, "word": " I", "probability": 0.93701171875}, {"start": 841.85, "end": 842.19, "word": " say", "probability": 0.48681640625}, {"start": 842.19, "end": 842.61, "word": " new", "probability": 0.66748046875}, {"start": 842.61, "end": 842.61, "word": " again?", "probability": 0.415771484375}], "temperature": 1.0}, {"id": 35, "seek": 87274, "start": 845.4, "end": 872.74, "text": " student and I can immediately say here return new student of course what do they want? they want the parameters what parameters do they want to put? all of them the student wants all of them so they want to put all of them first name last name department faculty email mobile number", "tokens": [3107, 293, 286, 393, 4258, 584, 510, 2736, 777, 3107, 295, 1164, 437, 360, 436, 528, 30, 436, 528, 264, 9834, 437, 9834, 360, 436, 528, 281, 829, 30, 439, 295, 552, 264, 3107, 2738, 439, 295, 552, 370, 436, 528, 281, 829, 439, 295, 552, 700, 1315, 1036, 1315, 5882, 6389, 3796, 6013, 1230], "avg_logprob": -0.5206473224929401, "compression_ratio": 1.912162162162162, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 845.4, "end": 845.88, "word": " student", "probability": 0.458740234375}, {"start": 845.88, "end": 846.56, "word": " and", "probability": 0.2255859375}, {"start": 846.56, "end": 846.84, "word": " I", "probability": 0.50439453125}, {"start": 846.84, "end": 846.84, "word": " can", "probability": 0.8193359375}, {"start": 846.84, "end": 847.16, "word": " immediately", "probability": 0.0977783203125}, {"start": 847.16, "end": 847.4, "word": " say", "probability": 0.495361328125}, {"start": 847.4, "end": 847.66, "word": " here", "probability": 0.45068359375}, {"start": 847.66, "end": 848.16, "word": " return", "probability": 0.646484375}, {"start": 848.16, "end": 849.96, "word": " new", "probability": 0.748046875}, {"start": 849.96, "end": 850.66, "word": " student", "probability": 0.9326171875}, {"start": 850.66, "end": 850.92, "word": " of", "probability": 0.1817626953125}, {"start": 850.92, "end": 850.96, "word": " course", "probability": 0.9150390625}, {"start": 850.96, "end": 851.1, "word": " what", "probability": 0.30859375}, {"start": 851.1, "end": 851.1, "word": " do", "probability": 0.438720703125}, {"start": 851.1, "end": 851.1, "word": " they", "probability": 0.74658203125}, {"start": 851.1, "end": 851.46, "word": " want?", "probability": 0.55712890625}, {"start": 851.84, "end": 852.56, "word": " they", "probability": 0.60986328125}, {"start": 852.56, "end": 852.66, "word": " want", "probability": 0.8134765625}, {"start": 852.66, "end": 852.78, "word": " the", "probability": 0.58251953125}, {"start": 852.78, "end": 853.24, "word": " parameters", "probability": 0.9248046875}, {"start": 853.24, "end": 853.5, "word": " what", "probability": 0.4072265625}, {"start": 853.5, "end": 854.04, "word": " parameters", "probability": 0.7578125}, {"start": 854.04, "end": 854.22, "word": " do", "probability": 0.58837890625}, {"start": 854.22, "end": 854.24, "word": " they", "probability": 0.767578125}, {"start": 854.24, "end": 854.34, "word": " want", "probability": 0.73193359375}, {"start": 854.34, "end": 854.34, "word": " to", "probability": 0.61865234375}, {"start": 854.34, "end": 854.44, "word": " put?", "probability": 0.62158203125}, {"start": 855.1, "end": 855.86, "word": " all", "probability": 0.328857421875}, {"start": 855.86, "end": 856.72, "word": " of", "probability": 0.71533203125}, {"start": 856.72, "end": 856.72, "word": " them", "probability": 0.89111328125}, {"start": 856.72, "end": 857.14, "word": " the", "probability": 0.090087890625}, {"start": 857.14, "end": 857.82, "word": " student", "probability": 0.630859375}, {"start": 857.82, "end": 858.06, "word": " wants", "probability": 0.6484375}, {"start": 858.06, "end": 858.56, "word": " all", "probability": 0.65283203125}, {"start": 858.56, "end": 858.56, "word": " of", "probability": 0.90283203125}, {"start": 858.56, "end": 858.74, "word": " them", "probability": 0.6611328125}, {"start": 858.74, "end": 859.32, "word": " so", "probability": 0.52685546875}, {"start": 859.32, "end": 859.42, "word": " they", "probability": 0.5009765625}, {"start": 859.42, "end": 859.52, "word": " want", "probability": 0.53125}, {"start": 859.52, "end": 859.56, "word": " to", "probability": 0.8701171875}, {"start": 859.56, "end": 859.68, "word": " put", "probability": 0.880859375}, {"start": 859.68, "end": 859.98, "word": " all", "probability": 0.48779296875}, {"start": 859.98, "end": 860.06, "word": " of", "probability": 0.9462890625}, {"start": 860.06, "end": 860.12, "word": " them", "probability": 0.89990234375}, {"start": 860.12, "end": 860.7, "word": " first", "probability": 0.298095703125}, {"start": 860.7, "end": 862.06, "word": " name", "probability": 0.79345703125}, {"start": 862.06, "end": 862.88, "word": " last", "probability": 0.62353515625}, {"start": 862.88, "end": 863.5, "word": " name", "probability": 0.9072265625}, {"start": 863.5, "end": 865.08, "word": " department", "probability": 0.91552734375}, {"start": 865.08, "end": 867.84, "word": " faculty", "probability": 0.833984375}, {"start": 867.84, "end": 869.52, "word": " email", "probability": 0.94873046875}, {"start": 869.52, "end": 871.04, "word": " mobile", "probability": 0.953125}, {"start": 871.04, "end": 872.74, "word": " number", "probability": 0.9541015625}], "temperature": 1.0}, {"id": 36, "seek": 89807, "start": 882.17, "end": 898.07, "text": " GPA GPA Age Okay, I will create a student and a man. Of course, you may not understand what happened yet. Okay, we will go to", "tokens": [41321, 41321, 16280, 1033, 11, 286, 486, 1884, 257, 3107, 293, 257, 587, 13, 2720, 1164, 11, 291, 815, 406, 1223, 437, 2011, 1939, 13, 1033, 11, 321, 486, 352, 281], "avg_logprob": -0.7084960676729679, "compression_ratio": 1.1775700934579438, "no_speech_prob": 4.291534423828125e-06, "words": [{"start": 882.1700000000001, "end": 882.8100000000001, "word": " GPA", "probability": 0.60009765625}, {"start": 882.8100000000001, "end": 883.45, "word": " GPA", "probability": 0.853515625}, {"start": 883.45, "end": 884.03, "word": " Age", "probability": 0.54833984375}, {"start": 884.03, "end": 886.97, "word": " Okay,", "probability": 0.1063232421875}, {"start": 887.17, "end": 887.39, "word": " I", "probability": 0.08087158203125}, {"start": 887.39, "end": 887.53, "word": " will", "probability": 0.378173828125}, {"start": 887.53, "end": 887.65, "word": " create", "probability": 0.63818359375}, {"start": 887.65, "end": 887.79, "word": " a", "probability": 0.418701171875}, {"start": 887.79, "end": 888.29, "word": " student", "probability": 0.86376953125}, {"start": 888.29, "end": 889.65, "word": " and", "probability": 0.654296875}, {"start": 889.65, "end": 889.79, "word": " a", "probability": 0.50439453125}, {"start": 889.79, "end": 889.83, "word": " man.", "probability": 0.79150390625}, {"start": 890.91, "end": 891.23, "word": " Of", "probability": 0.394775390625}, {"start": 891.23, "end": 891.23, "word": " course,", "probability": 0.93603515625}, {"start": 891.37, "end": 891.59, "word": " you", "probability": 0.6552734375}, {"start": 891.59, "end": 891.59, "word": " may", "probability": 0.360107421875}, {"start": 891.59, "end": 892.39, "word": " not", "probability": 0.60791015625}, {"start": 892.39, "end": 892.73, "word": " understand", "probability": 0.57373046875}, {"start": 892.73, "end": 892.93, "word": " what", "probability": 0.81591796875}, {"start": 892.93, "end": 893.41, "word": " happened", "probability": 0.521484375}, {"start": 893.41, "end": 895.25, "word": " yet.", "probability": 0.490234375}, {"start": 896.63, "end": 897.27, "word": " Okay,", "probability": 0.4755859375}, {"start": 897.39, "end": 897.57, "word": " we", "probability": 0.58203125}, {"start": 897.57, "end": 897.57, "word": " will", "probability": 0.81005859375}, {"start": 897.57, "end": 897.73, "word": " go", "probability": 0.19482421875}, {"start": 897.73, "end": 898.07, "word": " to", "probability": 0.814453125}], "temperature": 1.0}, {"id": 37, "seek": 90911, "start": 900.75, "end": 909.11, "text": "On the main method, we see the usage to see what is going to happen or what is the use of the builder that we made Did you notice that the code is no longer prohibited?", "tokens": [11747, 264, 2135, 3170, 11, 321, 536, 264, 14924, 281, 536, 437, 307, 516, 281, 1051, 420, 437, 307, 264, 764, 295, 264, 27377, 300, 321, 1027, 2589, 291, 3449, 300, 264, 3089, 307, 572, 2854, 32069, 30], "avg_logprob": -0.6225961599594507, "compression_ratio": 1.411764705882353, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 900.75, "end": 901.05, "word": "On", "probability": 0.087890625}, {"start": 901.05, "end": 901.11, "word": " the", "probability": 0.2298583984375}, {"start": 901.11, "end": 901.19, "word": " main", "probability": 0.75390625}, {"start": 901.19, "end": 901.53, "word": " method,", "probability": 0.955078125}, {"start": 901.71, "end": 901.81, "word": " we", "probability": 0.468994140625}, {"start": 901.81, "end": 901.93, "word": " see", "probability": 0.361083984375}, {"start": 901.93, "end": 902.03, "word": " the", "probability": 0.66357421875}, {"start": 902.03, "end": 902.49, "word": " usage", "probability": 0.72412109375}, {"start": 902.49, "end": 902.93, "word": " to", "probability": 0.373779296875}, {"start": 902.93, "end": 903.33, "word": " see", "probability": 0.72412109375}, {"start": 903.33, "end": 903.67, "word": " what", "probability": 0.8798828125}, {"start": 903.67, "end": 903.85, "word": " is", "probability": 0.24951171875}, {"start": 903.85, "end": 904.03, "word": " going", "probability": 0.73681640625}, {"start": 904.03, "end": 904.13, "word": " to", "probability": 0.890625}, {"start": 904.13, "end": 904.33, "word": " happen", "probability": 0.8505859375}, {"start": 904.33, "end": 904.51, "word": " or", "probability": 0.53173828125}, {"start": 904.51, "end": 904.69, "word": " what", "probability": 0.76708984375}, {"start": 904.69, "end": 904.75, "word": " is", "probability": 0.7412109375}, {"start": 904.75, "end": 904.79, "word": " the", "probability": 0.80712890625}, {"start": 904.79, "end": 904.95, "word": " use", "probability": 0.213623046875}, {"start": 904.95, "end": 905.07, "word": " of", "probability": 0.95263671875}, {"start": 905.07, "end": 905.19, "word": " the", "probability": 0.68115234375}, {"start": 905.19, "end": 905.41, "word": " builder", "probability": 0.94140625}, {"start": 905.41, "end": 905.55, "word": " that", "probability": 0.51416015625}, {"start": 905.55, "end": 905.71, "word": " we", "probability": 0.9248046875}, {"start": 905.71, "end": 906.03, "word": " made", "probability": 0.326904296875}, {"start": 906.03, "end": 907.07, "word": " Did", "probability": 0.2193603515625}, {"start": 907.07, "end": 907.45, "word": " you", "probability": 0.9423828125}, {"start": 907.45, "end": 907.47, "word": " notice", "probability": 0.434814453125}, {"start": 907.47, "end": 907.91, "word": " that", "probability": 0.5595703125}, {"start": 907.91, "end": 908.11, "word": " the", "probability": 0.424072265625}, {"start": 908.11, "end": 908.67, "word": " code", "probability": 0.93798828125}, {"start": 908.67, "end": 908.77, "word": " is", "probability": 0.552734375}, {"start": 908.77, "end": 908.95, "word": " no", "probability": 0.162353515625}, {"start": 908.95, "end": 908.99, "word": " longer", "probability": 0.8759765625}, {"start": 908.99, "end": 909.11, "word": " prohibited?", "probability": 0.311767578125}], "temperature": 1.0}, {"id": 38, "seek": 93958, "start": 911.08, "end": 939.58, "text": " Because the constructor is private, he will never be able to create a student. So how will we be able to create a student? They say, wait, did you come to create a student? You can't create him directly, the constructor is gone. There is a secretary who is responsible for getting to whom? To the student. Who is the secretary of this builder? You must first connect to whom? To the builder. So we go and tell him student dot builder. To create a student, you must first create a builder equal to new student", "tokens": [1436, 264, 47479, 307, 4551, 11, 415, 486, 1128, 312, 1075, 281, 1884, 257, 3107, 13, 407, 577, 486, 321, 312, 1075, 281, 1884, 257, 3107, 30, 814, 584, 11, 1699, 11, 630, 291, 808, 281, 1884, 257, 3107, 30, 509, 393, 380, 1884, 796, 3838, 11, 264, 47479, 307, 2780, 13, 821, 307, 257, 15691, 567, 307, 6250, 337, 1242, 281, 7101, 30, 1407, 264, 3107, 13, 2102, 307, 264, 15691, 295, 341, 27377, 30, 509, 1633, 700, 1745, 281, 7101, 30, 1407, 264, 27377, 13, 407, 321, 352, 293, 980, 796, 3107, 5893, 27377, 13, 1407, 1884, 257, 3107, 11, 291, 1633, 700, 1884, 257, 27377, 2681, 281, 777, 3107], "avg_logprob": -0.45492256637168144, "compression_ratio": 2.0607287449392713, "no_speech_prob": 2.9206275939941406e-06, "words": [{"start": 911.08, "end": 911.34, "word": " Because", "probability": 0.224609375}, {"start": 911.34, "end": 911.5, "word": " the", "probability": 0.224365234375}, {"start": 911.5, "end": 911.74, "word": " constructor", "probability": 0.830078125}, {"start": 911.74, "end": 911.88, "word": " is", "probability": 0.91162109375}, {"start": 911.88, "end": 912.16, "word": " private,", "probability": 0.86083984375}, {"start": 912.28, "end": 912.34, "word": " he", "probability": 0.240966796875}, {"start": 912.34, "end": 912.56, "word": " will", "probability": 0.4765625}, {"start": 912.56, "end": 912.56, "word": " never", "probability": 0.87939453125}, {"start": 912.56, "end": 912.78, "word": " be", "probability": 0.765625}, {"start": 912.78, "end": 912.86, "word": " able", "probability": 0.9580078125}, {"start": 912.86, "end": 912.96, "word": " to", "probability": 0.96728515625}, {"start": 912.96, "end": 913.16, "word": " create", "probability": 0.56689453125}, {"start": 913.16, "end": 913.86, "word": " a", "probability": 0.337646484375}, {"start": 913.86, "end": 914.08, "word": " student.", "probability": 0.9248046875}, {"start": 914.18, "end": 914.34, "word": " So", "probability": 0.3427734375}, {"start": 914.34, "end": 914.64, "word": " how", "probability": 0.66748046875}, {"start": 914.64, "end": 914.8, "word": " will", "probability": 0.307861328125}, {"start": 914.8, "end": 915.26, "word": " we", "probability": 0.53564453125}, {"start": 915.26, "end": 915.28, "word": " be", "probability": 0.5380859375}, {"start": 915.28, "end": 915.38, "word": " able", "probability": 0.95751953125}, {"start": 915.38, "end": 915.48, "word": " to", "probability": 0.96875}, {"start": 915.48, "end": 915.64, "word": " create", "probability": 0.8232421875}, {"start": 915.64, "end": 915.74, "word": " a", "probability": 0.8525390625}, {"start": 915.74, "end": 915.9, "word": " student?", "probability": 0.96826171875}, {"start": 916.0, "end": 916.2, "word": " They", "probability": 0.1424560546875}, {"start": 916.2, "end": 916.2, "word": " say,", "probability": 0.51416015625}, {"start": 916.3, "end": 916.54, "word": " wait,", "probability": 0.50341796875}, {"start": 917.22, "end": 917.42, "word": " did", "probability": 0.272216796875}, {"start": 917.42, "end": 917.6, "word": " you", "probability": 0.96142578125}, {"start": 917.6, "end": 917.6, "word": " come", "probability": 0.57177734375}, {"start": 917.6, "end": 917.92, "word": " to", "probability": 0.69873046875}, {"start": 917.92, "end": 918.3, "word": " create", "probability": 0.8076171875}, {"start": 918.3, "end": 918.48, "word": " a", "probability": 0.84521484375}, {"start": 918.48, "end": 918.78, "word": " student?", "probability": 0.9658203125}, {"start": 919.52, "end": 919.94, "word": " You", "probability": 0.83251953125}, {"start": 919.94, "end": 920.34, "word": " can't", "probability": 0.6536865234375}, {"start": 920.34, "end": 920.58, "word": " create", "probability": 0.56298828125}, {"start": 920.58, "end": 920.74, "word": " him", "probability": 0.479736328125}, {"start": 920.74, "end": 921.2, "word": " directly,", "probability": 0.806640625}, {"start": 921.36, "end": 921.82, "word": " the", "probability": 0.59716796875}, {"start": 921.82, "end": 922.34, "word": " constructor", "probability": 0.93310546875}, {"start": 922.34, "end": 922.34, "word": " is", "probability": 0.277099609375}, {"start": 922.34, "end": 922.34, "word": " gone.", "probability": 0.48681640625}, {"start": 922.68, "end": 923.04, "word": " There", "probability": 0.70166015625}, {"start": 923.04, "end": 923.04, "word": " is", "probability": 0.7333984375}, {"start": 923.04, "end": 923.2, "word": " a", "probability": 0.94775390625}, {"start": 923.2, "end": 923.6, "word": " secretary", "probability": 0.82763671875}, {"start": 923.6, "end": 923.78, "word": " who", "probability": 0.410888671875}, {"start": 923.78, "end": 923.86, "word": " is", "probability": 0.83203125}, {"start": 923.86, "end": 924.3, "word": " responsible", "probability": 0.87646484375}, {"start": 924.3, "end": 924.6, "word": " for", "probability": 0.91455078125}, {"start": 924.6, "end": 924.92, "word": " getting", "probability": 0.167236328125}, {"start": 924.92, "end": 925.14, "word": " to", "probability": 0.5322265625}, {"start": 925.14, "end": 925.3, "word": " whom?", "probability": 0.77880859375}, {"start": 925.48, "end": 925.9, "word": " To", "probability": 0.64990234375}, {"start": 925.9, "end": 926.0, "word": " the", "probability": 0.87646484375}, {"start": 926.0, "end": 926.26, "word": " student.", "probability": 0.93408203125}, {"start": 926.38, "end": 926.54, "word": " Who", "probability": 0.859375}, {"start": 926.54, "end": 926.68, "word": " is", "probability": 0.931640625}, {"start": 926.68, "end": 926.8, "word": " the", "probability": 0.485107421875}, {"start": 926.8, "end": 927.12, "word": " secretary", "probability": 0.90673828125}, {"start": 927.12, "end": 927.3, "word": " of", "probability": 0.34033203125}, {"start": 927.3, "end": 927.64, "word": " this", "probability": 0.8876953125}, {"start": 927.64, "end": 928.12, "word": " builder?", "probability": 0.93359375}, {"start": 928.22, "end": 928.36, "word": " You", "probability": 0.4619140625}, {"start": 928.36, "end": 928.54, "word": " must", "probability": 0.58349609375}, {"start": 928.54, "end": 929.02, "word": " first", "probability": 0.751953125}, {"start": 929.02, "end": 929.32, "word": " connect", "probability": 0.1968994140625}, {"start": 929.32, "end": 929.5, "word": " to", "probability": 0.83642578125}, {"start": 929.5, "end": 929.64, "word": " whom?", "probability": 0.7021484375}, {"start": 929.94, "end": 930.28, "word": " To", "probability": 0.70703125}, {"start": 930.28, "end": 930.4, "word": " the", "probability": 0.908203125}, {"start": 930.4, "end": 930.6, "word": " builder.", "probability": 0.9375}, {"start": 930.7, "end": 930.82, "word": " So", "probability": 0.8046875}, {"start": 930.82, "end": 930.96, "word": " we", "probability": 0.732421875}, {"start": 930.96, "end": 931.12, "word": " go", "probability": 0.50390625}, {"start": 931.12, "end": 931.3, "word": " and", "probability": 0.8583984375}, {"start": 931.3, "end": 931.46, "word": " tell", "probability": 0.58544921875}, {"start": 931.46, "end": 932.08, "word": " him", "probability": 0.92041015625}, {"start": 932.08, "end": 932.58, "word": " student", "probability": 0.58935546875}, {"start": 932.58, "end": 933.36, "word": " dot", "probability": 0.53271484375}, {"start": 933.36, "end": 933.6, "word": " builder.", "probability": 0.7275390625}, {"start": 933.7, "end": 933.92, "word": " To", "probability": 0.61572265625}, {"start": 933.92, "end": 934.14, "word": " create", "probability": 0.86181640625}, {"start": 934.14, "end": 934.3, "word": " a", "probability": 0.92041015625}, {"start": 934.3, "end": 934.54, "word": " student,", "probability": 0.96630859375}, {"start": 934.76, "end": 934.76, "word": " you", "probability": 0.43505859375}, {"start": 934.76, "end": 934.92, "word": " must", "probability": 0.7939453125}, {"start": 934.92, "end": 935.28, "word": " first", "probability": 0.8583984375}, {"start": 935.28, "end": 935.74, "word": " create", "probability": 0.8681640625}, {"start": 935.74, "end": 936.3, "word": " a", "probability": 0.7373046875}, {"start": 936.3, "end": 937.14, "word": " builder", "probability": 0.849609375}, {"start": 937.14, "end": 937.6, "word": " equal", "probability": 0.318359375}, {"start": 937.6, "end": 937.78, "word": " to", "probability": 0.81591796875}, {"start": 937.78, "end": 938.1, "word": " new", "probability": 0.9189453125}, {"start": 938.1, "end": 939.58, "word": " student", "probability": 0.9287109375}], "temperature": 1.0}, {"id": 39, "seek": 97194, "start": 944.9, "end": 971.94, "text": " student.builder student.builder student.builder student.builder student.builder", "tokens": [3107, 13, 11516, 260, 3107, 13, 11516, 260, 3107, 13, 11516, 260, 3107, 13, 11516, 260, 3107, 13, 11516, 260], "avg_logprob": -0.46688988095238093, "compression_ratio": 2.962962962962963, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 944.9, "end": 945.22, "word": " student", "probability": 0.133056640625}, {"start": 945.22, "end": 946.02, "word": ".builder", "probability": 0.8702799479166666}, {"start": 946.02, "end": 951.94, "word": " student", "probability": 0.11181640625}, {"start": 951.94, "end": 964.28, "word": ".builder", "probability": 0.9210611979166666}, {"start": 964.28, "end": 964.84, "word": " student", "probability": 0.317138671875}, {"start": 964.84, "end": 966.8, "word": ".builder", "probability": 0.9431966145833334}, {"start": 966.8, "end": 966.92, "word": " student", "probability": 0.482421875}, {"start": 966.92, "end": 969.1, "word": ".builder", "probability": 0.958984375}, {"start": 969.1, "end": 971.28, "word": " student", "probability": 0.6142578125}, {"start": 971.28, "end": 971.94, "word": ".builder", "probability": 0.9656575520833334}], "temperature": 1.0}, {"id": 40, "seek": 100285, "start": 976.07, "end": 1002.85, "text": " What will you find there? You will find the set methods There is no such thing as set methods, set methods explain themselves, right or wrong? For example, set first name and you say Ahmed and you have to do what? set last name, this is Ali and you fill in the data through the builder set email anything at anything builder", "tokens": [708, 486, 291, 915, 456, 30, 509, 486, 915, 264, 992, 7150, 821, 307, 572, 1270, 551, 382, 992, 7150, 11, 992, 7150, 2903, 2969, 11, 558, 420, 2085, 30, 1171, 1365, 11, 992, 700, 1315, 293, 291, 584, 39189, 293, 291, 362, 281, 360, 437, 30, 992, 1036, 1315, 11, 341, 307, 12020, 293, 291, 2836, 294, 264, 1412, 807, 264, 27377, 992, 3796, 1340, 412, 1340, 27377], "avg_logprob": -0.5999999744551522, "compression_ratio": 1.7195767195767195, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 976.07, "end": 976.33, "word": " What", "probability": 0.1669921875}, {"start": 976.33, "end": 976.43, "word": " will", "probability": 0.3310546875}, {"start": 976.43, "end": 976.49, "word": " you", "probability": 0.876953125}, {"start": 976.49, "end": 976.63, "word": " find", "probability": 0.78515625}, {"start": 976.63, "end": 977.01, "word": " there?", "probability": 0.1385498046875}, {"start": 977.09, "end": 977.15, "word": " You", "probability": 0.8134765625}, {"start": 977.15, "end": 977.21, "word": " will", "probability": 0.76611328125}, {"start": 977.21, "end": 977.37, "word": " find", "probability": 0.85986328125}, {"start": 977.37, "end": 977.51, "word": " the", "probability": 0.53759765625}, {"start": 977.51, "end": 977.63, "word": " set", "probability": 0.6064453125}, {"start": 977.63, "end": 978.01, "word": " methods", "probability": 0.65771484375}, {"start": 978.01, "end": 979.07, "word": " There", "probability": 0.20361328125}, {"start": 979.07, "end": 979.11, "word": " is", "probability": 0.68994140625}, {"start": 979.11, "end": 979.19, "word": " no", "probability": 0.54296875}, {"start": 979.19, "end": 979.29, "word": " such", "probability": 0.1795654296875}, {"start": 979.29, "end": 979.29, "word": " thing", "probability": 0.798828125}, {"start": 979.29, "end": 979.29, "word": " as", "probability": 0.91015625}, {"start": 979.29, "end": 979.67, "word": " set", "probability": 0.29541015625}, {"start": 979.67, "end": 979.97, "word": " methods,", "probability": 0.5205078125}, {"start": 980.01, "end": 980.21, "word": " set", "probability": 0.70263671875}, {"start": 980.21, "end": 980.49, "word": " methods", "probability": 0.87890625}, {"start": 980.49, "end": 980.73, "word": " explain", "probability": 0.1070556640625}, {"start": 980.73, "end": 981.93, "word": " themselves,", "probability": 0.5146484375}, {"start": 982.01, "end": 982.21, "word": " right", "probability": 0.443359375}, {"start": 982.21, "end": 982.43, "word": " or", "probability": 0.744140625}, {"start": 982.43, "end": 982.53, "word": " wrong?", "probability": 0.52880859375}, {"start": 982.89, "end": 983.27, "word": " For", "probability": 0.5654296875}, {"start": 983.27, "end": 983.45, "word": " example,", "probability": 0.916015625}, {"start": 983.63, "end": 983.79, "word": " set", "probability": 0.73095703125}, {"start": 983.79, "end": 984.11, "word": " first", "probability": 0.73876953125}, {"start": 984.11, "end": 984.55, "word": " name", "probability": 0.42236328125}, {"start": 984.55, "end": 985.43, "word": " and", "probability": 0.2841796875}, {"start": 985.43, "end": 985.49, "word": " you", "probability": 0.442138671875}, {"start": 985.49, "end": 985.63, "word": " say", "probability": 0.35009765625}, {"start": 985.63, "end": 987.17, "word": " Ahmed", "probability": 0.71142578125}, {"start": 987.17, "end": 988.35, "word": " and", "probability": 0.39453125}, {"start": 988.35, "end": 988.47, "word": " you", "probability": 0.4033203125}, {"start": 988.47, "end": 988.55, "word": " have", "probability": 0.32470703125}, {"start": 988.55, "end": 989.13, "word": " to", "probability": 0.8154296875}, {"start": 989.13, "end": 989.51, "word": " do", "probability": 0.32861328125}, {"start": 989.51, "end": 989.51, "word": " what?", "probability": 0.76513671875}, {"start": 990.43, "end": 990.91, "word": " set", "probability": 0.60009765625}, {"start": 990.91, "end": 991.27, "word": " last", "probability": 0.86376953125}, {"start": 991.27, "end": 991.89, "word": " name,", "probability": 0.7607421875}, {"start": 992.83, "end": 992.95, "word": " this", "probability": 0.38037109375}, {"start": 992.95, "end": 992.99, "word": " is", "probability": 0.82958984375}, {"start": 992.99, "end": 993.19, "word": " Ali", "probability": 0.86572265625}, {"start": 993.19, "end": 993.39, "word": " and", "probability": 0.626953125}, {"start": 993.39, "end": 993.51, "word": " you", "probability": 0.78564453125}, {"start": 993.51, "end": 993.75, "word": " fill", "probability": 0.685546875}, {"start": 993.75, "end": 993.87, "word": " in", "probability": 0.484375}, {"start": 993.87, "end": 993.89, "word": " the", "probability": 0.830078125}, {"start": 993.89, "end": 994.35, "word": " data", "probability": 0.78076171875}, {"start": 994.35, "end": 997.11, "word": " through", "probability": 0.54296875}, {"start": 997.11, "end": 997.39, "word": " the", "probability": 0.5810546875}, {"start": 997.39, "end": 997.63, "word": " builder", "probability": 0.9453125}, {"start": 997.63, "end": 998.09, "word": " set", "probability": 0.6025390625}, {"start": 998.09, "end": 998.69, "word": " email", "probability": 0.935546875}, {"start": 998.69, "end": 1000.17, "word": " anything", "probability": 0.5732421875}, {"start": 1000.17, "end": 1000.57, "word": " at", "probability": 0.59033203125}, {"start": 1000.57, "end": 1001.09, "word": " anything", "probability": 0.86865234375}, {"start": 1001.09, "end": 1002.85, "word": " builder", "probability": 0.7900390625}], "temperature": 1.0}, {"id": 41, "seek": 103129, "start": 1009.63, "end": 1031.29, "text": " Builder, Set, Department, Software Development. It fills all the data one by one. And then, we don't want Builder. What do we want in the end? We want Student. You go to Builder itself, and you say dot, and you have a method called Create.", "tokens": [11875, 260, 11, 8928, 11, 5982, 11, 27428, 15041, 13, 467, 22498, 439, 264, 1412, 472, 538, 472, 13, 400, 550, 11, 321, 500, 380, 528, 11875, 260, 13, 708, 360, 321, 528, 294, 264, 917, 30, 492, 528, 12464, 13, 509, 352, 281, 11875, 260, 2564, 11, 293, 291, 584, 5893, 11, 293, 291, 362, 257, 3170, 1219, 20248, 13], "avg_logprob": -0.49395163982145246, "compression_ratio": 1.4634146341463414, "no_speech_prob": 1.6689300537109375e-06, "words": [{"start": 1009.6300000000001, "end": 1010.19, "word": " Builder,", "probability": 0.535400390625}, {"start": 1010.41, "end": 1010.91, "word": " Set,", "probability": 0.353515625}, {"start": 1011.47, "end": 1015.67, "word": " Department,", "probability": 0.75537109375}, {"start": 1016.13, "end": 1016.51, "word": " Software", "probability": 0.91162109375}, {"start": 1016.51, "end": 1017.17, "word": " Development.", "probability": 0.6865234375}, {"start": 1017.39, "end": 1017.67, "word": " It", "probability": 0.35205078125}, {"start": 1017.67, "end": 1017.89, "word": " fills", "probability": 0.32177734375}, {"start": 1017.89, "end": 1018.19, "word": " all", "probability": 0.5146484375}, {"start": 1018.19, "end": 1018.25, "word": " the", "probability": 0.61865234375}, {"start": 1018.25, "end": 1018.51, "word": " data", "probability": 0.73681640625}, {"start": 1018.51, "end": 1019.79, "word": " one", "probability": 0.76123046875}, {"start": 1019.79, "end": 1019.95, "word": " by", "probability": 0.953125}, {"start": 1019.95, "end": 1020.21, "word": " one.", "probability": 0.931640625}, {"start": 1021.01, "end": 1021.13, "word": " And", "probability": 0.1488037109375}, {"start": 1021.13, "end": 1021.43, "word": " then,", "probability": 0.487060546875}, {"start": 1021.53, "end": 1021.73, "word": " we", "probability": 0.66064453125}, {"start": 1021.73, "end": 1021.83, "word": " don't", "probability": 0.81689453125}, {"start": 1021.83, "end": 1022.05, "word": " want", "probability": 0.38427734375}, {"start": 1022.05, "end": 1022.33, "word": " Builder.", "probability": 0.6788330078125}, {"start": 1022.41, "end": 1022.63, "word": " What", "probability": 0.375}, {"start": 1022.63, "end": 1022.63, "word": " do", "probability": 0.88427734375}, {"start": 1022.63, "end": 1023.01, "word": " we", "probability": 0.9501953125}, {"start": 1023.01, "end": 1023.45, "word": " want", "probability": 0.765625}, {"start": 1023.45, "end": 1023.45, "word": " in", "probability": 0.421630859375}, {"start": 1023.45, "end": 1023.45, "word": " the", "probability": 0.9189453125}, {"start": 1023.45, "end": 1023.45, "word": " end?", "probability": 0.9150390625}, {"start": 1023.67, "end": 1024.23, "word": " We", "probability": 0.89208984375}, {"start": 1024.23, "end": 1024.37, "word": " want", "probability": 0.7958984375}, {"start": 1024.37, "end": 1024.69, "word": " Student.", "probability": 0.433349609375}, {"start": 1025.07, "end": 1025.31, "word": " You", "probability": 0.77490234375}, {"start": 1025.31, "end": 1025.47, "word": " go", "probability": 0.82666015625}, {"start": 1025.47, "end": 1025.61, "word": " to", "probability": 0.94140625}, {"start": 1025.61, "end": 1026.03, "word": " Builder", "probability": 0.882568359375}, {"start": 1026.03, "end": 1026.41, "word": " itself,", "probability": 0.466796875}, {"start": 1027.41, "end": 1027.49, "word": " and", "probability": 0.68505859375}, {"start": 1027.49, "end": 1027.61, "word": " you", "probability": 0.52294921875}, {"start": 1027.61, "end": 1027.81, "word": " say", "probability": 0.482666015625}, {"start": 1027.81, "end": 1028.39, "word": " dot,", "probability": 0.35302734375}, {"start": 1028.69, "end": 1028.97, "word": " and", "probability": 0.8544921875}, {"start": 1028.97, "end": 1029.15, "word": " you", "probability": 0.6171875}, {"start": 1029.15, "end": 1029.21, "word": " have", "probability": 0.861328125}, {"start": 1029.21, "end": 1029.37, "word": " a", "probability": 0.75}, {"start": 1029.37, "end": 1029.61, "word": " method", "probability": 0.95751953125}, {"start": 1029.61, "end": 1029.93, "word": " called", "probability": 0.64404296875}, {"start": 1029.93, "end": 1031.29, "word": " Create.", "probability": 0.61572265625}], "temperature": 1.0}, {"id": 42, "seek": 105907, "start": 1033.65, "end": 1059.07, "text": " .create what inside create is called? the constructor of the student, I don't see it, he is the one who creates it and this I return to student s and then I say for confirmation s.get first name", "tokens": [2411, 14066, 473, 437, 1854, 1884, 307, 1219, 30, 264, 47479, 295, 264, 3107, 11, 286, 500, 380, 536, 309, 11, 415, 307, 264, 472, 567, 7829, 309, 293, 341, 286, 2736, 281, 3107, 262, 293, 550, 286, 584, 337, 21871, 262, 13, 847, 700, 1315], "avg_logprob": -0.7007978875586327, "compression_ratio": 1.5, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1033.65, "end": 1034.25, "word": " .create", "probability": 0.6464029947916666}, {"start": 1034.25, "end": 1034.85, "word": " what", "probability": 0.2193603515625}, {"start": 1034.85, "end": 1035.19, "word": " inside", "probability": 0.1802978515625}, {"start": 1035.19, "end": 1035.75, "word": " create", "probability": 0.55908203125}, {"start": 1035.75, "end": 1035.95, "word": " is", "probability": 0.351318359375}, {"start": 1035.95, "end": 1036.41, "word": " called?", "probability": 0.31103515625}, {"start": 1036.73, "end": 1037.29, "word": " the", "probability": 0.354248046875}, {"start": 1037.29, "end": 1037.73, "word": " constructor", "probability": 0.59326171875}, {"start": 1037.73, "end": 1037.93, "word": " of", "probability": 0.748046875}, {"start": 1037.93, "end": 1037.99, "word": " the", "probability": 0.5693359375}, {"start": 1037.99, "end": 1038.21, "word": " student,", "probability": 0.86083984375}, {"start": 1038.29, "end": 1038.45, "word": " I", "probability": 0.66748046875}, {"start": 1038.45, "end": 1038.57, "word": " don't", "probability": 0.736328125}, {"start": 1038.57, "end": 1038.87, "word": " see", "probability": 0.76806640625}, {"start": 1038.87, "end": 1038.95, "word": " it,", "probability": 0.74365234375}, {"start": 1038.97, "end": 1039.17, "word": " he", "probability": 0.34619140625}, {"start": 1039.17, "end": 1039.19, "word": " is", "probability": 0.354248046875}, {"start": 1039.19, "end": 1039.19, "word": " the", "probability": 0.59228515625}, {"start": 1039.19, "end": 1039.29, "word": " one", "probability": 0.8720703125}, {"start": 1039.29, "end": 1039.29, "word": " who", "probability": 0.48876953125}, {"start": 1039.29, "end": 1039.45, "word": " creates", "probability": 0.1993408203125}, {"start": 1039.45, "end": 1040.29, "word": " it", "probability": 0.65673828125}, {"start": 1040.29, "end": 1041.09, "word": " and", "probability": 0.398681640625}, {"start": 1041.09, "end": 1041.31, "word": " this", "probability": 0.56982421875}, {"start": 1041.31, "end": 1041.43, "word": " I", "probability": 0.175048828125}, {"start": 1041.43, "end": 1041.71, "word": " return", "probability": 0.67041015625}, {"start": 1041.71, "end": 1042.29, "word": " to", "probability": 0.63037109375}, {"start": 1042.29, "end": 1046.13, "word": " student", "probability": 0.51220703125}, {"start": 1046.13, "end": 1046.55, "word": " s", "probability": 0.4697265625}, {"start": 1046.55, "end": 1049.17, "word": " and", "probability": 0.642578125}, {"start": 1049.17, "end": 1049.39, "word": " then", "probability": 0.31884765625}, {"start": 1049.39, "end": 1049.49, "word": " I", "probability": 0.339111328125}, {"start": 1049.49, "end": 1049.49, "word": " say", "probability": 0.57861328125}, {"start": 1049.49, "end": 1050.05, "word": " for", "probability": 0.49267578125}, {"start": 1050.05, "end": 1050.65, "word": " confirmation", "probability": 0.458740234375}, {"start": 1050.65, "end": 1053.75, "word": " s", "probability": 0.6796875}, {"start": 1053.75, "end": 1057.65, "word": ".get", "probability": 0.71484375}, {"start": 1057.65, "end": 1058.79, "word": " first", "probability": 0.6728515625}, {"start": 1058.79, "end": 1059.07, "word": " name", "probability": 0.453857421875}], "temperature": 1.0}, {"id": 43, "seek": 108691, "start": 1063.67, "end": 1086.91, "text": " I stopped using the builder instead of using the student. I give him all the data I want through the setter methods. When I am sure that I have filled all the data, I tell him to create the student. There is another small problem. Notice that I created a method.", "tokens": [286, 5936, 1228, 264, 27377, 2602, 295, 1228, 264, 3107, 13, 286, 976, 796, 439, 264, 1412, 286, 528, 807, 264, 992, 391, 7150, 13, 1133, 286, 669, 988, 300, 286, 362, 6412, 439, 264, 1412, 11, 286, 980, 796, 281, 1884, 264, 3107, 13, 821, 307, 1071, 1359, 1154, 13, 13428, 300, 286, 2942, 257, 3170, 13], "avg_logprob": -0.6774364204730018, "compression_ratio": 1.623456790123457, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1063.67, "end": 1064.23, "word": " I", "probability": 0.26611328125}, {"start": 1064.23, "end": 1064.79, "word": " stopped", "probability": 0.42578125}, {"start": 1064.79, "end": 1065.21, "word": " using", "probability": 0.40673828125}, {"start": 1065.21, "end": 1065.41, "word": " the", "probability": 0.1661376953125}, {"start": 1065.41, "end": 1065.79, "word": " builder", "probability": 0.7705078125}, {"start": 1065.79, "end": 1065.79, "word": " instead", "probability": 0.478515625}, {"start": 1065.79, "end": 1066.37, "word": " of", "probability": 0.92919921875}, {"start": 1066.37, "end": 1069.15, "word": " using", "probability": 0.304443359375}, {"start": 1069.15, "end": 1069.43, "word": " the", "probability": 0.58984375}, {"start": 1069.43, "end": 1069.69, "word": " student.", "probability": 0.54931640625}, {"start": 1071.55, "end": 1071.83, "word": " I", "probability": 0.42041015625}, {"start": 1071.83, "end": 1072.07, "word": " give", "probability": 0.1268310546875}, {"start": 1072.07, "end": 1072.21, "word": " him", "probability": 0.6513671875}, {"start": 1072.21, "end": 1072.27, "word": " all", "probability": 0.43701171875}, {"start": 1072.27, "end": 1072.29, "word": " the", "probability": 0.68701171875}, {"start": 1072.29, "end": 1072.59, "word": " data", "probability": 0.7578125}, {"start": 1072.59, "end": 1072.73, "word": " I", "probability": 0.40771484375}, {"start": 1072.73, "end": 1073.01, "word": " want", "probability": 0.406494140625}, {"start": 1073.01, "end": 1073.59, "word": " through", "probability": 0.29541015625}, {"start": 1073.59, "end": 1073.91, "word": " the", "probability": 0.72021484375}, {"start": 1073.91, "end": 1074.13, "word": " setter", "probability": 0.78173828125}, {"start": 1074.13, "end": 1074.55, "word": " methods.", "probability": 0.623046875}, {"start": 1074.87, "end": 1075.31, "word": " When", "probability": 0.427978515625}, {"start": 1075.31, "end": 1075.53, "word": " I", "probability": 0.96044921875}, {"start": 1075.53, "end": 1075.57, "word": " am", "probability": 0.216064453125}, {"start": 1075.57, "end": 1075.83, "word": " sure", "probability": 0.78515625}, {"start": 1075.83, "end": 1075.99, "word": " that", "probability": 0.6083984375}, {"start": 1075.99, "end": 1076.09, "word": " I", "probability": 0.58642578125}, {"start": 1076.09, "end": 1076.19, "word": " have", "probability": 0.349609375}, {"start": 1076.19, "end": 1076.25, "word": " filled", "probability": 0.71044921875}, {"start": 1076.25, "end": 1076.35, "word": " all", "probability": 0.52001953125}, {"start": 1076.35, "end": 1076.37, "word": " the", "probability": 0.6484375}, {"start": 1076.37, "end": 1076.61, "word": " data,", "probability": 0.8828125}, {"start": 1077.15, "end": 1077.31, "word": " I", "probability": 0.91015625}, {"start": 1077.31, "end": 1077.47, "word": " tell", "probability": 0.1966552734375}, {"start": 1077.47, "end": 1077.57, "word": " him", "probability": 0.77685546875}, {"start": 1077.57, "end": 1077.67, "word": " to", "probability": 0.70068359375}, {"start": 1077.67, "end": 1078.13, "word": " create", "probability": 0.83544921875}, {"start": 1078.13, "end": 1079.85, "word": " the", "probability": 0.26318359375}, {"start": 1079.85, "end": 1080.23, "word": " student.", "probability": 0.91552734375}, {"start": 1081.03, "end": 1081.49, "word": " There", "probability": 0.1549072265625}, {"start": 1081.49, "end": 1082.91, "word": " is", "probability": 0.82763671875}, {"start": 1082.91, "end": 1083.15, "word": " another", "probability": 0.4580078125}, {"start": 1083.15, "end": 1083.15, "word": " small", "probability": 0.404541015625}, {"start": 1083.15, "end": 1083.15, "word": " problem.", "probability": 0.73974609375}, {"start": 1084.85, "end": 1085.41, "word": " Notice", "probability": 0.320556640625}, {"start": 1085.41, "end": 1085.75, "word": " that", "probability": 0.77490234375}, {"start": 1085.75, "end": 1086.17, "word": " I", "probability": 0.94287109375}, {"start": 1086.17, "end": 1086.45, "word": " created", "probability": 0.2144775390625}, {"start": 1086.45, "end": 1086.55, "word": " a", "probability": 0.91943359375}, {"start": 1086.55, "end": 1086.91, "word": " method.", "probability": 0.7861328125}], "temperature": 1.0}, {"id": 44, "seek": 111024, "start": 1088.0, "end": 1110.24, "text": " This is like a barrier before I can reach the student. It's like he asks for data one by one. He tells me that this student needs a lot of data and you won't be able to pass it on. He passes it on to me first and I take the data from you one by one. Okay? We are giving information to whom?", "tokens": [639, 307, 411, 257, 13357, 949, 286, 393, 2524, 264, 3107, 13, 467, 311, 411, 415, 8962, 337, 1412, 472, 538, 472, 13, 634, 5112, 385, 300, 341, 3107, 2203, 257, 688, 295, 1412, 293, 291, 1582, 380, 312, 1075, 281, 1320, 309, 322, 13, 634, 11335, 309, 322, 281, 385, 700, 293, 286, 747, 264, 1412, 490, 291, 472, 538, 472, 13, 1033, 30, 492, 366, 2902, 1589, 281, 7101, 30], "avg_logprob": -0.5380993346645407, "compression_ratio": 1.5561497326203209, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 1088.0, "end": 1088.5, "word": " This", "probability": 0.1314697265625}, {"start": 1088.5, "end": 1088.7, "word": " is", "probability": 0.56689453125}, {"start": 1088.7, "end": 1088.82, "word": " like", "probability": 0.7021484375}, {"start": 1088.82, "end": 1089.68, "word": " a", "probability": 0.53955078125}, {"start": 1089.68, "end": 1091.02, "word": " barrier", "probability": 0.568359375}, {"start": 1091.02, "end": 1091.56, "word": " before", "probability": 0.1346435546875}, {"start": 1091.56, "end": 1091.74, "word": " I", "probability": 0.529296875}, {"start": 1091.74, "end": 1092.0, "word": " can", "probability": 0.434326171875}, {"start": 1092.0, "end": 1092.0, "word": " reach", "probability": 0.39111328125}, {"start": 1092.0, "end": 1092.94, "word": " the", "probability": 0.487548828125}, {"start": 1092.94, "end": 1093.28, "word": " student.", "probability": 0.734375}, {"start": 1093.48, "end": 1093.98, "word": " It's", "probability": 0.4871826171875}, {"start": 1093.98, "end": 1094.1, "word": " like", "probability": 0.74951171875}, {"start": 1094.1, "end": 1094.34, "word": " he", "probability": 0.403564453125}, {"start": 1094.34, "end": 1095.14, "word": " asks", "probability": 0.447021484375}, {"start": 1095.14, "end": 1095.46, "word": " for", "probability": 0.666015625}, {"start": 1095.46, "end": 1095.78, "word": " data", "probability": 0.37744140625}, {"start": 1095.78, "end": 1096.0, "word": " one", "probability": 0.8388671875}, {"start": 1096.0, "end": 1096.18, "word": " by", "probability": 0.9287109375}, {"start": 1096.18, "end": 1096.3, "word": " one.", "probability": 0.9306640625}, {"start": 1096.56, "end": 1097.02, "word": " He", "probability": 0.68798828125}, {"start": 1097.02, "end": 1097.32, "word": " tells", "probability": 0.244384765625}, {"start": 1097.32, "end": 1097.5, "word": " me", "probability": 0.93603515625}, {"start": 1097.5, "end": 1097.82, "word": " that", "probability": 0.72998046875}, {"start": 1097.82, "end": 1098.4, "word": " this", "probability": 0.654296875}, {"start": 1098.4, "end": 1098.78, "word": " student", "probability": 0.9599609375}, {"start": 1098.78, "end": 1099.5, "word": " needs", "probability": 0.55615234375}, {"start": 1099.5, "end": 1099.92, "word": " a", "probability": 0.5654296875}, {"start": 1099.92, "end": 1100.14, "word": " lot", "probability": 0.953125}, {"start": 1100.14, "end": 1100.14, "word": " of", "probability": 0.96923828125}, {"start": 1100.14, "end": 1100.14, "word": " data", "probability": 0.89013671875}, {"start": 1100.14, "end": 1100.26, "word": " and", "probability": 0.61279296875}, {"start": 1100.26, "end": 1100.36, "word": " you", "probability": 0.591796875}, {"start": 1100.36, "end": 1100.44, "word": " won't", "probability": 0.66943359375}, {"start": 1100.44, "end": 1100.62, "word": " be", "probability": 0.72998046875}, {"start": 1100.62, "end": 1100.66, "word": " able", "probability": 0.95654296875}, {"start": 1100.66, "end": 1100.74, "word": " to", "probability": 0.97265625}, {"start": 1100.74, "end": 1100.96, "word": " pass", "probability": 0.382568359375}, {"start": 1100.96, "end": 1101.18, "word": " it", "probability": 0.6435546875}, {"start": 1101.18, "end": 1101.18, "word": " on.", "probability": 0.325439453125}, {"start": 1101.68, "end": 1101.9, "word": " He", "probability": 0.285400390625}, {"start": 1101.9, "end": 1102.0, "word": " passes", "probability": 0.517578125}, {"start": 1102.0, "end": 1102.16, "word": " it", "probability": 0.6787109375}, {"start": 1102.16, "end": 1102.16, "word": " on", "probability": 0.671875}, {"start": 1102.16, "end": 1102.16, "word": " to", "probability": 0.79833984375}, {"start": 1102.16, "end": 1102.32, "word": " me", "probability": 0.95654296875}, {"start": 1102.32, "end": 1102.72, "word": " first", "probability": 0.459228515625}, {"start": 1102.72, "end": 1103.92, "word": " and", "probability": 0.560546875}, {"start": 1103.92, "end": 1104.1, "word": " I", "probability": 0.88916015625}, {"start": 1104.1, "end": 1104.3, "word": " take", "probability": 0.425537109375}, {"start": 1104.3, "end": 1104.42, "word": " the", "probability": 0.53857421875}, {"start": 1104.42, "end": 1104.42, "word": " data", "probability": 0.90673828125}, {"start": 1104.42, "end": 1104.42, "word": " from", "probability": 0.4599609375}, {"start": 1104.42, "end": 1104.78, "word": " you", "probability": 0.5498046875}, {"start": 1104.78, "end": 1106.54, "word": " one", "probability": 0.81103515625}, {"start": 1106.54, "end": 1106.7, "word": " by", "probability": 0.96826171875}, {"start": 1106.7, "end": 1106.96, "word": " one.", "probability": 0.92578125}, {"start": 1107.52, "end": 1107.84, "word": " Okay?", "probability": 0.25830078125}, {"start": 1108.1, "end": 1108.52, "word": " We", "probability": 0.40771484375}, {"start": 1108.52, "end": 1108.6, "word": " are", "probability": 0.489013671875}, {"start": 1108.6, "end": 1109.42, "word": " giving", "probability": 0.61279296875}, {"start": 1109.42, "end": 1109.82, "word": " information", "probability": 0.51123046875}, {"start": 1109.82, "end": 1110.04, "word": " to", "probability": 0.9189453125}, {"start": 1110.04, "end": 1110.24, "word": " whom?", "probability": 0.92236328125}], "temperature": 1.0}, {"id": 45, "seek": 112699, "start": 1111.17, "end": 1126.99, "text": "no the builder, he takes them one by one in order, he takes all the information through setter methods, I tell him in the end builder create a student for me, I go to the builder from inside to inside, I download the constructor of the student and create it for him, there is one problem that remains, that I can", "tokens": [1771, 264, 27377, 11, 415, 2516, 552, 472, 538, 472, 294, 1668, 11, 415, 2516, 439, 264, 1589, 807, 992, 391, 7150, 11, 286, 980, 796, 294, 264, 917, 27377, 1884, 257, 3107, 337, 385, 11, 286, 352, 281, 264, 27377, 490, 1854, 281, 1854, 11, 286, 5484, 264, 47479, 295, 264, 3107, 293, 1884, 309, 337, 796, 11, 456, 307, 472, 1154, 300, 7023, 11, 300, 286, 393], "avg_logprob": -0.5723214243139539, "compression_ratio": 1.7727272727272727, "no_speech_prob": 0.00011938810348510742, "words": [{"start": 1111.17, "end": 1111.39, "word": "no", "probability": 0.0635986328125}, {"start": 1111.39, "end": 1111.53, "word": " the", "probability": 0.253662109375}, {"start": 1111.53, "end": 1111.69, "word": " builder,", "probability": 0.93310546875}, {"start": 1111.75, "end": 1111.87, "word": " he", "probability": 0.48876953125}, {"start": 1111.87, "end": 1112.07, "word": " takes", "probability": 0.478515625}, {"start": 1112.07, "end": 1112.19, "word": " them", "probability": 0.46875}, {"start": 1112.19, "end": 1112.51, "word": " one", "probability": 0.7822265625}, {"start": 1112.51, "end": 1112.71, "word": " by", "probability": 0.94921875}, {"start": 1112.71, "end": 1113.07, "word": " one", "probability": 0.9326171875}, {"start": 1113.07, "end": 1113.65, "word": " in", "probability": 0.345703125}, {"start": 1113.65, "end": 1114.03, "word": " order,", "probability": 0.66357421875}, {"start": 1114.39, "end": 1114.63, "word": " he", "probability": 0.615234375}, {"start": 1114.63, "end": 1114.81, "word": " takes", "probability": 0.435546875}, {"start": 1114.81, "end": 1114.93, "word": " all", "probability": 0.8515625}, {"start": 1114.93, "end": 1114.95, "word": " the", "probability": 0.68359375}, {"start": 1114.95, "end": 1115.29, "word": " information", "probability": 0.591796875}, {"start": 1115.29, "end": 1115.85, "word": " through", "probability": 0.619140625}, {"start": 1115.85, "end": 1116.23, "word": " setter", "probability": 0.5245361328125}, {"start": 1116.23, "end": 1116.65, "word": " methods,", "probability": 0.8115234375}, {"start": 1117.25, "end": 1117.39, "word": " I", "probability": 0.35107421875}, {"start": 1117.39, "end": 1117.55, "word": " tell", "probability": 0.51318359375}, {"start": 1117.55, "end": 1117.67, "word": " him", "probability": 0.86279296875}, {"start": 1117.67, "end": 1117.67, "word": " in", "probability": 0.256591796875}, {"start": 1117.67, "end": 1117.77, "word": " the", "probability": 0.921875}, {"start": 1117.77, "end": 1117.93, "word": " end", "probability": 0.91943359375}, {"start": 1117.93, "end": 1118.35, "word": " builder", "probability": 0.267333984375}, {"start": 1118.35, "end": 1118.71, "word": " create", "probability": 0.432373046875}, {"start": 1118.71, "end": 1118.97, "word": " a", "probability": 0.305908203125}, {"start": 1118.97, "end": 1119.77, "word": " student", "probability": 0.92333984375}, {"start": 1119.77, "end": 1119.87, "word": " for", "probability": 0.8515625}, {"start": 1119.87, "end": 1119.87, "word": " me,", "probability": 0.96044921875}, {"start": 1120.09, "end": 1120.31, "word": " I", "probability": 0.84375}, {"start": 1120.31, "end": 1120.39, "word": " go", "probability": 0.88916015625}, {"start": 1120.39, "end": 1120.51, "word": " to", "probability": 0.462646484375}, {"start": 1120.51, "end": 1120.55, "word": " the", "probability": 0.7216796875}, {"start": 1120.55, "end": 1120.75, "word": " builder", "probability": 0.92578125}, {"start": 1120.75, "end": 1120.93, "word": " from", "probability": 0.65234375}, {"start": 1120.93, "end": 1121.15, "word": " inside", "probability": 0.8095703125}, {"start": 1121.15, "end": 1121.29, "word": " to", "probability": 0.8154296875}, {"start": 1121.29, "end": 1121.47, "word": " inside,", "probability": 0.314208984375}, {"start": 1121.69, "end": 1121.75, "word": " I", "probability": 0.72314453125}, {"start": 1121.75, "end": 1122.03, "word": " download", "probability": 0.109375}, {"start": 1122.03, "end": 1122.15, "word": " the", "probability": 0.8701171875}, {"start": 1122.15, "end": 1122.51, "word": " constructor", "probability": 0.362548828125}, {"start": 1122.51, "end": 1122.71, "word": " of", "probability": 0.62939453125}, {"start": 1122.71, "end": 1122.81, "word": " the", "probability": 0.84814453125}, {"start": 1122.81, "end": 1123.15, "word": " student", "probability": 0.94580078125}, {"start": 1123.15, "end": 1123.69, "word": " and", "probability": 0.7490234375}, {"start": 1123.69, "end": 1123.97, "word": " create", "probability": 0.564453125}, {"start": 1123.97, "end": 1124.21, "word": " it", "probability": 0.422119140625}, {"start": 1124.21, "end": 1124.29, "word": " for", "probability": 0.71484375}, {"start": 1124.29, "end": 1124.29, "word": " him,", "probability": 0.5390625}, {"start": 1124.69, "end": 1124.89, "word": " there", "probability": 0.8701171875}, {"start": 1124.89, "end": 1125.01, "word": " is", "probability": 0.8837890625}, {"start": 1125.01, "end": 1125.43, "word": " one", "probability": 0.5791015625}, {"start": 1125.43, "end": 1125.53, "word": " problem", "probability": 0.607421875}, {"start": 1125.53, "end": 1125.95, "word": " that", "probability": 0.54736328125}, {"start": 1125.95, "end": 1126.07, "word": " remains,", "probability": 0.5380859375}, {"start": 1126.25, "end": 1126.41, "word": " that", "probability": 0.6357421875}, {"start": 1126.41, "end": 1126.61, "word": " I", "probability": 0.958984375}, {"start": 1126.61, "end": 1126.99, "word": " can", "probability": 0.841796875}], "temperature": 1.0}, {"id": 46, "seek": 115665, "start": 1128.55, "end": 1156.65, "text": " Important data should not be filled What is the idea of the student's constructor? That there are compulsory data that must be filled So in the builder, for example, in this class builder There is no method create It is supposed here before the student does I put a condition I make sure that he filled the compulsory data This is like a secretary He makes sure that he takes the data from him He makes sure that if the data is correct He goes to the student If there is something missing", "tokens": [42908, 1412, 820, 406, 312, 6412, 708, 307, 264, 1558, 295, 264, 3107, 311, 47479, 30, 663, 456, 366, 42773, 827, 1412, 300, 1633, 312, 6412, 407, 294, 264, 27377, 11, 337, 1365, 11, 294, 341, 1508, 27377, 821, 307, 572, 3170, 1884, 467, 307, 3442, 510, 949, 264, 3107, 775, 286, 829, 257, 4188, 286, 652, 988, 300, 415, 6412, 264, 42773, 827, 1412, 639, 307, 411, 257, 15691, 634, 1669, 988, 300, 415, 2516, 264, 1412, 490, 796, 634, 1669, 988, 300, 498, 264, 1412, 307, 3006, 634, 1709, 281, 264, 3107, 759, 456, 307, 746, 5361], "avg_logprob": -0.5750000220537186, "compression_ratio": 1.91015625, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 1128.55, "end": 1128.75, "word": " Important", "probability": 0.21728515625}, {"start": 1128.75, "end": 1129.01, "word": " data", "probability": 0.74560546875}, {"start": 1129.01, "end": 1129.43, "word": " should", "probability": 0.1370849609375}, {"start": 1129.43, "end": 1129.45, "word": " not", "probability": 0.802734375}, {"start": 1129.45, "end": 1129.49, "word": " be", "probability": 0.89501953125}, {"start": 1129.49, "end": 1129.59, "word": " filled", "probability": 0.56396484375}, {"start": 1129.59, "end": 1130.11, "word": " What", "probability": 0.1802978515625}, {"start": 1130.11, "end": 1130.39, "word": " is", "probability": 0.7236328125}, {"start": 1130.39, "end": 1130.41, "word": " the", "probability": 0.87109375}, {"start": 1130.41, "end": 1130.53, "word": " idea", "probability": 0.5859375}, {"start": 1130.53, "end": 1130.69, "word": " of", "probability": 0.81494140625}, {"start": 1130.69, "end": 1130.73, "word": " the", "probability": 0.57275390625}, {"start": 1130.73, "end": 1130.91, "word": " student's", "probability": 0.37646484375}, {"start": 1130.91, "end": 1131.31, "word": " constructor?", "probability": 0.71875}, {"start": 1132.63, "end": 1132.73, "word": " That", "probability": 0.311767578125}, {"start": 1132.73, "end": 1132.95, "word": " there", "probability": 0.7705078125}, {"start": 1132.95, "end": 1133.07, "word": " are", "probability": 0.40234375}, {"start": 1133.07, "end": 1133.79, "word": " compulsory", "probability": 0.63330078125}, {"start": 1133.79, "end": 1133.79, "word": " data", "probability": 0.869140625}, {"start": 1133.79, "end": 1133.91, "word": " that", "probability": 0.7177734375}, {"start": 1133.91, "end": 1134.07, "word": " must", "probability": 0.5234375}, {"start": 1134.07, "end": 1134.89, "word": " be", "probability": 0.90576171875}, {"start": 1134.89, "end": 1135.15, "word": " filled", "probability": 0.7548828125}, {"start": 1135.15, "end": 1136.45, "word": " So", "probability": 0.1484375}, {"start": 1136.45, "end": 1137.09, "word": " in", "probability": 0.267578125}, {"start": 1137.09, "end": 1137.25, "word": " the", "probability": 0.3876953125}, {"start": 1137.25, "end": 1137.47, "word": " builder,", "probability": 0.82080078125}, {"start": 1137.63, "end": 1137.79, "word": " for", "probability": 0.6865234375}, {"start": 1137.79, "end": 1137.95, "word": " example,", "probability": 0.94775390625}, {"start": 1138.11, "end": 1138.11, "word": " in", "probability": 0.69873046875}, {"start": 1138.11, "end": 1138.53, "word": " this", "probability": 0.333740234375}, {"start": 1138.53, "end": 1139.47, "word": " class", "probability": 0.7822265625}, {"start": 1139.47, "end": 1139.87, "word": " builder", "probability": 0.9072265625}, {"start": 1139.87, "end": 1140.61, "word": " There", "probability": 0.31298828125}, {"start": 1140.61, "end": 1140.61, "word": " is", "probability": 0.87060546875}, {"start": 1140.61, "end": 1140.73, "word": " no", "probability": 0.89111328125}, {"start": 1140.73, "end": 1140.99, "word": " method", "probability": 0.57373046875}, {"start": 1140.99, "end": 1141.47, "word": " create", "probability": 0.74462890625}, {"start": 1141.47, "end": 1142.13, "word": " It", "probability": 0.1607666015625}, {"start": 1142.13, "end": 1142.23, "word": " is", "probability": 0.6552734375}, {"start": 1142.23, "end": 1142.43, "word": " supposed", "probability": 0.5458984375}, {"start": 1142.43, "end": 1142.63, "word": " here", "probability": 0.34716796875}, {"start": 1142.63, "end": 1142.93, "word": " before", "probability": 0.5869140625}, {"start": 1142.93, "end": 1143.51, "word": " the", "probability": 0.58056640625}, {"start": 1143.51, "end": 1144.17, "word": " student", "probability": 0.953125}, {"start": 1144.17, "end": 1144.19, "word": " does", "probability": 0.2978515625}, {"start": 1144.19, "end": 1144.87, "word": " I", "probability": 0.1763916015625}, {"start": 1144.87, "end": 1145.11, "word": " put", "probability": 0.6650390625}, {"start": 1145.11, "end": 1145.23, "word": " a", "probability": 0.853515625}, {"start": 1145.23, "end": 1145.51, "word": " condition", "probability": 0.89501953125}, {"start": 1145.51, "end": 1146.17, "word": " I", "probability": 0.2548828125}, {"start": 1146.17, "end": 1146.31, "word": " make", "probability": 0.7373046875}, {"start": 1146.31, "end": 1146.67, "word": " sure", "probability": 0.9208984375}, {"start": 1146.67, "end": 1146.83, "word": " that", "probability": 0.73974609375}, {"start": 1146.83, "end": 1146.93, "word": " he", "probability": 0.470703125}, {"start": 1146.93, "end": 1147.13, "word": " filled", "probability": 0.8271484375}, {"start": 1147.13, "end": 1148.21, "word": " the", "probability": 0.71142578125}, {"start": 1148.21, "end": 1148.57, "word": " compulsory", "probability": 0.884765625}, {"start": 1148.57, "end": 1148.57, "word": " data", "probability": 0.908203125}, {"start": 1148.57, "end": 1148.75, "word": " This", "probability": 0.16455078125}, {"start": 1148.75, "end": 1148.91, "word": " is", "probability": 0.9052734375}, {"start": 1148.91, "end": 1149.09, "word": " like", "probability": 0.8798828125}, {"start": 1149.09, "end": 1149.21, "word": " a", "probability": 0.71875}, {"start": 1149.21, "end": 1149.65, "word": " secretary", "probability": 0.8623046875}, {"start": 1149.65, "end": 1150.21, "word": " He", "probability": 0.29541015625}, {"start": 1150.21, "end": 1150.29, "word": " makes", "probability": 0.54345703125}, {"start": 1150.29, "end": 1150.59, "word": " sure", "probability": 0.90478515625}, {"start": 1150.59, "end": 1150.69, "word": " that", "probability": 0.498291015625}, {"start": 1150.69, "end": 1150.69, "word": " he", "probability": 0.556640625}, {"start": 1150.69, "end": 1150.89, "word": " takes", "probability": 0.599609375}, {"start": 1150.89, "end": 1151.07, "word": " the", "probability": 0.41357421875}, {"start": 1151.07, "end": 1151.51, "word": " data", "probability": 0.83740234375}, {"start": 1151.51, "end": 1151.95, "word": " from", "probability": 0.65087890625}, {"start": 1151.95, "end": 1151.95, "word": " him", "probability": 0.64306640625}, {"start": 1151.95, "end": 1152.47, "word": " He", "probability": 0.1273193359375}, {"start": 1152.47, "end": 1152.77, "word": " makes", "probability": 0.5400390625}, {"start": 1152.77, "end": 1152.95, "word": " sure", "probability": 0.90966796875}, {"start": 1152.95, "end": 1153.03, "word": " that", "probability": 0.75634765625}, {"start": 1153.03, "end": 1153.11, "word": " if", "probability": 0.89208984375}, {"start": 1153.11, "end": 1153.23, "word": " the", "probability": 0.8935546875}, {"start": 1153.23, "end": 1153.45, "word": " data", "probability": 0.90625}, {"start": 1153.45, "end": 1153.59, "word": " is", "probability": 0.826171875}, {"start": 1153.59, "end": 1153.95, "word": " correct", "probability": 0.373046875}, {"start": 1153.95, "end": 1154.97, "word": " He", "probability": 0.31298828125}, {"start": 1154.97, "end": 1155.11, "word": " goes", "probability": 0.65234375}, {"start": 1155.11, "end": 1155.23, "word": " to", "probability": 0.261962890625}, {"start": 1155.23, "end": 1155.39, "word": " the", "probability": 0.36376953125}, {"start": 1155.39, "end": 1155.67, "word": " student", "probability": 0.9345703125}, {"start": 1155.67, "end": 1155.89, "word": " If", "probability": 0.413818359375}, {"start": 1155.89, "end": 1156.11, "word": " there", "probability": 0.7587890625}, {"start": 1156.11, "end": 1156.11, "word": " is", "probability": 0.90380859375}, {"start": 1156.11, "end": 1156.37, "word": " something", "probability": 0.64013671875}, {"start": 1156.37, "end": 1156.65, "word": " missing", "probability": 0.84716796875}], "temperature": 1.0}, {"id": 47, "seek": 118579, "start": 1157.83, "end": 1185.79, "text": " okay, he will warn me, he will say no come with me, when he is 100% sure, he will go and tell the student so here for example I can say if the first name equals null or the last name equals null or for example the faculty equals null okay, throw it", "tokens": [1392, 11, 415, 486, 12286, 385, 11, 415, 486, 584, 572, 808, 365, 385, 11, 562, 415, 307, 2319, 4, 988, 11, 415, 486, 352, 293, 980, 264, 3107, 370, 510, 337, 1365, 286, 393, 584, 498, 264, 700, 1315, 6915, 18184, 420, 264, 1036, 1315, 6915, 18184, 420, 337, 1365, 264, 6389, 6915, 18184, 1392, 11, 3507, 309], "avg_logprob": -0.5984375208616257, "compression_ratio": 1.7291666666666667, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 1157.83, "end": 1158.23, "word": " okay,", "probability": 0.0657958984375}, {"start": 1158.25, "end": 1158.41, "word": " he", "probability": 0.33056640625}, {"start": 1158.41, "end": 1158.47, "word": " will", "probability": 0.51806640625}, {"start": 1158.47, "end": 1158.65, "word": " warn", "probability": 0.2685546875}, {"start": 1158.65, "end": 1158.89, "word": " me,", "probability": 0.8828125}, {"start": 1158.95, "end": 1159.01, "word": " he", "probability": 0.70166015625}, {"start": 1159.01, "end": 1159.07, "word": " will", "probability": 0.8642578125}, {"start": 1159.07, "end": 1159.19, "word": " say", "probability": 0.72900390625}, {"start": 1159.19, "end": 1159.43, "word": " no", "probability": 0.353271484375}, {"start": 1159.43, "end": 1160.07, "word": " come", "probability": 0.445556640625}, {"start": 1160.07, "end": 1160.25, "word": " with", "probability": 0.1597900390625}, {"start": 1160.25, "end": 1160.71, "word": " me,", "probability": 0.74609375}, {"start": 1160.71, "end": 1160.87, "word": " when", "probability": 0.289794921875}, {"start": 1160.87, "end": 1161.07, "word": " he", "probability": 0.388427734375}, {"start": 1161.07, "end": 1161.15, "word": " is", "probability": 0.473388671875}, {"start": 1161.15, "end": 1161.63, "word": " 100", "probability": 0.310302734375}, {"start": 1161.63, "end": 1161.91, "word": "%", "probability": 0.87353515625}, {"start": 1161.91, "end": 1161.91, "word": " sure,", "probability": 0.83740234375}, {"start": 1161.97, "end": 1162.11, "word": " he", "probability": 0.646484375}, {"start": 1162.11, "end": 1162.11, "word": " will", "probability": 0.56103515625}, {"start": 1162.11, "end": 1162.19, "word": " go", "probability": 0.399169921875}, {"start": 1162.19, "end": 1162.27, "word": " and", "probability": 0.56201171875}, {"start": 1162.27, "end": 1162.55, "word": " tell", "probability": 0.301513671875}, {"start": 1162.55, "end": 1163.73, "word": " the", "probability": 0.52392578125}, {"start": 1163.73, "end": 1164.03, "word": " student", "probability": 0.82421875}, {"start": 1164.03, "end": 1164.69, "word": " so", "probability": 0.358642578125}, {"start": 1164.69, "end": 1165.11, "word": " here", "probability": 0.69775390625}, {"start": 1165.11, "end": 1165.27, "word": " for", "probability": 0.5}, {"start": 1165.27, "end": 1165.37, "word": " example", "probability": 0.93994140625}, {"start": 1165.37, "end": 1165.45, "word": " I", "probability": 0.418212890625}, {"start": 1165.45, "end": 1165.63, "word": " can", "probability": 0.8388671875}, {"start": 1165.63, "end": 1165.93, "word": " say", "probability": 0.650390625}, {"start": 1165.93, "end": 1166.29, "word": " if", "probability": 0.9033203125}, {"start": 1166.29, "end": 1167.17, "word": " the", "probability": 0.56982421875}, {"start": 1167.17, "end": 1167.49, "word": " first", "probability": 0.9140625}, {"start": 1167.49, "end": 1167.87, "word": " name", "probability": 0.89404296875}, {"start": 1167.87, "end": 1170.35, "word": " equals", "probability": 0.69287109375}, {"start": 1170.35, "end": 1170.63, "word": " null", "probability": 0.483642578125}, {"start": 1170.63, "end": 1171.81, "word": " or", "probability": 0.89208984375}, {"start": 1171.81, "end": 1172.79, "word": " the", "probability": 0.62109375}, {"start": 1172.79, "end": 1173.09, "word": " last", "probability": 0.90771484375}, {"start": 1173.09, "end": 1173.67, "word": " name", "probability": 0.90576171875}, {"start": 1173.67, "end": 1175.11, "word": " equals", "probability": 0.876953125}, {"start": 1175.11, "end": 1176.05, "word": " null", "probability": 0.96533203125}, {"start": 1176.05, "end": 1177.91, "word": " or", "probability": 0.9189453125}, {"start": 1177.91, "end": 1178.13, "word": " for", "probability": 0.80517578125}, {"start": 1178.13, "end": 1178.49, "word": " example", "probability": 0.96142578125}, {"start": 1178.49, "end": 1179.47, "word": " the", "probability": 0.583984375}, {"start": 1179.47, "end": 1180.41, "word": " faculty", "probability": 0.740234375}, {"start": 1180.41, "end": 1182.21, "word": " equals", "probability": 0.85107421875}, {"start": 1182.21, "end": 1182.61, "word": " null", "probability": 0.9736328125}, {"start": 1182.61, "end": 1184.05, "word": " okay,", "probability": 0.5302734375}, {"start": 1184.61, "end": 1185.41, "word": " throw", "probability": 0.298095703125}, {"start": 1185.41, "end": 1185.79, "word": " it", "probability": 0.4111328125}], "temperature": 1.0}, {"id": 48, "seek": 121501, "start": 1187.19, "end": 1215.01, "text": " in you means tell him that there is a problem this is missing required parameters I explain to him for example in the message what is required else create who create the student so now guys as if the builder works as a barrier he makes sure that the information is taken by all that is required", "tokens": [294, 291, 1355, 980, 796, 300, 456, 307, 257, 1154, 341, 307, 5361, 4739, 9834, 286, 2903, 281, 796, 337, 1365, 294, 264, 3636, 437, 307, 4739, 1646, 1884, 567, 1884, 264, 3107, 370, 586, 1074, 382, 498, 264, 27377, 1985, 382, 257, 13357, 415, 1669, 988, 300, 264, 1589, 307, 2726, 538, 439, 300, 307, 4739], "avg_logprob": -0.7171336381599821, "compression_ratio": 1.6573033707865168, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 1187.19, "end": 1187.49, "word": " in", "probability": 0.12432861328125}, {"start": 1187.49, "end": 1187.85, "word": " you", "probability": 0.7314453125}, {"start": 1187.85, "end": 1193.77, "word": " means", "probability": 0.0653076171875}, {"start": 1193.77, "end": 1193.97, "word": " tell", "probability": 0.249267578125}, {"start": 1193.97, "end": 1194.05, "word": " him", "probability": 0.6669921875}, {"start": 1194.05, "end": 1194.17, "word": " that", "probability": 0.36328125}, {"start": 1194.17, "end": 1194.31, "word": " there", "probability": 0.81201171875}, {"start": 1194.31, "end": 1194.33, "word": " is", "probability": 0.78271484375}, {"start": 1194.33, "end": 1194.39, "word": " a", "probability": 0.908203125}, {"start": 1194.39, "end": 1194.77, "word": " problem", "probability": 0.802734375}, {"start": 1194.77, "end": 1195.57, "word": " this", "probability": 0.1273193359375}, {"start": 1195.57, "end": 1195.63, "word": " is", "probability": 0.806640625}, {"start": 1195.63, "end": 1196.11, "word": " missing", "probability": 0.8017578125}, {"start": 1196.11, "end": 1199.29, "word": " required", "probability": 0.7412109375}, {"start": 1199.29, "end": 1200.79, "word": " parameters", "probability": 0.9189453125}, {"start": 1200.79, "end": 1201.85, "word": " I", "probability": 0.2169189453125}, {"start": 1201.85, "end": 1202.09, "word": " explain", "probability": 0.3642578125}, {"start": 1202.09, "end": 1202.25, "word": " to", "probability": 0.367431640625}, {"start": 1202.25, "end": 1202.31, "word": " him", "probability": 0.85205078125}, {"start": 1202.31, "end": 1202.41, "word": " for", "probability": 0.2073974609375}, {"start": 1202.41, "end": 1202.53, "word": " example", "probability": 0.94921875}, {"start": 1202.53, "end": 1202.69, "word": " in", "probability": 0.57421875}, {"start": 1202.69, "end": 1202.75, "word": " the", "probability": 0.7431640625}, {"start": 1202.75, "end": 1202.97, "word": " message", "probability": 0.7900390625}, {"start": 1202.97, "end": 1203.19, "word": " what", "probability": 0.78125}, {"start": 1203.19, "end": 1203.41, "word": " is", "probability": 0.82568359375}, {"start": 1203.41, "end": 1203.85, "word": " required", "probability": 0.68505859375}, {"start": 1203.85, "end": 1204.71, "word": " else", "probability": 0.367431640625}, {"start": 1204.71, "end": 1206.79, "word": " create", "probability": 0.045623779296875}, {"start": 1206.79, "end": 1207.11, "word": " who", "probability": 0.52001953125}, {"start": 1207.11, "end": 1209.05, "word": " create", "probability": 0.56982421875}, {"start": 1209.05, "end": 1209.25, "word": " the", "probability": 0.53564453125}, {"start": 1209.25, "end": 1209.61, "word": " student", "probability": 0.9296875}, {"start": 1209.61, "end": 1210.19, "word": " so", "probability": 0.3427734375}, {"start": 1210.19, "end": 1210.43, "word": " now", "probability": 0.7099609375}, {"start": 1210.43, "end": 1210.73, "word": " guys", "probability": 0.681640625}, {"start": 1210.73, "end": 1210.97, "word": " as", "probability": 0.333984375}, {"start": 1210.97, "end": 1211.19, "word": " if", "probability": 0.8681640625}, {"start": 1211.19, "end": 1211.29, "word": " the", "probability": 0.363037109375}, {"start": 1211.29, "end": 1211.53, "word": " builder", "probability": 0.9541015625}, {"start": 1211.53, "end": 1212.07, "word": " works", "probability": 0.24072265625}, {"start": 1212.07, "end": 1212.27, "word": " as", "probability": 0.7666015625}, {"start": 1212.27, "end": 1212.33, "word": " a", "probability": 0.861328125}, {"start": 1212.33, "end": 1212.65, "word": " barrier", "probability": 0.58056640625}, {"start": 1212.65, "end": 1212.89, "word": " he", "probability": 0.13818359375}, {"start": 1212.89, "end": 1212.95, "word": " makes", "probability": 0.29150390625}, {"start": 1212.95, "end": 1213.23, "word": " sure", "probability": 0.91943359375}, {"start": 1213.23, "end": 1213.39, "word": " that", "probability": 0.8681640625}, {"start": 1213.39, "end": 1213.47, "word": " the", "probability": 0.5048828125}, {"start": 1213.47, "end": 1213.71, "word": " information", "probability": 0.7333984375}, {"start": 1213.71, "end": 1214.01, "word": " is", "probability": 0.498291015625}, {"start": 1214.01, "end": 1214.19, "word": " taken", "probability": 0.474853515625}, {"start": 1214.19, "end": 1214.25, "word": " by", "probability": 0.2685546875}, {"start": 1214.25, "end": 1214.49, "word": " all", "probability": 0.564453125}, {"start": 1214.49, "end": 1214.61, "word": " that", "probability": 0.1875}, {"start": 1214.61, "end": 1214.63, "word": " is", "probability": 0.75927734375}, {"start": 1214.63, "end": 1215.01, "word": " required", "probability": 0.75634765625}], "temperature": 1.0}, {"id": 49, "seek": 123800, "start": 1216.42, "end": 1238.0, "text": " All the information goes to the builder to create the student. By using this builder, I reflected that the student needs a lot of parameters to create. I don't know how to create parameters, so I created a way for the builder to take information step by step through a set of methods. After the information is completed, it goes to the builder", "tokens": [1057, 264, 1536, 687, 399, 1709, 281, 264, 27377, 281, 1884, 264, 3107, 13, 3146, 1228, 341, 27377, 11, 286, 15502, 300, 264, 3107, 2203, 257, 688, 295, 9834, 281, 1884, 13, 286, 500, 380, 458, 577, 281, 1884, 9834, 11, 370, 286, 2942, 257, 636, 337, 264, 27377, 281, 747, 1589, 1823, 538, 1823, 807, 257, 992, 295, 7150, 13, 2381, 264, 1589, 307, 7365, 11, 309, 1709, 281, 264, 27377], "avg_logprob": -0.5522260078012127, "compression_ratio": 1.8797814207650274, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 1216.42, "end": 1216.6, "word": " All", "probability": 0.1492919921875}, {"start": 1216.6, "end": 1216.64, "word": " the", "probability": 0.6337890625}, {"start": 1216.64, "end": 1216.96, "word": " information", "probability": 0.7070719401041666}, {"start": 1216.96, "end": 1217.54, "word": " goes", "probability": 0.260498046875}, {"start": 1217.54, "end": 1217.74, "word": " to", "probability": 0.80419921875}, {"start": 1217.74, "end": 1217.82, "word": " the", "probability": 0.6533203125}, {"start": 1217.82, "end": 1218.02, "word": " builder", "probability": 0.6025390625}, {"start": 1218.02, "end": 1218.92, "word": " to", "probability": 0.1561279296875}, {"start": 1218.92, "end": 1218.98, "word": " create", "probability": 0.34814453125}, {"start": 1218.98, "end": 1219.12, "word": " the", "probability": 0.52197265625}, {"start": 1219.12, "end": 1219.44, "word": " student.", "probability": 0.69091796875}, {"start": 1219.86, "end": 1220.26, "word": " By", "probability": 0.2169189453125}, {"start": 1220.26, "end": 1221.4, "word": " using", "probability": 0.8916015625}, {"start": 1221.4, "end": 1221.6, "word": " this", "probability": 0.67626953125}, {"start": 1221.6, "end": 1221.84, "word": " builder,", "probability": 0.916015625}, {"start": 1222.12, "end": 1222.14, "word": " I", "probability": 0.8740234375}, {"start": 1222.14, "end": 1222.84, "word": " reflected", "probability": 0.52099609375}, {"start": 1222.84, "end": 1223.48, "word": " that", "probability": 0.75390625}, {"start": 1223.48, "end": 1224.52, "word": " the", "probability": 0.237548828125}, {"start": 1224.52, "end": 1224.96, "word": " student", "probability": 0.88427734375}, {"start": 1224.96, "end": 1225.88, "word": " needs", "probability": 0.2919921875}, {"start": 1225.88, "end": 1226.0, "word": " a", "probability": 0.365478515625}, {"start": 1226.0, "end": 1226.0, "word": " lot", "probability": 0.92919921875}, {"start": 1226.0, "end": 1226.04, "word": " of", "probability": 0.958984375}, {"start": 1226.04, "end": 1226.48, "word": " parameters", "probability": 0.94677734375}, {"start": 1226.48, "end": 1226.48, "word": " to", "probability": 0.70556640625}, {"start": 1226.48, "end": 1226.48, "word": " create.", "probability": 0.720703125}, {"start": 1227.64, "end": 1228.04, "word": " I", "probability": 0.359130859375}, {"start": 1228.04, "end": 1228.36, "word": " don't", "probability": 0.61614990234375}, {"start": 1228.36, "end": 1228.64, "word": " know", "probability": 0.8798828125}, {"start": 1228.64, "end": 1228.76, "word": " how", "probability": 0.9189453125}, {"start": 1228.76, "end": 1228.78, "word": " to", "probability": 0.96875}, {"start": 1228.78, "end": 1228.92, "word": " create", "probability": 0.7978515625}, {"start": 1228.92, "end": 1229.4, "word": " parameters,", "probability": 0.498779296875}, {"start": 1229.68, "end": 1229.7, "word": " so", "probability": 0.442626953125}, {"start": 1229.7, "end": 1230.16, "word": " I", "probability": 0.9140625}, {"start": 1230.16, "end": 1230.34, "word": " created", "probability": 0.415771484375}, {"start": 1230.34, "end": 1230.44, "word": " a", "probability": 0.91015625}, {"start": 1230.44, "end": 1230.58, "word": " way", "probability": 0.625}, {"start": 1230.58, "end": 1230.74, "word": " for", "probability": 0.40869140625}, {"start": 1230.74, "end": 1230.86, "word": " the", "probability": 0.822265625}, {"start": 1230.86, "end": 1231.06, "word": " builder", "probability": 0.9423828125}, {"start": 1231.06, "end": 1231.24, "word": " to", "probability": 0.93994140625}, {"start": 1231.24, "end": 1231.42, "word": " take", "probability": 0.52880859375}, {"start": 1231.42, "end": 1231.88, "word": " information", "probability": 0.260009765625}, {"start": 1231.88, "end": 1233.1, "word": " step", "probability": 0.61181640625}, {"start": 1233.1, "end": 1233.3, "word": " by", "probability": 0.92041015625}, {"start": 1233.3, "end": 1233.5, "word": " step", "probability": 0.9169921875}, {"start": 1233.5, "end": 1233.84, "word": " through", "probability": 0.71044921875}, {"start": 1233.84, "end": 1234.0, "word": " a", "probability": 0.37158203125}, {"start": 1234.0, "end": 1234.06, "word": " set", "probability": 0.60205078125}, {"start": 1234.06, "end": 1234.2, "word": " of", "probability": 0.93359375}, {"start": 1234.2, "end": 1235.38, "word": " methods.", "probability": 0.88623046875}, {"start": 1235.7, "end": 1236.1, "word": " After", "probability": 0.73193359375}, {"start": 1236.1, "end": 1236.64, "word": " the", "probability": 0.28857421875}, {"start": 1236.64, "end": 1236.94, "word": " information", "probability": 0.67529296875}, {"start": 1236.94, "end": 1237.12, "word": " is", "probability": 0.68505859375}, {"start": 1237.12, "end": 1237.12, "word": " completed,", "probability": 0.382080078125}, {"start": 1237.4, "end": 1237.44, "word": " it", "probability": 0.61767578125}, {"start": 1237.44, "end": 1237.58, "word": " goes", "probability": 0.87890625}, {"start": 1237.58, "end": 1237.7, "word": " to", "probability": 0.943359375}, {"start": 1237.7, "end": 1237.82, "word": " the", "probability": 0.8837890625}, {"start": 1237.82, "end": 1238.0, "word": " builder", "probability": 0.94677734375}], "temperature": 1.0}, {"id": 50, "seek": 126522, "start": 1239.08, "end": 1265.22, "text": " and I say create and inside create I make sure that the information is complete if it is complete I create it for the student for example here there is no problem it will create it but if there is important information I did not pass it like for example this faculty went here comment run here it shows the exception I say there is information missing you did not pass it here missing required", "tokens": [293, 286, 584, 1884, 293, 1854, 1884, 286, 652, 988, 300, 264, 1536, 687, 399, 307, 3566, 498, 309, 307, 3566, 286, 1884, 309, 337, 264, 3107, 337, 1365, 510, 456, 307, 572, 1154, 309, 486, 1884, 309, 457, 498, 456, 307, 1021, 1589, 286, 630, 406, 1320, 309, 411, 337, 1365, 341, 6389, 1437, 510, 2871, 1190, 510, 309, 3110, 264, 11183, 286, 584, 456, 307, 1589, 5361, 291, 630, 406, 1320, 309, 510, 5361, 4739], "avg_logprob": -0.5721153685679803, "compression_ratio": 2.0, "no_speech_prob": 3.2186508178710938e-06, "words": [{"start": 1239.08, "end": 1239.3, "word": " and", "probability": 0.388916015625}, {"start": 1239.3, "end": 1239.38, "word": " I", "probability": 0.51318359375}, {"start": 1239.38, "end": 1239.52, "word": " say", "probability": 0.32275390625}, {"start": 1239.52, "end": 1240.0, "word": " create", "probability": 0.73828125}, {"start": 1240.0, "end": 1240.14, "word": " and", "probability": 0.59716796875}, {"start": 1240.14, "end": 1240.42, "word": " inside", "probability": 0.1171875}, {"start": 1240.42, "end": 1241.16, "word": " create", "probability": 0.5576171875}, {"start": 1241.16, "end": 1241.36, "word": " I", "probability": 0.481201171875}, {"start": 1241.36, "end": 1241.46, "word": " make", "probability": 0.463134765625}, {"start": 1241.46, "end": 1241.76, "word": " sure", "probability": 0.93603515625}, {"start": 1241.76, "end": 1241.94, "word": " that", "probability": 0.64501953125}, {"start": 1241.94, "end": 1242.02, "word": " the", "probability": 0.63525390625}, {"start": 1242.02, "end": 1242.44, "word": " information", "probability": 0.7074381510416666}, {"start": 1242.44, "end": 1243.24, "word": " is", "probability": 0.86669921875}, {"start": 1243.24, "end": 1243.5, "word": " complete", "probability": 0.55615234375}, {"start": 1243.5, "end": 1243.78, "word": " if", "probability": 0.493408203125}, {"start": 1243.78, "end": 1243.88, "word": " it", "probability": 0.6318359375}, {"start": 1243.88, "end": 1243.88, "word": " is", "probability": 0.6787109375}, {"start": 1243.88, "end": 1244.16, "word": " complete", "probability": 0.83837890625}, {"start": 1244.16, "end": 1244.32, "word": " I", "probability": 0.49658203125}, {"start": 1244.32, "end": 1244.78, "word": " create", "probability": 0.314697265625}, {"start": 1244.78, "end": 1245.24, "word": " it", "probability": 0.319091796875}, {"start": 1245.24, "end": 1245.52, "word": " for", "probability": 0.7802734375}, {"start": 1245.52, "end": 1245.58, "word": " the", "probability": 0.53515625}, {"start": 1245.58, "end": 1245.84, "word": " student", "probability": 0.7763671875}, {"start": 1245.84, "end": 1246.4, "word": " for", "probability": 0.3623046875}, {"start": 1246.4, "end": 1246.7, "word": " example", "probability": 0.947265625}, {"start": 1246.7, "end": 1247.04, "word": " here", "probability": 0.6748046875}, {"start": 1247.04, "end": 1247.38, "word": " there", "probability": 0.327880859375}, {"start": 1247.38, "end": 1247.52, "word": " is", "probability": 0.89794921875}, {"start": 1247.52, "end": 1247.62, "word": " no", "probability": 0.9072265625}, {"start": 1247.62, "end": 1247.96, "word": " problem", "probability": 0.8515625}, {"start": 1247.96, "end": 1248.12, "word": " it", "probability": 0.1708984375}, {"start": 1248.12, "end": 1248.22, "word": " will", "probability": 0.75537109375}, {"start": 1248.22, "end": 1248.52, "word": " create", "probability": 0.61669921875}, {"start": 1248.52, "end": 1248.68, "word": " it", "probability": 0.479736328125}, {"start": 1248.68, "end": 1249.32, "word": " but", "probability": 0.60107421875}, {"start": 1249.32, "end": 1249.54, "word": " if", "probability": 0.9443359375}, {"start": 1249.54, "end": 1249.76, "word": " there", "probability": 0.86328125}, {"start": 1249.76, "end": 1249.76, "word": " is", "probability": 0.923828125}, {"start": 1249.76, "end": 1250.32, "word": " important", "probability": 0.60302734375}, {"start": 1250.32, "end": 1250.5, "word": " information", "probability": 0.7421875}, {"start": 1250.5, "end": 1252.2, "word": " I", "probability": 0.375244140625}, {"start": 1252.2, "end": 1252.3, "word": " did", "probability": 0.350830078125}, {"start": 1252.3, "end": 1252.3, "word": " not", "probability": 0.93994140625}, {"start": 1252.3, "end": 1252.54, "word": " pass", "probability": 0.480224609375}, {"start": 1252.54, "end": 1252.7, "word": " it", "probability": 0.87060546875}, {"start": 1252.7, "end": 1252.84, "word": " like", "probability": 0.36328125}, {"start": 1252.84, "end": 1253.06, "word": " for", "probability": 0.52783203125}, {"start": 1253.06, "end": 1253.26, "word": " example", "probability": 0.9599609375}, {"start": 1253.26, "end": 1253.46, "word": " this", "probability": 0.66650390625}, {"start": 1253.46, "end": 1253.92, "word": " faculty", "probability": 0.79296875}, {"start": 1253.92, "end": 1254.46, "word": " went", "probability": 0.1962890625}, {"start": 1254.46, "end": 1255.32, "word": " here", "probability": 0.413330078125}, {"start": 1255.32, "end": 1255.82, "word": " comment", "probability": 0.7802734375}, {"start": 1255.82, "end": 1259.66, "word": " run", "probability": 0.71630859375}, {"start": 1259.66, "end": 1259.88, "word": " here", "probability": 0.6552734375}, {"start": 1259.88, "end": 1259.98, "word": " it", "probability": 0.302978515625}, {"start": 1259.98, "end": 1260.12, "word": " shows", "probability": 0.10491943359375}, {"start": 1260.12, "end": 1260.24, "word": " the", "probability": 0.53076171875}, {"start": 1260.24, "end": 1260.62, "word": " exception", "probability": 0.90576171875}, {"start": 1260.62, "end": 1260.8, "word": " I", "probability": 0.364013671875}, {"start": 1260.8, "end": 1260.88, "word": " say", "probability": 0.78173828125}, {"start": 1260.88, "end": 1261.08, "word": " there", "probability": 0.57275390625}, {"start": 1261.08, "end": 1261.1, "word": " is", "probability": 0.83935546875}, {"start": 1261.1, "end": 1261.4, "word": " information", "probability": 0.29541015625}, {"start": 1261.4, "end": 1262.14, "word": " missing", "probability": 0.477783203125}, {"start": 1262.14, "end": 1262.76, "word": " you", "probability": 0.397705078125}, {"start": 1262.76, "end": 1263.92, "word": " did", "probability": 0.70947265625}, {"start": 1263.92, "end": 1264.0, "word": " not", "probability": 0.9453125}, {"start": 1264.0, "end": 1264.22, "word": " pass", "probability": 0.794921875}, {"start": 1264.22, "end": 1264.3, "word": " it", "probability": 0.7158203125}, {"start": 1264.3, "end": 1264.42, "word": " here", "probability": 0.5771484375}, {"start": 1264.42, "end": 1264.72, "word": " missing", "probability": 0.876953125}, {"start": 1264.72, "end": 1265.22, "word": " required", "probability": 0.77099609375}], "temperature": 1.0}, {"id": 51, "seek": 129799, "start": 1269.09, "end": 1297.99, "text": " Parameters. And this is the idea of builder pattern. Instead of using the constructor, we started using the setter methods to put the data and then tell it to create. This way, building objects became easier. Because tomorrow when you build your own library and build a class that needs a lot of information in this way, you can resort to using the builder to make it easier for people to build objects", "tokens": [34882, 6202, 13, 400, 341, 307, 264, 1558, 295, 27377, 5102, 13, 7156, 295, 1228, 264, 47479, 11, 321, 1409, 1228, 264, 992, 391, 7150, 281, 829, 264, 1412, 293, 550, 980, 309, 281, 1884, 13, 639, 636, 11, 2390, 6565, 3062, 3571, 13, 1436, 4153, 562, 291, 1322, 428, 1065, 6405, 293, 1322, 257, 1508, 300, 2203, 257, 688, 295, 1589, 294, 341, 636, 11, 291, 393, 19606, 281, 1228, 264, 27377, 281, 652, 309, 3571, 337, 561, 281, 1322, 6565], "avg_logprob": -0.5041415418486997, "compression_ratio": 1.7148936170212765, "no_speech_prob": 1.0013580322265625e-05, "words": [{"start": 1269.0900000000001, "end": 1269.65, "word": " Parameters.", "probability": 0.7039794921875}, {"start": 1269.99, "end": 1270.01, "word": " And", "probability": 0.55419921875}, {"start": 1270.01, "end": 1270.11, "word": " this", "probability": 0.63330078125}, {"start": 1270.11, "end": 1270.17, "word": " is", "probability": 0.76953125}, {"start": 1270.17, "end": 1270.21, "word": " the", "probability": 0.73291015625}, {"start": 1270.21, "end": 1270.37, "word": " idea", "probability": 0.6865234375}, {"start": 1270.37, "end": 1270.49, "word": " of", "probability": 0.62158203125}, {"start": 1270.49, "end": 1270.79, "word": " builder", "probability": 0.50537109375}, {"start": 1270.79, "end": 1271.15, "word": " pattern.", "probability": 0.6396484375}, {"start": 1271.47, "end": 1272.03, "word": " Instead", "probability": 0.34130859375}, {"start": 1272.03, "end": 1273.75, "word": " of", "probability": 0.962890625}, {"start": 1273.75, "end": 1274.27, "word": " using", "probability": 0.85498046875}, {"start": 1274.27, "end": 1274.55, "word": " the", "probability": 0.371826171875}, {"start": 1274.55, "end": 1275.87, "word": " constructor,", "probability": 0.7666015625}, {"start": 1276.35, "end": 1276.61, "word": " we", "probability": 0.7392578125}, {"start": 1276.61, "end": 1276.63, "word": " started", "probability": 0.219482421875}, {"start": 1276.63, "end": 1277.21, "word": " using", "probability": 0.82373046875}, {"start": 1277.21, "end": 1277.75, "word": " the", "probability": 0.456787109375}, {"start": 1277.75, "end": 1278.03, "word": " setter", "probability": 0.908203125}, {"start": 1278.03, "end": 1278.49, "word": " methods", "probability": 0.7119140625}, {"start": 1278.49, "end": 1279.39, "word": " to", "probability": 0.467529296875}, {"start": 1279.39, "end": 1279.73, "word": " put", "probability": 0.3828125}, {"start": 1279.73, "end": 1279.87, "word": " the", "probability": 0.556640625}, {"start": 1279.87, "end": 1280.09, "word": " data", "probability": 0.8134765625}, {"start": 1280.09, "end": 1280.31, "word": " and", "probability": 0.52001953125}, {"start": 1280.31, "end": 1280.45, "word": " then", "probability": 0.68310546875}, {"start": 1280.45, "end": 1280.77, "word": " tell", "probability": 0.17822265625}, {"start": 1280.77, "end": 1280.95, "word": " it", "probability": 0.69677734375}, {"start": 1280.95, "end": 1281.53, "word": " to", "probability": 0.810546875}, {"start": 1281.53, "end": 1281.81, "word": " create.", "probability": 0.904296875}, {"start": 1282.07, "end": 1282.35, "word": " This", "probability": 0.1864013671875}, {"start": 1282.35, "end": 1282.41, "word": " way,", "probability": 0.5234375}, {"start": 1282.53, "end": 1282.67, "word": " building", "probability": 0.32470703125}, {"start": 1282.67, "end": 1283.05, "word": " objects", "probability": 0.6611328125}, {"start": 1283.05, "end": 1283.43, "word": " became", "probability": 0.59912109375}, {"start": 1283.43, "end": 1284.21, "word": " easier.", "probability": 0.89208984375}, {"start": 1284.73, "end": 1284.93, "word": " Because", "probability": 0.70458984375}, {"start": 1284.93, "end": 1285.39, "word": " tomorrow", "probability": 0.309814453125}, {"start": 1285.39, "end": 1285.59, "word": " when", "probability": 0.48046875}, {"start": 1285.59, "end": 1285.73, "word": " you", "probability": 0.95654296875}, {"start": 1285.73, "end": 1285.87, "word": " build", "probability": 0.44775390625}, {"start": 1285.87, "end": 1285.99, "word": " your", "probability": 0.5322265625}, {"start": 1285.99, "end": 1286.65, "word": " own", "probability": 0.798828125}, {"start": 1286.65, "end": 1286.65, "word": " library", "probability": 0.66943359375}, {"start": 1286.65, "end": 1287.81, "word": " and", "probability": 0.6220703125}, {"start": 1287.81, "end": 1288.07, "word": " build", "probability": 0.36669921875}, {"start": 1288.07, "end": 1288.21, "word": " a", "probability": 0.74853515625}, {"start": 1288.21, "end": 1288.61, "word": " class", "probability": 0.966796875}, {"start": 1288.61, "end": 1289.37, "word": " that", "probability": 0.6103515625}, {"start": 1289.37, "end": 1289.69, "word": " needs", "probability": 0.51171875}, {"start": 1289.69, "end": 1289.85, "word": " a", "probability": 0.77294921875}, {"start": 1289.85, "end": 1289.85, "word": " lot", "probability": 0.95849609375}, {"start": 1289.85, "end": 1289.85, "word": " of", "probability": 0.9677734375}, {"start": 1289.85, "end": 1290.23, "word": " information", "probability": 0.5087890625}, {"start": 1290.23, "end": 1291.93, "word": " in", "probability": 0.245849609375}, {"start": 1291.93, "end": 1291.99, "word": " this", "probability": 0.84912109375}, {"start": 1291.99, "end": 1292.51, "word": " way,", "probability": 0.79736328125}, {"start": 1292.73, "end": 1292.75, "word": " you", "probability": 0.86962890625}, {"start": 1292.75, "end": 1292.95, "word": " can", "probability": 0.8974609375}, {"start": 1292.95, "end": 1293.27, "word": " resort", "probability": 0.51220703125}, {"start": 1293.27, "end": 1293.39, "word": " to", "probability": 0.96826171875}, {"start": 1293.39, "end": 1293.85, "word": " using", "probability": 0.427734375}, {"start": 1293.85, "end": 1294.69, "word": " the", "probability": 0.52587890625}, {"start": 1294.69, "end": 1294.95, "word": " builder", "probability": 0.9462890625}, {"start": 1294.95, "end": 1295.21, "word": " to", "probability": 0.67626953125}, {"start": 1295.21, "end": 1295.39, "word": " make", "probability": 0.69580078125}, {"start": 1295.39, "end": 1295.39, "word": " it", "probability": 0.88134765625}, {"start": 1295.39, "end": 1295.75, "word": " easier", "probability": 0.92236328125}, {"start": 1295.75, "end": 1295.85, "word": " for", "probability": 0.8583984375}, {"start": 1295.85, "end": 1296.35, "word": " people", "probability": 0.89990234375}, {"start": 1296.35, "end": 1297.13, "word": " to", "probability": 0.96630859375}, {"start": 1297.13, "end": 1297.39, "word": " build", "probability": 0.51806640625}, {"start": 1297.39, "end": 1297.99, "word": " objects", "probability": 0.8134765625}], "temperature": 1.0}, {"id": 52, "seek": 132062, "start": 1298.78, "end": 1320.62, "text": " especially in your office. By the way, Builder is used in many places. For example, because I program Android, Builder is used in Android a lot. Let me give you an example. For example, in Android, there is something we call notification. Do you know notification? Notifications that come. Did you see how notification is created in Android? There is a class called", "tokens": [2318, 294, 428, 3398, 13, 3146, 264, 636, 11, 11875, 260, 307, 1143, 294, 867, 3190, 13, 1171, 1365, 11, 570, 286, 1461, 8853, 11, 11875, 260, 307, 1143, 294, 8853, 257, 688, 13, 961, 385, 976, 291, 364, 1365, 13, 1171, 1365, 11, 294, 8853, 11, 456, 307, 746, 321, 818, 11554, 13, 1144, 291, 458, 11554, 30, 1726, 7833, 300, 808, 13, 2589, 291, 536, 577, 11554, 307, 2942, 294, 8853, 30, 821, 307, 257, 1508, 1219], "avg_logprob": -0.4558593764901161, "compression_ratio": 1.7941176470588236, "no_speech_prob": 3.5822391510009766e-05, "words": [{"start": 1298.78, "end": 1299.1, "word": " especially", "probability": 0.1373291015625}, {"start": 1299.1, "end": 1299.22, "word": " in", "probability": 0.6826171875}, {"start": 1299.22, "end": 1299.28, "word": " your", "probability": 0.7880859375}, {"start": 1299.28, "end": 1299.54, "word": " office.", "probability": 0.3017578125}, {"start": 1300.22, "end": 1300.54, "word": " By", "probability": 0.416259765625}, {"start": 1300.54, "end": 1300.74, "word": " the", "probability": 0.93310546875}, {"start": 1300.74, "end": 1300.82, "word": " way,", "probability": 0.9609375}, {"start": 1300.9, "end": 1301.22, "word": " Builder", "probability": 0.6256103515625}, {"start": 1301.22, "end": 1301.3, "word": " is", "probability": 0.79052734375}, {"start": 1301.3, "end": 1301.64, "word": " used", "probability": 0.83251953125}, {"start": 1301.64, "end": 1301.84, "word": " in", "probability": 0.828125}, {"start": 1301.84, "end": 1302.48, "word": " many", "probability": 0.72607421875}, {"start": 1302.48, "end": 1304.2, "word": " places.", "probability": 0.5498046875}, {"start": 1304.82, "end": 1305.28, "word": " For", "probability": 0.7001953125}, {"start": 1305.28, "end": 1305.84, "word": " example,", "probability": 0.93359375}, {"start": 1305.92, "end": 1306.14, "word": " because", "probability": 0.271484375}, {"start": 1306.14, "end": 1306.4, "word": " I", "probability": 0.98046875}, {"start": 1306.4, "end": 1306.64, "word": " program", "probability": 0.26220703125}, {"start": 1306.64, "end": 1307.24, "word": " Android,", "probability": 0.51953125}, {"start": 1307.54, "end": 1308.52, "word": " Builder", "probability": 0.75390625}, {"start": 1308.52, "end": 1308.6, "word": " is", "probability": 0.916015625}, {"start": 1308.6, "end": 1308.9, "word": " used", "probability": 0.65966796875}, {"start": 1308.9, "end": 1309.56, "word": " in", "probability": 0.63134765625}, {"start": 1309.56, "end": 1310.0, "word": " Android", "probability": 0.91845703125}, {"start": 1310.0, "end": 1310.0, "word": " a", "probability": 0.386962890625}, {"start": 1310.0, "end": 1310.0, "word": " lot.", "probability": 0.953125}, {"start": 1310.1, "end": 1310.16, "word": " Let", "probability": 0.156005859375}, {"start": 1310.16, "end": 1310.16, "word": " me", "probability": 0.85400390625}, {"start": 1310.16, "end": 1310.26, "word": " give", "probability": 0.154296875}, {"start": 1310.26, "end": 1310.36, "word": " you", "probability": 0.91748046875}, {"start": 1310.36, "end": 1310.46, "word": " an", "probability": 0.78857421875}, {"start": 1310.46, "end": 1310.64, "word": " example.", "probability": 0.97314453125}, {"start": 1311.74, "end": 1311.98, "word": " For", "probability": 0.7490234375}, {"start": 1311.98, "end": 1312.18, "word": " example,", "probability": 0.92431640625}, {"start": 1312.34, "end": 1312.34, "word": " in", "probability": 0.642578125}, {"start": 1312.34, "end": 1312.7, "word": " Android,", "probability": 0.9755859375}, {"start": 1312.82, "end": 1312.9, "word": " there", "probability": 0.83935546875}, {"start": 1312.9, "end": 1312.94, "word": " is", "probability": 0.7685546875}, {"start": 1312.94, "end": 1313.14, "word": " something", "probability": 0.6201171875}, {"start": 1313.14, "end": 1313.28, "word": " we", "probability": 0.35986328125}, {"start": 1313.28, "end": 1313.64, "word": " call", "probability": 0.884765625}, {"start": 1313.64, "end": 1314.08, "word": " notification.", "probability": 0.51318359375}, {"start": 1314.74, "end": 1314.96, "word": " Do", "probability": 0.5517578125}, {"start": 1314.96, "end": 1314.96, "word": " you", "probability": 0.9541015625}, {"start": 1314.96, "end": 1315.08, "word": " know", "probability": 0.8720703125}, {"start": 1315.08, "end": 1315.58, "word": " notification?", "probability": 0.48974609375}, {"start": 1315.82, "end": 1316.0, "word": " Notifications", "probability": 0.627197265625}, {"start": 1316.0, "end": 1316.78, "word": " that", "probability": 0.483154296875}, {"start": 1316.78, "end": 1317.04, "word": " come.", "probability": 0.48046875}, {"start": 1317.26, "end": 1317.62, "word": " Did", "probability": 0.55029296875}, {"start": 1317.62, "end": 1317.76, "word": " you", "probability": 0.96630859375}, {"start": 1317.76, "end": 1317.76, "word": " see", "probability": 0.2142333984375}, {"start": 1317.76, "end": 1317.88, "word": " how", "probability": 0.8076171875}, {"start": 1317.88, "end": 1318.26, "word": " notification", "probability": 0.5615234375}, {"start": 1318.26, "end": 1318.6, "word": " is", "probability": 0.6416015625}, {"start": 1318.6, "end": 1318.86, "word": " created", "probability": 0.55908203125}, {"start": 1318.86, "end": 1319.0, "word": " in", "probability": 0.89404296875}, {"start": 1319.0, "end": 1319.4, "word": " Android?", "probability": 0.97509765625}, {"start": 1319.72, "end": 1319.9, "word": " There", "probability": 0.79345703125}, {"start": 1319.9, "end": 1319.96, "word": " is", "probability": 0.88232421875}, {"start": 1319.96, "end": 1320.04, "word": " a", "probability": 0.97021484375}, {"start": 1320.04, "end": 1320.34, "word": " class", "probability": 0.96826171875}, {"start": 1320.34, "end": 1320.62, "word": " called", "probability": 0.6796875}], "temperature": 1.0}, {"id": 53, "seek": 134527, "start": 1321.91, "end": 1345.27, "text": "Notification, but this class of notification has a constructor that takes a lot of parameters. For example, what is the title of the notification, the text of the notification, the icon, does the sound come with it or not, and what is the sound that comes with it, is there a vibration in the phone or not, what is the background color, the color of the line and the color of the title, what are the settings", "tokens": [15208, 3774, 11, 457, 341, 1508, 295, 11554, 575, 257, 47479, 300, 2516, 257, 688, 295, 9834, 13, 1171, 1365, 11, 437, 307, 264, 4876, 295, 264, 11554, 11, 264, 2487, 295, 264, 11554, 11, 264, 6528, 11, 775, 264, 1626, 808, 365, 309, 420, 406, 11, 293, 437, 307, 264, 1626, 300, 1487, 365, 309, 11, 307, 456, 257, 20006, 294, 264, 2593, 420, 406, 11, 437, 307, 264, 3678, 2017, 11, 264, 2017, 295, 264, 1622, 293, 264, 2017, 295, 264, 4876, 11, 437, 366, 264, 6257], "avg_logprob": -0.3815972122881148, "compression_ratio": 2.050251256281407, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 1321.9099999999999, "end": 1322.35, "word": "Notification,", "probability": 0.622802734375}, {"start": 1322.89, "end": 1323.11, "word": " but", "probability": 0.7353515625}, {"start": 1323.11, "end": 1323.35, "word": " this", "probability": 0.80859375}, {"start": 1323.35, "end": 1323.67, "word": " class", "probability": 0.70458984375}, {"start": 1323.67, "end": 1323.77, "word": " of", "probability": 0.35009765625}, {"start": 1323.77, "end": 1324.15, "word": " notification", "probability": 0.7919921875}, {"start": 1324.15, "end": 1324.51, "word": " has", "probability": 0.7568359375}, {"start": 1324.51, "end": 1324.65, "word": " a", "probability": 0.71044921875}, {"start": 1324.65, "end": 1325.11, "word": " constructor", "probability": 0.7890625}, {"start": 1325.11, "end": 1325.29, "word": " that", "probability": 0.6611328125}, {"start": 1325.29, "end": 1325.45, "word": " takes", "probability": 0.68896484375}, {"start": 1325.45, "end": 1325.53, "word": " a", "probability": 0.34423828125}, {"start": 1325.53, "end": 1325.53, "word": " lot", "probability": 0.94580078125}, {"start": 1325.53, "end": 1325.53, "word": " of", "probability": 0.95703125}, {"start": 1325.53, "end": 1326.17, "word": " parameters.", "probability": 0.962890625}, {"start": 1327.01, "end": 1327.23, "word": " For", "probability": 0.263427734375}, {"start": 1327.23, "end": 1327.71, "word": " example,", "probability": 0.9375}, {"start": 1327.87, "end": 1328.13, "word": " what", "probability": 0.48974609375}, {"start": 1328.13, "end": 1328.13, "word": " is", "probability": 0.8310546875}, {"start": 1328.13, "end": 1328.13, "word": " the", "probability": 0.84716796875}, {"start": 1328.13, "end": 1328.35, "word": " title", "probability": 0.68115234375}, {"start": 1328.35, "end": 1328.53, "word": " of", "probability": 0.92529296875}, {"start": 1328.53, "end": 1328.57, "word": " the", "probability": 0.84423828125}, {"start": 1328.57, "end": 1329.13, "word": " notification,", "probability": 0.8671875}, {"start": 1329.43, "end": 1329.47, "word": " the", "probability": 0.5732421875}, {"start": 1329.47, "end": 1329.71, "word": " text", "probability": 0.389892578125}, {"start": 1329.71, "end": 1329.85, "word": " of", "probability": 0.66552734375}, {"start": 1329.85, "end": 1329.93, "word": " the", "probability": 0.89892578125}, {"start": 1329.93, "end": 1330.51, "word": " notification,", "probability": 0.9345703125}, {"start": 1331.21, "end": 1331.43, "word": " the", "probability": 0.78857421875}, {"start": 1331.43, "end": 1332.69, "word": " icon,", "probability": 0.849609375}, {"start": 1334.09, "end": 1334.09, "word": " does", "probability": 0.46240234375}, {"start": 1334.09, "end": 1334.97, "word": " the", "probability": 0.407958984375}, {"start": 1334.97, "end": 1334.97, "word": " sound", "probability": 0.51806640625}, {"start": 1334.97, "end": 1335.13, "word": " come", "probability": 0.765625}, {"start": 1335.13, "end": 1335.25, "word": " with", "probability": 0.81494140625}, {"start": 1335.25, "end": 1335.39, "word": " it", "probability": 0.9130859375}, {"start": 1335.39, "end": 1335.77, "word": " or", "probability": 0.767578125}, {"start": 1335.77, "end": 1335.93, "word": " not,", "probability": 0.9306640625}, {"start": 1336.35, "end": 1336.39, "word": " and", "probability": 0.58544921875}, {"start": 1336.39, "end": 1336.53, "word": " what", "probability": 0.8798828125}, {"start": 1336.53, "end": 1336.57, "word": " is", "probability": 0.796875}, {"start": 1336.57, "end": 1336.67, "word": " the", "probability": 0.89404296875}, {"start": 1336.67, "end": 1336.89, "word": " sound", "probability": 0.8134765625}, {"start": 1336.89, "end": 1337.03, "word": " that", "probability": 0.8154296875}, {"start": 1337.03, "end": 1337.19, "word": " comes", "probability": 0.841796875}, {"start": 1337.19, "end": 1337.33, "word": " with", "probability": 0.88671875}, {"start": 1337.33, "end": 1337.49, "word": " it,", "probability": 0.9365234375}, {"start": 1337.59, "end": 1337.69, "word": " is", "probability": 0.38916015625}, {"start": 1337.69, "end": 1337.99, "word": " there", "probability": 0.87841796875}, {"start": 1337.99, "end": 1338.23, "word": " a", "probability": 0.27685546875}, {"start": 1338.23, "end": 1338.57, "word": " vibration", "probability": 0.720703125}, {"start": 1338.57, "end": 1338.81, "word": " in", "probability": 0.63671875}, {"start": 1338.81, "end": 1338.93, "word": " the", "probability": 0.916015625}, {"start": 1338.93, "end": 1339.31, "word": " phone", "probability": 0.6396484375}, {"start": 1339.31, "end": 1340.01, "word": " or", "probability": 0.7705078125}, {"start": 1340.01, "end": 1340.21, "word": " not,", "probability": 0.9326171875}, {"start": 1340.59, "end": 1340.73, "word": " what", "probability": 0.8603515625}, {"start": 1340.73, "end": 1340.83, "word": " is", "probability": 0.85986328125}, {"start": 1340.83, "end": 1340.89, "word": " the", "probability": 0.92041015625}, {"start": 1340.89, "end": 1341.87, "word": " background", "probability": 0.7412109375}, {"start": 1341.87, "end": 1342.03, "word": " color,", "probability": 0.85791015625}, {"start": 1342.29, "end": 1342.39, "word": " the", "probability": 0.28271484375}, {"start": 1342.39, "end": 1342.39, "word": " color", "probability": 0.54248046875}, {"start": 1342.39, "end": 1342.55, "word": " of", "probability": 0.96484375}, {"start": 1342.55, "end": 1342.59, "word": " the", "probability": 0.9072265625}, {"start": 1342.59, "end": 1342.81, "word": " line", "probability": 0.86572265625}, {"start": 1342.81, "end": 1342.97, "word": " and", "probability": 0.50439453125}, {"start": 1342.97, "end": 1343.11, "word": " the", "probability": 0.7802734375}, {"start": 1343.11, "end": 1343.11, "word": " color", "probability": 0.79345703125}, {"start": 1343.11, "end": 1343.31, "word": " of", "probability": 0.9677734375}, {"start": 1343.31, "end": 1343.67, "word": " the", "probability": 0.56298828125}, {"start": 1343.67, "end": 1344.05, "word": " title,", "probability": 0.94677734375}, {"start": 1344.51, "end": 1344.93, "word": " what", "probability": 0.7177734375}, {"start": 1344.93, "end": 1344.97, "word": " are", "probability": 0.460205078125}, {"start": 1344.97, "end": 1344.97, "word": " the", "probability": 0.92431640625}, {"start": 1344.97, "end": 1345.27, "word": " settings", "probability": 0.79833984375}], "temperature": 1.0}, {"id": 54, "seek": 137504, "start": 1346.66, "end": 1375.04, "text": " and what will happen when I click on it will there be an action in the notification or not all these settings will be sent to the notification constructor so the one who designed the android library said that if the normal user asks for all this information it will be difficult to create it so what did he say? he said that we create a builder for the notification so for example in android in order to create a notification you must first say notification", "tokens": [293, 437, 486, 1051, 562, 286, 2052, 322, 309, 486, 456, 312, 364, 3069, 294, 264, 11554, 420, 406, 439, 613, 6257, 486, 312, 2279, 281, 264, 11554, 47479, 370, 264, 472, 567, 4761, 264, 36157, 6405, 848, 300, 498, 264, 2710, 4195, 8962, 337, 439, 341, 1589, 309, 486, 312, 2252, 281, 1884, 309, 370, 437, 630, 415, 584, 30, 415, 848, 300, 321, 1884, 257, 27377, 337, 264, 11554, 370, 337, 1365, 294, 36157, 294, 1668, 281, 1884, 257, 11554, 291, 1633, 700, 584, 11554], "avg_logprob": -0.5546875115145337, "compression_ratio": 2.008771929824561, "no_speech_prob": 1.4543533325195312e-05, "words": [{"start": 1346.6599999999999, "end": 1347.1, "word": " and", "probability": 0.2083740234375}, {"start": 1347.1, "end": 1347.26, "word": " what", "probability": 0.494873046875}, {"start": 1347.26, "end": 1347.38, "word": " will", "probability": 0.2113037109375}, {"start": 1347.38, "end": 1347.66, "word": " happen", "probability": 0.859375}, {"start": 1347.66, "end": 1347.94, "word": " when", "probability": 0.197021484375}, {"start": 1347.94, "end": 1348.86, "word": " I", "probability": 0.466064453125}, {"start": 1348.86, "end": 1349.08, "word": " click", "probability": 0.32666015625}, {"start": 1349.08, "end": 1349.42, "word": " on", "probability": 0.7080078125}, {"start": 1349.42, "end": 1349.42, "word": " it", "probability": 0.389892578125}, {"start": 1349.42, "end": 1349.98, "word": " will", "probability": 0.23486328125}, {"start": 1349.98, "end": 1350.22, "word": " there", "probability": 0.4658203125}, {"start": 1350.22, "end": 1350.32, "word": " be", "probability": 0.91650390625}, {"start": 1350.32, "end": 1350.46, "word": " an", "probability": 0.181884765625}, {"start": 1350.46, "end": 1350.56, "word": " action", "probability": 0.92431640625}, {"start": 1350.56, "end": 1350.66, "word": " in", "probability": 0.52490234375}, {"start": 1350.66, "end": 1350.72, "word": " the", "probability": 0.69873046875}, {"start": 1350.72, "end": 1351.18, "word": " notification", "probability": 0.900390625}, {"start": 1351.18, "end": 1351.92, "word": " or", "probability": 0.630859375}, {"start": 1351.92, "end": 1352.06, "word": " not", "probability": 0.89794921875}, {"start": 1352.06, "end": 1352.3, "word": " all", "probability": 0.416015625}, {"start": 1352.3, "end": 1352.5, "word": " these", "probability": 0.5634765625}, {"start": 1352.5, "end": 1352.86, "word": " settings", "probability": 0.45263671875}, {"start": 1352.86, "end": 1353.4, "word": " will", "probability": 0.55859375}, {"start": 1353.4, "end": 1353.56, "word": " be", "probability": 0.8212890625}, {"start": 1353.56, "end": 1353.8, "word": " sent", "probability": 0.51904296875}, {"start": 1353.8, "end": 1354.04, "word": " to", "probability": 0.95947265625}, {"start": 1354.04, "end": 1354.2, "word": " the", "probability": 0.85107421875}, {"start": 1354.2, "end": 1354.44, "word": " notification", "probability": 0.8359375}, {"start": 1354.44, "end": 1356.32, "word": " constructor", "probability": 0.845703125}, {"start": 1356.32, "end": 1357.1, "word": " so", "probability": 0.46240234375}, {"start": 1357.1, "end": 1357.24, "word": " the", "probability": 0.358154296875}, {"start": 1357.24, "end": 1357.24, "word": " one", "probability": 0.455322265625}, {"start": 1357.24, "end": 1357.36, "word": " who", "probability": 0.8251953125}, {"start": 1357.36, "end": 1357.52, "word": " designed", "probability": 0.78271484375}, {"start": 1357.52, "end": 1357.7, "word": " the", "probability": 0.55908203125}, {"start": 1357.7, "end": 1358.34, "word": " android", "probability": 0.560546875}, {"start": 1358.34, "end": 1358.38, "word": " library", "probability": 0.262451171875}, {"start": 1358.38, "end": 1358.56, "word": " said", "probability": 0.5634765625}, {"start": 1358.56, "end": 1358.84, "word": " that", "probability": 0.245849609375}, {"start": 1358.84, "end": 1359.28, "word": " if", "probability": 0.62158203125}, {"start": 1359.28, "end": 1360.62, "word": " the", "probability": 0.54638671875}, {"start": 1360.62, "end": 1361.34, "word": " normal", "probability": 0.322509765625}, {"start": 1361.34, "end": 1361.36, "word": " user", "probability": 0.94287109375}, {"start": 1361.36, "end": 1362.22, "word": " asks", "probability": 0.377197265625}, {"start": 1362.22, "end": 1362.6, "word": " for", "probability": 0.546875}, {"start": 1362.6, "end": 1362.78, "word": " all", "probability": 0.875}, {"start": 1362.78, "end": 1362.86, "word": " this", "probability": 0.427978515625}, {"start": 1362.86, "end": 1363.48, "word": " information", "probability": 0.63671875}, {"start": 1363.48, "end": 1364.84, "word": " it", "probability": 0.5849609375}, {"start": 1364.84, "end": 1364.98, "word": " will", "probability": 0.67724609375}, {"start": 1364.98, "end": 1365.04, "word": " be", "probability": 0.87939453125}, {"start": 1365.04, "end": 1365.36, "word": " difficult", "probability": 0.64208984375}, {"start": 1365.36, "end": 1366.06, "word": " to", "probability": 0.7119140625}, {"start": 1366.06, "end": 1366.26, "word": " create", "probability": 0.46728515625}, {"start": 1366.26, "end": 1366.48, "word": " it", "probability": 0.6357421875}, {"start": 1366.48, "end": 1366.86, "word": " so", "probability": 0.5888671875}, {"start": 1366.86, "end": 1367.06, "word": " what", "probability": 0.6416015625}, {"start": 1367.06, "end": 1367.06, "word": " did", "probability": 0.88330078125}, {"start": 1367.06, "end": 1367.1, "word": " he", "probability": 0.912109375}, {"start": 1367.1, "end": 1367.28, "word": " say?", "probability": 0.78515625}, {"start": 1367.38, "end": 1367.44, "word": " he", "probability": 0.703125}, {"start": 1367.44, "end": 1367.54, "word": " said", "probability": 0.90576171875}, {"start": 1367.54, "end": 1367.74, "word": " that", "probability": 0.59033203125}, {"start": 1367.74, "end": 1367.98, "word": " we", "probability": 0.54296875}, {"start": 1367.98, "end": 1368.3, "word": " create", "probability": 0.1966552734375}, {"start": 1368.3, "end": 1368.42, "word": " a", "probability": 0.81591796875}, {"start": 1368.42, "end": 1368.8, "word": " builder", "probability": 0.8818359375}, {"start": 1368.8, "end": 1369.82, "word": " for", "probability": 0.85986328125}, {"start": 1369.82, "end": 1369.9, "word": " the", "probability": 0.51513671875}, {"start": 1369.9, "end": 1370.42, "word": " notification", "probability": 0.8984375}, {"start": 1370.42, "end": 1370.96, "word": " so", "probability": 0.5947265625}, {"start": 1370.96, "end": 1371.14, "word": " for", "probability": 0.343017578125}, {"start": 1371.14, "end": 1371.58, "word": " example", "probability": 0.9013671875}, {"start": 1371.58, "end": 1371.7, "word": " in", "probability": 0.60205078125}, {"start": 1371.7, "end": 1372.04, "word": " android", "probability": 0.57080078125}, {"start": 1372.04, "end": 1372.22, "word": " in", "probability": 0.236083984375}, {"start": 1372.22, "end": 1372.22, "word": " order", "probability": 0.8984375}, {"start": 1372.22, "end": 1372.44, "word": " to", "probability": 0.95751953125}, {"start": 1372.44, "end": 1372.6, "word": " create", "probability": 0.81494140625}, {"start": 1372.6, "end": 1372.7, "word": " a", "probability": 0.62548828125}, {"start": 1372.7, "end": 1373.28, "word": " notification", "probability": 0.9658203125}, {"start": 1373.28, "end": 1373.78, "word": " you", "probability": 0.3935546875}, {"start": 1373.78, "end": 1374.0, "word": " must", "probability": 0.350830078125}, {"start": 1374.0, "end": 1374.36, "word": " first", "probability": 0.66162109375}, {"start": 1374.36, "end": 1374.58, "word": " say", "probability": 0.51611328125}, {"start": 1374.58, "end": 1375.04, "word": " notification", "probability": 0.8916015625}], "temperature": 1.0}, {"id": 55, "seek": 140217, "start": 1376.29, "end": 1402.17, "text": " Either in Java or Kotlin Notification.builder Creates a builder, B for example, equals new Notification.builder Then in this builder, you say B dot And it gives you what? Setter methods For example, setTitle It gives me the title of the notification B dot setIcon", "tokens": [13746, 294, 10745, 420, 30123, 5045, 1726, 3774, 13, 11516, 260, 11972, 279, 257, 27377, 11, 363, 337, 1365, 11, 6915, 777, 1726, 3774, 13, 11516, 260, 1396, 294, 341, 27377, 11, 291, 584, 363, 5893, 400, 309, 2709, 291, 437, 30, 8928, 391, 7150, 1171, 1365, 11, 992, 51, 270, 306, 467, 2709, 385, 264, 4876, 295, 264, 11554, 363, 5893, 992, 40, 1671], "avg_logprob": -0.4732480916109952, "compression_ratio": 1.6, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1376.29, "end": 1376.61, "word": " Either", "probability": 0.0826416015625}, {"start": 1376.61, "end": 1376.83, "word": " in", "probability": 0.494384765625}, {"start": 1376.83, "end": 1377.11, "word": " Java", "probability": 0.6552734375}, {"start": 1377.11, "end": 1377.29, "word": " or", "probability": 0.94287109375}, {"start": 1377.29, "end": 1377.79, "word": " Kotlin", "probability": 0.87744140625}, {"start": 1377.79, "end": 1379.05, "word": " Notification", "probability": 0.78759765625}, {"start": 1379.05, "end": 1379.75, "word": ".builder", "probability": 0.77783203125}, {"start": 1379.75, "end": 1382.23, "word": " Creates", "probability": 0.579833984375}, {"start": 1382.23, "end": 1382.33, "word": " a", "probability": 0.6142578125}, {"start": 1382.33, "end": 1382.65, "word": " builder,", "probability": 0.8681640625}, {"start": 1383.05, "end": 1383.21, "word": " B", "probability": 0.166259765625}, {"start": 1383.21, "end": 1383.43, "word": " for", "probability": 0.55078125}, {"start": 1383.43, "end": 1383.63, "word": " example,", "probability": 0.92333984375}, {"start": 1383.69, "end": 1384.07, "word": " equals", "probability": 0.279541015625}, {"start": 1384.07, "end": 1384.53, "word": " new", "probability": 0.662109375}, {"start": 1384.53, "end": 1385.87, "word": " Notification", "probability": 0.760009765625}, {"start": 1385.87, "end": 1386.53, "word": ".builder", "probability": 0.9324544270833334}, {"start": 1386.53, "end": 1387.73, "word": " Then", "probability": 0.66796875}, {"start": 1387.73, "end": 1387.89, "word": " in", "probability": 0.3740234375}, {"start": 1387.89, "end": 1388.03, "word": " this", "probability": 0.87060546875}, {"start": 1388.03, "end": 1388.35, "word": " builder,", "probability": 0.923828125}, {"start": 1388.75, "end": 1388.85, "word": " you", "probability": 0.6572265625}, {"start": 1388.85, "end": 1389.01, "word": " say", "probability": 0.4296875}, {"start": 1389.01, "end": 1389.37, "word": " B", "probability": 0.83251953125}, {"start": 1389.37, "end": 1389.83, "word": " dot", "probability": 0.57861328125}, {"start": 1389.83, "end": 1390.57, "word": " And", "probability": 0.185302734375}, {"start": 1390.57, "end": 1390.69, "word": " it", "probability": 0.455810546875}, {"start": 1390.69, "end": 1390.89, "word": " gives", "probability": 0.452880859375}, {"start": 1390.89, "end": 1391.13, "word": " you", "probability": 0.8955078125}, {"start": 1391.13, "end": 1391.43, "word": " what?", "probability": 0.50146484375}, {"start": 1392.49, "end": 1392.95, "word": " Setter", "probability": 0.76513671875}, {"start": 1392.95, "end": 1393.29, "word": " methods", "probability": 0.6435546875}, {"start": 1393.29, "end": 1393.91, "word": " For", "probability": 0.7060546875}, {"start": 1393.91, "end": 1394.11, "word": " example,", "probability": 0.94384765625}, {"start": 1394.27, "end": 1395.41, "word": " setTitle", "probability": 0.76019287109375}, {"start": 1395.41, "end": 1397.57, "word": " It", "probability": 0.306396484375}, {"start": 1397.57, "end": 1397.79, "word": " gives", "probability": 0.828125}, {"start": 1397.79, "end": 1397.95, "word": " me", "probability": 0.458740234375}, {"start": 1397.95, "end": 1397.97, "word": " the", "probability": 0.8232421875}, {"start": 1397.97, "end": 1398.15, "word": " title", "probability": 0.33984375}, {"start": 1398.15, "end": 1398.33, "word": " of", "probability": 0.876953125}, {"start": 1398.33, "end": 1398.37, "word": " the", "probability": 0.75146484375}, {"start": 1398.37, "end": 1398.91, "word": " notification", "probability": 0.96240234375}, {"start": 1398.91, "end": 1399.87, "word": " B", "probability": 0.94970703125}, {"start": 1399.87, "end": 1400.31, "word": " dot", "probability": 0.87060546875}, {"start": 1400.31, "end": 1402.17, "word": " setIcon", "probability": 0.7152506510416666}], "temperature": 1.0}, {"id": 56, "seek": 142410, "start": 1403.02, "end": 1424.1, "text": " You give it an icon, B dot set background color, B dot this and that. In the end, to create a notification, you say B dot build or create. What does this return? The notification. Because if there is an important information that you did not pass through, this build will give you an exception.", "tokens": [509, 976, 309, 364, 6528, 11, 363, 5893, 992, 3678, 2017, 11, 363, 5893, 341, 293, 300, 13, 682, 264, 917, 11, 281, 1884, 257, 11554, 11, 291, 584, 363, 5893, 1322, 420, 1884, 13, 708, 775, 341, 2736, 30, 440, 11554, 13, 1436, 498, 456, 307, 364, 1021, 1589, 300, 291, 630, 406, 1320, 807, 11, 341, 1322, 486, 976, 291, 364, 11183, 13], "avg_logprob": -0.4933712157336148, "compression_ratio": 1.5775401069518717, "no_speech_prob": 2.2113323211669922e-05, "words": [{"start": 1403.02, "end": 1403.24, "word": " You", "probability": 0.0968017578125}, {"start": 1403.24, "end": 1403.44, "word": " give", "probability": 0.591796875}, {"start": 1403.44, "end": 1403.56, "word": " it", "probability": 0.5}, {"start": 1403.56, "end": 1403.66, "word": " an", "probability": 0.5703125}, {"start": 1403.66, "end": 1403.96, "word": " icon,", "probability": 0.90625}, {"start": 1404.16, "end": 1404.4, "word": " B", "probability": 0.36962890625}, {"start": 1404.4, "end": 1404.84, "word": " dot", "probability": 0.30224609375}, {"start": 1404.84, "end": 1405.64, "word": " set", "probability": 0.25732421875}, {"start": 1405.64, "end": 1405.9, "word": " background", "probability": 0.56884765625}, {"start": 1405.9, "end": 1406.58, "word": " color,", "probability": 0.771484375}, {"start": 1407.48, "end": 1408.06, "word": " B", "probability": 0.9228515625}, {"start": 1408.06, "end": 1408.52, "word": " dot", "probability": 0.96435546875}, {"start": 1408.52, "end": 1408.92, "word": " this", "probability": 0.242431640625}, {"start": 1408.92, "end": 1409.04, "word": " and", "probability": 0.732421875}, {"start": 1409.04, "end": 1409.2, "word": " that.", "probability": 0.79345703125}, {"start": 1409.72, "end": 1409.9, "word": " In", "probability": 0.580078125}, {"start": 1409.9, "end": 1410.0, "word": " the", "probability": 0.432373046875}, {"start": 1410.0, "end": 1410.18, "word": " end,", "probability": 0.90576171875}, {"start": 1410.28, "end": 1410.46, "word": " to", "probability": 0.576171875}, {"start": 1410.46, "end": 1410.74, "word": " create", "probability": 0.284423828125}, {"start": 1410.74, "end": 1410.84, "word": " a", "probability": 0.416015625}, {"start": 1410.84, "end": 1411.28, "word": " notification,", "probability": 0.95458984375}, {"start": 1411.46, "end": 1411.56, "word": " you", "probability": 0.91357421875}, {"start": 1411.56, "end": 1411.72, "word": " say", "probability": 0.490478515625}, {"start": 1411.72, "end": 1412.06, "word": " B", "probability": 0.83984375}, {"start": 1412.06, "end": 1412.56, "word": " dot", "probability": 0.95751953125}, {"start": 1412.56, "end": 1413.28, "word": " build", "probability": 0.83056640625}, {"start": 1413.28, "end": 1413.94, "word": " or", "probability": 0.76806640625}, {"start": 1413.94, "end": 1414.42, "word": " create.", "probability": 0.880859375}, {"start": 1416.16, "end": 1416.4, "word": " What", "probability": 0.364013671875}, {"start": 1416.4, "end": 1416.4, "word": " does", "probability": 0.7021484375}, {"start": 1416.4, "end": 1416.6, "word": " this", "probability": 0.72705078125}, {"start": 1416.6, "end": 1416.88, "word": " return?", "probability": 0.2802734375}, {"start": 1417.36, "end": 1417.74, "word": " The", "probability": 0.453125}, {"start": 1417.74, "end": 1418.08, "word": " notification.", "probability": 0.95947265625}, {"start": 1418.66, "end": 1418.88, "word": " Because", "probability": 0.8095703125}, {"start": 1418.88, "end": 1419.1, "word": " if", "probability": 0.91796875}, {"start": 1419.1, "end": 1419.28, "word": " there", "probability": 0.8369140625}, {"start": 1419.28, "end": 1419.28, "word": " is", "probability": 0.7646484375}, {"start": 1419.28, "end": 1419.34, "word": " an", "probability": 0.41552734375}, {"start": 1419.34, "end": 1419.34, "word": " important", "probability": 0.88916015625}, {"start": 1419.34, "end": 1420.02, "word": " information", "probability": 0.6552734375}, {"start": 1420.02, "end": 1420.28, "word": " that", "probability": 0.49951171875}, {"start": 1420.28, "end": 1420.42, "word": " you", "probability": 0.9267578125}, {"start": 1420.42, "end": 1420.58, "word": " did", "probability": 0.27099609375}, {"start": 1420.58, "end": 1420.58, "word": " not", "probability": 0.94677734375}, {"start": 1420.58, "end": 1420.86, "word": " pass", "probability": 0.5751953125}, {"start": 1420.86, "end": 1421.48, "word": " through,", "probability": 0.352294921875}, {"start": 1421.74, "end": 1422.46, "word": " this", "probability": 0.61865234375}, {"start": 1422.46, "end": 1422.7, "word": " build", "probability": 0.88720703125}, {"start": 1422.7, "end": 1423.04, "word": " will", "probability": 0.75732421875}, {"start": 1423.04, "end": 1423.26, "word": " give", "probability": 0.517578125}, {"start": 1423.26, "end": 1423.48, "word": " you", "probability": 0.8916015625}, {"start": 1423.48, "end": 1423.88, "word": " an", "probability": 0.49267578125}, {"start": 1423.88, "end": 1424.1, "word": " exception.", "probability": 0.912109375}], "temperature": 1.0}, {"id": 57, "seek": 143885, "start": 1425.75, "end": 1438.85, "text": "Instead of going to a construction company and asking them to look at the documentation to find out what each piece of information has to say, he went step by step", "tokens": [28411, 2056, 295, 516, 281, 257, 6435, 2237, 293, 3365, 552, 281, 574, 412, 264, 14333, 281, 915, 484, 437, 1184, 2522, 295, 1589, 575, 281, 584, 11, 415, 1437, 1823, 538, 1823], "avg_logprob": -1.039522079860463, "compression_ratio": 1.38135593220339, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 1425.75, "end": 1426.25, "word": "Instead", "probability": 0.62890625}, {"start": 1426.25, "end": 1426.61, "word": " of", "probability": 0.9365234375}, {"start": 1426.61, "end": 1426.95, "word": " going", "probability": 0.1251220703125}, {"start": 1426.95, "end": 1427.27, "word": " to", "probability": 0.33740234375}, {"start": 1427.27, "end": 1427.91, "word": " a", "probability": 0.297119140625}, {"start": 1427.91, "end": 1428.37, "word": " construction", "probability": 0.028167724609375}, {"start": 1428.37, "end": 1429.73, "word": " company", "probability": 0.5185546875}, {"start": 1429.73, "end": 1429.73, "word": " and", "probability": 0.467041015625}, {"start": 1429.73, "end": 1430.99, "word": " asking", "probability": 0.08154296875}, {"start": 1430.99, "end": 1431.31, "word": " them", "probability": 0.45556640625}, {"start": 1431.31, "end": 1431.35, "word": " to", "probability": 0.7041015625}, {"start": 1431.35, "end": 1431.57, "word": " look", "probability": 0.2122802734375}, {"start": 1431.57, "end": 1431.83, "word": " at", "probability": 0.210693359375}, {"start": 1431.83, "end": 1432.09, "word": " the", "probability": 0.36865234375}, {"start": 1432.09, "end": 1432.67, "word": " documentation", "probability": 0.52978515625}, {"start": 1432.67, "end": 1432.87, "word": " to", "probability": 0.249755859375}, {"start": 1432.87, "end": 1433.01, "word": " find", "probability": 0.238525390625}, {"start": 1433.01, "end": 1433.71, "word": " out", "probability": 0.6064453125}, {"start": 1433.71, "end": 1433.99, "word": " what", "probability": 0.364013671875}, {"start": 1433.99, "end": 1434.73, "word": " each", "probability": 0.336181640625}, {"start": 1434.73, "end": 1434.99, "word": " piece", "probability": 0.29833984375}, {"start": 1434.99, "end": 1435.63, "word": " of", "probability": 0.47802734375}, {"start": 1435.63, "end": 1435.63, "word": " information", "probability": 0.70263671875}, {"start": 1435.63, "end": 1435.63, "word": " has", "probability": 0.16455078125}, {"start": 1435.63, "end": 1435.99, "word": " to", "probability": 0.9111328125}, {"start": 1435.99, "end": 1435.99, "word": " say,", "probability": 0.453125}, {"start": 1436.35, "end": 1436.79, "word": " he", "probability": 0.34033203125}, {"start": 1436.79, "end": 1437.33, "word": " went", "probability": 0.1318359375}, {"start": 1437.33, "end": 1438.19, "word": " step", "probability": 0.64013671875}, {"start": 1438.19, "end": 1438.45, "word": " by", "probability": 0.8466796875}, {"start": 1438.45, "end": 1438.85, "word": " step", "probability": 0.91845703125}], "temperature": 1.0}, {"id": 58, "seek": 145557, "start": 1439.57, "end": 1455.57, "text": "creation law for the object, okay? So this builder pattern, as I said, the problem it solves is that sometimes when we create classes, creating objects from them requires a lot of parameters. At the same time, I cannot create an empty constructor because this information must be passed through", "tokens": [14066, 399, 2101, 337, 264, 2657, 11, 1392, 30, 407, 341, 27377, 5102, 11, 382, 286, 848, 11, 264, 1154, 309, 39890, 307, 300, 2171, 562, 321, 1884, 5359, 11, 4084, 6565, 490, 552, 7029, 257, 688, 295, 9834, 13, 1711, 264, 912, 565, 11, 286, 2644, 1884, 364, 6707, 47479, 570, 341, 1589, 1633, 312, 4678, 807], "avg_logprob": -0.5360169693575068, "compression_ratio": 1.5076923076923077, "no_speech_prob": 8.666515350341797e-05, "words": [{"start": 1439.57, "end": 1440.07, "word": "creation", "probability": 0.542083740234375}, {"start": 1440.07, "end": 1440.35, "word": " law", "probability": 0.42626953125}, {"start": 1440.35, "end": 1440.97, "word": " for", "probability": 0.525390625}, {"start": 1440.97, "end": 1441.05, "word": " the", "probability": 0.38623046875}, {"start": 1441.05, "end": 1441.41, "word": " object,", "probability": 0.8818359375}, {"start": 1441.61, "end": 1441.89, "word": " okay?", "probability": 0.2685546875}, {"start": 1442.51, "end": 1442.63, "word": " So", "probability": 0.5703125}, {"start": 1442.63, "end": 1442.81, "word": " this", "probability": 0.5791015625}, {"start": 1442.81, "end": 1443.15, "word": " builder", "probability": 0.64794921875}, {"start": 1443.15, "end": 1443.61, "word": " pattern,", "probability": 0.8916015625}, {"start": 1443.83, "end": 1444.15, "word": " as", "probability": 0.56201171875}, {"start": 1444.15, "end": 1444.27, "word": " I", "probability": 0.86474609375}, {"start": 1444.27, "end": 1444.45, "word": " said,", "probability": 0.71630859375}, {"start": 1444.59, "end": 1444.59, "word": " the", "probability": 0.7373046875}, {"start": 1444.59, "end": 1444.83, "word": " problem", "probability": 0.7802734375}, {"start": 1444.83, "end": 1444.97, "word": " it", "probability": 0.33642578125}, {"start": 1444.97, "end": 1445.25, "word": " solves", "probability": 0.8427734375}, {"start": 1445.25, "end": 1445.95, "word": " is", "probability": 0.85888671875}, {"start": 1445.95, "end": 1446.05, "word": " that", "probability": 0.7265625}, {"start": 1446.05, "end": 1446.41, "word": " sometimes", "probability": 0.7265625}, {"start": 1446.41, "end": 1446.57, "word": " when", "probability": 0.2705078125}, {"start": 1446.57, "end": 1446.69, "word": " we", "probability": 0.8720703125}, {"start": 1446.69, "end": 1446.97, "word": " create", "probability": 0.262939453125}, {"start": 1446.97, "end": 1447.45, "word": " classes,", "probability": 0.7919921875}, {"start": 1447.61, "end": 1447.93, "word": " creating", "probability": 0.51025390625}, {"start": 1447.93, "end": 1448.43, "word": " objects", "probability": 0.583984375}, {"start": 1448.43, "end": 1448.59, "word": " from", "probability": 0.51611328125}, {"start": 1448.59, "end": 1448.81, "word": " them", "probability": 0.6552734375}, {"start": 1448.81, "end": 1449.63, "word": " requires", "probability": 0.5283203125}, {"start": 1449.63, "end": 1449.71, "word": " a", "probability": 0.3369140625}, {"start": 1449.71, "end": 1449.71, "word": " lot", "probability": 0.93359375}, {"start": 1449.71, "end": 1449.77, "word": " of", "probability": 0.95947265625}, {"start": 1449.77, "end": 1450.27, "word": " parameters.", "probability": 0.95703125}, {"start": 1451.07, "end": 1451.17, "word": " At", "probability": 0.79638671875}, {"start": 1451.17, "end": 1451.31, "word": " the", "probability": 0.93212890625}, {"start": 1451.31, "end": 1451.41, "word": " same", "probability": 0.908203125}, {"start": 1451.41, "end": 1451.71, "word": " time,", "probability": 0.87548828125}, {"start": 1451.81, "end": 1451.85, "word": " I", "probability": 0.97900390625}, {"start": 1451.85, "end": 1452.07, "word": " cannot", "probability": 0.470947265625}, {"start": 1452.07, "end": 1452.45, "word": " create", "probability": 0.475830078125}, {"start": 1452.45, "end": 1452.93, "word": " an", "probability": 0.66015625}, {"start": 1452.93, "end": 1452.93, "word": " empty", "probability": 0.79345703125}, {"start": 1452.93, "end": 1453.55, "word": " constructor", "probability": 0.8955078125}, {"start": 1453.55, "end": 1453.93, "word": " because", "probability": 0.67626953125}, {"start": 1453.93, "end": 1454.19, "word": " this", "probability": 0.48193359375}, {"start": 1454.19, "end": 1454.51, "word": " information", "probability": 0.6982421875}, {"start": 1454.51, "end": 1454.91, "word": " must", "probability": 0.499755859375}, {"start": 1454.91, "end": 1455.13, "word": " be", "probability": 0.69091796875}, {"start": 1455.13, "end": 1455.37, "word": " passed", "probability": 0.2357177734375}, {"start": 1455.37, "end": 1455.57, "word": " through", "probability": 0.48583984375}], "temperature": 1.0}, {"id": 59, "seek": 147370, "start": 1456.84, "end": 1473.7, "text": " So the constructor has to be there. So how does it work? How does it make it easier for the user to create? There is a way to use the builder. We try to change it. Instead of using the constructor, it uses the setter method. How does it work? The builder", "tokens": [407, 264, 47479, 575, 281, 312, 456, 13, 407, 577, 775, 309, 589, 30, 1012, 775, 309, 652, 309, 3571, 337, 264, 4195, 281, 1884, 30, 821, 307, 257, 636, 281, 764, 264, 27377, 13, 492, 853, 281, 1319, 309, 13, 7156, 295, 1228, 264, 47479, 11, 309, 4960, 264, 992, 391, 3170, 13, 1012, 775, 309, 589, 30, 440, 27377], "avg_logprob": -0.5655241791279085, "compression_ratio": 1.624203821656051, "no_speech_prob": 0.0005679130554199219, "words": [{"start": 1456.84, "end": 1457.3, "word": " So", "probability": 0.1661376953125}, {"start": 1457.3, "end": 1457.72, "word": " the", "probability": 0.2919921875}, {"start": 1457.72, "end": 1458.12, "word": " constructor", "probability": 0.7783203125}, {"start": 1458.12, "end": 1458.32, "word": " has", "probability": 0.1964111328125}, {"start": 1458.32, "end": 1458.38, "word": " to", "probability": 0.96240234375}, {"start": 1458.38, "end": 1458.68, "word": " be", "probability": 0.58935546875}, {"start": 1458.68, "end": 1459.4, "word": " there.", "probability": 0.2227783203125}, {"start": 1459.5, "end": 1459.62, "word": " So", "probability": 0.3125}, {"start": 1459.62, "end": 1459.82, "word": " how", "probability": 0.72998046875}, {"start": 1459.82, "end": 1459.92, "word": " does", "probability": 0.208251953125}, {"start": 1459.92, "end": 1459.94, "word": " it", "probability": 0.38916015625}, {"start": 1459.94, "end": 1460.16, "word": " work?", "probability": 0.7421875}, {"start": 1460.26, "end": 1460.5, "word": " How", "probability": 0.48193359375}, {"start": 1460.5, "end": 1460.88, "word": " does", "probability": 0.69140625}, {"start": 1460.88, "end": 1461.06, "word": " it", "probability": 0.828125}, {"start": 1461.06, "end": 1461.06, "word": " make", "probability": 0.40869140625}, {"start": 1461.06, "end": 1461.38, "word": " it", "probability": 0.73046875}, {"start": 1461.38, "end": 1461.62, "word": " easier", "probability": 0.82080078125}, {"start": 1461.62, "end": 1461.72, "word": " for", "probability": 0.82666015625}, {"start": 1461.72, "end": 1461.8, "word": " the", "probability": 0.6953125}, {"start": 1461.8, "end": 1462.12, "word": " user", "probability": 0.84228515625}, {"start": 1462.12, "end": 1462.92, "word": " to", "probability": 0.94921875}, {"start": 1462.92, "end": 1463.18, "word": " create?", "probability": 0.485595703125}, {"start": 1463.5, "end": 1463.96, "word": " There", "probability": 0.28271484375}, {"start": 1463.96, "end": 1464.08, "word": " is", "probability": 0.69140625}, {"start": 1464.08, "end": 1464.22, "word": " a", "probability": 0.9541015625}, {"start": 1464.22, "end": 1464.44, "word": " way", "probability": 0.46533203125}, {"start": 1464.44, "end": 1464.6, "word": " to", "probability": 0.392333984375}, {"start": 1464.6, "end": 1464.9, "word": " use", "probability": 0.50537109375}, {"start": 1464.9, "end": 1465.14, "word": " the", "probability": 0.425537109375}, {"start": 1465.14, "end": 1465.36, "word": " builder.", "probability": 0.89794921875}, {"start": 1465.5, "end": 1465.72, "word": " We", "probability": 0.60693359375}, {"start": 1465.72, "end": 1466.26, "word": " try", "probability": 0.7509765625}, {"start": 1466.26, "end": 1466.54, "word": " to", "probability": 0.9169921875}, {"start": 1466.54, "end": 1466.94, "word": " change", "probability": 0.818359375}, {"start": 1466.94, "end": 1467.7, "word": " it.", "probability": 0.328125}, {"start": 1467.7, "end": 1467.9, "word": " Instead", "probability": 0.76025390625}, {"start": 1467.9, "end": 1468.0, "word": " of", "probability": 0.970703125}, {"start": 1468.0, "end": 1468.42, "word": " using", "probability": 0.85986328125}, {"start": 1468.42, "end": 1468.54, "word": " the", "probability": 0.494873046875}, {"start": 1468.54, "end": 1468.92, "word": " constructor,", "probability": 0.8798828125}, {"start": 1469.04, "end": 1469.1, "word": " it", "probability": 0.364501953125}, {"start": 1469.1, "end": 1469.38, "word": " uses", "probability": 0.55517578125}, {"start": 1469.38, "end": 1469.52, "word": " the", "probability": 0.765625}, {"start": 1469.52, "end": 1469.74, "word": " setter", "probability": 0.880859375}, {"start": 1469.74, "end": 1470.1, "word": " method.", "probability": 0.89111328125}, {"start": 1471.14, "end": 1471.6, "word": " How", "probability": 0.626953125}, {"start": 1471.6, "end": 1471.72, "word": " does", "probability": 0.34375}, {"start": 1471.72, "end": 1471.74, "word": " it", "probability": 0.849609375}, {"start": 1471.74, "end": 1471.9, "word": " work?", "probability": 0.83447265625}, {"start": 1472.36, "end": 1472.82, "word": " The", "probability": 0.3564453125}, {"start": 1472.82, "end": 1473.7, "word": " builder", "probability": 0.8818359375}], "temperature": 1.0}, {"id": 60, "seek": 149896, "start": 1474.96, "end": 1498.96, "text": "Inner class has the same attributes as the main class that you want to create And there are setter methods like the ones in the main class The idea is that I create a builder in the beginning and pass all the information to it through setter methods And then I tell the builder to create an object from the class that you have or that you are inside So it's like a manager with a secretary", "tokens": [4575, 1193, 1508, 575, 264, 912, 17212, 382, 264, 2135, 1508, 300, 291, 528, 281, 1884, 400, 456, 366, 992, 391, 7150, 411, 264, 2306, 294, 264, 2135, 1508, 440, 1558, 307, 300, 286, 1884, 257, 27377, 294, 264, 2863, 293, 1320, 439, 264, 1589, 281, 309, 807, 992, 391, 7150, 400, 550, 286, 980, 264, 27377, 281, 1884, 364, 2657, 490, 264, 1508, 300, 291, 362, 420, 300, 291, 366, 1854, 407, 309, 311, 411, 257, 6598, 365, 257, 15691], "avg_logprob": -0.5483993982396475, "compression_ratio": 1.8701923076923077, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 1474.96, "end": 1475.36, "word": "Inner", "probability": 0.68994140625}, {"start": 1475.36, "end": 1475.76, "word": " class", "probability": 0.669921875}, {"start": 1475.76, "end": 1475.96, "word": " has", "probability": 0.359619140625}, {"start": 1475.96, "end": 1476.08, "word": " the", "probability": 0.6201171875}, {"start": 1476.08, "end": 1476.22, "word": " same", "probability": 0.84716796875}, {"start": 1476.22, "end": 1476.88, "word": " attributes", "probability": 0.861328125}, {"start": 1476.88, "end": 1477.66, "word": " as", "probability": 0.49609375}, {"start": 1477.66, "end": 1478.42, "word": " the", "probability": 0.5654296875}, {"start": 1478.42, "end": 1478.46, "word": " main", "probability": 0.27001953125}, {"start": 1478.46, "end": 1479.1, "word": " class", "probability": 0.75341796875}, {"start": 1479.1, "end": 1479.2, "word": " that", "probability": 0.2017822265625}, {"start": 1479.2, "end": 1479.34, "word": " you", "probability": 0.3994140625}, {"start": 1479.34, "end": 1479.42, "word": " want", "probability": 0.400390625}, {"start": 1479.42, "end": 1479.46, "word": " to", "probability": 0.93896484375}, {"start": 1479.46, "end": 1479.58, "word": " create", "probability": 0.666015625}, {"start": 1479.58, "end": 1480.42, "word": " And", "probability": 0.2269287109375}, {"start": 1480.42, "end": 1480.56, "word": " there", "probability": 0.69287109375}, {"start": 1480.56, "end": 1480.6, "word": " are", "probability": 0.5810546875}, {"start": 1480.6, "end": 1480.94, "word": " setter", "probability": 0.77587890625}, {"start": 1480.94, "end": 1481.2, "word": " methods", "probability": 0.89306640625}, {"start": 1481.2, "end": 1481.54, "word": " like", "probability": 0.369873046875}, {"start": 1481.54, "end": 1481.72, "word": " the", "probability": 0.404052734375}, {"start": 1481.72, "end": 1481.72, "word": " ones", "probability": 0.419921875}, {"start": 1481.72, "end": 1482.02, "word": " in", "probability": 0.449462890625}, {"start": 1482.02, "end": 1482.14, "word": " the", "probability": 0.88232421875}, {"start": 1482.14, "end": 1483.54, "word": " main", "probability": 0.7939453125}, {"start": 1483.54, "end": 1483.76, "word": " class", "probability": 0.89111328125}, {"start": 1483.76, "end": 1484.26, "word": " The", "probability": 0.481689453125}, {"start": 1484.26, "end": 1484.5, "word": " idea", "probability": 0.85107421875}, {"start": 1484.5, "end": 1484.7, "word": " is", "probability": 0.6884765625}, {"start": 1484.7, "end": 1484.72, "word": " that", "probability": 0.457763671875}, {"start": 1484.72, "end": 1484.86, "word": " I", "probability": 0.72509765625}, {"start": 1484.86, "end": 1484.96, "word": " create", "probability": 0.685546875}, {"start": 1484.96, "end": 1485.24, "word": " a", "probability": 0.8291015625}, {"start": 1485.24, "end": 1485.4, "word": " builder", "probability": 0.953125}, {"start": 1485.4, "end": 1485.58, "word": " in", "probability": 0.219970703125}, {"start": 1485.58, "end": 1485.7, "word": " the", "probability": 0.91943359375}, {"start": 1485.7, "end": 1485.94, "word": " beginning", "probability": 0.56884765625}, {"start": 1485.94, "end": 1486.36, "word": " and", "probability": 0.234130859375}, {"start": 1486.36, "end": 1486.64, "word": " pass", "probability": 0.541015625}, {"start": 1486.64, "end": 1487.04, "word": " all", "probability": 0.72900390625}, {"start": 1487.04, "end": 1487.18, "word": " the", "probability": 0.64404296875}, {"start": 1487.18, "end": 1487.46, "word": " information", "probability": 0.50634765625}, {"start": 1487.46, "end": 1487.56, "word": " to", "probability": 0.369873046875}, {"start": 1487.56, "end": 1487.56, "word": " it", "probability": 0.5068359375}, {"start": 1487.56, "end": 1487.84, "word": " through", "probability": 0.7001953125}, {"start": 1487.84, "end": 1488.22, "word": " setter", "probability": 0.79150390625}, {"start": 1488.22, "end": 1488.62, "word": " methods", "probability": 0.86767578125}, {"start": 1488.62, "end": 1489.14, "word": " And", "probability": 0.429931640625}, {"start": 1489.14, "end": 1489.46, "word": " then", "probability": 0.76416015625}, {"start": 1489.46, "end": 1489.62, "word": " I", "probability": 0.830078125}, {"start": 1489.62, "end": 1489.76, "word": " tell", "probability": 0.54638671875}, {"start": 1489.76, "end": 1489.94, "word": " the", "probability": 0.85693359375}, {"start": 1489.94, "end": 1490.26, "word": " builder", "probability": 0.94677734375}, {"start": 1490.26, "end": 1490.52, "word": " to", "probability": 0.76123046875}, {"start": 1490.52, "end": 1490.74, "word": " create", "probability": 0.8857421875}, {"start": 1490.74, "end": 1490.9, "word": " an", "probability": 0.7255859375}, {"start": 1490.9, "end": 1491.14, "word": " object", "probability": 0.97802734375}, {"start": 1491.14, "end": 1491.56, "word": " from", "probability": 0.75146484375}, {"start": 1491.56, "end": 1492.56, "word": " the", "probability": 0.8720703125}, {"start": 1492.56, "end": 1492.94, "word": " class", "probability": 0.900390625}, {"start": 1492.94, "end": 1493.06, "word": " that", "probability": 0.70166015625}, {"start": 1493.06, "end": 1493.24, "word": " you", "probability": 0.908203125}, {"start": 1493.24, "end": 1493.58, "word": " have", "probability": 0.299072265625}, {"start": 1493.58, "end": 1494.36, "word": " or", "probability": 0.187744140625}, {"start": 1494.36, "end": 1494.76, "word": " that", "probability": 0.642578125}, {"start": 1494.76, "end": 1494.94, "word": " you", "probability": 0.89599609375}, {"start": 1494.94, "end": 1495.06, "word": " are", "probability": 0.72705078125}, {"start": 1495.06, "end": 1495.42, "word": " inside", "probability": 0.61962890625}, {"start": 1495.42, "end": 1496.2, "word": " So", "probability": 0.315185546875}, {"start": 1496.2, "end": 1496.56, "word": " it's", "probability": 0.25164794921875}, {"start": 1496.56, "end": 1496.7, "word": " like", "probability": 0.5126953125}, {"start": 1496.7, "end": 1497.34, "word": " a", "probability": 0.552734375}, {"start": 1497.34, "end": 1497.52, "word": " manager", "probability": 0.525390625}, {"start": 1497.52, "end": 1497.86, "word": " with", "probability": 0.28076171875}, {"start": 1497.86, "end": 1498.58, "word": " a", "probability": 0.62451171875}, {"start": 1498.58, "end": 1498.96, "word": " secretary", "probability": 0.9189453125}], "temperature": 1.0}, {"id": 61, "seek": 151443, "start": 1500.89, "end": 1514.43, "text": " I arrange things with the secretary and see what information is necessary, and when it's complete, he sends the papers to the manager. This is the idea of the builder, and as I said, many libraries use the idea of the builder pattern to facilitate construction.", "tokens": [286, 9424, 721, 365, 264, 15691, 293, 536, 437, 1589, 307, 4818, 11, 293, 562, 309, 311, 3566, 11, 415, 14790, 264, 10577, 281, 264, 6598, 13, 639, 307, 264, 1558, 295, 264, 27377, 11, 293, 382, 286, 848, 11, 867, 15148, 764, 264, 1558, 295, 264, 27377, 5102, 281, 20207, 6435, 13], "avg_logprob": -0.6030092636744181, "compression_ratio": 1.587878787878788, "no_speech_prob": 2.6226043701171875e-06, "words": [{"start": 1500.89, "end": 1501.07, "word": " I", "probability": 0.451416015625}, {"start": 1501.07, "end": 1501.31, "word": " arrange", "probability": 0.2464599609375}, {"start": 1501.31, "end": 1501.61, "word": " things", "probability": 0.17236328125}, {"start": 1501.61, "end": 1501.83, "word": " with", "probability": 0.8232421875}, {"start": 1501.83, "end": 1501.95, "word": " the", "probability": 0.65673828125}, {"start": 1501.95, "end": 1502.37, "word": " secretary", "probability": 0.78125}, {"start": 1502.37, "end": 1502.61, "word": " and", "probability": 0.55810546875}, {"start": 1502.61, "end": 1502.91, "word": " see", "probability": 0.180908203125}, {"start": 1502.91, "end": 1503.15, "word": " what", "probability": 0.72021484375}, {"start": 1503.15, "end": 1503.47, "word": " information", "probability": 0.56982421875}, {"start": 1503.47, "end": 1503.65, "word": " is", "probability": 0.79345703125}, {"start": 1503.65, "end": 1503.99, "word": " necessary,", "probability": 0.55517578125}, {"start": 1504.45, "end": 1504.85, "word": " and", "probability": 0.6875}, {"start": 1504.85, "end": 1504.97, "word": " when", "probability": 0.67919921875}, {"start": 1504.97, "end": 1505.15, "word": " it's", "probability": 0.4462890625}, {"start": 1505.15, "end": 1505.39, "word": " complete,", "probability": 0.275390625}, {"start": 1505.53, "end": 1505.65, "word": " he", "probability": 0.369140625}, {"start": 1505.65, "end": 1506.07, "word": " sends", "probability": 0.305908203125}, {"start": 1506.07, "end": 1506.19, "word": " the", "probability": 0.6015625}, {"start": 1506.19, "end": 1506.33, "word": " papers", "probability": 0.313720703125}, {"start": 1506.33, "end": 1507.01, "word": " to", "probability": 0.84619140625}, {"start": 1507.01, "end": 1507.37, "word": " the", "probability": 0.70263671875}, {"start": 1507.37, "end": 1507.65, "word": " manager.", "probability": 0.396240234375}, {"start": 1507.77, "end": 1508.03, "word": " This", "probability": 0.65478515625}, {"start": 1508.03, "end": 1508.15, "word": " is", "probability": 0.9072265625}, {"start": 1508.15, "end": 1508.21, "word": " the", "probability": 0.705078125}, {"start": 1508.21, "end": 1508.37, "word": " idea", "probability": 0.640625}, {"start": 1508.37, "end": 1509.09, "word": " of", "probability": 0.86669921875}, {"start": 1509.09, "end": 1509.21, "word": " the", "probability": 0.253173828125}, {"start": 1509.21, "end": 1509.41, "word": " builder,", "probability": 0.83447265625}, {"start": 1509.55, "end": 1509.65, "word": " and", "probability": 0.70458984375}, {"start": 1509.65, "end": 1509.69, "word": " as", "probability": 0.69775390625}, {"start": 1509.69, "end": 1509.87, "word": " I", "probability": 0.90576171875}, {"start": 1509.87, "end": 1510.03, "word": " said,", "probability": 0.744140625}, {"start": 1510.21, "end": 1510.41, "word": " many", "probability": 0.7646484375}, {"start": 1510.41, "end": 1510.91, "word": " libraries", "probability": 0.92138671875}, {"start": 1510.91, "end": 1511.49, "word": " use", "probability": 0.82861328125}, {"start": 1511.49, "end": 1512.11, "word": " the", "probability": 0.62646484375}, {"start": 1512.11, "end": 1512.33, "word": " idea", "probability": 0.57568359375}, {"start": 1512.33, "end": 1512.51, "word": " of", "probability": 0.96484375}, {"start": 1512.51, "end": 1512.57, "word": " the", "probability": 0.28125}, {"start": 1512.57, "end": 1512.77, "word": " builder", "probability": 0.70458984375}, {"start": 1512.77, "end": 1513.09, "word": " pattern", "probability": 0.158447265625}, {"start": 1513.09, "end": 1513.41, "word": " to", "probability": 0.7587890625}, {"start": 1513.41, "end": 1514.05, "word": " facilitate", "probability": 0.66259765625}, {"start": 1514.05, "end": 1514.43, "word": " construction.", "probability": 0.4296875}], "temperature": 1.0}, {"id": 62, "seek": 154424, "start": 1516.64, "end": 1544.24, "text": " objects from the classes that have a constructor that takes a lot of parameters. And this is the meaning of reading the slides again. Because in the builder design pattern, we can solve the issues with a large number of parameters by providing a constructor with the required parameters and then... No, let's see before this slide. When to use? When I have too many arguments to pass from the client program via the constructor.", "tokens": [6565, 490, 264, 5359, 300, 362, 257, 47479, 300, 2516, 257, 688, 295, 9834, 13, 400, 341, 307, 264, 3620, 295, 3760, 264, 9788, 797, 13, 1436, 294, 264, 27377, 1715, 5102, 11, 321, 393, 5039, 264, 2663, 365, 257, 2416, 1230, 295, 9834, 538, 6530, 257, 47479, 365, 264, 4739, 9834, 293, 550, 485, 883, 11, 718, 311, 536, 949, 341, 4137, 13, 1133, 281, 764, 30, 1133, 286, 362, 886, 867, 12869, 281, 1320, 490, 264, 6423, 1461, 5766, 264, 47479, 13], "avg_logprob": -0.371139718504513, "compression_ratio": 1.736842105263158, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1516.64, "end": 1517.24, "word": " objects", "probability": 0.392822265625}, {"start": 1517.24, "end": 1517.6, "word": " from", "probability": 0.64892578125}, {"start": 1517.6, "end": 1517.68, "word": " the", "probability": 0.359619140625}, {"start": 1517.68, "end": 1518.1, "word": " classes", "probability": 0.84765625}, {"start": 1518.1, "end": 1518.36, "word": " that", "probability": 0.319580078125}, {"start": 1518.36, "end": 1518.68, "word": " have", "probability": 0.50341796875}, {"start": 1518.68, "end": 1518.76, "word": " a", "probability": 0.400634765625}, {"start": 1518.76, "end": 1519.2, "word": " constructor", "probability": 0.93212890625}, {"start": 1519.2, "end": 1519.34, "word": " that", "probability": 0.55029296875}, {"start": 1519.34, "end": 1519.54, "word": " takes", "probability": 0.5634765625}, {"start": 1519.54, "end": 1519.62, "word": " a", "probability": 0.231201171875}, {"start": 1519.62, "end": 1519.62, "word": " lot", "probability": 0.92236328125}, {"start": 1519.62, "end": 1519.62, "word": " of", "probability": 0.962890625}, {"start": 1519.62, "end": 1520.28, "word": " parameters.", "probability": 0.9658203125}, {"start": 1521.14, "end": 1521.22, "word": " And", "probability": 0.44091796875}, {"start": 1521.22, "end": 1521.52, "word": " this", "probability": 0.791015625}, {"start": 1521.52, "end": 1521.74, "word": " is", "probability": 0.8896484375}, {"start": 1521.74, "end": 1522.0, "word": " the", "probability": 0.487548828125}, {"start": 1522.0, "end": 1522.06, "word": " meaning", "probability": 0.7412109375}, {"start": 1522.06, "end": 1522.3, "word": " of", "probability": 0.68017578125}, {"start": 1522.3, "end": 1522.86, "word": " reading", "probability": 0.2186279296875}, {"start": 1522.86, "end": 1523.16, "word": " the", "probability": 0.60009765625}, {"start": 1523.16, "end": 1523.62, "word": " slides", "probability": 0.89892578125}, {"start": 1523.62, "end": 1524.34, "word": " again.", "probability": 0.6943359375}, {"start": 1524.38, "end": 1524.56, "word": " Because", "probability": 0.3828125}, {"start": 1524.56, "end": 1524.64, "word": " in", "probability": 0.431884765625}, {"start": 1524.64, "end": 1524.76, "word": " the", "probability": 0.8125}, {"start": 1524.76, "end": 1525.0, "word": " builder", "probability": 0.6904296875}, {"start": 1525.0, "end": 1525.42, "word": " design", "probability": 0.92626953125}, {"start": 1525.42, "end": 1525.84, "word": " pattern,", "probability": 0.86474609375}, {"start": 1526.28, "end": 1526.42, "word": " we", "probability": 0.865234375}, {"start": 1526.42, "end": 1526.68, "word": " can", "probability": 0.9384765625}, {"start": 1526.68, "end": 1527.04, "word": " solve", "probability": 0.92138671875}, {"start": 1527.04, "end": 1527.18, "word": " the", "probability": 0.73486328125}, {"start": 1527.18, "end": 1527.52, "word": " issues", "probability": 0.8369140625}, {"start": 1527.52, "end": 1527.8, "word": " with", "probability": 0.89208984375}, {"start": 1527.8, "end": 1527.94, "word": " a", "probability": 0.65234375}, {"start": 1527.94, "end": 1528.16, "word": " large", "probability": 0.9248046875}, {"start": 1528.16, "end": 1528.5, "word": " number", "probability": 0.93359375}, {"start": 1528.5, "end": 1528.74, "word": " of", "probability": 0.9716796875}, {"start": 1528.74, "end": 1529.28, "word": " parameters", "probability": 0.97216796875}, {"start": 1529.28, "end": 1531.5, "word": " by", "probability": 0.7392578125}, {"start": 1531.5, "end": 1532.04, "word": " providing", "probability": 0.9296875}, {"start": 1532.04, "end": 1532.36, "word": " a", "probability": 0.978515625}, {"start": 1532.36, "end": 1532.86, "word": " constructor", "probability": 0.89208984375}, {"start": 1532.86, "end": 1533.72, "word": " with", "probability": 0.89892578125}, {"start": 1533.72, "end": 1533.88, "word": " the", "probability": 0.470458984375}, {"start": 1533.88, "end": 1534.3, "word": " required", "probability": 0.828125}, {"start": 1534.3, "end": 1534.92, "word": " parameters", "probability": 0.96728515625}, {"start": 1534.92, "end": 1535.2, "word": " and", "probability": 0.62744140625}, {"start": 1535.2, "end": 1535.5, "word": " then...", "probability": 0.45892333984375}, {"start": 1535.5, "end": 1535.62, "word": " No,", "probability": 0.400634765625}, {"start": 1535.72, "end": 1536.02, "word": " let's", "probability": 0.891845703125}, {"start": 1536.02, "end": 1536.54, "word": " see", "probability": 0.48974609375}, {"start": 1536.54, "end": 1536.82, "word": " before", "probability": 0.20654296875}, {"start": 1536.82, "end": 1536.94, "word": " this", "probability": 0.693359375}, {"start": 1536.94, "end": 1537.26, "word": " slide.", "probability": 0.9619140625}, {"start": 1538.22, "end": 1538.68, "word": " When", "probability": 0.5126953125}, {"start": 1538.68, "end": 1538.84, "word": " to", "probability": 0.96142578125}, {"start": 1538.84, "end": 1539.2, "word": " use?", "probability": 0.86376953125}, {"start": 1539.84, "end": 1539.98, "word": " When", "probability": 0.87255859375}, {"start": 1539.98, "end": 1540.36, "word": " I", "probability": 0.80322265625}, {"start": 1540.36, "end": 1540.42, "word": " have", "probability": 0.93310546875}, {"start": 1540.42, "end": 1540.64, "word": " too", "probability": 0.92919921875}, {"start": 1540.64, "end": 1540.92, "word": " many", "probability": 0.8974609375}, {"start": 1540.92, "end": 1541.46, "word": " arguments", "probability": 0.8642578125}, {"start": 1541.46, "end": 1541.7, "word": " to", "probability": 0.962890625}, {"start": 1541.7, "end": 1542.06, "word": " pass", "probability": 0.8623046875}, {"start": 1542.06, "end": 1542.36, "word": " from", "probability": 0.83447265625}, {"start": 1542.36, "end": 1542.56, "word": " the", "probability": 0.89453125}, {"start": 1542.56, "end": 1542.9, "word": " client", "probability": 0.92333984375}, {"start": 1542.9, "end": 1543.34, "word": " program", "probability": 0.8359375}, {"start": 1543.34, "end": 1543.62, "word": " via", "probability": 0.88427734375}, {"start": 1543.62, "end": 1543.84, "word": " the", "probability": 0.90478515625}, {"start": 1543.84, "end": 1544.24, "word": " constructor.", "probability": 0.8935546875}], "temperature": 1.0}, {"id": 63, "seek": 156249, "start": 1545.65, "end": 1562.49, "text": " A large number of arguments need to go through the constructor that can be error-prone. What does error-prone mean? It means error-prone in a big way. You make mistakes. You don't know what each parameter means. Because most of the time, the type of parameters are the same.", "tokens": [316, 2416, 1230, 295, 12869, 643, 281, 352, 807, 264, 47479, 300, 393, 312, 6713, 12, 1424, 546, 13, 708, 775, 6713, 12, 1424, 546, 914, 30, 467, 1355, 45935, 81, 12, 1424, 546, 294, 257, 955, 636, 13, 509, 652, 8038, 13, 509, 500, 380, 458, 437, 1184, 13075, 1355, 13, 1436, 881, 295, 264, 565, 11, 264, 2010, 295, 9834, 366, 264, 912, 13], "avg_logprob": -0.5074626723332192, "compression_ratio": 1.5714285714285714, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 1545.65, "end": 1545.81, "word": " A", "probability": 0.1884765625}, {"start": 1545.81, "end": 1545.97, "word": " large", "probability": 0.4111328125}, {"start": 1545.97, "end": 1546.15, "word": " number", "probability": 0.89306640625}, {"start": 1546.15, "end": 1546.39, "word": " of", "probability": 0.97119140625}, {"start": 1546.39, "end": 1546.83, "word": " arguments", "probability": 0.611328125}, {"start": 1546.83, "end": 1547.25, "word": " need", "probability": 0.2509765625}, {"start": 1547.25, "end": 1547.39, "word": " to", "probability": 0.89013671875}, {"start": 1547.39, "end": 1547.53, "word": " go", "probability": 0.22998046875}, {"start": 1547.53, "end": 1549.63, "word": " through", "probability": 0.8701171875}, {"start": 1549.63, "end": 1549.87, "word": " the", "probability": 0.71044921875}, {"start": 1549.87, "end": 1550.27, "word": " constructor", "probability": 0.85498046875}, {"start": 1550.27, "end": 1550.59, "word": " that", "probability": 0.29345703125}, {"start": 1550.59, "end": 1550.85, "word": " can", "probability": 0.90966796875}, {"start": 1550.85, "end": 1551.11, "word": " be", "probability": 0.92236328125}, {"start": 1551.11, "end": 1551.39, "word": " error", "probability": 0.77587890625}, {"start": 1551.39, "end": 1551.83, "word": "-prone.", "probability": 0.66064453125}, {"start": 1551.85, "end": 1552.01, "word": " What", "probability": 0.5859375}, {"start": 1552.01, "end": 1552.15, "word": " does", "probability": 0.55517578125}, {"start": 1552.15, "end": 1552.35, "word": " error", "probability": 0.71826171875}, {"start": 1552.35, "end": 1552.79, "word": "-prone", "probability": 0.9510091145833334}, {"start": 1552.79, "end": 1552.79, "word": " mean?", "probability": 0.94580078125}, {"start": 1553.33, "end": 1553.45, "word": " It", "probability": 0.33447265625}, {"start": 1553.45, "end": 1553.59, "word": " means", "probability": 0.56884765625}, {"start": 1553.59, "end": 1553.85, "word": " error", "probability": 0.45953369140625}, {"start": 1553.85, "end": 1554.15, "word": "-prone", "probability": 0.686767578125}, {"start": 1554.15, "end": 1554.27, "word": " in", "probability": 0.11260986328125}, {"start": 1554.27, "end": 1555.13, "word": " a", "probability": 0.6328125}, {"start": 1555.13, "end": 1555.31, "word": " big", "probability": 0.460205078125}, {"start": 1555.31, "end": 1555.75, "word": " way.", "probability": 0.88330078125}, {"start": 1555.85, "end": 1555.91, "word": " You", "probability": 0.64892578125}, {"start": 1555.91, "end": 1556.01, "word": " make", "probability": 0.4990234375}, {"start": 1556.01, "end": 1556.27, "word": " mistakes.", "probability": 0.417724609375}, {"start": 1556.73, "end": 1557.25, "word": " You", "probability": 0.82763671875}, {"start": 1557.25, "end": 1557.33, "word": " don't", "probability": 0.6494140625}, {"start": 1557.33, "end": 1557.65, "word": " know", "probability": 0.859375}, {"start": 1557.65, "end": 1557.97, "word": " what", "probability": 0.6220703125}, {"start": 1557.97, "end": 1558.15, "word": " each", "probability": 0.6796875}, {"start": 1558.15, "end": 1558.59, "word": " parameter", "probability": 0.9716796875}, {"start": 1558.59, "end": 1559.03, "word": " means.", "probability": 0.85986328125}, {"start": 1559.61, "end": 1559.97, "word": " Because", "probability": 0.8466796875}, {"start": 1559.97, "end": 1560.27, "word": " most", "probability": 0.86669921875}, {"start": 1560.27, "end": 1560.43, "word": " of", "probability": 0.97314453125}, {"start": 1560.43, "end": 1560.57, "word": " the", "probability": 0.91943359375}, {"start": 1560.57, "end": 1560.81, "word": " time,", "probability": 0.84326171875}, {"start": 1560.87, "end": 1560.97, "word": " the", "probability": 0.91455078125}, {"start": 1560.97, "end": 1561.25, "word": " type", "probability": 0.68994140625}, {"start": 1561.25, "end": 1561.39, "word": " of", "probability": 0.935546875}, {"start": 1561.39, "end": 1561.83, "word": " parameters", "probability": 0.94287109375}, {"start": 1561.83, "end": 1562.11, "word": " are", "probability": 0.82958984375}, {"start": 1562.11, "end": 1562.29, "word": " the", "probability": 0.5146484375}, {"start": 1562.29, "end": 1562.49, "word": " same.", "probability": 0.89990234375}], "temperature": 1.0}, {"id": 64, "seek": 157492, "start": 1563.2, "end": 1574.92, "text": "Sometimes there are 5 stains behind each other. It is hard to maintain the order of the argument.", "tokens": [50, 45890, 456, 366, 1025, 40733, 2261, 1184, 661, 13, 467, 307, 1152, 281, 6909, 264, 1668, 295, 264, 6770, 13], "avg_logprob": -0.7265625162558123, "compression_ratio": 1.1686746987951808, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1563.2, "end": 1563.68, "word": "Sometimes", "probability": 0.583984375}, {"start": 1563.68, "end": 1563.84, "word": " there", "probability": 0.1484375}, {"start": 1563.84, "end": 1564.1, "word": " are", "probability": 0.8115234375}, {"start": 1564.1, "end": 1564.44, "word": " 5", "probability": 0.488037109375}, {"start": 1564.44, "end": 1564.88, "word": " stains", "probability": 0.490234375}, {"start": 1564.88, "end": 1565.04, "word": " behind", "probability": 0.350341796875}, {"start": 1565.04, "end": 1565.36, "word": " each", "probability": 0.68212890625}, {"start": 1565.36, "end": 1565.36, "word": " other.", "probability": 0.87353515625}, {"start": 1568.98, "end": 1569.6, "word": " It", "probability": 0.318603515625}, {"start": 1569.6, "end": 1569.6, "word": " is", "probability": 0.5888671875}, {"start": 1569.6, "end": 1569.9, "word": " hard", "probability": 0.337158203125}, {"start": 1569.9, "end": 1573.62, "word": " to", "probability": 0.8818359375}, {"start": 1573.62, "end": 1573.8, "word": " maintain", "probability": 0.325927734375}, {"start": 1573.8, "end": 1574.12, "word": " the", "probability": 0.583984375}, {"start": 1574.12, "end": 1574.44, "word": " order", "probability": 0.8994140625}, {"start": 1574.44, "end": 1574.58, "word": " of", "probability": 0.908203125}, {"start": 1574.58, "end": 1574.66, "word": " the", "probability": 0.583984375}, {"start": 1574.66, "end": 1574.92, "word": " argument.", "probability": 0.4814453125}], "temperature": 1.0}, {"id": 65, "seek": 159588, "start": 1578.2, "end": 1595.88, "text": "The other case is that sometimes you have a constructor with compulsory and optional information and you can't distinguish what is compulsory and what is optional. Of course, the optional can be trained by the null, but through the builder pattern, you train through setter methods and it warns you what is compulsory and what is optional.", "tokens": [2278, 661, 1389, 307, 300, 2171, 291, 362, 257, 47479, 365, 42773, 827, 293, 17312, 1589, 293, 291, 393, 380, 20206, 437, 307, 42773, 827, 293, 437, 307, 17312, 13, 2720, 1164, 11, 264, 17312, 393, 312, 8895, 538, 264, 18184, 11, 457, 807, 264, 27377, 5102, 11, 291, 3847, 807, 992, 391, 7150, 293, 309, 12286, 82, 291, 437, 307, 42773, 827, 293, 437, 307, 17312, 13], "avg_logprob": -0.4687500138213669, "compression_ratio": 1.8225806451612903, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1578.2, "end": 1578.44, "word": "The", "probability": 0.2135009765625}, {"start": 1578.44, "end": 1578.58, "word": " other", "probability": 0.70654296875}, {"start": 1578.58, "end": 1579.02, "word": " case", "probability": 0.58740234375}, {"start": 1579.02, "end": 1579.56, "word": " is", "probability": 0.6474609375}, {"start": 1579.56, "end": 1579.64, "word": " that", "probability": 0.2880859375}, {"start": 1579.64, "end": 1580.04, "word": " sometimes", "probability": 0.46435546875}, {"start": 1580.04, "end": 1580.16, "word": " you", "probability": 0.705078125}, {"start": 1580.16, "end": 1580.48, "word": " have", "probability": 0.86181640625}, {"start": 1580.48, "end": 1580.54, "word": " a", "probability": 0.8876953125}, {"start": 1580.54, "end": 1581.04, "word": " constructor", "probability": 0.7568359375}, {"start": 1581.04, "end": 1581.28, "word": " with", "probability": 0.296630859375}, {"start": 1581.28, "end": 1582.1, "word": " compulsory", "probability": 0.7470703125}, {"start": 1582.1, "end": 1582.24, "word": " and", "probability": 0.55419921875}, {"start": 1582.24, "end": 1582.94, "word": " optional", "probability": 0.92138671875}, {"start": 1582.94, "end": 1583.06, "word": " information", "probability": 0.39404296875}, {"start": 1583.06, "end": 1583.92, "word": " and", "probability": 0.36376953125}, {"start": 1583.92, "end": 1584.1, "word": " you", "probability": 0.916015625}, {"start": 1584.1, "end": 1584.4, "word": " can't", "probability": 0.59765625}, {"start": 1584.4, "end": 1584.82, "word": " distinguish", "probability": 0.346435546875}, {"start": 1584.82, "end": 1584.98, "word": " what", "probability": 0.255126953125}, {"start": 1584.98, "end": 1585.04, "word": " is", "probability": 0.66552734375}, {"start": 1585.04, "end": 1585.54, "word": " compulsory", "probability": 0.94775390625}, {"start": 1585.54, "end": 1585.8, "word": " and", "probability": 0.8681640625}, {"start": 1585.8, "end": 1586.06, "word": " what", "probability": 0.86279296875}, {"start": 1586.06, "end": 1586.08, "word": " is", "probability": 0.93701171875}, {"start": 1586.08, "end": 1586.58, "word": " optional.", "probability": 0.96923828125}, {"start": 1586.8, "end": 1586.84, "word": " Of", "probability": 0.447265625}, {"start": 1586.84, "end": 1587.38, "word": " course,", "probability": 0.947265625}, {"start": 1587.46, "end": 1587.48, "word": " the", "probability": 0.49267578125}, {"start": 1587.48, "end": 1587.74, "word": " optional", "probability": 0.93896484375}, {"start": 1587.74, "end": 1588.02, "word": " can", "probability": 0.300537109375}, {"start": 1588.02, "end": 1588.2, "word": " be", "probability": 0.77734375}, {"start": 1588.2, "end": 1588.34, "word": " trained", "probability": 0.53759765625}, {"start": 1588.34, "end": 1588.46, "word": " by", "probability": 0.76220703125}, {"start": 1588.46, "end": 1588.52, "word": " the", "probability": 0.09893798828125}, {"start": 1588.52, "end": 1588.74, "word": " null,", "probability": 0.8955078125}, {"start": 1589.36, "end": 1589.62, "word": " but", "probability": 0.8916015625}, {"start": 1589.62, "end": 1589.98, "word": " through", "probability": 0.62353515625}, {"start": 1589.98, "end": 1590.24, "word": " the", "probability": 0.7392578125}, {"start": 1590.24, "end": 1590.44, "word": " builder", "probability": 0.8994140625}, {"start": 1590.44, "end": 1590.94, "word": " pattern,", "probability": 0.87744140625}, {"start": 1591.16, "end": 1591.26, "word": " you", "probability": 0.88623046875}, {"start": 1591.26, "end": 1591.64, "word": " train", "probability": 0.60205078125}, {"start": 1591.64, "end": 1591.98, "word": " through", "probability": 0.39794921875}, {"start": 1591.98, "end": 1592.34, "word": " setter", "probability": 0.75634765625}, {"start": 1592.34, "end": 1592.66, "word": " methods", "probability": 0.6103515625}, {"start": 1592.66, "end": 1592.76, "word": " and", "probability": 0.420654296875}, {"start": 1592.76, "end": 1592.9, "word": " it", "probability": 0.4716796875}, {"start": 1592.9, "end": 1593.22, "word": " warns", "probability": 0.6282958984375}, {"start": 1593.22, "end": 1593.36, "word": " you", "probability": 0.95068359375}, {"start": 1593.36, "end": 1593.5, "word": " what", "probability": 0.5166015625}, {"start": 1593.5, "end": 1593.6, "word": " is", "probability": 0.8896484375}, {"start": 1593.6, "end": 1594.04, "word": " compulsory", "probability": 0.963134765625}, {"start": 1594.04, "end": 1594.76, "word": " and", "probability": 0.92529296875}, {"start": 1594.76, "end": 1595.02, "word": " what", "probability": 0.9072265625}, {"start": 1595.02, "end": 1595.54, "word": " is", "probability": 0.93896484375}, {"start": 1595.54, "end": 1595.88, "word": " optional.", "probability": 0.95947265625}], "temperature": 1.0}, {"id": 66, "seek": 161278, "start": 1596.54, "end": 1612.78, "text": "If things go well and the object is created, it means that the information that you passed through is not necessary. If you succeed, you can pass the required information again. We can solve this issue with a large number of parameters by providing a constructor with required parameters and then", "tokens": [8031, 721, 352, 731, 293, 264, 2657, 307, 2942, 11, 309, 1355, 300, 264, 1589, 300, 291, 4678, 807, 307, 406, 4818, 13, 759, 291, 7754, 11, 291, 393, 1320, 264, 4739, 1589, 797, 13, 492, 393, 5039, 341, 2734, 365, 257, 2416, 1230, 295, 9834, 538, 6530, 257, 47479, 365, 4739, 9834, 293, 550], "avg_logprob": -0.5245535980377879, "compression_ratio": 1.6353591160220995, "no_speech_prob": 3.039836883544922e-06, "words": [{"start": 1596.54, "end": 1596.76, "word": "If", "probability": 0.41552734375}, {"start": 1596.76, "end": 1596.9, "word": " things", "probability": 0.2255859375}, {"start": 1596.9, "end": 1597.12, "word": " go", "probability": 0.379638671875}, {"start": 1597.12, "end": 1597.68, "word": " well", "probability": 0.447998046875}, {"start": 1597.68, "end": 1598.18, "word": " and", "probability": 0.63720703125}, {"start": 1598.18, "end": 1598.5, "word": " the", "probability": 0.439697265625}, {"start": 1598.5, "end": 1598.78, "word": " object", "probability": 0.85888671875}, {"start": 1598.78, "end": 1598.78, "word": " is", "probability": 0.57080078125}, {"start": 1598.78, "end": 1598.78, "word": " created,", "probability": 0.5380859375}, {"start": 1598.96, "end": 1598.96, "word": " it", "probability": 0.227294921875}, {"start": 1598.96, "end": 1599.04, "word": " means", "probability": 0.748046875}, {"start": 1599.04, "end": 1599.48, "word": " that", "probability": 0.70751953125}, {"start": 1599.48, "end": 1599.6, "word": " the", "probability": 0.463134765625}, {"start": 1599.6, "end": 1599.88, "word": " information", "probability": 0.5458984375}, {"start": 1599.88, "end": 1600.08, "word": " that", "probability": 0.321533203125}, {"start": 1600.08, "end": 1600.22, "word": " you", "probability": 0.1981201171875}, {"start": 1600.22, "end": 1600.4, "word": " passed", "probability": 0.25537109375}, {"start": 1600.4, "end": 1600.56, "word": " through", "probability": 0.33740234375}, {"start": 1600.56, "end": 1600.64, "word": " is", "probability": 0.5771484375}, {"start": 1600.64, "end": 1600.78, "word": " not", "probability": 0.744140625}, {"start": 1600.78, "end": 1601.1, "word": " necessary.", "probability": 0.6640625}, {"start": 1601.98, "end": 1602.54, "word": " If", "probability": 0.68701171875}, {"start": 1602.54, "end": 1602.62, "word": " you", "probability": 0.273193359375}, {"start": 1602.62, "end": 1602.92, "word": " succeed,", "probability": 0.22802734375}, {"start": 1603.14, "end": 1603.26, "word": " you", "probability": 0.82958984375}, {"start": 1603.26, "end": 1604.2, "word": " can", "probability": 0.344970703125}, {"start": 1604.2, "end": 1604.4, "word": " pass", "probability": 0.583984375}, {"start": 1604.4, "end": 1604.68, "word": " the", "probability": 0.481201171875}, {"start": 1604.68, "end": 1605.16, "word": " required", "probability": 0.64990234375}, {"start": 1605.16, "end": 1605.16, "word": " information", "probability": 0.724609375}, {"start": 1605.16, "end": 1605.52, "word": " again.", "probability": 0.360107421875}, {"start": 1606.52, "end": 1606.82, "word": " We", "probability": 0.806640625}, {"start": 1606.82, "end": 1607.02, "word": " can", "probability": 0.935546875}, {"start": 1607.02, "end": 1607.32, "word": " solve", "probability": 0.92626953125}, {"start": 1607.32, "end": 1607.5, "word": " this", "probability": 0.93505859375}, {"start": 1607.5, "end": 1607.92, "word": " issue", "probability": 0.90283203125}, {"start": 1607.92, "end": 1608.3, "word": " with", "probability": 0.861328125}, {"start": 1608.3, "end": 1608.4, "word": " a", "probability": 0.48046875}, {"start": 1608.4, "end": 1608.54, "word": " large", "probability": 0.93701171875}, {"start": 1608.54, "end": 1608.74, "word": " number", "probability": 0.9375}, {"start": 1608.74, "end": 1608.88, "word": " of", "probability": 0.9736328125}, {"start": 1608.88, "end": 1609.24, "word": " parameters", "probability": 0.970703125}, {"start": 1609.24, "end": 1609.46, "word": " by", "probability": 0.931640625}, {"start": 1609.46, "end": 1610.02, "word": " providing", "probability": 0.935546875}, {"start": 1610.02, "end": 1610.26, "word": " a", "probability": 0.99072265625}, {"start": 1610.26, "end": 1610.76, "word": " constructor", "probability": 0.91650390625}, {"start": 1610.76, "end": 1611.18, "word": " with", "probability": 0.90283203125}, {"start": 1611.18, "end": 1611.7, "word": " required", "probability": 0.5478515625}, {"start": 1611.7, "end": 1612.2, "word": " parameters", "probability": 0.96484375}, {"start": 1612.2, "end": 1612.48, "word": " and", "probability": 0.79052734375}, {"start": 1612.48, "end": 1612.78, "word": " then", "probability": 0.8466796875}], "temperature": 1.0}, {"id": 67, "seek": 163975, "start": 1613.35, "end": 1639.75, "text": "different setter methods to set the optional parameters, but the problem with this is that the object state will be inconsistent.\" Yes, I mean, someone might say, why do we use builder? Put the constructor empty and pass the data through setter methods. No, we said that I use it in cases where the object can't move without passing data through it. So here, we can't create notification without giving it the basic information.", "tokens": [67, 15790, 992, 391, 7150, 281, 992, 264, 17312, 9834, 11, 457, 264, 1154, 365, 341, 307, 300, 264, 2657, 1785, 486, 312, 36891, 889, 1079, 11, 286, 914, 11, 1580, 1062, 584, 11, 983, 360, 321, 764, 27377, 30, 4935, 264, 47479, 6707, 293, 1320, 264, 1412, 807, 992, 391, 7150, 13, 883, 11, 321, 848, 300, 286, 764, 309, 294, 3331, 689, 264, 2657, 393, 380, 1286, 1553, 8437, 1412, 807, 309, 13, 407, 510, 11, 321, 393, 380, 1884, 11554, 1553, 2902, 309, 264, 3875, 1589, 13], "avg_logprob": -0.4821428689327869, "compression_ratio": 1.6784313725490196, "no_speech_prob": 1.4901161193847656e-05, "words": [{"start": 1613.35, "end": 1613.79, "word": "different", "probability": 0.625732421875}, {"start": 1613.79, "end": 1614.13, "word": " setter", "probability": 0.839111328125}, {"start": 1614.13, "end": 1614.45, "word": " methods", "probability": 0.86376953125}, {"start": 1614.45, "end": 1614.73, "word": " to", "probability": 0.9248046875}, {"start": 1614.73, "end": 1614.95, "word": " set", "probability": 0.935546875}, {"start": 1614.95, "end": 1615.07, "word": " the", "probability": 0.85205078125}, {"start": 1615.07, "end": 1615.35, "word": " optional", "probability": 0.7724609375}, {"start": 1615.35, "end": 1615.71, "word": " parameters,", "probability": 0.85302734375}, {"start": 1615.81, "end": 1615.89, "word": " but", "probability": 0.9033203125}, {"start": 1615.89, "end": 1616.03, "word": " the", "probability": 0.9140625}, {"start": 1616.03, "end": 1616.37, "word": " problem", "probability": 0.86083984375}, {"start": 1616.37, "end": 1616.63, "word": " with", "probability": 0.89697265625}, {"start": 1616.63, "end": 1616.91, "word": " this", "probability": 0.939453125}, {"start": 1616.91, "end": 1617.17, "word": " is", "probability": 0.91455078125}, {"start": 1617.17, "end": 1617.37, "word": " that", "probability": 0.93408203125}, {"start": 1617.37, "end": 1617.51, "word": " the", "probability": 0.84765625}, {"start": 1617.51, "end": 1617.75, "word": " object", "probability": 0.9560546875}, {"start": 1617.75, "end": 1618.11, "word": " state", "probability": 0.92626953125}, {"start": 1618.11, "end": 1618.31, "word": " will", "probability": 0.8798828125}, {"start": 1618.31, "end": 1618.49, "word": " be", "probability": 0.95751953125}, {"start": 1618.49, "end": 1619.79, "word": " inconsistent.\"", "probability": 0.5460205078125}, {"start": 1619.79, "end": 1619.85, "word": " Yes,", "probability": 0.315185546875}, {"start": 1619.97, "end": 1620.05, "word": " I", "probability": 0.11920166015625}, {"start": 1620.05, "end": 1620.15, "word": " mean,", "probability": 0.76123046875}, {"start": 1620.51, "end": 1621.07, "word": " someone", "probability": 0.31005859375}, {"start": 1621.07, "end": 1621.19, "word": " might", "probability": 0.445556640625}, {"start": 1621.19, "end": 1621.37, "word": " say,", "probability": 0.7958984375}, {"start": 1621.55, "end": 1621.95, "word": " why", "probability": 0.09246826171875}, {"start": 1621.95, "end": 1623.01, "word": " do", "probability": 0.240234375}, {"start": 1623.01, "end": 1623.07, "word": " we", "probability": 0.7734375}, {"start": 1623.07, "end": 1623.35, "word": " use", "probability": 0.802734375}, {"start": 1623.35, "end": 1623.73, "word": " builder?", "probability": 0.52490234375}, {"start": 1624.15, "end": 1624.65, "word": " Put", "probability": 0.35595703125}, {"start": 1624.65, "end": 1624.75, "word": " the", "probability": 0.51318359375}, {"start": 1624.75, "end": 1625.29, "word": " constructor", "probability": 0.810546875}, {"start": 1625.29, "end": 1625.61, "word": " empty", "probability": 0.4814453125}, {"start": 1625.61, "end": 1626.43, "word": " and", "probability": 0.5712890625}, {"start": 1626.43, "end": 1626.67, "word": " pass", "probability": 0.418701171875}, {"start": 1626.67, "end": 1626.87, "word": " the", "probability": 0.4716796875}, {"start": 1626.87, "end": 1628.49, "word": " data", "probability": 0.84521484375}, {"start": 1628.49, "end": 1628.83, "word": " through", "probability": 0.771484375}, {"start": 1628.83, "end": 1629.19, "word": " setter", "probability": 0.828369140625}, {"start": 1629.19, "end": 1629.53, "word": " methods.", "probability": 0.88623046875}, {"start": 1629.73, "end": 1629.91, "word": " No,", "probability": 0.8173828125}, {"start": 1629.97, "end": 1630.13, "word": " we", "probability": 0.80029296875}, {"start": 1630.13, "end": 1630.37, "word": " said", "probability": 0.8173828125}, {"start": 1630.37, "end": 1630.71, "word": " that", "probability": 0.8037109375}, {"start": 1630.71, "end": 1630.91, "word": " I", "probability": 0.58056640625}, {"start": 1630.91, "end": 1631.35, "word": " use", "probability": 0.74658203125}, {"start": 1631.35, "end": 1631.47, "word": " it", "probability": 0.7646484375}, {"start": 1631.47, "end": 1631.55, "word": " in", "probability": 0.7646484375}, {"start": 1631.55, "end": 1631.99, "word": " cases", "probability": 0.8017578125}, {"start": 1631.99, "end": 1632.53, "word": " where", "probability": 0.58203125}, {"start": 1632.53, "end": 1632.87, "word": " the", "probability": 0.61962890625}, {"start": 1632.87, "end": 1632.95, "word": " object", "probability": 0.958984375}, {"start": 1632.95, "end": 1633.01, "word": " can't", "probability": 0.5216064453125}, {"start": 1633.01, "end": 1633.37, "word": " move", "probability": 0.30615234375}, {"start": 1633.37, "end": 1634.01, "word": " without", "probability": 0.34716796875}, {"start": 1634.01, "end": 1634.61, "word": " passing", "probability": 0.63623046875}, {"start": 1634.61, "end": 1635.05, "word": " data", "probability": 0.171630859375}, {"start": 1635.05, "end": 1635.89, "word": " through", "probability": 0.297119140625}, {"start": 1635.89, "end": 1635.89, "word": " it.", "probability": 0.65966796875}, {"start": 1635.99, "end": 1636.27, "word": " So", "probability": 0.38427734375}, {"start": 1636.27, "end": 1636.45, "word": " here,", "probability": 0.41015625}, {"start": 1636.53, "end": 1636.53, "word": " we", "probability": 0.244384765625}, {"start": 1636.53, "end": 1636.85, "word": " can't", "probability": 0.802490234375}, {"start": 1636.85, "end": 1637.21, "word": " create", "probability": 0.42626953125}, {"start": 1637.21, "end": 1638.09, "word": " notification", "probability": 0.65283203125}, {"start": 1638.09, "end": 1638.87, "word": " without", "probability": 0.83642578125}, {"start": 1638.87, "end": 1639.23, "word": " giving", "probability": 0.64892578125}, {"start": 1639.23, "end": 1639.35, "word": " it", "probability": 0.4365234375}, {"start": 1639.35, "end": 1639.41, "word": " the", "probability": 0.5224609375}, {"start": 1639.41, "end": 1639.41, "word": " basic", "probability": 0.58056640625}, {"start": 1639.41, "end": 1639.75, "word": " information.", "probability": 0.736328125}], "temperature": 1.0}, {"id": 68, "seek": 166547, "start": 1641.15, "end": 1665.47, "text": "Notification is basically to create a GUI. It wants to draw it. It wants the basic information to draw it. Notification defines its dimensions, for example, based on the size of the text that you passed to it. So how do you want to do it? Make it empty and then fill it, okay? So this case also does not solve the problem of creating an empty constructor because the object state in this case will be inconsistent. What does inconsistent mean?", "tokens": [15208, 3774, 307, 1936, 281, 1884, 257, 17917, 40, 13, 467, 2738, 281, 2642, 309, 13, 467, 2738, 264, 3875, 1589, 281, 2642, 309, 13, 1726, 3774, 23122, 1080, 12819, 11, 337, 1365, 11, 2361, 322, 264, 2744, 295, 264, 2487, 300, 291, 4678, 281, 309, 13, 407, 577, 360, 291, 528, 281, 360, 309, 30, 4387, 309, 6707, 293, 550, 2836, 309, 11, 1392, 30, 407, 341, 1389, 611, 775, 406, 5039, 264, 1154, 295, 4084, 364, 6707, 47479, 570, 264, 2657, 1785, 294, 341, 1389, 486, 312, 36891, 13, 708, 775, 36891, 914, 30], "avg_logprob": -0.5798969072164949, "compression_ratio": 1.7509881422924902, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 1641.15, "end": 1641.63, "word": "Notification", "probability": 0.55902099609375}, {"start": 1641.63, "end": 1641.79, "word": " is", "probability": 0.69287109375}, {"start": 1641.79, "end": 1642.03, "word": " basically", "probability": 0.1446533203125}, {"start": 1642.03, "end": 1642.41, "word": " to", "probability": 0.17236328125}, {"start": 1642.41, "end": 1642.71, "word": " create", "probability": 0.46630859375}, {"start": 1642.71, "end": 1643.25, "word": " a", "probability": 0.79296875}, {"start": 1643.25, "end": 1643.71, "word": " GUI.", "probability": 0.962890625}, {"start": 1644.59, "end": 1644.85, "word": " It", "probability": 0.255859375}, {"start": 1644.85, "end": 1645.07, "word": " wants", "probability": 0.1715087890625}, {"start": 1645.07, "end": 1645.13, "word": " to", "probability": 0.70263671875}, {"start": 1645.13, "end": 1645.29, "word": " draw", "probability": 0.64404296875}, {"start": 1645.29, "end": 1645.41, "word": " it.", "probability": 0.4072265625}, {"start": 1645.41, "end": 1645.53, "word": " It", "probability": 0.7509765625}, {"start": 1645.53, "end": 1645.71, "word": " wants", "probability": 0.4609375}, {"start": 1645.71, "end": 1645.81, "word": " the", "probability": 0.66552734375}, {"start": 1645.81, "end": 1645.81, "word": " basic", "probability": 0.45263671875}, {"start": 1645.81, "end": 1646.55, "word": " information", "probability": 0.59423828125}, {"start": 1646.55, "end": 1646.81, "word": " to", "probability": 0.63916015625}, {"start": 1646.81, "end": 1647.17, "word": " draw", "probability": 0.69140625}, {"start": 1647.17, "end": 1647.77, "word": " it.", "probability": 0.53564453125}, {"start": 1648.27, "end": 1648.75, "word": " Notification", "probability": 0.73828125}, {"start": 1648.75, "end": 1649.15, "word": " defines", "probability": 0.197265625}, {"start": 1649.15, "end": 1649.29, "word": " its", "probability": 0.387451171875}, {"start": 1649.29, "end": 1649.57, "word": " dimensions,", "probability": 0.95556640625}, {"start": 1649.69, "end": 1649.85, "word": " for", "probability": 0.7998046875}, {"start": 1649.85, "end": 1649.97, "word": " example,", "probability": 0.85791015625}, {"start": 1650.41, "end": 1650.55, "word": " based", "probability": 0.439697265625}, {"start": 1650.55, "end": 1650.59, "word": " on", "probability": 0.94873046875}, {"start": 1650.59, "end": 1650.85, "word": " the", "probability": 0.8583984375}, {"start": 1650.85, "end": 1650.97, "word": " size", "probability": 0.333740234375}, {"start": 1650.97, "end": 1651.15, "word": " of", "probability": 0.966796875}, {"start": 1651.15, "end": 1651.15, "word": " the", "probability": 0.78857421875}, {"start": 1651.15, "end": 1651.35, "word": " text", "probability": 0.84765625}, {"start": 1651.35, "end": 1651.45, "word": " that", "probability": 0.3310546875}, {"start": 1651.45, "end": 1651.63, "word": " you", "probability": 0.8701171875}, {"start": 1651.63, "end": 1651.91, "word": " passed", "probability": 0.08380126953125}, {"start": 1651.91, "end": 1652.13, "word": " to", "probability": 0.310791015625}, {"start": 1652.13, "end": 1652.27, "word": " it.", "probability": 0.927734375}, {"start": 1652.85, "end": 1653.13, "word": " So", "probability": 0.5712890625}, {"start": 1653.13, "end": 1653.31, "word": " how", "probability": 0.59228515625}, {"start": 1653.31, "end": 1653.37, "word": " do", "probability": 0.5908203125}, {"start": 1653.37, "end": 1653.53, "word": " you", "probability": 0.9013671875}, {"start": 1653.53, "end": 1653.79, "word": " want", "probability": 0.74462890625}, {"start": 1653.79, "end": 1653.95, "word": " to", "probability": 0.54931640625}, {"start": 1653.95, "end": 1654.03, "word": " do", "probability": 0.316650390625}, {"start": 1654.03, "end": 1654.35, "word": " it?", "probability": 0.64697265625}, {"start": 1654.35, "end": 1654.35, "word": " Make", "probability": 0.301513671875}, {"start": 1654.35, "end": 1654.41, "word": " it", "probability": 0.84033203125}, {"start": 1654.41, "end": 1654.71, "word": " empty", "probability": 0.58837890625}, {"start": 1654.71, "end": 1654.89, "word": " and", "probability": 0.50732421875}, {"start": 1654.89, "end": 1655.03, "word": " then", "probability": 0.6298828125}, {"start": 1655.03, "end": 1656.41, "word": " fill", "probability": 0.6181640625}, {"start": 1656.41, "end": 1656.69, "word": " it,", "probability": 0.92333984375}, {"start": 1656.97, "end": 1657.19, "word": " okay?", "probability": 0.38232421875}, {"start": 1657.67, "end": 1657.99, "word": " So", "probability": 0.389892578125}, {"start": 1657.99, "end": 1658.51, "word": " this", "probability": 0.308837890625}, {"start": 1658.51, "end": 1658.89, "word": " case", "probability": 0.416015625}, {"start": 1658.89, "end": 1659.27, "word": " also", "probability": 0.2200927734375}, {"start": 1659.27, "end": 1659.47, "word": " does", "probability": 0.71533203125}, {"start": 1659.47, "end": 1659.47, "word": " not", "probability": 0.94580078125}, {"start": 1659.47, "end": 1659.79, "word": " solve", "probability": 0.880859375}, {"start": 1659.79, "end": 1659.87, "word": " the", "probability": 0.912109375}, {"start": 1659.87, "end": 1660.09, "word": " problem", "probability": 0.82275390625}, {"start": 1660.09, "end": 1660.31, "word": " of", "probability": 0.47900390625}, {"start": 1660.31, "end": 1660.63, "word": " creating", "probability": 0.1773681640625}, {"start": 1660.63, "end": 1660.75, "word": " an", "probability": 0.8701171875}, {"start": 1660.75, "end": 1660.75, "word": " empty", "probability": 0.87744140625}, {"start": 1660.75, "end": 1661.21, "word": " constructor", "probability": 0.81298828125}, {"start": 1661.21, "end": 1662.09, "word": " because", "probability": 0.48779296875}, {"start": 1662.09, "end": 1662.59, "word": " the", "probability": 0.712890625}, {"start": 1662.59, "end": 1662.91, "word": " object", "probability": 0.91015625}, {"start": 1662.91, "end": 1663.31, "word": " state", "probability": 0.900390625}, {"start": 1663.31, "end": 1663.41, "word": " in", "probability": 0.4130859375}, {"start": 1663.41, "end": 1663.49, "word": " this", "probability": 0.84716796875}, {"start": 1663.49, "end": 1663.63, "word": " case", "probability": 0.90185546875}, {"start": 1663.63, "end": 1663.81, "word": " will", "probability": 0.41015625}, {"start": 1663.81, "end": 1663.81, "word": " be", "probability": 0.529296875}, {"start": 1663.81, "end": 1664.27, "word": " inconsistent.", "probability": 0.91552734375}, {"start": 1664.61, "end": 1664.73, "word": " What", "probability": 0.83349609375}, {"start": 1664.73, "end": 1664.83, "word": " does", "probability": 0.6669921875}, {"start": 1664.83, "end": 1665.23, "word": " inconsistent", "probability": 0.7685546875}, {"start": 1665.23, "end": 1665.47, "word": " mean?", "probability": 0.9658203125}], "temperature": 1.0}, {"id": 69, "seek": 167200, "start": 1666.56, "end": 1672.0, "text": "I mean it's not solid, it's not complete, it's incomplete, okay?", "tokens": [40, 914, 309, 311, 406, 5100, 11, 309, 311, 406, 3566, 11, 309, 311, 31709, 11, 1392, 30], "avg_logprob": -0.7088815852215415, "compression_ratio": 1.28, "no_speech_prob": 0.0, "words": [{"start": 1666.56, "end": 1666.78, "word": "I", "probability": 0.1131591796875}, {"start": 1666.78, "end": 1666.98, "word": " mean", "probability": 0.556640625}, {"start": 1666.98, "end": 1667.28, "word": " it's", "probability": 0.601806640625}, {"start": 1667.28, "end": 1667.44, "word": " not", "probability": 0.701171875}, {"start": 1667.44, "end": 1667.84, "word": " solid,", "probability": 0.112548828125}, {"start": 1668.14, "end": 1669.06, "word": " it's", "probability": 0.6400146484375}, {"start": 1669.06, "end": 1669.18, "word": " not", "probability": 0.473876953125}, {"start": 1669.18, "end": 1669.5, "word": " complete,", "probability": 0.59765625}, {"start": 1670.32, "end": 1670.68, "word": " it's", "probability": 0.739990234375}, {"start": 1670.68, "end": 1671.0, "word": " incomplete,", "probability": 0.405517578125}, {"start": 1671.24, "end": 1672.0, "word": " okay?", "probability": 0.422607421875}], "temperature": 1.0}, {"id": 70, "seek": 170117, "start": 1674.07, "end": 1701.17, "text": "The solution to this problem is through Builder Pattern. Builder Pattern solves this issue with large number of optional parameters and inconsistent state by providing a way to build the object step by step. It provides a method that will actually retain the final object. What is this method that returns the final object that we called create or build? This is a summary of Builder Pattern.", "tokens": [2278, 3827, 281, 341, 1154, 307, 807, 11875, 260, 34367, 77, 13, 11875, 260, 34367, 77, 39890, 341, 2734, 365, 2416, 1230, 295, 17312, 9834, 293, 36891, 1785, 538, 6530, 257, 636, 281, 1322, 264, 2657, 1823, 538, 1823, 13, 467, 6417, 257, 3170, 300, 486, 767, 18340, 264, 2572, 2657, 13, 708, 307, 341, 3170, 300, 11247, 264, 2572, 2657, 300, 321, 1219, 1884, 420, 1322, 30, 639, 307, 257, 12691, 295, 11875, 260, 34367, 77, 13], "avg_logprob": -0.3749999886826624, "compression_ratio": 1.7657657657657657, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1674.07, "end": 1674.51, "word": "The", "probability": 0.0877685546875}, {"start": 1674.51, "end": 1674.69, "word": " solution", "probability": 0.7783203125}, {"start": 1674.69, "end": 1674.89, "word": " to", "probability": 0.3828125}, {"start": 1674.89, "end": 1674.93, "word": " this", "probability": 0.84619140625}, {"start": 1674.93, "end": 1675.21, "word": " problem", "probability": 0.80029296875}, {"start": 1675.21, "end": 1675.35, "word": " is", "probability": 0.5771484375}, {"start": 1675.35, "end": 1675.53, "word": " through", "probability": 0.39208984375}, {"start": 1675.53, "end": 1675.99, "word": " Builder", "probability": 0.55877685546875}, {"start": 1675.99, "end": 1676.33, "word": " Pattern.", "probability": 0.734375}, {"start": 1676.37, "end": 1676.71, "word": " Builder", "probability": 0.829833984375}, {"start": 1676.71, "end": 1677.01, "word": " Pattern", "probability": 0.899169921875}, {"start": 1677.01, "end": 1677.35, "word": " solves", "probability": 0.8359375}, {"start": 1677.35, "end": 1677.55, "word": " this", "probability": 0.89697265625}, {"start": 1677.55, "end": 1677.91, "word": " issue", "probability": 0.9140625}, {"start": 1677.91, "end": 1678.19, "word": " with", "probability": 0.85009765625}, {"start": 1678.19, "end": 1678.47, "word": " large", "probability": 0.712890625}, {"start": 1678.47, "end": 1678.75, "word": " number", "probability": 0.8427734375}, {"start": 1678.75, "end": 1678.93, "word": " of", "probability": 0.96923828125}, {"start": 1678.93, "end": 1679.29, "word": " optional", "probability": 0.765625}, {"start": 1679.29, "end": 1679.79, "word": " parameters", "probability": 0.96533203125}, {"start": 1679.79, "end": 1680.01, "word": " and", "probability": 0.90185546875}, {"start": 1680.01, "end": 1680.39, "word": " inconsistent", "probability": 0.88037109375}, {"start": 1680.39, "end": 1681.01, "word": " state", "probability": 0.79541015625}, {"start": 1681.01, "end": 1681.19, "word": " by", "probability": 0.89404296875}, {"start": 1681.19, "end": 1681.65, "word": " providing", "probability": 0.92578125}, {"start": 1681.65, "end": 1681.91, "word": " a", "probability": 0.98193359375}, {"start": 1681.91, "end": 1682.11, "word": " way", "probability": 0.94970703125}, {"start": 1682.11, "end": 1682.77, "word": " to", "probability": 0.958984375}, {"start": 1682.77, "end": 1683.03, "word": " build", "probability": 0.900390625}, {"start": 1683.03, "end": 1683.21, "word": " the", "probability": 0.84228515625}, {"start": 1683.21, "end": 1683.49, "word": " object", "probability": 0.8388671875}, {"start": 1683.49, "end": 1683.81, "word": " step", "probability": 0.91943359375}, {"start": 1683.81, "end": 1683.99, "word": " by", "probability": 0.84912109375}, {"start": 1683.99, "end": 1684.29, "word": " step.", "probability": 0.92333984375}, {"start": 1684.47, "end": 1684.67, "word": " It", "probability": 0.42333984375}, {"start": 1684.67, "end": 1685.05, "word": " provides", "probability": 0.67578125}, {"start": 1685.05, "end": 1688.79, "word": " a", "probability": 0.9453125}, {"start": 1688.79, "end": 1689.03, "word": " method", "probability": 0.415771484375}, {"start": 1689.03, "end": 1689.31, "word": " that", "probability": 0.7431640625}, {"start": 1689.31, "end": 1689.49, "word": " will", "probability": 0.703125}, {"start": 1689.49, "end": 1690.01, "word": " actually", "probability": 0.7626953125}, {"start": 1690.01, "end": 1690.41, "word": " retain", "probability": 0.494384765625}, {"start": 1690.41, "end": 1690.61, "word": " the", "probability": 0.9052734375}, {"start": 1690.61, "end": 1691.01, "word": " final", "probability": 0.93505859375}, {"start": 1691.01, "end": 1691.87, "word": " object.", "probability": 0.974609375}, {"start": 1691.93, "end": 1692.09, "word": " What", "probability": 0.60595703125}, {"start": 1692.09, "end": 1692.11, "word": " is", "probability": 0.810546875}, {"start": 1692.11, "end": 1692.29, "word": " this", "probability": 0.70166015625}, {"start": 1692.29, "end": 1692.57, "word": " method", "probability": 0.9423828125}, {"start": 1692.57, "end": 1692.75, "word": " that", "probability": 0.75244140625}, {"start": 1692.75, "end": 1693.01, "word": " returns", "probability": 0.472412109375}, {"start": 1693.01, "end": 1693.13, "word": " the", "probability": 0.81689453125}, {"start": 1693.13, "end": 1693.37, "word": " final", "probability": 0.9052734375}, {"start": 1693.37, "end": 1693.77, "word": " object", "probability": 0.9775390625}, {"start": 1693.77, "end": 1694.17, "word": " that", "probability": 0.419677734375}, {"start": 1694.17, "end": 1694.37, "word": " we", "probability": 0.9033203125}, {"start": 1694.37, "end": 1694.67, "word": " called", "probability": 0.31689453125}, {"start": 1694.67, "end": 1695.27, "word": " create", "probability": 0.428466796875}, {"start": 1695.27, "end": 1695.59, "word": " or", "probability": 0.89697265625}, {"start": 1695.59, "end": 1696.31, "word": " build?", "probability": 0.923828125}, {"start": 1697.61, "end": 1698.17, "word": " This", "probability": 0.2010498046875}, {"start": 1698.17, "end": 1698.37, "word": " is", "probability": 0.8642578125}, {"start": 1698.37, "end": 1698.53, "word": " a", "probability": 0.27685546875}, {"start": 1698.53, "end": 1698.67, "word": " summary", "probability": 0.3251953125}, {"start": 1698.67, "end": 1699.31, "word": " of", "probability": 0.83154296875}, {"start": 1699.31, "end": 1700.71, "word": " Builder", "probability": 0.8203125}, {"start": 1700.71, "end": 1701.17, "word": " Pattern.", "probability": 0.956298828125}], "temperature": 1.0}, {"id": 71, "seek": 172988, "start": 1701.86, "end": 1729.88, "text": "Now we will enter in a new design pattern for this lecture We will explain the next lectures Dependency Injection But there is still a small point that I would like to touch on which is the subject of assignment that I gave you I explained this assignment, right? I opened the assignment on the model and I left it for about two weeks For example, for those who are still weak in GUI or something like that, if they want to learn something, they should learn so that they can do the assignment", "tokens": [13267, 321, 486, 3242, 294, 257, 777, 1715, 5102, 337, 341, 7991, 492, 486, 2903, 264, 958, 16564, 4056, 521, 3020, 682, 1020, 313, 583, 456, 307, 920, 257, 1359, 935, 300, 286, 576, 411, 281, 2557, 322, 597, 307, 264, 3983, 295, 15187, 300, 286, 2729, 291, 286, 8825, 341, 15187, 11, 558, 30, 286, 5625, 264, 15187, 322, 264, 2316, 293, 286, 1411, 309, 337, 466, 732, 3259, 1171, 1365, 11, 337, 729, 567, 366, 920, 5336, 294, 17917, 40, 420, 746, 411, 300, 11, 498, 436, 528, 281, 1466, 746, 11, 436, 820, 1466, 370, 300, 436, 393, 360, 264, 15187], "avg_logprob": -0.5517857233683269, "compression_ratio": 1.779783393501805, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 1701.86, "end": 1702.3, "word": "Now", "probability": 0.042633056640625}, {"start": 1702.3, "end": 1702.52, "word": " we", "probability": 0.62451171875}, {"start": 1702.52, "end": 1702.52, "word": " will", "probability": 0.53076171875}, {"start": 1702.52, "end": 1702.8, "word": " enter", "probability": 0.438720703125}, {"start": 1702.8, "end": 1703.0, "word": " in", "probability": 0.3876953125}, {"start": 1703.0, "end": 1703.3, "word": " a", "probability": 0.410400390625}, {"start": 1703.3, "end": 1703.36, "word": " new", "probability": 0.8701171875}, {"start": 1703.36, "end": 1703.58, "word": " design", "probability": 0.6015625}, {"start": 1703.58, "end": 1703.92, "word": " pattern", "probability": 0.88818359375}, {"start": 1703.92, "end": 1704.46, "word": " for", "probability": 0.5947265625}, {"start": 1704.46, "end": 1705.08, "word": " this", "probability": 0.84619140625}, {"start": 1705.08, "end": 1705.44, "word": " lecture", "probability": 0.57861328125}, {"start": 1705.44, "end": 1706.56, "word": " We", "probability": 0.387451171875}, {"start": 1706.56, "end": 1707.08, "word": " will", "probability": 0.87109375}, {"start": 1707.08, "end": 1707.3, "word": " explain", "probability": 0.76513671875}, {"start": 1707.3, "end": 1707.94, "word": " the", "probability": 0.34619140625}, {"start": 1707.94, "end": 1708.0, "word": " next", "probability": 0.433349609375}, {"start": 1708.0, "end": 1708.42, "word": " lectures", "probability": 0.69091796875}, {"start": 1708.42, "end": 1709.12, "word": " Dependency", "probability": 0.6770426432291666}, {"start": 1709.12, "end": 1709.76, "word": " Injection", "probability": 0.8889973958333334}, {"start": 1709.76, "end": 1711.44, "word": " But", "probability": 0.54541015625}, {"start": 1711.44, "end": 1711.68, "word": " there", "probability": 0.376953125}, {"start": 1711.68, "end": 1711.74, "word": " is", "probability": 0.8486328125}, {"start": 1711.74, "end": 1711.78, "word": " still", "probability": 0.33740234375}, {"start": 1711.78, "end": 1712.08, "word": " a", "probability": 0.80517578125}, {"start": 1712.08, "end": 1712.3, "word": " small", "probability": 0.66650390625}, {"start": 1712.3, "end": 1712.3, "word": " point", "probability": 0.81103515625}, {"start": 1712.3, "end": 1712.56, "word": " that", "probability": 0.37841796875}, {"start": 1712.56, "end": 1712.56, "word": " I", "probability": 0.947265625}, {"start": 1712.56, "end": 1712.74, "word": " would", "probability": 0.257568359375}, {"start": 1712.74, "end": 1713.52, "word": " like", "probability": 0.88037109375}, {"start": 1713.52, "end": 1713.52, "word": " to", "probability": 0.9638671875}, {"start": 1713.52, "end": 1713.86, "word": " touch", "probability": 0.0966796875}, {"start": 1713.86, "end": 1714.18, "word": " on", "probability": 0.367919921875}, {"start": 1714.18, "end": 1714.32, "word": " which", "probability": 0.381591796875}, {"start": 1714.32, "end": 1714.46, "word": " is", "probability": 0.93310546875}, {"start": 1714.46, "end": 1714.5, "word": " the", "probability": 0.399658203125}, {"start": 1714.5, "end": 1714.66, "word": " subject", "probability": 0.309814453125}, {"start": 1714.66, "end": 1714.78, "word": " of", "probability": 0.8818359375}, {"start": 1714.78, "end": 1715.26, "word": " assignment", "probability": 0.5712890625}, {"start": 1715.26, "end": 1716.48, "word": " that", "probability": 0.2332763671875}, {"start": 1716.48, "end": 1716.52, "word": " I", "probability": 0.88330078125}, {"start": 1716.52, "end": 1716.7, "word": " gave", "probability": 0.64453125}, {"start": 1716.7, "end": 1716.88, "word": " you", "probability": 0.84228515625}, {"start": 1716.88, "end": 1717.7, "word": " I", "probability": 0.47705078125}, {"start": 1717.7, "end": 1718.12, "word": " explained", "probability": 0.5537109375}, {"start": 1718.12, "end": 1718.32, "word": " this", "probability": 0.66162109375}, {"start": 1718.32, "end": 1718.72, "word": " assignment,", "probability": 0.95166015625}, {"start": 1718.86, "end": 1718.92, "word": " right?", "probability": 0.449951171875}, {"start": 1718.94, "end": 1719.16, "word": " I", "probability": 0.97021484375}, {"start": 1719.16, "end": 1719.48, "word": " opened", "probability": 0.50537109375}, {"start": 1719.48, "end": 1719.72, "word": " the", "probability": 0.6396484375}, {"start": 1719.72, "end": 1720.08, "word": " assignment", "probability": 0.7373046875}, {"start": 1720.08, "end": 1720.3, "word": " on", "probability": 0.75048828125}, {"start": 1720.3, "end": 1720.42, "word": " the", "probability": 0.55078125}, {"start": 1720.42, "end": 1720.7, "word": " model", "probability": 0.67041015625}, {"start": 1720.7, "end": 1721.44, "word": " and", "probability": 0.7236328125}, {"start": 1721.44, "end": 1721.86, "word": " I", "probability": 0.39501953125}, {"start": 1721.86, "end": 1722.08, "word": " left", "probability": 0.2496337890625}, {"start": 1722.08, "end": 1722.22, "word": " it", "probability": 0.79248046875}, {"start": 1722.22, "end": 1722.32, "word": " for", "probability": 0.69580078125}, {"start": 1722.32, "end": 1722.6, "word": " about", "probability": 0.51416015625}, {"start": 1722.6, "end": 1723.08, "word": " two", "probability": 0.7138671875}, {"start": 1723.08, "end": 1723.08, "word": " weeks", "probability": 0.8828125}, {"start": 1723.08, "end": 1723.86, "word": " For", "probability": 0.27734375}, {"start": 1723.86, "end": 1725.12, "word": " example,", "probability": 0.9482421875}, {"start": 1725.36, "end": 1725.36, "word": " for", "probability": 0.185791015625}, {"start": 1725.36, "end": 1725.58, "word": " those", "probability": 0.374267578125}, {"start": 1725.58, "end": 1725.58, "word": " who", "probability": 0.779296875}, {"start": 1725.58, "end": 1725.6, "word": " are", "probability": 0.69873046875}, {"start": 1725.6, "end": 1725.6, "word": " still", "probability": 0.63330078125}, {"start": 1725.6, "end": 1725.9, "word": " weak", "probability": 0.86572265625}, {"start": 1725.9, "end": 1726.06, "word": " in", "probability": 0.837890625}, {"start": 1726.06, "end": 1726.56, "word": " GUI", "probability": 0.89892578125}, {"start": 1726.56, "end": 1726.68, "word": " or", "probability": 0.5869140625}, {"start": 1726.68, "end": 1726.94, "word": " something", "probability": 0.2012939453125}, {"start": 1726.94, "end": 1726.94, "word": " like", "probability": 0.49853515625}, {"start": 1726.94, "end": 1726.96, "word": " that,", "probability": 0.86767578125}, {"start": 1727.0, "end": 1727.06, "word": " if", "probability": 0.564453125}, {"start": 1727.06, "end": 1727.18, "word": " they", "probability": 0.51025390625}, {"start": 1727.18, "end": 1727.2, "word": " want", "probability": 0.84033203125}, {"start": 1727.2, "end": 1727.28, "word": " to", "probability": 0.96875}, {"start": 1727.28, "end": 1727.5, "word": " learn", "probability": 0.962890625}, {"start": 1727.5, "end": 1727.94, "word": " something,", "probability": 0.8056640625}, {"start": 1728.46, "end": 1728.52, "word": " they", "probability": 0.77197265625}, {"start": 1728.52, "end": 1728.58, "word": " should", "probability": 0.3798828125}, {"start": 1728.58, "end": 1728.8, "word": " learn", "probability": 0.9365234375}, {"start": 1728.8, "end": 1729.0, "word": " so", "probability": 0.281005859375}, {"start": 1729.0, "end": 1729.12, "word": " that", "probability": 0.64404296875}, {"start": 1729.12, "end": 1729.16, "word": " they", "probability": 0.85302734375}, {"start": 1729.16, "end": 1729.32, "word": " can", "probability": 0.90576171875}, {"start": 1729.32, "end": 1729.5, "word": " do", "probability": 0.6865234375}, {"start": 1729.5, "end": 1729.64, "word": " the", "probability": 0.76171875}, {"start": 1729.64, "end": 1729.88, "word": " assignment", "probability": 0.927734375}], "temperature": 1.0}, {"id": 72, "seek": 174346, "start": 1730.02, "end": 1743.46, "text": "because the first part is the tabs explanation, right? I want to make a new class and put it in the program to show the tab because the second task that you need which is in the slider is the search program", "tokens": [17566, 264, 700, 644, 307, 264, 20743, 10835, 11, 558, 30, 286, 528, 281, 652, 257, 777, 1508, 293, 829, 309, 294, 264, 1461, 281, 855, 264, 4421, 570, 264, 1150, 5633, 300, 291, 643, 597, 307, 294, 264, 26046, 307, 264, 3164, 1461], "avg_logprob": -0.5989583121405707, "compression_ratio": 1.5036496350364963, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 1730.02, "end": 1730.22, "word": "because", "probability": 0.08428955078125}, {"start": 1730.22, "end": 1730.36, "word": " the", "probability": 0.6669921875}, {"start": 1730.36, "end": 1730.4, "word": " first", "probability": 0.82421875}, {"start": 1730.4, "end": 1730.62, "word": " part", "probability": 0.65966796875}, {"start": 1730.62, "end": 1731.04, "word": " is", "probability": 0.339111328125}, {"start": 1731.04, "end": 1731.2, "word": " the", "probability": 0.171630859375}, {"start": 1731.2, "end": 1732.06, "word": " tabs", "probability": 0.45263671875}, {"start": 1732.06, "end": 1732.06, "word": " explanation,", "probability": 0.52490234375}, {"start": 1732.28, "end": 1732.52, "word": " right?", "probability": 0.383056640625}, {"start": 1732.66, "end": 1732.82, "word": " I", "probability": 0.2203369140625}, {"start": 1732.82, "end": 1733.46, "word": " want", "probability": 0.37841796875}, {"start": 1733.46, "end": 1733.5, "word": " to", "probability": 0.9619140625}, {"start": 1733.5, "end": 1733.66, "word": " make", "probability": 0.404541015625}, {"start": 1733.66, "end": 1733.78, "word": " a", "probability": 0.958984375}, {"start": 1733.78, "end": 1734.28, "word": " new", "probability": 0.912109375}, {"start": 1734.28, "end": 1734.28, "word": " class", "probability": 0.9228515625}, {"start": 1734.28, "end": 1734.6, "word": " and", "probability": 0.75830078125}, {"start": 1734.6, "end": 1734.8, "word": " put", "probability": 0.417236328125}, {"start": 1734.8, "end": 1734.86, "word": " it", "probability": 0.8857421875}, {"start": 1734.86, "end": 1734.96, "word": " in", "probability": 0.83544921875}, {"start": 1734.96, "end": 1735.06, "word": " the", "probability": 0.82568359375}, {"start": 1735.06, "end": 1735.4, "word": " program", "probability": 0.728515625}, {"start": 1735.4, "end": 1735.56, "word": " to", "probability": 0.1981201171875}, {"start": 1735.56, "end": 1735.86, "word": " show", "probability": 0.5625}, {"start": 1735.86, "end": 1736.5, "word": " the", "probability": 0.732421875}, {"start": 1736.5, "end": 1736.74, "word": " tab", "probability": 0.58984375}, {"start": 1736.74, "end": 1737.38, "word": " because", "probability": 0.3564453125}, {"start": 1737.38, "end": 1737.54, "word": " the", "probability": 0.908203125}, {"start": 1737.54, "end": 1737.54, "word": " second", "probability": 0.82080078125}, {"start": 1737.54, "end": 1738.3, "word": " task", "probability": 0.89404296875}, {"start": 1738.3, "end": 1738.54, "word": " that", "probability": 0.3349609375}, {"start": 1738.54, "end": 1739.14, "word": " you", "probability": 0.57470703125}, {"start": 1739.14, "end": 1739.9, "word": " need", "probability": 0.4833984375}, {"start": 1739.9, "end": 1741.14, "word": " which", "probability": 0.2205810546875}, {"start": 1741.14, "end": 1741.68, "word": " is", "probability": 0.87353515625}, {"start": 1741.68, "end": 1741.9, "word": " in", "probability": 0.343017578125}, {"start": 1741.9, "end": 1742.18, "word": " the", "probability": 0.90283203125}, {"start": 1742.18, "end": 1742.48, "word": " slider", "probability": 0.62451171875}, {"start": 1742.48, "end": 1742.64, "word": " is", "probability": 0.75390625}, {"start": 1742.64, "end": 1742.78, "word": " the", "probability": 0.6044921875}, {"start": 1742.78, "end": 1743.36, "word": " search", "probability": 0.9013671875}, {"start": 1743.36, "end": 1743.46, "word": " program", "probability": 0.77294921875}], "temperature": 1.0}, {"id": 73, "seek": 176204, "start": 1744.16, "end": 1762.04, "text": "What is a search program? In search programs, there is a search and sometimes the search is divided into criteria. For example, I want to search for employee data. You put here what you want to search for and choose search from here.", "tokens": [3748, 307, 257, 3164, 1461, 30, 682, 3164, 4268, 11, 456, 307, 257, 3164, 293, 2171, 264, 3164, 307, 6666, 666, 11101, 13, 1171, 1365, 11, 286, 528, 281, 3164, 337, 10738, 1412, 13, 509, 829, 510, 437, 291, 528, 281, 3164, 337, 293, 2826, 3164, 490, 510, 13], "avg_logprob": -0.6406250011920929, "compression_ratio": 1.6408450704225352, "no_speech_prob": 2.682209014892578e-06, "words": [{"start": 1744.16, "end": 1744.42, "word": "What", "probability": 0.228271484375}, {"start": 1744.42, "end": 1744.52, "word": " is", "probability": 0.701171875}, {"start": 1744.52, "end": 1744.88, "word": " a", "probability": 0.451171875}, {"start": 1744.88, "end": 1745.06, "word": " search", "probability": 0.533203125}, {"start": 1745.06, "end": 1745.06, "word": " program?", "probability": 0.564453125}, {"start": 1745.5, "end": 1745.98, "word": " In", "probability": 0.1063232421875}, {"start": 1745.98, "end": 1747.36, "word": " search", "probability": 0.6484375}, {"start": 1747.36, "end": 1747.54, "word": " programs,", "probability": 0.7421875}, {"start": 1747.54, "end": 1747.54, "word": " there", "probability": 0.20654296875}, {"start": 1747.54, "end": 1747.54, "word": " is", "probability": 0.257080078125}, {"start": 1747.54, "end": 1747.62, "word": " a", "probability": 0.6572265625}, {"start": 1747.62, "end": 1748.02, "word": " search", "probability": 0.74755859375}, {"start": 1748.02, "end": 1749.2, "word": " and", "probability": 0.17431640625}, {"start": 1749.2, "end": 1750.28, "word": " sometimes", "probability": 0.2294921875}, {"start": 1750.28, "end": 1750.5, "word": " the", "probability": 0.409423828125}, {"start": 1750.5, "end": 1750.74, "word": " search", "probability": 0.9609375}, {"start": 1750.74, "end": 1751.1, "word": " is", "probability": 0.75634765625}, {"start": 1751.1, "end": 1751.44, "word": " divided", "probability": 0.71484375}, {"start": 1751.44, "end": 1751.64, "word": " into", "probability": 0.71826171875}, {"start": 1751.64, "end": 1752.18, "word": " criteria.", "probability": 0.6005859375}, {"start": 1752.42, "end": 1752.68, "word": " For", "probability": 0.7392578125}, {"start": 1752.68, "end": 1752.86, "word": " example,", "probability": 0.92724609375}, {"start": 1752.98, "end": 1753.08, "word": " I", "probability": 0.78955078125}, {"start": 1753.08, "end": 1753.28, "word": " want", "probability": 0.2052001953125}, {"start": 1753.28, "end": 1753.28, "word": " to", "probability": 0.95947265625}, {"start": 1753.28, "end": 1753.52, "word": " search", "probability": 0.75341796875}, {"start": 1753.52, "end": 1753.72, "word": " for", "probability": 0.72705078125}, {"start": 1753.72, "end": 1753.84, "word": " employee", "probability": 0.305908203125}, {"start": 1753.84, "end": 1754.78, "word": " data.", "probability": 0.54296875}, {"start": 1757.02, "end": 1757.5, "word": " You", "probability": 0.365478515625}, {"start": 1757.5, "end": 1757.86, "word": " put", "probability": 0.48681640625}, {"start": 1757.86, "end": 1758.26, "word": " here", "probability": 0.681640625}, {"start": 1758.26, "end": 1759.64, "word": " what", "probability": 0.350341796875}, {"start": 1759.64, "end": 1759.92, "word": " you", "probability": 0.91259765625}, {"start": 1759.92, "end": 1760.14, "word": " want", "probability": 0.6416015625}, {"start": 1760.14, "end": 1760.14, "word": " to", "probability": 0.9345703125}, {"start": 1760.14, "end": 1760.36, "word": " search", "probability": 0.89208984375}, {"start": 1760.36, "end": 1760.56, "word": " for", "probability": 0.6357421875}, {"start": 1760.56, "end": 1760.8, "word": " and", "probability": 0.6015625}, {"start": 1760.8, "end": 1761.22, "word": " choose", "probability": 0.320068359375}, {"start": 1761.22, "end": 1762.04, "word": " search", "probability": 0.34814453125}, {"start": 1762.04, "end": 1762.04, "word": " from", "probability": 0.5859375}, {"start": 1762.04, "end": 1762.04, "word": " here.", "probability": 0.8095703125}], "temperature": 1.0}, {"id": 74, "seek": 179230, "start": 1762.86, "end": 1792.3, "text": " Criteria, what does search criteria mean? Do you want to search for the first name? Or the last name? Or the title of the employee? Or his job title? You need to specify what you want to search for For example, if I deal with a program with two employees, each employee represents an object of the type of employee, the class is called employee The basic data of the employee, which is for example ID, first name, last name", "tokens": [4779, 1681, 654, 11, 437, 775, 3164, 11101, 914, 30, 1144, 291, 528, 281, 3164, 337, 264, 700, 1315, 30, 1610, 264, 1036, 1315, 30, 1610, 264, 4876, 295, 264, 10738, 30, 1610, 702, 1691, 4876, 30, 509, 643, 281, 16500, 437, 291, 528, 281, 3164, 337, 1171, 1365, 11, 498, 286, 2028, 365, 257, 1461, 365, 732, 6619, 11, 1184, 10738, 8855, 364, 2657, 295, 264, 2010, 295, 10738, 11, 264, 1508, 307, 1219, 10738, 440, 3875, 1412, 295, 264, 10738, 11, 597, 307, 337, 1365, 7348, 11, 700, 1315, 11, 1036, 1315], "avg_logprob": -0.5200657919833535, "compression_ratio": 1.9013452914798206, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 1762.86, "end": 1763.34, "word": " Criteria,", "probability": 0.6909586588541666}, {"start": 1763.38, "end": 1763.52, "word": " what", "probability": 0.57666015625}, {"start": 1763.52, "end": 1763.6, "word": " does", "probability": 0.52734375}, {"start": 1763.6, "end": 1763.86, "word": " search", "probability": 0.62744140625}, {"start": 1763.86, "end": 1764.42, "word": " criteria", "probability": 0.73681640625}, {"start": 1764.42, "end": 1764.42, "word": " mean?", "probability": 0.81982421875}, {"start": 1764.52, "end": 1764.66, "word": " Do", "probability": 0.1556396484375}, {"start": 1764.66, "end": 1764.76, "word": " you", "probability": 0.94140625}, {"start": 1764.76, "end": 1764.86, "word": " want", "probability": 0.471923828125}, {"start": 1764.86, "end": 1765.0, "word": " to", "probability": 0.96044921875}, {"start": 1765.0, "end": 1765.2, "word": " search", "probability": 0.6923828125}, {"start": 1765.2, "end": 1765.4, "word": " for", "probability": 0.580078125}, {"start": 1765.4, "end": 1765.48, "word": " the", "probability": 0.822265625}, {"start": 1765.48, "end": 1765.5, "word": " first", "probability": 0.80712890625}, {"start": 1765.5, "end": 1765.76, "word": " name?", "probability": 0.845703125}, {"start": 1766.92, "end": 1767.24, "word": " Or", "probability": 0.69677734375}, {"start": 1767.24, "end": 1767.42, "word": " the", "probability": 0.5537109375}, {"start": 1767.42, "end": 1767.46, "word": " last", "probability": 0.8447265625}, {"start": 1767.46, "end": 1768.02, "word": " name?", "probability": 0.8896484375}, {"start": 1768.4, "end": 1768.8, "word": " Or", "probability": 0.84716796875}, {"start": 1768.8, "end": 1768.9, "word": " the", "probability": 0.63525390625}, {"start": 1768.9, "end": 1769.18, "word": " title", "probability": 0.1497802734375}, {"start": 1769.18, "end": 1769.34, "word": " of", "probability": 0.92333984375}, {"start": 1769.34, "end": 1769.38, "word": " the", "probability": 0.716796875}, {"start": 1769.38, "end": 1769.64, "word": " employee?", "probability": 0.46875}, {"start": 1770.08, "end": 1770.4, "word": " Or", "probability": 0.9072265625}, {"start": 1770.4, "end": 1771.06, "word": " his", "probability": 0.65185546875}, {"start": 1771.06, "end": 1771.24, "word": " job", "probability": 0.88427734375}, {"start": 1771.24, "end": 1771.68, "word": " title?", "probability": 0.9736328125}, {"start": 1772.46, "end": 1772.94, "word": " You", "probability": 0.51025390625}, {"start": 1772.94, "end": 1773.18, "word": " need", "probability": 0.404296875}, {"start": 1773.18, "end": 1773.22, "word": " to", "probability": 0.9677734375}, {"start": 1773.22, "end": 1773.5, "word": " specify", "probability": 0.254150390625}, {"start": 1773.5, "end": 1773.74, "word": " what", "probability": 0.82763671875}, {"start": 1773.74, "end": 1773.8, "word": " you", "probability": 0.6416015625}, {"start": 1773.8, "end": 1773.94, "word": " want", "probability": 0.448974609375}, {"start": 1773.94, "end": 1774.0, "word": " to", "probability": 0.94970703125}, {"start": 1774.0, "end": 1774.22, "word": " search", "probability": 0.9228515625}, {"start": 1774.22, "end": 1775.0, "word": " for", "probability": 0.423828125}, {"start": 1775.0, "end": 1775.72, "word": " For", "probability": 0.315185546875}, {"start": 1775.72, "end": 1778.1, "word": " example,", "probability": 0.9248046875}, {"start": 1778.34, "end": 1778.66, "word": " if", "probability": 0.34130859375}, {"start": 1778.66, "end": 1779.4, "word": " I", "probability": 0.8212890625}, {"start": 1779.4, "end": 1779.72, "word": " deal", "probability": 0.25634765625}, {"start": 1779.72, "end": 1779.96, "word": " with", "probability": 0.89453125}, {"start": 1779.96, "end": 1780.56, "word": " a", "probability": 0.368896484375}, {"start": 1780.56, "end": 1780.56, "word": " program", "probability": 0.60791015625}, {"start": 1780.56, "end": 1781.72, "word": " with", "probability": 0.404296875}, {"start": 1781.72, "end": 1781.9, "word": " two", "probability": 0.677734375}, {"start": 1781.9, "end": 1782.2, "word": " employees,", "probability": 0.87548828125}, {"start": 1783.56, "end": 1784.06, "word": " each", "probability": 0.310791015625}, {"start": 1784.06, "end": 1784.62, "word": " employee", "probability": 0.7568359375}, {"start": 1784.62, "end": 1785.14, "word": " represents", "probability": 0.61669921875}, {"start": 1785.14, "end": 1785.36, "word": " an", "probability": 0.8291015625}, {"start": 1785.36, "end": 1785.66, "word": " object", "probability": 0.3720703125}, {"start": 1785.66, "end": 1785.8, "word": " of", "probability": 0.6552734375}, {"start": 1785.8, "end": 1785.9, "word": " the", "probability": 0.611328125}, {"start": 1785.9, "end": 1786.16, "word": " type", "probability": 0.55908203125}, {"start": 1786.16, "end": 1786.46, "word": " of", "probability": 0.2235107421875}, {"start": 1786.46, "end": 1786.84, "word": " employee,", "probability": 0.80859375}, {"start": 1786.96, "end": 1787.06, "word": " the", "probability": 0.2255859375}, {"start": 1787.06, "end": 1787.32, "word": " class", "probability": 0.8701171875}, {"start": 1787.32, "end": 1787.46, "word": " is", "probability": 0.61083984375}, {"start": 1787.46, "end": 1787.64, "word": " called", "probability": 0.787109375}, {"start": 1787.64, "end": 1788.06, "word": " employee", "probability": 0.77978515625}, {"start": 1788.06, "end": 1788.58, "word": " The", "probability": 0.264892578125}, {"start": 1788.58, "end": 1788.72, "word": " basic", "probability": 0.56103515625}, {"start": 1788.72, "end": 1788.82, "word": " data", "probability": 0.2200927734375}, {"start": 1788.82, "end": 1789.0, "word": " of", "probability": 0.89794921875}, {"start": 1789.0, "end": 1789.4, "word": " the", "probability": 0.71875}, {"start": 1789.4, "end": 1789.4, "word": " employee,", "probability": 0.64892578125}, {"start": 1789.98, "end": 1790.08, "word": " which", "probability": 0.66455078125}, {"start": 1790.08, "end": 1790.28, "word": " is", "probability": 0.755859375}, {"start": 1790.28, "end": 1790.44, "word": " for", "probability": 0.28466796875}, {"start": 1790.44, "end": 1790.58, "word": " example", "probability": 0.96484375}, {"start": 1790.58, "end": 1790.94, "word": " ID,", "probability": 0.5927734375}, {"start": 1791.16, "end": 1791.4, "word": " first", "probability": 0.442138671875}, {"start": 1791.4, "end": 1791.66, "word": " name,", "probability": 0.81787109375}, {"start": 1791.74, "end": 1791.96, "word": " last", "probability": 0.86865234375}, {"start": 1791.96, "end": 1792.3, "word": " name", "probability": 0.89990234375}], "temperature": 1.0}, {"id": 75, "seek": 182218, "start": 1793.46, "end": 1822.18, "text": " and job title ok? the objects in any job can be in a database and I read from it it can be in an ArrayList it is for facilitation suppose that you have an ArrayList from what? from what type? from employee type you make a class employee you make objects from it you fill them with any data and you put them in this ArrayList if we make a simple face program we search in this ArrayList what does it mean? for example I say here write Mohammed", "tokens": [293, 1691, 4876, 3133, 30, 264, 6565, 294, 604, 1691, 393, 312, 294, 257, 8149, 293, 286, 1401, 490, 309, 309, 393, 312, 294, 364, 1587, 3458, 43, 468, 309, 307, 337, 10217, 4614, 7297, 300, 291, 362, 364, 1587, 3458, 43, 468, 490, 437, 30, 490, 437, 2010, 30, 490, 10738, 2010, 291, 652, 257, 1508, 10738, 291, 652, 6565, 490, 309, 291, 2836, 552, 365, 604, 1412, 293, 291, 829, 552, 294, 341, 1587, 3458, 43, 468, 498, 321, 652, 257, 2199, 1851, 1461, 321, 3164, 294, 341, 1587, 3458, 43, 468, 437, 775, 309, 914, 30, 337, 1365, 286, 584, 510, 2464, 41910], "avg_logprob": -0.464661208268638, "compression_ratio": 1.9094827586206897, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 1793.46, "end": 1793.68, "word": " and", "probability": 0.269775390625}, {"start": 1793.68, "end": 1793.84, "word": " job", "probability": 0.7470703125}, {"start": 1793.84, "end": 1794.54, "word": " title", "probability": 0.92919921875}, {"start": 1794.54, "end": 1794.88, "word": " ok?", "probability": 0.11572265625}, {"start": 1796.68, "end": 1796.96, "word": " the", "probability": 0.29345703125}, {"start": 1796.96, "end": 1797.6, "word": " objects", "probability": 0.4658203125}, {"start": 1797.6, "end": 1797.82, "word": " in", "probability": 0.429443359375}, {"start": 1797.82, "end": 1797.92, "word": " any", "probability": 0.5458984375}, {"start": 1797.92, "end": 1798.12, "word": " job", "probability": 0.48095703125}, {"start": 1798.12, "end": 1798.5, "word": " can", "probability": 0.45068359375}, {"start": 1798.5, "end": 1799.02, "word": " be", "probability": 0.896484375}, {"start": 1799.02, "end": 1799.54, "word": " in", "probability": 0.7431640625}, {"start": 1799.54, "end": 1799.66, "word": " a", "probability": 0.413330078125}, {"start": 1799.66, "end": 1800.22, "word": " database", "probability": 0.9248046875}, {"start": 1800.22, "end": 1800.88, "word": " and", "probability": 0.30859375}, {"start": 1800.88, "end": 1801.0, "word": " I", "probability": 0.6796875}, {"start": 1801.0, "end": 1801.24, "word": " read", "probability": 0.77001953125}, {"start": 1801.24, "end": 1801.42, "word": " from", "probability": 0.6865234375}, {"start": 1801.42, "end": 1801.68, "word": " it", "probability": 0.724609375}, {"start": 1801.68, "end": 1801.98, "word": " it", "probability": 0.277099609375}, {"start": 1801.98, "end": 1802.22, "word": " can", "probability": 0.8310546875}, {"start": 1802.22, "end": 1802.68, "word": " be", "probability": 0.7666015625}, {"start": 1802.68, "end": 1802.9, "word": " in", "probability": 0.8544921875}, {"start": 1802.9, "end": 1803.04, "word": " an", "probability": 0.478271484375}, {"start": 1803.04, "end": 1803.5, "word": " ArrayList", "probability": 0.654541015625}, {"start": 1803.5, "end": 1803.88, "word": " it", "probability": 0.1927490234375}, {"start": 1803.88, "end": 1804.7, "word": " is", "probability": 0.50537109375}, {"start": 1804.7, "end": 1804.84, "word": " for", "probability": 0.427001953125}, {"start": 1804.84, "end": 1805.3, "word": " facilitation", "probability": 0.563232421875}, {"start": 1805.3, "end": 1805.64, "word": " suppose", "probability": 0.311279296875}, {"start": 1805.64, "end": 1805.84, "word": " that", "probability": 0.44873046875}, {"start": 1805.84, "end": 1806.04, "word": " you", "probability": 0.9541015625}, {"start": 1806.04, "end": 1806.24, "word": " have", "probability": 0.935546875}, {"start": 1806.24, "end": 1806.38, "word": " an", "probability": 0.87890625}, {"start": 1806.38, "end": 1806.98, "word": " ArrayList", "probability": 0.916259765625}, {"start": 1806.98, "end": 1807.94, "word": " from", "probability": 0.286376953125}, {"start": 1807.94, "end": 1808.24, "word": " what?", "probability": 0.68701171875}, {"start": 1808.36, "end": 1808.46, "word": " from", "probability": 0.5751953125}, {"start": 1808.46, "end": 1809.08, "word": " what", "probability": 0.497314453125}, {"start": 1809.08, "end": 1809.08, "word": " type?", "probability": 0.62060546875}, {"start": 1809.5, "end": 1809.72, "word": " from", "probability": 0.492431640625}, {"start": 1809.72, "end": 1810.16, "word": " employee", "probability": 0.4716796875}, {"start": 1810.16, "end": 1810.16, "word": " type", "probability": 0.671875}, {"start": 1810.16, "end": 1810.34, "word": " you", "probability": 0.412353515625}, {"start": 1810.34, "end": 1810.48, "word": " make", "probability": 0.474365234375}, {"start": 1810.48, "end": 1810.6, "word": " a", "probability": 0.8193359375}, {"start": 1810.6, "end": 1810.88, "word": " class", "probability": 0.95263671875}, {"start": 1810.88, "end": 1811.34, "word": " employee", "probability": 0.7939453125}, {"start": 1811.34, "end": 1811.84, "word": " you", "probability": 0.609375}, {"start": 1811.84, "end": 1812.02, "word": " make", "probability": 0.75390625}, {"start": 1812.02, "end": 1812.5, "word": " objects", "probability": 0.931640625}, {"start": 1812.5, "end": 1812.64, "word": " from", "probability": 0.64501953125}, {"start": 1812.64, "end": 1812.64, "word": " it", "probability": 0.7626953125}, {"start": 1812.64, "end": 1812.84, "word": " you", "probability": 0.57421875}, {"start": 1812.84, "end": 1813.0, "word": " fill", "probability": 0.74462890625}, {"start": 1813.0, "end": 1813.12, "word": " them", "probability": 0.81396484375}, {"start": 1813.12, "end": 1813.2, "word": " with", "probability": 0.798828125}, {"start": 1813.2, "end": 1813.34, "word": " any", "probability": 0.75244140625}, {"start": 1813.34, "end": 1813.6, "word": " data", "probability": 0.85205078125}, {"start": 1813.6, "end": 1813.82, "word": " and", "probability": 0.85546875}, {"start": 1813.82, "end": 1813.94, "word": " you", "probability": 0.70361328125}, {"start": 1813.94, "end": 1814.1, "word": " put", "probability": 0.74462890625}, {"start": 1814.1, "end": 1814.2, "word": " them", "probability": 0.873046875}, {"start": 1814.2, "end": 1814.32, "word": " in", "probability": 0.88720703125}, {"start": 1814.32, "end": 1814.5, "word": " this", "probability": 0.7060546875}, {"start": 1814.5, "end": 1815.08, "word": " ArrayList", "probability": 0.942138671875}, {"start": 1815.08, "end": 1816.06, "word": " if", "probability": 0.62890625}, {"start": 1816.06, "end": 1816.22, "word": " we", "probability": 0.8857421875}, {"start": 1816.22, "end": 1816.42, "word": " make", "probability": 0.685546875}, {"start": 1816.42, "end": 1817.08, "word": " a", "probability": 0.892578125}, {"start": 1817.08, "end": 1817.08, "word": " simple", "probability": 0.72900390625}, {"start": 1817.08, "end": 1817.32, "word": " face", "probability": 0.2364501953125}, {"start": 1817.32, "end": 1817.78, "word": " program", "probability": 0.6826171875}, {"start": 1817.78, "end": 1817.98, "word": " we", "probability": 0.410888671875}, {"start": 1817.98, "end": 1818.2, "word": " search", "probability": 0.763671875}, {"start": 1818.2, "end": 1818.36, "word": " in", "probability": 0.80712890625}, {"start": 1818.36, "end": 1818.44, "word": " this", "probability": 0.90771484375}, {"start": 1818.44, "end": 1818.94, "word": " ArrayList", "probability": 0.950927734375}, {"start": 1818.94, "end": 1820.1, "word": " what", "probability": 0.78564453125}, {"start": 1820.1, "end": 1820.26, "word": " does", "probability": 0.79833984375}, {"start": 1820.26, "end": 1820.42, "word": " it", "probability": 0.66259765625}, {"start": 1820.42, "end": 1820.42, "word": " mean?", "probability": 0.9521484375}, {"start": 1820.58, "end": 1820.9, "word": " for", "probability": 0.6064453125}, {"start": 1820.9, "end": 1821.04, "word": " example", "probability": 0.93798828125}, {"start": 1821.04, "end": 1821.14, "word": " I", "probability": 0.5029296875}, {"start": 1821.14, "end": 1821.3, "word": " say", "probability": 0.5751953125}, {"start": 1821.3, "end": 1821.52, "word": " here", "probability": 0.3818359375}, {"start": 1821.52, "end": 1821.78, "word": " write", "probability": 0.395263671875}, {"start": 1821.78, "end": 1822.18, "word": " Mohammed", "probability": 0.347900390625}], "temperature": 1.0}, {"id": 76, "seek": 184159, "start": 1823.37, "end": 1841.59, "text": "Okay? And I choose from here what? For example, first name. And I do a search and I get here all the employees whose name is Mohamed. On the basis of, for example, the program. Then I double click on this and it gives me details. But this is not what we want to do in this game. I can write here Gaza, for example.", "tokens": [8297, 30, 400, 286, 2826, 490, 510, 437, 30, 1171, 1365, 11, 700, 1315, 13, 400, 286, 360, 257, 3164, 293, 286, 483, 510, 439, 264, 6619, 6104, 1315, 307, 16123, 3475, 13, 1282, 264, 5143, 295, 11, 337, 1365, 11, 264, 1461, 13, 1396, 286, 3834, 2052, 322, 341, 293, 309, 2709, 385, 4365, 13, 583, 341, 307, 406, 437, 321, 528, 281, 360, 294, 341, 1216, 13, 286, 393, 2464, 510, 37800, 11, 337, 1365, 13], "avg_logprob": -0.5537974427017984, "compression_ratio": 1.5778894472361809, "no_speech_prob": 2.0265579223632812e-05, "words": [{"start": 1823.3700000000001, "end": 1823.73, "word": "Okay?", "probability": 0.0738525390625}, {"start": 1824.15, "end": 1824.37, "word": " And", "probability": 0.56640625}, {"start": 1824.37, "end": 1824.47, "word": " I", "probability": 0.4892578125}, {"start": 1824.47, "end": 1824.71, "word": " choose", "probability": 0.58740234375}, {"start": 1824.71, "end": 1824.85, "word": " from", "probability": 0.484130859375}, {"start": 1824.85, "end": 1825.11, "word": " here", "probability": 0.814453125}, {"start": 1825.11, "end": 1825.49, "word": " what?", "probability": 0.338623046875}, {"start": 1826.37, "end": 1826.59, "word": " For", "probability": 0.76806640625}, {"start": 1826.59, "end": 1826.75, "word": " example,", "probability": 0.90673828125}, {"start": 1826.85, "end": 1827.09, "word": " first", "probability": 0.413330078125}, {"start": 1827.09, "end": 1827.33, "word": " name.", "probability": 0.802734375}, {"start": 1827.73, "end": 1827.79, "word": " And", "probability": 0.35693359375}, {"start": 1827.79, "end": 1827.85, "word": " I", "probability": 0.8642578125}, {"start": 1827.85, "end": 1827.95, "word": " do", "probability": 0.1602783203125}, {"start": 1827.95, "end": 1828.05, "word": " a", "probability": 0.6064453125}, {"start": 1828.05, "end": 1828.45, "word": " search", "probability": 0.91943359375}, {"start": 1828.45, "end": 1828.91, "word": " and", "probability": 0.344482421875}, {"start": 1828.91, "end": 1828.95, "word": " I", "probability": 0.56298828125}, {"start": 1828.95, "end": 1829.19, "word": " get", "probability": 0.212890625}, {"start": 1829.19, "end": 1829.47, "word": " here", "probability": 0.2359619140625}, {"start": 1829.47, "end": 1829.89, "word": " all", "probability": 0.89794921875}, {"start": 1829.89, "end": 1830.75, "word": " the", "probability": 0.61572265625}, {"start": 1830.75, "end": 1831.17, "word": " employees", "probability": 0.75537109375}, {"start": 1831.17, "end": 1831.35, "word": " whose", "probability": 0.45361328125}, {"start": 1831.35, "end": 1831.59, "word": " name", "probability": 0.517578125}, {"start": 1831.59, "end": 1832.09, "word": " is", "probability": 0.8671875}, {"start": 1832.09, "end": 1832.95, "word": " Mohamed.", "probability": 0.412139892578125}, {"start": 1833.43, "end": 1833.79, "word": " On", "probability": 0.296630859375}, {"start": 1833.79, "end": 1833.87, "word": " the", "probability": 0.80615234375}, {"start": 1833.87, "end": 1833.99, "word": " basis", "probability": 0.77490234375}, {"start": 1833.99, "end": 1834.07, "word": " of,", "probability": 0.421142578125}, {"start": 1834.11, "end": 1834.31, "word": " for", "probability": 0.9267578125}, {"start": 1834.31, "end": 1834.31, "word": " example,", "probability": 0.96435546875}, {"start": 1834.37, "end": 1834.47, "word": " the", "probability": 0.69482421875}, {"start": 1834.47, "end": 1834.73, "word": " program.", "probability": 0.86376953125}, {"start": 1834.91, "end": 1834.97, "word": " Then", "probability": 0.52734375}, {"start": 1834.97, "end": 1835.13, "word": " I", "probability": 0.85498046875}, {"start": 1835.13, "end": 1835.51, "word": " double", "probability": 0.763671875}, {"start": 1835.51, "end": 1835.81, "word": " click", "probability": 0.6630859375}, {"start": 1835.81, "end": 1835.97, "word": " on", "probability": 0.880859375}, {"start": 1835.97, "end": 1836.13, "word": " this", "probability": 0.3876953125}, {"start": 1836.13, "end": 1836.21, "word": " and", "probability": 0.2144775390625}, {"start": 1836.21, "end": 1836.39, "word": " it", "probability": 0.818359375}, {"start": 1836.39, "end": 1836.53, "word": " gives", "probability": 0.72509765625}, {"start": 1836.53, "end": 1836.65, "word": " me", "probability": 0.88037109375}, {"start": 1836.65, "end": 1836.93, "word": " details.", "probability": 0.437744140625}, {"start": 1837.41, "end": 1837.61, "word": " But", "probability": 0.8984375}, {"start": 1837.61, "end": 1837.77, "word": " this", "probability": 0.471435546875}, {"start": 1837.77, "end": 1837.83, "word": " is", "probability": 0.7685546875}, {"start": 1837.83, "end": 1837.93, "word": " not", "probability": 0.859375}, {"start": 1837.93, "end": 1838.19, "word": " what", "probability": 0.427001953125}, {"start": 1838.19, "end": 1838.59, "word": " we", "probability": 0.869140625}, {"start": 1838.59, "end": 1838.85, "word": " want", "probability": 0.3837890625}, {"start": 1838.85, "end": 1838.93, "word": " to", "probability": 0.93505859375}, {"start": 1838.93, "end": 1839.05, "word": " do", "probability": 0.93798828125}, {"start": 1839.05, "end": 1839.15, "word": " in", "probability": 0.25146484375}, {"start": 1839.15, "end": 1839.23, "word": " this", "probability": 0.8662109375}, {"start": 1839.23, "end": 1839.39, "word": " game.", "probability": 0.78466796875}, {"start": 1840.07, "end": 1840.37, "word": " I", "probability": 0.90478515625}, {"start": 1840.37, "end": 1840.55, "word": " can", "probability": 0.90625}, {"start": 1840.55, "end": 1840.81, "word": " write", "probability": 0.83056640625}, {"start": 1840.81, "end": 1840.99, "word": " here", "probability": 0.54736328125}, {"start": 1840.99, "end": 1841.21, "word": " Gaza,", "probability": 0.67138671875}, {"start": 1841.35, "end": 1841.47, "word": " for", "probability": 0.951171875}, {"start": 1841.47, "end": 1841.59, "word": " example.", "probability": 0.9677734375}], "temperature": 1.0}, {"id": 77, "seek": 186478, "start": 1842.46, "end": 1864.78, "text": " and then we choose the search criteria, for example, the title of the search if it is one of the attributes of the title and I say search and it brings me all the employees whose title is Gaza. What is required from us? We need to design this program to be extendable. What does extendable mean? For example, we want to search for the first name. I want to create a class", "tokens": [293, 550, 321, 2826, 264, 3164, 11101, 11, 337, 1365, 11, 264, 4876, 295, 264, 3164, 498, 309, 307, 472, 295, 264, 17212, 295, 264, 4876, 293, 286, 584, 3164, 293, 309, 5607, 385, 439, 264, 6619, 6104, 4876, 307, 37800, 13, 708, 307, 4739, 490, 505, 30, 492, 643, 281, 1715, 341, 1461, 281, 312, 10101, 712, 13, 708, 775, 10101, 712, 914, 30, 1171, 1365, 11, 321, 528, 281, 3164, 337, 264, 700, 1315, 13, 286, 528, 281, 1884, 257, 1508], "avg_logprob": -0.5814732213815054, "compression_ratio": 1.7383177570093458, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1842.46, "end": 1842.68, "word": " and", "probability": 0.21337890625}, {"start": 1842.68, "end": 1842.84, "word": " then", "probability": 0.274658203125}, {"start": 1842.84, "end": 1842.96, "word": " we", "probability": 0.325439453125}, {"start": 1842.96, "end": 1843.14, "word": " choose", "probability": 0.294921875}, {"start": 1843.14, "end": 1843.28, "word": " the", "probability": 0.3896484375}, {"start": 1843.28, "end": 1843.44, "word": " search", "probability": 0.9169921875}, {"start": 1843.44, "end": 1843.92, "word": " criteria,", "probability": 0.7431640625}, {"start": 1844.06, "end": 1844.12, "word": " for", "probability": 0.529296875}, {"start": 1844.12, "end": 1844.2, "word": " example,", "probability": 0.92041015625}, {"start": 1844.3, "end": 1844.34, "word": " the", "probability": 0.311279296875}, {"start": 1844.34, "end": 1844.58, "word": " title", "probability": 0.86083984375}, {"start": 1844.58, "end": 1844.8, "word": " of", "probability": 0.438720703125}, {"start": 1844.8, "end": 1845.0, "word": " the", "probability": 0.603515625}, {"start": 1845.0, "end": 1845.18, "word": " search", "probability": 0.2509765625}, {"start": 1845.18, "end": 1845.54, "word": " if", "probability": 0.406005859375}, {"start": 1845.54, "end": 1845.72, "word": " it", "probability": 0.7958984375}, {"start": 1845.72, "end": 1845.82, "word": " is", "probability": 0.484619140625}, {"start": 1845.82, "end": 1845.92, "word": " one", "probability": 0.280029296875}, {"start": 1845.92, "end": 1846.08, "word": " of", "probability": 0.9638671875}, {"start": 1846.08, "end": 1846.12, "word": " the", "probability": 0.86181640625}, {"start": 1846.12, "end": 1846.52, "word": " attributes", "probability": 0.64013671875}, {"start": 1846.52, "end": 1846.62, "word": " of", "probability": 0.85009765625}, {"start": 1846.62, "end": 1846.68, "word": " the", "probability": 0.85986328125}, {"start": 1846.68, "end": 1846.92, "word": " title", "probability": 0.78076171875}, {"start": 1846.92, "end": 1848.26, "word": " and", "probability": 0.31640625}, {"start": 1848.26, "end": 1848.34, "word": " I", "probability": 0.215087890625}, {"start": 1848.34, "end": 1848.46, "word": " say", "probability": 0.2529296875}, {"start": 1848.46, "end": 1848.86, "word": " search", "probability": 0.80615234375}, {"start": 1848.86, "end": 1848.96, "word": " and", "probability": 0.458251953125}, {"start": 1848.96, "end": 1848.98, "word": " it", "probability": 0.50341796875}, {"start": 1848.98, "end": 1849.12, "word": " brings", "probability": 0.324951171875}, {"start": 1849.12, "end": 1849.22, "word": " me", "probability": 0.318603515625}, {"start": 1849.22, "end": 1849.38, "word": " all", "probability": 0.80029296875}, {"start": 1849.38, "end": 1849.44, "word": " the", "probability": 0.6884765625}, {"start": 1849.44, "end": 1849.76, "word": " employees", "probability": 0.47119140625}, {"start": 1849.76, "end": 1849.9, "word": " whose", "probability": 0.271484375}, {"start": 1849.9, "end": 1850.12, "word": " title", "probability": 0.50830078125}, {"start": 1850.12, "end": 1850.8, "word": " is", "probability": 0.7744140625}, {"start": 1850.8, "end": 1851.44, "word": " Gaza.", "probability": 0.85107421875}, {"start": 1852.06, "end": 1852.46, "word": " What", "probability": 0.12939453125}, {"start": 1852.46, "end": 1852.78, "word": " is", "probability": 0.5546875}, {"start": 1852.78, "end": 1853.14, "word": " required", "probability": 0.525390625}, {"start": 1853.14, "end": 1853.3, "word": " from", "probability": 0.494873046875}, {"start": 1853.3, "end": 1853.5, "word": " us?", "probability": 0.45751953125}, {"start": 1853.94, "end": 1854.06, "word": " We", "probability": 0.79345703125}, {"start": 1854.06, "end": 1854.24, "word": " need", "probability": 0.431640625}, {"start": 1854.24, "end": 1854.64, "word": " to", "probability": 0.96826171875}, {"start": 1854.64, "end": 1854.82, "word": " design", "probability": 0.9287109375}, {"start": 1854.82, "end": 1855.0, "word": " this", "probability": 0.5849609375}, {"start": 1855.0, "end": 1855.38, "word": " program", "probability": 0.76025390625}, {"start": 1855.38, "end": 1855.74, "word": " to", "probability": 0.65234375}, {"start": 1855.74, "end": 1856.18, "word": " be", "probability": 0.84130859375}, {"start": 1856.18, "end": 1857.48, "word": " extendable.", "probability": 0.94189453125}, {"start": 1857.76, "end": 1857.88, "word": " What", "probability": 0.6044921875}, {"start": 1857.88, "end": 1857.96, "word": " does", "probability": 0.466064453125}, {"start": 1857.96, "end": 1858.6, "word": " extendable", "probability": 0.9189453125}, {"start": 1858.6, "end": 1858.6, "word": " mean?", "probability": 0.95703125}, {"start": 1859.08, "end": 1859.48, "word": " For", "probability": 0.765625}, {"start": 1859.48, "end": 1859.66, "word": " example,", "probability": 0.94287109375}, {"start": 1860.8, "end": 1861.08, "word": " we", "probability": 0.75537109375}, {"start": 1861.08, "end": 1861.34, "word": " want", "probability": 0.457763671875}, {"start": 1861.34, "end": 1861.44, "word": " to", "probability": 0.96875}, {"start": 1861.44, "end": 1861.68, "word": " search", "probability": 0.54248046875}, {"start": 1861.68, "end": 1861.98, "word": " for", "probability": 0.56787109375}, {"start": 1861.98, "end": 1862.84, "word": " the", "probability": 0.321044921875}, {"start": 1862.84, "end": 1863.12, "word": " first", "probability": 0.72314453125}, {"start": 1863.12, "end": 1863.34, "word": " name.", "probability": 0.92822265625}, {"start": 1863.58, "end": 1863.62, "word": " I", "probability": 0.91259765625}, {"start": 1863.62, "end": 1863.74, "word": " want", "probability": 0.548828125}, {"start": 1863.74, "end": 1864.0, "word": " to", "probability": 0.96630859375}, {"start": 1864.0, "end": 1864.22, "word": " create", "probability": 0.308349609375}, {"start": 1864.22, "end": 1864.36, "word": " a", "probability": 0.9736328125}, {"start": 1864.36, "end": 1864.78, "word": " class", "probability": 0.97021484375}], "temperature": 1.0}, {"id": 78, "seek": 189545, "start": 1874.83, "end": 1895.45, "text": " search by name search by name search by name search by name search by name", "tokens": [3164, 538, 1315, 3164, 538, 1315, 3164, 538, 1315, 3164, 538, 1315, 3164, 538, 1315], "avg_logprob": -0.5356445163488388, "compression_ratio": 2.8846153846153846, "no_speech_prob": 2.866983413696289e-05, "words": [{"start": 1874.8300000000002, "end": 1875.8700000000001, "word": " search", "probability": 0.054229736328125}, {"start": 1875.8700000000001, "end": 1876.91, "word": " by", "probability": 0.65380859375}, {"start": 1876.91, "end": 1877.27, "word": " name", "probability": 0.8642578125}, {"start": 1877.27, "end": 1880.57, "word": " search", "probability": 0.57080078125}, {"start": 1880.57, "end": 1880.81, "word": " by", "probability": 0.88916015625}, {"start": 1880.81, "end": 1882.77, "word": " name", "probability": 0.88427734375}, {"start": 1882.77, "end": 1889.67, "word": " search", "probability": 0.5634765625}, {"start": 1889.67, "end": 1892.25, "word": " by", "probability": 0.91552734375}, {"start": 1892.25, "end": 1892.45, "word": " name", "probability": 0.890625}, {"start": 1892.45, "end": 1894.07, "word": " search", "probability": 0.5673828125}, {"start": 1894.07, "end": 1894.59, "word": " by", "probability": 0.95556640625}, {"start": 1894.59, "end": 1895.03, "word": " name", "probability": 0.8974609375}, {"start": 1895.03, "end": 1895.23, "word": " search", "probability": 0.70263671875}, {"start": 1895.23, "end": 1895.25, "word": " by", "probability": 0.96044921875}, {"start": 1895.25, "end": 1895.45, "word": " name", "probability": 0.90576171875}], "temperature": 1.0}, {"id": 79, "seek": 192472, "start": 1895.92, "end": 1924.72, "text": " Okay, from the attributes of the employee in the title I go and make a new class Okay, I do the search in the title Same thing, I take the class and throw it in the book Okay, I run the program I find out that I have a new search criteria in addition to the name What? Search by address If I choose it and write a word here I search in all employee data In the address of the word", "tokens": [1033, 11, 490, 264, 17212, 295, 264, 10738, 294, 264, 4876, 286, 352, 293, 652, 257, 777, 1508, 1033, 11, 286, 360, 264, 3164, 294, 264, 4876, 10635, 551, 11, 286, 747, 264, 1508, 293, 3507, 309, 294, 264, 1446, 1033, 11, 286, 1190, 264, 1461, 286, 915, 484, 300, 286, 362, 257, 777, 3164, 11101, 294, 4500, 281, 264, 1315, 708, 30, 17180, 538, 2985, 759, 286, 2826, 309, 293, 2464, 257, 1349, 510, 286, 3164, 294, 439, 10738, 1412, 682, 264, 2985, 295, 264, 1349], "avg_logprob": -0.45845171538266266, "compression_ratio": 1.7971698113207548, "no_speech_prob": 4.589557647705078e-06, "words": [{"start": 1895.92, "end": 1896.18, "word": " Okay,", "probability": 0.06512451171875}, {"start": 1896.18, "end": 1896.3, "word": " from", "probability": 0.164794921875}, {"start": 1896.3, "end": 1896.56, "word": " the", "probability": 0.51513671875}, {"start": 1896.56, "end": 1896.88, "word": " attributes", "probability": 0.482666015625}, {"start": 1896.88, "end": 1897.1, "word": " of", "probability": 0.88134765625}, {"start": 1897.1, "end": 1897.2, "word": " the", "probability": 0.77001953125}, {"start": 1897.2, "end": 1897.42, "word": " employee", "probability": 0.314208984375}, {"start": 1897.42, "end": 1897.6, "word": " in", "probability": 0.740234375}, {"start": 1897.6, "end": 1897.6, "word": " the", "probability": 0.89794921875}, {"start": 1897.6, "end": 1897.78, "word": " title", "probability": 0.70947265625}, {"start": 1897.78, "end": 1898.96, "word": " I", "probability": 0.58984375}, {"start": 1898.96, "end": 1899.14, "word": " go", "probability": 0.55712890625}, {"start": 1899.14, "end": 1899.24, "word": " and", "probability": 0.58740234375}, {"start": 1899.24, "end": 1899.36, "word": " make", "probability": 0.41064453125}, {"start": 1899.36, "end": 1899.52, "word": " a", "probability": 0.955078125}, {"start": 1899.52, "end": 1900.08, "word": " new", "probability": 0.91015625}, {"start": 1900.08, "end": 1900.08, "word": " class", "probability": 0.96044921875}, {"start": 1900.08, "end": 1901.64, "word": " Okay,", "probability": 0.4267578125}, {"start": 1901.7, "end": 1901.86, "word": " I", "probability": 0.77978515625}, {"start": 1901.86, "end": 1902.08, "word": " do", "probability": 0.1505126953125}, {"start": 1902.08, "end": 1902.42, "word": " the", "probability": 0.460693359375}, {"start": 1902.42, "end": 1902.74, "word": " search", "probability": 0.67626953125}, {"start": 1902.74, "end": 1903.1, "word": " in", "probability": 0.7939453125}, {"start": 1903.1, "end": 1903.2, "word": " the", "probability": 0.69873046875}, {"start": 1903.2, "end": 1903.48, "word": " title", "probability": 0.927734375}, {"start": 1903.48, "end": 1904.36, "word": " Same", "probability": 0.239990234375}, {"start": 1904.36, "end": 1904.62, "word": " thing,", "probability": 0.86572265625}, {"start": 1904.68, "end": 1904.74, "word": " I", "probability": 0.96337890625}, {"start": 1904.74, "end": 1904.84, "word": " take", "probability": 0.83935546875}, {"start": 1904.84, "end": 1904.98, "word": " the", "probability": 0.89501953125}, {"start": 1904.98, "end": 1905.22, "word": " class", "probability": 0.95556640625}, {"start": 1905.22, "end": 1905.34, "word": " and", "probability": 0.82080078125}, {"start": 1905.34, "end": 1905.54, "word": " throw", "probability": 0.29931640625}, {"start": 1905.54, "end": 1905.68, "word": " it", "probability": 0.93701171875}, {"start": 1905.68, "end": 1905.78, "word": " in", "probability": 0.8779296875}, {"start": 1905.78, "end": 1905.86, "word": " the", "probability": 0.85498046875}, {"start": 1905.86, "end": 1906.02, "word": " book", "probability": 0.21533203125}, {"start": 1906.02, "end": 1907.14, "word": " Okay,", "probability": 0.465087890625}, {"start": 1907.46, "end": 1907.66, "word": " I", "probability": 0.88134765625}, {"start": 1907.66, "end": 1907.86, "word": " run", "probability": 0.48046875}, {"start": 1907.86, "end": 1908.04, "word": " the", "probability": 0.912109375}, {"start": 1908.04, "end": 1908.54, "word": " program", "probability": 0.87841796875}, {"start": 1908.54, "end": 1908.98, "word": " I", "probability": 0.474365234375}, {"start": 1908.98, "end": 1909.16, "word": " find", "probability": 0.35205078125}, {"start": 1909.16, "end": 1909.3, "word": " out", "probability": 0.15185546875}, {"start": 1909.3, "end": 1909.6, "word": " that", "probability": 0.409912109375}, {"start": 1909.6, "end": 1909.66, "word": " I", "probability": 0.90234375}, {"start": 1909.66, "end": 1909.66, "word": " have", "probability": 0.78759765625}, {"start": 1909.66, "end": 1909.7, "word": " a", "probability": 0.89990234375}, {"start": 1909.7, "end": 1909.7, "word": " new", "probability": 0.9072265625}, {"start": 1909.7, "end": 1909.92, "word": " search", "probability": 0.9443359375}, {"start": 1909.92, "end": 1910.46, "word": " criteria", "probability": 0.6015625}, {"start": 1910.46, "end": 1910.76, "word": " in", "probability": 0.46240234375}, {"start": 1910.76, "end": 1911.06, "word": " addition", "probability": 0.96484375}, {"start": 1911.06, "end": 1911.26, "word": " to", "probability": 0.9716796875}, {"start": 1911.26, "end": 1911.3, "word": " the", "probability": 0.88818359375}, {"start": 1911.3, "end": 1911.64, "word": " name", "probability": 0.90283203125}, {"start": 1911.64, "end": 1912.38, "word": " What?", "probability": 0.49853515625}, {"start": 1912.84, "end": 1913.26, "word": " Search", "probability": 0.7451171875}, {"start": 1913.26, "end": 1913.62, "word": " by", "probability": 0.87548828125}, {"start": 1913.62, "end": 1915.26, "word": " address", "probability": 0.75244140625}, {"start": 1915.26, "end": 1915.5, "word": " If", "probability": 0.78955078125}, {"start": 1915.5, "end": 1915.62, "word": " I", "probability": 0.95166015625}, {"start": 1915.62, "end": 1915.92, "word": " choose", "probability": 0.4921875}, {"start": 1915.92, "end": 1916.22, "word": " it", "probability": 0.86181640625}, {"start": 1916.22, "end": 1917.06, "word": " and", "probability": 0.62109375}, {"start": 1917.06, "end": 1917.46, "word": " write", "probability": 0.67431640625}, {"start": 1917.46, "end": 1918.06, "word": " a", "probability": 0.78271484375}, {"start": 1918.06, "end": 1918.34, "word": " word", "probability": 0.9169921875}, {"start": 1918.34, "end": 1919.18, "word": " here", "probability": 0.79736328125}, {"start": 1919.18, "end": 1920.18, "word": " I", "probability": 0.6279296875}, {"start": 1920.18, "end": 1920.58, "word": " search", "probability": 0.7919921875}, {"start": 1920.58, "end": 1920.94, "word": " in", "probability": 0.6923828125}, {"start": 1920.94, "end": 1921.22, "word": " all", "probability": 0.89990234375}, {"start": 1921.22, "end": 1921.3, "word": " employee", "probability": 0.276611328125}, {"start": 1921.3, "end": 1922.38, "word": " data", "probability": 0.76953125}, {"start": 1922.38, "end": 1923.5, "word": " In", "probability": 0.57080078125}, {"start": 1923.5, "end": 1923.64, "word": " the", "probability": 0.796875}, {"start": 1923.64, "end": 1924.04, "word": " address", "probability": 0.939453125}, {"start": 1924.04, "end": 1924.3, "word": " of", "probability": 0.393798828125}, {"start": 1924.3, "end": 1924.44, "word": " the", "probability": 0.91845703125}, {"start": 1924.44, "end": 1924.72, "word": " word", "probability": 0.927734375}], "temperature": 1.0}, {"id": 80, "seek": 195132, "start": 1925.76, "end": 1951.32, "text": " that you wrote here, okay? So the fields of this search, you change them into classes. Put and remove. That's it. Okay? We will not change anything in the GUI. Think about how you do it. I know that these questions are challenging in a way, okay? But this is established tomorrow. This is a service available in many applications and many websites. If you need to use it, you will find a service like this.", "tokens": [300, 291, 4114, 510, 11, 1392, 30, 407, 264, 7909, 295, 341, 3164, 11, 291, 1319, 552, 666, 5359, 13, 4935, 293, 4159, 13, 663, 311, 309, 13, 1033, 30, 492, 486, 406, 1319, 1340, 294, 264, 17917, 40, 13, 6557, 466, 577, 291, 360, 309, 13, 286, 458, 300, 613, 1651, 366, 7595, 294, 257, 636, 11, 1392, 30, 583, 341, 307, 7545, 4153, 13, 639, 307, 257, 2643, 2435, 294, 867, 5821, 293, 867, 12891, 13, 759, 291, 643, 281, 764, 309, 11, 291, 486, 915, 257, 2643, 411, 341, 13], "avg_logprob": -0.44714094381383124, "compression_ratio": 1.6215139442231075, "no_speech_prob": 1.806020736694336e-05, "words": [{"start": 1925.76, "end": 1925.98, "word": " that", "probability": 0.1690673828125}, {"start": 1925.98, "end": 1926.06, "word": " you", "probability": 0.611328125}, {"start": 1926.06, "end": 1926.3, "word": " wrote", "probability": 0.64306640625}, {"start": 1926.3, "end": 1926.88, "word": " here,", "probability": 0.63134765625}, {"start": 1927.0, "end": 1927.4, "word": " okay?", "probability": 0.32568359375}, {"start": 1928.34, "end": 1928.82, "word": " So", "probability": 0.6298828125}, {"start": 1928.82, "end": 1929.44, "word": " the", "probability": 0.22216796875}, {"start": 1929.44, "end": 1929.72, "word": " fields", "probability": 0.51953125}, {"start": 1929.72, "end": 1929.94, "word": " of", "probability": 0.833984375}, {"start": 1929.94, "end": 1929.96, "word": " this", "probability": 0.53125}, {"start": 1929.96, "end": 1930.2, "word": " search,", "probability": 0.64208984375}, {"start": 1930.58, "end": 1930.74, "word": " you", "probability": 0.7998046875}, {"start": 1930.74, "end": 1931.06, "word": " change", "probability": 0.693359375}, {"start": 1931.06, "end": 1931.9, "word": " them", "probability": 0.77392578125}, {"start": 1931.9, "end": 1932.62, "word": " into", "probability": 0.3984375}, {"start": 1932.62, "end": 1933.68, "word": " classes.", "probability": 0.72802734375}, {"start": 1933.84, "end": 1934.1, "word": " Put", "probability": 0.2958984375}, {"start": 1934.1, "end": 1934.26, "word": " and", "probability": 0.56396484375}, {"start": 1934.26, "end": 1934.52, "word": " remove.", "probability": 0.7431640625}, {"start": 1934.92, "end": 1935.32, "word": " That's", "probability": 0.85888671875}, {"start": 1935.32, "end": 1935.4, "word": " it.", "probability": 0.80615234375}, {"start": 1935.78, "end": 1936.26, "word": " Okay?", "probability": 0.59521484375}, {"start": 1936.4, "end": 1936.56, "word": " We", "probability": 0.86279296875}, {"start": 1936.56, "end": 1936.66, "word": " will", "probability": 0.323486328125}, {"start": 1936.66, "end": 1936.66, "word": " not", "probability": 0.8974609375}, {"start": 1936.66, "end": 1936.94, "word": " change", "probability": 0.89453125}, {"start": 1936.94, "end": 1937.38, "word": " anything", "probability": 0.833984375}, {"start": 1937.38, "end": 1938.1, "word": " in", "probability": 0.8955078125}, {"start": 1938.1, "end": 1938.2, "word": " the", "probability": 0.53173828125}, {"start": 1938.2, "end": 1938.58, "word": " GUI.", "probability": 0.975341796875}, {"start": 1938.8, "end": 1939.06, "word": " Think", "probability": 0.830078125}, {"start": 1939.06, "end": 1939.18, "word": " about", "probability": 0.703125}, {"start": 1939.18, "end": 1939.28, "word": " how", "probability": 0.9013671875}, {"start": 1939.28, "end": 1939.4, "word": " you", "probability": 0.60546875}, {"start": 1939.4, "end": 1939.58, "word": " do", "probability": 0.7685546875}, {"start": 1939.58, "end": 1939.68, "word": " it.", "probability": 0.8916015625}, {"start": 1939.72, "end": 1939.8, "word": " I", "probability": 0.9892578125}, {"start": 1939.8, "end": 1940.06, "word": " know", "probability": 0.8837890625}, {"start": 1940.06, "end": 1940.46, "word": " that", "probability": 0.74658203125}, {"start": 1940.46, "end": 1940.6, "word": " these", "probability": 0.578125}, {"start": 1940.6, "end": 1941.02, "word": " questions", "probability": 0.69775390625}, {"start": 1941.02, "end": 1941.46, "word": " are", "probability": 0.71630859375}, {"start": 1941.46, "end": 1941.9, "word": " challenging", "probability": 0.3232421875}, {"start": 1941.9, "end": 1942.06, "word": " in", "probability": 0.7001953125}, {"start": 1942.06, "end": 1942.22, "word": " a", "probability": 0.380859375}, {"start": 1942.22, "end": 1942.26, "word": " way,", "probability": 0.88916015625}, {"start": 1942.84, "end": 1943.26, "word": " okay?", "probability": 0.6640625}, {"start": 1943.68, "end": 1943.94, "word": " But", "probability": 0.90771484375}, {"start": 1943.94, "end": 1944.12, "word": " this", "probability": 0.7197265625}, {"start": 1944.12, "end": 1944.24, "word": " is", "probability": 0.52490234375}, {"start": 1944.24, "end": 1944.64, "word": " established", "probability": 0.1884765625}, {"start": 1944.64, "end": 1945.02, "word": " tomorrow.", "probability": 0.378173828125}, {"start": 1945.28, "end": 1945.44, "word": " This", "probability": 0.82861328125}, {"start": 1945.44, "end": 1945.84, "word": " is", "probability": 0.72119140625}, {"start": 1945.84, "end": 1945.84, "word": " a", "probability": 0.73583984375}, {"start": 1945.84, "end": 1946.08, "word": " service", "probability": 0.82177734375}, {"start": 1946.08, "end": 1946.58, "word": " available", "probability": 0.249267578125}, {"start": 1946.58, "end": 1947.84, "word": " in", "probability": 0.7939453125}, {"start": 1947.84, "end": 1948.08, "word": " many", "probability": 0.890625}, {"start": 1948.08, "end": 1948.6, "word": " applications", "probability": 0.60791015625}, {"start": 1948.6, "end": 1948.78, "word": " and", "probability": 0.77783203125}, {"start": 1948.78, "end": 1948.98, "word": " many", "probability": 0.642578125}, {"start": 1948.98, "end": 1949.32, "word": " websites.", "probability": 0.86328125}, {"start": 1949.42, "end": 1949.64, "word": " If", "probability": 0.61962890625}, {"start": 1949.64, "end": 1949.72, "word": " you", "probability": 0.96923828125}, {"start": 1949.72, "end": 1949.98, "word": " need", "probability": 0.90380859375}, {"start": 1949.98, "end": 1950.1, "word": " to", "probability": 0.8115234375}, {"start": 1950.1, "end": 1950.24, "word": " use", "probability": 0.5107421875}, {"start": 1950.24, "end": 1950.3, "word": " it,", "probability": 0.888671875}, {"start": 1950.3, "end": 1950.4, "word": " you", "probability": 0.94677734375}, {"start": 1950.4, "end": 1950.42, "word": " will", "probability": 0.6298828125}, {"start": 1950.42, "end": 1950.56, "word": " find", "probability": 0.8916015625}, {"start": 1950.56, "end": 1950.74, "word": " a", "probability": 0.8466796875}, {"start": 1950.74, "end": 1950.94, "word": " service", "probability": 0.88330078125}, {"start": 1950.94, "end": 1951.08, "word": " like", "probability": 0.80322265625}, {"start": 1951.08, "end": 1951.32, "word": " this.", "probability": 0.57373046875}], "temperature": 1.0}, {"id": 81, "seek": 197308, "start": 1951.76, "end": 1973.08, "text": " Instead of coding everything and modifying it in the combo box or the drop list that comes up and fix it and your boss comes and tells you that you need to work for a week, you still need to modify the interface and add this and that, you need to work for a week. No, you need to put a class and then what?", "tokens": [7156, 295, 17720, 1203, 293, 42626, 309, 294, 264, 16859, 2424, 420, 264, 3270, 1329, 300, 1487, 493, 293, 3191, 309, 293, 428, 5741, 1487, 293, 5112, 291, 300, 291, 643, 281, 589, 337, 257, 1243, 11, 291, 920, 643, 281, 16927, 264, 9226, 293, 909, 341, 293, 300, 11, 291, 643, 281, 589, 337, 257, 1243, 13, 883, 11, 291, 643, 281, 829, 257, 1508, 293, 550, 437, 30], "avg_logprob": -0.7297535345587932, "compression_ratio": 1.8058823529411765, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 1951.76, "end": 1952.06, "word": " Instead", "probability": 0.328125}, {"start": 1952.06, "end": 1952.18, "word": " of", "probability": 0.947265625}, {"start": 1952.18, "end": 1952.72, "word": " coding", "probability": 0.189453125}, {"start": 1952.72, "end": 1953.94, "word": " everything", "probability": 0.57470703125}, {"start": 1953.94, "end": 1954.14, "word": " and", "probability": 0.5458984375}, {"start": 1954.14, "end": 1954.48, "word": " modifying", "probability": 0.2003173828125}, {"start": 1954.48, "end": 1954.54, "word": " it", "probability": 0.2371826171875}, {"start": 1954.54, "end": 1954.64, "word": " in", "probability": 0.6083984375}, {"start": 1954.64, "end": 1956.0, "word": " the", "probability": 0.4345703125}, {"start": 1956.0, "end": 1956.3, "word": " combo", "probability": 0.487548828125}, {"start": 1956.3, "end": 1956.6, "word": " box", "probability": 0.79248046875}, {"start": 1956.6, "end": 1956.9, "word": " or", "probability": 0.58251953125}, {"start": 1956.9, "end": 1957.02, "word": " the", "probability": 0.375732421875}, {"start": 1957.02, "end": 1957.82, "word": " drop", "probability": 0.6337890625}, {"start": 1957.82, "end": 1958.1, "word": " list", "probability": 0.8447265625}, {"start": 1958.1, "end": 1958.2, "word": " that", "probability": 0.496337890625}, {"start": 1958.2, "end": 1958.44, "word": " comes", "probability": 0.25927734375}, {"start": 1958.44, "end": 1958.68, "word": " up", "probability": 0.464111328125}, {"start": 1958.68, "end": 1959.22, "word": " and", "probability": 0.491943359375}, {"start": 1959.22, "end": 1959.48, "word": " fix", "probability": 0.0908203125}, {"start": 1959.48, "end": 1959.88, "word": " it", "probability": 0.7900390625}, {"start": 1959.88, "end": 1960.1, "word": " and", "probability": 0.293701171875}, {"start": 1960.1, "end": 1960.74, "word": " your", "probability": 0.388671875}, {"start": 1960.74, "end": 1960.94, "word": " boss", "probability": 0.438232421875}, {"start": 1960.94, "end": 1961.0, "word": " comes", "probability": 0.53857421875}, {"start": 1961.0, "end": 1961.22, "word": " and", "probability": 0.5498046875}, {"start": 1961.22, "end": 1961.32, "word": " tells", "probability": 0.327392578125}, {"start": 1961.32, "end": 1961.42, "word": " you", "probability": 0.9599609375}, {"start": 1961.42, "end": 1961.6, "word": " that", "probability": 0.232421875}, {"start": 1961.6, "end": 1961.78, "word": " you", "probability": 0.3486328125}, {"start": 1961.78, "end": 1962.82, "word": " need", "probability": 0.303955078125}, {"start": 1962.82, "end": 1962.9, "word": " to", "probability": 0.556640625}, {"start": 1962.9, "end": 1962.94, "word": " work", "probability": 0.392333984375}, {"start": 1962.94, "end": 1963.32, "word": " for", "probability": 0.40234375}, {"start": 1963.32, "end": 1963.5, "word": " a", "probability": 0.8828125}, {"start": 1963.5, "end": 1963.7, "word": " week,", "probability": 0.9326171875}, {"start": 1964.12, "end": 1964.82, "word": " you", "probability": 0.265625}, {"start": 1964.82, "end": 1965.48, "word": " still", "probability": 0.267333984375}, {"start": 1965.48, "end": 1965.48, "word": " need", "probability": 0.51025390625}, {"start": 1965.48, "end": 1966.32, "word": " to", "probability": 0.90185546875}, {"start": 1966.32, "end": 1966.56, "word": " modify", "probability": 0.268310546875}, {"start": 1966.56, "end": 1966.84, "word": " the", "probability": 0.231689453125}, {"start": 1966.84, "end": 1967.32, "word": " interface", "probability": 0.223388671875}, {"start": 1967.32, "end": 1967.58, "word": " and", "probability": 0.51318359375}, {"start": 1967.58, "end": 1968.14, "word": " add", "probability": 0.7236328125}, {"start": 1968.14, "end": 1968.56, "word": " this", "probability": 0.213134765625}, {"start": 1968.56, "end": 1968.56, "word": " and", "probability": 0.814453125}, {"start": 1968.56, "end": 1969.32, "word": " that,", "probability": 0.69873046875}, {"start": 1969.36, "end": 1969.44, "word": " you", "probability": 0.712890625}, {"start": 1969.44, "end": 1969.56, "word": " need", "probability": 0.783203125}, {"start": 1969.56, "end": 1969.62, "word": " to", "probability": 0.65673828125}, {"start": 1969.62, "end": 1969.62, "word": " work", "probability": 0.89501953125}, {"start": 1969.62, "end": 1969.62, "word": " for", "probability": 0.8349609375}, {"start": 1969.62, "end": 1969.7, "word": " a", "probability": 0.97998046875}, {"start": 1969.7, "end": 1969.92, "word": " week.", "probability": 0.9365234375}, {"start": 1970.86, "end": 1971.26, "word": " No,", "probability": 0.6533203125}, {"start": 1971.58, "end": 1971.6, "word": " you", "probability": 0.69775390625}, {"start": 1971.6, "end": 1971.74, "word": " need", "probability": 0.69091796875}, {"start": 1971.74, "end": 1971.82, "word": " to", "probability": 0.96142578125}, {"start": 1971.82, "end": 1972.02, "word": " put", "probability": 0.392822265625}, {"start": 1972.02, "end": 1972.14, "word": " a", "probability": 0.5712890625}, {"start": 1972.14, "end": 1972.42, "word": " class", "probability": 0.9462890625}, {"start": 1972.42, "end": 1972.52, "word": " and", "probability": 0.8154296875}, {"start": 1972.52, "end": 1972.58, "word": " then", "probability": 0.064208984375}, {"start": 1972.58, "end": 1973.08, "word": " what?", "probability": 0.398193359375}], "temperature": 1.0}, {"id": 82, "seek": 199069, "start": 1973.99, "end": 1990.69, "text": " Try it, work on it, okay? Work on it, learn a new way of thinking in code design, okay? Okay guys, work on it, I'll give you all of it, make it a desktop, web, mobile, whatever you want, okay?", "tokens": [6526, 309, 11, 589, 322, 309, 11, 1392, 30, 6603, 322, 309, 11, 1466, 257, 777, 636, 295, 1953, 294, 3089, 1715, 11, 1392, 30, 1033, 1074, 11, 589, 322, 309, 11, 286, 603, 976, 291, 439, 295, 309, 11, 652, 309, 257, 14502, 11, 3670, 11, 6013, 11, 2035, 291, 528, 11, 1392, 30], "avg_logprob": -0.5270647417221751, "compression_ratio": 1.4511278195488722, "no_speech_prob": 0.00013709068298339844, "words": [{"start": 1973.99, "end": 1974.55, "word": " Try", "probability": 0.1669921875}, {"start": 1974.55, "end": 1974.71, "word": " it,", "probability": 0.60400390625}, {"start": 1974.73, "end": 1974.91, "word": " work", "probability": 0.5087890625}, {"start": 1974.91, "end": 1975.13, "word": " on", "probability": 0.71240234375}, {"start": 1975.13, "end": 1975.57, "word": " it,", "probability": 0.93798828125}, {"start": 1975.73, "end": 1975.81, "word": " okay?", "probability": 0.058258056640625}, {"start": 1976.11, "end": 1976.31, "word": " Work", "probability": 0.25927734375}, {"start": 1976.31, "end": 1976.41, "word": " on", "probability": 0.59326171875}, {"start": 1976.41, "end": 1976.69, "word": " it,", "probability": 0.88134765625}, {"start": 1976.73, "end": 1977.09, "word": " learn", "probability": 0.90625}, {"start": 1977.09, "end": 1978.05, "word": " a", "probability": 0.14453125}, {"start": 1978.05, "end": 1978.29, "word": " new", "probability": 0.876953125}, {"start": 1978.29, "end": 1978.43, "word": " way", "probability": 0.83251953125}, {"start": 1978.43, "end": 1978.83, "word": " of", "probability": 0.84912109375}, {"start": 1978.83, "end": 1979.35, "word": " thinking", "probability": 0.70654296875}, {"start": 1979.35, "end": 1979.91, "word": " in", "probability": 0.5361328125}, {"start": 1979.91, "end": 1980.81, "word": " code", "probability": 0.80029296875}, {"start": 1980.81, "end": 1981.49, "word": " design,", "probability": 0.955078125}, {"start": 1981.49, "end": 1982.13, "word": " okay?", "probability": 0.81103515625}, {"start": 1982.55, "end": 1982.87, "word": " Okay", "probability": 0.5048828125}, {"start": 1982.87, "end": 1983.31, "word": " guys,", "probability": 0.57861328125}, {"start": 1985.21, "end": 1985.47, "word": " work", "probability": 0.740234375}, {"start": 1985.47, "end": 1985.57, "word": " on", "probability": 0.92529296875}, {"start": 1985.57, "end": 1985.89, "word": " it,", "probability": 0.921875}, {"start": 1986.17, "end": 1986.35, "word": " I'll", "probability": 0.398193359375}, {"start": 1986.35, "end": 1986.53, "word": " give", "probability": 0.83984375}, {"start": 1986.53, "end": 1986.61, "word": " you", "probability": 0.8779296875}, {"start": 1986.61, "end": 1986.69, "word": " all", "probability": 0.336181640625}, {"start": 1986.69, "end": 1986.73, "word": " of", "probability": 0.1148681640625}, {"start": 1986.73, "end": 1986.73, "word": " it,", "probability": 0.73974609375}, {"start": 1986.93, "end": 1987.23, "word": " make", "probability": 0.4814453125}, {"start": 1987.23, "end": 1987.57, "word": " it", "probability": 0.48388671875}, {"start": 1987.57, "end": 1987.65, "word": " a", "probability": 0.498779296875}, {"start": 1987.65, "end": 1987.93, "word": " desktop,", "probability": 0.76953125}, {"start": 1988.35, "end": 1988.75, "word": " web,", "probability": 0.81103515625}, {"start": 1988.91, "end": 1989.39, "word": " mobile,", "probability": 0.86767578125}, {"start": 1989.45, "end": 1989.61, "word": " whatever", "probability": 0.8857421875}, {"start": 1989.61, "end": 1989.83, "word": " you", "probability": 0.92041015625}, {"start": 1989.83, "end": 1989.85, "word": " want,", "probability": 0.79296875}, {"start": 1990.19, "end": 1990.69, "word": " okay?", "probability": 0.8642578125}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 1991.250375, "duration_after_vad": 1877.9393749999954} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/jC_2sm8ON0k.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/jC_2sm8ON0k.srt new file mode 100644 index 0000000000000000000000000000000000000000..b6ad900799214a5773af736c2d736ff8ddf31dc7 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/jC_2sm8ON0k.srt @@ -0,0 +1,2506 @@ + +1 +00:00:05,080 --> 00:00:08,220 +Ok guys, peace be upon you. In the last lecture, + +2 +00:00:08,400 --> 00:00:11,100 +we started with the first or the last group of + +3 +00:00:11,100 --> 00:00:13,660 +design patterns which are structural design + +4 +00:00:13,660 --> 00:00:15,200 +patterns and we took from them two design + +5 +00:00:15,200 --> 00:00:20,820 +patterns. One of them is called Facade. It is to + +6 +00:00:20,820 --> 00:00:24,420 +provide a simple interface to use parts of your + +7 +00:00:24,420 --> 00:00:27,400 +system so that you don't involve the developer who + +8 +00:00:27,400 --> 00:00:30,680 +will use your library to implement many steps or + +9 +00:00:30,680 --> 00:00:34,140 +know the details of parts of your system and what + +10 +00:00:34,140 --> 00:00:36,060 +are the subsystems and the relationship between + +11 +00:00:36,060 --> 00:00:38,900 +them make it easy for him to provide him a simple + +12 +00:00:38,900 --> 00:00:41,740 +method, a simple interface through which he can + +13 +00:00:41,740 --> 00:00:44,670 +implement a specific process without knowing the + +14 +00:00:44,670 --> 00:00:49,370 +details. The details are hidden in this face. You + +15 +00:00:49,370 --> 00:00:53,650 +execute the commands and provide it with a single + +16 +00:00:53,650 --> 00:00:55,990 +method to execute the whole process. And this is + +17 +00:00:55,990 --> 00:00:59,550 +what we call the Facade. The second design pattern + +18 +00:00:59,550 --> 00:01:01,330 +is the important design pattern called the + +19 +00:01:01,330 --> 00:01:04,980 +adapter. How if I have a system. It needs to match + +20 +00:01:04,980 --> 00:01:08,420 +with a new office that I want to use. I designed + +21 +00:01:08,420 --> 00:01:11,240 +the system to use a specific office, and I want to + +22 +00:01:11,240 --> 00:01:13,480 +remove this office and use a new office instead + +23 +00:01:13,480 --> 00:01:15,760 +And this is a scenario that will stay with you all + +24 +00:01:15,760 --> 00:01:18,200 +your life. That you remove offices and replace them + +25 +00:01:18,200 --> 00:01:22,500 +with new ones. Is the logical solution to change + +26 +00:01:22,500 --> 00:01:27,010 +your entire client application that every call to + +27 +00:01:27,010 --> 00:01:31,050 +the new office becomes a call to the old office. + +28 +00:01:31,050 --> 00:01:33,830 +It becomes a call to the new office? No, this is not + +29 +00:01:33,830 --> 00:01:39,330 +going to work. Make an adapter so that the client + +30 +00:01:39,330 --> 00:01:41,930 +makes a call to the adapter and the adapter inside + +31 +00:01:41,930 --> 00:01:45,470 +turns into a call to the new office. A third + +32 +00:01:45,470 --> 00:01:47,730 +office is created after that. You only make a new + +33 +00:01:47,730 --> 00:01:51,630 +adapter. The program sends to the adapter, and the + +34 +00:01:51,630 --> 00:01:55,090 +adapter turns into the third office. So your + +35 +00:01:55,090 --> 00:02:00,210 +client will be static and will only send requests + +36 +00:02:00,210 --> 00:02:03,370 +to adapters, and adapters will transform it to new + +37 +00:02:03,370 --> 00:02:08,010 +folders. So your application will remain as it is. + +38 +00:02:08,010 --> 00:02:10,470 +All you need to do is to create a new adapter when + +39 +00:02:10,470 --> 00:02:14,510 +you get a new library. Today we will take a third + +40 +00:02:14,510 --> 00:02:16,510 +design pattern which is also one of the most + +41 +00:02:16,510 --> 00:02:19,230 +important design patterns. It's called Decorator + +42 +00:02:19,230 --> 00:02:23,790 +Design Pattern. Decorator means that it adds decor. + +43 +00:02:24,900 --> 00:02:30,060 +For example, jewellery. We all know what decor + +44 +00:02:30,060 --> 00:02:34,200 +means. Okay, let's read the intent and try to + +45 +00:02:34,200 --> 00:02:37,120 +understand it. Then, let's look at a practical + +46 +00:02:37,120 --> 00:02:39,800 +example to explain what the Decorator pattern is + +47 +00:02:39,800 --> 00:02:43,060 +and what it means. The intent or the goal of the + +48 +00:02:43,060 --> 00:02:45,300 +Decorator pattern is to attach additional + +49 +00:02:45,300 --> 00:02:48,960 +responsibilities to an object dynamically. To add + +50 +00:02:48,960 --> 00:02:51,560 +new characteristics to the object dynamically. + +51 +00:02:54,350 --> 00:02:59,750 +2. Decorators provide a flexible alternative to + +52 +00:02:59,750 --> 00:03:04,550 +subclassing for extending functionality. What does + +53 +00:03:04,550 --> 00:03:05,490 +this sentence mean? This is the most important + +54 +00:03:05,490 --> 00:03:09,750 +sentence. Decorators provide a flexible alternative. + +55 +00:03:09,750 --> 00:03:11,590 +What is a flexible alternative? It is an + +56 +00:03:11,590 --> 00:03:16,450 +alternative to subclassing for extending + +57 +00:03:16,450 --> 00:03:20,050 +functionality because we have always learned in + +58 +00:03:20,050 --> 00:03:22,270 +programming that if you have a class, and you want + +59 +00:03:22,270 --> 00:03:25,070 +to add new features that don't exist in it, what + +60 +00:03:25,070 --> 00:03:28,990 +do you do? You modify its code? No, you create a + +61 +00:03:28,990 --> 00:03:32,110 +new class and extend it to the old one, so that you + +62 +00:03:32,110 --> 00:03:34,430 +don't rewrite the code and then add new features + +63 +00:03:34,430 --> 00:03:35,930 +okay? + +64 +00:03:37,470 --> 00:03:39,930 +Did you find that we want to learn something new? + +65 +00:03:41,030 --> 00:03:45,360 +What contradicts this belief? Let's change our + +66 +00:03:45,360 --> 00:03:47,940 +beliefs in programming, not in other things, okay? + +67 +00:03:48,580 --> 00:03:52,780 +That you learn all your life that you add + +68 +00:03:52,780 --> 00:03:54,840 +something new to the class and go and extend it + +69 +00:03:54,840 --> 00:03:57,280 +and add something new to it, and you are happy with + +70 +00:03:57,280 --> 00:03:59,300 +it and the subclassing is always good, and + +71 +00:03:59,300 --> 00:04:02,180 +excellent. No, we will learn that the subclassing + +72 +00:04:02,180 --> 00:04:07,780 +in many cases is bad, and we will see alternatives + +73 +00:04:07,780 --> 00:04:11,290 +to it. How can we add a new functionality without + +74 +00:04:11,290 --> 00:04:15,790 +subclassing? And to understand when subclassing is + +75 +00:04:15,790 --> 00:04:18,890 +bad, let's see a practical example, and then we + +76 +00:04:18,890 --> 00:04:25,270 +will continue reading the slides. Let me explain + +77 +00:04:25,270 --> 00:04:27,630 +this subject to you. First, I will give you a + +78 +00:04:27,630 --> 00:04:30,950 +simple example, not very practical, to show you + +79 +00:04:30,950 --> 00:04:33,650 +what the meaning of the Decorator is, where the + +80 +00:04:33,650 --> 00:04:36,710 +problem is, and how the Decorator can solve this + +81 +00:04:36,710 --> 00:04:40,910 +problem. Then, I will tell you or show you examples + +82 +00:04:40,910 --> 00:04:45,170 +where this Decorator is actually used in famous + +83 +00:04:45,170 --> 00:04:49,790 +libraries, such as Java SDK or JavaFX that you are + +84 +00:04:49,790 --> 00:04:53,670 +working on, or Swing or Android to show you that + +85 +00:04:53,670 --> 00:04:56,990 +this design pattern is actually used in a big way. + +86 +00:04:57,570 --> 00:04:59,990 +And you used it, but you don't know that you are + +87 +00:04:59,990 --> 00:05:04,320 +applying the Decorator pattern. Exactly like when + +88 +00:05:04,320 --> 00:05:06,880 +you do add action on the button, and you don't know + +89 +00:05:06,880 --> 00:05:11,660 +that it is an Observer pattern. Ok, let's + +90 +00:05:11,660 --> 00:05:14,460 +understand this example. I want to make a simple + +91 +00:05:14,460 --> 00:05:17,540 +application to draw shapes, ok? I have classes + +92 +00:05:17,540 --> 00:05:21,060 +that represent shapes. First, I have an interface + +93 +00:05:21,060 --> 00:05:24,750 +called I shape. On the basis that all shapes follow + +94 +00:05:24,750 --> 00:05:27,710 +this interface, there is a method called draw that + +95 +00:05:27,710 --> 00:05:29,190 +draws the shape and there is a method called + +96 +00:05:29,190 --> 00:05:32,550 +describe that gives me a description of my text on + +97 +00:05:32,550 --> 00:05:37,830 +this shape. The first shape I made is called Circle + +98 +00:05:39,120 --> 00:05:42,500 +which is a circle that implements I shape, and then + +99 +00:05:42,500 --> 00:05:44,360 +gives it the characteristics of the circle which + +100 +00:05:44,360 --> 00:05:48,960 +is center and radius half a line. Then, this is a + +101 +00:05:48,960 --> 00:05:52,520 +constructor. Setters and getters and in the end + +102 +00:05:52,520 --> 00:05:55,040 +there are two methods implement that are present + +103 +00:05:55,040 --> 00:05:57,560 +in the interface, one of them is called draw, which + +104 +00:05:57,560 --> 00:05:58,560 +is supposed to happen when I call it + +105 +00:06:04,740 --> 00:06:08,580 +Draw oval means to draw an oval shape. If you give + +106 +00:06:08,580 --> 00:06:11,240 +the oval shape the center, and half of the circle + +107 +00:06:11,240 --> 00:06:13,580 +twice, which is the oval shape, consider that + +108 +00:06:13,580 --> 00:06:16,060 +there are two circles. If you put them next to + +109 +00:06:16,060 --> 00:06:17,540 +each other, what happens to the oval shape? + +110 +00:06:18,120 --> 00:06:21,740 +Circle. Describe, just repeat that this is the + +111 +00:06:21,740 --> 00:06:23,950 +center of the circle. The most important thing is + +112 +00:06:23,950 --> 00:06:25,910 +that I made another class that represents a + +113 +00:06:25,910 --> 00:06:29,210 +rectangle, the name of the class is Rectangle, its + +114 +00:06:29,210 --> 00:06:33,630 +attributes are different. X and Y are the point of + +115 +00:06:33,630 --> 00:06:37,950 +the Rectangle's corner, and width and height are + +116 +00:06:37,950 --> 00:06:41,190 +length and width. This is a constructor, and the same + +117 +00:06:41,190 --> 00:06:44,010 +thing, I implemented two methods. Draw that makes + +118 +00:06:44,010 --> 00:06:49,210 +a Rectangle and describe that makes a rectangle + +119 +00:06:49,210 --> 00:06:52,390 +now. I made a simple frame that is a small face, so + +120 +00:06:52,390 --> 00:06:55,930 +that when I click on the button, it draws a + +121 +00:06:55,930 --> 00:06:58,290 +circle, do you understand what I mean? Because + +122 +00:06:58,290 --> 00:07:00,490 +when I click on the button, it is an action + +123 +00:07:00,490 --> 00:07:04,310 +performed in this swing, okay? I created an object + +124 +00:07:04,310 --> 00:07:08,940 +from Circle. Okay, and I give him the data of the Circle, + +125 +00:07:09,420 --> 00:07:11,860 +which is the center, for example, and half of the + +126 +00:07:11,860 --> 00:07:17,140 +line is 100. Okay, and then I tell him c dot draw, + +127 +00:07:18,160 --> 00:07:20,460 +and you study it on the fragment itself, so I tell + +128 +00:07:20,460 --> 00:07:21,280 +him get graphics. + +129 +00:07:25,000 --> 00:07:28,320 +When will this code be executed? When I press the + +130 +00:07:28,320 --> 00:07:34,040 +button. Run. This is add shape, and this is circle. + +131 +00:07:34,040 --> 00:07:39,960 +If you want to draw a rectangle, it's exactly the + +132 +00:07:39,960 --> 00:07:46,300 +same thing, you say Rectangle R new Rectangle, and + +133 +00:07:46,300 --> 00:07:51,600 +also give it a point 50 50 180, which is the width + +134 +00:07:51,600 --> 00:07:59,220 +and height. Rectangle free. + +135 +00:08:02,400 --> 00:08:12,460 +And then R.draw.getGraphics(), and make it run, and + +136 +00:08:12,460 --> 00:08:16,240 +this is add shape, and this is draw Rectangle. Until + +137 +00:08:16,240 --> 00:08:20,480 +now the subject is trivial, right or not, guys? Okay. + +138 +00:08:20,480 --> 00:08:27,060 +Now, I asked you to make a circle with a border, so we + +139 +00:08:27,060 --> 00:08:30,480 +want to make a circle around the circle. What does + +140 +00:08:30,480 --> 00:08:33,280 +this mean? That we are going to add a new + +141 +00:08:33,280 --> 00:08:35,360 +functionality. In the traditional way, what are + +142 +00:08:35,360 --> 00:08:38,100 +you going to do? Simply say, go and create a new + +143 +00:08:38,100 --> 00:08:42,040 +class called CircleWithBorder. + +144 +00:08:43,580 --> 00:08:47,760 +Okay? And right away, tell it what? Extends Circle + +145 +00:08:47,760 --> 00:08:53,240 +and so on and so forth in everything in the app. + +146 +00:08:53,640 --> 00:08:59,560 +Okay? And then add new attributes and override + +147 +00:08:59,560 --> 00:09:02,000 +things that you want to override. So, you say for + +148 +00:09:02,000 --> 00:09:08,160 +example, int border-width. This is for the width of + +149 +00:09:08,160 --> 00:09:14,580 +the border and I have color border-color + +150 +00:09:14,580 --> 00:09:18,520 +and + +151 +00:09:18,520 --> 00:09:20,380 +you want to put for example setters and getters + +152 +00:09:20,380 --> 00:09:21,580 +for whom? For the new attributes. + +153 +00:09:28,190 --> 00:09:30,530 +We haven't drawn a border yet, we will give it an + +154 +00:09:30,530 --> 00:09:32,510 +attribute, but we haven't drawn it yet. So we will + +155 +00:09:32,510 --> 00:09:35,170 +change this gate to a method to draw. We will make + +156 +00:09:35,170 --> 00:09:38,210 +it overwrite. The draw doesn't draw a border for + +157 +00:09:38,210 --> 00:09:40,050 +this gate, so I will make it overwrite. I will tell + +158 +00:09:40,050 --> 00:09:45,470 +it to make an override for a method called draw. It + +159 +00:09:45,470 --> 00:09:49,370 +doesn't need to be a super gate, I really want to + +160 +00:09:49,370 --> 00:09:51,710 +make a change. I will show you how to make the + +161 +00:09:51,710 --> 00:09:54,630 +change. The idea is not about how to make changes, + +162 +00:09:54,750 --> 00:09:57,270 +but about how to make changes. For example, I want + +163 +00:09:57,270 --> 00:10:00,730 +to make graphics 2D. + +164 +00:10:01,130 --> 00:10:02,090 +G2D. + +165 +00:10:41,670 --> 00:10:44,990 +Ok, these are the new additions, then I go and say + +166 +00:10:44,990 --> 00:10:51,870 +super, or super + +167 +00:10:51,870 --> 00:10:59,710 +.draw. Ok. + +168 +00:10:59,710 --> 00:11:01,830 +Guys, the idea of ​​the draw is to add a new + +169 +00:11:01,830 --> 00:11:04,870 +feature, which is to draw a border, which is what I + +170 +00:11:04,870 --> 00:11:08,430 +did to draw a border. I went, and gave it color. I + +171 +00:11:08,430 --> 00:11:12,450 +changed the color and gave it a stroke that takes + +172 +00:11:12,450 --> 00:11:16,050 +the width, and then I told it to invoke the super + +173 +00:11:16,050 --> 00:11:19,330 +to draw it. It will invoke the super, it will draw + +174 +00:11:19,330 --> 00:11:23,570 +the circle, but after applying the new settings. + +175 +00:11:24,310 --> 00:11:26,650 +From the point of view, the point is not how to + +176 +00:11:26,650 --> 00:11:28,730 +draw a circle, the point is that I made an + +177 +00:11:28,730 --> 00:11:33,010 +override to add a new functionality, okay? And + +178 +00:11:33,010 --> 00:11:36,570 +this is also an override for whom? For describe. + +179 +00:11:37,210 --> 00:11:43,390 +Here, he used to say this is a circle, so I want to + +180 +00:11:43,390 --> 00:11:51,070 +say return super dot describe plus, with border of + +181 +00:11:51,070 --> 00:11:53,930 +color and with color for example, the important + +182 +00:11:53,930 --> 00:11:58,630 +thing is that we added a new feature that says + +183 +00:11:58,630 --> 00:12:02,530 +anything in the description with a border. Ok, the + +184 +00:12:02,530 --> 00:12:05,270 +speech now is simple. Ok, until now, we did the + +185 +00:12:05,270 --> 00:12:07,630 +class, but we didn't use it. We need to go to my + +186 +00:12:07,630 --> 00:12:11,010 +frame. Now, instead of creating a circle, or + +187 +00:12:11,010 --> 00:12:14,230 +rectangle, I found what I need to do, I need to + +188 +00:12:14,230 --> 00:12:21,610 +create an object of type circle with border. Ok, + +189 +00:12:21,610 --> 00:12:29,230 +guys, this is cb, new circle with border + +190 +00:12:30,780 --> 00:12:35,040 +and I give it the center and half of the line, and + +191 +00:12:35,040 --> 00:12:37,900 +then go to the cb and give it the set border, which + +192 +00:12:37,900 --> 00:12:46,160 +is the new attribute highcolor.red, cb.width 3 for + +193 +00:12:46,160 --> 00:12:53,800 +example, and then I tell it cb.draw get graphics + +194 +00:13:02,320 --> 00:13:07,280 +with me guys, make a run. And it will add shape. It + +195 +00 + +223 +00:14:45,330 --> 00:14:49,030 +solid circle. Ok? This is a new feature. It needs + +224 +00:14:49,030 --> 00:14:52,210 +to fill the existing circle. So we need to modify + +225 +00:14:52,210 --> 00:14:56,170 +the main circle to make it. Where do we go to edit? + +226 +00:14:56,390 --> 00:14:58,510 +It has nothing to do with this border. So you have + +227 +00:14:58,510 --> 00:15:04,310 +to make a new class called solid circle, C Extend + +228 +00:15:04,310 --> 00:15:08,850 +mean circle. And you have to make a full rectangle + +229 +00:15:08,850 --> 00:15:13,430 +You have to make what? Solid rectangle. Extend mean + +230 +00:15:13,430 --> 00:15:17,530 +rectangle. So in order to add a solid feature to + +231 +00:15:17,530 --> 00:15:21,250 +the shapes I have, I have to make them all extend I + +232 +00:15:21,250 --> 00:15:24,410 +have ten shapes and I have ten classes. + +233 +00:15:26,550 --> 00:15:29,510 +So in order to add two features to a class, I need + +234 +00:15:29,510 --> 00:15:38,650 +to add 20 classes to the top 10. Is this a good + +235 +00:15:38,650 --> 00:15:41,650 +scenario or not? So every time I want to add a + +236 +00:15:41,650 --> 00:15:45,670 +feature to my 10 classes, I need to create 10 + +237 +00:15:45,670 --> 00:15:50,870 +subclasses. And this is bad. So will I have 10 + +238 +00:15:50,870 --> 00:15:52,050 +subclasses? Have you ever seen someone create a + +239 +00:15:52,050 --> 00:15:57,870 +GUI library? For example, JavaFX. It has a lot of + +240 +00:15:57,870 --> 00:16:00,590 +elements, right or not guys? All these elements + +241 +00:16:00,590 --> 00:16:03,230 +want to add borders to them. For example, you have + +242 +00:16:03,230 --> 00:16:07,150 +a text area, a combo box, a list drop list, and a + +243 +00:16:07,150 --> 00:16:11,610 +tab pane, right or not? There are many types of UI + +244 +00:16:11,610 --> 00:16:14,470 +components in Java, in X or any other library. + +245 +00:16:15,410 --> 00:16:19,990 +Okay? And we want to make a border for all the UI + +246 +00:16:19,990 --> 00:16:23,440 +components. For example, I have 30 UI components + +247 +00:16:23,440 --> 00:16:27,200 +in Javafix, at least this one. Each one of them + +248 +00:16:27,200 --> 00:16:30,680 +extends to add this feature. If I have 10 + +249 +00:16:30,680 --> 00:16:33,460 +features, I have to add them to the 30 UI + +250 +00:16:33,460 --> 00:16:37,320 +components. How many classes will I have? 10 + +251 +00:16:37,320 --> 00:16:43,980 +features in 30 main ones. I have 300 classes. This + +252 +00:16:43,980 --> 00:16:46,920 +is called the explosion of classes, like the + +253 +00:16:46,920 --> 00:16:51,470 +population explosion. This means that the + +254 +00:16:51,470 --> 00:16:54,830 +subclassing that we were happy with was good, we + +255 +00:16:54,830 --> 00:16:57,970 +did not say that it was invalid, but in some cases + +256 +00:16:57,970 --> 00:17:04,110 +it can cause a lot of classes. Because I want to + +257 +00:17:04,110 --> 00:17:08,210 +show you a way, I have 30 classes, I want to make + +258 +00:17:08,210 --> 00:17:10,190 +them a border, I want to make a single class, + +259 +00:17:11,570 --> 00:17:18,290 +that's it, I am a single feature. In one class, add + +260 +00:17:18,290 --> 00:17:23,150 +up to 30. So if I have 10 features, I make only 10 + +261 +00:17:23,150 --> 00:17:28,170 +classes, instead of making 300 classes. Do you + +262 +00:17:28,170 --> 00:17:31,330 +agree with me or not? Let's see how to apply this. + +263 +00:17:38,150 --> 00:17:40,810 +Let me explain how to do it and then I will draw + +264 +00:17:40,810 --> 00:17:45,210 +the UML diagram. What do you think Halgate? In our + +265 +00:17:45,210 --> 00:17:46,970 +example here, I have two shapes, circle and + +266 +00:17:46,970 --> 00:17:49,910 +rectangle. To make them a border, I have to make + +267 +00:17:49,910 --> 00:17:53,810 +two classes, circle with border and rectangle with + +268 +00:17:53,810 --> 00:17:57,750 +border. I didn't do rectangle with border, but it's + +269 +00:17:57,750 --> 00:18:01,110 +the same idea. Now I don't want to make circle with + +270 +00:18:01,110 --> 00:18:03,210 +border and rectangle with border. I want to make + +271 +00:18:03,210 --> 00:18:07,070 +one class called border and add to the frame the + +272 +00:18:07,070 --> 00:18:11,010 +two, three or ten shapes that I have. So I found + +273 +00:18:11,010 --> 00:18:15,410 +that I want to make a new class called border. + +274 +00:18:18,660 --> 00:18:22,760 +First of all, make this class from the same type + +275 +00:18:22,760 --> 00:18:25,880 +of shapes. What does it mean? Make it from the + +276 +00:18:25,880 --> 00:18:26,940 +Make it from the same type of shapes. What does it + +277 +00:18:26,940 --> 00:18:28,020 +mean? Make it from the same type of shapes. What + +278 +00:18:28,020 --> 00:18:28,200 +does it mean? Make it from the same type of + +279 +00:18:28,200 --> 00:18:28,640 +shapes. What does it mean? Make it from the same + +280 +00:18:28,640 --> 00:18:28,920 +type of shapes. What does it mean? Make it from + +281 +00:18:28,920 --> 00:18:29,140 +shapes. What does it mean? Make it from the same + +282 +00:18:29,140 --> 00:18:29,940 +the same type of shapes. What does it mean? Make + +283 +00:18:29,940 --> 00:18:35,820 +it from the same type of shapes. What does it + +284 +00:18:35,820 --> 00:18:38,600 +mean? Make it from the same type of shapes. What + +285 +00:18:38,600 --> 00:18:40,520 +does it mean? Make it from the same type of + +286 +00:18:40,520 --> 00:18:45,250 +shapes. An object of type ... pay attention to me + +287 +00:18:45,250 --> 00:18:47,450 +and then I will explain to you ok? An object of + +288 +00:18:47,450 --> 00:18:49,810 +type shape. Notice that there is a strange thing + +289 +00:18:49,810 --> 00:18:52,830 +that this is of type shape and inside it contains + +290 +00:18:52,830 --> 00:18:56,150 +what? An object of type shape. Of course this is a + +291 +00:18:56,150 --> 00:18:58,790 +null value, so we need to create a constructor to + +292 +00:18:58,790 --> 00:19:06,990 +initialize it. + +293 +00:19:06,990 --> 00:19:11,250 +Ok + +294 +00:19:11,250 --> 00:19:18,640 +guys? Ok. We are almost done now. Look with me now + +295 +00:19:18,640 --> 00:19:24,000 +my goal is to add a border right? What are the + +296 +00:19:24,000 --> 00:19:29,480 +attributes of any border? I have border int border + +297 +00:19:29,480 --> 00:19:36,900 +-width and color border-color + +298 +00:19:36,900 --> 00:19:39,680 +and the same thing we want to do with these + +299 +00:19:39,680 --> 00:19:41,200 +setters + +300 +00:19:52,790 --> 00:19:56,810 +Okay, I got the idea that the shape that I want to + +301 +00:19:56,810 --> 00:20:02,610 +draw, okay? I want to add a frame to it. Now, what + +302 +00:20:02,610 --> 00:20:06,110 +does this constructor take? I shape. Why did you + +303 +00:20:06,110 --> 00:20:08,690 +let him take I shape? So that I can send him a + +304 +00:20:08,690 --> 00:20:11,470 +circle, rectangle, triangle and any other shape. + +305 +00:20:12,150 --> 00:20:15,870 +Okay? Then, in this draw, what do I really want to + +306 +00:20:15,870 --> 00:20:24,630 +do? Okay? I'm going to add my new code. Do you + +307 +00:20:24,630 --> 00:20:27,790 +remember the code that we used to do? Circle with + +308 +00:20:27,790 --> 00:20:31,550 +rectangle. Circle with border. This is the code, do + +309 +00:20:31,550 --> 00:20:34,970 +you see it? What does it do? It applies the new + +310 +00:20:34,970 --> 00:20:44,230 +color and the new border width. Why + +311 +00:20:44,230 --> 00:20:48,770 +can't I see the border? Width, what is this? We + +312 +00:20:48,770 --> 00:20:53,090 +wrote it wrong, so we go and edit it, but what? + +313 +00:20:53,270 --> 00:21:04,230 +Down here, border-width. Where + +314 +00:21:04,230 --> 00:21:07,810 +is six? Yes, six border-width + +315 +00:21:10,500 --> 00:21:14,960 +okay, we came here in the draw, this is the + +316 +00:21:14,960 --> 00:21:18,520 +border's draw. Do like this, and then what do I do? + +317 +00:21:18,640 --> 00:21:23,460 +I tell him to go to shape and tell him to draw and + +318 +00:21:23,460 --> 00:21:29,100 +send me G to D. Now describe. I want to describe the + +319 +00:21:29,100 --> 00:21:35,240 +shape. I want to tell him to return shape.describe + +320 +00:21:35,240 --> 00:21:36,660 +and then here I tell him with + +321 +00:21:39,930 --> 00:21:42,590 +with border. Okay, what did I do? You will say this + +322 +00:21:42,590 --> 00:21:46,030 +is the same thing we did. No, look with me. Because + +323 +00:21:46,030 --> 00:21:49,670 +I made a class called border. Actually, this border + +324 +00:21:49,670 --> 00:21:54,790 +covers the shape. It doesn't extend it, it covers + +325 +00:21:54,790 --> 00:22:00,190 +it. Okay, look with me, I + +326 +00:22:00,190 --> 00:22:05,610 +have two ways to add new features to any class. + +327 +00:22:05,610 --> 00:22:07,330 +Subclassing. + +328 +00:22:09,930 --> 00:22:12,270 +If we assume that I have a class that has + +329 +00:22:12,270 --> 00:22:15,130 +attributes, these attributes, for example, and + +330 +00:22:15,130 --> 00:22:18,910 +methods, okay? These are one, two, three, and + +331 +00:22:18,910 --> 00:22:22,330 +these methods are one, two, three. I would like to + +332 +00:22:22,330 --> 00:22:24,630 +add a new functionality. What does a new + +333 +00:22:24,630 --> 00:22:27,550 +functionality mean? It means new attributes, new + +334 +00:22:27,550 --> 00:22:31,250 +methods, or modifying old methods. I go and create + +335 +00:22:31,250 --> 00:22:34,910 +a new class. What is the goal? Subclassing. + +336 +00:22:35,190 --> 00:22:43,470 +Extend, okay? I don't write 1,2,3 I write x4 and x5 + +337 +00:22:43,470 --> 00:22:48,750 +as new attributes and I don't write 1,2,3. I write + +338 +00:22:48,750 --> 00:22:54,890 +4 and five. And if I want to modify one of these, I + +339 +00:22:54,890 --> 00:22:58,170 +can override it, and through it, I can claim the + +340 +00:22:58,170 --> 00:23:00,750 +super, for example, or I can change the code in it + +341 +00:23:00,750 --> 00:23:04,250 +completely. This is in the case of subclasses + +342 +00:23:04,250 --> 00:23:06,470 +beautiful and excellent and what makes it special + +343 +00:23:06,470 --> 00:23:09,570 +is that you will not rewrite the code in the app + +344 +00:23:09,570 --> 00:23:13,590 +as we learned. But the problem is that if I have + +345 +00:23:13,590 --> 00:23:16,010 +ten classes and I want to add new features to them + +346 +00:23:16,010 --> 00:23:20,320 +you have to do x2 to the ten. The second way is the + +347 +00:23:20,320 --> 00:23:22,680 +decorator way. + +348 +00:23:24,300 --> 00:23:25,720 +What does it mean? I want to add a new + +349 +00:23:25,720 --> 00:23:29,800 +functionality, I don't want to do subclassing, I + +350 +00:23:29,800 --> 00:23:32,440 +want to create an object from the old class and + +351 +00:23:32,440 --> 00:23:36,620 +wrap it with a new object. This wrapping puts in + +352 +00:23:36,620 --> 00:23:39,480 +new things. How, for example, let's go back to the + +353 +00:23:39,480 --> 00:23:44,060 +same example. This class has x x x and has a circle + +354 +00:23:44,060 --> 00:23:47,620 +circle circle. This is feature 1, 2, 3 and this is 1 + +355 +00:23:47,620 --> 00:23:51,960 +,2, 3. I would like to add new features, new + +356 +00:23:51,960 --> 00:23:55,820 +attributes, new methods, modifications to previous + +357 +00:23:55,820 --> 00:23:58,240 +methods. Because if we assume that this class is + +358 +00:23:58,240 --> 00:24:05,530 +called A. Go and create a new class. Inside it, + +359 +00:24:05,850 --> 00:24:10,310 +create an object from what? From what? This is an + +360 +00:24:10,310 --> 00:24:15,110 +object from this, okay? So, this thing actually + +361 +00:24:15,110 --> 00:24:19,770 +contains on x x x one two three, right? And on a + +362 +00:24:19,770 --> 00:24:22,790 +circle circle circle one two three. This is an + +363 +00:24:22,790 --> 00:24:27,910 +object, object from whom? From this class. Okay, did + +364 +00:24:27,910 --> 00:24:31,970 +you notice that the class of addition, the client + +365 +00:24:31,970 --> 00:24:36,250 +sees it as this? What does addition mean? It is + +366 +00:24:36,250 --> 00:24:41,590 +supposed to be as if this includes this with + +367 +00:24:41,590 --> 00:24:45,170 +additions. But again, I confirm that this did not + +368 +00:24:45,170 --> 00:24:49,770 +extend. So really, I do not see anything inside + +369 +00:24:49,770 --> 00:24:51,270 +these. I am from outside, did you notice? This is + +370 +00:24:51,270 --> 00:24:53,110 +the class. When I create an object from it, is + +371 +00:24:53,110 --> 00:24:55,570 +there a method? No, the client will not see + +372 +00:24:56,370 --> 00:24:59,350 +Anything else, so he says what are you doing? Now, + +373 +00:25:00,150 --> 00:25:02,510 +why am I doing this? Because I want to add new + +374 +00:25:02,510 --> 00:25:05,670 +things. What are the new things? They are xx, which + +375 +00:25:05,670 --> 00:25:09,250 +are 4 and 5, they will add new attributes to us, + +376 +00:25:09,290 --> 00:25:13,990 +okay? Then you add a new method, put 4 and 5, + +377 +00:25:14,070 --> 00:25:17,350 +these are new methods for them. But I still have a + +378 +00:25:17,350 --> 00:25:20,770 +problem that 1 and 2 and 3, I don't see them from + +379 +00:25:20,770 --> 00:25:24,170 +here, right? So he says 1 and 2 and 3, go back and + +380 +00:25:24,170 --> 00:25:30,330 +do what? Write them again. If there are ten methods + +381 +00:25:30,330 --> 00:25:33,050 +here, you have to write the ten here, but what does + +382 +00:25:33,050 --> 00:25:37,910 +it do when I call one of the covers one will call + +383 +00:25:37,910 --> 00:25:42,150 +one of the objects inside. When I call two from + +384 +00:25:42,150 --> 00:25:45,530 +here, this calls two from here. When I call three + +385 +00:25:45,530 --> 00:25:50,990 +this calls three from here, because my goal is that + +386 +00:25:50,990 --> 00:25:56,390 +I have to see this. It's like this, but with new + +387 +00:25:56,390 --> 00:25:58,690 +features. Because if I create an object from this, + +388 +00:25:59,990 --> 00:26:03,870 +I will see x1 and x1 and x1 and x1 and x1 and x1 + +389 +00:26:03,870 --> 00:26:04,930 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +390 +00:26:04,930 --> 00:26:05,050 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +391 +00:26:05,050 --> 00:26:06,670 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +392 +00:26:06,670 --> 00:26:08,570 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +393 +00:26:08,570 --> 00:26:10,690 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +394 +00:26:10,690 --> 00:26:13,870 +and x1 and x1 and x1 and x1 and x1 and + +395 +00:26:13,870 --> 00:26:18,810 +x1. I will see new things, yes I will see 4 and 5, + +396 +00:26:18,910 --> 00:26:22,390 +and I will see attributes 4 and 5, this is adding + +397 +00:26:22,390 --> 00:26:26,990 +new things to this, using the decorator method, or + +398 +00:26:26,990 --> 00:26:29,250 +sometimes we call it wrapper, what is a wrapper? + +399 +00:26:30,230 --> 00:26:31,610 +It is a cover, don't you hear the word chicken + +400 +00:26:31,610 --> 00:26:39,050 +wrap? Yes, this is a wrapper, a cover, now I added + +401 +00:26:39,050 --> 00:26:42,980 +new features, but it has pros and cons. What are its + +402 +00:26:42,980 --> 00:26:48,100 +disadvantages? Notice that I had to rewrite the + +403 +00:26:48,100 --> 00:26:50,620 +same methods here with the conversion to the inner + +404 +00:26:50,620 --> 00:26:53,620 +object. Here, no, I did not need to write one, two + +405 +00:26:53,620 --> 00:26:58,980 +and three. Okay, it overwhelmed us a bit, but the + +406 +0 + +445 +00:29:35,180 --> 00:29:38,080 +to add a border to it. All you have to do is to + +446 +00:29:38,080 --> 00:29:40,500 +create an object from border b that is equal to + +447 +00:29:40,500 --> 00:29:45,360 +new border. And what happens to the minus sign? The + +448 +00:29:45,360 --> 00:29:50,620 +C will accept the C because C is a shapenow all + +449 +00:29:50,620 --> 00:29:54,260 +you need to do is to give him your border's + +450 +00:29:54,260 --> 00:29:56,880 +properties which is border color for example color + +451 +00:29:56,880 --> 00:30:06,960 +.red and go b.set border width for example 3 and + +452 +00:30:06,960 --> 00:30:09,780 +the last step I should deal with the border as I + +453 +00:30:09,780 --> 00:30:11,960 +would deal with the circle. There is a method + +454 +00:30:11,960 --> 00:30:16,380 +called draw and say get graphics + +455 +00:30:22,500 --> 00:30:27,820 +Let's create a circle with + +456 +00:30:27,820 --> 00:30:31,300 +a circle shape. Now I want to create a rectangle + +457 +00:30:31,300 --> 00:30:37,960 +with border. All you need to do is type rectangle R + +458 +00:30:37,960 --> 00:30:43,580 +new rectangle + +459 +00:30:43,580 --> 00:30:46,840 +180 + +460 +00:30:46,840 --> 00:30:47,440 +for example + +461 +00:30:52,710 --> 00:31:01,430 +and here R rectangle I didn't make a new class I + +462 +00:31:01,430 --> 00:31:04,010 +brought rectangle and made it the same object of + +463 +00:31:04,010 --> 00:31:09,410 +type border and it will run add shape and it will + +464 +00:31:09,410 --> 00:31:15,420 +add border to it and if you have any other shape. I + +465 +00:31:15,420 --> 00:31:20,460 +mean, if I have 10 shapes, and I make only one + +466 +00:31:20,460 --> 00:31:23,260 +class for each of them, I add this new + +467 +00:31:26,820 --> 00:31:33,320 +Now, using the decorator method. I have two ways + +468 +00:31:33,320 --> 00:31:35,740 +to add any feature to a class. The first way is + +469 +00:31:35,740 --> 00:31:40,100 +subclassing. It means you were searched, right or + +470 +00:31:40,100 --> 00:31:41,480 +wrong, we talked about it a lot and it took you + +471 +00:31:41,480 --> 00:31:43,420 +two years and you are happy with it. The second + +472 +00:31:43,420 --> 00:31:46,960 +way is to use the decorator method. I want to add + +473 +00:31:46,960 --> 00:31:49,700 +a new functionality to the class. You create an + +474 +00:31:49,700 --> 00:31:53,340 +object from your class and wrap it with another + +475 +00:31:53,340 --> 00:31:57,600 +object from the class. The way of wrapping this, + +476 +00:31:57,640 --> 00:32:00,870 +or the decorator we call it, or the wrapper, it's + +477 +00:32:00,870 --> 00:32:03,590 +difficult because you have to use the methods in + +478 +00:32:03,590 --> 00:32:08,190 +your object to create it here because the client + +479 +00:32:08,190 --> 00:32:12,870 +sees the cover as it sees what's inside. So 1,2,3, + +480 +00:32:12,910 --> 00:32:15,870 +I made them here 1,2,3, but I let it transform + +481 +00:32:15,870 --> 00:32:19,230 +from inside. We didn't do this here. We used to do + +482 +00:32:19,230 --> 00:32:20,990 +subclassing, missequation, because you don't want + +483 +00:32:20,990 --> 00:32:23,650 +to write code. Here you want to write code with + +484 +00:32:23,650 --> 00:32:26,840 +transformation and adding additional quotes. And + +485 +00:32:26,840 --> 00:32:29,960 +you can add more methods. For example, I will not + +486 +00:32:29,960 --> 00:32:33,020 +add more things here. Of course, what will be extra + +487 +00:32:33,020 --> 00:32:35,860 +if there are setters and getters for border width + +488 +00:32:35,860 --> 00:32:40,580 +and border color. These are considered four or five. + +489 +00:32:40,580 --> 00:32:44,500 +But the advantage of the decorator method is that + +490 +00:32:44,500 --> 00:32:49,920 +I can change the inner object of different types, + +491 +00:32:50,140 --> 00:32:54,840 +so it's like a cover. It can cover any type of + +492 +00:32:54,840 --> 00:32:59,660 +shape. So the addition is made with one class only. + +493 +00:32:59,660 --> 00:33:02,900 +So if I have 30 classes, I want to add 10 + +494 +00:33:02,900 --> 00:33:09,380 +additions to them. For example, I made a border now. + +495 +00:33:09,380 --> 00:33:13,440 +We want to make a scroll bar for the shapes, or + +496 +00:33:13,440 --> 00:33:17,040 +solid shapes. You only need to make one class + +497 +00:33:17,040 --> 00:33:21,920 +called solid and it takes any shape of the type + +498 +00:33:21,920 --> 00:33:25,840 +shape and it creates an implement for the method + +499 +00:33:25,840 --> 00:33:30,680 +draw that you write to it. So that you give it a + +500 +00:33:30,680 --> 00:33:33,420 +color and tell it to fill it, and then it draws the + +501 +00:33:33,420 --> 00:33:37,220 +shape again to get shape.draw. Not super.draw, + +502 +00:33:37,440 --> 00:33:42,720 +shape.draw. So really I only need one class to make + +503 +00:33:42,720 --> 00:33:47,280 +solid. So each new feature is one class instead of + +504 +00:33:47,280 --> 00:33:51,560 +ten classes. As I said in JavaFX, I have many UI + +505 +00:33:51,560 --> 00:33:56,450 +components. I want to make a scrollbar for them. I + +506 +00:33:56,450 --> 00:33:58,890 +want to make a scrollbar for the text area, a + +507 +00:33:58,890 --> 00:34:01,130 +scrollbar for the tab pane. I want to add this + +508 +00:34:01,130 --> 00:34:06,250 +scrollbar and tell it to make a text area with + +509 +00:34:06,250 --> 00:34:10,390 +scrollbar and make it a new class, Text area with + +510 +00:34:10,390 --> 00:34:12,330 +scrollbar, with border, and make it a new class, + +511 +00:34:12,390 --> 00:34:15,830 +look at the possibilities it has. It increases. No, + +512 +00:34:16,230 --> 00:34:19,170 +make a class, one scrollbar and wrap it in any + +513 +00:34:19,170 --> 00:34:25,500 +form of UI component. Now, where did we get the idea + +514 +00:34:25,500 --> 00:34:28,700 +guys? So we have two ways of adding, the way of + +515 +00:34:28,700 --> 00:34:33,460 +subclassing and the way of the decorator. Because + +516 +00:34:33,460 --> 00:34:37,080 +this doesn't mean that the subclassing is bad and + +517 +00:34:37,080 --> 00:34:40,180 +you don't use it, okay? No, you will say, okay, + +518 +00:34:40,320 --> 00:34:42,580 +the doctor came, the subclassing has a problem, + +519 +00:34:42,960 --> 00:34:47,320 +let's do what? The decorator all his life. No, you + +520 +00:34:47,320 --> 00:34:50,970 +are supposed to use the subclassing. But let's say + +521 +00:34:50,970 --> 00:34:54,470 +that in some cases, using subclassing will cause + +522 +00:34:54,470 --> 00:34:57,250 +an explosion of classes, a large number of + +523 +00:34:57,250 --> 00:35:01,010 +classes. When you need to add these ten classes to + +524 +00:35:01,010 --> 00:35:04,250 +make another ten classes, there is a negativity + +525 +00:35:04,250 --> 00:35:07,270 +here. So you resort to using a decorator to make + +526 +00:35:07,270 --> 00:35:10,830 +one class to add the feature to the ten you have. + +527 +00:35:11,710 --> 00:35:14,290 +So if the use of subclassing causes the creation + +528 +00:35:14,290 --> 00:35:16,270 +of a large number of classes, then you resort to + +529 +00:35:16,270 --> 00:35:17,490 +the decorator. + +530 +00:35:20,660 --> 00:35:27,960 +Now, based on this talk, let's see where we are in + +531 +00:35:27,960 --> 00:35:32,380 +Java, or + +532 +00:35:32,380 --> 00:35:36,560 +in JavaFX. We use the decorator pattern, and you + +533 +00:35:36,560 --> 00:35:39,940 +use the decorator pattern, and you don't know that + +534 +00:35:39,940 --> 00:35:41,380 +this is an application on the decorator. + +535 +00:35:44,140 --> 00:35:49,040 +I told you in Java how to write and read files. So + +536 +00:35:49,040 --> 00:35:52,100 +he used to say, for example, to write on file, go and + +537 +00:35:52,100 --> 00:36:00,980 +create an object from file output stream of + +538 +00:36:00,980 --> 00:36:05,360 +FOS, for example, that I named it, equals new file + +539 +00:36:05,360 --> 00:36:11,220 +output stream and it takes an object from type for + +540 +00:36:11,220 --> 00:36:14,830 +example, file. Now, if you want to write the output + +541 +00:36:14,830 --> 00:36:18,370 +stream file directly by using it, it is annoying + +542 +00:36:18,370 --> 00:36:20,590 +because it has a write method and it takes binary + +543 +00:36:20,590 --> 00:36:23,730 +data, for example. Okay? So it is difficult to use + +544 +00:36:23,730 --> 00:36:26,470 +it. So to make it easier to use it, it told you to + +545 +00:36:26,470 --> 00:36:32,610 +create another object from PrintWriter.pr + +546 +00:36:32,610 --> 00:36:37,750 +and you give it PrintWriter + +547 +00:36:37,750 --> 00:36:39,010 +and you give it the file + +548 +00:36:41,870 --> 00:36:43,610 +This is how they used to say, connect this one with + +549 +00:36:43,610 --> 00:36:46,250 +this one. So what is the advantage of the print + +550 +00:36:46,250 --> 00:36:49,750 +writer? You go and tell him, PR, and the print + +551 +00:36:49,750 --> 00:36:52,070 +writer tells you to write on the file as if you + +552 +00:36:52,070 --> 00:36:53,970 +were writing on the screen. You don't have to make + +553 +00:36:53,970 --> 00:36:58,730 +a print lin like system.out. You write the text + +554 +00:36:58,730 --> 00:37:06,580 +you want on the file. For example, when you write + +555 +00:37:06,580 --> 00:37:09,580 +an object file, it will also tell you to create a + +556 +00:37:09,580 --> 00:37:11,920 +file output stream, then create an object output + +557 +00:37:11,920 --> 00:37:14,900 +stream, connect it to the output stream, and write + +558 +00:37:14,900 --> 00:37:17,120 +a write object. It will take the object that you + +559 +00:37:17,120 --> 00:37:19,640 +created, for example, a student or a course, and + +560 +00:37:19,640 --> 00:37:25,060 +serialize it and write it on the file. Okay, why + +561 +00:37:25,060 --> 00:37:26,800 +did we do it this way? They used to say, okay, do + +562 +00:37:26,800 --> 00:37:29,780 +it this way, we want to do it this way. Yes, do it + +563 +00:37:29,780 --> 00:37:31,540 +this way and connect it to this way, and it turns + +564 +00:37:31,540 --> 00:37:34,670 +out this way. Okay? So why did they do it this way? + +565 +00:37:34,950 --> 00:37:37,390 +And why do you connect this with this? Okay? Pay + +566 +00:37:37,390 --> 00:37:40,910 +attention to me. In Java, we have different types + +567 +00:37:40,910 --> 00:37:45,070 +of output streams. Okay? For example, we have a + +568 +00:37:45,070 --> 00:37:46,190 +file output stream. + +569 +00:37:50,030 --> 00:37:53,290 +Which is what is in her hand to write on the file. + +570 +00:37:53,590 --> 00:37:55,770 +Binary data is written on the file. And for + +571 +00:37:55,770 --> 00:37:57,450 +example, we have a socket output stream. + +572 +00:38:02,700 --> 00:38:05,080 +What is it for? To write on the network. You give + +573 +00:38:05,080 --> 00:38:07,200 +it a specific IP and it writes on the network. You + +574 +00:38:07,200 --> 00:38:10,360 +can make a chat program on another device or send + +575 +00:38:10,360 --> 00:38:12,660 +files to another device. You use the output stream + +576 +00:38:12,660 --> 00:38:14,320 +socket. This is written on the file and this is + +577 +00:38:14,320 --> 00:38:17,160 +written on the socket. And there are other types + +578 +00:38:17,160 --> 00:38:19,100 +of output streams. I did not bring them with me + +579 +00:38:19,100 --> 00:38:23,180 +this time. Now, all of these are output streams. + +580 +00:38:23,800 --> 00:38:25,480 +Actually, when you want to write data on them, you + +581 +00:38:25,480 --> 00:38:26,940 +want to write the data in binary data. That is, + +582 +00:38:26,940 --> 00:38:28,300 +you want to send a string, you have to turn the + +583 +00:38:28,300 --> 00:38:32,630 +string into characters and binary and a story. So I + +584 +00:38:32,630 --> 00:38:34,770 +found that they made it easy for us, they let us + +585 +00:38:34,770 --> 00:38:36,950 +say whatever output stream you have, whatever you + +586 +00:38:36,950 --> 00:38:38,390 +send to the network, whatever you send to files, + +587 +00:38:38,530 --> 00:38:39,250 +whatever you send to whatever you send to whatever + +588 +00:38:39,250 --> 00:38:40,590 +you send to whatever you send to whatever you send + +589 +00:38:40,590 --> 00:38:40,650 +to whatever you send to whatever you send to + +590 +00:38:40,650 --> 00:38:40,710 +whatever you send to whatever you send to whatever + +591 +00:38:40,710 --> 00:38:40,730 +you send to whatever you send to whatever you send + +592 +00:38:40,730 --> 00:38:40,870 +to whatever you send to whatever you send to + +593 +00:38:40,870 --> 00:38:41,010 +whatever you send to whatever you send to whatever + +594 +00:38:41,010 --> 00:38:42,150 +you send to whatever you send to whatever you send + +595 +00:38:42,150 --> 00:38:42,390 +to whatever you send to whatever you send to + +596 +00:38:42,390 --> 00:38:42,690 +you send to whatever you send to whatever you send + +597 +00:38:42,690 --> 00:38:43,090 +to whatever you send to whatever you send to + +598 +00:38:43,090 --> 00:38:44,010 +whatever you send to whatever you send to whatever + +599 +00:38:44,010 --> 00:38:44,170 +you send to whatever you send to whatever you send + +600 +00:38:44,170 --> 00:38:44,190 +to whatever you send to whatever you send to + +601 +00:38:44,190 --> 00:38:44,990 +to whatever you send to whatever you send to + +602 +00:38:44,990 --> 00:38:45,530 +whatever you send to whatever you send to whatever + +603 +00:38:45,530 --> 00:38:50,890 +you send to whatever you send to whatever + +604 +00:38:50,890 --> 00:38:55,190 +you send to whatever you. Simple, how do we do it? + +605 +00:38:55,330 --> 00:38:59,190 +We go to the file output stream and make an extend + +606 +00:38:59,190 --> 00:39:05,810 +to a new class called string writing file output + +607 +00:39:05,810 --> 00:39:13,270 +stream and make an extend to this new class and + +608 +00:39:13,270 --> 00:39:19,390 +make a method called println. This is where I made + +609 +00:39:19,390 --> 00:39:21,950 +this method. It takes a string, where did I make + +610 +00:39:21,950 --> 00:39:25,210 +this method? In the new class, in the subclass, on + +611 +00:39:25,210 --> 00:39:28,210 +the basis that in the print string, it takes the + +612 +00:39:28,210 --> 00:39:31,030 +string and converts it to binary and prepares it + +613 +00:39:31,030 --> 00:39:39,530 +as a byte array and calls super.writeBytes + +614 +00:39:39,530 --> 00:39:43,670 +for example there + +615 +00:39:43,670 --> 00:39:47,810 +is a new feature that I added to the subclass of + +616 +00:39:47,810 --> 00:39:49,690 +course. If I want to write on a file, I don't need + +617 +00:39:49,690 --> 00:39:52,130 +to create an object from it. I need to create an + +618 +00:39:52,130 --> 00:39:55,510 +object from the subclass and use it. And we live + +619 +00:39:55,510 --> 00:39:59,250 +our life happily. But wait, we have ten other + +620 +00:39:59,250 --> 00:40:02,230 +output streams. So you will have to go to the + +621 +00:40:02,230 --> 00:40:05,110 +output stream socket and create a new subclass and + +622 +00:40:05,110 --> 00:40:08,790 +class, and create a print method in it, take a + +623 +00:40:08,790 --> 00:40:12,070 +string, and do the same conversion process, and + +624 +00:40:12,070 --> 00:40:12,910 +then say super, + +625 +00:40:16,330 --> 00:40:19,850 +.WriteBytesToSocket(), which is the method here, or + +626 +00:40:19,850 --> 00:40:23,090 +write bytes and give it to it to add the same + +627 +00:40:23,090 --> 00:40:27,950 +feature to this one. I had to do subclasses if I + +628 +00:40:27,950 --> 00:40:29,530 +have ten output streams and this is what exists, + +629 +00:40:29,730 --> 00:40:31,570 +types of output streams, there is a buffered + +630 +00:40:31,570 --> 00:40:35,650 +output stream written on the memory. Each one has + +631 +00:40:35,650 --> 00:40:39,690 +to do what? Extend to add a new feature. What is + +632 +00:40:39,690 --> 00:40:43,100 +this story? Every time I have an output stream, and + +633 +00:40:43,100 --> 00:40:44,940 +in order to support her writing a string, I wanted + +634 +00:40:44,940 --> 00:40:47,260 +to extend it to a new class to add this feature, + +635 +00:40:47,720 --> 00:40:50,480 +and she said + +667 +00:42:54,890 --> 00:42:59,590 +of output stream. This means that this print + +668 +00:42:59,590 --> 00:43:05,080 +writer is a wrapper to the output stream to add to + +669 +00:43:05,080 --> 00:43:09,180 +it the ability to write texts. Why did they do it + +670 +00:43:09,180 --> 00:43:10,580 +this way? They used to tell you to memorize it + +671 +00:43:10,580 --> 00:43:13,620 +this way. Why? That's it. Make a file output + +672 +00:43:13,620 --> 00:43:15,940 +stream and make a print writer and pass this to + +673 +00:43:15,940 --> 00:43:19,780 +this. Actually, this is an addition of a feature + +674 +00:43:19,780 --> 00:43:23,960 +to whom? To the object that you pass here. Without + +675 +00:43:23,960 --> 00:43:27,580 +this method, I had to add this feature to make a + +676 +00:43:27,580 --> 00:43:30,690 +subclass for each output stream is present on it. + +677 +00:43:31,270 --> 00:43:35,030 +So this is really an application for whom? For the + +678 +00:43:35,030 --> 00:43:37,490 +decorator. Any output stream that connects them + +679 +00:43:37,490 --> 00:43:40,030 +together, and in reading too, connects them + +680 +00:43:40,030 --> 00:43:41,970 +together, this is all an application for whom, + +681 +00:43:42,050 --> 00:43:44,930 +guys? For the decorator. It connects together and + +682 +00:43:44,930 --> 00:43:47,930 +you don't know what it is. No, did you get the + +683 +00:43:47,930 --> 00:43:50,510 +idea that this is an application for whom? For the + +684 +00:43:50,510 --> 00:43:54,310 +decorator. And we understood why they did that. I + +685 +00:43:54,310 --> 00:43:56,150 +could also tell you to make an object out of this + +686 +00:43:56,150 --> 00:43:59,370 +class and write on it. So why do I connect this + +687 +00:43:59,370 --> 00:44:02,650 +with this with this? To add new features to each + +688 +00:44:02,650 --> 00:44:05,610 +existing object. Because without this, it would + +689 +00:44:05,610 --> 00:44:10,050 +have to appear in a large number of subclasses. + +690 +00:44:10,950 --> 00:44:14,410 +Another example, in the java.fx that you use, I'm + +691 +00:44:14,410 --> 00:44:16,430 +sure you've taken it. What's the name of the text + +692 +00:44:16,430 --> 00:44:19,930 +area? Text area, and there's a text field, and + +693 +00:44:19,930 --> 00:44:21,390 +there's a tab, and there's I don't know what. + +694 +00:44:21,910 --> 00:44:25,130 +You'd like to add a border to any of these. Has + +695 +00:44:25,130 --> 00:44:27,910 +anyone tried to add a border to the text area in + +696 +00:44:27,910 --> 00:44:34,230 +java.fx? No, there is a class called border, + +697 +00:44:35,090 --> 00:44:39,130 +scroll type, scroll pane, there is scroll for + +698 +00:44:39,130 --> 00:44:43,830 +shapes I will go back to java swing, the swing + +699 +00:44:43,830 --> 00:44:49,710 +library, for example we have scroll pane. It means + +700 +00:44:49,710 --> 00:44:52,590 +you have to add to any scroll shape, create an + +701 +00:44:52,590 --> 00:44:55,010 +object of the type of scroll pane and give it the + +702 +00:44:55,010 --> 00:44:59,350 +shape you want. You add the scroll to it. This is + +703 +00:44:59,350 --> 00:45:02,470 +instead of going to every class and extend it to + +704 +00:45:02,470 --> 00:45:05,650 +add a scroll to the specific shape. This is also + +705 +00:45:05,650 --> 00:45:08,890 +an application for the border, for the decorator + +706 +00:45:08,890 --> 00:45:14,260 +pattern. Okay guys, there are two ways to add new + +707 +00:45:14,260 --> 00:45:17,800 +features, either subclassing or decorator. The + +708 +00:45:17,800 --> 00:45:21,620 +original is always to use subclassing, because I + +709 +00:45:21,620 --> 00:45:24,730 +don't need to write what's already there. But if the + +710 +00:45:24,730 --> 00:45:27,990 +result of using subclassing is a lot of classes, + +711 +00:45:28,070 --> 00:45:30,570 +like the examples we saw earlier, I prefer to use + +712 +00:45:30,570 --> 00:45:33,150 +the decorator which is a class that encloses + +713 +00:45:33,150 --> 00:45:35,570 +another class to add additional features to it. + +714 +00:45:35,770 --> 00:45:38,250 +Like when we made a circle and enclosed it with a + +715 +00:45:38,250 --> 00:45:41,370 +border, or a rectangle and enclosed it with a + +716 +00:45:41,370 --> 00:45:44,230 +border as well. I have ten shapes and I make one + +717 +00:45:44,230 --> 00:45:46,130 +class to add the feature, instead of having to + +718 +00:45:46,130 --> 00:45:49,370 +make ten classes for ten shapes, and this is the + +719 +00:45:49,370 --> 00:45:52,760 +idea of the decorator pattern. We took an example + +720 +00:45:52,760 --> 00:45:54,100 +today to clarify the decorator. In the next + +721 +00:45:54,100 --> 00:45:57,420 +lecture, we will read what is in the slides, see + +722 +00:45:57,420 --> 00:46:00,140 +the UML diagram of the decorator and see another + +723 +00:46:00,140 --> 00:46:01,580 +example, God willing, and God bless you. diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/jC_2sm8ON0k_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/jC_2sm8ON0k_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..05e399e7fb266d5f7c22bc42d3a24fc891cb0c53 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/jC_2sm8ON0k_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 1868, "start": 5.08, "end": 18.68, "text": " Ok guys, peace be upon you. In the last lecture, we started with the first or the last group of design patterns which are structural design patterns and we took from them two design patterns. One of them is called Corruption.", "tokens": [3477, 1074, 11, 4336, 312, 3564, 291, 13, 682, 264, 1036, 7991, 11, 321, 1409, 365, 264, 700, 420, 264, 1036, 1594, 295, 1715, 8294, 597, 366, 15067, 1715, 8294, 293, 321, 1890, 490, 552, 732, 1715, 8294, 13, 1485, 295, 552, 307, 1219, 3925, 11266, 13], "avg_logprob": -0.4996744506061077, "compression_ratio": 1.5586206896551724, "no_speech_prob": 8.344650268554688e-06, "words": [{"start": 5.08, "end": 5.36, "word": " Ok", "probability": 0.1982421875}, {"start": 5.36, "end": 5.58, "word": " guys,", "probability": 0.5556640625}, {"start": 5.62, "end": 5.82, "word": " peace", "probability": 0.1956787109375}, {"start": 5.82, "end": 6.0, "word": " be", "probability": 0.88525390625}, {"start": 6.0, "end": 6.0, "word": " upon", "probability": 0.904296875}, {"start": 6.0, "end": 6.28, "word": " you.", "probability": 0.97412109375}, {"start": 7.0, "end": 7.52, "word": " In", "probability": 0.82421875}, {"start": 7.52, "end": 7.6, "word": " the", "probability": 0.77001953125}, {"start": 7.6, "end": 7.74, "word": " last", "probability": 0.480712890625}, {"start": 7.74, "end": 8.22, "word": " lecture,", "probability": 0.76025390625}, {"start": 8.4, "end": 8.66, "word": " we", "probability": 0.64990234375}, {"start": 8.66, "end": 8.92, "word": " started", "probability": 0.73583984375}, {"start": 8.92, "end": 9.06, "word": " with", "probability": 0.55078125}, {"start": 9.06, "end": 9.24, "word": " the", "probability": 0.65869140625}, {"start": 9.24, "end": 9.3, "word": " first", "probability": 0.40576171875}, {"start": 9.3, "end": 9.82, "word": " or", "probability": 0.6484375}, {"start": 9.82, "end": 10.14, "word": " the", "probability": 0.6767578125}, {"start": 10.14, "end": 10.2, "word": " last", "probability": 0.7685546875}, {"start": 10.2, "end": 10.84, "word": " group", "probability": 0.72509765625}, {"start": 10.84, "end": 11.1, "word": " of", "probability": 0.8017578125}, {"start": 11.1, "end": 11.44, "word": " design", "probability": 0.6669921875}, {"start": 11.44, "end": 11.86, "word": " patterns", "probability": 0.8642578125}, {"start": 11.86, "end": 12.04, "word": " which", "probability": 0.50390625}, {"start": 12.04, "end": 12.76, "word": " are", "probability": 0.5126953125}, {"start": 12.76, "end": 13.24, "word": " structural", "probability": 0.8251953125}, {"start": 13.24, "end": 13.66, "word": " design", "probability": 0.892578125}, {"start": 13.66, "end": 14.02, "word": " patterns", "probability": 0.8994140625}, {"start": 14.02, "end": 14.1, "word": " and", "probability": 0.59765625}, {"start": 14.1, "end": 14.2, "word": " we", "probability": 0.78515625}, {"start": 14.2, "end": 14.34, "word": " took", "probability": 0.69287109375}, {"start": 14.34, "end": 14.46, "word": " from", "probability": 0.3427734375}, {"start": 14.46, "end": 14.62, "word": " them", "probability": 0.8583984375}, {"start": 14.62, "end": 14.86, "word": " two", "probability": 0.74853515625}, {"start": 14.86, "end": 15.2, "word": " design", "probability": 0.95556640625}, {"start": 15.2, "end": 15.68, "word": " patterns.", "probability": 0.888671875}, {"start": 16.2, "end": 16.58, "word": " One", "probability": 0.705078125}, {"start": 16.58, "end": 16.9, "word": " of", "probability": 0.293701171875}, {"start": 16.9, "end": 17.58, "word": " them", "probability": 0.7490234375}, {"start": 17.58, "end": 17.88, "word": " is", "probability": 0.86328125}, {"start": 17.88, "end": 18.06, "word": " called", "probability": 0.73291015625}, {"start": 18.06, "end": 18.68, "word": " Corruption.", "probability": 0.658203125}], "temperature": 1.0}, {"id": 2, "seek": 4230, "start": 20.42, "end": 42.3, "text": " is to provide a simple interface to use parts of your system so that you don't involve the developer who will use your library to implement many steps or know the details of parts of your system and what are the subsystems and the relationship between them make it easy for him to provide him a simple method, a simple interface through which he can implement", "tokens": [307, 281, 2893, 257, 2199, 9226, 281, 764, 3166, 295, 428, 1185, 370, 300, 291, 500, 380, 9494, 264, 10754, 567, 486, 764, 428, 6405, 281, 4445, 867, 4439, 420, 458, 264, 4365, 295, 3166, 295, 428, 1185, 293, 437, 366, 264, 2090, 9321, 82, 293, 264, 2480, 1296, 552, 652, 309, 1858, 337, 796, 281, 2893, 796, 257, 2199, 3170, 11, 257, 2199, 9226, 807, 597, 415, 393, 4445], "avg_logprob": -0.49515844230920497, "compression_ratio": 1.8274111675126903, "no_speech_prob": 3.4809112548828125e-05, "words": [{"start": 20.42, "end": 20.62, "word": " is", "probability": 0.061981201171875}, {"start": 20.62, "end": 20.82, "word": " to", "probability": 0.654296875}, {"start": 20.82, "end": 21.16, "word": " provide", "probability": 0.32275390625}, {"start": 21.16, "end": 21.58, "word": " a", "probability": 0.70849609375}, {"start": 21.58, "end": 21.9, "word": " simple", "probability": 0.6328125}, {"start": 21.9, "end": 21.9, "word": " interface", "probability": 0.82080078125}, {"start": 21.9, "end": 22.84, "word": " to", "probability": 0.466796875}, {"start": 22.84, "end": 23.22, "word": " use", "probability": 0.640625}, {"start": 23.22, "end": 23.7, "word": " parts", "probability": 0.1966552734375}, {"start": 23.7, "end": 23.8, "word": " of", "probability": 0.962890625}, {"start": 23.8, "end": 24.42, "word": " your", "probability": 0.779296875}, {"start": 24.42, "end": 24.42, "word": " system", "probability": 0.71044921875}, {"start": 24.42, "end": 24.7, "word": " so", "probability": 0.2900390625}, {"start": 24.7, "end": 24.94, "word": " that", "probability": 0.70263671875}, {"start": 24.94, "end": 25.1, "word": " you", "probability": 0.60693359375}, {"start": 25.1, "end": 25.22, "word": " don't", "probability": 0.724365234375}, {"start": 25.22, "end": 25.64, "word": " involve", "probability": 0.2464599609375}, {"start": 25.64, "end": 26.22, "word": " the", "probability": 0.587890625}, {"start": 26.22, "end": 26.78, "word": " developer", "probability": 0.7607421875}, {"start": 26.78, "end": 27.4, "word": " who", "probability": 0.541015625}, {"start": 27.4, "end": 27.54, "word": " will", "probability": 0.564453125}, {"start": 27.54, "end": 27.88, "word": " use", "probability": 0.84619140625}, {"start": 27.88, "end": 28.02, "word": " your", "probability": 0.83837890625}, {"start": 28.02, "end": 28.4, "word": " library", "probability": 0.55029296875}, {"start": 28.4, "end": 28.84, "word": " to", "probability": 0.90478515625}, {"start": 28.84, "end": 29.14, "word": " implement", "probability": 0.322265625}, {"start": 29.14, "end": 29.24, "word": " many", "probability": 0.60302734375}, {"start": 29.24, "end": 29.68, "word": " steps", "probability": 0.83154296875}, {"start": 29.68, "end": 30.68, "word": " or", "probability": 0.8369140625}, {"start": 30.68, "end": 30.94, "word": " know", "probability": 0.384521484375}, {"start": 30.94, "end": 31.52, "word": " the", "probability": 0.319091796875}, {"start": 31.52, "end": 31.52, "word": " details", "probability": 0.7958984375}, {"start": 31.52, "end": 31.66, "word": " of", "probability": 0.6142578125}, {"start": 31.66, "end": 32.04, "word": " parts", "probability": 0.35205078125}, {"start": 32.04, "end": 32.28, "word": " of", "probability": 0.92529296875}, {"start": 32.28, "end": 32.7, "word": " your", "probability": 0.8232421875}, {"start": 32.7, "end": 33.58, "word": " system", "probability": 0.9267578125}, {"start": 33.58, "end": 34.02, "word": " and", "probability": 0.52587890625}, {"start": 34.02, "end": 34.14, "word": " what", "probability": 0.33349609375}, {"start": 34.14, "end": 34.22, "word": " are", "probability": 0.56103515625}, {"start": 34.22, "end": 34.3, "word": " the", "probability": 0.6259765625}, {"start": 34.3, "end": 35.2, "word": " subsystems", "probability": 0.830078125}, {"start": 35.2, "end": 35.52, "word": " and", "probability": 0.8662109375}, {"start": 35.52, "end": 35.62, "word": " the", "probability": 0.6103515625}, {"start": 35.62, "end": 35.86, "word": " relationship", "probability": 0.75732421875}, {"start": 35.86, "end": 36.06, "word": " between", "probability": 0.87890625}, {"start": 36.06, "end": 36.66, "word": " them", "probability": 0.8828125}, {"start": 36.66, "end": 36.94, "word": " make", "probability": 0.311279296875}, {"start": 36.94, "end": 37.26, "word": " it", "probability": 0.912109375}, {"start": 37.26, "end": 37.26, "word": " easy", "probability": 0.50927734375}, {"start": 37.26, "end": 37.38, "word": " for", "probability": 0.6513671875}, {"start": 37.38, "end": 37.84, "word": " him", "probability": 0.861328125}, {"start": 37.84, "end": 38.02, "word": " to", "probability": 0.5263671875}, {"start": 38.02, "end": 38.28, "word": " provide", "probability": 0.68798828125}, {"start": 38.28, "end": 38.52, "word": " him", "probability": 0.41015625}, {"start": 38.52, "end": 38.9, "word": " a", "probability": 0.70556640625}, {"start": 38.9, "end": 38.9, "word": " simple", "probability": 0.947265625}, {"start": 38.9, "end": 39.44, "word": " method,", "probability": 0.7568359375}, {"start": 39.72, "end": 39.78, "word": " a", "probability": 0.53466796875}, {"start": 39.78, "end": 40.28, "word": " simple", "probability": 0.955078125}, {"start": 40.28, "end": 40.28, "word": " interface", "probability": 0.93408203125}, {"start": 40.28, "end": 40.6, "word": " through", "probability": 0.83056640625}, {"start": 40.6, "end": 41.08, "word": " which", "probability": 0.86474609375}, {"start": 41.08, "end": 41.56, "word": " he", "probability": 0.7900390625}, {"start": 41.56, "end": 41.74, "word": " can", "probability": 0.8310546875}, {"start": 41.74, "end": 42.3, "word": " implement", "probability": 0.6611328125}], "temperature": 1.0}, {"id": 3, "seek": 6341, "start": 43.05, "end": 63.41, "text": " a specific process without knowing the details. The details are hidden in this face. You execute the commands and provide it with a single method to execute the whole process. And this is what we call the facade. The second design pattern is the important design pattern called the adapter. How if I have a system", "tokens": [257, 2685, 1399, 1553, 5276, 264, 4365, 13, 440, 4365, 366, 7633, 294, 341, 1851, 13, 509, 14483, 264, 16901, 293, 2893, 309, 365, 257, 2167, 3170, 281, 14483, 264, 1379, 1399, 13, 400, 341, 307, 437, 321, 818, 264, 283, 326, 762, 13, 440, 1150, 1715, 5102, 307, 264, 1021, 1715, 5102, 1219, 264, 22860, 13, 1012, 498, 286, 362, 257, 1185], "avg_logprob": -0.6113281399011612, "compression_ratio": 1.643979057591623, "no_speech_prob": 7.987022399902344e-06, "words": [{"start": 43.05, "end": 43.19, "word": " a", "probability": 0.128662109375}, {"start": 43.19, "end": 43.73, "word": " specific", "probability": 0.298095703125}, {"start": 43.73, "end": 43.87, "word": " process", "probability": 0.93603515625}, {"start": 43.87, "end": 44.15, "word": " without", "probability": 0.7060546875}, {"start": 44.15, "end": 44.53, "word": " knowing", "probability": 0.60546875}, {"start": 44.53, "end": 44.67, "word": " the", "probability": 0.47314453125}, {"start": 44.67, "end": 45.05, "word": " details.", "probability": 0.703125}, {"start": 45.35, "end": 45.45, "word": " The", "probability": 0.31005859375}, {"start": 45.45, "end": 45.79, "word": " details", "probability": 0.86328125}, {"start": 45.79, "end": 45.91, "word": " are", "probability": 0.332763671875}, {"start": 45.91, "end": 46.15, "word": " hidden", "probability": 0.68408203125}, {"start": 46.15, "end": 46.61, "word": " in", "probability": 0.376708984375}, {"start": 46.61, "end": 47.93, "word": " this", "probability": 0.328369140625}, {"start": 47.93, "end": 48.35, "word": " face.", "probability": 0.2191162109375}, {"start": 49.13, "end": 49.37, "word": " You", "probability": 0.7314453125}, {"start": 49.37, "end": 50.63, "word": " execute", "probability": 0.35205078125}, {"start": 50.63, "end": 50.85, "word": " the", "probability": 0.701171875}, {"start": 50.85, "end": 51.17, "word": " commands", "probability": 0.53515625}, {"start": 51.17, "end": 51.91, "word": " and", "probability": 0.68310546875}, {"start": 51.91, "end": 52.33, "word": " provide", "probability": 0.1700439453125}, {"start": 52.33, "end": 52.47, "word": " it", "probability": 0.1925048828125}, {"start": 52.47, "end": 52.71, "word": " with", "probability": 0.6064453125}, {"start": 52.71, "end": 53.13, "word": " a", "probability": 0.446533203125}, {"start": 53.13, "end": 53.65, "word": " single", "probability": 0.61328125}, {"start": 53.65, "end": 53.65, "word": " method", "probability": 0.92138671875}, {"start": 53.65, "end": 53.99, "word": " to", "probability": 0.59228515625}, {"start": 53.99, "end": 54.27, "word": " execute", "probability": 0.35791015625}, {"start": 54.27, "end": 54.35, "word": " the", "probability": 0.849609375}, {"start": 54.35, "end": 54.39, "word": " whole", "probability": 0.47119140625}, {"start": 54.39, "end": 54.97, "word": " process.", "probability": 0.88916015625}, {"start": 55.75, "end": 55.77, "word": " And", "probability": 0.302734375}, {"start": 55.77, "end": 55.91, "word": " this", "probability": 0.67578125}, {"start": 55.91, "end": 55.99, "word": " is", "probability": 0.89990234375}, {"start": 55.99, "end": 56.15, "word": " what", "probability": 0.69091796875}, {"start": 56.15, "end": 56.65, "word": " we", "probability": 0.92724609375}, {"start": 56.65, "end": 56.83, "word": " call", "probability": 0.71142578125}, {"start": 56.83, "end": 57.31, "word": " the", "probability": 0.2491455078125}, {"start": 57.31, "end": 57.71, "word": " facade.", "probability": 0.5285237630208334}, {"start": 58.53, "end": 58.87, "word": " The", "probability": 0.85986328125}, {"start": 58.87, "end": 59.09, "word": " second", "probability": 0.83544921875}, {"start": 59.09, "end": 59.17, "word": " design", "probability": 0.88671875}, {"start": 59.17, "end": 59.55, "word": " pattern", "probability": 0.9091796875}, {"start": 59.55, "end": 60.03, "word": " is", "probability": 0.81298828125}, {"start": 60.03, "end": 60.19, "word": " the", "probability": 0.498779296875}, {"start": 60.19, "end": 60.21, "word": " important", "probability": 0.52783203125}, {"start": 60.21, "end": 60.39, "word": " design", "probability": 0.6279296875}, {"start": 60.39, "end": 60.99, "word": " pattern", "probability": 0.88037109375}, {"start": 60.99, "end": 61.25, "word": " called", "probability": 0.50537109375}, {"start": 61.25, "end": 61.33, "word": " the", "probability": 0.447265625}, {"start": 61.33, "end": 61.77, "word": " adapter.", "probability": 0.73046875}, {"start": 62.25, "end": 62.49, "word": " How", "probability": 0.43701171875}, {"start": 62.49, "end": 62.65, "word": " if", "probability": 0.50927734375}, {"start": 62.65, "end": 62.83, "word": " I", "probability": 0.96728515625}, {"start": 62.83, "end": 62.99, "word": " have", "probability": 0.93212890625}, {"start": 62.99, "end": 63.15, "word": " a", "probability": 0.9228515625}, {"start": 63.15, "end": 63.41, "word": " system", "probability": 0.88427734375}], "temperature": 1.0}, {"id": 4, "seek": 8376, "start": 64.28, "end": 83.76, "text": "It needs to match with a new office that I want to use I designed the system to use a specific office And I want to remove this office and use a new office instead And this is a scenario that will stay with you all your life That you remove offices and replace them with new ones Is the logical solution to change your entire client application", "tokens": [3522, 2203, 281, 2995, 365, 257, 777, 3398, 300, 286, 528, 281, 764, 286, 4761, 264, 1185, 281, 764, 257, 2685, 3398, 400, 286, 528, 281, 4159, 341, 3398, 293, 764, 257, 777, 3398, 2602, 400, 341, 307, 257, 9005, 300, 486, 1754, 365, 291, 439, 428, 993, 663, 291, 4159, 14434, 293, 7406, 552, 365, 777, 2306, 1119, 264, 14978, 3827, 281, 1319, 428, 2302, 6423, 3861], "avg_logprob": -0.5344203002210977, "compression_ratio": 1.801047120418848, "no_speech_prob": 1.233816146850586e-05, "words": [{"start": 64.28, "end": 64.48, "word": "It", "probability": 0.026763916015625}, {"start": 64.48, "end": 64.66, "word": " needs", "probability": 0.33837890625}, {"start": 64.66, "end": 64.74, "word": " to", "probability": 0.7490234375}, {"start": 64.74, "end": 64.98, "word": " match", "probability": 0.298828125}, {"start": 64.98, "end": 65.74, "word": " with", "probability": 0.62158203125}, {"start": 65.74, "end": 66.2, "word": " a", "probability": 0.6806640625}, {"start": 66.2, "end": 66.28, "word": " new", "probability": 0.83154296875}, {"start": 66.28, "end": 66.5, "word": " office", "probability": 0.46142578125}, {"start": 66.5, "end": 67.02, "word": " that", "probability": 0.2454833984375}, {"start": 67.02, "end": 67.1, "word": " I", "probability": 0.61767578125}, {"start": 67.1, "end": 67.16, "word": " want", "probability": 0.5048828125}, {"start": 67.16, "end": 67.28, "word": " to", "probability": 0.95849609375}, {"start": 67.28, "end": 67.5, "word": " use", "probability": 0.8447265625}, {"start": 67.5, "end": 67.86, "word": " I", "probability": 0.384765625}, {"start": 67.86, "end": 68.42, "word": " designed", "probability": 0.321533203125}, {"start": 68.42, "end": 68.64, "word": " the", "probability": 0.619140625}, {"start": 68.64, "end": 68.86, "word": " system", "probability": 0.87255859375}, {"start": 68.86, "end": 69.04, "word": " to", "probability": 0.59716796875}, {"start": 69.04, "end": 69.36, "word": " use", "probability": 0.72412109375}, {"start": 69.36, "end": 69.48, "word": " a", "probability": 0.7861328125}, {"start": 69.48, "end": 70.06, "word": " specific", "probability": 0.39794921875}, {"start": 70.06, "end": 70.06, "word": " office", "probability": 0.83935546875}, {"start": 70.06, "end": 70.82, "word": " And", "probability": 0.32470703125}, {"start": 70.82, "end": 70.96, "word": " I", "probability": 0.8193359375}, {"start": 70.96, "end": 71.1, "word": " want", "probability": 0.6298828125}, {"start": 71.1, "end": 71.24, "word": " to", "probability": 0.95068359375}, {"start": 71.24, "end": 71.4, "word": " remove", "probability": 0.2105712890625}, {"start": 71.4, "end": 71.56, "word": " this", "probability": 0.673828125}, {"start": 71.56, "end": 71.84, "word": " office", "probability": 0.80517578125}, {"start": 71.84, "end": 72.22, "word": " and", "probability": 0.83837890625}, {"start": 72.22, "end": 72.58, "word": " use", "probability": 0.5654296875}, {"start": 72.58, "end": 72.92, "word": " a", "probability": 0.7763671875}, {"start": 72.92, "end": 72.92, "word": " new", "probability": 0.865234375}, {"start": 72.92, "end": 73.2, "word": " office", "probability": 0.51318359375}, {"start": 73.2, "end": 73.48, "word": " instead", "probability": 0.81103515625}, {"start": 73.48, "end": 74.16, "word": " And", "probability": 0.54736328125}, {"start": 74.16, "end": 74.42, "word": " this", "probability": 0.85400390625}, {"start": 74.42, "end": 74.5, "word": " is", "probability": 0.467041015625}, {"start": 74.5, "end": 74.56, "word": " a", "probability": 0.8642578125}, {"start": 74.56, "end": 74.94, "word": " scenario", "probability": 0.880859375}, {"start": 74.94, "end": 75.16, "word": " that", "probability": 0.841796875}, {"start": 75.16, "end": 75.24, "word": " will", "probability": 0.73681640625}, {"start": 75.24, "end": 75.4, "word": " stay", "probability": 0.485107421875}, {"start": 75.4, "end": 75.54, "word": " with", "probability": 0.865234375}, {"start": 75.54, "end": 75.66, "word": " you", "probability": 0.9521484375}, {"start": 75.66, "end": 75.76, "word": " all", "probability": 0.44482421875}, {"start": 75.76, "end": 75.86, "word": " your", "probability": 0.8837890625}, {"start": 75.86, "end": 76.18, "word": " life", "probability": 0.92822265625}, {"start": 76.18, "end": 76.6, "word": " That", "probability": 0.283203125}, {"start": 76.6, "end": 76.8, "word": " you", "probability": 0.95361328125}, {"start": 76.8, "end": 76.98, "word": " remove", "probability": 0.72314453125}, {"start": 76.98, "end": 77.4, "word": " offices", "probability": 0.58984375}, {"start": 77.4, "end": 77.54, "word": " and", "probability": 0.9130859375}, {"start": 77.54, "end": 77.72, "word": " replace", "probability": 0.2220458984375}, {"start": 77.72, "end": 78.2, "word": " them", "probability": 0.55517578125}, {"start": 78.2, "end": 78.2, "word": " with", "probability": 0.45263671875}, {"start": 78.2, "end": 79.04, "word": " new", "probability": 0.578125}, {"start": 79.04, "end": 80.12, "word": " ones", "probability": 0.59619140625}, {"start": 80.12, "end": 80.32, "word": " Is", "probability": 0.76904296875}, {"start": 80.32, "end": 80.8, "word": " the", "probability": 0.47607421875}, {"start": 80.8, "end": 81.68, "word": " logical", "probability": 0.358642578125}, {"start": 81.68, "end": 81.76, "word": " solution", "probability": 0.884765625}, {"start": 81.76, "end": 81.94, "word": " to", "probability": 0.64111328125}, {"start": 81.94, "end": 82.5, "word": " change", "probability": 0.583984375}, {"start": 82.5, "end": 82.74, "word": " your", "probability": 0.54833984375}, {"start": 82.74, "end": 82.78, "word": " entire", "probability": 0.5693359375}, {"start": 82.78, "end": 83.08, "word": " client", "probability": 0.8583984375}, {"start": 83.08, "end": 83.76, "word": " application", "probability": 0.9287109375}], "temperature": 1.0}, {"id": 5, "seek": 11279, "start": 85.13, "end": 112.79, "text": " that every call to the new office becomes a call to the old office becomes a call to the new office? No, this is not going to work. Make an adapter so that the client makes a call to the adapter and the adapter inside turns into a call to the new office. A third office is created after that. You only make a new adapter. The program sends to the adapter and the adapter turns into the third office.", "tokens": [300, 633, 818, 281, 264, 777, 3398, 3643, 257, 818, 281, 264, 1331, 3398, 3643, 257, 818, 281, 264, 777, 3398, 30, 883, 11, 341, 307, 406, 516, 281, 589, 13, 4387, 364, 22860, 370, 300, 264, 6423, 1669, 257, 818, 281, 264, 22860, 293, 264, 22860, 1854, 4523, 666, 257, 818, 281, 264, 777, 3398, 13, 316, 2636, 3398, 307, 2942, 934, 300, 13, 509, 787, 652, 257, 777, 22860, 13, 440, 1461, 14790, 281, 264, 22860, 293, 264, 22860, 4523, 666, 264, 2636, 3398, 13], "avg_logprob": -0.4968039718541232, "compression_ratio": 2.1390374331550803, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 85.13, "end": 85.41, "word": " that", "probability": 0.09149169921875}, {"start": 85.41, "end": 85.89, "word": " every", "probability": 0.423828125}, {"start": 85.89, "end": 86.73, "word": " call", "probability": 0.505859375}, {"start": 86.73, "end": 87.01, "word": " to", "probability": 0.26025390625}, {"start": 87.01, "end": 87.67, "word": " the", "probability": 0.705078125}, {"start": 87.67, "end": 88.35, "word": " new", "probability": 0.67138671875}, {"start": 88.35, "end": 88.39, "word": " office", "probability": 0.376708984375}, {"start": 88.39, "end": 88.87, "word": " becomes", "probability": 0.10748291015625}, {"start": 88.87, "end": 89.25, "word": " a", "probability": 0.79931640625}, {"start": 89.25, "end": 89.51, "word": " call", "probability": 0.810546875}, {"start": 89.51, "end": 89.65, "word": " to", "probability": 0.9345703125}, {"start": 89.65, "end": 89.73, "word": " the", "probability": 0.87939453125}, {"start": 89.73, "end": 89.83, "word": " old", "probability": 0.7978515625}, {"start": 89.83, "end": 91.05, "word": " office", "probability": 0.58056640625}, {"start": 91.05, "end": 91.27, "word": " becomes", "probability": 0.330078125}, {"start": 91.27, "end": 91.55, "word": " a", "probability": 0.9638671875}, {"start": 91.55, "end": 91.71, "word": " call", "probability": 0.87255859375}, {"start": 91.71, "end": 91.79, "word": " to", "probability": 0.96484375}, {"start": 91.79, "end": 91.87, "word": " the", "probability": 0.90576171875}, {"start": 91.87, "end": 91.89, "word": " new", "probability": 0.90673828125}, {"start": 91.89, "end": 92.51, "word": " office?", "probability": 0.8125}, {"start": 92.77, "end": 93.27, "word": " No,", "probability": 0.7548828125}, {"start": 93.39, "end": 93.55, "word": " this", "probability": 0.33251953125}, {"start": 93.55, "end": 93.73, "word": " is", "probability": 0.231689453125}, {"start": 93.73, "end": 93.83, "word": " not", "probability": 0.87060546875}, {"start": 93.83, "end": 94.01, "word": " going", "probability": 0.38623046875}, {"start": 94.01, "end": 94.07, "word": " to", "probability": 0.96875}, {"start": 94.07, "end": 94.37, "word": " work.", "probability": 0.436767578125}, {"start": 95.13, "end": 95.33, "word": " Make", "probability": 0.391845703125}, {"start": 95.33, "end": 95.49, "word": " an", "probability": 0.8525390625}, {"start": 95.49, "end": 95.91, "word": " adapter", "probability": 0.80029296875}, {"start": 95.91, "end": 98.43, "word": " so", "probability": 0.256591796875}, {"start": 98.43, "end": 98.83, "word": " that", "probability": 0.873046875}, {"start": 98.83, "end": 98.97, "word": " the", "probability": 0.85498046875}, {"start": 98.97, "end": 99.33, "word": " client", "probability": 0.89501953125}, {"start": 99.33, "end": 99.59, "word": " makes", "probability": 0.5498046875}, {"start": 99.59, "end": 99.79, "word": " a", "probability": 0.91650390625}, {"start": 99.79, "end": 99.93, "word": " call", "probability": 0.875}, {"start": 99.93, "end": 100.03, "word": " to", "probability": 0.9599609375}, {"start": 100.03, "end": 100.11, "word": " the", "probability": 0.90869140625}, {"start": 100.11, "end": 100.49, "word": " adapter", "probability": 0.8818359375}, {"start": 100.49, "end": 101.09, "word": " and", "probability": 0.76025390625}, {"start": 101.09, "end": 101.19, "word": " the", "probability": 0.765625}, {"start": 101.19, "end": 101.57, "word": " adapter", "probability": 0.9248046875}, {"start": 101.57, "end": 101.93, "word": " inside", "probability": 0.349853515625}, {"start": 101.93, "end": 102.21, "word": " turns", "probability": 0.344970703125}, {"start": 102.21, "end": 102.59, "word": " into", "probability": 0.41552734375}, {"start": 102.59, "end": 102.63, "word": " a", "probability": 0.88232421875}, {"start": 102.63, "end": 102.77, "word": " call", "probability": 0.8349609375}, {"start": 102.77, "end": 102.89, "word": " to", "probability": 0.95166015625}, {"start": 102.89, "end": 102.95, "word": " the", "probability": 0.89111328125}, {"start": 102.95, "end": 104.37, "word": " new", "probability": 0.9033203125}, {"start": 104.37, "end": 104.37, "word": " office.", "probability": 0.849609375}, {"start": 105.11, "end": 105.43, "word": " A", "probability": 0.409423828125}, {"start": 105.43, "end": 105.47, "word": " third", "probability": 0.88037109375}, {"start": 105.47, "end": 105.79, "word": " office", "probability": 0.8330078125}, {"start": 105.79, "end": 106.13, "word": " is", "probability": 0.23828125}, {"start": 106.13, "end": 106.13, "word": " created", "probability": 0.57958984375}, {"start": 106.13, "end": 106.33, "word": " after", "probability": 0.272216796875}, {"start": 106.33, "end": 106.67, "word": " that.", "probability": 0.572265625}, {"start": 107.03, "end": 107.27, "word": " You", "probability": 0.446533203125}, {"start": 107.27, "end": 107.33, "word": " only", "probability": 0.380615234375}, {"start": 107.33, "end": 107.49, "word": " make", "probability": 0.51806640625}, {"start": 107.49, "end": 107.73, "word": " a", "probability": 0.89013671875}, {"start": 107.73, "end": 107.73, "word": " new", "probability": 0.91845703125}, {"start": 107.73, "end": 108.05, "word": " adapter.", "probability": 0.87255859375}, {"start": 109.59, "end": 109.69, "word": " The", "probability": 0.87158203125}, {"start": 109.69, "end": 109.97, "word": " program", "probability": 0.62890625}, {"start": 109.97, "end": 110.77, "word": " sends", "probability": 0.79052734375}, {"start": 110.77, "end": 110.95, "word": " to", "probability": 0.23828125}, {"start": 110.95, "end": 110.99, "word": " the", "probability": 0.86865234375}, {"start": 110.99, "end": 111.35, "word": " adapter", "probability": 0.8447265625}, {"start": 111.35, "end": 111.51, "word": " and", "probability": 0.76806640625}, {"start": 111.51, "end": 111.63, "word": " the", "probability": 0.853515625}, {"start": 111.63, "end": 111.89, "word": " adapter", "probability": 0.89208984375}, {"start": 111.89, "end": 112.29, "word": " turns", "probability": 0.6513671875}, {"start": 112.29, "end": 112.47, "word": " into", "probability": 0.55224609375}, {"start": 112.47, "end": 112.55, "word": " the", "probability": 0.278564453125}, {"start": 112.55, "end": 112.79, "word": " third", "probability": 0.833984375}, {"start": 112.79, "end": 112.79, "word": " office.", "probability": 0.884765625}], "temperature": 1.0}, {"id": 6, "seek": 14379, "start": 114.23, "end": 143.79, "text": " So your client will be static and will only send request to adapters and adapters will transform it to new folders So your application will remain as it is All you need to do is to create a new adapter when you get a new library Today we will take a third design pattern which is also one of the most important design patterns It's called Decorator Design Pattern Decorator means that it adds decor", "tokens": [407, 428, 6423, 486, 312, 13437, 293, 486, 787, 2845, 5308, 281, 23169, 1559, 293, 23169, 1559, 486, 4088, 309, 281, 777, 31082, 407, 428, 3861, 486, 6222, 382, 309, 307, 1057, 291, 643, 281, 360, 307, 281, 1884, 257, 777, 22860, 562, 291, 483, 257, 777, 6405, 2692, 321, 486, 747, 257, 2636, 1715, 5102, 597, 307, 611, 472, 295, 264, 881, 1021, 1715, 8294, 467, 311, 1219, 12427, 284, 1639, 12748, 34367, 77, 12427, 284, 1639, 1355, 300, 309, 10860, 7919], "avg_logprob": -0.6082589328289032, "compression_ratio": 1.7347826086956522, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 114.23, "end": 114.71, "word": " So", "probability": 0.277099609375}, {"start": 114.71, "end": 115.09, "word": " your", "probability": 0.466552734375}, {"start": 115.09, "end": 115.55, "word": " client", "probability": 0.67529296875}, {"start": 115.55, "end": 116.11, "word": " will", "probability": 0.326416015625}, {"start": 116.11, "end": 116.75, "word": " be", "probability": 0.2978515625}, {"start": 116.75, "end": 117.19, "word": " static", "probability": 0.13623046875}, {"start": 117.19, "end": 117.37, "word": " and", "probability": 0.311279296875}, {"start": 117.37, "end": 119.03, "word": " will", "probability": 0.30419921875}, {"start": 119.03, "end": 119.07, "word": " only", "probability": 0.448974609375}, {"start": 119.07, "end": 119.25, "word": " send", "probability": 0.74169921875}, {"start": 119.25, "end": 120.21, "word": " request", "probability": 0.439453125}, {"start": 120.21, "end": 120.43, "word": " to", "probability": 0.6005859375}, {"start": 120.43, "end": 121.09, "word": " adapters", "probability": 0.696533203125}, {"start": 121.09, "end": 121.51, "word": " and", "probability": 0.492431640625}, {"start": 121.51, "end": 122.01, "word": " adapters", "probability": 0.6512451171875}, {"start": 122.01, "end": 122.25, "word": " will", "probability": 0.443603515625}, {"start": 122.25, "end": 122.61, "word": " transform", "probability": 0.1749267578125}, {"start": 122.61, "end": 122.73, "word": " it", "probability": 0.2900390625}, {"start": 122.73, "end": 122.99, "word": " to", "probability": 0.57373046875}, {"start": 122.99, "end": 123.37, "word": " new", "probability": 0.279296875}, {"start": 123.37, "end": 123.77, "word": " folders", "probability": 0.26318359375}, {"start": 123.77, "end": 125.21, "word": " So", "probability": 0.319091796875}, {"start": 125.21, "end": 125.69, "word": " your", "probability": 0.61669921875}, {"start": 125.69, "end": 126.29, "word": " application", "probability": 0.74365234375}, {"start": 126.29, "end": 126.81, "word": " will", "probability": 0.78271484375}, {"start": 126.81, "end": 126.81, "word": " remain", "probability": 0.31787109375}, {"start": 126.81, "end": 127.63, "word": " as", "probability": 0.32958984375}, {"start": 127.63, "end": 127.89, "word": " it", "probability": 0.8203125}, {"start": 127.89, "end": 128.01, "word": " is", "probability": 0.6455078125}, {"start": 128.01, "end": 128.35, "word": " All", "probability": 0.39208984375}, {"start": 128.35, "end": 128.51, "word": " you", "probability": 0.92919921875}, {"start": 128.51, "end": 128.83, "word": " need", "probability": 0.65478515625}, {"start": 128.83, "end": 128.95, "word": " to", "probability": 0.90966796875}, {"start": 128.95, "end": 129.09, "word": " do", "probability": 0.9453125}, {"start": 129.09, "end": 129.27, "word": " is", "probability": 0.8876953125}, {"start": 129.27, "end": 129.35, "word": " to", "probability": 0.4404296875}, {"start": 129.35, "end": 129.51, "word": " create", "probability": 0.54296875}, {"start": 129.51, "end": 129.61, "word": " a", "probability": 0.78515625}, {"start": 129.61, "end": 129.61, "word": " new", "probability": 0.91259765625}, {"start": 129.61, "end": 129.99, "word": " adapter", "probability": 0.62841796875}, {"start": 129.99, "end": 130.47, "word": " when", "probability": 0.75439453125}, {"start": 130.47, "end": 130.63, "word": " you", "probability": 0.9384765625}, {"start": 130.63, "end": 130.73, "word": " get", "probability": 0.276611328125}, {"start": 130.73, "end": 130.83, "word": " a", "probability": 0.9287109375}, {"start": 130.83, "end": 132.05, "word": " new", "probability": 0.89794921875}, {"start": 132.05, "end": 132.13, "word": " library", "probability": 0.54296875}, {"start": 132.13, "end": 134.03, "word": " Today", "probability": 0.262939453125}, {"start": 134.03, "end": 134.23, "word": " we", "probability": 0.7578125}, {"start": 134.23, "end": 134.23, "word": " will", "probability": 0.65673828125}, {"start": 134.23, "end": 134.39, "word": " take", "probability": 0.338623046875}, {"start": 134.39, "end": 134.49, "word": " a", "probability": 0.485107421875}, {"start": 134.49, "end": 134.51, "word": " third", "probability": 0.8125}, {"start": 134.51, "end": 134.73, "word": " design", "probability": 0.8525390625}, {"start": 134.73, "end": 135.33, "word": " pattern", "probability": 0.875}, {"start": 135.33, "end": 135.61, "word": " which", "probability": 0.51025390625}, {"start": 135.61, "end": 135.75, "word": " is", "probability": 0.91552734375}, {"start": 135.75, "end": 135.97, "word": " also", "probability": 0.587890625}, {"start": 135.97, "end": 136.11, "word": " one", "probability": 0.497314453125}, {"start": 136.11, "end": 136.19, "word": " of", "probability": 0.96533203125}, {"start": 136.19, "end": 136.27, "word": " the", "probability": 0.89111328125}, {"start": 136.27, "end": 136.51, "word": " most", "probability": 0.4208984375}, {"start": 136.51, "end": 136.51, "word": " important", "probability": 0.85546875}, {"start": 136.51, "end": 136.51, "word": " design", "probability": 0.583984375}, {"start": 136.51, "end": 137.39, "word": " patterns", "probability": 0.84716796875}, {"start": 137.39, "end": 138.13, "word": " It's", "probability": 0.3485107421875}, {"start": 138.13, "end": 138.41, "word": " called", "probability": 0.72265625}, {"start": 138.41, "end": 139.23, "word": " Decorator", "probability": 0.7665201822916666}, {"start": 139.23, "end": 140.13, "word": " Design", "probability": 0.488525390625}, {"start": 140.13, "end": 140.69, "word": " Pattern", "probability": 0.955810546875}, {"start": 140.69, "end": 141.73, "word": " Decorator", "probability": 0.8982747395833334}, {"start": 141.73, "end": 142.27, "word": " means", "probability": 0.68359375}, {"start": 142.27, "end": 142.79, "word": " that", "probability": 0.2384033203125}, {"start": 142.79, "end": 142.93, "word": " it", "probability": 0.2161865234375}, {"start": 142.93, "end": 143.13, "word": " adds", "probability": 0.62841796875}, {"start": 143.13, "end": 143.79, "word": " decor", "probability": 0.269287109375}], "temperature": 1.0}, {"id": 7, "seek": 17156, "start": 144.9, "end": 171.56, "text": "For example, jewellery. We all know what decor means. Okay, let's read the intent and try to understand it. Then, let's look at a practical example to explain what the decorator pattern is and what it means. The intent or the goal of the decorator pattern is to attach additional responsibilities to an object dynamically. To add new characteristics to the object dynamically.", "tokens": [12587, 1365, 11, 1506, 6326, 2109, 13, 492, 439, 458, 437, 7919, 1355, 13, 1033, 11, 718, 311, 1401, 264, 8446, 293, 853, 281, 1223, 309, 13, 1396, 11, 718, 311, 574, 412, 257, 8496, 1365, 281, 2903, 437, 264, 7919, 1639, 5102, 307, 293, 437, 309, 1355, 13, 440, 8446, 420, 264, 3387, 295, 264, 7919, 1639, 5102, 307, 281, 5085, 4497, 16190, 281, 364, 2657, 43492, 13, 1407, 909, 777, 10891, 281, 264, 2657, 43492, 13], "avg_logprob": -0.4580696315705022, "compression_ratio": 1.7570093457943925, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 144.9, "end": 145.2, "word": "For", "probability": 0.046783447265625}, {"start": 145.2, "end": 145.28, "word": " example,", "probability": 0.86376953125}, {"start": 145.28, "end": 145.8, "word": " jewellery.", "probability": 0.6011962890625}, {"start": 146.9, "end": 147.5, "word": " We", "probability": 0.27294921875}, {"start": 147.5, "end": 147.7, "word": " all", "probability": 0.78271484375}, {"start": 147.7, "end": 147.98, "word": " know", "probability": 0.8720703125}, {"start": 147.98, "end": 148.18, "word": " what", "probability": 0.85498046875}, {"start": 148.18, "end": 150.06, "word": " decor", "probability": 0.406982421875}, {"start": 150.06, "end": 150.28, "word": " means.", "probability": 0.72900390625}, {"start": 151.64, "end": 152.24, "word": " Okay,", "probability": 0.1597900390625}, {"start": 152.34, "end": 152.5, "word": " let's", "probability": 0.883544921875}, {"start": 152.5, "end": 152.82, "word": " read", "probability": 0.771484375}, {"start": 152.82, "end": 152.98, "word": " the", "probability": 0.85546875}, {"start": 152.98, "end": 153.38, "word": " intent", "probability": 0.8212890625}, {"start": 153.38, "end": 153.82, "word": " and", "probability": 0.411865234375}, {"start": 153.82, "end": 154.06, "word": " try", "probability": 0.845703125}, {"start": 154.06, "end": 154.2, "word": " to", "probability": 0.9638671875}, {"start": 154.2, "end": 154.42, "word": " understand", "probability": 0.7333984375}, {"start": 154.42, "end": 154.62, "word": " it.", "probability": 0.92822265625}, {"start": 155.5, "end": 156.1, "word": " Then,", "probability": 0.42236328125}, {"start": 156.22, "end": 156.36, "word": " let's", "probability": 0.7337646484375}, {"start": 156.36, "end": 156.48, "word": " look", "probability": 0.32373046875}, {"start": 156.48, "end": 156.56, "word": " at", "probability": 0.7998046875}, {"start": 156.56, "end": 156.86, "word": " a", "probability": 0.650390625}, {"start": 156.86, "end": 157.12, "word": " practical", "probability": 0.91796875}, {"start": 157.12, "end": 157.12, "word": " example", "probability": 0.9638671875}, {"start": 157.12, "end": 157.3, "word": " to", "probability": 0.5390625}, {"start": 157.3, "end": 157.6, "word": " explain", "probability": 0.437744140625}, {"start": 157.6, "end": 158.28, "word": " what", "probability": 0.646484375}, {"start": 158.28, "end": 158.54, "word": " the", "probability": 0.3232421875}, {"start": 158.54, "end": 158.98, "word": " decorator", "probability": 0.88427734375}, {"start": 158.98, "end": 159.44, "word": " pattern", "probability": 0.85302734375}, {"start": 159.44, "end": 159.8, "word": " is", "probability": 0.8193359375}, {"start": 159.8, "end": 160.18, "word": " and", "probability": 0.84033203125}, {"start": 160.18, "end": 160.36, "word": " what", "probability": 0.611328125}, {"start": 160.36, "end": 160.36, "word": " it", "probability": 0.347412109375}, {"start": 160.36, "end": 160.58, "word": " means.", "probability": 0.57666015625}, {"start": 161.32, "end": 161.92, "word": " The", "probability": 0.72265625}, {"start": 161.92, "end": 162.24, "word": " intent", "probability": 0.96533203125}, {"start": 162.24, "end": 162.48, "word": " or", "probability": 0.603515625}, {"start": 162.48, "end": 162.58, "word": " the", "probability": 0.48046875}, {"start": 162.58, "end": 162.76, "word": " goal", "probability": 0.6591796875}, {"start": 162.76, "end": 162.96, "word": " of", "probability": 0.9638671875}, {"start": 162.96, "end": 163.06, "word": " the", "probability": 0.818359375}, {"start": 163.06, "end": 163.44, "word": " decorator", "probability": 0.9873046875}, {"start": 163.44, "end": 163.86, "word": " pattern", "probability": 0.87548828125}, {"start": 163.86, "end": 164.42, "word": " is", "probability": 0.58642578125}, {"start": 164.42, "end": 164.48, "word": " to", "probability": 0.857421875}, {"start": 164.48, "end": 164.8, "word": " attach", "probability": 0.81396484375}, {"start": 164.8, "end": 165.3, "word": " additional", "probability": 0.8828125}, {"start": 165.3, "end": 166.12, "word": " responsibilities", "probability": 0.93408203125}, {"start": 166.12, "end": 166.42, "word": " to", "probability": 0.9716796875}, {"start": 166.42, "end": 166.6, "word": " an", "probability": 0.947265625}, {"start": 166.6, "end": 166.96, "word": " object", "probability": 0.97607421875}, {"start": 166.96, "end": 167.64, "word": " dynamically.", "probability": 0.85693359375}, {"start": 168.76, "end": 168.76, "word": " To", "probability": 0.24072265625}, {"start": 168.76, "end": 168.96, "word": " add", "probability": 0.81201171875}, {"start": 168.96, "end": 169.2, "word": " new", "probability": 0.81591796875}, {"start": 169.2, "end": 169.66, "word": " characteristics", "probability": 0.434326171875}, {"start": 169.66, "end": 170.14, "word": " to", "probability": 0.93798828125}, {"start": 170.14, "end": 170.24, "word": " the", "probability": 0.71044921875}, {"start": 170.24, "end": 170.7, "word": " object", "probability": 0.958984375}, {"start": 170.7, "end": 171.56, "word": " dynamically.", "probability": 0.8291015625}], "temperature": 1.0}, {"id": 8, "seek": 19417, "start": 174.35, "end": 194.17, "text": "2. Decorators provide a flexible alternative to subclassing for extending functionality What does this sentence mean? This is the most important sentence Decorators provide a flexible alternative What is a flexible alternative? It is an alternative to subclassing", "tokens": [17, 13, 12427, 284, 3391, 2893, 257, 11358, 8535, 281, 1422, 11665, 278, 337, 24360, 14980, 708, 775, 341, 8174, 914, 30, 639, 307, 264, 881, 1021, 8174, 12427, 284, 3391, 2893, 257, 11358, 8535, 708, 307, 257, 11358, 8535, 30, 467, 307, 364, 8535, 281, 1422, 11665, 278], "avg_logprob": -0.30593749284744265, "compression_ratio": 1.8785714285714286, "no_speech_prob": 0.0, "words": [{"start": 174.35, "end": 175.07, "word": "2.", "probability": 0.271240234375}, {"start": 175.67, "end": 176.37, "word": " Decorators", "probability": 0.93994140625}, {"start": 176.37, "end": 176.99, "word": " provide", "probability": 0.74365234375}, {"start": 176.99, "end": 178.45, "word": " a", "probability": 0.9560546875}, {"start": 178.45, "end": 178.87, "word": " flexible", "probability": 0.85107421875}, {"start": 178.87, "end": 179.51, "word": " alternative", "probability": 0.9326171875}, {"start": 179.51, "end": 179.75, "word": " to", "probability": 0.9599609375}, {"start": 179.75, "end": 180.47, "word": " subclassing", "probability": 0.9314778645833334}, {"start": 180.47, "end": 181.71, "word": " for", "probability": 0.7275390625}, {"start": 181.71, "end": 182.51, "word": " extending", "probability": 0.88037109375}, {"start": 182.51, "end": 183.73, "word": " functionality", "probability": 0.93701171875}, {"start": 183.73, "end": 184.37, "word": " What", "probability": 0.389404296875}, {"start": 184.37, "end": 184.55, "word": " does", "probability": 0.7041015625}, {"start": 184.55, "end": 184.63, "word": " this", "probability": 0.76611328125}, {"start": 184.63, "end": 184.79, "word": " sentence", "probability": 0.419677734375}, {"start": 184.79, "end": 184.83, "word": " mean?", "probability": 0.8876953125}, {"start": 185.05, "end": 185.19, "word": " This", "probability": 0.5205078125}, {"start": 185.19, "end": 185.23, "word": " is", "probability": 0.833984375}, {"start": 185.23, "end": 185.31, "word": " the", "probability": 0.830078125}, {"start": 185.31, "end": 185.41, "word": " most", "probability": 0.83056640625}, {"start": 185.41, "end": 185.49, "word": " important", "probability": 0.8642578125}, {"start": 185.49, "end": 185.81, "word": " sentence", "probability": 0.708984375}, {"start": 185.81, "end": 187.03, "word": " Decorators", "probability": 0.8033854166666666}, {"start": 187.03, "end": 187.77, "word": " provide", "probability": 0.93701171875}, {"start": 187.77, "end": 188.73, "word": " a", "probability": 0.9853515625}, {"start": 188.73, "end": 189.13, "word": " flexible", "probability": 0.8671875}, {"start": 189.13, "end": 189.75, "word": " alternative", "probability": 0.9482421875}, {"start": 189.75, "end": 189.91, "word": " What", "probability": 0.339111328125}, {"start": 189.91, "end": 190.05, "word": " is", "probability": 0.798828125}, {"start": 190.05, "end": 190.11, "word": " a", "probability": 0.572265625}, {"start": 190.11, "end": 190.37, "word": " flexible", "probability": 0.89599609375}, {"start": 190.37, "end": 191.03, "word": " alternative?", "probability": 0.9580078125}, {"start": 191.13, "end": 191.29, "word": " It", "probability": 0.42041015625}, {"start": 191.29, "end": 191.49, "word": " is", "probability": 0.6728515625}, {"start": 191.49, "end": 191.59, "word": " an", "probability": 0.47802734375}, {"start": 191.59, "end": 191.59, "word": " alternative", "probability": 0.9287109375}, {"start": 191.59, "end": 193.21, "word": " to", "probability": 0.29443359375}, {"start": 193.21, "end": 194.17, "word": " subclassing", "probability": 0.94140625}], "temperature": 1.0}, {"id": 9, "seek": 22323, "start": 195.45, "end": 223.23, "text": "for extending functionality because we have always learned in programming that if you have a class and you want to add new features that don't exist in it, what do you do? you modify its code? no, you create a new class and extend it to the old one so that you don't rewrite the code and then add new features okay? did you find that we want to learn something new? what contradicts this belief?", "tokens": [2994, 24360, 14980, 570, 321, 362, 1009, 3264, 294, 9410, 300, 498, 291, 362, 257, 1508, 293, 291, 528, 281, 909, 777, 4122, 300, 500, 380, 2514, 294, 309, 11, 437, 360, 291, 360, 30, 291, 16927, 1080, 3089, 30, 572, 11, 291, 1884, 257, 777, 1508, 293, 10101, 309, 281, 264, 1331, 472, 370, 300, 291, 500, 380, 28132, 264, 3089, 293, 550, 909, 777, 4122, 1392, 30, 630, 291, 915, 300, 321, 528, 281, 1466, 746, 777, 30, 437, 28900, 82, 341, 7107, 30], "avg_logprob": -0.507543117150493, "compression_ratio": 1.7792792792792793, "no_speech_prob": 4.5299530029296875e-06, "words": [{"start": 195.45, "end": 195.95, "word": "for", "probability": 0.424560546875}, {"start": 195.95, "end": 196.45, "word": " extending", "probability": 0.79345703125}, {"start": 196.45, "end": 197.23, "word": " functionality", "probability": 0.90966796875}, {"start": 197.23, "end": 197.69, "word": " because", "probability": 0.2410888671875}, {"start": 197.69, "end": 198.23, "word": " we", "probability": 0.552734375}, {"start": 198.23, "end": 198.23, "word": " have", "probability": 0.1951904296875}, {"start": 198.23, "end": 198.57, "word": " always", "probability": 0.73876953125}, {"start": 198.57, "end": 198.99, "word": " learned", "probability": 0.349609375}, {"start": 198.99, "end": 200.05, "word": " in", "probability": 0.463134765625}, {"start": 200.05, "end": 200.41, "word": " programming", "probability": 0.791015625}, {"start": 200.41, "end": 201.23, "word": " that", "probability": 0.73486328125}, {"start": 201.23, "end": 201.33, "word": " if", "probability": 0.62255859375}, {"start": 201.33, "end": 201.47, "word": " you", "probability": 0.90234375}, {"start": 201.47, "end": 201.57, "word": " have", "probability": 0.86962890625}, {"start": 201.57, "end": 201.73, "word": " a", "probability": 0.95703125}, {"start": 201.73, "end": 201.99, "word": " class", "probability": 0.90234375}, {"start": 201.99, "end": 202.07, "word": " and", "probability": 0.54833984375}, {"start": 202.07, "end": 202.15, "word": " you", "probability": 0.73193359375}, {"start": 202.15, "end": 202.27, "word": " want", "probability": 0.69873046875}, {"start": 202.27, "end": 202.33, "word": " to", "probability": 0.9599609375}, {"start": 202.33, "end": 202.51, "word": " add", "probability": 0.90478515625}, {"start": 202.51, "end": 202.73, "word": " new", "probability": 0.6298828125}, {"start": 202.73, "end": 203.41, "word": " features", "probability": 0.5107421875}, {"start": 203.41, "end": 204.27, "word": " that", "probability": 0.467041015625}, {"start": 204.27, "end": 204.41, "word": " don't", "probability": 0.658203125}, {"start": 204.41, "end": 204.71, "word": " exist", "probability": 0.1915283203125}, {"start": 204.71, "end": 204.85, "word": " in", "probability": 0.365966796875}, {"start": 204.85, "end": 204.97, "word": " it,", "probability": 0.67626953125}, {"start": 205.01, "end": 205.07, "word": " what", "probability": 0.5908203125}, {"start": 205.07, "end": 205.17, "word": " do", "probability": 0.72216796875}, {"start": 205.17, "end": 205.23, "word": " you", "probability": 0.96826171875}, {"start": 205.23, "end": 205.43, "word": " do?", "probability": 0.9462890625}, {"start": 206.13, "end": 206.31, "word": " you", "probability": 0.5078125}, {"start": 206.31, "end": 206.59, "word": " modify", "probability": 0.36962890625}, {"start": 206.59, "end": 206.75, "word": " its", "probability": 0.47265625}, {"start": 206.75, "end": 206.97, "word": " code?", "probability": 0.92724609375}, {"start": 207.59, "end": 207.93, "word": " no,", "probability": 0.64453125}, {"start": 208.01, "end": 208.15, "word": " you", "probability": 0.94091796875}, {"start": 208.15, "end": 208.45, "word": " create", "probability": 0.2384033203125}, {"start": 208.45, "end": 208.99, "word": " a", "probability": 0.92041015625}, {"start": 208.99, "end": 209.57, "word": " new", "probability": 0.91552734375}, {"start": 209.57, "end": 209.57, "word": " class", "probability": 0.93408203125}, {"start": 209.57, "end": 209.83, "word": " and", "probability": 0.6767578125}, {"start": 209.83, "end": 210.21, "word": " extend", "probability": 0.81396484375}, {"start": 210.21, "end": 210.37, "word": " it", "probability": 0.5400390625}, {"start": 210.37, "end": 210.37, "word": " to", "probability": 0.85986328125}, {"start": 210.37, "end": 210.73, "word": " the", "probability": 0.6533203125}, {"start": 210.73, "end": 210.89, "word": " old", "probability": 0.52490234375}, {"start": 210.89, "end": 211.05, "word": " one", "probability": 0.499267578125}, {"start": 211.05, "end": 211.69, "word": " so", "probability": 0.5146484375}, {"start": 211.69, "end": 212.07, "word": " that", "probability": 0.72314453125}, {"start": 212.07, "end": 212.11, "word": " you", "probability": 0.350341796875}, {"start": 212.11, "end": 212.21, "word": " don't", "probability": 0.89697265625}, {"start": 212.21, "end": 212.47, "word": " rewrite", "probability": 0.2481689453125}, {"start": 212.47, "end": 213.03, "word": " the", "probability": 0.67626953125}, {"start": 213.03, "end": 213.23, "word": " code", "probability": 0.7783203125}, {"start": 213.23, "end": 213.63, "word": " and", "probability": 0.277587890625}, {"start": 213.63, "end": 213.83, "word": " then", "probability": 0.50927734375}, {"start": 213.83, "end": 214.07, "word": " add", "probability": 0.5947265625}, {"start": 214.07, "end": 214.21, "word": " new", "probability": 0.71435546875}, {"start": 214.21, "end": 214.43, "word": " features", "probability": 0.436279296875}, {"start": 214.43, "end": 215.93, "word": " okay?", "probability": 0.2138671875}, {"start": 217.47, "end": 217.67, "word": " did", "probability": 0.235107421875}, {"start": 217.67, "end": 217.69, "word": " you", "probability": 0.96435546875}, {"start": 217.69, "end": 217.85, "word": " find", "probability": 0.5673828125}, {"start": 217.85, "end": 217.99, "word": " that", "probability": 0.2998046875}, {"start": 217.99, "end": 218.87, "word": " we", "probability": 0.39404296875}, {"start": 218.87, "end": 219.01, "word": " want", "probability": 0.44677734375}, {"start": 219.01, "end": 219.09, "word": " to", "probability": 0.96875}, {"start": 219.09, "end": 219.37, "word": " learn", "probability": 0.96533203125}, {"start": 219.37, "end": 219.59, "word": " something", "probability": 0.708984375}, {"start": 219.59, "end": 219.93, "word": " new?", "probability": 0.91015625}, {"start": 221.03, "end": 221.53, "word": " what", "probability": 0.546875}, {"start": 221.53, "end": 221.97, "word": " contradicts", "probability": 0.71337890625}, {"start": 221.97, "end": 222.87, "word": " this", "probability": 0.7939453125}, {"start": 222.87, "end": 223.23, "word": " belief?", "probability": 0.65234375}], "temperature": 1.0}, {"id": 10, "seek": 24812, "start": 224.54, "end": 248.12, "text": " Let's change our beliefs in programming, not in other things, okay? That you learn all your life that you add something new to the class and go and extend it and add something new to it and you are happy with it and the subclassing is always good and excellent No, we will learn that the subclassing in many cases is bad and we will see alternatives to it", "tokens": [961, 311, 1319, 527, 13585, 294, 9410, 11, 406, 294, 661, 721, 11, 1392, 30, 663, 291, 1466, 439, 428, 993, 300, 291, 909, 746, 777, 281, 264, 1508, 293, 352, 293, 10101, 309, 293, 909, 746, 777, 281, 309, 293, 291, 366, 2055, 365, 309, 293, 264, 1422, 11665, 278, 307, 1009, 665, 293, 7103, 883, 11, 321, 486, 1466, 300, 264, 1422, 11665, 278, 294, 867, 3331, 307, 1578, 293, 321, 486, 536, 20478, 281, 309], "avg_logprob": -0.5830696277980563, "compression_ratio": 1.7623762376237624, "no_speech_prob": 4.947185516357422e-06, "words": [{"start": 224.54, "end": 224.82, "word": " Let's", "probability": 0.47698974609375}, {"start": 224.82, "end": 225.04, "word": " change", "probability": 0.85498046875}, {"start": 225.04, "end": 225.36, "word": " our", "probability": 0.385009765625}, {"start": 225.36, "end": 225.76, "word": " beliefs", "probability": 0.27197265625}, {"start": 225.76, "end": 226.52, "word": " in", "probability": 0.39013671875}, {"start": 226.52, "end": 226.88, "word": " programming,", "probability": 0.83544921875}, {"start": 226.96, "end": 227.06, "word": " not", "probability": 0.65966796875}, {"start": 227.06, "end": 227.16, "word": " in", "probability": 0.51416015625}, {"start": 227.16, "end": 227.56, "word": " other", "probability": 0.50732421875}, {"start": 227.56, "end": 227.62, "word": " things,", "probability": 0.6240234375}, {"start": 227.7, "end": 227.94, "word": " okay?", "probability": 0.322509765625}, {"start": 228.58, "end": 228.9, "word": " That", "probability": 0.33154296875}, {"start": 228.9, "end": 229.2, "word": " you", "probability": 0.7265625}, {"start": 229.2, "end": 230.98, "word": " learn", "probability": 0.347900390625}, {"start": 230.98, "end": 231.08, "word": " all", "probability": 0.48583984375}, {"start": 231.08, "end": 231.08, "word": " your", "probability": 0.841796875}, {"start": 231.08, "end": 231.08, "word": " life", "probability": 0.919921875}, {"start": 231.08, "end": 231.7, "word": " that", "probability": 0.65234375}, {"start": 231.7, "end": 232.32, "word": " you", "probability": 0.348876953125}, {"start": 232.32, "end": 232.78, "word": " add", "probability": 0.59619140625}, {"start": 232.78, "end": 233.16, "word": " something", "probability": 0.380126953125}, {"start": 233.16, "end": 233.54, "word": " new", "probability": 0.78955078125}, {"start": 233.54, "end": 233.54, "word": " to", "probability": 0.8427734375}, {"start": 233.54, "end": 233.54, "word": " the", "probability": 0.63623046875}, {"start": 233.54, "end": 233.54, "word": " class", "probability": 0.92138671875}, {"start": 233.54, "end": 233.9, "word": " and", "probability": 0.6552734375}, {"start": 233.9, "end": 234.02, "word": " go", "probability": 0.1734619140625}, {"start": 234.02, "end": 234.1, "word": " and", "probability": 0.251220703125}, {"start": 234.1, "end": 234.58, "word": " extend", "probability": 0.69482421875}, {"start": 234.58, "end": 234.84, "word": " it", "probability": 0.89453125}, {"start": 234.84, "end": 235.3, "word": " and", "probability": 0.42919921875}, {"start": 235.3, "end": 235.48, "word": " add", "probability": 0.90576171875}, {"start": 235.48, "end": 235.82, "word": " something", "probability": 0.454833984375}, {"start": 235.82, "end": 236.2, "word": " new", "probability": 0.82177734375}, {"start": 236.2, "end": 236.2, "word": " to", "probability": 0.388671875}, {"start": 236.2, "end": 236.58, "word": " it", "probability": 0.9091796875}, {"start": 236.58, "end": 236.8, "word": " and", "probability": 0.224853515625}, {"start": 236.8, "end": 236.88, "word": " you", "probability": 0.315673828125}, {"start": 236.88, "end": 237.14, "word": " are", "probability": 0.441650390625}, {"start": 237.14, "end": 237.14, "word": " happy", "probability": 0.71435546875}, {"start": 237.14, "end": 237.28, "word": " with", "probability": 0.7607421875}, {"start": 237.28, "end": 237.54, "word": " it", "probability": 0.119140625}, {"start": 237.54, "end": 237.98, "word": " and", "probability": 0.611328125}, {"start": 237.98, "end": 238.38, "word": " the", "probability": 0.39794921875}, {"start": 238.38, "end": 239.0, "word": " subclassing", "probability": 0.85009765625}, {"start": 239.0, "end": 239.02, "word": " is", "probability": 0.8955078125}, {"start": 239.02, "end": 239.06, "word": " always", "probability": 0.6572265625}, {"start": 239.06, "end": 239.16, "word": " good", "probability": 0.467529296875}, {"start": 239.16, "end": 239.3, "word": " and", "probability": 0.7509765625}, {"start": 239.3, "end": 239.72, "word": " excellent", "probability": 0.66455078125}, {"start": 239.72, "end": 240.22, "word": " No,", "probability": 0.31884765625}, {"start": 240.28, "end": 240.4, "word": " we", "probability": 0.2081298828125}, {"start": 240.4, "end": 240.58, "word": " will", "probability": 0.521484375}, {"start": 240.58, "end": 241.04, "word": " learn", "probability": 0.8818359375}, {"start": 241.04, "end": 241.28, "word": " that", "probability": 0.7158203125}, {"start": 241.28, "end": 241.4, "word": " the", "probability": 0.406982421875}, {"start": 241.4, "end": 242.18, "word": " subclassing", "probability": 0.9700520833333334}, {"start": 242.18, "end": 242.84, "word": " in", "probability": 0.58837890625}, {"start": 242.84, "end": 243.16, "word": " many", "probability": 0.7275390625}, {"start": 243.16, "end": 244.32, "word": " cases", "probability": 0.88232421875}, {"start": 244.32, "end": 245.06, "word": " is", "probability": 0.81982421875}, {"start": 245.06, "end": 245.44, "word": " bad", "probability": 0.85205078125}, {"start": 245.44, "end": 246.96, "word": " and", "probability": 0.75}, {"start": 246.96, "end": 247.12, "word": " we", "probability": 0.92578125}, {"start": 247.12, "end": 247.12, "word": " will", "probability": 0.81396484375}, {"start": 247.12, "end": 247.32, "word": " see", "probability": 0.477294921875}, {"start": 247.32, "end": 247.78, "word": " alternatives", "probability": 0.57568359375}, {"start": 247.78, "end": 248.02, "word": " to", "probability": 0.65087890625}, {"start": 248.02, "end": 248.12, "word": " it", "probability": 0.927734375}], "temperature": 1.0}, {"id": 11, "seek": 27702, "start": 249.09, "end": 277.03, "text": "How can we add a new functionality without subclassing? And to understand when subclassing is bad, let's see a practical example and then we will continue reading the slides. Let me explain this subject to you. First, I will give you a simple example, not very practical, to show you what the meaning of the decorator is, where the problem is, and how the decorator can solve this problem.", "tokens": [6462, 393, 321, 909, 257, 777, 14980, 1553, 1422, 11665, 278, 30, 400, 281, 1223, 562, 1422, 11665, 278, 307, 1578, 11, 718, 311, 536, 257, 8496, 1365, 293, 550, 321, 486, 2354, 3760, 264, 9788, 13, 961, 385, 2903, 341, 3983, 281, 291, 13, 2386, 11, 286, 486, 976, 291, 257, 2199, 1365, 11, 406, 588, 8496, 11, 281, 855, 291, 437, 264, 3620, 295, 264, 7919, 1639, 307, 11, 689, 264, 1154, 307, 11, 293, 577, 264, 7919, 1639, 393, 5039, 341, 1154, 13], "avg_logprob": -0.4615660837326927, "compression_ratio": 1.6623931623931625, "no_speech_prob": 1.2993812561035156e-05, "words": [{"start": 249.09, "end": 249.41, "word": "How", "probability": 0.395751953125}, {"start": 249.41, "end": 249.69, "word": " can", "probability": 0.350341796875}, {"start": 249.69, "end": 249.75, "word": " we", "probability": 0.8828125}, {"start": 249.75, "end": 249.93, "word": " add", "probability": 0.80224609375}, {"start": 249.93, "end": 250.05, "word": " a", "probability": 0.33251953125}, {"start": 250.05, "end": 250.05, "word": " new", "probability": 0.8525390625}, {"start": 250.05, "end": 250.53, "word": " functionality", "probability": 0.669921875}, {"start": 250.53, "end": 251.29, "word": " without", "probability": 0.84619140625}, {"start": 251.29, "end": 252.85, "word": " subclassing?", "probability": 0.8243815104166666}, {"start": 253.25, "end": 253.39, "word": " And", "probability": 0.447021484375}, {"start": 253.39, "end": 253.61, "word": " to", "probability": 0.7490234375}, {"start": 253.61, "end": 253.91, "word": " understand", "probability": 0.6484375}, {"start": 253.91, "end": 254.69, "word": " when", "probability": 0.345703125}, {"start": 254.69, "end": 255.61, "word": " subclassing", "probability": 0.7985026041666666}, {"start": 255.61, "end": 255.79, "word": " is", "probability": 0.7421875}, {"start": 255.79, "end": 256.25, "word": " bad,", "probability": 0.59912109375}, {"start": 256.67, "end": 256.99, "word": " let's", "probability": 0.869140625}, {"start": 256.99, "end": 257.19, "word": " see", "probability": 0.587890625}, {"start": 257.19, "end": 258.03, "word": " a", "probability": 0.435302734375}, {"start": 258.03, "end": 258.35, "word": " practical", "probability": 0.84375}, {"start": 258.35, "end": 258.35, "word": " example", "probability": 0.9619140625}, {"start": 258.35, "end": 258.49, "word": " and", "probability": 0.37109375}, {"start": 258.49, "end": 258.69, "word": " then", "probability": 0.73046875}, {"start": 258.69, "end": 258.89, "word": " we", "probability": 0.437255859375}, {"start": 258.89, "end": 259.17, "word": " will", "probability": 0.2257080078125}, {"start": 259.17, "end": 259.41, "word": " continue", "probability": 0.4609375}, {"start": 259.41, "end": 259.79, "word": " reading", "probability": 0.7548828125}, {"start": 259.79, "end": 260.91, "word": " the", "probability": 0.72900390625}, {"start": 260.91, "end": 261.25, "word": " slides.", "probability": 0.9658203125}, {"start": 263.53, "end": 264.09, "word": " Let", "probability": 0.2249755859375}, {"start": 264.09, "end": 264.27, "word": " me", "probability": 0.467529296875}, {"start": 264.27, "end": 265.27, "word": " explain", "probability": 0.58447265625}, {"start": 265.27, "end": 265.59, "word": " this", "probability": 0.56640625}, {"start": 265.59, "end": 265.85, "word": " subject", "probability": 0.250244140625}, {"start": 265.85, "end": 265.99, "word": " to", "probability": 0.58203125}, {"start": 265.99, "end": 265.99, "word": " you.", "probability": 0.96875}, {"start": 266.03, "end": 266.49, "word": " First,", "probability": 0.669921875}, {"start": 266.77, "end": 266.83, "word": " I", "probability": 0.89013671875}, {"start": 266.83, "end": 266.93, "word": " will", "probability": 0.69970703125}, {"start": 266.93, "end": 267.03, "word": " give", "probability": 0.71875}, {"start": 267.03, "end": 267.19, "word": " you", "probability": 0.8525390625}, {"start": 267.19, "end": 267.63, "word": " a", "probability": 0.93994140625}, {"start": 267.63, "end": 268.29, "word": " simple", "probability": 0.7705078125}, {"start": 268.29, "end": 269.09, "word": " example,", "probability": 0.95458984375}, {"start": 269.51, "end": 269.63, "word": " not", "probability": 0.76953125}, {"start": 269.63, "end": 269.67, "word": " very", "probability": 0.263916015625}, {"start": 269.67, "end": 269.97, "word": " practical,", "probability": 0.88232421875}, {"start": 270.29, "end": 270.39, "word": " to", "probability": 0.86669921875}, {"start": 270.39, "end": 270.73, "word": " show", "probability": 0.4501953125}, {"start": 270.73, "end": 270.95, "word": " you", "probability": 0.904296875}, {"start": 270.95, "end": 271.15, "word": " what", "probability": 0.5654296875}, {"start": 271.15, "end": 271.25, "word": " the", "probability": 0.3876953125}, {"start": 271.25, "end": 271.49, "word": " meaning", "probability": 0.48046875}, {"start": 271.49, "end": 271.79, "word": " of", "probability": 0.91796875}, {"start": 271.79, "end": 271.89, "word": " the", "probability": 0.52001953125}, {"start": 271.89, "end": 272.45, "word": " decorator", "probability": 0.8720703125}, {"start": 272.45, "end": 272.53, "word": " is,", "probability": 0.55224609375}, {"start": 273.35, "end": 273.49, "word": " where", "probability": 0.77734375}, {"start": 273.49, "end": 273.65, "word": " the", "probability": 0.77734375}, {"start": 273.65, "end": 273.97, "word": " problem", "probability": 0.857421875}, {"start": 273.97, "end": 274.09, "word": " is,", "probability": 0.66552734375}, {"start": 274.57, "end": 275.41, "word": " and", "probability": 0.91455078125}, {"start": 275.41, "end": 275.57, "word": " how", "probability": 0.93994140625}, {"start": 275.57, "end": 275.71, "word": " the", "probability": 0.787109375}, {"start": 275.71, "end": 276.15, "word": " decorator", "probability": 0.990478515625}, {"start": 276.15, "end": 276.37, "word": " can", "probability": 0.225830078125}, {"start": 276.37, "end": 276.61, "word": " solve", "probability": 0.85302734375}, {"start": 276.61, "end": 276.71, "word": " this", "probability": 0.73046875}, {"start": 276.71, "end": 277.03, "word": " problem.", "probability": 0.84716796875}], "temperature": 1.0}, {"id": 12, "seek": 30225, "start": 277.85, "end": 302.25, "text": "Then I will tell you or show you examples where this decorator is actually used in famous libraries such as Java SDK or JavaFX that you are working on or Swing or Android to show you that this design pattern is actually used in a big way. And you used it but you don't know that you are applying the decorator pattern.", "tokens": [20371, 286, 486, 980, 291, 420, 855, 291, 5110, 689, 341, 7919, 1639, 307, 767, 1143, 294, 4618, 15148, 1270, 382, 10745, 37135, 420, 10745, 36092, 300, 291, 366, 1364, 322, 420, 3926, 278, 420, 8853, 281, 855, 291, 300, 341, 1715, 5102, 307, 767, 1143, 294, 257, 955, 636, 13, 400, 291, 1143, 309, 457, 291, 500, 380, 458, 300, 291, 366, 9275, 264, 7919, 1639, 5102, 13], "avg_logprob": -0.47678571811744147, "compression_ratio": 1.6307692307692307, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 277.85, "end": 278.19, "word": "Then", "probability": 0.282958984375}, {"start": 278.19, "end": 278.37, "word": " I", "probability": 0.748046875}, {"start": 278.37, "end": 278.45, "word": " will", "probability": 0.58642578125}, {"start": 278.45, "end": 278.67, "word": " tell", "probability": 0.2108154296875}, {"start": 278.67, "end": 279.09, "word": " you", "probability": 0.947265625}, {"start": 279.09, "end": 279.81, "word": " or", "probability": 0.376953125}, {"start": 279.81, "end": 280.21, "word": " show", "probability": 0.71875}, {"start": 280.21, "end": 280.47, "word": " you", "probability": 0.91943359375}, {"start": 280.47, "end": 280.91, "word": " examples", "probability": 0.4365234375}, {"start": 280.91, "end": 281.27, "word": " where", "probability": 0.353759765625}, {"start": 281.27, "end": 281.47, "word": " this", "probability": 0.80029296875}, {"start": 281.47, "end": 282.03, "word": " decorator", "probability": 0.904541015625}, {"start": 282.03, "end": 282.39, "word": " is", "probability": 0.76025390625}, {"start": 282.39, "end": 283.21, "word": " actually", "probability": 0.442626953125}, {"start": 283.21, "end": 283.21, "word": " used", "probability": 0.90283203125}, {"start": 283.21, "end": 284.23, "word": " in", "probability": 0.85107421875}, {"start": 284.23, "end": 285.17, "word": " famous", "probability": 0.55126953125}, {"start": 285.17, "end": 285.17, "word": " libraries", "probability": 0.9091796875}, {"start": 285.17, "end": 285.37, "word": " such", "probability": 0.411376953125}, {"start": 285.37, "end": 285.45, "word": " as", "probability": 0.9775390625}, {"start": 285.45, "end": 285.71, "word": " Java", "probability": 0.50439453125}, {"start": 285.71, "end": 286.09, "word": " SDK", "probability": 0.9296875}, {"start": 286.09, "end": 287.61, "word": " or", "probability": 0.3291015625}, {"start": 287.61, "end": 288.83, "word": " JavaFX", "probability": 0.59130859375}, {"start": 288.83, "end": 289.03, "word": " that", "probability": 0.3291015625}, {"start": 289.03, "end": 289.19, "word": " you", "probability": 0.9345703125}, {"start": 289.19, "end": 289.79, "word": " are", "probability": 0.1514892578125}, {"start": 289.79, "end": 289.99, "word": " working", "probability": 0.6142578125}, {"start": 289.99, "end": 290.37, "word": " on", "probability": 0.90869140625}, {"start": 290.37, "end": 291.29, "word": " or", "probability": 0.439208984375}, {"start": 291.29, "end": 291.95, "word": " Swing", "probability": 0.6683349609375}, {"start": 291.95, "end": 292.21, "word": " or", "probability": 0.85888671875}, {"start": 292.21, "end": 292.81, "word": " Android", "probability": 0.91162109375}, {"start": 292.81, "end": 293.03, "word": " to", "probability": 0.6044921875}, {"start": 293.03, "end": 293.31, "word": " show", "probability": 0.73486328125}, {"start": 293.31, "end": 293.49, "word": " you", "probability": 0.87646484375}, {"start": 293.49, "end": 293.67, "word": " that", "probability": 0.8154296875}, {"start": 293.67, "end": 293.91, "word": " this", "probability": 0.89794921875}, {"start": 293.91, "end": 294.25, "word": " design", "probability": 0.66455078125}, {"start": 294.25, "end": 294.53, "word": " pattern", "probability": 0.8525390625}, {"start": 294.53, "end": 294.69, "word": " is", "probability": 0.890625}, {"start": 294.69, "end": 295.57, "word": " actually", "probability": 0.4580078125}, {"start": 295.57, "end": 296.03, "word": " used", "probability": 0.78662109375}, {"start": 296.03, "end": 296.13, "word": " in", "probability": 0.245361328125}, {"start": 296.13, "end": 296.29, "word": " a", "probability": 0.430419921875}, {"start": 296.29, "end": 296.55, "word": " big", "probability": 0.44287109375}, {"start": 296.55, "end": 296.99, "word": " way.", "probability": 0.92041015625}, {"start": 297.57, "end": 297.65, "word": " And", "probability": 0.288330078125}, {"start": 297.65, "end": 297.87, "word": " you", "probability": 0.80517578125}, {"start": 297.87, "end": 298.11, "word": " used", "probability": 0.3720703125}, {"start": 298.11, "end": 298.69, "word": " it", "probability": 0.8271484375}, {"start": 298.69, "end": 298.85, "word": " but", "probability": 0.611328125}, {"start": 298.85, "end": 299.01, "word": " you", "probability": 0.46875}, {"start": 299.01, "end": 299.03, "word": " don't", "probability": 0.6876220703125}, {"start": 299.03, "end": 299.33, "word": " know", "probability": 0.87109375}, {"start": 299.33, "end": 299.47, "word": " that", "probability": 0.810546875}, {"start": 299.47, "end": 299.81, "word": " you", "probability": 0.94482421875}, {"start": 299.81, "end": 299.99, "word": " are", "probability": 0.8505859375}, {"start": 299.99, "end": 300.35, "word": " applying", "probability": 0.60986328125}, {"start": 300.35, "end": 301.53, "word": " the", "probability": 0.69189453125}, {"start": 301.53, "end": 301.91, "word": " decorator", "probability": 0.89013671875}, {"start": 301.91, "end": 302.25, "word": " pattern.", "probability": 0.89111328125}], "temperature": 1.0}, {"id": 13, "seek": 32220, "start": 303.56, "end": 322.2, "text": "Exactly like when you do add action on the button and you don't know that it is an observer pattern Ok, let's understand this example, I want to make a simple application to draw shapes, ok? I have classes that represent shapes, first I have an interface called I shape", "tokens": [11149, 46831, 411, 562, 291, 360, 909, 3069, 322, 264, 2960, 293, 291, 500, 380, 458, 300, 309, 307, 364, 27878, 5102, 3477, 11, 718, 311, 1223, 341, 1365, 11, 286, 528, 281, 652, 257, 2199, 3861, 281, 2642, 10854, 11, 3133, 30, 286, 362, 5359, 300, 2906, 10854, 11, 700, 286, 362, 364, 9226, 1219, 286, 3909], "avg_logprob": -0.495762736110364, "compression_ratio": 1.5112359550561798, "no_speech_prob": 7.331371307373047e-06, "words": [{"start": 303.56, "end": 304.16, "word": "Exactly", "probability": 0.50628662109375}, {"start": 304.16, "end": 304.22, "word": " like", "probability": 0.6337890625}, {"start": 304.22, "end": 304.32, "word": " when", "probability": 0.65185546875}, {"start": 304.32, "end": 304.64, "word": " you", "probability": 0.939453125}, {"start": 304.64, "end": 304.78, "word": " do", "probability": 0.09356689453125}, {"start": 304.78, "end": 305.16, "word": " add", "probability": 0.69970703125}, {"start": 305.16, "end": 305.6, "word": " action", "probability": 0.9423828125}, {"start": 305.6, "end": 305.78, "word": " on", "probability": 0.58837890625}, {"start": 305.78, "end": 305.92, "word": " the", "probability": 0.43115234375}, {"start": 305.92, "end": 306.16, "word": " button", "probability": 0.54248046875}, {"start": 306.16, "end": 306.32, "word": " and", "probability": 0.50439453125}, {"start": 306.32, "end": 306.46, "word": " you", "probability": 0.9345703125}, {"start": 306.46, "end": 306.6, "word": " don't", "probability": 0.878662109375}, {"start": 306.6, "end": 306.88, "word": " know", "probability": 0.8623046875}, {"start": 306.88, "end": 307.02, "word": " that", "probability": 0.3251953125}, {"start": 307.02, "end": 307.18, "word": " it", "probability": 0.46533203125}, {"start": 307.18, "end": 307.52, "word": " is", "probability": 0.495361328125}, {"start": 307.52, "end": 307.58, "word": " an", "probability": 0.630859375}, {"start": 307.58, "end": 308.86, "word": " observer", "probability": 0.5390625}, {"start": 308.86, "end": 309.78, "word": " pattern", "probability": 0.75390625}, {"start": 309.78, "end": 310.86, "word": " Ok,", "probability": 0.290283203125}, {"start": 311.3, "end": 311.66, "word": " let's", "probability": 0.65869140625}, {"start": 311.66, "end": 312.38, "word": " understand", "probability": 0.272705078125}, {"start": 312.38, "end": 312.52, "word": " this", "probability": 0.833984375}, {"start": 312.52, "end": 312.84, "word": " example,", "probability": 0.92431640625}, {"start": 313.22, "end": 313.4, "word": " I", "probability": 0.86181640625}, {"start": 313.4, "end": 313.58, "word": " want", "probability": 0.77783203125}, {"start": 313.58, "end": 313.64, "word": " to", "probability": 0.96875}, {"start": 313.64, "end": 313.72, "word": " make", "probability": 0.63623046875}, {"start": 313.72, "end": 313.9, "word": " a", "probability": 0.890625}, {"start": 313.9, "end": 314.46, "word": " simple", "probability": 0.89599609375}, {"start": 314.46, "end": 314.46, "word": " application", "probability": 0.5283203125}, {"start": 314.46, "end": 314.64, "word": " to", "probability": 0.79345703125}, {"start": 314.64, "end": 314.82, "word": " draw", "probability": 0.89990234375}, {"start": 314.82, "end": 315.26, "word": " shapes,", "probability": 0.83544921875}, {"start": 315.88, "end": 316.14, "word": " ok?", "probability": 0.4658203125}, {"start": 316.68, "end": 316.86, "word": " I", "probability": 0.72900390625}, {"start": 316.86, "end": 317.04, "word": " have", "probability": 0.92431640625}, {"start": 317.04, "end": 317.54, "word": " classes", "probability": 0.82080078125}, {"start": 317.54, "end": 317.72, "word": " that", "probability": 0.5185546875}, {"start": 317.72, "end": 318.08, "word": " represent", "probability": 0.62841796875}, {"start": 318.08, "end": 318.62, "word": " shapes,", "probability": 0.9248046875}, {"start": 319.32, "end": 319.66, "word": " first", "probability": 0.3193359375}, {"start": 319.66, "end": 320.3, "word": " I", "probability": 0.65673828125}, {"start": 320.3, "end": 320.5, "word": " have", "probability": 0.9462890625}, {"start": 320.5, "end": 320.6, "word": " an", "probability": 0.69970703125}, {"start": 320.6, "end": 321.06, "word": " interface", "probability": 0.88330078125}, {"start": 321.06, "end": 321.48, "word": " called", "probability": 0.63720703125}, {"start": 321.48, "end": 321.88, "word": " I", "probability": 0.5361328125}, {"start": 321.88, "end": 322.2, "word": " shape", "probability": 0.481689453125}], "temperature": 1.0}, {"id": 14, "seek": 33783, "start": 323.09, "end": 337.83, "text": "On the basis that all shapes follow this interface, there is a method called draw that draws the shape and there is a method called describe that gives me a description of my text on this shape The first shape I made is called circle", "tokens": [11747, 264, 5143, 300, 439, 10854, 1524, 341, 9226, 11, 456, 307, 257, 3170, 1219, 2642, 300, 20045, 264, 3909, 293, 456, 307, 257, 3170, 1219, 6786, 300, 2709, 385, 257, 3855, 295, 452, 2487, 322, 341, 3909, 440, 700, 3909, 286, 1027, 307, 1219, 6329], "avg_logprob": -0.4950132801177654, "compression_ratio": 1.6762589928057554, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 323.09, "end": 323.29, "word": "On", "probability": 0.038818359375}, {"start": 323.29, "end": 323.39, "word": " the", "probability": 0.80322265625}, {"start": 323.39, "end": 323.53, "word": " basis", "probability": 0.798828125}, {"start": 323.53, "end": 323.75, "word": " that", "probability": 0.810546875}, {"start": 323.75, "end": 323.91, "word": " all", "probability": 0.77783203125}, {"start": 323.91, "end": 324.27, "word": " shapes", "probability": 0.580078125}, {"start": 324.27, "end": 324.75, "word": " follow", "probability": 0.478515625}, {"start": 324.75, "end": 325.23, "word": " this", "probability": 0.7109375}, {"start": 325.23, "end": 325.79, "word": " interface,", "probability": 0.80615234375}, {"start": 326.03, "end": 326.13, "word": " there", "probability": 0.468505859375}, {"start": 326.13, "end": 326.17, "word": " is", "probability": 0.60498046875}, {"start": 326.17, "end": 326.37, "word": " a", "probability": 0.66650390625}, {"start": 326.37, "end": 326.37, "word": " method", "probability": 0.95361328125}, {"start": 326.37, "end": 326.67, "word": " called", "probability": 0.751953125}, {"start": 326.67, "end": 326.99, "word": " draw", "probability": 0.41064453125}, {"start": 326.99, "end": 327.71, "word": " that", "probability": 0.321533203125}, {"start": 327.71, "end": 327.93, "word": " draws", "probability": 0.7587890625}, {"start": 327.93, "end": 328.11, "word": " the", "probability": 0.5693359375}, {"start": 328.11, "end": 328.33, "word": " shape", "probability": 0.8544921875}, {"start": 328.33, "end": 328.47, "word": " and", "probability": 0.57421875}, {"start": 328.47, "end": 328.51, "word": " there", "probability": 0.66162109375}, {"start": 328.51, "end": 328.65, "word": " is", "probability": 0.92626953125}, {"start": 328.65, "end": 328.65, "word": " a", "probability": 0.461181640625}, {"start": 328.65, "end": 328.81, "word": " method", "probability": 0.9248046875}, {"start": 328.81, "end": 329.19, "word": " called", "probability": 0.853515625}, {"start": 329.19, "end": 330.43, "word": " describe", "probability": 0.83251953125}, {"start": 330.43, "end": 330.95, "word": " that", "probability": 0.79833984375}, {"start": 330.95, "end": 331.13, "word": " gives", "probability": 0.38232421875}, {"start": 331.13, "end": 331.27, "word": " me", "probability": 0.703125}, {"start": 331.27, "end": 331.47, "word": " a", "probability": 0.70263671875}, {"start": 331.47, "end": 331.73, "word": " description", "probability": 0.80615234375}, {"start": 331.73, "end": 331.91, "word": " of", "probability": 0.87744140625}, {"start": 331.91, "end": 332.27, "word": " my", "probability": 0.492919921875}, {"start": 332.27, "end": 332.27, "word": " text", "probability": 0.83740234375}, {"start": 332.27, "end": 332.55, "word": " on", "probability": 0.81591796875}, {"start": 332.55, "end": 333.17, "word": " this", "probability": 0.8447265625}, {"start": 333.17, "end": 333.45, "word": " shape", "probability": 0.87353515625}, {"start": 333.45, "end": 334.65, "word": " The", "probability": 0.1334228515625}, {"start": 334.65, "end": 334.93, "word": " first", "probability": 0.7109375}, {"start": 334.93, "end": 336.13, "word": " shape", "probability": 0.86474609375}, {"start": 336.13, "end": 336.23, "word": " I", "probability": 0.62939453125}, {"start": 336.23, "end": 336.47, "word": " made", "probability": 0.6328125}, {"start": 336.47, "end": 336.59, "word": " is", "probability": 0.316650390625}, {"start": 336.59, "end": 336.93, "word": " called", "probability": 0.67578125}, {"start": 336.93, "end": 337.83, "word": " circle", "probability": 0.74462890625}], "temperature": 1.0}, {"id": 15, "seek": 35856, "start": 339.12, "end": 358.56, "text": "which is a circle that implements I shape and then gives it the characteristics of the circle which is center and radius half a line then this is a constructor setters and getters and in the end there are two methods implement that are present in the interface one of them is called draw which is supposed to happen when I call it", "tokens": [13690, 307, 257, 6329, 300, 704, 17988, 286, 3909, 293, 550, 2709, 309, 264, 10891, 295, 264, 6329, 597, 307, 3056, 293, 15845, 1922, 257, 1622, 550, 341, 307, 257, 1817, 14535, 992, 1559, 293, 483, 1559, 293, 294, 264, 917, 456, 366, 732, 7150, 4445, 300, 366, 1974, 294, 264, 9226, 472, 295, 552, 307, 1219, 2642, 597, 307, 3442, 281, 1051, 562, 286, 818, 309], "avg_logprob": -0.5615808762171689, "compression_ratio": 1.8032786885245902, "no_speech_prob": 3.337860107421875e-06, "words": [{"start": 339.12, "end": 339.36, "word": "which", "probability": 0.2354736328125}, {"start": 339.36, "end": 339.62, "word": " is", "probability": 0.84814453125}, {"start": 339.62, "end": 339.92, "word": " a", "probability": 0.78759765625}, {"start": 339.92, "end": 340.14, "word": " circle", "probability": 0.79296875}, {"start": 340.14, "end": 340.68, "word": " that", "probability": 0.2275390625}, {"start": 340.68, "end": 341.08, "word": " implements", "probability": 0.751708984375}, {"start": 341.08, "end": 341.38, "word": " I", "probability": 0.751953125}, {"start": 341.38, "end": 341.68, "word": " shape", "probability": 0.70166015625}, {"start": 341.68, "end": 342.26, "word": " and", "probability": 0.5126953125}, {"start": 342.26, "end": 342.5, "word": " then", "probability": 0.473876953125}, {"start": 342.5, "end": 342.74, "word": " gives", "probability": 0.1298828125}, {"start": 342.74, "end": 342.9, "word": " it", "probability": 0.5625}, {"start": 342.9, "end": 342.9, "word": " the", "probability": 0.40576171875}, {"start": 342.9, "end": 343.22, "word": " characteristics", "probability": 0.255615234375}, {"start": 343.22, "end": 343.34, "word": " of", "probability": 0.94970703125}, {"start": 343.34, "end": 343.48, "word": " the", "probability": 0.759765625}, {"start": 343.48, "end": 343.68, "word": " circle", "probability": 0.92041015625}, {"start": 343.68, "end": 344.36, "word": " which", "probability": 0.515625}, {"start": 344.36, "end": 345.18, "word": " is", "probability": 0.775390625}, {"start": 345.18, "end": 345.62, "word": " center", "probability": 0.300048828125}, {"start": 345.62, "end": 346.48, "word": " and", "probability": 0.88037109375}, {"start": 346.48, "end": 346.9, "word": " radius", "probability": 0.970703125}, {"start": 346.9, "end": 347.22, "word": " half", "probability": 0.1937255859375}, {"start": 347.22, "end": 347.34, "word": " a", "probability": 0.326416015625}, {"start": 347.34, "end": 347.52, "word": " line", "probability": 0.5380859375}, {"start": 347.52, "end": 348.54, "word": " then", "probability": 0.30615234375}, {"start": 348.54, "end": 348.76, "word": " this", "probability": 0.611328125}, {"start": 348.76, "end": 348.82, "word": " is", "probability": 0.8076171875}, {"start": 348.82, "end": 348.96, "word": " a", "probability": 0.7763671875}, {"start": 348.96, "end": 349.42, "word": " constructor", "probability": 0.6217041015625}, {"start": 349.42, "end": 351.2, "word": " setters", "probability": 0.4910888671875}, {"start": 351.2, "end": 351.34, "word": " and", "probability": 0.93212890625}, {"start": 351.34, "end": 351.74, "word": " getters", "probability": 0.95849609375}, {"start": 351.74, "end": 352.18, "word": " and", "probability": 0.75537109375}, {"start": 352.18, "end": 352.26, "word": " in", "probability": 0.2322998046875}, {"start": 352.26, "end": 352.34, "word": " the", "probability": 0.92333984375}, {"start": 352.34, "end": 352.52, "word": " end", "probability": 0.892578125}, {"start": 352.52, "end": 352.76, "word": " there", "probability": 0.69482421875}, {"start": 352.76, "end": 352.8, "word": " are", "probability": 0.7900390625}, {"start": 352.8, "end": 353.06, "word": " two", "probability": 0.84423828125}, {"start": 353.06, "end": 353.48, "word": " methods", "probability": 0.8603515625}, {"start": 353.48, "end": 354.06, "word": " implement", "probability": 0.3212890625}, {"start": 354.06, "end": 354.72, "word": " that", "probability": 0.326416015625}, {"start": 354.72, "end": 354.8, "word": " are", "probability": 0.50439453125}, {"start": 354.8, "end": 355.04, "word": " present", "probability": 0.42333984375}, {"start": 355.04, "end": 355.16, "word": " in", "probability": 0.87548828125}, {"start": 355.16, "end": 355.26, "word": " the", "probability": 0.88134765625}, {"start": 355.26, "end": 355.74, "word": " interface", "probability": 0.8642578125}, {"start": 355.74, "end": 355.98, "word": " one", "probability": 0.666015625}, {"start": 355.98, "end": 356.06, "word": " of", "probability": 0.389404296875}, {"start": 356.06, "end": 356.12, "word": " them", "probability": 0.7421875}, {"start": 356.12, "end": 356.16, "word": " is", "probability": 0.87451171875}, {"start": 356.16, "end": 356.3, "word": " called", "probability": 0.7412109375}, {"start": 356.3, "end": 356.62, "word": " draw", "probability": 0.6455078125}, {"start": 356.62, "end": 357.56, "word": " which", "probability": 0.63232421875}, {"start": 357.56, "end": 357.64, "word": " is", "probability": 0.62158203125}, {"start": 357.64, "end": 357.84, "word": " supposed", "probability": 0.68603515625}, {"start": 357.84, "end": 357.94, "word": " to", "probability": 0.8525390625}, {"start": 357.94, "end": 357.94, "word": " happen", "probability": 0.150390625}, {"start": 357.94, "end": 358.0, "word": " when", "probability": 0.80712890625}, {"start": 358.0, "end": 358.14, "word": " I", "probability": 0.376220703125}, {"start": 358.14, "end": 358.38, "word": " call", "probability": 0.321044921875}, {"start": 358.38, "end": 358.56, "word": " it", "probability": 0.775390625}], "temperature": 1.0}, {"id": 16, "seek": 38174, "start": 364.74, "end": 381.74, "text": "Draw oval means to draw an oval shape. If you give the oval shape the center and half of the circle twice, which is the oval shape, consider that there are two circles. If you put them next to each other, what happens to the oval shape? Circle. Describe, just repeat that this is the center of the circle.", "tokens": [35, 5131, 37175, 1355, 281, 2642, 364, 37175, 3909, 13, 759, 291, 976, 264, 37175, 3909, 264, 3056, 293, 1922, 295, 264, 6329, 6091, 11, 597, 307, 264, 37175, 3909, 11, 1949, 300, 456, 366, 732, 13040, 13, 759, 291, 829, 552, 958, 281, 1184, 661, 11, 437, 2314, 281, 264, 37175, 3909, 30, 29381, 13, 3885, 8056, 11, 445, 7149, 300, 341, 307, 264, 3056, 295, 264, 6329, 13], "avg_logprob": -0.5127640677170014, "compression_ratio": 1.7836257309941521, "no_speech_prob": 6.198883056640625e-06, "words": [{"start": 364.74, "end": 365.18, "word": "Draw", "probability": 0.5767822265625}, {"start": 365.18, "end": 365.52, "word": " oval", "probability": 0.6962890625}, {"start": 365.52, "end": 366.46, "word": " means", "probability": 0.382568359375}, {"start": 366.46, "end": 366.72, "word": " to", "probability": 0.28125}, {"start": 366.72, "end": 366.72, "word": " draw", "probability": 0.89111328125}, {"start": 366.72, "end": 367.08, "word": " an", "probability": 0.375}, {"start": 367.08, "end": 367.26, "word": " oval", "probability": 0.7333984375}, {"start": 367.26, "end": 367.52, "word": " shape.", "probability": 0.7001953125}, {"start": 367.94, "end": 368.32, "word": " If", "probability": 0.67822265625}, {"start": 368.32, "end": 368.36, "word": " you", "probability": 0.513671875}, {"start": 368.36, "end": 368.58, "word": " give", "probability": 0.400634765625}, {"start": 368.58, "end": 368.74, "word": " the", "probability": 0.5615234375}, {"start": 368.74, "end": 369.3, "word": " oval", "probability": 0.56689453125}, {"start": 369.3, "end": 369.6, "word": " shape", "probability": 0.77978515625}, {"start": 369.6, "end": 369.8, "word": " the", "probability": 0.407958984375}, {"start": 369.8, "end": 370.22, "word": " center", "probability": 0.64111328125}, {"start": 370.22, "end": 370.74, "word": " and", "probability": 0.796875}, {"start": 370.74, "end": 370.9, "word": " half", "probability": 0.478759765625}, {"start": 370.9, "end": 371.04, "word": " of", "probability": 0.394287109375}, {"start": 371.04, "end": 371.08, "word": " the", "probability": 0.83935546875}, {"start": 371.08, "end": 371.24, "word": " circle", "probability": 0.2099609375}, {"start": 371.24, "end": 371.68, "word": " twice,", "probability": 0.8232421875}, {"start": 371.8, "end": 371.92, "word": " which", "probability": 0.2724609375}, {"start": 371.92, "end": 372.06, "word": " is", "probability": 0.77783203125}, {"start": 372.06, "end": 372.22, "word": " the", "probability": 0.62255859375}, {"start": 372.22, "end": 372.74, "word": " oval", "probability": 0.93359375}, {"start": 372.74, "end": 372.98, "word": " shape,", "probability": 0.8935546875}, {"start": 373.1, "end": 373.36, "word": " consider", "probability": 0.286865234375}, {"start": 373.36, "end": 373.58, "word": " that", "probability": 0.77490234375}, {"start": 373.58, "end": 373.74, "word": " there", "probability": 0.8212890625}, {"start": 373.74, "end": 373.76, "word": " are", "probability": 0.90234375}, {"start": 373.76, "end": 373.88, "word": " two", "probability": 0.890625}, {"start": 373.88, "end": 374.02, "word": " circles.", "probability": 0.72314453125}, {"start": 374.92, "end": 375.36, "word": " If", "probability": 0.86865234375}, {"start": 375.36, "end": 375.42, "word": " you", "probability": 0.86279296875}, {"start": 375.42, "end": 375.64, "word": " put", "probability": 0.68017578125}, {"start": 375.64, "end": 375.8, "word": " them", "probability": 0.86181640625}, {"start": 375.8, "end": 376.0, "word": " next", "probability": 0.751953125}, {"start": 376.0, "end": 376.06, "word": " to", "probability": 0.9765625}, {"start": 376.06, "end": 376.28, "word": " each", "probability": 0.95166015625}, {"start": 376.28, "end": 376.28, "word": " other,", "probability": 0.89892578125}, {"start": 376.38, "end": 376.46, "word": " what", "probability": 0.87548828125}, {"start": 376.46, "end": 376.66, "word": " happens", "probability": 0.53564453125}, {"start": 376.66, "end": 377.04, "word": " to", "probability": 0.869140625}, {"start": 377.04, "end": 377.06, "word": " the", "probability": 0.86767578125}, {"start": 377.06, "end": 377.24, "word": " oval", "probability": 0.8359375}, {"start": 377.24, "end": 377.54, "word": " shape?", "probability": 0.83251953125}, {"start": 378.12, "end": 378.42, "word": " Circle.", "probability": 0.422119140625}, {"start": 379.0, "end": 379.44, "word": " Describe,", "probability": 0.914794921875}, {"start": 379.86, "end": 380.04, "word": " just", "probability": 0.394287109375}, {"start": 380.04, "end": 380.2, "word": " repeat", "probability": 0.12347412109375}, {"start": 380.2, "end": 380.86, "word": " that", "probability": 0.4755859375}, {"start": 380.86, "end": 381.1, "word": " this", "probability": 0.83056640625}, {"start": 381.1, "end": 381.36, "word": " is", "probability": 0.92333984375}, {"start": 381.36, "end": 381.74, "word": " the", "probability": 0.302490234375}, {"start": 381.74, "end": 381.74, "word": " center", "probability": 0.413818359375}, {"start": 381.74, "end": 381.74, "word": " of", "probability": 0.48046875}, {"start": 381.74, "end": 381.74, "word": " the", "probability": 0.8154296875}, {"start": 381.74, "end": 381.74, "word": " circle.", "probability": 0.59130859375}], "temperature": 1.0}, {"id": 17, "seek": 39849, "start": 382.39, "end": 398.49, "text": "The most important thing is that I made another class that represents a rectangle, the name of the class is rectangle, its attributes are different, x and y are the point of the rectangle's corner, and width and height are length and width", "tokens": [2278, 881, 1021, 551, 307, 300, 286, 1027, 1071, 1508, 300, 8855, 257, 21930, 11, 264, 1315, 295, 264, 1508, 307, 21930, 11, 1080, 17212, 366, 819, 11, 2031, 293, 288, 366, 264, 935, 295, 264, 21930, 311, 4538, 11, 293, 11402, 293, 6681, 366, 4641, 293, 11402], "avg_logprob": -0.5746173664015166, "compression_ratio": 1.614864864864865, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 382.39, "end": 382.63, "word": "The", "probability": 0.116455078125}, {"start": 382.63, "end": 383.01, "word": " most", "probability": 0.4033203125}, {"start": 383.01, "end": 383.01, "word": " important", "probability": 0.875}, {"start": 383.01, "end": 383.45, "word": " thing", "probability": 0.480712890625}, {"start": 383.45, "end": 383.95, "word": " is", "probability": 0.6689453125}, {"start": 383.95, "end": 383.95, "word": " that", "probability": 0.456787109375}, {"start": 383.95, "end": 384.01, "word": " I", "probability": 0.63525390625}, {"start": 384.01, "end": 384.21, "word": " made", "probability": 0.31005859375}, {"start": 384.21, "end": 384.31, "word": " another", "probability": 0.525390625}, {"start": 384.31, "end": 384.57, "word": " class", "probability": 0.90966796875}, {"start": 384.57, "end": 384.97, "word": " that", "probability": 0.267822265625}, {"start": 384.97, "end": 385.45, "word": " represents", "probability": 0.552734375}, {"start": 385.45, "end": 385.91, "word": " a", "probability": 0.54150390625}, {"start": 385.91, "end": 386.33, "word": " rectangle,", "probability": 0.91064453125}, {"start": 387.21, "end": 387.49, "word": " the", "probability": 0.29248046875}, {"start": 387.49, "end": 387.65, "word": " name", "probability": 0.60693359375}, {"start": 387.65, "end": 387.77, "word": " of", "probability": 0.9130859375}, {"start": 387.77, "end": 387.83, "word": " the", "probability": 0.7392578125}, {"start": 387.83, "end": 388.05, "word": " class", "probability": 0.93798828125}, {"start": 388.05, "end": 388.13, "word": " is", "probability": 0.84716796875}, {"start": 388.13, "end": 388.59, "word": " rectangle,", "probability": 0.8359375}, {"start": 389.09, "end": 389.21, "word": " its", "probability": 0.2041015625}, {"start": 389.21, "end": 389.57, "word": " attributes", "probability": 0.8212890625}, {"start": 389.57, "end": 389.85, "word": " are", "probability": 0.89404296875}, {"start": 389.85, "end": 390.33, "word": " different,", "probability": 0.845703125}, {"start": 390.83, "end": 391.09, "word": " x", "probability": 0.67236328125}, {"start": 391.09, "end": 391.25, "word": " and", "probability": 0.63623046875}, {"start": 391.25, "end": 391.43, "word": " y", "probability": 0.98291015625}, {"start": 391.43, "end": 391.57, "word": " are", "probability": 0.42626953125}, {"start": 391.57, "end": 391.67, "word": " the", "probability": 0.35888671875}, {"start": 391.67, "end": 391.85, "word": " point", "probability": 0.34716796875}, {"start": 391.85, "end": 393.63, "word": " of", "probability": 0.493896484375}, {"start": 393.63, "end": 393.77, "word": " the", "probability": 0.6728515625}, {"start": 393.77, "end": 393.79, "word": " rectangle's", "probability": 0.5491943359375}, {"start": 393.79, "end": 395.15, "word": " corner,", "probability": 0.751953125}, {"start": 396.49, "end": 396.77, "word": " and", "probability": 0.305908203125}, {"start": 396.77, "end": 396.97, "word": " width", "probability": 0.90478515625}, {"start": 396.97, "end": 397.15, "word": " and", "probability": 0.85888671875}, {"start": 397.15, "end": 397.43, "word": " height", "probability": 0.96142578125}, {"start": 397.43, "end": 397.95, "word": " are", "probability": 0.58349609375}, {"start": 397.95, "end": 398.13, "word": " length", "probability": 0.322509765625}, {"start": 398.13, "end": 398.29, "word": " and", "probability": 0.94580078125}, {"start": 398.29, "end": 398.49, "word": " width", "probability": 0.92919921875}], "temperature": 1.0}, {"id": 18, "seek": 42487, "start": 400.09, "end": 424.87, "text": "this is constructor and the same thing, I implemented two methods, draw that makes a rectangle and describe that makes a rectangle now I made a simple frame that is a small face, so that when I click on the button, it draws a circle, do you understand what I mean? because when I click on the button, it is an action performed in this swing, okay? I created an object from C", "tokens": [11176, 307, 47479, 293, 264, 912, 551, 11, 286, 12270, 732, 7150, 11, 2642, 300, 1669, 257, 21930, 293, 6786, 300, 1669, 257, 21930, 586, 286, 1027, 257, 2199, 3920, 300, 307, 257, 1359, 1851, 11, 370, 300, 562, 286, 2052, 322, 264, 2960, 11, 309, 20045, 257, 6329, 11, 360, 291, 1223, 437, 286, 914, 30, 570, 562, 286, 2052, 322, 264, 2960, 11, 309, 307, 364, 3069, 10332, 294, 341, 11173, 11, 1392, 30, 286, 2942, 364, 2657, 490, 383], "avg_logprob": -0.583960860608572, "compression_ratio": 1.7725118483412323, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 400.09, "end": 400.33, "word": "this", "probability": 0.321044921875}, {"start": 400.33, "end": 400.39, "word": " is", "probability": 0.7880859375}, {"start": 400.39, "end": 400.87, "word": " constructor", "probability": 0.578125}, {"start": 400.87, "end": 401.01, "word": " and", "probability": 0.62255859375}, {"start": 401.01, "end": 401.07, "word": " the", "probability": 0.1334228515625}, {"start": 401.07, "end": 401.19, "word": " same", "probability": 0.86376953125}, {"start": 401.19, "end": 401.57, "word": " thing,", "probability": 0.6943359375}, {"start": 401.69, "end": 401.69, "word": " I", "probability": 0.441162109375}, {"start": 401.69, "end": 402.17, "word": " implemented", "probability": 0.2352294921875}, {"start": 402.17, "end": 402.63, "word": " two", "probability": 0.763671875}, {"start": 402.63, "end": 402.99, "word": " methods,", "probability": 0.89013671875}, {"start": 403.13, "end": 403.35, "word": " draw", "probability": 0.63427734375}, {"start": 403.35, "end": 403.67, "word": " that", "probability": 0.2044677734375}, {"start": 403.67, "end": 404.01, "word": " makes", "probability": 0.207275390625}, {"start": 404.01, "end": 404.61, "word": " a", "probability": 0.309326171875}, {"start": 404.61, "end": 405.21, "word": " rectangle", "probability": 0.751953125}, {"start": 405.21, "end": 406.29, "word": " and", "probability": 0.5341796875}, {"start": 406.29, "end": 406.63, "word": " describe", "probability": 0.6689453125}, {"start": 406.63, "end": 407.03, "word": " that", "probability": 0.64501953125}, {"start": 407.03, "end": 407.33, "word": " makes", "probability": 0.65087890625}, {"start": 407.33, "end": 407.71, "word": " a", "probability": 0.48095703125}, {"start": 407.71, "end": 409.21, "word": " rectangle", "probability": 0.9140625}, {"start": 409.21, "end": 410.03, "word": " now", "probability": 0.27978515625}, {"start": 410.03, "end": 410.19, "word": " I", "probability": 0.5595703125}, {"start": 410.19, "end": 410.39, "word": " made", "probability": 0.57666015625}, {"start": 410.39, "end": 410.53, "word": " a", "probability": 0.912109375}, {"start": 410.53, "end": 411.01, "word": " simple", "probability": 0.51220703125}, {"start": 411.01, "end": 411.01, "word": " frame", "probability": 0.87109375}, {"start": 411.01, "end": 411.23, "word": " that", "probability": 0.3935546875}, {"start": 411.23, "end": 411.33, "word": " is", "probability": 0.78125}, {"start": 411.33, "end": 411.43, "word": " a", "probability": 0.849609375}, {"start": 411.43, "end": 411.45, "word": " small", "probability": 0.8515625}, {"start": 411.45, "end": 411.67, "word": " face,", "probability": 0.454345703125}, {"start": 412.17, "end": 412.39, "word": " so", "probability": 0.44482421875}, {"start": 412.39, "end": 412.61, "word": " that", "probability": 0.53662109375}, {"start": 412.61, "end": 412.71, "word": " when", "probability": 0.87060546875}, {"start": 412.71, "end": 413.01, "word": " I", "probability": 0.939453125}, {"start": 413.01, "end": 413.23, "word": " click", "probability": 0.348876953125}, {"start": 413.23, "end": 413.39, "word": " on", "probability": 0.83642578125}, {"start": 413.39, "end": 413.51, "word": " the", "probability": 0.75341796875}, {"start": 413.51, "end": 413.73, "word": " button,", "probability": 0.66357421875}, {"start": 415.09, "end": 415.09, "word": " it", "probability": 0.75927734375}, {"start": 415.09, "end": 415.39, "word": " draws", "probability": 0.35107421875}, {"start": 415.39, "end": 415.93, "word": " a", "probability": 0.8671875}, {"start": 415.93, "end": 416.27, "word": " circle,", "probability": 0.9111328125}, {"start": 417.05, "end": 417.23, "word": " do", "probability": 0.1669921875}, {"start": 417.23, "end": 417.23, "word": " you", "probability": 0.9677734375}, {"start": 417.23, "end": 417.37, "word": " understand", "probability": 0.474365234375}, {"start": 417.37, "end": 417.51, "word": " what", "probability": 0.7099609375}, {"start": 417.51, "end": 417.57, "word": " I", "probability": 0.708984375}, {"start": 417.57, "end": 417.77, "word": " mean?", "probability": 0.357421875}, {"start": 418.01, "end": 418.29, "word": " because", "probability": 0.5068359375}, {"start": 418.29, "end": 418.47, "word": " when", "probability": 0.8623046875}, {"start": 418.47, "end": 418.57, "word": " I", "probability": 0.92138671875}, {"start": 418.57, "end": 418.77, "word": " click", "probability": 0.8173828125}, {"start": 418.77, "end": 418.95, "word": " on", "probability": 0.89453125}, {"start": 418.95, "end": 419.01, "word": " the", "probability": 0.8271484375}, {"start": 419.01, "end": 419.09, "word": " button,", "probability": 0.8583984375}, {"start": 419.25, "end": 419.25, "word": " it", "probability": 0.56396484375}, {"start": 419.25, "end": 419.37, "word": " is", "probability": 0.4951171875}, {"start": 419.37, "end": 420.11, "word": " an", "probability": 0.4267578125}, {"start": 420.11, "end": 420.49, "word": " action", "probability": 0.94384765625}, {"start": 420.49, "end": 421.55, "word": " performed", "probability": 0.62548828125}, {"start": 421.55, "end": 421.69, "word": " in", "probability": 0.5185546875}, {"start": 421.69, "end": 421.77, "word": " this", "probability": 0.47314453125}, {"start": 421.77, "end": 422.11, "word": " swing,", "probability": 0.900390625}, {"start": 422.83, "end": 423.07, "word": " okay?", "probability": 0.2408447265625}, {"start": 423.57, "end": 423.75, "word": " I", "probability": 0.75048828125}, {"start": 423.75, "end": 423.95, "word": " created", "probability": 0.544921875}, {"start": 423.95, "end": 424.11, "word": " an", "probability": 0.82666015625}, {"start": 424.11, "end": 424.31, "word": " object", "probability": 0.97314453125}, {"start": 424.31, "end": 424.57, "word": " from", "probability": 0.67138671875}, {"start": 424.57, "end": 424.87, "word": " C", "probability": 0.666015625}], "temperature": 1.0}, {"id": 19, "seek": 44922, "start": 427.14, "end": 449.22, "text": "Okay, and I give him the data of the circle, which is the center, for example, and half of the line is 100. Okay, and then I tell him c dot draw, and you study it on the fragment itself, so I tell him get graphics. When will this code be executed? When I press the button. Run.", "tokens": [8297, 11, 293, 286, 976, 796, 264, 1412, 295, 264, 6329, 11, 597, 307, 264, 3056, 11, 337, 1365, 11, 293, 1922, 295, 264, 1622, 307, 2319, 13, 1033, 11, 293, 550, 286, 980, 796, 269, 5893, 2642, 11, 293, 291, 2979, 309, 322, 264, 26424, 2564, 11, 370, 286, 980, 796, 483, 11837, 13, 1133, 486, 341, 3089, 312, 17577, 30, 1133, 286, 1886, 264, 2960, 13, 8950, 13], "avg_logprob": -0.5167253672237128, "compression_ratio": 1.5054347826086956, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 427.14, "end": 427.42, "word": "Okay,", "probability": 0.0631103515625}, {"start": 427.6, "end": 427.66, "word": " and", "probability": 0.515625}, {"start": 427.66, "end": 427.76, "word": " I", "probability": 0.60498046875}, {"start": 427.76, "end": 427.96, "word": " give", "probability": 0.443359375}, {"start": 427.96, "end": 428.14, "word": " him", "probability": 0.64404296875}, {"start": 428.14, "end": 428.16, "word": " the", "probability": 0.63037109375}, {"start": 428.16, "end": 428.34, "word": " data", "probability": 0.10260009765625}, {"start": 428.34, "end": 428.62, "word": " of", "probability": 0.68896484375}, {"start": 428.62, "end": 428.7, "word": " the", "probability": 0.73486328125}, {"start": 428.7, "end": 428.94, "word": " circle,", "probability": 0.83349609375}, {"start": 429.42, "end": 429.46, "word": " which", "probability": 0.63720703125}, {"start": 429.46, "end": 429.62, "word": " is", "probability": 0.88671875}, {"start": 429.62, "end": 429.96, "word": " the", "probability": 0.44189453125}, {"start": 429.96, "end": 430.24, "word": " center,", "probability": 0.71044921875}, {"start": 430.26, "end": 430.26, "word": " for", "probability": 0.43359375}, {"start": 430.26, "end": 430.26, "word": " example,", "probability": 0.95068359375}, {"start": 431.42, "end": 431.52, "word": " and", "probability": 0.8662109375}, {"start": 431.52, "end": 431.68, "word": " half", "probability": 0.6953125}, {"start": 431.68, "end": 431.8, "word": " of", "probability": 0.412841796875}, {"start": 431.8, "end": 431.86, "word": " the", "probability": 0.83740234375}, {"start": 431.86, "end": 432.12, "word": " line", "probability": 0.6728515625}, {"start": 432.12, "end": 432.54, "word": " is", "probability": 0.54736328125}, {"start": 432.54, "end": 432.84, "word": " 100.", "probability": 0.60546875}, {"start": 433.44, "end": 433.8, "word": " Okay,", "probability": 0.55419921875}, {"start": 434.44, "end": 434.64, "word": " and", "probability": 0.73681640625}, {"start": 434.64, "end": 434.82, "word": " then", "probability": 0.80517578125}, {"start": 434.82, "end": 434.94, "word": " I", "probability": 0.8681640625}, {"start": 434.94, "end": 435.12, "word": " tell", "probability": 0.42529296875}, {"start": 435.12, "end": 435.26, "word": " him", "probability": 0.90966796875}, {"start": 435.26, "end": 435.54, "word": " c", "probability": 0.33203125}, {"start": 435.54, "end": 435.96, "word": " dot", "probability": 0.392578125}, {"start": 435.96, "end": 437.14, "word": " draw,", "probability": 0.796875}, {"start": 438.16, "end": 438.36, "word": " and", "probability": 0.82421875}, {"start": 438.36, "end": 438.48, "word": " you", "probability": 0.2529296875}, {"start": 438.48, "end": 438.64, "word": " study", "probability": 0.69873046875}, {"start": 438.64, "end": 438.86, "word": " it", "probability": 0.66064453125}, {"start": 438.86, "end": 438.96, "word": " on", "probability": 0.81298828125}, {"start": 438.96, "end": 439.16, "word": " the", "probability": 0.91064453125}, {"start": 439.16, "end": 439.58, "word": " fragment", "probability": 0.7412109375}, {"start": 439.58, "end": 439.98, "word": " itself,", "probability": 0.78466796875}, {"start": 440.14, "end": 440.2, "word": " so", "probability": 0.72998046875}, {"start": 440.2, "end": 440.34, "word": " I", "probability": 0.96337890625}, {"start": 440.34, "end": 440.46, "word": " tell", "probability": 0.6259765625}, {"start": 440.46, "end": 440.56, "word": " him", "probability": 0.8974609375}, {"start": 440.56, "end": 440.76, "word": " get", "probability": 0.8125}, {"start": 440.76, "end": 441.28, "word": " graphics.", "probability": 0.8603515625}, {"start": 445.0, "end": 445.4, "word": " When", "probability": 0.4931640625}, {"start": 445.4, "end": 445.58, "word": " will", "probability": 0.6591796875}, {"start": 445.58, "end": 445.58, "word": " this", "probability": 0.87451171875}, {"start": 445.58, "end": 445.78, "word": " code", "probability": 0.93701171875}, {"start": 445.78, "end": 446.02, "word": " be", "probability": 0.6279296875}, {"start": 446.02, "end": 446.42, "word": " executed?", "probability": 0.76318359375}, {"start": 446.72, "end": 447.08, "word": " When", "probability": 0.82470703125}, {"start": 447.08, "end": 447.2, "word": " I", "probability": 0.880859375}, {"start": 447.2, "end": 447.42, "word": " press", "probability": 0.59130859375}, {"start": 447.42, "end": 448.32, "word": " the", "probability": 0.798828125}, {"start": 448.32, "end": 448.56, "word": " button.", "probability": 0.81787109375}, {"start": 448.9, "end": 449.22, "word": " Run.", "probability": 0.45068359375}], "temperature": 1.0}, {"id": 20, "seek": 47922, "start": 451.56, "end": 479.22, "text": "this is add shape and this is circle if you want to draw a rectangle it's exactly the same thing you say rectangle R new rectangle and also give it a point 50 50 180 which is the width and height rectangle free", "tokens": [11176, 307, 909, 3909, 293, 341, 307, 6329, 498, 291, 528, 281, 2642, 257, 21930, 309, 311, 2293, 264, 912, 551, 291, 584, 21930, 497, 777, 21930, 293, 611, 976, 309, 257, 935, 2625, 2625, 11971, 597, 307, 264, 11402, 293, 6681, 21930, 1737], "avg_logprob": -0.621527804268731, "compression_ratio": 1.5217391304347827, "no_speech_prob": 1.9669532775878906e-06, "words": [{"start": 451.56, "end": 451.88, "word": "this", "probability": 0.1043701171875}, {"start": 451.88, "end": 451.88, "word": " is", "probability": 0.57080078125}, {"start": 451.88, "end": 452.1, "word": " add", "probability": 0.4873046875}, {"start": 452.1, "end": 452.42, "word": " shape", "probability": 0.90234375}, {"start": 452.42, "end": 452.52, "word": " and", "probability": 0.4619140625}, {"start": 452.52, "end": 452.58, "word": " this", "probability": 0.82763671875}, {"start": 452.58, "end": 452.64, "word": " is", "probability": 0.79345703125}, {"start": 452.64, "end": 454.04, "word": " circle", "probability": 0.2198486328125}, {"start": 454.04, "end": 454.8, "word": " if", "probability": 0.45654296875}, {"start": 454.8, "end": 455.92, "word": " you", "probability": 0.91455078125}, {"start": 455.92, "end": 455.98, "word": " want", "probability": 0.70947265625}, {"start": 455.98, "end": 456.1, "word": " to", "probability": 0.83837890625}, {"start": 456.1, "end": 456.44, "word": " draw", "probability": 0.814453125}, {"start": 456.44, "end": 457.2, "word": " a", "probability": 0.287841796875}, {"start": 457.2, "end": 457.54, "word": " rectangle", "probability": 0.92236328125}, {"start": 457.54, "end": 459.74, "word": " it's", "probability": 0.23028564453125}, {"start": 459.74, "end": 459.9, "word": " exactly", "probability": 0.3740234375}, {"start": 459.9, "end": 459.96, "word": " the", "probability": 0.82470703125}, {"start": 459.96, "end": 460.2, "word": " same", "probability": 0.91259765625}, {"start": 460.2, "end": 460.22, "word": " thing", "probability": 0.3212890625}, {"start": 460.22, "end": 460.82, "word": " you", "probability": 0.338623046875}, {"start": 460.82, "end": 461.08, "word": " say", "probability": 0.309326171875}, {"start": 461.08, "end": 462.34, "word": " rectangle", "probability": 0.849609375}, {"start": 462.34, "end": 463.56, "word": " R", "probability": 0.4033203125}, {"start": 463.56, "end": 464.66, "word": " new", "probability": 0.71533203125}, {"start": 464.66, "end": 465.62, "word": " rectangle", "probability": 0.90625}, {"start": 465.62, "end": 466.3, "word": " and", "probability": 0.6318359375}, {"start": 466.3, "end": 466.5, "word": " also", "probability": 0.284423828125}, {"start": 466.5, "end": 466.5, "word": " give", "probability": 0.57421875}, {"start": 466.5, "end": 466.86, "word": " it", "probability": 0.67041015625}, {"start": 466.86, "end": 466.92, "word": " a", "probability": 0.7060546875}, {"start": 466.92, "end": 467.16, "word": " point", "probability": 0.74365234375}, {"start": 467.16, "end": 468.12, "word": " 50", "probability": 0.544921875}, {"start": 468.12, "end": 468.94, "word": " 50", "probability": 0.50830078125}, {"start": 468.94, "end": 470.08, "word": " 180", "probability": 0.72802734375}, {"start": 470.08, "end": 471.2, "word": " which", "probability": 0.759765625}, {"start": 471.2, "end": 471.34, "word": " is", "probability": 0.8984375}, {"start": 471.34, "end": 471.4, "word": " the", "probability": 0.52587890625}, {"start": 471.4, "end": 471.6, "word": " width", "probability": 0.921875}, {"start": 471.6, "end": 471.78, "word": " and", "probability": 0.94482421875}, {"start": 471.78, "end": 472.68, "word": " height", "probability": 0.58447265625}, {"start": 472.68, "end": 475.06, "word": " rectangle", "probability": 0.8701171875}, {"start": 475.06, "end": 479.22, "word": " free", "probability": 0.0789794921875}], "temperature": 1.0}, {"id": 21, "seek": 50932, "start": 482.4, "end": 509.32, "text": " and then R.draw.getGraphics() and make it run and this is add shape and this is draw rectangle until now the subject is trivial right or not guys? okay now I asked you to make a circle with border so we want to make a circle around the circle", "tokens": [293, 550, 497, 13, 48848, 13, 847, 38, 2662, 1167, 45191, 293, 652, 309, 1190, 293, 341, 307, 909, 3909, 293, 341, 307, 2642, 21930, 1826, 586, 264, 3983, 307, 26703, 558, 420, 406, 1074, 30, 1392, 586, 286, 2351, 291, 281, 652, 257, 6329, 365, 7838, 370, 321, 528, 281, 652, 257, 6329, 926, 264, 6329], "avg_logprob": -0.5625000215809921, "compression_ratio": 1.5477707006369428, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 482.4, "end": 482.62, "word": " and", "probability": 0.18701171875}, {"start": 482.62, "end": 482.86, "word": " then", "probability": 0.70166015625}, {"start": 482.86, "end": 483.24, "word": " R", "probability": 0.4091796875}, {"start": 483.24, "end": 484.74, "word": ".draw", "probability": 0.795654296875}, {"start": 484.74, "end": 487.02, "word": ".getGraphics", "probability": 0.6802734375}, {"start": 487.02, "end": 487.04, "word": "()", "probability": 0.322021484375}, {"start": 487.04, "end": 488.86, "word": " and", "probability": 0.61767578125}, {"start": 488.86, "end": 489.08, "word": " make", "probability": 0.1021728515625}, {"start": 489.08, "end": 489.14, "word": " it", "probability": 0.3564453125}, {"start": 489.14, "end": 489.36, "word": " run", "probability": 0.630859375}, {"start": 489.36, "end": 492.46, "word": " and", "probability": 0.58056640625}, {"start": 492.46, "end": 492.64, "word": " this", "probability": 0.40087890625}, {"start": 492.64, "end": 492.64, "word": " is", "probability": 0.8154296875}, {"start": 492.64, "end": 492.9, "word": " add", "probability": 0.55908203125}, {"start": 492.9, "end": 493.28, "word": " shape", "probability": 0.54443359375}, {"start": 493.28, "end": 494.02, "word": " and", "probability": 0.77880859375}, {"start": 494.02, "end": 494.16, "word": " this", "probability": 0.82958984375}, {"start": 494.16, "end": 494.2, "word": " is", "probability": 0.91357421875}, {"start": 494.2, "end": 494.52, "word": " draw", "probability": 0.501953125}, {"start": 494.52, "end": 495.6, "word": " rectangle", "probability": 0.55419921875}, {"start": 495.6, "end": 496.24, "word": " until", "probability": 0.1683349609375}, {"start": 496.24, "end": 496.64, "word": " now", "probability": 0.89404296875}, {"start": 496.64, "end": 496.72, "word": " the", "probability": 0.405517578125}, {"start": 496.72, "end": 497.0, "word": " subject", "probability": 0.413330078125}, {"start": 497.0, "end": 497.34, "word": " is", "probability": 0.7734375}, {"start": 497.34, "end": 497.96, "word": " trivial", "probability": 0.9130859375}, {"start": 497.96, "end": 498.36, "word": " right", "probability": 0.2120361328125}, {"start": 498.36, "end": 498.5, "word": " or", "probability": 0.69482421875}, {"start": 498.5, "end": 498.64, "word": " not", "probability": 0.76220703125}, {"start": 498.64, "end": 499.0, "word": " guys?", "probability": 0.505859375}, {"start": 499.88, "end": 500.48, "word": " okay", "probability": 0.1663818359375}, {"start": 500.48, "end": 501.2, "word": " now", "probability": 0.591796875}, {"start": 501.2, "end": 501.54, "word": " I", "probability": 0.5634765625}, {"start": 501.54, "end": 501.82, "word": " asked", "probability": 0.6669921875}, {"start": 501.82, "end": 502.3, "word": " you", "probability": 0.82177734375}, {"start": 502.3, "end": 502.7, "word": " to", "probability": 0.54150390625}, {"start": 502.7, "end": 503.06, "word": " make", "probability": 0.8134765625}, {"start": 503.06, "end": 503.68, "word": " a", "probability": 0.58447265625}, {"start": 503.68, "end": 504.16, "word": " circle", "probability": 0.94921875}, {"start": 504.16, "end": 505.1, "word": " with", "probability": 0.90283203125}, {"start": 505.1, "end": 505.48, "word": " border", "probability": 0.76708984375}, {"start": 505.48, "end": 506.92, "word": " so", "probability": 0.183837890625}, {"start": 506.92, "end": 507.06, "word": " we", "probability": 0.74755859375}, {"start": 507.06, "end": 507.14, "word": " want", "probability": 0.33837890625}, {"start": 507.14, "end": 507.22, "word": " to", "probability": 0.94287109375}, {"start": 507.22, "end": 507.34, "word": " make", "probability": 0.91552734375}, {"start": 507.34, "end": 507.46, "word": " a", "probability": 0.8828125}, {"start": 507.46, "end": 507.72, "word": " circle", "probability": 0.6640625}, {"start": 507.72, "end": 508.78, "word": " around", "probability": 0.68408203125}, {"start": 508.78, "end": 509.02, "word": " the", "probability": 0.7392578125}, {"start": 509.02, "end": 509.32, "word": " circle", "probability": 0.87890625}], "temperature": 1.0}, {"id": 22, "seek": 53510, "start": 510.08, "end": 535.1, "text": " What does this mean? That we are going to add a new functionality. In the traditional way, what are you going to do? Simply say, go and create a new class called CircleWithBorder. Okay? And right away, tell it what? Extends Circle and so on and so forth in everything in the app. Okay? And then", "tokens": [708, 775, 341, 914, 30, 663, 321, 366, 516, 281, 909, 257, 777, 14980, 13, 682, 264, 5164, 636, 11, 437, 366, 291, 516, 281, 360, 30, 19596, 584, 11, 352, 293, 1884, 257, 777, 1508, 1219, 29381, 20943, 33, 4687, 13, 1033, 30, 400, 558, 1314, 11, 980, 309, 437, 30, 9881, 2581, 29381, 293, 370, 322, 293, 370, 5220, 294, 1203, 294, 264, 724, 13, 1033, 30, 400, 550], "avg_logprob": -0.6072048669060072, "compression_ratio": 1.528497409326425, "no_speech_prob": 9.5367431640625e-06, "words": [{"start": 510.08, "end": 510.36, "word": " What", "probability": 0.131591796875}, {"start": 510.36, "end": 510.48, "word": " does", "probability": 0.58984375}, {"start": 510.48, "end": 510.64, "word": " this", "probability": 0.5341796875}, {"start": 510.64, "end": 510.82, "word": " mean?", "probability": 0.66455078125}, {"start": 511.16, "end": 511.24, "word": " That", "probability": 0.295166015625}, {"start": 511.24, "end": 511.4, "word": " we", "probability": 0.80078125}, {"start": 511.4, "end": 511.56, "word": " are", "probability": 0.2626953125}, {"start": 511.56, "end": 511.58, "word": " going", "probability": 0.270263671875}, {"start": 511.58, "end": 511.58, "word": " to", "probability": 0.96435546875}, {"start": 511.58, "end": 511.74, "word": " add", "probability": 0.91357421875}, {"start": 511.74, "end": 513.18, "word": " a", "probability": 0.798828125}, {"start": 513.18, "end": 513.28, "word": " new", "probability": 0.88037109375}, {"start": 513.28, "end": 513.28, "word": " functionality.", "probability": 0.7412109375}, {"start": 513.96, "end": 514.32, "word": " In", "probability": 0.357421875}, {"start": 514.32, "end": 514.42, "word": " the", "probability": 0.447021484375}, {"start": 514.42, "end": 514.94, "word": " traditional", "probability": 0.62939453125}, {"start": 514.94, "end": 514.96, "word": " way,", "probability": 0.7705078125}, {"start": 515.14, "end": 515.22, "word": " what", "probability": 0.708984375}, {"start": 515.22, "end": 515.36, "word": " are", "probability": 0.39794921875}, {"start": 515.36, "end": 515.38, "word": " you", "probability": 0.90966796875}, {"start": 515.38, "end": 515.5, "word": " going", "probability": 0.9248046875}, {"start": 515.5, "end": 515.58, "word": " to", "probability": 0.9716796875}, {"start": 515.58, "end": 515.74, "word": " do?", "probability": 0.947265625}, {"start": 516.32, "end": 516.68, "word": " Simply", "probability": 0.1844482421875}, {"start": 516.68, "end": 516.68, "word": " say,", "probability": 0.326171875}, {"start": 517.12, "end": 517.24, "word": " go", "probability": 0.529296875}, {"start": 517.24, "end": 517.34, "word": " and", "probability": 0.378173828125}, {"start": 517.34, "end": 517.46, "word": " create", "probability": 0.634765625}, {"start": 517.46, "end": 517.56, "word": " a", "probability": 0.97998046875}, {"start": 517.56, "end": 518.1, "word": " new", "probability": 0.9013671875}, {"start": 518.1, "end": 518.16, "word": " class", "probability": 0.94775390625}, {"start": 518.16, "end": 519.26, "word": " called", "probability": 0.27587890625}, {"start": 519.26, "end": 522.04, "word": " CircleWithBorder.", "probability": 0.71502685546875}, {"start": 523.58, "end": 523.94, "word": " Okay?", "probability": 0.33154296875}, {"start": 524.44, "end": 524.6, "word": " And", "probability": 0.6953125}, {"start": 524.6, "end": 524.78, "word": " right", "probability": 0.16796875}, {"start": 524.78, "end": 524.98, "word": " away,", "probability": 0.86962890625}, {"start": 525.1, "end": 525.16, "word": " tell", "probability": 0.5439453125}, {"start": 525.16, "end": 525.3, "word": " it", "probability": 0.623046875}, {"start": 525.3, "end": 525.64, "word": " what?", "probability": 0.1939697265625}, {"start": 526.3, "end": 526.66, "word": " Extends", "probability": 0.767822265625}, {"start": 526.66, "end": 527.76, "word": " Circle", "probability": 0.49853515625}, {"start": 527.76, "end": 527.98, "word": " and", "probability": 0.39599609375}, {"start": 527.98, "end": 528.16, "word": " so", "probability": 0.1348876953125}, {"start": 528.16, "end": 528.2, "word": " on", "probability": 0.80810546875}, {"start": 528.2, "end": 528.24, "word": " and", "probability": 0.260498046875}, {"start": 528.24, "end": 528.38, "word": " so", "probability": 0.55078125}, {"start": 528.38, "end": 528.38, "word": " forth", "probability": 0.93505859375}, {"start": 528.38, "end": 528.5, "word": " in", "probability": 0.5498046875}, {"start": 528.5, "end": 528.86, "word": " everything", "probability": 0.69189453125}, {"start": 528.86, "end": 530.76, "word": " in", "probability": 0.25048828125}, {"start": 530.76, "end": 532.26, "word": " the", "probability": 0.81689453125}, {"start": 532.26, "end": 533.24, "word": " app.", "probability": 0.60107421875}, {"start": 533.64, "end": 533.9, "word": " Okay?", "probability": 0.482177734375}, {"start": 534.46, "end": 534.8, "word": " And", "probability": 0.82470703125}, {"start": 534.8, "end": 535.1, "word": " then", "probability": 0.77099609375}], "temperature": 1.0}, {"id": 23, "seek": 56158, "start": 536.7, "end": 561.58, "text": "add new attributes and override things that you want to override so you say for example int border-width this is for the width of the border and I have color border-color and you want to put for example setters and getters for whom? for the new attributes", "tokens": [25224, 777, 17212, 293, 42321, 721, 300, 291, 528, 281, 42321, 370, 291, 584, 337, 1365, 560, 7838, 12, 21271, 341, 307, 337, 264, 11402, 295, 264, 7838, 293, 286, 362, 2017, 7838, 12, 23851, 293, 291, 528, 281, 829, 337, 1365, 992, 1559, 293, 483, 1559, 337, 7101, 30, 337, 264, 777, 17212], "avg_logprob": -0.5676136363636364, "compression_ratio": 1.7708333333333333, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 536.7, "end": 537.22, "word": "add", "probability": 0.164794921875}, {"start": 537.22, "end": 537.58, "word": " new", "probability": 0.4462890625}, {"start": 537.58, "end": 538.04, "word": " attributes", "probability": 0.88720703125}, {"start": 538.04, "end": 538.58, "word": " and", "probability": 0.399169921875}, {"start": 538.58, "end": 539.56, "word": " override", "probability": 0.759765625}, {"start": 539.56, "end": 539.56, "word": " things", "probability": 0.154541015625}, {"start": 539.56, "end": 539.96, "word": " that", "probability": 0.30126953125}, {"start": 539.96, "end": 539.96, "word": " you", "probability": 0.5634765625}, {"start": 539.96, "end": 539.96, "word": " want", "probability": 0.640625}, {"start": 539.96, "end": 540.04, "word": " to", "probability": 0.418212890625}, {"start": 540.04, "end": 540.94, "word": " override", "probability": 0.86865234375}, {"start": 540.94, "end": 541.48, "word": " so", "probability": 0.1396484375}, {"start": 541.48, "end": 541.62, "word": " you", "probability": 0.537109375}, {"start": 541.62, "end": 541.78, "word": " say", "probability": 0.408447265625}, {"start": 541.78, "end": 542.0, "word": " for", "probability": 0.4443359375}, {"start": 542.0, "end": 542.22, "word": " example", "probability": 0.93212890625}, {"start": 542.22, "end": 542.66, "word": " int", "probability": 0.298828125}, {"start": 542.66, "end": 543.2, "word": " border", "probability": 0.853515625}, {"start": 543.2, "end": 545.56, "word": "-width", "probability": 0.65771484375}, {"start": 545.56, "end": 547.04, "word": " this", "probability": 0.2103271484375}, {"start": 547.04, "end": 547.1, "word": " is", "probability": 0.798828125}, {"start": 547.1, "end": 547.3, "word": " for", "probability": 0.426025390625}, {"start": 547.3, "end": 547.72, "word": " the", "probability": 0.23974609375}, {"start": 547.72, "end": 548.02, "word": " width", "probability": 0.8037109375}, {"start": 548.02, "end": 548.16, "word": " of", "probability": 0.91650390625}, {"start": 548.16, "end": 548.2, "word": " the", "probability": 0.671875}, {"start": 548.2, "end": 548.48, "word": " border", "probability": 0.87646484375}, {"start": 548.48, "end": 549.0, "word": " and", "probability": 0.73876953125}, {"start": 549.0, "end": 549.22, "word": " I", "probability": 0.3125}, {"start": 549.22, "end": 549.48, "word": " have", "probability": 0.84765625}, {"start": 549.48, "end": 550.1, "word": " color", "probability": 0.71875}, {"start": 550.1, "end": 551.44, "word": " border", "probability": 0.77294921875}, {"start": 551.44, "end": 554.58, "word": "-color", "probability": 0.797607421875}, {"start": 554.58, "end": 558.52, "word": " and", "probability": 0.65869140625}, {"start": 558.52, "end": 558.6, "word": " you", "probability": 0.71435546875}, {"start": 558.6, "end": 558.74, "word": " want", "probability": 0.38427734375}, {"start": 558.74, "end": 558.88, "word": " to", "probability": 0.9619140625}, {"start": 558.88, "end": 559.12, "word": " put", "probability": 0.320556640625}, {"start": 559.12, "end": 559.24, "word": " for", "probability": 0.376220703125}, {"start": 559.24, "end": 559.48, "word": " example", "probability": 0.89599609375}, {"start": 559.48, "end": 559.9, "word": " setters", "probability": 0.729736328125}, {"start": 559.9, "end": 560.02, "word": " and", "probability": 0.900390625}, {"start": 560.02, "end": 560.38, "word": " getters", "probability": 0.965087890625}, {"start": 560.38, "end": 560.54, "word": " for", "probability": 0.60107421875}, {"start": 560.54, "end": 560.78, "word": " whom?", "probability": 0.46142578125}, {"start": 560.92, "end": 561.16, "word": " for", "probability": 0.51953125}, {"start": 561.16, "end": 561.2, "word": " the", "probability": 0.681640625}, {"start": 561.2, "end": 561.22, "word": " new", "probability": 0.89990234375}, {"start": 561.22, "end": 561.58, "word": " attributes", "probability": 0.8544921875}], "temperature": 1.0}, {"id": 24, "seek": 59171, "start": 568.19, "end": 591.71, "text": " We haven't drawn a border yet, we will give it an attribute but we haven't drawn it yet So we will change this gate to a method to draw, we will make it overwrite The draw doesn't draw a border for this gate So I will make it overwrite, I will tell it to make an override for a method called draw It doesn't need to be a super gate, I really want to make a change I will show you how to make the change", "tokens": [492, 2378, 380, 10117, 257, 7838, 1939, 11, 321, 486, 976, 309, 364, 19667, 457, 321, 2378, 380, 10117, 309, 1939, 407, 321, 486, 1319, 341, 8539, 281, 257, 3170, 281, 2642, 11, 321, 486, 652, 309, 670, 21561, 440, 2642, 1177, 380, 2642, 257, 7838, 337, 341, 8539, 407, 286, 486, 652, 309, 670, 21561, 11, 286, 486, 980, 309, 281, 652, 364, 42321, 337, 257, 3170, 1219, 2642, 467, 1177, 380, 643, 281, 312, 257, 1687, 8539, 11, 286, 534, 528, 281, 652, 257, 1319, 286, 486, 855, 291, 577, 281, 652, 264, 1319], "avg_logprob": -0.5470360824742269, "compression_ratio": 1.995049504950495, "no_speech_prob": 3.045797348022461e-05, "words": [{"start": 568.19, "end": 568.57, "word": " We", "probability": 0.09185791015625}, {"start": 568.57, "end": 568.95, "word": " haven't", "probability": 0.665283203125}, {"start": 568.95, "end": 569.23, "word": " drawn", "probability": 0.5048828125}, {"start": 569.23, "end": 569.41, "word": " a", "probability": 0.58154296875}, {"start": 569.41, "end": 569.59, "word": " border", "probability": 0.83740234375}, {"start": 569.59, "end": 569.65, "word": " yet,", "probability": 0.88037109375}, {"start": 569.71, "end": 569.99, "word": " we", "probability": 0.490966796875}, {"start": 569.99, "end": 570.05, "word": " will", "probability": 0.2271728515625}, {"start": 570.05, "end": 570.27, "word": " give", "probability": 0.384033203125}, {"start": 570.27, "end": 570.39, "word": " it", "probability": 0.70654296875}, {"start": 570.39, "end": 570.53, "word": " an", "probability": 0.61767578125}, {"start": 570.53, "end": 570.81, "word": " attribute", "probability": 0.953125}, {"start": 570.81, "end": 571.05, "word": " but", "probability": 0.411865234375}, {"start": 571.05, "end": 571.17, "word": " we", "probability": 0.493896484375}, {"start": 571.17, "end": 571.19, "word": " haven't", "probability": 0.774169921875}, {"start": 571.19, "end": 571.41, "word": " drawn", "probability": 0.86279296875}, {"start": 571.41, "end": 571.49, "word": " it", "probability": 0.63525390625}, {"start": 571.49, "end": 572.17, "word": " yet", "probability": 0.880859375}, {"start": 572.17, "end": 572.27, "word": " So", "probability": 0.3857421875}, {"start": 572.27, "end": 572.43, "word": " we", "probability": 0.7470703125}, {"start": 572.43, "end": 572.51, "word": " will", "probability": 0.319580078125}, {"start": 572.51, "end": 572.79, "word": " change", "probability": 0.8134765625}, {"start": 572.79, "end": 572.99, "word": " this", "probability": 0.7158203125}, {"start": 572.99, "end": 573.13, "word": " gate", "probability": 0.82373046875}, {"start": 573.13, "end": 573.27, "word": " to", "probability": 0.69482421875}, {"start": 573.27, "end": 573.31, "word": " a", "probability": 0.402587890625}, {"start": 573.31, "end": 573.79, "word": " method", "probability": 0.853515625}, {"start": 573.79, "end": 574.05, "word": " to", "probability": 0.209228515625}, {"start": 574.05, "end": 574.77, "word": " draw,", "probability": 0.83642578125}, {"start": 574.91, "end": 575.01, "word": " we", "probability": 0.5400390625}, {"start": 575.01, "end": 575.03, "word": " will", "probability": 0.7998046875}, {"start": 575.03, "end": 575.17, "word": " make", "probability": 0.697265625}, {"start": 575.17, "end": 575.29, "word": " it", "probability": 0.85888671875}, {"start": 575.29, "end": 575.83, "word": " overwrite", "probability": 0.669189453125}, {"start": 575.83, "end": 576.57, "word": " The", "probability": 0.2464599609375}, {"start": 576.57, "end": 576.85, "word": " draw", "probability": 0.40771484375}, {"start": 576.85, "end": 577.11, "word": " doesn't", "probability": 0.59942626953125}, {"start": 577.11, "end": 577.47, "word": " draw", "probability": 0.59765625}, {"start": 577.47, "end": 577.65, "word": " a", "probability": 0.314453125}, {"start": 577.65, "end": 578.11, "word": " border", "probability": 0.8369140625}, {"start": 578.11, "end": 578.21, "word": " for", "probability": 0.382568359375}, {"start": 578.21, "end": 578.21, "word": " this", "probability": 0.796875}, {"start": 578.21, "end": 578.21, "word": " gate", "probability": 0.94287109375}, {"start": 578.21, "end": 578.63, "word": " So", "probability": 0.46142578125}, {"start": 578.63, "end": 578.75, "word": " I", "probability": 0.85400390625}, {"start": 578.75, "end": 578.89, "word": " will", "probability": 0.51318359375}, {"start": 578.89, "end": 579.03, "word": " make", "probability": 0.765625}, {"start": 579.03, "end": 579.17, "word": " it", "probability": 0.87060546875}, {"start": 579.17, "end": 579.61, "word": " overwrite,", "probability": 0.90234375}, {"start": 579.73, "end": 579.77, "word": " I", "probability": 0.466552734375}, {"start": 579.77, "end": 579.83, "word": " will", "probability": 0.74853515625}, {"start": 579.83, "end": 580.05, "word": " tell", "probability": 0.50634765625}, {"start": 580.05, "end": 580.29, "word": " it", "probability": 0.6787109375}, {"start": 580.29, "end": 580.75, "word": " to", "probability": 0.7216796875}, {"start": 580.75, "end": 581.17, "word": " make", "probability": 0.38525390625}, {"start": 581.17, "end": 581.81, "word": " an", "probability": 0.54296875}, {"start": 581.81, "end": 582.13, "word": " override", "probability": 0.794921875}, {"start": 582.13, "end": 582.39, "word": " for", "probability": 0.4111328125}, {"start": 582.39, "end": 582.45, "word": " a", "probability": 0.7509765625}, {"start": 582.45, "end": 582.85, "word": " method", "probability": 0.94921875}, {"start": 582.85, "end": 583.73, "word": " called", "probability": 0.5302734375}, {"start": 583.73, "end": 584.33, "word": " draw", "probability": 0.74462890625}, {"start": 584.33, "end": 585.47, "word": " It", "probability": 0.2431640625}, {"start": 585.47, "end": 585.61, "word": " doesn't", "probability": 0.90478515625}, {"start": 585.61, "end": 585.77, "word": " need", "probability": 0.389892578125}, {"start": 585.77, "end": 585.83, "word": " to", "probability": 0.7744140625}, {"start": 585.83, "end": 585.97, "word": " be", "probability": 0.140380859375}, {"start": 585.97, "end": 586.13, "word": " a", "probability": 0.299072265625}, {"start": 586.13, "end": 586.39, "word": " super", "probability": 0.82861328125}, {"start": 586.39, "end": 586.81, "word": " gate,", "probability": 0.669921875}, {"start": 587.45, "end": 587.73, "word": " I", "probability": 0.68310546875}, {"start": 587.73, "end": 588.09, "word": " really", "probability": 0.260009765625}, {"start": 588.09, "end": 589.19, "word": " want", "probability": 0.447998046875}, {"start": 589.19, "end": 589.37, "word": " to", "probability": 0.96142578125}, {"start": 589.37, "end": 589.51, "word": " make", "probability": 0.57958984375}, {"start": 589.51, "end": 589.65, "word": " a", "probability": 0.9365234375}, {"start": 589.65, "end": 589.87, "word": " change", "probability": 0.89306640625}, {"start": 589.87, "end": 590.59, "word": " I", "probability": 0.28076171875}, {"start": 590.59, "end": 590.99, "word": " will", "probability": 0.501953125}, {"start": 590.99, "end": 591.19, "word": " show", "probability": 0.927734375}, {"start": 591.19, "end": 591.31, "word": " you", "probability": 0.9384765625}, {"start": 591.31, "end": 591.47, "word": " how", "probability": 0.9248046875}, {"start": 591.47, "end": 591.53, "word": " to", "probability": 0.91650390625}, {"start": 591.53, "end": 591.71, "word": " make", "probability": 0.65185546875}, {"start": 591.71, "end": 591.71, "word": " the", "probability": 0.45751953125}, {"start": 591.71, "end": 591.71, "word": " change", "probability": 0.88623046875}], "temperature": 1.0}, {"id": 25, "seek": 60209, "start": 592.61, "end": 602.09, "text": "The idea is not about how to make changes, but about how to make changes. For example, I want to make graphics 2D, G2D.", "tokens": [2278, 1558, 307, 406, 466, 577, 281, 652, 2962, 11, 457, 466, 577, 281, 652, 2962, 13, 1171, 1365, 11, 286, 528, 281, 652, 11837, 568, 35, 11, 460, 17, 35, 13], "avg_logprob": -0.5909090909090909, "compression_ratio": 1.3370786516853932, "no_speech_prob": 1.6689300537109375e-06, "words": [{"start": 592.61, "end": 592.87, "word": "The", "probability": 0.27734375}, {"start": 592.87, "end": 593.05, "word": " idea", "probability": 0.73681640625}, {"start": 593.05, "end": 593.15, "word": " is", "probability": 0.60546875}, {"start": 593.15, "end": 593.25, "word": " not", "probability": 0.89404296875}, {"start": 593.25, "end": 593.71, "word": " about", "probability": 0.237548828125}, {"start": 593.71, "end": 593.75, "word": " how", "probability": 0.70849609375}, {"start": 593.75, "end": 593.91, "word": " to", "probability": 0.430908203125}, {"start": 593.91, "end": 594.17, "word": " make", "probability": 0.475341796875}, {"start": 594.17, "end": 594.63, "word": " changes,", "probability": 0.36669921875}, {"start": 594.75, "end": 594.87, "word": " but", "probability": 0.346923828125}, {"start": 594.87, "end": 594.89, "word": " about", "probability": 0.400634765625}, {"start": 594.89, "end": 594.97, "word": " how", "probability": 0.36572265625}, {"start": 594.97, "end": 595.33, "word": " to", "probability": 0.56591796875}, {"start": 595.33, "end": 595.33, "word": " make", "probability": 0.5947265625}, {"start": 595.33, "end": 595.33, "word": " changes.", "probability": 0.51806640625}, {"start": 595.99, "end": 596.25, "word": " For", "probability": 0.3701171875}, {"start": 596.25, "end": 596.45, "word": " example,", "probability": 0.85302734375}, {"start": 596.59, "end": 596.59, "word": " I", "probability": 0.61767578125}, {"start": 596.59, "end": 597.27, "word": " want", "probability": 0.4619140625}, {"start": 597.27, "end": 597.33, "word": " to", "probability": 0.86572265625}, {"start": 597.33, "end": 597.47, "word": " make", "probability": 0.6630859375}, {"start": 597.47, "end": 598.01, "word": " graphics", "probability": 0.548828125}, {"start": 598.01, "end": 600.73, "word": " 2D,", "probability": 0.550537109375}, {"start": 601.13, "end": 602.09, "word": " G2D.", "probability": 0.8483072916666666}], "temperature": 1.0}, {"id": 26, "seek": 66693, "start": 641.67, "end": 666.93, "text": " Ok, these are the new additions, then I go and say super or super.draw Ok guys, the idea of ​​the draw is to add a new feature, which is to draw a border Which is what I did to draw a border, I went and gave it color", "tokens": [3477, 11, 613, 366, 264, 777, 35113, 11, 550, 286, 352, 293, 584, 1687, 420, 1687, 13, 48848, 3477, 1074, 11, 264, 1558, 295, 8701, 3322, 2642, 307, 281, 909, 257, 777, 4111, 11, 597, 307, 281, 2642, 257, 7838, 3013, 307, 437, 286, 630, 281, 2642, 257, 7838, 11, 286, 1437, 293, 2729, 309, 2017], "avg_logprob": -0.48547149122807015, "compression_ratio": 1.5034013605442176, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 641.6700000000001, "end": 642.07, "word": " Ok,", "probability": 0.1807861328125}, {"start": 642.61, "end": 642.93, "word": " these", "probability": 0.33544921875}, {"start": 642.93, "end": 642.99, "word": " are", "probability": 0.87451171875}, {"start": 642.99, "end": 643.07, "word": " the", "probability": 0.7001953125}, {"start": 643.07, "end": 643.63, "word": " new", "probability": 0.79736328125}, {"start": 643.63, "end": 643.63, "word": " additions,", "probability": 0.79931640625}, {"start": 643.97, "end": 644.33, "word": " then", "probability": 0.5166015625}, {"start": 644.33, "end": 644.61, "word": " I", "probability": 0.7041015625}, {"start": 644.61, "end": 644.65, "word": " go", "probability": 0.1875}, {"start": 644.65, "end": 644.81, "word": " and", "probability": 0.455810546875}, {"start": 644.81, "end": 644.99, "word": " say", "probability": 0.455078125}, {"start": 644.99, "end": 645.57, "word": " super", "probability": 0.73388671875}, {"start": 645.57, "end": 646.91, "word": " or", "probability": 0.362548828125}, {"start": 646.91, "end": 651.87, "word": " super", "probability": 0.79150390625}, {"start": 651.87, "end": 652.59, "word": ".draw", "probability": 0.776611328125}, {"start": 652.59, "end": 659.71, "word": " Ok", "probability": 0.576171875}, {"start": 659.71, "end": 660.01, "word": " guys,", "probability": 0.744140625}, {"start": 660.09, "end": 660.17, "word": " the", "probability": 0.81689453125}, {"start": 660.17, "end": 660.29, "word": " idea", "probability": 0.7958984375}, {"start": 660.29, "end": 660.45, "word": " of", "probability": 0.865234375}, {"start": 660.45, "end": 660.53, "word": " ​​the", "probability": 0.41796875}, {"start": 660.53, "end": 660.69, "word": " draw", "probability": 0.50830078125}, {"start": 660.69, "end": 660.79, "word": " is", "probability": 0.86279296875}, {"start": 660.79, "end": 660.97, "word": " to", "probability": 0.31591796875}, {"start": 660.97, "end": 661.21, "word": " add", "probability": 0.89208984375}, {"start": 661.21, "end": 661.31, "word": " a", "probability": 0.962890625}, {"start": 661.31, "end": 661.83, "word": " new", "probability": 0.8779296875}, {"start": 661.83, "end": 661.83, "word": " feature,", "probability": 0.63720703125}, {"start": 662.01, "end": 662.03, "word": " which", "probability": 0.88525390625}, {"start": 662.03, "end": 662.17, "word": " is", "probability": 0.92333984375}, {"start": 662.17, "end": 662.45, "word": " to", "probability": 0.638671875}, {"start": 662.45, "end": 662.45, "word": " draw", "probability": 0.90771484375}, {"start": 662.45, "end": 663.35, "word": " a", "probability": 0.66650390625}, {"start": 663.35, "end": 663.57, "word": " border", "probability": 0.85107421875}, {"start": 663.57, "end": 664.45, "word": " Which", "probability": 0.22802734375}, {"start": 664.45, "end": 664.59, "word": " is", "probability": 0.89404296875}, {"start": 664.59, "end": 664.79, "word": " what", "probability": 0.77734375}, {"start": 664.79, "end": 664.87, "word": " I", "probability": 0.26025390625}, {"start": 664.87, "end": 665.11, "word": " did", "probability": 0.904296875}, {"start": 665.11, "end": 665.31, "word": " to", "probability": 0.9404296875}, {"start": 665.31, "end": 665.57, "word": " draw", "probability": 0.9072265625}, {"start": 665.57, "end": 665.77, "word": " a", "probability": 0.919921875}, {"start": 665.77, "end": 665.99, "word": " border,", "probability": 0.85595703125}, {"start": 666.19, "end": 666.29, "word": " I", "probability": 0.73193359375}, {"start": 666.29, "end": 666.29, "word": " went", "probability": 0.1982421875}, {"start": 666.29, "end": 666.43, "word": " and", "probability": 0.6826171875}, {"start": 666.43, "end": 666.57, "word": " gave", "probability": 0.61279296875}, {"start": 666.57, "end": 666.71, "word": " it", "probability": 0.85888671875}, {"start": 666.71, "end": 666.93, "word": " color", "probability": 0.55224609375}], "temperature": 1.0}, {"id": 27, "seek": 69479, "start": 668.25, "end": 694.79, "text": " I changed the color and gave it a stroke that takes the width and then I told it to invoke the super to draw it. It will invoke the super, it will draw the circle, but after applying the new settings. From the point of view, the point is not how to draw a circle, the point is that I made an override to add a new functionality, okay? And this is also an override for whom?", "tokens": [286, 3105, 264, 2017, 293, 2729, 309, 257, 12403, 300, 2516, 264, 11402, 293, 550, 286, 1907, 309, 281, 41117, 264, 1687, 281, 2642, 309, 13, 467, 486, 41117, 264, 1687, 11, 309, 486, 2642, 264, 6329, 11, 457, 934, 9275, 264, 777, 6257, 13, 3358, 264, 935, 295, 1910, 11, 264, 935, 307, 406, 577, 281, 2642, 257, 6329, 11, 264, 935, 307, 300, 286, 1027, 364, 42321, 281, 909, 257, 777, 14980, 11, 1392, 30, 400, 341, 307, 611, 364, 42321, 337, 7101, 30], "avg_logprob": -0.47808909484709816, "compression_ratio": 1.7476635514018692, "no_speech_prob": 6.67572021484375e-06, "words": [{"start": 668.25, "end": 668.43, "word": " I", "probability": 0.447998046875}, {"start": 668.43, "end": 668.71, "word": " changed", "probability": 0.73876953125}, {"start": 668.71, "end": 668.89, "word": " the", "probability": 0.78369140625}, {"start": 668.89, "end": 669.11, "word": " color", "probability": 0.68798828125}, {"start": 669.11, "end": 670.03, "word": " and", "probability": 0.48828125}, {"start": 670.03, "end": 670.33, "word": " gave", "probability": 0.447998046875}, {"start": 670.33, "end": 670.61, "word": " it", "probability": 0.5263671875}, {"start": 670.61, "end": 670.91, "word": " a", "probability": 0.77734375}, {"start": 670.91, "end": 671.23, "word": " stroke", "probability": 0.8583984375}, {"start": 671.23, "end": 671.37, "word": " that", "probability": 0.392822265625}, {"start": 671.37, "end": 672.45, "word": " takes", "probability": 0.5341796875}, {"start": 672.45, "end": 672.59, "word": " the", "probability": 0.7294921875}, {"start": 672.59, "end": 672.83, "word": " width", "probability": 0.91796875}, {"start": 672.83, "end": 672.99, "word": " and", "probability": 0.365478515625}, {"start": 672.99, "end": 673.21, "word": " then", "probability": 0.7314453125}, {"start": 673.21, "end": 673.29, "word": " I", "probability": 0.70703125}, {"start": 673.29, "end": 673.45, "word": " told", "probability": 0.449462890625}, {"start": 673.45, "end": 673.67, "word": " it", "probability": 0.383056640625}, {"start": 673.67, "end": 673.89, "word": " to", "probability": 0.70947265625}, {"start": 673.89, "end": 674.15, "word": " invoke", "probability": 0.1475830078125}, {"start": 674.15, "end": 675.81, "word": " the", "probability": 0.66357421875}, {"start": 675.81, "end": 676.05, "word": " super", "probability": 0.609375}, {"start": 676.05, "end": 676.23, "word": " to", "probability": 0.1668701171875}, {"start": 676.23, "end": 676.39, "word": " draw", "probability": 0.53759765625}, {"start": 676.39, "end": 676.51, "word": " it.", "probability": 0.36962890625}, {"start": 676.61, "end": 676.69, "word": " It", "probability": 0.351806640625}, {"start": 676.69, "end": 676.81, "word": " will", "probability": 0.673828125}, {"start": 676.81, "end": 677.63, "word": " invoke", "probability": 0.96875}, {"start": 677.63, "end": 677.81, "word": " the", "probability": 0.8515625}, {"start": 677.81, "end": 678.09, "word": " super,", "probability": 0.9052734375}, {"start": 678.43, "end": 679.01, "word": " it", "probability": 0.62060546875}, {"start": 679.01, "end": 679.13, "word": " will", "probability": 0.53564453125}, {"start": 679.13, "end": 679.33, "word": " draw", "probability": 0.86279296875}, {"start": 679.33, "end": 679.53, "word": " the", "probability": 0.78955078125}, {"start": 679.53, "end": 679.75, "word": " circle,", "probability": 0.89111328125}, {"start": 679.89, "end": 680.07, "word": " but", "probability": 0.5498046875}, {"start": 680.07, "end": 681.23, "word": " after", "probability": 0.673828125}, {"start": 681.23, "end": 681.63, "word": " applying", "probability": 0.46826171875}, {"start": 681.63, "end": 683.23, "word": " the", "probability": 0.88671875}, {"start": 683.23, "end": 683.49, "word": " new", "probability": 0.66064453125}, {"start": 683.49, "end": 683.57, "word": " settings.", "probability": 0.58984375}, {"start": 684.31, "end": 684.75, "word": " From", "probability": 0.1129150390625}, {"start": 684.75, "end": 685.03, "word": " the", "probability": 0.287353515625}, {"start": 685.03, "end": 685.19, "word": " point", "probability": 0.630859375}, {"start": 685.19, "end": 685.19, "word": " of", "probability": 0.9794921875}, {"start": 685.19, "end": 685.25, "word": " view,", "probability": 0.87939453125}, {"start": 685.61, "end": 685.75, "word": " the", "probability": 0.482177734375}, {"start": 685.75, "end": 685.93, "word": " point", "probability": 0.67578125}, {"start": 685.93, "end": 686.09, "word": " is", "probability": 0.8583984375}, {"start": 686.09, "end": 686.23, "word": " not", "probability": 0.92822265625}, {"start": 686.23, "end": 686.49, "word": " how", "probability": 0.81787109375}, {"start": 686.49, "end": 686.65, "word": " to", "probability": 0.8056640625}, {"start": 686.65, "end": 686.83, "word": " draw", "probability": 0.939453125}, {"start": 686.83, "end": 687.01, "word": " a", "probability": 0.89208984375}, {"start": 687.01, "end": 687.25, "word": " circle,", "probability": 0.93994140625}, {"start": 687.45, "end": 687.53, "word": " the", "probability": 0.473388671875}, {"start": 687.53, "end": 687.71, "word": " point", "probability": 0.9375}, {"start": 687.71, "end": 687.89, "word": " is", "probability": 0.93994140625}, {"start": 687.89, "end": 688.07, "word": " that", "probability": 0.72705078125}, {"start": 688.07, "end": 688.35, "word": " I", "probability": 0.9892578125}, {"start": 688.35, "end": 688.57, "word": " made", "probability": 0.4404296875}, {"start": 688.57, "end": 688.73, "word": " an", "probability": 0.673828125}, {"start": 688.73, "end": 689.09, "word": " override", "probability": 0.93408203125}, {"start": 689.09, "end": 689.33, "word": " to", "probability": 0.8017578125}, {"start": 689.33, "end": 689.77, "word": " add", "probability": 0.93603515625}, {"start": 689.77, "end": 690.57, "word": " a", "probability": 0.66943359375}, {"start": 690.57, "end": 690.57, "word": " new", "probability": 0.8916015625}, {"start": 690.57, "end": 691.07, "word": " functionality,", "probability": 0.90625}, {"start": 692.13, "end": 692.33, "word": " okay?", "probability": 0.59326171875}, {"start": 692.81, "end": 693.01, "word": " And", "probability": 0.7548828125}, {"start": 693.01, "end": 693.17, "word": " this", "probability": 0.77197265625}, {"start": 693.17, "end": 693.45, "word": " is", "probability": 0.798828125}, {"start": 693.45, "end": 693.75, "word": " also", "probability": 0.76611328125}, {"start": 693.75, "end": 693.95, "word": " an", "probability": 0.712890625}, {"start": 693.95, "end": 694.29, "word": " override", "probability": 0.9794921875}, {"start": 694.29, "end": 694.59, "word": " for", "probability": 0.564453125}, {"start": 694.59, "end": 694.79, "word": " whom?", "probability": 0.6494140625}], "temperature": 1.0}, {"id": 28, "seek": 72095, "start": 695.97, "end": 720.95, "text": " for describe, here he used to say this is circle, so i want to say return super dot describe plus with border of color and with color for example, the important thing is that we added a new feature that says anything in the description with border", "tokens": [337, 6786, 11, 510, 415, 1143, 281, 584, 341, 307, 6329, 11, 370, 741, 528, 281, 584, 2736, 1687, 5893, 6786, 1804, 365, 7838, 295, 2017, 293, 365, 2017, 337, 1365, 11, 264, 1021, 551, 307, 300, 321, 3869, 257, 777, 4111, 300, 1619, 1340, 294, 264, 3855, 365, 7838], "avg_logprob": -0.6231617693807564, "compression_ratio": 1.6533333333333333, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 695.97, "end": 696.21, "word": " for", "probability": 0.060882568359375}, {"start": 696.21, "end": 696.57, "word": " describe,", "probability": 0.406494140625}, {"start": 697.21, "end": 697.63, "word": " here", "probability": 0.214599609375}, {"start": 697.63, "end": 698.57, "word": " he", "probability": 0.3251953125}, {"start": 698.57, "end": 698.77, "word": " used", "probability": 0.2364501953125}, {"start": 698.77, "end": 698.77, "word": " to", "probability": 0.96240234375}, {"start": 698.77, "end": 698.97, "word": " say", "probability": 0.6552734375}, {"start": 698.97, "end": 699.99, "word": " this", "probability": 0.128662109375}, {"start": 699.99, "end": 701.87, "word": " is", "probability": 0.69921875}, {"start": 701.87, "end": 702.27, "word": " circle,", "probability": 0.888671875}, {"start": 702.51, "end": 703.15, "word": " so", "probability": 0.39111328125}, {"start": 703.15, "end": 703.23, "word": " i", "probability": 0.42724609375}, {"start": 703.23, "end": 703.35, "word": " want", "probability": 0.34521484375}, {"start": 703.35, "end": 703.39, "word": " to", "probability": 0.9365234375}, {"start": 703.39, "end": 703.51, "word": " say", "probability": 0.68212890625}, {"start": 703.51, "end": 704.03, "word": " return", "probability": 0.83154296875}, {"start": 704.03, "end": 705.17, "word": " super", "probability": 0.8037109375}, {"start": 705.17, "end": 706.41, "word": " dot", "probability": 0.499267578125}, {"start": 706.41, "end": 707.07, "word": " describe", "probability": 0.82177734375}, {"start": 707.07, "end": 707.87, "word": " plus", "probability": 0.5546875}, {"start": 707.87, "end": 708.47, "word": " with", "probability": 0.814453125}, {"start": 708.47, "end": 710.73, "word": " border", "probability": 0.8173828125}, {"start": 710.73, "end": 711.07, "word": " of", "probability": 0.8642578125}, {"start": 711.07, "end": 711.47, "word": " color", "probability": 0.82080078125}, {"start": 711.47, "end": 711.89, "word": " and", "probability": 0.441162109375}, {"start": 711.89, "end": 712.15, "word": " with", "probability": 0.677734375}, {"start": 712.15, "end": 712.43, "word": " color", "probability": 0.65283203125}, {"start": 712.43, "end": 712.59, "word": " for", "probability": 0.303466796875}, {"start": 712.59, "end": 712.81, "word": " example,", "probability": 0.94970703125}, {"start": 713.35, "end": 713.71, "word": " the", "probability": 0.286376953125}, {"start": 713.71, "end": 713.93, "word": " important", "probability": 0.794921875}, {"start": 713.93, "end": 714.05, "word": " thing", "probability": 0.630859375}, {"start": 714.05, "end": 714.17, "word": " is", "probability": 0.85693359375}, {"start": 714.17, "end": 714.21, "word": " that", "probability": 0.39111328125}, {"start": 714.21, "end": 715.47, "word": " we", "probability": 0.8515625}, {"start": 715.47, "end": 716.07, "word": " added", "probability": 0.6474609375}, {"start": 716.07, "end": 716.27, "word": " a", "probability": 0.779296875}, {"start": 716.27, "end": 716.79, "word": " new", "probability": 0.7998046875}, {"start": 716.79, "end": 717.57, "word": " feature", "probability": 0.791015625}, {"start": 717.57, "end": 717.91, "word": " that", "probability": 0.47802734375}, {"start": 717.91, "end": 718.63, "word": " says", "probability": 0.1864013671875}, {"start": 718.63, "end": 718.63, "word": " anything", "probability": 0.315673828125}, {"start": 718.63, "end": 719.21, "word": " in", "probability": 0.6826171875}, {"start": 719.21, "end": 719.31, "word": " the", "probability": 0.59130859375}, {"start": 719.31, "end": 719.75, "word": " description", "probability": 0.92138671875}, {"start": 719.75, "end": 720.65, "word": " with", "probability": 0.86376953125}, {"start": 720.65, "end": 720.95, "word": " border", "probability": 0.8056640625}], "temperature": 1.0}, {"id": 29, "seek": 74923, "start": 721.79, "end": 749.23, "text": " Ok, the speech now is simple Ok, until now we did the class, but we didn't use it We need to go to my frame Now, instead of creating a circle or rectangle I found what I need to do I need to create an object of type circle with border Ok guys, this is cbnewcirclewithborder", "tokens": [3477, 11, 264, 6218, 586, 307, 2199, 3477, 11, 1826, 586, 321, 630, 264, 1508, 11, 457, 321, 994, 380, 764, 309, 492, 643, 281, 352, 281, 452, 3920, 823, 11, 2602, 295, 4084, 257, 6329, 420, 21930, 286, 1352, 437, 286, 643, 281, 360, 286, 643, 281, 1884, 364, 2657, 295, 2010, 6329, 365, 7838, 3477, 1074, 11, 341, 307, 269, 65, 7686, 23568, 2160, 11820, 65, 4687], "avg_logprob": -0.511607153075082, "compression_ratio": 1.5480225988700564, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 721.79, "end": 722.11, "word": " Ok,", "probability": 0.1591796875}, {"start": 722.37, "end": 722.53, "word": " the", "probability": 0.1976318359375}, {"start": 722.53, "end": 722.69, "word": " speech", "probability": 0.221435546875}, {"start": 722.69, "end": 722.95, "word": " now", "probability": 0.221435546875}, {"start": 722.95, "end": 723.03, "word": " is", "probability": 0.8037109375}, {"start": 723.03, "end": 723.35, "word": " simple", "probability": 0.73876953125}, {"start": 723.35, "end": 723.83, "word": " Ok,", "probability": 0.11749267578125}, {"start": 723.89, "end": 724.11, "word": " until", "probability": 0.0791015625}, {"start": 724.11, "end": 724.45, "word": " now", "probability": 0.93359375}, {"start": 724.45, "end": 724.93, "word": " we", "probability": 0.50048828125}, {"start": 724.93, "end": 725.11, "word": " did", "probability": 0.253662109375}, {"start": 725.11, "end": 725.27, "word": " the", "probability": 0.6708984375}, {"start": 725.27, "end": 725.49, "word": " class,", "probability": 0.91845703125}, {"start": 725.51, "end": 725.65, "word": " but", "probability": 0.89111328125}, {"start": 725.65, "end": 725.75, "word": " we", "probability": 0.7919921875}, {"start": 725.75, "end": 725.77, "word": " didn't", "probability": 0.7276611328125}, {"start": 725.77, "end": 726.09, "word": " use", "probability": 0.818359375}, {"start": 726.09, "end": 726.39, "word": " it", "probability": 0.9345703125}, {"start": 726.39, "end": 726.87, "word": " We", "probability": 0.24658203125}, {"start": 726.87, "end": 727.03, "word": " need", "probability": 0.325439453125}, {"start": 727.03, "end": 727.11, "word": " to", "probability": 0.95263671875}, {"start": 727.11, "end": 727.17, "word": " go", "probability": 0.7890625}, {"start": 727.17, "end": 727.35, "word": " to", "probability": 0.85205078125}, {"start": 727.35, "end": 727.63, "word": " my", "probability": 0.58984375}, {"start": 727.63, "end": 727.97, "word": " frame", "probability": 0.85009765625}, {"start": 727.97, "end": 729.05, "word": " Now,", "probability": 0.466796875}, {"start": 729.15, "end": 729.31, "word": " instead", "probability": 0.78662109375}, {"start": 729.31, "end": 729.69, "word": " of", "probability": 0.94970703125}, {"start": 729.69, "end": 730.01, "word": " creating", "probability": 0.61474609375}, {"start": 730.01, "end": 730.57, "word": " a", "probability": 0.595703125}, {"start": 730.57, "end": 730.91, "word": " circle", "probability": 0.8662109375}, {"start": 730.91, "end": 731.01, "word": " or", "probability": 0.623046875}, {"start": 731.01, "end": 731.49, "word": " rectangle", "probability": 0.85791015625}, {"start": 731.49, "end": 731.99, "word": " I", "probability": 0.4921875}, {"start": 731.99, "end": 732.31, "word": " found", "probability": 0.40234375}, {"start": 732.31, "end": 732.71, "word": " what", "probability": 0.63427734375}, {"start": 732.71, "end": 732.83, "word": " I", "probability": 0.87451171875}, {"start": 732.83, "end": 732.97, "word": " need", "probability": 0.47265625}, {"start": 732.97, "end": 733.01, "word": " to", "probability": 0.96240234375}, {"start": 733.01, "end": 733.31, "word": " do", "probability": 0.8642578125}, {"start": 733.31, "end": 733.91, "word": " I", "probability": 0.728515625}, {"start": 733.91, "end": 734.07, "word": " need", "probability": 0.76220703125}, {"start": 734.07, "end": 734.23, "word": " to", "probability": 0.9697265625}, {"start": 734.23, "end": 734.43, "word": " create", "probability": 0.884765625}, {"start": 734.43, "end": 735.65, "word": " an", "probability": 0.63525390625}, {"start": 735.65, "end": 735.97, "word": " object", "probability": 0.94775390625}, {"start": 735.97, "end": 736.07, "word": " of", "probability": 0.412841796875}, {"start": 736.07, "end": 736.29, "word": " type", "probability": 0.48681640625}, {"start": 736.29, "end": 736.79, "word": " circle", "probability": 0.873046875}, {"start": 736.79, "end": 738.09, "word": " with", "probability": 0.78662109375}, {"start": 738.09, "end": 739.31, "word": " border", "probability": 0.82763671875}, {"start": 739.31, "end": 741.61, "word": " Ok", "probability": 0.77490234375}, {"start": 741.61, "end": 742.03, "word": " guys,", "probability": 0.69677734375}, {"start": 742.55, "end": 742.75, "word": " this", "probability": 0.7783203125}, {"start": 742.75, "end": 742.83, "word": " is", "probability": 0.9072265625}, {"start": 742.83, "end": 749.23, "word": " cbnewcirclewithborder", "probability": 0.722259521484375}], "temperature": 1.0}, {"id": 30, "seek": 77380, "start": 750.78, "end": 773.8, "text": "and I give it the center and half of the line and then go to the cb and give it the set border which is the new attribute highcolor.red cb.width 3 for example and then I tell it cb.draw get graphics", "tokens": [474, 286, 976, 309, 264, 3056, 293, 1922, 295, 264, 1622, 293, 550, 352, 281, 264, 269, 65, 293, 976, 309, 264, 992, 7838, 597, 307, 264, 777, 19667, 1090, 23851, 13, 986, 269, 65, 13, 21271, 805, 337, 1365, 293, 550, 286, 980, 309, 269, 65, 13, 48848, 483, 11837], "avg_logprob": -0.5709134603922184, "compression_ratio": 1.523076923076923, "no_speech_prob": 0.0, "words": [{"start": 750.78, "end": 750.96, "word": "and", "probability": 0.08477783203125}, {"start": 750.96, "end": 751.06, "word": " I", "probability": 0.301513671875}, {"start": 751.06, "end": 751.24, "word": " give", "probability": 0.368408203125}, {"start": 751.24, "end": 751.48, "word": " it", "probability": 0.58935546875}, {"start": 751.48, "end": 752.66, "word": " the", "probability": 0.3505859375}, {"start": 752.66, "end": 753.12, "word": " center", "probability": 0.56005859375}, {"start": 753.12, "end": 753.44, "word": " and", "probability": 0.77197265625}, {"start": 753.44, "end": 753.6, "word": " half", "probability": 0.37451171875}, {"start": 753.6, "end": 753.74, "word": " of", "probability": 0.50390625}, {"start": 753.74, "end": 753.78, "word": " the", "probability": 0.67431640625}, {"start": 753.78, "end": 753.98, "word": " line", "probability": 0.343994140625}, {"start": 753.98, "end": 755.04, "word": " and", "probability": 0.5419921875}, {"start": 755.04, "end": 755.4, "word": " then", "probability": 0.4443359375}, {"start": 755.4, "end": 755.74, "word": " go", "probability": 0.40869140625}, {"start": 755.74, "end": 755.92, "word": " to", "probability": 0.94287109375}, {"start": 755.92, "end": 756.02, "word": " the", "probability": 0.61279296875}, {"start": 756.02, "end": 756.38, "word": " cb", "probability": 0.4005126953125}, {"start": 756.38, "end": 756.54, "word": " and", "probability": 0.68408203125}, {"start": 756.54, "end": 756.78, "word": " give", "probability": 0.6455078125}, {"start": 756.78, "end": 756.92, "word": " it", "probability": 0.8291015625}, {"start": 756.92, "end": 757.0, "word": " the", "probability": 0.370849609375}, {"start": 757.0, "end": 757.18, "word": " set", "probability": 0.89208984375}, {"start": 757.18, "end": 757.58, "word": " border", "probability": 0.6982421875}, {"start": 757.58, "end": 757.9, "word": " which", "probability": 0.1402587890625}, {"start": 757.9, "end": 758.2, "word": " is", "probability": 0.916015625}, {"start": 758.2, "end": 758.22, "word": " the", "probability": 0.66015625}, {"start": 758.22, "end": 758.22, "word": " new", "probability": 0.8310546875}, {"start": 758.22, "end": 758.58, "word": " attribute", "probability": 0.71044921875}, {"start": 758.58, "end": 760.44, "word": " highcolor", "probability": 0.5013427734375}, {"start": 760.44, "end": 761.48, "word": ".red", "probability": 0.912353515625}, {"start": 761.48, "end": 763.42, "word": " cb", "probability": 0.63818359375}, {"start": 763.42, "end": 765.18, "word": ".width", "probability": 0.944580078125}, {"start": 765.18, "end": 765.86, "word": " 3", "probability": 0.11859130859375}, {"start": 765.86, "end": 766.16, "word": " for", "probability": 0.3466796875}, {"start": 766.16, "end": 766.16, "word": " example", "probability": 0.9501953125}, {"start": 766.16, "end": 766.86, "word": " and", "probability": 0.73046875}, {"start": 766.86, "end": 767.2, "word": " then", "probability": 0.78564453125}, {"start": 767.2, "end": 767.36, "word": " I", "probability": 0.7939453125}, {"start": 767.36, "end": 767.52, "word": " tell", "probability": 0.29296875}, {"start": 767.52, "end": 767.66, "word": " it", "probability": 0.58154296875}, {"start": 767.66, "end": 768.64, "word": " cb", "probability": 0.881103515625}, {"start": 768.64, "end": 770.78, "word": ".draw", "probability": 0.89404296875}, {"start": 770.78, "end": 772.98, "word": " get", "probability": 0.462890625}, {"start": 772.98, "end": 773.8, "word": " graphics", "probability": 0.6904296875}], "temperature": 1.0}, {"id": 31, "seek": 80216, "start": 782.32, "end": 802.16, "text": " With me guys, make a run And it will add shape, it will add a circle shape in a circle Ok, where is the problem? Pay attention with me Because I made a circle, I want to add a rectangle with border The rectangle needs to have a border What will we do?", "tokens": [2022, 385, 1074, 11, 652, 257, 1190, 400, 309, 486, 909, 3909, 11, 309, 486, 909, 257, 6329, 3909, 294, 257, 6329, 3477, 11, 689, 307, 264, 1154, 30, 11431, 3202, 365, 385, 1436, 286, 1027, 257, 6329, 11, 286, 528, 281, 909, 257, 21930, 365, 7838, 440, 21930, 2203, 281, 362, 257, 7838, 708, 486, 321, 360, 30], "avg_logprob": -0.57760415772597, "compression_ratio": 1.5849056603773586, "no_speech_prob": 3.5762786865234375e-06, "words": [{"start": 782.32, "end": 782.52, "word": " With", "probability": 0.07427978515625}, {"start": 782.52, "end": 782.68, "word": " me", "probability": 0.9208984375}, {"start": 782.68, "end": 783.04, "word": " guys,", "probability": 0.556640625}, {"start": 783.32, "end": 783.68, "word": " make", "probability": 0.199951171875}, {"start": 783.68, "end": 783.72, "word": " a", "probability": 0.62353515625}, {"start": 783.72, "end": 783.96, "word": " run", "probability": 0.41552734375}, {"start": 783.96, "end": 786.26, "word": " And", "probability": 0.26025390625}, {"start": 786.26, "end": 786.4, "word": " it", "probability": 0.357177734375}, {"start": 786.4, "end": 786.42, "word": " will", "probability": 0.75537109375}, {"start": 786.42, "end": 786.66, "word": " add", "probability": 0.84130859375}, {"start": 786.66, "end": 786.98, "word": " shape,", "probability": 0.67626953125}, {"start": 787.1, "end": 787.28, "word": " it", "probability": 0.60986328125}, {"start": 787.28, "end": 787.38, "word": " will", "probability": 0.8544921875}, {"start": 787.38, "end": 787.66, "word": " add", "probability": 0.85546875}, {"start": 787.66, "end": 788.78, "word": " a", "probability": 0.642578125}, {"start": 788.78, "end": 789.08, "word": " circle", "probability": 0.5400390625}, {"start": 789.08, "end": 789.42, "word": " shape", "probability": 0.5927734375}, {"start": 789.42, "end": 789.54, "word": " in", "probability": 0.3115234375}, {"start": 789.54, "end": 789.6, "word": " a", "probability": 0.4326171875}, {"start": 789.6, "end": 789.78, "word": " circle", "probability": 0.4853515625}, {"start": 789.78, "end": 791.54, "word": " Ok,", "probability": 0.3271484375}, {"start": 791.7, "end": 791.86, "word": " where", "probability": 0.85546875}, {"start": 791.86, "end": 791.96, "word": " is", "probability": 0.82568359375}, {"start": 791.96, "end": 792.0, "word": " the", "probability": 0.87060546875}, {"start": 792.0, "end": 792.22, "word": " problem?", "probability": 0.8359375}, {"start": 792.76, "end": 793.06, "word": " Pay", "probability": 0.353759765625}, {"start": 793.06, "end": 793.2, "word": " attention", "probability": 0.93017578125}, {"start": 793.2, "end": 793.34, "word": " with", "probability": 0.77294921875}, {"start": 793.34, "end": 793.58, "word": " me", "probability": 0.96337890625}, {"start": 793.58, "end": 794.72, "word": " Because", "probability": 0.70361328125}, {"start": 794.72, "end": 795.08, "word": " I", "probability": 0.9091796875}, {"start": 795.08, "end": 795.38, "word": " made", "probability": 0.6875}, {"start": 795.38, "end": 795.54, "word": " a", "probability": 0.59765625}, {"start": 795.54, "end": 795.88, "word": " circle,", "probability": 0.96728515625}, {"start": 796.12, "end": 796.34, "word": " I", "probability": 0.27099609375}, {"start": 796.34, "end": 796.58, "word": " want", "probability": 0.6640625}, {"start": 796.58, "end": 796.72, "word": " to", "probability": 0.9658203125}, {"start": 796.72, "end": 797.06, "word": " add", "probability": 0.88330078125}, {"start": 797.06, "end": 797.6, "word": " a", "probability": 0.54443359375}, {"start": 797.6, "end": 798.06, "word": " rectangle", "probability": 0.93994140625}, {"start": 798.06, "end": 798.34, "word": " with", "probability": 0.8583984375}, {"start": 798.34, "end": 798.7, "word": " border", "probability": 0.6259765625}, {"start": 798.7, "end": 799.66, "word": " The", "probability": 0.2435302734375}, {"start": 799.66, "end": 800.0, "word": " rectangle", "probability": 0.837890625}, {"start": 800.0, "end": 800.22, "word": " needs", "probability": 0.304443359375}, {"start": 800.22, "end": 800.22, "word": " to", "probability": 0.457275390625}, {"start": 800.22, "end": 800.5, "word": " have", "probability": 0.6611328125}, {"start": 800.5, "end": 800.56, "word": " a", "probability": 0.65380859375}, {"start": 800.56, "end": 800.8, "word": " border", "probability": 0.83935546875}, {"start": 800.8, "end": 801.66, "word": " What", "probability": 0.52197265625}, {"start": 801.66, "end": 801.76, "word": " will", "probability": 0.255126953125}, {"start": 801.76, "end": 802.0, "word": " we", "probability": 0.46630859375}, {"start": 802.0, "end": 802.16, "word": " do?", "probability": 0.80908203125}], "temperature": 1.0}, {"id": 32, "seek": 83137, "start": 803.21, "end": 831.37, "text": " You will create a new class with the name rectangle with border and extend the rectangle and create an override for the new attribute list which is border width and color and create an override for the draw and describe Now suppose I have not one shape or two shapes or three shapes I have ten shapes I have circle and rectangle", "tokens": [509, 486, 1884, 257, 777, 1508, 365, 264, 1315, 21930, 365, 7838, 293, 10101, 264, 21930, 293, 1884, 364, 42321, 337, 264, 777, 19667, 1329, 597, 307, 7838, 11402, 293, 2017, 293, 1884, 364, 42321, 337, 264, 2642, 293, 6786, 823, 7297, 286, 362, 406, 472, 3909, 420, 732, 10854, 420, 1045, 10854, 286, 362, 2064, 10854, 286, 362, 6329, 293, 21930], "avg_logprob": -0.5833333049501691, "compression_ratio": 1.9127906976744187, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 803.21, "end": 803.45, "word": " You", "probability": 0.2083740234375}, {"start": 803.45, "end": 803.51, "word": " will", "probability": 0.56982421875}, {"start": 803.51, "end": 803.95, "word": " create", "probability": 0.5283203125}, {"start": 803.95, "end": 804.09, "word": " a", "probability": 0.91015625}, {"start": 804.09, "end": 804.09, "word": " new", "probability": 0.8525390625}, {"start": 804.09, "end": 804.41, "word": " class", "probability": 0.9287109375}, {"start": 804.41, "end": 804.87, "word": " with", "probability": 0.178955078125}, {"start": 804.87, "end": 805.03, "word": " the", "probability": 0.309326171875}, {"start": 805.03, "end": 805.03, "word": " name", "probability": 0.86474609375}, {"start": 805.03, "end": 805.89, "word": " rectangle", "probability": 0.490966796875}, {"start": 805.89, "end": 806.17, "word": " with", "probability": 0.7099609375}, {"start": 806.17, "end": 806.57, "word": " border", "probability": 0.765625}, {"start": 806.57, "end": 806.83, "word": " and", "probability": 0.3935546875}, {"start": 806.83, "end": 806.97, "word": " extend", "probability": 0.6142578125}, {"start": 806.97, "end": 807.21, "word": " the", "probability": 0.423828125}, {"start": 807.21, "end": 807.65, "word": " rectangle", "probability": 0.93017578125}, {"start": 807.65, "end": 807.81, "word": " and", "probability": 0.364990234375}, {"start": 807.81, "end": 807.99, "word": " create", "probability": 0.12176513671875}, {"start": 807.99, "end": 808.17, "word": " an", "probability": 0.38916015625}, {"start": 808.17, "end": 808.53, "word": " override", "probability": 0.93603515625}, {"start": 808.53, "end": 808.71, "word": " for", "probability": 0.456298828125}, {"start": 808.71, "end": 808.81, "word": " the", "probability": 0.430419921875}, {"start": 808.81, "end": 808.95, "word": " new", "probability": 0.2098388671875}, {"start": 808.95, "end": 809.77, "word": " attribute", "probability": 0.64990234375}, {"start": 809.77, "end": 810.41, "word": " list", "probability": 0.5390625}, {"start": 810.41, "end": 811.25, "word": " which", "probability": 0.331298828125}, {"start": 811.25, "end": 811.39, "word": " is", "probability": 0.77685546875}, {"start": 811.39, "end": 812.77, "word": " border", "probability": 0.57470703125}, {"start": 812.77, "end": 813.07, "word": " width", "probability": 0.40234375}, {"start": 813.07, "end": 813.25, "word": " and", "probability": 0.74462890625}, {"start": 813.25, "end": 813.53, "word": " color", "probability": 0.8173828125}, {"start": 813.53, "end": 813.73, "word": " and", "probability": 0.70556640625}, {"start": 813.73, "end": 814.05, "word": " create", "probability": 0.52490234375}, {"start": 814.05, "end": 814.23, "word": " an", "probability": 0.74951171875}, {"start": 814.23, "end": 814.57, "word": " override", "probability": 0.94970703125}, {"start": 814.57, "end": 814.87, "word": " for", "probability": 0.87744140625}, {"start": 814.87, "end": 814.95, "word": " the", "probability": 0.39599609375}, {"start": 814.95, "end": 815.23, "word": " draw", "probability": 0.65380859375}, {"start": 815.23, "end": 815.81, "word": " and", "probability": 0.8828125}, {"start": 815.81, "end": 816.35, "word": " describe", "probability": 0.6328125}, {"start": 816.35, "end": 819.53, "word": " Now", "probability": 0.0772705078125}, {"start": 819.53, "end": 823.13, "word": " suppose", "probability": 0.189208984375}, {"start": 823.13, "end": 823.37, "word": " I", "probability": 0.56640625}, {"start": 823.37, "end": 823.63, "word": " have", "probability": 0.69287109375}, {"start": 823.63, "end": 823.77, "word": " not", "probability": 0.453369140625}, {"start": 823.77, "end": 824.15, "word": " one", "probability": 0.495361328125}, {"start": 824.15, "end": 824.15, "word": " shape", "probability": 0.80078125}, {"start": 824.15, "end": 824.37, "word": " or", "probability": 0.43505859375}, {"start": 824.37, "end": 824.87, "word": " two", "probability": 0.8935546875}, {"start": 824.87, "end": 824.89, "word": " shapes", "probability": 0.75732421875}, {"start": 824.89, "end": 825.23, "word": " or", "probability": 0.69580078125}, {"start": 825.23, "end": 825.55, "word": " three", "probability": 0.8828125}, {"start": 825.55, "end": 825.59, "word": " shapes", "probability": 0.65380859375}, {"start": 825.59, "end": 825.69, "word": " I", "probability": 0.2861328125}, {"start": 825.69, "end": 825.79, "word": " have", "probability": 0.9365234375}, {"start": 825.79, "end": 826.03, "word": " ten", "probability": 0.61572265625}, {"start": 826.03, "end": 826.39, "word": " shapes", "probability": 0.78466796875}, {"start": 826.39, "end": 827.95, "word": " I", "probability": 0.751953125}, {"start": 827.95, "end": 828.25, "word": " have", "probability": 0.9453125}, {"start": 828.25, "end": 828.99, "word": " circle", "probability": 0.61572265625}, {"start": 828.99, "end": 830.31, "word": " and", "probability": 0.80126953125}, {"start": 830.31, "end": 831.37, "word": " rectangle", "probability": 0.8828125}], "temperature": 1.0}, {"id": 33, "seek": 84671, "start": 835.73, "end": 846.71, "text": "and I have a triangle and another shape and a third and a fourth and a fifth and I want to add a border to these shapes what should I do now?", "tokens": [474, 286, 362, 257, 13369, 293, 1071, 3909, 293, 257, 2636, 293, 257, 6409, 293, 257, 9266, 293, 286, 528, 281, 909, 257, 7838, 281, 613, 10854, 437, 820, 286, 360, 586, 30], "avg_logprob": -0.4427849308532827, "compression_ratio": 1.4536082474226804, "no_speech_prob": 2.6226043701171875e-06, "words": [{"start": 835.73, "end": 835.97, "word": "and", "probability": 0.1466064453125}, {"start": 835.97, "end": 836.23, "word": " I", "probability": 0.53515625}, {"start": 836.23, "end": 836.25, "word": " have", "probability": 0.853515625}, {"start": 836.25, "end": 836.37, "word": " a", "probability": 0.580078125}, {"start": 836.37, "end": 836.89, "word": " triangle", "probability": 0.91259765625}, {"start": 836.89, "end": 839.21, "word": " and", "probability": 0.284423828125}, {"start": 839.21, "end": 839.29, "word": " another", "probability": 0.3037109375}, {"start": 839.29, "end": 839.65, "word": " shape", "probability": 0.8125}, {"start": 839.65, "end": 840.09, "word": " and", "probability": 0.595703125}, {"start": 840.09, "end": 840.15, "word": " a", "probability": 0.2283935546875}, {"start": 840.15, "end": 840.37, "word": " third", "probability": 0.8134765625}, {"start": 840.37, "end": 840.59, "word": " and", "probability": 0.546875}, {"start": 840.59, "end": 840.67, "word": " a", "probability": 0.61669921875}, {"start": 840.67, "end": 840.85, "word": " fourth", "probability": 0.92431640625}, {"start": 840.85, "end": 841.01, "word": " and", "probability": 0.919921875}, {"start": 841.01, "end": 841.07, "word": " a", "probability": 0.9140625}, {"start": 841.07, "end": 841.39, "word": " fifth", "probability": 0.9541015625}, {"start": 841.39, "end": 842.17, "word": " and", "probability": 0.46923828125}, {"start": 842.17, "end": 842.29, "word": " I", "probability": 0.93603515625}, {"start": 842.29, "end": 842.41, "word": " want", "probability": 0.43994140625}, {"start": 842.41, "end": 842.47, "word": " to", "probability": 0.96875}, {"start": 842.47, "end": 842.63, "word": " add", "probability": 0.8447265625}, {"start": 842.63, "end": 842.75, "word": " a", "probability": 0.70751953125}, {"start": 842.75, "end": 843.07, "word": " border", "probability": 0.85205078125}, {"start": 843.07, "end": 843.73, "word": " to", "probability": 0.7392578125}, {"start": 843.73, "end": 843.85, "word": " these", "probability": 0.763671875}, {"start": 843.85, "end": 844.17, "word": " shapes", "probability": 0.857421875}, {"start": 844.17, "end": 845.31, "word": " what", "probability": 0.3046875}, {"start": 845.31, "end": 845.49, "word": " should", "probability": 0.72509765625}, {"start": 845.49, "end": 845.73, "word": " I", "probability": 0.97509765625}, {"start": 845.73, "end": 846.01, "word": " do", "probability": 0.96044921875}, {"start": 846.01, "end": 846.71, "word": " now?", "probability": 0.61572265625}], "temperature": 1.0}, {"id": 34, "seek": 87005, "start": 847.71, "end": 870.05, "text": "You have to add, we have agreed or we have learned always and we are happy from the first year of university that you have to add new things, go and make extend for the class and add them So you have to go and make extend for this one to make a class called circle with border CWB circle with border And this is extend to make a new class called rectangle with border And this is triangle with border", "tokens": [3223, 362, 281, 909, 11, 321, 362, 9166, 420, 321, 362, 3264, 1009, 293, 321, 366, 2055, 490, 264, 700, 1064, 295, 5454, 300, 291, 362, 281, 909, 777, 721, 11, 352, 293, 652, 10101, 337, 264, 1508, 293, 909, 552, 407, 291, 362, 281, 352, 293, 652, 10101, 337, 341, 472, 281, 652, 257, 1508, 1219, 6329, 365, 7838, 383, 54, 33, 6329, 365, 7838, 400, 341, 307, 10101, 281, 652, 257, 777, 1508, 1219, 21930, 365, 7838, 400, 341, 307, 13369, 365, 7838], "avg_logprob": -0.4414971016867216, "compression_ratio": 2.094240837696335, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 847.71, "end": 847.91, "word": "You", "probability": 0.167724609375}, {"start": 847.91, "end": 848.03, "word": " have", "probability": 0.157470703125}, {"start": 848.03, "end": 848.17, "word": " to", "probability": 0.96435546875}, {"start": 848.17, "end": 848.37, "word": " add,", "probability": 0.84521484375}, {"start": 848.49, "end": 848.63, "word": " we", "probability": 0.5703125}, {"start": 848.63, "end": 848.71, "word": " have", "probability": 0.256591796875}, {"start": 848.71, "end": 849.01, "word": " agreed", "probability": 0.56298828125}, {"start": 849.01, "end": 849.45, "word": " or", "probability": 0.4931640625}, {"start": 849.45, "end": 849.57, "word": " we", "probability": 0.62890625}, {"start": 849.57, "end": 849.57, "word": " have", "probability": 0.65087890625}, {"start": 849.57, "end": 849.87, "word": " learned", "probability": 0.30078125}, {"start": 849.87, "end": 850.23, "word": " always", "probability": 0.3447265625}, {"start": 850.23, "end": 850.33, "word": " and", "probability": 0.44140625}, {"start": 850.33, "end": 850.49, "word": " we", "probability": 0.8564453125}, {"start": 850.49, "end": 850.59, "word": " are", "probability": 0.79052734375}, {"start": 850.59, "end": 850.75, "word": " happy", "probability": 0.79150390625}, {"start": 850.75, "end": 851.01, "word": " from", "probability": 0.399169921875}, {"start": 851.01, "end": 851.35, "word": " the", "probability": 0.3828125}, {"start": 851.35, "end": 851.35, "word": " first", "probability": 0.71533203125}, {"start": 851.35, "end": 851.35, "word": " year", "probability": 0.86328125}, {"start": 851.35, "end": 851.53, "word": " of", "probability": 0.70361328125}, {"start": 851.53, "end": 851.71, "word": " university", "probability": 0.54833984375}, {"start": 851.71, "end": 851.93, "word": " that", "probability": 0.322021484375}, {"start": 851.93, "end": 852.05, "word": " you", "probability": 0.9189453125}, {"start": 852.05, "end": 852.17, "word": " have", "probability": 0.7958984375}, {"start": 852.17, "end": 852.31, "word": " to", "probability": 0.9638671875}, {"start": 852.31, "end": 852.59, "word": " add", "probability": 0.90966796875}, {"start": 852.59, "end": 852.69, "word": " new", "probability": 0.810546875}, {"start": 852.69, "end": 853.27, "word": " things,", "probability": 0.79833984375}, {"start": 853.43, "end": 853.57, "word": " go", "probability": 0.58056640625}, {"start": 853.57, "end": 853.65, "word": " and", "probability": 0.439208984375}, {"start": 853.65, "end": 853.77, "word": " make", "probability": 0.3359375}, {"start": 853.77, "end": 854.13, "word": " extend", "probability": 0.66015625}, {"start": 854.13, "end": 854.27, "word": " for", "probability": 0.422607421875}, {"start": 854.27, "end": 854.37, "word": " the", "probability": 0.681640625}, {"start": 854.37, "end": 854.63, "word": " class", "probability": 0.94384765625}, {"start": 854.63, "end": 854.75, "word": " and", "probability": 0.89501953125}, {"start": 854.75, "end": 854.93, "word": " add", "probability": 0.88037109375}, {"start": 854.93, "end": 855.15, "word": " them", "probability": 0.46337890625}, {"start": 855.15, "end": 855.69, "word": " So", "probability": 0.368408203125}, {"start": 855.69, "end": 855.85, "word": " you", "probability": 0.81396484375}, {"start": 855.85, "end": 855.89, "word": " have", "probability": 0.8291015625}, {"start": 855.89, "end": 856.03, "word": " to", "probability": 0.96533203125}, {"start": 856.03, "end": 856.17, "word": " go", "probability": 0.4951171875}, {"start": 856.17, "end": 856.29, "word": " and", "probability": 0.77587890625}, {"start": 856.29, "end": 856.49, "word": " make", "probability": 0.80322265625}, {"start": 856.49, "end": 856.97, "word": " extend", "probability": 0.8876953125}, {"start": 856.97, "end": 857.15, "word": " for", "probability": 0.8056640625}, {"start": 857.15, "end": 857.37, "word": " this", "probability": 0.841796875}, {"start": 857.37, "end": 857.45, "word": " one", "probability": 0.412353515625}, {"start": 857.45, "end": 857.67, "word": " to", "probability": 0.67333984375}, {"start": 857.67, "end": 857.99, "word": " make", "probability": 0.90576171875}, {"start": 857.99, "end": 858.15, "word": " a", "probability": 0.75}, {"start": 858.15, "end": 858.43, "word": " class", "probability": 0.93359375}, {"start": 858.43, "end": 858.75, "word": " called", "probability": 0.50732421875}, {"start": 858.75, "end": 859.23, "word": " circle", "probability": 0.68603515625}, {"start": 859.23, "end": 859.45, "word": " with", "probability": 0.89892578125}, {"start": 859.45, "end": 859.91, "word": " border", "probability": 0.796875}, {"start": 859.91, "end": 861.59, "word": " CWB", "probability": 0.5652262369791666}, {"start": 861.59, "end": 862.03, "word": " circle", "probability": 0.46337890625}, {"start": 862.03, "end": 862.25, "word": " with", "probability": 0.9189453125}, {"start": 862.25, "end": 862.61, "word": " border", "probability": 0.8037109375}, {"start": 862.61, "end": 863.27, "word": " And", "probability": 0.5283203125}, {"start": 863.27, "end": 863.47, "word": " this", "probability": 0.91748046875}, {"start": 863.47, "end": 863.51, "word": " is", "probability": 0.39990234375}, {"start": 863.51, "end": 863.93, "word": " extend", "probability": 0.85546875}, {"start": 863.93, "end": 864.17, "word": " to", "probability": 0.8974609375}, {"start": 864.17, "end": 864.55, "word": " make", "probability": 0.91455078125}, {"start": 864.55, "end": 864.83, "word": " a", "probability": 0.9423828125}, {"start": 864.83, "end": 864.83, "word": " new", "probability": 0.8984375}, {"start": 864.83, "end": 865.49, "word": " class", "probability": 0.95703125}, {"start": 865.49, "end": 865.85, "word": " called", "probability": 0.70068359375}, {"start": 865.85, "end": 866.31, "word": " rectangle", "probability": 0.90283203125}, {"start": 866.31, "end": 866.59, "word": " with", "probability": 0.91259765625}, {"start": 866.59, "end": 867.01, "word": " border", "probability": 0.8095703125}, {"start": 867.01, "end": 868.25, "word": " And", "probability": 0.68994140625}, {"start": 868.25, "end": 868.55, "word": " this", "probability": 0.93408203125}, {"start": 868.55, "end": 868.87, "word": " is", "probability": 0.84521484375}, {"start": 868.87, "end": 869.35, "word": " triangle", "probability": 0.86083984375}, {"start": 869.35, "end": 869.67, "word": " with", "probability": 0.9150390625}, {"start": 869.67, "end": 870.05, "word": " border", "probability": 0.818359375}], "temperature": 1.0}, {"id": 35, "seek": 89399, "start": 871.85, "end": 893.99, "text": "So if you have 10 shapes, how many subclasses do you need to make? 10 subclasses. Ok, I told you that we need to make solid shapes. What do I mean by solid shapes? It means that now the circle I'm drawing is separated. We need to make a solid circle. Ok? This is a new feature. It needs to fill the existing circle. So we need to modify the main circle to make it.", "tokens": [6455, 498, 291, 362, 1266, 10854, 11, 577, 867, 1422, 11665, 279, 360, 291, 643, 281, 652, 30, 1266, 1422, 11665, 279, 13, 3477, 11, 286, 1907, 291, 300, 321, 643, 281, 652, 5100, 10854, 13, 708, 360, 286, 914, 538, 5100, 10854, 30, 467, 1355, 300, 586, 264, 6329, 286, 478, 6316, 307, 12005, 13, 492, 643, 281, 652, 257, 5100, 6329, 13, 3477, 30, 639, 307, 257, 777, 4111, 13, 467, 2203, 281, 2836, 264, 6741, 6329, 13, 407, 321, 643, 281, 16927, 264, 2135, 6329, 281, 652, 309, 13], "avg_logprob": -0.535954285693425, "compression_ratio": 1.766990291262136, "no_speech_prob": 1.5437602996826172e-05, "words": [{"start": 871.8499999999999, "end": 872.29, "word": "So", "probability": 0.1973876953125}, {"start": 872.29, "end": 872.45, "word": " if", "probability": 0.45361328125}, {"start": 872.45, "end": 872.67, "word": " you", "probability": 0.91455078125}, {"start": 872.67, "end": 872.73, "word": " have", "probability": 0.904296875}, {"start": 872.73, "end": 873.01, "word": " 10", "probability": 0.7216796875}, {"start": 873.01, "end": 873.29, "word": " shapes,", "probability": 0.5791015625}, {"start": 873.81, "end": 874.41, "word": " how", "probability": 0.17822265625}, {"start": 874.41, "end": 874.71, "word": " many", "probability": 0.87939453125}, {"start": 874.71, "end": 875.43, "word": " subclasses", "probability": 0.7744140625}, {"start": 875.43, "end": 875.43, "word": " do", "probability": 0.462890625}, {"start": 875.43, "end": 875.43, "word": " you", "probability": 0.939453125}, {"start": 875.43, "end": 875.43, "word": " need", "probability": 0.484130859375}, {"start": 875.43, "end": 875.51, "word": " to", "probability": 0.6513671875}, {"start": 875.51, "end": 875.51, "word": " make?", "probability": 0.51416015625}, {"start": 875.57, "end": 875.85, "word": " 10", "probability": 0.60498046875}, {"start": 875.85, "end": 877.45, "word": " subclasses.", "probability": 0.8564453125}, {"start": 877.45, "end": 877.69, "word": " Ok,", "probability": 0.2159423828125}, {"start": 877.99, "end": 878.61, "word": " I", "probability": 0.491455078125}, {"start": 878.61, "end": 878.85, "word": " told", "probability": 0.62255859375}, {"start": 878.85, "end": 879.07, "word": " you", "probability": 0.96044921875}, {"start": 879.07, "end": 879.17, "word": " that", "probability": 0.203857421875}, {"start": 879.17, "end": 879.45, "word": " we", "probability": 0.61279296875}, {"start": 879.45, "end": 879.65, "word": " need", "probability": 0.428955078125}, {"start": 879.65, "end": 879.65, "word": " to", "probability": 0.849609375}, {"start": 879.65, "end": 879.93, "word": " make", "probability": 0.90625}, {"start": 879.93, "end": 880.55, "word": " solid", "probability": 0.0780029296875}, {"start": 880.55, "end": 880.81, "word": " shapes.", "probability": 0.78759765625}, {"start": 881.51, "end": 881.95, "word": " What", "probability": 0.1715087890625}, {"start": 881.95, "end": 882.07, "word": " do", "probability": 0.404052734375}, {"start": 882.07, "end": 882.07, "word": " I", "probability": 0.5185546875}, {"start": 882.07, "end": 882.21, "word": " mean", "probability": 0.97265625}, {"start": 882.21, "end": 882.21, "word": " by", "probability": 0.900390625}, {"start": 882.21, "end": 882.29, "word": " solid", "probability": 0.88134765625}, {"start": 882.29, "end": 882.47, "word": " shapes?", "probability": 0.5}, {"start": 882.55, "end": 882.63, "word": " It", "probability": 0.11187744140625}, {"start": 882.63, "end": 882.63, "word": " means", "probability": 0.77783203125}, {"start": 882.63, "end": 882.71, "word": " that", "probability": 0.611328125}, {"start": 882.71, "end": 882.89, "word": " now", "probability": 0.16650390625}, {"start": 882.89, "end": 883.03, "word": " the", "probability": 0.63671875}, {"start": 883.03, "end": 883.23, "word": " circle", "probability": 0.86181640625}, {"start": 883.23, "end": 883.43, "word": " I'm", "probability": 0.3046875}, {"start": 883.43, "end": 883.53, "word": " drawing", "probability": 0.83837890625}, {"start": 883.53, "end": 883.69, "word": " is", "probability": 0.83203125}, {"start": 883.69, "end": 884.07, "word": " separated.", "probability": 0.2318115234375}, {"start": 884.61, "end": 884.77, "word": " We", "probability": 0.82666015625}, {"start": 884.77, "end": 884.91, "word": " need", "probability": 0.57763671875}, {"start": 884.91, "end": 885.05, "word": " to", "probability": 0.96240234375}, {"start": 885.05, "end": 885.21, "word": " make", "probability": 0.833984375}, {"start": 885.21, "end": 885.33, "word": " a", "probability": 0.73681640625}, {"start": 885.33, "end": 885.53, "word": " solid", "probability": 0.95263671875}, {"start": 885.53, "end": 885.97, "word": " circle.", "probability": 0.9736328125}, {"start": 886.97, "end": 887.07, "word": " Ok?", "probability": 0.607421875}, {"start": 887.19, "end": 887.33, "word": " This", "probability": 0.3193359375}, {"start": 887.33, "end": 887.43, "word": " is", "probability": 0.8154296875}, {"start": 887.43, "end": 887.53, "word": " a", "probability": 0.80517578125}, {"start": 887.53, "end": 887.53, "word": " new", "probability": 0.88916015625}, {"start": 887.53, "end": 887.75, "word": " feature.", "probability": 0.912109375}, {"start": 888.43, "end": 888.87, "word": " It", "probability": 0.46728515625}, {"start": 888.87, "end": 889.03, "word": " needs", "probability": 0.321044921875}, {"start": 889.03, "end": 889.13, "word": " to", "probability": 0.9677734375}, {"start": 889.13, "end": 889.37, "word": " fill", "probability": 0.80029296875}, {"start": 889.37, "end": 890.15, "word": " the", "probability": 0.6044921875}, {"start": 890.15, "end": 890.81, "word": " existing", "probability": 0.8466796875}, {"start": 890.81, "end": 890.81, "word": " circle.", "probability": 0.93408203125}, {"start": 891.31, "end": 891.69, "word": " So", "probability": 0.892578125}, {"start": 891.69, "end": 891.87, "word": " we", "probability": 0.79296875}, {"start": 891.87, "end": 891.89, "word": " need", "probability": 0.76708984375}, {"start": 891.89, "end": 891.99, "word": " to", "probability": 0.96923828125}, {"start": 891.99, "end": 892.21, "word": " modify", "probability": 0.2705078125}, {"start": 892.21, "end": 892.53, "word": " the", "probability": 0.876953125}, {"start": 892.53, "end": 892.53, "word": " main", "probability": 0.26806640625}, {"start": 892.53, "end": 893.29, "word": " circle", "probability": 0.96044921875}, {"start": 893.29, "end": 893.51, "word": " to", "probability": 0.6220703125}, {"start": 893.51, "end": 893.79, "word": " make", "probability": 0.75634765625}, {"start": 893.79, "end": 893.99, "word": " it.", "probability": 0.9013671875}], "temperature": 1.0}, {"id": 36, "seek": 92441, "start": 895.25, "end": 924.41, "text": "Where do we go to edit? It has nothing to do with this border So you have to make a new class called solid circle, C Extend mean circle And you have to make a full rectangle You have to make what? Solid rectangle Extend mean rectangle So in order to add a solid feature to the shapes I have I have to make them all extend I have ten shapes and I have ten classes", "tokens": [14436, 360, 321, 352, 281, 8129, 30, 467, 575, 1825, 281, 360, 365, 341, 7838, 407, 291, 362, 281, 652, 257, 777, 1508, 1219, 5100, 6329, 11, 383, 9881, 521, 914, 6329, 400, 291, 362, 281, 652, 257, 1577, 21930, 509, 362, 281, 652, 437, 30, 26664, 21930, 9881, 521, 914, 21930, 407, 294, 1668, 281, 909, 257, 5100, 4111, 281, 264, 10854, 286, 362, 286, 362, 281, 652, 552, 439, 10101, 286, 362, 2064, 10854, 293, 286, 362, 2064, 5359], "avg_logprob": -0.4618902482637545, "compression_ratio": 1.865979381443299, "no_speech_prob": 6.318092346191406e-06, "words": [{"start": 895.25, "end": 895.51, "word": "Where", "probability": 0.1363525390625}, {"start": 895.51, "end": 895.67, "word": " do", "probability": 0.3212890625}, {"start": 895.67, "end": 895.79, "word": " we", "probability": 0.82080078125}, {"start": 895.79, "end": 895.79, "word": " go", "probability": 0.289794921875}, {"start": 895.79, "end": 895.95, "word": " to", "probability": 0.548828125}, {"start": 895.95, "end": 896.17, "word": " edit?", "probability": 0.377197265625}, {"start": 896.39, "end": 896.51, "word": " It", "probability": 0.5859375}, {"start": 896.51, "end": 896.61, "word": " has", "probability": 0.75634765625}, {"start": 896.61, "end": 896.77, "word": " nothing", "probability": 0.8330078125}, {"start": 896.77, "end": 896.93, "word": " to", "probability": 0.966796875}, {"start": 896.93, "end": 896.99, "word": " do", "probability": 0.96484375}, {"start": 896.99, "end": 897.11, "word": " with", "probability": 0.89404296875}, {"start": 897.11, "end": 897.21, "word": " this", "probability": 0.337890625}, {"start": 897.21, "end": 897.51, "word": " border", "probability": 0.80029296875}, {"start": 897.51, "end": 898.21, "word": " So", "probability": 0.4736328125}, {"start": 898.21, "end": 898.45, "word": " you", "probability": 0.7900390625}, {"start": 898.45, "end": 898.51, "word": " have", "probability": 0.400634765625}, {"start": 898.51, "end": 898.75, "word": " to", "probability": 0.96875}, {"start": 898.75, "end": 899.07, "word": " make", "probability": 0.437255859375}, {"start": 899.07, "end": 899.21, "word": " a", "probability": 0.95654296875}, {"start": 899.21, "end": 899.21, "word": " new", "probability": 0.90673828125}, {"start": 899.21, "end": 899.55, "word": " class", "probability": 0.939453125}, {"start": 899.55, "end": 901.05, "word": " called", "probability": 0.28173828125}, {"start": 901.05, "end": 901.45, "word": " solid", "probability": 0.475830078125}, {"start": 901.45, "end": 902.49, "word": " circle,", "probability": 0.437744140625}, {"start": 902.63, "end": 902.95, "word": " C", "probability": 0.33056640625}, {"start": 902.95, "end": 904.31, "word": " Extend", "probability": 0.822021484375}, {"start": 904.31, "end": 904.63, "word": " mean", "probability": 0.4453125}, {"start": 904.63, "end": 905.83, "word": " circle", "probability": 0.6689453125}, {"start": 905.83, "end": 906.41, "word": " And", "probability": 0.4560546875}, {"start": 906.41, "end": 906.53, "word": " you", "probability": 0.91064453125}, {"start": 906.53, "end": 906.65, "word": " have", "probability": 0.75439453125}, {"start": 906.65, "end": 906.73, "word": " to", "probability": 0.96875}, {"start": 906.73, "end": 907.07, "word": " make", "probability": 0.88525390625}, {"start": 907.07, "end": 907.75, "word": " a", "probability": 0.6943359375}, {"start": 907.75, "end": 908.73, "word": " full", "probability": 0.38525390625}, {"start": 908.73, "end": 908.85, "word": " rectangle", "probability": 0.96337890625}, {"start": 908.85, "end": 909.49, "word": " You", "probability": 0.216064453125}, {"start": 909.49, "end": 909.69, "word": " have", "probability": 0.87255859375}, {"start": 909.69, "end": 909.81, "word": " to", "probability": 0.96923828125}, {"start": 909.81, "end": 910.01, "word": " make", "probability": 0.876953125}, {"start": 910.01, "end": 910.27, "word": " what?", "probability": 0.40966796875}, {"start": 910.35, "end": 910.77, "word": " Solid", "probability": 0.791015625}, {"start": 910.77, "end": 912.25, "word": " rectangle", "probability": 0.89111328125}, {"start": 912.25, "end": 913.15, "word": " Extend", "probability": 0.6263427734375}, {"start": 913.15, "end": 913.43, "word": " mean", "probability": 0.8828125}, {"start": 913.43, "end": 914.53, "word": " rectangle", "probability": 0.955078125}, {"start": 914.53, "end": 915.01, "word": " So", "probability": 0.460205078125}, {"start": 915.01, "end": 915.27, "word": " in", "probability": 0.350341796875}, {"start": 915.27, "end": 915.27, "word": " order", "probability": 0.91162109375}, {"start": 915.27, "end": 915.31, "word": " to", "probability": 0.96923828125}, {"start": 915.31, "end": 915.73, "word": " add", "probability": 0.91015625}, {"start": 915.73, "end": 916.13, "word": " a", "probability": 0.56591796875}, {"start": 916.13, "end": 916.47, "word": " solid", "probability": 0.92822265625}, {"start": 916.47, "end": 917.23, "word": " feature", "probability": 0.947265625}, {"start": 917.23, "end": 917.53, "word": " to", "probability": 0.84375}, {"start": 917.53, "end": 917.65, "word": " the", "probability": 0.430419921875}, {"start": 917.65, "end": 917.99, "word": " shapes", "probability": 0.68994140625}, {"start": 917.99, "end": 918.17, "word": " I", "probability": 0.58544921875}, {"start": 918.17, "end": 918.43, "word": " have", "probability": 0.91845703125}, {"start": 918.43, "end": 919.09, "word": " I", "probability": 0.63623046875}, {"start": 919.09, "end": 919.21, "word": " have", "probability": 0.64990234375}, {"start": 919.21, "end": 919.39, "word": " to", "probability": 0.95947265625}, {"start": 919.39, "end": 919.89, "word": " make", "probability": 0.5888671875}, {"start": 919.89, "end": 920.09, "word": " them", "probability": 0.7470703125}, {"start": 920.09, "end": 920.23, "word": " all", "probability": 0.8671875}, {"start": 920.23, "end": 920.81, "word": " extend", "probability": 0.72265625}, {"start": 920.81, "end": 921.25, "word": " I", "probability": 0.701171875}, {"start": 921.25, "end": 921.45, "word": " have", "probability": 0.921875}, {"start": 921.45, "end": 921.69, "word": " ten", "probability": 0.48876953125}, {"start": 921.69, "end": 922.13, "word": " shapes", "probability": 0.78857421875}, {"start": 922.13, "end": 922.37, "word": " and", "probability": 0.315185546875}, {"start": 922.37, "end": 922.39, "word": " I", "probability": 0.410888671875}, {"start": 922.39, "end": 922.59, "word": " have", "probability": 0.69970703125}, {"start": 922.59, "end": 923.11, "word": " ten", "probability": 0.54345703125}, {"start": 923.11, "end": 924.41, "word": " classes", "probability": 0.732421875}], "temperature": 1.0}, {"id": 37, "seek": 95569, "start": 926.55, "end": 955.69, "text": " So in order to add two features to a class, I need to add 20 classes to the top 10. Is this a good scenario or not? So every time I want to add a feature to my 10 classes, I need to create 10 subclasses. And this is bad. So will I have 10 subclasses? Have you ever seen someone create a GUI library? For example, JavaFX.", "tokens": [407, 294, 1668, 281, 909, 732, 4122, 281, 257, 1508, 11, 286, 643, 281, 909, 945, 5359, 281, 264, 1192, 1266, 13, 1119, 341, 257, 665, 9005, 420, 406, 30, 407, 633, 565, 286, 528, 281, 909, 257, 4111, 281, 452, 1266, 5359, 11, 286, 643, 281, 1884, 1266, 1422, 11665, 279, 13, 400, 341, 307, 1578, 13, 407, 486, 286, 362, 1266, 1422, 11665, 279, 30, 3560, 291, 1562, 1612, 1580, 1884, 257, 17917, 40, 6405, 30, 1171, 1365, 11, 10745, 36092, 13], "avg_logprob": -0.5544117703157313, "compression_ratio": 1.6130653266331658, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 926.55, "end": 926.83, "word": " So", "probability": 0.1361083984375}, {"start": 926.83, "end": 927.19, "word": " in", "probability": 0.22705078125}, {"start": 927.19, "end": 927.25, "word": " order", "probability": 0.9140625}, {"start": 927.25, "end": 927.41, "word": " to", "probability": 0.94677734375}, {"start": 927.41, "end": 927.61, "word": " add", "probability": 0.85986328125}, {"start": 927.61, "end": 927.89, "word": " two", "probability": 0.61279296875}, {"start": 927.89, "end": 928.41, "word": " features", "probability": 0.5810546875}, {"start": 928.41, "end": 928.59, "word": " to", "probability": 0.833984375}, {"start": 928.59, "end": 928.71, "word": " a", "probability": 0.4072265625}, {"start": 928.71, "end": 929.07, "word": " class,", "probability": 0.9208984375}, {"start": 929.27, "end": 929.35, "word": " I", "probability": 0.86474609375}, {"start": 929.35, "end": 929.51, "word": " need", "probability": 0.343017578125}, {"start": 929.51, "end": 930.23, "word": " to", "probability": 0.9345703125}, {"start": 930.23, "end": 931.13, "word": " add", "probability": 0.6015625}, {"start": 931.13, "end": 932.03, "word": " 20", "probability": 0.335693359375}, {"start": 932.03, "end": 932.49, "word": " classes", "probability": 0.423095703125}, {"start": 932.49, "end": 933.17, "word": " to", "probability": 0.47509765625}, {"start": 933.17, "end": 934.27, "word": " the", "probability": 0.5244140625}, {"start": 934.27, "end": 934.45, "word": " top", "probability": 0.1661376953125}, {"start": 934.45, "end": 934.53, "word": " 10.", "probability": 0.54541015625}, {"start": 935.65, "end": 936.17, "word": " Is", "probability": 0.3916015625}, {"start": 936.17, "end": 936.23, "word": " this", "probability": 0.77880859375}, {"start": 936.23, "end": 936.77, "word": " a", "probability": 0.59228515625}, {"start": 936.77, "end": 938.65, "word": " good", "probability": 0.89599609375}, {"start": 938.65, "end": 938.75, "word": " scenario", "probability": 0.6123046875}, {"start": 938.75, "end": 938.89, "word": " or", "probability": 0.671875}, {"start": 938.89, "end": 938.95, "word": " not?", "probability": 0.703125}, {"start": 940.15, "end": 940.67, "word": " So", "probability": 0.271240234375}, {"start": 940.67, "end": 941.03, "word": " every", "probability": 0.2449951171875}, {"start": 941.03, "end": 941.11, "word": " time", "probability": 0.8505859375}, {"start": 941.11, "end": 941.19, "word": " I", "probability": 0.95361328125}, {"start": 941.19, "end": 941.37, "word": " want", "probability": 0.299072265625}, {"start": 941.37, "end": 941.37, "word": " to", "probability": 0.96533203125}, {"start": 941.37, "end": 941.51, "word": " add", "probability": 0.92822265625}, {"start": 941.51, "end": 941.65, "word": " a", "probability": 0.869140625}, {"start": 941.65, "end": 941.99, "word": " feature", "probability": 0.87451171875}, {"start": 941.99, "end": 942.33, "word": " to", "probability": 0.71484375}, {"start": 942.33, "end": 942.89, "word": " my", "probability": 0.3173828125}, {"start": 942.89, "end": 943.11, "word": " 10", "probability": 0.55126953125}, {"start": 943.11, "end": 943.37, "word": " classes,", "probability": 0.693359375}, {"start": 943.51, "end": 944.85, "word": " I", "probability": 0.70458984375}, {"start": 944.85, "end": 945.03, "word": " need", "probability": 0.42431640625}, {"start": 945.03, "end": 945.17, "word": " to", "probability": 0.931640625}, {"start": 945.17, "end": 945.37, "word": " create", "probability": 0.23193359375}, {"start": 945.37, "end": 945.67, "word": " 10", "probability": 0.822265625}, {"start": 945.67, "end": 947.07, "word": " subclasses.", "probability": 0.8263346354166666}, {"start": 947.07, "end": 947.21, "word": " And", "probability": 0.419677734375}, {"start": 947.21, "end": 947.37, "word": " this", "probability": 0.7333984375}, {"start": 947.37, "end": 947.39, "word": " is", "probability": 0.90673828125}, {"start": 947.39, "end": 947.69, "word": " bad.", "probability": 0.60107421875}, {"start": 949.61, "end": 949.79, "word": " So", "probability": 0.31689453125}, {"start": 949.79, "end": 949.97, "word": " will", "probability": 0.232177734375}, {"start": 949.97, "end": 950.17, "word": " I", "probability": 0.947265625}, {"start": 950.17, "end": 950.49, "word": " have", "probability": 0.8154296875}, {"start": 950.49, "end": 950.87, "word": " 10", "probability": 0.7529296875}, {"start": 950.87, "end": 950.95, "word": " subclasses?", "probability": 0.77294921875}, {"start": 951.03, "end": 951.35, "word": " Have", "probability": 0.15478515625}, {"start": 951.35, "end": 951.41, "word": " you", "probability": 0.8955078125}, {"start": 951.41, "end": 951.41, "word": " ever", "probability": 0.67138671875}, {"start": 951.41, "end": 951.41, "word": " seen", "probability": 0.383544921875}, {"start": 951.41, "end": 951.71, "word": " someone", "probability": 0.7109375}, {"start": 951.71, "end": 951.93, "word": " create", "probability": 0.48388671875}, {"start": 951.93, "end": 952.05, "word": " a", "probability": 0.94189453125}, {"start": 952.05, "end": 953.03, "word": " GUI", "probability": 0.930908203125}, {"start": 953.03, "end": 953.03, "word": " library?", "probability": 0.53369140625}, {"start": 953.97, "end": 954.49, "word": " For", "probability": 0.268798828125}, {"start": 954.49, "end": 954.91, "word": " example,", "probability": 0.93212890625}, {"start": 955.13, "end": 955.69, "word": " JavaFX.", "probability": 0.589599609375}], "temperature": 1.0}, {"id": 38, "seek": 98053, "start": 956.79, "end": 980.53, "text": "It has a lot of elements, right or not guys? All these elements want to add borders to them. For example, you have a text area, a combo box, a list drop list, and a tab pane, right or not? There are many types of UI components in Java, in X or any other library. Okay? And we want to make a border for all the UI components.", "tokens": [3522, 575, 257, 688, 295, 4959, 11, 558, 420, 406, 1074, 30, 1057, 613, 4959, 528, 281, 909, 16287, 281, 552, 13, 1171, 1365, 11, 291, 362, 257, 2487, 1859, 11, 257, 16859, 2424, 11, 257, 1329, 3270, 1329, 11, 293, 257, 4421, 32605, 11, 558, 420, 406, 30, 821, 366, 867, 3467, 295, 15682, 6677, 294, 10745, 11, 294, 1783, 420, 604, 661, 6405, 13, 1033, 30, 400, 321, 528, 281, 652, 257, 7838, 337, 439, 264, 15682, 6677, 13], "avg_logprob": -0.49733230398922434, "compression_ratio": 1.588235294117647, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 956.79, "end": 956.97, "word": "It", "probability": 0.23095703125}, {"start": 956.97, "end": 957.09, "word": " has", "probability": 0.6552734375}, {"start": 957.09, "end": 957.33, "word": " a", "probability": 0.1610107421875}, {"start": 957.33, "end": 957.87, "word": " lot", "probability": 0.9013671875}, {"start": 957.87, "end": 957.87, "word": " of", "probability": 0.96240234375}, {"start": 957.87, "end": 957.87, "word": " elements,", "probability": 0.802734375}, {"start": 958.11, "end": 958.89, "word": " right", "probability": 0.54638671875}, {"start": 958.89, "end": 959.11, "word": " or", "probability": 0.479248046875}, {"start": 959.11, "end": 959.11, "word": " not", "probability": 0.433349609375}, {"start": 959.11, "end": 959.39, "word": " guys?", "probability": 0.271240234375}, {"start": 960.01, "end": 960.15, "word": " All", "probability": 0.2281494140625}, {"start": 960.15, "end": 960.23, "word": " these", "probability": 0.55859375}, {"start": 960.23, "end": 960.59, "word": " elements", "probability": 0.9052734375}, {"start": 960.59, "end": 961.31, "word": " want", "probability": 0.105224609375}, {"start": 961.31, "end": 961.35, "word": " to", "probability": 0.80419921875}, {"start": 961.35, "end": 961.57, "word": " add", "probability": 0.65234375}, {"start": 961.57, "end": 962.01, "word": " borders", "probability": 0.468994140625}, {"start": 962.01, "end": 962.15, "word": " to", "probability": 0.5810546875}, {"start": 962.15, "end": 962.35, "word": " them.", "probability": 0.681640625}, {"start": 962.63, "end": 962.89, "word": " For", "probability": 0.513671875}, {"start": 962.89, "end": 962.91, "word": " example,", "probability": 0.92333984375}, {"start": 962.91, "end": 963.11, "word": " you", "probability": 0.51171875}, {"start": 963.11, "end": 963.23, "word": " have", "probability": 0.88623046875}, {"start": 963.23, "end": 963.37, "word": " a", "probability": 0.65966796875}, {"start": 963.37, "end": 963.55, "word": " text", "probability": 0.79248046875}, {"start": 963.55, "end": 963.93, "word": " area,", "probability": 0.79443359375}, {"start": 964.63, "end": 964.63, "word": " a", "probability": 0.2215576171875}, {"start": 964.63, "end": 964.95, "word": " combo", "probability": 0.58740234375}, {"start": 964.95, "end": 965.25, "word": " box,", "probability": 0.90625}, {"start": 965.51, "end": 965.65, "word": " a", "probability": 0.77294921875}, {"start": 965.65, "end": 965.81, "word": " list", "probability": 0.638671875}, {"start": 965.81, "end": 966.09, "word": " drop", "probability": 0.4755859375}, {"start": 966.09, "end": 966.41, "word": " list,", "probability": 0.814453125}, {"start": 966.89, "end": 966.89, "word": " and", "probability": 0.48193359375}, {"start": 966.89, "end": 967.15, "word": " a", "probability": 0.6591796875}, {"start": 967.15, "end": 967.43, "word": " tab", "probability": 0.80078125}, {"start": 967.43, "end": 967.77, "word": " pane,", "probability": 0.355224609375}, {"start": 968.37, "end": 968.49, "word": " right", "probability": 0.74755859375}, {"start": 968.49, "end": 968.67, "word": " or", "probability": 0.951171875}, {"start": 968.67, "end": 968.67, "word": " not?", "probability": 0.875}, {"start": 968.77, "end": 968.91, "word": " There", "probability": 0.2802734375}, {"start": 968.91, "end": 968.95, "word": " are", "probability": 0.91259765625}, {"start": 968.95, "end": 969.37, "word": " many", "probability": 0.7041015625}, {"start": 969.37, "end": 969.37, "word": " types", "probability": 0.6435546875}, {"start": 969.37, "end": 971.05, "word": " of", "probability": 0.97021484375}, {"start": 971.05, "end": 971.61, "word": " UI", "probability": 0.6044921875}, {"start": 971.61, "end": 972.29, "word": " components", "probability": 0.92333984375}, {"start": 972.29, "end": 972.89, "word": " in", "probability": 0.33935546875}, {"start": 972.89, "end": 973.27, "word": " Java,", "probability": 0.71484375}, {"start": 973.47, "end": 973.53, "word": " in", "probability": 0.488037109375}, {"start": 973.53, "end": 973.69, "word": " X", "probability": 0.7275390625}, {"start": 973.69, "end": 973.83, "word": " or", "probability": 0.5009765625}, {"start": 973.83, "end": 974.03, "word": " any", "probability": 0.796875}, {"start": 974.03, "end": 974.47, "word": " other", "probability": 0.86279296875}, {"start": 974.47, "end": 974.47, "word": " library.", "probability": 0.88525390625}, {"start": 975.41, "end": 975.63, "word": " Okay?", "probability": 0.33544921875}, {"start": 976.05, "end": 976.21, "word": " And", "probability": 0.62939453125}, {"start": 976.21, "end": 976.83, "word": " we", "probability": 0.81787109375}, {"start": 976.83, "end": 977.23, "word": " want", "probability": 0.677734375}, {"start": 977.23, "end": 977.59, "word": " to", "probability": 0.94970703125}, {"start": 977.59, "end": 977.79, "word": " make", "probability": 0.548828125}, {"start": 977.79, "end": 977.95, "word": " a", "probability": 0.6884765625}, {"start": 977.95, "end": 978.25, "word": " border", "probability": 0.8779296875}, {"start": 978.25, "end": 978.63, "word": " for", "probability": 0.55029296875}, {"start": 978.63, "end": 979.71, "word": " all", "probability": 0.8212890625}, {"start": 979.71, "end": 979.77, "word": " the", "probability": 0.42041015625}, {"start": 979.77, "end": 979.99, "word": " UI", "probability": 0.94921875}, {"start": 979.99, "end": 980.53, "word": " components.", "probability": 0.91943359375}], "temperature": 1.0}, {"id": 39, "seek": 100768, "start": 981.8, "end": 1007.68, "text": " For example, I have 30 UI components in Javafix, at least this one. Each one of them extends to add this feature. If I have 10 features, I have to add them to the 30 UI components. How many classes will I have? 10 features in 30 main ones. I have 300 classes. This is called the explosion of classes, like the population explosion.", "tokens": [1171, 1365, 11, 286, 362, 2217, 15682, 6677, 294, 508, 706, 2792, 970, 11, 412, 1935, 341, 472, 13, 6947, 472, 295, 552, 26448, 281, 909, 341, 4111, 13, 759, 286, 362, 1266, 4122, 11, 286, 362, 281, 909, 552, 281, 264, 2217, 15682, 6677, 13, 1012, 867, 5359, 486, 286, 362, 30, 1266, 4122, 294, 2217, 2135, 2306, 13, 286, 362, 6641, 5359, 13, 639, 307, 1219, 264, 15673, 295, 5359, 11, 411, 264, 4415, 15673, 13], "avg_logprob": -0.5043512477150446, "compression_ratio": 1.7202072538860103, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 981.8, "end": 982.12, "word": " For", "probability": 0.1290283203125}, {"start": 982.12, "end": 982.12, "word": " example,", "probability": 0.89697265625}, {"start": 982.12, "end": 982.12, "word": " I", "probability": 0.55078125}, {"start": 982.12, "end": 982.18, "word": " have", "probability": 0.9091796875}, {"start": 982.18, "end": 982.58, "word": " 30", "probability": 0.91552734375}, {"start": 982.58, "end": 982.88, "word": " UI", "probability": 0.86962890625}, {"start": 982.88, "end": 983.44, "word": " components", "probability": 0.83984375}, {"start": 983.44, "end": 983.86, "word": " in", "probability": 0.78369140625}, {"start": 983.86, "end": 984.48, "word": " Javafix,", "probability": 0.6580810546875}, {"start": 984.66, "end": 984.82, "word": " at", "probability": 0.353515625}, {"start": 984.82, "end": 985.18, "word": " least", "probability": 0.94580078125}, {"start": 985.18, "end": 985.46, "word": " this", "probability": 0.424560546875}, {"start": 985.46, "end": 985.66, "word": " one.", "probability": 0.37158203125}, {"start": 985.9, "end": 986.5, "word": " Each", "probability": 0.31982421875}, {"start": 986.5, "end": 986.8, "word": " one", "probability": 0.475830078125}, {"start": 986.8, "end": 986.94, "word": " of", "probability": 0.7490234375}, {"start": 986.94, "end": 987.2, "word": " them", "probability": 0.82861328125}, {"start": 987.2, "end": 987.88, "word": " extends", "probability": 0.261474609375}, {"start": 987.88, "end": 988.24, "word": " to", "probability": 0.310546875}, {"start": 988.24, "end": 988.48, "word": " add", "probability": 0.796875}, {"start": 988.48, "end": 988.64, "word": " this", "probability": 0.66064453125}, {"start": 988.64, "end": 988.96, "word": " feature.", "probability": 0.9169921875}, {"start": 989.92, "end": 990.12, "word": " If", "probability": 0.157470703125}, {"start": 990.12, "end": 990.4, "word": " I", "probability": 0.9658203125}, {"start": 990.4, "end": 990.42, "word": " have", "probability": 0.89990234375}, {"start": 990.42, "end": 990.68, "word": " 10", "probability": 0.744140625}, {"start": 990.68, "end": 991.32, "word": " features,", "probability": 0.67529296875}, {"start": 991.52, "end": 992.12, "word": " I", "probability": 0.493896484375}, {"start": 992.12, "end": 992.28, "word": " have", "probability": 0.1783447265625}, {"start": 992.28, "end": 992.28, "word": " to", "probability": 0.96337890625}, {"start": 992.28, "end": 992.46, "word": " add", "probability": 0.91259765625}, {"start": 992.46, "end": 992.6, "word": " them", "probability": 0.8076171875}, {"start": 992.6, "end": 992.72, "word": " to", "probability": 0.9169921875}, {"start": 992.72, "end": 992.82, "word": " the", "probability": 0.59521484375}, {"start": 992.82, "end": 993.14, "word": " 30", "probability": 0.87939453125}, {"start": 993.14, "end": 993.46, "word": " UI", "probability": 0.9326171875}, {"start": 993.46, "end": 994.04, "word": " components.", "probability": 0.9150390625}, {"start": 994.74, "end": 995.02, "word": " How", "probability": 0.71435546875}, {"start": 995.02, "end": 995.12, "word": " many", "probability": 0.87548828125}, {"start": 995.12, "end": 995.4, "word": " classes", "probability": 0.9130859375}, {"start": 995.4, "end": 995.54, "word": " will", "probability": 0.6416015625}, {"start": 995.54, "end": 995.9, "word": " I", "probability": 0.8642578125}, {"start": 995.9, "end": 995.9, "word": " have?", "probability": 0.460693359375}, {"start": 996.72, "end": 997.32, "word": " 10", "probability": 0.58056640625}, {"start": 997.32, "end": 998.72, "word": " features", "probability": 0.71142578125}, {"start": 998.72, "end": 999.42, "word": " in", "probability": 0.7197265625}, {"start": 999.42, "end": 999.96, "word": " 30", "probability": 0.76171875}, {"start": 999.96, "end": 1000.42, "word": " main", "probability": 0.2098388671875}, {"start": 1000.42, "end": 1000.86, "word": " ones.", "probability": 0.394775390625}, {"start": 1001.08, "end": 1001.38, "word": " I", "probability": 0.422607421875}, {"start": 1001.38, "end": 1001.56, "word": " have", "probability": 0.50634765625}, {"start": 1001.56, "end": 1001.96, "word": " 300", "probability": 0.90869140625}, {"start": 1001.96, "end": 1003.4, "word": " classes.", "probability": 0.89990234375}, {"start": 1003.64, "end": 1003.98, "word": " This", "probability": 0.77099609375}, {"start": 1003.98, "end": 1004.04, "word": " is", "probability": 0.85546875}, {"start": 1004.04, "end": 1004.38, "word": " called", "probability": 0.68505859375}, {"start": 1004.38, "end": 1004.5, "word": " the", "probability": 0.252685546875}, {"start": 1004.5, "end": 1004.86, "word": " explosion", "probability": 0.67626953125}, {"start": 1004.86, "end": 1005.24, "word": " of", "probability": 0.97314453125}, {"start": 1005.24, "end": 1005.66, "word": " classes,", "probability": 0.85791015625}, {"start": 1005.9, "end": 1006.8, "word": " like", "probability": 0.50439453125}, {"start": 1006.8, "end": 1006.92, "word": " the", "probability": 0.472900390625}, {"start": 1006.92, "end": 1007.56, "word": " population", "probability": 0.50634765625}, {"start": 1007.56, "end": 1007.68, "word": " explosion.", "probability": 0.80908203125}], "temperature": 1.0}, {"id": 40, "seek": 103441, "start": 1009.91, "end": 1034.41, "text": "This means that the subclassing that we were happy with was good, we did not say that it was invalid, but in some cases it can cause a lot of classes. Because I want to show you a way, I have 30 classes, I want to make them a border, I want to make a single class, that's it, I am a single feature", "tokens": [5723, 1355, 300, 264, 1422, 11665, 278, 300, 321, 645, 2055, 365, 390, 665, 11, 321, 630, 406, 584, 300, 309, 390, 34702, 11, 457, 294, 512, 3331, 309, 393, 3082, 257, 688, 295, 5359, 13, 1436, 286, 528, 281, 855, 291, 257, 636, 11, 286, 362, 2217, 5359, 11, 286, 528, 281, 652, 552, 257, 7838, 11, 286, 528, 281, 652, 257, 2167, 1508, 11, 300, 311, 309, 11, 286, 669, 257, 2167, 4111], "avg_logprob": -0.4753289352122106, "compression_ratio": 1.6318681318681318, "no_speech_prob": 4.172325134277344e-06, "words": [{"start": 1009.9100000000001, "end": 1010.47, "word": "This", "probability": 0.142333984375}, {"start": 1010.47, "end": 1010.81, "word": " means", "probability": 0.8603515625}, {"start": 1010.81, "end": 1011.19, "word": " that", "probability": 0.89111328125}, {"start": 1011.19, "end": 1011.47, "word": " the", "probability": 0.7158203125}, {"start": 1011.47, "end": 1012.25, "word": " subclassing", "probability": 0.8375651041666666}, {"start": 1012.25, "end": 1012.41, "word": " that", "probability": 0.4775390625}, {"start": 1012.41, "end": 1012.59, "word": " we", "probability": 0.892578125}, {"start": 1012.59, "end": 1012.81, "word": " were", "probability": 0.50537109375}, {"start": 1012.81, "end": 1013.15, "word": " happy", "probability": 0.5087890625}, {"start": 1013.15, "end": 1013.65, "word": " with", "probability": 0.69970703125}, {"start": 1013.65, "end": 1014.25, "word": " was", "probability": 0.289794921875}, {"start": 1014.25, "end": 1014.63, "word": " good,", "probability": 0.677734375}, {"start": 1014.83, "end": 1014.83, "word": " we", "probability": 0.6748046875}, {"start": 1014.83, "end": 1014.89, "word": " did", "probability": 0.31298828125}, {"start": 1014.89, "end": 1014.89, "word": " not", "probability": 0.93212890625}, {"start": 1014.89, "end": 1015.05, "word": " say", "probability": 0.75537109375}, {"start": 1015.05, "end": 1015.39, "word": " that", "probability": 0.54736328125}, {"start": 1015.39, "end": 1015.43, "word": " it", "probability": 0.919921875}, {"start": 1015.43, "end": 1015.45, "word": " was", "probability": 0.72021484375}, {"start": 1015.45, "end": 1015.71, "word": " invalid,", "probability": 0.20263671875}, {"start": 1015.99, "end": 1016.51, "word": " but", "probability": 0.429931640625}, {"start": 1016.51, "end": 1017.03, "word": " in", "probability": 0.681640625}, {"start": 1017.03, "end": 1017.33, "word": " some", "probability": 0.85009765625}, {"start": 1017.33, "end": 1017.97, "word": " cases", "probability": 0.8623046875}, {"start": 1017.97, "end": 1019.27, "word": " it", "probability": 0.59814453125}, {"start": 1019.27, "end": 1019.63, "word": " can", "probability": 0.54931640625}, {"start": 1019.63, "end": 1020.29, "word": " cause", "probability": 0.57763671875}, {"start": 1020.29, "end": 1020.51, "word": " a", "probability": 0.393798828125}, {"start": 1020.51, "end": 1020.97, "word": " lot", "probability": 0.650390625}, {"start": 1020.97, "end": 1021.47, "word": " of", "probability": 0.95263671875}, {"start": 1021.47, "end": 1021.97, "word": " classes.", "probability": 0.814453125}, {"start": 1023.11, "end": 1023.67, "word": " Because", "probability": 0.1793212890625}, {"start": 1023.67, "end": 1023.87, "word": " I", "probability": 0.92822265625}, {"start": 1023.87, "end": 1024.01, "word": " want", "probability": 0.7744140625}, {"start": 1024.01, "end": 1024.11, "word": " to", "probability": 0.970703125}, {"start": 1024.11, "end": 1024.25, "word": " show", "probability": 0.9296875}, {"start": 1024.25, "end": 1024.37, "word": " you", "probability": 0.9638671875}, {"start": 1024.37, "end": 1024.47, "word": " a", "probability": 0.87158203125}, {"start": 1024.47, "end": 1024.73, "word": " way,", "probability": 0.5087890625}, {"start": 1025.61, "end": 1025.99, "word": " I", "probability": 0.8740234375}, {"start": 1025.99, "end": 1026.17, "word": " have", "probability": 0.93896484375}, {"start": 1026.17, "end": 1026.57, "word": " 30", "probability": 0.67919921875}, {"start": 1026.57, "end": 1027.07, "word": " classes,", "probability": 0.87939453125}, {"start": 1027.67, "end": 1027.89, "word": " I", "probability": 0.890625}, {"start": 1027.89, "end": 1028.05, "word": " want", "probability": 0.71240234375}, {"start": 1028.05, "end": 1028.05, "word": " to", "probability": 0.9375}, {"start": 1028.05, "end": 1028.21, "word": " make", "probability": 0.82568359375}, {"start": 1028.21, "end": 1028.39, "word": " them", "probability": 0.7861328125}, {"start": 1028.39, "end": 1028.41, "word": " a", "probability": 0.380859375}, {"start": 1028.41, "end": 1028.65, "word": " border,", "probability": 0.86572265625}, {"start": 1029.15, "end": 1029.39, "word": " I", "probability": 0.77001953125}, {"start": 1029.39, "end": 1029.51, "word": " want", "probability": 0.67236328125}, {"start": 1029.51, "end": 1029.55, "word": " to", "probability": 0.9638671875}, {"start": 1029.55, "end": 1029.63, "word": " make", "probability": 0.9111328125}, {"start": 1029.63, "end": 1029.75, "word": " a", "probability": 0.361083984375}, {"start": 1029.75, "end": 1030.19, "word": " single", "probability": 0.57177734375}, {"start": 1030.19, "end": 1030.19, "word": " class,", "probability": 0.95703125}, {"start": 1031.57, "end": 1031.79, "word": " that's", "probability": 0.72802734375}, {"start": 1031.79, "end": 1031.91, "word": " it,", "probability": 0.68212890625}, {"start": 1033.65, "end": 1033.99, "word": " I", "probability": 0.52001953125}, {"start": 1033.99, "end": 1034.01, "word": " am", "probability": 0.266357421875}, {"start": 1034.01, "end": 1034.07, "word": " a", "probability": 0.4736328125}, {"start": 1034.07, "end": 1034.07, "word": " single", "probability": 0.9248046875}, {"start": 1034.07, "end": 1034.41, "word": " feature", "probability": 0.95458984375}], "temperature": 1.0}, {"id": 41, "seek": 105133, "start": 1036.73, "end": 1051.33, "text": "In one class, add up to 30. So if I have 10 features, I make only 10 classes, instead of making 300 classes. Do you agree with me or not? Let's see how to apply this.", "tokens": [4575, 472, 1508, 11, 909, 493, 281, 2217, 13, 407, 498, 286, 362, 1266, 4122, 11, 286, 652, 787, 1266, 5359, 11, 2602, 295, 1455, 6641, 5359, 13, 1144, 291, 3986, 365, 385, 420, 406, 30, 961, 311, 536, 577, 281, 3079, 341, 13], "avg_logprob": -0.6006944179534912, "compression_ratio": 1.2575757575757576, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1036.73, "end": 1036.91, "word": "In", "probability": 0.2076416015625}, {"start": 1036.91, "end": 1037.59, "word": " one", "probability": 0.7099609375}, {"start": 1037.59, "end": 1037.61, "word": " class,", "probability": 0.92333984375}, {"start": 1038.07, "end": 1038.29, "word": " add", "probability": 0.4658203125}, {"start": 1038.29, "end": 1038.49, "word": " up", "probability": 0.294189453125}, {"start": 1038.49, "end": 1038.51, "word": " to", "probability": 0.93310546875}, {"start": 1038.51, "end": 1038.93, "word": " 30.", "probability": 0.8271484375}, {"start": 1039.75, "end": 1040.19, "word": " So", "probability": 0.302001953125}, {"start": 1040.19, "end": 1040.31, "word": " if", "probability": 0.74169921875}, {"start": 1040.31, "end": 1040.43, "word": " I", "probability": 0.94970703125}, {"start": 1040.43, "end": 1040.55, "word": " have", "probability": 0.806640625}, {"start": 1040.55, "end": 1040.79, "word": " 10", "probability": 0.72802734375}, {"start": 1040.79, "end": 1041.33, "word": " features,", "probability": 0.5498046875}, {"start": 1042.27, "end": 1042.53, "word": " I", "probability": 0.857421875}, {"start": 1042.53, "end": 1042.73, "word": " make", "probability": 0.1563720703125}, {"start": 1042.73, "end": 1042.89, "word": " only", "probability": 0.57275390625}, {"start": 1042.89, "end": 1043.15, "word": " 10", "probability": 0.93798828125}, {"start": 1043.15, "end": 1043.57, "word": " classes,", "probability": 0.91259765625}, {"start": 1043.65, "end": 1043.83, "word": " instead", "probability": 0.66552734375}, {"start": 1043.83, "end": 1044.03, "word": " of", "probability": 0.96728515625}, {"start": 1044.03, "end": 1044.25, "word": " making", "probability": 0.424072265625}, {"start": 1044.25, "end": 1045.97, "word": " 300", "probability": 0.71142578125}, {"start": 1045.97, "end": 1046.77, "word": " classes.", "probability": 0.87255859375}, {"start": 1047.67, "end": 1048.11, "word": " Do", "probability": 0.1630859375}, {"start": 1048.11, "end": 1048.17, "word": " you", "probability": 0.859375}, {"start": 1048.17, "end": 1048.17, "word": " agree", "probability": 0.423095703125}, {"start": 1048.17, "end": 1048.17, "word": " with", "probability": 0.367919921875}, {"start": 1048.17, "end": 1048.31, "word": " me", "probability": 0.80078125}, {"start": 1048.31, "end": 1048.33, "word": " or", "probability": 0.488037109375}, {"start": 1048.33, "end": 1048.49, "word": " not?", "probability": 0.92138671875}, {"start": 1049.69, "end": 1050.13, "word": " Let's", "probability": 0.583251953125}, {"start": 1050.13, "end": 1050.27, "word": " see", "probability": 0.80517578125}, {"start": 1050.27, "end": 1050.43, "word": " how", "probability": 0.471923828125}, {"start": 1050.43, "end": 1050.83, "word": " to", "probability": 0.449462890625}, {"start": 1050.83, "end": 1051.19, "word": " apply", "probability": 0.53466796875}, {"start": 1051.19, "end": 1051.33, "word": " this.", "probability": 0.6015625}], "temperature": 1.0}, {"id": 42, "seek": 107381, "start": 1058.15, "end": 1073.81, "text": "Let me explain how to do it and then I will draw the UML diagram. What do you think Halgate? In our example here, I have two shapes, circle and rectangle. To make them a border, I have to make two classes, circle with border and rectangle with border.", "tokens": [8373, 385, 2903, 577, 281, 360, 309, 293, 550, 286, 486, 2642, 264, 624, 12683, 10686, 13, 708, 360, 291, 519, 13896, 22514, 30, 682, 527, 1365, 510, 11, 286, 362, 732, 10854, 11, 6329, 293, 21930, 13, 1407, 652, 552, 257, 7838, 11, 286, 362, 281, 652, 732, 5359, 11, 6329, 365, 7838, 293, 21930, 365, 7838, 13], "avg_logprob": -0.6093750218550364, "compression_ratio": 1.56875, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1058.15, "end": 1058.37, "word": "Let", "probability": 0.17529296875}, {"start": 1058.37, "end": 1058.61, "word": " me", "probability": 0.6611328125}, {"start": 1058.61, "end": 1058.77, "word": " explain", "probability": 0.69677734375}, {"start": 1058.77, "end": 1059.07, "word": " how", "probability": 0.60009765625}, {"start": 1059.07, "end": 1059.17, "word": " to", "probability": 0.44482421875}, {"start": 1059.17, "end": 1059.37, "word": " do", "probability": 0.5087890625}, {"start": 1059.37, "end": 1059.59, "word": " it", "probability": 0.74462890625}, {"start": 1059.59, "end": 1059.93, "word": " and", "probability": 0.3564453125}, {"start": 1059.93, "end": 1060.09, "word": " then", "probability": 0.650390625}, {"start": 1060.09, "end": 1060.17, "word": " I", "probability": 0.33740234375}, {"start": 1060.17, "end": 1060.63, "word": " will", "probability": 0.53076171875}, {"start": 1060.63, "end": 1060.81, "word": " draw", "probability": 0.72021484375}, {"start": 1060.81, "end": 1060.93, "word": " the", "probability": 0.525390625}, {"start": 1060.93, "end": 1061.17, "word": " UML", "probability": 0.68017578125}, {"start": 1061.17, "end": 1061.65, "word": " diagram.", "probability": 0.8427734375}, {"start": 1062.71, "end": 1062.89, "word": " What", "probability": 0.128662109375}, {"start": 1062.89, "end": 1063.05, "word": " do", "probability": 0.277099609375}, {"start": 1063.05, "end": 1063.09, "word": " you", "probability": 0.79833984375}, {"start": 1063.09, "end": 1063.29, "word": " think", "probability": 0.6103515625}, {"start": 1063.29, "end": 1063.65, "word": " Halgate?", "probability": 0.322662353515625}, {"start": 1064.27, "end": 1064.75, "word": " In", "probability": 0.41162109375}, {"start": 1064.75, "end": 1065.21, "word": " our", "probability": 0.399658203125}, {"start": 1065.21, "end": 1065.21, "word": " example", "probability": 0.90673828125}, {"start": 1065.21, "end": 1065.47, "word": " here,", "probability": 0.35595703125}, {"start": 1065.55, "end": 1065.59, "word": " I", "probability": 0.80029296875}, {"start": 1065.59, "end": 1065.77, "word": " have", "probability": 0.92919921875}, {"start": 1065.77, "end": 1066.13, "word": " two", "probability": 0.78076171875}, {"start": 1066.13, "end": 1066.13, "word": " shapes,", "probability": 0.6552734375}, {"start": 1066.49, "end": 1066.83, "word": " circle", "probability": 0.630859375}, {"start": 1066.83, "end": 1066.97, "word": " and", "probability": 0.9326171875}, {"start": 1066.97, "end": 1067.41, "word": " rectangle.", "probability": 0.94384765625}, {"start": 1068.15, "end": 1068.29, "word": " To", "probability": 0.466552734375}, {"start": 1068.29, "end": 1068.57, "word": " make", "probability": 0.6591796875}, {"start": 1068.57, "end": 1068.75, "word": " them", "probability": 0.841796875}, {"start": 1068.75, "end": 1068.83, "word": " a", "probability": 0.2861328125}, {"start": 1068.83, "end": 1069.09, "word": " border,", "probability": 0.853515625}, {"start": 1069.23, "end": 1069.29, "word": " I", "probability": 0.859375}, {"start": 1069.29, "end": 1069.33, "word": " have", "probability": 0.2335205078125}, {"start": 1069.33, "end": 1069.65, "word": " to", "probability": 0.95556640625}, {"start": 1069.65, "end": 1069.91, "word": " make", "probability": 0.61279296875}, {"start": 1069.91, "end": 1071.47, "word": " two", "probability": 0.5498046875}, {"start": 1071.47, "end": 1071.91, "word": " classes,", "probability": 0.87255859375}, {"start": 1072.09, "end": 1072.61, "word": " circle", "probability": 0.42626953125}, {"start": 1072.61, "end": 1072.89, "word": " with", "probability": 0.54931640625}, {"start": 1072.89, "end": 1073.33, "word": " border", "probability": 0.806640625}, {"start": 1073.33, "end": 1073.79, "word": " and", "probability": 0.41845703125}, {"start": 1073.79, "end": 1073.81, "word": " rectangle", "probability": 0.77880859375}, {"start": 1073.81, "end": 1073.81, "word": " with", "probability": 0.54638671875}, {"start": 1073.81, "end": 1073.81, "word": " border.", "probability": 0.7431640625}], "temperature": 1.0}, {"id": 43, "seek": 109541, "start": 1075.53, "end": 1095.41, "text": "I didn't do rectangle with border but it's the same idea Now I don't want to make circle with border and rectangle with border I want to make one class called border and add to the frame the two, three or ten shapes that I have So I found that I want to make a new class called border", "tokens": [40, 994, 380, 360, 21930, 365, 7838, 457, 309, 311, 264, 912, 1558, 823, 286, 500, 380, 528, 281, 652, 6329, 365, 7838, 293, 21930, 365, 7838, 286, 528, 281, 652, 472, 1508, 1219, 7838, 293, 909, 281, 264, 3920, 264, 732, 11, 1045, 420, 2064, 10854, 300, 286, 362, 407, 286, 1352, 300, 286, 528, 281, 652, 257, 777, 1508, 1219, 7838], "avg_logprob": -0.49365233816206455, "compression_ratio": 1.880794701986755, "no_speech_prob": 1.7881393432617188e-05, "words": [{"start": 1075.53, "end": 1075.99, "word": "I", "probability": 0.37060546875}, {"start": 1075.99, "end": 1076.07, "word": " didn't", "probability": 0.708740234375}, {"start": 1076.07, "end": 1076.31, "word": " do", "probability": 0.385009765625}, {"start": 1076.31, "end": 1076.83, "word": " rectangle", "probability": 0.61376953125}, {"start": 1076.83, "end": 1077.03, "word": " with", "probability": 0.8427734375}, {"start": 1077.03, "end": 1077.31, "word": " border", "probability": 0.767578125}, {"start": 1077.31, "end": 1077.49, "word": " but", "probability": 0.29833984375}, {"start": 1077.49, "end": 1077.75, "word": " it's", "probability": 0.5880126953125}, {"start": 1077.75, "end": 1077.87, "word": " the", "probability": 0.61083984375}, {"start": 1077.87, "end": 1078.01, "word": " same", "probability": 0.896484375}, {"start": 1078.01, "end": 1078.73, "word": " idea", "probability": 0.63623046875}, {"start": 1078.73, "end": 1079.15, "word": " Now", "probability": 0.454345703125}, {"start": 1079.15, "end": 1080.01, "word": " I", "probability": 0.6728515625}, {"start": 1080.01, "end": 1080.11, "word": " don't", "probability": 0.91552734375}, {"start": 1080.11, "end": 1080.35, "word": " want", "probability": 0.84423828125}, {"start": 1080.35, "end": 1080.39, "word": " to", "probability": 0.81591796875}, {"start": 1080.39, "end": 1080.51, "word": " make", "probability": 0.379638671875}, {"start": 1080.51, "end": 1080.89, "word": " circle", "probability": 0.59033203125}, {"start": 1080.89, "end": 1081.11, "word": " with", "probability": 0.8095703125}, {"start": 1081.11, "end": 1081.49, "word": " border", "probability": 0.82373046875}, {"start": 1081.49, "end": 1081.75, "word": " and", "probability": 0.63623046875}, {"start": 1081.75, "end": 1082.11, "word": " rectangle", "probability": 0.9248046875}, {"start": 1082.11, "end": 1082.37, "word": " with", "probability": 0.91748046875}, {"start": 1082.37, "end": 1082.69, "word": " border", "probability": 0.82763671875}, {"start": 1082.69, "end": 1082.85, "word": " I", "probability": 0.6171875}, {"start": 1082.85, "end": 1083.03, "word": " want", "probability": 0.78564453125}, {"start": 1083.03, "end": 1083.07, "word": " to", "probability": 0.951171875}, {"start": 1083.07, "end": 1083.21, "word": " make", "probability": 0.87060546875}, {"start": 1083.21, "end": 1083.33, "word": " one", "probability": 0.4755859375}, {"start": 1083.33, "end": 1084.01, "word": " class", "probability": 0.9345703125}, {"start": 1084.01, "end": 1084.93, "word": " called", "probability": 0.2408447265625}, {"start": 1084.93, "end": 1085.31, "word": " border", "probability": 0.77685546875}, {"start": 1085.31, "end": 1085.49, "word": " and", "probability": 0.54443359375}, {"start": 1085.49, "end": 1085.65, "word": " add", "probability": 0.66015625}, {"start": 1085.65, "end": 1085.79, "word": " to", "probability": 0.23486328125}, {"start": 1085.79, "end": 1085.83, "word": " the", "probability": 0.38232421875}, {"start": 1085.83, "end": 1086.21, "word": " frame", "probability": 0.402099609375}, {"start": 1086.21, "end": 1087.07, "word": " the", "probability": 0.297607421875}, {"start": 1087.07, "end": 1087.15, "word": " two,", "probability": 0.328369140625}, {"start": 1087.53, "end": 1088.15, "word": " three", "probability": 0.814453125}, {"start": 1088.15, "end": 1088.31, "word": " or", "probability": 0.814453125}, {"start": 1088.31, "end": 1088.65, "word": " ten", "probability": 0.89599609375}, {"start": 1088.65, "end": 1088.69, "word": " shapes", "probability": 0.3095703125}, {"start": 1088.69, "end": 1088.79, "word": " that", "probability": 0.39990234375}, {"start": 1088.79, "end": 1088.87, "word": " I", "probability": 0.96142578125}, {"start": 1088.87, "end": 1089.23, "word": " have", "probability": 0.82373046875}, {"start": 1089.23, "end": 1090.65, "word": " So", "probability": 0.43798828125}, {"start": 1090.65, "end": 1091.01, "word": " I", "probability": 0.81103515625}, {"start": 1091.01, "end": 1091.01, "word": " found", "probability": 0.2001953125}, {"start": 1091.01, "end": 1091.11, "word": " that", "probability": 0.46826171875}, {"start": 1091.11, "end": 1091.19, "word": " I", "probability": 0.9853515625}, {"start": 1091.19, "end": 1091.35, "word": " want", "probability": 0.421630859375}, {"start": 1091.35, "end": 1091.53, "word": " to", "probability": 0.96533203125}, {"start": 1091.53, "end": 1091.65, "word": " make", "probability": 0.779296875}, {"start": 1091.65, "end": 1091.79, "word": " a", "probability": 0.89892578125}, {"start": 1091.79, "end": 1091.79, "word": " new", "probability": 0.90673828125}, {"start": 1091.79, "end": 1092.47, "word": " class", "probability": 0.96044921875}, {"start": 1092.47, "end": 1094.97, "word": " called", "probability": 0.62744140625}, {"start": 1094.97, "end": 1095.41, "word": " border", "probability": 0.826171875}], "temperature": 1.0}, {"id": 44, "seek": 112166, "start": 1098.66, "end": 1121.66, "text": " First of all, make this class from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes. What does it mean? Make it from the same type of shapes.", "tokens": [2386, 295, 439, 11, 652, 341, 1508, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13, 708, 775, 309, 914, 30, 4387, 309, 490, 264, 912, 2010, 295, 10854, 13], "avg_logprob": -0.16083333545260958, "compression_ratio": 9.945652173913043, "no_speech_prob": 3.993511199951172e-06, "words": [{"start": 1098.66, "end": 1099.26, "word": " First", "probability": 0.1436767578125}, {"start": 1099.26, "end": 1099.64, "word": " of", "probability": 0.26806640625}, {"start": 1099.64, "end": 1099.74, "word": " all,", "probability": 0.94580078125}, {"start": 1100.6, "end": 1100.96, "word": " make", "probability": 0.45361328125}, {"start": 1100.96, "end": 1101.14, "word": " this", "probability": 0.41796875}, {"start": 1101.14, "end": 1101.5, "word": " class", "probability": 0.87841796875}, {"start": 1101.5, "end": 1102.16, "word": " from", "probability": 0.097900390625}, {"start": 1102.16, "end": 1102.46, "word": " the", "probability": 0.64794921875}, {"start": 1102.46, "end": 1102.46, "word": " same", "probability": 0.79443359375}, {"start": 1102.46, "end": 1102.76, "word": " type", "probability": 0.281494140625}, {"start": 1102.76, "end": 1102.86, "word": " of", "probability": 0.75244140625}, {"start": 1102.86, "end": 1103.16, "word": " shapes.", "probability": 0.62744140625}, {"start": 1103.78, "end": 1103.92, "word": " What", "probability": 0.422119140625}, {"start": 1103.92, "end": 1104.12, "word": " does", "probability": 0.72412109375}, {"start": 1104.12, "end": 1104.18, "word": " it", "probability": 0.403076171875}, {"start": 1104.18, "end": 1104.18, "word": " mean?", "probability": 0.93408203125}, {"start": 1104.9, "end": 1105.2, "word": " Make", "probability": 0.615234375}, {"start": 1105.2, "end": 1105.34, "word": " it", "probability": 0.73583984375}, {"start": 1105.34, "end": 1105.66, "word": " from", "probability": 0.233154296875}, {"start": 1105.66, "end": 1105.88, "word": " the", "probability": 0.336669921875}, {"start": 1105.88, "end": 1105.88, "word": " same", "probability": 0.3857421875}, {"start": 1105.88, "end": 1105.88, "word": " type", "probability": 0.76416015625}, {"start": 1105.88, "end": 1105.88, "word": " of", "probability": 0.8955078125}, {"start": 1105.88, "end": 1105.88, "word": " shapes.", "probability": 0.89599609375}, {"start": 1105.88, "end": 1105.88, "word": " What", "probability": 0.343994140625}, {"start": 1105.88, "end": 1105.88, "word": " does", "probability": 0.91845703125}, {"start": 1105.88, "end": 1105.88, "word": " it", "probability": 0.88818359375}, {"start": 1105.88, "end": 1105.88, "word": " mean?", "probability": 0.96337890625}, {"start": 1105.88, "end": 1105.88, "word": " Make", "probability": 0.83984375}, {"start": 1105.88, "end": 1105.88, "word": " it", "probability": 0.9423828125}, {"start": 1105.88, "end": 1105.88, "word": " from", "probability": 0.7705078125}, {"start": 1105.88, "end": 1105.88, "word": " the", "probability": 0.91015625}, {"start": 1105.88, "end": 1105.88, "word": " same", "probability": 0.8837890625}, {"start": 1105.88, "end": 1105.88, "word": " type", "probability": 0.9814453125}, {"start": 1105.88, "end": 1105.88, "word": " of", "probability": 0.97314453125}, {"start": 1105.88, "end": 1105.88, "word": " shapes.", "probability": 0.93017578125}, {"start": 1105.88, "end": 1105.88, "word": " What", "probability": 0.7744140625}, {"start": 1105.88, "end": 1105.88, "word": " does", "probability": 0.9716796875}, {"start": 1105.88, "end": 1105.88, "word": " it", "probability": 0.94287109375}, {"start": 1105.88, "end": 1105.88, "word": " mean?", "probability": 0.9677734375}, {"start": 1105.88, "end": 1105.88, "word": " Make", "probability": 0.88037109375}, {"start": 1105.88, "end": 1105.88, "word": " it", "probability": 0.9482421875}, {"start": 1105.88, "end": 1105.88, "word": " from", "probability": 0.80078125}, {"start": 1105.88, "end": 1106.46, "word": " the", "probability": 0.9140625}, {"start": 1106.46, "end": 1106.46, "word": " same", "probability": 0.89111328125}, {"start": 1106.46, "end": 1106.46, "word": " type", "probability": 0.98291015625}, {"start": 1106.46, "end": 1106.46, "word": " of", "probability": 0.974609375}, {"start": 1106.46, "end": 1106.46, "word": " shapes.", "probability": 0.9326171875}, {"start": 1106.94, "end": 1106.94, "word": " What", "probability": 0.6044921875}, {"start": 1106.94, "end": 1106.94, "word": " does", "probability": 0.9658203125}, {"start": 1106.94, "end": 1106.94, "word": " it", "probability": 0.9482421875}, {"start": 1106.94, "end": 1106.94, "word": " mean?", "probability": 0.96923828125}, {"start": 1106.94, "end": 1106.94, "word": " Make", "probability": 0.87890625}, {"start": 1106.94, "end": 1106.94, "word": " it", "probability": 0.94677734375}, {"start": 1106.94, "end": 1106.94, "word": " from", "probability": 0.83154296875}, {"start": 1106.94, "end": 1107.08, "word": " the", "probability": 0.92236328125}, {"start": 1107.08, "end": 1107.66, "word": " same", "probability": 0.8955078125}, {"start": 1107.66, "end": 1107.66, "word": " type", "probability": 0.9833984375}, {"start": 1107.66, "end": 1107.7, "word": " of", "probability": 0.97509765625}, {"start": 1107.7, "end": 1107.7, "word": " shapes.", "probability": 0.93408203125}, {"start": 1108.02, "end": 1108.02, "word": " What", "probability": 0.54296875}, {"start": 1108.02, "end": 1108.02, "word": " does", "probability": 0.96337890625}, {"start": 1108.02, "end": 1108.1, "word": " it", "probability": 0.955078125}, {"start": 1108.1, "end": 1108.2, "word": " mean?", "probability": 0.96875}, {"start": 1108.2, "end": 1108.2, "word": " Make", "probability": 0.89111328125}, {"start": 1108.2, "end": 1108.2, "word": " it", "probability": 0.94677734375}, {"start": 1108.2, "end": 1108.2, "word": " from", "probability": 0.8544921875}, {"start": 1108.2, "end": 1108.2, "word": " the", "probability": 0.92822265625}, {"start": 1108.2, "end": 1108.2, "word": " same", "probability": 0.9033203125}, {"start": 1108.2, "end": 1108.2, "word": " type", "probability": 0.9853515625}, {"start": 1108.2, "end": 1108.2, "word": " of", "probability": 0.9765625}, {"start": 1108.2, "end": 1108.2, "word": " shapes.", "probability": 0.93408203125}, {"start": 1108.2, "end": 1108.64, "word": " What", "probability": 0.6103515625}, {"start": 1108.64, "end": 1108.64, "word": " does", "probability": 0.96875}, {"start": 1108.64, "end": 1108.64, "word": " it", "probability": 0.95849609375}, {"start": 1108.64, "end": 1108.64, "word": " mean?", "probability": 0.96875}, {"start": 1108.64, "end": 1108.64, "word": " Make", "probability": 0.9033203125}, {"start": 1108.64, "end": 1108.64, "word": " it", "probability": 0.9501953125}, {"start": 1108.64, "end": 1108.64, "word": " from", "probability": 0.87060546875}, {"start": 1108.64, "end": 1108.64, "word": " the", "probability": 0.93017578125}, {"start": 1108.64, "end": 1108.64, "word": " same", "probability": 0.90478515625}, {"start": 1108.64, "end": 1108.64, "word": " type", "probability": 0.98583984375}, {"start": 1108.64, "end": 1108.64, "word": " of", "probability": 0.9765625}, {"start": 1108.64, "end": 1108.64, "word": " shapes.", "probability": 0.9345703125}, {"start": 1108.64, "end": 1108.92, "word": " What", "probability": 0.67724609375}, {"start": 1108.92, "end": 1108.92, "word": " does", "probability": 0.97314453125}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.95947265625}, {"start": 1108.92, "end": 1108.92, "word": " mean?", "probability": 0.96923828125}, {"start": 1108.92, "end": 1108.92, "word": " Make", "probability": 0.9091796875}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.951171875}, {"start": 1108.92, "end": 1108.92, "word": " from", "probability": 0.8798828125}, {"start": 1108.92, "end": 1108.92, "word": " the", "probability": 0.93310546875}, {"start": 1108.92, "end": 1108.92, "word": " same", "probability": 0.90625}, {"start": 1108.92, "end": 1108.92, "word": " type", "probability": 0.98681640625}, {"start": 1108.92, "end": 1108.92, "word": " of", "probability": 0.97802734375}, {"start": 1108.92, "end": 1108.92, "word": " shapes.", "probability": 0.93359375}, {"start": 1108.92, "end": 1108.92, "word": " What", "probability": 0.708984375}, {"start": 1108.92, "end": 1108.92, "word": " does", "probability": 0.97607421875}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.95947265625}, {"start": 1108.92, "end": 1108.92, "word": " mean?", "probability": 0.96875}, {"start": 1108.92, "end": 1108.92, "word": " Make", "probability": 0.91162109375}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.953125}, {"start": 1108.92, "end": 1108.92, "word": " from", "probability": 0.88134765625}, {"start": 1108.92, "end": 1108.92, "word": " the", "probability": 0.93408203125}, {"start": 1108.92, "end": 1108.92, "word": " same", "probability": 0.90380859375}, {"start": 1108.92, "end": 1108.92, "word": " type", "probability": 0.9873046875}, {"start": 1108.92, "end": 1108.92, "word": " of", "probability": 0.97802734375}, {"start": 1108.92, "end": 1108.92, "word": " shapes.", "probability": 0.9326171875}, {"start": 1108.92, "end": 1108.92, "word": " What", "probability": 0.7216796875}, {"start": 1108.92, "end": 1108.92, "word": " does", "probability": 0.97802734375}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.96044921875}, {"start": 1108.92, "end": 1108.92, "word": " mean?", "probability": 0.9677734375}, {"start": 1108.92, "end": 1108.92, "word": " Make", "probability": 0.9150390625}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.955078125}, {"start": 1108.92, "end": 1108.92, "word": " from", "probability": 0.88671875}, {"start": 1108.92, "end": 1108.92, "word": " the", "probability": 0.93603515625}, {"start": 1108.92, "end": 1108.92, "word": " same", "probability": 0.9052734375}, {"start": 1108.92, "end": 1108.92, "word": " type", "probability": 0.98779296875}, {"start": 1108.92, "end": 1108.92, "word": " of", "probability": 0.978515625}, {"start": 1108.92, "end": 1108.92, "word": " shapes.", "probability": 0.931640625}, {"start": 1108.92, "end": 1108.92, "word": " What", "probability": 0.72021484375}, {"start": 1108.92, "end": 1108.92, "word": " does", "probability": 0.9794921875}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.96044921875}, {"start": 1108.92, "end": 1108.92, "word": " mean?", "probability": 0.96875}, {"start": 1108.92, "end": 1108.92, "word": " Make", "probability": 0.91748046875}, {"start": 1108.92, "end": 1108.92, "word": " it", "probability": 0.955078125}, {"start": 1108.92, "end": 1108.92, "word": " from", "probability": 0.88427734375}, {"start": 1108.92, "end": 1108.92, "word": " the", "probability": 0.93603515625}, {"start": 1108.92, "end": 1108.92, "word": " same", "probability": 0.90771484375}, {"start": 1108.92, "end": 1108.92, "word": " type", "probability": 0.98828125}, {"start": 1108.92, "end": 1108.92, "word": " of", "probability": 0.978515625}, {"start": 1108.92, "end": 1108.92, "word": " shapes.", "probability": 0.93115234375}, {"start": 1108.92, "end": 1109.14, "word": " What", "probability": 0.71337890625}, {"start": 1109.14, "end": 1109.14, "word": " does", "probability": 0.98046875}, {"start": 1109.14, "end": 1109.14, "word": " it", "probability": 0.96044921875}, {"start": 1109.14, "end": 1109.14, "word": " mean?", "probability": 0.9677734375}, {"start": 1109.14, "end": 1109.14, "word": " Make", "probability": 0.91943359375}, {"start": 1109.14, "end": 1109.14, "word": " it", "probability": 0.9580078125}, {"start": 1109.14, "end": 1109.14, "word": " from", "probability": 0.88916015625}, {"start": 1109.14, "end": 1109.14, "word": " the", "probability": 0.93603515625}, {"start": 1109.14, "end": 1109.14, "word": " same", "probability": 0.90625}, {"start": 1109.14, "end": 1109.14, "word": " type", "probability": 0.98828125}, {"start": 1109.14, "end": 1109.14, "word": " of", "probability": 0.97900390625}, {"start": 1109.14, "end": 1109.14, "word": " shapes.", "probability": 0.9296875}, {"start": 1109.14, "end": 1109.14, "word": " What", "probability": 0.70556640625}, {"start": 1109.14, "end": 1109.14, "word": " does", "probability": 0.98193359375}, {"start": 1109.14, "end": 1109.14, "word": " it", "probability": 0.96044921875}, {"start": 1109.14, "end": 1109.14, "word": " mean?", "probability": 0.96826171875}, {"start": 1109.14, "end": 1109.14, "word": " Make", "probability": 0.91943359375}, {"start": 1109.14, "end": 1109.14, "word": " it", "probability": 0.9580078125}, {"start": 1109.14, "end": 1109.14, "word": " from", "probability": 0.888671875}, {"start": 1109.14, "end": 1109.14, "word": " the", "probability": 0.935546875}, {"start": 1109.14, "end": 1109.14, "word": " same", "probability": 0.90771484375}, {"start": 1109.14, "end": 1109.14, "word": " type", "probability": 0.98779296875}, {"start": 1109.14, "end": 1109.14, "word": " of", "probability": 0.97900390625}, {"start": 1109.14, "end": 1109.14, "word": " shapes.", "probability": 0.9296875}, {"start": 1109.34, "end": 1109.94, "word": " What", "probability": 0.68115234375}, {"start": 1109.94, "end": 1109.94, "word": " does", "probability": 0.982421875}, {"start": 1109.94, "end": 1109.94, "word": " it", "probability": 0.96142578125}, {"start": 1109.94, "end": 1109.94, "word": " mean?", "probability": 0.9677734375}, {"start": 1109.94, "end": 1109.94, "word": " Make", "probability": 0.92041015625}, {"start": 1109.94, "end": 1109.94, "word": " it", "probability": 0.958984375}, {"start": 1109.94, "end": 1110.5, "word": " from", "probability": 0.8896484375}, {"start": 1110.5, "end": 1113.08, "word": " the", "probability": 0.9345703125}, {"start": 1113.08, "end": 1113.08, "word": " same", "probability": 0.9052734375}, {"start": 1113.08, "end": 1113.08, "word": " type", "probability": 0.9873046875}, {"start": 1113.08, "end": 1113.08, "word": " of", "probability": 0.97900390625}, {"start": 1113.08, "end": 1113.08, "word": " shapes.", "probability": 0.9296875}, {"start": 1113.08, "end": 1113.08, "word": " What", "probability": 0.6474609375}, {"start": 1113.08, "end": 1115.82, "word": " does", "probability": 0.982421875}, {"start": 1115.82, "end": 1115.82, "word": " it", "probability": 0.9609375}, {"start": 1115.82, "end": 1115.82, "word": " mean?", "probability": 0.966796875}, {"start": 1116.22, "end": 1116.34, "word": " Make", "probability": 0.9189453125}, {"start": 1116.34, "end": 1116.34, "word": " it", "probability": 0.95947265625}, {"start": 1116.34, "end": 1117.04, "word": " from", "probability": 0.890625}, {"start": 1117.04, "end": 1117.5, "word": " the", "probability": 0.93115234375}, {"start": 1117.5, "end": 1117.62, "word": " same", "probability": 0.9013671875}, {"start": 1117.62, "end": 1117.62, "word": " type", "probability": 0.9853515625}, {"start": 1117.62, "end": 1117.62, "word": " of", "probability": 0.9794921875}, {"start": 1117.62, "end": 1117.8, "word": " shapes.", "probability": 0.927734375}, {"start": 1118.0, "end": 1118.6, "word": " What", "probability": 0.59765625}, {"start": 1118.6, "end": 1118.72, "word": " does", "probability": 0.9814453125}, {"start": 1118.72, "end": 1118.88, "word": " it", "probability": 0.96142578125}, {"start": 1118.88, "end": 1118.88, "word": " mean?", "probability": 0.96533203125}, {"start": 1119.16, "end": 1119.44, "word": " Make", "probability": 0.91259765625}, {"start": 1119.44, "end": 1119.8, "word": " it", "probability": 0.95947265625}, {"start": 1119.8, "end": 1120.08, "word": " from", "probability": 0.8916015625}, {"start": 1120.08, "end": 1120.48, "word": " the", "probability": 0.92431640625}, {"start": 1120.48, "end": 1120.52, "word": " same", "probability": 0.8916015625}, {"start": 1120.52, "end": 1120.52, "word": " type", "probability": 0.982421875}, {"start": 1120.52, "end": 1120.52, "word": " of", "probability": 0.97802734375}, {"start": 1120.52, "end": 1121.66, "word": " shapes.", "probability": 0.92236328125}], "temperature": 1.0}, {"id": 45, "seek": 115271, "start": 1123.25, "end": 1152.71, "text": " an object of type .. pay attention to me and then I will explain to you ok? an object of type shape notice that there is a strange thing that this is of type shape and inside it contains what? an object of type shape of course this is a null value so we need to create a constructor to initialize it ok guys? ok", "tokens": [364, 2657, 295, 2010, 4386, 1689, 3202, 281, 385, 293, 550, 286, 486, 2903, 281, 291, 3133, 30, 364, 2657, 295, 2010, 3909, 3449, 300, 456, 307, 257, 5861, 551, 300, 341, 307, 295, 2010, 3909, 293, 1854, 309, 8306, 437, 30, 364, 2657, 295, 2010, 3909, 295, 1164, 341, 307, 257, 18184, 2158, 370, 321, 643, 281, 1884, 257, 47479, 281, 5883, 1125, 309, 3133, 1074, 30, 3133], "avg_logprob": -0.5964285467352186, "compression_ratio": 1.7627118644067796, "no_speech_prob": 3.7550926208496094e-05, "words": [{"start": 1123.25, "end": 1123.51, "word": " an", "probability": 0.1280517578125}, {"start": 1123.51, "end": 1123.71, "word": " object", "probability": 0.93408203125}, {"start": 1123.71, "end": 1123.87, "word": " of", "probability": 0.775390625}, {"start": 1123.87, "end": 1124.17, "word": " type", "probability": 0.5517578125}, {"start": 1124.17, "end": 1124.29, "word": " ..", "probability": 0.126708984375}, {"start": 1124.29, "end": 1124.85, "word": " pay", "probability": 0.197509765625}, {"start": 1124.85, "end": 1125.03, "word": " attention", "probability": 0.92578125}, {"start": 1125.03, "end": 1125.15, "word": " to", "probability": 0.4169921875}, {"start": 1125.15, "end": 1125.25, "word": " me", "probability": 0.5576171875}, {"start": 1125.25, "end": 1125.39, "word": " and", "probability": 0.302734375}, {"start": 1125.39, "end": 1125.45, "word": " then", "probability": 0.5107421875}, {"start": 1125.45, "end": 1125.55, "word": " I", "probability": 0.7958984375}, {"start": 1125.55, "end": 1125.59, "word": " will", "probability": 0.5908203125}, {"start": 1125.59, "end": 1125.83, "word": " explain", "probability": 0.73388671875}, {"start": 1125.83, "end": 1125.91, "word": " to", "probability": 0.37158203125}, {"start": 1125.91, "end": 1126.13, "word": " you", "probability": 0.96875}, {"start": 1126.13, "end": 1126.85, "word": " ok?", "probability": 0.203369140625}, {"start": 1126.95, "end": 1127.31, "word": " an", "probability": 0.53759765625}, {"start": 1127.31, "end": 1127.31, "word": " object", "probability": 0.958984375}, {"start": 1127.31, "end": 1127.45, "word": " of", "probability": 0.953125}, {"start": 1127.45, "end": 1127.61, "word": " type", "probability": 0.8984375}, {"start": 1127.61, "end": 1127.85, "word": " shape", "probability": 0.80224609375}, {"start": 1127.85, "end": 1128.97, "word": " notice", "probability": 0.2431640625}, {"start": 1128.97, "end": 1129.15, "word": " that", "probability": 0.50146484375}, {"start": 1129.15, "end": 1129.35, "word": " there", "probability": 0.59814453125}, {"start": 1129.35, "end": 1129.35, "word": " is", "probability": 0.83544921875}, {"start": 1129.35, "end": 1129.45, "word": " a", "probability": 0.37841796875}, {"start": 1129.45, "end": 1129.81, "word": " strange", "probability": 0.6318359375}, {"start": 1129.81, "end": 1129.81, "word": " thing", "probability": 0.73388671875}, {"start": 1129.81, "end": 1129.97, "word": " that", "probability": 0.201416015625}, {"start": 1129.97, "end": 1130.27, "word": " this", "probability": 0.6171875}, {"start": 1130.27, "end": 1130.29, "word": " is", "probability": 0.37890625}, {"start": 1130.29, "end": 1130.37, "word": " of", "probability": 0.480712890625}, {"start": 1130.37, "end": 1130.65, "word": " type", "probability": 0.83251953125}, {"start": 1130.65, "end": 1131.03, "word": " shape", "probability": 0.8955078125}, {"start": 1131.03, "end": 1132.01, "word": " and", "probability": 0.70849609375}, {"start": 1132.01, "end": 1132.47, "word": " inside", "probability": 0.25830078125}, {"start": 1132.47, "end": 1132.83, "word": " it", "probability": 0.548828125}, {"start": 1132.83, "end": 1132.83, "word": " contains", "probability": 0.414306640625}, {"start": 1132.83, "end": 1133.09, "word": " what?", "probability": 0.466064453125}, {"start": 1133.29, "end": 1133.75, "word": " an", "probability": 0.347412109375}, {"start": 1133.75, "end": 1133.93, "word": " object", "probability": 0.96728515625}, {"start": 1133.93, "end": 1134.09, "word": " of", "probability": 0.96435546875}, {"start": 1134.09, "end": 1134.23, "word": " type", "probability": 0.93505859375}, {"start": 1134.23, "end": 1134.63, "word": " shape", "probability": 0.90771484375}, {"start": 1134.63, "end": 1135.41, "word": " of", "probability": 0.453125}, {"start": 1135.41, "end": 1135.43, "word": " course", "probability": 0.9580078125}, {"start": 1135.43, "end": 1135.63, "word": " this", "probability": 0.65869140625}, {"start": 1135.63, "end": 1135.67, "word": " is", "probability": 0.77294921875}, {"start": 1135.67, "end": 1136.15, "word": " a", "probability": 0.2445068359375}, {"start": 1136.15, "end": 1136.15, "word": " null", "probability": 0.165283203125}, {"start": 1136.15, "end": 1136.15, "word": " value", "probability": 0.7431640625}, {"start": 1136.15, "end": 1136.53, "word": " so", "probability": 0.53173828125}, {"start": 1136.53, "end": 1136.75, "word": " we", "probability": 0.90625}, {"start": 1136.75, "end": 1136.75, "word": " need", "probability": 0.26953125}, {"start": 1136.75, "end": 1137.15, "word": " to", "probability": 0.96337890625}, {"start": 1137.15, "end": 1137.15, "word": " create", "probability": 0.4052734375}, {"start": 1137.15, "end": 1138.03, "word": " a", "probability": 0.494384765625}, {"start": 1138.03, "end": 1138.57, "word": " constructor", "probability": 0.90380859375}, {"start": 1138.57, "end": 1138.79, "word": " to", "probability": 0.78759765625}, {"start": 1138.79, "end": 1139.73, "word": " initialize", "probability": 0.7125244140625}, {"start": 1139.73, "end": 1146.99, "word": " it", "probability": 0.8935546875}, {"start": 1146.99, "end": 1151.25, "word": " ok", "probability": 0.45068359375}, {"start": 1151.25, "end": 1151.57, "word": " guys?", "probability": 0.8154296875}, {"start": 1152.47, "end": 1152.71, "word": " ok", "probability": 0.60009765625}], "temperature": 1.0}, {"id": 46, "seek": 118120, "start": 1154.4, "end": 1181.2, "text": " we are almost done now look with me now my goal is to add a border right? what are the attributes of any border? I have border int border-width and color border-color and the same thing we want to do with these setters", "tokens": [321, 366, 1920, 1096, 586, 574, 365, 385, 586, 452, 3387, 307, 281, 909, 257, 7838, 558, 30, 437, 366, 264, 17212, 295, 604, 7838, 30, 286, 362, 7838, 560, 7838, 12, 21271, 293, 2017, 7838, 12, 23851, 293, 264, 912, 551, 321, 528, 281, 360, 365, 613, 992, 1559], "avg_logprob": -0.5373774790296367, "compression_ratio": 1.5642857142857143, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 1154.4, "end": 1154.8, "word": " we", "probability": 0.202880859375}, {"start": 1154.8, "end": 1154.8, "word": " are", "probability": 0.33544921875}, {"start": 1154.8, "end": 1154.8, "word": " almost", "probability": 0.56103515625}, {"start": 1154.8, "end": 1155.34, "word": " done", "probability": 0.72412109375}, {"start": 1155.34, "end": 1157.04, "word": " now", "probability": 0.4228515625}, {"start": 1157.04, "end": 1157.28, "word": " look", "probability": 0.402587890625}, {"start": 1157.28, "end": 1157.5, "word": " with", "probability": 0.4541015625}, {"start": 1157.5, "end": 1157.74, "word": " me", "probability": 0.9638671875}, {"start": 1157.74, "end": 1158.64, "word": " now", "probability": 0.63916015625}, {"start": 1158.64, "end": 1161.5, "word": " my", "probability": 0.363525390625}, {"start": 1161.5, "end": 1161.74, "word": " goal", "probability": 0.6728515625}, {"start": 1161.74, "end": 1162.16, "word": " is", "probability": 0.87841796875}, {"start": 1162.16, "end": 1162.34, "word": " to", "probability": 0.89013671875}, {"start": 1162.34, "end": 1162.54, "word": " add", "probability": 0.8330078125}, {"start": 1162.54, "end": 1162.64, "word": " a", "probability": 0.21875}, {"start": 1162.64, "end": 1162.9, "word": " border", "probability": 0.87255859375}, {"start": 1162.9, "end": 1163.64, "word": " right?", "probability": 0.228515625}, {"start": 1163.72, "end": 1163.88, "word": " what", "probability": 0.7080078125}, {"start": 1163.88, "end": 1163.96, "word": " are", "probability": 0.5439453125}, {"start": 1163.96, "end": 1164.0, "word": " the", "probability": 0.7626953125}, {"start": 1164.0, "end": 1164.46, "word": " attributes", "probability": 0.861328125}, {"start": 1164.46, "end": 1164.66, "word": " of", "probability": 0.92724609375}, {"start": 1164.66, "end": 1164.88, "word": " any", "probability": 0.802734375}, {"start": 1164.88, "end": 1165.26, "word": " border?", "probability": 0.875}, {"start": 1166.16, "end": 1166.3, "word": " I", "probability": 0.406494140625}, {"start": 1166.3, "end": 1166.5, "word": " have", "probability": 0.90576171875}, {"start": 1166.5, "end": 1167.02, "word": " border", "probability": 0.55908203125}, {"start": 1167.02, "end": 1168.76, "word": " int", "probability": 0.157958984375}, {"start": 1168.76, "end": 1169.48, "word": " border", "probability": 0.81640625}, {"start": 1169.48, "end": 1169.9, "word": "-width", "probability": 0.7490234375}, {"start": 1169.9, "end": 1172.02, "word": " and", "probability": 0.640625}, {"start": 1172.02, "end": 1172.38, "word": " color", "probability": 0.802734375}, {"start": 1172.38, "end": 1173.8, "word": " border", "probability": 0.81494140625}, {"start": 1173.8, "end": 1176.9, "word": "-color", "probability": 0.870849609375}, {"start": 1176.9, "end": 1177.96, "word": " and", "probability": 0.74267578125}, {"start": 1177.96, "end": 1178.06, "word": " the", "probability": 0.401123046875}, {"start": 1178.06, "end": 1178.16, "word": " same", "probability": 0.91455078125}, {"start": 1178.16, "end": 1178.58, "word": " thing", "probability": 0.6953125}, {"start": 1178.58, "end": 1178.72, "word": " we", "probability": 0.388671875}, {"start": 1178.72, "end": 1178.86, "word": " want", "probability": 0.16650390625}, {"start": 1178.86, "end": 1178.98, "word": " to", "probability": 0.95068359375}, {"start": 1178.98, "end": 1179.14, "word": " do", "probability": 0.355712890625}, {"start": 1179.14, "end": 1179.32, "word": " with", "probability": 0.27197265625}, {"start": 1179.32, "end": 1179.68, "word": " these", "probability": 0.73583984375}, {"start": 1179.68, "end": 1181.2, "word": " setters", "probability": 0.73486328125}], "temperature": 1.0}, {"id": 47, "seek": 121767, "start": 1192.79, "end": 1217.67, "text": "Okay, I got the idea that the shape that I want to draw, okay? I want to add a frame to it. Now, what does this constructor take? I shape. Why did you let him take I shape? So that I can send him a circle, rectangle, triangle and any other shape. Okay? Then, in this draw, what do I really want to do? Okay?", "tokens": [8297, 11, 286, 658, 264, 1558, 300, 264, 3909, 300, 286, 528, 281, 2642, 11, 1392, 30, 286, 528, 281, 909, 257, 3920, 281, 309, 13, 823, 11, 437, 775, 341, 47479, 747, 30, 286, 3909, 13, 1545, 630, 291, 718, 796, 747, 286, 3909, 30, 407, 300, 286, 393, 2845, 796, 257, 6329, 11, 21930, 11, 13369, 293, 604, 661, 3909, 13, 1033, 30, 1396, 11, 294, 341, 2642, 11, 437, 360, 286, 534, 528, 281, 360, 30, 1033, 30], "avg_logprob": -0.37080791556253667, "compression_ratio": 1.6868131868131868, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 1192.79, "end": 1193.15, "word": "Okay,", "probability": 0.2386474609375}, {"start": 1193.53, "end": 1193.73, "word": " I", "probability": 0.53955078125}, {"start": 1193.73, "end": 1193.87, "word": " got", "probability": 0.2203369140625}, {"start": 1193.87, "end": 1194.01, "word": " the", "probability": 0.6865234375}, {"start": 1194.01, "end": 1194.27, "word": " idea", "probability": 0.873046875}, {"start": 1194.27, "end": 1194.59, "word": " that", "probability": 0.77734375}, {"start": 1194.59, "end": 1194.89, "word": " the", "probability": 0.3818359375}, {"start": 1194.89, "end": 1195.25, "word": " shape", "probability": 0.84326171875}, {"start": 1195.25, "end": 1196.57, "word": " that", "probability": 0.447998046875}, {"start": 1196.57, "end": 1196.79, "word": " I", "probability": 0.96435546875}, {"start": 1196.79, "end": 1196.79, "word": " want", "probability": 0.6025390625}, {"start": 1196.79, "end": 1196.81, "word": " to", "probability": 0.96044921875}, {"start": 1196.81, "end": 1197.09, "word": " draw,", "probability": 0.84033203125}, {"start": 1197.91, "end": 1198.19, "word": " okay?", "probability": 0.1983642578125}, {"start": 1198.25, "end": 1198.33, "word": " I", "probability": 0.83203125}, {"start": 1198.33, "end": 1198.45, "word": " want", "probability": 0.5537109375}, {"start": 1198.45, "end": 1198.47, "word": " to", "probability": 0.96044921875}, {"start": 1198.47, "end": 1198.69, "word": " add", "probability": 0.84375}, {"start": 1198.69, "end": 1199.49, "word": " a", "probability": 0.783203125}, {"start": 1199.49, "end": 1199.71, "word": " frame", "probability": 0.654296875}, {"start": 1199.71, "end": 1200.05, "word": " to", "probability": 0.58251953125}, {"start": 1200.05, "end": 1200.35, "word": " it.", "probability": 0.939453125}, {"start": 1201.07, "end": 1201.55, "word": " Now,", "probability": 0.7900390625}, {"start": 1202.33, "end": 1202.61, "word": " what", "probability": 0.599609375}, {"start": 1202.61, "end": 1202.61, "word": " does", "probability": 0.787109375}, {"start": 1202.61, "end": 1202.75, "word": " this", "probability": 0.85888671875}, {"start": 1202.75, "end": 1203.71, "word": " constructor", "probability": 0.74365234375}, {"start": 1203.71, "end": 1204.35, "word": " take?", "probability": 0.67236328125}, {"start": 1204.95, "end": 1205.37, "word": " I", "probability": 0.7197265625}, {"start": 1205.37, "end": 1205.57, "word": " shape.", "probability": 0.810546875}, {"start": 1205.63, "end": 1205.77, "word": " Why", "probability": 0.85888671875}, {"start": 1205.77, "end": 1205.97, "word": " did", "probability": 0.9111328125}, {"start": 1205.97, "end": 1206.11, "word": " you", "probability": 0.323974609375}, {"start": 1206.11, "end": 1206.11, "word": " let", "probability": 0.4443359375}, {"start": 1206.11, "end": 1206.17, "word": " him", "probability": 0.468017578125}, {"start": 1206.17, "end": 1206.33, "word": " take", "probability": 0.84326171875}, {"start": 1206.33, "end": 1206.55, "word": " I", "probability": 0.82080078125}, {"start": 1206.55, "end": 1206.81, "word": " shape?", "probability": 0.90771484375}, {"start": 1207.39, "end": 1207.87, "word": " So", "probability": 0.69140625}, {"start": 1207.87, "end": 1208.03, "word": " that", "probability": 0.74365234375}, {"start": 1208.03, "end": 1208.17, "word": " I", "probability": 0.955078125}, {"start": 1208.17, "end": 1208.27, "word": " can", "probability": 0.86376953125}, {"start": 1208.27, "end": 1208.51, "word": " send", "probability": 0.55908203125}, {"start": 1208.51, "end": 1208.63, "word": " him", "probability": 0.83642578125}, {"start": 1208.63, "end": 1208.69, "word": " a", "probability": 0.8583984375}, {"start": 1208.69, "end": 1209.03, "word": " circle,", "probability": 0.93212890625}, {"start": 1209.43, "end": 1210.01, "word": " rectangle,", "probability": 0.84521484375}, {"start": 1210.41, "end": 1210.93, "word": " triangle", "probability": 0.84375}, {"start": 1210.93, "end": 1211.09, "word": " and", "probability": 0.4013671875}, {"start": 1211.09, "end": 1211.23, "word": " any", "probability": 0.66796875}, {"start": 1211.23, "end": 1211.25, "word": " other", "probability": 0.75732421875}, {"start": 1211.25, "end": 1211.47, "word": " shape.", "probability": 0.90869140625}, {"start": 1212.15, "end": 1212.43, "word": " Okay?", "probability": 0.6298828125}, {"start": 1212.91, "end": 1213.27, "word": " Then,", "probability": 0.7939453125}, {"start": 1213.53, "end": 1213.65, "word": " in", "probability": 0.767578125}, {"start": 1213.65, "end": 1213.77, "word": " this", "probability": 0.9189453125}, {"start": 1213.77, "end": 1213.99, "word": " draw,", "probability": 0.701171875}, {"start": 1214.63, "end": 1215.57, "word": " what", "probability": 0.904296875}, {"start": 1215.57, "end": 1215.65, "word": " do", "probability": 0.646484375}, {"start": 1215.65, "end": 1215.71, "word": " I", "probability": 0.90625}, {"start": 1215.71, "end": 1215.81, "word": " really", "probability": 0.436767578125}, {"start": 1215.81, "end": 1215.87, "word": " want", "probability": 0.84521484375}, {"start": 1215.87, "end": 1215.87, "word": " to", "probability": 0.96337890625}, {"start": 1215.87, "end": 1216.05, "word": " do?", "probability": 0.9462890625}, {"start": 1217.19, "end": 1217.67, "word": " Okay?", "probability": 0.7060546875}], "temperature": 1.0}, {"id": 48, "seek": 124507, "start": 1219.23, "end": 1245.07, "text": " I'm going to add my new code Do you remember the code that we used to do? Circle with rectangle Circle with border This is the code, do you see it? What does it do? It applies the new color and the new border width Why can't I see the border?", "tokens": [286, 478, 516, 281, 909, 452, 777, 3089, 1144, 291, 1604, 264, 3089, 300, 321, 1143, 281, 360, 30, 29381, 365, 21930, 29381, 365, 7838, 639, 307, 264, 3089, 11, 360, 291, 536, 309, 30, 708, 775, 309, 360, 30, 467, 13165, 264, 777, 2017, 293, 264, 777, 7838, 11402, 1545, 393, 380, 286, 536, 264, 7838, 30], "avg_logprob": -0.49788133370674265, "compression_ratio": 1.5576923076923077, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 1219.23, "end": 1219.53, "word": " I'm", "probability": 0.371826171875}, {"start": 1219.53, "end": 1219.63, "word": " going", "probability": 0.6640625}, {"start": 1219.63, "end": 1220.35, "word": " to", "probability": 0.962890625}, {"start": 1220.35, "end": 1220.55, "word": " add", "probability": 0.8447265625}, {"start": 1220.55, "end": 1221.19, "word": " my", "probability": 0.392578125}, {"start": 1221.19, "end": 1221.53, "word": " new", "probability": 0.84326171875}, {"start": 1221.53, "end": 1221.59, "word": " code", "probability": 0.8466796875}, {"start": 1221.59, "end": 1224.05, "word": " Do", "probability": 0.10333251953125}, {"start": 1224.05, "end": 1224.63, "word": " you", "probability": 0.96044921875}, {"start": 1224.63, "end": 1225.25, "word": " remember", "probability": 0.83447265625}, {"start": 1225.25, "end": 1225.45, "word": " the", "probability": 0.63720703125}, {"start": 1225.45, "end": 1225.65, "word": " code", "probability": 0.73486328125}, {"start": 1225.65, "end": 1225.77, "word": " that", "probability": 0.300048828125}, {"start": 1225.77, "end": 1225.99, "word": " we", "probability": 0.76318359375}, {"start": 1225.99, "end": 1225.99, "word": " used", "probability": 0.361572265625}, {"start": 1225.99, "end": 1226.05, "word": " to", "probability": 0.89453125}, {"start": 1226.05, "end": 1226.35, "word": " do?", "probability": 0.435546875}, {"start": 1227.01, "end": 1227.57, "word": " Circle", "probability": 0.271484375}, {"start": 1227.57, "end": 1227.79, "word": " with", "probability": 0.71142578125}, {"start": 1227.79, "end": 1228.37, "word": " rectangle", "probability": 0.8623046875}, {"start": 1228.37, "end": 1229.53, "word": " Circle", "probability": 0.371337890625}, {"start": 1229.53, "end": 1229.77, "word": " with", "probability": 0.90869140625}, {"start": 1229.77, "end": 1230.17, "word": " border", "probability": 0.7822265625}, {"start": 1230.17, "end": 1230.99, "word": " This", "probability": 0.311279296875}, {"start": 1230.99, "end": 1231.07, "word": " is", "probability": 0.4775390625}, {"start": 1231.07, "end": 1231.17, "word": " the", "probability": 0.87841796875}, {"start": 1231.17, "end": 1231.43, "word": " code,", "probability": 0.84765625}, {"start": 1231.51, "end": 1231.55, "word": " do", "probability": 0.2159423828125}, {"start": 1231.55, "end": 1231.55, "word": " you", "probability": 0.974609375}, {"start": 1231.55, "end": 1231.81, "word": " see", "probability": 0.9267578125}, {"start": 1231.81, "end": 1232.17, "word": " it?", "probability": 0.78466796875}, {"start": 1232.69, "end": 1232.89, "word": " What", "probability": 0.263916015625}, {"start": 1232.89, "end": 1233.23, "word": " does", "probability": 0.498779296875}, {"start": 1233.23, "end": 1233.23, "word": " it", "probability": 0.80078125}, {"start": 1233.23, "end": 1233.57, "word": " do?", "probability": 0.93115234375}, {"start": 1234.13, "end": 1234.37, "word": " It", "probability": 0.67578125}, {"start": 1234.37, "end": 1234.65, "word": " applies", "probability": 0.68505859375}, {"start": 1234.65, "end": 1234.93, "word": " the", "probability": 0.80615234375}, {"start": 1234.93, "end": 1234.97, "word": " new", "probability": 0.8544921875}, {"start": 1234.97, "end": 1235.31, "word": " color", "probability": 0.83740234375}, {"start": 1235.31, "end": 1237.83, "word": " and", "probability": 0.47412109375}, {"start": 1237.83, "end": 1237.91, "word": " the", "probability": 0.424072265625}, {"start": 1237.91, "end": 1238.75, "word": " new", "probability": 0.732421875}, {"start": 1238.75, "end": 1239.03, "word": " border", "probability": 0.58837890625}, {"start": 1239.03, "end": 1239.41, "word": " width", "probability": 0.62744140625}, {"start": 1239.41, "end": 1244.23, "word": " Why", "probability": 0.68798828125}, {"start": 1244.23, "end": 1244.37, "word": " can't", "probability": 0.642333984375}, {"start": 1244.37, "end": 1244.43, "word": " I", "probability": 0.86865234375}, {"start": 1244.43, "end": 1244.59, "word": " see", "probability": 0.9228515625}, {"start": 1244.59, "end": 1244.73, "word": " the", "probability": 0.85400390625}, {"start": 1244.73, "end": 1245.07, "word": " border?", "probability": 0.8203125}], "temperature": 1.0}, {"id": 49, "seek": 126781, "start": 1247.65, "end": 1267.81, "text": "Width, what is this? We wrote it wrong, so we go and edit it, but what? Down here, border-width Where is six? Yes, six border-width", "tokens": [54, 327, 392, 11, 437, 307, 341, 30, 492, 4114, 309, 2085, 11, 370, 321, 352, 293, 8129, 309, 11, 457, 437, 30, 9506, 510, 11, 7838, 12, 21271, 2305, 307, 2309, 30, 1079, 11, 2309, 7838, 12, 21271], "avg_logprob": -0.5679687470197677, "compression_ratio": 1.3232323232323233, "no_speech_prob": 0.0, "words": [{"start": 1247.65, "end": 1248.23, "word": "Width,", "probability": 0.6852823893229166}, {"start": 1248.25, "end": 1248.39, "word": " what", "probability": 0.420166015625}, {"start": 1248.39, "end": 1248.39, "word": " is", "probability": 0.442626953125}, {"start": 1248.39, "end": 1248.61, "word": " this?", "probability": 0.493408203125}, {"start": 1248.69, "end": 1248.77, "word": " We", "probability": 0.79150390625}, {"start": 1248.77, "end": 1248.97, "word": " wrote", "probability": 0.71240234375}, {"start": 1248.97, "end": 1250.07, "word": " it", "probability": 0.9208984375}, {"start": 1250.07, "end": 1250.35, "word": " wrong,", "probability": 0.8173828125}, {"start": 1250.83, "end": 1251.85, "word": " so", "probability": 0.8203125}, {"start": 1251.85, "end": 1252.03, "word": " we", "probability": 0.7177734375}, {"start": 1252.03, "end": 1252.11, "word": " go", "probability": 0.2244873046875}, {"start": 1252.11, "end": 1252.27, "word": " and", "probability": 0.346923828125}, {"start": 1252.27, "end": 1252.49, "word": " edit", "probability": 0.20751953125}, {"start": 1252.49, "end": 1252.67, "word": " it,", "probability": 0.875}, {"start": 1252.69, "end": 1252.79, "word": " but", "probability": 0.419189453125}, {"start": 1252.79, "end": 1253.09, "word": " what?", "probability": 0.87158203125}, {"start": 1253.27, "end": 1253.65, "word": " Down", "probability": 0.432373046875}, {"start": 1253.65, "end": 1254.03, "word": " here,", "probability": 0.83984375}, {"start": 1254.55, "end": 1254.95, "word": " border", "probability": 0.81787109375}, {"start": 1254.95, "end": 1255.43, "word": "-width", "probability": 0.642578125}, {"start": 1255.43, "end": 1264.23, "word": " Where", "probability": 0.60595703125}, {"start": 1264.23, "end": 1264.33, "word": " is", "probability": 0.62353515625}, {"start": 1264.33, "end": 1264.63, "word": " six?", "probability": 0.473388671875}, {"start": 1265.79, "end": 1266.37, "word": " Yes,", "probability": 0.41455078125}, {"start": 1266.59, "end": 1266.93, "word": " six", "probability": 0.89501953125}, {"start": 1266.93, "end": 1267.41, "word": " border", "probability": 0.59423828125}, {"start": 1267.41, "end": 1267.81, "word": "-width", "probability": 0.90576171875}], "temperature": 1.0}, {"id": 50, "seek": 129666, "start": 1270.5, "end": 1296.66, "text": " okay, we came here in the draw this is the border's draw do like this and then what do I do? I tell him to go to shape and tell him to draw and send me G to D now describe I want to describe the shape I want to tell him to return shape.describe and then here I tell him with", "tokens": [1392, 11, 321, 1361, 510, 294, 264, 2642, 341, 307, 264, 7838, 311, 2642, 360, 411, 341, 293, 550, 437, 360, 286, 360, 30, 286, 980, 796, 281, 352, 281, 3909, 293, 980, 796, 281, 2642, 293, 2845, 385, 460, 281, 413, 586, 6786, 286, 528, 281, 6786, 264, 3909, 286, 528, 281, 980, 796, 281, 2736, 3909, 13, 14792, 8056, 293, 550, 510, 286, 980, 796, 365], "avg_logprob": -0.5303442167199176, "compression_ratio": 1.7973856209150327, "no_speech_prob": 3.4570693969726562e-06, "words": [{"start": 1270.5, "end": 1271.02, "word": " okay,", "probability": 0.08135986328125}, {"start": 1271.74, "end": 1272.22, "word": " we", "probability": 0.32177734375}, {"start": 1272.22, "end": 1272.4, "word": " came", "probability": 0.265869140625}, {"start": 1272.4, "end": 1272.82, "word": " here", "probability": 0.71630859375}, {"start": 1272.82, "end": 1273.08, "word": " in", "probability": 0.54052734375}, {"start": 1273.08, "end": 1273.18, "word": " the", "probability": 0.6259765625}, {"start": 1273.18, "end": 1273.46, "word": " draw", "probability": 0.66064453125}, {"start": 1273.46, "end": 1274.36, "word": " this", "probability": 0.2186279296875}, {"start": 1274.36, "end": 1274.38, "word": " is", "probability": 0.6787109375}, {"start": 1274.38, "end": 1274.96, "word": " the", "probability": 0.63525390625}, {"start": 1274.96, "end": 1275.16, "word": " border's", "probability": 0.40447998046875}, {"start": 1275.16, "end": 1275.16, "word": " draw", "probability": 0.748046875}, {"start": 1275.16, "end": 1276.0, "word": " do", "probability": 0.2568359375}, {"start": 1276.0, "end": 1276.22, "word": " like", "probability": 0.42822265625}, {"start": 1276.22, "end": 1276.52, "word": " this", "probability": 0.8564453125}, {"start": 1276.52, "end": 1277.08, "word": " and", "probability": 0.40234375}, {"start": 1277.08, "end": 1277.56, "word": " then", "probability": 0.70166015625}, {"start": 1277.56, "end": 1278.08, "word": " what", "probability": 0.59228515625}, {"start": 1278.08, "end": 1278.2, "word": " do", "probability": 0.326416015625}, {"start": 1278.2, "end": 1278.2, "word": " I", "probability": 0.408935546875}, {"start": 1278.2, "end": 1278.52, "word": " do?", "probability": 0.94677734375}, {"start": 1278.64, "end": 1278.74, "word": " I", "probability": 0.8193359375}, {"start": 1278.74, "end": 1278.88, "word": " tell", "probability": 0.240966796875}, {"start": 1278.88, "end": 1278.98, "word": " him", "probability": 0.6318359375}, {"start": 1278.98, "end": 1279.04, "word": " to", "probability": 0.6474609375}, {"start": 1279.04, "end": 1279.12, "word": " go", "probability": 0.939453125}, {"start": 1279.12, "end": 1279.26, "word": " to", "probability": 0.9169921875}, {"start": 1279.26, "end": 1279.8, "word": " shape", "probability": 0.71240234375}, {"start": 1279.8, "end": 1281.28, "word": " and", "probability": 0.77978515625}, {"start": 1281.28, "end": 1281.5, "word": " tell", "probability": 0.62841796875}, {"start": 1281.5, "end": 1281.76, "word": " him", "probability": 0.935546875}, {"start": 1281.76, "end": 1282.42, "word": " to", "probability": 0.5205078125}, {"start": 1282.42, "end": 1282.7, "word": " draw", "probability": 0.8759765625}, {"start": 1282.7, "end": 1283.46, "word": " and", "probability": 0.83544921875}, {"start": 1283.46, "end": 1283.74, "word": " send", "probability": 0.55224609375}, {"start": 1283.74, "end": 1284.0, "word": " me", "probability": 0.6025390625}, {"start": 1284.0, "end": 1284.42, "word": " G", "probability": 0.499755859375}, {"start": 1284.42, "end": 1284.62, "word": " to", "probability": 0.919921875}, {"start": 1284.62, "end": 1284.78, "word": " D", "probability": 0.9912109375}, {"start": 1284.78, "end": 1286.94, "word": " now", "probability": 0.7548828125}, {"start": 1286.94, "end": 1287.38, "word": " describe", "probability": 0.66259765625}, {"start": 1287.38, "end": 1288.52, "word": " I", "probability": 0.13720703125}, {"start": 1288.52, "end": 1288.68, "word": " want", "probability": 0.430908203125}, {"start": 1288.68, "end": 1288.76, "word": " to", "probability": 0.93408203125}, {"start": 1288.76, "end": 1288.96, "word": " describe", "probability": 0.697265625}, {"start": 1288.96, "end": 1289.1, "word": " the", "probability": 0.8251953125}, {"start": 1289.1, "end": 1289.38, "word": " shape", "probability": 0.869140625}, {"start": 1289.38, "end": 1290.18, "word": " I", "probability": 0.7578125}, {"start": 1290.18, "end": 1290.26, "word": " want", "probability": 0.468505859375}, {"start": 1290.26, "end": 1290.32, "word": " to", "probability": 0.9638671875}, {"start": 1290.32, "end": 1290.4, "word": " tell", "probability": 0.56494140625}, {"start": 1290.4, "end": 1290.48, "word": " him", "probability": 0.845703125}, {"start": 1290.48, "end": 1290.54, "word": " to", "probability": 0.48779296875}, {"start": 1290.54, "end": 1290.96, "word": " return", "probability": 0.90087890625}, {"start": 1290.96, "end": 1292.7, "word": " shape", "probability": 0.896484375}, {"start": 1292.7, "end": 1295.24, "word": ".describe", "probability": 0.76708984375}, {"start": 1295.24, "end": 1295.68, "word": " and", "probability": 0.64794921875}, {"start": 1295.68, "end": 1295.9, "word": " then", "probability": 0.65625}, {"start": 1295.9, "end": 1296.02, "word": " here", "probability": 0.5673828125}, {"start": 1296.02, "end": 1296.18, "word": " I", "probability": 0.91064453125}, {"start": 1296.18, "end": 1296.3, "word": " tell", "probability": 0.5380859375}, {"start": 1296.3, "end": 1296.4, "word": " him", "probability": 0.88623046875}, {"start": 1296.4, "end": 1296.66, "word": " with", "probability": 0.66552734375}], "temperature": 1.0}, {"id": 51, "seek": 132733, "start": 1299.93, "end": 1327.33, "text": "with border Okay, what did I do? You will say this is the same thing we did No, look with me Because I made a class called border Actually, this border covers the shape It doesn't extend it, it covers it Okay, look with me I have two ways to add new features to any class Subclassing", "tokens": [11820, 7838, 1033, 11, 437, 630, 286, 360, 30, 509, 486, 584, 341, 307, 264, 912, 551, 321, 630, 883, 11, 574, 365, 385, 1436, 286, 1027, 257, 1508, 1219, 7838, 5135, 11, 341, 7838, 10538, 264, 3909, 467, 1177, 380, 10101, 309, 11, 309, 10538, 309, 1033, 11, 574, 365, 385, 286, 362, 732, 2098, 281, 909, 777, 4122, 281, 604, 1508, 8511, 11665, 278], "avg_logprob": -0.49113804635716907, "compression_ratio": 1.5635359116022098, "no_speech_prob": 9.161233901977539e-05, "words": [{"start": 1299.93, "end": 1300.19, "word": "with", "probability": 0.375}, {"start": 1300.19, "end": 1300.55, "word": " border", "probability": 0.80419921875}, {"start": 1300.55, "end": 1301.45, "word": " Okay,", "probability": 0.06634521484375}, {"start": 1301.47, "end": 1301.75, "word": " what", "probability": 0.6669921875}, {"start": 1301.75, "end": 1301.81, "word": " did", "probability": 0.7314453125}, {"start": 1301.81, "end": 1301.81, "word": " I", "probability": 0.93994140625}, {"start": 1301.81, "end": 1302.01, "word": " do?", "probability": 0.94189453125}, {"start": 1302.11, "end": 1302.19, "word": " You", "probability": 0.216552734375}, {"start": 1302.19, "end": 1302.25, "word": " will", "probability": 0.305419921875}, {"start": 1302.25, "end": 1302.43, "word": " say", "probability": 0.59130859375}, {"start": 1302.43, "end": 1302.59, "word": " this", "probability": 0.189208984375}, {"start": 1302.59, "end": 1302.59, "word": " is", "probability": 0.89990234375}, {"start": 1302.59, "end": 1303.27, "word": " the", "probability": 0.6103515625}, {"start": 1303.27, "end": 1303.49, "word": " same", "probability": 0.8837890625}, {"start": 1303.49, "end": 1303.61, "word": " thing", "probability": 0.404296875}, {"start": 1303.61, "end": 1303.69, "word": " we", "probability": 0.386474609375}, {"start": 1303.69, "end": 1304.11, "word": " did", "probability": 0.76025390625}, {"start": 1304.11, "end": 1304.47, "word": " No,", "probability": 0.343994140625}, {"start": 1304.65, "end": 1304.93, "word": " look", "probability": 0.76416015625}, {"start": 1304.93, "end": 1305.09, "word": " with", "probability": 0.431884765625}, {"start": 1305.09, "end": 1305.47, "word": " me", "probability": 0.9677734375}, {"start": 1305.47, "end": 1306.03, "word": " Because", "probability": 0.301025390625}, {"start": 1306.03, "end": 1306.21, "word": " I", "probability": 0.9296875}, {"start": 1306.21, "end": 1306.41, "word": " made", "probability": 0.455810546875}, {"start": 1306.41, "end": 1306.53, "word": " a", "probability": 0.5791015625}, {"start": 1306.53, "end": 1306.83, "word": " class", "probability": 0.93603515625}, {"start": 1306.83, "end": 1308.01, "word": " called", "probability": 0.35498046875}, {"start": 1308.01, "end": 1308.39, "word": " border", "probability": 0.7314453125}, {"start": 1308.39, "end": 1308.89, "word": " Actually,", "probability": 0.42041015625}, {"start": 1309.05, "end": 1309.15, "word": " this", "probability": 0.84814453125}, {"start": 1309.15, "end": 1309.67, "word": " border", "probability": 0.81689453125}, {"start": 1309.67, "end": 1310.27, "word": " covers", "probability": 0.37548828125}, {"start": 1310.27, "end": 1311.71, "word": " the", "probability": 0.65185546875}, {"start": 1311.71, "end": 1311.99, "word": " shape", "probability": 0.904296875}, {"start": 1311.99, "end": 1312.55, "word": " It", "probability": 0.347412109375}, {"start": 1312.55, "end": 1312.67, "word": " doesn't", "probability": 0.724609375}, {"start": 1312.67, "end": 1313.27, "word": " extend", "probability": 0.416015625}, {"start": 1313.27, "end": 1313.87, "word": " it,", "probability": 0.7978515625}, {"start": 1313.87, "end": 1314.55, "word": " it", "probability": 0.84033203125}, {"start": 1314.55, "end": 1314.79, "word": " covers", "probability": 0.7568359375}, {"start": 1314.79, "end": 1315.53, "word": " it", "probability": 0.91162109375}, {"start": 1315.53, "end": 1316.01, "word": " Okay,", "probability": 0.41015625}, {"start": 1316.31, "end": 1316.67, "word": " look", "probability": 0.89990234375}, {"start": 1316.67, "end": 1316.81, "word": " with", "probability": 0.875}, {"start": 1316.81, "end": 1317.11, "word": " me", "probability": 0.9658203125}, {"start": 1317.11, "end": 1320.19, "word": " I", "probability": 0.9619140625}, {"start": 1320.19, "end": 1320.43, "word": " have", "probability": 0.9365234375}, {"start": 1320.43, "end": 1320.97, "word": " two", "probability": 0.810546875}, {"start": 1320.97, "end": 1320.97, "word": " ways", "probability": 0.72802734375}, {"start": 1320.97, "end": 1323.31, "word": " to", "probability": 0.6484375}, {"start": 1323.31, "end": 1323.63, "word": " add", "probability": 0.9228515625}, {"start": 1323.63, "end": 1323.73, "word": " new", "probability": 0.7529296875}, {"start": 1323.73, "end": 1324.11, "word": " features", "probability": 0.300048828125}, {"start": 1324.11, "end": 1324.57, "word": " to", "probability": 0.82275390625}, {"start": 1324.57, "end": 1324.81, "word": " any", "probability": 0.84521484375}, {"start": 1324.81, "end": 1325.61, "word": " class", "probability": 0.95361328125}, {"start": 1325.61, "end": 1327.33, "word": " Subclassing", "probability": 0.76416015625}], "temperature": 1.0}, {"id": 52, "seek": 135647, "start": 1329.93, "end": 1356.47, "text": "If we assume that I have a class that has attributes, these attributes for example, and methods, okay? These are one, two, three, and these methods are one, two, three. I would like to add a new functionality. What does a new functionality mean? It means new attributes, new methods, or modifying old methods. I go and create a new class. What is the goal? Subclassing. Extend, okay?", "tokens": [8031, 321, 6552, 300, 286, 362, 257, 1508, 300, 575, 17212, 11, 613, 17212, 337, 1365, 11, 293, 7150, 11, 1392, 30, 1981, 366, 472, 11, 732, 11, 1045, 11, 293, 613, 7150, 366, 472, 11, 732, 11, 1045, 13, 286, 576, 411, 281, 909, 257, 777, 14980, 13, 708, 775, 257, 777, 14980, 914, 30, 467, 1355, 777, 17212, 11, 777, 7150, 11, 420, 42626, 1331, 7150, 13, 286, 352, 293, 1884, 257, 777, 1508, 13, 708, 307, 264, 3387, 30, 8511, 11665, 278, 13, 9881, 521, 11, 1392, 30], "avg_logprob": -0.4130434831199439, "compression_ratio": 1.8238095238095238, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1329.93, "end": 1330.17, "word": "If", "probability": 0.2169189453125}, {"start": 1330.17, "end": 1330.27, "word": " we", "probability": 0.404052734375}, {"start": 1330.27, "end": 1330.51, "word": " assume", "probability": 0.46435546875}, {"start": 1330.51, "end": 1330.69, "word": " that", "probability": 0.7626953125}, {"start": 1330.69, "end": 1330.83, "word": " I", "probability": 0.8740234375}, {"start": 1330.83, "end": 1331.03, "word": " have", "probability": 0.93017578125}, {"start": 1331.03, "end": 1331.15, "word": " a", "probability": 0.953125}, {"start": 1331.15, "end": 1331.51, "word": " class", "probability": 0.962890625}, {"start": 1331.51, "end": 1332.11, "word": " that", "probability": 0.267578125}, {"start": 1332.11, "end": 1332.27, "word": " has", "probability": 0.72900390625}, {"start": 1332.27, "end": 1333.03, "word": " attributes,", "probability": 0.85693359375}, {"start": 1333.17, "end": 1333.37, "word": " these", "probability": 0.358642578125}, {"start": 1333.37, "end": 1334.05, "word": " attributes", "probability": 0.58251953125}, {"start": 1334.05, "end": 1334.23, "word": " for", "probability": 0.2227783203125}, {"start": 1334.23, "end": 1334.53, "word": " example,", "probability": 0.93994140625}, {"start": 1334.99, "end": 1335.13, "word": " and", "probability": 0.86669921875}, {"start": 1335.13, "end": 1335.67, "word": " methods,", "probability": 0.681640625}, {"start": 1336.11, "end": 1337.23, "word": " okay?", "probability": 0.273681640625}, {"start": 1337.33, "end": 1337.51, "word": " These", "probability": 0.253662109375}, {"start": 1337.51, "end": 1337.59, "word": " are", "probability": 0.58203125}, {"start": 1337.59, "end": 1337.71, "word": " one,", "probability": 0.640625}, {"start": 1337.81, "end": 1337.99, "word": " two,", "probability": 0.93603515625}, {"start": 1338.15, "end": 1338.47, "word": " three,", "probability": 0.87890625}, {"start": 1338.59, "end": 1338.91, "word": " and", "probability": 0.90234375}, {"start": 1338.91, "end": 1339.05, "word": " these", "probability": 0.85205078125}, {"start": 1339.05, "end": 1339.49, "word": " methods", "probability": 0.67626953125}, {"start": 1339.49, "end": 1339.63, "word": " are", "probability": 0.7275390625}, {"start": 1339.63, "end": 1339.77, "word": " one,", "probability": 0.88232421875}, {"start": 1339.93, "end": 1340.17, "word": " two,", "probability": 0.93115234375}, {"start": 1340.91, "end": 1341.37, "word": " three.", "probability": 0.91015625}, {"start": 1341.59, "end": 1341.99, "word": " I", "probability": 0.91796875}, {"start": 1341.99, "end": 1342.19, "word": " would", "probability": 0.370849609375}, {"start": 1342.19, "end": 1342.25, "word": " like", "probability": 0.826171875}, {"start": 1342.25, "end": 1342.33, "word": " to", "probability": 0.96923828125}, {"start": 1342.33, "end": 1342.71, "word": " add", "probability": 0.93212890625}, {"start": 1342.71, "end": 1343.43, "word": " a", "probability": 0.79248046875}, {"start": 1343.43, "end": 1343.43, "word": " new", "probability": 0.90966796875}, {"start": 1343.43, "end": 1343.95, "word": " functionality.", "probability": 0.8955078125}, {"start": 1344.33, "end": 1344.43, "word": " What", "probability": 0.86181640625}, {"start": 1344.43, "end": 1344.53, "word": " does", "probability": 0.65576171875}, {"start": 1344.53, "end": 1344.63, "word": " a", "probability": 0.4169921875}, {"start": 1344.63, "end": 1344.63, "word": " new", "probability": 0.91845703125}, {"start": 1344.63, "end": 1344.99, "word": " functionality", "probability": 0.94091796875}, {"start": 1344.99, "end": 1345.39, "word": " mean?", "probability": 0.94287109375}, {"start": 1345.77, "end": 1345.91, "word": " It", "probability": 0.294677734375}, {"start": 1345.91, "end": 1346.01, "word": " means", "probability": 0.8974609375}, {"start": 1346.01, "end": 1346.07, "word": " new", "probability": 0.64697265625}, {"start": 1346.07, "end": 1346.73, "word": " attributes,", "probability": 0.888671875}, {"start": 1347.49, "end": 1347.55, "word": " new", "probability": 0.63134765625}, {"start": 1347.55, "end": 1347.91, "word": " methods,", "probability": 0.7744140625}, {"start": 1348.31, "end": 1348.45, "word": " or", "probability": 0.94873046875}, {"start": 1348.45, "end": 1348.83, "word": " modifying", "probability": 0.1580810546875}, {"start": 1348.83, "end": 1349.05, "word": " old", "probability": 0.78076171875}, {"start": 1349.05, "end": 1350.21, "word": " methods.", "probability": 0.90869140625}, {"start": 1350.47, "end": 1350.85, "word": " I", "probability": 0.96240234375}, {"start": 1350.85, "end": 1350.99, "word": " go", "probability": 0.61962890625}, {"start": 1350.99, "end": 1351.09, "word": " and", "probability": 0.53076171875}, {"start": 1351.09, "end": 1351.25, "word": " create", "probability": 0.52294921875}, {"start": 1351.25, "end": 1351.35, "word": " a", "probability": 0.99072265625}, {"start": 1351.35, "end": 1351.99, "word": " new", "probability": 0.9130859375}, {"start": 1351.99, "end": 1351.99, "word": " class.", "probability": 0.97021484375}, {"start": 1352.27, "end": 1352.43, "word": " What", "probability": 0.70166015625}, {"start": 1352.43, "end": 1352.43, "word": " is", "probability": 0.65771484375}, {"start": 1352.43, "end": 1352.49, "word": " the", "probability": 0.701171875}, {"start": 1352.49, "end": 1352.55, "word": " goal?", "probability": 0.62451171875}, {"start": 1354.47, "end": 1354.91, "word": " Subclassing.", "probability": 0.84814453125}, {"start": 1355.19, "end": 1355.63, "word": " Extend,", "probability": 0.8818359375}, {"start": 1356.13, "end": 1356.47, "word": " okay?", "probability": 0.74755859375}], "temperature": 1.0}, {"id": 53, "seek": 136951, "start": 1357.71, "end": 1369.51, "text": "I don't write 1,2,3 I write x4 and x5 as new attributes and I don't write 1,2,3 I write 4", "tokens": [40, 500, 380, 2464, 502, 11, 17, 11, 18, 286, 2464, 2031, 19, 293, 2031, 20, 382, 777, 17212, 293, 286, 500, 380, 2464, 502, 11, 17, 11, 18, 286, 2464, 1017], "avg_logprob": -0.36671401515151514, "compression_ratio": 1.390625, "no_speech_prob": 9.179115295410156e-06, "words": [{"start": 1357.71, "end": 1357.93, "word": "I", "probability": 0.552734375}, {"start": 1357.93, "end": 1358.19, "word": " don't", "probability": 0.858642578125}, {"start": 1358.19, "end": 1358.19, "word": " write", "probability": 0.281982421875}, {"start": 1358.19, "end": 1358.53, "word": " 1", "probability": 0.57958984375}, {"start": 1358.53, "end": 1358.81, "word": ",2", "probability": 0.66845703125}, {"start": 1358.81, "end": 1359.19, "word": ",3", "probability": 0.787841796875}, {"start": 1359.19, "end": 1359.99, "word": " I", "probability": 0.298095703125}, {"start": 1359.99, "end": 1360.57, "word": " write", "probability": 0.7607421875}, {"start": 1360.57, "end": 1362.01, "word": " x4", "probability": 0.72314453125}, {"start": 1362.01, "end": 1362.87, "word": " and", "probability": 0.73193359375}, {"start": 1362.87, "end": 1363.47, "word": " x5", "probability": 0.991455078125}, {"start": 1363.47, "end": 1363.97, "word": " as", "probability": 0.30859375}, {"start": 1363.97, "end": 1364.03, "word": " new", "probability": 0.489501953125}, {"start": 1364.03, "end": 1364.65, "word": " attributes", "probability": 0.87841796875}, {"start": 1364.65, "end": 1365.99, "word": " and", "probability": 0.38134765625}, {"start": 1365.99, "end": 1366.09, "word": " I", "probability": 0.7578125}, {"start": 1366.09, "end": 1366.39, "word": " don't", "probability": 0.947509765625}, {"start": 1366.39, "end": 1366.39, "word": " write", "probability": 0.88232421875}, {"start": 1366.39, "end": 1366.63, "word": " 1", "probability": 0.958984375}, {"start": 1366.63, "end": 1366.95, "word": ",2", "probability": 0.94873046875}, {"start": 1366.95, "end": 1367.41, "word": ",3", "probability": 0.966552734375}, {"start": 1367.41, "end": 1368.43, "word": " I", "probability": 0.73095703125}, {"start": 1368.43, "end": 1368.75, "word": " write", "probability": 0.853515625}, {"start": 1368.75, "end": 1369.51, "word": " 4", "probability": 0.55908203125}], "temperature": 1.0}, {"id": 54, "seek": 139801, "start": 1370.67, "end": 1398.01, "text": " and five and if I want to modify one of these I can override it and through it I can claim the super for example or I can change the code in it completely this is in the case of subclasses beautiful and excellent and what makes it special is that you will not rewrite the code in the app as we learned but the problem is that if I have ten classes and I want to add new features to them you have to do x2 to the ten", "tokens": [293, 1732, 293, 498, 286, 528, 281, 16927, 472, 295, 613, 286, 393, 42321, 309, 293, 807, 309, 286, 393, 3932, 264, 1687, 337, 1365, 420, 286, 393, 1319, 264, 3089, 294, 309, 2584, 341, 307, 294, 264, 1389, 295, 1422, 11665, 279, 2238, 293, 7103, 293, 437, 1669, 309, 2121, 307, 300, 291, 486, 406, 28132, 264, 3089, 294, 264, 724, 382, 321, 3264, 457, 264, 1154, 307, 300, 498, 286, 362, 2064, 5359, 293, 286, 528, 281, 909, 777, 4122, 281, 552, 291, 362, 281, 360, 2031, 17, 281, 264, 2064], "avg_logprob": -0.5352393819930705, "compression_ratio": 1.7854077253218885, "no_speech_prob": 4.7326087951660156e-05, "words": [{"start": 1370.67, "end": 1370.87, "word": " and", "probability": 0.333251953125}, {"start": 1370.87, "end": 1371.15, "word": " five", "probability": 0.40869140625}, {"start": 1371.15, "end": 1372.07, "word": " and", "probability": 0.392578125}, {"start": 1372.07, "end": 1372.33, "word": " if", "probability": 0.9326171875}, {"start": 1372.33, "end": 1372.57, "word": " I", "probability": 0.81982421875}, {"start": 1372.57, "end": 1372.93, "word": " want", "probability": 0.6865234375}, {"start": 1372.93, "end": 1373.07, "word": " to", "probability": 0.951171875}, {"start": 1373.07, "end": 1373.41, "word": " modify", "probability": 0.267333984375}, {"start": 1373.41, "end": 1373.87, "word": " one", "probability": 0.775390625}, {"start": 1373.87, "end": 1373.99, "word": " of", "probability": 0.92333984375}, {"start": 1373.99, "end": 1374.39, "word": " these", "probability": 0.412109375}, {"start": 1374.39, "end": 1374.89, "word": " I", "probability": 0.57421875}, {"start": 1374.89, "end": 1375.23, "word": " can", "probability": 0.271728515625}, {"start": 1375.23, "end": 1375.85, "word": " override", "probability": 0.72216796875}, {"start": 1375.85, "end": 1376.23, "word": " it", "probability": 0.80908203125}, {"start": 1376.23, "end": 1377.03, "word": " and", "probability": 0.59619140625}, {"start": 1377.03, "end": 1377.25, "word": " through", "probability": 0.1864013671875}, {"start": 1377.25, "end": 1377.69, "word": " it", "probability": 0.70361328125}, {"start": 1377.69, "end": 1377.75, "word": " I", "probability": 0.7841796875}, {"start": 1377.75, "end": 1377.79, "word": " can", "probability": 0.85791015625}, {"start": 1377.79, "end": 1378.03, "word": " claim", "probability": 0.09326171875}, {"start": 1378.03, "end": 1378.17, "word": " the", "probability": 0.556640625}, {"start": 1378.17, "end": 1378.37, "word": " super", "probability": 0.7861328125}, {"start": 1378.37, "end": 1378.55, "word": " for", "probability": 0.394287109375}, {"start": 1378.55, "end": 1378.77, "word": " example", "probability": 0.9169921875}, {"start": 1378.77, "end": 1379.21, "word": " or", "probability": 0.81103515625}, {"start": 1379.21, "end": 1379.69, "word": " I", "probability": 0.6005859375}, {"start": 1379.69, "end": 1379.69, "word": " can", "probability": 0.5908203125}, {"start": 1379.69, "end": 1379.87, "word": " change", "probability": 0.8251953125}, {"start": 1379.87, "end": 1380.05, "word": " the", "probability": 0.78125}, {"start": 1380.05, "end": 1380.21, "word": " code", "probability": 0.350341796875}, {"start": 1380.21, "end": 1380.63, "word": " in", "probability": 0.259521484375}, {"start": 1380.63, "end": 1380.75, "word": " it", "probability": 0.79150390625}, {"start": 1380.75, "end": 1381.11, "word": " completely", "probability": 0.457275390625}, {"start": 1381.11, "end": 1381.85, "word": " this", "probability": 0.27197265625}, {"start": 1381.85, "end": 1381.97, "word": " is", "probability": 0.69140625}, {"start": 1381.97, "end": 1382.01, "word": " in", "probability": 0.71240234375}, {"start": 1382.01, "end": 1382.11, "word": " the", "probability": 0.5}, {"start": 1382.11, "end": 1382.23, "word": " case", "probability": 0.84130859375}, {"start": 1382.23, "end": 1382.35, "word": " of", "probability": 0.966796875}, {"start": 1382.35, "end": 1384.25, "word": " subclasses", "probability": 0.5585123697916666}, {"start": 1384.25, "end": 1384.95, "word": " beautiful", "probability": 0.19482421875}, {"start": 1384.95, "end": 1385.23, "word": " and", "probability": 0.89013671875}, {"start": 1385.23, "end": 1385.71, "word": " excellent", "probability": 0.6416015625}, {"start": 1385.71, "end": 1385.85, "word": " and", "probability": 0.5859375}, {"start": 1385.85, "end": 1385.97, "word": " what", "probability": 0.306396484375}, {"start": 1385.97, "end": 1386.05, "word": " makes", "probability": 0.35546875}, {"start": 1386.05, "end": 1386.47, "word": " it", "probability": 0.7080078125}, {"start": 1386.47, "end": 1386.47, "word": " special", "probability": 0.57568359375}, {"start": 1386.47, "end": 1386.61, "word": " is", "probability": 0.80517578125}, {"start": 1386.61, "end": 1387.35, "word": " that", "probability": 0.896484375}, {"start": 1387.35, "end": 1387.57, "word": " you", "probability": 0.923828125}, {"start": 1387.57, "end": 1387.85, "word": " will", "probability": 0.5400390625}, {"start": 1387.85, "end": 1387.85, "word": " not", "probability": 0.89111328125}, {"start": 1387.85, "end": 1388.27, "word": " rewrite", "probability": 0.175048828125}, {"start": 1388.27, "end": 1388.89, "word": " the", "probability": 0.87353515625}, {"start": 1388.89, "end": 1389.11, "word": " code", "probability": 0.92138671875}, {"start": 1389.11, "end": 1389.29, "word": " in", "probability": 0.67529296875}, {"start": 1389.29, "end": 1389.39, "word": " the", "probability": 0.77197265625}, {"start": 1389.39, "end": 1389.57, "word": " app", "probability": 0.322998046875}, {"start": 1389.57, "end": 1390.61, "word": " as", "probability": 0.568359375}, {"start": 1390.61, "end": 1390.79, "word": " we", "probability": 0.91943359375}, {"start": 1390.79, "end": 1391.09, "word": " learned", "probability": 0.59619140625}, {"start": 1391.09, "end": 1392.33, "word": " but", "probability": 0.59521484375}, {"start": 1392.33, "end": 1392.45, "word": " the", "probability": 0.7001953125}, {"start": 1392.45, "end": 1392.69, "word": " problem", "probability": 0.82861328125}, {"start": 1392.69, "end": 1392.95, "word": " is", "probability": 0.8935546875}, {"start": 1392.95, "end": 1393.15, "word": " that", "probability": 0.74560546875}, {"start": 1393.15, "end": 1393.23, "word": " if", "probability": 0.8935546875}, {"start": 1393.23, "end": 1393.39, "word": " I", "probability": 0.8955078125}, {"start": 1393.39, "end": 1393.59, "word": " have", "probability": 0.921875}, {"start": 1393.59, "end": 1393.85, "word": " ten", "probability": 0.7275390625}, {"start": 1393.85, "end": 1394.41, "word": " classes", "probability": 0.91064453125}, {"start": 1394.41, "end": 1394.69, "word": " and", "probability": 0.5869140625}, {"start": 1394.69, "end": 1394.79, "word": " I", "probability": 0.7646484375}, {"start": 1394.79, "end": 1394.83, "word": " want", "probability": 0.375244140625}, {"start": 1394.83, "end": 1394.83, "word": " to", "probability": 0.9609375}, {"start": 1394.83, "end": 1394.95, "word": " add", "probability": 0.91650390625}, {"start": 1394.95, "end": 1395.23, "word": " new", "probability": 0.3076171875}, {"start": 1395.23, "end": 1395.67, "word": " features", "probability": 0.3447265625}, {"start": 1395.67, "end": 1395.87, "word": " to", "probability": 0.6787109375}, {"start": 1395.87, "end": 1396.01, "word": " them", "probability": 0.7294921875}, {"start": 1396.01, "end": 1396.89, "word": " you", "probability": 0.3720703125}, {"start": 1396.89, "end": 1397.03, "word": " have", "probability": 0.367919921875}, {"start": 1397.03, "end": 1397.11, "word": " to", "probability": 0.9677734375}, {"start": 1397.11, "end": 1397.29, "word": " do", "probability": 0.5146484375}, {"start": 1397.29, "end": 1397.67, "word": " x2", "probability": 0.62548828125}, {"start": 1397.67, "end": 1397.77, "word": " to", "probability": 0.60986328125}, {"start": 1397.77, "end": 1397.85, "word": " the", "probability": 0.4580078125}, {"start": 1397.85, "end": 1398.01, "word": " ten", "probability": 0.552734375}], "temperature": 1.0}, {"id": 55, "seek": 141100, "start": 1398.82, "end": 1411.0, "text": "The second way is the decorator way. What does it mean? I want to add a new functionality, I don't want to do subclassing, I want to create an object from the old class", "tokens": [2278, 1150, 636, 307, 264, 7919, 1639, 636, 13, 708, 775, 309, 914, 30, 286, 528, 281, 909, 257, 777, 14980, 11, 286, 500, 380, 528, 281, 360, 1422, 11665, 278, 11, 286, 528, 281, 1884, 364, 2657, 490, 264, 1331, 1508], "avg_logprob": -0.5032703211141187, "compression_ratio": 1.3548387096774193, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1398.8200000000002, "end": 1399.18, "word": "The", "probability": 0.50390625}, {"start": 1399.18, "end": 1399.54, "word": " second", "probability": 0.7333984375}, {"start": 1399.54, "end": 1399.54, "word": " way", "probability": 0.587890625}, {"start": 1399.54, "end": 1399.84, "word": " is", "probability": 0.86181640625}, {"start": 1399.84, "end": 1400.32, "word": " the", "probability": 0.393798828125}, {"start": 1400.32, "end": 1400.96, "word": " decorator", "probability": 0.914306640625}, {"start": 1400.96, "end": 1402.68, "word": " way.", "probability": 0.41357421875}, {"start": 1404.3, "end": 1404.34, "word": " What", "probability": 0.1710205078125}, {"start": 1404.34, "end": 1404.66, "word": " does", "probability": 0.59765625}, {"start": 1404.66, "end": 1404.66, "word": " it", "probability": 0.544921875}, {"start": 1404.66, "end": 1404.82, "word": " mean?", "probability": 0.45263671875}, {"start": 1404.96, "end": 1405.14, "word": " I", "probability": 0.274658203125}, {"start": 1405.14, "end": 1405.42, "word": " want", "probability": 0.60693359375}, {"start": 1405.42, "end": 1405.46, "word": " to", "probability": 0.9580078125}, {"start": 1405.46, "end": 1405.62, "word": " add", "probability": 0.9111328125}, {"start": 1405.62, "end": 1405.72, "word": " a", "probability": 0.7080078125}, {"start": 1405.72, "end": 1405.72, "word": " new", "probability": 0.8984375}, {"start": 1405.72, "end": 1406.44, "word": " functionality,", "probability": 0.7265625}, {"start": 1407.62, "end": 1408.7, "word": " I", "probability": 0.39697265625}, {"start": 1408.7, "end": 1408.76, "word": " don't", "probability": 0.65625}, {"start": 1408.76, "end": 1408.9, "word": " want", "probability": 0.450439453125}, {"start": 1408.9, "end": 1408.9, "word": " to", "probability": 0.79638671875}, {"start": 1408.9, "end": 1409.02, "word": " do", "probability": 0.5009765625}, {"start": 1409.02, "end": 1409.7, "word": " subclassing,", "probability": 0.8157552083333334}, {"start": 1409.78, "end": 1409.8, "word": " I", "probability": 0.81298828125}, {"start": 1409.8, "end": 1409.9, "word": " want", "probability": 0.66455078125}, {"start": 1409.9, "end": 1409.9, "word": " to", "probability": 0.9267578125}, {"start": 1409.9, "end": 1410.0, "word": " create", "probability": 0.38134765625}, {"start": 1410.0, "end": 1410.14, "word": " an", "probability": 0.79296875}, {"start": 1410.14, "end": 1410.38, "word": " object", "probability": 0.96875}, {"start": 1410.38, "end": 1410.58, "word": " from", "probability": 0.787109375}, {"start": 1410.58, "end": 1410.68, "word": " the", "probability": 0.82470703125}, {"start": 1410.68, "end": 1410.7, "word": " old", "probability": 0.63720703125}, {"start": 1410.7, "end": 1411.0, "word": " class", "probability": 0.9365234375}], "temperature": 1.0}, {"id": 56, "seek": 143870, "start": 1412.2, "end": 1438.7, "text": "And wrap it with a new object This wrapping puts in new things How for example, let's go back to the same example This class has x x x and has a circle circle circle This is feature 1,2,3 and this is 1,2,3 I would like to add new features, new attributes, new methods, modifications to previous methods Because if we assume that this class is called A", "tokens": [5289, 7019, 309, 365, 257, 777, 2657, 639, 21993, 8137, 294, 777, 721, 1012, 337, 1365, 11, 718, 311, 352, 646, 281, 264, 912, 1365, 639, 1508, 575, 2031, 2031, 2031, 293, 575, 257, 6329, 6329, 6329, 639, 307, 4111, 502, 11, 17, 11, 18, 293, 341, 307, 502, 11, 17, 11, 18, 286, 576, 411, 281, 909, 777, 4122, 11, 777, 17212, 11, 777, 7150, 11, 26881, 281, 3894, 7150, 1436, 498, 321, 6552, 300, 341, 1508, 307, 1219, 316], "avg_logprob": -0.48170732434202984, "compression_ratio": 1.6714285714285715, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1412.2, "end": 1412.44, "word": "And", "probability": 0.25048828125}, {"start": 1412.44, "end": 1412.74, "word": " wrap", "probability": 0.1849365234375}, {"start": 1412.74, "end": 1412.9, "word": " it", "probability": 0.73876953125}, {"start": 1412.9, "end": 1413.0, "word": " with", "probability": 0.76416015625}, {"start": 1413.0, "end": 1413.04, "word": " a", "probability": 0.82958984375}, {"start": 1413.04, "end": 1413.04, "word": " new", "probability": 0.89697265625}, {"start": 1413.04, "end": 1413.36, "word": " object", "probability": 0.94775390625}, {"start": 1413.36, "end": 1414.62, "word": " This", "probability": 0.361083984375}, {"start": 1414.62, "end": 1415.08, "word": " wrapping", "probability": 0.181396484375}, {"start": 1415.08, "end": 1416.5, "word": " puts", "probability": 0.2479248046875}, {"start": 1416.5, "end": 1416.62, "word": " in", "probability": 0.35107421875}, {"start": 1416.62, "end": 1416.7, "word": " new", "probability": 0.66845703125}, {"start": 1416.7, "end": 1417.14, "word": " things", "probability": 0.72998046875}, {"start": 1417.14, "end": 1418.04, "word": " How", "probability": 0.27978515625}, {"start": 1418.04, "end": 1418.22, "word": " for", "probability": 0.35009765625}, {"start": 1418.22, "end": 1418.5, "word": " example,", "probability": 0.93701171875}, {"start": 1418.88, "end": 1418.96, "word": " let's", "probability": 0.6365966796875}, {"start": 1418.96, "end": 1419.12, "word": " go", "probability": 0.63427734375}, {"start": 1419.12, "end": 1419.14, "word": " back", "probability": 0.8603515625}, {"start": 1419.14, "end": 1419.22, "word": " to", "probability": 0.9375}, {"start": 1419.22, "end": 1419.48, "word": " the", "probability": 0.8759765625}, {"start": 1419.48, "end": 1419.48, "word": " same", "probability": 0.76513671875}, {"start": 1419.48, "end": 1419.82, "word": " example", "probability": 0.94580078125}, {"start": 1419.82, "end": 1420.94, "word": " This", "probability": 0.68994140625}, {"start": 1420.94, "end": 1421.52, "word": " class", "probability": 0.595703125}, {"start": 1421.52, "end": 1422.14, "word": " has", "probability": 0.79150390625}, {"start": 1422.14, "end": 1422.48, "word": " x", "probability": 0.626953125}, {"start": 1422.48, "end": 1422.98, "word": " x", "probability": 0.51806640625}, {"start": 1422.98, "end": 1423.36, "word": " x", "probability": 0.92578125}, {"start": 1423.36, "end": 1423.56, "word": " and", "probability": 0.779296875}, {"start": 1423.56, "end": 1423.82, "word": " has", "probability": 0.2486572265625}, {"start": 1423.82, "end": 1423.92, "word": " a", "probability": 0.6875}, {"start": 1423.92, "end": 1424.06, "word": " circle", "probability": 0.83447265625}, {"start": 1424.06, "end": 1424.44, "word": " circle", "probability": 0.6455078125}, {"start": 1424.44, "end": 1424.82, "word": " circle", "probability": 0.8486328125}, {"start": 1424.82, "end": 1425.64, "word": " This", "probability": 0.456298828125}, {"start": 1425.64, "end": 1425.74, "word": " is", "probability": 0.275390625}, {"start": 1425.74, "end": 1426.0, "word": " feature", "probability": 0.50732421875}, {"start": 1426.0, "end": 1426.28, "word": " 1", "probability": 0.49853515625}, {"start": 1426.28, "end": 1426.56, "word": ",2", "probability": 0.5218505859375}, {"start": 1426.56, "end": 1427.0, "word": ",3", "probability": 0.761474609375}, {"start": 1427.0, "end": 1427.26, "word": " and", "probability": 0.76953125}, {"start": 1427.26, "end": 1427.4, "word": " this", "probability": 0.89892578125}, {"start": 1427.4, "end": 1427.48, "word": " is", "probability": 0.88818359375}, {"start": 1427.48, "end": 1427.62, "word": " 1", "probability": 0.8837890625}, {"start": 1427.62, "end": 1428.06, "word": ",2", "probability": 0.97412109375}, {"start": 1428.06, "end": 1429.3, "word": ",3", "probability": 0.92529296875}, {"start": 1429.3, "end": 1429.94, "word": " I", "probability": 0.8876953125}, {"start": 1429.94, "end": 1430.06, "word": " would", "probability": 0.2413330078125}, {"start": 1430.06, "end": 1430.66, "word": " like", "probability": 0.80126953125}, {"start": 1430.66, "end": 1430.72, "word": " to", "probability": 0.962890625}, {"start": 1430.72, "end": 1430.9, "word": " add", "probability": 0.88525390625}, {"start": 1430.9, "end": 1430.98, "word": " new", "probability": 0.85302734375}, {"start": 1430.98, "end": 1431.6, "word": " features,", "probability": 0.70947265625}, {"start": 1431.82, "end": 1431.96, "word": " new", "probability": 0.71337890625}, {"start": 1431.96, "end": 1432.72, "word": " attributes,", "probability": 0.89990234375}, {"start": 1433.3, "end": 1433.32, "word": " new", "probability": 0.728515625}, {"start": 1433.32, "end": 1433.68, "word": " methods,", "probability": 0.75146484375}, {"start": 1434.1, "end": 1434.34, "word": " modifications", "probability": 0.24267578125}, {"start": 1434.34, "end": 1434.52, "word": " to", "probability": 0.6474609375}, {"start": 1434.52, "end": 1435.82, "word": " previous", "probability": 0.67529296875}, {"start": 1435.82, "end": 1435.92, "word": " methods", "probability": 0.90185546875}, {"start": 1435.92, "end": 1436.58, "word": " Because", "probability": 0.314208984375}, {"start": 1436.58, "end": 1436.78, "word": " if", "probability": 0.82421875}, {"start": 1436.78, "end": 1437.16, "word": " we", "probability": 0.943359375}, {"start": 1437.16, "end": 1437.16, "word": " assume", "probability": 0.412841796875}, {"start": 1437.16, "end": 1437.54, "word": " that", "probability": 0.74609375}, {"start": 1437.54, "end": 1437.74, "word": " this", "probability": 0.88720703125}, {"start": 1437.74, "end": 1438.12, "word": " class", "probability": 0.9345703125}, {"start": 1438.12, "end": 1438.24, "word": " is", "probability": 0.58740234375}, {"start": 1438.24, "end": 1438.46, "word": " called", "probability": 0.68701171875}, {"start": 1438.46, "end": 1438.7, "word": " A", "probability": 0.249755859375}], "temperature": 1.0}, {"id": 57, "seek": 146563, "start": 1440.03, "end": 1465.63, "text": "Go and create a new class Inside it, create an object from what? From what? This is an object from this, okay? So, this thing actually contains on x x x one two three, right? And on a circle circle circle one two three This is an object, object from whom? From this class", "tokens": [12104, 293, 1884, 257, 777, 1508, 15123, 309, 11, 1884, 364, 2657, 490, 437, 30, 3358, 437, 30, 639, 307, 364, 2657, 490, 341, 11, 1392, 30, 407, 11, 341, 551, 767, 8306, 322, 2031, 2031, 2031, 472, 732, 1045, 11, 558, 30, 400, 322, 257, 6329, 6329, 6329, 472, 732, 1045, 639, 307, 364, 2657, 11, 2657, 490, 7101, 30, 3358, 341, 1508], "avg_logprob": -0.5524038461538462, "compression_ratio": 1.8187919463087248, "no_speech_prob": 4.231929779052734e-06, "words": [{"start": 1440.03, "end": 1440.67, "word": "Go", "probability": 0.16552734375}, {"start": 1440.67, "end": 1441.19, "word": " and", "probability": 0.47509765625}, {"start": 1441.19, "end": 1441.33, "word": " create", "probability": 0.5126953125}, {"start": 1441.33, "end": 1441.43, "word": " a", "probability": 0.90771484375}, {"start": 1441.43, "end": 1441.99, "word": " new", "probability": 0.8955078125}, {"start": 1441.99, "end": 1442.07, "word": " class", "probability": 0.9365234375}, {"start": 1442.07, "end": 1444.85, "word": " Inside", "probability": 0.1865234375}, {"start": 1444.85, "end": 1445.53, "word": " it,", "probability": 0.417236328125}, {"start": 1445.85, "end": 1446.07, "word": " create", "probability": 0.390380859375}, {"start": 1446.07, "end": 1446.53, "word": " an", "probability": 0.7041015625}, {"start": 1446.53, "end": 1446.53, "word": " object", "probability": 0.9697265625}, {"start": 1446.53, "end": 1446.69, "word": " from", "probability": 0.5517578125}, {"start": 1446.69, "end": 1446.89, "word": " what?", "probability": 0.2340087890625}, {"start": 1448.33, "end": 1448.97, "word": " From", "probability": 0.323974609375}, {"start": 1448.97, "end": 1449.15, "word": " what?", "probability": 0.5615234375}, {"start": 1449.79, "end": 1450.11, "word": " This", "probability": 0.61083984375}, {"start": 1450.11, "end": 1450.15, "word": " is", "probability": 0.51123046875}, {"start": 1450.15, "end": 1450.31, "word": " an", "probability": 0.7626953125}, {"start": 1450.31, "end": 1450.73, "word": " object", "probability": 0.97412109375}, {"start": 1450.73, "end": 1452.13, "word": " from", "probability": 0.6572265625}, {"start": 1452.13, "end": 1452.45, "word": " this,", "probability": 0.78515625}, {"start": 1453.21, "end": 1453.51, "word": " okay?", "probability": 0.324951171875}, {"start": 1453.97, "end": 1454.23, "word": " So,", "probability": 0.423095703125}, {"start": 1454.35, "end": 1454.81, "word": " this", "probability": 0.50244140625}, {"start": 1454.81, "end": 1455.07, "word": " thing", "probability": 0.294921875}, {"start": 1455.07, "end": 1455.11, "word": " actually", "probability": 0.250244140625}, {"start": 1455.11, "end": 1455.45, "word": " contains", "probability": 0.51220703125}, {"start": 1455.45, "end": 1456.35, "word": " on", "probability": 0.310546875}, {"start": 1456.35, "end": 1456.61, "word": " x", "probability": 0.583984375}, {"start": 1456.61, "end": 1456.91, "word": " x", "probability": 0.38671875}, {"start": 1456.91, "end": 1457.27, "word": " x", "probability": 0.9853515625}, {"start": 1457.27, "end": 1457.63, "word": " one", "probability": 0.31982421875}, {"start": 1457.63, "end": 1457.95, "word": " two", "probability": 0.61328125}, {"start": 1457.95, "end": 1458.37, "word": " three,", "probability": 0.74853515625}, {"start": 1458.45, "end": 1458.71, "word": " right?", "probability": 0.8203125}, {"start": 1459.05, "end": 1459.41, "word": " And", "probability": 0.73388671875}, {"start": 1459.41, "end": 1459.55, "word": " on", "probability": 0.8076171875}, {"start": 1459.55, "end": 1459.77, "word": " a", "probability": 0.4951171875}, {"start": 1459.77, "end": 1459.85, "word": " circle", "probability": 0.85791015625}, {"start": 1459.85, "end": 1460.21, "word": " circle", "probability": 0.62158203125}, {"start": 1460.21, "end": 1460.55, "word": " circle", "probability": 0.8173828125}, {"start": 1460.55, "end": 1460.95, "word": " one", "probability": 0.79833984375}, {"start": 1460.95, "end": 1461.35, "word": " two", "probability": 0.912109375}, {"start": 1461.35, "end": 1462.45, "word": " three", "probability": 0.8974609375}, {"start": 1462.45, "end": 1462.61, "word": " This", "probability": 0.479248046875}, {"start": 1462.61, "end": 1462.69, "word": " is", "probability": 0.91552734375}, {"start": 1462.69, "end": 1462.79, "word": " an", "probability": 0.86767578125}, {"start": 1462.79, "end": 1462.99, "word": " object,", "probability": 0.9736328125}, {"start": 1463.07, "end": 1463.33, "word": " object", "probability": 0.59228515625}, {"start": 1463.33, "end": 1463.51, "word": " from", "probability": 0.7578125}, {"start": 1463.51, "end": 1463.71, "word": " whom?", "probability": 0.44970703125}, {"start": 1464.37, "end": 1465.01, "word": " From", "probability": 0.392822265625}, {"start": 1465.01, "end": 1465.23, "word": " this", "probability": 0.93212890625}, {"start": 1465.23, "end": 1465.63, "word": " class", "probability": 0.9541015625}], "temperature": 1.0}, {"id": 58, "seek": 149557, "start": 1466.75, "end": 1495.57, "text": "Okay, did you notice that the class of addition, the client sees it as this? What does addition mean? It is supposed to be as if this includes this with additions. But again, I confirm that this did not extend. So really, I do not see anything inside these. I am from outside, did you notice? This is the class. When I create an object from it, is there a method? No, the client will not see", "tokens": [8297, 11, 630, 291, 3449, 300, 264, 596, 296, 82, 295, 4500, 11, 264, 6423, 8194, 309, 382, 341, 30, 708, 775, 4500, 914, 30, 467, 307, 3442, 281, 312, 382, 498, 341, 5974, 341, 365, 35113, 13, 583, 797, 11, 286, 9064, 300, 341, 630, 406, 10101, 13, 407, 534, 11, 286, 360, 406, 536, 1340, 1854, 613, 13, 286, 669, 490, 2380, 11, 630, 291, 3449, 30, 639, 307, 264, 1508, 13, 1133, 286, 1884, 364, 2657, 490, 309, 11, 307, 456, 257, 3170, 30, 883, 11, 264, 6423, 486, 406, 536], "avg_logprob": -0.46940789222717283, "compression_ratio": 1.7, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 1466.75, "end": 1467.27, "word": "Okay,", "probability": 0.37841796875}, {"start": 1467.61, "end": 1467.91, "word": " did", "probability": 0.278564453125}, {"start": 1467.91, "end": 1467.93, "word": " you", "probability": 0.923828125}, {"start": 1467.93, "end": 1467.93, "word": " notice", "probability": 0.494384765625}, {"start": 1467.93, "end": 1469.05, "word": " that", "probability": 0.80029296875}, {"start": 1469.05, "end": 1470.05, "word": " the", "probability": 0.64697265625}, {"start": 1470.05, "end": 1470.51, "word": " class", "probability": 0.64471435546875}, {"start": 1470.51, "end": 1470.69, "word": " of", "probability": 0.7470703125}, {"start": 1470.69, "end": 1471.03, "word": " addition,", "probability": 0.44775390625}, {"start": 1471.29, "end": 1471.43, "word": " the", "probability": 0.53564453125}, {"start": 1471.43, "end": 1471.97, "word": " client", "probability": 0.65966796875}, {"start": 1471.97, "end": 1473.55, "word": " sees", "probability": 0.51171875}, {"start": 1473.55, "end": 1473.87, "word": " it", "probability": 0.875}, {"start": 1473.87, "end": 1474.03, "word": " as", "probability": 0.73388671875}, {"start": 1474.03, "end": 1474.29, "word": " this?", "probability": 0.5009765625}, {"start": 1474.71, "end": 1475.15, "word": " What", "probability": 0.68310546875}, {"start": 1475.15, "end": 1475.33, "word": " does", "probability": 0.73876953125}, {"start": 1475.33, "end": 1475.71, "word": " addition", "probability": 0.74853515625}, {"start": 1475.71, "end": 1475.71, "word": " mean?", "probability": 0.9296875}, {"start": 1475.97, "end": 1476.09, "word": " It", "probability": 0.75}, {"start": 1476.09, "end": 1476.25, "word": " is", "probability": 0.43212890625}, {"start": 1476.25, "end": 1476.59, "word": " supposed", "probability": 0.7451171875}, {"start": 1476.59, "end": 1477.93, "word": " to", "probability": 0.9091796875}, {"start": 1477.93, "end": 1477.93, "word": " be", "probability": 0.552734375}, {"start": 1477.93, "end": 1478.43, "word": " as", "probability": 0.1536865234375}, {"start": 1478.43, "end": 1478.69, "word": " if", "probability": 0.91650390625}, {"start": 1478.69, "end": 1479.09, "word": " this", "probability": 0.7451171875}, {"start": 1479.09, "end": 1479.71, "word": " includes", "probability": 0.493896484375}, {"start": 1479.71, "end": 1480.21, "word": " this", "probability": 0.7939453125}, {"start": 1480.21, "end": 1481.59, "word": " with", "probability": 0.62841796875}, {"start": 1481.59, "end": 1481.99, "word": " additions.", "probability": 0.5615234375}, {"start": 1482.85, "end": 1483.37, "word": " But", "probability": 0.76171875}, {"start": 1483.37, "end": 1484.27, "word": " again,", "probability": 0.1641845703125}, {"start": 1484.39, "end": 1484.39, "word": " I", "probability": 0.90478515625}, {"start": 1484.39, "end": 1484.73, "word": " confirm", "probability": 0.2763671875}, {"start": 1484.73, "end": 1484.91, "word": " that", "probability": 0.8720703125}, {"start": 1484.91, "end": 1485.09, "word": " this", "probability": 0.8291015625}, {"start": 1485.09, "end": 1485.17, "word": " did", "probability": 0.362060546875}, {"start": 1485.17, "end": 1485.17, "word": " not", "probability": 0.94287109375}, {"start": 1485.17, "end": 1485.85, "word": " extend.", "probability": 0.6484375}, {"start": 1486.59, "end": 1486.83, "word": " So", "probability": 0.2303466796875}, {"start": 1486.83, "end": 1487.21, "word": " really,", "probability": 0.316650390625}, {"start": 1488.29, "end": 1488.53, "word": " I", "probability": 0.98291015625}, {"start": 1488.53, "end": 1488.73, "word": " do", "probability": 0.385009765625}, {"start": 1488.73, "end": 1488.73, "word": " not", "probability": 0.9404296875}, {"start": 1488.73, "end": 1489.11, "word": " see", "probability": 0.91943359375}, {"start": 1489.11, "end": 1489.49, "word": " anything", "probability": 0.81640625}, {"start": 1489.49, "end": 1489.77, "word": " inside", "probability": 0.69384765625}, {"start": 1489.77, "end": 1490.09, "word": " these.", "probability": 0.488525390625}, {"start": 1490.13, "end": 1490.31, "word": " I", "probability": 0.64794921875}, {"start": 1490.31, "end": 1490.31, "word": " am", "probability": 0.54833984375}, {"start": 1490.31, "end": 1490.43, "word": " from", "probability": 0.380615234375}, {"start": 1490.43, "end": 1490.65, "word": " outside,", "probability": 0.654296875}, {"start": 1490.75, "end": 1490.83, "word": " did", "probability": 0.833984375}, {"start": 1490.83, "end": 1491.01, "word": " you", "probability": 0.95556640625}, {"start": 1491.01, "end": 1491.01, "word": " notice?", "probability": 0.76513671875}, {"start": 1491.03, "end": 1491.19, "word": " This", "probability": 0.810546875}, {"start": 1491.19, "end": 1491.27, "word": " is", "probability": 0.92578125}, {"start": 1491.27, "end": 1491.31, "word": " the", "probability": 0.80810546875}, {"start": 1491.31, "end": 1491.63, "word": " class.", "probability": 0.9326171875}, {"start": 1491.73, "end": 1491.85, "word": " When", "probability": 0.82861328125}, {"start": 1491.85, "end": 1491.97, "word": " I", "probability": 0.94384765625}, {"start": 1491.97, "end": 1492.13, "word": " create", "probability": 0.75390625}, {"start": 1492.13, "end": 1492.37, "word": " an", "probability": 0.6640625}, {"start": 1492.37, "end": 1492.63, "word": " object", "probability": 0.9736328125}, {"start": 1492.63, "end": 1492.77, "word": " from", "probability": 0.75390625}, {"start": 1492.77, "end": 1492.77, "word": " it,", "probability": 0.9033203125}, {"start": 1492.93, "end": 1493.11, "word": " is", "probability": 0.51513671875}, {"start": 1493.11, "end": 1493.17, "word": " there", "probability": 0.908203125}, {"start": 1493.17, "end": 1493.23, "word": " a", "probability": 0.8720703125}, {"start": 1493.23, "end": 1493.53, "word": " method?", "probability": 0.96240234375}, {"start": 1494.13, "end": 1494.35, "word": " No,", "probability": 0.89892578125}, {"start": 1494.45, "end": 1494.63, "word": " the", "probability": 0.47509765625}, {"start": 1494.63, "end": 1494.89, "word": " client", "probability": 0.93359375}, {"start": 1494.89, "end": 1495.07, "word": " will", "probability": 0.75634765625}, {"start": 1495.07, "end": 1495.11, "word": " not", "probability": 0.93603515625}, {"start": 1495.11, "end": 1495.57, "word": " see", "probability": 0.89990234375}], "temperature": 1.0}, {"id": 59, "seek": 152429, "start": 1496.37, "end": 1524.29, "text": "Anything else, so he says what are you doing? Now, why am I doing this? Because I want to add new things What are the new things? They are xx which are 4 and 5, they will add new attributes to us, okay? Then you add a new method, put 4 and 5, these are new methods for them But I still have a problem that 1 and 2 and 3, I don't see them from here, right? So he says 1 and 2 and 3, go back and do what?", "tokens": [29647, 825, 1646, 11, 370, 415, 1619, 437, 366, 291, 884, 30, 823, 11, 983, 669, 286, 884, 341, 30, 1436, 286, 528, 281, 909, 777, 721, 708, 366, 264, 777, 721, 30, 814, 366, 2031, 87, 597, 366, 1017, 293, 1025, 11, 436, 486, 909, 777, 17212, 281, 505, 11, 1392, 30, 1396, 291, 909, 257, 777, 3170, 11, 829, 1017, 293, 1025, 11, 613, 366, 777, 7150, 337, 552, 583, 286, 920, 362, 257, 1154, 300, 502, 293, 568, 293, 805, 11, 286, 500, 380, 536, 552, 490, 510, 11, 558, 30, 407, 415, 1619, 502, 293, 568, 293, 805, 11, 352, 646, 293, 360, 437, 30], "avg_logprob": -0.521874982660467, "compression_ratio": 1.7253218884120172, "no_speech_prob": 1.2278556823730469e-05, "words": [{"start": 1496.37, "end": 1496.77, "word": "Anything", "probability": 0.26190185546875}, {"start": 1496.77, "end": 1496.99, "word": " else,", "probability": 0.798828125}, {"start": 1497.05, "end": 1497.13, "word": " so", "probability": 0.43701171875}, {"start": 1497.13, "end": 1497.25, "word": " he", "probability": 0.20947265625}, {"start": 1497.25, "end": 1497.33, "word": " says", "probability": 0.1739501953125}, {"start": 1497.33, "end": 1497.51, "word": " what", "probability": 0.358154296875}, {"start": 1497.51, "end": 1497.69, "word": " are", "probability": 0.4765625}, {"start": 1497.69, "end": 1497.69, "word": " you", "probability": 0.94677734375}, {"start": 1497.69, "end": 1497.91, "word": " doing?", "probability": 0.77294921875}, {"start": 1498.95, "end": 1499.35, "word": " Now,", "probability": 0.460693359375}, {"start": 1500.15, "end": 1500.93, "word": " why", "probability": 0.6875}, {"start": 1500.93, "end": 1500.99, "word": " am", "probability": 0.335693359375}, {"start": 1500.99, "end": 1500.99, "word": " I", "probability": 0.90087890625}, {"start": 1500.99, "end": 1501.25, "word": " doing", "probability": 0.6396484375}, {"start": 1501.25, "end": 1501.51, "word": " this?", "probability": 0.8271484375}, {"start": 1501.53, "end": 1501.67, "word": " Because", "probability": 0.242919921875}, {"start": 1501.67, "end": 1501.79, "word": " I", "probability": 0.6552734375}, {"start": 1501.79, "end": 1501.83, "word": " want", "probability": 0.396728515625}, {"start": 1501.83, "end": 1501.83, "word": " to", "probability": 0.9609375}, {"start": 1501.83, "end": 1501.95, "word": " add", "probability": 0.90087890625}, {"start": 1501.95, "end": 1502.51, "word": " new", "probability": 0.63525390625}, {"start": 1502.51, "end": 1502.51, "word": " things", "probability": 0.6640625}, {"start": 1502.51, "end": 1503.35, "word": " What", "probability": 0.189208984375}, {"start": 1503.35, "end": 1503.41, "word": " are", "probability": 0.70556640625}, {"start": 1503.41, "end": 1503.83, "word": " the", "probability": 0.57080078125}, {"start": 1503.83, "end": 1503.97, "word": " new", "probability": 0.9033203125}, {"start": 1503.97, "end": 1503.97, "word": " things?", "probability": 0.83544921875}, {"start": 1504.51, "end": 1504.63, "word": " They", "probability": 0.325927734375}, {"start": 1504.63, "end": 1504.77, "word": " are", "probability": 0.87841796875}, {"start": 1504.77, "end": 1505.47, "word": " xx", "probability": 0.4398193359375}, {"start": 1505.47, "end": 1505.67, "word": " which", "probability": 0.444091796875}, {"start": 1505.67, "end": 1505.79, "word": " are", "probability": 0.341796875}, {"start": 1505.79, "end": 1506.11, "word": " 4", "probability": 0.640625}, {"start": 1506.11, "end": 1506.77, "word": " and", "probability": 0.88525390625}, {"start": 1506.77, "end": 1506.97, "word": " 5,", "probability": 0.9921875}, {"start": 1507.09, "end": 1507.13, "word": " they", "probability": 0.224853515625}, {"start": 1507.13, "end": 1507.19, "word": " will", "probability": 0.576171875}, {"start": 1507.19, "end": 1507.31, "word": " add", "probability": 0.87255859375}, {"start": 1507.31, "end": 1507.49, "word": " new", "probability": 0.457763671875}, {"start": 1507.49, "end": 1507.99, "word": " attributes", "probability": 0.89794921875}, {"start": 1507.99, "end": 1508.01, "word": " to", "probability": 0.4951171875}, {"start": 1508.01, "end": 1509.25, "word": " us,", "probability": 0.471435546875}, {"start": 1509.29, "end": 1509.61, "word": " okay?", "probability": 0.237548828125}, {"start": 1510.05, "end": 1510.45, "word": " Then", "probability": 0.63671875}, {"start": 1510.45, "end": 1510.65, "word": " you", "probability": 0.28515625}, {"start": 1510.65, "end": 1510.93, "word": " add", "probability": 0.484619140625}, {"start": 1510.93, "end": 1511.03, "word": " a", "probability": 0.6650390625}, {"start": 1511.03, "end": 1511.49, "word": " new", "probability": 0.9052734375}, {"start": 1511.49, "end": 1511.49, "word": " method,", "probability": 0.9345703125}, {"start": 1511.77, "end": 1511.99, "word": " put", "probability": 0.39599609375}, {"start": 1511.99, "end": 1512.25, "word": " 4", "probability": 0.87353515625}, {"start": 1512.25, "end": 1513.73, "word": " and", "probability": 0.92041015625}, {"start": 1513.73, "end": 1513.99, "word": " 5,", "probability": 0.994140625}, {"start": 1514.07, "end": 1514.21, "word": " these", "probability": 0.68017578125}, {"start": 1514.21, "end": 1514.35, "word": " are", "probability": 0.59716796875}, {"start": 1514.35, "end": 1514.45, "word": " new", "probability": 0.33447265625}, {"start": 1514.45, "end": 1514.67, "word": " methods", "probability": 0.91552734375}, {"start": 1514.67, "end": 1514.81, "word": " for", "probability": 0.346923828125}, {"start": 1514.81, "end": 1515.39, "word": " them", "probability": 0.7021484375}, {"start": 1515.39, "end": 1516.71, "word": " But", "probability": 0.4267578125}, {"start": 1516.71, "end": 1516.99, "word": " I", "probability": 0.50341796875}, {"start": 1516.99, "end": 1516.99, "word": " still", "probability": 0.85888671875}, {"start": 1516.99, "end": 1517.17, "word": " have", "probability": 0.93994140625}, {"start": 1517.17, "end": 1517.35, "word": " a", "probability": 0.85009765625}, {"start": 1517.35, "end": 1517.59, "word": " problem", "probability": 0.8466796875}, {"start": 1517.59, "end": 1517.91, "word": " that", "probability": 0.32666015625}, {"start": 1517.91, "end": 1518.15, "word": " 1", "probability": 0.7744140625}, {"start": 1518.15, "end": 1518.31, "word": " and", "probability": 0.6064453125}, {"start": 1518.31, "end": 1518.45, "word": " 2", "probability": 0.99072265625}, {"start": 1518.45, "end": 1518.61, "word": " and", "probability": 0.9375}, {"start": 1518.61, "end": 1518.89, "word": " 3,", "probability": 0.99462890625}, {"start": 1519.95, "end": 1520.15, "word": " I", "probability": 0.96923828125}, {"start": 1520.15, "end": 1520.29, "word": " don't", "probability": 0.738525390625}, {"start": 1520.29, "end": 1520.49, "word": " see", "probability": 0.90771484375}, {"start": 1520.49, "end": 1520.67, "word": " them", "probability": 0.8662109375}, {"start": 1520.67, "end": 1520.77, "word": " from", "probability": 0.7255859375}, {"start": 1520.77, "end": 1520.97, "word": " here,", "probability": 0.818359375}, {"start": 1521.47, "end": 1521.77, "word": " right?", "probability": 0.822265625}, {"start": 1522.01, "end": 1522.23, "word": " So", "probability": 0.84375}, {"start": 1522.23, "end": 1522.35, "word": " he", "probability": 0.74072265625}, {"start": 1522.35, "end": 1522.47, "word": " says", "probability": 0.59375}, {"start": 1522.47, "end": 1522.79, "word": " 1", "probability": 0.6669921875}, {"start": 1522.79, "end": 1523.09, "word": " and", "probability": 0.90869140625}, {"start": 1523.09, "end": 1523.27, "word": " 2", "probability": 0.9892578125}, {"start": 1523.27, "end": 1523.43, "word": " and", "probability": 0.93798828125}, {"start": 1523.43, "end": 1523.65, "word": " 3,", "probability": 0.99609375}, {"start": 1523.79, "end": 1523.91, "word": " go", "probability": 0.58154296875}, {"start": 1523.91, "end": 1524.09, "word": " back", "probability": 0.84375}, {"start": 1524.09, "end": 1524.17, "word": " and", "probability": 0.57666015625}, {"start": 1524.17, "end": 1524.29, "word": " do", "probability": 0.60302734375}, {"start": 1524.29, "end": 1524.29, "word": " what?", "probability": 0.57958984375}], "temperature": 1.0}, {"id": 60, "seek": 155241, "start": 1526.65, "end": 1552.41, "text": " write them again if there are ten methods here you have to write the ten here but what does it do when I call one of the covers one will call one of the objects inside when I call two from here this calls two from here when I call three this calls three from here because my goal is that I have to see this", "tokens": [2464, 552, 797, 498, 456, 366, 2064, 7150, 510, 291, 362, 281, 2464, 264, 2064, 510, 457, 437, 775, 309, 360, 562, 286, 818, 472, 295, 264, 10538, 472, 486, 818, 472, 295, 264, 6565, 1854, 562, 286, 818, 732, 490, 510, 341, 5498, 732, 490, 510, 562, 286, 818, 1045, 341, 5498, 1045, 490, 510, 570, 452, 3387, 307, 300, 286, 362, 281, 536, 341], "avg_logprob": -0.4591884426216581, "compression_ratio": 2.0197368421052633, "no_speech_prob": 1.4543533325195312e-05, "words": [{"start": 1526.65, "end": 1526.93, "word": " write", "probability": 0.146728515625}, {"start": 1526.93, "end": 1527.21, "word": " them", "probability": 0.6591796875}, {"start": 1527.21, "end": 1527.53, "word": " again", "probability": 0.7568359375}, {"start": 1527.53, "end": 1529.49, "word": " if", "probability": 0.4384765625}, {"start": 1529.49, "end": 1529.71, "word": " there", "probability": 0.70361328125}, {"start": 1529.71, "end": 1529.71, "word": " are", "probability": 0.73193359375}, {"start": 1529.71, "end": 1529.99, "word": " ten", "probability": 0.442626953125}, {"start": 1529.99, "end": 1530.33, "word": " methods", "probability": 0.7392578125}, {"start": 1530.33, "end": 1530.65, "word": " here", "probability": 0.64453125}, {"start": 1530.65, "end": 1530.89, "word": " you", "probability": 0.468505859375}, {"start": 1530.89, "end": 1531.01, "word": " have", "probability": 0.351318359375}, {"start": 1531.01, "end": 1531.11, "word": " to", "probability": 0.9658203125}, {"start": 1531.11, "end": 1531.31, "word": " write", "probability": 0.85693359375}, {"start": 1531.31, "end": 1531.43, "word": " the", "probability": 0.3720703125}, {"start": 1531.43, "end": 1531.61, "word": " ten", "probability": 0.67919921875}, {"start": 1531.61, "end": 1532.37, "word": " here", "probability": 0.62841796875}, {"start": 1532.37, "end": 1532.73, "word": " but", "probability": 0.5888671875}, {"start": 1532.73, "end": 1532.97, "word": " what", "probability": 0.7958984375}, {"start": 1532.97, "end": 1533.05, "word": " does", "probability": 0.27978515625}, {"start": 1533.05, "end": 1533.09, "word": " it", "probability": 0.716796875}, {"start": 1533.09, "end": 1533.31, "word": " do", "probability": 0.89013671875}, {"start": 1533.31, "end": 1533.83, "word": " when", "probability": 0.50732421875}, {"start": 1533.83, "end": 1534.03, "word": " I", "probability": 0.63232421875}, {"start": 1534.03, "end": 1534.31, "word": " call", "probability": 0.2430419921875}, {"start": 1534.31, "end": 1534.73, "word": " one", "probability": 0.8271484375}, {"start": 1534.73, "end": 1535.67, "word": " of", "probability": 0.744140625}, {"start": 1535.67, "end": 1535.79, "word": " the", "probability": 0.833984375}, {"start": 1535.79, "end": 1536.21, "word": " covers", "probability": 0.26025390625}, {"start": 1536.21, "end": 1537.41, "word": " one", "probability": 0.52783203125}, {"start": 1537.41, "end": 1537.63, "word": " will", "probability": 0.58740234375}, {"start": 1537.63, "end": 1537.91, "word": " call", "probability": 0.765625}, {"start": 1537.91, "end": 1539.15, "word": " one", "probability": 0.483642578125}, {"start": 1539.15, "end": 1539.35, "word": " of", "probability": 0.77587890625}, {"start": 1539.35, "end": 1539.53, "word": " the", "probability": 0.89794921875}, {"start": 1539.53, "end": 1539.79, "word": " objects", "probability": 0.771484375}, {"start": 1539.79, "end": 1540.17, "word": " inside", "probability": 0.66748046875}, {"start": 1540.17, "end": 1541.29, "word": " when", "probability": 0.7587890625}, {"start": 1541.29, "end": 1541.47, "word": " I", "probability": 0.57568359375}, {"start": 1541.47, "end": 1541.61, "word": " call", "probability": 0.7978515625}, {"start": 1541.61, "end": 1541.97, "word": " two", "probability": 0.892578125}, {"start": 1541.97, "end": 1542.15, "word": " from", "probability": 0.712890625}, {"start": 1542.15, "end": 1542.45, "word": " here", "probability": 0.85498046875}, {"start": 1542.45, "end": 1543.23, "word": " this", "probability": 0.37646484375}, {"start": 1543.23, "end": 1543.53, "word": " calls", "probability": 0.345458984375}, {"start": 1543.53, "end": 1543.85, "word": " two", "probability": 0.744140625}, {"start": 1543.85, "end": 1543.99, "word": " from", "probability": 0.291259765625}, {"start": 1543.99, "end": 1544.21, "word": " here", "probability": 0.82666015625}, {"start": 1544.21, "end": 1544.69, "word": " when", "probability": 0.87646484375}, {"start": 1544.69, "end": 1544.89, "word": " I", "probability": 0.77392578125}, {"start": 1544.89, "end": 1545.03, "word": " call", "probability": 0.86083984375}, {"start": 1545.03, "end": 1545.53, "word": " three", "probability": 0.91357421875}, {"start": 1545.53, "end": 1546.23, "word": " this", "probability": 0.767578125}, {"start": 1546.23, "end": 1546.61, "word": " calls", "probability": 0.76611328125}, {"start": 1546.61, "end": 1546.99, "word": " three", "probability": 0.91845703125}, {"start": 1546.99, "end": 1547.13, "word": " from", "probability": 0.66064453125}, {"start": 1547.13, "end": 1548.11, "word": " here", "probability": 0.84716796875}, {"start": 1548.11, "end": 1549.71, "word": " because", "probability": 0.479736328125}, {"start": 1549.71, "end": 1549.95, "word": " my", "probability": 0.42138671875}, {"start": 1549.95, "end": 1550.25, "word": " goal", "probability": 0.888671875}, {"start": 1550.25, "end": 1550.79, "word": " is", "probability": 0.8955078125}, {"start": 1550.79, "end": 1550.99, "word": " that", "probability": 0.673828125}, {"start": 1550.99, "end": 1551.49, "word": " I", "probability": 0.73095703125}, {"start": 1551.49, "end": 1551.49, "word": " have", "probability": 0.5}, {"start": 1551.49, "end": 1551.85, "word": " to", "probability": 0.97412109375}, {"start": 1551.85, "end": 1552.25, "word": " see", "probability": 0.8896484375}, {"start": 1552.25, "end": 1552.41, "word": " this", "probability": 0.8037109375}], "temperature": 1.0}, {"id": 61, "seek": 157439, "start": 1553.39, "end": 1574.39, "text": "It's like this, but with new features Because if I create an object from this, I will see x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1 and x1", "tokens": [3522, 311, 411, 341, 11, 457, 365, 777, 4122, 1436, 498, 286, 1884, 364, 2657, 490, 341, 11, 286, 486, 536, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16, 293, 2031, 16], "avg_logprob": -0.13527777353922527, "compression_ratio": 6.0978260869565215, "no_speech_prob": 4.470348358154297e-06, "words": [{"start": 1553.39, "end": 1553.67, "word": "It's", "probability": 0.3245849609375}, {"start": 1553.67, "end": 1553.81, "word": " like", "probability": 0.6474609375}, {"start": 1553.81, "end": 1554.29, "word": " this,", "probability": 0.77978515625}, {"start": 1554.79, "end": 1555.01, "word": " but", "probability": 0.7783203125}, {"start": 1555.01, "end": 1555.15, "word": " with", "probability": 0.8203125}, {"start": 1555.15, "end": 1556.39, "word": " new", "probability": 0.6435546875}, {"start": 1556.39, "end": 1556.39, "word": " features", "probability": 0.31787109375}, {"start": 1556.39, "end": 1557.27, "word": " Because", "probability": 0.1685791015625}, {"start": 1557.27, "end": 1557.43, "word": " if", "probability": 0.8505859375}, {"start": 1557.43, "end": 1557.55, "word": " I", "probability": 0.888671875}, {"start": 1557.55, "end": 1557.79, "word": " create", "probability": 0.79931640625}, {"start": 1557.79, "end": 1557.97, "word": " an", "probability": 0.76025390625}, {"start": 1557.97, "end": 1558.15, "word": " object", "probability": 0.9716796875}, {"start": 1558.15, "end": 1558.37, "word": " from", "probability": 0.6865234375}, {"start": 1558.37, "end": 1558.69, "word": " this,", "probability": 0.7998046875}, {"start": 1559.99, "end": 1560.33, "word": " I", "probability": 0.732421875}, {"start": 1560.33, "end": 1560.43, "word": " will", "probability": 0.54736328125}, {"start": 1560.43, "end": 1560.61, "word": " see", "probability": 0.85107421875}, {"start": 1560.61, "end": 1561.29, "word": " x1", "probability": 0.4129638671875}, {"start": 1561.29, "end": 1561.53, "word": " and", "probability": 0.186279296875}, {"start": 1561.53, "end": 1562.99, "word": " x1", "probability": 0.6490478515625}, {"start": 1562.99, "end": 1563.19, "word": " and", "probability": 0.44091796875}, {"start": 1563.19, "end": 1563.37, "word": " x1", "probability": 0.837890625}, {"start": 1563.37, "end": 1563.49, "word": " and", "probability": 0.76416015625}, {"start": 1563.49, "end": 1563.49, "word": " x1", "probability": 0.731689453125}, {"start": 1563.49, "end": 1563.61, "word": " and", "probability": 0.64599609375}, {"start": 1563.61, "end": 1563.61, "word": " x1", "probability": 0.69189453125}, {"start": 1563.61, "end": 1563.87, "word": " and", "probability": 0.58251953125}, {"start": 1563.87, "end": 1563.87, "word": " x1", "probability": 0.717041015625}, {"start": 1563.87, "end": 1563.89, "word": " and", "probability": 0.61328125}, {"start": 1563.89, "end": 1563.89, "word": " x1", "probability": 0.7607421875}, {"start": 1563.89, "end": 1563.95, "word": " and", "probability": 0.68017578125}, {"start": 1563.95, "end": 1563.95, "word": " x1", "probability": 0.8095703125}, {"start": 1563.95, "end": 1563.95, "word": " and", "probability": 0.73046875}, {"start": 1563.95, "end": 1563.95, "word": " x1", "probability": 0.8544921875}, {"start": 1563.95, "end": 1563.97, "word": " and", "probability": 0.76904296875}, {"start": 1563.97, "end": 1563.97, "word": " x1", "probability": 0.892578125}, {"start": 1563.97, "end": 1564.67, "word": " and", "probability": 0.7939453125}, {"start": 1564.67, "end": 1564.83, "word": " x1", "probability": 0.921630859375}, {"start": 1564.83, "end": 1564.83, "word": " and", "probability": 0.8115234375}, {"start": 1564.83, "end": 1564.93, "word": " x1", "probability": 0.942626953125}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.82421875}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.957275390625}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.837890625}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.968017578125}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.8486328125}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.975341796875}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.85791015625}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.97998046875}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.86572265625}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.9833984375}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.87451171875}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.986328125}, {"start": 1564.93, "end": 1564.93, "word": " and", "probability": 0.88232421875}, {"start": 1564.93, "end": 1564.93, "word": " x1", "probability": 0.988037109375}, {"start": 1564.93, "end": 1565.05, "word": " and", "probability": 0.88818359375}, {"start": 1565.05, "end": 1565.05, "word": " x1", "probability": 0.98974609375}, {"start": 1565.05, "end": 1565.05, "word": " and", "probability": 0.89306640625}, {"start": 1565.05, "end": 1565.05, "word": " x1", "probability": 0.990966796875}, {"start": 1565.05, "end": 1565.05, "word": " and", "probability": 0.89794921875}, {"start": 1565.05, "end": 1565.05, "word": " x1", "probability": 0.991943359375}, {"start": 1565.05, "end": 1565.05, "word": " and", "probability": 0.904296875}, {"start": 1565.05, "end": 1565.05, "word": " x1", "probability": 0.99267578125}, {"start": 1565.05, "end": 1565.41, "word": " and", "probability": 0.9072265625}, {"start": 1565.41, "end": 1565.41, "word": " x1", "probability": 0.9931640625}, {"start": 1565.41, "end": 1565.41, "word": " and", "probability": 0.91162109375}, {"start": 1565.41, "end": 1565.41, "word": " x1", "probability": 0.99365234375}, {"start": 1565.41, "end": 1566.67, "word": " and", "probability": 0.91552734375}, {"start": 1566.67, "end": 1566.67, "word": " x1", "probability": 0.994140625}, {"start": 1566.67, "end": 1566.67, "word": " and", "probability": 0.9189453125}, {"start": 1566.67, "end": 1566.67, "word": " x1", "probability": 0.99462890625}, {"start": 1566.67, "end": 1566.67, "word": " and", "probability": 0.92138671875}, {"start": 1566.67, "end": 1566.67, "word": " x1", "probability": 0.994873046875}, {"start": 1566.67, "end": 1566.67, "word": " and", "probability": 0.92431640625}, {"start": 1566.67, "end": 1566.67, "word": " x1", "probability": 0.994873046875}, {"start": 1566.67, "end": 1568.21, "word": " and", "probability": 0.9267578125}, {"start": 1568.21, "end": 1568.21, "word": " x1", "probability": 0.9951171875}, {"start": 1568.21, "end": 1568.21, "word": " and", "probability": 0.92724609375}, {"start": 1568.21, "end": 1568.21, "word": " x1", "probability": 0.995361328125}, {"start": 1568.21, "end": 1568.57, "word": " and", "probability": 0.93017578125}, {"start": 1568.57, "end": 1568.57, "word": " x1", "probability": 0.995361328125}, {"start": 1568.57, "end": 1568.57, "word": " and", "probability": 0.93115234375}, {"start": 1568.57, "end": 1568.57, "word": " x1", "probability": 0.995361328125}, {"start": 1568.57, "end": 1568.57, "word": " and", "probability": 0.931640625}, {"start": 1568.57, "end": 1568.57, "word": " x1", "probability": 0.995361328125}, {"start": 1568.57, "end": 1568.57, "word": " and", "probability": 0.9326171875}, {"start": 1568.57, "end": 1568.57, "word": " x1", "probability": 0.995361328125}, {"start": 1568.57, "end": 1568.57, "word": " and", "probability": 0.9345703125}, {"start": 1568.57, "end": 1568.57, "word": " x1", "probability": 0.995361328125}, {"start": 1568.57, "end": 1568.61, "word": " and", "probability": 0.9345703125}, {"start": 1568.61, "end": 1568.61, "word": " x1", "probability": 0.995361328125}, {"start": 1568.61, "end": 1568.61, "word": " and", "probability": 0.93603515625}, {"start": 1568.61, "end": 1568.61, "word": " x1", "probability": 0.995361328125}, {"start": 1568.61, "end": 1570.35, "word": " and", "probability": 0.93603515625}, {"start": 1570.35, "end": 1570.47, "word": " x1", "probability": 0.995361328125}, {"start": 1570.47, "end": 1570.67, "word": " and", "probability": 0.93603515625}, {"start": 1570.67, "end": 1570.69, "word": " x1", "probability": 0.995361328125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9365234375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.9951171875}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93701171875}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.9951171875}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.9951171875}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93798828125}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.99462890625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93798828125}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.99462890625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.99462890625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.994140625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93798828125}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.994140625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93798828125}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.993896484375}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93798828125}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.993896484375}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9384765625}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.993408203125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9384765625}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.9931640625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9384765625}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.99267578125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.99267578125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.992431640625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9384765625}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.991943359375}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.99169921875}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9384765625}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.991455078125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.9912109375}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9365234375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.990478515625}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.990234375}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93798828125}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.989990234375}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93701171875}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.989501953125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.9892578125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.989013671875}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.9375}, {"start": 1570.69, "end": 1570.69, "word": " x1", "probability": 0.98828125}, {"start": 1570.69, "end": 1570.69, "word": " and", "probability": 0.93701171875}, {"start": 1570.69, "end": 1570.75, "word": " x1", "probability": 0.9892578125}, {"start": 1570.75, "end": 1573.87, "word": " and", "probability": 0.9375}, {"start": 1573.87, "end": 1574.39, "word": " x1", "probability": 0.98876953125}], "temperature": 1.0}, {"id": 62, "seek": 160115, "start": 1575.47, "end": 1601.15, "text": "I will see new things, yes I will see 4 and 5, and I will see attributes 4 and 5, this is adding new things to this, using the decorator method, or sometimes we call it wrapper, what is a wrapper? It is a cover, don't you hear the word chicken wrap? Yes, this is a wrapper, a cover, now I added new features, but it has pros and cons", "tokens": [40, 486, 536, 777, 721, 11, 2086, 286, 486, 536, 1017, 293, 1025, 11, 293, 286, 486, 536, 17212, 1017, 293, 1025, 11, 341, 307, 5127, 777, 721, 281, 341, 11, 1228, 264, 7919, 1639, 3170, 11, 420, 2171, 321, 818, 309, 46906, 11, 437, 307, 257, 46906, 30, 467, 307, 257, 2060, 11, 500, 380, 291, 1568, 264, 1349, 4662, 7019, 30, 1079, 11, 341, 307, 257, 46906, 11, 257, 2060, 11, 586, 286, 3869, 777, 4122, 11, 457, 309, 575, 6267, 293, 1014], "avg_logprob": -0.5025435949480811, "compression_ratio": 1.743455497382199, "no_speech_prob": 1.9073486328125e-06, "words": [{"start": 1575.47, "end": 1575.67, "word": "I", "probability": 0.7255859375}, {"start": 1575.67, "end": 1575.73, "word": " will", "probability": 0.58740234375}, {"start": 1575.73, "end": 1575.87, "word": " see", "probability": 0.7060546875}, {"start": 1575.87, "end": 1576.51, "word": " new", "probability": 0.471435546875}, {"start": 1576.51, "end": 1576.59, "word": " things,", "probability": 0.72998046875}, {"start": 1576.79, "end": 1576.89, "word": " yes", "probability": 0.341796875}, {"start": 1576.89, "end": 1577.01, "word": " I", "probability": 0.399169921875}, {"start": 1577.01, "end": 1577.07, "word": " will", "probability": 0.84814453125}, {"start": 1577.07, "end": 1577.19, "word": " see", "probability": 0.8896484375}, {"start": 1577.19, "end": 1577.49, "word": " 4", "probability": 0.5556640625}, {"start": 1577.49, "end": 1578.55, "word": " and", "probability": 0.7900390625}, {"start": 1578.55, "end": 1578.81, "word": " 5,", "probability": 0.9873046875}, {"start": 1578.91, "end": 1579.03, "word": " and", "probability": 0.6689453125}, {"start": 1579.03, "end": 1579.05, "word": " I", "probability": 0.62841796875}, {"start": 1579.05, "end": 1579.11, "word": " will", "probability": 0.86328125}, {"start": 1579.11, "end": 1579.29, "word": " see", "probability": 0.88671875}, {"start": 1579.29, "end": 1579.81, "word": " attributes", "probability": 0.615234375}, {"start": 1579.81, "end": 1580.13, "word": " 4", "probability": 0.92333984375}, {"start": 1580.13, "end": 1580.79, "word": " and", "probability": 0.9404296875}, {"start": 1580.79, "end": 1581.13, "word": " 5,", "probability": 0.99560546875}, {"start": 1581.63, "end": 1582.03, "word": " this", "probability": 0.3232421875}, {"start": 1582.03, "end": 1582.11, "word": " is", "probability": 0.1978759765625}, {"start": 1582.11, "end": 1582.39, "word": " adding", "probability": 0.458740234375}, {"start": 1582.39, "end": 1583.03, "word": " new", "probability": 0.85986328125}, {"start": 1583.03, "end": 1583.25, "word": " things", "probability": 0.8330078125}, {"start": 1583.25, "end": 1584.13, "word": " to", "probability": 0.5986328125}, {"start": 1584.13, "end": 1584.43, "word": " this,", "probability": 0.447021484375}, {"start": 1584.53, "end": 1584.99, "word": " using", "probability": 0.68701171875}, {"start": 1584.99, "end": 1585.79, "word": " the", "probability": 0.66845703125}, {"start": 1585.79, "end": 1586.73, "word": " decorator", "probability": 0.87060546875}, {"start": 1586.73, "end": 1586.73, "word": " method,", "probability": 0.452392578125}, {"start": 1586.83, "end": 1586.99, "word": " or", "probability": 0.744140625}, {"start": 1586.99, "end": 1587.27, "word": " sometimes", "probability": 0.459228515625}, {"start": 1587.27, "end": 1587.27, "word": " we", "probability": 0.7158203125}, {"start": 1587.27, "end": 1587.47, "word": " call", "probability": 0.85595703125}, {"start": 1587.47, "end": 1587.99, "word": " it", "probability": 0.79638671875}, {"start": 1587.99, "end": 1588.29, "word": " wrapper,", "probability": 0.8525390625}, {"start": 1588.69, "end": 1588.83, "word": " what", "probability": 0.7177734375}, {"start": 1588.83, "end": 1588.93, "word": " is", "probability": 0.8408203125}, {"start": 1588.93, "end": 1589.03, "word": " a", "probability": 0.1488037109375}, {"start": 1589.03, "end": 1589.25, "word": " wrapper?", "probability": 0.9248046875}, {"start": 1590.23, "end": 1590.45, "word": " It", "probability": 0.101806640625}, {"start": 1590.45, "end": 1590.45, "word": " is", "probability": 0.5625}, {"start": 1590.45, "end": 1590.45, "word": " a", "probability": 0.83984375}, {"start": 1590.45, "end": 1590.45, "word": " cover,", "probability": 0.5673828125}, {"start": 1590.63, "end": 1590.77, "word": " don't", "probability": 0.6934814453125}, {"start": 1590.77, "end": 1590.93, "word": " you", "probability": 0.88671875}, {"start": 1590.93, "end": 1591.03, "word": " hear", "probability": 0.8759765625}, {"start": 1591.03, "end": 1591.15, "word": " the", "probability": 0.84423828125}, {"start": 1591.15, "end": 1591.33, "word": " word", "probability": 0.8642578125}, {"start": 1591.33, "end": 1591.61, "word": " chicken", "probability": 0.7099609375}, {"start": 1591.61, "end": 1592.01, "word": " wrap?", "probability": 0.84375}, {"start": 1593.61, "end": 1594.05, "word": " Yes,", "probability": 0.12139892578125}, {"start": 1595.43, "end": 1595.69, "word": " this", "probability": 0.724609375}, {"start": 1595.69, "end": 1595.73, "word": " is", "probability": 0.9267578125}, {"start": 1595.73, "end": 1595.79, "word": " a", "probability": 0.78369140625}, {"start": 1595.79, "end": 1595.99, "word": " wrapper,", "probability": 0.90869140625}, {"start": 1596.07, "end": 1596.51, "word": " a", "probability": 0.474853515625}, {"start": 1596.51, "end": 1596.51, "word": " cover,", "probability": 0.94921875}, {"start": 1596.89, "end": 1598.03, "word": " now", "probability": 0.84375}, {"start": 1598.03, "end": 1598.81, "word": " I", "probability": 0.80419921875}, {"start": 1598.81, "end": 1599.05, "word": " added", "probability": 0.81396484375}, {"start": 1599.05, "end": 1599.79, "word": " new", "probability": 0.82470703125}, {"start": 1599.79, "end": 1599.79, "word": " features,", "probability": 0.35107421875}, {"start": 1600.13, "end": 1600.33, "word": " but", "probability": 0.88671875}, {"start": 1600.33, "end": 1600.45, "word": " it", "probability": 0.64501953125}, {"start": 1600.45, "end": 1600.55, "word": " has", "probability": 0.93310546875}, {"start": 1600.55, "end": 1600.75, "word": " pros", "probability": 0.1300048828125}, {"start": 1600.75, "end": 1601.15, "word": " and", "probability": 0.9375}, {"start": 1601.15, "end": 1601.15, "word": " cons", "probability": 0.96826171875}], "temperature": 1.0}, {"id": 63, "seek": 163144, "start": 1602.58, "end": 1631.44, "text": "What are its disadvantages? Notice that I had to rewrite the same methods here with the conversion to the inner object. Here, no, I did not need to write one, two and three. Okay, it overwhelmed us a bit, but the idea that came up is that this cover can be covered by anything, that is, if this is of the type that takes a certain interface I, any object of type I can be placed here.", "tokens": [3748, 366, 1080, 37431, 30, 13428, 300, 286, 632, 281, 28132, 264, 912, 7150, 510, 365, 264, 14298, 281, 264, 7284, 2657, 13, 1692, 11, 572, 11, 286, 630, 406, 643, 281, 2464, 472, 11, 732, 293, 1045, 13, 1033, 11, 309, 19042, 505, 257, 857, 11, 457, 264, 1558, 300, 1361, 493, 307, 300, 341, 2060, 393, 312, 5343, 538, 1340, 11, 300, 307, 11, 498, 341, 307, 295, 264, 2010, 300, 2516, 257, 1629, 9226, 286, 11, 604, 2657, 295, 2010, 286, 393, 312, 7074, 510, 13], "avg_logprob": -0.5201388974984487, "compression_ratio": 1.6551724137931034, "no_speech_prob": 5.364418029785156e-06, "words": [{"start": 1602.58, "end": 1602.88, "word": "What", "probability": 0.2138671875}, {"start": 1602.88, "end": 1602.88, "word": " are", "probability": 0.36376953125}, {"start": 1602.88, "end": 1602.98, "word": " its", "probability": 0.45849609375}, {"start": 1602.98, "end": 1603.28, "word": " disadvantages?", "probability": 0.625}, {"start": 1603.76, "end": 1604.22, "word": " Notice", "probability": 0.61669921875}, {"start": 1604.22, "end": 1604.48, "word": " that", "probability": 0.8671875}, {"start": 1604.48, "end": 1605.58, "word": " I", "probability": 0.30615234375}, {"start": 1605.58, "end": 1605.76, "word": " had", "probability": 0.64306640625}, {"start": 1605.76, "end": 1606.5, "word": " to", "probability": 0.9638671875}, {"start": 1606.5, "end": 1607.92, "word": " rewrite", "probability": 0.413330078125}, {"start": 1607.92, "end": 1608.1, "word": " the", "probability": 0.70166015625}, {"start": 1608.1, "end": 1608.18, "word": " same", "probability": 0.54541015625}, {"start": 1608.18, "end": 1608.18, "word": " methods", "probability": 0.505859375}, {"start": 1608.18, "end": 1608.18, "word": " here", "probability": 0.224853515625}, {"start": 1608.18, "end": 1608.52, "word": " with", "probability": 0.412353515625}, {"start": 1608.52, "end": 1608.72, "word": " the", "probability": 0.64208984375}, {"start": 1608.72, "end": 1609.04, "word": " conversion", "probability": 0.2469482421875}, {"start": 1609.04, "end": 1609.88, "word": " to", "probability": 0.7998046875}, {"start": 1609.88, "end": 1609.96, "word": " the", "probability": 0.79736328125}, {"start": 1609.96, "end": 1610.62, "word": " inner", "probability": 0.58642578125}, {"start": 1610.62, "end": 1610.62, "word": " object.", "probability": 0.92041015625}, {"start": 1611.46, "end": 1611.74, "word": " Here,", "probability": 0.329345703125}, {"start": 1611.86, "end": 1611.94, "word": " no,", "probability": 0.4755859375}, {"start": 1612.06, "end": 1612.2, "word": " I", "probability": 0.96337890625}, {"start": 1612.2, "end": 1612.26, "word": " did", "probability": 0.55078125}, {"start": 1612.26, "end": 1612.26, "word": " not", "probability": 0.94677734375}, {"start": 1612.26, "end": 1612.74, "word": " need", "probability": 0.51953125}, {"start": 1612.74, "end": 1612.94, "word": " to", "probability": 0.9580078125}, {"start": 1612.94, "end": 1613.08, "word": " write", "probability": 0.83935546875}, {"start": 1613.08, "end": 1613.26, "word": " one,", "probability": 0.401611328125}, {"start": 1613.4, "end": 1613.62, "word": " two", "probability": 0.9453125}, {"start": 1613.62, "end": 1614.48, "word": " and", "probability": 0.537109375}, {"start": 1614.48, "end": 1614.84, "word": " three.", "probability": 0.94580078125}, {"start": 1616.12, "end": 1616.58, "word": " Okay,", "probability": 0.38720703125}, {"start": 1617.58, "end": 1617.88, "word": " it", "probability": 0.31298828125}, {"start": 1617.88, "end": 1618.04, "word": " overwhelmed", "probability": 0.47216796875}, {"start": 1618.04, "end": 1618.32, "word": " us", "probability": 0.440673828125}, {"start": 1618.32, "end": 1618.38, "word": " a", "probability": 0.95361328125}, {"start": 1618.38, "end": 1618.58, "word": " bit,", "probability": 0.414794921875}, {"start": 1618.7, "end": 1618.86, "word": " but", "probability": 0.91796875}, {"start": 1618.86, "end": 1618.98, "word": " the", "probability": 0.76416015625}, {"start": 1618.98, "end": 1619.24, "word": " idea", "probability": 0.88525390625}, {"start": 1619.24, "end": 1619.42, "word": " that", "probability": 0.342529296875}, {"start": 1619.42, "end": 1619.6, "word": " came", "probability": 0.40234375}, {"start": 1619.6, "end": 1619.66, "word": " up", "probability": 0.33544921875}, {"start": 1619.66, "end": 1619.74, "word": " is", "probability": 0.60205078125}, {"start": 1619.74, "end": 1619.88, "word": " that", "probability": 0.880859375}, {"start": 1619.88, "end": 1620.34, "word": " this", "probability": 0.83154296875}, {"start": 1620.34, "end": 1620.88, "word": " cover", "probability": 0.2822265625}, {"start": 1620.88, "end": 1622.44, "word": " can", "probability": 0.74755859375}, {"start": 1622.44, "end": 1622.9, "word": " be", "probability": 0.29296875}, {"start": 1622.9, "end": 1623.2, "word": " covered", "probability": 0.39208984375}, {"start": 1623.2, "end": 1623.56, "word": " by", "probability": 0.59912109375}, {"start": 1623.56, "end": 1624.18, "word": " anything,", "probability": 0.8564453125}, {"start": 1625.34, "end": 1625.62, "word": " that", "probability": 0.33642578125}, {"start": 1625.62, "end": 1625.62, "word": " is,", "probability": 0.91943359375}, {"start": 1625.68, "end": 1625.78, "word": " if", "probability": 0.92724609375}, {"start": 1625.78, "end": 1626.02, "word": " this", "probability": 0.6953125}, {"start": 1626.02, "end": 1626.08, "word": " is", "probability": 0.72705078125}, {"start": 1626.08, "end": 1626.14, "word": " of", "probability": 0.58642578125}, {"start": 1626.14, "end": 1626.26, "word": " the", "probability": 0.6865234375}, {"start": 1626.26, "end": 1626.32, "word": " type", "probability": 0.76611328125}, {"start": 1626.32, "end": 1626.5, "word": " that", "probability": 0.68701171875}, {"start": 1626.5, "end": 1626.64, "word": " takes", "probability": 0.263427734375}, {"start": 1626.64, "end": 1626.84, "word": " a", "probability": 0.8173828125}, {"start": 1626.84, "end": 1627.54, "word": " certain", "probability": 0.49267578125}, {"start": 1627.54, "end": 1627.54, "word": " interface", "probability": 0.78759765625}, {"start": 1627.54, "end": 1628.0, "word": " I,", "probability": 0.400390625}, {"start": 1628.84, "end": 1629.2, "word": " any", "probability": 0.73291015625}, {"start": 1629.2, "end": 1629.62, "word": " object", "probability": 0.8828125}, {"start": 1629.62, "end": 1629.74, "word": " of", "probability": 0.955078125}, {"start": 1629.74, "end": 1629.98, "word": " type", "probability": 0.464111328125}, {"start": 1629.98, "end": 1630.36, "word": " I", "probability": 0.974609375}, {"start": 1630.36, "end": 1630.9, "word": " can", "probability": 0.88427734375}, {"start": 1630.9, "end": 1631.0, "word": " be", "probability": 0.64892578125}, {"start": 1631.0, "end": 1631.22, "word": " placed", "probability": 0.60107421875}, {"start": 1631.22, "end": 1631.44, "word": " here.", "probability": 0.8310546875}], "temperature": 1.0}, {"id": 64, "seek": 165984, "start": 1632.84, "end": 1659.84, "text": "So this envelope goes with any object of the type of the interface As if you are making a frame and you change the image inside it Now let's come to our example here We haven't finished this example yet, let's apply it, let's see how it works I actually made a class called border, which is this class What wraps inside it? Object of the type shape", "tokens": [6455, 341, 19989, 1709, 365, 604, 2657, 295, 264, 2010, 295, 264, 9226, 1018, 498, 291, 366, 1455, 257, 3920, 293, 291, 1319, 264, 3256, 1854, 309, 823, 718, 311, 808, 281, 527, 1365, 510, 492, 2378, 380, 4335, 341, 1365, 1939, 11, 718, 311, 3079, 309, 11, 718, 311, 536, 577, 309, 1985, 286, 767, 1027, 257, 1508, 1219, 7838, 11, 597, 307, 341, 1508, 708, 25831, 1854, 309, 30, 24753, 295, 264, 2010, 3909], "avg_logprob": -0.5227272789199631, "compression_ratio": 1.6111111111111112, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 1632.84, "end": 1633.06, "word": "So", "probability": 0.397705078125}, {"start": 1633.06, "end": 1633.5, "word": " this", "probability": 0.441650390625}, {"start": 1633.5, "end": 1633.88, "word": " envelope", "probability": 0.2349853515625}, {"start": 1633.88, "end": 1634.42, "word": " goes", "probability": 0.107666015625}, {"start": 1634.42, "end": 1634.66, "word": " with", "probability": 0.7275390625}, {"start": 1634.66, "end": 1636.44, "word": " any", "probability": 0.56396484375}, {"start": 1636.44, "end": 1636.84, "word": " object", "probability": 0.83935546875}, {"start": 1636.84, "end": 1636.94, "word": " of", "probability": 0.7744140625}, {"start": 1636.94, "end": 1637.06, "word": " the", "probability": 0.339111328125}, {"start": 1637.06, "end": 1637.3, "word": " type", "probability": 0.425048828125}, {"start": 1637.3, "end": 1638.36, "word": " of", "probability": 0.1981201171875}, {"start": 1638.36, "end": 1638.38, "word": " the", "probability": 0.3515625}, {"start": 1638.38, "end": 1638.94, "word": " interface", "probability": 0.74658203125}, {"start": 1638.94, "end": 1639.7, "word": " As", "probability": 0.2333984375}, {"start": 1639.7, "end": 1639.92, "word": " if", "probability": 0.916015625}, {"start": 1639.92, "end": 1640.16, "word": " you", "probability": 0.87451171875}, {"start": 1640.16, "end": 1640.38, "word": " are", "probability": 0.348388671875}, {"start": 1640.38, "end": 1640.38, "word": " making", "probability": 0.6162109375}, {"start": 1640.38, "end": 1640.5, "word": " a", "probability": 0.9345703125}, {"start": 1640.5, "end": 1640.94, "word": " frame", "probability": 0.71826171875}, {"start": 1640.94, "end": 1641.84, "word": " and", "probability": 0.6552734375}, {"start": 1641.84, "end": 1641.94, "word": " you", "probability": 0.350341796875}, {"start": 1641.94, "end": 1642.18, "word": " change", "probability": 0.61669921875}, {"start": 1642.18, "end": 1642.32, "word": " the", "probability": 0.85498046875}, {"start": 1642.32, "end": 1642.6, "word": " image", "probability": 0.466552734375}, {"start": 1642.6, "end": 1643.8, "word": " inside", "probability": 0.62744140625}, {"start": 1643.8, "end": 1644.92, "word": " it", "probability": 0.45361328125}, {"start": 1644.92, "end": 1645.46, "word": " Now", "probability": 0.407470703125}, {"start": 1645.46, "end": 1645.66, "word": " let's", "probability": 0.725341796875}, {"start": 1645.66, "end": 1645.78, "word": " come", "probability": 0.420654296875}, {"start": 1645.78, "end": 1645.92, "word": " to", "probability": 0.7255859375}, {"start": 1645.92, "end": 1646.08, "word": " our", "probability": 0.8115234375}, {"start": 1646.08, "end": 1646.36, "word": " example", "probability": 0.966796875}, {"start": 1646.36, "end": 1646.68, "word": " here", "probability": 0.75}, {"start": 1646.68, "end": 1647.18, "word": " We", "probability": 0.3818359375}, {"start": 1647.18, "end": 1647.64, "word": " haven't", "probability": 0.65673828125}, {"start": 1647.64, "end": 1647.96, "word": " finished", "probability": 0.60498046875}, {"start": 1647.96, "end": 1648.12, "word": " this", "probability": 0.6005859375}, {"start": 1648.12, "end": 1648.38, "word": " example", "probability": 0.95703125}, {"start": 1648.38, "end": 1648.62, "word": " yet,", "probability": 0.82177734375}, {"start": 1648.62, "end": 1648.7, "word": " let's", "probability": 0.732421875}, {"start": 1648.7, "end": 1648.9, "word": " apply", "probability": 0.548828125}, {"start": 1648.9, "end": 1649.0, "word": " it,", "probability": 0.9140625}, {"start": 1649.02, "end": 1649.14, "word": " let's", "probability": 0.863525390625}, {"start": 1649.14, "end": 1649.32, "word": " see", "probability": 0.8974609375}, {"start": 1649.32, "end": 1650.12, "word": " how", "probability": 0.90673828125}, {"start": 1650.12, "end": 1650.24, "word": " it", "probability": 0.86669921875}, {"start": 1650.24, "end": 1650.56, "word": " works", "probability": 0.70947265625}, {"start": 1650.56, "end": 1651.18, "word": " I", "probability": 0.7734375}, {"start": 1651.18, "end": 1651.66, "word": " actually", "probability": 0.615234375}, {"start": 1651.66, "end": 1652.58, "word": " made", "probability": 0.67822265625}, {"start": 1652.58, "end": 1652.72, "word": " a", "probability": 0.96630859375}, {"start": 1652.72, "end": 1653.0, "word": " class", "probability": 0.96142578125}, {"start": 1653.0, "end": 1653.28, "word": " called", "probability": 0.46240234375}, {"start": 1653.28, "end": 1653.7, "word": " border,", "probability": 0.60009765625}, {"start": 1653.96, "end": 1654.0, "word": " which", "probability": 0.7705078125}, {"start": 1654.0, "end": 1654.14, "word": " is", "probability": 0.92822265625}, {"start": 1654.14, "end": 1654.4, "word": " this", "probability": 0.92236328125}, {"start": 1654.4, "end": 1654.92, "word": " class", "probability": 0.95947265625}, {"start": 1654.92, "end": 1655.92, "word": " What", "probability": 0.6357421875}, {"start": 1655.92, "end": 1656.34, "word": " wraps", "probability": 0.250732421875}, {"start": 1656.34, "end": 1656.66, "word": " inside", "probability": 0.69775390625}, {"start": 1656.66, "end": 1658.22, "word": " it?", "probability": 0.71875}, {"start": 1658.74, "end": 1659.26, "word": " Object", "probability": 0.40380859375}, {"start": 1659.26, "end": 1659.42, "word": " of", "probability": 0.791015625}, {"start": 1659.42, "end": 1659.5, "word": " the", "probability": 0.4130859375}, {"start": 1659.5, "end": 1659.56, "word": " type", "probability": 0.58544921875}, {"start": 1659.56, "end": 1659.84, "word": " shape", "probability": 0.8056640625}], "temperature": 1.0}, {"id": 65, "seek": 168878, "start": 1660.84, "end": 1688.78, "text": " So this is the inner object Now, what are the new attributes and classes that I added? I added new attributes which are border-width and border-color This is border-width and border-color This is four and five This is the constructor to send the shape inside Now, this is the method of draw The inner object has a draw", "tokens": [407, 341, 307, 264, 7284, 2657, 823, 11, 437, 366, 264, 777, 17212, 293, 5359, 300, 286, 3869, 30, 286, 3869, 777, 17212, 597, 366, 7838, 12, 21271, 293, 7838, 12, 23851, 639, 307, 7838, 12, 21271, 293, 7838, 12, 23851, 639, 307, 1451, 293, 1732, 639, 307, 264, 47479, 281, 2845, 264, 3909, 1854, 823, 11, 341, 307, 264, 3170, 295, 2642, 440, 7284, 2657, 575, 257, 2642], "avg_logprob": -0.4593749859503337, "compression_ratio": 1.9216867469879517, "no_speech_prob": 1.6689300537109375e-06, "words": [{"start": 1660.84, "end": 1661.12, "word": " So", "probability": 0.0885009765625}, {"start": 1661.12, "end": 1661.38, "word": " this", "probability": 0.5625}, {"start": 1661.38, "end": 1661.54, "word": " is", "probability": 0.88330078125}, {"start": 1661.54, "end": 1661.66, "word": " the", "probability": 0.7763671875}, {"start": 1661.66, "end": 1662.4, "word": " inner", "probability": 0.62841796875}, {"start": 1662.4, "end": 1662.4, "word": " object", "probability": 0.787109375}, {"start": 1662.4, "end": 1664.22, "word": " Now,", "probability": 0.1817626953125}, {"start": 1664.38, "end": 1664.62, "word": " what", "probability": 0.6865234375}, {"start": 1664.62, "end": 1664.64, "word": " are", "probability": 0.364013671875}, {"start": 1664.64, "end": 1664.72, "word": " the", "probability": 0.84033203125}, {"start": 1664.72, "end": 1665.88, "word": " new", "probability": 0.374267578125}, {"start": 1665.88, "end": 1666.22, "word": " attributes", "probability": 0.314453125}, {"start": 1666.22, "end": 1666.5, "word": " and", "probability": 0.6552734375}, {"start": 1666.5, "end": 1667.02, "word": " classes", "probability": 0.8740234375}, {"start": 1667.02, "end": 1667.46, "word": " that", "probability": 0.5712890625}, {"start": 1667.46, "end": 1667.72, "word": " I", "probability": 0.736328125}, {"start": 1667.72, "end": 1667.72, "word": " added?", "probability": 0.6572265625}, {"start": 1668.16, "end": 1668.48, "word": " I", "probability": 0.6748046875}, {"start": 1668.48, "end": 1668.6, "word": " added", "probability": 0.85107421875}, {"start": 1668.6, "end": 1668.7, "word": " new", "probability": 0.43505859375}, {"start": 1668.7, "end": 1669.3, "word": " attributes", "probability": 0.8466796875}, {"start": 1669.3, "end": 1669.46, "word": " which", "probability": 0.2607421875}, {"start": 1669.46, "end": 1669.64, "word": " are", "probability": 0.8759765625}, {"start": 1669.64, "end": 1670.76, "word": " border", "probability": 0.420166015625}, {"start": 1670.76, "end": 1671.02, "word": "-width", "probability": 0.850341796875}, {"start": 1671.02, "end": 1671.18, "word": " and", "probability": 0.8955078125}, {"start": 1671.18, "end": 1671.4, "word": " border", "probability": 0.791015625}, {"start": 1671.4, "end": 1671.7, "word": "-color", "probability": 0.919921875}, {"start": 1671.7, "end": 1673.22, "word": " This", "probability": 0.29345703125}, {"start": 1673.22, "end": 1673.28, "word": " is", "probability": 0.8369140625}, {"start": 1673.28, "end": 1673.5, "word": " border", "probability": 0.82177734375}, {"start": 1673.5, "end": 1673.74, "word": "-width", "probability": 0.968017578125}, {"start": 1673.74, "end": 1673.9, "word": " and", "probability": 0.9296875}, {"start": 1673.9, "end": 1674.08, "word": " border", "probability": 0.66845703125}, {"start": 1674.08, "end": 1674.42, "word": "-color", "probability": 0.951904296875}, {"start": 1674.42, "end": 1676.66, "word": " This", "probability": 0.31591796875}, {"start": 1676.66, "end": 1676.88, "word": " is", "probability": 0.8291015625}, {"start": 1676.88, "end": 1677.22, "word": " four", "probability": 0.310791015625}, {"start": 1677.22, "end": 1677.34, "word": " and", "probability": 0.841796875}, {"start": 1677.34, "end": 1677.64, "word": " five", "probability": 0.76708984375}, {"start": 1677.64, "end": 1679.52, "word": " This", "probability": 0.33642578125}, {"start": 1679.52, "end": 1680.06, "word": " is", "probability": 0.8916015625}, {"start": 1680.06, "end": 1680.3, "word": " the", "probability": 0.49072265625}, {"start": 1680.3, "end": 1680.9, "word": " constructor", "probability": 0.74853515625}, {"start": 1680.9, "end": 1681.92, "word": " to", "probability": 0.302734375}, {"start": 1681.92, "end": 1682.22, "word": " send", "probability": 0.64013671875}, {"start": 1682.22, "end": 1682.5, "word": " the", "probability": 0.69140625}, {"start": 1682.5, "end": 1682.86, "word": " shape", "probability": 0.8828125}, {"start": 1682.86, "end": 1683.16, "word": " inside", "probability": 0.650390625}, {"start": 1683.16, "end": 1684.48, "word": " Now,", "probability": 0.60498046875}, {"start": 1684.64, "end": 1684.98, "word": " this", "probability": 0.92578125}, {"start": 1684.98, "end": 1685.06, "word": " is", "probability": 0.9130859375}, {"start": 1685.06, "end": 1685.28, "word": " the", "probability": 0.326171875}, {"start": 1685.28, "end": 1685.28, "word": " method", "probability": 0.73193359375}, {"start": 1685.28, "end": 1685.4, "word": " of", "probability": 0.66845703125}, {"start": 1685.4, "end": 1685.6, "word": " draw", "probability": 0.6845703125}, {"start": 1685.6, "end": 1687.5, "word": " The", "probability": 0.499267578125}, {"start": 1687.5, "end": 1688.2, "word": " inner", "probability": 0.91943359375}, {"start": 1688.2, "end": 1688.2, "word": " object", "probability": 0.95849609375}, {"start": 1688.2, "end": 1688.48, "word": " has", "probability": 0.82568359375}, {"start": 1688.48, "end": 1688.52, "word": " a", "probability": 0.58984375}, {"start": 1688.52, "end": 1688.78, "word": " draw", "probability": 0.89111328125}], "temperature": 1.0}, {"id": 66, "seek": 171355, "start": 1689.79, "end": 1713.55, "text": "which is for example 1 I am supposed to see the cover as I see the real object so I wrote 1 in the class this is 1 which I wrote in the class this is class 1 but of course through 1 look with me which is right 1 to draw I started shape.draw", "tokens": [13690, 307, 337, 1365, 502, 286, 669, 3442, 281, 536, 264, 2060, 382, 286, 536, 264, 957, 2657, 370, 286, 4114, 502, 294, 264, 1508, 341, 307, 502, 597, 286, 4114, 294, 264, 1508, 341, 307, 1508, 502, 457, 295, 1164, 807, 502, 574, 365, 385, 597, 307, 558, 502, 281, 2642, 286, 1409, 3909, 13, 48848], "avg_logprob": -0.598060347910585, "compression_ratio": 1.6216216216216217, "no_speech_prob": 5.543231964111328e-06, "words": [{"start": 1689.79, "end": 1690.27, "word": "which", "probability": 0.24072265625}, {"start": 1690.27, "end": 1690.45, "word": " is", "probability": 0.751953125}, {"start": 1690.45, "end": 1690.57, "word": " for", "probability": 0.33349609375}, {"start": 1690.57, "end": 1690.85, "word": " example", "probability": 0.8984375}, {"start": 1690.85, "end": 1692.19, "word": " 1", "probability": 0.3955078125}, {"start": 1692.19, "end": 1693.49, "word": " I", "probability": 0.1329345703125}, {"start": 1693.49, "end": 1693.81, "word": " am", "probability": 0.173095703125}, {"start": 1693.81, "end": 1694.05, "word": " supposed", "probability": 0.81298828125}, {"start": 1694.05, "end": 1694.55, "word": " to", "probability": 0.96923828125}, {"start": 1694.55, "end": 1694.89, "word": " see", "probability": 0.576171875}, {"start": 1694.89, "end": 1695.45, "word": " the", "probability": 0.794921875}, {"start": 1695.45, "end": 1695.93, "word": " cover", "probability": 0.362060546875}, {"start": 1695.93, "end": 1696.29, "word": " as", "probability": 0.69580078125}, {"start": 1696.29, "end": 1696.49, "word": " I", "probability": 0.6630859375}, {"start": 1696.49, "end": 1696.87, "word": " see", "probability": 0.86865234375}, {"start": 1696.87, "end": 1697.73, "word": " the", "probability": 0.8974609375}, {"start": 1697.73, "end": 1698.35, "word": " real", "probability": 0.4970703125}, {"start": 1698.35, "end": 1698.35, "word": " object", "probability": 0.9033203125}, {"start": 1698.35, "end": 1699.01, "word": " so", "probability": 0.222412109375}, {"start": 1699.01, "end": 1699.13, "word": " I", "probability": 0.92138671875}, {"start": 1699.13, "end": 1699.69, "word": " wrote", "probability": 0.41845703125}, {"start": 1699.69, "end": 1700.25, "word": " 1", "probability": 0.7021484375}, {"start": 1700.25, "end": 1700.39, "word": " in", "probability": 0.53125}, {"start": 1700.39, "end": 1700.79, "word": " the", "probability": 0.6328125}, {"start": 1700.79, "end": 1701.09, "word": " class", "probability": 0.8798828125}, {"start": 1701.09, "end": 1701.29, "word": " this", "probability": 0.2315673828125}, {"start": 1701.29, "end": 1701.33, "word": " is", "probability": 0.58740234375}, {"start": 1701.33, "end": 1701.69, "word": " 1", "probability": 0.70263671875}, {"start": 1701.69, "end": 1701.95, "word": " which", "probability": 0.3173828125}, {"start": 1701.95, "end": 1702.19, "word": " I", "probability": 0.630859375}, {"start": 1702.19, "end": 1702.45, "word": " wrote", "probability": 0.87255859375}, {"start": 1702.45, "end": 1702.81, "word": " in", "probability": 0.53271484375}, {"start": 1702.81, "end": 1703.63, "word": " the", "probability": 0.7470703125}, {"start": 1703.63, "end": 1703.97, "word": " class", "probability": 0.84716796875}, {"start": 1703.97, "end": 1705.43, "word": " this", "probability": 0.40576171875}, {"start": 1705.43, "end": 1705.51, "word": " is", "probability": 0.7275390625}, {"start": 1705.51, "end": 1705.89, "word": " class", "probability": 0.57080078125}, {"start": 1705.89, "end": 1706.23, "word": " 1", "probability": 0.89404296875}, {"start": 1706.23, "end": 1707.27, "word": " but", "probability": 0.295654296875}, {"start": 1707.27, "end": 1707.47, "word": " of", "probability": 0.492431640625}, {"start": 1707.47, "end": 1707.67, "word": " course", "probability": 0.92041015625}, {"start": 1707.67, "end": 1708.03, "word": " through", "probability": 0.462646484375}, {"start": 1708.03, "end": 1708.61, "word": " 1", "probability": 0.8154296875}, {"start": 1708.61, "end": 1708.91, "word": " look", "probability": 0.173095703125}, {"start": 1708.91, "end": 1709.11, "word": " with", "probability": 0.7265625}, {"start": 1709.11, "end": 1709.39, "word": " me", "probability": 0.9658203125}, {"start": 1709.39, "end": 1709.81, "word": " which", "probability": 0.662109375}, {"start": 1709.81, "end": 1709.89, "word": " is", "probability": 0.92529296875}, {"start": 1709.89, "end": 1710.03, "word": " right", "probability": 0.1319580078125}, {"start": 1710.03, "end": 1710.45, "word": " 1", "probability": 0.55224609375}, {"start": 1710.45, "end": 1711.19, "word": " to", "probability": 0.6533203125}, {"start": 1711.19, "end": 1711.45, "word": " draw", "probability": 0.525390625}, {"start": 1711.45, "end": 1712.25, "word": " I", "probability": 0.80126953125}, {"start": 1712.25, "end": 1712.55, "word": " started", "probability": 0.150390625}, {"start": 1712.55, "end": 1713.05, "word": " shape", "probability": 0.6953125}, {"start": 1713.05, "end": 1713.55, "word": ".draw", "probability": 0.750244140625}], "temperature": 1.0}, {"id": 67, "seek": 174313, "start": 1714.65, "end": 1743.13, "text": "What does it mean? It means that this draw is equivalent to the draw that is in the shape. This is the transformation. And also through describe, the shape is equivalent to the describe. In the past, we used to do super to describe. Okay? But with some changes, which are what I want. That is, when you make a draw, before you implement the draw on your shape, add the adjustments that I want, then make the draw.", "tokens": [3748, 775, 309, 914, 30, 467, 1355, 300, 341, 2642, 307, 10344, 281, 264, 2642, 300, 307, 294, 264, 3909, 13, 639, 307, 264, 9887, 13, 400, 611, 807, 6786, 11, 264, 3909, 307, 10344, 281, 264, 6786, 13, 682, 264, 1791, 11, 321, 1143, 281, 360, 1687, 281, 6786, 13, 1033, 30, 583, 365, 512, 2962, 11, 597, 366, 437, 286, 528, 13, 663, 307, 11, 562, 291, 652, 257, 2642, 11, 949, 291, 4445, 264, 2642, 322, 428, 3909, 11, 909, 264, 18624, 300, 286, 528, 11, 550, 652, 264, 2642, 13], "avg_logprob": -0.5615131591495715, "compression_ratio": 1.8034934497816595, "no_speech_prob": 3.6954879760742188e-06, "words": [{"start": 1714.65, "end": 1714.93, "word": "What", "probability": 0.19775390625}, {"start": 1714.93, "end": 1715.13, "word": " does", "probability": 0.78857421875}, {"start": 1715.13, "end": 1715.21, "word": " it", "probability": 0.52978515625}, {"start": 1715.21, "end": 1715.21, "word": " mean?", "probability": 0.95947265625}, {"start": 1715.49, "end": 1715.87, "word": " It", "probability": 0.462158203125}, {"start": 1715.87, "end": 1715.87, "word": " means", "probability": 0.90234375}, {"start": 1715.87, "end": 1716.15, "word": " that", "probability": 0.6123046875}, {"start": 1716.15, "end": 1716.21, "word": " this", "probability": 0.56005859375}, {"start": 1716.21, "end": 1716.53, "word": " draw", "probability": 0.287353515625}, {"start": 1716.53, "end": 1716.85, "word": " is", "probability": 0.2032470703125}, {"start": 1716.85, "end": 1717.13, "word": " equivalent", "probability": 0.336669921875}, {"start": 1717.13, "end": 1717.79, "word": " to", "probability": 0.91796875}, {"start": 1717.79, "end": 1718.05, "word": " the", "probability": 0.66162109375}, {"start": 1718.05, "end": 1718.39, "word": " draw", "probability": 0.422119140625}, {"start": 1718.39, "end": 1718.59, "word": " that", "probability": 0.271240234375}, {"start": 1718.59, "end": 1718.73, "word": " is", "probability": 0.4814453125}, {"start": 1718.73, "end": 1719.07, "word": " in", "probability": 0.281005859375}, {"start": 1719.07, "end": 1720.15, "word": " the", "probability": 0.470703125}, {"start": 1720.15, "end": 1720.39, "word": " shape.", "probability": 0.9267578125}, {"start": 1720.85, "end": 1721.29, "word": " This", "probability": 0.59814453125}, {"start": 1721.29, "end": 1721.35, "word": " is", "probability": 0.884765625}, {"start": 1721.35, "end": 1721.45, "word": " the", "probability": 0.4794921875}, {"start": 1721.45, "end": 1721.73, "word": " transformation.", "probability": 0.509765625}, {"start": 1723.03, "end": 1723.09, "word": " And", "probability": 0.458251953125}, {"start": 1723.09, "end": 1723.95, "word": " also", "probability": 0.469482421875}, {"start": 1723.95, "end": 1724.31, "word": " through", "probability": 0.60009765625}, {"start": 1724.31, "end": 1725.03, "word": " describe,", "probability": 0.3037109375}, {"start": 1726.53, "end": 1726.65, "word": " the", "probability": 0.39697265625}, {"start": 1726.65, "end": 1727.35, "word": " shape", "probability": 0.6650390625}, {"start": 1727.35, "end": 1727.39, "word": " is", "probability": 0.433837890625}, {"start": 1727.39, "end": 1727.39, "word": " equivalent", "probability": 0.70166015625}, {"start": 1727.39, "end": 1727.51, "word": " to", "probability": 0.953125}, {"start": 1727.51, "end": 1727.61, "word": " the", "probability": 0.673828125}, {"start": 1727.61, "end": 1727.87, "word": " describe.", "probability": 0.18994140625}, {"start": 1727.95, "end": 1728.03, "word": " In", "probability": 0.444091796875}, {"start": 1728.03, "end": 1728.09, "word": " the", "probability": 0.89111328125}, {"start": 1728.09, "end": 1728.15, "word": " past,", "probability": 0.79150390625}, {"start": 1728.27, "end": 1728.41, "word": " we", "probability": 0.86474609375}, {"start": 1728.41, "end": 1728.41, "word": " used", "probability": 0.5205078125}, {"start": 1728.41, "end": 1728.41, "word": " to", "probability": 0.94580078125}, {"start": 1728.41, "end": 1728.49, "word": " do", "probability": 0.311279296875}, {"start": 1728.49, "end": 1728.85, "word": " super", "probability": 0.60546875}, {"start": 1728.85, "end": 1729.03, "word": " to", "probability": 0.3505859375}, {"start": 1729.03, "end": 1729.39, "word": " describe.", "probability": 0.86767578125}, {"start": 1731.51, "end": 1731.81, "word": " Okay?", "probability": 0.28173828125}, {"start": 1732.53, "end": 1732.77, "word": " But", "probability": 0.80517578125}, {"start": 1732.77, "end": 1732.97, "word": " with", "probability": 0.64501953125}, {"start": 1732.97, "end": 1733.25, "word": " some", "probability": 0.84033203125}, {"start": 1733.25, "end": 1734.13, "word": " changes,", "probability": 0.6533203125}, {"start": 1734.29, "end": 1734.41, "word": " which", "probability": 0.607421875}, {"start": 1734.41, "end": 1734.51, "word": " are", "probability": 0.391845703125}, {"start": 1734.51, "end": 1734.57, "word": " what", "probability": 0.53759765625}, {"start": 1734.57, "end": 1734.69, "word": " I", "probability": 0.94287109375}, {"start": 1734.69, "end": 1734.91, "word": " want.", "probability": 0.80419921875}, {"start": 1736.21, "end": 1736.65, "word": " That", "probability": 0.1910400390625}, {"start": 1736.65, "end": 1736.65, "word": " is,", "probability": 0.7265625}, {"start": 1736.71, "end": 1736.83, "word": " when", "probability": 0.69677734375}, {"start": 1736.83, "end": 1736.99, "word": " you", "probability": 0.8486328125}, {"start": 1736.99, "end": 1737.21, "word": " make", "probability": 0.08465576171875}, {"start": 1737.21, "end": 1737.35, "word": " a", "probability": 0.90673828125}, {"start": 1737.35, "end": 1737.55, "word": " draw,", "probability": 0.7861328125}, {"start": 1737.89, "end": 1738.25, "word": " before", "probability": 0.8603515625}, {"start": 1738.25, "end": 1738.45, "word": " you", "probability": 0.487060546875}, {"start": 1738.45, "end": 1738.75, "word": " implement", "probability": 0.28173828125}, {"start": 1738.75, "end": 1738.89, "word": " the", "probability": 0.4140625}, {"start": 1738.89, "end": 1739.05, "word": " draw", "probability": 0.52880859375}, {"start": 1739.05, "end": 1739.25, "word": " on", "probability": 0.381103515625}, {"start": 1739.25, "end": 1739.37, "word": " your", "probability": 0.76953125}, {"start": 1739.37, "end": 1739.63, "word": " shape,", "probability": 0.79541015625}, {"start": 1740.81, "end": 1741.09, "word": " add", "probability": 0.595703125}, {"start": 1741.09, "end": 1741.27, "word": " the", "probability": 0.8583984375}, {"start": 1741.27, "end": 1741.53, "word": " adjustments", "probability": 0.68017578125}, {"start": 1741.53, "end": 1741.73, "word": " that", "probability": 0.767578125}, {"start": 1741.73, "end": 1741.83, "word": " I", "probability": 0.94677734375}, {"start": 1741.83, "end": 1742.09, "word": " want,", "probability": 0.85546875}, {"start": 1742.29, "end": 1742.53, "word": " then", "probability": 0.53173828125}, {"start": 1742.53, "end": 1742.81, "word": " make", "probability": 0.61083984375}, {"start": 1742.81, "end": 1742.93, "word": " the", "probability": 0.54541015625}, {"start": 1742.93, "end": 1743.13, "word": " draw.", "probability": 0.869140625}], "temperature": 1.0}, {"id": 68, "seek": 176977, "start": 1744.89, "end": 1769.77, "text": "Describe is the same thing. I want to make a shape and describe it and add whatever I want to it. How many classes did I make? One class takes shape. Let's take advantage of it. Go to the frame that I have. Before I had to make circle with border and rectangle with border. Did you notice? All you have to do is to make an object from circle, the basic class.", "tokens": [29543, 8056, 307, 264, 912, 551, 13, 286, 528, 281, 652, 257, 3909, 293, 6786, 309, 293, 909, 2035, 286, 528, 281, 309, 13, 1012, 867, 5359, 630, 286, 652, 30, 1485, 1508, 2516, 3909, 13, 961, 311, 747, 5002, 295, 309, 13, 1037, 281, 264, 3920, 300, 286, 362, 13, 4546, 286, 632, 281, 652, 6329, 365, 7838, 293, 21930, 365, 7838, 13, 2589, 291, 3449, 30, 1057, 291, 362, 281, 360, 307, 281, 652, 364, 2657, 490, 6329, 11, 264, 3875, 1508, 13], "avg_logprob": -0.4487645210221756, "compression_ratio": 1.669767441860465, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1744.8899999999999, "end": 1745.37, "word": "Describe", "probability": 0.841796875}, {"start": 1745.37, "end": 1745.49, "word": " is", "probability": 0.84814453125}, {"start": 1745.49, "end": 1745.67, "word": " the", "probability": 0.70361328125}, {"start": 1745.67, "end": 1745.67, "word": " same", "probability": 0.9072265625}, {"start": 1745.67, "end": 1746.07, "word": " thing.", "probability": 0.61083984375}, {"start": 1746.93, "end": 1747.41, "word": " I", "probability": 0.67578125}, {"start": 1747.41, "end": 1747.51, "word": " want", "probability": 0.494384765625}, {"start": 1747.51, "end": 1747.75, "word": " to", "probability": 0.94921875}, {"start": 1747.75, "end": 1747.89, "word": " make", "probability": 0.46923828125}, {"start": 1747.89, "end": 1748.03, "word": " a", "probability": 0.78076171875}, {"start": 1748.03, "end": 1748.19, "word": " shape", "probability": 0.80517578125}, {"start": 1748.19, "end": 1749.17, "word": " and", "probability": 0.135498046875}, {"start": 1749.17, "end": 1750.11, "word": " describe", "probability": 0.1610107421875}, {"start": 1750.11, "end": 1750.33, "word": " it", "probability": 0.765625}, {"start": 1750.33, "end": 1750.33, "word": " and", "probability": 0.27099609375}, {"start": 1750.33, "end": 1750.49, "word": " add", "probability": 0.6748046875}, {"start": 1750.49, "end": 1750.69, "word": " whatever", "probability": 0.34814453125}, {"start": 1750.69, "end": 1751.77, "word": " I", "probability": 0.427978515625}, {"start": 1751.77, "end": 1752.03, "word": " want", "probability": 0.732421875}, {"start": 1752.03, "end": 1752.03, "word": " to", "probability": 0.51953125}, {"start": 1752.03, "end": 1752.25, "word": " it.", "probability": 0.82470703125}, {"start": 1753.61, "end": 1754.09, "word": " How", "probability": 0.28759765625}, {"start": 1754.09, "end": 1754.35, "word": " many", "probability": 0.88330078125}, {"start": 1754.35, "end": 1754.59, "word": " classes", "probability": 0.7109375}, {"start": 1754.59, "end": 1754.65, "word": " did", "probability": 0.5751953125}, {"start": 1754.65, "end": 1754.65, "word": " I", "probability": 0.97216796875}, {"start": 1754.65, "end": 1754.87, "word": " make?", "probability": 0.55712890625}, {"start": 1755.19, "end": 1755.67, "word": " One", "probability": 0.4853515625}, {"start": 1755.67, "end": 1756.13, "word": " class", "probability": 0.8818359375}, {"start": 1756.13, "end": 1756.47, "word": " takes", "probability": 0.40234375}, {"start": 1756.47, "end": 1756.75, "word": " shape.", "probability": 0.6005859375}, {"start": 1756.91, "end": 1757.19, "word": " Let's", "probability": 0.77587890625}, {"start": 1757.19, "end": 1757.93, "word": " take", "probability": 0.26123046875}, {"start": 1757.93, "end": 1758.13, "word": " advantage", "probability": 0.76708984375}, {"start": 1758.13, "end": 1758.27, "word": " of", "probability": 0.91552734375}, {"start": 1758.27, "end": 1758.37, "word": " it.", "probability": 0.65673828125}, {"start": 1758.43, "end": 1758.61, "word": " Go", "probability": 0.5947265625}, {"start": 1758.61, "end": 1758.71, "word": " to", "probability": 0.91943359375}, {"start": 1758.71, "end": 1758.81, "word": " the", "probability": 0.6748046875}, {"start": 1758.81, "end": 1759.09, "word": " frame", "probability": 0.77685546875}, {"start": 1759.09, "end": 1759.87, "word": " that", "probability": 0.3232421875}, {"start": 1759.87, "end": 1760.09, "word": " I", "probability": 0.96484375}, {"start": 1760.09, "end": 1760.19, "word": " have.", "probability": 0.8671875}, {"start": 1761.73, "end": 1762.21, "word": " Before", "probability": 0.389892578125}, {"start": 1762.21, "end": 1762.45, "word": " I", "probability": 0.5390625}, {"start": 1762.45, "end": 1762.55, "word": " had", "probability": 0.8115234375}, {"start": 1762.55, "end": 1762.89, "word": " to", "probability": 0.96533203125}, {"start": 1762.89, "end": 1763.15, "word": " make", "probability": 0.7060546875}, {"start": 1763.15, "end": 1763.51, "word": " circle", "probability": 0.472412109375}, {"start": 1763.51, "end": 1763.69, "word": " with", "probability": 0.8701171875}, {"start": 1763.69, "end": 1764.01, "word": " border", "probability": 0.7998046875}, {"start": 1764.01, "end": 1764.19, "word": " and", "probability": 0.77490234375}, {"start": 1764.19, "end": 1764.49, "word": " rectangle", "probability": 0.93798828125}, {"start": 1764.49, "end": 1764.77, "word": " with", "probability": 0.91162109375}, {"start": 1764.77, "end": 1765.11, "word": " border.", "probability": 0.84228515625}, {"start": 1766.25, "end": 1766.41, "word": " Did", "probability": 0.56787109375}, {"start": 1766.41, "end": 1766.45, "word": " you", "probability": 0.966796875}, {"start": 1766.45, "end": 1766.71, "word": " notice?", "probability": 0.218994140625}, {"start": 1766.89, "end": 1767.09, "word": " All", "probability": 0.7861328125}, {"start": 1767.09, "end": 1767.41, "word": " you", "probability": 0.9326171875}, {"start": 1767.41, "end": 1767.47, "word": " have", "probability": 0.82275390625}, {"start": 1767.47, "end": 1767.51, "word": " to", "probability": 0.970703125}, {"start": 1767.51, "end": 1767.75, "word": " do", "probability": 0.9541015625}, {"start": 1767.75, "end": 1768.01, "word": " is", "probability": 0.921875}, {"start": 1768.01, "end": 1768.11, "word": " to", "probability": 0.392822265625}, {"start": 1768.11, "end": 1768.37, "word": " make", "probability": 0.7958984375}, {"start": 1768.37, "end": 1768.55, "word": " an", "probability": 0.74462890625}, {"start": 1768.55, "end": 1768.73, "word": " object", "probability": 0.947265625}, {"start": 1768.73, "end": 1768.97, "word": " from", "probability": 0.6982421875}, {"start": 1768.97, "end": 1769.33, "word": " circle,", "probability": 0.478759765625}, {"start": 1769.43, "end": 1769.51, "word": " the", "probability": 0.79638671875}, {"start": 1769.51, "end": 1769.51, "word": " basic", "probability": 0.381591796875}, {"start": 1769.51, "end": 1769.77, "word": " class.", "probability": 0.90576171875}], "temperature": 1.0}, {"id": 69, "seek": 178898, "start": 1771.2, "end": 1788.98, "text": " With me or not guys? Because this basic class we want to add a border to it All you have to do is to create an object from border B that is equal to new border And what happens to the minus sign? The C will accept the C because C is a shape", "tokens": [2022, 385, 420, 406, 1074, 30, 1436, 341, 3875, 1508, 321, 528, 281, 909, 257, 7838, 281, 309, 1057, 291, 362, 281, 360, 307, 281, 1884, 364, 2657, 490, 7838, 363, 300, 307, 2681, 281, 777, 7838, 400, 437, 2314, 281, 264, 3175, 1465, 30, 440, 383, 486, 3241, 264, 383, 570, 383, 307, 257, 3909], "avg_logprob": -0.5981359816434091, "compression_ratio": 1.50625, "no_speech_prob": 9.119510650634766e-06, "words": [{"start": 1771.2, "end": 1771.42, "word": " With", "probability": 0.04901123046875}, {"start": 1771.42, "end": 1771.54, "word": " me", "probability": 0.93798828125}, {"start": 1771.54, "end": 1771.64, "word": " or", "probability": 0.814453125}, {"start": 1771.64, "end": 1771.8, "word": " not", "probability": 0.875}, {"start": 1771.8, "end": 1772.14, "word": " guys?", "probability": 0.4130859375}, {"start": 1772.56, "end": 1772.88, "word": " Because", "probability": 0.440673828125}, {"start": 1772.88, "end": 1773.12, "word": " this", "probability": 0.60546875}, {"start": 1773.12, "end": 1773.24, "word": " basic", "probability": 0.2344970703125}, {"start": 1773.24, "end": 1773.96, "word": " class", "probability": 0.87451171875}, {"start": 1773.96, "end": 1774.6, "word": " we", "probability": 0.261962890625}, {"start": 1774.6, "end": 1775.18, "word": " want", "probability": 0.64990234375}, {"start": 1775.18, "end": 1775.4, "word": " to", "probability": 0.951171875}, {"start": 1775.4, "end": 1775.64, "word": " add", "probability": 0.5595703125}, {"start": 1775.64, "end": 1775.86, "word": " a", "probability": 0.385498046875}, {"start": 1775.86, "end": 1776.08, "word": " border", "probability": 0.84130859375}, {"start": 1776.08, "end": 1776.28, "word": " to", "probability": 0.60498046875}, {"start": 1776.28, "end": 1776.52, "word": " it", "probability": 0.837890625}, {"start": 1776.52, "end": 1776.98, "word": " All", "probability": 0.395751953125}, {"start": 1776.98, "end": 1777.12, "word": " you", "probability": 0.833984375}, {"start": 1777.12, "end": 1777.22, "word": " have", "probability": 0.666015625}, {"start": 1777.22, "end": 1777.34, "word": " to", "probability": 0.97021484375}, {"start": 1777.34, "end": 1777.64, "word": " do", "probability": 0.95947265625}, {"start": 1777.64, "end": 1778.04, "word": " is", "probability": 0.83642578125}, {"start": 1778.04, "end": 1778.08, "word": " to", "probability": 0.2724609375}, {"start": 1778.08, "end": 1778.26, "word": " create", "probability": 0.461181640625}, {"start": 1778.26, "end": 1778.38, "word": " an", "probability": 0.58251953125}, {"start": 1778.38, "end": 1778.64, "word": " object", "probability": 0.95654296875}, {"start": 1778.64, "end": 1778.82, "word": " from", "probability": 0.66796875}, {"start": 1778.82, "end": 1779.2, "word": " border", "probability": 0.75244140625}, {"start": 1779.2, "end": 1779.58, "word": " B", "probability": 0.5400390625}, {"start": 1779.58, "end": 1780.26, "word": " that", "probability": 0.25390625}, {"start": 1780.26, "end": 1780.28, "word": " is", "probability": 0.3828125}, {"start": 1780.28, "end": 1780.42, "word": " equal", "probability": 0.7373046875}, {"start": 1780.42, "end": 1780.5, "word": " to", "probability": 0.96923828125}, {"start": 1780.5, "end": 1780.84, "word": " new", "probability": 0.751953125}, {"start": 1780.84, "end": 1782.24, "word": " border", "probability": 0.7587890625}, {"start": 1782.24, "end": 1783.08, "word": " And", "probability": 0.587890625}, {"start": 1783.08, "end": 1783.3, "word": " what", "probability": 0.822265625}, {"start": 1783.3, "end": 1783.64, "word": " happens", "probability": 0.0718994140625}, {"start": 1783.64, "end": 1783.78, "word": " to", "probability": 0.495849609375}, {"start": 1783.78, "end": 1784.08, "word": " the", "probability": 0.2342529296875}, {"start": 1784.08, "end": 1784.3, "word": " minus", "probability": 0.353515625}, {"start": 1784.3, "end": 1784.52, "word": " sign?", "probability": 0.697265625}, {"start": 1784.92, "end": 1785.36, "word": " The", "probability": 0.2286376953125}, {"start": 1785.36, "end": 1785.58, "word": " C", "probability": 0.487548828125}, {"start": 1785.58, "end": 1786.84, "word": " will", "probability": 0.243408203125}, {"start": 1786.84, "end": 1787.08, "word": " accept", "probability": 0.8447265625}, {"start": 1787.08, "end": 1787.26, "word": " the", "probability": 0.356689453125}, {"start": 1787.26, "end": 1787.42, "word": " C", "probability": 0.88134765625}, {"start": 1787.42, "end": 1787.56, "word": " because", "probability": 0.703125}, {"start": 1787.56, "end": 1787.82, "word": " C", "probability": 0.44287109375}, {"start": 1787.82, "end": 1787.94, "word": " is", "probability": 0.84423828125}, {"start": 1787.94, "end": 1788.02, "word": " a", "probability": 0.591796875}, {"start": 1788.02, "end": 1788.98, "word": " shape", "probability": 0.77685546875}], "temperature": 1.0}, {"id": 70, "seek": 181638, "start": 1790.08, "end": 1816.38, "text": "now all you need to do is to give him your border's properties which is border color for example color.red and go b.set border width for example 3 and the last step I should deal with the border as I would deal with the circle there is a method called draw and say get graphics", "tokens": [3785, 439, 291, 643, 281, 360, 307, 281, 976, 796, 428, 7838, 311, 7221, 597, 307, 7838, 2017, 337, 1365, 2017, 13, 986, 293, 352, 272, 13, 3854, 7838, 11402, 337, 1365, 805, 293, 264, 1036, 1823, 286, 820, 2028, 365, 264, 7838, 382, 286, 576, 2028, 365, 264, 6329, 456, 307, 257, 3170, 1219, 2642, 293, 584, 483, 11837], "avg_logprob": -0.5238217017689689, "compression_ratio": 1.6390532544378698, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1790.08, "end": 1790.4, "word": "now", "probability": 0.2286376953125}, {"start": 1790.4, "end": 1790.62, "word": " all", "probability": 0.267822265625}, {"start": 1790.62, "end": 1790.78, "word": " you", "probability": 0.77978515625}, {"start": 1790.78, "end": 1791.06, "word": " need", "probability": 0.57861328125}, {"start": 1791.06, "end": 1791.24, "word": " to", "probability": 0.935546875}, {"start": 1791.24, "end": 1791.48, "word": " do", "probability": 0.9580078125}, {"start": 1791.48, "end": 1792.3, "word": " is", "probability": 0.869140625}, {"start": 1792.3, "end": 1792.3, "word": " to", "probability": 0.35009765625}, {"start": 1792.3, "end": 1792.58, "word": " give", "probability": 0.406982421875}, {"start": 1792.58, "end": 1792.74, "word": " him", "probability": 0.37646484375}, {"start": 1792.74, "end": 1792.84, "word": " your", "probability": 0.289794921875}, {"start": 1792.84, "end": 1794.26, "word": " border's", "probability": 0.39324951171875}, {"start": 1794.26, "end": 1794.26, "word": " properties", "probability": 0.333984375}, {"start": 1794.26, "end": 1794.98, "word": " which", "probability": 0.22705078125}, {"start": 1794.98, "end": 1795.12, "word": " is", "probability": 0.8251953125}, {"start": 1795.12, "end": 1795.4, "word": " border", "probability": 0.6904296875}, {"start": 1795.4, "end": 1795.8, "word": " color", "probability": 0.42529296875}, {"start": 1795.8, "end": 1796.34, "word": " for", "probability": 0.3935546875}, {"start": 1796.34, "end": 1796.52, "word": " example", "probability": 0.9111328125}, {"start": 1796.52, "end": 1796.88, "word": " color", "probability": 0.54345703125}, {"start": 1796.88, "end": 1797.44, "word": ".red", "probability": 0.872802734375}, {"start": 1797.44, "end": 1799.0, "word": " and", "probability": 0.765625}, {"start": 1799.0, "end": 1799.2, "word": " go", "probability": 0.271728515625}, {"start": 1799.2, "end": 1799.52, "word": " b", "probability": 0.2418212890625}, {"start": 1799.52, "end": 1801.1, "word": ".set", "probability": 0.904541015625}, {"start": 1801.1, "end": 1801.54, "word": " border", "probability": 0.51416015625}, {"start": 1801.54, "end": 1801.96, "word": " width", "probability": 0.72509765625}, {"start": 1801.96, "end": 1802.44, "word": " for", "probability": 0.63037109375}, {"start": 1802.44, "end": 1802.46, "word": " example", "probability": 0.9482421875}, {"start": 1802.46, "end": 1802.82, "word": " 3", "probability": 0.66650390625}, {"start": 1802.82, "end": 1806.96, "word": " and", "probability": 0.78564453125}, {"start": 1806.96, "end": 1807.12, "word": " the", "probability": 0.5458984375}, {"start": 1807.12, "end": 1807.22, "word": " last", "probability": 0.84912109375}, {"start": 1807.22, "end": 1807.6, "word": " step", "probability": 0.822265625}, {"start": 1807.6, "end": 1808.12, "word": " I", "probability": 0.359375}, {"start": 1808.12, "end": 1808.46, "word": " should", "probability": 0.437255859375}, {"start": 1808.46, "end": 1808.88, "word": " deal", "probability": 0.321044921875}, {"start": 1808.88, "end": 1809.08, "word": " with", "probability": 0.89697265625}, {"start": 1809.08, "end": 1809.22, "word": " the", "probability": 0.646484375}, {"start": 1809.22, "end": 1809.46, "word": " border", "probability": 0.8232421875}, {"start": 1809.46, "end": 1809.62, "word": " as", "probability": 0.5126953125}, {"start": 1809.62, "end": 1809.78, "word": " I", "probability": 0.875}, {"start": 1809.78, "end": 1810.04, "word": " would", "probability": 0.389404296875}, {"start": 1810.04, "end": 1810.28, "word": " deal", "probability": 0.73095703125}, {"start": 1810.28, "end": 1810.44, "word": " with", "probability": 0.900390625}, {"start": 1810.44, "end": 1810.56, "word": " the", "probability": 0.78857421875}, {"start": 1810.56, "end": 1810.88, "word": " circle", "probability": 0.962890625}, {"start": 1810.88, "end": 1811.26, "word": " there", "probability": 0.29052734375}, {"start": 1811.26, "end": 1811.64, "word": " is", "probability": 0.7578125}, {"start": 1811.64, "end": 1811.72, "word": " a", "probability": 0.892578125}, {"start": 1811.72, "end": 1811.96, "word": " method", "probability": 0.9501953125}, {"start": 1811.96, "end": 1812.34, "word": " called", "probability": 0.7138671875}, {"start": 1812.34, "end": 1813.58, "word": " draw", "probability": 0.625}, {"start": 1813.58, "end": 1814.46, "word": " and", "probability": 0.5478515625}, {"start": 1814.46, "end": 1814.62, "word": " say", "probability": 0.491455078125}, {"start": 1814.62, "end": 1814.98, "word": " get", "probability": 0.9248046875}, {"start": 1814.98, "end": 1816.38, "word": " graphics", "probability": 0.79541015625}], "temperature": 1.0}, {"id": 71, "seek": 184744, "start": 1822.5, "end": 1847.44, "text": " Let's create a circle with a circle shape Now I want to create a rectangle with border All you need to do is type rectangle R new rectangle 180 for example", "tokens": [961, 311, 1884, 257, 6329, 365, 257, 6329, 3909, 823, 286, 528, 281, 1884, 257, 21930, 365, 7838, 1057, 291, 643, 281, 360, 307, 2010, 21930, 497, 777, 21930, 11971, 337, 1365], "avg_logprob": -0.7585227272727273, "compression_ratio": 1.4054054054054055, "no_speech_prob": 2.1457672119140625e-06, "words": [{"start": 1822.5, "end": 1822.84, "word": " Let's", "probability": 0.51934814453125}, {"start": 1822.84, "end": 1823.06, "word": " create", "probability": 0.2113037109375}, {"start": 1823.06, "end": 1823.12, "word": " a", "probability": 0.77392578125}, {"start": 1823.12, "end": 1823.38, "word": " circle", "probability": 0.226806640625}, {"start": 1823.38, "end": 1827.82, "word": " with", "probability": 0.441162109375}, {"start": 1827.82, "end": 1827.9, "word": " a", "probability": 0.17626953125}, {"start": 1827.9, "end": 1828.02, "word": " circle", "probability": 0.419189453125}, {"start": 1828.02, "end": 1829.08, "word": " shape", "probability": 0.2724609375}, {"start": 1829.08, "end": 1829.76, "word": " Now", "probability": 0.1234130859375}, {"start": 1829.76, "end": 1830.08, "word": " I", "probability": 0.428466796875}, {"start": 1830.08, "end": 1830.3, "word": " want", "probability": 0.49951171875}, {"start": 1830.3, "end": 1830.64, "word": " to", "probability": 0.9580078125}, {"start": 1830.64, "end": 1830.82, "word": " create", "probability": 0.703125}, {"start": 1830.82, "end": 1830.92, "word": " a", "probability": 0.88525390625}, {"start": 1830.92, "end": 1831.3, "word": " rectangle", "probability": 0.908203125}, {"start": 1831.3, "end": 1831.56, "word": " with", "probability": 0.83740234375}, {"start": 1831.56, "end": 1831.92, "word": " border", "probability": 0.345458984375}, {"start": 1831.92, "end": 1833.3, "word": " All", "probability": 0.28125}, {"start": 1833.3, "end": 1833.46, "word": " you", "probability": 0.485595703125}, {"start": 1833.46, "end": 1833.76, "word": " need", "probability": 0.677734375}, {"start": 1833.76, "end": 1833.9, "word": " to", "probability": 0.91455078125}, {"start": 1833.9, "end": 1834.06, "word": " do", "probability": 0.89404296875}, {"start": 1834.06, "end": 1834.8, "word": " is", "probability": 0.58642578125}, {"start": 1834.8, "end": 1835.86, "word": " type", "probability": 0.1434326171875}, {"start": 1835.86, "end": 1837.12, "word": " rectangle", "probability": 0.44091796875}, {"start": 1837.12, "end": 1837.96, "word": " R", "probability": 0.201904296875}, {"start": 1837.96, "end": 1839.2, "word": " new", "probability": 0.52734375}, {"start": 1839.2, "end": 1843.58, "word": " rectangle", "probability": 0.9052734375}, {"start": 1843.58, "end": 1846.84, "word": " 180", "probability": 0.72998046875}, {"start": 1846.84, "end": 1847.3, "word": " for", "probability": 0.73095703125}, {"start": 1847.3, "end": 1847.44, "word": " example", "probability": 0.94140625}], "temperature": 1.0}, {"id": 72, "seek": 187261, "start": 1852.71, "end": 1872.61, "text": " and here R rectangle I didn't make a new class I brought rectangle and made it the same object of type border and it will run add shape and it will add border to it and if you have any other shape", "tokens": [293, 510, 497, 21930, 286, 994, 380, 652, 257, 777, 1508, 286, 3038, 21930, 293, 1027, 309, 264, 912, 2657, 295, 2010, 7838, 293, 309, 486, 1190, 909, 3909, 293, 309, 486, 909, 7838, 281, 309, 293, 498, 291, 362, 604, 661, 3909], "avg_logprob": -0.6164772754365747, "compression_ratio": 1.5271317829457365, "no_speech_prob": 3.159046173095703e-06, "words": [{"start": 1852.71, "end": 1853.23, "word": " and", "probability": 0.09381103515625}, {"start": 1853.23, "end": 1853.41, "word": " here", "probability": 0.55224609375}, {"start": 1853.41, "end": 1853.89, "word": " R", "probability": 0.54541015625}, {"start": 1853.89, "end": 1855.79, "word": " rectangle", "probability": 0.64208984375}, {"start": 1855.79, "end": 1858.49, "word": " I", "probability": 0.204345703125}, {"start": 1858.49, "end": 1859.69, "word": " didn't", "probability": 0.671875}, {"start": 1859.69, "end": 1859.81, "word": " make", "probability": 0.499267578125}, {"start": 1859.81, "end": 1859.89, "word": " a", "probability": 0.79248046875}, {"start": 1859.89, "end": 1860.37, "word": " new", "probability": 0.90283203125}, {"start": 1860.37, "end": 1860.37, "word": " class", "probability": 0.9228515625}, {"start": 1860.37, "end": 1861.43, "word": " I", "probability": 0.6005859375}, {"start": 1861.43, "end": 1861.61, "word": " brought", "probability": 0.2288818359375}, {"start": 1861.61, "end": 1862.15, "word": " rectangle", "probability": 0.429931640625}, {"start": 1862.15, "end": 1862.27, "word": " and", "probability": 0.8447265625}, {"start": 1862.27, "end": 1862.53, "word": " made", "probability": 0.152099609375}, {"start": 1862.53, "end": 1862.73, "word": " it", "probability": 0.6005859375}, {"start": 1862.73, "end": 1862.79, "word": " the", "probability": 0.147705078125}, {"start": 1862.79, "end": 1863.05, "word": " same", "probability": 0.873046875}, {"start": 1863.05, "end": 1863.87, "word": " object", "probability": 0.3974609375}, {"start": 1863.87, "end": 1864.01, "word": " of", "probability": 0.47998046875}, {"start": 1864.01, "end": 1864.31, "word": " type", "probability": 0.295166015625}, {"start": 1864.31, "end": 1865.33, "word": " border", "probability": 0.79833984375}, {"start": 1865.33, "end": 1865.75, "word": " and", "probability": 0.73583984375}, {"start": 1865.75, "end": 1865.97, "word": " it", "probability": 0.2156982421875}, {"start": 1865.97, "end": 1865.97, "word": " will", "probability": 0.689453125}, {"start": 1865.97, "end": 1866.21, "word": " run", "probability": 0.81689453125}, {"start": 1866.21, "end": 1868.81, "word": " add", "probability": 0.278564453125}, {"start": 1868.81, "end": 1869.13, "word": " shape", "probability": 0.88232421875}, {"start": 1869.13, "end": 1869.23, "word": " and", "probability": 0.71044921875}, {"start": 1869.23, "end": 1869.31, "word": " it", "probability": 0.505859375}, {"start": 1869.31, "end": 1869.41, "word": " will", "probability": 0.5205078125}, {"start": 1869.41, "end": 1869.53, "word": " add", "probability": 0.77197265625}, {"start": 1869.53, "end": 1871.07, "word": " border", "probability": 0.5927734375}, {"start": 1871.07, "end": 1871.19, "word": " to", "probability": 0.33447265625}, {"start": 1871.19, "end": 1871.19, "word": " it", "probability": 0.90576171875}, {"start": 1871.19, "end": 1871.55, "word": " and", "probability": 0.7578125}, {"start": 1871.55, "end": 1871.69, "word": " if", "probability": 0.9384765625}, {"start": 1871.69, "end": 1871.97, "word": " you", "probability": 0.9599609375}, {"start": 1871.97, "end": 1871.97, "word": " have", "probability": 0.93017578125}, {"start": 1871.97, "end": 1872.21, "word": " any", "probability": 0.67431640625}, {"start": 1872.21, "end": 1872.61, "word": " other", "probability": 0.791015625}, {"start": 1872.61, "end": 1872.61, "word": " shape", "probability": 0.7470703125}], "temperature": 1.0}, {"id": 73, "seek": 189648, "start": 1875.08, "end": 1896.48, "text": "I mean, if I have 10 shapes, and I make only one class for each of them, I add this new functionality. Now, using the decorator method. I have two ways to add any feature to a class. The first way is subclassing.", "tokens": [40, 914, 11, 498, 286, 362, 1266, 10854, 11, 293, 286, 652, 787, 472, 1508, 337, 1184, 295, 552, 11, 286, 909, 341, 777, 14980, 13, 823, 11, 1228, 264, 7919, 1639, 3170, 13, 286, 362, 732, 2098, 281, 909, 604, 4111, 281, 257, 1508, 13, 440, 700, 636, 307, 1422, 11665, 278, 13], "avg_logprob": -0.6034090714021163, "compression_ratio": 1.394736842105263, "no_speech_prob": 1.3172626495361328e-05, "words": [{"start": 1875.08, "end": 1875.42, "word": "I", "probability": 0.1025390625}, {"start": 1875.42, "end": 1875.42, "word": " mean,", "probability": 0.45263671875}, {"start": 1875.68, "end": 1875.72, "word": " if", "probability": 0.48193359375}, {"start": 1875.72, "end": 1877.48, "word": " I", "probability": 0.89794921875}, {"start": 1877.48, "end": 1877.62, "word": " have", "probability": 0.708984375}, {"start": 1877.62, "end": 1877.94, "word": " 10", "probability": 0.5322265625}, {"start": 1877.94, "end": 1878.32, "word": " shapes,", "probability": 0.367431640625}, {"start": 1878.9, "end": 1879.48, "word": " and", "probability": 0.292724609375}, {"start": 1879.48, "end": 1879.52, "word": " I", "probability": 0.78125}, {"start": 1879.52, "end": 1879.7, "word": " make", "probability": 0.142578125}, {"start": 1879.7, "end": 1880.16, "word": " only", "probability": 0.2763671875}, {"start": 1880.16, "end": 1880.46, "word": " one", "probability": 0.6962890625}, {"start": 1880.46, "end": 1880.52, "word": " class", "probability": 0.9326171875}, {"start": 1880.52, "end": 1881.36, "word": " for", "probability": 0.1663818359375}, {"start": 1881.36, "end": 1881.52, "word": " each", "probability": 0.6064453125}, {"start": 1881.52, "end": 1881.52, "word": " of", "probability": 0.28369140625}, {"start": 1881.52, "end": 1881.9, "word": " them,", "probability": 0.6806640625}, {"start": 1882.08, "end": 1882.1, "word": " I", "probability": 0.626953125}, {"start": 1882.1, "end": 1882.32, "word": " add", "probability": 0.5771484375}, {"start": 1882.32, "end": 1882.48, "word": " this", "probability": 0.4287109375}, {"start": 1882.48, "end": 1883.26, "word": " new", "probability": 0.6923828125}, {"start": 1883.26, "end": 1883.26, "word": " functionality.", "probability": 0.7578125}, {"start": 1886.82, "end": 1887.42, "word": " Now,", "probability": 0.462646484375}, {"start": 1888.14, "end": 1889.02, "word": " using", "probability": 0.345947265625}, {"start": 1889.02, "end": 1889.8, "word": " the", "probability": 0.59912109375}, {"start": 1889.8, "end": 1891.24, "word": " decorator", "probability": 0.862548828125}, {"start": 1891.24, "end": 1891.28, "word": " method.", "probability": 0.568359375}, {"start": 1891.38, "end": 1891.94, "word": " I", "probability": 0.26953125}, {"start": 1891.94, "end": 1892.8, "word": " have", "probability": 0.76806640625}, {"start": 1892.8, "end": 1892.98, "word": " two", "probability": 0.6982421875}, {"start": 1892.98, "end": 1893.32, "word": " ways", "probability": 0.5810546875}, {"start": 1893.32, "end": 1893.52, "word": " to", "probability": 0.7744140625}, {"start": 1893.52, "end": 1893.82, "word": " add", "probability": 0.91748046875}, {"start": 1893.82, "end": 1894.12, "word": " any", "probability": 0.6513671875}, {"start": 1894.12, "end": 1894.5, "word": " feature", "probability": 0.8193359375}, {"start": 1894.5, "end": 1894.66, "word": " to", "probability": 0.84326171875}, {"start": 1894.66, "end": 1894.78, "word": " a", "probability": 0.3720703125}, {"start": 1894.78, "end": 1895.02, "word": " class.", "probability": 0.96337890625}, {"start": 1895.1, "end": 1895.2, "word": " The", "probability": 0.69677734375}, {"start": 1895.2, "end": 1895.58, "word": " first", "probability": 0.8779296875}, {"start": 1895.58, "end": 1895.58, "word": " way", "probability": 0.56103515625}, {"start": 1895.58, "end": 1895.74, "word": " is", "probability": 0.921875}, {"start": 1895.74, "end": 1896.48, "word": " subclassing.", "probability": 0.7802734375}], "temperature": 1.0}, {"id": 74, "seek": 191938, "start": 1898.34, "end": 1919.38, "text": "means you were searched, right or wrong, we talked about it a lot and it took you two years and you are happy with it. The second way is to use the decorator method. I want to add a new functionality to the class. You create an object from your class and wrap it with another object from the class. The way of wrapping this, or the decorator we call it, or the wrapper", "tokens": [1398, 599, 291, 645, 22961, 11, 558, 420, 2085, 11, 321, 2825, 466, 309, 257, 688, 293, 309, 1890, 291, 732, 924, 293, 291, 366, 2055, 365, 309, 13, 440, 1150, 636, 307, 281, 764, 264, 7919, 1639, 3170, 13, 286, 528, 281, 909, 257, 777, 14980, 281, 264, 1508, 13, 509, 1884, 364, 2657, 490, 428, 1508, 293, 7019, 309, 365, 1071, 2657, 490, 264, 1508, 13, 440, 636, 295, 21993, 341, 11, 420, 264, 7919, 1639, 321, 818, 309, 11, 420, 264, 46906], "avg_logprob": -0.510174410287724, "compression_ratio": 1.7116279069767442, "no_speech_prob": 5.9604644775390625e-06, "words": [{"start": 1898.3400000000001, "end": 1898.7, "word": "means", "probability": 0.42913818359375}, {"start": 1898.7, "end": 1898.82, "word": " you", "probability": 0.44921875}, {"start": 1898.82, "end": 1898.94, "word": " were", "probability": 0.1856689453125}, {"start": 1898.94, "end": 1899.38, "word": " searched,", "probability": 0.314208984375}, {"start": 1899.66, "end": 1899.92, "word": " right", "probability": 0.40576171875}, {"start": 1899.92, "end": 1900.1, "word": " or", "probability": 0.67578125}, {"start": 1900.1, "end": 1900.18, "word": " wrong,", "probability": 0.6826171875}, {"start": 1900.24, "end": 1900.56, "word": " we", "probability": 0.42138671875}, {"start": 1900.56, "end": 1900.56, "word": " talked", "probability": 0.529296875}, {"start": 1900.56, "end": 1900.7, "word": " about", "probability": 0.77490234375}, {"start": 1900.7, "end": 1900.8, "word": " it", "probability": 0.7880859375}, {"start": 1900.8, "end": 1901.12, "word": " a", "probability": 0.342041015625}, {"start": 1901.12, "end": 1901.12, "word": " lot", "probability": 0.95751953125}, {"start": 1901.12, "end": 1901.26, "word": " and", "probability": 0.56689453125}, {"start": 1901.26, "end": 1901.38, "word": " it", "probability": 0.307861328125}, {"start": 1901.38, "end": 1901.42, "word": " took", "probability": 0.443603515625}, {"start": 1901.42, "end": 1901.48, "word": " you", "probability": 0.63916015625}, {"start": 1901.48, "end": 1901.78, "word": " two", "probability": 0.6044921875}, {"start": 1901.78, "end": 1901.78, "word": " years", "probability": 0.93310546875}, {"start": 1901.78, "end": 1901.9, "word": " and", "probability": 0.611328125}, {"start": 1901.9, "end": 1902.04, "word": " you", "probability": 0.94189453125}, {"start": 1902.04, "end": 1902.08, "word": " are", "probability": 0.459716796875}, {"start": 1902.08, "end": 1902.32, "word": " happy", "probability": 0.66650390625}, {"start": 1902.32, "end": 1902.5, "word": " with", "probability": 0.66796875}, {"start": 1902.5, "end": 1902.72, "word": " it.", "probability": 0.9189453125}, {"start": 1903.14, "end": 1903.36, "word": " The", "probability": 0.57177734375}, {"start": 1903.36, "end": 1903.42, "word": " second", "probability": 0.5732421875}, {"start": 1903.42, "end": 1904.04, "word": " way", "probability": 0.7412109375}, {"start": 1904.04, "end": 1904.56, "word": " is", "probability": 0.78125}, {"start": 1904.56, "end": 1904.66, "word": " to", "probability": 0.5302734375}, {"start": 1904.66, "end": 1904.92, "word": " use", "probability": 0.87353515625}, {"start": 1904.92, "end": 1905.34, "word": " the", "probability": 0.833984375}, {"start": 1905.34, "end": 1905.9, "word": " decorator", "probability": 0.859375}, {"start": 1905.9, "end": 1905.98, "word": " method.", "probability": 0.6083984375}, {"start": 1906.18, "end": 1906.54, "word": " I", "probability": 0.650390625}, {"start": 1906.54, "end": 1906.7, "word": " want", "probability": 0.517578125}, {"start": 1906.7, "end": 1906.78, "word": " to", "probability": 0.96875}, {"start": 1906.78, "end": 1906.96, "word": " add", "probability": 0.93359375}, {"start": 1906.96, "end": 1907.06, "word": " a", "probability": 0.7216796875}, {"start": 1907.06, "end": 1907.06, "word": " new", "probability": 0.88232421875}, {"start": 1907.06, "end": 1907.58, "word": " functionality", "probability": 0.86767578125}, {"start": 1907.58, "end": 1908.04, "word": " to", "probability": 0.91796875}, {"start": 1908.04, "end": 1908.14, "word": " the", "probability": 0.2490234375}, {"start": 1908.14, "end": 1908.5, "word": " class.", "probability": 0.9599609375}, {"start": 1909.08, "end": 1909.36, "word": " You", "probability": 0.55078125}, {"start": 1909.36, "end": 1909.54, "word": " create", "probability": 0.4287109375}, {"start": 1909.54, "end": 1909.7, "word": " an", "probability": 0.91796875}, {"start": 1909.7, "end": 1909.9, "word": " object", "probability": 0.97265625}, {"start": 1909.9, "end": 1910.14, "word": " from", "probability": 0.79052734375}, {"start": 1910.14, "end": 1910.26, "word": " your", "probability": 0.499267578125}, {"start": 1910.26, "end": 1910.84, "word": " class", "probability": 0.8515625}, {"start": 1910.84, "end": 1911.28, "word": " and", "probability": 0.70751953125}, {"start": 1911.28, "end": 1911.7, "word": " wrap", "probability": 0.444091796875}, {"start": 1911.7, "end": 1912.1, "word": " it", "probability": 0.9365234375}, {"start": 1912.1, "end": 1913.2, "word": " with", "probability": 0.794921875}, {"start": 1913.2, "end": 1913.34, "word": " another", "probability": 0.461181640625}, {"start": 1913.34, "end": 1913.5, "word": " object", "probability": 0.94384765625}, {"start": 1913.5, "end": 1913.7, "word": " from", "probability": 0.83984375}, {"start": 1913.7, "end": 1913.8, "word": " the", "probability": 0.63427734375}, {"start": 1913.8, "end": 1914.06, "word": " class.", "probability": 0.88134765625}, {"start": 1916.52, "end": 1916.68, "word": " The", "probability": 0.53369140625}, {"start": 1916.68, "end": 1916.84, "word": " way", "probability": 0.39794921875}, {"start": 1916.84, "end": 1917.0, "word": " of", "probability": 0.7138671875}, {"start": 1917.0, "end": 1917.3, "word": " wrapping", "probability": 0.6962890625}, {"start": 1917.3, "end": 1917.6, "word": " this,", "probability": 0.3017578125}, {"start": 1917.64, "end": 1917.78, "word": " or", "probability": 0.8056640625}, {"start": 1917.78, "end": 1917.86, "word": " the", "probability": 0.2900390625}, {"start": 1917.86, "end": 1918.3, "word": " decorator", "probability": 0.982666015625}, {"start": 1918.3, "end": 1918.42, "word": " we", "probability": 0.386962890625}, {"start": 1918.42, "end": 1918.74, "word": " call", "probability": 0.87939453125}, {"start": 1918.74, "end": 1918.9, "word": " it,", "probability": 0.91259765625}, {"start": 1918.94, "end": 1919.04, "word": " or", "probability": 0.939453125}, {"start": 1919.04, "end": 1919.12, "word": " the", "probability": 0.763671875}, {"start": 1919.12, "end": 1919.38, "word": " wrapper", "probability": 0.951171875}], "temperature": 1.0}, {"id": 75, "seek": 194565, "start": 1920.53, "end": 1945.65, "text": "It's difficult because you have to use the methods in your object to create it here because the client sees the cover as it sees what's inside. So 1,2,3, I made them here 1,2,3, but I let it transform from inside. We didn't do this here. We used to do subclassing, missequation, because you don't want to write code. Here you want to write code with transformation and adding additional quotes.", "tokens": [3522, 311, 2252, 570, 291, 362, 281, 764, 264, 7150, 294, 428, 2657, 281, 1884, 309, 510, 570, 264, 6423, 8194, 264, 2060, 382, 309, 8194, 437, 311, 1854, 13, 407, 502, 11, 17, 11, 18, 11, 286, 1027, 552, 510, 502, 11, 17, 11, 18, 11, 457, 286, 718, 309, 4088, 490, 1854, 13, 492, 994, 380, 360, 341, 510, 13, 492, 1143, 281, 360, 1422, 11665, 278, 11, 3346, 405, 358, 399, 11, 570, 291, 500, 380, 528, 281, 2464, 3089, 13, 1692, 291, 528, 281, 2464, 3089, 365, 9887, 293, 5127, 4497, 19963, 13], "avg_logprob": -0.6004464145825834, "compression_ratio": 1.7356828193832599, "no_speech_prob": 2.6166439056396484e-05, "words": [{"start": 1920.53, "end": 1920.87, "word": "It's", "probability": 0.3095703125}, {"start": 1920.87, "end": 1921.23, "word": " difficult", "probability": 0.329833984375}, {"start": 1921.23, "end": 1921.63, "word": " because", "probability": 0.391357421875}, {"start": 1921.63, "end": 1922.05, "word": " you", "probability": 0.8876953125}, {"start": 1922.05, "end": 1922.21, "word": " have", "probability": 0.515625}, {"start": 1922.21, "end": 1922.31, "word": " to", "probability": 0.966796875}, {"start": 1922.31, "end": 1922.65, "word": " use", "probability": 0.260986328125}, {"start": 1922.65, "end": 1922.75, "word": " the", "probability": 0.58642578125}, {"start": 1922.75, "end": 1923.09, "word": " methods", "probability": 0.71484375}, {"start": 1923.09, "end": 1923.59, "word": " in", "probability": 0.41259765625}, {"start": 1923.59, "end": 1923.69, "word": " your", "probability": 0.4482421875}, {"start": 1923.69, "end": 1923.99, "word": " object", "probability": 0.80810546875}, {"start": 1923.99, "end": 1925.47, "word": " to", "probability": 0.43310546875}, {"start": 1925.47, "end": 1925.75, "word": " create", "probability": 0.2110595703125}, {"start": 1925.75, "end": 1925.91, "word": " it", "probability": 0.43798828125}, {"start": 1925.91, "end": 1926.11, "word": " here", "probability": 0.33203125}, {"start": 1926.11, "end": 1926.45, "word": " because", "probability": 0.2890625}, {"start": 1926.45, "end": 1927.91, "word": " the", "probability": 0.70361328125}, {"start": 1927.91, "end": 1928.19, "word": " client", "probability": 0.9150390625}, {"start": 1928.19, "end": 1928.63, "word": " sees", "probability": 0.642578125}, {"start": 1928.63, "end": 1928.81, "word": " the", "probability": 0.83251953125}, {"start": 1928.81, "end": 1929.25, "word": " cover", "probability": 0.45703125}, {"start": 1929.25, "end": 1929.99, "word": " as", "probability": 0.595703125}, {"start": 1929.99, "end": 1930.15, "word": " it", "probability": 0.408447265625}, {"start": 1930.15, "end": 1930.39, "word": " sees", "probability": 0.89697265625}, {"start": 1930.39, "end": 1930.57, "word": " what's", "probability": 0.52301025390625}, {"start": 1930.57, "end": 1930.75, "word": " inside.", "probability": 0.85205078125}, {"start": 1931.47, "end": 1931.83, "word": " So", "probability": 0.22998046875}, {"start": 1931.83, "end": 1932.13, "word": " 1", "probability": 0.415771484375}, {"start": 1932.13, "end": 1932.49, "word": ",2", "probability": 0.5361328125}, {"start": 1932.49, "end": 1932.87, "word": ",3,", "probability": 0.80029296875}, {"start": 1932.91, "end": 1932.99, "word": " I", "probability": 0.57421875}, {"start": 1932.99, "end": 1933.19, "word": " made", "probability": 0.318603515625}, {"start": 1933.19, "end": 1933.33, "word": " them", "probability": 0.71728515625}, {"start": 1933.33, "end": 1933.49, "word": " here", "probability": 0.51904296875}, {"start": 1933.49, "end": 1933.65, "word": " 1", "probability": 0.77978515625}, {"start": 1933.65, "end": 1933.95, "word": ",2", "probability": 0.9580078125}, {"start": 1933.95, "end": 1934.33, "word": ",3,", "probability": 0.978515625}, {"start": 1934.35, "end": 1935.01, "word": " but", "probability": 0.86474609375}, {"start": 1935.01, "end": 1935.19, "word": " I", "probability": 0.69140625}, {"start": 1935.19, "end": 1935.37, "word": " let", "probability": 0.32958984375}, {"start": 1935.37, "end": 1935.55, "word": " it", "probability": 0.344970703125}, {"start": 1935.55, "end": 1935.87, "word": " transform", "probability": 0.290771484375}, {"start": 1935.87, "end": 1936.05, "word": " from", "probability": 0.6708984375}, {"start": 1936.05, "end": 1936.29, "word": " inside.", "probability": 0.59130859375}, {"start": 1936.79, "end": 1937.27, "word": " We", "probability": 0.4287109375}, {"start": 1937.27, "end": 1937.35, "word": " didn't", "probability": 0.650390625}, {"start": 1937.35, "end": 1937.83, "word": " do", "probability": 0.5078125}, {"start": 1937.83, "end": 1937.83, "word": " this", "probability": 0.56201171875}, {"start": 1937.83, "end": 1938.01, "word": " here.", "probability": 0.6171875}, {"start": 1938.55, "end": 1938.79, "word": " We", "probability": 0.371826171875}, {"start": 1938.79, "end": 1938.79, "word": " used", "probability": 0.30810546875}, {"start": 1938.79, "end": 1938.87, "word": " to", "probability": 0.67431640625}, {"start": 1938.87, "end": 1939.23, "word": " do", "probability": 0.266845703125}, {"start": 1939.23, "end": 1939.89, "word": " subclassing,", "probability": 0.7037760416666666}, {"start": 1939.91, "end": 1940.43, "word": " missequation,", "probability": 0.490814208984375}, {"start": 1940.47, "end": 1940.59, "word": " because", "probability": 0.55859375}, {"start": 1940.59, "end": 1940.71, "word": " you", "probability": 0.81884765625}, {"start": 1940.71, "end": 1940.81, "word": " don't", "probability": 0.884765625}, {"start": 1940.81, "end": 1940.99, "word": " want", "probability": 0.58154296875}, {"start": 1940.99, "end": 1941.15, "word": " to", "probability": 0.83642578125}, {"start": 1941.15, "end": 1941.29, "word": " write", "probability": 0.75146484375}, {"start": 1941.29, "end": 1942.35, "word": " code.", "probability": 0.8916015625}, {"start": 1942.41, "end": 1942.55, "word": " Here", "probability": 0.73974609375}, {"start": 1942.55, "end": 1942.71, "word": " you", "probability": 0.7314453125}, {"start": 1942.71, "end": 1942.89, "word": " want", "probability": 0.65771484375}, {"start": 1942.89, "end": 1943.01, "word": " to", "probability": 0.90380859375}, {"start": 1943.01, "end": 1943.13, "word": " write", "probability": 0.884765625}, {"start": 1943.13, "end": 1943.49, "word": " code", "probability": 0.86279296875}, {"start": 1943.49, "end": 1943.65, "word": " with", "probability": 0.716796875}, {"start": 1943.65, "end": 1944.13, "word": " transformation", "probability": 0.25634765625}, {"start": 1944.13, "end": 1944.81, "word": " and", "probability": 0.853515625}, {"start": 1944.81, "end": 1945.27, "word": " adding", "probability": 0.407470703125}, {"start": 1945.27, "end": 1945.41, "word": " additional", "probability": 0.61962890625}, {"start": 1945.41, "end": 1945.65, "word": " quotes.", "probability": 0.2362060546875}], "temperature": 1.0}, {"id": 76, "seek": 197506, "start": 1946.66, "end": 1975.06, "text": "And you can add more methods For example, I will not add more things here Of course, what will be extra if there are setters and getters For border width and border color These are considered four or five But the advantage of the decorator method is that I can change the inner object Of different types, so it's like a cover It can cover any type of shape", "tokens": [5289, 291, 393, 909, 544, 7150, 1171, 1365, 11, 286, 486, 406, 909, 544, 721, 510, 2720, 1164, 11, 437, 486, 312, 2857, 498, 456, 366, 992, 1559, 293, 483, 1559, 1171, 7838, 11402, 293, 7838, 2017, 1981, 366, 4888, 1451, 420, 1732, 583, 264, 5002, 295, 264, 7919, 1639, 3170, 307, 300, 286, 393, 1319, 264, 7284, 2657, 2720, 819, 3467, 11, 370, 309, 311, 411, 257, 2060, 467, 393, 2060, 604, 2010, 295, 3909], "avg_logprob": -0.5588474180791285, "compression_ratio": 1.5964125560538116, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1946.66, "end": 1946.84, "word": "And", "probability": 0.15576171875}, {"start": 1946.84, "end": 1946.9, "word": " you", "probability": 0.80126953125}, {"start": 1946.9, "end": 1947.1, "word": " can", "probability": 0.90966796875}, {"start": 1947.1, "end": 1947.32, "word": " add", "probability": 0.363037109375}, {"start": 1947.32, "end": 1948.7, "word": " more", "probability": 0.484619140625}, {"start": 1948.7, "end": 1948.7, "word": " methods", "probability": 0.810546875}, {"start": 1948.7, "end": 1949.22, "word": " For", "probability": 0.12188720703125}, {"start": 1949.22, "end": 1949.5, "word": " example,", "probability": 0.91259765625}, {"start": 1949.62, "end": 1949.8, "word": " I", "probability": 0.375732421875}, {"start": 1949.8, "end": 1949.96, "word": " will", "probability": 0.22119140625}, {"start": 1949.96, "end": 1949.96, "word": " not", "probability": 0.247802734375}, {"start": 1949.96, "end": 1950.08, "word": " add", "probability": 0.84619140625}, {"start": 1950.08, "end": 1950.9, "word": " more", "probability": 0.4794921875}, {"start": 1950.9, "end": 1950.96, "word": " things", "probability": 0.372802734375}, {"start": 1950.96, "end": 1951.48, "word": " here", "probability": 0.257568359375}, {"start": 1951.48, "end": 1951.56, "word": " Of", "probability": 0.345703125}, {"start": 1951.56, "end": 1952.22, "word": " course,", "probability": 0.9521484375}, {"start": 1952.36, "end": 1952.38, "word": " what", "probability": 0.662109375}, {"start": 1952.38, "end": 1952.46, "word": " will", "probability": 0.63671875}, {"start": 1952.46, "end": 1952.64, "word": " be", "probability": 0.80859375}, {"start": 1952.64, "end": 1953.02, "word": " extra", "probability": 0.188232421875}, {"start": 1953.02, "end": 1953.18, "word": " if", "probability": 0.498046875}, {"start": 1953.18, "end": 1953.44, "word": " there", "probability": 0.79541015625}, {"start": 1953.44, "end": 1953.44, "word": " are", "probability": 0.72998046875}, {"start": 1953.44, "end": 1953.76, "word": " setters", "probability": 0.733154296875}, {"start": 1953.76, "end": 1953.88, "word": " and", "probability": 0.91796875}, {"start": 1953.88, "end": 1954.28, "word": " getters", "probability": 0.95166015625}, {"start": 1954.28, "end": 1955.24, "word": " For", "probability": 0.413818359375}, {"start": 1955.24, "end": 1955.58, "word": " border", "probability": 0.6513671875}, {"start": 1955.58, "end": 1955.86, "word": " width", "probability": 0.94287109375}, {"start": 1955.86, "end": 1956.02, "word": " and", "probability": 0.88623046875}, {"start": 1956.02, "end": 1956.3, "word": " border", "probability": 0.73046875}, {"start": 1956.3, "end": 1957.28, "word": " color", "probability": 0.69775390625}, {"start": 1957.28, "end": 1957.88, "word": " These", "probability": 0.2249755859375}, {"start": 1957.88, "end": 1958.12, "word": " are", "probability": 0.55517578125}, {"start": 1958.12, "end": 1958.42, "word": " considered", "probability": 0.5751953125}, {"start": 1958.42, "end": 1959.0, "word": " four", "probability": 0.28076171875}, {"start": 1959.0, "end": 1960.32, "word": " or", "probability": 0.90234375}, {"start": 1960.32, "end": 1960.58, "word": " five", "probability": 0.8984375}, {"start": 1960.58, "end": 1962.02, "word": " But", "probability": 0.1964111328125}, {"start": 1962.02, "end": 1962.96, "word": " the", "probability": 0.83251953125}, {"start": 1962.96, "end": 1963.18, "word": " advantage", "probability": 0.55908203125}, {"start": 1963.18, "end": 1963.36, "word": " of", "probability": 0.71728515625}, {"start": 1963.36, "end": 1963.44, "word": " the", "probability": 0.462890625}, {"start": 1963.44, "end": 1964.3, "word": " decorator", "probability": 0.88916015625}, {"start": 1964.3, "end": 1964.3, "word": " method", "probability": 0.51708984375}, {"start": 1964.3, "end": 1964.46, "word": " is", "probability": 0.6396484375}, {"start": 1964.46, "end": 1964.5, "word": " that", "probability": 0.92236328125}, {"start": 1964.5, "end": 1964.66, "word": " I", "probability": 0.91162109375}, {"start": 1964.66, "end": 1964.96, "word": " can", "probability": 0.92626953125}, {"start": 1964.96, "end": 1965.26, "word": " change", "probability": 0.88134765625}, {"start": 1965.26, "end": 1965.42, "word": " the", "probability": 0.888671875}, {"start": 1965.42, "end": 1966.18, "word": " inner", "probability": 0.399169921875}, {"start": 1966.18, "end": 1967.02, "word": " object", "probability": 0.9189453125}, {"start": 1967.02, "end": 1968.86, "word": " Of", "probability": 0.43017578125}, {"start": 1968.86, "end": 1969.34, "word": " different", "probability": 0.74560546875}, {"start": 1969.34, "end": 1969.92, "word": " types,", "probability": 0.71875}, {"start": 1970.14, "end": 1970.28, "word": " so", "probability": 0.3623046875}, {"start": 1970.28, "end": 1970.64, "word": " it's", "probability": 0.5399169921875}, {"start": 1970.64, "end": 1971.06, "word": " like", "probability": 0.323486328125}, {"start": 1971.06, "end": 1971.72, "word": " a", "probability": 0.95849609375}, {"start": 1971.72, "end": 1971.72, "word": " cover", "probability": 0.63134765625}, {"start": 1971.72, "end": 1973.26, "word": " It", "probability": 0.3583984375}, {"start": 1973.26, "end": 1973.52, "word": " can", "probability": 0.93212890625}, {"start": 1973.52, "end": 1973.82, "word": " cover", "probability": 0.68994140625}, {"start": 1973.82, "end": 1974.38, "word": " any", "probability": 0.84326171875}, {"start": 1974.38, "end": 1974.66, "word": " type", "probability": 0.29052734375}, {"start": 1974.66, "end": 1974.84, "word": " of", "probability": 0.96826171875}, {"start": 1974.84, "end": 1975.06, "word": " shape", "probability": 0.65283203125}], "temperature": 1.0}, {"id": 77, "seek": 200216, "start": 1975.86, "end": 2002.16, "text": "So the addition is made with one class only So if I have 30 classes, I want to add 10 additions to them For example, I made a border now We want to make a scroll bar for the shapes Or solid shapes You only need to make one class called solid And it takes any shape of the type shape", "tokens": [6455, 264, 4500, 307, 1027, 365, 472, 1508, 787, 407, 498, 286, 362, 2217, 5359, 11, 286, 528, 281, 909, 1266, 35113, 281, 552, 1171, 1365, 11, 286, 1027, 257, 7838, 586, 492, 528, 281, 652, 257, 11369, 2159, 337, 264, 10854, 1610, 5100, 10854, 509, 787, 643, 281, 652, 472, 1508, 1219, 5100, 400, 309, 2516, 604, 3909, 295, 264, 2010, 3909], "avg_logprob": -0.5097656166180968, "compression_ratio": 1.6022727272727273, "no_speech_prob": 1.5079975128173828e-05, "words": [{"start": 1975.8600000000001, "end": 1976.42, "word": "So", "probability": 0.28515625}, {"start": 1976.42, "end": 1976.54, "word": " the", "probability": 0.394775390625}, {"start": 1976.54, "end": 1976.88, "word": " addition", "probability": 0.763671875}, {"start": 1976.88, "end": 1977.38, "word": " is", "probability": 0.384033203125}, {"start": 1977.38, "end": 1977.68, "word": " made", "probability": 0.296875}, {"start": 1977.68, "end": 1977.82, "word": " with", "probability": 0.4296875}, {"start": 1977.82, "end": 1978.96, "word": " one", "probability": 0.365966796875}, {"start": 1978.96, "end": 1978.96, "word": " class", "probability": 0.7958984375}, {"start": 1978.96, "end": 1979.66, "word": " only", "probability": 0.69287109375}, {"start": 1979.66, "end": 1980.2, "word": " So", "probability": 0.400634765625}, {"start": 1980.2, "end": 1980.36, "word": " if", "probability": 0.849609375}, {"start": 1980.36, "end": 1980.52, "word": " I", "probability": 0.94189453125}, {"start": 1980.52, "end": 1980.76, "word": " have", "probability": 0.8603515625}, {"start": 1980.76, "end": 1981.16, "word": " 30", "probability": 0.6943359375}, {"start": 1981.16, "end": 1981.6, "word": " classes,", "probability": 0.89990234375}, {"start": 1981.72, "end": 1981.76, "word": " I", "probability": 0.85400390625}, {"start": 1981.76, "end": 1981.96, "word": " want", "probability": 0.296875}, {"start": 1981.96, "end": 1982.04, "word": " to", "probability": 0.96484375}, {"start": 1982.04, "end": 1982.28, "word": " add", "probability": 0.89892578125}, {"start": 1982.28, "end": 1982.9, "word": " 10", "probability": 0.8173828125}, {"start": 1982.9, "end": 1983.24, "word": " additions", "probability": 0.892578125}, {"start": 1983.24, "end": 1983.62, "word": " to", "probability": 0.66845703125}, {"start": 1983.62, "end": 1983.96, "word": " them", "probability": 0.77392578125}, {"start": 1983.96, "end": 1985.28, "word": " For", "probability": 0.52587890625}, {"start": 1985.28, "end": 1985.58, "word": " example,", "probability": 0.92041015625}, {"start": 1985.96, "end": 1986.08, "word": " I", "probability": 0.485107421875}, {"start": 1986.08, "end": 1986.8, "word": " made", "probability": 0.40380859375}, {"start": 1986.8, "end": 1986.96, "word": " a", "probability": 0.5771484375}, {"start": 1986.96, "end": 1987.24, "word": " border", "probability": 0.85107421875}, {"start": 1987.24, "end": 1989.38, "word": " now", "probability": 0.464599609375}, {"start": 1989.38, "end": 1990.5, "word": " We", "probability": 0.65673828125}, {"start": 1990.5, "end": 1990.68, "word": " want", "probability": 0.4716796875}, {"start": 1990.68, "end": 1990.8, "word": " to", "probability": 0.96923828125}, {"start": 1990.8, "end": 1990.94, "word": " make", "probability": 0.806640625}, {"start": 1990.94, "end": 1991.06, "word": " a", "probability": 0.85693359375}, {"start": 1991.06, "end": 1991.3, "word": " scroll", "probability": 0.95751953125}, {"start": 1991.3, "end": 1991.58, "word": " bar", "probability": 0.6533203125}, {"start": 1991.58, "end": 1991.98, "word": " for", "probability": 0.6337890625}, {"start": 1991.98, "end": 1992.06, "word": " the", "probability": 0.380859375}, {"start": 1992.06, "end": 1992.34, "word": " shapes", "probability": 0.77880859375}, {"start": 1992.34, "end": 1993.44, "word": " Or", "probability": 0.564453125}, {"start": 1993.44, "end": 1994.18, "word": " solid", "probability": 0.40576171875}, {"start": 1994.18, "end": 1995.04, "word": " shapes", "probability": 0.60986328125}, {"start": 1995.04, "end": 1996.06, "word": " You", "probability": 0.413818359375}, {"start": 1996.06, "end": 1996.26, "word": " only", "probability": 0.294677734375}, {"start": 1996.26, "end": 1996.38, "word": " need", "probability": 0.3828125}, {"start": 1996.38, "end": 1996.38, "word": " to", "probability": 0.611328125}, {"start": 1996.38, "end": 1996.56, "word": " make", "probability": 0.75537109375}, {"start": 1996.56, "end": 1996.8, "word": " one", "probability": 0.65380859375}, {"start": 1996.8, "end": 1997.04, "word": " class", "probability": 0.93505859375}, {"start": 1997.04, "end": 1997.64, "word": " called", "probability": 0.302490234375}, {"start": 1997.64, "end": 1998.72, "word": " solid", "probability": 0.68115234375}, {"start": 1998.72, "end": 2000.22, "word": " And", "probability": 0.301513671875}, {"start": 2000.22, "end": 2000.56, "word": " it", "probability": 0.5234375}, {"start": 2000.56, "end": 2000.78, "word": " takes", "probability": 0.59033203125}, {"start": 2000.78, "end": 2001.16, "word": " any", "probability": 0.90625}, {"start": 2001.16, "end": 2001.62, "word": " shape", "probability": 0.74072265625}, {"start": 2001.62, "end": 2001.76, "word": " of", "probability": 0.7255859375}, {"start": 2001.76, "end": 2001.84, "word": " the", "probability": 0.44140625}, {"start": 2001.84, "end": 2001.92, "word": " type", "probability": 0.379150390625}, {"start": 2001.92, "end": 2002.16, "word": " shape", "probability": 0.875}], "temperature": 1.0}, {"id": 78, "seek": 203208, "start": 2004.34, "end": 2032.08, "text": " And it creates an implement for the method draw that you write to it So that you give it a color and tell it to fill it And then it draws the shape again to get shape.draw Not super.draw, shape.draw So really I only need one class to make solid So each new feature is one class instead of ten classes As I said in JavaFX, I have many UI components", "tokens": [400, 309, 7829, 364, 4445, 337, 264, 3170, 2642, 300, 291, 2464, 281, 309, 407, 300, 291, 976, 309, 257, 2017, 293, 980, 309, 281, 2836, 309, 400, 550, 309, 20045, 264, 3909, 797, 281, 483, 3909, 13, 48848, 1726, 1687, 13, 48848, 11, 3909, 13, 48848, 407, 534, 286, 787, 643, 472, 1508, 281, 652, 5100, 407, 1184, 777, 4111, 307, 472, 1508, 2602, 295, 2064, 5359, 1018, 286, 848, 294, 10745, 36092, 11, 286, 362, 867, 15682, 6677], "avg_logprob": -0.5833333215595763, "compression_ratio": 1.6186046511627907, "no_speech_prob": 0.0, "words": [{"start": 2004.34, "end": 2004.54, "word": " And", "probability": 0.1910400390625}, {"start": 2004.54, "end": 2004.7, "word": " it", "probability": 0.345703125}, {"start": 2004.7, "end": 2004.86, "word": " creates", "probability": 0.1666259765625}, {"start": 2004.86, "end": 2005.02, "word": " an", "probability": 0.76123046875}, {"start": 2005.02, "end": 2005.28, "word": " implement", "probability": 0.5}, {"start": 2005.28, "end": 2005.54, "word": " for", "probability": 0.81005859375}, {"start": 2005.54, "end": 2005.6, "word": " the", "probability": 0.50634765625}, {"start": 2005.6, "end": 2005.84, "word": " method", "probability": 0.494384765625}, {"start": 2005.84, "end": 2006.1, "word": " draw", "probability": 0.44775390625}, {"start": 2006.1, "end": 2006.4, "word": " that", "probability": 0.11676025390625}, {"start": 2006.4, "end": 2006.4, "word": " you", "probability": 0.6796875}, {"start": 2006.4, "end": 2006.64, "word": " write", "probability": 0.53564453125}, {"start": 2006.64, "end": 2007.46, "word": " to", "probability": 0.15283203125}, {"start": 2007.46, "end": 2008.04, "word": " it", "probability": 0.345703125}, {"start": 2008.04, "end": 2008.52, "word": " So", "probability": 0.24365234375}, {"start": 2008.52, "end": 2008.74, "word": " that", "probability": 0.71240234375}, {"start": 2008.74, "end": 2009.12, "word": " you", "probability": 0.8583984375}, {"start": 2009.12, "end": 2010.48, "word": " give", "probability": 0.384033203125}, {"start": 2010.48, "end": 2010.62, "word": " it", "probability": 0.86962890625}, {"start": 2010.62, "end": 2010.68, "word": " a", "probability": 0.4453125}, {"start": 2010.68, "end": 2010.9, "word": " color", "probability": 0.7802734375}, {"start": 2010.9, "end": 2011.04, "word": " and", "probability": 0.71337890625}, {"start": 2011.04, "end": 2011.22, "word": " tell", "probability": 0.44287109375}, {"start": 2011.22, "end": 2011.32, "word": " it", "probability": 0.919921875}, {"start": 2011.32, "end": 2011.4, "word": " to", "probability": 0.88818359375}, {"start": 2011.4, "end": 2011.58, "word": " fill", "probability": 0.779296875}, {"start": 2011.58, "end": 2011.94, "word": " it", "probability": 0.72705078125}, {"start": 2011.94, "end": 2012.3, "word": " And", "probability": 0.145263671875}, {"start": 2012.3, "end": 2012.62, "word": " then", "probability": 0.646484375}, {"start": 2012.62, "end": 2013.04, "word": " it", "probability": 0.3740234375}, {"start": 2013.04, "end": 2013.22, "word": " draws", "probability": 0.423095703125}, {"start": 2013.22, "end": 2013.42, "word": " the", "probability": 0.40283203125}, {"start": 2013.42, "end": 2013.72, "word": " shape", "probability": 0.86474609375}, {"start": 2013.72, "end": 2014.08, "word": " again", "probability": 0.55126953125}, {"start": 2014.08, "end": 2014.3, "word": " to", "probability": 0.12548828125}, {"start": 2014.3, "end": 2014.52, "word": " get", "probability": 0.3203125}, {"start": 2014.52, "end": 2014.9, "word": " shape", "probability": 0.7255859375}, {"start": 2014.9, "end": 2015.4, "word": ".draw", "probability": 0.83935546875}, {"start": 2015.4, "end": 2016.4, "word": " Not", "probability": 0.53125}, {"start": 2016.4, "end": 2016.72, "word": " super", "probability": 0.8701171875}, {"start": 2016.72, "end": 2017.22, "word": ".draw,", "probability": 0.858154296875}, {"start": 2017.44, "end": 2017.7, "word": " shape", "probability": 0.70947265625}, {"start": 2017.7, "end": 2018.94, "word": ".draw", "probability": 0.913818359375}, {"start": 2018.94, "end": 2019.14, "word": " So", "probability": 0.6416015625}, {"start": 2019.14, "end": 2019.44, "word": " really", "probability": 0.136962890625}, {"start": 2019.44, "end": 2019.78, "word": " I", "probability": 0.591796875}, {"start": 2019.78, "end": 2020.02, "word": " only", "probability": 0.17724609375}, {"start": 2020.02, "end": 2020.02, "word": " need", "probability": 0.8818359375}, {"start": 2020.02, "end": 2020.2, "word": " one", "probability": 0.80029296875}, {"start": 2020.2, "end": 2020.6, "word": " class", "probability": 0.94482421875}, {"start": 2020.6, "end": 2022.4, "word": " to", "probability": 0.8466796875}, {"start": 2022.4, "end": 2022.72, "word": " make", "probability": 0.61328125}, {"start": 2022.72, "end": 2023.02, "word": " solid", "probability": 0.40625}, {"start": 2023.02, "end": 2023.9, "word": " So", "probability": 0.35986328125}, {"start": 2023.9, "end": 2024.16, "word": " each", "probability": 0.34033203125}, {"start": 2024.16, "end": 2024.8, "word": " new", "probability": 0.6572265625}, {"start": 2024.8, "end": 2024.8, "word": " feature", "probability": 0.9248046875}, {"start": 2024.8, "end": 2025.34, "word": " is", "probability": 0.89013671875}, {"start": 2025.34, "end": 2025.7, "word": " one", "probability": 0.44677734375}, {"start": 2025.7, "end": 2026.12, "word": " class", "probability": 0.951171875}, {"start": 2026.12, "end": 2027.16, "word": " instead", "probability": 0.712890625}, {"start": 2027.16, "end": 2027.28, "word": " of", "probability": 0.97412109375}, {"start": 2027.28, "end": 2027.94, "word": " ten", "probability": 0.57763671875}, {"start": 2027.94, "end": 2029.0, "word": " classes", "probability": 0.77001953125}, {"start": 2029.0, "end": 2029.66, "word": " As", "probability": 0.705078125}, {"start": 2029.66, "end": 2029.8, "word": " I", "probability": 0.93017578125}, {"start": 2029.8, "end": 2029.98, "word": " said", "probability": 0.71630859375}, {"start": 2029.98, "end": 2030.1, "word": " in", "probability": 0.6953125}, {"start": 2030.1, "end": 2030.68, "word": " JavaFX,", "probability": 0.606201171875}, {"start": 2030.88, "end": 2031.12, "word": " I", "probability": 0.947265625}, {"start": 2031.12, "end": 2031.18, "word": " have", "probability": 0.94091796875}, {"start": 2031.18, "end": 2031.26, "word": " many", "probability": 0.5888671875}, {"start": 2031.26, "end": 2031.56, "word": " UI", "probability": 0.89990234375}, {"start": 2031.56, "end": 2032.08, "word": " components", "probability": 0.90966796875}], "temperature": 1.0}, {"id": 79, "seek": 206179, "start": 2033.81, "end": 2061.79, "text": " I want to make a scrollbar for them I want to make a scrollbar for the text area, a scrollbar for the tab pane I want to add this scrollbar and tell it to make a text area with scrollbar and make it a new class Text area with scrollbar with border and make it a new class, look at the possibilities it has, it increases No, make a class, one scrollbar and wrap it in any form of UI component", "tokens": [286, 528, 281, 652, 257, 11369, 5356, 337, 552, 286, 528, 281, 652, 257, 11369, 5356, 337, 264, 2487, 1859, 11, 257, 11369, 5356, 337, 264, 4421, 32605, 286, 528, 281, 909, 341, 11369, 5356, 293, 980, 309, 281, 652, 257, 2487, 1859, 365, 11369, 5356, 293, 652, 309, 257, 777, 1508, 18643, 1859, 365, 11369, 5356, 365, 7838, 293, 652, 309, 257, 777, 1508, 11, 574, 412, 264, 12178, 309, 575, 11, 309, 8637, 883, 11, 652, 257, 1508, 11, 472, 11369, 5356, 293, 7019, 309, 294, 604, 1254, 295, 15682, 6542], "avg_logprob": -0.5013297808931229, "compression_ratio": 2.2528735632183907, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 2033.81, "end": 2033.99, "word": " I", "probability": 0.6572265625}, {"start": 2033.99, "end": 2034.11, "word": " want", "probability": 0.4755859375}, {"start": 2034.11, "end": 2034.19, "word": " to", "probability": 0.83349609375}, {"start": 2034.19, "end": 2034.31, "word": " make", "probability": 0.459716796875}, {"start": 2034.31, "end": 2034.55, "word": " a", "probability": 0.5205078125}, {"start": 2034.55, "end": 2035.03, "word": " scrollbar", "probability": 0.6568603515625}, {"start": 2035.03, "end": 2035.13, "word": " for", "probability": 0.5283203125}, {"start": 2035.13, "end": 2035.13, "word": " them", "probability": 0.5068359375}, {"start": 2035.13, "end": 2036.45, "word": " I", "probability": 0.55078125}, {"start": 2036.45, "end": 2036.63, "word": " want", "probability": 0.73193359375}, {"start": 2036.63, "end": 2036.67, "word": " to", "probability": 0.9052734375}, {"start": 2036.67, "end": 2036.75, "word": " make", "probability": 0.71044921875}, {"start": 2036.75, "end": 2036.89, "word": " a", "probability": 0.9384765625}, {"start": 2036.89, "end": 2037.33, "word": " scrollbar", "probability": 0.945556640625}, {"start": 2037.33, "end": 2037.47, "word": " for", "probability": 0.849609375}, {"start": 2037.47, "end": 2037.53, "word": " the", "probability": 0.51708984375}, {"start": 2037.53, "end": 2037.73, "word": " text", "probability": 0.80517578125}, {"start": 2037.73, "end": 2038.09, "word": " area,", "probability": 0.65478515625}, {"start": 2038.27, "end": 2038.89, "word": " a", "probability": 0.32373046875}, {"start": 2038.89, "end": 2039.29, "word": " scrollbar", "probability": 0.943359375}, {"start": 2039.29, "end": 2039.45, "word": " for", "probability": 0.93505859375}, {"start": 2039.45, "end": 2039.51, "word": " the", "probability": 0.78564453125}, {"start": 2039.51, "end": 2039.79, "word": " tab", "probability": 0.71630859375}, {"start": 2039.79, "end": 2040.09, "word": " pane", "probability": 0.360595703125}, {"start": 2040.09, "end": 2041.05, "word": " I", "probability": 0.2132568359375}, {"start": 2041.05, "end": 2041.05, "word": " want", "probability": 0.62744140625}, {"start": 2041.05, "end": 2041.05, "word": " to", "probability": 0.9453125}, {"start": 2041.05, "end": 2041.05, "word": " add", "probability": 0.57861328125}, {"start": 2041.05, "end": 2041.13, "word": " this", "probability": 0.50634765625}, {"start": 2041.13, "end": 2041.81, "word": " scrollbar", "probability": 0.96044921875}, {"start": 2041.81, "end": 2042.67, "word": " and", "probability": 0.461669921875}, {"start": 2042.67, "end": 2043.35, "word": " tell", "probability": 0.2298583984375}, {"start": 2043.35, "end": 2043.55, "word": " it", "probability": 0.53759765625}, {"start": 2043.55, "end": 2043.65, "word": " to", "probability": 0.7802734375}, {"start": 2043.65, "end": 2043.89, "word": " make", "probability": 0.62548828125}, {"start": 2043.89, "end": 2045.21, "word": " a", "probability": 0.86083984375}, {"start": 2045.21, "end": 2045.45, "word": " text", "probability": 0.6396484375}, {"start": 2045.45, "end": 2045.87, "word": " area", "probability": 0.8193359375}, {"start": 2045.87, "end": 2046.25, "word": " with", "probability": 0.849609375}, {"start": 2046.25, "end": 2046.81, "word": " scrollbar", "probability": 0.810546875}, {"start": 2046.81, "end": 2046.93, "word": " and", "probability": 0.310546875}, {"start": 2046.93, "end": 2047.05, "word": " make", "probability": 0.6201171875}, {"start": 2047.05, "end": 2047.17, "word": " it", "probability": 0.69970703125}, {"start": 2047.17, "end": 2047.17, "word": " a", "probability": 0.79345703125}, {"start": 2047.17, "end": 2047.63, "word": " new", "probability": 0.89306640625}, {"start": 2047.63, "end": 2047.63, "word": " class", "probability": 0.94873046875}, {"start": 2047.63, "end": 2049.37, "word": " Text", "probability": 0.186767578125}, {"start": 2049.37, "end": 2050.13, "word": " area", "probability": 0.5673828125}, {"start": 2050.13, "end": 2050.39, "word": " with", "probability": 0.90673828125}, {"start": 2050.39, "end": 2051.03, "word": " scrollbar", "probability": 0.929931640625}, {"start": 2051.03, "end": 2051.25, "word": " with", "probability": 0.79150390625}, {"start": 2051.25, "end": 2051.63, "word": " border", "probability": 0.83984375}, {"start": 2051.63, "end": 2051.77, "word": " and", "probability": 0.411865234375}, {"start": 2051.77, "end": 2051.87, "word": " make", "probability": 0.888671875}, {"start": 2051.87, "end": 2052.03, "word": " it", "probability": 0.900390625}, {"start": 2052.03, "end": 2052.05, "word": " a", "probability": 0.94140625}, {"start": 2052.05, "end": 2052.33, "word": " new", "probability": 0.857421875}, {"start": 2052.33, "end": 2052.33, "word": " class,", "probability": 0.9580078125}, {"start": 2052.39, "end": 2052.57, "word": " look", "probability": 0.4482421875}, {"start": 2052.57, "end": 2052.63, "word": " at", "probability": 0.87548828125}, {"start": 2052.63, "end": 2052.67, "word": " the", "probability": 0.64794921875}, {"start": 2052.67, "end": 2053.13, "word": " possibilities", "probability": 0.654296875}, {"start": 2053.13, "end": 2053.27, "word": " it", "probability": 0.39599609375}, {"start": 2053.27, "end": 2053.71, "word": " has,", "probability": 0.8896484375}, {"start": 2053.71, "end": 2054.03, "word": " it", "probability": 0.69970703125}, {"start": 2054.03, "end": 2054.35, "word": " increases", "probability": 0.10809326171875}, {"start": 2054.35, "end": 2055.83, "word": " No,", "probability": 0.400146484375}, {"start": 2056.23, "end": 2056.45, "word": " make", "probability": 0.7958984375}, {"start": 2056.45, "end": 2056.59, "word": " a", "probability": 0.62939453125}, {"start": 2056.59, "end": 2056.81, "word": " class,", "probability": 0.78955078125}, {"start": 2056.93, "end": 2057.03, "word": " one", "probability": 0.53076171875}, {"start": 2057.03, "end": 2057.67, "word": " scrollbar", "probability": 0.95947265625}, {"start": 2057.67, "end": 2057.81, "word": " and", "probability": 0.1949462890625}, {"start": 2057.81, "end": 2058.25, "word": " wrap", "probability": 0.443603515625}, {"start": 2058.25, "end": 2058.85, "word": " it", "probability": 0.5966796875}, {"start": 2058.85, "end": 2059.01, "word": " in", "probability": 0.258544921875}, {"start": 2059.01, "end": 2059.17, "word": " any", "probability": 0.7705078125}, {"start": 2059.17, "end": 2059.45, "word": " form", "probability": 0.166748046875}, {"start": 2059.45, "end": 2060.73, "word": " of", "probability": 0.61181640625}, {"start": 2060.73, "end": 2061.11, "word": " UI", "probability": 0.392578125}, {"start": 2061.11, "end": 2061.79, "word": " component", "probability": 0.78662109375}], "temperature": 1.0}, {"id": 80, "seek": 208988, "start": 2063.98, "end": 2089.88, "text": "Now, where did we get the idea guys? So we have two ways of adding, the way of subclassing and the way of the decorator Because this doesn't mean that the subclassing is bad and you don't use it, okay? No, you will say, okay, the doctor came, the subclassing has a problem, let's do what? The decorator all his life No, you are supposed to use the subclassing", "tokens": [13267, 11, 689, 630, 321, 483, 264, 1558, 1074, 30, 407, 321, 362, 732, 2098, 295, 5127, 11, 264, 636, 295, 1422, 11665, 278, 293, 264, 636, 295, 264, 7919, 1639, 1436, 341, 1177, 380, 914, 300, 264, 1422, 11665, 278, 307, 1578, 293, 291, 500, 380, 764, 309, 11, 1392, 30, 883, 11, 291, 486, 584, 11, 1392, 11, 264, 4631, 1361, 11, 264, 1422, 11665, 278, 575, 257, 1154, 11, 718, 311, 360, 437, 30, 440, 7919, 1639, 439, 702, 993, 883, 11, 291, 366, 3442, 281, 764, 264, 1422, 11665, 278], "avg_logprob": -0.46381578947368424, "compression_ratio": 1.7598039215686274, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 2063.98, "end": 2064.32, "word": "Now,", "probability": 0.2457275390625}, {"start": 2064.78, "end": 2065.02, "word": " where", "probability": 0.1510009765625}, {"start": 2065.02, "end": 2065.02, "word": " did", "probability": 0.67919921875}, {"start": 2065.02, "end": 2065.22, "word": " we", "probability": 0.87353515625}, {"start": 2065.22, "end": 2065.22, "word": " get", "probability": 0.398193359375}, {"start": 2065.22, "end": 2065.32, "word": " the", "probability": 0.57958984375}, {"start": 2065.32, "end": 2065.5, "word": " idea", "probability": 0.77783203125}, {"start": 2065.5, "end": 2066.14, "word": " guys?", "probability": 0.270751953125}, {"start": 2066.56, "end": 2066.66, "word": " So", "probability": 0.2296142578125}, {"start": 2066.66, "end": 2066.8, "word": " we", "probability": 0.3232421875}, {"start": 2066.8, "end": 2067.04, "word": " have", "probability": 0.63134765625}, {"start": 2067.04, "end": 2067.28, "word": " two", "probability": 0.70849609375}, {"start": 2067.28, "end": 2067.54, "word": " ways", "probability": 0.6044921875}, {"start": 2067.54, "end": 2067.74, "word": " of", "probability": 0.414794921875}, {"start": 2067.74, "end": 2068.04, "word": " adding,", "probability": 0.56201171875}, {"start": 2068.32, "end": 2068.42, "word": " the", "probability": 0.452392578125}, {"start": 2068.42, "end": 2068.56, "word": " way", "probability": 0.50927734375}, {"start": 2068.56, "end": 2068.7, "word": " of", "probability": 0.9287109375}, {"start": 2068.7, "end": 2069.46, "word": " subclassing", "probability": 0.8712565104166666}, {"start": 2069.46, "end": 2069.64, "word": " and", "probability": 0.8916015625}, {"start": 2069.64, "end": 2069.7, "word": " the", "probability": 0.828125}, {"start": 2069.7, "end": 2069.86, "word": " way", "probability": 0.8701171875}, {"start": 2069.86, "end": 2070.02, "word": " of", "probability": 0.9619140625}, {"start": 2070.02, "end": 2071.14, "word": " the", "probability": 0.54638671875}, {"start": 2071.14, "end": 2071.7, "word": " decorator", "probability": 0.95654296875}, {"start": 2071.7, "end": 2073.46, "word": " Because", "probability": 0.521484375}, {"start": 2073.46, "end": 2073.7, "word": " this", "probability": 0.7509765625}, {"start": 2073.7, "end": 2074.54, "word": " doesn't", "probability": 0.77587890625}, {"start": 2074.54, "end": 2074.92, "word": " mean", "probability": 0.95166015625}, {"start": 2074.92, "end": 2075.18, "word": " that", "probability": 0.88427734375}, {"start": 2075.18, "end": 2075.3, "word": " the", "probability": 0.677734375}, {"start": 2075.3, "end": 2076.06, "word": " subclassing", "probability": 0.9557291666666666}, {"start": 2076.06, "end": 2076.22, "word": " is", "probability": 0.8916015625}, {"start": 2076.22, "end": 2076.52, "word": " bad", "probability": 0.8515625}, {"start": 2076.52, "end": 2077.08, "word": " and", "probability": 0.771484375}, {"start": 2077.08, "end": 2077.2, "word": " you", "probability": 0.611328125}, {"start": 2077.2, "end": 2077.2, "word": " don't", "probability": 0.897216796875}, {"start": 2077.2, "end": 2077.52, "word": " use", "probability": 0.8583984375}, {"start": 2077.52, "end": 2077.96, "word": " it,", "probability": 0.9462890625}, {"start": 2078.66, "end": 2078.92, "word": " okay?", "probability": 0.421630859375}, {"start": 2079.2, "end": 2079.36, "word": " No,", "probability": 0.431396484375}, {"start": 2079.42, "end": 2079.54, "word": " you", "probability": 0.65087890625}, {"start": 2079.54, "end": 2079.54, "word": " will", "probability": 0.275390625}, {"start": 2079.54, "end": 2079.68, "word": " say,", "probability": 0.88525390625}, {"start": 2079.72, "end": 2080.18, "word": " okay,", "probability": 0.264892578125}, {"start": 2080.32, "end": 2080.46, "word": " the", "probability": 0.74609375}, {"start": 2080.46, "end": 2080.68, "word": " doctor", "probability": 0.8525390625}, {"start": 2080.68, "end": 2080.9, "word": " came,", "probability": 0.415283203125}, {"start": 2081.32, "end": 2081.7, "word": " the", "probability": 0.712890625}, {"start": 2081.7, "end": 2082.1, "word": " subclassing", "probability": 0.8759765625}, {"start": 2082.1, "end": 2082.2, "word": " has", "probability": 0.75439453125}, {"start": 2082.2, "end": 2082.3, "word": " a", "probability": 0.9013671875}, {"start": 2082.3, "end": 2082.58, "word": " problem,", "probability": 0.85546875}, {"start": 2082.96, "end": 2083.22, "word": " let's", "probability": 0.788818359375}, {"start": 2083.22, "end": 2083.42, "word": " do", "probability": 0.83251953125}, {"start": 2083.42, "end": 2083.74, "word": " what?", "probability": 0.6484375}, {"start": 2084.54, "end": 2085.06, "word": " The", "probability": 0.0997314453125}, {"start": 2085.06, "end": 2085.52, "word": " decorator", "probability": 0.981689453125}, {"start": 2085.52, "end": 2085.52, "word": " all", "probability": 0.1390380859375}, {"start": 2085.52, "end": 2085.52, "word": " his", "probability": 0.56396484375}, {"start": 2085.52, "end": 2085.52, "word": " life", "probability": 0.9326171875}, {"start": 2085.52, "end": 2086.46, "word": " No,", "probability": 0.28173828125}, {"start": 2087.06, "end": 2087.32, "word": " you", "probability": 0.40185546875}, {"start": 2087.32, "end": 2087.34, "word": " are", "probability": 0.30029296875}, {"start": 2087.34, "end": 2087.78, "word": " supposed", "probability": 0.329345703125}, {"start": 2087.78, "end": 2088.7, "word": " to", "probability": 0.97119140625}, {"start": 2088.7, "end": 2089.1, "word": " use", "probability": 0.8916015625}, {"start": 2089.1, "end": 2089.28, "word": " the", "probability": 0.6904296875}, {"start": 2089.28, "end": 2089.88, "word": " subclassing", "probability": 0.951171875}], "temperature": 1.0}, {"id": 81, "seek": 211748, "start": 2090.39, "end": 2117.49, "text": "But let's say that in some cases, using subclassing will cause an explosion of classes, a large number of classes. When you need to add these ten classes to make another ten classes, there is a negativity here. So you resort to using a decorator to make one class to add the feature to the ten you have. So if the use of subclassing causes the creation of a large number of classes, then you resort to the decorator.", "tokens": [7835, 718, 311, 584, 300, 294, 512, 3331, 11, 1228, 1422, 11665, 278, 486, 3082, 364, 15673, 295, 5359, 11, 257, 2416, 1230, 295, 5359, 13, 1133, 291, 643, 281, 909, 613, 2064, 5359, 281, 652, 1071, 2064, 5359, 11, 456, 307, 257, 2485, 10662, 507, 510, 13, 407, 291, 19606, 281, 1228, 257, 7919, 1639, 281, 652, 472, 1508, 281, 909, 264, 4111, 281, 264, 2064, 291, 362, 13, 407, 498, 264, 764, 295, 1422, 11665, 278, 7700, 264, 8016, 295, 257, 2416, 1230, 295, 5359, 11, 550, 291, 19606, 281, 264, 7919, 1639, 13], "avg_logprob": -0.47068298969072164, "compression_ratio": 1.9439252336448598, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 2090.39, "end": 2090.69, "word": "But", "probability": 0.35302734375}, {"start": 2090.69, "end": 2090.97, "word": " let's", "probability": 0.56817626953125}, {"start": 2090.97, "end": 2090.97, "word": " say", "probability": 0.81494140625}, {"start": 2090.97, "end": 2091.15, "word": " that", "probability": 0.447021484375}, {"start": 2091.15, "end": 2091.17, "word": " in", "probability": 0.8134765625}, {"start": 2091.17, "end": 2091.51, "word": " some", "probability": 0.83203125}, {"start": 2091.51, "end": 2092.11, "word": " cases,", "probability": 0.86767578125}, {"start": 2092.81, "end": 2093.15, "word": " using", "probability": 0.6611328125}, {"start": 2093.15, "end": 2094.03, "word": " subclassing", "probability": 0.7828776041666666}, {"start": 2094.03, "end": 2094.19, "word": " will", "probability": 0.50146484375}, {"start": 2094.19, "end": 2094.47, "word": " cause", "probability": 0.5458984375}, {"start": 2094.47, "end": 2094.77, "word": " an", "probability": 0.50390625}, {"start": 2094.77, "end": 2094.99, "word": " explosion", "probability": 0.66064453125}, {"start": 2094.99, "end": 2095.39, "word": " of", "probability": 0.94580078125}, {"start": 2095.39, "end": 2095.87, "word": " classes,", "probability": 0.87060546875}, {"start": 2096.35, "end": 2096.61, "word": " a", "probability": 0.430908203125}, {"start": 2096.61, "end": 2097.07, "word": " large", "probability": 0.5380859375}, {"start": 2097.07, "end": 2097.07, "word": " number", "probability": 0.9052734375}, {"start": 2097.07, "end": 2097.25, "word": " of", "probability": 0.96484375}, {"start": 2097.25, "end": 2097.57, "word": " classes.", "probability": 0.9033203125}, {"start": 2097.65, "end": 2097.77, "word": " When", "probability": 0.57373046875}, {"start": 2097.77, "end": 2098.15, "word": " you", "probability": 0.9453125}, {"start": 2098.15, "end": 2098.41, "word": " need", "probability": 0.5244140625}, {"start": 2098.41, "end": 2098.61, "word": " to", "probability": 0.9482421875}, {"start": 2098.61, "end": 2099.05, "word": " add", "probability": 0.7373046875}, {"start": 2099.05, "end": 2099.69, "word": " these", "probability": 0.4541015625}, {"start": 2099.69, "end": 2100.37, "word": " ten", "probability": 0.36767578125}, {"start": 2100.37, "end": 2100.85, "word": " classes", "probability": 0.89794921875}, {"start": 2100.85, "end": 2101.01, "word": " to", "probability": 0.3603515625}, {"start": 2101.01, "end": 2101.11, "word": " make", "probability": 0.328369140625}, {"start": 2101.11, "end": 2101.57, "word": " another", "probability": 0.2041015625}, {"start": 2101.57, "end": 2101.89, "word": " ten", "probability": 0.939453125}, {"start": 2101.89, "end": 2102.29, "word": " classes,", "probability": 0.86865234375}, {"start": 2102.71, "end": 2103.69, "word": " there", "probability": 0.32421875}, {"start": 2103.69, "end": 2103.85, "word": " is", "probability": 0.623046875}, {"start": 2103.85, "end": 2103.97, "word": " a", "probability": 0.615234375}, {"start": 2103.97, "end": 2104.25, "word": " negativity", "probability": 0.5872395833333334}, {"start": 2104.25, "end": 2104.25, "word": " here.", "probability": 0.43212890625}, {"start": 2104.35, "end": 2104.39, "word": " So", "probability": 0.5791015625}, {"start": 2104.39, "end": 2104.59, "word": " you", "probability": 0.261474609375}, {"start": 2104.59, "end": 2104.71, "word": " resort", "probability": 0.54296875}, {"start": 2104.71, "end": 2104.95, "word": " to", "probability": 0.97216796875}, {"start": 2104.95, "end": 2106.05, "word": " using", "probability": 0.79248046875}, {"start": 2106.05, "end": 2106.29, "word": " a", "probability": 0.35107421875}, {"start": 2106.29, "end": 2106.75, "word": " decorator", "probability": 0.964111328125}, {"start": 2106.75, "end": 2107.01, "word": " to", "probability": 0.7880859375}, {"start": 2107.01, "end": 2107.27, "word": " make", "probability": 0.55859375}, {"start": 2107.27, "end": 2107.41, "word": " one", "probability": 0.55517578125}, {"start": 2107.41, "end": 2108.07, "word": " class", "probability": 0.92333984375}, {"start": 2108.07, "end": 2108.69, "word": " to", "probability": 0.1925048828125}, {"start": 2108.69, "end": 2108.87, "word": " add", "probability": 0.9013671875}, {"start": 2108.87, "end": 2109.03, "word": " the", "probability": 0.72216796875}, {"start": 2109.03, "end": 2109.29, "word": " feature", "probability": 0.84033203125}, {"start": 2109.29, "end": 2109.51, "word": " to", "probability": 0.50634765625}, {"start": 2109.51, "end": 2109.59, "word": " the", "probability": 0.796875}, {"start": 2109.59, "end": 2109.81, "word": " ten", "probability": 0.84814453125}, {"start": 2109.81, "end": 2110.55, "word": " you", "probability": 0.2998046875}, {"start": 2110.55, "end": 2110.83, "word": " have.", "probability": 0.81201171875}, {"start": 2111.71, "end": 2111.89, "word": " So", "probability": 0.71435546875}, {"start": 2111.89, "end": 2112.05, "word": " if", "probability": 0.86865234375}, {"start": 2112.05, "end": 2112.71, "word": " the", "probability": 0.279052734375}, {"start": 2112.71, "end": 2113.01, "word": " use", "probability": 0.69775390625}, {"start": 2113.01, "end": 2113.27, "word": " of", "probability": 0.97021484375}, {"start": 2113.27, "end": 2113.97, "word": " subclassing", "probability": 0.9480794270833334}, {"start": 2113.97, "end": 2113.99, "word": " causes", "probability": 0.285888671875}, {"start": 2113.99, "end": 2114.07, "word": " the", "probability": 0.51513671875}, {"start": 2114.07, "end": 2114.29, "word": " creation", "probability": 0.7666015625}, {"start": 2114.29, "end": 2114.43, "word": " of", "probability": 0.974609375}, {"start": 2114.43, "end": 2114.63, "word": " a", "probability": 0.453125}, {"start": 2114.63, "end": 2114.81, "word": " large", "probability": 0.841796875}, {"start": 2114.81, "end": 2114.87, "word": " number", "probability": 0.95166015625}, {"start": 2114.87, "end": 2114.99, "word": " of", "probability": 0.97119140625}, {"start": 2114.99, "end": 2115.29, "word": " classes,", "probability": 0.89892578125}, {"start": 2115.43, "end": 2115.49, "word": " then", "probability": 0.1822509765625}, {"start": 2115.49, "end": 2115.61, "word": " you", "probability": 0.5361328125}, {"start": 2115.61, "end": 2115.95, "word": " resort", "probability": 0.6162109375}, {"start": 2115.95, "end": 2116.27, "word": " to", "probability": 0.97265625}, {"start": 2116.27, "end": 2117.03, "word": " the", "probability": 0.69921875}, {"start": 2117.03, "end": 2117.49, "word": " decorator.", "probability": 0.9853515625}], "temperature": 1.0}, {"id": 82, "seek": 214760, "start": 2120.66, "end": 2147.6, "text": "Now, based on this talk, let's see where we are in Java or in JavaFX. We use the decorator pattern, and you use the decorator pattern, and you don't know that this is an application on the decorator. I told you in Java how to write and read files.", "tokens": [13267, 11, 2361, 322, 341, 751, 11, 718, 311, 536, 689, 321, 366, 294, 10745, 420, 294, 10745, 36092, 13, 492, 764, 264, 7919, 1639, 5102, 11, 293, 291, 764, 264, 7919, 1639, 5102, 11, 293, 291, 500, 380, 458, 300, 341, 307, 364, 3861, 322, 264, 7919, 1639, 13, 286, 1907, 291, 294, 10745, 577, 281, 2464, 293, 1401, 7098, 13], "avg_logprob": -0.49503970903063577, "compression_ratio": 1.6466666666666667, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 2120.66, "end": 2121.06, "word": "Now,", "probability": 0.295654296875}, {"start": 2121.14, "end": 2121.24, "word": " based", "probability": 0.61279296875}, {"start": 2121.24, "end": 2121.5, "word": " on", "probability": 0.94091796875}, {"start": 2121.5, "end": 2121.66, "word": " this", "probability": 0.5048828125}, {"start": 2121.66, "end": 2121.86, "word": " talk,", "probability": 0.2183837890625}, {"start": 2122.14, "end": 2124.96, "word": " let's", "probability": 0.6949462890625}, {"start": 2124.96, "end": 2125.94, "word": " see", "probability": 0.36572265625}, {"start": 2125.94, "end": 2126.34, "word": " where", "probability": 0.65234375}, {"start": 2126.34, "end": 2126.82, "word": " we", "probability": 0.6611328125}, {"start": 2126.82, "end": 2126.88, "word": " are", "probability": 0.6337890625}, {"start": 2126.88, "end": 2127.96, "word": " in", "probability": 0.63330078125}, {"start": 2127.96, "end": 2128.44, "word": " Java", "probability": 0.55126953125}, {"start": 2128.44, "end": 2132.38, "word": " or", "probability": 0.63427734375}, {"start": 2132.38, "end": 2132.58, "word": " in", "probability": 0.5087890625}, {"start": 2132.58, "end": 2133.34, "word": " JavaFX.", "probability": 0.6923828125}, {"start": 2134.14, "end": 2134.7, "word": " We", "probability": 0.3740234375}, {"start": 2134.7, "end": 2135.16, "word": " use", "probability": 0.5849609375}, {"start": 2135.16, "end": 2135.36, "word": " the", "probability": 0.73095703125}, {"start": 2135.36, "end": 2135.78, "word": " decorator", "probability": 0.904052734375}, {"start": 2135.78, "end": 2136.22, "word": " pattern,", "probability": 0.88427734375}, {"start": 2136.32, "end": 2136.4, "word": " and", "probability": 0.499267578125}, {"start": 2136.4, "end": 2136.56, "word": " you", "probability": 0.80078125}, {"start": 2136.56, "end": 2137.08, "word": " use", "probability": 0.329833984375}, {"start": 2137.08, "end": 2137.3, "word": " the", "probability": 0.44482421875}, {"start": 2137.3, "end": 2137.72, "word": " decorator", "probability": 0.97412109375}, {"start": 2137.72, "end": 2138.1, "word": " pattern,", "probability": 0.89111328125}, {"start": 2138.18, "end": 2138.24, "word": " and", "probability": 0.64794921875}, {"start": 2138.24, "end": 2138.42, "word": " you", "probability": 0.9150390625}, {"start": 2138.42, "end": 2138.56, "word": " don't", "probability": 0.7822265625}, {"start": 2138.56, "end": 2138.92, "word": " know", "probability": 0.533203125}, {"start": 2138.92, "end": 2139.94, "word": " that", "probability": 0.359619140625}, {"start": 2139.94, "end": 2140.22, "word": " this", "probability": 0.49365234375}, {"start": 2140.22, "end": 2140.36, "word": " is", "probability": 0.78662109375}, {"start": 2140.36, "end": 2140.4, "word": " an", "probability": 0.414306640625}, {"start": 2140.4, "end": 2140.68, "word": " application", "probability": 0.7373046875}, {"start": 2140.68, "end": 2140.84, "word": " on", "probability": 0.6357421875}, {"start": 2140.84, "end": 2140.94, "word": " the", "probability": 0.64501953125}, {"start": 2140.94, "end": 2141.38, "word": " decorator.", "probability": 0.986083984375}, {"start": 2144.14, "end": 2144.7, "word": " I", "probability": 0.74755859375}, {"start": 2144.7, "end": 2145.0, "word": " told", "probability": 0.331298828125}, {"start": 2145.0, "end": 2145.22, "word": " you", "probability": 0.9541015625}, {"start": 2145.22, "end": 2145.3, "word": " in", "probability": 0.7060546875}, {"start": 2145.3, "end": 2145.62, "word": " Java", "probability": 0.84521484375}, {"start": 2145.62, "end": 2145.86, "word": " how", "probability": 0.65380859375}, {"start": 2145.86, "end": 2146.3, "word": " to", "probability": 0.71826171875}, {"start": 2146.3, "end": 2146.6, "word": " write", "probability": 0.71435546875}, {"start": 2146.6, "end": 2146.8, "word": " and", "probability": 0.8896484375}, {"start": 2146.8, "end": 2147.04, "word": " read", "probability": 0.9814453125}, {"start": 2147.04, "end": 2147.6, "word": " files.", "probability": 0.71142578125}], "temperature": 1.0}, {"id": 83, "seek": 217202, "start": 2148.44, "end": 2172.02, "text": "So he used to say for example to write on file go and create object from file output stream of FOS for example that I named it equals new file output stream and it takes object from type for example file", "tokens": [6455, 415, 1143, 281, 584, 337, 1365, 281, 2464, 322, 3991, 352, 293, 1884, 2657, 490, 3991, 5598, 4309, 295, 479, 4367, 337, 1365, 300, 286, 4926, 309, 6915, 777, 3991, 5598, 4309, 293, 309, 2516, 2657, 490, 2010, 337, 1365, 3991], "avg_logprob": -0.5781249778215275, "compression_ratio": 1.6504065040650406, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 2148.44, "end": 2149.04, "word": "So", "probability": 0.1199951171875}, {"start": 2149.04, "end": 2149.24, "word": " he", "probability": 0.322021484375}, {"start": 2149.24, "end": 2149.32, "word": " used", "probability": 0.198974609375}, {"start": 2149.32, "end": 2149.32, "word": " to", "probability": 0.95361328125}, {"start": 2149.32, "end": 2149.48, "word": " say", "probability": 0.54150390625}, {"start": 2149.48, "end": 2149.7, "word": " for", "probability": 0.394287109375}, {"start": 2149.7, "end": 2149.92, "word": " example", "probability": 0.82958984375}, {"start": 2149.92, "end": 2150.26, "word": " to", "probability": 0.48486328125}, {"start": 2150.26, "end": 2150.54, "word": " write", "probability": 0.70068359375}, {"start": 2150.54, "end": 2150.72, "word": " on", "probability": 0.463134765625}, {"start": 2150.72, "end": 2151.04, "word": " file", "probability": 0.50341796875}, {"start": 2151.04, "end": 2151.92, "word": " go", "probability": 0.22265625}, {"start": 2151.92, "end": 2152.1, "word": " and", "probability": 0.55322265625}, {"start": 2152.1, "end": 2152.22, "word": " create", "probability": 0.794921875}, {"start": 2152.22, "end": 2152.72, "word": " object", "probability": 0.59521484375}, {"start": 2152.72, "end": 2152.98, "word": " from", "probability": 0.74365234375}, {"start": 2152.98, "end": 2154.26, "word": " file", "probability": 0.72607421875}, {"start": 2154.26, "end": 2156.78, "word": " output", "probability": 0.8310546875}, {"start": 2156.78, "end": 2157.88, "word": " stream", "probability": 0.88720703125}, {"start": 2157.88, "end": 2160.98, "word": " of", "probability": 0.40966796875}, {"start": 2160.98, "end": 2161.86, "word": " FOS", "probability": 0.629638671875}, {"start": 2161.86, "end": 2162.06, "word": " for", "probability": 0.368408203125}, {"start": 2162.06, "end": 2162.14, "word": " example", "probability": 0.9619140625}, {"start": 2162.14, "end": 2162.14, "word": " that", "probability": 0.1776123046875}, {"start": 2162.14, "end": 2162.24, "word": " I", "probability": 0.77490234375}, {"start": 2162.24, "end": 2162.58, "word": " named", "probability": 0.60009765625}, {"start": 2162.58, "end": 2162.94, "word": " it", "probability": 0.53173828125}, {"start": 2162.94, "end": 2163.4, "word": " equals", "probability": 0.3515625}, {"start": 2163.4, "end": 2163.82, "word": " new", "probability": 0.73583984375}, {"start": 2163.82, "end": 2165.36, "word": " file", "probability": 0.830078125}, {"start": 2165.36, "end": 2166.46, "word": " output", "probability": 0.95849609375}, {"start": 2166.46, "end": 2167.24, "word": " stream", "probability": 0.94775390625}, {"start": 2167.24, "end": 2169.88, "word": " and", "probability": 0.62841796875}, {"start": 2169.88, "end": 2169.98, "word": " it", "probability": 0.4755859375}, {"start": 2169.98, "end": 2170.16, "word": " takes", "probability": 0.62158203125}, {"start": 2170.16, "end": 2170.54, "word": " object", "probability": 0.7548828125}, {"start": 2170.54, "end": 2170.66, "word": " from", "probability": 0.666015625}, {"start": 2170.66, "end": 2170.98, "word": " type", "probability": 0.243896484375}, {"start": 2170.98, "end": 2171.22, "word": " for", "probability": 0.375244140625}, {"start": 2171.22, "end": 2171.46, "word": " example", "probability": 0.96630859375}, {"start": 2171.46, "end": 2172.02, "word": " file", "probability": 0.8544921875}], "temperature": 1.0}, {"id": 84, "seek": 219901, "start": 2173.75, "end": 2199.01, "text": " Now, if you want to write the output stream file directly by using it, it is annoying because it has a write method and it takes binary data, for example. Okay? So it is difficult to use it. So to make it easier to use it, it told you to create another object from PrintWriter.pr and you give it PrintWriter and you give it the file", "tokens": [823, 11, 498, 291, 528, 281, 2464, 264, 5598, 4309, 3991, 3838, 538, 1228, 309, 11, 309, 307, 11304, 570, 309, 575, 257, 2464, 3170, 293, 309, 2516, 17434, 1412, 11, 337, 1365, 13, 1033, 30, 407, 309, 307, 2252, 281, 764, 309, 13, 407, 281, 652, 309, 3571, 281, 764, 309, 11, 309, 1907, 291, 281, 1884, 1071, 2657, 490, 34439, 54, 81, 1681, 13, 1424, 293, 291, 976, 309, 34439, 54, 81, 1681, 293, 291, 976, 309, 264, 3991], "avg_logprob": -0.4561737772168183, "compression_ratio": 1.6243902439024391, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 2173.75, "end": 2174.11, "word": " Now,", "probability": 0.130859375}, {"start": 2174.29, "end": 2174.37, "word": " if", "probability": 0.33447265625}, {"start": 2174.37, "end": 2174.37, "word": " you", "probability": 0.93115234375}, {"start": 2174.37, "end": 2174.37, "word": " want", "probability": 0.7177734375}, {"start": 2174.37, "end": 2174.37, "word": " to", "probability": 0.923828125}, {"start": 2174.37, "end": 2174.37, "word": " write", "probability": 0.4658203125}, {"start": 2174.37, "end": 2174.37, "word": " the", "probability": 0.34814453125}, {"start": 2174.37, "end": 2174.83, "word": " output", "probability": 0.7822265625}, {"start": 2174.83, "end": 2175.29, "word": " stream", "probability": 0.8662109375}, {"start": 2175.29, "end": 2175.95, "word": " file", "probability": 0.3515625}, {"start": 2175.95, "end": 2176.53, "word": " directly", "probability": 0.76318359375}, {"start": 2176.53, "end": 2176.71, "word": " by", "probability": 0.275390625}, {"start": 2176.71, "end": 2177.05, "word": " using", "probability": 0.7705078125}, {"start": 2177.05, "end": 2177.41, "word": " it,", "probability": 0.8837890625}, {"start": 2177.87, "end": 2178.09, "word": " it", "probability": 0.7666015625}, {"start": 2178.09, "end": 2178.09, "word": " is", "probability": 0.5244140625}, {"start": 2178.09, "end": 2178.37, "word": " annoying", "probability": 0.485595703125}, {"start": 2178.37, "end": 2178.89, "word": " because", "probability": 0.529296875}, {"start": 2178.89, "end": 2179.03, "word": " it", "probability": 0.72509765625}, {"start": 2179.03, "end": 2179.25, "word": " has", "probability": 0.331298828125}, {"start": 2179.25, "end": 2179.41, "word": " a", "probability": 0.751953125}, {"start": 2179.41, "end": 2179.85, "word": " write", "probability": 0.54296875}, {"start": 2179.85, "end": 2179.89, "word": " method", "probability": 0.93359375}, {"start": 2179.89, "end": 2179.99, "word": " and", "probability": 0.61572265625}, {"start": 2179.99, "end": 2180.07, "word": " it", "probability": 0.304931640625}, {"start": 2180.07, "end": 2180.25, "word": " takes", "probability": 0.67431640625}, {"start": 2180.25, "end": 2180.59, "word": " binary", "probability": 0.845703125}, {"start": 2180.59, "end": 2180.91, "word": " data,", "probability": 0.9189453125}, {"start": 2181.03, "end": 2181.09, "word": " for", "probability": 0.72119140625}, {"start": 2181.09, "end": 2181.41, "word": " example.", "probability": 0.93701171875}, {"start": 2182.03, "end": 2182.23, "word": " Okay?", "probability": 0.2493896484375}, {"start": 2182.63, "end": 2182.93, "word": " So", "probability": 0.7841796875}, {"start": 2182.93, "end": 2183.15, "word": " it", "probability": 0.60009765625}, {"start": 2183.15, "end": 2183.15, "word": " is", "probability": 0.69921875}, {"start": 2183.15, "end": 2183.35, "word": " difficult", "probability": 0.5732421875}, {"start": 2183.35, "end": 2183.45, "word": " to", "probability": 0.9609375}, {"start": 2183.45, "end": 2183.73, "word": " use", "probability": 0.896484375}, {"start": 2183.73, "end": 2183.95, "word": " it.", "probability": 0.53271484375}, {"start": 2184.01, "end": 2184.09, "word": " So", "probability": 0.6611328125}, {"start": 2184.09, "end": 2184.31, "word": " to", "probability": 0.6328125}, {"start": 2184.31, "end": 2184.65, "word": " make", "probability": 0.73876953125}, {"start": 2184.65, "end": 2184.71, "word": " it", "probability": 0.493408203125}, {"start": 2184.71, "end": 2184.71, "word": " easier", "probability": 0.802734375}, {"start": 2184.71, "end": 2184.77, "word": " to", "probability": 0.8759765625}, {"start": 2184.77, "end": 2185.21, "word": " use", "probability": 0.89599609375}, {"start": 2185.21, "end": 2185.49, "word": " it,", "probability": 0.46630859375}, {"start": 2185.95, "end": 2186.11, "word": " it", "probability": 0.58935546875}, {"start": 2186.11, "end": 2186.23, "word": " told", "probability": 0.396240234375}, {"start": 2186.23, "end": 2186.39, "word": " you", "probability": 0.9052734375}, {"start": 2186.39, "end": 2186.47, "word": " to", "probability": 0.91552734375}, {"start": 2186.47, "end": 2186.63, "word": " create", "probability": 0.58740234375}, {"start": 2186.63, "end": 2186.75, "word": " another", "probability": 0.81396484375}, {"start": 2186.75, "end": 2187.05, "word": " object", "probability": 0.98046875}, {"start": 2187.05, "end": 2187.49, "word": " from", "probability": 0.732421875}, {"start": 2187.49, "end": 2188.25, "word": " PrintWriter", "probability": 0.685455322265625}, {"start": 2188.25, "end": 2192.61, "word": ".pr", "probability": 0.54290771484375}, {"start": 2192.61, "end": 2192.95, "word": " and", "probability": 0.6376953125}, {"start": 2192.95, "end": 2193.09, "word": " you", "probability": 0.483154296875}, {"start": 2193.09, "end": 2193.31, "word": " give", "probability": 0.72802734375}, {"start": 2193.31, "end": 2193.69, "word": " it", "probability": 0.9072265625}, {"start": 2193.69, "end": 2197.75, "word": " PrintWriter", "probability": 0.92919921875}, {"start": 2197.75, "end": 2198.09, "word": " and", "probability": 0.826171875}, {"start": 2198.09, "end": 2198.25, "word": " you", "probability": 0.8193359375}, {"start": 2198.25, "end": 2198.43, "word": " give", "probability": 0.8408203125}, {"start": 2198.43, "end": 2198.57, "word": " it", "probability": 0.875}, {"start": 2198.57, "end": 2198.67, "word": " the", "probability": 0.8544921875}, {"start": 2198.67, "end": 2199.01, "word": " file", "probability": 0.841796875}], "temperature": 1.0}, {"id": 85, "seek": 222223, "start": 2201.87, "end": 2222.23, "text": "This is how they used to say connect this one with this one. So what is the advantage of the print writer? You go and tell him PR and the print writer tells you to write on the file as if you were writing on the screen. You don't have to make a print lin like system.out. You write the text you want on the file.", "tokens": [5723, 307, 577, 436, 1143, 281, 584, 1745, 341, 472, 365, 341, 472, 13, 407, 437, 307, 264, 5002, 295, 264, 4482, 9936, 30, 509, 352, 293, 980, 796, 11568, 293, 264, 4482, 9936, 5112, 291, 281, 2464, 322, 264, 3991, 382, 498, 291, 645, 3579, 322, 264, 2568, 13, 509, 500, 380, 362, 281, 652, 257, 4482, 22896, 411, 1185, 13, 346, 13, 509, 2464, 264, 2487, 291, 528, 322, 264, 3991, 13], "avg_logprob": -0.6274999825159708, "compression_ratio": 1.7049180327868851, "no_speech_prob": 6.139278411865234e-06, "words": [{"start": 2201.87, "end": 2202.27, "word": "This", "probability": 0.0364990234375}, {"start": 2202.27, "end": 2202.37, "word": " is", "probability": 0.68359375}, {"start": 2202.37, "end": 2202.41, "word": " how", "probability": 0.5380859375}, {"start": 2202.41, "end": 2202.55, "word": " they", "probability": 0.62890625}, {"start": 2202.55, "end": 2202.61, "word": " used", "probability": 0.39013671875}, {"start": 2202.61, "end": 2202.61, "word": " to", "probability": 0.96923828125}, {"start": 2202.61, "end": 2202.73, "word": " say", "probability": 0.68994140625}, {"start": 2202.73, "end": 2203.09, "word": " connect", "probability": 0.31689453125}, {"start": 2203.09, "end": 2203.47, "word": " this", "probability": 0.44873046875}, {"start": 2203.47, "end": 2203.49, "word": " one", "probability": 0.11846923828125}, {"start": 2203.49, "end": 2203.61, "word": " with", "probability": 0.59912109375}, {"start": 2203.61, "end": 2203.87, "word": " this", "probability": 0.50146484375}, {"start": 2203.87, "end": 2204.15, "word": " one.", "probability": 0.87255859375}, {"start": 2204.95, "end": 2205.35, "word": " So", "probability": 0.287841796875}, {"start": 2205.35, "end": 2205.51, "word": " what", "probability": 0.7587890625}, {"start": 2205.51, "end": 2205.55, "word": " is", "probability": 0.56201171875}, {"start": 2205.55, "end": 2205.67, "word": " the", "probability": 0.5390625}, {"start": 2205.67, "end": 2205.81, "word": " advantage", "probability": 0.53564453125}, {"start": 2205.81, "end": 2205.95, "word": " of", "probability": 0.80517578125}, {"start": 2205.95, "end": 2206.05, "word": " the", "probability": 0.351806640625}, {"start": 2206.05, "end": 2206.25, "word": " print", "probability": 0.69775390625}, {"start": 2206.25, "end": 2206.63, "word": " writer?", "probability": 0.80517578125}, {"start": 2206.83, "end": 2207.11, "word": " You", "probability": 0.327392578125}, {"start": 2207.11, "end": 2207.39, "word": " go", "probability": 0.375}, {"start": 2207.39, "end": 2207.51, "word": " and", "probability": 0.58251953125}, {"start": 2207.51, "end": 2207.71, "word": " tell", "probability": 0.49853515625}, {"start": 2207.71, "end": 2207.85, "word": " him", "probability": 0.48779296875}, {"start": 2207.85, "end": 2208.27, "word": " PR", "probability": 0.5078125}, {"start": 2208.27, "end": 2209.05, "word": " and", "probability": 0.458740234375}, {"start": 2209.05, "end": 2209.45, "word": " the", "probability": 0.46826171875}, {"start": 2209.45, "end": 2209.75, "word": " print", "probability": 0.6767578125}, {"start": 2209.75, "end": 2210.07, "word": " writer", "probability": 0.88916015625}, {"start": 2210.07, "end": 2210.47, "word": " tells", "probability": 0.1844482421875}, {"start": 2210.47, "end": 2210.75, "word": " you", "probability": 0.95263671875}, {"start": 2210.75, "end": 2211.03, "word": " to", "probability": 0.80859375}, {"start": 2211.03, "end": 2211.23, "word": " write", "probability": 0.64501953125}, {"start": 2211.23, "end": 2211.37, "word": " on", "probability": 0.66796875}, {"start": 2211.37, "end": 2211.45, "word": " the", "probability": 0.5693359375}, {"start": 2211.45, "end": 2211.61, "word": " file", "probability": 0.802734375}, {"start": 2211.61, "end": 2211.79, "word": " as", "probability": 0.67431640625}, {"start": 2211.79, "end": 2211.91, "word": " if", "probability": 0.90087890625}, {"start": 2211.91, "end": 2212.07, "word": " you", "probability": 0.8935546875}, {"start": 2212.07, "end": 2212.07, "word": " were", "probability": 0.402587890625}, {"start": 2212.07, "end": 2212.21, "word": " writing", "probability": 0.849609375}, {"start": 2212.21, "end": 2212.31, "word": " on", "probability": 0.9169921875}, {"start": 2212.31, "end": 2212.41, "word": " the", "probability": 0.7373046875}, {"start": 2212.41, "end": 2212.63, "word": " screen.", "probability": 0.84619140625}, {"start": 2213.17, "end": 2213.57, "word": " You", "probability": 0.203369140625}, {"start": 2213.57, "end": 2213.71, "word": " don't", "probability": 0.585693359375}, {"start": 2213.71, "end": 2213.77, "word": " have", "probability": 0.2283935546875}, {"start": 2213.77, "end": 2213.81, "word": " to", "probability": 0.97119140625}, {"start": 2213.81, "end": 2213.97, "word": " make", "probability": 0.1444091796875}, {"start": 2213.97, "end": 2214.09, "word": " a", "probability": 0.60546875}, {"start": 2214.09, "end": 2214.45, "word": " print", "probability": 0.9365234375}, {"start": 2214.45, "end": 2215.89, "word": " lin", "probability": 0.1456298828125}, {"start": 2215.89, "end": 2216.97, "word": " like", "probability": 0.5009765625}, {"start": 2216.97, "end": 2217.37, "word": " system", "probability": 0.763671875}, {"start": 2217.37, "end": 2217.85, "word": ".out.", "probability": 0.826171875}, {"start": 2217.99, "end": 2218.19, "word": " You", "probability": 0.83056640625}, {"start": 2218.19, "end": 2218.41, "word": " write", "probability": 0.728515625}, {"start": 2218.41, "end": 2218.53, "word": " the", "probability": 0.50634765625}, {"start": 2218.53, "end": 2218.73, "word": " text", "probability": 0.88232421875}, {"start": 2218.73, "end": 2218.85, "word": " you", "probability": 0.4716796875}, {"start": 2218.85, "end": 2219.25, "word": " want", "probability": 0.81201171875}, {"start": 2219.25, "end": 2219.65, "word": " on", "probability": 0.2406005859375}, {"start": 2219.65, "end": 2221.93, "word": " the", "probability": 0.81396484375}, {"start": 2221.93, "end": 2222.23, "word": " file.", "probability": 0.89453125}], "temperature": 1.0}, {"id": 86, "seek": 225186, "start": 2224.28, "end": 2251.86, "text": " For example, when you write an object file, it will also tell you to create a file output stream, then create an object output stream, connect it to the output stream, and write a write object. It will take the object that you created, for example, a student or a course, and serialize it and write it on the file. Okay, why did we do it this way? They used to say, okay, do it this way, we want to do it this way. Yes, do it this way and connect it to this way, and it turns out this way.", "tokens": [1171, 1365, 11, 562, 291, 2464, 364, 2657, 3991, 11, 309, 486, 611, 980, 291, 281, 1884, 257, 3991, 5598, 4309, 11, 550, 1884, 364, 2657, 5598, 4309, 11, 1745, 309, 281, 264, 5598, 4309, 11, 293, 2464, 257, 2464, 2657, 13, 467, 486, 747, 264, 2657, 300, 291, 2942, 11, 337, 1365, 11, 257, 3107, 420, 257, 1164, 11, 293, 17436, 1125, 309, 293, 2464, 309, 322, 264, 3991, 13, 1033, 11, 983, 630, 321, 360, 309, 341, 636, 30, 814, 1143, 281, 584, 11, 1392, 11, 360, 309, 341, 636, 11, 321, 528, 281, 360, 309, 341, 636, 13, 1079, 11, 360, 309, 341, 636, 293, 1745, 309, 281, 341, 636, 11, 293, 309, 4523, 484, 341, 636, 13], "avg_logprob": -0.4933401690643342, "compression_ratio": 2.0762711864406778, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2224.28, "end": 2224.66, "word": " For", "probability": 0.220703125}, {"start": 2224.66, "end": 2225.06, "word": " example,", "probability": 0.890625}, {"start": 2225.76, "end": 2226.1, "word": " when", "probability": 0.740234375}, {"start": 2226.1, "end": 2226.24, "word": " you", "probability": 0.9443359375}, {"start": 2226.24, "end": 2226.58, "word": " write", "probability": 0.424072265625}, {"start": 2226.58, "end": 2226.8, "word": " an", "probability": 0.72265625}, {"start": 2226.8, "end": 2227.04, "word": " object", "probability": 0.8603515625}, {"start": 2227.04, "end": 2227.44, "word": " file,", "probability": 0.91259765625}, {"start": 2227.86, "end": 2228.54, "word": " it", "probability": 0.515625}, {"start": 2228.54, "end": 2228.6, "word": " will", "probability": 0.297119140625}, {"start": 2228.6, "end": 2228.6, "word": " also", "probability": 0.1649169921875}, {"start": 2228.6, "end": 2228.74, "word": " tell", "probability": 0.4287109375}, {"start": 2228.74, "end": 2228.88, "word": " you", "probability": 0.953125}, {"start": 2228.88, "end": 2228.98, "word": " to", "probability": 0.8544921875}, {"start": 2228.98, "end": 2229.14, "word": " create", "probability": 0.783203125}, {"start": 2229.14, "end": 2229.58, "word": " a", "probability": 0.382080078125}, {"start": 2229.58, "end": 2229.74, "word": " file", "probability": 0.673828125}, {"start": 2229.74, "end": 2230.04, "word": " output", "probability": 0.67138671875}, {"start": 2230.04, "end": 2230.4, "word": " stream,", "probability": 0.935546875}, {"start": 2230.78, "end": 2230.98, "word": " then", "probability": 0.448974609375}, {"start": 2230.98, "end": 2231.26, "word": " create", "probability": 0.410400390625}, {"start": 2231.26, "end": 2231.36, "word": " an", "probability": 0.72802734375}, {"start": 2231.36, "end": 2231.56, "word": " object", "probability": 0.94677734375}, {"start": 2231.56, "end": 2231.92, "word": " output", "probability": 0.89306640625}, {"start": 2231.92, "end": 2232.34, "word": " stream,", "probability": 0.9423828125}, {"start": 2232.76, "end": 2232.96, "word": " connect", "probability": 0.338134765625}, {"start": 2232.96, "end": 2233.16, "word": " it", "probability": 0.79833984375}, {"start": 2233.16, "end": 2233.26, "word": " to", "probability": 0.482177734375}, {"start": 2233.26, "end": 2233.36, "word": " the", "probability": 0.8017578125}, {"start": 2233.36, "end": 2233.64, "word": " output", "probability": 0.6025390625}, {"start": 2233.64, "end": 2234.1, "word": " stream,", "probability": 0.9501953125}, {"start": 2234.14, "end": 2234.74, "word": " and", "probability": 0.66796875}, {"start": 2234.74, "end": 2234.9, "word": " write", "probability": 0.63037109375}, {"start": 2234.9, "end": 2235.1, "word": " a", "probability": 0.2587890625}, {"start": 2235.1, "end": 2235.46, "word": " write", "probability": 0.71435546875}, {"start": 2235.46, "end": 2235.9, "word": " object.", "probability": 0.94677734375}, {"start": 2236.04, "end": 2236.24, "word": " It", "probability": 0.496337890625}, {"start": 2236.24, "end": 2236.26, "word": " will", "probability": 0.473876953125}, {"start": 2236.26, "end": 2236.42, "word": " take", "probability": 0.61767578125}, {"start": 2236.42, "end": 2236.54, "word": " the", "probability": 0.73681640625}, {"start": 2236.54, "end": 2236.8, "word": " object", "probability": 0.8681640625}, {"start": 2236.8, "end": 2236.94, "word": " that", "probability": 0.4287109375}, {"start": 2236.94, "end": 2237.12, "word": " you", "probability": 0.90576171875}, {"start": 2237.12, "end": 2237.38, "word": " created,", "probability": 0.298095703125}, {"start": 2237.48, "end": 2237.48, "word": " for", "probability": 0.4345703125}, {"start": 2237.48, "end": 2237.48, "word": " example,", "probability": 0.89794921875}, {"start": 2237.48, "end": 2237.5, "word": " a", "probability": 0.69140625}, {"start": 2237.5, "end": 2237.76, "word": " student", "probability": 0.90966796875}, {"start": 2237.76, "end": 2238.36, "word": " or", "probability": 0.8525390625}, {"start": 2238.36, "end": 2238.46, "word": " a", "probability": 0.435302734375}, {"start": 2238.46, "end": 2238.8, "word": " course,", "probability": 0.978515625}, {"start": 2239.4, "end": 2239.64, "word": " and", "probability": 0.41845703125}, {"start": 2239.64, "end": 2240.34, "word": " serialize", "probability": 0.6505126953125}, {"start": 2240.34, "end": 2240.5, "word": " it", "probability": 0.890625}, {"start": 2240.5, "end": 2240.56, "word": " and", "probability": 0.437255859375}, {"start": 2240.56, "end": 2240.76, "word": " write", "probability": 0.798828125}, {"start": 2240.76, "end": 2240.9, "word": " it", "probability": 0.8583984375}, {"start": 2240.9, "end": 2241.04, "word": " on", "probability": 0.64892578125}, {"start": 2241.04, "end": 2241.98, "word": " the", "probability": 0.794921875}, {"start": 2241.98, "end": 2242.24, "word": " file.", "probability": 0.82568359375}, {"start": 2244.36, "end": 2244.76, "word": " Okay,", "probability": 0.149169921875}, {"start": 2244.84, "end": 2245.06, "word": " why", "probability": 0.74951171875}, {"start": 2245.06, "end": 2245.24, "word": " did", "probability": 0.533203125}, {"start": 2245.24, "end": 2245.4, "word": " we", "probability": 0.9150390625}, {"start": 2245.4, "end": 2245.56, "word": " do", "probability": 0.70361328125}, {"start": 2245.56, "end": 2245.76, "word": " it", "probability": 0.2454833984375}, {"start": 2245.76, "end": 2245.82, "word": " this", "probability": 0.400390625}, {"start": 2245.82, "end": 2245.82, "word": " way?", "probability": 0.95654296875}, {"start": 2245.9, "end": 2246.04, "word": " They", "probability": 0.34375}, {"start": 2246.04, "end": 2246.08, "word": " used", "probability": 0.263671875}, {"start": 2246.08, "end": 2246.08, "word": " to", "probability": 0.9736328125}, {"start": 2246.08, "end": 2246.18, "word": " say,", "probability": 0.55224609375}, {"start": 2246.32, "end": 2246.48, "word": " okay,", "probability": 0.146484375}, {"start": 2246.6, "end": 2246.8, "word": " do", "probability": 0.50244140625}, {"start": 2246.8, "end": 2246.92, "word": " it", "probability": 0.60107421875}, {"start": 2246.92, "end": 2247.02, "word": " this", "probability": 0.78076171875}, {"start": 2247.02, "end": 2247.02, "word": " way,", "probability": 0.953125}, {"start": 2247.04, "end": 2247.2, "word": " we", "probability": 0.5791015625}, {"start": 2247.2, "end": 2247.42, "word": " want", "probability": 0.7998046875}, {"start": 2247.42, "end": 2247.64, "word": " to", "probability": 0.1900634765625}, {"start": 2247.64, "end": 2248.04, "word": " do", "probability": 0.8798828125}, {"start": 2248.04, "end": 2248.14, "word": " it", "probability": 0.8134765625}, {"start": 2248.14, "end": 2248.14, "word": " this", "probability": 0.8154296875}, {"start": 2248.14, "end": 2248.14, "word": " way.", "probability": 0.95458984375}, {"start": 2248.98, "end": 2249.12, "word": " Yes,", "probability": 0.327880859375}, {"start": 2249.26, "end": 2249.48, "word": " do", "probability": 0.591796875}, {"start": 2249.48, "end": 2249.78, "word": " it", "probability": 0.415771484375}, {"start": 2249.78, "end": 2249.8, "word": " this", "probability": 0.5546875}, {"start": 2249.8, "end": 2249.86, "word": " way", "probability": 0.94775390625}, {"start": 2249.86, "end": 2250.02, "word": " and", "probability": 0.5009765625}, {"start": 2250.02, "end": 2250.18, "word": " connect", "probability": 0.810546875}, {"start": 2250.18, "end": 2250.38, "word": " it", "probability": 0.8974609375}, {"start": 2250.38, "end": 2250.48, "word": " to", "probability": 0.51953125}, {"start": 2250.48, "end": 2250.78, "word": " this", "probability": 0.791015625}, {"start": 2250.78, "end": 2250.86, "word": " way,", "probability": 0.5234375}, {"start": 2251.08, "end": 2251.4, "word": " and", "probability": 0.494873046875}, {"start": 2251.4, "end": 2251.46, "word": " it", "probability": 0.75537109375}, {"start": 2251.46, "end": 2251.54, "word": " turns", "probability": 0.265380859375}, {"start": 2251.54, "end": 2251.6, "word": " out", "probability": 0.884765625}, {"start": 2251.6, "end": 2251.8, "word": " this", "probability": 0.445068359375}, {"start": 2251.8, "end": 2251.86, "word": " way.", "probability": 0.94775390625}], "temperature": 1.0}, {"id": 87, "seek": 227744, "start": 2252.69, "end": 2277.45, "text": "Okay? So why did they do it this way? And why do you connect this with this? Okay? Pay attention to me. In Java, we have different types of output streams. Okay? For example, we have a file output stream. Which is what is in her hand to write on the file. Binary data is written on the file. And for example, we have a socket output stream.", "tokens": [8297, 30, 407, 983, 630, 436, 360, 309, 341, 636, 30, 400, 983, 360, 291, 1745, 341, 365, 341, 30, 1033, 30, 11431, 3202, 281, 385, 13, 682, 10745, 11, 321, 362, 819, 3467, 295, 5598, 15842, 13, 1033, 30, 1171, 1365, 11, 321, 362, 257, 3991, 5598, 4309, 13, 3013, 307, 437, 307, 294, 720, 1011, 281, 2464, 322, 264, 3991, 13, 363, 4066, 1412, 307, 3720, 322, 264, 3991, 13, 400, 337, 1365, 11, 321, 362, 257, 19741, 5598, 4309, 13], "avg_logprob": -0.4211309633794285, "compression_ratio": 1.7171717171717171, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 2252.69, "end": 2252.95, "word": "Okay?", "probability": 0.11688232421875}, {"start": 2253.09, "end": 2253.23, "word": " So", "probability": 0.3017578125}, {"start": 2253.23, "end": 2253.69, "word": " why", "probability": 0.64990234375}, {"start": 2253.69, "end": 2253.93, "word": " did", "probability": 0.63916015625}, {"start": 2253.93, "end": 2254.01, "word": " they", "probability": 0.6171875}, {"start": 2254.01, "end": 2254.01, "word": " do", "probability": 0.64990234375}, {"start": 2254.01, "end": 2254.13, "word": " it", "probability": 0.775390625}, {"start": 2254.13, "end": 2254.33, "word": " this", "probability": 0.6669921875}, {"start": 2254.33, "end": 2254.67, "word": " way?", "probability": 0.955078125}, {"start": 2254.95, "end": 2255.05, "word": " And", "probability": 0.59912109375}, {"start": 2255.05, "end": 2255.21, "word": " why", "probability": 0.90185546875}, {"start": 2255.21, "end": 2255.29, "word": " do", "probability": 0.16748046875}, {"start": 2255.29, "end": 2255.37, "word": " you", "probability": 0.379638671875}, {"start": 2255.37, "end": 2255.51, "word": " connect", "probability": 0.6279296875}, {"start": 2255.51, "end": 2255.79, "word": " this", "probability": 0.4677734375}, {"start": 2255.79, "end": 2255.93, "word": " with", "probability": 0.412841796875}, {"start": 2255.93, "end": 2256.21, "word": " this?", "probability": 0.7109375}, {"start": 2256.67, "end": 2257.09, "word": " Okay?", "probability": 0.51806640625}, {"start": 2257.21, "end": 2257.39, "word": " Pay", "probability": 0.70654296875}, {"start": 2257.39, "end": 2257.51, "word": " attention", "probability": 0.93701171875}, {"start": 2257.51, "end": 2257.51, "word": " to", "probability": 0.57568359375}, {"start": 2257.51, "end": 2257.85, "word": " me.", "probability": 0.4248046875}, {"start": 2258.29, "end": 2258.73, "word": " In", "probability": 0.232666015625}, {"start": 2258.73, "end": 2259.29, "word": " Java,", "probability": 0.73095703125}, {"start": 2259.69, "end": 2259.69, "word": " we", "probability": 0.51806640625}, {"start": 2259.69, "end": 2260.45, "word": " have", "probability": 0.921875}, {"start": 2260.45, "end": 2260.57, "word": " different", "probability": 0.76904296875}, {"start": 2260.57, "end": 2260.91, "word": " types", "probability": 0.66650390625}, {"start": 2260.91, "end": 2261.57, "word": " of", "probability": 0.97021484375}, {"start": 2261.57, "end": 2261.93, "word": " output", "probability": 0.857421875}, {"start": 2261.93, "end": 2262.31, "word": " streams.", "probability": 0.75927734375}, {"start": 2263.11, "end": 2263.33, "word": " Okay?", "probability": 0.625}, {"start": 2263.73, "end": 2263.95, "word": " For", "probability": 0.79052734375}, {"start": 2263.95, "end": 2264.31, "word": " example,", "probability": 0.92724609375}, {"start": 2264.43, "end": 2264.43, "word": " we", "probability": 0.83251953125}, {"start": 2264.43, "end": 2264.73, "word": " have", "probability": 0.94677734375}, {"start": 2264.73, "end": 2265.07, "word": " a", "probability": 0.4423828125}, {"start": 2265.07, "end": 2265.41, "word": " file", "probability": 0.6962890625}, {"start": 2265.41, "end": 2265.77, "word": " output", "probability": 0.94287109375}, {"start": 2265.77, "end": 2266.19, "word": " stream.", "probability": 0.94580078125}, {"start": 2270.03, "end": 2270.59, "word": " Which", "probability": 0.6181640625}, {"start": 2270.59, "end": 2270.75, "word": " is", "probability": 0.833984375}, {"start": 2270.75, "end": 2270.95, "word": " what", "probability": 0.423095703125}, {"start": 2270.95, "end": 2271.05, "word": " is", "probability": 0.31396484375}, {"start": 2271.05, "end": 2271.07, "word": " in", "probability": 0.787109375}, {"start": 2271.07, "end": 2271.41, "word": " her", "probability": 0.389892578125}, {"start": 2271.41, "end": 2271.41, "word": " hand", "probability": 0.880859375}, {"start": 2271.41, "end": 2272.11, "word": " to", "probability": 0.61767578125}, {"start": 2272.11, "end": 2272.43, "word": " write", "probability": 0.8564453125}, {"start": 2272.43, "end": 2272.93, "word": " on", "probability": 0.7080078125}, {"start": 2272.93, "end": 2273.03, "word": " the", "probability": 0.693359375}, {"start": 2273.03, "end": 2273.29, "word": " file.", "probability": 0.814453125}, {"start": 2273.59, "end": 2273.89, "word": " Binary", "probability": 0.78759765625}, {"start": 2273.89, "end": 2274.21, "word": " data", "probability": 0.90869140625}, {"start": 2274.21, "end": 2274.29, "word": " is", "probability": 0.244140625}, {"start": 2274.29, "end": 2274.47, "word": " written", "probability": 0.89306640625}, {"start": 2274.47, "end": 2274.63, "word": " on", "probability": 0.9140625}, {"start": 2274.63, "end": 2274.71, "word": " the", "probability": 0.82421875}, {"start": 2274.71, "end": 2274.93, "word": " file.", "probability": 0.83642578125}, {"start": 2275.57, "end": 2275.67, "word": " And", "probability": 0.86279296875}, {"start": 2275.67, "end": 2275.77, "word": " for", "probability": 0.2210693359375}, {"start": 2275.77, "end": 2276.29, "word": " example,", "probability": 0.958984375}, {"start": 2276.35, "end": 2276.35, "word": " we", "probability": 0.8193359375}, {"start": 2276.35, "end": 2276.35, "word": " have", "probability": 0.9453125}, {"start": 2276.35, "end": 2276.47, "word": " a", "probability": 0.80517578125}, {"start": 2276.47, "end": 2276.71, "word": " socket", "probability": 0.876953125}, {"start": 2276.71, "end": 2277.07, "word": " output", "probability": 0.92724609375}, {"start": 2277.07, "end": 2277.45, "word": " stream.", "probability": 0.9384765625}], "temperature": 1.0}, {"id": 88, "seek": 231152, "start": 2282.7, "end": 2311.52, "text": "What is it for? To write on the network. You give it a specific IP and it writes on the network. You can make a chat program on another device or send files to another device. You use the output stream socket. This is written on the file and this is written on the socket. And there are other types of output streams. I did not bring them with me this time. Now, all of these are output streams. Actually, when you want to write data on them, you want to write the data in binary data. That is, you want to send a string, you have to turn the string into characters and binary and a story.", "tokens": [3748, 307, 309, 337, 30, 1407, 2464, 322, 264, 3209, 13, 509, 976, 309, 257, 2685, 8671, 293, 309, 13657, 322, 264, 3209, 13, 509, 393, 652, 257, 5081, 1461, 322, 1071, 4302, 420, 2845, 7098, 281, 1071, 4302, 13, 509, 764, 264, 5598, 4309, 19741, 13, 639, 307, 3720, 322, 264, 3991, 293, 341, 307, 3720, 322, 264, 19741, 13, 400, 456, 366, 661, 3467, 295, 5598, 15842, 13, 286, 630, 406, 1565, 552, 365, 385, 341, 565, 13, 823, 11, 439, 295, 613, 366, 5598, 15842, 13, 5135, 11, 562, 291, 528, 281, 2464, 1412, 322, 552, 11, 291, 528, 281, 2464, 264, 1412, 294, 17434, 1412, 13, 663, 307, 11, 291, 528, 281, 2845, 257, 6798, 11, 291, 362, 281, 1261, 264, 6798, 666, 4342, 293, 17434, 293, 257, 1657, 13], "avg_logprob": -0.4249999929357458, "compression_ratio": 2.038062283737024, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 2282.7, "end": 2283.02, "word": "What", "probability": 0.11041259765625}, {"start": 2283.02, "end": 2283.02, "word": " is", "probability": 0.544921875}, {"start": 2283.02, "end": 2283.24, "word": " it", "probability": 0.31005859375}, {"start": 2283.24, "end": 2283.28, "word": " for?", "probability": 0.51806640625}, {"start": 2283.48, "end": 2283.8, "word": " To", "probability": 0.447021484375}, {"start": 2283.8, "end": 2284.04, "word": " write", "probability": 0.55517578125}, {"start": 2284.04, "end": 2284.2, "word": " on", "probability": 0.5986328125}, {"start": 2284.2, "end": 2284.28, "word": " the", "probability": 0.61669921875}, {"start": 2284.28, "end": 2284.68, "word": " network.", "probability": 0.9140625}, {"start": 2284.82, "end": 2284.94, "word": " You", "probability": 0.424072265625}, {"start": 2284.94, "end": 2285.08, "word": " give", "probability": 0.489013671875}, {"start": 2285.08, "end": 2285.18, "word": " it", "probability": 0.82080078125}, {"start": 2285.18, "end": 2285.22, "word": " a", "probability": 0.89013671875}, {"start": 2285.22, "end": 2285.22, "word": " specific", "probability": 0.40234375}, {"start": 2285.22, "end": 2285.46, "word": " IP", "probability": 0.93505859375}, {"start": 2285.46, "end": 2285.98, "word": " and", "probability": 0.5478515625}, {"start": 2285.98, "end": 2286.08, "word": " it", "probability": 0.69384765625}, {"start": 2286.08, "end": 2286.18, "word": " writes", "probability": 0.7744140625}, {"start": 2286.18, "end": 2286.34, "word": " on", "probability": 0.8310546875}, {"start": 2286.34, "end": 2286.46, "word": " the", "probability": 0.85888671875}, {"start": 2286.46, "end": 2286.72, "word": " network.", "probability": 0.92041015625}, {"start": 2287.08, "end": 2287.2, "word": " You", "probability": 0.77978515625}, {"start": 2287.2, "end": 2287.26, "word": " can", "probability": 0.515625}, {"start": 2287.26, "end": 2287.42, "word": " make", "probability": 0.408203125}, {"start": 2287.42, "end": 2287.8, "word": " a", "probability": 0.89794921875}, {"start": 2287.8, "end": 2288.16, "word": " chat", "probability": 0.875}, {"start": 2288.16, "end": 2288.24, "word": " program", "probability": 0.763671875}, {"start": 2288.24, "end": 2289.48, "word": " on", "probability": 0.485595703125}, {"start": 2289.48, "end": 2289.56, "word": " another", "probability": 0.8359375}, {"start": 2289.56, "end": 2289.9, "word": " device", "probability": 0.9384765625}, {"start": 2289.9, "end": 2290.12, "word": " or", "probability": 0.60791015625}, {"start": 2290.12, "end": 2290.36, "word": " send", "probability": 0.55078125}, {"start": 2290.36, "end": 2290.72, "word": " files", "probability": 0.87060546875}, {"start": 2290.72, "end": 2290.9, "word": " to", "probability": 0.485595703125}, {"start": 2290.9, "end": 2291.26, "word": " another", "probability": 0.89892578125}, {"start": 2291.26, "end": 2291.26, "word": " device.", "probability": 0.96044921875}, {"start": 2291.28, "end": 2291.44, "word": " You", "probability": 0.4873046875}, {"start": 2291.44, "end": 2291.7, "word": " use", "probability": 0.75244140625}, {"start": 2291.7, "end": 2291.86, "word": " the", "probability": 0.315673828125}, {"start": 2291.86, "end": 2292.32, "word": " output", "probability": 0.78125}, {"start": 2292.32, "end": 2292.66, "word": " stream", "probability": 0.92724609375}, {"start": 2292.66, "end": 2292.66, "word": " socket.", "probability": 0.6435546875}, {"start": 2293.22, "end": 2293.44, "word": " This", "probability": 0.7197265625}, {"start": 2293.44, "end": 2293.5, "word": " is", "probability": 0.6474609375}, {"start": 2293.5, "end": 2293.68, "word": " written", "probability": 0.78662109375}, {"start": 2293.68, "end": 2293.8, "word": " on", "probability": 0.91650390625}, {"start": 2293.8, "end": 2293.88, "word": " the", "probability": 0.36865234375}, {"start": 2293.88, "end": 2294.04, "word": " file", "probability": 0.86474609375}, {"start": 2294.04, "end": 2294.16, "word": " and", "probability": 0.7705078125}, {"start": 2294.16, "end": 2294.28, "word": " this", "probability": 0.8701171875}, {"start": 2294.28, "end": 2294.32, "word": " is", "probability": 0.80908203125}, {"start": 2294.32, "end": 2294.52, "word": " written", "probability": 0.87451171875}, {"start": 2294.52, "end": 2294.72, "word": " on", "probability": 0.939453125}, {"start": 2294.72, "end": 2295.48, "word": " the", "probability": 0.83544921875}, {"start": 2295.48, "end": 2295.68, "word": " socket.", "probability": 0.83056640625}, {"start": 2296.46, "end": 2296.64, "word": " And", "probability": 0.69287109375}, {"start": 2296.64, "end": 2296.8, "word": " there", "probability": 0.9033203125}, {"start": 2296.8, "end": 2296.82, "word": " are", "probability": 0.9052734375}, {"start": 2296.82, "end": 2296.9, "word": " other", "probability": 0.84130859375}, {"start": 2296.9, "end": 2297.16, "word": " types", "probability": 0.79638671875}, {"start": 2297.16, "end": 2297.66, "word": " of", "probability": 0.962890625}, {"start": 2297.66, "end": 2297.94, "word": " output", "probability": 0.916015625}, {"start": 2297.94, "end": 2298.22, "word": " streams.", "probability": 0.6220703125}, {"start": 2298.28, "end": 2298.4, "word": " I", "probability": 0.919921875}, {"start": 2298.4, "end": 2298.54, "word": " did", "probability": 0.281494140625}, {"start": 2298.54, "end": 2298.54, "word": " not", "probability": 0.93408203125}, {"start": 2298.54, "end": 2298.76, "word": " bring", "probability": 0.240478515625}, {"start": 2298.76, "end": 2299.04, "word": " them", "probability": 0.82470703125}, {"start": 2299.04, "end": 2299.1, "word": " with", "probability": 0.294677734375}, {"start": 2299.1, "end": 2299.1, "word": " me", "probability": 0.9482421875}, {"start": 2299.1, "end": 2299.22, "word": " this", "probability": 0.2186279296875}, {"start": 2299.22, "end": 2299.4, "word": " time.", "probability": 0.63720703125}, {"start": 2301.4, "end": 2301.72, "word": " Now,", "probability": 0.7421875}, {"start": 2301.8, "end": 2301.92, "word": " all", "probability": 0.5849609375}, {"start": 2301.92, "end": 2301.92, "word": " of", "probability": 0.60205078125}, {"start": 2301.92, "end": 2302.06, "word": " these", "probability": 0.6787109375}, {"start": 2302.06, "end": 2302.4, "word": " are", "probability": 0.77197265625}, {"start": 2302.4, "end": 2302.72, "word": " output", "probability": 0.7392578125}, {"start": 2302.72, "end": 2303.18, "word": " streams.", "probability": 0.94189453125}, {"start": 2303.8, "end": 2304.0, "word": " Actually,", "probability": 0.366455078125}, {"start": 2304.1, "end": 2304.18, "word": " when", "probability": 0.91748046875}, {"start": 2304.18, "end": 2304.34, "word": " you", "probability": 0.96484375}, {"start": 2304.34, "end": 2304.46, "word": " want", "probability": 0.67041015625}, {"start": 2304.46, "end": 2304.54, "word": " to", "probability": 0.97216796875}, {"start": 2304.54, "end": 2304.76, "word": " write", "probability": 0.91015625}, {"start": 2304.76, "end": 2304.8, "word": " data", "probability": 0.71044921875}, {"start": 2304.8, "end": 2304.88, "word": " on", "probability": 0.86865234375}, {"start": 2304.88, "end": 2305.32, "word": " them,", "probability": 0.8759765625}, {"start": 2305.4, "end": 2305.48, "word": " you", "probability": 0.9267578125}, {"start": 2305.48, "end": 2305.56, "word": " want", "probability": 0.3046875}, {"start": 2305.56, "end": 2305.62, "word": " to", "probability": 0.9697265625}, {"start": 2305.62, "end": 2305.76, "word": " write", "probability": 0.9013671875}, {"start": 2305.76, "end": 2305.86, "word": " the", "probability": 0.322509765625}, {"start": 2305.86, "end": 2306.06, "word": " data", "probability": 0.91162109375}, {"start": 2306.06, "end": 2306.2, "word": " in", "probability": 0.53515625}, {"start": 2306.2, "end": 2306.5, "word": " binary", "probability": 0.8447265625}, {"start": 2306.5, "end": 2306.8, "word": " data.", "probability": 0.83544921875}, {"start": 2306.88, "end": 2306.94, "word": " That", "probability": 0.177490234375}, {"start": 2306.94, "end": 2306.94, "word": " is,", "probability": 0.7880859375}, {"start": 2306.94, "end": 2307.04, "word": " you", "probability": 0.92138671875}, {"start": 2307.04, "end": 2307.08, "word": " want", "probability": 0.36474609375}, {"start": 2307.08, "end": 2307.22, "word": " to", "probability": 0.96630859375}, {"start": 2307.22, "end": 2307.28, "word": " send", "probability": 0.66650390625}, {"start": 2307.28, "end": 2307.48, "word": " a", "probability": 0.82470703125}, {"start": 2307.48, "end": 2307.74, "word": " string,", "probability": 0.90234375}, {"start": 2307.82, "end": 2307.86, "word": " you", "probability": 0.546875}, {"start": 2307.86, "end": 2308.1, "word": " have", "probability": 0.370361328125}, {"start": 2308.1, "end": 2308.12, "word": " to", "probability": 0.97119140625}, {"start": 2308.12, "end": 2308.2, "word": " turn", "probability": 0.1337890625}, {"start": 2308.2, "end": 2308.3, "word": " the", "probability": 0.70654296875}, {"start": 2308.3, "end": 2308.7, "word": " string", "probability": 0.88330078125}, {"start": 2308.7, "end": 2309.66, "word": " into", "probability": 0.86376953125}, {"start": 2309.66, "end": 2310.22, "word": " characters", "probability": 0.8486328125}, {"start": 2310.22, "end": 2310.4, "word": " and", "probability": 0.60498046875}, {"start": 2310.4, "end": 2310.74, "word": " binary", "probability": 0.49658203125}, {"start": 2310.74, "end": 2311.2, "word": " and", "probability": 0.6611328125}, {"start": 2311.2, "end": 2311.52, "word": " a", "probability": 0.2235107421875}, {"start": 2311.52, "end": 2311.52, "word": " story.", "probability": 0.76611328125}], "temperature": 1.0}, {"id": 89, "seek": 233261, "start": 2312.31, "end": 2332.61, "text": "So I found that they made it easy for us, they let us say whatever output stream you have, whatever you send to the network, whatever you send to files, whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you send to whatever you", "tokens": [6455, 286, 1352, 300, 436, 1027, 309, 1858, 337, 505, 11, 436, 718, 505, 584, 2035, 5598, 4309, 291, 362, 11, 2035, 291, 2845, 281, 264, 3209, 11, 2035, 291, 2845, 281, 7098, 11, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291, 2845, 281, 2035, 291], "avg_logprob": -0.20583332697550455, "compression_ratio": 10.105263157894736, "no_speech_prob": 3.993511199951172e-06, "words": [{"start": 2312.31, "end": 2312.53, "word": "So", "probability": 0.29443359375}, {"start": 2312.53, "end": 2312.63, "word": " I", "probability": 0.11810302734375}, {"start": 2312.63, "end": 2312.75, "word": " found", "probability": 0.4384765625}, {"start": 2312.75, "end": 2312.83, "word": " that", "probability": 0.47607421875}, {"start": 2312.83, "end": 2312.97, "word": " they", "probability": 0.77978515625}, {"start": 2312.97, "end": 2313.11, "word": " made", "probability": 0.33740234375}, {"start": 2313.11, "end": 2313.11, "word": " it", "probability": 0.81689453125}, {"start": 2313.11, "end": 2313.31, "word": " easy", "probability": 0.5126953125}, {"start": 2313.31, "end": 2313.47, "word": " for", "probability": 0.8525390625}, {"start": 2313.47, "end": 2313.71, "word": " us,", "probability": 0.66796875}, {"start": 2314.17, "end": 2314.29, "word": " they", "probability": 0.5283203125}, {"start": 2314.29, "end": 2314.55, "word": " let", "probability": 0.184326171875}, {"start": 2314.55, "end": 2314.77, "word": " us", "probability": 0.8125}, {"start": 2314.77, "end": 2314.95, "word": " say", "probability": 0.36328125}, {"start": 2314.95, "end": 2315.39, "word": " whatever", "probability": 0.28515625}, {"start": 2315.39, "end": 2316.37, "word": " output", "probability": 0.7958984375}, {"start": 2316.37, "end": 2316.73, "word": " stream", "probability": 0.58447265625}, {"start": 2316.73, "end": 2316.75, "word": " you", "probability": 0.53564453125}, {"start": 2316.75, "end": 2316.75, "word": " have,", "probability": 0.779296875}, {"start": 2316.75, "end": 2316.91, "word": " whatever", "probability": 0.2095947265625}, {"start": 2316.91, "end": 2316.95, "word": " you", "probability": 0.37353515625}, {"start": 2316.95, "end": 2317.15, "word": " send", "probability": 0.6708984375}, {"start": 2317.15, "end": 2317.31, "word": " to", "probability": 0.464599609375}, {"start": 2317.31, "end": 2317.37, "word": " the", "probability": 0.46240234375}, {"start": 2317.37, "end": 2317.55, "word": " network,", "probability": 0.59912109375}, {"start": 2317.73, "end": 2317.79, "word": " whatever", "probability": 0.416015625}, {"start": 2317.79, "end": 2317.79, "word": " you", "probability": 0.66796875}, {"start": 2317.79, "end": 2318.03, "word": " send", "probability": 0.76953125}, {"start": 2318.03, "end": 2318.13, "word": " to", "probability": 0.91552734375}, {"start": 2318.13, "end": 2318.39, "word": " files,", "probability": 0.53173828125}, {"start": 2318.53, "end": 2318.59, "word": " whatever", "probability": 0.87060546875}, {"start": 2318.59, "end": 2318.65, "word": " you", "probability": 0.8935546875}, {"start": 2318.65, "end": 2318.77, "word": " send", "probability": 0.798828125}, {"start": 2318.77, "end": 2318.91, "word": " to", "probability": 0.91162109375}, {"start": 2318.91, "end": 2319.01, "word": " whatever", "probability": 0.359375}, {"start": 2319.01, "end": 2319.01, "word": " you", "probability": 0.42822265625}, {"start": 2319.01, "end": 2319.19, "word": " send", "probability": 0.66357421875}, {"start": 2319.19, "end": 2319.25, "word": " to", "probability": 0.91552734375}, {"start": 2319.25, "end": 2319.25, "word": " whatever", "probability": 0.391357421875}, {"start": 2319.25, "end": 2320.35, "word": " you", "probability": 0.5244140625}, {"start": 2320.35, "end": 2320.57, "word": " send", "probability": 0.6904296875}, {"start": 2320.57, "end": 2320.57, "word": " to", "probability": 0.93212890625}, {"start": 2320.57, "end": 2320.57, "word": " whatever", "probability": 0.460693359375}, {"start": 2320.57, "end": 2320.57, "word": " you", "probability": 0.64794921875}, {"start": 2320.57, "end": 2320.59, "word": " send", "probability": 0.748046875}, {"start": 2320.59, "end": 2320.59, "word": " to", "probability": 0.93896484375}, {"start": 2320.59, "end": 2320.59, "word": " whatever", "probability": 0.494873046875}, {"start": 2320.59, "end": 2320.59, "word": " you", "probability": 0.751953125}, {"start": 2320.59, "end": 2320.59, "word": " send", "probability": 0.77294921875}, {"start": 2320.59, "end": 2320.59, "word": " to", "probability": 0.94482421875}, {"start": 2320.59, "end": 2320.59, "word": " whatever", "probability": 0.65380859375}, {"start": 2320.59, "end": 2320.59, "word": " you", "probability": 0.83447265625}, {"start": 2320.59, "end": 2320.65, "word": " send", "probability": 0.78564453125}, {"start": 2320.65, "end": 2320.65, "word": " to", "probability": 0.95068359375}, {"start": 2320.65, "end": 2320.65, "word": " whatever", "probability": 0.73388671875}, {"start": 2320.65, "end": 2320.65, "word": " you", "probability": 0.88623046875}, {"start": 2320.65, "end": 2320.65, "word": " send", "probability": 0.79443359375}, {"start": 2320.65, "end": 2320.65, "word": " to", "probability": 0.9560546875}, {"start": 2320.65, "end": 2320.65, "word": " whatever", "probability": 0.78173828125}, {"start": 2320.65, "end": 2320.65, "word": " you", "probability": 0.9140625}, {"start": 2320.65, "end": 2320.65, "word": " send", "probability": 0.802734375}, {"start": 2320.65, "end": 2320.65, "word": " to", "probability": 0.95849609375}, {"start": 2320.65, "end": 2320.65, "word": " whatever", "probability": 0.81201171875}, {"start": 2320.65, "end": 2320.65, "word": " you", "probability": 0.93017578125}, {"start": 2320.65, "end": 2320.71, "word": " send", "probability": 0.8134765625}, {"start": 2320.71, "end": 2320.71, "word": " to", "probability": 0.96142578125}, {"start": 2320.71, "end": 2320.71, "word": " whatever", "probability": 0.83203125}, {"start": 2320.71, "end": 2320.71, "word": " you", "probability": 0.939453125}, {"start": 2320.71, "end": 2320.73, "word": " send", "probability": 0.82080078125}, {"start": 2320.73, "end": 2320.73, "word": " to", "probability": 0.96337890625}, {"start": 2320.73, "end": 2320.73, "word": " whatever", "probability": 0.849609375}, {"start": 2320.73, "end": 2320.73, "word": " you", "probability": 0.94677734375}, {"start": 2320.73, "end": 2320.73, "word": " send", "probability": 0.828125}, {"start": 2320.73, "end": 2320.73, "word": " to", "probability": 0.96484375}, {"start": 2320.73, "end": 2320.73, "word": " whatever", "probability": 0.8662109375}, {"start": 2320.73, "end": 2320.73, "word": " you", "probability": 0.95263671875}, {"start": 2320.73, "end": 2320.73, "word": " send", "probability": 0.83544921875}, {"start": 2320.73, "end": 2320.73, "word": " to", "probability": 0.96728515625}, {"start": 2320.73, "end": 2320.73, "word": " whatever", "probability": 0.87890625}, {"start": 2320.73, "end": 2320.73, "word": " you", "probability": 0.9560546875}, {"start": 2320.73, "end": 2320.73, "word": " send", "probability": 0.8408203125}, {"start": 2320.73, "end": 2320.73, "word": " to", "probability": 0.96875}, {"start": 2320.73, "end": 2320.73, "word": " whatever", "probability": 0.8896484375}, {"start": 2320.73, "end": 2320.73, "word": " you", "probability": 0.95947265625}, {"start": 2320.73, "end": 2320.73, "word": " send", "probability": 0.84375}, {"start": 2320.73, "end": 2320.87, "word": " to", "probability": 0.96923828125}, {"start": 2320.87, "end": 2320.87, "word": " whatever", "probability": 0.8984375}, {"start": 2320.87, "end": 2320.87, "word": " you", "probability": 0.96142578125}, {"start": 2320.87, "end": 2321.01, "word": " send", "probability": 0.84814453125}, {"start": 2321.01, "end": 2321.01, "word": " to", "probability": 0.97021484375}, {"start": 2321.01, "end": 2321.01, "word": " whatever", "probability": 0.90673828125}, {"start": 2321.01, "end": 2321.01, "word": " you", "probability": 0.9638671875}, {"start": 2321.01, "end": 2321.01, "word": " send", "probability": 0.8505859375}, {"start": 2321.01, "end": 2321.01, "word": " to", "probability": 0.97119140625}, {"start": 2321.01, "end": 2321.01, "word": " whatever", "probability": 0.91064453125}, {"start": 2321.01, "end": 2321.01, "word": " you", "probability": 0.96533203125}, {"start": 2321.01, "end": 2321.05, "word": " send", "probability": 0.85498046875}, {"start": 2321.05, "end": 2321.85, "word": " to", "probability": 0.9716796875}, {"start": 2321.85, "end": 2321.85, "word": " whatever", "probability": 0.91455078125}, {"start": 2321.85, "end": 2321.85, "word": " you", "probability": 0.966796875}, {"start": 2321.85, "end": 2321.85, "word": " send", "probability": 0.85693359375}, {"start": 2321.85, "end": 2321.91, "word": " to", "probability": 0.97265625}, {"start": 2321.91, "end": 2322.15, "word": " whatever", "probability": 0.91845703125}, {"start": 2322.15, "end": 2322.15, "word": " you", "probability": 0.9677734375}, {"start": 2322.15, "end": 2322.15, "word": " send", "probability": 0.8603515625}, {"start": 2322.15, "end": 2322.23, "word": " to", "probability": 0.9736328125}, {"start": 2322.23, "end": 2322.23, "word": " whatever", "probability": 0.9208984375}, {"start": 2322.23, "end": 2322.23, "word": " you", "probability": 0.96826171875}, {"start": 2322.23, "end": 2322.23, "word": " send", "probability": 0.861328125}, {"start": 2322.23, "end": 2322.23, "word": " to", "probability": 0.97314453125}, {"start": 2322.23, "end": 2322.23, "word": " whatever", "probability": 0.92333984375}, {"start": 2322.23, "end": 2322.23, "word": " you", "probability": 0.96875}, {"start": 2322.23, "end": 2322.23, "word": " send", "probability": 0.86474609375}, {"start": 2322.23, "end": 2322.39, "word": " to", "probability": 0.9736328125}, {"start": 2322.39, "end": 2322.39, "word": " whatever", "probability": 0.92529296875}, {"start": 2322.39, "end": 2322.39, "word": " you", "probability": 0.9697265625}, {"start": 2322.39, "end": 2322.39, "word": " send", "probability": 0.86669921875}, {"start": 2322.39, "end": 2322.39, "word": " to", "probability": 0.97412109375}, {"start": 2322.39, "end": 2322.39, "word": " whatever", "probability": 0.92578125}, {"start": 2322.39, "end": 2322.39, "word": " you", "probability": 0.97021484375}, {"start": 2322.39, "end": 2322.39, "word": " send", "probability": 0.8681640625}, {"start": 2322.39, "end": 2322.39, "word": " to", "probability": 0.97412109375}, {"start": 2322.39, "end": 2322.39, "word": " whatever", "probability": 0.9267578125}, {"start": 2322.39, "end": 2322.39, "word": " you", "probability": 0.97021484375}, {"start": 2322.39, "end": 2322.39, "word": " send", "probability": 0.869140625}, {"start": 2322.39, "end": 2322.43, "word": " to", "probability": 0.974609375}, {"start": 2322.43, "end": 2322.69, "word": " whatever", "probability": 0.92822265625}, {"start": 2322.69, "end": 2322.69, "word": " you", "probability": 0.97119140625}, {"start": 2322.69, "end": 2322.69, "word": " send", "probability": 0.87060546875}, {"start": 2322.69, "end": 2322.69, "word": " to", "probability": 0.974609375}, {"start": 2322.69, "end": 2322.69, "word": " whatever", "probability": 0.9306640625}, {"start": 2322.69, "end": 2322.69, "word": " you", "probability": 0.9716796875}, {"start": 2322.69, "end": 2322.69, "word": " send", "probability": 0.87060546875}, {"start": 2322.69, "end": 2322.69, "word": " to", "probability": 0.97412109375}, {"start": 2322.69, "end": 2323.09, "word": " whatever", "probability": 0.931640625}, {"start": 2323.09, "end": 2323.09, "word": " you", "probability": 0.97216796875}, {"start": 2323.09, "end": 2323.09, "word": " send", "probability": 0.8720703125}, {"start": 2323.09, "end": 2323.09, "word": " to", "probability": 0.97412109375}, {"start": 2323.09, "end": 2323.09, "word": " whatever", "probability": 0.9326171875}, {"start": 2323.09, "end": 2323.09, "word": " you", "probability": 0.9716796875}, {"start": 2323.09, "end": 2323.09, "word": " send", "probability": 0.873046875}, {"start": 2323.09, "end": 2323.09, "word": " to", "probability": 0.97509765625}, {"start": 2323.09, "end": 2324.01, "word": " whatever", "probability": 0.93359375}, {"start": 2324.01, "end": 2324.01, "word": " you", "probability": 0.97265625}, {"start": 2324.01, "end": 2324.01, "word": " send", "probability": 0.87353515625}, {"start": 2324.01, "end": 2324.01, "word": " to", "probability": 0.974609375}, {"start": 2324.01, "end": 2324.01, "word": " whatever", "probability": 0.935546875}, {"start": 2324.01, "end": 2324.01, "word": " you", "probability": 0.97265625}, {"start": 2324.01, "end": 2324.01, "word": " send", "probability": 0.873046875}, {"start": 2324.01, "end": 2324.01, "word": " to", "probability": 0.974609375}, {"start": 2324.01, "end": 2324.01, "word": " whatever", "probability": 0.93701171875}, {"start": 2324.01, "end": 2324.01, "word": " you", "probability": 0.97265625}, {"start": 2324.01, "end": 2324.01, "word": " send", "probability": 0.87451171875}, {"start": 2324.01, "end": 2324.01, "word": " to", "probability": 0.974609375}, {"start": 2324.01, "end": 2324.01, "word": " whatever", "probability": 0.93798828125}, {"start": 2324.01, "end": 2324.01, "word": " you", "probability": 0.97314453125}, {"start": 2324.01, "end": 2324.01, "word": " send", "probability": 0.87255859375}, {"start": 2324.01, "end": 2324.01, "word": " to", "probability": 0.9755859375}, {"start": 2324.01, "end": 2324.17, "word": " whatever", "probability": 0.93896484375}, {"start": 2324.17, "end": 2324.17, "word": " you", "probability": 0.97314453125}, {"start": 2324.17, "end": 2324.17, "word": " send", "probability": 0.87353515625}, {"start": 2324.17, "end": 2324.17, "word": " to", "probability": 0.974609375}, {"start": 2324.17, "end": 2324.19, "word": " whatever", "probability": 0.9404296875}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97412109375}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.873046875}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.974609375}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.94091796875}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97314453125}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.873046875}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.97509765625}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.94140625}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97314453125}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.873046875}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.97509765625}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.94287109375}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97412109375}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.87255859375}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.9755859375}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.943359375}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97412109375}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.87109375}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.97509765625}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.943359375}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97412109375}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.87060546875}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.9755859375}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.94287109375}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97412109375}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.87060546875}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.9755859375}, {"start": 2324.19, "end": 2324.19, "word": " whatever", "probability": 0.94287109375}, {"start": 2324.19, "end": 2324.19, "word": " you", "probability": 0.97412109375}, {"start": 2324.19, "end": 2324.19, "word": " send", "probability": 0.8701171875}, {"start": 2324.19, "end": 2324.19, "word": " to", "probability": 0.9765625}, {"start": 2324.19, "end": 2324.39, "word": " whatever", "probability": 0.94189453125}, {"start": 2324.39, "end": 2324.59, "word": " you", "probability": 0.97412109375}, {"start": 2324.59, "end": 2324.99, "word": " send", "probability": 0.8701171875}, {"start": 2324.99, "end": 2324.99, "word": " to", "probability": 0.9755859375}, {"start": 2324.99, "end": 2324.99, "word": " whatever", "probability": 0.9423828125}, {"start": 2324.99, "end": 2324.99, "word": " you", "probability": 0.97412109375}, {"start": 2324.99, "end": 2324.99, "word": " send", "probability": 0.87158203125}, {"start": 2324.99, "end": 2324.99, "word": " to", "probability": 0.9765625}, {"start": 2324.99, "end": 2324.99, "word": " whatever", "probability": 0.9423828125}, {"start": 2324.99, "end": 2324.99, "word": " you", "probability": 0.97412109375}, {"start": 2324.99, "end": 2325.01, "word": " send", "probability": 0.87158203125}, {"start": 2325.01, "end": 2325.11, "word": " to", "probability": 0.9765625}, {"start": 2325.11, "end": 2325.53, "word": " whatever", "probability": 0.943359375}, {"start": 2325.53, "end": 2325.85, "word": " you", "probability": 0.9736328125}, {"start": 2325.85, "end": 2325.85, "word": " send", "probability": 0.87158203125}, {"start": 2325.85, "end": 2325.99, "word": " to", "probability": 0.9765625}, {"start": 2325.99, "end": 2326.45, "word": " whatever", "probability": 0.9423828125}, {"start": 2326.45, "end": 2327.05, "word": " you", "probability": 0.97412109375}, {"start": 2327.05, "end": 2327.05, "word": " send", "probability": 0.87109375}, {"start": 2327.05, "end": 2327.07, "word": " to", "probability": 0.9765625}, {"start": 2327.07, "end": 2330.89, "word": " whatever", "probability": 0.943359375}, {"start": 2330.89, "end": 2330.89, "word": " you", "probability": 0.97412109375}, {"start": 2330.89, "end": 2330.99, "word": " send", "probability": 0.873046875}, {"start": 2330.99, "end": 2330.99, "word": " to", "probability": 0.97705078125}, {"start": 2330.99, "end": 2332.61, "word": " whatever", "probability": 0.9423828125}, {"start": 2332.61, "end": 2332.61, "word": " you", "probability": 0.97412109375}], "temperature": 1.0}, {"id": 90, "seek": 235771, "start": 2334.01, "end": 2357.71, "text": "Simple, how do we do it? We go to the file output stream and make an extend to a new class called string writing file output stream and make an extend to this new class and make a method called println", "tokens": [39392, 781, 11, 577, 360, 321, 360, 309, 30, 492, 352, 281, 264, 3991, 5598, 4309, 293, 652, 364, 10101, 281, 257, 777, 1508, 1219, 6798, 3579, 3991, 5598, 4309, 293, 652, 364, 10101, 281, 341, 777, 1508, 293, 652, 257, 3170, 1219, 4482, 75, 77], "avg_logprob": -0.6160239260247413, "compression_ratio": 1.7033898305084745, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 2334.01, "end": 2334.47, "word": "Simple,", "probability": 0.50439453125}, {"start": 2334.57, "end": 2334.75, "word": " how", "probability": 0.529296875}, {"start": 2334.75, "end": 2334.87, "word": " do", "probability": 0.3740234375}, {"start": 2334.87, "end": 2334.89, "word": " we", "probability": 0.71826171875}, {"start": 2334.89, "end": 2335.07, "word": " do", "probability": 0.85986328125}, {"start": 2335.07, "end": 2335.19, "word": " it?", "probability": 0.68701171875}, {"start": 2335.33, "end": 2335.97, "word": " We", "probability": 0.2021484375}, {"start": 2335.97, "end": 2336.13, "word": " go", "probability": 0.71142578125}, {"start": 2336.13, "end": 2336.35, "word": " to", "probability": 0.9287109375}, {"start": 2336.35, "end": 2336.41, "word": " the", "probability": 0.4541015625}, {"start": 2336.41, "end": 2336.63, "word": " file", "probability": 0.72021484375}, {"start": 2336.63, "end": 2336.87, "word": " output", "probability": 0.55859375}, {"start": 2336.87, "end": 2337.23, "word": " stream", "probability": 0.517578125}, {"start": 2337.23, "end": 2337.87, "word": " and", "probability": 0.407470703125}, {"start": 2337.87, "end": 2338.13, "word": " make", "probability": 0.180419921875}, {"start": 2338.13, "end": 2338.65, "word": " an", "probability": 0.28369140625}, {"start": 2338.65, "end": 2339.19, "word": " extend", "probability": 0.458984375}, {"start": 2339.19, "end": 2339.55, "word": " to", "probability": 0.6640625}, {"start": 2339.55, "end": 2339.65, "word": " a", "probability": 0.7841796875}, {"start": 2339.65, "end": 2340.23, "word": " new", "probability": 0.8984375}, {"start": 2340.23, "end": 2340.31, "word": " class", "probability": 0.95458984375}, {"start": 2340.31, "end": 2341.29, "word": " called", "probability": 0.1376953125}, {"start": 2341.29, "end": 2343.91, "word": " string", "probability": 0.411376953125}, {"start": 2343.91, "end": 2345.03, "word": " writing", "probability": 0.626953125}, {"start": 2345.03, "end": 2345.49, "word": " file", "probability": 0.7890625}, {"start": 2345.49, "end": 2345.81, "word": " output", "probability": 0.9365234375}, {"start": 2345.81, "end": 2346.31, "word": " stream", "probability": 0.7646484375}, {"start": 2346.31, "end": 2348.21, "word": " and", "probability": 0.1795654296875}, {"start": 2348.21, "end": 2349.29, "word": " make", "probability": 0.353515625}, {"start": 2349.29, "end": 2349.43, "word": " an", "probability": 0.4638671875}, {"start": 2349.43, "end": 2349.43, "word": " extend", "probability": 0.76708984375}, {"start": 2349.43, "end": 2349.43, "word": " to", "probability": 0.44970703125}, {"start": 2349.43, "end": 2349.53, "word": " this", "probability": 0.59130859375}, {"start": 2349.53, "end": 2350.25, "word": " new", "probability": 0.6259765625}, {"start": 2350.25, "end": 2350.29, "word": " class", "probability": 0.939453125}, {"start": 2350.29, "end": 2353.27, "word": " and", "probability": 0.1810302734375}, {"start": 2353.27, "end": 2355.83, "word": " make", "probability": 0.521484375}, {"start": 2355.83, "end": 2356.11, "word": " a", "probability": 0.7177734375}, {"start": 2356.11, "end": 2356.35, "word": " method", "probability": 0.943359375}, {"start": 2356.35, "end": 2356.67, "word": " called", "probability": 0.67138671875}, {"start": 2356.67, "end": 2357.71, "word": " println", "probability": 0.6909993489583334}], "temperature": 1.0}, {"id": 91, "seek": 238592, "start": 2358.67, "end": 2385.93, "text": "this is where I made this method, it takes a string where did I make this method? in the new class, in the subclass on the basis that in the print string it takes the string and converts it to binary and prepares it as a byte array and calls super.writeBytes for example there is a new feature that I added to the subclass", "tokens": [11176, 307, 689, 286, 1027, 341, 3170, 11, 309, 2516, 257, 6798, 689, 630, 286, 652, 341, 3170, 30, 294, 264, 777, 1508, 11, 294, 264, 1422, 11665, 322, 264, 5143, 300, 294, 264, 4482, 6798, 309, 2516, 264, 6798, 293, 38874, 309, 281, 17434, 293, 39418, 309, 382, 257, 40846, 10225, 293, 5498, 1687, 13, 21561, 33, 43673, 337, 1365, 456, 307, 257, 777, 4111, 300, 286, 3869, 281, 264, 1422, 11665], "avg_logprob": -0.40392735278284225, "compression_ratio": 1.7692307692307692, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 2358.67, "end": 2358.91, "word": "this", "probability": 0.192138671875}, {"start": 2358.91, "end": 2359.01, "word": " is", "probability": 0.5478515625}, {"start": 2359.01, "end": 2359.09, "word": " where", "probability": 0.288330078125}, {"start": 2359.09, "end": 2359.17, "word": " I", "probability": 0.54443359375}, {"start": 2359.17, "end": 2359.39, "word": " made", "probability": 0.423583984375}, {"start": 2359.39, "end": 2359.55, "word": " this", "probability": 0.498291015625}, {"start": 2359.55, "end": 2359.79, "word": " method,", "probability": 0.91943359375}, {"start": 2359.85, "end": 2360.01, "word": " it", "probability": 0.53173828125}, {"start": 2360.01, "end": 2360.15, "word": " takes", "probability": 0.76416015625}, {"start": 2360.15, "end": 2360.29, "word": " a", "probability": 0.52099609375}, {"start": 2360.29, "end": 2360.59, "word": " string", "probability": 0.802734375}, {"start": 2360.59, "end": 2361.63, "word": " where", "probability": 0.2890625}, {"start": 2361.63, "end": 2361.79, "word": " did", "probability": 0.73193359375}, {"start": 2361.79, "end": 2361.95, "word": " I", "probability": 0.916015625}, {"start": 2361.95, "end": 2361.95, "word": " make", "probability": 0.77783203125}, {"start": 2361.95, "end": 2362.05, "word": " this", "probability": 0.92431640625}, {"start": 2362.05, "end": 2362.29, "word": " method?", "probability": 0.93603515625}, {"start": 2362.75, "end": 2363.17, "word": " in", "probability": 0.79150390625}, {"start": 2363.17, "end": 2363.27, "word": " the", "probability": 0.77880859375}, {"start": 2363.27, "end": 2363.27, "word": " new", "probability": 0.83154296875}, {"start": 2363.27, "end": 2363.85, "word": " class,", "probability": 0.7724609375}, {"start": 2363.91, "end": 2364.01, "word": " in", "probability": 0.798828125}, {"start": 2364.01, "end": 2364.07, "word": " the", "probability": 0.82080078125}, {"start": 2364.07, "end": 2364.57, "word": " subclass", "probability": 0.84619140625}, {"start": 2364.57, "end": 2365.21, "word": " on", "probability": 0.418212890625}, {"start": 2365.21, "end": 2365.39, "word": " the", "probability": 0.80078125}, {"start": 2365.39, "end": 2365.69, "word": " basis", "probability": 0.69140625}, {"start": 2365.69, "end": 2365.91, "word": " that", "probability": 0.85888671875}, {"start": 2365.91, "end": 2366.05, "word": " in", "probability": 0.64892578125}, {"start": 2366.05, "end": 2366.19, "word": " the", "probability": 0.47265625}, {"start": 2366.19, "end": 2366.51, "word": " print", "probability": 0.87646484375}, {"start": 2366.51, "end": 2367.25, "word": " string", "probability": 0.73193359375}, {"start": 2367.25, "end": 2367.81, "word": " it", "probability": 0.515625}, {"start": 2367.81, "end": 2368.01, "word": " takes", "probability": 0.791015625}, {"start": 2368.01, "end": 2368.21, "word": " the", "probability": 0.751953125}, {"start": 2368.21, "end": 2368.51, "word": " string", "probability": 0.84130859375}, {"start": 2368.51, "end": 2368.63, "word": " and", "probability": 0.6181640625}, {"start": 2368.63, "end": 2368.87, "word": " converts", "probability": 0.362060546875}, {"start": 2368.87, "end": 2368.99, "word": " it", "probability": 0.93896484375}, {"start": 2368.99, "end": 2369.05, "word": " to", "probability": 0.7021484375}, {"start": 2369.05, "end": 2369.47, "word": " binary", "probability": 0.67724609375}, {"start": 2369.47, "end": 2370.55, "word": " and", "probability": 0.64453125}, {"start": 2370.55, "end": 2370.85, "word": " prepares", "probability": 0.705078125}, {"start": 2370.85, "end": 2371.03, "word": " it", "probability": 0.90625}, {"start": 2371.03, "end": 2371.21, "word": " as", "probability": 0.83251953125}, {"start": 2371.21, "end": 2371.59, "word": " a", "probability": 0.681640625}, {"start": 2371.59, "end": 2371.93, "word": " byte", "probability": 0.9228515625}, {"start": 2371.93, "end": 2373.19, "word": " array", "probability": 0.72509765625}, {"start": 2373.19, "end": 2374.01, "word": " and", "probability": 0.85791015625}, {"start": 2374.01, "end": 2374.41, "word": " calls", "probability": 0.451904296875}, {"start": 2374.41, "end": 2375.35, "word": " super", "probability": 0.54638671875}, {"start": 2375.35, "end": 2379.53, "word": ".writeBytes", "probability": 0.656463623046875}, {"start": 2379.53, "end": 2379.71, "word": " for", "probability": 0.525390625}, {"start": 2379.71, "end": 2380.59, "word": " example", "probability": 0.9296875}, {"start": 2380.59, "end": 2383.67, "word": " there", "probability": 0.2008056640625}, {"start": 2383.67, "end": 2383.73, "word": " is", "probability": 0.69677734375}, {"start": 2383.73, "end": 2383.81, "word": " a", "probability": 0.92822265625}, {"start": 2383.81, "end": 2383.81, "word": " new", "probability": 0.90478515625}, {"start": 2383.81, "end": 2384.01, "word": " feature", "probability": 0.7666015625}, {"start": 2384.01, "end": 2384.45, "word": " that", "probability": 0.402587890625}, {"start": 2384.45, "end": 2384.49, "word": " I", "probability": 0.95751953125}, {"start": 2384.49, "end": 2384.73, "word": " added", "probability": 0.71533203125}, {"start": 2384.73, "end": 2384.99, "word": " to", "probability": 0.7431640625}, {"start": 2384.99, "end": 2385.47, "word": " the", "probability": 0.873046875}, {"start": 2385.47, "end": 2385.93, "word": " subclass", "probability": 0.965087890625}], "temperature": 1.0}, {"id": 92, "seek": 241291, "start": 2387.57, "end": 2412.91, "text": "Of course, if I want to write on a file, I don't need to create an object from it. I need to create an object from the subclass and use it. And we live our life happily. But wait, we have ten other output streams. So you will have to go to the output stream socket and create a new subclass and class, and create a print method in it, take a string, and do the same conversion process, and then say super,", "tokens": [23919, 1164, 11, 498, 286, 528, 281, 2464, 322, 257, 3991, 11, 286, 500, 380, 643, 281, 1884, 364, 2657, 490, 309, 13, 286, 643, 281, 1884, 364, 2657, 490, 264, 1422, 11665, 293, 764, 309, 13, 400, 321, 1621, 527, 993, 19909, 13, 583, 1699, 11, 321, 362, 2064, 661, 5598, 15842, 13, 407, 291, 486, 362, 281, 352, 281, 264, 5598, 4309, 19741, 293, 1884, 257, 777, 1422, 11665, 293, 1508, 11, 293, 1884, 257, 4482, 3170, 294, 309, 11, 747, 257, 6798, 11, 293, 360, 264, 912, 14298, 1399, 11, 293, 550, 584, 1687, 11], "avg_logprob": -0.5006313251726555, "compression_ratio": 1.7841409691629957, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2387.57, "end": 2387.81, "word": "Of", "probability": 0.159912109375}, {"start": 2387.81, "end": 2387.93, "word": " course,", "probability": 0.91845703125}, {"start": 2388.01, "end": 2388.11, "word": " if", "probability": 0.231201171875}, {"start": 2388.11, "end": 2388.27, "word": " I", "probability": 0.59326171875}, {"start": 2388.27, "end": 2388.47, "word": " want", "probability": 0.467529296875}, {"start": 2388.47, "end": 2388.53, "word": " to", "probability": 0.96728515625}, {"start": 2388.53, "end": 2388.67, "word": " write", "probability": 0.7041015625}, {"start": 2388.67, "end": 2388.81, "word": " on", "probability": 0.305908203125}, {"start": 2388.81, "end": 2388.91, "word": " a", "probability": 0.277099609375}, {"start": 2388.91, "end": 2389.13, "word": " file,", "probability": 0.70849609375}, {"start": 2389.23, "end": 2389.35, "word": " I", "probability": 0.93408203125}, {"start": 2389.35, "end": 2389.35, "word": " don't", "probability": 0.8388671875}, {"start": 2389.35, "end": 2389.69, "word": " need", "probability": 0.8232421875}, {"start": 2389.69, "end": 2390.01, "word": " to", "probability": 0.91162109375}, {"start": 2390.01, "end": 2390.01, "word": " create", "probability": 0.7822265625}, {"start": 2390.01, "end": 2390.17, "word": " an", "probability": 0.70556640625}, {"start": 2390.17, "end": 2390.35, "word": " object", "probability": 0.95068359375}, {"start": 2390.35, "end": 2390.59, "word": " from", "probability": 0.67529296875}, {"start": 2390.59, "end": 2390.85, "word": " it.", "probability": 0.383056640625}, {"start": 2391.33, "end": 2391.47, "word": " I", "probability": 0.9150390625}, {"start": 2391.47, "end": 2391.69, "word": " need", "probability": 0.413330078125}, {"start": 2391.69, "end": 2391.81, "word": " to", "probability": 0.95263671875}, {"start": 2391.81, "end": 2391.93, "word": " create", "probability": 0.8125}, {"start": 2391.93, "end": 2392.13, "word": " an", "probability": 0.8203125}, {"start": 2392.13, "end": 2392.27, "word": " object", "probability": 0.96533203125}, {"start": 2392.27, "end": 2392.83, "word": " from", "probability": 0.83203125}, {"start": 2392.83, "end": 2393.47, "word": " the", "probability": 0.70458984375}, {"start": 2393.47, "end": 2393.85, "word": " subclass", "probability": 0.85986328125}, {"start": 2393.85, "end": 2393.99, "word": " and", "probability": 0.7265625}, {"start": 2393.99, "end": 2394.27, "word": " use", "probability": 0.787109375}, {"start": 2394.27, "end": 2394.61, "word": " it.", "probability": 0.94580078125}, {"start": 2394.91, "end": 2395.31, "word": " And", "probability": 0.62060546875}, {"start": 2395.31, "end": 2395.51, "word": " we", "probability": 0.6259765625}, {"start": 2395.51, "end": 2395.51, "word": " live", "probability": 0.363525390625}, {"start": 2395.51, "end": 2395.61, "word": " our", "probability": 0.47021484375}, {"start": 2395.61, "end": 2395.85, "word": " life", "probability": 0.57080078125}, {"start": 2395.85, "end": 2396.15, "word": " happily.", "probability": 0.6357421875}, {"start": 2396.65, "end": 2396.79, "word": " But", "probability": 0.3466796875}, {"start": 2396.79, "end": 2397.11, "word": " wait,", "probability": 0.69482421875}, {"start": 2397.41, "end": 2397.59, "word": " we", "probability": 0.552734375}, {"start": 2397.59, "end": 2397.91, "word": " have", "probability": 0.79248046875}, {"start": 2397.91, "end": 2398.79, "word": " ten", "probability": 0.34423828125}, {"start": 2398.79, "end": 2399.25, "word": " other", "probability": 0.486083984375}, {"start": 2399.25, "end": 2400.21, "word": " output", "probability": 0.83740234375}, {"start": 2400.21, "end": 2400.49, "word": " streams.", "probability": 0.72509765625}, {"start": 2400.73, "end": 2401.17, "word": " So", "probability": 0.763671875}, {"start": 2401.17, "end": 2401.39, "word": " you", "probability": 0.7109375}, {"start": 2401.39, "end": 2401.47, "word": " will", "probability": 0.23486328125}, {"start": 2401.47, "end": 2401.71, "word": " have", "probability": 0.6884765625}, {"start": 2401.71, "end": 2401.83, "word": " to", "probability": 0.9677734375}, {"start": 2401.83, "end": 2401.99, "word": " go", "probability": 0.85595703125}, {"start": 2401.99, "end": 2402.11, "word": " to", "probability": 0.94482421875}, {"start": 2402.11, "end": 2402.23, "word": " the", "probability": 0.833984375}, {"start": 2402.23, "end": 2402.75, "word": " output", "probability": 0.453857421875}, {"start": 2402.75, "end": 2403.17, "word": " stream", "probability": 0.9267578125}, {"start": 2403.17, "end": 2403.17, "word": " socket", "probability": 0.4892578125}, {"start": 2403.17, "end": 2403.67, "word": " and", "probability": 0.5546875}, {"start": 2403.67, "end": 2403.99, "word": " create", "probability": 0.3779296875}, {"start": 2403.99, "end": 2404.41, "word": " a", "probability": 0.65966796875}, {"start": 2404.41, "end": 2404.51, "word": " new", "probability": 0.7705078125}, {"start": 2404.51, "end": 2404.93, "word": " subclass", "probability": 0.6685791015625}, {"start": 2404.93, "end": 2405.11, "word": " and", "probability": 0.52587890625}, {"start": 2405.11, "end": 2405.39, "word": " class,", "probability": 0.79443359375}, {"start": 2406.03, "end": 2406.27, "word": " and", "probability": 0.64111328125}, {"start": 2406.27, "end": 2406.55, "word": " create", "probability": 0.415771484375}, {"start": 2406.55, "end": 2406.79, "word": " a", "probability": 0.68701171875}, {"start": 2406.79, "end": 2407.37, "word": " print", "probability": 0.456298828125}, {"start": 2407.37, "end": 2407.63, "word": " method", "probability": 0.9541015625}, {"start": 2407.63, "end": 2407.63, "word": " in", "probability": 0.239501953125}, {"start": 2407.63, "end": 2407.63, "word": " it,", "probability": 0.91162109375}, {"start": 2408.27, "end": 2408.61, "word": " take", "probability": 0.66162109375}, {"start": 2408.61, "end": 2408.79, "word": " a", "probability": 0.483642578125}, {"start": 2408.79, "end": 2409.11, "word": " string,", "probability": 0.880859375}, {"start": 2409.79, "end": 2410.17, "word": " and", "probability": 0.77392578125}, {"start": 2410.17, "end": 2410.41, "word": " do", "probability": 0.55517578125}, {"start": 2410.41, "end": 2410.69, "word": " the", "probability": 0.9140625}, {"start": 2410.69, "end": 2410.69, "word": " same", "probability": 0.85888671875}, {"start": 2410.69, "end": 2411.35, "word": " conversion", "probability": 0.30126953125}, {"start": 2411.35, "end": 2411.53, "word": " process,", "probability": 0.66796875}, {"start": 2411.93, "end": 2412.07, "word": " and", "probability": 0.42578125}, {"start": 2412.07, "end": 2412.23, "word": " then", "probability": 0.72900390625}, {"start": 2412.23, "end": 2412.47, "word": " say", "probability": 0.311279296875}, {"start": 2412.47, "end": 2412.91, "word": " super,", "probability": 0.64892578125}], "temperature": 1.0}, {"id": 93, "seek": 244141, "start": 2416.33, "end": 2441.41, "text": ".WriteBytesToSocket() which is the method here or write bytes and give it to it to add the same feature to this one I had to do subclasses if I have ten output streams and this is what exists, types of output streams, there is a buffered output stream written on the memory each one has to do what? extend to add a new feature what is this story? every time I have an output stream", "tokens": [13, 54, 35002, 33, 43673, 13342, 50, 31380, 45191, 597, 307, 264, 3170, 510, 420, 2464, 36088, 293, 976, 309, 281, 309, 281, 909, 264, 912, 4111, 281, 341, 472, 286, 632, 281, 360, 1422, 11665, 279, 498, 286, 362, 2064, 5598, 15842, 293, 341, 307, 437, 8198, 11, 3467, 295, 5598, 15842, 11, 456, 307, 257, 9204, 4073, 5598, 4309, 3720, 322, 264, 4675, 1184, 472, 575, 281, 360, 437, 30, 10101, 281, 909, 257, 777, 4111, 437, 307, 341, 1657, 30, 633, 565, 286, 362, 364, 5598, 4309], "avg_logprob": -0.5329670159371345, "compression_ratio": 1.7720930232558139, "no_speech_prob": 2.4437904357910156e-06, "words": [{"start": 2416.33, "end": 2416.81, "word": ".WriteBytesToSocket", "probability": 0.6573028564453125}, {"start": 2416.81, "end": 2417.29, "word": "()", "probability": 0.404541015625}, {"start": 2417.29, "end": 2417.35, "word": " which", "probability": 0.11328125}, {"start": 2417.35, "end": 2417.89, "word": " is", "probability": 0.88232421875}, {"start": 2417.89, "end": 2417.91, "word": " the", "probability": 0.4541015625}, {"start": 2417.91, "end": 2418.13, "word": " method", "probability": 0.89599609375}, {"start": 2418.13, "end": 2418.61, "word": " here", "probability": 0.169189453125}, {"start": 2418.61, "end": 2419.85, "word": " or", "probability": 0.305419921875}, {"start": 2419.85, "end": 2420.01, "word": " write", "probability": 0.501953125}, {"start": 2420.01, "end": 2420.41, "word": " bytes", "probability": 0.92041015625}, {"start": 2420.41, "end": 2420.57, "word": " and", "probability": 0.7919921875}, {"start": 2420.57, "end": 2420.73, "word": " give", "probability": 0.101318359375}, {"start": 2420.73, "end": 2420.91, "word": " it", "probability": 0.6953125}, {"start": 2420.91, "end": 2420.99, "word": " to", "probability": 0.7353515625}, {"start": 2420.99, "end": 2421.23, "word": " it", "probability": 0.5556640625}, {"start": 2421.23, "end": 2421.95, "word": " to", "probability": 0.2034912109375}, {"start": 2421.95, "end": 2422.29, "word": " add", "probability": 0.8564453125}, {"start": 2422.29, "end": 2422.47, "word": " the", "probability": 0.497314453125}, {"start": 2422.47, "end": 2423.09, "word": " same", "probability": 0.6123046875}, {"start": 2423.09, "end": 2423.19, "word": " feature", "probability": 0.9287109375}, {"start": 2423.19, "end": 2424.39, "word": " to", "probability": 0.45556640625}, {"start": 2424.39, "end": 2424.75, "word": " this", "probability": 0.654296875}, {"start": 2424.75, "end": 2424.83, "word": " one", "probability": 0.46923828125}, {"start": 2424.83, "end": 2425.31, "word": " I", "probability": 0.49267578125}, {"start": 2425.31, "end": 2425.59, "word": " had", "probability": 0.431884765625}, {"start": 2425.59, "end": 2425.65, "word": " to", "probability": 0.9697265625}, {"start": 2425.65, "end": 2425.85, "word": " do", "probability": 0.39892578125}, {"start": 2425.85, "end": 2427.21, "word": " subclasses", "probability": 0.627197265625}, {"start": 2427.21, "end": 2427.69, "word": " if", "probability": 0.74072265625}, {"start": 2427.69, "end": 2427.95, "word": " I", "probability": 0.9443359375}, {"start": 2427.95, "end": 2427.97, "word": " have", "probability": 0.72802734375}, {"start": 2427.97, "end": 2428.23, "word": " ten", "probability": 0.415771484375}, {"start": 2428.23, "end": 2428.55, "word": " output", "probability": 0.951171875}, {"start": 2428.55, "end": 2428.81, "word": " streams", "probability": 0.9130859375}, {"start": 2428.81, "end": 2428.89, "word": " and", "probability": 0.5224609375}, {"start": 2428.89, "end": 2429.03, "word": " this", "probability": 0.5703125}, {"start": 2429.03, "end": 2429.09, "word": " is", "probability": 0.70849609375}, {"start": 2429.09, "end": 2429.13, "word": " what", "probability": 0.471923828125}, {"start": 2429.13, "end": 2429.53, "word": " exists,", "probability": 0.37353515625}, {"start": 2429.73, "end": 2430.09, "word": " types", "probability": 0.21044921875}, {"start": 2430.09, "end": 2430.25, "word": " of", "probability": 0.95849609375}, {"start": 2430.25, "end": 2430.51, "word": " output", "probability": 0.87255859375}, {"start": 2430.51, "end": 2430.81, "word": " streams,", "probability": 0.8408203125}, {"start": 2430.91, "end": 2431.07, "word": " there", "probability": 0.388916015625}, {"start": 2431.07, "end": 2431.09, "word": " is", "probability": 0.537109375}, {"start": 2431.09, "end": 2431.23, "word": " a", "probability": 0.7294921875}, {"start": 2431.23, "end": 2431.57, "word": " buffered", "probability": 0.720703125}, {"start": 2431.57, "end": 2431.91, "word": " output", "probability": 0.95166015625}, {"start": 2431.91, "end": 2432.23, "word": " stream", "probability": 0.9169921875}, {"start": 2432.23, "end": 2432.49, "word": " written", "probability": 0.5439453125}, {"start": 2432.49, "end": 2432.65, "word": " on", "probability": 0.8125}, {"start": 2432.65, "end": 2432.73, "word": " the", "probability": 0.6357421875}, {"start": 2432.73, "end": 2433.05, "word": " memory", "probability": 0.89599609375}, {"start": 2433.05, "end": 2435.17, "word": " each", "probability": 0.394287109375}, {"start": 2435.17, "end": 2435.49, "word": " one", "probability": 0.7509765625}, {"start": 2435.49, "end": 2435.65, "word": " has", "probability": 0.3427734375}, {"start": 2435.65, "end": 2435.91, "word": " to", "probability": 0.96826171875}, {"start": 2435.91, "end": 2436.11, "word": " do", "probability": 0.371826171875}, {"start": 2436.11, "end": 2436.47, "word": " what?", "probability": 0.81982421875}, {"start": 2437.03, "end": 2437.51, "word": " extend", "probability": 0.7392578125}, {"start": 2437.51, "end": 2437.77, "word": " to", "probability": 0.76904296875}, {"start": 2437.77, "end": 2438.03, "word": " add", "probability": 0.919921875}, {"start": 2438.03, "end": 2438.15, "word": " a", "probability": 0.744140625}, {"start": 2438.15, "end": 2438.71, "word": " new", "probability": 0.8955078125}, {"start": 2438.71, "end": 2438.71, "word": " feature", "probability": 0.4697265625}, {"start": 2438.71, "end": 2439.61, "word": " what", "probability": 0.230712890625}, {"start": 2439.61, "end": 2439.69, "word": " is", "probability": 0.806640625}, {"start": 2439.69, "end": 2439.79, "word": " this", "probability": 0.76904296875}, {"start": 2439.79, "end": 2440.03, "word": " story?", "probability": 0.78759765625}, {"start": 2440.15, "end": 2440.29, "word": " every", "probability": 0.288330078125}, {"start": 2440.29, "end": 2440.37, "word": " time", "probability": 0.775390625}, {"start": 2440.37, "end": 2440.57, "word": " I", "probability": 0.94091796875}, {"start": 2440.57, "end": 2440.71, "word": " have", "probability": 0.92529296875}, {"start": 2440.71, "end": 2440.83, "word": " an", "probability": 0.54345703125}, {"start": 2440.83, "end": 2441.01, "word": " output", "probability": 0.9765625}, {"start": 2441.01, "end": 2441.41, "word": " stream", "probability": 0.9580078125}], "temperature": 1.0}, {"id": 94, "seek": 246278, "start": 2442.84, "end": 2462.78, "text": "And in order to support her writing a string, I wanted to extend it to a new class to add this feature, and she said, no, we let you go She said, instead of making this class, and this class, and this class, we made one class, all of them with the name PrintWriter", "tokens": [5289, 294, 1668, 281, 1406, 720, 3579, 257, 6798, 11, 286, 1415, 281, 10101, 309, 281, 257, 777, 1508, 281, 909, 341, 4111, 11, 293, 750, 848, 11, 572, 11, 321, 718, 291, 352, 1240, 848, 11, 2602, 295, 1455, 341, 1508, 11, 293, 341, 1508, 11, 293, 341, 1508, 11, 321, 1027, 472, 1508, 11, 439, 295, 552, 365, 264, 1315, 34439, 54, 81, 1681], "avg_logprob": -0.6040111904713645, "compression_ratio": 1.6603773584905661, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 2442.84, "end": 2443.1, "word": "And", "probability": 0.268798828125}, {"start": 2443.1, "end": 2443.32, "word": " in", "probability": 0.2099609375}, {"start": 2443.32, "end": 2443.32, "word": " order", "probability": 0.9130859375}, {"start": 2443.32, "end": 2443.38, "word": " to", "probability": 0.86962890625}, {"start": 2443.38, "end": 2443.64, "word": " support", "probability": 0.58544921875}, {"start": 2443.64, "end": 2443.8, "word": " her", "probability": 0.338623046875}, {"start": 2443.8, "end": 2444.04, "word": " writing", "probability": 0.55810546875}, {"start": 2444.04, "end": 2444.26, "word": " a", "probability": 0.21923828125}, {"start": 2444.26, "end": 2444.54, "word": " string,", "probability": 0.455322265625}, {"start": 2444.72, "end": 2444.82, "word": " I", "probability": 0.50146484375}, {"start": 2444.82, "end": 2444.94, "word": " wanted", "probability": 0.1566162109375}, {"start": 2444.94, "end": 2445.32, "word": " to", "probability": 0.89208984375}, {"start": 2445.32, "end": 2445.66, "word": " extend", "probability": 0.56201171875}, {"start": 2445.66, "end": 2445.82, "word": " it", "probability": 0.174072265625}, {"start": 2445.82, "end": 2445.82, "word": " to", "probability": 0.6962890625}, {"start": 2445.82, "end": 2445.84, "word": " a", "probability": 0.58740234375}, {"start": 2445.84, "end": 2446.28, "word": " new", "probability": 0.84033203125}, {"start": 2446.28, "end": 2446.28, "word": " class", "probability": 0.94873046875}, {"start": 2446.28, "end": 2446.56, "word": " to", "probability": 0.383056640625}, {"start": 2446.56, "end": 2446.78, "word": " add", "probability": 0.81396484375}, {"start": 2446.78, "end": 2446.92, "word": " this", "probability": 0.7490234375}, {"start": 2446.92, "end": 2447.26, "word": " feature,", "probability": 0.85205078125}, {"start": 2447.72, "end": 2447.9, "word": " and", "probability": 0.53076171875}, {"start": 2447.9, "end": 2447.94, "word": " she", "probability": 0.471435546875}, {"start": 2447.94, "end": 2448.04, "word": " said,", "probability": 0.70947265625}, {"start": 2448.12, "end": 2448.2, "word": " no,", "probability": 0.318115234375}, {"start": 2448.28, "end": 2448.46, "word": " we", "probability": 0.7685546875}, {"start": 2448.46, "end": 2448.66, "word": " let", "probability": 0.1170654296875}, {"start": 2448.66, "end": 2449.02, "word": " you", "probability": 0.90625}, {"start": 2449.02, "end": 2449.02, "word": " go", "probability": 0.420166015625}, {"start": 2449.02, "end": 2449.92, "word": " She", "probability": 0.2425537109375}, {"start": 2449.92, "end": 2450.12, "word": " said,", "probability": 0.87158203125}, {"start": 2450.2, "end": 2450.48, "word": " instead", "probability": 0.59130859375}, {"start": 2450.48, "end": 2450.54, "word": " of", "probability": 0.96875}, {"start": 2450.54, "end": 2450.92, "word": " making", "probability": 0.45654296875}, {"start": 2450.92, "end": 2451.8, "word": " this", "probability": 0.356201171875}, {"start": 2451.8, "end": 2452.12, "word": " class,", "probability": 0.892578125}, {"start": 2452.2, "end": 2452.28, "word": " and", "probability": 0.476806640625}, {"start": 2452.28, "end": 2452.52, "word": " this", "probability": 0.77685546875}, {"start": 2452.52, "end": 2452.82, "word": " class,", "probability": 0.9013671875}, {"start": 2452.86, "end": 2452.96, "word": " and", "probability": 0.8828125}, {"start": 2452.96, "end": 2453.18, "word": " this", "probability": 0.88720703125}, {"start": 2453.18, "end": 2453.64, "word": " class,", "probability": 0.93603515625}, {"start": 2454.0, "end": 2454.38, "word": " we", "probability": 0.19921875}, {"start": 2454.38, "end": 2454.7, "word": " made", "probability": 0.611328125}, {"start": 2454.7, "end": 2455.56, "word": " one", "probability": 0.451904296875}, {"start": 2455.56, "end": 2455.78, "word": " class,", "probability": 0.939453125}, {"start": 2457.0, "end": 2457.64, "word": " all", "probability": 0.599609375}, {"start": 2457.64, "end": 2457.82, "word": " of", "probability": 0.865234375}, {"start": 2457.82, "end": 2457.94, "word": " them", "probability": 0.689453125}, {"start": 2457.94, "end": 2459.02, "word": " with", "probability": 0.20361328125}, {"start": 2459.02, "end": 2459.4, "word": " the", "probability": 0.49658203125}, {"start": 2459.4, "end": 2459.74, "word": " name", "probability": 0.87060546875}, {"start": 2459.74, "end": 2462.78, "word": " PrintWriter", "probability": 0.7882080078125}], "temperature": 1.0}, {"id": 95, "seek": 249121, "start": 2465.43, "end": 2491.21, "text": "Okay? How did they design this print writer? Inside it, it is wrapped with an object of the type of output stream. Just like we wrapped the circle or the shape, we wrapped it with what? With a border. The output stream was wrapped with what? Yes, with a print writer.", "tokens": [8297, 30, 1012, 630, 436, 1715, 341, 4482, 9936, 30, 15123, 309, 11, 309, 307, 14226, 365, 364, 2657, 295, 264, 2010, 295, 5598, 4309, 13, 1449, 411, 321, 14226, 264, 6329, 420, 264, 3909, 11, 321, 14226, 309, 365, 437, 30, 2022, 257, 7838, 13, 440, 5598, 4309, 390, 14226, 365, 437, 30, 1079, 11, 365, 257, 4482, 9936, 13], "avg_logprob": -0.5236895295881456, "compression_ratio": 1.6280487804878048, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 2465.4300000000003, "end": 2466.03, "word": "Okay?", "probability": 0.1436767578125}, {"start": 2466.77, "end": 2466.97, "word": " How", "probability": 0.291748046875}, {"start": 2466.97, "end": 2466.97, "word": " did", "probability": 0.3994140625}, {"start": 2466.97, "end": 2466.97, "word": " they", "probability": 0.7431640625}, {"start": 2466.97, "end": 2466.97, "word": " design", "probability": 0.89892578125}, {"start": 2466.97, "end": 2466.97, "word": " this", "probability": 0.29541015625}, {"start": 2466.97, "end": 2467.27, "word": " print", "probability": 0.630859375}, {"start": 2467.27, "end": 2467.67, "word": " writer?", "probability": 0.720703125}, {"start": 2469.43, "end": 2470.03, "word": " Inside", "probability": 0.60546875}, {"start": 2470.03, "end": 2470.65, "word": " it,", "probability": 0.50244140625}, {"start": 2470.65, "end": 2470.83, "word": " it", "probability": 0.58984375}, {"start": 2470.83, "end": 2470.95, "word": " is", "probability": 0.6806640625}, {"start": 2470.95, "end": 2471.23, "word": " wrapped", "probability": 0.454345703125}, {"start": 2471.23, "end": 2471.43, "word": " with", "probability": 0.5009765625}, {"start": 2471.43, "end": 2471.59, "word": " an", "probability": 0.60791015625}, {"start": 2471.59, "end": 2471.77, "word": " object", "probability": 0.8701171875}, {"start": 2471.77, "end": 2471.93, "word": " of", "probability": 0.7734375}, {"start": 2471.93, "end": 2472.27, "word": " the", "probability": 0.408203125}, {"start": 2472.27, "end": 2472.27, "word": " type", "probability": 0.491943359375}, {"start": 2472.27, "end": 2472.39, "word": " of", "probability": 0.36474609375}, {"start": 2472.39, "end": 2472.79, "word": " output", "probability": 0.71533203125}, {"start": 2472.79, "end": 2475.07, "word": " stream.", "probability": 0.71044921875}, {"start": 2476.59, "end": 2477.19, "word": " Just", "probability": 0.30810546875}, {"start": 2477.19, "end": 2477.31, "word": " like", "probability": 0.67626953125}, {"start": 2477.31, "end": 2477.67, "word": " we", "probability": 0.66796875}, {"start": 2477.67, "end": 2478.05, "word": " wrapped", "probability": 0.650390625}, {"start": 2478.05, "end": 2480.43, "word": " the", "probability": 0.6669921875}, {"start": 2480.43, "end": 2480.95, "word": " circle", "probability": 0.92333984375}, {"start": 2480.95, "end": 2481.65, "word": " or", "probability": 0.71728515625}, {"start": 2481.65, "end": 2481.79, "word": " the", "probability": 0.4423828125}, {"start": 2481.79, "end": 2482.81, "word": " shape,", "probability": 0.5478515625}, {"start": 2482.95, "end": 2483.13, "word": " we", "probability": 0.475341796875}, {"start": 2483.13, "end": 2483.35, "word": " wrapped", "probability": 0.83544921875}, {"start": 2483.35, "end": 2483.57, "word": " it", "probability": 0.8046875}, {"start": 2483.57, "end": 2483.71, "word": " with", "probability": 0.80810546875}, {"start": 2483.71, "end": 2483.91, "word": " what?", "probability": 0.501953125}, {"start": 2484.21, "end": 2484.69, "word": " With", "probability": 0.437255859375}, {"start": 2484.69, "end": 2484.77, "word": " a", "probability": 0.37548828125}, {"start": 2484.77, "end": 2484.99, "word": " border.", "probability": 0.81982421875}, {"start": 2486.43, "end": 2486.73, "word": " The", "probability": 0.1634521484375}, {"start": 2486.73, "end": 2487.13, "word": " output", "probability": 0.919921875}, {"start": 2487.13, "end": 2487.53, "word": " stream", "probability": 0.87939453125}, {"start": 2487.53, "end": 2487.67, "word": " was", "probability": 0.53759765625}, {"start": 2487.67, "end": 2487.85, "word": " wrapped", "probability": 0.7490234375}, {"start": 2487.85, "end": 2488.81, "word": " with", "probability": 0.7333984375}, {"start": 2488.81, "end": 2488.97, "word": " what?", "probability": 0.443115234375}, {"start": 2489.83, "end": 2490.17, "word": " Yes,", "probability": 0.5712890625}, {"start": 2490.49, "end": 2490.61, "word": " with", "probability": 0.70947265625}, {"start": 2490.61, "end": 2490.69, "word": " a", "probability": 0.75048828125}, {"start": 2490.69, "end": 2490.87, "word": " print", "probability": 0.93212890625}, {"start": 2490.87, "end": 2491.21, "word": " writer.", "probability": 0.90576171875}], "temperature": 1.0}, {"id": 96, "seek": 252137, "start": 2492.47, "end": 2521.37, "text": "And of course, he made a constructor. I'm sitting in this gate. Imagine how the print writer looks like. He made a constructor called printWriter. It takes an object from it and outputs a stream, which is OOS. To initialize to whom? To the OOS here. Okay? And then he made a new method. Here, public, void for example. Its name is printLin.", "tokens": [5289, 295, 1164, 11, 415, 1027, 257, 47479, 13, 286, 478, 3798, 294, 341, 8539, 13, 11739, 577, 264, 4482, 9936, 1542, 411, 13, 634, 1027, 257, 47479, 1219, 4482, 54, 81, 1681, 13, 467, 2516, 364, 2657, 490, 309, 293, 23930, 257, 4309, 11, 597, 307, 422, 4367, 13, 1407, 5883, 1125, 281, 7101, 30, 1407, 264, 422, 4367, 510, 13, 1033, 30, 400, 550, 415, 1027, 257, 777, 3170, 13, 1692, 11, 1908, 11, 22009, 337, 1365, 13, 6953, 1315, 307, 4482, 43, 259, 13], "avg_logprob": -0.5372869223356247, "compression_ratio": 1.5178571428571428, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2492.47, "end": 2492.69, "word": "And", "probability": 0.1943359375}, {"start": 2492.69, "end": 2492.87, "word": " of", "probability": 0.289306640625}, {"start": 2492.87, "end": 2492.99, "word": " course,", "probability": 0.94482421875}, {"start": 2493.19, "end": 2493.19, "word": " he", "probability": 0.607421875}, {"start": 2493.19, "end": 2493.19, "word": " made", "probability": 0.322021484375}, {"start": 2493.19, "end": 2493.39, "word": " a", "probability": 0.85498046875}, {"start": 2493.39, "end": 2493.89, "word": " constructor.", "probability": 0.79296875}, {"start": 2494.09, "end": 2494.57, "word": " I'm", "probability": 0.3980712890625}, {"start": 2494.57, "end": 2494.59, "word": " sitting", "probability": 0.2364501953125}, {"start": 2494.59, "end": 2494.73, "word": " in", "probability": 0.50927734375}, {"start": 2494.73, "end": 2494.83, "word": " this", "probability": 0.82666015625}, {"start": 2494.83, "end": 2495.09, "word": " gate.", "probability": 0.6455078125}, {"start": 2495.33, "end": 2495.81, "word": " Imagine", "probability": 0.55810546875}, {"start": 2495.81, "end": 2496.05, "word": " how", "probability": 0.63134765625}, {"start": 2496.05, "end": 2497.41, "word": " the", "probability": 0.186767578125}, {"start": 2497.41, "end": 2497.71, "word": " print", "probability": 0.70556640625}, {"start": 2497.71, "end": 2498.07, "word": " writer", "probability": 0.642578125}, {"start": 2498.07, "end": 2498.07, "word": " looks", "probability": 0.712890625}, {"start": 2498.07, "end": 2498.21, "word": " like.", "probability": 0.60888671875}, {"start": 2498.31, "end": 2498.59, "word": " He", "probability": 0.80078125}, {"start": 2498.59, "end": 2498.73, "word": " made", "probability": 0.78466796875}, {"start": 2498.73, "end": 2498.83, "word": " a", "probability": 0.9521484375}, {"start": 2498.83, "end": 2499.33, "word": " constructor", "probability": 0.80224609375}, {"start": 2499.33, "end": 2499.63, "word": " called", "probability": 0.463134765625}, {"start": 2499.63, "end": 2502.05, "word": " printWriter.", "probability": 0.7205810546875}, {"start": 2502.91, "end": 2503.39, "word": " It", "probability": 0.49609375}, {"start": 2503.39, "end": 2503.65, "word": " takes", "probability": 0.71875}, {"start": 2503.65, "end": 2503.83, "word": " an", "probability": 0.580078125}, {"start": 2503.83, "end": 2504.05, "word": " object", "probability": 0.93896484375}, {"start": 2504.05, "end": 2504.23, "word": " from", "probability": 0.51513671875}, {"start": 2504.23, "end": 2504.41, "word": " it", "probability": 0.814453125}, {"start": 2504.41, "end": 2504.67, "word": " and", "probability": 0.5107421875}, {"start": 2504.67, "end": 2504.97, "word": " outputs", "probability": 0.755859375}, {"start": 2504.97, "end": 2507.05, "word": " a", "probability": 0.55615234375}, {"start": 2507.05, "end": 2507.37, "word": " stream,", "probability": 0.6962890625}, {"start": 2507.59, "end": 2507.65, "word": " which", "probability": 0.84326171875}, {"start": 2507.65, "end": 2507.81, "word": " is", "probability": 0.931640625}, {"start": 2507.81, "end": 2508.21, "word": " OOS.", "probability": 0.2696533203125}, {"start": 2508.31, "end": 2508.49, "word": " To", "probability": 0.370361328125}, {"start": 2508.49, "end": 2509.43, "word": " initialize", "probability": 0.6734619140625}, {"start": 2509.43, "end": 2509.63, "word": " to", "probability": 0.26611328125}, {"start": 2509.63, "end": 2509.75, "word": " whom?", "probability": 0.59619140625}, {"start": 2510.17, "end": 2510.65, "word": " To", "probability": 0.82861328125}, {"start": 2510.65, "end": 2510.75, "word": " the", "probability": 0.369384765625}, {"start": 2510.75, "end": 2511.07, "word": " OOS", "probability": 0.86572265625}, {"start": 2511.07, "end": 2511.37, "word": " here.", "probability": 0.397216796875}, {"start": 2513.19, "end": 2513.43, "word": " Okay?", "probability": 0.21337890625}, {"start": 2513.85, "end": 2514.13, "word": " And", "probability": 0.7353515625}, {"start": 2514.13, "end": 2514.43, "word": " then", "probability": 0.80810546875}, {"start": 2514.43, "end": 2514.57, "word": " he", "probability": 0.7080078125}, {"start": 2514.57, "end": 2514.73, "word": " made", "probability": 0.78662109375}, {"start": 2514.73, "end": 2514.81, "word": " a", "probability": 0.91845703125}, {"start": 2514.81, "end": 2514.81, "word": " new", "probability": 0.91357421875}, {"start": 2514.81, "end": 2515.21, "word": " method.", "probability": 0.943359375}, {"start": 2516.19, "end": 2516.47, "word": " Here,", "probability": 0.5947265625}, {"start": 2516.67, "end": 2517.11, "word": " public,", "probability": 0.708984375}, {"start": 2517.39, "end": 2517.83, "word": " void", "probability": 0.861328125}, {"start": 2517.83, "end": 2517.99, "word": " for", "probability": 0.69189453125}, {"start": 2517.99, "end": 2518.25, "word": " example.", "probability": 0.9443359375}, {"start": 2518.75, "end": 2518.89, "word": " Its", "probability": 0.235107421875}, {"start": 2518.89, "end": 2519.07, "word": " name", "probability": 0.90625}, {"start": 2519.07, "end": 2519.19, "word": " is", "probability": 0.951171875}, {"start": 2519.19, "end": 2521.37, "word": " printLin.", "probability": 0.7791341145833334}], "temperature": 1.0}, {"id": 97, "seek": 255098, "start": 2522.93, "end": 2550.99, "text": "Okay? This thing takes a string. It needs to add a new property that takes the string and converts it to binary data and then comes to the output stream and tells it to write bytes. Am I right or not, guys? In this class, the output stream is enclosed. What is the advantage of this method? Because this output stream is the interface for whom? All their fathers.", "tokens": [8297, 30, 639, 551, 2516, 257, 6798, 13, 467, 2203, 281, 909, 257, 777, 4707, 300, 2516, 264, 6798, 293, 38874, 309, 281, 17434, 1412, 293, 550, 1487, 281, 264, 5598, 4309, 293, 5112, 309, 281, 2464, 36088, 13, 2012, 286, 558, 420, 406, 11, 1074, 30, 682, 341, 1508, 11, 264, 5598, 4309, 307, 42089, 13, 708, 307, 264, 5002, 295, 341, 3170, 30, 1436, 341, 5598, 4309, 307, 264, 9226, 337, 7101, 30, 1057, 641, 23450, 13], "avg_logprob": -0.519140613079071, "compression_ratio": 1.665137614678899, "no_speech_prob": 2.0265579223632812e-06, "words": [{"start": 2522.93, "end": 2523.25, "word": "Okay?", "probability": 0.1888427734375}, {"start": 2523.33, "end": 2523.49, "word": " This", "probability": 0.442626953125}, {"start": 2523.49, "end": 2523.65, "word": " thing", "probability": 0.418212890625}, {"start": 2523.65, "end": 2524.15, "word": " takes", "probability": 0.67529296875}, {"start": 2524.15, "end": 2525.15, "word": " a", "probability": 0.654296875}, {"start": 2525.15, "end": 2525.53, "word": " string.", "probability": 0.708984375}, {"start": 2526.73, "end": 2527.25, "word": " It", "probability": 0.5478515625}, {"start": 2527.25, "end": 2527.41, "word": " needs", "probability": 0.352294921875}, {"start": 2527.41, "end": 2527.47, "word": " to", "probability": 0.7841796875}, {"start": 2527.47, "end": 2527.63, "word": " add", "probability": 0.78076171875}, {"start": 2527.63, "end": 2527.75, "word": " a", "probability": 0.88916015625}, {"start": 2527.75, "end": 2528.27, "word": " new", "probability": 0.8798828125}, {"start": 2528.27, "end": 2528.27, "word": " property", "probability": 0.6005859375}, {"start": 2528.27, "end": 2528.57, "word": " that", "probability": 0.250732421875}, {"start": 2528.57, "end": 2528.87, "word": " takes", "probability": 0.50537109375}, {"start": 2528.87, "end": 2529.09, "word": " the", "probability": 0.732421875}, {"start": 2529.09, "end": 2529.49, "word": " string", "probability": 0.83740234375}, {"start": 2529.49, "end": 2530.23, "word": " and", "probability": 0.462646484375}, {"start": 2530.23, "end": 2530.53, "word": " converts", "probability": 0.46875}, {"start": 2530.53, "end": 2530.67, "word": " it", "probability": 0.931640625}, {"start": 2530.67, "end": 2530.75, "word": " to", "probability": 0.52978515625}, {"start": 2530.75, "end": 2531.05, "word": " binary", "probability": 0.71826171875}, {"start": 2531.05, "end": 2531.55, "word": " data", "probability": 0.9375}, {"start": 2531.55, "end": 2532.27, "word": " and", "probability": 0.37890625}, {"start": 2532.27, "end": 2532.57, "word": " then", "probability": 0.658203125}, {"start": 2532.57, "end": 2532.81, "word": " comes", "probability": 0.318359375}, {"start": 2532.81, "end": 2532.97, "word": " to", "probability": 0.91015625}, {"start": 2532.97, "end": 2533.07, "word": " the", "probability": 0.79443359375}, {"start": 2533.07, "end": 2533.35, "word": " output", "probability": 0.94921875}, {"start": 2533.35, "end": 2533.87, "word": " stream", "probability": 0.9248046875}, {"start": 2533.87, "end": 2535.39, "word": " and", "probability": 0.79296875}, {"start": 2535.39, "end": 2535.61, "word": " tells", "probability": 0.285400390625}, {"start": 2535.61, "end": 2535.71, "word": " it", "probability": 0.85791015625}, {"start": 2535.71, "end": 2535.77, "word": " to", "probability": 0.67041015625}, {"start": 2535.77, "end": 2536.11, "word": " write", "probability": 0.8857421875}, {"start": 2536.11, "end": 2537.43, "word": " bytes.", "probability": 0.91943359375}, {"start": 2541.49, "end": 2542.01, "word": " Am", "probability": 0.173828125}, {"start": 2542.01, "end": 2542.07, "word": " I", "probability": 0.91162109375}, {"start": 2542.07, "end": 2542.13, "word": " right", "probability": 0.8896484375}, {"start": 2542.13, "end": 2542.33, "word": " or", "probability": 0.55224609375}, {"start": 2542.33, "end": 2542.35, "word": " not,", "probability": 0.783203125}, {"start": 2542.45, "end": 2542.57, "word": " guys?", "probability": 0.77392578125}, {"start": 2543.01, "end": 2543.13, "word": " In", "probability": 0.56884765625}, {"start": 2543.13, "end": 2543.39, "word": " this", "probability": 0.87646484375}, {"start": 2543.39, "end": 2543.75, "word": " class,", "probability": 0.9580078125}, {"start": 2543.85, "end": 2544.37, "word": " the", "probability": 0.669921875}, {"start": 2544.37, "end": 2544.63, "word": " output", "probability": 0.93505859375}, {"start": 2544.63, "end": 2544.99, "word": " stream", "probability": 0.78466796875}, {"start": 2544.99, "end": 2544.99, "word": " is", "probability": 0.318603515625}, {"start": 2544.99, "end": 2544.99, "word": " enclosed.", "probability": 0.07843017578125}, {"start": 2545.81, "end": 2546.07, "word": " What", "probability": 0.86083984375}, {"start": 2546.07, "end": 2546.09, "word": " is", "probability": 0.63818359375}, {"start": 2546.09, "end": 2546.21, "word": " the", "probability": 0.61328125}, {"start": 2546.21, "end": 2546.39, "word": " advantage", "probability": 0.302978515625}, {"start": 2546.39, "end": 2546.53, "word": " of", "probability": 0.625}, {"start": 2546.53, "end": 2546.61, "word": " this", "probability": 0.9267578125}, {"start": 2546.61, "end": 2546.95, "word": " method?", "probability": 0.6708984375}, {"start": 2547.53, "end": 2547.81, "word": " Because", "probability": 0.177978515625}, {"start": 2547.81, "end": 2547.93, "word": " this", "probability": 0.5400390625}, {"start": 2547.93, "end": 2548.19, "word": " output", "probability": 0.8583984375}, {"start": 2548.19, "end": 2548.57, "word": " stream", "probability": 0.92236328125}, {"start": 2548.57, "end": 2548.91, "word": " is", "probability": 0.53173828125}, {"start": 2548.91, "end": 2549.03, "word": " the", "probability": 0.57861328125}, {"start": 2549.03, "end": 2549.63, "word": " interface", "probability": 0.859375}, {"start": 2549.63, "end": 2549.83, "word": " for", "probability": 0.5322265625}, {"start": 2549.83, "end": 2550.03, "word": " whom?", "probability": 0.2666015625}, {"start": 2550.39, "end": 2550.77, "word": " All", "probability": 0.369384765625}, {"start": 2550.77, "end": 2550.99, "word": " their", "probability": 0.65869140625}, {"start": 2550.99, "end": 2550.99, "word": " fathers.", "probability": 0.6962890625}], "temperature": 1.0}, {"id": 98, "seek": 258083, "start": 2552.73, "end": 2580.83, "text": "You can create an object from the print writer and send it a file output stream, socket output stream, buffered output stream, whatever output stream. And all of them execute a print train. This gives you a new feature, which is the ability to write texts on the output stream regardless of the type of output stream. This means that this print writer is a wrapper", "tokens": [3223, 393, 1884, 364, 2657, 490, 264, 4482, 9936, 293, 2845, 309, 257, 3991, 5598, 4309, 11, 19741, 5598, 4309, 11, 9204, 4073, 5598, 4309, 11, 2035, 5598, 4309, 13, 400, 439, 295, 552, 14483, 257, 4482, 3847, 13, 639, 2709, 291, 257, 777, 4111, 11, 597, 307, 264, 3485, 281, 2464, 15765, 322, 264, 5598, 4309, 10060, 295, 264, 2010, 295, 5598, 4309, 13, 639, 1355, 300, 341, 4482, 9936, 307, 257, 46906], "avg_logprob": -0.4687499944368998, "compression_ratio": 1.829145728643216, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 2552.73, "end": 2553.45, "word": "You", "probability": 0.11767578125}, {"start": 2553.45, "end": 2554.07, "word": " can", "probability": 0.79248046875}, {"start": 2554.07, "end": 2554.35, "word": " create", "probability": 0.70654296875}, {"start": 2554.35, "end": 2554.55, "word": " an", "probability": 0.76220703125}, {"start": 2554.55, "end": 2554.75, "word": " object", "probability": 0.96337890625}, {"start": 2554.75, "end": 2554.99, "word": " from", "probability": 0.736328125}, {"start": 2554.99, "end": 2555.13, "word": " the", "probability": 0.4169921875}, {"start": 2555.13, "end": 2555.35, "word": " print", "probability": 0.76953125}, {"start": 2555.35, "end": 2555.77, "word": " writer", "probability": 0.5654296875}, {"start": 2555.77, "end": 2556.43, "word": " and", "probability": 0.63232421875}, {"start": 2556.43, "end": 2556.67, "word": " send", "probability": 0.52001953125}, {"start": 2556.67, "end": 2556.95, "word": " it", "probability": 0.75390625}, {"start": 2556.95, "end": 2557.77, "word": " a", "probability": 0.313720703125}, {"start": 2557.77, "end": 2558.01, "word": " file", "probability": 0.64697265625}, {"start": 2558.01, "end": 2558.33, "word": " output", "probability": 0.89306640625}, {"start": 2558.33, "end": 2558.69, "word": " stream,", "probability": 0.9228515625}, {"start": 2559.09, "end": 2559.69, "word": " socket", "probability": 0.6787109375}, {"start": 2559.69, "end": 2560.09, "word": " output", "probability": 0.9365234375}, {"start": 2560.09, "end": 2560.53, "word": " stream,", "probability": 0.94287109375}, {"start": 2561.19, "end": 2561.61, "word": " buffered", "probability": 0.66748046875}, {"start": 2561.61, "end": 2561.93, "word": " output", "probability": 0.93896484375}, {"start": 2561.93, "end": 2562.43, "word": " stream,", "probability": 0.95068359375}, {"start": 2563.01, "end": 2563.33, "word": " whatever", "probability": 0.802734375}, {"start": 2563.33, "end": 2563.71, "word": " output", "probability": 0.9150390625}, {"start": 2563.71, "end": 2564.13, "word": " stream.", "probability": 0.94482421875}, {"start": 2565.07, "end": 2565.21, "word": " And", "probability": 0.5498046875}, {"start": 2565.21, "end": 2565.67, "word": " all", "probability": 0.381591796875}, {"start": 2565.67, "end": 2565.91, "word": " of", "probability": 0.7421875}, {"start": 2565.91, "end": 2565.91, "word": " them", "probability": 0.73779296875}, {"start": 2565.91, "end": 2566.53, "word": " execute", "probability": 0.31787109375}, {"start": 2566.53, "end": 2567.65, "word": " a", "probability": 0.481689453125}, {"start": 2567.65, "end": 2567.93, "word": " print", "probability": 0.59130859375}, {"start": 2567.93, "end": 2568.17, "word": " train.", "probability": 0.158447265625}, {"start": 2568.69, "end": 2569.19, "word": " This", "probability": 0.260009765625}, {"start": 2569.19, "end": 2569.41, "word": " gives", "probability": 0.1920166015625}, {"start": 2569.41, "end": 2569.85, "word": " you", "probability": 0.87158203125}, {"start": 2569.85, "end": 2569.89, "word": " a", "probability": 0.79736328125}, {"start": 2569.89, "end": 2569.89, "word": " new", "probability": 0.8486328125}, {"start": 2569.89, "end": 2570.35, "word": " feature,", "probability": 0.5361328125}, {"start": 2570.85, "end": 2570.89, "word": " which", "probability": 0.73486328125}, {"start": 2570.89, "end": 2571.05, "word": " is", "probability": 0.67626953125}, {"start": 2571.05, "end": 2571.15, "word": " the", "probability": 0.77099609375}, {"start": 2571.15, "end": 2571.51, "word": " ability", "probability": 0.82470703125}, {"start": 2571.51, "end": 2571.71, "word": " to", "probability": 0.96240234375}, {"start": 2571.71, "end": 2571.97, "word": " write", "probability": 0.8896484375}, {"start": 2571.97, "end": 2572.45, "word": " texts", "probability": 0.72900390625}, {"start": 2572.45, "end": 2572.67, "word": " on", "probability": 0.767578125}, {"start": 2572.67, "end": 2572.75, "word": " the", "probability": 0.68310546875}, {"start": 2572.75, "end": 2573.01, "word": " output", "probability": 0.9423828125}, {"start": 2573.01, "end": 2573.57, "word": " stream", "probability": 0.9521484375}, {"start": 2573.57, "end": 2574.25, "word": " regardless", "probability": 0.52197265625}, {"start": 2574.25, "end": 2574.71, "word": " of", "probability": 0.9658203125}, {"start": 2574.71, "end": 2574.73, "word": " the", "probability": 0.432373046875}, {"start": 2574.73, "end": 2574.89, "word": " type", "probability": 0.35888671875}, {"start": 2574.89, "end": 2575.01, "word": " of", "probability": 0.95947265625}, {"start": 2575.01, "end": 2575.41, "word": " output", "probability": 0.8017578125}, {"start": 2575.41, "end": 2576.57, "word": " stream.", "probability": 0.91796875}, {"start": 2577.15, "end": 2577.63, "word": " This", "probability": 0.296142578125}, {"start": 2577.63, "end": 2577.63, "word": " means", "probability": 0.42236328125}, {"start": 2577.63, "end": 2578.43, "word": " that", "probability": 0.83447265625}, {"start": 2578.43, "end": 2579.17, "word": " this", "probability": 0.751953125}, {"start": 2579.17, "end": 2579.59, "word": " print", "probability": 0.919921875}, {"start": 2579.59, "end": 2579.99, "word": " writer", "probability": 0.86328125}, {"start": 2579.99, "end": 2580.15, "word": " is", "probability": 0.89208984375}, {"start": 2580.15, "end": 2580.53, "word": " a", "probability": 0.325439453125}, {"start": 2580.53, "end": 2580.83, "word": " wrapper", "probability": 0.94482421875}], "temperature": 1.0}, {"id": 99, "seek": 260858, "start": 2582.6, "end": 2608.58, "text": "to the output stream to add to it the ability to write texts. Why did they do it this way? They used to tell you to memorize it this way. Why? That's it. Make a file output stream and make a print writer and pass this to this. Actually, this is an addition of a feature to whom? To the object that you pass here. Without this method, I had to add this feature to make a subclass for each", "tokens": [1353, 264, 5598, 4309, 281, 909, 281, 309, 264, 3485, 281, 2464, 15765, 13, 1545, 630, 436, 360, 309, 341, 636, 30, 814, 1143, 281, 980, 291, 281, 27478, 309, 341, 636, 13, 1545, 30, 663, 311, 309, 13, 4387, 257, 3991, 5598, 4309, 293, 652, 257, 4482, 9936, 293, 1320, 341, 281, 341, 13, 5135, 11, 341, 307, 364, 4500, 295, 257, 4111, 281, 7101, 30, 1407, 264, 2657, 300, 291, 1320, 510, 13, 9129, 341, 3170, 11, 286, 632, 281, 909, 341, 4111, 281, 652, 257, 1422, 11665, 337, 1184], "avg_logprob": -0.4700940937124273, "compression_ratio": 1.751131221719457, "no_speech_prob": 1.5079975128173828e-05, "words": [{"start": 2582.6, "end": 2583.08, "word": "to", "probability": 0.1361083984375}, {"start": 2583.08, "end": 2583.56, "word": " the", "probability": 0.36572265625}, {"start": 2583.56, "end": 2583.9, "word": " output", "probability": 0.80029296875}, {"start": 2583.9, "end": 2584.34, "word": " stream", "probability": 0.92138671875}, {"start": 2584.34, "end": 2584.58, "word": " to", "probability": 0.54833984375}, {"start": 2584.58, "end": 2584.92, "word": " add", "probability": 0.53515625}, {"start": 2584.92, "end": 2585.08, "word": " to", "probability": 0.2049560546875}, {"start": 2585.08, "end": 2585.24, "word": " it", "probability": 0.8701171875}, {"start": 2585.24, "end": 2585.44, "word": " the", "probability": 0.6943359375}, {"start": 2585.44, "end": 2585.86, "word": " ability", "probability": 0.45654296875}, {"start": 2585.86, "end": 2586.08, "word": " to", "probability": 0.8623046875}, {"start": 2586.08, "end": 2586.44, "word": " write", "probability": 0.8427734375}, {"start": 2586.44, "end": 2587.82, "word": " texts.", "probability": 0.6201171875}, {"start": 2588.38, "end": 2588.82, "word": " Why", "probability": 0.607421875}, {"start": 2588.82, "end": 2589.0, "word": " did", "probability": 0.65771484375}, {"start": 2589.0, "end": 2589.12, "word": " they", "probability": 0.58154296875}, {"start": 2589.12, "end": 2589.12, "word": " do", "probability": 0.85205078125}, {"start": 2589.12, "end": 2589.18, "word": " it", "probability": 0.740234375}, {"start": 2589.18, "end": 2589.32, "word": " this", "probability": 0.4853515625}, {"start": 2589.32, "end": 2589.4, "word": " way?", "probability": 0.95654296875}, {"start": 2589.5, "end": 2589.6, "word": " They", "probability": 0.238525390625}, {"start": 2589.6, "end": 2589.7, "word": " used", "probability": 0.6376953125}, {"start": 2589.7, "end": 2589.7, "word": " to", "probability": 0.970703125}, {"start": 2589.7, "end": 2589.8, "word": " tell", "probability": 0.6005859375}, {"start": 2589.8, "end": 2589.92, "word": " you", "probability": 0.88525390625}, {"start": 2589.92, "end": 2590.18, "word": " to", "probability": 0.487548828125}, {"start": 2590.18, "end": 2590.38, "word": " memorize", "probability": 0.482666015625}, {"start": 2590.38, "end": 2590.58, "word": " it", "probability": 0.345458984375}, {"start": 2590.58, "end": 2590.62, "word": " this", "probability": 0.428955078125}, {"start": 2590.62, "end": 2590.62, "word": " way.", "probability": 0.94482421875}, {"start": 2590.98, "end": 2591.46, "word": " Why?", "probability": 0.44384765625}, {"start": 2591.74, "end": 2592.14, "word": " That's", "probability": 0.5738525390625}, {"start": 2592.14, "end": 2592.14, "word": " it.", "probability": 0.6171875}, {"start": 2592.68, "end": 2593.14, "word": " Make", "probability": 0.374755859375}, {"start": 2593.14, "end": 2593.32, "word": " a", "probability": 0.438720703125}, {"start": 2593.32, "end": 2593.4, "word": " file", "probability": 0.70947265625}, {"start": 2593.4, "end": 2593.62, "word": " output", "probability": 0.6474609375}, {"start": 2593.62, "end": 2594.06, "word": " stream", "probability": 0.943359375}, {"start": 2594.06, "end": 2594.46, "word": " and", "probability": 0.4794921875}, {"start": 2594.46, "end": 2594.62, "word": " make", "probability": 0.345947265625}, {"start": 2594.62, "end": 2594.74, "word": " a", "probability": 0.7646484375}, {"start": 2594.74, "end": 2594.9, "word": " print", "probability": 0.92333984375}, {"start": 2594.9, "end": 2595.26, "word": " writer", "probability": 0.81591796875}, {"start": 2595.26, "end": 2595.46, "word": " and", "probability": 0.7568359375}, {"start": 2595.46, "end": 2595.6, "word": " pass", "probability": 0.65869140625}, {"start": 2595.6, "end": 2595.84, "word": " this", "probability": 0.255859375}, {"start": 2595.84, "end": 2595.94, "word": " to", "probability": 0.5341796875}, {"start": 2595.94, "end": 2596.18, "word": " this.", "probability": 0.74267578125}, {"start": 2597.44, "end": 2597.92, "word": " Actually,", "probability": 0.393310546875}, {"start": 2598.1, "end": 2598.36, "word": " this", "probability": 0.845703125}, {"start": 2598.36, "end": 2598.68, "word": " is", "probability": 0.8818359375}, {"start": 2598.68, "end": 2598.86, "word": " an", "probability": 0.278564453125}, {"start": 2598.86, "end": 2599.12, "word": " addition", "probability": 0.888671875}, {"start": 2599.12, "end": 2599.34, "word": " of", "probability": 0.896484375}, {"start": 2599.34, "end": 2599.48, "word": " a", "probability": 0.450927734375}, {"start": 2599.48, "end": 2599.78, "word": " feature", "probability": 0.9541015625}, {"start": 2599.78, "end": 2600.14, "word": " to", "probability": 0.6357421875}, {"start": 2600.14, "end": 2600.32, "word": " whom?", "probability": 0.75634765625}, {"start": 2600.72, "end": 2601.2, "word": " To", "probability": 0.841796875}, {"start": 2601.2, "end": 2601.3, "word": " the", "probability": 0.8984375}, {"start": 2601.3, "end": 2601.56, "word": " object", "probability": 0.9443359375}, {"start": 2601.56, "end": 2601.7, "word": " that", "probability": 0.50634765625}, {"start": 2601.7, "end": 2601.8, "word": " you", "probability": 0.2353515625}, {"start": 2601.8, "end": 2602.0, "word": " pass", "probability": 0.54541015625}, {"start": 2602.0, "end": 2602.3, "word": " here.", "probability": 0.71533203125}, {"start": 2603.66, "end": 2603.96, "word": " Without", "probability": 0.9306640625}, {"start": 2603.96, "end": 2604.12, "word": " this", "probability": 0.9130859375}, {"start": 2604.12, "end": 2604.5, "word": " method,", "probability": 0.7861328125}, {"start": 2604.76, "end": 2604.9, "word": " I", "probability": 0.93212890625}, {"start": 2604.9, "end": 2604.9, "word": " had", "probability": 0.85986328125}, {"start": 2604.9, "end": 2605.38, "word": " to", "probability": 0.97265625}, {"start": 2605.38, "end": 2606.2, "word": " add", "probability": 0.395263671875}, {"start": 2606.2, "end": 2606.56, "word": " this", "probability": 0.72509765625}, {"start": 2606.56, "end": 2606.88, "word": " feature", "probability": 0.93212890625}, {"start": 2606.88, "end": 2607.16, "word": " to", "probability": 0.6396484375}, {"start": 2607.16, "end": 2607.42, "word": " make", "probability": 0.638671875}, {"start": 2607.42, "end": 2607.58, "word": " a", "probability": 0.72998046875}, {"start": 2607.58, "end": 2608.04, "word": " subclass", "probability": 0.9189453125}, {"start": 2608.04, "end": 2608.24, "word": " for", "probability": 0.6953125}, {"start": 2608.24, "end": 2608.58, "word": " each", "probability": 0.5478515625}], "temperature": 1.0}, {"id": 100, "seek": 263783, "start": 2609.37, "end": 2637.83, "text": "output stream is present on it. So this is really an application for whom? For the decorator. Any output stream that connects them together, and in reading too, connects them together, this is all an application for whom, guys? For the decorator. It connects together and you don't know what it is. No, did you get the idea that this is an application for whom? For the decorator. And we understood why they did that. I could also tell you to make an object out of this class and write on it.", "tokens": [346, 2582, 4309, 307, 1974, 322, 309, 13, 407, 341, 307, 534, 364, 3861, 337, 7101, 30, 1171, 264, 7919, 1639, 13, 2639, 5598, 4309, 300, 16967, 552, 1214, 11, 293, 294, 3760, 886, 11, 16967, 552, 1214, 11, 341, 307, 439, 364, 3861, 337, 7101, 11, 1074, 30, 1171, 264, 7919, 1639, 13, 467, 16967, 1214, 293, 291, 500, 380, 458, 437, 309, 307, 13, 883, 11, 630, 291, 483, 264, 1558, 300, 341, 307, 364, 3861, 337, 7101, 30, 1171, 264, 7919, 1639, 13, 400, 321, 7320, 983, 436, 630, 300, 13, 286, 727, 611, 980, 291, 281, 652, 364, 2657, 484, 295, 341, 1508, 293, 2464, 322, 309, 13], "avg_logprob": -0.4781526548672566, "compression_ratio": 2.0246913580246915, "no_speech_prob": 2.9087066650390625e-05, "words": [{"start": 2609.37, "end": 2609.81, "word": "output", "probability": 0.549072265625}, {"start": 2609.81, "end": 2610.05, "word": " stream", "probability": 0.865234375}, {"start": 2610.05, "end": 2610.21, "word": " is", "probability": 0.34716796875}, {"start": 2610.21, "end": 2610.39, "word": " present", "probability": 0.2403564453125}, {"start": 2610.39, "end": 2610.53, "word": " on", "probability": 0.272705078125}, {"start": 2610.53, "end": 2610.69, "word": " it.", "probability": 0.66162109375}, {"start": 2611.27, "end": 2611.33, "word": " So", "probability": 0.56201171875}, {"start": 2611.33, "end": 2611.49, "word": " this", "probability": 0.5048828125}, {"start": 2611.49, "end": 2611.59, "word": " is", "probability": 0.73291015625}, {"start": 2611.59, "end": 2611.87, "word": " really", "probability": 0.328857421875}, {"start": 2611.87, "end": 2612.11, "word": " an", "probability": 0.51708984375}, {"start": 2612.11, "end": 2612.39, "word": " application", "probability": 0.86962890625}, {"start": 2612.39, "end": 2612.57, "word": " for", "probability": 0.595703125}, {"start": 2612.57, "end": 2612.75, "word": " whom?", "probability": 0.6416015625}, {"start": 2614.49, "end": 2614.93, "word": " For", "probability": 0.489501953125}, {"start": 2614.93, "end": 2615.03, "word": " the", "probability": 0.81103515625}, {"start": 2615.03, "end": 2615.47, "word": " decorator.", "probability": 0.921630859375}, {"start": 2615.59, "end": 2615.89, "word": " Any", "probability": 0.7939453125}, {"start": 2615.89, "end": 2616.39, "word": " output", "probability": 0.87060546875}, {"start": 2616.39, "end": 2616.79, "word": " stream", "probability": 0.9267578125}, {"start": 2616.79, "end": 2616.97, "word": " that", "probability": 0.388671875}, {"start": 2616.97, "end": 2617.29, "word": " connects", "probability": 0.250732421875}, {"start": 2617.29, "end": 2617.49, "word": " them", "probability": 0.7568359375}, {"start": 2617.49, "end": 2617.83, "word": " together,", "probability": 0.56396484375}, {"start": 2618.11, "end": 2618.43, "word": " and", "probability": 0.48974609375}, {"start": 2618.43, "end": 2618.53, "word": " in", "probability": 0.44677734375}, {"start": 2618.53, "end": 2618.95, "word": " reading", "probability": 0.76318359375}, {"start": 2618.95, "end": 2619.35, "word": " too,", "probability": 0.26123046875}, {"start": 2619.55, "end": 2619.81, "word": " connects", "probability": 0.39453125}, {"start": 2619.81, "end": 2620.03, "word": " them", "probability": 0.869140625}, {"start": 2620.03, "end": 2620.43, "word": " together,", "probability": 0.81396484375}, {"start": 2620.55, "end": 2620.71, "word": " this", "probability": 0.425048828125}, {"start": 2620.71, "end": 2620.85, "word": " is", "probability": 0.85595703125}, {"start": 2620.85, "end": 2620.97, "word": " all", "probability": 0.72509765625}, {"start": 2620.97, "end": 2621.33, "word": " an", "probability": 0.6728515625}, {"start": 2621.33, "end": 2621.63, "word": " application", "probability": 0.89990234375}, {"start": 2621.63, "end": 2621.83, "word": " for", "probability": 0.76953125}, {"start": 2621.83, "end": 2621.97, "word": " whom,", "probability": 0.8779296875}, {"start": 2622.05, "end": 2622.21, "word": " guys?", "probability": 0.75830078125}, {"start": 2622.79, "end": 2623.01, "word": " For", "probability": 0.89306640625}, {"start": 2623.01, "end": 2623.11, "word": " the", "probability": 0.8798828125}, {"start": 2623.11, "end": 2623.49, "word": " decorator.", "probability": 0.984375}, {"start": 2623.73, "end": 2623.99, "word": " It", "probability": 0.196044921875}, {"start": 2623.99, "end": 2624.13, "word": " connects", "probability": 0.6650390625}, {"start": 2624.13, "end": 2624.75, "word": " together", "probability": 0.312744140625}, {"start": 2624.75, "end": 2624.93, "word": " and", "probability": 0.462158203125}, {"start": 2624.93, "end": 2625.11, "word": " you", "probability": 0.66015625}, {"start": 2625.11, "end": 2625.67, "word": " don't", "probability": 0.6351318359375}, {"start": 2625.67, "end": 2626.47, "word": " know", "probability": 0.845703125}, {"start": 2626.47, "end": 2626.63, "word": " what", "probability": 0.8662109375}, {"start": 2626.63, "end": 2626.79, "word": " it", "probability": 0.35986328125}, {"start": 2626.79, "end": 2626.79, "word": " is.", "probability": 0.9091796875}, {"start": 2626.87, "end": 2627.01, "word": " No,", "probability": 0.58056640625}, {"start": 2627.05, "end": 2627.19, "word": " did", "probability": 0.333984375}, {"start": 2627.19, "end": 2627.55, "word": " you", "probability": 0.96533203125}, {"start": 2627.55, "end": 2627.79, "word": " get", "probability": 0.58056640625}, {"start": 2627.79, "end": 2627.93, "word": " the", "probability": 0.50048828125}, {"start": 2627.93, "end": 2628.17, "word": " idea", "probability": 0.87109375}, {"start": 2628.17, "end": 2628.39, "word": " that", "probability": 0.88525390625}, {"start": 2628.39, "end": 2628.53, "word": " this", "probability": 0.8564453125}, {"start": 2628.53, "end": 2628.61, "word": " is", "probability": 0.85205078125}, {"start": 2628.61, "end": 2628.95, "word": " an", "probability": 0.7861328125}, {"start": 2628.95, "end": 2629.25, "word": " application", "probability": 0.8955078125}, {"start": 2629.25, "end": 2629.47, "word": " for", "probability": 0.83837890625}, {"start": 2629.47, "end": 2629.61, "word": " whom?", "probability": 0.87158203125}, {"start": 2630.05, "end": 2630.43, "word": " For", "probability": 0.92822265625}, {"start": 2630.43, "end": 2630.51, "word": " the", "probability": 0.900390625}, {"start": 2630.51, "end": 2630.95, "word": " decorator.", "probability": 0.99072265625}, {"start": 2631.03, "end": 2631.15, "word": " And", "probability": 0.80126953125}, {"start": 2631.15, "end": 2631.43, "word": " we", "probability": 0.80322265625}, {"start": 2631.43, "end": 2631.43, "word": " understood", "probability": 0.43701171875}, {"start": 2631.43, "end": 2631.69, "word": " why", "probability": 0.91552734375}, {"start": 2631.69, "end": 2631.89, "word": " they", "probability": 0.85693359375}, {"start": 2631.89, "end": 2632.13, "word": " did", "probability": 0.92822265625}, {"start": 2632.13, "end": 2632.39, "word": " that.", "probability": 0.400634765625}, {"start": 2634.05, "end": 2634.31, "word": " I", "probability": 0.445556640625}, {"start": 2634.31, "end": 2634.45, "word": " could", "probability": 0.58447265625}, {"start": 2634.45, "end": 2634.57, "word": " also", "probability": 0.22119140625}, {"start": 2634.57, "end": 2634.79, "word": " tell", "probability": 0.2291259765625}, {"start": 2634.79, "end": 2635.17, "word": " you", "probability": 0.86572265625}, {"start": 2635.17, "end": 2635.25, "word": " to", "probability": 0.83447265625}, {"start": 2635.25, "end": 2635.37, "word": " make", "probability": 0.607421875}, {"start": 2635.37, "end": 2635.49, "word": " an", "probability": 0.72802734375}, {"start": 2635.49, "end": 2635.65, "word": " object", "probability": 0.9775390625}, {"start": 2635.65, "end": 2635.87, "word": " out", "probability": 0.257080078125}, {"start": 2635.87, "end": 2635.87, "word": " of", "probability": 0.97314453125}, {"start": 2635.87, "end": 2636.15, "word": " this", "probability": 0.67822265625}, {"start": 2636.15, "end": 2637.01, "word": " class", "probability": 0.1766357421875}, {"start": 2637.01, "end": 2637.17, "word": " and", "probability": 0.7939453125}, {"start": 2637.17, "end": 2637.45, "word": " write", "probability": 0.82568359375}, {"start": 2637.45, "end": 2637.57, "word": " on", "probability": 0.2281494140625}, {"start": 2637.57, "end": 2637.83, "word": " it.", "probability": 0.93017578125}], "temperature": 1.0}, {"id": 101, "seek": 266321, "start": 2638.39, "end": 2663.21, "text": "So why do I connect this with this with this? To add new features to each existing object. Because without this, it would have to appear in a large number of subclasses. Another example, in the java.fx that you use, I'm sure you've taken it. What's the name of the text area? Text area, and there's a text field, and there's a tab, and there's I don't know what. You'd like to add a border to any of these.", "tokens": [6455, 983, 360, 286, 1745, 341, 365, 341, 365, 341, 30, 1407, 909, 777, 4122, 281, 1184, 6741, 2657, 13, 1436, 1553, 341, 11, 309, 576, 362, 281, 4204, 294, 257, 2416, 1230, 295, 1422, 11665, 279, 13, 3996, 1365, 11, 294, 264, 361, 4061, 13, 69, 87, 300, 291, 764, 11, 286, 478, 988, 291, 600, 2726, 309, 13, 708, 311, 264, 1315, 295, 264, 2487, 1859, 30, 18643, 1859, 11, 293, 456, 311, 257, 2487, 2519, 11, 293, 456, 311, 257, 4421, 11, 293, 456, 311, 286, 500, 380, 458, 437, 13, 509, 1116, 411, 281, 909, 257, 7838, 281, 604, 295, 613, 13], "avg_logprob": -0.5408878705211889, "compression_ratio": 1.6571428571428573, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2638.39, "end": 2638.61, "word": "So", "probability": 0.417236328125}, {"start": 2638.61, "end": 2638.81, "word": " why", "probability": 0.6611328125}, {"start": 2638.81, "end": 2638.83, "word": " do", "probability": 0.12420654296875}, {"start": 2638.83, "end": 2638.93, "word": " I", "probability": 0.84521484375}, {"start": 2638.93, "end": 2639.15, "word": " connect", "probability": 0.422119140625}, {"start": 2639.15, "end": 2639.37, "word": " this", "probability": 0.2435302734375}, {"start": 2639.37, "end": 2639.49, "word": " with", "probability": 0.369384765625}, {"start": 2639.49, "end": 2639.73, "word": " this", "probability": 0.494873046875}, {"start": 2639.73, "end": 2639.87, "word": " with", "probability": 0.1978759765625}, {"start": 2639.87, "end": 2640.19, "word": " this?", "probability": 0.931640625}, {"start": 2640.51, "end": 2640.95, "word": " To", "probability": 0.38427734375}, {"start": 2640.95, "end": 2641.29, "word": " add", "probability": 0.88818359375}, {"start": 2641.29, "end": 2641.39, "word": " new", "probability": 0.7626953125}, {"start": 2641.39, "end": 2641.83, "word": " features", "probability": 0.744140625}, {"start": 2641.83, "end": 2642.33, "word": " to", "probability": 0.79443359375}, {"start": 2642.33, "end": 2642.65, "word": " each", "probability": 0.487548828125}, {"start": 2642.65, "end": 2643.55, "word": " existing", "probability": 0.85205078125}, {"start": 2643.55, "end": 2643.55, "word": " object.", "probability": 0.92431640625}, {"start": 2644.51, "end": 2644.79, "word": " Because", "probability": 0.755859375}, {"start": 2644.79, "end": 2645.01, "word": " without", "probability": 0.468505859375}, {"start": 2645.01, "end": 2645.37, "word": " this,", "probability": 0.322998046875}, {"start": 2645.49, "end": 2645.57, "word": " it", "probability": 0.35888671875}, {"start": 2645.57, "end": 2645.61, "word": " would", "probability": 0.399658203125}, {"start": 2645.61, "end": 2645.89, "word": " have", "probability": 0.5859375}, {"start": 2645.89, "end": 2645.95, "word": " to", "probability": 0.60205078125}, {"start": 2645.95, "end": 2646.37, "word": " appear", "probability": 0.2152099609375}, {"start": 2646.37, "end": 2646.99, "word": " in", "probability": 0.73193359375}, {"start": 2646.99, "end": 2647.07, "word": " a", "probability": 0.35302734375}, {"start": 2647.07, "end": 2647.61, "word": " large", "probability": 0.47216796875}, {"start": 2647.61, "end": 2647.63, "word": " number", "probability": 0.9130859375}, {"start": 2647.63, "end": 2648.83, "word": " of", "probability": 0.9609375}, {"start": 2648.83, "end": 2650.05, "word": " subclasses.", "probability": 0.8001302083333334}, {"start": 2650.95, "end": 2651.39, "word": " Another", "probability": 0.7548828125}, {"start": 2651.39, "end": 2651.75, "word": " example,", "probability": 0.97216796875}, {"start": 2652.25, "end": 2652.33, "word": " in", "probability": 0.80908203125}, {"start": 2652.33, "end": 2652.45, "word": " the", "probability": 0.40380859375}, {"start": 2652.45, "end": 2652.71, "word": " java", "probability": 0.4498291015625}, {"start": 2652.71, "end": 2653.13, "word": ".fx", "probability": 0.8971354166666666}, {"start": 2653.13, "end": 2653.25, "word": " that", "probability": 0.440185546875}, {"start": 2653.25, "end": 2653.41, "word": " you", "probability": 0.94677734375}, {"start": 2653.41, "end": 2653.87, "word": " use,", "probability": 0.6923828125}, {"start": 2654.03, "end": 2654.41, "word": " I'm", "probability": 0.29827880859375}, {"start": 2654.41, "end": 2655.21, "word": " sure", "probability": 0.904296875}, {"start": 2655.21, "end": 2655.33, "word": " you've", "probability": 0.53179931640625}, {"start": 2655.33, "end": 2655.57, "word": " taken", "probability": 0.4521484375}, {"start": 2655.57, "end": 2655.71, "word": " it.", "probability": 0.426513671875}, {"start": 2655.71, "end": 2655.87, "word": " What's", "probability": 0.693359375}, {"start": 2655.87, "end": 2656.05, "word": " the", "probability": 0.86181640625}, {"start": 2656.05, "end": 2656.05, "word": " name", "probability": 0.7626953125}, {"start": 2656.05, "end": 2656.11, "word": " of", "probability": 0.93994140625}, {"start": 2656.11, "end": 2656.23, "word": " the", "probability": 0.66650390625}, {"start": 2656.23, "end": 2656.43, "word": " text", "probability": 0.8271484375}, {"start": 2656.43, "end": 2656.79, "word": " area?", "probability": 0.74951171875}, {"start": 2658.09, "end": 2658.53, "word": " Text", "probability": 0.4873046875}, {"start": 2658.53, "end": 2658.91, "word": " area,", "probability": 0.45849609375}, {"start": 2658.99, "end": 2659.03, "word": " and", "probability": 0.3466796875}, {"start": 2659.03, "end": 2659.13, "word": " there's", "probability": 0.721923828125}, {"start": 2659.13, "end": 2659.23, "word": " a", "probability": 0.53173828125}, {"start": 2659.23, "end": 2659.37, "word": " text", "probability": 0.88623046875}, {"start": 2659.37, "end": 2659.75, "word": " field,", "probability": 0.8916015625}, {"start": 2659.91, "end": 2659.93, "word": " and", "probability": 0.84423828125}, {"start": 2659.93, "end": 2660.15, "word": " there's", "probability": 0.74462890625}, {"start": 2660.15, "end": 2660.15, "word": " a", "probability": 0.92431640625}, {"start": 2660.15, "end": 2660.47, "word": " tab,", "probability": 0.9375}, {"start": 2660.59, "end": 2660.63, "word": " and", "probability": 0.88525390625}, {"start": 2660.63, "end": 2660.77, "word": " there's", "probability": 0.7205810546875}, {"start": 2660.77, "end": 2660.91, "word": " I", "probability": 0.296875}, {"start": 2660.91, "end": 2660.95, "word": " don't", "probability": 0.960693359375}, {"start": 2660.95, "end": 2661.17, "word": " know", "probability": 0.8994140625}, {"start": 2661.17, "end": 2661.39, "word": " what.", "probability": 0.9208984375}, {"start": 2661.91, "end": 2662.31, "word": " You'd", "probability": 0.2044677734375}, {"start": 2662.31, "end": 2662.35, "word": " like", "probability": 0.42919921875}, {"start": 2662.35, "end": 2662.45, "word": " to", "probability": 0.8623046875}, {"start": 2662.45, "end": 2662.45, "word": " add", "probability": 0.8837890625}, {"start": 2662.45, "end": 2662.45, "word": " a", "probability": 0.405029296875}, {"start": 2662.45, "end": 2662.45, "word": " border", "probability": 0.9013671875}, {"start": 2662.45, "end": 2662.47, "word": " to", "probability": 0.8466796875}, {"start": 2662.47, "end": 2662.67, "word": " any", "probability": 0.74365234375}, {"start": 2662.67, "end": 2662.97, "word": " of", "probability": 0.58935546875}, {"start": 2662.97, "end": 2663.21, "word": " these.", "probability": 0.67138671875}], "temperature": 1.0}, {"id": 102, "seek": 268815, "start": 2664.97, "end": 2688.15, "text": " Has anyone tried to add a border to the text area in java.fx? No, there is a class called border, scroll type, scroll pane, there is scroll for shapes I will go back to java swing, the swing library, for example we have scroll pane", "tokens": [8646, 2878, 3031, 281, 909, 257, 7838, 281, 264, 2487, 1859, 294, 361, 4061, 13, 69, 87, 30, 883, 11, 456, 307, 257, 1508, 1219, 7838, 11, 11369, 2010, 11, 11369, 2462, 68, 11, 456, 307, 11369, 337, 10854, 286, 486, 352, 646, 281, 361, 4061, 11173, 11, 264, 11173, 6405, 11, 337, 1365, 321, 362, 11369, 2462, 68], "avg_logprob": -0.521614604194959, "compression_ratio": 1.5466666666666666, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2664.97, "end": 2665.13, "word": " Has", "probability": 0.133056640625}, {"start": 2665.13, "end": 2665.29, "word": " anyone", "probability": 0.82177734375}, {"start": 2665.29, "end": 2665.55, "word": " tried", "probability": 0.79736328125}, {"start": 2665.55, "end": 2665.65, "word": " to", "probability": 0.7958984375}, {"start": 2665.65, "end": 2665.79, "word": " add", "probability": 0.7841796875}, {"start": 2665.79, "end": 2665.93, "word": " a", "probability": 0.498291015625}, {"start": 2665.93, "end": 2666.17, "word": " border", "probability": 0.82373046875}, {"start": 2666.17, "end": 2666.45, "word": " to", "probability": 0.492919921875}, {"start": 2666.45, "end": 2666.69, "word": " the", "probability": 0.499755859375}, {"start": 2666.69, "end": 2666.87, "word": " text", "probability": 0.62060546875}, {"start": 2666.87, "end": 2667.23, "word": " area", "probability": 0.81494140625}, {"start": 2667.23, "end": 2667.91, "word": " in", "probability": 0.6748046875}, {"start": 2667.91, "end": 2668.15, "word": " java", "probability": 0.41015625}, {"start": 2668.15, "end": 2668.53, "word": ".fx?", "probability": 0.8619791666666666}, {"start": 2669.93, "end": 2670.49, "word": " No,", "probability": 0.1861572265625}, {"start": 2671.69, "end": 2671.85, "word": " there", "probability": 0.71826171875}, {"start": 2671.85, "end": 2671.99, "word": " is", "probability": 0.59814453125}, {"start": 2671.99, "end": 2673.21, "word": " a", "probability": 0.93505859375}, {"start": 2673.21, "end": 2673.57, "word": " class", "probability": 0.9423828125}, {"start": 2673.57, "end": 2673.83, "word": " called", "probability": 0.67138671875}, {"start": 2673.83, "end": 2674.23, "word": " border,", "probability": 0.4970703125}, {"start": 2675.09, "end": 2676.05, "word": " scroll", "probability": 0.51953125}, {"start": 2676.05, "end": 2676.35, "word": " type,", "probability": 0.264404296875}, {"start": 2676.47, "end": 2676.67, "word": " scroll", "probability": 0.82958984375}, {"start": 2676.67, "end": 2677.31, "word": " pane,", "probability": 0.6182861328125}, {"start": 2677.33, "end": 2677.51, "word": " there", "probability": 0.609375}, {"start": 2677.51, "end": 2677.55, "word": " is", "probability": 0.79541015625}, {"start": 2677.55, "end": 2677.93, "word": " scroll", "probability": 0.56591796875}, {"start": 2677.93, "end": 2679.13, "word": " for", "probability": 0.52099609375}, {"start": 2679.13, "end": 2679.61, "word": " shapes", "probability": 0.59716796875}, {"start": 2679.61, "end": 2681.53, "word": " I", "probability": 0.36962890625}, {"start": 2681.53, "end": 2681.59, "word": " will", "probability": 0.5029296875}, {"start": 2681.59, "end": 2681.67, "word": " go", "probability": 0.490966796875}, {"start": 2681.67, "end": 2681.81, "word": " back", "probability": 0.826171875}, {"start": 2681.81, "end": 2682.19, "word": " to", "probability": 0.685546875}, {"start": 2682.19, "end": 2682.59, "word": " java", "probability": 0.5037841796875}, {"start": 2682.59, "end": 2682.95, "word": " swing,", "probability": 0.748046875}, {"start": 2683.39, "end": 2683.59, "word": " the", "probability": 0.57666015625}, {"start": 2683.59, "end": 2683.83, "word": " swing", "probability": 0.60546875}, {"start": 2683.83, "end": 2684.75, "word": " library,", "probability": 0.75537109375}, {"start": 2685.25, "end": 2686.53, "word": " for", "probability": 0.6015625}, {"start": 2686.53, "end": 2687.17, "word": " example", "probability": 0.94140625}, {"start": 2687.17, "end": 2687.29, "word": " we", "probability": 0.408935546875}, {"start": 2687.29, "end": 2687.45, "word": " have", "probability": 0.9462890625}, {"start": 2687.45, "end": 2687.71, "word": " scroll", "probability": 0.8896484375}, {"start": 2687.71, "end": 2688.15, "word": " pane", "probability": 0.6748046875}], "temperature": 1.0}, {"id": 103, "seek": 270985, "start": 2689.33, "end": 2709.85, "text": "It means you have to add to any scroll shape, create an object of the type of scroll pane and give it the shape you want. You add the scroll to it. This is instead of going to every class and extend it to add a scroll to the specific shape. This is also an application for the border, for the decorator pattern.", "tokens": [3522, 1355, 291, 362, 281, 909, 281, 604, 11369, 3909, 11, 1884, 364, 2657, 295, 264, 2010, 295, 11369, 2462, 68, 293, 976, 309, 264, 3909, 291, 528, 13, 509, 909, 264, 11369, 281, 309, 13, 639, 307, 2602, 295, 516, 281, 633, 1508, 293, 10101, 309, 281, 909, 257, 11369, 281, 264, 2685, 3909, 13, 639, 307, 611, 364, 3861, 337, 264, 7838, 11, 337, 264, 7919, 1639, 5102, 13], "avg_logprob": -0.6119791890184084, "compression_ratio": 1.681081081081081, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2689.33, "end": 2689.71, "word": "It", "probability": 0.11688232421875}, {"start": 2689.71, "end": 2689.71, "word": " means", "probability": 0.76123046875}, {"start": 2689.71, "end": 2689.99, "word": " you", "probability": 0.34765625}, {"start": 2689.99, "end": 2690.13, "word": " have", "probability": 0.1478271484375}, {"start": 2690.13, "end": 2690.25, "word": " to", "probability": 0.9638671875}, {"start": 2690.25, "end": 2690.49, "word": " add", "probability": 0.80419921875}, {"start": 2690.49, "end": 2690.57, "word": " to", "probability": 0.18603515625}, {"start": 2690.57, "end": 2690.73, "word": " any", "probability": 0.6875}, {"start": 2690.73, "end": 2691.23, "word": " scroll", "probability": 0.441162109375}, {"start": 2691.23, "end": 2691.43, "word": " shape,", "probability": 0.464111328125}, {"start": 2692.05, "end": 2692.37, "word": " create", "probability": 0.59375}, {"start": 2692.37, "end": 2692.59, "word": " an", "probability": 0.73876953125}, {"start": 2692.59, "end": 2692.79, "word": " object", "probability": 0.90185546875}, {"start": 2692.79, "end": 2692.95, "word": " of", "probability": 0.26025390625}, {"start": 2692.95, "end": 2693.07, "word": " the", "probability": 0.3310546875}, {"start": 2693.07, "end": 2693.13, "word": " type", "probability": 0.390380859375}, {"start": 2693.13, "end": 2693.21, "word": " of", "probability": 0.427001953125}, {"start": 2693.21, "end": 2693.43, "word": " scroll", "probability": 0.8193359375}, {"start": 2693.43, "end": 2693.95, "word": " pane", "probability": 0.3414306640625}, {"start": 2693.95, "end": 2694.47, "word": " and", "probability": 0.5546875}, {"start": 2694.47, "end": 2694.69, "word": " give", "probability": 0.2362060546875}, {"start": 2694.69, "end": 2694.89, "word": " it", "probability": 0.87744140625}, {"start": 2694.89, "end": 2695.01, "word": " the", "probability": 0.220703125}, {"start": 2695.01, "end": 2695.33, "word": " shape", "probability": 0.7646484375}, {"start": 2695.33, "end": 2695.91, "word": " you", "probability": 0.494873046875}, {"start": 2695.91, "end": 2695.91, "word": " want.", "probability": 0.6015625}, {"start": 2695.95, "end": 2696.07, "word": " You", "probability": 0.12249755859375}, {"start": 2696.07, "end": 2696.25, "word": " add", "probability": 0.6328125}, {"start": 2696.25, "end": 2697.11, "word": " the", "probability": 0.392333984375}, {"start": 2697.11, "end": 2697.39, "word": " scroll", "probability": 0.9287109375}, {"start": 2697.39, "end": 2698.05, "word": " to", "probability": 0.43212890625}, {"start": 2698.05, "end": 2698.29, "word": " it.", "probability": 0.814453125}, {"start": 2698.81, "end": 2699.25, "word": " This", "probability": 0.371337890625}, {"start": 2699.25, "end": 2699.35, "word": " is", "probability": 0.6806640625}, {"start": 2699.35, "end": 2699.51, "word": " instead", "probability": 0.461181640625}, {"start": 2699.51, "end": 2700.23, "word": " of", "probability": 0.9521484375}, {"start": 2700.23, "end": 2700.47, "word": " going", "probability": 0.6025390625}, {"start": 2700.47, "end": 2700.65, "word": " to", "probability": 0.9189453125}, {"start": 2700.65, "end": 2700.93, "word": " every", "probability": 0.3837890625}, {"start": 2700.93, "end": 2701.33, "word": " class", "probability": 0.83251953125}, {"start": 2701.33, "end": 2701.43, "word": " and", "probability": 0.8671875}, {"start": 2701.43, "end": 2702.07, "word": " extend", "probability": 0.2529296875}, {"start": 2702.07, "end": 2702.27, "word": " it", "probability": 0.65625}, {"start": 2702.27, "end": 2702.47, "word": " to", "probability": 0.837890625}, {"start": 2702.47, "end": 2702.73, "word": " add", "probability": 0.876953125}, {"start": 2702.73, "end": 2702.87, "word": " a", "probability": 0.487060546875}, {"start": 2702.87, "end": 2703.05, "word": " scroll", "probability": 0.92724609375}, {"start": 2703.05, "end": 2703.21, "word": " to", "probability": 0.84228515625}, {"start": 2703.21, "end": 2704.17, "word": " the", "probability": 0.68896484375}, {"start": 2704.17, "end": 2704.49, "word": " specific", "probability": 0.28857421875}, {"start": 2704.49, "end": 2704.49, "word": " shape.", "probability": 0.7998046875}, {"start": 2705.09, "end": 2705.37, "word": " This", "probability": 0.51123046875}, {"start": 2705.37, "end": 2705.45, "word": " is", "probability": 0.88134765625}, {"start": 2705.45, "end": 2705.65, "word": " also", "probability": 0.71875}, {"start": 2705.65, "end": 2705.79, "word": " an", "probability": 0.65478515625}, {"start": 2705.79, "end": 2706.03, "word": " application", "probability": 0.88134765625}, {"start": 2706.03, "end": 2706.21, "word": " for", "probability": 0.5361328125}, {"start": 2706.21, "end": 2707.25, "word": " the", "probability": 0.3369140625}, {"start": 2707.25, "end": 2707.55, "word": " border,", "probability": 0.78857421875}, {"start": 2707.73, "end": 2708.01, "word": " for", "probability": 0.61865234375}, {"start": 2708.01, "end": 2708.23, "word": " the", "probability": 0.85546875}, {"start": 2708.23, "end": 2708.89, "word": " decorator", "probability": 0.9248046875}, {"start": 2708.89, "end": 2709.85, "word": " pattern.", "probability": 0.82861328125}], "temperature": 1.0}, {"id": 104, "seek": 272290, "start": 2711.66, "end": 2722.9, "text": "Okay guys, there are two ways to add new features, either subclassing or decorator The original is always to use subclassing, because I don't need to write what's already there", "tokens": [8297, 1074, 11, 456, 366, 732, 2098, 281, 909, 777, 4122, 11, 2139, 1422, 11665, 278, 420, 7919, 1639, 440, 3380, 307, 1009, 281, 764, 1422, 11665, 278, 11, 570, 286, 500, 380, 643, 281, 2464, 437, 311, 1217, 456], "avg_logprob": -0.45503049361996534, "compression_ratio": 1.3858267716535433, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 2711.66, "end": 2711.98, "word": "Okay", "probability": 0.33056640625}, {"start": 2711.98, "end": 2712.4, "word": " guys,", "probability": 0.55126953125}, {"start": 2712.54, "end": 2712.58, "word": " there", "probability": 0.259765625}, {"start": 2712.58, "end": 2712.72, "word": " are", "probability": 0.70458984375}, {"start": 2712.72, "end": 2713.08, "word": " two", "probability": 0.60595703125}, {"start": 2713.08, "end": 2713.46, "word": " ways", "probability": 0.74462890625}, {"start": 2713.46, "end": 2713.68, "word": " to", "probability": 0.83740234375}, {"start": 2713.68, "end": 2714.06, "word": " add", "probability": 0.86376953125}, {"start": 2714.06, "end": 2714.26, "word": " new", "probability": 0.5615234375}, {"start": 2714.26, "end": 2714.64, "word": " features,", "probability": 0.7587890625}, {"start": 2714.94, "end": 2715.12, "word": " either", "probability": 0.7802734375}, {"start": 2715.12, "end": 2715.92, "word": " subclassing", "probability": 0.8234049479166666}, {"start": 2715.92, "end": 2716.42, "word": " or", "probability": 0.93896484375}, {"start": 2716.42, "end": 2717.02, "word": " decorator", "probability": 0.87255859375}, {"start": 2717.02, "end": 2717.8, "word": " The", "probability": 0.375244140625}, {"start": 2717.8, "end": 2718.04, "word": " original", "probability": 0.3603515625}, {"start": 2718.04, "end": 2718.18, "word": " is", "probability": 0.3798828125}, {"start": 2718.18, "end": 2718.34, "word": " always", "probability": 0.54296875}, {"start": 2718.34, "end": 2718.5, "word": " to", "probability": 0.7138671875}, {"start": 2718.5, "end": 2718.8, "word": " use", "probability": 0.8828125}, {"start": 2718.8, "end": 2719.76, "word": " subclassing,", "probability": 0.8836263020833334}, {"start": 2720.46, "end": 2721.06, "word": " because", "probability": 0.368896484375}, {"start": 2721.06, "end": 2721.62, "word": " I", "probability": 0.72509765625}, {"start": 2721.62, "end": 2721.76, "word": " don't", "probability": 0.820556640625}, {"start": 2721.76, "end": 2722.12, "word": " need", "probability": 0.5322265625}, {"start": 2722.12, "end": 2722.28, "word": " to", "probability": 0.9658203125}, {"start": 2722.28, "end": 2722.44, "word": " write", "probability": 0.63330078125}, {"start": 2722.44, "end": 2722.66, "word": " what's", "probability": 0.566162109375}, {"start": 2722.66, "end": 2722.86, "word": " already", "probability": 0.333984375}, {"start": 2722.86, "end": 2722.9, "word": " there", "probability": 0.54052734375}], "temperature": 1.0}, {"id": 105, "seek": 275113, "start": 2723.99, "end": 2751.13, "text": "But if the result of using subclassing is a lot of classes, like the examples we saw earlier, I prefer to use the decorator which is a class that encloses another class to add additional features to it. Like when we made a circle and enclosed it with a border, or a rectangle and enclosed it with a border as well. I have ten shapes and I make one class to add the feature, instead of having to make ten classes for ten shapes, and this is the idea of the decorator pattern.", "tokens": [7835, 498, 264, 1874, 295, 1228, 1422, 11665, 278, 307, 257, 688, 295, 5359, 11, 411, 264, 5110, 321, 1866, 3071, 11, 286, 4382, 281, 764, 264, 7919, 1639, 597, 307, 257, 1508, 300, 20987, 4201, 1071, 1508, 281, 909, 4497, 4122, 281, 309, 13, 1743, 562, 321, 1027, 257, 6329, 293, 42089, 309, 365, 257, 7838, 11, 420, 257, 21930, 293, 42089, 309, 365, 257, 7838, 382, 731, 13, 286, 362, 2064, 10854, 293, 286, 652, 472, 1508, 281, 909, 264, 4111, 11, 2602, 295, 1419, 281, 652, 2064, 5359, 337, 2064, 10854, 11, 293, 341, 307, 264, 1558, 295, 264, 7919, 1639, 5102, 13], "avg_logprob": -0.4824766343999132, "compression_ratio": 1.880952380952381, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 2723.99, "end": 2724.29, "word": "But", "probability": 0.385986328125}, {"start": 2724.29, "end": 2724.49, "word": " if", "probability": 0.8828125}, {"start": 2724.49, "end": 2724.73, "word": " the", "probability": 0.324462890625}, {"start": 2724.73, "end": 2724.73, "word": " result", "probability": 0.1790771484375}, {"start": 2724.73, "end": 2724.97, "word": " of", "probability": 0.78759765625}, {"start": 2724.97, "end": 2725.41, "word": " using", "probability": 0.406494140625}, {"start": 2725.41, "end": 2726.37, "word": " subclassing", "probability": 0.7423502604166666}, {"start": 2726.37, "end": 2727.03, "word": " is", "probability": 0.480224609375}, {"start": 2727.03, "end": 2727.03, "word": " a", "probability": 0.2110595703125}, {"start": 2727.03, "end": 2727.41, "word": " lot", "probability": 0.35693359375}, {"start": 2727.41, "end": 2727.57, "word": " of", "probability": 0.96044921875}, {"start": 2727.57, "end": 2727.99, "word": " classes,", "probability": 0.84423828125}, {"start": 2728.07, "end": 2728.23, "word": " like", "probability": 0.63232421875}, {"start": 2728.23, "end": 2728.33, "word": " the", "probability": 0.66748046875}, {"start": 2728.33, "end": 2728.55, "word": " examples", "probability": 0.48388671875}, {"start": 2728.55, "end": 2728.71, "word": " we", "probability": 0.490478515625}, {"start": 2728.71, "end": 2728.99, "word": " saw", "probability": 0.54345703125}, {"start": 2728.99, "end": 2729.63, "word": " earlier,", "probability": 0.258544921875}, {"start": 2729.63, "end": 2729.71, "word": " I", "probability": 0.234375}, {"start": 2729.71, "end": 2729.95, "word": " prefer", "probability": 0.30859375}, {"start": 2729.95, "end": 2730.09, "word": " to", "probability": 0.3505859375}, {"start": 2730.09, "end": 2730.57, "word": " use", "probability": 0.87158203125}, {"start": 2730.57, "end": 2731.31, "word": " the", "probability": 0.64501953125}, {"start": 2731.31, "end": 2731.75, "word": " decorator", "probability": 0.8330078125}, {"start": 2731.75, "end": 2731.89, "word": " which", "probability": 0.288818359375}, {"start": 2731.89, "end": 2732.05, "word": " is", "probability": 0.86474609375}, {"start": 2732.05, "end": 2732.27, "word": " a", "probability": 0.80029296875}, {"start": 2732.27, "end": 2732.71, "word": " class", "probability": 0.9140625}, {"start": 2732.71, "end": 2732.87, "word": " that", "probability": 0.5322265625}, {"start": 2732.87, "end": 2733.15, "word": " encloses", "probability": 0.5462646484375}, {"start": 2733.15, "end": 2733.79, "word": " another", "probability": 0.603515625}, {"start": 2733.79, "end": 2733.81, "word": " class", "probability": 0.927734375}, {"start": 2733.81, "end": 2734.09, "word": " to", "probability": 0.61767578125}, {"start": 2734.09, "end": 2734.35, "word": " add", "probability": 0.75830078125}, {"start": 2734.35, "end": 2734.51, "word": " additional", "probability": 0.396484375}, {"start": 2734.51, "end": 2735.01, "word": " features", "probability": 0.374755859375}, {"start": 2735.01, "end": 2735.43, "word": " to", "probability": 0.61865234375}, {"start": 2735.43, "end": 2735.57, "word": " it.", "probability": 0.92724609375}, {"start": 2735.77, "end": 2736.13, "word": " Like", "probability": 0.55615234375}, {"start": 2736.13, "end": 2736.27, "word": " when", "probability": 0.44287109375}, {"start": 2736.27, "end": 2736.49, "word": " we", "probability": 0.92529296875}, {"start": 2736.49, "end": 2736.49, "word": " made", "probability": 0.63134765625}, {"start": 2736.49, "end": 2736.59, "word": " a", "probability": 0.86962890625}, {"start": 2736.59, "end": 2736.95, "word": " circle", "probability": 0.951171875}, {"start": 2736.95, "end": 2737.09, "word": " and", "probability": 0.77978515625}, {"start": 2737.09, "end": 2737.31, "word": " enclosed", "probability": 0.385498046875}, {"start": 2737.31, "end": 2737.67, "word": " it", "probability": 0.61865234375}, {"start": 2737.67, "end": 2738.19, "word": " with", "probability": 0.640625}, {"start": 2738.19, "end": 2738.25, "word": " a", "probability": 0.67724609375}, {"start": 2738.25, "end": 2738.51, "word": " border,", "probability": 0.87451171875}, {"start": 2739.13, "end": 2739.45, "word": " or", "probability": 0.88427734375}, {"start": 2739.45, "end": 2739.51, "word": " a", "probability": 0.50439453125}, {"start": 2739.51, "end": 2739.91, "word": " rectangle", "probability": 0.95361328125}, {"start": 2739.91, "end": 2740.05, "word": " and", "probability": 0.87353515625}, {"start": 2740.05, "end": 2740.23, "word": " enclosed", "probability": 0.81884765625}, {"start": 2740.23, "end": 2740.65, "word": " it", "probability": 0.904296875}, {"start": 2740.65, "end": 2741.27, "word": " with", "probability": 0.88037109375}, {"start": 2741.27, "end": 2741.37, "word": " a", "probability": 0.8779296875}, {"start": 2741.37, "end": 2741.67, "word": " border", "probability": 0.85791015625}, {"start": 2741.67, "end": 2741.89, "word": " as", "probability": 0.50830078125}, {"start": 2741.89, "end": 2741.97, "word": " well.", "probability": 0.94287109375}, {"start": 2742.77, "end": 2743.15, "word": " I", "probability": 0.80908203125}, {"start": 2743.15, "end": 2743.17, "word": " have", "probability": 0.888671875}, {"start": 2743.17, "end": 2743.41, "word": " ten", "probability": 0.52099609375}, {"start": 2743.41, "end": 2743.77, "word": " shapes", "probability": 0.461669921875}, {"start": 2743.77, "end": 2743.97, "word": " and", "probability": 0.341552734375}, {"start": 2743.97, "end": 2743.97, "word": " I", "probability": 0.88818359375}, {"start": 2743.97, "end": 2744.07, "word": " make", "probability": 0.51171875}, {"start": 2744.07, "end": 2744.23, "word": " one", "probability": 0.58154296875}, {"start": 2744.23, "end": 2744.45, "word": " class", "probability": 0.9345703125}, {"start": 2744.45, "end": 2744.85, "word": " to", "probability": 0.92041015625}, {"start": 2744.85, "end": 2745.09, "word": " add", "probability": 0.90478515625}, {"start": 2745.09, "end": 2745.21, "word": " the", "probability": 0.4521484375}, {"start": 2745.21, "end": 2745.43, "word": " feature,", "probability": 0.92041015625}, {"start": 2745.55, "end": 2745.71, "word": " instead", "probability": 0.6123046875}, {"start": 2745.71, "end": 2745.81, "word": " of", "probability": 0.966796875}, {"start": 2745.81, "end": 2746.05, "word": " having", "probability": 0.45068359375}, {"start": 2746.05, "end": 2746.13, "word": " to", "probability": 0.91455078125}, {"start": 2746.13, "end": 2746.31, "word": " make", "probability": 0.8359375}, {"start": 2746.31, "end": 2746.55, "word": " ten", "probability": 0.86279296875}, {"start": 2746.55, "end": 2746.99, "word": " classes", "probability": 0.9052734375}, {"start": 2746.99, "end": 2747.15, "word": " for", "probability": 0.654296875}, {"start": 2747.15, "end": 2747.65, "word": " ten", "probability": 0.467529296875}, {"start": 2747.65, "end": 2748.77, "word": " shapes,", "probability": 0.87548828125}, {"start": 2748.93, "end": 2748.95, "word": " and", "probability": 0.8046875}, {"start": 2748.95, "end": 2749.11, "word": " this", "probability": 0.7587890625}, {"start": 2749.11, "end": 2749.23, "word": " is", "probability": 0.9208984375}, {"start": 2749.23, "end": 2749.37, "word": " the", "probability": 0.81005859375}, {"start": 2749.37, "end": 2749.53, "word": " idea", "probability": 0.7705078125}, {"start": 2749.53, "end": 2750.33, "word": " of", "probability": 0.6806640625}, {"start": 2750.33, "end": 2750.45, "word": " the", "probability": 0.405029296875}, {"start": 2750.45, "end": 2750.89, "word": " decorator", "probability": 0.835693359375}, {"start": 2750.89, "end": 2751.13, "word": " pattern.", "probability": 0.81298828125}], "temperature": 1.0}, {"id": 106, "seek": 276158, "start": 2752.02, "end": 2761.58, "text": "We took an example today to clarify the decorator. In the next lecture, we will read what is in the slides, see the UML diagram of the decorator and see another example, God willing, and God bless you.", "tokens": [4360, 1890, 364, 1365, 965, 281, 17594, 264, 7919, 1639, 13, 682, 264, 958, 7991, 11, 321, 486, 1401, 437, 307, 294, 264, 9788, 11, 536, 264, 624, 12683, 10686, 295, 264, 7919, 1639, 293, 536, 1071, 1365, 11, 1265, 4950, 11, 293, 1265, 5227, 291, 13], "avg_logprob": -0.3984374962747097, "compression_ratio": 1.425531914893617, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 2752.02, "end": 2752.2, "word": "We", "probability": 0.372802734375}, {"start": 2752.2, "end": 2752.4, "word": " took", "probability": 0.46923828125}, {"start": 2752.4, "end": 2752.76, "word": " an", "probability": 0.59033203125}, {"start": 2752.76, "end": 2752.76, "word": " example", "probability": 0.9697265625}, {"start": 2752.76, "end": 2753.0, "word": " today", "probability": 0.43115234375}, {"start": 2753.0, "end": 2753.12, "word": " to", "probability": 0.476806640625}, {"start": 2753.12, "end": 2753.32, "word": " clarify", "probability": 0.50048828125}, {"start": 2753.32, "end": 2753.44, "word": " the", "probability": 0.798828125}, {"start": 2753.44, "end": 2753.86, "word": " decorator.", "probability": 0.8017578125}, {"start": 2753.98, "end": 2754.04, "word": " In", "probability": 0.5009765625}, {"start": 2754.04, "end": 2754.1, "word": " the", "probability": 0.8701171875}, {"start": 2754.1, "end": 2754.1, "word": " next", "probability": 0.8447265625}, {"start": 2754.1, "end": 2754.44, "word": " lecture,", "probability": 0.845703125}, {"start": 2755.04, "end": 2755.84, "word": " we", "probability": 0.90673828125}, {"start": 2755.84, "end": 2755.94, "word": " will", "probability": 0.76611328125}, {"start": 2755.94, "end": 2756.12, "word": " read", "probability": 0.89599609375}, {"start": 2756.12, "end": 2756.28, "word": " what", "probability": 0.6298828125}, {"start": 2756.28, "end": 2756.36, "word": " is", "probability": 0.80615234375}, {"start": 2756.36, "end": 2756.56, "word": " in", "probability": 0.489013671875}, {"start": 2756.56, "end": 2756.68, "word": " the", "probability": 0.89501953125}, {"start": 2756.68, "end": 2757.08, "word": " slides,", "probability": 0.96826171875}, {"start": 2757.24, "end": 2757.42, "word": " see", "probability": 0.41552734375}, {"start": 2757.42, "end": 2757.62, "word": " the", "probability": 0.86181640625}, {"start": 2757.62, "end": 2757.84, "word": " UML", "probability": 0.791748046875}, {"start": 2757.84, "end": 2758.28, "word": " diagram", "probability": 0.84521484375}, {"start": 2758.28, "end": 2758.42, "word": " of", "probability": 0.8271484375}, {"start": 2758.42, "end": 2758.52, "word": " the", "probability": 0.72705078125}, {"start": 2758.52, "end": 2758.96, "word": " decorator", "probability": 0.975341796875}, {"start": 2758.96, "end": 2759.06, "word": " and", "probability": 0.61669921875}, {"start": 2759.06, "end": 2759.22, "word": " see", "probability": 0.6845703125}, {"start": 2759.22, "end": 2760.14, "word": " another", "probability": 0.8818359375}, {"start": 2760.14, "end": 2760.46, "word": " example,", "probability": 0.97314453125}, {"start": 2760.6, "end": 2760.92, "word": " God", "probability": 0.61767578125}, {"start": 2760.92, "end": 2760.94, "word": " willing,", "probability": 0.84619140625}, {"start": 2761.22, "end": 2761.26, "word": " and", "probability": 0.70751953125}, {"start": 2761.26, "end": 2761.36, "word": " God", "probability": 0.297119140625}, {"start": 2761.36, "end": 2761.48, "word": " bless", "probability": 0.81005859375}, {"start": 2761.48, "end": 2761.58, "word": " you.", "probability": 0.95556640625}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2762.08325, "duration_after_vad": 2593.74249999999} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/jC_2sm8ON0k_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/jC_2sm8ON0k_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..b701e547a69a525bfffc3863fb36d00ebe55355d --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/jC_2sm8ON0k_raw.srt @@ -0,0 +1,2948 @@ +1 +00:00:05,080 --> 00:00:08,220 +Ok guys, peace be upon you. In the last lecture, + +2 +00:00:08,400 --> 00:00:11,100 +we started with the first or the last group of + +3 +00:00:11,100 --> 00:00:13,660 +design patterns which are structural design + +4 +00:00:13,660 --> 00:00:15,200 +patterns and we took from them two design + +5 +00:00:15,200 --> 00:00:20,820 +patterns. One of them is called Corruption. is to + +6 +00:00:20,820 --> 00:00:24,420 +provide a simple interface to use parts of your + +7 +00:00:24,420 --> 00:00:27,400 +system so that you don't involve the developer who + +8 +00:00:27,400 --> 00:00:30,680 +will use your library to implement many steps or + +9 +00:00:30,680 --> 00:00:34,140 +know the details of parts of your system and what + +10 +00:00:34,140 --> 00:00:36,060 +are the subsystems and the relationship between + +11 +00:00:36,060 --> 00:00:38,900 +them make it easy for him to provide him a simple + +12 +00:00:38,900 --> 00:00:41,740 +method, a simple interface through which he can + +13 +00:00:41,740 --> 00:00:44,670 +implement a specific process without knowing the + +14 +00:00:44,670 --> 00:00:49,370 +details. The details are hidden in this face. You + +15 +00:00:49,370 --> 00:00:53,650 +execute the commands and provide it with a single + +16 +00:00:53,650 --> 00:00:55,990 +method to execute the whole process. And this is + +17 +00:00:55,990 --> 00:00:59,550 +what we call the facade. The second design pattern + +18 +00:00:59,550 --> 00:01:01,330 +is the important design pattern called the + +19 +00:01:01,330 --> 00:01:04,980 +adapter. How if I have a systemIt needs to match + +20 +00:01:04,980 --> 00:01:08,420 +with a new office that I want to use I designed + +21 +00:01:08,420 --> 00:01:11,240 +the system to use a specific office And I want to + +22 +00:01:11,240 --> 00:01:13,480 +remove this office and use a new office instead + +23 +00:01:13,480 --> 00:01:15,760 +And this is a scenario that will stay with you all + +24 +00:01:15,760 --> 00:01:18,200 +your life That you remove offices and replace them + +25 +00:01:18,200 --> 00:01:22,500 +with new ones Is the logical solution to change + +26 +00:01:22,500 --> 00:01:27,010 +your entire client application that every call to + +27 +00:01:27,010 --> 00:01:31,050 +the new office becomes a call to the old office + +28 +00:01:31,050 --> 00:01:33,830 +becomes a call to the new office? No, this is not + +29 +00:01:33,830 --> 00:01:39,330 +going to work. Make an adapter so that the client + +30 +00:01:39,330 --> 00:01:41,930 +makes a call to the adapter and the adapter inside + +31 +00:01:41,930 --> 00:01:45,470 +turns into a call to the new office. A third + +32 +00:01:45,470 --> 00:01:47,730 +office is created after that. You only make a new + +33 +00:01:47,730 --> 00:01:51,630 +adapter. The program sends to the adapter and the + +34 +00:01:51,630 --> 00:01:55,090 +adapter turns into the third office. So your + +35 +00:01:55,090 --> 00:02:00,210 +client will be static and will only send request + +36 +00:02:00,210 --> 00:02:03,370 +to adapters and adapters will transform it to new + +37 +00:02:03,370 --> 00:02:08,010 +folders So your application will remain as it is + +38 +00:02:08,010 --> 00:02:10,470 +All you need to do is to create a new adapter when + +39 +00:02:10,470 --> 00:02:14,510 +you get a new library Today we will take a third + +40 +00:02:14,510 --> 00:02:16,510 +design pattern which is also one of the most + +41 +00:02:16,510 --> 00:02:19,230 +important design patterns It's called Decorator + +42 +00:02:19,230 --> 00:02:23,790 +Design Pattern Decorator means that it adds decor + +43 +00:02:24,900 --> 00:02:30,060 +For example, jewellery. We all know what decor + +44 +00:02:30,060 --> 00:02:34,200 +means. Okay, let's read the intent and try to + +45 +00:02:34,200 --> 00:02:37,120 +understand it. Then, let's look at a practical + +46 +00:02:37,120 --> 00:02:39,800 +example to explain what the decorator pattern is + +47 +00:02:39,800 --> 00:02:43,060 +and what it means. The intent or the goal of the + +48 +00:02:43,060 --> 00:02:45,300 +decorator pattern is to attach additional + +49 +00:02:45,300 --> 00:02:48,960 +responsibilities to an object dynamically. To add + +50 +00:02:48,960 --> 00:02:51,560 +new characteristics to the object dynamically. + +51 +00:02:54,350 --> 00:02:59,750 +2. Decorators provide a flexible alternative to + +52 +00:02:59,750 --> 00:03:04,550 +subclassing for extending functionality What does + +53 +00:03:04,550 --> 00:03:05,490 +this sentence mean? This is the most important + +54 +00:03:05,490 --> 00:03:09,750 +sentence Decorators provide a flexible alternative + +55 +00:03:09,750 --> 00:03:11,590 +What is a flexible alternative? It is an + +56 +00:03:11,590 --> 00:03:16,450 +alternative to subclassingfor extending + +57 +00:03:16,450 --> 00:03:20,050 +functionality because we have always learned in + +58 +00:03:20,050 --> 00:03:22,270 +programming that if you have a class and you want + +59 +00:03:22,270 --> 00:03:25,070 +to add new features that don't exist in it, what + +60 +00:03:25,070 --> 00:03:28,990 +do you do? you modify its code? no, you create a + +61 +00:03:28,990 --> 00:03:32,110 +new class and extend it to the old one so that you + +62 +00:03:32,110 --> 00:03:34,430 +don't rewrite the code and then add new features + +63 +00:03:34,430 --> 00:03:35,930 +okay? + +64 +00:03:37,470 --> 00:03:39,930 +did you find that we want to learn something new? + +65 +00:03:41,030 --> 00:03:45,360 +what contradicts this belief? Let's change our + +66 +00:03:45,360 --> 00:03:47,940 +beliefs in programming, not in other things, okay? + +67 +00:03:48,580 --> 00:03:52,780 +That you learn all your life that you add + +68 +00:03:52,780 --> 00:03:54,840 +something new to the class and go and extend it + +69 +00:03:54,840 --> 00:03:57,280 +and add something new to it and you are happy with + +70 +00:03:57,280 --> 00:03:59,300 +it and the subclassing is always good and + +71 +00:03:59,300 --> 00:04:02,180 +excellent No, we will learn that the subclassing + +72 +00:04:02,180 --> 00:04:07,780 +in many cases is bad and we will see alternatives + +73 +00:04:07,780 --> 00:04:11,290 +to itHow can we add a new functionality without + +74 +00:04:11,290 --> 00:04:15,790 +subclassing? And to understand when subclassing is + +75 +00:04:15,790 --> 00:04:18,890 +bad, let's see a practical example and then we + +76 +00:04:18,890 --> 00:04:25,270 +will continue reading the slides. Let me explain + +77 +00:04:25,270 --> 00:04:27,630 +this subject to you. First, I will give you a + +78 +00:04:27,630 --> 00:04:30,950 +simple example, not very practical, to show you + +79 +00:04:30,950 --> 00:04:33,650 +what the meaning of the decorator is, where the + +80 +00:04:33,650 --> 00:04:36,710 +problem is, and how the decorator can solve this + +81 +00:04:36,710 --> 00:04:40,910 +problem.Then I will tell you or show you examples + +82 +00:04:40,910 --> 00:04:45,170 +where this decorator is actually used in famous + +83 +00:04:45,170 --> 00:04:49,790 +libraries such as Java SDK or JavaFX that you are + +84 +00:04:49,790 --> 00:04:53,670 +working on or Swing or Android to show you that + +85 +00:04:53,670 --> 00:04:56,990 +this design pattern is actually used in a big way. + +86 +00:04:57,570 --> 00:04:59,990 +And you used it but you don't know that you are + +87 +00:04:59,990 --> 00:05:04,320 +applying the decorator pattern.Exactly like when + +88 +00:05:04,320 --> 00:05:06,880 +you do add action on the button and you don't know + +89 +00:05:06,880 --> 00:05:11,660 +that it is an observer pattern Ok, let's + +90 +00:05:11,660 --> 00:05:14,460 +understand this example, I want to make a simple + +91 +00:05:14,460 --> 00:05:17,540 +application to draw shapes, ok? I have classes + +92 +00:05:17,540 --> 00:05:21,060 +that represent shapes, first I have an interface + +93 +00:05:21,060 --> 00:05:24,750 +called I shapeOn the basis that all shapes follow + +94 +00:05:24,750 --> 00:05:27,710 +this interface, there is a method called draw that + +95 +00:05:27,710 --> 00:05:29,190 +draws the shape and there is a method called + +96 +00:05:29,190 --> 00:05:32,550 +describe that gives me a description of my text on + +97 +00:05:32,550 --> 00:05:37,830 +this shape The first shape I made is called circle + +98 +00:05:39,120 --> 00:05:42,500 +which is a circle that implements I shape and then + +99 +00:05:42,500 --> 00:05:44,360 +gives it the characteristics of the circle which + +100 +00:05:44,360 --> 00:05:48,960 +is center and radius half a line then this is a + +101 +00:05:48,960 --> 00:05:52,520 +constructor setters and getters and in the end + +102 +00:05:52,520 --> 00:05:55,040 +there are two methods implement that are present + +103 +00:05:55,040 --> 00:05:57,560 +in the interface one of them is called draw which + +104 +00:05:57,560 --> 00:05:58,560 +is supposed to happen when I call it + +105 +00:06:04,740 --> 00:06:08,580 +Draw oval means to draw an oval shape. If you give + +106 +00:06:08,580 --> 00:06:11,240 +the oval shape the center and half of the circle + +107 +00:06:11,240 --> 00:06:13,580 +twice, which is the oval shape, consider that + +108 +00:06:13,580 --> 00:06:16,060 +there are two circles. If you put them next to + +109 +00:06:16,060 --> 00:06:17,540 +each other, what happens to the oval shape? + +110 +00:06:18,120 --> 00:06:21,740 +Circle. Describe, just repeat that this is the + +111 +00:06:21,740 --> 00:06:23,950 +center of the circle.The most important thing is + +112 +00:06:23,950 --> 00:06:25,910 +that I made another class that represents a + +113 +00:06:25,910 --> 00:06:29,210 +rectangle, the name of the class is rectangle, its + +114 +00:06:29,210 --> 00:06:33,630 +attributes are different, x and y are the point of + +115 +00:06:33,630 --> 00:06:37,950 +the rectangle's corner, and width and height are + +116 +00:06:37,950 --> 00:06:41,190 +length and widththis is constructor and the same + +117 +00:06:41,190 --> 00:06:44,010 +thing, I implemented two methods, draw that makes + +118 +00:06:44,010 --> 00:06:49,210 +a rectangle and describe that makes a rectangle + +119 +00:06:49,210 --> 00:06:52,390 +now I made a simple frame that is a small face, so + +120 +00:06:52,390 --> 00:06:55,930 +that when I click on the button, it draws a + +121 +00:06:55,930 --> 00:06:58,290 +circle, do you understand what I mean? because + +122 +00:06:58,290 --> 00:07:00,490 +when I click on the button, it is an action + +123 +00:07:00,490 --> 00:07:04,310 +performed in this swing, okay? I created an object + +124 +00:07:04,310 --> 00:07:08,940 +from COkay, and I give him the data of the circle, + +125 +00:07:09,420 --> 00:07:11,860 +which is the center, for example, and half of the + +126 +00:07:11,860 --> 00:07:17,140 +line is 100. Okay, and then I tell him c dot draw, + +127 +00:07:18,160 --> 00:07:20,460 +and you study it on the fragment itself, so I tell + +128 +00:07:20,460 --> 00:07:21,280 +him get graphics. + +129 +00:07:25,000 --> 00:07:28,320 +When will this code be executed? When I press the + +130 +00:07:28,320 --> 00:07:34,040 +button. Run.this is add shape and this is circle + +131 +00:07:34,040 --> 00:07:39,960 +if you want to draw a rectangle it's exactly the + +132 +00:07:39,960 --> 00:07:46,300 +same thing you say rectangle R new rectangle and + +133 +00:07:46,300 --> 00:07:51,600 +also give it a point 50 50 180 which is the width + +134 +00:07:51,600 --> 00:07:59,220 +and height rectangle free + +135 +00:08:02,400 --> 00:08:12,460 +and then R.draw.getGraphics() and make it run and + +136 +00:08:12,460 --> 00:08:16,240 +this is add shape and this is draw rectangle until + +137 +00:08:16,240 --> 00:08:20,480 +now the subject is trivial right or not guys? okay + +138 +00:08:20,480 --> 00:08:27,060 +now I asked you to make a circle with border so we + +139 +00:08:27,060 --> 00:08:30,480 +want to make a circle around the circle What does + +140 +00:08:30,480 --> 00:08:33,280 +this mean? That we are going to add a new + +141 +00:08:33,280 --> 00:08:35,360 +functionality. In the traditional way, what are + +142 +00:08:35,360 --> 00:08:38,100 +you going to do? Simply say, go and create a new + +143 +00:08:38,100 --> 00:08:42,040 +class called CircleWithBorder. + +144 +00:08:43,580 --> 00:08:47,760 +Okay? And right away, tell it what? Extends Circle + +145 +00:08:47,760 --> 00:08:53,240 +and so on and so forth in everything in the app. + +146 +00:08:53,640 --> 00:08:59,560 +Okay? And thenadd new attributes and override + +147 +00:08:59,560 --> 00:09:02,000 +things that you want to override so you say for + +148 +00:09:02,000 --> 00:09:08,160 +example int border-width this is for the width of + +149 +00:09:08,160 --> 00:09:14,580 +the border and I have color border-color + +150 +00:09:14,580 --> 00:09:18,520 +and + +151 +00:09:18,520 --> 00:09:20,380 +you want to put for example setters and getters + +152 +00:09:20,380 --> 00:09:21,580 +for whom? for the new attributes + +153 +00:09:28,190 --> 00:09:30,530 +We haven't drawn a border yet, we will give it an + +154 +00:09:30,530 --> 00:09:32,510 +attribute but we haven't drawn it yet So we will + +155 +00:09:32,510 --> 00:09:35,170 +change this gate to a method to draw, we will make + +156 +00:09:35,170 --> 00:09:38,210 +it overwrite The draw doesn't draw a border for + +157 +00:09:38,210 --> 00:09:40,050 +this gate So I will make it overwrite, I will tell + +158 +00:09:40,050 --> 00:09:45,470 +it to make an override for a method called draw It + +159 +00:09:45,470 --> 00:09:49,370 +doesn't need to be a super gate, I really want to + +160 +00:09:49,370 --> 00:09:51,710 +make a change I will show you how to make the + +161 +00:09:51,710 --> 00:09:54,630 +changeThe idea is not about how to make changes, + +162 +00:09:54,750 --> 00:09:57,270 +but about how to make changes. For example, I want + +163 +00:09:57,270 --> 00:10:00,730 +to make graphics 2D, + +164 +00:10:01,130 --> 00:10:02,090 +G2D. + +165 +00:10:41,670 --> 00:10:44,990 +Ok, these are the new additions, then I go and say + +166 +00:10:44,990 --> 00:10:51,870 +super or super + +167 +00:10:51,870 --> 00:10:59,710 +.draw Ok + +168 +00:10:59,710 --> 00:11:01,830 +guys, the idea of ​​the draw is to add a new + +169 +00:11:01,830 --> 00:11:04,870 +feature, which is to draw a border Which is what I + +170 +00:11:04,870 --> 00:11:08,430 +did to draw a border, I went and gave it color I + +171 +00:11:08,430 --> 00:11:12,450 +changed the color and gave it a stroke that takes + +172 +00:11:12,450 --> 00:11:16,050 +the width and then I told it to invoke the super + +173 +00:11:16,050 --> 00:11:19,330 +to draw it. It will invoke the super, it will draw + +174 +00:11:19,330 --> 00:11:23,570 +the circle, but after applying the new settings. + +175 +00:11:24,310 --> 00:11:26,650 +From the point of view, the point is not how to + +176 +00:11:26,650 --> 00:11:28,730 +draw a circle, the point is that I made an + +177 +00:11:28,730 --> 00:11:33,010 +override to add a new functionality, okay? And + +178 +00:11:33,010 --> 00:11:36,570 +this is also an override for whom? for describe, + +179 +00:11:37,210 --> 00:11:43,390 +here he used to say this is circle, so i want to + +180 +00:11:43,390 --> 00:11:51,070 +say return super dot describe plus with border of + +181 +00:11:51,070 --> 00:11:53,930 +color and with color for example, the important + +182 +00:11:53,930 --> 00:11:58,630 +thing is that we added a new feature that says + +183 +00:11:58,630 --> 00:12:02,530 +anything in the description with border Ok, the + +184 +00:12:02,530 --> 00:12:05,270 +speech now is simple Ok, until now we did the + +185 +00:12:05,270 --> 00:12:07,630 +class, but we didn't use it We need to go to my + +186 +00:12:07,630 --> 00:12:11,010 +frame Now, instead of creating a circle or + +187 +00:12:11,010 --> 00:12:14,230 +rectangle I found what I need to do I need to + +188 +00:12:14,230 --> 00:12:21,610 +create an object of type circle with border Ok + +189 +00:12:21,610 --> 00:12:29,230 +guys, this is cbnewcirclewithborder + +190 +00:12:30,780 --> 00:12:35,040 +and I give it the center and half of the line and + +191 +00:12:35,040 --> 00:12:37,900 +then go to the cb and give it the set border which + +192 +00:12:37,900 --> 00:12:46,160 +is the new attribute highcolor.red cb.width 3 for + +193 +00:12:46,160 --> 00:12:53,800 +example and then I tell it cb.draw get graphics + +194 +00:13:02,320 --> 00:13:07,280 +With me guys, make a run And it will add shape, it + +195 +00:13:07,280 --> 00:13:11,960 +will add a circle shape in a circle Ok, where is + +196 +00:13:11,960 --> 00:13:15,380 +the problem? Pay attention with me Because I made + +197 +00:13:15,380 --> 00:13:18,700 +a circle, I want to add a rectangle with border + +198 +00:13:18,700 --> 00:13:22,000 +The rectangle needs to have a border What will we + +199 +00:13:22,000 --> 00:13:25,030 +do? You will create a new class with the name + +200 +00:13:25,030 --> 00:13:27,810 +rectangle with border and extend the rectangle and + +201 +00:13:27,810 --> 00:13:30,410 +create an override for the new attribute list + +202 +00:13:30,410 --> 00:13:34,230 +which is border width and color and create an + +203 +00:13:34,230 --> 00:13:39,530 +override for the draw and describe Now + +204 +00:13:39,530 --> 00:13:43,130 +suppose + +205 +00:13:43,130 --> 00:13:45,590 +I have not one shape or two shapes or three shapes + +206 +00:13:45,590 --> 00:13:51,370 +I have ten shapes I have circle and rectangle + +207 +00:13:55,730 --> 00:14:00,150 +and I have a triangle and another shape and a + +208 +00:14:00,150 --> 00:14:02,750 +third and a fourth and a fifth and I want to add a + +209 +00:14:02,750 --> 00:14:07,910 +border to these shapes what should I do now?You + +210 +00:14:07,910 --> 00:14:09,870 +have to add, we have agreed or we have learned + +211 +00:14:09,870 --> 00:14:11,530 +always and we are happy from the first year of + +212 +00:14:11,530 --> 00:14:13,650 +university that you have to add new things, go and + +213 +00:14:13,650 --> 00:14:15,890 +make extend for the class and add them So you have + +214 +00:14:15,890 --> 00:14:18,430 +to go and make extend for this one to make a class + +215 +00:14:18,430 --> 00:14:22,610 +called circle with border CWB circle with border + +216 +00:14:22,610 --> 00:14:25,850 +And this is extend to make a new class called + +217 +00:14:25,850 --> 00:14:29,670 +rectangle with border And this is triangle with + +218 +00:14:29,670 --> 00:14:34,710 +borderSo if you have 10 shapes, how many + +219 +00:14:34,710 --> 00:14:37,690 +subclasses do you need to make? 10 subclasses. Ok, + +220 +00:14:37,990 --> 00:14:41,950 +I told you that we need to make solid shapes. What + +221 +00:14:41,950 --> 00:14:43,030 +do I mean by solid shapes? It means that now the + +222 +00:14:43,030 --> 00:14:45,330 +circle I'm drawing is separated. We need to make a + +223 +00:14:45,330 --> 00:14:49,030 +solid circle. Ok? This is a new feature. It needs + +224 +00:14:49,030 --> 00:14:52,210 +to fill the existing circle. So we need to modify + +225 +00:14:52,210 --> 00:14:56,170 +the main circle to make it.Where do we go to edit? + +226 +00:14:56,390 --> 00:14:58,510 +It has nothing to do with this border So you have + +227 +00:14:58,510 --> 00:15:04,310 +to make a new class called solid circle, C Extend + +228 +00:15:04,310 --> 00:15:08,850 +mean circle And you have to make a full rectangle + +229 +00:15:08,850 --> 00:15:13,430 +You have to make what? Solid rectangle Extend mean + +230 +00:15:13,430 --> 00:15:17,530 +rectangle So in order to add a solid feature to + +231 +00:15:17,530 --> 00:15:21,250 +the shapes I have I have to make them all extend I + +232 +00:15:21,250 --> 00:15:24,410 +have ten shapes and I have ten classes + +233 +00:15:26,550 --> 00:15:29,510 +So in order to add two features to a class, I need + +234 +00:15:29,510 --> 00:15:38,650 +to add 20 classes to the top 10. Is this a good + +235 +00:15:38,650 --> 00:15:41,650 +scenario or not? So every time I want to add a + +236 +00:15:41,650 --> 00:15:45,670 +feature to my 10 classes, I need to create 10 + +237 +00:15:45,670 --> 00:15:50,870 +subclasses. And this is bad. So will I have 10 + +238 +00:15:50,870 --> 00:15:52,050 +subclasses? Have you ever seen someone create a + +239 +00:15:52,050 --> 00:15:57,870 +GUI library? For example, JavaFX.It has a lot of + +240 +00:15:57,870 --> 00:16:00,590 +elements, right or not guys? All these elements + +241 +00:16:00,590 --> 00:16:03,230 +want to add borders to them. For example, you have + +242 +00:16:03,230 --> 00:16:07,150 +a text area, a combo box, a list drop list, and a + +243 +00:16:07,150 --> 00:16:11,610 +tab pane, right or not? There are many types of UI + +244 +00:16:11,610 --> 00:16:14,470 +components in Java, in X or any other library. + +245 +00:16:15,410 --> 00:16:19,990 +Okay? And we want to make a border for all the UI + +246 +00:16:19,990 --> 00:16:23,440 +components. For example, I have 30 UI components + +247 +00:16:23,440 --> 00:16:27,200 +in Javafix, at least this one. Each one of them + +248 +00:16:27,200 --> 00:16:30,680 +extends to add this feature. If I have 10 + +249 +00:16:30,680 --> 00:16:33,460 +features, I have to add them to the 30 UI + +250 +00:16:33,460 --> 00:16:37,320 +components. How many classes will I have? 10 + +251 +00:16:37,320 --> 00:16:43,980 +features in 30 main ones. I have 300 classes. This + +252 +00:16:43,980 --> 00:16:46,920 +is called the explosion of classes, like the + +253 +00:16:46,920 --> 00:16:51,470 +population explosion.This means that the + +254 +00:16:51,470 --> 00:16:54,830 +subclassing that we were happy with was good, we + +255 +00:16:54,830 --> 00:16:57,970 +did not say that it was invalid, but in some cases + +256 +00:16:57,970 --> 00:17:04,110 +it can cause a lot of classes. Because I want to + +257 +00:17:04,110 --> 00:17:08,210 +show you a way, I have 30 classes, I want to make + +258 +00:17:08,210 --> 00:17:10,190 +them a border, I want to make a single class, + +259 +00:17:11,570 --> 00:17:18,290 +that's it, I am a single featureIn one class, add + +260 +00:17:18,290 --> 00:17:23,150 +up to 30. So if I have 10 features, I make only 10 + +261 +00:17:23,150 --> 00:17:28,170 +classes, instead of making 300 classes. Do you + +262 +00:17:28,170 --> 00:17:31,330 +agree with me or not? Let's see how to apply this. + +263 +00:17:38,150 --> 00:17:40,810 +Let me explain how to do it and then I will draw + +264 +00:17:40,810 --> 00:17:45,210 +the UML diagram. What do you think Halgate? In our + +265 +00:17:45,210 --> 00:17:46,970 +example here, I have two shapes, circle and + +266 +00:17:46,970 --> 00:17:49,910 +rectangle. To make them a border, I have to make + +267 +00:17:49,910 --> 00:17:53,810 +two classes, circle with border and rectangle with + +268 +00:17:53,810 --> 00:17:57,750 +border.I didn't do rectangle with border but it's + +269 +00:17:57,750 --> 00:18:01,110 +the same idea Now I don't want to make circle with + +270 +00:18:01,110 --> 00:18:03,210 +border and rectangle with border I want to make + +271 +00:18:03,210 --> 00:18:07,070 +one class called border and add to the frame the + +272 +00:18:07,070 --> 00:18:11,010 +two, three or ten shapes that I have So I found + +273 +00:18:11,010 --> 00:18:15,410 +that I want to make a new class called border + +274 +00:18:18,660 --> 00:18:22,760 +First of all, make this class from the same type + +275 +00:18:22,760 --> 00:18:25,880 +of shapes. What does it mean? Make it from the + +276 +00:18:25,880 --> 00:18:25,880 +same type of shapes. What does it mean? Make it + +277 +00:18:25,880 --> 00:18:25,880 +from the same type of shapes. What does it mean? + +278 +00:18:25,880 --> 00:18:26,940 +Make it from the same type of shapes. What does it + +279 +00:18:26,940 --> 00:18:28,020 +mean? Make it from the same type of shapes. What + +280 +00:18:28,020 --> 00:18:28,200 +does it mean? Make it from the same type of + +281 +00:18:28,200 --> 00:18:28,640 +shapes. What does it mean? Make it from the same + +282 +00:18:28,640 --> 00:18:28,920 +type of shapes. What does it mean? Make it from + +283 +00:18:28,920 --> 00:18:28,920 +the same type of shapes. What does it mean? Make + +284 +00:18:28,920 --> 00:18:28,920 +it from the same type of shapes. What does it + +285 +00:18:28,920 --> 00:18:28,920 +mean? Make it from the same type of shapes. What + +286 +00:18:28,920 --> 00:18:28,920 +does it mean? Make it from the same type of + +287 +00:18:28,920 --> 00:18:29,140 +shapes. What does it mean? Make it from the same + +288 +00:18:29,140 --> 00:18:29,140 +type of shapes. What does it mean? Make it from + +289 +00:18:29,140 --> 00:18:29,940 +the same type of shapes. What does it mean? Make + +290 +00:18:29,940 --> 00:18:35,820 +it from the same type of shapes. What does it + +291 +00:18:35,820 --> 00:18:38,600 +mean? Make it from the same type of shapes. What + +292 +00:18:38,600 --> 00:18:40,520 +does it mean? Make it from the same type of + +293 +00:18:40,520 --> 00:18:45,250 +shapes. an object of type .. pay attention to me + +294 +00:18:45,250 --> 00:18:47,450 +and then I will explain to you ok? an object of + +295 +00:18:47,450 --> 00:18:49,810 +type shape notice that there is a strange thing + +296 +00:18:49,810 --> 00:18:52,830 +that this is of type shape and inside it contains + +297 +00:18:52,830 --> 00:18:56,150 +what? an object of type shape of course this is a + +298 +00:18:56,150 --> 00:18:58,790 +null value so we need to create a constructor to + +299 +00:18:58,790 --> 00:19:06,990 +initialize it + +300 +00:19:06,990 --> 00:19:11,250 +ok + +301 +00:19:11,250 --> 00:19:18,640 +guys? ok we are almost done now look with me now + +302 +00:19:18,640 --> 00:19:24,000 +my goal is to add a border right? what are the + +303 +00:19:24,000 --> 00:19:29,480 +attributes of any border? I have border int border + +304 +00:19:29,480 --> 00:19:36,900 +-width and color border-color + +305 +00:19:36,900 --> 00:19:39,680 +and the same thing we want to do with these + +306 +00:19:39,680 --> 00:19:41,200 +setters + +307 +00:19:52,790 --> 00:19:56,810 +Okay, I got the idea that the shape that I want to + +308 +00:19:56,810 --> 00:20:02,610 +draw, okay? I want to add a frame to it. Now, what + +309 +00:20:02,610 --> 00:20:06,110 +does this constructor take? I shape. Why did you + +310 +00:20:06,110 --> 00:20:08,690 +let him take I shape? So that I can send him a + +311 +00:20:08,690 --> 00:20:11,470 +circle, rectangle, triangle and any other shape. + +312 +00:20:12,150 --> 00:20:15,870 +Okay? Then, in this draw, what do I really want to + +313 +00:20:15,870 --> 00:20:24,630 +do? Okay? I'm going to add my new code Do you + +314 +00:20:24,630 --> 00:20:27,790 +remember the code that we used to do? Circle with + +315 +00:20:27,790 --> 00:20:31,550 +rectangle Circle with border This is the code, do + +316 +00:20:31,550 --> 00:20:34,970 +you see it? What does it do? It applies the new + +317 +00:20:34,970 --> 00:20:44,230 +color and the new border width Why + +318 +00:20:44,230 --> 00:20:48,770 +can't I see the border?Width, what is this? We + +319 +00:20:48,770 --> 00:20:53,090 +wrote it wrong, so we go and edit it, but what? + +320 +00:20:53,270 --> 00:21:04,230 +Down here, border-width Where + +321 +00:21:04,230 --> 00:21:07,810 +is six? Yes, six border-width + +322 +00:21:10,500 --> 00:21:14,960 +okay, we came here in the draw this is the + +323 +00:21:14,960 --> 00:21:18,520 +border's draw do like this and then what do I do? + +324 +00:21:18,640 --> 00:21:23,460 +I tell him to go to shape and tell him to draw and + +325 +00:21:23,460 --> 00:21:29,100 +send me G to D now describe I want to describe the + +326 +00:21:29,100 --> 00:21:35,240 +shape I want to tell him to return shape.describe + +327 +00:21:35,240 --> 00:21:36,660 +and then here I tell him with + +328 +00:21:39,930 --> 00:21:42,590 +with border Okay, what did I do? You will say this + +329 +00:21:42,590 --> 00:21:46,030 +is the same thing we did No, look with me Because + +330 +00:21:46,030 --> 00:21:49,670 +I made a class called border Actually, this border + +331 +00:21:49,670 --> 00:21:54,790 +covers the shape It doesn't extend it, it covers + +332 +00:21:54,790 --> 00:22:00,190 +it Okay, look with me I + +333 +00:22:00,190 --> 00:22:05,610 +have two ways to add new features to any class + +334 +00:22:05,610 --> 00:22:07,330 +Subclassing + +335 +00:22:09,930 --> 00:22:12,270 +If we assume that I have a class that has + +336 +00:22:12,270 --> 00:22:15,130 +attributes, these attributes for example, and + +337 +00:22:15,130 --> 00:22:18,910 +methods, okay? These are one, two, three, and + +338 +00:22:18,910 --> 00:22:22,330 +these methods are one, two, three. I would like to + +339 +00:22:22,330 --> 00:22:24,630 +add a new functionality. What does a new + +340 +00:22:24,630 --> 00:22:27,550 +functionality mean? It means new attributes, new + +341 +00:22:27,550 --> 00:22:31,250 +methods, or modifying old methods. I go and create + +342 +00:22:31,250 --> 00:22:34,910 +a new class. What is the goal? Subclassing. + +343 +00:22:35,190 --> 00:22:43,470 +Extend, okay?I don't write 1,2,3 I write x4 and x5 + +344 +00:22:43,470 --> 00:22:48,750 +as new attributes and I don't write 1,2,3 I write + +345 +00:22:48,750 --> 00:22:54,890 +4 and five and if I want to modify one of these I + +346 +00:22:54,890 --> 00:22:58,170 +can override it and through it I can claim the + +347 +00:22:58,170 --> 00:23:00,750 +super for example or I can change the code in it + +348 +00:23:00,750 --> 00:23:04,250 +completely this is in the case of subclasses + +349 +00:23:04,250 --> 00:23:06,470 +beautiful and excellent and what makes it special + +350 +00:23:06,470 --> 00:23:09,570 +is that you will not rewrite the code in the app + +351 +00:23:09,570 --> 00:23:13,590 +as we learned but the problem is that if I have + +352 +00:23:13,590 --> 00:23:16,010 +ten classes and I want to add new features to them + +353 +00:23:16,010 --> 00:23:20,320 +you have to do x2 to the tenThe second way is the + +354 +00:23:20,320 --> 00:23:22,680 +decorator way. + +355 +00:23:24,300 --> 00:23:25,720 +What does it mean? I want to add a new + +356 +00:23:25,720 --> 00:23:29,800 +functionality, I don't want to do subclassing, I + +357 +00:23:29,800 --> 00:23:32,440 +want to create an object from the old classAnd + +358 +00:23:32,440 --> 00:23:36,620 +wrap it with a new object This wrapping puts in + +359 +00:23:36,620 --> 00:23:39,480 +new things How for example, let's go back to the + +360 +00:23:39,480 --> 00:23:44,060 +same example This class has x x x and has a circle + +361 +00:23:44,060 --> 00:23:47,620 +circle circle This is feature 1,2,3 and this is 1 + +362 +00:23:47,620 --> 00:23:51,960 +,2,3 I would like to add new features, new + +363 +00:23:51,960 --> 00:23:55,820 +attributes, new methods, modifications to previous + +364 +00:23:55,820 --> 00:23:58,240 +methods Because if we assume that this class is + +365 +00:23:58,240 --> 00:24:05,530 +called AGo and create a new class Inside it, + +366 +00:24:05,850 --> 00:24:10,310 +create an object from what? From what? This is an + +367 +00:24:10,310 --> 00:24:15,110 +object from this, okay? So, this thing actually + +368 +00:24:15,110 --> 00:24:19,770 +contains on x x x one two three, right? And on a + +369 +00:24:19,770 --> 00:24:22,790 +circle circle circle one two three This is an + +370 +00:24:22,790 --> 00:24:27,910 +object, object from whom? From this classOkay, did + +371 +00:24:27,910 --> 00:24:31,970 +you notice that the class of addition, the client + +372 +00:24:31,970 --> 00:24:36,250 +sees it as this? What does addition mean? It is + +373 +00:24:36,250 --> 00:24:41,590 +supposed to be as if this includes this with + +374 +00:24:41,590 --> 00:24:45,170 +additions. But again, I confirm that this did not + +375 +00:24:45,170 --> 00:24:49,770 +extend. So really, I do not see anything inside + +376 +00:24:49,770 --> 00:24:51,270 +these. I am from outside, did you notice? This is + +377 +00:24:51,270 --> 00:24:53,110 +the class. When I create an object from it, is + +378 +00:24:53,110 --> 00:24:55,570 +there a method? No, the client will not see + +379 +00:24:56,370 --> 00:24:59,350 +Anything else, so he says what are you doing? Now, + +380 +00:25:00,150 --> 00:25:02,510 +why am I doing this? Because I want to add new + +381 +00:25:02,510 --> 00:25:05,670 +things What are the new things? They are xx which + +382 +00:25:05,670 --> 00:25:09,250 +are 4 and 5, they will add new attributes to us, + +383 +00:25:09,290 --> 00:25:13,990 +okay? Then you add a new method, put 4 and 5, + +384 +00:25:14,070 --> 00:25:17,350 +these are new methods for them But I still have a + +385 +00:25:17,350 --> 00:25:20,770 +problem that 1 and 2 and 3, I don't see them from + +386 +00:25:20,770 --> 00:25:24,170 +here, right? So he says 1 and 2 and 3, go back and + +387 +00:25:24,170 --> 00:25:30,330 +do what? write them again if there are ten methods + +388 +00:25:30,330 --> 00:25:33,050 +here you have to write the ten here but what does + +389 +00:25:33,050 --> 00:25:37,910 +it do when I call one of the covers one will call + +390 +00:25:37,910 --> 00:25:42,150 +one of the objects inside when I call two from + +391 +00:25:42,150 --> 00:25:45,530 +here this calls two from here when I call three + +392 +00:25:45,530 --> 00:25:50,990 +this calls three from here because my goal is that + +393 +00:25:50,990 --> 00:25:56,390 +I have to see thisIt's like this, but with new + +394 +00:25:56,390 --> 00:25:58,690 +features Because if I create an object from this, + +395 +00:25:59,990 --> 00:26:03,870 +I will see x1 and x1 and x1 and x1 and x1 and x1 + +396 +00:26:03,870 --> 00:26:04,930 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +397 +00:26:04,930 --> 00:26:05,050 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +398 +00:26:05,050 --> 00:26:06,670 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +399 +00:26:06,670 --> 00:26:08,570 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +400 +00:26:08,570 --> 00:26:10,690 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +401 +00:26:10,690 --> 00:26:10,690 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +402 +00:26:10,690 --> 00:26:10,690 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +403 +00:26:10,690 --> 00:26:10,690 +and x1 and x1 and x1 and x1 and x1 and x1 and x1 + +404 +00:26:10,690 --> 00:26:13,870 +and x1 and x1 and x1 and x1 and x1 and + +405 +00:26:13,870 --> 00:26:18,810 +x1I will see new things, yes I will see 4 and 5, + +406 +00:26:18,910 --> 00:26:22,390 +and I will see attributes 4 and 5, this is adding + +407 +00:26:22,390 --> 00:26:26,990 +new things to this, using the decorator method, or + +408 +00:26:26,990 --> 00:26:29,250 +sometimes we call it wrapper, what is a wrapper? + +409 +00:26:30,230 --> 00:26:31,610 +It is a cover, don't you hear the word chicken + +410 +00:26:31,610 --> 00:26:39,050 +wrap? Yes, this is a wrapper, a cover, now I added + +411 +00:26:39,050 --> 00:26:42,980 +new features, but it has pros and consWhat are its + +412 +00:26:42,980 --> 00:26:48,100 +disadvantages? Notice that I had to rewrite the + +413 +00:26:48,100 --> 00:26:50,620 +same methods here with the conversion to the inner + +414 +00:26:50,620 --> 00:26:53,620 +object. Here, no, I did not need to write one, two + +415 +00:26:53,620 --> 00:26:58,980 +and three. Okay, it overwhelmed us a bit, but the + +416 +00:26:58,980 --> 00:27:02,900 +idea that came up is that this cover can be + +417 +00:27:02,900 --> 00:27:06,260 +covered by anything, that is, if this is of the + +418 +00:27:06,260 --> 00:27:09,620 +type that takes a certain interface I, any object + +419 +00:27:09,620 --> 00:27:14,420 +of type I can be placed here.So this envelope goes + +420 +00:27:14,420 --> 00:27:19,920 +with any object of the type of the interface As if + +421 +00:27:19,920 --> 00:27:22,600 +you are making a frame and you change the image + +422 +00:27:22,600 --> 00:27:27,180 +inside it Now let's come to our example here We + +423 +00:27:27,180 --> 00:27:29,000 +haven't finished this example yet, let's apply it, + +424 +00:27:29,020 --> 00:27:33,000 +let's see how it works I actually made a class + +425 +00:27:33,000 --> 00:27:36,340 +called border, which is this class What wraps + +426 +00:27:36,340 --> 00:27:41,660 +inside it? Object of the type shape So this is the + +427 +00:27:41,660 --> 00:27:46,500 +inner object Now, what are the new attributes and + +428 +00:27:46,500 --> 00:27:49,460 +classes that I added? I added new attributes which + +429 +00:27:49,460 --> 00:27:53,500 +are border-width and border-color This is border + +430 +00:27:53,500 --> 00:27:59,520 +-width and border-color This is four and five This + +431 +00:27:59,520 --> 00:28:04,480 +is the constructor to send the shape inside Now, + +432 +00:28:04,640 --> 00:28:08,520 +this is the method of draw The inner object has a + +433 +00:28:08,520 --> 00:28:14,890 +drawwhich is for example 1 I am supposed to see + +434 +00:28:14,890 --> 00:28:20,390 +the cover as I see the real object so I wrote 1 in + +435 +00:28:20,390 --> 00:28:23,970 +the class this is 1 which I wrote in the class + +436 +00:28:23,970 --> 00:28:29,110 +this is class 1 but of course through 1 look with + +437 +00:28:29,110 --> 00:28:33,550 +me which is right 1 to draw I started shape.draw + +438 +00:28:34,650 --> 00:28:36,850 +What does it mean? It means that this draw is + +439 +00:28:36,850 --> 00:28:41,290 +equivalent to the draw that is in the shape. This + +440 +00:28:41,290 --> 00:28:45,030 +is the transformation. And also through describe, + +441 +00:28:46,530 --> 00:28:48,090 +the shape is equivalent to the describe. In the + +442 +00:28:48,090 --> 00:28:52,770 +past, we used to do super to describe. Okay? But + +443 +00:28:52,770 --> 00:28:56,650 +with some changes, which are what I want. That is, + +444 +00:28:56,710 --> 00:28:58,890 +when you make a draw, before you implement the + +445 +00:28:58,890 --> 00:29:01,830 +draw on your shape, add the adjustments that I + +446 +00:29:01,830 --> 00:29:05,670 +want, then make the draw.Describe is the same + +447 +00:29:05,670 --> 00:29:10,330 +thing. I want to make a shape and describe it and + +448 +00:29:10,330 --> 00:29:14,650 +add whatever I want to it. How many classes did I + +449 +00:29:14,650 --> 00:29:18,130 +make? One class takes shape. Let's take advantage + +450 +00:29:18,130 --> 00:29:22,550 +of it. Go to the frame that I have. Before I had + +451 +00:29:22,550 --> 00:29:24,770 +to make circle with border and rectangle with + +452 +00:29:24,770 --> 00:29:28,110 +border. Did you notice? All you have to do is to + +453 +00:29:28,110 --> 00:29:31,420 +make an object from circle, the basic class. With + +454 +00:29:31,420 --> 00:29:35,180 +me or not guys? Because this basic class we want + +455 +00:29:35,180 --> 00:29:38,080 +to add a border to it All you have to do is to + +456 +00:29:38,080 --> 00:29:40,500 +create an object from border B that is equal to + +457 +00:29:40,500 --> 00:29:45,360 +new border And what happens to the minus sign? The + +458 +00:29:45,360 --> 00:29:50,620 +C will accept the C because C is a shapenow all + +459 +00:29:50,620 --> 00:29:54,260 +you need to do is to give him your border's + +460 +00:29:54,260 --> 00:29:56,880 +properties which is border color for example color + +461 +00:29:56,880 --> 00:30:06,960 +.red and go b.set border width for example 3 and + +462 +00:30:06,960 --> 00:30:09,780 +the last step I should deal with the border as I + +463 +00:30:09,780 --> 00:30:11,960 +would deal with the circle there is a method + +464 +00:30:11,960 --> 00:30:16,380 +called draw and say get graphics + +465 +00:30:22,500 --> 00:30:27,820 +Let's create a circle with + +466 +00:30:27,820 --> 00:30:31,300 +a circle shape Now I want to create a rectangle + +467 +00:30:31,300 --> 00:30:37,960 +with border All you need to do is type rectangle R + +468 +00:30:37,960 --> 00:30:43,580 +new rectangle + +469 +00:30:43,580 --> 00:30:46,840 +180 + +470 +00:30:46,840 --> 00:30:47,440 +for example + +471 +00:30:52,710 --> 00:31:01,430 +and here R rectangle I didn't make a new class I + +472 +00:31:01,430 --> 00:31:04,010 +brought rectangle and made it the same object of + +473 +00:31:04,010 --> 00:31:09,410 +type border and it will run add shape and it will + +474 +00:31:09,410 --> 00:31:15,420 +add border to it and if you have any other shapeI + +475 +00:31:15,420 --> 00:31:20,460 +mean, if I have 10 shapes, and I make only one + +476 +00:31:20,460 --> 00:31:23,260 +class for each of them, I add this new + +477 +00:31:23,260 --> 00:31:23,260 +functionality. + +478 +00:31:26,820 --> 00:31:33,320 +Now, using the decorator method. I have two ways + +479 +00:31:33,320 --> 00:31:35,740 +to add any feature to a class. The first way is + +480 +00:31:35,740 --> 00:31:40,100 +subclassing.means you were searched, right or + +481 +00:31:40,100 --> 00:31:41,480 +wrong, we talked about it a lot and it took you + +482 +00:31:41,480 --> 00:31:43,420 +two years and you are happy with it. The second + +483 +00:31:43,420 --> 00:31:46,960 +way is to use the decorator method. I want to add + +484 +00:31:46,960 --> 00:31:49,700 +a new functionality to the class. You create an + +485 +00:31:49,700 --> 00:31:53,340 +object from your class and wrap it with another + +486 +00:31:53,340 --> 00:31:57,600 +object from the class. The way of wrapping this, + +487 +00:31:57,640 --> 00:32:00,870 +or the decorator we call it, or the wrapperIt's + +488 +00:32:00,870 --> 00:32:03,590 +difficult because you have to use the methods in + +489 +00:32:03,590 --> 00:32:08,190 +your object to create it here because the client + +490 +00:32:08,190 --> 00:32:12,870 +sees the cover as it sees what's inside. So 1,2,3, + +491 +00:32:12,910 --> 00:32:15,870 +I made them here 1,2,3, but I let it transform + +492 +00:32:15,870 --> 00:32:19,230 +from inside. We didn't do this here. We used to do + +493 +00:32:19,230 --> 00:32:20,990 +subclassing, missequation, because you don't want + +494 +00:32:20,990 --> 00:32:23,650 +to write code. Here you want to write code with + +495 +00:32:23,650 --> 00:32:26,840 +transformation and adding additional quotes.And + +496 +00:32:26,840 --> 00:32:29,960 +you can add more methods For example, I will not + +497 +00:32:29,960 --> 00:32:33,020 +add more things here Of course, what will be extra + +498 +00:32:33,020 --> 00:32:35,860 +if there are setters and getters For border width + +499 +00:32:35,860 --> 00:32:40,580 +and border color These are considered four or five + +500 +00:32:40,580 --> 00:32:44,500 +But the advantage of the decorator method is that + +501 +00:32:44,500 --> 00:32:49,920 +I can change the inner object Of different types, + +502 +00:32:50,140 --> 00:32:54,840 +so it's like a cover It can cover any type of + +503 +00:32:54,840 --> 00:32:59,660 +shapeSo the addition is made with one class only + +504 +00:32:59,660 --> 00:33:02,900 +So if I have 30 classes, I want to add 10 + +505 +00:33:02,900 --> 00:33:09,380 +additions to them For example, I made a border now + +506 +00:33:09,380 --> 00:33:13,440 +We want to make a scroll bar for the shapes Or + +507 +00:33:13,440 --> 00:33:17,040 +solid shapes You only need to make one class + +508 +00:33:17,040 --> 00:33:21,920 +called solid And it takes any shape of the type + +509 +00:33:21,920 --> 00:33:25,840 +shape And it creates an implement for the method + +510 +00:33:25,840 --> 00:33:30,680 +draw that you write to it So that you give it a + +511 +00:33:30,680 --> 00:33:33,420 +color and tell it to fill it And then it draws the + +512 +00:33:33,420 --> 00:33:37,220 +shape again to get shape.draw Not super.draw, + +513 +00:33:37,440 --> 00:33:42,720 +shape.draw So really I only need one class to make + +514 +00:33:42,720 --> 00:33:47,280 +solid So each new feature is one class instead of + +515 +00:33:47,280 --> 00:33:51,560 +ten classes As I said in JavaFX, I have many UI + +516 +00:33:51,560 --> 00:33:56,450 +components I want to make a scrollbar for them I + +517 +00:33:56,450 --> 00:33:58,890 +want to make a scrollbar for the text area, a + +518 +00:33:58,890 --> 00:34:01,130 +scrollbar for the tab pane I want to add this + +519 +00:34:01,130 --> 00:34:06,250 +scrollbar and tell it to make a text area with + +520 +00:34:06,250 --> 00:34:10,390 +scrollbar and make it a new class Text area with + +521 +00:34:10,390 --> 00:34:12,330 +scrollbar with border and make it a new class, + +522 +00:34:12,390 --> 00:34:15,830 +look at the possibilities it has, it increases No, + +523 +00:34:16,230 --> 00:34:19,170 +make a class, one scrollbar and wrap it in any + +524 +00:34:19,170 --> 00:34:25,500 +form of UI componentNow, where did we get the idea + +525 +00:34:25,500 --> 00:34:28,700 +guys? So we have two ways of adding, the way of + +526 +00:34:28,700 --> 00:34:33,460 +subclassing and the way of the decorator Because + +527 +00:34:33,460 --> 00:34:37,080 +this doesn't mean that the subclassing is bad and + +528 +00:34:37,080 --> 00:34:40,180 +you don't use it, okay? No, you will say, okay, + +529 +00:34:40,320 --> 00:34:42,580 +the doctor came, the subclassing has a problem, + +530 +00:34:42,960 --> 00:34:47,320 +let's do what? The decorator all his life No, you + +531 +00:34:47,320 --> 00:34:50,970 +are supposed to use the subclassingBut let's say + +532 +00:34:50,970 --> 00:34:54,470 +that in some cases, using subclassing will cause + +533 +00:34:54,470 --> 00:34:57,250 +an explosion of classes, a large number of + +534 +00:34:57,250 --> 00:35:01,010 +classes. When you need to add these ten classes to + +535 +00:35:01,010 --> 00:35:04,250 +make another ten classes, there is a negativity + +536 +00:35:04,250 --> 00:35:07,270 +here. So you resort to using a decorator to make + +537 +00:35:07,270 --> 00:35:10,830 +one class to add the feature to the ten you have. + +538 +00:35:11,710 --> 00:35:14,290 +So if the use of subclassing causes the creation + +539 +00:35:14,290 --> 00:35:16,270 +of a large number of classes, then you resort to + +540 +00:35:16,270 --> 00:35:17,490 +the decorator. + +541 +00:35:20,660 --> 00:35:27,960 +Now, based on this talk, let's see where we are in + +542 +00:35:27,960 --> 00:35:32,380 +Java or + +543 +00:35:32,380 --> 00:35:36,560 +in JavaFX. We use the decorator pattern, and you + +544 +00:35:36,560 --> 00:35:39,940 +use the decorator pattern, and you don't know that + +545 +00:35:39,940 --> 00:35:41,380 +this is an application on the decorator. + +546 +00:35:44,140 --> 00:35:49,040 +I told you in Java how to write and read files.So + +547 +00:35:49,040 --> 00:35:52,100 +he used to say for example to write on file go and + +548 +00:35:52,100 --> 00:36:00,980 +create object from file output stream of + +549 +00:36:00,980 --> 00:36:05,360 +FOS for example that I named it equals new file + +550 +00:36:05,360 --> 00:36:11,220 +output stream and it takes object from type for + +551 +00:36:11,220 --> 00:36:14,830 +example file Now, if you want to write the output + +552 +00:36:14,830 --> 00:36:18,370 +stream file directly by using it, it is annoying + +553 +00:36:18,370 --> 00:36:20,590 +because it has a write method and it takes binary + +554 +00:36:20,590 --> 00:36:23,730 +data, for example. Okay? So it is difficult to use + +555 +00:36:23,730 --> 00:36:26,470 +it. So to make it easier to use it, it told you to + +556 +00:36:26,470 --> 00:36:32,610 +create another object from PrintWriter.pr + +557 +00:36:32,610 --> 00:36:37,750 +and you give it PrintWriter + +558 +00:36:37,750 --> 00:36:39,010 +and you give it the file + +559 +00:36:41,870 --> 00:36:43,610 +This is how they used to say connect this one with + +560 +00:36:43,610 --> 00:36:46,250 +this one. So what is the advantage of the print + +561 +00:36:46,250 --> 00:36:49,750 +writer? You go and tell him PR and the print + +562 +00:36:49,750 --> 00:36:52,070 +writer tells you to write on the file as if you + +563 +00:36:52,070 --> 00:36:53,970 +were writing on the screen. You don't have to make + +564 +00:36:53,970 --> 00:36:58,730 +a print lin like system.out. You write the text + +565 +00:36:58,730 --> 00:37:06,580 +you want on the file. For example, when you write + +566 +00:37:06,580 --> 00:37:09,580 +an object file, it will also tell you to create a + +567 +00:37:09,580 --> 00:37:11,920 +file output stream, then create an object output + +568 +00:37:11,920 --> 00:37:14,900 +stream, connect it to the output stream, and write + +569 +00:37:14,900 --> 00:37:17,120 +a write object. It will take the object that you + +570 +00:37:17,120 --> 00:37:19,640 +created, for example, a student or a course, and + +571 +00:37:19,640 --> 00:37:25,060 +serialize it and write it on the file. Okay, why + +572 +00:37:25,060 --> 00:37:26,800 +did we do it this way? They used to say, okay, do + +573 +00:37:26,800 --> 00:37:29,780 +it this way, we want to do it this way. Yes, do it + +574 +00:37:29,780 --> 00:37:31,540 +this way and connect it to this way, and it turns + +575 +00:37:31,540 --> 00:37:34,670 +out this way.Okay? So why did they do it this way? + +576 +00:37:34,950 --> 00:37:37,390 +And why do you connect this with this? Okay? Pay + +577 +00:37:37,390 --> 00:37:40,910 +attention to me. In Java, we have different types + +578 +00:37:40,910 --> 00:37:45,070 +of output streams. Okay? For example, we have a + +579 +00:37:45,070 --> 00:37:46,190 +file output stream. + +580 +00:37:50,030 --> 00:37:53,290 +Which is what is in her hand to write on the file. + +581 +00:37:53,590 --> 00:37:55,770 +Binary data is written on the file. And for + +582 +00:37:55,770 --> 00:37:57,450 +example, we have a socket output stream. + +583 +00:38:02,700 --> 00:38:05,080 +What is it for? To write on the network. You give + +584 +00:38:05,080 --> 00:38:07,200 +it a specific IP and it writes on the network. You + +585 +00:38:07,200 --> 00:38:10,360 +can make a chat program on another device or send + +586 +00:38:10,360 --> 00:38:12,660 +files to another device. You use the output stream + +587 +00:38:12,660 --> 00:38:14,320 +socket. This is written on the file and this is + +588 +00:38:14,320 --> 00:38:17,160 +written on the socket. And there are other types + +589 +00:38:17,160 --> 00:38:19,100 +of output streams. I did not bring them with me + +590 +00:38:19,100 --> 00:38:23,180 +this time. Now, all of these are output streams. + +591 +00:38:23,800 --> 00:38:25,480 +Actually, when you want to write data on them, you + +592 +00:38:25,480 --> 00:38:26,940 +want to write the data in binary data. That is, + +593 +00:38:26,940 --> 00:38:28,300 +you want to send a string, you have to turn the + +594 +00:38:28,300 --> 00:38:32,630 +string into characters and binary and a story.So I + +595 +00:38:32,630 --> 00:38:34,770 +found that they made it easy for us, they let us + +596 +00:38:34,770 --> 00:38:36,950 +say whatever output stream you have, whatever you + +597 +00:38:36,950 --> 00:38:38,390 +send to the network, whatever you send to files, + +598 +00:38:38,530 --> 00:38:39,250 +whatever you send to whatever you send to whatever + +599 +00:38:39,250 --> 00:38:40,590 +you send to whatever you send to whatever you send + +600 +00:38:40,590 --> 00:38:40,650 +to whatever you send to whatever you send to + +601 +00:38:40,650 --> 00:38:40,710 +whatever you send to whatever you send to whatever + +602 +00:38:40,710 --> 00:38:40,730 +you send to whatever you send to whatever you send + +603 +00:38:40,730 --> 00:38:40,870 +to whatever you send to whatever you send to + +604 +00:38:40,870 --> 00:38:41,010 +whatever you send to whatever you send to whatever + +605 +00:38:41,010 --> 00:38:42,150 +you send to whatever you send to whatever you send + +606 +00:38:42,150 --> 00:38:42,390 +to whatever you send to whatever you send to + +607 +00:38:42,390 --> 00:38:42,390 +whatever you send to whatever you send to whatever + +608 +00:38:42,390 --> 00:38:42,690 +you send to whatever you send to whatever you send + +609 +00:38:42,690 --> 00:38:43,090 +to whatever you send to whatever you send to + +610 +00:38:43,090 --> 00:38:44,010 +whatever you send to whatever you send to whatever + +611 +00:38:44,010 --> 00:38:44,170 +you send to whatever you send to whatever you send + +612 +00:38:44,170 --> 00:38:44,190 +to whatever you send to whatever you send to + +613 +00:38:44,190 --> 00:38:44,190 +whatever you send to whatever you send to whatever + +614 +00:38:44,190 --> 00:38:44,190 +you send to whatever you send to whatever you send + +615 +00:38:44,190 --> 00:38:44,990 +to whatever you send to whatever you send to + +616 +00:38:44,990 --> 00:38:45,530 +whatever you send to whatever you send to whatever + +617 +00:38:45,530 --> 00:38:50,890 +you send to whatever you send to whatever + +618 +00:38:50,890 --> 00:38:55,190 +you send to whatever youSimple, how do we do it? + +619 +00:38:55,330 --> 00:38:59,190 +We go to the file output stream and make an extend + +620 +00:38:59,190 --> 00:39:05,810 +to a new class called string writing file output + +621 +00:39:05,810 --> 00:39:13,270 +stream and make an extend to this new class and + +622 +00:39:13,270 --> 00:39:19,390 +make a method called printlnthis is where I made + +623 +00:39:19,390 --> 00:39:21,950 +this method, it takes a string where did I make + +624 +00:39:21,950 --> 00:39:25,210 +this method? in the new class, in the subclass on + +625 +00:39:25,210 --> 00:39:28,210 +the basis that in the print string it takes the + +626 +00:39:28,210 --> 00:39:31,030 +string and converts it to binary and prepares it + +627 +00:39:31,030 --> 00:39:39,530 +as a byte array and calls super.writeBytes + +628 +00:39:39,530 --> 00:39:43,670 +for example there + +629 +00:39:43,670 --> 00:39:47,810 +is a new feature that I added to the subclassOf + +630 +00:39:47,810 --> 00:39:49,690 +course, if I want to write on a file, I don't need + +631 +00:39:49,690 --> 00:39:52,130 +to create an object from it. I need to create an + +632 +00:39:52,130 --> 00:39:55,510 +object from the subclass and use it. And we live + +633 +00:39:55,510 --> 00:39:59,250 +our life happily. But wait, we have ten other + +634 +00:39:59,250 --> 00:40:02,230 +output streams. So you will have to go to the + +635 +00:40:02,230 --> 00:40:05,110 +output stream socket and create a new subclass and + +636 +00:40:05,110 --> 00:40:08,790 +class, and create a print method in it, take a + +637 +00:40:08,790 --> 00:40:12,070 +string, and do the same conversion process, and + +638 +00:40:12,070 --> 00:40:12,910 +then say super, + +639 +00:40:16,330 --> 00:40:19,850 +.WriteBytesToSocket() which is the method here or + +640 +00:40:19,850 --> 00:40:23,090 +write bytes and give it to it to add the same + +641 +00:40:23,090 --> 00:40:27,950 +feature to this one I had to do subclasses if I + +642 +00:40:27,950 --> 00:40:29,530 +have ten output streams and this is what exists, + +643 +00:40:29,730 --> 00:40:31,570 +types of output streams, there is a buffered + +644 +00:40:31,570 --> 00:40:35,650 +output stream written on the memory each one has + +645 +00:40:35,650 --> 00:40:39,690 +to do what? extend to add a new feature what is + +646 +00:40:39,690 --> 00:40:43,100 +this story? every time I have an output streamAnd + +647 +00:40:43,100 --> 00:40:44,940 +in order to support her writing a string, I wanted + +648 +00:40:44,940 --> 00:40:47,260 +to extend it to a new class to add this feature, + +649 +00:40:47,720 --> 00:40:50,480 +and she said, no, we let you go She said, instead + +650 +00:40:50,480 --> 00:40:53,180 +of making this class, and this class, and this + +651 +00:40:53,180 --> 00:40:59,400 +class, we made one class, all of them with the + +652 +00:40:59,400 --> 00:41:02,780 +name PrintWriter + +653 +00:41:05,430 --> 00:41:07,670 +Okay? How did they design this print writer? + +654 +00:41:09,430 --> 00:41:12,270 +Inside it, it is wrapped with an object of the + +655 +00:41:12,270 --> 00:41:15,070 +type of output stream. + +656 +00:41:16,590 --> 00:41:23,130 +Just like we wrapped the circle or the shape, we + +657 +00:41:23,130 --> 00:41:27,130 +wrapped it with what? With a border. The output + +658 +00:41:27,130 --> 00:41:30,870 +stream was wrapped with what? Yes, with a print + +659 +00:41:30,870 --> 00:41:34,570 +writer.And of course, he made a constructor. I'm + +660 +00:41:34,570 --> 00:41:38,070 +sitting in this gate. Imagine how the print writer + +661 +00:41:38,070 --> 00:41:39,630 +looks like. He made a constructor called + +662 +00:41:39,630 --> 00:41:42,050 +printWriter. + +663 +00:41:42,910 --> 00:41:47,370 +It takes an object from it and outputs a stream, + +664 +00:41:47,590 --> 00:41:51,070 +which is OOS. To initialize to whom? To the OOS + +665 +00:41:51,070 --> 00:41:56,470 +here. Okay? And then he made a new method. Here, + +666 +00:41:56,670 --> 00:42:01,370 +public, void for example. Its name is printLin. + +667 +00:42:02,930 --> 00:42:07,750 +Okay? This thing takes a string. It needs to add a + +668 +00:42:07,750 --> 00:42:10,670 +new property that takes the string and converts it + +669 +00:42:10,670 --> 00:42:13,870 +to binary data and then comes to the output stream + +670 +00:42:13,870 --> 00:42:17,430 +and tells it to write bytes. + +671 +00:42:21,490 --> 00:42:24,630 +Am I right or not, guys? In this class, the output + +672 +00:42:24,630 --> 00:42:26,610 +stream is enclosed. What is the advantage of this + +673 +00:42:26,610 --> 00:42:29,030 +method? Because this output stream is the + +674 +00:42:29,030 --> 00:42:34,070 +interface for whom? All their fathers.You can + +675 +00:42:34,070 --> 00:42:36,950 +create an object from the print writer and send it + +676 +00:42:36,950 --> 00:42:40,530 +a file output stream, socket output stream, + +677 +00:42:41,190 --> 00:42:44,130 +buffered output stream, whatever output stream. + +678 +00:42:45,070 --> 00:42:49,410 +And all of them execute a print train. This gives + +679 +00:42:49,410 --> 00:42:51,970 +you a new feature, which is the ability to write + +680 +00:42:51,970 --> 00:42:54,890 +texts on the output stream regardless of the type + +681 +00:42:54,890 --> 00:42:59,590 +of output stream. This means that this print + +682 +00:42:59,590 --> 00:43:05,080 +writer is a wrapperto the output stream to add to + +683 +00:43:05,080 --> 00:43:09,180 +it the ability to write texts. Why did they do it + +684 +00:43:09,180 --> 00:43:10,580 +this way? They used to tell you to memorize it + +685 +00:43:10,580 --> 00:43:13,620 +this way. Why? That's it. Make a file output + +686 +00:43:13,620 --> 00:43:15,940 +stream and make a print writer and pass this to + +687 +00:43:15,940 --> 00:43:19,780 +this. Actually, this is an addition of a feature + +688 +00:43:19,780 --> 00:43:23,960 +to whom? To the object that you pass here. Without + +689 +00:43:23,960 --> 00:43:27,580 +this method, I had to add this feature to make a + +690 +00:43:27,580 --> 00:43:30,690 +subclass for eachoutput stream is present on it. + +691 +00:43:31,270 --> 00:43:35,030 +So this is really an application for whom? For the + +692 +00:43:35,030 --> 00:43:37,490 +decorator. Any output stream that connects them + +693 +00:43:37,490 --> 00:43:40,030 +together, and in reading too, connects them + +694 +00:43:40,030 --> 00:43:41,970 +together, this is all an application for whom, + +695 +00:43:42,050 --> 00:43:44,930 +guys? For the decorator. It connects together and + +696 +00:43:44,930 --> 00:43:47,930 +you don't know what it is. No, did you get the + +697 +00:43:47,930 --> 00:43:50,510 +idea that this is an application for whom? For the + +698 +00:43:50,510 --> 00:43:54,310 +decorator. And we understood why they did that. I + +699 +00:43:54,310 --> 00:43:56,150 +could also tell you to make an object out of this + +700 +00:43:56,150 --> 00:43:59,370 +class and write on it.So why do I connect this + +701 +00:43:59,370 --> 00:44:02,650 +with this with this? To add new features to each + +702 +00:44:02,650 --> 00:44:05,610 +existing object. Because without this, it would + +703 +00:44:05,610 --> 00:44:10,050 +have to appear in a large number of subclasses. + +704 +00:44:10,950 --> 00:44:14,410 +Another example, in the java.fx that you use, I'm + +705 +00:44:14,410 --> 00:44:16,430 +sure you've taken it. What's the name of the text + +706 +00:44:16,430 --> 00:44:19,930 +area? Text area, and there's a text field, and + +707 +00:44:19,930 --> 00:44:21,390 +there's a tab, and there's I don't know what. + +708 +00:44:21,910 --> 00:44:25,130 +You'd like to add a border to any of these. Has + +709 +00:44:25,130 --> 00:44:27,910 +anyone tried to add a border to the text area in + +710 +00:44:27,910 --> 00:44:34,230 +java.fx? No, there is a class called border, + +711 +00:44:35,090 --> 00:44:39,130 +scroll type, scroll pane, there is scroll for + +712 +00:44:39,130 --> 00:44:43,830 +shapes I will go back to java swing, the swing + +713 +00:44:43,830 --> 00:44:49,710 +library, for example we have scroll paneIt means + +714 +00:44:49,710 --> 00:44:52,590 +you have to add to any scroll shape, create an + +715 +00:44:52,590 --> 00:44:55,010 +object of the type of scroll pane and give it the + +716 +00:44:55,010 --> 00:44:59,350 +shape you want. You add the scroll to it. This is + +717 +00:44:59,350 --> 00:45:02,470 +instead of going to every class and extend it to + +718 +00:45:02,470 --> 00:45:05,650 +add a scroll to the specific shape. This is also + +719 +00:45:05,650 --> 00:45:08,890 +an application for the border, for the decorator + +720 +00:45:08,890 --> 00:45:14,260 +pattern.Okay guys, there are two ways to add new + +721 +00:45:14,260 --> 00:45:17,800 +features, either subclassing or decorator The + +722 +00:45:17,800 --> 00:45:21,620 +original is always to use subclassing, because I + +723 +00:45:21,620 --> 00:45:24,730 +don't need to write what's already thereBut if the + +724 +00:45:24,730 --> 00:45:27,990 +result of using subclassing is a lot of classes, + +725 +00:45:28,070 --> 00:45:30,570 +like the examples we saw earlier, I prefer to use + +726 +00:45:30,570 --> 00:45:33,150 +the decorator which is a class that encloses + +727 +00:45:33,150 --> 00:45:35,570 +another class to add additional features to it. + +728 +00:45:35,770 --> 00:45:38,250 +Like when we made a circle and enclosed it with a + +729 +00:45:38,250 --> 00:45:41,370 +border, or a rectangle and enclosed it with a + +730 +00:45:41,370 --> 00:45:44,230 +border as well. I have ten shapes and I make one + +731 +00:45:44,230 --> 00:45:46,130 +class to add the feature, instead of having to + +732 +00:45:46,130 --> 00:45:49,370 +make ten classes for ten shapes, and this is the + +733 +00:45:49,370 --> 00:45:52,760 +idea of the decorator pattern.We took an example + +734 +00:45:52,760 --> 00:45:54,100 +today to clarify the decorator. In the next + +735 +00:45:54,100 --> 00:45:57,420 +lecture, we will read what is in the slides, see + +736 +00:45:57,420 --> 00:46:00,140 +the UML diagram of the decorator and see another + +737 +00:46:00,140 --> 00:46:01,580 +example, God willing, and God bless you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/joiohBVTA9Y_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/joiohBVTA9Y_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..946892d912e85858f1fa999142ae557e094b0134 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/joiohBVTA9Y_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 639, "start": 5.23, "end": 6.39, "text": "طب يا جماعة السلام عليكم", "tokens": [9566, 3555, 35186, 10874, 15042, 27884, 21136, 37440, 25894, 24793], "avg_logprob": -0.16051136634566568, "compression_ratio": 0.8627450980392157, "no_speech_prob": 0.0, "words": [{"start": 5.23, "end": 5.51, "word": "طب", "probability": 0.8310546875}, {"start": 5.51, "end": 5.59, "word": " يا", "probability": 0.95947265625}, {"start": 5.59, "end": 5.81, "word": " جماعة", "probability": 0.990234375}, {"start": 5.81, "end": 6.05, "word": " السلام", "probability": 0.760009765625}, {"start": 6.05, "end": 6.39, "word": " عليكم", "probability": 0.781005859375}], "temperature": 1.0}, {"id": 2, "seek": 3785, "start": 9.43, "end": 37.85, "text": "Before we move on to a new topic, I would like to go back to a slide that I did not explain in the previous lecture, which is the UML diagram for the flyweight design pattern that we actually use in the factory. Before I talk about the UML diagram that is in front of you, let's remember the example that we explained in the previous lecture and drop its parts on the UML diagram so that you can better understand it. In the previous lecture, we had a question that I wanted to design a pine tree.", "tokens": [49731, 321, 1286, 322, 281, 257, 777, 4829, 11, 286, 576, 411, 281, 352, 646, 281, 257, 4137, 300, 286, 630, 406, 2903, 294, 264, 3894, 7991, 11, 597, 307, 264, 624, 12683, 10686, 337, 264, 3603, 12329, 1715, 5102, 300, 321, 767, 764, 294, 264, 9265, 13, 4546, 286, 751, 466, 264, 624, 12683, 10686, 300, 307, 294, 1868, 295, 291, 11, 718, 311, 1604, 264, 1365, 300, 321, 8825, 294, 264, 3894, 7991, 293, 3270, 1080, 3166, 322, 264, 624, 12683, 10686, 370, 300, 291, 393, 1101, 1223, 309, 13, 682, 264, 3894, 7991, 11, 321, 632, 257, 1168, 300, 286, 1415, 281, 1715, 257, 15113, 4230, 13], "avg_logprob": -0.4149774656639443, "compression_ratio": 1.8272058823529411, "no_speech_prob": 0.1357421875, "words": [{"start": 9.43, "end": 9.87, "word": "Before", "probability": 0.42626953125}, {"start": 9.87, "end": 10.01, "word": " we", "probability": 0.53466796875}, {"start": 10.01, "end": 10.19, "word": " move", "probability": 0.11395263671875}, {"start": 10.19, "end": 10.29, "word": " on", "probability": 0.5908203125}, {"start": 10.29, "end": 10.29, "word": " to", "probability": 0.7783203125}, {"start": 10.29, "end": 10.63, "word": " a", "probability": 0.38720703125}, {"start": 10.63, "end": 10.79, "word": " new", "probability": 0.85400390625}, {"start": 10.79, "end": 10.81, "word": " topic,", "probability": 0.76806640625}, {"start": 11.17, "end": 11.33, "word": " I", "probability": 0.338623046875}, {"start": 11.33, "end": 11.51, "word": " would", "probability": 0.347412109375}, {"start": 11.51, "end": 11.55, "word": " like", "probability": 0.90185546875}, {"start": 11.55, "end": 11.61, "word": " to", "probability": 0.953125}, {"start": 11.61, "end": 11.83, "word": " go", "probability": 0.421875}, {"start": 11.83, "end": 11.83, "word": " back", "probability": 0.8544921875}, {"start": 11.83, "end": 12.05, "word": " to", "probability": 0.9375}, {"start": 12.05, "end": 12.47, "word": " a", "probability": 0.69970703125}, {"start": 12.47, "end": 12.87, "word": " slide", "probability": 0.77001953125}, {"start": 12.87, "end": 13.35, "word": " that", "probability": 0.36474609375}, {"start": 13.35, "end": 13.39, "word": " I", "probability": 0.8447265625}, {"start": 13.39, "end": 13.47, "word": " did", "probability": 0.50390625}, {"start": 13.47, "end": 13.47, "word": " not", "probability": 0.9384765625}, {"start": 13.47, "end": 13.71, "word": " explain", "probability": 0.65576171875}, {"start": 13.71, "end": 13.99, "word": " in", "probability": 0.7998046875}, {"start": 13.99, "end": 14.01, "word": " the", "probability": 0.68310546875}, {"start": 14.01, "end": 14.61, "word": " previous", "probability": 0.54150390625}, {"start": 14.61, "end": 14.61, "word": " lecture,", "probability": 0.78515625}, {"start": 14.99, "end": 15.05, "word": " which", "probability": 0.73681640625}, {"start": 15.05, "end": 15.21, "word": " is", "probability": 0.8837890625}, {"start": 15.21, "end": 15.29, "word": " the", "probability": 0.8212890625}, {"start": 15.29, "end": 15.51, "word": " UML", "probability": 0.6519775390625}, {"start": 15.51, "end": 15.87, "word": " diagram", "probability": 0.85107421875}, {"start": 15.87, "end": 16.91, "word": " for", "probability": 0.50341796875}, {"start": 16.91, "end": 16.95, "word": " the", "probability": 0.806640625}, {"start": 16.95, "end": 17.45, "word": " flyweight", "probability": 0.7015380859375}, {"start": 17.45, "end": 17.81, "word": " design", "probability": 0.88037109375}, {"start": 17.81, "end": 18.27, "word": " pattern", "probability": 0.86181640625}, {"start": 18.27, "end": 18.77, "word": " that", "probability": 0.466064453125}, {"start": 18.77, "end": 18.91, "word": " we", "probability": 0.783203125}, {"start": 18.91, "end": 19.05, "word": " actually", "probability": 0.386474609375}, {"start": 19.05, "end": 19.29, "word": " use", "probability": 0.8896484375}, {"start": 19.29, "end": 19.97, "word": " in", "probability": 0.88623046875}, {"start": 19.97, "end": 20.03, "word": " the", "probability": 0.76220703125}, {"start": 20.03, "end": 20.39, "word": " factory.", "probability": 0.86083984375}, {"start": 20.71, "end": 21.15, "word": " Before", "probability": 0.400634765625}, {"start": 21.15, "end": 21.71, "word": " I", "probability": 0.8232421875}, {"start": 21.71, "end": 23.59, "word": " talk", "probability": 0.537109375}, {"start": 23.59, "end": 23.73, "word": " about", "probability": 0.896484375}, {"start": 23.73, "end": 23.83, "word": " the", "probability": 0.79541015625}, {"start": 23.83, "end": 24.07, "word": " UML", "probability": 0.9111328125}, {"start": 24.07, "end": 24.37, "word": " diagram", "probability": 0.720703125}, {"start": 24.37, "end": 24.91, "word": " that", "probability": 0.3984375}, {"start": 24.91, "end": 24.97, "word": " is", "probability": 0.36328125}, {"start": 24.97, "end": 25.17, "word": " in", "probability": 0.44091796875}, {"start": 25.17, "end": 25.43, "word": " front", "probability": 0.93603515625}, {"start": 25.43, "end": 25.53, "word": " of", "probability": 0.96142578125}, {"start": 25.53, "end": 25.69, "word": " you,", "probability": 0.921875}, {"start": 26.19, "end": 26.57, "word": " let's", "probability": 0.7861328125}, {"start": 26.57, "end": 26.99, "word": " remember", "probability": 0.482177734375}, {"start": 26.99, "end": 27.29, "word": " the", "probability": 0.86865234375}, {"start": 27.29, "end": 27.57, "word": " example", "probability": 0.95166015625}, {"start": 27.57, "end": 27.71, "word": " that", "probability": 0.6767578125}, {"start": 27.71, "end": 27.73, "word": " we", "probability": 0.74560546875}, {"start": 27.73, "end": 27.93, "word": " explained", "probability": 0.60986328125}, {"start": 27.93, "end": 28.13, "word": " in", "probability": 0.91650390625}, {"start": 28.13, "end": 28.15, "word": " the", "probability": 0.90576171875}, {"start": 28.15, "end": 28.67, "word": " previous", "probability": 0.73046875}, {"start": 28.67, "end": 28.67, "word": " lecture", "probability": 0.90380859375}, {"start": 28.67, "end": 28.83, "word": " and", "probability": 0.67578125}, {"start": 28.83, "end": 29.09, "word": " drop", "probability": 0.1964111328125}, {"start": 29.09, "end": 29.25, "word": " its", "probability": 0.49462890625}, {"start": 29.25, "end": 29.53, "word": " parts", "probability": 0.4609375}, {"start": 29.53, "end": 29.91, "word": " on", "probability": 0.44384765625}, {"start": 29.91, "end": 30.73, "word": " the", "probability": 0.5185546875}, {"start": 30.73, "end": 30.95, "word": " UML", "probability": 0.895263671875}, {"start": 30.95, "end": 31.25, "word": " diagram", "probability": 0.75634765625}, {"start": 31.25, "end": 31.41, "word": " so", "probability": 0.37060546875}, {"start": 31.41, "end": 31.41, "word": " that", "probability": 0.77685546875}, {"start": 31.41, "end": 31.51, "word": " you", "probability": 0.9521484375}, {"start": 31.51, "end": 31.53, "word": " can", "probability": 0.62939453125}, {"start": 31.53, "end": 31.75, "word": " better", "probability": 0.495849609375}, {"start": 31.75, "end": 31.75, "word": " understand", "probability": 0.73681640625}, {"start": 31.75, "end": 32.95, "word": " it.", "probability": 0.88818359375}, {"start": 33.19, "end": 33.63, "word": " In", "probability": 0.75390625}, {"start": 33.63, "end": 33.67, "word": " the", "probability": 0.89990234375}, {"start": 33.67, "end": 33.67, "word": " previous", "probability": 0.73779296875}, {"start": 33.67, "end": 34.27, "word": " lecture,", "probability": 0.93896484375}, {"start": 34.65, "end": 34.83, "word": " we", "probability": 0.75732421875}, {"start": 34.83, "end": 34.87, "word": " had", "probability": 0.80908203125}, {"start": 34.87, "end": 35.75, "word": " a", "probability": 0.9033203125}, {"start": 35.75, "end": 36.01, "word": " question", "probability": 0.89453125}, {"start": 36.01, "end": 36.19, "word": " that", "probability": 0.405517578125}, {"start": 36.19, "end": 36.31, "word": " I", "probability": 0.56787109375}, {"start": 36.31, "end": 36.53, "word": " wanted", "probability": 0.5615234375}, {"start": 36.53, "end": 36.63, "word": " to", "probability": 0.9716796875}, {"start": 36.63, "end": 36.81, "word": " design", "probability": 0.95458984375}, {"start": 36.81, "end": 36.95, "word": " a", "probability": 0.9677734375}, {"start": 36.95, "end": 37.45, "word": " pine", "probability": 0.54248046875}, {"start": 37.45, "end": 37.85, "word": " tree.", "probability": 0.84375}], "temperature": 1.0}, {"id": 3, "seek": 6664, "start": 39.4, "end": 66.64, "text": "Trees have attributes, some of them are heavy and some of them are light. Heavy attributes are not repeated often, they should be limited in number and I use them a lot in objects. For example, I make a thousand trees. These thousand trees have three types or three colors or three shapes.", "tokens": [51, 4856, 362, 17212, 11, 512, 295, 552, 366, 4676, 293, 512, 295, 552, 366, 1442, 13, 26473, 17212, 366, 406, 10477, 2049, 11, 436, 820, 312, 5567, 294, 1230, 293, 286, 764, 552, 257, 688, 294, 6565, 13, 1171, 1365, 11, 286, 652, 257, 4714, 5852, 13, 1981, 4714, 5852, 362, 1045, 3467, 420, 1045, 4577, 420, 1045, 10854, 13], "avg_logprob": -0.5524193413795964, "compression_ratio": 1.670520231213873, "no_speech_prob": 0.0, "words": [{"start": 39.4, "end": 39.96, "word": "Trees", "probability": 0.50830078125}, {"start": 39.96, "end": 40.16, "word": " have", "probability": 0.8447265625}, {"start": 40.16, "end": 40.8, "word": " attributes,", "probability": 0.323486328125}, {"start": 41.4, "end": 41.74, "word": " some", "probability": 0.81201171875}, {"start": 41.74, "end": 42.32, "word": " of", "probability": 0.383056640625}, {"start": 42.32, "end": 42.32, "word": " them", "probability": 0.64404296875}, {"start": 42.32, "end": 42.4, "word": " are", "probability": 0.6337890625}, {"start": 42.4, "end": 42.64, "word": " heavy", "probability": 0.8046875}, {"start": 42.64, "end": 43.14, "word": " and", "probability": 0.34033203125}, {"start": 43.14, "end": 44.8, "word": " some", "probability": 0.70703125}, {"start": 44.8, "end": 44.86, "word": " of", "probability": 0.387939453125}, {"start": 44.86, "end": 45.0, "word": " them", "probability": 0.90673828125}, {"start": 45.0, "end": 45.0, "word": " are", "probability": 0.91748046875}, {"start": 45.0, "end": 45.78, "word": " light.", "probability": 0.86279296875}, {"start": 46.32, "end": 46.88, "word": " Heavy", "probability": 0.472900390625}, {"start": 46.88, "end": 47.64, "word": " attributes", "probability": 0.87646484375}, {"start": 47.64, "end": 48.64, "word": " are", "probability": 0.580078125}, {"start": 48.64, "end": 48.64, "word": " not", "probability": 0.52392578125}, {"start": 48.64, "end": 49.02, "word": " repeated", "probability": 0.5263671875}, {"start": 49.02, "end": 49.72, "word": " often,", "probability": 0.1796875}, {"start": 51.4, "end": 52.68, "word": " they", "probability": 0.4462890625}, {"start": 52.68, "end": 53.6, "word": " should", "probability": 0.3251953125}, {"start": 53.6, "end": 54.32, "word": " be", "probability": 0.70263671875}, {"start": 54.32, "end": 55.14, "word": " limited", "probability": 0.6982421875}, {"start": 55.14, "end": 55.14, "word": " in", "probability": 0.3095703125}, {"start": 55.14, "end": 55.34, "word": " number", "probability": 0.54248046875}, {"start": 55.34, "end": 55.76, "word": " and", "probability": 0.70947265625}, {"start": 55.76, "end": 55.86, "word": " I", "probability": 0.292236328125}, {"start": 55.86, "end": 56.2, "word": " use", "probability": 0.7939453125}, {"start": 56.2, "end": 56.72, "word": " them", "probability": 0.64111328125}, {"start": 56.72, "end": 56.88, "word": " a", "probability": 0.48486328125}, {"start": 56.88, "end": 57.84, "word": " lot", "probability": 0.9560546875}, {"start": 57.84, "end": 58.02, "word": " in", "probability": 0.76904296875}, {"start": 58.02, "end": 58.64, "word": " objects.", "probability": 0.8125}, {"start": 58.8, "end": 58.96, "word": " For", "probability": 0.79248046875}, {"start": 58.96, "end": 59.12, "word": " example,", "probability": 0.90673828125}, {"start": 59.28, "end": 59.34, "word": " I", "probability": 0.85205078125}, {"start": 59.34, "end": 59.6, "word": " make", "probability": 0.70703125}, {"start": 59.6, "end": 59.72, "word": " a", "probability": 0.35986328125}, {"start": 59.72, "end": 59.9, "word": " thousand", "probability": 0.84228515625}, {"start": 59.9, "end": 60.26, "word": " trees.", "probability": 0.9169921875}, {"start": 61.34, "end": 61.82, "word": " These", "probability": 0.458740234375}, {"start": 61.82, "end": 62.02, "word": " thousand", "probability": 0.38427734375}, {"start": 62.02, "end": 62.48, "word": " trees", "probability": 0.91259765625}, {"start": 62.48, "end": 63.14, "word": " have", "probability": 0.60107421875}, {"start": 63.14, "end": 63.46, "word": " three", "probability": 0.80810546875}, {"start": 63.46, "end": 63.78, "word": " types", "probability": 0.56201171875}, {"start": 63.78, "end": 64.42, "word": " or", "probability": 0.56396484375}, {"start": 64.42, "end": 64.66, "word": " three", "probability": 0.6689453125}, {"start": 64.66, "end": 65.1, "word": " colors", "probability": 0.83349609375}, {"start": 65.1, "end": 65.54, "word": " or", "probability": 0.453369140625}, {"start": 65.54, "end": 66.34, "word": " three", "probability": 0.86279296875}, {"start": 66.34, "end": 66.64, "word": " shapes.", "probability": 0.7490234375}], "temperature": 1.0}, {"id": 4, "seek": 9613, "start": 67.75, "end": 96.13, "text": " So these 1000 trees will share one of the three attributes. For example, all the trees are either red or green or orange. Okay? So this is actually what we call the repeating state. Or the heavy state. Or it was named in the previous lecture as the intrinsic state.", "tokens": [407, 613, 9714, 5852, 486, 2073, 472, 295, 264, 1045, 17212, 13, 1171, 1365, 11, 439, 264, 5852, 366, 2139, 2182, 420, 3092, 420, 7671, 13, 1033, 30, 407, 341, 307, 767, 437, 321, 818, 264, 18617, 1785, 13, 1610, 264, 4676, 1785, 13, 1610, 309, 390, 4926, 294, 264, 3894, 7991, 382, 264, 35698, 1785, 13], "avg_logprob": -0.5387930983099444, "compression_ratio": 1.5113636363636365, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 67.75, "end": 68.19, "word": " So", "probability": 0.2369384765625}, {"start": 68.19, "end": 68.97, "word": " these", "probability": 0.1842041015625}, {"start": 68.97, "end": 69.27, "word": " 1000", "probability": 0.490478515625}, {"start": 69.27, "end": 69.63, "word": " trees", "probability": 0.876953125}, {"start": 69.63, "end": 71.03, "word": " will", "probability": 0.64599609375}, {"start": 71.03, "end": 71.39, "word": " share", "probability": 0.240966796875}, {"start": 71.39, "end": 73.33, "word": " one", "probability": 0.6923828125}, {"start": 73.33, "end": 73.59, "word": " of", "probability": 0.931640625}, {"start": 73.59, "end": 73.67, "word": " the", "probability": 0.33935546875}, {"start": 73.67, "end": 73.91, "word": " three", "probability": 0.55908203125}, {"start": 73.91, "end": 74.43, "word": " attributes.", "probability": 0.87158203125}, {"start": 74.73, "end": 75.11, "word": " For", "probability": 0.19677734375}, {"start": 75.11, "end": 75.11, "word": " example,", "probability": 0.904296875}, {"start": 75.11, "end": 75.11, "word": " all", "probability": 0.347900390625}, {"start": 75.11, "end": 75.15, "word": " the", "probability": 0.408203125}, {"start": 75.15, "end": 75.41, "word": " trees", "probability": 0.87646484375}, {"start": 75.41, "end": 76.13, "word": " are", "probability": 0.435791015625}, {"start": 76.13, "end": 76.19, "word": " either", "probability": 0.66650390625}, {"start": 76.19, "end": 76.49, "word": " red", "probability": 0.875}, {"start": 76.49, "end": 76.71, "word": " or", "probability": 0.470947265625}, {"start": 76.71, "end": 77.01, "word": " green", "probability": 0.90087890625}, {"start": 77.01, "end": 77.17, "word": " or", "probability": 0.95556640625}, {"start": 77.17, "end": 77.55, "word": " orange.", "probability": 0.8828125}, {"start": 77.95, "end": 78.19, "word": " Okay?", "probability": 0.1876220703125}, {"start": 79.13, "end": 79.39, "word": " So", "probability": 0.7734375}, {"start": 79.39, "end": 79.91, "word": " this", "probability": 0.52587890625}, {"start": 79.91, "end": 79.97, "word": " is", "probability": 0.67236328125}, {"start": 79.97, "end": 80.29, "word": " actually", "probability": 0.403564453125}, {"start": 80.29, "end": 80.41, "word": " what", "probability": 0.6162109375}, {"start": 80.41, "end": 80.63, "word": " we", "probability": 0.9560546875}, {"start": 80.63, "end": 81.07, "word": " call", "probability": 0.88037109375}, {"start": 81.07, "end": 81.49, "word": " the", "probability": 0.6044921875}, {"start": 81.49, "end": 81.87, "word": " repeating", "probability": 0.8486328125}, {"start": 81.87, "end": 82.43, "word": " state.", "probability": 0.95166015625}, {"start": 88.41, "end": 89.09, "word": " Or", "probability": 0.83154296875}, {"start": 89.09, "end": 89.39, "word": " the", "probability": 0.6640625}, {"start": 89.39, "end": 89.61, "word": " heavy", "probability": 0.8056640625}, {"start": 89.61, "end": 90.09, "word": " state.", "probability": 0.94775390625}, {"start": 92.59, "end": 93.27, "word": " Or", "probability": 0.88232421875}, {"start": 93.27, "end": 93.43, "word": " it", "probability": 0.2498779296875}, {"start": 93.43, "end": 93.55, "word": " was", "probability": 0.46435546875}, {"start": 93.55, "end": 93.83, "word": " named", "probability": 0.390380859375}, {"start": 93.83, "end": 94.25, "word": " in", "probability": 0.343994140625}, {"start": 94.25, "end": 94.45, "word": " the", "probability": 0.828125}, {"start": 94.45, "end": 94.45, "word": " previous", "probability": 0.529296875}, {"start": 94.45, "end": 94.79, "word": " lecture", "probability": 0.8798828125}, {"start": 94.79, "end": 95.23, "word": " as", "probability": 0.465576171875}, {"start": 95.23, "end": 95.29, "word": " the", "probability": 0.497802734375}, {"start": 95.29, "end": 95.77, "word": " intrinsic", "probability": 0.64208984375}, {"start": 95.77, "end": 96.13, "word": " state.", "probability": 0.87158203125}], "temperature": 1.0}, {"id": 5, "seek": 10305, "start": 97.81, "end": 103.05, "text": "state, الحالة الداخلية أو الجوهرية which is the internal or essential state", "tokens": [15406, 11, 21542, 6027, 3660, 32748, 47283, 1211, 10632, 34051, 25724, 2407, 3224, 2288, 10632, 597, 307, 264, 6920, 420, 7115, 1785], "avg_logprob": -0.4877717443134474, "compression_ratio": 1.1123595505617978, "no_speech_prob": 3.516674041748047e-06, "words": [{"start": 97.81, "end": 98.23, "word": "state,", "probability": 0.8271484375}, {"start": 98.29, "end": 98.61, "word": " الحالة", "probability": 0.8250325520833334}, {"start": 98.61, "end": 99.11, "word": " الداخلية", "probability": 0.984130859375}, {"start": 99.11, "end": 99.21, "word": " أو", "probability": 0.473876953125}, {"start": 99.21, "end": 99.87, "word": " الجوهرية", "probability": 0.94599609375}, {"start": 99.87, "end": 100.75, "word": " which", "probability": 0.305908203125}, {"start": 100.75, "end": 101.65, "word": " is", "probability": 0.7236328125}, {"start": 101.65, "end": 102.05, "word": " the", "probability": 0.296142578125}, {"start": 102.05, "end": 103.01, "word": " internal", "probability": 0.33837890625}, {"start": 103.01, "end": 103.03, "word": " or", "probability": 0.477294921875}, {"start": 103.03, "end": 103.05, "word": " essential", "probability": 0.2451171875}, {"start": 103.05, "end": 103.05, "word": " state", "probability": 0.830078125}], "temperature": 1.0}, {"id": 6, "seek": 13321, "start": 104.17, "end": 133.21, "text": "What I do with it is a limited number and I use it in a large way in all the objects that I make. Which is what was represented in our lecture in the basic class that I called basic tree. Right? The one that had texture and color in it. Okay? Because I found that the attributes were divided into two classes. The class is called the basic tree. And there is another class called the pine tree. Okay? Which actually used an attribute from whom?", "tokens": [3748, 286, 360, 365, 309, 307, 257, 5567, 1230, 293, 286, 764, 309, 294, 257, 2416, 636, 294, 439, 264, 6565, 300, 286, 652, 13, 3013, 307, 437, 390, 10379, 294, 527, 7991, 294, 264, 3875, 1508, 300, 286, 1219, 3875, 4230, 13, 1779, 30, 440, 472, 300, 632, 2487, 374, 68, 293, 2017, 294, 309, 13, 1033, 30, 1436, 286, 1352, 300, 264, 17212, 645, 6666, 666, 732, 5359, 13, 440, 1508, 307, 1219, 264, 3875, 4230, 13, 400, 456, 307, 1071, 1508, 1219, 264, 15113, 4230, 13, 1033, 30, 3013, 767, 1143, 364, 19667, 490, 7101, 30], "avg_logprob": -0.585312482714653, "compression_ratio": 1.7689243027888446, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 104.17, "end": 104.41, "word": "What", "probability": 0.0927734375}, {"start": 104.41, "end": 104.61, "word": " I", "probability": 0.857421875}, {"start": 104.61, "end": 104.85, "word": " do", "probability": 0.46435546875}, {"start": 104.85, "end": 104.99, "word": " with", "probability": 0.229736328125}, {"start": 104.99, "end": 105.07, "word": " it", "probability": 0.564453125}, {"start": 105.07, "end": 105.13, "word": " is", "probability": 0.84814453125}, {"start": 105.13, "end": 105.17, "word": " a", "probability": 0.400146484375}, {"start": 105.17, "end": 105.65, "word": " limited", "probability": 0.748046875}, {"start": 105.65, "end": 105.65, "word": " number", "probability": 0.75830078125}, {"start": 105.65, "end": 106.07, "word": " and", "probability": 0.427978515625}, {"start": 106.07, "end": 106.19, "word": " I", "probability": 0.75927734375}, {"start": 106.19, "end": 106.47, "word": " use", "probability": 0.8251953125}, {"start": 106.47, "end": 106.73, "word": " it", "probability": 0.89599609375}, {"start": 106.73, "end": 106.77, "word": " in", "probability": 0.311767578125}, {"start": 106.77, "end": 106.83, "word": " a", "probability": 0.281005859375}, {"start": 106.83, "end": 107.99, "word": " large", "probability": 0.457275390625}, {"start": 107.99, "end": 107.99, "word": " way", "probability": 0.394287109375}, {"start": 107.99, "end": 108.17, "word": " in", "probability": 0.6728515625}, {"start": 108.17, "end": 108.39, "word": " all", "probability": 0.76025390625}, {"start": 108.39, "end": 108.45, "word": " the", "probability": 0.46875}, {"start": 108.45, "end": 108.75, "word": " objects", "probability": 0.92919921875}, {"start": 108.75, "end": 108.87, "word": " that", "probability": 0.382568359375}, {"start": 108.87, "end": 108.95, "word": " I", "probability": 0.97998046875}, {"start": 108.95, "end": 109.19, "word": " make.", "probability": 0.5322265625}, {"start": 109.89, "end": 110.07, "word": " Which", "probability": 0.339599609375}, {"start": 110.07, "end": 110.21, "word": " is", "probability": 0.394775390625}, {"start": 110.21, "end": 110.43, "word": " what", "probability": 0.454345703125}, {"start": 110.43, "end": 110.57, "word": " was", "probability": 0.495361328125}, {"start": 110.57, "end": 110.83, "word": " represented", "probability": 0.14990234375}, {"start": 110.83, "end": 111.13, "word": " in", "probability": 0.9111328125}, {"start": 111.13, "end": 111.21, "word": " our", "probability": 0.73095703125}, {"start": 111.21, "end": 111.55, "word": " lecture", "probability": 0.363037109375}, {"start": 111.55, "end": 111.85, "word": " in", "probability": 0.50048828125}, {"start": 111.85, "end": 112.63, "word": " the", "probability": 0.50830078125}, {"start": 112.63, "end": 113.85, "word": " basic", "probability": 0.55712890625}, {"start": 113.85, "end": 115.15, "word": " class", "probability": 0.40771484375}, {"start": 115.15, "end": 115.27, "word": " that", "probability": 0.461669921875}, {"start": 115.27, "end": 115.41, "word": " I", "probability": 0.9853515625}, {"start": 115.41, "end": 115.73, "word": " called", "probability": 0.4306640625}, {"start": 115.73, "end": 116.07, "word": " basic", "probability": 0.3994140625}, {"start": 116.07, "end": 116.39, "word": " tree.", "probability": 0.6904296875}, {"start": 117.11, "end": 117.41, "word": " Right?", "probability": 0.426025390625}, {"start": 117.45, "end": 117.57, "word": " The", "probability": 0.1419677734375}, {"start": 117.57, "end": 117.57, "word": " one", "probability": 0.79638671875}, {"start": 117.57, "end": 117.67, "word": " that", "probability": 0.56689453125}, {"start": 117.67, "end": 117.97, "word": " had", "probability": 0.219482421875}, {"start": 117.97, "end": 118.55, "word": " texture", "probability": 0.63525390625}, {"start": 118.55, "end": 118.59, "word": " and", "probability": 0.935546875}, {"start": 118.59, "end": 118.93, "word": " color", "probability": 0.837890625}, {"start": 118.93, "end": 118.95, "word": " in", "probability": 0.328369140625}, {"start": 118.95, "end": 118.95, "word": " it.", "probability": 0.93115234375}, {"start": 119.69, "end": 119.93, "word": " Okay?", "probability": 0.2484130859375}, {"start": 120.43, "end": 120.65, "word": " Because", "probability": 0.186767578125}, {"start": 120.65, "end": 120.77, "word": " I", "probability": 0.59130859375}, {"start": 120.77, "end": 121.01, "word": " found", "probability": 0.1334228515625}, {"start": 121.01, "end": 121.45, "word": " that", "probability": 0.40478515625}, {"start": 121.45, "end": 121.57, "word": " the", "probability": 0.488037109375}, {"start": 121.57, "end": 122.19, "word": " attributes", "probability": 0.9130859375}, {"start": 122.19, "end": 122.43, "word": " were", "probability": 0.3759765625}, {"start": 122.43, "end": 122.73, "word": " divided", "probability": 0.736328125}, {"start": 122.73, "end": 122.93, "word": " into", "probability": 0.806640625}, {"start": 122.93, "end": 123.11, "word": " two", "probability": 0.845703125}, {"start": 123.11, "end": 123.53, "word": " classes.", "probability": 0.87109375}, {"start": 123.99, "end": 124.25, "word": " The", "probability": 0.607421875}, {"start": 124.25, "end": 124.51, "word": " class", "probability": 0.79052734375}, {"start": 124.51, "end": 124.61, "word": " is", "probability": 0.36474609375}, {"start": 124.61, "end": 124.79, "word": " called", "probability": 0.84912109375}, {"start": 124.79, "end": 124.91, "word": " the", "probability": 0.53564453125}, {"start": 124.91, "end": 125.15, "word": " basic", "probability": 0.89990234375}, {"start": 125.15, "end": 125.47, "word": " tree.", "probability": 0.85888671875}, {"start": 126.11, "end": 126.37, "word": " And", "probability": 0.9033203125}, {"start": 126.37, "end": 126.53, "word": " there", "probability": 0.8720703125}, {"start": 126.53, "end": 126.53, "word": " is", "probability": 0.7431640625}, {"start": 126.53, "end": 127.15, "word": " another", "probability": 0.86279296875}, {"start": 127.15, "end": 127.21, "word": " class", "probability": 0.951171875}, {"start": 127.21, "end": 128.53, "word": " called", "probability": 0.384033203125}, {"start": 128.53, "end": 128.75, "word": " the", "probability": 0.79150390625}, {"start": 128.75, "end": 128.95, "word": " pine", "probability": 0.74365234375}, {"start": 128.95, "end": 129.27, "word": " tree.", "probability": 0.86962890625}, {"start": 129.73, "end": 130.21, "word": " Okay?", "probability": 0.5869140625}, {"start": 130.53, "end": 130.95, "word": " Which", "probability": 0.646484375}, {"start": 130.95, "end": 131.39, "word": " actually", "probability": 0.48095703125}, {"start": 131.39, "end": 132.05, "word": " used", "probability": 0.77978515625}, {"start": 132.05, "end": 132.27, "word": " an", "probability": 0.57421875}, {"start": 132.27, "end": 132.69, "word": " attribute", "probability": 0.94140625}, {"start": 132.69, "end": 132.93, "word": " from", "probability": 0.7333984375}, {"start": 132.93, "end": 133.21, "word": " whom?", "probability": 0.66455078125}], "temperature": 1.0}, {"id": 7, "seek": 15544, "start": 134.34, "end": 155.44, "text": "from basic tree and then I put light state in it or we call it unique state what is unique state? it means that each object, each tree I make has its own state", "tokens": [20579, 3875, 4230, 293, 550, 286, 829, 1442, 1785, 294, 309, 420, 321, 818, 309, 3845, 1785, 437, 307, 3845, 1785, 30, 309, 1355, 300, 1184, 2657, 11, 1184, 4230, 286, 652, 575, 1080, 1065, 1785], "avg_logprob": -0.5815033783783784, "compression_ratio": 1.4196428571428572, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 134.34, "end": 134.62, "word": "from", "probability": 0.11376953125}, {"start": 134.62, "end": 134.94, "word": " basic", "probability": 0.517578125}, {"start": 134.94, "end": 135.3, "word": " tree", "probability": 0.83154296875}, {"start": 135.3, "end": 138.58, "word": " and", "probability": 0.5576171875}, {"start": 138.58, "end": 138.92, "word": " then", "probability": 0.6552734375}, {"start": 138.92, "end": 139.12, "word": " I", "probability": 0.51806640625}, {"start": 139.12, "end": 139.48, "word": " put", "probability": 0.53515625}, {"start": 139.48, "end": 140.38, "word": " light", "probability": 0.380615234375}, {"start": 140.38, "end": 140.86, "word": " state", "probability": 0.9111328125}, {"start": 140.86, "end": 141.1, "word": " in", "probability": 0.560546875}, {"start": 141.1, "end": 141.4, "word": " it", "probability": 0.89111328125}, {"start": 141.4, "end": 143.58, "word": " or", "probability": 0.6025390625}, {"start": 143.58, "end": 146.72, "word": " we", "probability": 0.432861328125}, {"start": 146.72, "end": 146.84, "word": " call", "probability": 0.440673828125}, {"start": 146.84, "end": 147.06, "word": " it", "probability": 0.92822265625}, {"start": 147.06, "end": 147.42, "word": " unique", "probability": 0.61572265625}, {"start": 147.42, "end": 147.94, "word": " state", "probability": 0.94091796875}, {"start": 147.94, "end": 149.82, "word": " what", "probability": 0.2568359375}, {"start": 149.82, "end": 149.9, "word": " is", "probability": 0.7216796875}, {"start": 149.9, "end": 150.18, "word": " unique", "probability": 0.7939453125}, {"start": 150.18, "end": 150.64, "word": " state?", "probability": 0.93798828125}, {"start": 150.78, "end": 151.18, "word": " it", "probability": 0.333984375}, {"start": 151.18, "end": 151.26, "word": " means", "probability": 0.62548828125}, {"start": 151.26, "end": 151.5, "word": " that", "probability": 0.259521484375}, {"start": 151.5, "end": 152.0, "word": " each", "probability": 0.54931640625}, {"start": 152.0, "end": 152.38, "word": " object,", "probability": 0.619140625}, {"start": 152.52, "end": 152.68, "word": " each", "probability": 0.8720703125}, {"start": 152.68, "end": 152.96, "word": " tree", "probability": 0.82666015625}, {"start": 152.96, "end": 153.06, "word": " I", "probability": 0.259765625}, {"start": 153.06, "end": 153.38, "word": " make", "probability": 0.480224609375}, {"start": 153.38, "end": 153.72, "word": " has", "probability": 0.76953125}, {"start": 153.72, "end": 154.94, "word": " its", "probability": 0.411865234375}, {"start": 154.94, "end": 155.06, "word": " own", "probability": 0.859375}, {"start": 155.06, "end": 155.44, "word": " state", "probability": 0.80810546875}], "temperature": 1.0}, {"id": 8, "seek": 18479, "start": 157.75, "end": 184.79, "text": " Because each tree has its own place in it, two trees can fit in the same place, each tree has its own height, okay? And it is also called extrinsic state. Because why did I separate them into two independent classes? Because actually this one might need one thousand, ten thousand of them, but this one might need one or two or three of them a lot.", "tokens": [1436, 1184, 4230, 575, 1080, 1065, 1081, 294, 309, 11, 732, 5852, 393, 3318, 294, 264, 912, 1081, 11, 1184, 4230, 575, 1080, 1065, 6681, 11, 1392, 30, 400, 309, 307, 611, 1219, 16455, 1292, 299, 1785, 13, 1436, 983, 630, 286, 4994, 552, 666, 732, 6695, 5359, 30, 1436, 767, 341, 472, 1062, 643, 472, 4714, 11, 2064, 4714, 295, 552, 11, 457, 341, 472, 1062, 643, 472, 420, 732, 420, 1045, 295, 552, 257, 688, 13], "avg_logprob": -0.5419303676750087, "compression_ratio": 1.7897435897435898, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 157.75, "end": 158.31, "word": " Because", "probability": 0.196533203125}, {"start": 158.31, "end": 158.59, "word": " each", "probability": 0.4296875}, {"start": 158.59, "end": 158.91, "word": " tree", "probability": 0.71875}, {"start": 158.91, "end": 159.41, "word": " has", "probability": 0.80810546875}, {"start": 159.41, "end": 159.85, "word": " its", "probability": 0.5283203125}, {"start": 159.85, "end": 159.91, "word": " own", "probability": 0.712890625}, {"start": 159.91, "end": 159.91, "word": " place", "probability": 0.481689453125}, {"start": 159.91, "end": 160.15, "word": " in", "probability": 0.2392578125}, {"start": 160.15, "end": 160.25, "word": " it,", "probability": 0.74365234375}, {"start": 160.33, "end": 160.59, "word": " two", "probability": 0.2430419921875}, {"start": 160.59, "end": 160.89, "word": " trees", "probability": 0.9033203125}, {"start": 160.89, "end": 160.89, "word": " can", "probability": 0.60302734375}, {"start": 160.89, "end": 160.89, "word": " fit", "probability": 0.268798828125}, {"start": 160.89, "end": 161.09, "word": " in", "probability": 0.79638671875}, {"start": 161.09, "end": 161.19, "word": " the", "probability": 0.62890625}, {"start": 161.19, "end": 161.27, "word": " same", "probability": 0.8916015625}, {"start": 161.27, "end": 161.67, "word": " place,", "probability": 0.77880859375}, {"start": 162.01, "end": 162.49, "word": " each", "probability": 0.703125}, {"start": 162.49, "end": 162.77, "word": " tree", "probability": 0.85986328125}, {"start": 162.77, "end": 162.99, "word": " has", "probability": 0.93505859375}, {"start": 162.99, "end": 163.11, "word": " its", "probability": 0.82373046875}, {"start": 163.11, "end": 163.11, "word": " own", "probability": 0.8271484375}, {"start": 163.11, "end": 163.41, "word": " height,", "probability": 0.93603515625}, {"start": 164.07, "end": 164.49, "word": " okay?", "probability": 0.41064453125}, {"start": 165.77, "end": 165.95, "word": " And", "probability": 0.54638671875}, {"start": 165.95, "end": 166.25, "word": " it", "probability": 0.484130859375}, {"start": 166.25, "end": 166.27, "word": " is", "probability": 0.6123046875}, {"start": 166.27, "end": 166.27, "word": " also", "probability": 0.8271484375}, {"start": 166.27, "end": 166.55, "word": " called", "probability": 0.87548828125}, {"start": 166.55, "end": 167.63, "word": " extrinsic", "probability": 0.7637532552083334}, {"start": 167.63, "end": 171.37, "word": " state.", "probability": 0.96923828125}, {"start": 173.63, "end": 174.19, "word": " Because", "probability": 0.5556640625}, {"start": 174.19, "end": 174.43, "word": " why", "probability": 0.6875}, {"start": 174.43, "end": 174.49, "word": " did", "probability": 0.7451171875}, {"start": 174.49, "end": 174.49, "word": " I", "probability": 0.921875}, {"start": 174.49, "end": 174.83, "word": " separate", "probability": 0.75439453125}, {"start": 174.83, "end": 175.13, "word": " them", "probability": 0.57177734375}, {"start": 175.13, "end": 175.35, "word": " into", "probability": 0.308837890625}, {"start": 175.35, "end": 175.49, "word": " two", "probability": 0.6845703125}, {"start": 175.49, "end": 175.65, "word": " independent", "probability": 0.305908203125}, {"start": 175.65, "end": 176.69, "word": " classes?", "probability": 0.8798828125}, {"start": 177.19, "end": 177.47, "word": " Because", "probability": 0.869140625}, {"start": 177.47, "end": 177.89, "word": " actually", "probability": 0.438232421875}, {"start": 177.89, "end": 178.15, "word": " this", "probability": 0.418212890625}, {"start": 178.15, "end": 178.21, "word": " one", "probability": 0.24267578125}, {"start": 178.21, "end": 178.35, "word": " might", "probability": 0.322998046875}, {"start": 178.35, "end": 178.69, "word": " need", "probability": 0.79248046875}, {"start": 178.69, "end": 179.13, "word": " one", "probability": 0.1282958984375}, {"start": 179.13, "end": 179.71, "word": " thousand,", "probability": 0.833984375}, {"start": 179.91, "end": 180.21, "word": " ten", "probability": 0.7626953125}, {"start": 180.21, "end": 180.65, "word": " thousand", "probability": 0.70458984375}, {"start": 180.65, "end": 180.71, "word": " of", "probability": 0.2099609375}, {"start": 180.71, "end": 180.71, "word": " them,", "probability": 0.294189453125}, {"start": 180.75, "end": 181.37, "word": " but", "probability": 0.81494140625}, {"start": 181.37, "end": 181.63, "word": " this", "probability": 0.85595703125}, {"start": 181.63, "end": 181.69, "word": " one", "probability": 0.857421875}, {"start": 181.69, "end": 181.79, "word": " might", "probability": 0.7802734375}, {"start": 181.79, "end": 182.13, "word": " need", "probability": 0.9072265625}, {"start": 182.13, "end": 183.19, "word": " one", "probability": 0.8798828125}, {"start": 183.19, "end": 183.61, "word": " or", "probability": 0.634765625}, {"start": 183.61, "end": 183.95, "word": " two", "probability": 0.94091796875}, {"start": 183.95, "end": 184.11, "word": " or", "probability": 0.880859375}, {"start": 184.11, "end": 184.45, "word": " three", "probability": 0.77490234375}, {"start": 184.45, "end": 184.51, "word": " of", "probability": 0.46142578125}, {"start": 184.51, "end": 184.51, "word": " them", "probability": 0.8388671875}, {"start": 184.51, "end": 184.59, "word": " a", "probability": 0.27490234375}, {"start": 184.59, "end": 184.79, "word": " lot.", "probability": 0.9580078125}], "temperature": 1.0}, {"id": 9, "seek": 21120, "start": 186.7, "end": 211.2, "text": "Every object I create from a pine tree, I use one of the three existing basic trees to store it in my memory instead of storing the attributes inside the class. This means that each class will have a new copy. What else did we do? We organized their creation process through a factory.", "tokens": [15536, 2657, 286, 1884, 490, 257, 15113, 4230, 11, 286, 764, 472, 295, 264, 1045, 6741, 3875, 5852, 281, 3531, 309, 294, 452, 4675, 2602, 295, 26085, 264, 17212, 1854, 264, 1508, 13, 639, 1355, 300, 1184, 1508, 486, 362, 257, 777, 5055, 13, 708, 1646, 630, 321, 360, 30, 492, 9983, 641, 8016, 1399, 807, 257, 9265, 13], "avg_logprob": -0.6515625089406967, "compression_ratio": 1.4766839378238341, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 186.7, "end": 187.33999999999997, "word": "Every", "probability": 0.040740966796875}, {"start": 187.33999999999997, "end": 187.98, "word": " object", "probability": 0.705078125}, {"start": 187.98, "end": 188.2, "word": " I", "probability": 0.379638671875}, {"start": 188.2, "end": 188.38, "word": " create", "probability": 0.703125}, {"start": 188.38, "end": 188.76, "word": " from", "probability": 0.7236328125}, {"start": 188.76, "end": 188.9, "word": " a", "probability": 0.2305908203125}, {"start": 188.9, "end": 189.06, "word": " pine", "probability": 0.6064453125}, {"start": 189.06, "end": 189.4, "word": " tree,", "probability": 0.849609375}, {"start": 189.68, "end": 189.9, "word": " I", "probability": 0.91064453125}, {"start": 189.9, "end": 190.42, "word": " use", "probability": 0.41650390625}, {"start": 190.42, "end": 190.8, "word": " one", "probability": 0.73974609375}, {"start": 190.8, "end": 191.12, "word": " of", "probability": 0.90966796875}, {"start": 191.12, "end": 191.26, "word": " the", "probability": 0.70654296875}, {"start": 191.26, "end": 191.58, "word": " three", "probability": 0.57275390625}, {"start": 191.58, "end": 191.74, "word": " existing", "probability": 0.669921875}, {"start": 191.74, "end": 191.88, "word": " basic", "probability": 0.71142578125}, {"start": 191.88, "end": 192.38, "word": " trees", "probability": 0.833984375}, {"start": 192.38, "end": 194.44, "word": " to", "probability": 0.493896484375}, {"start": 194.44, "end": 194.88, "word": " store", "probability": 0.385498046875}, {"start": 194.88, "end": 195.58, "word": " it", "probability": 0.1651611328125}, {"start": 195.58, "end": 195.58, "word": " in", "probability": 0.72216796875}, {"start": 195.58, "end": 195.64, "word": " my", "probability": 0.454833984375}, {"start": 195.64, "end": 195.9, "word": " memory", "probability": 0.71435546875}, {"start": 195.9, "end": 196.18, "word": " instead", "probability": 0.31494140625}, {"start": 196.18, "end": 196.56, "word": " of", "probability": 0.9375}, {"start": 196.56, "end": 197.7, "word": " storing", "probability": 0.39501953125}, {"start": 197.7, "end": 197.94, "word": " the", "probability": 0.0965576171875}, {"start": 197.94, "end": 199.24, "word": " attributes", "probability": 0.76806640625}, {"start": 199.24, "end": 199.88, "word": " inside", "probability": 0.309326171875}, {"start": 199.88, "end": 200.08, "word": " the", "probability": 0.495849609375}, {"start": 200.08, "end": 200.36, "word": " class.", "probability": 0.7822265625}, {"start": 200.46, "end": 200.54, "word": " This", "probability": 0.376220703125}, {"start": 200.54, "end": 200.7, "word": " means", "probability": 0.8544921875}, {"start": 200.7, "end": 200.88, "word": " that", "probability": 0.67626953125}, {"start": 200.88, "end": 201.06, "word": " each", "probability": 0.458740234375}, {"start": 201.06, "end": 201.48, "word": " class", "probability": 0.8759765625}, {"start": 201.48, "end": 201.66, "word": " will", "probability": 0.62744140625}, {"start": 201.66, "end": 201.96, "word": " have", "probability": 0.21875}, {"start": 201.96, "end": 202.04, "word": " a", "probability": 0.7724609375}, {"start": 202.04, "end": 202.04, "word": " new", "probability": 0.81396484375}, {"start": 202.04, "end": 202.4, "word": " copy.", "probability": 0.52197265625}, {"start": 204.44, "end": 205.08, "word": " What", "probability": 0.197265625}, {"start": 205.08, "end": 206.08, "word": " else", "probability": 0.7255859375}, {"start": 206.08, "end": 206.3, "word": " did", "probability": 0.78173828125}, {"start": 206.3, "end": 206.46, "word": " we", "probability": 0.80517578125}, {"start": 206.46, "end": 206.46, "word": " do?", "probability": 0.94287109375}, {"start": 206.76, "end": 207.3, "word": " We", "probability": 0.68359375}, {"start": 207.3, "end": 208.56, "word": " organized", "probability": 0.6533203125}, {"start": 208.56, "end": 208.94, "word": " their", "probability": 0.394287109375}, {"start": 208.94, "end": 209.3, "word": " creation", "probability": 0.33984375}, {"start": 209.3, "end": 209.74, "word": " process", "probability": 0.55712890625}, {"start": 209.74, "end": 210.52, "word": " through", "probability": 0.64111328125}, {"start": 210.52, "end": 210.88, "word": " a", "probability": 0.404296875}, {"start": 210.88, "end": 211.2, "word": " factory.", "probability": 0.85009765625}], "temperature": 1.0}, {"id": 10, "seek": 21808, "start": 211.9, "end": 218.08, "text": "We used to ask the factory to build us a red tree. He would have a list.", "tokens": [4360, 1143, 281, 1029, 264, 9265, 281, 1322, 505, 257, 2182, 4230, 13, 634, 576, 362, 257, 1329, 13], "avg_logprob": -0.6121093899011611, "compression_ratio": 1.0, "no_speech_prob": 0.0, "words": [{"start": 211.9, "end": 212.3, "word": "We", "probability": 0.41650390625}, {"start": 212.3, "end": 212.34, "word": " used", "probability": 0.329345703125}, {"start": 212.34, "end": 213.02, "word": " to", "probability": 0.97216796875}, {"start": 213.02, "end": 213.02, "word": " ask", "probability": 0.5400390625}, {"start": 213.02, "end": 213.26, "word": " the", "probability": 0.466796875}, {"start": 213.26, "end": 213.52, "word": " factory", "probability": 0.51953125}, {"start": 213.52, "end": 213.68, "word": " to", "probability": 0.771484375}, {"start": 213.68, "end": 214.6, "word": " build", "probability": 0.334228515625}, {"start": 214.6, "end": 214.76, "word": " us", "probability": 0.43896484375}, {"start": 214.76, "end": 214.86, "word": " a", "probability": 0.921875}, {"start": 214.86, "end": 215.28, "word": " red", "probability": 0.83837890625}, {"start": 215.28, "end": 215.36, "word": " tree.", "probability": 0.6953125}, {"start": 216.24, "end": 216.48, "word": " He", "probability": 0.277099609375}, {"start": 216.48, "end": 217.38, "word": " would", "probability": 0.32080078125}, {"start": 217.38, "end": 217.58, "word": " have", "probability": 0.78076171875}, {"start": 217.58, "end": 217.78, "word": " a", "probability": 0.95654296875}, {"start": 217.78, "end": 218.08, "word": " list.", "probability": 0.916015625}], "temperature": 1.0}, {"id": 11, "seek": 24645, "start": 220.07, "end": 246.45, "text": " from the basic trees If there is a red tree, I plant it and give it back to it Not if I plant it, I plant it and give it back to it, okay? Based on this talk, let's drop the parts of the example that we explained on the UML diagram that is here Because the first thing in it, I have a class called Flyweight, okay? What does Flyweight represent in our example? Which is the final class that I want to give it, which is who? Yes, the pine tree", "tokens": [490, 264, 3875, 5852, 759, 456, 307, 257, 2182, 4230, 11, 286, 3709, 309, 293, 976, 309, 646, 281, 309, 1726, 498, 286, 3709, 309, 11, 286, 3709, 309, 293, 976, 309, 646, 281, 309, 11, 1392, 30, 18785, 322, 341, 751, 11, 718, 311, 3270, 264, 3166, 295, 264, 1365, 300, 321, 8825, 322, 264, 624, 12683, 10686, 300, 307, 510, 1436, 264, 700, 551, 294, 309, 11, 286, 362, 257, 1508, 1219, 25294, 12329, 11, 1392, 30, 708, 775, 25294, 12329, 2906, 294, 527, 1365, 30, 3013, 307, 264, 2572, 1508, 300, 286, 528, 281, 976, 309, 11, 597, 307, 567, 30, 1079, 11, 264, 15113, 4230], "avg_logprob": -0.5437500070441853, "compression_ratio": 1.7935222672064777, "no_speech_prob": 1.6093254089355469e-06, "words": [{"start": 220.07, "end": 220.39, "word": " from", "probability": 0.0943603515625}, {"start": 220.39, "end": 220.53, "word": " the", "probability": 0.69287109375}, {"start": 220.53, "end": 220.79, "word": " basic", "probability": 0.8837890625}, {"start": 220.79, "end": 221.19, "word": " trees", "probability": 0.90673828125}, {"start": 221.19, "end": 221.97, "word": " If", "probability": 0.22412109375}, {"start": 221.97, "end": 222.37, "word": " there", "probability": 0.311767578125}, {"start": 222.37, "end": 222.43, "word": " is", "probability": 0.5810546875}, {"start": 222.43, "end": 222.67, "word": " a", "probability": 0.33056640625}, {"start": 222.67, "end": 222.67, "word": " red", "probability": 0.57177734375}, {"start": 222.67, "end": 222.67, "word": " tree,", "probability": 0.57763671875}, {"start": 222.83, "end": 222.83, "word": " I", "probability": 0.5380859375}, {"start": 222.83, "end": 223.09, "word": " plant", "probability": 0.1341552734375}, {"start": 223.09, "end": 223.91, "word": " it", "probability": 0.79833984375}, {"start": 223.91, "end": 224.41, "word": " and", "probability": 0.37451171875}, {"start": 224.41, "end": 224.93, "word": " give", "probability": 0.1629638671875}, {"start": 224.93, "end": 225.05, "word": " it", "probability": 0.802734375}, {"start": 225.05, "end": 225.05, "word": " back", "probability": 0.689453125}, {"start": 225.05, "end": 225.31, "word": " to", "probability": 0.80029296875}, {"start": 225.31, "end": 225.45, "word": " it", "probability": 0.62060546875}, {"start": 225.45, "end": 225.91, "word": " Not", "probability": 0.2205810546875}, {"start": 225.91, "end": 226.15, "word": " if", "probability": 0.12298583984375}, {"start": 226.15, "end": 226.15, "word": " I", "probability": 0.2607421875}, {"start": 226.15, "end": 226.23, "word": " plant", "probability": 0.439208984375}, {"start": 226.23, "end": 226.41, "word": " it,", "probability": 0.7177734375}, {"start": 226.75, "end": 226.89, "word": " I", "probability": 0.8046875}, {"start": 226.89, "end": 227.17, "word": " plant", "probability": 0.66064453125}, {"start": 227.17, "end": 227.37, "word": " it", "probability": 0.9267578125}, {"start": 227.37, "end": 227.55, "word": " and", "probability": 0.83740234375}, {"start": 227.55, "end": 227.75, "word": " give", "probability": 0.810546875}, {"start": 227.75, "end": 227.75, "word": " it", "probability": 0.9365234375}, {"start": 227.75, "end": 227.87, "word": " back", "probability": 0.83984375}, {"start": 227.87, "end": 228.05, "word": " to", "probability": 0.875}, {"start": 228.05, "end": 228.61, "word": " it,", "probability": 0.9375}, {"start": 228.73, "end": 228.99, "word": " okay?", "probability": 0.26953125}, {"start": 229.57, "end": 230.01, "word": " Based", "probability": 0.6103515625}, {"start": 230.01, "end": 230.23, "word": " on", "probability": 0.9453125}, {"start": 230.23, "end": 230.37, "word": " this", "probability": 0.6015625}, {"start": 230.37, "end": 230.61, "word": " talk,", "probability": 0.33984375}, {"start": 230.91, "end": 231.21, "word": " let's", "probability": 0.912109375}, {"start": 231.21, "end": 231.61, "word": " drop", "probability": 0.335205078125}, {"start": 231.61, "end": 232.43, "word": " the", "probability": 0.203857421875}, {"start": 232.43, "end": 232.67, "word": " parts", "probability": 0.467041015625}, {"start": 232.67, "end": 232.93, "word": " of", "probability": 0.9150390625}, {"start": 232.93, "end": 232.95, "word": " the", "probability": 0.7509765625}, {"start": 232.95, "end": 233.19, "word": " example", "probability": 0.91796875}, {"start": 233.19, "end": 233.35, "word": " that", "probability": 0.46533203125}, {"start": 233.35, "end": 233.73, "word": " we", "probability": 0.7763671875}, {"start": 233.73, "end": 233.73, "word": " explained", "probability": 0.422119140625}, {"start": 233.73, "end": 233.95, "word": " on", "probability": 0.54736328125}, {"start": 233.95, "end": 234.03, "word": " the", "probability": 0.77685546875}, {"start": 234.03, "end": 234.27, "word": " UML", "probability": 0.66064453125}, {"start": 234.27, "end": 234.67, "word": " diagram", "probability": 0.908203125}, {"start": 234.67, "end": 234.77, "word": " that", "probability": 0.34228515625}, {"start": 234.77, "end": 234.85, "word": " is", "probability": 0.583984375}, {"start": 234.85, "end": 235.21, "word": " here", "probability": 0.45458984375}, {"start": 235.21, "end": 236.03, "word": " Because", "probability": 0.439208984375}, {"start": 236.03, "end": 236.17, "word": " the", "probability": 0.83740234375}, {"start": 236.17, "end": 236.29, "word": " first", "probability": 0.87744140625}, {"start": 236.29, "end": 236.55, "word": " thing", "probability": 0.86865234375}, {"start": 236.55, "end": 236.67, "word": " in", "probability": 0.2327880859375}, {"start": 236.67, "end": 236.75, "word": " it,", "probability": 0.80859375}, {"start": 236.75, "end": 236.95, "word": " I", "probability": 0.7734375}, {"start": 236.95, "end": 236.95, "word": " have", "probability": 0.9423828125}, {"start": 236.95, "end": 236.97, "word": " a", "probability": 0.94970703125}, {"start": 236.97, "end": 237.21, "word": " class", "probability": 0.9814453125}, {"start": 237.21, "end": 237.49, "word": " called", "probability": 0.505859375}, {"start": 237.49, "end": 239.09, "word": " Flyweight,", "probability": 0.717529296875}, {"start": 239.19, "end": 239.87, "word": " okay?", "probability": 0.7236328125}, {"start": 240.19, "end": 240.33, "word": " What", "probability": 0.419921875}, {"start": 240.33, "end": 240.33, "word": " does", "probability": 0.7001953125}, {"start": 240.33, "end": 240.79, "word": " Flyweight", "probability": 0.673095703125}, {"start": 240.79, "end": 241.49, "word": " represent", "probability": 0.63818359375}, {"start": 241.49, "end": 242.11, "word": " in", "probability": 0.83935546875}, {"start": 242.11, "end": 242.17, "word": " our", "probability": 0.865234375}, {"start": 242.17, "end": 242.47, "word": " example?", "probability": 0.97021484375}, {"start": 242.65, "end": 242.79, "word": " Which", "probability": 0.51904296875}, {"start": 242.79, "end": 242.89, "word": " is", "probability": 0.9326171875}, {"start": 242.89, "end": 243.03, "word": " the", "probability": 0.89453125}, {"start": 243.03, "end": 243.03, "word": " final", "probability": 0.740234375}, {"start": 243.03, "end": 243.61, "word": " class", "probability": 0.9345703125}, {"start": 243.61, "end": 243.75, "word": " that", "probability": 0.81103515625}, {"start": 243.75, "end": 243.87, "word": " I", "probability": 0.99072265625}, {"start": 243.87, "end": 244.03, "word": " want", "probability": 0.72802734375}, {"start": 244.03, "end": 244.03, "word": " to", "probability": 0.421875}, {"start": 244.03, "end": 244.23, "word": " give", "probability": 0.4599609375}, {"start": 244.23, "end": 244.31, "word": " it,", "probability": 0.72216796875}, {"start": 244.33, "end": 244.43, "word": " which", "probability": 0.8525390625}, {"start": 244.43, "end": 244.57, "word": " is", "probability": 0.93701171875}, {"start": 244.57, "end": 244.71, "word": " who?", "probability": 0.1339111328125}, {"start": 245.33, "end": 245.71, "word": " Yes,", "probability": 0.363525390625}, {"start": 245.89, "end": 245.99, "word": " the", "probability": 0.78857421875}, {"start": 245.99, "end": 246.17, "word": " pine", "probability": 0.51416015625}, {"start": 246.17, "end": 246.45, "word": " tree", "probability": 0.89892578125}], "temperature": 1.0}, {"id": 12, "seek": 27254, "start": 247.28, "end": 272.54, "text": "This flyweight has a repeating state inside it What is the repeating state here? The basic tree, what is written here? Repeating state, which is repeated a lot, okay? Which must not be extracted from it a large number, okay? The flyweight is extracted from it by thousands, but the repeating state is extracted from it by a small number, okay?", "tokens": [5723, 3603, 12329, 575, 257, 18617, 1785, 1854, 309, 708, 307, 264, 18617, 1785, 510, 30, 440, 3875, 4230, 11, 437, 307, 3720, 510, 30, 24927, 990, 1785, 11, 597, 307, 10477, 257, 688, 11, 1392, 30, 3013, 1633, 406, 312, 34086, 490, 309, 257, 2416, 1230, 11, 1392, 30, 440, 3603, 12329, 307, 34086, 490, 309, 538, 5383, 11, 457, 264, 18617, 1785, 307, 34086, 490, 309, 538, 257, 1359, 1230, 11, 1392, 30], "avg_logprob": -0.5612664708965703, "compression_ratio": 1.9826589595375723, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 247.28, "end": 247.84, "word": "This", "probability": 0.2440185546875}, {"start": 247.84, "end": 248.4, "word": " flyweight", "probability": 0.666015625}, {"start": 248.4, "end": 249.06, "word": " has", "probability": 0.369140625}, {"start": 249.06, "end": 250.12, "word": " a", "probability": 0.41552734375}, {"start": 250.12, "end": 251.96, "word": " repeating", "probability": 0.958984375}, {"start": 251.96, "end": 252.44, "word": " state", "probability": 0.95849609375}, {"start": 252.44, "end": 252.44, "word": " inside", "probability": 0.4365234375}, {"start": 252.44, "end": 252.72, "word": " it", "probability": 0.53564453125}, {"start": 252.72, "end": 253.06, "word": " What", "probability": 0.10595703125}, {"start": 253.06, "end": 253.16, "word": " is", "probability": 0.79736328125}, {"start": 253.16, "end": 253.48, "word": " the", "probability": 0.4375}, {"start": 253.48, "end": 253.78, "word": " repeating", "probability": 0.96240234375}, {"start": 253.78, "end": 254.18, "word": " state", "probability": 0.9462890625}, {"start": 254.18, "end": 254.4, "word": " here?", "probability": 0.60302734375}, {"start": 254.86, "end": 255.42, "word": " The", "probability": 0.258544921875}, {"start": 255.42, "end": 255.64, "word": " basic", "probability": 0.48095703125}, {"start": 255.64, "end": 255.9, "word": " tree,", "probability": 0.468505859375}, {"start": 255.96, "end": 256.18, "word": " what", "probability": 0.162841796875}, {"start": 256.18, "end": 256.18, "word": " is", "probability": 0.68994140625}, {"start": 256.18, "end": 256.42, "word": " written", "probability": 0.869140625}, {"start": 256.42, "end": 256.64, "word": " here?", "probability": 0.7900390625}, {"start": 257.36, "end": 257.92, "word": " Repeating", "probability": 0.631103515625}, {"start": 257.92, "end": 258.28, "word": " state,", "probability": 0.9326171875}, {"start": 258.84, "end": 258.94, "word": " which", "probability": 0.5869140625}, {"start": 258.94, "end": 259.06, "word": " is", "probability": 0.564453125}, {"start": 259.06, "end": 259.7, "word": " repeated", "probability": 0.316162109375}, {"start": 259.7, "end": 259.96, "word": " a", "probability": 0.271240234375}, {"start": 259.96, "end": 260.12, "word": " lot,", "probability": 0.95166015625}, {"start": 261.22, "end": 261.48, "word": " okay?", "probability": 0.214599609375}, {"start": 261.72, "end": 261.88, "word": " Which", "probability": 0.30859375}, {"start": 261.88, "end": 262.32, "word": " must", "probability": 0.241943359375}, {"start": 262.32, "end": 263.32, "word": " not", "probability": 0.64697265625}, {"start": 263.32, "end": 263.66, "word": " be", "probability": 0.486083984375}, {"start": 263.66, "end": 263.66, "word": " extracted", "probability": 0.08636474609375}, {"start": 263.66, "end": 263.86, "word": " from", "probability": 0.63330078125}, {"start": 263.86, "end": 264.08, "word": " it", "probability": 0.857421875}, {"start": 264.08, "end": 264.94, "word": " a", "probability": 0.438232421875}, {"start": 264.94, "end": 264.94, "word": " large", "probability": 0.83544921875}, {"start": 264.94, "end": 265.16, "word": " number,", "probability": 0.89892578125}, {"start": 265.78, "end": 266.22, "word": " okay?", "probability": 0.7578125}, {"start": 266.34, "end": 266.44, "word": " The", "probability": 0.3232421875}, {"start": 266.44, "end": 266.92, "word": " flyweight", "probability": 0.93115234375}, {"start": 266.92, "end": 267.06, "word": " is", "probability": 0.265869140625}, {"start": 267.06, "end": 267.36, "word": " extracted", "probability": 0.86279296875}, {"start": 267.36, "end": 267.52, "word": " from", "probability": 0.85107421875}, {"start": 267.52, "end": 267.6, "word": " it", "probability": 0.88818359375}, {"start": 267.6, "end": 267.7, "word": " by", "probability": 0.58837890625}, {"start": 267.7, "end": 268.0, "word": " thousands,", "probability": 0.57080078125}, {"start": 268.5, "end": 268.86, "word": " but", "probability": 0.90576171875}, {"start": 268.86, "end": 269.04, "word": " the", "probability": 0.83251953125}, {"start": 269.04, "end": 269.26, "word": " repeating", "probability": 0.97412109375}, {"start": 269.26, "end": 269.66, "word": " state", "probability": 0.9326171875}, {"start": 269.66, "end": 269.82, "word": " is", "probability": 0.75048828125}, {"start": 269.82, "end": 269.94, "word": " extracted", "probability": 0.9111328125}, {"start": 269.94, "end": 270.04, "word": " from", "probability": 0.80322265625}, {"start": 270.04, "end": 270.14, "word": " it", "probability": 0.90966796875}, {"start": 270.14, "end": 270.26, "word": " by", "probability": 0.83984375}, {"start": 270.26, "end": 271.38, "word": " a", "probability": 0.78662109375}, {"start": 271.38, "end": 271.38, "word": " small", "probability": 0.4794921875}, {"start": 271.38, "end": 271.68, "word": " number,", "probability": 0.91943359375}, {"start": 272.3, "end": 272.54, "word": " okay?", "probability": 0.818359375}], "temperature": 1.0}, {"id": 13, "seek": 30039, "start": 274.1, "end": 300.4, "text": "And there is an operation that makes a drawing, for example, which is to draw in the case of the planetary. Of course, the operation will use the unique state to draw the shape. Okay, I have the context here. The context is really what creates objects from the flyweight and draws them. Okay? But how does it create? I will tell you what happens next. I have here", "tokens": [5289, 456, 307, 364, 6916, 300, 1669, 257, 6316, 11, 337, 1365, 11, 597, 307, 281, 2642, 294, 264, 1389, 295, 264, 35788, 13, 2720, 1164, 11, 264, 6916, 486, 764, 264, 3845, 1785, 281, 2642, 264, 3909, 13, 1033, 11, 286, 362, 264, 4319, 510, 13, 440, 4319, 307, 534, 437, 7829, 6565, 490, 264, 3603, 12329, 293, 20045, 552, 13, 1033, 30, 583, 577, 775, 309, 1884, 30, 286, 486, 980, 291, 437, 2314, 958, 13, 286, 362, 510], "avg_logprob": -0.5605945129220079, "compression_ratio": 1.6205357142857142, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 274.1, "end": 274.28, "word": "And", "probability": 0.1988525390625}, {"start": 274.28, "end": 274.42, "word": " there", "probability": 0.71533203125}, {"start": 274.42, "end": 274.42, "word": " is", "probability": 0.67041015625}, {"start": 274.42, "end": 275.0, "word": " an", "probability": 0.30029296875}, {"start": 275.0, "end": 275.0, "word": " operation", "probability": 0.91357421875}, {"start": 275.0, "end": 276.04, "word": " that", "probability": 0.32666015625}, {"start": 276.04, "end": 276.34, "word": " makes", "probability": 0.3046875}, {"start": 276.34, "end": 276.5, "word": " a", "probability": 0.556640625}, {"start": 276.5, "end": 276.7, "word": " drawing,", "probability": 0.59228515625}, {"start": 277.18, "end": 277.18, "word": " for", "probability": 0.3447265625}, {"start": 277.18, "end": 277.42, "word": " example,", "probability": 0.91455078125}, {"start": 277.54, "end": 277.66, "word": " which", "probability": 0.387451171875}, {"start": 277.66, "end": 277.78, "word": " is", "probability": 0.59716796875}, {"start": 277.78, "end": 277.9, "word": " to", "probability": 0.4697265625}, {"start": 277.9, "end": 278.08, "word": " draw", "probability": 0.86572265625}, {"start": 278.08, "end": 278.56, "word": " in", "probability": 0.394287109375}, {"start": 278.56, "end": 278.7, "word": " the", "probability": 0.556640625}, {"start": 278.7, "end": 278.8, "word": " case", "probability": 0.869140625}, {"start": 278.8, "end": 279.96, "word": " of", "probability": 0.97021484375}, {"start": 279.96, "end": 280.04, "word": " the", "probability": 0.449462890625}, {"start": 280.04, "end": 280.4, "word": " planetary.", "probability": 0.1702880859375}, {"start": 280.5, "end": 280.64, "word": " Of", "probability": 0.62451171875}, {"start": 280.64, "end": 280.76, "word": " course,", "probability": 0.9599609375}, {"start": 280.88, "end": 281.12, "word": " the", "probability": 0.67578125}, {"start": 281.12, "end": 281.44, "word": " operation", "probability": 0.93505859375}, {"start": 281.44, "end": 281.62, "word": " will", "probability": 0.63330078125}, {"start": 281.62, "end": 281.88, "word": " use", "probability": 0.7802734375}, {"start": 281.88, "end": 282.04, "word": " the", "probability": 0.8076171875}, {"start": 282.04, "end": 282.26, "word": " unique", "probability": 0.7861328125}, {"start": 282.26, "end": 282.58, "word": " state", "probability": 0.94580078125}, {"start": 282.58, "end": 282.84, "word": " to", "probability": 0.7021484375}, {"start": 282.84, "end": 283.14, "word": " draw", "probability": 0.83642578125}, {"start": 283.14, "end": 283.78, "word": " the", "probability": 0.70361328125}, {"start": 283.78, "end": 284.02, "word": " shape.", "probability": 0.869140625}, {"start": 284.78, "end": 285.1, "word": " Okay,", "probability": 0.215087890625}, {"start": 285.38, "end": 285.66, "word": " I", "probability": 0.36865234375}, {"start": 285.66, "end": 285.78, "word": " have", "probability": 0.8681640625}, {"start": 285.78, "end": 286.04, "word": " the", "probability": 0.2435302734375}, {"start": 286.04, "end": 286.56, "word": " context", "probability": 0.91259765625}, {"start": 286.56, "end": 286.68, "word": " here.", "probability": 0.77685546875}, {"start": 287.92, "end": 288.12, "word": " The", "probability": 0.763671875}, {"start": 288.12, "end": 288.44, "word": " context", "probability": 0.92578125}, {"start": 288.44, "end": 288.56, "word": " is", "probability": 0.4716796875}, {"start": 288.56, "end": 288.82, "word": " really", "probability": 0.44287109375}, {"start": 288.82, "end": 289.18, "word": " what", "probability": 0.6884765625}, {"start": 289.18, "end": 290.08, "word": " creates", "probability": 0.10076904296875}, {"start": 290.08, "end": 291.9, "word": " objects", "probability": 0.88037109375}, {"start": 291.9, "end": 292.12, "word": " from", "probability": 0.78857421875}, {"start": 292.12, "end": 292.18, "word": " the", "probability": 0.7177734375}, {"start": 292.18, "end": 292.6, "word": " flyweight", "probability": 0.856689453125}, {"start": 292.6, "end": 292.72, "word": " and", "probability": 0.79248046875}, {"start": 292.72, "end": 292.86, "word": " draws", "probability": 0.66796875}, {"start": 292.86, "end": 293.22, "word": " them.", "probability": 0.869140625}, {"start": 293.6, "end": 293.76, "word": " Okay?", "probability": 0.328857421875}, {"start": 293.9, "end": 294.06, "word": " But", "probability": 0.79931640625}, {"start": 294.06, "end": 294.42, "word": " how", "probability": 0.80029296875}, {"start": 294.42, "end": 294.56, "word": " does", "probability": 0.5341796875}, {"start": 294.56, "end": 294.58, "word": " it", "probability": 0.7099609375}, {"start": 294.58, "end": 294.78, "word": " create?", "probability": 0.38427734375}, {"start": 295.24, "end": 295.46, "word": " I", "probability": 0.46728515625}, {"start": 295.46, "end": 295.5, "word": " will", "probability": 0.21630859375}, {"start": 295.5, "end": 295.62, "word": " tell", "probability": 0.521484375}, {"start": 295.62, "end": 295.9, "word": " you", "probability": 0.9345703125}, {"start": 295.9, "end": 296.48, "word": " what", "probability": 0.36474609375}, {"start": 296.48, "end": 297.62, "word": " happens", "probability": 0.666015625}, {"start": 297.62, "end": 298.18, "word": " next.", "probability": 0.76220703125}, {"start": 299.48, "end": 299.96, "word": " I", "probability": 0.78173828125}, {"start": 299.96, "end": 300.16, "word": " have", "probability": 0.93408203125}, {"start": 300.16, "end": 300.4, "word": " here", "probability": 0.763671875}], "temperature": 1.0}, {"id": 14, "seek": 33039, "start": 301.99, "end": 330.39, "text": " Flyweight Factory I used to work in a tree factory, for example. As I said, his job is to organize the production process. In the end, the factory that I worked in also wants to produce a pine tree. But when he produces a pine tree, he wants to fill it with a basic tree from what he has. Right or not? This is what happened last time. Even this factory that we worked in had a hash map. Right or not? Look, if the basic tree that I ask exists, bring it, use it, and produce it,", "tokens": [25294, 12329, 36868, 286, 1143, 281, 589, 294, 257, 4230, 9265, 11, 337, 1365, 13, 1018, 286, 848, 11, 702, 1691, 307, 281, 13859, 264, 4265, 1399, 13, 682, 264, 917, 11, 264, 9265, 300, 286, 2732, 294, 611, 2738, 281, 5258, 257, 15113, 4230, 13, 583, 562, 415, 14725, 257, 15113, 4230, 11, 415, 2738, 281, 2836, 309, 365, 257, 3875, 4230, 490, 437, 415, 575, 13, 1779, 420, 406, 30, 639, 307, 437, 2011, 1036, 565, 13, 2754, 341, 9265, 300, 321, 2732, 294, 632, 257, 22019, 4471, 13, 1779, 420, 406, 30, 2053, 11, 498, 264, 3875, 4230, 300, 286, 1029, 8198, 11, 1565, 309, 11, 764, 309, 11, 293, 5258, 309, 11], "avg_logprob": -0.49358973136314976, "compression_ratio": 1.787313432835821, "no_speech_prob": 6.079673767089844e-06, "words": [{"start": 301.99000000000007, "end": 302.39000000000004, "word": " Flyweight", "probability": 0.5804443359375}, {"start": 302.39000000000004, "end": 302.79, "word": " Factory", "probability": 0.56982421875}, {"start": 302.79, "end": 303.69, "word": " I", "probability": 0.1400146484375}, {"start": 303.69, "end": 304.93, "word": " used", "probability": 0.37646484375}, {"start": 304.93, "end": 305.03, "word": " to", "probability": 0.9697265625}, {"start": 305.03, "end": 305.21, "word": " work", "probability": 0.87109375}, {"start": 305.21, "end": 306.03, "word": " in", "probability": 0.61474609375}, {"start": 306.03, "end": 306.17, "word": " a", "probability": 0.5966796875}, {"start": 306.17, "end": 306.33, "word": " tree", "probability": 0.4482421875}, {"start": 306.33, "end": 306.81, "word": " factory,", "probability": 0.853515625}, {"start": 306.97, "end": 307.11, "word": " for", "probability": 0.2198486328125}, {"start": 307.11, "end": 307.45, "word": " example.", "probability": 0.904296875}, {"start": 308.13, "end": 308.25, "word": " As", "probability": 0.35693359375}, {"start": 308.25, "end": 308.45, "word": " I", "probability": 0.9462890625}, {"start": 308.45, "end": 308.63, "word": " said,", "probability": 0.6376953125}, {"start": 308.75, "end": 308.81, "word": " his", "probability": 0.16455078125}, {"start": 308.81, "end": 309.09, "word": " job", "probability": 0.7666015625}, {"start": 309.09, "end": 309.33, "word": " is", "probability": 0.5341796875}, {"start": 309.33, "end": 309.37, "word": " to", "probability": 0.888671875}, {"start": 309.37, "end": 309.67, "word": " organize", "probability": 0.51416015625}, {"start": 309.67, "end": 309.79, "word": " the", "probability": 0.66015625}, {"start": 309.79, "end": 310.31, "word": " production", "probability": 0.486328125}, {"start": 310.31, "end": 310.47, "word": " process.", "probability": 0.92919921875}, {"start": 310.73, "end": 310.95, "word": " In", "probability": 0.296142578125}, {"start": 310.95, "end": 311.05, "word": " the", "probability": 0.85888671875}, {"start": 311.05, "end": 311.25, "word": " end,", "probability": 0.908203125}, {"start": 311.33, "end": 311.41, "word": " the", "probability": 0.8310546875}, {"start": 311.41, "end": 311.73, "word": " factory", "probability": 0.78466796875}, {"start": 311.73, "end": 311.85, "word": " that", "probability": 0.470458984375}, {"start": 311.85, "end": 311.97, "word": " I", "probability": 0.935546875}, {"start": 311.97, "end": 312.19, "word": " worked", "probability": 0.40625}, {"start": 312.19, "end": 312.31, "word": " in", "probability": 0.489013671875}, {"start": 312.31, "end": 312.63, "word": " also", "probability": 0.27734375}, {"start": 312.63, "end": 312.87, "word": " wants", "probability": 0.3359375}, {"start": 312.87, "end": 312.95, "word": " to", "probability": 0.9716796875}, {"start": 312.95, "end": 313.09, "word": " produce", "probability": 0.6005859375}, {"start": 313.09, "end": 313.27, "word": " a", "probability": 0.387939453125}, {"start": 313.27, "end": 313.41, "word": " pine", "probability": 0.70458984375}, {"start": 313.41, "end": 313.67, "word": " tree.", "probability": 0.84814453125}, {"start": 314.61, "end": 314.97, "word": " But", "probability": 0.794921875}, {"start": 314.97, "end": 315.15, "word": " when", "probability": 0.81689453125}, {"start": 315.15, "end": 315.23, "word": " he", "probability": 0.5166015625}, {"start": 315.23, "end": 315.35, "word": " produces", "probability": 0.62255859375}, {"start": 315.35, "end": 315.47, "word": " a", "probability": 0.923828125}, {"start": 315.47, "end": 315.63, "word": " pine", "probability": 0.853515625}, {"start": 315.63, "end": 315.85, "word": " tree,", "probability": 0.88623046875}, {"start": 315.95, "end": 315.95, "word": " he", "probability": 0.7099609375}, {"start": 315.95, "end": 316.09, "word": " wants", "probability": 0.337890625}, {"start": 316.09, "end": 316.17, "word": " to", "probability": 0.95556640625}, {"start": 316.17, "end": 316.33, "word": " fill", "probability": 0.52197265625}, {"start": 316.33, "end": 316.61, "word": " it", "probability": 0.38720703125}, {"start": 316.61, "end": 316.63, "word": " with", "probability": 0.7802734375}, {"start": 316.63, "end": 317.65, "word": " a", "probability": 0.2493896484375}, {"start": 317.65, "end": 317.97, "word": " basic", "probability": 0.90673828125}, {"start": 317.97, "end": 318.21, "word": " tree", "probability": 0.8125}, {"start": 318.21, "end": 318.41, "word": " from", "probability": 0.337646484375}, {"start": 318.41, "end": 318.53, "word": " what", "probability": 0.693359375}, {"start": 318.53, "end": 318.59, "word": " he", "probability": 0.9443359375}, {"start": 318.59, "end": 318.81, "word": " has.", "probability": 0.736328125}, {"start": 319.35, "end": 319.55, "word": " Right", "probability": 0.47265625}, {"start": 319.55, "end": 319.73, "word": " or", "probability": 0.7431640625}, {"start": 319.73, "end": 319.79, "word": " not?", "probability": 0.36572265625}, {"start": 319.87, "end": 320.09, "word": " This", "probability": 0.56005859375}, {"start": 320.09, "end": 320.19, "word": " is", "probability": 0.5}, {"start": 320.19, "end": 320.19, "word": " what", "probability": 0.716796875}, {"start": 320.19, "end": 320.49, "word": " happened", "probability": 0.7451171875}, {"start": 320.49, "end": 320.63, "word": " last", "probability": 0.7939453125}, {"start": 320.63, "end": 321.11, "word": " time.", "probability": 0.88037109375}, {"start": 321.55, "end": 321.91, "word": " Even", "probability": 0.447265625}, {"start": 321.91, "end": 322.43, "word": " this", "probability": 0.6689453125}, {"start": 322.43, "end": 322.77, "word": " factory", "probability": 0.8359375}, {"start": 322.77, "end": 322.85, "word": " that", "probability": 0.458251953125}, {"start": 322.85, "end": 322.85, "word": " we", "probability": 0.7783203125}, {"start": 322.85, "end": 323.03, "word": " worked", "probability": 0.59326171875}, {"start": 323.03, "end": 323.19, "word": " in", "probability": 0.82568359375}, {"start": 323.19, "end": 323.63, "word": " had", "probability": 0.457763671875}, {"start": 323.63, "end": 323.67, "word": " a", "probability": 0.89404296875}, {"start": 323.67, "end": 323.87, "word": " hash", "probability": 0.66064453125}, {"start": 323.87, "end": 324.11, "word": " map.", "probability": 0.6904296875}, {"start": 324.55, "end": 324.93, "word": " Right", "probability": 0.6435546875}, {"start": 324.93, "end": 325.09, "word": " or", "probability": 0.96337890625}, {"start": 325.09, "end": 325.13, "word": " not?", "probability": 0.8837890625}, {"start": 325.43, "end": 325.71, "word": " Look,", "probability": 0.392333984375}, {"start": 325.87, "end": 326.09, "word": " if", "probability": 0.6943359375}, {"start": 326.09, "end": 326.21, "word": " the", "probability": 0.845703125}, {"start": 326.21, "end": 326.47, "word": " basic", "probability": 0.95068359375}, {"start": 326.47, "end": 326.71, "word": " tree", "probability": 0.84619140625}, {"start": 326.71, "end": 326.81, "word": " that", "probability": 0.79052734375}, {"start": 326.81, "end": 326.99, "word": " I", "probability": 0.99365234375}, {"start": 326.99, "end": 327.25, "word": " ask", "probability": 0.346923828125}, {"start": 327.25, "end": 328.03, "word": " exists,", "probability": 0.330322265625}, {"start": 328.81, "end": 329.03, "word": " bring", "probability": 0.449951171875}, {"start": 329.03, "end": 329.19, "word": " it,", "probability": 0.67431640625}, {"start": 329.19, "end": 329.49, "word": " use", "probability": 0.88037109375}, {"start": 329.49, "end": 329.75, "word": " it,", "probability": 0.9501953125}, {"start": 329.89, "end": 330.03, "word": " and", "probability": 0.81787109375}, {"start": 330.03, "end": 330.17, "word": " produce", "probability": 0.75634765625}, {"start": 330.17, "end": 330.39, "word": " it,", "probability": 0.59912109375}], "temperature": 1.0}, {"id": 15, "seek": 35817, "start": 331.71, "end": 358.17, "text": " Pinetree and return it to the user Because this is almost the same idea That he has a cache here Which is like the hash map that I made Cache is the storage location And he made it like Array Array is a kind of what? Flyweight The only difference is that he made it a kind of flyweight And I made it a kind of basic tree Okay? Now I got flyweight, this is the method that works Of course, what did he do? We used to send it with red or green", "tokens": [22619, 302, 701, 293, 2736, 309, 281, 264, 4195, 1436, 341, 307, 1920, 264, 912, 1558, 663, 415, 575, 257, 19459, 510, 3013, 307, 411, 264, 22019, 4471, 300, 286, 1027, 383, 6000, 307, 264, 6725, 4914, 400, 415, 1027, 309, 411, 1587, 3458, 1587, 3458, 307, 257, 733, 295, 437, 30, 25294, 12329, 440, 787, 2649, 307, 300, 415, 1027, 309, 257, 733, 295, 3603, 12329, 400, 286, 1027, 309, 257, 733, 295, 3875, 4230, 1033, 30, 823, 286, 658, 3603, 12329, 11, 341, 307, 264, 3170, 300, 1985, 2720, 1164, 11, 437, 630, 415, 360, 30, 492, 1143, 281, 2845, 309, 365, 2182, 420, 3092], "avg_logprob": -0.4875578687146858, "compression_ratio": 1.7401574803149606, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 331.71000000000004, "end": 332.11, "word": " Pinetree", "probability": 0.4653523763020833}, {"start": 332.11, "end": 332.31, "word": " and", "probability": 0.73388671875}, {"start": 332.31, "end": 332.53, "word": " return", "probability": 0.44482421875}, {"start": 332.53, "end": 332.65, "word": " it", "probability": 0.7646484375}, {"start": 332.65, "end": 332.75, "word": " to", "probability": 0.8095703125}, {"start": 332.75, "end": 332.81, "word": " the", "probability": 0.6953125}, {"start": 332.81, "end": 333.19, "word": " user", "probability": 0.9189453125}, {"start": 333.19, "end": 333.97, "word": " Because", "probability": 0.276611328125}, {"start": 333.97, "end": 334.19, "word": " this", "probability": 0.496337890625}, {"start": 334.19, "end": 334.23, "word": " is", "probability": 0.82080078125}, {"start": 334.23, "end": 334.31, "word": " almost", "probability": 0.37353515625}, {"start": 334.31, "end": 334.45, "word": " the", "probability": 0.8134765625}, {"start": 334.45, "end": 334.45, "word": " same", "probability": 0.888671875}, {"start": 334.45, "end": 334.79, "word": " idea", "probability": 0.72119140625}, {"start": 334.79, "end": 335.95, "word": " That", "probability": 0.20556640625}, {"start": 335.95, "end": 336.07, "word": " he", "probability": 0.5244140625}, {"start": 336.07, "end": 336.27, "word": " has", "probability": 0.8828125}, {"start": 336.27, "end": 336.51, "word": " a", "probability": 0.50146484375}, {"start": 336.51, "end": 336.87, "word": " cache", "probability": 0.81005859375}, {"start": 336.87, "end": 337.07, "word": " here", "probability": 0.677734375}, {"start": 337.07, "end": 338.65, "word": " Which", "probability": 0.470703125}, {"start": 338.65, "end": 338.77, "word": " is", "probability": 0.9169921875}, {"start": 338.77, "end": 338.89, "word": " like", "probability": 0.6767578125}, {"start": 338.89, "end": 338.99, "word": " the", "probability": 0.71533203125}, {"start": 338.99, "end": 339.17, "word": " hash", "probability": 0.5068359375}, {"start": 339.17, "end": 339.35, "word": " map", "probability": 0.62255859375}, {"start": 339.35, "end": 339.43, "word": " that", "probability": 0.55810546875}, {"start": 339.43, "end": 339.55, "word": " I", "probability": 0.96435546875}, {"start": 339.55, "end": 339.79, "word": " made", "probability": 0.460205078125}, {"start": 339.79, "end": 340.67, "word": " Cache", "probability": 0.7109375}, {"start": 340.67, "end": 340.79, "word": " is", "probability": 0.416748046875}, {"start": 340.79, "end": 340.89, "word": " the", "probability": 0.623046875}, {"start": 340.89, "end": 341.43, "word": " storage", "probability": 0.3701171875}, {"start": 341.43, "end": 341.43, "word": " location", "probability": 0.277587890625}, {"start": 341.43, "end": 341.95, "word": " And", "probability": 0.685546875}, {"start": 341.95, "end": 342.11, "word": " he", "probability": 0.272216796875}, {"start": 342.11, "end": 342.31, "word": " made", "probability": 0.58837890625}, {"start": 342.31, "end": 342.41, "word": " it", "probability": 0.87890625}, {"start": 342.41, "end": 342.55, "word": " like", "probability": 0.66943359375}, {"start": 342.55, "end": 342.87, "word": " Array", "probability": 0.5465087890625}, {"start": 342.87, "end": 343.19, "word": " Array", "probability": 0.631591796875}, {"start": 343.19, "end": 343.31, "word": " is", "probability": 0.65625}, {"start": 343.31, "end": 343.39, "word": " a", "probability": 0.280517578125}, {"start": 343.39, "end": 343.51, "word": " kind", "probability": 0.388427734375}, {"start": 343.51, "end": 343.67, "word": " of", "probability": 0.955078125}, {"start": 343.67, "end": 343.85, "word": " what?", "probability": 0.7685546875}, {"start": 344.79, "end": 345.19, "word": " Flyweight", "probability": 0.91015625}, {"start": 345.19, "end": 345.65, "word": " The", "probability": 0.73095703125}, {"start": 345.65, "end": 345.83, "word": " only", "probability": 0.371826171875}, {"start": 345.83, "end": 345.97, "word": " difference", "probability": 0.82666015625}, {"start": 345.97, "end": 346.33, "word": " is", "probability": 0.873046875}, {"start": 346.33, "end": 346.41, "word": " that", "probability": 0.85693359375}, {"start": 346.41, "end": 346.57, "word": " he", "probability": 0.8955078125}, {"start": 346.57, "end": 346.81, "word": " made", "probability": 0.84033203125}, {"start": 346.81, "end": 347.01, "word": " it", "probability": 0.83544921875}, {"start": 347.01, "end": 347.01, "word": " a", "probability": 0.611328125}, {"start": 347.01, "end": 347.13, "word": " kind", "probability": 0.57958984375}, {"start": 347.13, "end": 347.17, "word": " of", "probability": 0.97412109375}, {"start": 347.17, "end": 347.77, "word": " flyweight", "probability": 0.80712890625}, {"start": 347.77, "end": 348.35, "word": " And", "probability": 0.6123046875}, {"start": 348.35, "end": 348.47, "word": " I", "probability": 0.9384765625}, {"start": 348.47, "end": 348.77, "word": " made", "probability": 0.73583984375}, {"start": 348.77, "end": 348.91, "word": " it", "probability": 0.90771484375}, {"start": 348.91, "end": 348.97, "word": " a", "probability": 0.82373046875}, {"start": 348.97, "end": 349.09, "word": " kind", "probability": 0.6982421875}, {"start": 349.09, "end": 349.13, "word": " of", "probability": 0.97314453125}, {"start": 349.13, "end": 349.39, "word": " basic", "probability": 0.77783203125}, {"start": 349.39, "end": 349.69, "word": " tree", "probability": 0.85693359375}, {"start": 349.69, "end": 350.87, "word": " Okay?", "probability": 0.19580078125}, {"start": 351.47, "end": 351.79, "word": " Now", "probability": 0.87841796875}, {"start": 351.79, "end": 352.37, "word": " I", "probability": 0.466064453125}, {"start": 352.37, "end": 352.37, "word": " got", "probability": 0.5283203125}, {"start": 352.37, "end": 352.89, "word": " flyweight,", "probability": 0.6983642578125}, {"start": 352.97, "end": 353.15, "word": " this", "probability": 0.75146484375}, {"start": 353.15, "end": 353.23, "word": " is", "probability": 0.90283203125}, {"start": 353.23, "end": 353.23, "word": " the", "probability": 0.853515625}, {"start": 353.23, "end": 353.45, "word": " method", "probability": 0.88916015625}, {"start": 353.45, "end": 353.59, "word": " that", "probability": 0.82763671875}, {"start": 353.59, "end": 353.91, "word": " works", "probability": 0.6328125}, {"start": 353.91, "end": 354.79, "word": " Of", "probability": 0.65087890625}, {"start": 354.79, "end": 354.89, "word": " course,", "probability": 0.96142578125}, {"start": 354.95, "end": 355.25, "word": " what", "probability": 0.52294921875}, {"start": 355.25, "end": 355.35, "word": " did", "probability": 0.7294921875}, {"start": 355.35, "end": 355.35, "word": " he", "probability": 0.75}, {"start": 355.35, "end": 355.51, "word": " do?", "probability": 0.609375}, {"start": 355.71, "end": 356.03, "word": " We", "probability": 0.7177734375}, {"start": 356.03, "end": 356.23, "word": " used", "probability": 0.375244140625}, {"start": 356.23, "end": 356.33, "word": " to", "probability": 0.9697265625}, {"start": 356.33, "end": 356.55, "word": " send", "probability": 0.775390625}, {"start": 356.55, "end": 356.85, "word": " it", "probability": 0.5703125}, {"start": 356.85, "end": 357.27, "word": " with", "probability": 0.2261962890625}, {"start": 357.27, "end": 357.59, "word": " red", "probability": 0.279541015625}, {"start": 357.59, "end": 357.79, "word": " or", "probability": 0.94482421875}, {"start": 357.79, "end": 358.17, "word": " green", "probability": 0.94384765625}], "temperature": 1.0}, {"id": 16, "seek": 38152, "start": 359.1, "end": 381.52, "text": "the type that I want. Now here it changed a bit that the state comes in context, it sends the state that it wants, for example this basic tree needs green, red, yellow, it creates it and sends it and asks for a flyweight to this state", "tokens": [3322, 2010, 300, 286, 528, 13, 823, 510, 309, 3105, 257, 857, 300, 264, 1785, 1487, 294, 4319, 11, 309, 14790, 264, 1785, 300, 309, 2738, 11, 337, 1365, 341, 3875, 4230, 2203, 3092, 11, 2182, 11, 5566, 11, 309, 7829, 309, 293, 14790, 309, 293, 8962, 337, 257, 3603, 12329, 281, 341, 1785], "avg_logprob": -0.71136361468922, "compression_ratio": 1.56, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 359.1, "end": 359.6, "word": "the", "probability": 0.037353515625}, {"start": 359.6, "end": 359.84, "word": " type", "probability": 0.81640625}, {"start": 359.84, "end": 359.96, "word": " that", "probability": 0.245849609375}, {"start": 359.96, "end": 360.22, "word": " I", "probability": 0.50830078125}, {"start": 360.22, "end": 360.22, "word": " want.", "probability": 0.73828125}, {"start": 360.7, "end": 361.14, "word": " Now", "probability": 0.426025390625}, {"start": 361.14, "end": 361.56, "word": " here", "probability": 0.37353515625}, {"start": 361.56, "end": 361.94, "word": " it", "probability": 0.533203125}, {"start": 361.94, "end": 362.26, "word": " changed", "probability": 0.6533203125}, {"start": 362.26, "end": 362.44, "word": " a", "probability": 0.759765625}, {"start": 362.44, "end": 362.66, "word": " bit", "probability": 0.483154296875}, {"start": 362.66, "end": 363.4, "word": " that", "probability": 0.26806640625}, {"start": 363.4, "end": 364.16, "word": " the", "probability": 0.59619140625}, {"start": 364.16, "end": 364.62, "word": " state", "probability": 0.876953125}, {"start": 364.62, "end": 365.74, "word": " comes", "probability": 0.1727294921875}, {"start": 365.74, "end": 365.9, "word": " in", "probability": 0.2130126953125}, {"start": 365.9, "end": 366.3, "word": " context,", "probability": 0.64794921875}, {"start": 366.38, "end": 366.46, "word": " it", "probability": 0.433837890625}, {"start": 366.46, "end": 366.66, "word": " sends", "probability": 0.6708984375}, {"start": 366.66, "end": 366.98, "word": " the", "probability": 0.66845703125}, {"start": 366.98, "end": 367.28, "word": " state", "probability": 0.9140625}, {"start": 367.28, "end": 367.38, "word": " that", "probability": 0.6474609375}, {"start": 367.38, "end": 367.42, "word": " it", "probability": 0.462890625}, {"start": 367.42, "end": 367.66, "word": " wants,", "probability": 0.77685546875}, {"start": 367.86, "end": 368.18, "word": " for", "probability": 0.19921875}, {"start": 368.18, "end": 368.4, "word": " example", "probability": 0.92236328125}, {"start": 368.4, "end": 373.54, "word": " this", "probability": 0.38427734375}, {"start": 373.54, "end": 373.76, "word": " basic", "probability": 0.3994140625}, {"start": 373.76, "end": 374.08, "word": " tree", "probability": 0.8095703125}, {"start": 374.08, "end": 375.04, "word": " needs", "probability": 0.311279296875}, {"start": 375.04, "end": 376.52, "word": " green,", "probability": 0.5302734375}, {"start": 376.76, "end": 377.04, "word": " red,", "probability": 0.87158203125}, {"start": 377.2, "end": 377.52, "word": " yellow,", "probability": 0.84130859375}, {"start": 377.72, "end": 378.16, "word": " it", "probability": 0.63818359375}, {"start": 378.16, "end": 378.48, "word": " creates", "probability": 0.223388671875}, {"start": 378.48, "end": 378.62, "word": " it", "probability": 0.5419921875}, {"start": 378.62, "end": 378.74, "word": " and", "probability": 0.75341796875}, {"start": 378.74, "end": 378.98, "word": " sends", "probability": 0.53369140625}, {"start": 378.98, "end": 379.14, "word": " it", "probability": 0.5341796875}, {"start": 379.14, "end": 379.18, "word": " and", "probability": 0.2393798828125}, {"start": 379.18, "end": 379.36, "word": " asks", "probability": 0.78271484375}, {"start": 379.36, "end": 380.32, "word": " for", "probability": 0.3935546875}, {"start": 380.32, "end": 380.4, "word": " a", "probability": 0.396728515625}, {"start": 380.4, "end": 380.88, "word": " flyweight", "probability": 0.767822265625}, {"start": 380.88, "end": 381.06, "word": " to", "probability": 0.4833984375}, {"start": 381.06, "end": 381.18, "word": " this", "probability": 0.53173828125}, {"start": 381.18, "end": 381.52, "word": " state", "probability": 0.9501953125}], "temperature": 1.0}, {"id": 17, "seek": 41031, "start": 382.55, "end": 410.31, "text": " So what does this do? It goes and searches in the cache If the repeating state is present in the cache, that is, the cache is a repeating state, it is not null, it is not present, go and create a new flyweight and put the repeating state in it, okay? And in the end, it returns me a cache that is less than the repeating state, that is, it returns me the flyweight itself So this algorithm may not be very clear, okay? But what I did in the last lecture may be clearer than this, okay? Your responsibility is to modify the UML", "tokens": [407, 437, 775, 341, 360, 30, 467, 1709, 293, 26701, 294, 264, 19459, 759, 264, 18617, 1785, 307, 1974, 294, 264, 19459, 11, 300, 307, 11, 264, 19459, 307, 257, 18617, 1785, 11, 309, 307, 406, 18184, 11, 309, 307, 406, 1974, 11, 352, 293, 1884, 257, 777, 3603, 12329, 293, 829, 264, 18617, 1785, 294, 309, 11, 1392, 30, 400, 294, 264, 917, 11, 309, 11247, 385, 257, 19459, 300, 307, 1570, 813, 264, 18617, 1785, 11, 300, 307, 11, 309, 11247, 385, 264, 3603, 12329, 309, 405, 75, 69, 407, 341, 9284, 815, 406, 312, 588, 1850, 11, 1392, 30, 583, 437, 286, 630, 294, 264, 1036, 7991, 815, 312, 26131, 813, 341, 11, 1392, 30, 2260, 6357, 307, 281, 16927, 264, 624, 12683], "avg_logprob": -0.4485728384002926, "compression_ratio": 1.996212121212121, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 382.55, "end": 382.73, "word": " So", "probability": 0.329833984375}, {"start": 382.73, "end": 382.87, "word": " what", "probability": 0.358154296875}, {"start": 382.87, "end": 382.87, "word": " does", "probability": 0.74462890625}, {"start": 382.87, "end": 382.95, "word": " this", "probability": 0.52685546875}, {"start": 382.95, "end": 383.29, "word": " do?", "probability": 0.69140625}, {"start": 383.41, "end": 383.49, "word": " It", "probability": 0.65869140625}, {"start": 383.49, "end": 383.59, "word": " goes", "probability": 0.295654296875}, {"start": 383.59, "end": 383.69, "word": " and", "probability": 0.734375}, {"start": 383.69, "end": 383.93, "word": " searches", "probability": 0.330322265625}, {"start": 383.93, "end": 384.13, "word": " in", "probability": 0.50830078125}, {"start": 384.13, "end": 384.19, "word": " the", "probability": 0.7763671875}, {"start": 384.19, "end": 384.45, "word": " cache", "probability": 0.82666015625}, {"start": 384.45, "end": 385.45, "word": " If", "probability": 0.509765625}, {"start": 385.45, "end": 385.57, "word": " the", "probability": 0.6650390625}, {"start": 385.57, "end": 385.89, "word": " repeating", "probability": 0.775390625}, {"start": 385.89, "end": 386.21, "word": " state", "probability": 0.94140625}, {"start": 386.21, "end": 386.35, "word": " is", "probability": 0.732421875}, {"start": 386.35, "end": 386.71, "word": " present", "probability": 0.360107421875}, {"start": 386.71, "end": 386.81, "word": " in", "probability": 0.884765625}, {"start": 386.81, "end": 386.95, "word": " the", "probability": 0.8984375}, {"start": 386.95, "end": 387.21, "word": " cache,", "probability": 0.8046875}, {"start": 387.33, "end": 387.41, "word": " that", "probability": 0.11773681640625}, {"start": 387.41, "end": 387.43, "word": " is,", "probability": 0.83740234375}, {"start": 387.45, "end": 387.65, "word": " the", "probability": 0.35107421875}, {"start": 387.65, "end": 387.91, "word": " cache", "probability": 0.68994140625}, {"start": 387.91, "end": 388.01, "word": " is", "probability": 0.432861328125}, {"start": 388.01, "end": 388.01, "word": " a", "probability": 0.62158203125}, {"start": 388.01, "end": 388.25, "word": " repeating", "probability": 0.96044921875}, {"start": 388.25, "end": 388.71, "word": " state,", "probability": 0.947265625}, {"start": 388.79, "end": 388.89, "word": " it", "probability": 0.3056640625}, {"start": 388.89, "end": 389.23, "word": " is", "probability": 0.58447265625}, {"start": 389.23, "end": 389.29, "word": " not", "probability": 0.8974609375}, {"start": 389.29, "end": 389.91, "word": " null,", "probability": 0.55908203125}, {"start": 391.19, "end": 391.19, "word": " it", "probability": 0.28125}, {"start": 391.19, "end": 391.57, "word": " is", "probability": 0.6728515625}, {"start": 391.57, "end": 391.61, "word": " not", "probability": 0.8740234375}, {"start": 391.61, "end": 392.07, "word": " present,", "probability": 0.5302734375}, {"start": 392.33, "end": 392.87, "word": " go", "probability": 0.472900390625}, {"start": 392.87, "end": 393.03, "word": " and", "probability": 0.63427734375}, {"start": 393.03, "end": 393.29, "word": " create", "probability": 0.55810546875}, {"start": 393.29, "end": 393.49, "word": " a", "probability": 0.9521484375}, {"start": 393.49, "end": 393.71, "word": " new", "probability": 0.8916015625}, {"start": 393.71, "end": 394.23, "word": " flyweight", "probability": 0.787353515625}, {"start": 394.23, "end": 394.39, "word": " and", "probability": 0.8408203125}, {"start": 394.39, "end": 394.59, "word": " put", "probability": 0.517578125}, {"start": 394.59, "end": 396.17, "word": " the", "probability": 0.42919921875}, {"start": 396.17, "end": 396.59, "word": " repeating", "probability": 0.98046875}, {"start": 396.59, "end": 397.03, "word": " state", "probability": 0.95166015625}, {"start": 397.03, "end": 397.13, "word": " in", "probability": 0.76611328125}, {"start": 397.13, "end": 397.29, "word": " it,", "probability": 0.9130859375}, {"start": 397.43, "end": 397.67, "word": " okay?", "probability": 0.459716796875}, {"start": 397.79, "end": 398.11, "word": " And", "probability": 0.72216796875}, {"start": 398.11, "end": 398.21, "word": " in", "probability": 0.496826171875}, {"start": 398.21, "end": 398.29, "word": " the", "probability": 0.9189453125}, {"start": 398.29, "end": 398.47, "word": " end,", "probability": 0.9453125}, {"start": 398.59, "end": 398.59, "word": " it", "probability": 0.283203125}, {"start": 398.59, "end": 398.83, "word": " returns", "probability": 0.6689453125}, {"start": 398.83, "end": 399.51, "word": " me", "probability": 0.371337890625}, {"start": 399.51, "end": 399.69, "word": " a", "probability": 0.5908203125}, {"start": 399.69, "end": 400.05, "word": " cache", "probability": 0.84375}, {"start": 400.05, "end": 400.21, "word": " that", "probability": 0.394287109375}, {"start": 400.21, "end": 400.29, "word": " is", "probability": 0.141845703125}, {"start": 400.29, "end": 400.49, "word": " less", "probability": 0.57177734375}, {"start": 400.49, "end": 400.49, "word": " than", "probability": 0.92919921875}, {"start": 400.49, "end": 400.67, "word": " the", "probability": 0.89599609375}, {"start": 400.67, "end": 400.91, "word": " repeating", "probability": 0.9765625}, {"start": 400.91, "end": 401.23, "word": " state,", "probability": 0.94580078125}, {"start": 401.33, "end": 401.41, "word": " that", "probability": 0.319091796875}, {"start": 401.41, "end": 401.41, "word": " is,", "probability": 0.9033203125}, {"start": 401.43, "end": 401.47, "word": " it", "probability": 0.83349609375}, {"start": 401.47, "end": 401.63, "word": " returns", "probability": 0.79150390625}, {"start": 401.63, "end": 401.79, "word": " me", "probability": 0.61572265625}, {"start": 401.79, "end": 401.85, "word": " the", "probability": 0.90625}, {"start": 401.85, "end": 402.25, "word": " flyweight", "probability": 0.85205078125}, {"start": 402.25, "end": 402.57, "word": " itself", "probability": 0.732147216796875}, {"start": 402.57, "end": 403.05, "word": " So", "probability": 0.1890869140625}, {"start": 403.05, "end": 403.21, "word": " this", "probability": 0.72216796875}, {"start": 403.21, "end": 403.71, "word": " algorithm", "probability": 0.6015625}, {"start": 403.71, "end": 403.97, "word": " may", "probability": 0.316650390625}, {"start": 403.97, "end": 404.17, "word": " not", "probability": 0.9248046875}, {"start": 404.17, "end": 404.23, "word": " be", "probability": 0.92724609375}, {"start": 404.23, "end": 404.23, "word": " very", "probability": 0.72314453125}, {"start": 404.23, "end": 404.43, "word": " clear,", "probability": 0.8125}, {"start": 405.33, "end": 405.59, "word": " okay?", "probability": 0.68017578125}, {"start": 405.65, "end": 405.85, "word": " But", "probability": 0.9208984375}, {"start": 405.85, "end": 406.11, "word": " what", "probability": 0.6708984375}, {"start": 406.11, "end": 406.21, "word": " I", "probability": 0.96923828125}, {"start": 406.21, "end": 406.47, "word": " did", "probability": 0.91455078125}, {"start": 406.47, "end": 406.59, "word": " in", "probability": 0.8134765625}, {"start": 406.59, "end": 406.59, "word": " the", "probability": 0.83203125}, {"start": 406.59, "end": 406.63, "word": " last", "probability": 0.5341796875}, {"start": 406.63, "end": 406.93, "word": " lecture", "probability": 0.7958984375}, {"start": 406.93, "end": 407.31, "word": " may", "probability": 0.62353515625}, {"start": 407.31, "end": 407.41, "word": " be", "probability": 0.94970703125}, {"start": 407.41, "end": 407.67, "word": " clearer", "probability": 0.79150390625}, {"start": 407.67, "end": 407.85, "word": " than", "probability": 0.9580078125}, {"start": 407.85, "end": 408.15, "word": " this,", "probability": 0.77587890625}, {"start": 408.53, "end": 408.77, "word": " okay?", "probability": 0.84033203125}, {"start": 408.89, "end": 409.13, "word": " Your", "probability": 0.56640625}, {"start": 409.13, "end": 409.43, "word": " responsibility", "probability": 0.88134765625}, {"start": 409.43, "end": 409.63, "word": " is", "probability": 0.92626953125}, {"start": 409.63, "end": 409.63, "word": " to", "probability": 0.9619140625}, {"start": 409.63, "end": 409.85, "word": " modify", "probability": 0.1488037109375}, {"start": 409.85, "end": 409.97, "word": " the", "probability": 0.9189453125}, {"start": 409.97, "end": 410.31, "word": " UML", "probability": 0.823974609375}], "temperature": 1.0}, {"id": 18, "seek": 43792, "start": 411.42, "end": 437.92, "text": " Consider that the example I gave you, you want to draw it one day. It can come to you in the exam. Okay? So what I did is that this is not a kind of flyweight array, it is a kind of repeating state. Okay? And I ask it what is the type of repeating state that I want. If the repeating state is present in the cache, I create an object, I do not return the repeating state, I create an object from the flyweight and put it in the repeating state and say, here you go.", "tokens": [17416, 300, 264, 1365, 286, 2729, 291, 11, 291, 528, 281, 2642, 309, 472, 786, 13, 467, 393, 808, 281, 291, 294, 264, 1139, 13, 1033, 30, 407, 437, 286, 630, 307, 300, 341, 307, 406, 257, 733, 295, 3603, 12329, 10225, 11, 309, 307, 257, 733, 295, 18617, 1785, 13, 1033, 30, 400, 286, 1029, 309, 437, 307, 264, 2010, 295, 18617, 1785, 300, 286, 528, 13, 759, 264, 18617, 1785, 307, 1974, 294, 264, 19459, 11, 286, 1884, 364, 2657, 11, 286, 360, 406, 2736, 264, 18617, 1785, 11, 286, 1884, 364, 2657, 490, 264, 3603, 12329, 293, 829, 309, 294, 264, 18617, 1785, 293, 584, 11, 510, 291, 352, 13], "avg_logprob": -0.44901314952917265, "compression_ratio": 1.9829787234042553, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 411.42, "end": 411.82, "word": " Consider", "probability": 0.30126953125}, {"start": 411.82, "end": 412.08, "word": " that", "probability": 0.66845703125}, {"start": 412.08, "end": 412.58, "word": " the", "probability": 0.35888671875}, {"start": 412.58, "end": 412.82, "word": " example", "probability": 0.91455078125}, {"start": 412.82, "end": 412.94, "word": " I", "probability": 0.495849609375}, {"start": 412.94, "end": 413.08, "word": " gave", "probability": 0.69384765625}, {"start": 413.08, "end": 413.26, "word": " you,", "probability": 0.787109375}, {"start": 413.42, "end": 413.48, "word": " you", "probability": 0.6875}, {"start": 413.48, "end": 413.52, "word": " want", "probability": 0.273193359375}, {"start": 413.52, "end": 413.7, "word": " to", "probability": 0.96044921875}, {"start": 413.7, "end": 413.84, "word": " draw", "probability": 0.74169921875}, {"start": 413.84, "end": 413.96, "word": " it", "probability": 0.53076171875}, {"start": 413.96, "end": 414.22, "word": " one", "probability": 0.1314697265625}, {"start": 414.22, "end": 414.36, "word": " day.", "probability": 0.93310546875}, {"start": 414.94, "end": 415.34, "word": " It", "probability": 0.4287109375}, {"start": 415.34, "end": 415.54, "word": " can", "probability": 0.334228515625}, {"start": 415.54, "end": 415.62, "word": " come", "probability": 0.5400390625}, {"start": 415.62, "end": 415.74, "word": " to", "probability": 0.413818359375}, {"start": 415.74, "end": 415.74, "word": " you", "probability": 0.84228515625}, {"start": 415.74, "end": 415.78, "word": " in", "probability": 0.352783203125}, {"start": 415.78, "end": 415.84, "word": " the", "probability": 0.69091796875}, {"start": 415.84, "end": 416.04, "word": " exam.", "probability": 0.8603515625}, {"start": 416.76, "end": 417.0, "word": " Okay?", "probability": 0.177001953125}, {"start": 417.44, "end": 417.66, "word": " So", "probability": 0.34814453125}, {"start": 417.66, "end": 417.92, "word": " what", "probability": 0.59619140625}, {"start": 417.92, "end": 417.94, "word": " I", "probability": 0.97412109375}, {"start": 417.94, "end": 418.24, "word": " did", "probability": 0.80712890625}, {"start": 418.24, "end": 418.58, "word": " is", "probability": 0.392578125}, {"start": 418.58, "end": 418.86, "word": " that", "probability": 0.41015625}, {"start": 418.86, "end": 419.18, "word": " this", "probability": 0.69140625}, {"start": 419.18, "end": 419.28, "word": " is", "probability": 0.69580078125}, {"start": 419.28, "end": 419.44, "word": " not", "probability": 0.93115234375}, {"start": 419.44, "end": 419.64, "word": " a", "probability": 0.4755859375}, {"start": 419.64, "end": 419.72, "word": " kind", "probability": 0.51708984375}, {"start": 419.72, "end": 419.8, "word": " of", "probability": 0.9755859375}, {"start": 419.8, "end": 420.32, "word": " flyweight", "probability": 0.640380859375}, {"start": 420.32, "end": 420.86, "word": " array,", "probability": 0.379638671875}, {"start": 421.16, "end": 421.52, "word": " it", "probability": 0.32421875}, {"start": 421.52, "end": 421.52, "word": " is", "probability": 0.63623046875}, {"start": 421.52, "end": 421.58, "word": " a", "probability": 0.88720703125}, {"start": 421.58, "end": 421.7, "word": " kind", "probability": 0.63037109375}, {"start": 421.7, "end": 421.82, "word": " of", "probability": 0.96826171875}, {"start": 421.82, "end": 422.18, "word": " repeating", "probability": 0.89892578125}, {"start": 422.18, "end": 423.8, "word": " state.", "probability": 0.9501953125}, {"start": 424.2, "end": 424.58, "word": " Okay?", "probability": 0.6416015625}, {"start": 424.7, "end": 424.84, "word": " And", "probability": 0.771484375}, {"start": 424.84, "end": 425.06, "word": " I", "probability": 0.9306640625}, {"start": 425.06, "end": 425.32, "word": " ask", "probability": 0.697265625}, {"start": 425.32, "end": 425.68, "word": " it", "probability": 0.376220703125}, {"start": 425.68, "end": 426.24, "word": " what", "probability": 0.5}, {"start": 426.24, "end": 426.3, "word": " is", "probability": 0.6513671875}, {"start": 426.3, "end": 426.4, "word": " the", "probability": 0.916015625}, {"start": 426.4, "end": 426.66, "word": " type", "probability": 0.94482421875}, {"start": 426.66, "end": 426.86, "word": " of", "probability": 0.95654296875}, {"start": 426.86, "end": 427.26, "word": " repeating", "probability": 0.5361328125}, {"start": 427.26, "end": 427.6, "word": " state", "probability": 0.953125}, {"start": 427.6, "end": 427.7, "word": " that", "probability": 0.59423828125}, {"start": 427.7, "end": 427.8, "word": " I", "probability": 0.990234375}, {"start": 427.8, "end": 428.0, "word": " want.", "probability": 0.85546875}, {"start": 428.5, "end": 428.9, "word": " If", "probability": 0.9501953125}, {"start": 428.9, "end": 429.02, "word": " the", "probability": 0.8486328125}, {"start": 429.02, "end": 429.32, "word": " repeating", "probability": 0.96484375}, {"start": 429.32, "end": 429.66, "word": " state", "probability": 0.94873046875}, {"start": 429.66, "end": 429.8, "word": " is", "probability": 0.734375}, {"start": 429.8, "end": 430.08, "word": " present", "probability": 0.361328125}, {"start": 430.08, "end": 430.22, "word": " in", "probability": 0.93701171875}, {"start": 430.22, "end": 430.34, "word": " the", "probability": 0.91064453125}, {"start": 430.34, "end": 430.7, "word": " cache,", "probability": 0.82861328125}, {"start": 431.96, "end": 432.2, "word": " I", "probability": 0.69873046875}, {"start": 432.2, "end": 432.32, "word": " create", "probability": 0.64208984375}, {"start": 432.32, "end": 432.54, "word": " an", "probability": 0.88037109375}, {"start": 432.54, "end": 432.8, "word": " object,", "probability": 0.9765625}, {"start": 432.96, "end": 433.02, "word": " I", "probability": 0.80078125}, {"start": 433.02, "end": 433.02, "word": " do", "probability": 0.48193359375}, {"start": 433.02, "end": 433.28, "word": " not", "probability": 0.94091796875}, {"start": 433.28, "end": 433.28, "word": " return", "probability": 0.73974609375}, {"start": 433.28, "end": 433.44, "word": " the", "probability": 0.75244140625}, {"start": 433.44, "end": 433.68, "word": " repeating", "probability": 0.9716796875}, {"start": 433.68, "end": 434.0, "word": " state,", "probability": 0.94873046875}, {"start": 434.02, "end": 434.18, "word": " I", "probability": 0.91552734375}, {"start": 434.18, "end": 434.32, "word": " create", "probability": 0.8203125}, {"start": 434.32, "end": 434.5, "word": " an", "probability": 0.923828125}, {"start": 434.5, "end": 434.7, "word": " object", "probability": 0.96923828125}, {"start": 434.7, "end": 434.88, "word": " from", "probability": 0.763671875}, {"start": 434.88, "end": 434.98, "word": " the", "probability": 0.82177734375}, {"start": 434.98, "end": 435.4, "word": " flyweight", "probability": 0.946533203125}, {"start": 435.4, "end": 435.54, "word": " and", "probability": 0.65234375}, {"start": 435.54, "end": 435.8, "word": " put", "probability": 0.4228515625}, {"start": 435.8, "end": 435.92, "word": " it", "probability": 0.66015625}, {"start": 435.92, "end": 436.2, "word": " in", "probability": 0.73291015625}, {"start": 436.2, "end": 436.98, "word": " the", "probability": 0.61328125}, {"start": 436.98, "end": 437.22, "word": " repeating", "probability": 0.95654296875}, {"start": 437.22, "end": 437.42, "word": " state", "probability": 0.95654296875}, {"start": 437.42, "end": 437.5, "word": " and", "probability": 0.4326171875}, {"start": 437.5, "end": 437.64, "word": " say,", "probability": 0.4912109375}, {"start": 437.74, "end": 437.82, "word": " here", "probability": 0.20849609375}, {"start": 437.82, "end": 437.82, "word": " you", "probability": 0.9267578125}, {"start": 437.82, "end": 437.92, "word": " go.", "probability": 0.59033203125}], "temperature": 1.0}, {"id": 19, "seek": 45985, "start": 438.97, "end": 459.85, "text": "In the end, what does it bring back? It brings back an object from where? From the flyweight. Ok? This is what the factory calls for, so that in the end, what does it bring back? It brings back an object that uses the flyweight. Ok? Ok, so look here. This is part of the code of the context. The context creates the unique state.", "tokens": [4575, 264, 917, 11, 437, 775, 309, 1565, 646, 30, 467, 5607, 646, 364, 2657, 490, 689, 30, 3358, 264, 3603, 12329, 13, 3477, 30, 639, 307, 437, 264, 9265, 5498, 337, 11, 370, 300, 294, 264, 917, 11, 437, 775, 309, 1565, 646, 30, 467, 5607, 646, 364, 2657, 300, 4960, 264, 3603, 12329, 13, 3477, 30, 3477, 11, 370, 574, 510, 13, 639, 307, 644, 295, 264, 3089, 295, 264, 4319, 13, 440, 4319, 7829, 264, 3845, 1785, 13], "avg_logprob": -0.5217225333539451, "compression_ratio": 1.9583333333333333, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 438.97, "end": 439.31, "word": "In", "probability": 0.22412109375}, {"start": 439.31, "end": 439.39, "word": " the", "probability": 0.53564453125}, {"start": 439.39, "end": 439.55, "word": " end,", "probability": 0.88671875}, {"start": 439.65, "end": 439.93, "word": " what", "probability": 0.515625}, {"start": 439.93, "end": 440.01, "word": " does", "probability": 0.43017578125}, {"start": 440.01, "end": 440.01, "word": " it", "probability": 0.2308349609375}, {"start": 440.01, "end": 440.35, "word": " bring", "probability": 0.12200927734375}, {"start": 440.35, "end": 440.43, "word": " back?", "probability": 0.6513671875}, {"start": 440.49, "end": 440.55, "word": " It", "probability": 0.58642578125}, {"start": 440.55, "end": 440.83, "word": " brings", "probability": 0.84814453125}, {"start": 440.83, "end": 440.91, "word": " back", "probability": 0.6865234375}, {"start": 440.91, "end": 441.01, "word": " an", "probability": 0.59130859375}, {"start": 441.01, "end": 441.13, "word": " object", "probability": 0.96630859375}, {"start": 441.13, "end": 441.33, "word": " from", "probability": 0.6240234375}, {"start": 441.33, "end": 441.55, "word": " where?", "probability": 0.190673828125}, {"start": 441.97, "end": 442.27, "word": " From", "probability": 0.73095703125}, {"start": 442.27, "end": 442.39, "word": " the", "probability": 0.39794921875}, {"start": 442.39, "end": 442.87, "word": " flyweight.", "probability": 0.78466796875}, {"start": 443.37, "end": 443.61, "word": " Ok?", "probability": 0.1956787109375}, {"start": 444.09, "end": 444.53, "word": " This", "probability": 0.25341796875}, {"start": 444.53, "end": 444.63, "word": " is", "probability": 0.306396484375}, {"start": 444.63, "end": 444.73, "word": " what", "probability": 0.6572265625}, {"start": 444.73, "end": 445.37, "word": " the", "probability": 0.289794921875}, {"start": 445.37, "end": 446.41, "word": " factory", "probability": 0.849609375}, {"start": 446.41, "end": 446.41, "word": " calls", "probability": 0.1617431640625}, {"start": 446.41, "end": 446.53, "word": " for,", "probability": 0.25830078125}, {"start": 446.99, "end": 446.99, "word": " so", "probability": 0.4296875}, {"start": 446.99, "end": 447.55, "word": " that", "probability": 0.67626953125}, {"start": 447.55, "end": 447.55, "word": " in", "probability": 0.377197265625}, {"start": 447.55, "end": 447.63, "word": " the", "probability": 0.912109375}, {"start": 447.63, "end": 448.11, "word": " end,", "probability": 0.900390625}, {"start": 448.37, "end": 448.37, "word": " what", "probability": 0.79638671875}, {"start": 448.37, "end": 448.39, "word": " does", "probability": 0.66552734375}, {"start": 448.39, "end": 448.41, "word": " it", "probability": 0.818359375}, {"start": 448.41, "end": 448.57, "word": " bring", "probability": 0.3232421875}, {"start": 448.57, "end": 448.67, "word": " back?", "probability": 0.8564453125}, {"start": 449.31, "end": 449.69, "word": " It", "probability": 0.533203125}, {"start": 449.69, "end": 449.77, "word": " brings", "probability": 0.84912109375}, {"start": 449.77, "end": 449.89, "word": " back", "probability": 0.853515625}, {"start": 449.89, "end": 450.15, "word": " an", "probability": 0.7333984375}, {"start": 450.15, "end": 450.15, "word": " object", "probability": 0.97509765625}, {"start": 450.15, "end": 450.27, "word": " that", "probability": 0.485107421875}, {"start": 450.27, "end": 450.69, "word": " uses", "probability": 0.79345703125}, {"start": 450.69, "end": 450.87, "word": " the", "probability": 0.837890625}, {"start": 450.87, "end": 451.31, "word": " flyweight.", "probability": 0.955078125}, {"start": 452.07, "end": 452.41, "word": " Ok?", "probability": 0.7861328125}, {"start": 455.07, "end": 455.51, "word": " Ok,", "probability": 0.416748046875}, {"start": 455.51, "end": 455.61, "word": " so", "probability": 0.51708984375}, {"start": 455.61, "end": 455.83, "word": " look", "probability": 0.65087890625}, {"start": 455.83, "end": 456.09, "word": " here.", "probability": 0.7099609375}, {"start": 456.21, "end": 456.43, "word": " This", "probability": 0.87109375}, {"start": 456.43, "end": 456.61, "word": " is", "probability": 0.935546875}, {"start": 456.61, "end": 456.83, "word": " part", "probability": 0.66650390625}, {"start": 456.83, "end": 457.05, "word": " of", "probability": 0.9716796875}, {"start": 457.05, "end": 457.13, "word": " the", "probability": 0.86181640625}, {"start": 457.13, "end": 457.33, "word": " code", "probability": 0.86328125}, {"start": 457.33, "end": 457.47, "word": " of", "probability": 0.6064453125}, {"start": 457.47, "end": 457.57, "word": " the", "probability": 0.45361328125}, {"start": 457.57, "end": 457.85, "word": " context.", "probability": 0.56982421875}, {"start": 457.97, "end": 458.07, "word": " The", "probability": 0.81689453125}, {"start": 458.07, "end": 458.37, "word": " context", "probability": 0.8857421875}, {"start": 458.37, "end": 458.73, "word": " creates", "probability": 0.7021484375}, {"start": 458.73, "end": 458.89, "word": " the", "probability": 0.5751953125}, {"start": 458.89, "end": 459.21, "word": " unique", "probability": 0.85302734375}, {"start": 459.21, "end": 459.85, "word": " state.", "probability": 0.95556640625}], "temperature": 1.0}, {"id": 20, "seek": 47715, "start": 461.21, "end": 477.15, "text": "He created a unique state, one, based on the fact that one is common between thousands of objects. For example, we created three objects. He created one, then went to the factory and asked it to calculate the repeating state.", "tokens": [5205, 2942, 257, 3845, 1785, 11, 472, 11, 2361, 322, 264, 1186, 300, 472, 307, 2689, 1296, 5383, 295, 6565, 13, 1171, 1365, 11, 321, 2942, 1045, 6565, 13, 634, 2942, 472, 11, 550, 1437, 281, 264, 9265, 293, 2351, 309, 281, 8873, 264, 18617, 1785, 13], "avg_logprob": -0.6959635280072689, "compression_ratio": 1.5734265734265733, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 461.21, "end": 461.59, "word": "He", "probability": 0.3203125}, {"start": 461.59, "end": 461.89, "word": " created", "probability": 0.471435546875}, {"start": 461.89, "end": 462.01, "word": " a", "probability": 0.7841796875}, {"start": 462.01, "end": 462.19, "word": " unique", "probability": 0.69482421875}, {"start": 462.19, "end": 462.47, "word": " state,", "probability": 0.94580078125}, {"start": 462.79, "end": 462.79, "word": " one,", "probability": 0.34765625}, {"start": 462.89, "end": 463.13, "word": " based", "probability": 0.2176513671875}, {"start": 463.13, "end": 463.47, "word": " on", "probability": 0.9296875}, {"start": 463.47, "end": 463.69, "word": " the", "probability": 0.5146484375}, {"start": 463.69, "end": 463.69, "word": " fact", "probability": 0.6865234375}, {"start": 463.69, "end": 463.99, "word": " that", "probability": 0.90966796875}, {"start": 463.99, "end": 464.37, "word": " one", "probability": 0.4951171875}, {"start": 464.37, "end": 464.65, "word": " is", "probability": 0.38525390625}, {"start": 464.65, "end": 465.05, "word": " common", "probability": 0.426513671875}, {"start": 465.05, "end": 465.39, "word": " between", "probability": 0.387939453125}, {"start": 465.39, "end": 465.71, "word": " thousands", "probability": 0.1932373046875}, {"start": 465.71, "end": 465.83, "word": " of", "probability": 0.87255859375}, {"start": 465.83, "end": 466.09, "word": " objects.", "probability": 0.93017578125}, {"start": 466.63, "end": 466.91, "word": " For", "probability": 0.409423828125}, {"start": 466.91, "end": 467.23, "word": " example,", "probability": 0.82177734375}, {"start": 467.39, "end": 467.47, "word": " we", "probability": 0.58056640625}, {"start": 467.47, "end": 467.87, "word": " created", "probability": 0.25439453125}, {"start": 467.87, "end": 468.19, "word": " three", "probability": 0.7470703125}, {"start": 468.19, "end": 468.29, "word": " objects.", "probability": 0.7490234375}, {"start": 469.31, "end": 469.55, "word": " He", "probability": 0.4365234375}, {"start": 469.55, "end": 469.85, "word": " created", "probability": 0.728515625}, {"start": 469.85, "end": 470.69, "word": " one,", "probability": 0.59521484375}, {"start": 470.79, "end": 471.09, "word": " then", "probability": 0.48486328125}, {"start": 471.09, "end": 471.31, "word": " went", "probability": 0.481689453125}, {"start": 471.31, "end": 471.45, "word": " to", "probability": 0.94873046875}, {"start": 471.45, "end": 471.55, "word": " the", "probability": 0.75146484375}, {"start": 471.55, "end": 471.87, "word": " factory", "probability": 0.884765625}, {"start": 471.87, "end": 471.99, "word": " and", "probability": 0.6376953125}, {"start": 471.99, "end": 472.11, "word": " asked", "probability": 0.57373046875}, {"start": 472.11, "end": 472.23, "word": " it", "probability": 0.2437744140625}, {"start": 472.23, "end": 473.41, "word": " to", "probability": 0.317138671875}, {"start": 473.41, "end": 473.71, "word": " calculate", "probability": 0.5771484375}, {"start": 473.71, "end": 476.03, "word": " the", "probability": 0.491943359375}, {"start": 476.03, "end": 476.51, "word": " repeating", "probability": 0.261962890625}, {"start": 476.51, "end": 477.15, "word": " state.", "probability": 0.94775390625}], "temperature": 1.0}, {"id": 21, "seek": 49969, "start": 478.67, "end": 499.69, "text": "So now he is searching if there is a flyweight in the array that has a repeating state. If he finds it, he returns the flyweight that he has. If he does not find it, he creates a new one, puts it in the cache and returns it to him. I say get flyweight and then I go to the flyweight and apply the operation.", "tokens": [6455, 586, 415, 307, 10808, 498, 456, 307, 257, 3603, 12329, 294, 264, 10225, 300, 575, 257, 18617, 1785, 13, 759, 415, 10704, 309, 11, 415, 11247, 264, 3603, 12329, 300, 415, 575, 13, 759, 415, 775, 406, 915, 309, 11, 415, 7829, 257, 777, 472, 11, 8137, 309, 294, 264, 19459, 293, 11247, 309, 281, 796, 13, 286, 584, 483, 3603, 12329, 293, 550, 286, 352, 281, 264, 3603, 12329, 293, 3079, 264, 6916, 13], "avg_logprob": -0.6152597464524306, "compression_ratio": 1.7848837209302326, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 478.67, "end": 478.85, "word": "So", "probability": 0.1588134765625}, {"start": 478.85, "end": 479.07, "word": " now", "probability": 0.5322265625}, {"start": 479.07, "end": 479.23, "word": " he", "probability": 0.413818359375}, {"start": 479.23, "end": 479.33, "word": " is", "probability": 0.40625}, {"start": 479.33, "end": 479.61, "word": " searching", "probability": 0.6953125}, {"start": 479.61, "end": 480.29, "word": " if", "probability": 0.14892578125}, {"start": 480.29, "end": 480.79, "word": " there", "probability": 0.32080078125}, {"start": 480.79, "end": 481.15, "word": " is", "probability": 0.765625}, {"start": 481.15, "end": 481.19, "word": " a", "probability": 0.5595703125}, {"start": 481.19, "end": 481.19, "word": " flyweight", "probability": 0.53192138671875}, {"start": 481.19, "end": 481.19, "word": " in", "probability": 0.325927734375}, {"start": 481.19, "end": 481.35, "word": " the", "probability": 0.47314453125}, {"start": 481.35, "end": 481.63, "word": " array", "probability": 0.40625}, {"start": 481.63, "end": 483.13, "word": " that", "probability": 0.14794921875}, {"start": 483.13, "end": 483.21, "word": " has", "probability": 0.60400390625}, {"start": 483.21, "end": 483.33, "word": " a", "probability": 0.724609375}, {"start": 483.33, "end": 483.63, "word": " repeating", "probability": 0.71875}, {"start": 483.63, "end": 484.05, "word": " state.", "probability": 0.955078125}, {"start": 484.37, "end": 484.89, "word": " If", "probability": 0.681640625}, {"start": 484.89, "end": 485.21, "word": " he", "probability": 0.5556640625}, {"start": 485.21, "end": 485.37, "word": " finds", "probability": 0.489013671875}, {"start": 485.37, "end": 485.49, "word": " it,", "probability": 0.640625}, {"start": 485.53, "end": 485.63, "word": " he", "probability": 0.73046875}, {"start": 485.63, "end": 485.91, "word": " returns", "probability": 0.46923828125}, {"start": 485.91, "end": 486.11, "word": " the", "probability": 0.58203125}, {"start": 486.11, "end": 486.63, "word": " flyweight", "probability": 0.81591796875}, {"start": 486.63, "end": 486.77, "word": " that", "probability": 0.40185546875}, {"start": 486.77, "end": 486.87, "word": " he", "probability": 0.40625}, {"start": 486.87, "end": 487.33, "word": " has.", "probability": 0.4931640625}, {"start": 487.69, "end": 488.03, "word": " If", "probability": 0.8193359375}, {"start": 488.03, "end": 488.03, "word": " he", "probability": 0.86376953125}, {"start": 488.03, "end": 488.09, "word": " does", "probability": 0.3271484375}, {"start": 488.09, "end": 488.09, "word": " not", "probability": 0.93310546875}, {"start": 488.09, "end": 488.29, "word": " find", "probability": 0.87158203125}, {"start": 488.29, "end": 488.47, "word": " it,", "probability": 0.84814453125}, {"start": 488.63, "end": 488.63, "word": " he", "probability": 0.787109375}, {"start": 488.63, "end": 489.19, "word": " creates", "probability": 0.3427734375}, {"start": 489.19, "end": 490.15, "word": " a", "probability": 0.7998046875}, {"start": 490.15, "end": 490.41, "word": " new", "probability": 0.8740234375}, {"start": 490.41, "end": 490.53, "word": " one,", "probability": 0.0784912109375}, {"start": 490.89, "end": 491.33, "word": " puts", "probability": 0.410888671875}, {"start": 491.33, "end": 491.41, "word": " it", "probability": 0.91650390625}, {"start": 491.41, "end": 491.47, "word": " in", "probability": 0.8828125}, {"start": 491.47, "end": 491.61, "word": " the", "probability": 0.86279296875}, {"start": 491.61, "end": 491.97, "word": " cache", "probability": 0.6796875}, {"start": 491.97, "end": 492.43, "word": " and", "probability": 0.6279296875}, {"start": 492.43, "end": 492.71, "word": " returns", "probability": 0.802734375}, {"start": 492.71, "end": 493.13, "word": " it", "probability": 0.52294921875}, {"start": 493.13, "end": 494.03, "word": " to", "probability": 0.56640625}, {"start": 494.03, "end": 494.03, "word": " him.", "probability": 0.361572265625}, {"start": 494.59, "end": 495.11, "word": " I", "probability": 0.16259765625}, {"start": 495.11, "end": 495.37, "word": " say", "probability": 0.3876953125}, {"start": 495.37, "end": 495.69, "word": " get", "probability": 0.65234375}, {"start": 495.69, "end": 496.53, "word": " flyweight", "probability": 0.869140625}, {"start": 496.53, "end": 496.63, "word": " and", "probability": 0.452392578125}, {"start": 496.63, "end": 496.77, "word": " then", "probability": 0.51806640625}, {"start": 496.77, "end": 496.85, "word": " I", "probability": 0.44189453125}, {"start": 496.85, "end": 496.95, "word": " go", "probability": 0.7041015625}, {"start": 496.95, "end": 497.07, "word": " to", "probability": 0.9111328125}, {"start": 497.07, "end": 497.15, "word": " the", "probability": 0.62939453125}, {"start": 497.15, "end": 497.57, "word": " flyweight", "probability": 0.939208984375}, {"start": 497.57, "end": 497.73, "word": " and", "probability": 0.82958984375}, {"start": 497.73, "end": 498.07, "word": " apply", "probability": 0.343994140625}, {"start": 498.07, "end": 499.27, "word": " the", "probability": 0.83447265625}, {"start": 499.27, "end": 499.69, "word": " operation.", "probability": 0.86865234375}], "temperature": 1.0}, {"id": 22, "seek": 51933, "start": 501.89, "end": 519.33, "text": " Here, I benefited from the flyweight with the factory. Of course, we can do without the factory. In the end, I can let the client create the unique state and then create the pine tree and see what the basic tree wants and give it to the flyweight.", "tokens": [1692, 11, 286, 33605, 490, 264, 3603, 12329, 365, 264, 9265, 13, 2720, 1164, 11, 321, 393, 360, 1553, 264, 9265, 13, 682, 264, 917, 11, 286, 393, 718, 264, 6423, 1884, 264, 3845, 1785, 293, 550, 1884, 264, 15113, 4230, 293, 536, 437, 264, 3875, 4230, 2738, 293, 976, 309, 281, 264, 3603, 12329, 13], "avg_logprob": -0.48053728488453645, "compression_ratio": 1.6870748299319729, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 501.89, "end": 502.39, "word": " Here,", "probability": 0.09283447265625}, {"start": 502.73, "end": 502.83, "word": " I", "probability": 0.51953125}, {"start": 502.83, "end": 503.19, "word": " benefited", "probability": 0.293701171875}, {"start": 503.19, "end": 503.59, "word": " from", "probability": 0.8740234375}, {"start": 503.59, "end": 503.73, "word": " the", "probability": 0.65673828125}, {"start": 503.73, "end": 504.19, "word": " flyweight", "probability": 0.701416015625}, {"start": 504.19, "end": 504.41, "word": " with", "probability": 0.360595703125}, {"start": 504.41, "end": 504.59, "word": " the", "probability": 0.83349609375}, {"start": 504.59, "end": 504.93, "word": " factory.", "probability": 0.87548828125}, {"start": 505.75, "end": 505.93, "word": " Of", "probability": 0.587890625}, {"start": 505.93, "end": 506.11, "word": " course,", "probability": 0.9521484375}, {"start": 506.21, "end": 506.23, "word": " we", "probability": 0.8232421875}, {"start": 506.23, "end": 506.45, "word": " can", "probability": 0.8515625}, {"start": 506.45, "end": 506.83, "word": " do", "probability": 0.166015625}, {"start": 506.83, "end": 506.89, "word": " without", "probability": 0.8955078125}, {"start": 506.89, "end": 507.13, "word": " the", "probability": 0.783203125}, {"start": 507.13, "end": 507.49, "word": " factory.", "probability": 0.873046875}, {"start": 507.93, "end": 508.03, "word": " In", "probability": 0.41650390625}, {"start": 508.03, "end": 508.15, "word": " the", "probability": 0.87646484375}, {"start": 508.15, "end": 508.29, "word": " end,", "probability": 0.91796875}, {"start": 508.45, "end": 508.49, "word": " I", "probability": 0.91748046875}, {"start": 508.49, "end": 508.73, "word": " can", "probability": 0.88671875}, {"start": 508.73, "end": 508.97, "word": " let", "probability": 0.625}, {"start": 508.97, "end": 509.11, "word": " the", "probability": 0.84619140625}, {"start": 509.11, "end": 509.43, "word": " client", "probability": 0.91162109375}, {"start": 509.43, "end": 510.53, "word": " create", "probability": 0.33251953125}, {"start": 510.53, "end": 510.97, "word": " the", "probability": 0.6162109375}, {"start": 510.97, "end": 511.37, "word": " unique", "probability": 0.79833984375}, {"start": 511.37, "end": 511.81, "word": " state", "probability": 0.9501953125}, {"start": 511.81, "end": 512.81, "word": " and", "probability": 0.300537109375}, {"start": 512.81, "end": 513.33, "word": " then", "probability": 0.53857421875}, {"start": 513.33, "end": 514.19, "word": " create", "probability": 0.322509765625}, {"start": 514.19, "end": 514.61, "word": " the", "probability": 0.5556640625}, {"start": 514.61, "end": 514.83, "word": " pine", "probability": 0.48486328125}, {"start": 514.83, "end": 515.11, "word": " tree", "probability": 0.890625}, {"start": 515.11, "end": 515.25, "word": " and", "probability": 0.54150390625}, {"start": 515.25, "end": 515.51, "word": " see", "probability": 0.415771484375}, {"start": 515.51, "end": 515.91, "word": " what", "probability": 0.63818359375}, {"start": 515.91, "end": 516.89, "word": " the", "probability": 0.4892578125}, {"start": 516.89, "end": 517.17, "word": " basic", "probability": 0.931640625}, {"start": 517.17, "end": 517.39, "word": " tree", "probability": 0.78955078125}, {"start": 517.39, "end": 517.65, "word": " wants", "probability": 0.490234375}, {"start": 517.65, "end": 518.37, "word": " and", "probability": 0.52294921875}, {"start": 518.37, "end": 518.61, "word": " give", "probability": 0.409912109375}, {"start": 518.61, "end": 518.75, "word": " it", "probability": 0.859375}, {"start": 518.75, "end": 518.87, "word": " to", "probability": 0.93896484375}, {"start": 518.87, "end": 518.99, "word": " the", "probability": 0.88720703125}, {"start": 518.99, "end": 519.33, "word": " flyweight.", "probability": 0.94775390625}], "temperature": 1.0}, {"id": 23, "seek": 54879, "start": 519.97, "end": 548.79, "text": " for the pine tree. But the idea here is that this process confirms the intrinsic state if it was made before or if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made before and if it wasn't made", "tokens": [337, 264, 15113, 4230, 13, 583, 264, 1558, 510, 307, 300, 341, 1399, 39982, 264, 35698, 1785, 498, 309, 390, 1027, 949, 420, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027, 949, 293, 498, 309, 2067, 380, 1027], "avg_logprob": -0.2038888825310601, "compression_ratio": 8.642201834862385, "no_speech_prob": 3.6954879760742188e-06, "words": [{"start": 519.97, "end": 520.21, "word": " for", "probability": 0.11767578125}, {"start": 520.21, "end": 520.53, "word": " the", "probability": 0.6650390625}, {"start": 520.53, "end": 520.73, "word": " pine", "probability": 0.23486328125}, {"start": 520.73, "end": 520.95, "word": " tree.", "probability": 0.8720703125}, {"start": 521.03, "end": 521.17, "word": " But", "probability": 0.5908203125}, {"start": 521.17, "end": 521.29, "word": " the", "probability": 0.73876953125}, {"start": 521.29, "end": 521.51, "word": " idea", "probability": 0.7001953125}, {"start": 521.51, "end": 521.73, "word": " here", "probability": 0.58837890625}, {"start": 521.73, "end": 521.89, "word": " is", "probability": 0.91064453125}, {"start": 521.89, "end": 522.07, "word": " that", "probability": 0.7744140625}, {"start": 522.07, "end": 522.29, "word": " this", "probability": 0.76220703125}, {"start": 522.29, "end": 522.69, "word": " process", "probability": 0.8349609375}, {"start": 522.69, "end": 523.21, "word": " confirms", "probability": 0.2646484375}, {"start": 523.21, "end": 524.17, "word": " the", "probability": 0.5712890625}, {"start": 524.17, "end": 525.73, "word": " intrinsic", "probability": 0.30615234375}, {"start": 525.73, "end": 526.53, "word": " state", "probability": 0.95654296875}, {"start": 526.53, "end": 526.83, "word": " if", "probability": 0.1768798828125}, {"start": 526.83, "end": 527.11, "word": " it", "probability": 0.80517578125}, {"start": 527.11, "end": 527.11, "word": " was", "probability": 0.474365234375}, {"start": 527.11, "end": 527.11, "word": " made", "probability": 0.4453125}, {"start": 527.11, "end": 527.33, "word": " before", "probability": 0.298583984375}, {"start": 527.33, "end": 527.59, "word": " or", "probability": 0.5390625}, {"start": 527.59, "end": 527.75, "word": " if", "probability": 0.28369140625}, {"start": 527.75, "end": 527.81, "word": " it", "probability": 0.89404296875}, {"start": 527.81, "end": 527.85, "word": " wasn't", "probability": 0.7188720703125}, {"start": 527.85, "end": 528.19, "word": " made", "probability": 0.72705078125}, {"start": 528.19, "end": 528.37, "word": " before", "probability": 0.452392578125}, {"start": 528.37, "end": 528.43, "word": " and", "probability": 0.487548828125}, {"start": 528.43, "end": 528.57, "word": " if", "probability": 0.84423828125}, {"start": 528.57, "end": 528.81, "word": " it", "probability": 0.87939453125}, {"start": 528.81, "end": 528.81, "word": " wasn't", "probability": 0.6282958984375}, {"start": 528.81, "end": 529.37, "word": " made", "probability": 0.7919921875}, {"start": 529.37, "end": 529.55, "word": " before", "probability": 0.55078125}, {"start": 529.55, "end": 529.67, "word": " and", "probability": 0.2427978515625}, {"start": 529.67, "end": 529.73, "word": " if", "probability": 0.73486328125}, {"start": 529.73, "end": 530.75, "word": " it", "probability": 0.9228515625}, {"start": 530.75, "end": 530.75, "word": " wasn't", "probability": 0.8583984375}, {"start": 530.75, "end": 531.05, "word": " made", "probability": 0.76513671875}, {"start": 531.05, "end": 531.27, "word": " before", "probability": 0.52099609375}, {"start": 531.27, "end": 531.27, "word": " and", "probability": 0.2103271484375}, {"start": 531.27, "end": 531.35, "word": " if", "probability": 0.55810546875}, {"start": 531.35, "end": 531.57, "word": " it", "probability": 0.91259765625}, {"start": 531.57, "end": 531.57, "word": " wasn't", "probability": 0.841796875}, {"start": 531.57, "end": 531.57, "word": " made", "probability": 0.82470703125}, {"start": 531.57, "end": 531.57, "word": " before", "probability": 0.57763671875}, {"start": 531.57, "end": 531.57, "word": " and", "probability": 0.348388671875}, {"start": 531.57, "end": 531.57, "word": " if", "probability": 0.615234375}, {"start": 531.57, "end": 531.57, "word": " it", "probability": 0.92138671875}, {"start": 531.57, "end": 531.57, "word": " wasn't", "probability": 0.87744140625}, {"start": 531.57, "end": 531.57, "word": " made", "probability": 0.859375}, {"start": 531.57, "end": 531.57, "word": " before", "probability": 0.68115234375}, {"start": 531.57, "end": 531.57, "word": " and", "probability": 0.5078125}, {"start": 531.57, "end": 531.57, "word": " if", "probability": 0.7158203125}, {"start": 531.57, "end": 531.57, "word": " it", "probability": 0.93701171875}, {"start": 531.57, "end": 531.57, "word": " wasn't", "probability": 0.91259765625}, {"start": 531.57, "end": 531.57, "word": " made", "probability": 0.87060546875}, {"start": 531.57, "end": 531.57, "word": " before", "probability": 0.763671875}, {"start": 531.57, "end": 531.57, "word": " and", "probability": 0.619140625}, {"start": 531.57, "end": 531.57, "word": " if", "probability": 0.78857421875}, {"start": 531.57, "end": 531.57, "word": " it", "probability": 0.94580078125}, {"start": 531.57, "end": 531.57, "word": " wasn't", "probability": 0.93408203125}, {"start": 531.57, "end": 531.57, "word": " made", "probability": 0.87890625}, {"start": 531.57, "end": 531.57, "word": " before", "probability": 0.80078125}, {"start": 531.57, "end": 531.57, "word": " and", "probability": 0.6904296875}, {"start": 531.57, "end": 531.57, "word": " if", "probability": 0.83544921875}, {"start": 531.57, "end": 531.57, "word": " it", "probability": 0.94921875}, {"start": 531.57, "end": 531.57, "word": " wasn't", "probability": 0.947265625}, {"start": 531.57, "end": 531.57, "word": " made", "probability": 0.88330078125}, {"start": 531.57, "end": 531.57, "word": " before", "probability": 0.8232421875}, {"start": 531.57, "end": 531.57, "word": " and", "probability": 0.7431640625}, {"start": 531.57, "end": 531.57, "word": " if", "probability": 0.86669921875}, {"start": 531.57, "end": 531.57, "word": " it", "probability": 0.95166015625}, {"start": 531.57, "end": 531.57, "word": " wasn't", "probability": 0.956298828125}, {"start": 531.57, "end": 531.57, "word": " made", "probability": 0.88720703125}, {"start": 531.57, "end": 531.57, "word": " before", "probability": 0.8369140625}, {"start": 531.57, "end": 531.57, "word": " and", "probability": 0.7880859375}, {"start": 531.57, "end": 531.57, "word": " if", "probability": 0.88671875}, {"start": 531.57, "end": 531.57, "word": " it", "probability": 0.95361328125}, {"start": 531.57, "end": 531.57, "word": " wasn't", "probability": 0.96240234375}, {"start": 531.57, "end": 531.57, "word": " made", "probability": 0.890625}, {"start": 531.57, "end": 531.61, "word": " before", "probability": 0.84814453125}, {"start": 531.61, "end": 531.61, "word": " and", "probability": 0.8212890625}, {"start": 531.61, "end": 531.61, "word": " if", "probability": 0.90234375}, {"start": 531.61, "end": 531.61, "word": " it", "probability": 0.95458984375}, {"start": 531.61, "end": 531.61, "word": " wasn't", "probability": 0.967529296875}, {"start": 531.61, "end": 531.61, "word": " made", "probability": 0.89013671875}, {"start": 531.61, "end": 531.65, "word": " before", "probability": 0.8564453125}, {"start": 531.65, "end": 531.65, "word": " and", "probability": 0.85009765625}, {"start": 531.65, "end": 531.65, "word": " if", "probability": 0.91259765625}, {"start": 531.65, "end": 531.65, "word": " it", "probability": 0.95556640625}, {"start": 531.65, "end": 531.65, "word": " wasn't", "probability": 0.971435546875}, {"start": 531.65, "end": 531.65, "word": " made", "probability": 0.89306640625}, {"start": 531.65, "end": 531.65, "word": " before", "probability": 0.86279296875}, {"start": 531.65, "end": 531.65, "word": " and", "probability": 0.87060546875}, {"start": 531.65, "end": 531.65, "word": " if", "probability": 0.92041015625}, {"start": 531.65, "end": 531.65, "word": " it", "probability": 0.95458984375}, {"start": 531.65, "end": 531.65, "word": " wasn't", "probability": 0.9736328125}, {"start": 531.65, "end": 531.65, "word": " made", "probability": 0.89453125}, {"start": 531.65, "end": 531.65, "word": " before", "probability": 0.86669921875}, {"start": 531.65, "end": 531.97, "word": " and", "probability": 0.88671875}, {"start": 531.97, "end": 531.97, "word": " if", "probability": 0.927734375}, {"start": 531.97, "end": 531.97, "word": " it", "probability": 0.955078125}, {"start": 531.97, "end": 531.97, "word": " wasn't", "probability": 0.976318359375}, {"start": 531.97, "end": 531.97, "word": " made", "probability": 0.89501953125}, {"start": 531.97, "end": 531.97, "word": " before", "probability": 0.869140625}, {"start": 531.97, "end": 532.15, "word": " and", "probability": 0.8994140625}, {"start": 532.15, "end": 532.15, "word": " if", "probability": 0.93212890625}, {"start": 532.15, "end": 532.33, "word": " it", "probability": 0.95556640625}, {"start": 532.33, "end": 532.35, "word": " wasn't", "probability": 0.977294921875}, {"start": 532.35, "end": 532.35, "word": " made", "probability": 0.89697265625}, {"start": 532.35, "end": 532.57, "word": " before", "probability": 0.86962890625}, {"start": 532.57, "end": 532.61, "word": " and", "probability": 0.90966796875}, {"start": 532.61, "end": 532.61, "word": " if", "probability": 0.93701171875}, {"start": 532.61, "end": 532.61, "word": " it", "probability": 0.95556640625}, {"start": 532.61, "end": 532.75, "word": " wasn't", "probability": 0.978271484375}, {"start": 532.75, "end": 532.93, "word": " made", "probability": 0.89697265625}, {"start": 532.93, "end": 532.95, "word": " before", "probability": 0.8701171875}, {"start": 532.95, "end": 533.35, "word": " and", "probability": 0.9150390625}, {"start": 533.35, "end": 533.43, "word": " if", "probability": 0.93994140625}, {"start": 533.43, "end": 533.43, "word": " it", "probability": 0.95556640625}, {"start": 533.43, "end": 533.65, "word": " wasn't", "probability": 0.9794921875}, {"start": 533.65, "end": 533.65, "word": " made", "probability": 0.89599609375}, {"start": 533.65, "end": 533.65, "word": " before", "probability": 0.8701171875}, {"start": 533.65, "end": 533.73, "word": " and", "probability": 0.9208984375}, {"start": 533.73, "end": 533.93, "word": " if", "probability": 0.94384765625}, {"start": 533.93, "end": 533.93, "word": " it", "probability": 0.95556640625}, {"start": 533.93, "end": 533.93, "word": " wasn't", "probability": 0.9794921875}, {"start": 533.93, "end": 533.93, "word": " made", "probability": 0.89892578125}, {"start": 533.93, "end": 533.93, "word": " before", "probability": 0.87353515625}, {"start": 533.93, "end": 534.07, "word": " and", "probability": 0.92529296875}, {"start": 534.07, "end": 534.59, "word": " if", "probability": 0.9462890625}, {"start": 534.59, "end": 534.69, "word": " it", "probability": 0.9560546875}, {"start": 534.69, "end": 534.81, "word": " wasn't", "probability": 0.9794921875}, {"start": 534.81, "end": 534.85, "word": " made", "probability": 0.89794921875}, {"start": 534.85, "end": 534.93, "word": " before", "probability": 0.87109375}, {"start": 534.93, "end": 535.01, "word": " and", "probability": 0.927734375}, {"start": 535.01, "end": 537.49, "word": " if", "probability": 0.94873046875}, {"start": 537.49, "end": 537.59, "word": " it", "probability": 0.95703125}, {"start": 537.59, "end": 537.59, "word": " wasn't", "probability": 0.979736328125}, {"start": 537.59, "end": 537.59, "word": " made", "probability": 0.900390625}, {"start": 537.59, "end": 537.91, "word": " before", "probability": 0.87255859375}, {"start": 537.91, "end": 538.05, "word": " and", "probability": 0.9306640625}, {"start": 538.05, "end": 538.17, "word": " if", "probability": 0.94921875}, {"start": 538.17, "end": 538.17, "word": " it", "probability": 0.9560546875}, {"start": 538.17, "end": 538.25, "word": " wasn't", "probability": 0.97998046875}, {"start": 538.25, "end": 538.25, "word": " made", "probability": 0.90234375}, {"start": 538.25, "end": 538.25, "word": " before", "probability": 0.8740234375}, {"start": 538.25, "end": 538.25, "word": " and", "probability": 0.93310546875}, {"start": 538.25, "end": 539.67, "word": " if", "probability": 0.9501953125}, {"start": 539.67, "end": 541.49, "word": " it", "probability": 0.9560546875}, {"start": 541.49, "end": 541.49, "word": " wasn't", "probability": 0.97998046875}, {"start": 541.49, "end": 541.49, "word": " made", "probability": 0.900390625}, {"start": 541.49, "end": 541.81, "word": " before", "probability": 0.8759765625}, {"start": 541.81, "end": 542.35, "word": " and", "probability": 0.9345703125}, {"start": 542.35, "end": 547.21, "word": " if", "probability": 0.95068359375}, {"start": 547.21, "end": 547.21, "word": " it", "probability": 0.9560546875}, {"start": 547.21, "end": 547.21, "word": " wasn't", "probability": 0.980224609375}, {"start": 547.21, "end": 547.21, "word": " made", "probability": 0.90283203125}, {"start": 547.21, "end": 547.21, "word": " before", "probability": 0.8759765625}, {"start": 547.21, "end": 547.21, "word": " and", "probability": 0.93603515625}, {"start": 547.21, "end": 547.21, "word": " if", "probability": 0.95263671875}, {"start": 547.21, "end": 547.21, "word": " it", "probability": 0.95751953125}, {"start": 547.21, "end": 547.21, "word": " wasn't", "probability": 0.97998046875}, {"start": 547.21, "end": 547.21, "word": " made", "probability": 0.90380859375}, {"start": 547.21, "end": 547.21, "word": " before", "probability": 0.8759765625}, {"start": 547.21, "end": 547.21, "word": " and", "probability": 0.9375}, {"start": 547.21, "end": 547.21, "word": " if", "probability": 0.953125}, {"start": 547.21, "end": 547.21, "word": " it", "probability": 0.9560546875}, {"start": 547.21, "end": 547.21, "word": " wasn't", "probability": 0.980224609375}, {"start": 547.21, "end": 547.21, "word": " made", "probability": 0.90380859375}, {"start": 547.21, "end": 547.21, "word": " before", "probability": 0.87890625}, {"start": 547.21, "end": 547.21, "word": " and", "probability": 0.93896484375}, {"start": 547.21, "end": 547.21, "word": " if", "probability": 0.953125}, {"start": 547.21, "end": 547.21, "word": " it", "probability": 0.9560546875}, {"start": 547.21, "end": 547.21, "word": " wasn't", "probability": 0.98046875}, {"start": 547.21, "end": 547.21, "word": " made", "probability": 0.904296875}, {"start": 547.21, "end": 547.21, "word": " before", "probability": 0.8798828125}, {"start": 547.21, "end": 547.21, "word": " and", "probability": 0.9404296875}, {"start": 547.21, "end": 547.21, "word": " if", "probability": 0.953125}, {"start": 547.21, "end": 547.21, "word": " it", "probability": 0.95751953125}, {"start": 547.21, "end": 547.21, "word": " wasn't", "probability": 0.98046875}, {"start": 547.21, "end": 547.21, "word": " made", "probability": 0.904296875}, {"start": 547.21, "end": 547.21, "word": " before", "probability": 0.87939453125}, {"start": 547.21, "end": 547.21, "word": " and", "probability": 0.94140625}, {"start": 547.21, "end": 547.21, "word": " if", "probability": 0.95361328125}, {"start": 547.21, "end": 547.21, "word": " it", "probability": 0.95751953125}, {"start": 547.21, "end": 547.25, "word": " wasn't", "probability": 0.980224609375}, {"start": 547.25, "end": 547.25, "word": " made", "probability": 0.90673828125}, {"start": 547.25, "end": 547.25, "word": " before", "probability": 0.8798828125}, {"start": 547.25, "end": 547.25, "word": " and", "probability": 0.94140625}, {"start": 547.25, "end": 547.53, "word": " if", "probability": 0.95361328125}, {"start": 547.53, "end": 547.53, "word": " it", "probability": 0.95751953125}, {"start": 547.53, "end": 547.81, "word": " wasn't", "probability": 0.97998046875}, {"start": 547.81, "end": 548.79, "word": " made", "probability": 0.90625}], "temperature": 1.0}, {"id": 24, "seek": 57320, "start": 551.54, "end": 573.2, "text": "Of course, are the design patterns that I covered all the existing design patterns? No, I mean, I studied this subject for more than a year, so sometimes I change it, there are design patterns that I feel that they are no longer used in a big way, I cancel them, and there are design patterns that I feel that their use increases, for example, the flyweight for the first time", "tokens": [23919, 1164, 11, 366, 264, 1715, 8294, 300, 286, 5343, 439, 264, 6741, 1715, 8294, 30, 883, 11, 286, 914, 11, 286, 9454, 341, 3983, 337, 544, 813, 257, 1064, 11, 370, 2171, 286, 1319, 309, 11, 456, 366, 1715, 8294, 300, 286, 841, 300, 436, 366, 572, 2854, 1143, 294, 257, 955, 636, 11, 286, 10373, 552, 11, 293, 456, 366, 1715, 8294, 300, 286, 841, 300, 641, 764, 8637, 11, 337, 1365, 11, 264, 3603, 12329, 337, 264, 700, 565], "avg_logprob": -0.39646083331969845, "compression_ratio": 1.8894472361809045, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 551.54, "end": 551.76, "word": "Of", "probability": 0.34033203125}, {"start": 551.76, "end": 551.86, "word": " course,", "probability": 0.92822265625}, {"start": 551.98, "end": 552.04, "word": " are", "probability": 0.458251953125}, {"start": 552.04, "end": 552.24, "word": " the", "probability": 0.434814453125}, {"start": 552.24, "end": 552.56, "word": " design", "probability": 0.86181640625}, {"start": 552.56, "end": 552.94, "word": " patterns", "probability": 0.8955078125}, {"start": 552.94, "end": 553.06, "word": " that", "probability": 0.61669921875}, {"start": 553.06, "end": 553.24, "word": " I", "probability": 0.97412109375}, {"start": 553.24, "end": 553.56, "word": " covered", "probability": 0.46240234375}, {"start": 553.56, "end": 554.34, "word": " all", "probability": 0.439697265625}, {"start": 554.34, "end": 554.48, "word": " the", "probability": 0.3115234375}, {"start": 554.48, "end": 554.74, "word": " existing", "probability": 0.91015625}, {"start": 554.74, "end": 554.78, "word": " design", "probability": 0.71240234375}, {"start": 554.78, "end": 555.24, "word": " patterns?", "probability": 0.9091796875}, {"start": 556.04, "end": 556.44, "word": " No,", "probability": 0.88330078125}, {"start": 556.84, "end": 557.0, "word": " I", "probability": 0.67724609375}, {"start": 557.0, "end": 557.0, "word": " mean,", "probability": 0.57763671875}, {"start": 557.48, "end": 557.7, "word": " I", "probability": 0.7177734375}, {"start": 557.7, "end": 558.38, "word": " studied", "probability": 0.58544921875}, {"start": 558.38, "end": 558.5, "word": " this", "probability": 0.884765625}, {"start": 558.5, "end": 558.82, "word": " subject", "probability": 0.50146484375}, {"start": 558.82, "end": 559.32, "word": " for", "probability": 0.697265625}, {"start": 559.32, "end": 559.76, "word": " more", "probability": 0.759765625}, {"start": 559.76, "end": 559.94, "word": " than", "probability": 0.94091796875}, {"start": 559.94, "end": 560.08, "word": " a", "probability": 0.9140625}, {"start": 560.08, "end": 560.18, "word": " year,", "probability": 0.94873046875}, {"start": 560.34, "end": 560.48, "word": " so", "probability": 0.67822265625}, {"start": 560.48, "end": 560.74, "word": " sometimes", "probability": 0.79296875}, {"start": 560.74, "end": 560.9, "word": " I", "probability": 0.9658203125}, {"start": 560.9, "end": 561.14, "word": " change", "probability": 0.86279296875}, {"start": 561.14, "end": 561.2, "word": " it,", "probability": 0.493896484375}, {"start": 561.22, "end": 561.3, "word": " there", "probability": 0.62646484375}, {"start": 561.3, "end": 561.34, "word": " are", "probability": 0.92138671875}, {"start": 561.34, "end": 561.66, "word": " design", "probability": 0.85400390625}, {"start": 561.66, "end": 561.94, "word": " patterns", "probability": 0.9052734375}, {"start": 561.94, "end": 562.12, "word": " that", "probability": 0.66796875}, {"start": 562.12, "end": 562.12, "word": " I", "probability": 0.564453125}, {"start": 562.12, "end": 562.32, "word": " feel", "probability": 0.87841796875}, {"start": 562.32, "end": 562.46, "word": " that", "probability": 0.405029296875}, {"start": 562.46, "end": 562.7, "word": " they", "probability": 0.6201171875}, {"start": 562.7, "end": 563.38, "word": " are", "probability": 0.57275390625}, {"start": 563.38, "end": 563.5, "word": " no", "probability": 0.197998046875}, {"start": 563.5, "end": 563.86, "word": " longer", "probability": 0.9306640625}, {"start": 563.86, "end": 564.26, "word": " used", "probability": 0.459716796875}, {"start": 564.26, "end": 564.34, "word": " in", "probability": 0.25244140625}, {"start": 564.34, "end": 564.48, "word": " a", "probability": 0.65234375}, {"start": 564.48, "end": 564.76, "word": " big", "probability": 0.45458984375}, {"start": 564.76, "end": 564.82, "word": " way,", "probability": 0.94873046875}, {"start": 564.9, "end": 565.04, "word": " I", "probability": 0.50732421875}, {"start": 565.04, "end": 565.2, "word": " cancel", "probability": 0.65869140625}, {"start": 565.2, "end": 565.46, "word": " them,", "probability": 0.89208984375}, {"start": 565.76, "end": 565.9, "word": " and", "probability": 0.8916015625}, {"start": 565.9, "end": 566.02, "word": " there", "probability": 0.892578125}, {"start": 566.02, "end": 566.06, "word": " are", "probability": 0.94482421875}, {"start": 566.06, "end": 566.34, "word": " design", "probability": 0.90380859375}, {"start": 566.34, "end": 566.66, "word": " patterns", "probability": 0.9033203125}, {"start": 566.66, "end": 566.78, "word": " that", "probability": 0.89599609375}, {"start": 566.78, "end": 566.78, "word": " I", "probability": 0.87060546875}, {"start": 566.78, "end": 567.0, "word": " feel", "probability": 0.95703125}, {"start": 567.0, "end": 567.1, "word": " that", "probability": 0.74462890625}, {"start": 567.1, "end": 567.16, "word": " their", "probability": 0.828125}, {"start": 567.16, "end": 567.54, "word": " use", "probability": 0.8095703125}, {"start": 567.54, "end": 571.04, "word": " increases,", "probability": 0.560546875}, {"start": 571.4, "end": 571.4, "word": " for", "probability": 0.716796875}, {"start": 571.4, "end": 571.96, "word": " example,", "probability": 0.9697265625}, {"start": 572.08, "end": 572.12, "word": " the", "probability": 0.4658203125}, {"start": 572.12, "end": 572.62, "word": " flyweight", "probability": 0.702392578125}, {"start": 572.62, "end": 572.82, "word": " for", "probability": 0.50927734375}, {"start": 572.82, "end": 572.96, "word": " the", "probability": 0.93359375}, {"start": 572.96, "end": 572.96, "word": " first", "probability": 0.890625}, {"start": 572.96, "end": 573.2, "word": " time", "probability": 0.8974609375}], "temperature": 1.0}, {"id": 25, "seek": 58269, "start": 573.85, "end": 582.69, "text": "I explained dependency injection last year and this year as well. So these are the design patterns that most people use.", "tokens": [40, 8825, 33621, 22873, 1036, 1064, 293, 341, 1064, 382, 731, 13, 407, 613, 366, 264, 1715, 8294, 300, 881, 561, 764, 13], "avg_logprob": -0.8255208507180214, "compression_ratio": 1.2244897959183674, "no_speech_prob": 7.927417755126953e-06, "words": [{"start": 573.85, "end": 573.95, "word": "I", "probability": 0.259033203125}, {"start": 573.95, "end": 574.29, "word": " explained", "probability": 0.174072265625}, {"start": 574.29, "end": 575.01, "word": " dependency", "probability": 0.2119140625}, {"start": 575.01, "end": 575.79, "word": " injection", "probability": 0.87744140625}, {"start": 575.79, "end": 576.39, "word": " last", "probability": 0.60546875}, {"start": 576.39, "end": 577.15, "word": " year", "probability": 0.90283203125}, {"start": 577.15, "end": 577.23, "word": " and", "probability": 0.81494140625}, {"start": 577.23, "end": 577.89, "word": " this", "probability": 0.67529296875}, {"start": 577.89, "end": 577.89, "word": " year", "probability": 0.89892578125}, {"start": 577.89, "end": 578.31, "word": " as", "probability": 0.140869140625}, {"start": 578.31, "end": 578.31, "word": " well.", "probability": 0.90087890625}, {"start": 579.37, "end": 579.81, "word": " So", "probability": 0.250244140625}, {"start": 579.81, "end": 580.27, "word": " these", "probability": 0.44921875}, {"start": 580.27, "end": 580.59, "word": " are", "probability": 0.7294921875}, {"start": 580.59, "end": 580.59, "word": " the", "probability": 0.41943359375}, {"start": 580.59, "end": 580.87, "word": " design", "probability": 0.62939453125}, {"start": 580.87, "end": 581.27, "word": " patterns", "probability": 0.88671875}, {"start": 581.27, "end": 581.39, "word": " that", "probability": 0.5322265625}, {"start": 581.39, "end": 581.65, "word": " most", "probability": 0.04742431640625}, {"start": 581.65, "end": 582.03, "word": " people", "probability": 0.3271484375}, {"start": 582.03, "end": 582.69, "word": " use.", "probability": 0.486083984375}], "temperature": 1.0}, {"id": 26, "seek": 61141, "start": 584.92, "end": 611.42, "text": "Okay, today, God willing, we will talk about a topic that is really a big topic, okay? It needs more than a lecture to cover it. But through this lecture, we will only talk about concepts related to the architecture pattern, which is how to build applications, how to organize the construction of applications in general,", "tokens": [8297, 11, 965, 11, 1265, 4950, 11, 321, 486, 751, 466, 257, 4829, 300, 307, 534, 257, 955, 4829, 11, 1392, 30, 467, 2203, 544, 813, 257, 7991, 281, 2060, 309, 13, 583, 807, 341, 7991, 11, 321, 486, 787, 751, 466, 10392, 4077, 281, 264, 9482, 5102, 11, 597, 307, 577, 281, 1322, 5821, 11, 577, 281, 13859, 264, 6435, 295, 5821, 294, 2674, 11], "avg_logprob": -0.5116604442027077, "compression_ratio": 1.621212121212121, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 584.92, "end": 585.54, "word": "Okay,", "probability": 0.326904296875}, {"start": 586.02, "end": 586.6, "word": " today,", "probability": 0.7802734375}, {"start": 586.7, "end": 586.92, "word": " God", "probability": 0.6201171875}, {"start": 586.92, "end": 586.92, "word": " willing,", "probability": 0.74365234375}, {"start": 586.98, "end": 587.08, "word": " we", "probability": 0.92138671875}, {"start": 587.08, "end": 587.12, "word": " will", "probability": 0.5556640625}, {"start": 587.12, "end": 587.34, "word": " talk", "probability": 0.1434326171875}, {"start": 587.34, "end": 587.48, "word": " about", "probability": 0.8818359375}, {"start": 587.48, "end": 587.9, "word": " a", "probability": 0.66796875}, {"start": 587.9, "end": 587.9, "word": " topic", "probability": 0.1981201171875}, {"start": 587.9, "end": 588.06, "word": " that", "probability": 0.485595703125}, {"start": 588.06, "end": 588.16, "word": " is", "probability": 0.83740234375}, {"start": 588.16, "end": 588.28, "word": " really", "probability": 0.3056640625}, {"start": 588.28, "end": 588.28, "word": " a", "probability": 0.25927734375}, {"start": 588.28, "end": 588.74, "word": " big", "probability": 0.6103515625}, {"start": 588.74, "end": 589.86, "word": " topic,", "probability": 0.70263671875}, {"start": 590.08, "end": 590.62, "word": " okay?", "probability": 0.34130859375}, {"start": 591.72, "end": 591.78, "word": " It", "probability": 0.489013671875}, {"start": 591.78, "end": 592.14, "word": " needs", "probability": 0.369384765625}, {"start": 592.14, "end": 592.48, "word": " more", "probability": 0.8125}, {"start": 592.48, "end": 592.56, "word": " than", "probability": 0.875}, {"start": 592.56, "end": 592.66, "word": " a", "probability": 0.6552734375}, {"start": 592.66, "end": 592.92, "word": " lecture", "probability": 0.94140625}, {"start": 592.92, "end": 593.12, "word": " to", "probability": 0.5078125}, {"start": 593.12, "end": 593.6, "word": " cover", "probability": 0.8115234375}, {"start": 593.6, "end": 593.84, "word": " it.", "probability": 0.787109375}, {"start": 594.86, "end": 595.48, "word": " But", "probability": 0.66796875}, {"start": 595.48, "end": 596.76, "word": " through", "probability": 0.5302734375}, {"start": 596.76, "end": 597.0, "word": " this", "probability": 0.9150390625}, {"start": 597.0, "end": 597.36, "word": " lecture,", "probability": 0.9140625}, {"start": 597.66, "end": 597.94, "word": " we", "probability": 0.9375}, {"start": 597.94, "end": 598.0, "word": " will", "probability": 0.84716796875}, {"start": 598.0, "end": 598.0, "word": " only", "probability": 0.498779296875}, {"start": 598.0, "end": 598.3, "word": " talk", "probability": 0.474853515625}, {"start": 598.3, "end": 598.92, "word": " about", "probability": 0.89306640625}, {"start": 598.92, "end": 600.14, "word": " concepts", "probability": 0.7880859375}, {"start": 600.14, "end": 600.64, "word": " related", "probability": 0.7451171875}, {"start": 600.64, "end": 600.96, "word": " to", "probability": 0.97412109375}, {"start": 600.96, "end": 601.2, "word": " the", "probability": 0.42041015625}, {"start": 601.2, "end": 601.72, "word": " architecture", "probability": 0.7060546875}, {"start": 601.72, "end": 602.72, "word": " pattern,", "probability": 0.8486328125}, {"start": 603.36, "end": 603.4, "word": " which", "probability": 0.72509765625}, {"start": 603.4, "end": 603.62, "word": " is", "probability": 0.85400390625}, {"start": 603.62, "end": 604.02, "word": " how", "probability": 0.71826171875}, {"start": 604.02, "end": 606.32, "word": " to", "probability": 0.1982421875}, {"start": 606.32, "end": 606.68, "word": " build", "probability": 0.389404296875}, {"start": 606.68, "end": 608.12, "word": " applications,", "probability": 0.77490234375}, {"start": 608.36, "end": 608.58, "word": " how", "probability": 0.77880859375}, {"start": 608.58, "end": 609.16, "word": " to", "probability": 0.95703125}, {"start": 609.16, "end": 609.6, "word": " organize", "probability": 0.6923828125}, {"start": 609.6, "end": 609.98, "word": " the", "probability": 0.51416015625}, {"start": 609.98, "end": 610.18, "word": " construction", "probability": 0.446533203125}, {"start": 610.18, "end": 610.3, "word": " of", "probability": 0.96533203125}, {"start": 610.3, "end": 610.72, "word": " applications", "probability": 0.6103515625}, {"start": 610.72, "end": 610.84, "word": " in", "probability": 0.86181640625}, {"start": 610.84, "end": 611.42, "word": " general,", "probability": 0.84033203125}], "temperature": 1.0}, {"id": 27, "seek": 63559, "start": 612.81, "end": 635.59, "text": " In order for the application to be flexible, scalable, and I can improve or add to it continuously. Now, what is the relationship between architecture and design patterns that we studied? There is a big relationship between them. Design patterns work on the level of code, that is, how you build the code from within", "tokens": [682, 1668, 337, 264, 3861, 281, 312, 11358, 11, 38481, 11, 293, 286, 393, 3470, 420, 909, 281, 309, 15684, 13, 823, 11, 437, 307, 264, 2480, 1296, 9482, 293, 1715, 8294, 300, 321, 9454, 30, 821, 307, 257, 955, 2480, 1296, 552, 13, 12748, 8294, 589, 322, 264, 1496, 295, 3089, 11, 300, 307, 11, 577, 291, 1322, 264, 3089, 490, 1951], "avg_logprob": -0.5292968507856131, "compression_ratio": 1.592964824120603, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 612.8100000000001, "end": 613.49, "word": " In", "probability": 0.1041259765625}, {"start": 613.49, "end": 613.69, "word": " order", "probability": 0.73974609375}, {"start": 613.69, "end": 614.11, "word": " for", "probability": 0.289794921875}, {"start": 614.11, "end": 614.31, "word": " the", "probability": 0.76953125}, {"start": 614.31, "end": 614.67, "word": " application", "probability": 0.6640625}, {"start": 614.67, "end": 614.87, "word": " to", "probability": 0.95654296875}, {"start": 614.87, "end": 615.27, "word": " be", "probability": 0.89794921875}, {"start": 615.27, "end": 616.25, "word": " flexible,", "probability": 0.814453125}, {"start": 617.05, "end": 617.53, "word": " scalable,", "probability": 0.90283203125}, {"start": 617.91, "end": 617.91, "word": " and", "probability": 0.410888671875}, {"start": 617.91, "end": 617.91, "word": " I", "probability": 0.357177734375}, {"start": 617.91, "end": 618.39, "word": " can", "probability": 0.841796875}, {"start": 618.39, "end": 618.73, "word": " improve", "probability": 0.233642578125}, {"start": 618.73, "end": 619.13, "word": " or", "probability": 0.46630859375}, {"start": 619.13, "end": 619.51, "word": " add", "probability": 0.49609375}, {"start": 619.51, "end": 620.33, "word": " to", "probability": 0.392822265625}, {"start": 620.33, "end": 620.33, "word": " it", "probability": 0.919921875}, {"start": 620.33, "end": 622.07, "word": " continuously.", "probability": 0.378173828125}, {"start": 623.17, "end": 623.85, "word": " Now,", "probability": 0.52294921875}, {"start": 623.93, "end": 624.31, "word": " what", "probability": 0.412841796875}, {"start": 624.31, "end": 624.31, "word": " is", "probability": 0.57080078125}, {"start": 624.31, "end": 624.31, "word": " the", "probability": 0.85009765625}, {"start": 624.31, "end": 624.31, "word": " relationship", "probability": 0.61767578125}, {"start": 624.31, "end": 624.31, "word": " between", "probability": 0.80419921875}, {"start": 624.31, "end": 624.41, "word": " architecture", "probability": 0.693359375}, {"start": 624.41, "end": 624.69, "word": " and", "probability": 0.8779296875}, {"start": 624.69, "end": 626.73, "word": " design", "probability": 0.3515625}, {"start": 626.73, "end": 627.17, "word": " patterns", "probability": 0.859375}, {"start": 627.17, "end": 627.29, "word": " that", "probability": 0.5703125}, {"start": 627.29, "end": 627.43, "word": " we", "probability": 0.9208984375}, {"start": 627.43, "end": 627.77, "word": " studied?", "probability": 0.53369140625}, {"start": 628.47, "end": 628.75, "word": " There", "probability": 0.5302734375}, {"start": 628.75, "end": 628.81, "word": " is", "probability": 0.8095703125}, {"start": 628.81, "end": 629.15, "word": " a", "probability": 0.9111328125}, {"start": 629.15, "end": 629.17, "word": " big", "probability": 0.5380859375}, {"start": 629.17, "end": 629.47, "word": " relationship", "probability": 0.6201171875}, {"start": 629.47, "end": 629.67, "word": " between", "probability": 0.77294921875}, {"start": 629.67, "end": 629.67, "word": " them.", "probability": 0.88037109375}, {"start": 629.83, "end": 630.21, "word": " Design", "probability": 0.7822265625}, {"start": 630.21, "end": 630.77, "word": " patterns", "probability": 0.849609375}, {"start": 630.77, "end": 631.69, "word": " work", "probability": 0.486572265625}, {"start": 631.69, "end": 632.03, "word": " on", "probability": 0.60888671875}, {"start": 632.03, "end": 632.17, "word": " the", "probability": 0.7119140625}, {"start": 632.17, "end": 632.37, "word": " level", "probability": 0.79345703125}, {"start": 632.37, "end": 632.55, "word": " of", "probability": 0.96728515625}, {"start": 632.55, "end": 632.97, "word": " code,", "probability": 0.69091796875}, {"start": 633.33, "end": 633.55, "word": " that", "probability": 0.27978515625}, {"start": 633.55, "end": 633.55, "word": " is,", "probability": 0.82958984375}, {"start": 633.61, "end": 633.81, "word": " how", "probability": 0.78271484375}, {"start": 633.81, "end": 634.11, "word": " you", "probability": 0.72314453125}, {"start": 634.11, "end": 634.39, "word": " build", "probability": 0.85888671875}, {"start": 634.39, "end": 634.59, "word": " the", "probability": 0.408203125}, {"start": 634.59, "end": 634.99, "word": " code", "probability": 0.94482421875}, {"start": 634.99, "end": 635.25, "word": " from", "probability": 0.80908203125}, {"start": 635.25, "end": 635.59, "word": " within", "probability": 0.359619140625}], "temperature": 1.0}, {"id": 28, "seek": 66162, "start": 636.54, "end": 661.62, "text": " In order to be maintainable, flexible and easily updatable. The architectural pattern is high view level. When you look at the system from outside, how will you divide the work? For example, when you say that you want to divide the system into client-server, this is architecture. I want to divide the system into layers or modules. Module does this, module does that, this is architecture.", "tokens": [682, 1668, 281, 312, 6909, 712, 11, 11358, 293, 3612, 3460, 31415, 13, 440, 26621, 5102, 307, 1090, 1910, 1496, 13, 1133, 291, 574, 412, 264, 1185, 490, 2380, 11, 577, 486, 291, 9845, 264, 589, 30, 1171, 1365, 11, 562, 291, 584, 300, 291, 528, 281, 9845, 264, 1185, 666, 6423, 12, 12484, 331, 11, 341, 307, 9482, 13, 286, 528, 281, 9845, 264, 1185, 666, 7914, 420, 16679, 13, 48251, 775, 341, 11, 10088, 775, 300, 11, 341, 307, 9482, 13], "avg_logprob": -0.3887648855646451, "compression_ratio": 1.7692307692307692, "no_speech_prob": 2.6226043701171875e-06, "words": [{"start": 636.54, "end": 637.02, "word": " In", "probability": 0.1529541015625}, {"start": 637.02, "end": 637.06, "word": " order", "probability": 0.90966796875}, {"start": 637.06, "end": 637.24, "word": " to", "probability": 0.77685546875}, {"start": 637.24, "end": 638.1, "word": " be", "probability": 0.422607421875}, {"start": 638.1, "end": 639.16, "word": " maintainable,", "probability": 0.87939453125}, {"start": 639.38, "end": 640.14, "word": " flexible", "probability": 0.7216796875}, {"start": 640.14, "end": 640.7, "word": " and", "probability": 0.483154296875}, {"start": 640.7, "end": 640.72, "word": " easily", "probability": 0.5625}, {"start": 640.72, "end": 642.36, "word": " updatable.", "probability": 0.7451171875}, {"start": 643.92, "end": 644.4, "word": " The", "probability": 0.45166015625}, {"start": 644.4, "end": 644.86, "word": " architectural", "probability": 0.8642578125}, {"start": 644.86, "end": 645.48, "word": " pattern", "probability": 0.8037109375}, {"start": 645.48, "end": 646.02, "word": " is", "probability": 0.373291015625}, {"start": 646.02, "end": 646.28, "word": " high", "probability": 0.681640625}, {"start": 646.28, "end": 646.6, "word": " view", "probability": 0.55029296875}, {"start": 646.6, "end": 646.92, "word": " level.", "probability": 0.85205078125}, {"start": 647.16, "end": 647.34, "word": " When", "probability": 0.295166015625}, {"start": 647.34, "end": 647.74, "word": " you", "probability": 0.91650390625}, {"start": 647.74, "end": 648.02, "word": " look", "probability": 0.70458984375}, {"start": 648.02, "end": 648.16, "word": " at", "probability": 0.9091796875}, {"start": 648.16, "end": 648.26, "word": " the", "probability": 0.7822265625}, {"start": 648.26, "end": 648.52, "word": " system", "probability": 0.89794921875}, {"start": 648.52, "end": 648.7, "word": " from", "probability": 0.81396484375}, {"start": 648.7, "end": 648.98, "word": " outside,", "probability": 0.5341796875}, {"start": 649.2, "end": 649.54, "word": " how", "probability": 0.5556640625}, {"start": 649.54, "end": 649.66, "word": " will", "probability": 0.288330078125}, {"start": 649.66, "end": 649.74, "word": " you", "probability": 0.85888671875}, {"start": 649.74, "end": 649.96, "word": " divide", "probability": 0.63330078125}, {"start": 649.96, "end": 650.1, "word": " the", "probability": 0.541015625}, {"start": 650.1, "end": 650.32, "word": " work?", "probability": 0.75048828125}, {"start": 650.64, "end": 650.96, "word": " For", "probability": 0.734375}, {"start": 650.96, "end": 651.06, "word": " example,", "probability": 0.9150390625}, {"start": 651.12, "end": 651.24, "word": " when", "probability": 0.436767578125}, {"start": 651.24, "end": 651.38, "word": " you", "probability": 0.8564453125}, {"start": 651.38, "end": 651.46, "word": " say", "probability": 0.611328125}, {"start": 651.46, "end": 651.56, "word": " that", "probability": 0.4072265625}, {"start": 651.56, "end": 651.62, "word": " you", "probability": 0.6513671875}, {"start": 651.62, "end": 651.78, "word": " want", "probability": 0.744140625}, {"start": 651.78, "end": 651.84, "word": " to", "probability": 0.95703125}, {"start": 651.84, "end": 652.06, "word": " divide", "probability": 0.86474609375}, {"start": 652.06, "end": 652.22, "word": " the", "probability": 0.85595703125}, {"start": 652.22, "end": 652.5, "word": " system", "probability": 0.9384765625}, {"start": 652.5, "end": 652.66, "word": " into", "probability": 0.54541015625}, {"start": 652.66, "end": 652.9, "word": " client", "probability": 0.59619140625}, {"start": 652.9, "end": 653.28, "word": "-server,", "probability": 0.681884765625}, {"start": 653.82, "end": 654.04, "word": " this", "probability": 0.76416015625}, {"start": 654.04, "end": 654.08, "word": " is", "probability": 0.88720703125}, {"start": 654.08, "end": 654.46, "word": " architecture.", "probability": 0.8291015625}, {"start": 655.84, "end": 656.32, "word": " I", "probability": 0.42333984375}, {"start": 656.32, "end": 656.52, "word": " want", "probability": 0.86767578125}, {"start": 656.52, "end": 656.6, "word": " to", "probability": 0.966796875}, {"start": 656.6, "end": 656.8, "word": " divide", "probability": 0.91015625}, {"start": 656.8, "end": 657.04, "word": " the", "probability": 0.89453125}, {"start": 657.04, "end": 657.4, "word": " system", "probability": 0.955078125}, {"start": 657.4, "end": 657.56, "word": " into", "probability": 0.83203125}, {"start": 657.56, "end": 657.94, "word": " layers", "probability": 0.9384765625}, {"start": 657.94, "end": 658.18, "word": " or", "probability": 0.8857421875}, {"start": 658.18, "end": 658.66, "word": " modules.", "probability": 0.88818359375}, {"start": 659.08, "end": 659.56, "word": " Module", "probability": 0.6953125}, {"start": 659.56, "end": 659.78, "word": " does", "probability": 0.66943359375}, {"start": 659.78, "end": 660.12, "word": " this,", "probability": 0.830078125}, {"start": 660.2, "end": 660.46, "word": " module", "probability": 0.7978515625}, {"start": 660.46, "end": 660.7, "word": " does", "probability": 0.95361328125}, {"start": 660.7, "end": 660.92, "word": " that,", "probability": 0.7685546875}, {"start": 660.96, "end": 661.12, "word": " this", "probability": 0.88232421875}, {"start": 661.12, "end": 661.18, "word": " is", "probability": 0.9306640625}, {"start": 661.18, "end": 661.62, "word": " architecture.", "probability": 0.95751953125}], "temperature": 1.0}, {"id": 29, "seek": 68795, "start": 664.83, "end": 687.95, "text": " from far away to your system. Is there a relation between design patterns and architectural patterns? Of course there is a relation. When you apply design patterns in a proper way, you really made your architecture on your system good. Did I come to tell you something? There are people who usually when they want to explain this course, it starts from where? From architectural patterns.", "tokens": [490, 1400, 1314, 281, 428, 1185, 13, 1119, 456, 257, 9721, 1296, 1715, 8294, 293, 26621, 8294, 30, 2720, 1164, 456, 307, 257, 9721, 13, 1133, 291, 3079, 1715, 8294, 294, 257, 2296, 636, 11, 291, 534, 1027, 428, 9482, 322, 428, 1185, 665, 13, 2589, 286, 808, 281, 980, 291, 746, 30, 821, 366, 561, 567, 2673, 562, 436, 528, 281, 2903, 341, 1164, 11, 309, 3719, 490, 689, 30, 3358, 26621, 8294, 13], "avg_logprob": -0.5349506476992055, "compression_ratio": 1.760180995475113, "no_speech_prob": 4.947185516357422e-06, "words": [{"start": 664.8299999999999, "end": 665.31, "word": " from", "probability": 0.07440185546875}, {"start": 665.31, "end": 665.79, "word": " far", "probability": 0.143310546875}, {"start": 665.79, "end": 665.87, "word": " away", "probability": 0.7412109375}, {"start": 665.87, "end": 666.65, "word": " to", "probability": 0.39794921875}, {"start": 666.65, "end": 666.73, "word": " your", "probability": 0.4013671875}, {"start": 666.73, "end": 667.05, "word": " system.", "probability": 0.87060546875}, {"start": 668.63, "end": 669.11, "word": " Is", "probability": 0.2410888671875}, {"start": 669.11, "end": 669.51, "word": " there", "probability": 0.89306640625}, {"start": 669.51, "end": 669.63, "word": " a", "probability": 0.73046875}, {"start": 669.63, "end": 669.83, "word": " relation", "probability": 0.308837890625}, {"start": 669.83, "end": 670.05, "word": " between", "probability": 0.8486328125}, {"start": 670.05, "end": 670.45, "word": " design", "probability": 0.71142578125}, {"start": 670.45, "end": 670.75, "word": " patterns", "probability": 0.79052734375}, {"start": 670.75, "end": 670.85, "word": " and", "probability": 0.92431640625}, {"start": 670.85, "end": 671.19, "word": " architectural", "probability": 0.84912109375}, {"start": 671.19, "end": 671.69, "word": " patterns?", "probability": 0.88720703125}, {"start": 671.89, "end": 672.11, "word": " Of", "probability": 0.349365234375}, {"start": 672.11, "end": 672.17, "word": " course", "probability": 0.9541015625}, {"start": 672.17, "end": 672.33, "word": " there", "probability": 0.69970703125}, {"start": 672.33, "end": 672.35, "word": " is", "probability": 0.86767578125}, {"start": 672.35, "end": 672.41, "word": " a", "probability": 0.404541015625}, {"start": 672.41, "end": 672.75, "word": " relation.", "probability": 0.90771484375}, {"start": 673.29, "end": 673.57, "word": " When", "probability": 0.63330078125}, {"start": 673.57, "end": 673.77, "word": " you", "probability": 0.95654296875}, {"start": 673.77, "end": 674.49, "word": " apply", "probability": 0.6875}, {"start": 674.49, "end": 674.97, "word": " design", "probability": 0.6328125}, {"start": 674.97, "end": 675.37, "word": " patterns", "probability": 0.8935546875}, {"start": 675.37, "end": 675.45, "word": " in", "probability": 0.2408447265625}, {"start": 675.45, "end": 675.57, "word": " a", "probability": 0.80908203125}, {"start": 675.57, "end": 675.95, "word": " proper", "probability": 0.281982421875}, {"start": 675.95, "end": 676.71, "word": " way,", "probability": 0.8271484375}, {"start": 676.89, "end": 677.79, "word": " you", "probability": 0.6611328125}, {"start": 677.79, "end": 678.19, "word": " really", "probability": 0.2255859375}, {"start": 678.19, "end": 678.63, "word": " made", "probability": 0.341796875}, {"start": 678.63, "end": 678.83, "word": " your", "probability": 0.6494140625}, {"start": 678.83, "end": 679.29, "word": " architecture", "probability": 0.8837890625}, {"start": 679.29, "end": 679.53, "word": " on", "probability": 0.178955078125}, {"start": 679.53, "end": 679.55, "word": " your", "probability": 0.560546875}, {"start": 679.55, "end": 679.95, "word": " system", "probability": 0.94140625}, {"start": 679.95, "end": 680.85, "word": " good.", "probability": 0.6083984375}, {"start": 681.59, "end": 681.93, "word": " Did", "probability": 0.25830078125}, {"start": 681.93, "end": 682.09, "word": " I", "probability": 0.66064453125}, {"start": 682.09, "end": 682.09, "word": " come", "probability": 0.2127685546875}, {"start": 682.09, "end": 682.27, "word": " to", "probability": 0.5400390625}, {"start": 682.27, "end": 682.45, "word": " tell", "probability": 0.66064453125}, {"start": 682.45, "end": 682.61, "word": " you", "probability": 0.9609375}, {"start": 682.61, "end": 683.03, "word": " something?", "probability": 0.5693359375}, {"start": 683.15, "end": 683.21, "word": " There", "probability": 0.33251953125}, {"start": 683.21, "end": 683.33, "word": " are", "probability": 0.90771484375}, {"start": 683.33, "end": 683.55, "word": " people", "probability": 0.86767578125}, {"start": 683.55, "end": 684.01, "word": " who", "probability": 0.4716796875}, {"start": 684.01, "end": 684.01, "word": " usually", "probability": 0.7255859375}, {"start": 684.01, "end": 684.09, "word": " when", "probability": 0.37744140625}, {"start": 684.09, "end": 684.19, "word": " they", "probability": 0.84765625}, {"start": 684.19, "end": 684.31, "word": " want", "probability": 0.66064453125}, {"start": 684.31, "end": 684.39, "word": " to", "probability": 0.9658203125}, {"start": 684.39, "end": 684.59, "word": " explain", "probability": 0.78564453125}, {"start": 684.59, "end": 684.87, "word": " this", "probability": 0.8349609375}, {"start": 684.87, "end": 685.29, "word": " course,", "probability": 0.958984375}, {"start": 685.53, "end": 685.57, "word": " it", "probability": 0.414306640625}, {"start": 685.57, "end": 685.77, "word": " starts", "probability": 0.7158203125}, {"start": 685.77, "end": 685.95, "word": " from", "probability": 0.6328125}, {"start": 685.95, "end": 686.13, "word": " where?", "probability": 0.68994140625}, {"start": 686.81, "end": 687.13, "word": " From", "probability": 0.6787109375}, {"start": 687.13, "end": 687.51, "word": " architectural", "probability": 0.453857421875}, {"start": 687.51, "end": 687.95, "word": " patterns.", "probability": 0.74267578125}], "temperature": 1.0}, {"id": 30, "seek": 71357, "start": 688.97, "end": 713.57, "text": "I didn't start with it because the architecture pattern will give you theoretical information It will tell you that the system is divided into N, V, and C, the model does this, the view does that, and the controller does that But when you apply it on the real world, as coding, you will get used to it in the application But when you work on the level of code, and you understand how to work and how to apply design patterns, your own architecture will happen", "tokens": [40, 994, 380, 722, 365, 309, 570, 264, 9482, 5102, 486, 976, 291, 20864, 1589, 467, 486, 980, 291, 300, 264, 1185, 307, 6666, 666, 426, 11, 691, 11, 293, 383, 11, 264, 2316, 775, 341, 11, 264, 1910, 775, 300, 11, 293, 264, 10561, 775, 300, 583, 562, 291, 3079, 309, 322, 264, 957, 1002, 11, 382, 17720, 11, 291, 486, 483, 1143, 281, 309, 294, 264, 3861, 583, 562, 291, 589, 322, 264, 1496, 295, 3089, 11, 293, 291, 1223, 577, 281, 589, 293, 577, 281, 3079, 1715, 8294, 11, 428, 1065, 9482, 486, 1051], "avg_logprob": -0.49489795918367346, "compression_ratio": 1.8286852589641434, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 688.97, "end": 689.29, "word": "I", "probability": 0.40283203125}, {"start": 689.29, "end": 689.51, "word": " didn't", "probability": 0.6580810546875}, {"start": 689.51, "end": 689.81, "word": " start", "probability": 0.61181640625}, {"start": 689.81, "end": 690.01, "word": " with", "probability": 0.5107421875}, {"start": 690.01, "end": 690.21, "word": " it", "probability": 0.3203125}, {"start": 690.21, "end": 690.47, "word": " because", "probability": 0.65966796875}, {"start": 690.47, "end": 690.61, "word": " the", "probability": 0.265625}, {"start": 690.61, "end": 690.91, "word": " architecture", "probability": 0.6357421875}, {"start": 690.91, "end": 691.43, "word": " pattern", "probability": 0.259033203125}, {"start": 691.43, "end": 691.79, "word": " will", "probability": 0.546875}, {"start": 691.79, "end": 691.95, "word": " give", "probability": 0.72607421875}, {"start": 691.95, "end": 692.05, "word": " you", "probability": 0.896484375}, {"start": 692.05, "end": 692.69, "word": " theoretical", "probability": 0.68212890625}, {"start": 692.69, "end": 692.69, "word": " information", "probability": 0.60693359375}, {"start": 692.69, "end": 693.31, "word": " It", "probability": 0.2396240234375}, {"start": 693.31, "end": 693.39, "word": " will", "probability": 0.7578125}, {"start": 693.39, "end": 693.51, "word": " tell", "probability": 0.6181640625}, {"start": 693.51, "end": 693.61, "word": " you", "probability": 0.95263671875}, {"start": 693.61, "end": 693.73, "word": " that", "probability": 0.6279296875}, {"start": 693.73, "end": 693.77, "word": " the", "probability": 0.67041015625}, {"start": 693.77, "end": 694.07, "word": " system", "probability": 0.83349609375}, {"start": 694.07, "end": 694.25, "word": " is", "probability": 0.79443359375}, {"start": 694.25, "end": 694.55, "word": " divided", "probability": 0.73583984375}, {"start": 694.55, "end": 694.67, "word": " into", "probability": 0.60986328125}, {"start": 694.67, "end": 694.79, "word": " N,", "probability": 0.2200927734375}, {"start": 694.83, "end": 694.93, "word": " V,", "probability": 0.43994140625}, {"start": 695.01, "end": 695.05, "word": " and", "probability": 0.53173828125}, {"start": 695.05, "end": 695.15, "word": " C,", "probability": 0.91845703125}, {"start": 695.23, "end": 695.31, "word": " the", "probability": 0.3359375}, {"start": 695.31, "end": 695.57, "word": " model", "probability": 0.7783203125}, {"start": 695.57, "end": 695.81, "word": " does", "probability": 0.3115234375}, {"start": 695.81, "end": 696.01, "word": " this,", "probability": 0.73681640625}, {"start": 696.11, "end": 696.23, "word": " the", "probability": 0.74560546875}, {"start": 696.23, "end": 696.43, "word": " view", "probability": 0.89013671875}, {"start": 696.43, "end": 696.61, "word": " does", "probability": 0.91357421875}, {"start": 696.61, "end": 696.83, "word": " that,", "probability": 0.49658203125}, {"start": 696.89, "end": 696.95, "word": " and", "probability": 0.83447265625}, {"start": 696.95, "end": 696.97, "word": " the", "probability": 0.85986328125}, {"start": 696.97, "end": 697.29, "word": " controller", "probability": 0.60546875}, {"start": 697.29, "end": 697.51, "word": " does", "probability": 0.93408203125}, {"start": 697.51, "end": 697.83, "word": " that", "probability": 0.68603515625}, {"start": 697.83, "end": 698.37, "word": " But", "probability": 0.53076171875}, {"start": 698.37, "end": 698.57, "word": " when", "probability": 0.8291015625}, {"start": 698.57, "end": 698.69, "word": " you", "probability": 0.8623046875}, {"start": 698.69, "end": 699.03, "word": " apply", "probability": 0.3583984375}, {"start": 699.03, "end": 699.11, "word": " it", "probability": 0.59716796875}, {"start": 699.11, "end": 699.23, "word": " on", "probability": 0.46044921875}, {"start": 699.23, "end": 699.49, "word": " the", "probability": 0.45849609375}, {"start": 699.49, "end": 699.49, "word": " real", "probability": 0.3740234375}, {"start": 699.49, "end": 699.83, "word": " world,", "probability": 0.7451171875}, {"start": 700.53, "end": 700.75, "word": " as", "probability": 0.72314453125}, {"start": 700.75, "end": 701.27, "word": " coding,", "probability": 0.880859375}, {"start": 702.03, "end": 702.67, "word": " you", "probability": 0.73193359375}, {"start": 702.67, "end": 702.73, "word": " will", "probability": 0.7216796875}, {"start": 702.73, "end": 702.81, "word": " get", "probability": 0.314697265625}, {"start": 702.81, "end": 702.99, "word": " used", "probability": 0.1771240234375}, {"start": 702.99, "end": 703.21, "word": " to", "probability": 0.95556640625}, {"start": 703.21, "end": 703.35, "word": " it", "probability": 0.74365234375}, {"start": 703.35, "end": 703.61, "word": " in", "probability": 0.7216796875}, {"start": 703.61, "end": 703.67, "word": " the", "probability": 0.552734375}, {"start": 703.67, "end": 703.97, "word": " application", "probability": 0.86865234375}, {"start": 703.97, "end": 705.15, "word": " But", "probability": 0.76416015625}, {"start": 705.15, "end": 705.59, "word": " when", "probability": 0.88818359375}, {"start": 705.59, "end": 705.79, "word": " you", "probability": 0.962890625}, {"start": 705.79, "end": 706.03, "word": " work", "probability": 0.87890625}, {"start": 706.03, "end": 706.19, "word": " on", "probability": 0.63427734375}, {"start": 706.19, "end": 706.25, "word": " the", "probability": 0.58056640625}, {"start": 706.25, "end": 706.45, "word": " level", "probability": 0.58447265625}, {"start": 706.45, "end": 706.61, "word": " of", "probability": 0.9716796875}, {"start": 706.61, "end": 706.97, "word": " code,", "probability": 0.77880859375}, {"start": 707.89, "end": 708.01, "word": " and", "probability": 0.853515625}, {"start": 708.01, "end": 708.11, "word": " you", "probability": 0.49267578125}, {"start": 708.11, "end": 708.71, "word": " understand", "probability": 0.6962890625}, {"start": 708.71, "end": 709.47, "word": " how", "probability": 0.94091796875}, {"start": 709.47, "end": 709.59, "word": " to", "probability": 0.76708984375}, {"start": 709.59, "end": 709.89, "word": " work", "probability": 0.76806640625}, {"start": 709.89, "end": 710.01, "word": " and", "probability": 0.73974609375}, {"start": 710.01, "end": 710.13, "word": " how", "probability": 0.475341796875}, {"start": 710.13, "end": 710.21, "word": " to", "probability": 0.96533203125}, {"start": 710.21, "end": 710.51, "word": " apply", "probability": 0.9033203125}, {"start": 710.51, "end": 710.87, "word": " design", "probability": 0.5478515625}, {"start": 710.87, "end": 711.41, "word": " patterns,", "probability": 0.88037109375}, {"start": 711.71, "end": 711.89, "word": " your", "probability": 0.461669921875}, {"start": 711.89, "end": 712.07, "word": " own", "probability": 0.295166015625}, {"start": 712.07, "end": 712.57, "word": " architecture", "probability": 0.955078125}, {"start": 712.57, "end": 713.25, "word": " will", "probability": 0.787109375}, {"start": 713.25, "end": 713.57, "word": " happen", "probability": 0.32275390625}], "temperature": 1.0}, {"id": 31, "seek": 72119, "start": 715.71, "end": 721.19, "text": "I will go through some of the famous architectural patterns and explain them to you.", "tokens": [40, 486, 352, 807, 512, 295, 264, 4618, 26621, 8294, 293, 2903, 552, 281, 291, 13], "avg_logprob": -0.7863051470588235, "compression_ratio": 1.0632911392405062, "no_speech_prob": 1.1324882507324219e-05, "words": [{"start": 715.71, "end": 716.23, "word": "I", "probability": 0.1021728515625}, {"start": 716.23, "end": 716.75, "word": " will", "probability": 0.5458984375}, {"start": 716.75, "end": 716.97, "word": " go", "probability": 0.26416015625}, {"start": 716.97, "end": 717.21, "word": " through", "probability": 0.57568359375}, {"start": 717.21, "end": 717.47, "word": " some", "probability": 0.67529296875}, {"start": 717.47, "end": 717.55, "word": " of", "probability": 0.54931640625}, {"start": 717.55, "end": 717.73, "word": " the", "probability": 0.81494140625}, {"start": 717.73, "end": 718.13, "word": " famous", "probability": 0.1845703125}, {"start": 718.13, "end": 718.19, "word": " architectural", "probability": 0.87109375}, {"start": 718.19, "end": 718.85, "word": " patterns", "probability": 0.85400390625}, {"start": 718.85, "end": 719.61, "word": " and", "probability": 0.548828125}, {"start": 719.61, "end": 720.37, "word": " explain", "probability": 0.231689453125}, {"start": 720.37, "end": 721.11, "word": " them", "probability": 0.568359375}, {"start": 721.11, "end": 721.19, "word": " to", "probability": 0.362060546875}, {"start": 721.19, "end": 721.19, "word": " you.", "probability": 0.96630859375}], "temperature": 1.0}, {"id": 32, "seek": 75111, "start": 721.79, "end": 751.11, "text": " You will also understand their relationship with the design patterns that we gave them. But as we said, they are not separated from each other. The design patterns focus more on the coding stage, the implementation. Okay? And this is what I focus on. Because in the end, you get practical benefit from how you organize your system well. You understand that if you organize the details, everything will be organized. But if I gave you a view from above,", "tokens": [509, 486, 611, 1223, 641, 2480, 365, 264, 1715, 8294, 300, 321, 2729, 552, 13, 583, 382, 321, 848, 11, 436, 366, 406, 12005, 490, 1184, 661, 13, 440, 1715, 8294, 1879, 544, 322, 264, 17720, 3233, 11, 264, 11420, 13, 1033, 30, 400, 341, 307, 437, 286, 1879, 322, 13, 1436, 294, 264, 917, 11, 291, 483, 8496, 5121, 490, 577, 291, 13859, 428, 1185, 731, 13, 509, 1223, 300, 498, 291, 13859, 264, 4365, 11, 1203, 486, 312, 9983, 13, 583, 498, 286, 2729, 291, 257, 1910, 490, 3673, 11], "avg_logprob": -0.49428762159039896, "compression_ratio": 1.709433962264151, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 721.79, "end": 721.97, "word": " You", "probability": 0.2386474609375}, {"start": 721.97, "end": 722.03, "word": " will", "probability": 0.61376953125}, {"start": 722.03, "end": 722.51, "word": " also", "probability": 0.50537109375}, {"start": 722.51, "end": 722.51, "word": " understand", "probability": 0.6357421875}, {"start": 722.51, "end": 723.13, "word": " their", "probability": 0.42041015625}, {"start": 723.13, "end": 723.51, "word": " relationship", "probability": 0.5927734375}, {"start": 723.51, "end": 724.41, "word": " with", "probability": 0.62841796875}, {"start": 724.41, "end": 724.65, "word": " the", "probability": 0.297607421875}, {"start": 724.65, "end": 725.07, "word": " design", "probability": 0.5458984375}, {"start": 725.07, "end": 725.81, "word": " patterns", "probability": 0.84716796875}, {"start": 725.81, "end": 725.93, "word": " that", "probability": 0.445068359375}, {"start": 725.93, "end": 726.07, "word": " we", "probability": 0.88037109375}, {"start": 726.07, "end": 726.33, "word": " gave", "probability": 0.05682373046875}, {"start": 726.33, "end": 726.69, "word": " them.", "probability": 0.7421875}, {"start": 726.75, "end": 726.89, "word": " But", "probability": 0.517578125}, {"start": 726.89, "end": 726.99, "word": " as", "probability": 0.64697265625}, {"start": 726.99, "end": 727.11, "word": " we", "probability": 0.7763671875}, {"start": 727.11, "end": 727.35, "word": " said,", "probability": 0.78076171875}, {"start": 727.97, "end": 728.17, "word": " they", "probability": 0.78369140625}, {"start": 728.17, "end": 728.35, "word": " are", "probability": 0.75927734375}, {"start": 728.35, "end": 728.77, "word": " not", "probability": 0.9033203125}, {"start": 728.77, "end": 729.09, "word": " separated", "probability": 0.4404296875}, {"start": 729.09, "end": 729.27, "word": " from", "probability": 0.8427734375}, {"start": 729.27, "end": 729.51, "word": " each", "probability": 0.91357421875}, {"start": 729.51, "end": 729.51, "word": " other.", "probability": 0.89453125}, {"start": 729.63, "end": 729.73, "word": " The", "probability": 0.310302734375}, {"start": 729.73, "end": 729.99, "word": " design", "probability": 0.92919921875}, {"start": 729.99, "end": 730.41, "word": " patterns", "probability": 0.8798828125}, {"start": 730.41, "end": 730.79, "word": " focus", "probability": 0.61328125}, {"start": 730.79, "end": 731.27, "word": " more", "probability": 0.81689453125}, {"start": 731.27, "end": 732.07, "word": " on", "probability": 0.818359375}, {"start": 732.07, "end": 732.15, "word": " the", "probability": 0.49462890625}, {"start": 732.15, "end": 732.99, "word": " coding", "probability": 0.51806640625}, {"start": 732.99, "end": 733.03, "word": " stage,", "probability": 0.430419921875}, {"start": 733.13, "end": 733.23, "word": " the", "probability": 0.205322265625}, {"start": 733.23, "end": 733.53, "word": " implementation.", "probability": 0.50439453125}, {"start": 734.45, "end": 734.73, "word": " Okay?", "probability": 0.28076171875}, {"start": 734.89, "end": 735.07, "word": " And", "probability": 0.748046875}, {"start": 735.07, "end": 735.29, "word": " this", "probability": 0.6689453125}, {"start": 735.29, "end": 735.35, "word": " is", "probability": 0.9326171875}, {"start": 735.35, "end": 735.71, "word": " what", "probability": 0.74169921875}, {"start": 735.71, "end": 735.87, "word": " I", "probability": 0.9501953125}, {"start": 735.87, "end": 736.15, "word": " focus", "probability": 0.381103515625}, {"start": 736.15, "end": 736.31, "word": " on.", "probability": 0.93603515625}, {"start": 736.55, "end": 736.77, "word": " Because", "probability": 0.86767578125}, {"start": 736.77, "end": 736.87, "word": " in", "probability": 0.478515625}, {"start": 736.87, "end": 736.95, "word": " the", "probability": 0.916015625}, {"start": 736.95, "end": 737.09, "word": " end,", "probability": 0.91064453125}, {"start": 737.27, "end": 737.31, "word": " you", "probability": 0.85693359375}, {"start": 737.31, "end": 737.57, "word": " get", "probability": 0.230224609375}, {"start": 737.57, "end": 738.73, "word": " practical", "probability": 0.8671875}, {"start": 738.73, "end": 738.85, "word": " benefit", "probability": 0.47607421875}, {"start": 738.85, "end": 739.07, "word": " from", "probability": 0.484375}, {"start": 739.07, "end": 739.23, "word": " how", "probability": 0.410888671875}, {"start": 739.23, "end": 739.35, "word": " you", "probability": 0.5361328125}, {"start": 739.35, "end": 739.55, "word": " organize", "probability": 0.201171875}, {"start": 739.55, "end": 739.99, "word": " your", "probability": 0.853515625}, {"start": 739.99, "end": 739.99, "word": " system", "probability": 0.8466796875}, {"start": 739.99, "end": 741.01, "word": " well.", "probability": 0.498046875}, {"start": 741.77, "end": 741.97, "word": " You", "probability": 0.2374267578125}, {"start": 741.97, "end": 742.21, "word": " understand", "probability": 0.426513671875}, {"start": 742.21, "end": 743.11, "word": " that", "probability": 0.53466796875}, {"start": 743.11, "end": 743.85, "word": " if", "probability": 0.8974609375}, {"start": 743.85, "end": 744.01, "word": " you", "probability": 0.95458984375}, {"start": 744.01, "end": 744.27, "word": " organize", "probability": 0.58251953125}, {"start": 744.27, "end": 744.57, "word": " the", "probability": 0.787109375}, {"start": 744.57, "end": 745.03, "word": " details,", "probability": 0.85595703125}, {"start": 745.95, "end": 746.95, "word": " everything", "probability": 0.6201171875}, {"start": 746.95, "end": 747.13, "word": " will", "probability": 0.70654296875}, {"start": 747.13, "end": 747.35, "word": " be", "probability": 0.77099609375}, {"start": 747.35, "end": 747.75, "word": " organized.", "probability": 0.82421875}, {"start": 749.11, "end": 749.49, "word": " But", "probability": 0.89306640625}, {"start": 749.49, "end": 749.81, "word": " if", "probability": 0.90380859375}, {"start": 749.81, "end": 749.91, "word": " I", "probability": 0.96923828125}, {"start": 749.91, "end": 750.11, "word": " gave", "probability": 0.51318359375}, {"start": 750.11, "end": 750.29, "word": " you", "probability": 0.96240234375}, {"start": 750.29, "end": 750.35, "word": " a", "probability": 0.79052734375}, {"start": 750.35, "end": 750.55, "word": " view", "probability": 0.1920166015625}, {"start": 750.55, "end": 750.71, "word": " from", "probability": 0.8505859375}, {"start": 750.71, "end": 751.11, "word": " above,", "probability": 0.93896484375}], "temperature": 1.0}, {"id": 33, "seek": 78119, "start": 752.67, "end": 781.19, "text": "You won't be able to walk through the details. I won't always tell you that Satan dwells in the details. Okay? That's why I focus on what? On the details. If you want to relax, I can explain architecture to you. Yes, but it's far from the details. So, let's generally go through the architecture patterns, at least to get a general overview. Today's topic, in my opinion, does not have many applications, although I will show you a practical example that explains the concept of MVC.", "tokens": [3223, 1582, 380, 312, 1075, 281, 1792, 807, 264, 4365, 13, 286, 1582, 380, 1009, 980, 291, 300, 16583, 24355, 82, 294, 264, 4365, 13, 1033, 30, 663, 311, 983, 286, 1879, 322, 437, 30, 1282, 264, 4365, 13, 759, 291, 528, 281, 5789, 11, 286, 393, 2903, 9482, 281, 291, 13, 1079, 11, 457, 309, 311, 1400, 490, 264, 4365, 13, 407, 11, 718, 311, 5101, 352, 807, 264, 9482, 8294, 11, 412, 1935, 281, 483, 257, 2674, 12492, 13, 2692, 311, 4829, 11, 294, 452, 4800, 11, 775, 406, 362, 867, 5821, 11, 4878, 286, 486, 855, 291, 257, 8496, 1365, 300, 13948, 264, 3410, 295, 17663, 34, 13], "avg_logprob": -0.5443638286420277, "compression_ratio": 1.6888111888111887, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 752.67, "end": 752.85, "word": "You", "probability": 0.4052734375}, {"start": 752.85, "end": 752.93, "word": " won't", "probability": 0.6314697265625}, {"start": 752.93, "end": 753.23, "word": " be", "probability": 0.280517578125}, {"start": 753.23, "end": 753.23, "word": " able", "probability": 0.9384765625}, {"start": 753.23, "end": 754.63, "word": " to", "probability": 0.962890625}, {"start": 754.63, "end": 755.07, "word": " walk", "probability": 0.2734375}, {"start": 755.07, "end": 755.45, "word": " through", "probability": 0.26123046875}, {"start": 755.45, "end": 755.57, "word": " the", "probability": 0.64453125}, {"start": 755.57, "end": 755.87, "word": " details.", "probability": 0.79248046875}, {"start": 756.25, "end": 756.69, "word": " I", "probability": 0.50341796875}, {"start": 756.69, "end": 756.81, "word": " won't", "probability": 0.667236328125}, {"start": 756.81, "end": 757.19, "word": " always", "probability": 0.1796875}, {"start": 757.19, "end": 757.19, "word": " tell", "probability": 0.428466796875}, {"start": 757.19, "end": 757.35, "word": " you", "probability": 0.96533203125}, {"start": 757.35, "end": 759.21, "word": " that", "probability": 0.61865234375}, {"start": 759.21, "end": 759.61, "word": " Satan", "probability": 0.434326171875}, {"start": 759.61, "end": 759.97, "word": " dwells", "probability": 0.564453125}, {"start": 759.97, "end": 760.11, "word": " in", "probability": 0.896484375}, {"start": 760.11, "end": 760.25, "word": " the", "probability": 0.283935546875}, {"start": 760.25, "end": 760.67, "word": " details.", "probability": 0.90966796875}, {"start": 761.41, "end": 761.47, "word": " Okay?", "probability": 0.1578369140625}, {"start": 761.81, "end": 762.11, "word": " That's", "probability": 0.71875}, {"start": 762.11, "end": 762.21, "word": " why", "probability": 0.91357421875}, {"start": 762.21, "end": 762.41, "word": " I", "probability": 0.9873046875}, {"start": 762.41, "end": 762.71, "word": " focus", "probability": 0.6845703125}, {"start": 762.71, "end": 762.85, "word": " on", "probability": 0.92822265625}, {"start": 762.85, "end": 763.11, "word": " what?", "probability": 0.309814453125}, {"start": 763.69, "end": 763.93, "word": " On", "probability": 0.53662109375}, {"start": 763.93, "end": 764.05, "word": " the", "probability": 0.7744140625}, {"start": 764.05, "end": 764.25, "word": " details.", "probability": 0.89501953125}, {"start": 764.39, "end": 764.45, "word": " If", "probability": 0.142333984375}, {"start": 764.45, "end": 764.57, "word": " you", "probability": 0.845703125}, {"start": 764.57, "end": 764.67, "word": " want", "probability": 0.654296875}, {"start": 764.67, "end": 764.67, "word": " to", "probability": 0.95947265625}, {"start": 764.67, "end": 764.83, "word": " relax,", "probability": 0.7578125}, {"start": 765.17, "end": 765.25, "word": " I", "probability": 0.67724609375}, {"start": 765.25, "end": 765.33, "word": " can", "probability": 0.31884765625}, {"start": 765.33, "end": 765.47, "word": " explain", "probability": 0.8203125}, {"start": 765.47, "end": 765.93, "word": " architecture", "probability": 0.199462890625}, {"start": 765.93, "end": 766.23, "word": " to", "probability": 0.52490234375}, {"start": 766.23, "end": 766.23, "word": " you.", "probability": 0.9716796875}, {"start": 766.89, "end": 767.23, "word": " Yes,", "probability": 0.19287109375}, {"start": 767.41, "end": 767.51, "word": " but", "probability": 0.88134765625}, {"start": 767.51, "end": 767.63, "word": " it's", "probability": 0.468505859375}, {"start": 767.63, "end": 767.69, "word": " far", "probability": 0.53125}, {"start": 767.69, "end": 767.97, "word": " from", "probability": 0.8154296875}, {"start": 767.97, "end": 768.67, "word": " the", "probability": 0.70751953125}, {"start": 768.67, "end": 769.03, "word": " details.", "probability": 0.87646484375}, {"start": 770.05, "end": 770.53, "word": " So,", "probability": 0.24658203125}, {"start": 770.65, "end": 770.91, "word": " let's", "probability": 0.77392578125}, {"start": 770.91, "end": 771.27, "word": " generally", "probability": 0.192626953125}, {"start": 771.27, "end": 771.59, "word": " go", "probability": 0.320556640625}, {"start": 771.59, "end": 771.79, "word": " through", "probability": 0.55419921875}, {"start": 771.79, "end": 771.89, "word": " the", "probability": 0.62646484375}, {"start": 771.89, "end": 772.21, "word": " architecture", "probability": 0.65576171875}, {"start": 772.21, "end": 772.73, "word": " patterns,", "probability": 0.8525390625}, {"start": 772.79, "end": 772.89, "word": " at", "probability": 0.92578125}, {"start": 772.89, "end": 773.15, "word": " least", "probability": 0.9560546875}, {"start": 773.15, "end": 773.35, "word": " to", "probability": 0.78515625}, {"start": 773.35, "end": 773.63, "word": " get", "probability": 0.5078125}, {"start": 773.63, "end": 773.75, "word": " a", "probability": 0.8984375}, {"start": 773.75, "end": 774.11, "word": " general", "probability": 0.90576171875}, {"start": 774.11, "end": 774.11, "word": " overview.", "probability": 0.228759765625}, {"start": 774.87, "end": 775.35, "word": " Today's", "probability": 0.402099609375}, {"start": 775.35, "end": 775.35, "word": " topic,", "probability": 0.779296875}, {"start": 775.37, "end": 775.49, "word": " in", "probability": 0.320556640625}, {"start": 775.49, "end": 775.63, "word": " my", "probability": 0.8828125}, {"start": 775.63, "end": 775.63, "word": " opinion,", "probability": 0.7001953125}, {"start": 775.73, "end": 775.79, "word": " does", "probability": 0.197998046875}, {"start": 775.79, "end": 775.79, "word": " not", "probability": 0.94140625}, {"start": 775.79, "end": 775.99, "word": " have", "probability": 0.70703125}, {"start": 775.99, "end": 776.07, "word": " many", "probability": 0.56494140625}, {"start": 776.07, "end": 776.47, "word": " applications,", "probability": 0.89306640625}, {"start": 776.99, "end": 777.17, "word": " although", "probability": 0.330322265625}, {"start": 777.17, "end": 777.39, "word": " I", "probability": 0.78662109375}, {"start": 777.39, "end": 777.43, "word": " will", "probability": 0.6630859375}, {"start": 777.43, "end": 777.63, "word": " show", "probability": 0.89013671875}, {"start": 777.63, "end": 777.79, "word": " you", "probability": 0.955078125}, {"start": 777.79, "end": 778.05, "word": " a", "probability": 0.599609375}, {"start": 778.05, "end": 778.57, "word": " practical", "probability": 0.9453125}, {"start": 778.57, "end": 778.57, "word": " example", "probability": 0.96923828125}, {"start": 778.57, "end": 779.27, "word": " that", "probability": 0.447265625}, {"start": 779.27, "end": 779.53, "word": " explains", "probability": 0.446044921875}, {"start": 779.53, "end": 780.37, "word": " the", "probability": 0.6064453125}, {"start": 780.37, "end": 780.61, "word": " concept", "probability": 0.75732421875}, {"start": 780.61, "end": 780.71, "word": " of", "probability": 0.9697265625}, {"start": 780.71, "end": 781.19, "word": " MVC.", "probability": 0.771484375}], "temperature": 1.0}, {"id": 34, "seek": 79085, "start": 782.69, "end": 790.85, "text": "In general, the architectural pattern is a general reusable solution to a commonly occurring problem in software architecture", "tokens": [4575, 2674, 11, 264, 26621, 5102, 307, 257, 2674, 41807, 3827, 281, 257, 12719, 18386, 1154, 294, 4722, 9482], "avg_logprob": -0.2546874910593033, "compression_ratio": 1.3020833333333333, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 782.69, "end": 782.83, "word": "In", "probability": 0.50634765625}, {"start": 782.83, "end": 783.33, "word": " general,", "probability": 0.78759765625}, {"start": 783.91, "end": 784.07, "word": " the", "probability": 0.46533203125}, {"start": 784.07, "end": 784.45, "word": " architectural", "probability": 0.5283203125}, {"start": 784.45, "end": 784.97, "word": " pattern", "probability": 0.82421875}, {"start": 784.97, "end": 785.35, "word": " is", "probability": 0.92724609375}, {"start": 785.35, "end": 785.49, "word": " a", "probability": 0.9521484375}, {"start": 785.49, "end": 785.91, "word": " general", "probability": 0.880859375}, {"start": 785.91, "end": 786.83, "word": " reusable", "probability": 0.86962890625}, {"start": 786.83, "end": 787.55, "word": " solution", "probability": 0.95068359375}, {"start": 787.55, "end": 787.75, "word": " to", "probability": 0.94775390625}, {"start": 787.75, "end": 787.93, "word": " a", "probability": 0.90625}, {"start": 787.93, "end": 788.21, "word": " commonly", "probability": 0.830078125}, {"start": 788.21, "end": 789.23, "word": " occurring", "probability": 0.92333984375}, {"start": 789.23, "end": 789.65, "word": " problem", "probability": 0.84326171875}, {"start": 789.65, "end": 789.91, "word": " in", "probability": 0.92431640625}, {"start": 789.91, "end": 790.27, "word": " software", "probability": 0.83984375}, {"start": 790.27, "end": 790.85, "word": " architecture", "probability": 0.9453125}], "temperature": 1.0}, {"id": 35, "seek": 82305, "start": 796.11, "end": 823.05, "text": " Repeatedly, people used it for problems that programmers faced in building software systems. They faced problems and to solve these problems, they put architecture patterns, like software design patterns. What is software design patterns? They are solutions to common software problems. Architecture patterns are also solutions", "tokens": [24927, 770, 356, 11, 561, 1143, 309, 337, 2740, 300, 41504, 11446, 294, 2390, 4722, 3652, 13, 814, 11446, 2740, 293, 281, 5039, 613, 2740, 11, 436, 829, 9482, 8294, 11, 411, 4722, 1715, 8294, 13, 708, 307, 4722, 1715, 8294, 30, 814, 366, 6547, 281, 2689, 4722, 2740, 13, 43049, 8294, 366, 611, 6547], "avg_logprob": -0.6177455612591335, "compression_ratio": 1.8324022346368716, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 796.11, "end": 796.81, "word": " Repeatedly,", "probability": 0.6537577311197916}, {"start": 796.91, "end": 797.11, "word": " people", "probability": 0.755859375}, {"start": 797.11, "end": 797.51, "word": " used", "probability": 0.37744140625}, {"start": 797.51, "end": 797.59, "word": " it", "probability": 0.37841796875}, {"start": 797.59, "end": 798.25, "word": " for", "probability": 0.40966796875}, {"start": 798.25, "end": 798.67, "word": " problems", "probability": 0.28515625}, {"start": 798.67, "end": 798.91, "word": " that", "probability": 0.344482421875}, {"start": 798.91, "end": 799.75, "word": " programmers", "probability": 0.8095703125}, {"start": 799.75, "end": 800.11, "word": " faced", "probability": 0.61181640625}, {"start": 800.11, "end": 800.97, "word": " in", "probability": 0.499755859375}, {"start": 800.97, "end": 802.37, "word": " building", "probability": 0.267333984375}, {"start": 802.37, "end": 804.47, "word": " software", "probability": 0.378662109375}, {"start": 804.47, "end": 804.79, "word": " systems.", "probability": 0.92822265625}, {"start": 806.77, "end": 807.49, "word": " They", "probability": 0.1412353515625}, {"start": 807.49, "end": 807.89, "word": " faced", "probability": 0.418212890625}, {"start": 807.89, "end": 808.51, "word": " problems", "probability": 0.681640625}, {"start": 808.51, "end": 809.79, "word": " and", "probability": 0.376220703125}, {"start": 809.79, "end": 811.21, "word": " to", "probability": 0.5693359375}, {"start": 811.21, "end": 811.55, "word": " solve", "probability": 0.830078125}, {"start": 811.55, "end": 811.71, "word": " these", "probability": 0.40087890625}, {"start": 811.71, "end": 812.39, "word": " problems,", "probability": 0.83154296875}, {"start": 812.83, "end": 812.83, "word": " they", "probability": 0.775390625}, {"start": 812.83, "end": 813.17, "word": " put", "probability": 0.267822265625}, {"start": 813.17, "end": 814.23, "word": " architecture", "probability": 0.6376953125}, {"start": 814.23, "end": 814.71, "word": " patterns,", "probability": 0.80517578125}, {"start": 814.79, "end": 814.97, "word": " like", "probability": 0.53759765625}, {"start": 814.97, "end": 815.41, "word": " software", "probability": 0.8193359375}, {"start": 815.41, "end": 815.77, "word": " design", "probability": 0.9287109375}, {"start": 815.77, "end": 816.19, "word": " patterns.", "probability": 0.91650390625}, {"start": 816.35, "end": 816.61, "word": " What", "probability": 0.501953125}, {"start": 816.61, "end": 816.93, "word": " is", "probability": 0.5517578125}, {"start": 816.93, "end": 817.29, "word": " software", "probability": 0.66552734375}, {"start": 817.29, "end": 817.57, "word": " design", "probability": 0.9462890625}, {"start": 817.57, "end": 817.91, "word": " patterns?", "probability": 0.79931640625}, {"start": 817.99, "end": 818.05, "word": " They", "probability": 0.450439453125}, {"start": 818.05, "end": 818.17, "word": " are", "probability": 0.88818359375}, {"start": 818.17, "end": 818.39, "word": " solutions", "probability": 0.544921875}, {"start": 818.39, "end": 819.19, "word": " to", "probability": 0.81591796875}, {"start": 819.19, "end": 819.53, "word": " common", "probability": 0.51611328125}, {"start": 819.53, "end": 819.73, "word": " software", "probability": 0.30224609375}, {"start": 819.73, "end": 820.31, "word": " problems.", "probability": 0.6591796875}, {"start": 821.11, "end": 821.67, "word": " Architecture", "probability": 0.346923828125}, {"start": 821.67, "end": 822.29, "word": " patterns", "probability": 0.890625}, {"start": 822.29, "end": 822.51, "word": " are", "probability": 0.8251953125}, {"start": 822.51, "end": 822.71, "word": " also", "probability": 0.82275390625}, {"start": 822.71, "end": 823.05, "word": " solutions", "probability": 0.8671875}], "temperature": 1.0}, {"id": 36, "seek": 84288, "start": 823.9, "end": 842.88, "text": "to various problems related to programming, which is a design of how the system is designed as a whole and divided into parts. As I said, this is a high level architecture, but the design patterns are related to building the code from the inside.", "tokens": [1353, 3683, 447, 638, 2592, 4077, 281, 9410, 11, 597, 307, 257, 1715, 295, 577, 264, 1185, 307, 4761, 382, 257, 1379, 293, 6666, 666, 3166, 13, 1018, 286, 848, 11, 341, 307, 257, 1090, 1496, 9482, 11, 457, 264, 1715, 8294, 366, 4077, 281, 2390, 264, 3089, 490, 264, 1854, 13], "avg_logprob": -0.6656839577656872, "compression_ratio": 1.5375, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 823.9, "end": 824.12, "word": "to", "probability": 0.1546630859375}, {"start": 824.12, "end": 824.18, "word": " various", "probability": 0.067626953125}, {"start": 824.18, "end": 824.86, "word": " problems", "probability": 0.6103922526041666}, {"start": 824.86, "end": 825.28, "word": " related", "probability": 0.123291015625}, {"start": 825.28, "end": 825.28, "word": " to", "probability": 0.9580078125}, {"start": 825.28, "end": 825.28, "word": " programming,", "probability": 0.53955078125}, {"start": 826.72, "end": 826.82, "word": " which", "probability": 0.330810546875}, {"start": 826.82, "end": 828.96, "word": " is", "probability": 0.44140625}, {"start": 828.96, "end": 829.48, "word": " a", "probability": 0.2178955078125}, {"start": 829.48, "end": 829.82, "word": " design", "probability": 0.3076171875}, {"start": 829.82, "end": 830.18, "word": " of", "probability": 0.28369140625}, {"start": 830.18, "end": 831.08, "word": " how", "probability": 0.74267578125}, {"start": 831.08, "end": 832.18, "word": " the", "probability": 0.53955078125}, {"start": 832.18, "end": 832.5, "word": " system", "probability": 0.81884765625}, {"start": 832.5, "end": 832.54, "word": " is", "probability": 0.71435546875}, {"start": 832.54, "end": 832.54, "word": " designed", "probability": 0.62353515625}, {"start": 832.54, "end": 832.66, "word": " as", "probability": 0.320556640625}, {"start": 832.66, "end": 832.74, "word": " a", "probability": 0.96484375}, {"start": 832.74, "end": 832.94, "word": " whole", "probability": 0.86962890625}, {"start": 832.94, "end": 833.06, "word": " and", "probability": 0.59814453125}, {"start": 833.06, "end": 833.5, "word": " divided", "probability": 0.51806640625}, {"start": 833.5, "end": 833.6, "word": " into", "probability": 0.81640625}, {"start": 833.6, "end": 834.04, "word": " parts.", "probability": 0.748046875}, {"start": 834.86, "end": 835.28, "word": " As", "probability": 0.357177734375}, {"start": 835.28, "end": 835.48, "word": " I", "probability": 0.90234375}, {"start": 835.48, "end": 835.7, "word": " said,", "probability": 0.65869140625}, {"start": 835.78, "end": 835.88, "word": " this", "probability": 0.70751953125}, {"start": 835.88, "end": 835.92, "word": " is", "probability": 0.7783203125}, {"start": 835.92, "end": 836.0, "word": " a", "probability": 0.732421875}, {"start": 836.0, "end": 836.02, "word": " high", "probability": 0.68115234375}, {"start": 836.02, "end": 836.58, "word": " level", "probability": 0.72216796875}, {"start": 836.58, "end": 837.9, "word": " architecture,", "probability": 0.2025146484375}, {"start": 839.08, "end": 839.28, "word": " but", "probability": 0.75146484375}, {"start": 839.28, "end": 839.48, "word": " the", "probability": 0.72021484375}, {"start": 839.48, "end": 839.76, "word": " design", "probability": 0.91845703125}, {"start": 839.76, "end": 840.14, "word": " patterns", "probability": 0.6953125}, {"start": 840.14, "end": 840.3, "word": " are", "probability": 0.333251953125}, {"start": 840.3, "end": 840.64, "word": " related", "probability": 0.75439453125}, {"start": 840.64, "end": 841.38, "word": " to", "probability": 0.8701171875}, {"start": 841.38, "end": 841.6, "word": " building", "probability": 0.361328125}, {"start": 841.6, "end": 841.78, "word": " the", "probability": 0.4580078125}, {"start": 841.78, "end": 842.1, "word": " code", "probability": 0.9208984375}, {"start": 842.1, "end": 842.62, "word": " from", "probability": 0.76513671875}, {"start": 842.62, "end": 842.88, "word": " the", "probability": 0.35302734375}, {"start": 842.88, "end": 842.88, "word": " inside.", "probability": 0.8935546875}], "temperature": 1.0}, {"id": 37, "seek": 86996, "start": 844.36, "end": 869.96, "text": "Of course, it provides a set of guidelines and best practices for designing the structure and organization of software. When we talk about architectural patterns, it gives guidance on how to build a system so that it is well organized. These architectural patterns help architects and developers to make the software scalable. What does scalable mean?", "tokens": [23919, 1164, 11, 309, 6417, 257, 992, 295, 12470, 293, 1151, 7525, 337, 14685, 264, 3877, 293, 4475, 295, 4722, 13, 1133, 321, 751, 466, 26621, 8294, 11, 309, 2709, 10056, 322, 577, 281, 1322, 257, 1185, 370, 300, 309, 307, 731, 9983, 13, 1981, 26621, 8294, 854, 30491, 293, 8849, 281, 652, 264, 4722, 38481, 13, 708, 775, 38481, 914, 30], "avg_logprob": -0.3578868934086391, "compression_ratio": 1.6556603773584906, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 844.36, "end": 844.58, "word": "Of", "probability": 0.129150390625}, {"start": 844.58, "end": 844.7, "word": " course,", "probability": 0.93603515625}, {"start": 844.74, "end": 844.86, "word": " it", "probability": 0.90625}, {"start": 844.86, "end": 845.34, "word": " provides", "probability": 0.88134765625}, {"start": 845.34, "end": 845.5, "word": " a", "probability": 0.9384765625}, {"start": 845.5, "end": 845.66, "word": " set", "probability": 0.93896484375}, {"start": 845.66, "end": 845.8, "word": " of", "probability": 0.9677734375}, {"start": 845.8, "end": 846.26, "word": " guidelines", "probability": 0.90625}, {"start": 846.26, "end": 846.46, "word": " and", "probability": 0.916015625}, {"start": 846.46, "end": 846.66, "word": " best", "probability": 0.896484375}, {"start": 846.66, "end": 847.2, "word": " practices", "probability": 0.9375}, {"start": 847.2, "end": 847.42, "word": " for", "probability": 0.92236328125}, {"start": 847.42, "end": 847.84, "word": " designing", "probability": 0.8681640625}, {"start": 847.84, "end": 848.06, "word": " the", "probability": 0.888671875}, {"start": 848.06, "end": 848.38, "word": " structure", "probability": 0.8447265625}, {"start": 848.38, "end": 848.58, "word": " and", "probability": 0.93212890625}, {"start": 848.58, "end": 849.04, "word": " organization", "probability": 0.8125}, {"start": 849.04, "end": 849.34, "word": " of", "probability": 0.9697265625}, {"start": 849.34, "end": 849.74, "word": " software.", "probability": 0.859375}, {"start": 849.96, "end": 850.3, "word": " When", "probability": 0.461181640625}, {"start": 850.3, "end": 850.86, "word": " we", "probability": 0.9287109375}, {"start": 850.86, "end": 851.06, "word": " talk", "probability": 0.77294921875}, {"start": 851.06, "end": 851.2, "word": " about", "probability": 0.90234375}, {"start": 851.2, "end": 851.58, "word": " architectural", "probability": 0.65966796875}, {"start": 851.58, "end": 852.06, "word": " patterns,", "probability": 0.7255859375}, {"start": 852.16, "end": 852.16, "word": " it", "probability": 0.6103515625}, {"start": 852.16, "end": 852.34, "word": " gives", "probability": 0.5947265625}, {"start": 852.34, "end": 852.92, "word": " guidance", "probability": 0.55908203125}, {"start": 852.92, "end": 853.1, "word": " on", "probability": 0.6328125}, {"start": 853.1, "end": 853.36, "word": " how", "probability": 0.88330078125}, {"start": 853.36, "end": 853.48, "word": " to", "probability": 0.86376953125}, {"start": 853.48, "end": 853.66, "word": " build", "probability": 0.837890625}, {"start": 853.66, "end": 853.8, "word": " a", "probability": 0.392822265625}, {"start": 853.8, "end": 854.18, "word": " system", "probability": 0.83203125}, {"start": 854.18, "end": 856.1, "word": " so", "probability": 0.276611328125}, {"start": 856.1, "end": 856.5, "word": " that", "probability": 0.88232421875}, {"start": 856.5, "end": 857.72, "word": " it", "probability": 0.6943359375}, {"start": 857.72, "end": 858.6, "word": " is", "probability": 0.246337890625}, {"start": 858.6, "end": 859.08, "word": " well", "probability": 0.45361328125}, {"start": 859.08, "end": 860.16, "word": " organized.", "probability": 0.7744140625}, {"start": 860.76, "end": 860.98, "word": " These", "probability": 0.68701171875}, {"start": 860.98, "end": 861.56, "word": " architectural", "probability": 0.93115234375}, {"start": 861.56, "end": 862.08, "word": " patterns", "probability": 0.873046875}, {"start": 862.08, "end": 862.44, "word": " help", "probability": 0.87109375}, {"start": 862.44, "end": 863.14, "word": " architects", "probability": 0.96875}, {"start": 863.14, "end": 864.74, "word": " and", "probability": 0.74755859375}, {"start": 864.74, "end": 865.32, "word": " developers", "probability": 0.59814453125}, {"start": 865.32, "end": 866.7, "word": " to", "probability": 0.5712890625}, {"start": 866.7, "end": 867.62, "word": " make", "probability": 0.796875}, {"start": 867.62, "end": 867.82, "word": " the", "probability": 0.258544921875}, {"start": 867.82, "end": 868.3, "word": " software", "probability": 0.85888671875}, {"start": 868.3, "end": 868.94, "word": " scalable.", "probability": 0.86962890625}, {"start": 869.3, "end": 869.48, "word": " What", "probability": 0.77734375}, {"start": 869.48, "end": 869.6, "word": " does", "probability": 0.423583984375}, {"start": 869.6, "end": 869.96, "word": " scalable", "probability": 0.69287109375}, {"start": 869.96, "end": 869.96, "word": " mean?", "probability": 0.96435546875}], "temperature": 1.0}, {"id": 38, "seek": 89368, "start": 870.78, "end": 893.68, "text": "It is expandable, maintainable, easy to maintain and adaptable. It adapts to existing changes. What does it mean to adapt to existing changes? For example, if I want to modify a certain part, I need to add this part easily. We used to talk about these concepts in the days of software design patterns. Why should I talk about design based on an interface? Let's talk about the observer.", "tokens": [3522, 307, 5268, 712, 11, 6909, 712, 11, 1858, 281, 6909, 293, 6231, 712, 13, 467, 23169, 1373, 281, 6741, 2962, 13, 708, 775, 309, 914, 281, 6231, 281, 6741, 2962, 30, 1171, 1365, 11, 498, 286, 528, 281, 16927, 257, 1629, 644, 11, 286, 643, 281, 909, 341, 644, 3612, 13, 492, 1143, 281, 751, 466, 613, 10392, 294, 264, 1708, 295, 4722, 1715, 8294, 13, 1545, 820, 286, 751, 466, 1715, 2361, 322, 364, 9226, 30, 961, 311, 751, 466, 264, 27878, 13], "avg_logprob": -0.5039971200532691, "compression_ratio": 1.7079646017699115, "no_speech_prob": 2.1457672119140625e-06, "words": [{"start": 870.78, "end": 870.88, "word": "It", "probability": 0.1268310546875}, {"start": 870.88, "end": 871.14, "word": " is", "probability": 0.410888671875}, {"start": 871.14, "end": 871.68, "word": " expandable,", "probability": 0.67578125}, {"start": 871.82, "end": 872.46, "word": " maintainable,", "probability": 0.94384765625}, {"start": 873.1, "end": 873.18, "word": " easy", "probability": 0.74658203125}, {"start": 873.18, "end": 873.34, "word": " to", "probability": 0.9052734375}, {"start": 873.34, "end": 873.66, "word": " maintain", "probability": 0.68017578125}, {"start": 873.66, "end": 873.9, "word": " and", "probability": 0.374267578125}, {"start": 873.9, "end": 874.38, "word": " adaptable.", "probability": 0.890625}, {"start": 874.46, "end": 874.46, "word": " It", "probability": 0.6376953125}, {"start": 874.46, "end": 874.9, "word": " adapts", "probability": 0.79052734375}, {"start": 874.9, "end": 875.24, "word": " to", "probability": 0.72705078125}, {"start": 875.24, "end": 875.78, "word": " existing", "probability": 0.386962890625}, {"start": 875.78, "end": 876.42, "word": " changes.", "probability": 0.6904296875}, {"start": 877.0, "end": 877.14, "word": " What", "probability": 0.36279296875}, {"start": 877.14, "end": 877.24, "word": " does", "probability": 0.7578125}, {"start": 877.24, "end": 877.3, "word": " it", "probability": 0.491455078125}, {"start": 877.3, "end": 877.62, "word": " mean", "probability": 0.8232421875}, {"start": 877.62, "end": 877.62, "word": " to", "probability": 0.33837890625}, {"start": 877.62, "end": 877.62, "word": " adapt", "probability": 0.88720703125}, {"start": 877.62, "end": 877.88, "word": " to", "probability": 0.77587890625}, {"start": 877.88, "end": 877.94, "word": " existing", "probability": 0.91064453125}, {"start": 877.94, "end": 878.3, "word": " changes?", "probability": 0.81591796875}, {"start": 878.9, "end": 879.22, "word": " For", "probability": 0.248779296875}, {"start": 879.22, "end": 879.22, "word": " example,", "probability": 0.82470703125}, {"start": 879.22, "end": 879.3, "word": " if", "probability": 0.74951171875}, {"start": 879.3, "end": 879.34, "word": " I", "probability": 0.6875}, {"start": 879.34, "end": 879.72, "word": " want", "probability": 0.7578125}, {"start": 879.72, "end": 879.88, "word": " to", "probability": 0.9638671875}, {"start": 879.88, "end": 880.24, "word": " modify", "probability": 0.32568359375}, {"start": 880.24, "end": 880.56, "word": " a", "probability": 0.587890625}, {"start": 880.56, "end": 881.1, "word": " certain", "probability": 0.326416015625}, {"start": 881.1, "end": 881.68, "word": " part,", "probability": 0.392578125}, {"start": 881.88, "end": 881.92, "word": " I", "probability": 0.50634765625}, {"start": 881.92, "end": 882.4, "word": " need", "probability": 0.34423828125}, {"start": 882.4, "end": 882.86, "word": " to", "probability": 0.94091796875}, {"start": 882.86, "end": 883.02, "word": " add", "probability": 0.35205078125}, {"start": 883.02, "end": 883.32, "word": " this", "probability": 0.68798828125}, {"start": 883.32, "end": 883.6, "word": " part", "probability": 0.67626953125}, {"start": 883.6, "end": 884.62, "word": " easily.", "probability": 0.483642578125}, {"start": 885.22, "end": 885.86, "word": " We", "probability": 0.496337890625}, {"start": 885.86, "end": 886.22, "word": " used", "probability": 0.5029296875}, {"start": 886.22, "end": 886.28, "word": " to", "probability": 0.95166015625}, {"start": 886.28, "end": 886.54, "word": " talk", "probability": 0.60791015625}, {"start": 886.54, "end": 886.7, "word": " about", "probability": 0.89599609375}, {"start": 886.7, "end": 886.7, "word": " these", "probability": 0.6376953125}, {"start": 886.7, "end": 886.7, "word": " concepts", "probability": 0.80029296875}, {"start": 886.7, "end": 887.3, "word": " in", "probability": 0.2471923828125}, {"start": 887.3, "end": 887.34, "word": " the", "probability": 0.456787109375}, {"start": 887.34, "end": 887.38, "word": " days", "probability": 0.54541015625}, {"start": 887.38, "end": 887.54, "word": " of", "probability": 0.9677734375}, {"start": 887.54, "end": 887.86, "word": " software", "probability": 0.8466796875}, {"start": 887.86, "end": 888.18, "word": " design", "probability": 0.94873046875}, {"start": 888.18, "end": 888.62, "word": " patterns.", "probability": 0.68017578125}, {"start": 889.28, "end": 889.88, "word": " Why", "probability": 0.3818359375}, {"start": 889.88, "end": 890.14, "word": " should", "probability": 0.53466796875}, {"start": 890.14, "end": 890.22, "word": " I", "probability": 0.97900390625}, {"start": 890.22, "end": 890.42, "word": " talk", "probability": 0.56396484375}, {"start": 890.42, "end": 890.76, "word": " about", "probability": 0.86279296875}, {"start": 890.76, "end": 891.18, "word": " design", "probability": 0.485595703125}, {"start": 891.18, "end": 891.52, "word": " based", "probability": 0.638671875}, {"start": 891.52, "end": 891.68, "word": " on", "probability": 0.55517578125}, {"start": 891.68, "end": 891.84, "word": " an", "probability": 0.76904296875}, {"start": 891.84, "end": 892.4, "word": " interface?", "probability": 0.89794921875}, {"start": 892.84, "end": 893.02, "word": " Let's", "probability": 0.510528564453125}, {"start": 893.02, "end": 893.16, "word": " talk", "probability": 0.35791015625}, {"start": 893.16, "end": 893.18, "word": " about", "probability": 0.9091796875}, {"start": 893.18, "end": 893.3, "word": " the", "probability": 0.51123046875}, {"start": 893.3, "end": 893.68, "word": " observer.", "probability": 0.595703125}], "temperature": 1.0}, {"id": 39, "seek": 91024, "start": 895.34, "end": 910.24, "text": "What is the benefit of it in general? One-to-many communication. I have a model that constantly changes its data and needs to be modified more than the view", "tokens": [3748, 307, 264, 5121, 295, 309, 294, 2674, 30, 1485, 12, 1353, 12, 76, 1325, 6101, 13, 286, 362, 257, 2316, 300, 6460, 2962, 1080, 1412, 293, 2203, 281, 312, 15873, 544, 813, 264, 1910], "avg_logprob": -0.5976562533113692, "compression_ratio": 1.2682926829268293, "no_speech_prob": 1.7285346984863281e-06, "words": [{"start": 895.34, "end": 895.9, "word": "What", "probability": 0.1090087890625}, {"start": 895.9, "end": 896.18, "word": " is", "probability": 0.63037109375}, {"start": 896.18, "end": 897.7, "word": " the", "probability": 0.75146484375}, {"start": 897.7, "end": 897.96, "word": " benefit", "probability": 0.336669921875}, {"start": 897.96, "end": 898.2, "word": " of", "probability": 0.6904296875}, {"start": 898.2, "end": 898.3, "word": " it", "probability": 0.481201171875}, {"start": 898.3, "end": 899.4, "word": " in", "probability": 0.5654296875}, {"start": 899.4, "end": 900.04, "word": " general?", "probability": 0.84716796875}, {"start": 900.54, "end": 900.74, "word": " One", "probability": 0.28076171875}, {"start": 900.74, "end": 900.94, "word": "-to", "probability": 0.5955810546875}, {"start": 900.94, "end": 901.22, "word": "-many", "probability": 0.9298502604166666}, {"start": 901.22, "end": 903.34, "word": " communication.", "probability": 0.59619140625}, {"start": 904.94, "end": 905.04, "word": " I", "probability": 0.5966796875}, {"start": 905.04, "end": 905.34, "word": " have", "probability": 0.92041015625}, {"start": 905.34, "end": 905.68, "word": " a", "probability": 0.92578125}, {"start": 905.68, "end": 906.0, "word": " model", "probability": 0.91748046875}, {"start": 906.0, "end": 907.18, "word": " that", "probability": 0.29296875}, {"start": 907.18, "end": 907.72, "word": " constantly", "probability": 0.335693359375}, {"start": 907.72, "end": 908.48, "word": " changes", "probability": 0.69873046875}, {"start": 908.48, "end": 908.54, "word": " its", "probability": 0.313232421875}, {"start": 908.54, "end": 908.54, "word": " data", "probability": 0.72265625}, {"start": 908.54, "end": 909.06, "word": " and", "probability": 0.466796875}, {"start": 909.06, "end": 909.28, "word": " needs", "probability": 0.278564453125}, {"start": 909.28, "end": 909.36, "word": " to", "probability": 0.65234375}, {"start": 909.36, "end": 909.54, "word": " be", "probability": 0.439208984375}, {"start": 909.54, "end": 909.54, "word": " modified", "probability": 0.6689453125}, {"start": 909.54, "end": 909.8, "word": " more", "probability": 0.6572265625}, {"start": 909.8, "end": 909.96, "word": " than", "probability": 0.91796875}, {"start": 909.96, "end": 910.08, "word": " the", "probability": 0.54052734375}, {"start": 910.08, "end": 910.24, "word": " view", "probability": 0.8544921875}], "temperature": 1.0}, {"id": 40, "seek": 93908, "start": 911.32, "end": 939.08, "text": " You should be able to add views to your model constantly without having to modify the database and the model. This is the observer pattern that we did. For example, I have a system that works with different algorithms, and these algorithms change. At first, I made them F statements, and F statements need to be modified. So I design them using a strategy to make a new algorithm that works with the system. I tell it to make an implementable interface", "tokens": [509, 820, 312, 1075, 281, 909, 6809, 281, 428, 2316, 6460, 1553, 1419, 281, 16927, 264, 8149, 293, 264, 2316, 13, 639, 307, 264, 27878, 5102, 300, 321, 630, 13, 1171, 1365, 11, 286, 362, 257, 1185, 300, 1985, 365, 819, 14642, 11, 293, 613, 14642, 1319, 13, 1711, 700, 11, 286, 1027, 552, 479, 12363, 11, 293, 479, 12363, 643, 281, 312, 15873, 13, 407, 286, 1715, 552, 1228, 257, 5206, 281, 652, 257, 777, 9284, 300, 1985, 365, 264, 1185, 13, 286, 980, 309, 281, 652, 364, 4445, 712, 9226], "avg_logprob": -0.49563169992098244, "compression_ratio": 1.749034749034749, "no_speech_prob": 4.827976226806641e-06, "words": [{"start": 911.32, "end": 911.48, "word": " You", "probability": 0.288818359375}, {"start": 911.48, "end": 911.68, "word": " should", "probability": 0.1466064453125}, {"start": 911.68, "end": 911.86, "word": " be", "probability": 0.61865234375}, {"start": 911.86, "end": 912.26, "word": " able", "probability": 0.8466796875}, {"start": 912.26, "end": 912.46, "word": " to", "probability": 0.90673828125}, {"start": 912.46, "end": 914.08, "word": " add", "probability": 0.217529296875}, {"start": 914.08, "end": 914.82, "word": " views", "probability": 0.462158203125}, {"start": 914.82, "end": 915.08, "word": " to", "probability": 0.791015625}, {"start": 915.08, "end": 915.08, "word": " your", "probability": 0.81884765625}, {"start": 915.08, "end": 915.08, "word": " model", "probability": 0.82470703125}, {"start": 915.08, "end": 915.66, "word": " constantly", "probability": 0.275390625}, {"start": 915.66, "end": 917.28, "word": " without", "probability": 0.5107421875}, {"start": 917.28, "end": 917.86, "word": " having", "probability": 0.379638671875}, {"start": 917.86, "end": 917.96, "word": " to", "probability": 0.96240234375}, {"start": 917.96, "end": 918.28, "word": " modify", "probability": 0.378662109375}, {"start": 918.28, "end": 918.88, "word": " the", "probability": 0.68359375}, {"start": 918.88, "end": 919.6, "word": " database", "probability": 0.79833984375}, {"start": 919.6, "end": 919.74, "word": " and", "probability": 0.57421875}, {"start": 919.74, "end": 919.8, "word": " the", "probability": 0.38818359375}, {"start": 919.8, "end": 919.98, "word": " model.", "probability": 0.9384765625}, {"start": 920.4, "end": 920.66, "word": " This", "probability": 0.67431640625}, {"start": 920.66, "end": 920.8, "word": " is", "probability": 0.90966796875}, {"start": 920.8, "end": 921.42, "word": " the", "probability": 0.74658203125}, {"start": 921.42, "end": 921.8, "word": " observer", "probability": 0.671875}, {"start": 921.8, "end": 922.22, "word": " pattern", "probability": 0.87890625}, {"start": 922.22, "end": 922.36, "word": " that", "probability": 0.525390625}, {"start": 922.36, "end": 922.6, "word": " we", "probability": 0.91943359375}, {"start": 922.6, "end": 923.06, "word": " did.", "probability": 0.11444091796875}, {"start": 923.44, "end": 923.6, "word": " For", "probability": 0.42236328125}, {"start": 923.6, "end": 924.34, "word": " example,", "probability": 0.63525390625}, {"start": 924.9, "end": 925.06, "word": " I", "probability": 0.453125}, {"start": 925.06, "end": 925.28, "word": " have", "probability": 0.87255859375}, {"start": 925.28, "end": 925.4, "word": " a", "probability": 0.9404296875}, {"start": 925.4, "end": 925.62, "word": " system", "probability": 0.9072265625}, {"start": 925.62, "end": 925.76, "word": " that", "probability": 0.76953125}, {"start": 925.76, "end": 925.94, "word": " works", "probability": 0.3251953125}, {"start": 925.94, "end": 926.04, "word": " with", "probability": 0.638671875}, {"start": 926.04, "end": 926.08, "word": " different", "probability": 0.81103515625}, {"start": 926.08, "end": 926.56, "word": " algorithms,", "probability": 0.97216796875}, {"start": 927.08, "end": 927.12, "word": " and", "probability": 0.69482421875}, {"start": 927.12, "end": 927.2, "word": " these", "probability": 0.54833984375}, {"start": 927.2, "end": 927.54, "word": " algorithms", "probability": 0.931640625}, {"start": 927.54, "end": 928.12, "word": " change.", "probability": 0.69384765625}, {"start": 928.68, "end": 928.92, "word": " At", "probability": 0.46875}, {"start": 928.92, "end": 929.22, "word": " first,", "probability": 0.85791015625}, {"start": 929.3, "end": 929.3, "word": " I", "probability": 0.958984375}, {"start": 929.3, "end": 929.48, "word": " made", "probability": 0.3818359375}, {"start": 929.48, "end": 929.58, "word": " them", "probability": 0.27734375}, {"start": 929.58, "end": 929.72, "word": " F", "probability": 0.442138671875}, {"start": 929.72, "end": 930.18, "word": " statements,", "probability": 0.5703125}, {"start": 930.52, "end": 930.74, "word": " and", "probability": 0.57763671875}, {"start": 930.74, "end": 930.94, "word": " F", "probability": 0.347412109375}, {"start": 930.94, "end": 931.32, "word": " statements", "probability": 0.74462890625}, {"start": 931.32, "end": 931.72, "word": " need", "probability": 0.654296875}, {"start": 931.72, "end": 931.88, "word": " to", "probability": 0.4482421875}, {"start": 931.88, "end": 931.88, "word": " be", "probability": 0.91064453125}, {"start": 931.88, "end": 932.14, "word": " modified.", "probability": 0.88720703125}, {"start": 932.6, "end": 932.76, "word": " So", "probability": 0.6162109375}, {"start": 932.76, "end": 932.9, "word": " I", "probability": 0.759765625}, {"start": 932.9, "end": 933.1, "word": " design", "probability": 0.66796875}, {"start": 933.1, "end": 933.28, "word": " them", "probability": 0.529296875}, {"start": 933.28, "end": 933.56, "word": " using", "probability": 0.7265625}, {"start": 933.56, "end": 933.84, "word": " a", "probability": 0.81396484375}, {"start": 933.84, "end": 934.24, "word": " strategy", "probability": 0.89208984375}, {"start": 934.24, "end": 935.12, "word": " to", "probability": 0.49658203125}, {"start": 935.12, "end": 935.62, "word": " make", "probability": 0.34716796875}, {"start": 935.62, "end": 935.72, "word": " a", "probability": 0.88427734375}, {"start": 935.72, "end": 935.72, "word": " new", "probability": 0.900390625}, {"start": 935.72, "end": 936.12, "word": " algorithm", "probability": 0.9365234375}, {"start": 936.12, "end": 936.52, "word": " that", "probability": 0.444580078125}, {"start": 936.52, "end": 936.92, "word": " works", "probability": 0.3271484375}, {"start": 936.92, "end": 937.08, "word": " with", "probability": 0.5791015625}, {"start": 937.08, "end": 937.26, "word": " the", "probability": 0.490234375}, {"start": 937.26, "end": 937.4, "word": " system.", "probability": 0.8818359375}, {"start": 937.46, "end": 937.56, "word": " I", "probability": 0.92431640625}, {"start": 937.56, "end": 937.68, "word": " tell", "probability": 0.55908203125}, {"start": 937.68, "end": 937.76, "word": " it", "probability": 0.48486328125}, {"start": 937.76, "end": 937.82, "word": " to", "probability": 0.9345703125}, {"start": 937.82, "end": 937.94, "word": " make", "probability": 0.394775390625}, {"start": 937.94, "end": 938.08, "word": " an", "probability": 0.8984375}, {"start": 938.08, "end": 938.52, "word": " implementable", "probability": 0.60693359375}, {"start": 938.52, "end": 939.08, "word": " interface", "probability": 0.89404296875}], "temperature": 1.0}, {"id": 41, "seek": 95404, "start": 939.7, "end": 954.04, "text": " And I put the algorithm and send it to the operation to be executed. So I add and modify the algorithms without modifying my client. And this is how all the existing design patterns work. So design patterns help you make good architecture.", "tokens": [400, 286, 829, 264, 9284, 293, 2845, 309, 281, 264, 6916, 281, 312, 17577, 13, 407, 286, 909, 293, 16927, 264, 14642, 1553, 42626, 452, 6423, 13, 400, 341, 307, 577, 439, 264, 6741, 1715, 8294, 589, 13, 407, 1715, 8294, 854, 291, 652, 665, 9482, 13], "avg_logprob": -0.5810546601812044, "compression_ratio": 1.5686274509803921, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 939.7, "end": 939.82, "word": " And", "probability": 0.0833740234375}, {"start": 939.82, "end": 939.92, "word": " I", "probability": 0.63427734375}, {"start": 939.92, "end": 940.1, "word": " put", "probability": 0.261962890625}, {"start": 940.1, "end": 940.22, "word": " the", "probability": 0.60693359375}, {"start": 940.22, "end": 940.58, "word": " algorithm", "probability": 0.88720703125}, {"start": 940.58, "end": 940.78, "word": " and", "probability": 0.5966796875}, {"start": 940.78, "end": 941.06, "word": " send", "probability": 0.5009765625}, {"start": 941.06, "end": 941.28, "word": " it", "probability": 0.8955078125}, {"start": 941.28, "end": 942.26, "word": " to", "probability": 0.833984375}, {"start": 942.26, "end": 942.34, "word": " the", "probability": 0.77978515625}, {"start": 942.34, "end": 942.72, "word": " operation", "probability": 0.6455078125}, {"start": 942.72, "end": 942.98, "word": " to", "probability": 0.55859375}, {"start": 942.98, "end": 943.16, "word": " be", "probability": 0.165771484375}, {"start": 943.16, "end": 943.5, "word": " executed.", "probability": 0.6142578125}, {"start": 944.04, "end": 944.12, "word": " So", "probability": 0.42138671875}, {"start": 944.12, "end": 944.54, "word": " I", "probability": 0.74658203125}, {"start": 944.54, "end": 944.72, "word": " add", "probability": 0.359375}, {"start": 944.72, "end": 944.98, "word": " and", "probability": 0.6083984375}, {"start": 944.98, "end": 945.26, "word": " modify", "probability": 0.493896484375}, {"start": 945.26, "end": 945.44, "word": " the", "probability": 0.501953125}, {"start": 945.44, "end": 945.84, "word": " algorithms", "probability": 0.6328125}, {"start": 945.84, "end": 946.08, "word": " without", "probability": 0.7822265625}, {"start": 946.08, "end": 946.48, "word": " modifying", "probability": 0.84765625}, {"start": 946.48, "end": 946.64, "word": " my", "probability": 0.38427734375}, {"start": 946.64, "end": 947.08, "word": " client.", "probability": 0.8623046875}, {"start": 948.0, "end": 948.1, "word": " And", "probability": 0.355224609375}, {"start": 948.1, "end": 948.26, "word": " this", "probability": 0.2174072265625}, {"start": 948.26, "end": 948.28, "word": " is", "probability": 0.76708984375}, {"start": 948.28, "end": 948.52, "word": " how", "probability": 0.53759765625}, {"start": 948.52, "end": 948.74, "word": " all", "probability": 0.7626953125}, {"start": 948.74, "end": 948.82, "word": " the", "probability": 0.55029296875}, {"start": 948.82, "end": 949.04, "word": " existing", "probability": 0.6181640625}, {"start": 949.04, "end": 949.1, "word": " design", "probability": 0.8125}, {"start": 949.1, "end": 949.48, "word": " patterns", "probability": 0.8916015625}, {"start": 949.48, "end": 949.9, "word": " work.", "probability": 0.6484375}, {"start": 950.5, "end": 950.56, "word": " So", "probability": 0.423828125}, {"start": 950.56, "end": 950.94, "word": " design", "probability": 0.67822265625}, {"start": 950.94, "end": 951.36, "word": " patterns", "probability": 0.90673828125}, {"start": 951.36, "end": 952.58, "word": " help", "probability": 0.4404296875}, {"start": 952.58, "end": 953.02, "word": " you", "probability": 0.9228515625}, {"start": 953.02, "end": 953.24, "word": " make", "probability": 0.36669921875}, {"start": 953.24, "end": 953.3, "word": " good", "probability": 0.673828125}, {"start": 953.3, "end": 954.04, "word": " architecture.", "probability": 0.9423828125}], "temperature": 1.0}, {"id": 42, "seek": 98357, "start": 959.89, "end": 983.57, "text": "Architectural patterns are not specific to any programming language. We are not talking about Java or C Sharp or Python. We are talking about architecture applied in all programming languages. Ok, this information you read it yourself. Now we come to the first architectural pattern which is model view.", "tokens": [10683, 339, 5739, 1807, 8294, 366, 406, 2685, 281, 604, 9410, 2856, 13, 492, 366, 406, 1417, 466, 10745, 420, 383, 31654, 420, 15329, 13, 492, 366, 1417, 466, 9482, 6456, 294, 439, 9410, 8650, 13, 3477, 11, 341, 1589, 291, 1401, 309, 1803, 13, 823, 321, 808, 281, 264, 700, 26621, 5102, 597, 307, 2316, 1910, 13], "avg_logprob": -0.46371822235947946, "compression_ratio": 1.664835164835165, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 959.89, "end": 960.39, "word": "Architectural", "probability": 0.77227783203125}, {"start": 960.39, "end": 960.71, "word": " patterns", "probability": 0.73095703125}, {"start": 960.71, "end": 960.95, "word": " are", "probability": 0.931640625}, {"start": 960.95, "end": 961.19, "word": " not", "probability": 0.94189453125}, {"start": 961.19, "end": 961.57, "word": " specific", "probability": 0.884765625}, {"start": 961.57, "end": 961.75, "word": " to", "probability": 0.9599609375}, {"start": 961.75, "end": 961.91, "word": " any", "probability": 0.908203125}, {"start": 961.91, "end": 962.25, "word": " programming", "probability": 0.84326171875}, {"start": 962.25, "end": 962.79, "word": " language.", "probability": 0.845703125}, {"start": 963.03, "end": 963.19, "word": " We", "probability": 0.64501953125}, {"start": 963.19, "end": 963.31, "word": " are", "probability": 0.467041015625}, {"start": 963.31, "end": 963.31, "word": " not", "probability": 0.92578125}, {"start": 963.31, "end": 963.49, "word": " talking", "probability": 0.736328125}, {"start": 963.49, "end": 963.75, "word": " about", "probability": 0.890625}, {"start": 963.75, "end": 964.09, "word": " Java", "probability": 0.75830078125}, {"start": 964.09, "end": 964.95, "word": " or", "probability": 0.430908203125}, {"start": 964.95, "end": 965.17, "word": " C", "probability": 0.86376953125}, {"start": 965.17, "end": 965.55, "word": " Sharp", "probability": 0.048736572265625}, {"start": 965.55, "end": 965.73, "word": " or", "probability": 0.8916015625}, {"start": 965.73, "end": 966.21, "word": " Python.", "probability": 0.83251953125}, {"start": 966.65, "end": 966.85, "word": " We", "probability": 0.34228515625}, {"start": 966.85, "end": 966.97, "word": " are", "probability": 0.84814453125}, {"start": 966.97, "end": 967.15, "word": " talking", "probability": 0.80810546875}, {"start": 967.15, "end": 967.29, "word": " about", "probability": 0.91064453125}, {"start": 967.29, "end": 967.85, "word": " architecture", "probability": 0.578125}, {"start": 967.85, "end": 968.21, "word": " applied", "probability": 0.3935546875}, {"start": 968.21, "end": 968.39, "word": " in", "probability": 0.468505859375}, {"start": 968.39, "end": 968.61, "word": " all", "probability": 0.4140625}, {"start": 968.61, "end": 970.01, "word": " programming", "probability": 0.75244140625}, {"start": 970.01, "end": 970.11, "word": " languages.", "probability": 0.9775390625}, {"start": 972.31, "end": 972.81, "word": " Ok,", "probability": 0.2734375}, {"start": 973.03, "end": 976.09, "word": " this", "probability": 0.1903076171875}, {"start": 976.09, "end": 976.55, "word": " information", "probability": 0.44384765625}, {"start": 976.55, "end": 976.83, "word": " you", "probability": 0.556640625}, {"start": 976.83, "end": 977.13, "word": " read", "probability": 0.351318359375}, {"start": 977.13, "end": 977.27, "word": " it", "probability": 0.5419921875}, {"start": 977.27, "end": 977.63, "word": " yourself.", "probability": 0.33740234375}, {"start": 978.65, "end": 978.89, "word": " Now", "probability": 0.82275390625}, {"start": 978.89, "end": 979.09, "word": " we", "probability": 0.29833984375}, {"start": 979.09, "end": 979.21, "word": " come", "probability": 0.5595703125}, {"start": 979.21, "end": 979.41, "word": " to", "probability": 0.94140625}, {"start": 979.41, "end": 981.47, "word": " the", "probability": 0.77685546875}, {"start": 981.47, "end": 981.73, "word": " first", "probability": 0.86572265625}, {"start": 981.73, "end": 982.25, "word": " architectural", "probability": 0.76416015625}, {"start": 982.25, "end": 982.75, "word": " pattern", "probability": 0.8515625}, {"start": 982.75, "end": 982.89, "word": " which", "probability": 0.525390625}, {"start": 982.89, "end": 983.03, "word": " is", "probability": 0.9345703125}, {"start": 983.03, "end": 983.27, "word": " model", "probability": 0.52294921875}, {"start": 983.27, "end": 983.57, "word": " view.", "probability": 0.73974609375}], "temperature": 1.0}, {"id": 43, "seek": 101279, "start": 985.73, "end": 1012.79, "text": " Now, let's talk about the MVC. What does it mean? MVC means to separate your system into three parts. The first part is called the view, which is the design of the user interface.", "tokens": [823, 11, 718, 311, 751, 466, 264, 17663, 34, 13, 708, 775, 309, 914, 30, 17663, 34, 1355, 281, 4994, 428, 1185, 666, 1045, 3166, 13, 440, 700, 644, 307, 1219, 264, 1910, 11, 597, 307, 264, 1715, 295, 264, 4195, 9226, 13], "avg_logprob": -0.5848721685734662, "compression_ratio": 1.3235294117647058, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 985.7300000000001, "end": 986.5300000000001, "word": " Now,", "probability": 0.306396484375}, {"start": 986.5300000000001, "end": 987.33, "word": " let's", "probability": 0.593994140625}, {"start": 987.33, "end": 987.61, "word": " talk", "probability": 0.619140625}, {"start": 987.61, "end": 988.85, "word": " about", "probability": 0.5205078125}, {"start": 988.85, "end": 989.01, "word": " the", "probability": 0.27490234375}, {"start": 989.01, "end": 989.55, "word": " MVC.", "probability": 0.7489013671875}, {"start": 989.77, "end": 989.93, "word": " What", "probability": 0.529296875}, {"start": 989.93, "end": 990.05, "word": " does", "probability": 0.56640625}, {"start": 990.05, "end": 990.05, "word": " it", "probability": 0.7294921875}, {"start": 990.05, "end": 990.45, "word": " mean?", "probability": 0.90966796875}, {"start": 997.69, "end": 998.49, "word": " MVC", "probability": 0.763671875}, {"start": 998.49, "end": 999.97, "word": " means", "probability": 0.2958984375}, {"start": 999.97, "end": 1000.39, "word": " to", "probability": 0.363525390625}, {"start": 1000.39, "end": 1001.61, "word": " separate", "probability": 0.5673828125}, {"start": 1001.61, "end": 1001.77, "word": " your", "probability": 0.71630859375}, {"start": 1001.77, "end": 1002.13, "word": " system", "probability": 0.890625}, {"start": 1002.13, "end": 1003.39, "word": " into", "probability": 0.6767578125}, {"start": 1003.39, "end": 1003.65, "word": " three", "probability": 0.60693359375}, {"start": 1003.65, "end": 1004.03, "word": " parts.", "probability": 0.8232421875}, {"start": 1004.63, "end": 1005.43, "word": " The", "probability": 0.20849609375}, {"start": 1005.43, "end": 1005.53, "word": " first", "probability": 0.81298828125}, {"start": 1005.53, "end": 1005.61, "word": " part", "probability": 0.81689453125}, {"start": 1005.61, "end": 1005.77, "word": " is", "probability": 0.67919921875}, {"start": 1005.77, "end": 1006.03, "word": " called", "probability": 0.611328125}, {"start": 1006.03, "end": 1006.41, "word": " the", "probability": 0.346435546875}, {"start": 1006.41, "end": 1006.65, "word": " view,", "probability": 0.30029296875}, {"start": 1008.83, "end": 1009.49, "word": " which", "probability": 0.7763671875}, {"start": 1009.49, "end": 1009.67, "word": " is", "probability": 0.60400390625}, {"start": 1009.67, "end": 1010.29, "word": " the", "probability": 0.34765625}, {"start": 1010.29, "end": 1011.71, "word": " design", "probability": 0.44189453125}, {"start": 1011.71, "end": 1011.91, "word": " of", "probability": 0.95556640625}, {"start": 1011.91, "end": 1011.95, "word": " the", "probability": 0.73876953125}, {"start": 1011.95, "end": 1012.15, "word": " user", "probability": 0.53271484375}, {"start": 1012.15, "end": 1012.79, "word": " interface.", "probability": 0.8486328125}], "temperature": 1.0}, {"id": 44, "seek": 104258, "start": 1014.81, "end": 1042.59, "text": " Okay? It will be focused on this part. Of course, the view can be a class, more than a class. Mostly, it is the faces. On the website, it is basically the HTML pages. In which we put the HTML code, CSS, and also the JavaScript files. We call all of them the view. The model is sometimes called the business logic.", "tokens": [1033, 30, 467, 486, 312, 5178, 322, 341, 644, 13, 2720, 1164, 11, 264, 1910, 393, 312, 257, 1508, 11, 544, 813, 257, 1508, 13, 29035, 11, 309, 307, 264, 8475, 13, 1282, 264, 3670, 30417, 11, 309, 307, 1936, 264, 17995, 7183, 13, 682, 597, 321, 829, 264, 17995, 3089, 11, 24387, 11, 293, 611, 264, 15778, 7098, 13, 492, 818, 439, 295, 552, 264, 1910, 13, 440, 2316, 307, 2171, 1219, 264, 1606, 9952, 13], "avg_logprob": -0.5176281990149082, "compression_ratio": 1.4952380952380953, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 1014.81, "end": 1015.11, "word": " Okay?", "probability": 0.09222412109375}, {"start": 1015.41, "end": 1015.57, "word": " It", "probability": 0.541015625}, {"start": 1015.57, "end": 1015.61, "word": " will", "probability": 0.182373046875}, {"start": 1015.61, "end": 1015.99, "word": " be", "probability": 0.6962890625}, {"start": 1015.99, "end": 1016.51, "word": " focused", "probability": 0.52392578125}, {"start": 1016.51, "end": 1016.71, "word": " on", "probability": 0.66455078125}, {"start": 1016.71, "end": 1016.79, "word": " this", "probability": 0.74072265625}, {"start": 1016.79, "end": 1017.05, "word": " part.", "probability": 0.6015625}, {"start": 1018.15, "end": 1018.43, "word": " Of", "probability": 0.7919921875}, {"start": 1018.43, "end": 1018.43, "word": " course,", "probability": 0.96142578125}, {"start": 1018.49, "end": 1018.59, "word": " the", "probability": 0.52880859375}, {"start": 1018.59, "end": 1018.69, "word": " view", "probability": 0.7001953125}, {"start": 1018.69, "end": 1018.95, "word": " can", "probability": 0.6884765625}, {"start": 1018.95, "end": 1019.37, "word": " be", "probability": 0.8662109375}, {"start": 1019.37, "end": 1019.91, "word": " a", "probability": 0.378662109375}, {"start": 1019.91, "end": 1020.31, "word": " class,", "probability": 0.96337890625}, {"start": 1020.41, "end": 1020.63, "word": " more", "probability": 0.6025390625}, {"start": 1020.63, "end": 1020.81, "word": " than", "probability": 0.943359375}, {"start": 1020.81, "end": 1020.95, "word": " a", "probability": 0.7841796875}, {"start": 1020.95, "end": 1021.31, "word": " class.", "probability": 0.9658203125}, {"start": 1021.85, "end": 1022.23, "word": " Mostly,", "probability": 0.25390625}, {"start": 1022.31, "end": 1022.41, "word": " it", "probability": 0.76123046875}, {"start": 1022.41, "end": 1022.41, "word": " is", "probability": 0.67333984375}, {"start": 1022.41, "end": 1022.51, "word": " the", "probability": 0.60205078125}, {"start": 1022.51, "end": 1022.69, "word": " faces.", "probability": 0.498779296875}, {"start": 1023.41, "end": 1023.59, "word": " On", "probability": 0.415771484375}, {"start": 1023.59, "end": 1024.15, "word": " the", "probability": 0.65869140625}, {"start": 1024.15, "end": 1024.37, "word": " website,", "probability": 0.4786376953125}, {"start": 1024.49, "end": 1024.55, "word": " it", "probability": 0.87109375}, {"start": 1024.55, "end": 1024.89, "word": " is", "probability": 0.72607421875}, {"start": 1024.89, "end": 1025.25, "word": " basically", "probability": 0.165283203125}, {"start": 1025.25, "end": 1025.37, "word": " the", "probability": 0.7587890625}, {"start": 1025.37, "end": 1026.01, "word": " HTML", "probability": 0.6884765625}, {"start": 1026.01, "end": 1026.17, "word": " pages.", "probability": 0.830078125}, {"start": 1026.67, "end": 1026.89, "word": " In", "probability": 0.298583984375}, {"start": 1026.89, "end": 1026.93, "word": " which", "probability": 0.77587890625}, {"start": 1026.93, "end": 1027.01, "word": " we", "probability": 0.6806640625}, {"start": 1027.01, "end": 1027.23, "word": " put", "probability": 0.591796875}, {"start": 1027.23, "end": 1027.45, "word": " the", "probability": 0.72119140625}, {"start": 1027.45, "end": 1027.93, "word": " HTML", "probability": 0.73583984375}, {"start": 1027.93, "end": 1028.13, "word": " code,", "probability": 0.89208984375}, {"start": 1028.29, "end": 1028.67, "word": " CSS,", "probability": 0.6875}, {"start": 1029.23, "end": 1029.51, "word": " and", "probability": 0.79248046875}, {"start": 1029.51, "end": 1029.71, "word": " also", "probability": 0.466552734375}, {"start": 1029.71, "end": 1029.83, "word": " the", "probability": 0.35302734375}, {"start": 1029.83, "end": 1030.57, "word": " JavaScript", "probability": 0.6201171875}, {"start": 1030.57, "end": 1030.59, "word": " files.", "probability": 0.92333984375}, {"start": 1030.89, "end": 1031.27, "word": " We", "probability": 0.38525390625}, {"start": 1031.27, "end": 1031.87, "word": " call", "probability": 0.8017578125}, {"start": 1031.87, "end": 1031.95, "word": " all", "probability": 0.56298828125}, {"start": 1031.95, "end": 1031.95, "word": " of", "probability": 0.708984375}, {"start": 1031.95, "end": 1031.95, "word": " them", "probability": 0.455810546875}, {"start": 1031.95, "end": 1033.01, "word": " the", "probability": 0.1748046875}, {"start": 1033.01, "end": 1033.23, "word": " view.", "probability": 0.6796875}, {"start": 1034.61, "end": 1034.97, "word": " The", "probability": 0.71142578125}, {"start": 1034.97, "end": 1035.27, "word": " model", "probability": 0.89404296875}, {"start": 1035.27, "end": 1038.69, "word": " is", "probability": 0.40380859375}, {"start": 1038.69, "end": 1040.11, "word": " sometimes", "probability": 0.4501953125}, {"start": 1040.11, "end": 1040.31, "word": " called", "probability": 0.77294921875}, {"start": 1040.31, "end": 1040.49, "word": " the", "probability": 0.62939453125}, {"start": 1040.49, "end": 1040.91, "word": " business", "probability": 0.91357421875}, {"start": 1040.91, "end": 1042.59, "word": " logic.", "probability": 0.95361328125}], "temperature": 1.0}, {"id": 45, "seek": 104875, "start": 1044.09, "end": 1048.75, "text": "Anything related to data and dealing with data, we call it model", "tokens": [29647, 825, 4077, 281, 1412, 293, 6260, 365, 1412, 11, 321, 818, 309, 2316], "avg_logprob": -0.44921875397364297, "compression_ratio": 1.0, "no_speech_prob": 0.0, "words": [{"start": 1044.09, "end": 1044.81, "word": "Anything", "probability": 0.5858154296875}, {"start": 1044.81, "end": 1045.23, "word": " related", "probability": 0.3671875}, {"start": 1045.23, "end": 1045.63, "word": " to", "probability": 0.9326171875}, {"start": 1045.63, "end": 1046.05, "word": " data", "probability": 0.87158203125}, {"start": 1046.05, "end": 1046.87, "word": " and", "probability": 0.61962890625}, {"start": 1046.87, "end": 1047.27, "word": " dealing", "probability": 0.5732421875}, {"start": 1047.27, "end": 1047.47, "word": " with", "probability": 0.9013671875}, {"start": 1047.47, "end": 1047.83, "word": " data,", "probability": 0.708984375}, {"start": 1047.93, "end": 1048.03, "word": " we", "probability": 0.70849609375}, {"start": 1048.03, "end": 1048.31, "word": " call", "probability": 0.771484375}, {"start": 1048.31, "end": 1048.41, "word": " it", "probability": 0.66015625}, {"start": 1048.41, "end": 1048.75, "word": " model", "probability": 0.490478515625}], "temperature": 1.0}, {"id": 46, "seek": 107839, "start": 1050.33, "end": 1078.39, "text": "What does this mean? Anything related to connection to database and queries, select, insert, update, delete, this is all part of the model. Anything related to connection or service and bring data and JSON and analyze, this is all related to the model. Any algorithm that I implement is related to the model. The coding of any connection, any interaction with files and data is all related to the model.", "tokens": [3748, 775, 341, 914, 30, 11998, 4077, 281, 4984, 281, 8149, 293, 24109, 11, 3048, 11, 8969, 11, 5623, 11, 12097, 11, 341, 307, 439, 644, 295, 264, 2316, 13, 11998, 4077, 281, 4984, 420, 2643, 293, 1565, 1412, 293, 31828, 293, 12477, 11, 341, 307, 439, 4077, 281, 264, 2316, 13, 2639, 9284, 300, 286, 4445, 307, 4077, 281, 264, 2316, 13, 440, 17720, 295, 604, 4984, 11, 604, 9285, 365, 7098, 293, 1412, 307, 439, 4077, 281, 264, 2316, 13], "avg_logprob": -0.4536897532911186, "compression_ratio": 1.9563106796116505, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1050.33, "end": 1050.57, "word": "What", "probability": 0.187744140625}, {"start": 1050.57, "end": 1050.57, "word": " does", "probability": 0.459716796875}, {"start": 1050.57, "end": 1050.69, "word": " this", "probability": 0.427734375}, {"start": 1050.69, "end": 1050.79, "word": " mean?", "probability": 0.74609375}, {"start": 1051.21, "end": 1051.81, "word": " Anything", "probability": 0.374267578125}, {"start": 1051.81, "end": 1052.23, "word": " related", "probability": 0.374267578125}, {"start": 1052.23, "end": 1052.45, "word": " to", "probability": 0.95947265625}, {"start": 1052.45, "end": 1052.87, "word": " connection", "probability": 0.467529296875}, {"start": 1052.87, "end": 1053.07, "word": " to", "probability": 0.63037109375}, {"start": 1053.07, "end": 1053.59, "word": " database", "probability": 0.5673828125}, {"start": 1053.59, "end": 1053.71, "word": " and", "probability": 0.473388671875}, {"start": 1053.71, "end": 1054.29, "word": " queries,", "probability": 0.89453125}, {"start": 1054.75, "end": 1055.61, "word": " select,", "probability": 0.6875}, {"start": 1055.85, "end": 1056.23, "word": " insert,", "probability": 0.93701171875}, {"start": 1056.39, "end": 1056.73, "word": " update,", "probability": 0.8876953125}, {"start": 1056.87, "end": 1057.25, "word": " delete,", "probability": 0.93017578125}, {"start": 1057.59, "end": 1057.81, "word": " this", "probability": 0.1773681640625}, {"start": 1057.81, "end": 1057.97, "word": " is", "probability": 0.59716796875}, {"start": 1057.97, "end": 1058.09, "word": " all", "probability": 0.7646484375}, {"start": 1058.09, "end": 1058.53, "word": " part", "probability": 0.66943359375}, {"start": 1058.53, "end": 1059.07, "word": " of", "probability": 0.95703125}, {"start": 1059.07, "end": 1059.87, "word": " the", "probability": 0.7490234375}, {"start": 1059.87, "end": 1060.09, "word": " model.", "probability": 0.892578125}, {"start": 1060.37, "end": 1060.81, "word": " Anything", "probability": 0.68701171875}, {"start": 1060.81, "end": 1061.55, "word": " related", "probability": 0.7646484375}, {"start": 1061.55, "end": 1062.33, "word": " to", "probability": 0.9609375}, {"start": 1062.33, "end": 1062.79, "word": " connection", "probability": 0.85205078125}, {"start": 1062.79, "end": 1062.97, "word": " or", "probability": 0.771484375}, {"start": 1062.97, "end": 1063.47, "word": " service", "probability": 0.740234375}, {"start": 1063.47, "end": 1063.65, "word": " and", "probability": 0.3037109375}, {"start": 1063.65, "end": 1063.77, "word": " bring", "probability": 0.310302734375}, {"start": 1063.77, "end": 1064.21, "word": " data", "probability": 0.58349609375}, {"start": 1064.21, "end": 1064.53, "word": " and", "probability": 0.330078125}, {"start": 1064.53, "end": 1064.85, "word": " JSON", "probability": 0.7333984375}, {"start": 1064.85, "end": 1065.01, "word": " and", "probability": 0.77587890625}, {"start": 1065.01, "end": 1065.33, "word": " analyze,", "probability": 0.365234375}, {"start": 1066.01, "end": 1066.17, "word": " this", "probability": 0.6171875}, {"start": 1066.17, "end": 1066.31, "word": " is", "probability": 0.6826171875}, {"start": 1066.31, "end": 1066.43, "word": " all", "probability": 0.84326171875}, {"start": 1066.43, "end": 1066.87, "word": " related", "probability": 0.85302734375}, {"start": 1066.87, "end": 1067.37, "word": " to", "probability": 0.95654296875}, {"start": 1067.37, "end": 1067.47, "word": " the", "probability": 0.84716796875}, {"start": 1067.47, "end": 1067.67, "word": " model.", "probability": 0.94287109375}, {"start": 1068.17, "end": 1068.33, "word": " Any", "probability": 0.82861328125}, {"start": 1068.33, "end": 1068.93, "word": " algorithm", "probability": 0.9287109375}, {"start": 1068.93, "end": 1069.29, "word": " that", "probability": 0.454345703125}, {"start": 1069.29, "end": 1069.41, "word": " I", "probability": 0.93359375}, {"start": 1069.41, "end": 1069.83, "word": " implement", "probability": 0.385009765625}, {"start": 1069.83, "end": 1070.21, "word": " is", "probability": 0.397705078125}, {"start": 1070.21, "end": 1070.61, "word": " related", "probability": 0.93798828125}, {"start": 1070.61, "end": 1071.55, "word": " to", "probability": 0.96728515625}, {"start": 1071.55, "end": 1071.65, "word": " the", "probability": 0.88525390625}, {"start": 1071.65, "end": 1071.85, "word": " model.", "probability": 0.94775390625}, {"start": 1072.31, "end": 1072.35, "word": " The", "probability": 0.368408203125}, {"start": 1072.35, "end": 1072.75, "word": " coding", "probability": 0.8955078125}, {"start": 1072.75, "end": 1073.05, "word": " of", "probability": 0.79443359375}, {"start": 1073.05, "end": 1073.41, "word": " any", "probability": 0.135986328125}, {"start": 1073.41, "end": 1074.71, "word": " connection,", "probability": 0.701171875}, {"start": 1074.87, "end": 1075.09, "word": " any", "probability": 0.8583984375}, {"start": 1075.09, "end": 1075.47, "word": " interaction", "probability": 0.307373046875}, {"start": 1075.47, "end": 1075.67, "word": " with", "probability": 0.89892578125}, {"start": 1075.67, "end": 1076.03, "word": " files", "probability": 0.91650390625}, {"start": 1076.03, "end": 1076.31, "word": " and", "probability": 0.83935546875}, {"start": 1076.31, "end": 1076.69, "word": " data", "probability": 0.77099609375}, {"start": 1076.69, "end": 1077.41, "word": " is", "probability": 0.359619140625}, {"start": 1077.41, "end": 1077.61, "word": " all", "probability": 0.60546875}, {"start": 1077.61, "end": 1078.01, "word": " related", "probability": 0.923828125}, {"start": 1078.01, "end": 1078.35, "word": " to", "probability": 0.8994140625}, {"start": 1078.35, "end": 1078.39, "word": " the", "probability": 0.74462890625}, {"start": 1078.39, "end": 1078.39, "word": " model.", "probability": 0.876953125}], "temperature": 1.0}, {"id": 47, "seek": 110079, "start": 1079.27, "end": 1100.79, "text": " Now, the idea of MVC is that these two should be separated from each other for a whole period of time For example, 20 years ago when we learned PHP, we used to make a page", "tokens": [823, 11, 264, 1558, 295, 17663, 34, 307, 300, 613, 732, 820, 312, 12005, 490, 1184, 661, 337, 257, 1379, 2896, 295, 565, 1171, 1365, 11, 945, 924, 2057, 562, 321, 3264, 47298, 11, 321, 1143, 281, 652, 257, 3028], "avg_logprob": -0.6703505864957484, "compression_ratio": 1.2932330827067668, "no_speech_prob": 1.7821788787841797e-05, "words": [{"start": 1079.27, "end": 1080.09, "word": " Now,", "probability": 0.2376708984375}, {"start": 1081.35, "end": 1081.41, "word": " the", "probability": 0.55322265625}, {"start": 1081.41, "end": 1081.61, "word": " idea", "probability": 0.462158203125}, {"start": 1081.61, "end": 1081.77, "word": " of", "probability": 0.80322265625}, {"start": 1081.77, "end": 1082.33, "word": " MVC", "probability": 0.6925048828125}, {"start": 1082.33, "end": 1082.77, "word": " is", "probability": 0.284912109375}, {"start": 1082.77, "end": 1082.95, "word": " that", "probability": 0.66552734375}, {"start": 1082.95, "end": 1083.53, "word": " these", "probability": 0.47509765625}, {"start": 1083.53, "end": 1084.03, "word": " two", "probability": 0.80517578125}, {"start": 1084.03, "end": 1084.47, "word": " should", "probability": 0.244140625}, {"start": 1084.47, "end": 1085.95, "word": " be", "probability": 0.7783203125}, {"start": 1085.95, "end": 1086.33, "word": " separated", "probability": 0.314697265625}, {"start": 1086.33, "end": 1086.49, "word": " from", "probability": 0.53076171875}, {"start": 1086.49, "end": 1086.75, "word": " each", "probability": 0.91748046875}, {"start": 1086.75, "end": 1086.75, "word": " other", "probability": 0.8896484375}, {"start": 1086.75, "end": 1086.83, "word": " for", "probability": 0.1644287109375}, {"start": 1086.83, "end": 1087.09, "word": " a", "probability": 0.71142578125}, {"start": 1087.09, "end": 1087.31, "word": " whole", "probability": 0.2822265625}, {"start": 1087.31, "end": 1087.33, "word": " period", "probability": 0.2232666015625}, {"start": 1087.33, "end": 1087.33, "word": " of", "probability": 0.49609375}, {"start": 1087.33, "end": 1088.25, "word": " time", "probability": 0.875}, {"start": 1088.25, "end": 1089.63, "word": " For", "probability": 0.211181640625}, {"start": 1089.63, "end": 1090.93, "word": " example,", "probability": 0.91015625}, {"start": 1092.45, "end": 1094.11, "word": " 20", "probability": 0.396728515625}, {"start": 1094.11, "end": 1094.55, "word": " years", "probability": 0.91552734375}, {"start": 1094.55, "end": 1094.91, "word": " ago", "probability": 0.88623046875}, {"start": 1094.91, "end": 1096.19, "word": " when", "probability": 0.51123046875}, {"start": 1096.19, "end": 1097.45, "word": " we", "probability": 0.8779296875}, {"start": 1097.45, "end": 1097.75, "word": " learned", "probability": 0.314697265625}, {"start": 1097.75, "end": 1098.45, "word": " PHP,", "probability": 0.14892578125}, {"start": 1099.49, "end": 1099.69, "word": " we", "probability": 0.7666015625}, {"start": 1099.69, "end": 1099.69, "word": " used", "probability": 0.6201171875}, {"start": 1099.69, "end": 1099.99, "word": " to", "probability": 0.96875}, {"start": 1099.99, "end": 1100.37, "word": " make", "probability": 0.3232421875}, {"start": 1100.37, "end": 1100.53, "word": " a", "probability": 0.9013671875}, {"start": 1100.53, "end": 1100.79, "word": " page", "probability": 0.6572265625}], "temperature": 1.0}, {"id": 48, "seek": 111372, "start": 1102.98, "end": 1113.72, "text": "I will tell you how when we first started working in programming, there was no such thing as frameworks. What could we do? For example, this is HTML", "tokens": [40, 486, 980, 291, 577, 562, 321, 700, 1409, 1364, 294, 9410, 11, 456, 390, 572, 1270, 551, 382, 29834, 13, 708, 727, 321, 360, 30, 1171, 1365, 11, 341, 307, 17995], "avg_logprob": -0.6728219696969697, "compression_ratio": 1.2131147540983607, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1102.98, "end": 1103.22, "word": "I", "probability": 0.189208984375}, {"start": 1103.22, "end": 1103.52, "word": " will", "probability": 0.427490234375}, {"start": 1103.52, "end": 1103.6, "word": " tell", "probability": 0.703125}, {"start": 1103.6, "end": 1103.74, "word": " you", "probability": 0.958984375}, {"start": 1103.74, "end": 1103.9, "word": " how", "probability": 0.75830078125}, {"start": 1103.9, "end": 1104.14, "word": " when", "probability": 0.388916015625}, {"start": 1104.14, "end": 1104.32, "word": " we", "probability": 0.84228515625}, {"start": 1104.32, "end": 1104.32, "word": " first", "probability": 0.249755859375}, {"start": 1104.32, "end": 1104.66, "word": " started", "probability": 0.61328125}, {"start": 1104.66, "end": 1104.8, "word": " working", "probability": 0.331298828125}, {"start": 1104.8, "end": 1105.08, "word": " in", "probability": 0.256591796875}, {"start": 1105.08, "end": 1105.44, "word": " programming,", "probability": 0.5263671875}, {"start": 1105.72, "end": 1106.38, "word": " there", "probability": 0.224609375}, {"start": 1106.38, "end": 1108.36, "word": " was", "probability": 0.38427734375}, {"start": 1108.36, "end": 1108.38, "word": " no", "probability": 0.75146484375}, {"start": 1108.38, "end": 1108.38, "word": " such", "probability": 0.28759765625}, {"start": 1108.38, "end": 1108.68, "word": " thing", "probability": 0.63916015625}, {"start": 1108.68, "end": 1109.68, "word": " as", "probability": 0.91748046875}, {"start": 1109.68, "end": 1110.06, "word": " frameworks.", "probability": 0.68115234375}, {"start": 1111.04, "end": 1111.58, "word": " What", "probability": 0.46923828125}, {"start": 1111.58, "end": 1112.44, "word": " could", "probability": 0.35205078125}, {"start": 1112.44, "end": 1112.54, "word": " we", "probability": 0.94091796875}, {"start": 1112.54, "end": 1112.8, "word": " do?", "probability": 0.94384765625}, {"start": 1112.84, "end": 1112.98, "word": " For", "probability": 0.244384765625}, {"start": 1112.98, "end": 1113.24, "word": " example,", "probability": 0.91015625}, {"start": 1113.24, "end": 1113.24, "word": " this", "probability": 0.61083984375}, {"start": 1113.24, "end": 1113.34, "word": " is", "probability": 0.90087890625}, {"start": 1113.34, "end": 1113.72, "word": " HTML", "probability": 0.794921875}], "temperature": 1.0}, {"id": 49, "seek": 113923, "start": 1119.11, "end": 1139.23, "text": " For example, we wanted to connect to a database, a table called students and show the student's data in the HTML page We wanted to show it in a table, so we created a tag table in HTML with no table, and then we created a row like this", "tokens": [1171, 1365, 11, 321, 1415, 281, 1745, 281, 257, 8149, 11, 257, 3199, 1219, 1731, 293, 855, 264, 3107, 311, 1412, 294, 264, 17995, 3028, 492, 1415, 281, 855, 309, 294, 257, 3199, 11, 370, 321, 2942, 257, 6162, 3199, 294, 17995, 365, 572, 3199, 11, 293, 550, 321, 2942, 257, 5386, 411, 341], "avg_logprob": -0.5275568246841431, "compression_ratio": 1.6275862068965516, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1119.1100000000001, "end": 1119.63, "word": " For", "probability": 0.09912109375}, {"start": 1119.63, "end": 1120.15, "word": " example,", "probability": 0.9091796875}, {"start": 1120.33, "end": 1120.33, "word": " we", "probability": 0.8388671875}, {"start": 1120.33, "end": 1120.53, "word": " wanted", "probability": 0.65283203125}, {"start": 1120.53, "end": 1121.31, "word": " to", "probability": 0.96484375}, {"start": 1121.31, "end": 1121.91, "word": " connect", "probability": 0.45703125}, {"start": 1121.91, "end": 1122.07, "word": " to", "probability": 0.6357421875}, {"start": 1122.07, "end": 1122.19, "word": " a", "probability": 0.900390625}, {"start": 1122.19, "end": 1122.67, "word": " database,", "probability": 0.89111328125}, {"start": 1122.93, "end": 1123.01, "word": " a", "probability": 0.61669921875}, {"start": 1123.01, "end": 1123.31, "word": " table", "probability": 0.88720703125}, {"start": 1123.31, "end": 1124.15, "word": " called", "probability": 0.229736328125}, {"start": 1124.15, "end": 1124.69, "word": " students", "probability": 0.65234375}, {"start": 1124.69, "end": 1124.89, "word": " and", "probability": 0.5400390625}, {"start": 1124.89, "end": 1125.11, "word": " show", "probability": 0.310546875}, {"start": 1125.11, "end": 1125.55, "word": " the", "probability": 0.426513671875}, {"start": 1125.55, "end": 1125.95, "word": " student's", "probability": 0.5006103515625}, {"start": 1125.95, "end": 1125.95, "word": " data", "probability": 0.63232421875}, {"start": 1125.95, "end": 1128.33, "word": " in", "probability": 0.6083984375}, {"start": 1128.33, "end": 1128.73, "word": " the", "probability": 0.489501953125}, {"start": 1128.73, "end": 1128.97, "word": " HTML", "probability": 0.9287109375}, {"start": 1128.97, "end": 1129.11, "word": " page", "probability": 0.82763671875}, {"start": 1129.11, "end": 1130.33, "word": " We", "probability": 0.290771484375}, {"start": 1130.33, "end": 1130.55, "word": " wanted", "probability": 0.73681640625}, {"start": 1130.55, "end": 1130.89, "word": " to", "probability": 0.93115234375}, {"start": 1130.89, "end": 1131.05, "word": " show", "probability": 0.732421875}, {"start": 1131.05, "end": 1131.17, "word": " it", "probability": 0.44775390625}, {"start": 1131.17, "end": 1131.55, "word": " in", "probability": 0.4716796875}, {"start": 1131.55, "end": 1131.67, "word": " a", "probability": 0.9306640625}, {"start": 1131.67, "end": 1131.81, "word": " table,", "probability": 0.580078125}, {"start": 1131.91, "end": 1132.01, "word": " so", "probability": 0.60546875}, {"start": 1132.01, "end": 1132.17, "word": " we", "probability": 0.91015625}, {"start": 1132.17, "end": 1132.35, "word": " created", "probability": 0.191650390625}, {"start": 1132.35, "end": 1132.49, "word": " a", "probability": 0.916015625}, {"start": 1132.49, "end": 1132.69, "word": " tag", "probability": 0.8427734375}, {"start": 1132.69, "end": 1133.09, "word": " table", "probability": 0.7421875}, {"start": 1133.09, "end": 1134.75, "word": " in", "probability": 0.70166015625}, {"start": 1134.75, "end": 1135.15, "word": " HTML", "probability": 0.415771484375}, {"start": 1135.15, "end": 1135.63, "word": " with", "probability": 0.3310546875}, {"start": 1135.63, "end": 1135.83, "word": " no", "probability": 0.763671875}, {"start": 1135.83, "end": 1136.15, "word": " table,", "probability": 0.78271484375}, {"start": 1136.59, "end": 1137.23, "word": " and", "probability": 0.383544921875}, {"start": 1137.23, "end": 1137.53, "word": " then", "probability": 0.69140625}, {"start": 1137.53, "end": 1137.65, "word": " we", "probability": 0.6611328125}, {"start": 1137.65, "end": 1137.83, "word": " created", "probability": 0.59912109375}, {"start": 1137.83, "end": 1137.91, "word": " a", "probability": 0.939453125}, {"start": 1137.91, "end": 1138.15, "word": " row", "probability": 0.873046875}, {"start": 1138.15, "end": 1138.91, "word": " like", "probability": 0.6748046875}, {"start": 1138.91, "end": 1139.23, "word": " this", "probability": 0.75634765625}], "temperature": 1.0}, {"id": 50, "seek": 115483, "start": 1143.95, "end": 1154.83, "text": "This is a table and this is a row. The row is not here. Then what do we want to do? We want to show more than one row. Each row has student data. So we used to open the PHP code here.", "tokens": [5723, 307, 257, 3199, 293, 341, 307, 257, 5386, 13, 440, 5386, 307, 406, 510, 13, 1396, 437, 360, 321, 528, 281, 360, 30, 492, 528, 281, 855, 544, 813, 472, 5386, 13, 6947, 5386, 575, 3107, 1412, 13, 407, 321, 1143, 281, 1269, 264, 47298, 3089, 510, 13], "avg_logprob": -0.5846875059604645, "compression_ratio": 1.4409448818897639, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 1143.95, "end": 1144.19, "word": "This", "probability": 0.1370849609375}, {"start": 1144.19, "end": 1144.25, "word": " is", "probability": 0.67724609375}, {"start": 1144.25, "end": 1144.53, "word": " a", "probability": 0.443115234375}, {"start": 1144.53, "end": 1144.81, "word": " table", "probability": 0.7919921875}, {"start": 1144.81, "end": 1144.99, "word": " and", "probability": 0.55322265625}, {"start": 1144.99, "end": 1145.19, "word": " this", "probability": 0.74755859375}, {"start": 1145.19, "end": 1145.37, "word": " is", "probability": 0.865234375}, {"start": 1145.37, "end": 1145.51, "word": " a", "probability": 0.2734375}, {"start": 1145.51, "end": 1145.69, "word": " row.", "probability": 0.90966796875}, {"start": 1146.43, "end": 1146.71, "word": " The", "probability": 0.5}, {"start": 1146.71, "end": 1146.83, "word": " row", "probability": 0.75830078125}, {"start": 1146.83, "end": 1146.93, "word": " is", "probability": 0.77392578125}, {"start": 1146.93, "end": 1147.01, "word": " not", "probability": 0.89599609375}, {"start": 1147.01, "end": 1147.27, "word": " here.", "probability": 0.69921875}, {"start": 1147.83, "end": 1148.25, "word": " Then", "probability": 0.19189453125}, {"start": 1148.25, "end": 1148.51, "word": " what", "probability": 0.3115234375}, {"start": 1148.51, "end": 1148.53, "word": " do", "probability": 0.35693359375}, {"start": 1148.53, "end": 1149.01, "word": " we", "probability": 0.90625}, {"start": 1149.01, "end": 1149.01, "word": " want", "probability": 0.62109375}, {"start": 1149.01, "end": 1149.17, "word": " to", "probability": 0.382080078125}, {"start": 1149.17, "end": 1149.17, "word": " do?", "probability": 0.76513671875}, {"start": 1149.37, "end": 1149.37, "word": " We", "probability": 0.38818359375}, {"start": 1149.37, "end": 1149.37, "word": " want", "probability": 0.69140625}, {"start": 1149.37, "end": 1149.37, "word": " to", "probability": 0.8115234375}, {"start": 1149.37, "end": 1149.49, "word": " show", "probability": 0.144287109375}, {"start": 1149.49, "end": 1149.75, "word": " more", "probability": 0.88134765625}, {"start": 1149.75, "end": 1149.89, "word": " than", "probability": 0.869140625}, {"start": 1149.89, "end": 1150.05, "word": " one", "probability": 0.60205078125}, {"start": 1150.05, "end": 1150.17, "word": " row.", "probability": 0.865234375}, {"start": 1150.37, "end": 1150.61, "word": " Each", "probability": 0.461181640625}, {"start": 1150.61, "end": 1150.75, "word": " row", "probability": 0.83154296875}, {"start": 1150.75, "end": 1151.11, "word": " has", "probability": 0.30615234375}, {"start": 1151.11, "end": 1151.23, "word": " student", "probability": 0.2215576171875}, {"start": 1151.23, "end": 1151.65, "word": " data.", "probability": 0.75537109375}, {"start": 1152.69, "end": 1153.13, "word": " So", "probability": 0.5078125}, {"start": 1153.13, "end": 1153.49, "word": " we", "probability": 0.544921875}, {"start": 1153.49, "end": 1153.49, "word": " used", "probability": 0.303466796875}, {"start": 1153.49, "end": 1153.73, "word": " to", "probability": 0.96875}, {"start": 1153.73, "end": 1153.85, "word": " open", "probability": 0.7451171875}, {"start": 1153.85, "end": 1154.35, "word": " the", "probability": 0.69287109375}, {"start": 1154.35, "end": 1154.83, "word": " PHP", "probability": 0.6689453125}, {"start": 1154.83, "end": 1154.83, "word": " code", "probability": 0.88671875}, {"start": 1154.83, "end": 1154.83, "word": " here.", "probability": 0.75634765625}], "temperature": 1.0}, {"id": 51, "seek": 117793, "start": 1156.55, "end": 1177.93, "text": "And we do connect here on the database and then we do select query and then we say bring the data as a list called students and then I say for each for each student for example present in students", "tokens": [5289, 321, 360, 1745, 510, 322, 264, 8149, 293, 550, 321, 360, 3048, 14581, 293, 550, 321, 584, 1565, 264, 1412, 382, 257, 1329, 1219, 1731, 293, 550, 286, 584, 337, 1184, 337, 1184, 3107, 337, 1365, 1974, 294, 1731], "avg_logprob": -0.5221036585365854, "compression_ratio": 1.6896551724137931, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 1156.55, "end": 1157.43, "word": "And", "probability": 0.151611328125}, {"start": 1157.43, "end": 1158.19, "word": " we", "probability": 0.370849609375}, {"start": 1158.19, "end": 1158.35, "word": " do", "probability": 0.178466796875}, {"start": 1158.35, "end": 1158.91, "word": " connect", "probability": 0.80810546875}, {"start": 1158.91, "end": 1159.43, "word": " here", "probability": 0.67333984375}, {"start": 1159.43, "end": 1160.09, "word": " on", "probability": 0.68603515625}, {"start": 1160.09, "end": 1160.57, "word": " the", "probability": 0.77783203125}, {"start": 1160.57, "end": 1161.59, "word": " database", "probability": 0.9013671875}, {"start": 1161.59, "end": 1162.03, "word": " and", "probability": 0.46923828125}, {"start": 1162.03, "end": 1162.21, "word": " then", "probability": 0.63037109375}, {"start": 1162.21, "end": 1162.35, "word": " we", "probability": 0.8056640625}, {"start": 1162.35, "end": 1162.59, "word": " do", "probability": 0.83642578125}, {"start": 1162.59, "end": 1164.15, "word": " select", "probability": 0.8173828125}, {"start": 1164.15, "end": 1164.65, "word": " query", "probability": 0.9072265625}, {"start": 1164.65, "end": 1166.05, "word": " and", "probability": 0.264404296875}, {"start": 1166.05, "end": 1166.63, "word": " then", "probability": 0.71337890625}, {"start": 1166.63, "end": 1166.91, "word": " we", "probability": 0.49169921875}, {"start": 1166.91, "end": 1167.17, "word": " say", "probability": 0.59521484375}, {"start": 1167.17, "end": 1167.81, "word": " bring", "probability": 0.229736328125}, {"start": 1167.81, "end": 1167.95, "word": " the", "probability": 0.62255859375}, {"start": 1167.95, "end": 1168.17, "word": " data", "probability": 0.76611328125}, {"start": 1168.17, "end": 1168.61, "word": " as", "probability": 0.88623046875}, {"start": 1168.61, "end": 1168.89, "word": " a", "probability": 0.75}, {"start": 1168.89, "end": 1169.23, "word": " list", "probability": 0.919921875}, {"start": 1169.23, "end": 1169.77, "word": " called", "probability": 0.27392578125}, {"start": 1169.77, "end": 1171.25, "word": " students", "probability": 0.59716796875}, {"start": 1171.25, "end": 1172.29, "word": " and", "probability": 0.76708984375}, {"start": 1172.29, "end": 1172.55, "word": " then", "probability": 0.8203125}, {"start": 1172.55, "end": 1172.69, "word": " I", "probability": 0.8251953125}, {"start": 1172.69, "end": 1172.83, "word": " say", "probability": 0.857421875}, {"start": 1172.83, "end": 1173.23, "word": " for", "probability": 0.71728515625}, {"start": 1173.23, "end": 1173.65, "word": " each", "probability": 0.94384765625}, {"start": 1173.65, "end": 1174.81, "word": " for", "probability": 0.39599609375}, {"start": 1174.81, "end": 1175.05, "word": " each", "probability": 0.49560546875}, {"start": 1175.05, "end": 1175.65, "word": " student", "probability": 0.9306640625}, {"start": 1175.65, "end": 1176.55, "word": " for", "probability": 0.343017578125}, {"start": 1176.55, "end": 1176.79, "word": " example", "probability": 0.9033203125}, {"start": 1176.79, "end": 1177.23, "word": " present", "probability": 0.22021484375}, {"start": 1177.23, "end": 1177.37, "word": " in", "probability": 0.81884765625}, {"start": 1177.37, "end": 1177.93, "word": " students", "probability": 0.7216796875}], "temperature": 1.0}, {"id": 52, "seek": 120306, "start": 1179.16, "end": 1203.06, "text": "then I do row then I close the php code and I open html row and then I open php code and I say equals student name for example or at whatever and I close the row and what does this work for? for him of course this is a backward code", "tokens": [19096, 286, 360, 5386, 550, 286, 1998, 264, 903, 79, 3089, 293, 286, 1269, 276, 83, 15480, 5386, 293, 550, 286, 1269, 903, 79, 3089, 293, 286, 584, 6915, 3107, 1315, 337, 1365, 420, 412, 2035, 293, 286, 1998, 264, 5386, 293, 437, 775, 341, 589, 337, 30, 337, 796, 295, 1164, 341, 307, 257, 23897, 3089], "avg_logprob": -0.5996767210549322, "compression_ratio": 1.681159420289855, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 1179.16, "end": 1179.68, "word": "then", "probability": 0.2476806640625}, {"start": 1179.68, "end": 1179.88, "word": " I", "probability": 0.58251953125}, {"start": 1179.88, "end": 1180.1, "word": " do", "probability": 0.2122802734375}, {"start": 1180.1, "end": 1180.46, "word": " row", "probability": 0.1932373046875}, {"start": 1180.46, "end": 1181.04, "word": " then", "probability": 0.25439453125}, {"start": 1181.04, "end": 1181.18, "word": " I", "probability": 0.58203125}, {"start": 1181.18, "end": 1182.18, "word": " close", "probability": 0.7041015625}, {"start": 1182.18, "end": 1182.44, "word": " the", "probability": 0.642578125}, {"start": 1182.44, "end": 1184.94, "word": " php", "probability": 0.677001953125}, {"start": 1184.94, "end": 1184.94, "word": " code", "probability": 0.6103515625}, {"start": 1184.94, "end": 1185.12, "word": " and", "probability": 0.69775390625}, {"start": 1185.12, "end": 1185.18, "word": " I", "probability": 0.37451171875}, {"start": 1185.18, "end": 1185.4, "word": " open", "probability": 0.69287109375}, {"start": 1185.4, "end": 1186.66, "word": " html", "probability": 0.743408203125}, {"start": 1186.66, "end": 1187.42, "word": " row", "probability": 0.1820068359375}, {"start": 1187.42, "end": 1188.48, "word": " and", "probability": 0.343505859375}, {"start": 1188.48, "end": 1188.66, "word": " then", "probability": 0.546875}, {"start": 1188.66, "end": 1188.8, "word": " I", "probability": 0.896484375}, {"start": 1188.8, "end": 1189.0, "word": " open", "probability": 0.82861328125}, {"start": 1189.0, "end": 1189.76, "word": " php", "probability": 0.7822265625}, {"start": 1189.76, "end": 1189.76, "word": " code", "probability": 0.8828125}, {"start": 1189.76, "end": 1189.92, "word": " and", "probability": 0.69384765625}, {"start": 1189.92, "end": 1189.94, "word": " I", "probability": 0.64892578125}, {"start": 1189.94, "end": 1190.06, "word": " say", "probability": 0.40087890625}, {"start": 1190.06, "end": 1190.5, "word": " equals", "probability": 0.1236572265625}, {"start": 1190.5, "end": 1192.22, "word": " student", "probability": 0.6435546875}, {"start": 1192.22, "end": 1193.06, "word": " name", "probability": 0.896484375}, {"start": 1193.06, "end": 1193.22, "word": " for", "probability": 0.279296875}, {"start": 1193.22, "end": 1193.44, "word": " example", "probability": 0.94775390625}, {"start": 1193.44, "end": 1193.94, "word": " or", "probability": 0.72216796875}, {"start": 1193.94, "end": 1194.52, "word": " at", "probability": 0.57666015625}, {"start": 1194.52, "end": 1195.64, "word": " whatever", "probability": 0.22119140625}, {"start": 1195.64, "end": 1196.32, "word": " and", "probability": 0.34130859375}, {"start": 1196.32, "end": 1196.72, "word": " I", "probability": 0.59619140625}, {"start": 1196.72, "end": 1197.02, "word": " close", "probability": 0.841796875}, {"start": 1197.02, "end": 1197.12, "word": " the", "probability": 0.7470703125}, {"start": 1197.12, "end": 1197.32, "word": " row", "probability": 0.83203125}, {"start": 1197.32, "end": 1198.5, "word": " and", "probability": 0.78759765625}, {"start": 1198.5, "end": 1198.66, "word": " what", "probability": 0.41015625}, {"start": 1198.66, "end": 1198.66, "word": " does", "probability": 0.75732421875}, {"start": 1198.66, "end": 1198.76, "word": " this", "probability": 0.673828125}, {"start": 1198.76, "end": 1199.2, "word": " work", "probability": 0.365478515625}, {"start": 1199.2, "end": 1199.9, "word": " for?", "probability": 0.689453125}, {"start": 1199.9, "end": 1200.04, "word": " for", "probability": 0.49267578125}, {"start": 1200.04, "end": 1200.22, "word": " him", "probability": 0.52734375}, {"start": 1200.22, "end": 1201.48, "word": " of", "probability": 0.257568359375}, {"start": 1201.48, "end": 1202.36, "word": " course", "probability": 0.87646484375}, {"start": 1202.36, "end": 1202.62, "word": " this", "probability": 0.82275390625}, {"start": 1202.62, "end": 1202.78, "word": " is", "probability": 0.8701171875}, {"start": 1202.78, "end": 1202.78, "word": " a", "probability": 0.2288818359375}, {"start": 1202.78, "end": 1203.02, "word": " backward", "probability": 0.64404296875}, {"start": 1203.02, "end": 1203.06, "word": " code", "probability": 0.8359375}], "temperature": 1.0}, {"id": 53, "seek": 122822, "start": 1205.06, "end": 1228.22, "text": " What do I do? I put the connection code on the database. I'm not making this up, it's not wrong, it's a description of the code. Okay? The code, the view, which is the HTML, with what? With the connection to the database and the query, everything is present where? In one page. And this is a bad design. Okay? This is a bad design.", "tokens": [708, 360, 286, 360, 30, 286, 829, 264, 4984, 3089, 322, 264, 8149, 13, 286, 478, 406, 1455, 341, 493, 11, 309, 311, 406, 2085, 11, 309, 311, 257, 3855, 295, 264, 3089, 13, 1033, 30, 440, 3089, 11, 264, 1910, 11, 597, 307, 264, 17995, 11, 365, 437, 30, 2022, 264, 4984, 281, 264, 8149, 293, 264, 14581, 11, 1203, 307, 1974, 689, 30, 682, 472, 3028, 13, 400, 341, 307, 257, 1578, 1715, 13, 1033, 30, 639, 307, 257, 1578, 1715, 13], "avg_logprob": -0.4419117576935712, "compression_ratio": 1.66, "no_speech_prob": 6.258487701416016e-06, "words": [{"start": 1205.06, "end": 1205.48, "word": " What", "probability": 0.11859130859375}, {"start": 1205.48, "end": 1205.82, "word": " do", "probability": 0.32373046875}, {"start": 1205.82, "end": 1205.82, "word": " I", "probability": 0.92431640625}, {"start": 1205.82, "end": 1206.0, "word": " do?", "probability": 0.9453125}, {"start": 1206.4, "end": 1206.82, "word": " I", "probability": 0.9580078125}, {"start": 1206.82, "end": 1207.1, "word": " put", "probability": 0.43408203125}, {"start": 1207.1, "end": 1208.16, "word": " the", "probability": 0.71533203125}, {"start": 1208.16, "end": 1208.8, "word": " connection", "probability": 0.6171875}, {"start": 1208.8, "end": 1208.98, "word": " code", "probability": 0.8173828125}, {"start": 1208.98, "end": 1209.08, "word": " on", "probability": 0.60986328125}, {"start": 1209.08, "end": 1209.16, "word": " the", "probability": 0.78515625}, {"start": 1209.16, "end": 1209.6, "word": " database.", "probability": 0.89208984375}, {"start": 1210.02, "end": 1210.44, "word": " I'm", "probability": 0.4937744140625}, {"start": 1210.44, "end": 1210.48, "word": " not", "probability": 0.89990234375}, {"start": 1210.48, "end": 1210.76, "word": " making", "probability": 0.12103271484375}, {"start": 1210.76, "end": 1210.86, "word": " this", "probability": 0.47021484375}, {"start": 1210.86, "end": 1210.86, "word": " up,", "probability": 0.54833984375}, {"start": 1210.92, "end": 1211.04, "word": " it's", "probability": 0.6826171875}, {"start": 1211.04, "end": 1211.48, "word": " not", "probability": 0.398193359375}, {"start": 1211.48, "end": 1211.66, "word": " wrong,", "probability": 0.77880859375}, {"start": 1211.7, "end": 1211.88, "word": " it's", "probability": 0.81396484375}, {"start": 1211.88, "end": 1212.0, "word": " a", "probability": 0.5439453125}, {"start": 1212.0, "end": 1212.16, "word": " description", "probability": 0.58154296875}, {"start": 1212.16, "end": 1212.28, "word": " of", "probability": 0.6845703125}, {"start": 1212.28, "end": 1212.38, "word": " the", "probability": 0.841796875}, {"start": 1212.38, "end": 1212.66, "word": " code.", "probability": 0.9150390625}, {"start": 1213.16, "end": 1213.4, "word": " Okay?", "probability": 0.18017578125}, {"start": 1213.98, "end": 1214.34, "word": " The", "probability": 0.375732421875}, {"start": 1214.34, "end": 1214.76, "word": " code,", "probability": 0.445556640625}, {"start": 1214.9, "end": 1215.06, "word": " the", "probability": 0.78955078125}, {"start": 1215.06, "end": 1215.38, "word": " view,", "probability": 0.70458984375}, {"start": 1215.8, "end": 1215.86, "word": " which", "probability": 0.65771484375}, {"start": 1215.86, "end": 1215.96, "word": " is", "probability": 0.92236328125}, {"start": 1215.96, "end": 1216.02, "word": " the", "probability": 0.7666015625}, {"start": 1216.02, "end": 1216.42, "word": " HTML,", "probability": 0.80029296875}, {"start": 1218.42, "end": 1219.0, "word": " with", "probability": 0.429443359375}, {"start": 1219.0, "end": 1219.3, "word": " what?", "probability": 0.5419921875}, {"start": 1219.36, "end": 1219.54, "word": " With", "probability": 0.8369140625}, {"start": 1219.54, "end": 1219.7, "word": " the", "probability": 0.8876953125}, {"start": 1219.7, "end": 1219.96, "word": " connection", "probability": 0.90234375}, {"start": 1219.96, "end": 1220.18, "word": " to", "probability": 0.57763671875}, {"start": 1220.18, "end": 1220.28, "word": " the", "probability": 0.89013671875}, {"start": 1220.28, "end": 1220.64, "word": " database", "probability": 0.935546875}, {"start": 1220.64, "end": 1220.76, "word": " and", "probability": 0.5380859375}, {"start": 1220.76, "end": 1220.86, "word": " the", "probability": 0.61083984375}, {"start": 1220.86, "end": 1221.1, "word": " query,", "probability": 0.94384765625}, {"start": 1221.22, "end": 1221.5, "word": " everything", "probability": 0.51123046875}, {"start": 1221.5, "end": 1221.74, "word": " is", "probability": 0.689453125}, {"start": 1221.74, "end": 1221.94, "word": " present", "probability": 0.230224609375}, {"start": 1221.94, "end": 1222.14, "word": " where?", "probability": 0.609375}, {"start": 1222.66, "end": 1223.08, "word": " In", "probability": 0.62890625}, {"start": 1223.08, "end": 1223.18, "word": " one", "probability": 0.814453125}, {"start": 1223.18, "end": 1223.36, "word": " page.", "probability": 0.84716796875}, {"start": 1224.36, "end": 1224.5, "word": " And", "probability": 0.70703125}, {"start": 1224.5, "end": 1224.66, "word": " this", "probability": 0.80810546875}, {"start": 1224.66, "end": 1224.96, "word": " is", "probability": 0.8427734375}, {"start": 1224.96, "end": 1225.12, "word": " a", "probability": 0.93896484375}, {"start": 1225.12, "end": 1225.3, "word": " bad", "probability": 0.8603515625}, {"start": 1225.3, "end": 1225.3, "word": " design.", "probability": 0.95703125}, {"start": 1226.8, "end": 1227.02, "word": " Okay?", "probability": 0.75830078125}, {"start": 1227.28, "end": 1227.5, "word": " This", "probability": 0.8505859375}, {"start": 1227.5, "end": 1227.62, "word": " is", "probability": 0.919921875}, {"start": 1227.62, "end": 1228.14, "word": " a", "probability": 0.97607421875}, {"start": 1228.14, "end": 1228.22, "word": " bad", "probability": 0.9091796875}, {"start": 1228.22, "end": 1228.22, "word": " design.", "probability": 0.96826171875}], "temperature": 1.0}, {"id": 54, "seek": 126033, "start": 1233.43, "end": 1260.33, "text": " Ok, what is a good design? A good design is that you separate it. Do you get it? You cannot put any code related to the database in the HTML. The HTML is only a presentation. Only what do you put? Ok? HTML code. You put raw. Ok? And you say in this cell, for example, Td, it will be presented with, for example, name.", "tokens": [3477, 11, 437, 307, 257, 665, 1715, 30, 316, 665, 1715, 307, 300, 291, 4994, 309, 13, 1144, 291, 483, 309, 30, 509, 2644, 829, 604, 3089, 4077, 281, 264, 8149, 294, 264, 17995, 13, 440, 17995, 307, 787, 257, 5860, 13, 5686, 437, 360, 291, 829, 30, 3477, 30, 17995, 3089, 13, 509, 829, 8936, 13, 3477, 30, 400, 291, 584, 294, 341, 2815, 11, 337, 1365, 11, 314, 67, 11, 309, 486, 312, 8212, 365, 11, 337, 1365, 11, 1315, 13], "avg_logprob": -0.5550595500639507, "compression_ratio": 1.5820895522388059, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 1233.43, "end": 1233.77, "word": " Ok,", "probability": 0.1964111328125}, {"start": 1234.21, "end": 1234.51, "word": " what", "probability": 0.6748046875}, {"start": 1234.51, "end": 1234.53, "word": " is", "probability": 0.76171875}, {"start": 1234.53, "end": 1234.63, "word": " a", "probability": 0.262451171875}, {"start": 1234.63, "end": 1234.63, "word": " good", "probability": 0.80029296875}, {"start": 1234.63, "end": 1234.85, "word": " design?", "probability": 0.85546875}, {"start": 1235.71, "end": 1236.01, "word": " A", "probability": 0.393798828125}, {"start": 1236.01, "end": 1236.01, "word": " good", "probability": 0.89404296875}, {"start": 1236.01, "end": 1236.31, "word": " design", "probability": 0.95654296875}, {"start": 1236.31, "end": 1236.79, "word": " is", "probability": 0.8408203125}, {"start": 1236.79, "end": 1236.81, "word": " that", "probability": 0.3447265625}, {"start": 1236.81, "end": 1236.95, "word": " you", "probability": 0.8603515625}, {"start": 1236.95, "end": 1237.25, "word": " separate", "probability": 0.64892578125}, {"start": 1237.25, "end": 1237.55, "word": " it.", "probability": 0.132568359375}, {"start": 1237.87, "end": 1238.03, "word": " Do", "probability": 0.2484130859375}, {"start": 1238.03, "end": 1238.03, "word": " you", "probability": 0.9697265625}, {"start": 1238.03, "end": 1238.21, "word": " get", "probability": 0.3564453125}, {"start": 1238.21, "end": 1238.45, "word": " it?", "probability": 0.88037109375}, {"start": 1238.91, "end": 1239.05, "word": " You", "probability": 0.400390625}, {"start": 1239.05, "end": 1239.47, "word": " cannot", "probability": 0.402587890625}, {"start": 1239.47, "end": 1240.09, "word": " put", "probability": 0.54541015625}, {"start": 1240.09, "end": 1241.21, "word": " any", "probability": 0.54052734375}, {"start": 1241.21, "end": 1241.51, "word": " code", "probability": 0.673828125}, {"start": 1241.51, "end": 1241.73, "word": " related", "probability": 0.3759765625}, {"start": 1241.73, "end": 1241.99, "word": " to", "probability": 0.9404296875}, {"start": 1241.99, "end": 1242.09, "word": " the", "probability": 0.4951171875}, {"start": 1242.09, "end": 1242.47, "word": " database", "probability": 0.873046875}, {"start": 1242.47, "end": 1242.47, "word": " in", "probability": 0.716796875}, {"start": 1242.47, "end": 1242.47, "word": " the", "probability": 0.5576171875}, {"start": 1242.47, "end": 1242.47, "word": " HTML.", "probability": 0.87158203125}, {"start": 1242.77, "end": 1243.31, "word": " The", "probability": 0.515625}, {"start": 1243.31, "end": 1243.67, "word": " HTML", "probability": 0.921875}, {"start": 1243.67, "end": 1243.93, "word": " is", "probability": 0.80126953125}, {"start": 1243.93, "end": 1244.15, "word": " only", "probability": 0.4853515625}, {"start": 1244.15, "end": 1244.27, "word": " a", "probability": 0.394287109375}, {"start": 1244.27, "end": 1244.47, "word": " presentation.", "probability": 0.27294921875}, {"start": 1244.83, "end": 1245.11, "word": " Only", "probability": 0.4130859375}, {"start": 1245.11, "end": 1245.29, "word": " what", "probability": 0.2138671875}, {"start": 1245.29, "end": 1245.29, "word": " do", "probability": 0.53515625}, {"start": 1245.29, "end": 1245.33, "word": " you", "probability": 0.9560546875}, {"start": 1245.33, "end": 1245.57, "word": " put?", "probability": 0.84033203125}, {"start": 1249.81, "end": 1250.35, "word": " Ok?", "probability": 0.2418212890625}, {"start": 1250.81, "end": 1251.31, "word": " HTML", "probability": 0.61572265625}, {"start": 1251.31, "end": 1251.55, "word": " code.", "probability": 0.9228515625}, {"start": 1251.89, "end": 1251.97, "word": " You", "probability": 0.6953125}, {"start": 1251.97, "end": 1252.29, "word": " put", "probability": 0.79833984375}, {"start": 1252.29, "end": 1252.61, "word": " raw.", "probability": 0.264892578125}, {"start": 1253.63, "end": 1254.03, "word": " Ok?", "probability": 0.72509765625}, {"start": 1254.13, "end": 1254.23, "word": " And", "probability": 0.7705078125}, {"start": 1254.23, "end": 1254.37, "word": " you", "probability": 0.83984375}, {"start": 1254.37, "end": 1254.61, "word": " say", "probability": 0.8681640625}, {"start": 1254.61, "end": 1254.83, "word": " in", "probability": 0.59326171875}, {"start": 1254.83, "end": 1255.43, "word": " this", "probability": 0.796875}, {"start": 1255.43, "end": 1255.85, "word": " cell,", "probability": 0.79541015625}, {"start": 1256.03, "end": 1256.17, "word": " for", "probability": 0.771484375}, {"start": 1256.17, "end": 1256.25, "word": " example,", "probability": 0.94140625}, {"start": 1256.33, "end": 1256.81, "word": " Td,", "probability": 0.4954833984375}, {"start": 1257.31, "end": 1257.33, "word": " it", "probability": 0.385009765625}, {"start": 1257.33, "end": 1257.43, "word": " will", "probability": 0.771484375}, {"start": 1257.43, "end": 1257.53, "word": " be", "probability": 0.60546875}, {"start": 1257.53, "end": 1257.73, "word": " presented", "probability": 0.495849609375}, {"start": 1257.73, "end": 1257.99, "word": " with,", "probability": 0.23291015625}, {"start": 1258.17, "end": 1258.17, "word": " for", "probability": 0.8583984375}, {"start": 1258.17, "end": 1258.49, "word": " example,", "probability": 0.96875}, {"start": 1259.13, "end": 1260.33, "word": " name.", "probability": 0.359375}], "temperature": 1.0}, {"id": 55, "seek": 129058, "start": 1261.61, "end": 1290.59, "text": " The name is a variable that will come from the server So this only exists in HTML, JavaScript and CSS Okay, on the other hand, where does the database work? In other classes that exist, you focus on the database For example, you create a specific class that says student", "tokens": [440, 1315, 307, 257, 7006, 300, 486, 808, 490, 264, 7154, 407, 341, 787, 8198, 294, 17995, 11, 15778, 293, 24387, 1033, 11, 322, 264, 661, 1011, 11, 689, 775, 264, 8149, 589, 30, 682, 661, 5359, 300, 2514, 11, 291, 1879, 322, 264, 8149, 1171, 1365, 11, 291, 1884, 257, 2685, 1508, 300, 1619, 3107], "avg_logprob": -0.6178728070175439, "compression_ratio": 1.4808743169398908, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 1261.61, "end": 1262.15, "word": " The", "probability": 0.10015869140625}, {"start": 1262.15, "end": 1262.35, "word": " name", "probability": 0.8251953125}, {"start": 1262.35, "end": 1262.49, "word": " is", "probability": 0.81787109375}, {"start": 1262.49, "end": 1262.81, "word": " a", "probability": 0.50146484375}, {"start": 1262.81, "end": 1263.13, "word": " variable", "probability": 0.78125}, {"start": 1263.13, "end": 1263.27, "word": " that", "probability": 0.4775390625}, {"start": 1263.27, "end": 1263.35, "word": " will", "probability": 0.55517578125}, {"start": 1263.35, "end": 1263.45, "word": " come", "probability": 0.36181640625}, {"start": 1263.45, "end": 1263.83, "word": " from", "probability": 0.62646484375}, {"start": 1263.83, "end": 1265.05, "word": " the", "probability": 0.5458984375}, {"start": 1265.05, "end": 1265.35, "word": " server", "probability": 0.88525390625}, {"start": 1265.35, "end": 1266.73, "word": " So", "probability": 0.2347412109375}, {"start": 1266.73, "end": 1268.09, "word": " this", "probability": 0.37841796875}, {"start": 1268.09, "end": 1268.39, "word": " only", "probability": 0.2440185546875}, {"start": 1268.39, "end": 1269.05, "word": " exists", "probability": 0.463134765625}, {"start": 1269.05, "end": 1269.35, "word": " in", "probability": 0.80712890625}, {"start": 1269.35, "end": 1270.21, "word": " HTML,", "probability": 0.86962890625}, {"start": 1270.95, "end": 1271.53, "word": " JavaScript", "probability": 0.583984375}, {"start": 1271.53, "end": 1273.01, "word": " and", "probability": 0.64990234375}, {"start": 1273.01, "end": 1273.41, "word": " CSS", "probability": 0.9248046875}, {"start": 1273.41, "end": 1274.43, "word": " Okay,", "probability": 0.136962890625}, {"start": 1275.57, "end": 1275.81, "word": " on", "probability": 0.35498046875}, {"start": 1275.81, "end": 1275.89, "word": " the", "probability": 0.9072265625}, {"start": 1275.89, "end": 1276.51, "word": " other", "probability": 0.8701171875}, {"start": 1276.51, "end": 1276.61, "word": " hand,", "probability": 0.5107421875}, {"start": 1277.15, "end": 1277.55, "word": " where", "probability": 0.50537109375}, {"start": 1277.55, "end": 1277.81, "word": " does", "probability": 0.36962890625}, {"start": 1277.81, "end": 1278.39, "word": " the", "probability": 0.615234375}, {"start": 1278.39, "end": 1278.79, "word": " database", "probability": 0.71044921875}, {"start": 1278.79, "end": 1278.79, "word": " work?", "probability": 0.70361328125}, {"start": 1280.27, "end": 1281.07, "word": " In", "probability": 0.240478515625}, {"start": 1281.07, "end": 1281.51, "word": " other", "probability": 0.689453125}, {"start": 1281.51, "end": 1283.03, "word": " classes", "probability": 0.89404296875}, {"start": 1283.03, "end": 1283.37, "word": " that", "probability": 0.2166748046875}, {"start": 1283.37, "end": 1283.65, "word": " exist,", "probability": 0.4443359375}, {"start": 1284.19, "end": 1285.03, "word": " you", "probability": 0.6337890625}, {"start": 1285.03, "end": 1286.25, "word": " focus", "probability": 0.68798828125}, {"start": 1286.25, "end": 1286.47, "word": " on", "probability": 0.88671875}, {"start": 1286.47, "end": 1286.59, "word": " the", "probability": 0.8369140625}, {"start": 1286.59, "end": 1287.01, "word": " database", "probability": 0.91845703125}, {"start": 1287.01, "end": 1287.35, "word": " For", "probability": 0.316650390625}, {"start": 1287.35, "end": 1287.91, "word": " example,", "probability": 0.92529296875}, {"start": 1287.93, "end": 1287.93, "word": " you", "probability": 0.59619140625}, {"start": 1287.93, "end": 1287.93, "word": " create", "probability": 0.377685546875}, {"start": 1287.93, "end": 1288.07, "word": " a", "probability": 0.97216796875}, {"start": 1288.07, "end": 1288.85, "word": " specific", "probability": 0.380126953125}, {"start": 1288.85, "end": 1288.97, "word": " class", "probability": 0.9677734375}, {"start": 1288.97, "end": 1289.45, "word": " that", "probability": 0.341796875}, {"start": 1289.45, "end": 1289.65, "word": " says", "probability": 0.509765625}, {"start": 1289.65, "end": 1290.59, "word": " student", "probability": 0.58447265625}], "temperature": 1.0}, {"id": 56, "seek": 132143, "start": 1294.91, "end": 1321.43, "text": " In the studentDB, you put methods For example, what do you need from the database? I need, for example, getStudent By id So a method that gives it an id returns an object of the student type It needs a method called getAllStudents Which makes you select a star and returns a list of what?", "tokens": [682, 264, 3107, 27735, 11, 291, 829, 7150, 1171, 1365, 11, 437, 360, 291, 643, 490, 264, 8149, 30, 286, 643, 11, 337, 1365, 11, 483, 40762, 3146, 4496, 407, 257, 3170, 300, 2709, 309, 364, 4496, 11247, 364, 2657, 295, 264, 3107, 2010, 467, 2203, 257, 3170, 1219, 483, 7868, 42665, 791, 3013, 1669, 291, 3048, 257, 3543, 293, 11247, 257, 1329, 295, 437, 30], "avg_logprob": -0.4930037455772286, "compression_ratio": 1.6235955056179776, "no_speech_prob": 7.867813110351562e-06, "words": [{"start": 1294.91, "end": 1295.43, "word": " In", "probability": 0.167236328125}, {"start": 1295.43, "end": 1295.95, "word": " the", "probability": 0.390869140625}, {"start": 1295.95, "end": 1296.57, "word": " studentDB,", "probability": 0.4725341796875}, {"start": 1296.83, "end": 1297.01, "word": " you", "probability": 0.61962890625}, {"start": 1297.01, "end": 1297.15, "word": " put", "probability": 0.340576171875}, {"start": 1297.15, "end": 1297.67, "word": " methods", "probability": 0.8271484375}, {"start": 1297.67, "end": 1298.39, "word": " For", "probability": 0.328857421875}, {"start": 1298.39, "end": 1298.51, "word": " example,", "probability": 0.9072265625}, {"start": 1298.59, "end": 1298.99, "word": " what", "probability": 0.74658203125}, {"start": 1298.99, "end": 1298.99, "word": " do", "probability": 0.53662109375}, {"start": 1298.99, "end": 1299.05, "word": " you", "probability": 0.9326171875}, {"start": 1299.05, "end": 1299.59, "word": " need", "probability": 0.8955078125}, {"start": 1299.59, "end": 1300.39, "word": " from", "probability": 0.66552734375}, {"start": 1300.39, "end": 1300.57, "word": " the", "probability": 0.78759765625}, {"start": 1300.57, "end": 1301.03, "word": " database?", "probability": 0.91796875}, {"start": 1301.29, "end": 1301.81, "word": " I", "probability": 0.67333984375}, {"start": 1301.81, "end": 1302.23, "word": " need,", "probability": 0.91748046875}, {"start": 1302.29, "end": 1302.43, "word": " for", "probability": 0.9130859375}, {"start": 1302.43, "end": 1302.59, "word": " example,", "probability": 0.95654296875}, {"start": 1302.85, "end": 1303.59, "word": " getStudent", "probability": 0.5576171875}, {"start": 1303.59, "end": 1305.99, "word": " By", "probability": 0.356201171875}, {"start": 1305.99, "end": 1306.39, "word": " id", "probability": 0.4169921875}, {"start": 1306.39, "end": 1307.47, "word": " So", "probability": 0.281982421875}, {"start": 1307.47, "end": 1307.55, "word": " a", "probability": 0.251220703125}, {"start": 1307.55, "end": 1307.77, "word": " method", "probability": 0.95751953125}, {"start": 1307.77, "end": 1307.91, "word": " that", "probability": 0.313720703125}, {"start": 1307.91, "end": 1308.05, "word": " gives", "probability": 0.373779296875}, {"start": 1308.05, "end": 1308.23, "word": " it", "probability": 0.73095703125}, {"start": 1308.23, "end": 1308.31, "word": " an", "probability": 0.6455078125}, {"start": 1308.31, "end": 1308.61, "word": " id", "probability": 0.91357421875}, {"start": 1308.61, "end": 1309.09, "word": " returns", "probability": 0.395751953125}, {"start": 1309.09, "end": 1309.37, "word": " an", "probability": 0.46533203125}, {"start": 1309.37, "end": 1309.61, "word": " object", "probability": 0.96533203125}, {"start": 1309.61, "end": 1309.71, "word": " of", "probability": 0.595703125}, {"start": 1309.71, "end": 1310.69, "word": " the", "probability": 0.63818359375}, {"start": 1310.69, "end": 1311.19, "word": " student", "probability": 0.448486328125}, {"start": 1311.19, "end": 1311.33, "word": " type", "probability": 0.56494140625}, {"start": 1311.33, "end": 1311.51, "word": " It", "probability": 0.322509765625}, {"start": 1311.51, "end": 1311.85, "word": " needs", "probability": 0.78271484375}, {"start": 1311.85, "end": 1311.99, "word": " a", "probability": 0.8173828125}, {"start": 1311.99, "end": 1312.25, "word": " method", "probability": 0.966796875}, {"start": 1312.25, "end": 1312.61, "word": " called", "probability": 0.68505859375}, {"start": 1312.61, "end": 1315.67, "word": " getAllStudents", "probability": 0.7530517578125}, {"start": 1315.67, "end": 1317.07, "word": " Which", "probability": 0.396728515625}, {"start": 1317.07, "end": 1317.35, "word": " makes", "probability": 0.46142578125}, {"start": 1317.35, "end": 1317.59, "word": " you", "probability": 0.78466796875}, {"start": 1317.59, "end": 1317.85, "word": " select", "probability": 0.82177734375}, {"start": 1317.85, "end": 1318.41, "word": " a", "probability": 0.91357421875}, {"start": 1318.41, "end": 1318.41, "word": " star", "probability": 0.89697265625}, {"start": 1318.41, "end": 1319.43, "word": " and", "probability": 0.4619140625}, {"start": 1319.43, "end": 1319.69, "word": " returns", "probability": 0.8388671875}, {"start": 1319.69, "end": 1320.69, "word": " a", "probability": 0.68115234375}, {"start": 1320.69, "end": 1320.95, "word": " list", "probability": 0.9306640625}, {"start": 1320.95, "end": 1321.13, "word": " of", "probability": 0.95458984375}, {"start": 1321.13, "end": 1321.43, "word": " what?", "probability": 0.5869140625}], "temperature": 1.0}, {"id": 57, "seek": 135115, "start": 1323.17, "end": 1351.15, "text": " I need a method called update student and I give it an object from the student to modify it in the database these are the methods that I need and then here it makes an implement for these methods that here it says select from this and that where here select all from here update all right it puts all the work of the database the database here now actually", "tokens": [286, 643, 257, 3170, 1219, 5623, 3107, 293, 286, 976, 309, 364, 2657, 490, 264, 3107, 281, 16927, 309, 294, 264, 8149, 613, 366, 264, 7150, 300, 286, 643, 293, 550, 510, 309, 1669, 364, 4445, 337, 613, 7150, 300, 510, 309, 1619, 3048, 490, 341, 293, 300, 689, 510, 3048, 439, 490, 510, 5623, 439, 558, 309, 8137, 439, 264, 589, 295, 264, 8149, 264, 8149, 510, 586, 767], "avg_logprob": -0.544014077791026, "compression_ratio": 1.9833333333333334, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1323.17, "end": 1323.39, "word": " I", "probability": 0.6044921875}, {"start": 1323.39, "end": 1323.67, "word": " need", "probability": 0.83544921875}, {"start": 1323.67, "end": 1323.81, "word": " a", "probability": 0.326416015625}, {"start": 1323.81, "end": 1323.95, "word": " method", "probability": 0.88232421875}, {"start": 1323.95, "end": 1324.29, "word": " called", "probability": 0.393310546875}, {"start": 1324.29, "end": 1324.85, "word": " update", "probability": 0.5869140625}, {"start": 1324.85, "end": 1326.55, "word": " student", "probability": 0.3427734375}, {"start": 1326.55, "end": 1328.13, "word": " and", "probability": 0.2578125}, {"start": 1328.13, "end": 1328.21, "word": " I", "probability": 0.6865234375}, {"start": 1328.21, "end": 1328.39, "word": " give", "probability": 0.490966796875}, {"start": 1328.39, "end": 1328.69, "word": " it", "probability": 0.79052734375}, {"start": 1328.69, "end": 1328.83, "word": " an", "probability": 0.556640625}, {"start": 1328.83, "end": 1329.07, "word": " object", "probability": 0.966796875}, {"start": 1329.07, "end": 1329.23, "word": " from", "probability": 0.50146484375}, {"start": 1329.23, "end": 1329.33, "word": " the", "probability": 0.3291015625}, {"start": 1329.33, "end": 1329.49, "word": " student", "probability": 0.89013671875}, {"start": 1329.49, "end": 1329.71, "word": " to", "probability": 0.61865234375}, {"start": 1329.71, "end": 1330.11, "word": " modify", "probability": 0.32666015625}, {"start": 1330.11, "end": 1330.41, "word": " it", "probability": 0.2393798828125}, {"start": 1330.41, "end": 1331.37, "word": " in", "probability": 0.66650390625}, {"start": 1331.37, "end": 1331.45, "word": " the", "probability": 0.79833984375}, {"start": 1331.45, "end": 1331.75, "word": " database", "probability": 0.9150390625}, {"start": 1331.75, "end": 1332.29, "word": " these", "probability": 0.27734375}, {"start": 1332.29, "end": 1332.39, "word": " are", "probability": 0.8896484375}, {"start": 1332.39, "end": 1332.43, "word": " the", "probability": 0.88623046875}, {"start": 1332.43, "end": 1332.69, "word": " methods", "probability": 0.875}, {"start": 1332.69, "end": 1332.81, "word": " that", "probability": 0.389892578125}, {"start": 1332.81, "end": 1332.89, "word": " I", "probability": 0.95849609375}, {"start": 1332.89, "end": 1333.21, "word": " need", "probability": 0.90576171875}, {"start": 1333.21, "end": 1334.57, "word": " and", "probability": 0.52685546875}, {"start": 1334.57, "end": 1334.81, "word": " then", "probability": 0.5771484375}, {"start": 1334.81, "end": 1335.03, "word": " here", "probability": 0.64208984375}, {"start": 1335.03, "end": 1335.17, "word": " it", "probability": 0.55224609375}, {"start": 1335.17, "end": 1335.35, "word": " makes", "probability": 0.281982421875}, {"start": 1335.35, "end": 1335.49, "word": " an", "probability": 0.48681640625}, {"start": 1335.49, "end": 1335.81, "word": " implement", "probability": 0.7939453125}, {"start": 1335.81, "end": 1336.07, "word": " for", "probability": 0.6328125}, {"start": 1336.07, "end": 1336.15, "word": " these", "probability": 0.75537109375}, {"start": 1336.15, "end": 1336.49, "word": " methods", "probability": 0.93408203125}, {"start": 1336.49, "end": 1338.23, "word": " that", "probability": 0.28369140625}, {"start": 1338.23, "end": 1338.41, "word": " here", "probability": 0.69580078125}, {"start": 1338.41, "end": 1339.23, "word": " it", "probability": 0.48486328125}, {"start": 1339.23, "end": 1339.49, "word": " says", "probability": 0.67138671875}, {"start": 1339.49, "end": 1340.05, "word": " select", "probability": 0.77392578125}, {"start": 1340.05, "end": 1340.49, "word": " from", "probability": 0.8984375}, {"start": 1340.49, "end": 1340.79, "word": " this", "probability": 0.1982421875}, {"start": 1340.79, "end": 1340.91, "word": " and", "probability": 0.467041015625}, {"start": 1340.91, "end": 1341.07, "word": " that", "probability": 0.5263671875}, {"start": 1341.07, "end": 1341.45, "word": " where", "probability": 0.464111328125}, {"start": 1341.45, "end": 1342.29, "word": " here", "probability": 0.6044921875}, {"start": 1342.29, "end": 1342.63, "word": " select", "probability": 0.89111328125}, {"start": 1342.63, "end": 1342.97, "word": " all", "probability": 0.92724609375}, {"start": 1342.97, "end": 1343.41, "word": " from", "probability": 0.859375}, {"start": 1343.41, "end": 1344.19, "word": " here", "probability": 0.69873046875}, {"start": 1344.19, "end": 1345.33, "word": " update", "probability": 0.82421875}, {"start": 1345.33, "end": 1346.23, "word": " all", "probability": 0.1265869140625}, {"start": 1346.23, "end": 1346.23, "word": " right", "probability": 0.80517578125}, {"start": 1346.23, "end": 1346.65, "word": " it", "probability": 0.322998046875}, {"start": 1346.65, "end": 1346.91, "word": " puts", "probability": 0.68310546875}, {"start": 1346.91, "end": 1347.13, "word": " all", "probability": 0.56201171875}, {"start": 1347.13, "end": 1347.19, "word": " the", "probability": 0.5380859375}, {"start": 1347.19, "end": 1347.33, "word": " work", "probability": 0.54638671875}, {"start": 1347.33, "end": 1347.43, "word": " of", "probability": 0.71044921875}, {"start": 1347.43, "end": 1347.53, "word": " the", "probability": 0.84228515625}, {"start": 1347.53, "end": 1348.01, "word": " database", "probability": 0.95947265625}, {"start": 1348.01, "end": 1348.67, "word": " the", "probability": 0.1690673828125}, {"start": 1348.67, "end": 1348.99, "word": " database", "probability": 0.93603515625}, {"start": 1348.99, "end": 1349.35, "word": " here", "probability": 0.55078125}, {"start": 1349.35, "end": 1350.77, "word": " now", "probability": 0.77783203125}, {"start": 1350.77, "end": 1351.15, "word": " actually", "probability": 0.51123046875}], "temperature": 1.0}, {"id": 58, "seek": 137741, "start": 1352.23, "end": 1377.41, "text": " You separated all the interaction with the database in modules. It can be more than one class. If you have more than one table, you will have more than one class like this. Now, what do we do? I send a request. I, as a user, asked for a page to show the student's data. I made a request. The page has a URL.", "tokens": [509, 12005, 439, 264, 9285, 365, 264, 8149, 294, 16679, 13, 467, 393, 312, 544, 813, 472, 1508, 13, 759, 291, 362, 544, 813, 472, 3199, 11, 291, 486, 362, 544, 813, 472, 1508, 411, 341, 13, 823, 11, 437, 360, 321, 360, 30, 286, 2845, 257, 5308, 13, 286, 11, 382, 257, 4195, 11, 2351, 337, 257, 3028, 281, 855, 264, 3107, 311, 1412, 13, 286, 1027, 257, 5308, 13, 440, 3028, 575, 257, 12905, 13], "avg_logprob": -0.5012019368318411, "compression_ratio": 1.612565445026178, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1352.23, "end": 1352.43, "word": " You", "probability": 0.2392578125}, {"start": 1352.43, "end": 1352.73, "word": " separated", "probability": 0.560546875}, {"start": 1352.73, "end": 1353.25, "word": " all", "probability": 0.57177734375}, {"start": 1353.25, "end": 1353.37, "word": " the", "probability": 0.354736328125}, {"start": 1353.37, "end": 1353.55, "word": " interaction", "probability": 0.1461181640625}, {"start": 1353.55, "end": 1353.71, "word": " with", "probability": 0.74462890625}, {"start": 1353.71, "end": 1353.85, "word": " the", "probability": 0.59423828125}, {"start": 1353.85, "end": 1354.31, "word": " database", "probability": 0.8779296875}, {"start": 1354.31, "end": 1354.95, "word": " in", "probability": 0.3984375}, {"start": 1354.95, "end": 1355.35, "word": " modules.", "probability": 0.7080078125}, {"start": 1355.61, "end": 1355.69, "word": " It", "probability": 0.6533203125}, {"start": 1355.69, "end": 1355.79, "word": " can", "probability": 0.465576171875}, {"start": 1355.79, "end": 1355.99, "word": " be", "probability": 0.85693359375}, {"start": 1355.99, "end": 1356.19, "word": " more", "probability": 0.8759765625}, {"start": 1356.19, "end": 1356.33, "word": " than", "probability": 0.9287109375}, {"start": 1356.33, "end": 1356.45, "word": " one", "probability": 0.49462890625}, {"start": 1356.45, "end": 1356.69, "word": " class.", "probability": 0.83251953125}, {"start": 1356.77, "end": 1356.91, "word": " If", "probability": 0.5556640625}, {"start": 1356.91, "end": 1357.13, "word": " you", "probability": 0.943359375}, {"start": 1357.13, "end": 1357.31, "word": " have", "probability": 0.90283203125}, {"start": 1357.31, "end": 1357.57, "word": " more", "probability": 0.8671875}, {"start": 1357.57, "end": 1357.73, "word": " than", "probability": 0.90673828125}, {"start": 1357.73, "end": 1357.79, "word": " one", "probability": 0.88916015625}, {"start": 1357.79, "end": 1358.13, "word": " table,", "probability": 0.865234375}, {"start": 1358.75, "end": 1358.83, "word": " you", "probability": 0.86328125}, {"start": 1358.83, "end": 1358.93, "word": " will", "probability": 0.479736328125}, {"start": 1358.93, "end": 1359.19, "word": " have", "probability": 0.1805419921875}, {"start": 1359.19, "end": 1359.45, "word": " more", "probability": 0.84619140625}, {"start": 1359.45, "end": 1359.63, "word": " than", "probability": 0.7431640625}, {"start": 1359.63, "end": 1360.37, "word": " one", "probability": 0.87158203125}, {"start": 1360.37, "end": 1360.69, "word": " class", "probability": 0.8076171875}, {"start": 1360.69, "end": 1360.77, "word": " like", "probability": 0.4130859375}, {"start": 1360.77, "end": 1361.11, "word": " this.", "probability": 0.525390625}, {"start": 1362.83, "end": 1363.35, "word": " Now,", "probability": 0.181884765625}, {"start": 1363.83, "end": 1364.25, "word": " what", "probability": 0.5849609375}, {"start": 1364.25, "end": 1364.27, "word": " do", "probability": 0.321044921875}, {"start": 1364.27, "end": 1364.71, "word": " we", "probability": 0.849609375}, {"start": 1364.71, "end": 1365.27, "word": " do?", "probability": 0.44970703125}, {"start": 1365.63, "end": 1365.91, "word": " I", "probability": 0.91455078125}, {"start": 1365.91, "end": 1366.09, "word": " send", "probability": 0.556640625}, {"start": 1366.09, "end": 1366.25, "word": " a", "probability": 0.81640625}, {"start": 1366.25, "end": 1366.59, "word": " request.", "probability": 0.9521484375}, {"start": 1367.57, "end": 1367.77, "word": " I,", "probability": 0.68701171875}, {"start": 1367.81, "end": 1368.09, "word": " as", "probability": 0.91455078125}, {"start": 1368.09, "end": 1368.13, "word": " a", "probability": 0.89111328125}, {"start": 1368.13, "end": 1368.47, "word": " user,", "probability": 0.93896484375}, {"start": 1371.07, "end": 1371.85, "word": " asked", "probability": 0.2132568359375}, {"start": 1371.85, "end": 1372.15, "word": " for", "probability": 0.58837890625}, {"start": 1372.15, "end": 1372.45, "word": " a", "probability": 0.90478515625}, {"start": 1372.45, "end": 1372.45, "word": " page", "probability": 0.8271484375}, {"start": 1372.45, "end": 1372.77, "word": " to", "probability": 0.59228515625}, {"start": 1372.77, "end": 1372.97, "word": " show", "probability": 0.4345703125}, {"start": 1372.97, "end": 1373.11, "word": " the", "probability": 0.376220703125}, {"start": 1373.11, "end": 1373.75, "word": " student's", "probability": 0.568603515625}, {"start": 1373.75, "end": 1373.75, "word": " data.", "probability": 0.68603515625}, {"start": 1375.07, "end": 1375.47, "word": " I", "probability": 0.273193359375}, {"start": 1375.47, "end": 1375.73, "word": " made", "probability": 0.486572265625}, {"start": 1375.73, "end": 1375.91, "word": " a", "probability": 0.9228515625}, {"start": 1375.91, "end": 1376.17, "word": " request.", "probability": 0.97119140625}, {"start": 1376.31, "end": 1376.43, "word": " The", "probability": 0.60791015625}, {"start": 1376.43, "end": 1376.69, "word": " page", "probability": 0.90185546875}, {"start": 1376.69, "end": 1376.95, "word": " has", "probability": 0.87060546875}, {"start": 1376.95, "end": 1377.07, "word": " a", "probability": 0.90625}, {"start": 1377.07, "end": 1377.41, "word": " URL.", "probability": 0.63427734375}], "temperature": 1.0}, {"id": 59, "seek": 140357, "start": 1379.73, "end": 1403.57, "text": " Now, this URL, we need something to connect the two together. Who is this thing? The controller. The controller in the web, in the web specifically, is connected by a link. Okay? That is, each controller is connected by a URL. Those who work in Laravel understand what I'm talking about. Okay?", "tokens": [823, 11, 341, 12905, 11, 321, 643, 746, 281, 1745, 264, 732, 1214, 13, 2102, 307, 341, 551, 30, 440, 10561, 13, 440, 10561, 294, 264, 3670, 11, 294, 264, 3670, 4682, 11, 307, 4582, 538, 257, 2113, 13, 1033, 30, 663, 307, 11, 1184, 10561, 307, 4582, 538, 257, 12905, 13, 3950, 567, 589, 294, 33935, 779, 1223, 437, 286, 478, 1417, 466, 13, 1033, 30], "avg_logprob": -0.5298713401836508, "compression_ratio": 1.6333333333333333, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 1379.73, "end": 1380.13, "word": " Now,", "probability": 0.18505859375}, {"start": 1380.29, "end": 1380.39, "word": " this", "probability": 0.477294921875}, {"start": 1380.39, "end": 1380.79, "word": " URL,", "probability": 0.7470703125}, {"start": 1381.35, "end": 1381.77, "word": " we", "probability": 0.8154296875}, {"start": 1381.77, "end": 1381.95, "word": " need", "probability": 0.5517578125}, {"start": 1381.95, "end": 1382.39, "word": " something", "probability": 0.328125}, {"start": 1382.39, "end": 1383.11, "word": " to", "probability": 0.5517578125}, {"start": 1383.11, "end": 1383.23, "word": " connect", "probability": 0.65771484375}, {"start": 1383.23, "end": 1383.43, "word": " the", "probability": 0.27001953125}, {"start": 1383.43, "end": 1383.57, "word": " two", "probability": 0.87451171875}, {"start": 1383.57, "end": 1384.35, "word": " together.", "probability": 0.60400390625}, {"start": 1385.75, "end": 1386.19, "word": " Who", "probability": 0.283935546875}, {"start": 1386.19, "end": 1386.37, "word": " is", "probability": 0.388427734375}, {"start": 1386.37, "end": 1386.43, "word": " this", "probability": 0.6220703125}, {"start": 1386.43, "end": 1386.61, "word": " thing?", "probability": 0.7587890625}, {"start": 1386.99, "end": 1387.19, "word": " The", "probability": 0.7578125}, {"start": 1387.19, "end": 1387.65, "word": " controller.", "probability": 0.51953125}, {"start": 1391.09, "end": 1391.53, "word": " The", "probability": 0.81494140625}, {"start": 1391.53, "end": 1391.93, "word": " controller", "probability": 0.72119140625}, {"start": 1391.93, "end": 1392.15, "word": " in", "probability": 0.4833984375}, {"start": 1392.15, "end": 1392.29, "word": " the", "probability": 0.82958984375}, {"start": 1392.29, "end": 1392.45, "word": " web,", "probability": 0.84619140625}, {"start": 1393.09, "end": 1393.27, "word": " in", "probability": 0.517578125}, {"start": 1393.27, "end": 1393.37, "word": " the", "probability": 0.7119140625}, {"start": 1393.37, "end": 1393.55, "word": " web", "probability": 0.9462890625}, {"start": 1393.55, "end": 1394.05, "word": " specifically,", "probability": 0.71728515625}, {"start": 1395.13, "end": 1395.33, "word": " is", "probability": 0.77734375}, {"start": 1395.33, "end": 1395.49, "word": " connected", "probability": 0.5458984375}, {"start": 1395.49, "end": 1395.67, "word": " by", "probability": 0.55078125}, {"start": 1395.67, "end": 1395.75, "word": " a", "probability": 0.8212890625}, {"start": 1395.75, "end": 1395.97, "word": " link.", "probability": 0.85302734375}, {"start": 1396.97, "end": 1397.23, "word": " Okay?", "probability": 0.25244140625}, {"start": 1397.55, "end": 1397.77, "word": " That", "probability": 0.2841796875}, {"start": 1397.77, "end": 1397.77, "word": " is,", "probability": 0.36328125}, {"start": 1397.83, "end": 1397.99, "word": " each", "probability": 0.587890625}, {"start": 1397.99, "end": 1398.55, "word": " controller", "probability": 0.78759765625}, {"start": 1398.55, "end": 1399.53, "word": " is", "probability": 0.89697265625}, {"start": 1399.53, "end": 1399.75, "word": " connected", "probability": 0.7421875}, {"start": 1399.75, "end": 1399.91, "word": " by", "probability": 0.8271484375}, {"start": 1399.91, "end": 1399.91, "word": " a", "probability": 0.779296875}, {"start": 1399.91, "end": 1400.33, "word": " URL.", "probability": 0.94091796875}, {"start": 1401.25, "end": 1401.37, "word": " Those", "probability": 0.2978515625}, {"start": 1401.37, "end": 1401.43, "word": " who", "probability": 0.759765625}, {"start": 1401.43, "end": 1401.59, "word": " work", "probability": 0.8408203125}, {"start": 1401.59, "end": 1401.73, "word": " in", "probability": 0.490966796875}, {"start": 1401.73, "end": 1401.95, "word": " Laravel", "probability": 0.5849609375}, {"start": 1401.95, "end": 1402.23, "word": " understand", "probability": 0.33984375}, {"start": 1402.23, "end": 1402.45, "word": " what", "probability": 0.90185546875}, {"start": 1402.45, "end": 1402.61, "word": " I'm", "probability": 0.726806640625}, {"start": 1402.61, "end": 1402.77, "word": " talking", "probability": 0.411376953125}, {"start": 1402.77, "end": 1402.79, "word": " about.", "probability": 0.8916015625}, {"start": 1403.13, "end": 1403.57, "word": " Okay?", "probability": 0.69287109375}], "temperature": 1.0}, {"id": 60, "seek": 143215, "start": 1405.33, "end": 1432.15, "text": " Actually, I put the link and this link opens the controller for me. The controller and its function, okay? As we said, it is linked to a URL. I go to the controller, I communicate with the model, okay? I say, model, give me all the students you have, for example. I go and it says get all students. And it brings the data back to whom? To the controller. The controller's gate is also programmed.", "tokens": [5135, 11, 286, 829, 264, 2113, 293, 341, 2113, 9870, 264, 10561, 337, 385, 13, 440, 10561, 293, 1080, 2445, 11, 1392, 30, 1018, 321, 848, 11, 309, 307, 9408, 281, 257, 12905, 13, 286, 352, 281, 264, 10561, 11, 286, 7890, 365, 264, 2316, 11, 1392, 30, 286, 584, 11, 2316, 11, 976, 385, 439, 264, 1731, 291, 362, 11, 337, 1365, 13, 286, 352, 293, 309, 1619, 483, 439, 1731, 13, 400, 309, 5607, 264, 1412, 646, 281, 7101, 30, 1407, 264, 10561, 13, 440, 10561, 311, 8539, 307, 611, 31092, 13], "avg_logprob": -0.5569079223432039, "compression_ratio": 1.748898678414097, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 1405.33, "end": 1405.71, "word": " Actually,", "probability": 0.149658203125}, {"start": 1405.83, "end": 1405.93, "word": " I", "probability": 0.9052734375}, {"start": 1405.93, "end": 1406.19, "word": " put", "probability": 0.2413330078125}, {"start": 1406.19, "end": 1406.37, "word": " the", "probability": 0.62548828125}, {"start": 1406.37, "end": 1406.69, "word": " link", "probability": 0.9375}, {"start": 1406.69, "end": 1407.11, "word": " and", "probability": 0.3076171875}, {"start": 1407.11, "end": 1407.77, "word": " this", "probability": 0.32861328125}, {"start": 1407.77, "end": 1407.77, "word": " link", "probability": 0.93505859375}, {"start": 1407.77, "end": 1408.09, "word": " opens", "probability": 0.533203125}, {"start": 1408.09, "end": 1408.33, "word": " the", "probability": 0.60400390625}, {"start": 1408.33, "end": 1408.75, "word": " controller", "probability": 0.61669921875}, {"start": 1408.75, "end": 1409.01, "word": " for", "probability": 0.360595703125}, {"start": 1409.01, "end": 1409.07, "word": " me.", "probability": 0.95947265625}, {"start": 1409.07, "end": 1409.31, "word": " The", "probability": 0.6953125}, {"start": 1409.31, "end": 1409.65, "word": " controller", "probability": 0.8681640625}, {"start": 1409.65, "end": 1409.81, "word": " and", "probability": 0.16552734375}, {"start": 1409.81, "end": 1409.81, "word": " its", "probability": 0.61767578125}, {"start": 1409.81, "end": 1410.13, "word": " function,", "probability": 0.84130859375}, {"start": 1411.05, "end": 1411.31, "word": " okay?", "probability": 0.271728515625}, {"start": 1412.53, "end": 1413.01, "word": " As", "probability": 0.63818359375}, {"start": 1413.01, "end": 1413.13, "word": " we", "probability": 0.61376953125}, {"start": 1413.13, "end": 1413.27, "word": " said,", "probability": 0.81103515625}, {"start": 1413.37, "end": 1413.47, "word": " it", "probability": 0.701171875}, {"start": 1413.47, "end": 1413.53, "word": " is", "probability": 0.49169921875}, {"start": 1413.53, "end": 1413.69, "word": " linked", "probability": 0.53173828125}, {"start": 1413.69, "end": 1413.83, "word": " to", "probability": 0.52001953125}, {"start": 1413.83, "end": 1413.87, "word": " a", "probability": 0.354248046875}, {"start": 1413.87, "end": 1414.25, "word": " URL.", "probability": 0.80224609375}, {"start": 1414.81, "end": 1414.91, "word": " I", "probability": 0.91748046875}, {"start": 1414.91, "end": 1415.03, "word": " go", "probability": 0.79541015625}, {"start": 1415.03, "end": 1415.15, "word": " to", "probability": 0.94580078125}, {"start": 1415.15, "end": 1415.25, "word": " the", "probability": 0.90234375}, {"start": 1415.25, "end": 1415.63, "word": " controller,", "probability": 0.8330078125}, {"start": 1416.19, "end": 1416.35, "word": " I", "probability": 0.50146484375}, {"start": 1416.35, "end": 1416.65, "word": " communicate", "probability": 0.415771484375}, {"start": 1416.65, "end": 1416.87, "word": " with", "probability": 0.888671875}, {"start": 1416.87, "end": 1416.99, "word": " the", "probability": 0.88720703125}, {"start": 1416.99, "end": 1417.21, "word": " model,", "probability": 0.72900390625}, {"start": 1417.85, "end": 1418.19, "word": " okay?", "probability": 0.603515625}, {"start": 1418.23, "end": 1418.35, "word": " I", "probability": 0.86328125}, {"start": 1418.35, "end": 1418.51, "word": " say,", "probability": 0.6044921875}, {"start": 1418.65, "end": 1418.91, "word": " model,", "probability": 0.07611083984375}, {"start": 1419.65, "end": 1419.91, "word": " give", "probability": 0.345703125}, {"start": 1419.91, "end": 1420.13, "word": " me", "probability": 0.90283203125}, {"start": 1420.13, "end": 1421.03, "word": " all", "probability": 0.54052734375}, {"start": 1421.03, "end": 1421.17, "word": " the", "probability": 0.485107421875}, {"start": 1421.17, "end": 1421.45, "word": " students", "probability": 0.97265625}, {"start": 1421.45, "end": 1421.61, "word": " you", "probability": 0.70654296875}, {"start": 1421.61, "end": 1421.77, "word": " have,", "probability": 0.9345703125}, {"start": 1421.79, "end": 1421.79, "word": " for", "probability": 0.80029296875}, {"start": 1421.79, "end": 1421.79, "word": " example.", "probability": 0.94384765625}, {"start": 1421.93, "end": 1421.93, "word": " I", "probability": 0.20556640625}, {"start": 1421.93, "end": 1422.03, "word": " go", "probability": 0.6796875}, {"start": 1422.03, "end": 1422.17, "word": " and", "probability": 0.6259765625}, {"start": 1422.17, "end": 1422.19, "word": " it", "probability": 0.267578125}, {"start": 1422.19, "end": 1422.35, "word": " says", "probability": 0.2161865234375}, {"start": 1422.35, "end": 1422.63, "word": " get", "probability": 0.31005859375}, {"start": 1422.63, "end": 1422.97, "word": " all", "probability": 0.92333984375}, {"start": 1422.97, "end": 1424.43, "word": " students.", "probability": 0.58056640625}, {"start": 1425.59, "end": 1426.07, "word": " And", "probability": 0.453857421875}, {"start": 1426.07, "end": 1426.17, "word": " it", "probability": 0.80029296875}, {"start": 1426.17, "end": 1426.31, "word": " brings", "probability": 0.54150390625}, {"start": 1426.31, "end": 1426.47, "word": " the", "probability": 0.64111328125}, {"start": 1426.47, "end": 1426.79, "word": " data", "probability": 0.8740234375}, {"start": 1426.79, "end": 1427.15, "word": " back", "probability": 0.2734375}, {"start": 1427.15, "end": 1427.31, "word": " to", "probability": 0.90234375}, {"start": 1427.31, "end": 1427.49, "word": " whom?", "probability": 0.7998046875}, {"start": 1428.59, "end": 1429.07, "word": " To", "probability": 0.65478515625}, {"start": 1429.07, "end": 1429.19, "word": " the", "probability": 0.92041015625}, {"start": 1429.19, "end": 1429.55, "word": " controller.", "probability": 0.84716796875}, {"start": 1430.03, "end": 1430.25, "word": " The", "probability": 0.10687255859375}, {"start": 1430.25, "end": 1430.87, "word": " controller's", "probability": 0.548095703125}, {"start": 1430.87, "end": 1430.87, "word": " gate", "probability": 0.70556640625}, {"start": 1430.87, "end": 1431.35, "word": " is", "probability": 0.76171875}, {"start": 1431.35, "end": 1431.35, "word": " also", "probability": 0.58203125}, {"start": 1431.35, "end": 1432.15, "word": " programmed.", "probability": 0.7451171875}], "temperature": 1.0}, {"id": 61, "seek": 145753, "start": 1433.71, "end": 1457.53, "text": " It wants to display the data it received. So it goes to the controller and initiates the view. This is the view. And this is the model. It creates the view and stores the data where? Inside the view. Whose job is this? The job of the controller. So it is a mediator between the view and the model. This is a good design that I always recommend.", "tokens": [467, 2738, 281, 4674, 264, 1412, 309, 4613, 13, 407, 309, 1709, 281, 264, 10561, 293, 6265, 1024, 264, 1910, 13, 639, 307, 264, 1910, 13, 400, 341, 307, 264, 2316, 13, 467, 7829, 264, 1910, 293, 9512, 264, 1412, 689, 30, 15123, 264, 1910, 13, 28463, 1691, 307, 341, 30, 440, 1691, 295, 264, 10561, 13, 407, 309, 307, 257, 17269, 1639, 1296, 264, 1910, 293, 264, 2316, 13, 639, 307, 257, 665, 1715, 300, 286, 1009, 2748, 13], "avg_logprob": -0.4621913697984483, "compression_ratio": 1.8351063829787233, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 1433.71, "end": 1434.19, "word": " It", "probability": 0.06427001953125}, {"start": 1434.19, "end": 1434.65, "word": " wants", "probability": 0.2015380859375}, {"start": 1434.65, "end": 1434.71, "word": " to", "probability": 0.9521484375}, {"start": 1434.71, "end": 1434.99, "word": " display", "probability": 0.46826171875}, {"start": 1434.99, "end": 1435.05, "word": " the", "probability": 0.61865234375}, {"start": 1435.05, "end": 1435.05, "word": " data", "probability": 0.451171875}, {"start": 1435.05, "end": 1435.05, "word": " it", "probability": 0.4228515625}, {"start": 1435.05, "end": 1435.05, "word": " received.", "probability": 0.2734375}, {"start": 1435.65, "end": 1436.13, "word": " So", "probability": 0.305419921875}, {"start": 1436.13, "end": 1436.27, "word": " it", "probability": 0.4736328125}, {"start": 1436.27, "end": 1436.33, "word": " goes", "probability": 0.6953125}, {"start": 1436.33, "end": 1436.49, "word": " to", "probability": 0.91845703125}, {"start": 1436.49, "end": 1436.57, "word": " the", "probability": 0.86328125}, {"start": 1436.57, "end": 1436.91, "word": " controller", "probability": 0.7021484375}, {"start": 1436.91, "end": 1437.09, "word": " and", "probability": 0.638671875}, {"start": 1437.09, "end": 1437.89, "word": " initiates", "probability": 0.6728515625}, {"start": 1437.89, "end": 1438.07, "word": " the", "probability": 0.419677734375}, {"start": 1438.07, "end": 1438.33, "word": " view.", "probability": 0.69140625}, {"start": 1438.57, "end": 1438.93, "word": " This", "probability": 0.58935546875}, {"start": 1438.93, "end": 1438.95, "word": " is", "probability": 0.88623046875}, {"start": 1438.95, "end": 1439.07, "word": " the", "probability": 0.833984375}, {"start": 1439.07, "end": 1439.33, "word": " view.", "probability": 0.8408203125}, {"start": 1439.75, "end": 1440.23, "word": " And", "probability": 0.54150390625}, {"start": 1440.23, "end": 1440.37, "word": " this", "probability": 0.59033203125}, {"start": 1440.37, "end": 1440.47, "word": " is", "probability": 0.8544921875}, {"start": 1440.47, "end": 1441.39, "word": " the", "probability": 0.63671875}, {"start": 1441.39, "end": 1441.59, "word": " model.", "probability": 0.8330078125}, {"start": 1441.65, "end": 1441.77, "word": " It", "probability": 0.68798828125}, {"start": 1441.77, "end": 1442.01, "word": " creates", "probability": 0.51416015625}, {"start": 1442.01, "end": 1442.19, "word": " the", "probability": 0.79150390625}, {"start": 1442.19, "end": 1442.49, "word": " view", "probability": 0.86669921875}, {"start": 1442.49, "end": 1443.31, "word": " and", "probability": 0.75830078125}, {"start": 1443.31, "end": 1443.59, "word": " stores", "probability": 0.2919921875}, {"start": 1443.59, "end": 1443.71, "word": " the", "probability": 0.779296875}, {"start": 1443.71, "end": 1444.03, "word": " data", "probability": 0.90625}, {"start": 1444.03, "end": 1444.27, "word": " where?", "probability": 0.223388671875}, {"start": 1445.69, "end": 1446.17, "word": " Inside", "probability": 0.720703125}, {"start": 1446.17, "end": 1446.35, "word": " the", "probability": 0.859375}, {"start": 1446.35, "end": 1446.51, "word": " view.", "probability": 0.8623046875}, {"start": 1447.61, "end": 1448.09, "word": " Whose", "probability": 0.141357421875}, {"start": 1448.09, "end": 1448.31, "word": " job", "probability": 0.556640625}, {"start": 1448.31, "end": 1448.39, "word": " is", "probability": 0.92919921875}, {"start": 1448.39, "end": 1448.39, "word": " this?", "probability": 0.82373046875}, {"start": 1449.83, "end": 1450.31, "word": " The", "probability": 0.61572265625}, {"start": 1450.31, "end": 1450.41, "word": " job", "probability": 0.42431640625}, {"start": 1450.41, "end": 1450.51, "word": " of", "probability": 0.97021484375}, {"start": 1450.51, "end": 1450.57, "word": " the", "probability": 0.9072265625}, {"start": 1450.57, "end": 1450.89, "word": " controller.", "probability": 0.828125}, {"start": 1451.01, "end": 1451.09, "word": " So", "probability": 0.544921875}, {"start": 1451.09, "end": 1451.21, "word": " it", "probability": 0.8095703125}, {"start": 1451.21, "end": 1451.25, "word": " is", "probability": 0.62255859375}, {"start": 1451.25, "end": 1451.35, "word": " a", "probability": 0.28125}, {"start": 1451.35, "end": 1451.61, "word": " mediator", "probability": 0.61572265625}, {"start": 1451.61, "end": 1451.83, "word": " between", "probability": 0.8779296875}, {"start": 1451.83, "end": 1452.01, "word": " the", "probability": 0.8427734375}, {"start": 1452.01, "end": 1452.31, "word": " view", "probability": 0.87548828125}, {"start": 1452.31, "end": 1453.01, "word": " and", "probability": 0.94189453125}, {"start": 1453.01, "end": 1453.99, "word": " the", "probability": 0.8974609375}, {"start": 1453.99, "end": 1454.21, "word": " model.", "probability": 0.94384765625}, {"start": 1455.25, "end": 1455.53, "word": " This", "probability": 0.810546875}, {"start": 1455.53, "end": 1456.13, "word": " is", "probability": 0.828125}, {"start": 1456.13, "end": 1456.73, "word": " a", "probability": 0.63134765625}, {"start": 1456.73, "end": 1456.97, "word": " good", "probability": 0.865234375}, {"start": 1456.97, "end": 1456.99, "word": " design", "probability": 0.853515625}, {"start": 1456.99, "end": 1457.23, "word": " that", "probability": 0.66748046875}, {"start": 1457.23, "end": 1457.33, "word": " I", "probability": 0.51708984375}, {"start": 1457.33, "end": 1457.39, "word": " always", "probability": 0.8193359375}, {"start": 1457.39, "end": 1457.53, "word": " recommend.", "probability": 0.51318359375}], "temperature": 1.0}, {"id": 62, "seek": 147966, "start": 1458.84, "end": 1479.66, "text": "In short, in MVC, the view must be completely detached from any work related to data. And there is a mediator between them, which is the controller, which actually retrieves the data from the model and displays it in the view. This is the scenario that happens to me on the web.", "tokens": [4575, 2099, 11, 294, 17663, 34, 11, 264, 1910, 1633, 312, 2584, 42050, 490, 604, 589, 4077, 281, 1412, 13, 400, 456, 307, 257, 17269, 1639, 1296, 552, 11, 597, 307, 264, 10561, 11, 597, 767, 19817, 977, 264, 1412, 490, 264, 2316, 293, 20119, 309, 294, 264, 1910, 13, 639, 307, 264, 9005, 300, 2314, 281, 385, 322, 264, 3670, 13], "avg_logprob": -0.45858134447582183, "compression_ratio": 1.5108695652173914, "no_speech_prob": 2.9206275939941406e-06, "words": [{"start": 1458.84, "end": 1459.18, "word": "In", "probability": 0.41845703125}, {"start": 1459.18, "end": 1459.58, "word": " short,", "probability": 0.662109375}, {"start": 1460.74, "end": 1460.92, "word": " in", "probability": 0.5576171875}, {"start": 1460.92, "end": 1461.48, "word": " MVC,", "probability": 0.782470703125}, {"start": 1462.0, "end": 1462.18, "word": " the", "probability": 0.76611328125}, {"start": 1462.18, "end": 1462.44, "word": " view", "probability": 0.75537109375}, {"start": 1462.44, "end": 1462.7, "word": " must", "probability": 0.51416015625}, {"start": 1462.7, "end": 1464.18, "word": " be", "probability": 0.8896484375}, {"start": 1464.18, "end": 1464.86, "word": " completely", "probability": 0.288818359375}, {"start": 1464.86, "end": 1464.86, "word": " detached", "probability": 0.436279296875}, {"start": 1464.86, "end": 1465.8, "word": " from", "probability": 0.8837890625}, {"start": 1465.8, "end": 1465.98, "word": " any", "probability": 0.6240234375}, {"start": 1465.98, "end": 1466.24, "word": " work", "probability": 0.51025390625}, {"start": 1466.24, "end": 1466.64, "word": " related", "probability": 0.66357421875}, {"start": 1466.64, "end": 1466.84, "word": " to", "probability": 0.96337890625}, {"start": 1466.84, "end": 1467.12, "word": " data.", "probability": 0.64013671875}, {"start": 1467.88, "end": 1468.14, "word": " And", "probability": 0.306396484375}, {"start": 1468.14, "end": 1468.26, "word": " there", "probability": 0.7666015625}, {"start": 1468.26, "end": 1468.32, "word": " is", "probability": 0.77587890625}, {"start": 1468.32, "end": 1468.44, "word": " a", "probability": 0.78515625}, {"start": 1468.44, "end": 1468.76, "word": " mediator", "probability": 0.6123046875}, {"start": 1468.76, "end": 1469.0, "word": " between", "probability": 0.65625}, {"start": 1469.0, "end": 1469.22, "word": " them,", "probability": 0.86083984375}, {"start": 1469.88, "end": 1469.94, "word": " which", "probability": 0.357177734375}, {"start": 1469.94, "end": 1469.94, "word": " is", "probability": 0.91552734375}, {"start": 1469.94, "end": 1470.04, "word": " the", "probability": 0.83544921875}, {"start": 1470.04, "end": 1470.5, "word": " controller,", "probability": 0.701171875}, {"start": 1471.24, "end": 1471.46, "word": " which", "probability": 0.74169921875}, {"start": 1471.46, "end": 1471.8, "word": " actually", "probability": 0.431640625}, {"start": 1471.8, "end": 1472.14, "word": " retrieves", "probability": 0.56396484375}, {"start": 1472.14, "end": 1472.26, "word": " the", "probability": 0.330322265625}, {"start": 1472.26, "end": 1472.54, "word": " data", "probability": 0.8876953125}, {"start": 1472.54, "end": 1472.74, "word": " from", "probability": 0.86865234375}, {"start": 1472.74, "end": 1472.88, "word": " the", "probability": 0.822265625}, {"start": 1472.88, "end": 1473.12, "word": " model", "probability": 0.525390625}, {"start": 1473.12, "end": 1475.02, "word": " and", "probability": 0.580078125}, {"start": 1475.02, "end": 1475.34, "word": " displays", "probability": 0.70263671875}, {"start": 1475.34, "end": 1475.62, "word": " it", "probability": 0.66357421875}, {"start": 1475.62, "end": 1477.0, "word": " in", "probability": 0.66943359375}, {"start": 1477.0, "end": 1477.12, "word": " the", "probability": 0.86279296875}, {"start": 1477.12, "end": 1477.28, "word": " view.", "probability": 0.7578125}, {"start": 1477.38, "end": 1477.78, "word": " This", "probability": 0.78955078125}, {"start": 1477.78, "end": 1477.86, "word": " is", "probability": 0.91064453125}, {"start": 1477.86, "end": 1477.92, "word": " the", "probability": 0.56689453125}, {"start": 1477.92, "end": 1478.28, "word": " scenario", "probability": 0.80078125}, {"start": 1478.28, "end": 1478.36, "word": " that", "probability": 0.74365234375}, {"start": 1478.36, "end": 1478.64, "word": " happens", "probability": 0.51611328125}, {"start": 1478.64, "end": 1478.84, "word": " to", "probability": 0.23486328125}, {"start": 1478.84, "end": 1479.04, "word": " me", "probability": 0.96337890625}, {"start": 1479.04, "end": 1479.42, "word": " on", "probability": 0.37353515625}, {"start": 1479.42, "end": 1479.5, "word": " the", "probability": 0.8359375}, {"start": 1479.5, "end": 1479.66, "word": " web.", "probability": 0.8330078125}], "temperature": 1.0}, {"id": 63, "seek": 149673, "start": 1481.65, "end": 1496.73, "text": "Back in the days of frameworks, as I said, the design that we used to put in the connection to the database in the same page was bad, so what we used to do was to make classes outside that had relation to the model", "tokens": [28404, 294, 264, 1708, 295, 29834, 11, 382, 286, 848, 11, 264, 1715, 300, 321, 1143, 281, 829, 294, 264, 4984, 281, 264, 8149, 294, 264, 912, 3028, 390, 1578, 11, 370, 437, 321, 1143, 281, 360, 390, 281, 652, 5359, 2380, 300, 632, 9721, 281, 264, 2316], "avg_logprob": -0.6291454276260064, "compression_ratio": 1.5970149253731343, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 1481.6499999999999, "end": 1482.1299999999999, "word": "Back", "probability": 0.1304931640625}, {"start": 1482.1299999999999, "end": 1482.61, "word": " in", "probability": 0.71630859375}, {"start": 1482.61, "end": 1482.61, "word": " the", "probability": 0.7548828125}, {"start": 1482.61, "end": 1482.61, "word": " days", "probability": 0.26123046875}, {"start": 1482.61, "end": 1483.05, "word": " of", "probability": 0.489990234375}, {"start": 1483.05, "end": 1483.95, "word": " frameworks,", "probability": 0.74169921875}, {"start": 1484.79, "end": 1485.03, "word": " as", "probability": 0.1158447265625}, {"start": 1485.03, "end": 1486.95, "word": " I", "probability": 0.845703125}, {"start": 1486.95, "end": 1487.21, "word": " said,", "probability": 0.576171875}, {"start": 1487.33, "end": 1487.33, "word": " the", "probability": 0.406494140625}, {"start": 1487.33, "end": 1487.67, "word": " design", "probability": 0.556640625}, {"start": 1487.67, "end": 1487.91, "word": " that", "probability": 0.28173828125}, {"start": 1487.91, "end": 1488.15, "word": " we", "probability": 0.74267578125}, {"start": 1488.15, "end": 1488.15, "word": " used", "probability": 0.35302734375}, {"start": 1488.15, "end": 1488.19, "word": " to", "probability": 0.92626953125}, {"start": 1488.19, "end": 1488.41, "word": " put", "probability": 0.560546875}, {"start": 1488.41, "end": 1488.63, "word": " in", "probability": 0.59814453125}, {"start": 1488.63, "end": 1488.87, "word": " the", "probability": 0.58935546875}, {"start": 1488.87, "end": 1489.19, "word": " connection", "probability": 0.51708984375}, {"start": 1489.19, "end": 1489.39, "word": " to", "probability": 0.552734375}, {"start": 1489.39, "end": 1489.43, "word": " the", "probability": 0.806640625}, {"start": 1489.43, "end": 1489.85, "word": " database", "probability": 0.884765625}, {"start": 1489.85, "end": 1490.05, "word": " in", "probability": 0.54248046875}, {"start": 1490.05, "end": 1490.23, "word": " the", "probability": 0.70703125}, {"start": 1490.23, "end": 1490.23, "word": " same", "probability": 0.71630859375}, {"start": 1490.23, "end": 1491.25, "word": " page", "probability": 0.81982421875}, {"start": 1491.25, "end": 1491.95, "word": " was", "probability": 0.50244140625}, {"start": 1491.95, "end": 1492.27, "word": " bad,", "probability": 0.57958984375}, {"start": 1492.97, "end": 1493.05, "word": " so", "probability": 0.826171875}, {"start": 1493.05, "end": 1493.25, "word": " what", "probability": 0.423583984375}, {"start": 1493.25, "end": 1493.27, "word": " we", "probability": 0.72705078125}, {"start": 1493.27, "end": 1493.27, "word": " used", "probability": 0.59912109375}, {"start": 1493.27, "end": 1493.55, "word": " to", "probability": 0.97509765625}, {"start": 1493.55, "end": 1493.77, "word": " do", "probability": 0.962890625}, {"start": 1493.77, "end": 1494.11, "word": " was", "probability": 0.63427734375}, {"start": 1494.11, "end": 1494.11, "word": " to", "probability": 0.3525390625}, {"start": 1494.11, "end": 1494.31, "word": " make", "probability": 0.43798828125}, {"start": 1494.31, "end": 1494.95, "word": " classes", "probability": 0.89208984375}, {"start": 1494.95, "end": 1495.75, "word": " outside", "probability": 0.60205078125}, {"start": 1495.75, "end": 1495.89, "word": " that", "probability": 0.22265625}, {"start": 1495.89, "end": 1495.95, "word": " had", "probability": 0.31884765625}, {"start": 1495.95, "end": 1496.21, "word": " relation", "probability": 0.1549072265625}, {"start": 1496.21, "end": 1496.37, "word": " to", "probability": 0.69384765625}, {"start": 1496.37, "end": 1496.45, "word": " the", "probability": 0.85107421875}, {"start": 1496.45, "end": 1496.73, "word": " model", "probability": 0.91162109375}], "temperature": 1.0}, {"id": 64, "seek": 151928, "start": 1497.24, "end": 1519.28, "text": "Okay? And then we make a class called Controller, so that when I open the page, it communicates with the controller, and the controller gets data from the model and returns it. So we apply the MVC in parts. Now, of course, the latest frameworks like Laravel, when you come to work, they make it easier for you. They force you to use MVC.", "tokens": [8297, 30, 400, 550, 321, 652, 257, 1508, 1219, 44969, 11, 370, 300, 562, 286, 1269, 264, 3028, 11, 309, 3363, 1024, 365, 264, 10561, 11, 293, 264, 10561, 2170, 1412, 490, 264, 2316, 293, 11247, 309, 13, 407, 321, 3079, 264, 17663, 34, 294, 3166, 13, 823, 11, 295, 1164, 11, 264, 6792, 29834, 411, 33935, 779, 11, 562, 291, 808, 281, 589, 11, 436, 652, 309, 3571, 337, 291, 13, 814, 3464, 291, 281, 764, 17663, 34, 13], "avg_logprob": -0.50771607293023, "compression_ratio": 1.5674418604651164, "no_speech_prob": 1.2576580047607422e-05, "words": [{"start": 1497.24, "end": 1497.68, "word": "Okay?", "probability": 0.0860595703125}, {"start": 1498.44, "end": 1498.64, "word": " And", "probability": 0.5537109375}, {"start": 1498.64, "end": 1498.86, "word": " then", "probability": 0.6923828125}, {"start": 1498.86, "end": 1499.08, "word": " we", "probability": 0.84228515625}, {"start": 1499.08, "end": 1499.2, "word": " make", "probability": 0.2646484375}, {"start": 1499.2, "end": 1499.36, "word": " a", "probability": 0.91455078125}, {"start": 1499.36, "end": 1499.76, "word": " class", "probability": 0.96533203125}, {"start": 1499.76, "end": 1500.14, "word": " called", "probability": 0.468994140625}, {"start": 1500.14, "end": 1500.7, "word": " Controller,", "probability": 0.299072265625}, {"start": 1500.86, "end": 1500.96, "word": " so", "probability": 0.5341796875}, {"start": 1500.96, "end": 1501.38, "word": " that", "probability": 0.68115234375}, {"start": 1501.38, "end": 1502.16, "word": " when", "probability": 0.8720703125}, {"start": 1502.16, "end": 1502.66, "word": " I", "probability": 0.95654296875}, {"start": 1502.66, "end": 1502.98, "word": " open", "probability": 0.4755859375}, {"start": 1502.98, "end": 1503.18, "word": " the", "probability": 0.70654296875}, {"start": 1503.18, "end": 1503.48, "word": " page,", "probability": 0.85009765625}, {"start": 1503.86, "end": 1504.48, "word": " it", "probability": 0.63720703125}, {"start": 1504.48, "end": 1504.98, "word": " communicates", "probability": 0.59600830078125}, {"start": 1504.98, "end": 1505.16, "word": " with", "probability": 0.85302734375}, {"start": 1505.16, "end": 1505.26, "word": " the", "probability": 0.7939453125}, {"start": 1505.26, "end": 1505.7, "word": " controller,", "probability": 0.60400390625}, {"start": 1505.8, "end": 1505.82, "word": " and", "probability": 0.6904296875}, {"start": 1505.82, "end": 1505.94, "word": " the", "probability": 0.7705078125}, {"start": 1505.94, "end": 1506.22, "word": " controller", "probability": 0.81201171875}, {"start": 1506.22, "end": 1506.46, "word": " gets", "probability": 0.2000732421875}, {"start": 1506.46, "end": 1506.74, "word": " data", "probability": 0.6298828125}, {"start": 1506.74, "end": 1506.94, "word": " from", "probability": 0.85693359375}, {"start": 1506.94, "end": 1507.06, "word": " the", "probability": 0.880859375}, {"start": 1507.06, "end": 1507.28, "word": " model", "probability": 0.9189453125}, {"start": 1507.28, "end": 1507.44, "word": " and", "probability": 0.7587890625}, {"start": 1507.44, "end": 1507.72, "word": " returns", "probability": 0.576171875}, {"start": 1507.72, "end": 1508.44, "word": " it.", "probability": 0.63134765625}, {"start": 1508.56, "end": 1508.68, "word": " So", "probability": 0.231201171875}, {"start": 1508.68, "end": 1509.06, "word": " we", "probability": 0.486572265625}, {"start": 1509.06, "end": 1510.52, "word": " apply", "probability": 0.178955078125}, {"start": 1510.52, "end": 1510.74, "word": " the", "probability": 0.375244140625}, {"start": 1510.74, "end": 1511.32, "word": " MVC", "probability": 0.873046875}, {"start": 1511.32, "end": 1511.76, "word": " in", "probability": 0.1806640625}, {"start": 1511.76, "end": 1512.12, "word": " parts.", "probability": 0.68701171875}, {"start": 1512.26, "end": 1512.7, "word": " Now,", "probability": 0.72607421875}, {"start": 1512.78, "end": 1512.84, "word": " of", "probability": 0.70556640625}, {"start": 1512.84, "end": 1512.96, "word": " course,", "probability": 0.95849609375}, {"start": 1513.08, "end": 1513.08, "word": " the", "probability": 0.51025390625}, {"start": 1513.08, "end": 1513.78, "word": " latest", "probability": 0.2301025390625}, {"start": 1513.78, "end": 1513.86, "word": " frameworks", "probability": 0.82568359375}, {"start": 1513.86, "end": 1514.1, "word": " like", "probability": 0.357421875}, {"start": 1514.1, "end": 1514.6, "word": " Laravel,", "probability": 0.78369140625}, {"start": 1515.18, "end": 1515.4, "word": " when", "probability": 0.830078125}, {"start": 1515.4, "end": 1515.54, "word": " you", "probability": 0.88818359375}, {"start": 1515.54, "end": 1515.64, "word": " come", "probability": 0.5517578125}, {"start": 1515.64, "end": 1515.7, "word": " to", "probability": 0.5908203125}, {"start": 1515.7, "end": 1516.0, "word": " work,", "probability": 0.9189453125}, {"start": 1516.32, "end": 1516.4, "word": " they", "probability": 0.327880859375}, {"start": 1516.4, "end": 1516.64, "word": " make", "probability": 0.74169921875}, {"start": 1516.64, "end": 1516.74, "word": " it", "probability": 0.87255859375}, {"start": 1516.74, "end": 1516.74, "word": " easier", "probability": 0.75634765625}, {"start": 1516.74, "end": 1516.86, "word": " for", "probability": 0.81640625}, {"start": 1516.86, "end": 1516.98, "word": " you.", "probability": 0.96240234375}, {"start": 1517.02, "end": 1517.1, "word": " They", "probability": 0.6025390625}, {"start": 1517.1, "end": 1517.3, "word": " force", "probability": 0.8974609375}, {"start": 1517.3, "end": 1517.5, "word": " you", "probability": 0.96533203125}, {"start": 1517.5, "end": 1517.68, "word": " to", "probability": 0.97021484375}, {"start": 1517.68, "end": 1518.24, "word": " use", "probability": 0.8740234375}, {"start": 1518.24, "end": 1519.28, "word": " MVC.", "probability": 0.907958984375}], "temperature": 1.0}, {"id": 65, "seek": 154701, "start": 1520.01, "end": 1547.01, "text": " Ok? Yes, I will be the creator of the project. You want to work as a model, go and create Extend for a class called Liquid, I don't know what. Yes, you want to create a view, go and create Extend for a class called blah blah blah to design a user interface in it. You want to create a controller, go and create a class called ExtendController to connect the controller to a specific URL. In the web, where does the process start? From the controller connected to the URL.", "tokens": [3477, 30, 1079, 11, 286, 486, 312, 264, 14181, 295, 264, 1716, 13, 509, 528, 281, 589, 382, 257, 2316, 11, 352, 293, 1884, 9881, 521, 337, 257, 1508, 1219, 38943, 11, 286, 500, 380, 458, 437, 13, 1079, 11, 291, 528, 281, 1884, 257, 1910, 11, 352, 293, 1884, 9881, 521, 337, 257, 1508, 1219, 12288, 12288, 12288, 281, 1715, 257, 4195, 9226, 294, 309, 13, 509, 528, 281, 1884, 257, 10561, 11, 352, 293, 1884, 257, 1508, 1219, 9881, 521, 29821, 22922, 281, 1745, 264, 10561, 281, 257, 2685, 12905, 13, 682, 264, 3670, 11, 689, 775, 264, 1399, 722, 30, 3358, 264, 10561, 4582, 281, 264, 12905, 13], "avg_logprob": -0.4405692033469677, "compression_ratio": 1.9666666666666666, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 1520.01, "end": 1520.35, "word": " Ok?", "probability": 0.0933837890625}, {"start": 1520.59, "end": 1520.89, "word": " Yes,", "probability": 0.357666015625}, {"start": 1520.95, "end": 1521.23, "word": " I", "probability": 0.282470703125}, {"start": 1521.23, "end": 1521.37, "word": " will", "probability": 0.2147216796875}, {"start": 1521.37, "end": 1521.49, "word": " be", "probability": 0.498046875}, {"start": 1521.49, "end": 1521.77, "word": " the", "probability": 0.1514892578125}, {"start": 1521.77, "end": 1521.79, "word": " creator", "probability": 0.311767578125}, {"start": 1521.79, "end": 1521.87, "word": " of", "probability": 0.9521484375}, {"start": 1521.87, "end": 1521.97, "word": " the", "probability": 0.634765625}, {"start": 1521.97, "end": 1522.23, "word": " project.", "probability": 0.94775390625}, {"start": 1522.53, "end": 1522.85, "word": " You", "probability": 0.70361328125}, {"start": 1522.85, "end": 1522.99, "word": " want", "probability": 0.52197265625}, {"start": 1522.99, "end": 1523.09, "word": " to", "probability": 0.96728515625}, {"start": 1523.09, "end": 1523.27, "word": " work", "probability": 0.45458984375}, {"start": 1523.27, "end": 1523.39, "word": " as", "probability": 0.499267578125}, {"start": 1523.39, "end": 1523.41, "word": " a", "probability": 0.92919921875}, {"start": 1523.41, "end": 1523.65, "word": " model,", "probability": 0.88720703125}, {"start": 1524.11, "end": 1524.37, "word": " go", "probability": 0.5751953125}, {"start": 1524.37, "end": 1524.45, "word": " and", "probability": 0.5595703125}, {"start": 1524.45, "end": 1524.61, "word": " create", "probability": 0.5703125}, {"start": 1524.61, "end": 1525.29, "word": " Extend", "probability": 0.5299072265625}, {"start": 1525.29, "end": 1526.01, "word": " for", "probability": 0.33642578125}, {"start": 1526.01, "end": 1526.11, "word": " a", "probability": 0.75732421875}, {"start": 1526.11, "end": 1526.41, "word": " class", "probability": 0.9716796875}, {"start": 1526.41, "end": 1526.65, "word": " called", "probability": 0.521484375}, {"start": 1526.65, "end": 1527.39, "word": " Liquid,", "probability": 0.468505859375}, {"start": 1528.13, "end": 1528.81, "word": " I", "probability": 0.6201171875}, {"start": 1528.81, "end": 1528.85, "word": " don't", "probability": 0.88232421875}, {"start": 1528.85, "end": 1529.05, "word": " know", "probability": 0.8642578125}, {"start": 1529.05, "end": 1529.35, "word": " what.", "probability": 0.82958984375}, {"start": 1529.69, "end": 1529.91, "word": " Yes,", "probability": 0.313720703125}, {"start": 1529.97, "end": 1530.05, "word": " you", "probability": 0.88037109375}, {"start": 1530.05, "end": 1530.21, "word": " want", "probability": 0.83056640625}, {"start": 1530.21, "end": 1530.35, "word": " to", "probability": 0.96875}, {"start": 1530.35, "end": 1530.59, "word": " create", "probability": 0.75537109375}, {"start": 1530.59, "end": 1531.11, "word": " a", "probability": 0.783203125}, {"start": 1531.11, "end": 1531.41, "word": " view,", "probability": 0.783203125}, {"start": 1531.61, "end": 1531.75, "word": " go", "probability": 0.580078125}, {"start": 1531.75, "end": 1531.85, "word": " and", "probability": 0.798828125}, {"start": 1531.85, "end": 1531.95, "word": " create", "probability": 0.8740234375}, {"start": 1531.95, "end": 1532.41, "word": " Extend", "probability": 0.9228515625}, {"start": 1532.41, "end": 1532.53, "word": " for", "probability": 0.80908203125}, {"start": 1532.53, "end": 1532.57, "word": " a", "probability": 0.921875}, {"start": 1532.57, "end": 1532.83, "word": " class", "probability": 0.9677734375}, {"start": 1532.83, "end": 1533.13, "word": " called", "probability": 0.71142578125}, {"start": 1533.13, "end": 1533.41, "word": " blah", "probability": 0.2039794921875}, {"start": 1533.41, "end": 1533.47, "word": " blah", "probability": 0.7802734375}, {"start": 1533.47, "end": 1533.59, "word": " blah", "probability": 0.7685546875}, {"start": 1533.59, "end": 1533.77, "word": " to", "probability": 0.291015625}, {"start": 1533.77, "end": 1534.11, "word": " design", "probability": 0.90625}, {"start": 1534.11, "end": 1534.31, "word": " a", "probability": 0.50830078125}, {"start": 1534.31, "end": 1534.55, "word": " user", "probability": 0.8916015625}, {"start": 1534.55, "end": 1535.17, "word": " interface", "probability": 0.8828125}, {"start": 1535.17, "end": 1535.19, "word": " in", "probability": 0.223388671875}, {"start": 1535.19, "end": 1535.19, "word": " it.", "probability": 0.9033203125}, {"start": 1535.37, "end": 1535.61, "word": " You", "probability": 0.90283203125}, {"start": 1535.61, "end": 1535.77, "word": " want", "probability": 0.84765625}, {"start": 1535.77, "end": 1535.87, "word": " to", "probability": 0.97119140625}, {"start": 1535.87, "end": 1536.01, "word": " create", "probability": 0.833984375}, {"start": 1536.01, "end": 1536.15, "word": " a", "probability": 0.97998046875}, {"start": 1536.15, "end": 1536.53, "word": " controller,", "probability": 0.79541015625}, {"start": 1536.61, "end": 1536.73, "word": " go", "probability": 0.876953125}, {"start": 1536.73, "end": 1536.85, "word": " and", "probability": 0.853515625}, {"start": 1536.85, "end": 1536.89, "word": " create", "probability": 0.89013671875}, {"start": 1536.89, "end": 1537.01, "word": " a", "probability": 0.98095703125}, {"start": 1537.01, "end": 1537.25, "word": " class", "probability": 0.97216796875}, {"start": 1537.25, "end": 1537.49, "word": " called", "probability": 0.7041015625}, {"start": 1537.49, "end": 1538.45, "word": " ExtendController", "probability": 0.8575439453125}, {"start": 1538.45, "end": 1539.01, "word": " to", "probability": 0.345947265625}, {"start": 1539.01, "end": 1539.13, "word": " connect", "probability": 0.62744140625}, {"start": 1539.13, "end": 1539.35, "word": " the", "probability": 0.82861328125}, {"start": 1539.35, "end": 1539.75, "word": " controller", "probability": 0.79150390625}, {"start": 1539.75, "end": 1540.61, "word": " to", "probability": 0.6591796875}, {"start": 1540.61, "end": 1540.61, "word": " a", "probability": 0.962890625}, {"start": 1540.61, "end": 1540.61, "word": " specific", "probability": 0.380126953125}, {"start": 1540.61, "end": 1541.05, "word": " URL.", "probability": 0.884765625}, {"start": 1542.05, "end": 1542.49, "word": " In", "probability": 0.64990234375}, {"start": 1542.49, "end": 1542.59, "word": " the", "probability": 0.5625}, {"start": 1542.59, "end": 1542.81, "word": " web,", "probability": 0.83349609375}, {"start": 1543.11, "end": 1543.49, "word": " where", "probability": 0.489013671875}, {"start": 1543.49, "end": 1543.49, "word": " does", "probability": 0.9296875}, {"start": 1543.49, "end": 1543.63, "word": " the", "probability": 0.7900390625}, {"start": 1543.63, "end": 1543.63, "word": " process", "probability": 0.82470703125}, {"start": 1543.63, "end": 1543.97, "word": " start?", "probability": 0.755859375}, {"start": 1545.05, "end": 1545.45, "word": " From", "probability": 0.6552734375}, {"start": 1545.45, "end": 1545.57, "word": " the", "probability": 0.87939453125}, {"start": 1545.57, "end": 1545.97, "word": " controller", "probability": 0.75439453125}, {"start": 1545.97, "end": 1546.33, "word": " connected", "probability": 0.4228515625}, {"start": 1546.33, "end": 1546.49, "word": " to", "probability": 0.921875}, {"start": 1546.49, "end": 1546.61, "word": " the", "probability": 0.32275390625}, {"start": 1546.61, "end": 1547.01, "word": " URL.", "probability": 0.8759765625}], "temperature": 1.0}, {"id": 66, "seek": 157793, "start": 1548.57, "end": 1577.93, "text": " I request the user, the controller requests the data from the model, and then it updates the view. In the model-view controller, this pattern separates an application into three interconnected components. Three parts connected to each other. The model, which is the data and business logic, the view, the user interface, and the controller, which is the intermediary between the model and the view.", "tokens": [286, 5308, 264, 4195, 11, 264, 10561, 12475, 264, 1412, 490, 264, 2316, 11, 293, 550, 309, 9205, 264, 1910, 13, 682, 264, 2316, 12, 1759, 10561, 11, 341, 5102, 34149, 364, 3861, 666, 1045, 36611, 6677, 13, 6244, 3166, 4582, 281, 1184, 661, 13, 440, 2316, 11, 597, 307, 264, 1412, 293, 1606, 9952, 11, 264, 1910, 11, 264, 4195, 9226, 11, 293, 264, 10561, 11, 597, 307, 264, 15184, 822, 1296, 264, 2316, 293, 264, 1910, 13], "avg_logprob": -0.38398437537252905, "compression_ratio": 1.9655172413793103, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1548.57, "end": 1548.77, "word": " I", "probability": 0.38671875}, {"start": 1548.77, "end": 1548.95, "word": " request", "probability": 0.4501953125}, {"start": 1548.95, "end": 1549.07, "word": " the", "probability": 0.60693359375}, {"start": 1549.07, "end": 1549.45, "word": " user,", "probability": 0.7197265625}, {"start": 1549.89, "end": 1550.03, "word": " the", "probability": 0.57470703125}, {"start": 1550.03, "end": 1550.41, "word": " controller", "probability": 0.71142578125}, {"start": 1550.41, "end": 1550.79, "word": " requests", "probability": 0.3271484375}, {"start": 1550.79, "end": 1551.09, "word": " the", "probability": 0.53125}, {"start": 1551.09, "end": 1551.31, "word": " data", "probability": 0.5546875}, {"start": 1551.31, "end": 1551.57, "word": " from", "probability": 0.810546875}, {"start": 1551.57, "end": 1551.95, "word": " the", "probability": 0.8720703125}, {"start": 1551.95, "end": 1551.95, "word": " model,", "probability": 0.86572265625}, {"start": 1552.11, "end": 1552.75, "word": " and", "probability": 0.6455078125}, {"start": 1552.75, "end": 1552.99, "word": " then", "probability": 0.6708984375}, {"start": 1552.99, "end": 1553.17, "word": " it", "probability": 0.2349853515625}, {"start": 1553.17, "end": 1553.57, "word": " updates", "probability": 0.2449951171875}, {"start": 1553.57, "end": 1554.61, "word": " the", "probability": 0.42333984375}, {"start": 1554.61, "end": 1554.81, "word": " view.", "probability": 0.71337890625}, {"start": 1558.45, "end": 1559.01, "word": " In", "probability": 0.34130859375}, {"start": 1559.01, "end": 1559.37, "word": " the", "probability": 0.6611328125}, {"start": 1559.37, "end": 1559.57, "word": " model", "probability": 0.4765625}, {"start": 1559.57, "end": 1559.77, "word": "-view", "probability": 0.76806640625}, {"start": 1559.77, "end": 1560.35, "word": " controller,", "probability": 0.6259765625}, {"start": 1560.73, "end": 1561.05, "word": " this", "probability": 0.8955078125}, {"start": 1561.05, "end": 1561.35, "word": " pattern", "probability": 0.8291015625}, {"start": 1561.35, "end": 1562.05, "word": " separates", "probability": 0.88916015625}, {"start": 1562.05, "end": 1562.29, "word": " an", "probability": 0.88330078125}, {"start": 1562.29, "end": 1562.81, "word": " application", "probability": 0.9287109375}, {"start": 1562.81, "end": 1563.17, "word": " into", "probability": 0.84814453125}, {"start": 1563.17, "end": 1563.49, "word": " three", "probability": 0.8564453125}, {"start": 1563.49, "end": 1564.31, "word": " interconnected", "probability": 0.88525390625}, {"start": 1564.31, "end": 1565.01, "word": " components.", "probability": 0.78955078125}, {"start": 1566.07, "end": 1566.35, "word": " Three", "probability": 0.4453125}, {"start": 1566.35, "end": 1566.89, "word": " parts", "probability": 0.452392578125}, {"start": 1566.89, "end": 1567.73, "word": " connected", "probability": 0.426513671875}, {"start": 1567.73, "end": 1567.95, "word": " to", "probability": 0.57080078125}, {"start": 1567.95, "end": 1568.11, "word": " each", "probability": 0.78515625}, {"start": 1568.11, "end": 1568.11, "word": " other.", "probability": 0.89453125}, {"start": 1568.19, "end": 1568.25, "word": " The", "probability": 0.75341796875}, {"start": 1568.25, "end": 1568.53, "word": " model,", "probability": 0.90087890625}, {"start": 1568.87, "end": 1568.89, "word": " which", "probability": 0.87646484375}, {"start": 1568.89, "end": 1569.07, "word": " is", "probability": 0.8623046875}, {"start": 1569.07, "end": 1569.51, "word": " the", "probability": 0.37158203125}, {"start": 1569.51, "end": 1569.77, "word": " data", "probability": 0.79150390625}, {"start": 1569.77, "end": 1569.95, "word": " and", "probability": 0.8955078125}, {"start": 1569.95, "end": 1570.21, "word": " business", "probability": 0.93408203125}, {"start": 1570.21, "end": 1570.61, "word": " logic,", "probability": 0.9638671875}, {"start": 1570.69, "end": 1570.83, "word": " the", "probability": 0.73291015625}, {"start": 1570.83, "end": 1571.11, "word": " view,", "probability": 0.83203125}, {"start": 1571.29, "end": 1571.39, "word": " the", "probability": 0.755859375}, {"start": 1571.39, "end": 1571.59, "word": " user", "probability": 0.94580078125}, {"start": 1571.59, "end": 1572.11, "word": " interface,", "probability": 0.84765625}, {"start": 1572.25, "end": 1572.27, "word": " and", "probability": 0.91552734375}, {"start": 1572.27, "end": 1572.39, "word": " the", "probability": 0.9130859375}, {"start": 1572.39, "end": 1572.83, "word": " controller,", "probability": 0.80712890625}, {"start": 1573.65, "end": 1573.67, "word": " which", "probability": 0.9140625}, {"start": 1573.67, "end": 1573.83, "word": " is", "probability": 0.89599609375}, {"start": 1573.83, "end": 1574.19, "word": " the", "probability": 0.318359375}, {"start": 1574.19, "end": 1575.99, "word": " intermediary", "probability": 0.865966796875}, {"start": 1575.99, "end": 1576.27, "word": " between", "probability": 0.88623046875}, {"start": 1576.27, "end": 1577.23, "word": " the", "probability": 0.88720703125}, {"start": 1577.23, "end": 1577.41, "word": " model", "probability": 0.93701171875}, {"start": 1577.41, "end": 1577.63, "word": " and", "probability": 0.943359375}, {"start": 1577.63, "end": 1577.77, "word": " the", "probability": 0.89599609375}, {"start": 1577.77, "end": 1577.93, "word": " view.", "probability": 0.88623046875}], "temperature": 1.0}, {"id": 67, "seek": 160627, "start": 1580.71, "end": 1606.27, "text": " Now, this is the general form of MVC in the case of web. As I said, I make a request to the controller. The controller makes a request to the data from the model, prepares the data for him, creates the view and sends the data to him to show it to him. And then the view is shown to the user.", "tokens": [823, 11, 341, 307, 264, 2674, 1254, 295, 17663, 34, 294, 264, 1389, 295, 3670, 13, 1018, 286, 848, 11, 286, 652, 257, 5308, 281, 264, 10561, 13, 440, 10561, 1669, 257, 5308, 281, 264, 1412, 490, 264, 2316, 11, 39418, 264, 1412, 337, 796, 11, 7829, 264, 1910, 293, 14790, 264, 1412, 281, 796, 281, 855, 309, 281, 796, 13, 400, 550, 264, 1910, 307, 4898, 281, 264, 4195, 13], "avg_logprob": -0.4626736206312974, "compression_ratio": 1.7176470588235293, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 1580.71, "end": 1581.23, "word": " Now,", "probability": 0.359130859375}, {"start": 1581.57, "end": 1581.89, "word": " this", "probability": 0.81787109375}, {"start": 1581.89, "end": 1582.21, "word": " is", "probability": 0.904296875}, {"start": 1582.21, "end": 1582.27, "word": " the", "probability": 0.70751953125}, {"start": 1582.27, "end": 1582.53, "word": " general", "probability": 0.734375}, {"start": 1582.53, "end": 1582.53, "word": " form", "probability": 0.30224609375}, {"start": 1582.53, "end": 1583.59, "word": " of", "probability": 0.7470703125}, {"start": 1583.59, "end": 1584.29, "word": " MVC", "probability": 0.7568359375}, {"start": 1584.29, "end": 1585.73, "word": " in", "probability": 0.6865234375}, {"start": 1585.73, "end": 1585.87, "word": " the", "probability": 0.386474609375}, {"start": 1585.87, "end": 1585.97, "word": " case", "probability": 0.66845703125}, {"start": 1585.97, "end": 1586.09, "word": " of", "probability": 0.97021484375}, {"start": 1586.09, "end": 1586.33, "word": " web.", "probability": 0.5673828125}, {"start": 1586.47, "end": 1586.69, "word": " As", "probability": 0.689453125}, {"start": 1586.69, "end": 1586.83, "word": " I", "probability": 0.64111328125}, {"start": 1586.83, "end": 1586.97, "word": " said,", "probability": 0.70068359375}, {"start": 1587.07, "end": 1587.17, "word": " I", "probability": 0.94921875}, {"start": 1587.17, "end": 1587.37, "word": " make", "probability": 0.52392578125}, {"start": 1587.37, "end": 1587.49, "word": " a", "probability": 0.86962890625}, {"start": 1587.49, "end": 1587.77, "word": " request", "probability": 0.93310546875}, {"start": 1587.77, "end": 1587.97, "word": " to", "probability": 0.81103515625}, {"start": 1587.97, "end": 1588.07, "word": " the", "probability": 0.8466796875}, {"start": 1588.07, "end": 1588.49, "word": " controller.", "probability": 0.77001953125}, {"start": 1589.59, "end": 1590.11, "word": " The", "probability": 0.8212890625}, {"start": 1590.11, "end": 1590.57, "word": " controller", "probability": 0.837890625}, {"start": 1590.57, "end": 1592.63, "word": " makes", "probability": 0.58154296875}, {"start": 1592.63, "end": 1592.79, "word": " a", "probability": 0.9169921875}, {"start": 1592.79, "end": 1593.05, "word": " request", "probability": 0.95166015625}, {"start": 1593.05, "end": 1593.25, "word": " to", "probability": 0.513671875}, {"start": 1593.25, "end": 1593.35, "word": " the", "probability": 0.78173828125}, {"start": 1593.35, "end": 1593.57, "word": " data", "probability": 0.58251953125}, {"start": 1593.57, "end": 1593.77, "word": " from", "probability": 0.7470703125}, {"start": 1593.77, "end": 1593.91, "word": " the", "probability": 0.89697265625}, {"start": 1593.91, "end": 1594.15, "word": " model,", "probability": 0.92919921875}, {"start": 1595.17, "end": 1595.45, "word": " prepares", "probability": 0.211669921875}, {"start": 1595.45, "end": 1595.79, "word": " the", "probability": 0.78955078125}, {"start": 1595.79, "end": 1596.15, "word": " data", "probability": 0.93798828125}, {"start": 1596.15, "end": 1596.15, "word": " for", "probability": 0.307861328125}, {"start": 1596.15, "end": 1596.15, "word": " him,", "probability": 0.59521484375}, {"start": 1596.89, "end": 1597.83, "word": " creates", "probability": 0.2484130859375}, {"start": 1597.83, "end": 1598.05, "word": " the", "probability": 0.52685546875}, {"start": 1598.05, "end": 1598.31, "word": " view", "probability": 0.86083984375}, {"start": 1598.31, "end": 1598.59, "word": " and", "probability": 0.48095703125}, {"start": 1598.59, "end": 1598.87, "word": " sends", "probability": 0.59814453125}, {"start": 1598.87, "end": 1599.23, "word": " the", "probability": 0.327392578125}, {"start": 1599.23, "end": 1599.49, "word": " data", "probability": 0.9169921875}, {"start": 1599.49, "end": 1599.69, "word": " to", "probability": 0.8271484375}, {"start": 1599.69, "end": 1599.79, "word": " him", "probability": 0.72021484375}, {"start": 1599.79, "end": 1599.79, "word": " to", "probability": 0.640625}, {"start": 1599.79, "end": 1599.99, "word": " show", "probability": 0.25439453125}, {"start": 1599.99, "end": 1600.21, "word": " it", "probability": 0.728515625}, {"start": 1600.21, "end": 1600.65, "word": " to", "probability": 0.56640625}, {"start": 1600.65, "end": 1600.81, "word": " him.", "probability": 0.9072265625}, {"start": 1602.37, "end": 1602.89, "word": " And", "probability": 0.474853515625}, {"start": 1602.89, "end": 1603.23, "word": " then", "probability": 0.7685546875}, {"start": 1603.23, "end": 1604.09, "word": " the", "probability": 0.61962890625}, {"start": 1604.09, "end": 1604.33, "word": " view", "probability": 0.79931640625}, {"start": 1604.33, "end": 1604.53, "word": " is", "probability": 0.8779296875}, {"start": 1604.53, "end": 1604.91, "word": " shown", "probability": 0.251708984375}, {"start": 1604.91, "end": 1605.81, "word": " to", "probability": 0.958984375}, {"start": 1605.81, "end": 1605.91, "word": " the", "probability": 0.9140625}, {"start": 1605.91, "end": 1606.27, "word": " user.", "probability": 0.95263671875}], "temperature": 1.0}, {"id": 68, "seek": 163188, "start": 1607.26, "end": 1631.88, "text": " Because here it explains the parts of the MVC. It says that the model represents data and business logic. The view is responsible for rendering the user interface of the application only in the code of HTML, CSS and JavaScript. The controller is a medium between the two. It receives input from the user, interacts with the model to retrieve or modify data, and then passes the data to the view.", "tokens": [1436, 510, 309, 13948, 264, 3166, 295, 264, 17663, 34, 13, 467, 1619, 300, 264, 2316, 8855, 1412, 293, 1606, 9952, 13, 440, 1910, 307, 6250, 337, 22407, 264, 4195, 9226, 295, 264, 3861, 787, 294, 264, 3089, 295, 17995, 11, 24387, 293, 15778, 13, 440, 10561, 307, 257, 6399, 1296, 264, 732, 13, 467, 20717, 4846, 490, 264, 4195, 11, 43582, 365, 264, 2316, 281, 30254, 420, 16927, 1412, 11, 293, 550, 11335, 264, 1412, 281, 264, 1910, 13], "avg_logprob": -0.31983025280045874, "compression_ratio": 1.616326530612245, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1607.26, "end": 1607.6, "word": " Because", "probability": 0.256591796875}, {"start": 1607.6, "end": 1607.8, "word": " here", "probability": 0.72900390625}, {"start": 1607.8, "end": 1607.88, "word": " it", "probability": 0.386474609375}, {"start": 1607.88, "end": 1608.2, "word": " explains", "probability": 0.57080078125}, {"start": 1608.2, "end": 1608.7, "word": " the", "probability": 0.52001953125}, {"start": 1608.7, "end": 1608.92, "word": " parts", "probability": 0.5927734375}, {"start": 1608.92, "end": 1609.08, "word": " of", "probability": 0.95703125}, {"start": 1609.08, "end": 1609.14, "word": " the", "probability": 0.52001953125}, {"start": 1609.14, "end": 1609.66, "word": " MVC.", "probability": 0.906982421875}, {"start": 1609.84, "end": 1609.98, "word": " It", "probability": 0.314453125}, {"start": 1609.98, "end": 1610.22, "word": " says", "probability": 0.343017578125}, {"start": 1610.22, "end": 1610.4, "word": " that", "probability": 0.56298828125}, {"start": 1610.4, "end": 1610.42, "word": " the", "probability": 0.7275390625}, {"start": 1610.42, "end": 1610.62, "word": " model", "probability": 0.826171875}, {"start": 1610.62, "end": 1611.12, "word": " represents", "probability": 0.7373046875}, {"start": 1611.12, "end": 1611.5, "word": " data", "probability": 0.39892578125}, {"start": 1611.5, "end": 1611.64, "word": " and", "probability": 0.89990234375}, {"start": 1611.64, "end": 1611.92, "word": " business", "probability": 0.89990234375}, {"start": 1611.92, "end": 1612.98, "word": " logic.", "probability": 0.96533203125}, {"start": 1614.22, "end": 1614.68, "word": " The", "probability": 0.277099609375}, {"start": 1614.68, "end": 1615.0, "word": " view", "probability": 0.6865234375}, {"start": 1615.0, "end": 1615.48, "word": " is", "probability": 0.6123046875}, {"start": 1615.48, "end": 1615.96, "word": " responsible", "probability": 0.9306640625}, {"start": 1615.96, "end": 1616.26, "word": " for", "probability": 0.9296875}, {"start": 1616.26, "end": 1616.64, "word": " rendering", "probability": 0.92724609375}, {"start": 1616.64, "end": 1616.86, "word": " the", "probability": 0.86669921875}, {"start": 1616.86, "end": 1617.06, "word": " user", "probability": 0.93896484375}, {"start": 1617.06, "end": 1617.74, "word": " interface", "probability": 0.859375}, {"start": 1617.74, "end": 1618.04, "word": " of", "probability": 0.92626953125}, {"start": 1618.04, "end": 1618.14, "word": " the", "probability": 0.89794921875}, {"start": 1618.14, "end": 1618.62, "word": " application", "probability": 0.91064453125}, {"start": 1618.62, "end": 1618.98, "word": " only", "probability": 0.420166015625}, {"start": 1618.98, "end": 1619.14, "word": " in", "probability": 0.468505859375}, {"start": 1619.14, "end": 1619.22, "word": " the", "probability": 0.59228515625}, {"start": 1619.22, "end": 1619.38, "word": " code", "probability": 0.45458984375}, {"start": 1619.38, "end": 1619.46, "word": " of", "probability": 0.9169921875}, {"start": 1619.46, "end": 1619.82, "word": " HTML,", "probability": 0.83056640625}, {"start": 1619.98, "end": 1620.32, "word": " CSS", "probability": 0.89697265625}, {"start": 1620.32, "end": 1620.54, "word": " and", "probability": 0.6806640625}, {"start": 1620.54, "end": 1621.04, "word": " JavaScript.", "probability": 0.65478515625}, {"start": 1621.64, "end": 1621.74, "word": " The", "probability": 0.7998046875}, {"start": 1621.74, "end": 1622.12, "word": " controller", "probability": 0.7734375}, {"start": 1622.12, "end": 1622.3, "word": " is", "probability": 0.904296875}, {"start": 1622.3, "end": 1623.08, "word": " a", "probability": 0.444580078125}, {"start": 1623.08, "end": 1623.08, "word": " medium", "probability": 0.53125}, {"start": 1623.08, "end": 1623.76, "word": " between", "probability": 0.841796875}, {"start": 1623.76, "end": 1623.96, "word": " the", "probability": 0.6943359375}, {"start": 1623.96, "end": 1624.12, "word": " two.", "probability": 0.93994140625}, {"start": 1624.26, "end": 1624.44, "word": " It", "probability": 0.873046875}, {"start": 1624.44, "end": 1624.92, "word": " receives", "probability": 0.86865234375}, {"start": 1624.92, "end": 1625.28, "word": " input", "probability": 0.87451171875}, {"start": 1625.28, "end": 1625.54, "word": " from", "probability": 0.88037109375}, {"start": 1625.54, "end": 1625.74, "word": " the", "probability": 0.912109375}, {"start": 1625.74, "end": 1626.06, "word": " user,", "probability": 0.95458984375}, {"start": 1626.24, "end": 1626.76, "word": " interacts", "probability": 0.94580078125}, {"start": 1626.76, "end": 1626.98, "word": " with", "probability": 0.89453125}, {"start": 1626.98, "end": 1627.14, "word": " the", "probability": 0.9140625}, {"start": 1627.14, "end": 1627.4, "word": " model", "probability": 0.93310546875}, {"start": 1627.4, "end": 1628.28, "word": " to", "probability": 0.92578125}, {"start": 1628.28, "end": 1628.7, "word": " retrieve", "probability": 0.8486328125}, {"start": 1628.7, "end": 1628.9, "word": " or", "probability": 0.9482421875}, {"start": 1628.9, "end": 1629.18, "word": " modify", "probability": 0.97021484375}, {"start": 1629.18, "end": 1629.58, "word": " data,", "probability": 0.90380859375}, {"start": 1629.7, "end": 1629.78, "word": " and", "probability": 0.91943359375}, {"start": 1629.78, "end": 1629.98, "word": " then", "probability": 0.86083984375}, {"start": 1629.98, "end": 1630.36, "word": " passes", "probability": 0.88134765625}, {"start": 1630.36, "end": 1630.58, "word": " the", "probability": 0.86669921875}, {"start": 1630.58, "end": 1630.92, "word": " data", "probability": 0.93359375}, {"start": 1630.92, "end": 1631.54, "word": " to", "probability": 0.9658203125}, {"start": 1631.54, "end": 1631.72, "word": " the", "probability": 0.92333984375}, {"start": 1631.72, "end": 1631.88, "word": " view.", "probability": 0.884765625}], "temperature": 1.0}, {"id": 69, "seek": 165800, "start": 1632.72, "end": 1658.0, "text": "The controller is responsible for handling user interactions and coordinating the flow of data between the model and the view. Before we continue, let me show you a code. It's not working because it needs a connection to a database. But I want to show you how the design is bad in Java. We don't talk about Laravel or others. How a system is badly designed", "tokens": [2278, 10561, 307, 6250, 337, 13175, 4195, 13280, 293, 37824, 264, 3095, 295, 1412, 1296, 264, 2316, 293, 264, 1910, 13, 4546, 321, 2354, 11, 718, 385, 855, 291, 257, 3089, 13, 467, 311, 406, 1364, 570, 309, 2203, 257, 4984, 281, 257, 8149, 13, 583, 286, 528, 281, 855, 291, 577, 264, 1715, 307, 1578, 294, 10745, 13, 492, 500, 380, 751, 466, 33935, 779, 420, 2357, 13, 1012, 257, 1185, 307, 13425, 4761], "avg_logprob": -0.36595395128977926, "compression_ratio": 1.5682819383259912, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 1632.72, "end": 1632.98, "word": "The", "probability": 0.7197265625}, {"start": 1632.98, "end": 1633.42, "word": " controller", "probability": 0.771484375}, {"start": 1633.42, "end": 1633.64, "word": " is", "probability": 0.9443359375}, {"start": 1633.64, "end": 1634.18, "word": " responsible", "probability": 0.9375}, {"start": 1634.18, "end": 1634.44, "word": " for", "probability": 0.953125}, {"start": 1634.44, "end": 1634.8, "word": " handling", "probability": 0.92626953125}, {"start": 1634.8, "end": 1635.1, "word": " user", "probability": 0.953125}, {"start": 1635.1, "end": 1635.72, "word": " interactions", "probability": 0.83544921875}, {"start": 1635.72, "end": 1635.98, "word": " and", "probability": 0.85107421875}, {"start": 1635.98, "end": 1636.56, "word": " coordinating", "probability": 0.90576171875}, {"start": 1636.56, "end": 1636.82, "word": " the", "probability": 0.908203125}, {"start": 1636.82, "end": 1637.1, "word": " flow", "probability": 0.8984375}, {"start": 1637.1, "end": 1637.26, "word": " of", "probability": 0.97021484375}, {"start": 1637.26, "end": 1637.58, "word": " data", "probability": 0.935546875}, {"start": 1637.58, "end": 1637.92, "word": " between", "probability": 0.884765625}, {"start": 1637.92, "end": 1638.12, "word": " the", "probability": 0.9140625}, {"start": 1638.12, "end": 1638.4, "word": " model", "probability": 0.9375}, {"start": 1638.4, "end": 1639.46, "word": " and", "probability": 0.93603515625}, {"start": 1639.46, "end": 1640.22, "word": " the", "probability": 0.90869140625}, {"start": 1640.22, "end": 1640.44, "word": " view.", "probability": 0.8310546875}, {"start": 1643.44, "end": 1643.84, "word": " Before", "probability": 0.78515625}, {"start": 1643.84, "end": 1644.02, "word": " we", "probability": 0.662109375}, {"start": 1644.02, "end": 1644.32, "word": " continue,", "probability": 0.62451171875}, {"start": 1644.86, "end": 1645.52, "word": " let", "probability": 0.7724609375}, {"start": 1645.52, "end": 1645.66, "word": " me", "probability": 0.90234375}, {"start": 1645.66, "end": 1646.02, "word": " show", "probability": 0.7802734375}, {"start": 1646.02, "end": 1646.2, "word": " you", "probability": 0.951171875}, {"start": 1646.2, "end": 1646.28, "word": " a", "probability": 0.748046875}, {"start": 1646.28, "end": 1646.5, "word": " code.", "probability": 0.876953125}, {"start": 1646.56, "end": 1646.72, "word": " It's", "probability": 0.5799560546875}, {"start": 1646.72, "end": 1646.88, "word": " not", "probability": 0.8583984375}, {"start": 1646.88, "end": 1647.24, "word": " working", "probability": 0.37158203125}, {"start": 1647.24, "end": 1647.64, "word": " because", "probability": 0.65380859375}, {"start": 1647.64, "end": 1648.06, "word": " it", "probability": 0.806640625}, {"start": 1648.06, "end": 1648.32, "word": " needs", "probability": 0.6044921875}, {"start": 1648.32, "end": 1648.46, "word": " a", "probability": 0.564453125}, {"start": 1648.46, "end": 1648.72, "word": " connection", "probability": 0.865234375}, {"start": 1648.72, "end": 1648.9, "word": " to", "probability": 0.8857421875}, {"start": 1648.9, "end": 1648.96, "word": " a", "probability": 0.4619140625}, {"start": 1648.96, "end": 1649.3, "word": " database.", "probability": 0.92431640625}, {"start": 1649.42, "end": 1649.5, "word": " But", "probability": 0.336669921875}, {"start": 1649.5, "end": 1649.56, "word": " I", "probability": 0.78369140625}, {"start": 1649.56, "end": 1649.66, "word": " want", "probability": 0.68701171875}, {"start": 1649.66, "end": 1649.72, "word": " to", "probability": 0.95947265625}, {"start": 1649.72, "end": 1649.92, "word": " show", "probability": 0.9248046875}, {"start": 1649.92, "end": 1650.22, "word": " you", "probability": 0.9404296875}, {"start": 1650.22, "end": 1651.4, "word": " how", "probability": 0.77197265625}, {"start": 1651.4, "end": 1651.6, "word": " the", "probability": 0.51416015625}, {"start": 1651.6, "end": 1651.92, "word": " design", "probability": 0.654296875}, {"start": 1651.92, "end": 1652.06, "word": " is", "probability": 0.66650390625}, {"start": 1652.06, "end": 1652.38, "word": " bad", "probability": 0.4462890625}, {"start": 1652.38, "end": 1652.56, "word": " in", "probability": 0.68994140625}, {"start": 1652.56, "end": 1652.84, "word": " Java.", "probability": 0.830078125}, {"start": 1653.02, "end": 1653.02, "word": " We", "probability": 0.443603515625}, {"start": 1653.02, "end": 1654.12, "word": " don't", "probability": 0.5904541015625}, {"start": 1654.12, "end": 1654.46, "word": " talk", "probability": 0.59912109375}, {"start": 1654.46, "end": 1654.84, "word": " about", "probability": 0.82666015625}, {"start": 1654.84, "end": 1655.48, "word": " Laravel", "probability": 0.7227783203125}, {"start": 1655.48, "end": 1655.6, "word": " or", "probability": 0.69580078125}, {"start": 1655.6, "end": 1655.84, "word": " others.", "probability": 0.229248046875}, {"start": 1656.3, "end": 1656.82, "word": " How", "probability": 0.422607421875}, {"start": 1656.82, "end": 1656.92, "word": " a", "probability": 0.44482421875}, {"start": 1656.92, "end": 1657.36, "word": " system", "probability": 0.91357421875}, {"start": 1657.36, "end": 1657.74, "word": " is", "probability": 0.5703125}, {"start": 1657.74, "end": 1657.84, "word": " badly", "probability": 0.52001953125}, {"start": 1657.84, "end": 1658.0, "word": " designed", "probability": 0.4453125}], "temperature": 1.0}, {"id": 70, "seek": 167936, "start": 1659.64, "end": 1679.36, "text": "and how I applied the NVC model on it. What I have here is the bad design. Now, my application is a system with a user interface that connects to a table related to students and wants to get the data and display it in a list view.", "tokens": [474, 577, 286, 6456, 264, 46512, 34, 2316, 322, 309, 13, 708, 286, 362, 510, 307, 264, 1578, 1715, 13, 823, 11, 452, 3861, 307, 257, 1185, 365, 257, 4195, 9226, 300, 16967, 281, 257, 3199, 4077, 281, 1731, 293, 2738, 281, 483, 264, 1412, 293, 4674, 309, 294, 257, 1329, 1910, 13], "avg_logprob": -0.5810184997540934, "compression_ratio": 1.4375, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1659.64, "end": 1659.84, "word": "and", "probability": 0.2412109375}, {"start": 1659.84, "end": 1660.02, "word": " how", "probability": 0.6982421875}, {"start": 1660.02, "end": 1660.3, "word": " I", "probability": 0.5546875}, {"start": 1660.3, "end": 1660.7, "word": " applied", "probability": 0.259033203125}, {"start": 1660.7, "end": 1661.68, "word": " the", "probability": 0.541015625}, {"start": 1661.68, "end": 1662.06, "word": " NVC", "probability": 0.7303466796875}, {"start": 1662.06, "end": 1662.32, "word": " model", "probability": 0.7666015625}, {"start": 1662.32, "end": 1662.48, "word": " on", "probability": 0.337158203125}, {"start": 1662.48, "end": 1662.66, "word": " it.", "probability": 0.77392578125}, {"start": 1663.04, "end": 1663.1, "word": " What", "probability": 0.456787109375}, {"start": 1663.1, "end": 1663.18, "word": " I", "probability": 0.483642578125}, {"start": 1663.18, "end": 1663.28, "word": " have", "probability": 0.6484375}, {"start": 1663.28, "end": 1663.82, "word": " here", "probability": 0.60595703125}, {"start": 1663.82, "end": 1664.52, "word": " is", "probability": 0.806640625}, {"start": 1664.52, "end": 1664.88, "word": " the", "probability": 0.634765625}, {"start": 1664.88, "end": 1665.04, "word": " bad", "probability": 0.193115234375}, {"start": 1665.04, "end": 1665.44, "word": " design.", "probability": 0.96484375}, {"start": 1666.64, "end": 1667.02, "word": " Now,", "probability": 0.24267578125}, {"start": 1667.36, "end": 1667.56, "word": " my", "probability": 0.5380859375}, {"start": 1667.56, "end": 1668.2, "word": " application", "probability": 0.8369140625}, {"start": 1668.2, "end": 1668.96, "word": " is", "probability": 0.7373046875}, {"start": 1668.96, "end": 1669.28, "word": " a", "probability": 0.7001953125}, {"start": 1669.28, "end": 1669.76, "word": " system", "probability": 0.9267578125}, {"start": 1669.76, "end": 1670.76, "word": " with", "probability": 0.41064453125}, {"start": 1670.76, "end": 1672.18, "word": " a", "probability": 0.70751953125}, {"start": 1672.18, "end": 1672.42, "word": " user", "probability": 0.9052734375}, {"start": 1672.42, "end": 1673.12, "word": " interface", "probability": 0.87158203125}, {"start": 1673.12, "end": 1673.46, "word": " that", "probability": 0.47265625}, {"start": 1673.46, "end": 1674.12, "word": " connects", "probability": 0.39794921875}, {"start": 1674.12, "end": 1674.7, "word": " to", "probability": 0.705078125}, {"start": 1674.7, "end": 1674.8, "word": " a", "probability": 0.791015625}, {"start": 1674.8, "end": 1675.18, "word": " table", "probability": 0.833984375}, {"start": 1675.18, "end": 1675.58, "word": " related", "probability": 0.34326171875}, {"start": 1675.58, "end": 1675.84, "word": " to", "probability": 0.95654296875}, {"start": 1675.84, "end": 1676.32, "word": " students", "probability": 0.888671875}, {"start": 1676.32, "end": 1676.52, "word": " and", "probability": 0.42724609375}, {"start": 1676.52, "end": 1676.74, "word": " wants", "probability": 0.09716796875}, {"start": 1676.74, "end": 1676.74, "word": " to", "probability": 0.92724609375}, {"start": 1676.74, "end": 1676.9, "word": " get", "probability": 0.161376953125}, {"start": 1676.9, "end": 1677.02, "word": " the", "probability": 0.50830078125}, {"start": 1677.02, "end": 1677.28, "word": " data", "probability": 0.81884765625}, {"start": 1677.28, "end": 1677.44, "word": " and", "probability": 0.83447265625}, {"start": 1677.44, "end": 1677.66, "word": " display", "probability": 0.69970703125}, {"start": 1677.66, "end": 1678.5, "word": " it", "probability": 0.71240234375}, {"start": 1678.5, "end": 1678.78, "word": " in", "probability": 0.75830078125}, {"start": 1678.78, "end": 1678.86, "word": " a", "probability": 0.30029296875}, {"start": 1678.86, "end": 1679.08, "word": " list", "probability": 0.75634765625}, {"start": 1679.08, "end": 1679.36, "word": " view.", "probability": 0.74169921875}], "temperature": 1.0}, {"id": 71, "seek": 170036, "start": 1680.9, "end": 1700.36, "text": " List in java application As I said, I can't work because I don't have MySQL connection here But let's take a look at the code in general Because this is a JFrame, okay? And actually, I made a Jlist, this is the result of it And there is a search button", "tokens": [17668, 294, 361, 4061, 3861, 1018, 286, 848, 11, 286, 393, 380, 589, 570, 286, 500, 380, 362, 1222, 39934, 4984, 510, 583, 718, 311, 747, 257, 574, 412, 264, 3089, 294, 2674, 1436, 341, 307, 257, 508, 40305, 529, 11, 1392, 30, 400, 767, 11, 286, 1027, 257, 508, 8264, 11, 341, 307, 264, 1874, 295, 309, 400, 456, 307, 257, 3164, 2960], "avg_logprob": -0.7129807692307693, "compression_ratio": 1.3977900552486189, "no_speech_prob": 1.043081283569336e-05, "words": [{"start": 1680.9, "end": 1681.42, "word": " List", "probability": 0.1295166015625}, {"start": 1681.42, "end": 1681.94, "word": " in", "probability": 0.1361083984375}, {"start": 1681.94, "end": 1683.02, "word": " java", "probability": 0.59765625}, {"start": 1683.02, "end": 1683.02, "word": " application", "probability": 0.317626953125}, {"start": 1683.02, "end": 1683.64, "word": " As", "probability": 0.27197265625}, {"start": 1683.64, "end": 1683.78, "word": " I", "probability": 0.67236328125}, {"start": 1683.78, "end": 1683.9, "word": " said,", "probability": 0.69384765625}, {"start": 1684.0, "end": 1684.04, "word": " I", "probability": 0.91357421875}, {"start": 1684.04, "end": 1684.2, "word": " can't", "probability": 0.6370849609375}, {"start": 1684.2, "end": 1684.54, "word": " work", "probability": 0.406005859375}, {"start": 1684.54, "end": 1684.7, "word": " because", "probability": 0.35498046875}, {"start": 1684.7, "end": 1684.94, "word": " I", "probability": 0.61083984375}, {"start": 1684.94, "end": 1685.0, "word": " don't", "probability": 0.898193359375}, {"start": 1685.0, "end": 1685.22, "word": " have", "probability": 0.939453125}, {"start": 1685.22, "end": 1685.7, "word": " MySQL", "probability": 0.717529296875}, {"start": 1685.7, "end": 1686.4, "word": " connection", "probability": 0.43896484375}, {"start": 1686.4, "end": 1686.92, "word": " here", "probability": 0.3115234375}, {"start": 1686.92, "end": 1687.18, "word": " But", "probability": 0.348876953125}, {"start": 1687.18, "end": 1687.56, "word": " let's", "probability": 0.5748291015625}, {"start": 1687.56, "end": 1687.8, "word": " take", "probability": 0.1475830078125}, {"start": 1687.8, "end": 1687.92, "word": " a", "probability": 0.90673828125}, {"start": 1687.92, "end": 1687.92, "word": " look", "probability": 0.912109375}, {"start": 1687.92, "end": 1687.98, "word": " at", "probability": 0.9052734375}, {"start": 1687.98, "end": 1688.04, "word": " the", "probability": 0.7958984375}, {"start": 1688.04, "end": 1688.26, "word": " code", "probability": 0.90283203125}, {"start": 1688.26, "end": 1689.12, "word": " in", "probability": 0.1602783203125}, {"start": 1689.12, "end": 1689.72, "word": " general", "probability": 0.85693359375}, {"start": 1689.72, "end": 1690.48, "word": " Because", "probability": 0.5908203125}, {"start": 1690.48, "end": 1690.66, "word": " this", "probability": 0.638671875}, {"start": 1690.66, "end": 1690.76, "word": " is", "probability": 0.86279296875}, {"start": 1690.76, "end": 1691.1, "word": " a", "probability": 0.3271484375}, {"start": 1691.1, "end": 1692.48, "word": " JFrame,", "probability": 0.7877604166666666}, {"start": 1692.48, "end": 1692.74, "word": " okay?", "probability": 0.199951171875}, {"start": 1693.36, "end": 1693.46, "word": " And", "probability": 0.6298828125}, {"start": 1693.46, "end": 1693.84, "word": " actually,", "probability": 0.39794921875}, {"start": 1694.44, "end": 1694.8, "word": " I", "probability": 0.662109375}, {"start": 1694.8, "end": 1695.16, "word": " made", "probability": 0.23486328125}, {"start": 1695.16, "end": 1696.08, "word": " a", "probability": 0.462646484375}, {"start": 1696.08, "end": 1696.56, "word": " Jlist,", "probability": 0.715087890625}, {"start": 1696.64, "end": 1696.78, "word": " this", "probability": 0.52001953125}, {"start": 1696.78, "end": 1696.84, "word": " is", "probability": 0.7900390625}, {"start": 1696.84, "end": 1696.88, "word": " the", "probability": 0.681640625}, {"start": 1696.88, "end": 1697.04, "word": " result", "probability": 0.412841796875}, {"start": 1697.04, "end": 1697.12, "word": " of", "probability": 0.37060546875}, {"start": 1697.12, "end": 1697.84, "word": " it", "probability": 0.154541015625}, {"start": 1697.84, "end": 1699.08, "word": " And", "probability": 0.424072265625}, {"start": 1699.08, "end": 1699.28, "word": " there", "probability": 0.380859375}, {"start": 1699.28, "end": 1699.38, "word": " is", "probability": 0.78076171875}, {"start": 1699.38, "end": 1699.8, "word": " a", "probability": 0.63525390625}, {"start": 1699.8, "end": 1700.36, "word": " search", "probability": 0.40771484375}, {"start": 1700.36, "end": 1700.36, "word": " button", "probability": 0.83984375}], "temperature": 1.0}, {"id": 72, "seek": 171914, "start": 1702.32, "end": 1719.14, "text": "Okay? All of this is related to the user interface. But here, do you see what he did here? URL. This is to make a connection to the database file. Okay? All of this code is related to the user interface. Notice here in the constructor, I put code related to the database.", "tokens": [8297, 30, 1057, 295, 341, 307, 4077, 281, 264, 4195, 9226, 13, 583, 510, 11, 360, 291, 536, 437, 415, 630, 510, 30, 12905, 13, 639, 307, 281, 652, 257, 4984, 281, 264, 8149, 3991, 13, 1033, 30, 1057, 295, 341, 3089, 307, 4077, 281, 264, 4195, 9226, 13, 13428, 510, 294, 264, 47479, 11, 286, 829, 3089, 4077, 281, 264, 8149, 13], "avg_logprob": -0.4606933621689677, "compression_ratio": 1.7261146496815287, "no_speech_prob": 3.635883331298828e-06, "words": [{"start": 1702.32, "end": 1702.8, "word": "Okay?", "probability": 0.08917236328125}, {"start": 1702.8, "end": 1703.28, "word": " All", "probability": 0.5166015625}, {"start": 1703.28, "end": 1703.28, "word": " of", "probability": 0.491455078125}, {"start": 1703.28, "end": 1703.28, "word": " this", "probability": 0.50537109375}, {"start": 1703.28, "end": 1703.54, "word": " is", "probability": 0.42236328125}, {"start": 1703.54, "end": 1703.78, "word": " related", "probability": 0.77490234375}, {"start": 1703.78, "end": 1704.02, "word": " to", "probability": 0.9462890625}, {"start": 1704.02, "end": 1704.64, "word": " the", "probability": 0.53076171875}, {"start": 1704.64, "end": 1704.9, "word": " user", "probability": 0.77734375}, {"start": 1704.9, "end": 1705.42, "word": " interface.", "probability": 0.869140625}, {"start": 1705.52, "end": 1705.64, "word": " But", "probability": 0.5390625}, {"start": 1705.64, "end": 1705.9, "word": " here,", "probability": 0.2978515625}, {"start": 1705.98, "end": 1706.16, "word": " do", "probability": 0.227294921875}, {"start": 1706.16, "end": 1706.16, "word": " you", "probability": 0.974609375}, {"start": 1706.16, "end": 1706.28, "word": " see", "probability": 0.87158203125}, {"start": 1706.28, "end": 1706.46, "word": " what", "probability": 0.857421875}, {"start": 1706.46, "end": 1706.58, "word": " he", "probability": 0.25048828125}, {"start": 1706.58, "end": 1706.68, "word": " did", "probability": 0.5322265625}, {"start": 1706.68, "end": 1706.94, "word": " here?", "probability": 0.5478515625}, {"start": 1707.46, "end": 1707.9, "word": " URL.", "probability": 0.6083984375}, {"start": 1708.16, "end": 1708.32, "word": " This", "probability": 0.6982421875}, {"start": 1708.32, "end": 1708.4, "word": " is", "probability": 0.8837890625}, {"start": 1708.4, "end": 1708.6, "word": " to", "probability": 0.66943359375}, {"start": 1708.6, "end": 1708.82, "word": " make", "probability": 0.61083984375}, {"start": 1708.82, "end": 1708.96, "word": " a", "probability": 0.7294921875}, {"start": 1708.96, "end": 1709.32, "word": " connection", "probability": 0.89794921875}, {"start": 1709.32, "end": 1709.56, "word": " to", "probability": 0.81201171875}, {"start": 1709.56, "end": 1709.72, "word": " the", "probability": 0.7548828125}, {"start": 1709.72, "end": 1710.32, "word": " database", "probability": 0.74853515625}, {"start": 1710.32, "end": 1710.32, "word": " file.", "probability": 0.75244140625}, {"start": 1711.6, "end": 1711.9, "word": " Okay?", "probability": 0.65185546875}, {"start": 1712.5, "end": 1712.96, "word": " All", "probability": 0.84521484375}, {"start": 1712.96, "end": 1712.96, "word": " of", "probability": 0.88330078125}, {"start": 1712.96, "end": 1713.08, "word": " this", "probability": 0.9189453125}, {"start": 1713.08, "end": 1713.44, "word": " code", "probability": 0.6953125}, {"start": 1713.44, "end": 1713.58, "word": " is", "probability": 0.6435546875}, {"start": 1713.58, "end": 1713.92, "word": " related", "probability": 0.9443359375}, {"start": 1713.92, "end": 1714.84, "word": " to", "probability": 0.9677734375}, {"start": 1714.84, "end": 1715.28, "word": " the", "probability": 0.861328125}, {"start": 1715.28, "end": 1715.58, "word": " user", "probability": 0.94189453125}, {"start": 1715.58, "end": 1716.24, "word": " interface.", "probability": 0.86962890625}, {"start": 1716.4, "end": 1716.76, "word": " Notice", "probability": 0.5830078125}, {"start": 1716.76, "end": 1716.96, "word": " here", "probability": 0.490478515625}, {"start": 1716.96, "end": 1717.06, "word": " in", "probability": 0.6064453125}, {"start": 1717.06, "end": 1717.2, "word": " the", "probability": 0.42724609375}, {"start": 1717.2, "end": 1717.58, "word": " constructor,", "probability": 0.9462890625}, {"start": 1717.7, "end": 1717.82, "word": " I", "probability": 0.304443359375}, {"start": 1717.82, "end": 1718.06, "word": " put", "probability": 0.6845703125}, {"start": 1718.06, "end": 1718.3, "word": " code", "probability": 0.58740234375}, {"start": 1718.3, "end": 1718.6, "word": " related", "probability": 0.8134765625}, {"start": 1718.6, "end": 1718.78, "word": " to", "probability": 0.97021484375}, {"start": 1718.78, "end": 1718.86, "word": " the", "probability": 0.77783203125}, {"start": 1718.86, "end": 1719.14, "word": " database.", "probability": 0.92138671875}], "temperature": 1.0}, {"id": 73, "seek": 174171, "start": 1720.29, "end": 1741.71, "text": " So he made a connection to the database and implemented a method called getAllStudents() And when he got the data, he made an update to the search list, which is another method that updates the search list Because this method exists in the same method that selectNijmaFrom() executes a query This is the code that executes the query", "tokens": [407, 415, 1027, 257, 4984, 281, 264, 8149, 293, 12270, 257, 3170, 1219, 483, 7868, 42665, 791, 45191, 400, 562, 415, 658, 264, 1412, 11, 415, 1027, 364, 5623, 281, 264, 3164, 1329, 11, 597, 307, 1071, 3170, 300, 9205, 264, 3164, 1329, 1436, 341, 3170, 8198, 294, 264, 912, 3170, 300, 3048, 45, 1718, 1696, 26219, 45191, 4454, 1819, 257, 14581, 639, 307, 264, 3089, 300, 4454, 1819, 264, 14581], "avg_logprob": -0.5473090128766166, "compression_ratio": 1.743455497382199, "no_speech_prob": 6.496906280517578e-06, "words": [{"start": 1720.29, "end": 1720.51, "word": " So", "probability": 0.054443359375}, {"start": 1720.51, "end": 1720.65, "word": " he", "probability": 0.318603515625}, {"start": 1720.65, "end": 1720.79, "word": " made", "probability": 0.334228515625}, {"start": 1720.79, "end": 1720.91, "word": " a", "probability": 0.71533203125}, {"start": 1720.91, "end": 1721.23, "word": " connection", "probability": 0.87109375}, {"start": 1721.23, "end": 1721.41, "word": " to", "probability": 0.63330078125}, {"start": 1721.41, "end": 1721.45, "word": " the", "probability": 0.69677734375}, {"start": 1721.45, "end": 1721.93, "word": " database", "probability": 0.8935546875}, {"start": 1721.93, "end": 1722.07, "word": " and", "probability": 0.65771484375}, {"start": 1722.07, "end": 1722.37, "word": " implemented", "probability": 0.356689453125}, {"start": 1722.37, "end": 1722.47, "word": " a", "probability": 0.859375}, {"start": 1722.47, "end": 1722.65, "word": " method", "probability": 0.91064453125}, {"start": 1722.65, "end": 1723.01, "word": " called", "probability": 0.6396484375}, {"start": 1723.01, "end": 1724.87, "word": " getAllStudents", "probability": 0.77880859375}, {"start": 1724.87, "end": 1725.11, "word": "()", "probability": 0.60107421875}, {"start": 1725.11, "end": 1725.71, "word": " And", "probability": 0.317626953125}, {"start": 1725.71, "end": 1726.13, "word": " when", "probability": 0.79345703125}, {"start": 1726.13, "end": 1726.23, "word": " he", "probability": 0.615234375}, {"start": 1726.23, "end": 1726.37, "word": " got", "probability": 0.2255859375}, {"start": 1726.37, "end": 1726.47, "word": " the", "probability": 0.7470703125}, {"start": 1726.47, "end": 1726.71, "word": " data,", "probability": 0.77734375}, {"start": 1726.83, "end": 1726.91, "word": " he", "probability": 0.80517578125}, {"start": 1726.91, "end": 1727.01, "word": " made", "probability": 0.401611328125}, {"start": 1727.01, "end": 1727.13, "word": " an", "probability": 0.8037109375}, {"start": 1727.13, "end": 1727.43, "word": " update", "probability": 0.91943359375}, {"start": 1727.43, "end": 1727.57, "word": " to", "probability": 0.76953125}, {"start": 1727.57, "end": 1727.67, "word": " the", "probability": 0.82568359375}, {"start": 1727.67, "end": 1727.89, "word": " search", "probability": 0.9296875}, {"start": 1727.89, "end": 1728.21, "word": " list,", "probability": 0.82080078125}, {"start": 1728.31, "end": 1728.39, "word": " which", "probability": 0.8564453125}, {"start": 1728.39, "end": 1728.49, "word": " is", "probability": 0.8935546875}, {"start": 1728.49, "end": 1728.97, "word": " another", "probability": 0.79443359375}, {"start": 1728.97, "end": 1728.97, "word": " method", "probability": 0.94091796875}, {"start": 1728.97, "end": 1729.15, "word": " that", "probability": 0.6376953125}, {"start": 1729.15, "end": 1729.49, "word": " updates", "probability": 0.1737060546875}, {"start": 1729.49, "end": 1730.29, "word": " the", "probability": 0.86474609375}, {"start": 1730.29, "end": 1730.49, "word": " search", "probability": 0.51123046875}, {"start": 1730.49, "end": 1730.65, "word": " list", "probability": 0.876953125}, {"start": 1730.65, "end": 1731.33, "word": " Because", "probability": 0.353271484375}, {"start": 1731.33, "end": 1731.65, "word": " this", "probability": 0.81005859375}, {"start": 1731.65, "end": 1731.93, "word": " method", "probability": 0.802734375}, {"start": 1731.93, "end": 1732.95, "word": " exists", "probability": 0.34814453125}, {"start": 1732.95, "end": 1733.59, "word": " in", "probability": 0.82373046875}, {"start": 1733.59, "end": 1733.71, "word": " the", "probability": 0.59619140625}, {"start": 1733.71, "end": 1733.77, "word": " same", "probability": 0.6396484375}, {"start": 1733.77, "end": 1735.35, "word": " method", "probability": 0.1158447265625}, {"start": 1735.35, "end": 1735.71, "word": " that", "probability": 0.40283203125}, {"start": 1735.71, "end": 1737.19, "word": " selectNijmaFrom", "probability": 0.418701171875}, {"start": 1737.19, "end": 1738.37, "word": "()", "probability": 0.298828125}, {"start": 1738.37, "end": 1739.17, "word": " executes", "probability": 0.59588623046875}, {"start": 1739.17, "end": 1739.29, "word": " a", "probability": 0.76123046875}, {"start": 1739.29, "end": 1739.57, "word": " query", "probability": 0.939453125}, {"start": 1739.57, "end": 1740.29, "word": " This", "probability": 0.2646484375}, {"start": 1740.29, "end": 1740.47, "word": " is", "probability": 0.8857421875}, {"start": 1740.47, "end": 1740.65, "word": " the", "probability": 0.86767578125}, {"start": 1740.65, "end": 1740.85, "word": " code", "probability": 0.9013671875}, {"start": 1740.85, "end": 1740.99, "word": " that", "probability": 0.8779296875}, {"start": 1740.99, "end": 1741.27, "word": " executes", "probability": 0.82177734375}, {"start": 1741.27, "end": 1741.41, "word": " the", "probability": 0.8173828125}, {"start": 1741.41, "end": 1741.71, "word": " query", "probability": 0.9384765625}], "temperature": 1.0}, {"id": 74, "seek": 176793, "start": 1743.07, "end": 1767.93, "text": " on the database, ok? And then the results that come back, I go and make an update to my search list and update it. Now notice that here I have this class, the summary that I got, it has a code related to the view and the code of the SQL that is in it. Of course, this is a very bad design, because tomorrow when you work on companies, one of the things that companies ask is to send me the code of your GitHub, the GitHub account.", "tokens": [322, 264, 8149, 11, 3133, 30, 400, 550, 264, 3542, 300, 808, 646, 11, 286, 352, 293, 652, 364, 5623, 281, 452, 3164, 1329, 293, 5623, 309, 13, 823, 3449, 300, 510, 286, 362, 341, 1508, 11, 264, 12691, 300, 286, 658, 11, 309, 575, 257, 3089, 4077, 281, 264, 1910, 293, 264, 3089, 295, 264, 19200, 300, 307, 294, 309, 13, 2720, 1164, 11, 341, 307, 257, 588, 1578, 1715, 11, 570, 4153, 562, 291, 589, 322, 3431, 11, 472, 295, 264, 721, 300, 3431, 1029, 307, 281, 2845, 385, 264, 3089, 295, 428, 23331, 11, 264, 23331, 2696, 13], "avg_logprob": -0.4926470447989071, "compression_ratio": 1.6968503937007875, "no_speech_prob": 1.1980533599853516e-05, "words": [{"start": 1743.07, "end": 1743.31, "word": " on", "probability": 0.209228515625}, {"start": 1743.31, "end": 1743.41, "word": " the", "probability": 0.69091796875}, {"start": 1743.41, "end": 1743.95, "word": " database,", "probability": 0.87890625}, {"start": 1744.49, "end": 1744.73, "word": " ok?", "probability": 0.139404296875}, {"start": 1745.35, "end": 1745.79, "word": " And", "probability": 0.392333984375}, {"start": 1745.79, "end": 1746.05, "word": " then", "probability": 0.470947265625}, {"start": 1746.05, "end": 1746.19, "word": " the", "probability": 0.455078125}, {"start": 1746.19, "end": 1746.55, "word": " results", "probability": 0.64453125}, {"start": 1746.55, "end": 1746.71, "word": " that", "probability": 0.55859375}, {"start": 1746.71, "end": 1746.93, "word": " come", "probability": 0.331298828125}, {"start": 1746.93, "end": 1747.19, "word": " back,", "probability": 0.740234375}, {"start": 1748.01, "end": 1748.39, "word": " I", "probability": 0.7275390625}, {"start": 1748.39, "end": 1748.49, "word": " go", "probability": 0.378662109375}, {"start": 1748.49, "end": 1748.59, "word": " and", "probability": 0.5595703125}, {"start": 1748.59, "end": 1748.73, "word": " make", "probability": 0.305419921875}, {"start": 1748.73, "end": 1748.87, "word": " an", "probability": 0.7890625}, {"start": 1748.87, "end": 1749.13, "word": " update", "probability": 0.90087890625}, {"start": 1749.13, "end": 1749.31, "word": " to", "probability": 0.57470703125}, {"start": 1749.31, "end": 1749.39, "word": " my", "probability": 0.6005859375}, {"start": 1749.39, "end": 1749.55, "word": " search", "probability": 0.476806640625}, {"start": 1749.55, "end": 1749.89, "word": " list", "probability": 0.857421875}, {"start": 1749.89, "end": 1750.03, "word": " and", "probability": 0.298095703125}, {"start": 1750.03, "end": 1750.19, "word": " update", "probability": 0.79736328125}, {"start": 1750.19, "end": 1750.43, "word": " it.", "probability": 0.85546875}, {"start": 1750.83, "end": 1751.09, "word": " Now", "probability": 0.78369140625}, {"start": 1751.09, "end": 1751.51, "word": " notice", "probability": 0.43896484375}, {"start": 1751.51, "end": 1751.71, "word": " that", "probability": 0.81982421875}, {"start": 1751.71, "end": 1751.87, "word": " here", "probability": 0.53759765625}, {"start": 1751.87, "end": 1751.95, "word": " I", "probability": 0.76953125}, {"start": 1751.95, "end": 1752.19, "word": " have", "probability": 0.93994140625}, {"start": 1752.19, "end": 1752.39, "word": " this", "probability": 0.85400390625}, {"start": 1752.39, "end": 1752.83, "word": " class,", "probability": 0.94482421875}, {"start": 1753.39, "end": 1753.55, "word": " the", "probability": 0.486572265625}, {"start": 1753.55, "end": 1753.85, "word": " summary", "probability": 0.62646484375}, {"start": 1753.85, "end": 1754.01, "word": " that", "probability": 0.6640625}, {"start": 1754.01, "end": 1754.07, "word": " I", "probability": 0.865234375}, {"start": 1754.07, "end": 1754.13, "word": " got,", "probability": 0.34228515625}, {"start": 1754.21, "end": 1754.43, "word": " it", "probability": 0.370361328125}, {"start": 1754.43, "end": 1754.43, "word": " has", "probability": 0.8720703125}, {"start": 1754.43, "end": 1754.53, "word": " a", "probability": 0.482666015625}, {"start": 1754.53, "end": 1754.69, "word": " code", "probability": 0.74072265625}, {"start": 1754.69, "end": 1755.03, "word": " related", "probability": 0.58447265625}, {"start": 1755.03, "end": 1755.19, "word": " to", "probability": 0.9501953125}, {"start": 1755.19, "end": 1755.29, "word": " the", "probability": 0.441650390625}, {"start": 1755.29, "end": 1755.53, "word": " view", "probability": 0.806640625}, {"start": 1755.53, "end": 1756.77, "word": " and", "probability": 0.6416015625}, {"start": 1756.77, "end": 1756.89, "word": " the", "probability": 0.437744140625}, {"start": 1756.89, "end": 1757.07, "word": " code", "probability": 0.86279296875}, {"start": 1757.07, "end": 1757.33, "word": " of", "probability": 0.313720703125}, {"start": 1757.33, "end": 1757.69, "word": " the", "probability": 0.87158203125}, {"start": 1757.69, "end": 1758.15, "word": " SQL", "probability": 0.958984375}, {"start": 1758.15, "end": 1758.35, "word": " that", "probability": 0.548828125}, {"start": 1758.35, "end": 1758.35, "word": " is", "probability": 0.53515625}, {"start": 1758.35, "end": 1758.61, "word": " in", "probability": 0.3134765625}, {"start": 1758.61, "end": 1758.97, "word": " it.", "probability": 0.9228515625}, {"start": 1759.73, "end": 1759.93, "word": " Of", "probability": 0.8974609375}, {"start": 1759.93, "end": 1760.01, "word": " course,", "probability": 0.95947265625}, {"start": 1760.09, "end": 1760.23, "word": " this", "probability": 0.9228515625}, {"start": 1760.23, "end": 1760.59, "word": " is", "probability": 0.37939453125}, {"start": 1760.59, "end": 1760.67, "word": " a", "probability": 0.91064453125}, {"start": 1760.67, "end": 1760.73, "word": " very", "probability": 0.736328125}, {"start": 1760.73, "end": 1760.93, "word": " bad", "probability": 0.8681640625}, {"start": 1760.93, "end": 1760.93, "word": " design,", "probability": 0.96435546875}, {"start": 1761.91, "end": 1762.01, "word": " because", "probability": 0.61669921875}, {"start": 1762.01, "end": 1762.25, "word": " tomorrow", "probability": 0.61669921875}, {"start": 1762.25, "end": 1762.57, "word": " when", "probability": 0.794921875}, {"start": 1762.57, "end": 1762.71, "word": " you", "probability": 0.962890625}, {"start": 1762.71, "end": 1762.91, "word": " work", "probability": 0.791015625}, {"start": 1762.91, "end": 1763.05, "word": " on", "probability": 0.54248046875}, {"start": 1763.05, "end": 1763.49, "word": " companies,", "probability": 0.85595703125}, {"start": 1763.57, "end": 1763.65, "word": " one", "probability": 0.54296875}, {"start": 1763.65, "end": 1763.73, "word": " of", "probability": 0.9638671875}, {"start": 1763.73, "end": 1763.75, "word": " the", "probability": 0.91845703125}, {"start": 1763.75, "end": 1763.99, "word": " things", "probability": 0.7900390625}, {"start": 1763.99, "end": 1764.11, "word": " that", "probability": 0.44091796875}, {"start": 1764.11, "end": 1764.11, "word": " companies", "probability": 0.80908203125}, {"start": 1764.11, "end": 1764.35, "word": " ask", "probability": 0.81982421875}, {"start": 1764.35, "end": 1764.95, "word": " is", "probability": 0.3818359375}, {"start": 1764.95, "end": 1765.03, "word": " to", "probability": 0.453857421875}, {"start": 1765.03, "end": 1765.23, "word": " send", "probability": 0.77490234375}, {"start": 1765.23, "end": 1765.53, "word": " me", "probability": 0.75048828125}, {"start": 1765.53, "end": 1765.75, "word": " the", "probability": 0.6982421875}, {"start": 1765.75, "end": 1765.99, "word": " code", "probability": 0.943359375}, {"start": 1765.99, "end": 1766.21, "word": " of", "probability": 0.7529296875}, {"start": 1766.21, "end": 1766.45, "word": " your", "probability": 0.72705078125}, {"start": 1766.45, "end": 1766.79, "word": " GitHub,", "probability": 0.6455078125}, {"start": 1767.13, "end": 1767.45, "word": " the", "probability": 0.264404296875}, {"start": 1767.45, "end": 1767.93, "word": " GitHub", "probability": 0.8251953125}, {"start": 1767.93, "end": 1767.93, "word": " account.", "probability": 0.841796875}], "temperature": 1.0}, {"id": 75, "seek": 179342, "start": 1768.9, "end": 1793.42, "text": " What you put in it are the projects and projects. And we say to make sure that during your studies on libraries, the projects that you do on libraries and so on, you download them first on GitHub to show that you have a receipt of the projects that you used to work on. Even graduation projects, okay? You have to make sure that you always put it on GitHub. Respectable companies ask you to give them your GitHub link. Why? They want to give a review.", "tokens": [708, 291, 829, 294, 309, 366, 264, 447, 1020, 82, 293, 4455, 13, 400, 321, 584, 281, 652, 988, 300, 1830, 428, 5313, 322, 15148, 11, 264, 4455, 300, 291, 360, 322, 15148, 293, 370, 322, 11, 291, 5484, 552, 700, 322, 23331, 281, 855, 300, 291, 362, 257, 33882, 295, 264, 4455, 300, 291, 1143, 281, 589, 322, 13, 2754, 15652, 4455, 11, 1392, 30, 509, 362, 281, 652, 988, 300, 291, 1009, 829, 309, 322, 23331, 13, 39079, 712, 3431, 1029, 291, 281, 976, 552, 428, 23331, 2113, 13, 1545, 30, 814, 528, 281, 976, 257, 3131, 13], "avg_logprob": -0.5977722677854028, "compression_ratio": 1.860082304526749, "no_speech_prob": 3.2782554626464844e-06, "words": [{"start": 1768.9, "end": 1769.1, "word": " What", "probability": 0.300048828125}, {"start": 1769.1, "end": 1769.22, "word": " you", "probability": 0.8701171875}, {"start": 1769.22, "end": 1769.36, "word": " put", "probability": 0.43994140625}, {"start": 1769.36, "end": 1769.5, "word": " in", "probability": 0.61474609375}, {"start": 1769.5, "end": 1769.56, "word": " it", "probability": 0.27734375}, {"start": 1769.56, "end": 1769.78, "word": " are", "probability": 0.43115234375}, {"start": 1769.78, "end": 1769.82, "word": " the", "probability": 0.6201171875}, {"start": 1769.82, "end": 1770.04, "word": " projects", "probability": 0.471435546875}, {"start": 1770.04, "end": 1770.22, "word": " and", "probability": 0.290283203125}, {"start": 1770.22, "end": 1770.54, "word": " projects.", "probability": 0.2276611328125}, {"start": 1771.24, "end": 1771.64, "word": " And", "probability": 0.46728515625}, {"start": 1771.64, "end": 1771.76, "word": " we", "probability": 0.79150390625}, {"start": 1771.76, "end": 1772.18, "word": " say", "probability": 0.830078125}, {"start": 1772.18, "end": 1773.04, "word": " to", "probability": 0.215087890625}, {"start": 1773.04, "end": 1773.24, "word": " make", "probability": 0.38427734375}, {"start": 1773.24, "end": 1773.48, "word": " sure", "probability": 0.9189453125}, {"start": 1773.48, "end": 1773.66, "word": " that", "probability": 0.58642578125}, {"start": 1773.66, "end": 1773.9, "word": " during", "probability": 0.6806640625}, {"start": 1773.9, "end": 1774.08, "word": " your", "probability": 0.8330078125}, {"start": 1774.08, "end": 1774.34, "word": " studies", "probability": 0.417236328125}, {"start": 1774.34, "end": 1774.5, "word": " on", "probability": 0.1402587890625}, {"start": 1774.5, "end": 1774.84, "word": " libraries,", "probability": 0.1131591796875}, {"start": 1775.7, "end": 1775.82, "word": " the", "probability": 0.35400390625}, {"start": 1775.82, "end": 1776.12, "word": " projects", "probability": 0.9052734375}, {"start": 1776.12, "end": 1776.22, "word": " that", "probability": 0.3212890625}, {"start": 1776.22, "end": 1776.32, "word": " you", "probability": 0.939453125}, {"start": 1776.32, "end": 1776.52, "word": " do", "probability": 0.3505859375}, {"start": 1776.52, "end": 1776.66, "word": " on", "probability": 0.51123046875}, {"start": 1776.66, "end": 1777.06, "word": " libraries", "probability": 0.9111328125}, {"start": 1777.06, "end": 1777.18, "word": " and", "probability": 0.60302734375}, {"start": 1777.18, "end": 1777.34, "word": " so", "probability": 0.361083984375}, {"start": 1777.34, "end": 1777.46, "word": " on,", "probability": 0.80908203125}, {"start": 1777.46, "end": 1777.6, "word": " you", "probability": 0.411865234375}, {"start": 1777.6, "end": 1777.94, "word": " download", "probability": 0.59912109375}, {"start": 1777.94, "end": 1778.28, "word": " them", "probability": 0.5732421875}, {"start": 1778.28, "end": 1779.18, "word": " first", "probability": 0.50830078125}, {"start": 1779.18, "end": 1779.46, "word": " on", "probability": 0.205322265625}, {"start": 1779.46, "end": 1779.82, "word": " GitHub", "probability": 0.630859375}, {"start": 1779.82, "end": 1780.26, "word": " to", "probability": 0.325439453125}, {"start": 1780.26, "end": 1781.22, "word": " show", "probability": 0.47802734375}, {"start": 1781.22, "end": 1781.5, "word": " that", "probability": 0.81298828125}, {"start": 1781.5, "end": 1781.72, "word": " you", "probability": 0.9619140625}, {"start": 1781.72, "end": 1781.98, "word": " have", "probability": 0.880859375}, {"start": 1781.98, "end": 1782.08, "word": " a", "probability": 0.57568359375}, {"start": 1782.08, "end": 1782.36, "word": " receipt", "probability": 0.401123046875}, {"start": 1782.36, "end": 1782.62, "word": " of", "probability": 0.53173828125}, {"start": 1782.62, "end": 1783.32, "word": " the", "probability": 0.78466796875}, {"start": 1783.32, "end": 1783.52, "word": " projects", "probability": 0.8984375}, {"start": 1783.52, "end": 1783.64, "word": " that", "probability": 0.626953125}, {"start": 1783.64, "end": 1783.8, "word": " you", "probability": 0.9404296875}, {"start": 1783.8, "end": 1783.86, "word": " used", "probability": 0.2763671875}, {"start": 1783.86, "end": 1783.86, "word": " to", "probability": 0.9541015625}, {"start": 1783.86, "end": 1784.12, "word": " work", "probability": 0.6396484375}, {"start": 1784.12, "end": 1784.3, "word": " on.", "probability": 0.93359375}, {"start": 1784.46, "end": 1784.68, "word": " Even", "probability": 0.7734375}, {"start": 1784.68, "end": 1785.08, "word": " graduation", "probability": 0.323486328125}, {"start": 1785.08, "end": 1785.46, "word": " projects,", "probability": 0.8994140625}, {"start": 1785.96, "end": 1786.14, "word": " okay?", "probability": 0.58984375}, {"start": 1786.28, "end": 1786.4, "word": " You", "probability": 0.6298828125}, {"start": 1786.4, "end": 1786.48, "word": " have", "probability": 0.2919921875}, {"start": 1786.48, "end": 1786.62, "word": " to", "probability": 0.96923828125}, {"start": 1786.62, "end": 1786.92, "word": " make", "probability": 0.474365234375}, {"start": 1786.92, "end": 1786.96, "word": " sure", "probability": 0.9169921875}, {"start": 1786.96, "end": 1787.04, "word": " that", "probability": 0.828125}, {"start": 1787.04, "end": 1787.2, "word": " you", "probability": 0.951171875}, {"start": 1787.2, "end": 1787.28, "word": " always", "probability": 0.67529296875}, {"start": 1787.28, "end": 1787.42, "word": " put", "probability": 0.73779296875}, {"start": 1787.42, "end": 1787.48, "word": " it", "probability": 0.443115234375}, {"start": 1787.48, "end": 1788.4, "word": " on", "probability": 0.93603515625}, {"start": 1788.4, "end": 1788.68, "word": " GitHub.", "probability": 0.91796875}, {"start": 1789.34, "end": 1789.74, "word": " Respectable", "probability": 0.408203125}, {"start": 1789.74, "end": 1789.74, "word": " companies", "probability": 0.90771484375}, {"start": 1789.74, "end": 1790.14, "word": " ask", "probability": 0.86328125}, {"start": 1790.14, "end": 1790.36, "word": " you", "probability": 0.876953125}, {"start": 1790.36, "end": 1790.62, "word": " to", "probability": 0.91552734375}, {"start": 1790.62, "end": 1790.76, "word": " give", "probability": 0.76806640625}, {"start": 1790.76, "end": 1790.92, "word": " them", "probability": 0.865234375}, {"start": 1790.92, "end": 1791.16, "word": " your", "probability": 0.385498046875}, {"start": 1791.16, "end": 1791.48, "word": " GitHub", "probability": 0.841796875}, {"start": 1791.48, "end": 1791.58, "word": " link.", "probability": 0.89599609375}, {"start": 1792.3, "end": 1792.7, "word": " Why?", "probability": 0.875}, {"start": 1792.8, "end": 1792.88, "word": " They", "probability": 0.6591796875}, {"start": 1792.88, "end": 1792.98, "word": " want", "probability": 0.81884765625}, {"start": 1792.98, "end": 1792.98, "word": " to", "probability": 0.9716796875}, {"start": 1792.98, "end": 1793.08, "word": " give", "probability": 0.1956787109375}, {"start": 1793.08, "end": 1793.24, "word": " a", "probability": 0.521484375}, {"start": 1793.24, "end": 1793.42, "word": " review.", "probability": 0.285888671875}], "temperature": 1.0}, {"id": 76, "seek": 182080, "start": 1794.42, "end": 1820.8, "text": " on the code that you created. Do you use design patterns? Do you make a mistake like that? Do you put a query code in the same page? Of course, if you find a PHP page that you created a query in it, it will not call you immediately. Okay? I'm telling you, this is not applicable to the concepts of MVC. Now, we did the same system in another way. Look at it with me. As soon as it started working,", "tokens": [322, 264, 3089, 300, 291, 2942, 13, 1144, 291, 764, 1715, 8294, 30, 1144, 291, 652, 257, 6146, 411, 300, 30, 1144, 291, 829, 257, 14581, 3089, 294, 264, 912, 3028, 30, 2720, 1164, 11, 498, 291, 915, 257, 47298, 3028, 300, 291, 2942, 257, 14581, 294, 309, 11, 309, 486, 406, 818, 291, 4258, 13, 1033, 30, 286, 478, 3585, 291, 11, 341, 307, 406, 21142, 281, 264, 10392, 295, 17663, 34, 13, 823, 11, 321, 630, 264, 912, 1185, 294, 1071, 636, 13, 2053, 412, 309, 365, 385, 13, 1018, 2321, 382, 309, 1409, 1364, 11], "avg_logprob": -0.5555555266563339, "compression_ratio": 1.6178861788617886, "no_speech_prob": 2.086162567138672e-05, "words": [{"start": 1794.42, "end": 1794.66, "word": " on", "probability": 0.1658935546875}, {"start": 1794.66, "end": 1794.74, "word": " the", "probability": 0.64599609375}, {"start": 1794.74, "end": 1794.94, "word": " code", "probability": 0.12481689453125}, {"start": 1794.94, "end": 1795.06, "word": " that", "probability": 0.341796875}, {"start": 1795.06, "end": 1795.24, "word": " you", "probability": 0.92822265625}, {"start": 1795.24, "end": 1795.52, "word": " created.", "probability": 0.1689453125}, {"start": 1795.94, "end": 1796.2, "word": " Do", "probability": 0.306884765625}, {"start": 1796.2, "end": 1796.38, "word": " you", "probability": 0.95556640625}, {"start": 1796.38, "end": 1796.68, "word": " use", "probability": 0.86181640625}, {"start": 1796.68, "end": 1797.06, "word": " design", "probability": 0.81201171875}, {"start": 1797.06, "end": 1797.54, "word": " patterns?", "probability": 0.900390625}, {"start": 1798.12, "end": 1798.38, "word": " Do", "probability": 0.70361328125}, {"start": 1798.38, "end": 1798.62, "word": " you", "probability": 0.9580078125}, {"start": 1798.62, "end": 1798.8, "word": " make", "probability": 0.287353515625}, {"start": 1798.8, "end": 1798.92, "word": " a", "probability": 0.1973876953125}, {"start": 1798.92, "end": 1799.22, "word": " mistake", "probability": 0.10504150390625}, {"start": 1799.22, "end": 1799.44, "word": " like", "probability": 0.60546875}, {"start": 1799.44, "end": 1799.78, "word": " that?", "probability": 0.578125}, {"start": 1799.98, "end": 1800.08, "word": " Do", "probability": 0.73828125}, {"start": 1800.08, "end": 1800.16, "word": " you", "probability": 0.95556640625}, {"start": 1800.16, "end": 1800.38, "word": " put", "probability": 0.453857421875}, {"start": 1800.38, "end": 1801.1, "word": " a", "probability": 0.3203125}, {"start": 1801.1, "end": 1802.28, "word": " query", "probability": 0.7529296875}, {"start": 1802.28, "end": 1802.3, "word": " code", "probability": 0.78466796875}, {"start": 1802.3, "end": 1802.3, "word": " in", "probability": 0.54443359375}, {"start": 1802.3, "end": 1802.3, "word": " the", "probability": 0.7646484375}, {"start": 1802.3, "end": 1802.3, "word": " same", "probability": 0.5224609375}, {"start": 1802.3, "end": 1802.3, "word": " page?", "probability": 0.880859375}, {"start": 1802.72, "end": 1802.96, "word": " Of", "probability": 0.68603515625}, {"start": 1802.96, "end": 1803.04, "word": " course,", "probability": 0.94287109375}, {"start": 1803.48, "end": 1803.6, "word": " if", "probability": 0.7021484375}, {"start": 1803.6, "end": 1803.76, "word": " you", "probability": 0.6416015625}, {"start": 1803.76, "end": 1803.86, "word": " find", "probability": 0.280517578125}, {"start": 1803.86, "end": 1803.98, "word": " a", "probability": 0.83544921875}, {"start": 1803.98, "end": 1805.2, "word": " PHP", "probability": 0.7822265625}, {"start": 1805.2, "end": 1805.32, "word": " page", "probability": 0.7978515625}, {"start": 1805.32, "end": 1805.52, "word": " that", "probability": 0.375}, {"start": 1805.52, "end": 1805.82, "word": " you", "probability": 0.6923828125}, {"start": 1805.82, "end": 1805.96, "word": " created", "probability": 0.2685546875}, {"start": 1805.96, "end": 1806.56, "word": " a", "probability": 0.3515625}, {"start": 1806.56, "end": 1806.84, "word": " query", "probability": 0.9228515625}, {"start": 1806.84, "end": 1807.06, "word": " in", "probability": 0.321533203125}, {"start": 1807.06, "end": 1807.74, "word": " it,", "probability": 0.348388671875}, {"start": 1807.74, "end": 1808.14, "word": " it", "probability": 0.5224609375}, {"start": 1808.14, "end": 1808.34, "word": " will", "probability": 0.6953125}, {"start": 1808.34, "end": 1808.36, "word": " not", "probability": 0.666015625}, {"start": 1808.36, "end": 1808.68, "word": " call", "probability": 0.58251953125}, {"start": 1808.68, "end": 1808.92, "word": " you", "probability": 0.9326171875}, {"start": 1808.92, "end": 1809.3, "word": " immediately.", "probability": 0.30029296875}, {"start": 1810.28, "end": 1810.42, "word": " Okay?", "probability": 0.258544921875}, {"start": 1811.42, "end": 1811.86, "word": " I'm", "probability": 0.4111328125}, {"start": 1811.86, "end": 1811.94, "word": " telling", "probability": 0.78662109375}, {"start": 1811.94, "end": 1812.08, "word": " you,", "probability": 0.9609375}, {"start": 1812.14, "end": 1812.26, "word": " this", "probability": 0.76025390625}, {"start": 1812.26, "end": 1812.42, "word": " is", "probability": 0.580078125}, {"start": 1812.42, "end": 1812.7, "word": " not", "probability": 0.87255859375}, {"start": 1812.7, "end": 1813.04, "word": " applicable", "probability": 0.54296875}, {"start": 1813.04, "end": 1813.18, "word": " to", "probability": 0.81494140625}, {"start": 1813.18, "end": 1813.26, "word": " the", "probability": 0.67578125}, {"start": 1813.26, "end": 1813.5, "word": " concepts", "probability": 0.4375}, {"start": 1813.5, "end": 1814.4, "word": " of", "probability": 0.947265625}, {"start": 1814.4, "end": 1814.88, "word": " MVC.", "probability": 0.7724609375}, {"start": 1815.38, "end": 1815.66, "word": " Now,", "probability": 0.5810546875}, {"start": 1815.76, "end": 1815.98, "word": " we", "probability": 0.53662109375}, {"start": 1815.98, "end": 1815.98, "word": " did", "probability": 0.466552734375}, {"start": 1815.98, "end": 1815.98, "word": " the", "probability": 0.78173828125}, {"start": 1815.98, "end": 1815.98, "word": " same", "probability": 0.9111328125}, {"start": 1815.98, "end": 1816.64, "word": " system", "probability": 0.80078125}, {"start": 1816.64, "end": 1817.72, "word": " in", "probability": 0.60888671875}, {"start": 1817.72, "end": 1817.84, "word": " another", "probability": 0.60107421875}, {"start": 1817.84, "end": 1818.34, "word": " way.", "probability": 0.94677734375}, {"start": 1818.52, "end": 1818.72, "word": " Look", "probability": 0.363037109375}, {"start": 1818.72, "end": 1818.8, "word": " at", "probability": 0.54736328125}, {"start": 1818.8, "end": 1818.82, "word": " it", "probability": 0.57958984375}, {"start": 1818.82, "end": 1818.9, "word": " with", "probability": 0.7177734375}, {"start": 1818.9, "end": 1819.1, "word": " me.", "probability": 0.9677734375}, {"start": 1819.76, "end": 1820.0, "word": " As", "probability": 0.40380859375}, {"start": 1820.0, "end": 1820.08, "word": " soon", "probability": 0.947265625}, {"start": 1820.08, "end": 1820.14, "word": " as", "probability": 0.97509765625}, {"start": 1820.14, "end": 1820.44, "word": " it", "probability": 0.654296875}, {"start": 1820.44, "end": 1820.44, "word": " started", "probability": 0.7255859375}, {"start": 1820.44, "end": 1820.8, "word": " working,", "probability": 0.53369140625}], "temperature": 1.0}, {"id": 77, "seek": 184194, "start": 1821.74, "end": 1841.94, "text": "He told you to create a class called model And put in it the same elements that were in the view, but separated in a class by itself And created a method called get all students, get student by first name, which has code and returns a list of students", "tokens": [5205, 1907, 291, 281, 1884, 257, 1508, 1219, 2316, 400, 829, 294, 309, 264, 912, 4959, 300, 645, 294, 264, 1910, 11, 457, 12005, 294, 257, 1508, 538, 2564, 400, 2942, 257, 3170, 1219, 483, 439, 1731, 11, 483, 3107, 538, 700, 1315, 11, 597, 575, 3089, 293, 11247, 257, 1329, 295, 1731], "avg_logprob": -0.6331018695124874, "compression_ratio": 1.5886075949367089, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 1821.74, "end": 1821.92, "word": "He", "probability": 0.26171875}, {"start": 1821.92, "end": 1822.08, "word": " told", "probability": 0.406982421875}, {"start": 1822.08, "end": 1822.24, "word": " you", "probability": 0.488037109375}, {"start": 1822.24, "end": 1822.44, "word": " to", "probability": 0.765625}, {"start": 1822.44, "end": 1822.74, "word": " create", "probability": 0.35302734375}, {"start": 1822.74, "end": 1822.88, "word": " a", "probability": 0.91796875}, {"start": 1822.88, "end": 1823.16, "word": " class", "probability": 0.921875}, {"start": 1823.16, "end": 1823.44, "word": " called", "probability": 0.265625}, {"start": 1823.44, "end": 1825.22, "word": " model", "probability": 0.393310546875}, {"start": 1825.22, "end": 1827.28, "word": " And", "probability": 0.1427001953125}, {"start": 1827.28, "end": 1827.82, "word": " put", "probability": 0.3154296875}, {"start": 1827.82, "end": 1827.94, "word": " in", "probability": 0.29345703125}, {"start": 1827.94, "end": 1828.24, "word": " it", "probability": 0.7333984375}, {"start": 1828.24, "end": 1828.6, "word": " the", "probability": 0.58740234375}, {"start": 1828.6, "end": 1828.76, "word": " same", "probability": 0.80859375}, {"start": 1828.76, "end": 1829.2, "word": " elements", "probability": 0.0828857421875}, {"start": 1829.2, "end": 1829.34, "word": " that", "probability": 0.521484375}, {"start": 1829.34, "end": 1829.56, "word": " were", "probability": 0.58251953125}, {"start": 1829.56, "end": 1829.94, "word": " in", "probability": 0.56298828125}, {"start": 1829.94, "end": 1830.1, "word": " the", "probability": 0.7236328125}, {"start": 1830.1, "end": 1830.26, "word": " view,", "probability": 0.63818359375}, {"start": 1830.34, "end": 1830.44, "word": " but", "probability": 0.84033203125}, {"start": 1830.44, "end": 1830.74, "word": " separated", "probability": 0.58642578125}, {"start": 1830.74, "end": 1830.88, "word": " in", "probability": 0.517578125}, {"start": 1830.88, "end": 1830.98, "word": " a", "probability": 0.64697265625}, {"start": 1830.98, "end": 1831.4, "word": " class", "probability": 0.810546875}, {"start": 1831.4, "end": 1831.84, "word": " by", "probability": 0.290771484375}, {"start": 1831.84, "end": 1832.16, "word": " itself", "probability": 0.419677734375}, {"start": 1832.16, "end": 1833.04, "word": " And", "probability": 0.6630859375}, {"start": 1833.04, "end": 1833.24, "word": " created", "probability": 0.1866455078125}, {"start": 1833.24, "end": 1833.32, "word": " a", "probability": 0.71826171875}, {"start": 1833.32, "end": 1833.6, "word": " method", "probability": 0.9130859375}, {"start": 1833.6, "end": 1833.92, "word": " called", "probability": 0.72900390625}, {"start": 1833.92, "end": 1834.14, "word": " get", "probability": 0.82666015625}, {"start": 1834.14, "end": 1834.34, "word": " all", "probability": 0.4384765625}, {"start": 1834.34, "end": 1834.92, "word": " students,", "probability": 0.94580078125}, {"start": 1835.56, "end": 1835.78, "word": " get", "probability": 0.853515625}, {"start": 1835.78, "end": 1836.12, "word": " student", "probability": 0.464111328125}, {"start": 1836.12, "end": 1836.34, "word": " by", "probability": 0.95751953125}, {"start": 1836.34, "end": 1836.66, "word": " first", "probability": 0.890625}, {"start": 1836.66, "end": 1837.68, "word": " name,", "probability": 0.89111328125}, {"start": 1837.74, "end": 1838.56, "word": " which", "probability": 0.409423828125}, {"start": 1838.56, "end": 1838.88, "word": " has", "probability": 0.471435546875}, {"start": 1838.88, "end": 1839.34, "word": " code", "probability": 0.5966796875}, {"start": 1839.34, "end": 1839.48, "word": " and", "probability": 0.61962890625}, {"start": 1839.48, "end": 1839.8, "word": " returns", "probability": 0.5673828125}, {"start": 1839.8, "end": 1840.1, "word": " a", "probability": 0.70361328125}, {"start": 1840.1, "end": 1840.4, "word": " list", "probability": 0.80517578125}, {"start": 1840.4, "end": 1840.62, "word": " of", "probability": 0.9404296875}, {"start": 1840.62, "end": 1841.94, "word": " students", "probability": 0.79833984375}], "temperature": 1.0}, {"id": 78, "seek": 187297, "start": 1845.77, "end": 1872.97, "text": " Meaning, this ad student contains the student, look for me a student. In the end, this is like an API, like a class that has a connection to the database. Whoever wants to use this class, that's it, and it's like the database work is all hidden from him. All I need is to extract an object from whom? From model M equals new model. Right or wrong, guys? Now, I want anyone from the database, I say M get all", "tokens": [19948, 11, 341, 614, 3107, 8306, 264, 3107, 11, 574, 337, 385, 257, 3107, 13, 682, 264, 917, 11, 341, 307, 411, 364, 9362, 11, 411, 257, 1508, 300, 575, 257, 4984, 281, 264, 8149, 13, 24743, 2738, 281, 764, 341, 1508, 11, 300, 311, 309, 11, 293, 309, 311, 411, 264, 8149, 589, 307, 439, 7633, 490, 796, 13, 1057, 286, 643, 307, 281, 8947, 364, 2657, 490, 7101, 30, 3358, 2316, 376, 6915, 777, 2316, 13, 1779, 420, 2085, 11, 1074, 30, 823, 11, 286, 528, 2878, 490, 264, 8149, 11, 286, 584, 376, 483, 439], "avg_logprob": -0.6013257732295026, "compression_ratio": 1.6518218623481782, "no_speech_prob": 1.0371208190917969e-05, "words": [{"start": 1845.77, "end": 1846.21, "word": " Meaning,", "probability": 0.044830322265625}, {"start": 1846.21, "end": 1846.65, "word": " this", "probability": 0.33642578125}, {"start": 1846.65, "end": 1846.91, "word": " ad", "probability": 0.217041015625}, {"start": 1846.91, "end": 1847.41, "word": " student", "probability": 0.8603515625}, {"start": 1847.41, "end": 1848.27, "word": " contains", "probability": 0.265869140625}, {"start": 1848.27, "end": 1848.67, "word": " the", "probability": 0.3369140625}, {"start": 1848.67, "end": 1848.93, "word": " student,", "probability": 0.87939453125}, {"start": 1849.03, "end": 1849.15, "word": " look", "probability": 0.248291015625}, {"start": 1849.15, "end": 1849.37, "word": " for", "probability": 0.87548828125}, {"start": 1849.37, "end": 1849.47, "word": " me", "probability": 0.71875}, {"start": 1849.47, "end": 1850.01, "word": " a", "probability": 0.2154541015625}, {"start": 1850.01, "end": 1850.29, "word": " student.", "probability": 0.95947265625}, {"start": 1850.77, "end": 1851.21, "word": " In", "probability": 0.403564453125}, {"start": 1851.21, "end": 1851.33, "word": " the", "probability": 0.82666015625}, {"start": 1851.33, "end": 1851.55, "word": " end,", "probability": 0.916015625}, {"start": 1851.85, "end": 1852.05, "word": " this", "probability": 0.6708984375}, {"start": 1852.05, "end": 1852.15, "word": " is", "probability": 0.7373046875}, {"start": 1852.15, "end": 1852.49, "word": " like", "probability": 0.261962890625}, {"start": 1852.49, "end": 1852.69, "word": " an", "probability": 0.489013671875}, {"start": 1852.69, "end": 1853.07, "word": " API,", "probability": 0.90771484375}, {"start": 1853.27, "end": 1853.41, "word": " like", "probability": 0.61669921875}, {"start": 1853.41, "end": 1853.53, "word": " a", "probability": 0.92236328125}, {"start": 1853.53, "end": 1853.95, "word": " class", "probability": 0.95947265625}, {"start": 1853.95, "end": 1854.65, "word": " that", "probability": 0.292724609375}, {"start": 1854.65, "end": 1854.71, "word": " has", "probability": 0.662109375}, {"start": 1854.71, "end": 1854.79, "word": " a", "probability": 0.52001953125}, {"start": 1854.79, "end": 1856.09, "word": " connection", "probability": 0.5537109375}, {"start": 1856.09, "end": 1856.37, "word": " to", "probability": 0.7294921875}, {"start": 1856.37, "end": 1856.47, "word": " the", "probability": 0.71044921875}, {"start": 1856.47, "end": 1856.77, "word": " database.", "probability": 0.9140625}, {"start": 1857.23, "end": 1857.51, "word": " Whoever", "probability": 0.2064208984375}, {"start": 1857.51, "end": 1857.67, "word": " wants", "probability": 0.73388671875}, {"start": 1857.67, "end": 1857.73, "word": " to", "probability": 0.96923828125}, {"start": 1857.73, "end": 1858.07, "word": " use", "probability": 0.87744140625}, {"start": 1858.07, "end": 1858.25, "word": " this", "probability": 0.8974609375}, {"start": 1858.25, "end": 1858.63, "word": " class,", "probability": 0.9580078125}, {"start": 1859.69, "end": 1859.85, "word": " that's", "probability": 0.501800537109375}, {"start": 1859.85, "end": 1860.01, "word": " it,", "probability": 0.51806640625}, {"start": 1860.47, "end": 1860.55, "word": " and", "probability": 0.292724609375}, {"start": 1860.55, "end": 1860.77, "word": " it's", "probability": 0.5606689453125}, {"start": 1860.77, "end": 1860.77, "word": " like", "probability": 0.61767578125}, {"start": 1860.77, "end": 1860.89, "word": " the", "probability": 0.475830078125}, {"start": 1860.89, "end": 1861.51, "word": " database", "probability": 0.59423828125}, {"start": 1861.51, "end": 1861.57, "word": " work", "probability": 0.24365234375}, {"start": 1861.57, "end": 1861.79, "word": " is", "probability": 0.806640625}, {"start": 1861.79, "end": 1861.79, "word": " all", "probability": 0.4130859375}, {"start": 1861.79, "end": 1862.07, "word": " hidden", "probability": 0.7646484375}, {"start": 1862.07, "end": 1862.27, "word": " from", "probability": 0.378173828125}, {"start": 1862.27, "end": 1862.35, "word": " him.", "probability": 0.7177734375}, {"start": 1862.49, "end": 1862.91, "word": " All", "probability": 0.27783203125}, {"start": 1862.91, "end": 1863.03, "word": " I", "probability": 0.8125}, {"start": 1863.03, "end": 1863.31, "word": " need", "probability": 0.587890625}, {"start": 1863.31, "end": 1863.65, "word": " is", "probability": 0.69482421875}, {"start": 1863.65, "end": 1863.75, "word": " to", "probability": 0.6787109375}, {"start": 1863.75, "end": 1863.97, "word": " extract", "probability": 0.375244140625}, {"start": 1863.97, "end": 1864.13, "word": " an", "probability": 0.50048828125}, {"start": 1864.13, "end": 1864.35, "word": " object", "probability": 0.9814453125}, {"start": 1864.35, "end": 1864.51, "word": " from", "probability": 0.83740234375}, {"start": 1864.51, "end": 1864.71, "word": " whom?", "probability": 0.3037109375}, {"start": 1865.49, "end": 1865.69, "word": " From", "probability": 0.6103515625}, {"start": 1865.69, "end": 1866.01, "word": " model", "probability": 0.6181640625}, {"start": 1866.01, "end": 1866.27, "word": " M", "probability": 0.6064453125}, {"start": 1866.27, "end": 1867.13, "word": " equals", "probability": 0.314697265625}, {"start": 1867.13, "end": 1867.53, "word": " new", "probability": 0.66748046875}, {"start": 1867.53, "end": 1868.51, "word": " model.", "probability": 0.892578125}, {"start": 1868.83, "end": 1868.95, "word": " Right", "probability": 0.46826171875}, {"start": 1868.95, "end": 1869.13, "word": " or", "probability": 0.697265625}, {"start": 1869.13, "end": 1869.19, "word": " wrong,", "probability": 0.45703125}, {"start": 1869.35, "end": 1869.45, "word": " guys?", "probability": 0.7685546875}, {"start": 1869.99, "end": 1870.21, "word": " Now,", "probability": 0.458740234375}, {"start": 1870.27, "end": 1870.31, "word": " I", "probability": 0.58544921875}, {"start": 1870.31, "end": 1870.47, "word": " want", "probability": 0.72900390625}, {"start": 1870.47, "end": 1870.77, "word": " anyone", "probability": 0.62890625}, {"start": 1870.77, "end": 1870.99, "word": " from", "probability": 0.7890625}, {"start": 1870.99, "end": 1871.09, "word": " the", "probability": 0.90185546875}, {"start": 1871.09, "end": 1871.39, "word": " database,", "probability": 0.9580078125}, {"start": 1871.43, "end": 1871.51, "word": " I", "probability": 0.9091796875}, {"start": 1871.51, "end": 1871.65, "word": " say", "probability": 0.55810546875}, {"start": 1871.65, "end": 1871.99, "word": " M", "probability": 0.6748046875}, {"start": 1871.99, "end": 1872.63, "word": " get", "probability": 0.2880859375}, {"start": 1872.63, "end": 1872.97, "word": " all", "probability": 0.6953125}], "temperature": 1.0}, {"id": 79, "seek": 190007, "start": 1874.17, "end": 1900.07, "text": " Students, what happens in the background? What database do we use? There is no need for that. Okay? So I gathered everything in one class. Okay? Of course, the design that I did here is better than what I did here. What do you do?", "tokens": [17244, 11, 437, 2314, 294, 264, 3678, 30, 708, 8149, 360, 321, 764, 30, 821, 307, 572, 643, 337, 300, 13, 1033, 30, 407, 286, 13032, 1203, 294, 472, 1508, 13, 1033, 30, 2720, 1164, 11, 264, 1715, 300, 286, 630, 510, 307, 1101, 813, 437, 286, 630, 510, 13, 708, 360, 291, 360, 30], "avg_logprob": -0.551618289734636, "compression_ratio": 1.4620253164556962, "no_speech_prob": 3.635883331298828e-06, "words": [{"start": 1874.17, "end": 1874.63, "word": " Students,", "probability": 0.49951171875}, {"start": 1874.87, "end": 1875.07, "word": " what", "probability": 0.71484375}, {"start": 1875.07, "end": 1875.31, "word": " happens", "probability": 0.54443359375}, {"start": 1875.31, "end": 1875.59, "word": " in", "probability": 0.8310546875}, {"start": 1875.59, "end": 1875.69, "word": " the", "probability": 0.8349609375}, {"start": 1875.69, "end": 1876.19, "word": " background?", "probability": 0.9345703125}, {"start": 1876.43, "end": 1876.55, "word": " What", "probability": 0.56396484375}, {"start": 1876.55, "end": 1876.99, "word": " database", "probability": 0.457763671875}, {"start": 1876.99, "end": 1877.19, "word": " do", "probability": 0.49267578125}, {"start": 1877.19, "end": 1877.19, "word": " we", "probability": 0.5771484375}, {"start": 1877.19, "end": 1877.53, "word": " use?", "probability": 0.88720703125}, {"start": 1878.07, "end": 1878.27, "word": " There", "probability": 0.281005859375}, {"start": 1878.27, "end": 1878.35, "word": " is", "probability": 0.63330078125}, {"start": 1878.35, "end": 1878.41, "word": " no", "probability": 0.880859375}, {"start": 1878.41, "end": 1878.61, "word": " need", "probability": 0.341064453125}, {"start": 1878.61, "end": 1878.85, "word": " for", "probability": 0.300537109375}, {"start": 1878.85, "end": 1878.87, "word": " that.", "probability": 0.451416015625}, {"start": 1879.43, "end": 1879.69, "word": " Okay?", "probability": 0.1927490234375}, {"start": 1879.91, "end": 1880.17, "word": " So", "probability": 0.7294921875}, {"start": 1880.17, "end": 1880.25, "word": " I", "probability": 0.445556640625}, {"start": 1880.25, "end": 1880.55, "word": " gathered", "probability": 0.260009765625}, {"start": 1880.55, "end": 1881.03, "word": " everything", "probability": 0.359130859375}, {"start": 1881.03, "end": 1882.23, "word": " in", "probability": 0.748046875}, {"start": 1882.23, "end": 1882.29, "word": " one", "probability": 0.83544921875}, {"start": 1882.29, "end": 1882.71, "word": " class.", "probability": 0.927734375}, {"start": 1883.41, "end": 1883.67, "word": " Okay?", "probability": 0.67529296875}, {"start": 1893.51, "end": 1894.01, "word": " Of", "probability": 0.81494140625}, {"start": 1894.01, "end": 1894.15, "word": " course,", "probability": 0.955078125}, {"start": 1894.57, "end": 1894.71, "word": " the", "probability": 0.82861328125}, {"start": 1894.71, "end": 1895.05, "word": " design", "probability": 0.958984375}, {"start": 1895.05, "end": 1895.17, "word": " that", "probability": 0.60498046875}, {"start": 1895.17, "end": 1895.35, "word": " I", "probability": 0.9931640625}, {"start": 1895.35, "end": 1895.59, "word": " did", "probability": 0.31201171875}, {"start": 1895.59, "end": 1896.15, "word": " here", "probability": 0.6435546875}, {"start": 1896.15, "end": 1896.57, "word": " is", "probability": 0.246337890625}, {"start": 1896.57, "end": 1898.27, "word": " better", "probability": 0.472900390625}, {"start": 1898.27, "end": 1898.55, "word": " than", "probability": 0.92626953125}, {"start": 1898.55, "end": 1898.69, "word": " what", "probability": 0.73193359375}, {"start": 1898.69, "end": 1898.85, "word": " I", "probability": 0.96923828125}, {"start": 1898.85, "end": 1899.17, "word": " did", "probability": 0.81982421875}, {"start": 1899.17, "end": 1899.49, "word": " here.", "probability": 0.1463623046875}, {"start": 1899.49, "end": 1899.63, "word": " What", "probability": 0.400390625}, {"start": 1899.63, "end": 1899.85, "word": " do", "probability": 0.4892578125}, {"start": 1899.85, "end": 1899.85, "word": " you", "probability": 0.9375}, {"start": 1899.85, "end": 1900.07, "word": " do?", "probability": 0.927734375}], "temperature": 1.0}, {"id": 80, "seek": 193103, "start": 1901.81, "end": 1931.03, "text": "I created a class called Model. The best solution to make the code adaptable and testable is to create an interface for those who want to work on a model. The first step is for them to think about what they want from their model. For example, I want to make a model related to the students' schedules or products. You think about it. In my HTML pages, there is a page that lists all the products.", "tokens": [40, 2942, 257, 1508, 1219, 17105, 13, 440, 1151, 3827, 281, 652, 264, 3089, 6231, 712, 293, 1500, 712, 307, 281, 1884, 364, 9226, 337, 729, 567, 528, 281, 589, 322, 257, 2316, 13, 440, 700, 1823, 307, 337, 552, 281, 519, 466, 437, 436, 528, 490, 641, 2316, 13, 1171, 1365, 11, 286, 528, 281, 652, 257, 2316, 4077, 281, 264, 1731, 6, 28078, 420, 3383, 13, 509, 519, 466, 309, 13, 682, 452, 17995, 7183, 11, 456, 307, 257, 3028, 300, 14511, 439, 264, 3383, 13], "avg_logprob": -0.5509129374214773, "compression_ratio": 1.6851063829787234, "no_speech_prob": 1.710653305053711e-05, "words": [{"start": 1901.81, "end": 1902.23, "word": "I", "probability": 0.1383056640625}, {"start": 1902.23, "end": 1902.81, "word": " created", "probability": 0.335205078125}, {"start": 1902.81, "end": 1902.93, "word": " a", "probability": 0.912109375}, {"start": 1902.93, "end": 1903.23, "word": " class", "probability": 0.8935546875}, {"start": 1903.23, "end": 1903.51, "word": " called", "probability": 0.36962890625}, {"start": 1903.51, "end": 1903.77, "word": " Model.", "probability": 0.296142578125}, {"start": 1904.47, "end": 1905.03, "word": " The", "probability": 0.51025390625}, {"start": 1905.03, "end": 1905.61, "word": " best", "probability": 0.82275390625}, {"start": 1905.61, "end": 1905.69, "word": " solution", "probability": 0.6591796875}, {"start": 1905.69, "end": 1906.59, "word": " to", "probability": 0.6787109375}, {"start": 1906.59, "end": 1907.01, "word": " make", "probability": 0.76953125}, {"start": 1907.01, "end": 1907.15, "word": " the", "probability": 0.580078125}, {"start": 1907.15, "end": 1907.51, "word": " code", "probability": 0.83642578125}, {"start": 1907.51, "end": 1908.93, "word": " adaptable", "probability": 0.887939453125}, {"start": 1908.93, "end": 1909.03, "word": " and", "probability": 0.79248046875}, {"start": 1909.03, "end": 1909.51, "word": " testable", "probability": 0.9677734375}, {"start": 1909.51, "end": 1910.11, "word": " is", "probability": 0.66357421875}, {"start": 1910.11, "end": 1910.29, "word": " to", "probability": 0.80712890625}, {"start": 1910.29, "end": 1910.65, "word": " create", "probability": 0.587890625}, {"start": 1910.65, "end": 1910.79, "word": " an", "probability": 0.73974609375}, {"start": 1910.79, "end": 1911.47, "word": " interface", "probability": 0.87890625}, {"start": 1911.47, "end": 1912.55, "word": " for", "probability": 0.292236328125}, {"start": 1912.55, "end": 1912.67, "word": " those", "probability": 0.09228515625}, {"start": 1912.67, "end": 1912.71, "word": " who", "probability": 0.77099609375}, {"start": 1912.71, "end": 1912.91, "word": " want", "probability": 0.62353515625}, {"start": 1912.91, "end": 1912.91, "word": " to", "probability": 0.962890625}, {"start": 1912.91, "end": 1913.17, "word": " work", "probability": 0.75830078125}, {"start": 1913.17, "end": 1913.37, "word": " on", "probability": 0.7177734375}, {"start": 1913.37, "end": 1913.83, "word": " a", "probability": 0.51953125}, {"start": 1913.83, "end": 1914.11, "word": " model.", "probability": 0.89794921875}, {"start": 1914.39, "end": 1914.95, "word": " The", "probability": 0.67236328125}, {"start": 1914.95, "end": 1914.95, "word": " first", "probability": 0.8505859375}, {"start": 1914.95, "end": 1915.25, "word": " step", "probability": 0.7041015625}, {"start": 1915.25, "end": 1915.95, "word": " is", "probability": 0.34033203125}, {"start": 1915.95, "end": 1916.05, "word": " for", "probability": 0.1563720703125}, {"start": 1916.05, "end": 1916.05, "word": " them", "probability": 0.52734375}, {"start": 1916.05, "end": 1916.05, "word": " to", "probability": 0.96533203125}, {"start": 1916.05, "end": 1916.37, "word": " think", "probability": 0.71875}, {"start": 1916.37, "end": 1916.77, "word": " about", "probability": 0.56982421875}, {"start": 1916.77, "end": 1916.79, "word": " what", "probability": 0.44287109375}, {"start": 1916.79, "end": 1918.39, "word": " they", "probability": 0.1287841796875}, {"start": 1918.39, "end": 1918.53, "word": " want", "probability": 0.619140625}, {"start": 1918.53, "end": 1919.01, "word": " from", "probability": 0.2489013671875}, {"start": 1919.01, "end": 1919.03, "word": " their", "probability": 0.74267578125}, {"start": 1919.03, "end": 1919.03, "word": " model.", "probability": 0.86474609375}, {"start": 1919.87, "end": 1920.31, "word": " For", "probability": 0.7666015625}, {"start": 1920.31, "end": 1920.47, "word": " example,", "probability": 0.9228515625}, {"start": 1920.59, "end": 1920.69, "word": " I", "probability": 0.8251953125}, {"start": 1920.69, "end": 1920.87, "word": " want", "probability": 0.82861328125}, {"start": 1920.87, "end": 1920.89, "word": " to", "probability": 0.9169921875}, {"start": 1920.89, "end": 1921.05, "word": " make", "probability": 0.3837890625}, {"start": 1921.05, "end": 1921.15, "word": " a", "probability": 0.92822265625}, {"start": 1921.15, "end": 1921.35, "word": " model", "probability": 0.93505859375}, {"start": 1921.35, "end": 1921.73, "word": " related", "probability": 0.2041015625}, {"start": 1921.73, "end": 1921.99, "word": " to", "probability": 0.95166015625}, {"start": 1921.99, "end": 1922.09, "word": " the", "probability": 0.2685546875}, {"start": 1922.09, "end": 1922.25, "word": " students'", "probability": 0.5615234375}, {"start": 1922.67, "end": 1922.67, "word": " schedules", "probability": 0.5810546875}, {"start": 1922.67, "end": 1923.49, "word": " or", "probability": 0.68896484375}, {"start": 1923.49, "end": 1923.97, "word": " products.", "probability": 0.62744140625}, {"start": 1924.75, "end": 1925.29, "word": " You", "probability": 0.1812744140625}, {"start": 1925.29, "end": 1925.73, "word": " think", "probability": 0.2337646484375}, {"start": 1925.73, "end": 1925.81, "word": " about", "probability": 0.57373046875}, {"start": 1925.81, "end": 1925.81, "word": " it.", "probability": 0.4892578125}, {"start": 1926.45, "end": 1926.65, "word": " In", "probability": 0.11407470703125}, {"start": 1926.65, "end": 1927.67, "word": " my", "probability": 0.7080078125}, {"start": 1927.67, "end": 1928.53, "word": " HTML", "probability": 0.47265625}, {"start": 1928.53, "end": 1928.91, "word": " pages,", "probability": 0.818359375}, {"start": 1929.49, "end": 1929.59, "word": " there", "probability": 0.837890625}, {"start": 1929.59, "end": 1929.63, "word": " is", "probability": 0.716796875}, {"start": 1929.63, "end": 1929.75, "word": " a", "probability": 0.8720703125}, {"start": 1929.75, "end": 1929.91, "word": " page", "probability": 0.88037109375}, {"start": 1929.91, "end": 1930.17, "word": " that", "probability": 0.69384765625}, {"start": 1930.17, "end": 1930.33, "word": " lists", "probability": 0.43212890625}, {"start": 1930.33, "end": 1930.55, "word": " all", "probability": 0.927734375}, {"start": 1930.55, "end": 1930.59, "word": " the", "probability": 0.5419921875}, {"start": 1930.59, "end": 1931.03, "word": " products.", "probability": 0.849609375}], "temperature": 1.0}, {"id": 81, "seek": 196046, "start": 1931.7, "end": 1960.46, "text": " it will go and do in the interface what is this interface? there is no code yet you are planning you want to put in the interface what is this? what are the methods that all pages will ask for? okay? so there is a method called get all products and there will be another method get product by id right? and there is method insert", "tokens": [309, 486, 352, 293, 360, 294, 264, 9226, 437, 307, 341, 9226, 30, 456, 307, 572, 3089, 1939, 291, 366, 5038, 291, 528, 281, 829, 294, 264, 9226, 437, 307, 341, 30, 437, 366, 264, 7150, 300, 439, 7183, 486, 1029, 337, 30, 1392, 30, 370, 456, 307, 257, 3170, 1219, 483, 439, 3383, 293, 456, 486, 312, 1071, 3170, 483, 1674, 538, 4496, 558, 30, 293, 456, 307, 3170, 8969], "avg_logprob": -0.5117187773187956, "compression_ratio": 1.9411764705882353, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 1931.7, "end": 1932.04, "word": " it", "probability": 0.12078857421875}, {"start": 1932.04, "end": 1932.24, "word": " will", "probability": 0.2880859375}, {"start": 1932.24, "end": 1932.38, "word": " go", "probability": 0.266357421875}, {"start": 1932.38, "end": 1932.56, "word": " and", "probability": 0.54150390625}, {"start": 1932.56, "end": 1932.76, "word": " do", "probability": 0.15673828125}, {"start": 1932.76, "end": 1932.88, "word": " in", "probability": 0.388671875}, {"start": 1932.88, "end": 1932.96, "word": " the", "probability": 0.73876953125}, {"start": 1932.96, "end": 1933.46, "word": " interface", "probability": 0.8623046875}, {"start": 1933.46, "end": 1933.7, "word": " what", "probability": 0.3359375}, {"start": 1933.7, "end": 1933.74, "word": " is", "probability": 0.3359375}, {"start": 1933.74, "end": 1933.86, "word": " this", "probability": 0.5712890625}, {"start": 1933.86, "end": 1934.4, "word": " interface?", "probability": 0.82666015625}, {"start": 1934.68, "end": 1934.98, "word": " there", "probability": 0.2099609375}, {"start": 1934.98, "end": 1935.08, "word": " is", "probability": 0.83447265625}, {"start": 1935.08, "end": 1935.14, "word": " no", "probability": 0.75146484375}, {"start": 1935.14, "end": 1935.52, "word": " code", "probability": 0.90869140625}, {"start": 1935.52, "end": 1935.76, "word": " yet", "probability": 0.8154296875}, {"start": 1935.76, "end": 1936.38, "word": " you", "probability": 0.59716796875}, {"start": 1936.38, "end": 1936.58, "word": " are", "probability": 0.80126953125}, {"start": 1936.58, "end": 1937.1, "word": " planning", "probability": 0.69775390625}, {"start": 1937.1, "end": 1937.92, "word": " you", "probability": 0.3330078125}, {"start": 1937.92, "end": 1938.06, "word": " want", "probability": 0.49365234375}, {"start": 1938.06, "end": 1938.16, "word": " to", "probability": 0.95654296875}, {"start": 1938.16, "end": 1938.36, "word": " put", "probability": 0.82421875}, {"start": 1938.36, "end": 1938.44, "word": " in", "probability": 0.8447265625}, {"start": 1938.44, "end": 1938.54, "word": " the", "probability": 0.8642578125}, {"start": 1938.54, "end": 1938.94, "word": " interface", "probability": 0.87890625}, {"start": 1938.94, "end": 1939.1, "word": " what", "probability": 0.78369140625}, {"start": 1939.1, "end": 1939.14, "word": " is", "probability": 0.70654296875}, {"start": 1939.14, "end": 1939.56, "word": " this?", "probability": 0.87841796875}, {"start": 1939.66, "end": 1939.84, "word": " what", "probability": 0.75830078125}, {"start": 1939.84, "end": 1939.88, "word": " are", "probability": 0.60791015625}, {"start": 1939.88, "end": 1939.98, "word": " the", "probability": 0.8818359375}, {"start": 1939.98, "end": 1940.4, "word": " methods", "probability": 0.89990234375}, {"start": 1940.4, "end": 1941.4, "word": " that", "probability": 0.290283203125}, {"start": 1941.4, "end": 1943.34, "word": " all", "probability": 0.485107421875}, {"start": 1943.34, "end": 1943.7, "word": " pages", "probability": 0.53662109375}, {"start": 1943.7, "end": 1943.7, "word": " will", "probability": 0.6962890625}, {"start": 1943.7, "end": 1943.7, "word": " ask", "probability": 0.5634765625}, {"start": 1943.7, "end": 1943.7, "word": " for?", "probability": 0.4697265625}, {"start": 1944.18, "end": 1944.72, "word": " okay?", "probability": 0.1922607421875}, {"start": 1945.12, "end": 1945.28, "word": " so", "probability": 0.3359375}, {"start": 1945.28, "end": 1945.44, "word": " there", "probability": 0.56689453125}, {"start": 1945.44, "end": 1945.46, "word": " is", "probability": 0.88232421875}, {"start": 1945.46, "end": 1945.78, "word": " a", "probability": 0.5302734375}, {"start": 1945.78, "end": 1946.04, "word": " method", "probability": 0.9453125}, {"start": 1946.04, "end": 1946.3, "word": " called", "probability": 0.6279296875}, {"start": 1946.3, "end": 1946.6, "word": " get", "probability": 0.75390625}, {"start": 1946.6, "end": 1946.96, "word": " all", "probability": 0.5400390625}, {"start": 1946.96, "end": 1948.9, "word": " products", "probability": 0.859375}, {"start": 1948.9, "end": 1951.6, "word": " and", "probability": 0.75537109375}, {"start": 1951.6, "end": 1951.76, "word": " there", "probability": 0.85693359375}, {"start": 1951.76, "end": 1951.76, "word": " will", "probability": 0.73876953125}, {"start": 1951.76, "end": 1951.98, "word": " be", "probability": 0.92431640625}, {"start": 1951.98, "end": 1952.12, "word": " another", "probability": 0.85400390625}, {"start": 1952.12, "end": 1952.68, "word": " method", "probability": 0.939453125}, {"start": 1952.68, "end": 1953.54, "word": " get", "probability": 0.75537109375}, {"start": 1953.54, "end": 1955.54, "word": " product", "probability": 0.85595703125}, {"start": 1955.54, "end": 1956.84, "word": " by", "probability": 0.92236328125}, {"start": 1956.84, "end": 1957.24, "word": " id", "probability": 0.58154296875}, {"start": 1957.24, "end": 1958.66, "word": " right?", "probability": 0.62109375}, {"start": 1959.0, "end": 1959.34, "word": " and", "probability": 0.9052734375}, {"start": 1959.34, "end": 1959.5, "word": " there", "probability": 0.9013671875}, {"start": 1959.5, "end": 1959.5, "word": " is", "probability": 0.9306640625}, {"start": 1959.5, "end": 1959.88, "word": " method", "probability": 0.1873779296875}, {"start": 1959.88, "end": 1960.46, "word": " insert", "probability": 0.91796875}], "temperature": 1.0}, {"id": 82, "seek": 199035, "start": 1962.41, "end": 1990.35, "text": "the new product you take the product delete the product you take for example id you are still planning the interface there is no implementation this is the model shape that you want to make and then these methods you want to implement them you want to use MySQL database you create a class", "tokens": [3322, 777, 1674, 291, 747, 264, 1674, 12097, 264, 1674, 291, 747, 337, 1365, 4496, 291, 366, 920, 5038, 264, 9226, 456, 307, 572, 11420, 341, 307, 264, 2316, 3909, 300, 291, 528, 281, 652, 293, 550, 613, 7150, 291, 528, 281, 4445, 552, 291, 528, 281, 764, 1222, 39934, 8149, 291, 1884, 257, 1508], "avg_logprob": -0.5265066772699356, "compression_ratio": 1.7730061349693251, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1962.41, "end": 1962.63, "word": "the", "probability": 0.0477294921875}, {"start": 1962.63, "end": 1962.81, "word": " new", "probability": 0.802734375}, {"start": 1962.81, "end": 1963.33, "word": " product", "probability": 0.9052734375}, {"start": 1963.33, "end": 1964.41, "word": " you", "probability": 0.25390625}, {"start": 1964.41, "end": 1964.55, "word": " take", "probability": 0.64990234375}, {"start": 1964.55, "end": 1964.69, "word": " the", "probability": 0.64892578125}, {"start": 1964.69, "end": 1965.13, "word": " product", "probability": 0.90771484375}, {"start": 1965.13, "end": 1968.37, "word": " delete", "probability": 0.2479248046875}, {"start": 1968.37, "end": 1970.43, "word": " the", "probability": 0.533203125}, {"start": 1970.43, "end": 1971.53, "word": " product", "probability": 0.92138671875}, {"start": 1971.53, "end": 1972.19, "word": " you", "probability": 0.31689453125}, {"start": 1972.19, "end": 1972.41, "word": " take", "probability": 0.81640625}, {"start": 1972.41, "end": 1973.11, "word": " for", "probability": 0.402587890625}, {"start": 1973.11, "end": 1973.11, "word": " example", "probability": 0.9169921875}, {"start": 1973.11, "end": 1974.39, "word": " id", "probability": 0.38818359375}, {"start": 1974.39, "end": 1974.65, "word": " you", "probability": 0.654296875}, {"start": 1974.65, "end": 1974.73, "word": " are", "probability": 0.578125}, {"start": 1974.73, "end": 1974.93, "word": " still", "probability": 0.79296875}, {"start": 1974.93, "end": 1976.17, "word": " planning", "probability": 0.59814453125}, {"start": 1976.17, "end": 1976.35, "word": " the", "probability": 0.7841796875}, {"start": 1976.35, "end": 1976.79, "word": " interface", "probability": 0.87890625}, {"start": 1976.79, "end": 1976.99, "word": " there", "probability": 0.432861328125}, {"start": 1976.99, "end": 1976.99, "word": " is", "probability": 0.87939453125}, {"start": 1976.99, "end": 1977.05, "word": " no", "probability": 0.90576171875}, {"start": 1977.05, "end": 1977.71, "word": " implementation", "probability": 0.88525390625}, {"start": 1977.71, "end": 1978.73, "word": " this", "probability": 0.49658203125}, {"start": 1978.73, "end": 1979.25, "word": " is", "probability": 0.90966796875}, {"start": 1979.25, "end": 1979.75, "word": " the", "probability": 0.83203125}, {"start": 1979.75, "end": 1979.99, "word": " model", "probability": 0.58984375}, {"start": 1979.99, "end": 1979.99, "word": " shape", "probability": 0.373046875}, {"start": 1979.99, "end": 1980.91, "word": " that", "probability": 0.4228515625}, {"start": 1980.91, "end": 1981.05, "word": " you", "probability": 0.95703125}, {"start": 1981.05, "end": 1981.21, "word": " want", "probability": 0.386474609375}, {"start": 1981.21, "end": 1981.29, "word": " to", "probability": 0.9609375}, {"start": 1981.29, "end": 1981.57, "word": " make", "probability": 0.388916015625}, {"start": 1981.57, "end": 1982.71, "word": " and", "probability": 0.398193359375}, {"start": 1982.71, "end": 1983.03, "word": " then", "probability": 0.439697265625}, {"start": 1983.03, "end": 1984.01, "word": " these", "probability": 0.3447265625}, {"start": 1984.01, "end": 1984.75, "word": " methods", "probability": 0.88134765625}, {"start": 1984.75, "end": 1984.93, "word": " you", "probability": 0.7578125}, {"start": 1984.93, "end": 1985.09, "word": " want", "probability": 0.6015625}, {"start": 1985.09, "end": 1985.19, "word": " to", "probability": 0.94384765625}, {"start": 1985.19, "end": 1985.77, "word": " implement", "probability": 0.392333984375}, {"start": 1985.77, "end": 1986.41, "word": " them", "probability": 0.65771484375}, {"start": 1986.41, "end": 1986.85, "word": " you", "probability": 0.5810546875}, {"start": 1986.85, "end": 1986.99, "word": " want", "probability": 0.51318359375}, {"start": 1986.99, "end": 1987.11, "word": " to", "probability": 0.96826171875}, {"start": 1987.11, "end": 1987.39, "word": " use", "probability": 0.8662109375}, {"start": 1987.39, "end": 1987.87, "word": " MySQL", "probability": 0.709228515625}, {"start": 1987.87, "end": 1988.43, "word": " database", "probability": 0.86669921875}, {"start": 1988.43, "end": 1989.23, "word": " you", "probability": 0.52001953125}, {"start": 1989.23, "end": 1989.75, "word": " create", "probability": 0.2232666015625}, {"start": 1989.75, "end": 1989.89, "word": " a", "probability": 0.87451171875}, {"start": 1989.89, "end": 1990.35, "word": " class", "probability": 0.97216796875}], "temperature": 1.0}, {"id": 83, "seek": 201824, "start": 1991.4, "end": 2018.24, "text": " For example, its name is ProductDB Implement this interface Are you with me, guys? Of course, as long as you have done Implement, you have to do Implement to whom? To all the methods, and here you put the code that will connect with whom? With MySQL database and implement these methods Now, I have a controller", "tokens": [1171, 1365, 11, 1080, 1315, 307, 22005, 27735, 4331, 43704, 341, 9226, 2014, 291, 365, 385, 11, 1074, 30, 2720, 1164, 11, 382, 938, 382, 291, 362, 1096, 4331, 43704, 11, 291, 362, 281, 360, 4331, 43704, 281, 7101, 30, 1407, 439, 264, 7150, 11, 293, 510, 291, 829, 264, 3089, 300, 486, 1745, 365, 7101, 30, 2022, 1222, 39934, 8149, 293, 4445, 613, 7150, 823, 11, 286, 362, 257, 10561], "avg_logprob": -0.5104166948133044, "compression_ratio": 1.583756345177665, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1991.4, "end": 1991.6, "word": " For", "probability": 0.10711669921875}, {"start": 1991.6, "end": 1991.6, "word": " example,", "probability": 0.87353515625}, {"start": 1991.6, "end": 1991.6, "word": " its", "probability": 0.238037109375}, {"start": 1991.6, "end": 1991.82, "word": " name", "probability": 0.8642578125}, {"start": 1991.82, "end": 1992.86, "word": " is", "probability": 0.91650390625}, {"start": 1992.86, "end": 1995.06, "word": " ProductDB", "probability": 0.583740234375}, {"start": 1995.06, "end": 1997.24, "word": " Implement", "probability": 0.7242431640625}, {"start": 1997.24, "end": 1999.2, "word": " this", "probability": 0.1427001953125}, {"start": 1999.2, "end": 1999.8, "word": " interface", "probability": 0.85693359375}, {"start": 1999.8, "end": 2000.38, "word": " Are", "probability": 0.10662841796875}, {"start": 2000.38, "end": 2001.48, "word": " you", "probability": 0.93896484375}, {"start": 2001.48, "end": 2001.6, "word": " with", "probability": 0.6162109375}, {"start": 2001.6, "end": 2001.74, "word": " me,", "probability": 0.9619140625}, {"start": 2002.0, "end": 2002.0, "word": " guys?", "probability": 0.64453125}, {"start": 2002.44, "end": 2002.72, "word": " Of", "probability": 0.5927734375}, {"start": 2002.72, "end": 2002.84, "word": " course,", "probability": 0.9599609375}, {"start": 2002.94, "end": 2003.02, "word": " as", "probability": 0.29150390625}, {"start": 2003.02, "end": 2003.1, "word": " long", "probability": 0.7666015625}, {"start": 2003.1, "end": 2003.1, "word": " as", "probability": 0.96728515625}, {"start": 2003.1, "end": 2003.46, "word": " you", "probability": 0.80419921875}, {"start": 2003.46, "end": 2003.46, "word": " have", "probability": 0.311279296875}, {"start": 2003.46, "end": 2003.46, "word": " done", "probability": 0.335205078125}, {"start": 2003.46, "end": 2004.36, "word": " Implement,", "probability": 0.5914306640625}, {"start": 2004.5, "end": 2004.58, "word": " you", "probability": 0.8037109375}, {"start": 2004.58, "end": 2004.7, "word": " have", "probability": 0.25341796875}, {"start": 2004.7, "end": 2004.78, "word": " to", "probability": 0.962890625}, {"start": 2004.78, "end": 2004.96, "word": " do", "probability": 0.429931640625}, {"start": 2004.96, "end": 2005.38, "word": " Implement", "probability": 0.76806640625}, {"start": 2005.38, "end": 2005.58, "word": " to", "probability": 0.478759765625}, {"start": 2005.58, "end": 2005.78, "word": " whom?", "probability": 0.83544921875}, {"start": 2006.12, "end": 2006.56, "word": " To", "probability": 0.63623046875}, {"start": 2006.56, "end": 2006.78, "word": " all", "probability": 0.93408203125}, {"start": 2006.78, "end": 2006.9, "word": " the", "probability": 0.296875}, {"start": 2006.9, "end": 2007.22, "word": " methods,", "probability": 0.87255859375}, {"start": 2007.32, "end": 2007.58, "word": " and", "probability": 0.85986328125}, {"start": 2007.58, "end": 2007.72, "word": " here", "probability": 0.72216796875}, {"start": 2007.72, "end": 2007.86, "word": " you", "probability": 0.78955078125}, {"start": 2007.86, "end": 2008.08, "word": " put", "probability": 0.33984375}, {"start": 2008.08, "end": 2008.24, "word": " the", "probability": 0.87548828125}, {"start": 2008.24, "end": 2008.52, "word": " code", "probability": 0.94287109375}, {"start": 2008.52, "end": 2008.64, "word": " that", "probability": 0.6484375}, {"start": 2008.64, "end": 2008.76, "word": " will", "probability": 0.40625}, {"start": 2008.76, "end": 2008.96, "word": " connect", "probability": 0.74560546875}, {"start": 2008.96, "end": 2009.16, "word": " with", "probability": 0.5732421875}, {"start": 2009.16, "end": 2009.42, "word": " whom?", "probability": 0.80908203125}, {"start": 2010.12, "end": 2010.56, "word": " With", "probability": 0.78955078125}, {"start": 2010.56, "end": 2012.7, "word": " MySQL", "probability": 0.701171875}, {"start": 2012.7, "end": 2013.42, "word": " database", "probability": 0.72607421875}, {"start": 2013.42, "end": 2013.54, "word": " and", "probability": 0.54296875}, {"start": 2013.54, "end": 2013.82, "word": " implement", "probability": 0.1778564453125}, {"start": 2013.82, "end": 2014.0, "word": " these", "probability": 0.7109375}, {"start": 2014.0, "end": 2014.3, "word": " methods", "probability": 0.92626953125}, {"start": 2014.3, "end": 2017.0, "word": " Now,", "probability": 0.8232421875}, {"start": 2017.18, "end": 2017.54, "word": " I", "probability": 0.84814453125}, {"start": 2017.54, "end": 2017.7, "word": " have", "probability": 0.931640625}, {"start": 2017.7, "end": 2017.82, "word": " a", "probability": 0.94677734375}, {"start": 2017.82, "end": 2018.24, "word": " controller", "probability": 0.76220703125}], "temperature": 1.0}, {"id": 84, "seek": 203630, "start": 2022.16, "end": 2036.3, "text": "The controller will ask from whom? From this one. In the end, the controller will create an object from whom? From the product DB, but it will see from which type? The interface. Okay? And of course, the controller will get the data and send it to whom?", "tokens": [2278, 10561, 486, 1029, 490, 7101, 30, 3358, 341, 472, 13, 682, 264, 917, 11, 264, 10561, 486, 1884, 364, 2657, 490, 7101, 30, 3358, 264, 1674, 26754, 11, 457, 309, 486, 536, 490, 597, 2010, 30, 440, 9226, 13, 1033, 30, 400, 295, 1164, 11, 264, 10561, 486, 483, 264, 1412, 293, 2845, 309, 281, 7101, 30], "avg_logprob": -0.4515360078569186, "compression_ratio": 1.6114649681528663, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 2022.16, "end": 2022.44, "word": "The", "probability": 0.2578125}, {"start": 2022.44, "end": 2022.82, "word": " controller", "probability": 0.67919921875}, {"start": 2022.82, "end": 2022.96, "word": " will", "probability": 0.55712890625}, {"start": 2022.96, "end": 2023.18, "word": " ask", "probability": 0.607421875}, {"start": 2023.18, "end": 2023.36, "word": " from", "probability": 0.361328125}, {"start": 2023.36, "end": 2023.52, "word": " whom?", "probability": 0.71630859375}, {"start": 2024.3, "end": 2024.46, "word": " From", "probability": 0.66162109375}, {"start": 2024.46, "end": 2024.72, "word": " this", "probability": 0.65771484375}, {"start": 2024.72, "end": 2024.96, "word": " one.", "probability": 0.2117919921875}, {"start": 2025.4, "end": 2025.6, "word": " In", "probability": 0.26025390625}, {"start": 2025.6, "end": 2025.68, "word": " the", "probability": 0.89697265625}, {"start": 2025.68, "end": 2025.84, "word": " end,", "probability": 0.927734375}, {"start": 2025.9, "end": 2025.98, "word": " the", "probability": 0.873046875}, {"start": 2025.98, "end": 2026.24, "word": " controller", "probability": 0.84521484375}, {"start": 2026.24, "end": 2026.42, "word": " will", "probability": 0.71240234375}, {"start": 2026.42, "end": 2026.58, "word": " create", "probability": 0.67626953125}, {"start": 2026.58, "end": 2026.74, "word": " an", "probability": 0.78466796875}, {"start": 2026.74, "end": 2026.98, "word": " object", "probability": 0.9755859375}, {"start": 2026.98, "end": 2027.16, "word": " from", "probability": 0.7626953125}, {"start": 2027.16, "end": 2027.36, "word": " whom?", "probability": 0.55224609375}, {"start": 2028.32, "end": 2028.56, "word": " From", "probability": 0.65771484375}, {"start": 2028.56, "end": 2028.64, "word": " the", "probability": 0.541015625}, {"start": 2028.64, "end": 2028.9, "word": " product", "probability": 0.80712890625}, {"start": 2028.9, "end": 2029.22, "word": " DB,", "probability": 0.416748046875}, {"start": 2029.34, "end": 2029.44, "word": " but", "probability": 0.8623046875}, {"start": 2029.44, "end": 2029.56, "word": " it", "probability": 0.44287109375}, {"start": 2029.56, "end": 2029.58, "word": " will", "probability": 0.8193359375}, {"start": 2029.58, "end": 2029.82, "word": " see", "probability": 0.63330078125}, {"start": 2029.82, "end": 2029.96, "word": " from", "probability": 0.38427734375}, {"start": 2029.96, "end": 2030.32, "word": " which", "probability": 0.521484375}, {"start": 2030.32, "end": 2030.32, "word": " type?", "probability": 0.62841796875}, {"start": 2031.12, "end": 2031.52, "word": " The", "probability": 0.446533203125}, {"start": 2031.52, "end": 2032.04, "word": " interface.", "probability": 0.859375}, {"start": 2032.88, "end": 2033.12, "word": " Okay?", "probability": 0.2122802734375}, {"start": 2033.72, "end": 2033.86, "word": " And", "probability": 0.8076171875}, {"start": 2033.86, "end": 2034.04, "word": " of", "probability": 0.57275390625}, {"start": 2034.04, "end": 2034.14, "word": " course,", "probability": 0.9609375}, {"start": 2034.18, "end": 2034.3, "word": " the", "probability": 0.83935546875}, {"start": 2034.3, "end": 2034.68, "word": " controller", "probability": 0.8603515625}, {"start": 2034.68, "end": 2034.86, "word": " will", "probability": 0.5771484375}, {"start": 2034.86, "end": 2035.0, "word": " get", "probability": 0.293212890625}, {"start": 2035.0, "end": 2035.14, "word": " the", "probability": 0.84228515625}, {"start": 2035.14, "end": 2035.36, "word": " data", "probability": 0.8154296875}, {"start": 2035.36, "end": 2035.62, "word": " and", "probability": 0.8759765625}, {"start": 2035.62, "end": 2035.86, "word": " send", "probability": 0.6611328125}, {"start": 2035.86, "end": 2036.0, "word": " it", "probability": 0.90185546875}, {"start": 2036.0, "end": 2036.1, "word": " to", "probability": 0.95654296875}, {"start": 2036.1, "end": 2036.3, "word": " whom?", "probability": 0.9580078125}], "temperature": 1.0}, {"id": 85, "seek": 206623, "start": 2037.91, "end": 2066.23, "text": " Why did I make an interface and made a class from the interface? Tomorrow you have to do mocking. We took the mocking. Okay? So, the front-end programmer wants to test the interfaces without whom? The database. The server is still ready. You haven't downloaded your website yet. So, what does he do? He creates a new module. A new class. Okay? It also implements for whom?", "tokens": [1545, 630, 286, 652, 364, 9226, 293, 1027, 257, 1508, 490, 264, 9226, 30, 17499, 291, 362, 281, 360, 49792, 13, 492, 1890, 264, 49792, 13, 1033, 30, 407, 11, 264, 1868, 12, 521, 32116, 2738, 281, 1500, 264, 28416, 1553, 7101, 30, 440, 8149, 13, 440, 7154, 307, 920, 1919, 13, 509, 2378, 380, 21748, 428, 3144, 1939, 13, 407, 11, 437, 775, 415, 360, 30, 634, 7829, 257, 777, 10088, 13, 316, 777, 1508, 13, 1033, 30, 467, 611, 704, 17988, 337, 7101, 30], "avg_logprob": -0.5714798850574713, "compression_ratio": 1.5872340425531914, "no_speech_prob": 1.0609626770019531e-05, "words": [{"start": 2037.91, "end": 2038.43, "word": " Why", "probability": 0.1114501953125}, {"start": 2038.43, "end": 2038.63, "word": " did", "probability": 0.62255859375}, {"start": 2038.63, "end": 2038.69, "word": " I", "probability": 0.94287109375}, {"start": 2038.69, "end": 2039.73, "word": " make", "probability": 0.256103515625}, {"start": 2039.73, "end": 2039.99, "word": " an", "probability": 0.26171875}, {"start": 2039.99, "end": 2040.53, "word": " interface", "probability": 0.90966796875}, {"start": 2040.53, "end": 2040.83, "word": " and", "probability": 0.6796875}, {"start": 2040.83, "end": 2041.09, "word": " made", "probability": 0.271484375}, {"start": 2041.09, "end": 2041.23, "word": " a", "probability": 0.8818359375}, {"start": 2041.23, "end": 2041.49, "word": " class", "probability": 0.73974609375}, {"start": 2041.49, "end": 2041.61, "word": " from", "probability": 0.56005859375}, {"start": 2041.61, "end": 2041.69, "word": " the", "probability": 0.447509765625}, {"start": 2041.69, "end": 2042.21, "word": " interface?", "probability": 0.8603515625}, {"start": 2042.83, "end": 2043.23, "word": " Tomorrow", "probability": 0.720703125}, {"start": 2043.23, "end": 2043.31, "word": " you", "probability": 0.70947265625}, {"start": 2043.31, "end": 2043.53, "word": " have", "probability": 0.26611328125}, {"start": 2043.53, "end": 2043.55, "word": " to", "probability": 0.96875}, {"start": 2043.55, "end": 2043.79, "word": " do", "probability": 0.417724609375}, {"start": 2043.79, "end": 2044.25, "word": " mocking.", "probability": 0.5546875}, {"start": 2044.59, "end": 2044.73, "word": " We", "probability": 0.48681640625}, {"start": 2044.73, "end": 2044.93, "word": " took", "probability": 0.4638671875}, {"start": 2044.93, "end": 2045.07, "word": " the", "probability": 0.54345703125}, {"start": 2045.07, "end": 2045.31, "word": " mocking.", "probability": 0.951171875}, {"start": 2045.75, "end": 2045.75, "word": " Okay?", "probability": 0.191162109375}, {"start": 2046.67, "end": 2046.85, "word": " So,", "probability": 0.205322265625}, {"start": 2047.19, "end": 2048.31, "word": " the", "probability": 0.2125244140625}, {"start": 2048.31, "end": 2048.93, "word": " front", "probability": 0.1422119140625}, {"start": 2048.93, "end": 2049.85, "word": "-end", "probability": 0.767822265625}, {"start": 2049.85, "end": 2049.85, "word": " programmer", "probability": 0.6845703125}, {"start": 2049.85, "end": 2050.15, "word": " wants", "probability": 0.262451171875}, {"start": 2050.15, "end": 2050.27, "word": " to", "probability": 0.966796875}, {"start": 2050.27, "end": 2050.81, "word": " test", "probability": 0.30859375}, {"start": 2050.81, "end": 2051.37, "word": " the", "probability": 0.4931640625}, {"start": 2051.37, "end": 2051.71, "word": " interfaces", "probability": 0.63037109375}, {"start": 2051.71, "end": 2053.21, "word": " without", "probability": 0.810546875}, {"start": 2053.21, "end": 2053.65, "word": " whom?", "probability": 0.2008056640625}, {"start": 2054.19, "end": 2054.43, "word": " The", "probability": 0.66796875}, {"start": 2054.43, "end": 2054.77, "word": " database.", "probability": 0.86669921875}, {"start": 2054.83, "end": 2055.05, "word": " The", "probability": 0.7314453125}, {"start": 2055.05, "end": 2055.37, "word": " server", "probability": 0.9384765625}, {"start": 2055.37, "end": 2055.49, "word": " is", "probability": 0.9208984375}, {"start": 2055.49, "end": 2055.49, "word": " still", "probability": 0.314208984375}, {"start": 2055.49, "end": 2055.83, "word": " ready.", "probability": 0.58984375}, {"start": 2055.93, "end": 2056.19, "word": " You", "probability": 0.7529296875}, {"start": 2056.19, "end": 2056.37, "word": " haven't", "probability": 0.633544921875}, {"start": 2056.37, "end": 2056.73, "word": " downloaded", "probability": 0.5947265625}, {"start": 2056.73, "end": 2056.87, "word": " your", "probability": 0.7578125}, {"start": 2056.87, "end": 2057.13, "word": " website", "probability": 0.51318359375}, {"start": 2057.13, "end": 2057.49, "word": " yet.", "probability": 0.61767578125}, {"start": 2057.91, "end": 2058.43, "word": " So,", "probability": 0.78564453125}, {"start": 2058.49, "end": 2058.59, "word": " what", "probability": 0.87158203125}, {"start": 2058.59, "end": 2058.59, "word": " does", "probability": 0.8359375}, {"start": 2058.59, "end": 2058.69, "word": " he", "probability": 0.8203125}, {"start": 2058.69, "end": 2058.87, "word": " do?", "probability": 0.9609375}, {"start": 2059.23, "end": 2059.49, "word": " He", "probability": 0.87548828125}, {"start": 2059.49, "end": 2059.95, "word": " creates", "probability": 0.253662109375}, {"start": 2059.95, "end": 2060.69, "word": " a", "probability": 0.98046875}, {"start": 2060.69, "end": 2060.69, "word": " new", "probability": 0.90966796875}, {"start": 2060.69, "end": 2060.95, "word": " module.", "probability": 0.68359375}, {"start": 2062.05, "end": 2062.49, "word": " A", "probability": 0.72607421875}, {"start": 2062.49, "end": 2062.49, "word": " new", "probability": 0.908203125}, {"start": 2062.49, "end": 2062.87, "word": " class.", "probability": 0.96533203125}, {"start": 2063.87, "end": 2063.99, "word": " Okay?", "probability": 0.5400390625}, {"start": 2064.23, "end": 2064.53, "word": " It", "probability": 0.165283203125}, {"start": 2064.53, "end": 2064.57, "word": " also", "probability": 0.78955078125}, {"start": 2064.57, "end": 2065.87, "word": " implements", "probability": 0.6737060546875}, {"start": 2065.87, "end": 2066.09, "word": " for", "probability": 0.5029296875}, {"start": 2066.09, "end": 2066.23, "word": " whom?", "probability": 0.96142578125}], "temperature": 1.0}, {"id": 86, "seek": 209144, "start": 2068.35, "end": 2091.45, "text": " And of course, it has to implement all existing methods. But what does it do? Through all existing methods, it does not connect to the database and query, it returns fake data. It returns a list of data. Why? Because it keeps ... it comes and works, it makes a request to the controller, and the controller returns the controller. Instead of retrieving an object from ProductDB, it retrieves an object from MockDB.", "tokens": [400, 295, 1164, 11, 309, 575, 281, 4445, 439, 6741, 7150, 13, 583, 437, 775, 309, 360, 30, 8927, 439, 6741, 7150, 11, 309, 775, 406, 1745, 281, 264, 8149, 293, 14581, 11, 309, 11247, 7592, 1412, 13, 467, 11247, 257, 1329, 295, 1412, 13, 1545, 30, 1436, 309, 5965, 1097, 309, 1487, 293, 1985, 11, 309, 1669, 257, 5308, 281, 264, 10561, 11, 293, 264, 10561, 11247, 264, 10561, 13, 7156, 295, 19817, 798, 364, 2657, 490, 22005, 27735, 11, 309, 19817, 977, 364, 2657, 490, 376, 1560, 27735, 13], "avg_logprob": -0.49592393507128174, "compression_ratio": 1.7659574468085106, "no_speech_prob": 2.682209014892578e-06, "words": [{"start": 2068.35, "end": 2068.75, "word": " And", "probability": 0.06634521484375}, {"start": 2068.75, "end": 2069.15, "word": " of", "probability": 0.4453125}, {"start": 2069.15, "end": 2069.29, "word": " course,", "probability": 0.93994140625}, {"start": 2069.35, "end": 2069.35, "word": " it", "probability": 0.49951171875}, {"start": 2069.35, "end": 2069.49, "word": " has", "probability": 0.2320556640625}, {"start": 2069.49, "end": 2069.51, "word": " to", "probability": 0.9658203125}, {"start": 2069.51, "end": 2070.07, "word": " implement", "probability": 0.68603515625}, {"start": 2070.07, "end": 2070.43, "word": " all", "probability": 0.607421875}, {"start": 2070.43, "end": 2070.55, "word": " existing", "probability": 0.5029296875}, {"start": 2070.55, "end": 2070.85, "word": " methods.", "probability": 0.85595703125}, {"start": 2071.37, "end": 2071.51, "word": " But", "probability": 0.75439453125}, {"start": 2071.51, "end": 2071.71, "word": " what", "probability": 0.61181640625}, {"start": 2071.71, "end": 2071.81, "word": " does", "probability": 0.79443359375}, {"start": 2071.81, "end": 2071.83, "word": " it", "probability": 0.84814453125}, {"start": 2071.83, "end": 2072.11, "word": " do?", "probability": 0.9423828125}, {"start": 2072.31, "end": 2072.63, "word": " Through", "probability": 0.37109375}, {"start": 2072.63, "end": 2073.03, "word": " all", "probability": 0.6806640625}, {"start": 2073.03, "end": 2073.11, "word": " existing", "probability": 0.71337890625}, {"start": 2073.11, "end": 2073.35, "word": " methods,", "probability": 0.9169921875}, {"start": 2073.39, "end": 2073.47, "word": " it", "probability": 0.83154296875}, {"start": 2073.47, "end": 2073.59, "word": " does", "probability": 0.383544921875}, {"start": 2073.59, "end": 2073.79, "word": " not", "probability": 0.90771484375}, {"start": 2073.79, "end": 2074.11, "word": " connect", "probability": 0.74560546875}, {"start": 2074.11, "end": 2074.27, "word": " to", "probability": 0.86181640625}, {"start": 2074.27, "end": 2074.37, "word": " the", "probability": 0.560546875}, {"start": 2074.37, "end": 2074.77, "word": " database", "probability": 0.90283203125}, {"start": 2074.77, "end": 2074.89, "word": " and", "probability": 0.4560546875}, {"start": 2074.89, "end": 2075.23, "word": " query,", "probability": 0.57470703125}, {"start": 2075.49, "end": 2075.75, "word": " it", "probability": 0.55029296875}, {"start": 2075.75, "end": 2075.93, "word": " returns", "probability": 0.7119140625}, {"start": 2075.93, "end": 2076.23, "word": " fake", "probability": 0.6875}, {"start": 2076.23, "end": 2076.59, "word": " data.", "probability": 0.9169921875}, {"start": 2077.07, "end": 2077.19, "word": " It", "probability": 0.67724609375}, {"start": 2077.19, "end": 2077.59, "word": " returns", "probability": 0.70654296875}, {"start": 2077.59, "end": 2077.77, "word": " a", "probability": 0.81396484375}, {"start": 2077.77, "end": 2077.93, "word": " list", "probability": 0.85888671875}, {"start": 2077.93, "end": 2078.09, "word": " of", "probability": 0.97119140625}, {"start": 2078.09, "end": 2078.37, "word": " data.", "probability": 0.822265625}, {"start": 2079.29, "end": 2079.67, "word": " Why?", "probability": 0.73779296875}, {"start": 2080.19, "end": 2080.39, "word": " Because", "probability": 0.74951171875}, {"start": 2080.39, "end": 2080.85, "word": " it", "probability": 0.488525390625}, {"start": 2080.85, "end": 2081.01, "word": " keeps", "probability": 0.2423095703125}, {"start": 2081.01, "end": 2081.29, "word": " ...", "probability": 0.0914306640625}, {"start": 2081.29, "end": 2081.59, "word": " it", "probability": 0.322265625}, {"start": 2081.59, "end": 2081.77, "word": " comes", "probability": 0.3974609375}, {"start": 2081.77, "end": 2081.85, "word": " and", "probability": 0.703125}, {"start": 2081.85, "end": 2082.17, "word": " works,", "probability": 0.67578125}, {"start": 2082.41, "end": 2082.47, "word": " it", "probability": 0.390625}, {"start": 2082.47, "end": 2083.33, "word": " makes", "probability": 0.62646484375}, {"start": 2083.33, "end": 2083.47, "word": " a", "probability": 0.79443359375}, {"start": 2083.47, "end": 2083.81, "word": " request", "probability": 0.955078125}, {"start": 2083.81, "end": 2083.97, "word": " to", "probability": 0.80859375}, {"start": 2083.97, "end": 2084.09, "word": " the", "probability": 0.8828125}, {"start": 2084.09, "end": 2084.47, "word": " controller,", "probability": 0.80517578125}, {"start": 2084.51, "end": 2084.61, "word": " and", "probability": 0.6865234375}, {"start": 2084.61, "end": 2084.65, "word": " the", "probability": 0.8271484375}, {"start": 2084.65, "end": 2085.09, "word": " controller", "probability": 0.85595703125}, {"start": 2085.09, "end": 2086.05, "word": " returns", "probability": 0.0494384765625}, {"start": 2086.05, "end": 2086.29, "word": " the", "probability": 0.64453125}, {"start": 2086.29, "end": 2086.65, "word": " controller.", "probability": 0.8515625}, {"start": 2086.77, "end": 2086.97, "word": " Instead", "probability": 0.7568359375}, {"start": 2086.97, "end": 2087.11, "word": " of", "probability": 0.97314453125}, {"start": 2087.11, "end": 2087.33, "word": " retrieving", "probability": 0.5723876953125}, {"start": 2087.33, "end": 2087.51, "word": " an", "probability": 0.5263671875}, {"start": 2087.51, "end": 2087.71, "word": " object", "probability": 0.97412109375}, {"start": 2087.71, "end": 2087.95, "word": " from", "probability": 0.861328125}, {"start": 2087.95, "end": 2088.67, "word": " ProductDB,", "probability": 0.50537109375}, {"start": 2089.65, "end": 2089.81, "word": " it", "probability": 0.8408203125}, {"start": 2089.81, "end": 2089.97, "word": " retrieves", "probability": 0.93603515625}, {"start": 2089.97, "end": 2090.17, "word": " an", "probability": 0.8984375}, {"start": 2090.17, "end": 2090.35, "word": " object", "probability": 0.9765625}, {"start": 2090.35, "end": 2090.57, "word": " from", "probability": 0.88671875}, {"start": 2090.57, "end": 2091.45, "word": " MockDB.", "probability": 0.7064615885416666}], "temperature": 1.0}, {"id": 87, "seek": 211990, "start": 2094.24, "end": 2119.9, "text": "Okay? And I can do whatever I want without changing anything in the controller. I can use the dependency injection from the external class, which is the module. I can tell it that if I find this interface, create an object from the mock. Let's say I want to create a comment for the real object and let's say I want to create a mock. I can change everything from the outside. Do you agree with me, guys? Okay? So this is all work on ... So everything that we took before", "tokens": [8297, 30, 400, 286, 393, 360, 2035, 286, 528, 1553, 4473, 1340, 294, 264, 10561, 13, 286, 393, 764, 264, 33621, 22873, 490, 264, 8320, 1508, 11, 597, 307, 264, 10088, 13, 286, 393, 980, 309, 300, 498, 286, 915, 341, 9226, 11, 1884, 364, 2657, 490, 264, 17362, 13, 961, 311, 584, 286, 528, 281, 1884, 257, 2871, 337, 264, 957, 2657, 293, 718, 311, 584, 286, 528, 281, 1884, 257, 17362, 13, 286, 393, 1319, 1203, 490, 264, 2380, 13, 1144, 291, 3986, 365, 385, 11, 1074, 30, 1033, 30, 407, 341, 307, 439, 589, 322, 1097, 407, 1203, 300, 321, 1890, 949], "avg_logprob": -0.650943416469502, "compression_ratio": 1.7735849056603774, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 2094.24, "end": 2094.5, "word": "Okay?", "probability": 0.1158447265625}, {"start": 2094.82, "end": 2095.02, "word": " And", "probability": 0.587890625}, {"start": 2095.02, "end": 2095.34, "word": " I", "probability": 0.364013671875}, {"start": 2095.34, "end": 2095.34, "word": " can", "probability": 0.258056640625}, {"start": 2095.34, "end": 2095.56, "word": " do", "probability": 0.260498046875}, {"start": 2095.56, "end": 2095.6, "word": " whatever", "probability": 0.25830078125}, {"start": 2095.6, "end": 2095.6, "word": " I", "probability": 0.7978515625}, {"start": 2095.6, "end": 2095.6, "word": " want", "probability": 0.81201171875}, {"start": 2095.6, "end": 2095.94, "word": " without", "probability": 0.24365234375}, {"start": 2095.94, "end": 2096.34, "word": " changing", "probability": 0.267578125}, {"start": 2096.34, "end": 2096.9, "word": " anything", "probability": 0.50927734375}, {"start": 2096.9, "end": 2097.12, "word": " in", "probability": 0.75341796875}, {"start": 2097.12, "end": 2097.2, "word": " the", "probability": 0.76708984375}, {"start": 2097.2, "end": 2097.52, "word": " controller.", "probability": 0.433837890625}, {"start": 2097.66, "end": 2097.72, "word": " I", "probability": 0.712890625}, {"start": 2097.72, "end": 2097.86, "word": " can", "probability": 0.51025390625}, {"start": 2097.86, "end": 2098.04, "word": " use", "probability": 0.83837890625}, {"start": 2098.04, "end": 2098.2, "word": " the", "probability": 0.701171875}, {"start": 2098.2, "end": 2098.54, "word": " dependency", "probability": 0.7646484375}, {"start": 2098.54, "end": 2099.12, "word": " injection", "probability": 0.95556640625}, {"start": 2099.12, "end": 2099.82, "word": " from", "probability": 0.1822509765625}, {"start": 2099.82, "end": 2100.24, "word": " the", "probability": 0.5595703125}, {"start": 2100.24, "end": 2100.8, "word": " external", "probability": 0.58984375}, {"start": 2100.8, "end": 2101.1, "word": " class,", "probability": 0.87744140625}, {"start": 2101.42, "end": 2101.82, "word": " which", "probability": 0.7099609375}, {"start": 2101.82, "end": 2101.9, "word": " is", "probability": 0.90283203125}, {"start": 2101.9, "end": 2102.02, "word": " the", "probability": 0.79345703125}, {"start": 2102.02, "end": 2102.42, "word": " module.", "probability": 0.89306640625}, {"start": 2102.62, "end": 2102.8, "word": " I", "probability": 0.669921875}, {"start": 2102.8, "end": 2102.86, "word": " can", "probability": 0.71484375}, {"start": 2102.86, "end": 2103.0, "word": " tell", "probability": 0.59130859375}, {"start": 2103.0, "end": 2103.08, "word": " it", "probability": 0.7861328125}, {"start": 2103.08, "end": 2103.14, "word": " that", "probability": 0.300048828125}, {"start": 2103.14, "end": 2103.22, "word": " if", "probability": 0.86083984375}, {"start": 2103.22, "end": 2103.34, "word": " I", "probability": 0.73583984375}, {"start": 2103.34, "end": 2103.54, "word": " find", "probability": 0.70263671875}, {"start": 2103.54, "end": 2103.68, "word": " this", "probability": 0.8525390625}, {"start": 2103.68, "end": 2104.28, "word": " interface,", "probability": 0.89990234375}, {"start": 2105.48, "end": 2105.72, "word": " create", "probability": 0.36181640625}, {"start": 2105.72, "end": 2105.86, "word": " an", "probability": 0.86279296875}, {"start": 2105.86, "end": 2106.04, "word": " object", "probability": 0.978515625}, {"start": 2106.04, "end": 2106.22, "word": " from", "probability": 0.7890625}, {"start": 2106.22, "end": 2106.32, "word": " the", "probability": 0.44189453125}, {"start": 2106.32, "end": 2106.48, "word": " mock.", "probability": 0.435791015625}, {"start": 2106.58, "end": 2106.86, "word": " Let's", "probability": 0.56658935546875}, {"start": 2106.86, "end": 2106.86, "word": " say", "probability": 0.54638671875}, {"start": 2106.86, "end": 2106.94, "word": " I", "probability": 0.303466796875}, {"start": 2106.94, "end": 2107.12, "word": " want", "probability": 0.197998046875}, {"start": 2107.12, "end": 2107.26, "word": " to", "probability": 0.95654296875}, {"start": 2107.26, "end": 2107.26, "word": " create", "probability": 0.49169921875}, {"start": 2107.26, "end": 2107.34, "word": " a", "probability": 0.8251953125}, {"start": 2107.34, "end": 2107.68, "word": " comment", "probability": 0.921875}, {"start": 2107.68, "end": 2108.94, "word": " for", "probability": 0.50390625}, {"start": 2108.94, "end": 2109.5, "word": " the", "probability": 0.5703125}, {"start": 2109.5, "end": 2110.38, "word": " real", "probability": 0.4814453125}, {"start": 2110.38, "end": 2110.46, "word": " object", "probability": 0.1351318359375}, {"start": 2110.46, "end": 2110.88, "word": " and", "probability": 0.38818359375}, {"start": 2110.88, "end": 2111.52, "word": " let's", "probability": 0.4189453125}, {"start": 2111.52, "end": 2111.52, "word": " say", "probability": 0.67626953125}, {"start": 2111.52, "end": 2111.58, "word": " I", "probability": 0.591796875}, {"start": 2111.58, "end": 2111.58, "word": " want", "probability": 0.65673828125}, {"start": 2111.58, "end": 2111.58, "word": " to", "probability": 0.93359375}, {"start": 2111.58, "end": 2111.7, "word": " create", "probability": 0.7802734375}, {"start": 2111.7, "end": 2112.48, "word": " a", "probability": 0.7861328125}, {"start": 2112.48, "end": 2112.66, "word": " mock.", "probability": 0.290771484375}, {"start": 2112.76, "end": 2113.16, "word": " I", "probability": 0.336181640625}, {"start": 2113.16, "end": 2113.28, "word": " can", "probability": 0.79931640625}, {"start": 2113.28, "end": 2113.48, "word": " change", "probability": 0.759765625}, {"start": 2113.48, "end": 2113.94, "word": " everything", "probability": 0.71630859375}, {"start": 2113.94, "end": 2113.94, "word": " from", "probability": 0.6884765625}, {"start": 2113.94, "end": 2113.94, "word": " the", "probability": 0.40771484375}, {"start": 2113.94, "end": 2113.94, "word": " outside.", "probability": 0.78515625}, {"start": 2114.76, "end": 2115.16, "word": " Do", "probability": 0.1717529296875}, {"start": 2115.16, "end": 2115.16, "word": " you", "probability": 0.95751953125}, {"start": 2115.16, "end": 2115.2, "word": " agree", "probability": 0.390869140625}, {"start": 2115.2, "end": 2115.2, "word": " with", "probability": 0.496337890625}, {"start": 2115.2, "end": 2115.42, "word": " me,", "probability": 0.7216796875}, {"start": 2115.42, "end": 2115.62, "word": " guys?", "probability": 0.7724609375}, {"start": 2116.08, "end": 2116.48, "word": " Okay?", "probability": 0.55615234375}, {"start": 2116.88, "end": 2117.02, "word": " So", "probability": 0.462646484375}, {"start": 2117.02, "end": 2117.24, "word": " this", "probability": 0.301513671875}, {"start": 2117.24, "end": 2117.36, "word": " is", "probability": 0.81591796875}, {"start": 2117.36, "end": 2117.64, "word": " all", "probability": 0.767578125}, {"start": 2117.64, "end": 2118.1, "word": " work", "probability": 0.2120361328125}, {"start": 2118.1, "end": 2118.28, "word": " on", "probability": 0.51806640625}, {"start": 2118.28, "end": 2118.42, "word": " ...", "probability": 0.150390625}, {"start": 2118.42, "end": 2118.74, "word": " So", "probability": 0.31591796875}, {"start": 2118.74, "end": 2119.04, "word": " everything", "probability": 0.454345703125}, {"start": 2119.04, "end": 2119.18, "word": " that", "probability": 0.44287109375}, {"start": 2119.18, "end": 2119.38, "word": " we", "probability": 0.68701171875}, {"start": 2119.38, "end": 2119.58, "word": " took", "probability": 0.28466796875}, {"start": 2119.58, "end": 2119.9, "word": " before", "probability": 0.495361328125}], "temperature": 1.0}, {"id": 88, "seek": 214269, "start": 2121.42, "end": 2142.7, "text": " Yes, there is a lot of repeated words, right or wrong? What I was giving you before was to explain to you how to do what? The MVC. Imagine if I started from here, okay? Everyone before you could not imagine how to do it. Did you understand why I left it to the end? Okay? That is to say, actually, the whole course was based on the MVC.", "tokens": [1079, 11, 456, 307, 257, 688, 295, 10477, 2283, 11, 558, 420, 2085, 30, 708, 286, 390, 2902, 291, 949, 390, 281, 2903, 281, 291, 577, 281, 360, 437, 30, 440, 17663, 34, 13, 11739, 498, 286, 1409, 490, 510, 11, 1392, 30, 5198, 949, 291, 727, 406, 3811, 577, 281, 360, 309, 13, 2589, 291, 1223, 983, 286, 1411, 309, 281, 264, 917, 30, 1033, 30, 663, 307, 281, 584, 11, 767, 11, 264, 1379, 1164, 390, 2361, 322, 264, 17663, 34, 13], "avg_logprob": -0.6316176526686724, "compression_ratio": 1.5112107623318385, "no_speech_prob": 4.76837158203125e-06, "words": [{"start": 2121.42, "end": 2121.7, "word": " Yes,", "probability": 0.10687255859375}, {"start": 2121.96, "end": 2122.1, "word": " there", "probability": 0.6298828125}, {"start": 2122.1, "end": 2122.18, "word": " is", "probability": 0.2120361328125}, {"start": 2122.18, "end": 2122.24, "word": " a", "probability": 0.65625}, {"start": 2122.24, "end": 2122.54, "word": " lot", "probability": 0.88427734375}, {"start": 2122.54, "end": 2122.68, "word": " of", "probability": 0.82568359375}, {"start": 2122.68, "end": 2123.02, "word": " repeated", "probability": 0.308349609375}, {"start": 2123.02, "end": 2123.04, "word": " words,", "probability": 0.343505859375}, {"start": 2123.34, "end": 2123.5, "word": " right", "probability": 0.41796875}, {"start": 2123.5, "end": 2123.68, "word": " or", "probability": 0.57470703125}, {"start": 2123.68, "end": 2123.68, "word": " wrong?", "probability": 0.5341796875}, {"start": 2123.74, "end": 2123.88, "word": " What", "probability": 0.3984375}, {"start": 2123.88, "end": 2124.06, "word": " I", "probability": 0.8134765625}, {"start": 2124.06, "end": 2124.06, "word": " was", "probability": 0.39794921875}, {"start": 2124.06, "end": 2124.32, "word": " giving", "probability": 0.2763671875}, {"start": 2124.32, "end": 2124.44, "word": " you", "probability": 0.88232421875}, {"start": 2124.44, "end": 2124.82, "word": " before", "probability": 0.73291015625}, {"start": 2124.82, "end": 2125.76, "word": " was", "probability": 0.59521484375}, {"start": 2125.76, "end": 2125.92, "word": " to", "probability": 0.1392822265625}, {"start": 2125.92, "end": 2126.1, "word": " explain", "probability": 0.1580810546875}, {"start": 2126.1, "end": 2126.1, "word": " to", "probability": 0.356201171875}, {"start": 2126.1, "end": 2126.3, "word": " you", "probability": 0.953125}, {"start": 2126.3, "end": 2126.56, "word": " how", "probability": 0.41259765625}, {"start": 2126.56, "end": 2126.56, "word": " to", "probability": 0.8115234375}, {"start": 2126.56, "end": 2126.8, "word": " do", "probability": 0.771484375}, {"start": 2126.8, "end": 2127.06, "word": " what?", "probability": 0.474853515625}, {"start": 2127.6, "end": 2127.9, "word": " The", "probability": 0.287841796875}, {"start": 2127.9, "end": 2128.34, "word": " MVC.", "probability": 0.7252197265625}, {"start": 2128.56, "end": 2128.96, "word": " Imagine", "probability": 0.82421875}, {"start": 2128.96, "end": 2129.12, "word": " if", "probability": 0.8671875}, {"start": 2129.12, "end": 2129.28, "word": " I", "probability": 0.98095703125}, {"start": 2129.28, "end": 2129.52, "word": " started", "probability": 0.83544921875}, {"start": 2129.52, "end": 2129.64, "word": " from", "probability": 0.73193359375}, {"start": 2129.64, "end": 2129.9, "word": " here,", "probability": 0.81298828125}, {"start": 2131.66, "end": 2131.78, "word": " okay?", "probability": 0.22216796875}, {"start": 2132.36, "end": 2132.74, "word": " Everyone", "probability": 0.391357421875}, {"start": 2132.74, "end": 2133.1, "word": " before", "probability": 0.38232421875}, {"start": 2133.1, "end": 2133.34, "word": " you", "probability": 0.31298828125}, {"start": 2133.34, "end": 2133.48, "word": " could", "probability": 0.1298828125}, {"start": 2133.48, "end": 2133.48, "word": " not", "probability": 0.7724609375}, {"start": 2133.48, "end": 2133.9, "word": " imagine", "probability": 0.7744140625}, {"start": 2133.9, "end": 2134.22, "word": " how", "probability": 0.87841796875}, {"start": 2134.22, "end": 2134.32, "word": " to", "probability": 0.3408203125}, {"start": 2134.32, "end": 2134.52, "word": " do", "probability": 0.8916015625}, {"start": 2134.52, "end": 2134.68, "word": " it.", "probability": 0.8564453125}, {"start": 2135.3, "end": 2135.4, "word": " Did", "probability": 0.312744140625}, {"start": 2135.4, "end": 2135.4, "word": " you", "probability": 0.9384765625}, {"start": 2135.4, "end": 2135.54, "word": " understand", "probability": 0.73974609375}, {"start": 2135.54, "end": 2135.7, "word": " why", "probability": 0.9033203125}, {"start": 2135.7, "end": 2135.86, "word": " I", "probability": 0.89697265625}, {"start": 2135.86, "end": 2136.04, "word": " left", "probability": 0.81591796875}, {"start": 2136.04, "end": 2136.12, "word": " it", "probability": 0.861328125}, {"start": 2136.12, "end": 2136.18, "word": " to", "probability": 0.265625}, {"start": 2136.18, "end": 2136.26, "word": " the", "probability": 0.8642578125}, {"start": 2136.26, "end": 2136.46, "word": " end?", "probability": 0.435302734375}, {"start": 2138.04, "end": 2138.38, "word": " Okay?", "probability": 0.5703125}, {"start": 2138.52, "end": 2138.68, "word": " That", "probability": 0.1627197265625}, {"start": 2138.68, "end": 2138.68, "word": " is", "probability": 0.5361328125}, {"start": 2138.68, "end": 2138.76, "word": " to", "probability": 0.5830078125}, {"start": 2138.76, "end": 2138.76, "word": " say,", "probability": 0.95654296875}, {"start": 2138.84, "end": 2139.32, "word": " actually,", "probability": 0.180908203125}, {"start": 2139.8, "end": 2140.1, "word": " the", "probability": 0.410400390625}, {"start": 2140.1, "end": 2140.1, "word": " whole", "probability": 0.64111328125}, {"start": 2140.1, "end": 2140.7, "word": " course", "probability": 0.96728515625}, {"start": 2140.7, "end": 2141.88, "word": " was", "probability": 0.826171875}, {"start": 2141.88, "end": 2142.1, "word": " based", "probability": 0.267333984375}, {"start": 2142.1, "end": 2142.24, "word": " on", "probability": 0.93603515625}, {"start": 2142.24, "end": 2142.34, "word": " the", "probability": 0.7119140625}, {"start": 2142.34, "end": 2142.7, "word": " MVC.", "probability": 0.95947265625}], "temperature": 1.0}, {"id": 89, "seek": 217283, "start": 2144.07, "end": 2172.83, "text": " Okay? But this gate, we will look at it from above. When you see it, you understand the details of this gate. So when I tell you from above, you understand the picture well. With me or not, guys? Okay? So now this is our example in which we made a separate model. Okay? And now, is the view new? The new view has become smaller. Every code is a user interface. There is no query or connection to the database. But what does a word like the name add controller do? And the controller", "tokens": [1033, 30, 583, 341, 8539, 11, 321, 486, 574, 412, 309, 490, 3673, 13, 1133, 291, 536, 309, 11, 291, 1223, 264, 4365, 295, 341, 8539, 13, 407, 562, 286, 980, 291, 490, 3673, 11, 291, 1223, 264, 3036, 731, 13, 2022, 385, 420, 406, 11, 1074, 30, 1033, 30, 407, 586, 341, 307, 527, 1365, 294, 597, 321, 1027, 257, 4994, 2316, 13, 1033, 30, 400, 586, 11, 307, 264, 1910, 777, 30, 440, 777, 1910, 575, 1813, 4356, 13, 2048, 3089, 307, 257, 4195, 9226, 13, 821, 307, 572, 14581, 420, 4984, 281, 264, 8149, 13, 583, 437, 775, 257, 1349, 411, 264, 1315, 909, 10561, 360, 30, 400, 264, 10561], "avg_logprob": -0.5194626978614874, "compression_ratio": 1.7007042253521127, "no_speech_prob": 3.236532211303711e-05, "words": [{"start": 2144.07, "end": 2144.33, "word": " Okay?", "probability": 0.058074951171875}, {"start": 2144.55, "end": 2144.83, "word": " But", "probability": 0.6845703125}, {"start": 2144.83, "end": 2145.01, "word": " this", "probability": 0.27734375}, {"start": 2145.01, "end": 2145.09, "word": " gate,", "probability": 0.75244140625}, {"start": 2145.19, "end": 2145.23, "word": " we", "probability": 0.45068359375}, {"start": 2145.23, "end": 2145.31, "word": " will", "probability": 0.1622314453125}, {"start": 2145.31, "end": 2145.47, "word": " look", "probability": 0.5224609375}, {"start": 2145.47, "end": 2145.65, "word": " at", "probability": 0.78759765625}, {"start": 2145.65, "end": 2145.77, "word": " it", "probability": 0.7548828125}, {"start": 2145.77, "end": 2145.87, "word": " from", "probability": 0.8388671875}, {"start": 2145.87, "end": 2146.17, "word": " above.", "probability": 0.845703125}, {"start": 2146.25, "end": 2146.33, "word": " When", "probability": 0.57275390625}, {"start": 2146.33, "end": 2146.47, "word": " you", "probability": 0.47412109375}, {"start": 2146.47, "end": 2146.61, "word": " see", "probability": 0.52685546875}, {"start": 2146.61, "end": 2146.73, "word": " it,", "probability": 0.325439453125}, {"start": 2146.73, "end": 2146.91, "word": " you", "probability": 0.85791015625}, {"start": 2146.91, "end": 2147.15, "word": " understand", "probability": 0.36474609375}, {"start": 2147.15, "end": 2147.33, "word": " the", "probability": 0.76708984375}, {"start": 2147.33, "end": 2147.63, "word": " details", "probability": 0.8330078125}, {"start": 2147.63, "end": 2147.75, "word": " of", "probability": 0.81103515625}, {"start": 2147.75, "end": 2147.83, "word": " this", "probability": 0.771484375}, {"start": 2147.83, "end": 2148.03, "word": " gate.", "probability": 0.927734375}, {"start": 2148.45, "end": 2148.61, "word": " So", "probability": 0.64990234375}, {"start": 2148.61, "end": 2148.73, "word": " when", "probability": 0.6767578125}, {"start": 2148.73, "end": 2148.81, "word": " I", "probability": 0.93408203125}, {"start": 2148.81, "end": 2148.95, "word": " tell", "probability": 0.64892578125}, {"start": 2148.95, "end": 2149.09, "word": " you", "probability": 0.9599609375}, {"start": 2149.09, "end": 2149.19, "word": " from", "probability": 0.8330078125}, {"start": 2149.19, "end": 2149.39, "word": " above,", "probability": 0.92041015625}, {"start": 2149.51, "end": 2149.51, "word": " you", "probability": 0.84814453125}, {"start": 2149.51, "end": 2149.89, "word": " understand", "probability": 0.39208984375}, {"start": 2149.89, "end": 2150.07, "word": " the", "probability": 0.83837890625}, {"start": 2150.07, "end": 2150.33, "word": " picture", "probability": 0.55419921875}, {"start": 2150.33, "end": 2151.29, "word": " well.", "probability": 0.7041015625}, {"start": 2152.19, "end": 2152.33, "word": " With", "probability": 0.136474609375}, {"start": 2152.33, "end": 2152.47, "word": " me", "probability": 0.8955078125}, {"start": 2152.47, "end": 2152.59, "word": " or", "probability": 0.7744140625}, {"start": 2152.59, "end": 2152.69, "word": " not,", "probability": 0.76025390625}, {"start": 2152.85, "end": 2153.07, "word": " guys?", "probability": 0.685546875}, {"start": 2153.61, "end": 2154.01, "word": " Okay?", "probability": 0.58154296875}, {"start": 2154.31, "end": 2154.47, "word": " So", "probability": 0.71044921875}, {"start": 2154.47, "end": 2154.69, "word": " now", "probability": 0.74169921875}, {"start": 2154.69, "end": 2154.85, "word": " this", "probability": 0.58837890625}, {"start": 2154.85, "end": 2154.91, "word": " is", "probability": 0.7783203125}, {"start": 2154.91, "end": 2154.91, "word": " our", "probability": 0.791015625}, {"start": 2154.91, "end": 2155.23, "word": " example", "probability": 0.8837890625}, {"start": 2155.23, "end": 2155.65, "word": " in", "probability": 0.1383056640625}, {"start": 2155.65, "end": 2155.65, "word": " which", "probability": 0.77685546875}, {"start": 2155.65, "end": 2155.81, "word": " we", "probability": 0.87841796875}, {"start": 2155.81, "end": 2155.81, "word": " made", "probability": 0.41162109375}, {"start": 2155.81, "end": 2156.31, "word": " a", "probability": 0.375732421875}, {"start": 2156.31, "end": 2156.57, "word": " separate", "probability": 0.292724609375}, {"start": 2156.57, "end": 2156.57, "word": " model.", "probability": 0.77099609375}, {"start": 2157.37, "end": 2157.63, "word": " Okay?", "probability": 0.763671875}, {"start": 2158.13, "end": 2158.39, "word": " And", "probability": 0.84033203125}, {"start": 2158.39, "end": 2158.81, "word": " now,", "probability": 0.9345703125}, {"start": 2159.97, "end": 2160.17, "word": " is", "probability": 0.279052734375}, {"start": 2160.17, "end": 2160.27, "word": " the", "probability": 0.7275390625}, {"start": 2160.27, "end": 2160.53, "word": " view", "probability": 0.68701171875}, {"start": 2160.53, "end": 2160.93, "word": " new?", "probability": 0.54248046875}, {"start": 2161.29, "end": 2161.63, "word": " The", "probability": 0.8291015625}, {"start": 2161.63, "end": 2161.69, "word": " new", "probability": 0.49267578125}, {"start": 2161.69, "end": 2161.99, "word": " view", "probability": 0.9287109375}, {"start": 2161.99, "end": 2162.23, "word": " has", "probability": 0.49560546875}, {"start": 2162.23, "end": 2162.27, "word": " become", "probability": 0.8369140625}, {"start": 2162.27, "end": 2162.59, "word": " smaller.", "probability": 0.8310546875}, {"start": 2162.87, "end": 2163.15, "word": " Every", "probability": 0.427490234375}, {"start": 2163.15, "end": 2163.67, "word": " code", "probability": 0.8720703125}, {"start": 2163.67, "end": 2164.61, "word": " is", "probability": 0.69677734375}, {"start": 2164.61, "end": 2164.79, "word": " a", "probability": 0.7255859375}, {"start": 2164.79, "end": 2165.01, "word": " user", "probability": 0.93603515625}, {"start": 2165.01, "end": 2165.53, "word": " interface.", "probability": 0.85693359375}, {"start": 2165.63, "end": 2165.73, "word": " There", "probability": 0.7587890625}, {"start": 2165.73, "end": 2165.95, "word": " is", "probability": 0.86962890625}, {"start": 2165.95, "end": 2166.07, "word": " no", "probability": 0.90087890625}, {"start": 2166.07, "end": 2166.53, "word": " query", "probability": 0.76416015625}, {"start": 2166.53, "end": 2166.95, "word": " or", "probability": 0.251708984375}, {"start": 2166.95, "end": 2167.51, "word": " connection", "probability": 0.88818359375}, {"start": 2167.51, "end": 2167.71, "word": " to", "probability": 0.52197265625}, {"start": 2167.71, "end": 2168.71, "word": " the", "probability": 0.8740234375}, {"start": 2168.71, "end": 2169.11, "word": " database.", "probability": 0.943359375}, {"start": 2169.21, "end": 2169.61, "word": " But", "probability": 0.90576171875}, {"start": 2169.61, "end": 2169.85, "word": " what", "probability": 0.736328125}, {"start": 2169.85, "end": 2169.95, "word": " does", "probability": 0.215576171875}, {"start": 2169.95, "end": 2170.05, "word": " a", "probability": 0.4091796875}, {"start": 2170.05, "end": 2170.25, "word": " word", "probability": 0.04217529296875}, {"start": 2170.25, "end": 2170.45, "word": " like", "probability": 0.73388671875}, {"start": 2170.45, "end": 2170.59, "word": " the", "probability": 0.36474609375}, {"start": 2170.59, "end": 2170.77, "word": " name", "probability": 0.9013671875}, {"start": 2170.77, "end": 2171.05, "word": " add", "probability": 0.24755859375}, {"start": 2171.05, "end": 2171.55, "word": " controller", "probability": 0.501953125}, {"start": 2171.55, "end": 2171.55, "word": " do?", "probability": 0.2286376953125}, {"start": 2172.13, "end": 2172.31, "word": " And", "probability": 0.6533203125}, {"start": 2172.31, "end": 2172.39, "word": " the", "probability": 0.8017578125}, {"start": 2172.39, "end": 2172.83, "word": " controller", "probability": 0.7861328125}], "temperature": 1.0}, {"id": 90, "seek": 220098, "start": 2173.72, "end": 2200.98, "text": "It's the one that does listen to the action. If you click on the search button, it will say, add action listener, who is it? The controller. Okay? Click on the controller, it's a class by itself. Okay? Click on the command, it's action perform, and it goes, look at the controller, it takes two objects, who are they? The view and the model, because it connects them. Click on the request, click on the model, see? It says, who is the model? Get all students by first.", "tokens": [3522, 311, 264, 472, 300, 775, 2140, 281, 264, 3069, 13, 759, 291, 2052, 322, 264, 3164, 2960, 11, 309, 486, 584, 11, 909, 3069, 31569, 11, 567, 307, 309, 30, 440, 10561, 13, 1033, 30, 8230, 322, 264, 10561, 11, 309, 311, 257, 1508, 538, 2564, 13, 1033, 30, 8230, 322, 264, 5622, 11, 309, 311, 3069, 2042, 11, 293, 309, 1709, 11, 574, 412, 264, 10561, 11, 309, 2516, 732, 6565, 11, 567, 366, 436, 30, 440, 1910, 293, 264, 2316, 11, 570, 309, 16967, 552, 13, 8230, 322, 264, 5308, 11, 2052, 322, 264, 2316, 11, 536, 30, 467, 1619, 11, 567, 307, 264, 2316, 30, 3240, 439, 1731, 538, 700, 13], "avg_logprob": -0.5517241127532104, "compression_ratio": 1.8645418326693226, "no_speech_prob": 6.020069122314453e-06, "words": [{"start": 2173.72, "end": 2174.0, "word": "It's", "probability": 0.2591552734375}, {"start": 2174.0, "end": 2174.14, "word": " the", "probability": 0.35400390625}, {"start": 2174.14, "end": 2174.14, "word": " one", "probability": 0.52294921875}, {"start": 2174.14, "end": 2174.18, "word": " that", "probability": 0.55029296875}, {"start": 2174.18, "end": 2174.4, "word": " does", "probability": 0.54296875}, {"start": 2174.4, "end": 2174.7, "word": " listen", "probability": 0.2196044921875}, {"start": 2174.7, "end": 2174.86, "word": " to", "probability": 0.5244140625}, {"start": 2174.86, "end": 2174.9, "word": " the", "probability": 0.348388671875}, {"start": 2174.9, "end": 2175.24, "word": " action.", "probability": 0.94189453125}, {"start": 2175.68, "end": 2175.86, "word": " If", "probability": 0.1378173828125}, {"start": 2175.86, "end": 2176.0, "word": " you", "probability": 0.57177734375}, {"start": 2176.0, "end": 2176.16, "word": " click", "probability": 0.332763671875}, {"start": 2176.16, "end": 2176.3, "word": " on", "probability": 0.384033203125}, {"start": 2176.3, "end": 2176.62, "word": " the", "probability": 0.54248046875}, {"start": 2176.62, "end": 2176.9, "word": " search", "probability": 0.89697265625}, {"start": 2176.9, "end": 2177.24, "word": " button,", "probability": 0.75}, {"start": 2177.26, "end": 2177.36, "word": " it", "probability": 0.394775390625}, {"start": 2177.36, "end": 2177.36, "word": " will", "probability": 0.38330078125}, {"start": 2177.36, "end": 2177.52, "word": " say,", "probability": 0.257080078125}, {"start": 2177.68, "end": 2177.94, "word": " add", "probability": 0.22705078125}, {"start": 2177.94, "end": 2178.3, "word": " action", "probability": 0.86279296875}, {"start": 2178.3, "end": 2178.68, "word": " listener,", "probability": 0.7998046875}, {"start": 2178.84, "end": 2178.96, "word": " who", "probability": 0.315673828125}, {"start": 2178.96, "end": 2178.96, "word": " is", "probability": 0.732421875}, {"start": 2178.96, "end": 2179.14, "word": " it?", "probability": 0.6123046875}, {"start": 2180.0, "end": 2180.36, "word": " The", "probability": 0.55029296875}, {"start": 2180.36, "end": 2180.78, "word": " controller.", "probability": 0.73193359375}, {"start": 2181.96, "end": 2182.32, "word": " Okay?", "probability": 0.2060546875}, {"start": 2182.38, "end": 2182.66, "word": " Click", "probability": 0.2998046875}, {"start": 2182.66, "end": 2182.78, "word": " on", "probability": 0.77294921875}, {"start": 2182.78, "end": 2182.86, "word": " the", "probability": 0.8193359375}, {"start": 2182.86, "end": 2183.28, "word": " controller,", "probability": 0.77783203125}, {"start": 2183.36, "end": 2183.56, "word": " it's", "probability": 0.697021484375}, {"start": 2183.56, "end": 2183.9, "word": " a", "probability": 0.62646484375}, {"start": 2183.9, "end": 2184.24, "word": " class", "probability": 0.74560546875}, {"start": 2184.24, "end": 2184.38, "word": " by", "probability": 0.1759033203125}, {"start": 2184.38, "end": 2184.64, "word": " itself.", "probability": 0.64599609375}, {"start": 2185.6, "end": 2185.76, "word": " Okay?", "probability": 0.5517578125}, {"start": 2185.94, "end": 2186.24, "word": " Click", "probability": 0.304443359375}, {"start": 2186.24, "end": 2186.42, "word": " on", "probability": 0.78271484375}, {"start": 2186.42, "end": 2186.46, "word": " the", "probability": 0.6337890625}, {"start": 2186.46, "end": 2186.66, "word": " command,", "probability": 0.4482421875}, {"start": 2186.76, "end": 2186.84, "word": " it's", "probability": 0.4012451171875}, {"start": 2186.84, "end": 2187.22, "word": " action", "probability": 0.7275390625}, {"start": 2187.22, "end": 2187.78, "word": " perform,", "probability": 0.5283203125}, {"start": 2188.4, "end": 2188.5, "word": " and", "probability": 0.62890625}, {"start": 2188.5, "end": 2188.62, "word": " it", "probability": 0.28125}, {"start": 2188.62, "end": 2188.84, "word": " goes,", "probability": 0.52734375}, {"start": 2189.0, "end": 2189.42, "word": " look", "probability": 0.4072265625}, {"start": 2189.42, "end": 2189.78, "word": " at", "probability": 0.68310546875}, {"start": 2189.78, "end": 2189.86, "word": " the", "probability": 0.8818359375}, {"start": 2189.86, "end": 2190.28, "word": " controller,", "probability": 0.7890625}, {"start": 2190.34, "end": 2190.44, "word": " it", "probability": 0.88427734375}, {"start": 2190.44, "end": 2190.64, "word": " takes", "probability": 0.67724609375}, {"start": 2190.64, "end": 2191.04, "word": " two", "probability": 0.82861328125}, {"start": 2191.04, "end": 2191.6, "word": " objects,", "probability": 0.96484375}, {"start": 2191.68, "end": 2191.84, "word": " who", "probability": 0.5927734375}, {"start": 2191.84, "end": 2191.84, "word": " are", "probability": 0.87255859375}, {"start": 2191.84, "end": 2191.88, "word": " they?", "probability": 0.8818359375}, {"start": 2192.48, "end": 2192.66, "word": " The", "probability": 0.81787109375}, {"start": 2192.66, "end": 2192.9, "word": " view", "probability": 0.861328125}, {"start": 2192.9, "end": 2193.48, "word": " and", "probability": 0.80029296875}, {"start": 2193.48, "end": 2193.6, "word": " the", "probability": 0.8271484375}, {"start": 2193.6, "end": 2193.74, "word": " model,", "probability": 0.912109375}, {"start": 2193.78, "end": 2193.92, "word": " because", "probability": 0.83056640625}, {"start": 2193.92, "end": 2194.08, "word": " it", "probability": 0.69091796875}, {"start": 2194.08, "end": 2194.16, "word": " connects", "probability": 0.533203125}, {"start": 2194.16, "end": 2194.46, "word": " them.", "probability": 0.466064453125}, {"start": 2195.1, "end": 2195.46, "word": " Click", "probability": 0.85693359375}, {"start": 2195.46, "end": 2195.56, "word": " on", "probability": 0.90478515625}, {"start": 2195.56, "end": 2195.62, "word": " the", "probability": 0.802734375}, {"start": 2195.62, "end": 2196.08, "word": " request,", "probability": 0.94140625}, {"start": 2196.48, "end": 2196.72, "word": " click", "probability": 0.235595703125}, {"start": 2196.72, "end": 2196.94, "word": " on", "probability": 0.888671875}, {"start": 2196.94, "end": 2197.02, "word": " the", "probability": 0.88671875}, {"start": 2197.02, "end": 2197.24, "word": " model,", "probability": 0.95361328125}, {"start": 2197.34, "end": 2197.48, "word": " see?", "probability": 0.354248046875}, {"start": 2197.58, "end": 2197.66, "word": " It", "probability": 0.39306640625}, {"start": 2197.66, "end": 2197.78, "word": " says,", "probability": 0.4072265625}, {"start": 2197.86, "end": 2197.9, "word": " who", "probability": 0.316162109375}, {"start": 2197.9, "end": 2197.9, "word": " is", "probability": 0.6552734375}, {"start": 2197.9, "end": 2197.92, "word": " the", "probability": 0.841796875}, {"start": 2197.92, "end": 2198.06, "word": " model?", "probability": 0.9619140625}, {"start": 2198.52, "end": 2198.88, "word": " Get", "probability": 0.83154296875}, {"start": 2198.88, "end": 2199.18, "word": " all", "probability": 0.939453125}, {"start": 2199.18, "end": 2200.16, "word": " students", "probability": 0.88818359375}, {"start": 2200.16, "end": 2200.42, "word": " by", "probability": 0.91552734375}, {"start": 2200.42, "end": 2200.98, "word": " first.", "probability": 0.8046875}], "temperature": 1.0}, {"id": 91, "seek": 222809, "start": 2201.75, "end": 2228.09, "text": " I sleep, and I don't know anything about the controller or anything about the database and its details. Until tomorrow, I change the model, I put a mock, and I tell him, just what is here? Object, a new class of the model type, but I put fake data in it. And I return the data, and then I send it to the view, and I tell it to update search list. So it's simple, but I don't know anything about the view or the model. I just ask the model, and I send the view.", "tokens": [286, 2817, 11, 293, 286, 500, 380, 458, 1340, 466, 264, 10561, 420, 1340, 466, 264, 8149, 293, 1080, 4365, 13, 9088, 4153, 11, 286, 1319, 264, 2316, 11, 286, 829, 257, 17362, 11, 293, 286, 980, 796, 11, 445, 437, 307, 510, 30, 24753, 11, 257, 777, 1508, 295, 264, 2316, 2010, 11, 457, 286, 829, 7592, 1412, 294, 309, 13, 400, 286, 2736, 264, 1412, 11, 293, 550, 286, 2845, 309, 281, 264, 1910, 11, 293, 286, 980, 309, 281, 5623, 3164, 1329, 13, 407, 309, 311, 2199, 11, 457, 286, 500, 380, 458, 1340, 466, 264, 1910, 420, 264, 2316, 13, 286, 445, 1029, 264, 2316, 11, 293, 286, 2845, 264, 1910, 13], "avg_logprob": -0.5272435632526365, "compression_ratio": 1.8816326530612244, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 2201.75, "end": 2202.11, "word": " I", "probability": 0.13525390625}, {"start": 2202.11, "end": 2202.15, "word": " sleep,", "probability": 0.227783203125}, {"start": 2202.51, "end": 2202.89, "word": " and", "probability": 0.319580078125}, {"start": 2202.89, "end": 2202.95, "word": " I", "probability": 0.63037109375}, {"start": 2202.95, "end": 2202.95, "word": " don't", "probability": 0.8232421875}, {"start": 2202.95, "end": 2203.19, "word": " know", "probability": 0.6484375}, {"start": 2203.19, "end": 2203.57, "word": " anything", "probability": 0.5390625}, {"start": 2203.57, "end": 2203.57, "word": " about", "probability": 0.84814453125}, {"start": 2203.57, "end": 2203.63, "word": " the", "probability": 0.64208984375}, {"start": 2203.63, "end": 2203.97, "word": " controller", "probability": 0.4931640625}, {"start": 2203.97, "end": 2204.15, "word": " or", "probability": 0.273681640625}, {"start": 2204.15, "end": 2204.39, "word": " anything", "probability": 0.337646484375}, {"start": 2204.39, "end": 2204.77, "word": " about", "probability": 0.8017578125}, {"start": 2204.77, "end": 2205.69, "word": " the", "probability": 0.5546875}, {"start": 2205.69, "end": 2205.99, "word": " database", "probability": 0.92822265625}, {"start": 2205.99, "end": 2206.09, "word": " and", "probability": 0.5439453125}, {"start": 2206.09, "end": 2206.19, "word": " its", "probability": 0.4091796875}, {"start": 2206.19, "end": 2206.51, "word": " details.", "probability": 0.77197265625}, {"start": 2207.49, "end": 2207.85, "word": " Until", "probability": 0.336669921875}, {"start": 2207.85, "end": 2208.23, "word": " tomorrow,", "probability": 0.76220703125}, {"start": 2208.69, "end": 2208.83, "word": " I", "probability": 0.7373046875}, {"start": 2208.83, "end": 2209.21, "word": " change", "probability": 0.4111328125}, {"start": 2209.21, "end": 2209.37, "word": " the", "probability": 0.84033203125}, {"start": 2209.37, "end": 2209.53, "word": " model,", "probability": 0.91943359375}, {"start": 2209.67, "end": 2209.75, "word": " I", "probability": 0.5791015625}, {"start": 2209.75, "end": 2209.91, "word": " put", "probability": 0.50830078125}, {"start": 2209.91, "end": 2210.01, "word": " a", "probability": 0.2235107421875}, {"start": 2210.01, "end": 2210.21, "word": " mock,", "probability": 0.474853515625}, {"start": 2210.37, "end": 2210.71, "word": " and", "probability": 0.4755859375}, {"start": 2210.71, "end": 2210.71, "word": " I", "probability": 0.67236328125}, {"start": 2210.71, "end": 2210.93, "word": " tell", "probability": 0.19677734375}, {"start": 2210.93, "end": 2211.15, "word": " him,", "probability": 0.529296875}, {"start": 2211.17, "end": 2211.31, "word": " just", "probability": 0.1126708984375}, {"start": 2211.31, "end": 2211.53, "word": " what", "probability": 0.325439453125}, {"start": 2211.53, "end": 2211.55, "word": " is", "probability": 0.560546875}, {"start": 2211.55, "end": 2211.79, "word": " here?", "probability": 0.459716796875}, {"start": 2214.01, "end": 2214.37, "word": " Object,", "probability": 0.25390625}, {"start": 2214.67, "end": 2214.71, "word": " a", "probability": 0.73974609375}, {"start": 2214.71, "end": 2214.71, "word": " new", "probability": 0.8837890625}, {"start": 2214.71, "end": 2215.03, "word": " class", "probability": 0.63671875}, {"start": 2215.03, "end": 2215.35, "word": " of", "probability": 0.59765625}, {"start": 2215.35, "end": 2215.43, "word": " the", "probability": 0.470703125}, {"start": 2215.43, "end": 2215.77, "word": " model", "probability": 0.61474609375}, {"start": 2215.77, "end": 2215.77, "word": " type,", "probability": 0.65234375}, {"start": 2215.89, "end": 2215.99, "word": " but", "probability": 0.822265625}, {"start": 2215.99, "end": 2216.11, "word": " I", "probability": 0.83642578125}, {"start": 2216.11, "end": 2216.25, "word": " put", "probability": 0.82958984375}, {"start": 2216.25, "end": 2216.77, "word": " fake", "probability": 0.67822265625}, {"start": 2216.77, "end": 2217.87, "word": " data", "probability": 0.7705078125}, {"start": 2217.87, "end": 2217.87, "word": " in", "probability": 0.73388671875}, {"start": 2217.87, "end": 2217.87, "word": " it.", "probability": 0.94140625}, {"start": 2218.01, "end": 2218.27, "word": " And", "probability": 0.56298828125}, {"start": 2218.27, "end": 2218.39, "word": " I", "probability": 0.74951171875}, {"start": 2218.39, "end": 2218.57, "word": " return", "probability": 0.302001953125}, {"start": 2218.57, "end": 2218.77, "word": " the", "probability": 0.46240234375}, {"start": 2218.77, "end": 2218.85, "word": " data,", "probability": 0.5810546875}, {"start": 2218.99, "end": 2219.05, "word": " and", "probability": 0.703125}, {"start": 2219.05, "end": 2219.41, "word": " then", "probability": 0.6884765625}, {"start": 2219.41, "end": 2219.55, "word": " I", "probability": 0.7236328125}, {"start": 2219.55, "end": 2219.73, "word": " send", "probability": 0.14453125}, {"start": 2219.73, "end": 2219.83, "word": " it", "probability": 0.8212890625}, {"start": 2219.83, "end": 2219.91, "word": " to", "probability": 0.9443359375}, {"start": 2219.91, "end": 2219.97, "word": " the", "probability": 0.446044921875}, {"start": 2219.97, "end": 2220.09, "word": " view,", "probability": 0.72265625}, {"start": 2220.11, "end": 2220.23, "word": " and", "probability": 0.8095703125}, {"start": 2220.23, "end": 2220.25, "word": " I", "probability": 0.75634765625}, {"start": 2220.25, "end": 2220.33, "word": " tell", "probability": 0.599609375}, {"start": 2220.33, "end": 2220.43, "word": " it", "probability": 0.4638671875}, {"start": 2220.43, "end": 2220.45, "word": " to", "probability": 0.491455078125}, {"start": 2220.45, "end": 2220.67, "word": " update", "probability": 0.92236328125}, {"start": 2220.67, "end": 2221.03, "word": " search", "probability": 0.6044921875}, {"start": 2221.03, "end": 2221.43, "word": " list.", "probability": 0.85595703125}, {"start": 2221.53, "end": 2221.61, "word": " So", "probability": 0.66650390625}, {"start": 2221.61, "end": 2221.79, "word": " it's", "probability": 0.557861328125}, {"start": 2221.79, "end": 2222.09, "word": " simple,", "probability": 0.3232421875}, {"start": 2222.23, "end": 2222.39, "word": " but", "probability": 0.64013671875}, {"start": 2222.39, "end": 2223.19, "word": " I", "probability": 0.497802734375}, {"start": 2223.19, "end": 2223.25, "word": " don't", "probability": 0.896240234375}, {"start": 2223.25, "end": 2223.41, "word": " know", "probability": 0.896484375}, {"start": 2223.41, "end": 2223.65, "word": " anything", "probability": 0.8642578125}, {"start": 2223.65, "end": 2223.89, "word": " about", "probability": 0.89990234375}, {"start": 2223.89, "end": 2224.01, "word": " the", "probability": 0.90576171875}, {"start": 2224.01, "end": 2224.27, "word": " view", "probability": 0.88525390625}, {"start": 2224.27, "end": 2224.53, "word": " or", "probability": 0.75244140625}, {"start": 2224.53, "end": 2224.81, "word": " the", "probability": 0.57861328125}, {"start": 2224.81, "end": 2225.01, "word": " model.", "probability": 0.94775390625}, {"start": 2225.49, "end": 2225.85, "word": " I", "probability": 0.428955078125}, {"start": 2225.85, "end": 2226.01, "word": " just", "probability": 0.71142578125}, {"start": 2226.01, "end": 2226.29, "word": " ask", "probability": 0.56005859375}, {"start": 2226.29, "end": 2226.49, "word": " the", "probability": 0.6796875}, {"start": 2226.49, "end": 2226.75, "word": " model,", "probability": 0.95361328125}, {"start": 2227.29, "end": 2227.47, "word": " and", "probability": 0.91650390625}, {"start": 2227.47, "end": 2227.55, "word": " I", "probability": 0.48779296875}, {"start": 2227.55, "end": 2227.73, "word": " send", "probability": 0.4912109375}, {"start": 2227.73, "end": 2227.91, "word": " the", "probability": 0.62109375}, {"start": 2227.91, "end": 2228.09, "word": " view.", "probability": 0.90478515625}], "temperature": 1.0}, {"id": 92, "seek": 225629, "start": 2228.85, "end": 2256.29, "text": "Who is this? This is the controller. And in the web, every URL has its own controller. Now, the benefits of model-view-controller. What are the benefits of model-view-controller? The first and most important benefit is the separation of responsibilities. Now, modern systems have become huge and I can't run one program on them.", "tokens": [10927, 307, 341, 30, 639, 307, 264, 10561, 13, 400, 294, 264, 3670, 11, 633, 12905, 575, 1080, 1065, 10561, 13, 823, 11, 264, 5311, 295, 2316, 12, 1759, 12, 9000, 22922, 13, 708, 366, 264, 5311, 295, 2316, 12, 1759, 12, 9000, 22922, 30, 440, 700, 293, 881, 1021, 5121, 307, 264, 14634, 295, 16190, 13, 823, 11, 4363, 3652, 362, 1813, 2603, 293, 286, 393, 380, 1190, 472, 1461, 322, 552, 13], "avg_logprob": -0.36895832935969036, "compression_ratio": 1.6994818652849741, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 2228.85, "end": 2229.07, "word": "Who", "probability": 0.146484375}, {"start": 2229.07, "end": 2229.07, "word": " is", "probability": 0.65185546875}, {"start": 2229.07, "end": 2229.17, "word": " this?", "probability": 0.7958984375}, {"start": 2229.75, "end": 2230.15, "word": " This", "probability": 0.6806640625}, {"start": 2230.15, "end": 2230.15, "word": " is", "probability": 0.91796875}, {"start": 2230.15, "end": 2230.29, "word": " the", "probability": 0.841796875}, {"start": 2230.29, "end": 2230.61, "word": " controller.", "probability": 0.74951171875}, {"start": 2230.73, "end": 2230.81, "word": " And", "probability": 0.434814453125}, {"start": 2230.81, "end": 2230.89, "word": " in", "probability": 0.4853515625}, {"start": 2230.89, "end": 2230.99, "word": " the", "probability": 0.7060546875}, {"start": 2230.99, "end": 2231.15, "word": " web,", "probability": 0.81982421875}, {"start": 2231.29, "end": 2231.49, "word": " every", "probability": 0.53955078125}, {"start": 2231.49, "end": 2232.33, "word": " URL", "probability": 0.79052734375}, {"start": 2232.33, "end": 2232.67, "word": " has", "probability": 0.74853515625}, {"start": 2232.67, "end": 2232.75, "word": " its", "probability": 0.5859375}, {"start": 2232.75, "end": 2232.75, "word": " own", "probability": 0.8486328125}, {"start": 2232.75, "end": 2233.93, "word": " controller.", "probability": 0.85546875}, {"start": 2236.41, "end": 2236.97, "word": " Now,", "probability": 0.7001953125}, {"start": 2236.99, "end": 2237.13, "word": " the", "probability": 0.7509765625}, {"start": 2237.13, "end": 2237.67, "word": " benefits", "probability": 0.80029296875}, {"start": 2237.67, "end": 2239.67, "word": " of", "probability": 0.88427734375}, {"start": 2239.67, "end": 2239.97, "word": " model", "probability": 0.556640625}, {"start": 2239.97, "end": 2240.19, "word": "-view", "probability": 0.75048828125}, {"start": 2240.19, "end": 2240.75, "word": "-controller.", "probability": 0.6875406901041666}, {"start": 2241.27, "end": 2241.75, "word": " What", "probability": 0.59716796875}, {"start": 2241.75, "end": 2241.81, "word": " are", "probability": 0.900390625}, {"start": 2241.81, "end": 2241.87, "word": " the", "probability": 0.88720703125}, {"start": 2241.87, "end": 2242.15, "word": " benefits", "probability": 0.8056640625}, {"start": 2242.15, "end": 2242.29, "word": " of", "probability": 0.953125}, {"start": 2242.29, "end": 2242.49, "word": " model", "probability": 0.8115234375}, {"start": 2242.49, "end": 2242.79, "word": "-view", "probability": 0.918701171875}, {"start": 2242.79, "end": 2243.85, "word": "-controller?", "probability": 0.94384765625}, {"start": 2243.95, "end": 2244.21, "word": " The", "probability": 0.39208984375}, {"start": 2244.21, "end": 2244.21, "word": " first", "probability": 0.77978515625}, {"start": 2244.21, "end": 2244.63, "word": " and", "probability": 0.381591796875}, {"start": 2244.63, "end": 2244.93, "word": " most", "probability": 0.74609375}, {"start": 2244.93, "end": 2245.13, "word": " important", "probability": 0.82080078125}, {"start": 2245.13, "end": 2245.39, "word": " benefit", "probability": 0.6962890625}, {"start": 2245.39, "end": 2245.51, "word": " is", "probability": 0.68896484375}, {"start": 2245.51, "end": 2245.55, "word": " the", "probability": 0.4931640625}, {"start": 2245.55, "end": 2246.07, "word": " separation", "probability": 0.85791015625}, {"start": 2246.07, "end": 2248.55, "word": " of", "probability": 0.978515625}, {"start": 2248.55, "end": 2249.01, "word": " responsibilities.", "probability": 0.87109375}, {"start": 2249.91, "end": 2250.39, "word": " Now,", "probability": 0.290771484375}, {"start": 2250.73, "end": 2250.79, "word": " modern", "probability": 0.63720703125}, {"start": 2250.79, "end": 2251.49, "word": " systems", "probability": 0.90087890625}, {"start": 2251.49, "end": 2252.39, "word": " have", "probability": 0.70263671875}, {"start": 2252.39, "end": 2252.45, "word": " become", "probability": 0.7470703125}, {"start": 2252.45, "end": 2252.77, "word": " huge", "probability": 0.400634765625}, {"start": 2252.77, "end": 2253.77, "word": " and", "probability": 0.362060546875}, {"start": 2253.77, "end": 2253.85, "word": " I", "probability": 0.76171875}, {"start": 2253.85, "end": 2254.09, "word": " can't", "probability": 0.603759765625}, {"start": 2254.09, "end": 2254.49, "word": " run", "probability": 0.80419921875}, {"start": 2254.49, "end": 2255.33, "word": " one", "probability": 0.5830078125}, {"start": 2255.33, "end": 2255.61, "word": " program", "probability": 0.40869140625}, {"start": 2255.61, "end": 2256.13, "word": " on", "probability": 0.84423828125}, {"start": 2256.13, "end": 2256.29, "word": " them.", "probability": 0.59521484375}], "temperature": 1.0}, {"id": 93, "seek": 228264, "start": 2257.7, "end": 2282.64, "text": " Respected companies bring a front-end developer to design and focus on the faces And brings a back-end developer to focus on the background and what happens in the background Sometimes they use something called a full-stack developer It needs a superman to work on everything And of course there is this concept of a full-stack developer But it's hard to find someone", "tokens": [5015, 10729, 3431, 1565, 257, 1868, 12, 521, 10754, 281, 1715, 293, 1879, 322, 264, 8475, 400, 5607, 257, 646, 12, 521, 10754, 281, 1879, 322, 264, 3678, 293, 437, 2314, 294, 264, 3678, 4803, 436, 764, 746, 1219, 257, 1577, 12, 372, 501, 10754, 467, 2203, 257, 1687, 1601, 281, 589, 322, 1203, 400, 295, 1164, 456, 307, 341, 3410, 295, 257, 1577, 12, 372, 501, 10754, 583, 309, 311, 1152, 281, 915, 1580], "avg_logprob": -0.48273027335342605, "compression_ratio": 1.7777777777777777, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 2257.7, "end": 2258.22, "word": " Respected", "probability": 0.51934814453125}, {"start": 2258.22, "end": 2258.22, "word": " companies", "probability": 0.77587890625}, {"start": 2258.22, "end": 2258.52, "word": " bring", "probability": 0.424072265625}, {"start": 2258.52, "end": 2258.64, "word": " a", "probability": 0.2421875}, {"start": 2258.64, "end": 2258.92, "word": " front", "probability": 0.83837890625}, {"start": 2258.92, "end": 2259.14, "word": "-end", "probability": 0.846923828125}, {"start": 2259.14, "end": 2259.64, "word": " developer", "probability": 0.89501953125}, {"start": 2259.64, "end": 2260.5, "word": " to", "probability": 0.49755859375}, {"start": 2260.5, "end": 2260.78, "word": " design", "probability": 0.7373046875}, {"start": 2260.78, "end": 2261.0, "word": " and", "probability": 0.71826171875}, {"start": 2261.0, "end": 2261.24, "word": " focus", "probability": 0.7646484375}, {"start": 2261.24, "end": 2261.4, "word": " on", "probability": 0.93115234375}, {"start": 2261.4, "end": 2261.46, "word": " the", "probability": 0.486572265625}, {"start": 2261.46, "end": 2261.7, "word": " faces", "probability": 0.1400146484375}, {"start": 2261.7, "end": 2262.64, "word": " And", "probability": 0.271240234375}, {"start": 2262.64, "end": 2262.9, "word": " brings", "probability": 0.339599609375}, {"start": 2262.9, "end": 2263.04, "word": " a", "probability": 0.86181640625}, {"start": 2263.04, "end": 2263.22, "word": " back", "probability": 0.7255859375}, {"start": 2263.22, "end": 2263.44, "word": "-end", "probability": 0.934814453125}, {"start": 2263.44, "end": 2264.22, "word": " developer", "probability": 0.92578125}, {"start": 2264.22, "end": 2264.76, "word": " to", "probability": 0.88916015625}, {"start": 2264.76, "end": 2265.02, "word": " focus", "probability": 0.8134765625}, {"start": 2265.02, "end": 2265.18, "word": " on", "probability": 0.939453125}, {"start": 2265.18, "end": 2265.26, "word": " the", "probability": 0.77978515625}, {"start": 2265.26, "end": 2265.72, "word": " background", "probability": 0.89306640625}, {"start": 2265.72, "end": 2265.84, "word": " and", "probability": 0.296142578125}, {"start": 2265.84, "end": 2265.92, "word": " what", "probability": 0.74365234375}, {"start": 2265.92, "end": 2266.22, "word": " happens", "probability": 0.389404296875}, {"start": 2266.22, "end": 2266.4, "word": " in", "probability": 0.411376953125}, {"start": 2266.4, "end": 2267.26, "word": " the", "probability": 0.6171875}, {"start": 2267.26, "end": 2267.62, "word": " background", "probability": 0.90966796875}, {"start": 2267.62, "end": 2268.66, "word": " Sometimes", "probability": 0.65478515625}, {"start": 2268.66, "end": 2268.86, "word": " they", "probability": 0.6083984375}, {"start": 2268.86, "end": 2269.12, "word": " use", "probability": 0.1575927734375}, {"start": 2269.12, "end": 2269.42, "word": " something", "probability": 0.460693359375}, {"start": 2269.42, "end": 2269.68, "word": " called", "probability": 0.87744140625}, {"start": 2269.68, "end": 2269.8, "word": " a", "probability": 0.52294921875}, {"start": 2269.8, "end": 2270.02, "word": " full", "probability": 0.7353515625}, {"start": 2270.02, "end": 2270.3, "word": "-stack", "probability": 0.80419921875}, {"start": 2270.3, "end": 2270.76, "word": " developer", "probability": 0.9208984375}, {"start": 2270.76, "end": 2272.22, "word": " It", "probability": 0.2078857421875}, {"start": 2272.22, "end": 2272.4, "word": " needs", "probability": 0.3505859375}, {"start": 2272.4, "end": 2272.66, "word": " a", "probability": 0.76904296875}, {"start": 2272.66, "end": 2273.14, "word": " superman", "probability": 0.852294921875}, {"start": 2273.14, "end": 2273.22, "word": " to", "probability": 0.6865234375}, {"start": 2273.22, "end": 2273.4, "word": " work", "probability": 0.51904296875}, {"start": 2273.4, "end": 2274.28, "word": " on", "probability": 0.69873046875}, {"start": 2274.28, "end": 2274.52, "word": " everything", "probability": 0.77197265625}, {"start": 2274.52, "end": 2275.56, "word": " And", "probability": 0.31640625}, {"start": 2275.56, "end": 2275.72, "word": " of", "probability": 0.83349609375}, {"start": 2275.72, "end": 2275.94, "word": " course", "probability": 0.95458984375}, {"start": 2275.94, "end": 2276.84, "word": " there", "probability": 0.463623046875}, {"start": 2276.84, "end": 2276.92, "word": " is", "probability": 0.7490234375}, {"start": 2276.92, "end": 2277.12, "word": " this", "probability": 0.279541015625}, {"start": 2277.12, "end": 2277.5, "word": " concept", "probability": 0.7294921875}, {"start": 2277.5, "end": 2277.66, "word": " of", "probability": 0.89208984375}, {"start": 2277.66, "end": 2277.74, "word": " a", "probability": 0.36279296875}, {"start": 2277.74, "end": 2277.88, "word": " full", "probability": 0.8623046875}, {"start": 2277.88, "end": 2278.14, "word": "-stack", "probability": 0.9443359375}, {"start": 2278.14, "end": 2278.6, "word": " developer", "probability": 0.91552734375}, {"start": 2278.6, "end": 2280.86, "word": " But", "probability": 0.318359375}, {"start": 2280.86, "end": 2281.86, "word": " it's", "probability": 0.6617431640625}, {"start": 2281.86, "end": 2282.02, "word": " hard", "probability": 0.69921875}, {"start": 2282.02, "end": 2282.1, "word": " to", "probability": 0.962890625}, {"start": 2282.1, "end": 2282.3, "word": " find", "probability": 0.86279296875}, {"start": 2282.3, "end": 2282.64, "word": " someone", "probability": 0.71533203125}], "temperature": 1.0}, {"id": 94, "seek": 231389, "start": 2284.27, "end": 2313.89, "text": " It has to be 100% professional in both cases. The programmer who is very good in the back-end always has fun in the front-end. Of course, he doesn't work in Photoshop, for example. That's it. The detail is better. Who uses this? Companies with limited budgets or who need three people per person, right? You need a full-stack developer to save money instead of getting programmers like this and that. Just like the one who gets Flutter.", "tokens": [467, 575, 281, 312, 2319, 4, 4843, 294, 1293, 3331, 13, 440, 32116, 567, 307, 588, 665, 294, 264, 646, 12, 521, 1009, 575, 1019, 294, 264, 1868, 12, 521, 13, 2720, 1164, 11, 415, 1177, 380, 589, 294, 20821, 11, 337, 1365, 13, 663, 311, 309, 13, 440, 2607, 307, 1101, 13, 2102, 4960, 341, 30, 44031, 365, 5567, 26708, 420, 567, 643, 1045, 561, 680, 954, 11, 558, 30, 509, 643, 257, 1577, 12, 372, 501, 10754, 281, 3155, 1460, 2602, 295, 1242, 41504, 411, 341, 293, 300, 13, 1449, 411, 264, 472, 567, 2170, 3235, 9947, 13], "avg_logprob": -0.733910869843889, "compression_ratio": 1.549645390070922, "no_speech_prob": 0.89013671875, "words": [{"start": 2284.27, "end": 2284.53, "word": " It", "probability": 0.06884765625}, {"start": 2284.53, "end": 2284.89, "word": " has", "probability": 0.1817626953125}, {"start": 2284.89, "end": 2284.89, "word": " to", "probability": 0.96240234375}, {"start": 2284.89, "end": 2284.93, "word": " be", "probability": 0.91259765625}, {"start": 2284.93, "end": 2285.87, "word": " 100", "probability": 0.463623046875}, {"start": 2285.87, "end": 2286.29, "word": "%", "probability": 0.97705078125}, {"start": 2286.29, "end": 2286.53, "word": " professional", "probability": 0.93359375}, {"start": 2286.53, "end": 2286.53, "word": " in", "probability": 0.18310546875}, {"start": 2286.53, "end": 2286.67, "word": " both", "probability": 0.818359375}, {"start": 2286.67, "end": 2286.71, "word": " cases.", "probability": 0.146728515625}, {"start": 2287.11, "end": 2287.67, "word": " The", "probability": 0.162353515625}, {"start": 2287.67, "end": 2288.01, "word": " programmer", "probability": 0.1318359375}, {"start": 2288.01, "end": 2288.23, "word": " who", "probability": 0.1724853515625}, {"start": 2288.23, "end": 2288.23, "word": " is", "probability": 0.488037109375}, {"start": 2288.23, "end": 2288.63, "word": " very", "probability": 0.297119140625}, {"start": 2288.63, "end": 2288.63, "word": " good", "probability": 0.484375}, {"start": 2288.63, "end": 2288.79, "word": " in", "probability": 0.50927734375}, {"start": 2288.79, "end": 2288.89, "word": " the", "probability": 0.74951171875}, {"start": 2288.89, "end": 2289.03, "word": " back", "probability": 0.306640625}, {"start": 2289.03, "end": 2289.29, "word": "-end", "probability": 0.726318359375}, {"start": 2289.29, "end": 2289.83, "word": " always", "probability": 0.08380126953125}, {"start": 2289.83, "end": 2290.25, "word": " has", "probability": 0.3544921875}, {"start": 2290.25, "end": 2290.25, "word": " fun", "probability": 0.73486328125}, {"start": 2290.25, "end": 2290.63, "word": " in", "probability": 0.623046875}, {"start": 2290.63, "end": 2290.73, "word": " the", "probability": 0.8623046875}, {"start": 2290.73, "end": 2291.05, "word": " front", "probability": 0.93701171875}, {"start": 2291.05, "end": 2292.25, "word": "-end.", "probability": 0.671142578125}, {"start": 2293.07, "end": 2293.63, "word": " Of", "probability": 0.322509765625}, {"start": 2293.63, "end": 2294.23, "word": " course,", "probability": 0.96337890625}, {"start": 2294.31, "end": 2294.31, "word": " he", "probability": 0.55615234375}, {"start": 2294.31, "end": 2294.35, "word": " doesn't", "probability": 0.70166015625}, {"start": 2294.35, "end": 2294.53, "word": " work", "probability": 0.5986328125}, {"start": 2294.53, "end": 2294.67, "word": " in", "probability": 0.5}, {"start": 2294.67, "end": 2294.99, "word": " Photoshop,", "probability": 0.57470703125}, {"start": 2295.15, "end": 2295.19, "word": " for", "probability": 0.5625}, {"start": 2295.19, "end": 2295.35, "word": " example.", "probability": 0.88427734375}, {"start": 2296.25, "end": 2296.25, "word": " That's", "probability": 0.51519775390625}, {"start": 2296.25, "end": 2298.01, "word": " it.", "probability": 0.74267578125}, {"start": 2298.39, "end": 2298.95, "word": " The", "probability": 0.6015625}, {"start": 2298.95, "end": 2299.25, "word": " detail", "probability": 0.046234130859375}, {"start": 2299.25, "end": 2299.43, "word": " is", "probability": 0.48095703125}, {"start": 2299.43, "end": 2299.89, "word": " better.", "probability": 0.70458984375}, {"start": 2300.33, "end": 2300.81, "word": " Who", "probability": 0.479248046875}, {"start": 2300.81, "end": 2301.23, "word": " uses", "probability": 0.66943359375}, {"start": 2301.23, "end": 2301.27, "word": " this?", "probability": 0.615234375}, {"start": 2301.47, "end": 2301.95, "word": " Companies", "probability": 0.2020263671875}, {"start": 2301.95, "end": 2303.03, "word": " with", "probability": 0.65771484375}, {"start": 2303.03, "end": 2303.35, "word": " limited", "probability": 0.8388671875}, {"start": 2303.35, "end": 2303.35, "word": " budgets", "probability": 0.62646484375}, {"start": 2303.35, "end": 2303.59, "word": " or", "probability": 0.310546875}, {"start": 2303.59, "end": 2303.63, "word": " who", "probability": 0.173583984375}, {"start": 2303.63, "end": 2304.39, "word": " need", "probability": 0.50048828125}, {"start": 2304.39, "end": 2305.19, "word": " three", "probability": 0.235595703125}, {"start": 2305.19, "end": 2305.41, "word": " people", "probability": 0.492431640625}, {"start": 2305.41, "end": 2305.49, "word": " per", "probability": 0.347900390625}, {"start": 2305.49, "end": 2305.87, "word": " person,", "probability": 0.728515625}, {"start": 2306.27, "end": 2306.41, "word": " right?", "probability": 0.41455078125}, {"start": 2307.19, "end": 2307.75, "word": " You", "probability": 0.34326171875}, {"start": 2307.75, "end": 2307.93, "word": " need", "probability": 0.365966796875}, {"start": 2307.93, "end": 2308.65, "word": " a", "probability": 0.69287109375}, {"start": 2308.65, "end": 2308.81, "word": " full", "probability": 0.8017578125}, {"start": 2308.81, "end": 2309.25, "word": "-stack", "probability": 0.7933756510416666}, {"start": 2309.25, "end": 2310.05, "word": " developer", "probability": 0.9140625}, {"start": 2310.05, "end": 2310.61, "word": " to", "probability": 0.6572265625}, {"start": 2310.61, "end": 2310.93, "word": " save", "probability": 0.1263427734375}, {"start": 2310.93, "end": 2311.09, "word": " money", "probability": 0.451171875}, {"start": 2311.09, "end": 2311.25, "word": " instead", "probability": 0.402587890625}, {"start": 2311.25, "end": 2311.33, "word": " of", "probability": 0.970703125}, {"start": 2311.33, "end": 2311.51, "word": " getting", "probability": 0.353759765625}, {"start": 2311.51, "end": 2311.85, "word": " programmers", "probability": 0.5830078125}, {"start": 2311.85, "end": 2312.03, "word": " like", "probability": 0.433837890625}, {"start": 2312.03, "end": 2312.11, "word": " this", "probability": 0.67333984375}, {"start": 2312.11, "end": 2312.21, "word": " and", "probability": 0.5068359375}, {"start": 2312.21, "end": 2312.41, "word": " that.", "probability": 0.67578125}, {"start": 2312.69, "end": 2312.89, "word": " Just", "probability": 0.370361328125}, {"start": 2312.89, "end": 2312.89, "word": " like", "probability": 0.9140625}, {"start": 2312.89, "end": 2313.37, "word": " the", "probability": 0.24072265625}, {"start": 2313.37, "end": 2313.37, "word": " one", "probability": 0.51220703125}, {"start": 2313.37, "end": 2313.37, "word": " who", "probability": 0.80712890625}, {"start": 2313.37, "end": 2313.47, "word": " gets", "probability": 0.26904296875}, {"start": 2313.47, "end": 2313.89, "word": " Flutter.", "probability": 0.82275390625}], "temperature": 1.0}, {"id": 95, "seek": 234069, "start": 2314.67, "end": 2340.69, "text": " Flutter does not benefit from large applications. All respected companies bring native Android devices. Android and IOS. But if they need something, they bring a Flutter device and they work together and save money. But the application is not scalable. Separations of Consensus allows you to bring a front-end device and say, I only work and practice in the field of Vue.", "tokens": [3235, 9947, 775, 406, 5121, 490, 2416, 5821, 13, 1057, 20020, 3431, 1565, 8470, 8853, 5759, 13, 8853, 293, 286, 4367, 13, 583, 498, 436, 643, 746, 11, 436, 1565, 257, 3235, 9947, 4302, 293, 436, 589, 1214, 293, 3155, 1460, 13, 583, 264, 3861, 307, 406, 38481, 13, 43480, 763, 295, 6923, 10983, 4045, 291, 281, 1565, 257, 1868, 12, 521, 4302, 293, 584, 11, 286, 787, 589, 293, 3124, 294, 264, 2519, 295, 691, 622, 13], "avg_logprob": -0.6847310352929031, "compression_ratio": 1.6387665198237886, "no_speech_prob": 1.9073486328125e-06, "words": [{"start": 2314.67, "end": 2315.15, "word": " Flutter", "probability": 0.76318359375}, {"start": 2315.15, "end": 2315.37, "word": " does", "probability": 0.424560546875}, {"start": 2315.37, "end": 2315.37, "word": " not", "probability": 0.94189453125}, {"start": 2315.37, "end": 2315.75, "word": " benefit", "probability": 0.271728515625}, {"start": 2315.75, "end": 2317.19, "word": " from", "probability": 0.525390625}, {"start": 2317.19, "end": 2317.95, "word": " large", "probability": 0.291259765625}, {"start": 2317.95, "end": 2319.07, "word": " applications.", "probability": 0.495849609375}, {"start": 2320.11, "end": 2320.19, "word": " All", "probability": 0.38623046875}, {"start": 2320.19, "end": 2320.99, "word": " respected", "probability": 0.357177734375}, {"start": 2320.99, "end": 2321.21, "word": " companies", "probability": 0.814453125}, {"start": 2321.21, "end": 2321.67, "word": " bring", "probability": 0.251953125}, {"start": 2321.67, "end": 2322.19, "word": " native", "probability": 0.2320556640625}, {"start": 2322.19, "end": 2322.19, "word": " Android", "probability": 0.810546875}, {"start": 2322.19, "end": 2323.15, "word": " devices.", "probability": 0.336181640625}, {"start": 2323.71, "end": 2324.19, "word": " Android", "probability": 0.77294921875}, {"start": 2324.19, "end": 2324.33, "word": " and", "probability": 0.78125}, {"start": 2324.33, "end": 2324.73, "word": " IOS.", "probability": 0.641357421875}, {"start": 2324.99, "end": 2325.31, "word": " But", "probability": 0.642578125}, {"start": 2325.31, "end": 2325.43, "word": " if", "probability": 0.61328125}, {"start": 2325.43, "end": 2325.49, "word": " they", "probability": 0.457763671875}, {"start": 2325.49, "end": 2325.65, "word": " need", "probability": 0.53515625}, {"start": 2325.65, "end": 2325.91, "word": " something,", "probability": 0.67431640625}, {"start": 2325.97, "end": 2326.17, "word": " they", "probability": 0.5185546875}, {"start": 2326.17, "end": 2326.95, "word": " bring", "probability": 0.249755859375}, {"start": 2326.95, "end": 2327.89, "word": " a", "probability": 0.4140625}, {"start": 2327.89, "end": 2328.15, "word": " Flutter", "probability": 0.76318359375}, {"start": 2328.15, "end": 2328.21, "word": " device", "probability": 0.256103515625}, {"start": 2328.21, "end": 2328.27, "word": " and", "probability": 0.434814453125}, {"start": 2328.27, "end": 2328.29, "word": " they", "probability": 0.2064208984375}, {"start": 2328.29, "end": 2328.47, "word": " work", "probability": 0.5751953125}, {"start": 2328.47, "end": 2329.19, "word": " together", "probability": 0.6357421875}, {"start": 2329.19, "end": 2329.39, "word": " and", "probability": 0.367431640625}, {"start": 2329.39, "end": 2329.79, "word": " save", "probability": 0.421142578125}, {"start": 2329.79, "end": 2330.49, "word": " money.", "probability": 0.5390625}, {"start": 2330.59, "end": 2330.75, "word": " But", "probability": 0.650390625}, {"start": 2330.75, "end": 2330.87, "word": " the", "probability": 0.806640625}, {"start": 2330.87, "end": 2331.15, "word": " application", "probability": 0.8232421875}, {"start": 2331.15, "end": 2331.31, "word": " is", "probability": 0.61376953125}, {"start": 2331.31, "end": 2331.49, "word": " not", "probability": 0.8896484375}, {"start": 2331.49, "end": 2331.91, "word": " scalable.", "probability": 0.79931640625}, {"start": 2335.45, "end": 2335.93, "word": " Separations", "probability": 0.711181640625}, {"start": 2335.93, "end": 2336.15, "word": " of", "probability": 0.8251953125}, {"start": 2336.15, "end": 2336.41, "word": " Consensus", "probability": 0.355377197265625}, {"start": 2336.41, "end": 2336.77, "word": " allows", "probability": 0.1492919921875}, {"start": 2336.77, "end": 2336.97, "word": " you", "probability": 0.798828125}, {"start": 2336.97, "end": 2336.99, "word": " to", "probability": 0.95849609375}, {"start": 2336.99, "end": 2337.17, "word": " bring", "probability": 0.720703125}, {"start": 2337.17, "end": 2337.43, "word": " a", "probability": 0.625}, {"start": 2337.43, "end": 2337.63, "word": " front", "probability": 0.80419921875}, {"start": 2337.63, "end": 2337.81, "word": "-end", "probability": 0.781982421875}, {"start": 2337.81, "end": 2337.81, "word": " device", "probability": 0.4599609375}, {"start": 2337.81, "end": 2337.89, "word": " and", "probability": 0.59765625}, {"start": 2337.89, "end": 2338.01, "word": " say,", "probability": 0.60009765625}, {"start": 2338.13, "end": 2338.25, "word": " I", "probability": 0.290771484375}, {"start": 2338.25, "end": 2338.41, "word": " only", "probability": 0.177734375}, {"start": 2338.41, "end": 2338.67, "word": " work", "probability": 0.66162109375}, {"start": 2338.67, "end": 2338.85, "word": " and", "probability": 0.28369140625}, {"start": 2338.85, "end": 2339.39, "word": " practice", "probability": 0.08099365234375}, {"start": 2339.39, "end": 2340.09, "word": " in", "probability": 0.5087890625}, {"start": 2340.09, "end": 2340.33, "word": " the", "probability": 0.1522216796875}, {"start": 2340.33, "end": 2340.33, "word": " field", "probability": 0.6298828125}, {"start": 2340.33, "end": 2340.45, "word": " of", "probability": 0.97216796875}, {"start": 2340.45, "end": 2340.69, "word": " Vue.", "probability": 0.363037109375}], "temperature": 1.0}, {"id": 96, "seek": 237008, "start": 2342.04, "end": 2370.08, "text": " And it brings one person to work back in the solution. And this is the best job. By separating the application into distinct components, MVC promotes a clear separation of concerns, making it easier to understand and maintain code. Reusability. When you separate them from each other, the system becomes easier to reuse. I tell you that big companies when they design a marketing system,", "tokens": [400, 309, 5607, 472, 954, 281, 589, 646, 294, 264, 3827, 13, 400, 341, 307, 264, 1151, 1691, 13, 3146, 29279, 264, 3861, 666, 10644, 6677, 11, 17663, 34, 36015, 257, 1850, 14634, 295, 7389, 11, 1455, 309, 3571, 281, 1223, 293, 6909, 3089, 13, 1300, 301, 2310, 13, 1133, 291, 4994, 552, 490, 1184, 661, 11, 264, 1185, 3643, 3571, 281, 26225, 13, 286, 980, 291, 300, 955, 3431, 562, 436, 1715, 257, 1849, 5758, 278, 1185, 11], "avg_logprob": -0.43984374180436137, "compression_ratio": 1.5901639344262295, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 2342.04, "end": 2342.66, "word": " And", "probability": 0.09820556640625}, {"start": 2342.66, "end": 2343.2, "word": " it", "probability": 0.162841796875}, {"start": 2343.2, "end": 2343.34, "word": " brings", "probability": 0.44287109375}, {"start": 2343.34, "end": 2343.7, "word": " one", "probability": 0.1990966796875}, {"start": 2343.7, "end": 2343.74, "word": " person", "probability": 0.41552734375}, {"start": 2343.74, "end": 2344.14, "word": " to", "probability": 0.36767578125}, {"start": 2344.14, "end": 2344.6, "word": " work", "probability": 0.71142578125}, {"start": 2344.6, "end": 2346.52, "word": " back", "probability": 0.274169921875}, {"start": 2346.52, "end": 2346.8, "word": " in", "probability": 0.405029296875}, {"start": 2346.8, "end": 2347.2, "word": " the", "probability": 0.385986328125}, {"start": 2347.2, "end": 2347.4, "word": " solution.", "probability": 0.2213134765625}, {"start": 2348.28, "end": 2348.44, "word": " And", "probability": 0.486572265625}, {"start": 2348.44, "end": 2348.6, "word": " this", "probability": 0.7353515625}, {"start": 2348.6, "end": 2348.68, "word": " is", "probability": 0.8935546875}, {"start": 2348.68, "end": 2348.96, "word": " the", "probability": 0.87109375}, {"start": 2348.96, "end": 2349.18, "word": " best", "probability": 0.8203125}, {"start": 2349.18, "end": 2349.18, "word": " job.", "probability": 0.6953125}, {"start": 2350.94, "end": 2351.56, "word": " By", "probability": 0.381591796875}, {"start": 2351.56, "end": 2352.06, "word": " separating", "probability": 0.92578125}, {"start": 2352.06, "end": 2352.26, "word": " the", "probability": 0.77197265625}, {"start": 2352.26, "end": 2353.1, "word": " application", "probability": 0.8427734375}, {"start": 2353.1, "end": 2353.38, "word": " into", "probability": 0.8466796875}, {"start": 2353.38, "end": 2353.82, "word": " distinct", "probability": 0.97900390625}, {"start": 2353.82, "end": 2354.48, "word": " components,", "probability": 0.91259765625}, {"start": 2354.72, "end": 2355.14, "word": " MVC", "probability": 0.929931640625}, {"start": 2355.14, "end": 2355.58, "word": " promotes", "probability": 0.85888671875}, {"start": 2355.58, "end": 2355.78, "word": " a", "probability": 0.966796875}, {"start": 2355.78, "end": 2356.0, "word": " clear", "probability": 0.9228515625}, {"start": 2356.0, "end": 2356.54, "word": " separation", "probability": 0.970703125}, {"start": 2356.54, "end": 2356.74, "word": " of", "probability": 0.97412109375}, {"start": 2356.74, "end": 2357.24, "word": " concerns,", "probability": 0.931640625}, {"start": 2357.92, "end": 2358.24, "word": " making", "probability": 0.8642578125}, {"start": 2358.24, "end": 2358.68, "word": " it", "probability": 0.94921875}, {"start": 2358.68, "end": 2359.5, "word": " easier", "probability": 0.97509765625}, {"start": 2359.5, "end": 2359.7, "word": " to", "probability": 0.97265625}, {"start": 2359.7, "end": 2360.2, "word": " understand", "probability": 0.767578125}, {"start": 2360.2, "end": 2360.4, "word": " and", "probability": 0.93896484375}, {"start": 2360.4, "end": 2360.7, "word": " maintain", "probability": 0.8466796875}, {"start": 2360.7, "end": 2361.02, "word": " code.", "probability": 0.9267578125}, {"start": 2361.54, "end": 2362.16, "word": " Reusability.", "probability": 0.8258463541666666}, {"start": 2362.4, "end": 2362.48, "word": " When", "probability": 0.81640625}, {"start": 2362.48, "end": 2362.78, "word": " you", "probability": 0.92724609375}, {"start": 2362.78, "end": 2363.02, "word": " separate", "probability": 0.79248046875}, {"start": 2363.02, "end": 2363.16, "word": " them", "probability": 0.755859375}, {"start": 2363.16, "end": 2363.3, "word": " from", "probability": 0.28515625}, {"start": 2363.3, "end": 2363.6, "word": " each", "probability": 0.88330078125}, {"start": 2363.6, "end": 2363.6, "word": " other,", "probability": 0.89208984375}, {"start": 2364.56, "end": 2364.9, "word": " the", "probability": 0.85400390625}, {"start": 2364.9, "end": 2365.2, "word": " system", "probability": 0.94775390625}, {"start": 2365.2, "end": 2365.5, "word": " becomes", "probability": 0.74365234375}, {"start": 2365.5, "end": 2365.82, "word": " easier", "probability": 0.4462890625}, {"start": 2365.82, "end": 2365.96, "word": " to", "probability": 0.921875}, {"start": 2365.96, "end": 2366.92, "word": " reuse.", "probability": 0.6552734375}, {"start": 2367.92, "end": 2368.02, "word": " I", "probability": 0.405029296875}, {"start": 2368.02, "end": 2368.22, "word": " tell", "probability": 0.364013671875}, {"start": 2368.22, "end": 2368.38, "word": " you", "probability": 0.947265625}, {"start": 2368.38, "end": 2368.42, "word": " that", "probability": 0.4150390625}, {"start": 2368.42, "end": 2368.48, "word": " big", "probability": 0.4501953125}, {"start": 2368.48, "end": 2369.02, "word": " companies", "probability": 0.8447265625}, {"start": 2369.02, "end": 2369.34, "word": " when", "probability": 0.414306640625}, {"start": 2369.34, "end": 2369.42, "word": " they", "probability": 0.5791015625}, {"start": 2369.42, "end": 2369.66, "word": " design", "probability": 0.90380859375}, {"start": 2369.66, "end": 2370.08, "word": " a", "probability": 0.74462890625}, {"start": 2370.08, "end": 2370.08, "word": " marketing", "probability": 0.6357421875}, {"start": 2370.08, "end": 2370.08, "word": " system,", "probability": 0.8779296875}], "temperature": 1.0}, {"id": 97, "seek": 238994, "start": 2373.21, "end": 2389.95, "text": "Each one of them asks for an e-commerce system, does he go and create a system from scratch? No, he is the owner of the system. Yes, we use the same system, but we modify it. For example, this one uses products, but it needs a new method. These companies take into account their needs. I go to the model, where are these methods?", "tokens": [36, 608, 472, 295, 552, 8962, 337, 364, 308, 12, 26926, 1185, 11, 775, 415, 352, 293, 1884, 257, 1185, 490, 8459, 30, 883, 11, 415, 307, 264, 7289, 295, 264, 1185, 13, 1079, 11, 321, 764, 264, 912, 1185, 11, 457, 321, 16927, 309, 13, 1171, 1365, 11, 341, 472, 4960, 3383, 11, 457, 309, 2203, 257, 777, 3170, 13, 1981, 3431, 747, 666, 2696, 641, 2203, 13, 286, 352, 281, 264, 2316, 11, 689, 366, 613, 7150, 30], "avg_logprob": -0.6060957025598597, "compression_ratio": 1.5666666666666667, "no_speech_prob": 4.0531158447265625e-06, "words": [{"start": 2373.21, "end": 2373.61, "word": "Each", "probability": 0.378570556640625}, {"start": 2373.61, "end": 2374.01, "word": " one", "probability": 0.38232421875}, {"start": 2374.01, "end": 2374.07, "word": " of", "probability": 0.40283203125}, {"start": 2374.07, "end": 2374.07, "word": " them", "probability": 0.8388671875}, {"start": 2374.07, "end": 2374.29, "word": " asks", "probability": 0.15771484375}, {"start": 2374.29, "end": 2374.61, "word": " for", "probability": 0.63818359375}, {"start": 2374.61, "end": 2374.93, "word": " an", "probability": 0.572265625}, {"start": 2374.93, "end": 2375.03, "word": " e", "probability": 0.419921875}, {"start": 2375.03, "end": 2375.45, "word": "-commerce", "probability": 0.840087890625}, {"start": 2375.45, "end": 2375.45, "word": " system,", "probability": 0.71337890625}, {"start": 2375.49, "end": 2375.61, "word": " does", "probability": 0.279541015625}, {"start": 2375.61, "end": 2375.71, "word": " he", "probability": 0.435546875}, {"start": 2375.71, "end": 2375.71, "word": " go", "probability": 0.2099609375}, {"start": 2375.71, "end": 2375.89, "word": " and", "probability": 0.59814453125}, {"start": 2375.89, "end": 2376.01, "word": " create", "probability": 0.415771484375}, {"start": 2376.01, "end": 2376.33, "word": " a", "probability": 0.474853515625}, {"start": 2376.33, "end": 2376.33, "word": " system", "probability": 0.5478515625}, {"start": 2376.33, "end": 2376.43, "word": " from", "probability": 0.70361328125}, {"start": 2376.43, "end": 2376.63, "word": " scratch?", "probability": 0.77294921875}, {"start": 2377.41, "end": 2377.79, "word": " No,", "probability": 0.8203125}, {"start": 2378.21, "end": 2378.41, "word": " he", "probability": 0.5537109375}, {"start": 2378.41, "end": 2378.57, "word": " is", "probability": 0.3271484375}, {"start": 2378.57, "end": 2378.73, "word": " the", "probability": 0.63232421875}, {"start": 2378.73, "end": 2378.85, "word": " owner", "probability": 0.15771484375}, {"start": 2378.85, "end": 2378.95, "word": " of", "probability": 0.94580078125}, {"start": 2378.95, "end": 2379.03, "word": " the", "probability": 0.83544921875}, {"start": 2379.03, "end": 2379.29, "word": " system.", "probability": 0.9287109375}, {"start": 2379.67, "end": 2379.87, "word": " Yes,", "probability": 0.28515625}, {"start": 2379.99, "end": 2380.19, "word": " we", "probability": 0.57666015625}, {"start": 2380.19, "end": 2380.71, "word": " use", "probability": 0.5615234375}, {"start": 2380.71, "end": 2380.91, "word": " the", "probability": 0.8955078125}, {"start": 2380.91, "end": 2381.07, "word": " same", "probability": 0.88427734375}, {"start": 2381.07, "end": 2381.39, "word": " system,", "probability": 0.931640625}, {"start": 2381.41, "end": 2381.57, "word": " but", "probability": 0.62451171875}, {"start": 2381.57, "end": 2381.69, "word": " we", "probability": 0.85400390625}, {"start": 2381.69, "end": 2381.95, "word": " modify", "probability": 0.28515625}, {"start": 2381.95, "end": 2382.23, "word": " it.", "probability": 0.94580078125}, {"start": 2382.27, "end": 2382.61, "word": " For", "probability": 0.264404296875}, {"start": 2382.61, "end": 2383.09, "word": " example,", "probability": 0.90234375}, {"start": 2383.53, "end": 2383.71, "word": " this", "probability": 0.6337890625}, {"start": 2383.71, "end": 2383.77, "word": " one", "probability": 0.28125}, {"start": 2383.77, "end": 2384.13, "word": " uses", "probability": 0.79052734375}, {"start": 2384.13, "end": 2384.55, "word": " products,", "probability": 0.67578125}, {"start": 2384.75, "end": 2384.93, "word": " but", "probability": 0.8916015625}, {"start": 2384.93, "end": 2385.05, "word": " it", "probability": 0.2203369140625}, {"start": 2385.05, "end": 2385.15, "word": " needs", "probability": 0.65087890625}, {"start": 2385.15, "end": 2385.21, "word": " a", "probability": 0.9560546875}, {"start": 2385.21, "end": 2385.21, "word": " new", "probability": 0.86474609375}, {"start": 2385.21, "end": 2385.47, "word": " method.", "probability": 0.9365234375}, {"start": 2386.11, "end": 2386.51, "word": " These", "probability": 0.2001953125}, {"start": 2386.51, "end": 2386.81, "word": " companies", "probability": 0.8251953125}, {"start": 2386.81, "end": 2387.17, "word": " take", "probability": 0.447265625}, {"start": 2387.17, "end": 2387.27, "word": " into", "probability": 0.191650390625}, {"start": 2387.27, "end": 2387.27, "word": " account", "probability": 0.63916015625}, {"start": 2387.27, "end": 2387.31, "word": " their", "probability": 0.7900390625}, {"start": 2387.31, "end": 2387.67, "word": " needs.", "probability": 0.8525390625}, {"start": 2388.65, "end": 2388.81, "word": " I", "probability": 0.1871337890625}, {"start": 2388.81, "end": 2388.93, "word": " go", "probability": 0.822265625}, {"start": 2388.93, "end": 2389.15, "word": " to", "probability": 0.92236328125}, {"start": 2389.15, "end": 2389.27, "word": " the", "probability": 0.80419921875}, {"start": 2389.27, "end": 2389.41, "word": " model,", "probability": 0.49560546875}, {"start": 2389.51, "end": 2389.65, "word": " where", "probability": 0.288818359375}, {"start": 2389.65, "end": 2389.65, "word": " are", "probability": 0.5087890625}, {"start": 2389.65, "end": 2389.69, "word": " these", "probability": 0.6455078125}, {"start": 2389.69, "end": 2389.95, "word": " methods?", "probability": 0.90869140625}], "temperature": 1.0}, {"id": 98, "seek": 241637, "start": 2391.23, "end": 2416.37, "text": " He only edits the methods according to the company's needs. He sees the model and the database. It has nothing to do with the design and the faces and everything. So he edits here. He goes to the front-end and says we want to add a page and so on. So he adds the existing page. Editing is easier and the system is reusable better. Unless everything is in one place. Testability. We talked about it. Mocking.", "tokens": [634, 787, 41752, 264, 7150, 4650, 281, 264, 2237, 311, 2203, 13, 634, 8194, 264, 2316, 293, 264, 8149, 13, 467, 575, 1825, 281, 360, 365, 264, 1715, 293, 264, 8475, 293, 1203, 13, 407, 415, 41752, 510, 13, 634, 1709, 281, 264, 1868, 12, 521, 293, 1619, 321, 528, 281, 909, 257, 3028, 293, 370, 322, 13, 407, 415, 10860, 264, 6741, 3028, 13, 3977, 1748, 307, 3571, 293, 264, 1185, 307, 41807, 1101, 13, 1156, 75, 442, 1203, 307, 294, 472, 1081, 13, 9279, 2310, 13, 492, 2825, 466, 309, 13, 376, 31730, 13], "avg_logprob": -0.5273840402819446, "compression_ratio": 1.6929460580912863, "no_speech_prob": 8.702278137207031e-06, "words": [{"start": 2391.23, "end": 2391.71, "word": " He", "probability": 0.1580810546875}, {"start": 2391.71, "end": 2392.19, "word": " only", "probability": 0.1748046875}, {"start": 2392.19, "end": 2392.47, "word": " edits", "probability": 0.29345703125}, {"start": 2392.47, "end": 2392.77, "word": " the", "probability": 0.5048828125}, {"start": 2392.77, "end": 2393.03, "word": " methods", "probability": 0.7275390625}, {"start": 2393.03, "end": 2393.27, "word": " according", "probability": 0.4814453125}, {"start": 2393.27, "end": 2393.41, "word": " to", "probability": 0.95751953125}, {"start": 2393.41, "end": 2393.43, "word": " the", "probability": 0.6728515625}, {"start": 2393.43, "end": 2394.13, "word": " company's", "probability": 0.646240234375}, {"start": 2394.13, "end": 2394.13, "word": " needs.", "probability": 0.67236328125}, {"start": 2394.23, "end": 2394.57, "word": " He", "probability": 0.62939453125}, {"start": 2394.57, "end": 2394.95, "word": " sees", "probability": 0.379638671875}, {"start": 2394.95, "end": 2395.11, "word": " the", "probability": 0.64501953125}, {"start": 2395.11, "end": 2395.25, "word": " model", "probability": 0.8486328125}, {"start": 2395.25, "end": 2395.41, "word": " and", "probability": 0.88232421875}, {"start": 2395.41, "end": 2395.49, "word": " the", "probability": 0.333984375}, {"start": 2395.49, "end": 2395.93, "word": " database.", "probability": 0.8330078125}, {"start": 2397.05, "end": 2397.11, "word": " It", "probability": 0.376953125}, {"start": 2397.11, "end": 2397.21, "word": " has", "probability": 0.76220703125}, {"start": 2397.21, "end": 2397.29, "word": " nothing", "probability": 0.88037109375}, {"start": 2397.29, "end": 2397.71, "word": " to", "probability": 0.97119140625}, {"start": 2397.71, "end": 2397.83, "word": " do", "probability": 0.96533203125}, {"start": 2397.83, "end": 2398.39, "word": " with", "probability": 0.89599609375}, {"start": 2398.39, "end": 2398.45, "word": " the", "probability": 0.380615234375}, {"start": 2398.45, "end": 2398.75, "word": " design", "probability": 0.814453125}, {"start": 2398.75, "end": 2398.91, "word": " and", "probability": 0.293701171875}, {"start": 2398.91, "end": 2398.93, "word": " the", "probability": 0.408447265625}, {"start": 2398.93, "end": 2399.17, "word": " faces", "probability": 0.2100830078125}, {"start": 2399.17, "end": 2399.39, "word": " and", "probability": 0.55712890625}, {"start": 2399.39, "end": 2399.55, "word": " everything.", "probability": 0.8017578125}, {"start": 2400.05, "end": 2400.35, "word": " So", "probability": 0.56640625}, {"start": 2400.35, "end": 2400.45, "word": " he", "probability": 0.62451171875}, {"start": 2400.45, "end": 2400.79, "word": " edits", "probability": 0.654296875}, {"start": 2400.79, "end": 2401.33, "word": " here.", "probability": 0.4169921875}, {"start": 2401.75, "end": 2401.93, "word": " He", "probability": 0.5595703125}, {"start": 2401.93, "end": 2402.09, "word": " goes", "probability": 0.80810546875}, {"start": 2402.09, "end": 2402.27, "word": " to", "probability": 0.916015625}, {"start": 2402.27, "end": 2402.45, "word": " the", "probability": 0.80078125}, {"start": 2402.45, "end": 2402.73, "word": " front", "probability": 0.9150390625}, {"start": 2402.73, "end": 2402.95, "word": "-end", "probability": 0.6141357421875}, {"start": 2402.95, "end": 2403.03, "word": " and", "probability": 0.53857421875}, {"start": 2403.03, "end": 2403.19, "word": " says", "probability": 0.2705078125}, {"start": 2403.19, "end": 2403.35, "word": " we", "probability": 0.24365234375}, {"start": 2403.35, "end": 2403.59, "word": " want", "probability": 0.471435546875}, {"start": 2403.59, "end": 2403.65, "word": " to", "probability": 0.95263671875}, {"start": 2403.65, "end": 2403.83, "word": " add", "probability": 0.9091796875}, {"start": 2403.83, "end": 2403.93, "word": " a", "probability": 0.40771484375}, {"start": 2403.93, "end": 2404.11, "word": " page", "probability": 0.8740234375}, {"start": 2404.11, "end": 2404.33, "word": " and", "probability": 0.293701171875}, {"start": 2404.33, "end": 2404.53, "word": " so", "probability": 0.65283203125}, {"start": 2404.53, "end": 2404.53, "word": " on.", "probability": 0.84619140625}, {"start": 2404.69, "end": 2404.77, "word": " So", "probability": 0.57275390625}, {"start": 2404.77, "end": 2404.87, "word": " he", "probability": 0.8642578125}, {"start": 2404.87, "end": 2405.17, "word": " adds", "probability": 0.70703125}, {"start": 2405.17, "end": 2405.37, "word": " the", "probability": 0.58251953125}, {"start": 2405.37, "end": 2405.81, "word": " existing", "probability": 0.423095703125}, {"start": 2405.81, "end": 2405.81, "word": " page.", "probability": 0.88525390625}, {"start": 2406.85, "end": 2407.31, "word": " Editing", "probability": 0.56805419921875}, {"start": 2407.31, "end": 2407.49, "word": " is", "probability": 0.322265625}, {"start": 2407.49, "end": 2408.61, "word": " easier", "probability": 0.818359375}, {"start": 2408.61, "end": 2408.83, "word": " and", "probability": 0.5341796875}, {"start": 2408.83, "end": 2409.09, "word": " the", "probability": 0.66943359375}, {"start": 2409.09, "end": 2409.37, "word": " system", "probability": 0.94873046875}, {"start": 2409.37, "end": 2409.45, "word": " is", "probability": 0.6865234375}, {"start": 2409.45, "end": 2409.79, "word": " reusable", "probability": 0.492431640625}, {"start": 2409.79, "end": 2410.41, "word": " better.", "probability": 0.65185546875}, {"start": 2410.73, "end": 2411.05, "word": " Unless", "probability": 0.57177734375}, {"start": 2411.05, "end": 2411.71, "word": " everything", "probability": 0.77294921875}, {"start": 2411.71, "end": 2412.23, "word": " is", "probability": 0.87255859375}, {"start": 2412.23, "end": 2412.63, "word": " in", "probability": 0.50341796875}, {"start": 2412.63, "end": 2412.75, "word": " one", "probability": 0.79541015625}, {"start": 2412.75, "end": 2413.15, "word": " place.", "probability": 0.86865234375}, {"start": 2413.75, "end": 2414.23, "word": " Testability.", "probability": 0.696044921875}, {"start": 2414.75, "end": 2414.83, "word": " We", "probability": 0.90771484375}, {"start": 2414.83, "end": 2415.07, "word": " talked", "probability": 0.6484375}, {"start": 2415.07, "end": 2415.31, "word": " about", "probability": 0.90576171875}, {"start": 2415.31, "end": 2415.43, "word": " it.", "probability": 0.6787109375}, {"start": 2415.93, "end": 2416.37, "word": " Mocking.", "probability": 0.7978515625}], "temperature": 1.0}, {"id": 99, "seek": 244448, "start": 2418.38, "end": 2444.48, "text": "Testing each component separately is easier. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make a mock db. You can search for a view and make", "tokens": [51, 8714, 1184, 6542, 14759, 307, 3571, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652, 257, 17362, 274, 65, 13, 509, 393, 3164, 337, 257, 1910, 293, 652], "avg_logprob": -0.1394444465637207, "compression_ratio": 9.055555555555555, "no_speech_prob": 7.450580596923828e-06, "words": [{"start": 2418.3799999999997, "end": 2418.74, "word": "Testing", "probability": 0.6185302734375}, {"start": 2418.74, "end": 2419.0, "word": " each", "probability": 0.92529296875}, {"start": 2419.0, "end": 2419.46, "word": " component", "probability": 0.78662109375}, {"start": 2419.46, "end": 2419.96, "word": " separately", "probability": 0.76025390625}, {"start": 2419.96, "end": 2420.2, "word": " is", "probability": 0.92919921875}, {"start": 2420.2, "end": 2420.58, "word": " easier.", "probability": 0.95166015625}, {"start": 2420.76, "end": 2420.82, "word": " You", "probability": 0.363037109375}, {"start": 2420.82, "end": 2420.96, "word": " can", "probability": 0.68359375}, {"start": 2420.96, "end": 2421.7, "word": " search", "probability": 0.2880859375}, {"start": 2421.7, "end": 2421.94, "word": " for", "probability": 0.58349609375}, {"start": 2421.94, "end": 2422.02, "word": " a", "probability": 0.529296875}, {"start": 2422.02, "end": 2422.2, "word": " view", "probability": 0.830078125}, {"start": 2422.2, "end": 2422.74, "word": " and", "probability": 0.464111328125}, {"start": 2422.74, "end": 2423.0, "word": " make", "probability": 0.1666259765625}, {"start": 2423.0, "end": 2423.12, "word": " a", "probability": 0.56201171875}, {"start": 2423.12, "end": 2423.26, "word": " mock", "probability": 0.880859375}, {"start": 2423.26, "end": 2423.56, "word": " db.", "probability": 0.6328125}, {"start": 2424.2, "end": 2424.46, "word": " You", "probability": 0.5849609375}, {"start": 2424.46, "end": 2424.58, "word": " can", "probability": 0.2193603515625}, {"start": 2424.58, "end": 2424.82, "word": " search", "probability": 0.88916015625}, {"start": 2424.82, "end": 2424.94, "word": " for", "probability": 0.740234375}, {"start": 2424.94, "end": 2425.0, "word": " a", "probability": 0.72607421875}, {"start": 2425.0, "end": 2425.22, "word": " view", "probability": 0.2479248046875}, {"start": 2425.22, "end": 2425.34, "word": " and", "probability": 0.60595703125}, {"start": 2425.34, "end": 2425.34, "word": " make", "probability": 0.84375}, {"start": 2425.34, "end": 2425.34, "word": " a", "probability": 0.94140625}, {"start": 2425.34, "end": 2425.34, "word": " mock", "probability": 0.90625}, {"start": 2425.34, "end": 2425.34, "word": " db.", "probability": 0.967041015625}, {"start": 2425.66, "end": 2425.66, "word": " You", "probability": 0.79052734375}, {"start": 2425.66, "end": 2425.66, "word": " can", "probability": 0.29833984375}, {"start": 2425.66, "end": 2425.66, "word": " search", "probability": 0.98095703125}, {"start": 2425.66, "end": 2425.66, "word": " for", "probability": 0.9462890625}, {"start": 2425.66, "end": 2425.66, "word": " a", "probability": 0.99658203125}, {"start": 2425.66, "end": 2425.66, "word": " view", "probability": 0.87158203125}, {"start": 2425.66, "end": 2425.66, "word": " and", "probability": 0.94189453125}, {"start": 2425.66, "end": 2425.66, "word": " make", "probability": 0.9462890625}, {"start": 2425.66, "end": 2425.66, "word": " a", "probability": 0.99609375}, {"start": 2425.66, "end": 2425.66, "word": " mock", "probability": 0.986328125}, {"start": 2425.66, "end": 2425.66, "word": " db.", "probability": 0.98193359375}, {"start": 2425.72, "end": 2425.72, "word": " You", "probability": 0.83447265625}, {"start": 2425.72, "end": 2425.72, "word": " can", "probability": 0.217041015625}, {"start": 2425.72, "end": 2425.72, "word": " search", "probability": 0.9609375}, {"start": 2425.72, "end": 2425.72, "word": " for", "probability": 0.94677734375}, {"start": 2425.72, "end": 2425.72, "word": " a", "probability": 0.98779296875}, {"start": 2425.72, "end": 2425.72, "word": " view", "probability": 0.87060546875}, {"start": 2425.72, "end": 2425.72, "word": " and", "probability": 0.939453125}, {"start": 2425.72, "end": 2425.72, "word": " make", "probability": 0.947265625}, {"start": 2425.72, "end": 2425.72, "word": " a", "probability": 0.99609375}, {"start": 2425.72, "end": 2425.72, "word": " mock", "probability": 0.986328125}, {"start": 2425.72, "end": 2425.72, "word": " db.", "probability": 0.98291015625}, {"start": 2426.34, "end": 2426.58, "word": " You", "probability": 0.7734375}, {"start": 2426.58, "end": 2426.78, "word": " can", "probability": 0.22900390625}, {"start": 2426.78, "end": 2426.88, "word": " search", "probability": 0.9384765625}, {"start": 2426.88, "end": 2427.08, "word": " for", "probability": 0.9453125}, {"start": 2427.08, "end": 2427.12, "word": " a", "probability": 0.97705078125}, {"start": 2427.12, "end": 2427.52, "word": " view", "probability": 0.86572265625}, {"start": 2427.52, "end": 2427.72, "word": " and", "probability": 0.93994140625}, {"start": 2427.72, "end": 2427.8, "word": " make", "probability": 0.94677734375}, {"start": 2427.8, "end": 2427.82, "word": " a", "probability": 0.99658203125}, {"start": 2427.82, "end": 2427.84, "word": " mock", "probability": 0.98828125}, {"start": 2427.84, "end": 2427.84, "word": " db.", "probability": 0.984375}, {"start": 2427.84, "end": 2427.84, "word": " You", "probability": 0.7607421875}, {"start": 2427.84, "end": 2427.84, "word": " can", "probability": 0.354736328125}, {"start": 2427.84, "end": 2427.84, "word": " search", "probability": 0.95751953125}, {"start": 2427.84, "end": 2427.84, "word": " for", "probability": 0.94580078125}, {"start": 2427.84, "end": 2427.92, "word": " a", "probability": 0.98486328125}, {"start": 2427.92, "end": 2428.18, "word": " view", "probability": 0.86083984375}, {"start": 2428.18, "end": 2428.38, "word": " and", "probability": 0.93994140625}, {"start": 2428.38, "end": 2428.5, "word": " make", "probability": 0.947265625}, {"start": 2428.5, "end": 2428.5, "word": " a", "probability": 0.99755859375}, {"start": 2428.5, "end": 2428.5, "word": " mock", "probability": 0.98974609375}, {"start": 2428.5, "end": 2428.56, "word": " db.", "probability": 0.98681640625}, {"start": 2428.56, "end": 2428.7, "word": " You", "probability": 0.7763671875}, {"start": 2428.7, "end": 2428.72, "word": " can", "probability": 0.57470703125}, {"start": 2428.72, "end": 2428.92, "word": " search", "probability": 0.97265625}, {"start": 2428.92, "end": 2429.02, "word": " for", "probability": 0.94873046875}, {"start": 2429.02, "end": 2429.1, "word": " a", "probability": 0.9921875}, {"start": 2429.1, "end": 2429.18, "word": " view", "probability": 0.86083984375}, {"start": 2429.18, "end": 2429.18, "word": " and", "probability": 0.93994140625}, {"start": 2429.18, "end": 2429.18, "word": " make", "probability": 0.9482421875}, {"start": 2429.18, "end": 2429.18, "word": " a", "probability": 0.998046875}, {"start": 2429.18, "end": 2429.18, "word": " mock", "probability": 0.990234375}, {"start": 2429.18, "end": 2429.36, "word": " db.", "probability": 0.98876953125}, {"start": 2429.46, "end": 2429.46, "word": " You", "probability": 0.81005859375}, {"start": 2429.46, "end": 2429.46, "word": " can", "probability": 0.80224609375}, {"start": 2429.46, "end": 2429.46, "word": " search", "probability": 0.97998046875}, {"start": 2429.46, "end": 2429.46, "word": " for", "probability": 0.94873046875}, {"start": 2429.46, "end": 2429.46, "word": " a", "probability": 0.9951171875}, {"start": 2429.46, "end": 2429.46, "word": " view", "probability": 0.8623046875}, {"start": 2429.46, "end": 2429.46, "word": " and", "probability": 0.94091796875}, {"start": 2429.46, "end": 2429.46, "word": " make", "probability": 0.94921875}, {"start": 2429.46, "end": 2429.46, "word": " a", "probability": 0.99853515625}, {"start": 2429.46, "end": 2429.46, "word": " mock", "probability": 0.990234375}, {"start": 2429.46, "end": 2429.84, "word": " db.", "probability": 0.99072265625}, {"start": 2429.84, "end": 2429.84, "word": " You", "probability": 0.8515625}, {"start": 2429.84, "end": 2429.84, "word": " can", "probability": 0.9150390625}, {"start": 2429.84, "end": 2429.84, "word": " search", "probability": 0.9833984375}, {"start": 2429.84, "end": 2429.84, "word": " for", "probability": 0.9501953125}, {"start": 2429.84, "end": 2429.84, "word": " a", "probability": 0.99658203125}, {"start": 2429.84, "end": 2429.84, "word": " view", "probability": 0.8642578125}, {"start": 2429.84, "end": 2429.84, "word": " and", "probability": 0.9404296875}, {"start": 2429.84, "end": 2429.84, "word": " make", "probability": 0.94921875}, {"start": 2429.84, "end": 2429.84, "word": " a", "probability": 0.9990234375}, {"start": 2429.84, "end": 2429.84, "word": " mock", "probability": 0.990234375}, {"start": 2429.84, "end": 2429.94, "word": " db.", "probability": 0.991943359375}, {"start": 2430.58, "end": 2430.94, "word": " You", "probability": 0.890625}, {"start": 2430.94, "end": 2430.94, "word": " can", "probability": 0.9453125}, {"start": 2430.94, "end": 2430.94, "word": " search", "probability": 0.98486328125}, {"start": 2430.94, "end": 2431.04, "word": " for", "probability": 0.95068359375}, {"start": 2431.04, "end": 2431.06, "word": " a", "probability": 0.998046875}, {"start": 2431.06, "end": 2431.06, "word": " view", "probability": 0.86572265625}, {"start": 2431.06, "end": 2431.06, "word": " and", "probability": 0.94091796875}, {"start": 2431.06, "end": 2431.06, "word": " make", "probability": 0.94921875}, {"start": 2431.06, "end": 2431.06, "word": " a", "probability": 0.99951171875}, {"start": 2431.06, "end": 2431.06, "word": " mock", "probability": 0.9892578125}, {"start": 2431.06, "end": 2431.06, "word": " db.", "probability": 0.992919921875}, {"start": 2431.06, "end": 2431.28, "word": " You", "probability": 0.9169921875}, {"start": 2431.28, "end": 2431.44, "word": " can", "probability": 0.9521484375}, {"start": 2431.44, "end": 2431.62, "word": " search", "probability": 0.9853515625}, {"start": 2431.62, "end": 2431.8, "word": " for", "probability": 0.951171875}, {"start": 2431.8, "end": 2431.86, "word": " a", "probability": 0.99853515625}, {"start": 2431.86, "end": 2431.96, "word": " view", "probability": 0.8671875}, {"start": 2431.96, "end": 2431.96, "word": " and", "probability": 0.94091796875}, {"start": 2431.96, "end": 2431.96, "word": " make", "probability": 0.95068359375}, {"start": 2431.96, "end": 2431.96, "word": " a", "probability": 0.99951171875}, {"start": 2431.96, "end": 2431.96, "word": " mock", "probability": 0.98876953125}, {"start": 2431.96, "end": 2432.56, "word": " db.", "probability": 0.993896484375}, {"start": 2432.84, "end": 2432.94, "word": " You", "probability": 0.93310546875}, {"start": 2432.94, "end": 2433.12, "word": " can", "probability": 0.955078125}, {"start": 2433.12, "end": 2433.26, "word": " search", "probability": 0.9853515625}, {"start": 2433.26, "end": 2433.3, "word": " for", "probability": 0.951171875}, {"start": 2433.3, "end": 2433.3, "word": " a", "probability": 0.99853515625}, {"start": 2433.3, "end": 2433.3, "word": " view", "probability": 0.8681640625}, {"start": 2433.3, "end": 2433.3, "word": " and", "probability": 0.939453125}, {"start": 2433.3, "end": 2433.3, "word": " make", "probability": 0.95068359375}, {"start": 2433.3, "end": 2433.68, "word": " a", "probability": 0.99951171875}, {"start": 2433.68, "end": 2433.72, "word": " mock", "probability": 0.98828125}, {"start": 2433.72, "end": 2433.9, "word": " db.", "probability": 0.994384765625}, {"start": 2434.0, "end": 2434.0, "word": " You", "probability": 0.94189453125}, {"start": 2434.0, "end": 2434.0, "word": " can", "probability": 0.955078125}, {"start": 2434.0, "end": 2434.0, "word": " search", "probability": 0.9853515625}, {"start": 2434.0, "end": 2434.0, "word": " for", "probability": 0.95166015625}, {"start": 2434.0, "end": 2434.0, "word": " a", "probability": 0.9990234375}, {"start": 2434.0, "end": 2434.0, "word": " view", "probability": 0.8681640625}, {"start": 2434.0, "end": 2434.0, "word": " and", "probability": 0.939453125}, {"start": 2434.0, "end": 2434.0, "word": " make", "probability": 0.95068359375}, {"start": 2434.0, "end": 2434.5, "word": " a", "probability": 0.99951171875}, {"start": 2434.5, "end": 2434.5, "word": " mock", "probability": 0.98779296875}, {"start": 2434.5, "end": 2434.58, "word": " db.", "probability": 0.994873046875}, {"start": 2435.06, "end": 2435.42, "word": " You", "probability": 0.94677734375}, {"start": 2435.42, "end": 2435.74, "word": " can", "probability": 0.95703125}, {"start": 2435.74, "end": 2435.78, "word": " search", "probability": 0.9853515625}, {"start": 2435.78, "end": 2435.86, "word": " for", "probability": 0.9501953125}, {"start": 2435.86, "end": 2435.94, "word": " a", "probability": 0.9990234375}, {"start": 2435.94, "end": 2436.12, "word": " view", "probability": 0.869140625}, {"start": 2436.12, "end": 2436.4, "word": " and", "probability": 0.94140625}, {"start": 2436.4, "end": 2436.54, "word": " make", "probability": 0.951171875}, {"start": 2436.54, "end": 2436.56, "word": " a", "probability": 0.99951171875}, {"start": 2436.56, "end": 2438.14, "word": " mock", "probability": 0.98779296875}, {"start": 2438.14, "end": 2438.26, "word": " db.", "probability": 0.9951171875}, {"start": 2439.84, "end": 2440.2, "word": " You", "probability": 0.94970703125}, {"start": 2440.2, "end": 2440.2, "word": " can", "probability": 0.9560546875}, {"start": 2440.2, "end": 2440.36, "word": " search", "probability": 0.9853515625}, {"start": 2440.36, "end": 2440.4, "word": " for", "probability": 0.95166015625}, {"start": 2440.4, "end": 2440.4, "word": " a", "probability": 0.9990234375}, {"start": 2440.4, "end": 2440.64, "word": " view", "probability": 0.87255859375}, {"start": 2440.64, "end": 2440.82, "word": " and", "probability": 0.93994140625}, {"start": 2440.82, "end": 2440.88, "word": " make", "probability": 0.951171875}, {"start": 2440.88, "end": 2440.9, "word": " a", "probability": 0.99951171875}, {"start": 2440.9, "end": 2441.02, "word": " mock", "probability": 0.98828125}, {"start": 2441.02, "end": 2441.28, "word": " db.", "probability": 0.99560546875}, {"start": 2441.58, "end": 2441.94, "word": " You", "probability": 0.95361328125}, {"start": 2441.94, "end": 2441.94, "word": " can", "probability": 0.9560546875}, {"start": 2441.94, "end": 2442.36, "word": " search", "probability": 0.9853515625}, {"start": 2442.36, "end": 2442.56, "word": " for", "probability": 0.95166015625}, {"start": 2442.56, "end": 2442.56, "word": " a", "probability": 0.9990234375}, {"start": 2442.56, "end": 2442.7, "word": " view", "probability": 0.8720703125}, {"start": 2442.7, "end": 2442.92, "word": " and", "probability": 0.94140625}, {"start": 2442.92, "end": 2442.92, "word": " make", "probability": 0.951171875}, {"start": 2442.92, "end": 2443.0, "word": " a", "probability": 0.99951171875}, {"start": 2443.0, "end": 2443.08, "word": " mock", "probability": 0.98828125}, {"start": 2443.08, "end": 2444.48, "word": " db.", "probability": 0.99560546875}, {"start": 2444.48, "end": 2444.48, "word": " You", "probability": 0.955078125}, {"start": 2444.48, "end": 2444.48, "word": " can", "probability": 0.95654296875}, {"start": 2444.48, "end": 2444.48, "word": " search", "probability": 0.98486328125}, {"start": 2444.48, "end": 2444.48, "word": " for", "probability": 0.95166015625}, {"start": 2444.48, "end": 2444.48, "word": " a", "probability": 0.9990234375}, {"start": 2444.48, "end": 2444.48, "word": " view", "probability": 0.87255859375}, {"start": 2444.48, "end": 2444.48, "word": " and", "probability": 0.94140625}, {"start": 2444.48, "end": 2444.48, "word": " make", "probability": 0.95166015625}], "temperature": 1.0}, {"id": 100, "seek": 246276, "start": 2446.2, "end": 2462.76, "text": "I'm going to change the database, all of it. Actually, you have an interface that implements a new class, but it's not on MySQL, it's connected to Oracle for example. It's not going to change the controller or the view.", "tokens": [40, 478, 516, 281, 1319, 264, 8149, 11, 439, 295, 309, 13, 5135, 11, 291, 362, 364, 9226, 300, 704, 17988, 257, 777, 1508, 11, 457, 309, 311, 406, 322, 1222, 39934, 11, 309, 311, 4582, 281, 25654, 337, 1365, 13, 467, 311, 406, 516, 281, 1319, 264, 10561, 420, 264, 1910, 13], "avg_logprob": -0.5619213051266141, "compression_ratio": 1.4313725490196079, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 2446.2, "end": 2446.72, "word": "I'm", "probability": 0.20660400390625}, {"start": 2446.72, "end": 2446.72, "word": " going", "probability": 0.7890625}, {"start": 2446.72, "end": 2446.72, "word": " to", "probability": 0.9677734375}, {"start": 2446.72, "end": 2446.96, "word": " change", "probability": 0.81884765625}, {"start": 2446.96, "end": 2447.1, "word": " the", "probability": 0.69140625}, {"start": 2447.1, "end": 2447.58, "word": " database,", "probability": 0.619140625}, {"start": 2448.44, "end": 2448.66, "word": " all", "probability": 0.314208984375}, {"start": 2448.66, "end": 2448.76, "word": " of", "probability": 0.90185546875}, {"start": 2448.76, "end": 2448.86, "word": " it.", "probability": 0.83642578125}, {"start": 2449.82, "end": 2450.26, "word": " Actually,", "probability": 0.156005859375}, {"start": 2450.44, "end": 2450.54, "word": " you", "probability": 0.79931640625}, {"start": 2450.54, "end": 2450.74, "word": " have", "probability": 0.85791015625}, {"start": 2450.74, "end": 2450.9, "word": " an", "probability": 0.80419921875}, {"start": 2450.9, "end": 2451.38, "word": " interface", "probability": 0.88427734375}, {"start": 2451.38, "end": 2451.94, "word": " that", "probability": 0.37353515625}, {"start": 2451.94, "end": 2452.74, "word": " implements", "probability": 0.59661865234375}, {"start": 2452.74, "end": 2453.6, "word": " a", "probability": 0.35888671875}, {"start": 2453.6, "end": 2453.62, "word": " new", "probability": 0.8828125}, {"start": 2453.62, "end": 2454.2, "word": " class,", "probability": 0.9462890625}, {"start": 2454.32, "end": 2454.46, "word": " but", "probability": 0.76025390625}, {"start": 2454.46, "end": 2454.78, "word": " it's", "probability": 0.5084228515625}, {"start": 2454.78, "end": 2454.98, "word": " not", "probability": 0.9248046875}, {"start": 2454.98, "end": 2456.36, "word": " on", "probability": 0.138671875}, {"start": 2456.36, "end": 2457.34, "word": " MySQL,", "probability": 0.82373046875}, {"start": 2457.72, "end": 2458.02, "word": " it's", "probability": 0.4964599609375}, {"start": 2458.02, "end": 2458.22, "word": " connected", "probability": 0.265869140625}, {"start": 2458.22, "end": 2458.58, "word": " to", "probability": 0.78759765625}, {"start": 2458.58, "end": 2458.86, "word": " Oracle", "probability": 0.865234375}, {"start": 2458.86, "end": 2459.1, "word": " for", "probability": 0.251953125}, {"start": 2459.1, "end": 2459.1, "word": " example.", "probability": 0.9169921875}, {"start": 2459.72, "end": 2460.22, "word": " It's", "probability": 0.4892578125}, {"start": 2460.22, "end": 2460.22, "word": " not", "probability": 0.86083984375}, {"start": 2460.22, "end": 2460.34, "word": " going", "probability": 0.859375}, {"start": 2460.34, "end": 2460.34, "word": " to", "probability": 0.9697265625}, {"start": 2460.34, "end": 2460.52, "word": " change", "probability": 0.85498046875}, {"start": 2460.52, "end": 2460.7, "word": " the", "probability": 0.56689453125}, {"start": 2460.7, "end": 2461.26, "word": " controller", "probability": 0.6689453125}, {"start": 2461.26, "end": 2462.44, "word": " or", "probability": 0.75439453125}, {"start": 2462.44, "end": 2462.56, "word": " the", "probability": 0.82763671875}, {"start": 2462.56, "end": 2462.76, "word": " view.", "probability": 0.90380859375}], "temperature": 1.0}, {"id": 101, "seek": 248228, "start": 2466.2, "end": 2482.28, "text": "In the web specifically, there are MVC frameworks that support it, such as Laravel, Ruby on Rails, and Spring. In Laravel, it divides the project into three parts, model, view, and controller. Design your model here, design the view here, and design the controller here.", "tokens": [4575, 264, 3670, 4682, 11, 456, 366, 17663, 34, 29834, 300, 1406, 309, 11, 1270, 382, 33935, 779, 11, 19907, 322, 48526, 11, 293, 14013, 13, 682, 33935, 779, 11, 309, 41347, 264, 1716, 666, 1045, 3166, 11, 2316, 11, 1910, 11, 293, 10561, 13, 12748, 428, 2316, 510, 11, 1715, 264, 1910, 510, 11, 293, 1715, 264, 10561, 510, 13], "avg_logprob": -0.4095262236172153, "compression_ratio": 1.542857142857143, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 2466.2, "end": 2466.74, "word": "In", "probability": 0.27099609375}, {"start": 2466.74, "end": 2466.86, "word": " the", "probability": 0.331298828125}, {"start": 2466.86, "end": 2467.08, "word": " web", "probability": 0.7783203125}, {"start": 2467.08, "end": 2467.74, "word": " specifically,", "probability": 0.380859375}, {"start": 2468.12, "end": 2468.16, "word": " there", "probability": 0.8427734375}, {"start": 2468.16, "end": 2468.22, "word": " are", "probability": 0.84423828125}, {"start": 2468.22, "end": 2468.72, "word": " MVC", "probability": 0.86181640625}, {"start": 2468.72, "end": 2469.3, "word": " frameworks", "probability": 0.8427734375}, {"start": 2469.3, "end": 2469.46, "word": " that", "probability": 0.35986328125}, {"start": 2469.46, "end": 2469.7, "word": " support", "probability": 0.86279296875}, {"start": 2469.7, "end": 2469.84, "word": " it,", "probability": 0.244384765625}, {"start": 2470.22, "end": 2470.34, "word": " such", "probability": 0.450439453125}, {"start": 2470.34, "end": 2470.64, "word": " as", "probability": 0.9775390625}, {"start": 2470.64, "end": 2471.04, "word": " Laravel,", "probability": 0.80615234375}, {"start": 2471.14, "end": 2471.44, "word": " Ruby", "probability": 0.82666015625}, {"start": 2471.44, "end": 2471.6, "word": " on", "probability": 0.77001953125}, {"start": 2471.6, "end": 2471.92, "word": " Rails,", "probability": 0.927734375}, {"start": 2472.04, "end": 2472.06, "word": " and", "probability": 0.58740234375}, {"start": 2472.06, "end": 2472.54, "word": " Spring.", "probability": 0.54833984375}, {"start": 2473.3, "end": 2473.54, "word": " In", "probability": 0.3818359375}, {"start": 2473.54, "end": 2474.0, "word": " Laravel,", "probability": 0.92529296875}, {"start": 2474.14, "end": 2474.14, "word": " it", "probability": 0.338134765625}, {"start": 2474.14, "end": 2474.94, "word": " divides", "probability": 0.185546875}, {"start": 2474.94, "end": 2475.22, "word": " the", "probability": 0.751953125}, {"start": 2475.22, "end": 2475.5, "word": " project", "probability": 0.8779296875}, {"start": 2475.5, "end": 2475.68, "word": " into", "probability": 0.78076171875}, {"start": 2475.68, "end": 2476.06, "word": " three", "probability": 0.5}, {"start": 2476.06, "end": 2476.52, "word": " parts,", "probability": 0.8017578125}, {"start": 2476.94, "end": 2477.14, "word": " model,", "probability": 0.6279296875}, {"start": 2477.26, "end": 2477.4, "word": " view,", "probability": 0.91162109375}, {"start": 2477.48, "end": 2477.7, "word": " and", "probability": 0.62060546875}, {"start": 2477.7, "end": 2477.7, "word": " controller.", "probability": 0.642578125}, {"start": 2477.78, "end": 2478.08, "word": " Design", "probability": 0.57275390625}, {"start": 2478.08, "end": 2478.36, "word": " your", "probability": 0.47021484375}, {"start": 2478.36, "end": 2478.62, "word": " model", "probability": 0.7548828125}, {"start": 2478.62, "end": 2478.86, "word": " here,", "probability": 0.65869140625}, {"start": 2479.24, "end": 2479.58, "word": " design", "probability": 0.6123046875}, {"start": 2479.58, "end": 2479.8, "word": " the", "probability": 0.541015625}, {"start": 2479.8, "end": 2480.12, "word": " view", "probability": 0.875}, {"start": 2480.12, "end": 2480.18, "word": " here,", "probability": 0.751953125}, {"start": 2480.24, "end": 2480.56, "word": " and", "probability": 0.90625}, {"start": 2480.56, "end": 2480.88, "word": " design", "probability": 0.8291015625}, {"start": 2480.88, "end": 2481.82, "word": " the", "probability": 0.869140625}, {"start": 2481.82, "end": 2482.28, "word": " controller", "probability": 0.83740234375}, {"start": 2482.28, "end": 2482.28, "word": " here.", "probability": 0.7734375}], "temperature": 1.0}, {"id": 102, "seek": 250161, "start": 2486.21, "end": 2501.61, "text": "For example, in these frameworks, the model is typically represented by database tables or object-relational mapping or ORM frameworks. Object-relational mapping frameworks are tables that are object-oriented and deal with each table.", "tokens": [12587, 1365, 11, 294, 613, 29834, 11, 264, 2316, 307, 5850, 10379, 538, 8149, 8020, 420, 2657, 12, 4419, 1478, 18350, 420, 19654, 44, 29834, 13, 24753, 12, 4419, 1478, 18350, 29834, 366, 8020, 300, 366, 2657, 12, 27414, 293, 2028, 365, 1184, 3199, 13], "avg_logprob": -0.3133491847826087, "compression_ratio": 1.6027397260273972, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2486.21, "end": 2486.45, "word": "For", "probability": 0.4140625}, {"start": 2486.45, "end": 2486.69, "word": " example,", "probability": 0.8984375}, {"start": 2486.77, "end": 2486.85, "word": " in", "probability": 0.85693359375}, {"start": 2486.85, "end": 2487.09, "word": " these", "probability": 0.79931640625}, {"start": 2487.09, "end": 2487.61, "word": " frameworks,", "probability": 0.8896484375}, {"start": 2487.79, "end": 2487.93, "word": " the", "probability": 0.904296875}, {"start": 2487.93, "end": 2488.13, "word": " model", "probability": 0.9404296875}, {"start": 2488.13, "end": 2488.35, "word": " is", "probability": 0.95068359375}, {"start": 2488.35, "end": 2488.63, "word": " typically", "probability": 0.90185546875}, {"start": 2488.63, "end": 2489.17, "word": " represented", "probability": 0.80078125}, {"start": 2489.17, "end": 2489.43, "word": " by", "probability": 0.97314453125}, {"start": 2489.43, "end": 2489.87, "word": " database", "probability": 0.9052734375}, {"start": 2489.87, "end": 2490.23, "word": " tables", "probability": 0.80517578125}, {"start": 2490.23, "end": 2490.53, "word": " or", "probability": 0.880859375}, {"start": 2490.53, "end": 2490.99, "word": " object", "probability": 0.85107421875}, {"start": 2490.99, "end": 2491.53, "word": "-relational", "probability": 0.8699544270833334}, {"start": 2491.53, "end": 2491.93, "word": " mapping", "probability": 0.91845703125}, {"start": 2491.93, "end": 2492.15, "word": " or", "probability": 0.1708984375}, {"start": 2492.15, "end": 2493.25, "word": " ORM", "probability": 0.944091796875}, {"start": 2493.25, "end": 2493.99, "word": " frameworks.", "probability": 0.794921875}, {"start": 2494.35, "end": 2494.65, "word": " Object", "probability": 0.43359375}, {"start": 2494.65, "end": 2496.07, "word": "-relational", "probability": 0.8274739583333334}, {"start": 2496.07, "end": 2496.39, "word": " mapping", "probability": 0.931640625}, {"start": 2496.39, "end": 2497.01, "word": " frameworks", "probability": 0.77099609375}, {"start": 2497.01, "end": 2497.83, "word": " are", "probability": 0.7255859375}, {"start": 2497.83, "end": 2498.39, "word": " tables", "probability": 0.61279296875}, {"start": 2498.39, "end": 2498.59, "word": " that", "probability": 0.403076171875}, {"start": 2498.59, "end": 2498.59, "word": " are", "probability": 0.677734375}, {"start": 2498.59, "end": 2500.03, "word": " object", "probability": 0.72216796875}, {"start": 2500.03, "end": 2500.57, "word": "-oriented", "probability": 0.844970703125}, {"start": 2500.57, "end": 2500.69, "word": " and", "probability": 0.62109375}, {"start": 2500.69, "end": 2500.95, "word": " deal", "probability": 0.1832275390625}, {"start": 2500.95, "end": 2501.11, "word": " with", "probability": 0.90478515625}, {"start": 2501.11, "end": 2501.29, "word": " each", "probability": 0.77880859375}, {"start": 2501.29, "end": 2501.61, "word": " table.", "probability": 0.74267578125}], "temperature": 1.0}, {"id": 103, "seek": 252959, "start": 2502.41, "end": 2529.59, "text": " Like the GPA in Swing or Spring in Java The view is rendered using templating engines like Blade, ERP and Thymeleaf The controller is implemented as a class that handles incoming requests Each controller is connected to a specific URL that receives a request that is directed to the model that receives the data and then directed to the view to update the view", "tokens": [1743, 264, 26039, 32, 294, 3926, 278, 420, 14013, 294, 10745, 440, 1910, 307, 28748, 1228, 9100, 990, 12982, 411, 32230, 11, 14929, 47, 293, 40010, 1398, 306, 2792, 440, 10561, 307, 12270, 382, 257, 1508, 300, 18722, 22341, 12475, 6947, 10561, 307, 4582, 281, 257, 2685, 12905, 300, 20717, 257, 5308, 300, 307, 12898, 281, 264, 2316, 300, 20717, 264, 1412, 293, 550, 12898, 281, 264, 1910, 281, 5623, 264, 1910], "avg_logprob": -0.47517124267473615, "compression_ratio": 1.7109004739336493, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 2502.4100000000003, "end": 2503.07, "word": " Like", "probability": 0.13525390625}, {"start": 2503.07, "end": 2503.23, "word": " the", "probability": 0.414306640625}, {"start": 2503.23, "end": 2503.61, "word": " GPA", "probability": 0.49951171875}, {"start": 2503.61, "end": 2504.05, "word": " in", "probability": 0.409423828125}, {"start": 2504.05, "end": 2505.89, "word": " Swing", "probability": 0.60455322265625}, {"start": 2505.89, "end": 2506.73, "word": " or", "probability": 0.2178955078125}, {"start": 2506.73, "end": 2507.17, "word": " Spring", "probability": 0.55126953125}, {"start": 2507.17, "end": 2507.33, "word": " in", "probability": 0.59521484375}, {"start": 2507.33, "end": 2507.65, "word": " Java", "probability": 0.85498046875}, {"start": 2507.65, "end": 2508.51, "word": " The", "probability": 0.63134765625}, {"start": 2508.51, "end": 2508.75, "word": " view", "probability": 0.79248046875}, {"start": 2508.75, "end": 2508.97, "word": " is", "probability": 0.939453125}, {"start": 2508.97, "end": 2509.31, "word": " rendered", "probability": 0.85693359375}, {"start": 2509.31, "end": 2509.77, "word": " using", "probability": 0.892578125}, {"start": 2509.77, "end": 2510.41, "word": " templating", "probability": 0.957763671875}, {"start": 2510.41, "end": 2510.87, "word": " engines", "probability": 0.8759765625}, {"start": 2510.87, "end": 2511.15, "word": " like", "probability": 0.9150390625}, {"start": 2511.15, "end": 2511.65, "word": " Blade,", "probability": 0.61572265625}, {"start": 2512.55, "end": 2513.91, "word": " ERP", "probability": 0.71240234375}, {"start": 2513.91, "end": 2514.33, "word": " and", "probability": 0.68798828125}, {"start": 2514.33, "end": 2515.41, "word": " Thymeleaf", "probability": 0.6171875}, {"start": 2515.41, "end": 2516.11, "word": " The", "probability": 0.779296875}, {"start": 2516.11, "end": 2516.49, "word": " controller", "probability": 0.7724609375}, {"start": 2516.49, "end": 2516.75, "word": " is", "probability": 0.9453125}, {"start": 2516.75, "end": 2517.19, "word": " implemented", "probability": 0.81982421875}, {"start": 2517.19, "end": 2517.47, "word": " as", "probability": 0.96484375}, {"start": 2517.47, "end": 2517.57, "word": " a", "probability": 0.9931640625}, {"start": 2517.57, "end": 2517.93, "word": " class", "probability": 0.96484375}, {"start": 2517.93, "end": 2518.15, "word": " that", "probability": 0.92529296875}, {"start": 2518.15, "end": 2518.55, "word": " handles", "probability": 0.8544921875}, {"start": 2518.55, "end": 2518.95, "word": " incoming", "probability": 0.91357421875}, {"start": 2518.95, "end": 2519.39, "word": " requests", "probability": 0.783203125}, {"start": 2519.39, "end": 2519.67, "word": " Each", "probability": 0.3896484375}, {"start": 2519.67, "end": 2520.11, "word": " controller", "probability": 0.681640625}, {"start": 2520.11, "end": 2520.25, "word": " is", "probability": 0.73681640625}, {"start": 2520.25, "end": 2520.45, "word": " connected", "probability": 0.368896484375}, {"start": 2520.45, "end": 2520.63, "word": " to", "probability": 0.75}, {"start": 2520.63, "end": 2520.67, "word": " a", "probability": 0.9091796875}, {"start": 2520.67, "end": 2521.17, "word": " specific", "probability": 0.454833984375}, {"start": 2521.17, "end": 2521.17, "word": " URL", "probability": 0.677734375}, {"start": 2521.17, "end": 2522.09, "word": " that", "probability": 0.362060546875}, {"start": 2522.09, "end": 2522.33, "word": " receives", "probability": 0.4443359375}, {"start": 2522.33, "end": 2522.49, "word": " a", "probability": 0.794921875}, {"start": 2522.49, "end": 2522.93, "word": " request", "probability": 0.93017578125}, {"start": 2522.93, "end": 2523.45, "word": " that", "probability": 0.10614013671875}, {"start": 2523.45, "end": 2523.47, "word": " is", "probability": 0.66259765625}, {"start": 2523.47, "end": 2523.69, "word": " directed", "probability": 0.316650390625}, {"start": 2523.69, "end": 2523.83, "word": " to", "probability": 0.8916015625}, {"start": 2523.83, "end": 2523.93, "word": " the", "probability": 0.8369140625}, {"start": 2523.93, "end": 2524.21, "word": " model", "probability": 0.91015625}, {"start": 2524.21, "end": 2525.19, "word": " that", "probability": 0.36962890625}, {"start": 2525.19, "end": 2525.33, "word": " receives", "probability": 0.343994140625}, {"start": 2525.33, "end": 2525.49, "word": " the", "probability": 0.7255859375}, {"start": 2525.49, "end": 2525.73, "word": " data", "probability": 0.751953125}, {"start": 2525.73, "end": 2526.03, "word": " and", "probability": 0.64794921875}, {"start": 2526.03, "end": 2526.25, "word": " then", "probability": 0.490234375}, {"start": 2526.25, "end": 2526.49, "word": " directed", "probability": 0.460205078125}, {"start": 2526.49, "end": 2526.63, "word": " to", "probability": 0.9287109375}, {"start": 2526.63, "end": 2526.77, "word": " the", "probability": 0.87548828125}, {"start": 2526.77, "end": 2526.93, "word": " view", "probability": 0.80419921875}, {"start": 2526.93, "end": 2527.19, "word": " to", "probability": 0.50146484375}, {"start": 2527.19, "end": 2527.55, "word": " update", "probability": 0.82275390625}, {"start": 2527.55, "end": 2529.13, "word": " the", "probability": 0.7041015625}, {"start": 2529.13, "end": 2529.59, "word": " view", "probability": 0.8330078125}], "temperature": 1.0}, {"id": 104, "seek": 254114, "start": 2531.32, "end": 2541.14, "text": "Because this is related to the MVC controller. And as I said, I gave you the basics to build the code correctly.", "tokens": [21831, 341, 307, 4077, 281, 264, 17663, 34, 10561, 13, 400, 382, 286, 848, 11, 286, 2729, 291, 264, 14688, 281, 1322, 264, 3089, 8944, 13], "avg_logprob": -0.5662615961498685, "compression_ratio": 1.1313131313131313, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2531.32, "end": 2531.6, "word": "Because", "probability": 0.2261962890625}, {"start": 2531.6, "end": 2531.8, "word": " this", "probability": 0.52001953125}, {"start": 2531.8, "end": 2532.24, "word": " is", "probability": 0.71240234375}, {"start": 2532.24, "end": 2532.54, "word": " related", "probability": 0.155517578125}, {"start": 2532.54, "end": 2533.14, "word": " to", "probability": 0.94677734375}, {"start": 2533.14, "end": 2533.24, "word": " the", "probability": 0.458984375}, {"start": 2533.24, "end": 2533.84, "word": " MVC", "probability": 0.805419921875}, {"start": 2533.84, "end": 2534.92, "word": " controller.", "probability": 0.52001953125}, {"start": 2535.06, "end": 2535.42, "word": " And", "probability": 0.27587890625}, {"start": 2535.42, "end": 2535.5, "word": " as", "probability": 0.58251953125}, {"start": 2535.5, "end": 2535.68, "word": " I", "probability": 0.921875}, {"start": 2535.68, "end": 2535.86, "word": " said,", "probability": 0.705078125}, {"start": 2536.66, "end": 2537.6, "word": " I", "probability": 0.61865234375}, {"start": 2537.6, "end": 2537.9, "word": " gave", "probability": 0.7197265625}, {"start": 2537.9, "end": 2538.1, "word": " you", "probability": 0.93408203125}, {"start": 2538.1, "end": 2538.18, "word": " the", "probability": 0.7900390625}, {"start": 2538.18, "end": 2538.64, "word": " basics", "probability": 0.52880859375}, {"start": 2538.64, "end": 2539.84, "word": " to", "probability": 0.65966796875}, {"start": 2539.84, "end": 2540.08, "word": " build", "probability": 0.572265625}, {"start": 2540.08, "end": 2540.28, "word": " the", "probability": 0.654296875}, {"start": 2540.28, "end": 2540.56, "word": " code", "probability": 0.61962890625}, {"start": 2540.56, "end": 2541.14, "word": " correctly.", "probability": 0.5947265625}], "temperature": 1.0}, {"id": 105, "seek": 256744, "start": 2541.94, "end": 2567.44, "text": " Okay? I don't want to waste your time on my theory and say that MVC will separate this from that. No, I taught you how to apply this theory practically through all the design patterns that we studied previously. Now, in the remaining time, let's talk a little bit about architectural patterns. So far, we have focused on MVC, which is what you asked for. Because there are also", "tokens": [1033, 30, 286, 500, 380, 528, 281, 5964, 428, 565, 322, 452, 5261, 293, 584, 300, 17663, 34, 486, 4994, 341, 490, 300, 13, 883, 11, 286, 5928, 291, 577, 281, 3079, 341, 5261, 15667, 807, 439, 264, 1715, 8294, 300, 321, 9454, 8046, 13, 823, 11, 294, 264, 8877, 565, 11, 718, 311, 751, 257, 707, 857, 466, 26621, 8294, 13, 407, 1400, 11, 321, 362, 5178, 322, 17663, 34, 11, 597, 307, 437, 291, 2351, 337, 13, 1436, 456, 366, 611], "avg_logprob": -0.5040922902879261, "compression_ratio": 1.5303643724696356, "no_speech_prob": 1.1861324310302734e-05, "words": [{"start": 2541.94, "end": 2542.38, "word": " Okay?", "probability": 0.1103515625}, {"start": 2542.72, "end": 2542.96, "word": " I", "probability": 0.564453125}, {"start": 2542.96, "end": 2542.98, "word": " don't", "probability": 0.7587890625}, {"start": 2542.98, "end": 2543.14, "word": " want", "probability": 0.84033203125}, {"start": 2543.14, "end": 2543.2, "word": " to", "probability": 0.95458984375}, {"start": 2543.2, "end": 2543.38, "word": " waste", "probability": 0.8017578125}, {"start": 2543.38, "end": 2543.46, "word": " your", "probability": 0.7998046875}, {"start": 2543.46, "end": 2543.66, "word": " time", "probability": 0.88330078125}, {"start": 2543.66, "end": 2543.84, "word": " on", "probability": 0.27587890625}, {"start": 2543.84, "end": 2544.06, "word": " my", "probability": 0.37744140625}, {"start": 2544.06, "end": 2544.32, "word": " theory", "probability": 0.4140625}, {"start": 2544.32, "end": 2544.46, "word": " and", "probability": 0.41552734375}, {"start": 2544.46, "end": 2544.5, "word": " say", "probability": 0.0787353515625}, {"start": 2544.5, "end": 2544.52, "word": " that", "probability": 0.4267578125}, {"start": 2544.52, "end": 2544.92, "word": " MVC", "probability": 0.72216796875}, {"start": 2544.92, "end": 2545.14, "word": " will", "probability": 0.1964111328125}, {"start": 2545.14, "end": 2545.42, "word": " separate", "probability": 0.57080078125}, {"start": 2545.42, "end": 2545.7, "word": " this", "probability": 0.36083984375}, {"start": 2545.7, "end": 2545.84, "word": " from", "probability": 0.5478515625}, {"start": 2545.84, "end": 2546.08, "word": " that.", "probability": 0.61767578125}, {"start": 2546.52, "end": 2546.8, "word": " No,", "probability": 0.8115234375}, {"start": 2546.88, "end": 2547.02, "word": " I", "probability": 0.95751953125}, {"start": 2547.02, "end": 2547.24, "word": " taught", "probability": 0.5771484375}, {"start": 2547.24, "end": 2547.42, "word": " you", "probability": 0.953125}, {"start": 2547.42, "end": 2547.54, "word": " how", "probability": 0.900390625}, {"start": 2547.54, "end": 2547.66, "word": " to", "probability": 0.939453125}, {"start": 2547.66, "end": 2547.94, "word": " apply", "probability": 0.78564453125}, {"start": 2547.94, "end": 2548.12, "word": " this", "probability": 0.499755859375}, {"start": 2548.12, "end": 2548.66, "word": " theory", "probability": 0.20556640625}, {"start": 2548.66, "end": 2549.24, "word": " practically", "probability": 0.4814453125}, {"start": 2549.24, "end": 2549.98, "word": " through", "probability": 0.70361328125}, {"start": 2549.98, "end": 2550.42, "word": " all", "probability": 0.8837890625}, {"start": 2550.42, "end": 2550.48, "word": " the", "probability": 0.70556640625}, {"start": 2550.48, "end": 2550.78, "word": " design", "probability": 0.7734375}, {"start": 2550.78, "end": 2551.26, "word": " patterns", "probability": 0.876953125}, {"start": 2551.26, "end": 2551.84, "word": " that", "probability": 0.7333984375}, {"start": 2551.84, "end": 2552.14, "word": " we", "probability": 0.94091796875}, {"start": 2552.14, "end": 2552.66, "word": " studied", "probability": 0.6796875}, {"start": 2552.66, "end": 2554.16, "word": " previously.", "probability": 0.5244140625}, {"start": 2554.98, "end": 2555.42, "word": " Now,", "probability": 0.869140625}, {"start": 2555.58, "end": 2555.78, "word": " in", "probability": 0.4453125}, {"start": 2555.78, "end": 2555.82, "word": " the", "probability": 0.72265625}, {"start": 2555.82, "end": 2556.36, "word": " remaining", "probability": 0.88818359375}, {"start": 2556.36, "end": 2556.38, "word": " time,", "probability": 0.876953125}, {"start": 2556.46, "end": 2556.58, "word": " let's", "probability": 0.71240234375}, {"start": 2556.58, "end": 2556.74, "word": " talk", "probability": 0.80908203125}, {"start": 2556.74, "end": 2556.86, "word": " a", "probability": 0.58203125}, {"start": 2556.86, "end": 2557.04, "word": " little", "probability": 0.63525390625}, {"start": 2557.04, "end": 2558.38, "word": " bit", "probability": 0.409912109375}, {"start": 2558.38, "end": 2558.6, "word": " about", "probability": 0.83056640625}, {"start": 2558.6, "end": 2561.96, "word": " architectural", "probability": 0.6123046875}, {"start": 2561.96, "end": 2562.68, "word": " patterns.", "probability": 0.90478515625}, {"start": 2562.98, "end": 2563.08, "word": " So", "probability": 0.197998046875}, {"start": 2563.08, "end": 2563.66, "word": " far,", "probability": 0.79833984375}, {"start": 2563.84, "end": 2563.84, "word": " we", "probability": 0.939453125}, {"start": 2563.84, "end": 2563.88, "word": " have", "probability": 0.35498046875}, {"start": 2563.88, "end": 2564.14, "word": " focused", "probability": 0.74951171875}, {"start": 2564.14, "end": 2564.36, "word": " on", "probability": 0.9228515625}, {"start": 2564.36, "end": 2564.86, "word": " MVC,", "probability": 0.7381591796875}, {"start": 2564.92, "end": 2565.04, "word": " which", "probability": 0.68359375}, {"start": 2565.04, "end": 2565.1, "word": " is", "probability": 0.7958984375}, {"start": 2565.1, "end": 2565.22, "word": " what", "probability": 0.6884765625}, {"start": 2565.22, "end": 2565.46, "word": " you", "probability": 0.7783203125}, {"start": 2565.46, "end": 2565.46, "word": " asked", "probability": 0.221435546875}, {"start": 2565.46, "end": 2565.54, "word": " for.", "probability": 0.7705078125}, {"start": 2566.46, "end": 2566.76, "word": " Because", "probability": 0.491455078125}, {"start": 2566.76, "end": 2567.0, "word": " there", "probability": 0.80322265625}, {"start": 2567.0, "end": 2567.08, "word": " are", "probability": 0.456298828125}, {"start": 2567.08, "end": 2567.44, "word": " also", "probability": 0.8232421875}], "temperature": 1.0}, {"id": 106, "seek": 259546, "start": 2568.31, "end": 2595.47, "text": "Now Web Services, which is sometimes called Service-Oriented Architecture. It is also related to a topic called Micro-Services. Now Web Services is not a design or architecture different from MVC. Again, we said that MVC, this model, is responsible for the data. Where can the data come from? It can come from a database located locally on the server. And the model can request the data", "tokens": [13267, 9573, 12124, 11, 597, 307, 2171, 1219, 9561, 12, 46, 470, 6003, 43049, 13, 467, 307, 611, 4077, 281, 257, 4829, 1219, 25642, 12, 50, 47480, 13, 823, 9573, 12124, 307, 406, 257, 1715, 420, 9482, 819, 490, 17663, 34, 13, 3764, 11, 321, 848, 300, 17663, 34, 11, 341, 2316, 11, 307, 6250, 337, 264, 1412, 13, 2305, 393, 264, 1412, 808, 490, 30, 467, 393, 808, 490, 257, 8149, 6870, 16143, 322, 264, 7154, 13, 400, 264, 2316, 393, 5308, 264, 1412], "avg_logprob": -0.4498546501231748, "compression_ratio": 1.670995670995671, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 2568.31, "end": 2568.65, "word": "Now", "probability": 0.11822509765625}, {"start": 2568.65, "end": 2568.85, "word": " Web", "probability": 0.29296875}, {"start": 2568.85, "end": 2569.37, "word": " Services,", "probability": 0.7138671875}, {"start": 2569.81, "end": 2569.95, "word": " which", "probability": 0.6142578125}, {"start": 2569.95, "end": 2570.09, "word": " is", "probability": 0.5400390625}, {"start": 2570.09, "end": 2570.59, "word": " sometimes", "probability": 0.5810546875}, {"start": 2570.59, "end": 2570.63, "word": " called", "probability": 0.76220703125}, {"start": 2570.63, "end": 2571.21, "word": " Service", "probability": 0.292236328125}, {"start": 2571.21, "end": 2571.85, "word": "-Oriented", "probability": 0.746337890625}, {"start": 2571.85, "end": 2573.15, "word": " Architecture.", "probability": 0.9638671875}, {"start": 2573.71, "end": 2574.17, "word": " It", "probability": 0.31494140625}, {"start": 2574.17, "end": 2574.21, "word": " is", "probability": 0.444580078125}, {"start": 2574.21, "end": 2574.49, "word": " also", "probability": 0.425537109375}, {"start": 2574.49, "end": 2574.49, "word": " related", "probability": 0.771484375}, {"start": 2574.49, "end": 2574.93, "word": " to", "probability": 0.9462890625}, {"start": 2574.93, "end": 2575.03, "word": " a", "probability": 0.314453125}, {"start": 2575.03, "end": 2575.31, "word": " topic", "probability": 0.494140625}, {"start": 2575.31, "end": 2575.55, "word": " called", "probability": 0.8203125}, {"start": 2575.55, "end": 2576.03, "word": " Micro", "probability": 0.402099609375}, {"start": 2576.03, "end": 2577.15, "word": "-Services.", "probability": 0.6865234375}, {"start": 2577.71, "end": 2577.81, "word": " Now", "probability": 0.4033203125}, {"start": 2577.81, "end": 2578.09, "word": " Web", "probability": 0.54443359375}, {"start": 2578.09, "end": 2578.59, "word": " Services", "probability": 0.8076171875}, {"start": 2578.59, "end": 2579.53, "word": " is", "probability": 0.59130859375}, {"start": 2579.53, "end": 2579.67, "word": " not", "probability": 0.90673828125}, {"start": 2579.67, "end": 2579.79, "word": " a", "probability": 0.81640625}, {"start": 2579.79, "end": 2580.13, "word": " design", "probability": 0.65234375}, {"start": 2580.13, "end": 2580.31, "word": " or", "probability": 0.953125}, {"start": 2580.31, "end": 2580.81, "word": " architecture", "probability": 0.80712890625}, {"start": 2580.81, "end": 2581.23, "word": " different", "probability": 0.53515625}, {"start": 2581.23, "end": 2581.47, "word": " from", "probability": 0.81689453125}, {"start": 2581.47, "end": 2581.97, "word": " MVC.", "probability": 0.822021484375}, {"start": 2582.67, "end": 2582.91, "word": " Again,", "probability": 0.236328125}, {"start": 2583.07, "end": 2583.07, "word": " we", "probability": 0.7607421875}, {"start": 2583.07, "end": 2583.29, "word": " said", "probability": 0.5556640625}, {"start": 2583.29, "end": 2583.43, "word": " that", "probability": 0.736328125}, {"start": 2583.43, "end": 2584.01, "word": " MVC,", "probability": 0.774658203125}, {"start": 2584.59, "end": 2584.89, "word": " this", "probability": 0.89501953125}, {"start": 2584.89, "end": 2585.23, "word": " model,", "probability": 0.89453125}, {"start": 2585.71, "end": 2587.59, "word": " is", "probability": 0.8671875}, {"start": 2587.59, "end": 2587.93, "word": " responsible", "probability": 0.8134765625}, {"start": 2587.93, "end": 2588.13, "word": " for", "probability": 0.9287109375}, {"start": 2588.13, "end": 2588.19, "word": " the", "probability": 0.370849609375}, {"start": 2588.19, "end": 2588.43, "word": " data.", "probability": 0.857421875}, {"start": 2588.57, "end": 2589.07, "word": " Where", "probability": 0.27783203125}, {"start": 2589.07, "end": 2589.31, "word": " can", "probability": 0.58935546875}, {"start": 2589.31, "end": 2589.31, "word": " the", "probability": 0.6767578125}, {"start": 2589.31, "end": 2589.31, "word": " data", "probability": 0.91943359375}, {"start": 2589.31, "end": 2589.61, "word": " come", "probability": 0.859375}, {"start": 2589.61, "end": 2589.69, "word": " from?", "probability": 0.86669921875}, {"start": 2590.15, "end": 2590.75, "word": " It", "probability": 0.69677734375}, {"start": 2590.75, "end": 2590.89, "word": " can", "probability": 0.85205078125}, {"start": 2590.89, "end": 2591.05, "word": " come", "probability": 0.87109375}, {"start": 2591.05, "end": 2591.15, "word": " from", "probability": 0.87890625}, {"start": 2591.15, "end": 2591.29, "word": " a", "probability": 0.4814453125}, {"start": 2591.29, "end": 2591.75, "word": " database", "probability": 0.89697265625}, {"start": 2591.75, "end": 2592.23, "word": " located", "probability": 0.1358642578125}, {"start": 2592.23, "end": 2592.67, "word": " locally", "probability": 0.75634765625}, {"start": 2592.67, "end": 2592.83, "word": " on", "probability": 0.9033203125}, {"start": 2592.83, "end": 2592.93, "word": " the", "probability": 0.79931640625}, {"start": 2592.93, "end": 2593.23, "word": " server.", "probability": 0.93310546875}, {"start": 2593.51, "end": 2593.71, "word": " And", "probability": 0.65673828125}, {"start": 2593.71, "end": 2594.11, "word": " the", "probability": 0.84716796875}, {"start": 2594.11, "end": 2594.45, "word": " model", "probability": 0.9423828125}, {"start": 2594.45, "end": 2594.71, "word": " can", "probability": 0.80615234375}, {"start": 2594.71, "end": 2595.03, "word": " request", "probability": 0.517578125}, {"start": 2595.03, "end": 2595.17, "word": " the", "probability": 0.69140625}, {"start": 2595.17, "end": 2595.47, "word": " data", "probability": 0.91845703125}], "temperature": 1.0}, {"id": 107, "seek": 262703, "start": 2598.33, "end": 2627.03, "text": "from the cloud through a web service called API. Okay? It's not that the web service is different from the... It's MVC. But the model now, instead of asking for data from a local database, it asks for data from another server. That's it. From the cloud, from another server. Okay? And actually, Fischer will hardly make any application unless it uses API.", "tokens": [20579, 264, 4588, 807, 257, 3670, 2643, 1219, 9362, 13, 1033, 30, 467, 311, 406, 300, 264, 3670, 2643, 307, 819, 490, 264, 485, 467, 311, 17663, 34, 13, 583, 264, 2316, 586, 11, 2602, 295, 3365, 337, 1412, 490, 257, 2654, 8149, 11, 309, 8962, 337, 1412, 490, 1071, 7154, 13, 663, 311, 309, 13, 3358, 264, 4588, 11, 490, 1071, 7154, 13, 1033, 30, 400, 767, 11, 479, 19674, 486, 13572, 652, 604, 3861, 5969, 309, 4960, 9362, 13], "avg_logprob": -0.5525914357929695, "compression_ratio": 1.6435185185185186, "no_speech_prob": 1.7285346984863281e-06, "words": [{"start": 2598.33, "end": 2598.57, "word": "from", "probability": 0.06231689453125}, {"start": 2598.57, "end": 2598.69, "word": " the", "probability": 0.72802734375}, {"start": 2598.69, "end": 2599.07, "word": " cloud", "probability": 0.845703125}, {"start": 2599.07, "end": 2599.63, "word": " through", "probability": 0.40625}, {"start": 2599.63, "end": 2600.27, "word": " a", "probability": 0.461669921875}, {"start": 2600.27, "end": 2600.39, "word": " web", "probability": 0.7958984375}, {"start": 2600.39, "end": 2600.87, "word": " service", "probability": 0.8115234375}, {"start": 2600.87, "end": 2601.07, "word": " called", "probability": 0.2066650390625}, {"start": 2601.07, "end": 2601.47, "word": " API.", "probability": 0.72509765625}, {"start": 2603.15, "end": 2603.65, "word": " Okay?", "probability": 0.28515625}, {"start": 2603.89, "end": 2604.35, "word": " It's", "probability": 0.44970703125}, {"start": 2604.35, "end": 2604.43, "word": " not", "probability": 0.9326171875}, {"start": 2604.43, "end": 2604.67, "word": " that", "probability": 0.60009765625}, {"start": 2604.67, "end": 2604.83, "word": " the", "probability": 0.442138671875}, {"start": 2604.83, "end": 2605.01, "word": " web", "probability": 0.82763671875}, {"start": 2605.01, "end": 2605.39, "word": " service", "probability": 0.85009765625}, {"start": 2605.39, "end": 2605.51, "word": " is", "probability": 0.81982421875}, {"start": 2605.51, "end": 2606.01, "word": " different", "probability": 0.44384765625}, {"start": 2606.01, "end": 2606.27, "word": " from", "probability": 0.55810546875}, {"start": 2606.27, "end": 2607.37, "word": " the...", "probability": 0.315185546875}, {"start": 2607.37, "end": 2608.03, "word": " It's", "probability": 0.63134765625}, {"start": 2608.03, "end": 2608.51, "word": " MVC.", "probability": 0.6898193359375}, {"start": 2608.57, "end": 2608.73, "word": " But", "probability": 0.7763671875}, {"start": 2608.73, "end": 2608.87, "word": " the", "probability": 0.52734375}, {"start": 2608.87, "end": 2609.13, "word": " model", "probability": 0.8046875}, {"start": 2609.13, "end": 2609.51, "word": " now,", "probability": 0.5341796875}, {"start": 2609.57, "end": 2610.37, "word": " instead", "probability": 0.453857421875}, {"start": 2610.37, "end": 2610.57, "word": " of", "probability": 0.97412109375}, {"start": 2610.57, "end": 2610.81, "word": " asking", "probability": 0.3857421875}, {"start": 2610.81, "end": 2610.87, "word": " for", "probability": 0.74169921875}, {"start": 2610.87, "end": 2610.87, "word": " data", "probability": 0.453857421875}, {"start": 2610.87, "end": 2610.91, "word": " from", "probability": 0.85791015625}, {"start": 2610.91, "end": 2611.01, "word": " a", "probability": 0.46240234375}, {"start": 2611.01, "end": 2611.19, "word": " local", "probability": 0.8408203125}, {"start": 2611.19, "end": 2611.77, "word": " database,", "probability": 0.9599609375}, {"start": 2612.19, "end": 2612.27, "word": " it", "probability": 0.70068359375}, {"start": 2612.27, "end": 2612.49, "word": " asks", "probability": 0.35693359375}, {"start": 2612.49, "end": 2612.67, "word": " for", "probability": 0.826171875}, {"start": 2612.67, "end": 2612.67, "word": " data", "probability": 0.61376953125}, {"start": 2612.67, "end": 2612.69, "word": " from", "probability": 0.87158203125}, {"start": 2612.69, "end": 2612.79, "word": " another", "probability": 0.7998046875}, {"start": 2612.79, "end": 2614.21, "word": " server.", "probability": 0.93798828125}, {"start": 2615.05, "end": 2615.55, "word": " That's", "probability": 0.897216796875}, {"start": 2615.55, "end": 2615.61, "word": " it.", "probability": 0.75634765625}, {"start": 2616.35, "end": 2616.51, "word": " From", "probability": 0.66259765625}, {"start": 2616.51, "end": 2616.65, "word": " the", "probability": 0.87353515625}, {"start": 2616.65, "end": 2617.05, "word": " cloud,", "probability": 0.95849609375}, {"start": 2617.23, "end": 2617.43, "word": " from", "probability": 0.52099609375}, {"start": 2617.43, "end": 2617.61, "word": " another", "probability": 0.81884765625}, {"start": 2617.61, "end": 2618.01, "word": " server.", "probability": 0.947265625}, {"start": 2618.81, "end": 2618.99, "word": " Okay?", "probability": 0.52734375}, {"start": 2619.65, "end": 2620.05, "word": " And", "probability": 0.69677734375}, {"start": 2620.05, "end": 2620.51, "word": " actually,", "probability": 0.317138671875}, {"start": 2622.15, "end": 2624.05, "word": " Fischer", "probability": 0.31512451171875}, {"start": 2624.05, "end": 2624.75, "word": " will", "probability": 0.219482421875}, {"start": 2624.75, "end": 2624.75, "word": " hardly", "probability": 0.265625}, {"start": 2624.75, "end": 2625.29, "word": " make", "probability": 0.52294921875}, {"start": 2625.29, "end": 2625.51, "word": " any", "probability": 0.83837890625}, {"start": 2625.51, "end": 2625.91, "word": " application", "probability": 0.68505859375}, {"start": 2625.91, "end": 2626.11, "word": " unless", "probability": 0.1954345703125}, {"start": 2626.11, "end": 2626.25, "word": " it", "probability": 0.587890625}, {"start": 2626.25, "end": 2626.55, "word": " uses", "probability": 0.456787109375}, {"start": 2626.55, "end": 2627.03, "word": " API.", "probability": 0.54638671875}], "temperature": 1.0}, {"id": 108, "seek": 265317, "start": 2628.23, "end": 2653.17, "text": " For example, you want to create a shopping application, you want to create a payment process. The payment process needs a connection to the bank's server to make sure of the credits and so on. Okay? Charging. You want to create a service that connects to the existing charging companies. Portals that are used for downloading flight tickets. Actually, this portal connects with 100 websites for 100 airlines and 100 websites for all hotels, thousands of hotels.", "tokens": [1171, 1365, 11, 291, 528, 281, 1884, 257, 8688, 3861, 11, 291, 528, 281, 1884, 257, 10224, 1399, 13, 440, 10224, 1399, 2203, 257, 4984, 281, 264, 3765, 311, 7154, 281, 652, 988, 295, 264, 16816, 293, 370, 322, 13, 1033, 30, 4327, 3249, 13, 509, 528, 281, 1884, 257, 2643, 300, 16967, 281, 264, 6741, 11379, 3431, 13, 6733, 1124, 300, 366, 1143, 337, 32529, 7018, 12628, 13, 5135, 11, 341, 14982, 16967, 365, 2319, 12891, 337, 2319, 37147, 293, 2319, 12891, 337, 439, 22718, 11, 5383, 295, 22718, 13], "avg_logprob": -0.48335597340179526, "compression_ratio": 1.7906976744186047, "no_speech_prob": 2.2649765014648438e-06, "words": [{"start": 2628.23, "end": 2628.69, "word": " For", "probability": 0.57861328125}, {"start": 2628.69, "end": 2629.15, "word": " example,", "probability": 0.88671875}, {"start": 2629.21, "end": 2629.21, "word": " you", "probability": 0.62890625}, {"start": 2629.21, "end": 2629.33, "word": " want", "probability": 0.697265625}, {"start": 2629.33, "end": 2629.39, "word": " to", "probability": 0.9677734375}, {"start": 2629.39, "end": 2629.55, "word": " create", "probability": 0.478515625}, {"start": 2629.55, "end": 2629.65, "word": " a", "probability": 0.87890625}, {"start": 2629.65, "end": 2630.15, "word": " shopping", "probability": 0.436767578125}, {"start": 2630.15, "end": 2630.17, "word": " application,", "probability": 0.437744140625}, {"start": 2630.27, "end": 2630.31, "word": " you", "probability": 0.341796875}, {"start": 2630.31, "end": 2630.45, "word": " want", "probability": 0.483154296875}, {"start": 2630.45, "end": 2630.45, "word": " to", "probability": 0.93798828125}, {"start": 2630.45, "end": 2630.57, "word": " create", "probability": 0.65234375}, {"start": 2630.57, "end": 2630.85, "word": " a", "probability": 0.826171875}, {"start": 2630.85, "end": 2631.11, "word": " payment", "probability": 0.93701171875}, {"start": 2631.11, "end": 2631.11, "word": " process.", "probability": 0.7626953125}, {"start": 2631.69, "end": 2631.85, "word": " The", "probability": 0.54150390625}, {"start": 2631.85, "end": 2631.85, "word": " payment", "probability": 0.97900390625}, {"start": 2631.85, "end": 2632.37, "word": " process", "probability": 0.9267578125}, {"start": 2632.37, "end": 2632.61, "word": " needs", "probability": 0.5927734375}, {"start": 2632.61, "end": 2632.73, "word": " a", "probability": 0.599609375}, {"start": 2632.73, "end": 2633.07, "word": " connection", "probability": 0.8408203125}, {"start": 2633.07, "end": 2633.37, "word": " to", "probability": 0.833984375}, {"start": 2633.37, "end": 2634.33, "word": " the", "probability": 0.84814453125}, {"start": 2634.33, "end": 2634.39, "word": " bank's", "probability": 0.6048583984375}, {"start": 2634.39, "end": 2634.75, "word": " server", "probability": 0.87451171875}, {"start": 2634.75, "end": 2635.41, "word": " to", "probability": 0.64208984375}, {"start": 2635.41, "end": 2635.59, "word": " make", "probability": 0.3193359375}, {"start": 2635.59, "end": 2635.79, "word": " sure", "probability": 0.90771484375}, {"start": 2635.79, "end": 2635.91, "word": " of", "probability": 0.432373046875}, {"start": 2635.91, "end": 2635.97, "word": " the", "probability": 0.36279296875}, {"start": 2635.97, "end": 2636.31, "word": " credits", "probability": 0.32568359375}, {"start": 2636.31, "end": 2636.43, "word": " and", "probability": 0.7041015625}, {"start": 2636.43, "end": 2636.53, "word": " so", "probability": 0.18017578125}, {"start": 2636.53, "end": 2636.93, "word": " on.", "probability": 0.8876953125}, {"start": 2637.47, "end": 2637.51, "word": " Okay?", "probability": 0.18896484375}, {"start": 2639.05, "end": 2639.41, "word": " Charging.", "probability": 0.638427734375}, {"start": 2639.73, "end": 2640.19, "word": " You", "probability": 0.8662109375}, {"start": 2640.19, "end": 2640.35, "word": " want", "probability": 0.71875}, {"start": 2640.35, "end": 2640.45, "word": " to", "probability": 0.96923828125}, {"start": 2640.45, "end": 2640.61, "word": " create", "probability": 0.50537109375}, {"start": 2640.61, "end": 2640.71, "word": " a", "probability": 0.92138671875}, {"start": 2640.71, "end": 2640.91, "word": " service", "probability": 0.896484375}, {"start": 2640.91, "end": 2641.05, "word": " that", "probability": 0.732421875}, {"start": 2641.05, "end": 2641.19, "word": " connects", "probability": 0.53515625}, {"start": 2641.19, "end": 2641.33, "word": " to", "probability": 0.890625}, {"start": 2641.33, "end": 2641.41, "word": " the", "probability": 0.59033203125}, {"start": 2641.41, "end": 2641.85, "word": " existing", "probability": 0.66796875}, {"start": 2641.85, "end": 2642.03, "word": " charging", "probability": 0.90771484375}, {"start": 2642.03, "end": 2642.25, "word": " companies.", "probability": 0.81005859375}, {"start": 2643.23, "end": 2643.69, "word": " Portals", "probability": 0.7890625}, {"start": 2643.69, "end": 2643.79, "word": " that", "probability": 0.43798828125}, {"start": 2643.79, "end": 2643.85, "word": " are", "probability": 0.284423828125}, {"start": 2643.85, "end": 2644.13, "word": " used", "probability": 0.7412109375}, {"start": 2644.13, "end": 2644.33, "word": " for", "probability": 0.31787109375}, {"start": 2644.33, "end": 2644.53, "word": " downloading", "probability": 0.204833984375}, {"start": 2644.53, "end": 2645.17, "word": " flight", "probability": 0.12060546875}, {"start": 2645.17, "end": 2645.29, "word": " tickets.", "probability": 0.7685546875}, {"start": 2646.03, "end": 2646.31, "word": " Actually,", "probability": 0.438720703125}, {"start": 2646.39, "end": 2646.55, "word": " this", "probability": 0.80712890625}, {"start": 2646.55, "end": 2646.87, "word": " portal", "probability": 0.7919921875}, {"start": 2646.87, "end": 2647.51, "word": " connects", "probability": 0.544921875}, {"start": 2647.51, "end": 2648.05, "word": " with", "probability": 0.5673828125}, {"start": 2648.05, "end": 2648.41, "word": " 100", "probability": 0.677734375}, {"start": 2648.41, "end": 2648.73, "word": " websites", "probability": 0.49462890625}, {"start": 2648.73, "end": 2649.15, "word": " for", "probability": 0.465576171875}, {"start": 2649.15, "end": 2649.33, "word": " 100", "probability": 0.79443359375}, {"start": 2649.33, "end": 2649.89, "word": " airlines", "probability": 0.7578125}, {"start": 2649.89, "end": 2650.79, "word": " and", "probability": 0.52783203125}, {"start": 2650.79, "end": 2651.03, "word": " 100", "probability": 0.65087890625}, {"start": 2651.03, "end": 2651.47, "word": " websites", "probability": 0.96142578125}, {"start": 2651.47, "end": 2651.69, "word": " for", "probability": 0.6494140625}, {"start": 2651.69, "end": 2651.97, "word": " all", "probability": 0.8056640625}, {"start": 2651.97, "end": 2652.37, "word": " hotels,", "probability": 0.958984375}, {"start": 2652.51, "end": 2652.77, "word": " thousands", "probability": 0.79638671875}, {"start": 2652.77, "end": 2652.93, "word": " of", "probability": 0.95263671875}, {"start": 2652.93, "end": 2653.17, "word": " hotels.", "probability": 0.966796875}], "temperature": 1.0}, {"id": 109, "seek": 267470, "start": 2656.24, "end": 2674.7, "text": " These are business-to-business applications, which means that the business itself provides a web service to provide services to another business, and so on. The web service is just a way to get data from somewhere far away.", "tokens": [1981, 366, 1606, 12, 1353, 12, 21441, 1324, 5821, 11, 597, 1355, 300, 264, 1606, 2564, 6417, 257, 3670, 2643, 281, 2893, 3328, 281, 1071, 1606, 11, 293, 370, 322, 13, 440, 3670, 2643, 307, 445, 257, 636, 281, 483, 1412, 490, 4079, 1400, 1314, 13], "avg_logprob": -0.526595764971794, "compression_ratio": 1.6, "no_speech_prob": 5.662441253662109e-06, "words": [{"start": 2656.2400000000002, "end": 2656.96, "word": " These", "probability": 0.08282470703125}, {"start": 2656.96, "end": 2657.68, "word": " are", "probability": 0.72509765625}, {"start": 2657.68, "end": 2658.18, "word": " business", "probability": 0.603515625}, {"start": 2658.18, "end": 2658.38, "word": "-to", "probability": 0.60052490234375}, {"start": 2658.38, "end": 2658.78, "word": "-business", "probability": 0.9759114583333334}, {"start": 2658.78, "end": 2660.22, "word": " applications,", "probability": 0.88623046875}, {"start": 2660.64, "end": 2660.78, "word": " which", "probability": 0.1944580078125}, {"start": 2660.78, "end": 2660.78, "word": " means", "probability": 0.783203125}, {"start": 2660.78, "end": 2660.88, "word": " that", "probability": 0.7265625}, {"start": 2660.88, "end": 2660.98, "word": " the", "probability": 0.71240234375}, {"start": 2660.98, "end": 2661.28, "word": " business", "probability": 0.84619140625}, {"start": 2661.28, "end": 2661.64, "word": " itself", "probability": 0.490478515625}, {"start": 2661.64, "end": 2661.9, "word": " provides", "probability": 0.427734375}, {"start": 2661.9, "end": 2662.02, "word": " a", "probability": 0.59423828125}, {"start": 2662.02, "end": 2662.1, "word": " web", "probability": 0.84375}, {"start": 2662.1, "end": 2662.48, "word": " service", "probability": 0.8916015625}, {"start": 2662.48, "end": 2662.68, "word": " to", "probability": 0.8857421875}, {"start": 2662.68, "end": 2663.0, "word": " provide", "probability": 0.40576171875}, {"start": 2663.0, "end": 2663.44, "word": " services", "probability": 0.68505859375}, {"start": 2663.44, "end": 2663.58, "word": " to", "probability": 0.8427734375}, {"start": 2663.58, "end": 2665.02, "word": " another", "probability": 0.72216796875}, {"start": 2665.02, "end": 2665.18, "word": " business,", "probability": 0.86962890625}, {"start": 2665.56, "end": 2666.06, "word": " and", "probability": 0.5078125}, {"start": 2666.06, "end": 2666.24, "word": " so", "probability": 0.90869140625}, {"start": 2666.24, "end": 2666.46, "word": " on.", "probability": 0.89013671875}, {"start": 2667.52, "end": 2668.02, "word": " The", "probability": 0.275146484375}, {"start": 2668.02, "end": 2668.2, "word": " web", "probability": 0.89990234375}, {"start": 2668.2, "end": 2668.56, "word": " service", "probability": 0.87744140625}, {"start": 2668.56, "end": 2668.74, "word": " is", "probability": 0.9140625}, {"start": 2668.74, "end": 2669.2, "word": " just", "probability": 0.41943359375}, {"start": 2669.2, "end": 2670.44, "word": " a", "probability": 0.93359375}, {"start": 2670.44, "end": 2670.76, "word": " way", "probability": 0.85498046875}, {"start": 2670.76, "end": 2671.12, "word": " to", "probability": 0.81494140625}, {"start": 2671.12, "end": 2671.36, "word": " get", "probability": 0.473876953125}, {"start": 2671.36, "end": 2671.76, "word": " data", "probability": 0.6533203125}, {"start": 2671.76, "end": 2672.32, "word": " from", "probability": 0.364013671875}, {"start": 2672.32, "end": 2674.12, "word": " somewhere", "probability": 0.322998046875}, {"start": 2674.12, "end": 2674.36, "word": " far", "probability": 0.69873046875}, {"start": 2674.36, "end": 2674.7, "word": " away.", "probability": 0.64404296875}], "temperature": 1.0}, {"id": 110, "seek": 269696, "start": 2675.48, "end": 2696.96, "text": "Did you find the advantage of the web service that I talked about in the previous lecture? That you get the data and request it and it returns it to you through the HTTP protocol and the data goes to the text request and returns the text to you. Did you find the biggest advantage of web services? That it supports something important, interoperability.", "tokens": [17648, 291, 915, 264, 5002, 295, 264, 3670, 2643, 300, 286, 2825, 466, 294, 264, 3894, 7991, 30, 663, 291, 483, 264, 1412, 293, 5308, 309, 293, 309, 11247, 309, 281, 291, 807, 264, 33283, 10336, 293, 264, 1412, 1709, 281, 264, 2487, 5308, 293, 11247, 264, 2487, 281, 291, 13, 2589, 291, 915, 264, 3880, 5002, 295, 3670, 3328, 30, 663, 309, 9346, 746, 1021, 11, 728, 7192, 2310, 13], "avg_logprob": -0.6137152794334624, "compression_ratio": 1.7303921568627452, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 2675.48, "end": 2675.74, "word": "Did", "probability": 0.2337646484375}, {"start": 2675.74, "end": 2675.92, "word": " you", "probability": 0.96240234375}, {"start": 2675.92, "end": 2675.92, "word": " find", "probability": 0.259033203125}, {"start": 2675.92, "end": 2676.22, "word": " the", "probability": 0.55322265625}, {"start": 2676.22, "end": 2676.22, "word": " advantage", "probability": 0.182861328125}, {"start": 2676.22, "end": 2676.32, "word": " of", "probability": 0.92333984375}, {"start": 2676.32, "end": 2676.36, "word": " the", "probability": 0.44091796875}, {"start": 2676.36, "end": 2676.48, "word": " web", "probability": 0.63916015625}, {"start": 2676.48, "end": 2676.88, "word": " service", "probability": 0.5361328125}, {"start": 2676.88, "end": 2677.62, "word": " that", "probability": 0.354248046875}, {"start": 2677.62, "end": 2677.74, "word": " I", "probability": 0.214111328125}, {"start": 2677.74, "end": 2678.88, "word": " talked", "probability": 0.32861328125}, {"start": 2678.88, "end": 2679.02, "word": " about", "probability": 0.88525390625}, {"start": 2679.02, "end": 2679.04, "word": " in", "probability": 0.71875}, {"start": 2679.04, "end": 2679.1, "word": " the", "probability": 0.76318359375}, {"start": 2679.1, "end": 2679.1, "word": " previous", "probability": 0.460693359375}, {"start": 2679.1, "end": 2679.7, "word": " lecture?", "probability": 0.83447265625}, {"start": 2680.06, "end": 2680.36, "word": " That", "probability": 0.288818359375}, {"start": 2680.36, "end": 2680.58, "word": " you", "probability": 0.85205078125}, {"start": 2680.58, "end": 2680.88, "word": " get", "probability": 0.273681640625}, {"start": 2680.88, "end": 2681.02, "word": " the", "probability": 0.69873046875}, {"start": 2681.02, "end": 2681.34, "word": " data", "probability": 0.72265625}, {"start": 2681.34, "end": 2681.54, "word": " and", "probability": 0.301025390625}, {"start": 2681.54, "end": 2681.8, "word": " request", "probability": 0.390869140625}, {"start": 2681.8, "end": 2682.04, "word": " it", "probability": 0.65283203125}, {"start": 2682.04, "end": 2682.12, "word": " and", "probability": 0.3232421875}, {"start": 2682.12, "end": 2682.22, "word": " it", "probability": 0.30322265625}, {"start": 2682.22, "end": 2682.48, "word": " returns", "probability": 0.377685546875}, {"start": 2682.48, "end": 2682.62, "word": " it", "probability": 0.4052734375}, {"start": 2682.62, "end": 2682.62, "word": " to", "probability": 0.5068359375}, {"start": 2682.62, "end": 2682.74, "word": " you", "probability": 0.95068359375}, {"start": 2682.74, "end": 2683.06, "word": " through", "probability": 0.5859375}, {"start": 2683.06, "end": 2683.3, "word": " the", "probability": 0.7939453125}, {"start": 2683.3, "end": 2683.7, "word": " HTTP", "probability": 0.75732421875}, {"start": 2683.7, "end": 2685.0, "word": " protocol", "probability": 0.89697265625}, {"start": 2685.0, "end": 2685.44, "word": " and", "probability": 0.31884765625}, {"start": 2685.44, "end": 2685.54, "word": " the", "probability": 0.80419921875}, {"start": 2685.54, "end": 2685.78, "word": " data", "probability": 0.87060546875}, {"start": 2685.78, "end": 2686.08, "word": " goes", "probability": 0.521484375}, {"start": 2686.08, "end": 2686.24, "word": " to", "probability": 0.68408203125}, {"start": 2686.24, "end": 2686.36, "word": " the", "probability": 0.505859375}, {"start": 2686.36, "end": 2686.58, "word": " text", "probability": 0.333984375}, {"start": 2686.58, "end": 2687.34, "word": " request", "probability": 0.65234375}, {"start": 2687.34, "end": 2687.54, "word": " and", "probability": 0.7939453125}, {"start": 2687.54, "end": 2687.76, "word": " returns", "probability": 0.42529296875}, {"start": 2687.76, "end": 2687.94, "word": " the", "probability": 0.28662109375}, {"start": 2687.94, "end": 2688.26, "word": " text", "probability": 0.89892578125}, {"start": 2688.26, "end": 2688.5, "word": " to", "probability": 0.461181640625}, {"start": 2688.5, "end": 2688.66, "word": " you.", "probability": 0.9541015625}, {"start": 2689.06, "end": 2689.16, "word": " Did", "probability": 0.86474609375}, {"start": 2689.16, "end": 2689.24, "word": " you", "probability": 0.95751953125}, {"start": 2689.24, "end": 2689.32, "word": " find", "probability": 0.82861328125}, {"start": 2689.32, "end": 2689.48, "word": " the", "probability": 0.84619140625}, {"start": 2689.48, "end": 2690.0, "word": " biggest", "probability": 0.261474609375}, {"start": 2690.0, "end": 2690.06, "word": " advantage", "probability": 0.81201171875}, {"start": 2690.06, "end": 2691.04, "word": " of", "probability": 0.609375}, {"start": 2691.04, "end": 2691.26, "word": " web", "probability": 0.7724609375}, {"start": 2691.26, "end": 2691.78, "word": " services?", "probability": 0.9248046875}, {"start": 2692.18, "end": 2692.4, "word": " That", "probability": 0.54736328125}, {"start": 2692.4, "end": 2692.58, "word": " it", "probability": 0.576171875}, {"start": 2692.58, "end": 2693.04, "word": " supports", "probability": 0.82373046875}, {"start": 2693.04, "end": 2693.96, "word": " something", "probability": 0.58251953125}, {"start": 2693.96, "end": 2694.6, "word": " important,", "probability": 0.6005859375}, {"start": 2694.6, "end": 2696.96, "word": " interoperability.", "probability": 0.73974609375}], "temperature": 1.0}, {"id": 111, "seek": 272891, "start": 2701.25, "end": 2728.91, "text": "this is interoperability what is interoperability when we say that your system is interoperable interoperable means that your service or your system can be linked with another system made in another programming language or existing on another operating system for example, a client may have python asking for data from a service made in java", "tokens": [11176, 307, 728, 7192, 2310, 437, 307, 728, 7192, 2310, 562, 321, 584, 300, 428, 1185, 307, 728, 7192, 712, 728, 7192, 712, 1355, 300, 428, 2643, 420, 428, 1185, 393, 312, 9408, 365, 1071, 1185, 1027, 294, 1071, 9410, 2856, 420, 6741, 322, 1071, 7447, 1185, 337, 1365, 11, 257, 6423, 815, 362, 38797, 3365, 337, 1412, 490, 257, 2643, 1027, 294, 361, 4061], "avg_logprob": -0.4528882535118045, "compression_ratio": 1.9941520467836258, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 2701.25, "end": 2701.55, "word": "this", "probability": 0.17041015625}, {"start": 2701.55, "end": 2701.93, "word": " is", "probability": 0.8115234375}, {"start": 2701.93, "end": 2703.77, "word": " interoperability", "probability": 0.7247721354166666}, {"start": 2703.77, "end": 2704.69, "word": " what", "probability": 0.290283203125}, {"start": 2704.69, "end": 2705.93, "word": " is", "probability": 0.72998046875}, {"start": 2705.93, "end": 2706.81, "word": " interoperability", "probability": 0.8479817708333334}, {"start": 2706.81, "end": 2707.77, "word": " when", "probability": 0.244384765625}, {"start": 2707.77, "end": 2707.97, "word": " we", "probability": 0.75341796875}, {"start": 2707.97, "end": 2708.09, "word": " say", "probability": 0.8759765625}, {"start": 2708.09, "end": 2708.23, "word": " that", "probability": 0.25537109375}, {"start": 2708.23, "end": 2708.35, "word": " your", "probability": 0.59912109375}, {"start": 2708.35, "end": 2708.63, "word": " system", "probability": 0.91064453125}, {"start": 2708.63, "end": 2708.99, "word": " is", "probability": 0.921875}, {"start": 2708.99, "end": 2709.73, "word": " interoperable", "probability": 0.9324544270833334}, {"start": 2709.73, "end": 2711.01, "word": " interoperable", "probability": 0.8411458333333334}, {"start": 2711.01, "end": 2711.51, "word": " means", "probability": 0.89404296875}, {"start": 2711.51, "end": 2712.17, "word": " that", "probability": 0.6162109375}, {"start": 2712.17, "end": 2712.25, "word": " your", "probability": 0.82568359375}, {"start": 2712.25, "end": 2712.61, "word": " service", "probability": 0.56787109375}, {"start": 2712.61, "end": 2713.09, "word": " or", "probability": 0.7587890625}, {"start": 2713.09, "end": 2713.21, "word": " your", "probability": 0.385986328125}, {"start": 2713.21, "end": 2713.85, "word": " system", "probability": 0.93603515625}, {"start": 2713.85, "end": 2715.09, "word": " can", "probability": 0.62548828125}, {"start": 2715.09, "end": 2715.45, "word": " be", "probability": 0.48583984375}, {"start": 2715.45, "end": 2715.61, "word": " linked", "probability": 0.448486328125}, {"start": 2715.61, "end": 2716.27, "word": " with", "probability": 0.487548828125}, {"start": 2716.27, "end": 2716.41, "word": " another", "probability": 0.84228515625}, {"start": 2716.41, "end": 2716.95, "word": " system", "probability": 0.7021484375}, {"start": 2716.95, "end": 2717.21, "word": " made", "probability": 0.347412109375}, {"start": 2717.21, "end": 2717.39, "word": " in", "probability": 0.50732421875}, {"start": 2717.39, "end": 2717.67, "word": " another", "probability": 0.82275390625}, {"start": 2717.67, "end": 2717.91, "word": " programming", "probability": 0.77685546875}, {"start": 2717.91, "end": 2718.11, "word": " language", "probability": 0.82177734375}, {"start": 2718.11, "end": 2719.55, "word": " or", "probability": 0.9033203125}, {"start": 2719.55, "end": 2720.03, "word": " existing", "probability": 0.1009521484375}, {"start": 2720.03, "end": 2720.29, "word": " on", "probability": 0.7236328125}, {"start": 2720.29, "end": 2720.63, "word": " another", "probability": 0.81201171875}, {"start": 2720.63, "end": 2720.99, "word": " operating", "probability": 0.95361328125}, {"start": 2720.99, "end": 2721.45, "word": " system", "probability": 0.9453125}, {"start": 2721.45, "end": 2722.63, "word": " for", "probability": 0.5771484375}, {"start": 2722.63, "end": 2722.97, "word": " example,", "probability": 0.92626953125}, {"start": 2723.21, "end": 2723.47, "word": " a", "probability": 0.322998046875}, {"start": 2723.47, "end": 2723.83, "word": " client", "probability": 0.8046875}, {"start": 2723.83, "end": 2723.99, "word": " may", "probability": 0.2186279296875}, {"start": 2723.99, "end": 2724.31, "word": " have", "probability": 0.6845703125}, {"start": 2724.31, "end": 2724.89, "word": " python", "probability": 0.5087890625}, {"start": 2724.89, "end": 2726.01, "word": " asking", "probability": 0.25537109375}, {"start": 2726.01, "end": 2726.33, "word": " for", "probability": 0.83349609375}, {"start": 2726.33, "end": 2726.61, "word": " data", "probability": 0.7685546875}, {"start": 2726.61, "end": 2727.75, "word": " from", "probability": 0.8115234375}, {"start": 2727.75, "end": 2727.85, "word": " a", "probability": 0.64453125}, {"start": 2727.85, "end": 2728.15, "word": " service", "probability": 0.7958984375}, {"start": 2728.15, "end": 2728.37, "word": " made", "probability": 0.72705078125}, {"start": 2728.37, "end": 2728.55, "word": " in", "probability": 0.83203125}, {"start": 2728.55, "end": 2728.91, "word": " java", "probability": 0.740234375}], "temperature": 1.0}, {"id": 112, "seek": 275635, "start": 2729.53, "end": 2756.35, "text": " there is something that prevents it this is made in language and this is made in language of course, why do they agree with each other? because actually the data that is going and coming is in the form of what? text in any language you deal with the text that is coming but if I send the data as java objects the server must be java and the client must be java but because I send them text and return them text through the HTTP protocol", "tokens": [456, 307, 746, 300, 22367, 309, 341, 307, 1027, 294, 2856, 293, 341, 307, 1027, 294, 2856, 295, 1164, 11, 983, 360, 436, 3986, 365, 1184, 661, 30, 570, 767, 264, 1412, 300, 307, 516, 293, 1348, 307, 294, 264, 1254, 295, 437, 30, 2487, 294, 604, 2856, 291, 2028, 365, 264, 2487, 300, 307, 1348, 457, 498, 286, 2845, 264, 1412, 382, 361, 4061, 6565, 264, 7154, 1633, 312, 361, 4061, 293, 264, 6423, 1633, 312, 361, 4061, 457, 570, 286, 2845, 552, 2487, 293, 2736, 552, 2487, 807, 264, 33283, 10336], "avg_logprob": -0.4694148882272396, "compression_ratio": 1.8595744680851063, "no_speech_prob": 6.377696990966797e-06, "words": [{"start": 2729.53, "end": 2729.73, "word": " there", "probability": 0.140869140625}, {"start": 2729.73, "end": 2729.79, "word": " is", "probability": 0.410888671875}, {"start": 2729.79, "end": 2729.95, "word": " something", "probability": 0.49951171875}, {"start": 2729.95, "end": 2730.23, "word": " that", "probability": 0.354736328125}, {"start": 2730.23, "end": 2730.31, "word": " prevents", "probability": 0.29931640625}, {"start": 2730.31, "end": 2730.47, "word": " it", "probability": 0.26123046875}, {"start": 2730.47, "end": 2731.13, "word": " this", "probability": 0.279052734375}, {"start": 2731.13, "end": 2731.19, "word": " is", "probability": 0.681640625}, {"start": 2731.19, "end": 2731.33, "word": " made", "probability": 0.40087890625}, {"start": 2731.33, "end": 2731.51, "word": " in", "probability": 0.376953125}, {"start": 2731.51, "end": 2731.71, "word": " language", "probability": 0.57666015625}, {"start": 2731.71, "end": 2732.33, "word": " and", "probability": 0.68212890625}, {"start": 2732.33, "end": 2732.47, "word": " this", "probability": 0.69140625}, {"start": 2732.47, "end": 2732.53, "word": " is", "probability": 0.72265625}, {"start": 2732.53, "end": 2732.65, "word": " made", "probability": 0.7783203125}, {"start": 2732.65, "end": 2732.81, "word": " in", "probability": 0.91943359375}, {"start": 2732.81, "end": 2733.03, "word": " language", "probability": 0.849609375}, {"start": 2733.03, "end": 2733.83, "word": " of", "probability": 0.332275390625}, {"start": 2733.83, "end": 2733.89, "word": " course,", "probability": 0.93603515625}, {"start": 2733.99, "end": 2734.21, "word": " why", "probability": 0.87353515625}, {"start": 2734.21, "end": 2734.37, "word": " do", "probability": 0.2041015625}, {"start": 2734.37, "end": 2734.37, "word": " they", "probability": 0.841796875}, {"start": 2734.37, "end": 2734.69, "word": " agree", "probability": 0.423583984375}, {"start": 2734.69, "end": 2734.91, "word": " with", "probability": 0.59228515625}, {"start": 2734.91, "end": 2735.21, "word": " each", "probability": 0.94091796875}, {"start": 2735.21, "end": 2735.21, "word": " other?", "probability": 0.875}, {"start": 2735.59, "end": 2735.87, "word": " because", "probability": 0.80126953125}, {"start": 2735.87, "end": 2736.27, "word": " actually", "probability": 0.36279296875}, {"start": 2736.27, "end": 2736.45, "word": " the", "probability": 0.61083984375}, {"start": 2736.45, "end": 2736.73, "word": " data", "probability": 0.6884765625}, {"start": 2736.73, "end": 2736.91, "word": " that", "probability": 0.63232421875}, {"start": 2736.91, "end": 2736.93, "word": " is", "probability": 0.385009765625}, {"start": 2736.93, "end": 2737.11, "word": " going", "probability": 0.343994140625}, {"start": 2737.11, "end": 2737.27, "word": " and", "probability": 0.7373046875}, {"start": 2737.27, "end": 2737.51, "word": " coming", "probability": 0.666015625}, {"start": 2737.51, "end": 2737.69, "word": " is", "probability": 0.226318359375}, {"start": 2737.69, "end": 2737.69, "word": " in", "probability": 0.336181640625}, {"start": 2737.69, "end": 2737.93, "word": " the", "probability": 0.413330078125}, {"start": 2737.93, "end": 2737.93, "word": " form", "probability": 0.79296875}, {"start": 2737.93, "end": 2738.07, "word": " of", "probability": 0.9521484375}, {"start": 2738.07, "end": 2738.15, "word": " what?", "probability": 0.48046875}, {"start": 2739.01, "end": 2739.45, "word": " text", "probability": 0.79248046875}, {"start": 2739.45, "end": 2740.99, "word": " in", "probability": 0.2158203125}, {"start": 2740.99, "end": 2741.15, "word": " any", "probability": 0.81201171875}, {"start": 2741.15, "end": 2741.91, "word": " language", "probability": 0.78662109375}, {"start": 2741.91, "end": 2742.57, "word": " you", "probability": 0.44140625}, {"start": 2742.57, "end": 2742.91, "word": " deal", "probability": 0.285400390625}, {"start": 2742.91, "end": 2743.09, "word": " with", "probability": 0.9013671875}, {"start": 2743.09, "end": 2743.19, "word": " the", "probability": 0.822265625}, {"start": 2743.19, "end": 2743.39, "word": " text", "probability": 0.66015625}, {"start": 2743.39, "end": 2743.53, "word": " that", "probability": 0.68212890625}, {"start": 2743.53, "end": 2743.53, "word": " is", "probability": 0.68115234375}, {"start": 2743.53, "end": 2743.67, "word": " coming", "probability": 0.822265625}, {"start": 2743.67, "end": 2744.85, "word": " but", "probability": 0.69921875}, {"start": 2744.85, "end": 2745.05, "word": " if", "probability": 0.92822265625}, {"start": 2745.05, "end": 2745.23, "word": " I", "probability": 0.90185546875}, {"start": 2745.23, "end": 2745.47, "word": " send", "probability": 0.75390625}, {"start": 2745.47, "end": 2745.59, "word": " the", "probability": 0.53955078125}, {"start": 2745.59, "end": 2745.87, "word": " data", "probability": 0.904296875}, {"start": 2745.87, "end": 2746.07, "word": " as", "probability": 0.87646484375}, {"start": 2746.07, "end": 2746.33, "word": " java", "probability": 0.659423828125}, {"start": 2746.33, "end": 2746.81, "word": " objects", "probability": 0.8994140625}, {"start": 2746.81, "end": 2748.53, "word": " the", "probability": 0.685546875}, {"start": 2748.53, "end": 2748.85, "word": " server", "probability": 0.89013671875}, {"start": 2748.85, "end": 2749.05, "word": " must", "probability": 0.46435546875}, {"start": 2749.05, "end": 2749.27, "word": " be", "probability": 0.93798828125}, {"start": 2749.27, "end": 2749.59, "word": " java", "probability": 0.89599609375}, {"start": 2749.59, "end": 2749.85, "word": " and", "probability": 0.87548828125}, {"start": 2749.85, "end": 2749.97, "word": " the", "probability": 0.87841796875}, {"start": 2749.97, "end": 2750.19, "word": " client", "probability": 0.9306640625}, {"start": 2750.19, "end": 2750.43, "word": " must", "probability": 0.8203125}, {"start": 2750.43, "end": 2751.01, "word": " be", "probability": 0.9189453125}, {"start": 2751.01, "end": 2751.55, "word": " java", "probability": 0.970703125}, {"start": 2751.55, "end": 2752.33, "word": " but", "probability": 0.68115234375}, {"start": 2752.33, "end": 2752.93, "word": " because", "probability": 0.61181640625}, {"start": 2752.93, "end": 2753.11, "word": " I", "probability": 0.98046875}, {"start": 2753.11, "end": 2753.37, "word": " send", "probability": 0.76416015625}, {"start": 2753.37, "end": 2753.51, "word": " them", "probability": 0.76904296875}, {"start": 2753.51, "end": 2753.83, "word": " text", "probability": 0.91943359375}, {"start": 2753.83, "end": 2754.05, "word": " and", "probability": 0.85986328125}, {"start": 2754.05, "end": 2754.29, "word": " return", "probability": 0.59423828125}, {"start": 2754.29, "end": 2754.51, "word": " them", "probability": 0.40234375}, {"start": 2754.51, "end": 2754.83, "word": " text", "probability": 0.8740234375}, {"start": 2754.83, "end": 2755.19, "word": " through", "probability": 0.7998046875}, {"start": 2755.19, "end": 2755.37, "word": " the", "probability": 0.7548828125}, {"start": 2755.37, "end": 2755.67, "word": " HTTP", "probability": 0.6640625}, {"start": 2755.67, "end": 2756.35, "word": " protocol", "probability": 0.93896484375}], "temperature": 1.0}, {"id": 113, "seek": 278031, "start": 2757.39, "end": 2780.31, "text": " Yes, this one can work with programming languages and this one can work with programming languages. And this is how I connect systems made up of different operating systems with different programming languages. This one can run Python, this one can run C Sharp. Okay, each one runs a web service, each one runs a different language, but I connect them through a web service. And the data that is going and coming is XML and JSON.", "tokens": [1079, 11, 341, 472, 393, 589, 365, 9410, 8650, 293, 341, 472, 393, 589, 365, 9410, 8650, 13, 400, 341, 307, 577, 286, 1745, 3652, 1027, 493, 295, 819, 7447, 3652, 365, 819, 9410, 8650, 13, 639, 472, 393, 1190, 15329, 11, 341, 472, 393, 1190, 383, 31654, 13, 1033, 11, 1184, 472, 6676, 257, 3670, 2643, 11, 1184, 472, 6676, 257, 819, 2856, 11, 457, 286, 1745, 552, 807, 257, 3670, 2643, 13, 400, 264, 1412, 300, 307, 516, 293, 1348, 307, 43484, 293, 31828, 13], "avg_logprob": -0.4399858086623929, "compression_ratio": 2.0187793427230045, "no_speech_prob": 7.152557373046875e-06, "words": [{"start": 2757.39, "end": 2757.83, "word": " Yes,", "probability": 0.087890625}, {"start": 2758.23, "end": 2758.47, "word": " this", "probability": 0.66064453125}, {"start": 2758.47, "end": 2758.53, "word": " one", "probability": 0.44677734375}, {"start": 2758.53, "end": 2758.77, "word": " can", "probability": 0.79296875}, {"start": 2758.77, "end": 2759.01, "word": " work", "probability": 0.44482421875}, {"start": 2759.01, "end": 2759.15, "word": " with", "probability": 0.40869140625}, {"start": 2759.15, "end": 2759.71, "word": " programming", "probability": 0.62158203125}, {"start": 2759.71, "end": 2759.71, "word": " languages", "probability": 0.67041015625}, {"start": 2759.71, "end": 2759.97, "word": " and", "probability": 0.64892578125}, {"start": 2759.97, "end": 2760.09, "word": " this", "probability": 0.66064453125}, {"start": 2760.09, "end": 2760.13, "word": " one", "probability": 0.7890625}, {"start": 2760.13, "end": 2760.35, "word": " can", "probability": 0.541015625}, {"start": 2760.35, "end": 2760.79, "word": " work", "probability": 0.83740234375}, {"start": 2760.79, "end": 2761.39, "word": " with", "probability": 0.7958984375}, {"start": 2761.39, "end": 2761.87, "word": " programming", "probability": 0.689453125}, {"start": 2761.87, "end": 2761.99, "word": " languages.", "probability": 0.9580078125}, {"start": 2762.17, "end": 2762.45, "word": " And", "probability": 0.486328125}, {"start": 2762.45, "end": 2762.69, "word": " this", "probability": 0.3486328125}, {"start": 2762.69, "end": 2762.69, "word": " is", "probability": 0.471435546875}, {"start": 2762.69, "end": 2762.75, "word": " how", "probability": 0.9306640625}, {"start": 2762.75, "end": 2763.13, "word": " I", "probability": 0.95458984375}, {"start": 2763.13, "end": 2763.13, "word": " connect", "probability": 0.6337890625}, {"start": 2763.13, "end": 2763.75, "word": " systems", "probability": 0.61376953125}, {"start": 2763.75, "end": 2763.95, "word": " made", "probability": 0.5048828125}, {"start": 2763.95, "end": 2764.25, "word": " up", "probability": 0.382080078125}, {"start": 2764.25, "end": 2764.29, "word": " of", "probability": 0.8427734375}, {"start": 2764.29, "end": 2764.51, "word": " different", "probability": 0.78466796875}, {"start": 2764.51, "end": 2764.95, "word": " operating", "probability": 0.83349609375}, {"start": 2764.95, "end": 2765.33, "word": " systems", "probability": 0.9580078125}, {"start": 2765.33, "end": 2766.17, "word": " with", "probability": 0.35400390625}, {"start": 2766.17, "end": 2766.27, "word": " different", "probability": 0.8662109375}, {"start": 2766.27, "end": 2767.09, "word": " programming", "probability": 0.86572265625}, {"start": 2767.09, "end": 2768.01, "word": " languages.", "probability": 0.97998046875}, {"start": 2768.01, "end": 2768.39, "word": " This", "probability": 0.7861328125}, {"start": 2768.39, "end": 2768.47, "word": " one", "probability": 0.7744140625}, {"start": 2768.47, "end": 2768.67, "word": " can", "probability": 0.71630859375}, {"start": 2768.67, "end": 2769.05, "word": " run", "probability": 0.7939453125}, {"start": 2769.05, "end": 2769.51, "word": " Python,", "probability": 0.6005859375}, {"start": 2769.63, "end": 2769.75, "word": " this", "probability": 0.837890625}, {"start": 2769.75, "end": 2769.81, "word": " one", "probability": 0.86962890625}, {"start": 2769.81, "end": 2770.03, "word": " can", "probability": 0.8818359375}, {"start": 2770.03, "end": 2770.31, "word": " run", "probability": 0.88720703125}, {"start": 2770.31, "end": 2770.49, "word": " C", "probability": 0.9638671875}, {"start": 2770.49, "end": 2770.85, "word": " Sharp.", "probability": 0.04730224609375}, {"start": 2771.65, "end": 2771.79, "word": " Okay,", "probability": 0.329345703125}, {"start": 2771.93, "end": 2772.09, "word": " each", "probability": 0.7578125}, {"start": 2772.09, "end": 2772.25, "word": " one", "probability": 0.685546875}, {"start": 2772.25, "end": 2772.55, "word": " runs", "probability": 0.583984375}, {"start": 2772.55, "end": 2772.73, "word": " a", "probability": 0.88818359375}, {"start": 2772.73, "end": 2772.89, "word": " web", "probability": 0.79443359375}, {"start": 2772.89, "end": 2773.39, "word": " service,", "probability": 0.8984375}, {"start": 2773.87, "end": 2774.55, "word": " each", "probability": 0.93505859375}, {"start": 2774.55, "end": 2774.75, "word": " one", "probability": 0.79443359375}, {"start": 2774.75, "end": 2774.99, "word": " runs", "probability": 0.857421875}, {"start": 2774.99, "end": 2775.11, "word": " a", "probability": 0.59814453125}, {"start": 2775.11, "end": 2775.65, "word": " different", "probability": 0.8486328125}, {"start": 2775.65, "end": 2775.65, "word": " language,", "probability": 0.787109375}, {"start": 2775.85, "end": 2775.99, "word": " but", "probability": 0.91552734375}, {"start": 2775.99, "end": 2776.15, "word": " I", "probability": 0.92919921875}, {"start": 2776.15, "end": 2776.33, "word": " connect", "probability": 0.796875}, {"start": 2776.33, "end": 2776.49, "word": " them", "probability": 0.884765625}, {"start": 2776.49, "end": 2776.81, "word": " through", "probability": 0.6953125}, {"start": 2776.81, "end": 2777.61, "word": " a", "probability": 0.69775390625}, {"start": 2777.61, "end": 2777.79, "word": " web", "probability": 0.94873046875}, {"start": 2777.79, "end": 2778.13, "word": " service.", "probability": 0.92138671875}, {"start": 2778.21, "end": 2778.29, "word": " And", "probability": 0.8876953125}, {"start": 2778.29, "end": 2778.37, "word": " the", "probability": 0.8447265625}, {"start": 2778.37, "end": 2778.61, "word": " data", "probability": 0.6640625}, {"start": 2778.61, "end": 2778.77, "word": " that", "probability": 0.72216796875}, {"start": 2778.77, "end": 2778.85, "word": " is", "probability": 0.291015625}, {"start": 2778.85, "end": 2778.95, "word": " going", "probability": 0.322021484375}, {"start": 2778.95, "end": 2779.15, "word": " and", "probability": 0.61279296875}, {"start": 2779.15, "end": 2779.31, "word": " coming", "probability": 0.55224609375}, {"start": 2779.31, "end": 2779.43, "word": " is", "probability": 0.355224609375}, {"start": 2779.43, "end": 2779.75, "word": " XML", "probability": 0.446533203125}, {"start": 2779.75, "end": 2779.99, "word": " and", "probability": 0.92431640625}, {"start": 2779.99, "end": 2780.31, "word": " JSON.", "probability": 0.8046875}], "temperature": 1.0}, {"id": 114, "seek": 280262, "start": 2781.62, "end": 2802.62, "text": " All programming languages support HTTP request and response, and all of them can analyze texts. Now, what is the new trend of microservices that came out recently? Very simply, I recommend you to read a lot of tutorials, and you will find that", "tokens": [1057, 9410, 8650, 1406, 33283, 5308, 293, 4134, 11, 293, 439, 295, 552, 393, 12477, 15765, 13, 823, 11, 437, 307, 264, 777, 6028, 295, 15547, 47480, 300, 1361, 484, 3938, 30, 4372, 2935, 11, 286, 2748, 291, 281, 1401, 257, 688, 295, 17616, 11, 293, 291, 486, 915, 300], "avg_logprob": -0.6856617389940748, "compression_ratio": 1.3942857142857144, "no_speech_prob": 1.9669532775878906e-06, "words": [{"start": 2781.62, "end": 2781.9, "word": " All", "probability": 0.31298828125}, {"start": 2781.9, "end": 2782.46, "word": " programming", "probability": 0.5068359375}, {"start": 2782.46, "end": 2782.5, "word": " languages", "probability": 0.9658203125}, {"start": 2782.5, "end": 2782.84, "word": " support", "probability": 0.783203125}, {"start": 2782.84, "end": 2783.26, "word": " HTTP", "probability": 0.775390625}, {"start": 2783.26, "end": 2783.76, "word": " request", "probability": 0.5546875}, {"start": 2783.76, "end": 2784.26, "word": " and", "probability": 0.71875}, {"start": 2784.26, "end": 2784.7, "word": " response,", "probability": 0.7041015625}, {"start": 2784.88, "end": 2785.18, "word": " and", "probability": 0.7353515625}, {"start": 2785.18, "end": 2785.38, "word": " all", "probability": 0.312255859375}, {"start": 2785.38, "end": 2785.4, "word": " of", "probability": 0.59326171875}, {"start": 2785.4, "end": 2785.42, "word": " them", "probability": 0.666015625}, {"start": 2785.42, "end": 2785.62, "word": " can", "probability": 0.79150390625}, {"start": 2785.62, "end": 2786.08, "word": " analyze", "probability": 0.80126953125}, {"start": 2786.08, "end": 2786.7, "word": " texts.", "probability": 0.4404296875}, {"start": 2790.22, "end": 2790.82, "word": " Now,", "probability": 0.1871337890625}, {"start": 2791.04, "end": 2791.36, "word": " what", "probability": 0.7626953125}, {"start": 2791.36, "end": 2791.42, "word": " is", "probability": 0.2318115234375}, {"start": 2791.42, "end": 2791.5, "word": " the", "probability": 0.45166015625}, {"start": 2791.5, "end": 2791.76, "word": " new", "probability": 0.4580078125}, {"start": 2791.76, "end": 2791.76, "word": " trend", "probability": 0.7412109375}, {"start": 2791.76, "end": 2791.76, "word": " of", "probability": 0.30908203125}, {"start": 2791.76, "end": 2792.26, "word": " microservices", "probability": 0.758056640625}, {"start": 2792.26, "end": 2793.2, "word": " that", "probability": 0.3955078125}, {"start": 2793.2, "end": 2793.34, "word": " came", "probability": 0.301513671875}, {"start": 2793.34, "end": 2793.5, "word": " out", "probability": 0.77685546875}, {"start": 2793.5, "end": 2793.82, "word": " recently?", "probability": 0.423583984375}, {"start": 2795.14, "end": 2795.22, "word": " Very", "probability": 0.133056640625}, {"start": 2795.22, "end": 2795.78, "word": " simply,", "probability": 0.5224609375}, {"start": 2796.06, "end": 2796.14, "word": " I", "probability": 0.619140625}, {"start": 2796.14, "end": 2796.44, "word": " recommend", "probability": 0.132080078125}, {"start": 2796.44, "end": 2796.64, "word": " you", "probability": 0.65185546875}, {"start": 2796.64, "end": 2796.74, "word": " to", "probability": 0.43115234375}, {"start": 2796.74, "end": 2797.02, "word": " read", "probability": 0.9267578125}, {"start": 2797.02, "end": 2797.52, "word": " a", "probability": 0.2403564453125}, {"start": 2797.52, "end": 2797.82, "word": " lot", "probability": 0.94091796875}, {"start": 2797.82, "end": 2799.88, "word": " of", "probability": 0.95751953125}, {"start": 2799.88, "end": 2800.36, "word": " tutorials,", "probability": 0.95068359375}, {"start": 2801.46, "end": 2801.54, "word": " and", "probability": 0.485107421875}, {"start": 2801.54, "end": 2801.66, "word": " you", "probability": 0.311279296875}, {"start": 2801.66, "end": 2801.66, "word": " will", "probability": 0.72900390625}, {"start": 2801.66, "end": 2801.82, "word": " find", "probability": 0.53662109375}, {"start": 2801.82, "end": 2802.62, "word": " that", "probability": 0.66650390625}], "temperature": 1.0}, {"id": 115, "seek": 281969, "start": 2805.47, "end": 2819.69, "text": "Systems, when you create a website on Aravel for example, your system can be divided into parts. For example, you can have classes or pages responsible for user accounts.", "tokens": [50, 9321, 82, 11, 562, 291, 1884, 257, 3144, 322, 18601, 779, 337, 1365, 11, 428, 1185, 393, 312, 6666, 666, 3166, 13, 1171, 1365, 11, 291, 393, 362, 5359, 420, 7183, 6250, 337, 4195, 9402, 13], "avg_logprob": -0.5250822086083261, "compression_ratio": 1.3709677419354838, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2805.4700000000003, "end": 2806.09, "word": "Systems,", "probability": 0.6869710286458334}, {"start": 2806.73, "end": 2807.15, "word": " when", "probability": 0.457275390625}, {"start": 2807.15, "end": 2807.37, "word": " you", "probability": 0.94873046875}, {"start": 2807.37, "end": 2807.65, "word": " create", "probability": 0.35693359375}, {"start": 2807.65, "end": 2808.31, "word": " a", "probability": 0.58203125}, {"start": 2808.31, "end": 2808.51, "word": " website", "probability": 0.57568359375}, {"start": 2808.51, "end": 2808.63, "word": " on", "probability": 0.560546875}, {"start": 2808.63, "end": 2808.89, "word": " Aravel", "probability": 0.4156494140625}, {"start": 2808.89, "end": 2809.05, "word": " for", "probability": 0.44970703125}, {"start": 2809.05, "end": 2809.47, "word": " example,", "probability": 0.8603515625}, {"start": 2809.95, "end": 2812.37, "word": " your", "probability": 0.33642578125}, {"start": 2812.37, "end": 2813.23, "word": " system", "probability": 0.908203125}, {"start": 2813.23, "end": 2813.73, "word": " can", "probability": 0.45849609375}, {"start": 2813.73, "end": 2814.01, "word": " be", "probability": 0.60400390625}, {"start": 2814.01, "end": 2814.29, "word": " divided", "probability": 0.75}, {"start": 2814.29, "end": 2814.43, "word": " into", "probability": 0.78076171875}, {"start": 2814.43, "end": 2814.77, "word": " parts.", "probability": 0.61962890625}, {"start": 2815.35, "end": 2815.49, "word": " For", "probability": 0.51806640625}, {"start": 2815.49, "end": 2815.67, "word": " example,", "probability": 0.88427734375}, {"start": 2815.83, "end": 2815.83, "word": " you", "probability": 0.671875}, {"start": 2815.83, "end": 2816.01, "word": " can", "probability": 0.442626953125}, {"start": 2816.01, "end": 2816.37, "word": " have", "probability": 0.88916015625}, {"start": 2816.37, "end": 2816.81, "word": " classes", "probability": 0.86376953125}, {"start": 2816.81, "end": 2817.03, "word": " or", "probability": 0.8388671875}, {"start": 2817.03, "end": 2817.59, "word": " pages", "probability": 0.78466796875}, {"start": 2817.59, "end": 2818.59, "word": " responsible", "probability": 0.28271484375}, {"start": 2818.59, "end": 2818.85, "word": " for", "probability": 0.9150390625}, {"start": 2818.85, "end": 2819.11, "word": " user", "probability": 0.72509765625}, {"start": 2819.11, "end": 2819.69, "word": " accounts.", "probability": 0.8857421875}], "temperature": 1.0}, {"id": 116, "seek": 284646, "start": 2821.48, "end": 2846.46, "text": "Okay? You can have other pages, for example, if you do a shopping website, responsible for inventory, which is the storage and search in it, and what are the products you have, what are the quantities available and so on. You can have another service responsible for payment process, okay? And this payment can be communicated with the bank, for example, for the visa and these things.", "tokens": [8297, 30, 509, 393, 362, 661, 7183, 11, 337, 1365, 11, 498, 291, 360, 257, 8688, 3144, 11, 6250, 337, 14228, 11, 597, 307, 264, 6725, 293, 3164, 294, 309, 11, 293, 437, 366, 264, 3383, 291, 362, 11, 437, 366, 264, 22927, 2435, 293, 370, 322, 13, 509, 393, 362, 1071, 2643, 6250, 337, 10224, 1399, 11, 1392, 30, 400, 341, 10224, 393, 312, 34989, 365, 264, 3765, 11, 337, 1365, 11, 337, 264, 18589, 293, 613, 721, 13], "avg_logprob": -0.5756172721768603, "compression_ratio": 1.742081447963801, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 2821.48, "end": 2821.74, "word": "Okay?", "probability": 0.0723876953125}, {"start": 2822.08, "end": 2822.18, "word": " You", "probability": 0.59619140625}, {"start": 2822.18, "end": 2822.36, "word": " can", "probability": 0.28955078125}, {"start": 2822.36, "end": 2822.86, "word": " have", "probability": 0.7578125}, {"start": 2822.86, "end": 2822.98, "word": " other", "probability": 0.3798828125}, {"start": 2822.98, "end": 2823.66, "word": " pages,", "probability": 0.57275390625}, {"start": 2823.94, "end": 2824.36, "word": " for", "probability": 0.390869140625}, {"start": 2824.36, "end": 2824.36, "word": " example,", "probability": 0.87744140625}, {"start": 2824.36, "end": 2824.36, "word": " if", "probability": 0.70751953125}, {"start": 2824.36, "end": 2824.5, "word": " you", "probability": 0.95458984375}, {"start": 2824.5, "end": 2824.7, "word": " do", "probability": 0.17041015625}, {"start": 2824.7, "end": 2825.22, "word": " a", "probability": 0.6875}, {"start": 2825.22, "end": 2825.54, "word": " shopping", "probability": 0.254638671875}, {"start": 2825.54, "end": 2825.56, "word": " website,", "probability": 0.7021484375}, {"start": 2825.98, "end": 2826.44, "word": " responsible", "probability": 0.300537109375}, {"start": 2826.44, "end": 2826.86, "word": " for", "probability": 0.8427734375}, {"start": 2826.86, "end": 2827.48, "word": " inventory,", "probability": 0.5390625}, {"start": 2827.7, "end": 2827.74, "word": " which", "probability": 0.412353515625}, {"start": 2827.74, "end": 2827.86, "word": " is", "probability": 0.45703125}, {"start": 2827.86, "end": 2827.98, "word": " the", "probability": 0.425048828125}, {"start": 2827.98, "end": 2828.34, "word": " storage", "probability": 0.1851806640625}, {"start": 2828.34, "end": 2828.52, "word": " and", "probability": 0.7529296875}, {"start": 2828.52, "end": 2828.76, "word": " search", "probability": 0.59326171875}, {"start": 2828.76, "end": 2829.02, "word": " in", "probability": 0.4521484375}, {"start": 2829.02, "end": 2829.2, "word": " it,", "probability": 0.88818359375}, {"start": 2829.32, "end": 2829.34, "word": " and", "probability": 0.58935546875}, {"start": 2829.34, "end": 2829.5, "word": " what", "probability": 0.62890625}, {"start": 2829.5, "end": 2829.54, "word": " are", "probability": 0.35791015625}, {"start": 2829.54, "end": 2829.6, "word": " the", "probability": 0.83984375}, {"start": 2829.6, "end": 2829.92, "word": " products", "probability": 0.8154296875}, {"start": 2829.92, "end": 2830.08, "word": " you", "probability": 0.62451171875}, {"start": 2830.08, "end": 2830.28, "word": " have,", "probability": 0.93212890625}, {"start": 2830.38, "end": 2830.56, "word": " what", "probability": 0.23681640625}, {"start": 2830.56, "end": 2830.62, "word": " are", "probability": 0.796875}, {"start": 2830.62, "end": 2830.74, "word": " the", "probability": 0.85986328125}, {"start": 2830.74, "end": 2831.38, "word": " quantities", "probability": 0.58154296875}, {"start": 2831.38, "end": 2832.24, "word": " available", "probability": 0.4033203125}, {"start": 2832.24, "end": 2832.4, "word": " and", "probability": 0.447998046875}, {"start": 2832.4, "end": 2832.56, "word": " so", "probability": 0.58203125}, {"start": 2832.56, "end": 2832.66, "word": " on.", "probability": 0.9267578125}, {"start": 2833.28, "end": 2833.42, "word": " You", "probability": 0.82958984375}, {"start": 2833.42, "end": 2833.54, "word": " can", "probability": 0.73046875}, {"start": 2833.54, "end": 2833.9, "word": " have", "probability": 0.84326171875}, {"start": 2833.9, "end": 2834.02, "word": " another", "probability": 0.828125}, {"start": 2834.02, "end": 2834.46, "word": " service", "probability": 0.9248046875}, {"start": 2834.46, "end": 2835.94, "word": " responsible", "probability": 0.55615234375}, {"start": 2835.94, "end": 2836.52, "word": " for", "probability": 0.9423828125}, {"start": 2836.52, "end": 2837.14, "word": " payment", "probability": 0.6513671875}, {"start": 2837.14, "end": 2837.36, "word": " process,", "probability": 0.404052734375}, {"start": 2839.32, "end": 2839.56, "word": " okay?", "probability": 0.53466796875}, {"start": 2839.76, "end": 2839.9, "word": " And", "probability": 0.8125}, {"start": 2839.9, "end": 2840.08, "word": " this", "probability": 0.865234375}, {"start": 2840.08, "end": 2840.42, "word": " payment", "probability": 0.98583984375}, {"start": 2840.42, "end": 2840.68, "word": " can", "probability": 0.888671875}, {"start": 2840.68, "end": 2840.86, "word": " be", "probability": 0.8115234375}, {"start": 2840.86, "end": 2841.1, "word": " communicated", "probability": 0.3583984375}, {"start": 2841.1, "end": 2841.94, "word": " with", "probability": 0.7060546875}, {"start": 2841.94, "end": 2842.66, "word": " the", "probability": 0.8515625}, {"start": 2842.66, "end": 2842.98, "word": " bank,", "probability": 0.87939453125}, {"start": 2843.3, "end": 2843.48, "word": " for", "probability": 0.92138671875}, {"start": 2843.48, "end": 2843.64, "word": " example,", "probability": 0.84130859375}, {"start": 2844.3, "end": 2845.34, "word": " for", "probability": 0.6728515625}, {"start": 2845.34, "end": 2845.5, "word": " the", "probability": 0.406982421875}, {"start": 2845.5, "end": 2845.78, "word": " visa", "probability": 0.87060546875}, {"start": 2845.78, "end": 2846.12, "word": " and", "probability": 0.88134765625}, {"start": 2846.12, "end": 2846.22, "word": " these", "probability": 0.21142578125}, {"start": 2846.22, "end": 2846.46, "word": " things.", "probability": 0.8056640625}], "temperature": 1.0}, {"id": 117, "seek": 286842, "start": 2848.38, "end": 2868.42, "text": " And there is another component responsible for the search, the advanced search and the user search. These are pages that you have. Let's imagine that this is the backend. All of this is the model. The model itself is divided into parts like this.", "tokens": [400, 456, 307, 1071, 6542, 6250, 337, 264, 3164, 11, 264, 7339, 3164, 293, 264, 4195, 3164, 13, 1981, 366, 7183, 300, 291, 362, 13, 961, 311, 3811, 300, 341, 307, 264, 38087, 13, 1057, 295, 341, 307, 264, 2316, 13, 440, 2316, 2564, 307, 6666, 666, 3166, 411, 341, 13], "avg_logprob": -0.6442307600608239, "compression_ratio": 1.54375, "no_speech_prob": 2.8073787689208984e-05, "words": [{"start": 2848.38, "end": 2848.94, "word": " And", "probability": 0.2296142578125}, {"start": 2848.94, "end": 2849.36, "word": " there", "probability": 0.315185546875}, {"start": 2849.36, "end": 2849.38, "word": " is", "probability": 0.5498046875}, {"start": 2849.38, "end": 2849.66, "word": " another", "probability": 0.7021484375}, {"start": 2849.66, "end": 2850.12, "word": " component", "probability": 0.7724609375}, {"start": 2850.12, "end": 2850.6, "word": " responsible", "probability": 0.351318359375}, {"start": 2850.6, "end": 2850.8, "word": " for", "probability": 0.88330078125}, {"start": 2850.8, "end": 2850.88, "word": " the", "probability": 0.453369140625}, {"start": 2850.88, "end": 2851.18, "word": " search,", "probability": 0.85009765625}, {"start": 2851.26, "end": 2851.38, "word": " the", "probability": 0.28076171875}, {"start": 2851.38, "end": 2851.96, "word": " advanced", "probability": 0.489501953125}, {"start": 2851.96, "end": 2851.96, "word": " search", "probability": 0.63623046875}, {"start": 2851.96, "end": 2852.3, "word": " and", "probability": 0.191162109375}, {"start": 2852.3, "end": 2852.42, "word": " the", "probability": 0.484130859375}, {"start": 2852.42, "end": 2852.66, "word": " user", "probability": 0.407958984375}, {"start": 2852.66, "end": 2852.96, "word": " search.", "probability": 0.64306640625}, {"start": 2853.12, "end": 2853.28, "word": " These", "probability": 0.53564453125}, {"start": 2853.28, "end": 2853.46, "word": " are", "probability": 0.8701171875}, {"start": 2853.46, "end": 2854.16, "word": " pages", "probability": 0.444580078125}, {"start": 2854.16, "end": 2854.94, "word": " that", "probability": 0.26025390625}, {"start": 2854.94, "end": 2854.94, "word": " you", "probability": 0.362060546875}, {"start": 2854.94, "end": 2856.22, "word": " have.", "probability": 0.69384765625}, {"start": 2858.62, "end": 2859.18, "word": " Let's", "probability": 0.67919921875}, {"start": 2859.18, "end": 2859.44, "word": " imagine", "probability": 0.3798828125}, {"start": 2859.44, "end": 2859.56, "word": " that", "probability": 0.57421875}, {"start": 2859.56, "end": 2859.68, "word": " this", "probability": 0.66455078125}, {"start": 2859.68, "end": 2859.68, "word": " is", "probability": 0.9111328125}, {"start": 2859.68, "end": 2859.8, "word": " the", "probability": 0.87255859375}, {"start": 2859.8, "end": 2860.2, "word": " backend.", "probability": 0.77392578125}, {"start": 2861.96, "end": 2862.52, "word": " All", "probability": 0.35009765625}, {"start": 2862.52, "end": 2862.64, "word": " of", "probability": 0.46923828125}, {"start": 2862.64, "end": 2863.62, "word": " this", "probability": 0.76953125}, {"start": 2863.62, "end": 2863.78, "word": " is", "probability": 0.77099609375}, {"start": 2863.78, "end": 2864.66, "word": " the", "probability": 0.389892578125}, {"start": 2864.66, "end": 2865.08, "word": " model.", "probability": 0.88427734375}, {"start": 2865.36, "end": 2865.64, "word": " The", "probability": 0.638671875}, {"start": 2865.64, "end": 2865.82, "word": " model", "probability": 0.91943359375}, {"start": 2865.82, "end": 2866.14, "word": " itself", "probability": 0.560546875}, {"start": 2866.14, "end": 2866.26, "word": " is", "probability": 0.8525390625}, {"start": 2866.26, "end": 2866.48, "word": " divided", "probability": 0.67529296875}, {"start": 2866.48, "end": 2866.92, "word": " into", "probability": 0.7080078125}, {"start": 2866.92, "end": 2868.02, "word": " parts", "probability": 0.8095703125}, {"start": 2868.02, "end": 2868.18, "word": " like", "probability": 0.634765625}, {"start": 2868.18, "end": 2868.42, "word": " this.", "probability": 0.7490234375}], "temperature": 1.0}, {"id": 118, "seek": 290187, "start": 2874.25, "end": 2901.87, "text": " Requests on these parts These components are all on the same server My question is, there was a drop in the server The number of requests was very large What will happen? The server will crash and all these services will crash What will the microservices do? They will tell you, instead of putting them all on the same server Leave each service", "tokens": [42029, 4409, 322, 613, 3166, 1981, 6677, 366, 439, 322, 264, 912, 7154, 1222, 1168, 307, 11, 456, 390, 257, 3270, 294, 264, 7154, 440, 1230, 295, 12475, 390, 588, 2416, 708, 486, 1051, 30, 440, 7154, 486, 8252, 293, 439, 613, 3328, 486, 8252, 708, 486, 264, 15547, 47480, 360, 30, 814, 486, 980, 291, 11, 2602, 295, 3372, 552, 439, 322, 264, 912, 7154, 9825, 1184, 2643], "avg_logprob": -0.5727678307465145, "compression_ratio": 1.8253968253968254, "no_speech_prob": 4.410743713378906e-06, "words": [{"start": 2874.25, "end": 2874.85, "word": " Requests", "probability": 0.437164306640625}, {"start": 2874.85, "end": 2875.09, "word": " on", "probability": 0.5224609375}, {"start": 2875.09, "end": 2875.57, "word": " these", "probability": 0.45947265625}, {"start": 2875.57, "end": 2875.95, "word": " parts", "probability": 0.4267578125}, {"start": 2875.95, "end": 2877.03, "word": " These", "probability": 0.1572265625}, {"start": 2877.03, "end": 2877.83, "word": " components", "probability": 0.77880859375}, {"start": 2877.83, "end": 2878.13, "word": " are", "probability": 0.66552734375}, {"start": 2878.13, "end": 2878.13, "word": " all", "probability": 0.6865234375}, {"start": 2878.13, "end": 2878.61, "word": " on", "probability": 0.4775390625}, {"start": 2878.61, "end": 2878.75, "word": " the", "probability": 0.414794921875}, {"start": 2878.75, "end": 2878.75, "word": " same", "probability": 0.8896484375}, {"start": 2878.75, "end": 2879.05, "word": " server", "probability": 0.8994140625}, {"start": 2879.05, "end": 2879.79, "word": " My", "probability": 0.6064453125}, {"start": 2879.79, "end": 2880.07, "word": " question", "probability": 0.916015625}, {"start": 2880.07, "end": 2880.53, "word": " is,", "probability": 0.7666015625}, {"start": 2880.91, "end": 2881.19, "word": " there", "probability": 0.57373046875}, {"start": 2881.19, "end": 2881.19, "word": " was", "probability": 0.487548828125}, {"start": 2881.19, "end": 2881.31, "word": " a", "probability": 0.958984375}, {"start": 2881.31, "end": 2881.49, "word": " drop", "probability": 0.8779296875}, {"start": 2881.49, "end": 2881.63, "word": " in", "probability": 0.8388671875}, {"start": 2881.63, "end": 2881.73, "word": " the", "probability": 0.84521484375}, {"start": 2881.73, "end": 2882.01, "word": " server", "probability": 0.7724609375}, {"start": 2882.01, "end": 2883.05, "word": " The", "probability": 0.225830078125}, {"start": 2883.05, "end": 2883.27, "word": " number", "probability": 0.849609375}, {"start": 2883.27, "end": 2883.41, "word": " of", "probability": 0.9697265625}, {"start": 2883.41, "end": 2883.79, "word": " requests", "probability": 0.822265625}, {"start": 2883.79, "end": 2884.03, "word": " was", "probability": 0.86328125}, {"start": 2884.03, "end": 2884.09, "word": " very", "probability": 0.35986328125}, {"start": 2884.09, "end": 2884.35, "word": " large", "probability": 0.2978515625}, {"start": 2884.35, "end": 2886.19, "word": " What", "probability": 0.58642578125}, {"start": 2886.19, "end": 2886.35, "word": " will", "probability": 0.54541015625}, {"start": 2886.35, "end": 2886.65, "word": " happen?", "probability": 0.8984375}, {"start": 2887.65, "end": 2888.35, "word": " The", "probability": 0.58984375}, {"start": 2888.35, "end": 2889.09, "word": " server", "probability": 0.86181640625}, {"start": 2889.09, "end": 2889.09, "word": " will", "probability": 0.4501953125}, {"start": 2889.09, "end": 2889.09, "word": " crash", "probability": 0.08770751953125}, {"start": 2889.09, "end": 2889.77, "word": " and", "probability": 0.403076171875}, {"start": 2889.77, "end": 2890.17, "word": " all", "probability": 0.81103515625}, {"start": 2890.17, "end": 2890.31, "word": " these", "probability": 0.1956787109375}, {"start": 2890.31, "end": 2890.71, "word": " services", "probability": 0.92236328125}, {"start": 2890.71, "end": 2891.35, "word": " will", "probability": 0.77587890625}, {"start": 2891.35, "end": 2891.35, "word": " crash", "probability": 0.75927734375}, {"start": 2891.35, "end": 2893.23, "word": " What", "probability": 0.408447265625}, {"start": 2893.23, "end": 2893.23, "word": " will", "probability": 0.484375}, {"start": 2893.23, "end": 2893.31, "word": " the", "probability": 0.2115478515625}, {"start": 2893.31, "end": 2894.29, "word": " microservices", "probability": 0.71337890625}, {"start": 2894.29, "end": 2894.85, "word": " do?", "probability": 0.919921875}, {"start": 2895.39, "end": 2895.61, "word": " They", "probability": 0.646484375}, {"start": 2895.61, "end": 2895.67, "word": " will", "probability": 0.66259765625}, {"start": 2895.67, "end": 2895.85, "word": " tell", "probability": 0.475341796875}, {"start": 2895.85, "end": 2896.07, "word": " you,", "probability": 0.92626953125}, {"start": 2896.09, "end": 2896.65, "word": " instead", "probability": 0.46630859375}, {"start": 2896.65, "end": 2896.79, "word": " of", "probability": 0.96337890625}, {"start": 2896.79, "end": 2897.11, "word": " putting", "probability": 0.66357421875}, {"start": 2897.11, "end": 2897.55, "word": " them", "probability": 0.37548828125}, {"start": 2897.55, "end": 2897.55, "word": " all", "probability": 0.810546875}, {"start": 2897.55, "end": 2897.93, "word": " on", "probability": 0.9130859375}, {"start": 2897.93, "end": 2898.01, "word": " the", "probability": 0.4423828125}, {"start": 2898.01, "end": 2898.01, "word": " same", "probability": 0.8984375}, {"start": 2898.01, "end": 2898.85, "word": " server", "probability": 0.92724609375}, {"start": 2898.85, "end": 2901.19, "word": " Leave", "probability": 0.201416015625}, {"start": 2901.19, "end": 2901.47, "word": " each", "probability": 0.494384765625}, {"start": 2901.47, "end": 2901.87, "word": " service", "probability": 0.8525390625}], "temperature": 1.0}, {"id": 119, "seek": 292558, "start": 2904.96, "end": 2925.58, "text": "Where? In a single server. Every service is completely detached from the other. Every service is a single server. Of course, we don't call it a server in this case. We call it a container. Okay? What is a container? The word server can be more related to hardware.", "tokens": [14436, 30, 682, 257, 2167, 7154, 13, 2048, 2643, 307, 2584, 42050, 490, 264, 661, 13, 2048, 2643, 307, 257, 2167, 7154, 13, 2720, 1164, 11, 321, 500, 380, 818, 309, 257, 7154, 294, 341, 1389, 13, 492, 818, 309, 257, 10129, 13, 1033, 30, 708, 307, 257, 10129, 30, 440, 1349, 7154, 393, 312, 544, 4077, 281, 8837, 13], "avg_logprob": -0.4316086163286303, "compression_ratio": 1.6296296296296295, "no_speech_prob": 4.887580871582031e-06, "words": [{"start": 2904.96, "end": 2905.32, "word": "Where?", "probability": 0.328125}, {"start": 2905.7, "end": 2905.86, "word": " In", "probability": 0.59765625}, {"start": 2905.86, "end": 2906.3, "word": " a", "probability": 0.4619140625}, {"start": 2906.3, "end": 2906.46, "word": " single", "probability": 0.18798828125}, {"start": 2906.46, "end": 2906.46, "word": " server.", "probability": 0.89892578125}, {"start": 2907.58, "end": 2908.1, "word": " Every", "probability": 0.341064453125}, {"start": 2908.1, "end": 2908.36, "word": " service", "probability": 0.7080078125}, {"start": 2908.36, "end": 2908.48, "word": " is", "probability": 0.765625}, {"start": 2908.48, "end": 2908.8, "word": " completely", "probability": 0.2061767578125}, {"start": 2908.8, "end": 2908.8, "word": " detached", "probability": 0.29443359375}, {"start": 2908.8, "end": 2909.44, "word": " from", "probability": 0.88818359375}, {"start": 2909.44, "end": 2909.58, "word": " the", "probability": 0.50927734375}, {"start": 2909.58, "end": 2909.76, "word": " other.", "probability": 0.763671875}, {"start": 2909.88, "end": 2910.06, "word": " Every", "probability": 0.50048828125}, {"start": 2910.06, "end": 2910.62, "word": " service", "probability": 0.83203125}, {"start": 2910.62, "end": 2910.9, "word": " is", "probability": 0.60107421875}, {"start": 2910.9, "end": 2910.98, "word": " a", "probability": 0.5166015625}, {"start": 2910.98, "end": 2912.28, "word": " single", "probability": 0.8603515625}, {"start": 2912.28, "end": 2912.28, "word": " server.", "probability": 0.92578125}, {"start": 2912.96, "end": 2913.34, "word": " Of", "probability": 0.728515625}, {"start": 2913.34, "end": 2913.34, "word": " course,", "probability": 0.95947265625}, {"start": 2913.42, "end": 2913.52, "word": " we", "probability": 0.87548828125}, {"start": 2913.52, "end": 2913.78, "word": " don't", "probability": 0.75537109375}, {"start": 2913.78, "end": 2914.06, "word": " call", "probability": 0.56982421875}, {"start": 2914.06, "end": 2914.18, "word": " it", "probability": 0.8232421875}, {"start": 2914.18, "end": 2914.26, "word": " a", "probability": 0.66064453125}, {"start": 2914.26, "end": 2914.56, "word": " server", "probability": 0.8701171875}, {"start": 2914.56, "end": 2914.64, "word": " in", "probability": 0.64013671875}, {"start": 2914.64, "end": 2914.72, "word": " this", "probability": 0.8916015625}, {"start": 2914.72, "end": 2914.9, "word": " case.", "probability": 0.8525390625}, {"start": 2915.08, "end": 2915.08, "word": " We", "probability": 0.6748046875}, {"start": 2915.08, "end": 2915.32, "word": " call", "probability": 0.8349609375}, {"start": 2915.32, "end": 2915.56, "word": " it", "probability": 0.94873046875}, {"start": 2915.56, "end": 2915.94, "word": " a", "probability": 0.8046875}, {"start": 2915.94, "end": 2916.3, "word": " container.", "probability": 0.8955078125}, {"start": 2919.98, "end": 2920.5, "word": " Okay?", "probability": 0.362548828125}, {"start": 2920.66, "end": 2920.96, "word": " What", "probability": 0.83154296875}, {"start": 2920.96, "end": 2920.98, "word": " is", "probability": 0.6298828125}, {"start": 2920.98, "end": 2921.1, "word": " a", "probability": 0.81103515625}, {"start": 2921.1, "end": 2921.38, "word": " container?", "probability": 0.91357421875}, {"start": 2921.48, "end": 2921.74, "word": " The", "probability": 0.308837890625}, {"start": 2921.74, "end": 2922.9, "word": " word", "probability": 0.78076171875}, {"start": 2922.9, "end": 2923.44, "word": " server", "probability": 0.501953125}, {"start": 2923.44, "end": 2923.56, "word": " can", "probability": 0.276611328125}, {"start": 2923.56, "end": 2923.56, "word": " be", "probability": 0.8330078125}, {"start": 2923.56, "end": 2924.08, "word": " more", "probability": 0.6884765625}, {"start": 2924.08, "end": 2924.08, "word": " related", "probability": 0.374267578125}, {"start": 2924.08, "end": 2925.08, "word": " to", "probability": 0.9658203125}, {"start": 2925.08, "end": 2925.58, "word": " hardware.", "probability": 0.6962890625}], "temperature": 1.0}, {"id": 120, "seek": 295382, "start": 2926.68, "end": 2953.82, "text": " The word container is the software that runs the service. The server itself can have more than one container. For example, on your server, you can download Tomcat, which is a web server that runs the website. You can also download Xampp and WAMP. You have more than one server. Each one runs a website.", "tokens": [440, 1349, 10129, 307, 264, 4722, 300, 6676, 264, 2643, 13, 440, 7154, 2564, 393, 362, 544, 813, 472, 10129, 13, 1171, 1365, 11, 322, 428, 7154, 11, 291, 393, 5484, 5041, 18035, 11, 597, 307, 257, 3670, 7154, 300, 6676, 264, 3144, 13, 509, 393, 611, 5484, 1783, 335, 427, 293, 343, 2865, 47, 13, 509, 362, 544, 813, 472, 7154, 13, 6947, 472, 6676, 257, 3144, 13], "avg_logprob": -0.4937500144754137, "compression_ratio": 1.7514450867052023, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 2926.68, "end": 2926.86, "word": " The", "probability": 0.24267578125}, {"start": 2926.86, "end": 2927.02, "word": " word", "probability": 0.72314453125}, {"start": 2927.02, "end": 2927.58, "word": " container", "probability": 0.63232421875}, {"start": 2927.58, "end": 2928.54, "word": " is", "probability": 0.65380859375}, {"start": 2928.54, "end": 2929.32, "word": " the", "probability": 0.339599609375}, {"start": 2929.32, "end": 2930.42, "word": " software", "probability": 0.89599609375}, {"start": 2930.42, "end": 2930.92, "word": " that", "probability": 0.703125}, {"start": 2930.92, "end": 2931.28, "word": " runs", "probability": 0.7099609375}, {"start": 2931.28, "end": 2931.48, "word": " the", "probability": 0.79638671875}, {"start": 2931.48, "end": 2931.84, "word": " service.", "probability": 0.78662109375}, {"start": 2932.92, "end": 2933.62, "word": " The", "probability": 0.330322265625}, {"start": 2933.62, "end": 2934.18, "word": " server", "probability": 0.52392578125}, {"start": 2934.18, "end": 2935.08, "word": " itself", "probability": 0.243896484375}, {"start": 2935.08, "end": 2935.78, "word": " can", "probability": 0.47607421875}, {"start": 2935.78, "end": 2936.1, "word": " have", "probability": 0.5517578125}, {"start": 2936.1, "end": 2936.36, "word": " more", "probability": 0.84521484375}, {"start": 2936.36, "end": 2936.46, "word": " than", "probability": 0.82861328125}, {"start": 2936.46, "end": 2936.6, "word": " one", "probability": 0.75}, {"start": 2936.6, "end": 2937.0, "word": " container.", "probability": 0.919921875}, {"start": 2937.32, "end": 2937.74, "word": " For", "probability": 0.5869140625}, {"start": 2937.74, "end": 2938.22, "word": " example,", "probability": 0.91015625}, {"start": 2938.34, "end": 2938.34, "word": " on", "probability": 0.39501953125}, {"start": 2938.34, "end": 2938.48, "word": " your", "probability": 0.55322265625}, {"start": 2938.48, "end": 2938.82, "word": " server,", "probability": 0.8291015625}, {"start": 2939.5, "end": 2940.04, "word": " you", "probability": 0.34423828125}, {"start": 2940.04, "end": 2941.04, "word": " can", "probability": 0.88623046875}, {"start": 2941.04, "end": 2941.62, "word": " download", "probability": 0.56103515625}, {"start": 2941.62, "end": 2942.86, "word": " Tomcat,", "probability": 0.8955078125}, {"start": 2943.56, "end": 2943.68, "word": " which", "probability": 0.767578125}, {"start": 2943.68, "end": 2943.84, "word": " is", "probability": 0.8388671875}, {"start": 2943.84, "end": 2945.48, "word": " a", "probability": 0.8037109375}, {"start": 2945.48, "end": 2945.66, "word": " web", "probability": 0.7958984375}, {"start": 2945.66, "end": 2946.04, "word": " server", "probability": 0.89404296875}, {"start": 2946.04, "end": 2946.16, "word": " that", "probability": 0.369384765625}, {"start": 2946.16, "end": 2946.5, "word": " runs", "probability": 0.77099609375}, {"start": 2946.5, "end": 2946.9, "word": " the", "probability": 0.2408447265625}, {"start": 2946.9, "end": 2947.32, "word": " website.", "probability": 0.5224609375}, {"start": 2947.4, "end": 2947.46, "word": " You", "probability": 0.43603515625}, {"start": 2947.46, "end": 2947.58, "word": " can", "probability": 0.91162109375}, {"start": 2947.58, "end": 2947.84, "word": " also", "probability": 0.37158203125}, {"start": 2947.84, "end": 2947.84, "word": " download", "probability": 0.716796875}, {"start": 2947.84, "end": 2948.62, "word": " Xampp", "probability": 0.6028645833333334}, {"start": 2948.62, "end": 2949.8, "word": " and", "probability": 0.5732421875}, {"start": 2949.8, "end": 2950.88, "word": " WAMP.", "probability": 0.7571614583333334}, {"start": 2951.1, "end": 2951.68, "word": " You", "probability": 0.426513671875}, {"start": 2951.68, "end": 2952.1, "word": " have", "probability": 0.3701171875}, {"start": 2952.1, "end": 2952.34, "word": " more", "probability": 0.8291015625}, {"start": 2952.34, "end": 2952.52, "word": " than", "probability": 0.89599609375}, {"start": 2952.52, "end": 2952.58, "word": " one", "probability": 0.91943359375}, {"start": 2952.58, "end": 2952.84, "word": " server.", "probability": 0.92626953125}, {"start": 2952.94, "end": 2953.08, "word": " Each", "probability": 0.75}, {"start": 2953.08, "end": 2953.22, "word": " one", "probability": 0.4814453125}, {"start": 2953.22, "end": 2953.48, "word": " runs", "probability": 0.74658203125}, {"start": 2953.48, "end": 2953.6, "word": " a", "probability": 0.6279296875}, {"start": 2953.6, "end": 2953.82, "word": " website.", "probability": 0.7060546875}], "temperature": 1.0}, {"id": 121, "seek": 297886, "start": 2955.9, "end": 2978.86, "text": " Okay? So the point is that this is what we call a container. You have three containers on the same hardware. Okay? Okay, what is this? Of course, this section that you see in this way, each one running on a server or container, what are its characteristics and what are its qualities? What are its characteristics? That if there is a service that drops, okay? The rest remain", "tokens": [1033, 30, 407, 264, 935, 307, 300, 341, 307, 437, 321, 818, 257, 10129, 13, 509, 362, 1045, 17089, 322, 264, 912, 8837, 13, 1033, 30, 1033, 11, 437, 307, 341, 30, 2720, 1164, 11, 341, 3541, 300, 291, 536, 294, 341, 636, 11, 1184, 472, 2614, 322, 257, 7154, 420, 10129, 11, 437, 366, 1080, 10891, 293, 437, 366, 1080, 16477, 30, 708, 366, 1080, 10891, 30, 663, 498, 456, 307, 257, 2643, 300, 11438, 11, 1392, 30, 440, 1472, 6222], "avg_logprob": -0.5470632759921522, "compression_ratio": 1.7819905213270142, "no_speech_prob": 1.9669532775878906e-06, "words": [{"start": 2955.9, "end": 2956.34, "word": " Okay?", "probability": 0.06866455078125}, {"start": 2956.34, "end": 2956.78, "word": " So", "probability": 0.333251953125}, {"start": 2956.78, "end": 2957.06, "word": " the", "probability": 0.2230224609375}, {"start": 2957.06, "end": 2957.34, "word": " point", "probability": 0.365234375}, {"start": 2957.34, "end": 2957.68, "word": " is", "probability": 0.9013671875}, {"start": 2957.68, "end": 2957.86, "word": " that", "probability": 0.496826171875}, {"start": 2957.86, "end": 2958.1, "word": " this", "probability": 0.48779296875}, {"start": 2958.1, "end": 2958.16, "word": " is", "probability": 0.68359375}, {"start": 2958.16, "end": 2958.18, "word": " what", "probability": 0.5263671875}, {"start": 2958.18, "end": 2958.22, "word": " we", "probability": 0.88623046875}, {"start": 2958.22, "end": 2958.38, "word": " call", "probability": 0.89013671875}, {"start": 2958.38, "end": 2958.5, "word": " a", "probability": 0.6865234375}, {"start": 2958.5, "end": 2958.88, "word": " container.", "probability": 0.81005859375}, {"start": 2959.02, "end": 2959.22, "word": " You", "probability": 0.6552734375}, {"start": 2959.22, "end": 2959.28, "word": " have", "probability": 0.89892578125}, {"start": 2959.28, "end": 2959.72, "word": " three", "probability": 0.75}, {"start": 2959.72, "end": 2960.38, "word": " containers", "probability": 0.900390625}, {"start": 2960.38, "end": 2961.66, "word": " on", "probability": 0.7646484375}, {"start": 2961.66, "end": 2961.8, "word": " the", "probability": 0.89794921875}, {"start": 2961.8, "end": 2961.96, "word": " same", "probability": 0.81494140625}, {"start": 2961.96, "end": 2962.9, "word": " hardware.", "probability": 0.9033203125}, {"start": 2963.42, "end": 2963.66, "word": " Okay?", "probability": 0.6943359375}, {"start": 2964.82, "end": 2965.06, "word": " Okay,", "probability": 0.208251953125}, {"start": 2965.1, "end": 2965.24, "word": " what", "probability": 0.63427734375}, {"start": 2965.24, "end": 2965.24, "word": " is", "probability": 0.4609375}, {"start": 2965.24, "end": 2965.52, "word": " this?", "probability": 0.43310546875}, {"start": 2965.52, "end": 2965.7, "word": " Of", "probability": 0.38330078125}, {"start": 2965.7, "end": 2965.84, "word": " course,", "probability": 0.96044921875}, {"start": 2966.3, "end": 2966.38, "word": " this", "probability": 0.8310546875}, {"start": 2966.38, "end": 2966.66, "word": " section", "probability": 0.173583984375}, {"start": 2966.66, "end": 2967.16, "word": " that", "probability": 0.6474609375}, {"start": 2967.16, "end": 2967.36, "word": " you", "probability": 0.94677734375}, {"start": 2967.36, "end": 2967.66, "word": " see", "probability": 0.85791015625}, {"start": 2967.66, "end": 2967.76, "word": " in", "probability": 0.296142578125}, {"start": 2967.76, "end": 2968.14, "word": " this", "probability": 0.87548828125}, {"start": 2968.14, "end": 2968.14, "word": " way,", "probability": 0.35888671875}, {"start": 2968.24, "end": 2968.4, "word": " each", "probability": 0.60791015625}, {"start": 2968.4, "end": 2968.54, "word": " one", "probability": 0.7041015625}, {"start": 2968.54, "end": 2968.8, "word": " running", "probability": 0.173828125}, {"start": 2968.8, "end": 2968.94, "word": " on", "probability": 0.9248046875}, {"start": 2968.94, "end": 2969.04, "word": " a", "probability": 0.900390625}, {"start": 2969.04, "end": 2969.32, "word": " server", "probability": 0.939453125}, {"start": 2969.32, "end": 2969.5, "word": " or", "probability": 0.9580078125}, {"start": 2969.5, "end": 2970.04, "word": " container,", "probability": 0.8369140625}, {"start": 2970.66, "end": 2970.84, "word": " what", "probability": 0.72216796875}, {"start": 2970.84, "end": 2970.88, "word": " are", "probability": 0.86083984375}, {"start": 2970.88, "end": 2970.96, "word": " its", "probability": 0.82666015625}, {"start": 2970.96, "end": 2971.32, "word": " characteristics", "probability": 0.463623046875}, {"start": 2971.32, "end": 2971.58, "word": " and", "probability": 0.68310546875}, {"start": 2971.58, "end": 2971.64, "word": " what", "probability": 0.4599609375}, {"start": 2971.64, "end": 2971.64, "word": " are", "probability": 0.4609375}, {"start": 2971.64, "end": 2971.68, "word": " its", "probability": 0.52734375}, {"start": 2971.68, "end": 2971.96, "word": " qualities?", "probability": 0.183349609375}, {"start": 2972.98, "end": 2973.28, "word": " What", "probability": 0.82421875}, {"start": 2973.28, "end": 2973.32, "word": " are", "probability": 0.92333984375}, {"start": 2973.32, "end": 2973.42, "word": " its", "probability": 0.84912109375}, {"start": 2973.42, "end": 2973.76, "word": " characteristics?", "probability": 0.77978515625}, {"start": 2974.08, "end": 2974.38, "word": " That", "probability": 0.470947265625}, {"start": 2974.38, "end": 2974.56, "word": " if", "probability": 0.83251953125}, {"start": 2974.56, "end": 2974.86, "word": " there", "probability": 0.8740234375}, {"start": 2974.86, "end": 2974.86, "word": " is", "probability": 0.91455078125}, {"start": 2974.86, "end": 2974.96, "word": " a", "probability": 0.9306640625}, {"start": 2974.96, "end": 2975.14, "word": " service", "probability": 0.5615234375}, {"start": 2975.14, "end": 2975.3, "word": " that", "probability": 0.6748046875}, {"start": 2975.3, "end": 2975.68, "word": " drops,", "probability": 0.175537109375}, {"start": 2977.56, "end": 2978.16, "word": " okay?", "probability": 0.33154296875}, {"start": 2978.38, "end": 2978.44, "word": " The", "probability": 0.66064453125}, {"start": 2978.44, "end": 2978.64, "word": " rest", "probability": 0.49658203125}, {"start": 2978.64, "end": 2978.86, "word": " remain", "probability": 0.362548828125}], "temperature": 1.0}, {"id": 122, "seek": 300400, "start": 2980.56, "end": 3004.0, "text": " This is a big advantage. The other advantage is that instead of all the requests, some users want this service, and some others want this service, and some others want this service. In the first design, all the requests came to one server. Now the requests are distributed among them, so the load is less.", "tokens": [639, 307, 257, 955, 5002, 13, 440, 661, 5002, 307, 300, 2602, 295, 439, 264, 12475, 11, 512, 5022, 528, 341, 2643, 11, 293, 512, 2357, 528, 341, 2643, 11, 293, 512, 2357, 528, 341, 2643, 13, 682, 264, 700, 1715, 11, 439, 264, 12475, 1361, 281, 472, 7154, 13, 823, 264, 12475, 366, 12631, 3654, 552, 11, 370, 264, 3677, 307, 1570, 13], "avg_logprob": -0.5389423076923077, "compression_ratio": 1.9006211180124224, "no_speech_prob": 1.6570091247558594e-05, "words": [{"start": 2980.56, "end": 2981.12, "word": " This", "probability": 0.0784912109375}, {"start": 2981.12, "end": 2981.68, "word": " is", "probability": 0.87158203125}, {"start": 2981.68, "end": 2981.68, "word": " a", "probability": 0.82275390625}, {"start": 2981.68, "end": 2982.12, "word": " big", "probability": 0.492431640625}, {"start": 2982.12, "end": 2982.12, "word": " advantage.", "probability": 0.71240234375}, {"start": 2982.98, "end": 2983.54, "word": " The", "probability": 0.39599609375}, {"start": 2983.54, "end": 2983.62, "word": " other", "probability": 0.7080078125}, {"start": 2983.62, "end": 2983.76, "word": " advantage", "probability": 0.82421875}, {"start": 2983.76, "end": 2984.26, "word": " is", "probability": 0.81494140625}, {"start": 2984.26, "end": 2984.34, "word": " that", "probability": 0.814453125}, {"start": 2984.34, "end": 2985.74, "word": " instead", "probability": 0.27294921875}, {"start": 2985.74, "end": 2985.92, "word": " of", "probability": 0.95703125}, {"start": 2985.92, "end": 2986.48, "word": " all", "probability": 0.505859375}, {"start": 2986.48, "end": 2986.58, "word": " the", "probability": 0.3466796875}, {"start": 2986.58, "end": 2987.06, "word": " requests,", "probability": 0.65087890625}, {"start": 2987.52, "end": 2987.62, "word": " some", "probability": 0.55615234375}, {"start": 2987.62, "end": 2988.74, "word": " users", "probability": 0.5458984375}, {"start": 2988.74, "end": 2989.72, "word": " want", "probability": 0.320556640625}, {"start": 2989.72, "end": 2989.82, "word": " this", "probability": 0.359619140625}, {"start": 2989.82, "end": 2990.04, "word": " service,", "probability": 0.83935546875}, {"start": 2990.48, "end": 2990.8, "word": " and", "probability": 0.393310546875}, {"start": 2990.8, "end": 2991.0, "word": " some", "probability": 0.7373046875}, {"start": 2991.0, "end": 2991.18, "word": " others", "probability": 0.39501953125}, {"start": 2991.18, "end": 2991.38, "word": " want", "probability": 0.76611328125}, {"start": 2991.38, "end": 2991.94, "word": " this", "probability": 0.57177734375}, {"start": 2991.94, "end": 2991.96, "word": " service,", "probability": 0.81640625}, {"start": 2992.24, "end": 2992.6, "word": " and", "probability": 0.72607421875}, {"start": 2992.6, "end": 2992.76, "word": " some", "probability": 0.83740234375}, {"start": 2992.76, "end": 2992.94, "word": " others", "probability": 0.830078125}, {"start": 2992.94, "end": 2993.12, "word": " want", "probability": 0.85986328125}, {"start": 2993.12, "end": 2994.24, "word": " this", "probability": 0.86083984375}, {"start": 2994.24, "end": 2994.3, "word": " service.", "probability": 0.79833984375}, {"start": 2995.14, "end": 2995.7, "word": " In", "probability": 0.76806640625}, {"start": 2995.7, "end": 2995.78, "word": " the", "probability": 0.89697265625}, {"start": 2995.78, "end": 2995.78, "word": " first", "probability": 0.7060546875}, {"start": 2995.78, "end": 2996.1, "word": " design,", "probability": 0.88720703125}, {"start": 2996.62, "end": 2997.08, "word": " all", "probability": 0.90771484375}, {"start": 2997.08, "end": 2997.18, "word": " the", "probability": 0.56103515625}, {"start": 2997.18, "end": 2997.7, "word": " requests", "probability": 0.80322265625}, {"start": 2997.7, "end": 2999.16, "word": " came", "probability": 0.556640625}, {"start": 2999.16, "end": 2999.26, "word": " to", "probability": 0.75634765625}, {"start": 2999.26, "end": 2999.32, "word": " one", "probability": 0.5703125}, {"start": 2999.32, "end": 2999.68, "word": " server.", "probability": 0.9296875}, {"start": 2999.96, "end": 3000.1, "word": " Now", "probability": 0.29541015625}, {"start": 3000.1, "end": 3000.22, "word": " the", "probability": 0.427734375}, {"start": 3000.22, "end": 3000.52, "word": " requests", "probability": 0.51904296875}, {"start": 3000.52, "end": 3000.86, "word": " are", "probability": 0.69970703125}, {"start": 3000.86, "end": 3002.3, "word": " distributed", "probability": 0.7119140625}, {"start": 3002.3, "end": 3002.58, "word": " among", "probability": 0.47802734375}, {"start": 3002.58, "end": 3002.72, "word": " them,", "probability": 0.5830078125}, {"start": 3002.82, "end": 3003.02, "word": " so", "probability": 0.78076171875}, {"start": 3003.02, "end": 3003.48, "word": " the", "probability": 0.67578125}, {"start": 3003.48, "end": 3003.72, "word": " load", "probability": 0.92431640625}, {"start": 3003.72, "end": 3003.78, "word": " is", "probability": 0.61083984375}, {"start": 3003.78, "end": 3004.0, "word": " less.", "probability": 0.369873046875}], "temperature": 1.0}, {"id": 123, "seek": 302355, "start": 3007.95, "end": 3023.55, "text": "The existing challenge is that these components need to communicate with each other. For example, when I search, I need to know what's in the inventory.", "tokens": [2278, 6741, 3430, 307, 300, 613, 6677, 643, 281, 7890, 365, 1184, 661, 13, 1171, 1365, 11, 562, 286, 3164, 11, 286, 643, 281, 458, 437, 311, 294, 264, 14228, 13], "avg_logprob": -0.5527343675494194, "compression_ratio": 1.2773109243697478, "no_speech_prob": 1.7285346984863281e-06, "words": [{"start": 3007.95, "end": 3008.33, "word": "The", "probability": 0.414794921875}, {"start": 3008.33, "end": 3008.33, "word": " existing", "probability": 0.10223388671875}, {"start": 3008.33, "end": 3008.81, "word": " challenge", "probability": 0.65771484375}, {"start": 3008.81, "end": 3010.19, "word": " is", "probability": 0.7900390625}, {"start": 3010.19, "end": 3010.29, "word": " that", "probability": 0.84716796875}, {"start": 3010.29, "end": 3010.59, "word": " these", "probability": 0.76708984375}, {"start": 3010.59, "end": 3011.91, "word": " components", "probability": 0.82421875}, {"start": 3011.91, "end": 3012.33, "word": " need", "probability": 0.67041015625}, {"start": 3012.33, "end": 3012.43, "word": " to", "probability": 0.94482421875}, {"start": 3012.43, "end": 3012.75, "word": " communicate", "probability": 0.344970703125}, {"start": 3012.75, "end": 3012.93, "word": " with", "probability": 0.8212890625}, {"start": 3012.93, "end": 3013.23, "word": " each", "probability": 0.9033203125}, {"start": 3013.23, "end": 3013.27, "word": " other.", "probability": 0.8984375}, {"start": 3014.33, "end": 3014.63, "word": " For", "probability": 0.214599609375}, {"start": 3014.63, "end": 3014.81, "word": " example,", "probability": 0.69091796875}, {"start": 3014.81, "end": 3015.59, "word": " when", "probability": 0.28857421875}, {"start": 3015.59, "end": 3018.89, "word": " I", "probability": 0.7197265625}, {"start": 3018.89, "end": 3019.27, "word": " search,", "probability": 0.48486328125}, {"start": 3019.81, "end": 3020.77, "word": " I", "probability": 0.64599609375}, {"start": 3020.77, "end": 3020.85, "word": " need", "probability": 0.1904296875}, {"start": 3020.85, "end": 3021.27, "word": " to", "probability": 0.95361328125}, {"start": 3021.27, "end": 3021.43, "word": " know", "probability": 0.724609375}, {"start": 3021.43, "end": 3021.67, "word": " what's", "probability": 0.6148681640625}, {"start": 3021.67, "end": 3023.03, "word": " in", "probability": 0.8291015625}, {"start": 3023.03, "end": 3023.13, "word": " the", "probability": 0.6455078125}, {"start": 3023.13, "end": 3023.55, "word": " inventory.", "probability": 0.6689453125}], "temperature": 1.0}, {"id": 124, "seek": 305277, "start": 3025.53, "end": 3052.77, "text": " Of course, when you make a payment, there should be a relationship between the user accounts and the payment. Each of these services is present on the server, but they need to communicate with each other. How will they communicate with each other? Each of them has an API, and the other supports the API. See how they communicate internally through the HTTP protocol. This could be in a continent. Where is it? In another continent.", "tokens": [2720, 1164, 11, 562, 291, 652, 257, 10224, 11, 456, 820, 312, 257, 2480, 1296, 264, 4195, 9402, 293, 264, 10224, 13, 6947, 295, 613, 3328, 307, 1974, 322, 264, 7154, 11, 457, 436, 643, 281, 7890, 365, 1184, 661, 13, 1012, 486, 436, 7890, 365, 1184, 661, 30, 6947, 295, 552, 575, 364, 9362, 11, 293, 264, 661, 9346, 264, 9362, 13, 3008, 577, 436, 7890, 19501, 807, 264, 33283, 10336, 13, 639, 727, 312, 294, 257, 18932, 13, 2305, 307, 309, 30, 682, 1071, 18932, 13], "avg_logprob": -0.47261237294486397, "compression_ratio": 1.7601626016260163, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 3025.53, "end": 3025.73, "word": " Of", "probability": 0.194091796875}, {"start": 3025.73, "end": 3025.95, "word": " course,", "probability": 0.962890625}, {"start": 3026.05, "end": 3026.23, "word": " when", "probability": 0.361083984375}, {"start": 3026.23, "end": 3026.25, "word": " you", "probability": 0.39306640625}, {"start": 3026.25, "end": 3026.41, "word": " make", "probability": 0.5029296875}, {"start": 3026.41, "end": 3026.53, "word": " a", "probability": 0.6513671875}, {"start": 3026.53, "end": 3026.81, "word": " payment,", "probability": 0.9677734375}, {"start": 3027.05, "end": 3027.05, "word": " there", "probability": 0.3720703125}, {"start": 3027.05, "end": 3027.23, "word": " should", "probability": 0.43994140625}, {"start": 3027.23, "end": 3027.51, "word": " be", "probability": 0.9248046875}, {"start": 3027.51, "end": 3027.65, "word": " a", "probability": 0.779296875}, {"start": 3027.65, "end": 3027.87, "word": " relationship", "probability": 0.310791015625}, {"start": 3027.87, "end": 3028.01, "word": " between", "probability": 0.7919921875}, {"start": 3028.01, "end": 3028.07, "word": " the", "probability": 0.3583984375}, {"start": 3028.07, "end": 3028.23, "word": " user", "probability": 0.79150390625}, {"start": 3028.23, "end": 3028.87, "word": " accounts", "probability": 0.7119140625}, {"start": 3028.87, "end": 3029.61, "word": " and", "probability": 0.91748046875}, {"start": 3029.61, "end": 3029.69, "word": " the", "probability": 0.787109375}, {"start": 3029.69, "end": 3029.97, "word": " payment.", "probability": 0.9619140625}, {"start": 3030.59, "end": 3030.75, "word": " Each", "probability": 0.1451416015625}, {"start": 3030.75, "end": 3030.75, "word": " of", "probability": 0.51708984375}, {"start": 3030.75, "end": 3030.93, "word": " these", "probability": 0.69775390625}, {"start": 3030.93, "end": 3032.77, "word": " services", "probability": 0.57958984375}, {"start": 3032.77, "end": 3033.83, "word": " is", "probability": 0.5517578125}, {"start": 3033.83, "end": 3034.05, "word": " present", "probability": 0.333251953125}, {"start": 3034.05, "end": 3034.17, "word": " on", "probability": 0.90771484375}, {"start": 3034.17, "end": 3034.29, "word": " the", "probability": 0.7822265625}, {"start": 3034.29, "end": 3034.61, "word": " server,", "probability": 0.87939453125}, {"start": 3034.93, "end": 3035.43, "word": " but", "probability": 0.81298828125}, {"start": 3035.43, "end": 3035.53, "word": " they", "probability": 0.75}, {"start": 3035.53, "end": 3035.87, "word": " need", "probability": 0.77490234375}, {"start": 3035.87, "end": 3036.91, "word": " to", "probability": 0.94677734375}, {"start": 3036.91, "end": 3037.31, "word": " communicate", "probability": 0.74072265625}, {"start": 3037.31, "end": 3037.51, "word": " with", "probability": 0.82080078125}, {"start": 3037.51, "end": 3037.75, "word": " each", "probability": 0.927734375}, {"start": 3037.75, "end": 3037.75, "word": " other.", "probability": 0.8974609375}, {"start": 3038.53, "end": 3039.01, "word": " How", "probability": 0.6630859375}, {"start": 3039.01, "end": 3039.11, "word": " will", "probability": 0.485107421875}, {"start": 3039.11, "end": 3039.19, "word": " they", "probability": 0.87890625}, {"start": 3039.19, "end": 3039.43, "word": " communicate", "probability": 0.796875}, {"start": 3039.43, "end": 3039.61, "word": " with", "probability": 0.7822265625}, {"start": 3039.61, "end": 3039.87, "word": " each", "probability": 0.9541015625}, {"start": 3039.87, "end": 3039.87, "word": " other?", "probability": 0.89208984375}, {"start": 3040.23, "end": 3040.69, "word": " Each", "probability": 0.88916015625}, {"start": 3040.69, "end": 3041.01, "word": " of", "probability": 0.57568359375}, {"start": 3041.01, "end": 3041.15, "word": " them", "probability": 0.86376953125}, {"start": 3041.15, "end": 3041.35, "word": " has", "probability": 0.91748046875}, {"start": 3041.35, "end": 3041.51, "word": " an", "probability": 0.72314453125}, {"start": 3041.51, "end": 3041.77, "word": " API,", "probability": 0.904296875}, {"start": 3042.39, "end": 3042.63, "word": " and", "probability": 0.8544921875}, {"start": 3042.63, "end": 3042.73, "word": " the", "probability": 0.83837890625}, {"start": 3042.73, "end": 3042.87, "word": " other", "probability": 0.69921875}, {"start": 3042.87, "end": 3043.29, "word": " supports", "probability": 0.42919921875}, {"start": 3043.29, "end": 3043.47, "word": " the", "probability": 0.75146484375}, {"start": 3043.47, "end": 3043.79, "word": " API.", "probability": 0.90869140625}, {"start": 3044.51, "end": 3044.71, "word": " See", "probability": 0.222412109375}, {"start": 3044.71, "end": 3045.01, "word": " how", "probability": 0.85546875}, {"start": 3045.01, "end": 3045.19, "word": " they", "probability": 0.546875}, {"start": 3045.19, "end": 3046.85, "word": " communicate", "probability": 0.471923828125}, {"start": 3046.85, "end": 3046.89, "word": " internally", "probability": 0.82373046875}, {"start": 3046.89, "end": 3047.27, "word": " through", "probability": 0.64208984375}, {"start": 3047.27, "end": 3047.39, "word": " the", "probability": 0.244873046875}, {"start": 3047.39, "end": 3047.69, "word": " HTTP", "probability": 0.76708984375}, {"start": 3047.69, "end": 3048.65, "word": " protocol.", "probability": 0.9228515625}, {"start": 3048.83, "end": 3049.21, "word": " This", "probability": 0.275390625}, {"start": 3049.21, "end": 3049.35, "word": " could", "probability": 0.335205078125}, {"start": 3049.35, "end": 3049.55, "word": " be", "probability": 0.65673828125}, {"start": 3049.55, "end": 3049.85, "word": " in", "probability": 0.496337890625}, {"start": 3049.85, "end": 3050.19, "word": " a", "probability": 0.29833984375}, {"start": 3050.19, "end": 3050.19, "word": " continent.", "probability": 0.365234375}, {"start": 3050.49, "end": 3050.89, "word": " Where", "probability": 0.53076171875}, {"start": 3050.89, "end": 3050.89, "word": " is", "probability": 0.7294921875}, {"start": 3050.89, "end": 3050.99, "word": " it?", "probability": 0.491455078125}, {"start": 3051.95, "end": 3052.43, "word": " In", "probability": 0.486572265625}, {"start": 3052.43, "end": 3052.77, "word": " another", "probability": 0.830078125}, {"start": 3052.77, "end": 3052.77, "word": " continent.", "probability": 0.91845703125}], "temperature": 1.0}, {"id": 125, "seek": 307892, "start": 3054.22, "end": 3078.92, "text": " Of course, it became more difficult when all the classes are in the project itself. It's easy when you use a method like this and you're done. But here, no. Each class needs data to communicate with whom? With another service. So there is a cost. There is a delay between them. Communication is difficult.", "tokens": [2720, 1164, 11, 309, 3062, 544, 2252, 562, 439, 264, 5359, 366, 294, 264, 1716, 2564, 13, 467, 311, 1858, 562, 291, 764, 257, 3170, 411, 341, 293, 291, 434, 1096, 13, 583, 510, 11, 572, 13, 6947, 1508, 2203, 1412, 281, 7890, 365, 7101, 30, 2022, 1071, 2643, 13, 407, 456, 307, 257, 2063, 13, 821, 307, 257, 8577, 1296, 552, 13, 34930, 307, 2252, 13], "avg_logprob": -0.573529402999317, "compression_ratio": 1.5, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 3054.22, "end": 3054.4, "word": " Of", "probability": 0.25830078125}, {"start": 3054.4, "end": 3054.52, "word": " course,", "probability": 0.94091796875}, {"start": 3054.56, "end": 3054.88, "word": " it", "probability": 0.20751953125}, {"start": 3054.88, "end": 3055.1, "word": " became", "probability": 0.228271484375}, {"start": 3055.1, "end": 3055.24, "word": " more", "probability": 0.486328125}, {"start": 3055.24, "end": 3055.46, "word": " difficult", "probability": 0.7646484375}, {"start": 3055.46, "end": 3055.86, "word": " when", "probability": 0.4619140625}, {"start": 3055.86, "end": 3056.24, "word": " all", "probability": 0.673828125}, {"start": 3056.24, "end": 3056.26, "word": " the", "probability": 0.2861328125}, {"start": 3056.26, "end": 3056.62, "word": " classes", "probability": 0.8916015625}, {"start": 3056.62, "end": 3056.92, "word": " are", "probability": 0.5625}, {"start": 3056.92, "end": 3057.3, "word": " in", "probability": 0.30322265625}, {"start": 3057.3, "end": 3057.54, "word": " the", "probability": 0.591796875}, {"start": 3057.54, "end": 3058.42, "word": " project", "probability": 0.646484375}, {"start": 3058.42, "end": 3058.92, "word": " itself.", "probability": 0.377197265625}, {"start": 3059.7, "end": 3060.24, "word": " It's", "probability": 0.5018310546875}, {"start": 3060.24, "end": 3060.42, "word": " easy", "probability": 0.728515625}, {"start": 3060.42, "end": 3060.56, "word": " when", "probability": 0.495361328125}, {"start": 3060.56, "end": 3060.74, "word": " you", "probability": 0.9384765625}, {"start": 3060.74, "end": 3061.5, "word": " use", "probability": 0.1978759765625}, {"start": 3061.5, "end": 3061.66, "word": " a", "probability": 0.38818359375}, {"start": 3061.66, "end": 3061.88, "word": " method", "probability": 0.87548828125}, {"start": 3061.88, "end": 3062.0, "word": " like", "probability": 0.41650390625}, {"start": 3062.0, "end": 3062.12, "word": " this", "probability": 0.7490234375}, {"start": 3062.12, "end": 3062.16, "word": " and", "probability": 0.60595703125}, {"start": 3062.16, "end": 3062.28, "word": " you're", "probability": 0.4044189453125}, {"start": 3062.28, "end": 3062.46, "word": " done.", "probability": 0.77734375}, {"start": 3062.98, "end": 3063.46, "word": " But", "probability": 0.8974609375}, {"start": 3063.46, "end": 3063.68, "word": " here,", "probability": 0.46728515625}, {"start": 3063.84, "end": 3063.84, "word": " no.", "probability": 0.381103515625}, {"start": 3064.48, "end": 3064.74, "word": " Each", "probability": 0.505859375}, {"start": 3064.74, "end": 3065.88, "word": " class", "probability": 0.90380859375}, {"start": 3065.88, "end": 3066.08, "word": " needs", "probability": 0.65966796875}, {"start": 3066.08, "end": 3066.54, "word": " data", "probability": 0.8134765625}, {"start": 3066.54, "end": 3067.1, "word": " to", "probability": 0.48828125}, {"start": 3067.1, "end": 3067.52, "word": " communicate", "probability": 0.76806640625}, {"start": 3067.52, "end": 3067.72, "word": " with", "probability": 0.857421875}, {"start": 3067.72, "end": 3067.9, "word": " whom?", "probability": 0.468994140625}, {"start": 3068.42, "end": 3068.68, "word": " With", "probability": 0.7021484375}, {"start": 3068.68, "end": 3068.82, "word": " another", "probability": 0.61962890625}, {"start": 3068.82, "end": 3069.08, "word": " service.", "probability": 0.90380859375}, {"start": 3070.0, "end": 3070.52, "word": " So", "probability": 0.30322265625}, {"start": 3070.52, "end": 3071.6, "word": " there", "probability": 0.385986328125}, {"start": 3071.6, "end": 3071.94, "word": " is", "probability": 0.33203125}, {"start": 3071.94, "end": 3072.4, "word": " a", "probability": 0.77783203125}, {"start": 3072.4, "end": 3074.12, "word": " cost.", "probability": 0.8642578125}, {"start": 3074.56, "end": 3075.1, "word": " There", "probability": 0.275390625}, {"start": 3075.1, "end": 3075.48, "word": " is", "probability": 0.6845703125}, {"start": 3075.48, "end": 3075.54, "word": " a", "probability": 0.71728515625}, {"start": 3075.54, "end": 3075.82, "word": " delay", "probability": 0.97216796875}, {"start": 3075.82, "end": 3076.1, "word": " between", "probability": 0.79296875}, {"start": 3076.1, "end": 3076.32, "word": " them.", "probability": 0.67236328125}, {"start": 3077.94, "end": 3078.48, "word": " Communication", "probability": 0.78759765625}, {"start": 3078.48, "end": 3078.68, "word": " is", "probability": 0.8837890625}, {"start": 3078.68, "end": 3078.92, "word": " difficult.", "probability": 0.77197265625}], "temperature": 1.0}, {"id": 126, "seek": 309966, "start": 3080.54, "end": 3099.66, "text": "unless they are in the same place, same project, same package, same classes, same NU, same study method and that's it. That's how each one is isolated in the server. Of course, who uses the microservice architecture? This is the goal of the huge enterprise companies. When we talk about millions of users, it is impossible to manage them", "tokens": [409, 1832, 436, 366, 294, 264, 912, 1081, 11, 912, 1716, 11, 912, 7372, 11, 912, 5359, 11, 912, 426, 52, 11, 912, 2979, 3170, 293, 300, 311, 309, 13, 663, 311, 577, 1184, 472, 307, 14621, 294, 264, 7154, 13, 2720, 1164, 11, 567, 4960, 264, 15547, 25006, 9482, 30, 639, 307, 264, 3387, 295, 264, 2603, 14132, 3431, 13, 1133, 321, 751, 466, 6803, 295, 5022, 11, 309, 307, 6243, 281, 3067, 552], "avg_logprob": -0.6138979996505537, "compression_ratio": 1.5896226415094339, "no_speech_prob": 4.947185516357422e-06, "words": [{"start": 3080.54, "end": 3081.0, "word": "unless", "probability": 0.404998779296875}, {"start": 3081.0, "end": 3081.24, "word": " they", "probability": 0.7568359375}, {"start": 3081.24, "end": 3081.4, "word": " are", "probability": 0.58447265625}, {"start": 3081.4, "end": 3081.76, "word": " in", "probability": 0.20361328125}, {"start": 3081.76, "end": 3082.18, "word": " the", "probability": 0.6005859375}, {"start": 3082.18, "end": 3082.38, "word": " same", "probability": 0.86181640625}, {"start": 3082.38, "end": 3083.08, "word": " place,", "probability": 0.5302734375}, {"start": 3083.18, "end": 3083.4, "word": " same", "probability": 0.21044921875}, {"start": 3083.4, "end": 3083.82, "word": " project,", "probability": 0.80029296875}, {"start": 3083.96, "end": 3084.1, "word": " same", "probability": 0.66845703125}, {"start": 3084.1, "end": 3084.52, "word": " package,", "probability": 0.95361328125}, {"start": 3084.6, "end": 3084.7, "word": " same", "probability": 0.421142578125}, {"start": 3084.7, "end": 3085.04, "word": " classes,", "probability": 0.8291015625}, {"start": 3085.12, "end": 3085.22, "word": " same", "probability": 0.5888671875}, {"start": 3085.22, "end": 3085.72, "word": " NU,", "probability": 0.3781890869140625}, {"start": 3085.88, "end": 3086.1, "word": " same", "probability": 0.6064453125}, {"start": 3086.1, "end": 3086.38, "word": " study", "probability": 0.72216796875}, {"start": 3086.38, "end": 3086.68, "word": " method", "probability": 0.7744140625}, {"start": 3086.68, "end": 3086.74, "word": " and", "probability": 0.4228515625}, {"start": 3086.74, "end": 3087.1, "word": " that's", "probability": 0.495849609375}, {"start": 3087.1, "end": 3087.24, "word": " it.", "probability": 0.85302734375}, {"start": 3087.8, "end": 3088.18, "word": " That's", "probability": 0.36456298828125}, {"start": 3088.18, "end": 3088.22, "word": " how", "probability": 0.73583984375}, {"start": 3088.22, "end": 3088.32, "word": " each", "probability": 0.361572265625}, {"start": 3088.32, "end": 3088.54, "word": " one", "probability": 0.546875}, {"start": 3088.54, "end": 3088.62, "word": " is", "probability": 0.69091796875}, {"start": 3088.62, "end": 3088.92, "word": " isolated", "probability": 0.263916015625}, {"start": 3088.92, "end": 3090.04, "word": " in", "probability": 0.325927734375}, {"start": 3090.04, "end": 3090.14, "word": " the", "probability": 0.63427734375}, {"start": 3090.14, "end": 3090.44, "word": " server.", "probability": 0.8056640625}, {"start": 3090.96, "end": 3091.34, "word": " Of", "probability": 0.2298583984375}, {"start": 3091.34, "end": 3091.4, "word": " course,", "probability": 0.95654296875}, {"start": 3091.52, "end": 3091.58, "word": " who", "probability": 0.6123046875}, {"start": 3091.58, "end": 3092.0, "word": " uses", "probability": 0.66162109375}, {"start": 3092.0, "end": 3092.14, "word": " the", "probability": 0.2685546875}, {"start": 3092.14, "end": 3092.64, "word": " microservice", "probability": 0.65576171875}, {"start": 3092.64, "end": 3093.22, "word": " architecture?", "probability": 0.9638671875}, {"start": 3093.7, "end": 3093.96, "word": " This", "probability": 0.173583984375}, {"start": 3093.96, "end": 3094.0, "word": " is", "probability": 0.86181640625}, {"start": 3094.0, "end": 3094.06, "word": " the", "probability": 0.5146484375}, {"start": 3094.06, "end": 3094.06, "word": " goal", "probability": 0.5712890625}, {"start": 3094.06, "end": 3094.18, "word": " of", "probability": 0.7783203125}, {"start": 3094.18, "end": 3094.2, "word": " the", "probability": 0.372314453125}, {"start": 3094.2, "end": 3094.62, "word": " huge", "probability": 0.31005859375}, {"start": 3094.62, "end": 3095.0, "word": " enterprise", "probability": 0.58203125}, {"start": 3095.0, "end": 3095.58, "word": " companies.", "probability": 0.79248046875}, {"start": 3095.72, "end": 3095.9, "word": " When", "probability": 0.6640625}, {"start": 3095.9, "end": 3096.1, "word": " we", "probability": 0.91259765625}, {"start": 3096.1, "end": 3096.26, "word": " talk", "probability": 0.7109375}, {"start": 3096.26, "end": 3096.58, "word": " about", "probability": 0.90087890625}, {"start": 3096.58, "end": 3097.04, "word": " millions", "probability": 0.91357421875}, {"start": 3097.04, "end": 3097.72, "word": " of", "probability": 0.9580078125}, {"start": 3097.72, "end": 3098.18, "word": " users,", "probability": 0.927734375}, {"start": 3098.26, "end": 3098.26, "word": " it", "probability": 0.6982421875}, {"start": 3098.26, "end": 3098.4, "word": " is", "probability": 0.6875}, {"start": 3098.4, "end": 3098.8, "word": " impossible", "probability": 0.84033203125}, {"start": 3098.8, "end": 3098.96, "word": " to", "probability": 0.693359375}, {"start": 3098.96, "end": 3099.34, "word": " manage", "probability": 0.37744140625}, {"start": 3099.34, "end": 3099.66, "word": " them", "probability": 0.8330078125}], "temperature": 1.0}, {"id": 127, "seek": 312937, "start": 3100.83, "end": 3129.37, "text": " In one server, we talk about Amazon, Google, Netflix, etc. These are huge companies with millions if not billions of users. There is no server or hardware that can handle all these requests. So they separate the services and let them communicate with each other. This is the micro-services architecture.", "tokens": [682, 472, 7154, 11, 321, 751, 466, 6795, 11, 3329, 11, 12778, 11, 5183, 13, 1981, 366, 2603, 3431, 365, 6803, 498, 406, 17375, 295, 5022, 13, 821, 307, 572, 7154, 420, 8837, 300, 393, 4813, 439, 613, 12475, 13, 407, 436, 4994, 264, 3328, 293, 718, 552, 7890, 365, 1184, 661, 13, 639, 307, 264, 4532, 12, 82, 47480, 9482, 13], "avg_logprob": -0.4243551719756353, "compression_ratio": 1.5124378109452736, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 3100.83, "end": 3101.29, "word": " In", "probability": 0.188720703125}, {"start": 3101.29, "end": 3101.95, "word": " one", "probability": 0.68994140625}, {"start": 3101.95, "end": 3101.95, "word": " server,", "probability": 0.88037109375}, {"start": 3102.63, "end": 3102.93, "word": " we", "probability": 0.233154296875}, {"start": 3102.93, "end": 3103.05, "word": " talk", "probability": 0.2509765625}, {"start": 3103.05, "end": 3103.21, "word": " about", "probability": 0.912109375}, {"start": 3103.21, "end": 3103.57, "word": " Amazon,", "probability": 0.83447265625}, {"start": 3104.53, "end": 3105.23, "word": " Google,", "probability": 0.865234375}, {"start": 3105.99, "end": 3106.79, "word": " Netflix,", "probability": 0.72314453125}, {"start": 3107.09, "end": 3107.87, "word": " etc.", "probability": 0.401123046875}, {"start": 3108.43, "end": 3108.69, "word": " These", "probability": 0.6474609375}, {"start": 3108.69, "end": 3109.19, "word": " are", "probability": 0.89208984375}, {"start": 3109.19, "end": 3111.03, "word": " huge", "probability": 0.49462890625}, {"start": 3111.03, "end": 3111.07, "word": " companies", "probability": 0.796875}, {"start": 3111.07, "end": 3111.79, "word": " with", "probability": 0.3974609375}, {"start": 3111.79, "end": 3112.31, "word": " millions", "probability": 0.736328125}, {"start": 3112.31, "end": 3112.65, "word": " if", "probability": 0.29931640625}, {"start": 3112.65, "end": 3113.19, "word": " not", "probability": 0.93505859375}, {"start": 3113.19, "end": 3113.81, "word": " billions", "probability": 0.9326171875}, {"start": 3113.81, "end": 3114.61, "word": " of", "probability": 0.9228515625}, {"start": 3114.61, "end": 3115.15, "word": " users.", "probability": 0.91845703125}, {"start": 3115.65, "end": 3116.45, "word": " There", "probability": 0.67626953125}, {"start": 3116.45, "end": 3116.53, "word": " is", "probability": 0.77197265625}, {"start": 3116.53, "end": 3116.67, "word": " no", "probability": 0.87451171875}, {"start": 3116.67, "end": 3117.15, "word": " server", "probability": 0.6865234375}, {"start": 3117.15, "end": 3117.75, "word": " or", "probability": 0.5126953125}, {"start": 3117.75, "end": 3118.31, "word": " hardware", "probability": 0.94140625}, {"start": 3118.31, "end": 3118.87, "word": " that", "probability": 0.591796875}, {"start": 3118.87, "end": 3119.01, "word": " can", "probability": 0.794921875}, {"start": 3119.01, "end": 3119.57, "word": " handle", "probability": 0.611328125}, {"start": 3119.57, "end": 3121.49, "word": " all", "probability": 0.806640625}, {"start": 3121.49, "end": 3121.55, "word": " these", "probability": 0.63427734375}, {"start": 3121.55, "end": 3121.97, "word": " requests.", "probability": 0.83056640625}, {"start": 3122.43, "end": 3123.01, "word": " So", "probability": 0.39599609375}, {"start": 3123.01, "end": 3123.07, "word": " they", "probability": 0.4208984375}, {"start": 3123.07, "end": 3123.33, "word": " separate", "probability": 0.50390625}, {"start": 3123.33, "end": 3123.53, "word": " the", "probability": 0.66357421875}, {"start": 3123.53, "end": 3124.03, "word": " services", "probability": 0.921875}, {"start": 3124.03, "end": 3124.23, "word": " and", "probability": 0.7744140625}, {"start": 3124.23, "end": 3124.45, "word": " let", "probability": 0.447998046875}, {"start": 3124.45, "end": 3125.73, "word": " them", "probability": 0.60986328125}, {"start": 3125.73, "end": 3126.59, "word": " communicate", "probability": 0.7724609375}, {"start": 3126.59, "end": 3127.19, "word": " with", "probability": 0.6787109375}, {"start": 3127.19, "end": 3127.49, "word": " each", "probability": 0.91943359375}, {"start": 3127.49, "end": 3127.49, "word": " other.", "probability": 0.89697265625}, {"start": 3127.93, "end": 3128.13, "word": " This", "probability": 0.60888671875}, {"start": 3128.13, "end": 3128.27, "word": " is", "probability": 0.89404296875}, {"start": 3128.27, "end": 3128.27, "word": " the", "probability": 0.490478515625}, {"start": 3128.27, "end": 3128.41, "word": " micro", "probability": 0.5791015625}, {"start": 3128.41, "end": 3128.83, "word": "-services", "probability": 0.6940104166666666}, {"start": 3128.83, "end": 3129.37, "word": " architecture.", "probability": 0.95849609375}], "temperature": 1.0}, {"id": 128, "seek": 315468, "start": 3130.68, "end": 3154.68, "text": " In short, I do a web service, but each service has its own web service, each service is on its own server, and then I connect to the services. As an architecture, it is difficult to build, and it is difficult to communicate between them, but this is the solution I have, so that I can understand a very large number of users. We are still in Gaza.", "tokens": [682, 2099, 11, 286, 360, 257, 3670, 2643, 11, 457, 1184, 2643, 575, 1080, 1065, 3670, 2643, 11, 1184, 2643, 307, 322, 1080, 1065, 7154, 11, 293, 550, 286, 1745, 281, 264, 3328, 13, 1018, 364, 9482, 11, 309, 307, 2252, 281, 1322, 11, 293, 309, 307, 2252, 281, 7890, 1296, 552, 11, 457, 341, 307, 264, 3827, 286, 362, 11, 370, 300, 286, 393, 1223, 257, 588, 2416, 1230, 295, 5022, 13, 492, 366, 920, 294, 37800, 13], "avg_logprob": -0.42421875819563865, "compression_ratio": 1.7227722772277227, "no_speech_prob": 5.066394805908203e-06, "words": [{"start": 3130.68, "end": 3130.86, "word": " In", "probability": 0.4453125}, {"start": 3130.86, "end": 3131.2, "word": " short,", "probability": 0.59912109375}, {"start": 3131.5, "end": 3132.14, "word": " I", "probability": 0.72998046875}, {"start": 3132.14, "end": 3132.38, "word": " do", "probability": 0.1474609375}, {"start": 3132.38, "end": 3132.5, "word": " a", "probability": 0.279052734375}, {"start": 3132.5, "end": 3132.58, "word": " web", "probability": 0.84765625}, {"start": 3132.58, "end": 3133.02, "word": " service,", "probability": 0.87353515625}, {"start": 3133.42, "end": 3133.68, "word": " but", "probability": 0.63525390625}, {"start": 3133.68, "end": 3133.92, "word": " each", "probability": 0.751953125}, {"start": 3133.92, "end": 3134.16, "word": " service", "probability": 0.7734375}, {"start": 3134.16, "end": 3134.32, "word": " has", "probability": 0.8115234375}, {"start": 3134.32, "end": 3134.4, "word": " its", "probability": 0.70751953125}, {"start": 3134.4, "end": 3134.4, "word": " own", "probability": 0.91845703125}, {"start": 3134.4, "end": 3134.48, "word": " web", "probability": 0.80908203125}, {"start": 3134.48, "end": 3134.98, "word": " service,", "probability": 0.861328125}, {"start": 3136.0, "end": 3136.2, "word": " each", "probability": 0.52587890625}, {"start": 3136.2, "end": 3136.48, "word": " service", "probability": 0.77392578125}, {"start": 3136.48, "end": 3136.56, "word": " is", "probability": 0.494140625}, {"start": 3136.56, "end": 3136.82, "word": " on", "probability": 0.377685546875}, {"start": 3136.82, "end": 3136.98, "word": " its", "probability": 0.53515625}, {"start": 3136.98, "end": 3136.98, "word": " own", "probability": 0.87744140625}, {"start": 3136.98, "end": 3137.28, "word": " server,", "probability": 0.8251953125}, {"start": 3137.62, "end": 3137.68, "word": " and", "probability": 0.60205078125}, {"start": 3137.68, "end": 3137.86, "word": " then", "probability": 0.66064453125}, {"start": 3137.86, "end": 3138.0, "word": " I", "probability": 0.94482421875}, {"start": 3138.0, "end": 3138.2, "word": " connect", "probability": 0.69580078125}, {"start": 3138.2, "end": 3138.5, "word": " to", "probability": 0.304931640625}, {"start": 3138.5, "end": 3139.14, "word": " the", "probability": 0.59765625}, {"start": 3139.14, "end": 3140.0, "word": " services.", "probability": 0.73583984375}, {"start": 3140.5, "end": 3141.02, "word": " As", "probability": 0.212646484375}, {"start": 3141.02, "end": 3142.6, "word": " an", "probability": 0.7236328125}, {"start": 3142.6, "end": 3143.18, "word": " architecture,", "probability": 0.89599609375}, {"start": 3143.28, "end": 3143.28, "word": " it", "probability": 0.88916015625}, {"start": 3143.28, "end": 3143.32, "word": " is", "probability": 0.50390625}, {"start": 3143.32, "end": 3143.56, "word": " difficult", "probability": 0.73486328125}, {"start": 3143.56, "end": 3143.74, "word": " to", "probability": 0.68505859375}, {"start": 3143.74, "end": 3144.0, "word": " build,", "probability": 0.828125}, {"start": 3144.78, "end": 3145.24, "word": " and", "probability": 0.42138671875}, {"start": 3145.24, "end": 3145.24, "word": " it", "probability": 0.396728515625}, {"start": 3145.24, "end": 3145.96, "word": " is", "probability": 0.87890625}, {"start": 3145.96, "end": 3146.16, "word": " difficult", "probability": 0.88916015625}, {"start": 3146.16, "end": 3146.3, "word": " to", "probability": 0.96533203125}, {"start": 3146.3, "end": 3146.64, "word": " communicate", "probability": 0.828125}, {"start": 3146.64, "end": 3147.0, "word": " between", "probability": 0.54248046875}, {"start": 3147.0, "end": 3147.22, "word": " them,", "probability": 0.87841796875}, {"start": 3147.6, "end": 3147.96, "word": " but", "probability": 0.88818359375}, {"start": 3147.96, "end": 3148.22, "word": " this", "probability": 0.85400390625}, {"start": 3148.22, "end": 3148.24, "word": " is", "probability": 0.74267578125}, {"start": 3148.24, "end": 3148.34, "word": " the", "probability": 0.8330078125}, {"start": 3148.34, "end": 3148.58, "word": " solution", "probability": 0.87646484375}, {"start": 3148.58, "end": 3148.72, "word": " I", "probability": 0.642578125}, {"start": 3148.72, "end": 3149.16, "word": " have,", "probability": 0.9189453125}, {"start": 3149.28, "end": 3149.42, "word": " so", "probability": 0.70361328125}, {"start": 3149.42, "end": 3149.62, "word": " that", "probability": 0.654296875}, {"start": 3149.62, "end": 3149.62, "word": " I", "probability": 0.9931640625}, {"start": 3149.62, "end": 3149.8, "word": " can", "probability": 0.93212890625}, {"start": 3149.8, "end": 3150.34, "word": " understand", "probability": 0.446533203125}, {"start": 3150.34, "end": 3151.68, "word": " a", "probability": 0.72119140625}, {"start": 3151.68, "end": 3152.08, "word": " very", "probability": 0.4072265625}, {"start": 3152.08, "end": 3152.46, "word": " large", "probability": 0.88818359375}, {"start": 3152.46, "end": 3152.46, "word": " number", "probability": 0.94287109375}, {"start": 3152.46, "end": 3152.8, "word": " of", "probability": 0.970703125}, {"start": 3152.8, "end": 3153.3, "word": " users.", "probability": 0.91259765625}, {"start": 3153.7, "end": 3154.06, "word": " We", "probability": 0.5576171875}, {"start": 3154.06, "end": 3154.24, "word": " are", "probability": 0.8349609375}, {"start": 3154.24, "end": 3154.24, "word": " still", "probability": 0.88720703125}, {"start": 3154.24, "end": 3154.4, "word": " in", "probability": 0.93505859375}, {"start": 3154.4, "end": 3154.68, "word": " Gaza.", "probability": 0.927734375}], "temperature": 1.0}, {"id": 129, "seek": 316152, "start": 3156.38, "end": 3161.52, "text": "Or in the systems operated by programmers in Gaza, even abroad, few of them work on their own.", "tokens": [21520, 294, 264, 3652, 20826, 538, 41504, 294, 37800, 11, 754, 12637, 11, 1326, 295, 552, 589, 322, 641, 1065, 13], "avg_logprob": -0.6637073863636364, "compression_ratio": 1.1058823529411765, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 3156.38, "end": 3156.68, "word": "Or", "probability": 0.425048828125}, {"start": 3156.68, "end": 3156.86, "word": " in", "probability": 0.491455078125}, {"start": 3156.86, "end": 3156.96, "word": " the", "probability": 0.64111328125}, {"start": 3156.96, "end": 3157.24, "word": " systems", "probability": 0.61083984375}, {"start": 3157.24, "end": 3157.98, "word": " operated", "probability": 0.203369140625}, {"start": 3157.98, "end": 3158.16, "word": " by", "probability": 0.94873046875}, {"start": 3158.16, "end": 3158.54, "word": " programmers", "probability": 0.75341796875}, {"start": 3158.54, "end": 3158.74, "word": " in", "probability": 0.814453125}, {"start": 3158.74, "end": 3159.04, "word": " Gaza,", "probability": 0.90625}, {"start": 3159.28, "end": 3159.34, "word": " even", "probability": 0.74462890625}, {"start": 3159.34, "end": 3159.78, "word": " abroad,", "probability": 0.86279296875}, {"start": 3160.44, "end": 3160.76, "word": " few", "probability": 0.32861328125}, {"start": 3160.76, "end": 3160.84, "word": " of", "probability": 0.270263671875}, {"start": 3160.84, "end": 3160.94, "word": " them", "probability": 0.5341796875}, {"start": 3160.94, "end": 3161.2, "word": " work", "probability": 0.453125}, {"start": 3161.2, "end": 3161.32, "word": " on", "probability": 0.450439453125}, {"start": 3161.32, "end": 3161.52, "word": " their", "probability": 0.233154296875}, {"start": 3161.52, "end": 3161.52, "word": " own.", "probability": 0.425048828125}], "temperature": 1.0}, {"id": 130, "seek": 318966, "start": 3164.1, "end": 3189.66, "text": " Because even the companies in the Arab world do not reach the number of requests to tens of millions, it can reach one or two million at most. So there is no need, its application does not have a big need. Even the largest market in the Gulf, the largest website in the Gulf can reach a million users.", "tokens": [1436, 754, 264, 3431, 294, 264, 8625, 1002, 360, 406, 2524, 264, 1230, 295, 12475, 281, 10688, 295, 6803, 11, 309, 393, 2524, 472, 420, 732, 2459, 412, 881, 13, 407, 456, 307, 572, 643, 11, 1080, 3861, 775, 406, 362, 257, 955, 643, 13, 2754, 264, 6443, 2142, 294, 264, 23033, 11, 264, 6443, 3144, 294, 264, 23033, 393, 2524, 257, 2459, 5022, 13], "avg_logprob": -0.5672348403569424, "compression_ratio": 1.6777777777777778, "no_speech_prob": 3.165006637573242e-05, "words": [{"start": 3164.1, "end": 3164.62, "word": " Because", "probability": 0.2410888671875}, {"start": 3164.62, "end": 3165.14, "word": " even", "probability": 0.78173828125}, {"start": 3165.14, "end": 3165.26, "word": " the", "probability": 0.2430419921875}, {"start": 3165.26, "end": 3165.6, "word": " companies", "probability": 0.603515625}, {"start": 3165.6, "end": 3165.78, "word": " in", "probability": 0.80810546875}, {"start": 3165.78, "end": 3165.92, "word": " the", "probability": 0.7802734375}, {"start": 3165.92, "end": 3166.36, "word": " Arab", "probability": 0.7744140625}, {"start": 3166.36, "end": 3166.46, "word": " world", "probability": 0.37548828125}, {"start": 3166.46, "end": 3166.7, "word": " do", "probability": 0.1641845703125}, {"start": 3166.7, "end": 3166.7, "word": " not", "probability": 0.9306640625}, {"start": 3166.7, "end": 3167.06, "word": " reach", "probability": 0.513671875}, {"start": 3167.06, "end": 3167.18, "word": " the", "probability": 0.5703125}, {"start": 3167.18, "end": 3167.34, "word": " number", "probability": 0.5205078125}, {"start": 3167.34, "end": 3167.46, "word": " of", "probability": 0.9521484375}, {"start": 3167.46, "end": 3167.76, "word": " requests", "probability": 0.685546875}, {"start": 3167.76, "end": 3168.58, "word": " to", "probability": 0.12432861328125}, {"start": 3168.58, "end": 3169.26, "word": " tens", "probability": 0.560546875}, {"start": 3169.26, "end": 3169.42, "word": " of", "probability": 0.96484375}, {"start": 3169.42, "end": 3169.58, "word": " millions,", "probability": 0.9404296875}, {"start": 3169.62, "end": 3169.7, "word": " it", "probability": 0.388671875}, {"start": 3169.7, "end": 3169.84, "word": " can", "probability": 0.63330078125}, {"start": 3169.84, "end": 3170.08, "word": " reach", "probability": 0.84033203125}, {"start": 3170.08, "end": 3170.24, "word": " one", "probability": 0.19921875}, {"start": 3170.24, "end": 3170.62, "word": " or", "probability": 0.449462890625}, {"start": 3170.62, "end": 3170.8, "word": " two", "probability": 0.919921875}, {"start": 3170.8, "end": 3171.12, "word": " million", "probability": 0.72314453125}, {"start": 3171.12, "end": 3171.24, "word": " at", "probability": 0.272216796875}, {"start": 3171.24, "end": 3171.64, "word": " most.", "probability": 0.86376953125}, {"start": 3173.22, "end": 3173.74, "word": " So", "probability": 0.409423828125}, {"start": 3173.74, "end": 3174.44, "word": " there", "probability": 0.64013671875}, {"start": 3174.44, "end": 3174.54, "word": " is", "probability": 0.83349609375}, {"start": 3174.54, "end": 3174.62, "word": " no", "probability": 0.4970703125}, {"start": 3174.62, "end": 3174.96, "word": " need,", "probability": 0.8154296875}, {"start": 3175.08, "end": 3175.28, "word": " its", "probability": 0.263916015625}, {"start": 3175.28, "end": 3175.7, "word": " application", "probability": 0.8037109375}, {"start": 3175.7, "end": 3177.1, "word": " does", "probability": 0.46435546875}, {"start": 3177.1, "end": 3179.06, "word": " not", "probability": 0.9423828125}, {"start": 3179.06, "end": 3179.3, "word": " have", "probability": 0.74462890625}, {"start": 3179.3, "end": 3179.42, "word": " a", "probability": 0.48193359375}, {"start": 3179.42, "end": 3180.6, "word": " big", "probability": 0.4072265625}, {"start": 3180.6, "end": 3180.64, "word": " need.", "probability": 0.85205078125}, {"start": 3180.9, "end": 3181.12, "word": " Even", "probability": 0.4931640625}, {"start": 3181.12, "end": 3181.78, "word": " the", "probability": 0.4921875}, {"start": 3181.78, "end": 3182.2, "word": " largest", "probability": 0.60791015625}, {"start": 3182.2, "end": 3184.42, "word": " market", "probability": 0.451416015625}, {"start": 3184.42, "end": 3185.48, "word": " in", "probability": 0.56494140625}, {"start": 3185.48, "end": 3185.86, "word": " the", "probability": 0.884765625}, {"start": 3185.86, "end": 3185.86, "word": " Gulf,", "probability": 0.89453125}, {"start": 3186.6, "end": 3187.06, "word": " the", "probability": 0.5810546875}, {"start": 3187.06, "end": 3187.32, "word": " largest", "probability": 0.83740234375}, {"start": 3187.32, "end": 3187.66, "word": " website", "probability": 0.410888671875}, {"start": 3187.66, "end": 3187.8, "word": " in", "probability": 0.9296875}, {"start": 3187.8, "end": 3187.92, "word": " the", "probability": 0.91455078125}, {"start": 3187.92, "end": 3188.16, "word": " Gulf", "probability": 0.89599609375}, {"start": 3188.16, "end": 3188.44, "word": " can", "probability": 0.66552734375}, {"start": 3188.44, "end": 3188.86, "word": " reach", "probability": 0.8291015625}, {"start": 3188.86, "end": 3189.08, "word": " a", "probability": 0.36572265625}, {"start": 3189.08, "end": 3189.22, "word": " million", "probability": 0.845703125}, {"start": 3189.22, "end": 3189.66, "word": " users.", "probability": 0.92431640625}], "temperature": 1.0}, {"id": 131, "seek": 321405, "start": 3190.35, "end": 3214.05, "text": "But when we talk about foreign websites, we are talking about tens of millions of calls per second. So they resort to the topic of microservices. But this was a general introduction to the topic. Up to here, this is what is required. This slide is for microservices.", "tokens": [7835, 562, 321, 751, 466, 5329, 12891, 11, 321, 366, 1417, 466, 10688, 295, 6803, 295, 5498, 680, 1150, 13, 407, 436, 19606, 281, 264, 4829, 295, 15547, 47480, 13, 583, 341, 390, 257, 2674, 9339, 281, 264, 4829, 13, 5858, 281, 510, 11, 341, 307, 437, 307, 4739, 13, 639, 4137, 307, 337, 15547, 47480, 13], "avg_logprob": -0.6379310612020821, "compression_ratio": 1.6319018404907975, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 3190.35, "end": 3190.61, "word": "But", "probability": 0.356201171875}, {"start": 3190.61, "end": 3190.77, "word": " when", "probability": 0.21484375}, {"start": 3190.77, "end": 3190.81, "word": " we", "probability": 0.80029296875}, {"start": 3190.81, "end": 3191.07, "word": " talk", "probability": 0.62841796875}, {"start": 3191.07, "end": 3191.19, "word": " about", "probability": 0.8896484375}, {"start": 3191.19, "end": 3191.77, "word": " foreign", "probability": 0.65283203125}, {"start": 3191.77, "end": 3191.99, "word": " websites,", "probability": 0.59521484375}, {"start": 3193.39, "end": 3193.89, "word": " we", "probability": 0.27978515625}, {"start": 3193.89, "end": 3194.03, "word": " are", "probability": 0.2247314453125}, {"start": 3194.03, "end": 3194.31, "word": " talking", "probability": 0.689453125}, {"start": 3194.31, "end": 3195.01, "word": " about", "probability": 0.841796875}, {"start": 3195.01, "end": 3196.87, "word": " tens", "probability": 0.47998046875}, {"start": 3196.87, "end": 3197.23, "word": " of", "probability": 0.96240234375}, {"start": 3197.23, "end": 3197.59, "word": " millions", "probability": 0.9296875}, {"start": 3197.59, "end": 3198.15, "word": " of", "probability": 0.87255859375}, {"start": 3198.15, "end": 3198.49, "word": " calls", "probability": 0.1468505859375}, {"start": 3198.49, "end": 3198.93, "word": " per", "probability": 0.419189453125}, {"start": 3198.93, "end": 3199.31, "word": " second.", "probability": 0.86181640625}, {"start": 3200.45, "end": 3201.07, "word": " So", "probability": 0.444091796875}, {"start": 3201.07, "end": 3201.25, "word": " they", "probability": 0.11370849609375}, {"start": 3201.25, "end": 3201.45, "word": " resort", "probability": 0.2196044921875}, {"start": 3201.45, "end": 3201.65, "word": " to", "probability": 0.96142578125}, {"start": 3201.65, "end": 3201.71, "word": " the", "probability": 0.3125}, {"start": 3201.71, "end": 3201.89, "word": " topic", "probability": 0.299560546875}, {"start": 3201.89, "end": 3202.75, "word": " of", "probability": 0.91796875}, {"start": 3202.75, "end": 3204.13, "word": " microservices.", "probability": 0.6865234375}, {"start": 3204.33, "end": 3204.53, "word": " But", "probability": 0.5146484375}, {"start": 3204.53, "end": 3204.71, "word": " this", "probability": 0.53466796875}, {"start": 3204.71, "end": 3204.93, "word": " was", "probability": 0.53125}, {"start": 3204.93, "end": 3205.49, "word": " a", "probability": 0.67138671875}, {"start": 3205.49, "end": 3206.07, "word": " general", "probability": 0.83642578125}, {"start": 3206.07, "end": 3206.07, "word": " introduction", "probability": 0.21875}, {"start": 3206.07, "end": 3207.21, "word": " to", "probability": 0.432861328125}, {"start": 3207.21, "end": 3207.31, "word": " the", "probability": 0.60595703125}, {"start": 3207.31, "end": 3207.59, "word": " topic.", "probability": 0.64794921875}, {"start": 3208.05, "end": 3208.29, "word": " Up", "probability": 0.176513671875}, {"start": 3208.29, "end": 3208.41, "word": " to", "probability": 0.84912109375}, {"start": 3208.41, "end": 3208.41, "word": " here,", "probability": 0.457275390625}, {"start": 3209.05, "end": 3209.21, "word": " this", "probability": 0.7744140625}, {"start": 3209.21, "end": 3209.31, "word": " is", "probability": 0.58056640625}, {"start": 3209.31, "end": 3209.45, "word": " what", "probability": 0.57470703125}, {"start": 3209.45, "end": 3209.45, "word": " is", "probability": 0.6865234375}, {"start": 3209.45, "end": 3209.85, "word": " required.", "probability": 0.685546875}, {"start": 3211.03, "end": 3211.65, "word": " This", "probability": 0.373291015625}, {"start": 3211.65, "end": 3212.03, "word": " slide", "probability": 0.60595703125}, {"start": 3212.03, "end": 3212.41, "word": " is", "probability": 0.6689453125}, {"start": 3212.41, "end": 3212.61, "word": " for", "probability": 0.37158203125}, {"start": 3212.61, "end": 3214.05, "word": " microservices.", "probability": 0.842529296875}], "temperature": 1.0}, {"id": 132, "seek": 323422, "start": 3215.8, "end": 3234.22, "text": " It's clear guys, did you understand what MVC is? All the people are talking about MVC, MVC, okay? It was an idea But as I told you, all the design patterns that we applied to it, it helps you to achieve the concept of MVC It's a simple concept to make the view design itself", "tokens": [467, 311, 1850, 1074, 11, 630, 291, 1223, 437, 17663, 34, 307, 30, 1057, 264, 561, 366, 1417, 466, 17663, 34, 11, 17663, 34, 11, 1392, 30, 467, 390, 364, 1558, 583, 382, 286, 1907, 291, 11, 439, 264, 1715, 8294, 300, 321, 6456, 281, 309, 11, 309, 3665, 291, 281, 4584, 264, 3410, 295, 17663, 34, 467, 311, 257, 2199, 3410, 281, 652, 264, 1910, 1715, 2564], "avg_logprob": -0.6173007039056309, "compression_ratio": 1.5193370165745856, "no_speech_prob": 4.231929779052734e-06, "words": [{"start": 3215.8, "end": 3215.98, "word": " It's", "probability": 0.41668701171875}, {"start": 3215.98, "end": 3216.18, "word": " clear", "probability": 0.52880859375}, {"start": 3216.18, "end": 3216.5, "word": " guys,", "probability": 0.25244140625}, {"start": 3216.6, "end": 3216.76, "word": " did", "probability": 0.298095703125}, {"start": 3216.76, "end": 3216.88, "word": " you", "probability": 0.96728515625}, {"start": 3216.88, "end": 3216.88, "word": " understand", "probability": 0.458984375}, {"start": 3216.88, "end": 3217.22, "word": " what", "probability": 0.603515625}, {"start": 3217.22, "end": 3217.82, "word": " MVC", "probability": 0.62200927734375}, {"start": 3217.82, "end": 3217.84, "word": " is?", "probability": 0.5771484375}, {"start": 3218.6, "end": 3219.02, "word": " All", "probability": 0.2012939453125}, {"start": 3219.02, "end": 3219.16, "word": " the", "probability": 0.3564453125}, {"start": 3219.16, "end": 3219.28, "word": " people", "probability": 0.712890625}, {"start": 3219.28, "end": 3219.36, "word": " are", "probability": 0.11663818359375}, {"start": 3219.36, "end": 3219.5, "word": " talking", "probability": 0.488525390625}, {"start": 3219.5, "end": 3219.6, "word": " about", "probability": 0.83349609375}, {"start": 3219.6, "end": 3219.92, "word": " MVC,", "probability": 0.7044677734375}, {"start": 3219.96, "end": 3220.44, "word": " MVC,", "probability": 0.800537109375}, {"start": 3220.5, "end": 3221.0, "word": " okay?", "probability": 0.11395263671875}, {"start": 3221.1, "end": 3221.3, "word": " It", "probability": 0.29638671875}, {"start": 3221.3, "end": 3221.7, "word": " was", "probability": 0.79052734375}, {"start": 3221.7, "end": 3221.86, "word": " an", "probability": 0.55224609375}, {"start": 3221.86, "end": 3222.02, "word": " idea", "probability": 0.90380859375}, {"start": 3222.02, "end": 3224.0, "word": " But", "probability": 0.330322265625}, {"start": 3224.0, "end": 3224.28, "word": " as", "probability": 0.60400390625}, {"start": 3224.28, "end": 3224.48, "word": " I", "probability": 0.98486328125}, {"start": 3224.48, "end": 3224.68, "word": " told", "probability": 0.5224609375}, {"start": 3224.68, "end": 3224.9, "word": " you,", "probability": 0.96484375}, {"start": 3225.0, "end": 3225.14, "word": " all", "probability": 0.91650390625}, {"start": 3225.14, "end": 3225.26, "word": " the", "probability": 0.72021484375}, {"start": 3225.26, "end": 3225.56, "word": " design", "probability": 0.73876953125}, {"start": 3225.56, "end": 3225.98, "word": " patterns", "probability": 0.86962890625}, {"start": 3225.98, "end": 3226.12, "word": " that", "probability": 0.64990234375}, {"start": 3226.12, "end": 3226.5, "word": " we", "probability": 0.94189453125}, {"start": 3226.5, "end": 3227.08, "word": " applied", "probability": 0.07354736328125}, {"start": 3227.08, "end": 3227.3, "word": " to", "probability": 0.6953125}, {"start": 3227.3, "end": 3227.6, "word": " it,", "probability": 0.48193359375}, {"start": 3227.98, "end": 3228.1, "word": " it", "probability": 0.297607421875}, {"start": 3228.1, "end": 3228.52, "word": " helps", "probability": 0.701171875}, {"start": 3228.52, "end": 3228.78, "word": " you", "probability": 0.92138671875}, {"start": 3228.78, "end": 3228.9, "word": " to", "probability": 0.42626953125}, {"start": 3228.9, "end": 3229.26, "word": " achieve", "probability": 0.54443359375}, {"start": 3229.26, "end": 3230.2, "word": " the", "probability": 0.84912109375}, {"start": 3230.2, "end": 3230.56, "word": " concept", "probability": 0.82763671875}, {"start": 3230.56, "end": 3231.06, "word": " of", "probability": 0.96923828125}, {"start": 3231.06, "end": 3231.44, "word": " MVC", "probability": 0.90087890625}, {"start": 3231.44, "end": 3231.62, "word": " It's", "probability": 0.515869140625}, {"start": 3231.62, "end": 3231.7, "word": " a", "probability": 0.927734375}, {"start": 3231.7, "end": 3231.7, "word": " simple", "probability": 0.94921875}, {"start": 3231.7, "end": 3232.34, "word": " concept", "probability": 0.84765625}, {"start": 3232.34, "end": 3232.92, "word": " to", "probability": 0.4228515625}, {"start": 3232.92, "end": 3233.12, "word": " make", "probability": 0.3564453125}, {"start": 3233.12, "end": 3233.24, "word": " the", "probability": 0.5986328125}, {"start": 3233.24, "end": 3233.42, "word": " view", "probability": 0.73095703125}, {"start": 3233.42, "end": 3233.78, "word": " design", "probability": 0.5166015625}, {"start": 3233.78, "end": 3234.22, "word": " itself", "probability": 0.359619140625}], "temperature": 1.0}, {"id": 133, "seek": 325931, "start": 3235.73, "end": 3259.31, "text": "and the controller by itself and the model. The most important thing is to separate the view from the model completely. The controller can sometimes not have a controller. I can let the view communicate with the model, but the most important thing is to separate the view from the model. This is the basis. The controller is made as a mediator to take a request and get the data and send it to the view. This picture is clear, guys.", "tokens": [474, 264, 10561, 538, 2564, 293, 264, 2316, 13, 440, 881, 1021, 551, 307, 281, 4994, 264, 1910, 490, 264, 2316, 2584, 13, 440, 10561, 393, 2171, 406, 362, 257, 10561, 13, 286, 393, 718, 264, 1910, 7890, 365, 264, 2316, 11, 457, 264, 881, 1021, 551, 307, 281, 4994, 264, 1910, 490, 264, 2316, 13, 639, 307, 264, 5143, 13, 440, 10561, 307, 1027, 382, 257, 17269, 1639, 281, 747, 257, 5308, 293, 483, 264, 1412, 293, 2845, 309, 281, 264, 1910, 13, 639, 3036, 307, 1850, 11, 1074, 13], "avg_logprob": -0.4198369536062945, "compression_ratio": 2.057142857142857, "no_speech_prob": 1.0132789611816406e-05, "words": [{"start": 3235.73, "end": 3236.05, "word": "and", "probability": 0.296630859375}, {"start": 3236.05, "end": 3236.15, "word": " the", "probability": 0.63623046875}, {"start": 3236.15, "end": 3236.59, "word": " controller", "probability": 0.68896484375}, {"start": 3236.59, "end": 3236.85, "word": " by", "probability": 0.1463623046875}, {"start": 3236.85, "end": 3237.19, "word": " itself", "probability": 0.70654296875}, {"start": 3237.19, "end": 3237.91, "word": " and", "probability": 0.5751953125}, {"start": 3237.91, "end": 3238.15, "word": " the", "probability": 0.8115234375}, {"start": 3238.15, "end": 3238.41, "word": " model.", "probability": 0.80419921875}, {"start": 3238.55, "end": 3238.61, "word": " The", "probability": 0.423095703125}, {"start": 3238.61, "end": 3238.75, "word": " most", "probability": 0.85498046875}, {"start": 3238.75, "end": 3238.85, "word": " important", "probability": 0.86376953125}, {"start": 3238.85, "end": 3239.67, "word": " thing", "probability": 0.82080078125}, {"start": 3239.67, "end": 3240.35, "word": " is", "probability": 0.79833984375}, {"start": 3240.35, "end": 3240.49, "word": " to", "probability": 0.65087890625}, {"start": 3240.49, "end": 3240.73, "word": " separate", "probability": 0.59619140625}, {"start": 3240.73, "end": 3240.95, "word": " the", "probability": 0.791015625}, {"start": 3240.95, "end": 3241.17, "word": " view", "probability": 0.740234375}, {"start": 3241.17, "end": 3241.51, "word": " from", "probability": 0.84228515625}, {"start": 3241.51, "end": 3242.27, "word": " the", "probability": 0.90185546875}, {"start": 3242.27, "end": 3242.49, "word": " model", "probability": 0.9345703125}, {"start": 3242.49, "end": 3242.89, "word": " completely.", "probability": 0.309326171875}, {"start": 3243.49, "end": 3243.61, "word": " The", "probability": 0.3134765625}, {"start": 3243.61, "end": 3244.03, "word": " controller", "probability": 0.7841796875}, {"start": 3244.03, "end": 3244.25, "word": " can", "probability": 0.294677734375}, {"start": 3244.25, "end": 3244.67, "word": " sometimes", "probability": 0.65283203125}, {"start": 3244.67, "end": 3244.89, "word": " not", "probability": 0.5263671875}, {"start": 3244.89, "end": 3245.15, "word": " have", "probability": 0.58251953125}, {"start": 3245.15, "end": 3245.21, "word": " a", "probability": 0.93212890625}, {"start": 3245.21, "end": 3245.59, "word": " controller.", "probability": 0.8115234375}, {"start": 3246.31, "end": 3246.55, "word": " I", "probability": 0.265869140625}, {"start": 3246.55, "end": 3246.73, "word": " can", "probability": 0.90869140625}, {"start": 3246.73, "end": 3246.99, "word": " let", "probability": 0.46484375}, {"start": 3246.99, "end": 3247.11, "word": " the", "probability": 0.8525390625}, {"start": 3247.11, "end": 3247.29, "word": " view", "probability": 0.89306640625}, {"start": 3247.29, "end": 3247.65, "word": " communicate", "probability": 0.724609375}, {"start": 3247.65, "end": 3247.87, "word": " with", "probability": 0.88525390625}, {"start": 3247.87, "end": 3248.51, "word": " the", "probability": 0.8583984375}, {"start": 3248.51, "end": 3248.63, "word": " model,", "probability": 0.90087890625}, {"start": 3248.69, "end": 3248.83, "word": " but", "probability": 0.87548828125}, {"start": 3248.83, "end": 3248.95, "word": " the", "probability": 0.52587890625}, {"start": 3248.95, "end": 3248.99, "word": " most", "probability": 0.80078125}, {"start": 3248.99, "end": 3249.07, "word": " important", "probability": 0.8642578125}, {"start": 3249.07, "end": 3249.17, "word": " thing", "probability": 0.8740234375}, {"start": 3249.17, "end": 3249.25, "word": " is", "probability": 0.9111328125}, {"start": 3249.25, "end": 3249.29, "word": " to", "probability": 0.31640625}, {"start": 3249.29, "end": 3249.77, "word": " separate", "probability": 0.53125}, {"start": 3249.77, "end": 3250.21, "word": " the", "probability": 0.857421875}, {"start": 3250.21, "end": 3250.41, "word": " view", "probability": 0.8720703125}, {"start": 3250.41, "end": 3250.69, "word": " from", "probability": 0.8525390625}, {"start": 3250.69, "end": 3251.35, "word": " the", "probability": 0.9091796875}, {"start": 3251.35, "end": 3251.53, "word": " model.", "probability": 0.9140625}, {"start": 3251.61, "end": 3251.69, "word": " This", "probability": 0.40283203125}, {"start": 3251.69, "end": 3251.69, "word": " is", "probability": 0.8984375}, {"start": 3251.69, "end": 3251.77, "word": " the", "probability": 0.390625}, {"start": 3251.77, "end": 3251.99, "word": " basis.", "probability": 0.420166015625}, {"start": 3252.07, "end": 3252.17, "word": " The", "probability": 0.8544921875}, {"start": 3252.17, "end": 3252.49, "word": " controller", "probability": 0.806640625}, {"start": 3252.49, "end": 3252.63, "word": " is", "probability": 0.86572265625}, {"start": 3252.63, "end": 3252.81, "word": " made", "probability": 0.65087890625}, {"start": 3252.81, "end": 3253.03, "word": " as", "probability": 0.83251953125}, {"start": 3253.03, "end": 3253.13, "word": " a", "probability": 0.81005859375}, {"start": 3253.13, "end": 3253.45, "word": " mediator", "probability": 0.697021484375}, {"start": 3253.45, "end": 3253.81, "word": " to", "probability": 0.62890625}, {"start": 3253.81, "end": 3254.49, "word": " take", "probability": 0.548828125}, {"start": 3254.49, "end": 3254.63, "word": " a", "probability": 0.5126953125}, {"start": 3254.63, "end": 3255.05, "word": " request", "probability": 0.974609375}, {"start": 3255.05, "end": 3255.65, "word": " and", "probability": 0.458984375}, {"start": 3255.65, "end": 3255.83, "word": " get", "probability": 0.4658203125}, {"start": 3255.83, "end": 3255.99, "word": " the", "probability": 0.83642578125}, {"start": 3255.99, "end": 3256.23, "word": " data", "probability": 0.94287109375}, {"start": 3256.23, "end": 3256.45, "word": " and", "probability": 0.88525390625}, {"start": 3256.45, "end": 3256.71, "word": " send", "probability": 0.71142578125}, {"start": 3256.71, "end": 3256.81, "word": " it", "probability": 0.91259765625}, {"start": 3256.81, "end": 3256.99, "word": " to", "probability": 0.94970703125}, {"start": 3256.99, "end": 3257.75, "word": " the", "probability": 0.8427734375}, {"start": 3257.75, "end": 3257.97, "word": " view.", "probability": 0.88330078125}, {"start": 3258.33, "end": 3258.71, "word": " This", "probability": 0.205322265625}, {"start": 3258.71, "end": 3259.03, "word": " picture", "probability": 0.52587890625}, {"start": 3259.03, "end": 3259.03, "word": " is", "probability": 0.458740234375}, {"start": 3259.03, "end": 3259.03, "word": " clear,", "probability": 0.81640625}, {"start": 3259.11, "end": 3259.31, "word": " guys.", "probability": 0.74169921875}], "temperature": 1.0}, {"id": 134, "seek": 327185, "start": 3261.09, "end": 3271.85, "text": "So by the will of God, we have completed the course. On the fourth day, there is no lecture, by the will of God, because I am busy with something else. So may God bless you and by the will of God, we will meet again in upcoming courses, by the will of God.", "tokens": [6455, 538, 264, 486, 295, 1265, 11, 321, 362, 7365, 264, 1164, 13, 1282, 264, 6409, 786, 11, 456, 307, 572, 7991, 11, 538, 264, 486, 295, 1265, 11, 570, 286, 669, 5856, 365, 746, 1646, 13, 407, 815, 1265, 5227, 291, 293, 538, 264, 486, 295, 1265, 11, 321, 486, 1677, 797, 294, 11500, 7712, 11, 538, 264, 486, 295, 1265, 13], "avg_logprob": -0.5556640550494194, "compression_ratio": 1.7181208053691275, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 3261.09, "end": 3261.37, "word": "So", "probability": 0.42578125}, {"start": 3261.37, "end": 3261.55, "word": " by", "probability": 0.12115478515625}, {"start": 3261.55, "end": 3261.55, "word": " the", "probability": 0.29443359375}, {"start": 3261.55, "end": 3261.55, "word": " will", "probability": 0.75830078125}, {"start": 3261.55, "end": 3261.55, "word": " of", "probability": 0.96484375}, {"start": 3261.55, "end": 3261.73, "word": " God,", "probability": 0.450927734375}, {"start": 3261.83, "end": 3261.95, "word": " we", "probability": 0.79541015625}, {"start": 3261.95, "end": 3262.13, "word": " have", "probability": 0.3955078125}, {"start": 3262.13, "end": 3262.45, "word": " completed", "probability": 0.24658203125}, {"start": 3262.45, "end": 3262.61, "word": " the", "probability": 0.49755859375}, {"start": 3262.61, "end": 3262.99, "word": " course.", "probability": 0.08270263671875}, {"start": 3263.65, "end": 3263.87, "word": " On", "probability": 0.405517578125}, {"start": 3263.87, "end": 3264.05, "word": " the", "probability": 0.414306640625}, {"start": 3264.05, "end": 3264.27, "word": " fourth", "probability": 0.552734375}, {"start": 3264.27, "end": 3264.31, "word": " day,", "probability": 0.93359375}, {"start": 3264.41, "end": 3264.41, "word": " there", "probability": 0.82470703125}, {"start": 3264.41, "end": 3264.51, "word": " is", "probability": 0.3994140625}, {"start": 3264.51, "end": 3264.63, "word": " no", "probability": 0.91552734375}, {"start": 3264.63, "end": 3264.93, "word": " lecture,", "probability": 0.8271484375}, {"start": 3265.07, "end": 3265.13, "word": " by", "probability": 0.5390625}, {"start": 3265.13, "end": 3265.23, "word": " the", "probability": 0.8662109375}, {"start": 3265.23, "end": 3265.23, "word": " will", "probability": 0.85888671875}, {"start": 3265.23, "end": 3265.23, "word": " of", "probability": 0.97802734375}, {"start": 3265.23, "end": 3265.39, "word": " God,", "probability": 0.9697265625}, {"start": 3265.61, "end": 3265.71, "word": " because", "probability": 0.7470703125}, {"start": 3265.71, "end": 3265.87, "word": " I", "probability": 0.61181640625}, {"start": 3265.87, "end": 3265.89, "word": " am", "probability": 0.62548828125}, {"start": 3265.89, "end": 3266.11, "word": " busy", "probability": 0.8955078125}, {"start": 3266.11, "end": 3266.21, "word": " with", "probability": 0.63671875}, {"start": 3266.21, "end": 3266.41, "word": " something", "probability": 0.52001953125}, {"start": 3266.41, "end": 3266.81, "word": " else.", "probability": 0.88623046875}, {"start": 3267.57, "end": 3267.75, "word": " So", "probability": 0.4931640625}, {"start": 3267.75, "end": 3267.93, "word": " may", "probability": 0.333984375}, {"start": 3267.93, "end": 3267.97, "word": " God", "probability": 0.638671875}, {"start": 3267.97, "end": 3268.11, "word": " bless", "probability": 0.37353515625}, {"start": 3268.11, "end": 3268.23, "word": " you", "probability": 0.95751953125}, {"start": 3268.23, "end": 3268.69, "word": " and", "probability": 0.402099609375}, {"start": 3268.69, "end": 3268.81, "word": " by", "probability": 0.60302734375}, {"start": 3268.81, "end": 3268.89, "word": " the", "probability": 0.91845703125}, {"start": 3268.89, "end": 3268.89, "word": " will", "probability": 0.86474609375}, {"start": 3268.89, "end": 3268.89, "word": " of", "probability": 0.97509765625}, {"start": 3268.89, "end": 3268.99, "word": " God,", "probability": 0.9775390625}, {"start": 3269.07, "end": 3269.09, "word": " we", "probability": 0.5322265625}, {"start": 3269.09, "end": 3269.15, "word": " will", "probability": 0.6767578125}, {"start": 3269.15, "end": 3269.37, "word": " meet", "probability": 0.9453125}, {"start": 3269.37, "end": 3269.75, "word": " again", "probability": 0.47314453125}, {"start": 3269.75, "end": 3269.75, "word": " in", "probability": 0.50146484375}, {"start": 3269.75, "end": 3271.41, "word": " upcoming", "probability": 0.17578125}, {"start": 3271.41, "end": 3271.41, "word": " courses,", "probability": 0.76123046875}, {"start": 3271.51, "end": 3271.65, "word": " by", "probability": 0.91455078125}, {"start": 3271.65, "end": 3271.69, "word": " the", "probability": 0.93212890625}, {"start": 3271.69, "end": 3271.69, "word": " will", "probability": 0.86865234375}, {"start": 3271.69, "end": 3271.73, "word": " of", "probability": 0.97607421875}, {"start": 3271.73, "end": 3271.85, "word": " God.", "probability": 0.9775390625}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 3272.22575, "duration_after_vad": 3152.129999999987} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/mjw_XKwqANw_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/mjw_XKwqANw_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..a02c45adeeefb3ec49e9e4eed15dfa7d301587d2 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/mjw_XKwqANw_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 2994, "start": 5.18, "end": 29.94, "text": " Ok, peace be upon you In the previous lecture, we started with the observer pattern And we said that the observer pattern is one of the behavioral patterns And the goal of it is to improve communication between objects How does it improve communication between objects? Actually, we need it a lot when I have a specific object that needs to update or notify more than another object", "tokens": [3477, 11, 4336, 312, 3564, 291, 682, 264, 3894, 7991, 11, 321, 1409, 365, 264, 27878, 5102, 400, 321, 848, 300, 264, 27878, 5102, 307, 472, 295, 264, 19124, 8294, 400, 264, 3387, 295, 309, 307, 281, 3470, 6101, 1296, 6565, 1012, 775, 309, 3470, 6101, 1296, 6565, 30, 5135, 11, 321, 643, 309, 257, 688, 562, 286, 362, 257, 2685, 2657, 300, 2203, 281, 5623, 420, 36560, 544, 813, 1071, 2657], "avg_logprob": -0.43022259294170223, "compression_ratio": 1.7981220657276995, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 5.18, "end": 5.46, "word": " Ok,", "probability": 0.175048828125}, {"start": 5.5, "end": 5.7, "word": " peace", "probability": 0.2159423828125}, {"start": 5.7, "end": 5.72, "word": " be", "probability": 0.8603515625}, {"start": 5.72, "end": 5.84, "word": " upon", "probability": 0.91650390625}, {"start": 5.84, "end": 6.44, "word": " you", "probability": 0.97119140625}, {"start": 6.44, "end": 7.2, "word": " In", "probability": 0.382568359375}, {"start": 7.2, "end": 7.32, "word": " the", "probability": 0.75048828125}, {"start": 7.32, "end": 7.36, "word": " previous", "probability": 0.438720703125}, {"start": 7.36, "end": 7.84, "word": " lecture,", "probability": 0.833984375}, {"start": 8.04, "end": 8.32, "word": " we", "probability": 0.61572265625}, {"start": 8.32, "end": 8.56, "word": " started", "probability": 0.712890625}, {"start": 8.56, "end": 8.8, "word": " with", "probability": 0.460693359375}, {"start": 8.8, "end": 9.02, "word": " the", "probability": 0.78173828125}, {"start": 9.02, "end": 9.68, "word": " observer", "probability": 0.5654296875}, {"start": 9.68, "end": 10.2, "word": " pattern", "probability": 0.8818359375}, {"start": 10.2, "end": 10.48, "word": " And", "probability": 0.239501953125}, {"start": 10.48, "end": 10.54, "word": " we", "probability": 0.86474609375}, {"start": 10.54, "end": 10.74, "word": " said", "probability": 0.88134765625}, {"start": 10.74, "end": 11.18, "word": " that", "probability": 0.86669921875}, {"start": 11.18, "end": 11.74, "word": " the", "probability": 0.73388671875}, {"start": 11.74, "end": 12.1, "word": " observer", "probability": 0.896484375}, {"start": 12.1, "end": 12.44, "word": " pattern", "probability": 0.87255859375}, {"start": 12.44, "end": 12.56, "word": " is", "probability": 0.9306640625}, {"start": 12.56, "end": 12.76, "word": " one", "probability": 0.86865234375}, {"start": 12.76, "end": 12.94, "word": " of", "probability": 0.94189453125}, {"start": 12.94, "end": 13.04, "word": " the", "probability": 0.87255859375}, {"start": 13.04, "end": 13.44, "word": " behavioral", "probability": 0.62841796875}, {"start": 13.44, "end": 13.96, "word": " patterns", "probability": 0.7275390625}, {"start": 13.96, "end": 15.08, "word": " And", "probability": 0.77734375}, {"start": 15.08, "end": 15.16, "word": " the", "probability": 0.68115234375}, {"start": 15.16, "end": 15.34, "word": " goal", "probability": 0.494384765625}, {"start": 15.34, "end": 15.46, "word": " of", "probability": 0.3203125}, {"start": 15.46, "end": 15.56, "word": " it", "probability": 0.82421875}, {"start": 15.56, "end": 15.92, "word": " is", "probability": 0.6318359375}, {"start": 15.92, "end": 16.22, "word": " to", "probability": 0.66943359375}, {"start": 16.22, "end": 16.48, "word": " improve", "probability": 0.5625}, {"start": 16.48, "end": 17.04, "word": " communication", "probability": 0.65771484375}, {"start": 17.04, "end": 17.56, "word": " between", "probability": 0.82470703125}, {"start": 17.56, "end": 18.1, "word": " objects", "probability": 0.87109375}, {"start": 18.1, "end": 18.56, "word": " How", "probability": 0.88134765625}, {"start": 18.56, "end": 18.68, "word": " does", "probability": 0.37353515625}, {"start": 18.68, "end": 18.68, "word": " it", "probability": 0.6025390625}, {"start": 18.68, "end": 18.88, "word": " improve", "probability": 0.708984375}, {"start": 18.88, "end": 19.42, "word": " communication", "probability": 0.8271484375}, {"start": 19.42, "end": 19.72, "word": " between", "probability": 0.7978515625}, {"start": 19.72, "end": 20.22, "word": " objects?", "probability": 0.947265625}, {"start": 20.72, "end": 21.06, "word": " Actually,", "probability": 0.1773681640625}, {"start": 21.66, "end": 21.78, "word": " we", "probability": 0.583984375}, {"start": 21.78, "end": 22.3, "word": " need", "probability": 0.72314453125}, {"start": 22.3, "end": 22.38, "word": " it", "probability": 0.7158203125}, {"start": 22.38, "end": 22.5, "word": " a", "probability": 0.3369140625}, {"start": 22.5, "end": 22.96, "word": " lot", "probability": 0.95751953125}, {"start": 22.96, "end": 23.2, "word": " when", "probability": 0.72802734375}, {"start": 23.2, "end": 23.68, "word": " I", "probability": 0.5341796875}, {"start": 23.68, "end": 23.98, "word": " have", "probability": 0.93310546875}, {"start": 23.98, "end": 24.74, "word": " a", "probability": 0.8408203125}, {"start": 24.74, "end": 25.44, "word": " specific", "probability": 0.32568359375}, {"start": 25.44, "end": 25.46, "word": " object", "probability": 0.97802734375}, {"start": 25.46, "end": 25.7, "word": " that", "probability": 0.5341796875}, {"start": 25.7, "end": 26.12, "word": " needs", "probability": 0.8154296875}, {"start": 26.12, "end": 26.78, "word": " to", "probability": 0.69677734375}, {"start": 26.78, "end": 27.38, "word": " update", "probability": 0.52783203125}, {"start": 27.38, "end": 27.7, "word": " or", "probability": 0.89990234375}, {"start": 27.7, "end": 28.14, "word": " notify", "probability": 0.5390625}, {"start": 28.14, "end": 29.34, "word": " more", "probability": 0.58740234375}, {"start": 29.34, "end": 29.52, "word": " than", "probability": 0.6455078125}, {"start": 29.52, "end": 29.6, "word": " another", "probability": 0.66455078125}, {"start": 29.6, "end": 29.94, "word": " object", "probability": 0.97216796875}], "temperature": 1.0}, {"id": 2, "seek": 5464, "start": 30.9, "end": 54.64, "text": "Okay, so this will notify the other objects And of course, we know that when an object needs to communicate with another object, it must have a reference from this object What does the word object mean to communicate with another object? Actually, there should be a method here, and this calls for the method that is here Okay, it is clear that there is a problem here, that I have a lot of dependencies", "tokens": [8297, 11, 370, 341, 486, 36560, 264, 661, 6565, 400, 295, 1164, 11, 321, 458, 300, 562, 364, 2657, 2203, 281, 7890, 365, 1071, 2657, 11, 309, 1633, 362, 257, 6408, 490, 341, 2657, 708, 775, 264, 1349, 2657, 914, 281, 7890, 365, 1071, 2657, 30, 5135, 11, 456, 820, 312, 257, 3170, 510, 11, 293, 341, 5498, 337, 264, 3170, 300, 307, 510, 1033, 11, 309, 307, 1850, 300, 456, 307, 257, 1154, 510, 11, 300, 286, 362, 257, 688, 295, 36606], "avg_logprob": -0.4713541723432995, "compression_ratio": 1.8318181818181818, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 30.9, "end": 31.2, "word": "Okay,", "probability": 0.153076171875}, {"start": 31.32, "end": 31.54, "word": " so", "probability": 0.2142333984375}, {"start": 31.54, "end": 33.44, "word": " this", "probability": 0.64697265625}, {"start": 33.44, "end": 33.64, "word": " will", "probability": 0.1524658203125}, {"start": 33.64, "end": 34.1, "word": " notify", "probability": 0.2161865234375}, {"start": 34.1, "end": 34.32, "word": " the", "probability": 0.48388671875}, {"start": 34.32, "end": 35.18, "word": " other", "probability": 0.708984375}, {"start": 35.18, "end": 35.32, "word": " objects", "probability": 0.9501953125}, {"start": 35.32, "end": 37.46, "word": " And", "probability": 0.366943359375}, {"start": 37.46, "end": 37.72, "word": " of", "probability": 0.73046875}, {"start": 37.72, "end": 37.74, "word": " course,", "probability": 0.9423828125}, {"start": 37.88, "end": 37.92, "word": " we", "probability": 0.693359375}, {"start": 37.92, "end": 38.22, "word": " know", "probability": 0.80615234375}, {"start": 38.22, "end": 38.38, "word": " that", "probability": 0.75439453125}, {"start": 38.38, "end": 38.48, "word": " when", "probability": 0.69140625}, {"start": 38.48, "end": 38.62, "word": " an", "probability": 0.80322265625}, {"start": 38.62, "end": 38.84, "word": " object", "probability": 0.97998046875}, {"start": 38.84, "end": 39.24, "word": " needs", "probability": 0.8076171875}, {"start": 39.24, "end": 39.36, "word": " to", "probability": 0.89501953125}, {"start": 39.36, "end": 39.6, "word": " communicate", "probability": 0.740234375}, {"start": 39.6, "end": 39.78, "word": " with", "probability": 0.88330078125}, {"start": 39.78, "end": 39.88, "word": " another", "probability": 0.8828125}, {"start": 39.88, "end": 40.14, "word": " object,", "probability": 0.962890625}, {"start": 40.5, "end": 40.56, "word": " it", "probability": 0.82421875}, {"start": 40.56, "end": 40.68, "word": " must", "probability": 0.411376953125}, {"start": 40.68, "end": 41.04, "word": " have", "probability": 0.88623046875}, {"start": 41.04, "end": 41.18, "word": " a", "probability": 0.72998046875}, {"start": 41.18, "end": 41.5, "word": " reference", "probability": 0.8779296875}, {"start": 41.5, "end": 41.7, "word": " from", "probability": 0.669921875}, {"start": 41.7, "end": 41.88, "word": " this", "probability": 0.4296875}, {"start": 41.88, "end": 42.3, "word": " object", "probability": 0.97900390625}, {"start": 42.3, "end": 42.9, "word": " What", "probability": 0.441650390625}, {"start": 42.9, "end": 43.1, "word": " does", "probability": 0.7265625}, {"start": 43.1, "end": 43.16, "word": " the", "probability": 0.3369140625}, {"start": 43.16, "end": 43.34, "word": " word", "probability": 0.79541015625}, {"start": 43.34, "end": 43.7, "word": " object", "probability": 0.91943359375}, {"start": 43.7, "end": 43.84, "word": " mean", "probability": 0.61767578125}, {"start": 43.84, "end": 43.9, "word": " to", "probability": 0.377685546875}, {"start": 43.9, "end": 44.14, "word": " communicate", "probability": 0.8857421875}, {"start": 44.14, "end": 44.34, "word": " with", "probability": 0.8759765625}, {"start": 44.34, "end": 44.4, "word": " another", "probability": 0.86669921875}, {"start": 44.4, "end": 44.78, "word": " object?", "probability": 0.986328125}, {"start": 44.9, "end": 45.1, "word": " Actually,", "probability": 0.315673828125}, {"start": 45.18, "end": 45.32, "word": " there", "probability": 0.75390625}, {"start": 45.32, "end": 45.32, "word": " should", "probability": 0.27294921875}, {"start": 45.32, "end": 45.48, "word": " be", "probability": 0.93359375}, {"start": 45.48, "end": 45.72, "word": " a", "probability": 0.97216796875}, {"start": 45.72, "end": 46.08, "word": " method", "probability": 0.94775390625}, {"start": 46.08, "end": 46.14, "word": " here,", "probability": 0.32373046875}, {"start": 46.9, "end": 46.96, "word": " and", "probability": 0.7001953125}, {"start": 46.96, "end": 47.18, "word": " this", "probability": 0.76123046875}, {"start": 47.18, "end": 47.54, "word": " calls", "probability": 0.226806640625}, {"start": 47.54, "end": 47.84, "word": " for", "probability": 0.6640625}, {"start": 47.84, "end": 48.2, "word": " the", "probability": 0.8466796875}, {"start": 48.2, "end": 48.44, "word": " method", "probability": 0.90380859375}, {"start": 48.44, "end": 48.54, "word": " that", "probability": 0.43701171875}, {"start": 48.54, "end": 48.64, "word": " is", "probability": 0.515625}, {"start": 48.64, "end": 49.0, "word": " here", "probability": 0.380126953125}, {"start": 49.0, "end": 50.02, "word": " Okay,", "probability": 0.4013671875}, {"start": 51.0, "end": 51.32, "word": " it", "probability": 0.5126953125}, {"start": 51.32, "end": 51.32, "word": " is", "probability": 0.63330078125}, {"start": 51.32, "end": 51.58, "word": " clear", "probability": 0.5869140625}, {"start": 51.58, "end": 51.94, "word": " that", "probability": 0.88916015625}, {"start": 51.94, "end": 52.66, "word": " there", "probability": 0.8818359375}, {"start": 52.66, "end": 52.68, "word": " is", "probability": 0.90869140625}, {"start": 52.68, "end": 52.76, "word": " a", "probability": 0.97021484375}, {"start": 52.76, "end": 53.04, "word": " problem", "probability": 0.83203125}, {"start": 53.04, "end": 53.3, "word": " here,", "probability": 0.8359375}, {"start": 53.36, "end": 53.44, "word": " that", "probability": 0.50244140625}, {"start": 53.44, "end": 53.62, "word": " I", "probability": 0.857421875}, {"start": 53.62, "end": 54.0, "word": " have", "probability": 0.92138671875}, {"start": 54.0, "end": 54.0, "word": " a", "probability": 0.379150390625}, {"start": 54.0, "end": 54.0, "word": " lot", "probability": 0.94921875}, {"start": 54.0, "end": 54.08, "word": " of", "probability": 0.96630859375}, {"start": 54.08, "end": 54.64, "word": " dependencies", "probability": 0.8955078125}], "temperature": 1.0}, {"id": 3, "seek": 8040, "start": 55.8, "end": 80.4, "text": "means that this object here has three dependencies one, two, three which means that these must be passed to this object either through the constructor or through set methods okay? Of course, we talked in the previous lecture that any change in these objects will affect this object any new object that you want to notify or communicate with it you have to change many things here", "tokens": [1398, 599, 300, 341, 2657, 510, 575, 1045, 36606, 472, 11, 732, 11, 1045, 597, 1355, 300, 613, 1633, 312, 4678, 281, 341, 2657, 2139, 807, 264, 47479, 420, 807, 992, 7150, 1392, 30, 2720, 1164, 11, 321, 2825, 294, 264, 3894, 7991, 300, 604, 1319, 294, 613, 6565, 486, 3345, 341, 2657, 604, 777, 2657, 300, 291, 528, 281, 36560, 420, 7890, 365, 309, 291, 362, 281, 1319, 867, 721, 510], "avg_logprob": -0.4691780854577888, "compression_ratio": 1.7465437788018434, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 55.8, "end": 56.08, "word": "means", "probability": 0.395050048828125}, {"start": 56.08, "end": 56.22, "word": " that", "probability": 0.58056640625}, {"start": 56.22, "end": 56.48, "word": " this", "probability": 0.646484375}, {"start": 56.48, "end": 56.88, "word": " object", "probability": 0.93701171875}, {"start": 56.88, "end": 57.36, "word": " here", "probability": 0.33251953125}, {"start": 57.36, "end": 57.86, "word": " has", "probability": 0.85546875}, {"start": 57.86, "end": 58.2, "word": " three", "probability": 0.50244140625}, {"start": 58.2, "end": 58.8, "word": " dependencies", "probability": 0.78515625}, {"start": 58.8, "end": 59.46, "word": " one,", "probability": 0.430419921875}, {"start": 59.6, "end": 59.9, "word": " two,", "probability": 0.90087890625}, {"start": 60.56, "end": 60.96, "word": " three", "probability": 0.8447265625}, {"start": 60.96, "end": 61.56, "word": " which", "probability": 0.28271484375}, {"start": 61.56, "end": 61.8, "word": " means", "probability": 0.908203125}, {"start": 61.8, "end": 62.02, "word": " that", "probability": 0.744140625}, {"start": 62.02, "end": 62.3, "word": " these", "probability": 0.395263671875}, {"start": 62.3, "end": 62.66, "word": " must", "probability": 0.146484375}, {"start": 62.66, "end": 62.82, "word": " be", "probability": 0.5029296875}, {"start": 62.82, "end": 63.04, "word": " passed", "probability": 0.381591796875}, {"start": 63.04, "end": 63.42, "word": " to", "probability": 0.58984375}, {"start": 63.42, "end": 63.5, "word": " this", "probability": 0.6962890625}, {"start": 63.5, "end": 64.14, "word": " object", "probability": 0.9599609375}, {"start": 64.14, "end": 64.96, "word": " either", "probability": 0.544921875}, {"start": 64.96, "end": 65.3, "word": " through", "probability": 0.65771484375}, {"start": 65.3, "end": 65.52, "word": " the", "probability": 0.478515625}, {"start": 65.52, "end": 65.96, "word": " constructor", "probability": 0.8935546875}, {"start": 65.96, "end": 66.18, "word": " or", "probability": 0.95654296875}, {"start": 66.18, "end": 66.46, "word": " through", "probability": 0.755859375}, {"start": 66.46, "end": 66.74, "word": " set", "probability": 0.7666015625}, {"start": 66.74, "end": 67.16, "word": " methods", "probability": 0.462890625}, {"start": 67.16, "end": 67.82, "word": " okay?", "probability": 0.1669921875}, {"start": 68.6, "end": 68.8, "word": " Of", "probability": 0.301025390625}, {"start": 68.8, "end": 68.96, "word": " course,", "probability": 0.94873046875}, {"start": 69.22, "end": 69.22, "word": " we", "probability": 0.7900390625}, {"start": 69.22, "end": 69.4, "word": " talked", "probability": 0.36328125}, {"start": 69.4, "end": 69.56, "word": " in", "probability": 0.57470703125}, {"start": 69.56, "end": 69.62, "word": " the", "probability": 0.81396484375}, {"start": 69.62, "end": 69.64, "word": " previous", "probability": 0.5234375}, {"start": 69.64, "end": 70.16, "word": " lecture", "probability": 0.80078125}, {"start": 70.16, "end": 70.38, "word": " that", "probability": 0.685546875}, {"start": 70.38, "end": 70.54, "word": " any", "probability": 0.8720703125}, {"start": 70.54, "end": 70.84, "word": " change", "probability": 0.77294921875}, {"start": 70.84, "end": 70.98, "word": " in", "probability": 0.87939453125}, {"start": 70.98, "end": 71.06, "word": " these", "probability": 0.77392578125}, {"start": 71.06, "end": 71.66, "word": " objects", "probability": 0.9560546875}, {"start": 71.66, "end": 71.88, "word": " will", "probability": 0.740234375}, {"start": 71.88, "end": 72.2, "word": " affect", "probability": 0.849609375}, {"start": 72.2, "end": 72.36, "word": " this", "probability": 0.89306640625}, {"start": 72.36, "end": 72.94, "word": " object", "probability": 0.97021484375}, {"start": 72.94, "end": 73.68, "word": " any", "probability": 0.406005859375}, {"start": 73.68, "end": 73.74, "word": " new", "probability": 0.90869140625}, {"start": 73.74, "end": 74.4, "word": " object", "probability": 0.96337890625}, {"start": 74.4, "end": 74.66, "word": " that", "probability": 0.55712890625}, {"start": 74.66, "end": 74.8, "word": " you", "probability": 0.95361328125}, {"start": 74.8, "end": 75.78, "word": " want", "probability": 0.732421875}, {"start": 75.78, "end": 75.88, "word": " to", "probability": 0.962890625}, {"start": 75.88, "end": 76.44, "word": " notify", "probability": 0.8681640625}, {"start": 76.44, "end": 76.98, "word": " or", "probability": 0.818359375}, {"start": 76.98, "end": 77.38, "word": " communicate", "probability": 0.65771484375}, {"start": 77.38, "end": 77.72, "word": " with", "probability": 0.86865234375}, {"start": 77.72, "end": 77.98, "word": " it", "probability": 0.400390625}, {"start": 77.98, "end": 78.88, "word": " you", "probability": 0.6435546875}, {"start": 78.88, "end": 79.02, "word": " have", "probability": 0.328857421875}, {"start": 79.02, "end": 79.12, "word": " to", "probability": 0.96875}, {"start": 79.12, "end": 79.54, "word": " change", "probability": 0.529296875}, {"start": 79.54, "end": 79.66, "word": " many", "probability": 0.56884765625}, {"start": 79.66, "end": 79.96, "word": " things", "probability": 0.828125}, {"start": 79.96, "end": 80.4, "word": " here", "probability": 0.80859375}], "temperature": 1.0}, {"id": 4, "seek": 10996, "start": 81.26, "end": 109.96, "text": " We saw that you need to make a method to set this object, make a reference inside it, and also get the value in this object. Of course, we got all of this by applying the observer pattern. The main idea now is that instead of this being dependent on four things, I say no, all of these guys that want to register with me, let them come from one type, from one type, okay? So let's discuss what we did.", "tokens": [492, 1866, 300, 291, 643, 281, 652, 257, 3170, 281, 992, 341, 2657, 11, 652, 257, 6408, 1854, 309, 11, 293, 611, 483, 264, 2158, 294, 341, 2657, 13, 2720, 1164, 11, 321, 658, 439, 295, 341, 538, 9275, 264, 27878, 5102, 13, 440, 2135, 1558, 586, 307, 300, 2602, 295, 341, 885, 12334, 322, 1451, 721, 11, 286, 584, 572, 11, 439, 295, 613, 1074, 300, 528, 281, 7280, 365, 385, 11, 718, 552, 808, 490, 472, 2010, 11, 490, 472, 2010, 11, 1392, 30, 407, 718, 311, 2248, 437, 321, 630, 13], "avg_logprob": -0.6194079185787, "compression_ratio": 1.6680497925311204, "no_speech_prob": 4.231929779052734e-06, "words": [{"start": 81.26, "end": 81.78, "word": " We", "probability": 0.07769775390625}, {"start": 81.78, "end": 81.92, "word": " saw", "probability": 0.5849609375}, {"start": 81.92, "end": 82.12, "word": " that", "probability": 0.62060546875}, {"start": 82.12, "end": 82.12, "word": " you", "probability": 0.82373046875}, {"start": 82.12, "end": 82.22, "word": " need", "probability": 0.5830078125}, {"start": 82.22, "end": 82.38, "word": " to", "probability": 0.89599609375}, {"start": 82.38, "end": 82.58, "word": " make", "probability": 0.291259765625}, {"start": 82.58, "end": 82.68, "word": " a", "probability": 0.76513671875}, {"start": 82.68, "end": 83.02, "word": " method", "probability": 0.8857421875}, {"start": 83.02, "end": 83.28, "word": " to", "probability": 0.80517578125}, {"start": 83.28, "end": 84.02, "word": " set", "probability": 0.61474609375}, {"start": 84.02, "end": 84.82, "word": " this", "probability": 0.449951171875}, {"start": 84.82, "end": 85.18, "word": " object,", "probability": 0.91259765625}, {"start": 85.64, "end": 86.44, "word": " make", "probability": 0.28662109375}, {"start": 86.44, "end": 86.62, "word": " a", "probability": 0.66015625}, {"start": 86.62, "end": 87.1, "word": " reference", "probability": 0.87109375}, {"start": 87.1, "end": 87.84, "word": " inside", "probability": 0.356201171875}, {"start": 87.84, "end": 88.16, "word": " it,", "probability": 0.740234375}, {"start": 88.42, "end": 88.58, "word": " and", "probability": 0.8935546875}, {"start": 88.58, "end": 88.84, "word": " also", "probability": 0.53955078125}, {"start": 88.84, "end": 89.2, "word": " get", "probability": 0.05889892578125}, {"start": 89.2, "end": 89.44, "word": " the", "probability": 0.73828125}, {"start": 89.44, "end": 89.68, "word": " value", "probability": 0.42138671875}, {"start": 89.68, "end": 90.34, "word": " in", "probability": 0.302001953125}, {"start": 90.34, "end": 90.92, "word": " this", "probability": 0.51220703125}, {"start": 90.92, "end": 91.26, "word": " object.", "probability": 0.94482421875}, {"start": 92.46, "end": 92.98, "word": " Of", "probability": 0.419921875}, {"start": 92.98, "end": 93.08, "word": " course,", "probability": 0.95263671875}, {"start": 93.2, "end": 93.24, "word": " we", "probability": 0.85498046875}, {"start": 93.24, "end": 93.4, "word": " got", "probability": 0.398193359375}, {"start": 93.4, "end": 93.7, "word": " all", "probability": 0.24658203125}, {"start": 93.7, "end": 93.7, "word": " of", "probability": 0.3662109375}, {"start": 93.7, "end": 94.24, "word": " this", "probability": 0.58837890625}, {"start": 94.24, "end": 94.28, "word": " by", "probability": 0.239013671875}, {"start": 94.28, "end": 94.9, "word": " applying", "probability": 0.5048828125}, {"start": 94.9, "end": 95.04, "word": " the", "probability": 0.64208984375}, {"start": 95.04, "end": 95.48, "word": " observer", "probability": 0.5732421875}, {"start": 95.48, "end": 95.88, "word": " pattern.", "probability": 0.9423828125}, {"start": 97.04, "end": 97.46, "word": " The", "probability": 0.5087890625}, {"start": 97.46, "end": 97.46, "word": " main", "probability": 0.417236328125}, {"start": 97.46, "end": 98.24, "word": " idea", "probability": 0.861328125}, {"start": 98.24, "end": 99.32, "word": " now", "probability": 0.32421875}, {"start": 99.32, "end": 99.62, "word": " is", "probability": 0.400634765625}, {"start": 99.62, "end": 99.62, "word": " that", "probability": 0.4921875}, {"start": 99.62, "end": 99.68, "word": " instead", "probability": 0.65185546875}, {"start": 99.68, "end": 99.78, "word": " of", "probability": 0.962890625}, {"start": 99.78, "end": 100.0, "word": " this", "probability": 0.43359375}, {"start": 100.0, "end": 100.26, "word": " being", "probability": 0.6708984375}, {"start": 100.26, "end": 100.62, "word": " dependent", "probability": 0.49609375}, {"start": 100.62, "end": 100.82, "word": " on", "probability": 0.92578125}, {"start": 100.82, "end": 101.16, "word": " four", "probability": 0.5078125}, {"start": 101.16, "end": 101.58, "word": " things,", "probability": 0.60888671875}, {"start": 102.18, "end": 102.36, "word": " I", "probability": 0.454833984375}, {"start": 102.36, "end": 102.48, "word": " say", "probability": 0.351806640625}, {"start": 102.48, "end": 102.78, "word": " no,", "probability": 0.2379150390625}, {"start": 102.9, "end": 103.1, "word": " all", "probability": 0.442626953125}, {"start": 103.1, "end": 103.5, "word": " of", "probability": 0.5126953125}, {"start": 103.5, "end": 103.5, "word": " these", "probability": 0.52001953125}, {"start": 103.5, "end": 103.84, "word": " guys", "probability": 0.339111328125}, {"start": 103.84, "end": 104.06, "word": " that", "probability": 0.48583984375}, {"start": 104.06, "end": 104.2, "word": " want", "probability": 0.400634765625}, {"start": 104.2, "end": 104.3, "word": " to", "probability": 0.9677734375}, {"start": 104.3, "end": 104.58, "word": " register", "probability": 0.697265625}, {"start": 104.58, "end": 104.8, "word": " with", "probability": 0.7041015625}, {"start": 104.8, "end": 104.92, "word": " me,", "probability": 0.9619140625}, {"start": 105.0, "end": 105.12, "word": " let", "probability": 0.448486328125}, {"start": 105.12, "end": 105.26, "word": " them", "probability": 0.84619140625}, {"start": 105.26, "end": 105.42, "word": " come", "probability": 0.7900390625}, {"start": 105.42, "end": 105.5, "word": " from", "probability": 0.6240234375}, {"start": 105.5, "end": 106.8, "word": " one", "probability": 0.75439453125}, {"start": 106.8, "end": 106.8, "word": " type,", "probability": 0.5966796875}, {"start": 106.88, "end": 107.06, "word": " from", "probability": 0.471923828125}, {"start": 107.06, "end": 107.36, "word": " one", "probability": 0.86572265625}, {"start": 107.36, "end": 107.62, "word": " type,", "probability": 0.68505859375}, {"start": 108.38, "end": 108.58, "word": " okay?", "probability": 0.47119140625}, {"start": 109.12, "end": 109.32, "word": " So", "probability": 0.833984375}, {"start": 109.32, "end": 109.5, "word": " let's", "probability": 0.770263671875}, {"start": 109.5, "end": 109.6, "word": " discuss", "probability": 0.2235107421875}, {"start": 109.6, "end": 109.82, "word": " what", "probability": 0.82763671875}, {"start": 109.82, "end": 109.96, "word": " we", "probability": 0.59423828125}, {"start": 109.96, "end": 109.96, "word": " did.", "probability": 0.744140625}], "temperature": 1.0}, {"id": 5, "seek": 13533, "start": 110.83, "end": 135.33, "text": "Instead of all of them doing this, it tells you to make one interface For example, let's call it Observer And you make a method called update or data received or whatever Because all of them want to make an update or implement to this interface", "tokens": [28411, 2056, 295, 439, 295, 552, 884, 341, 11, 309, 5112, 291, 281, 652, 472, 9226, 1171, 1365, 11, 718, 311, 818, 309, 20707, 38241, 400, 291, 652, 257, 3170, 1219, 5623, 420, 1412, 4613, 420, 2035, 1436, 439, 295, 552, 528, 281, 652, 364, 5623, 420, 4445, 281, 341, 9226], "avg_logprob": -0.554987988792933, "compression_ratio": 1.564102564102564, "no_speech_prob": 0.0, "words": [{"start": 110.83, "end": 111.19, "word": "Instead", "probability": 0.643798828125}, {"start": 111.19, "end": 111.31, "word": " of", "probability": 0.939453125}, {"start": 111.31, "end": 111.83, "word": " all", "probability": 0.151611328125}, {"start": 111.83, "end": 111.93, "word": " of", "probability": 0.387451171875}, {"start": 111.93, "end": 111.95, "word": " them", "probability": 0.56396484375}, {"start": 111.95, "end": 112.93, "word": " doing", "probability": 0.342529296875}, {"start": 112.93, "end": 113.47, "word": " this,", "probability": 0.4345703125}, {"start": 113.65, "end": 115.01, "word": " it", "probability": 0.442626953125}, {"start": 115.01, "end": 115.17, "word": " tells", "probability": 0.22607421875}, {"start": 115.17, "end": 115.33, "word": " you", "probability": 0.87060546875}, {"start": 115.33, "end": 115.43, "word": " to", "probability": 0.8837890625}, {"start": 115.43, "end": 115.55, "word": " make", "probability": 0.37548828125}, {"start": 115.55, "end": 115.71, "word": " one", "probability": 0.53662109375}, {"start": 115.71, "end": 116.79, "word": " interface", "probability": 0.8759765625}, {"start": 116.79, "end": 119.03, "word": " For", "probability": 0.321533203125}, {"start": 119.03, "end": 121.65, "word": " example,", "probability": 0.91162109375}, {"start": 121.81, "end": 121.85, "word": " let's", "probability": 0.5977783203125}, {"start": 121.85, "end": 121.95, "word": " call", "probability": 0.71923828125}, {"start": 121.95, "end": 122.13, "word": " it", "probability": 0.8916015625}, {"start": 122.13, "end": 122.77, "word": " Observer", "probability": 0.6031494140625}, {"start": 122.77, "end": 125.67, "word": " And", "probability": 0.368408203125}, {"start": 125.67, "end": 125.81, "word": " you", "probability": 0.304931640625}, {"start": 125.81, "end": 125.97, "word": " make", "probability": 0.263916015625}, {"start": 125.97, "end": 126.17, "word": " a", "probability": 0.79541015625}, {"start": 126.17, "end": 126.45, "word": " method", "probability": 0.9599609375}, {"start": 126.45, "end": 127.13, "word": " called", "probability": 0.225830078125}, {"start": 127.13, "end": 127.55, "word": " update", "probability": 0.59716796875}, {"start": 127.55, "end": 128.07, "word": " or", "probability": 0.6455078125}, {"start": 128.07, "end": 128.45, "word": " data", "probability": 0.86376953125}, {"start": 128.45, "end": 129.05, "word": " received", "probability": 0.6962890625}, {"start": 129.05, "end": 129.23, "word": " or", "probability": 0.7568359375}, {"start": 129.23, "end": 129.67, "word": " whatever", "probability": 0.94091796875}, {"start": 129.67, "end": 130.91, "word": " Because", "probability": 0.58447265625}, {"start": 130.91, "end": 131.21, "word": " all", "probability": 0.53857421875}, {"start": 131.21, "end": 131.23, "word": " of", "probability": 0.92236328125}, {"start": 131.23, "end": 131.33, "word": " them", "probability": 0.896484375}, {"start": 131.33, "end": 131.59, "word": " want", "probability": 0.5517578125}, {"start": 131.59, "end": 131.63, "word": " to", "probability": 0.9677734375}, {"start": 131.63, "end": 131.75, "word": " make", "probability": 0.61279296875}, {"start": 131.75, "end": 131.91, "word": " an", "probability": 0.72900390625}, {"start": 131.91, "end": 132.13, "word": " update", "probability": 0.85009765625}, {"start": 132.13, "end": 132.29, "word": " or", "probability": 0.2183837890625}, {"start": 132.29, "end": 132.81, "word": " implement", "probability": 0.8935546875}, {"start": 132.81, "end": 134.71, "word": " to", "probability": 0.495361328125}, {"start": 134.71, "end": 134.79, "word": " this", "probability": 0.85009765625}, {"start": 134.79, "end": 135.33, "word": " interface", "probability": 0.85595703125}], "temperature": 1.0}, {"id": 6, "seek": 16421, "start": 137.75, "end": 164.21, "text": " As I told you before, what is the purpose of the basic interface? To unify the types of things that are of different types There is no common thing between them, so you want to unify the types, to make them of the same type This is the purpose of the interface, not to make it complicated or to show you the methods you have to follow No, this is the purpose of the basic interface that these are of different types and we made them of the same type Why do we make them of the same type? On the basis that we make this", "tokens": [1018, 286, 1907, 291, 949, 11, 437, 307, 264, 4334, 295, 264, 3875, 9226, 30, 1407, 517, 2505, 264, 3467, 295, 721, 300, 366, 295, 819, 3467, 821, 307, 572, 2689, 551, 1296, 552, 11, 370, 291, 528, 281, 517, 2505, 264, 3467, 11, 281, 652, 552, 295, 264, 912, 2010, 639, 307, 264, 4334, 295, 264, 9226, 11, 406, 281, 652, 309, 6179, 420, 281, 855, 291, 264, 7150, 291, 362, 281, 1524, 883, 11, 341, 307, 264, 4334, 295, 264, 3875, 9226, 300, 613, 366, 295, 819, 3467, 293, 321, 1027, 552, 295, 264, 912, 2010, 1545, 360, 321, 652, 552, 295, 264, 912, 2010, 30, 1282, 264, 5143, 300, 321, 652, 341], "avg_logprob": -0.5045797496006407, "compression_ratio": 2.217948717948718, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 137.75, "end": 137.97, "word": " As", "probability": 0.079833984375}, {"start": 137.97, "end": 138.41, "word": " I", "probability": 0.78125}, {"start": 138.41, "end": 138.87, "word": " told", "probability": 0.401611328125}, {"start": 138.87, "end": 139.07, "word": " you", "probability": 0.9453125}, {"start": 139.07, "end": 139.29, "word": " before,", "probability": 0.64892578125}, {"start": 139.53, "end": 139.65, "word": " what", "probability": 0.8525390625}, {"start": 139.65, "end": 139.69, "word": " is", "probability": 0.5087890625}, {"start": 139.69, "end": 139.77, "word": " the", "probability": 0.9013671875}, {"start": 139.77, "end": 139.93, "word": " purpose", "probability": 0.2841796875}, {"start": 139.93, "end": 140.07, "word": " of", "probability": 0.95458984375}, {"start": 140.07, "end": 140.13, "word": " the", "probability": 0.638671875}, {"start": 140.13, "end": 140.21, "word": " basic", "probability": 0.343505859375}, {"start": 140.21, "end": 140.63, "word": " interface?", "probability": 0.87744140625}, {"start": 142.43, "end": 142.79, "word": " To", "probability": 0.36474609375}, {"start": 142.79, "end": 143.13, "word": " unify", "probability": 0.658447265625}, {"start": 143.13, "end": 143.35, "word": " the", "probability": 0.218017578125}, {"start": 143.35, "end": 143.55, "word": " types", "probability": 0.42333984375}, {"start": 143.55, "end": 143.71, "word": " of", "probability": 0.953125}, {"start": 143.71, "end": 143.99, "word": " things", "probability": 0.67529296875}, {"start": 143.99, "end": 144.67, "word": " that", "probability": 0.44287109375}, {"start": 144.67, "end": 145.99, "word": " are", "probability": 0.64501953125}, {"start": 145.99, "end": 146.05, "word": " of", "probability": 0.183837890625}, {"start": 146.05, "end": 146.17, "word": " different", "probability": 0.806640625}, {"start": 146.17, "end": 146.71, "word": " types", "probability": 0.6455078125}, {"start": 146.71, "end": 147.13, "word": " There", "probability": 0.286865234375}, {"start": 147.13, "end": 147.45, "word": " is", "probability": 0.763671875}, {"start": 147.45, "end": 147.55, "word": " no", "probability": 0.828125}, {"start": 147.55, "end": 147.71, "word": " common", "probability": 0.373779296875}, {"start": 147.71, "end": 148.35, "word": " thing", "probability": 0.53271484375}, {"start": 148.35, "end": 148.41, "word": " between", "probability": 0.266845703125}, {"start": 148.41, "end": 148.41, "word": " them,", "probability": 0.5400390625}, {"start": 148.65, "end": 148.85, "word": " so", "probability": 0.6953125}, {"start": 148.85, "end": 148.89, "word": " you", "probability": 0.77685546875}, {"start": 148.89, "end": 149.03, "word": " want", "probability": 0.49169921875}, {"start": 149.03, "end": 149.17, "word": " to", "probability": 0.97021484375}, {"start": 149.17, "end": 149.53, "word": " unify", "probability": 0.72900390625}, {"start": 149.53, "end": 149.95, "word": " the", "probability": 0.259033203125}, {"start": 149.95, "end": 149.95, "word": " types,", "probability": 0.71923828125}, {"start": 150.03, "end": 150.07, "word": " to", "probability": 0.3212890625}, {"start": 150.07, "end": 150.19, "word": " make", "probability": 0.5908203125}, {"start": 150.19, "end": 150.37, "word": " them", "probability": 0.85205078125}, {"start": 150.37, "end": 150.41, "word": " of", "probability": 0.51025390625}, {"start": 150.41, "end": 151.41, "word": " the", "probability": 0.489990234375}, {"start": 151.41, "end": 151.63, "word": " same", "probability": 0.86572265625}, {"start": 151.63, "end": 151.63, "word": " type", "probability": 0.77099609375}, {"start": 151.63, "end": 151.87, "word": " This", "probability": 0.40185546875}, {"start": 151.87, "end": 151.95, "word": " is", "probability": 0.91015625}, {"start": 151.95, "end": 151.99, "word": " the", "probability": 0.791015625}, {"start": 151.99, "end": 152.17, "word": " purpose", "probability": 0.6953125}, {"start": 152.17, "end": 152.29, "word": " of", "probability": 0.69677734375}, {"start": 152.29, "end": 152.37, "word": " the", "probability": 0.59912109375}, {"start": 152.37, "end": 152.41, "word": " interface,", "probability": 0.783203125}, {"start": 152.43, "end": 152.59, "word": " not", "probability": 0.5146484375}, {"start": 152.59, "end": 152.85, "word": " to", "probability": 0.4208984375}, {"start": 152.85, "end": 153.03, "word": " make", "probability": 0.6630859375}, {"start": 153.03, "end": 153.11, "word": " it", "probability": 0.41162109375}, {"start": 153.11, "end": 153.43, "word": " complicated", "probability": 0.33935546875}, {"start": 153.43, "end": 154.17, "word": " or", "probability": 0.546875}, {"start": 154.17, "end": 154.23, "word": " to", "probability": 0.4482421875}, {"start": 154.23, "end": 154.43, "word": " show", "probability": 0.615234375}, {"start": 154.43, "end": 154.63, "word": " you", "probability": 0.8564453125}, {"start": 154.63, "end": 154.69, "word": " the", "probability": 0.79833984375}, {"start": 154.69, "end": 154.99, "word": " methods", "probability": 0.732421875}, {"start": 154.99, "end": 155.17, "word": " you", "probability": 0.2744140625}, {"start": 155.17, "end": 155.35, "word": " have", "probability": 0.2120361328125}, {"start": 155.35, "end": 155.35, "word": " to", "probability": 0.97216796875}, {"start": 155.35, "end": 155.67, "word": " follow", "probability": 0.39794921875}, {"start": 155.67, "end": 156.21, "word": " No,", "probability": 0.5}, {"start": 156.43, "end": 156.63, "word": " this", "probability": 0.55078125}, {"start": 156.63, "end": 156.71, "word": " is", "probability": 0.931640625}, {"start": 156.71, "end": 156.91, "word": " the", "probability": 0.9013671875}, {"start": 156.91, "end": 156.91, "word": " purpose", "probability": 0.484619140625}, {"start": 156.91, "end": 156.97, "word": " of", "probability": 0.9619140625}, {"start": 156.97, "end": 157.51, "word": " the", "probability": 0.87890625}, {"start": 157.51, "end": 157.71, "word": " basic", "probability": 0.69970703125}, {"start": 157.71, "end": 157.71, "word": " interface", "probability": 0.87353515625}, {"start": 157.71, "end": 158.01, "word": " that", "probability": 0.34716796875}, {"start": 158.01, "end": 158.17, "word": " these", "probability": 0.64501953125}, {"start": 158.17, "end": 158.29, "word": " are", "probability": 0.73388671875}, {"start": 158.29, "end": 158.35, "word": " of", "probability": 0.6728515625}, {"start": 158.35, "end": 159.01, "word": " different", "probability": 0.8798828125}, {"start": 159.01, "end": 159.03, "word": " types", "probability": 0.80859375}, {"start": 159.03, "end": 159.69, "word": " and", "probability": 0.447998046875}, {"start": 159.69, "end": 159.81, "word": " we", "probability": 0.79833984375}, {"start": 159.81, "end": 159.93, "word": " made", "probability": 0.6240234375}, {"start": 159.93, "end": 160.17, "word": " them", "probability": 0.90283203125}, {"start": 160.17, "end": 160.23, "word": " of", "probability": 0.73779296875}, {"start": 160.23, "end": 160.31, "word": " the", "probability": 0.73046875}, {"start": 160.31, "end": 160.63, "word": " same", "probability": 0.88525390625}, {"start": 160.63, "end": 160.63, "word": " type", "probability": 0.95068359375}, {"start": 160.63, "end": 161.47, "word": " Why", "probability": 0.77490234375}, {"start": 161.47, "end": 161.51, "word": " do", "probability": 0.51123046875}, {"start": 161.51, "end": 161.61, "word": " we", "probability": 0.93896484375}, {"start": 161.61, "end": 161.79, "word": " make", "probability": 0.85009765625}, {"start": 161.79, "end": 161.93, "word": " them", "probability": 0.89306640625}, {"start": 161.93, "end": 162.01, "word": " of", "probability": 0.8564453125}, {"start": 162.01, "end": 162.29, "word": " the", "probability": 0.83642578125}, {"start": 162.29, "end": 162.43, "word": " same", "probability": 0.8896484375}, {"start": 162.43, "end": 162.43, "word": " type?", "probability": 0.96826171875}, {"start": 162.89, "end": 163.11, "word": " On", "probability": 0.433837890625}, {"start": 163.11, "end": 163.23, "word": " the", "probability": 0.481201171875}, {"start": 163.23, "end": 163.41, "word": " basis", "probability": 0.8310546875}, {"start": 163.41, "end": 163.57, "word": " that", "probability": 0.5}, {"start": 163.57, "end": 163.61, "word": " we", "probability": 0.798828125}, {"start": 163.61, "end": 163.79, "word": " make", "probability": 0.79248046875}, {"start": 163.79, "end": 164.21, "word": " this", "probability": 0.81689453125}], "temperature": 1.0}, {"id": 7, "seek": 19065, "start": 165.47, "end": 190.65, "text": "It deals only with the type of the interface So now we are going to create a list of what? Of observers Anyone who wants to listen to this component will register as what? As an observer So this component will know only the type of the observer and will send an observer to it As we saw in the previous lecture In this lecture, we will see another example", "tokens": [3522, 11215, 787, 365, 264, 2010, 295, 264, 9226, 407, 586, 321, 366, 516, 281, 1884, 257, 1329, 295, 437, 30, 2720, 48090, 14643, 567, 2738, 281, 2140, 281, 341, 6542, 486, 7280, 382, 437, 30, 1018, 364, 27878, 407, 341, 6542, 486, 458, 787, 264, 2010, 295, 264, 27878, 293, 486, 2845, 364, 27878, 281, 309, 1018, 321, 1866, 294, 264, 3894, 7991, 682, 341, 7991, 11, 321, 486, 536, 1071, 1365], "avg_logprob": -0.5510979874714, "compression_ratio": 1.775, "no_speech_prob": 1.9669532775878906e-06, "words": [{"start": 165.47, "end": 166.05, "word": "It", "probability": 0.10760498046875}, {"start": 166.05, "end": 166.41, "word": " deals", "probability": 0.1943359375}, {"start": 166.41, "end": 166.83, "word": " only", "probability": 0.5634765625}, {"start": 166.83, "end": 166.97, "word": " with", "probability": 0.89599609375}, {"start": 166.97, "end": 167.09, "word": " the", "probability": 0.489013671875}, {"start": 167.09, "end": 167.25, "word": " type", "probability": 0.5244140625}, {"start": 167.25, "end": 168.31, "word": " of", "probability": 0.943359375}, {"start": 168.31, "end": 168.35, "word": " the", "probability": 0.300537109375}, {"start": 168.35, "end": 168.91, "word": " interface", "probability": 0.82470703125}, {"start": 168.91, "end": 169.61, "word": " So", "probability": 0.12322998046875}, {"start": 169.61, "end": 169.89, "word": " now", "probability": 0.185546875}, {"start": 169.89, "end": 170.19, "word": " we", "probability": 0.7099609375}, {"start": 170.19, "end": 170.23, "word": " are", "probability": 0.26025390625}, {"start": 170.23, "end": 170.27, "word": " going", "probability": 0.787109375}, {"start": 170.27, "end": 170.27, "word": " to", "probability": 0.96826171875}, {"start": 170.27, "end": 170.47, "word": " create", "probability": 0.322509765625}, {"start": 170.47, "end": 170.65, "word": " a", "probability": 0.85986328125}, {"start": 170.65, "end": 170.93, "word": " list", "probability": 0.828125}, {"start": 170.93, "end": 171.15, "word": " of", "probability": 0.8984375}, {"start": 171.15, "end": 171.53, "word": " what?", "probability": 0.343505859375}, {"start": 171.87, "end": 172.41, "word": " Of", "probability": 0.45947265625}, {"start": 172.41, "end": 172.91, "word": " observers", "probability": 0.484130859375}, {"start": 172.91, "end": 173.81, "word": " Anyone", "probability": 0.2491455078125}, {"start": 173.81, "end": 174.25, "word": " who", "probability": 0.42822265625}, {"start": 174.25, "end": 174.55, "word": " wants", "probability": 0.60888671875}, {"start": 174.55, "end": 175.27, "word": " to", "probability": 0.70703125}, {"start": 175.27, "end": 175.97, "word": " listen", "probability": 0.468017578125}, {"start": 175.97, "end": 176.19, "word": " to", "probability": 0.9326171875}, {"start": 176.19, "end": 176.55, "word": " this", "probability": 0.6669921875}, {"start": 176.55, "end": 177.25, "word": " component", "probability": 0.81982421875}, {"start": 177.25, "end": 178.95, "word": " will", "probability": 0.146484375}, {"start": 178.95, "end": 179.47, "word": " register", "probability": 0.491943359375}, {"start": 179.47, "end": 180.05, "word": " as", "probability": 0.318115234375}, {"start": 180.05, "end": 180.41, "word": " what?", "probability": 0.41748046875}, {"start": 180.85, "end": 181.15, "word": " As", "probability": 0.740234375}, {"start": 181.15, "end": 181.25, "word": " an", "probability": 0.85498046875}, {"start": 181.25, "end": 181.53, "word": " observer", "probability": 0.861328125}, {"start": 181.53, "end": 181.79, "word": " So", "probability": 0.50732421875}, {"start": 181.79, "end": 182.31, "word": " this", "probability": 0.71044921875}, {"start": 182.31, "end": 182.93, "word": " component", "probability": 0.84619140625}, {"start": 182.93, "end": 183.11, "word": " will", "probability": 0.419921875}, {"start": 183.11, "end": 183.27, "word": " know", "probability": 0.2998046875}, {"start": 183.27, "end": 183.61, "word": " only", "probability": 0.89111328125}, {"start": 183.61, "end": 183.77, "word": " the", "probability": 0.8330078125}, {"start": 183.77, "end": 183.85, "word": " type", "probability": 0.94140625}, {"start": 183.85, "end": 183.93, "word": " of", "probability": 0.97021484375}, {"start": 183.93, "end": 183.97, "word": " the", "probability": 0.568359375}, {"start": 183.97, "end": 184.31, "word": " observer", "probability": 0.87060546875}, {"start": 184.31, "end": 184.53, "word": " and", "probability": 0.76806640625}, {"start": 184.53, "end": 184.57, "word": " will", "probability": 0.513671875}, {"start": 184.57, "end": 184.77, "word": " send", "probability": 0.68408203125}, {"start": 184.77, "end": 185.13, "word": " an", "probability": 0.226318359375}, {"start": 185.13, "end": 185.63, "word": " observer", "probability": 0.92431640625}, {"start": 185.63, "end": 185.73, "word": " to", "probability": 0.73388671875}, {"start": 185.73, "end": 185.73, "word": " it", "probability": 0.7138671875}, {"start": 185.73, "end": 186.21, "word": " As", "probability": 0.27392578125}, {"start": 186.21, "end": 186.33, "word": " we", "probability": 0.7822265625}, {"start": 186.33, "end": 186.57, "word": " saw", "probability": 0.7890625}, {"start": 186.57, "end": 187.17, "word": " in", "probability": 0.8388671875}, {"start": 187.17, "end": 187.21, "word": " the", "probability": 0.86376953125}, {"start": 187.21, "end": 187.81, "word": " previous", "probability": 0.6005859375}, {"start": 187.81, "end": 187.81, "word": " lecture", "probability": 0.84716796875}, {"start": 187.81, "end": 189.47, "word": " In", "probability": 0.396240234375}, {"start": 189.47, "end": 189.53, "word": " this", "probability": 0.91455078125}, {"start": 189.53, "end": 189.83, "word": " lecture,", "probability": 0.95458984375}, {"start": 190.03, "end": 190.11, "word": " we", "probability": 0.9482421875}, {"start": 190.11, "end": 190.13, "word": " will", "probability": 0.556640625}, {"start": 190.13, "end": 190.25, "word": " see", "probability": 0.8046875}, {"start": 190.25, "end": 190.33, "word": " another", "probability": 0.87255859375}, {"start": 190.33, "end": 190.65, "word": " example", "probability": 0.96142578125}], "temperature": 1.0}, {"id": 8, "seek": 22004, "start": 192.12, "end": 220.04, "text": " It means that there is a bit of a practical nature to the topic of the observer in order to better understand it and how to apply it. For example, imagine a chat program, okay? I found a chat program whose idea is that I have a user interface, okay? In the user interface, of course, for example, here you write the message, you say send, okay? Here are the messages that you send or what?", "tokens": [467, 1355, 300, 456, 307, 257, 857, 295, 257, 8496, 3687, 281, 264, 4829, 295, 264, 27878, 294, 1668, 281, 1101, 1223, 309, 293, 577, 281, 3079, 309, 13, 1171, 1365, 11, 3811, 257, 5081, 1461, 11, 1392, 30, 286, 1352, 257, 5081, 1461, 6104, 1558, 307, 300, 286, 362, 257, 4195, 9226, 11, 1392, 30, 682, 264, 4195, 9226, 11, 295, 1164, 11, 337, 1365, 11, 510, 291, 2464, 264, 3636, 11, 291, 584, 2845, 11, 1392, 30, 1692, 366, 264, 7897, 300, 291, 2845, 420, 437, 30], "avg_logprob": -0.47152776850594413, "compression_ratio": 1.7727272727272727, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 192.12, "end": 192.36, "word": " It", "probability": 0.1258544921875}, {"start": 192.36, "end": 192.5, "word": " means", "probability": 0.495849609375}, {"start": 192.5, "end": 193.08, "word": " that", "probability": 0.386962890625}, {"start": 193.08, "end": 193.22, "word": " there", "probability": 0.513671875}, {"start": 193.22, "end": 193.26, "word": " is", "probability": 0.6767578125}, {"start": 193.26, "end": 193.3, "word": " a", "probability": 0.689453125}, {"start": 193.3, "end": 193.3, "word": " bit", "probability": 0.09320068359375}, {"start": 193.3, "end": 193.3, "word": " of", "probability": 0.91845703125}, {"start": 193.3, "end": 193.68, "word": " a", "probability": 0.623046875}, {"start": 193.68, "end": 193.88, "word": " practical", "probability": 0.6337890625}, {"start": 193.88, "end": 193.88, "word": " nature", "probability": 0.1446533203125}, {"start": 193.88, "end": 195.28, "word": " to", "probability": 0.1529541015625}, {"start": 195.28, "end": 196.24, "word": " the", "probability": 0.404296875}, {"start": 196.24, "end": 196.48, "word": " topic", "probability": 0.271484375}, {"start": 196.48, "end": 196.58, "word": " of", "probability": 0.7763671875}, {"start": 196.58, "end": 196.64, "word": " the", "probability": 0.54443359375}, {"start": 196.64, "end": 197.1, "word": " observer", "probability": 0.71728515625}, {"start": 197.1, "end": 197.82, "word": " in", "probability": 0.2352294921875}, {"start": 197.82, "end": 197.82, "word": " order", "probability": 0.90380859375}, {"start": 197.82, "end": 198.0, "word": " to", "probability": 0.8203125}, {"start": 198.0, "end": 198.28, "word": " better", "probability": 0.5712890625}, {"start": 198.28, "end": 198.28, "word": " understand", "probability": 0.65625}, {"start": 198.28, "end": 199.5, "word": " it", "probability": 0.46923828125}, {"start": 199.5, "end": 199.56, "word": " and", "probability": 0.82861328125}, {"start": 199.56, "end": 199.72, "word": " how", "probability": 0.375244140625}, {"start": 199.72, "end": 199.78, "word": " to", "probability": 0.53173828125}, {"start": 199.78, "end": 200.06, "word": " apply", "probability": 0.76953125}, {"start": 200.06, "end": 200.4, "word": " it.", "probability": 0.9228515625}, {"start": 200.74, "end": 201.12, "word": " For", "probability": 0.3935546875}, {"start": 201.12, "end": 201.52, "word": " example,", "probability": 0.91455078125}, {"start": 202.2, "end": 203.28, "word": " imagine", "probability": 0.830078125}, {"start": 203.28, "end": 203.74, "word": " a", "probability": 0.7578125}, {"start": 203.74, "end": 204.1, "word": " chat", "probability": 0.8544921875}, {"start": 204.1, "end": 204.12, "word": " program,", "probability": 0.67138671875}, {"start": 205.1, "end": 205.4, "word": " okay?", "probability": 0.52392578125}, {"start": 205.94, "end": 206.08, "word": " I", "probability": 0.42431640625}, {"start": 206.08, "end": 206.24, "word": " found", "probability": 0.64404296875}, {"start": 206.24, "end": 206.7, "word": " a", "probability": 0.80224609375}, {"start": 206.7, "end": 207.02, "word": " chat", "probability": 0.919921875}, {"start": 207.02, "end": 207.02, "word": " program", "probability": 0.81689453125}, {"start": 207.02, "end": 207.16, "word": " whose", "probability": 0.33154296875}, {"start": 207.16, "end": 207.38, "word": " idea", "probability": 0.74951171875}, {"start": 207.38, "end": 207.78, "word": " is", "probability": 0.822265625}, {"start": 207.78, "end": 207.86, "word": " that", "probability": 0.818359375}, {"start": 207.86, "end": 208.06, "word": " I", "probability": 0.82666015625}, {"start": 208.06, "end": 208.18, "word": " have", "probability": 0.93505859375}, {"start": 208.18, "end": 208.44, "word": " a", "probability": 0.92138671875}, {"start": 208.44, "end": 208.62, "word": " user", "probability": 0.9462890625}, {"start": 208.62, "end": 209.26, "word": " interface,", "probability": 0.87451171875}, {"start": 209.4, "end": 210.8, "word": " okay?", "probability": 0.76220703125}, {"start": 210.9, "end": 211.0, "word": " In", "probability": 0.8515625}, {"start": 211.0, "end": 211.1, "word": " the", "probability": 0.86474609375}, {"start": 211.1, "end": 211.3, "word": " user", "probability": 0.9365234375}, {"start": 211.3, "end": 211.94, "word": " interface,", "probability": 0.8623046875}, {"start": 212.16, "end": 212.24, "word": " of", "probability": 0.384765625}, {"start": 212.24, "end": 212.38, "word": " course,", "probability": 0.96337890625}, {"start": 212.64, "end": 212.86, "word": " for", "probability": 0.59033203125}, {"start": 212.86, "end": 213.16, "word": " example,", "probability": 0.958984375}, {"start": 213.58, "end": 213.76, "word": " here", "probability": 0.77294921875}, {"start": 213.76, "end": 213.88, "word": " you", "probability": 0.84716796875}, {"start": 213.88, "end": 214.08, "word": " write", "probability": 0.7177734375}, {"start": 214.08, "end": 214.2, "word": " the", "probability": 0.625}, {"start": 214.2, "end": 214.56, "word": " message,", "probability": 0.8876953125}, {"start": 214.68, "end": 214.78, "word": " you", "probability": 0.861328125}, {"start": 214.78, "end": 214.98, "word": " say", "probability": 0.607421875}, {"start": 214.98, "end": 215.44, "word": " send,", "probability": 0.5}, {"start": 216.54, "end": 216.72, "word": " okay?", "probability": 0.73583984375}, {"start": 217.24, "end": 217.44, "word": " Here", "probability": 0.69189453125}, {"start": 217.44, "end": 217.62, "word": " are", "probability": 0.313720703125}, {"start": 217.62, "end": 217.9, "word": " the", "probability": 0.82568359375}, {"start": 217.9, "end": 218.28, "word": " messages", "probability": 0.90771484375}, {"start": 218.28, "end": 218.72, "word": " that", "probability": 0.6171875}, {"start": 218.72, "end": 218.92, "word": " you", "probability": 0.904296875}, {"start": 218.92, "end": 219.2, "word": " send", "probability": 0.7890625}, {"start": 219.2, "end": 219.7, "word": " or", "probability": 0.69482421875}, {"start": 219.7, "end": 220.04, "word": " what?", "probability": 0.83837890625}], "temperature": 1.0}, {"id": 9, "seek": 24519, "start": 221.63, "end": 245.19, "text": " or the one you receive it from, okay? So this is your user interface. Because really, the user interface is not ... I mean, we don't put all the code in this class. I have a component that I call, for example, a message handler. For example, any message that comes from the internet", "tokens": [420, 264, 472, 291, 4774, 309, 490, 11, 1392, 30, 407, 341, 307, 428, 4195, 9226, 13, 1436, 534, 11, 264, 4195, 9226, 307, 406, 1097, 286, 914, 11, 321, 500, 380, 829, 439, 264, 3089, 294, 341, 1508, 13, 286, 362, 257, 6542, 300, 286, 818, 11, 337, 1365, 11, 257, 3636, 41967, 13, 1171, 1365, 11, 604, 3636, 300, 1487, 490, 264, 4705], "avg_logprob": -0.5014204301617362, "compression_ratio": 1.5722222222222222, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 221.63, "end": 221.93, "word": " or", "probability": 0.42578125}, {"start": 221.93, "end": 222.03, "word": " the", "probability": 0.28564453125}, {"start": 222.03, "end": 222.03, "word": " one", "probability": 0.68017578125}, {"start": 222.03, "end": 222.13, "word": " you", "probability": 0.82080078125}, {"start": 222.13, "end": 222.47, "word": " receive", "probability": 0.356689453125}, {"start": 222.47, "end": 222.89, "word": " it", "probability": 0.19580078125}, {"start": 222.89, "end": 222.89, "word": " from,", "probability": 0.63232421875}, {"start": 223.15, "end": 223.45, "word": " okay?", "probability": 0.312744140625}, {"start": 224.67, "end": 224.95, "word": " So", "probability": 0.6162109375}, {"start": 224.95, "end": 225.11, "word": " this", "probability": 0.6572265625}, {"start": 225.11, "end": 225.13, "word": " is", "probability": 0.9267578125}, {"start": 225.13, "end": 225.21, "word": " your", "probability": 0.8115234375}, {"start": 225.21, "end": 225.39, "word": " user", "probability": 0.93115234375}, {"start": 225.39, "end": 225.99, "word": " interface.", "probability": 0.873046875}, {"start": 227.13, "end": 227.39, "word": " Because", "probability": 0.42138671875}, {"start": 227.39, "end": 227.71, "word": " really,", "probability": 0.240478515625}, {"start": 228.11, "end": 228.31, "word": " the", "probability": 0.4228515625}, {"start": 228.31, "end": 228.53, "word": " user", "probability": 0.935546875}, {"start": 228.53, "end": 228.97, "word": " interface", "probability": 0.85107421875}, {"start": 228.97, "end": 229.15, "word": " is", "probability": 0.31640625}, {"start": 229.15, "end": 229.27, "word": " not", "probability": 0.81884765625}, {"start": 229.27, "end": 229.43, "word": " ...", "probability": 0.156494140625}, {"start": 229.43, "end": 229.63, "word": " I", "probability": 0.453125}, {"start": 229.63, "end": 229.65, "word": " mean,", "probability": 0.77392578125}, {"start": 229.85, "end": 230.03, "word": " we", "probability": 0.64697265625}, {"start": 230.03, "end": 230.05, "word": " don't", "probability": 0.89453125}, {"start": 230.05, "end": 230.27, "word": " put", "probability": 0.69970703125}, {"start": 230.27, "end": 230.47, "word": " all", "probability": 0.7880859375}, {"start": 230.47, "end": 230.47, "word": " the", "probability": 0.7890625}, {"start": 230.47, "end": 230.69, "word": " code", "probability": 0.8623046875}, {"start": 230.69, "end": 230.99, "word": " in", "probability": 0.8818359375}, {"start": 230.99, "end": 231.07, "word": " this", "probability": 0.82568359375}, {"start": 231.07, "end": 231.61, "word": " class.", "probability": 0.9599609375}, {"start": 231.77, "end": 231.85, "word": " I", "probability": 0.89501953125}, {"start": 231.85, "end": 232.17, "word": " have", "probability": 0.70166015625}, {"start": 232.17, "end": 232.37, "word": " a", "probability": 0.84130859375}, {"start": 232.37, "end": 232.85, "word": " component", "probability": 0.7900390625}, {"start": 232.85, "end": 233.11, "word": " that", "probability": 0.218994140625}, {"start": 233.11, "end": 233.11, "word": " I", "probability": 0.40771484375}, {"start": 233.11, "end": 234.51, "word": " call,", "probability": 0.611328125}, {"start": 234.65, "end": 234.81, "word": " for", "probability": 0.92041015625}, {"start": 234.81, "end": 234.91, "word": " example,", "probability": 0.94140625}, {"start": 234.99, "end": 235.07, "word": " a", "probability": 0.25146484375}, {"start": 235.07, "end": 235.29, "word": " message", "probability": 0.79150390625}, {"start": 235.29, "end": 235.71, "word": " handler.", "probability": 0.91064453125}, {"start": 240.71, "end": 241.15, "word": " For", "probability": 0.9189453125}, {"start": 241.15, "end": 241.29, "word": " example,", "probability": 0.95361328125}, {"start": 242.17, "end": 242.63, "word": " any", "probability": 0.83544921875}, {"start": 242.63, "end": 243.05, "word": " message", "probability": 0.80126953125}, {"start": 243.05, "end": 244.19, "word": " that", "probability": 0.6328125}, {"start": 244.19, "end": 244.37, "word": " comes", "probability": 0.22509765625}, {"start": 244.37, "end": 244.69, "word": " from", "probability": 0.84912109375}, {"start": 244.69, "end": 244.81, "word": " the", "probability": 0.86962890625}, {"start": 244.81, "end": 245.19, "word": " internet", "probability": 0.708984375}], "temperature": 1.0}, {"id": 10, "seek": 27156, "start": 248.94, "end": 271.56, "text": " I receive it from the network message handler and send it to whom? To the UI, so that it shows up. Any message that I want to send, I make a SYN, I send it to the network message handler, and the network message handler sends it to whom? To the internet. So this is the function of communication with the network, to send and receive messages. It is also possible that in the application that we follow, I have another component, for example Logger.", "tokens": [286, 4774, 309, 490, 264, 3209, 3636, 41967, 293, 2845, 309, 281, 7101, 30, 1407, 264, 15682, 11, 370, 300, 309, 3110, 493, 13, 2639, 3636, 300, 286, 528, 281, 2845, 11, 286, 652, 257, 318, 22315, 11, 286, 2845, 309, 281, 264, 3209, 3636, 41967, 11, 293, 264, 3209, 3636, 41967, 14790, 309, 281, 7101, 30, 1407, 264, 4705, 13, 407, 341, 307, 264, 2445, 295, 6101, 365, 264, 3209, 11, 281, 2845, 293, 4774, 7897, 13, 467, 307, 611, 1944, 300, 294, 264, 3861, 300, 321, 1524, 11, 286, 362, 1071, 6542, 11, 337, 1365, 10824, 1321, 13], "avg_logprob": -0.46998761077918627, "compression_ratio": 1.9230769230769231, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 248.94, "end": 249.14, "word": " I", "probability": 0.0452880859375}, {"start": 249.14, "end": 249.48, "word": " receive", "probability": 0.533203125}, {"start": 249.48, "end": 249.62, "word": " it", "probability": 0.51416015625}, {"start": 249.62, "end": 249.68, "word": " from", "probability": 0.33544921875}, {"start": 249.68, "end": 249.72, "word": " the", "probability": 0.62158203125}, {"start": 249.72, "end": 249.94, "word": " network", "probability": 0.671875}, {"start": 249.94, "end": 250.28, "word": " message", "probability": 0.6767578125}, {"start": 250.28, "end": 250.6, "word": " handler", "probability": 0.8837890625}, {"start": 250.6, "end": 250.76, "word": " and", "probability": 0.69677734375}, {"start": 250.76, "end": 250.98, "word": " send", "probability": 0.430419921875}, {"start": 250.98, "end": 251.12, "word": " it", "probability": 0.89013671875}, {"start": 251.12, "end": 251.2, "word": " to", "probability": 0.91796875}, {"start": 251.2, "end": 251.4, "word": " whom?", "probability": 0.3955078125}, {"start": 252.36, "end": 252.76, "word": " To", "probability": 0.79736328125}, {"start": 252.76, "end": 252.84, "word": " the", "probability": 0.7958984375}, {"start": 252.84, "end": 253.06, "word": " UI,", "probability": 0.9169921875}, {"start": 253.12, "end": 253.3, "word": " so", "probability": 0.38818359375}, {"start": 253.3, "end": 253.46, "word": " that", "probability": 0.47998046875}, {"start": 253.46, "end": 253.52, "word": " it", "probability": 0.70654296875}, {"start": 253.52, "end": 253.66, "word": " shows", "probability": 0.2003173828125}, {"start": 253.66, "end": 254.4, "word": " up.", "probability": 0.7392578125}, {"start": 254.6, "end": 255.0, "word": " Any", "probability": 0.7197265625}, {"start": 255.0, "end": 255.26, "word": " message", "probability": 0.8388671875}, {"start": 255.26, "end": 255.4, "word": " that", "probability": 0.499267578125}, {"start": 255.4, "end": 255.48, "word": " I", "probability": 0.9833984375}, {"start": 255.48, "end": 255.66, "word": " want", "probability": 0.56201171875}, {"start": 255.66, "end": 255.66, "word": " to", "probability": 0.95068359375}, {"start": 255.66, "end": 255.92, "word": " send,", "probability": 0.79736328125}, {"start": 256.18, "end": 256.42, "word": " I", "probability": 0.85791015625}, {"start": 256.42, "end": 256.54, "word": " make", "probability": 0.370361328125}, {"start": 256.54, "end": 256.68, "word": " a", "probability": 0.68212890625}, {"start": 256.68, "end": 256.86, "word": " SYN,", "probability": 0.38824462890625}, {"start": 257.12, "end": 257.26, "word": " I", "probability": 0.287841796875}, {"start": 257.26, "end": 257.48, "word": " send", "probability": 0.802734375}, {"start": 257.48, "end": 257.6, "word": " it", "probability": 0.9140625}, {"start": 257.6, "end": 257.7, "word": " to", "probability": 0.9580078125}, {"start": 257.7, "end": 257.78, "word": " the", "probability": 0.8857421875}, {"start": 257.78, "end": 258.06, "word": " network", "probability": 0.7978515625}, {"start": 258.06, "end": 258.38, "word": " message", "probability": 0.873046875}, {"start": 258.38, "end": 258.64, "word": " handler,", "probability": 0.9189453125}, {"start": 258.74, "end": 258.78, "word": " and", "probability": 0.828125}, {"start": 258.78, "end": 259.06, "word": " the", "probability": 0.77392578125}, {"start": 259.06, "end": 259.34, "word": " network", "probability": 0.7998046875}, {"start": 259.34, "end": 259.64, "word": " message", "probability": 0.88232421875}, {"start": 259.64, "end": 259.84, "word": " handler", "probability": 0.9228515625}, {"start": 259.84, "end": 260.06, "word": " sends", "probability": 0.716796875}, {"start": 260.06, "end": 260.24, "word": " it", "probability": 0.931640625}, {"start": 260.24, "end": 260.34, "word": " to", "probability": 0.9560546875}, {"start": 260.34, "end": 260.5, "word": " whom?", "probability": 0.92724609375}, {"start": 260.88, "end": 261.24, "word": " To", "probability": 0.9365234375}, {"start": 261.24, "end": 261.3, "word": " the", "probability": 0.896484375}, {"start": 261.3, "end": 261.62, "word": " internet.", "probability": 0.62744140625}, {"start": 261.76, "end": 261.88, "word": " So", "probability": 0.4306640625}, {"start": 261.88, "end": 262.08, "word": " this", "probability": 0.494140625}, {"start": 262.08, "end": 262.26, "word": " is", "probability": 0.93310546875}, {"start": 262.26, "end": 262.38, "word": " the", "probability": 0.61083984375}, {"start": 262.38, "end": 262.6, "word": " function", "probability": 0.5986328125}, {"start": 262.6, "end": 262.78, "word": " of", "probability": 0.9609375}, {"start": 262.78, "end": 263.14, "word": " communication", "probability": 0.36865234375}, {"start": 263.14, "end": 263.34, "word": " with", "probability": 0.8642578125}, {"start": 263.34, "end": 263.46, "word": " the", "probability": 0.8505859375}, {"start": 263.46, "end": 263.9, "word": " network,", "probability": 0.958984375}, {"start": 264.06, "end": 264.16, "word": " to", "probability": 0.1485595703125}, {"start": 264.16, "end": 264.38, "word": " send", "probability": 0.59765625}, {"start": 264.38, "end": 264.56, "word": " and", "probability": 0.87255859375}, {"start": 264.56, "end": 264.96, "word": " receive", "probability": 0.95556640625}, {"start": 264.96, "end": 265.94, "word": " messages.", "probability": 0.8330078125}, {"start": 267.38, "end": 267.78, "word": " It", "probability": 0.42822265625}, {"start": 267.78, "end": 268.02, "word": " is", "probability": 0.64111328125}, {"start": 268.02, "end": 268.24, "word": " also", "probability": 0.74365234375}, {"start": 268.24, "end": 268.24, "word": " possible", "probability": 0.927734375}, {"start": 268.24, "end": 268.44, "word": " that", "probability": 0.6103515625}, {"start": 268.44, "end": 268.46, "word": " in", "probability": 0.39013671875}, {"start": 268.46, "end": 268.54, "word": " the", "probability": 0.72607421875}, {"start": 268.54, "end": 268.82, "word": " application", "probability": 0.40087890625}, {"start": 268.82, "end": 268.94, "word": " that", "probability": 0.479248046875}, {"start": 268.94, "end": 268.94, "word": " we", "probability": 0.31298828125}, {"start": 268.94, "end": 269.18, "word": " follow,", "probability": 0.2462158203125}, {"start": 269.52, "end": 269.6, "word": " I", "probability": 0.6396484375}, {"start": 269.6, "end": 269.92, "word": " have", "probability": 0.8154296875}, {"start": 269.92, "end": 270.06, "word": " another", "probability": 0.83984375}, {"start": 270.06, "end": 270.56, "word": " component,", "probability": 0.8701171875}, {"start": 270.9, "end": 271.04, "word": " for", "probability": 0.81298828125}, {"start": 271.04, "end": 271.18, "word": " example", "probability": 0.935546875}, {"start": 271.18, "end": 271.56, "word": " Logger.", "probability": 0.55255126953125}], "temperature": 1.0}, {"id": 11, "seek": 29614, "start": 273.64, "end": 296.14, "text": "What is the use of the logger? Because any message that comes to me will be stored in the history or in the local database, okay? So now in an example or a program like that, there are dependencies. Who are they? Who do these two depend on? The network message handler. Any message that reaches this person, this person will deliver it to these two, okay?", "tokens": [3748, 307, 264, 764, 295, 264, 3565, 1321, 30, 1436, 604, 3636, 300, 1487, 281, 385, 486, 312, 12187, 294, 264, 2503, 420, 294, 264, 2654, 8149, 11, 1392, 30, 407, 586, 294, 364, 1365, 420, 257, 1461, 411, 300, 11, 456, 366, 36606, 13, 2102, 366, 436, 30, 2102, 360, 613, 732, 5672, 322, 30, 440, 3209, 3636, 41967, 13, 2639, 3636, 300, 14235, 341, 954, 11, 341, 954, 486, 4239, 309, 281, 613, 732, 11, 1392, 30], "avg_logprob": -0.5003905974328517, "compression_ratio": 1.6904761904761905, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 273.64, "end": 273.9, "word": "What", "probability": 0.265380859375}, {"start": 273.9, "end": 273.92, "word": " is", "probability": 0.548828125}, {"start": 273.92, "end": 273.98, "word": " the", "probability": 0.81884765625}, {"start": 273.98, "end": 274.1, "word": " use", "probability": 0.274658203125}, {"start": 274.1, "end": 274.24, "word": " of", "probability": 0.97216796875}, {"start": 274.24, "end": 274.3, "word": " the", "probability": 0.31591796875}, {"start": 274.3, "end": 274.52, "word": " logger?", "probability": 0.6099853515625}, {"start": 274.54, "end": 274.66, "word": " Because", "probability": 0.326171875}, {"start": 274.66, "end": 274.86, "word": " any", "probability": 0.62158203125}, {"start": 274.86, "end": 275.14, "word": " message", "probability": 0.73388671875}, {"start": 275.14, "end": 275.62, "word": " that", "probability": 0.477783203125}, {"start": 275.62, "end": 275.86, "word": " comes", "probability": 0.525390625}, {"start": 275.86, "end": 276.56, "word": " to", "probability": 0.7197265625}, {"start": 276.56, "end": 276.78, "word": " me", "probability": 0.5263671875}, {"start": 276.78, "end": 276.96, "word": " will", "probability": 0.13232421875}, {"start": 276.96, "end": 277.04, "word": " be", "probability": 0.74169921875}, {"start": 277.04, "end": 277.32, "word": " stored", "probability": 0.7900390625}, {"start": 277.32, "end": 277.54, "word": " in", "probability": 0.9033203125}, {"start": 277.54, "end": 277.62, "word": " the", "probability": 0.53466796875}, {"start": 277.62, "end": 277.96, "word": " history", "probability": 0.70458984375}, {"start": 277.96, "end": 278.7, "word": " or", "probability": 0.88671875}, {"start": 278.7, "end": 278.84, "word": " in", "probability": 0.5810546875}, {"start": 278.84, "end": 278.88, "word": " the", "probability": 0.445068359375}, {"start": 278.88, "end": 279.12, "word": " local", "probability": 0.85107421875}, {"start": 279.12, "end": 279.64, "word": " database,", "probability": 0.94580078125}, {"start": 279.66, "end": 280.38, "word": " okay?", "probability": 0.374755859375}, {"start": 281.56, "end": 281.86, "word": " So", "probability": 0.47509765625}, {"start": 281.86, "end": 282.08, "word": " now", "probability": 0.71435546875}, {"start": 282.08, "end": 282.4, "word": " in", "probability": 0.580078125}, {"start": 282.4, "end": 282.58, "word": " an", "probability": 0.634765625}, {"start": 282.58, "end": 282.84, "word": " example", "probability": 0.974609375}, {"start": 282.84, "end": 283.04, "word": " or", "probability": 0.87158203125}, {"start": 283.04, "end": 283.12, "word": " a", "probability": 0.432861328125}, {"start": 283.12, "end": 283.4, "word": " program", "probability": 0.62548828125}, {"start": 283.4, "end": 283.52, "word": " like", "probability": 0.8955078125}, {"start": 283.52, "end": 283.92, "word": " that,", "probability": 0.50390625}, {"start": 284.26, "end": 284.4, "word": " there", "probability": 0.63134765625}, {"start": 284.4, "end": 284.4, "word": " are", "probability": 0.86962890625}, {"start": 284.4, "end": 285.1, "word": " dependencies.", "probability": 0.3857421875}, {"start": 286.04, "end": 286.32, "word": " Who", "probability": 0.43798828125}, {"start": 286.32, "end": 286.42, "word": " are", "probability": 0.91015625}, {"start": 286.42, "end": 286.5, "word": " they?", "probability": 0.85693359375}, {"start": 286.78, "end": 286.96, "word": " Who", "probability": 0.62744140625}, {"start": 286.96, "end": 286.96, "word": " do", "probability": 0.576171875}, {"start": 286.96, "end": 287.1, "word": " these", "probability": 0.7666015625}, {"start": 287.1, "end": 287.6, "word": " two", "probability": 0.9052734375}, {"start": 287.6, "end": 288.72, "word": " depend", "probability": 0.67626953125}, {"start": 288.72, "end": 289.06, "word": " on?", "probability": 0.93359375}, {"start": 289.82, "end": 290.18, "word": " The", "probability": 0.4033203125}, {"start": 290.18, "end": 290.44, "word": " network", "probability": 0.5595703125}, {"start": 290.44, "end": 290.78, "word": " message", "probability": 0.84130859375}, {"start": 290.78, "end": 291.08, "word": " handler.", "probability": 0.90234375}, {"start": 291.18, "end": 291.32, "word": " Any", "probability": 0.6396484375}, {"start": 291.32, "end": 291.6, "word": " message", "probability": 0.865234375}, {"start": 291.6, "end": 291.78, "word": " that", "probability": 0.6171875}, {"start": 291.78, "end": 292.0, "word": " reaches", "probability": 0.7138671875}, {"start": 292.0, "end": 292.4, "word": " this", "probability": 0.76025390625}, {"start": 292.4, "end": 292.5, "word": " person,", "probability": 0.331298828125}, {"start": 292.52, "end": 292.7, "word": " this", "probability": 0.80126953125}, {"start": 292.7, "end": 292.76, "word": " person", "probability": 0.880859375}, {"start": 292.76, "end": 292.94, "word": " will", "probability": 0.70654296875}, {"start": 292.94, "end": 293.18, "word": " deliver", "probability": 0.1939697265625}, {"start": 293.18, "end": 293.34, "word": " it", "probability": 0.89990234375}, {"start": 293.34, "end": 293.62, "word": " to", "probability": 0.9306640625}, {"start": 293.62, "end": 294.68, "word": " these", "probability": 0.489501953125}, {"start": 294.68, "end": 295.04, "word": " two,", "probability": 0.9345703125}, {"start": 295.54, "end": 296.14, "word": " okay?", "probability": 0.8359375}], "temperature": 1.0}, {"id": 12, "seek": 32493, "start": 297.45, "end": 324.93, "text": " Of course, since these two are considered dependencies of the network message handler, it means that this object must have a reference to whom? To the UI, and a reference to whom? To the logger, and this is because when a message arrives, it goes to report it to the UI and to the logger, okay? Now, we assume in our program that these three parts are present, but what do we do? We connect them together, okay? Let's see a simple example", "tokens": [2720, 1164, 11, 1670, 613, 732, 366, 4888, 36606, 295, 264, 3209, 3636, 41967, 11, 309, 1355, 300, 341, 2657, 1633, 362, 257, 6408, 281, 7101, 30, 1407, 264, 15682, 11, 293, 257, 6408, 281, 7101, 30, 1407, 264, 3565, 1321, 11, 293, 341, 307, 570, 562, 257, 3636, 20116, 11, 309, 1709, 281, 2275, 309, 281, 264, 15682, 293, 281, 264, 3565, 1321, 11, 1392, 30, 823, 11, 321, 6552, 294, 527, 1461, 300, 613, 1045, 3166, 366, 1974, 11, 457, 437, 360, 321, 360, 30, 492, 1745, 552, 1214, 11, 1392, 30, 961, 311, 536, 257, 2199, 1365], "avg_logprob": -0.4037747583766975, "compression_ratio": 1.742063492063492, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 297.45, "end": 297.69, "word": " Of", "probability": 0.09100341796875}, {"start": 297.69, "end": 297.79, "word": " course,", "probability": 0.94775390625}, {"start": 297.89, "end": 298.03, "word": " since", "probability": 0.457275390625}, {"start": 298.03, "end": 299.19, "word": " these", "probability": 0.7060546875}, {"start": 299.19, "end": 299.63, "word": " two", "probability": 0.7744140625}, {"start": 299.63, "end": 300.03, "word": " are", "probability": 0.6953125}, {"start": 300.03, "end": 300.43, "word": " considered", "probability": 0.35986328125}, {"start": 300.43, "end": 301.01, "word": " dependencies", "probability": 0.44970703125}, {"start": 301.01, "end": 301.29, "word": " of", "probability": 0.5107421875}, {"start": 301.29, "end": 301.37, "word": " the", "probability": 0.634765625}, {"start": 301.37, "end": 301.69, "word": " network", "probability": 0.327392578125}, {"start": 301.69, "end": 301.99, "word": " message", "probability": 0.76171875}, {"start": 301.99, "end": 302.39, "word": " handler,", "probability": 0.92529296875}, {"start": 302.57, "end": 302.67, "word": " it", "probability": 0.37646484375}, {"start": 302.67, "end": 302.81, "word": " means", "probability": 0.87646484375}, {"start": 302.81, "end": 303.03, "word": " that", "probability": 0.84912109375}, {"start": 303.03, "end": 303.23, "word": " this", "probability": 0.74365234375}, {"start": 303.23, "end": 303.69, "word": " object", "probability": 0.96630859375}, {"start": 303.69, "end": 304.03, "word": " must", "probability": 0.379638671875}, {"start": 304.03, "end": 304.43, "word": " have", "probability": 0.8701171875}, {"start": 304.43, "end": 304.71, "word": " a", "probability": 0.71533203125}, {"start": 304.71, "end": 305.05, "word": " reference", "probability": 0.8251953125}, {"start": 305.05, "end": 305.27, "word": " to", "probability": 0.39697265625}, {"start": 305.27, "end": 305.41, "word": " whom?", "probability": 0.626953125}, {"start": 306.03, "end": 306.55, "word": " To", "probability": 0.64990234375}, {"start": 306.55, "end": 306.63, "word": " the", "probability": 0.79248046875}, {"start": 306.63, "end": 306.93, "word": " UI,", "probability": 0.87060546875}, {"start": 307.01, "end": 307.15, "word": " and", "probability": 0.884765625}, {"start": 307.15, "end": 307.21, "word": " a", "probability": 0.56396484375}, {"start": 307.21, "end": 307.51, "word": " reference", "probability": 0.87451171875}, {"start": 307.51, "end": 307.73, "word": " to", "probability": 0.931640625}, {"start": 307.73, "end": 307.87, "word": " whom?", "probability": 0.7197265625}, {"start": 308.43, "end": 308.67, "word": " To", "probability": 0.9169921875}, {"start": 308.67, "end": 308.75, "word": " the", "probability": 0.890625}, {"start": 308.75, "end": 308.99, "word": " logger,", "probability": 0.80078125}, {"start": 309.05, "end": 309.11, "word": " and", "probability": 0.85595703125}, {"start": 309.11, "end": 309.31, "word": " this", "probability": 0.51025390625}, {"start": 309.31, "end": 309.35, "word": " is", "probability": 0.45556640625}, {"start": 309.35, "end": 309.47, "word": " because", "probability": 0.2127685546875}, {"start": 309.47, "end": 309.69, "word": " when", "probability": 0.70703125}, {"start": 309.69, "end": 310.01, "word": " a", "probability": 0.55126953125}, {"start": 310.01, "end": 310.37, "word": " message", "probability": 0.90283203125}, {"start": 310.37, "end": 310.37, "word": " arrives,", "probability": 0.452392578125}, {"start": 310.65, "end": 311.27, "word": " it", "probability": 0.82763671875}, {"start": 311.27, "end": 311.35, "word": " goes", "probability": 0.345458984375}, {"start": 311.35, "end": 311.47, "word": " to", "probability": 0.4931640625}, {"start": 311.47, "end": 311.71, "word": " report", "probability": 0.2415771484375}, {"start": 311.71, "end": 311.85, "word": " it", "probability": 0.82568359375}, {"start": 311.85, "end": 311.95, "word": " to", "probability": 0.97021484375}, {"start": 311.95, "end": 312.07, "word": " the", "probability": 0.88330078125}, {"start": 312.07, "end": 312.51, "word": " UI", "probability": 0.9580078125}, {"start": 312.51, "end": 313.85, "word": " and", "probability": 0.79443359375}, {"start": 313.85, "end": 313.93, "word": " to", "probability": 0.71142578125}, {"start": 313.93, "end": 313.99, "word": " the", "probability": 0.91162109375}, {"start": 313.99, "end": 314.47, "word": " logger,", "probability": 0.90771484375}, {"start": 314.75, "end": 315.01, "word": " okay?", "probability": 0.464599609375}, {"start": 315.65, "end": 315.99, "word": " Now,", "probability": 0.8984375}, {"start": 316.29, "end": 316.73, "word": " we", "probability": 0.428466796875}, {"start": 316.73, "end": 317.07, "word": " assume", "probability": 0.845703125}, {"start": 317.07, "end": 317.49, "word": " in", "probability": 0.56884765625}, {"start": 317.49, "end": 317.57, "word": " our", "probability": 0.71826171875}, {"start": 317.57, "end": 317.91, "word": " program", "probability": 0.69921875}, {"start": 317.91, "end": 318.37, "word": " that", "probability": 0.8955078125}, {"start": 318.37, "end": 318.65, "word": " these", "probability": 0.84033203125}, {"start": 318.65, "end": 319.37, "word": " three", "probability": 0.85107421875}, {"start": 319.37, "end": 319.37, "word": " parts", "probability": 0.765625}, {"start": 319.37, "end": 319.53, "word": " are", "probability": 0.70947265625}, {"start": 319.53, "end": 319.85, "word": " present,", "probability": 0.52587890625}, {"start": 320.03, "end": 320.19, "word": " but", "probability": 0.8994140625}, {"start": 320.19, "end": 320.57, "word": " what", "probability": 0.90673828125}, {"start": 320.57, "end": 320.69, "word": " do", "probability": 0.71337890625}, {"start": 320.69, "end": 320.69, "word": " we", "probability": 0.9658203125}, {"start": 320.69, "end": 321.03, "word": " do?", "probability": 0.95361328125}, {"start": 321.55, "end": 321.87, "word": " We", "probability": 0.85400390625}, {"start": 321.87, "end": 322.13, "word": " connect", "probability": 0.64697265625}, {"start": 322.13, "end": 322.37, "word": " them", "probability": 0.90283203125}, {"start": 322.37, "end": 322.65, "word": " together,", "probability": 0.78759765625}, {"start": 323.17, "end": 323.41, "word": " okay?", "probability": 0.802734375}, {"start": 323.61, "end": 323.99, "word": " Let's", "probability": 0.909423828125}, {"start": 323.99, "end": 324.21, "word": " see", "probability": 0.53369140625}, {"start": 324.21, "end": 324.33, "word": " a", "probability": 0.83740234375}, {"start": 324.33, "end": 324.85, "word": " simple", "probability": 0.93701171875}, {"start": 324.85, "end": 324.93, "word": " example", "probability": 0.9599609375}], "temperature": 1.0}, {"id": 13, "seek": 35846, "start": 338.6, "end": 358.46, "text": "Now imagine that this is the main screen of the chat, okay? Of course it's still an empty white screen. The messages that come should be displayed on this screen under each other, okay? But until now, the messages that come are not being printed anywhere.", "tokens": [13267, 3811, 300, 341, 307, 264, 2135, 2568, 295, 264, 5081, 11, 1392, 30, 2720, 1164, 309, 311, 920, 364, 6707, 2418, 2568, 13, 440, 7897, 300, 808, 820, 312, 16372, 322, 341, 2568, 833, 1184, 661, 11, 1392, 30, 583, 1826, 586, 11, 264, 7897, 300, 808, 366, 406, 885, 13567, 4992, 13], "avg_logprob": -0.5477272900668058, "compression_ratio": 1.536144578313253, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 338.6, "end": 338.94, "word": "Now", "probability": 0.302734375}, {"start": 338.94, "end": 339.38, "word": " imagine", "probability": 0.724609375}, {"start": 339.38, "end": 340.2, "word": " that", "probability": 0.615234375}, {"start": 340.2, "end": 341.82, "word": " this", "probability": 0.8427734375}, {"start": 341.82, "end": 342.06, "word": " is", "probability": 0.83349609375}, {"start": 342.06, "end": 342.84, "word": " the", "probability": 0.3857421875}, {"start": 342.84, "end": 342.84, "word": " main", "probability": 0.1397705078125}, {"start": 342.84, "end": 342.84, "word": " screen", "probability": 0.7490234375}, {"start": 342.84, "end": 343.94, "word": " of", "probability": 0.52587890625}, {"start": 343.94, "end": 344.5, "word": " the", "probability": 0.61474609375}, {"start": 344.5, "end": 345.32, "word": " chat,", "probability": 0.8056640625}, {"start": 345.64, "end": 345.98, "word": " okay?", "probability": 0.19482421875}, {"start": 346.32, "end": 346.58, "word": " Of", "probability": 0.62646484375}, {"start": 346.58, "end": 346.62, "word": " course", "probability": 0.94677734375}, {"start": 346.62, "end": 346.84, "word": " it's", "probability": 0.54833984375}, {"start": 346.84, "end": 347.04, "word": " still", "probability": 0.56884765625}, {"start": 347.04, "end": 347.28, "word": " an", "probability": 0.56689453125}, {"start": 347.28, "end": 347.28, "word": " empty", "probability": 0.77880859375}, {"start": 347.28, "end": 347.42, "word": " white", "probability": 0.54931640625}, {"start": 347.42, "end": 347.82, "word": " screen.", "probability": 0.86865234375}, {"start": 348.96, "end": 349.56, "word": " The", "probability": 0.537109375}, {"start": 349.56, "end": 349.86, "word": " messages", "probability": 0.7275390625}, {"start": 349.86, "end": 350.08, "word": " that", "probability": 0.650390625}, {"start": 350.08, "end": 350.34, "word": " come", "probability": 0.55712890625}, {"start": 350.34, "end": 351.14, "word": " should", "probability": 0.51806640625}, {"start": 351.14, "end": 351.66, "word": " be", "probability": 0.72705078125}, {"start": 351.66, "end": 351.86, "word": " displayed", "probability": 0.87744140625}, {"start": 351.86, "end": 351.96, "word": " on", "probability": 0.78515625}, {"start": 351.96, "end": 352.04, "word": " this", "probability": 0.7919921875}, {"start": 352.04, "end": 352.32, "word": " screen", "probability": 0.85107421875}, {"start": 352.32, "end": 353.14, "word": " under", "probability": 0.21240234375}, {"start": 353.14, "end": 353.5, "word": " each", "probability": 0.61181640625}, {"start": 353.5, "end": 353.58, "word": " other,", "probability": 0.86083984375}, {"start": 353.9, "end": 354.14, "word": " okay?", "probability": 0.73193359375}, {"start": 354.82, "end": 355.14, "word": " But", "probability": 0.85302734375}, {"start": 355.14, "end": 355.44, "word": " until", "probability": 0.405517578125}, {"start": 355.44, "end": 355.78, "word": " now,", "probability": 0.93994140625}, {"start": 355.96, "end": 356.6, "word": " the", "probability": 0.77978515625}, {"start": 356.6, "end": 356.86, "word": " messages", "probability": 0.479248046875}, {"start": 356.86, "end": 357.1, "word": " that", "probability": 0.75341796875}, {"start": 357.1, "end": 357.36, "word": " come", "probability": 0.77880859375}, {"start": 357.36, "end": 357.62, "word": " are", "probability": 0.1900634765625}, {"start": 357.62, "end": 357.72, "word": " not", "probability": 0.9130859375}, {"start": 357.72, "end": 358.02, "word": " being", "probability": 0.30517578125}, {"start": 358.02, "end": 358.22, "word": " printed", "probability": 0.548828125}, {"start": 358.22, "end": 358.46, "word": " anywhere.", "probability": 0.55859375}], "temperature": 1.0}, {"id": 14, "seek": 38524, "start": 359.66, "end": 385.24, "text": " In the console, the messages are supposed to appear where? In the chat UI. Actually, this component is running. What does it do? For example, it receives messages. But it doesn't update to whom? To the UI or the logger. Now, in my program, I have three main elements. First, I have the messenger UI. This is a class.", "tokens": [682, 264, 11076, 11, 264, 7897, 366, 3442, 281, 4204, 689, 30, 682, 264, 5081, 15682, 13, 5135, 11, 341, 6542, 307, 2614, 13, 708, 775, 309, 360, 30, 1171, 1365, 11, 309, 20717, 7897, 13, 583, 309, 1177, 380, 5623, 281, 7101, 30, 1407, 264, 15682, 420, 264, 3565, 1321, 13, 823, 11, 294, 452, 1461, 11, 286, 362, 1045, 2135, 4959, 13, 2386, 11, 286, 362, 264, 26599, 15682, 13, 639, 307, 257, 1508, 13], "avg_logprob": -0.5264423267963605, "compression_ratio": 1.4952830188679245, "no_speech_prob": 5.304813385009766e-06, "words": [{"start": 359.66, "end": 359.88, "word": " In", "probability": 0.25830078125}, {"start": 359.88, "end": 359.98, "word": " the", "probability": 0.467041015625}, {"start": 359.98, "end": 360.36, "word": " console,", "probability": 0.7919921875}, {"start": 360.5, "end": 361.32, "word": " the", "probability": 0.1201171875}, {"start": 361.32, "end": 362.26, "word": " messages", "probability": 0.50244140625}, {"start": 362.26, "end": 362.56, "word": " are", "probability": 0.46630859375}, {"start": 362.56, "end": 362.56, "word": " supposed", "probability": 0.6103515625}, {"start": 362.56, "end": 362.72, "word": " to", "probability": 0.96484375}, {"start": 362.72, "end": 363.06, "word": " appear", "probability": 0.260498046875}, {"start": 363.06, "end": 363.28, "word": " where?", "probability": 0.269287109375}, {"start": 363.4, "end": 363.52, "word": " In", "probability": 0.7255859375}, {"start": 363.52, "end": 363.6, "word": " the", "probability": 0.75830078125}, {"start": 363.6, "end": 364.02, "word": " chat", "probability": 0.859375}, {"start": 364.02, "end": 364.86, "word": " UI.", "probability": 0.63232421875}, {"start": 365.2, "end": 365.76, "word": " Actually,", "probability": 0.423828125}, {"start": 366.14, "end": 366.38, "word": " this", "probability": 0.7783203125}, {"start": 366.38, "end": 366.92, "word": " component", "probability": 0.810546875}, {"start": 366.92, "end": 367.04, "word": " is", "probability": 0.423828125}, {"start": 367.04, "end": 367.38, "word": " running.", "probability": 0.4375}, {"start": 368.0, "end": 368.6, "word": " What", "probability": 0.26904296875}, {"start": 368.6, "end": 368.84, "word": " does", "probability": 0.74609375}, {"start": 368.84, "end": 368.84, "word": " it", "probability": 0.93408203125}, {"start": 368.84, "end": 369.14, "word": " do?", "probability": 0.92431640625}, {"start": 369.54, "end": 369.62, "word": " For", "probability": 0.623046875}, {"start": 369.62, "end": 369.86, "word": " example,", "probability": 0.91796875}, {"start": 370.5, "end": 370.58, "word": " it", "probability": 0.79345703125}, {"start": 370.58, "end": 370.92, "word": " receives", "probability": 0.49072265625}, {"start": 370.92, "end": 371.42, "word": " messages.", "probability": 0.5947265625}, {"start": 371.96, "end": 372.52, "word": " But", "probability": 0.5810546875}, {"start": 372.52, "end": 372.78, "word": " it", "probability": 0.74072265625}, {"start": 372.78, "end": 372.88, "word": " doesn't", "probability": 0.708251953125}, {"start": 372.88, "end": 373.42, "word": " update", "probability": 0.64208984375}, {"start": 373.42, "end": 373.64, "word": " to", "probability": 0.260009765625}, {"start": 373.64, "end": 373.8, "word": " whom?", "probability": 0.6728515625}, {"start": 374.06, "end": 374.66, "word": " To", "probability": 0.467529296875}, {"start": 374.66, "end": 374.76, "word": " the", "probability": 0.814453125}, {"start": 374.76, "end": 375.16, "word": " UI", "probability": 0.94189453125}, {"start": 375.16, "end": 375.52, "word": " or", "probability": 0.677734375}, {"start": 375.52, "end": 375.68, "word": " the", "probability": 0.52490234375}, {"start": 375.68, "end": 376.02, "word": " logger.", "probability": 0.7861328125}, {"start": 376.78, "end": 377.16, "word": " Now,", "probability": 0.3681640625}, {"start": 379.5, "end": 379.58, "word": " in", "probability": 0.84619140625}, {"start": 379.58, "end": 379.66, "word": " my", "probability": 0.6162109375}, {"start": 379.66, "end": 380.24, "word": " program,", "probability": 0.468994140625}, {"start": 381.08, "end": 381.42, "word": " I", "probability": 0.68896484375}, {"start": 381.42, "end": 381.66, "word": " have", "probability": 0.89697265625}, {"start": 381.66, "end": 381.94, "word": " three", "probability": 0.736328125}, {"start": 381.94, "end": 382.54, "word": " main", "probability": 0.85693359375}, {"start": 382.54, "end": 382.54, "word": " elements.", "probability": 0.83447265625}, {"start": 382.96, "end": 383.1, "word": " First,", "probability": 0.1680908203125}, {"start": 383.36, "end": 383.36, "word": " I", "probability": 0.49072265625}, {"start": 383.36, "end": 383.48, "word": " have", "probability": 0.9443359375}, {"start": 383.48, "end": 383.62, "word": " the", "probability": 0.4248046875}, {"start": 383.62, "end": 383.94, "word": " messenger", "probability": 0.450439453125}, {"start": 383.94, "end": 384.42, "word": " UI.", "probability": 0.90625}, {"start": 384.52, "end": 384.7, "word": " This", "probability": 0.65234375}, {"start": 384.7, "end": 384.72, "word": " is", "probability": 0.90673828125}, {"start": 384.72, "end": 384.84, "word": " a", "probability": 0.5849609375}, {"start": 384.84, "end": 385.24, "word": " class.", "probability": 0.94970703125}], "temperature": 1.0}, {"id": 15, "seek": 41179, "start": 385.91, "end": 411.79, "text": " I have a logger as a class and I have a third component which is the main task which is network message handler which is responsible for communicating with the network and receiving messages but notice now that each one is made in its own object but there is no connection between them this is an object and this is another object and this is a third object okay let's look at them the messenger UI", "tokens": [286, 362, 257, 3565, 1321, 382, 257, 1508, 293, 286, 362, 257, 2636, 6542, 597, 307, 264, 2135, 5633, 597, 307, 3209, 3636, 41967, 597, 307, 6250, 337, 17559, 365, 264, 3209, 293, 10040, 7897, 457, 3449, 586, 300, 1184, 472, 307, 1027, 294, 1080, 1065, 2657, 457, 456, 307, 572, 4984, 1296, 552, 341, 307, 364, 2657, 293, 341, 307, 1071, 2657, 293, 341, 307, 257, 2636, 2657, 1392, 718, 311, 574, 412, 552, 264, 26599, 15682], "avg_logprob": -0.46123418098763574, "compression_ratio": 1.8558139534883722, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 385.91, "end": 386.13, "word": " I", "probability": 0.64208984375}, {"start": 386.13, "end": 386.27, "word": " have", "probability": 0.845703125}, {"start": 386.27, "end": 386.37, "word": " a", "probability": 0.31298828125}, {"start": 386.37, "end": 386.65, "word": " logger", "probability": 0.37139892578125}, {"start": 386.65, "end": 386.79, "word": " as", "probability": 0.76025390625}, {"start": 386.79, "end": 386.81, "word": " a", "probability": 0.5810546875}, {"start": 386.81, "end": 387.25, "word": " class", "probability": 0.9658203125}, {"start": 387.25, "end": 388.01, "word": " and", "probability": 0.5048828125}, {"start": 388.01, "end": 388.35, "word": " I", "probability": 0.5556640625}, {"start": 388.35, "end": 388.47, "word": " have", "probability": 0.9208984375}, {"start": 388.47, "end": 388.93, "word": " a", "probability": 0.69384765625}, {"start": 388.93, "end": 389.03, "word": " third", "probability": 0.86474609375}, {"start": 389.03, "end": 389.43, "word": " component", "probability": 0.75146484375}, {"start": 389.43, "end": 389.83, "word": " which", "probability": 0.52880859375}, {"start": 389.83, "end": 390.03, "word": " is", "probability": 0.91455078125}, {"start": 390.03, "end": 390.23, "word": " the", "probability": 0.6435546875}, {"start": 390.23, "end": 390.47, "word": " main", "probability": 0.68115234375}, {"start": 390.47, "end": 391.13, "word": " task", "probability": 0.274169921875}, {"start": 391.13, "end": 391.35, "word": " which", "probability": 0.42041015625}, {"start": 391.35, "end": 391.49, "word": " is", "probability": 0.93310546875}, {"start": 391.49, "end": 392.59, "word": " network", "probability": 0.336181640625}, {"start": 392.59, "end": 393.25, "word": " message", "probability": 0.7265625}, {"start": 393.25, "end": 394.19, "word": " handler", "probability": 0.91455078125}, {"start": 394.19, "end": 394.47, "word": " which", "probability": 0.71630859375}, {"start": 394.47, "end": 394.69, "word": " is", "probability": 0.80517578125}, {"start": 394.69, "end": 395.01, "word": " responsible", "probability": 0.6923828125}, {"start": 395.01, "end": 395.19, "word": " for", "probability": 0.77490234375}, {"start": 395.19, "end": 396.51, "word": " communicating", "probability": 0.2374267578125}, {"start": 396.51, "end": 396.89, "word": " with", "probability": 0.86865234375}, {"start": 396.89, "end": 396.99, "word": " the", "probability": 0.6806640625}, {"start": 396.99, "end": 397.37, "word": " network", "probability": 0.931640625}, {"start": 397.37, "end": 397.53, "word": " and", "probability": 0.875}, {"start": 397.53, "end": 398.01, "word": " receiving", "probability": 0.83203125}, {"start": 398.01, "end": 398.91, "word": " messages", "probability": 0.52294921875}, {"start": 398.91, "end": 399.75, "word": " but", "probability": 0.4189453125}, {"start": 399.75, "end": 400.03, "word": " notice", "probability": 0.68603515625}, {"start": 400.03, "end": 400.35, "word": " now", "probability": 0.583984375}, {"start": 400.35, "end": 400.45, "word": " that", "probability": 0.269287109375}, {"start": 400.45, "end": 400.57, "word": " each", "probability": 0.67578125}, {"start": 400.57, "end": 400.83, "word": " one", "probability": 0.496826171875}, {"start": 400.83, "end": 400.91, "word": " is", "probability": 0.82080078125}, {"start": 400.91, "end": 401.07, "word": " made", "probability": 0.44921875}, {"start": 401.07, "end": 401.23, "word": " in", "probability": 0.56884765625}, {"start": 401.23, "end": 401.29, "word": " its", "probability": 0.214111328125}, {"start": 401.29, "end": 401.29, "word": " own", "probability": 0.88330078125}, {"start": 401.29, "end": 401.59, "word": " object", "probability": 0.9482421875}, {"start": 401.59, "end": 402.21, "word": " but", "probability": 0.64599609375}, {"start": 402.21, "end": 402.55, "word": " there", "probability": 0.82861328125}, {"start": 402.55, "end": 402.55, "word": " is", "probability": 0.82958984375}, {"start": 402.55, "end": 402.67, "word": " no", "probability": 0.677734375}, {"start": 402.67, "end": 402.81, "word": " connection", "probability": 0.501953125}, {"start": 402.81, "end": 402.81, "word": " between", "probability": 0.7890625}, {"start": 402.81, "end": 404.07, "word": " them", "probability": 0.86181640625}, {"start": 404.07, "end": 404.75, "word": " this", "probability": 0.261962890625}, {"start": 404.75, "end": 404.87, "word": " is", "probability": 0.72119140625}, {"start": 404.87, "end": 405.07, "word": " an", "probability": 0.38623046875}, {"start": 405.07, "end": 405.25, "word": " object", "probability": 0.9794921875}, {"start": 405.25, "end": 406.01, "word": " and", "probability": 0.450927734375}, {"start": 406.01, "end": 406.17, "word": " this", "probability": 0.77490234375}, {"start": 406.17, "end": 406.31, "word": " is", "probability": 0.86669921875}, {"start": 406.31, "end": 406.67, "word": " another", "probability": 0.7763671875}, {"start": 406.67, "end": 406.87, "word": " object", "probability": 0.93017578125}, {"start": 406.87, "end": 407.09, "word": " and", "probability": 0.81787109375}, {"start": 407.09, "end": 407.23, "word": " this", "probability": 0.8408203125}, {"start": 407.23, "end": 407.31, "word": " is", "probability": 0.89794921875}, {"start": 407.31, "end": 407.61, "word": " a", "probability": 0.5595703125}, {"start": 407.61, "end": 407.83, "word": " third", "probability": 0.927734375}, {"start": 407.83, "end": 408.49, "word": " object", "probability": 0.9462890625}, {"start": 408.49, "end": 408.81, "word": " okay", "probability": 0.195556640625}, {"start": 408.81, "end": 409.71, "word": " let's", "probability": 0.6949462890625}, {"start": 409.71, "end": 409.99, "word": " look", "probability": 0.56787109375}, {"start": 409.99, "end": 410.19, "word": " at", "probability": 0.93603515625}, {"start": 410.19, "end": 410.47, "word": " them", "probability": 0.798828125}, {"start": 410.47, "end": 411.07, "word": " the", "probability": 0.377685546875}, {"start": 411.07, "end": 411.45, "word": " messenger", "probability": 0.8232421875}, {"start": 411.45, "end": 411.79, "word": " UI", "probability": 0.68798828125}], "temperature": 1.0}, {"id": 16, "seek": 43169, "start": 416.27, "end": 431.69, "text": "This is a normal class, JFrame, okay? It has a chat area or text area, which is where you write the messages that reach you, okay? And this is a normal UI work, I didn't bother with it. Anyway, in the end, I made a method, what is its name?", "tokens": [5723, 307, 257, 2710, 1508, 11, 508, 40305, 529, 11, 1392, 30, 467, 575, 257, 5081, 1859, 420, 2487, 1859, 11, 597, 307, 689, 291, 2464, 264, 7897, 300, 2524, 291, 11, 1392, 30, 400, 341, 307, 257, 2710, 15682, 589, 11, 286, 994, 380, 8677, 365, 309, 13, 5684, 11, 294, 264, 917, 11, 286, 1027, 257, 3170, 11, 437, 307, 1080, 1315, 30], "avg_logprob": -0.5151515431476362, "compression_ratio": 1.4545454545454546, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 416.27, "end": 416.53, "word": "This", "probability": 0.318359375}, {"start": 416.53, "end": 416.63, "word": " is", "probability": 0.80859375}, {"start": 416.63, "end": 417.15, "word": " a", "probability": 0.66650390625}, {"start": 417.15, "end": 417.15, "word": " normal", "probability": 0.415283203125}, {"start": 417.15, "end": 417.57, "word": " class,", "probability": 0.7841796875}, {"start": 417.99, "end": 418.55, "word": " JFrame,", "probability": 0.7041015625}, {"start": 419.29, "end": 419.43, "word": " okay?", "probability": 0.208740234375}, {"start": 419.83, "end": 419.99, "word": " It", "probability": 0.66064453125}, {"start": 419.99, "end": 420.27, "word": " has", "probability": 0.9189453125}, {"start": 420.27, "end": 420.57, "word": " a", "probability": 0.87890625}, {"start": 420.57, "end": 420.85, "word": " chat", "probability": 0.84423828125}, {"start": 420.85, "end": 421.23, "word": " area", "probability": 0.87255859375}, {"start": 421.23, "end": 421.49, "word": " or", "probability": 0.7431640625}, {"start": 421.49, "end": 421.75, "word": " text", "probability": 0.81201171875}, {"start": 421.75, "end": 422.19, "word": " area,", "probability": 0.857421875}, {"start": 422.75, "end": 422.81, "word": " which", "probability": 0.397705078125}, {"start": 422.81, "end": 422.91, "word": " is", "probability": 0.439208984375}, {"start": 422.91, "end": 423.13, "word": " where", "probability": 0.4775390625}, {"start": 423.13, "end": 423.13, "word": " you", "probability": 0.429443359375}, {"start": 423.13, "end": 423.65, "word": " write", "probability": 0.59228515625}, {"start": 423.65, "end": 423.97, "word": " the", "probability": 0.443359375}, {"start": 423.97, "end": 424.31, "word": " messages", "probability": 0.57080078125}, {"start": 424.31, "end": 424.53, "word": " that", "probability": 0.6328125}, {"start": 424.53, "end": 424.77, "word": " reach", "probability": 0.256591796875}, {"start": 424.77, "end": 425.09, "word": " you,", "probability": 0.75927734375}, {"start": 425.35, "end": 425.61, "word": " okay?", "probability": 0.8076171875}, {"start": 426.47, "end": 426.67, "word": " And", "probability": 0.60498046875}, {"start": 426.67, "end": 426.87, "word": " this", "probability": 0.86962890625}, {"start": 426.87, "end": 426.91, "word": " is", "probability": 0.90087890625}, {"start": 426.91, "end": 427.17, "word": " a", "probability": 0.50634765625}, {"start": 427.17, "end": 427.17, "word": " normal", "probability": 0.5009765625}, {"start": 427.17, "end": 427.47, "word": " UI", "probability": 0.87158203125}, {"start": 427.47, "end": 427.77, "word": " work,", "probability": 0.48974609375}, {"start": 428.27, "end": 428.43, "word": " I", "probability": 0.213623046875}, {"start": 428.43, "end": 428.51, "word": " didn't", "probability": 0.6932373046875}, {"start": 428.51, "end": 428.73, "word": " bother", "probability": 0.5771484375}, {"start": 428.73, "end": 428.87, "word": " with", "probability": 0.37841796875}, {"start": 428.87, "end": 429.31, "word": " it.", "probability": 0.89599609375}, {"start": 429.49, "end": 429.75, "word": " Anyway,", "probability": 0.4189453125}, {"start": 429.87, "end": 429.89, "word": " in", "probability": 0.53662109375}, {"start": 429.89, "end": 429.99, "word": " the", "probability": 0.9296875}, {"start": 429.99, "end": 430.19, "word": " end,", "probability": 0.90185546875}, {"start": 430.35, "end": 430.41, "word": " I", "probability": 0.9951171875}, {"start": 430.41, "end": 430.59, "word": " made", "probability": 0.57861328125}, {"start": 430.59, "end": 430.73, "word": " a", "probability": 0.98046875}, {"start": 430.73, "end": 431.05, "word": " method,", "probability": 0.95068359375}, {"start": 431.21, "end": 431.39, "word": " what", "probability": 0.8779296875}, {"start": 431.39, "end": 431.45, "word": " is", "probability": 0.494384765625}, {"start": 431.45, "end": 431.69, "word": " its", "probability": 0.4892578125}, {"start": 431.69, "end": 431.69, "word": " name?", "probability": 0.8916015625}], "temperature": 1.0}, {"id": 17, "seek": 46026, "start": 432.68, "end": 460.26, "text": " Update. What does it take? An object of type message. This message is a class with two attributes, sender and message. The message has a text and has a sender. When this method update is executed, the message is added to the chat area and written in the status bar that the message has been received. This is the existing UI.", "tokens": [28923, 13, 708, 775, 309, 747, 30, 1107, 2657, 295, 2010, 3636, 13, 639, 3636, 307, 257, 1508, 365, 732, 17212, 11, 2845, 260, 293, 3636, 13, 440, 3636, 575, 257, 2487, 293, 575, 257, 2845, 260, 13, 1133, 341, 3170, 5623, 307, 17577, 11, 264, 3636, 307, 3869, 281, 264, 5081, 1859, 293, 3720, 294, 264, 6558, 2159, 300, 264, 3636, 575, 668, 4613, 13, 639, 307, 264, 6741, 15682, 13], "avg_logprob": -0.45419519241542033, "compression_ratio": 1.6979166666666667, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 432.67999999999995, "end": 433.28, "word": " Update.", "probability": 0.62890625}, {"start": 433.58, "end": 434.08, "word": " What", "probability": 0.73291015625}, {"start": 434.08, "end": 434.16, "word": " does", "probability": 0.70947265625}, {"start": 434.16, "end": 434.24, "word": " it", "probability": 0.87939453125}, {"start": 434.24, "end": 434.58, "word": " take?", "probability": 0.69140625}, {"start": 435.14, "end": 435.32, "word": " An", "probability": 0.2093505859375}, {"start": 435.32, "end": 435.6, "word": " object", "probability": 0.92333984375}, {"start": 435.6, "end": 435.7, "word": " of", "probability": 0.7451171875}, {"start": 435.7, "end": 436.04, "word": " type", "probability": 0.521484375}, {"start": 436.04, "end": 437.02, "word": " message.", "probability": 0.3447265625}, {"start": 437.24, "end": 437.36, "word": " This", "probability": 0.55615234375}, {"start": 437.36, "end": 438.38, "word": " message", "probability": 0.48486328125}, {"start": 438.38, "end": 438.88, "word": " is", "probability": 0.83837890625}, {"start": 438.88, "end": 439.22, "word": " a", "probability": 0.74267578125}, {"start": 439.22, "end": 439.78, "word": " class", "probability": 0.87841796875}, {"start": 439.78, "end": 440.54, "word": " with", "probability": 0.296142578125}, {"start": 440.54, "end": 440.94, "word": " two", "probability": 0.81689453125}, {"start": 440.94, "end": 441.78, "word": " attributes,", "probability": 0.8525390625}, {"start": 441.9, "end": 442.32, "word": " sender", "probability": 0.8212890625}, {"start": 442.32, "end": 442.96, "word": " and", "probability": 0.92431640625}, {"start": 442.96, "end": 443.28, "word": " message.", "probability": 0.8935546875}, {"start": 443.4, "end": 443.78, "word": " The", "probability": 0.309814453125}, {"start": 443.78, "end": 444.14, "word": " message", "probability": 0.7421875}, {"start": 444.14, "end": 444.34, "word": " has", "probability": 0.443603515625}, {"start": 444.34, "end": 444.5, "word": " a", "probability": 0.546875}, {"start": 444.5, "end": 444.66, "word": " text", "probability": 0.7724609375}, {"start": 444.66, "end": 444.82, "word": " and", "probability": 0.638671875}, {"start": 444.82, "end": 445.06, "word": " has", "probability": 0.09210205078125}, {"start": 445.06, "end": 445.78, "word": " a", "probability": 0.6650390625}, {"start": 445.78, "end": 446.2, "word": " sender.", "probability": 0.689208984375}, {"start": 446.62, "end": 447.22, "word": " When", "probability": 0.58642578125}, {"start": 447.22, "end": 448.6, "word": " this", "probability": 0.529296875}, {"start": 448.6, "end": 448.84, "word": " method", "probability": 0.85595703125}, {"start": 448.84, "end": 449.22, "word": " update", "probability": 0.560546875}, {"start": 449.22, "end": 449.46, "word": " is", "probability": 0.63427734375}, {"start": 449.46, "end": 449.46, "word": " executed,", "probability": 0.60595703125}, {"start": 450.3, "end": 450.44, "word": " the", "probability": 0.77783203125}, {"start": 450.44, "end": 450.74, "word": " message", "probability": 0.845703125}, {"start": 450.74, "end": 450.94, "word": " is", "probability": 0.76953125}, {"start": 450.94, "end": 451.18, "word": " added", "probability": 0.91064453125}, {"start": 451.18, "end": 451.34, "word": " to", "probability": 0.92138671875}, {"start": 451.34, "end": 451.44, "word": " the", "probability": 0.81591796875}, {"start": 451.44, "end": 451.64, "word": " chat", "probability": 0.9091796875}, {"start": 451.64, "end": 452.08, "word": " area", "probability": 0.88671875}, {"start": 452.08, "end": 452.3, "word": " and", "probability": 0.7861328125}, {"start": 452.3, "end": 452.58, "word": " written", "probability": 0.2685546875}, {"start": 452.58, "end": 452.78, "word": " in", "probability": 0.74560546875}, {"start": 452.78, "end": 452.9, "word": " the", "probability": 0.83056640625}, {"start": 452.9, "end": 453.2, "word": " status", "probability": 0.81787109375}, {"start": 453.2, "end": 453.56, "word": " bar", "probability": 0.9228515625}, {"start": 453.56, "end": 453.86, "word": " that", "probability": 0.53125}, {"start": 453.86, "end": 454.14, "word": " the", "probability": 0.4892578125}, {"start": 454.14, "end": 454.34, "word": " message", "probability": 0.94677734375}, {"start": 454.34, "end": 454.5, "word": " has", "probability": 0.257080078125}, {"start": 454.5, "end": 454.5, "word": " been", "probability": 0.78564453125}, {"start": 454.5, "end": 454.76, "word": " received.", "probability": 0.82177734375}, {"start": 457.28, "end": 457.88, "word": " This", "probability": 0.67041015625}, {"start": 457.88, "end": 459.56, "word": " is", "probability": 0.92578125}, {"start": 459.56, "end": 459.9, "word": " the", "probability": 0.8662109375}, {"start": 459.9, "end": 459.92, "word": " existing", "probability": 0.78759765625}, {"start": 459.92, "end": 460.26, "word": " UI.", "probability": 0.9111328125}], "temperature": 1.0}, {"id": 18, "seek": 49086, "start": 461.72, "end": 490.86, "text": " because I have another component its name is logger this logger is simple, its goal is that any message that comes will be stored in the file only, okay? so I also made a method called log this takes the message and opens the file and writes on it and writes the date in which the message was written okay? and then I also made a method called update", "tokens": [570, 286, 362, 1071, 6542, 1080, 1315, 307, 3565, 1321, 341, 3565, 1321, 307, 2199, 11, 1080, 3387, 307, 300, 604, 3636, 300, 1487, 486, 312, 12187, 294, 264, 3991, 787, 11, 1392, 30, 370, 286, 611, 1027, 257, 3170, 1219, 3565, 341, 2516, 264, 3636, 293, 9870, 264, 3991, 293, 13657, 322, 309, 293, 13657, 264, 4002, 294, 597, 264, 3636, 390, 3720, 1392, 30, 293, 550, 286, 611, 1027, 257, 3170, 1219, 5623], "avg_logprob": -0.46422697211566727, "compression_ratio": 1.8473684210526315, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 461.72, "end": 461.98, "word": " because", "probability": 0.2281494140625}, {"start": 461.98, "end": 462.18, "word": " I", "probability": 0.86181640625}, {"start": 462.18, "end": 462.38, "word": " have", "probability": 0.84814453125}, {"start": 462.38, "end": 462.56, "word": " another", "probability": 0.77490234375}, {"start": 462.56, "end": 463.06, "word": " component", "probability": 0.83056640625}, {"start": 463.06, "end": 465.48, "word": " its", "probability": 0.080810546875}, {"start": 465.48, "end": 467.82, "word": " name", "probability": 0.82763671875}, {"start": 467.82, "end": 467.98, "word": " is", "probability": 0.91796875}, {"start": 467.98, "end": 468.34, "word": " logger", "probability": 0.640380859375}, {"start": 468.34, "end": 468.98, "word": " this", "probability": 0.55517578125}, {"start": 468.98, "end": 469.24, "word": " logger", "probability": 0.795166015625}, {"start": 469.24, "end": 469.62, "word": " is", "probability": 0.66064453125}, {"start": 469.62, "end": 470.18, "word": " simple,", "probability": 0.75537109375}, {"start": 470.36, "end": 470.46, "word": " its", "probability": 0.537109375}, {"start": 470.46, "end": 470.46, "word": " goal", "probability": 0.446044921875}, {"start": 470.46, "end": 470.7, "word": " is", "probability": 0.7880859375}, {"start": 470.7, "end": 471.36, "word": " that", "probability": 0.3193359375}, {"start": 471.36, "end": 471.6, "word": " any", "probability": 0.51611328125}, {"start": 471.6, "end": 471.9, "word": " message", "probability": 0.67236328125}, {"start": 471.9, "end": 472.08, "word": " that", "probability": 0.5390625}, {"start": 472.08, "end": 472.22, "word": " comes", "probability": 0.59326171875}, {"start": 472.22, "end": 473.66, "word": " will", "probability": 0.08843994140625}, {"start": 473.66, "end": 473.74, "word": " be", "probability": 0.7841796875}, {"start": 473.74, "end": 473.94, "word": " stored", "probability": 0.74072265625}, {"start": 473.94, "end": 474.18, "word": " in", "probability": 0.859375}, {"start": 474.18, "end": 474.54, "word": " the", "probability": 0.4912109375}, {"start": 474.54, "end": 474.54, "word": " file", "probability": 0.82763671875}, {"start": 474.54, "end": 475.22, "word": " only,", "probability": 0.50439453125}, {"start": 475.56, "end": 476.12, "word": " okay?", "probability": 0.325927734375}, {"start": 476.86, "end": 477.12, "word": " so", "probability": 0.4462890625}, {"start": 477.12, "end": 477.48, "word": " I", "probability": 0.74462890625}, {"start": 477.48, "end": 477.48, "word": " also", "probability": 0.6064453125}, {"start": 477.48, "end": 477.78, "word": " made", "probability": 0.326171875}, {"start": 477.78, "end": 478.0, "word": " a", "probability": 0.74169921875}, {"start": 478.0, "end": 478.34, "word": " method", "probability": 0.96875}, {"start": 478.34, "end": 478.62, "word": " called", "probability": 0.57421875}, {"start": 478.62, "end": 478.96, "word": " log", "probability": 0.88232421875}, {"start": 478.96, "end": 480.44, "word": " this", "probability": 0.560546875}, {"start": 480.44, "end": 480.7, "word": " takes", "probability": 0.438232421875}, {"start": 480.7, "end": 480.88, "word": " the", "probability": 0.8505859375}, {"start": 480.88, "end": 481.26, "word": " message", "probability": 0.8466796875}, {"start": 481.26, "end": 481.54, "word": " and", "probability": 0.56787109375}, {"start": 481.54, "end": 482.88, "word": " opens", "probability": 0.68359375}, {"start": 482.88, "end": 483.06, "word": " the", "probability": 0.8408203125}, {"start": 483.06, "end": 483.32, "word": " file", "probability": 0.845703125}, {"start": 483.32, "end": 483.46, "word": " and", "probability": 0.8056640625}, {"start": 483.46, "end": 483.64, "word": " writes", "probability": 0.62841796875}, {"start": 483.64, "end": 483.84, "word": " on", "probability": 0.529296875}, {"start": 483.84, "end": 484.0, "word": " it", "probability": 0.939453125}, {"start": 484.0, "end": 484.14, "word": " and", "probability": 0.77978515625}, {"start": 484.14, "end": 484.3, "word": " writes", "probability": 0.71923828125}, {"start": 484.3, "end": 484.5, "word": " the", "probability": 0.84423828125}, {"start": 484.5, "end": 484.72, "word": " date", "probability": 0.88232421875}, {"start": 484.72, "end": 484.88, "word": " in", "probability": 0.2135009765625}, {"start": 484.88, "end": 485.4, "word": " which", "probability": 0.94775390625}, {"start": 485.4, "end": 485.5, "word": " the", "probability": 0.87109375}, {"start": 485.5, "end": 485.82, "word": " message", "probability": 0.90576171875}, {"start": 485.82, "end": 485.82, "word": " was", "probability": 0.91015625}, {"start": 485.82, "end": 485.82, "word": " written", "probability": 0.92822265625}, {"start": 485.82, "end": 486.9, "word": " okay?", "probability": 0.38671875}, {"start": 487.64, "end": 488.1, "word": " and", "probability": 0.81591796875}, {"start": 488.1, "end": 488.36, "word": " then", "probability": 0.6611328125}, {"start": 488.36, "end": 488.76, "word": " I", "probability": 0.89404296875}, {"start": 488.76, "end": 488.76, "word": " also", "probability": 0.8193359375}, {"start": 488.76, "end": 488.98, "word": " made", "probability": 0.8056640625}, {"start": 488.98, "end": 489.14, "word": " a", "probability": 0.68408203125}, {"start": 489.14, "end": 489.38, "word": " method", "probability": 0.97705078125}, {"start": 489.38, "end": 489.76, "word": " called", "probability": 0.87548828125}, {"start": 489.76, "end": 490.86, "word": " update", "probability": 0.8447265625}], "temperature": 1.0}, {"id": 19, "seek": 50977, "start": 492.09, "end": 509.77, "text": "Why did I make these methods? As we said, it's not Hada that wants to send a message to Hada, it's HadaCable that wants to send a message to the UI, and HadaCable that wants to send a message to the logger, and HadaCable that wants to send a message to the update to report it, it's the word that I report my object and communicate with another object, I want to send a method that exists", "tokens": [8429, 630, 286, 652, 613, 7150, 30, 1018, 321, 848, 11, 309, 311, 406, 389, 1538, 300, 2738, 281, 2845, 257, 3636, 281, 389, 1538, 11, 309, 311, 389, 1538, 34, 712, 300, 2738, 281, 2845, 257, 3636, 281, 264, 15682, 11, 293, 389, 1538, 34, 712, 300, 2738, 281, 2845, 257, 3636, 281, 264, 3565, 1321, 11, 293, 389, 1538, 34, 712, 300, 2738, 281, 2845, 257, 3636, 281, 264, 5623, 281, 2275, 309, 11, 309, 311, 264, 1349, 300, 286, 2275, 452, 2657, 293, 7890, 365, 1071, 2657, 11, 286, 528, 281, 2845, 257, 3170, 300, 8198], "avg_logprob": -0.5728125143051147, "compression_ratio": 2.2045454545454546, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 492.09000000000003, "end": 492.41, "word": "Why", "probability": 0.2919921875}, {"start": 492.41, "end": 492.41, "word": " did", "probability": 0.37158203125}, {"start": 492.41, "end": 492.73, "word": " I", "probability": 0.931640625}, {"start": 492.73, "end": 492.89, "word": " make", "probability": 0.3193359375}, {"start": 492.89, "end": 493.03, "word": " these", "probability": 0.68603515625}, {"start": 493.03, "end": 493.27, "word": " methods?", "probability": 0.90673828125}, {"start": 495.17, "end": 495.49, "word": " As", "probability": 0.10394287109375}, {"start": 495.49, "end": 495.61, "word": " we", "probability": 0.65234375}, {"start": 495.61, "end": 495.79, "word": " said,", "probability": 0.7607421875}, {"start": 496.05, "end": 496.13, "word": " it's", "probability": 0.42529296875}, {"start": 496.13, "end": 496.13, "word": " not", "probability": 0.9248046875}, {"start": 496.13, "end": 496.35, "word": " Hada", "probability": 0.31243896484375}, {"start": 496.35, "end": 496.41, "word": " that", "probability": 0.55908203125}, {"start": 496.41, "end": 496.55, "word": " wants", "probability": 0.2705078125}, {"start": 496.55, "end": 496.59, "word": " to", "probability": 0.96435546875}, {"start": 496.59, "end": 496.81, "word": " send", "probability": 0.2154541015625}, {"start": 496.81, "end": 496.87, "word": " a", "probability": 0.140869140625}, {"start": 496.87, "end": 496.87, "word": " message", "probability": 0.76220703125}, {"start": 496.87, "end": 496.93, "word": " to", "probability": 0.88134765625}, {"start": 496.93, "end": 497.09, "word": " Hada,", "probability": 0.60003662109375}, {"start": 497.73, "end": 498.11, "word": " it's", "probability": 0.6846923828125}, {"start": 498.11, "end": 498.81, "word": " HadaCable", "probability": 0.658416748046875}, {"start": 498.81, "end": 498.95, "word": " that", "probability": 0.67529296875}, {"start": 498.95, "end": 498.97, "word": " wants", "probability": 0.6904296875}, {"start": 498.97, "end": 498.97, "word": " to", "probability": 0.96337890625}, {"start": 498.97, "end": 499.07, "word": " send", "probability": 0.6708984375}, {"start": 499.07, "end": 499.19, "word": " a", "probability": 0.67333984375}, {"start": 499.19, "end": 499.19, "word": " message", "probability": 0.92529296875}, {"start": 499.19, "end": 499.25, "word": " to", "probability": 0.9267578125}, {"start": 499.25, "end": 499.35, "word": " the", "probability": 0.5966796875}, {"start": 499.35, "end": 499.67, "word": " UI,", "probability": 0.8271484375}, {"start": 499.75, "end": 499.81, "word": " and", "probability": 0.2314453125}, {"start": 499.81, "end": 499.99, "word": " HadaCable", "probability": 0.766021728515625}, {"start": 499.99, "end": 499.99, "word": " that", "probability": 0.45361328125}, {"start": 499.99, "end": 499.99, "word": " wants", "probability": 0.765625}, {"start": 499.99, "end": 499.99, "word": " to", "probability": 0.95556640625}, {"start": 499.99, "end": 500.17, "word": " send", "probability": 0.63330078125}, {"start": 500.17, "end": 500.27, "word": " a", "probability": 0.873046875}, {"start": 500.27, "end": 500.37, "word": " message", "probability": 0.91943359375}, {"start": 500.37, "end": 500.55, "word": " to", "probability": 0.94921875}, {"start": 500.55, "end": 500.65, "word": " the", "probability": 0.65625}, {"start": 500.65, "end": 502.27, "word": " logger,", "probability": 0.47491455078125}, {"start": 503.09, "end": 503.11, "word": " and", "probability": 0.51611328125}, {"start": 503.11, "end": 503.27, "word": " HadaCable", "probability": 0.956298828125}, {"start": 503.27, "end": 503.35, "word": " that", "probability": 0.873046875}, {"start": 503.35, "end": 503.35, "word": " wants", "probability": 0.78759765625}, {"start": 503.35, "end": 503.35, "word": " to", "probability": 0.953125}, {"start": 503.35, "end": 503.57, "word": " send", "probability": 0.73876953125}, {"start": 503.57, "end": 503.77, "word": " a", "probability": 0.9482421875}, {"start": 503.77, "end": 503.79, "word": " message", "probability": 0.921875}, {"start": 503.79, "end": 503.89, "word": " to", "probability": 0.9541015625}, {"start": 503.89, "end": 503.97, "word": " the", "probability": 0.43603515625}, {"start": 503.97, "end": 504.25, "word": " update", "probability": 0.46484375}, {"start": 504.25, "end": 504.75, "word": " to", "probability": 0.26806640625}, {"start": 504.75, "end": 505.11, "word": " report", "probability": 0.2449951171875}, {"start": 505.11, "end": 505.29, "word": " it,", "probability": 0.1748046875}, {"start": 505.31, "end": 505.43, "word": " it's", "probability": 0.5863037109375}, {"start": 505.43, "end": 505.55, "word": " the", "probability": 0.346435546875}, {"start": 505.55, "end": 505.75, "word": " word", "probability": 0.59765625}, {"start": 505.75, "end": 505.99, "word": " that", "probability": 0.29296875}, {"start": 505.99, "end": 506.13, "word": " I", "probability": 0.58984375}, {"start": 506.13, "end": 506.57, "word": " report", "probability": 0.57470703125}, {"start": 506.57, "end": 506.89, "word": " my", "probability": 0.55029296875}, {"start": 506.89, "end": 507.27, "word": " object", "probability": 0.86767578125}, {"start": 507.27, "end": 507.47, "word": " and", "probability": 0.5966796875}, {"start": 507.47, "end": 507.73, "word": " communicate", "probability": 0.65283203125}, {"start": 507.73, "end": 507.91, "word": " with", "probability": 0.83544921875}, {"start": 507.91, "end": 508.01, "word": " another", "probability": 0.7958984375}, {"start": 508.01, "end": 508.45, "word": " object,", "probability": 0.97607421875}, {"start": 508.55, "end": 508.65, "word": " I", "probability": 0.41015625}, {"start": 508.65, "end": 508.79, "word": " want", "probability": 0.6591796875}, {"start": 508.79, "end": 508.89, "word": " to", "probability": 0.9482421875}, {"start": 508.89, "end": 509.03, "word": " send", "probability": 0.50146484375}, {"start": 509.03, "end": 509.17, "word": " a", "probability": 0.73876953125}, {"start": 509.17, "end": 509.39, "word": " method", "probability": 0.693359375}, {"start": 509.39, "end": 509.51, "word": " that", "probability": 0.5341796875}, {"start": 509.51, "end": 509.77, "word": " exists", "probability": 0.6064453125}], "temperature": 1.0}, {"id": 20, "seek": 53604, "start": 510.5, "end": 536.04, "text": " In the second object So I made these methods so that this gate, the network message hander needs to report the UI and request its update It needs to report the logger and request its update, okay? The connection that we didn't do anything about it yet Okay, the update of the logger actually receives the message and from within the update it requests the method Log, which is this method above it directly, this is the method log, okay?", "tokens": [682, 264, 1150, 2657, 407, 286, 1027, 613, 7150, 370, 300, 341, 8539, 11, 264, 3209, 3636, 1011, 260, 2203, 281, 2275, 264, 15682, 293, 5308, 1080, 5623, 467, 2203, 281, 2275, 264, 3565, 1321, 293, 5308, 1080, 5623, 11, 1392, 30, 440, 4984, 300, 321, 994, 380, 360, 1340, 466, 309, 1939, 1033, 11, 264, 5623, 295, 264, 3565, 1321, 767, 20717, 264, 3636, 293, 490, 1951, 264, 5623, 309, 12475, 264, 3170, 10824, 11, 597, 307, 341, 3170, 3673, 309, 3838, 11, 341, 307, 264, 3170, 3565, 11, 1392, 30], "avg_logprob": -0.5675403328352077, "compression_ratio": 1.8638297872340426, "no_speech_prob": 1.341104507446289e-05, "words": [{"start": 510.5, "end": 510.7, "word": " In", "probability": 0.2003173828125}, {"start": 510.7, "end": 510.76, "word": " the", "probability": 0.796875}, {"start": 510.76, "end": 510.76, "word": " second", "probability": 0.51708984375}, {"start": 510.76, "end": 511.1, "word": " object", "probability": 0.89208984375}, {"start": 511.1, "end": 512.2, "word": " So", "probability": 0.40966796875}, {"start": 512.2, "end": 512.34, "word": " I", "probability": 0.787109375}, {"start": 512.34, "end": 512.52, "word": " made", "probability": 0.421630859375}, {"start": 512.52, "end": 512.74, "word": " these", "probability": 0.666015625}, {"start": 512.74, "end": 513.32, "word": " methods", "probability": 0.90673828125}, {"start": 513.32, "end": 513.82, "word": " so", "probability": 0.13330078125}, {"start": 513.82, "end": 514.32, "word": " that", "probability": 0.78125}, {"start": 514.32, "end": 514.5, "word": " this", "probability": 0.372802734375}, {"start": 514.5, "end": 514.76, "word": " gate,", "probability": 0.473388671875}, {"start": 514.84, "end": 514.9, "word": " the", "probability": 0.447021484375}, {"start": 514.9, "end": 515.26, "word": " network", "probability": 0.6162109375}, {"start": 515.26, "end": 515.54, "word": " message", "probability": 0.413330078125}, {"start": 515.54, "end": 515.9, "word": " hander", "probability": 0.523193359375}, {"start": 515.9, "end": 516.1, "word": " needs", "probability": 0.0982666015625}, {"start": 516.1, "end": 516.16, "word": " to", "probability": 0.97265625}, {"start": 516.16, "end": 516.38, "word": " report", "probability": 0.284423828125}, {"start": 516.38, "end": 516.56, "word": " the", "probability": 0.64697265625}, {"start": 516.56, "end": 516.88, "word": " UI", "probability": 0.6171875}, {"start": 516.88, "end": 517.06, "word": " and", "probability": 0.6181640625}, {"start": 517.06, "end": 517.32, "word": " request", "probability": 0.4365234375}, {"start": 517.32, "end": 517.44, "word": " its", "probability": 0.386474609375}, {"start": 517.44, "end": 517.98, "word": " update", "probability": 0.7822265625}, {"start": 517.98, "end": 518.2, "word": " It", "probability": 0.260498046875}, {"start": 518.2, "end": 518.96, "word": " needs", "probability": 0.72802734375}, {"start": 518.96, "end": 519.04, "word": " to", "probability": 0.97021484375}, {"start": 519.04, "end": 519.22, "word": " report", "probability": 0.9091796875}, {"start": 519.22, "end": 519.4, "word": " the", "probability": 0.787109375}, {"start": 519.4, "end": 519.6, "word": " logger", "probability": 0.83203125}, {"start": 519.6, "end": 519.7, "word": " and", "probability": 0.84765625}, {"start": 519.7, "end": 520.04, "word": " request", "probability": 0.8056640625}, {"start": 520.04, "end": 520.14, "word": " its", "probability": 0.681640625}, {"start": 520.14, "end": 520.7, "word": " update,", "probability": 0.85986328125}, {"start": 521.02, "end": 521.3, "word": " okay?", "probability": 0.322509765625}, {"start": 521.54, "end": 521.84, "word": " The", "probability": 0.40283203125}, {"start": 521.84, "end": 522.14, "word": " connection", "probability": 0.46337890625}, {"start": 522.14, "end": 522.28, "word": " that", "probability": 0.452880859375}, {"start": 522.28, "end": 522.4, "word": " we", "probability": 0.89990234375}, {"start": 522.4, "end": 522.54, "word": " didn't", "probability": 0.6651611328125}, {"start": 522.54, "end": 522.74, "word": " do", "probability": 0.39697265625}, {"start": 522.74, "end": 523.74, "word": " anything", "probability": 0.337890625}, {"start": 523.74, "end": 524.4, "word": " about", "probability": 0.260986328125}, {"start": 524.4, "end": 524.48, "word": " it", "probability": 0.7470703125}, {"start": 524.48, "end": 525.56, "word": " yet", "probability": 0.437255859375}, {"start": 525.56, "end": 525.78, "word": " Okay,", "probability": 0.43798828125}, {"start": 525.84, "end": 525.92, "word": " the", "probability": 0.8203125}, {"start": 525.92, "end": 526.18, "word": " update", "probability": 0.447998046875}, {"start": 526.18, "end": 526.44, "word": " of", "probability": 0.79248046875}, {"start": 526.44, "end": 526.6, "word": " the", "probability": 0.89501953125}, {"start": 526.6, "end": 526.9, "word": " logger", "probability": 0.900146484375}, {"start": 526.9, "end": 527.48, "word": " actually", "probability": 0.54931640625}, {"start": 527.48, "end": 528.3, "word": " receives", "probability": 0.19384765625}, {"start": 528.3, "end": 528.44, "word": " the", "probability": 0.62158203125}, {"start": 528.44, "end": 528.78, "word": " message", "probability": 0.87744140625}, {"start": 528.78, "end": 529.06, "word": " and", "probability": 0.7763671875}, {"start": 529.06, "end": 529.18, "word": " from", "probability": 0.498291015625}, {"start": 529.18, "end": 529.42, "word": " within", "probability": 0.394775390625}, {"start": 529.42, "end": 529.56, "word": " the", "probability": 0.85986328125}, {"start": 529.56, "end": 529.9, "word": " update", "probability": 0.875}, {"start": 529.9, "end": 530.0, "word": " it", "probability": 0.332763671875}, {"start": 530.0, "end": 530.28, "word": " requests", "probability": 0.52734375}, {"start": 530.28, "end": 530.4, "word": " the", "probability": 0.876953125}, {"start": 530.4, "end": 530.98, "word": " method", "probability": 0.83447265625}, {"start": 530.98, "end": 532.4, "word": " Log,", "probability": 0.5146484375}, {"start": 532.84, "end": 533.04, "word": " which", "probability": 0.81005859375}, {"start": 533.04, "end": 533.16, "word": " is", "probability": 0.92578125}, {"start": 533.16, "end": 533.36, "word": " this", "probability": 0.7119140625}, {"start": 533.36, "end": 533.62, "word": " method", "probability": 0.68017578125}, {"start": 533.62, "end": 533.98, "word": " above", "probability": 0.4404296875}, {"start": 533.98, "end": 534.1, "word": " it", "probability": 0.521484375}, {"start": 534.1, "end": 534.44, "word": " directly,", "probability": 0.2685546875}, {"start": 534.46, "end": 534.6, "word": " this", "probability": 0.80322265625}, {"start": 534.6, "end": 534.68, "word": " is", "probability": 0.79248046875}, {"start": 534.68, "end": 534.86, "word": " the", "probability": 0.79345703125}, {"start": 534.86, "end": 535.1, "word": " method", "probability": 0.56201171875}, {"start": 535.1, "end": 535.36, "word": " log,", "probability": 0.5498046875}, {"start": 535.74, "end": 536.04, "word": " okay?", "probability": 0.80029296875}], "temperature": 1.0}, {"id": 21, "seek": 54822, "start": 538.04, "end": 548.22, "text": "We come to Network Message Handler, which is the main component that receives data and messages", "tokens": [4360, 808, 281, 12640, 45947, 8854, 1918, 11, 597, 307, 264, 2135, 6542, 300, 20717, 1412, 293, 7897], "avg_logprob": -0.5246710275348864, "compression_ratio": 1.1176470588235294, "no_speech_prob": 0.0, "words": [{"start": 538.04, "end": 538.58, "word": "We", "probability": 0.06597900390625}, {"start": 538.58, "end": 538.84, "word": " come", "probability": 0.36474609375}, {"start": 538.84, "end": 539.04, "word": " to", "probability": 0.95654296875}, {"start": 539.04, "end": 540.1, "word": " Network", "probability": 0.346435546875}, {"start": 540.1, "end": 540.46, "word": " Message", "probability": 0.908203125}, {"start": 540.46, "end": 540.92, "word": " Handler,", "probability": 0.948486328125}, {"start": 541.58, "end": 542.82, "word": " which", "probability": 0.7373046875}, {"start": 542.82, "end": 542.98, "word": " is", "probability": 0.91845703125}, {"start": 542.98, "end": 543.08, "word": " the", "probability": 0.8955078125}, {"start": 543.08, "end": 543.1, "word": " main", "probability": 0.60205078125}, {"start": 543.1, "end": 544.08, "word": " component", "probability": 0.82470703125}, {"start": 544.08, "end": 544.42, "word": " that", "probability": 0.6962890625}, {"start": 544.42, "end": 546.32, "word": " receives", "probability": 0.51708984375}, {"start": 546.32, "end": 547.82, "word": " data", "probability": 0.36474609375}, {"start": 547.82, "end": 548.08, "word": " and", "probability": 0.8837890625}, {"start": 548.08, "end": 548.22, "word": " messages", "probability": 0.74365234375}], "temperature": 1.0}, {"id": 22, "seek": 56965, "start": 550.33, "end": 569.65, "text": "Of course it shows you the messages that are coming, but there is no network, all these messages are fake, but it shows as if they are messages Okay, here is the code that receives the messages, look at it with me, it says here while true because it does not keep running", "tokens": [23919, 1164, 309, 3110, 291, 264, 7897, 300, 366, 1348, 11, 457, 456, 307, 572, 3209, 11, 439, 613, 7897, 366, 7592, 11, 457, 309, 3110, 382, 498, 436, 366, 7897, 1033, 11, 510, 307, 264, 3089, 300, 20717, 264, 7897, 11, 574, 412, 309, 365, 385, 11, 309, 1619, 510, 1339, 2074, 570, 309, 775, 406, 1066, 2614], "avg_logprob": -0.6140625139077505, "compression_ratio": 1.7044025157232705, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 550.33, "end": 550.55, "word": "Of", "probability": 0.2154541015625}, {"start": 550.55, "end": 550.65, "word": " course", "probability": 0.91796875}, {"start": 550.65, "end": 552.09, "word": " it", "probability": 0.369384765625}, {"start": 552.09, "end": 552.51, "word": " shows", "probability": 0.55810546875}, {"start": 552.51, "end": 552.75, "word": " you", "probability": 0.67333984375}, {"start": 552.75, "end": 552.81, "word": " the", "probability": 0.50439453125}, {"start": 552.81, "end": 553.07, "word": " messages", "probability": 0.6748046875}, {"start": 553.07, "end": 553.25, "word": " that", "probability": 0.55712890625}, {"start": 553.25, "end": 553.31, "word": " are", "probability": 0.269775390625}, {"start": 553.31, "end": 553.47, "word": " coming,", "probability": 0.689453125}, {"start": 554.03, "end": 554.43, "word": " but", "probability": 0.625}, {"start": 554.43, "end": 554.69, "word": " there", "probability": 0.40234375}, {"start": 554.69, "end": 554.69, "word": " is", "probability": 0.55908203125}, {"start": 554.69, "end": 555.01, "word": " no", "probability": 0.6376953125}, {"start": 555.01, "end": 555.47, "word": " network,", "probability": 0.904296875}, {"start": 555.53, "end": 555.85, "word": " all", "probability": 0.36279296875}, {"start": 555.85, "end": 555.93, "word": " these", "probability": 0.312255859375}, {"start": 555.93, "end": 556.17, "word": " messages", "probability": 0.8935546875}, {"start": 556.17, "end": 556.39, "word": " are", "probability": 0.381103515625}, {"start": 556.39, "end": 558.31, "word": " fake,", "probability": 0.7744140625}, {"start": 558.75, "end": 559.25, "word": " but", "probability": 0.59326171875}, {"start": 559.25, "end": 559.39, "word": " it", "probability": 0.447021484375}, {"start": 559.39, "end": 559.67, "word": " shows", "probability": 0.268310546875}, {"start": 559.67, "end": 559.91, "word": " as", "probability": 0.319091796875}, {"start": 559.91, "end": 560.09, "word": " if", "probability": 0.845703125}, {"start": 560.09, "end": 560.13, "word": " they", "probability": 0.341552734375}, {"start": 560.13, "end": 560.59, "word": " are", "probability": 0.82275390625}, {"start": 560.59, "end": 561.67, "word": " messages", "probability": 0.58251953125}, {"start": 561.67, "end": 562.69, "word": " Okay,", "probability": 0.11663818359375}, {"start": 562.89, "end": 563.23, "word": " here", "probability": 0.49609375}, {"start": 563.23, "end": 563.65, "word": " is", "probability": 0.495849609375}, {"start": 563.65, "end": 563.83, "word": " the", "probability": 0.89013671875}, {"start": 563.83, "end": 564.13, "word": " code", "probability": 0.91357421875}, {"start": 564.13, "end": 564.39, "word": " that", "probability": 0.86328125}, {"start": 564.39, "end": 564.75, "word": " receives", "probability": 0.59375}, {"start": 564.75, "end": 564.89, "word": " the", "probability": 0.56298828125}, {"start": 564.89, "end": 565.21, "word": " messages,", "probability": 0.767578125}, {"start": 565.31, "end": 565.49, "word": " look", "probability": 0.7255859375}, {"start": 565.49, "end": 565.57, "word": " at", "probability": 0.364990234375}, {"start": 565.57, "end": 565.69, "word": " it", "probability": 0.630859375}, {"start": 565.69, "end": 565.69, "word": " with", "probability": 0.33544921875}, {"start": 565.69, "end": 565.93, "word": " me,", "probability": 0.9677734375}, {"start": 566.81, "end": 567.01, "word": " it", "probability": 0.73486328125}, {"start": 567.01, "end": 567.19, "word": " says", "probability": 0.8505859375}, {"start": 567.19, "end": 567.49, "word": " here", "probability": 0.63818359375}, {"start": 567.49, "end": 567.99, "word": " while", "probability": 0.67822265625}, {"start": 567.99, "end": 568.35, "word": " true", "probability": 0.9462890625}, {"start": 568.35, "end": 568.71, "word": " because", "probability": 0.685546875}, {"start": 568.71, "end": 568.89, "word": " it", "probability": 0.728515625}, {"start": 568.89, "end": 569.05, "word": " does", "probability": 0.3857421875}, {"start": 569.05, "end": 569.05, "word": " not", "probability": 0.92822265625}, {"start": 569.05, "end": 569.27, "word": " keep", "probability": 0.28662109375}, {"start": 569.27, "end": 569.65, "word": " running", "probability": 0.438720703125}], "temperature": 1.0}, {"id": 23, "seek": 58916, "start": 571.21, "end": 589.17, "text": "infinite loop, I say get message, read the message that came from the network, and what is written here, print it for me on the console. Now I'm not supposed to print it on the console, I'm supposed to deliver the message to the UI and deliver it to the logger. This is what we are supposed to do.", "tokens": [259, 5194, 642, 6367, 11, 286, 584, 483, 3636, 11, 1401, 264, 3636, 300, 1361, 490, 264, 3209, 11, 293, 437, 307, 3720, 510, 11, 4482, 309, 337, 385, 322, 264, 11076, 13, 823, 286, 478, 406, 3442, 281, 4482, 309, 322, 264, 11076, 11, 286, 478, 3442, 281, 4239, 264, 3636, 281, 264, 15682, 293, 4239, 309, 281, 264, 3565, 1321, 13, 639, 307, 437, 321, 366, 3442, 281, 360, 13], "avg_logprob": -0.47345889104555733, "compression_ratio": 1.7678571428571428, "no_speech_prob": 1.1026859283447266e-05, "words": [{"start": 571.21, "end": 571.71, "word": "infinite", "probability": 0.6463216145833334}, {"start": 571.71, "end": 572.03, "word": " loop,", "probability": 0.91845703125}, {"start": 572.37, "end": 572.59, "word": " I", "probability": 0.4130859375}, {"start": 572.59, "end": 572.75, "word": " say", "probability": 0.2137451171875}, {"start": 572.75, "end": 572.99, "word": " get", "probability": 0.796875}, {"start": 572.99, "end": 573.41, "word": " message,", "probability": 0.83349609375}, {"start": 573.49, "end": 573.73, "word": " read", "probability": 0.78271484375}, {"start": 573.73, "end": 573.87, "word": " the", "probability": 0.67626953125}, {"start": 573.87, "end": 574.19, "word": " message", "probability": 0.75146484375}, {"start": 574.19, "end": 574.37, "word": " that", "probability": 0.362548828125}, {"start": 574.37, "end": 574.55, "word": " came", "probability": 0.57763671875}, {"start": 574.55, "end": 574.77, "word": " from", "probability": 0.5986328125}, {"start": 574.77, "end": 574.95, "word": " the", "probability": 0.578125}, {"start": 574.95, "end": 575.41, "word": " network,", "probability": 0.93115234375}, {"start": 575.93, "end": 575.95, "word": " and", "probability": 0.58544921875}, {"start": 575.95, "end": 576.09, "word": " what", "probability": 0.70654296875}, {"start": 576.09, "end": 576.15, "word": " is", "probability": 0.634765625}, {"start": 576.15, "end": 576.43, "word": " written", "probability": 0.8896484375}, {"start": 576.43, "end": 576.75, "word": " here,", "probability": 0.76611328125}, {"start": 577.45, "end": 577.69, "word": " print", "probability": 0.78125}, {"start": 577.69, "end": 578.09, "word": " it", "probability": 0.86279296875}, {"start": 578.09, "end": 578.09, "word": " for", "probability": 0.240478515625}, {"start": 578.09, "end": 578.79, "word": " me", "probability": 0.96240234375}, {"start": 578.79, "end": 579.29, "word": " on", "probability": 0.40966796875}, {"start": 579.29, "end": 579.43, "word": " the", "probability": 0.8525390625}, {"start": 579.43, "end": 579.73, "word": " console.", "probability": 0.82421875}, {"start": 580.15, "end": 580.59, "word": " Now", "probability": 0.43408203125}, {"start": 580.59, "end": 580.87, "word": " I'm", "probability": 0.4671630859375}, {"start": 580.87, "end": 580.99, "word": " not", "probability": 0.48486328125}, {"start": 580.99, "end": 581.31, "word": " supposed", "probability": 0.8037109375}, {"start": 581.31, "end": 581.31, "word": " to", "probability": 0.96728515625}, {"start": 581.31, "end": 581.47, "word": " print", "probability": 0.94091796875}, {"start": 581.47, "end": 581.55, "word": " it", "probability": 0.85400390625}, {"start": 581.55, "end": 581.63, "word": " on", "probability": 0.80517578125}, {"start": 581.63, "end": 581.73, "word": " the", "probability": 0.88720703125}, {"start": 581.73, "end": 581.97, "word": " console,", "probability": 0.845703125}, {"start": 582.15, "end": 582.15, "word": " I'm", "probability": 0.498779296875}, {"start": 582.15, "end": 582.37, "word": " supposed", "probability": 0.92333984375}, {"start": 582.37, "end": 582.47, "word": " to", "probability": 0.96728515625}, {"start": 582.47, "end": 582.47, "word": " deliver", "probability": 0.1414794921875}, {"start": 582.47, "end": 582.49, "word": " the", "probability": 0.71728515625}, {"start": 582.49, "end": 582.77, "word": " message", "probability": 0.8974609375}, {"start": 582.77, "end": 583.75, "word": " to", "probability": 0.8759765625}, {"start": 583.75, "end": 584.15, "word": " the", "probability": 0.75634765625}, {"start": 584.15, "end": 584.51, "word": " UI", "probability": 0.7177734375}, {"start": 584.51, "end": 585.27, "word": " and", "probability": 0.67333984375}, {"start": 585.27, "end": 585.55, "word": " deliver", "probability": 0.4677734375}, {"start": 585.55, "end": 585.75, "word": " it", "probability": 0.7998046875}, {"start": 585.75, "end": 586.49, "word": " to", "probability": 0.96142578125}, {"start": 586.49, "end": 586.61, "word": " the", "probability": 0.8564453125}, {"start": 586.61, "end": 586.91, "word": " logger.", "probability": 0.8193359375}, {"start": 587.01, "end": 587.23, "word": " This", "probability": 0.642578125}, {"start": 587.23, "end": 587.31, "word": " is", "probability": 0.93408203125}, {"start": 587.31, "end": 587.57, "word": " what", "probability": 0.8037109375}, {"start": 587.57, "end": 587.95, "word": " we", "probability": 0.9228515625}, {"start": 587.95, "end": 588.07, "word": " are", "probability": 0.335205078125}, {"start": 588.07, "end": 588.07, "word": " supposed", "probability": 0.904296875}, {"start": 588.07, "end": 588.87, "word": " to", "probability": 0.96923828125}, {"start": 588.87, "end": 589.17, "word": " do.", "probability": 0.96142578125}], "temperature": 1.0}, {"id": 24, "seek": 61773, "start": 590.07, "end": 617.73, "text": " Ok, let's make the link, did you find it? Each class is made an object by itself, but we didn't link them together First step, let's do it in the normal way, then we'll apply it in the observer way First step, who needs who? Ok, the network message handler has two dependencies, the UI and the logger So this is who communicates with whom? With the UI and the logger So did you find it? These two are supposed to reference from them to whom?", "tokens": [3477, 11, 718, 311, 652, 264, 2113, 11, 630, 291, 915, 309, 30, 6947, 1508, 307, 1027, 364, 2657, 538, 2564, 11, 457, 321, 994, 380, 2113, 552, 1214, 2386, 1823, 11, 718, 311, 360, 309, 294, 264, 2710, 636, 11, 550, 321, 603, 3079, 309, 294, 264, 27878, 636, 2386, 1823, 11, 567, 2203, 567, 30, 3477, 11, 264, 3209, 3636, 41967, 575, 732, 36606, 11, 264, 15682, 293, 264, 3565, 1321, 407, 341, 307, 567, 3363, 1024, 365, 7101, 30, 2022, 264, 15682, 293, 264, 3565, 1321, 407, 630, 291, 915, 309, 30, 1981, 732, 366, 3442, 281, 6408, 490, 552, 281, 7101, 30], "avg_logprob": -0.5148948843234054, "compression_ratio": 1.7401574803149606, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 590.07, "end": 590.39, "word": " Ok,", "probability": 0.11285400390625}, {"start": 590.47, "end": 590.73, "word": " let's", "probability": 0.623779296875}, {"start": 590.73, "end": 590.95, "word": " make", "probability": 0.279296875}, {"start": 590.95, "end": 591.13, "word": " the", "probability": 0.439453125}, {"start": 591.13, "end": 591.29, "word": " link,", "probability": 0.3671875}, {"start": 591.43, "end": 591.47, "word": " did", "probability": 0.286376953125}, {"start": 591.47, "end": 591.61, "word": " you", "probability": 0.97119140625}, {"start": 591.61, "end": 591.63, "word": " find", "probability": 0.41650390625}, {"start": 591.63, "end": 591.69, "word": " it?", "probability": 0.71923828125}, {"start": 591.79, "end": 592.19, "word": " Each", "probability": 0.247314453125}, {"start": 592.19, "end": 592.65, "word": " class", "probability": 0.90869140625}, {"start": 592.65, "end": 592.79, "word": " is", "probability": 0.775390625}, {"start": 592.79, "end": 592.95, "word": " made", "probability": 0.314453125}, {"start": 592.95, "end": 593.15, "word": " an", "probability": 0.1663818359375}, {"start": 593.15, "end": 593.37, "word": " object", "probability": 0.93603515625}, {"start": 593.37, "end": 593.55, "word": " by", "probability": 0.266357421875}, {"start": 593.55, "end": 593.75, "word": " itself,", "probability": 0.67724609375}, {"start": 593.85, "end": 593.95, "word": " but", "probability": 0.74169921875}, {"start": 593.95, "end": 594.09, "word": " we", "probability": 0.8017578125}, {"start": 594.09, "end": 594.11, "word": " didn't", "probability": 0.6949462890625}, {"start": 594.11, "end": 594.29, "word": " link", "probability": 0.54736328125}, {"start": 594.29, "end": 594.71, "word": " them", "probability": 0.8349609375}, {"start": 594.71, "end": 595.61, "word": " together", "probability": 0.630859375}, {"start": 595.61, "end": 595.95, "word": " First", "probability": 0.304443359375}, {"start": 595.95, "end": 596.35, "word": " step,", "probability": 0.86328125}, {"start": 596.71, "end": 596.91, "word": " let's", "probability": 0.92919921875}, {"start": 596.91, "end": 597.49, "word": " do", "probability": 0.468994140625}, {"start": 597.49, "end": 597.67, "word": " it", "probability": 0.89990234375}, {"start": 597.67, "end": 597.67, "word": " in", "probability": 0.30615234375}, {"start": 597.67, "end": 597.79, "word": " the", "probability": 0.69970703125}, {"start": 597.79, "end": 598.23, "word": " normal", "probability": 0.5068359375}, {"start": 598.23, "end": 598.35, "word": " way,", "probability": 0.9365234375}, {"start": 598.51, "end": 598.73, "word": " then", "probability": 0.55859375}, {"start": 598.73, "end": 598.85, "word": " we'll", "probability": 0.540283203125}, {"start": 598.85, "end": 599.05, "word": " apply", "probability": 0.5400390625}, {"start": 599.05, "end": 599.19, "word": " it", "probability": 0.8115234375}, {"start": 599.19, "end": 599.23, "word": " in", "probability": 0.42333984375}, {"start": 599.23, "end": 599.89, "word": " the", "probability": 0.7333984375}, {"start": 599.89, "end": 600.21, "word": " observer", "probability": 0.72998046875}, {"start": 600.21, "end": 600.45, "word": " way", "probability": 0.642578125}, {"start": 600.45, "end": 601.31, "word": " First", "probability": 0.70263671875}, {"start": 601.31, "end": 601.61, "word": " step,", "probability": 0.89892578125}, {"start": 601.73, "end": 601.89, "word": " who", "probability": 0.7470703125}, {"start": 601.89, "end": 602.33, "word": " needs", "probability": 0.8154296875}, {"start": 602.33, "end": 602.63, "word": " who?", "probability": 0.50048828125}, {"start": 603.81, "end": 604.13, "word": " Ok,", "probability": 0.234375}, {"start": 604.27, "end": 604.35, "word": " the", "probability": 0.7119140625}, {"start": 604.35, "end": 604.65, "word": " network", "probability": 0.76513671875}, {"start": 604.65, "end": 604.99, "word": " message", "probability": 0.814453125}, {"start": 604.99, "end": 605.41, "word": " handler", "probability": 0.91357421875}, {"start": 605.41, "end": 605.75, "word": " has", "probability": 0.919921875}, {"start": 605.75, "end": 605.97, "word": " two", "probability": 0.82666015625}, {"start": 605.97, "end": 606.51, "word": " dependencies,", "probability": 0.7998046875}, {"start": 606.83, "end": 606.91, "word": " the", "probability": 0.487548828125}, {"start": 606.91, "end": 607.11, "word": " UI", "probability": 0.83984375}, {"start": 607.11, "end": 607.31, "word": " and", "probability": 0.93798828125}, {"start": 607.31, "end": 607.39, "word": " the", "probability": 0.796875}, {"start": 607.39, "end": 607.57, "word": " logger", "probability": 0.846435546875}, {"start": 607.57, "end": 607.75, "word": " So", "probability": 0.2000732421875}, {"start": 607.75, "end": 608.19, "word": " this", "probability": 0.5830078125}, {"start": 608.19, "end": 608.87, "word": " is", "probability": 0.5908203125}, {"start": 608.87, "end": 609.67, "word": " who", "probability": 0.302978515625}, {"start": 609.67, "end": 610.11, "word": " communicates", "probability": 0.778076171875}, {"start": 610.11, "end": 610.29, "word": " with", "probability": 0.84326171875}, {"start": 610.29, "end": 610.49, "word": " whom?", "probability": 0.55224609375}, {"start": 610.57, "end": 610.67, "word": " With", "probability": 0.60595703125}, {"start": 610.67, "end": 610.77, "word": " the", "probability": 0.72509765625}, {"start": 610.77, "end": 611.19, "word": " UI", "probability": 0.9677734375}, {"start": 611.19, "end": 612.21, "word": " and", "probability": 0.88330078125}, {"start": 612.21, "end": 612.29, "word": " the", "probability": 0.80224609375}, {"start": 612.29, "end": 612.65, "word": " logger", "probability": 0.907958984375}, {"start": 612.65, "end": 613.15, "word": " So", "probability": 0.525390625}, {"start": 613.15, "end": 613.35, "word": " did", "probability": 0.6376953125}, {"start": 613.35, "end": 613.49, "word": " you", "probability": 0.96826171875}, {"start": 613.49, "end": 613.49, "word": " find", "probability": 0.87255859375}, {"start": 613.49, "end": 613.69, "word": " it?", "probability": 0.4423828125}, {"start": 613.79, "end": 614.19, "word": " These", "probability": 0.389404296875}, {"start": 614.19, "end": 614.79, "word": " two", "probability": 0.8447265625}, {"start": 614.79, "end": 614.79, "word": " are", "probability": 0.22412109375}, {"start": 614.79, "end": 614.79, "word": " supposed", "probability": 0.7431640625}, {"start": 614.79, "end": 615.85, "word": " to", "probability": 0.9658203125}, {"start": 615.85, "end": 616.41, "word": " reference", "probability": 0.69775390625}, {"start": 616.41, "end": 616.63, "word": " from", "probability": 0.344482421875}, {"start": 616.63, "end": 616.95, "word": " them", "probability": 0.401611328125}, {"start": 616.95, "end": 617.17, "word": " to", "probability": 0.15576171875}, {"start": 617.17, "end": 617.73, "word": " whom?", "probability": 0.662109375}], "temperature": 1.0}, {"id": 25, "seek": 64405, "start": 619.04, "end": 644.06, "text": " For the Network Message Handler Because from inside the Network Message Handler, it wants to communicate with them Ok, how do we pass them? We want to create a Network Message Handler and work with them First thing up here Where did I go to not get lost? Where did I work? In the Message Handler, ok? I created an attribute called Messenger UI", "tokens": [1171, 264, 12640, 45947, 8854, 1918, 1436, 490, 1854, 264, 12640, 45947, 8854, 1918, 11, 309, 2738, 281, 7890, 365, 552, 3477, 11, 577, 360, 321, 1320, 552, 30, 492, 528, 281, 1884, 257, 12640, 45947, 8854, 1918, 293, 589, 365, 552, 2386, 551, 493, 510, 2305, 630, 286, 352, 281, 406, 483, 2731, 30, 2305, 630, 286, 589, 30, 682, 264, 45947, 8854, 1918, 11, 3133, 30, 286, 2942, 364, 19667, 1219, 34226, 15682], "avg_logprob": -0.5699013016725841, "compression_ratio": 1.8105263157894738, "no_speech_prob": 4.5299530029296875e-06, "words": [{"start": 619.04, "end": 619.26, "word": " For", "probability": 0.09283447265625}, {"start": 619.26, "end": 619.34, "word": " the", "probability": 0.387451171875}, {"start": 619.34, "end": 619.62, "word": " Network", "probability": 0.451171875}, {"start": 619.62, "end": 619.9, "word": " Message", "probability": 0.79296875}, {"start": 619.9, "end": 620.26, "word": " Handler", "probability": 0.950927734375}, {"start": 620.26, "end": 620.74, "word": " Because", "probability": 0.61181640625}, {"start": 620.74, "end": 620.84, "word": " from", "probability": 0.4716796875}, {"start": 620.84, "end": 621.18, "word": " inside", "probability": 0.451416015625}, {"start": 621.18, "end": 621.32, "word": " the", "probability": 0.779296875}, {"start": 621.32, "end": 621.58, "word": " Network", "probability": 0.591796875}, {"start": 621.58, "end": 621.9, "word": " Message", "probability": 0.85107421875}, {"start": 621.9, "end": 622.2, "word": " Handler,", "probability": 0.953125}, {"start": 622.28, "end": 622.28, "word": " it", "probability": 0.4443359375}, {"start": 622.28, "end": 622.4, "word": " wants", "probability": 0.15625}, {"start": 622.4, "end": 622.52, "word": " to", "probability": 0.96923828125}, {"start": 622.52, "end": 622.72, "word": " communicate", "probability": 0.5380859375}, {"start": 622.72, "end": 622.96, "word": " with", "probability": 0.86279296875}, {"start": 622.96, "end": 623.2, "word": " them", "probability": 0.767578125}, {"start": 623.2, "end": 624.04, "word": " Ok,", "probability": 0.1622314453125}, {"start": 624.86, "end": 625.12, "word": " how", "probability": 0.66552734375}, {"start": 625.12, "end": 625.2, "word": " do", "probability": 0.4443359375}, {"start": 625.2, "end": 625.24, "word": " we", "probability": 0.92626953125}, {"start": 625.24, "end": 625.5, "word": " pass", "probability": 0.169921875}, {"start": 625.5, "end": 625.76, "word": " them?", "probability": 0.513671875}, {"start": 625.78, "end": 625.92, "word": " We", "probability": 0.75537109375}, {"start": 625.92, "end": 626.02, "word": " want", "probability": 0.277099609375}, {"start": 626.02, "end": 626.2, "word": " to", "probability": 0.95361328125}, {"start": 626.2, "end": 626.38, "word": " create", "probability": 0.369384765625}, {"start": 626.38, "end": 626.48, "word": " a", "probability": 0.80126953125}, {"start": 626.48, "end": 626.72, "word": " Network", "probability": 0.74072265625}, {"start": 626.72, "end": 627.08, "word": " Message", "probability": 0.9345703125}, {"start": 627.08, "end": 627.54, "word": " Handler", "probability": 0.9541015625}, {"start": 627.54, "end": 628.14, "word": " and", "probability": 0.467529296875}, {"start": 628.14, "end": 628.38, "word": " work", "probability": 0.564453125}, {"start": 628.38, "end": 628.52, "word": " with", "probability": 0.4091796875}, {"start": 628.52, "end": 628.8, "word": " them", "probability": 0.814453125}, {"start": 628.8, "end": 629.3, "word": " First", "probability": 0.57177734375}, {"start": 629.3, "end": 629.6, "word": " thing", "probability": 0.62353515625}, {"start": 629.6, "end": 629.86, "word": " up", "probability": 0.381591796875}, {"start": 629.86, "end": 630.2, "word": " here", "probability": 0.7763671875}, {"start": 630.2, "end": 630.88, "word": " Where", "probability": 0.1639404296875}, {"start": 630.88, "end": 630.88, "word": " did", "probability": 0.72705078125}, {"start": 630.88, "end": 631.34, "word": " I", "probability": 0.52783203125}, {"start": 631.34, "end": 631.7, "word": " go", "probability": 0.662109375}, {"start": 631.7, "end": 632.72, "word": " to", "probability": 0.19287109375}, {"start": 632.72, "end": 632.84, "word": " not", "probability": 0.413330078125}, {"start": 632.84, "end": 633.0, "word": " get", "probability": 0.35009765625}, {"start": 633.0, "end": 633.16, "word": " lost?", "probability": 0.492919921875}, {"start": 633.36, "end": 633.72, "word": " Where", "probability": 0.51025390625}, {"start": 633.72, "end": 633.72, "word": " did", "probability": 0.58740234375}, {"start": 633.72, "end": 633.96, "word": " I", "probability": 0.98291015625}, {"start": 633.96, "end": 633.96, "word": " work?", "probability": 0.576171875}, {"start": 634.34, "end": 634.86, "word": " In", "probability": 0.751953125}, {"start": 634.86, "end": 634.92, "word": " the", "probability": 0.806640625}, {"start": 634.92, "end": 635.16, "word": " Message", "probability": 0.7978515625}, {"start": 635.16, "end": 635.58, "word": " Handler,", "probability": 0.95458984375}, {"start": 635.6, "end": 636.0, "word": " ok?", "probability": 0.59716796875}, {"start": 636.5, "end": 636.7, "word": " I", "probability": 0.8623046875}, {"start": 636.7, "end": 636.96, "word": " created", "probability": 0.482666015625}, {"start": 636.96, "end": 637.5, "word": " an", "probability": 0.8310546875}, {"start": 637.5, "end": 638.66, "word": " attribute", "probability": 0.8759765625}, {"start": 638.66, "end": 639.06, "word": " called", "probability": 0.4912109375}, {"start": 639.06, "end": 639.68, "word": " Messenger", "probability": 0.328857421875}, {"start": 639.68, "end": 644.06, "word": " UI", "probability": 0.6240234375}], "temperature": 1.0}, {"id": 26, "seek": 66684, "start": 646.24, "end": 666.84, "text": " And I made another reference called Logar Ok guys And of course I got their values from these guys So I have to make them set Either you make setter methods", "tokens": [400, 286, 1027, 1071, 6408, 1219, 10824, 289, 3477, 1074, 400, 295, 1164, 286, 658, 641, 4190, 490, 613, 1074, 407, 286, 362, 281, 652, 552, 992, 13746, 291, 652, 992, 391, 7150], "avg_logprob": -0.5454963095047894, "compression_ratio": 1.319327731092437, "no_speech_prob": 0.0, "words": [{"start": 646.24, "end": 646.46, "word": " And", "probability": 0.269287109375}, {"start": 646.46, "end": 646.68, "word": " I", "probability": 0.66357421875}, {"start": 646.68, "end": 646.68, "word": " made", "probability": 0.5263671875}, {"start": 646.68, "end": 646.78, "word": " another", "probability": 0.70849609375}, {"start": 646.78, "end": 647.22, "word": " reference", "probability": 0.8544921875}, {"start": 647.22, "end": 648.1, "word": " called", "probability": 0.2344970703125}, {"start": 648.1, "end": 649.22, "word": " Logar", "probability": 0.5562744140625}, {"start": 649.22, "end": 659.58, "word": " Ok", "probability": 0.30859375}, {"start": 659.58, "end": 660.06, "word": " guys", "probability": 0.75537109375}, {"start": 660.06, "end": 661.34, "word": " And", "probability": 0.288818359375}, {"start": 661.34, "end": 661.56, "word": " of", "probability": 0.6181640625}, {"start": 661.56, "end": 661.6, "word": " course", "probability": 0.9091796875}, {"start": 661.6, "end": 662.2, "word": " I", "probability": 0.32470703125}, {"start": 662.2, "end": 662.44, "word": " got", "probability": 0.712890625}, {"start": 662.44, "end": 662.72, "word": " their", "probability": 0.52392578125}, {"start": 662.72, "end": 662.72, "word": " values", "probability": 0.8505859375}, {"start": 662.72, "end": 662.9, "word": " from", "probability": 0.83935546875}, {"start": 662.9, "end": 663.18, "word": " these", "probability": 0.34765625}, {"start": 663.18, "end": 663.88, "word": " guys", "probability": 0.2861328125}, {"start": 663.88, "end": 664.26, "word": " So", "probability": 0.67236328125}, {"start": 664.26, "end": 664.38, "word": " I", "probability": 0.83349609375}, {"start": 664.38, "end": 664.46, "word": " have", "probability": 0.43359375}, {"start": 664.46, "end": 664.52, "word": " to", "probability": 0.96875}, {"start": 664.52, "end": 664.7, "word": " make", "probability": 0.6357421875}, {"start": 664.7, "end": 664.88, "word": " them", "probability": 0.429443359375}, {"start": 664.88, "end": 665.1, "word": " set", "probability": 0.85498046875}, {"start": 665.1, "end": 665.78, "word": " Either", "probability": 0.48193359375}, {"start": 665.78, "end": 665.92, "word": " you", "probability": 0.6748046875}, {"start": 665.92, "end": 666.12, "word": " make", "probability": 0.66455078125}, {"start": 666.12, "end": 666.48, "word": " setter", "probability": 0.855224609375}, {"start": 666.48, "end": 666.84, "word": " methods", "probability": 0.845703125}], "temperature": 1.0}, {"id": 27, "seek": 69688, "start": 667.76, "end": 696.88, "text": " Yes, through the constructor When you create a network message handler, send it to whom? The UI and the logger So let's go to the easiest way to do it, through the constructor Okay, it will initialize us", "tokens": [1079, 11, 807, 264, 47479, 1133, 291, 1884, 257, 3209, 3636, 41967, 11, 2845, 309, 281, 7101, 30, 440, 15682, 293, 264, 3565, 1321, 407, 718, 311, 352, 281, 264, 12889, 636, 281, 360, 309, 11, 807, 264, 47479, 1033, 11, 309, 486, 5883, 1125, 505], "avg_logprob": -0.6791888373963376, "compression_ratio": 1.4366197183098592, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 667.76, "end": 668.18, "word": " Yes,", "probability": 0.1802978515625}, {"start": 668.34, "end": 668.68, "word": " through", "probability": 0.37939453125}, {"start": 668.68, "end": 669.06, "word": " the", "probability": 0.58935546875}, {"start": 669.06, "end": 669.5, "word": " constructor", "probability": 0.810546875}, {"start": 669.5, "end": 670.38, "word": " When", "probability": 0.286376953125}, {"start": 670.38, "end": 670.7, "word": " you", "probability": 0.8193359375}, {"start": 670.7, "end": 670.88, "word": " create", "probability": 0.75048828125}, {"start": 670.88, "end": 671.02, "word": " a", "probability": 0.76416015625}, {"start": 671.02, "end": 671.36, "word": " network", "probability": 0.431396484375}, {"start": 671.36, "end": 671.6, "word": " message", "probability": 0.283203125}, {"start": 671.6, "end": 671.96, "word": " handler,", "probability": 0.7177734375}, {"start": 672.06, "end": 672.24, "word": " send", "probability": 0.2225341796875}, {"start": 672.24, "end": 672.44, "word": " it", "probability": 0.7529296875}, {"start": 672.44, "end": 672.58, "word": " to", "probability": 0.464599609375}, {"start": 672.58, "end": 672.64, "word": " whom?", "probability": 0.389892578125}, {"start": 672.96, "end": 673.44, "word": " The", "probability": 0.5517578125}, {"start": 673.44, "end": 673.68, "word": " UI", "probability": 0.60205078125}, {"start": 673.68, "end": 673.86, "word": " and", "probability": 0.91064453125}, {"start": 673.86, "end": 673.9, "word": " the", "probability": 0.5654296875}, {"start": 673.9, "end": 674.24, "word": " logger", "probability": 0.716064453125}, {"start": 674.24, "end": 674.58, "word": " So", "probability": 0.332763671875}, {"start": 674.58, "end": 674.82, "word": " let's", "probability": 0.5443115234375}, {"start": 674.82, "end": 674.82, "word": " go", "probability": 0.1947021484375}, {"start": 674.82, "end": 675.0, "word": " to", "probability": 0.58544921875}, {"start": 675.0, "end": 675.84, "word": " the", "probability": 0.7861328125}, {"start": 675.84, "end": 676.16, "word": " easiest", "probability": 0.55224609375}, {"start": 676.16, "end": 676.3, "word": " way", "probability": 0.546875}, {"start": 676.3, "end": 676.34, "word": " to", "probability": 0.293212890625}, {"start": 676.34, "end": 676.5, "word": " do", "probability": 0.7041015625}, {"start": 676.5, "end": 676.6, "word": " it,", "probability": 0.7724609375}, {"start": 676.66, "end": 677.12, "word": " through", "probability": 0.416015625}, {"start": 677.12, "end": 677.42, "word": " the", "probability": 0.84912109375}, {"start": 677.42, "end": 678.02, "word": " constructor", "probability": 0.89599609375}, {"start": 678.02, "end": 695.26, "word": " Okay,", "probability": 0.1884765625}, {"start": 695.86, "end": 696.04, "word": " it", "probability": 0.65625}, {"start": 696.04, "end": 696.08, "word": " will", "probability": 0.27734375}, {"start": 696.08, "end": 696.88, "word": " initialize", "probability": 0.559814453125}, {"start": 696.88, "end": 696.88, "word": " us", "probability": 0.55908203125}], "temperature": 1.0}, {"id": 28, "seek": 72645, "start": 697.63, "end": 726.45, "text": " The third step is that when I receive a message, I get a reference from the UI, I say UI.UPDATE method and I send him the message. I use the method UPDATE to request it, and it puts it in the chat, and then the logger also UPDATE and it sends him the message. We have finished our work in the network message handler.", "tokens": [440, 2636, 1823, 307, 300, 562, 286, 4774, 257, 3636, 11, 286, 483, 257, 6408, 490, 264, 15682, 11, 286, 584, 15682, 13, 52, 17349, 20047, 3170, 293, 286, 2845, 796, 264, 3636, 13, 286, 764, 264, 3170, 624, 17349, 20047, 281, 5308, 309, 11, 293, 309, 8137, 309, 294, 264, 5081, 11, 293, 550, 264, 3565, 1321, 611, 624, 17349, 20047, 293, 309, 14790, 796, 264, 3636, 13, 492, 362, 4335, 527, 589, 294, 264, 3209, 3636, 41967, 13], "avg_logprob": -0.6238425808188356, "compression_ratio": 1.6825396825396826, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 697.63, "end": 697.85, "word": " The", "probability": 0.68505859375}, {"start": 697.85, "end": 697.91, "word": " third", "probability": 0.8994140625}, {"start": 697.91, "end": 698.27, "word": " step", "probability": 0.89013671875}, {"start": 698.27, "end": 698.83, "word": " is", "probability": 0.73828125}, {"start": 698.83, "end": 698.89, "word": " that", "probability": 0.2183837890625}, {"start": 698.89, "end": 699.03, "word": " when", "probability": 0.7939453125}, {"start": 699.03, "end": 699.11, "word": " I", "probability": 0.2235107421875}, {"start": 699.11, "end": 699.31, "word": " receive", "probability": 0.459228515625}, {"start": 699.31, "end": 699.91, "word": " a", "probability": 0.6845703125}, {"start": 699.91, "end": 699.91, "word": " message,", "probability": 0.8125}, {"start": 701.03, "end": 701.73, "word": " I", "probability": 0.453125}, {"start": 701.73, "end": 702.03, "word": " get", "probability": 0.093017578125}, {"start": 702.03, "end": 702.25, "word": " a", "probability": 0.857421875}, {"start": 702.25, "end": 702.77, "word": " reference", "probability": 0.62548828125}, {"start": 702.77, "end": 702.99, "word": " from", "probability": 0.80859375}, {"start": 702.99, "end": 703.09, "word": " the", "probability": 0.6533203125}, {"start": 703.09, "end": 703.35, "word": " UI,", "probability": 0.90673828125}, {"start": 703.45, "end": 703.51, "word": " I", "probability": 0.49169921875}, {"start": 703.51, "end": 703.67, "word": " say", "probability": 0.38427734375}, {"start": 703.67, "end": 704.23, "word": " UI", "probability": 0.351806640625}, {"start": 704.23, "end": 706.71, "word": ".UPDATE", "probability": 0.61212158203125}, {"start": 706.71, "end": 706.71, "word": " method", "probability": 0.267333984375}, {"start": 706.71, "end": 708.89, "word": " and", "probability": 0.425048828125}, {"start": 708.89, "end": 708.99, "word": " I", "probability": 0.59375}, {"start": 708.99, "end": 709.17, "word": " send", "probability": 0.76171875}, {"start": 709.17, "end": 709.33, "word": " him", "probability": 0.416015625}, {"start": 709.33, "end": 709.43, "word": " the", "probability": 0.58349609375}, {"start": 709.43, "end": 709.69, "word": " message.", "probability": 0.896484375}, {"start": 710.43, "end": 710.91, "word": " I", "probability": 0.70703125}, {"start": 710.91, "end": 711.13, "word": " use", "probability": 0.50439453125}, {"start": 711.13, "end": 711.27, "word": " the", "probability": 0.6796875}, {"start": 711.27, "end": 711.43, "word": " method", "probability": 0.5986328125}, {"start": 711.43, "end": 711.77, "word": " UPDATE", "probability": 0.7259521484375}, {"start": 711.77, "end": 712.01, "word": " to", "probability": 0.4345703125}, {"start": 712.01, "end": 712.59, "word": " request", "probability": 0.1124267578125}, {"start": 712.59, "end": 712.77, "word": " it,", "probability": 0.57666015625}, {"start": 712.77, "end": 712.89, "word": " and", "probability": 0.6279296875}, {"start": 712.89, "end": 712.99, "word": " it", "probability": 0.52783203125}, {"start": 712.99, "end": 713.37, "word": " puts", "probability": 0.277587890625}, {"start": 713.37, "end": 713.43, "word": " it", "probability": 0.72802734375}, {"start": 713.43, "end": 713.55, "word": " in", "probability": 0.81298828125}, {"start": 713.55, "end": 713.77, "word": " the", "probability": 0.8681640625}, {"start": 713.77, "end": 715.49, "word": " chat,", "probability": 0.92431640625}, {"start": 716.03, "end": 716.35, "word": " and", "probability": 0.66650390625}, {"start": 716.35, "end": 716.55, "word": " then", "probability": 0.70849609375}, {"start": 716.55, "end": 716.67, "word": " the", "probability": 0.77001953125}, {"start": 716.67, "end": 716.99, "word": " logger", "probability": 0.8232421875}, {"start": 716.99, "end": 718.83, "word": " also", "probability": 0.66259765625}, {"start": 718.83, "end": 719.99, "word": " UPDATE", "probability": 0.7047526041666666}, {"start": 719.99, "end": 720.07, "word": " and", "probability": 0.66796875}, {"start": 720.07, "end": 720.19, "word": " it", "probability": 0.445556640625}, {"start": 720.19, "end": 720.43, "word": " sends", "probability": 0.75634765625}, {"start": 720.43, "end": 720.77, "word": " him", "probability": 0.775390625}, {"start": 720.77, "end": 721.83, "word": " the", "probability": 0.90283203125}, {"start": 721.83, "end": 722.17, "word": " message.", "probability": 0.89697265625}, {"start": 722.61, "end": 723.05, "word": " We", "probability": 0.1331787109375}, {"start": 723.05, "end": 723.09, "word": " have", "probability": 0.2060546875}, {"start": 723.09, "end": 723.43, "word": " finished", "probability": 0.31298828125}, {"start": 723.43, "end": 723.77, "word": " our", "probability": 0.371826171875}, {"start": 723.77, "end": 724.01, "word": " work", "probability": 0.65576171875}, {"start": 724.01, "end": 724.59, "word": " in", "probability": 0.47998046875}, {"start": 724.59, "end": 724.71, "word": " the", "probability": 0.58984375}, {"start": 724.71, "end": 724.97, "word": " network", "probability": 0.6640625}, {"start": 724.97, "end": 725.41, "word": " message", "probability": 0.904296875}, {"start": 725.41, "end": 726.45, "word": " handler.", "probability": 0.9296875}], "temperature": 1.0}, {"id": 29, "seek": 75178, "start": 727.14, "end": 751.78, "text": " But let's go to the link, did you find it in the main? If you go to the main method, here I made the UI and here I made the logger, but I found an error here, why? Because this needs a constructor, I need to send him the UI and I need to send him the logger, that's it, we linked, okay? Let's run it, okay? Did you find what? These are the messages it has", "tokens": [583, 718, 311, 352, 281, 264, 2113, 11, 630, 291, 915, 309, 294, 264, 2135, 30, 759, 291, 352, 281, 264, 2135, 3170, 11, 510, 286, 1027, 264, 15682, 293, 510, 286, 1027, 264, 3565, 1321, 11, 457, 286, 1352, 364, 6713, 510, 11, 983, 30, 1436, 341, 2203, 257, 47479, 11, 286, 643, 281, 2845, 796, 264, 15682, 293, 286, 643, 281, 2845, 796, 264, 3565, 1321, 11, 300, 311, 309, 11, 321, 9408, 11, 1392, 30, 961, 311, 1190, 309, 11, 1392, 30, 2589, 291, 915, 437, 30, 1981, 366, 264, 7897, 309, 575], "avg_logprob": -0.4906572066631514, "compression_ratio": 1.771144278606965, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 727.14, "end": 727.38, "word": " But", "probability": 0.337890625}, {"start": 727.38, "end": 727.56, "word": " let's", "probability": 0.6051025390625}, {"start": 727.56, "end": 727.66, "word": " go", "probability": 0.47607421875}, {"start": 727.66, "end": 727.78, "word": " to", "probability": 0.65380859375}, {"start": 727.78, "end": 727.8, "word": " the", "probability": 0.46484375}, {"start": 727.8, "end": 728.0, "word": " link,", "probability": 0.2017822265625}, {"start": 728.12, "end": 728.22, "word": " did", "probability": 0.465087890625}, {"start": 728.22, "end": 728.34, "word": " you", "probability": 0.87646484375}, {"start": 728.34, "end": 728.36, "word": " find", "probability": 0.6513671875}, {"start": 728.36, "end": 728.52, "word": " it", "probability": 0.82373046875}, {"start": 728.52, "end": 728.52, "word": " in", "probability": 0.7138671875}, {"start": 728.52, "end": 728.58, "word": " the", "probability": 0.7314453125}, {"start": 728.58, "end": 728.72, "word": " main?", "probability": 0.74560546875}, {"start": 729.66, "end": 729.98, "word": " If", "probability": 0.79833984375}, {"start": 729.98, "end": 730.06, "word": " you", "probability": 0.8603515625}, {"start": 730.06, "end": 730.18, "word": " go", "probability": 0.7216796875}, {"start": 730.18, "end": 730.32, "word": " to", "probability": 0.95263671875}, {"start": 730.32, "end": 730.42, "word": " the", "probability": 0.85107421875}, {"start": 730.42, "end": 730.56, "word": " main", "probability": 0.81640625}, {"start": 730.56, "end": 730.94, "word": " method,", "probability": 0.9375}, {"start": 731.74, "end": 732.0, "word": " here", "probability": 0.15966796875}, {"start": 732.0, "end": 732.04, "word": " I", "probability": 0.5634765625}, {"start": 732.04, "end": 732.26, "word": " made", "probability": 0.5}, {"start": 732.26, "end": 732.42, "word": " the", "probability": 0.81982421875}, {"start": 732.42, "end": 732.86, "word": " UI", "probability": 0.70947265625}, {"start": 732.86, "end": 733.4, "word": " and", "probability": 0.52490234375}, {"start": 733.4, "end": 733.52, "word": " here", "probability": 0.81982421875}, {"start": 733.52, "end": 733.58, "word": " I", "probability": 0.72216796875}, {"start": 733.58, "end": 733.74, "word": " made", "probability": 0.86962890625}, {"start": 733.74, "end": 733.9, "word": " the", "probability": 0.86474609375}, {"start": 733.9, "end": 734.24, "word": " logger,", "probability": 0.6123046875}, {"start": 734.66, "end": 734.9, "word": " but", "probability": 0.86376953125}, {"start": 734.9, "end": 734.96, "word": " I", "probability": 0.29345703125}, {"start": 734.96, "end": 735.1, "word": " found", "probability": 0.67578125}, {"start": 735.1, "end": 735.28, "word": " an", "probability": 0.47314453125}, {"start": 735.28, "end": 735.44, "word": " error", "probability": 0.90283203125}, {"start": 735.44, "end": 735.68, "word": " here,", "probability": 0.76953125}, {"start": 735.72, "end": 736.0, "word": " why?", "probability": 0.8779296875}, {"start": 736.5, "end": 736.82, "word": " Because", "probability": 0.78076171875}, {"start": 736.82, "end": 737.06, "word": " this", "probability": 0.63818359375}, {"start": 737.06, "end": 737.22, "word": " needs", "probability": 0.35791015625}, {"start": 737.22, "end": 737.36, "word": " a", "probability": 0.68994140625}, {"start": 737.36, "end": 737.94, "word": " constructor,", "probability": 0.923828125}, {"start": 738.54, "end": 738.8, "word": " I", "probability": 0.396484375}, {"start": 738.8, "end": 738.98, "word": " need", "probability": 0.35009765625}, {"start": 738.98, "end": 739.04, "word": " to", "probability": 0.97021484375}, {"start": 739.04, "end": 739.2, "word": " send", "probability": 0.75732421875}, {"start": 739.2, "end": 739.36, "word": " him", "probability": 0.3056640625}, {"start": 739.36, "end": 739.44, "word": " the", "probability": 0.90185546875}, {"start": 739.44, "end": 739.92, "word": " UI", "probability": 0.947265625}, {"start": 739.92, "end": 743.84, "word": " and", "probability": 0.58740234375}, {"start": 743.84, "end": 743.86, "word": " I", "probability": 0.2203369140625}, {"start": 743.86, "end": 744.0, "word": " need", "probability": 0.77978515625}, {"start": 744.0, "end": 744.06, "word": " to", "probability": 0.966796875}, {"start": 744.06, "end": 744.2, "word": " send", "probability": 0.77001953125}, {"start": 744.2, "end": 744.34, "word": " him", "probability": 0.8203125}, {"start": 744.34, "end": 744.4, "word": " the", "probability": 0.88037109375}, {"start": 744.4, "end": 744.62, "word": " logger,", "probability": 0.87548828125}, {"start": 744.68, "end": 744.9, "word": " that's", "probability": 0.6729736328125}, {"start": 744.9, "end": 744.98, "word": " it,", "probability": 0.7978515625}, {"start": 745.12, "end": 745.36, "word": " we", "probability": 0.70947265625}, {"start": 745.36, "end": 745.66, "word": " linked,", "probability": 0.29345703125}, {"start": 746.1, "end": 746.4, "word": " okay?", "probability": 0.4482421875}, {"start": 746.46, "end": 746.78, "word": " Let's", "probability": 0.8193359375}, {"start": 746.78, "end": 747.2, "word": " run", "probability": 0.626953125}, {"start": 747.2, "end": 749.8, "word": " it,", "probability": 0.326416015625}, {"start": 749.8, "end": 750.08, "word": " okay?", "probability": 0.763671875}, {"start": 750.2, "end": 750.3, "word": " Did", "probability": 0.640625}, {"start": 750.3, "end": 750.52, "word": " you", "probability": 0.95849609375}, {"start": 750.52, "end": 750.52, "word": " find", "probability": 0.865234375}, {"start": 750.52, "end": 750.82, "word": " what?", "probability": 0.33447265625}, {"start": 750.88, "end": 751.04, "word": " These", "probability": 0.33935546875}, {"start": 751.04, "end": 751.16, "word": " are", "probability": 0.86328125}, {"start": 751.16, "end": 751.16, "word": " the", "probability": 0.5869140625}, {"start": 751.16, "end": 751.42, "word": " messages", "probability": 0.875}, {"start": 751.42, "end": 751.68, "word": " it", "probability": 0.611328125}, {"start": 751.68, "end": 751.78, "word": " has", "probability": 0.8427734375}], "temperature": 1.0}, {"id": 30, "seek": 77824, "start": 754.14, "end": 778.24, "text": " will be displayed in the chat area and in the console The important thing is that Hellgate made an update to whom? To the chat area, to the UI Okay, what is the problem with this design? Who can tell me what is the problem with this design? Hellgate, if it wants a new element, it will listen to it If it wants to make a database component, the message will be stored in the database Okay?", "tokens": [486, 312, 16372, 294, 264, 5081, 1859, 293, 294, 264, 11076, 440, 1021, 551, 307, 300, 12090, 22514, 1027, 364, 5623, 281, 7101, 30, 1407, 264, 5081, 1859, 11, 281, 264, 15682, 1033, 11, 437, 307, 264, 1154, 365, 341, 1715, 30, 2102, 393, 980, 385, 437, 307, 264, 1154, 365, 341, 1715, 30, 12090, 22514, 11, 498, 309, 2738, 257, 777, 4478, 11, 309, 486, 2140, 281, 309, 759, 309, 2738, 281, 652, 257, 8149, 6542, 11, 264, 3636, 486, 312, 12187, 294, 264, 8149, 1033, 30], "avg_logprob": -0.4659409978416529, "compression_ratio": 1.8483412322274881, "no_speech_prob": 2.2649765014648438e-06, "words": [{"start": 754.14, "end": 754.32, "word": " will", "probability": 0.114501953125}, {"start": 754.32, "end": 754.38, "word": " be", "probability": 0.59765625}, {"start": 754.38, "end": 754.6, "word": " displayed", "probability": 0.63525390625}, {"start": 754.6, "end": 755.32, "word": " in", "probability": 0.634765625}, {"start": 755.32, "end": 755.42, "word": " the", "probability": 0.477783203125}, {"start": 755.42, "end": 755.68, "word": " chat", "probability": 0.755859375}, {"start": 755.68, "end": 756.04, "word": " area", "probability": 0.85791015625}, {"start": 756.04, "end": 757.04, "word": " and", "probability": 0.429931640625}, {"start": 757.04, "end": 758.26, "word": " in", "probability": 0.5927734375}, {"start": 758.26, "end": 758.36, "word": " the", "probability": 0.86328125}, {"start": 758.36, "end": 758.72, "word": " console", "probability": 0.8564453125}, {"start": 758.72, "end": 760.22, "word": " The", "probability": 0.162841796875}, {"start": 760.22, "end": 760.4, "word": " important", "probability": 0.58056640625}, {"start": 760.4, "end": 760.48, "word": " thing", "probability": 0.7646484375}, {"start": 760.48, "end": 760.6, "word": " is", "probability": 0.86376953125}, {"start": 760.6, "end": 760.66, "word": " that", "probability": 0.71142578125}, {"start": 760.66, "end": 760.9, "word": " Hellgate", "probability": 0.57720947265625}, {"start": 760.9, "end": 761.12, "word": " made", "probability": 0.173583984375}, {"start": 761.12, "end": 761.24, "word": " an", "probability": 0.83349609375}, {"start": 761.24, "end": 761.54, "word": " update", "probability": 0.890625}, {"start": 761.54, "end": 761.72, "word": " to", "probability": 0.63037109375}, {"start": 761.72, "end": 761.9, "word": " whom?", "probability": 0.292724609375}, {"start": 762.44, "end": 762.8, "word": " To", "probability": 0.67138671875}, {"start": 762.8, "end": 762.86, "word": " the", "probability": 0.83544921875}, {"start": 762.86, "end": 763.12, "word": " chat", "probability": 0.92041015625}, {"start": 763.12, "end": 763.38, "word": " area,", "probability": 0.896484375}, {"start": 763.44, "end": 763.52, "word": " to", "probability": 0.89697265625}, {"start": 763.52, "end": 763.58, "word": " the", "probability": 0.87890625}, {"start": 763.58, "end": 763.82, "word": " UI", "probability": 0.9462890625}, {"start": 763.82, "end": 764.84, "word": " Okay,", "probability": 0.2115478515625}, {"start": 765.08, "end": 765.48, "word": " what", "probability": 0.8544921875}, {"start": 765.48, "end": 765.52, "word": " is", "probability": 0.6708984375}, {"start": 765.52, "end": 765.6, "word": " the", "probability": 0.78759765625}, {"start": 765.6, "end": 765.82, "word": " problem", "probability": 0.8505859375}, {"start": 765.82, "end": 765.96, "word": " with", "probability": 0.63037109375}, {"start": 765.96, "end": 766.04, "word": " this", "probability": 0.91357421875}, {"start": 766.04, "end": 766.44, "word": " design?", "probability": 0.9716796875}, {"start": 767.3, "end": 767.56, "word": " Who", "probability": 0.64306640625}, {"start": 767.56, "end": 767.68, "word": " can", "probability": 0.498046875}, {"start": 767.68, "end": 767.78, "word": " tell", "probability": 0.7138671875}, {"start": 767.78, "end": 767.9, "word": " me", "probability": 0.7958984375}, {"start": 767.9, "end": 767.98, "word": " what", "probability": 0.71337890625}, {"start": 767.98, "end": 768.02, "word": " is", "probability": 0.705078125}, {"start": 768.02, "end": 768.08, "word": " the", "probability": 0.89501953125}, {"start": 768.08, "end": 768.36, "word": " problem", "probability": 0.859375}, {"start": 768.36, "end": 768.72, "word": " with", "probability": 0.381591796875}, {"start": 768.72, "end": 768.84, "word": " this", "probability": 0.5810546875}, {"start": 768.84, "end": 769.18, "word": " design?", "probability": 0.96728515625}, {"start": 771.16, "end": 771.58, "word": " Hellgate,", "probability": 0.763671875}, {"start": 771.66, "end": 771.74, "word": " if", "probability": 0.81396484375}, {"start": 771.74, "end": 771.86, "word": " it", "probability": 0.4169921875}, {"start": 771.86, "end": 771.92, "word": " wants", "probability": 0.64892578125}, {"start": 771.92, "end": 772.0, "word": " a", "probability": 0.60595703125}, {"start": 772.0, "end": 772.0, "word": " new", "probability": 0.91943359375}, {"start": 772.0, "end": 772.28, "word": " element,", "probability": 0.81103515625}, {"start": 772.58, "end": 772.68, "word": " it", "probability": 0.56591796875}, {"start": 772.68, "end": 772.68, "word": " will", "probability": 0.28466796875}, {"start": 772.68, "end": 772.92, "word": " listen", "probability": 0.50244140625}, {"start": 772.92, "end": 772.96, "word": " to", "probability": 0.353759765625}, {"start": 772.96, "end": 772.96, "word": " it", "probability": 0.75146484375}, {"start": 772.96, "end": 773.1, "word": " If", "probability": 0.38037109375}, {"start": 773.1, "end": 773.28, "word": " it", "probability": 0.8720703125}, {"start": 773.28, "end": 773.36, "word": " wants", "probability": 0.8388671875}, {"start": 773.36, "end": 773.36, "word": " to", "probability": 0.7646484375}, {"start": 773.36, "end": 773.52, "word": " make", "probability": 0.60693359375}, {"start": 773.52, "end": 774.06, "word": " a", "probability": 0.64990234375}, {"start": 774.06, "end": 774.44, "word": " database", "probability": 0.9111328125}, {"start": 774.44, "end": 775.1, "word": " component,", "probability": 0.88134765625}, {"start": 775.68, "end": 775.82, "word": " the", "probability": 0.271484375}, {"start": 775.82, "end": 776.14, "word": " message", "probability": 0.5546875}, {"start": 776.14, "end": 776.38, "word": " will", "probability": 0.61376953125}, {"start": 776.38, "end": 776.48, "word": " be", "probability": 0.57373046875}, {"start": 776.48, "end": 776.72, "word": " stored", "probability": 0.7939453125}, {"start": 776.72, "end": 776.92, "word": " in", "probability": 0.904296875}, {"start": 776.92, "end": 777.02, "word": " the", "probability": 0.7919921875}, {"start": 777.02, "end": 777.42, "word": " database", "probability": 0.94287109375}, {"start": 777.42, "end": 778.24, "word": " Okay?", "probability": 0.29248046875}], "temperature": 1.0}, {"id": 31, "seek": 79523, "start": 779.29, "end": 795.23, "text": "What should I do? I have to change a lot of things in the messenger handler. First, I have to make a reference in it. Then, I have to go to the constructor and modify it. Then, I have to come to the loop here and set an index in the new class. Okay?", "tokens": [3748, 820, 286, 360, 30, 286, 362, 281, 1319, 257, 688, 295, 721, 294, 264, 26599, 41967, 13, 2386, 11, 286, 362, 281, 652, 257, 6408, 294, 309, 13, 1396, 11, 286, 362, 281, 352, 281, 264, 47479, 293, 16927, 309, 13, 1396, 11, 286, 362, 281, 808, 281, 264, 6367, 510, 293, 992, 364, 8186, 294, 264, 777, 1508, 13, 1033, 30], "avg_logprob": -0.5625000251457095, "compression_ratio": 1.5660377358490567, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 779.29, "end": 779.57, "word": "What", "probability": 0.341796875}, {"start": 779.57, "end": 779.75, "word": " should", "probability": 0.67529296875}, {"start": 779.75, "end": 779.89, "word": " I", "probability": 0.923828125}, {"start": 779.89, "end": 780.01, "word": " do?", "probability": 0.94384765625}, {"start": 780.15, "end": 780.19, "word": " I", "probability": 0.84423828125}, {"start": 780.19, "end": 780.31, "word": " have", "probability": 0.158203125}, {"start": 780.31, "end": 780.39, "word": " to", "probability": 0.93896484375}, {"start": 780.39, "end": 780.61, "word": " change", "probability": 0.46875}, {"start": 780.61, "end": 781.03, "word": " a", "probability": 0.380615234375}, {"start": 781.03, "end": 781.25, "word": " lot", "probability": 0.94384765625}, {"start": 781.25, "end": 781.25, "word": " of", "probability": 0.70068359375}, {"start": 781.25, "end": 781.25, "word": " things", "probability": 0.490234375}, {"start": 781.25, "end": 781.39, "word": " in", "probability": 0.8017578125}, {"start": 781.39, "end": 781.47, "word": " the", "probability": 0.3134765625}, {"start": 781.47, "end": 781.81, "word": " messenger", "probability": 0.72802734375}, {"start": 781.81, "end": 782.81, "word": " handler.", "probability": 0.74462890625}, {"start": 783.13, "end": 783.31, "word": " First,", "probability": 0.36669921875}, {"start": 783.31, "end": 783.37, "word": " I", "probability": 0.96142578125}, {"start": 783.37, "end": 783.37, "word": " have", "probability": 0.57177734375}, {"start": 783.37, "end": 783.37, "word": " to", "probability": 0.9697265625}, {"start": 783.37, "end": 783.63, "word": " make", "probability": 0.202392578125}, {"start": 783.63, "end": 784.25, "word": " a", "probability": 0.75537109375}, {"start": 784.25, "end": 785.33, "word": " reference", "probability": 0.92236328125}, {"start": 785.33, "end": 785.89, "word": " in", "probability": 0.316162109375}, {"start": 785.89, "end": 785.89, "word": " it.", "probability": 0.7060546875}, {"start": 785.91, "end": 786.39, "word": " Then,", "probability": 0.28759765625}, {"start": 787.01, "end": 787.01, "word": " I", "probability": 0.78173828125}, {"start": 787.01, "end": 787.15, "word": " have", "probability": 0.7900390625}, {"start": 787.15, "end": 787.31, "word": " to", "probability": 0.96484375}, {"start": 787.31, "end": 787.31, "word": " go", "probability": 0.146240234375}, {"start": 787.31, "end": 787.65, "word": " to", "probability": 0.67529296875}, {"start": 787.65, "end": 787.75, "word": " the", "probability": 0.8125}, {"start": 787.75, "end": 788.17, "word": " constructor", "probability": 0.90625}, {"start": 788.17, "end": 788.29, "word": " and", "probability": 0.78369140625}, {"start": 788.29, "end": 788.53, "word": " modify", "probability": 0.430419921875}, {"start": 788.53, "end": 788.89, "word": " it.", "probability": 0.9169921875}, {"start": 789.35, "end": 789.63, "word": " Then,", "probability": 0.42431640625}, {"start": 789.63, "end": 789.63, "word": " I", "probability": 0.939453125}, {"start": 789.63, "end": 789.79, "word": " have", "probability": 0.85205078125}, {"start": 789.79, "end": 789.89, "word": " to", "probability": 0.9697265625}, {"start": 789.89, "end": 790.11, "word": " come", "probability": 0.30859375}, {"start": 790.11, "end": 790.31, "word": " to", "probability": 0.64990234375}, {"start": 790.31, "end": 790.51, "word": " the", "probability": 0.78857421875}, {"start": 790.51, "end": 790.89, "word": " loop", "probability": 0.95068359375}, {"start": 790.89, "end": 791.23, "word": " here", "probability": 0.6015625}, {"start": 791.23, "end": 792.17, "word": " and", "probability": 0.78466796875}, {"start": 792.17, "end": 792.45, "word": " set", "probability": 0.102294921875}, {"start": 792.45, "end": 792.57, "word": " an", "probability": 0.367919921875}, {"start": 792.57, "end": 792.83, "word": " index", "probability": 0.20849609375}, {"start": 792.83, "end": 793.59, "word": " in", "probability": 0.78173828125}, {"start": 793.59, "end": 793.71, "word": " the", "probability": 0.86669921875}, {"start": 793.71, "end": 793.73, "word": " new", "probability": 0.8408203125}, {"start": 793.73, "end": 794.01, "word": " class.", "probability": 0.9609375}, {"start": 794.91, "end": 795.23, "word": " Okay?", "probability": 0.200927734375}], "temperature": 1.0}, {"id": 32, "seek": 81730, "start": 796.3, "end": 817.3, "text": "So this is a problem because every time I want to add a new component that listens to the network message handler, I have to make a lot of adjustments and make a reference and so on And another thing, if I want to modify one of these in the class itself, I will also have to modify the network message handler I got the idea that we will apply the observer pattern so that the network message handler sends to any item", "tokens": [6455, 341, 307, 257, 1154, 570, 633, 565, 286, 528, 281, 909, 257, 777, 6542, 300, 35959, 281, 264, 3209, 3636, 41967, 11, 286, 362, 281, 652, 257, 688, 295, 18624, 293, 652, 257, 6408, 293, 370, 322, 400, 1071, 551, 11, 498, 286, 528, 281, 16927, 472, 295, 613, 294, 264, 1508, 2564, 11, 286, 486, 611, 362, 281, 16927, 264, 3209, 3636, 41967, 286, 658, 264, 1558, 300, 321, 486, 3079, 264, 27878, 5102, 370, 300, 264, 3209, 3636, 41967, 14790, 281, 604, 3174], "avg_logprob": -0.4791666742028861, "compression_ratio": 1.841409691629956, "no_speech_prob": 1.9073486328125e-06, "words": [{"start": 796.3, "end": 796.62, "word": "So", "probability": 0.11566162109375}, {"start": 796.62, "end": 796.92, "word": " this", "probability": 0.404541015625}, {"start": 796.92, "end": 797.0, "word": " is", "probability": 0.85302734375}, {"start": 797.0, "end": 797.28, "word": " a", "probability": 0.78955078125}, {"start": 797.28, "end": 797.28, "word": " problem", "probability": 0.81201171875}, {"start": 797.28, "end": 797.48, "word": " because", "probability": 0.275146484375}, {"start": 797.48, "end": 797.78, "word": " every", "probability": 0.26953125}, {"start": 797.78, "end": 797.86, "word": " time", "probability": 0.80126953125}, {"start": 797.86, "end": 797.94, "word": " I", "probability": 0.9267578125}, {"start": 797.94, "end": 798.14, "word": " want", "probability": 0.459228515625}, {"start": 798.14, "end": 798.14, "word": " to", "probability": 0.9619140625}, {"start": 798.14, "end": 798.34, "word": " add", "probability": 0.90576171875}, {"start": 798.34, "end": 798.48, "word": " a", "probability": 0.83203125}, {"start": 798.48, "end": 799.3, "word": " new", "probability": 0.87841796875}, {"start": 799.3, "end": 799.32, "word": " component", "probability": 0.8349609375}, {"start": 799.32, "end": 799.46, "word": " that", "probability": 0.471435546875}, {"start": 799.46, "end": 799.86, "word": " listens", "probability": 0.5068359375}, {"start": 799.86, "end": 800.82, "word": " to", "probability": 0.9228515625}, {"start": 800.82, "end": 800.9, "word": " the", "probability": 0.57568359375}, {"start": 800.9, "end": 801.12, "word": " network", "probability": 0.64697265625}, {"start": 801.12, "end": 801.46, "word": " message", "probability": 0.6416015625}, {"start": 801.46, "end": 801.72, "word": " handler,", "probability": 0.89111328125}, {"start": 801.84, "end": 801.9, "word": " I", "probability": 0.93212890625}, {"start": 801.9, "end": 802.08, "word": " have", "probability": 0.442138671875}, {"start": 802.08, "end": 802.08, "word": " to", "probability": 0.9638671875}, {"start": 802.08, "end": 802.36, "word": " make", "probability": 0.2083740234375}, {"start": 802.36, "end": 802.58, "word": " a", "probability": 0.31005859375}, {"start": 802.58, "end": 802.58, "word": " lot", "probability": 0.9130859375}, {"start": 802.58, "end": 802.62, "word": " of", "probability": 0.966796875}, {"start": 802.62, "end": 802.9, "word": " adjustments", "probability": 0.26708984375}, {"start": 802.9, "end": 803.4, "word": " and", "probability": 0.383544921875}, {"start": 803.4, "end": 803.52, "word": " make", "probability": 0.1817626953125}, {"start": 803.52, "end": 803.62, "word": " a", "probability": 0.269287109375}, {"start": 803.62, "end": 803.98, "word": " reference", "probability": 0.82373046875}, {"start": 803.98, "end": 804.16, "word": " and", "probability": 0.41943359375}, {"start": 804.16, "end": 804.38, "word": " so", "probability": 0.46923828125}, {"start": 804.38, "end": 804.84, "word": " on", "probability": 0.8974609375}, {"start": 804.84, "end": 805.04, "word": " And", "probability": 0.2548828125}, {"start": 805.04, "end": 805.28, "word": " another", "probability": 0.25927734375}, {"start": 805.28, "end": 805.5, "word": " thing,", "probability": 0.83154296875}, {"start": 805.74, "end": 805.82, "word": " if", "probability": 0.888671875}, {"start": 805.82, "end": 806.0, "word": " I", "probability": 0.9755859375}, {"start": 806.0, "end": 806.06, "word": " want", "probability": 0.84912109375}, {"start": 806.06, "end": 806.12, "word": " to", "probability": 0.96923828125}, {"start": 806.12, "end": 806.34, "word": " modify", "probability": 0.1822509765625}, {"start": 806.34, "end": 806.74, "word": " one", "probability": 0.75146484375}, {"start": 806.74, "end": 806.96, "word": " of", "probability": 0.93701171875}, {"start": 806.96, "end": 807.3, "word": " these", "probability": 0.62646484375}, {"start": 807.3, "end": 807.96, "word": " in", "probability": 0.53271484375}, {"start": 807.96, "end": 808.06, "word": " the", "probability": 0.41748046875}, {"start": 808.06, "end": 808.36, "word": " class", "probability": 0.91796875}, {"start": 808.36, "end": 808.64, "word": " itself,", "probability": 0.248291015625}, {"start": 808.7, "end": 808.72, "word": " I", "probability": 0.84765625}, {"start": 808.72, "end": 808.86, "word": " will", "probability": 0.440673828125}, {"start": 808.86, "end": 809.08, "word": " also", "probability": 0.5185546875}, {"start": 809.08, "end": 809.08, "word": " have", "probability": 0.744140625}, {"start": 809.08, "end": 809.44, "word": " to", "probability": 0.96728515625}, {"start": 809.44, "end": 809.72, "word": " modify", "probability": 0.80029296875}, {"start": 809.72, "end": 809.92, "word": " the", "probability": 0.64794921875}, {"start": 809.92, "end": 810.16, "word": " network", "probability": 0.91357421875}, {"start": 810.16, "end": 810.62, "word": " message", "probability": 0.87646484375}, {"start": 810.62, "end": 811.36, "word": " handler", "probability": 0.88916015625}, {"start": 811.36, "end": 812.02, "word": " I", "probability": 0.477783203125}, {"start": 812.02, "end": 812.16, "word": " got", "probability": 0.66845703125}, {"start": 812.16, "end": 812.28, "word": " the", "probability": 0.8115234375}, {"start": 812.28, "end": 812.48, "word": " idea", "probability": 0.89697265625}, {"start": 812.48, "end": 812.62, "word": " that", "probability": 0.74267578125}, {"start": 812.62, "end": 812.74, "word": " we", "probability": 0.91357421875}, {"start": 812.74, "end": 812.9, "word": " will", "probability": 0.346435546875}, {"start": 812.9, "end": 813.18, "word": " apply", "probability": 0.82470703125}, {"start": 813.18, "end": 813.32, "word": " the", "probability": 0.826171875}, {"start": 813.32, "end": 813.68, "word": " observer", "probability": 0.76904296875}, {"start": 813.68, "end": 814.12, "word": " pattern", "probability": 0.90576171875}, {"start": 814.12, "end": 814.4, "word": " so", "probability": 0.52734375}, {"start": 814.4, "end": 814.84, "word": " that", "probability": 0.92919921875}, {"start": 814.84, "end": 815.0, "word": " the", "probability": 0.88525390625}, {"start": 815.0, "end": 815.24, "word": " network", "probability": 0.9404296875}, {"start": 815.24, "end": 815.6, "word": " message", "probability": 0.86181640625}, {"start": 815.6, "end": 815.94, "word": " handler", "probability": 0.9111328125}, {"start": 815.94, "end": 816.28, "word": " sends", "probability": 0.485107421875}, {"start": 816.28, "end": 816.5, "word": " to", "probability": 0.6650390625}, {"start": 816.5, "end": 816.74, "word": " any", "probability": 0.908203125}, {"start": 816.74, "end": 817.3, "word": " item", "probability": 0.9599609375}], "temperature": 1.0}, {"id": 33, "seek": 83616, "start": 817.9, "end": 836.16, "text": "To any component without having to modify the message handler network at all Even if you want to add new elements that you listen to, you won't modify them, you don't want to modify them at all The idea, as I said, is that instead of dealing with UI, logger and whatever", "tokens": [13342, 604, 6542, 1553, 1419, 281, 16927, 264, 3636, 41967, 3209, 412, 439, 2754, 498, 291, 528, 281, 909, 777, 4959, 300, 291, 2140, 281, 11, 291, 1582, 380, 16927, 552, 11, 291, 500, 380, 528, 281, 16927, 552, 412, 439, 440, 1558, 11, 382, 286, 848, 11, 307, 300, 2602, 295, 6260, 365, 15682, 11, 3565, 1321, 293, 2035], "avg_logprob": -0.5089651365749172, "compression_ratio": 1.588235294117647, "no_speech_prob": 4.5359134674072266e-05, "words": [{"start": 817.9, "end": 818.14, "word": "To", "probability": 0.0736083984375}, {"start": 818.14, "end": 818.3, "word": " any", "probability": 0.81884765625}, {"start": 818.3, "end": 818.92, "word": " component", "probability": 0.83935546875}, {"start": 818.92, "end": 819.2, "word": " without", "probability": 0.74658203125}, {"start": 819.2, "end": 819.82, "word": " having", "probability": 0.284912109375}, {"start": 819.82, "end": 819.82, "word": " to", "probability": 0.95556640625}, {"start": 819.82, "end": 820.24, "word": " modify", "probability": 0.2998046875}, {"start": 820.24, "end": 821.04, "word": " the", "probability": 0.3701171875}, {"start": 821.04, "end": 821.58, "word": " message", "probability": 0.369873046875}, {"start": 821.58, "end": 821.88, "word": " handler", "probability": 0.91748046875}, {"start": 821.88, "end": 821.9, "word": " network", "probability": 0.5703125}, {"start": 821.9, "end": 822.04, "word": " at", "probability": 0.623046875}, {"start": 822.04, "end": 822.9, "word": " all", "probability": 0.951171875}, {"start": 822.9, "end": 823.68, "word": " Even", "probability": 0.4130859375}, {"start": 823.68, "end": 823.9, "word": " if", "probability": 0.88720703125}, {"start": 823.9, "end": 824.06, "word": " you", "probability": 0.77685546875}, {"start": 824.06, "end": 824.14, "word": " want", "probability": 0.58544921875}, {"start": 824.14, "end": 824.14, "word": " to", "probability": 0.96435546875}, {"start": 824.14, "end": 824.28, "word": " add", "probability": 0.9375}, {"start": 824.28, "end": 825.22, "word": " new", "probability": 0.81103515625}, {"start": 825.22, "end": 825.22, "word": " elements", "probability": 0.8193359375}, {"start": 825.22, "end": 826.28, "word": " that", "probability": 0.36083984375}, {"start": 826.28, "end": 826.4, "word": " you", "probability": 0.470458984375}, {"start": 826.4, "end": 826.7, "word": " listen", "probability": 0.2347412109375}, {"start": 826.7, "end": 826.92, "word": " to,", "probability": 0.94873046875}, {"start": 827.18, "end": 827.78, "word": " you", "probability": 0.450439453125}, {"start": 827.78, "end": 827.96, "word": " won't", "probability": 0.625}, {"start": 827.96, "end": 828.46, "word": " modify", "probability": 0.837890625}, {"start": 828.46, "end": 828.86, "word": " them,", "probability": 0.65771484375}, {"start": 829.3, "end": 829.42, "word": " you", "probability": 0.53125}, {"start": 829.42, "end": 829.5, "word": " don't", "probability": 0.7744140625}, {"start": 829.5, "end": 829.66, "word": " want", "probability": 0.348876953125}, {"start": 829.66, "end": 829.74, "word": " to", "probability": 0.94775390625}, {"start": 829.74, "end": 830.0, "word": " modify", "probability": 0.927734375}, {"start": 830.0, "end": 830.18, "word": " them", "probability": 0.85693359375}, {"start": 830.18, "end": 830.24, "word": " at", "probability": 0.5986328125}, {"start": 830.24, "end": 830.54, "word": " all", "probability": 0.92919921875}, {"start": 830.54, "end": 831.36, "word": " The", "probability": 0.642578125}, {"start": 831.36, "end": 831.6, "word": " idea,", "probability": 0.8369140625}, {"start": 831.72, "end": 831.76, "word": " as", "probability": 0.794921875}, {"start": 831.76, "end": 831.9, "word": " I", "probability": 0.9404296875}, {"start": 831.9, "end": 832.28, "word": " said,", "probability": 0.75}, {"start": 832.36, "end": 832.46, "word": " is", "probability": 0.55615234375}, {"start": 832.46, "end": 832.54, "word": " that", "probability": 0.79931640625}, {"start": 832.54, "end": 832.98, "word": " instead", "probability": 0.22607421875}, {"start": 832.98, "end": 833.74, "word": " of", "probability": 0.96923828125}, {"start": 833.74, "end": 834.28, "word": " dealing", "probability": 0.72021484375}, {"start": 834.28, "end": 834.5, "word": " with", "probability": 0.88623046875}, {"start": 834.5, "end": 834.94, "word": " UI,", "probability": 0.6708984375}, {"start": 835.2, "end": 835.6, "word": " logger", "probability": 0.6236572265625}, {"start": 835.6, "end": 835.72, "word": " and", "probability": 0.459228515625}, {"start": 835.72, "end": 836.16, "word": " whatever", "probability": 0.9248046875}], "temperature": 1.0}, {"id": 34, "seek": 86345, "start": 836.83, "end": 863.45, "text": "We want to make them all the same type I'm going to bring the user to the network, for example, to come and say, uncle, I don't have a request, are you a UR or a logger or I don't know what, I want to see you as a certain type of interface, okay? And we come here in the same class, above or below, wherever you want, okay? And you introduce a type of interface inside, okay? You say public interface, what do we call it, for example, message listener", "tokens": [4360, 528, 281, 652, 552, 439, 264, 912, 2010, 286, 478, 516, 281, 1565, 264, 4195, 281, 264, 3209, 11, 337, 1365, 11, 281, 808, 293, 584, 11, 9153, 11, 286, 500, 380, 362, 257, 5308, 11, 366, 291, 257, 624, 49, 420, 257, 3565, 1321, 420, 286, 500, 380, 458, 437, 11, 286, 528, 281, 536, 291, 382, 257, 1629, 2010, 295, 9226, 11, 1392, 30, 400, 321, 808, 510, 294, 264, 912, 1508, 11, 3673, 420, 2507, 11, 8660, 291, 528, 11, 1392, 30, 400, 291, 5366, 257, 2010, 295, 9226, 1854, 11, 1392, 30, 509, 584, 1908, 9226, 11, 437, 360, 321, 818, 309, 11, 337, 1365, 11, 3636, 31569], "avg_logprob": -0.4879386006740102, "compression_ratio": 1.76171875, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 836.83, "end": 836.99, "word": "We", "probability": 0.36962890625}, {"start": 836.99, "end": 837.13, "word": " want", "probability": 0.2027587890625}, {"start": 837.13, "end": 837.19, "word": " to", "probability": 0.86083984375}, {"start": 837.19, "end": 837.37, "word": " make", "probability": 0.416259765625}, {"start": 837.37, "end": 837.55, "word": " them", "probability": 0.630859375}, {"start": 837.55, "end": 837.73, "word": " all", "probability": 0.83056640625}, {"start": 837.73, "end": 837.89, "word": " the", "probability": 0.340087890625}, {"start": 837.89, "end": 838.49, "word": " same", "probability": 0.89306640625}, {"start": 838.49, "end": 838.77, "word": " type", "probability": 0.634765625}, {"start": 838.77, "end": 839.05, "word": " I'm", "probability": 0.20782470703125}, {"start": 839.05, "end": 839.05, "word": " going", "probability": 0.79931640625}, {"start": 839.05, "end": 839.09, "word": " to", "probability": 0.96728515625}, {"start": 839.09, "end": 839.15, "word": " bring", "probability": 0.25}, {"start": 839.15, "end": 839.29, "word": " the", "probability": 0.1116943359375}, {"start": 839.29, "end": 839.43, "word": " user", "probability": 0.28515625}, {"start": 839.43, "end": 839.57, "word": " to", "probability": 0.42822265625}, {"start": 839.57, "end": 839.57, "word": " the", "probability": 0.53173828125}, {"start": 839.57, "end": 839.81, "word": " network,", "probability": 0.63671875}, {"start": 839.89, "end": 839.99, "word": " for", "probability": 0.6708984375}, {"start": 839.99, "end": 839.99, "word": " example,", "probability": 0.93603515625}, {"start": 840.07, "end": 840.17, "word": " to", "probability": 0.12493896484375}, {"start": 840.17, "end": 840.43, "word": " come", "probability": 0.236083984375}, {"start": 840.43, "end": 840.53, "word": " and", "probability": 0.4208984375}, {"start": 840.53, "end": 840.83, "word": " say,", "probability": 0.87548828125}, {"start": 841.01, "end": 841.47, "word": " uncle,", "probability": 0.195068359375}, {"start": 841.49, "end": 841.65, "word": " I", "probability": 0.9482421875}, {"start": 841.65, "end": 841.71, "word": " don't", "probability": 0.78857421875}, {"start": 841.71, "end": 841.89, "word": " have", "probability": 0.81640625}, {"start": 841.89, "end": 841.97, "word": " a", "probability": 0.482421875}, {"start": 841.97, "end": 842.13, "word": " request,", "probability": 0.1461181640625}, {"start": 842.23, "end": 842.37, "word": " are", "probability": 0.62353515625}, {"start": 842.37, "end": 842.41, "word": " you", "probability": 0.96484375}, {"start": 842.41, "end": 842.49, "word": " a", "probability": 0.640625}, {"start": 842.49, "end": 842.85, "word": " UR", "probability": 0.69970703125}, {"start": 842.85, "end": 843.09, "word": " or", "probability": 0.7548828125}, {"start": 843.09, "end": 843.21, "word": " a", "probability": 0.70947265625}, {"start": 843.21, "end": 843.43, "word": " logger", "probability": 0.66357421875}, {"start": 843.43, "end": 843.59, "word": " or", "probability": 0.82373046875}, {"start": 843.59, "end": 843.75, "word": " I", "probability": 0.267578125}, {"start": 843.75, "end": 843.77, "word": " don't", "probability": 0.951171875}, {"start": 843.77, "end": 844.03, "word": " know", "probability": 0.8974609375}, {"start": 844.03, "end": 844.35, "word": " what,", "probability": 0.92919921875}, {"start": 844.63, "end": 844.91, "word": " I", "probability": 0.94970703125}, {"start": 844.91, "end": 845.09, "word": " want", "probability": 0.845703125}, {"start": 845.09, "end": 845.23, "word": " to", "probability": 0.96435546875}, {"start": 845.23, "end": 845.35, "word": " see", "probability": 0.91064453125}, {"start": 845.35, "end": 845.59, "word": " you", "probability": 0.953125}, {"start": 845.59, "end": 845.91, "word": " as", "probability": 0.95751953125}, {"start": 845.91, "end": 846.57, "word": " a", "probability": 0.94677734375}, {"start": 846.57, "end": 846.57, "word": " certain", "probability": 0.412353515625}, {"start": 846.57, "end": 846.69, "word": " type", "probability": 0.57421875}, {"start": 846.69, "end": 846.77, "word": " of", "probability": 0.9560546875}, {"start": 846.77, "end": 847.25, "word": " interface,", "probability": 0.89892578125}, {"start": 848.19, "end": 848.45, "word": " okay?", "probability": 0.583984375}, {"start": 849.29, "end": 849.61, "word": " And", "probability": 0.7109375}, {"start": 849.61, "end": 849.83, "word": " we", "probability": 0.755859375}, {"start": 849.83, "end": 849.91, "word": " come", "probability": 0.8330078125}, {"start": 849.91, "end": 850.13, "word": " here", "probability": 0.83447265625}, {"start": 850.13, "end": 850.25, "word": " in", "probability": 0.88818359375}, {"start": 850.25, "end": 850.41, "word": " the", "probability": 0.93017578125}, {"start": 850.41, "end": 850.45, "word": " same", "probability": 0.923828125}, {"start": 850.45, "end": 850.95, "word": " class,", "probability": 0.96923828125}, {"start": 851.07, "end": 851.21, "word": " above", "probability": 0.65380859375}, {"start": 851.21, "end": 851.45, "word": " or", "probability": 0.9541015625}, {"start": 851.45, "end": 851.77, "word": " below,", "probability": 0.85595703125}, {"start": 851.87, "end": 851.99, "word": " wherever", "probability": 0.89013671875}, {"start": 851.99, "end": 852.13, "word": " you", "probability": 0.96630859375}, {"start": 852.13, "end": 852.37, "word": " want,", "probability": 0.8447265625}, {"start": 853.19, "end": 853.47, "word": " okay?", "probability": 0.6748046875}, {"start": 853.57, "end": 853.79, "word": " And", "probability": 0.81103515625}, {"start": 853.79, "end": 853.93, "word": " you", "probability": 0.75}, {"start": 853.93, "end": 854.35, "word": " introduce", "probability": 0.2193603515625}, {"start": 854.35, "end": 855.29, "word": " a", "probability": 0.38720703125}, {"start": 855.29, "end": 855.71, "word": " type", "probability": 0.7216796875}, {"start": 855.71, "end": 855.83, "word": " of", "probability": 0.96240234375}, {"start": 855.83, "end": 856.45, "word": " interface", "probability": 0.916015625}, {"start": 856.45, "end": 856.45, "word": " inside,", "probability": 0.7451171875}, {"start": 857.21, "end": 857.45, "word": " okay?", "probability": 0.84619140625}, {"start": 857.91, "end": 858.07, "word": " You", "probability": 0.8681640625}, {"start": 858.07, "end": 858.21, "word": " say", "probability": 0.445556640625}, {"start": 858.21, "end": 858.65, "word": " public", "probability": 0.66650390625}, {"start": 858.65, "end": 860.21, "word": " interface,", "probability": 0.87060546875}, {"start": 860.65, "end": 861.49, "word": " what", "probability": 0.859375}, {"start": 861.49, "end": 861.59, "word": " do", "probability": 0.56396484375}, {"start": 861.59, "end": 861.67, "word": " we", "probability": 0.8310546875}, {"start": 861.67, "end": 861.91, "word": " call", "probability": 0.76513671875}, {"start": 861.91, "end": 862.05, "word": " it,", "probability": 0.484375}, {"start": 862.11, "end": 862.19, "word": " for", "probability": 0.740234375}, {"start": 862.19, "end": 862.29, "word": " example,", "probability": 0.96875}, {"start": 862.37, "end": 862.81, "word": " message", "probability": 0.80859375}, {"start": 862.81, "end": 863.45, "word": " listener", "probability": 0.49853515625}], "temperature": 1.0}, {"id": 35, "seek": 88666, "start": 867.56, "end": 886.66, "text": " It has a method called public void update message This is for anyone who wants to listen to the network message handler must implement for this interface and must implement for the method update through which the message will be received", "tokens": [467, 575, 257, 3170, 1219, 1908, 22009, 5623, 3636, 639, 307, 337, 2878, 567, 2738, 281, 2140, 281, 264, 3209, 3636, 41967, 1633, 4445, 337, 341, 9226, 293, 1633, 4445, 337, 264, 3170, 5623, 807, 597, 264, 3636, 486, 312, 4613], "avg_logprob": -0.5398065419424147, "compression_ratio": 1.6081081081081081, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 867.5600000000001, "end": 868.24, "word": " It", "probability": 0.1251220703125}, {"start": 868.24, "end": 868.58, "word": " has", "probability": 0.1448974609375}, {"start": 868.58, "end": 868.92, "word": " a", "probability": 0.7353515625}, {"start": 868.92, "end": 869.26, "word": " method", "probability": 0.8056640625}, {"start": 869.26, "end": 869.56, "word": " called", "probability": 0.349853515625}, {"start": 869.56, "end": 869.82, "word": " public", "probability": 0.58984375}, {"start": 869.82, "end": 870.46, "word": " void", "probability": 0.67626953125}, {"start": 870.46, "end": 872.4, "word": " update", "probability": 0.82470703125}, {"start": 872.4, "end": 875.52, "word": " message", "probability": 0.8076171875}, {"start": 875.52, "end": 876.28, "word": " This", "probability": 0.29150390625}, {"start": 876.28, "end": 876.32, "word": " is", "probability": 0.56640625}, {"start": 876.32, "end": 876.42, "word": " for", "probability": 0.259521484375}, {"start": 876.42, "end": 877.12, "word": " anyone", "probability": 0.449951171875}, {"start": 877.12, "end": 877.56, "word": " who", "probability": 0.734375}, {"start": 877.56, "end": 877.72, "word": " wants", "probability": 0.68603515625}, {"start": 877.72, "end": 877.78, "word": " to", "probability": 0.9638671875}, {"start": 877.78, "end": 878.22, "word": " listen", "probability": 0.58935546875}, {"start": 878.22, "end": 880.12, "word": " to", "probability": 0.8828125}, {"start": 880.12, "end": 880.18, "word": " the", "probability": 0.4384765625}, {"start": 880.18, "end": 880.48, "word": " network", "probability": 0.6484375}, {"start": 880.48, "end": 880.8, "word": " message", "probability": 0.7392578125}, {"start": 880.8, "end": 881.2, "word": " handler", "probability": 0.91064453125}, {"start": 881.2, "end": 881.54, "word": " must", "probability": 0.166259765625}, {"start": 881.54, "end": 882.16, "word": " implement", "probability": 0.685546875}, {"start": 882.16, "end": 882.44, "word": " for", "probability": 0.263427734375}, {"start": 882.44, "end": 882.5, "word": " this", "probability": 0.83544921875}, {"start": 882.5, "end": 883.06, "word": " interface", "probability": 0.87451171875}, {"start": 883.06, "end": 883.54, "word": " and", "probability": 0.69189453125}, {"start": 883.54, "end": 883.8, "word": " must", "probability": 0.6171875}, {"start": 883.8, "end": 884.44, "word": " implement", "probability": 0.78955078125}, {"start": 884.44, "end": 884.68, "word": " for", "probability": 0.50146484375}, {"start": 884.68, "end": 884.72, "word": " the", "probability": 0.654296875}, {"start": 884.72, "end": 884.92, "word": " method", "probability": 0.69970703125}, {"start": 884.92, "end": 885.26, "word": " update", "probability": 0.88330078125}, {"start": 885.26, "end": 885.46, "word": " through", "probability": 0.3798828125}, {"start": 885.46, "end": 885.94, "word": " which", "probability": 0.92333984375}, {"start": 885.94, "end": 886.2, "word": " the", "probability": 0.68310546875}, {"start": 886.2, "end": 886.2, "word": " message", "probability": 0.89599609375}, {"start": 886.2, "end": 886.2, "word": " will", "probability": 0.82666015625}, {"start": 886.2, "end": 886.26, "word": " be", "probability": 0.483154296875}, {"start": 886.26, "end": 886.66, "word": " received", "probability": 0.81298828125}], "temperature": 1.0}, {"id": 36, "seek": 90730, "start": 890.86, "end": 907.3, "text": "Instead of having a reference for the UI and a reference for the language and a reference for I don't know what, I replaced them all with a list, one of a kind, message, listeners", "tokens": [28411, 2056, 295, 1419, 257, 6408, 337, 264, 15682, 293, 257, 6408, 337, 264, 2856, 293, 257, 6408, 337, 286, 500, 380, 458, 437, 11, 286, 10772, 552, 439, 365, 257, 1329, 11, 472, 295, 257, 733, 11, 3636, 11, 23274], "avg_logprob": -0.7172619189534869, "compression_ratio": 1.543103448275862, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 890.86, "end": 891.38, "word": "Instead", "probability": 0.507415771484375}, {"start": 891.38, "end": 891.9, "word": " of", "probability": 0.953125}, {"start": 891.9, "end": 892.64, "word": " having", "probability": 0.385009765625}, {"start": 892.64, "end": 892.86, "word": " a", "probability": 0.369140625}, {"start": 892.86, "end": 893.18, "word": " reference", "probability": 0.5654296875}, {"start": 893.18, "end": 893.38, "word": " for", "probability": 0.62939453125}, {"start": 893.38, "end": 893.48, "word": " the", "probability": 0.34619140625}, {"start": 893.48, "end": 893.8, "word": " UI", "probability": 0.69384765625}, {"start": 893.8, "end": 894.04, "word": " and", "probability": 0.263427734375}, {"start": 894.04, "end": 894.08, "word": " a", "probability": 0.2998046875}, {"start": 894.08, "end": 894.34, "word": " reference", "probability": 0.73046875}, {"start": 894.34, "end": 894.52, "word": " for", "probability": 0.89892578125}, {"start": 894.52, "end": 894.6, "word": " the", "probability": 0.375}, {"start": 894.6, "end": 894.8, "word": " language", "probability": 0.3583984375}, {"start": 894.8, "end": 894.92, "word": " and", "probability": 0.66796875}, {"start": 894.92, "end": 895.02, "word": " a", "probability": 0.6845703125}, {"start": 895.02, "end": 895.26, "word": " reference", "probability": 0.9013671875}, {"start": 895.26, "end": 895.42, "word": " for", "probability": 0.876953125}, {"start": 895.42, "end": 895.56, "word": " I", "probability": 0.238037109375}, {"start": 895.56, "end": 895.58, "word": " don't", "probability": 0.921875}, {"start": 895.58, "end": 895.8, "word": " know", "probability": 0.88916015625}, {"start": 895.8, "end": 896.22, "word": " what,", "probability": 0.9287109375}, {"start": 896.92, "end": 897.18, "word": " I", "probability": 0.80029296875}, {"start": 897.18, "end": 897.44, "word": " replaced", "probability": 0.12255859375}, {"start": 897.44, "end": 898.2, "word": " them", "probability": 0.337158203125}, {"start": 898.2, "end": 898.62, "word": " all", "probability": 0.63232421875}, {"start": 898.62, "end": 898.86, "word": " with", "probability": 0.8212890625}, {"start": 898.86, "end": 899.32, "word": " a", "probability": 0.6875}, {"start": 899.32, "end": 899.32, "word": " list,", "probability": 0.5107421875}, {"start": 900.26, "end": 900.7, "word": " one", "probability": 0.64111328125}, {"start": 900.7, "end": 900.98, "word": " of", "probability": 0.6142578125}, {"start": 900.98, "end": 901.36, "word": " a", "probability": 0.149169921875}, {"start": 901.36, "end": 901.36, "word": " kind,", "probability": 0.48828125}, {"start": 901.44, "end": 901.94, "word": " message,", "probability": 0.658203125}, {"start": 903.3, "end": 907.3, "word": " listeners", "probability": 0.57470703125}], "temperature": 1.0}, {"id": 37, "seek": 94740, "start": 918.56, "end": 947.4, "text": " Ok, this list, how do we add it? You have to make methods, ok? Of course, I forgot, but we have to adjust the thing, the constructor now Ok, there is no need to send it UILogger Ok, we made this list, but how do we add new listeners? We have to make methods public void named addMessageListener takes message", "tokens": [3477, 11, 341, 1329, 11, 577, 360, 321, 909, 309, 30, 509, 362, 281, 652, 7150, 11, 3133, 30, 2720, 1164, 11, 286, 5298, 11, 457, 321, 362, 281, 4369, 264, 551, 11, 264, 47479, 586, 3477, 11, 456, 307, 572, 643, 281, 2845, 309, 624, 4620, 664, 1321, 3477, 11, 321, 1027, 341, 1329, 11, 457, 577, 360, 321, 909, 777, 23274, 30, 492, 362, 281, 652, 7150, 1908, 22009, 4926, 909, 44, 442, 609, 35819, 260, 2516, 3636], "avg_logprob": -0.5381944444444444, "compression_ratio": 1.6349206349206349, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 918.56, "end": 918.9, "word": " Ok,", "probability": 0.1934814453125}, {"start": 918.96, "end": 919.06, "word": " this", "probability": 0.260986328125}, {"start": 919.06, "end": 919.36, "word": " list,", "probability": 0.80908203125}, {"start": 919.98, "end": 920.18, "word": " how", "probability": 0.38720703125}, {"start": 920.18, "end": 920.28, "word": " do", "probability": 0.333251953125}, {"start": 920.28, "end": 920.36, "word": " we", "probability": 0.876953125}, {"start": 920.36, "end": 920.62, "word": " add", "probability": 0.87255859375}, {"start": 920.62, "end": 920.94, "word": " it?", "probability": 0.564453125}, {"start": 921.08, "end": 921.28, "word": " You", "probability": 0.58544921875}, {"start": 921.28, "end": 921.34, "word": " have", "probability": 0.328857421875}, {"start": 921.34, "end": 921.46, "word": " to", "probability": 0.96826171875}, {"start": 921.46, "end": 921.68, "word": " make", "probability": 0.3876953125}, {"start": 921.68, "end": 922.12, "word": " methods,", "probability": 0.68798828125}, {"start": 922.84, "end": 923.22, "word": " ok?", "probability": 0.459716796875}, {"start": 924.72, "end": 925.14, "word": " Of", "probability": 0.333984375}, {"start": 925.14, "end": 925.2, "word": " course,", "probability": 0.8994140625}, {"start": 925.3, "end": 925.34, "word": " I", "probability": 0.712890625}, {"start": 925.34, "end": 925.48, "word": " forgot,", "probability": 0.3046875}, {"start": 925.68, "end": 925.82, "word": " but", "probability": 0.84423828125}, {"start": 925.82, "end": 925.94, "word": " we", "probability": 0.40625}, {"start": 925.94, "end": 926.02, "word": " have", "probability": 0.54052734375}, {"start": 926.02, "end": 926.06, "word": " to", "probability": 0.96484375}, {"start": 926.06, "end": 926.24, "word": " adjust", "probability": 0.16650390625}, {"start": 926.24, "end": 926.4, "word": " the", "probability": 0.2177734375}, {"start": 926.4, "end": 926.56, "word": " thing,", "probability": 0.34033203125}, {"start": 926.58, "end": 926.7, "word": " the", "probability": 0.60888671875}, {"start": 926.7, "end": 927.2, "word": " constructor", "probability": 0.90966796875}, {"start": 927.2, "end": 927.82, "word": " now", "probability": 0.65283203125}, {"start": 927.82, "end": 928.28, "word": " Ok,", "probability": 0.0736083984375}, {"start": 929.46, "end": 929.64, "word": " there", "probability": 0.483642578125}, {"start": 929.64, "end": 930.0, "word": " is", "probability": 0.72119140625}, {"start": 930.0, "end": 930.1, "word": " no", "probability": 0.9375}, {"start": 930.1, "end": 930.24, "word": " need", "probability": 0.74462890625}, {"start": 930.24, "end": 930.38, "word": " to", "probability": 0.90673828125}, {"start": 930.38, "end": 930.58, "word": " send", "probability": 0.63134765625}, {"start": 930.58, "end": 930.72, "word": " it", "probability": 0.5478515625}, {"start": 930.72, "end": 931.44, "word": " UILogger", "probability": 0.565185546875}, {"start": 931.44, "end": 933.68, "word": " Ok,", "probability": 0.5986328125}, {"start": 933.94, "end": 935.0, "word": " we", "probability": 0.5302734375}, {"start": 935.0, "end": 935.58, "word": " made", "probability": 0.662109375}, {"start": 935.58, "end": 936.14, "word": " this", "probability": 0.857421875}, {"start": 936.14, "end": 936.46, "word": " list,", "probability": 0.91162109375}, {"start": 936.7, "end": 936.82, "word": " but", "probability": 0.89599609375}, {"start": 936.82, "end": 936.98, "word": " how", "probability": 0.89306640625}, {"start": 936.98, "end": 937.08, "word": " do", "probability": 0.78515625}, {"start": 937.08, "end": 937.18, "word": " we", "probability": 0.95166015625}, {"start": 937.18, "end": 937.4, "word": " add", "probability": 0.90087890625}, {"start": 937.4, "end": 937.9, "word": " new", "probability": 0.6142578125}, {"start": 937.9, "end": 938.38, "word": " listeners?", "probability": 0.87744140625}, {"start": 939.6, "end": 940.02, "word": " We", "probability": 0.91357421875}, {"start": 940.02, "end": 940.18, "word": " have", "probability": 0.8427734375}, {"start": 940.18, "end": 940.22, "word": " to", "probability": 0.970703125}, {"start": 940.22, "end": 940.38, "word": " make", "probability": 0.9052734375}, {"start": 940.38, "end": 940.86, "word": " methods", "probability": 0.91357421875}, {"start": 940.86, "end": 941.64, "word": " public", "probability": 0.470703125}, {"start": 941.64, "end": 942.18, "word": " void", "probability": 0.72119140625}, {"start": 942.18, "end": 942.72, "word": " named", "probability": 0.30078125}, {"start": 942.72, "end": 945.82, "word": " addMessageListener", "probability": 0.7956949869791666}, {"start": 945.82, "end": 946.78, "word": " takes", "probability": 0.316162109375}, {"start": 946.78, "end": 947.4, "word": " message", "probability": 0.6279296875}], "temperature": 1.0}, {"id": 38, "seek": 97716, "start": 951.44, "end": 977.16, "text": "Listener l and then we say if the listeners does not contain the letter l go to the listener and type add l and as we did method add we can do method public void remove message listener", "tokens": [35819, 260, 287, 293, 550, 321, 584, 498, 264, 23274, 775, 406, 5304, 264, 5063, 287, 352, 281, 264, 31569, 293, 2010, 909, 287, 293, 382, 321, 630, 3170, 909, 321, 393, 360, 3170, 1908, 22009, 4159, 3636, 31569], "avg_logprob": -0.427343762665987, "compression_ratio": 1.6228070175438596, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 951.44, "end": 952.08, "word": "Listener", "probability": 0.766357421875}, {"start": 952.08, "end": 952.42, "word": " l", "probability": 0.1787109375}, {"start": 952.42, "end": 955.22, "word": " and", "probability": 0.380859375}, {"start": 955.22, "end": 955.44, "word": " then", "probability": 0.6025390625}, {"start": 955.44, "end": 955.64, "word": " we", "probability": 0.60791015625}, {"start": 955.64, "end": 955.88, "word": " say", "probability": 0.6962890625}, {"start": 955.88, "end": 956.58, "word": " if", "probability": 0.73095703125}, {"start": 956.58, "end": 957.36, "word": " the", "probability": 0.36962890625}, {"start": 957.36, "end": 957.96, "word": " listeners", "probability": 0.771484375}, {"start": 957.96, "end": 959.36, "word": " does", "probability": 0.2210693359375}, {"start": 959.36, "end": 959.46, "word": " not", "probability": 0.86572265625}, {"start": 959.46, "end": 959.98, "word": " contain", "probability": 0.447265625}, {"start": 959.98, "end": 961.4, "word": " the", "probability": 0.35693359375}, {"start": 961.4, "end": 961.48, "word": " letter", "probability": 0.60107421875}, {"start": 961.48, "end": 961.78, "word": " l", "probability": 0.77734375}, {"start": 961.78, "end": 963.36, "word": " go", "probability": 0.292236328125}, {"start": 963.36, "end": 963.54, "word": " to", "probability": 0.94482421875}, {"start": 963.54, "end": 963.62, "word": " the", "probability": 0.459228515625}, {"start": 963.62, "end": 964.0, "word": " listener", "probability": 0.87255859375}, {"start": 964.0, "end": 965.34, "word": " and", "probability": 0.8056640625}, {"start": 965.34, "end": 965.52, "word": " type", "probability": 0.52392578125}, {"start": 965.52, "end": 965.92, "word": " add", "probability": 0.84814453125}, {"start": 965.92, "end": 966.64, "word": " l", "probability": 0.76416015625}, {"start": 966.64, "end": 968.96, "word": " and", "probability": 0.60009765625}, {"start": 968.96, "end": 969.1, "word": " as", "probability": 0.498779296875}, {"start": 969.1, "end": 969.24, "word": " we", "probability": 0.90625}, {"start": 969.24, "end": 969.38, "word": " did", "probability": 0.69091796875}, {"start": 969.38, "end": 969.76, "word": " method", "probability": 0.62451171875}, {"start": 969.76, "end": 970.14, "word": " add", "probability": 0.93798828125}, {"start": 970.14, "end": 970.6, "word": " we", "probability": 0.587890625}, {"start": 970.6, "end": 970.82, "word": " can", "probability": 0.91943359375}, {"start": 970.82, "end": 971.02, "word": " do", "probability": 0.56689453125}, {"start": 971.02, "end": 971.38, "word": " method", "probability": 0.8642578125}, {"start": 971.38, "end": 971.94, "word": " public", "probability": 0.89599609375}, {"start": 971.94, "end": 972.88, "word": " void", "probability": 0.953125}, {"start": 972.88, "end": 974.22, "word": " remove", "probability": 0.92236328125}, {"start": 974.22, "end": 974.8, "word": " message", "probability": 0.833984375}, {"start": 974.8, "end": 977.16, "word": " listener", "probability": 0.8857421875}], "temperature": 1.0}, {"id": 39, "seek": 100922, "start": 983.68, "end": 1009.22, "text": "and we say if listeners contains l go to listeners and say remove ok, it seems that we got rid of the references to the UI and the message and the logar in the list of listeners", "tokens": [474, 321, 584, 498, 23274, 8306, 287, 352, 281, 23274, 293, 584, 4159, 3133, 11, 309, 2544, 300, 321, 658, 3973, 295, 264, 15400, 281, 264, 15682, 293, 264, 3636, 293, 264, 3565, 289, 294, 264, 1329, 295, 23274], "avg_logprob": -0.6089843541383744, "compression_ratio": 1.5128205128205128, "no_speech_prob": 0.0, "words": [{"start": 983.68, "end": 983.92, "word": "and", "probability": 0.19482421875}, {"start": 983.92, "end": 984.04, "word": " we", "probability": 0.423095703125}, {"start": 984.04, "end": 984.2, "word": " say", "probability": 0.5419921875}, {"start": 984.2, "end": 984.56, "word": " if", "probability": 0.70068359375}, {"start": 984.56, "end": 985.16, "word": " listeners", "probability": 0.8759765625}, {"start": 985.16, "end": 988.86, "word": " contains", "probability": 0.76904296875}, {"start": 988.86, "end": 989.32, "word": " l", "probability": 0.272216796875}, {"start": 989.32, "end": 990.24, "word": " go", "probability": 0.271484375}, {"start": 990.24, "end": 990.42, "word": " to", "probability": 0.94677734375}, {"start": 990.42, "end": 992.46, "word": " listeners", "probability": 0.7763671875}, {"start": 992.46, "end": 993.18, "word": " and", "probability": 0.53466796875}, {"start": 993.18, "end": 993.44, "word": " say", "probability": 0.70849609375}, {"start": 993.44, "end": 999.04, "word": " remove", "probability": 0.79638671875}, {"start": 999.04, "end": 1002.04, "word": " ok,", "probability": 0.1611328125}, {"start": 1002.18, "end": 1002.36, "word": " it", "probability": 0.36669921875}, {"start": 1002.36, "end": 1002.46, "word": " seems", "probability": 0.50439453125}, {"start": 1002.46, "end": 1002.56, "word": " that", "probability": 0.476318359375}, {"start": 1002.56, "end": 1002.92, "word": " we", "probability": 0.91796875}, {"start": 1002.92, "end": 1003.3, "word": " got", "probability": 0.39404296875}, {"start": 1003.3, "end": 1003.54, "word": " rid", "probability": 0.85302734375}, {"start": 1003.54, "end": 1003.78, "word": " of", "probability": 0.94091796875}, {"start": 1003.78, "end": 1003.86, "word": " the", "probability": 0.3017578125}, {"start": 1003.86, "end": 1004.42, "word": " references", "probability": 0.8369140625}, {"start": 1004.42, "end": 1004.78, "word": " to", "probability": 0.311767578125}, {"start": 1004.78, "end": 1004.86, "word": " the", "probability": 0.69384765625}, {"start": 1004.86, "end": 1005.16, "word": " UI", "probability": 0.54248046875}, {"start": 1005.16, "end": 1005.48, "word": " and", "probability": 0.45068359375}, {"start": 1005.48, "end": 1005.52, "word": " the", "probability": 0.357177734375}, {"start": 1005.52, "end": 1005.9, "word": " message", "probability": 0.68798828125}, {"start": 1005.9, "end": 1006.9, "word": " and", "probability": 0.89208984375}, {"start": 1006.9, "end": 1007.32, "word": " the", "probability": 0.7861328125}, {"start": 1007.32, "end": 1007.68, "word": " logar", "probability": 0.3817138671875}, {"start": 1007.68, "end": 1008.32, "word": " in", "probability": 0.41796875}, {"start": 1008.32, "end": 1008.38, "word": " the", "probability": 0.350341796875}, {"start": 1008.38, "end": 1008.68, "word": " list", "probability": 0.88525390625}, {"start": 1008.68, "end": 1008.86, "word": " of", "probability": 0.97021484375}, {"start": 1008.86, "end": 1009.22, "word": " listeners", "probability": 0.892578125}], "temperature": 1.0}, {"id": 40, "seek": 102065, "start": 1010.49, "end": 1020.65, "text": "We got rid of the set method or the constructor that sends references to it The method is called addMessageListener, okay? We have a step left now if the message arrives", "tokens": [4360, 658, 3973, 295, 264, 992, 3170, 420, 264, 47479, 300, 14790, 15400, 281, 309, 440, 3170, 307, 1219, 909, 44, 442, 609, 35819, 260, 11, 1392, 30, 492, 362, 257, 1823, 1411, 586, 498, 264, 3636, 20116], "avg_logprob": -0.5348557906273084, "compression_ratio": 1.3629032258064515, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1010.49, "end": 1010.73, "word": "We", "probability": 0.4111328125}, {"start": 1010.73, "end": 1010.91, "word": " got", "probability": 0.71875}, {"start": 1010.91, "end": 1011.09, "word": " rid", "probability": 0.94140625}, {"start": 1011.09, "end": 1011.33, "word": " of", "probability": 0.958984375}, {"start": 1011.33, "end": 1011.45, "word": " the", "probability": 0.65625}, {"start": 1011.45, "end": 1011.63, "word": " set", "probability": 0.55810546875}, {"start": 1011.63, "end": 1012.07, "word": " method", "probability": 0.63671875}, {"start": 1012.07, "end": 1012.35, "word": " or", "probability": 0.47998046875}, {"start": 1012.35, "end": 1012.53, "word": " the", "probability": 0.496826171875}, {"start": 1012.53, "end": 1013.07, "word": " constructor", "probability": 0.78564453125}, {"start": 1013.07, "end": 1013.25, "word": " that", "probability": 0.54296875}, {"start": 1013.25, "end": 1013.49, "word": " sends", "probability": 0.6630859375}, {"start": 1013.49, "end": 1014.21, "word": " references", "probability": 0.5986328125}, {"start": 1014.21, "end": 1015.13, "word": " to", "probability": 0.6552734375}, {"start": 1015.13, "end": 1015.13, "word": " it", "probability": 0.54541015625}, {"start": 1015.13, "end": 1015.23, "word": " The", "probability": 0.378173828125}, {"start": 1015.23, "end": 1015.49, "word": " method", "probability": 0.94580078125}, {"start": 1015.49, "end": 1015.67, "word": " is", "probability": 0.6708984375}, {"start": 1015.67, "end": 1015.83, "word": " called", "probability": 0.71484375}, {"start": 1015.83, "end": 1017.01, "word": " addMessageListener,", "probability": 0.826416015625}, {"start": 1017.01, "end": 1017.93, "word": " okay?", "probability": 0.372314453125}, {"start": 1018.63, "end": 1018.65, "word": " We", "probability": 0.53271484375}, {"start": 1018.65, "end": 1018.87, "word": " have", "probability": 0.344482421875}, {"start": 1018.87, "end": 1019.09, "word": " a", "probability": 0.32373046875}, {"start": 1019.09, "end": 1019.35, "word": " step", "probability": 0.76806640625}, {"start": 1019.35, "end": 1019.47, "word": " left", "probability": 0.62939453125}, {"start": 1019.47, "end": 1019.75, "word": " now", "probability": 0.21533203125}, {"start": 1019.75, "end": 1019.99, "word": " if", "probability": 0.517578125}, {"start": 1019.99, "end": 1020.41, "word": " the", "probability": 0.8701171875}, {"start": 1020.41, "end": 1020.65, "word": " message", "probability": 0.884765625}, {"start": 1020.65, "end": 1020.65, "word": " arrives", "probability": 0.228759765625}], "temperature": 1.0}, {"id": 41, "seek": 104460, "start": 1021.49, "end": 1044.61, "text": " What should we do with it? Of course we can say ui.update and logar.update But no, I want to make a loop on all the listeners that I have For each message, listener l is present in listeners Say l.update and send him the message And that's it", "tokens": [708, 820, 321, 360, 365, 309, 30, 2720, 1164, 321, 393, 584, 344, 72, 13, 1010, 17393, 293, 3565, 289, 13, 1010, 17393, 583, 572, 11, 286, 528, 281, 652, 257, 6367, 322, 439, 264, 23274, 300, 286, 362, 1171, 1184, 3636, 11, 31569, 287, 307, 1974, 294, 23274, 6463, 287, 13, 1010, 17393, 293, 2845, 796, 264, 3636, 400, 300, 311, 309], "avg_logprob": -0.5590820107609034, "compression_ratio": 1.49079754601227, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1021.49, "end": 1021.73, "word": " What", "probability": 0.1812744140625}, {"start": 1021.73, "end": 1021.87, "word": " should", "probability": 0.231689453125}, {"start": 1021.87, "end": 1021.95, "word": " we", "probability": 0.89453125}, {"start": 1021.95, "end": 1022.13, "word": " do", "probability": 0.953125}, {"start": 1022.13, "end": 1022.25, "word": " with", "probability": 0.53466796875}, {"start": 1022.25, "end": 1022.43, "word": " it?", "probability": 0.71142578125}, {"start": 1023.15, "end": 1023.63, "word": " Of", "probability": 0.1875}, {"start": 1023.63, "end": 1023.63, "word": " course", "probability": 0.9345703125}, {"start": 1023.63, "end": 1023.63, "word": " we", "probability": 0.60986328125}, {"start": 1023.63, "end": 1023.79, "word": " can", "probability": 0.410400390625}, {"start": 1023.79, "end": 1024.29, "word": " say", "probability": 0.59912109375}, {"start": 1024.29, "end": 1024.79, "word": " ui", "probability": 0.532989501953125}, {"start": 1024.79, "end": 1025.35, "word": ".update", "probability": 0.9637044270833334}, {"start": 1025.35, "end": 1025.47, "word": " and", "probability": 0.7099609375}, {"start": 1025.47, "end": 1025.79, "word": " logar", "probability": 0.49029541015625}, {"start": 1025.79, "end": 1026.35, "word": ".update", "probability": 0.9700520833333334}, {"start": 1026.35, "end": 1026.59, "word": " But", "probability": 0.358154296875}, {"start": 1026.59, "end": 1027.09, "word": " no,", "probability": 0.12261962890625}, {"start": 1027.37, "end": 1027.93, "word": " I", "probability": 0.7509765625}, {"start": 1027.93, "end": 1028.15, "word": " want", "probability": 0.56640625}, {"start": 1028.15, "end": 1028.25, "word": " to", "probability": 0.947265625}, {"start": 1028.25, "end": 1028.37, "word": " make", "probability": 0.399169921875}, {"start": 1028.37, "end": 1028.55, "word": " a", "probability": 0.83251953125}, {"start": 1028.55, "end": 1028.75, "word": " loop", "probability": 0.96240234375}, {"start": 1028.75, "end": 1028.95, "word": " on", "probability": 0.43310546875}, {"start": 1028.95, "end": 1029.29, "word": " all", "probability": 0.78076171875}, {"start": 1029.29, "end": 1029.41, "word": " the", "probability": 0.27001953125}, {"start": 1029.41, "end": 1029.87, "word": " listeners", "probability": 0.8525390625}, {"start": 1029.87, "end": 1030.01, "word": " that", "probability": 0.354736328125}, {"start": 1030.01, "end": 1030.09, "word": " I", "probability": 0.95166015625}, {"start": 1030.09, "end": 1030.33, "word": " have", "probability": 0.91748046875}, {"start": 1030.33, "end": 1030.99, "word": " For", "probability": 0.2705078125}, {"start": 1030.99, "end": 1031.21, "word": " each", "probability": 0.498291015625}, {"start": 1031.21, "end": 1031.69, "word": " message,", "probability": 0.80517578125}, {"start": 1032.93, "end": 1033.71, "word": " listener", "probability": 0.65234375}, {"start": 1033.71, "end": 1034.99, "word": " l", "probability": 0.193359375}, {"start": 1034.99, "end": 1035.89, "word": " is", "probability": 0.404541015625}, {"start": 1035.89, "end": 1036.27, "word": " present", "probability": 0.59619140625}, {"start": 1036.27, "end": 1036.45, "word": " in", "probability": 0.84619140625}, {"start": 1036.45, "end": 1037.05, "word": " listeners", "probability": 0.55029296875}, {"start": 1037.05, "end": 1038.51, "word": " Say", "probability": 0.1595458984375}, {"start": 1038.51, "end": 1038.87, "word": " l", "probability": 0.61376953125}, {"start": 1038.87, "end": 1040.89, "word": ".update", "probability": 0.9591471354166666}, {"start": 1040.89, "end": 1041.01, "word": " and", "probability": 0.818359375}, {"start": 1041.01, "end": 1041.25, "word": " send", "probability": 0.65771484375}, {"start": 1041.25, "end": 1041.65, "word": " him", "probability": 0.57177734375}, {"start": 1041.65, "end": 1043.49, "word": " the", "probability": 0.60009765625}, {"start": 1043.49, "end": 1043.79, "word": " message", "probability": 0.921875}, {"start": 1043.79, "end": 1044.41, "word": " And", "probability": 0.5859375}, {"start": 1044.41, "end": 1044.55, "word": " that's", "probability": 0.5982666015625}, {"start": 1044.55, "end": 1044.61, "word": " it", "probability": 0.321044921875}], "temperature": 1.0}, {"id": 42, "seek": 107334, "start": 1046.63, "end": 1073.35, "text": " Now, after these modifications, the network message handler should not be tried at all Ok, let's come to the main method Did you notice that the constructor is gone? It's gone, that's it Did you notice? We want these two, the UI and the logger, to listen to whom? To the network message handler They don't want to listen to the modifications done to it Just like you want to listen to the event that happens on the button", "tokens": [823, 11, 934, 613, 26881, 11, 264, 3209, 3636, 41967, 820, 406, 312, 3031, 412, 439, 3477, 11, 718, 311, 808, 281, 264, 2135, 3170, 2589, 291, 3449, 300, 264, 47479, 307, 2780, 30, 467, 311, 2780, 11, 300, 311, 309, 2589, 291, 3449, 30, 492, 528, 613, 732, 11, 264, 15682, 293, 264, 3565, 1321, 11, 281, 2140, 281, 7101, 30, 1407, 264, 3209, 3636, 41967, 814, 500, 380, 528, 281, 2140, 281, 264, 26881, 1096, 281, 309, 1449, 411, 291, 528, 281, 2140, 281, 264, 2280, 300, 2314, 322, 264, 2960], "avg_logprob": -0.48371011684549614, "compression_ratio": 1.826839826839827, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1046.6299999999999, "end": 1047.07, "word": " Now,", "probability": 0.470947265625}, {"start": 1047.07, "end": 1047.51, "word": " after", "probability": 0.5068359375}, {"start": 1047.51, "end": 1048.23, "word": " these", "probability": 0.54248046875}, {"start": 1048.23, "end": 1048.23, "word": " modifications,", "probability": 0.29638671875}, {"start": 1048.49, "end": 1048.55, "word": " the", "probability": 0.405517578125}, {"start": 1048.55, "end": 1048.77, "word": " network", "probability": 0.537109375}, {"start": 1048.77, "end": 1049.09, "word": " message", "probability": 0.6689453125}, {"start": 1049.09, "end": 1049.35, "word": " handler", "probability": 0.92529296875}, {"start": 1049.35, "end": 1049.57, "word": " should", "probability": 0.2147216796875}, {"start": 1049.57, "end": 1049.57, "word": " not", "probability": 0.72119140625}, {"start": 1049.57, "end": 1049.73, "word": " be", "probability": 0.76611328125}, {"start": 1049.73, "end": 1050.03, "word": " tried", "probability": 0.37890625}, {"start": 1050.03, "end": 1050.25, "word": " at", "probability": 0.62109375}, {"start": 1050.25, "end": 1051.53, "word": " all", "probability": 0.94482421875}, {"start": 1051.53, "end": 1052.25, "word": " Ok,", "probability": 0.1414794921875}, {"start": 1053.47, "end": 1053.59, "word": " let's", "probability": 0.82421875}, {"start": 1053.59, "end": 1053.71, "word": " come", "probability": 0.256103515625}, {"start": 1053.71, "end": 1053.77, "word": " to", "probability": 0.81396484375}, {"start": 1053.77, "end": 1053.87, "word": " the", "probability": 0.8828125}, {"start": 1053.87, "end": 1054.01, "word": " main", "probability": 0.87255859375}, {"start": 1054.01, "end": 1055.03, "word": " method", "probability": 0.9443359375}, {"start": 1055.03, "end": 1057.13, "word": " Did", "probability": 0.360107421875}, {"start": 1057.13, "end": 1057.41, "word": " you", "probability": 0.6162109375}, {"start": 1057.41, "end": 1057.41, "word": " notice", "probability": 0.259765625}, {"start": 1057.41, "end": 1057.51, "word": " that", "probability": 0.53857421875}, {"start": 1057.51, "end": 1057.67, "word": " the", "probability": 0.5546875}, {"start": 1057.67, "end": 1058.21, "word": " constructor", "probability": 0.93212890625}, {"start": 1058.21, "end": 1058.27, "word": " is", "probability": 0.3369140625}, {"start": 1058.27, "end": 1058.81, "word": " gone?", "probability": 0.7578125}, {"start": 1058.87, "end": 1059.27, "word": " It's", "probability": 0.405029296875}, {"start": 1059.27, "end": 1059.27, "word": " gone,", "probability": 0.708984375}, {"start": 1059.27, "end": 1059.45, "word": " that's", "probability": 0.669921875}, {"start": 1059.45, "end": 1059.65, "word": " it", "probability": 0.80615234375}, {"start": 1059.65, "end": 1060.85, "word": " Did", "probability": 0.62158203125}, {"start": 1060.85, "end": 1060.85, "word": " you", "probability": 0.9697265625}, {"start": 1060.85, "end": 1061.05, "word": " notice?", "probability": 0.9150390625}, {"start": 1061.17, "end": 1061.27, "word": " We", "probability": 0.65576171875}, {"start": 1061.27, "end": 1061.67, "word": " want", "probability": 0.63671875}, {"start": 1061.67, "end": 1062.83, "word": " these", "probability": 0.55322265625}, {"start": 1062.83, "end": 1063.21, "word": " two,", "probability": 0.8662109375}, {"start": 1063.33, "end": 1063.45, "word": " the", "probability": 0.51611328125}, {"start": 1063.45, "end": 1063.69, "word": " UI", "probability": 0.7001953125}, {"start": 1063.69, "end": 1063.89, "word": " and", "probability": 0.94140625}, {"start": 1063.89, "end": 1064.01, "word": " the", "probability": 0.7626953125}, {"start": 1064.01, "end": 1064.25, "word": " logger,", "probability": 0.712890625}, {"start": 1064.35, "end": 1064.43, "word": " to", "probability": 0.93310546875}, {"start": 1064.43, "end": 1064.81, "word": " listen", "probability": 0.7998046875}, {"start": 1064.81, "end": 1064.99, "word": " to", "probability": 0.939453125}, {"start": 1064.99, "end": 1065.23, "word": " whom?", "probability": 0.75048828125}, {"start": 1065.71, "end": 1065.93, "word": " To", "probability": 0.58984375}, {"start": 1065.93, "end": 1066.01, "word": " the", "probability": 0.873046875}, {"start": 1066.01, "end": 1066.29, "word": " network", "probability": 0.89013671875}, {"start": 1066.29, "end": 1066.65, "word": " message", "probability": 0.904296875}, {"start": 1066.65, "end": 1066.95, "word": " handler", "probability": 0.908203125}, {"start": 1066.95, "end": 1067.29, "word": " They", "probability": 0.2020263671875}, {"start": 1067.29, "end": 1067.31, "word": " don't", "probability": 0.810302734375}, {"start": 1067.31, "end": 1067.53, "word": " want", "probability": 0.83642578125}, {"start": 1067.53, "end": 1067.59, "word": " to", "probability": 0.96337890625}, {"start": 1067.59, "end": 1067.85, "word": " listen", "probability": 0.79345703125}, {"start": 1067.85, "end": 1068.03, "word": " to", "probability": 0.962890625}, {"start": 1068.03, "end": 1068.51, "word": " the", "probability": 0.6240234375}, {"start": 1068.51, "end": 1068.91, "word": " modifications", "probability": 0.748046875}, {"start": 1068.91, "end": 1069.21, "word": " done", "probability": 0.11956787109375}, {"start": 1069.21, "end": 1069.93, "word": " to", "probability": 0.71142578125}, {"start": 1069.93, "end": 1069.93, "word": " it", "probability": 0.65771484375}, {"start": 1069.93, "end": 1070.59, "word": " Just", "probability": 0.197265625}, {"start": 1070.59, "end": 1070.75, "word": " like", "probability": 0.78466796875}, {"start": 1070.75, "end": 1071.49, "word": " you", "probability": 0.65234375}, {"start": 1071.49, "end": 1071.73, "word": " want", "probability": 0.71630859375}, {"start": 1071.73, "end": 1071.91, "word": " to", "probability": 0.96728515625}, {"start": 1071.91, "end": 1072.11, "word": " listen", "probability": 0.884765625}, {"start": 1072.11, "end": 1072.25, "word": " to", "probability": 0.962890625}, {"start": 1072.25, "end": 1072.33, "word": " the", "probability": 0.708984375}, {"start": 1072.33, "end": 1072.61, "word": " event", "probability": 0.712890625}, {"start": 1072.61, "end": 1072.75, "word": " that", "probability": 0.59033203125}, {"start": 1072.75, "end": 1072.97, "word": " happens", "probability": 0.591796875}, {"start": 1072.97, "end": 1073.11, "word": " on", "probability": 0.80615234375}, {"start": 1073.11, "end": 1073.15, "word": " the", "probability": 0.72412109375}, {"start": 1073.15, "end": 1073.35, "word": " button", "probability": 0.296630859375}], "temperature": 1.0}, {"id": 43, "seek": 109540, "start": 1074.06, "end": 1095.4, "text": " What did you do on the button? You went to the button and said addEactionEvent, right? You will find the same thing, you go to the H and say addMessageListener You will find that whoever I want to add the listener to, I want to tell him to add the UI And I can addH.addMessageListener and add", "tokens": [708, 630, 291, 360, 322, 264, 2960, 30, 509, 1437, 281, 264, 2960, 293, 848, 909, 36, 2894, 36, 2475, 11, 558, 30, 509, 486, 915, 264, 912, 551, 11, 291, 352, 281, 264, 389, 293, 584, 909, 44, 442, 609, 35819, 260, 509, 486, 915, 300, 11387, 286, 528, 281, 909, 264, 31569, 281, 11, 286, 528, 281, 980, 796, 281, 909, 264, 15682, 400, 286, 393, 909, 39, 13, 25224, 44, 442, 609, 35819, 260, 293, 909], "avg_logprob": -0.5046875238418579, "compression_ratio": 1.7544910179640718, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1074.06, "end": 1074.32, "word": " What", "probability": 0.214111328125}, {"start": 1074.32, "end": 1074.5, "word": " did", "probability": 0.41796875}, {"start": 1074.5, "end": 1074.6, "word": " you", "probability": 0.728515625}, {"start": 1074.6, "end": 1074.76, "word": " do", "probability": 0.63232421875}, {"start": 1074.76, "end": 1074.92, "word": " on", "probability": 0.498779296875}, {"start": 1074.92, "end": 1074.94, "word": " the", "probability": 0.60693359375}, {"start": 1074.94, "end": 1075.14, "word": " button?", "probability": 0.80224609375}, {"start": 1075.26, "end": 1075.42, "word": " You", "probability": 0.65625}, {"start": 1075.42, "end": 1075.62, "word": " went", "probability": 0.09600830078125}, {"start": 1075.62, "end": 1075.76, "word": " to", "probability": 0.71240234375}, {"start": 1075.76, "end": 1075.82, "word": " the", "probability": 0.646484375}, {"start": 1075.82, "end": 1076.0, "word": " button", "probability": 0.884765625}, {"start": 1076.0, "end": 1076.14, "word": " and", "probability": 0.86328125}, {"start": 1076.14, "end": 1076.32, "word": " said", "probability": 0.271484375}, {"start": 1076.32, "end": 1078.3, "word": " addEactionEvent,", "probability": 0.6115234375}, {"start": 1078.52, "end": 1079.62, "word": " right?", "probability": 0.7724609375}, {"start": 1080.02, "end": 1080.34, "word": " You", "probability": 0.338134765625}, {"start": 1080.34, "end": 1080.38, "word": " will", "probability": 0.1834716796875}, {"start": 1080.38, "end": 1080.52, "word": " find", "probability": 0.591796875}, {"start": 1080.52, "end": 1080.66, "word": " the", "probability": 0.80908203125}, {"start": 1080.66, "end": 1080.76, "word": " same", "probability": 0.90576171875}, {"start": 1080.76, "end": 1081.06, "word": " thing,", "probability": 0.72509765625}, {"start": 1081.14, "end": 1081.16, "word": " you", "probability": 0.6630859375}, {"start": 1081.16, "end": 1081.32, "word": " go", "probability": 0.73681640625}, {"start": 1081.32, "end": 1081.48, "word": " to", "probability": 0.96630859375}, {"start": 1081.48, "end": 1081.54, "word": " the", "probability": 0.6728515625}, {"start": 1081.54, "end": 1081.78, "word": " H", "probability": 0.448486328125}, {"start": 1081.78, "end": 1081.98, "word": " and", "probability": 0.65185546875}, {"start": 1081.98, "end": 1082.28, "word": " say", "probability": 0.59814453125}, {"start": 1082.28, "end": 1085.3, "word": " addMessageListener", "probability": 0.8787434895833334}, {"start": 1085.3, "end": 1086.72, "word": " You", "probability": 0.4208984375}, {"start": 1086.72, "end": 1086.84, "word": " will", "probability": 0.7265625}, {"start": 1086.84, "end": 1086.94, "word": " find", "probability": 0.8095703125}, {"start": 1086.94, "end": 1087.06, "word": " that", "probability": 0.357177734375}, {"start": 1087.06, "end": 1087.28, "word": " whoever", "probability": 0.4189453125}, {"start": 1087.28, "end": 1087.38, "word": " I", "probability": 0.288818359375}, {"start": 1087.38, "end": 1087.56, "word": " want", "probability": 0.51513671875}, {"start": 1087.56, "end": 1087.7, "word": " to", "probability": 0.9658203125}, {"start": 1087.7, "end": 1087.84, "word": " add", "probability": 0.90087890625}, {"start": 1087.84, "end": 1088.0, "word": " the", "probability": 0.57373046875}, {"start": 1088.0, "end": 1088.3, "word": " listener", "probability": 0.927734375}, {"start": 1088.3, "end": 1088.44, "word": " to,", "probability": 0.56103515625}, {"start": 1088.44, "end": 1088.5, "word": " I", "probability": 0.91552734375}, {"start": 1088.5, "end": 1088.58, "word": " want", "probability": 0.33740234375}, {"start": 1088.58, "end": 1088.68, "word": " to", "probability": 0.8779296875}, {"start": 1088.68, "end": 1088.8, "word": " tell", "probability": 0.1873779296875}, {"start": 1088.8, "end": 1089.06, "word": " him", "probability": 0.85986328125}, {"start": 1089.06, "end": 1089.26, "word": " to", "probability": 0.8115234375}, {"start": 1089.26, "end": 1089.42, "word": " add", "probability": 0.9111328125}, {"start": 1089.42, "end": 1090.34, "word": " the", "probability": 0.5126953125}, {"start": 1090.34, "end": 1090.58, "word": " UI", "probability": 0.85546875}, {"start": 1090.58, "end": 1092.44, "word": " And", "probability": 0.23193359375}, {"start": 1092.44, "end": 1092.54, "word": " I", "probability": 0.417236328125}, {"start": 1092.54, "end": 1092.7, "word": " can", "probability": 0.88671875}, {"start": 1092.7, "end": 1093.08, "word": " addH", "probability": 0.37109375}, {"start": 1093.08, "end": 1095.04, "word": ".addMessageListener", "probability": 0.9381975446428571}, {"start": 1095.04, "end": 1095.22, "word": " and", "probability": 0.75537109375}, {"start": 1095.22, "end": 1095.4, "word": " add", "probability": 0.6826171875}], "temperature": 1.0}, {"id": 44, "seek": 112356, "start": 1097.48, "end": 1123.56, "text": "Logar, but I found a mistake in it It says that Logar and UI are not a type of Message Listener So you want to make them a type of Message Listener So you go to the messenger UI And you tell it to implement Message Message Listener", "tokens": [43, 664, 289, 11, 457, 286, 1352, 257, 6146, 294, 309, 467, 1619, 300, 10824, 289, 293, 15682, 366, 406, 257, 2010, 295, 45947, 7501, 260, 407, 291, 528, 281, 652, 552, 257, 2010, 295, 45947, 7501, 260, 407, 291, 352, 281, 264, 26599, 15682, 400, 291, 980, 309, 281, 4445, 45947, 9847, 559, 68, 7501, 260], "avg_logprob": -0.5651939768215706, "compression_ratio": 1.6618705035971224, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1097.48, "end": 1097.94, "word": "Logar,", "probability": 0.5152994791666666}, {"start": 1097.96, "end": 1098.12, "word": " but", "probability": 0.81298828125}, {"start": 1098.12, "end": 1098.28, "word": " I", "probability": 0.36474609375}, {"start": 1098.28, "end": 1098.4, "word": " found", "probability": 0.61767578125}, {"start": 1098.4, "end": 1098.58, "word": " a", "probability": 0.362060546875}, {"start": 1098.58, "end": 1098.84, "word": " mistake", "probability": 0.77978515625}, {"start": 1098.84, "end": 1099.1, "word": " in", "probability": 0.1240234375}, {"start": 1099.1, "end": 1099.62, "word": " it", "probability": 0.8544921875}, {"start": 1099.62, "end": 1099.74, "word": " It", "probability": 0.349609375}, {"start": 1099.74, "end": 1099.92, "word": " says", "probability": 0.6240234375}, {"start": 1099.92, "end": 1100.06, "word": " that", "probability": 0.58056640625}, {"start": 1100.06, "end": 1100.9, "word": " Logar", "probability": 0.54266357421875}, {"start": 1100.9, "end": 1100.98, "word": " and", "probability": 0.6103515625}, {"start": 1100.98, "end": 1100.98, "word": " UI", "probability": 0.841796875}, {"start": 1100.98, "end": 1101.32, "word": " are", "probability": 0.5478515625}, {"start": 1101.32, "end": 1101.58, "word": " not", "probability": 0.896484375}, {"start": 1101.58, "end": 1102.2, "word": " a", "probability": 0.146240234375}, {"start": 1102.2, "end": 1102.54, "word": " type", "probability": 0.52392578125}, {"start": 1102.54, "end": 1102.82, "word": " of", "probability": 0.9326171875}, {"start": 1102.82, "end": 1103.5, "word": " Message", "probability": 0.331787109375}, {"start": 1103.5, "end": 1103.96, "word": " Listener", "probability": 0.760498046875}, {"start": 1103.96, "end": 1104.54, "word": " So", "probability": 0.64599609375}, {"start": 1104.54, "end": 1104.62, "word": " you", "probability": 0.70654296875}, {"start": 1104.62, "end": 1104.78, "word": " want", "probability": 0.28515625}, {"start": 1104.78, "end": 1104.88, "word": " to", "probability": 0.86328125}, {"start": 1104.88, "end": 1105.06, "word": " make", "probability": 0.45703125}, {"start": 1105.06, "end": 1105.24, "word": " them", "probability": 0.7529296875}, {"start": 1105.24, "end": 1105.38, "word": " a", "probability": 0.61572265625}, {"start": 1105.38, "end": 1105.5, "word": " type", "probability": 0.78515625}, {"start": 1105.5, "end": 1105.6, "word": " of", "probability": 0.96728515625}, {"start": 1105.6, "end": 1105.82, "word": " Message", "probability": 0.82470703125}, {"start": 1105.82, "end": 1106.24, "word": " Listener", "probability": 0.896240234375}, {"start": 1106.24, "end": 1106.92, "word": " So", "probability": 0.6318359375}, {"start": 1106.92, "end": 1107.1, "word": " you", "probability": 0.759765625}, {"start": 1107.1, "end": 1107.26, "word": " go", "probability": 0.83984375}, {"start": 1107.26, "end": 1107.44, "word": " to", "probability": 0.951171875}, {"start": 1107.44, "end": 1107.58, "word": " the", "probability": 0.46875}, {"start": 1107.58, "end": 1107.94, "word": " messenger", "probability": 0.51123046875}, {"start": 1107.94, "end": 1108.56, "word": " UI", "probability": 0.52734375}, {"start": 1108.56, "end": 1109.78, "word": " And", "probability": 0.3173828125}, {"start": 1109.78, "end": 1109.94, "word": " you", "probability": 0.64208984375}, {"start": 1109.94, "end": 1110.14, "word": " tell", "probability": 0.3115234375}, {"start": 1110.14, "end": 1110.42, "word": " it", "probability": 0.45166015625}, {"start": 1110.42, "end": 1110.7, "word": " to", "probability": 0.3544921875}, {"start": 1110.7, "end": 1111.34, "word": " implement", "probability": 0.77734375}, {"start": 1111.34, "end": 1115.76, "word": " Message", "probability": 0.6552734375}, {"start": 1115.76, "end": 1122.9, "word": " Message", "probability": 0.6669921875}, {"start": 1122.9, "end": 1123.56, "word": " Listener", "probability": 0.92431640625}], "temperature": 1.0}, {"id": 45, "seek": 114110, "start": 1125.89, "end": 1141.11, "text": "By import, as soon as you do import, it will ask you to do implement to give it an update. I did it with the same name, so that's why it didn't ask me to do import. Okay, so did you see that it's ready? And also the logger, since it also wants to listen,", "tokens": [27690, 974, 11, 382, 2321, 382, 291, 360, 974, 11, 309, 486, 1029, 291, 281, 360, 4445, 281, 976, 309, 364, 5623, 13, 286, 630, 309, 365, 264, 912, 1315, 11, 370, 300, 311, 983, 309, 994, 380, 1029, 385, 281, 360, 974, 13, 1033, 11, 370, 630, 291, 536, 300, 309, 311, 1919, 30, 400, 611, 264, 3565, 1321, 11, 1670, 309, 611, 2738, 281, 2140, 11], "avg_logprob": -0.5593296928682189, "compression_ratio": 1.5679012345679013, "no_speech_prob": 0.00014150142669677734, "words": [{"start": 1125.8899999999999, "end": 1126.29, "word": "By", "probability": 0.0931396484375}, {"start": 1126.29, "end": 1126.69, "word": " import,", "probability": 0.278076171875}, {"start": 1127.27, "end": 1127.73, "word": " as", "probability": 0.314453125}, {"start": 1127.73, "end": 1127.93, "word": " soon", "probability": 0.89599609375}, {"start": 1127.93, "end": 1128.03, "word": " as", "probability": 0.9697265625}, {"start": 1128.03, "end": 1128.21, "word": " you", "probability": 0.89013671875}, {"start": 1128.21, "end": 1128.33, "word": " do", "probability": 0.240234375}, {"start": 1128.33, "end": 1128.73, "word": " import,", "probability": 0.50927734375}, {"start": 1128.95, "end": 1128.95, "word": " it", "probability": 0.65966796875}, {"start": 1128.95, "end": 1129.05, "word": " will", "probability": 0.72412109375}, {"start": 1129.05, "end": 1129.29, "word": " ask", "probability": 0.79638671875}, {"start": 1129.29, "end": 1129.53, "word": " you", "probability": 0.86083984375}, {"start": 1129.53, "end": 1129.67, "word": " to", "probability": 0.93896484375}, {"start": 1129.67, "end": 1129.79, "word": " do", "probability": 0.422119140625}, {"start": 1129.79, "end": 1130.27, "word": " implement", "probability": 0.5068359375}, {"start": 1130.27, "end": 1130.53, "word": " to", "probability": 0.379150390625}, {"start": 1130.53, "end": 1130.69, "word": " give", "probability": 0.48046875}, {"start": 1130.69, "end": 1130.85, "word": " it", "probability": 0.62744140625}, {"start": 1130.85, "end": 1131.79, "word": " an", "probability": 0.6015625}, {"start": 1131.79, "end": 1132.11, "word": " update.", "probability": 0.9228515625}, {"start": 1132.21, "end": 1132.33, "word": " I", "probability": 0.88232421875}, {"start": 1132.33, "end": 1132.53, "word": " did", "probability": 0.5419921875}, {"start": 1132.53, "end": 1132.61, "word": " it", "probability": 0.85498046875}, {"start": 1132.61, "end": 1132.69, "word": " with", "probability": 0.607421875}, {"start": 1132.69, "end": 1132.91, "word": " the", "probability": 0.9111328125}, {"start": 1132.91, "end": 1132.91, "word": " same", "probability": 0.89208984375}, {"start": 1132.91, "end": 1133.23, "word": " name,", "probability": 0.8955078125}, {"start": 1133.35, "end": 1133.39, "word": " so", "probability": 0.6767578125}, {"start": 1133.39, "end": 1133.67, "word": " that's", "probability": 0.5587158203125}, {"start": 1133.67, "end": 1133.67, "word": " why", "probability": 0.91845703125}, {"start": 1133.67, "end": 1133.77, "word": " it", "probability": 0.68994140625}, {"start": 1133.77, "end": 1133.81, "word": " didn't", "probability": 0.800048828125}, {"start": 1133.81, "end": 1133.99, "word": " ask", "probability": 0.845703125}, {"start": 1133.99, "end": 1134.19, "word": " me", "probability": 0.26318359375}, {"start": 1134.19, "end": 1134.21, "word": " to", "probability": 0.96142578125}, {"start": 1134.21, "end": 1134.41, "word": " do", "probability": 0.59033203125}, {"start": 1134.41, "end": 1135.01, "word": " import.", "probability": 0.81787109375}, {"start": 1135.83, "end": 1136.01, "word": " Okay,", "probability": 0.2130126953125}, {"start": 1136.19, "end": 1136.31, "word": " so", "probability": 0.63720703125}, {"start": 1136.31, "end": 1136.55, "word": " did", "probability": 0.222412109375}, {"start": 1136.55, "end": 1136.75, "word": " you", "probability": 0.95556640625}, {"start": 1136.75, "end": 1136.75, "word": " see", "probability": 0.45263671875}, {"start": 1136.75, "end": 1136.97, "word": " that", "probability": 0.41552734375}, {"start": 1136.97, "end": 1137.57, "word": " it's", "probability": 0.3851318359375}, {"start": 1137.57, "end": 1137.95, "word": " ready?", "probability": 0.70947265625}, {"start": 1138.79, "end": 1138.91, "word": " And", "probability": 0.72802734375}, {"start": 1138.91, "end": 1139.17, "word": " also", "probability": 0.44189453125}, {"start": 1139.17, "end": 1139.31, "word": " the", "probability": 0.5927734375}, {"start": 1139.31, "end": 1139.63, "word": " logger,", "probability": 0.7490234375}, {"start": 1139.73, "end": 1139.91, "word": " since", "probability": 0.6171875}, {"start": 1139.91, "end": 1140.13, "word": " it", "probability": 0.61474609375}, {"start": 1140.13, "end": 1140.29, "word": " also", "probability": 0.6103515625}, {"start": 1140.29, "end": 1140.29, "word": " wants", "probability": 0.71923828125}, {"start": 1140.29, "end": 1140.75, "word": " to", "probability": 0.95068359375}, {"start": 1140.75, "end": 1141.11, "word": " listen,", "probability": 0.66455078125}], "temperature": 1.0}, {"id": 46, "seek": 118208, "start": 1156.05, "end": 1182.09, "text": "and this is the method update that creates the method log let's go back to the main okay, the error is gone, we added them to calisthenars and run it because automatically when these are doubled now okay, where are they doubled? stored stored as objects where? in this list right?", "tokens": [474, 341, 307, 264, 3170, 5623, 300, 7829, 264, 3170, 3565, 718, 311, 352, 646, 281, 264, 2135, 1392, 11, 264, 6713, 307, 2780, 11, 321, 3869, 552, 281, 2104, 271, 19096, 685, 293, 1190, 309, 570, 6772, 562, 613, 366, 24405, 586, 1392, 11, 689, 366, 436, 24405, 30, 12187, 12187, 382, 6565, 689, 30, 294, 341, 1329, 558, 30], "avg_logprob": -0.6658265888690948, "compression_ratio": 1.6374269005847952, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1156.05, "end": 1156.53, "word": "and", "probability": 0.1524658203125}, {"start": 1156.53, "end": 1156.67, "word": " this", "probability": 0.689453125}, {"start": 1156.67, "end": 1156.73, "word": " is", "probability": 0.64208984375}, {"start": 1156.73, "end": 1156.77, "word": " the", "probability": 0.57080078125}, {"start": 1156.77, "end": 1157.01, "word": " method", "probability": 0.85107421875}, {"start": 1157.01, "end": 1157.37, "word": " update", "probability": 0.77880859375}, {"start": 1157.37, "end": 1157.57, "word": " that", "probability": 0.379638671875}, {"start": 1157.57, "end": 1158.05, "word": " creates", "probability": 0.050018310546875}, {"start": 1158.05, "end": 1158.49, "word": " the", "probability": 0.365478515625}, {"start": 1158.49, "end": 1158.71, "word": " method", "probability": 0.77001953125}, {"start": 1158.71, "end": 1158.99, "word": " log", "probability": 0.818359375}, {"start": 1158.99, "end": 1160.29, "word": " let's", "probability": 0.50616455078125}, {"start": 1160.29, "end": 1160.47, "word": " go", "probability": 0.6865234375}, {"start": 1160.47, "end": 1160.55, "word": " back", "probability": 0.85498046875}, {"start": 1160.55, "end": 1160.67, "word": " to", "probability": 0.962890625}, {"start": 1160.67, "end": 1160.81, "word": " the", "probability": 0.59033203125}, {"start": 1160.81, "end": 1161.07, "word": " main", "probability": 0.89306640625}, {"start": 1161.07, "end": 1163.39, "word": " okay,", "probability": 0.042205810546875}, {"start": 1163.95, "end": 1164.25, "word": " the", "probability": 0.360107421875}, {"start": 1164.25, "end": 1164.67, "word": " error", "probability": 0.77587890625}, {"start": 1164.67, "end": 1164.67, "word": " is", "probability": 0.47900390625}, {"start": 1164.67, "end": 1164.67, "word": " gone,", "probability": 0.8818359375}, {"start": 1164.77, "end": 1164.77, "word": " we", "probability": 0.650390625}, {"start": 1164.77, "end": 1164.99, "word": " added", "probability": 0.5693359375}, {"start": 1164.99, "end": 1165.29, "word": " them", "probability": 0.80615234375}, {"start": 1165.29, "end": 1165.49, "word": " to", "probability": 0.54345703125}, {"start": 1165.49, "end": 1166.33, "word": " calisthenars", "probability": 0.5001220703125}, {"start": 1166.33, "end": 1166.79, "word": " and", "probability": 0.78125}, {"start": 1166.79, "end": 1167.17, "word": " run", "probability": 0.31787109375}, {"start": 1167.17, "end": 1168.35, "word": " it", "probability": 0.689453125}, {"start": 1168.35, "end": 1168.91, "word": " because", "probability": 0.4609375}, {"start": 1168.91, "end": 1169.39, "word": " automatically", "probability": 0.470947265625}, {"start": 1169.39, "end": 1169.75, "word": " when", "probability": 0.304443359375}, {"start": 1169.75, "end": 1171.07, "word": " these", "probability": 0.26953125}, {"start": 1171.07, "end": 1171.33, "word": " are", "probability": 0.399658203125}, {"start": 1171.33, "end": 1171.69, "word": " doubled", "probability": 0.422607421875}, {"start": 1171.69, "end": 1172.45, "word": " now", "probability": 0.55859375}, {"start": 1172.45, "end": 1173.71, "word": " okay,", "probability": 0.320068359375}, {"start": 1173.81, "end": 1173.95, "word": " where", "probability": 0.84521484375}, {"start": 1173.95, "end": 1174.09, "word": " are", "probability": 0.350830078125}, {"start": 1174.09, "end": 1174.11, "word": " they", "probability": 0.36279296875}, {"start": 1174.11, "end": 1174.35, "word": " doubled?", "probability": 0.751953125}, {"start": 1174.45, "end": 1174.83, "word": " stored", "probability": 0.501953125}, {"start": 1174.83, "end": 1179.19, "word": " stored", "probability": 0.2666015625}, {"start": 1179.19, "end": 1179.47, "word": " as", "probability": 0.83154296875}, {"start": 1179.47, "end": 1179.91, "word": " objects", "probability": 0.71826171875}, {"start": 1179.91, "end": 1180.15, "word": " where?", "probability": 0.630859375}, {"start": 1180.41, "end": 1180.81, "word": " in", "probability": 0.8330078125}, {"start": 1180.81, "end": 1180.85, "word": " this", "probability": 0.841796875}, {"start": 1180.85, "end": 1181.15, "word": " list", "probability": 0.92529296875}, {"start": 1181.15, "end": 1182.09, "word": " right?", "probability": 0.4833984375}], "temperature": 1.0}, {"id": 47, "seek": 120998, "start": 1183.32, "end": 1209.98, "text": " As soon as you receive a message, it will create a loop and execute the update Because the idea is that you want to add a new component that listens to it I want to add a message to the new scenario", "tokens": [1018, 2321, 382, 291, 4774, 257, 3636, 11, 309, 486, 1884, 257, 6367, 293, 14483, 264, 5623, 1436, 264, 1558, 307, 300, 291, 528, 281, 909, 257, 777, 6542, 300, 35959, 281, 309, 286, 528, 281, 909, 257, 3636, 281, 264, 777, 9005], "avg_logprob": -0.4836647849191319, "compression_ratio": 1.5307692307692307, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1183.32, "end": 1183.58, "word": " As", "probability": 0.16748046875}, {"start": 1183.58, "end": 1183.88, "word": " soon", "probability": 0.947265625}, {"start": 1183.88, "end": 1184.0, "word": " as", "probability": 0.96826171875}, {"start": 1184.0, "end": 1184.12, "word": " you", "probability": 0.30126953125}, {"start": 1184.12, "end": 1184.3, "word": " receive", "probability": 0.6279296875}, {"start": 1184.3, "end": 1184.76, "word": " a", "probability": 0.72216796875}, {"start": 1184.76, "end": 1184.76, "word": " message,", "probability": 0.77783203125}, {"start": 1184.98, "end": 1185.68, "word": " it", "probability": 0.677734375}, {"start": 1185.68, "end": 1185.76, "word": " will", "probability": 0.55712890625}, {"start": 1185.76, "end": 1186.1, "word": " create", "probability": 0.491455078125}, {"start": 1186.1, "end": 1186.28, "word": " a", "probability": 0.96728515625}, {"start": 1186.28, "end": 1186.54, "word": " loop", "probability": 0.89990234375}, {"start": 1186.54, "end": 1187.08, "word": " and", "probability": 0.57177734375}, {"start": 1187.08, "end": 1187.4, "word": " execute", "probability": 0.31884765625}, {"start": 1187.4, "end": 1188.82, "word": " the", "probability": 0.75732421875}, {"start": 1188.82, "end": 1189.2, "word": " update", "probability": 0.7587890625}, {"start": 1189.2, "end": 1189.58, "word": " Because", "probability": 0.0960693359375}, {"start": 1189.58, "end": 1197.88, "word": " the", "probability": 0.58056640625}, {"start": 1197.88, "end": 1201.0, "word": " idea", "probability": 0.84033203125}, {"start": 1201.0, "end": 1201.26, "word": " is", "probability": 0.79638671875}, {"start": 1201.26, "end": 1201.48, "word": " that", "probability": 0.46240234375}, {"start": 1201.48, "end": 1201.56, "word": " you", "probability": 0.85009765625}, {"start": 1201.56, "end": 1201.56, "word": " want", "probability": 0.55224609375}, {"start": 1201.56, "end": 1201.86, "word": " to", "probability": 0.966796875}, {"start": 1201.86, "end": 1202.2, "word": " add", "probability": 0.91845703125}, {"start": 1202.2, "end": 1203.02, "word": " a", "probability": 0.94482421875}, {"start": 1203.02, "end": 1203.02, "word": " new", "probability": 0.87158203125}, {"start": 1203.02, "end": 1203.74, "word": " component", "probability": 0.86083984375}, {"start": 1203.74, "end": 1203.96, "word": " that", "probability": 0.5}, {"start": 1203.96, "end": 1204.3, "word": " listens", "probability": 0.74267578125}, {"start": 1204.3, "end": 1204.58, "word": " to", "probability": 0.90869140625}, {"start": 1204.58, "end": 1206.12, "word": " it", "probability": 0.1552734375}, {"start": 1206.12, "end": 1208.34, "word": " I", "probability": 0.1397705078125}, {"start": 1208.34, "end": 1208.52, "word": " want", "probability": 0.74267578125}, {"start": 1208.52, "end": 1208.58, "word": " to", "probability": 0.96435546875}, {"start": 1208.58, "end": 1208.84, "word": " add", "probability": 0.94091796875}, {"start": 1208.84, "end": 1209.06, "word": " a", "probability": 0.9580078125}, {"start": 1209.06, "end": 1209.34, "word": " message", "probability": 0.75}, {"start": 1209.34, "end": 1209.64, "word": " to", "probability": 0.80712890625}, {"start": 1209.64, "end": 1209.68, "word": " the", "probability": 0.6806640625}, {"start": 1209.68, "end": 1209.74, "word": " new", "probability": 0.78076171875}, {"start": 1209.74, "end": 1209.98, "word": " scenario", "probability": 0.447021484375}], "temperature": 1.0}, {"id": 48, "seek": 123414, "start": 1211.0, "end": 1234.14, "text": " What do you have to do? Either you go and create a new class For example, I tell him to create a class called DBComponent For example, this is what is stored in the database And we tell him that this needs to implement a message listener And as soon as you implement this", "tokens": [708, 360, 291, 362, 281, 360, 30, 13746, 291, 352, 293, 1884, 257, 777, 1508, 1171, 1365, 11, 286, 980, 796, 281, 1884, 257, 1508, 1219, 26754, 34, 8586, 30365, 1171, 1365, 11, 341, 307, 437, 307, 12187, 294, 264, 8149, 400, 321, 980, 796, 300, 341, 2203, 281, 4445, 257, 3636, 31569, 400, 382, 2321, 382, 291, 4445, 341], "avg_logprob": -0.4953893481707964, "compression_ratio": 1.590643274853801, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1211.0, "end": 1211.26, "word": " What", "probability": 0.418212890625}, {"start": 1211.26, "end": 1211.36, "word": " do", "probability": 0.2459716796875}, {"start": 1211.36, "end": 1211.36, "word": " you", "probability": 0.91796875}, {"start": 1211.36, "end": 1211.48, "word": " have", "probability": 0.5908203125}, {"start": 1211.48, "end": 1211.62, "word": " to", "probability": 0.97314453125}, {"start": 1211.62, "end": 1211.98, "word": " do?", "probability": 0.9609375}, {"start": 1212.2, "end": 1212.46, "word": " Either", "probability": 0.3896484375}, {"start": 1212.46, "end": 1212.64, "word": " you", "probability": 0.466064453125}, {"start": 1212.64, "end": 1212.76, "word": " go", "probability": 0.23486328125}, {"start": 1212.76, "end": 1212.86, "word": " and", "probability": 0.6416015625}, {"start": 1212.86, "end": 1213.06, "word": " create", "probability": 0.5908203125}, {"start": 1213.06, "end": 1213.16, "word": " a", "probability": 0.9638671875}, {"start": 1213.16, "end": 1213.7, "word": " new", "probability": 0.89306640625}, {"start": 1213.7, "end": 1213.74, "word": " class", "probability": 0.9716796875}, {"start": 1213.74, "end": 1215.28, "word": " For", "probability": 0.238037109375}, {"start": 1215.28, "end": 1215.66, "word": " example,", "probability": 0.87890625}, {"start": 1215.78, "end": 1215.78, "word": " I", "probability": 0.6181640625}, {"start": 1215.78, "end": 1216.06, "word": " tell", "probability": 0.11126708984375}, {"start": 1216.06, "end": 1216.3, "word": " him", "probability": 0.54541015625}, {"start": 1216.3, "end": 1216.52, "word": " to", "probability": 0.8740234375}, {"start": 1216.52, "end": 1216.68, "word": " create", "probability": 0.71875}, {"start": 1216.68, "end": 1216.84, "word": " a", "probability": 0.958984375}, {"start": 1216.84, "end": 1217.16, "word": " class", "probability": 0.83935546875}, {"start": 1217.16, "end": 1217.46, "word": " called", "probability": 0.5244140625}, {"start": 1217.46, "end": 1219.26, "word": " DBComponent", "probability": 0.648681640625}, {"start": 1219.26, "end": 1220.16, "word": " For", "probability": 0.139892578125}, {"start": 1220.16, "end": 1221.78, "word": " example,", "probability": 0.89794921875}, {"start": 1222.14, "end": 1222.14, "word": " this", "probability": 0.6162109375}, {"start": 1222.14, "end": 1222.14, "word": " is", "probability": 0.65673828125}, {"start": 1222.14, "end": 1222.3, "word": " what", "probability": 0.55078125}, {"start": 1222.3, "end": 1222.46, "word": " is", "probability": 0.49951171875}, {"start": 1222.46, "end": 1222.7, "word": " stored", "probability": 0.80322265625}, {"start": 1222.7, "end": 1222.9, "word": " in", "probability": 0.90869140625}, {"start": 1222.9, "end": 1223.0, "word": " the", "probability": 0.80908203125}, {"start": 1223.0, "end": 1223.46, "word": " database", "probability": 0.8828125}, {"start": 1223.46, "end": 1224.42, "word": " And", "probability": 0.498779296875}, {"start": 1224.42, "end": 1224.56, "word": " we", "probability": 0.7197265625}, {"start": 1224.56, "end": 1224.78, "word": " tell", "probability": 0.7490234375}, {"start": 1224.78, "end": 1224.88, "word": " him", "probability": 0.84716796875}, {"start": 1224.88, "end": 1225.04, "word": " that", "probability": 0.7958984375}, {"start": 1225.04, "end": 1225.52, "word": " this", "probability": 0.68994140625}, {"start": 1225.52, "end": 1225.86, "word": " needs", "probability": 0.1409912109375}, {"start": 1225.86, "end": 1226.5, "word": " to", "probability": 0.966796875}, {"start": 1226.5, "end": 1226.5, "word": " implement", "probability": 0.345703125}, {"start": 1226.5, "end": 1228.12, "word": " a", "probability": 0.37158203125}, {"start": 1228.12, "end": 1228.6, "word": " message", "probability": 0.70068359375}, {"start": 1228.6, "end": 1229.96, "word": " listener", "probability": 0.73876953125}, {"start": 1229.96, "end": 1232.22, "word": " And", "probability": 0.53173828125}, {"start": 1232.22, "end": 1232.44, "word": " as", "probability": 0.73828125}, {"start": 1232.44, "end": 1232.62, "word": " soon", "probability": 0.91748046875}, {"start": 1232.62, "end": 1232.74, "word": " as", "probability": 0.97119140625}, {"start": 1232.74, "end": 1232.92, "word": " you", "probability": 0.8369140625}, {"start": 1232.92, "end": 1233.42, "word": " implement", "probability": 0.576171875}, {"start": 1233.42, "end": 1234.14, "word": " this", "probability": 0.7998046875}], "temperature": 1.0}, {"id": 49, "seek": 126438, "start": 1236.92, "end": 1264.38, "text": " you need to do an implement update, you need to tell it what to do in the message it received system.out I need to tell it storing message.getmessage in db I save it for example in a database and I go to main method and extract object from main from db", "tokens": [291, 643, 281, 360, 364, 4445, 5623, 11, 291, 643, 281, 980, 309, 437, 281, 360, 294, 264, 3636, 309, 4613, 1185, 13, 346, 286, 643, 281, 980, 309, 26085, 3636, 13, 847, 76, 442, 609, 294, 274, 65, 286, 3155, 309, 337, 1365, 294, 257, 8149, 293, 286, 352, 281, 2135, 3170, 293, 8947, 2657, 490, 2135, 490, 274, 65], "avg_logprob": -0.5821572311462895, "compression_ratio": 1.6428571428571428, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1236.92, "end": 1237.1, "word": " you", "probability": 0.187255859375}, {"start": 1237.1, "end": 1237.22, "word": " need", "probability": 0.327392578125}, {"start": 1237.22, "end": 1237.32, "word": " to", "probability": 0.951171875}, {"start": 1237.32, "end": 1237.52, "word": " do", "probability": 0.300048828125}, {"start": 1237.52, "end": 1237.64, "word": " an", "probability": 0.437744140625}, {"start": 1237.64, "end": 1237.9, "word": " implement", "probability": 0.2435302734375}, {"start": 1237.9, "end": 1238.48, "word": " update,", "probability": 0.7978515625}, {"start": 1238.64, "end": 1238.64, "word": " you", "probability": 0.30615234375}, {"start": 1238.64, "end": 1238.72, "word": " need", "probability": 0.417236328125}, {"start": 1238.72, "end": 1238.72, "word": " to", "probability": 0.9609375}, {"start": 1238.72, "end": 1238.82, "word": " tell", "probability": 0.5654296875}, {"start": 1238.82, "end": 1238.9, "word": " it", "probability": 0.58642578125}, {"start": 1238.9, "end": 1239.04, "word": " what", "probability": 0.79541015625}, {"start": 1239.04, "end": 1239.22, "word": " to", "probability": 0.24609375}, {"start": 1239.22, "end": 1239.42, "word": " do", "probability": 0.9013671875}, {"start": 1239.42, "end": 1239.62, "word": " in", "probability": 0.6826171875}, {"start": 1239.62, "end": 1239.72, "word": " the", "probability": 0.73583984375}, {"start": 1239.72, "end": 1240.08, "word": " message", "probability": 0.712890625}, {"start": 1240.08, "end": 1240.76, "word": " it", "probability": 0.327880859375}, {"start": 1240.76, "end": 1241.04, "word": " received", "probability": 0.27978515625}, {"start": 1241.04, "end": 1243.48, "word": " system", "probability": 0.52587890625}, {"start": 1243.48, "end": 1244.82, "word": ".out", "probability": 0.8544921875}, {"start": 1244.82, "end": 1247.86, "word": " I", "probability": 0.105712890625}, {"start": 1247.86, "end": 1247.98, "word": " need", "probability": 0.66064453125}, {"start": 1247.98, "end": 1248.02, "word": " to", "probability": 0.97021484375}, {"start": 1248.02, "end": 1248.14, "word": " tell", "probability": 0.658203125}, {"start": 1248.14, "end": 1248.24, "word": " it", "probability": 0.89599609375}, {"start": 1248.24, "end": 1248.9, "word": " storing", "probability": 0.58154296875}, {"start": 1248.9, "end": 1251.82, "word": " message", "probability": 0.78662109375}, {"start": 1251.82, "end": 1254.28, "word": ".getmessage", "probability": 0.76484375}, {"start": 1254.28, "end": 1256.0, "word": " in", "probability": 0.7578125}, {"start": 1256.0, "end": 1256.36, "word": " db", "probability": 0.699462890625}, {"start": 1256.36, "end": 1257.08, "word": " I", "probability": 0.32373046875}, {"start": 1257.08, "end": 1257.28, "word": " save", "probability": 0.2587890625}, {"start": 1257.28, "end": 1257.44, "word": " it", "probability": 0.88671875}, {"start": 1257.44, "end": 1257.56, "word": " for", "probability": 0.353271484375}, {"start": 1257.56, "end": 1257.76, "word": " example", "probability": 0.90673828125}, {"start": 1257.76, "end": 1257.9, "word": " in", "probability": 0.875}, {"start": 1257.9, "end": 1258.02, "word": " a", "probability": 0.491455078125}, {"start": 1258.02, "end": 1258.44, "word": " database", "probability": 0.865234375}, {"start": 1258.44, "end": 1259.98, "word": " and", "probability": 0.421630859375}, {"start": 1259.98, "end": 1260.16, "word": " I", "probability": 0.7158203125}, {"start": 1260.16, "end": 1260.32, "word": " go", "probability": 0.7646484375}, {"start": 1260.32, "end": 1260.48, "word": " to", "probability": 0.7529296875}, {"start": 1260.48, "end": 1260.98, "word": " main", "probability": 0.400634765625}, {"start": 1260.98, "end": 1261.48, "word": " method", "probability": 0.908203125}, {"start": 1261.48, "end": 1261.64, "word": " and", "probability": 0.5869140625}, {"start": 1261.64, "end": 1261.98, "word": " extract", "probability": 0.1727294921875}, {"start": 1261.98, "end": 1262.36, "word": " object", "probability": 0.537109375}, {"start": 1262.36, "end": 1262.58, "word": " from", "probability": 0.8349609375}, {"start": 1262.58, "end": 1262.86, "word": " main", "probability": 0.302978515625}, {"start": 1262.86, "end": 1263.94, "word": " from", "probability": 0.54541015625}, {"start": 1263.94, "end": 1264.38, "word": " db", "probability": 0.890380859375}], "temperature": 1.0}, {"id": 50, "seek": 128743, "start": 1266.31, "end": 1287.43, "text": " component db component then I say h.add message listener and I add the db component I created a new element that listens to events and if I run", "tokens": [6542, 274, 65, 6542, 550, 286, 584, 276, 13, 25224, 3636, 31569, 293, 286, 909, 264, 274, 65, 6542, 286, 2942, 257, 777, 4478, 300, 35959, 281, 3931, 293, 498, 286, 1190], "avg_logprob": -0.5497159090909091, "compression_ratio": 1.4545454545454546, "no_speech_prob": 7.748603820800781e-07, "words": [{"start": 1266.3100000000002, "end": 1267.17, "word": " component", "probability": 0.229248046875}, {"start": 1267.17, "end": 1268.03, "word": " db", "probability": 0.57391357421875}, {"start": 1268.03, "end": 1268.99, "word": " component", "probability": 0.74267578125}, {"start": 1268.99, "end": 1274.71, "word": " then", "probability": 0.31884765625}, {"start": 1274.71, "end": 1274.87, "word": " I", "probability": 0.72119140625}, {"start": 1274.87, "end": 1275.07, "word": " say", "probability": 0.464599609375}, {"start": 1275.07, "end": 1275.39, "word": " h", "probability": 0.364501953125}, {"start": 1275.39, "end": 1276.17, "word": ".add", "probability": 0.883544921875}, {"start": 1276.17, "end": 1277.45, "word": " message", "probability": 0.57373046875}, {"start": 1277.45, "end": 1278.27, "word": " listener", "probability": 0.75}, {"start": 1278.27, "end": 1279.29, "word": " and", "probability": 0.356689453125}, {"start": 1279.29, "end": 1279.29, "word": " I", "probability": 0.36572265625}, {"start": 1279.29, "end": 1279.47, "word": " add", "probability": 0.8388671875}, {"start": 1279.47, "end": 1279.67, "word": " the", "probability": 0.6318359375}, {"start": 1279.67, "end": 1280.15, "word": " db", "probability": 0.87255859375}, {"start": 1280.15, "end": 1282.35, "word": " component", "probability": 0.86474609375}, {"start": 1282.35, "end": 1282.75, "word": " I", "probability": 0.1590576171875}, {"start": 1282.75, "end": 1283.47, "word": " created", "probability": 0.2052001953125}, {"start": 1283.47, "end": 1283.67, "word": " a", "probability": 0.89306640625}, {"start": 1283.67, "end": 1283.73, "word": " new", "probability": 0.89111328125}, {"start": 1283.73, "end": 1284.01, "word": " element", "probability": 0.73046875}, {"start": 1284.01, "end": 1284.47, "word": " that", "probability": 0.61328125}, {"start": 1284.47, "end": 1284.75, "word": " listens", "probability": 0.7255859375}, {"start": 1284.75, "end": 1284.91, "word": " to", "probability": 0.94287109375}, {"start": 1284.91, "end": 1285.37, "word": " events", "probability": 0.587890625}, {"start": 1285.37, "end": 1286.75, "word": " and", "probability": 0.35302734375}, {"start": 1286.75, "end": 1286.89, "word": " if", "probability": 0.87255859375}, {"start": 1286.89, "end": 1287.25, "word": " I", "probability": 0.92236328125}, {"start": 1287.25, "end": 1287.43, "word": " run", "probability": 0.56982421875}], "temperature": 1.0}, {"id": 51, "seek": 131604, "start": 1289.26, "end": 1316.04, "text": " every time you get a message you will find storing by in db storing nothing in db storing means that he works and what does he do, he gets the results and also what can we do if we don't want to make a class outside we can go to the h and say add message listener and make anonymous object of type new message", "tokens": [633, 565, 291, 483, 257, 3636, 291, 486, 915, 26085, 538, 294, 274, 65, 26085, 1825, 294, 274, 65, 26085, 1355, 300, 415, 1985, 293, 437, 775, 415, 360, 11, 415, 2170, 264, 3542, 293, 611, 437, 393, 321, 360, 498, 321, 500, 380, 528, 281, 652, 257, 1508, 2380, 321, 393, 352, 281, 264, 276, 293, 584, 909, 3636, 31569, 293, 652, 24932, 2657, 295, 2010, 777, 3636], "avg_logprob": -0.500892869915281, "compression_ratio": 1.7415730337078652, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 1289.26, "end": 1289.86, "word": " every", "probability": 0.1190185546875}, {"start": 1289.86, "end": 1289.96, "word": " time", "probability": 0.66748046875}, {"start": 1289.96, "end": 1290.04, "word": " you", "probability": 0.6533203125}, {"start": 1290.04, "end": 1290.18, "word": " get", "probability": 0.27734375}, {"start": 1290.18, "end": 1290.66, "word": " a", "probability": 0.890625}, {"start": 1290.66, "end": 1290.66, "word": " message", "probability": 0.77734375}, {"start": 1290.66, "end": 1291.36, "word": " you", "probability": 0.5556640625}, {"start": 1291.36, "end": 1291.46, "word": " will", "probability": 0.62451171875}, {"start": 1291.46, "end": 1291.66, "word": " find", "probability": 0.44970703125}, {"start": 1291.66, "end": 1292.14, "word": " storing", "probability": 0.53369140625}, {"start": 1292.14, "end": 1292.6, "word": " by", "probability": 0.40966796875}, {"start": 1292.6, "end": 1293.08, "word": " in", "probability": 0.7509765625}, {"start": 1293.08, "end": 1293.38, "word": " db", "probability": 0.6318359375}, {"start": 1293.38, "end": 1293.88, "word": " storing", "probability": 0.423583984375}, {"start": 1293.88, "end": 1294.24, "word": " nothing", "probability": 0.79345703125}, {"start": 1294.24, "end": 1294.6, "word": " in", "probability": 0.93017578125}, {"start": 1294.6, "end": 1294.98, "word": " db", "probability": 0.946533203125}, {"start": 1294.98, "end": 1295.66, "word": " storing", "probability": 0.426025390625}, {"start": 1295.66, "end": 1296.74, "word": " means", "probability": 0.41259765625}, {"start": 1296.74, "end": 1296.86, "word": " that", "probability": 0.453857421875}, {"start": 1296.86, "end": 1296.98, "word": " he", "probability": 0.273681640625}, {"start": 1296.98, "end": 1297.28, "word": " works", "probability": 0.322265625}, {"start": 1297.28, "end": 1297.66, "word": " and", "probability": 0.826171875}, {"start": 1297.66, "end": 1297.96, "word": " what", "probability": 0.386962890625}, {"start": 1297.96, "end": 1298.1, "word": " does", "probability": 0.239501953125}, {"start": 1298.1, "end": 1298.1, "word": " he", "probability": 0.94384765625}, {"start": 1298.1, "end": 1298.34, "word": " do,", "probability": 0.88134765625}, {"start": 1298.52, "end": 1298.66, "word": " he", "probability": 0.44140625}, {"start": 1298.66, "end": 1298.9, "word": " gets", "probability": 0.65087890625}, {"start": 1298.9, "end": 1300.68, "word": " the", "probability": 0.615234375}, {"start": 1300.68, "end": 1301.04, "word": " results", "probability": 0.52880859375}, {"start": 1301.04, "end": 1301.9, "word": " and", "probability": 0.302734375}, {"start": 1301.9, "end": 1303.14, "word": " also", "probability": 0.57666015625}, {"start": 1303.14, "end": 1303.34, "word": " what", "probability": 0.76171875}, {"start": 1303.34, "end": 1303.56, "word": " can", "probability": 0.57861328125}, {"start": 1303.56, "end": 1303.7, "word": " we", "probability": 0.919921875}, {"start": 1303.7, "end": 1303.94, "word": " do", "probability": 0.95947265625}, {"start": 1303.94, "end": 1304.02, "word": " if", "probability": 0.407958984375}, {"start": 1304.02, "end": 1304.18, "word": " we", "probability": 0.900390625}, {"start": 1304.18, "end": 1304.18, "word": " don't", "probability": 0.86279296875}, {"start": 1304.18, "end": 1304.44, "word": " want", "probability": 0.802734375}, {"start": 1304.44, "end": 1304.56, "word": " to", "probability": 0.9482421875}, {"start": 1304.56, "end": 1304.72, "word": " make", "probability": 0.6728515625}, {"start": 1304.72, "end": 1304.84, "word": " a", "probability": 0.611328125}, {"start": 1304.84, "end": 1305.12, "word": " class", "probability": 0.970703125}, {"start": 1305.12, "end": 1305.4, "word": " outside", "probability": 0.6611328125}, {"start": 1305.4, "end": 1305.96, "word": " we", "probability": 0.53564453125}, {"start": 1305.96, "end": 1306.2, "word": " can", "probability": 0.9052734375}, {"start": 1306.2, "end": 1306.4, "word": " go", "probability": 0.853515625}, {"start": 1306.4, "end": 1306.54, "word": " to", "probability": 0.9443359375}, {"start": 1306.54, "end": 1306.66, "word": " the", "probability": 0.62353515625}, {"start": 1306.66, "end": 1306.98, "word": " h", "probability": 0.297607421875}, {"start": 1306.98, "end": 1307.24, "word": " and", "probability": 0.77197265625}, {"start": 1307.24, "end": 1307.48, "word": " say", "probability": 0.619140625}, {"start": 1307.48, "end": 1308.0, "word": " add", "probability": 0.8857421875}, {"start": 1308.0, "end": 1309.06, "word": " message", "probability": 0.90576171875}, {"start": 1309.06, "end": 1309.48, "word": " listener", "probability": 0.79345703125}, {"start": 1309.48, "end": 1310.64, "word": " and", "probability": 0.89111328125}, {"start": 1310.64, "end": 1310.96, "word": " make", "probability": 0.66650390625}, {"start": 1310.96, "end": 1311.28, "word": " anonymous", "probability": 0.75244140625}, {"start": 1311.28, "end": 1312.28, "word": " object", "probability": 0.92333984375}, {"start": 1312.28, "end": 1313.52, "word": " of", "probability": 0.359375}, {"start": 1313.52, "end": 1313.8, "word": " type", "probability": 0.43994140625}, {"start": 1313.8, "end": 1314.26, "word": " new", "probability": 0.88330078125}, {"start": 1314.26, "end": 1316.04, "word": " message", "probability": 0.90283203125}], "temperature": 1.0}, {"id": 52, "seek": 132737, "start": 1317.33, "end": 1327.37, "text": "Listener, in the same way you used to do in JavaFX, action event with lambda expression", "tokens": [35819, 260, 11, 294, 264, 912, 636, 291, 1143, 281, 360, 294, 10745, 36092, 11, 3069, 2280, 365, 13607, 6114], "avg_logprob": -0.5796131065913609, "compression_ratio": 1.0481927710843373, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1317.33, "end": 1317.93, "word": "Listener,", "probability": 0.6444091796875}, {"start": 1318.37, "end": 1318.53, "word": " in", "probability": 0.2705078125}, {"start": 1318.53, "end": 1318.61, "word": " the", "probability": 0.8955078125}, {"start": 1318.61, "end": 1318.71, "word": " same", "probability": 0.8916015625}, {"start": 1318.71, "end": 1319.21, "word": " way", "probability": 0.89794921875}, {"start": 1319.21, "end": 1320.11, "word": " you", "probability": 0.51220703125}, {"start": 1320.11, "end": 1320.19, "word": " used", "probability": 0.1572265625}, {"start": 1320.19, "end": 1320.19, "word": " to", "probability": 0.92138671875}, {"start": 1320.19, "end": 1320.55, "word": " do", "probability": 0.457275390625}, {"start": 1320.55, "end": 1321.89, "word": " in", "probability": 0.5556640625}, {"start": 1321.89, "end": 1324.35, "word": " JavaFX,", "probability": 0.509033203125}, {"start": 1324.95, "end": 1326.09, "word": " action", "probability": 0.404296875}, {"start": 1326.09, "end": 1326.45, "word": " event", "probability": 0.81201171875}, {"start": 1326.45, "end": 1326.67, "word": " with", "probability": 0.497802734375}, {"start": 1326.67, "end": 1326.89, "word": " lambda", "probability": 0.63623046875}, {"start": 1326.89, "end": 1327.37, "word": " expression", "probability": 0.87744140625}], "temperature": 1.0}, {"id": 53, "seek": 135225, "start": 1331.37, "end": 1352.25, "text": "I wasn't doing an action event, okay? Actually, the idea of ​​the button is like the idea of ​​the network message hander The button comes and tells you that I am delivering an invitation to whom listens to me The frame X or the screen Y or whatever that wants to register with me to the button and hear from me must be the kind of action event", "tokens": [40, 2067, 380, 884, 364, 3069, 2280, 11, 1392, 30, 5135, 11, 264, 1558, 295, 8701, 3322, 2960, 307, 411, 264, 1558, 295, 8701, 3322, 3209, 3636, 1011, 260, 440, 2960, 1487, 293, 5112, 291, 300, 286, 669, 14666, 364, 17890, 281, 7101, 35959, 281, 385, 440, 3920, 1783, 420, 264, 2568, 398, 420, 2035, 300, 2738, 281, 7280, 365, 385, 281, 264, 2960, 293, 1568, 490, 385, 1633, 312, 264, 733, 295, 3069, 2280], "avg_logprob": -0.5316611771520815, "compression_ratio": 1.644859813084112, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 1331.37, "end": 1331.57, "word": "I", "probability": 0.322265625}, {"start": 1331.57, "end": 1331.75, "word": " wasn't", "probability": 0.62890625}, {"start": 1331.75, "end": 1332.03, "word": " doing", "probability": 0.55224609375}, {"start": 1332.03, "end": 1332.15, "word": " an", "probability": 0.5732421875}, {"start": 1332.15, "end": 1332.37, "word": " action", "probability": 0.755859375}, {"start": 1332.37, "end": 1332.81, "word": " event,", "probability": 0.84619140625}, {"start": 1332.99, "end": 1333.65, "word": " okay?", "probability": 0.218017578125}, {"start": 1334.21, "end": 1334.65, "word": " Actually,", "probability": 0.390625}, {"start": 1335.23, "end": 1335.51, "word": " the", "probability": 0.85400390625}, {"start": 1335.51, "end": 1336.41, "word": " idea", "probability": 0.7158203125}, {"start": 1336.41, "end": 1336.61, "word": " of", "probability": 0.87353515625}, {"start": 1336.61, "end": 1336.73, "word": " ​​the", "probability": 0.411376953125}, {"start": 1336.73, "end": 1337.05, "word": " button", "probability": 0.638671875}, {"start": 1337.05, "end": 1337.57, "word": " is", "probability": 0.69580078125}, {"start": 1337.57, "end": 1337.67, "word": " like", "probability": 0.51513671875}, {"start": 1337.67, "end": 1337.81, "word": " the", "probability": 0.71875}, {"start": 1337.81, "end": 1337.97, "word": " idea", "probability": 0.88916015625}, {"start": 1337.97, "end": 1338.11, "word": " of", "probability": 0.97119140625}, {"start": 1338.11, "end": 1338.17, "word": " ​​the", "probability": 0.6737060546875}, {"start": 1338.17, "end": 1338.45, "word": " network", "probability": 0.77490234375}, {"start": 1338.45, "end": 1338.79, "word": " message", "probability": 0.62109375}, {"start": 1338.79, "end": 1339.15, "word": " hander", "probability": 0.5338134765625}, {"start": 1339.15, "end": 1339.29, "word": " The", "probability": 0.40283203125}, {"start": 1339.29, "end": 1339.53, "word": " button", "probability": 0.7578125}, {"start": 1339.53, "end": 1339.69, "word": " comes", "probability": 0.56201171875}, {"start": 1339.69, "end": 1339.83, "word": " and", "probability": 0.76904296875}, {"start": 1339.83, "end": 1339.99, "word": " tells", "probability": 0.5302734375}, {"start": 1339.99, "end": 1340.13, "word": " you", "probability": 0.86328125}, {"start": 1340.13, "end": 1340.63, "word": " that", "probability": 0.2481689453125}, {"start": 1340.63, "end": 1340.63, "word": " I", "probability": 0.65625}, {"start": 1340.63, "end": 1341.05, "word": " am", "probability": 0.4072265625}, {"start": 1341.05, "end": 1341.43, "word": " delivering", "probability": 0.2783203125}, {"start": 1341.43, "end": 1341.91, "word": " an", "probability": 0.2139892578125}, {"start": 1341.91, "end": 1342.31, "word": " invitation", "probability": 0.71435546875}, {"start": 1342.31, "end": 1342.57, "word": " to", "probability": 0.412353515625}, {"start": 1342.57, "end": 1342.63, "word": " whom", "probability": 0.401123046875}, {"start": 1342.63, "end": 1342.97, "word": " listens", "probability": 0.244873046875}, {"start": 1342.97, "end": 1343.09, "word": " to", "probability": 0.9462890625}, {"start": 1343.09, "end": 1343.27, "word": " me", "probability": 0.8583984375}, {"start": 1343.27, "end": 1343.79, "word": " The", "probability": 0.475830078125}, {"start": 1343.79, "end": 1344.43, "word": " frame", "probability": 0.5830078125}, {"start": 1344.43, "end": 1344.77, "word": " X", "probability": 0.64404296875}, {"start": 1344.77, "end": 1345.07, "word": " or", "probability": 0.80126953125}, {"start": 1345.07, "end": 1345.23, "word": " the", "probability": 0.68994140625}, {"start": 1345.23, "end": 1345.41, "word": " screen", "probability": 0.7705078125}, {"start": 1345.41, "end": 1345.81, "word": " Y", "probability": 0.9775390625}, {"start": 1345.81, "end": 1345.99, "word": " or", "probability": 0.87158203125}, {"start": 1345.99, "end": 1346.43, "word": " whatever", "probability": 0.9111328125}, {"start": 1346.43, "end": 1346.99, "word": " that", "probability": 0.3447265625}, {"start": 1346.99, "end": 1347.17, "word": " wants", "probability": 0.420166015625}, {"start": 1347.17, "end": 1347.31, "word": " to", "probability": 0.96240234375}, {"start": 1347.31, "end": 1347.55, "word": " register", "probability": 0.556640625}, {"start": 1347.55, "end": 1347.77, "word": " with", "probability": 0.591796875}, {"start": 1347.77, "end": 1347.85, "word": " me", "probability": 0.5107421875}, {"start": 1347.85, "end": 1347.93, "word": " to", "probability": 0.396484375}, {"start": 1347.93, "end": 1348.03, "word": " the", "probability": 0.87158203125}, {"start": 1348.03, "end": 1348.25, "word": " button", "probability": 0.876953125}, {"start": 1348.25, "end": 1348.37, "word": " and", "probability": 0.490234375}, {"start": 1348.37, "end": 1348.57, "word": " hear", "probability": 0.25927734375}, {"start": 1348.57, "end": 1348.73, "word": " from", "probability": 0.69384765625}, {"start": 1348.73, "end": 1348.91, "word": " me", "probability": 0.92626953125}, {"start": 1348.91, "end": 1349.11, "word": " must", "probability": 0.5048828125}, {"start": 1349.11, "end": 1349.39, "word": " be", "probability": 0.9501953125}, {"start": 1349.39, "end": 1349.51, "word": " the", "probability": 0.39697265625}, {"start": 1349.51, "end": 1349.77, "word": " kind", "probability": 0.53662109375}, {"start": 1349.77, "end": 1351.33, "word": " of", "probability": 0.93994140625}, {"start": 1351.33, "end": 1351.81, "word": " action", "probability": 0.91064453125}, {"start": 1351.81, "end": 1352.25, "word": " event", "probability": 0.8681640625}], "temperature": 1.0}, {"id": 54, "seek": 137519, "start": 1353.15, "end": 1375.19, "text": " Not in what is called an action event So you go to the button and you create inside it an object of the action event type Who is going to listen to the button? The anonymous object that you created As soon as the button makes a change to itself and makes a loop on the list that it has Which is all from what type? What is the list that the button has? From the action event type and it creates a value called", "tokens": [1726, 294, 437, 307, 1219, 364, 3069, 2280, 407, 291, 352, 281, 264, 2960, 293, 291, 1884, 1854, 309, 364, 2657, 295, 264, 3069, 2280, 2010, 2102, 307, 516, 281, 2140, 281, 264, 2960, 30, 440, 24932, 2657, 300, 291, 2942, 1018, 2321, 382, 264, 2960, 1669, 257, 1319, 281, 2564, 293, 1669, 257, 6367, 322, 264, 1329, 300, 309, 575, 3013, 307, 439, 490, 437, 2010, 30, 708, 307, 264, 1329, 300, 264, 2960, 575, 30, 3358, 264, 3069, 2280, 2010, 293, 309, 7829, 257, 2158, 1219], "avg_logprob": -0.5768960513425677, "compression_ratio": 1.9158878504672898, "no_speech_prob": 5.185604095458984e-06, "words": [{"start": 1353.15, "end": 1353.39, "word": " Not", "probability": 0.10943603515625}, {"start": 1353.39, "end": 1353.55, "word": " in", "probability": 0.386474609375}, {"start": 1353.55, "end": 1353.71, "word": " what", "probability": 0.328369140625}, {"start": 1353.71, "end": 1353.83, "word": " is", "probability": 0.44189453125}, {"start": 1353.83, "end": 1353.99, "word": " called", "probability": 0.7529296875}, {"start": 1353.99, "end": 1354.07, "word": " an", "probability": 0.43994140625}, {"start": 1354.07, "end": 1354.27, "word": " action", "probability": 0.65185546875}, {"start": 1354.27, "end": 1354.59, "word": " event", "probability": 0.8603515625}, {"start": 1354.59, "end": 1355.33, "word": " So", "probability": 0.46923828125}, {"start": 1355.33, "end": 1355.49, "word": " you", "probability": 0.642578125}, {"start": 1355.49, "end": 1355.63, "word": " go", "probability": 0.7109375}, {"start": 1355.63, "end": 1355.77, "word": " to", "probability": 0.8623046875}, {"start": 1355.77, "end": 1355.85, "word": " the", "probability": 0.84423828125}, {"start": 1355.85, "end": 1356.09, "word": " button", "probability": 0.80078125}, {"start": 1356.09, "end": 1356.55, "word": " and", "probability": 0.70654296875}, {"start": 1356.55, "end": 1356.63, "word": " you", "probability": 0.2174072265625}, {"start": 1356.63, "end": 1356.93, "word": " create", "probability": 0.64892578125}, {"start": 1356.93, "end": 1357.25, "word": " inside", "probability": 0.3408203125}, {"start": 1357.25, "end": 1357.47, "word": " it", "probability": 0.340087890625}, {"start": 1357.47, "end": 1357.55, "word": " an", "probability": 0.826171875}, {"start": 1357.55, "end": 1357.79, "word": " object", "probability": 0.81103515625}, {"start": 1357.79, "end": 1357.95, "word": " of", "probability": 0.58642578125}, {"start": 1357.95, "end": 1358.05, "word": " the", "probability": 0.33935546875}, {"start": 1358.05, "end": 1358.41, "word": " action", "probability": 0.5546875}, {"start": 1358.41, "end": 1358.77, "word": " event", "probability": 0.861328125}, {"start": 1358.77, "end": 1358.81, "word": " type", "probability": 0.496826171875}, {"start": 1358.81, "end": 1359.69, "word": " Who", "probability": 0.26318359375}, {"start": 1359.69, "end": 1359.87, "word": " is", "probability": 0.172607421875}, {"start": 1359.87, "end": 1359.93, "word": " going", "probability": 0.359619140625}, {"start": 1359.93, "end": 1359.93, "word": " to", "probability": 0.97265625}, {"start": 1359.93, "end": 1360.17, "word": " listen", "probability": 0.52734375}, {"start": 1360.17, "end": 1360.31, "word": " to", "probability": 0.9248046875}, {"start": 1360.31, "end": 1360.41, "word": " the", "probability": 0.78466796875}, {"start": 1360.41, "end": 1360.73, "word": " button?", "probability": 0.82421875}, {"start": 1361.59, "end": 1361.97, "word": " The", "probability": 0.38818359375}, {"start": 1361.97, "end": 1362.91, "word": " anonymous", "probability": 0.453857421875}, {"start": 1362.91, "end": 1362.91, "word": " object", "probability": 0.93310546875}, {"start": 1362.91, "end": 1363.27, "word": " that", "probability": 0.5634765625}, {"start": 1363.27, "end": 1363.45, "word": " you", "probability": 0.94091796875}, {"start": 1363.45, "end": 1363.77, "word": " created", "probability": 0.474853515625}, {"start": 1363.77, "end": 1364.69, "word": " As", "probability": 0.56103515625}, {"start": 1364.69, "end": 1364.97, "word": " soon", "probability": 0.9326171875}, {"start": 1364.97, "end": 1365.13, "word": " as", "probability": 0.9677734375}, {"start": 1365.13, "end": 1365.29, "word": " the", "probability": 0.83984375}, {"start": 1365.29, "end": 1365.49, "word": " button", "probability": 0.8798828125}, {"start": 1365.49, "end": 1365.77, "word": " makes", "probability": 0.10186767578125}, {"start": 1365.77, "end": 1365.99, "word": " a", "probability": 0.8740234375}, {"start": 1365.99, "end": 1366.49, "word": " change", "probability": 0.869140625}, {"start": 1366.49, "end": 1367.81, "word": " to", "probability": 0.466796875}, {"start": 1367.81, "end": 1368.11, "word": " itself", "probability": 0.5712890625}, {"start": 1368.11, "end": 1368.19, "word": " and", "probability": 0.70166015625}, {"start": 1368.19, "end": 1368.37, "word": " makes", "probability": 0.1845703125}, {"start": 1368.37, "end": 1368.57, "word": " a", "probability": 0.90771484375}, {"start": 1368.57, "end": 1368.65, "word": " loop", "probability": 0.9580078125}, {"start": 1368.65, "end": 1368.81, "word": " on", "probability": 0.65771484375}, {"start": 1368.81, "end": 1368.87, "word": " the", "probability": 0.62744140625}, {"start": 1368.87, "end": 1369.13, "word": " list", "probability": 0.74072265625}, {"start": 1369.13, "end": 1369.27, "word": " that", "probability": 0.53466796875}, {"start": 1369.27, "end": 1369.29, "word": " it", "probability": 0.56396484375}, {"start": 1369.29, "end": 1369.67, "word": " has", "probability": 0.89208984375}, {"start": 1369.67, "end": 1370.29, "word": " Which", "probability": 0.447021484375}, {"start": 1370.29, "end": 1370.43, "word": " is", "probability": 0.79296875}, {"start": 1370.43, "end": 1370.61, "word": " all", "probability": 0.62451171875}, {"start": 1370.61, "end": 1370.77, "word": " from", "probability": 0.271484375}, {"start": 1370.77, "end": 1370.99, "word": " what", "probability": 0.287353515625}, {"start": 1370.99, "end": 1370.99, "word": " type?", "probability": 0.59033203125}, {"start": 1371.05, "end": 1371.19, "word": " What", "probability": 0.497314453125}, {"start": 1371.19, "end": 1371.25, "word": " is", "probability": 0.70556640625}, {"start": 1371.25, "end": 1371.27, "word": " the", "probability": 0.8974609375}, {"start": 1371.27, "end": 1371.53, "word": " list", "probability": 0.697265625}, {"start": 1371.53, "end": 1371.71, "word": " that", "probability": 0.7001953125}, {"start": 1371.71, "end": 1371.89, "word": " the", "probability": 0.63427734375}, {"start": 1371.89, "end": 1372.15, "word": " button", "probability": 0.8837890625}, {"start": 1372.15, "end": 1372.19, "word": " has?", "probability": 0.91845703125}, {"start": 1372.81, "end": 1373.19, "word": " From", "probability": 0.238525390625}, {"start": 1373.19, "end": 1373.43, "word": " the", "probability": 0.5107421875}, {"start": 1373.43, "end": 1373.59, "word": " action", "probability": 0.6904296875}, {"start": 1373.59, "end": 1373.97, "word": " event", "probability": 0.8662109375}, {"start": 1373.97, "end": 1373.97, "word": " type", "probability": 0.93359375}, {"start": 1373.97, "end": 1374.13, "word": " and", "probability": 0.46435546875}, {"start": 1374.13, "end": 1374.23, "word": " it", "probability": 0.447265625}, {"start": 1374.23, "end": 1374.47, "word": " creates", "probability": 0.11334228515625}, {"start": 1374.47, "end": 1374.73, "word": " a", "probability": 0.81689453125}, {"start": 1374.73, "end": 1374.87, "word": " value", "probability": 0.28369140625}, {"start": 1374.87, "end": 1375.19, "word": " called", "probability": 0.56591796875}], "temperature": 1.0}, {"id": 55, "seek": 140523, "start": 1376.63, "end": 1405.23, "text": " What is it called? Handle Right? Okay? The idea is the same This ad message listener creates a loop on all the message listeners it has and calls this to update So I have four things registered now listening to the network message listener which is the UI, the logger, the DB component and anonymous object Okay? Here you put the code that wants to be executed", "tokens": [708, 307, 309, 1219, 30, 8854, 306, 1779, 30, 1033, 30, 440, 1558, 307, 264, 912, 639, 614, 3636, 31569, 7829, 257, 6367, 322, 439, 264, 3636, 23274, 309, 575, 293, 5498, 341, 281, 5623, 407, 286, 362, 1451, 721, 13968, 586, 4764, 281, 264, 3209, 3636, 31569, 597, 307, 264, 15682, 11, 264, 3565, 1321, 11, 264, 26754, 6542, 293, 24932, 2657, 1033, 30, 1692, 291, 829, 264, 3089, 300, 2738, 281, 312, 17577], "avg_logprob": -0.5999177498252768, "compression_ratio": 1.6409090909090909, "no_speech_prob": 2.0265579223632812e-06, "words": [{"start": 1376.63, "end": 1376.87, "word": " What", "probability": 0.2626953125}, {"start": 1376.87, "end": 1376.87, "word": " is", "probability": 0.50927734375}, {"start": 1376.87, "end": 1377.17, "word": " it", "probability": 0.52978515625}, {"start": 1377.17, "end": 1377.17, "word": " called?", "probability": 0.8603515625}, {"start": 1377.91, "end": 1378.55, "word": " Handle", "probability": 0.821044921875}, {"start": 1378.55, "end": 1379.93, "word": " Right?", "probability": 0.452880859375}, {"start": 1380.33, "end": 1380.95, "word": " Okay?", "probability": 0.152099609375}, {"start": 1381.23, "end": 1381.43, "word": " The", "probability": 0.68115234375}, {"start": 1381.43, "end": 1381.61, "word": " idea", "probability": 0.79052734375}, {"start": 1381.61, "end": 1381.67, "word": " is", "probability": 0.9267578125}, {"start": 1381.67, "end": 1381.99, "word": " the", "probability": 0.783203125}, {"start": 1381.99, "end": 1381.99, "word": " same", "probability": 0.9111328125}, {"start": 1381.99, "end": 1382.49, "word": " This", "probability": 0.1390380859375}, {"start": 1382.49, "end": 1383.51, "word": " ad", "probability": 0.224853515625}, {"start": 1383.51, "end": 1383.91, "word": " message", "probability": 0.64453125}, {"start": 1383.91, "end": 1384.39, "word": " listener", "probability": 0.85400390625}, {"start": 1384.39, "end": 1385.13, "word": " creates", "probability": 0.2293701171875}, {"start": 1385.13, "end": 1385.35, "word": " a", "probability": 0.85400390625}, {"start": 1385.35, "end": 1385.51, "word": " loop", "probability": 0.92333984375}, {"start": 1385.51, "end": 1385.73, "word": " on", "probability": 0.480224609375}, {"start": 1385.73, "end": 1385.99, "word": " all", "probability": 0.82373046875}, {"start": 1385.99, "end": 1386.05, "word": " the", "probability": 0.27294921875}, {"start": 1386.05, "end": 1386.29, "word": " message", "probability": 0.470703125}, {"start": 1386.29, "end": 1386.73, "word": " listeners", "probability": 0.87548828125}, {"start": 1386.73, "end": 1386.87, "word": " it", "probability": 0.2305908203125}, {"start": 1386.87, "end": 1387.19, "word": " has", "probability": 0.89013671875}, {"start": 1387.19, "end": 1387.35, "word": " and", "probability": 0.356201171875}, {"start": 1387.35, "end": 1387.63, "word": " calls", "probability": 0.20703125}, {"start": 1387.63, "end": 1387.97, "word": " this", "probability": 0.32080078125}, {"start": 1387.97, "end": 1388.11, "word": " to", "probability": 0.50830078125}, {"start": 1388.11, "end": 1389.35, "word": " update", "probability": 0.77685546875}, {"start": 1389.35, "end": 1389.99, "word": " So", "probability": 0.1900634765625}, {"start": 1389.99, "end": 1390.23, "word": " I", "probability": 0.49658203125}, {"start": 1390.23, "end": 1390.61, "word": " have", "probability": 0.84228515625}, {"start": 1390.61, "end": 1391.29, "word": " four", "probability": 0.5888671875}, {"start": 1391.29, "end": 1391.87, "word": " things", "probability": 0.468994140625}, {"start": 1391.87, "end": 1392.39, "word": " registered", "probability": 0.388671875}, {"start": 1392.39, "end": 1392.81, "word": " now", "probability": 0.370361328125}, {"start": 1392.81, "end": 1393.23, "word": " listening", "probability": 0.344482421875}, {"start": 1393.23, "end": 1394.27, "word": " to", "probability": 0.9404296875}, {"start": 1394.27, "end": 1394.39, "word": " the", "probability": 0.7744140625}, {"start": 1394.39, "end": 1394.69, "word": " network", "probability": 0.83642578125}, {"start": 1394.69, "end": 1394.97, "word": " message", "probability": 0.8515625}, {"start": 1394.97, "end": 1395.33, "word": " listener", "probability": 0.8115234375}, {"start": 1395.33, "end": 1395.55, "word": " which", "probability": 0.417724609375}, {"start": 1395.55, "end": 1395.69, "word": " is", "probability": 0.66064453125}, {"start": 1395.69, "end": 1395.79, "word": " the", "probability": 0.623046875}, {"start": 1395.79, "end": 1396.15, "word": " UI,", "probability": 0.8828125}, {"start": 1397.05, "end": 1397.11, "word": " the", "probability": 0.306640625}, {"start": 1397.11, "end": 1397.47, "word": " logger,", "probability": 0.767578125}, {"start": 1397.71, "end": 1397.83, "word": " the", "probability": 0.87353515625}, {"start": 1397.83, "end": 1398.09, "word": " DB", "probability": 0.716796875}, {"start": 1398.09, "end": 1398.85, "word": " component", "probability": 0.81640625}, {"start": 1398.85, "end": 1399.09, "word": " and", "probability": 0.650390625}, {"start": 1399.09, "end": 1399.43, "word": " anonymous", "probability": 0.50439453125}, {"start": 1399.43, "end": 1400.11, "word": " object", "probability": 0.8759765625}, {"start": 1400.11, "end": 1401.05, "word": " Okay?", "probability": 0.27197265625}, {"start": 1402.59, "end": 1403.05, "word": " Here", "probability": 0.397216796875}, {"start": 1403.05, "end": 1403.21, "word": " you", "probability": 0.435791015625}, {"start": 1403.21, "end": 1403.45, "word": " put", "probability": 0.3798828125}, {"start": 1403.45, "end": 1403.97, "word": " the", "probability": 0.340576171875}, {"start": 1403.97, "end": 1404.37, "word": " code", "probability": 0.8828125}, {"start": 1404.37, "end": 1404.47, "word": " that", "probability": 0.7353515625}, {"start": 1404.47, "end": 1404.69, "word": " wants", "probability": 0.263427734375}, {"start": 1404.69, "end": 1404.79, "word": " to", "probability": 0.94970703125}, {"start": 1404.79, "end": 1404.89, "word": " be", "probability": 0.468505859375}, {"start": 1404.89, "end": 1405.23, "word": " executed", "probability": 0.85400390625}], "temperature": 1.0}, {"id": 56, "seek": 143589, "start": 1408.53, "end": 1435.89, "text": " So what you see in the pattern and in the UI is an application for what? For the observer pattern. Is this example clear? Let's go to the slides. This is the first slide we read. When do we use the observer pattern? These are the cases where we use the observer pattern.", "tokens": [407, 437, 291, 536, 294, 264, 5102, 293, 294, 264, 15682, 307, 364, 3861, 337, 437, 30, 1171, 264, 27878, 5102, 13, 1119, 341, 1365, 1850, 30, 961, 311, 352, 281, 264, 9788, 13, 639, 307, 264, 700, 4137, 321, 1401, 13, 1133, 360, 321, 764, 264, 27878, 5102, 30, 1981, 366, 264, 3331, 689, 321, 764, 264, 27878, 5102, 13], "avg_logprob": -0.49899191241110524, "compression_ratio": 1.7044025157232705, "no_speech_prob": 7.033348083496094e-06, "words": [{"start": 1408.5300000000002, "end": 1409.0900000000001, "word": " So", "probability": 0.051025390625}, {"start": 1409.0900000000001, "end": 1409.65, "word": " what", "probability": 0.277587890625}, {"start": 1409.65, "end": 1409.93, "word": " you", "probability": 0.7998046875}, {"start": 1409.93, "end": 1410.43, "word": " see", "probability": 0.255126953125}, {"start": 1410.43, "end": 1410.79, "word": " in", "probability": 0.6396484375}, {"start": 1410.79, "end": 1410.91, "word": " the", "probability": 0.50537109375}, {"start": 1410.91, "end": 1411.15, "word": " pattern", "probability": 0.78955078125}, {"start": 1411.15, "end": 1411.31, "word": " and", "probability": 0.5322265625}, {"start": 1411.31, "end": 1411.37, "word": " in", "probability": 0.265869140625}, {"start": 1411.37, "end": 1411.39, "word": " the", "probability": 0.80859375}, {"start": 1411.39, "end": 1411.83, "word": " UI", "probability": 0.85888671875}, {"start": 1411.83, "end": 1412.25, "word": " is", "probability": 0.64453125}, {"start": 1412.25, "end": 1412.45, "word": " an", "probability": 0.32421875}, {"start": 1412.45, "end": 1412.73, "word": " application", "probability": 0.7275390625}, {"start": 1412.73, "end": 1412.91, "word": " for", "probability": 0.50927734375}, {"start": 1412.91, "end": 1413.15, "word": " what?", "probability": 0.2841796875}, {"start": 1413.75, "end": 1414.25, "word": " For", "probability": 0.4033203125}, {"start": 1414.25, "end": 1414.39, "word": " the", "probability": 0.7421875}, {"start": 1414.39, "end": 1414.75, "word": " observer", "probability": 0.5400390625}, {"start": 1414.75, "end": 1415.73, "word": " pattern.", "probability": 0.89599609375}, {"start": 1423.09, "end": 1423.65, "word": " Is", "probability": 0.6201171875}, {"start": 1423.65, "end": 1423.69, "word": " this", "probability": 0.6513671875}, {"start": 1423.69, "end": 1424.29, "word": " example", "probability": 0.892578125}, {"start": 1424.29, "end": 1424.31, "word": " clear?", "probability": 0.8466796875}, {"start": 1424.55, "end": 1425.01, "word": " Let's", "probability": 0.6466064453125}, {"start": 1425.01, "end": 1426.53, "word": " go", "probability": 0.398681640625}, {"start": 1426.53, "end": 1426.73, "word": " to", "probability": 0.5029296875}, {"start": 1426.73, "end": 1427.13, "word": " the", "probability": 0.81396484375}, {"start": 1427.13, "end": 1427.61, "word": " slides.", "probability": 0.78564453125}, {"start": 1427.89, "end": 1428.11, "word": " This", "probability": 0.7041015625}, {"start": 1428.11, "end": 1428.15, "word": " is", "probability": 0.900390625}, {"start": 1428.15, "end": 1428.27, "word": " the", "probability": 0.91455078125}, {"start": 1428.27, "end": 1428.73, "word": " first", "probability": 0.87158203125}, {"start": 1428.73, "end": 1428.73, "word": " slide", "probability": 0.88134765625}, {"start": 1428.73, "end": 1428.81, "word": " we", "probability": 0.476318359375}, {"start": 1428.81, "end": 1429.09, "word": " read.", "probability": 0.7060546875}, {"start": 1431.21, "end": 1431.77, "word": " When", "probability": 0.270751953125}, {"start": 1431.77, "end": 1431.99, "word": " do", "probability": 0.60595703125}, {"start": 1431.99, "end": 1432.01, "word": " we", "probability": 0.91748046875}, {"start": 1432.01, "end": 1432.33, "word": " use", "probability": 0.88232421875}, {"start": 1432.33, "end": 1432.47, "word": " the", "probability": 0.72216796875}, {"start": 1432.47, "end": 1432.83, "word": " observer", "probability": 0.7724609375}, {"start": 1432.83, "end": 1433.19, "word": " pattern?", "probability": 0.8876953125}, {"start": 1433.65, "end": 1433.97, "word": " These", "probability": 0.5712890625}, {"start": 1433.97, "end": 1434.03, "word": " are", "probability": 0.8544921875}, {"start": 1434.03, "end": 1434.07, "word": " the", "probability": 0.82080078125}, {"start": 1434.07, "end": 1434.35, "word": " cases", "probability": 0.83203125}, {"start": 1434.35, "end": 1434.49, "word": " where", "probability": 0.52197265625}, {"start": 1434.49, "end": 1434.53, "word": " we", "probability": 0.90771484375}, {"start": 1434.53, "end": 1434.95, "word": " use", "probability": 0.8623046875}, {"start": 1434.95, "end": 1435.15, "word": " the", "probability": 0.736328125}, {"start": 1435.15, "end": 1435.49, "word": " observer", "probability": 0.82373046875}, {"start": 1435.49, "end": 1435.89, "word": " pattern.", "probability": 0.87890625}], "temperature": 1.0}, {"id": 57, "seek": 145770, "start": 1436.94, "end": 1457.7, "text": "والحاجة one and abstraction has two aspects one dependent on the other encapsulating these aspects in separate objects lets you vary and reuse them independently يعني مش شرط العلاقة تكون one to many ممكن يكون عندك two classes معتمدين على بعض في علاقة association موجودة بينهم", "tokens": [2407, 6027, 5016, 26108, 3660, 472, 293, 37765, 575, 732, 7270, 472, 12334, 322, 264, 661, 38745, 12162, 613, 7270, 294, 4994, 6565, 6653, 291, 10559, 293, 26225, 552, 21761, 37495, 22653, 37893, 13412, 2288, 9566, 18863, 15040, 28671, 6055, 30544, 472, 281, 867, 3714, 43020, 7251, 30544, 43242, 4117, 732, 5359, 3714, 34268, 2304, 3215, 9957, 15844, 45030, 11242, 8978, 11203, 995, 28671, 14598, 3714, 29245, 23328, 3660, 49374, 16095], "avg_logprob": -0.16026475301219356, "compression_ratio": 1.4870689655172413, "no_speech_prob": 0.0, "words": [{"start": 1436.94, "end": 1437.64, "word": "والحاجة", "probability": 0.7890380859375}, {"start": 1437.64, "end": 1437.82, "word": " one", "probability": 0.275390625}, {"start": 1437.82, "end": 1437.98, "word": " and", "probability": 0.84619140625}, {"start": 1437.98, "end": 1438.54, "word": " abstraction", "probability": 0.73974609375}, {"start": 1438.54, "end": 1438.9, "word": " has", "probability": 0.86474609375}, {"start": 1438.9, "end": 1439.12, "word": " two", "probability": 0.92578125}, {"start": 1439.12, "end": 1439.72, "word": " aspects", "probability": 0.89404296875}, {"start": 1439.72, "end": 1440.46, "word": " one", "probability": 0.393798828125}, {"start": 1440.46, "end": 1440.9, "word": " dependent", "probability": 0.8857421875}, {"start": 1440.9, "end": 1441.26, "word": " on", "probability": 0.94091796875}, {"start": 1441.26, "end": 1441.36, "word": " the", "probability": 0.8916015625}, {"start": 1441.36, "end": 1441.66, "word": " other", "probability": 0.89892578125}, {"start": 1441.66, "end": 1443.16, "word": " encapsulating", "probability": 0.771484375}, {"start": 1443.16, "end": 1443.48, "word": " these", "probability": 0.87060546875}, {"start": 1443.48, "end": 1443.98, "word": " aspects", "probability": 0.86279296875}, {"start": 1443.98, "end": 1444.22, "word": " in", "probability": 0.94482421875}, {"start": 1444.22, "end": 1444.58, "word": " separate", "probability": 0.92529296875}, {"start": 1444.58, "end": 1445.02, "word": " objects", "probability": 0.95947265625}, {"start": 1445.02, "end": 1445.3, "word": " lets", "probability": 0.80224609375}, {"start": 1445.3, "end": 1445.56, "word": " you", "probability": 0.9619140625}, {"start": 1445.56, "end": 1445.8, "word": " vary", "probability": 0.91455078125}, {"start": 1445.8, "end": 1446.04, "word": " and", "probability": 0.93212890625}, {"start": 1446.04, "end": 1446.4, "word": " reuse", "probability": 0.9169921875}, {"start": 1446.4, "end": 1446.8, "word": " them", "probability": 0.90869140625}, {"start": 1446.8, "end": 1448.12, "word": " independently", "probability": 0.90380859375}, {"start": 1448.12, "end": 1449.22, "word": " يعني", "probability": 0.7890625}, {"start": 1449.22, "end": 1449.42, "word": " مش", "probability": 0.98828125}, {"start": 1449.42, "end": 1449.66, "word": " شرط", "probability": 0.9796549479166666}, {"start": 1449.66, "end": 1450.02, "word": " العلاقة", "probability": 0.9679361979166666}, {"start": 1450.02, "end": 1450.22, "word": " تكون", "probability": 0.959716796875}, {"start": 1450.22, "end": 1450.42, "word": " one", "probability": 0.96826171875}, {"start": 1450.42, "end": 1450.54, "word": " to", "probability": 0.89111328125}, {"start": 1450.54, "end": 1450.74, "word": " many", "probability": 0.935546875}, {"start": 1450.74, "end": 1451.04, "word": " ممكن", "probability": 0.886474609375}, {"start": 1451.04, "end": 1451.24, "word": " يكون", "probability": 0.956298828125}, {"start": 1451.24, "end": 1451.54, "word": " عندك", "probability": 0.97509765625}, {"start": 1451.54, "end": 1451.88, "word": " two", "probability": 0.9345703125}, {"start": 1451.88, "end": 1453.12, "word": " classes", "probability": 0.92724609375}, {"start": 1453.12, "end": 1454.02, "word": " معتمدين", "probability": 0.94345703125}, {"start": 1454.02, "end": 1454.16, "word": " على", "probability": 0.82958984375}, {"start": 1454.16, "end": 1454.58, "word": " بعض", "probability": 0.99365234375}, {"start": 1454.58, "end": 1455.14, "word": " في", "probability": 0.8486328125}, {"start": 1455.14, "end": 1455.54, "word": " علاقة", "probability": 0.755615234375}, {"start": 1455.54, "end": 1456.28, "word": " association", "probability": 0.81591796875}, {"start": 1456.28, "end": 1457.38, "word": " موجودة", "probability": 0.9844970703125}, {"start": 1457.38, "end": 1457.7, "word": " بينهم", "probability": 0.96435546875}], "temperature": 1.0}, {"id": 58, "seek": 148520, "start": 1458.52, "end": 1485.2, "text": "because by default or in the normal situation this is an association relationship which means that they want to get a proof for example here this is dependency so you can send it through set method or through constructor but of course now they are dependent on each other which means that you can take this in a new class application without taking this with it no you can't right or no? this is A and this is B", "tokens": [17566, 538, 7576, 420, 294, 264, 2710, 2590, 341, 307, 364, 14598, 2480, 597, 1355, 300, 436, 528, 281, 483, 257, 8177, 337, 1365, 510, 341, 307, 33621, 370, 291, 393, 2845, 309, 807, 992, 3170, 420, 807, 47479, 457, 295, 1164, 586, 436, 366, 12334, 322, 1184, 661, 597, 1355, 300, 291, 393, 747, 341, 294, 257, 777, 1508, 3861, 1553, 1940, 341, 365, 309, 572, 291, 393, 380, 558, 420, 572, 30, 341, 307, 316, 293, 341, 307, 363], "avg_logprob": -0.5628810895652305, "compression_ratio": 1.8185840707964602, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1458.52, "end": 1458.86, "word": "because", "probability": 0.19384765625}, {"start": 1458.86, "end": 1459.08, "word": " by", "probability": 0.85986328125}, {"start": 1459.08, "end": 1459.52, "word": " default", "probability": 0.97998046875}, {"start": 1459.52, "end": 1459.98, "word": " or", "probability": 0.15087890625}, {"start": 1459.98, "end": 1460.08, "word": " in", "probability": 0.6806640625}, {"start": 1460.08, "end": 1460.16, "word": " the", "probability": 0.40673828125}, {"start": 1460.16, "end": 1460.62, "word": " normal", "probability": 0.51904296875}, {"start": 1460.62, "end": 1460.8, "word": " situation", "probability": 0.53125}, {"start": 1460.8, "end": 1461.5, "word": " this", "probability": 0.347412109375}, {"start": 1461.5, "end": 1461.74, "word": " is", "probability": 0.40283203125}, {"start": 1461.74, "end": 1463.34, "word": " an", "probability": 0.31884765625}, {"start": 1463.34, "end": 1463.94, "word": " association", "probability": 0.89404296875}, {"start": 1463.94, "end": 1463.94, "word": " relationship", "probability": 0.53564453125}, {"start": 1463.94, "end": 1464.34, "word": " which", "probability": 0.15087890625}, {"start": 1464.34, "end": 1464.34, "word": " means", "probability": 0.89501953125}, {"start": 1464.34, "end": 1464.48, "word": " that", "probability": 0.3427734375}, {"start": 1464.48, "end": 1464.48, "word": " they", "probability": 0.41357421875}, {"start": 1464.48, "end": 1464.66, "word": " want", "probability": 0.357421875}, {"start": 1464.66, "end": 1464.68, "word": " to", "probability": 0.95263671875}, {"start": 1464.68, "end": 1464.88, "word": " get", "probability": 0.1109619140625}, {"start": 1464.88, "end": 1465.04, "word": " a", "probability": 0.272216796875}, {"start": 1465.04, "end": 1465.2, "word": " proof", "probability": 0.68359375}, {"start": 1465.2, "end": 1465.38, "word": " for", "probability": 0.6025390625}, {"start": 1465.38, "end": 1465.58, "word": " example", "probability": 0.91357421875}, {"start": 1465.58, "end": 1466.22, "word": " here", "probability": 0.603515625}, {"start": 1466.22, "end": 1467.84, "word": " this", "probability": 0.24658203125}, {"start": 1467.84, "end": 1467.98, "word": " is", "probability": 0.8486328125}, {"start": 1467.98, "end": 1468.44, "word": " dependency", "probability": 0.6826171875}, {"start": 1468.44, "end": 1468.62, "word": " so", "probability": 0.371337890625}, {"start": 1468.62, "end": 1468.84, "word": " you", "probability": 0.384033203125}, {"start": 1468.84, "end": 1468.9, "word": " can", "probability": 0.277587890625}, {"start": 1468.9, "end": 1469.28, "word": " send", "probability": 0.51904296875}, {"start": 1469.28, "end": 1469.42, "word": " it", "probability": 0.72314453125}, {"start": 1469.42, "end": 1469.48, "word": " through", "probability": 0.302490234375}, {"start": 1469.48, "end": 1469.64, "word": " set", "probability": 0.64111328125}, {"start": 1469.64, "end": 1469.94, "word": " method", "probability": 0.904296875}, {"start": 1469.94, "end": 1470.14, "word": " or", "probability": 0.953125}, {"start": 1470.14, "end": 1470.54, "word": " through", "probability": 0.460205078125}, {"start": 1470.54, "end": 1471.52, "word": " constructor", "probability": 0.7783203125}, {"start": 1471.52, "end": 1472.52, "word": " but", "probability": 0.7880859375}, {"start": 1472.52, "end": 1472.8, "word": " of", "probability": 0.73388671875}, {"start": 1472.8, "end": 1472.98, "word": " course", "probability": 0.94580078125}, {"start": 1472.98, "end": 1473.58, "word": " now", "probability": 0.36767578125}, {"start": 1473.58, "end": 1473.84, "word": " they", "probability": 0.2783203125}, {"start": 1473.84, "end": 1474.1, "word": " are", "probability": 0.413818359375}, {"start": 1474.1, "end": 1474.44, "word": " dependent", "probability": 0.61181640625}, {"start": 1474.44, "end": 1474.72, "word": " on", "probability": 0.88134765625}, {"start": 1474.72, "end": 1474.98, "word": " each", "probability": 0.95458984375}, {"start": 1474.98, "end": 1475.34, "word": " other", "probability": 0.88525390625}, {"start": 1475.34, "end": 1475.6, "word": " which", "probability": 0.568359375}, {"start": 1475.6, "end": 1475.86, "word": " means", "probability": 0.9267578125}, {"start": 1475.86, "end": 1476.06, "word": " that", "probability": 0.892578125}, {"start": 1476.06, "end": 1476.28, "word": " you", "probability": 0.459716796875}, {"start": 1476.28, "end": 1476.6, "word": " can", "probability": 0.91064453125}, {"start": 1476.6, "end": 1477.06, "word": " take", "probability": 0.56298828125}, {"start": 1477.06, "end": 1477.12, "word": " this", "probability": 0.6923828125}, {"start": 1477.12, "end": 1477.94, "word": " in", "probability": 0.301025390625}, {"start": 1477.94, "end": 1478.08, "word": " a", "probability": 0.78759765625}, {"start": 1478.08, "end": 1478.68, "word": " new", "probability": 0.908203125}, {"start": 1478.68, "end": 1479.22, "word": " class", "probability": 0.64501953125}, {"start": 1479.22, "end": 1479.22, "word": " application", "probability": 0.63427734375}, {"start": 1479.22, "end": 1479.76, "word": " without", "probability": 0.8798828125}, {"start": 1479.76, "end": 1480.08, "word": " taking", "probability": 0.7255859375}, {"start": 1480.08, "end": 1480.26, "word": " this", "probability": 0.79833984375}, {"start": 1480.26, "end": 1480.4, "word": " with", "probability": 0.681640625}, {"start": 1480.4, "end": 1480.7, "word": " it", "probability": 0.56640625}, {"start": 1480.7, "end": 1481.88, "word": " no", "probability": 0.43212890625}, {"start": 1481.88, "end": 1482.06, "word": " you", "probability": 0.66943359375}, {"start": 1482.06, "end": 1482.62, "word": " can't", "probability": 0.752685546875}, {"start": 1482.62, "end": 1483.28, "word": " right", "probability": 0.377685546875}, {"start": 1483.28, "end": 1483.46, "word": " or", "probability": 0.640625}, {"start": 1483.46, "end": 1483.54, "word": " no?", "probability": 0.3447265625}, {"start": 1483.62, "end": 1483.78, "word": " this", "probability": 0.87646484375}, {"start": 1483.78, "end": 1483.88, "word": " is", "probability": 0.9150390625}, {"start": 1483.88, "end": 1484.16, "word": " A", "probability": 0.63671875}, {"start": 1484.16, "end": 1484.8, "word": " and", "probability": 0.88623046875}, {"start": 1484.8, "end": 1484.96, "word": " this", "probability": 0.9365234375}, {"start": 1484.96, "end": 1485.02, "word": " is", "probability": 0.94140625}, {"start": 1485.02, "end": 1485.2, "word": " B", "probability": 0.99462890625}], "temperature": 1.0}, {"id": 59, "seek": 150774, "start": 1486.28, "end": 1507.74, "text": "Now it is clear that there is an A dependency, which is B. If you take A for example in a new program and you don't take B, there will be an error. It will ask you what is this B? Right or wrong? Are you with me or not? So now you can also in a situation like if you want A to be reusable 100%", "tokens": [13267, 309, 307, 1850, 300, 456, 307, 364, 316, 33621, 11, 597, 307, 363, 13, 759, 291, 747, 316, 337, 1365, 294, 257, 777, 1461, 293, 291, 500, 380, 747, 363, 11, 456, 486, 312, 364, 6713, 13, 467, 486, 1029, 291, 437, 307, 341, 363, 30, 1779, 420, 2085, 30, 2014, 291, 365, 385, 420, 406, 30, 407, 586, 291, 393, 611, 294, 257, 2590, 411, 498, 291, 528, 316, 281, 312, 41807, 2319, 4], "avg_logprob": -0.5117694990975517, "compression_ratio": 1.47979797979798, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1486.28, "end": 1486.68, "word": "Now", "probability": 0.2230224609375}, {"start": 1486.68, "end": 1486.96, "word": " it", "probability": 0.6181640625}, {"start": 1486.96, "end": 1486.96, "word": " is", "probability": 0.56396484375}, {"start": 1486.96, "end": 1487.26, "word": " clear", "probability": 0.60498046875}, {"start": 1487.26, "end": 1487.54, "word": " that", "probability": 0.8525390625}, {"start": 1487.54, "end": 1487.78, "word": " there", "probability": 0.68994140625}, {"start": 1487.78, "end": 1487.92, "word": " is", "probability": 0.87060546875}, {"start": 1487.92, "end": 1488.12, "word": " an", "probability": 0.4384765625}, {"start": 1488.12, "end": 1488.26, "word": " A", "probability": 0.6591796875}, {"start": 1488.26, "end": 1488.82, "word": " dependency,", "probability": 0.5947265625}, {"start": 1489.04, "end": 1489.04, "word": " which", "probability": 0.66259765625}, {"start": 1489.04, "end": 1489.2, "word": " is", "probability": 0.7724609375}, {"start": 1489.2, "end": 1489.98, "word": " B.", "probability": 0.358642578125}, {"start": 1490.86, "end": 1491.26, "word": " If", "probability": 0.787109375}, {"start": 1491.26, "end": 1491.6, "word": " you", "probability": 0.68994140625}, {"start": 1491.6, "end": 1491.6, "word": " take", "probability": 0.2078857421875}, {"start": 1491.6, "end": 1491.76, "word": " A", "probability": 0.87890625}, {"start": 1491.76, "end": 1491.9, "word": " for", "probability": 0.2236328125}, {"start": 1491.9, "end": 1492.12, "word": " example", "probability": 0.288818359375}, {"start": 1492.12, "end": 1492.26, "word": " in", "probability": 0.79443359375}, {"start": 1492.26, "end": 1492.72, "word": " a", "probability": 0.87158203125}, {"start": 1492.72, "end": 1492.96, "word": " new", "probability": 0.8779296875}, {"start": 1492.96, "end": 1493.04, "word": " program", "probability": 0.68359375}, {"start": 1493.04, "end": 1494.46, "word": " and", "probability": 0.5625}, {"start": 1494.46, "end": 1494.52, "word": " you", "probability": 0.638671875}, {"start": 1494.52, "end": 1494.56, "word": " don't", "probability": 0.7200927734375}, {"start": 1494.56, "end": 1494.74, "word": " take", "probability": 0.77978515625}, {"start": 1494.74, "end": 1495.06, "word": " B,", "probability": 0.92822265625}, {"start": 1495.78, "end": 1496.4, "word": " there", "probability": 0.44287109375}, {"start": 1496.4, "end": 1496.48, "word": " will", "probability": 0.70849609375}, {"start": 1496.48, "end": 1496.68, "word": " be", "probability": 0.94140625}, {"start": 1496.68, "end": 1496.84, "word": " an", "probability": 0.7724609375}, {"start": 1496.84, "end": 1497.04, "word": " error.", "probability": 0.88671875}, {"start": 1497.22, "end": 1497.24, "word": " It", "probability": 0.419677734375}, {"start": 1497.24, "end": 1497.34, "word": " will", "probability": 0.8349609375}, {"start": 1497.34, "end": 1497.46, "word": " ask", "probability": 0.49560546875}, {"start": 1497.46, "end": 1497.58, "word": " you", "probability": 0.7978515625}, {"start": 1497.58, "end": 1497.74, "word": " what", "probability": 0.5146484375}, {"start": 1497.74, "end": 1497.8, "word": " is", "probability": 0.44091796875}, {"start": 1497.8, "end": 1497.92, "word": " this", "probability": 0.60791015625}, {"start": 1497.92, "end": 1498.34, "word": " B?", "probability": 0.98876953125}, {"start": 1498.74, "end": 1498.94, "word": " Right", "probability": 0.338623046875}, {"start": 1498.94, "end": 1499.1, "word": " or", "probability": 0.89306640625}, {"start": 1499.1, "end": 1499.26, "word": " wrong?", "probability": 0.669921875}, {"start": 1499.66, "end": 1499.82, "word": " Are", "probability": 0.363525390625}, {"start": 1499.82, "end": 1499.82, "word": " you", "probability": 0.95166015625}, {"start": 1499.82, "end": 1499.94, "word": " with", "probability": 0.7470703125}, {"start": 1499.94, "end": 1500.04, "word": " me", "probability": 0.9111328125}, {"start": 1500.04, "end": 1500.14, "word": " or", "probability": 0.86181640625}, {"start": 1500.14, "end": 1500.26, "word": " not?", "probability": 0.892578125}, {"start": 1501.68, "end": 1502.08, "word": " So", "probability": 0.288330078125}, {"start": 1502.08, "end": 1502.4, "word": " now", "probability": 0.7646484375}, {"start": 1502.4, "end": 1504.12, "word": " you", "probability": 0.399658203125}, {"start": 1504.12, "end": 1504.42, "word": " can", "probability": 0.64892578125}, {"start": 1504.42, "end": 1504.76, "word": " also", "probability": 0.67626953125}, {"start": 1504.76, "end": 1504.84, "word": " in", "probability": 0.36572265625}, {"start": 1504.84, "end": 1504.92, "word": " a", "probability": 0.46435546875}, {"start": 1504.92, "end": 1505.08, "word": " situation", "probability": 0.53564453125}, {"start": 1505.08, "end": 1505.22, "word": " like", "probability": 0.6142578125}, {"start": 1505.22, "end": 1505.4, "word": " if", "probability": 0.5888671875}, {"start": 1505.4, "end": 1505.66, "word": " you", "probability": 0.96826171875}, {"start": 1505.66, "end": 1505.96, "word": " want", "probability": 0.79296875}, {"start": 1505.96, "end": 1506.56, "word": " A", "probability": 0.63720703125}, {"start": 1506.56, "end": 1506.64, "word": " to", "probability": 0.541015625}, {"start": 1506.64, "end": 1506.64, "word": " be", "probability": 0.93359375}, {"start": 1506.64, "end": 1507.02, "word": " reusable", "probability": 0.970703125}, {"start": 1507.02, "end": 1507.32, "word": " 100", "probability": 0.52978515625}, {"start": 1507.32, "end": 1507.74, "word": "%", "probability": 0.5869140625}], "temperature": 1.0}, {"id": 60, "seek": 153762, "start": 1508.56, "end": 1537.62, "text": " is to use the observer pattern how? instead of using B directly it creates an interface for whom in A? it's called A listener and A uses the interface and this makes an implement for the interface did you see how I made the link between them? instead of the relationship being direct the relationship became through what?", "tokens": [307, 281, 764, 264, 27878, 5102, 577, 30, 2602, 295, 1228, 363, 3838, 309, 7829, 364, 9226, 337, 7101, 294, 316, 30, 309, 311, 1219, 316, 31569, 293, 316, 4960, 264, 9226, 293, 341, 1669, 364, 4445, 337, 264, 9226, 630, 291, 536, 577, 286, 1027, 264, 2113, 1296, 552, 30, 2602, 295, 264, 2480, 885, 2047, 264, 2480, 3062, 807, 437, 30], "avg_logprob": -0.5517578199505806, "compression_ratio": 1.7127659574468086, "no_speech_prob": 5.0067901611328125e-06, "words": [{"start": 1508.56, "end": 1509.02, "word": " is", "probability": 0.16064453125}, {"start": 1509.02, "end": 1509.2, "word": " to", "probability": 0.61962890625}, {"start": 1509.2, "end": 1509.56, "word": " use", "probability": 0.880859375}, {"start": 1509.56, "end": 1509.7, "word": " the", "probability": 0.59814453125}, {"start": 1509.7, "end": 1510.04, "word": " observer", "probability": 0.6787109375}, {"start": 1510.04, "end": 1510.48, "word": " pattern", "probability": 0.91162109375}, {"start": 1510.48, "end": 1511.34, "word": " how?", "probability": 0.2442626953125}, {"start": 1512.18, "end": 1512.84, "word": " instead", "probability": 0.32373046875}, {"start": 1512.84, "end": 1512.92, "word": " of", "probability": 0.96435546875}, {"start": 1512.92, "end": 1513.36, "word": " using", "probability": 0.78076171875}, {"start": 1513.36, "end": 1513.66, "word": " B", "probability": 0.4931640625}, {"start": 1513.66, "end": 1514.22, "word": " directly", "probability": 0.8388671875}, {"start": 1514.22, "end": 1514.86, "word": " it", "probability": 0.28466796875}, {"start": 1514.86, "end": 1515.08, "word": " creates", "probability": 0.53466796875}, {"start": 1515.08, "end": 1515.2, "word": " an", "probability": 0.56884765625}, {"start": 1515.2, "end": 1515.76, "word": " interface", "probability": 0.90185546875}, {"start": 1515.76, "end": 1516.16, "word": " for", "probability": 0.30322265625}, {"start": 1516.16, "end": 1516.48, "word": " whom", "probability": 0.280029296875}, {"start": 1516.48, "end": 1517.08, "word": " in", "probability": 0.309326171875}, {"start": 1517.08, "end": 1517.34, "word": " A?", "probability": 0.76708984375}, {"start": 1517.48, "end": 1517.54, "word": " it's", "probability": 0.4749755859375}, {"start": 1517.54, "end": 1517.7, "word": " called", "probability": 0.595703125}, {"start": 1517.7, "end": 1518.06, "word": " A", "probability": 0.77880859375}, {"start": 1518.06, "end": 1519.14, "word": " listener", "probability": 0.58154296875}, {"start": 1519.14, "end": 1520.4, "word": " and", "probability": 0.4833984375}, {"start": 1520.4, "end": 1520.74, "word": " A", "probability": 0.91015625}, {"start": 1520.74, "end": 1521.22, "word": " uses", "probability": 0.63134765625}, {"start": 1521.22, "end": 1521.38, "word": " the", "probability": 0.75439453125}, {"start": 1521.38, "end": 1522.0, "word": " interface", "probability": 0.88232421875}, {"start": 1522.0, "end": 1522.2, "word": " and", "probability": 0.6826171875}, {"start": 1522.2, "end": 1522.42, "word": " this", "probability": 0.226806640625}, {"start": 1522.42, "end": 1522.62, "word": " makes", "probability": 0.24462890625}, {"start": 1522.62, "end": 1522.8, "word": " an", "probability": 0.6220703125}, {"start": 1522.8, "end": 1523.14, "word": " implement", "probability": 0.7958984375}, {"start": 1523.14, "end": 1524.18, "word": " for", "probability": 0.55224609375}, {"start": 1524.18, "end": 1524.28, "word": " the", "probability": 0.8125}, {"start": 1524.28, "end": 1524.68, "word": " interface", "probability": 0.8759765625}, {"start": 1524.68, "end": 1524.92, "word": " did", "probability": 0.51123046875}, {"start": 1524.92, "end": 1524.96, "word": " you", "probability": 0.97509765625}, {"start": 1524.96, "end": 1524.96, "word": " see", "probability": 0.76416015625}, {"start": 1524.96, "end": 1525.22, "word": " how", "probability": 0.61474609375}, {"start": 1525.22, "end": 1525.56, "word": " I", "probability": 0.317626953125}, {"start": 1525.56, "end": 1525.56, "word": " made", "probability": 0.43994140625}, {"start": 1525.56, "end": 1525.84, "word": " the", "probability": 0.53662109375}, {"start": 1525.84, "end": 1526.04, "word": " link", "probability": 0.46044921875}, {"start": 1526.04, "end": 1526.6, "word": " between", "probability": 0.68017578125}, {"start": 1526.6, "end": 1527.08, "word": " them?", "probability": 0.8095703125}, {"start": 1532.96, "end": 1533.62, "word": " instead", "probability": 0.5625}, {"start": 1533.62, "end": 1533.8, "word": " of", "probability": 0.95458984375}, {"start": 1533.8, "end": 1533.9, "word": " the", "probability": 0.630859375}, {"start": 1533.9, "end": 1534.2, "word": " relationship", "probability": 0.7490234375}, {"start": 1534.2, "end": 1534.46, "word": " being", "probability": 0.76318359375}, {"start": 1534.46, "end": 1535.06, "word": " direct", "probability": 0.6025390625}, {"start": 1535.06, "end": 1536.48, "word": " the", "probability": 0.278564453125}, {"start": 1536.48, "end": 1536.8, "word": " relationship", "probability": 0.8583984375}, {"start": 1536.8, "end": 1536.94, "word": " became", "probability": 0.5205078125}, {"start": 1536.94, "end": 1537.22, "word": " through", "probability": 0.603515625}, {"start": 1537.22, "end": 1537.62, "word": " what?", "probability": 0.86328125}], "temperature": 1.0}, {"id": 61, "seek": 156433, "start": 1540.23, "end": 1564.33, "text": " by means of an interface. Someone might ask, what is it? Can you take the A without the B? Yes, but with whom will you take the A? With your interface. The A does not know anything about B. This is the idea here. The A knows about A for now. Like the idea of network message handler, it does not know anything about UI, logger or DB component. It only knows about whom?", "tokens": [538, 1355, 295, 364, 9226, 13, 8734, 1062, 1029, 11, 437, 307, 309, 30, 1664, 291, 747, 264, 316, 1553, 264, 363, 30, 1079, 11, 457, 365, 7101, 486, 291, 747, 264, 316, 30, 2022, 428, 9226, 13, 440, 316, 775, 406, 458, 1340, 466, 363, 13, 639, 307, 264, 1558, 510, 13, 440, 316, 3255, 466, 316, 337, 586, 13, 1743, 264, 1558, 295, 3209, 3636, 41967, 11, 309, 775, 406, 458, 1340, 466, 15682, 11, 3565, 1321, 420, 26754, 6542, 13, 467, 787, 3255, 466, 7101, 30], "avg_logprob": -0.5368055601914724, "compression_ratio": 1.705069124423963, "no_speech_prob": 6.616115570068359e-06, "words": [{"start": 1540.23, "end": 1540.53, "word": " by", "probability": 0.09576416015625}, {"start": 1540.53, "end": 1540.69, "word": " means", "probability": 0.25341796875}, {"start": 1540.69, "end": 1540.73, "word": " of", "probability": 0.97119140625}, {"start": 1540.73, "end": 1540.87, "word": " an", "probability": 0.292724609375}, {"start": 1540.87, "end": 1541.21, "word": " interface.", "probability": 0.85009765625}, {"start": 1542.83, "end": 1543.27, "word": " Someone", "probability": 0.1727294921875}, {"start": 1543.27, "end": 1543.45, "word": " might", "probability": 0.30810546875}, {"start": 1543.45, "end": 1543.57, "word": " ask,", "probability": 0.46923828125}, {"start": 1543.71, "end": 1543.79, "word": " what", "probability": 0.243896484375}, {"start": 1543.79, "end": 1543.89, "word": " is", "probability": 0.62158203125}, {"start": 1543.89, "end": 1544.17, "word": " it?", "probability": 0.5537109375}, {"start": 1544.29, "end": 1544.61, "word": " Can", "probability": 0.410888671875}, {"start": 1544.61, "end": 1545.33, "word": " you", "probability": 0.90576171875}, {"start": 1545.33, "end": 1545.57, "word": " take", "probability": 0.40234375}, {"start": 1545.57, "end": 1545.73, "word": " the", "probability": 0.325439453125}, {"start": 1545.73, "end": 1545.83, "word": " A", "probability": 0.73095703125}, {"start": 1545.83, "end": 1546.05, "word": " without", "probability": 0.68212890625}, {"start": 1546.05, "end": 1546.27, "word": " the", "probability": 0.529296875}, {"start": 1546.27, "end": 1546.43, "word": " B?", "probability": 0.99462890625}, {"start": 1546.65, "end": 1546.91, "word": " Yes,", "probability": 0.8173828125}, {"start": 1547.01, "end": 1547.13, "word": " but", "probability": 0.48291015625}, {"start": 1547.13, "end": 1547.33, "word": " with", "probability": 0.3232421875}, {"start": 1547.33, "end": 1547.33, "word": " whom", "probability": 0.8564453125}, {"start": 1547.33, "end": 1547.33, "word": " will", "probability": 0.43212890625}, {"start": 1547.33, "end": 1547.37, "word": " you", "probability": 0.95849609375}, {"start": 1547.37, "end": 1547.61, "word": " take", "probability": 0.830078125}, {"start": 1547.61, "end": 1547.73, "word": " the", "probability": 0.8642578125}, {"start": 1547.73, "end": 1547.91, "word": " A?", "probability": 0.99267578125}, {"start": 1548.95, "end": 1549.39, "word": " With", "probability": 0.7138671875}, {"start": 1549.39, "end": 1549.49, "word": " your", "probability": 0.46337890625}, {"start": 1549.49, "end": 1550.01, "word": " interface.", "probability": 0.705078125}, {"start": 1551.25, "end": 1551.69, "word": " The", "probability": 0.409912109375}, {"start": 1551.69, "end": 1551.91, "word": " A", "probability": 0.9755859375}, {"start": 1551.91, "end": 1552.05, "word": " does", "probability": 0.52880859375}, {"start": 1552.05, "end": 1552.15, "word": " not", "probability": 0.93359375}, {"start": 1552.15, "end": 1552.43, "word": " know", "probability": 0.8818359375}, {"start": 1552.43, "end": 1552.83, "word": " anything", "probability": 0.86083984375}, {"start": 1552.83, "end": 1553.23, "word": " about", "probability": 0.7783203125}, {"start": 1553.23, "end": 1553.51, "word": " B.", "probability": 0.7783203125}, {"start": 1553.57, "end": 1553.69, "word": " This", "probability": 0.31201171875}, {"start": 1553.69, "end": 1553.69, "word": " is", "probability": 0.908203125}, {"start": 1553.69, "end": 1553.81, "word": " the", "probability": 0.85205078125}, {"start": 1553.81, "end": 1553.97, "word": " idea", "probability": 0.71337890625}, {"start": 1553.97, "end": 1554.27, "word": " here.", "probability": 0.6396484375}, {"start": 1554.71, "end": 1554.89, "word": " The", "probability": 0.83349609375}, {"start": 1554.89, "end": 1555.05, "word": " A", "probability": 0.9931640625}, {"start": 1555.05, "end": 1555.37, "word": " knows", "probability": 0.65869140625}, {"start": 1555.37, "end": 1555.59, "word": " about", "probability": 0.429443359375}, {"start": 1555.59, "end": 1555.75, "word": " A", "probability": 0.75244140625}, {"start": 1555.75, "end": 1555.87, "word": " for", "probability": 0.10540771484375}, {"start": 1555.87, "end": 1556.17, "word": " now.", "probability": 0.544921875}, {"start": 1557.45, "end": 1557.89, "word": " Like", "probability": 0.24169921875}, {"start": 1557.89, "end": 1558.01, "word": " the", "probability": 0.78564453125}, {"start": 1558.01, "end": 1558.17, "word": " idea", "probability": 0.66259765625}, {"start": 1558.17, "end": 1558.37, "word": " of", "probability": 0.93994140625}, {"start": 1558.37, "end": 1558.59, "word": " network", "probability": 0.4248046875}, {"start": 1558.59, "end": 1558.87, "word": " message", "probability": 0.353515625}, {"start": 1558.87, "end": 1559.09, "word": " handler,", "probability": 0.5703125}, {"start": 1559.21, "end": 1559.23, "word": " it", "probability": 0.603515625}, {"start": 1559.23, "end": 1559.35, "word": " does", "probability": 0.7529296875}, {"start": 1559.35, "end": 1559.35, "word": " not", "probability": 0.9365234375}, {"start": 1559.35, "end": 1559.61, "word": " know", "probability": 0.89892578125}, {"start": 1559.61, "end": 1560.19, "word": " anything", "probability": 0.83642578125}, {"start": 1560.19, "end": 1561.03, "word": " about", "probability": 0.88525390625}, {"start": 1561.03, "end": 1561.39, "word": " UI,", "probability": 0.44287109375}, {"start": 1561.81, "end": 1562.23, "word": " logger", "probability": 0.71630859375}, {"start": 1562.23, "end": 1562.37, "word": " or", "probability": 0.39111328125}, {"start": 1562.37, "end": 1562.67, "word": " DB", "probability": 0.5341796875}, {"start": 1562.67, "end": 1563.19, "word": " component.", "probability": 0.8203125}, {"start": 1563.27, "end": 1563.33, "word": " It", "probability": 0.896484375}, {"start": 1563.33, "end": 1563.63, "word": " only", "probability": 0.56298828125}, {"start": 1563.63, "end": 1563.63, "word": " knows", "probability": 0.8134765625}, {"start": 1563.63, "end": 1564.07, "word": " about", "probability": 0.77294921875}, {"start": 1564.07, "end": 1564.33, "word": " whom?", "probability": 0.375244140625}], "temperature": 1.0}, {"id": 62, "seek": 158735, "start": 1565.19, "end": 1587.35, "text": " about the message listener, okay? So this is reusable 100% and you can use it in any other application So if you have a relationship between two objects and you want them to be completely separate and reusable each one of them, you can use the observer pattern in this way In another case, when a change to one object requires changing others", "tokens": [466, 264, 3636, 31569, 11, 1392, 30, 407, 341, 307, 41807, 2319, 4, 293, 291, 393, 764, 309, 294, 604, 661, 3861, 407, 498, 291, 362, 257, 2480, 1296, 732, 6565, 293, 291, 528, 552, 281, 312, 2584, 4994, 293, 41807, 1184, 472, 295, 552, 11, 291, 393, 764, 264, 27878, 5102, 294, 341, 636, 682, 1071, 1389, 11, 562, 257, 1319, 281, 472, 2657, 7029, 4473, 2357], "avg_logprob": -0.4286684868992239, "compression_ratio": 1.6103286384976525, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1565.19, "end": 1565.49, "word": " about", "probability": 0.0823974609375}, {"start": 1565.49, "end": 1565.57, "word": " the", "probability": 0.70849609375}, {"start": 1565.57, "end": 1565.79, "word": " message", "probability": 0.744140625}, {"start": 1565.79, "end": 1566.25, "word": " listener,", "probability": 0.8515625}, {"start": 1566.73, "end": 1567.05, "word": " okay?", "probability": 0.1798095703125}, {"start": 1567.53, "end": 1567.63, "word": " So", "probability": 0.4052734375}, {"start": 1567.63, "end": 1567.79, "word": " this", "probability": 0.5693359375}, {"start": 1567.79, "end": 1567.99, "word": " is", "probability": 0.400390625}, {"start": 1567.99, "end": 1569.33, "word": " reusable", "probability": 0.54345703125}, {"start": 1569.33, "end": 1569.61, "word": " 100", "probability": 0.5751953125}, {"start": 1569.61, "end": 1569.95, "word": "%", "probability": 0.82421875}, {"start": 1569.95, "end": 1570.31, "word": " and", "probability": 0.176025390625}, {"start": 1570.31, "end": 1570.47, "word": " you", "probability": 0.828125}, {"start": 1570.47, "end": 1570.53, "word": " can", "probability": 0.814453125}, {"start": 1570.53, "end": 1570.79, "word": " use", "probability": 0.8583984375}, {"start": 1570.79, "end": 1570.93, "word": " it", "probability": 0.83154296875}, {"start": 1570.93, "end": 1571.05, "word": " in", "probability": 0.74658203125}, {"start": 1571.05, "end": 1571.15, "word": " any", "probability": 0.833984375}, {"start": 1571.15, "end": 1571.23, "word": " other", "probability": 0.7978515625}, {"start": 1571.23, "end": 1571.55, "word": " application", "probability": 0.441162109375}, {"start": 1571.55, "end": 1574.07, "word": " So", "probability": 0.48193359375}, {"start": 1574.07, "end": 1574.21, "word": " if", "probability": 0.8681640625}, {"start": 1574.21, "end": 1574.93, "word": " you", "probability": 0.95458984375}, {"start": 1574.93, "end": 1575.13, "word": " have", "probability": 0.85595703125}, {"start": 1575.13, "end": 1575.25, "word": " a", "probability": 0.8828125}, {"start": 1575.25, "end": 1575.51, "word": " relationship", "probability": 0.728515625}, {"start": 1575.51, "end": 1575.81, "word": " between", "probability": 0.837890625}, {"start": 1575.81, "end": 1576.03, "word": " two", "probability": 0.77099609375}, {"start": 1576.03, "end": 1576.43, "word": " objects", "probability": 0.9580078125}, {"start": 1576.43, "end": 1576.55, "word": " and", "probability": 0.7666015625}, {"start": 1576.55, "end": 1576.77, "word": " you", "probability": 0.50244140625}, {"start": 1576.77, "end": 1576.85, "word": " want", "probability": 0.75537109375}, {"start": 1576.85, "end": 1577.27, "word": " them", "probability": 0.62158203125}, {"start": 1577.27, "end": 1577.43, "word": " to", "probability": 0.9345703125}, {"start": 1577.43, "end": 1577.43, "word": " be", "probability": 0.91259765625}, {"start": 1577.43, "end": 1577.43, "word": " completely", "probability": 0.303466796875}, {"start": 1577.43, "end": 1577.89, "word": " separate", "probability": 0.32080078125}, {"start": 1577.89, "end": 1578.59, "word": " and", "probability": 0.79052734375}, {"start": 1578.59, "end": 1579.29, "word": " reusable", "probability": 0.6044921875}, {"start": 1579.29, "end": 1579.63, "word": " each", "probability": 0.447021484375}, {"start": 1579.63, "end": 1579.91, "word": " one", "probability": 0.5966796875}, {"start": 1579.91, "end": 1580.03, "word": " of", "probability": 0.7900390625}, {"start": 1580.03, "end": 1580.15, "word": " them,", "probability": 0.892578125}, {"start": 1580.33, "end": 1580.35, "word": " you", "probability": 0.84814453125}, {"start": 1580.35, "end": 1580.51, "word": " can", "probability": 0.91943359375}, {"start": 1580.51, "end": 1580.85, "word": " use", "probability": 0.87841796875}, {"start": 1580.85, "end": 1580.97, "word": " the", "probability": 0.6845703125}, {"start": 1580.97, "end": 1581.33, "word": " observer", "probability": 0.83154296875}, {"start": 1581.33, "end": 1581.75, "word": " pattern", "probability": 0.908203125}, {"start": 1581.75, "end": 1581.85, "word": " in", "probability": 0.349853515625}, {"start": 1581.85, "end": 1582.43, "word": " this", "probability": 0.8671875}, {"start": 1582.43, "end": 1582.65, "word": " way", "probability": 0.873046875}, {"start": 1582.65, "end": 1583.19, "word": " In", "probability": 0.270263671875}, {"start": 1583.19, "end": 1583.33, "word": " another", "probability": 0.60791015625}, {"start": 1583.33, "end": 1583.75, "word": " case,", "probability": 0.640625}, {"start": 1584.49, "end": 1584.69, "word": " when", "probability": 0.884765625}, {"start": 1584.69, "end": 1584.85, "word": " a", "probability": 0.85107421875}, {"start": 1584.85, "end": 1585.23, "word": " change", "probability": 0.9287109375}, {"start": 1585.23, "end": 1585.41, "word": " to", "probability": 0.9111328125}, {"start": 1585.41, "end": 1585.59, "word": " one", "probability": 0.8896484375}, {"start": 1585.59, "end": 1585.95, "word": " object", "probability": 0.9814453125}, {"start": 1585.95, "end": 1586.45, "word": " requires", "probability": 0.79541015625}, {"start": 1586.45, "end": 1586.99, "word": " changing", "probability": 0.8818359375}, {"start": 1586.99, "end": 1587.35, "word": " others", "probability": 0.8623046875}], "temperature": 1.0}, {"id": 63, "seek": 161580, "start": 1588.14, "end": 1615.8, "text": "means when the relationship is one to many a factor that I want to change based on that I want to change many things of course this means that this has many dependencies which means that any change in one of these or any addition to a new dependency will change to this one so in this case which is the same scenario that we explained before it is better to use the observer pattern", "tokens": [1398, 599, 562, 264, 2480, 307, 472, 281, 867, 257, 5952, 300, 286, 528, 281, 1319, 2361, 322, 300, 286, 528, 281, 1319, 867, 721, 295, 1164, 341, 1355, 300, 341, 575, 867, 36606, 597, 1355, 300, 604, 1319, 294, 472, 295, 613, 420, 604, 4500, 281, 257, 777, 33621, 486, 1319, 281, 341, 472, 370, 294, 341, 1389, 597, 307, 264, 912, 9005, 300, 321, 8825, 949, 309, 307, 1101, 281, 764, 264, 27878, 5102], "avg_logprob": -0.5032467749211695, "compression_ratio": 1.8634146341463416, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 1588.14, "end": 1588.4, "word": "means", "probability": 0.354949951171875}, {"start": 1588.4, "end": 1588.56, "word": " when", "probability": 0.53515625}, {"start": 1588.56, "end": 1588.84, "word": " the", "probability": 0.39794921875}, {"start": 1588.84, "end": 1589.1, "word": " relationship", "probability": 0.59033203125}, {"start": 1589.1, "end": 1589.22, "word": " is", "probability": 0.82861328125}, {"start": 1589.22, "end": 1589.46, "word": " one", "probability": 0.65380859375}, {"start": 1589.46, "end": 1589.64, "word": " to", "probability": 0.849609375}, {"start": 1589.64, "end": 1589.88, "word": " many", "probability": 0.9375}, {"start": 1589.88, "end": 1590.78, "word": " a", "probability": 0.041900634765625}, {"start": 1590.78, "end": 1591.12, "word": " factor", "probability": 0.43701171875}, {"start": 1591.12, "end": 1591.3, "word": " that", "probability": 0.400390625}, {"start": 1591.3, "end": 1591.34, "word": " I", "probability": 0.46533203125}, {"start": 1591.34, "end": 1591.68, "word": " want", "probability": 0.73828125}, {"start": 1591.68, "end": 1591.76, "word": " to", "probability": 0.765625}, {"start": 1591.76, "end": 1592.22, "word": " change", "probability": 0.8798828125}, {"start": 1592.22, "end": 1592.96, "word": " based", "probability": 0.27880859375}, {"start": 1592.96, "end": 1593.24, "word": " on", "probability": 0.93359375}, {"start": 1593.24, "end": 1593.36, "word": " that", "probability": 0.300537109375}, {"start": 1593.36, "end": 1593.42, "word": " I", "probability": 0.78125}, {"start": 1593.42, "end": 1593.56, "word": " want", "probability": 0.7998046875}, {"start": 1593.56, "end": 1593.7, "word": " to", "probability": 0.9384765625}, {"start": 1593.7, "end": 1593.94, "word": " change", "probability": 0.89794921875}, {"start": 1593.94, "end": 1594.66, "word": " many", "probability": 0.396484375}, {"start": 1594.66, "end": 1595.56, "word": " things", "probability": 0.76611328125}, {"start": 1595.56, "end": 1599.54, "word": " of", "probability": 0.2325439453125}, {"start": 1599.54, "end": 1599.54, "word": " course", "probability": 0.947265625}, {"start": 1599.54, "end": 1599.78, "word": " this", "probability": 0.5205078125}, {"start": 1599.78, "end": 1600.12, "word": " means", "probability": 0.8779296875}, {"start": 1600.12, "end": 1600.4, "word": " that", "probability": 0.845703125}, {"start": 1600.4, "end": 1600.72, "word": " this", "probability": 0.6748046875}, {"start": 1600.72, "end": 1601.08, "word": " has", "probability": 0.445068359375}, {"start": 1601.08, "end": 1601.24, "word": " many", "probability": 0.572265625}, {"start": 1601.24, "end": 1601.84, "word": " dependencies", "probability": 0.751953125}, {"start": 1601.84, "end": 1603.2, "word": " which", "probability": 0.208740234375}, {"start": 1603.2, "end": 1603.36, "word": " means", "probability": 0.92822265625}, {"start": 1603.36, "end": 1603.48, "word": " that", "probability": 0.51416015625}, {"start": 1603.48, "end": 1603.6, "word": " any", "probability": 0.7119140625}, {"start": 1603.6, "end": 1603.94, "word": " change", "probability": 0.84765625}, {"start": 1603.94, "end": 1604.1, "word": " in", "probability": 0.8486328125}, {"start": 1604.1, "end": 1604.4, "word": " one", "probability": 0.6181640625}, {"start": 1604.4, "end": 1604.54, "word": " of", "probability": 0.9453125}, {"start": 1604.54, "end": 1604.82, "word": " these", "probability": 0.427490234375}, {"start": 1604.82, "end": 1605.04, "word": " or", "probability": 0.775390625}, {"start": 1605.04, "end": 1605.24, "word": " any", "probability": 0.83544921875}, {"start": 1605.24, "end": 1605.54, "word": " addition", "probability": 0.78857421875}, {"start": 1605.54, "end": 1605.74, "word": " to", "probability": 0.71484375}, {"start": 1605.74, "end": 1605.82, "word": " a", "probability": 0.7734375}, {"start": 1605.82, "end": 1606.56, "word": " new", "probability": 0.91357421875}, {"start": 1606.56, "end": 1606.56, "word": " dependency", "probability": 0.8896484375}, {"start": 1606.56, "end": 1607.6, "word": " will", "probability": 0.56103515625}, {"start": 1607.6, "end": 1608.0, "word": " change", "probability": 0.78662109375}, {"start": 1608.0, "end": 1608.56, "word": " to", "probability": 0.20263671875}, {"start": 1608.56, "end": 1609.62, "word": " this", "probability": 0.658203125}, {"start": 1609.62, "end": 1609.68, "word": " one", "probability": 0.363037109375}, {"start": 1609.68, "end": 1609.82, "word": " so", "probability": 0.319091796875}, {"start": 1609.82, "end": 1609.94, "word": " in", "probability": 0.900390625}, {"start": 1609.94, "end": 1610.04, "word": " this", "probability": 0.90625}, {"start": 1610.04, "end": 1610.54, "word": " case", "probability": 0.75390625}, {"start": 1610.54, "end": 1611.42, "word": " which", "probability": 0.68359375}, {"start": 1611.42, "end": 1611.6, "word": " is", "probability": 0.9326171875}, {"start": 1611.6, "end": 1611.74, "word": " the", "probability": 0.8828125}, {"start": 1611.74, "end": 1611.84, "word": " same", "probability": 0.8662109375}, {"start": 1611.84, "end": 1612.2, "word": " scenario", "probability": 0.80712890625}, {"start": 1612.2, "end": 1612.3, "word": " that", "probability": 0.662109375}, {"start": 1612.3, "end": 1612.46, "word": " we", "probability": 0.8583984375}, {"start": 1612.46, "end": 1612.72, "word": " explained", "probability": 0.39404296875}, {"start": 1612.72, "end": 1612.98, "word": " before", "probability": 0.271484375}, {"start": 1612.98, "end": 1613.06, "word": " it", "probability": 0.7275390625}, {"start": 1613.06, "end": 1613.06, "word": " is", "probability": 0.5869140625}, {"start": 1613.06, "end": 1613.28, "word": " better", "probability": 0.85791015625}, {"start": 1613.28, "end": 1613.5, "word": " to", "probability": 0.74169921875}, {"start": 1613.5, "end": 1614.08, "word": " use", "probability": 0.88232421875}, {"start": 1614.08, "end": 1615.1, "word": " the", "probability": 0.708984375}, {"start": 1615.1, "end": 1615.48, "word": " observer", "probability": 0.6552734375}, {"start": 1615.48, "end": 1615.8, "word": " pattern", "probability": 0.59326171875}], "temperature": 1.0}, {"id": 64, "seek": 164568, "start": 1616.98, "end": 1645.68, "text": "In order to avoid changing anything in this object When an object should be able to notify other objects without making assumptions about those objects What is this sentence? When an object wants to notify other objects without having to know anything about them And this is the idea of the observer pattern That it does not want to know the types of people listening to it It just wants to know the type of interface", "tokens": [4575, 1668, 281, 5042, 4473, 1340, 294, 341, 2657, 1133, 364, 2657, 820, 312, 1075, 281, 36560, 661, 6565, 1553, 1455, 17695, 466, 729, 6565, 708, 307, 341, 8174, 30, 1133, 364, 2657, 2738, 281, 36560, 661, 6565, 1553, 1419, 281, 458, 1340, 466, 552, 400, 341, 307, 264, 1558, 295, 264, 27878, 5102, 663, 309, 775, 406, 528, 281, 458, 264, 3467, 295, 561, 4764, 281, 309, 467, 445, 2738, 281, 458, 264, 2010, 295, 9226], "avg_logprob": -0.37940705089997023, "compression_ratio": 1.9305555555555556, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1616.98, "end": 1617.26, "word": "In", "probability": 0.06671142578125}, {"start": 1617.26, "end": 1617.36, "word": " order", "probability": 0.8564453125}, {"start": 1617.36, "end": 1617.54, "word": " to", "probability": 0.91455078125}, {"start": 1617.54, "end": 1617.92, "word": " avoid", "probability": 0.7724609375}, {"start": 1617.92, "end": 1618.68, "word": " changing", "probability": 0.376708984375}, {"start": 1618.68, "end": 1619.28, "word": " anything", "probability": 0.703125}, {"start": 1619.28, "end": 1619.82, "word": " in", "probability": 0.64111328125}, {"start": 1619.82, "end": 1619.92, "word": " this", "probability": 0.40087890625}, {"start": 1619.92, "end": 1620.24, "word": " object", "probability": 0.93994140625}, {"start": 1620.24, "end": 1623.7, "word": " When", "probability": 0.2042236328125}, {"start": 1623.7, "end": 1623.9, "word": " an", "probability": 0.94384765625}, {"start": 1623.9, "end": 1624.2, "word": " object", "probability": 0.9755859375}, {"start": 1624.2, "end": 1624.48, "word": " should", "probability": 0.96826171875}, {"start": 1624.48, "end": 1624.7, "word": " be", "probability": 0.94580078125}, {"start": 1624.7, "end": 1624.98, "word": " able", "probability": 0.96728515625}, {"start": 1624.98, "end": 1625.16, "word": " to", "probability": 0.97412109375}, {"start": 1625.16, "end": 1625.42, "word": " notify", "probability": 0.8916015625}, {"start": 1625.42, "end": 1625.78, "word": " other", "probability": 0.86474609375}, {"start": 1625.78, "end": 1626.16, "word": " objects", "probability": 0.9677734375}, {"start": 1626.16, "end": 1626.48, "word": " without", "probability": 0.84765625}, {"start": 1626.48, "end": 1626.92, "word": " making", "probability": 0.8916015625}, {"start": 1626.92, "end": 1627.74, "word": " assumptions", "probability": 0.9580078125}, {"start": 1627.74, "end": 1628.62, "word": " about", "probability": 0.880859375}, {"start": 1628.62, "end": 1628.92, "word": " those", "probability": 0.77685546875}, {"start": 1628.92, "end": 1629.38, "word": " objects", "probability": 0.96875}, {"start": 1629.38, "end": 1630.06, "word": " What", "probability": 0.359619140625}, {"start": 1630.06, "end": 1630.1, "word": " is", "probability": 0.5458984375}, {"start": 1630.1, "end": 1630.22, "word": " this", "probability": 0.80859375}, {"start": 1630.22, "end": 1630.44, "word": " sentence?", "probability": 0.73876953125}, {"start": 1630.66, "end": 1630.86, "word": " When", "probability": 0.76953125}, {"start": 1630.86, "end": 1631.18, "word": " an", "probability": 0.76611328125}, {"start": 1631.18, "end": 1631.48, "word": " object", "probability": 0.9814453125}, {"start": 1631.48, "end": 1631.66, "word": " wants", "probability": 0.394775390625}, {"start": 1631.66, "end": 1631.66, "word": " to", "probability": 0.9755859375}, {"start": 1631.66, "end": 1631.88, "word": " notify", "probability": 0.83251953125}, {"start": 1631.88, "end": 1632.2, "word": " other", "probability": 0.77783203125}, {"start": 1632.2, "end": 1632.66, "word": " objects", "probability": 0.96875}, {"start": 1632.66, "end": 1633.02, "word": " without", "probability": 0.86669921875}, {"start": 1633.02, "end": 1633.42, "word": " having", "probability": 0.402099609375}, {"start": 1633.42, "end": 1633.64, "word": " to", "probability": 0.947265625}, {"start": 1633.64, "end": 1633.98, "word": " know", "probability": 0.82958984375}, {"start": 1633.98, "end": 1634.36, "word": " anything", "probability": 0.77294921875}, {"start": 1634.36, "end": 1634.62, "word": " about", "probability": 0.8779296875}, {"start": 1634.62, "end": 1635.5, "word": " them", "probability": 0.89208984375}, {"start": 1635.5, "end": 1636.58, "word": " And", "probability": 0.281982421875}, {"start": 1636.58, "end": 1637.6, "word": " this", "probability": 0.85302734375}, {"start": 1637.6, "end": 1637.64, "word": " is", "probability": 0.91357421875}, {"start": 1637.64, "end": 1637.7, "word": " the", "probability": 0.81201171875}, {"start": 1637.7, "end": 1637.88, "word": " idea", "probability": 0.4443359375}, {"start": 1637.88, "end": 1638.02, "word": " of", "probability": 0.60498046875}, {"start": 1638.02, "end": 1638.08, "word": " the", "probability": 0.439453125}, {"start": 1638.08, "end": 1638.38, "word": " observer", "probability": 0.6396484375}, {"start": 1638.38, "end": 1638.9, "word": " pattern", "probability": 0.8818359375}, {"start": 1638.9, "end": 1639.5, "word": " That", "probability": 0.12261962890625}, {"start": 1639.5, "end": 1640.06, "word": " it", "probability": 0.375244140625}, {"start": 1640.06, "end": 1640.18, "word": " does", "probability": 0.60009765625}, {"start": 1640.18, "end": 1640.18, "word": " not", "probability": 0.93408203125}, {"start": 1640.18, "end": 1640.42, "word": " want", "probability": 0.6005859375}, {"start": 1640.42, "end": 1640.54, "word": " to", "probability": 0.97119140625}, {"start": 1640.54, "end": 1640.76, "word": " know", "probability": 0.84130859375}, {"start": 1640.76, "end": 1640.94, "word": " the", "probability": 0.65576171875}, {"start": 1640.94, "end": 1641.3, "word": " types", "probability": 0.55078125}, {"start": 1641.3, "end": 1641.56, "word": " of", "probability": 0.958984375}, {"start": 1641.56, "end": 1642.08, "word": " people", "probability": 0.81689453125}, {"start": 1642.08, "end": 1642.6, "word": " listening", "probability": 0.44677734375}, {"start": 1642.6, "end": 1642.76, "word": " to", "probability": 0.92236328125}, {"start": 1642.76, "end": 1642.96, "word": " it", "probability": 0.88330078125}, {"start": 1642.96, "end": 1643.78, "word": " It", "probability": 0.50048828125}, {"start": 1643.78, "end": 1643.98, "word": " just", "probability": 0.423583984375}, {"start": 1643.98, "end": 1643.98, "word": " wants", "probability": 0.7734375}, {"start": 1643.98, "end": 1644.06, "word": " to", "probability": 0.9658203125}, {"start": 1644.06, "end": 1644.34, "word": " know", "probability": 0.85986328125}, {"start": 1644.34, "end": 1644.94, "word": " the", "probability": 0.69287109375}, {"start": 1644.94, "end": 1645.08, "word": " type", "probability": 0.68603515625}, {"start": 1645.08, "end": 1645.16, "word": " of", "probability": 0.95849609375}, {"start": 1645.16, "end": 1645.68, "word": " interface", "probability": 0.8134765625}], "temperature": 1.0}, {"id": 65, "seek": 167746, "start": 1648.52, "end": 1677.46, "text": "Okay, in these cases where we use the Observer Pattern, let's see the UML diagram of the Observer Pattern. The UML diagram is a bit confusing, but I brought it because it is the official UML diagram that you find in the books of the Observer Pattern. Let's talk about it and see what is the relationship between the UML diagram and the examples that we presented, and there are also errors that need to be corrected. Okay?", "tokens": [8297, 11, 294, 613, 3331, 689, 321, 764, 264, 20707, 38241, 34367, 77, 11, 718, 311, 536, 264, 624, 12683, 10686, 295, 264, 20707, 38241, 34367, 77, 13, 440, 624, 12683, 10686, 307, 257, 857, 13181, 11, 457, 286, 3038, 309, 570, 309, 307, 264, 4783, 624, 12683, 10686, 300, 291, 915, 294, 264, 3642, 295, 264, 20707, 38241, 34367, 77, 13, 961, 311, 751, 466, 309, 293, 536, 437, 307, 264, 2480, 1296, 264, 624, 12683, 10686, 293, 264, 5110, 300, 321, 8212, 11, 293, 456, 366, 611, 13603, 300, 643, 281, 312, 31687, 13, 1033, 30], "avg_logprob": -0.47285353113906553, "compression_ratio": 1.8034188034188035, "no_speech_prob": 3.337860107421875e-06, "words": [{"start": 1648.52, "end": 1648.78, "word": "Okay,", "probability": 0.221923828125}, {"start": 1648.84, "end": 1648.92, "word": " in", "probability": 0.420654296875}, {"start": 1648.92, "end": 1649.12, "word": " these", "probability": 0.5615234375}, {"start": 1649.12, "end": 1649.48, "word": " cases", "probability": 0.791015625}, {"start": 1649.48, "end": 1649.66, "word": " where", "probability": 0.33544921875}, {"start": 1649.66, "end": 1650.56, "word": " we", "probability": 0.91064453125}, {"start": 1650.56, "end": 1651.68, "word": " use", "probability": 0.435302734375}, {"start": 1651.68, "end": 1652.26, "word": " the", "probability": 0.55126953125}, {"start": 1652.26, "end": 1652.68, "word": " Observer", "probability": 0.583740234375}, {"start": 1652.68, "end": 1653.06, "word": " Pattern,", "probability": 0.862060546875}, {"start": 1653.08, "end": 1653.36, "word": " let's", "probability": 0.82470703125}, {"start": 1653.36, "end": 1653.86, "word": " see", "probability": 0.2685546875}, {"start": 1653.86, "end": 1654.04, "word": " the", "probability": 0.70068359375}, {"start": 1654.04, "end": 1654.26, "word": " UML", "probability": 0.75}, {"start": 1654.26, "end": 1654.68, "word": " diagram", "probability": 0.79345703125}, {"start": 1654.68, "end": 1656.56, "word": " of", "probability": 0.57861328125}, {"start": 1656.56, "end": 1656.7, "word": " the", "probability": 0.7548828125}, {"start": 1656.7, "end": 1657.1, "word": " Observer", "probability": 0.86767578125}, {"start": 1657.1, "end": 1658.06, "word": " Pattern.", "probability": 0.96240234375}, {"start": 1658.2, "end": 1658.6, "word": " The", "probability": 0.446044921875}, {"start": 1658.6, "end": 1658.9, "word": " UML", "probability": 0.94189453125}, {"start": 1658.9, "end": 1659.38, "word": " diagram", "probability": 0.8671875}, {"start": 1659.38, "end": 1659.44, "word": " is", "probability": 0.66650390625}, {"start": 1659.44, "end": 1659.56, "word": " a", "probability": 0.7275390625}, {"start": 1659.56, "end": 1659.68, "word": " bit", "probability": 0.6103515625}, {"start": 1659.68, "end": 1660.04, "word": " confusing,", "probability": 0.55517578125}, {"start": 1661.0, "end": 1661.86, "word": " but", "probability": 0.7939453125}, {"start": 1661.86, "end": 1662.08, "word": " I", "probability": 0.931640625}, {"start": 1662.08, "end": 1662.66, "word": " brought", "probability": 0.1649169921875}, {"start": 1662.66, "end": 1662.86, "word": " it", "probability": 0.8935546875}, {"start": 1662.86, "end": 1663.0, "word": " because", "probability": 0.460693359375}, {"start": 1663.0, "end": 1663.32, "word": " it", "probability": 0.69677734375}, {"start": 1663.32, "end": 1663.32, "word": " is", "probability": 0.4677734375}, {"start": 1663.32, "end": 1664.24, "word": " the", "probability": 0.75537109375}, {"start": 1664.24, "end": 1664.34, "word": " official", "probability": 0.65869140625}, {"start": 1664.34, "end": 1664.54, "word": " UML", "probability": 0.85595703125}, {"start": 1664.54, "end": 1665.0, "word": " diagram", "probability": 0.8642578125}, {"start": 1665.0, "end": 1665.62, "word": " that", "probability": 0.379638671875}, {"start": 1665.62, "end": 1665.7, "word": " you", "probability": 0.76953125}, {"start": 1665.7, "end": 1665.9, "word": " find", "probability": 0.4306640625}, {"start": 1665.9, "end": 1666.08, "word": " in", "probability": 0.9091796875}, {"start": 1666.08, "end": 1666.14, "word": " the", "probability": 0.299560546875}, {"start": 1666.14, "end": 1666.42, "word": " books", "probability": 0.818359375}, {"start": 1666.42, "end": 1667.16, "word": " of", "probability": 0.279541015625}, {"start": 1667.16, "end": 1667.32, "word": " the", "probability": 0.64892578125}, {"start": 1667.32, "end": 1667.7, "word": " Observer", "probability": 0.8896484375}, {"start": 1667.7, "end": 1668.2, "word": " Pattern.", "probability": 0.967041015625}, {"start": 1668.36, "end": 1668.84, "word": " Let's", "probability": 0.90771484375}, {"start": 1668.84, "end": 1669.08, "word": " talk", "probability": 0.685546875}, {"start": 1669.08, "end": 1669.38, "word": " about", "probability": 0.873046875}, {"start": 1669.38, "end": 1669.46, "word": " it", "probability": 0.83349609375}, {"start": 1669.46, "end": 1669.56, "word": " and", "probability": 0.8037109375}, {"start": 1669.56, "end": 1669.72, "word": " see", "probability": 0.77978515625}, {"start": 1669.72, "end": 1669.92, "word": " what", "probability": 0.669921875}, {"start": 1669.92, "end": 1670.0, "word": " is", "probability": 0.517578125}, {"start": 1670.0, "end": 1670.0, "word": " the", "probability": 0.429443359375}, {"start": 1670.0, "end": 1670.3, "word": " relationship", "probability": 0.42041015625}, {"start": 1670.3, "end": 1671.5, "word": " between", "probability": 0.70263671875}, {"start": 1671.5, "end": 1672.22, "word": " the", "probability": 0.385498046875}, {"start": 1672.22, "end": 1672.62, "word": " UML", "probability": 0.809326171875}, {"start": 1672.62, "end": 1672.84, "word": " diagram", "probability": 0.56640625}, {"start": 1672.84, "end": 1673.26, "word": " and", "probability": 0.68701171875}, {"start": 1673.26, "end": 1673.48, "word": " the", "probability": 0.72802734375}, {"start": 1673.48, "end": 1674.14, "word": " examples", "probability": 0.71875}, {"start": 1674.14, "end": 1674.32, "word": " that", "probability": 0.39453125}, {"start": 1674.32, "end": 1674.34, "word": " we", "probability": 0.82568359375}, {"start": 1674.34, "end": 1674.66, "word": " presented,", "probability": 0.394287109375}, {"start": 1674.96, "end": 1675.06, "word": " and", "probability": 0.8095703125}, {"start": 1675.06, "end": 1675.2, "word": " there", "probability": 0.34326171875}, {"start": 1675.2, "end": 1675.26, "word": " are", "probability": 0.61083984375}, {"start": 1675.26, "end": 1675.5, "word": " also", "probability": 0.599609375}, {"start": 1675.5, "end": 1675.82, "word": " errors", "probability": 0.444091796875}, {"start": 1675.82, "end": 1676.1, "word": " that", "probability": 0.438720703125}, {"start": 1676.1, "end": 1676.32, "word": " need", "probability": 0.274169921875}, {"start": 1676.32, "end": 1676.38, "word": " to", "probability": 0.8896484375}, {"start": 1676.38, "end": 1676.4, "word": " be", "probability": 0.9326171875}, {"start": 1676.4, "end": 1676.64, "word": " corrected.", "probability": 0.4794921875}, {"start": 1677.26, "end": 1677.46, "word": " Okay?", "probability": 0.63916015625}], "temperature": 1.0}, {"id": 66, "seek": 170470, "start": 1679.52, "end": 1704.7, "text": "The first thing is the main component that communicates to the other elements such as network, message handler, WIM which is represented here. This class is called what? Observable. It is distinguished between two things. There is something called observer and something called observable. Okay? Observer and there is observable. Or sometimes it is called subject.", "tokens": [2278, 700, 551, 307, 264, 2135, 6542, 300, 3363, 1024, 281, 264, 661, 4959, 1270, 382, 3209, 11, 3636, 41967, 11, 343, 6324, 597, 307, 10379, 510, 13, 639, 1508, 307, 1219, 437, 30, 42547, 712, 13, 467, 307, 21702, 1296, 732, 721, 13, 821, 307, 746, 1219, 27878, 293, 746, 1219, 9951, 712, 13, 1033, 30, 20707, 38241, 293, 456, 307, 9951, 712, 13, 1610, 2171, 309, 307, 1219, 3983, 13], "avg_logprob": -0.5916095955731118, "compression_ratio": 1.7251184834123223, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1679.52, "end": 1679.96, "word": "The", "probability": 0.33935546875}, {"start": 1679.96, "end": 1680.12, "word": " first", "probability": 0.697265625}, {"start": 1680.12, "end": 1680.38, "word": " thing", "probability": 0.5078125}, {"start": 1680.38, "end": 1680.46, "word": " is", "probability": 0.405029296875}, {"start": 1680.46, "end": 1680.52, "word": " the", "probability": 0.7021484375}, {"start": 1680.52, "end": 1680.58, "word": " main", "probability": 0.40771484375}, {"start": 1680.58, "end": 1681.26, "word": " component", "probability": 0.791015625}, {"start": 1681.26, "end": 1681.82, "word": " that", "probability": 0.6611328125}, {"start": 1681.82, "end": 1682.26, "word": " communicates", "probability": 0.545196533203125}, {"start": 1682.26, "end": 1682.9, "word": " to", "probability": 0.413818359375}, {"start": 1682.9, "end": 1682.9, "word": " the", "probability": 0.350341796875}, {"start": 1682.9, "end": 1683.0, "word": " other", "probability": 0.73388671875}, {"start": 1683.0, "end": 1683.0, "word": " elements", "probability": 0.73583984375}, {"start": 1683.0, "end": 1683.32, "word": " such", "probability": 0.1680908203125}, {"start": 1683.32, "end": 1683.56, "word": " as", "probability": 0.96533203125}, {"start": 1683.56, "end": 1683.96, "word": " network,", "probability": 0.57470703125}, {"start": 1684.1, "end": 1684.3, "word": " message", "probability": 0.77587890625}, {"start": 1684.3, "end": 1684.7, "word": " handler,", "probability": 0.85400390625}, {"start": 1684.82, "end": 1685.06, "word": " WIM", "probability": 0.585693359375}, {"start": 1685.06, "end": 1685.36, "word": " which", "probability": 0.1900634765625}, {"start": 1685.36, "end": 1685.48, "word": " is", "probability": 0.423828125}, {"start": 1685.48, "end": 1685.68, "word": " represented", "probability": 0.580078125}, {"start": 1685.68, "end": 1686.06, "word": " here.", "probability": 0.6689453125}, {"start": 1686.48, "end": 1686.88, "word": " This", "probability": 0.2376708984375}, {"start": 1686.88, "end": 1687.28, "word": " class", "probability": 0.78271484375}, {"start": 1687.28, "end": 1687.38, "word": " is", "probability": 0.8525390625}, {"start": 1687.38, "end": 1687.62, "word": " called", "probability": 0.7265625}, {"start": 1687.62, "end": 1687.76, "word": " what?", "probability": 0.29248046875}, {"start": 1688.88, "end": 1689.48, "word": " Observable.", "probability": 0.8310546875}, {"start": 1689.78, "end": 1690.18, "word": " It", "probability": 0.08154296875}, {"start": 1690.18, "end": 1690.36, "word": " is", "probability": 0.348388671875}, {"start": 1690.36, "end": 1690.62, "word": " distinguished", "probability": 0.464599609375}, {"start": 1690.62, "end": 1690.92, "word": " between", "probability": 0.638671875}, {"start": 1690.92, "end": 1691.3, "word": " two", "probability": 0.85791015625}, {"start": 1691.3, "end": 1691.3, "word": " things.", "probability": 0.441162109375}, {"start": 1691.52, "end": 1691.66, "word": " There", "probability": 0.443359375}, {"start": 1691.66, "end": 1691.7, "word": " is", "probability": 0.8369140625}, {"start": 1691.7, "end": 1691.92, "word": " something", "probability": 0.454833984375}, {"start": 1691.92, "end": 1692.18, "word": " called", "probability": 0.8544921875}, {"start": 1692.18, "end": 1692.76, "word": " observer", "probability": 0.498291015625}, {"start": 1692.76, "end": 1693.46, "word": " and", "probability": 0.8193359375}, {"start": 1693.46, "end": 1693.6, "word": " something", "probability": 0.49169921875}, {"start": 1693.6, "end": 1693.9, "word": " called", "probability": 0.84716796875}, {"start": 1693.9, "end": 1694.58, "word": " observable.", "probability": 0.923583984375}, {"start": 1695.2, "end": 1695.3, "word": " Okay?", "probability": 0.2230224609375}, {"start": 1696.0, "end": 1696.6, "word": " Observer", "probability": 0.866455078125}, {"start": 1696.6, "end": 1699.76, "word": " and", "probability": 0.62890625}, {"start": 1699.76, "end": 1699.86, "word": " there", "probability": 0.4794921875}, {"start": 1699.86, "end": 1700.16, "word": " is", "probability": 0.91552734375}, {"start": 1700.16, "end": 1701.68, "word": " observable.", "probability": 0.889892578125}, {"start": 1702.94, "end": 1703.08, "word": " Or", "probability": 0.61474609375}, {"start": 1703.08, "end": 1703.42, "word": " sometimes", "probability": 0.56884765625}, {"start": 1703.42, "end": 1703.7, "word": " it", "probability": 0.330322265625}, {"start": 1703.7, "end": 1703.74, "word": " is", "probability": 0.869140625}, {"start": 1703.74, "end": 1704.14, "word": " called", "probability": 0.86279296875}, {"start": 1704.14, "end": 1704.7, "word": " subject.", "probability": 0.87353515625}], "temperature": 1.0}, {"id": 67, "seek": 172716, "start": 1708.12, "end": 1727.16, "text": "Now, the word observer is an active noun and this is a negative noun. Observer means the observer, right? Observable is the observer who cares about me knowing his situation, who cares about me getting information from him Because in our examples, before we explain today who is the observer and who is the observable", "tokens": [13267, 11, 264, 1349, 27878, 307, 364, 4967, 23307, 293, 341, 307, 257, 3671, 23307, 13, 20707, 38241, 1355, 264, 27878, 11, 558, 30, 42547, 712, 307, 264, 27878, 567, 12310, 466, 385, 5276, 702, 2590, 11, 567, 12310, 466, 385, 1242, 1589, 490, 796, 1436, 294, 527, 5110, 11, 949, 321, 2903, 965, 567, 307, 264, 27878, 293, 567, 307, 264, 9951, 712], "avg_logprob": -0.49615384615384617, "compression_ratio": 1.8011363636363635, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1708.12, "end": 1708.52, "word": "Now,", "probability": 0.360107421875}, {"start": 1708.58, "end": 1708.74, "word": " the", "probability": 0.7265625}, {"start": 1708.74, "end": 1708.94, "word": " word", "probability": 0.9228515625}, {"start": 1708.94, "end": 1709.54, "word": " observer", "probability": 0.57421875}, {"start": 1709.54, "end": 1710.42, "word": " is", "probability": 0.66259765625}, {"start": 1710.42, "end": 1710.62, "word": " an", "probability": 0.480224609375}, {"start": 1710.62, "end": 1710.82, "word": " active", "probability": 0.7392578125}, {"start": 1710.82, "end": 1710.9, "word": " noun", "probability": 0.90771484375}, {"start": 1710.9, "end": 1711.04, "word": " and", "probability": 0.474365234375}, {"start": 1711.04, "end": 1711.18, "word": " this", "probability": 0.51904296875}, {"start": 1711.18, "end": 1711.42, "word": " is", "probability": 0.355224609375}, {"start": 1711.42, "end": 1712.0, "word": " a", "probability": 0.58642578125}, {"start": 1712.0, "end": 1712.24, "word": " negative", "probability": 0.21826171875}, {"start": 1712.24, "end": 1712.42, "word": " noun.", "probability": 0.955078125}, {"start": 1713.04, "end": 1713.48, "word": " Observer", "probability": 0.820068359375}, {"start": 1713.48, "end": 1713.68, "word": " means", "probability": 0.8681640625}, {"start": 1713.68, "end": 1713.8, "word": " the", "probability": 0.26904296875}, {"start": 1713.8, "end": 1714.12, "word": " observer,", "probability": 0.331787109375}, {"start": 1714.98, "end": 1715.16, "word": " right?", "probability": 0.233154296875}, {"start": 1716.56, "end": 1717.0, "word": " Observable", "probability": 0.880126953125}, {"start": 1717.0, "end": 1717.36, "word": " is", "probability": 0.52783203125}, {"start": 1717.36, "end": 1717.42, "word": " the", "probability": 0.84814453125}, {"start": 1717.42, "end": 1717.76, "word": " observer", "probability": 0.5966796875}, {"start": 1717.76, "end": 1718.52, "word": " who", "probability": 0.438720703125}, {"start": 1718.52, "end": 1718.96, "word": " cares", "probability": 0.55517578125}, {"start": 1718.96, "end": 1719.14, "word": " about", "probability": 0.6640625}, {"start": 1719.14, "end": 1719.14, "word": " me", "probability": 0.20703125}, {"start": 1719.14, "end": 1719.38, "word": " knowing", "probability": 0.6982421875}, {"start": 1719.38, "end": 1719.52, "word": " his", "probability": 0.701171875}, {"start": 1719.52, "end": 1719.84, "word": " situation,", "probability": 0.383544921875}, {"start": 1720.56, "end": 1720.66, "word": " who", "probability": 0.751953125}, {"start": 1720.66, "end": 1720.86, "word": " cares", "probability": 0.81884765625}, {"start": 1720.86, "end": 1720.98, "word": " about", "probability": 0.63720703125}, {"start": 1720.98, "end": 1721.06, "word": " me", "probability": 0.638671875}, {"start": 1721.06, "end": 1721.24, "word": " getting", "probability": 0.54833984375}, {"start": 1721.24, "end": 1721.56, "word": " information", "probability": 0.73681640625}, {"start": 1721.56, "end": 1721.84, "word": " from", "probability": 0.8291015625}, {"start": 1721.84, "end": 1722.1, "word": " him", "probability": 0.94091796875}, {"start": 1722.1, "end": 1722.84, "word": " Because", "probability": 0.1475830078125}, {"start": 1722.84, "end": 1722.98, "word": " in", "probability": 0.87548828125}, {"start": 1722.98, "end": 1723.04, "word": " our", "probability": 0.8935546875}, {"start": 1723.04, "end": 1723.44, "word": " examples,", "probability": 0.6318359375}, {"start": 1724.22, "end": 1724.48, "word": " before", "probability": 0.77978515625}, {"start": 1724.48, "end": 1724.7, "word": " we", "probability": 0.54052734375}, {"start": 1724.7, "end": 1724.9, "word": " explain", "probability": 0.8330078125}, {"start": 1724.9, "end": 1725.12, "word": " today", "probability": 0.6083984375}, {"start": 1725.12, "end": 1725.38, "word": " who", "probability": 0.595703125}, {"start": 1725.38, "end": 1725.56, "word": " is", "probability": 0.84765625}, {"start": 1725.56, "end": 1725.64, "word": " the", "probability": 0.86083984375}, {"start": 1725.64, "end": 1726.08, "word": " observer", "probability": 0.8505859375}, {"start": 1726.08, "end": 1726.28, "word": " and", "probability": 0.90966796875}, {"start": 1726.28, "end": 1726.4, "word": " who", "probability": 0.91650390625}, {"start": 1726.4, "end": 1726.46, "word": " is", "probability": 0.9482421875}, {"start": 1726.46, "end": 1726.54, "word": " the", "probability": 0.9052734375}, {"start": 1726.54, "end": 1727.16, "word": " observable", "probability": 0.932373046875}], "temperature": 1.0}, {"id": 68, "seek": 174460, "start": 1729.24, "end": 1744.6, "text": "The observable is the source of information, which is the network message hander, which is class A in the example of the previous lecture, which is those who have information and want to pass it on to others. This is the observable, which we want information from them", "tokens": [2278, 9951, 712, 307, 264, 4009, 295, 1589, 11, 597, 307, 264, 3209, 3636, 1011, 260, 11, 597, 307, 1508, 316, 294, 264, 1365, 295, 264, 3894, 7991, 11, 597, 307, 729, 567, 362, 1589, 293, 528, 281, 1320, 309, 322, 281, 2357, 13, 639, 307, 264, 9951, 712, 11, 597, 321, 528, 1589, 490, 552], "avg_logprob": -0.483004373416566, "compression_ratio": 1.7402597402597402, "no_speech_prob": 9.953975677490234e-06, "words": [{"start": 1729.24, "end": 1729.76, "word": "The", "probability": 0.489501953125}, {"start": 1729.76, "end": 1730.28, "word": " observable", "probability": 0.760498046875}, {"start": 1730.28, "end": 1730.48, "word": " is", "probability": 0.9033203125}, {"start": 1730.48, "end": 1731.06, "word": " the", "probability": 0.7705078125}, {"start": 1731.06, "end": 1731.2, "word": " source", "probability": 0.56787109375}, {"start": 1731.2, "end": 1731.42, "word": " of", "probability": 0.93896484375}, {"start": 1731.42, "end": 1731.84, "word": " information,", "probability": 0.4794921875}, {"start": 1732.4, "end": 1732.8, "word": " which", "probability": 0.37890625}, {"start": 1732.8, "end": 1732.92, "word": " is", "probability": 0.87939453125}, {"start": 1732.92, "end": 1733.02, "word": " the", "probability": 0.6591796875}, {"start": 1733.02, "end": 1733.28, "word": " network", "probability": 0.88623046875}, {"start": 1733.28, "end": 1733.64, "word": " message", "probability": 0.66162109375}, {"start": 1733.64, "end": 1734.06, "word": " hander,", "probability": 0.58935546875}, {"start": 1734.58, "end": 1734.62, "word": " which", "probability": 0.634765625}, {"start": 1734.62, "end": 1734.82, "word": " is", "probability": 0.8916015625}, {"start": 1734.82, "end": 1735.16, "word": " class", "probability": 0.685546875}, {"start": 1735.16, "end": 1735.52, "word": " A", "probability": 0.86474609375}, {"start": 1735.52, "end": 1735.8, "word": " in", "probability": 0.6337890625}, {"start": 1735.8, "end": 1736.06, "word": " the", "probability": 0.81640625}, {"start": 1736.06, "end": 1736.06, "word": " example", "probability": 0.30517578125}, {"start": 1736.06, "end": 1736.16, "word": " of", "probability": 0.83154296875}, {"start": 1736.16, "end": 1736.2, "word": " the", "probability": 0.802734375}, {"start": 1736.2, "end": 1736.2, "word": " previous", "probability": 0.59814453125}, {"start": 1736.2, "end": 1736.82, "word": " lecture,", "probability": 0.8828125}, {"start": 1737.52, "end": 1737.64, "word": " which", "probability": 0.55908203125}, {"start": 1737.64, "end": 1737.78, "word": " is", "probability": 0.59912109375}, {"start": 1737.78, "end": 1738.86, "word": " those", "probability": 0.171630859375}, {"start": 1738.86, "end": 1739.08, "word": " who", "probability": 0.86279296875}, {"start": 1739.08, "end": 1739.3, "word": " have", "probability": 0.900390625}, {"start": 1739.3, "end": 1739.84, "word": " information", "probability": 0.435546875}, {"start": 1739.84, "end": 1740.02, "word": " and", "probability": 0.35302734375}, {"start": 1740.02, "end": 1740.12, "word": " want", "probability": 0.607421875}, {"start": 1740.12, "end": 1740.12, "word": " to", "probability": 0.95654296875}, {"start": 1740.12, "end": 1740.34, "word": " pass", "probability": 0.26953125}, {"start": 1740.34, "end": 1740.44, "word": " it", "probability": 0.87744140625}, {"start": 1740.44, "end": 1740.52, "word": " on", "probability": 0.66552734375}, {"start": 1740.52, "end": 1740.52, "word": " to", "probability": 0.8994140625}, {"start": 1740.52, "end": 1740.88, "word": " others.", "probability": 0.8916015625}, {"start": 1741.46, "end": 1741.6, "word": " This", "probability": 0.67236328125}, {"start": 1741.6, "end": 1741.68, "word": " is", "probability": 0.93896484375}, {"start": 1741.68, "end": 1741.74, "word": " the", "probability": 0.70166015625}, {"start": 1741.74, "end": 1742.36, "word": " observable,", "probability": 0.9365234375}, {"start": 1742.58, "end": 1742.68, "word": " which", "probability": 0.478271484375}, {"start": 1742.68, "end": 1742.96, "word": " we", "probability": 0.759765625}, {"start": 1742.96, "end": 1743.7, "word": " want", "probability": 0.669921875}, {"start": 1743.7, "end": 1743.98, "word": " information", "probability": 0.468017578125}, {"start": 1743.98, "end": 1744.14, "word": " from", "probability": 0.86083984375}, {"start": 1744.14, "end": 1744.6, "word": " them", "probability": 0.34130859375}], "temperature": 1.0}, {"id": 69, "seek": 177226, "start": 1746.48, "end": 1772.26, "text": "The Observer is the one who monitors, he is the listener, exactly, from his name Observer means he monitors, he wants to listen, which is represented in our program as UI, Logger, DB Component, all of these are listeners or observers Now, the class, this is the class Observer, okay, it is of course, in my example, I made one class, he made two classes, that is, he made", "tokens": [2278, 20707, 38241, 307, 264, 472, 567, 26518, 11, 415, 307, 264, 31569, 11, 2293, 11, 490, 702, 1315, 20707, 38241, 1355, 415, 26518, 11, 415, 2738, 281, 2140, 11, 597, 307, 10379, 294, 527, 1461, 382, 15682, 11, 10824, 1321, 11, 26754, 6620, 30365, 11, 439, 295, 613, 366, 23274, 420, 48090, 823, 11, 264, 1508, 11, 341, 307, 264, 1508, 20707, 38241, 11, 1392, 11, 309, 307, 295, 1164, 11, 294, 452, 1365, 11, 286, 1027, 472, 1508, 11, 415, 1027, 732, 5359, 11, 300, 307, 11, 415, 1027], "avg_logprob": -0.653192941909251, "compression_ratio": 1.733644859813084, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 1746.48, "end": 1746.72, "word": "The", "probability": 0.476318359375}, {"start": 1746.72, "end": 1747.16, "word": " Observer", "probability": 0.5882568359375}, {"start": 1747.16, "end": 1747.38, "word": " is", "probability": 0.78564453125}, {"start": 1747.38, "end": 1747.5, "word": " the", "probability": 0.6181640625}, {"start": 1747.5, "end": 1747.52, "word": " one", "probability": 0.55859375}, {"start": 1747.52, "end": 1747.52, "word": " who", "probability": 0.27001953125}, {"start": 1747.52, "end": 1747.78, "word": " monitors,", "probability": 0.28125}, {"start": 1748.64, "end": 1749.0, "word": " he", "probability": 0.185791015625}, {"start": 1749.0, "end": 1749.1, "word": " is", "probability": 0.68115234375}, {"start": 1749.1, "end": 1749.22, "word": " the", "probability": 0.7734375}, {"start": 1749.22, "end": 1749.54, "word": " listener,", "probability": 0.79150390625}, {"start": 1749.8, "end": 1750.14, "word": " exactly,", "probability": 0.2822265625}, {"start": 1750.36, "end": 1750.5, "word": " from", "probability": 0.402099609375}, {"start": 1750.5, "end": 1750.76, "word": " his", "probability": 0.76220703125}, {"start": 1750.76, "end": 1750.76, "word": " name", "probability": 0.8720703125}, {"start": 1750.76, "end": 1751.38, "word": " Observer", "probability": 0.6319580078125}, {"start": 1751.38, "end": 1751.98, "word": " means", "probability": 0.39892578125}, {"start": 1751.98, "end": 1752.02, "word": " he", "probability": 0.318115234375}, {"start": 1752.02, "end": 1752.02, "word": " monitors,", "probability": 0.292724609375}, {"start": 1752.14, "end": 1752.28, "word": " he", "probability": 0.358154296875}, {"start": 1752.28, "end": 1752.46, "word": " wants", "probability": 0.403564453125}, {"start": 1752.46, "end": 1752.46, "word": " to", "probability": 0.9697265625}, {"start": 1752.46, "end": 1752.98, "word": " listen,", "probability": 0.77783203125}, {"start": 1753.64, "end": 1753.98, "word": " which", "probability": 0.2132568359375}, {"start": 1753.98, "end": 1754.12, "word": " is", "probability": 0.380859375}, {"start": 1754.12, "end": 1754.48, "word": " represented", "probability": 0.43505859375}, {"start": 1754.48, "end": 1755.18, "word": " in", "probability": 0.59814453125}, {"start": 1755.18, "end": 1755.72, "word": " our", "probability": 0.350830078125}, {"start": 1755.72, "end": 1755.72, "word": " program", "probability": 0.63330078125}, {"start": 1755.72, "end": 1755.9, "word": " as", "probability": 0.2255859375}, {"start": 1755.9, "end": 1756.24, "word": " UI,", "probability": 0.47509765625}, {"start": 1756.7, "end": 1757.1, "word": " Logger,", "probability": 0.591552734375}, {"start": 1757.38, "end": 1757.6, "word": " DB", "probability": 0.79443359375}, {"start": 1757.6, "end": 1758.18, "word": " Component,", "probability": 0.6136474609375}, {"start": 1758.3, "end": 1758.4, "word": " all", "probability": 0.66796875}, {"start": 1758.4, "end": 1758.48, "word": " of", "probability": 0.65380859375}, {"start": 1758.48, "end": 1758.62, "word": " these", "probability": 0.3720703125}, {"start": 1758.62, "end": 1758.72, "word": " are", "probability": 0.82958984375}, {"start": 1758.72, "end": 1759.4, "word": " listeners", "probability": 0.5263671875}, {"start": 1759.4, "end": 1759.74, "word": " or", "probability": 0.8740234375}, {"start": 1759.74, "end": 1760.36, "word": " observers", "probability": 0.93310546875}, {"start": 1760.36, "end": 1761.32, "word": " Now,", "probability": 0.297119140625}, {"start": 1763.42, "end": 1763.56, "word": " the", "probability": 0.376708984375}, {"start": 1763.56, "end": 1763.94, "word": " class,", "probability": 0.87646484375}, {"start": 1764.02, "end": 1764.18, "word": " this", "probability": 0.85888671875}, {"start": 1764.18, "end": 1764.24, "word": " is", "probability": 0.6474609375}, {"start": 1764.24, "end": 1764.32, "word": " the", "probability": 0.88037109375}, {"start": 1764.32, "end": 1764.6, "word": " class", "probability": 0.830078125}, {"start": 1764.6, "end": 1765.16, "word": " Observer,", "probability": 0.6917724609375}, {"start": 1765.94, "end": 1766.04, "word": " okay,", "probability": 0.26123046875}, {"start": 1766.38, "end": 1766.56, "word": " it", "probability": 0.298828125}, {"start": 1766.56, "end": 1766.66, "word": " is", "probability": 0.7041015625}, {"start": 1766.66, "end": 1766.8, "word": " of", "probability": 0.658203125}, {"start": 1766.8, "end": 1766.88, "word": " course,", "probability": 0.96240234375}, {"start": 1767.16, "end": 1767.38, "word": " in", "probability": 0.53125}, {"start": 1767.38, "end": 1767.82, "word": " my", "probability": 0.693359375}, {"start": 1767.82, "end": 1767.82, "word": " example,", "probability": 0.396484375}, {"start": 1767.9, "end": 1767.94, "word": " I", "probability": 0.9404296875}, {"start": 1767.94, "end": 1768.1, "word": " made", "probability": 0.6748046875}, {"start": 1768.1, "end": 1768.24, "word": " one", "probability": 0.5224609375}, {"start": 1768.24, "end": 1768.72, "word": " class,", "probability": 0.9775390625}, {"start": 1769.38, "end": 1769.56, "word": " he", "probability": 0.356689453125}, {"start": 1769.56, "end": 1769.68, "word": " made", "probability": 0.1396484375}, {"start": 1769.68, "end": 1770.48, "word": " two", "probability": 0.5478515625}, {"start": 1770.48, "end": 1770.94, "word": " classes,", "probability": 0.95361328125}, {"start": 1771.1, "end": 1771.78, "word": " that", "probability": 0.1898193359375}, {"start": 1771.78, "end": 1771.84, "word": " is,", "probability": 0.7822265625}, {"start": 1771.9, "end": 1772.12, "word": " he", "probability": 0.72607421875}, {"start": 1772.12, "end": 1772.26, "word": " made", "probability": 0.7919921875}], "temperature": 1.0}, {"id": 70, "seek": 179591, "start": 1773.51, "end": 1795.91, "text": "Let's say superclass, put the list in it, did you get what superclass is? Or any observable, okay? There should be a list of listeners, right or not? Okay, where is it? The first thing is the observer, we said it needs an interface, right? Whose interface is it? The observer's, this is the interface", "tokens": [8373, 311, 584, 1687, 11665, 11, 829, 264, 1329, 294, 309, 11, 630, 291, 483, 437, 1687, 11665, 307, 30, 1610, 604, 9951, 712, 11, 1392, 30, 821, 820, 312, 257, 1329, 295, 23274, 11, 558, 420, 406, 30, 1033, 11, 689, 307, 309, 30, 440, 700, 551, 307, 264, 27878, 11, 321, 848, 309, 2203, 364, 9226, 11, 558, 30, 28463, 9226, 307, 309, 30, 440, 27878, 311, 11, 341, 307, 264, 9226], "avg_logprob": -0.4545833325386047, "compression_ratio": 1.6483516483516483, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1773.51, "end": 1773.95, "word": "Let's", "probability": 0.5914306640625}, {"start": 1773.95, "end": 1774.15, "word": " say", "probability": 0.92724609375}, {"start": 1774.15, "end": 1775.19, "word": " superclass,", "probability": 0.665283203125}, {"start": 1775.33, "end": 1775.53, "word": " put", "probability": 0.1854248046875}, {"start": 1775.53, "end": 1777.19, "word": " the", "probability": 0.30908203125}, {"start": 1777.19, "end": 1778.47, "word": " list", "probability": 0.83056640625}, {"start": 1778.47, "end": 1778.65, "word": " in", "probability": 0.345947265625}, {"start": 1778.65, "end": 1778.79, "word": " it,", "probability": 0.84375}, {"start": 1779.01, "end": 1779.17, "word": " did", "probability": 0.22900390625}, {"start": 1779.17, "end": 1779.31, "word": " you", "probability": 0.96240234375}, {"start": 1779.31, "end": 1779.31, "word": " get", "probability": 0.282958984375}, {"start": 1779.31, "end": 1779.45, "word": " what", "probability": 0.4775390625}, {"start": 1779.45, "end": 1780.67, "word": " superclass", "probability": 0.805908203125}, {"start": 1780.67, "end": 1781.09, "word": " is?", "probability": 0.56103515625}, {"start": 1781.35, "end": 1781.61, "word": " Or", "probability": 0.65185546875}, {"start": 1781.61, "end": 1782.63, "word": " any", "probability": 0.85009765625}, {"start": 1782.63, "end": 1783.41, "word": " observable,", "probability": 0.940673828125}, {"start": 1784.15, "end": 1784.45, "word": " okay?", "probability": 0.317138671875}, {"start": 1784.53, "end": 1784.61, "word": " There", "probability": 0.3994140625}, {"start": 1784.61, "end": 1784.75, "word": " should", "probability": 0.65185546875}, {"start": 1784.75, "end": 1785.05, "word": " be", "probability": 0.93603515625}, {"start": 1785.05, "end": 1785.25, "word": " a", "probability": 0.92724609375}, {"start": 1785.25, "end": 1785.51, "word": " list", "probability": 0.91748046875}, {"start": 1785.51, "end": 1785.81, "word": " of", "probability": 0.97265625}, {"start": 1785.81, "end": 1786.35, "word": " listeners,", "probability": 0.89306640625}, {"start": 1786.61, "end": 1786.79, "word": " right", "probability": 0.71923828125}, {"start": 1786.79, "end": 1786.93, "word": " or", "probability": 0.580078125}, {"start": 1786.93, "end": 1787.07, "word": " not?", "probability": 0.53173828125}, {"start": 1787.65, "end": 1787.89, "word": " Okay,", "probability": 0.57666015625}, {"start": 1788.45, "end": 1788.99, "word": " where", "probability": 0.395263671875}, {"start": 1788.99, "end": 1789.01, "word": " is", "probability": 0.451416015625}, {"start": 1789.01, "end": 1789.19, "word": " it?", "probability": 0.77978515625}, {"start": 1789.47, "end": 1789.63, "word": " The", "probability": 0.424560546875}, {"start": 1789.63, "end": 1789.71, "word": " first", "probability": 0.84228515625}, {"start": 1789.71, "end": 1790.01, "word": " thing", "probability": 0.88623046875}, {"start": 1790.01, "end": 1790.09, "word": " is", "probability": 0.4853515625}, {"start": 1790.09, "end": 1790.17, "word": " the", "probability": 0.61279296875}, {"start": 1790.17, "end": 1790.55, "word": " observer,", "probability": 0.86083984375}, {"start": 1790.77, "end": 1790.95, "word": " we", "probability": 0.6708984375}, {"start": 1790.95, "end": 1791.13, "word": " said", "probability": 0.91259765625}, {"start": 1791.13, "end": 1791.25, "word": " it", "probability": 0.62109375}, {"start": 1791.25, "end": 1791.33, "word": " needs", "probability": 0.513671875}, {"start": 1791.33, "end": 1791.47, "word": " an", "probability": 0.7998046875}, {"start": 1791.47, "end": 1791.91, "word": " interface,", "probability": 0.89208984375}, {"start": 1792.17, "end": 1792.39, "word": " right?", "probability": 0.87451171875}, {"start": 1792.77, "end": 1792.97, "word": " Whose", "probability": 0.56787109375}, {"start": 1792.97, "end": 1793.49, "word": " interface", "probability": 0.830078125}, {"start": 1793.49, "end": 1793.67, "word": " is", "probability": 0.6015625}, {"start": 1793.67, "end": 1793.77, "word": " it?", "probability": 0.671875}, {"start": 1793.83, "end": 1794.25, "word": " The", "probability": 0.1273193359375}, {"start": 1794.25, "end": 1795.11, "word": " observer's,", "probability": 0.848388671875}, {"start": 1795.11, "end": 1795.29, "word": " this", "probability": 0.66162109375}, {"start": 1795.29, "end": 1795.33, "word": " is", "probability": 0.8876953125}, {"start": 1795.33, "end": 1795.43, "word": " the", "probability": 0.884765625}, {"start": 1795.43, "end": 1795.91, "word": " interface", "probability": 0.8583984375}], "temperature": 1.0}, {"id": 71, "seek": 181840, "start": 1796.64, "end": 1818.4, "text": " Or they consider it as abstract class for example One idea, abstract class or interface in the end if they want to implement it or extend it, it will take its form, right or not? But we prefer it to be an interface So this is the interface, consider it as an interface, okay? Its name is observer, okay? And there is a method called", "tokens": [1610, 436, 1949, 309, 382, 12649, 1508, 337, 1365, 1485, 1558, 11, 12649, 1508, 420, 9226, 294, 264, 917, 498, 436, 528, 281, 4445, 309, 420, 10101, 309, 11, 309, 486, 747, 1080, 1254, 11, 558, 420, 406, 30, 583, 321, 4382, 309, 281, 312, 364, 9226, 407, 341, 307, 264, 9226, 11, 1949, 309, 382, 364, 9226, 11, 1392, 30, 6953, 1315, 307, 27878, 11, 1392, 30, 400, 456, 307, 257, 3170, 1219], "avg_logprob": -0.5158333603541057, "compression_ratio": 1.7526315789473683, "no_speech_prob": 4.887580871582031e-06, "words": [{"start": 1796.64, "end": 1796.92, "word": " Or", "probability": 0.2117919921875}, {"start": 1796.92, "end": 1797.18, "word": " they", "probability": 0.513671875}, {"start": 1797.18, "end": 1797.86, "word": " consider", "probability": 0.2188720703125}, {"start": 1797.86, "end": 1797.98, "word": " it", "probability": 0.51708984375}, {"start": 1797.98, "end": 1798.0, "word": " as", "probability": 0.53515625}, {"start": 1798.0, "end": 1798.28, "word": " abstract", "probability": 0.478271484375}, {"start": 1798.28, "end": 1798.8, "word": " class", "probability": 0.9580078125}, {"start": 1798.8, "end": 1798.92, "word": " for", "probability": 0.334716796875}, {"start": 1798.92, "end": 1799.64, "word": " example", "probability": 0.8935546875}, {"start": 1799.64, "end": 1800.22, "word": " One", "probability": 0.142333984375}, {"start": 1800.22, "end": 1801.9, "word": " idea,", "probability": 0.712890625}, {"start": 1802.2, "end": 1802.48, "word": " abstract", "probability": 0.80859375}, {"start": 1802.48, "end": 1803.0, "word": " class", "probability": 0.9755859375}, {"start": 1803.0, "end": 1803.14, "word": " or", "probability": 0.92626953125}, {"start": 1803.14, "end": 1803.62, "word": " interface", "probability": 0.8671875}, {"start": 1803.62, "end": 1803.78, "word": " in", "probability": 0.1461181640625}, {"start": 1803.78, "end": 1803.9, "word": " the", "probability": 0.8779296875}, {"start": 1803.9, "end": 1804.04, "word": " end", "probability": 0.90771484375}, {"start": 1804.04, "end": 1804.16, "word": " if", "probability": 0.2181396484375}, {"start": 1804.16, "end": 1804.32, "word": " they", "probability": 0.48095703125}, {"start": 1804.32, "end": 1804.36, "word": " want", "probability": 0.79296875}, {"start": 1804.36, "end": 1804.36, "word": " to", "probability": 0.94970703125}, {"start": 1804.36, "end": 1804.98, "word": " implement", "probability": 0.73291015625}, {"start": 1804.98, "end": 1805.22, "word": " it", "probability": 0.31103515625}, {"start": 1805.22, "end": 1805.22, "word": " or", "probability": 0.7880859375}, {"start": 1805.22, "end": 1805.78, "word": " extend", "probability": 0.93701171875}, {"start": 1805.78, "end": 1806.22, "word": " it,", "probability": 0.8740234375}, {"start": 1806.32, "end": 1806.44, "word": " it", "probability": 0.64208984375}, {"start": 1806.44, "end": 1806.5, "word": " will", "probability": 0.625}, {"start": 1806.5, "end": 1806.68, "word": " take", "probability": 0.7470703125}, {"start": 1806.68, "end": 1807.02, "word": " its", "probability": 0.482177734375}, {"start": 1807.02, "end": 1807.02, "word": " form,", "probability": 0.2490234375}, {"start": 1807.36, "end": 1807.52, "word": " right", "probability": 0.4765625}, {"start": 1807.52, "end": 1807.68, "word": " or", "probability": 0.93359375}, {"start": 1807.68, "end": 1807.8, "word": " not?", "probability": 0.5078125}, {"start": 1808.24, "end": 1808.52, "word": " But", "probability": 0.82861328125}, {"start": 1808.52, "end": 1808.72, "word": " we", "probability": 0.92431640625}, {"start": 1808.72, "end": 1809.08, "word": " prefer", "probability": 0.93896484375}, {"start": 1809.08, "end": 1809.3, "word": " it", "probability": 0.65869140625}, {"start": 1809.3, "end": 1809.34, "word": " to", "probability": 0.87744140625}, {"start": 1809.34, "end": 1809.66, "word": " be", "probability": 0.93798828125}, {"start": 1809.66, "end": 1810.44, "word": " an", "probability": 0.3525390625}, {"start": 1810.44, "end": 1810.92, "word": " interface", "probability": 0.8564453125}, {"start": 1810.92, "end": 1811.62, "word": " So", "probability": 0.544921875}, {"start": 1811.62, "end": 1811.8, "word": " this", "probability": 0.6689453125}, {"start": 1811.8, "end": 1811.9, "word": " is", "probability": 0.908203125}, {"start": 1811.9, "end": 1812.06, "word": " the", "probability": 0.69091796875}, {"start": 1812.06, "end": 1812.54, "word": " interface,", "probability": 0.8818359375}, {"start": 1812.6, "end": 1812.88, "word": " consider", "probability": 0.7216796875}, {"start": 1812.88, "end": 1813.12, "word": " it", "probability": 0.5322265625}, {"start": 1813.12, "end": 1813.16, "word": " as", "probability": 0.64501953125}, {"start": 1813.16, "end": 1813.28, "word": " an", "probability": 0.80517578125}, {"start": 1813.28, "end": 1813.84, "word": " interface,", "probability": 0.80322265625}, {"start": 1814.4, "end": 1814.58, "word": " okay?", "probability": 0.1878662109375}, {"start": 1814.68, "end": 1814.74, "word": " Its", "probability": 0.4560546875}, {"start": 1814.74, "end": 1814.92, "word": " name", "probability": 0.88671875}, {"start": 1814.92, "end": 1814.98, "word": " is", "probability": 0.9541015625}, {"start": 1814.98, "end": 1815.5, "word": " observer,", "probability": 0.48291015625}, {"start": 1815.9, "end": 1816.74, "word": " okay?", "probability": 0.72998046875}, {"start": 1817.2, "end": 1817.48, "word": " And", "probability": 0.8115234375}, {"start": 1817.48, "end": 1817.7, "word": " there", "probability": 0.38671875}, {"start": 1817.7, "end": 1817.74, "word": " is", "probability": 0.7568359375}, {"start": 1817.74, "end": 1817.86, "word": " a", "probability": 0.8466796875}, {"start": 1817.86, "end": 1818.12, "word": " method", "probability": 0.9521484375}, {"start": 1818.12, "end": 1818.4, "word": " called", "probability": 0.5712890625}], "temperature": 1.0}, {"id": 72, "seek": 184573, "start": 1819.65, "end": 1845.73, "text": " Update, okay? Of course, this interface prefers that we know internally who is inside the observer But of course, in today's diagram, there is no need to put a square inside a square when we define a class inside a class Right or not? In the end, the squares will be separate from each other But you should understand that this prefers the interface to be defined inside whom? Inside the class of the observer And of course, inside the observer, there will be a list of what?", "tokens": [28923, 11, 1392, 30, 2720, 1164, 11, 341, 9226, 44334, 300, 321, 458, 19501, 567, 307, 1854, 264, 27878, 583, 295, 1164, 11, 294, 965, 311, 10686, 11, 456, 307, 572, 643, 281, 829, 257, 3732, 1854, 257, 3732, 562, 321, 6964, 257, 1508, 1854, 257, 1508, 1779, 420, 406, 30, 682, 264, 917, 11, 264, 19368, 486, 312, 4994, 490, 1184, 661, 583, 291, 820, 1223, 300, 341, 44334, 264, 9226, 281, 312, 7642, 1854, 7101, 30, 15123, 264, 1508, 295, 264, 27878, 400, 295, 1164, 11, 1854, 264, 27878, 11, 456, 486, 312, 257, 1329, 295, 437, 30], "avg_logprob": -0.47339109501036086, "compression_ratio": 1.8964143426294822, "no_speech_prob": 5.424022674560547e-06, "words": [{"start": 1819.6499999999999, "end": 1820.07, "word": " Update,", "probability": 0.392578125}, {"start": 1820.63, "end": 1820.85, "word": " okay?", "probability": 0.30126953125}, {"start": 1821.61, "end": 1821.61, "word": " Of", "probability": 0.333984375}, {"start": 1821.61, "end": 1821.61, "word": " course,", "probability": 0.95263671875}, {"start": 1821.67, "end": 1821.79, "word": " this", "probability": 0.72900390625}, {"start": 1821.79, "end": 1822.29, "word": " interface", "probability": 0.8837890625}, {"start": 1822.29, "end": 1822.67, "word": " prefers", "probability": 0.52001953125}, {"start": 1822.67, "end": 1822.89, "word": " that", "probability": 0.42236328125}, {"start": 1822.89, "end": 1823.09, "word": " we", "probability": 0.8369140625}, {"start": 1823.09, "end": 1823.35, "word": " know", "probability": 0.48828125}, {"start": 1823.35, "end": 1823.95, "word": " internally", "probability": 0.31005859375}, {"start": 1823.95, "end": 1824.17, "word": " who", "probability": 0.192626953125}, {"start": 1824.17, "end": 1824.17, "word": " is", "probability": 0.5029296875}, {"start": 1824.17, "end": 1824.33, "word": " inside", "probability": 0.6650390625}, {"start": 1824.33, "end": 1825.31, "word": " the", "probability": 0.65380859375}, {"start": 1825.31, "end": 1825.61, "word": " observer", "probability": 0.79052734375}, {"start": 1825.61, "end": 1825.87, "word": " But", "probability": 0.298095703125}, {"start": 1825.87, "end": 1826.07, "word": " of", "probability": 0.47998046875}, {"start": 1826.07, "end": 1826.11, "word": " course,", "probability": 0.96044921875}, {"start": 1826.35, "end": 1826.39, "word": " in", "probability": 0.66943359375}, {"start": 1826.39, "end": 1826.63, "word": " today's", "probability": 0.5543212890625}, {"start": 1826.63, "end": 1827.17, "word": " diagram,", "probability": 0.7373046875}, {"start": 1827.89, "end": 1828.71, "word": " there", "probability": 0.63623046875}, {"start": 1828.71, "end": 1828.77, "word": " is", "probability": 0.576171875}, {"start": 1828.77, "end": 1828.85, "word": " no", "probability": 0.89111328125}, {"start": 1828.85, "end": 1828.97, "word": " need", "probability": 0.58203125}, {"start": 1828.97, "end": 1829.13, "word": " to", "probability": 0.83349609375}, {"start": 1829.13, "end": 1829.35, "word": " put", "probability": 0.63232421875}, {"start": 1829.35, "end": 1829.43, "word": " a", "probability": 0.5869140625}, {"start": 1829.43, "end": 1829.61, "word": " square", "probability": 0.7666015625}, {"start": 1829.61, "end": 1829.83, "word": " inside", "probability": 0.8837890625}, {"start": 1829.83, "end": 1829.95, "word": " a", "probability": 0.6962890625}, {"start": 1829.95, "end": 1830.17, "word": " square", "probability": 0.92041015625}, {"start": 1830.17, "end": 1830.39, "word": " when", "probability": 0.494384765625}, {"start": 1830.39, "end": 1830.47, "word": " we", "probability": 0.75439453125}, {"start": 1830.47, "end": 1830.65, "word": " define", "probability": 0.372314453125}, {"start": 1830.65, "end": 1830.79, "word": " a", "probability": 0.8349609375}, {"start": 1830.79, "end": 1830.95, "word": " class", "probability": 0.93603515625}, {"start": 1830.95, "end": 1831.13, "word": " inside", "probability": 0.87109375}, {"start": 1831.13, "end": 1831.23, "word": " a", "probability": 0.85888671875}, {"start": 1831.23, "end": 1831.55, "word": " class", "probability": 0.96533203125}, {"start": 1831.55, "end": 1832.29, "word": " Right", "probability": 0.445556640625}, {"start": 1832.29, "end": 1832.47, "word": " or", "probability": 0.7646484375}, {"start": 1832.47, "end": 1832.53, "word": " not?", "probability": 0.50732421875}, {"start": 1832.63, "end": 1832.71, "word": " In", "probability": 0.5703125}, {"start": 1832.71, "end": 1832.83, "word": " the", "probability": 0.90478515625}, {"start": 1832.83, "end": 1832.97, "word": " end,", "probability": 0.923828125}, {"start": 1833.13, "end": 1833.15, "word": " the", "probability": 0.5322265625}, {"start": 1833.15, "end": 1833.49, "word": " squares", "probability": 0.919921875}, {"start": 1833.49, "end": 1833.75, "word": " will", "probability": 0.75927734375}, {"start": 1833.75, "end": 1833.91, "word": " be", "probability": 0.630859375}, {"start": 1833.91, "end": 1834.01, "word": " separate", "probability": 0.288330078125}, {"start": 1834.01, "end": 1834.01, "word": " from", "probability": 0.6201171875}, {"start": 1834.01, "end": 1834.43, "word": " each", "probability": 0.7158203125}, {"start": 1834.43, "end": 1834.55, "word": " other", "probability": 0.869140625}, {"start": 1834.55, "end": 1836.03, "word": " But", "probability": 0.258056640625}, {"start": 1836.03, "end": 1836.29, "word": " you", "probability": 0.89306640625}, {"start": 1836.29, "end": 1836.47, "word": " should", "probability": 0.31640625}, {"start": 1836.47, "end": 1836.83, "word": " understand", "probability": 0.468505859375}, {"start": 1836.83, "end": 1837.03, "word": " that", "probability": 0.9140625}, {"start": 1837.03, "end": 1837.21, "word": " this", "probability": 0.8779296875}, {"start": 1837.21, "end": 1837.57, "word": " prefers", "probability": 0.426513671875}, {"start": 1837.57, "end": 1837.73, "word": " the", "probability": 0.6103515625}, {"start": 1837.73, "end": 1838.35, "word": " interface", "probability": 0.931640625}, {"start": 1838.35, "end": 1839.05, "word": " to", "probability": 0.7900390625}, {"start": 1839.05, "end": 1839.19, "word": " be", "probability": 0.79833984375}, {"start": 1839.19, "end": 1839.55, "word": " defined", "probability": 0.26025390625}, {"start": 1839.55, "end": 1839.77, "word": " inside", "probability": 0.79833984375}, {"start": 1839.77, "end": 1840.07, "word": " whom?", "probability": 0.290283203125}, {"start": 1840.47, "end": 1840.67, "word": " Inside", "probability": 0.31982421875}, {"start": 1840.67, "end": 1840.67, "word": " the", "probability": 0.8837890625}, {"start": 1840.67, "end": 1840.89, "word": " class", "probability": 0.712890625}, {"start": 1840.89, "end": 1841.07, "word": " of", "probability": 0.353515625}, {"start": 1841.07, "end": 1841.17, "word": " the", "probability": 0.80712890625}, {"start": 1841.17, "end": 1841.55, "word": " observer", "probability": 0.8349609375}, {"start": 1841.55, "end": 1842.73, "word": " And", "probability": 0.6494140625}, {"start": 1842.73, "end": 1842.93, "word": " of", "probability": 0.73046875}, {"start": 1842.93, "end": 1843.19, "word": " course,", "probability": 0.9658203125}, {"start": 1843.45, "end": 1843.57, "word": " inside", "probability": 0.81689453125}, {"start": 1843.57, "end": 1843.77, "word": " the", "probability": 0.90966796875}, {"start": 1843.77, "end": 1844.15, "word": " observer,", "probability": 0.69970703125}, {"start": 1844.29, "end": 1844.35, "word": " there", "probability": 0.68310546875}, {"start": 1844.35, "end": 1844.47, "word": " will", "probability": 0.68359375}, {"start": 1844.47, "end": 1844.71, "word": " be", "probability": 0.939453125}, {"start": 1844.71, "end": 1844.89, "word": " a", "probability": 0.79736328125}, {"start": 1844.89, "end": 1845.19, "word": " list", "probability": 0.91259765625}, {"start": 1845.19, "end": 1845.41, "word": " of", "probability": 0.9658203125}, {"start": 1845.41, "end": 1845.73, "word": " what?", "probability": 0.69775390625}], "temperature": 1.0}, {"id": 73, "seek": 187020, "start": 1846.76, "end": 1870.2, "text": " of observers, but of course it's not clear, it's not written here, okay? And it will have a method called attach and detach What are attach and detach? Which are add and remove, okay? Here's add, which takes observers and adds them to the list And detach removes them from the list And there's a method called notify Because you can extend this class", "tokens": [295, 48090, 11, 457, 295, 1164, 309, 311, 406, 1850, 11, 309, 311, 406, 3720, 510, 11, 1392, 30, 400, 309, 486, 362, 257, 3170, 1219, 5085, 293, 43245, 708, 366, 5085, 293, 43245, 30, 3013, 366, 909, 293, 4159, 11, 1392, 30, 1692, 311, 909, 11, 597, 2516, 48090, 293, 10860, 552, 281, 264, 1329, 400, 43245, 30445, 552, 490, 264, 1329, 400, 456, 311, 257, 3170, 1219, 36560, 1436, 291, 393, 10101, 341, 1508], "avg_logprob": -0.45535714130897026, "compression_ratio": 1.781725888324873, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 1846.76, "end": 1847.02, "word": " of", "probability": 0.1864013671875}, {"start": 1847.02, "end": 1847.54, "word": " observers,", "probability": 0.90087890625}, {"start": 1847.74, "end": 1847.92, "word": " but", "probability": 0.68798828125}, {"start": 1847.92, "end": 1848.1, "word": " of", "probability": 0.426025390625}, {"start": 1848.1, "end": 1848.2, "word": " course", "probability": 0.9091796875}, {"start": 1848.2, "end": 1848.34, "word": " it's", "probability": 0.536865234375}, {"start": 1848.34, "end": 1848.38, "word": " not", "probability": 0.91259765625}, {"start": 1848.38, "end": 1848.68, "word": " clear,", "probability": 0.3154296875}, {"start": 1848.86, "end": 1849.02, "word": " it's", "probability": 0.802490234375}, {"start": 1849.02, "end": 1849.04, "word": " not", "probability": 0.93310546875}, {"start": 1849.04, "end": 1849.26, "word": " written", "probability": 0.87255859375}, {"start": 1849.26, "end": 1849.7, "word": " here,", "probability": 0.50634765625}, {"start": 1849.96, "end": 1850.52, "word": " okay?", "probability": 0.30517578125}, {"start": 1851.44, "end": 1851.96, "word": " And", "probability": 0.471923828125}, {"start": 1851.96, "end": 1852.12, "word": " it", "probability": 0.35107421875}, {"start": 1852.12, "end": 1852.12, "word": " will", "probability": 0.5322265625}, {"start": 1852.12, "end": 1852.54, "word": " have", "probability": 0.9228515625}, {"start": 1852.54, "end": 1852.7, "word": " a", "probability": 0.86767578125}, {"start": 1852.7, "end": 1853.0, "word": " method", "probability": 0.9365234375}, {"start": 1853.0, "end": 1853.32, "word": " called", "probability": 0.69384765625}, {"start": 1853.32, "end": 1853.9, "word": " attach", "probability": 0.79443359375}, {"start": 1853.9, "end": 1854.84, "word": " and", "probability": 0.720703125}, {"start": 1854.84, "end": 1855.1, "word": " detach", "probability": 0.62890625}, {"start": 1855.1, "end": 1856.18, "word": " What", "probability": 0.3515625}, {"start": 1856.18, "end": 1856.24, "word": " are", "probability": 0.56494140625}, {"start": 1856.24, "end": 1856.72, "word": " attach", "probability": 0.68408203125}, {"start": 1856.72, "end": 1856.9, "word": " and", "probability": 0.9521484375}, {"start": 1856.9, "end": 1857.24, "word": " detach?", "probability": 0.8837890625}, {"start": 1857.44, "end": 1857.8, "word": " Which", "probability": 0.2373046875}, {"start": 1857.8, "end": 1857.96, "word": " are", "probability": 0.5732421875}, {"start": 1857.96, "end": 1858.32, "word": " add", "probability": 0.8515625}, {"start": 1858.32, "end": 1858.54, "word": " and", "probability": 0.939453125}, {"start": 1858.54, "end": 1858.96, "word": " remove,", "probability": 0.92431640625}, {"start": 1859.2, "end": 1859.48, "word": " okay?", "probability": 0.7431640625}, {"start": 1859.6, "end": 1859.86, "word": " Here's", "probability": 0.2877197265625}, {"start": 1859.86, "end": 1860.24, "word": " add,", "probability": 0.6708984375}, {"start": 1860.3, "end": 1860.48, "word": " which", "probability": 0.63720703125}, {"start": 1860.48, "end": 1860.9, "word": " takes", "probability": 0.673828125}, {"start": 1860.9, "end": 1862.08, "word": " observers", "probability": 0.587890625}, {"start": 1862.08, "end": 1862.3, "word": " and", "probability": 0.2467041015625}, {"start": 1862.3, "end": 1862.54, "word": " adds", "probability": 0.58056640625}, {"start": 1862.54, "end": 1862.7, "word": " them", "probability": 0.8359375}, {"start": 1862.7, "end": 1862.78, "word": " to", "probability": 0.8828125}, {"start": 1862.78, "end": 1862.84, "word": " the", "probability": 0.84326171875}, {"start": 1862.84, "end": 1863.14, "word": " list", "probability": 0.92041015625}, {"start": 1863.14, "end": 1863.76, "word": " And", "probability": 0.319091796875}, {"start": 1863.76, "end": 1864.08, "word": " detach", "probability": 0.82958984375}, {"start": 1864.08, "end": 1864.44, "word": " removes", "probability": 0.4443359375}, {"start": 1864.44, "end": 1864.92, "word": " them", "probability": 0.56005859375}, {"start": 1864.92, "end": 1865.7, "word": " from", "probability": 0.86962890625}, {"start": 1865.7, "end": 1865.82, "word": " the", "probability": 0.91259765625}, {"start": 1865.82, "end": 1866.06, "word": " list", "probability": 0.92919921875}, {"start": 1866.06, "end": 1866.38, "word": " And", "probability": 0.444580078125}, {"start": 1866.38, "end": 1866.54, "word": " there's", "probability": 0.812744140625}, {"start": 1866.54, "end": 1866.62, "word": " a", "probability": 0.89501953125}, {"start": 1866.62, "end": 1866.84, "word": " method", "probability": 0.96337890625}, {"start": 1866.84, "end": 1867.1, "word": " called", "probability": 0.88525390625}, {"start": 1867.1, "end": 1867.52, "word": " notify", "probability": 0.8955078125}, {"start": 1867.52, "end": 1868.46, "word": " Because", "probability": 0.73583984375}, {"start": 1868.46, "end": 1869.16, "word": " you", "probability": 0.429443359375}, {"start": 1869.16, "end": 1869.54, "word": " can", "probability": 0.8994140625}, {"start": 1869.54, "end": 1870.2, "word": " extend", "probability": 0.80615234375}, {"start": 1870.2, "end": 1870.2, "word": " this", "probability": 0.93896484375}, {"start": 1870.2, "end": 1870.2, "word": " class", "probability": 0.958984375}], "temperature": 1.0}, {"id": 74, "seek": 189767, "start": 1872.17, "end": 1897.67, "text": "Considering that the list and the methods attached to it is a common thing and made it a subclass We can gather them all in one class as I did Now, part of the observable has a state here This represents the basic data that we want to report to whom? To the observers Which represents the message in this example Of course", "tokens": [34, 35879, 278, 300, 264, 1329, 293, 264, 7150, 8570, 281, 309, 307, 257, 2689, 551, 293, 1027, 309, 257, 1422, 11665, 492, 393, 5448, 552, 439, 294, 472, 1508, 382, 286, 630, 823, 11, 644, 295, 264, 9951, 712, 575, 257, 1785, 510, 639, 8855, 264, 3875, 1412, 300, 321, 528, 281, 2275, 281, 7101, 30, 1407, 264, 48090, 3013, 8855, 264, 3636, 294, 341, 1365, 2720, 1164], "avg_logprob": -0.5741071675504957, "compression_ratio": 1.5862068965517242, "no_speech_prob": 5.9604644775390625e-06, "words": [{"start": 1872.1699999999998, "end": 1872.85, "word": "Considering", "probability": 0.590087890625}, {"start": 1872.85, "end": 1872.93, "word": " that", "probability": 0.5703125}, {"start": 1872.93, "end": 1873.63, "word": " the", "probability": 0.60302734375}, {"start": 1873.63, "end": 1873.95, "word": " list", "probability": 0.69287109375}, {"start": 1873.95, "end": 1874.11, "word": " and", "probability": 0.7177734375}, {"start": 1874.11, "end": 1874.23, "word": " the", "probability": 0.207275390625}, {"start": 1874.23, "end": 1874.57, "word": " methods", "probability": 0.87744140625}, {"start": 1874.57, "end": 1874.95, "word": " attached", "probability": 0.1630859375}, {"start": 1874.95, "end": 1875.17, "word": " to", "probability": 0.85693359375}, {"start": 1875.17, "end": 1875.41, "word": " it", "probability": 0.86669921875}, {"start": 1875.41, "end": 1876.47, "word": " is", "probability": 0.358642578125}, {"start": 1876.47, "end": 1876.83, "word": " a", "probability": 0.52197265625}, {"start": 1876.83, "end": 1877.37, "word": " common", "probability": 0.5263671875}, {"start": 1877.37, "end": 1877.49, "word": " thing", "probability": 0.5009765625}, {"start": 1877.49, "end": 1878.05, "word": " and", "probability": 0.5673828125}, {"start": 1878.05, "end": 1878.25, "word": " made", "probability": 0.2469482421875}, {"start": 1878.25, "end": 1878.47, "word": " it", "probability": 0.306884765625}, {"start": 1878.47, "end": 1878.55, "word": " a", "probability": 0.671875}, {"start": 1878.55, "end": 1879.03, "word": " subclass", "probability": 0.86376953125}, {"start": 1879.03, "end": 1879.27, "word": " We", "probability": 0.30615234375}, {"start": 1879.27, "end": 1879.51, "word": " can", "probability": 0.8193359375}, {"start": 1879.51, "end": 1879.77, "word": " gather", "probability": 0.1614990234375}, {"start": 1879.77, "end": 1879.91, "word": " them", "probability": 0.69775390625}, {"start": 1879.91, "end": 1880.09, "word": " all", "probability": 0.6181640625}, {"start": 1880.09, "end": 1880.21, "word": " in", "probability": 0.7998046875}, {"start": 1880.21, "end": 1880.29, "word": " one", "probability": 0.6630859375}, {"start": 1880.29, "end": 1880.73, "word": " class", "probability": 0.955078125}, {"start": 1880.73, "end": 1880.91, "word": " as", "probability": 0.38134765625}, {"start": 1880.91, "end": 1881.19, "word": " I", "probability": 0.884765625}, {"start": 1881.19, "end": 1881.73, "word": " did", "probability": 0.5224609375}, {"start": 1881.73, "end": 1883.17, "word": " Now,", "probability": 0.322509765625}, {"start": 1883.63, "end": 1884.13, "word": " part", "probability": 0.447265625}, {"start": 1884.13, "end": 1884.39, "word": " of", "probability": 0.9404296875}, {"start": 1884.39, "end": 1884.83, "word": " the", "probability": 0.75732421875}, {"start": 1884.83, "end": 1885.51, "word": " observable", "probability": 0.737060546875}, {"start": 1885.51, "end": 1886.25, "word": " has", "probability": 0.213623046875}, {"start": 1886.25, "end": 1886.57, "word": " a", "probability": 0.367919921875}, {"start": 1886.57, "end": 1887.25, "word": " state", "probability": 0.84375}, {"start": 1887.25, "end": 1887.27, "word": " here", "probability": 0.246337890625}, {"start": 1887.27, "end": 1887.91, "word": " This", "probability": 0.349609375}, {"start": 1887.91, "end": 1888.29, "word": " represents", "probability": 0.697265625}, {"start": 1888.29, "end": 1888.45, "word": " the", "probability": 0.87841796875}, {"start": 1888.45, "end": 1888.45, "word": " basic", "probability": 0.43896484375}, {"start": 1888.45, "end": 1889.41, "word": " data", "probability": 0.869140625}, {"start": 1889.41, "end": 1889.79, "word": " that", "probability": 0.587890625}, {"start": 1889.79, "end": 1889.99, "word": " we", "probability": 0.9052734375}, {"start": 1889.99, "end": 1890.07, "word": " want", "probability": 0.6435546875}, {"start": 1890.07, "end": 1890.11, "word": " to", "probability": 0.970703125}, {"start": 1890.11, "end": 1890.43, "word": " report", "probability": 0.26171875}, {"start": 1890.43, "end": 1890.57, "word": " to", "probability": 0.9130859375}, {"start": 1890.57, "end": 1890.81, "word": " whom?", "probability": 0.485595703125}, {"start": 1891.99, "end": 1892.07, "word": " To", "probability": 0.67236328125}, {"start": 1892.07, "end": 1892.15, "word": " the", "probability": 0.6025390625}, {"start": 1892.15, "end": 1892.57, "word": " observers", "probability": 0.91455078125}, {"start": 1892.57, "end": 1893.79, "word": " Which", "probability": 0.1820068359375}, {"start": 1893.79, "end": 1894.25, "word": " represents", "probability": 0.450439453125}, {"start": 1894.25, "end": 1894.81, "word": " the", "probability": 0.81982421875}, {"start": 1894.81, "end": 1895.17, "word": " message", "probability": 0.92578125}, {"start": 1895.17, "end": 1895.83, "word": " in", "probability": 0.79052734375}, {"start": 1895.83, "end": 1896.17, "word": " this", "probability": 0.8662109375}, {"start": 1896.17, "end": 1896.71, "word": " example", "probability": 0.951171875}, {"start": 1896.71, "end": 1897.67, "word": " Of", "probability": 0.68896484375}, {"start": 1897.67, "end": 1897.67, "word": " course", "probability": 0.95458984375}], "temperature": 1.0}, {"id": 75, "seek": 191890, "start": 1898.52, "end": 1918.9, "text": "He put this data private and made a method called getstate() and setstate() Because this is for the observable, which as we said has an interface and a list of observers An interface called observer and a list of observers and a method called attach and detach adds to the list and removes it from the list", "tokens": [5205, 829, 341, 1412, 4551, 293, 1027, 257, 3170, 1219, 483, 15406, 45191, 293, 992, 15406, 45191, 1436, 341, 307, 337, 264, 9951, 712, 11, 597, 382, 321, 848, 575, 364, 9226, 293, 257, 1329, 295, 48090, 1107, 9226, 1219, 27878, 293, 257, 1329, 295, 48090, 293, 257, 3170, 1219, 5085, 293, 43245, 10860, 281, 264, 1329, 293, 30445, 309, 490, 264, 1329], "avg_logprob": -0.4741211039945483, "compression_ratio": 1.8658536585365855, "no_speech_prob": 0.0, "words": [{"start": 1898.52, "end": 1898.84, "word": "He", "probability": 0.424072265625}, {"start": 1898.84, "end": 1899.2, "word": " put", "probability": 0.365966796875}, {"start": 1899.2, "end": 1899.52, "word": " this", "probability": 0.3173828125}, {"start": 1899.52, "end": 1899.9, "word": " data", "probability": 0.83251953125}, {"start": 1899.9, "end": 1900.42, "word": " private", "probability": 0.458740234375}, {"start": 1900.42, "end": 1900.66, "word": " and", "probability": 0.6796875}, {"start": 1900.66, "end": 1900.86, "word": " made", "probability": 0.417724609375}, {"start": 1900.86, "end": 1900.96, "word": " a", "probability": 0.73974609375}, {"start": 1900.96, "end": 1901.12, "word": " method", "probability": 0.9560546875}, {"start": 1901.12, "end": 1901.4, "word": " called", "probability": 0.50634765625}, {"start": 1901.4, "end": 1902.08, "word": " getstate", "probability": 0.58251953125}, {"start": 1902.08, "end": 1902.2, "word": "()", "probability": 0.2452392578125}, {"start": 1902.2, "end": 1904.08, "word": " and", "probability": 0.68994140625}, {"start": 1904.08, "end": 1904.7, "word": " setstate", "probability": 0.944580078125}, {"start": 1904.7, "end": 1905.34, "word": "()", "probability": 0.5546875}, {"start": 1905.34, "end": 1905.64, "word": " Because", "probability": 0.1240234375}, {"start": 1905.64, "end": 1906.9, "word": " this", "probability": 0.77001953125}, {"start": 1906.9, "end": 1906.92, "word": " is", "probability": 0.7431640625}, {"start": 1906.92, "end": 1907.28, "word": " for", "probability": 0.51220703125}, {"start": 1907.28, "end": 1907.4, "word": " the", "probability": 0.434814453125}, {"start": 1907.4, "end": 1907.98, "word": " observable,", "probability": 0.844482421875}, {"start": 1908.66, "end": 1908.8, "word": " which", "probability": 0.583984375}, {"start": 1908.8, "end": 1909.04, "word": " as", "probability": 0.235595703125}, {"start": 1909.04, "end": 1909.22, "word": " we", "probability": 0.8193359375}, {"start": 1909.22, "end": 1909.4, "word": " said", "probability": 0.8779296875}, {"start": 1909.4, "end": 1909.58, "word": " has", "probability": 0.69677734375}, {"start": 1909.58, "end": 1909.74, "word": " an", "probability": 0.71044921875}, {"start": 1909.74, "end": 1910.3, "word": " interface", "probability": 0.88427734375}, {"start": 1910.3, "end": 1910.62, "word": " and", "probability": 0.63623046875}, {"start": 1910.62, "end": 1910.78, "word": " a", "probability": 0.4013671875}, {"start": 1910.78, "end": 1911.18, "word": " list", "probability": 0.92041015625}, {"start": 1911.18, "end": 1911.9, "word": " of", "probability": 0.93359375}, {"start": 1911.9, "end": 1912.52, "word": " observers", "probability": 0.94091796875}, {"start": 1912.52, "end": 1912.82, "word": " An", "probability": 0.1943359375}, {"start": 1912.82, "end": 1913.16, "word": " interface", "probability": 0.86279296875}, {"start": 1913.16, "end": 1913.44, "word": " called", "probability": 0.587890625}, {"start": 1913.44, "end": 1913.9, "word": " observer", "probability": 0.6005859375}, {"start": 1913.9, "end": 1914.18, "word": " and", "probability": 0.335693359375}, {"start": 1914.18, "end": 1914.2, "word": " a", "probability": 0.60595703125}, {"start": 1914.2, "end": 1914.4, "word": " list", "probability": 0.9287109375}, {"start": 1914.4, "end": 1914.56, "word": " of", "probability": 0.96826171875}, {"start": 1914.56, "end": 1915.06, "word": " observers", "probability": 0.943359375}, {"start": 1915.06, "end": 1915.28, "word": " and", "probability": 0.57275390625}, {"start": 1915.28, "end": 1915.3, "word": " a", "probability": 0.634765625}, {"start": 1915.3, "end": 1915.54, "word": " method", "probability": 0.9423828125}, {"start": 1915.54, "end": 1915.8, "word": " called", "probability": 0.86279296875}, {"start": 1915.8, "end": 1916.14, "word": " attach", "probability": 0.453125}, {"start": 1916.14, "end": 1916.32, "word": " and", "probability": 0.82666015625}, {"start": 1916.32, "end": 1916.56, "word": " detach", "probability": 0.90234375}, {"start": 1916.56, "end": 1916.94, "word": " adds", "probability": 0.2242431640625}, {"start": 1916.94, "end": 1917.16, "word": " to", "probability": 0.7646484375}, {"start": 1917.16, "end": 1917.2, "word": " the", "probability": 0.80517578125}, {"start": 1917.2, "end": 1917.4, "word": " list", "probability": 0.921875}, {"start": 1917.4, "end": 1917.52, "word": " and", "probability": 0.8720703125}, {"start": 1917.52, "end": 1917.7, "word": " removes", "probability": 0.60888671875}, {"start": 1917.7, "end": 1917.88, "word": " it", "probability": 0.4326171875}, {"start": 1917.88, "end": 1917.98, "word": " from", "probability": 0.86962890625}, {"start": 1917.98, "end": 1918.64, "word": " the", "probability": 0.79736328125}, {"start": 1918.64, "end": 1918.9, "word": " list", "probability": 0.91650390625}], "temperature": 1.0}, {"id": 76, "seek": 193623, "start": 1919.87, "end": 1936.23, "text": "Now, people who want to listen to the observable must implement or extend to whom? To the observer. To take a type. So now, this observer comes from the concrete observer A and concrete observer B", "tokens": [13267, 11, 561, 567, 528, 281, 2140, 281, 264, 9951, 712, 1633, 4445, 420, 10101, 281, 7101, 30, 1407, 264, 27878, 13, 1407, 747, 257, 2010, 13, 407, 586, 11, 341, 27878, 1487, 490, 264, 9859, 27878, 316, 293, 9859, 27878, 363], "avg_logprob": -0.6170057890027069, "compression_ratio": 1.5193798449612403, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1919.87, "end": 1920.23, "word": "Now,", "probability": 0.2406005859375}, {"start": 1920.33, "end": 1920.63, "word": " people", "probability": 0.333984375}, {"start": 1920.63, "end": 1920.75, "word": " who", "probability": 0.68896484375}, {"start": 1920.75, "end": 1921.01, "word": " want", "probability": 0.48486328125}, {"start": 1921.01, "end": 1921.09, "word": " to", "probability": 0.96826171875}, {"start": 1921.09, "end": 1921.47, "word": " listen", "probability": 0.38623046875}, {"start": 1921.47, "end": 1921.61, "word": " to", "probability": 0.939453125}, {"start": 1921.61, "end": 1921.67, "word": " the", "probability": 0.401611328125}, {"start": 1921.67, "end": 1922.27, "word": " observable", "probability": 0.81689453125}, {"start": 1922.27, "end": 1923.27, "word": " must", "probability": 0.204345703125}, {"start": 1923.27, "end": 1923.93, "word": " implement", "probability": 0.517578125}, {"start": 1923.93, "end": 1924.91, "word": " or", "probability": 0.541015625}, {"start": 1924.91, "end": 1925.39, "word": " extend", "probability": 0.93115234375}, {"start": 1925.39, "end": 1925.61, "word": " to", "probability": 0.362060546875}, {"start": 1925.61, "end": 1925.75, "word": " whom?", "probability": 0.8046875}, {"start": 1925.97, "end": 1926.11, "word": " To", "probability": 0.671875}, {"start": 1926.11, "end": 1926.15, "word": " the", "probability": 0.321044921875}, {"start": 1926.15, "end": 1926.63, "word": " observer.", "probability": 0.7783203125}, {"start": 1926.89, "end": 1927.47, "word": " To", "probability": 0.469482421875}, {"start": 1927.47, "end": 1927.83, "word": " take", "probability": 0.466796875}, {"start": 1927.83, "end": 1927.95, "word": " a", "probability": 0.68603515625}, {"start": 1927.95, "end": 1928.11, "word": " type.", "probability": 0.344482421875}, {"start": 1928.97, "end": 1929.13, "word": " So", "probability": 0.5751953125}, {"start": 1929.13, "end": 1929.37, "word": " now,", "probability": 0.6513671875}, {"start": 1929.45, "end": 1929.59, "word": " this", "probability": 0.75146484375}, {"start": 1929.59, "end": 1930.21, "word": " observer", "probability": 0.837890625}, {"start": 1930.21, "end": 1930.53, "word": " comes", "probability": 0.3544921875}, {"start": 1930.53, "end": 1930.71, "word": " from", "probability": 0.8544921875}, {"start": 1930.71, "end": 1931.67, "word": " the", "probability": 0.51611328125}, {"start": 1931.67, "end": 1932.29, "word": " concrete", "probability": 0.86279296875}, {"start": 1932.29, "end": 1933.63, "word": " observer", "probability": 0.76904296875}, {"start": 1933.63, "end": 1933.91, "word": " A", "probability": 0.54052734375}, {"start": 1933.91, "end": 1934.27, "word": " and", "probability": 0.427978515625}, {"start": 1934.27, "end": 1934.85, "word": " concrete", "probability": 0.68359375}, {"start": 1934.85, "end": 1935.55, "word": " observer", "probability": 0.86865234375}, {"start": 1935.55, "end": 1936.23, "word": " B", "probability": 0.8291015625}], "temperature": 1.0}, {"id": 77, "seek": 196119, "start": 1936.37, "end": 1961.19, "text": "B, this is the mistake here, what does it say here? Observable, this is not, this is concrete, observer, of course he made an implement for this, so it must be what? Observer, concrete, observer, A, concrete, this is equal to this, concrete, observer, B, and each one made an implement for the observer, of course he must make an implement for the method update, okay? And each one, I mean, of course the noun is changed, its name is observer,", "tokens": [33, 11, 341, 307, 264, 6146, 510, 11, 437, 775, 309, 584, 510, 30, 42547, 712, 11, 341, 307, 406, 11, 341, 307, 9859, 11, 27878, 11, 295, 1164, 415, 1027, 364, 4445, 337, 341, 11, 370, 309, 1633, 312, 437, 30, 20707, 38241, 11, 9859, 11, 27878, 11, 316, 11, 9859, 11, 341, 307, 2681, 281, 341, 11, 9859, 11, 27878, 11, 363, 11, 293, 1184, 472, 1027, 364, 4445, 337, 264, 27878, 11, 295, 1164, 415, 1633, 652, 364, 4445, 337, 264, 3170, 5623, 11, 1392, 30, 400, 1184, 472, 11, 286, 914, 11, 295, 1164, 264, 23307, 307, 3105, 11, 1080, 1315, 307, 27878, 11], "avg_logprob": -0.5028669440418209, "compression_ratio": 2.1930693069306932, "no_speech_prob": 6.735324859619141e-06, "words": [{"start": 1936.37, "end": 1936.65, "word": "B,", "probability": 0.52001953125}, {"start": 1936.97, "end": 1937.19, "word": " this", "probability": 0.371337890625}, {"start": 1937.19, "end": 1937.19, "word": " is", "probability": 0.67626953125}, {"start": 1937.19, "end": 1937.29, "word": " the", "probability": 0.537109375}, {"start": 1937.29, "end": 1937.51, "word": " mistake", "probability": 0.599609375}, {"start": 1937.51, "end": 1937.81, "word": " here,", "probability": 0.74658203125}, {"start": 1937.99, "end": 1938.31, "word": " what", "probability": 0.60791015625}, {"start": 1938.31, "end": 1938.43, "word": " does", "probability": 0.30615234375}, {"start": 1938.43, "end": 1938.43, "word": " it", "probability": 0.62890625}, {"start": 1938.43, "end": 1938.61, "word": " say", "probability": 0.75830078125}, {"start": 1938.61, "end": 1938.85, "word": " here?", "probability": 0.70458984375}, {"start": 1940.07, "end": 1940.47, "word": " Observable,", "probability": 0.6500244140625}, {"start": 1940.59, "end": 1940.71, "word": " this", "probability": 0.50732421875}, {"start": 1940.71, "end": 1940.79, "word": " is", "probability": 0.60400390625}, {"start": 1940.79, "end": 1940.87, "word": " not,", "probability": 0.623046875}, {"start": 1940.93, "end": 1941.13, "word": " this", "probability": 0.7509765625}, {"start": 1941.13, "end": 1941.21, "word": " is", "probability": 0.89697265625}, {"start": 1941.21, "end": 1941.57, "word": " concrete,", "probability": 0.78515625}, {"start": 1941.79, "end": 1942.29, "word": " observer,", "probability": 0.80322265625}, {"start": 1942.41, "end": 1942.53, "word": " of", "probability": 0.1424560546875}, {"start": 1942.53, "end": 1942.63, "word": " course", "probability": 0.958984375}, {"start": 1942.63, "end": 1942.73, "word": " he", "probability": 0.339599609375}, {"start": 1942.73, "end": 1942.83, "word": " made", "probability": 0.34521484375}, {"start": 1942.83, "end": 1943.31, "word": " an", "probability": 0.666015625}, {"start": 1943.31, "end": 1943.59, "word": " implement", "probability": 0.66943359375}, {"start": 1943.59, "end": 1943.79, "word": " for", "probability": 0.822265625}, {"start": 1943.79, "end": 1943.95, "word": " this,", "probability": 0.84814453125}, {"start": 1944.01, "end": 1944.09, "word": " so", "probability": 0.74755859375}, {"start": 1944.09, "end": 1944.15, "word": " it", "probability": 0.73876953125}, {"start": 1944.15, "end": 1944.27, "word": " must", "probability": 0.385986328125}, {"start": 1944.27, "end": 1944.57, "word": " be", "probability": 0.91796875}, {"start": 1944.57, "end": 1944.79, "word": " what?", "probability": 0.671875}, {"start": 1945.41, "end": 1945.81, "word": " Observer,", "probability": 0.686279296875}, {"start": 1946.01, "end": 1946.61, "word": " concrete,", "probability": 0.80419921875}, {"start": 1946.79, "end": 1947.33, "word": " observer,", "probability": 0.892578125}, {"start": 1947.49, "end": 1947.65, "word": " A,", "probability": 0.55322265625}, {"start": 1947.81, "end": 1948.11, "word": " concrete,", "probability": 0.83203125}, {"start": 1948.27, "end": 1948.41, "word": " this", "probability": 0.23583984375}, {"start": 1948.41, "end": 1948.41, "word": " is", "probability": 0.716796875}, {"start": 1948.41, "end": 1948.65, "word": " equal", "probability": 0.1502685546875}, {"start": 1948.65, "end": 1948.73, "word": " to", "probability": 0.9306640625}, {"start": 1948.73, "end": 1948.93, "word": " this,", "probability": 0.572265625}, {"start": 1949.01, "end": 1949.31, "word": " concrete,", "probability": 0.85791015625}, {"start": 1949.45, "end": 1949.85, "word": " observer,", "probability": 0.89208984375}, {"start": 1950.41, "end": 1950.71, "word": " B,", "probability": 0.97998046875}, {"start": 1950.87, "end": 1951.51, "word": " and", "probability": 0.8876953125}, {"start": 1951.51, "end": 1951.71, "word": " each", "probability": 0.330078125}, {"start": 1951.71, "end": 1951.93, "word": " one", "probability": 0.65283203125}, {"start": 1951.93, "end": 1952.15, "word": " made", "probability": 0.3955078125}, {"start": 1952.15, "end": 1952.31, "word": " an", "probability": 0.857421875}, {"start": 1952.31, "end": 1952.55, "word": " implement", "probability": 0.85302734375}, {"start": 1952.55, "end": 1952.79, "word": " for", "probability": 0.9208984375}, {"start": 1952.79, "end": 1952.87, "word": " the", "probability": 0.7626953125}, {"start": 1952.87, "end": 1953.31, "word": " observer,", "probability": 0.85791015625}, {"start": 1953.49, "end": 1953.61, "word": " of", "probability": 0.5400390625}, {"start": 1953.61, "end": 1953.69, "word": " course", "probability": 0.96435546875}, {"start": 1953.69, "end": 1953.81, "word": " he", "probability": 0.36279296875}, {"start": 1953.81, "end": 1953.93, "word": " must", "probability": 0.62109375}, {"start": 1953.93, "end": 1954.13, "word": " make", "probability": 0.51904296875}, {"start": 1954.13, "end": 1954.27, "word": " an", "probability": 0.896484375}, {"start": 1954.27, "end": 1954.51, "word": " implement", "probability": 0.88037109375}, {"start": 1954.51, "end": 1954.77, "word": " for", "probability": 0.9130859375}, {"start": 1954.77, "end": 1954.83, "word": " the", "probability": 0.8671875}, {"start": 1954.83, "end": 1955.19, "word": " method", "probability": 0.9365234375}, {"start": 1955.19, "end": 1956.45, "word": " update,", "probability": 0.54345703125}, {"start": 1956.83, "end": 1957.05, "word": " okay?", "probability": 0.32666015625}, {"start": 1957.53, "end": 1957.69, "word": " And", "probability": 0.572265625}, {"start": 1957.69, "end": 1957.91, "word": " each", "probability": 0.84619140625}, {"start": 1957.91, "end": 1958.41, "word": " one,", "probability": 0.884765625}, {"start": 1958.97, "end": 1958.99, "word": " I", "probability": 0.279052734375}, {"start": 1958.99, "end": 1959.15, "word": " mean,", "probability": 0.9404296875}, {"start": 1959.27, "end": 1959.41, "word": " of", "probability": 0.92041015625}, {"start": 1959.41, "end": 1959.43, "word": " course", "probability": 0.95166015625}, {"start": 1959.43, "end": 1959.63, "word": " the", "probability": 0.26123046875}, {"start": 1959.63, "end": 1959.87, "word": " noun", "probability": 0.12249755859375}, {"start": 1959.87, "end": 1960.01, "word": " is", "probability": 0.61962890625}, {"start": 1960.01, "end": 1960.31, "word": " changed,", "probability": 0.408935546875}, {"start": 1960.47, "end": 1960.61, "word": " its", "probability": 0.399169921875}, {"start": 1960.61, "end": 1960.69, "word": " name", "probability": 0.90966796875}, {"start": 1960.69, "end": 1960.75, "word": " is", "probability": 0.93603515625}, {"start": 1960.75, "end": 1961.19, "word": " observer,", "probability": 0.79296875}], "temperature": 1.0}, {"id": 78, "seek": 199098, "start": 1963.04, "end": 1990.98, "text": "state is of the same type, it is the idea that this person wants to read this information and store it where? with this person, it is like a local variable the data that you found here, you want to store it with this person, that is the idea here I showed you a note, or this is also a note, how is the shape or the code that is in the method I told you to start here, I told you that it is not observable when you get data or modifications in the information, you want to inform others", "tokens": [15406, 307, 295, 264, 912, 2010, 11, 309, 307, 264, 1558, 300, 341, 954, 2738, 281, 1401, 341, 1589, 293, 3531, 309, 689, 30, 365, 341, 954, 11, 309, 307, 411, 257, 2654, 7006, 264, 1412, 300, 291, 1352, 510, 11, 291, 528, 281, 3531, 309, 365, 341, 954, 11, 300, 307, 264, 1558, 510, 286, 4712, 291, 257, 3637, 11, 420, 341, 307, 611, 257, 3637, 11, 577, 307, 264, 3909, 420, 264, 3089, 300, 307, 294, 264, 3170, 286, 1907, 291, 281, 722, 510, 11, 286, 1907, 291, 300, 309, 307, 406, 9951, 712, 562, 291, 483, 1412, 420, 26881, 294, 264, 1589, 11, 291, 528, 281, 1356, 2357], "avg_logprob": -0.6004464546484607, "compression_ratio": 2.0858369098712446, "no_speech_prob": 2.9802322387695312e-06, "words": [{"start": 1963.04, "end": 1963.5, "word": "state", "probability": 0.353271484375}, {"start": 1963.5, "end": 1963.96, "word": " is", "probability": 0.316650390625}, {"start": 1963.96, "end": 1963.98, "word": " of", "probability": 0.22265625}, {"start": 1963.98, "end": 1964.28, "word": " the", "probability": 0.80615234375}, {"start": 1964.28, "end": 1964.28, "word": " same", "probability": 0.89404296875}, {"start": 1964.28, "end": 1964.56, "word": " type,", "probability": 0.62255859375}, {"start": 1964.8, "end": 1964.9, "word": " it", "probability": 0.265869140625}, {"start": 1964.9, "end": 1964.96, "word": " is", "probability": 0.45263671875}, {"start": 1964.96, "end": 1965.04, "word": " the", "probability": 0.67431640625}, {"start": 1965.04, "end": 1965.28, "word": " idea", "probability": 0.6767578125}, {"start": 1965.28, "end": 1965.74, "word": " that", "probability": 0.68994140625}, {"start": 1965.74, "end": 1966.72, "word": " this", "probability": 0.42919921875}, {"start": 1966.72, "end": 1966.76, "word": " person", "probability": 0.337158203125}, {"start": 1966.76, "end": 1966.98, "word": " wants", "probability": 0.2078857421875}, {"start": 1966.98, "end": 1967.08, "word": " to", "probability": 0.95361328125}, {"start": 1967.08, "end": 1967.38, "word": " read", "probability": 0.81884765625}, {"start": 1967.38, "end": 1967.7, "word": " this", "probability": 0.6904296875}, {"start": 1967.7, "end": 1968.08, "word": " information", "probability": 0.55908203125}, {"start": 1968.08, "end": 1968.4, "word": " and", "probability": 0.83447265625}, {"start": 1968.4, "end": 1968.7, "word": " store", "probability": 0.57373046875}, {"start": 1968.7, "end": 1968.9, "word": " it", "probability": 0.91357421875}, {"start": 1968.9, "end": 1969.06, "word": " where?", "probability": 0.1571044921875}, {"start": 1969.64, "end": 1970.1, "word": " with", "probability": 0.1517333984375}, {"start": 1970.1, "end": 1970.34, "word": " this", "probability": 0.51611328125}, {"start": 1970.34, "end": 1970.34, "word": " person,", "probability": 0.7197265625}, {"start": 1970.42, "end": 1970.64, "word": " it", "probability": 0.2802734375}, {"start": 1970.64, "end": 1971.24, "word": " is", "probability": 0.71044921875}, {"start": 1971.24, "end": 1971.3, "word": " like", "probability": 0.6259765625}, {"start": 1971.3, "end": 1971.4, "word": " a", "probability": 0.80224609375}, {"start": 1971.4, "end": 1971.64, "word": " local", "probability": 0.81640625}, {"start": 1971.64, "end": 1972.1, "word": " variable", "probability": 0.912109375}, {"start": 1972.1, "end": 1972.94, "word": " the", "probability": 0.282470703125}, {"start": 1972.94, "end": 1973.24, "word": " data", "probability": 0.95654296875}, {"start": 1973.24, "end": 1973.36, "word": " that", "probability": 0.52294921875}, {"start": 1973.36, "end": 1973.38, "word": " you", "probability": 0.36328125}, {"start": 1973.38, "end": 1973.58, "word": " found", "probability": 0.435546875}, {"start": 1973.58, "end": 1973.98, "word": " here,", "probability": 0.71728515625}, {"start": 1974.38, "end": 1974.68, "word": " you", "probability": 0.230712890625}, {"start": 1974.68, "end": 1974.8, "word": " want", "probability": 0.630859375}, {"start": 1974.8, "end": 1974.82, "word": " to", "probability": 0.91259765625}, {"start": 1974.82, "end": 1975.06, "word": " store", "probability": 0.83251953125}, {"start": 1975.06, "end": 1975.22, "word": " it", "probability": 0.66943359375}, {"start": 1975.22, "end": 1975.36, "word": " with", "probability": 0.74560546875}, {"start": 1975.36, "end": 1975.6, "word": " this", "probability": 0.7548828125}, {"start": 1975.6, "end": 1975.84, "word": " person,", "probability": 0.810546875}, {"start": 1975.88, "end": 1976.08, "word": " that", "probability": 0.552734375}, {"start": 1976.08, "end": 1976.08, "word": " is", "probability": 0.451904296875}, {"start": 1976.08, "end": 1976.24, "word": " the", "probability": 0.74462890625}, {"start": 1976.24, "end": 1976.52, "word": " idea", "probability": 0.865234375}, {"start": 1976.52, "end": 1977.72, "word": " here", "probability": 0.343994140625}, {"start": 1977.72, "end": 1977.82, "word": " I", "probability": 0.290771484375}, {"start": 1977.82, "end": 1978.04, "word": " showed", "probability": 0.6513671875}, {"start": 1978.04, "end": 1978.3, "word": " you", "probability": 0.90478515625}, {"start": 1978.3, "end": 1978.6, "word": " a", "probability": 0.24169921875}, {"start": 1978.6, "end": 1978.6, "word": " note,", "probability": 0.9052734375}, {"start": 1979.18, "end": 1979.68, "word": " or", "probability": 0.58935546875}, {"start": 1979.68, "end": 1979.92, "word": " this", "probability": 0.65283203125}, {"start": 1979.92, "end": 1980.02, "word": " is", "probability": 0.7900390625}, {"start": 1980.02, "end": 1980.22, "word": " also", "probability": 0.76953125}, {"start": 1980.22, "end": 1980.3, "word": " a", "probability": 0.966796875}, {"start": 1980.3, "end": 1980.48, "word": " note,", "probability": 0.923828125}, {"start": 1980.62, "end": 1980.8, "word": " how", "probability": 0.416748046875}, {"start": 1980.8, "end": 1980.88, "word": " is", "probability": 0.181884765625}, {"start": 1980.88, "end": 1981.82, "word": " the", "probability": 0.8759765625}, {"start": 1981.82, "end": 1981.82, "word": " shape", "probability": 0.541015625}, {"start": 1981.82, "end": 1983.02, "word": " or", "probability": 0.51611328125}, {"start": 1983.02, "end": 1983.24, "word": " the", "probability": 0.5595703125}, {"start": 1983.24, "end": 1983.46, "word": " code", "probability": 0.87939453125}, {"start": 1983.46, "end": 1983.6, "word": " that", "probability": 0.25634765625}, {"start": 1983.6, "end": 1983.6, "word": " is", "probability": 0.5673828125}, {"start": 1983.6, "end": 1983.88, "word": " in", "probability": 0.32861328125}, {"start": 1983.88, "end": 1984.02, "word": " the", "probability": 0.85205078125}, {"start": 1984.02, "end": 1984.34, "word": " method", "probability": 0.947265625}, {"start": 1984.34, "end": 1985.08, "word": " I", "probability": 0.342041015625}, {"start": 1985.08, "end": 1985.24, "word": " told", "probability": 0.1455078125}, {"start": 1985.24, "end": 1985.4, "word": " you", "probability": 0.82275390625}, {"start": 1985.4, "end": 1985.4, "word": " to", "probability": 0.65576171875}, {"start": 1985.4, "end": 1985.58, "word": " start", "probability": 0.8916015625}, {"start": 1985.58, "end": 1985.88, "word": " here,", "probability": 0.74951171875}, {"start": 1986.3, "end": 1986.44, "word": " I", "probability": 0.9033203125}, {"start": 1986.44, "end": 1986.54, "word": " told", "probability": 0.830078125}, {"start": 1986.54, "end": 1986.64, "word": " you", "probability": 0.96142578125}, {"start": 1986.64, "end": 1986.76, "word": " that", "probability": 0.60400390625}, {"start": 1986.76, "end": 1986.76, "word": " it", "probability": 0.2330322265625}, {"start": 1986.76, "end": 1986.76, "word": " is", "probability": 0.83251953125}, {"start": 1986.76, "end": 1986.8, "word": " not", "probability": 0.9208984375}, {"start": 1986.8, "end": 1987.52, "word": " observable", "probability": 0.74609375}, {"start": 1987.52, "end": 1987.8, "word": " when", "probability": 0.681640625}, {"start": 1987.8, "end": 1987.88, "word": " you", "probability": 0.398681640625}, {"start": 1987.88, "end": 1988.16, "word": " get", "probability": 0.42138671875}, {"start": 1988.16, "end": 1988.56, "word": " data", "probability": 0.77587890625}, {"start": 1988.56, "end": 1988.92, "word": " or", "probability": 0.83837890625}, {"start": 1988.92, "end": 1989.46, "word": " modifications", "probability": 0.340576171875}, {"start": 1989.46, "end": 1989.64, "word": " in", "probability": 0.81201171875}, {"start": 1989.64, "end": 1989.7, "word": " the", "probability": 0.430908203125}, {"start": 1989.7, "end": 1990.0, "word": " information,", "probability": 0.68603515625}, {"start": 1990.12, "end": 1990.12, "word": " you", "probability": 0.41748046875}, {"start": 1990.12, "end": 1990.26, "word": " want", "probability": 0.74755859375}, {"start": 1990.26, "end": 1990.28, "word": " to", "probability": 0.96337890625}, {"start": 1990.28, "end": 1990.54, "word": " inform", "probability": 0.33642578125}, {"start": 1990.54, "end": 1990.98, "word": " others", "probability": 0.7568359375}], "temperature": 1.0}, {"id": 79, "seek": 201997, "start": 1991.77, "end": 2019.97, "text": " Ok? So it came here, here, I'm telling you on the notify here, a arrow, for all O in observers, that is, there is a list called observers, it will say O dot what? Dot update. Ok? Of course, here the update in the UML diagram is empty. But the update is supposed to send a message or data through it. Or, for example, here in this example, it sends the observable itself.", "tokens": [3477, 30, 407, 309, 1361, 510, 11, 510, 11, 286, 478, 3585, 291, 322, 264, 36560, 510, 11, 257, 11610, 11, 337, 439, 422, 294, 48090, 11, 300, 307, 11, 456, 307, 257, 1329, 1219, 48090, 11, 309, 486, 584, 422, 5893, 437, 30, 38753, 5623, 13, 3477, 30, 2720, 1164, 11, 510, 264, 5623, 294, 264, 624, 12683, 10686, 307, 6707, 13, 583, 264, 5623, 307, 3442, 281, 2845, 257, 3636, 420, 1412, 807, 309, 13, 1610, 11, 337, 1365, 11, 510, 294, 341, 1365, 11, 309, 14790, 264, 9951, 712, 2564, 13], "avg_logprob": -0.522368439875151, "compression_ratio": 1.6271929824561404, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1991.77, "end": 1991.97, "word": " Ok?", "probability": 0.08441162109375}, {"start": 1992.35, "end": 1992.71, "word": " So", "probability": 0.60986328125}, {"start": 1992.71, "end": 1992.85, "word": " it", "probability": 0.1895751953125}, {"start": 1992.85, "end": 1992.97, "word": " came", "probability": 0.5185546875}, {"start": 1992.97, "end": 1993.35, "word": " here,", "probability": 0.74365234375}, {"start": 1993.41, "end": 1993.61, "word": " here,", "probability": 0.206787109375}, {"start": 1993.79, "end": 1993.93, "word": " I'm", "probability": 0.3873291015625}, {"start": 1993.93, "end": 1994.05, "word": " telling", "probability": 0.376708984375}, {"start": 1994.05, "end": 1994.21, "word": " you", "probability": 0.95556640625}, {"start": 1994.21, "end": 1994.37, "word": " on", "probability": 0.35107421875}, {"start": 1994.37, "end": 1994.47, "word": " the", "probability": 0.52880859375}, {"start": 1994.47, "end": 1994.89, "word": " notify", "probability": 0.67236328125}, {"start": 1994.89, "end": 1995.23, "word": " here,", "probability": 0.411865234375}, {"start": 1995.31, "end": 1995.47, "word": " a", "probability": 0.12432861328125}, {"start": 1995.47, "end": 1995.59, "word": " arrow,", "probability": 0.46826171875}, {"start": 1996.23, "end": 1996.49, "word": " for", "probability": 0.74951171875}, {"start": 1996.49, "end": 1996.89, "word": " all", "probability": 0.9423828125}, {"start": 1996.89, "end": 1997.21, "word": " O", "probability": 0.43359375}, {"start": 1997.21, "end": 1998.01, "word": " in", "probability": 0.78125}, {"start": 1998.01, "end": 1999.95, "word": " observers,", "probability": 0.69873046875}, {"start": 2000.37, "end": 2000.59, "word": " that", "probability": 0.29833984375}, {"start": 2000.59, "end": 2000.59, "word": " is,", "probability": 0.76953125}, {"start": 2000.61, "end": 2000.77, "word": " there", "probability": 0.77734375}, {"start": 2000.77, "end": 2000.77, "word": " is", "probability": 0.86865234375}, {"start": 2000.77, "end": 2000.85, "word": " a", "probability": 0.974609375}, {"start": 2000.85, "end": 2001.05, "word": " list", "probability": 0.91357421875}, {"start": 2001.05, "end": 2001.37, "word": " called", "probability": 0.54150390625}, {"start": 2001.37, "end": 2001.99, "word": " observers,", "probability": 0.8896484375}, {"start": 2002.21, "end": 2002.29, "word": " it", "probability": 0.33154296875}, {"start": 2002.29, "end": 2002.39, "word": " will", "probability": 0.59326171875}, {"start": 2002.39, "end": 2002.59, "word": " say", "probability": 0.5}, {"start": 2002.59, "end": 2002.97, "word": " O", "probability": 0.65771484375}, {"start": 2002.97, "end": 2003.25, "word": " dot", "probability": 0.39306640625}, {"start": 2003.25, "end": 2003.59, "word": " what?", "probability": 0.83935546875}, {"start": 2004.29, "end": 2004.55, "word": " Dot", "probability": 0.40673828125}, {"start": 2004.55, "end": 2004.97, "word": " update.", "probability": 0.869140625}, {"start": 2005.65, "end": 2005.95, "word": " Ok?", "probability": 0.59814453125}, {"start": 2006.35, "end": 2006.59, "word": " Of", "probability": 0.87841796875}, {"start": 2006.59, "end": 2006.67, "word": " course,", "probability": 0.9599609375}, {"start": 2006.89, "end": 2007.19, "word": " here", "probability": 0.76123046875}, {"start": 2007.19, "end": 2007.31, "word": " the", "probability": 0.4951171875}, {"start": 2007.31, "end": 2007.79, "word": " update", "probability": 0.90966796875}, {"start": 2007.79, "end": 2007.99, "word": " in", "probability": 0.671875}, {"start": 2007.99, "end": 2008.11, "word": " the", "probability": 0.310791015625}, {"start": 2008.11, "end": 2008.29, "word": " UML", "probability": 0.609375}, {"start": 2008.29, "end": 2008.63, "word": " diagram", "probability": 0.90869140625}, {"start": 2008.63, "end": 2009.19, "word": " is", "probability": 0.29443359375}, {"start": 2009.19, "end": 2010.13, "word": " empty.", "probability": 0.51953125}, {"start": 2011.09, "end": 2011.51, "word": " But", "probability": 0.8837890625}, {"start": 2011.51, "end": 2011.67, "word": " the", "probability": 0.5888671875}, {"start": 2011.67, "end": 2012.55, "word": " update", "probability": 0.9140625}, {"start": 2012.55, "end": 2012.55, "word": " is", "probability": 0.6826171875}, {"start": 2012.55, "end": 2012.55, "word": " supposed", "probability": 0.9248046875}, {"start": 2012.55, "end": 2013.47, "word": " to", "probability": 0.96875}, {"start": 2013.47, "end": 2013.77, "word": " send", "probability": 0.74853515625}, {"start": 2013.77, "end": 2014.45, "word": " a", "probability": 0.62109375}, {"start": 2014.45, "end": 2014.87, "word": " message", "probability": 0.93017578125}, {"start": 2014.87, "end": 2015.09, "word": " or", "probability": 0.69580078125}, {"start": 2015.09, "end": 2015.59, "word": " data", "probability": 0.9248046875}, {"start": 2015.59, "end": 2015.59, "word": " through", "probability": 0.830078125}, {"start": 2015.59, "end": 2015.59, "word": " it.", "probability": 0.93603515625}, {"start": 2016.05, "end": 2016.47, "word": " Or,", "probability": 0.90478515625}, {"start": 2016.95, "end": 2017.03, "word": " for", "probability": 0.92431640625}, {"start": 2017.03, "end": 2017.19, "word": " example,", "probability": 0.96044921875}, {"start": 2017.31, "end": 2017.43, "word": " here", "probability": 0.66552734375}, {"start": 2017.43, "end": 2017.57, "word": " in", "probability": 0.8837890625}, {"start": 2017.57, "end": 2017.65, "word": " this", "probability": 0.92626953125}, {"start": 2017.65, "end": 2017.95, "word": " example,", "probability": 0.96875}, {"start": 2018.27, "end": 2018.33, "word": " it", "probability": 0.498291015625}, {"start": 2018.33, "end": 2018.49, "word": " sends", "probability": 0.779296875}, {"start": 2018.49, "end": 2018.87, "word": " the", "probability": 0.371826171875}, {"start": 2018.87, "end": 2019.65, "word": " observable", "probability": 0.7310791015625}, {"start": 2019.65, "end": 2019.97, "word": " itself.", "probability": 0.736328125}], "temperature": 1.0}, {"id": 80, "seek": 203600, "start": 2020.88, "end": 2036.0, "text": "means here your idea is what it wants to do it wants to send this any modification takes the object this and sends it to the update why? here is update when the update is executed it goes what does it do here? observable", "tokens": [1398, 599, 510, 428, 1558, 307, 437, 309, 2738, 281, 360, 309, 2738, 281, 2845, 341, 604, 26747, 2516, 264, 2657, 341, 293, 14790, 309, 281, 264, 5623, 983, 30, 510, 307, 5623, 562, 264, 5623, 307, 17577, 309, 1709, 437, 775, 309, 360, 510, 30, 9951, 712], "avg_logprob": -0.592155612244898, "compression_ratio": 1.6541353383458646, "no_speech_prob": 4.172325134277344e-06, "words": [{"start": 2020.88, "end": 2021.16, "word": "means", "probability": 0.4310302734375}, {"start": 2021.16, "end": 2021.36, "word": " here", "probability": 0.465087890625}, {"start": 2021.36, "end": 2021.46, "word": " your", "probability": 0.366455078125}, {"start": 2021.46, "end": 2021.7, "word": " idea", "probability": 0.6513671875}, {"start": 2021.7, "end": 2021.92, "word": " is", "probability": 0.2149658203125}, {"start": 2021.92, "end": 2022.06, "word": " what", "probability": 0.332275390625}, {"start": 2022.06, "end": 2022.14, "word": " it", "probability": 0.308349609375}, {"start": 2022.14, "end": 2022.26, "word": " wants", "probability": 0.273681640625}, {"start": 2022.26, "end": 2022.3, "word": " to", "probability": 0.955078125}, {"start": 2022.3, "end": 2022.5, "word": " do", "probability": 0.90576171875}, {"start": 2022.5, "end": 2022.58, "word": " it", "probability": 0.189697265625}, {"start": 2022.58, "end": 2022.74, "word": " wants", "probability": 0.71875}, {"start": 2022.74, "end": 2022.84, "word": " to", "probability": 0.95166015625}, {"start": 2022.84, "end": 2023.0, "word": " send", "probability": 0.7431640625}, {"start": 2023.0, "end": 2023.58, "word": " this", "probability": 0.374755859375}, {"start": 2023.58, "end": 2023.88, "word": " any", "probability": 0.5234375}, {"start": 2023.88, "end": 2024.34, "word": " modification", "probability": 0.442626953125}, {"start": 2024.34, "end": 2024.78, "word": " takes", "probability": 0.355712890625}, {"start": 2024.78, "end": 2024.98, "word": " the", "probability": 0.64599609375}, {"start": 2024.98, "end": 2025.3, "word": " object", "probability": 0.96728515625}, {"start": 2025.3, "end": 2025.72, "word": " this", "probability": 0.865234375}, {"start": 2025.72, "end": 2026.9, "word": " and", "probability": 0.39013671875}, {"start": 2026.9, "end": 2027.22, "word": " sends", "probability": 0.712890625}, {"start": 2027.22, "end": 2027.5, "word": " it", "probability": 0.9013671875}, {"start": 2027.5, "end": 2027.94, "word": " to", "probability": 0.8662109375}, {"start": 2027.94, "end": 2028.02, "word": " the", "probability": 0.488037109375}, {"start": 2028.02, "end": 2028.36, "word": " update", "probability": 0.912109375}, {"start": 2028.36, "end": 2028.96, "word": " why?", "probability": 0.72314453125}, {"start": 2029.28, "end": 2029.6, "word": " here", "probability": 0.3662109375}, {"start": 2029.6, "end": 2029.68, "word": " is", "probability": 0.316162109375}, {"start": 2029.68, "end": 2030.36, "word": " update", "probability": 0.458984375}, {"start": 2030.36, "end": 2031.92, "word": " when", "probability": 0.5888671875}, {"start": 2031.92, "end": 2032.14, "word": " the", "probability": 0.556640625}, {"start": 2032.14, "end": 2033.02, "word": " update", "probability": 0.85986328125}, {"start": 2033.02, "end": 2033.02, "word": " is", "probability": 0.6171875}, {"start": 2033.02, "end": 2033.02, "word": " executed", "probability": 0.5712890625}, {"start": 2033.02, "end": 2033.86, "word": " it", "probability": 0.31884765625}, {"start": 2033.86, "end": 2034.06, "word": " goes", "probability": 0.90283203125}, {"start": 2034.06, "end": 2034.28, "word": " what", "probability": 0.52587890625}, {"start": 2034.28, "end": 2034.44, "word": " does", "probability": 0.67822265625}, {"start": 2034.44, "end": 2034.44, "word": " it", "probability": 0.86474609375}, {"start": 2034.44, "end": 2034.66, "word": " do", "probability": 0.93212890625}, {"start": 2034.66, "end": 2034.9, "word": " here?", "probability": 0.8349609375}, {"start": 2035.52, "end": 2036.0, "word": " observable", "probability": 0.7646484375}], "temperature": 1.0}, {"id": 81, "seek": 206538, "start": 2037.2, "end": 2065.38, "text": "Who is the observable? It is this object It says get what? Get state To get its value, it takes it and stores it where? In the observer state, which is where? Here This is just to show you that as soon as it gets the update, it reads this information and stores it where? It stores it here Now, how does it read the information and store it? This is not our big issue For example, the way we follow is that when it gets the update, what does it send?", "tokens": [10927, 307, 264, 9951, 712, 30, 467, 307, 341, 2657, 467, 1619, 483, 437, 30, 3240, 1785, 1407, 483, 1080, 2158, 11, 309, 2516, 309, 293, 9512, 309, 689, 30, 682, 264, 27878, 1785, 11, 597, 307, 689, 30, 1692, 639, 307, 445, 281, 855, 291, 300, 382, 2321, 382, 309, 2170, 264, 5623, 11, 309, 15700, 341, 1589, 293, 9512, 309, 689, 30, 467, 9512, 309, 510, 823, 11, 577, 775, 309, 1401, 264, 1589, 293, 3531, 309, 30, 639, 307, 406, 527, 955, 2734, 1171, 1365, 11, 264, 636, 321, 1524, 307, 300, 562, 309, 2170, 264, 5623, 11, 437, 775, 309, 2845, 30], "avg_logprob": -0.5005841099213217, "compression_ratio": 1.9148936170212767, "no_speech_prob": 1.1026859283447266e-05, "words": [{"start": 2037.2, "end": 2037.52, "word": "Who", "probability": 0.08575439453125}, {"start": 2037.52, "end": 2037.92, "word": " is", "probability": 0.7138671875}, {"start": 2037.92, "end": 2038.0, "word": " the", "probability": 0.50537109375}, {"start": 2038.0, "end": 2038.58, "word": " observable?", "probability": 0.71435546875}, {"start": 2038.66, "end": 2038.76, "word": " It", "probability": 0.287353515625}, {"start": 2038.76, "end": 2038.84, "word": " is", "probability": 0.60107421875}, {"start": 2038.84, "end": 2039.18, "word": " this", "probability": 0.60498046875}, {"start": 2039.18, "end": 2039.68, "word": " object", "probability": 0.90771484375}, {"start": 2039.68, "end": 2040.28, "word": " It", "probability": 0.129150390625}, {"start": 2040.28, "end": 2040.54, "word": " says", "probability": 0.3134765625}, {"start": 2040.54, "end": 2040.86, "word": " get", "probability": 0.33935546875}, {"start": 2040.86, "end": 2041.2, "word": " what?", "probability": 0.6142578125}, {"start": 2041.82, "end": 2042.26, "word": " Get", "probability": 0.433837890625}, {"start": 2042.26, "end": 2042.58, "word": " state", "probability": 0.802734375}, {"start": 2042.58, "end": 2042.74, "word": " To", "probability": 0.15283203125}, {"start": 2042.74, "end": 2043.12, "word": " get", "probability": 0.404296875}, {"start": 2043.12, "end": 2043.48, "word": " its", "probability": 0.435302734375}, {"start": 2043.48, "end": 2043.94, "word": " value,", "probability": 0.89501953125}, {"start": 2044.58, "end": 2044.98, "word": " it", "probability": 0.68701171875}, {"start": 2044.98, "end": 2045.18, "word": " takes", "probability": 0.25390625}, {"start": 2045.18, "end": 2045.28, "word": " it", "probability": 0.83935546875}, {"start": 2045.28, "end": 2045.38, "word": " and", "probability": 0.8837890625}, {"start": 2045.38, "end": 2045.7, "word": " stores", "probability": 0.75244140625}, {"start": 2045.7, "end": 2045.9, "word": " it", "probability": 0.92919921875}, {"start": 2045.9, "end": 2046.1, "word": " where?", "probability": 0.471923828125}, {"start": 2046.24, "end": 2046.4, "word": " In", "probability": 0.82763671875}, {"start": 2046.4, "end": 2046.5, "word": " the", "probability": 0.68994140625}, {"start": 2046.5, "end": 2046.94, "word": " observer", "probability": 0.8525390625}, {"start": 2046.94, "end": 2047.34, "word": " state,", "probability": 0.90966796875}, {"start": 2047.44, "end": 2047.46, "word": " which", "probability": 0.615234375}, {"start": 2047.46, "end": 2047.58, "word": " is", "probability": 0.91064453125}, {"start": 2047.58, "end": 2047.86, "word": " where?", "probability": 0.7578125}, {"start": 2048.54, "end": 2048.8, "word": " Here", "probability": 0.75341796875}, {"start": 2048.8, "end": 2049.32, "word": " This", "probability": 0.32568359375}, {"start": 2049.32, "end": 2049.4, "word": " is", "probability": 0.83642578125}, {"start": 2049.4, "end": 2049.54, "word": " just", "probability": 0.61181640625}, {"start": 2049.54, "end": 2049.76, "word": " to", "probability": 0.94775390625}, {"start": 2049.76, "end": 2050.08, "word": " show", "probability": 0.65380859375}, {"start": 2050.08, "end": 2050.3, "word": " you", "probability": 0.79833984375}, {"start": 2050.3, "end": 2050.74, "word": " that", "probability": 0.8486328125}, {"start": 2050.74, "end": 2051.2, "word": " as", "probability": 0.441162109375}, {"start": 2051.2, "end": 2051.28, "word": " soon", "probability": 0.935546875}, {"start": 2051.28, "end": 2051.36, "word": " as", "probability": 0.97119140625}, {"start": 2051.36, "end": 2051.48, "word": " it", "probability": 0.7353515625}, {"start": 2051.48, "end": 2051.62, "word": " gets", "probability": 0.1160888671875}, {"start": 2051.62, "end": 2051.82, "word": " the", "probability": 0.63330078125}, {"start": 2051.82, "end": 2052.32, "word": " update,", "probability": 0.85009765625}, {"start": 2052.5, "end": 2052.84, "word": " it", "probability": 0.76025390625}, {"start": 2052.84, "end": 2053.0, "word": " reads", "probability": 0.68408203125}, {"start": 2053.0, "end": 2053.86, "word": " this", "probability": 0.69970703125}, {"start": 2053.86, "end": 2053.86, "word": " information", "probability": 0.6806640625}, {"start": 2053.86, "end": 2054.92, "word": " and", "probability": 0.6748046875}, {"start": 2054.92, "end": 2055.18, "word": " stores", "probability": 0.79296875}, {"start": 2055.18, "end": 2055.36, "word": " it", "probability": 0.92822265625}, {"start": 2055.36, "end": 2055.56, "word": " where?", "probability": 0.7705078125}, {"start": 2056.06, "end": 2056.4, "word": " It", "probability": 0.260009765625}, {"start": 2056.4, "end": 2056.62, "word": " stores", "probability": 0.81689453125}, {"start": 2056.62, "end": 2056.86, "word": " it", "probability": 0.88720703125}, {"start": 2056.86, "end": 2057.06, "word": " here", "probability": 0.81787109375}, {"start": 2057.06, "end": 2058.18, "word": " Now,", "probability": 0.288330078125}, {"start": 2058.42, "end": 2058.54, "word": " how", "probability": 0.8916015625}, {"start": 2058.54, "end": 2058.62, "word": " does", "probability": 0.3310546875}, {"start": 2058.62, "end": 2058.62, "word": " it", "probability": 0.85498046875}, {"start": 2058.62, "end": 2058.82, "word": " read", "probability": 0.8515625}, {"start": 2058.82, "end": 2058.98, "word": " the", "probability": 0.439453125}, {"start": 2058.98, "end": 2059.22, "word": " information", "probability": 0.7001953125}, {"start": 2059.22, "end": 2059.42, "word": " and", "probability": 0.8779296875}, {"start": 2059.42, "end": 2059.66, "word": " store", "probability": 0.51171875}, {"start": 2059.66, "end": 2059.82, "word": " it?", "probability": 0.8916015625}, {"start": 2059.92, "end": 2060.02, "word": " This", "probability": 0.4853515625}, {"start": 2060.02, "end": 2060.06, "word": " is", "probability": 0.90283203125}, {"start": 2060.06, "end": 2060.32, "word": " not", "probability": 0.90478515625}, {"start": 2060.32, "end": 2060.78, "word": " our", "probability": 0.65478515625}, {"start": 2060.78, "end": 2060.98, "word": " big", "probability": 0.362548828125}, {"start": 2060.98, "end": 2061.04, "word": " issue", "probability": 0.40625}, {"start": 2061.04, "end": 2061.28, "word": " For", "probability": 0.5361328125}, {"start": 2061.28, "end": 2061.74, "word": " example,", "probability": 0.9248046875}, {"start": 2062.72, "end": 2062.98, "word": " the", "probability": 0.6171875}, {"start": 2062.98, "end": 2063.24, "word": " way", "probability": 0.73095703125}, {"start": 2063.24, "end": 2063.42, "word": " we", "probability": 0.537109375}, {"start": 2063.42, "end": 2063.8, "word": " follow", "probability": 0.3740234375}, {"start": 2063.8, "end": 2064.06, "word": " is", "probability": 0.261962890625}, {"start": 2064.06, "end": 2064.18, "word": " that", "probability": 0.50634765625}, {"start": 2064.18, "end": 2064.32, "word": " when", "probability": 0.82568359375}, {"start": 2064.32, "end": 2064.46, "word": " it", "probability": 0.72802734375}, {"start": 2064.46, "end": 2064.62, "word": " gets", "probability": 0.74169921875}, {"start": 2064.62, "end": 2064.78, "word": " the", "probability": 0.79638671875}, {"start": 2064.78, "end": 2065.08, "word": " update,", "probability": 0.8671875}, {"start": 2065.18, "end": 2065.22, "word": " what", "probability": 0.445556640625}, {"start": 2065.22, "end": 2065.22, "word": " does", "probability": 0.89599609375}, {"start": 2065.22, "end": 2065.22, "word": " it", "probability": 0.935546875}, {"start": 2065.22, "end": 2065.38, "word": " send?", "probability": 0.78076171875}], "temperature": 1.0}, {"id": 82, "seek": 209052, "start": 2066.92, "end": 2090.52, "text": " The data is with them, okay? Here it is not clear exactly how the data was sent, but what I understand is that when the update was executed, the observable returned to the object of the observer and told him get what? Get state, to take this information and store it locally with him, okay? Do you know what's wrong here? Okay", "tokens": [440, 1412, 307, 365, 552, 11, 1392, 30, 1692, 309, 307, 406, 1850, 2293, 577, 264, 1412, 390, 2279, 11, 457, 437, 286, 1223, 307, 300, 562, 264, 5623, 390, 17577, 11, 264, 9951, 712, 8752, 281, 264, 2657, 295, 264, 27878, 293, 1907, 796, 483, 437, 30, 3240, 1785, 11, 281, 747, 341, 1589, 293, 3531, 309, 16143, 365, 796, 11, 1392, 30, 1144, 291, 458, 437, 311, 2085, 510, 30, 1033], "avg_logprob": -0.4750844699305457, "compression_ratio": 1.5645933014354068, "no_speech_prob": 2.7239322662353516e-05, "words": [{"start": 2066.92, "end": 2067.18, "word": " The", "probability": 0.2000732421875}, {"start": 2067.18, "end": 2067.4, "word": " data", "probability": 0.5771484375}, {"start": 2067.4, "end": 2067.6, "word": " is", "probability": 0.42041015625}, {"start": 2067.6, "end": 2067.72, "word": " with", "probability": 0.53759765625}, {"start": 2067.72, "end": 2067.98, "word": " them,", "probability": 0.4248046875}, {"start": 2068.48, "end": 2068.78, "word": " okay?", "probability": 0.28369140625}, {"start": 2068.98, "end": 2069.18, "word": " Here", "probability": 0.389404296875}, {"start": 2069.18, "end": 2069.26, "word": " it", "probability": 0.441650390625}, {"start": 2069.26, "end": 2069.38, "word": " is", "probability": 0.51416015625}, {"start": 2069.38, "end": 2069.38, "word": " not", "probability": 0.92138671875}, {"start": 2069.38, "end": 2069.72, "word": " clear", "probability": 0.459716796875}, {"start": 2069.72, "end": 2070.22, "word": " exactly", "probability": 0.7060546875}, {"start": 2070.22, "end": 2070.42, "word": " how", "probability": 0.88525390625}, {"start": 2070.42, "end": 2070.52, "word": " the", "probability": 0.81884765625}, {"start": 2070.52, "end": 2070.72, "word": " data", "probability": 0.8974609375}, {"start": 2070.72, "end": 2070.9, "word": " was", "probability": 0.60400390625}, {"start": 2070.9, "end": 2071.18, "word": " sent,", "probability": 0.66357421875}, {"start": 2071.66, "end": 2071.92, "word": " but", "probability": 0.69384765625}, {"start": 2071.92, "end": 2072.12, "word": " what", "probability": 0.80078125}, {"start": 2072.12, "end": 2072.28, "word": " I", "probability": 0.9921875}, {"start": 2072.28, "end": 2072.54, "word": " understand", "probability": 0.7333984375}, {"start": 2072.54, "end": 2072.76, "word": " is", "probability": 0.80517578125}, {"start": 2072.76, "end": 2073.32, "word": " that", "probability": 0.74853515625}, {"start": 2073.32, "end": 2073.52, "word": " when", "probability": 0.79833984375}, {"start": 2073.52, "end": 2074.24, "word": " the", "probability": 0.8134765625}, {"start": 2074.24, "end": 2074.7, "word": " update", "probability": 0.9287109375}, {"start": 2074.7, "end": 2074.74, "word": " was", "probability": 0.83544921875}, {"start": 2074.74, "end": 2074.74, "word": " executed,", "probability": 0.3310546875}, {"start": 2074.8, "end": 2074.9, "word": " the", "probability": 0.8251953125}, {"start": 2074.9, "end": 2075.54, "word": " observable", "probability": 0.6649169921875}, {"start": 2075.54, "end": 2076.52, "word": " returned", "probability": 0.6943359375}, {"start": 2076.52, "end": 2076.66, "word": " to", "probability": 0.95751953125}, {"start": 2076.66, "end": 2076.7, "word": " the", "probability": 0.83447265625}, {"start": 2076.7, "end": 2076.98, "word": " object", "probability": 0.623046875}, {"start": 2076.98, "end": 2077.26, "word": " of", "probability": 0.71142578125}, {"start": 2077.26, "end": 2077.76, "word": " the", "probability": 0.806640625}, {"start": 2077.76, "end": 2078.86, "word": " observer", "probability": 0.462890625}, {"start": 2078.86, "end": 2080.46, "word": " and", "probability": 0.3671875}, {"start": 2080.46, "end": 2080.64, "word": " told", "probability": 0.416259765625}, {"start": 2080.64, "end": 2080.72, "word": " him", "probability": 0.7939453125}, {"start": 2080.72, "end": 2080.92, "word": " get", "probability": 0.23974609375}, {"start": 2080.92, "end": 2081.24, "word": " what?", "probability": 0.6748046875}, {"start": 2081.7, "end": 2081.96, "word": " Get", "probability": 0.490234375}, {"start": 2081.96, "end": 2082.26, "word": " state,", "probability": 0.64306640625}, {"start": 2082.34, "end": 2082.48, "word": " to", "probability": 0.52392578125}, {"start": 2082.48, "end": 2082.74, "word": " take", "probability": 0.64306640625}, {"start": 2082.74, "end": 2082.86, "word": " this", "probability": 0.79296875}, {"start": 2082.86, "end": 2083.18, "word": " information", "probability": 0.7646484375}, {"start": 2083.18, "end": 2083.62, "word": " and", "probability": 0.91552734375}, {"start": 2083.62, "end": 2083.9, "word": " store", "probability": 0.84423828125}, {"start": 2083.9, "end": 2084.1, "word": " it", "probability": 0.93603515625}, {"start": 2084.1, "end": 2084.5, "word": " locally", "probability": 0.93896484375}, {"start": 2084.5, "end": 2085.44, "word": " with", "probability": 0.6904296875}, {"start": 2085.44, "end": 2085.8, "word": " him,", "probability": 0.85498046875}, {"start": 2085.8, "end": 2086.6, "word": " okay?", "probability": 0.7060546875}, {"start": 2087.62, "end": 2088.14, "word": " Do", "probability": 0.68310546875}, {"start": 2088.14, "end": 2088.14, "word": " you", "probability": 0.8251953125}, {"start": 2088.14, "end": 2088.28, "word": " know", "probability": 0.8662109375}, {"start": 2088.28, "end": 2088.58, "word": " what's", "probability": 0.5535888671875}, {"start": 2088.58, "end": 2088.8, "word": " wrong", "probability": 0.79052734375}, {"start": 2088.8, "end": 2089.26, "word": " here?", "probability": 0.5}, {"start": 2090.0, "end": 2090.52, "word": " Okay", "probability": 0.5361328125}], "temperature": 1.0}, {"id": 83, "seek": 211204, "start": 2096.38, "end": 2112.04, "text": "Now, this is just an explanation of the Liouman-Ell diagram. The parts in it explain it. Of course, subject does not exist in the Liouman-Ell diagram. But we say that the subject is the same as the observable, the main element. What does it mean? It keeps track of its", "tokens": [13267, 11, 341, 307, 445, 364, 10835, 295, 264, 8349, 263, 1601, 12, 36, 285, 10686, 13, 440, 3166, 294, 309, 2903, 309, 13, 2720, 1164, 11, 3983, 775, 406, 2514, 294, 264, 8349, 263, 1601, 12, 36, 285, 10686, 13, 583, 321, 584, 300, 264, 3983, 307, 264, 912, 382, 264, 9951, 712, 11, 264, 2135, 4478, 13, 708, 775, 309, 914, 30, 467, 5965, 2837, 295, 1080], "avg_logprob": -0.5790178733212608, "compression_ratio": 1.5314285714285714, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 2096.38, "end": 2096.86, "word": "Now,", "probability": 0.425048828125}, {"start": 2097.02, "end": 2097.3, "word": " this", "probability": 0.591796875}, {"start": 2097.3, "end": 2097.34, "word": " is", "probability": 0.533203125}, {"start": 2097.34, "end": 2097.46, "word": " just", "probability": 0.34033203125}, {"start": 2097.46, "end": 2097.78, "word": " an", "probability": 0.541015625}, {"start": 2097.78, "end": 2097.78, "word": " explanation", "probability": 0.73095703125}, {"start": 2097.78, "end": 2098.52, "word": " of", "probability": 0.478271484375}, {"start": 2098.52, "end": 2098.7, "word": " the", "probability": 0.6513671875}, {"start": 2098.7, "end": 2098.86, "word": " Liouman", "probability": 0.44317626953125}, {"start": 2098.86, "end": 2099.0, "word": "-Ell", "probability": 0.357666015625}, {"start": 2099.0, "end": 2099.3, "word": " diagram.", "probability": 0.8720703125}, {"start": 2099.82, "end": 2099.86, "word": " The", "probability": 0.47265625}, {"start": 2099.86, "end": 2100.1, "word": " parts", "probability": 0.5498046875}, {"start": 2100.1, "end": 2100.38, "word": " in", "probability": 0.3603515625}, {"start": 2100.38, "end": 2100.64, "word": " it", "probability": 0.77099609375}, {"start": 2100.64, "end": 2100.9, "word": " explain", "probability": 0.65185546875}, {"start": 2100.9, "end": 2101.18, "word": " it.", "probability": 0.75048828125}, {"start": 2101.72, "end": 2102.08, "word": " Of", "probability": 0.77099609375}, {"start": 2102.08, "end": 2102.26, "word": " course,", "probability": 0.95654296875}, {"start": 2103.42, "end": 2103.98, "word": " subject", "probability": 0.5361328125}, {"start": 2103.98, "end": 2104.22, "word": " does", "probability": 0.1937255859375}, {"start": 2104.22, "end": 2104.24, "word": " not", "probability": 0.93896484375}, {"start": 2104.24, "end": 2104.52, "word": " exist", "probability": 0.74951171875}, {"start": 2104.52, "end": 2104.54, "word": " in", "probability": 0.9111328125}, {"start": 2104.54, "end": 2104.64, "word": " the", "probability": 0.755859375}, {"start": 2104.64, "end": 2104.74, "word": " Liouman", "probability": 0.9029947916666666}, {"start": 2104.74, "end": 2104.88, "word": "-Ell", "probability": 0.98046875}, {"start": 2104.88, "end": 2105.2, "word": " diagram.", "probability": 0.75927734375}, {"start": 2105.64, "end": 2105.78, "word": " But", "probability": 0.69140625}, {"start": 2105.78, "end": 2105.9, "word": " we", "probability": 0.373779296875}, {"start": 2105.9, "end": 2105.98, "word": " say", "probability": 0.408203125}, {"start": 2105.98, "end": 2106.12, "word": " that", "probability": 0.60888671875}, {"start": 2106.12, "end": 2106.16, "word": " the", "probability": 0.48681640625}, {"start": 2106.16, "end": 2106.44, "word": " subject", "probability": 0.955078125}, {"start": 2106.44, "end": 2106.62, "word": " is", "probability": 0.70654296875}, {"start": 2106.62, "end": 2106.9, "word": " the", "probability": 0.430908203125}, {"start": 2106.9, "end": 2106.9, "word": " same", "probability": 0.7666015625}, {"start": 2106.9, "end": 2107.14, "word": " as", "probability": 0.296875}, {"start": 2107.14, "end": 2107.7, "word": " the", "probability": 0.62744140625}, {"start": 2107.7, "end": 2108.3, "word": " observable,", "probability": 0.7242431640625}, {"start": 2108.32, "end": 2108.48, "word": " the", "probability": 0.693359375}, {"start": 2108.48, "end": 2108.58, "word": " main", "probability": 0.289306640625}, {"start": 2108.58, "end": 2109.16, "word": " element.", "probability": 0.9140625}, {"start": 2109.74, "end": 2110.22, "word": " What", "probability": 0.55029296875}, {"start": 2110.22, "end": 2110.28, "word": " does", "probability": 0.52197265625}, {"start": 2110.28, "end": 2110.28, "word": " it", "probability": 0.426513671875}, {"start": 2110.28, "end": 2110.46, "word": " mean?", "probability": 0.81005859375}, {"start": 2110.6, "end": 2110.74, "word": " It", "probability": 0.61083984375}, {"start": 2110.74, "end": 2111.04, "word": " keeps", "probability": 0.73388671875}, {"start": 2111.04, "end": 2111.52, "word": " track", "probability": 0.92333984375}, {"start": 2111.52, "end": 2111.74, "word": " of", "probability": 0.96826171875}, {"start": 2111.74, "end": 2112.04, "word": " its", "probability": 0.81103515625}], "temperature": 1.0}, {"id": 84, "seek": 212855, "start": 2112.87, "end": 2128.55, "text": "observer, keeps track of information, provides an interface for attaching and detaching observer objects there is also a method called add and remove or attach and detach", "tokens": [16537, 38241, 11, 5965, 2837, 295, 1589, 11, 6417, 364, 9226, 337, 39074, 293, 1141, 2834, 27878, 6565, 456, 307, 611, 257, 3170, 1219, 909, 293, 4159, 420, 5085, 293, 43245], "avg_logprob": -0.4648437397554517, "compression_ratio": 1.5178571428571428, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2112.87, "end": 2113.41, "word": "observer,", "probability": 0.5789794921875}, {"start": 2113.59, "end": 2113.89, "word": " keeps", "probability": 0.541015625}, {"start": 2113.89, "end": 2114.33, "word": " track", "probability": 0.88720703125}, {"start": 2114.33, "end": 2115.01, "word": " of", "probability": 0.1339111328125}, {"start": 2115.01, "end": 2117.07, "word": " information,", "probability": 0.309326171875}, {"start": 2117.33, "end": 2120.53, "word": " provides", "probability": 0.38525390625}, {"start": 2120.53, "end": 2121.01, "word": " an", "probability": 0.84326171875}, {"start": 2121.01, "end": 2121.67, "word": " interface", "probability": 0.892578125}, {"start": 2121.67, "end": 2122.11, "word": " for", "probability": 0.9111328125}, {"start": 2122.11, "end": 2122.61, "word": " attaching", "probability": 0.9326171875}, {"start": 2122.61, "end": 2122.99, "word": " and", "probability": 0.9248046875}, {"start": 2122.99, "end": 2123.53, "word": " detaching", "probability": 0.899169921875}, {"start": 2123.53, "end": 2124.19, "word": " observer", "probability": 0.72412109375}, {"start": 2124.19, "end": 2125.29, "word": " objects", "probability": 0.94970703125}, {"start": 2125.29, "end": 2125.53, "word": " there", "probability": 0.1248779296875}, {"start": 2125.53, "end": 2125.81, "word": " is", "probability": 0.6572265625}, {"start": 2125.81, "end": 2126.05, "word": " also", "probability": 0.63671875}, {"start": 2126.05, "end": 2126.09, "word": " a", "probability": 0.5673828125}, {"start": 2126.09, "end": 2126.31, "word": " method", "probability": 0.95361328125}, {"start": 2126.31, "end": 2126.65, "word": " called", "probability": 0.4765625}, {"start": 2126.65, "end": 2126.97, "word": " add", "probability": 0.74853515625}, {"start": 2126.97, "end": 2127.11, "word": " and", "probability": 0.81396484375}, {"start": 2127.11, "end": 2127.47, "word": " remove", "probability": 0.92529296875}, {"start": 2127.47, "end": 2127.77, "word": " or", "probability": 0.56494140625}, {"start": 2127.77, "end": 2128.13, "word": " attach", "probability": 0.88623046875}, {"start": 2128.13, "end": 2128.29, "word": " and", "probability": 0.93701171875}, {"start": 2128.29, "end": 2128.55, "word": " detach", "probability": 0.7744140625}], "temperature": 1.0}, {"id": 85, "seek": 215296, "start": 2129.28, "end": 2152.96, "text": "Observer, this is basically defines an interface for update notification Concrete subject, which is as we said, this is observable, they can put this in the main superclass and then make a subclass out of it This is not essential, in my work, for example, I considered this as one class", "tokens": [46, 929, 38241, 11, 341, 307, 1936, 23122, 364, 9226, 337, 5623, 11554, 18200, 7600, 3983, 11, 597, 307, 382, 321, 848, 11, 341, 307, 9951, 712, 11, 436, 393, 829, 341, 294, 264, 2135, 1687, 11665, 293, 550, 652, 257, 1422, 11665, 484, 295, 309, 639, 307, 406, 7115, 11, 294, 452, 589, 11, 337, 1365, 11, 286, 4888, 341, 382, 472, 1508], "avg_logprob": -0.5225961538461539, "compression_ratio": 1.5376344086021505, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2129.28, "end": 2129.94, "word": "Observer,", "probability": 0.7506510416666666}, {"start": 2130.3, "end": 2130.5, "word": " this", "probability": 0.57763671875}, {"start": 2130.5, "end": 2130.56, "word": " is", "probability": 0.6123046875}, {"start": 2130.56, "end": 2130.9, "word": " basically", "probability": 0.1661376953125}, {"start": 2130.9, "end": 2131.36, "word": " defines", "probability": 0.62158203125}, {"start": 2131.36, "end": 2131.58, "word": " an", "probability": 0.85595703125}, {"start": 2131.58, "end": 2132.18, "word": " interface", "probability": 0.89208984375}, {"start": 2132.18, "end": 2132.54, "word": " for", "probability": 0.853515625}, {"start": 2132.54, "end": 2133.06, "word": " update", "probability": 0.689453125}, {"start": 2133.06, "end": 2134.6, "word": " notification", "probability": 0.611328125}, {"start": 2134.6, "end": 2135.92, "word": " Concrete", "probability": 0.864501953125}, {"start": 2135.92, "end": 2136.5, "word": " subject,", "probability": 0.84375}, {"start": 2137.2, "end": 2137.24, "word": " which", "probability": 0.428955078125}, {"start": 2137.24, "end": 2138.04, "word": " is", "probability": 0.560546875}, {"start": 2138.04, "end": 2138.04, "word": " as", "probability": 0.243408203125}, {"start": 2138.04, "end": 2138.38, "word": " we", "probability": 0.84521484375}, {"start": 2138.38, "end": 2138.68, "word": " said,", "probability": 0.78271484375}, {"start": 2139.3, "end": 2139.74, "word": " this", "probability": 0.57568359375}, {"start": 2139.74, "end": 2140.28, "word": " is", "probability": 0.8896484375}, {"start": 2140.28, "end": 2141.08, "word": " observable,", "probability": 0.88330078125}, {"start": 2141.58, "end": 2142.0, "word": " they", "probability": 0.339599609375}, {"start": 2142.0, "end": 2142.24, "word": " can", "probability": 0.78759765625}, {"start": 2142.24, "end": 2142.62, "word": " put", "probability": 0.244140625}, {"start": 2142.62, "end": 2143.92, "word": " this", "probability": 0.6357421875}, {"start": 2143.92, "end": 2144.02, "word": " in", "probability": 0.8046875}, {"start": 2144.02, "end": 2144.1, "word": " the", "probability": 0.62060546875}, {"start": 2144.1, "end": 2144.1, "word": " main", "probability": 0.26806640625}, {"start": 2144.1, "end": 2144.84, "word": " superclass", "probability": 0.716064453125}, {"start": 2144.84, "end": 2145.8, "word": " and", "probability": 0.6455078125}, {"start": 2145.8, "end": 2146.0, "word": " then", "probability": 0.54443359375}, {"start": 2146.0, "end": 2146.26, "word": " make", "probability": 0.6220703125}, {"start": 2146.26, "end": 2146.6, "word": " a", "probability": 0.301513671875}, {"start": 2146.6, "end": 2147.2, "word": " subclass", "probability": 0.961669921875}, {"start": 2147.2, "end": 2147.28, "word": " out", "probability": 0.283935546875}, {"start": 2147.28, "end": 2147.28, "word": " of", "probability": 0.97412109375}, {"start": 2147.28, "end": 2147.28, "word": " it", "probability": 0.86865234375}, {"start": 2147.28, "end": 2147.86, "word": " This", "probability": 0.2325439453125}, {"start": 2147.86, "end": 2147.96, "word": " is", "probability": 0.70458984375}, {"start": 2147.96, "end": 2148.22, "word": " not", "probability": 0.82763671875}, {"start": 2148.22, "end": 2148.7, "word": " essential,", "probability": 0.364501953125}, {"start": 2149.06, "end": 2149.52, "word": " in", "probability": 0.335205078125}, {"start": 2149.52, "end": 2149.68, "word": " my", "probability": 0.91748046875}, {"start": 2149.68, "end": 2149.96, "word": " work,", "probability": 0.5537109375}, {"start": 2150.14, "end": 2150.16, "word": " for", "probability": 0.77197265625}, {"start": 2150.16, "end": 2150.58, "word": " example,", "probability": 0.89306640625}, {"start": 2151.06, "end": 2151.2, "word": " I", "probability": 0.951171875}, {"start": 2151.2, "end": 2151.52, "word": " considered", "probability": 0.5439453125}, {"start": 2151.52, "end": 2151.78, "word": " this", "probability": 0.79931640625}, {"start": 2151.78, "end": 2152.12, "word": " as", "probability": 0.178466796875}, {"start": 2152.12, "end": 2152.64, "word": " one", "probability": 0.5283203125}, {"start": 2152.64, "end": 2152.96, "word": " class", "probability": 0.9609375}], "temperature": 1.0}, {"id": 86, "seek": 218037, "start": 2154.29, "end": 2180.37, "text": "This is the concrete subject and this is the object being observed which I am monitoring and storing the state which I want to report to the observers This is important, concrete observer, this is what makes the implement for whom, for the interface, observer, this is what wants to listen, it is the observing object, it is the one that monitors, it is the one that wants to listen stores state that should stay consistent with the subject", "tokens": [5723, 307, 264, 9859, 3983, 293, 341, 307, 264, 2657, 885, 13095, 597, 286, 669, 11028, 293, 26085, 264, 1785, 597, 286, 528, 281, 2275, 281, 264, 48090, 639, 307, 1021, 11, 9859, 27878, 11, 341, 307, 437, 1669, 264, 4445, 337, 7101, 11, 337, 264, 9226, 11, 27878, 11, 341, 307, 437, 2738, 281, 2140, 11, 309, 307, 264, 22107, 2657, 11, 309, 307, 264, 472, 300, 26518, 11, 309, 307, 264, 472, 300, 2738, 281, 2140, 9512, 1785, 300, 820, 1754, 8398, 365, 264, 3983], "avg_logprob": -0.5493607764894312, "compression_ratio": 2.1359223300970873, "no_speech_prob": 1.1920928955078125e-06, "words": [{"start": 2154.29, "end": 2154.77, "word": "This", "probability": 0.14306640625}, {"start": 2154.77, "end": 2154.79, "word": " is", "probability": 0.7294921875}, {"start": 2154.79, "end": 2154.95, "word": " the", "probability": 0.61279296875}, {"start": 2154.95, "end": 2155.25, "word": " concrete", "probability": 0.8173828125}, {"start": 2155.25, "end": 2155.71, "word": " subject", "probability": 0.7119140625}, {"start": 2155.71, "end": 2156.33, "word": " and", "probability": 0.318603515625}, {"start": 2156.33, "end": 2156.57, "word": " this", "probability": 0.64599609375}, {"start": 2156.57, "end": 2156.79, "word": " is", "probability": 0.45458984375}, {"start": 2156.79, "end": 2157.35, "word": " the", "probability": 0.4833984375}, {"start": 2157.35, "end": 2159.47, "word": " object", "probability": 0.73828125}, {"start": 2159.47, "end": 2159.79, "word": " being", "probability": 0.90234375}, {"start": 2159.79, "end": 2160.31, "word": " observed", "probability": 0.84521484375}, {"start": 2160.31, "end": 2160.55, "word": " which", "probability": 0.26611328125}, {"start": 2160.55, "end": 2160.85, "word": " I", "probability": 0.65185546875}, {"start": 2160.85, "end": 2161.09, "word": " am", "probability": 0.1365966796875}, {"start": 2161.09, "end": 2161.59, "word": " monitoring", "probability": 0.484375}, {"start": 2161.59, "end": 2162.05, "word": " and", "probability": 0.728515625}, {"start": 2162.05, "end": 2162.43, "word": " storing", "probability": 0.351806640625}, {"start": 2162.43, "end": 2162.65, "word": " the", "probability": 0.66015625}, {"start": 2162.65, "end": 2162.93, "word": " state", "probability": 0.56201171875}, {"start": 2162.93, "end": 2163.11, "word": " which", "probability": 0.5126953125}, {"start": 2163.11, "end": 2163.25, "word": " I", "probability": 0.974609375}, {"start": 2163.25, "end": 2163.47, "word": " want", "probability": 0.5302734375}, {"start": 2163.47, "end": 2163.49, "word": " to", "probability": 0.9619140625}, {"start": 2163.49, "end": 2163.75, "word": " report", "probability": 0.2198486328125}, {"start": 2163.75, "end": 2163.93, "word": " to", "probability": 0.92041015625}, {"start": 2163.93, "end": 2164.03, "word": " the", "probability": 0.75390625}, {"start": 2164.03, "end": 2164.55, "word": " observers", "probability": 0.89892578125}, {"start": 2164.55, "end": 2166.07, "word": " This", "probability": 0.215087890625}, {"start": 2166.07, "end": 2166.57, "word": " is", "probability": 0.256591796875}, {"start": 2166.57, "end": 2166.61, "word": " important,", "probability": 0.408447265625}, {"start": 2166.71, "end": 2167.17, "word": " concrete", "probability": 0.7294921875}, {"start": 2167.17, "end": 2167.77, "word": " observer,", "probability": 0.8349609375}, {"start": 2167.99, "end": 2168.19, "word": " this", "probability": 0.5625}, {"start": 2168.19, "end": 2168.25, "word": " is", "probability": 0.51171875}, {"start": 2168.25, "end": 2168.29, "word": " what", "probability": 0.61279296875}, {"start": 2168.29, "end": 2168.47, "word": " makes", "probability": 0.25927734375}, {"start": 2168.47, "end": 2168.67, "word": " the", "probability": 0.307373046875}, {"start": 2168.67, "end": 2168.93, "word": " implement", "probability": 0.68212890625}, {"start": 2168.93, "end": 2169.27, "word": " for", "probability": 0.43017578125}, {"start": 2169.27, "end": 2169.41, "word": " whom,", "probability": 0.80029296875}, {"start": 2169.51, "end": 2169.57, "word": " for", "probability": 0.5576171875}, {"start": 2169.57, "end": 2169.67, "word": " the", "probability": 0.67236328125}, {"start": 2169.67, "end": 2170.23, "word": " interface,", "probability": 0.5947265625}, {"start": 2170.59, "end": 2170.99, "word": " observer,", "probability": 0.5048828125}, {"start": 2171.09, "end": 2171.25, "word": " this", "probability": 0.82861328125}, {"start": 2171.25, "end": 2171.29, "word": " is", "probability": 0.8037109375}, {"start": 2171.29, "end": 2171.37, "word": " what", "probability": 0.8447265625}, {"start": 2171.37, "end": 2171.51, "word": " wants", "probability": 0.382080078125}, {"start": 2171.51, "end": 2171.57, "word": " to", "probability": 0.9697265625}, {"start": 2171.57, "end": 2171.87, "word": " listen,", "probability": 0.603515625}, {"start": 2172.39, "end": 2172.51, "word": " it", "probability": 0.424560546875}, {"start": 2172.51, "end": 2172.61, "word": " is", "probability": 0.83984375}, {"start": 2172.61, "end": 2172.97, "word": " the", "probability": 0.5693359375}, {"start": 2172.97, "end": 2173.59, "word": " observing", "probability": 0.826171875}, {"start": 2173.59, "end": 2174.33, "word": " object,", "probability": 0.97509765625}, {"start": 2174.39, "end": 2174.91, "word": " it", "probability": 0.525390625}, {"start": 2174.91, "end": 2174.95, "word": " is", "probability": 0.69091796875}, {"start": 2174.95, "end": 2175.05, "word": " the", "probability": 0.486328125}, {"start": 2175.05, "end": 2175.05, "word": " one", "probability": 0.5966796875}, {"start": 2175.05, "end": 2175.05, "word": " that", "probability": 0.353271484375}, {"start": 2175.05, "end": 2175.37, "word": " monitors,", "probability": 0.59765625}, {"start": 2175.57, "end": 2175.67, "word": " it", "probability": 0.70947265625}, {"start": 2175.67, "end": 2175.67, "word": " is", "probability": 0.89208984375}, {"start": 2175.67, "end": 2175.73, "word": " the", "probability": 0.794921875}, {"start": 2175.73, "end": 2175.73, "word": " one", "probability": 0.931640625}, {"start": 2175.73, "end": 2175.75, "word": " that", "probability": 0.85546875}, {"start": 2175.75, "end": 2175.91, "word": " wants", "probability": 0.80078125}, {"start": 2175.91, "end": 2175.97, "word": " to", "probability": 0.9697265625}, {"start": 2175.97, "end": 2176.27, "word": " listen", "probability": 0.8662109375}, {"start": 2176.27, "end": 2177.41, "word": " stores", "probability": 0.402099609375}, {"start": 2177.41, "end": 2177.99, "word": " state", "probability": 0.3291015625}, {"start": 2177.99, "end": 2178.37, "word": " that", "probability": 0.89306640625}, {"start": 2178.37, "end": 2178.61, "word": " should", "probability": 0.9619140625}, {"start": 2178.61, "end": 2178.95, "word": " stay", "probability": 0.955078125}, {"start": 2178.95, "end": 2179.49, "word": " consistent", "probability": 0.8779296875}, {"start": 2179.49, "end": 2179.81, "word": " with", "probability": 0.908203125}, {"start": 2179.81, "end": 2179.97, "word": " the", "probability": 0.91064453125}, {"start": 2179.97, "end": 2180.37, "word": " subject", "probability": 0.97265625}], "temperature": 1.0}, {"id": 87, "seek": 219898, "start": 2182.41, "end": 2198.99, "text": "As soon as the subject is modified, which is the observable, its state goes to the observer. The idea of the observer pattern is that any modification in the state must reach the observer.", "tokens": [10884, 2321, 382, 264, 3983, 307, 15873, 11, 597, 307, 264, 9951, 712, 11, 1080, 1785, 1709, 281, 264, 27878, 13, 440, 1558, 295, 264, 27878, 5102, 307, 300, 604, 26747, 294, 264, 1785, 1633, 2524, 264, 27878, 13], "avg_logprob": -0.5128906443715096, "compression_ratio": 1.540983606557377, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 2182.41, "end": 2182.71, "word": "As", "probability": 0.259521484375}, {"start": 2182.71, "end": 2182.91, "word": " soon", "probability": 0.9111328125}, {"start": 2182.91, "end": 2183.11, "word": " as", "probability": 0.97314453125}, {"start": 2183.11, "end": 2183.75, "word": " the", "probability": 0.732421875}, {"start": 2183.75, "end": 2184.23, "word": " subject", "probability": 0.89111328125}, {"start": 2184.23, "end": 2184.25, "word": " is", "probability": 0.1981201171875}, {"start": 2184.25, "end": 2184.25, "word": " modified,", "probability": 0.372802734375}, {"start": 2185.37, "end": 2185.53, "word": " which", "probability": 0.34423828125}, {"start": 2185.53, "end": 2185.89, "word": " is", "probability": 0.8642578125}, {"start": 2185.89, "end": 2185.99, "word": " the", "probability": 0.75830078125}, {"start": 2185.99, "end": 2186.61, "word": " observable,", "probability": 0.874267578125}, {"start": 2186.95, "end": 2187.25, "word": " its", "probability": 0.2454833984375}, {"start": 2187.25, "end": 2187.73, "word": " state", "probability": 0.94189453125}, {"start": 2187.73, "end": 2188.39, "word": " goes", "probability": 0.40966796875}, {"start": 2188.39, "end": 2189.25, "word": " to", "probability": 0.93212890625}, {"start": 2189.25, "end": 2189.35, "word": " the", "probability": 0.6865234375}, {"start": 2189.35, "end": 2189.81, "word": " observer.", "probability": 0.85205078125}, {"start": 2191.19, "end": 2191.85, "word": " The", "probability": 0.2275390625}, {"start": 2191.85, "end": 2192.17, "word": " idea", "probability": 0.541015625}, {"start": 2192.17, "end": 2195.31, "word": " of", "probability": 0.5400390625}, {"start": 2195.31, "end": 2195.41, "word": " the", "probability": 0.5361328125}, {"start": 2195.41, "end": 2195.77, "word": " observer", "probability": 0.74951171875}, {"start": 2195.77, "end": 2196.11, "word": " pattern", "probability": 0.91943359375}, {"start": 2196.11, "end": 2196.35, "word": " is", "probability": 0.86474609375}, {"start": 2196.35, "end": 2196.37, "word": " that", "probability": 0.822265625}, {"start": 2196.37, "end": 2196.57, "word": " any", "probability": 0.66357421875}, {"start": 2196.57, "end": 2196.99, "word": " modification", "probability": 0.64453125}, {"start": 2196.99, "end": 2197.33, "word": " in", "probability": 0.424072265625}, {"start": 2197.33, "end": 2197.47, "word": " the", "probability": 0.716796875}, {"start": 2197.47, "end": 2197.73, "word": " state", "probability": 0.92041015625}, {"start": 2197.73, "end": 2198.01, "word": " must", "probability": 0.390380859375}, {"start": 2198.01, "end": 2198.67, "word": " reach", "probability": 0.68115234375}, {"start": 2198.67, "end": 2198.99, "word": " the", "probability": 0.493896484375}, {"start": 2198.99, "end": 2198.99, "word": " observer.", "probability": 0.79736328125}], "temperature": 1.0}, {"id": 88, "seek": 221269, "start": 2199.98, "end": 2212.7, "text": "So they have to be consistent, what does it mean by consistent? It means that they are in agreement with each other, this one changed the state, he calls notify, he gives them an update, so this one reads the state and stores it with him, okay?", "tokens": [6455, 436, 362, 281, 312, 8398, 11, 437, 775, 309, 914, 538, 8398, 30, 467, 1355, 300, 436, 366, 294, 8106, 365, 1184, 661, 11, 341, 472, 3105, 264, 1785, 11, 415, 5498, 36560, 11, 415, 2709, 552, 364, 5623, 11, 370, 341, 472, 15700, 264, 1785, 293, 9512, 309, 365, 796, 11, 1392, 30], "avg_logprob": -0.6188616316233363, "compression_ratio": 1.5844155844155845, "no_speech_prob": 1.823902130126953e-05, "words": [{"start": 2199.98, "end": 2200.44, "word": "So", "probability": 0.1298828125}, {"start": 2200.44, "end": 2200.44, "word": " they", "probability": 0.4814453125}, {"start": 2200.44, "end": 2200.44, "word": " have", "probability": 0.40478515625}, {"start": 2200.44, "end": 2201.44, "word": " to", "probability": 0.96337890625}, {"start": 2201.44, "end": 2201.72, "word": " be", "probability": 0.890625}, {"start": 2201.72, "end": 2202.3, "word": " consistent,", "probability": 0.91796875}, {"start": 2202.46, "end": 2202.58, "word": " what", "probability": 0.301513671875}, {"start": 2202.58, "end": 2202.68, "word": " does", "probability": 0.5185546875}, {"start": 2202.68, "end": 2202.74, "word": " it", "probability": 0.46337890625}, {"start": 2202.74, "end": 2202.74, "word": " mean", "probability": 0.95703125}, {"start": 2202.74, "end": 2202.74, "word": " by", "probability": 0.28125}, {"start": 2202.74, "end": 2203.22, "word": " consistent?", "probability": 0.9072265625}, {"start": 2203.5, "end": 2203.56, "word": " It", "probability": 0.2044677734375}, {"start": 2203.56, "end": 2203.56, "word": " means", "probability": 0.9287109375}, {"start": 2203.56, "end": 2203.62, "word": " that", "probability": 0.267822265625}, {"start": 2203.62, "end": 2203.62, "word": " they", "probability": 0.8427734375}, {"start": 2203.62, "end": 2203.62, "word": " are", "probability": 0.48291015625}, {"start": 2203.62, "end": 2203.82, "word": " in", "probability": 0.2413330078125}, {"start": 2203.82, "end": 2204.06, "word": " agreement", "probability": 0.445556640625}, {"start": 2204.06, "end": 2204.84, "word": " with", "probability": 0.6787109375}, {"start": 2204.84, "end": 2205.08, "word": " each", "probability": 0.87353515625}, {"start": 2205.08, "end": 2205.08, "word": " other,", "probability": 0.87646484375}, {"start": 2205.16, "end": 2205.34, "word": " this", "probability": 0.4248046875}, {"start": 2205.34, "end": 2205.4, "word": " one", "probability": 0.3095703125}, {"start": 2205.4, "end": 2205.68, "word": " changed", "probability": 0.250732421875}, {"start": 2205.68, "end": 2205.94, "word": " the", "probability": 0.52197265625}, {"start": 2205.94, "end": 2206.28, "word": " state,", "probability": 0.9169921875}, {"start": 2206.84, "end": 2206.94, "word": " he", "probability": 0.50390625}, {"start": 2206.94, "end": 2207.22, "word": " calls", "probability": 0.1624755859375}, {"start": 2207.22, "end": 2207.66, "word": " notify,", "probability": 0.56884765625}, {"start": 2208.26, "end": 2208.4, "word": " he", "probability": 0.3291015625}, {"start": 2208.4, "end": 2208.62, "word": " gives", "probability": 0.1917724609375}, {"start": 2208.62, "end": 2208.86, "word": " them", "probability": 0.81396484375}, {"start": 2208.86, "end": 2208.94, "word": " an", "probability": 0.63916015625}, {"start": 2208.94, "end": 2209.26, "word": " update,", "probability": 0.88916015625}, {"start": 2209.4, "end": 2209.46, "word": " so", "probability": 0.337158203125}, {"start": 2209.46, "end": 2209.6, "word": " this", "probability": 0.73486328125}, {"start": 2209.6, "end": 2209.66, "word": " one", "probability": 0.8203125}, {"start": 2209.66, "end": 2209.9, "word": " reads", "probability": 0.78125}, {"start": 2209.9, "end": 2210.06, "word": " the", "probability": 0.8779296875}, {"start": 2210.06, "end": 2210.3, "word": " state", "probability": 0.95166015625}, {"start": 2210.3, "end": 2210.42, "word": " and", "probability": 0.88720703125}, {"start": 2210.42, "end": 2210.68, "word": " stores", "probability": 0.50048828125}, {"start": 2210.68, "end": 2211.46, "word": " it", "probability": 0.9072265625}, {"start": 2211.46, "end": 2211.76, "word": " with", "probability": 0.71728515625}, {"start": 2211.76, "end": 2211.92, "word": " him,", "probability": 0.8310546875}, {"start": 2212.44, "end": 2212.7, "word": " okay?", "probability": 0.389404296875}], "temperature": 1.0}, {"id": 89, "seek": 224330, "start": 2216.38, "end": 2243.3, "text": " And this implements the Observer Update Interface to keep its state consistent It's what implements the interface and the existing methods in the interface Now another example on the Observer Pattern topic Let's present it through a slide only This example is simple and practical Imagine that I want to create a website for a company, a news website", "tokens": [400, 341, 704, 17988, 264, 20707, 38241, 28923, 5751, 2868, 281, 1066, 1080, 1785, 8398, 467, 311, 437, 704, 17988, 264, 9226, 293, 264, 6741, 7150, 294, 264, 9226, 823, 1071, 1365, 322, 264, 20707, 38241, 34367, 77, 4829, 961, 311, 1974, 309, 807, 257, 4137, 787, 639, 1365, 307, 2199, 293, 8496, 11739, 300, 286, 528, 281, 1884, 257, 3144, 337, 257, 2237, 11, 257, 2583, 3144], "avg_logprob": -0.513586932334347, "compression_ratio": 1.6875, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 2216.38, "end": 2216.62, "word": " And", "probability": 0.10455322265625}, {"start": 2216.62, "end": 2216.88, "word": " this", "probability": 0.73046875}, {"start": 2216.88, "end": 2217.58, "word": " implements", "probability": 0.626220703125}, {"start": 2217.58, "end": 2217.86, "word": " the", "probability": 0.87353515625}, {"start": 2217.86, "end": 2218.42, "word": " Observer", "probability": 0.6497802734375}, {"start": 2218.42, "end": 2218.92, "word": " Update", "probability": 0.62158203125}, {"start": 2218.92, "end": 2219.58, "word": " Interface", "probability": 0.820068359375}, {"start": 2219.58, "end": 2219.76, "word": " to", "probability": 0.89111328125}, {"start": 2219.76, "end": 2220.02, "word": " keep", "probability": 0.8955078125}, {"start": 2220.02, "end": 2220.26, "word": " its", "probability": 0.53759765625}, {"start": 2220.26, "end": 2220.64, "word": " state", "probability": 0.9560546875}, {"start": 2220.64, "end": 2221.3, "word": " consistent", "probability": 0.8974609375}, {"start": 2221.3, "end": 2221.84, "word": " It's", "probability": 0.3779296875}, {"start": 2221.84, "end": 2221.92, "word": " what", "probability": 0.76123046875}, {"start": 2221.92, "end": 2222.54, "word": " implements", "probability": 0.6588134765625}, {"start": 2222.54, "end": 2222.72, "word": " the", "probability": 0.77734375}, {"start": 2222.72, "end": 2223.18, "word": " interface", "probability": 0.8427734375}, {"start": 2223.18, "end": 2223.34, "word": " and", "probability": 0.86328125}, {"start": 2223.34, "end": 2223.88, "word": " the", "probability": 0.419189453125}, {"start": 2223.88, "end": 2224.54, "word": " existing", "probability": 0.306640625}, {"start": 2224.54, "end": 2224.82, "word": " methods", "probability": 0.433837890625}, {"start": 2224.82, "end": 2225.52, "word": " in", "probability": 0.487548828125}, {"start": 2225.52, "end": 2225.62, "word": " the", "probability": 0.75341796875}, {"start": 2225.62, "end": 2226.12, "word": " interface", "probability": 0.849609375}, {"start": 2226.12, "end": 2226.98, "word": " Now", "probability": 0.408447265625}, {"start": 2226.98, "end": 2227.12, "word": " another", "probability": 0.50390625}, {"start": 2227.12, "end": 2227.66, "word": " example", "probability": 0.95361328125}, {"start": 2227.66, "end": 2228.52, "word": " on", "probability": 0.310302734375}, {"start": 2228.52, "end": 2228.7, "word": " the", "probability": 0.703125}, {"start": 2228.7, "end": 2229.38, "word": " Observer", "probability": 0.57421875}, {"start": 2229.38, "end": 2229.86, "word": " Pattern", "probability": 0.82763671875}, {"start": 2229.86, "end": 2229.92, "word": " topic", "probability": 0.4755859375}, {"start": 2229.92, "end": 2230.14, "word": " Let's", "probability": 0.70556640625}, {"start": 2230.14, "end": 2230.44, "word": " present", "probability": 0.137451171875}, {"start": 2230.44, "end": 2230.56, "word": " it", "probability": 0.6376953125}, {"start": 2230.56, "end": 2230.8, "word": " through", "probability": 0.455810546875}, {"start": 2230.8, "end": 2231.02, "word": " a", "probability": 0.61962890625}, {"start": 2231.02, "end": 2231.32, "word": " slide", "probability": 0.86669921875}, {"start": 2231.32, "end": 2231.54, "word": " only", "probability": 0.72314453125}, {"start": 2231.54, "end": 2233.14, "word": " This", "probability": 0.31396484375}, {"start": 2233.14, "end": 2233.88, "word": " example", "probability": 0.4462890625}, {"start": 2233.88, "end": 2234.02, "word": " is", "probability": 0.92724609375}, {"start": 2234.02, "end": 2234.66, "word": " simple", "probability": 0.2083740234375}, {"start": 2234.66, "end": 2235.08, "word": " and", "probability": 0.80126953125}, {"start": 2235.08, "end": 2235.44, "word": " practical", "probability": 0.93408203125}, {"start": 2235.44, "end": 2238.36, "word": " Imagine", "probability": 0.455810546875}, {"start": 2238.36, "end": 2240.8, "word": " that", "probability": 0.69677734375}, {"start": 2240.8, "end": 2240.9, "word": " I", "probability": 0.92626953125}, {"start": 2240.9, "end": 2241.08, "word": " want", "probability": 0.6298828125}, {"start": 2241.08, "end": 2241.08, "word": " to", "probability": 0.96923828125}, {"start": 2241.08, "end": 2241.22, "word": " create", "probability": 0.552734375}, {"start": 2241.22, "end": 2241.42, "word": " a", "probability": 0.94140625}, {"start": 2241.42, "end": 2241.52, "word": " website", "probability": 0.43212890625}, {"start": 2241.52, "end": 2241.68, "word": " for", "probability": 0.8798828125}, {"start": 2241.68, "end": 2242.08, "word": " a", "probability": 0.912109375}, {"start": 2242.08, "end": 2242.08, "word": " company,", "probability": 0.8515625}, {"start": 2242.54, "end": 2242.84, "word": " a", "probability": 0.5732421875}, {"start": 2242.84, "end": 2243.24, "word": " news", "probability": 0.81689453125}, {"start": 2243.24, "end": 2243.3, "word": " website", "probability": 0.65625}], "temperature": 1.0}, {"id": 90, "seek": 225869, "start": 2244.34, "end": 2258.7, "text": " He told me that he had an object called News Publisher The News Publisher is a component that stores news", "tokens": [634, 1907, 385, 300, 415, 632, 364, 2657, 1219, 7987, 21808, 75, 9807, 440, 7987, 21808, 75, 9807, 307, 257, 6542, 300, 9512, 2583], "avg_logprob": -0.5628124809265137, "compression_ratio": 1.2470588235294118, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2244.34, "end": 2244.84, "word": " He", "probability": 0.1177978515625}, {"start": 2244.84, "end": 2245.0, "word": " told", "probability": 0.362548828125}, {"start": 2245.0, "end": 2245.18, "word": " me", "probability": 0.89990234375}, {"start": 2245.18, "end": 2245.22, "word": " that", "probability": 0.49365234375}, {"start": 2245.22, "end": 2247.06, "word": " he", "probability": 0.492431640625}, {"start": 2247.06, "end": 2248.5, "word": " had", "probability": 0.33984375}, {"start": 2248.5, "end": 2249.06, "word": " an", "probability": 0.744140625}, {"start": 2249.06, "end": 2249.3, "word": " object", "probability": 0.79736328125}, {"start": 2249.3, "end": 2249.78, "word": " called", "probability": 0.4521484375}, {"start": 2249.78, "end": 2250.22, "word": " News", "probability": 0.5986328125}, {"start": 2250.22, "end": 2251.96, "word": " Publisher", "probability": 0.7958984375}, {"start": 2251.96, "end": 2253.78, "word": " The", "probability": 0.1600341796875}, {"start": 2253.78, "end": 2254.74, "word": " News", "probability": 0.58154296875}, {"start": 2254.74, "end": 2255.14, "word": " Publisher", "probability": 0.9098307291666666}, {"start": 2255.14, "end": 2255.34, "word": " is", "probability": 0.7890625}, {"start": 2255.34, "end": 2255.68, "word": " a", "probability": 0.76806640625}, {"start": 2255.68, "end": 2256.34, "word": " component", "probability": 0.7861328125}, {"start": 2256.34, "end": 2257.96, "word": " that", "probability": 0.673828125}, {"start": 2257.96, "end": 2258.18, "word": " stores", "probability": 0.82568359375}, {"start": 2258.18, "end": 2258.7, "word": " news", "probability": 0.7314453125}], "temperature": 1.0}, {"id": 91, "seek": 228536, "start": 2262.94, "end": 2285.36, "text": "They want these news to make them subscribe or publish them. Publish. Okay? So I will provide in the program two ways to publish. There is SMS sender, that is, any news that I want to publish, I send it to the SMS sender and tell him to distribute it. I have an email sender that the news", "tokens": [8829, 528, 613, 2583, 281, 652, 552, 3022, 420, 11374, 552, 13, 21808, 1933, 13, 1033, 30, 407, 286, 486, 2893, 294, 264, 1461, 732, 2098, 281, 11374, 13, 821, 307, 38107, 2845, 260, 11, 300, 307, 11, 604, 2583, 300, 286, 528, 281, 11374, 11, 286, 2845, 309, 281, 264, 38107, 2845, 260, 293, 980, 796, 281, 20594, 309, 13, 286, 362, 364, 3796, 2845, 260, 300, 264, 2583], "avg_logprob": -0.5167253672237128, "compression_ratio": 1.6089385474860336, "no_speech_prob": 5.602836608886719e-06, "words": [{"start": 2262.94, "end": 2263.48, "word": "They", "probability": 0.1234130859375}, {"start": 2263.48, "end": 2263.66, "word": " want", "probability": 0.5390625}, {"start": 2263.66, "end": 2264.2, "word": " these", "probability": 0.2388916015625}, {"start": 2264.2, "end": 2264.2, "word": " news", "probability": 0.69189453125}, {"start": 2264.2, "end": 2264.52, "word": " to", "probability": 0.52978515625}, {"start": 2264.52, "end": 2265.22, "word": " make", "probability": 0.271484375}, {"start": 2265.22, "end": 2265.42, "word": " them", "probability": 0.81982421875}, {"start": 2265.42, "end": 2265.84, "word": " subscribe", "probability": 0.77392578125}, {"start": 2265.84, "end": 2266.54, "word": " or", "probability": 0.5693359375}, {"start": 2266.54, "end": 2266.98, "word": " publish", "probability": 0.7265625}, {"start": 2266.98, "end": 2267.4, "word": " them.", "probability": 0.650390625}, {"start": 2268.16, "end": 2268.74, "word": " Publish.", "probability": 0.6107177734375}, {"start": 2269.08, "end": 2269.38, "word": " Okay?", "probability": 0.2315673828125}, {"start": 2270.0, "end": 2270.34, "word": " So", "probability": 0.7353515625}, {"start": 2270.34, "end": 2270.74, "word": " I", "probability": 0.396728515625}, {"start": 2270.74, "end": 2270.9, "word": " will", "probability": 0.440185546875}, {"start": 2270.9, "end": 2271.24, "word": " provide", "probability": 0.501953125}, {"start": 2271.24, "end": 2271.44, "word": " in", "probability": 0.294921875}, {"start": 2271.44, "end": 2271.54, "word": " the", "probability": 0.705078125}, {"start": 2271.54, "end": 2271.94, "word": " program", "probability": 0.767578125}, {"start": 2271.94, "end": 2272.12, "word": " two", "probability": 0.64453125}, {"start": 2272.12, "end": 2272.48, "word": " ways", "probability": 0.81982421875}, {"start": 2272.48, "end": 2272.62, "word": " to", "probability": 0.72412109375}, {"start": 2272.62, "end": 2272.88, "word": " publish.", "probability": 0.6357421875}, {"start": 2273.42, "end": 2273.66, "word": " There", "probability": 0.56884765625}, {"start": 2273.66, "end": 2273.72, "word": " is", "probability": 0.771484375}, {"start": 2273.72, "end": 2274.4, "word": " SMS", "probability": 0.56640625}, {"start": 2274.4, "end": 2275.44, "word": " sender,", "probability": 0.85400390625}, {"start": 2275.58, "end": 2277.12, "word": " that", "probability": 0.253173828125}, {"start": 2277.12, "end": 2277.12, "word": " is,", "probability": 0.62060546875}, {"start": 2277.2, "end": 2277.34, "word": " any", "probability": 0.54150390625}, {"start": 2277.34, "end": 2277.56, "word": " news", "probability": 0.83056640625}, {"start": 2277.56, "end": 2277.66, "word": " that", "probability": 0.54052734375}, {"start": 2277.66, "end": 2277.78, "word": " I", "probability": 0.98828125}, {"start": 2277.78, "end": 2277.94, "word": " want", "probability": 0.7529296875}, {"start": 2277.94, "end": 2278.04, "word": " to", "probability": 0.9658203125}, {"start": 2278.04, "end": 2278.2, "word": " publish,", "probability": 0.85498046875}, {"start": 2278.48, "end": 2278.92, "word": " I", "probability": 0.8720703125}, {"start": 2278.92, "end": 2279.12, "word": " send", "probability": 0.67236328125}, {"start": 2279.12, "end": 2279.24, "word": " it", "probability": 0.80712890625}, {"start": 2279.24, "end": 2279.32, "word": " to", "probability": 0.958984375}, {"start": 2279.32, "end": 2279.64, "word": " the", "probability": 0.304443359375}, {"start": 2279.64, "end": 2280.02, "word": " SMS", "probability": 0.92724609375}, {"start": 2280.02, "end": 2280.6, "word": " sender", "probability": 0.92138671875}, {"start": 2280.6, "end": 2281.22, "word": " and", "probability": 0.61083984375}, {"start": 2281.22, "end": 2281.46, "word": " tell", "probability": 0.546875}, {"start": 2281.46, "end": 2281.58, "word": " him", "probability": 0.857421875}, {"start": 2281.58, "end": 2281.9, "word": " to", "probability": 0.80419921875}, {"start": 2281.9, "end": 2282.14, "word": " distribute", "probability": 0.76953125}, {"start": 2282.14, "end": 2282.78, "word": " it.", "probability": 0.62060546875}, {"start": 2282.88, "end": 2283.46, "word": " I", "probability": 0.71044921875}, {"start": 2283.46, "end": 2283.64, "word": " have", "probability": 0.80517578125}, {"start": 2283.64, "end": 2283.76, "word": " an", "probability": 0.677734375}, {"start": 2283.76, "end": 2284.06, "word": " email", "probability": 0.82470703125}, {"start": 2284.06, "end": 2284.6, "word": " sender", "probability": 0.933349609375}, {"start": 2284.6, "end": 2285.0, "word": " that", "probability": 0.395751953125}, {"start": 2285.0, "end": 2285.12, "word": " the", "probability": 0.400634765625}, {"start": 2285.12, "end": 2285.36, "word": " news", "probability": 0.84228515625}], "temperature": 1.0}, {"id": 92, "seek": 230988, "start": 2286.88, "end": 2309.88, "text": " on the email and twitter sender and so on which is sent on social media for example now we are in front of the same scenario that I have one to many dependencies this one wants to report to other entities which are SMS sender and email sender so now this means that if I want to add another sender", "tokens": [322, 264, 3796, 293, 21439, 2845, 260, 293, 370, 322, 597, 307, 2279, 322, 2093, 3021, 337, 1365, 586, 321, 366, 294, 1868, 295, 264, 912, 9005, 300, 286, 362, 472, 281, 867, 5672, 30322, 279, 341, 472, 2738, 281, 2275, 281, 661, 16667, 597, 366, 38107, 2845, 260, 293, 3796, 2845, 260, 370, 586, 341, 1355, 300, 498, 286, 528, 281, 909, 1071, 2845, 260], "avg_logprob": -0.6082089623408531, "compression_ratio": 1.7028571428571428, "no_speech_prob": 2.384185791015625e-06, "words": [{"start": 2286.88, "end": 2287.14, "word": " on", "probability": 0.134033203125}, {"start": 2287.14, "end": 2287.22, "word": " the", "probability": 0.2373046875}, {"start": 2287.22, "end": 2287.46, "word": " email", "probability": 0.8525390625}, {"start": 2287.46, "end": 2288.52, "word": " and", "probability": 0.287109375}, {"start": 2288.52, "end": 2289.08, "word": " twitter", "probability": 0.228271484375}, {"start": 2289.08, "end": 2289.72, "word": " sender", "probability": 0.747802734375}, {"start": 2289.72, "end": 2289.92, "word": " and", "probability": 0.43896484375}, {"start": 2289.92, "end": 2290.2, "word": " so", "probability": 0.31103515625}, {"start": 2290.2, "end": 2290.36, "word": " on", "probability": 0.888671875}, {"start": 2290.36, "end": 2290.6, "word": " which", "probability": 0.18798828125}, {"start": 2290.6, "end": 2290.72, "word": " is", "probability": 0.163818359375}, {"start": 2290.72, "end": 2290.92, "word": " sent", "probability": 0.29052734375}, {"start": 2290.92, "end": 2291.46, "word": " on", "probability": 0.318115234375}, {"start": 2291.46, "end": 2292.38, "word": " social", "probability": 0.8193359375}, {"start": 2292.38, "end": 2292.74, "word": " media", "probability": 0.89990234375}, {"start": 2292.74, "end": 2293.02, "word": " for", "probability": 0.2120361328125}, {"start": 2293.02, "end": 2293.24, "word": " example", "probability": 0.90087890625}, {"start": 2293.24, "end": 2294.82, "word": " now", "probability": 0.222900390625}, {"start": 2294.82, "end": 2295.08, "word": " we", "probability": 0.416015625}, {"start": 2295.08, "end": 2295.56, "word": " are", "probability": 0.6484375}, {"start": 2295.56, "end": 2295.74, "word": " in", "probability": 0.406982421875}, {"start": 2295.74, "end": 2295.74, "word": " front", "probability": 0.6845703125}, {"start": 2295.74, "end": 2295.86, "word": " of", "probability": 0.966796875}, {"start": 2295.86, "end": 2295.98, "word": " the", "probability": 0.82763671875}, {"start": 2295.98, "end": 2296.04, "word": " same", "probability": 0.89453125}, {"start": 2296.04, "end": 2296.58, "word": " scenario", "probability": 0.85986328125}, {"start": 2296.58, "end": 2296.78, "word": " that", "probability": 0.43701171875}, {"start": 2296.78, "end": 2297.12, "word": " I", "probability": 0.78076171875}, {"start": 2297.12, "end": 2297.12, "word": " have", "probability": 0.85498046875}, {"start": 2297.12, "end": 2297.38, "word": " one", "probability": 0.64892578125}, {"start": 2297.38, "end": 2297.56, "word": " to", "probability": 0.78125}, {"start": 2297.56, "end": 2297.82, "word": " many", "probability": 0.93505859375}, {"start": 2297.82, "end": 2299.24, "word": " dependencies", "probability": 0.5529378255208334}, {"start": 2299.24, "end": 2299.7, "word": " this", "probability": 0.423828125}, {"start": 2299.7, "end": 2299.82, "word": " one", "probability": 0.296630859375}, {"start": 2299.82, "end": 2300.02, "word": " wants", "probability": 0.16455078125}, {"start": 2300.02, "end": 2300.08, "word": " to", "probability": 0.96533203125}, {"start": 2300.08, "end": 2300.36, "word": " report", "probability": 0.113525390625}, {"start": 2300.36, "end": 2300.5, "word": " to", "probability": 0.46923828125}, {"start": 2300.5, "end": 2301.38, "word": " other", "probability": 0.252197265625}, {"start": 2301.38, "end": 2301.92, "word": " entities", "probability": 0.53564453125}, {"start": 2301.92, "end": 2302.64, "word": " which", "probability": 0.52978515625}, {"start": 2302.64, "end": 2302.84, "word": " are", "probability": 0.78564453125}, {"start": 2302.84, "end": 2303.66, "word": " SMS", "probability": 0.381591796875}, {"start": 2303.66, "end": 2304.3, "word": " sender", "probability": 0.8154296875}, {"start": 2304.3, "end": 2304.4, "word": " and", "probability": 0.8935546875}, {"start": 2304.4, "end": 2304.78, "word": " email", "probability": 0.810546875}, {"start": 2304.78, "end": 2305.68, "word": " sender", "probability": 0.9248046875}, {"start": 2305.68, "end": 2306.64, "word": " so", "probability": 0.41064453125}, {"start": 2306.64, "end": 2306.96, "word": " now", "probability": 0.79638671875}, {"start": 2306.96, "end": 2308.2, "word": " this", "probability": 0.70166015625}, {"start": 2308.2, "end": 2308.46, "word": " means", "probability": 0.90869140625}, {"start": 2308.46, "end": 2308.76, "word": " that", "probability": 0.82177734375}, {"start": 2308.76, "end": 2309.0, "word": " if", "probability": 0.91015625}, {"start": 2309.0, "end": 2309.08, "word": " I", "probability": 0.96240234375}, {"start": 2309.08, "end": 2309.26, "word": " want", "probability": 0.45361328125}, {"start": 2309.26, "end": 2309.26, "word": " to", "probability": 0.9677734375}, {"start": 2309.26, "end": 2309.44, "word": " add", "probability": 0.9423828125}, {"start": 2309.44, "end": 2309.56, "word": " another", "probability": 0.86767578125}, {"start": 2309.56, "end": 2309.88, "word": " sender", "probability": 0.891357421875}], "temperature": 1.0}, {"id": 93, "seek": 232352, "start": 2312.3, "end": 2323.52, "text": " Twitter, Instagram, etc. This means that I have to go through the news publisher. So, we have to apply the concept of the observer pattern. How? We have to say, whatever the type of sender is,", "tokens": [5794, 11, 5281, 11, 5183, 13, 639, 1355, 300, 286, 362, 281, 352, 807, 264, 2583, 25088, 13, 407, 11, 321, 362, 281, 3079, 264, 3410, 295, 264, 27878, 5102, 13, 1012, 30, 492, 362, 281, 584, 11, 2035, 264, 2010, 295, 2845, 260, 307, 11], "avg_logprob": -0.7247340374804557, "compression_ratio": 1.3687943262411348, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 2312.2999999999997, "end": 2312.72, "word": " Twitter,", "probability": 0.640625}, {"start": 2312.72, "end": 2313.14, "word": " Instagram,", "probability": 0.85498046875}, {"start": 2313.46, "end": 2313.82, "word": " etc.", "probability": 0.41015625}, {"start": 2314.12, "end": 2314.24, "word": " This", "probability": 0.1259765625}, {"start": 2314.24, "end": 2314.32, "word": " means", "probability": 0.75244140625}, {"start": 2314.32, "end": 2314.4, "word": " that", "probability": 0.505859375}, {"start": 2314.4, "end": 2314.56, "word": " I", "probability": 0.42041015625}, {"start": 2314.56, "end": 2314.56, "word": " have", "probability": 0.2548828125}, {"start": 2314.56, "end": 2314.78, "word": " to", "probability": 0.92431640625}, {"start": 2314.78, "end": 2314.94, "word": " go", "probability": 0.0703125}, {"start": 2314.94, "end": 2315.1, "word": " through", "probability": 0.309326171875}, {"start": 2315.1, "end": 2316.22, "word": " the", "probability": 0.36572265625}, {"start": 2316.22, "end": 2316.42, "word": " news", "probability": 0.587890625}, {"start": 2316.42, "end": 2316.9, "word": " publisher.", "probability": 0.5185546875}, {"start": 2317.44, "end": 2317.86, "word": " So,", "probability": 0.407470703125}, {"start": 2318.1, "end": 2318.24, "word": " we", "probability": 0.343505859375}, {"start": 2318.24, "end": 2318.42, "word": " have", "probability": 0.295166015625}, {"start": 2318.42, "end": 2318.54, "word": " to", "probability": 0.97021484375}, {"start": 2318.54, "end": 2319.2, "word": " apply", "probability": 0.76220703125}, {"start": 2319.2, "end": 2319.38, "word": " the", "probability": 0.77197265625}, {"start": 2319.38, "end": 2319.6, "word": " concept", "probability": 0.25390625}, {"start": 2319.6, "end": 2319.68, "word": " of", "probability": 0.94580078125}, {"start": 2319.68, "end": 2319.74, "word": " the", "probability": 0.407470703125}, {"start": 2319.74, "end": 2320.06, "word": " observer", "probability": 0.5654296875}, {"start": 2320.06, "end": 2320.5, "word": " pattern.", "probability": 0.90185546875}, {"start": 2320.66, "end": 2321.02, "word": " How?", "probability": 0.84912109375}, {"start": 2321.6, "end": 2321.74, "word": " We", "probability": 0.440185546875}, {"start": 2321.74, "end": 2321.86, "word": " have", "probability": 0.64697265625}, {"start": 2321.86, "end": 2322.0, "word": " to", "probability": 0.97265625}, {"start": 2322.0, "end": 2322.16, "word": " say,", "probability": 0.7275390625}, {"start": 2322.26, "end": 2322.48, "word": " whatever", "probability": 0.740234375}, {"start": 2322.48, "end": 2322.98, "word": " the", "probability": 0.42529296875}, {"start": 2322.98, "end": 2322.98, "word": " type", "probability": 0.2093505859375}, {"start": 2322.98, "end": 2323.14, "word": " of", "probability": 0.974609375}, {"start": 2323.14, "end": 2323.52, "word": " sender", "probability": 0.56439208984375}, {"start": 2323.52, "end": 2323.52, "word": " is,", "probability": 0.34912109375}], "temperature": 1.0}, {"id": 94, "seek": 235236, "start": 2324.82, "end": 2352.36, "text": " Let it have only one interface. Look at how we applied the observer pattern to this example. This is the news publisher. This is the source of the news. And the news in it is the latest news. This is the news that we deliver to whom? To these young people. Which is SMS subscriber and email subscriber. Because these three or four ideas that they want to listen to the news", "tokens": [961, 309, 362, 787, 472, 9226, 13, 2053, 412, 577, 321, 6456, 264, 27878, 5102, 281, 341, 1365, 13, 639, 307, 264, 2583, 25088, 13, 639, 307, 264, 4009, 295, 264, 2583, 13, 400, 264, 2583, 294, 309, 307, 264, 6792, 2583, 13, 639, 307, 264, 2583, 300, 321, 4239, 281, 7101, 30, 1407, 613, 2037, 561, 13, 3013, 307, 38107, 26122, 293, 3796, 26122, 13, 1436, 613, 1045, 420, 1451, 3487, 300, 436, 528, 281, 2140, 281, 264, 2583], "avg_logprob": -0.46797840683548536, "compression_ratio": 1.7, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 2324.82, "end": 2325.18, "word": " Let", "probability": 0.09588623046875}, {"start": 2325.18, "end": 2325.34, "word": " it", "probability": 0.235595703125}, {"start": 2325.34, "end": 2325.36, "word": " have", "probability": 0.47509765625}, {"start": 2325.36, "end": 2326.2, "word": " only", "probability": 0.2880859375}, {"start": 2326.2, "end": 2327.12, "word": " one", "probability": 0.89453125}, {"start": 2327.12, "end": 2327.12, "word": " interface.", "probability": 0.873046875}, {"start": 2328.58, "end": 2329.06, "word": " Look", "probability": 0.1710205078125}, {"start": 2329.06, "end": 2329.58, "word": " at", "probability": 0.517578125}, {"start": 2329.58, "end": 2329.7, "word": " how", "probability": 0.76611328125}, {"start": 2329.7, "end": 2330.2, "word": " we", "probability": 0.89599609375}, {"start": 2330.2, "end": 2330.2, "word": " applied", "probability": 0.486328125}, {"start": 2330.2, "end": 2330.64, "word": " the", "probability": 0.73583984375}, {"start": 2330.64, "end": 2331.04, "word": " observer", "probability": 0.65576171875}, {"start": 2331.04, "end": 2331.52, "word": " pattern", "probability": 0.89453125}, {"start": 2331.52, "end": 2331.76, "word": " to", "probability": 0.402099609375}, {"start": 2331.76, "end": 2331.84, "word": " this", "probability": 0.80517578125}, {"start": 2331.84, "end": 2332.18, "word": " example.", "probability": 0.90380859375}, {"start": 2333.2, "end": 2333.68, "word": " This", "probability": 0.497802734375}, {"start": 2333.68, "end": 2333.78, "word": " is", "probability": 0.86083984375}, {"start": 2333.78, "end": 2333.9, "word": " the", "probability": 0.77978515625}, {"start": 2333.9, "end": 2334.14, "word": " news", "probability": 0.6923828125}, {"start": 2334.14, "end": 2334.58, "word": " publisher.", "probability": 0.89892578125}, {"start": 2334.68, "end": 2334.8, "word": " This", "probability": 0.65869140625}, {"start": 2334.8, "end": 2334.94, "word": " is", "probability": 0.91796875}, {"start": 2334.94, "end": 2335.08, "word": " the", "probability": 0.765625}, {"start": 2335.08, "end": 2335.24, "word": " source", "probability": 0.69677734375}, {"start": 2335.24, "end": 2335.5, "word": " of", "probability": 0.94287109375}, {"start": 2335.5, "end": 2336.24, "word": " the", "probability": 0.7119140625}, {"start": 2336.24, "end": 2336.52, "word": " news.", "probability": 0.86328125}, {"start": 2337.04, "end": 2337.52, "word": " And", "probability": 0.55322265625}, {"start": 2337.52, "end": 2337.66, "word": " the", "probability": 0.72021484375}, {"start": 2337.66, "end": 2337.94, "word": " news", "probability": 0.83984375}, {"start": 2337.94, "end": 2338.46, "word": " in", "probability": 0.2322998046875}, {"start": 2338.46, "end": 2338.6, "word": " it", "probability": 0.4658203125}, {"start": 2338.6, "end": 2338.76, "word": " is", "probability": 0.828125}, {"start": 2338.76, "end": 2338.86, "word": " the", "probability": 0.5732421875}, {"start": 2338.86, "end": 2339.1, "word": " latest", "probability": 0.86474609375}, {"start": 2339.1, "end": 2339.52, "word": " news.", "probability": 0.900390625}, {"start": 2339.56, "end": 2339.72, "word": " This", "probability": 0.7587890625}, {"start": 2339.72, "end": 2339.84, "word": " is", "probability": 0.91455078125}, {"start": 2339.84, "end": 2340.0, "word": " the", "probability": 0.80615234375}, {"start": 2340.0, "end": 2340.22, "word": " news", "probability": 0.8037109375}, {"start": 2340.22, "end": 2340.38, "word": " that", "probability": 0.544921875}, {"start": 2340.38, "end": 2340.5, "word": " we", "probability": 0.88232421875}, {"start": 2340.5, "end": 2340.8, "word": " deliver", "probability": 0.224365234375}, {"start": 2340.8, "end": 2341.02, "word": " to", "probability": 0.93359375}, {"start": 2341.02, "end": 2341.14, "word": " whom?", "probability": 0.214111328125}, {"start": 2341.68, "end": 2341.88, "word": " To", "probability": 0.7529296875}, {"start": 2341.88, "end": 2341.94, "word": " these", "probability": 0.67236328125}, {"start": 2341.94, "end": 2342.14, "word": " young", "probability": 0.294677734375}, {"start": 2342.14, "end": 2342.32, "word": " people.", "probability": 0.80615234375}, {"start": 2343.1, "end": 2343.2, "word": " Which", "probability": 0.35791015625}, {"start": 2343.2, "end": 2343.38, "word": " is", "probability": 0.71435546875}, {"start": 2343.38, "end": 2343.94, "word": " SMS", "probability": 0.79052734375}, {"start": 2343.94, "end": 2345.24, "word": " subscriber", "probability": 0.6123046875}, {"start": 2345.24, "end": 2345.52, "word": " and", "probability": 0.8583984375}, {"start": 2345.52, "end": 2345.92, "word": " email", "probability": 0.79443359375}, {"start": 2345.92, "end": 2346.98, "word": " subscriber.", "probability": 0.93310546875}, {"start": 2347.82, "end": 2348.08, "word": " Because", "probability": 0.734375}, {"start": 2348.08, "end": 2348.22, "word": " these", "probability": 0.69970703125}, {"start": 2348.22, "end": 2349.64, "word": " three", "probability": 0.642578125}, {"start": 2349.64, "end": 2350.3, "word": " or", "probability": 0.70556640625}, {"start": 2350.3, "end": 2350.86, "word": " four", "probability": 0.8994140625}, {"start": 2350.86, "end": 2350.92, "word": " ideas", "probability": 0.53173828125}, {"start": 2350.92, "end": 2351.36, "word": " that", "probability": 0.759765625}, {"start": 2351.36, "end": 2351.54, "word": " they", "probability": 0.31640625}, {"start": 2351.54, "end": 2351.58, "word": " want", "probability": 0.72021484375}, {"start": 2351.58, "end": 2351.6, "word": " to", "probability": 0.96484375}, {"start": 2351.6, "end": 2351.9, "word": " listen", "probability": 0.447021484375}, {"start": 2351.9, "end": 2352.02, "word": " to", "probability": 0.96484375}, {"start": 2352.02, "end": 2352.12, "word": " the", "probability": 0.68017578125}, {"start": 2352.12, "end": 2352.36, "word": " news", "probability": 0.8828125}], "temperature": 1.0}, {"id": 95, "seek": 237562, "start": 2353.32, "end": 2375.62, "text": " take it and publish it, we want to unify them, so we want to create an interface for them so what did he do? he created an interface called subscriber and he put a method called update and what does the method update get through this parameter? for the news publisher, object from whom?", "tokens": [747, 309, 293, 11374, 309, 11, 321, 528, 281, 517, 2505, 552, 11, 370, 321, 528, 281, 1884, 364, 9226, 337, 552, 370, 437, 630, 415, 360, 30, 415, 2942, 364, 9226, 1219, 26122, 293, 415, 829, 257, 3170, 1219, 5623, 293, 437, 775, 264, 3170, 5623, 483, 807, 341, 13075, 30, 337, 264, 2583, 25088, 11, 2657, 490, 7101, 30], "avg_logprob": -0.603326634053261, "compression_ratio": 1.7289156626506024, "no_speech_prob": 8.225440979003906e-06, "words": [{"start": 2353.32, "end": 2353.64, "word": " take", "probability": 0.049163818359375}, {"start": 2353.64, "end": 2353.8, "word": " it", "probability": 0.401611328125}, {"start": 2353.8, "end": 2353.9, "word": " and", "probability": 0.86376953125}, {"start": 2353.9, "end": 2354.1, "word": " publish", "probability": 0.73681640625}, {"start": 2354.1, "end": 2354.44, "word": " it,", "probability": 0.92041015625}, {"start": 2354.72, "end": 2354.76, "word": " we", "probability": 0.56591796875}, {"start": 2354.76, "end": 2354.94, "word": " want", "probability": 0.48779296875}, {"start": 2354.94, "end": 2355.26, "word": " to", "probability": 0.951171875}, {"start": 2355.26, "end": 2355.54, "word": " unify", "probability": 0.6510009765625}, {"start": 2355.54, "end": 2355.92, "word": " them,", "probability": 0.53466796875}, {"start": 2356.16, "end": 2356.5, "word": " so", "probability": 0.67236328125}, {"start": 2356.5, "end": 2356.68, "word": " we", "probability": 0.73681640625}, {"start": 2356.68, "end": 2356.68, "word": " want", "probability": 0.28271484375}, {"start": 2356.68, "end": 2356.76, "word": " to", "probability": 0.9541015625}, {"start": 2356.76, "end": 2356.92, "word": " create", "probability": 0.283935546875}, {"start": 2356.92, "end": 2357.56, "word": " an", "probability": 0.51220703125}, {"start": 2357.56, "end": 2358.48, "word": " interface", "probability": 0.90771484375}, {"start": 2358.48, "end": 2358.56, "word": " for", "probability": 0.498779296875}, {"start": 2358.56, "end": 2358.56, "word": " them", "probability": 0.8486328125}, {"start": 2358.56, "end": 2359.24, "word": " so", "probability": 0.20947265625}, {"start": 2359.24, "end": 2359.46, "word": " what", "probability": 0.2509765625}, {"start": 2359.46, "end": 2359.46, "word": " did", "probability": 0.62255859375}, {"start": 2359.46, "end": 2359.74, "word": " he", "probability": 0.4775390625}, {"start": 2359.74, "end": 2359.86, "word": " do?", "probability": 0.8125}, {"start": 2360.02, "end": 2360.1, "word": " he", "probability": 0.6015625}, {"start": 2360.1, "end": 2360.26, "word": " created", "probability": 0.69287109375}, {"start": 2360.26, "end": 2360.44, "word": " an", "probability": 0.818359375}, {"start": 2360.44, "end": 2360.86, "word": " interface", "probability": 0.90185546875}, {"start": 2360.86, "end": 2361.2, "word": " called", "probability": 0.69384765625}, {"start": 2361.2, "end": 2362.68, "word": " subscriber", "probability": 0.427490234375}, {"start": 2362.68, "end": 2364.14, "word": " and", "probability": 0.447265625}, {"start": 2364.14, "end": 2364.62, "word": " he", "probability": 0.34765625}, {"start": 2364.62, "end": 2364.84, "word": " put", "probability": 0.440185546875}, {"start": 2364.84, "end": 2365.0, "word": " a", "probability": 0.59912109375}, {"start": 2365.0, "end": 2365.3, "word": " method", "probability": 0.94873046875}, {"start": 2365.3, "end": 2365.68, "word": " called", "probability": 0.7021484375}, {"start": 2365.68, "end": 2367.66, "word": " update", "probability": 0.7958984375}, {"start": 2367.66, "end": 2368.12, "word": " and", "probability": 0.56396484375}, {"start": 2368.12, "end": 2368.26, "word": " what", "probability": 0.52294921875}, {"start": 2368.26, "end": 2368.26, "word": " does", "probability": 0.5048828125}, {"start": 2368.26, "end": 2368.26, "word": " the", "probability": 0.50146484375}, {"start": 2368.26, "end": 2368.5, "word": " method", "probability": 0.69287109375}, {"start": 2368.5, "end": 2368.94, "word": " update", "probability": 0.96044921875}, {"start": 2368.94, "end": 2369.46, "word": " get", "probability": 0.376220703125}, {"start": 2369.46, "end": 2369.76, "word": " through", "probability": 0.521484375}, {"start": 2369.76, "end": 2370.02, "word": " this", "probability": 0.28466796875}, {"start": 2370.02, "end": 2370.54, "word": " parameter?", "probability": 0.845703125}, {"start": 2371.92, "end": 2372.48, "word": " for", "probability": 0.1483154296875}, {"start": 2372.48, "end": 2372.56, "word": " the", "probability": 0.59521484375}, {"start": 2372.56, "end": 2372.74, "word": " news", "probability": 0.76025390625}, {"start": 2372.74, "end": 2374.6, "word": " publisher,", "probability": 0.56640625}, {"start": 2374.8, "end": 2375.08, "word": " object", "probability": 0.4365234375}, {"start": 2375.08, "end": 2375.38, "word": " from", "probability": 0.59765625}, {"start": 2375.38, "end": 2375.62, "word": " whom?", "probability": 0.7060546875}], "temperature": 1.0}, {"id": 96, "seek": 240405, "start": 2376.59, "end": 2404.05, "text": " This means that this person will send himself, okay? Okay, this interface now, who wants to implement it? Anyone who wants to listen to a news publisher wants to implement it Which is the subscriber, make an implement for the subscriber Email, make an implement for him, okay? And of course, make an implement for whom? For the update method The update here did not allow him to receive the news directly It allowed him to receive who?", "tokens": [639, 1355, 300, 341, 954, 486, 2845, 796, 405, 75, 69, 11, 1392, 30, 1033, 11, 341, 9226, 586, 11, 567, 2738, 281, 4445, 309, 30, 14643, 567, 2738, 281, 2140, 281, 257, 2583, 25088, 2738, 281, 4445, 309, 3013, 307, 264, 26122, 11, 652, 364, 4445, 337, 264, 26122, 49482, 11, 652, 364, 4445, 337, 796, 11, 1392, 30, 400, 295, 1164, 11, 652, 364, 4445, 337, 7101, 30, 1171, 264, 5623, 3170, 440, 5623, 510, 630, 406, 2089, 796, 281, 4774, 264, 2583, 3838, 467, 4350, 796, 281, 4774, 567, 30], "avg_logprob": -0.5029920428357226, "compression_ratio": 1.9377777777777778, "no_speech_prob": 2.3245811462402344e-06, "words": [{"start": 2376.59, "end": 2377.07, "word": " This", "probability": 0.143798828125}, {"start": 2377.07, "end": 2377.07, "word": " means", "probability": 0.205322265625}, {"start": 2377.07, "end": 2377.17, "word": " that", "probability": 0.54052734375}, {"start": 2377.17, "end": 2377.35, "word": " this", "probability": 0.419189453125}, {"start": 2377.35, "end": 2377.51, "word": " person", "probability": 0.439453125}, {"start": 2377.51, "end": 2377.71, "word": " will", "probability": 0.5390625}, {"start": 2377.71, "end": 2377.91, "word": " send", "probability": 0.60791015625}, {"start": 2377.91, "end": 2378.31, "word": " himself,", "probability": 0.6282958984375}, {"start": 2378.65, "end": 2379.01, "word": " okay?", "probability": 0.211181640625}, {"start": 2380.03, "end": 2380.35, "word": " Okay,", "probability": 0.28857421875}, {"start": 2380.39, "end": 2380.57, "word": " this", "probability": 0.67822265625}, {"start": 2380.57, "end": 2381.17, "word": " interface", "probability": 0.74755859375}, {"start": 2381.17, "end": 2381.51, "word": " now,", "probability": 0.71337890625}, {"start": 2381.59, "end": 2381.77, "word": " who", "probability": 0.583984375}, {"start": 2381.77, "end": 2382.11, "word": " wants", "probability": 0.253173828125}, {"start": 2382.11, "end": 2382.21, "word": " to", "probability": 0.95654296875}, {"start": 2382.21, "end": 2382.75, "word": " implement", "probability": 0.70068359375}, {"start": 2382.75, "end": 2382.99, "word": " it?", "probability": 0.8271484375}, {"start": 2383.95, "end": 2384.43, "word": " Anyone", "probability": 0.66748046875}, {"start": 2384.43, "end": 2384.73, "word": " who", "probability": 0.75390625}, {"start": 2384.73, "end": 2384.85, "word": " wants", "probability": 0.78955078125}, {"start": 2384.85, "end": 2384.87, "word": " to", "probability": 0.96728515625}, {"start": 2384.87, "end": 2385.23, "word": " listen", "probability": 0.7822265625}, {"start": 2385.23, "end": 2385.55, "word": " to", "probability": 0.95458984375}, {"start": 2385.55, "end": 2385.85, "word": " a", "probability": 0.53662109375}, {"start": 2385.85, "end": 2386.07, "word": " news", "probability": 0.826171875}, {"start": 2386.07, "end": 2386.49, "word": " publisher", "probability": 0.86767578125}, {"start": 2386.49, "end": 2386.73, "word": " wants", "probability": 0.42333984375}, {"start": 2386.73, "end": 2386.79, "word": " to", "probability": 0.966796875}, {"start": 2386.79, "end": 2387.21, "word": " implement", "probability": 0.7451171875}, {"start": 2387.21, "end": 2387.73, "word": " it", "probability": 0.54736328125}, {"start": 2387.73, "end": 2388.17, "word": " Which", "probability": 0.158203125}, {"start": 2388.17, "end": 2388.27, "word": " is", "probability": 0.62939453125}, {"start": 2388.27, "end": 2388.49, "word": " the", "probability": 0.30810546875}, {"start": 2388.49, "end": 2389.29, "word": " subscriber,", "probability": 0.84521484375}, {"start": 2389.53, "end": 2389.69, "word": " make", "probability": 0.0943603515625}, {"start": 2389.69, "end": 2389.85, "word": " an", "probability": 0.77001953125}, {"start": 2389.85, "end": 2390.09, "word": " implement", "probability": 0.381591796875}, {"start": 2390.09, "end": 2390.35, "word": " for", "probability": 0.87744140625}, {"start": 2390.35, "end": 2390.45, "word": " the", "probability": 0.72265625}, {"start": 2390.45, "end": 2391.01, "word": " subscriber", "probability": 0.9287109375}, {"start": 2391.01, "end": 2392.55, "word": " Email,", "probability": 0.50439453125}, {"start": 2392.75, "end": 2392.87, "word": " make", "probability": 0.7080078125}, {"start": 2392.87, "end": 2393.03, "word": " an", "probability": 0.7958984375}, {"start": 2393.03, "end": 2393.45, "word": " implement", "probability": 0.84375}, {"start": 2393.45, "end": 2393.61, "word": " for", "probability": 0.81640625}, {"start": 2393.61, "end": 2394.07, "word": " him,", "probability": 0.7275390625}, {"start": 2394.19, "end": 2394.47, "word": " okay?", "probability": 0.634765625}, {"start": 2394.67, "end": 2394.79, "word": " And", "probability": 0.74365234375}, {"start": 2394.79, "end": 2395.25, "word": " of", "probability": 0.40673828125}, {"start": 2395.25, "end": 2395.25, "word": " course,", "probability": 0.95947265625}, {"start": 2395.33, "end": 2395.51, "word": " make", "probability": 0.51806640625}, {"start": 2395.51, "end": 2395.65, "word": " an", "probability": 0.87255859375}, {"start": 2395.65, "end": 2395.93, "word": " implement", "probability": 0.873046875}, {"start": 2395.93, "end": 2396.17, "word": " for", "probability": 0.9013671875}, {"start": 2396.17, "end": 2396.39, "word": " whom?", "probability": 0.880859375}, {"start": 2397.17, "end": 2397.41, "word": " For", "probability": 0.81494140625}, {"start": 2397.41, "end": 2397.53, "word": " the", "probability": 0.68896484375}, {"start": 2397.53, "end": 2398.01, "word": " update", "probability": 0.85009765625}, {"start": 2398.01, "end": 2398.83, "word": " method", "probability": 0.94140625}, {"start": 2398.83, "end": 2399.55, "word": " The", "probability": 0.560546875}, {"start": 2399.55, "end": 2399.95, "word": " update", "probability": 0.90478515625}, {"start": 2399.95, "end": 2400.15, "word": " here", "probability": 0.54052734375}, {"start": 2400.15, "end": 2400.29, "word": " did", "probability": 0.57177734375}, {"start": 2400.29, "end": 2400.37, "word": " not", "probability": 0.947265625}, {"start": 2400.37, "end": 2400.57, "word": " allow", "probability": 0.2022705078125}, {"start": 2400.57, "end": 2400.77, "word": " him", "probability": 0.6806640625}, {"start": 2400.77, "end": 2401.23, "word": " to", "probability": 0.90869140625}, {"start": 2401.23, "end": 2401.57, "word": " receive", "probability": 0.8486328125}, {"start": 2401.57, "end": 2401.73, "word": " the", "probability": 0.86279296875}, {"start": 2401.73, "end": 2401.97, "word": " news", "probability": 0.806640625}, {"start": 2401.97, "end": 2402.49, "word": " directly", "probability": 0.8466796875}, {"start": 2402.49, "end": 2402.99, "word": " It", "probability": 0.337158203125}, {"start": 2402.99, "end": 2403.21, "word": " allowed", "probability": 0.6259765625}, {"start": 2403.21, "end": 2403.35, "word": " him", "probability": 0.86181640625}, {"start": 2403.35, "end": 2403.41, "word": " to", "probability": 0.96826171875}, {"start": 2403.41, "end": 2403.69, "word": " receive", "probability": 0.91064453125}, {"start": 2403.69, "end": 2404.05, "word": " who?", "probability": 0.38037109375}], "temperature": 1.0}, {"id": 97, "seek": 242883, "start": 2405.11, "end": 2428.83, "text": " for all the news publishers and if I reach the news publisher, I get the news from him through this thing called get latest, the news I personally don't prefer to send the whole object, I prefer to send the data directly but this is how it works now Hadi will show us how the method update works because the method update will receive whom? the news publisher", "tokens": [337, 439, 264, 2583, 30421, 293, 498, 286, 2524, 264, 2583, 25088, 11, 286, 483, 264, 2583, 490, 796, 807, 341, 551, 1219, 483, 6792, 11, 264, 2583, 286, 5665, 500, 380, 4382, 281, 2845, 264, 1379, 2657, 11, 286, 4382, 281, 2845, 264, 1412, 3838, 457, 341, 307, 577, 309, 1985, 586, 18908, 486, 855, 505, 577, 264, 3170, 5623, 1985, 570, 264, 3170, 5623, 486, 4774, 7101, 30, 264, 2583, 25088], "avg_logprob": -0.5240709459459459, "compression_ratio": 1.8652849740932642, "no_speech_prob": 7.450580596923828e-06, "words": [{"start": 2405.11, "end": 2405.31, "word": " for", "probability": 0.1273193359375}, {"start": 2405.31, "end": 2405.39, "word": " all", "probability": 0.3935546875}, {"start": 2405.39, "end": 2405.39, "word": " the", "probability": 0.3408203125}, {"start": 2405.39, "end": 2405.55, "word": " news", "probability": 0.7216796875}, {"start": 2405.55, "end": 2405.99, "word": " publishers", "probability": 0.720703125}, {"start": 2405.99, "end": 2407.05, "word": " and", "probability": 0.432373046875}, {"start": 2407.05, "end": 2407.35, "word": " if", "probability": 0.6357421875}, {"start": 2407.35, "end": 2407.47, "word": " I", "probability": 0.59619140625}, {"start": 2407.47, "end": 2407.65, "word": " reach", "probability": 0.424072265625}, {"start": 2407.65, "end": 2407.85, "word": " the", "probability": 0.4716796875}, {"start": 2407.85, "end": 2408.07, "word": " news", "probability": 0.794921875}, {"start": 2408.07, "end": 2408.43, "word": " publisher,", "probability": 0.732421875}, {"start": 2408.51, "end": 2408.61, "word": " I", "probability": 0.93359375}, {"start": 2408.61, "end": 2408.77, "word": " get", "probability": 0.31787109375}, {"start": 2408.77, "end": 2409.69, "word": " the", "probability": 0.4755859375}, {"start": 2409.69, "end": 2409.89, "word": " news", "probability": 0.60595703125}, {"start": 2409.89, "end": 2409.97, "word": " from", "probability": 0.59619140625}, {"start": 2409.97, "end": 2409.97, "word": " him", "probability": 0.78271484375}, {"start": 2409.97, "end": 2410.29, "word": " through", "probability": 0.388671875}, {"start": 2410.29, "end": 2410.57, "word": " this", "probability": 0.3388671875}, {"start": 2410.57, "end": 2410.67, "word": " thing", "probability": 0.325439453125}, {"start": 2410.67, "end": 2410.99, "word": " called", "probability": 0.74365234375}, {"start": 2410.99, "end": 2411.19, "word": " get", "probability": 0.401611328125}, {"start": 2411.19, "end": 2411.67, "word": " latest,", "probability": 0.837890625}, {"start": 2412.71, "end": 2413.15, "word": " the", "probability": 0.4970703125}, {"start": 2413.15, "end": 2413.45, "word": " news", "probability": 0.8564453125}, {"start": 2413.45, "end": 2414.49, "word": " I", "probability": 0.1859130859375}, {"start": 2414.49, "end": 2414.91, "word": " personally", "probability": 0.80224609375}, {"start": 2414.91, "end": 2415.03, "word": " don't", "probability": 0.674560546875}, {"start": 2415.03, "end": 2415.33, "word": " prefer", "probability": 0.75927734375}, {"start": 2415.33, "end": 2415.47, "word": " to", "probability": 0.5625}, {"start": 2415.47, "end": 2415.57, "word": " send", "probability": 0.7724609375}, {"start": 2415.57, "end": 2415.73, "word": " the", "probability": 0.5029296875}, {"start": 2415.73, "end": 2415.73, "word": " whole", "probability": 0.57470703125}, {"start": 2415.73, "end": 2416.05, "word": " object,", "probability": 0.83544921875}, {"start": 2417.07, "end": 2417.39, "word": " I", "probability": 0.88525390625}, {"start": 2417.39, "end": 2417.75, "word": " prefer", "probability": 0.912109375}, {"start": 2417.75, "end": 2417.91, "word": " to", "probability": 0.916015625}, {"start": 2417.91, "end": 2418.11, "word": " send", "probability": 0.8310546875}, {"start": 2418.11, "end": 2418.71, "word": " the", "probability": 0.6552734375}, {"start": 2418.71, "end": 2419.77, "word": " data", "probability": 0.8837890625}, {"start": 2419.77, "end": 2420.25, "word": " directly", "probability": 0.82470703125}, {"start": 2420.25, "end": 2421.19, "word": " but", "probability": 0.334228515625}, {"start": 2421.19, "end": 2421.41, "word": " this", "probability": 0.53662109375}, {"start": 2421.41, "end": 2421.41, "word": " is", "probability": 0.8564453125}, {"start": 2421.41, "end": 2421.59, "word": " how", "probability": 0.8984375}, {"start": 2421.59, "end": 2421.61, "word": " it", "probability": 0.87890625}, {"start": 2421.61, "end": 2421.95, "word": " works", "probability": 0.7431640625}, {"start": 2421.95, "end": 2422.81, "word": " now", "probability": 0.40673828125}, {"start": 2422.81, "end": 2423.43, "word": " Hadi", "probability": 0.263427734375}, {"start": 2423.43, "end": 2423.53, "word": " will", "probability": 0.55419921875}, {"start": 2423.53, "end": 2423.73, "word": " show", "probability": 0.9384765625}, {"start": 2423.73, "end": 2423.93, "word": " us", "probability": 0.53271484375}, {"start": 2423.93, "end": 2424.09, "word": " how", "probability": 0.90478515625}, {"start": 2424.09, "end": 2424.49, "word": " the", "probability": 0.61083984375}, {"start": 2424.49, "end": 2424.71, "word": " method", "probability": 0.9248046875}, {"start": 2424.71, "end": 2425.21, "word": " update", "probability": 0.8642578125}, {"start": 2425.21, "end": 2425.21, "word": " works", "probability": 0.3701171875}, {"start": 2425.21, "end": 2425.95, "word": " because", "probability": 0.37353515625}, {"start": 2425.95, "end": 2426.05, "word": " the", "probability": 0.783203125}, {"start": 2426.05, "end": 2426.27, "word": " method", "probability": 0.962890625}, {"start": 2426.27, "end": 2426.63, "word": " update", "probability": 0.8759765625}, {"start": 2426.63, "end": 2426.89, "word": " will", "probability": 0.494140625}, {"start": 2426.89, "end": 2427.25, "word": " receive", "probability": 0.740234375}, {"start": 2427.25, "end": 2427.57, "word": " whom?", "probability": 0.50048828125}, {"start": 2427.95, "end": 2428.25, "word": " the", "probability": 0.482177734375}, {"start": 2428.25, "end": 2428.45, "word": " news", "probability": 0.85205078125}, {"start": 2428.45, "end": 2428.83, "word": " publisher", "probability": 0.8212890625}], "temperature": 1.0}, {"id": 98, "seek": 245779, "start": 2429.51, "end": 2457.79, "text": " So how does he get the news from him? He told him system.out.println go to the news publisher and execute the statement called get latest news Where is the get latest news? Here it is And who does this get latest news come from? Latest news, okay? Okay, these people who want to listen made an implementation for the interface But the step is that we have to register them from whom? From the news publisher So we went to the news publisher and did what?", "tokens": [407, 577, 775, 415, 483, 264, 2583, 490, 796, 30, 634, 1907, 796, 1185, 13, 346, 13, 14030, 75, 77, 352, 281, 264, 2583, 25088, 293, 14483, 264, 5629, 1219, 483, 6792, 2583, 2305, 307, 264, 483, 6792, 2583, 30, 1692, 309, 307, 400, 567, 775, 341, 483, 6792, 2583, 808, 490, 30, 7354, 377, 2583, 11, 1392, 30, 1033, 11, 613, 561, 567, 528, 281, 2140, 1027, 364, 11420, 337, 264, 9226, 583, 264, 1823, 307, 300, 321, 362, 281, 7280, 552, 490, 7101, 30, 3358, 264, 2583, 25088, 407, 321, 1437, 281, 264, 2583, 25088, 293, 630, 437, 30], "avg_logprob": -0.5042892092583227, "compression_ratio": 1.8421052631578947, "no_speech_prob": 0.0, "words": [{"start": 2429.51, "end": 2429.81, "word": " So", "probability": 0.1917724609375}, {"start": 2429.81, "end": 2430.07, "word": " how", "probability": 0.64111328125}, {"start": 2430.07, "end": 2430.17, "word": " does", "probability": 0.2037353515625}, {"start": 2430.17, "end": 2430.23, "word": " he", "probability": 0.58984375}, {"start": 2430.23, "end": 2430.37, "word": " get", "probability": 0.4072265625}, {"start": 2430.37, "end": 2430.51, "word": " the", "probability": 0.5439453125}, {"start": 2430.51, "end": 2430.69, "word": " news", "probability": 0.467529296875}, {"start": 2430.69, "end": 2430.87, "word": " from", "probability": 0.6708984375}, {"start": 2430.87, "end": 2431.07, "word": " him?", "probability": 0.6455078125}, {"start": 2431.33, "end": 2431.59, "word": " He", "probability": 0.60986328125}, {"start": 2431.59, "end": 2431.71, "word": " told", "probability": 0.11053466796875}, {"start": 2431.71, "end": 2431.83, "word": " him", "probability": 0.7919921875}, {"start": 2431.83, "end": 2432.21, "word": " system", "probability": 0.45166015625}, {"start": 2432.21, "end": 2432.73, "word": ".out", "probability": 0.9228515625}, {"start": 2432.73, "end": 2433.49, "word": ".println", "probability": 0.95947265625}, {"start": 2433.49, "end": 2433.77, "word": " go", "probability": 0.279052734375}, {"start": 2433.77, "end": 2433.91, "word": " to", "probability": 0.95361328125}, {"start": 2433.91, "end": 2434.03, "word": " the", "probability": 0.5546875}, {"start": 2434.03, "end": 2434.23, "word": " news", "probability": 0.78466796875}, {"start": 2434.23, "end": 2434.65, "word": " publisher", "probability": 0.861328125}, {"start": 2434.65, "end": 2434.87, "word": " and", "probability": 0.818359375}, {"start": 2434.87, "end": 2435.61, "word": " execute", "probability": 0.38818359375}, {"start": 2435.61, "end": 2435.81, "word": " the", "probability": 0.6220703125}, {"start": 2435.81, "end": 2436.01, "word": " statement", "probability": 0.302734375}, {"start": 2436.01, "end": 2436.33, "word": " called", "probability": 0.1494140625}, {"start": 2436.33, "end": 2436.65, "word": " get", "probability": 0.58203125}, {"start": 2436.65, "end": 2437.23, "word": " latest", "probability": 0.69091796875}, {"start": 2437.23, "end": 2438.75, "word": " news", "probability": 0.86474609375}, {"start": 2438.75, "end": 2439.03, "word": " Where", "probability": 0.328369140625}, {"start": 2439.03, "end": 2439.17, "word": " is", "probability": 0.490478515625}, {"start": 2439.17, "end": 2439.23, "word": " the", "probability": 0.5361328125}, {"start": 2439.23, "end": 2439.33, "word": " get", "probability": 0.72509765625}, {"start": 2439.33, "end": 2439.67, "word": " latest", "probability": 0.9375}, {"start": 2439.67, "end": 2440.09, "word": " news?", "probability": 0.86962890625}, {"start": 2440.63, "end": 2440.89, "word": " Here", "probability": 0.5673828125}, {"start": 2440.89, "end": 2440.95, "word": " it", "probability": 0.59326171875}, {"start": 2440.95, "end": 2441.15, "word": " is", "probability": 0.95068359375}, {"start": 2441.15, "end": 2441.71, "word": " And", "probability": 0.4609375}, {"start": 2441.71, "end": 2441.91, "word": " who", "probability": 0.344482421875}, {"start": 2441.91, "end": 2441.91, "word": " does", "probability": 0.3994140625}, {"start": 2441.91, "end": 2441.91, "word": " this", "probability": 0.62939453125}, {"start": 2441.91, "end": 2442.11, "word": " get", "probability": 0.8681640625}, {"start": 2442.11, "end": 2442.31, "word": " latest", "probability": 0.95361328125}, {"start": 2442.31, "end": 2442.55, "word": " news", "probability": 0.875}, {"start": 2442.55, "end": 2442.73, "word": " come", "probability": 0.3779296875}, {"start": 2442.73, "end": 2443.15, "word": " from?", "probability": 0.70703125}, {"start": 2444.39, "end": 2444.79, "word": " Latest", "probability": 0.6920166015625}, {"start": 2444.79, "end": 2445.13, "word": " news,", "probability": 0.71484375}, {"start": 2445.31, "end": 2445.73, "word": " okay?", "probability": 0.2254638671875}, {"start": 2446.51, "end": 2446.75, "word": " Okay,", "probability": 0.458740234375}, {"start": 2446.91, "end": 2447.19, "word": " these", "probability": 0.5712890625}, {"start": 2447.19, "end": 2449.09, "word": " people", "probability": 0.75439453125}, {"start": 2449.09, "end": 2449.21, "word": " who", "probability": 0.548828125}, {"start": 2449.21, "end": 2449.37, "word": " want", "probability": 0.646484375}, {"start": 2449.37, "end": 2449.41, "word": " to", "probability": 0.96923828125}, {"start": 2449.41, "end": 2449.79, "word": " listen", "probability": 0.75244140625}, {"start": 2449.79, "end": 2450.19, "word": " made", "probability": 0.22412109375}, {"start": 2450.19, "end": 2450.33, "word": " an", "probability": 0.67529296875}, {"start": 2450.33, "end": 2450.67, "word": " implementation", "probability": 0.50634765625}, {"start": 2450.67, "end": 2450.81, "word": " for", "probability": 0.57177734375}, {"start": 2450.81, "end": 2450.87, "word": " the", "probability": 0.8564453125}, {"start": 2450.87, "end": 2451.27, "word": " interface", "probability": 0.88720703125}, {"start": 2451.27, "end": 2451.41, "word": " But", "probability": 0.135986328125}, {"start": 2451.41, "end": 2451.55, "word": " the", "probability": 0.44140625}, {"start": 2451.55, "end": 2451.75, "word": " step", "probability": 0.57958984375}, {"start": 2451.75, "end": 2451.83, "word": " is", "probability": 0.490966796875}, {"start": 2451.83, "end": 2451.91, "word": " that", "probability": 0.7548828125}, {"start": 2451.91, "end": 2452.13, "word": " we", "probability": 0.50439453125}, {"start": 2452.13, "end": 2452.25, "word": " have", "probability": 0.467529296875}, {"start": 2452.25, "end": 2452.39, "word": " to", "probability": 0.97119140625}, {"start": 2452.39, "end": 2452.75, "word": " register", "probability": 0.64208984375}, {"start": 2452.75, "end": 2452.87, "word": " them", "probability": 0.8310546875}, {"start": 2452.87, "end": 2453.03, "word": " from", "probability": 0.480712890625}, {"start": 2453.03, "end": 2453.23, "word": " whom?", "probability": 0.76123046875}, {"start": 2454.29, "end": 2454.69, "word": " From", "probability": 0.7109375}, {"start": 2454.69, "end": 2454.81, "word": " the", "probability": 0.89111328125}, {"start": 2454.81, "end": 2454.97, "word": " news", "probability": 0.83203125}, {"start": 2454.97, "end": 2455.37, "word": " publisher", "probability": 0.87841796875}, {"start": 2455.37, "end": 2455.59, "word": " So", "probability": 0.72900390625}, {"start": 2455.59, "end": 2455.83, "word": " we", "probability": 0.65087890625}, {"start": 2455.83, "end": 2455.83, "word": " went", "probability": 0.71435546875}, {"start": 2455.83, "end": 2455.97, "word": " to", "probability": 0.890625}, {"start": 2455.97, "end": 2456.07, "word": " the", "probability": 0.88427734375}, {"start": 2456.07, "end": 2456.23, "word": " news", "probability": 0.787109375}, {"start": 2456.23, "end": 2457.17, "word": " publisher", "probability": 0.91064453125}, {"start": 2457.17, "end": 2457.29, "word": " and", "probability": 0.54150390625}, {"start": 2457.29, "end": 2457.49, "word": " did", "probability": 0.450439453125}, {"start": 2457.49, "end": 2457.79, "word": " what?", "probability": 0.7998046875}], "temperature": 1.0}, {"id": 99, "seek": 248602, "start": 2459.26, "end": 2486.02, "text": " Realist is a type of subscriber, type of interface and there is also a method called attach subscriber and detach subscriber which is like add listener and remove listener and then we have another method which is notify observers it has an arrow next to it, this arrow is supposed to be for each O in subscribers go and say O.update and what did it send here?", "tokens": [8467, 468, 307, 257, 2010, 295, 2090, 1142, 607, 11, 2010, 295, 9226, 293, 456, 307, 611, 257, 3170, 1219, 5085, 26122, 293, 43245, 26122, 597, 307, 411, 909, 31569, 293, 4159, 31569, 293, 550, 321, 362, 1071, 3170, 597, 307, 36560, 48090, 309, 575, 364, 11610, 958, 281, 309, 11, 341, 11610, 307, 3442, 281, 312, 337, 1184, 422, 294, 11092, 352, 293, 584, 422, 13, 1010, 17393, 293, 437, 630, 309, 2845, 510, 30], "avg_logprob": -0.555600677217756, "compression_ratio": 1.7560975609756098, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 2459.26, "end": 2459.82, "word": " Realist", "probability": 0.57635498046875}, {"start": 2459.82, "end": 2460.0, "word": " is", "probability": 0.2098388671875}, {"start": 2460.0, "end": 2460.12, "word": " a", "probability": 0.5791015625}, {"start": 2460.12, "end": 2460.28, "word": " type", "probability": 0.24951171875}, {"start": 2460.28, "end": 2461.18, "word": " of", "probability": 0.890625}, {"start": 2461.18, "end": 2461.84, "word": " subscriber,", "probability": 0.498291015625}, {"start": 2461.92, "end": 2462.02, "word": " type", "probability": 0.22265625}, {"start": 2462.02, "end": 2462.12, "word": " of", "probability": 0.96044921875}, {"start": 2462.12, "end": 2462.68, "word": " interface", "probability": 0.82568359375}, {"start": 2462.68, "end": 2463.26, "word": " and", "probability": 0.240234375}, {"start": 2463.26, "end": 2463.56, "word": " there", "probability": 0.62109375}, {"start": 2463.56, "end": 2463.56, "word": " is", "probability": 0.73681640625}, {"start": 2463.56, "end": 2463.56, "word": " also", "probability": 0.492431640625}, {"start": 2463.56, "end": 2463.76, "word": " a", "probability": 0.8359375}, {"start": 2463.76, "end": 2463.96, "word": " method", "probability": 0.939453125}, {"start": 2463.96, "end": 2464.26, "word": " called", "probability": 0.64306640625}, {"start": 2464.26, "end": 2464.78, "word": " attach", "probability": 0.60888671875}, {"start": 2464.78, "end": 2465.88, "word": " subscriber", "probability": 0.63916015625}, {"start": 2465.88, "end": 2466.2, "word": " and", "probability": 0.76611328125}, {"start": 2466.2, "end": 2466.42, "word": " detach", "probability": 0.66650390625}, {"start": 2466.42, "end": 2467.22, "word": " subscriber", "probability": 0.90283203125}, {"start": 2467.22, "end": 2467.78, "word": " which", "probability": 0.478759765625}, {"start": 2467.78, "end": 2467.9, "word": " is", "probability": 0.83935546875}, {"start": 2467.9, "end": 2468.06, "word": " like", "probability": 0.6826171875}, {"start": 2468.06, "end": 2468.5, "word": " add", "probability": 0.818359375}, {"start": 2468.5, "end": 2469.0, "word": " listener", "probability": 0.7158203125}, {"start": 2469.0, "end": 2469.28, "word": " and", "probability": 0.8427734375}, {"start": 2469.28, "end": 2469.56, "word": " remove", "probability": 0.9208984375}, {"start": 2469.56, "end": 2469.94, "word": " listener", "probability": 0.80419921875}, {"start": 2469.94, "end": 2470.86, "word": " and", "probability": 0.2476806640625}, {"start": 2470.86, "end": 2471.66, "word": " then", "probability": 0.5986328125}, {"start": 2471.66, "end": 2471.88, "word": " we", "probability": 0.54541015625}, {"start": 2471.88, "end": 2472.08, "word": " have", "probability": 0.9150390625}, {"start": 2472.08, "end": 2472.18, "word": " another", "probability": 0.5126953125}, {"start": 2472.18, "end": 2472.52, "word": " method", "probability": 0.95947265625}, {"start": 2472.52, "end": 2473.08, "word": " which", "probability": 0.4609375}, {"start": 2473.08, "end": 2473.74, "word": " is", "probability": 0.9287109375}, {"start": 2473.74, "end": 2474.08, "word": " notify", "probability": 0.8369140625}, {"start": 2474.08, "end": 2474.82, "word": " observers", "probability": 0.9326171875}, {"start": 2474.82, "end": 2475.82, "word": " it", "probability": 0.2227783203125}, {"start": 2475.82, "end": 2475.86, "word": " has", "probability": 0.7880859375}, {"start": 2475.86, "end": 2476.02, "word": " an", "probability": 0.1773681640625}, {"start": 2476.02, "end": 2476.2, "word": " arrow", "probability": 0.734375}, {"start": 2476.2, "end": 2476.46, "word": " next", "probability": 0.152099609375}, {"start": 2476.46, "end": 2476.54, "word": " to", "probability": 0.7548828125}, {"start": 2476.54, "end": 2476.54, "word": " it,", "probability": 0.884765625}, {"start": 2476.54, "end": 2476.66, "word": " this", "probability": 0.465087890625}, {"start": 2476.66, "end": 2476.94, "word": " arrow", "probability": 0.71630859375}, {"start": 2476.94, "end": 2477.0, "word": " is", "probability": 0.53369140625}, {"start": 2477.0, "end": 2477.18, "word": " supposed", "probability": 0.7509765625}, {"start": 2477.18, "end": 2477.38, "word": " to", "probability": 0.90576171875}, {"start": 2477.38, "end": 2478.94, "word": " be", "probability": 0.58837890625}, {"start": 2478.94, "end": 2478.94, "word": " for", "probability": 0.1844482421875}, {"start": 2478.94, "end": 2479.34, "word": " each", "probability": 0.529296875}, {"start": 2479.34, "end": 2479.96, "word": " O", "probability": 0.5009765625}, {"start": 2479.96, "end": 2480.64, "word": " in", "probability": 0.388671875}, {"start": 2480.64, "end": 2482.18, "word": " subscribers", "probability": 0.68798828125}, {"start": 2482.18, "end": 2483.04, "word": " go", "probability": 0.37939453125}, {"start": 2483.04, "end": 2483.2, "word": " and", "probability": 0.6806640625}, {"start": 2483.2, "end": 2483.34, "word": " say", "probability": 0.491943359375}, {"start": 2483.34, "end": 2483.72, "word": " O", "probability": 0.8095703125}, {"start": 2483.72, "end": 2485.2, "word": ".update", "probability": 0.7061360677083334}, {"start": 2485.2, "end": 2485.32, "word": " and", "probability": 0.54052734375}, {"start": 2485.32, "end": 2485.5, "word": " what", "probability": 0.87109375}, {"start": 2485.5, "end": 2485.56, "word": " did", "probability": 0.24658203125}, {"start": 2485.56, "end": 2485.56, "word": " it", "probability": 0.63037109375}, {"start": 2485.56, "end": 2485.74, "word": " send", "probability": 0.65380859375}, {"start": 2485.74, "end": 2486.02, "word": " here?", "probability": 0.68798828125}], "temperature": 1.0}, {"id": 100, "seek": 250134, "start": 2486.82, "end": 2501.34, "text": "this, this هدي عقيد عمين على news publisher هدا فهو هدا يستقبله ك news publisher وبيجيب منه الخبر تمام؟ هيك الفكرة وين الميزة؟ انه انا بضيف subscriber جديد", "tokens": [11176, 11, 341, 8032, 16254, 6225, 4587, 25708, 6225, 2304, 9957, 15844, 2583, 25088, 8032, 28259, 6156, 3224, 2407, 8032, 28259, 7251, 14851, 4587, 36150, 3224, 9122, 2583, 25088, 4032, 21292, 7435, 1829, 3555, 9154, 3224, 33962, 26890, 46811, 10943, 22807, 39896, 4117, 27188, 4117, 25720, 4032, 9957, 9673, 1829, 11622, 3660, 22807, 16472, 3224, 1975, 8315, 4724, 11242, 33911, 26122, 10874, 16254, 3215], "avg_logprob": -0.30240384615384613, "compression_ratio": 1.4337349397590362, "no_speech_prob": 2.2649765014648438e-06, "words": [{"start": 2486.82, "end": 2487.22, "word": "this,", "probability": 0.2486572265625}, {"start": 2487.32, "end": 2487.6, "word": " this", "probability": 0.8447265625}, {"start": 2487.6, "end": 2487.82, "word": " هدي", "probability": 0.2138671875}, {"start": 2487.82, "end": 2488.1, "word": " عقيد", "probability": 0.6768391927083334}, {"start": 2488.1, "end": 2488.48, "word": " عمين", "probability": 0.8004557291666666}, {"start": 2488.48, "end": 2489.28, "word": " على", "probability": 0.68115234375}, {"start": 2489.28, "end": 2489.66, "word": " news", "probability": 0.8486328125}, {"start": 2489.66, "end": 2490.32, "word": " publisher", "probability": 0.94580078125}, {"start": 2490.32, "end": 2490.64, "word": " هدا", "probability": 0.49169921875}, {"start": 2490.64, "end": 2491.04, "word": " فهو", "probability": 0.8673502604166666}, {"start": 2491.04, "end": 2491.22, "word": " هدا", "probability": 0.697265625}, {"start": 2491.22, "end": 2491.84, "word": " يستقبله", "probability": 0.9119140625}, {"start": 2491.84, "end": 2491.9, "word": " ك", "probability": 0.80029296875}, {"start": 2491.9, "end": 2492.12, "word": " news", "probability": 0.7705078125}, {"start": 2492.12, "end": 2492.52, "word": " publisher", "probability": 0.9365234375}, {"start": 2492.52, "end": 2492.9, "word": " وبيجيب", "probability": 0.91455078125}, {"start": 2492.9, "end": 2493.26, "word": " منه", "probability": 0.9775390625}, {"start": 2493.26, "end": 2494.18, "word": " الخبر", "probability": 0.979736328125}, {"start": 2494.18, "end": 2495.8, "word": " تمام؟", "probability": 0.6474609375}, {"start": 2495.8, "end": 2496.18, "word": " هيك", "probability": 0.865234375}, {"start": 2496.18, "end": 2496.58, "word": " الفكرة", "probability": 0.9705403645833334}, {"start": 2496.58, "end": 2496.84, "word": " وين", "probability": 0.9609375}, {"start": 2496.84, "end": 2498.42, "word": " الميزة؟", "probability": 0.81982421875}, {"start": 2498.42, "end": 2498.56, "word": " انه", "probability": 0.6533203125}, {"start": 2498.56, "end": 2498.7, "word": " انا", "probability": 0.773193359375}, {"start": 2498.7, "end": 2499.32, "word": " بضيف", "probability": 0.5390625}, {"start": 2499.32, "end": 2500.8, "word": " subscriber", "probability": 0.9853515625}, {"start": 2500.8, "end": 2501.34, "word": " جديد", "probability": 0.9759114583333334}], "temperature": 1.0}, {"id": 101, "seek": 251756, "start": 2502.16, "end": 2517.56, "text": " All I need to do is to create an implement for whom? For the interface. And then I add it to this list. Notice now that the association relationship is only between the news publisher and the interface. This one doesn't know anything about them. This is the basic idea.", "tokens": [1057, 286, 643, 281, 360, 307, 281, 1884, 364, 4445, 337, 7101, 30, 1171, 264, 9226, 13, 400, 550, 286, 909, 309, 281, 341, 1329, 13, 13428, 586, 300, 264, 14598, 2480, 307, 787, 1296, 264, 2583, 25088, 293, 264, 9226, 13, 639, 472, 1177, 380, 458, 1340, 466, 552, 13, 639, 307, 264, 3875, 1558, 13], "avg_logprob": -0.500538816739773, "compression_ratio": 1.5, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 2502.16, "end": 2502.42, "word": " All", "probability": 0.471923828125}, {"start": 2502.42, "end": 2502.62, "word": " I", "probability": 0.5625}, {"start": 2502.62, "end": 2502.88, "word": " need", "probability": 0.64990234375}, {"start": 2502.88, "end": 2503.04, "word": " to", "probability": 0.89892578125}, {"start": 2503.04, "end": 2503.2, "word": " do", "probability": 0.94189453125}, {"start": 2503.2, "end": 2503.44, "word": " is", "probability": 0.85693359375}, {"start": 2503.44, "end": 2503.5, "word": " to", "probability": 0.5439453125}, {"start": 2503.5, "end": 2503.68, "word": " create", "probability": 0.28173828125}, {"start": 2503.68, "end": 2503.82, "word": " an", "probability": 0.7421875}, {"start": 2503.82, "end": 2504.08, "word": " implement", "probability": 0.5380859375}, {"start": 2504.08, "end": 2504.34, "word": " for", "probability": 0.794921875}, {"start": 2504.34, "end": 2504.48, "word": " whom?", "probability": 0.347412109375}, {"start": 2504.78, "end": 2505.2, "word": " For", "probability": 0.6748046875}, {"start": 2505.2, "end": 2505.32, "word": " the", "probability": 0.8310546875}, {"start": 2505.32, "end": 2505.66, "word": " interface.", "probability": 0.8310546875}, {"start": 2506.46, "end": 2506.56, "word": " And", "probability": 0.420654296875}, {"start": 2506.56, "end": 2506.88, "word": " then", "probability": 0.65283203125}, {"start": 2506.88, "end": 2507.18, "word": " I", "probability": 0.78759765625}, {"start": 2507.18, "end": 2507.42, "word": " add", "probability": 0.7294921875}, {"start": 2507.42, "end": 2507.52, "word": " it", "probability": 0.395263671875}, {"start": 2507.52, "end": 2507.66, "word": " to", "probability": 0.783203125}, {"start": 2507.66, "end": 2507.98, "word": " this", "probability": 0.7099609375}, {"start": 2507.98, "end": 2508.32, "word": " list.", "probability": 0.9033203125}, {"start": 2508.74, "end": 2509.12, "word": " Notice", "probability": 0.56494140625}, {"start": 2509.12, "end": 2509.42, "word": " now", "probability": 0.302978515625}, {"start": 2509.42, "end": 2509.54, "word": " that", "probability": 0.537109375}, {"start": 2509.54, "end": 2509.88, "word": " the", "probability": 0.6494140625}, {"start": 2509.88, "end": 2510.26, "word": " association", "probability": 0.466064453125}, {"start": 2510.26, "end": 2510.26, "word": " relationship", "probability": 0.2379150390625}, {"start": 2510.26, "end": 2510.66, "word": " is", "probability": 0.31005859375}, {"start": 2510.66, "end": 2510.88, "word": " only", "probability": 0.80078125}, {"start": 2510.88, "end": 2511.42, "word": " between", "probability": 0.387939453125}, {"start": 2511.42, "end": 2511.58, "word": " the", "probability": 0.630859375}, {"start": 2511.58, "end": 2511.74, "word": " news", "probability": 0.5966796875}, {"start": 2511.74, "end": 2512.14, "word": " publisher", "probability": 0.84033203125}, {"start": 2512.14, "end": 2513.06, "word": " and", "probability": 0.92919921875}, {"start": 2513.06, "end": 2513.16, "word": " the", "probability": 0.8896484375}, {"start": 2513.16, "end": 2513.62, "word": " interface.", "probability": 0.8837890625}, {"start": 2513.74, "end": 2513.98, "word": " This", "probability": 0.4326171875}, {"start": 2513.98, "end": 2514.06, "word": " one", "probability": 0.3095703125}, {"start": 2514.06, "end": 2514.22, "word": " doesn't", "probability": 0.735107421875}, {"start": 2514.22, "end": 2514.5, "word": " know", "probability": 0.88720703125}, {"start": 2514.5, "end": 2514.84, "word": " anything", "probability": 0.8564453125}, {"start": 2514.84, "end": 2515.08, "word": " about", "probability": 0.861328125}, {"start": 2515.08, "end": 2515.36, "word": " them.", "probability": 0.1673583984375}, {"start": 2516.84, "end": 2517.04, "word": " This", "probability": 0.402587890625}, {"start": 2517.04, "end": 2517.14, "word": " is", "probability": 0.92333984375}, {"start": 2517.14, "end": 2517.24, "word": " the", "probability": 0.90087890625}, {"start": 2517.24, "end": 2517.24, "word": " basic", "probability": 0.37451171875}, {"start": 2517.24, "end": 2517.56, "word": " idea.", "probability": 0.82568359375}], "temperature": 1.0}, {"id": 102, "seek": 254787, "start": 2523.27, "end": 2547.87, "text": "because this explains the same example, but I will explain it as a book benefits of the observer pattern, minimal coupling, reduction of coupling, it is clear that there is no relation between the subject or the observable with the concrete observers the relation is only with the kind of interface can reuse subjects without reusing their observers and vice versa", "tokens": [17566, 341, 13948, 264, 912, 1365, 11, 457, 286, 486, 2903, 309, 382, 257, 1446, 5311, 295, 264, 27878, 5102, 11, 13206, 37447, 11, 11004, 295, 37447, 11, 309, 307, 1850, 300, 456, 307, 572, 9721, 1296, 264, 3983, 420, 264, 9951, 712, 365, 264, 9859, 48090, 264, 9721, 307, 787, 365, 264, 733, 295, 9226, 393, 26225, 13066, 1553, 319, 7981, 641, 48090, 293, 11964, 25650], "avg_logprob": -0.42647058472913857, "compression_ratio": 1.801980198019802, "no_speech_prob": 0.0, "words": [{"start": 2523.27, "end": 2523.57, "word": "because", "probability": 0.2257080078125}, {"start": 2523.57, "end": 2523.77, "word": " this", "probability": 0.638671875}, {"start": 2523.77, "end": 2524.13, "word": " explains", "probability": 0.43505859375}, {"start": 2524.13, "end": 2524.99, "word": " the", "probability": 0.64306640625}, {"start": 2524.99, "end": 2525.15, "word": " same", "probability": 0.7783203125}, {"start": 2525.15, "end": 2525.65, "word": " example,", "probability": 0.69970703125}, {"start": 2526.09, "end": 2526.29, "word": " but", "probability": 0.533203125}, {"start": 2526.29, "end": 2526.47, "word": " I", "probability": 0.282958984375}, {"start": 2526.47, "end": 2526.85, "word": " will", "probability": 0.412109375}, {"start": 2526.85, "end": 2526.99, "word": " explain", "probability": 0.76904296875}, {"start": 2526.99, "end": 2527.15, "word": " it", "probability": 0.8203125}, {"start": 2527.15, "end": 2527.19, "word": " as", "probability": 0.5380859375}, {"start": 2527.19, "end": 2527.25, "word": " a", "probability": 0.80126953125}, {"start": 2527.25, "end": 2527.59, "word": " book", "probability": 0.70947265625}, {"start": 2527.59, "end": 2528.55, "word": " benefits", "probability": 0.343994140625}, {"start": 2528.55, "end": 2528.75, "word": " of", "probability": 0.5341796875}, {"start": 2528.75, "end": 2528.81, "word": " the", "probability": 0.546875}, {"start": 2528.81, "end": 2529.17, "word": " observer", "probability": 0.83544921875}, {"start": 2529.17, "end": 2529.59, "word": " pattern,", "probability": 0.8994140625}, {"start": 2530.09, "end": 2530.41, "word": " minimal", "probability": 0.880859375}, {"start": 2530.41, "end": 2530.97, "word": " coupling,", "probability": 0.98193359375}, {"start": 2531.33, "end": 2531.63, "word": " reduction", "probability": 0.191650390625}, {"start": 2531.63, "end": 2531.89, "word": " of", "probability": 0.90185546875}, {"start": 2531.89, "end": 2532.33, "word": " coupling,", "probability": 0.83447265625}, {"start": 2532.43, "end": 2532.57, "word": " it", "probability": 0.454345703125}, {"start": 2532.57, "end": 2532.57, "word": " is", "probability": 0.71142578125}, {"start": 2532.57, "end": 2532.87, "word": " clear", "probability": 0.65283203125}, {"start": 2532.87, "end": 2533.69, "word": " that", "probability": 0.78857421875}, {"start": 2533.69, "end": 2533.95, "word": " there", "probability": 0.5439453125}, {"start": 2533.95, "end": 2534.19, "word": " is", "probability": 0.9130859375}, {"start": 2534.19, "end": 2534.19, "word": " no", "probability": 0.89013671875}, {"start": 2534.19, "end": 2534.59, "word": " relation", "probability": 0.478759765625}, {"start": 2534.59, "end": 2535.09, "word": " between", "probability": 0.87939453125}, {"start": 2535.09, "end": 2537.07, "word": " the", "probability": 0.705078125}, {"start": 2537.07, "end": 2537.53, "word": " subject", "probability": 0.89453125}, {"start": 2537.53, "end": 2537.83, "word": " or", "probability": 0.8193359375}, {"start": 2537.83, "end": 2537.97, "word": " the", "probability": 0.74462890625}, {"start": 2537.97, "end": 2538.65, "word": " observable", "probability": 0.876708984375}, {"start": 2538.65, "end": 2538.93, "word": " with", "probability": 0.69921875}, {"start": 2538.93, "end": 2539.09, "word": " the", "probability": 0.388671875}, {"start": 2539.09, "end": 2539.53, "word": " concrete", "probability": 0.89404296875}, {"start": 2539.53, "end": 2540.23, "word": " observers", "probability": 0.93359375}, {"start": 2540.23, "end": 2541.21, "word": " the", "probability": 0.2044677734375}, {"start": 2541.21, "end": 2541.49, "word": " relation", "probability": 0.6708984375}, {"start": 2541.49, "end": 2541.63, "word": " is", "probability": 0.68798828125}, {"start": 2541.63, "end": 2541.89, "word": " only", "probability": 0.8095703125}, {"start": 2541.89, "end": 2542.11, "word": " with", "probability": 0.7783203125}, {"start": 2542.11, "end": 2542.19, "word": " the", "probability": 0.62939453125}, {"start": 2542.19, "end": 2542.27, "word": " kind", "probability": 0.299560546875}, {"start": 2542.27, "end": 2542.37, "word": " of", "probability": 0.9736328125}, {"start": 2542.37, "end": 2542.91, "word": " interface", "probability": 0.837890625}, {"start": 2542.91, "end": 2543.79, "word": " can", "probability": 0.83154296875}, {"start": 2543.79, "end": 2544.33, "word": " reuse", "probability": 0.91064453125}, {"start": 2544.33, "end": 2545.15, "word": " subjects", "probability": 0.9150390625}, {"start": 2545.15, "end": 2545.55, "word": " without", "probability": 0.9033203125}, {"start": 2545.55, "end": 2546.15, "word": " reusing", "probability": 0.858642578125}, {"start": 2546.15, "end": 2546.41, "word": " their", "probability": 0.94921875}, {"start": 2546.41, "end": 2546.95, "word": " observers", "probability": 0.9267578125}, {"start": 2546.95, "end": 2547.21, "word": " and", "probability": 0.705078125}, {"start": 2547.21, "end": 2547.51, "word": " vice", "probability": 0.87744140625}, {"start": 2547.51, "end": 2547.87, "word": " versa", "probability": 0.78955078125}], "temperature": 1.0}, {"id": 103, "seek": 257330, "start": 2548.66, "end": 2573.3, "text": "ال subject نفسه ممكن تاخده هو و ال interface تبقى و تستخدمه في أي مكان بطل معتمد على مين؟ على ال observers صح ولا يا جماعة؟ observers can be added without modifying the subject ان احنا بنقدر نضيف observers جداد بدون ما نعدل ولا شيء على ال subject ال subject هو نفسه جولنا ال observable all subjects know its list of observers", "tokens": [6027, 3983, 8717, 36178, 3224, 3714, 43020, 6055, 47283, 3215, 3224, 31439, 4032, 2423, 9226, 6055, 3555, 4587, 7578, 4032, 6055, 14851, 9778, 40448, 3224, 8978, 36632, 3714, 41361, 4724, 9566, 1211, 3714, 34268, 2304, 3215, 15844, 3714, 9957, 22807, 15844, 2423, 48090, 20328, 5016, 49429, 35186, 10874, 15042, 27884, 22807, 48090, 393, 312, 3869, 1553, 42626, 264, 3983, 16472, 1975, 5016, 8315, 44945, 28543, 2288, 8717, 11242, 33911, 48090, 10874, 3215, 18513, 47525, 11536, 19446, 8717, 22488, 1211, 49429, 44049, 38207, 15844, 2423, 3983, 2423, 3983, 31439, 8717, 36178, 3224, 10874, 12610, 8315, 2423, 9951, 712, 439, 13066, 458, 1080, 1329, 295, 48090], "avg_logprob": -0.20446428344363257, "compression_ratio": 1.6777777777777778, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2548.66, "end": 2548.92, "word": "ال", "probability": 0.14599609375}, {"start": 2548.92, "end": 2549.18, "word": " subject", "probability": 0.448974609375}, {"start": 2549.18, "end": 2549.54, "word": " نفسه", "probability": 0.9765625}, {"start": 2549.54, "end": 2549.76, "word": " ممكن", "probability": 0.96435546875}, {"start": 2549.76, "end": 2550.38, "word": " تاخده", "probability": 0.967529296875}, {"start": 2550.38, "end": 2550.86, "word": " هو", "probability": 0.93798828125}, {"start": 2550.86, "end": 2551.0, "word": " و", "probability": 0.818359375}, {"start": 2551.0, "end": 2551.04, "word": " ال", "probability": 0.93212890625}, {"start": 2551.04, "end": 2551.46, "word": " interface", "probability": 0.91455078125}, {"start": 2551.46, "end": 2551.84, "word": " تبقى", "probability": 0.8065185546875}, {"start": 2551.84, "end": 2552.1, "word": " و", "probability": 0.8798828125}, {"start": 2552.1, "end": 2552.98, "word": " تستخدمه", "probability": 0.98994140625}, {"start": 2552.98, "end": 2553.08, "word": " في", "probability": 0.6904296875}, {"start": 2553.08, "end": 2553.2, "word": " أي", "probability": 0.71337890625}, {"start": 2553.2, "end": 2553.5, "word": " مكان", "probability": 0.99365234375}, {"start": 2553.5, "end": 2553.88, "word": " بطل", "probability": 0.7835286458333334}, {"start": 2553.88, "end": 2554.4, "word": " معتمد", "probability": 0.9207763671875}, {"start": 2554.4, "end": 2554.6, "word": " على", "probability": 0.7314453125}, {"start": 2554.6, "end": 2555.28, "word": " مين؟", "probability": 0.8636067708333334}, {"start": 2555.28, "end": 2555.66, "word": " على", "probability": 0.5791015625}, {"start": 2555.66, "end": 2555.76, "word": " ال", "probability": 0.748046875}, {"start": 2555.76, "end": 2556.24, "word": " observers", "probability": 0.92919921875}, {"start": 2556.24, "end": 2557.2, "word": " صح", "probability": 0.933837890625}, {"start": 2557.2, "end": 2557.4, "word": " ولا", "probability": 0.364501953125}, {"start": 2557.4, "end": 2557.54, "word": " يا", "probability": 0.7255859375}, {"start": 2557.54, "end": 2558.42, "word": " جماعة؟", "probability": 0.80712890625}, {"start": 2558.42, "end": 2559.08, "word": " observers", "probability": 0.67138671875}, {"start": 2559.08, "end": 2559.48, "word": " can", "probability": 0.97021484375}, {"start": 2559.48, "end": 2559.66, "word": " be", "probability": 0.9169921875}, {"start": 2559.66, "end": 2560.0, "word": " added", "probability": 0.89404296875}, {"start": 2560.0, "end": 2560.4, "word": " without", "probability": 0.931640625}, {"start": 2560.4, "end": 2560.9, "word": " modifying", "probability": 0.92529296875}, {"start": 2560.9, "end": 2561.16, "word": " the", "probability": 0.91259765625}, {"start": 2561.16, "end": 2561.56, "word": " subject", "probability": 0.97802734375}, {"start": 2561.56, "end": 2562.42, "word": " ان", "probability": 0.42431640625}, {"start": 2562.42, "end": 2562.7, "word": " احنا", "probability": 0.7857259114583334}, {"start": 2562.7, "end": 2563.06, "word": " بنقدر", "probability": 0.86279296875}, {"start": 2563.06, "end": 2563.3, "word": " نضيف", "probability": 0.9889322916666666}, {"start": 2563.3, "end": 2563.9, "word": " observers", "probability": 0.90576171875}, {"start": 2563.9, "end": 2564.5, "word": " جداد", "probability": 0.8204752604166666}, {"start": 2564.5, "end": 2565.14, "word": " بدون", "probability": 0.977294921875}, {"start": 2565.14, "end": 2565.24, "word": " ما", "probability": 0.288330078125}, {"start": 2565.24, "end": 2565.56, "word": " نعدل", "probability": 0.97119140625}, {"start": 2565.56, "end": 2565.72, "word": " ولا", "probability": 0.8759765625}, {"start": 2565.72, "end": 2566.06, "word": " شيء", "probability": 0.716064453125}, {"start": 2566.06, "end": 2566.24, "word": " على", "probability": 0.8623046875}, {"start": 2566.24, "end": 2566.54, "word": " ال", "probability": 0.92236328125}, {"start": 2566.54, "end": 2566.88, "word": " subject", "probability": 0.9951171875}, {"start": 2566.88, "end": 2567.46, "word": " ال", "probability": 0.896484375}, {"start": 2567.46, "end": 2567.82, "word": " subject", "probability": 0.99462890625}, {"start": 2567.82, "end": 2567.98, "word": " هو", "probability": 0.98095703125}, {"start": 2567.98, "end": 2568.32, "word": " نفسه", "probability": 0.9905598958333334}, {"start": 2568.32, "end": 2568.5, "word": " جولنا", "probability": 0.6031494140625}, {"start": 2568.5, "end": 2568.58, "word": " ال", "probability": 0.88525390625}, {"start": 2568.58, "end": 2569.16, "word": " observable", "probability": 0.8857421875}, {"start": 2569.16, "end": 2570.42, "word": " all", "probability": 0.77783203125}, {"start": 2570.42, "end": 2571.14, "word": " subjects", "probability": 0.44970703125}, {"start": 2571.14, "end": 2571.86, "word": " know", "probability": 0.83349609375}, {"start": 2571.86, "end": 2572.3, "word": " its", "probability": 0.7119140625}, {"start": 2572.3, "end": 2572.62, "word": " list", "probability": 0.90087890625}, {"start": 2572.62, "end": 2572.8, "word": " of", "probability": 0.9765625}, {"start": 2572.8, "end": 2573.3, "word": " observers", "probability": 0.91943359375}], "temperature": 1.0}, {"id": 104, "seek": 260040, "start": 2574.24, "end": 2600.4, "text": " It only has a list of observers, but it doesn't know anything about the type of the real observer, the concrete class The last point is that the subject does not need to know the concrete class of an observer Just that each observer implements the update interface, it doesn't know anything about the type of the observer That's it, you can read these things by yourselves, the last two slides Okay guys, God bless you", "tokens": [467, 787, 575, 257, 1329, 295, 48090, 11, 457, 309, 1177, 380, 458, 1340, 466, 264, 2010, 295, 264, 957, 27878, 11, 264, 9859, 1508, 440, 1036, 935, 307, 300, 264, 3983, 775, 406, 643, 281, 458, 264, 9859, 1508, 295, 364, 27878, 1449, 300, 1184, 27878, 704, 17988, 264, 5623, 9226, 11, 309, 1177, 380, 458, 1340, 466, 264, 2010, 295, 264, 27878, 663, 311, 309, 11, 291, 393, 1401, 613, 721, 538, 14791, 11, 264, 1036, 732, 9788, 1033, 1074, 11, 1265, 5227, 291], "avg_logprob": -0.4762931096142736, "compression_ratio": 1.8873873873873874, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 2574.2400000000002, "end": 2574.76, "word": " It", "probability": 0.18408203125}, {"start": 2574.76, "end": 2574.92, "word": " only", "probability": 0.1978759765625}, {"start": 2574.92, "end": 2575.18, "word": " has", "probability": 0.88427734375}, {"start": 2575.18, "end": 2575.64, "word": " a", "probability": 0.9150390625}, {"start": 2575.64, "end": 2575.86, "word": " list", "probability": 0.90478515625}, {"start": 2575.86, "end": 2576.02, "word": " of", "probability": 0.96826171875}, {"start": 2576.02, "end": 2576.54, "word": " observers,", "probability": 0.92578125}, {"start": 2576.76, "end": 2576.88, "word": " but", "probability": 0.7919921875}, {"start": 2576.88, "end": 2577.12, "word": " it", "probability": 0.5400390625}, {"start": 2577.12, "end": 2577.12, "word": " doesn't", "probability": 0.7369384765625}, {"start": 2577.12, "end": 2577.4, "word": " know", "probability": 0.84912109375}, {"start": 2577.4, "end": 2577.82, "word": " anything", "probability": 0.80810546875}, {"start": 2577.82, "end": 2578.22, "word": " about", "probability": 0.88623046875}, {"start": 2578.22, "end": 2578.48, "word": " the", "probability": 0.75341796875}, {"start": 2578.48, "end": 2578.7, "word": " type", "probability": 0.300537109375}, {"start": 2578.7, "end": 2578.8, "word": " of", "probability": 0.94384765625}, {"start": 2578.8, "end": 2578.86, "word": " the", "probability": 0.2646484375}, {"start": 2578.86, "end": 2579.62, "word": " real", "probability": 0.459716796875}, {"start": 2579.62, "end": 2579.7, "word": " observer,", "probability": 0.779296875}, {"start": 2579.78, "end": 2579.98, "word": " the", "probability": 0.35107421875}, {"start": 2579.98, "end": 2580.3, "word": " concrete", "probability": 0.740234375}, {"start": 2580.3, "end": 2580.76, "word": " class", "probability": 0.962890625}, {"start": 2580.76, "end": 2581.62, "word": " The", "probability": 0.1768798828125}, {"start": 2581.62, "end": 2581.76, "word": " last", "probability": 0.71923828125}, {"start": 2581.76, "end": 2582.22, "word": " point", "probability": 0.90576171875}, {"start": 2582.22, "end": 2582.48, "word": " is", "probability": 0.54248046875}, {"start": 2582.48, "end": 2582.88, "word": " that", "probability": 0.62158203125}, {"start": 2582.88, "end": 2583.02, "word": " the", "probability": 0.53466796875}, {"start": 2583.02, "end": 2583.34, "word": " subject", "probability": 0.9267578125}, {"start": 2583.34, "end": 2583.62, "word": " does", "probability": 0.70263671875}, {"start": 2583.62, "end": 2583.84, "word": " not", "probability": 0.94775390625}, {"start": 2583.84, "end": 2584.1, "word": " need", "probability": 0.89990234375}, {"start": 2584.1, "end": 2584.3, "word": " to", "probability": 0.96728515625}, {"start": 2584.3, "end": 2584.54, "word": " know", "probability": 0.8740234375}, {"start": 2584.54, "end": 2585.02, "word": " the", "probability": 0.859375}, {"start": 2585.02, "end": 2585.4, "word": " concrete", "probability": 0.880859375}, {"start": 2585.4, "end": 2585.8, "word": " class", "probability": 0.96923828125}, {"start": 2585.8, "end": 2585.98, "word": " of", "probability": 0.96923828125}, {"start": 2585.98, "end": 2586.12, "word": " an", "probability": 0.8447265625}, {"start": 2586.12, "end": 2586.54, "word": " observer", "probability": 0.84765625}, {"start": 2586.54, "end": 2587.36, "word": " Just", "probability": 0.356201171875}, {"start": 2587.36, "end": 2587.64, "word": " that", "probability": 0.92529296875}, {"start": 2587.64, "end": 2587.94, "word": " each", "probability": 0.94287109375}, {"start": 2587.94, "end": 2588.44, "word": " observer", "probability": 0.8603515625}, {"start": 2588.44, "end": 2588.96, "word": " implements", "probability": 0.90869140625}, {"start": 2588.96, "end": 2589.12, "word": " the", "probability": 0.7099609375}, {"start": 2589.12, "end": 2589.4, "word": " update", "probability": 0.89697265625}, {"start": 2589.4, "end": 2589.96, "word": " interface,", "probability": 0.8828125}, {"start": 2590.0, "end": 2590.16, "word": " it", "probability": 0.73193359375}, {"start": 2590.16, "end": 2590.2, "word": " doesn't", "probability": 0.856201171875}, {"start": 2590.2, "end": 2590.44, "word": " know", "probability": 0.87646484375}, {"start": 2590.44, "end": 2590.8, "word": " anything", "probability": 0.84326171875}, {"start": 2590.8, "end": 2591.06, "word": " about", "probability": 0.857421875}, {"start": 2591.06, "end": 2591.32, "word": " the", "probability": 0.259521484375}, {"start": 2591.32, "end": 2591.5, "word": " type", "probability": 0.65576171875}, {"start": 2591.5, "end": 2591.5, "word": " of", "probability": 0.63671875}, {"start": 2591.5, "end": 2592.0, "word": " the", "probability": 0.27197265625}, {"start": 2592.0, "end": 2592.28, "word": " observer", "probability": 0.71044921875}, {"start": 2592.28, "end": 2594.68, "word": " That's", "probability": 0.580322265625}, {"start": 2594.68, "end": 2594.9, "word": " it,", "probability": 0.6669921875}, {"start": 2595.52, "end": 2595.74, "word": " you", "probability": 0.5830078125}, {"start": 2595.74, "end": 2596.24, "word": " can", "probability": 0.52734375}, {"start": 2596.24, "end": 2596.44, "word": " read", "probability": 0.8359375}, {"start": 2596.44, "end": 2596.5, "word": " these", "probability": 0.297607421875}, {"start": 2596.5, "end": 2596.5, "word": " things", "probability": 0.455810546875}, {"start": 2596.5, "end": 2596.66, "word": " by", "probability": 0.425537109375}, {"start": 2596.66, "end": 2597.0, "word": " yourselves,", "probability": 0.425048828125}, {"start": 2597.26, "end": 2597.64, "word": " the", "probability": 0.1895751953125}, {"start": 2597.64, "end": 2597.76, "word": " last", "probability": 0.80126953125}, {"start": 2597.76, "end": 2598.2, "word": " two", "probability": 0.77685546875}, {"start": 2598.2, "end": 2598.2, "word": " slides", "probability": 0.966796875}, {"start": 2598.2, "end": 2599.06, "word": " Okay", "probability": 0.24853515625}, {"start": 2599.06, "end": 2599.48, "word": " guys,", "probability": 0.673828125}, {"start": 2599.94, "end": 2600.2, "word": " God", "probability": 0.2010498046875}, {"start": 2600.2, "end": 2600.32, "word": " bless", "probability": 0.87109375}, {"start": 2600.32, "end": 2600.4, "word": " you", "probability": 0.95068359375}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2601.09925, "duration_after_vad": 2473.9199999999937} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/mjw_XKwqANw_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/mjw_XKwqANw_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..448ef65c8e187042081dbf231aea3afdc5108051 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/mjw_XKwqANw_raw.srt @@ -0,0 +1,2832 @@ +1 +00:00:05,180 --> 00:00:08,320 +Ok, peace be upon you In the previous lecture, we + +2 +00:00:08,320 --> 00:00:11,180 +started with the observer pattern And we said that + +3 +00:00:11,180 --> 00:00:13,440 +the observer pattern is one of the behavioral + +4 +00:00:13,440 --> 00:00:16,480 +patterns And the goal of it is to improve + +5 +00:00:16,480 --> 00:00:18,880 +communication between objects How does it improve + +6 +00:00:18,880 --> 00:00:22,300 +communication between objects? Actually, we need + +7 +00:00:22,300 --> 00:00:26,120 +it a lot when I have a specific object that needs + +8 +00:00:26,120 --> 00:00:31,200 +to update or notify more than another objectOkay, + +9 +00:00:31,320 --> 00:00:37,720 +so this will notify the other objects And of + +10 +00:00:37,720 --> 00:00:39,360 +course, we know that when an object needs to + +11 +00:00:39,360 --> 00:00:41,180 +communicate with another object, it must have a + +12 +00:00:41,180 --> 00:00:43,340 +reference from this object What does the word + +13 +00:00:43,340 --> 00:00:44,780 +object mean to communicate with another object? + +14 +00:00:44,900 --> 00:00:47,180 +Actually, there should be a method here, and this + +15 +00:00:47,180 --> 00:00:51,320 +calls for the method that is here Okay, it is + +16 +00:00:51,320 --> 00:00:54,000 +clear that there is a problem here, that I have a + +17 +00:00:54,000 --> 00:00:57,860 +lot of dependenciesmeans that this object here has + +18 +00:00:57,860 --> 00:01:01,800 +three dependencies one, two, three which means + +19 +00:01:01,800 --> 00:01:04,960 +that these must be passed to this object either + +20 +00:01:04,960 --> 00:01:07,160 +through the constructor or through set methods + +21 +00:01:07,160 --> 00:01:10,160 +okay? Of course, we talked in the previous lecture + +22 +00:01:10,160 --> 00:01:12,360 +that any change in these objects will affect this + +23 +00:01:12,360 --> 00:01:16,980 +object any new object that you want to notify or + +24 +00:01:16,980 --> 00:01:19,960 +communicate with it you have to change many things + +25 +00:01:19,960 --> 00:01:24,020 +here We saw that you need to make a method to set + +26 +00:01:24,020 --> 00:01:28,840 +this object, make a reference inside it, and also + +27 +00:01:28,840 --> 00:01:33,400 +get the value in this object. Of course, we got + +28 +00:01:33,400 --> 00:01:37,460 +all of this by applying the observer pattern. The + +29 +00:01:37,460 --> 00:01:40,260 +main idea now is that instead of this being + +30 +00:01:40,260 --> 00:01:43,500 +dependent on four things, I say no, all of these + +31 +00:01:43,500 --> 00:01:45,420 +guys that want to register with me, let them come + +32 +00:01:45,420 --> 00:01:49,500 +from one type, from one type, okay? So let's + +33 +00:01:49,500 --> 00:01:52,930 +discuss what we did.Instead of all of them doing + +34 +00:01:52,930 --> 00:01:59,030 +this, it tells you to make one interface For + +35 +00:01:59,030 --> 00:02:06,170 +example, let's call it Observer And you make a + +36 +00:02:06,170 --> 00:02:09,670 +method called update or data received or whatever + +37 +00:02:09,670 --> 00:02:12,290 +Because all of them want to make an update or + +38 +00:02:12,290 --> 00:02:19,290 +implement to this interface As I told you before, + +39 +00:02:19,530 --> 00:02:22,790 +what is the purpose of the basic interface? To + +40 +00:02:22,790 --> 00:02:26,170 +unify the types of things that are of different + +41 +00:02:26,170 --> 00:02:28,850 +types There is no common thing between them, so + +42 +00:02:28,850 --> 00:02:31,410 +you want to unify the types, to make them of the + +43 +00:02:31,410 --> 00:02:32,410 +same type This is the purpose of the interface, + +44 +00:02:32,430 --> 00:02:34,690 +not to make it complicated or to show you the + +45 +00:02:34,690 --> 00:02:36,910 +methods you have to follow No, this is the purpose + +46 +00:02:36,910 --> 00:02:39,010 +of the basic interface that these are of different + +47 +00:02:39,010 --> 00:02:41,610 +types and we made them of the same type Why do we + +48 +00:02:41,610 --> 00:02:43,610 +make them of the same type? On the basis that we + +49 +00:02:43,610 --> 00:02:48,350 +make thisIt deals only with the type of the + +50 +00:02:48,350 --> 00:02:51,150 +interface So now we are going to create a list of + +51 +00:02:51,150 --> 00:02:56,190 +what? Of observers Anyone who wants to listen to + +52 +00:02:56,190 --> 00:03:01,250 +this component will register as what? As an + +53 +00:03:01,250 --> 00:03:03,850 +observer So this component will know only the type + +54 +00:03:03,850 --> 00:03:06,210 +of the observer and will send an observer to it As + +55 +00:03:06,210 --> 00:03:10,110 +we saw in the previous lecture In this lecture, we + +56 +00:03:10,110 --> 00:03:13,300 +will see another example It means that there is a + +57 +00:03:13,300 --> 00:03:16,640 +bit of a practical nature to the topic of the + +58 +00:03:16,640 --> 00:03:19,720 +observer in order to better understand it and how + +59 +00:03:19,720 --> 00:03:24,120 +to apply it. For example, imagine a chat program, + +60 +00:03:25,100 --> 00:03:28,060 +okay? I found a chat program whose idea is that I + +61 +00:03:28,060 --> 00:03:31,300 +have a user interface, okay? In the user + +62 +00:03:31,300 --> 00:03:34,080 +interface, of course, for example, here you write + +63 +00:03:34,080 --> 00:03:37,900 +the message, you say send, okay? Here are the + +64 +00:03:37,900 --> 00:03:42,130 +messages that you send or what? or the one you + +65 +00:03:42,130 --> 00:03:45,390 +receive it from, okay? So this is your user + +66 +00:03:45,390 --> 00:03:49,150 +interface. Because really, the user interface is + +67 +00:03:49,150 --> 00:03:51,070 +not ... I mean, we don't put all the code in this + +68 +00:03:51,070 --> 00:03:54,810 +class. I have a component that I call, for + +69 +00:03:54,810 --> 00:03:55,710 +example, a message handler. + +70 +00:04:00,710 --> 00:04:04,810 +For example, any message that comes from the + +71 +00:04:04,810 --> 00:04:05,190 +internet + +72 +00:04:08,940 --> 00:04:10,760 +I receive it from the network message handler and + +73 +00:04:10,760 --> 00:04:14,400 +send it to whom? To the UI, so that it shows up. + +74 +00:04:14,600 --> 00:04:17,260 +Any message that I want to send, I make a SYN, I + +75 +00:04:17,260 --> 00:04:19,060 +send it to the network message handler, and the + +76 +00:04:19,060 --> 00:04:21,300 +network message handler sends it to whom? To the + +77 +00:04:21,300 --> 00:04:23,140 +internet. So this is the function of communication + +78 +00:04:23,140 --> 00:04:27,780 +with the network, to send and receive messages. It + +79 +00:04:27,780 --> 00:04:28,940 +is also possible that in the application that we + +80 +00:04:28,940 --> 00:04:31,180 +follow, I have another component, for example + +81 +00:04:31,180 --> 00:04:34,860 +Logger.What is the use of the logger? Because any + +82 +00:04:34,860 --> 00:04:37,620 +message that comes to me will be stored in the + +83 +00:04:37,620 --> 00:04:42,400 +history or in the local database, okay? So now in + +84 +00:04:42,400 --> 00:04:44,400 +an example or a program like that, there are + +85 +00:04:44,400 --> 00:04:47,600 +dependencies. Who are they? Who do these two + +86 +00:04:47,600 --> 00:04:51,320 +depend on? The network message handler. Any + +87 +00:04:51,320 --> 00:04:52,940 +message that reaches this person, this person will + +88 +00:04:52,940 --> 00:04:58,030 +deliver it to these two, okay? Of course, since + +89 +00:04:58,030 --> 00:05:01,370 +these two are considered dependencies of the + +90 +00:05:01,370 --> 00:05:03,690 +network message handler, it means that this object + +91 +00:05:03,690 --> 00:05:07,210 +must have a reference to whom? To the UI, and a + +92 +00:05:07,210 --> 00:05:09,350 +reference to whom? To the logger, and this is + +93 +00:05:09,350 --> 00:05:11,710 +because when a message arrives, it goes to report + +94 +00:05:11,710 --> 00:05:16,730 +it to the UI and to the logger, okay? Now, we + +95 +00:05:16,730 --> 00:05:19,530 +assume in our program that these three parts are + +96 +00:05:19,530 --> 00:05:22,370 +present, but what do we do? We connect them + +97 +00:05:22,370 --> 00:05:24,930 +together, okay? Let's see a simple example + +98 +00:05:38,600 --> 00:05:44,500 +Now imagine that this is the main screen of the + +99 +00:05:44,500 --> 00:05:47,420 +chat, okay? Of course it's still an empty white + +100 +00:05:47,420 --> 00:05:51,860 +screen. The messages that come should be displayed + +101 +00:05:51,860 --> 00:05:55,440 +on this screen under each other, okay? But until + +102 +00:05:55,440 --> 00:05:58,220 +now, the messages that come are not being printed + +103 +00:05:58,220 --> 00:06:02,560 +anywhere. In the console, the messages are + +104 +00:06:02,560 --> 00:06:04,860 +supposed to appear where? In the chat UI. + +105 +00:06:05,200 --> 00:06:08,840 +Actually, this component is running. What does it + +106 +00:06:08,840 --> 00:06:12,780 +do? For example, it receives messages. But it + +107 +00:06:12,780 --> 00:06:16,020 +doesn't update to whom? To the UI or the logger. + +108 +00:06:16,780 --> 00:06:22,540 +Now, in my program, I have three main elements. + +109 +00:06:22,960 --> 00:06:26,130 +First, I have the messenger UI. This is a class. I + +110 +00:06:26,130 --> 00:06:29,030 +have a logger as a class and I have a third + +111 +00:06:29,030 --> 00:06:32,590 +component which is the main task which is network + +112 +00:06:32,590 --> 00:06:35,190 +message handler which is responsible for + +113 +00:06:35,190 --> 00:06:38,010 +communicating with the network and receiving + +114 +00:06:38,010 --> 00:06:41,230 +messages but notice now that each one is made in + +115 +00:06:41,230 --> 00:06:42,810 +its own object but there is no connection between + +116 +00:06:42,810 --> 00:06:46,870 +them this is an object and this is another object + +117 +00:06:46,870 --> 00:06:50,470 +and this is a third object okay let's look at them + +118 +00:06:50,470 --> 00:06:51,790 +the messenger UI + +119 +00:06:56,270 --> 00:07:00,570 +This is a normal class, JFrame, okay? It has a + +120 +00:07:00,570 --> 00:07:03,650 +chat area or text area, which is where you write + +121 +00:07:03,650 --> 00:07:07,170 +the messages that reach you, okay? And this is a + +122 +00:07:07,170 --> 00:07:09,750 +normal UI work, I didn't bother with it. Anyway, + +123 +00:07:09,870 --> 00:07:11,690 +in the end, I made a method, what is its name? + +124 +00:07:12,680 --> 00:07:16,040 +Update. What does it take? An object of type + +125 +00:07:16,040 --> 00:07:20,940 +message. This message is a class with two + +126 +00:07:20,940 --> 00:07:24,500 +attributes, sender and message. The message has a + +127 +00:07:24,500 --> 00:07:29,460 +text and has a sender. When this method update is + +128 +00:07:29,460 --> 00:07:32,080 +executed, the message is added to the chat area + +129 +00:07:32,080 --> 00:07:34,500 +and written in the status bar that the message has + +130 +00:07:34,500 --> 00:07:42,180 +been received. This is the existing UI. because I + +131 +00:07:42,180 --> 00:07:48,980 +have another component its name is logger this + +132 +00:07:48,980 --> 00:07:51,900 +logger is simple, its goal is that any message + +133 +00:07:51,900 --> 00:07:56,120 +that comes will be stored in the file only, okay? + +134 +00:07:56,860 --> 00:08:00,880 +so I also made a method called log this takes the + +135 +00:08:00,880 --> 00:08:04,140 +message and opens the file and writes on it and + +136 +00:08:04,140 --> 00:08:05,820 +writes the date in which the message was written + +137 +00:08:05,820 --> 00:08:10,860 +okay? and then I also made a method called update + +138 +00:08:12,090 --> 00:08:16,130 +Why did I make these methods? As we said, it's not + +139 +00:08:16,130 --> 00:08:18,110 +Hada that wants to send a message to Hada, it's + +140 +00:08:18,110 --> 00:08:19,670 +HadaCable that wants to send a message to the UI, + +141 +00:08:19,750 --> 00:08:20,650 +and HadaCable that wants to send a message to the + +142 +00:08:20,650 --> 00:08:23,790 +logger, and HadaCable that wants to send a message + +143 +00:08:23,790 --> 00:08:26,130 +to the update to report it, it's the word that I + +144 +00:08:26,130 --> 00:08:28,010 +report my object and communicate with another + +145 +00:08:28,010 --> 00:08:30,760 +object, I want to send a method that exists In the + +146 +00:08:30,760 --> 00:08:34,500 +second object So I made these methods so that this + +147 +00:08:34,500 --> 00:08:36,380 +gate, the network message hander needs to report + +148 +00:08:36,380 --> 00:08:39,220 +the UI and request its update It needs to report + +149 +00:08:39,220 --> 00:08:41,840 +the logger and request its update, okay? The + +150 +00:08:41,840 --> 00:08:45,560 +connection that we didn't do anything about it yet + +151 +00:08:45,560 --> 00:08:48,300 +Okay, the update of the logger actually receives + +152 +00:08:48,300 --> 00:08:50,280 +the message and from within the update it requests + +153 +00:08:50,280 --> 00:08:54,100 +the method Log, which is this method above it + +154 +00:08:54,100 --> 00:08:59,040 +directly, this is the method log, okay?We come to + +155 +00:08:59,040 --> 00:09:03,100 +Network Message Handler, which is the main + +156 +00:09:03,100 --> 00:09:10,650 +component that receives data and messagesOf course + +157 +00:09:10,650 --> 00:09:14,430 +it shows you the messages that are coming, but + +158 +00:09:14,430 --> 00:09:18,310 +there is no network, all these messages are fake, + +159 +00:09:18,750 --> 00:09:23,650 +but it shows as if they are messages Okay, here is + +160 +00:09:23,650 --> 00:09:25,690 +the code that receives the messages, look at it + +161 +00:09:25,690 --> 00:09:29,050 +with me, it says here while true because it does + +162 +00:09:29,050 --> 00:09:33,410 +not keep runninginfinite loop, I say get message, + +163 +00:09:33,490 --> 00:09:35,950 +read the message that came from the network, and + +164 +00:09:35,950 --> 00:09:39,430 +what is written here, print it for me on the + +165 +00:09:39,430 --> 00:09:41,730 +console. Now I'm not supposed to print it on the + +166 +00:09:41,730 --> 00:09:43,750 +console, I'm supposed to deliver the message to + +167 +00:09:43,750 --> 00:09:47,570 +the UI and deliver it to the logger. This is what + +168 +00:09:47,570 --> 00:09:51,290 +we are supposed to do. Ok, let's make the link, + +169 +00:09:51,430 --> 00:09:53,550 +did you find it? Each class is made an object by + +170 +00:09:53,550 --> 00:09:55,950 +itself, but we didn't link them together First + +171 +00:09:55,950 --> 00:09:58,850 +step, let's do it in the normal way, then we'll + +172 +00:09:58,850 --> 00:10:02,330 +apply it in the observer way First step, who needs + +173 +00:10:02,330 --> 00:10:05,970 +who? Ok, the network message handler has two + +174 +00:10:05,970 --> 00:10:09,670 +dependencies, the UI and the logger So this is who + +175 +00:10:09,670 --> 00:10:12,650 +communicates with whom? With the UI and the logger + +176 +00:10:12,650 --> 00:10:15,850 +So did you find it? These two are supposed to + +177 +00:10:15,850 --> 00:10:19,620 +reference from them to whom? For the Network + +178 +00:10:19,620 --> 00:10:21,580 +Message Handler Because from inside the Network + +179 +00:10:21,580 --> 00:10:23,200 +Message Handler, it wants to communicate with them + +180 +00:10:23,200 --> 00:10:26,480 +Ok, how do we pass them? We want to create a + +181 +00:10:26,480 --> 00:10:29,300 +Network Message Handler and work with them First + +182 +00:10:29,300 --> 00:10:33,160 +thing up here Where did I go to not get lost? + +183 +00:10:33,360 --> 00:10:36,700 +Where did I work? In the Message Handler, ok? I + +184 +00:10:36,700 --> 00:10:44,060 +created an attribute called Messenger UI + +185 +00:10:46,240 --> 00:10:59,580 +And I made another reference called Logar Ok + +186 +00:10:59,580 --> 00:11:03,180 +guys And of course I got their values from these + +187 +00:11:03,180 --> 00:11:06,120 +guys So I have to make them set Either you make + +188 +00:11:06,120 --> 00:11:10,380 +setter methods Yes, through the constructor When + +189 +00:11:10,380 --> 00:11:12,580 +you create a network message handler, send it to + +190 +00:11:12,580 --> 00:11:15,840 +whom? The UI and the logger So let's go to the + +191 +00:11:15,840 --> 00:11:18,020 +easiest way to do it, through the constructor + +192 +00:11:18,020 --> 00:11:35,260 +Okay, + +193 +00:11:35,860 --> 00:11:39,030 +it will initialize us The third step is that when + +194 +00:11:39,030 --> 00:11:43,090 +I receive a message, I get a reference from the + +195 +00:11:43,090 --> 00:11:49,430 +UI, I say UI.UPDATE method and I send him the + +196 +00:11:49,430 --> 00:11:52,770 +message. I use the method UPDATE to request it, + +197 +00:11:52,770 --> 00:11:56,990 +and it puts it in the chat, and then the logger + +198 +00:11:56,990 --> 00:12:03,090 +also UPDATE and it sends him the message. We have + +199 +00:12:03,090 --> 00:12:06,450 +finished our work in the network message handler. + +200 +00:12:07,140 --> 00:12:08,580 +But let's go to the link, did you find it in the + +201 +00:12:08,580 --> 00:12:12,260 +main? If you go to the main method, here I made + +202 +00:12:12,260 --> 00:12:15,280 +the UI and here I made the logger, but I found an + +203 +00:12:15,280 --> 00:12:17,940 +error here, why? Because this needs a constructor, + +204 +00:12:18,540 --> 00:12:23,840 +I need to send him the UI and + +205 +00:12:23,840 --> 00:12:25,360 +I need to send him the logger, that's it, we + +206 +00:12:25,360 --> 00:12:30,520 +linked, okay? Let's run it, okay? Did you find + +207 +00:12:30,520 --> 00:12:34,380 +what? These are the messages it has will be + +208 +00:12:34,380 --> 00:12:40,220 +displayed in the chat area and in the console The + +209 +00:12:40,220 --> 00:12:41,720 +important thing is that Hellgate made an update to + +210 +00:12:41,720 --> 00:12:45,520 +whom? To the chat area, to the UI Okay, what is + +211 +00:12:45,520 --> 00:12:47,980 +the problem with this design? Who can tell me what + +212 +00:12:47,980 --> 00:12:51,860 +is the problem with this design? Hellgate, if it + +213 +00:12:51,860 --> 00:12:53,280 +wants a new element, it will listen to it If it + +214 +00:12:53,280 --> 00:12:56,140 +wants to make a database component, the message + +215 +00:12:56,140 --> 00:12:59,890 +will be stored in the database Okay?What should I + +216 +00:12:59,890 --> 00:13:01,470 +do? I have to change a lot of things in the + +217 +00:13:01,470 --> 00:13:04,250 +messenger handler. First, I have to make a + +218 +00:13:04,250 --> 00:13:07,750 +reference in it. Then, I have to go to the + +219 +00:13:07,750 --> 00:13:10,310 +constructor and modify it. Then, I have to come to + +220 +00:13:10,310 --> 00:13:14,010 +the loop here and set an index in the new class. + +221 +00:13:14,910 --> 00:13:17,940 +Okay?So this is a problem because every time I + +222 +00:13:17,940 --> 00:13:20,900 +want to add a new component that listens to the + +223 +00:13:20,900 --> 00:13:22,620 +network message handler, I have to make a lot of + +224 +00:13:22,620 --> 00:13:25,040 +adjustments and make a reference and so on And + +225 +00:13:25,040 --> 00:13:27,960 +another thing, if I want to modify one of these in + +226 +00:13:27,960 --> 00:13:29,920 +the class itself, I will also have to modify the + +227 +00:13:29,920 --> 00:13:32,740 +network message handler I got the idea that we + +228 +00:13:32,740 --> 00:13:35,000 +will apply the observer pattern so that the + +229 +00:13:35,000 --> 00:13:38,300 +network message handler sends to any itemTo any + +230 +00:13:38,300 --> 00:13:41,580 +component without having to modify the message + +231 +00:13:41,580 --> 00:13:45,220 +handler network at all Even if you want to add new + +232 +00:13:45,220 --> 00:13:48,460 +elements that you listen to, you won't modify + +233 +00:13:48,460 --> 00:13:51,360 +them, you don't want to modify them at all The + +234 +00:13:51,360 --> 00:13:54,500 +idea, as I said, is that instead of dealing with + +235 +00:13:54,500 --> 00:13:57,730 +UI, logger and whateverWe want to make them all + +236 +00:13:57,730 --> 00:13:59,570 +the same type I'm going to bring the user to the + +237 +00:13:59,570 --> 00:14:01,650 +network, for example, to come and say, uncle, I + +238 +00:14:01,650 --> 00:14:03,590 +don't have a request, are you a UR or a logger or + +239 +00:14:03,590 --> 00:14:06,570 +I don't know what, I want to see you as a certain + +240 +00:14:06,570 --> 00:14:10,410 +type of interface, okay? And we come here in the + +241 +00:14:10,410 --> 00:14:12,370 +same class, above or below, wherever you want, + +242 +00:14:13,190 --> 00:14:16,450 +okay? And you introduce a type of interface + +243 +00:14:16,450 --> 00:14:21,670 +inside, okay? You say public interface, what do we + +244 +00:14:21,670 --> 00:14:23,450 +call it, for example, message listener + +245 +00:14:27,560 --> 00:14:35,520 +It has a method called public void update message + +246 +00:14:35,520 --> 00:14:40,180 +This is for anyone who wants to listen to the + +247 +00:14:40,180 --> 00:14:42,500 +network message handler must implement for this + +248 +00:14:42,500 --> 00:14:45,260 +interface and must implement for the method update + +249 +00:14:45,260 --> 00:14:46,660 +through which the message will be received + +250 +00:14:50,860 --> 00:14:54,080 +Instead of having a reference for the UI and a + +251 +00:14:54,080 --> 00:14:55,560 +reference for the language and a reference for I + +252 +00:14:55,560 --> 00:14:59,320 +don't know what, I replaced them all with a list, + +253 +00:15:00,260 --> 00:15:07,300 +one of a kind, message, listeners + +254 +00:15:18,560 --> 00:15:21,680 +Ok, this list, how do we add it? You have to make + +255 +00:15:21,680 --> 00:15:26,060 +methods, ok? Of course, I forgot, but we have to + +256 +00:15:26,060 --> 00:15:30,000 +adjust the thing, the constructor now Ok, there is + +257 +00:15:30,000 --> 00:15:36,460 +no need to send it UILogger Ok, we made this list, + +258 +00:15:36,700 --> 00:15:40,380 +but how do we add new listeners? We have to make + +259 +00:15:40,380 --> 00:15:45,820 +methods public void named addMessageListener + +260 +00:15:45,820 --> 00:15:47,400 +takes message + +261 +00:15:51,440 --> 00:15:59,360 +Listener l and then we say if the listeners does + +262 +00:15:59,360 --> 00:16:05,340 +not contain the letter l go to the listener and + +263 +00:16:05,340 --> 00:16:11,020 +type add l and as we did method add we can do + +264 +00:16:11,020 --> 00:16:17,160 +method public void remove message listener + +265 +00:16:23,680 --> 00:16:28,860 +and we say if listeners contains + +266 +00:16:28,860 --> 00:16:39,040 +l go to listeners and say remove + +267 +00:16:39,040 --> 00:16:42,040 +ok, + +268 +00:16:42,180 --> 00:16:44,860 +it seems that we got rid of the references to the + +269 +00:16:44,860 --> 00:16:48,860 +UI and the message and the logar in the list of + +270 +00:16:48,860 --> 00:16:52,530 +listenersWe got rid of the set method or the + +271 +00:16:52,530 --> 00:16:55,490 +constructor that sends references to it The method + +272 +00:16:55,490 --> 00:16:59,350 +is called addMessageListener, okay? We have a step + +273 +00:16:59,350 --> 00:17:02,130 +left now if the message arrives What should we do + +274 +00:17:02,130 --> 00:17:05,790 +with it? Of course we can say ui.update and logar + +275 +00:17:05,790 --> 00:17:09,410 +.update But no, I want to make a loop on all the + +276 +00:17:09,410 --> 00:17:14,990 +listeners that I have For each message, listener l + +277 +00:17:14,990 --> 00:17:21,650 +is present in listeners Say l.update and send him + +278 +00:17:21,650 --> 00:17:28,230 +the message And that's it Now, after these + +279 +00:17:28,230 --> 00:17:29,570 +modifications, the network message handler should + +280 +00:17:29,570 --> 00:17:34,010 +not be tried at all Ok, let's come to the main + +281 +00:17:34,010 --> 00:17:38,270 +method Did you notice that the constructor is + +282 +00:17:38,270 --> 00:17:41,670 +gone? It's gone, that's it Did you notice? We want + +283 +00:17:41,670 --> 00:17:44,990 +these two, the UI and the logger, to listen to + +284 +00:17:44,990 --> 00:17:47,310 +whom? To the network message handler They don't + +285 +00:17:47,310 --> 00:17:49,930 +want to listen to the modifications done to it + +286 +00:17:49,930 --> 00:17:52,750 +Just like you want to listen to the event that + +287 +00:17:52,750 --> 00:17:54,940 +happens on the button What did you do on the + +288 +00:17:54,940 --> 00:17:56,320 +button? You went to the button and said + +289 +00:17:56,320 --> 00:18:00,760 +addEactionEvent, right? You will find the same + +290 +00:18:00,760 --> 00:18:05,300 +thing, you go to the H and say addMessageListener + +291 +00:18:05,300 --> 00:18:08,000 +You will find that whoever I want to add the + +292 +00:18:08,000 --> 00:18:12,440 +listener to, I want to tell him to add the UI And + +293 +00:18:12,440 --> 00:18:18,280 +I can addH.addMessageListener and addLogar, but I + +294 +00:18:18,280 --> 00:18:20,980 +found a mistake in it It says that Logar and UI + +295 +00:18:20,980 --> 00:18:24,880 +are not a type of Message Listener So you want to + +296 +00:18:24,880 --> 00:18:27,440 +make them a type of Message Listener So you go to + +297 +00:18:27,440 --> 00:18:31,340 +the messenger UI And you tell it to implement + +298 +00:18:31,340 --> 00:18:35,760 +Message + +299 +00:18:35,760 --> 00:18:42,900 +Message + +300 +00:18:42,900 --> 00:18:48,950 +ListenerBy import, as soon as you do import, it + +301 +00:18:48,950 --> 00:18:52,110 +will ask you to do implement to give it an update. + +302 +00:18:52,210 --> 00:18:53,770 +I did it with the same name, so that's why it + +303 +00:18:53,770 --> 00:18:56,750 +didn't ask me to do import. Okay, so did you see + +304 +00:18:56,750 --> 00:19:00,130 +that it's ready? And also the logger, since it + +305 +00:19:00,130 --> 00:19:01,110 +also wants to listen, + +306 +00:19:16,050 --> 00:19:18,490 +and this is the method update that creates the + +307 +00:19:18,490 --> 00:19:24,250 +method log let's go back to the main okay, the + +308 +00:19:24,250 --> 00:19:26,790 +error is gone, we added them to calisthenars and + +309 +00:19:26,790 --> 00:19:31,330 +run it because automatically when these are + +310 +00:19:31,330 --> 00:19:34,830 +doubled now okay, where are they doubled? stored + +311 +00:19:34,830 --> 00:19:39,190 +stored + +312 +00:19:39,190 --> 00:19:44,000 +as objects where? in this list right? As soon as + +313 +00:19:44,000 --> 00:19:47,080 +you receive a message, it will create a loop and + +314 +00:19:47,080 --> 00:19:57,880 +execute the update Because the + +315 +00:19:57,880 --> 00:20:01,000 +idea + +316 +00:20:01,000 --> 00:20:03,960 +is that you want to add a new component that + +317 +00:20:03,960 --> 00:20:09,740 +listens to it I want to add a message to the new + +318 +00:20:09,740 --> 00:20:12,860 +scenario What do you have to do? Either you go and + +319 +00:20:12,860 --> 00:20:16,520 +create a new class For example, I tell him to + +320 +00:20:16,520 --> 00:20:21,780 +create a class called DBComponent For example, + +321 +00:20:22,140 --> 00:20:24,780 +this is what is stored in the database And we tell + +322 +00:20:24,780 --> 00:20:28,600 +him that this needs to implement a message + +323 +00:20:28,600 --> 00:20:34,140 +listener And as soon as you implement this + +324 +00:20:36,920 --> 00:20:38,720 +you need to do an implement update, you need to + +325 +00:20:38,720 --> 00:20:41,040 +tell it what to do in the message it received + +326 +00:20:41,040 --> 00:20:47,860 +system.out I + +327 +00:20:47,860 --> 00:20:57,080 +need to tell it storing message.getmessage in db I + +328 +00:20:57,080 --> 00:21:00,980 +save it for example in a database and I go to main + +329 +00:21:00,980 --> 00:21:04,380 +method and extract object from main from db + +330 +00:21:06,310 --> 00:21:14,710 +component db component then + +331 +00:21:14,710 --> 00:21:20,150 +I say h.add message listener and I add the db + +332 +00:21:20,150 --> 00:21:24,910 +component I created a new element that listens to + +333 +00:21:24,910 --> 00:21:30,660 +events and if I run every time you get a message + +334 +00:21:30,660 --> 00:21:34,600 +you will find storing by in db storing nothing in + +335 +00:21:34,600 --> 00:21:38,100 +db storing means that he works and what does he + +336 +00:21:38,100 --> 00:21:44,020 +do, he gets the results and also what can we do if + +337 +00:21:44,020 --> 00:21:46,540 +we don't want to make a class outside we can go to + +338 +00:21:46,540 --> 00:21:50,960 +the h and say add message listener and make + +339 +00:21:50,960 --> 00:21:56,040 +anonymous object of type new message + +340 +00:21:57,330 --> 00:22:01,890 +Listener, in the same way you used to do in + +341 +00:22:01,890 --> 00:22:04,350 +JavaFX, + +342 +00:22:04,950 --> 00:22:07,370 +action event with lambda expression + +343 +00:22:11,370 --> 00:22:14,650 +I wasn't doing an action event, okay? Actually, + +344 +00:22:15,230 --> 00:22:18,170 +the idea of ​​the button is like the idea of ​​the + +345 +00:22:18,170 --> 00:22:19,990 +network message hander The button comes and tells + +346 +00:22:19,990 --> 00:22:22,630 +you that I am delivering an invitation to whom + +347 +00:22:22,630 --> 00:22:25,990 +listens to me The frame X or the screen Y or + +348 +00:22:25,990 --> 00:22:28,030 +whatever that wants to register with me to the + +349 +00:22:28,030 --> 00:22:31,810 +button and hear from me must be the kind of action + +350 +00:22:31,810 --> 00:22:35,490 +event Not in what is called an action event So you + +351 +00:22:35,490 --> 00:22:37,550 +go to the button and you create inside it an + +352 +00:22:37,550 --> 00:22:39,930 +object of the action event type Who is going to + +353 +00:22:39,930 --> 00:22:43,270 +listen to the button? The anonymous object that + +354 +00:22:43,270 --> 00:22:46,490 +you created As soon as the button makes a change + +355 +00:22:46,490 --> 00:22:49,670 +to itself and makes a loop on the list that it has + +356 +00:22:49,670 --> 00:22:51,710 +Which is all from what type? What is the list that + +357 +00:22:51,710 --> 00:22:54,230 +the button has? From the action event type and it + +358 +00:22:54,230 --> 00:22:58,550 +creates a value called What is it called? Handle + +359 +00:22:58,550 --> 00:23:03,910 +Right? Okay? The idea is the same This ad message + +360 +00:23:03,910 --> 00:23:06,290 +listener creates a loop on all the message + +361 +00:23:06,290 --> 00:23:10,230 +listeners it has and calls this to update So I + +362 +00:23:10,230 --> 00:23:14,390 +have four things registered now listening to the + +363 +00:23:14,390 --> 00:23:17,110 +network message listener which is the UI, the + +364 +00:23:17,110 --> 00:23:20,110 +logger, the DB component and anonymous object + +365 +00:23:20,110 --> 00:23:24,890 +Okay? Here you put the code that wants to be + +366 +00:23:24,890 --> 00:23:25,230 +executed + +367 +00:23:28,530 --> 00:23:32,450 +So what you see in the pattern and in the UI is an + +368 +00:23:32,450 --> 00:23:35,730 +application for what? For the observer pattern. + +369 +00:23:43,090 --> 00:23:47,610 +Is this example clear? Let's go to the slides. + +370 +00:23:47,890 --> 00:23:52,330 +This is the first slide we read. When do we use + +371 +00:23:52,330 --> 00:23:54,530 +the observer pattern? These are the cases where we + +372 +00:23:54,530 --> 00:23:57,980 +use the observer pattern.والحاجة one and + +373 +00:23:57,980 --> 00:24:01,360 +abstraction has two aspects one dependent on the + +374 +00:24:01,360 --> 00:24:04,580 +other encapsulating these aspects in separate + +375 +00:24:04,580 --> 00:24:08,120 +objects lets you vary and reuse them independently + +376 +00:24:08,120 --> 00:24:11,240 +يعني مش شرط العلاقة تكون one to many ممكن يكون + +377 +00:24:11,240 --> 00:24:15,540 +عندك two classes معتمدين على بعض في علاقة + +378 +00:24:15,540 --> 00:24:20,080 +association موجودة بينهمbecause by default or in + +379 +00:24:20,080 --> 00:24:23,940 +the normal situation this is an association + +380 +00:24:23,940 --> 00:24:25,040 +relationship which means that they want to get a + +381 +00:24:25,040 --> 00:24:28,840 +proof for example here this is dependency so you + +382 +00:24:28,840 --> 00:24:30,540 +can send it through set method or through + +383 +00:24:30,540 --> 00:24:34,440 +constructor but of course now they are dependent + +384 +00:24:34,440 --> 00:24:37,120 +on each other which means that you can take this + +385 +00:24:37,120 --> 00:24:40,260 +in a new class application without taking this + +386 +00:24:40,260 --> 00:24:44,800 +with it no you can't right or no? this is A and + +387 +00:24:44,800 --> 00:24:48,260 +this is BNow it is clear that there is an A + +388 +00:24:48,260 --> 00:24:52,120 +dependency, which is B. If you take A for example + +389 +00:24:52,120 --> 00:24:56,480 +in a new program and you don't take B, there will + +390 +00:24:56,480 --> 00:24:58,940 +be an error. It will ask you what is this B? Right + +391 +00:24:58,940 --> 00:25:04,420 +or wrong? Are you with me or not? So now you can + +392 +00:25:04,420 --> 00:25:06,640 +also in a situation like if you want A to be + +393 +00:25:06,640 --> 00:25:11,340 +reusable 100% is to use the observer pattern how? + +394 +00:25:12,180 --> 00:25:15,200 +instead of using B directly it creates an + +395 +00:25:15,200 --> 00:25:19,140 +interface for whom in A? it's called A listener + +396 +00:25:19,140 --> 00:25:22,800 +and A uses the interface and this makes an + +397 +00:25:22,800 --> 00:25:25,560 +implement for the interface did you see how I made + +398 +00:25:25,560 --> 00:25:27,080 +the link between them? + +399 +00:25:32,960 --> 00:25:36,480 +instead of the relationship being direct the + +400 +00:25:36,480 --> 00:25:37,620 +relationship became through what? + +401 +00:25:40,230 --> 00:25:43,790 +by means of an interface. Someone might ask, what + +402 +00:25:43,790 --> 00:25:47,130 +is it? Can you take the A without the B? Yes, but + +403 +00:25:47,130 --> 00:25:49,490 +with whom will you take the A? With your + +404 +00:25:49,490 --> 00:25:53,510 +interface. The A does not know anything about B. + +405 +00:25:53,570 --> 00:25:55,870 +This is the idea here. The A knows about A for + +406 +00:25:55,870 --> 00:25:59,230 +now. Like the idea of network message handler, it + +407 +00:25:59,230 --> 00:26:02,670 +does not know anything about UI, logger or DB + +408 +00:26:02,670 --> 00:26:05,570 +component. It only knows about whom? about the + +409 +00:26:05,570 --> 00:26:09,950 +message listener, okay? So this is reusable 100% + +410 +00:26:09,950 --> 00:26:14,210 +and you can use it in any other application So if + +411 +00:26:14,210 --> 00:26:16,550 +you have a relationship between two objects and + +412 +00:26:16,550 --> 00:26:18,590 +you want them to be completely separate and + +413 +00:26:18,590 --> 00:26:20,970 +reusable each one of them, you can use the + +414 +00:26:20,970 --> 00:26:24,690 +observer pattern in this way In another case, when + +415 +00:26:24,690 --> 00:26:27,350 +a change to one object requires changing others + +416 +00:26:28,140 --> 00:26:30,780 +means when the relationship is one to many a + +417 +00:26:30,780 --> 00:26:33,560 +factor that I want to change based on that I want + +418 +00:26:33,560 --> 00:26:39,540 +to change many things of + +419 +00:26:39,540 --> 00:26:41,840 +course this means that this has many dependencies + +420 +00:26:41,840 --> 00:26:45,240 +which means that any change in one of these or any + +421 +00:26:45,240 --> 00:26:49,620 +addition to a new dependency will change to this + +422 +00:26:49,620 --> 00:26:52,200 +one so in this case which is the same scenario + +423 +00:26:52,200 --> 00:26:55,100 +that we explained before it is better to use the + +424 +00:26:55,100 --> 00:26:58,680 +observer patternIn order to avoid changing + +425 +00:26:58,680 --> 00:27:03,700 +anything in this object When + +426 +00:27:03,700 --> 00:27:06,160 +an object should be able to notify other objects + +427 +00:27:06,160 --> 00:27:09,380 +without making assumptions about those objects + +428 +00:27:09,380 --> 00:27:11,660 +What is this sentence? When an object wants to + +429 +00:27:11,660 --> 00:27:13,980 +notify other objects without having to know + +430 +00:27:13,980 --> 00:27:18,080 +anything about them And this is the idea of the + +431 +00:27:18,080 --> 00:27:20,940 +observer pattern That it does not want to know the + +432 +00:27:20,940 --> 00:27:24,060 +types of people listening to it It just wants to + +433 +00:27:24,060 --> 00:27:25,680 +know the type of interface + +434 +00:27:28,520 --> 00:27:32,680 +Okay, in these cases where we use the Observer + +435 +00:27:32,680 --> 00:27:37,100 +Pattern, let's see the UML diagram of the Observer + +436 +00:27:37,100 --> 00:27:42,080 +Pattern. The UML diagram is a bit confusing, but I + +437 +00:27:42,080 --> 00:27:45,000 +brought it because it is the official UML diagram + +438 +00:27:45,000 --> 00:27:47,700 +that you find in the books of the Observer + +439 +00:27:47,700 --> 00:27:50,000 +Pattern. Let's talk about it and see what is the + +440 +00:27:50,000 --> 00:27:53,480 +relationship between the UML diagram and the + +441 +00:27:53,480 --> 00:27:55,500 +examples that we presented, and there are also + +442 +00:27:55,500 --> 00:28:00,120 +errors that need to be corrected. Okay?The first + +443 +00:28:00,120 --> 00:28:02,900 +thing is the main component that communicates to + +444 +00:28:02,900 --> 00:28:04,300 +the other elements such as network, message + +445 +00:28:04,300 --> 00:28:07,280 +handler, WIM which is represented here. This class + +446 +00:28:07,280 --> 00:28:10,620 +is called what? Observable. It is distinguished + +447 +00:28:10,620 --> 00:28:12,180 +between two things. There is something called + +448 +00:28:12,180 --> 00:28:15,300 +observer and something called observable. Okay? + +449 +00:28:16,000 --> 00:28:19,760 +Observer and + +450 +00:28:19,760 --> 00:28:24,140 +there is observable. Or sometimes it is called + +451 +00:28:24,140 --> 00:28:24,700 +subject. + +452 +00:28:28,120 --> 00:28:31,180 +Now, the word observer is an active noun and this + +453 +00:28:31,180 --> 00:28:34,120 +is a negative noun. Observer means the observer, + +454 +00:28:34,980 --> 00:28:39,140 +right? Observable is the observer who cares about + +455 +00:28:39,140 --> 00:28:41,060 +me knowing his situation, who cares about me + +456 +00:28:41,060 --> 00:28:43,040 +getting information from him Because in our + +457 +00:28:43,040 --> 00:28:45,640 +examples, before we explain today who is the + +458 +00:28:45,640 --> 00:28:50,280 +observer and who is the observableThe observable + +459 +00:28:50,280 --> 00:28:53,280 +is the source of information, which is the network + +460 +00:28:53,280 --> 00:28:56,160 +message hander, which is class A in the example of + +461 +00:28:56,160 --> 00:28:59,300 +the previous lecture, which is those who have + +462 +00:28:59,300 --> 00:29:01,600 +information and want to pass it on to others. This + +463 +00:29:01,600 --> 00:29:04,140 +is the observable, which we want information from + +464 +00:29:04,140 --> 00:29:09,100 +themThe Observer is the one who monitors, he is + +465 +00:29:09,100 --> 00:29:11,380 +the listener, exactly, from his name Observer + +466 +00:29:11,380 --> 00:29:14,120 +means he monitors, he wants to listen, which is + +467 +00:29:14,120 --> 00:29:17,600 +represented in our program as UI, Logger, DB + +468 +00:29:17,600 --> 00:29:20,360 +Component, all of these are listeners or observers + +469 +00:29:20,360 --> 00:29:21,320 +Now, + +470 +00:29:23,420 --> 00:29:26,660 +the class, this is the class Observer, okay, it is + +471 +00:29:26,660 --> 00:29:29,560 +of course, in my example, I made one class, he + +472 +00:29:29,560 --> 00:29:34,150 +made two classes, that is, he madeLet's say + +473 +00:29:34,150 --> 00:29:39,450 +superclass, put the list in it, did you get what + +474 +00:29:39,450 --> 00:29:44,610 +superclass is? Or any observable, okay? There + +475 +00:29:44,610 --> 00:29:47,890 +should be a list of listeners, right or not? Okay, + +476 +00:29:48,450 --> 00:29:50,950 +where is it? The first thing is the observer, we + +477 +00:29:50,950 --> 00:29:53,490 +said it needs an interface, right? Whose interface + +478 +00:29:53,490 --> 00:29:56,920 +is it? The observer's, this is the interface Or + +479 +00:29:56,920 --> 00:30:00,220 +they consider it as abstract class for example One + +480 +00:30:00,220 --> 00:30:04,160 +idea, abstract class or interface in the end if + +481 +00:30:04,160 --> 00:30:06,500 +they want to implement it or extend it, it will + +482 +00:30:06,500 --> 00:30:09,340 +take its form, right or not? But we prefer it to + +483 +00:30:09,340 --> 00:30:12,880 +be an interface So this is the interface, consider + +484 +00:30:12,880 --> 00:30:15,500 +it as an interface, okay? Its name is observer, + +485 +00:30:15,900 --> 00:30:20,850 +okay? And there is a method called Update, okay? + +486 +00:30:21,610 --> 00:30:23,350 +Of course, this interface prefers that we know + +487 +00:30:23,350 --> 00:30:26,070 +internally who is inside the observer But of + +488 +00:30:26,070 --> 00:30:29,130 +course, in today's diagram, there is no need to + +489 +00:30:29,130 --> 00:30:30,790 +put a square inside a square when we define a + +490 +00:30:30,790 --> 00:30:33,150 +class inside a class Right or not? In the end, the + +491 +00:30:33,150 --> 00:30:36,290 +squares will be separate from each other But you + +492 +00:30:36,290 --> 00:30:38,350 +should understand that this prefers the interface + +493 +00:30:38,350 --> 00:30:41,170 +to be defined inside whom? Inside the class of the + +494 +00:30:41,170 --> 00:30:44,350 +observer And of course, inside the observer, there + +495 +00:30:44,350 --> 00:30:48,100 +will be a list of what? of observers, but of + +496 +00:30:48,100 --> 00:30:49,700 +course it's not clear, it's not written here, + +497 +00:30:49,960 --> 00:30:54,840 +okay? And it will have a method called attach and + +498 +00:30:54,840 --> 00:30:58,320 +detach What are attach and detach? Which are add + +499 +00:30:58,320 --> 00:31:00,900 +and remove, okay? Here's add, which takes + +500 +00:31:00,900 --> 00:31:04,080 +observers and adds them to the list And detach + +501 +00:31:04,080 --> 00:31:06,840 +removes them from the list And there's a method + +502 +00:31:06,840 --> 00:31:10,200 +called notify Because you can extend this class + +503 +00:31:12,170 --> 00:31:14,950 +Considering that the list and the methods attached + +504 +00:31:14,950 --> 00:31:19,270 +to it is a common thing and made it a subclass We + +505 +00:31:19,270 --> 00:31:23,170 +can gather them all in one class as I did Now, + +506 +00:31:23,630 --> 00:31:27,910 +part of the observable has a state here This + +507 +00:31:27,910 --> 00:31:30,430 +represents the basic data that we want to report + +508 +00:31:30,430 --> 00:31:34,810 +to whom? To the observers Which represents the + +509 +00:31:34,810 --> 00:31:39,900 +message in this example Of courseHe put this data + +510 +00:31:39,900 --> 00:31:44,080 +private and made a method called getstate() and + +511 +00:31:44,080 --> 00:31:47,980 +setstate() Because this is for the observable, + +512 +00:31:48,660 --> 00:31:51,900 +which as we said has an interface and a list of + +513 +00:31:51,900 --> 00:31:54,400 +observers An interface called observer and a list + +514 +00:31:54,400 --> 00:31:56,560 +of observers and a method called attach and detach + +515 +00:31:56,560 --> 00:32:00,230 +adds to the list and removes it from the listNow, + +516 +00:32:00,330 --> 00:32:03,270 +people who want to listen to the observable must + +517 +00:32:03,270 --> 00:32:07,470 +implement or extend to whom? To the observer. To + +518 +00:32:07,470 --> 00:32:11,670 +take a type. So now, this observer comes from the + +519 +00:32:11,670 --> 00:32:17,190 +concrete observer A and concrete observer BB, this + +520 +00:32:17,190 --> 00:32:18,850 +is the mistake here, what does it say here? + +521 +00:32:20,070 --> 00:32:21,570 +Observable, this is not, this is concrete, + +522 +00:32:21,790 --> 00:32:23,950 +observer, of course he made an implement for this, + +523 +00:32:24,010 --> 00:32:27,330 +so it must be what? Observer, concrete, observer, + +524 +00:32:27,490 --> 00:32:29,310 +A, concrete, this is equal to this, concrete, + +525 +00:32:29,450 --> 00:32:32,790 +observer, B, and each one made an implement for + +526 +00:32:32,790 --> 00:32:34,510 +the observer, of course he must make an implement + +527 +00:32:34,510 --> 00:32:39,150 +for the method update, okay? And each one, I mean, + +528 +00:32:39,270 --> 00:32:40,750 +of course the noun is changed, its name is + +529 +00:32:40,750 --> 00:32:45,280 +observer,state is of the same type, it is the idea + +530 +00:32:45,280 --> 00:32:48,080 +that this person wants to read this information + +531 +00:32:48,080 --> 00:32:51,400 +and store it where? with this person, it is like a + +532 +00:32:51,400 --> 00:32:54,680 +local variable the data that you found here, you + +533 +00:32:54,680 --> 00:32:56,240 +want to store it with this person, that is the + +534 +00:32:56,240 --> 00:33:00,300 +idea here I showed you a note, or this is also a + +535 +00:33:00,300 --> 00:33:04,020 +note, how is the shape or the code that is in the + +536 +00:33:04,020 --> 00:33:06,760 +method I told you to start here, I told you that + +537 +00:33:06,760 --> 00:33:08,920 +it is not observable when you get data or + +538 +00:33:08,920 --> 00:33:10,280 +modifications in the information, you want to + +539 +00:33:10,280 --> 00:33:13,930 +inform others Ok? So it came here, here, I'm + +540 +00:33:13,930 --> 00:33:17,210 +telling you on the notify here, a arrow, for all O + +541 +00:33:17,210 --> 00:33:21,370 +in observers, that is, there is a list called + +542 +00:33:21,370 --> 00:33:25,950 +observers, it will say O dot what? Dot update. Ok? + +543 +00:33:26,350 --> 00:33:29,190 +Of course, here the update in the UML diagram is + +544 +00:33:29,190 --> 00:33:34,450 +empty. But the update is supposed to send a + +545 +00:33:34,450 --> 00:33:37,430 +message or data through it. Or, for example, here + +546 +00:33:37,430 --> 00:33:39,970 +in this example, it sends the observable itself. + +547 +00:33:40,880 --> 00:33:42,580 +means here your idea is what it wants to do it + +548 +00:33:42,580 --> 00:33:44,980 +wants to send this any modification takes the + +549 +00:33:44,980 --> 00:33:49,600 +object this and sends it to the update why? here + +550 +00:33:49,600 --> 00:33:54,280 +is update when the update is executed it goes what + +551 +00:33:54,280 --> 00:33:58,580 +does it do here? observableWho is the observable? + +552 +00:33:58,660 --> 00:34:02,740 +It is this object It says get what? Get state To + +553 +00:34:02,740 --> 00:34:06,400 +get its value, it takes it and stores it where? In + +554 +00:34:06,400 --> 00:34:09,400 +the observer state, which is where? Here This is + +555 +00:34:09,400 --> 00:34:11,820 +just to show you that as soon as it gets the + +556 +00:34:11,820 --> 00:34:15,360 +update, it reads this information and stores it + +557 +00:34:15,360 --> 00:34:18,980 +where? It stores it here Now, how does it read the + +558 +00:34:18,980 --> 00:34:20,980 +information and store it? This is not our big + +559 +00:34:20,980 --> 00:34:24,320 +issue For example, the way we follow is that when + +560 +00:34:24,320 --> 00:34:27,600 +it gets the update, what does it send? The data is + +561 +00:34:27,600 --> 00:34:30,420 +with them, okay? Here it is not clear exactly how + +562 +00:34:30,420 --> 00:34:33,320 +the data was sent, but what I understand is that + +563 +00:34:33,320 --> 00:34:35,540 +when the update was executed, the observable + +564 +00:34:35,540 --> 00:34:40,640 +returned to the object of the observer and told + +565 +00:34:40,640 --> 00:34:43,180 +him get what? Get state, to take this information + +566 +00:34:43,180 --> 00:34:48,280 +and store it locally with him, okay? Do you know + +567 +00:34:48,280 --> 00:34:50,520 +what's wrong here? Okay + +568 +00:34:56,380 --> 00:34:58,860 +Now, this is just an explanation of the Liouman + +569 +00:34:58,860 --> 00:35:02,080 +-Ell diagram. The parts in it explain it. Of + +570 +00:35:02,080 --> 00:35:04,880 +course, subject does not exist in the Liouman-Ell + +571 +00:35:04,880 --> 00:35:06,900 +diagram. But we say that the subject is the same + +572 +00:35:06,900 --> 00:35:10,280 +as the observable, the main element. What does it + +573 +00:35:10,280 --> 00:35:14,330 +mean? It keeps track of itsobserver, keeps track + +574 +00:35:14,330 --> 00:35:20,530 +of information, provides + +575 +00:35:20,530 --> 00:35:24,190 +an interface for attaching and detaching observer + +576 +00:35:24,190 --> 00:35:27,110 +objects there is also a method called add and + +577 +00:35:27,110 --> 00:35:30,560 +remove or attach and detachObserver, this is + +578 +00:35:30,560 --> 00:35:33,060 +basically defines an interface for update + +579 +00:35:33,060 --> 00:35:38,380 +notification Concrete subject, which is as we + +580 +00:35:38,380 --> 00:35:44,100 +said, this is observable, they can put this in the + +581 +00:35:44,100 --> 00:35:47,280 +main superclass and then make a subclass out of it + +582 +00:35:47,280 --> 00:35:51,200 +This is not essential, in my work, for example, I + +583 +00:35:51,200 --> 00:35:55,250 +considered this as one classThis is the concrete + +584 +00:35:55,250 --> 00:36:00,310 +subject and this is the object being observed + +585 +00:36:00,310 --> 00:36:03,110 +which I am monitoring and storing the state which + +586 +00:36:03,110 --> 00:36:06,570 +I want to report to the observers This is + +587 +00:36:06,570 --> 00:36:08,470 +important, concrete observer, this is what makes + +588 +00:36:08,470 --> 00:36:10,230 +the implement for whom, for the interface, + +589 +00:36:10,590 --> 00:36:12,970 +observer, this is what wants to listen, it is the + +590 +00:36:12,970 --> 00:36:15,670 +observing object, it is the one that monitors, it + +591 +00:36:15,670 --> 00:36:18,370 +is the one that wants to listen stores state that + +592 +00:36:18,370 --> 00:36:23,110 +should stay consistent with the subjectAs soon as + +593 +00:36:23,110 --> 00:36:26,610 +the subject is modified, which is the observable, + +594 +00:36:26,950 --> 00:36:35,310 +its state goes to the observer. The idea of + +595 +00:36:35,310 --> 00:36:37,330 +the observer pattern is that any modification in + +596 +00:36:37,330 --> 00:36:41,440 +the state must reach the observer.So they have to + +597 +00:36:41,440 --> 00:36:43,560 +be consistent, what does it mean by consistent? It + +598 +00:36:43,560 --> 00:36:45,080 +means that they are in agreement with each other, + +599 +00:36:45,160 --> 00:36:48,400 +this one changed the state, he calls notify, he + +600 +00:36:48,400 --> 00:36:50,300 +gives them an update, so this one reads the state + +601 +00:36:50,300 --> 00:36:52,700 +and stores it with him, okay? + +602 +00:36:56,380 --> 00:36:59,580 +And this implements the Observer Update Interface + +603 +00:36:59,580 --> 00:37:02,540 +to keep its state consistent It's what implements + +604 +00:37:02,540 --> 00:37:05,620 +the interface and the existing methods in the + +605 +00:37:05,620 --> 00:37:09,380 +interface Now another example on the Observer + +606 +00:37:09,380 --> 00:37:11,320 +Pattern topic Let's present it through a slide + +607 +00:37:11,320 --> 00:37:18,360 +only This example is simple and practical Imagine + +608 +00:37:18,360 --> 00:37:22,840 +that I want to create a website for a company, a + +609 +00:37:22,840 --> 00:37:29,300 +news website He told me that he had an object + +610 +00:37:29,300 --> 00:37:35,680 +called News Publisher The News Publisher is a + +611 +00:37:35,680 --> 00:37:38,700 +component that stores news + +612 +00:37:42,940 --> 00:37:46,540 +They want these news to make them subscribe or + +613 +00:37:46,540 --> 00:37:51,440 +publish them. Publish. Okay? So I will provide in + +614 +00:37:51,440 --> 00:37:54,400 +the program two ways to publish. There is SMS + +615 +00:37:54,400 --> 00:37:58,200 +sender, that is, any news that I want to publish, + +616 +00:37:58,480 --> 00:38:01,900 +I send it to the SMS sender and tell him to + +617 +00:38:01,900 --> 00:38:05,120 +distribute it. I have an email sender that the + +618 +00:38:05,120 --> 00:38:10,360 +news on the email and twitter sender and so on + +619 +00:38:10,360 --> 00:38:15,080 +which is sent on social media for example now we + +620 +00:38:15,080 --> 00:38:17,380 +are in front of the same scenario that I have one + +621 +00:38:17,380 --> 00:38:20,500 +to many dependencies this one wants to report to + +622 +00:38:20,500 --> 00:38:24,780 +other entities which are SMS sender and email + +623 +00:38:24,780 --> 00:38:29,440 +sender so now this means that if I want to add + +624 +00:38:29,440 --> 00:38:34,320 +another sender Twitter, Instagram, etc. This means + +625 +00:38:34,320 --> 00:38:37,860 +that I have to go through the news publisher. So, + +626 +00:38:38,100 --> 00:38:40,060 +we have to apply the concept of the observer + +627 +00:38:40,060 --> 00:38:43,140 +pattern. How? We have to say, whatever the type of + +628 +00:38:43,140 --> 00:38:49,580 +sender is, Let it have only one interface. Look at + +629 +00:38:49,580 --> 00:38:51,840 +how we applied the observer pattern to this + +630 +00:38:51,840 --> 00:38:55,080 +example. This is the news publisher. This is the + +631 +00:38:55,080 --> 00:38:58,860 +source of the news. And the news in it is the + +632 +00:38:58,860 --> 00:39:01,020 +latest news. This is the news that we deliver to + +633 +00:39:01,020 --> 00:39:03,940 +whom? To these young people. Which is SMS + +634 +00:39:03,940 --> 00:39:08,220 +subscriber and email subscriber. Because these + +635 +00:39:08,220 --> 00:39:12,020 +three or four ideas that they want to listen to + +636 +00:39:12,020 --> 00:39:15,540 +the news take it and publish it, we want to unify + +637 +00:39:15,540 --> 00:39:18,560 +them, so we want to create an interface for them + +638 +00:39:18,560 --> 00:39:21,200 +so what did he do? he created an interface called + +639 +00:39:21,200 --> 00:39:28,120 +subscriber and he put a method called update and + +640 +00:39:28,120 --> 00:39:30,020 +what does the method update get through this + +641 +00:39:30,020 --> 00:39:35,380 +parameter? for the news publisher, object from + +642 +00:39:35,380 --> 00:39:37,910 +whom? This means that this person will send + +643 +00:39:37,910 --> 00:39:42,110 +himself, okay? Okay, this interface now, who wants + +644 +00:39:42,110 --> 00:39:45,850 +to implement it? Anyone who wants to listen to a + +645 +00:39:45,850 --> 00:39:48,490 +news publisher wants to implement it Which is the + +646 +00:39:48,490 --> 00:39:51,010 +subscriber, make an implement for the subscriber + +647 +00:39:51,010 --> 00:39:55,250 +Email, make an implement for him, okay? And of + +648 +00:39:55,250 --> 00:39:58,010 +course, make an implement for whom? For the update + +649 +00:39:58,010 --> 00:40:01,230 +method The update here did not allow him to + +650 +00:40:01,230 --> 00:40:03,410 +receive the news directly It allowed him to + +651 +00:40:03,410 --> 00:40:07,470 +receive who? for all the news publishers and if I + +652 +00:40:07,470 --> 00:40:09,970 +reach the news publisher, I get the news from him + +653 +00:40:09,970 --> 00:40:14,490 +through this thing called get latest, the news I + +654 +00:40:14,490 --> 00:40:16,050 +personally don't prefer to send the whole object, + +655 +00:40:17,070 --> 00:40:21,590 +I prefer to send the data directly but this is how + +656 +00:40:21,590 --> 00:40:24,710 +it works now Hadi will show us how the method + +657 +00:40:24,710 --> 00:40:26,890 +update works because the method update will + +658 +00:40:26,890 --> 00:40:30,230 +receive whom? the news publisher So how does he + +659 +00:40:30,230 --> 00:40:32,730 +get the news from him? He told him system.out + +660 +00:40:32,730 --> 00:40:35,810 +.println go to the news publisher and execute the + +661 +00:40:35,810 --> 00:40:39,330 +statement called get latest news Where is the get + +662 +00:40:39,330 --> 00:40:42,110 +latest news? Here it is And who does this get + +663 +00:40:42,110 --> 00:40:46,750 +latest news come from? Latest news, okay? Okay, + +664 +00:40:46,910 --> 00:40:50,330 +these people who want to listen made an + +665 +00:40:50,330 --> 00:40:51,830 +implementation for the interface But the step is + +666 +00:40:51,830 --> 00:40:54,810 +that we have to register them from whom? From the + +667 +00:40:54,810 --> 00:40:57,170 +news publisher So we went to the news publisher + +668 +00:40:57,170 --> 00:41:01,840 +and did what? Realist is a type of subscriber, + +669 +00:41:01,920 --> 00:41:03,960 +type of interface and there is also a method + +670 +00:41:03,960 --> 00:41:07,220 +called attach subscriber and detach subscriber + +671 +00:41:07,220 --> 00:41:10,860 +which is like add listener and remove listener and + +672 +00:41:10,860 --> 00:41:14,080 +then we have another method which is notify + +673 +00:41:14,080 --> 00:41:16,940 +observers it has an arrow next to it, this arrow + +674 +00:41:16,940 --> 00:41:23,200 +is supposed to be for each O in subscribers go and + +675 +00:41:23,200 --> 00:41:27,600 +say O.update and what did it send here?this, this + +676 +00:41:27,600 --> 00:41:31,220 +هدي عقيد عمين على news publisher هدا فهو هدا + +677 +00:41:31,220 --> 00:41:35,800 +يستقبله ك news publisher وبيجيب منه الخبر تمام؟ + +678 +00:41:35,800 --> 00:41:40,800 +هيك الفكرة وين الميزة؟ انه انا بضيف subscriber + +679 +00:41:40,800 --> 00:41:44,080 +جديد All I need to do is to create an implement + +680 +00:41:44,080 --> 00:41:47,660 +for whom? For the interface. And then I add it to + +681 +00:41:47,660 --> 00:41:50,260 +this list. Notice now that the association + +682 +00:41:50,260 --> 00:41:52,140 +relationship is only between the news publisher + +683 +00:41:52,140 --> 00:41:54,840 +and the interface. This one doesn't know anything + +684 +00:41:54,840 --> 00:41:57,560 +about them. This is the basic idea. + +685 +00:42:03,270 --> 00:42:06,850 +because this explains the same example, but I will + +686 +00:42:06,850 --> 00:42:09,170 +explain it as a book benefits of the observer + +687 +00:42:09,170 --> 00:42:12,330 +pattern, minimal coupling, reduction of coupling, + +688 +00:42:12,430 --> 00:42:17,070 +it is clear that there is no relation between the + +689 +00:42:17,070 --> 00:42:19,530 +subject or the observable with the concrete + +690 +00:42:19,530 --> 00:42:22,370 +observers the relation is only with the kind of + +691 +00:42:22,370 --> 00:42:26,410 +interface can reuse subjects without reusing their + +692 +00:42:26,410 --> 00:42:30,380 +observers and vice versaال subject نفسه ممكن تاخده + +693 +00:42:30,380 --> 00:42:33,880 +هو و ال interface تبقى و تستخدمه في أي مكان بطل + +694 +00:42:33,880 --> 00:42:38,420 +معتمد على مين؟ على ال observers صح ولا يا جماعة؟ + +695 +00:42:38,420 --> 00:42:41,160 +observers can be added without modifying the + +696 +00:42:41,160 --> 00:42:45,240 +subject ان احنا بنقدر نضيف observers جداد بدون ما + +697 +00:42:45,240 --> 00:42:48,320 +نعدل ولا شيء على ال subject ال subject هو نفسه + +698 +00:42:48,320 --> 00:42:52,800 +جولنا ال observable all subjects know its list of + +699 +00:42:52,800 --> 00:42:57,120 +observers It only has a list of observers, but it + +700 +00:42:57,120 --> 00:42:59,620 +doesn't know anything about the type of the real + +701 +00:42:59,620 --> 00:43:02,480 +observer, the concrete class The last point is + +702 +00:43:02,480 --> 00:43:05,020 +that the subject does not need to know the + +703 +00:43:05,020 --> 00:43:07,940 +concrete class of an observer Just that each + +704 +00:43:07,940 --> 00:43:10,160 +observer implements the update interface, it + +705 +00:43:10,160 --> 00:43:12,000 +doesn't know anything about the type of the + +706 +00:43:12,000 --> 00:43:16,660 +observer That's it, you can read these things by + +707 +00:43:16,660 --> 00:43:20,200 +yourselves, the last two slides Okay guys, God + +708 +00:43:20,200 --> 00:43:20,400 +bless you + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/pD7IG4O9Gzo.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/pD7IG4O9Gzo.srt new file mode 100644 index 0000000000000000000000000000000000000000..2fc4312c6544b4ab27fb75aac02e2893049d5184 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/pD7IG4O9Gzo.srt @@ -0,0 +1,2697 @@ + +1 +00:00:05,350 --> 00:00:08,670 +طب يا جماعة السلام عليكم اليوم إن شاء الله يا + +2 +00:00:08,670 --> 00:00:10,970 +جماعة رح نبدأ في القسم التالت من ال design + +3 +00:00:10,970 --> 00:00:14,250 +patterns و هو يعني قسم بسيط إن شاء الله اللي هو ال + +4 +00:00:14,250 --> 00:00:17,390 +structural design patterns مررنا على ال creational + +5 +00:00:17,390 --> 00:00:19,770 +design patterns اللي هي design patterns اللي علاقة + +6 +00:00:19,770 --> 00:00:22,190 +بإنشاء ال object We passed to the second section, + +7 +00:00:22,330 --> 00:00:25,350 +which is the behavioral design patterns, which + +8 +00:00:25,350 --> 00:00:28,050 +includes the observer, event bus, command, + +9 +00:00:29,390 --> 00:00:32,170 +strategy, etc. which is responsible for the + +10 +00:00:32,170 --> 00:00:34,810 +behavior and communication between parts of the + +11 +00:00:34,810 --> 00:00:37,230 +application. The third section is the structure, + +12 +00:00:37,450 --> 00:00:38,590 +which has to do with the structure of the + +13 +00:00:38,590 --> 00:00:40,490 +application and how to design it in a simplified + +14 +00:00:40,490 --> 00:00:43,630 +way to make it easy to use directly by clients or + +15 +00:00:43,630 --> 00:00:47,400 +developers. In this section, we will go over 6 + +16 +00:00:47,400 --> 00:00:51,320 +design patterns which are facade, decorator, + +17 +00:00:51,440 --> 00:00:55,600 +adapter, composite, proxy and flyweight. In this + +18 +00:00:55,600 --> 00:00:58,280 +lecture, we will take 2 design patterns which are + +19 +00:00:58,280 --> 00:01:01,500 +facade and adapter. + +20 +00:01:03,870 --> 00:01:05,950 +Okay, let's start with the first design pattern, + +21 +00:01:06,090 --> 00:01:07,570 +which is façade. Of course, this word + +22 +00:01:07,570 --> 00:01:10,490 +façade, or sometimes we read it façade, is + +23 +00:01:10,490 --> 00:01:13,550 +not an English word, it is a French word. Notice + +24 +00:01:13,550 --> 00:01:15,710 +that maybe this character looks a little + +25 +00:01:15,710 --> 00:01:18,870 +different, not like C, like C, but there is a + +26 +00:01:18,870 --> 00:01:22,750 +difference. It means interface or face. The word + +27 +00:01:22,750 --> 00:01:26,390 +façade means interface or face. Façade is + +28 +00:01:26,390 --> 00:01:31,790 +a simple design pattern. I consider it one of the + +29 +00:01:31,790 --> 00:01:33,930 +simple things, true it's simple but it's very + +30 +00:01:33,930 --> 00:01:38,270 +important and I'll tell you in a very short way to + +31 +00:01:38,270 --> 00:01:43,430 +understand this, now imagine that you made a + +32 +00:01:43,430 --> 00:01:48,870 +library for example to book or order, to buy a + +33 +00:01:48,870 --> 00:01:52,190 +certain order and book and ship it. Because the API + +34 +00:01:52,190 --> 00:01:55,450 +or your library is like this because the developer + +35 +00:01:55,450 --> 00:01:59,210 +is a programmer, he wants to use your library to + +36 +00:01:59,210 --> 00:02:01,730 +call some companies to implement the process of + +37 +00:02:01,730 --> 00:02:04,450 +buying orders. For example, this is the process of + +38 +00:02:04,450 --> 00:02:08,830 +ordering. The process of ordering, in order for + +39 +00:02:08,830 --> 00:02:11,570 +the developer to call or implement it, he needs to + +40 +00:02:11,570 --> 00:02:15,370 +call a set of methods. There is a method called, + +41 +00:02:15,590 --> 00:02:16,950 +for example, search item. + +42 +00:02:20,480 --> 00:02:31,900 +And then add item to basket, and + +43 +00:02:31,900 --> 00:02:37,940 +then execute check out method and then execute + +44 +00:02:37,940 --> 00:02:42,880 +request payment + +45 +00:02:42,880 --> 00:02:47,140 +gate and + +46 +00:02:47,140 --> 00:02:55,300 +then process payment و + +47 +00:02:55,300 --> 00:03:01,880 +بعدين arrange for delivery. + +48 +00:03:03,160 --> 00:03:06,160 +To charge the item because these are a set of + +49 +00:03:06,160 --> 00:03:09,260 +steps anyone who wants to make an order has to + +50 +00:03:09,260 --> 00:03:12,080 +follow these methods in order and of course these + +51 +00:03:12,080 --> 00:03:15,060 +methods depend on each other. For example, I can't + +52 +00:03:15,060 --> 00:03:17,440 +make a request to the payment gate unless I make a + +53 +00:03:17,440 --> 00:03:22,080 +check-out. For example, what I'm saying is that this + +54 +00:03:22,080 --> 00:03:24,280 +API was saved by me as a programmer, and I saved it + +55 +00:03:24,280 --> 00:03:26,860 +to whom? To other developers to follow this + +56 +00:03:26,860 --> 00:03:31,790 +library. Façade in short means, always try when + +57 +00:03:31,790 --> 00:03:33,890 +you save a library make it easier for the + +58 +00:03:33,890 --> 00:03:36,370 +developer to execute the important operations + +59 +00:03:36,370 --> 00:03:40,450 +okay? So now the developer wants to make an order + +60 +00:03:40,450 --> 00:03:43,150 +process. In order to make the order, he must follow + +61 +00:03:43,150 --> 00:03:46,010 +these methods in detail one by one in a certain + +62 +00:03:46,010 --> 00:03:48,910 +order and of course each method depends on the + +63 +00:03:48,910 --> 00:03:50,670 +other. So you have to wait for the output of a + +64 +00:03:50,670 --> 00:03:54,090 +method in order to execute the next method. Now, the + +65 +00:03:54,090 --> 00:03:55,810 +developers who come from outside, who use the + +66 +00:03:55,810 --> 00:03:58,070 +library, do not know these details so they have to + +67 +00:03:58,070 --> 00:04:01,200 +read the documentation, so that they know what are + +68 +00:04:01,200 --> 00:04:03,700 +the sequence of steps they have to execute and + +69 +00:04:03,700 --> 00:04:05,760 +what is the input for each method and what is the + +70 +00:04:05,760 --> 00:04:08,520 +output that returns the method. Right or wrong? So + +71 +00:04:08,520 --> 00:04:10,320 +that the developer can execute this process, he + +72 +00:04:10,320 --> 00:04:12,720 +has to understand the details of the methods, what + +73 +00:04:12,720 --> 00:04:14,660 +each method takes, what each method returns and + +74 +00:04:14,660 --> 00:04:17,380 +how the order that is required. So instead of + +75 +00:04:17,380 --> 00:04:20,500 +defeating the developer, and providing them with + +76 +00:04:20,500 --> 00:04:22,520 +... because this means that your interface is + +77 +00:04:22,520 --> 00:04:26,460 +somewhat difficult to use. By the way, each method + +78 +00:04:26,460 --> 00:04:28,880 +can be found in a different class. Right or wrong? + +79 +00:04:29,360 --> 00:04:33,450 +Because these methods are found in a class. In + +80 +00:04:33,450 --> 00:04:35,110 +order for him to use this method, he has to create + +81 +00:04:35,110 --> 00:04:37,470 +an object from whom? From this class, and this is + +82 +00:04:37,470 --> 00:04:40,450 +present in another class, and this is normal. For + +83 +00:04:40,450 --> 00:04:43,370 +example, the payment is all present in a module + +84 +00:04:43,370 --> 00:04:45,990 +separate from who? From the process of check out, + +85 +00:04:46,030 --> 00:04:49,890 +for example. Instead of defeating the developer, and + +86 +00:04:49,890 --> 00:04:53,250 +letting him go and check or know what objects he + +87 +00:04:53,250 --> 00:04:54,970 +wants to create and what method he wants to use + +88 +00:04:54,970 --> 00:04:57,250 +and what is the input and output. He tells you to + +89 +00:04:57,250 --> 00:04:59,470 +make it easy for him. You can provide him one + +90 +00:04:59,470 --> 00:05:09,840 +method. Its name is search and order and + +91 +00:05:09,840 --> 00:05:14,720 +this method gives him parameters, which are all the + +92 +00:05:14,720 --> 00:05:19,060 +necessary data, for example, the name of the item, + +93 +00:05:20,340 --> 00:05:26,900 +your address, username and password. These are the + +94 +00:05:26,900 --> 00:05:28,500 +necessary information to execute all these steps. + +95 +00:05:30,300 --> 00:05:34,140 +Now, you got one method, but through this method, + +96 +00:05:34,560 --> 00:05:36,820 +of course he will go and get support from whom? + +97 +00:05:38,040 --> 00:05:41,900 +The rest of them, so really the steps you took are + +98 +00:05:41,900 --> 00:05:44,380 +the same, but it really made it easier for the + +99 +00:05:44,380 --> 00:05:49,120 +client. That instead of going and reviewing the + +100 +00:05:49,120 --> 00:05:50,980 +documentation and understanding all of this, you + +101 +00:05:50,980 --> 00:05:53,220 +provided him with a method that made it easier for + +102 +00:05:53,220 --> 00:05:54,700 +you. That you tell him straight away search and + +103 +00:05:54,700 --> 00:05:57,660 +order and give him the necessary details to + +104 +00:05:57,660 --> 00:05:59,260 +implement these steps, which is, for example, the + +105 +00:05:59,260 --> 00:06:01,760 +item and what is your address and what will the + +106 +00:06:01,760 --> 00:06:04,540 +charger do in the end, or what are your payment + +107 +00:06:04,540 --> 00:06:08,370 +data. And he himself implements these steps. I + +108 +00:06:08,370 --> 00:06:10,370 +actually provided him with a simplified interface + +109 +00:06:10,370 --> 00:06:14,230 +that deals with the subsystems or components that + +110 +00:06:14,230 --> 00:06:18,210 +I have in the system. Now, we will read this + +111 +00:06:18,210 --> 00:06:20,190 +again. Let's take a look at the idea of + +112 +00:06:20,190 --> 00:06:25,670 +​​façade. This is my system. The system is made + +113 +00:06:25,670 --> 00:06:32,710 +up of components, which can be classes or packages + +114 +00:06:32,710 --> 00:06:36,270 +or modules. Each module is responsible for + +115 +00:06:36,270 --> 00:06:40,690 +executing a specific task. For example, this one is + +116 +00:06:40,690 --> 00:06:42,890 +responsible for shopping and basketball, this one + +117 +00:06:42,890 --> 00:06:44,190 +is responsible for payment, this one is + +118 +00:06:44,190 --> 00:06:45,350 +responsible for search, this one is responsible + +119 +00:06:45,350 --> 00:06:50,150 +for delivery, and so on. Now, these people outside + +120 +00:06:52,180 --> 00:06:55,220 +developers can be external systems that deal with + +121 +00:06:55,220 --> 00:07:00,260 +my office. Now, in the current situation, external + +122 +00:07:00,260 --> 00:07:02,480 +systems, any one of them, in order to execute + +123 +00:07:02,480 --> 00:07:06,040 +commands, must communicate with more than one + +124 +00:07:06,040 --> 00:07:09,820 +component. This must deal with this, this must + +125 +00:07:09,820 --> 00:07:13,000 +deal with this, this must deal with this, for + +126 +00:07:13,000 --> 00:07:16,980 +example, and so on. The programmer who made this + +127 +00:07:16,980 --> 00:07:20,840 +component had to understand the sub-components in + +128 +00:07:20,840 --> 00:07:23,960 +order to be able to deal with them. Like here, in + +129 +00:07:23,960 --> 00:07:27,340 +order to buy the order, I had to deal with more + +130 +00:07:27,340 --> 00:07:31,180 +than one class and more than one method. It means + +131 +00:07:31,180 --> 00:07:34,260 +that the people outside your system, make it + +132 +00:07:34,260 --> 00:07:36,720 +easier for them to use it. So to make it easier for + +133 +00:07:36,720 --> 00:07:41,050 +them to use it, look at my system as it is. But + +134 +00:07:41,050 --> 00:07:45,470 +what did I save here? A face. What is this called? + +135 +00:07:46,210 --> 00:07:50,170 +Façade. Simply, this could be a class, a single + +136 +00:07:50,170 --> 00:07:53,470 +class. But who is this class for? For the people + +137 +00:07:53,470 --> 00:07:57,230 +outside. Because if you want to make an order, all + +138 +00:07:57,230 --> 00:07:58,670 +you have to do is to extract an object from whom? + +139 +00:07:59,090 --> 00:08:03,310 +From this class and call a single method. Now, from + +140 +00:08:03,310 --> 00:08:09,550 +within the method, what does this call? The + +141 +00:08:09,550 --> 00:08:13,210 +external system or the client or the developer + +142 +00:08:13,210 --> 00:08:16,890 +doesn't know what's going on inside, they only + +143 +00:08:16,890 --> 00:08:20,030 +support the façade and the façade deals + +144 +00:08:20,030 --> 00:08:25,890 +with the internal parts. I didn't modify the code + +145 +00:08:25,890 --> 00:08:29,170 +here, everything I did is to add a face that makes + +146 +00:08:29,170 --> 00:08:31,270 +it easier for the user to do whatever he wants. + +147 +00:08:32,370 --> 00:08:34,610 +Instead of going through the details and steps, it + +148 +00:08:34,610 --> 00:08:37,130 +only uses the classhead, which is an addition to + +149 +00:08:37,130 --> 00:08:39,910 +my system. For whom is the addition made + +150 +00:08:39,910 --> 00:08:42,270 +specifically? For people from outside. Because + +151 +00:08:42,270 --> 00:08:44,410 +this provides two features. The first feature + +152 +00:08:44,410 --> 00:08:46,390 +makes it easier to use for the external developer. + +153 +00:08:46,910 --> 00:08:49,490 +Always the successful system, guys. We always say + +154 +00:08:49,490 --> 00:08:52,760 +that if you design an API, think about who is going + +155 +00:08:52,760 --> 00:08:55,720 +to use the code. Don't think about yourself, as a + +156 +00:08:55,720 --> 00:08:58,020 +developer, you always see your code 100%, and you + +157 +00:08:58,020 --> 00:09:02,000 +understand it, but you have to think about who is + +158 +00:09:02,000 --> 00:09:03,380 +going to use the code behind you. Of course, + +159 +00:09:03,480 --> 00:09:07,260 +developers are smart. They do the opposite, they + +160 +00:09:07,260 --> 00:09:09,700 +design the code so that they can understand it. + +161 +00:09:09,700 --> 00:09:13,610 +Why? They design it well and say it safely. Okay? + +162 +00:09:14,030 --> 00:09:16,470 +No, I say it with confidence. Because if someone + +163 +00:09:16,470 --> 00:09:18,590 +else comes to me, what do I do? I say it with + +164 +00:09:18,590 --> 00:09:20,450 +confidence, because if someone else comes to me, + +165 +00:09:20,450 --> 00:09:21,210 +someone else comes to me, what do I do? I say it + +166 +00:09:21,210 --> 00:09:22,370 +with confidence. Because if someone else comes to + +167 +00:09:22,370 --> 00:09:22,970 +if someone else comes to me, what do I do? I say + +168 +00:09:22,970 --> 00:09:23,090 +to me, what do I do? I say it with confidence + +169 +00:09:23,090 --> 00:09:23,470 +comes to me, what do I do? I say it with + +170 +00:09:23,470 --> 00:09:23,870 +what do I do? I say it with confidence. Because if + +171 +00:09:23,870 --> 00:09:23,990 +someone else comes to me, what do I do? I say it + +172 +00:09:23,990 --> 00:09:24,130 +with confidence. Because if someone else comes to + +173 +00:09:24,130 --> 00:09:25,370 +me, what do I do? I say it with confidence, because + +174 +00:09:25,370 --> 00:09:28,430 +if someone else comes to me, what do I do? I say + +175 +00:09:28,430 --> 00:09:35,210 +it with. The second advantage is that the coupling + +176 +00:09:35,210 --> 00:09:40,450 +is less than that of external systems that deal + +177 +00:09:40,450 --> 00:09:42,490 +with internal parts of the system. This means that + +178 +00:09:42,490 --> 00:09:44,490 +if any component is changed from here, it will + +179 +00:09:44,490 --> 00:09:46,330 +affect whom? It will affect the people outside. + +180 +00:09:46,690 --> 00:09:50,650 +But here if there is any change, the name of the + +181 +00:09:50,650 --> 00:09:52,330 +class is changed, a new method is added. I will + +182 +00:09:52,330 --> 00:09:55,370 +only change where? In façade, it's the same + +183 +00:09:55,370 --> 00:09:58,070 +idea of the factory. When everyone uses the + +184 +00:09:58,070 --> 00:10:00,070 +factory to create, if there is a change in the + +185 +00:10:00,070 --> 00:10:03,230 +classes, I change only where? In the factory. But + +186 +00:10:03,230 --> 00:10:05,750 +of course, the goal of the factory is different + +187 +00:10:05,750 --> 00:10:08,370 +from façade. The factory is specifically for + +188 +00:10:08,370 --> 00:10:11,740 +the creation of objects, but façade, to + +189 +00:10:11,740 --> 00:10:16,760 +implement a certain process. And this process has + +190 +00:10:16,760 --> 00:10:19,180 +complicated steps. I hide this complexity from the + +191 +00:10:19,180 --> 00:10:24,000 +client by using façade. A specific example. Look + +192 +00:10:24,000 --> 00:10:27,700 +with me on this example. A very simple example. If + +193 +00:10:27,700 --> 00:10:30,940 +you want to make a program to organize tourist + +194 +00:10:30,940 --> 00:10:37,520 +trips. Any tourist trip at least includes booking a + +195 +00:10:37,520 --> 00:10:41,690 +hotel and booking a flight. Okay, now you have a + +196 +00:10:41,690 --> 00:10:44,090 +component or + +223 +00:12:09,760 --> 00:12:12,460 +searched for hotels, searched for flights, made a + +224 +00:12:12,460 --> 00:12:14,340 +matching between them and found the best one and + +225 +00:12:14,340 --> 00:12:17,960 +returned the result. This is just a + +226 +00:12:17,960 --> 00:12:21,240 +simplification. Okay? And as I said, this is an + +227 +00:12:21,240 --> 00:12:23,080 +easy thing, simple and correct, but unfortunately + +228 +00:12:23,080 --> 00:12:27,040 +many developers do not do it. One of the existing + +229 +00:12:27,040 --> 00:12:33,080 +problems Why do we always find that the developer + +230 +00:12:33,080 --> 00:12:35,780 +thinks about how he sees the code and does not + +231 +00:12:35,780 --> 00:12:38,560 +think about how others see the code, so his design + +232 +00:12:38,560 --> 00:12:40,120 +turns out to be bad because he does not think + +233 +00:12:40,120 --> 00:12:43,440 +about others. In writing, when a student writes a + +234 +00:12:43,440 --> 00:12:45,560 +report or a final report for a graduation project, + +235 +00:12:46,360 --> 00:12:48,040 +you will find that he writes without thinking + +236 +00:12:48,040 --> 00:12:50,920 +about the reader, okay? He is the rabbit that he + +237 +00:12:50,920 --> 00:12:53,600 +writes to understand it.Okay, but when someone + +238 +00:12:53,600 --> 00:12:55,880 +comes from abroad to read what he wrote, he + +239 +00:12:55,880 --> 00:12:57,120 +doesn't understand anything, so his book turns out + +240 +00:12:57,120 --> 00:13:01,520 +to be bad. The teacher doesn't explain well, why? + +241 +00:13:02,160 --> 00:13:04,740 +Because he thinks that all people understand what + +242 +00:13:04,740 --> 00:13:07,320 +he understood, so he says two words that he + +243 +00:13:07,320 --> 00:13:09,460 +understood, but he doesn't put himself in the + +244 +00:13:09,460 --> 00:13:12,640 +place of the student. A good teacher puts himself + +245 +00:13:12,640 --> 00:13:14,840 +in the place of the student, he thinks about how + +246 +00:13:14,840 --> 00:13:18,320 +the student thinks,Okay? And he tries to answer + +247 +00:13:18,320 --> 00:13:19,300 +the question, but he doesn't know what his answer + +248 +00:13:19,300 --> 00:13:22,540 +is He thinks like his brain So this is the same + +249 +00:13:22,540 --> 00:13:26,040 +idea, a good developer thinks about how the client + +250 +00:13:26,040 --> 00:13:28,260 +or the other developer wants to use his time + +251 +00:13:28,260 --> 00:13:32,160 +Another + +252 +00:13:32,160 --> 00:13:36,370 +exampleDid you notice that I made a library to + +253 +00:13:36,370 --> 00:13:39,750 +convert videos files? Did you notice that + +254 +00:13:39,750 --> 00:13:42,110 +converting a video file has many steps? For + +255 +00:13:42,110 --> 00:13:44,890 +example, a step to read a video file through a + +256 +00:13:44,890 --> 00:13:48,750 +library or file called video file class. There is + +257 +00:13:48,750 --> 00:13:51,410 +something called extraction of codec. There is + +258 +00:13:51,410 --> 00:13:54,170 +something called compression codec. And then he + +259 +00:13:54,170 --> 00:13:56,250 +wants to create a buffer and create a read for the + +260 +00:13:56,250 --> 00:13:58,790 +codec in the buffer And then he wants to create a + +261 +00:13:58,790 --> 00:14:01,270 +convert and then he wants to create a fix and mix + +262 +00:14:01,270 --> 00:14:04,210 +for the audio with the video These are all + +263 +00:14:04,210 --> 00:14:06,530 +compression steps for the video Instead of letting + +264 +00:14:06,530 --> 00:14:10,150 +the client know these steps I provided him with + +265 +00:14:10,150 --> 00:14:14,530 +one page called convert video and I asked him to + +266 +00:14:14,530 --> 00:14:18,070 +send me the file and the format that he wanted and + +267 +00:14:18,070 --> 00:14:22,670 +I hid all these details in the convert video so + +268 +00:14:22,670 --> 00:14:24,630 +whoever wants to convert to any file just need to + +269 +00:14:24,630 --> 00:14:27,530 +claim This method is called ConvertVideo. This + +270 +00:14:27,530 --> 00:14:31,830 +class is called Video Conversion Facet. It is a + +271 +00:14:31,830 --> 00:14:34,950 +interface that uses the internal component of the + +272 +00:14:34,950 --> 00:14:38,330 +system. The client uses it without having to know + +273 +00:14:38,330 --> 00:14:42,110 +the partial details. This is how it is used. It + +274 +00:14:42,110 --> 00:14:44,110 +creates a Video Conversion Facet and uses + +275 +00:14:44,110 --> 00:14:47,470 +ConvertVideo without knowing the details. The + +276 +00:14:47,470 --> 00:14:53,210 +advantage of this facet is that it provides a + +277 +00:14:53,210 --> 00:14:56,910 +unified interface. to a set of interfaces in a + +278 +00:14:56,910 --> 00:14:59,810 +subsystem. Meaning that I have a subsystem with a + +279 +00:14:59,810 --> 00:15:03,870 +number of faces or classes or modules. Instead of + +280 +00:15:03,870 --> 00:15:06,190 +forcing the client or the developer to understand + +281 +00:15:06,190 --> 00:15:08,510 +the internal interfaces and classes, I provided + +282 +00:15:08,510 --> 00:15:11,810 +him with a unified interface, an external face + +283 +00:15:11,810 --> 00:15:14,390 +that deals with it, and this external face is the + +284 +00:15:14,390 --> 00:15:16,570 +one that communicates with the internal parts of + +285 +00:15:16,570 --> 00:15:21,390 +the system. Corruption defines a higher level + +286 +00:15:21,390 --> 00:15:25,860 +interface,higher level, which means that the + +287 +00:15:25,860 --> 00:15:28,120 +client knows the internal details, which makes the + +288 +00:15:28,120 --> 00:15:33,080 +subsystem easier to useThe motivation and + +289 +00:15:33,080 --> 00:15:36,200 +motivation for structuring a system into + +290 +00:15:36,200 --> 00:15:38,180 +subsystems help reduce complexity. + +291 +00:15:44,140 --> 00:15:46,240 +Subsystems are groups of classes. It explains to + +292 +00:15:46,240 --> 00:15:49,540 +us what the subsystem means. It can be a class or + +293 +00:15:49,540 --> 00:15:52,340 +a group of classes. The idea of ​​a subsystem is + +294 +00:15:52,340 --> 00:15:54,120 +that it is a component responsible for carrying + +295 +00:15:54,120 --> 00:15:58,090 +out a certain task.The interface exposed by the + +296 +00:15:58,090 --> 00:16:01,250 +classes in a subsystem or a set of systems can be + +297 +00:16:01,250 --> 00:16:05,330 +quite complex يعني استخدام ال subsystems ممكن يكون + +298 +00:16:05,330 --> 00:16:08,650 +معقد فعشان هيك one way to reduce this complexity + +299 +00:16:08,650 --> 00:16:13,040 +is to introduce a facet objectsTo reduce the + +300 +00:16:13,040 --> 00:16:16,400 +complexity of using a subsystem, FACADE provides a + +301 +00:16:16,400 --> 00:16:19,200 +single simplified interface to the more general + +302 +00:16:19,200 --> 00:16:23,680 +facilities of a subsystem. + +303 +00:16:29,280 --> 00:16:32,340 +When do we use the FACADE pattern to provide a + +304 +00:16:32,340 --> 00:16:35,700 +simple interface to a complex subsystem? This + +305 +00:16:35,700 --> 00:16:39,000 +interface + +306 +00:16:39,000 --> 00:16:42,770 +is good enough for most clients.More sophisticated + +307 +00:16:42,770 --> 00:16:48,030 +clients can look beyond the facade. What does this + +308 +00:16:48,030 --> 00:16:53,170 +mean? Now, the facade provides you with a process + +309 +00:16:53,170 --> 00:16:55,650 +that executes the steps through which the + +310 +00:16:55,650 --> 00:16:58,370 +subsystems are created. Now, imagine the steps in + +311 +00:16:58,370 --> 00:17:01,410 +the facade that a client wants to change. He wants + +312 +00:17:01,410 --> 00:17:04,310 +to add an additional step. Now, notice that the + +313 +00:17:04,310 --> 00:17:07,430 +facade does not allow the external system to use + +314 +00:17:07,430 --> 00:17:11,060 +these classes directly. If someone wants to make + +315 +00:17:11,060 --> 00:17:15,200 +advanced settings and change them in the default + +316 +00:17:15,200 --> 00:17:21,160 +process, he can use the main subsystem. Now, the + +317 +00:17:21,160 --> 00:17:24,100 +client or the developer has two options that he + +318 +00:17:24,100 --> 00:17:26,080 +wants to use in the office. Either he uses the + +319 +00:17:26,080 --> 00:17:29,140 +default settings, which are identified within the + +320 +00:17:29,140 --> 00:17:31,500 +corruption. If he wants to add additional details, + +321 +00:17:32,280 --> 00:17:34,820 +he can directly create objects from them and use + +322 +00:17:34,820 --> 00:17:37,540 +them. But in this case, he is free. He wants to + +323 +00:17:37,540 --> 00:17:41,330 +make custom things.He wants to remove the + +324 +00:17:41,330 --> 00:17:44,630 +complexity of the subsystems from his + +325 +00:17:44,630 --> 00:17:45,950 +dictionaries. He wants to take the default + +326 +00:17:45,950 --> 00:17:50,520 +settings and deal directly with corruption.This + +327 +00:17:50,520 --> 00:17:57,860 +means that sophisticated users can look beyond the + +328 +00:17:57,860 --> 00:18:01,620 +corruption and deal with the subsystems directly + +329 +00:18:01,620 --> 00:18:04,640 +One of the advantages of corruption is that it + +330 +00:18:04,640 --> 00:18:09,060 +supports decoupling, decoupling the classes of the + +331 +00:18:09,060 --> 00:18:13,550 +subsystem from its clientThis is evidence that my + +332 +00:18:13,550 --> 00:18:15,850 +coupling is less. The number of links here is more + +333 +00:18:15,850 --> 00:18:19,470 +than here. Any change in the external system is + +334 +00:18:19,470 --> 00:18:21,970 +only a change in corruption. + +335 +00:18:24,860 --> 00:18:27,360 +Benefits, as we said, it hides the implementation + +336 +00:18:27,360 --> 00:18:32,960 +of the subsystem from clients, making the system + +337 +00:18:32,960 --> 00:18:36,820 +easier to use, it promotes weak coupling, it + +338 +00:18:36,820 --> 00:18:39,680 +reduces complication dependencies in large + +339 +00:18:39,680 --> 00:18:45,360 +systems, simplifies + +340 +00:18:45,360 --> 00:18:50,800 +porting systems. Portability, what does it mean?On + +341 +00:18:50,800 --> 00:18:52,980 +another platform, it becomes easier because the + +342 +00:18:52,980 --> 00:18:58,080 +coupling is less. This gate can take your entire + +343 +00:18:58,080 --> 00:19:03,280 +system and transfer it to another platform. It + +344 +00:19:03,280 --> 00:19:07,060 +will not affect them because everything is dealing + +345 +00:19:07,060 --> 00:19:07,880 +with corruption. + +346 +00:19:12,320 --> 00:19:15,260 +And as we said, it does not prevent sophisticated + +347 +00:19:15,260 --> 00:19:18,700 +clients from accessing the underlying classes Note + +348 +00:19:18,700 --> 00:19:20,940 +that Facade does not add any functionality, it + +349 +00:19:20,940 --> 00:19:23,760 +just simplifies interfaces Facade's design pattern + +350 +00:19:23,760 --> 00:19:28,780 +is simple, its goal is to simplify the use of the + +351 +00:19:28,780 --> 00:19:33,280 +API Okay, this is the example we came up with. We + +352 +00:19:33,280 --> 00:19:36,720 +saw the video Conversion. Corruption vs. Factory. + +353 +00:19:36,760 --> 00:19:40,340 +We talked about it. Both provide a face to + +354 +00:19:40,340 --> 00:19:42,120 +facilitate something. But the factory facilitates + +355 +00:19:42,120 --> 00:19:44,260 +the construction. Corruption facilitates the + +356 +00:19:44,260 --> 00:19:48,960 +process or the use of subsystems in my system. + +357 +00:19:50,280 --> 00:19:52,640 +Let's come to another design pattern. It's called + +358 +00:19:52,640 --> 00:19:55,240 +the adapter pattern. And the adapter pattern is + +359 +00:19:55,240 --> 00:19:58,800 +one of the design patterns used a lot and + +360 +00:19:58,800 --> 00:20:02,980 +important. So what is the word adapter?It's a + +361 +00:20:02,980 --> 00:20:04,820 +conversion. For example, when you travel abroad, + +362 +00:20:06,820 --> 00:20:08,740 +you will find that each country has a different + +363 +00:20:08,740 --> 00:20:11,880 +power supply, not all of them are the same. For + +364 +00:20:11,880 --> 00:20:15,060 +example, you go to a hotel and ask for a socket + +365 +00:20:21,460 --> 00:20:25,620 +This socket is called socket and adapter is called + +366 +00:20:25,620 --> 00:20:30,600 +converter Now this idea is exactly the same. + +367 +00:20:31,020 --> 00:20:34,480 +Adapter is a converter But it is not a converter + +368 +00:20:34,480 --> 00:20:38,240 +between electricity wires but between software to + +369 +00:20:38,240 --> 00:20:42,560 +another software Let me explain you the existing + +370 +00:20:42,560 --> 00:20:46,740 +problemImagine that you are running an application + +371 +00:20:46,740 --> 00:20:51,940 +and in your application you + +372 +00:20:51,940 --> 00:20:59,180 +are + +373 +00:20:59,180 --> 00:21:05,760 +using an external library. For example, you used + +374 +00:21:05,760 --> 00:21:08,920 +the library X.it could be for example a mobile + +375 +00:21:08,920 --> 00:21:11,720 +application and you are using a library to make a + +376 +00:21:11,720 --> 00:21:13,980 +connection to the server and make a request or + +377 +00:21:13,980 --> 00:21:15,700 +another library to make a connection to a database + +378 +00:21:15,700 --> 00:21:20,400 +or firebase or something else and of course this + +379 +00:21:20,400 --> 00:21:26,140 +has methods A, B, C and from your application you + +380 +00:21:26,140 --> 00:21:31,890 +have 50 classes here and these classes claimThe + +381 +00:21:31,890 --> 00:21:34,970 +methods in the library, this is normal, this is a + +382 +00:21:34,970 --> 00:21:36,890 +mobile application, every work is on the server, + +383 +00:21:37,490 --> 00:21:40,970 +right or not? They came one day and took out a new + +384 +00:21:40,970 --> 00:21:46,950 +library, what is its name? Y, okay? And it has + +385 +00:21:46,950 --> 00:21:50,110 +methods like these, but their names are different, + +386 +00:21:50,250 --> 00:21:53,390 +AABBCC + +387 +00:21:55,580 --> 00:21:59,040 +Okay? And he said this library is faster than this + +388 +00:21:59,040 --> 00:22:00,980 +library and better So I said let's change our + +389 +00:22:00,980 --> 00:22:04,420 +application that instead of using this library, we + +390 +00:22:04,420 --> 00:22:09,000 +want to use which one? The second library Of + +391 +00:22:09,000 --> 00:22:11,520 +course this is not easy because actually my + +392 +00:22:11,520 --> 00:22:14,640 +library has, for example, say 100 applicants for + +393 +00:22:14,640 --> 00:22:18,440 +whom? For this library What do the young people + +394 +00:22:18,440 --> 00:22:22,690 +do? Okay, let's change it. After a whole weekand + +395 +00:22:22,690 --> 00:22:26,590 +it will bring this and create objects from Y and + +396 +00:22:26,590 --> 00:22:29,430 +instead of asking for A, it will ask for AA and of + +397 +00:22:29,430 --> 00:22:31,870 +course this input might be different from the + +398 +00:22:31,870 --> 00:22:34,150 +input you get from this and the return might also + +399 +00:22:34,150 --> 00:22:36,790 +be different so it will say bring, bring, change + +400 +00:22:36,790 --> 00:22:42,370 +and adjust to fit your application to this and it + +401 +00:22:42,370 --> 00:22:44,710 +will be late for the production of your program + +402 +00:22:44,710 --> 00:22:48,030 +and you will be late for the appointment because + +403 +00:22:48,030 --> 00:22:51,600 +the transformation also needs testing Am I right + +404 +00:22:51,600 --> 00:22:56,280 +or not? It's not that simple. The whole cycle has + +405 +00:22:56,280 --> 00:22:57,660 +been overturned. Ok, + +406 +00:23:00,480 --> 00:23:03,180 +and this topic is very common. We always use + +407 +00:23:03,180 --> 00:23:06,180 +libraries, and these libraries have updates and + +408 +00:23:06,180 --> 00:23:08,060 +changes, and you find another library better than + +409 +00:23:08,060 --> 00:23:12,400 +that, so let's change it. Ok? So our goal is that + +410 +00:23:12,400 --> 00:23:16,060 +we want our application to use the new library + +411 +00:23:16,060 --> 00:23:19,570 +without changing anything in the application. Do + +412 +00:23:19,570 --> 00:23:22,710 +you understand what we want to do? How? We want + +413 +00:23:22,710 --> 00:23:26,150 +him to use Y without changing any line in the + +414 +00:23:26,150 --> 00:23:28,350 +application. Because this is 100 times. 100 + +415 +00:23:28,350 --> 00:23:31,030 +requests are made on this. We want him to change + +416 +00:23:31,030 --> 00:23:33,430 +100 requests one by one without changing anything. + +417 +00:23:34,190 --> 00:23:38,130 +We want him to use this library instead of this + +418 +00:23:38,130 --> 00:23:44,090 +library without changing anything here. We want to + +419 +00:23:44,090 --> 00:23:49,220 +make a medium. How do we do it? To understand it + +420 + +445 +00:25:24,620 --> 00:25:27,360 +you the application that uses the X so here, the X + +446 +00:25:27,360 --> 00:25:33,160 +issued before it The ArraySorter Now we have a new + +447 +00:25:33,160 --> 00:25:36,580 +library Which is what here? The Y Which is + +448 +00:25:36,580 --> 00:25:42,440 +represented by a class called ListSorter And + +449 +00:25:42,440 --> 00:25:45,740 +you don't know the code of the ArraySorter nor the + +450 +00:25:45,740 --> 00:25:48,500 +ListSorter These are libraries that you brought + +451 +00:25:48,500 --> 00:25:54,200 +from outside But this ListSorter, let's look at + +452 +00:25:54,200 --> 00:26:00,170 +this new library This is ListSorterLS for example + +453 +00:26:00,170 --> 00:26:08,170 +new list sorter and then I say LS I don't know why + +454 +00:26:08,170 --> 00:26:15,590 +I'm writing this LS dot has method sort but what + +455 +00:26:15,590 --> 00:26:18,450 +does this method sort take? it takes a list and + +456 +00:26:18,450 --> 00:26:21,950 +returns a list this is called AA and that is + +457 +00:26:21,950 --> 00:26:25,150 +called A the input and the return are different + +458 +00:26:25,150 --> 00:26:28,010 +and the name of the method itself can be different + +459 +00:26:29,150 --> 00:26:33,930 +Ok, it means that you have to figure out what was + +460 +00:26:33,930 --> 00:26:36,210 +the normal situation that programmers and + +461 +00:26:36,210 --> 00:26:38,910 +beginners used to have I go to the client, ok, and + +462 +00:26:38,910 --> 00:26:42,290 +it starts deleting delete this one, ok, and put + +463 +00:26:42,290 --> 00:26:45,470 +here instead of him list sorter and not only that, + +464 +00:26:45,550 --> 00:26:49,050 +I go everywhere I mean here, ok, this method + +465 +00:26:49,050 --> 00:26:51,510 +stopped working you have to make another method, + +466 +00:26:51,790 --> 00:26:56,210 +take what? array and return array and this is not + +467 +00:26:56,210 --> 00:27:01,080 +everywhereBy calling x, you want to make the + +468 +00:27:01,080 --> 00:27:03,080 +change What is the purpose of this gate? Because + +469 +00:27:03,080 --> 00:27:07,100 +we don't want to change any line in the client And + +470 +00:27:07,100 --> 00:27:09,740 +we want to keep using ArraySorter But instead of + +471 +00:27:09,740 --> 00:27:13,920 +x, we want to make it use y So how can we do this? + +472 +00:27:14,280 --> 00:27:19,540 +What did we agree on? That ArraySorter is an old + +473 +00:27:19,540 --> 00:27:21,970 +library that we don't want to play with and the + +474 +00:27:21,970 --> 00:27:25,030 +list sorter is the new library let's assume that + +475 +00:27:25,030 --> 00:27:28,790 +we don't have the code this code you don't have + +476 +00:27:28,790 --> 00:27:31,190 +and this code you don't have you don't know how to + +477 +00:27:31,190 --> 00:27:33,770 +play with it and the client we don't want to + +478 +00:27:33,770 --> 00:27:36,690 +change anything in it not even a line of code we + +479 +00:27:36,690 --> 00:27:40,210 +don't want to change here nor here nor here what + +480 +00:27:40,210 --> 00:27:42,450 +are we going to do? pay attention but we want to + +481 +00:27:42,450 --> 00:27:46,690 +make the client use the while look what I'm going + +482 +00:27:46,690 --> 00:27:48,170 +to do I'm going to create a new class + +483 +00:27:51,420 --> 00:27:58,160 +I want to call it MyAdapter Do you have it or not + +484 +00:27:58,160 --> 00:28:03,480 +guys? MyAdapter Now, what does my client use now? + +485 +00:28:04,040 --> 00:28:08,320 +The X I want to make the MyAdapter of the new + +486 +00:28:08,320 --> 00:28:11,420 +class from the same type of X Ok? I want to make + +487 +00:28:11,420 --> 00:28:17,700 +it an ArraySorter Ok? + +488 +00:28:18,340 --> 00:28:22,060 +And all the methods in the ArraySorter I want to + +489 +00:28:22,060 --> 00:28:25,780 +make it overwrite here So what are the existing + +490 +00:28:25,780 --> 00:28:28,580 +methods? I have a method called sort which takes + +491 +00:28:28,580 --> 00:28:34,240 +the array of integers and returns the array of + +492 +00:28:34,240 --> 00:28:36,740 +integers Do you have it or not? So did you get the + +493 +00:28:36,740 --> 00:28:40,480 +myadapter? What type is it? The array of sorts Now + +494 +00:28:40,480 --> 00:28:45,500 +if I go to the main Look with me Of course here it + +495 +00:28:45,500 --> 00:28:50,520 +only needs output So let it return null for now + +496 +00:28:51,810 --> 00:28:55,210 +Did you see what I did? I added everything I did, + +497 +00:28:55,410 --> 00:29:01,990 +guys I made a new class I named it My Adapter And + +498 +00:29:01,990 --> 00:29:05,370 +this one does extend for this one This is what I + +499 +00:29:05,370 --> 00:29:08,370 +did until now, okay? And the same methods that are + +500 +00:29:08,370 --> 00:29:14,010 +here I put them here, but they are empty Am I + +501 +00:29:14,010 --> 00:29:16,270 +right, guys? Did you see? Look with me + +502 +00:29:20,850 --> 00:29:24,170 +this is the main method in the main method, what + +503 +00:29:24,170 --> 00:29:28,890 +does the client take? ArraySorter if I remove the + +504 +00:29:28,890 --> 00:29:32,070 +ArraySorter from here and replace it with + +505 +00:29:32,070 --> 00:29:40,350 +myAdapter this adapter is equal to new myAdapter + +506 +00:29:40,350 --> 00:29:45,680 +and instead of Sorter, I send it because until now + +507 +00:29:45,680 --> 00:29:48,660 +there is no problem correct or not? this one + +508 +00:29:48,660 --> 00:29:50,820 +instead of this one but this one is still empty + +509 +00:29:50,820 --> 00:29:55,000 +and this one has what? it has the code now the + +510 +00:29:55,000 --> 00:29:59,700 +last step go to my adapter from inside it I will + +511 +00:29:59,700 --> 00:30:04,180 +use the new library what is it called? listsorter + +512 +00:30:04,180 --> 00:30:08,940 +alias equals new listsorter the client does not + +513 +00:30:08,940 --> 00:30:11,990 +know the client now is dealing with whom? he + +514 +00:30:11,990 --> 00:30:13,570 +thinks that he is dealing with an adapter which is + +515 +00:30:13,570 --> 00:30:16,630 +array of numbers and he calls the method itself A, + +516 +00:30:16,790 --> 00:30:26,510 +B and C array of numbers with me guys? now did you + +517 +00:30:26,510 --> 00:30:29,910 +find the method sort? what does it take? array of + +518 +00:30:29,910 --> 00:30:33,430 +numbers did you find that you want to turn it into + +519 +00:30:33,430 --> 00:30:36,550 +a list to call the method in the array of numbers? + +520 +00:30:36,870 --> 00:30:40,230 +for example, it wants to make a list of integers + +521 +00:30:41,940 --> 00:30:47,880 +this L is equal to new ArrayList and then I want + +522 +00:30:47,880 --> 00:30:54,460 +to say to each integer n in numbers go to L and + +523 +00:30:54,460 --> 00:31:03,500 +say add n what am I doing guys?That's it. I + +524 +00:31:03,500 --> 00:31:04,980 +created .. there are ways .. there are ways that + +525 +00:31:04,980 --> 00:31:07,600 +might be easier to convert, but my goal is to + +526 +00:31:07,600 --> 00:31:08,880 +create .. did you see the array that came at the + +527 +00:31:08,880 --> 00:31:11,740 +end turned into a list? Because its headers are + +528 +00:31:11,740 --> 00:31:14,400 +with whom? With the new library. If you come to + +529 +00:31:14,400 --> 00:31:18,900 +the new library, you say ls.sort. I give it an L. + +530 +00:31:19,940 --> 00:31:21,440 +But this is of course .. what does it return? + +531 +00:31:22,320 --> 00:31:29,250 +Result list. Of what kind? a list of integers we + +532 +00:31:29,250 --> 00:31:31,890 +are not done yet this getInt will give us a result + +533 +00:31:31,890 --> 00:31:36,050 +can you return the result list? no, it is a list + +534 +00:31:36,050 --> 00:31:39,050 +if you return it, it will become a Array so you + +535 +00:31:39,050 --> 00:31:41,530 +will create a new Array which is resultArray is + +536 +00:31:41,530 --> 00:31:51,110 +equal to new Int size is the same as resultList + +537 +00:31:51,110 --> 00:31:56,150 +.size I made an array and I want to fill it but + +538 +00:31:56,150 --> 00:32:01,170 +for each for integer i equal to zero, i less than + +539 +00:32:01,170 --> 00:32:09,450 +resultArray.length i plus plus now take from put + +540 +00:32:09,450 --> 00:32:14,210 +in the resultArray i and go to the result list and + +541 +00:32:14,210 --> 00:32:18,890 +say get i and in the end you say return + +542 +00:32:18,890 --> 00:32:21,410 +resultArray + +543 +00:32:22,020 --> 00:32:25,880 +Now, this code from here to here is for the return + +544 +00:32:25,880 --> 00:32:28,460 +type And this code from here to here is for the + +545 +00:32:28,460 --> 00:32:32,720 +input type And this method is sort which is + +546 +00:32:32,720 --> 00:32:35,940 +supposed to be present where? In the array, in the + +547 +00:32:35,940 --> 00:32:40,900 +array sorter So, when we come to edit this drawing + +548 +00:32:40,900 --> 00:32:48,000 +Now, this adapter from inside This is the adapter + +549 +00:32:48,000 --> 00:32:51,540 +From inside, I am using an object from whom? + +550 +00:32:58,450 --> 00:33:03,750 +From inside A, + +551 +00:33:04,050 --> 00:33:11,290 +I use Y dot AA and from inside B, I use Y dot AA + +552 +00:33:13,980 --> 00:33:18,280 +bb because the last step I had notice that I + +553 +00:33:18,280 --> 00:33:21,640 +didn't catch the client code I didn't catch the x + +554 +00:33:21,640 --> 00:33:25,140 +code and I didn't catch the y code I only made an + +555 +00:33:25,140 --> 00:33:28,820 +adapter of the same type x because I linked them + +556 +00:33:28,820 --> 00:33:31,680 +all together in the main in the main I created an + +557 +00:33:31,680 --> 00:33:33,320 +object from the client which I didn't change + +558 +00:33:33,320 --> 00:33:38,040 +anything because I had a array sorter instead I + +559 +00:33:38,040 --> 00:33:41,360 +made a meanThe adapter. And then I went to the + +560 +00:33:41,360 --> 00:33:44,840 +client and told him setSorter and I gave him the + +561 +00:33:44,840 --> 00:33:47,920 +adapter. The client went silent because it took + +562 +00:33:47,920 --> 00:33:50,800 +the arraySorter. Okay, but from inside it will use + +563 +00:33:50,800 --> 00:33:54,670 +the listSorter.Okay? And they come and tell me the + +564 +00:33:54,670 --> 00:33:56,290 +process. The client is normal, nothing has + +565 +00:33:56,290 --> 00:33:58,570 +changed. And from within the process, I go and + +566 +00:33:58,570 --> 00:34:01,830 +claim the sort. But he will claim the sort that is + +567 +00:34:01,830 --> 00:34:04,010 +in the adapter. I deceived him. I provided him + +568 +00:34:04,010 --> 00:34:06,410 +with something of the same type that he wants, but + +569 +00:34:06,410 --> 00:34:09,710 +from within it, I use the library again. And thus, + +570 +00:34:09,790 --> 00:34:11,970 +if the client has a thousand claims, he will + +571 +00:34:11,970 --> 00:34:16,890 +continue to claim the methods themselves, A and B + +572 +00:34:16,890 --> 00:34:19,790 +and C.Okay, but from inside, but calling the new + +573 +00:34:19,790 --> 00:34:22,230 +library. See how this is all object-oriented. + +574 +00:34:22,390 --> 00:34:23,970 +There is no new information in object-oriented. + +575 +00:34:24,390 --> 00:34:28,730 +But for smart use. Instead of changing the library + +576 +00:34:28,730 --> 00:34:32,570 +now from X to Y without changing the client. But + +577 +00:34:32,570 --> 00:34:35,310 +of course, this implementation of this thing also + +578 +00:34:35,310 --> 00:34:37,610 +depends on how you design the code to have + +579 +00:34:37,610 --> 00:34:41,690 +dependency injection. Meaning that when you create + +580 +00:34:41,690 --> 00:34:44,670 +the same client, you have to send it from outside. + +581 +00:34:46,120 --> 00:34:49,160 +The adapter, the sorter, okay? We always say that + +582 +00:34:49,160 --> 00:34:50,780 +the best thing to do is to send any dependencies + +583 +00:34:50,780 --> 00:34:52,020 +from outside instead of creating them inside the + +584 +00:34:52,020 --> 00:34:55,980 +client. The advantage of sending them from outside + +585 +00:34:55,980 --> 00:34:58,260 +is that you can change them. This is what I did, + +586 +00:34:58,880 --> 00:35:04,340 +okay? I had a sorter, I extended it to confuse the + +587 +00:35:04,340 --> 00:35:06,640 +client that this is the same thing that you are + +588 +00:35:06,640 --> 00:35:09,400 +used to. But actually, this adapter is a bridge. + +589 +00:35:10,370 --> 00:35:13,870 +From inside, who used it? My library. And whose + +590 +00:35:13,870 --> 00:35:16,670 +idea is this? The adapter. It became like a + +591 +00:35:16,670 --> 00:35:22,890 +converter. Okay? Okay, based on this talk, let's + +592 +00:35:22,890 --> 00:35:26,650 +see the adapter. Now, before we read the talk, + +593 +00:35:26,990 --> 00:35:29,650 +this is another example of the idea of ​​the + +594 +00:35:29,650 --> 00:35:30,950 +adapter. Now, + +595 +00:35:34,600 --> 00:35:36,860 +I have a program that reads data from the stock + +596 +00:35:36,860 --> 00:35:42,300 +market and brings the data as xml and analyzes the + +597 +00:35:42,300 --> 00:35:46,900 +data I read the data in the form of xml and + +598 +00:35:46,900 --> 00:35:51,000 +analyze it The program that I made takes the data + +599 +00:35:51,000 --> 00:35:55,660 +in the form of xml and works on it I have a + +600 +00:35:55,660 --> 00:35:59,680 +component that reads the data as xml and I read + +601 +00:35:59,680 --> 00:36:04,570 +from it and analyze it Now, I found a library that + +602 +00:36:04,570 --> 00:36:06,950 +is better in analysis and faster, it does + +603 +00:36:06,950 --> 00:36:09,810 +visualization for me, this is it, but this library + +604 +00:36:09,810 --> 00:36:15,450 +takes the data in JSON form. Okay, how can I use + +605 +00:36:15,450 --> 00:36:18,290 +this library without changing the code in the + +606 +00:36:18,290 --> 00:36:22,090 +client? The application is mine, the input is xml + +607 +00:36:22,090 --> 00:36:27,230 +and the output is xml. So, in order to use the new + +608 +00:36:27,230 --> 00:36:31,230 +library, all I can do is create an adapter. Now, + +609 +00:36:34,870 --> 00:36:38,350 +Actually, my application used to use a class of + +610 +00:36:38,350 --> 00:36:43,170 +XML type, so I give it the same class of XML type, + +611 +00:36:43,230 --> 00:36:47,150 +but I made it as an adapter of the same type that + +612 +00:36:47,150 --> 00:36:50,090 +you expected, client, of the XML type, like here + +613 +00:36:50,090 --> 00:36:53,110 +of the X type that I left, this adapter is of the + +614 +00:36:53,110 --> 00:36:58,830 +X type, I did not extend it, but internallyAll the + +615 +00:36:58,830 --> 00:37:01,150 +data that I transfer to JSON and send it to the + +616 +00:37:01,150 --> 00:37:03,530 +library and the library runs it and does analysis + +617 +00:37:03,530 --> 00:37:05,730 +and gives me results and returns the results as + +618 +00:37:05,730 --> 00:37:12,370 +JSON Now this adapter will take the data returned + +619 +00:37:12,370 --> 00:37:14,790 +as JSON and returns it as XML and send it to whom? + +620 +00:37:15,940 --> 00:37:18,340 +to my library, which means that my library takes + +621 +00:37:18,340 --> 00:37:24,020 +the input of xml and returns it to xml the idea is + +622 +00:37:24,020 --> 00:37:26,020 +that this adapter is of the same type that is + +623 +00:37:26,020 --> 00:37:28,620 +expected from the application, but it claims that + +624 +00:37:28,620 --> 00:37:30,740 +it takes xml and returns it to json and sends it + +625 +00:37:30,740 --> 00:37:33,640 +to this one it returns to json and returns the + +626 +00:37:33,640 --> 00:37:36,680 +second xml and returns it to my application and so + +627 +00:37:36,680 --> 00:37:39,620 +I don't change anything in the application of + +628 +00:37:39,620 --> 00:37:41,600 +course, there is a drawback that there are + +629 +00:37:41,600 --> 00:37:42,760 +conversion operations that have been done here + +630 +00:37:43,340 --> 00:37:45,780 +Okay? But if the download process does not take + +631 +00:37:45,780 --> 00:37:49,960 +time, there is no problem in doing it because it + +632 +00:37:49,960 --> 00:37:53,120 +saves you a lot of time. The change here is + +633 +00:37:53,120 --> 00:37:56,52 + +667 +00:39:42,130 --> 00:39:44,050 +traditional changes made by programmers in the + +668 +00:39:44,050 --> 00:39:48,750 +beginning takes a lot of time from us. So I just + +669 +00:39:48,750 --> 00:39:52,150 +made him agree with the old library, but I did + +670 +00:39:52,150 --> 00:39:56,850 +something to deceive him. Through it, it uses the + +671 +00:39:56,850 --> 00:39:59,650 +same method as the old library, but inside it, it + +672 +00:39:59,650 --> 00:40:03,030 +uses the method of the new library. We cannot + +673 +00:40:03,030 --> 00:40:05,090 +change the library. Of course, you cannot change + +674 +00:40:05,090 --> 00:40:09,230 +the old library or the new one. Since we may not + +675 +00:40:09,230 --> 00:40:11,890 +have its source code. It is normal to go to the + +676 +00:40:11,890 --> 00:40:14,270 +library and change its source code to make it like + +677 +00:40:14,270 --> 00:40:17,750 +this. The change here is not correct, and the + +678 +00:40:17,750 --> 00:40:21,380 +change in the library too. It's not correct, okay? + +679 +00:40:21,860 --> 00:40:23,960 +So you don't change the Y to make it consistent + +680 +00:40:23,960 --> 00:40:27,520 +with the X Even if the source code is there, there + +681 +00:40:27,520 --> 00:40:30,500 +might be updates in this library You go get the + +682 +00:40:30,500 --> 00:40:32,860 +update and change it again, okay? No, it's not + +683 +00:40:32,860 --> 00:40:37,920 +correct. Even if we did have the source code of the + +684 +00:40:37,920 --> 00:40:40,480 +library, we probably should not change the library + +685 +00:40:40,480 --> 00:40:43,400 +for each domain-specific application. Libraries + +686 +00:40:43,400 --> 00:40:45,340 +are usually brought from outside and used as they + +687 +00:40:45,340 --> 00:40:46,900 +are. They don't try to change it. Because as I + +688 +00:40:46,900 --> 00:40:49,120 +said, they develop and make updates on it. Not + +689 +00:40:49,120 --> 00:40:51,300 +every time you bring a new version, you go and + +690 +00:40:51,300 --> 00:40:52,460 +change it. + +691 +00:40:54,940 --> 00:40:59,000 +Because this is today's diagram of the adapter + +692 +00:40:59,000 --> 00:41:01,440 +pattern. Let's understand it and fall on the + +693 +00:41:01,440 --> 00:41:04,930 +example that we explained. Now my client is + +694 +00:41:04,930 --> 00:41:07,810 +programmed to deal with a library called target + +695 +00:41:07,810 --> 00:41:11,430 +and use a method called request Now let me give + +696 +00:41:11,430 --> 00:41:13,530 +you a hint, bring me a new library, what is the + +697 +00:41:13,530 --> 00:41:16,930 +name of it? Adaptee, what is the word adaptee in + +698 +00:41:16,930 --> 00:41:19,990 +English? Air conditioning adapter + +699 +00:41:35,040 --> 00:41:36,440 +Visitor + +700 +00:41:42,150 --> 00:41:48,230 +Yes, Mozart, or MVT, Madouk, for example. Okay, so + +701 +00:41:48,230 --> 00:41:50,490 +this is the new library, and the new library has a + +702 +00:41:50,490 --> 00:41:53,610 +method called request, or it has a name called + +703 +00:41:53,610 --> 00:41:58,190 +specific request. This is for whom? For this one, + +704 +00:41:58,210 --> 00:42:00,310 +but this one takes a different input and returns a + +705 +00:42:00,310 --> 00:42:03,510 +different output. Now, it wants to make the client + +706 +00:42:03,510 --> 00:42:08,490 +use the adaptive without changing anything on the + +707 +00:42:08,490 --> 00:42:12,470 +client I went and made a new class from the same + +708 +00:42:12,470 --> 00:42:16,550 +type of target which is extent target and from + +709 +00:42:16,550 --> 00:42:19,710 +inside it I use the adepti this is related to + +710 +00:42:19,710 --> 00:42:25,230 +association and all I have to do is when I create + +711 +00:42:25,230 --> 00:42:28,310 +the client instead of passing him a target I pass + +712 +00:42:28,310 --> 00:42:31,610 +him an object from whom? from the adapter notice + +713 +00:42:31,610 --> 00:42:35,010 +here that there is inside the request I made a + +714 +00:42:35,010 --> 00:42:38,450 +list that goes to the adaptee and say specific + +715 +00:42:38,450 --> 00:42:41,890 +request as I exactly through the array sorter + +716 +00:42:41,890 --> 00:42:46,570 +method sort I called the sort that is in the list + +717 +00:42:46,570 --> 00:42:50,390 +sorter after I made a list for the input and + +718 +00:42:50,390 --> 00:42:53,730 +output after it prepares for the return so this is + +719 +00:42:53,730 --> 00:42:57,880 +the shape of the adapter where it is here It takes + +720 +00:42:57,880 --> 00:43:01,440 +the old class and uses the new class from inside + +721 +00:43:01,440 --> 00:43:04,500 +Because + +722 +00:43:04,500 --> 00:43:07,520 +this is another example that I found on the + +723 +00:43:07,520 --> 00:43:11,060 +internet using the adapter Because this is a + +724 +00:43:11,060 --> 00:43:14,520 +drawing editor with user interface components, + +725 +00:43:14,520 --> 00:43:18,020 +okay? So now I have an external library called + +726 +00:43:18,020 --> 00:43:21,700 +TextView This is in a library outside but I want + +727 +00:43:21,700 --> 00:43:27,020 +to use it from the drawing editor that I have Now, + +728 +00:43:27,020 --> 00:43:30,420 +the drawing editor is dealing with an item called + +729 +00:43:30,420 --> 00:43:36,160 +Shape Shape has methods like bounding box and + +730 +00:43:36,160 --> 00:43:39,260 +create manipulator I don't know what these methods + +731 +00:43:39,260 --> 00:43:42,500 +are I have a new class TextView and I want to use + +732 +00:43:42,500 --> 00:43:46,420 +it instead of Shape So what is going to do here is + +733 +00:43:46,420 --> 00:43:49,220 +create a class called TextShape which is like the + +734 +00:43:49,220 --> 00:43:53,830 +adapter Extended from what? From shape, it took the + +735 +00:43:53,830 --> 00:43:57,610 +same type of shape And instead of taking the same + +736 +00:43:57,610 --> 00:43:59,570 +type of shape, it made an override for what? For + +737 +00:43:59,570 --> 00:44:02,450 +the method boundingBox and createManipulate But + +738 +00:44:02,450 --> 00:44:05,850 +inside it, it used an object from what? From + +739 +00:44:05,850 --> 00:44:11,630 +TextView So it took the old type And inside it, it + +740 +00:44:11,630 --> 00:44:14,630 +used an object from the new type And of course, + +741 +00:44:14,990 --> 00:44:19,140 +when the boundingBox takes over I go to this item + +742 +00:44:19,140 --> 00:44:22,040 +which is TextView and it executes getExtent() This + +743 +00:44:22,040 --> 00:44:25,660 +getExtent() method is here in return to the + +744 +00:44:25,660 --> 00:44:27,260 +bounding box So here there is no bounding box, + +745 +00:44:27,400 --> 00:44:30,000 +there is a get instead of it and it does the same + +746 +00:44:30,000 --> 00:44:33,020 +thing And the same thing, when it calls + +747 +00:44:33,020 --> 00:44:35,540 +createManipulator() it goes to Text and calls + +748 +00:44:35,540 --> 00:44:39,520 +TextManipulator() So actually I created TextView + +749 +00:44:39,520 --> 00:44:42,300 +with the drawing editor without changing anything + +750 +00:44:42,300 --> 00:44:45,500 +on the drawing editor This is done by default with + +751 +00:44:45,500 --> 00:44:49,040 +Shape So I let him deal with the text view by + +752 +00:44:49,040 --> 00:44:53,780 +using the adapter. It uses a shape and at the same + +753 +00:44:53,780 --> 00:44:56,220 +time it uses the text view from inside. And any + +754 +00:44:56,220 --> 00:44:59,080 +request on these methods turns them into the new + +755 +00:44:59,080 --> 00:45:03,380 +item. So this is also an example of the + +756 +00:45:03,380 --> 00:45:04,860 +application of the adapter pattern. This is how we + +757 +00:45:04,860 --> 00:45:07,560 +completed the adapter design pattern. Is there any + +758 +00:45:07,560 --> 00:45:10,500 +question, guys? Okay, thank you. diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/pD7IG4O9Gzo_postprocess.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/pD7IG4O9Gzo_postprocess.srt new file mode 100644 index 0000000000000000000000000000000000000000..029c30119f0de7c588bc895d21764dfd510b76bb --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/pD7IG4O9Gzo_postprocess.srt @@ -0,0 +1,3032 @@ +1 +00:00:05,350 --> 00:00:08,670 +طب يا جماعة السلام عليكم اليوم ان شاء الله يا + +2 +00:00:08,670 --> 00:00:10,970 +جماعة رح نبدأ في القسم التالت من ال design + +3 +00:00:10,970 --> 00:00:14,250 +patterns و هو يعني قسم بسيط ان شاء الله اللي هو ال + +4 +00:00:14,250 --> 00:00:17,390 +structural design patterns مررنا على ال creational + +5 +00:00:17,390 --> 00:00:19,770 +design patterns اللي هي design patterns اللي علاقة + +6 +00:00:19,770 --> 00:00:22,190 +بإنشاء ال object We passed to the second section, + +7 +00:00:22,330 --> 00:00:25,350 +which is the behavioral design patterns, which + +8 +00:00:25,350 --> 00:00:28,050 +includes the observer, event bus, command, + +9 +00:00:29,390 --> 00:00:32,170 +strategy, etc. which is responsible for the + +10 +00:00:32,170 --> 00:00:34,810 +behavior and communication between parts of the + +11 +00:00:34,810 --> 00:00:37,230 +application. The third section is the structure, + +12 +00:00:37,450 --> 00:00:38,590 +which has to do with the structure of the + +13 +00:00:38,590 --> 00:00:40,490 +application and how to design it in a simplified + +14 +00:00:40,490 --> 00:00:43,630 +way to make it easy to use directly by clients or + +15 +00:00:43,630 --> 00:00:47,400 +developers.In this section, we will go over 6 + +16 +00:00:47,400 --> 00:00:51,320 +design patterns which are facade, decorator, + +17 +00:00:51,440 --> 00:00:55,600 +adapter, composite, proxy and flyweight In this + +18 +00:00:55,600 --> 00:00:58,280 +lecture, we will take 2 design patterns which are + +19 +00:00:58,280 --> 00:01:01,500 +facade and adapter + +20 +00:01:03,870 --> 00:01:05,950 +Okay, let's start with the first design pattern, + +21 +00:01:06,090 --> 00:01:07,570 +which is corruption. Of course, this word + +22 +00:01:07,570 --> 00:01:10,490 +corruption, or sometimes we read it corruption, is + +23 +00:01:10,490 --> 00:01:13,550 +not an English word, it is a French word. Notice + +24 +00:01:13,550 --> 00:01:15,710 +that maybe this character looks a little + +25 +00:01:15,710 --> 00:01:18,870 +different, not like C, like C, but there is a + +26 +00:01:18,870 --> 00:01:22,750 +difference. It means interface or face. The word + +27 +00:01:22,750 --> 00:01:26,390 +corruption means interface or face. Corruption is + +28 +00:01:26,390 --> 00:01:31,790 +a simple design pattern.I consider it one of the + +29 +00:01:31,790 --> 00:01:33,930 +simple things, true it's simple but it's very + +30 +00:01:33,930 --> 00:01:38,270 +important and I'll tell you in a very short way to + +31 +00:01:38,270 --> 00:01:43,430 +understand this, now imagine that you made a + +32 +00:01:43,430 --> 00:01:48,870 +library for example to book or order, to buy a + +33 +00:01:48,870 --> 00:01:52,190 +certain order and book and ship it Because the API + +34 +00:01:52,190 --> 00:01:55,450 +or your library is like this because the developer + +35 +00:01:55,450 --> 00:01:59,210 +is a programmer, he wants to use your library to + +36 +00:01:59,210 --> 00:02:01,730 +call some companies to implement the process of + +37 +00:02:01,730 --> 00:02:04,450 +buying orders. For example, this is the process of + +38 +00:02:04,450 --> 00:02:08,830 +ordering. The process of ordering, in order for + +39 +00:02:08,830 --> 00:02:11,570 +the developer to call or implement it, he needs to + +40 +00:02:11,570 --> 00:02:15,370 +call a set of methods. There is a method called, + +41 +00:02:15,590 --> 00:02:16,950 +for example, search item + +42 +00:02:20,480 --> 00:02:31,900 +and then add item to basket and + +43 +00:02:31,900 --> 00:02:37,940 +then execute check out method and then execute + +44 +00:02:37,940 --> 00:02:42,880 +request payment + +45 +00:02:42,880 --> 00:02:47,140 +gate and + +46 +00:02:47,140 --> 00:02:55,300 +then process payment و + +47 +00:02:55,300 --> 00:03:01,880 +بعدين arrange for delivery + +48 +00:03:03,160 --> 00:03:06,160 +to charge the item because these are a set of + +49 +00:03:06,160 --> 00:03:09,260 +steps anyone who wants to make an order has to + +50 +00:03:09,260 --> 00:03:12,080 +follow these methods in order and of course these + +51 +00:03:12,080 --> 00:03:15,060 +methods depend on each other for example, I can't + +52 +00:03:15,060 --> 00:03:17,440 +make a request to the payment gate unless I make a + +53 +00:03:17,440 --> 00:03:22,080 +check-out for example what I'm saying is that this + +54 +00:03:22,080 --> 00:03:24,280 +API was saved by me as a programmer and I saved it + +55 +00:03:24,280 --> 00:03:26,860 +to whom? to other developers to follow this + +56 +00:03:26,860 --> 00:03:31,790 +library. Corruption in short meansalways try when + +57 +00:03:31,790 --> 00:03:33,890 +you save a library make it easier for the + +58 +00:03:33,890 --> 00:03:36,370 +developer to execute the important operations + +59 +00:03:36,370 --> 00:03:40,450 +okay? so now the developer wants to make an order + +60 +00:03:40,450 --> 00:03:43,150 +process in order to make the order he must follow + +61 +00:03:43,150 --> 00:03:46,010 +these methods in detail one by one in a certain + +62 +00:03:46,010 --> 00:03:48,910 +order and of course each method depends on the + +63 +00:03:48,910 --> 00:03:50,670 +other so you have to wait for the output of a + +64 +00:03:50,670 --> 00:03:54,090 +method in order to execute the next method now the + +65 +00:03:54,090 --> 00:03:55,810 +developers who come from outside who use the + +66 +00:03:55,810 --> 00:03:58,070 +library do not know these details so they have to + +67 +00:03:58,070 --> 00:04:01,200 +read the documentationso that they know what are + +68 +00:04:01,200 --> 00:04:03,700 +the sequence of steps they have to execute and + +69 +00:04:03,700 --> 00:04:05,760 +what is the input for each method and what is the + +70 +00:04:05,760 --> 00:04:08,520 +output that returns the method. Right or wrong? So + +71 +00:04:08,520 --> 00:04:10,320 +that the developer can execute this process, he + +72 +00:04:10,320 --> 00:04:12,720 +has to understand the details of the methods, what + +73 +00:04:12,720 --> 00:04:14,660 +each method takes, what each method returns and + +74 +00:04:14,660 --> 00:04:17,380 +how the order that is required. So instead of + +75 +00:04:17,380 --> 00:04:20,500 +defeating the developer and providing them with + +76 +00:04:20,500 --> 00:04:22,520 +... because this means that your interface is + +77 +00:04:22,520 --> 00:04:26,460 +somewhat difficult to use.By the way, each method + +78 +00:04:26,460 --> 00:04:28,880 +can be found in a different class. Right or wrong? + +79 +00:04:29,360 --> 00:04:33,450 +Because these methods are found in a class.In + +80 +00:04:33,450 --> 00:04:35,110 +order for him to use this method, he has to create + +81 +00:04:35,110 --> 00:04:37,470 +an object from whom? From this class, and this is + +82 +00:04:37,470 --> 00:04:40,450 +present in another class, and this is normal For + +83 +00:04:40,450 --> 00:04:43,370 +example, the payment is all present in a module + +84 +00:04:43,370 --> 00:04:45,990 +separate from who? From the process of check out, + +85 +00:04:46,030 --> 00:04:49,890 +for example Instead of defeating the developer and + +86 +00:04:49,890 --> 00:04:53,250 +letting him go and check or know what objects he + +87 +00:04:53,250 --> 00:04:54,970 +wants to create and what method he wants to use + +88 +00:04:54,970 --> 00:04:57,250 +and what is the input and output He tells you to + +89 +00:04:57,250 --> 00:04:59,470 +make it easy for him, you can provide him one + +90 +00:04:59,470 --> 00:05:09,840 +method its name is search and order and + +91 +00:05:09,840 --> 00:05:14,720 +this method gives him parameters which are all the + +92 +00:05:14,720 --> 00:05:19,060 +necessary data for example the name of the item, + +93 +00:05:20,340 --> 00:05:26,900 +your address, username and password these are the + +94 +00:05:26,900 --> 00:05:28,500 +necessary information to execute all these steps + +95 +00:05:30,300 --> 00:05:34,140 +Now, you got one method, but through this method, + +96 +00:05:34,560 --> 00:05:36,820 +of course he will go and get support from whom? + +97 +00:05:38,040 --> 00:05:41,900 +the rest of them, so really the steps you took are + +98 +00:05:41,900 --> 00:05:44,380 +the same but it really made it easier for the + +99 +00:05:44,380 --> 00:05:49,120 +client that instead of going and reviewing the + +100 +00:05:49,120 --> 00:05:50,980 +documentation and understanding all of this, you + +101 +00:05:50,980 --> 00:05:53,220 +provided him with a method that made it easier for + +102 +00:05:53,220 --> 00:05:54,700 +you that you tell him straight away search and + +103 +00:05:54,700 --> 00:05:57,660 +order and give him the necessary details to + +104 +00:05:57,660 --> 00:05:59,260 +implement these steps which is for example the + +105 +00:05:59,260 --> 00:06:01,760 +item and what is your address and what will the + +106 +00:06:01,760 --> 00:06:04,540 +charger do in the end or what are your payment + +107 +00:06:04,540 --> 00:06:08,370 +data and he himself implements these stepsI + +108 +00:06:08,370 --> 00:06:10,370 +actually provided him with a simplified interface + +109 +00:06:10,370 --> 00:06:14,230 +that deals with the subsystems or components that + +110 +00:06:14,230 --> 00:06:18,210 +I have in the system. Now, we will read this + +111 +00:06:18,210 --> 00:06:20,190 +again. Let's take a look at the idea of + +112 +00:06:20,190 --> 00:06:25,670 +​​corruption. This is my system.The system is made + +113 +00:06:25,670 --> 00:06:32,710 +up of components which can be classes or packages + +114 +00:06:32,710 --> 00:06:36,270 +or modules Each module is responsible for + +115 +00:06:36,270 --> 00:06:40,690 +executing a specific task For example, this one is + +116 +00:06:40,690 --> 00:06:42,890 +responsible for shopping and basketball, this one + +117 +00:06:42,890 --> 00:06:44,190 +is responsible for payment, this one is + +118 +00:06:44,190 --> 00:06:45,350 +responsible for search, this one is responsible + +119 +00:06:45,350 --> 00:06:50,150 +for delivery, and so on Now, these people outside + +120 +00:06:52,180 --> 00:06:55,220 +Developers can be external systems that deal with + +121 +00:06:55,220 --> 00:07:00,260 +my office. Now, in the current situation, external + +122 +00:07:00,260 --> 00:07:02,480 +systems, any one of them, in order to execute + +123 +00:07:02,480 --> 00:07:06,040 +commands, must communicate with more than one + +124 +00:07:06,040 --> 00:07:09,820 +component. This must deal with this, this must + +125 +00:07:09,820 --> 00:07:13,000 +deal with this, this must deal with this, for + +126 +00:07:13,000 --> 00:07:16,980 +example, and so on.The programmer who made this + +127 +00:07:16,980 --> 00:07:20,840 +component had to understand the sub-components in + +128 +00:07:20,840 --> 00:07:23,960 +order to be able to deal with them Like here, in + +129 +00:07:23,960 --> 00:07:27,340 +order to buy the order, I had to deal with more + +130 +00:07:27,340 --> 00:07:31,180 +than one class and more than one method It means + +131 +00:07:31,180 --> 00:07:34,260 +that the people outside your system, make it + +132 +00:07:34,260 --> 00:07:36,720 +easier for them to use it So to make it easier for + +133 +00:07:36,720 --> 00:07:41,050 +them to use it, look at my system as it is But + +134 +00:07:41,050 --> 00:07:45,470 +what did I save here? A face What is this called? + +135 +00:07:46,210 --> 00:07:50,170 +Corruption Simply, this could be a class, a single + +136 +00:07:50,170 --> 00:07:53,470 +class But who is this class for? For the people + +137 +00:07:53,470 --> 00:07:57,230 +outside Because if you want to make an order, all + +138 +00:07:57,230 --> 00:07:58,670 +you have to do is to extract an object from whom? + +139 +00:07:59,090 --> 00:08:03,310 +From this class and call a single method Now from + +140 +00:08:03,310 --> 00:08:09,550 +within the method, what does this call?The + +141 +00:08:09,550 --> 00:08:13,210 +external system or the client or the developer + +142 +00:08:13,210 --> 00:08:16,890 +doesn't know what's going on inside, they only + +143 +00:08:16,890 --> 00:08:20,030 +support the corruption and the corruption deals + +144 +00:08:20,030 --> 00:08:25,890 +with the internal parts I didn't modify the code + +145 +00:08:25,890 --> 00:08:29,170 +here, everything I did is to add a face that makes + +146 +00:08:29,170 --> 00:08:31,270 +it easier for the user to do whatever he wants + +147 +00:08:32,370 --> 00:08:34,610 +Instead of going through the details and steps, it + +148 +00:08:34,610 --> 00:08:37,130 +only uses the classhead, which is an addition to + +149 +00:08:37,130 --> 00:08:39,910 +my system. For whom is the addition made + +150 +00:08:39,910 --> 00:08:42,270 +specifically? For people from outside. Because + +151 +00:08:42,270 --> 00:08:44,410 +this provides two features. The first feature + +152 +00:08:44,410 --> 00:08:46,390 +makes it easier to use the external developer. + +153 +00:08:46,910 --> 00:08:49,490 +Always the successful system, guys. We always say + +154 +00:08:49,490 --> 00:08:52,760 +that if you design an API,think about who is going + +155 +00:08:52,760 --> 00:08:55,720 +to use the code, don't think about yourself, as a + +156 +00:08:55,720 --> 00:08:58,020 +developer, you always see your code 100% and you + +157 +00:08:58,020 --> 00:09:02,000 +understand it, but you have to think about who is + +158 +00:09:02,000 --> 00:09:03,380 +going to use the code behind you, of course, + +159 +00:09:03,480 --> 00:09:07,260 +developers are smart, they do the opposite, they + +160 +00:09:07,260 --> 00:09:09,700 +design the code so that they can understand it, + +161 +00:09:09,700 --> 00:09:13,610 +why? they design it well and say it safelyOkay? + +162 +00:09:14,030 --> 00:09:16,470 +No, I say it with confidence because if someone + +163 +00:09:16,470 --> 00:09:18,590 +else comes to me, what do I do? I say it with + +164 +00:09:18,590 --> 00:09:20,450 +confidence because if someone else comes to me, + +165 +00:09:20,450 --> 00:09:21,210 +someone else comes to me, what do I do? I say it + +166 +00:09:21,210 --> 00:09:22,370 +with confidence because if someone else comes to + +167 +00:09:22,370 --> 00:09:22,970 +if someone else comes to me, what do I do? I say + +168 +00:09:22,970 --> 00:09:23,090 +to me, what do I do? I say it with confidence + +169 +00:09:23,090 --> 00:09:23,470 +comes to me, what do I do? I say it with + +170 +00:09:23,470 --> 00:09:23,870 +what do I do? I say it with confidence because if + +171 +00:09:23,870 --> 00:09:23,990 +someone else comes to me, what do I do? I say it + +172 +00:09:23,990 --> 00:09:24,130 +with confidence because if someone else comes to + +173 +00:09:24,130 --> 00:09:25,370 +me, what do I do? I say it with confidence because + +174 +00:09:25,370 --> 00:09:28,430 +if someone else comes to me, what do I do? I say + +175 +00:09:28,430 --> 00:09:35,210 +it withThe second advantage is that the coupling + +176 +00:09:35,210 --> 00:09:40,450 +is less than that of external systems that deal + +177 +00:09:40,450 --> 00:09:42,490 +with internal parts of the system. This means that + +178 +00:09:42,490 --> 00:09:44,490 +if any component is changed from here, it will + +179 +00:09:44,490 --> 00:09:46,330 +affect whom? It will affect the people outside. + +180 +00:09:46,690 --> 00:09:50,650 +But here if there is any change, the name of the + +181 +00:09:50,650 --> 00:09:52,330 +class is changed, a new method is added, I will + +182 +00:09:52,330 --> 00:09:55,370 +only change where?In corruption, it's the same + +183 +00:09:55,370 --> 00:09:58,070 +idea of the factory, when everyone uses the + +184 +00:09:58,070 --> 00:10:00,070 +factory to create, if there is a change in the + +185 +00:10:00,070 --> 00:10:03,230 +classes, I change only where? In the factory, but + +186 +00:10:03,230 --> 00:10:05,750 +of course the goal of the factory is different + +187 +00:10:05,750 --> 00:10:08,370 +from corruption, the factory is specifically for + +188 +00:10:08,370 --> 00:10:11,740 +the creation of objects but corruption to + +189 +00:10:11,740 --> 00:10:16,760 +implement a certain process and this process has + +190 +00:10:16,760 --> 00:10:19,180 +complicated steps I hide this complexity from the + +191 +00:10:19,180 --> 00:10:24,000 +client by using corruption a specific example look + +192 +00:10:24,000 --> 00:10:27,700 +with me on this example a very simple example if + +193 +00:10:27,700 --> 00:10:30,940 +you want to make a program to organize tourist + +194 +00:10:30,940 --> 00:10:37,520 +trips any tourist trip at least includes booking a + +195 +00:10:37,520 --> 00:10:41,690 +hotel and booking a flightOkay, now you have a + +196 +00:10:41,690 --> 00:10:44,090 +component or class responsible for booking hotels, + +197 +00:10:45,090 --> 00:10:47,350 +which is actually for example, it has a method, it + +198 +00:10:47,350 --> 00:10:49,570 +searches, you give it a date from where to where + +199 +00:10:49,570 --> 00:10:52,010 +you want to travel, from this date to this date, + +200 +00:10:52,190 --> 00:10:54,790 +it returns you a list of hotels available in this + +201 +00:10:54,790 --> 00:10:57,690 +date, and you have another class responsible for + +202 +00:10:57,690 --> 00:11:01,310 +booking flights, it also gives it a date from + +203 +00:11:01,310 --> 00:11:03,330 +where to where, and it returns you flights + +204 +00:11:03,330 --> 00:11:07,000 +available in this date, Now, anyone who wants to + +205 +00:11:07,000 --> 00:11:10,320 +book a flight must use this component to search + +206 +00:11:10,320 --> 00:11:13,880 +for flights available in hotels and use it to + +207 +00:11:13,880 --> 00:11:15,920 +create an object from the flight booker to search + +208 +00:11:15,920 --> 00:11:20,420 +for the flights available in this date. And then + +209 +00:11:20,420 --> 00:11:21,780 +what does he have to do? He has to do a matching + +210 +00:11:21,780 --> 00:11:27,060 +to see what booking hotels are suitable for the + +211 +00:11:27,060 --> 00:11:29,180 +flight schedule and choose the best hotel with the + +212 +00:11:29,180 --> 00:11:31,460 +best flight trip, for example, and give a + +213 +00:11:31,460 --> 00:11:32,940 +recommendation to the user. This is an additional + +214 +00:11:32,940 --> 00:11:40,140 +process.Instead of using this library, I can + +215 +00:11:40,140 --> 00:11:44,840 +provide it with a class called travelFacade Which + +216 +00:11:44,840 --> 00:11:48,520 +is inside it, I use the hotel and the flight + +217 +00:11:48,520 --> 00:11:51,300 +tomorrow And I provided it with a method called + +218 +00:11:51,300 --> 00:11:54,700 +getFlightsAndHotels + +219 +00:11:54,700 --> 00:11:59,420 +It takes the data from 1 to 2 If it is inside this + +220 +00:11:59,420 --> 00:12:03,260 +method I use the flight booker to search for + +221 +00:12:03,260 --> 00:12:06,900 +flights. This means that this person used the + +222 +00:12:06,900 --> 00:12:09,760 +hotel booker and used the flight booker. He + +223 +00:12:09,760 --> 00:12:12,460 +searched for hotels, searched for flights, made a + +224 +00:12:12,460 --> 00:12:14,340 +matching between them and found the best one and + +225 +00:12:14,340 --> 00:12:17,960 +returned the result. This is just a + +226 +00:12:17,960 --> 00:12:21,240 +simplification. Okay? And as I said, this is an + +227 +00:12:21,240 --> 00:12:23,080 +easy thing, simple and correct, but unfortunately + +228 +00:12:23,080 --> 00:12:27,040 +many developers do not do it. One of the existing + +229 +00:12:27,040 --> 00:12:33,080 +problemsWhy do we always find that the developer + +230 +00:12:33,080 --> 00:12:35,780 +thinks about how he sees the code and does not + +231 +00:12:35,780 --> 00:12:38,560 +think about how others see the code, so his design + +232 +00:12:38,560 --> 00:12:40,120 +turns out to be bad because he does not think + +233 +00:12:40,120 --> 00:12:43,440 +about others. In writing, when a student writes a + +234 +00:12:43,440 --> 00:12:45,560 +report or a final report for a graduation project, + +235 +00:12:46,360 --> 00:12:48,040 +you will find that he writes without thinking + +236 +00:12:48,040 --> 00:12:50,920 +about the reader, okay? He is the rabbit that he + +237 +00:12:50,920 --> 00:12:53,600 +writes to understand it.Okay, but when someone + +238 +00:12:53,600 --> 00:12:55,880 +comes from abroad to read what he wrote, he + +239 +00:12:55,880 --> 00:12:57,120 +doesn't understand anything, so his book turns out + +240 +00:12:57,120 --> 00:13:01,520 +to be bad. The teacher doesn't explain well, why? + +241 +00:13:02,160 --> 00:13:04,740 +Because he thinks that all people understand what + +242 +00:13:04,740 --> 00:13:07,320 +he understood, so he says two words that he + +243 +00:13:07,320 --> 00:13:09,460 +understood, but he doesn't put himself in the + +244 +00:13:09,460 --> 00:13:12,640 +place of the student. A good teacher puts himself + +245 +00:13:12,640 --> 00:13:14,840 +in the place of the student, he thinks about how + +246 +00:13:14,840 --> 00:13:18,320 +the student thinks,Okay? And he tries to answer + +247 +00:13:18,320 --> 00:13:19,300 +the question, but he doesn't know what his answer + +248 +00:13:19,300 --> 00:13:22,540 +is He thinks like his brain So this is the same + +249 +00:13:22,540 --> 00:13:26,040 +idea, a good developer thinks about how the client + +250 +00:13:26,040 --> 00:13:28,260 +or the other developer wants to use his time + +251 +00:13:28,260 --> 00:13:32,160 +Another + +252 +00:13:32,160 --> 00:13:36,370 +exampleDid you notice that I made a library to + +253 +00:13:36,370 --> 00:13:39,750 +convert videos files? Did you notice that + +254 +00:13:39,750 --> 00:13:42,110 +converting a video file has many steps? For + +255 +00:13:42,110 --> 00:13:44,890 +example, a step to read a video file through a + +256 +00:13:44,890 --> 00:13:48,750 +library or file called video file class. There is + +257 +00:13:48,750 --> 00:13:51,410 +something called extraction of codec. There is + +258 +00:13:51,410 --> 00:13:54,170 +something called compression codec. And then he + +259 +00:13:54,170 --> 00:13:56,250 +wants to create a buffer and create a read for the + +260 +00:13:56,250 --> 00:13:58,790 +codec in the buffer And then he wants to create a + +261 +00:13:58,790 --> 00:14:01,270 +convert and then he wants to create a fix and mix + +262 +00:14:01,270 --> 00:14:04,210 +for the audio with the video These are all + +263 +00:14:04,210 --> 00:14:06,530 +compression steps for the video Instead of letting + +264 +00:14:06,530 --> 00:14:10,150 +the client know these steps I provided him with + +265 +00:14:10,150 --> 00:14:14,530 +one page called convert video and I asked him to + +266 +00:14:14,530 --> 00:14:18,070 +send me the file and the format that he wanted and + +267 +00:14:18,070 --> 00:14:22,670 +I hid all these details in the convert video so + +268 +00:14:22,670 --> 00:14:24,630 +whoever wants to convert to any file just need to + +269 +00:14:24,630 --> 00:14:27,530 +claim This method is called ConvertVideo. This + +270 +00:14:27,530 --> 00:14:31,830 +class is called Video Conversion Facet. It is a + +271 +00:14:31,830 --> 00:14:34,950 +interface that uses the internal component of the + +272 +00:14:34,950 --> 00:14:38,330 +system. The client uses it without having to know + +273 +00:14:38,330 --> 00:14:42,110 +the partial details. This is how it is used. It + +274 +00:14:42,110 --> 00:14:44,110 +creates a Video Conversion Facet and uses + +275 +00:14:44,110 --> 00:14:47,470 +ConvertVideo without knowing the details. The + +276 +00:14:47,470 --> 00:14:53,210 +advantage of this facet is that it provides a + +277 +00:14:53,210 --> 00:14:56,910 +unified interface. to a set of interfaces in a + +278 +00:14:56,910 --> 00:14:59,810 +subsystem. Meaning that I have a subsystem with a + +279 +00:14:59,810 --> 00:15:03,870 +number of faces or classes or modules. Instead of + +280 +00:15:03,870 --> 00:15:06,190 +forcing the client or the developer to understand + +281 +00:15:06,190 --> 00:15:08,510 +the internal interfaces and classes, I provided + +282 +00:15:08,510 --> 00:15:11,810 +him with a unified interface, an external face + +283 +00:15:11,810 --> 00:15:14,390 +that deals with it, and this external face is the + +284 +00:15:14,390 --> 00:15:16,570 +one that communicates with the internal parts of + +285 +00:15:16,570 --> 00:15:21,390 +the system. Corruption defines a higher level + +286 +00:15:21,390 --> 00:15:25,860 +interface,higher level, which means that the + +287 +00:15:25,860 --> 00:15:28,120 +client knows the internal details, which makes the + +288 +00:15:28,120 --> 00:15:33,080 +subsystem easier to useThe motivation and + +289 +00:15:33,080 --> 00:15:36,200 +motivation for structuring a system into + +290 +00:15:36,200 --> 00:15:38,180 +subsystems help reduce complexity. + +291 +00:15:44,140 --> 00:15:46,240 +Subsystems are groups of classes. It explains to + +292 +00:15:46,240 --> 00:15:49,540 +us what the subsystem means. It can be a class or + +293 +00:15:49,540 --> 00:15:52,340 +a group of classes. The idea of ​​a subsystem is + +294 +00:15:52,340 --> 00:15:54,120 +that it is a component responsible for carrying + +295 +00:15:54,120 --> 00:15:58,090 +out a certain task.The interface exposed by the + +296 +00:15:58,090 --> 00:16:01,250 +classes in a subsystem or a set of systems can be + +297 +00:16:01,250 --> 00:16:05,330 +quite complex يعني استخدام ال subsystems ممكن يكون + +298 +00:16:05,330 --> 00:16:08,650 +معقد فعشان هيك one way to reduce this complexity + +299 +00:16:08,650 --> 00:16:13,040 +is to introduce a facet objectsTo reduce the + +300 +00:16:13,040 --> 00:16:16,400 +complexity of using a subsystem, FACADE provides a + +301 +00:16:16,400 --> 00:16:19,200 +single simplified interface to the more general + +302 +00:16:19,200 --> 00:16:23,680 +facilities of a subsystem. + +303 +00:16:29,280 --> 00:16:32,340 +When do we use the FACADE pattern to provide a + +304 +00:16:32,340 --> 00:16:35,700 +simple interface to a complex subsystem? This + +305 +00:16:35,700 --> 00:16:39,000 +interface + +306 +00:16:39,000 --> 00:16:42,770 +is good enough for most clients.More sophisticated + +307 +00:16:42,770 --> 00:16:48,030 +clients can look beyond the facade. What does this + +308 +00:16:48,030 --> 00:16:53,170 +mean? Now, the facade provides you with a process + +309 +00:16:53,170 --> 00:16:55,650 +that executes the steps through which the + +310 +00:16:55,650 --> 00:16:58,370 +subsystems are created. Now, imagine the steps in + +311 +00:16:58,370 --> 00:17:01,410 +the facade that a client wants to change. He wants + +312 +00:17:01,410 --> 00:17:04,310 +to add an additional step. Now, notice that the + +313 +00:17:04,310 --> 00:17:07,430 +facade does not allow the external system to use + +314 +00:17:07,430 --> 00:17:11,060 +these classes directly. If someone wants to make + +315 +00:17:11,060 --> 00:17:15,200 +advanced settings and change them in the default + +316 +00:17:15,200 --> 00:17:21,160 +process, he can use the main subsystem. Now, the + +317 +00:17:21,160 --> 00:17:24,100 +client or the developer has two options that he + +318 +00:17:24,100 --> 00:17:26,080 +wants to use in the office. Either he uses the + +319 +00:17:26,080 --> 00:17:29,140 +default settings, which are identified within the + +320 +00:17:29,140 --> 00:17:31,500 +corruption. If he wants to add additional details, + +321 +00:17:32,280 --> 00:17:34,820 +he can directly create objects from them and use + +322 +00:17:34,820 --> 00:17:37,540 +them. But in this case, he is free. He wants to + +323 +00:17:37,540 --> 00:17:41,330 +make custom things.He wants to remove the + +324 +00:17:41,330 --> 00:17:44,630 +complexity of the subsystems from his + +325 +00:17:44,630 --> 00:17:45,950 +dictionaries. He wants to take the default + +326 +00:17:45,950 --> 00:17:50,520 +settings and deal directly with corruption.This + +327 +00:17:50,520 --> 00:17:57,860 +means that sophisticated users can look beyond the + +328 +00:17:57,860 --> 00:18:01,620 +corruption and deal with the subsystems directly + +329 +00:18:01,620 --> 00:18:04,640 +One of the advantages of corruption is that it + +330 +00:18:04,640 --> 00:18:09,060 +supports decoupling, decoupling the classes of the + +331 +00:18:09,060 --> 00:18:13,550 +subsystem from its clientThis is evidence that my + +332 +00:18:13,550 --> 00:18:15,850 +coupling is less. The number of links here is more + +333 +00:18:15,850 --> 00:18:19,470 +than here. Any change in the external system is + +334 +00:18:19,470 --> 00:18:21,970 +only a change in corruption. + +335 +00:18:24,860 --> 00:18:27,360 +Benefits, as we said, it hides the implementation + +336 +00:18:27,360 --> 00:18:32,960 +of the subsystem from clients, making the system + +337 +00:18:32,960 --> 00:18:36,820 +easier to use, it promotes weak coupling, it + +338 +00:18:36,820 --> 00:18:39,680 +reduces complication dependencies in large + +339 +00:18:39,680 --> 00:18:45,360 +systems, simplifies + +340 +00:18:45,360 --> 00:18:50,800 +porting systems. Portability, what does it mean?On + +341 +00:18:50,800 --> 00:18:52,980 +another platform, it becomes easier because the + +342 +00:18:52,980 --> 00:18:58,080 +coupling is less. This gate can take your entire + +343 +00:18:58,080 --> 00:19:03,280 +system and transfer it to another platform. It + +344 +00:19:03,280 --> 00:19:07,060 +will not affect them because everything is dealing + +345 +00:19:07,060 --> 00:19:07,880 +with corruption. + +346 +00:19:12,320 --> 00:19:15,260 +And as we said, it does not prevent sophisticated + +347 +00:19:15,260 --> 00:19:18,700 +clients from accessing the underlying classes Note + +348 +00:19:18,700 --> 00:19:20,940 +that Facade does not add any functionality, it + +349 +00:19:20,940 --> 00:19:23,760 +just simplifies interfaces Facade's design pattern + +350 +00:19:23,760 --> 00:19:28,780 +is simple, its goal is to simplify the use of the + +351 +00:19:28,780 --> 00:19:33,280 +API Okay, this is the example we came up with. We + +352 +00:19:33,280 --> 00:19:36,720 +saw the video Conversion. Corruption vs. Factory. + +353 +00:19:36,760 --> 00:19:40,340 +We talked about it. Both provide a face to + +354 +00:19:40,340 --> 00:19:42,120 +facilitate something. But the factory facilitates + +355 +00:19:42,120 --> 00:19:44,260 +the construction. Corruption facilitates the + +356 +00:19:44,260 --> 00:19:48,960 +process or the use of subsystems in my system. + +357 +00:19:50,280 --> 00:19:52,640 +Let's come to another design pattern. It's called + +358 +00:19:52,640 --> 00:19:55,240 +the adapter pattern. And the adapter pattern is + +359 +00:19:55,240 --> 00:19:58,800 +one of the design patterns used a lot and + +360 +00:19:58,800 --> 00:20:02,980 +important. So what is the word adapter?It's a + +361 +00:20:02,980 --> 00:20:04,820 +conversion. For example, when you travel abroad, + +362 +00:20:06,820 --> 00:20:08,740 +you will find that each country has a different + +363 +00:20:08,740 --> 00:20:11,880 +power supply, not all of them are the same. For + +364 +00:20:11,880 --> 00:20:15,060 +example, you go to a hotel and ask for a socket + +365 +00:20:21,460 --> 00:20:25,620 +This socket is called socket and adapter is called + +366 +00:20:25,620 --> 00:20:30,600 +converter Now this idea is exactly the same. + +367 +00:20:31,020 --> 00:20:34,480 +Adapter is a converter But it is not a converter + +368 +00:20:34,480 --> 00:20:38,240 +between electricity wires but between software to + +369 +00:20:38,240 --> 00:20:42,560 +another software Let me explain you the existing + +370 +00:20:42,560 --> 00:20:46,740 +problemImagine that you are running an application + +371 +00:20:46,740 --> 00:20:51,940 +and in your application you + +372 +00:20:51,940 --> 00:20:59,180 +are + +373 +00:20:59,180 --> 00:21:05,760 +using an external library. For example, you used + +374 +00:21:05,760 --> 00:21:08,920 +the library X.it could be for example a mobile + +375 +00:21:08,920 --> 00:21:11,720 +application and you are using a library to make a + +376 +00:21:11,720 --> 00:21:13,980 +connection to the server and make a request or + +377 +00:21:13,980 --> 00:21:15,700 +another library to make a connection to a database + +378 +00:21:15,700 --> 00:21:20,400 +or firebase or something else and of course this + +379 +00:21:20,400 --> 00:21:26,140 +has methods A, B, C and from your application you + +380 +00:21:26,140 --> 00:21:31,890 +have 50 classes here and these classes claimThe + +381 +00:21:31,890 --> 00:21:34,970 +methods in the library, this is normal, this is a + +382 +00:21:34,970 --> 00:21:36,890 +mobile application, every work is on the server, + +383 +00:21:37,490 --> 00:21:40,970 +right or not? They came one day and took out a new + +384 +00:21:40,970 --> 00:21:46,950 +library, what is its name? Y, okay? And it has + +385 +00:21:46,950 --> 00:21:50,110 +methods like these, but their names are different, + +386 +00:21:50,250 --> 00:21:53,390 +AABBCC + +387 +00:21:55,580 --> 00:21:59,040 +Okay? And he said this library is faster than this + +388 +00:21:59,040 --> 00:22:00,980 +library and better So I said let's change our + +389 +00:22:00,980 --> 00:22:04,420 +application that instead of using this library, we + +390 +00:22:04,420 --> 00:22:09,000 +want to use which one? The second library Of + +391 +00:22:09,000 --> 00:22:11,520 +course this is not easy because actually my + +392 +00:22:11,520 --> 00:22:14,640 +library has, for example, say 100 applicants for + +393 +00:22:14,640 --> 00:22:18,440 +whom? For this library What do the young people + +394 +00:22:18,440 --> 00:22:22,690 +do? Okay, let's change it. After a whole weekand + +395 +00:22:22,690 --> 00:22:26,590 +it will bring this and create objects from Y and + +396 +00:22:26,590 --> 00:22:29,430 +instead of asking for A, it will ask for AA and of + +397 +00:22:29,430 --> 00:22:31,870 +course this input might be different from the + +398 +00:22:31,870 --> 00:22:34,150 +input you get from this and the return might also + +399 +00:22:34,150 --> 00:22:36,790 +be different so it will say bring, bring, change + +400 +00:22:36,790 --> 00:22:42,370 +and adjust to fit your application to this and it + +401 +00:22:42,370 --> 00:22:44,710 +will be late for the production of your program + +402 +00:22:44,710 --> 00:22:48,030 +and you will be late for the appointment because + +403 +00:22:48,030 --> 00:22:51,600 +the transformation also needs testing Am I right + +404 +00:22:51,600 --> 00:22:56,280 +or not? It's not that simple. The whole cycle has + +405 +00:22:56,280 --> 00:22:57,660 +been overturned. Ok, + +406 +00:23:00,480 --> 00:23:03,180 +and this topic is very common. We always use + +407 +00:23:03,180 --> 00:23:06,180 +libraries, and these libraries have updates and + +408 +00:23:06,180 --> 00:23:08,060 +changes, and you find another library better than + +409 +00:23:08,060 --> 00:23:12,400 +that, so let's change it. Ok? So our goal is that + +410 +00:23:12,400 --> 00:23:16,060 +we want our application to use the new library + +411 +00:23:16,060 --> 00:23:19,570 +without changing anything in the application. Do + +412 +00:23:19,570 --> 00:23:22,710 +you understand what we want to do? How? We want + +413 +00:23:22,710 --> 00:23:26,150 +him to use Y without changing any line in the + +414 +00:23:26,150 --> 00:23:28,350 +application. Because this is 100 times. 100 + +415 +00:23:28,350 --> 00:23:31,030 +requests are made on this. We want him to change + +416 +00:23:31,030 --> 00:23:33,430 +100 requests one by one without changing anything. + +417 +00:23:34,190 --> 00:23:38,130 +We want him to use this library instead of this + +418 +00:23:38,130 --> 00:23:44,090 +library without changing anything here. We want to + +419 +00:23:44,090 --> 00:23:49,220 +make a medium. How do we do it? To understand it + +420 +00:23:49,220 --> 00:23:52,340 +well, let's see an example of a code that is very + +421 +00:23:52,340 --> 00:23:54,040 +simple based on this idea, okay? + +422 +00:24:01,080 --> 00:24:03,820 +Okay guys, this is a simplified example, the goal + +423 +00:24:03,820 --> 00:24:08,300 +is to clarify the idea, okay? Look with me, I have + +424 +00:24:08,300 --> 00:24:12,410 +a program calledClient, this is my application, + +425 +00:24:13,050 --> 00:24:19,390 +okay? This client uses a library called one of the + +426 +00:24:19,390 --> 00:24:21,470 +tasks done by the client, sort process, what is + +427 +00:24:21,470 --> 00:24:26,510 +sort? Sorting of numbers, okay? And this is the + +428 +00:24:26,510 --> 00:24:29,210 +method process through which this process is + +429 +00:24:29,210 --> 00:24:32,650 +present in the client, it takes numbers of the + +430 +00:24:32,650 --> 00:24:36,800 +kind of array And I also return array What does he + +431 +00:24:36,800 --> 00:24:41,060 +do in this process? He arranges the numbers So to + +432 +00:24:41,060 --> 00:24:43,860 +arrange the client, he does not have an array code + +433 +00:24:43,860 --> 00:24:46,080 +He uses an external library called what? + +434 +00:24:47,260 --> 00:24:50,080 +ArraySorter So it is programmed to whom? To + +435 +00:24:50,080 --> 00:24:53,800 +ArraySorter And this method does what? It is a set + +436 +00:24:53,800 --> 00:24:58,460 +for the sorter So now in the main method I create + +437 +00:24:58,460 --> 00:25:04,400 +a clientand then who is this? and of course, for + +438 +00:25:04,400 --> 00:25:06,720 +the client, who do I send it to? the array sorter, + +439 +00:25:06,840 --> 00:25:09,140 +the library that I am currently using and then to + +440 +00:25:09,140 --> 00:25:11,640 +run the client, I send him these numbers and I + +441 +00:25:11,640 --> 00:25:16,740 +tell him to do this sorter, set sorter, okay? and + +442 +00:25:16,740 --> 00:25:19,360 +then I tell him to do a process for whom? for the + +443 +00:25:19,360 --> 00:25:20,980 +numbers and from within the process, what does he + +444 +00:25:20,980 --> 00:25:24,620 +use? the array sorter just like the client gave + +445 +00:25:24,620 --> 00:25:27,360 +you the application that uses the X so here, the X + +446 +00:25:27,360 --> 00:25:33,160 +issued before it The ArraySorter Now we have a new + +447 +00:25:33,160 --> 00:25:36,580 +library Which is what here? The Y Which is + +448 +00:25:36,580 --> 00:25:42,440 +represented by a class called ListSorter And + +449 +00:25:42,440 --> 00:25:45,740 +you don't know the code of the ArraySorter nor the + +450 +00:25:45,740 --> 00:25:48,500 +ListSorter These are libraries that you brought + +451 +00:25:48,500 --> 00:25:54,200 +from outside But this ListSorter, let's look at + +452 +00:25:54,200 --> 00:26:00,170 +this new library This is ListSorterLS for example + +453 +00:26:00,170 --> 00:26:08,170 +new list sorter and then I say LS I don't know why + +454 +00:26:08,170 --> 00:26:15,590 +I'm writing this LS dot has method sort but what + +455 +00:26:15,590 --> 00:26:18,450 +does this method sort take? it takes a list and + +456 +00:26:18,450 --> 00:26:21,950 +returns a list this is called AA and that is + +457 +00:26:21,950 --> 00:26:25,150 +called A the input and the return are different + +458 +00:26:25,150 --> 00:26:28,010 +and the name of the method itself can be different + +459 +00:26:29,150 --> 00:26:33,930 +Ok, it means that you have to figure out what was + +460 +00:26:33,930 --> 00:26:36,210 +the normal situation that programmers and + +461 +00:26:36,210 --> 00:26:38,910 +beginners used to have I go to the client, ok, and + +462 +00:26:38,910 --> 00:26:42,290 +it starts deleting delete this one, ok, and put + +463 +00:26:42,290 --> 00:26:45,470 +here instead of him list sorter and not only that, + +464 +00:26:45,550 --> 00:26:49,050 +I go everywhere I mean here, ok, this method + +465 +00:26:49,050 --> 00:26:51,510 +stopped working you have to make another method, + +466 +00:26:51,790 --> 00:26:56,210 +take what? array and return array and this is not + +467 +00:26:56,210 --> 00:27:01,080 +everywhereBy calling x, you want to make the + +468 +00:27:01,080 --> 00:27:03,080 +change What is the purpose of this gate? Because + +469 +00:27:03,080 --> 00:27:07,100 +we don't want to change any line in the client And + +470 +00:27:07,100 --> 00:27:09,740 +we want to keep using ArraySorter But instead of + +471 +00:27:09,740 --> 00:27:13,920 +x, we want to make it use y So how can we do this? + +472 +00:27:14,280 --> 00:27:19,540 +What did we agree on? That ArraySorter is an old + +473 +00:27:19,540 --> 00:27:21,970 +library that we don't want to play with and the + +474 +00:27:21,970 --> 00:27:25,030 +list sorter is the new library let's assume that + +475 +00:27:25,030 --> 00:27:28,790 +we don't have the code this code you don't have + +476 +00:27:28,790 --> 00:27:31,190 +and this code you don't have you don't know how to + +477 +00:27:31,190 --> 00:27:33,770 +play with it and the client we don't want to + +478 +00:27:33,770 --> 00:27:36,690 +change anything in it not even a line of code we + +479 +00:27:36,690 --> 00:27:40,210 +don't want to change here nor here nor here what + +480 +00:27:40,210 --> 00:27:42,450 +are we going to do? pay attention but we want to + +481 +00:27:42,450 --> 00:27:46,690 +make the client use the while look what I'm going + +482 +00:27:46,690 --> 00:27:48,170 +to do I'm going to create a new class + +483 +00:27:51,420 --> 00:27:58,160 +I want to call it MyAdapter Do you have it or not + +484 +00:27:58,160 --> 00:28:03,480 +guys? MyAdapter Now, what does my client use now? + +485 +00:28:04,040 --> 00:28:08,320 +The X I want to make the MyAdapter of the new + +486 +00:28:08,320 --> 00:28:11,420 +class from the same type of X Ok? I want to make + +487 +00:28:11,420 --> 00:28:17,700 +it an ArraySorter Ok? + +488 +00:28:18,340 --> 00:28:22,060 +And all the methods in the ArraySorter I want to + +489 +00:28:22,060 --> 00:28:25,780 +make it overwrite here So what are the existing + +490 +00:28:25,780 --> 00:28:28,580 +methods? I have a method called sort which takes + +491 +00:28:28,580 --> 00:28:34,240 +the array of integers and returns the array of + +492 +00:28:34,240 --> 00:28:36,740 +integers Do you have it or not? So did you get the + +493 +00:28:36,740 --> 00:28:40,480 +myadapter? What type is it? The array of sorts Now + +494 +00:28:40,480 --> 00:28:45,500 +if I go to the main Look with me Of course here it + +495 +00:28:45,500 --> 00:28:50,520 +only needs output So let it return null for now + +496 +00:28:51,810 --> 00:28:55,210 +Did you see what I did? I added everything I did, + +497 +00:28:55,410 --> 00:29:01,990 +guys I made a new class I named it My Adapter And + +498 +00:29:01,990 --> 00:29:05,370 +this one does extend for this one This is what I + +499 +00:29:05,370 --> 00:29:08,370 +did until now, okay? And the same methods that are + +500 +00:29:08,370 --> 00:29:14,010 +here I put them here, but they are empty Am I + +501 +00:29:14,010 --> 00:29:16,270 +right, guys? Did you see? Look with me + +502 +00:29:20,850 --> 00:29:24,170 +this is the main method in the main method, what + +503 +00:29:24,170 --> 00:29:28,890 +does the client take? ArraySorter if I remove the + +504 +00:29:28,890 --> 00:29:32,070 +ArraySorter from here and replace it with + +505 +00:29:32,070 --> 00:29:40,350 +myAdapter this adapter is equal to new myAdapter + +506 +00:29:40,350 --> 00:29:45,680 +and instead of Sorter, I send it because until now + +507 +00:29:45,680 --> 00:29:48,660 +there is no problem correct or not? this one + +508 +00:29:48,660 --> 00:29:50,820 +instead of this one but this one is still empty + +509 +00:29:50,820 --> 00:29:55,000 +and this one has what? it has the code now the + +510 +00:29:55,000 --> 00:29:59,700 +last step go to my adapter from inside it I will + +511 +00:29:59,700 --> 00:30:04,180 +use the new library what is it called? listsorter + +512 +00:30:04,180 --> 00:30:08,940 +alias equals new listsorter the client does not + +513 +00:30:08,940 --> 00:30:11,990 +know the client now is dealing with whom? he + +514 +00:30:11,990 --> 00:30:13,570 +thinks that he is dealing with an adapter which is + +515 +00:30:13,570 --> 00:30:16,630 +array of numbers and he calls the method itself A, + +516 +00:30:16,790 --> 00:30:26,510 +B and C array of numbers with me guys? now did you + +517 +00:30:26,510 --> 00:30:29,910 +find the method sort? what does it take? array of + +518 +00:30:29,910 --> 00:30:33,430 +numbers did you find that you want to turn it into + +519 +00:30:33,430 --> 00:30:36,550 +a list to call the method in the array of numbers? + +520 +00:30:36,870 --> 00:30:40,230 +for example, it wants to make a list of integers + +521 +00:30:41,940 --> 00:30:47,880 +this L is equal to new ArrayList and then I want + +522 +00:30:47,880 --> 00:30:54,460 +to say to each integer n in numbers go to L and + +523 +00:30:54,460 --> 00:31:03,500 +say add n what am I doing guys?That's it. I + +524 +00:31:03,500 --> 00:31:04,980 +created .. there are ways .. there are ways that + +525 +00:31:04,980 --> 00:31:07,600 +might be easier to convert, but my goal is to + +526 +00:31:07,600 --> 00:31:08,880 +create .. did you see the array that came at the + +527 +00:31:08,880 --> 00:31:11,740 +end turned into a list? Because its headers are + +528 +00:31:11,740 --> 00:31:14,400 +with whom? With the new library. If you come to + +529 +00:31:14,400 --> 00:31:18,900 +the new library, you say ls.sort. I give it an L. + +530 +00:31:19,940 --> 00:31:21,440 +But this is of course .. what does it return? + +531 +00:31:22,320 --> 00:31:29,250 +Result list. Of what kind? a list of integers we + +532 +00:31:29,250 --> 00:31:31,890 +are not done yet this getInt will give us a result + +533 +00:31:31,890 --> 00:31:36,050 +can you return the result list? no, it is a list + +534 +00:31:36,050 --> 00:31:39,050 +if you return it, it will become a Array so you + +535 +00:31:39,050 --> 00:31:41,530 +will create a new Array which is resultArray is + +536 +00:31:41,530 --> 00:31:51,110 +equal to new Int size is the same as resultList + +537 +00:31:51,110 --> 00:31:56,150 +.size I made an array and I want to fill it but + +538 +00:31:56,150 --> 00:32:01,170 +for each for integer i equal to zero, i less than + +539 +00:32:01,170 --> 00:32:09,450 +resultArray.length i plus plus now take from put + +540 +00:32:09,450 --> 00:32:14,210 +in the resultArray i and go to the result list and + +541 +00:32:14,210 --> 00:32:18,890 +say get i and in the end you say return + +542 +00:32:18,890 --> 00:32:21,410 +resultArray + +543 +00:32:22,020 --> 00:32:25,880 +Now, this code from here to here is for the return + +544 +00:32:25,880 --> 00:32:28,460 +type And this code from here to here is for the + +545 +00:32:28,460 --> 00:32:32,720 +input type And this method is sort which is + +546 +00:32:32,720 --> 00:32:35,940 +supposed to be present where? In the array, in the + +547 +00:32:35,940 --> 00:32:40,900 +array sorter So, when we come to edit this drawing + +548 +00:32:40,900 --> 00:32:48,000 +Now, this adapter from inside This is the adapter + +549 +00:32:48,000 --> 00:32:51,540 +From inside, I am using an object from whom? + +550 +00:32:58,450 --> 00:33:03,750 +From inside A, + +551 +00:33:04,050 --> 00:33:11,290 +I use Y dot AA and from inside B, I use Y dot AA + +552 +00:33:13,980 --> 00:33:18,280 +bb because the last step I had notice that I + +553 +00:33:18,280 --> 00:33:21,640 +didn't catch the client code I didn't catch the x + +554 +00:33:21,640 --> 00:33:25,140 +code and I didn't catch the y code I only made an + +555 +00:33:25,140 --> 00:33:28,820 +adapter of the same type x because I linked them + +556 +00:33:28,820 --> 00:33:31,680 +all together in the main in the main I created an + +557 +00:33:31,680 --> 00:33:33,320 +object from the client which I didn't change + +558 +00:33:33,320 --> 00:33:38,040 +anything because I had a array sorter instead I + +559 +00:33:38,040 --> 00:33:41,360 +made a meanThe adapter. And then I went to the + +560 +00:33:41,360 --> 00:33:44,840 +client and told him setSorter and I gave him the + +561 +00:33:44,840 --> 00:33:47,920 +adapter. The client went silent because it took + +562 +00:33:47,920 --> 00:33:50,800 +the arraySorter. Okay, but from inside it will use + +563 +00:33:50,800 --> 00:33:54,670 +the listSorter.Okay? And they come and tell me the + +564 +00:33:54,670 --> 00:33:56,290 +process. The client is normal, nothing has + +565 +00:33:56,290 --> 00:33:58,570 +changed. And from within the process, I go and + +566 +00:33:58,570 --> 00:34:01,830 +claim the sort. But he will claim the sort that is + +567 +00:34:01,830 --> 00:34:04,010 +in the adapter. I deceived him. I provided him + +568 +00:34:04,010 --> 00:34:06,410 +with something of the same type that he wants, but + +569 +00:34:06,410 --> 00:34:09,710 +from within it, I use the library again. And thus, + +570 +00:34:09,790 --> 00:34:11,970 +if the client has a thousand claims, he will + +571 +00:34:11,970 --> 00:34:16,890 +continue to claim the methods themselves, A and B + +572 +00:34:16,890 --> 00:34:19,790 +and C.Okay, but from inside, but calling the new + +573 +00:34:19,790 --> 00:34:22,230 +library. See how this is all object-oriented. + +574 +00:34:22,390 --> 00:34:23,970 +There is no new information in object-oriented. + +575 +00:34:24,390 --> 00:34:28,730 +But for smart use. Instead of changing the library + +576 +00:34:28,730 --> 00:34:32,570 +now from X to Y without changing the client. But + +577 +00:34:32,570 --> 00:34:35,310 +of course, this implementation of this thing also + +578 +00:34:35,310 --> 00:34:37,610 +depends on how you design the code to have + +579 +00:34:37,610 --> 00:34:41,690 +dependency injection. Meaning that when you create + +580 +00:34:41,690 --> 00:34:44,670 +the same client, you have to send it from outside. + +581 +00:34:46,120 --> 00:34:49,160 +The adapter, the sorter, okay? We always say that + +582 +00:34:49,160 --> 00:34:50,780 +the best thing to do is to send any dependencies + +583 +00:34:50,780 --> 00:34:52,020 +from outside instead of creating them inside the + +584 +00:34:52,020 --> 00:34:55,980 +client. The advantage of sending them from outside + +585 +00:34:55,980 --> 00:34:58,260 +is that you can change them. This is what I did, + +586 +00:34:58,880 --> 00:35:04,340 +okay? I had a sorter, I extended it to confuse the + +587 +00:35:04,340 --> 00:35:06,640 +client that this is the same thing that you are + +588 +00:35:06,640 --> 00:35:09,400 +used to. But actually, this adapter is a bridge. + +589 +00:35:10,370 --> 00:35:13,870 +From inside, who used it? My library. And whose + +590 +00:35:13,870 --> 00:35:16,670 +idea is this? The adapter. It became like a + +591 +00:35:16,670 --> 00:35:22,890 +converter. Okay? Okay, based on this talk, let's + +592 +00:35:22,890 --> 00:35:26,650 +see the adapter. Now, before we read the talk, + +593 +00:35:26,990 --> 00:35:29,650 +this is another example of the idea of ​​the + +594 +00:35:29,650 --> 00:35:30,950 +adapter. Now, + +595 +00:35:34,600 --> 00:35:36,860 +I have a program that reads data from the stock + +596 +00:35:36,860 --> 00:35:42,300 +market and brings the data as xml and analyzes the + +597 +00:35:42,300 --> 00:35:46,900 +data I read the data in the form of xml and + +598 +00:35:46,900 --> 00:35:51,000 +analyze it The program that I made takes the data + +599 +00:35:51,000 --> 00:35:55,660 +in the form of xml and works on it I have a + +600 +00:35:55,660 --> 00:35:59,680 +component that reads the data as xml and I read + +601 +00:35:59,680 --> 00:36:04,570 +from it and analyze it Now, I found a library that + +602 +00:36:04,570 --> 00:36:06,950 +is better in analysis and faster, it does + +603 +00:36:06,950 --> 00:36:09,810 +visualization for me, this is it, but this library + +604 +00:36:09,810 --> 00:36:15,450 +takes the data in JSON form. Okay, how can I use + +605 +00:36:15,450 --> 00:36:18,290 +this library without changing the code in the + +606 +00:36:18,290 --> 00:36:22,090 +client? The application is mine, the input is xml + +607 +00:36:22,090 --> 00:36:27,230 +and the output is xml. So, in order to use the new + +608 +00:36:27,230 --> 00:36:31,230 +library, all I can do is create an adapter. Now, + +609 +00:36:34,870 --> 00:36:38,350 +Actually, my application used to use a class of + +610 +00:36:38,350 --> 00:36:43,170 +XML type, so I give it the same class of XML type, + +611 +00:36:43,230 --> 00:36:47,150 +but I made it as an adapter of the same type that + +612 +00:36:47,150 --> 00:36:50,090 +you expected, client, of the XML type, like here + +613 +00:36:50,090 --> 00:36:53,110 +of the X type that I left, this adapter is of the + +614 +00:36:53,110 --> 00:36:58,830 +X type, I did not extend it, but internallyAll the + +615 +00:36:58,830 --> 00:37:01,150 +data that I transfer to JSON and send it to the + +616 +00:37:01,150 --> 00:37:03,530 +library and the library runs it and does analysis + +617 +00:37:03,530 --> 00:37:05,730 +and gives me results and returns the results as + +618 +00:37:05,730 --> 00:37:12,370 +JSON Now this adapter will take the data returned + +619 +00:37:12,370 --> 00:37:14,790 +as JSON and returns it as XML and send it to whom? + +620 +00:37:15,940 --> 00:37:18,340 +to my library, which means that my library takes + +621 +00:37:18,340 --> 00:37:24,020 +the input of xml and returns it to xml the idea is + +622 +00:37:24,020 --> 00:37:26,020 +that this adapter is of the same type that is + +623 +00:37:26,020 --> 00:37:28,620 +expected from the application, but it claims that + +624 +00:37:28,620 --> 00:37:30,740 +it takes xml and returns it to json and sends it + +625 +00:37:30,740 --> 00:37:33,640 +to this one it returns to json and returns the + +626 +00:37:33,640 --> 00:37:36,680 +second xml and returns it to my application and so + +627 +00:37:36,680 --> 00:37:39,620 +I don't change anything in the application of + +628 +00:37:39,620 --> 00:37:41,600 +course, there is a drawback that there are + +629 +00:37:41,600 --> 00:37:42,760 +conversion operations that have been done here + +630 +00:37:43,340 --> 00:37:45,780 +Okay? But if the download process does not take + +631 +00:37:45,780 --> 00:37:49,960 +time, there is no problem in doing it because it + +632 +00:37:49,960 --> 00:37:53,120 +saves you a lot of time. The change here is + +633 +00:37:53,120 --> 00:37:56,520 +difficult because, as I said, the dependency of + +634 +00:37:56,520 --> 00:37:58,820 +the application on the library is large, so the + +635 +00:37:58,820 --> 00:38:00,960 +change in the application itself is difficult. + +636 +00:38:01,780 --> 00:38:03,560 +Okay? So I got rid of it with the idea of ​​what? + +637 +00:38:04,200 --> 00:38:08,680 +The adapter. So let's see the URL or before the + +638 +00:38:08,680 --> 00:38:13,550 +URL. Let's read the words that are here.The idea + +639 +00:38:13,550 --> 00:38:17,450 +behind the adapter is to convert the interface of + +640 +00:38:17,450 --> 00:38:20,390 +a class into another interface the client expects + +641 +00:38:20,390 --> 00:38:24,990 +So the client expects X and we want to interact + +642 +00:38:24,990 --> 00:38:27,790 +with a library Y, so I changed Y to an interface + +643 +00:38:27,790 --> 00:38:30,810 +of the type X so that I don't change anything in + +644 +00:38:30,810 --> 00:38:32,790 +the client This is the meaning of converting the + +645 +00:38:32,790 --> 00:38:35,960 +interface of a class into another interfaceThe + +646 +00:38:35,960 --> 00:38:37,860 +interface that I turn to is what the client + +647 +00:38:37,860 --> 00:38:42,440 +expects. I want to use Y, but the client deals + +648 +00:38:42,440 --> 00:38:47,470 +with X. So I go to YI changed it to an X shape. + +649 +00:38:47,570 --> 00:38:50,010 +How? I made a class adapter from an X shape and + +650 +00:38:50,010 --> 00:38:51,970 +from inside I used a Y shape. This is what this + +651 +00:38:51,970 --> 00:38:56,170 +sentence means. Adapters, what is the result or + +652 +00:38:56,170 --> 00:38:59,930 +the important effect of the adapter? Lets classes + +653 +00:38:59,930 --> 00:39:02,710 +work together that couldn't otherwise because of + +654 +00:39:02,710 --> 00:39:06,250 +incompatible interfaces. Let the classes interact + +655 +00:39:06,250 --> 00:39:09,740 +with each otherIt wasn't able to deal with each + +656 +00:39:09,740 --> 00:39:12,580 +other before because their types are different It + +657 +00:39:12,580 --> 00:39:17,020 +made the application to deal with Y although by + +658 +00:39:17,020 --> 00:39:19,760 +default it can't deal with it, it deals with X + +659 +00:39:19,760 --> 00:39:23,580 +Motivation, sometimes a toolkit or class probably + +660 +00:39:23,580 --> 00:39:25,700 +cannot be used because of its interface is + +661 +00:39:25,700 --> 00:39:27,560 +incompatible with the interface required by the + +662 +00:39:27,560 --> 00:39:30,260 +application Is this the main case? Do you deal + +663 +00:39:30,260 --> 00:39:30,880 +with external libraries? + +664 +00:39:33,870 --> 00:39:36,330 +and the libraries change. You designed the + +665 +00:39:36,330 --> 00:39:38,690 +application to work with a certain library, but it + +666 +00:39:38,690 --> 00:39:42,130 +changes and moves to another library. The + +667 +00:39:42,130 --> 00:39:44,050 +traditional changes made by programmers in the + +668 +00:39:44,050 --> 00:39:48,750 +beginning takes a lot of time from us. So I just + +669 +00:39:48,750 --> 00:39:52,150 +made him agree with the old library, but I did + +670 +00:39:52,150 --> 00:39:56,850 +something to deceive him.Through it, it uses the + +671 +00:39:56,850 --> 00:39:59,650 +same method as the old library, but inside it, it + +672 +00:39:59,650 --> 00:40:03,030 +uses the method of the new library. We cannot + +673 +00:40:03,030 --> 00:40:05,090 +change the library. Of course, you cannot change + +674 +00:40:05,090 --> 00:40:09,230 +the old library or the new one. Since we may not + +675 +00:40:09,230 --> 00:40:11,890 +have its source code. It is normal to go to the + +676 +00:40:11,890 --> 00:40:14,270 +library and change its source code to make it like + +677 +00:40:14,270 --> 00:40:17,750 +this. The change here is not correct, and the + +678 +00:40:17,750 --> 00:40:21,380 +change in the library too.It's not correct, okay? + +679 +00:40:21,860 --> 00:40:23,960 +So you don't change the Y to make it consistent + +680 +00:40:23,960 --> 00:40:27,520 +with the X Even if the source code is there, there + +681 +00:40:27,520 --> 00:40:30,500 +might be updates in this library You go get the + +682 +00:40:30,500 --> 00:40:32,860 +update and change it again, okay? No, it's not + +683 +00:40:32,860 --> 00:40:37,920 +correctEven if we did have the source code of the + +684 +00:40:37,920 --> 00:40:40,480 +library, we probably should not change the library + +685 +00:40:40,480 --> 00:40:43,400 +for each domain-specific application. Libraries + +686 +00:40:43,400 --> 00:40:45,340 +are usually brought from outside and used as they + +687 +00:40:45,340 --> 00:40:46,900 +are. They don't try to change it. Because as I + +688 +00:40:46,900 --> 00:40:49,120 +said, they develop and make updates on it. Not + +689 +00:40:49,120 --> 00:40:51,300 +every time you bring a new version, you go and + +690 +00:40:51,300 --> 00:40:52,460 +change it. + +691 +00:40:54,940 --> 00:40:59,000 +Because this is today's diagram of the adapter + +692 +00:40:59,000 --> 00:41:01,440 +pattern. Let's understand it and fall on the + +693 +00:41:01,440 --> 00:41:04,930 +example that we explained.Now my client is + +694 +00:41:04,930 --> 00:41:07,810 +programmed to deal with a library called target + +695 +00:41:07,810 --> 00:41:11,430 +and use a method called request Now let me give + +696 +00:41:11,430 --> 00:41:13,530 +you a hint, bring me a new library, what is the + +697 +00:41:13,530 --> 00:41:16,930 +name of it? Adaptee, what is the word adaptee in + +698 +00:41:16,930 --> 00:41:19,990 +English? Air conditioning adapter + +699 +00:41:35,040 --> 00:41:36,440 +Visitor + +700 +00:41:42,150 --> 00:41:48,230 +Yes, Mozart, or MVT, Madouk, for example. Okay, so + +701 +00:41:48,230 --> 00:41:50,490 +this is the new library, and the new library has a + +702 +00:41:50,490 --> 00:41:53,610 +method called request, or it has a name called + +703 +00:41:53,610 --> 00:41:58,190 +specific request. This is for whom? For this one, + +704 +00:41:58,210 --> 00:42:00,310 +but this one takes a different input and returns a + +705 +00:42:00,310 --> 00:42:03,510 +different output. Now, it wants to make the client + +706 +00:42:03,510 --> 00:42:08,490 +use the adaptivewithout changing anything on the + +707 +00:42:08,490 --> 00:42:12,470 +client I went and made a new class from the same + +708 +00:42:12,470 --> 00:42:16,550 +type of target which is extent target and from + +709 +00:42:16,550 --> 00:42:19,710 +inside it I use the adepti this is related to + +710 +00:42:19,710 --> 00:42:25,230 +association and all I have to do is when I create + +711 +00:42:25,230 --> 00:42:28,310 +the client instead of passing him a target I pass + +712 +00:42:28,310 --> 00:42:31,610 +him an object from whom?from the adapter notice + +713 +00:42:31,610 --> 00:42:35,010 +here that there is inside the request I made a + +714 +00:42:35,010 --> 00:42:38,450 +list that goes to the adaptee and say specific + +715 +00:42:38,450 --> 00:42:41,890 +request as I exactly through the array sorter + +716 +00:42:41,890 --> 00:42:46,570 +method sort I called the sort that is in the list + +717 +00:42:46,570 --> 00:42:50,390 +sorter after I made a list for the input and + +718 +00:42:50,390 --> 00:42:53,730 +output after it prepares for the return so this is + +719 +00:42:53,730 --> 00:42:57,880 +the shape of the adapter where it is here It takes + +720 +00:42:57,880 --> 00:43:01,440 +the old class and uses the new class from inside + +721 +00:43:01,440 --> 00:43:04,500 +Because + +722 +00:43:04,500 --> 00:43:07,520 +this is another example that I found on the + +723 +00:43:07,520 --> 00:43:11,060 +internet using the adapter Because this is a + +724 +00:43:11,060 --> 00:43:14,520 +drawing editor with user interface components, + +725 +00:43:14,520 --> 00:43:18,020 +okay? So now I have an external library called + +726 +00:43:18,020 --> 00:43:21,700 +TextView This is in a library outside but I want + +727 +00:43:21,700 --> 00:43:27,020 +to use it from the drawing editor that I have Now, + +728 +00:43:27,020 --> 00:43:30,420 +the drawing editor is dealing with an item called + +729 +00:43:30,420 --> 00:43:36,160 +Shape Shape has methods like bounding box and + +730 +00:43:36,160 --> 00:43:39,260 +create manipulator I don't know what these methods + +731 +00:43:39,260 --> 00:43:42,500 +are I have a new class TextView and I want to use + +732 +00:43:42,500 --> 00:43:46,420 +it instead of Shape So what is going to do here is + +733 +00:43:46,420 --> 00:43:49,220 +create a class called TextShape which is like the + +734 +00:43:49,220 --> 00:43:53,830 +adapterExtended from what? From shape, it took the + +735 +00:43:53,830 --> 00:43:57,610 +same type of shape And instead of taking the same + +736 +00:43:57,610 --> 00:43:59,570 +type of shape, it made an override for what? For + +737 +00:43:59,570 --> 00:44:02,450 +the method boundingBox and createManipulate But + +738 +00:44:02,450 --> 00:44:05,850 +inside it, it used an object from what? From + +739 +00:44:05,850 --> 00:44:11,630 +TextView So it took the old type And inside it, it + +740 +00:44:11,630 --> 00:44:14,630 +used an object from the new type And of course, + +741 +00:44:14,990 --> 00:44:19,140 +when the boundingBox takes over I go to this item + +742 +00:44:19,140 --> 00:44:22,040 +which is TextView and it executes getExtent() This + +743 +00:44:22,040 --> 00:44:25,660 +getExtent() method is here in return to the + +744 +00:44:25,660 --> 00:44:27,260 +bounding box So here there is no bounding box, + +745 +00:44:27,400 --> 00:44:30,000 +there is a get instead of it and it does the same + +746 +00:44:30,000 --> 00:44:33,020 +thing And the same thing, when it calls + +747 +00:44:33,020 --> 00:44:35,540 +createManipulator() it goes to Text and calls + +748 +00:44:35,540 --> 00:44:39,520 +TextManipulator() So actually I created TextView + +749 +00:44:39,520 --> 00:44:42,300 +with the drawing editor without changing anything + +750 +00:44:42,300 --> 00:44:45,500 +on the drawing editor This is done by default with + +751 +00:44:45,500 --> 00:44:49,040 +Shape So I let him deal with the text view by + +752 +00:44:49,040 --> 00:44:53,780 +using the adapter. It uses a shape and at the same + +753 +00:44:53,780 --> 00:44:56,220 +time it uses the text view from inside. And any + +754 +00:44:56,220 --> 00:44:59,080 +request on these methods turns them into the new + +755 +00:44:59,080 --> 00:45:03,380 +item. So this is also an example of the + +756 +00:45:03,380 --> 00:45:04,860 +application of the adapter pattern. This is how we + +757 +00:45:04,860 --> 00:45:07,560 +completed the adapter design pattern. Is there any + +758 +00:45:07,560 --> 00:45:10,500 +question, guys? Okay, thank you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/pD7IG4O9Gzo_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/pD7IG4O9Gzo_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..31b2fb3868df307aea5f84fa153db288a9d25093 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/pD7IG4O9Gzo_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 2043, "start": 5.35, "end": 20.43, "text": "طب يا جماعة السلام عليكم اليوم ان شاء الله يا جماعة رح نبدأ في القسم التالت من ال design patterns و هو يعني قسم بسيط ان شاء الله اللي هو ال structural design patterns مررنا على ال creational design patterns اللي هي design patterns اللي علاقة بإنشاء ال object", "tokens": [9566, 3555, 35186, 10874, 15042, 27884, 21136, 37440, 25894, 24793, 45595, 20498, 16472, 13412, 16606, 21984, 35186, 10874, 15042, 27884, 12602, 5016, 8717, 44510, 10721, 8978, 25062, 38251, 16712, 6027, 2655, 9154, 2423, 1715, 8294, 4032, 31439, 37495, 22653, 12174, 38251, 4724, 3794, 1829, 9566, 16472, 13412, 16606, 21984, 13672, 1829, 31439, 2423, 15067, 1715, 8294, 3714, 2288, 2288, 8315, 15844, 2423, 1197, 1478, 1715, 8294, 13672, 1829, 39896, 1715, 8294, 13672, 1829, 11203, 995, 28671, 4724, 28814, 1863, 8592, 16606, 2423, 2657], "avg_logprob": -0.20944940547148386, "compression_ratio": 1.969387755102041, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 5.35, "end": 5.63, "word": "طب", "probability": 0.5088653564453125}, {"start": 5.63, "end": 5.73, "word": " يا", "probability": 0.93994140625}, {"start": 5.73, "end": 5.89, "word": " جماعة", "probability": 0.9879557291666666}, {"start": 5.89, "end": 6.13, "word": " السلام", "probability": 0.9482421875}, {"start": 6.13, "end": 7.05, "word": " عليكم", "probability": 0.9091796875}, {"start": 7.05, "end": 8.15, "word": " اليوم", "probability": 0.806640625}, {"start": 8.15, "end": 8.25, "word": " ان", "probability": 0.5068359375}, {"start": 8.25, "end": 8.41, "word": " شاء", "probability": 0.952392578125}, {"start": 8.41, "end": 8.55, "word": " الله", "probability": 0.900390625}, {"start": 8.55, "end": 8.67, "word": " يا", "probability": 0.8720703125}, {"start": 8.67, "end": 8.91, "word": " جماعة", "probability": 0.9938151041666666}, {"start": 8.91, "end": 9.09, "word": " رح", "probability": 0.764892578125}, {"start": 9.09, "end": 9.55, "word": " نبدأ", "probability": 0.9763997395833334}, {"start": 9.55, "end": 9.69, "word": " في", "probability": 0.85205078125}, {"start": 9.69, "end": 10.01, "word": " القسم", "probability": 0.7490234375}, {"start": 10.01, "end": 10.47, "word": " التالت", "probability": 0.9576822916666666}, {"start": 10.47, "end": 10.61, "word": " من", "probability": 0.9921875}, {"start": 10.61, "end": 10.71, "word": " ال", "probability": 0.80029296875}, {"start": 10.71, "end": 10.97, "word": " design", "probability": 0.962890625}, {"start": 10.97, "end": 11.47, "word": " patterns", "probability": 0.82666015625}, {"start": 11.47, "end": 12.39, "word": " و", "probability": 0.63720703125}, {"start": 12.39, "end": 12.61, "word": " هو", "probability": 0.64111328125}, {"start": 12.61, "end": 12.81, "word": " يعني", "probability": 0.8115234375}, {"start": 12.81, "end": 13.11, "word": " قسم", "probability": 0.994384765625}, {"start": 13.11, "end": 13.49, "word": " بسيط", "probability": 0.994873046875}, {"start": 13.49, "end": 13.61, "word": " ان", "probability": 0.7646484375}, {"start": 13.61, "end": 13.77, "word": " شاء", "probability": 0.988525390625}, {"start": 13.77, "end": 13.91, "word": " الله", "probability": 0.88623046875}, {"start": 13.91, "end": 14.05, "word": " اللي", "probability": 0.9140625}, {"start": 14.05, "end": 14.15, "word": " هو", "probability": 0.96142578125}, {"start": 14.15, "end": 14.25, "word": " ال", "probability": 0.82080078125}, {"start": 14.25, "end": 14.67, "word": " structural", "probability": 0.9111328125}, {"start": 14.67, "end": 15.29, "word": " design", "probability": 0.951171875}, {"start": 15.29, "end": 15.67, "word": " patterns", "probability": 0.81494140625}, {"start": 15.67, "end": 16.63, "word": " مررنا", "probability": 0.72052001953125}, {"start": 16.63, "end": 16.77, "word": " على", "probability": 0.8701171875}, {"start": 16.77, "end": 16.91, "word": " ال", "probability": 0.966796875}, {"start": 16.91, "end": 17.39, "word": " creational", "probability": 0.59381103515625}, {"start": 17.39, "end": 17.75, "word": " design", "probability": 0.90087890625}, {"start": 17.75, "end": 18.21, "word": " patterns", "probability": 0.86962890625}, {"start": 18.21, "end": 18.61, "word": " اللي", "probability": 0.945556640625}, {"start": 18.61, "end": 18.71, "word": " هي", "probability": 0.80517578125}, {"start": 18.71, "end": 18.99, "word": " design", "probability": 0.587890625}, {"start": 18.99, "end": 19.31, "word": " patterns", "probability": 0.88916015625}, {"start": 19.31, "end": 19.45, "word": " اللي", "probability": 0.895751953125}, {"start": 19.45, "end": 19.77, "word": " علاقة", "probability": 0.71728515625}, {"start": 19.77, "end": 20.17, "word": " بإنشاء", "probability": 0.87177734375}, {"start": 20.17, "end": 20.25, "word": " ال", "probability": 0.85986328125}, {"start": 20.25, "end": 20.43, "word": " object", "probability": 0.51123046875}], "temperature": 1.0}, {"id": 2, "seek": 4407, "start": 21.19, "end": 44.07, "text": " We passed to the second section, which is the behavioral design patterns, which includes the observer, event bus, command, strategy, etc. which is responsible for the behavior and communication between parts of the application. The third section is the structure, which has to do with the structure of the application and how to design it in a simplified way to make it easy to use directly by clients or developers.", "tokens": [492, 4678, 281, 264, 1150, 3541, 11, 597, 307, 264, 19124, 1715, 8294, 11, 597, 5974, 264, 27878, 11, 2280, 1255, 11, 5622, 11, 5206, 11, 5183, 13, 597, 307, 6250, 337, 264, 5223, 293, 6101, 1296, 3166, 295, 264, 3861, 13, 440, 2636, 3541, 307, 264, 3877, 11, 597, 575, 281, 360, 365, 264, 3877, 295, 264, 3861, 293, 577, 281, 1715, 309, 294, 257, 26335, 636, 281, 652, 309, 1858, 281, 764, 3838, 538, 6982, 420, 8849, 13], "avg_logprob": -0.4050925925925926, "compression_ratio": 1.8130434782608695, "no_speech_prob": 0.0, "words": [{"start": 21.19, "end": 21.35, "word": " We", "probability": 0.325439453125}, {"start": 21.35, "end": 21.49, "word": " passed", "probability": 0.22216796875}, {"start": 21.49, "end": 21.65, "word": " to", "probability": 0.818359375}, {"start": 21.65, "end": 22.03, "word": " the", "probability": 0.873046875}, {"start": 22.03, "end": 22.19, "word": " second", "probability": 0.69580078125}, {"start": 22.19, "end": 22.19, "word": " section,", "probability": 0.43701171875}, {"start": 22.33, "end": 22.33, "word": " which", "probability": 0.625}, {"start": 22.33, "end": 22.47, "word": " is", "probability": 0.90380859375}, {"start": 22.47, "end": 22.59, "word": " the", "probability": 0.6181640625}, {"start": 22.59, "end": 23.61, "word": " behavioral", "probability": 0.411376953125}, {"start": 23.61, "end": 24.13, "word": " design", "probability": 0.8818359375}, {"start": 24.13, "end": 24.69, "word": " patterns,", "probability": 0.81201171875}, {"start": 24.89, "end": 25.35, "word": " which", "probability": 0.70166015625}, {"start": 25.35, "end": 25.57, "word": " includes", "probability": 0.48974609375}, {"start": 25.57, "end": 25.69, "word": " the", "probability": 0.732421875}, {"start": 25.69, "end": 26.19, "word": " observer,", "probability": 0.68408203125}, {"start": 26.55, "end": 26.81, "word": " event", "probability": 0.6103515625}, {"start": 26.81, "end": 27.27, "word": " bus,", "probability": 0.92138671875}, {"start": 27.47, "end": 28.05, "word": " command,", "probability": 0.77587890625}, {"start": 29.39, "end": 29.99, "word": " strategy,", "probability": 0.8779296875}, {"start": 30.09, "end": 30.37, "word": " etc.", "probability": 0.49853515625}, {"start": 31.27, "end": 31.37, "word": " which", "probability": 0.41259765625}, {"start": 31.37, "end": 31.51, "word": " is", "probability": 0.72509765625}, {"start": 31.51, "end": 31.85, "word": " responsible", "probability": 0.8837890625}, {"start": 31.85, "end": 32.09, "word": " for", "probability": 0.82275390625}, {"start": 32.09, "end": 32.17, "word": " the", "probability": 0.402587890625}, {"start": 32.17, "end": 32.69, "word": " behavior", "probability": 0.85888671875}, {"start": 32.69, "end": 32.85, "word": " and", "probability": 0.837890625}, {"start": 32.85, "end": 33.35, "word": " communication", "probability": 0.39306640625}, {"start": 33.35, "end": 34.05, "word": " between", "probability": 0.8173828125}, {"start": 34.05, "end": 34.37, "word": " parts", "probability": 0.548828125}, {"start": 34.37, "end": 34.73, "word": " of", "probability": 0.95849609375}, {"start": 34.73, "end": 34.81, "word": " the", "probability": 0.86669921875}, {"start": 34.81, "end": 35.21, "word": " application.", "probability": 0.779296875}, {"start": 35.89, "end": 36.09, "word": " The", "probability": 0.69189453125}, {"start": 36.09, "end": 36.55, "word": " third", "probability": 0.9189453125}, {"start": 36.55, "end": 36.55, "word": " section", "probability": 0.81201171875}, {"start": 36.55, "end": 36.79, "word": " is", "probability": 0.64306640625}, {"start": 36.79, "end": 36.91, "word": " the", "probability": 0.66357421875}, {"start": 36.91, "end": 37.23, "word": " structure,", "probability": 0.66845703125}, {"start": 37.45, "end": 37.49, "word": " which", "probability": 0.7880859375}, {"start": 37.49, "end": 37.61, "word": " has", "probability": 0.48486328125}, {"start": 37.61, "end": 37.85, "word": " to", "probability": 0.73193359375}, {"start": 37.85, "end": 37.87, "word": " do", "probability": 0.9658203125}, {"start": 37.87, "end": 38.01, "word": " with", "probability": 0.8837890625}, {"start": 38.01, "end": 38.03, "word": " the", "probability": 0.70263671875}, {"start": 38.03, "end": 38.31, "word": " structure", "probability": 0.254150390625}, {"start": 38.31, "end": 38.47, "word": " of", "probability": 0.9521484375}, {"start": 38.47, "end": 38.59, "word": " the", "probability": 0.8994140625}, {"start": 38.59, "end": 38.89, "word": " application", "probability": 0.88671875}, {"start": 38.89, "end": 39.05, "word": " and", "probability": 0.77587890625}, {"start": 39.05, "end": 39.21, "word": " how", "probability": 0.7607421875}, {"start": 39.21, "end": 39.31, "word": " to", "probability": 0.78759765625}, {"start": 39.31, "end": 39.61, "word": " design", "probability": 0.89599609375}, {"start": 39.61, "end": 39.81, "word": " it", "probability": 0.94091796875}, {"start": 39.81, "end": 39.85, "word": " in", "probability": 0.54345703125}, {"start": 39.85, "end": 40.13, "word": " a", "probability": 0.947265625}, {"start": 40.13, "end": 40.49, "word": " simplified", "probability": 0.67529296875}, {"start": 40.49, "end": 40.63, "word": " way", "probability": 0.71337890625}, {"start": 40.63, "end": 40.81, "word": " to", "probability": 0.37841796875}, {"start": 40.81, "end": 41.09, "word": " make", "probability": 0.61669921875}, {"start": 41.09, "end": 41.15, "word": " it", "probability": 0.92041015625}, {"start": 41.15, "end": 41.35, "word": " easy", "probability": 0.7890625}, {"start": 41.35, "end": 41.45, "word": " to", "probability": 0.7900390625}, {"start": 41.45, "end": 41.97, "word": " use", "probability": 0.8896484375}, {"start": 41.97, "end": 42.51, "word": " directly", "probability": 0.58544921875}, {"start": 42.51, "end": 42.93, "word": " by", "probability": 0.900390625}, {"start": 42.93, "end": 43.43, "word": " clients", "probability": 0.70361328125}, {"start": 43.43, "end": 43.63, "word": " or", "probability": 0.72998046875}, {"start": 43.63, "end": 44.07, "word": " developers.", "probability": 0.87939453125}], "temperature": 1.0}, {"id": 3, "seek": 6150, "start": 45.68, "end": 61.5, "text": "In this section, we will go over 6 design patterns which are facade, decorator, adapter, composite, proxy and flyweight In this lecture, we will take 2 design patterns which are facade and adapter", "tokens": [4575, 341, 3541, 11, 321, 486, 352, 670, 1386, 1715, 8294, 597, 366, 46261, 11, 7919, 1639, 11, 22860, 11, 25557, 11, 29690, 293, 3603, 12329, 682, 341, 7991, 11, 321, 486, 747, 568, 1715, 8294, 597, 366, 46261, 293, 22860], "avg_logprob": -0.38988095876716433, "compression_ratio": 1.568, "no_speech_prob": 0.0, "words": [{"start": 45.68, "end": 45.94, "word": "In", "probability": 0.71044921875}, {"start": 45.94, "end": 46.14, "word": " this", "probability": 0.9404296875}, {"start": 46.14, "end": 46.4, "word": " section,", "probability": 0.364013671875}, {"start": 46.68, "end": 46.8, "word": " we", "probability": 0.89501953125}, {"start": 46.8, "end": 46.8, "word": " will", "probability": 0.6171875}, {"start": 46.8, "end": 46.94, "word": " go", "probability": 0.5087890625}, {"start": 46.94, "end": 47.08, "word": " over", "probability": 0.433837890625}, {"start": 47.08, "end": 47.4, "word": " 6", "probability": 0.68408203125}, {"start": 47.4, "end": 47.76, "word": " design", "probability": 0.82421875}, {"start": 47.76, "end": 48.3, "word": " patterns", "probability": 0.85888671875}, {"start": 48.3, "end": 49.0, "word": " which", "probability": 0.428955078125}, {"start": 49.0, "end": 49.82, "word": " are", "probability": 0.80810546875}, {"start": 49.82, "end": 50.22, "word": " facade,", "probability": 0.093017578125}, {"start": 50.68, "end": 51.32, "word": " decorator,", "probability": 0.9140625}, {"start": 51.44, "end": 51.84, "word": " adapter,", "probability": 0.75927734375}, {"start": 52.06, "end": 52.44, "word": " composite,", "probability": 0.8896484375}, {"start": 52.7, "end": 53.06, "word": " proxy", "probability": 0.97265625}, {"start": 53.06, "end": 53.76, "word": " and", "probability": 0.60400390625}, {"start": 53.76, "end": 54.26, "word": " flyweight", "probability": 0.873291015625}, {"start": 54.26, "end": 55.3, "word": " In", "probability": 0.2044677734375}, {"start": 55.3, "end": 55.6, "word": " this", "probability": 0.94091796875}, {"start": 55.6, "end": 55.94, "word": " lecture,", "probability": 0.53662109375}, {"start": 56.38, "end": 56.42, "word": " we", "probability": 0.939453125}, {"start": 56.42, "end": 56.54, "word": " will", "probability": 0.8359375}, {"start": 56.54, "end": 56.72, "word": " take", "probability": 0.3291015625}, {"start": 56.72, "end": 56.92, "word": " 2", "probability": 0.52294921875}, {"start": 56.92, "end": 57.28, "word": " design", "probability": 0.9326171875}, {"start": 57.28, "end": 57.8, "word": " patterns", "probability": 0.87646484375}, {"start": 57.8, "end": 58.16, "word": " which", "probability": 0.32763671875}, {"start": 58.16, "end": 58.28, "word": " are", "probability": 0.9169921875}, {"start": 58.28, "end": 59.3, "word": " facade", "probability": 0.8935546875}, {"start": 59.3, "end": 60.22, "word": " and", "probability": 0.9384765625}, {"start": 60.22, "end": 61.5, "word": " adapter", "probability": 0.72119140625}], "temperature": 1.0}, {"id": 4, "seek": 8911, "start": 63.87, "end": 89.11, "text": "Okay, let's start with the first design pattern, which is corruption. Of course, this word corruption, or sometimes we read it corruption, is not an English word, it is a French word. Notice that maybe this character looks a little different, not like C, like C, but there is a difference. It means interface or face. The word corruption means interface or face. Corruption is a simple design pattern.", "tokens": [8297, 11, 718, 311, 722, 365, 264, 700, 1715, 5102, 11, 597, 307, 17959, 13, 2720, 1164, 11, 341, 1349, 17959, 11, 420, 2171, 321, 1401, 309, 17959, 11, 307, 406, 364, 3669, 1349, 11, 309, 307, 257, 5522, 1349, 13, 13428, 300, 1310, 341, 2517, 1542, 257, 707, 819, 11, 406, 411, 383, 11, 411, 383, 11, 457, 456, 307, 257, 2649, 13, 467, 1355, 9226, 420, 1851, 13, 440, 1349, 17959, 1355, 9226, 420, 1851, 13, 3925, 11266, 307, 257, 2199, 1715, 5102, 13], "avg_logprob": -0.3926005630657591, "compression_ratio": 1.7822222222222222, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 63.87, "end": 64.19, "word": "Okay,", "probability": 0.25048828125}, {"start": 64.29, "end": 64.47, "word": " let's", "probability": 0.748046875}, {"start": 64.47, "end": 64.69, "word": " start", "probability": 0.814453125}, {"start": 64.69, "end": 65.05, "word": " with", "probability": 0.85595703125}, {"start": 65.05, "end": 65.15, "word": " the", "probability": 0.84033203125}, {"start": 65.15, "end": 65.27, "word": " first", "probability": 0.83349609375}, {"start": 65.27, "end": 65.59, "word": " design", "probability": 0.83740234375}, {"start": 65.59, "end": 65.95, "word": " pattern,", "probability": 0.8798828125}, {"start": 66.09, "end": 66.09, "word": " which", "probability": 0.8017578125}, {"start": 66.09, "end": 66.29, "word": " is", "probability": 0.94140625}, {"start": 66.29, "end": 66.61, "word": " corruption.", "probability": 0.50634765625}, {"start": 66.83, "end": 66.91, "word": " Of", "probability": 0.5224609375}, {"start": 66.91, "end": 67.01, "word": " course,", "probability": 0.96337890625}, {"start": 67.15, "end": 67.23, "word": " this", "probability": 0.63427734375}, {"start": 67.23, "end": 67.57, "word": " word", "probability": 0.53564453125}, {"start": 67.57, "end": 68.09, "word": " corruption,", "probability": 0.58837890625}, {"start": 68.29, "end": 68.45, "word": " or", "probability": 0.83056640625}, {"start": 68.45, "end": 68.77, "word": " sometimes", "probability": 0.58642578125}, {"start": 68.77, "end": 68.91, "word": " we", "probability": 0.57568359375}, {"start": 68.91, "end": 69.07, "word": " read", "probability": 0.7490234375}, {"start": 69.07, "end": 69.25, "word": " it", "probability": 0.537109375}, {"start": 69.25, "end": 69.47, "word": " corruption,", "probability": 0.474609375}, {"start": 70.17, "end": 70.49, "word": " is", "probability": 0.73681640625}, {"start": 70.49, "end": 71.01, "word": " not", "probability": 0.83251953125}, {"start": 71.01, "end": 71.19, "word": " an", "probability": 0.76953125}, {"start": 71.19, "end": 71.43, "word": " English", "probability": 0.970703125}, {"start": 71.43, "end": 71.63, "word": " word,", "probability": 0.900390625}, {"start": 71.81, "end": 72.05, "word": " it", "probability": 0.7216796875}, {"start": 72.05, "end": 72.05, "word": " is", "probability": 0.5751953125}, {"start": 72.05, "end": 72.23, "word": " a", "probability": 0.70751953125}, {"start": 72.23, "end": 72.47, "word": " French", "probability": 0.87890625}, {"start": 72.47, "end": 72.75, "word": " word.", "probability": 0.91162109375}, {"start": 73.25, "end": 73.55, "word": " Notice", "probability": 0.478759765625}, {"start": 73.55, "end": 73.77, "word": " that", "probability": 0.59130859375}, {"start": 73.77, "end": 73.95, "word": " maybe", "probability": 0.294921875}, {"start": 73.95, "end": 74.17, "word": " this", "probability": 0.60595703125}, {"start": 74.17, "end": 74.55, "word": " character", "probability": 0.86572265625}, {"start": 74.55, "end": 74.99, "word": " looks", "probability": 0.2783203125}, {"start": 74.99, "end": 75.57, "word": " a", "probability": 0.69287109375}, {"start": 75.57, "end": 75.71, "word": " little", "probability": 0.49365234375}, {"start": 75.71, "end": 75.71, "word": " different,", "probability": 0.625}, {"start": 75.85, "end": 76.03, "word": " not", "probability": 0.52197265625}, {"start": 76.03, "end": 76.79, "word": " like", "probability": 0.89599609375}, {"start": 76.79, "end": 77.07, "word": " C,", "probability": 0.51171875}, {"start": 77.75, "end": 77.93, "word": " like", "probability": 0.46044921875}, {"start": 77.93, "end": 78.25, "word": " C,", "probability": 0.962890625}, {"start": 78.31, "end": 78.45, "word": " but", "probability": 0.919921875}, {"start": 78.45, "end": 78.63, "word": " there", "probability": 0.82666015625}, {"start": 78.63, "end": 78.67, "word": " is", "probability": 0.73583984375}, {"start": 78.67, "end": 78.87, "word": " a", "probability": 0.96435546875}, {"start": 78.87, "end": 79.17, "word": " difference.", "probability": 0.8427734375}, {"start": 79.99, "end": 80.47, "word": " It", "probability": 0.50537109375}, {"start": 80.47, "end": 80.73, "word": " means", "probability": 0.9208984375}, {"start": 80.73, "end": 81.35, "word": " interface", "probability": 0.86083984375}, {"start": 81.35, "end": 81.67, "word": " or", "probability": 0.84814453125}, {"start": 81.67, "end": 81.97, "word": " face.", "probability": 0.7109375}, {"start": 82.55, "end": 82.63, "word": " The", "probability": 0.7353515625}, {"start": 82.63, "end": 82.75, "word": " word", "probability": 0.80419921875}, {"start": 82.75, "end": 83.09, "word": " corruption", "probability": 0.78369140625}, {"start": 83.09, "end": 83.31, "word": " means", "probability": 0.91796875}, {"start": 83.31, "end": 83.85, "word": " interface", "probability": 0.8916015625}, {"start": 83.85, "end": 84.19, "word": " or", "probability": 0.94970703125}, {"start": 84.19, "end": 85.07, "word": " face.", "probability": 0.90283203125}, {"start": 85.85, "end": 86.15, "word": " Corruption", "probability": 0.979736328125}, {"start": 86.15, "end": 86.39, "word": " is", "probability": 0.93701171875}, {"start": 86.39, "end": 86.95, "word": " a", "probability": 0.46337890625}, {"start": 86.95, "end": 87.09, "word": " simple", "probability": 0.91796875}, {"start": 87.09, "end": 88.69, "word": " design", "probability": 0.90234375}, {"start": 88.69, "end": 89.11, "word": " pattern.", "probability": 0.89306640625}], "temperature": 1.0}, {"id": 5, "seek": 11051, "start": 90.95, "end": 110.51, "text": "I consider it one of the simple things, true it's simple but it's very important and I'll tell you in a very short way to understand this, now imagine that you made a library for example to book or order, to buy a certain order and book and ship it", "tokens": [40, 1949, 309, 472, 295, 264, 2199, 721, 11, 2074, 309, 311, 2199, 457, 309, 311, 588, 1021, 293, 286, 603, 980, 291, 294, 257, 588, 2099, 636, 281, 1223, 341, 11, 586, 3811, 300, 291, 1027, 257, 6405, 337, 1365, 281, 1446, 420, 1668, 11, 281, 2256, 257, 1629, 1668, 293, 1446, 293, 5374, 309], "avg_logprob": -0.5679824561403509, "compression_ratio": 1.559748427672956, "no_speech_prob": 5.424022674560547e-06, "words": [{"start": 90.95, "end": 91.17, "word": "I", "probability": 0.84716796875}, {"start": 91.17, "end": 91.47, "word": " consider", "probability": 0.7138671875}, {"start": 91.47, "end": 91.59, "word": " it", "probability": 0.7802734375}, {"start": 91.59, "end": 91.63, "word": " one", "probability": 0.44091796875}, {"start": 91.63, "end": 91.73, "word": " of", "probability": 0.9609375}, {"start": 91.73, "end": 91.79, "word": " the", "probability": 0.759765625}, {"start": 91.79, "end": 92.45, "word": " simple", "probability": 0.71337890625}, {"start": 92.45, "end": 92.53, "word": " things,", "probability": 0.7138671875}, {"start": 92.89, "end": 93.15, "word": " true", "probability": 0.10943603515625}, {"start": 93.15, "end": 93.31, "word": " it's", "probability": 0.5029296875}, {"start": 93.31, "end": 93.47, "word": " simple", "probability": 0.84521484375}, {"start": 93.47, "end": 93.77, "word": " but", "probability": 0.720703125}, {"start": 93.77, "end": 93.91, "word": " it's", "probability": 0.703125}, {"start": 93.91, "end": 93.93, "word": " very", "probability": 0.69873046875}, {"start": 93.93, "end": 94.25, "word": " important", "probability": 0.8662109375}, {"start": 94.25, "end": 95.87, "word": " and", "probability": 0.46875}, {"start": 95.87, "end": 95.99, "word": " I'll", "probability": 0.503173828125}, {"start": 95.99, "end": 96.11, "word": " tell", "probability": 0.5703125}, {"start": 96.11, "end": 96.23, "word": " you", "probability": 0.95556640625}, {"start": 96.23, "end": 96.33, "word": " in", "probability": 0.5078125}, {"start": 96.33, "end": 96.53, "word": " a", "probability": 0.330078125}, {"start": 96.53, "end": 96.53, "word": " very", "probability": 0.307861328125}, {"start": 96.53, "end": 96.63, "word": " short", "probability": 0.6376953125}, {"start": 96.63, "end": 97.73, "word": " way", "probability": 0.578125}, {"start": 97.73, "end": 98.27, "word": " to", "probability": 0.36279296875}, {"start": 98.27, "end": 98.93, "word": " understand", "probability": 0.431884765625}, {"start": 98.93, "end": 99.33, "word": " this,", "probability": 0.71875}, {"start": 100.05, "end": 101.23, "word": " now", "probability": 0.44384765625}, {"start": 101.23, "end": 102.93, "word": " imagine", "probability": 0.876953125}, {"start": 102.93, "end": 103.07, "word": " that", "probability": 0.29833984375}, {"start": 103.07, "end": 103.19, "word": " you", "probability": 0.9638671875}, {"start": 103.19, "end": 103.33, "word": " made", "probability": 0.178466796875}, {"start": 103.33, "end": 103.43, "word": " a", "probability": 0.78076171875}, {"start": 103.43, "end": 103.71, "word": " library", "probability": 0.51318359375}, {"start": 103.71, "end": 104.21, "word": " for", "probability": 0.82373046875}, {"start": 104.21, "end": 104.21, "word": " example", "probability": 0.5791015625}, {"start": 104.21, "end": 105.57, "word": " to", "probability": 0.4111328125}, {"start": 105.57, "end": 105.93, "word": " book", "probability": 0.65771484375}, {"start": 105.93, "end": 106.37, "word": " or", "probability": 0.8046875}, {"start": 106.37, "end": 107.43, "word": " order,", "probability": 0.75146484375}, {"start": 108.29, "end": 108.49, "word": " to", "probability": 0.465576171875}, {"start": 108.49, "end": 108.71, "word": " buy", "probability": 0.7041015625}, {"start": 108.71, "end": 108.87, "word": " a", "probability": 0.8603515625}, {"start": 108.87, "end": 109.45, "word": " certain", "probability": 0.3369140625}, {"start": 109.45, "end": 109.45, "word": " order", "probability": 0.94189453125}, {"start": 109.45, "end": 109.73, "word": " and", "probability": 0.57275390625}, {"start": 109.73, "end": 109.95, "word": " book", "probability": 0.75439453125}, {"start": 109.95, "end": 110.13, "word": " and", "probability": 0.6650390625}, {"start": 110.13, "end": 110.31, "word": " ship", "probability": 0.54931640625}, {"start": 110.31, "end": 110.51, "word": " it", "probability": 0.84130859375}], "temperature": 1.0}, {"id": 6, "seek": 13694, "start": 111.39, "end": 136.95, "text": " Because the API or your library is like this because the developer is a programmer, he wants to use your library to call some companies to implement the process of buying orders. For example, this is the process of ordering. The process of ordering, in order for the developer to call or implement it, he needs to call a set of methods. There is a method called, for example, search item", "tokens": [1436, 264, 9362, 420, 428, 6405, 307, 411, 341, 570, 264, 10754, 307, 257, 32116, 11, 415, 2738, 281, 764, 428, 6405, 281, 818, 512, 3431, 281, 4445, 264, 1399, 295, 6382, 9470, 13, 1171, 1365, 11, 341, 307, 264, 1399, 295, 21739, 13, 440, 1399, 295, 21739, 11, 294, 1668, 337, 264, 10754, 281, 818, 420, 4445, 309, 11, 415, 2203, 281, 818, 257, 992, 295, 7150, 13, 821, 307, 257, 3170, 1219, 11, 337, 1365, 11, 3164, 3174], "avg_logprob": -0.5320215813907576, "compression_ratio": 1.8743961352657006, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 111.39, "end": 111.73, "word": " Because", "probability": 0.264892578125}, {"start": 111.73, "end": 111.87, "word": " the", "probability": 0.38134765625}, {"start": 111.87, "end": 112.19, "word": " API", "probability": 0.69775390625}, {"start": 112.19, "end": 112.45, "word": " or", "probability": 0.6943359375}, {"start": 112.45, "end": 112.53, "word": " your", "probability": 0.68310546875}, {"start": 112.53, "end": 112.81, "word": " library", "probability": 0.6943359375}, {"start": 112.81, "end": 113.27, "word": " is", "probability": 0.50927734375}, {"start": 113.27, "end": 113.39, "word": " like", "probability": 0.061065673828125}, {"start": 113.39, "end": 113.47, "word": " this", "probability": 0.7060546875}, {"start": 113.47, "end": 113.75, "word": " because", "probability": 0.275390625}, {"start": 113.75, "end": 114.11, "word": " the", "probability": 0.783203125}, {"start": 114.11, "end": 115.45, "word": " developer", "probability": 0.81787109375}, {"start": 115.45, "end": 116.37, "word": " is", "probability": 0.362548828125}, {"start": 116.37, "end": 116.47, "word": " a", "probability": 0.57275390625}, {"start": 116.47, "end": 116.75, "word": " programmer,", "probability": 0.89501953125}, {"start": 117.45, "end": 117.49, "word": " he", "probability": 0.56103515625}, {"start": 117.49, "end": 117.61, "word": " wants", "probability": 0.46337890625}, {"start": 117.61, "end": 117.73, "word": " to", "probability": 0.9658203125}, {"start": 117.73, "end": 118.03, "word": " use", "probability": 0.8720703125}, {"start": 118.03, "end": 118.19, "word": " your", "probability": 0.78076171875}, {"start": 118.19, "end": 118.77, "word": " library", "probability": 0.90234375}, {"start": 118.77, "end": 119.21, "word": " to", "probability": 0.9189453125}, {"start": 119.21, "end": 119.59, "word": " call", "probability": 0.1895751953125}, {"start": 119.59, "end": 120.07, "word": " some", "probability": 0.68701171875}, {"start": 120.07, "end": 120.65, "word": " companies", "probability": 0.142333984375}, {"start": 120.65, "end": 120.95, "word": " to", "probability": 0.845703125}, {"start": 120.95, "end": 121.27, "word": " implement", "probability": 0.203369140625}, {"start": 121.27, "end": 121.37, "word": " the", "probability": 0.44189453125}, {"start": 121.37, "end": 121.59, "word": " process", "probability": 0.2293701171875}, {"start": 121.59, "end": 121.73, "word": " of", "probability": 0.95751953125}, {"start": 121.73, "end": 121.89, "word": " buying", "probability": 0.4560546875}, {"start": 121.89, "end": 122.29, "word": " orders.", "probability": 0.27685546875}, {"start": 123.11, "end": 123.33, "word": " For", "probability": 0.44287109375}, {"start": 123.33, "end": 123.35, "word": " example,", "probability": 0.9521484375}, {"start": 123.37, "end": 123.45, "word": " this", "probability": 0.56396484375}, {"start": 123.45, "end": 123.79, "word": " is", "probability": 0.84912109375}, {"start": 123.79, "end": 123.89, "word": " the", "probability": 0.469970703125}, {"start": 123.89, "end": 124.11, "word": " process", "probability": 0.75634765625}, {"start": 124.11, "end": 124.45, "word": " of", "probability": 0.96875}, {"start": 124.45, "end": 125.33, "word": " ordering.", "probability": 0.91845703125}, {"start": 126.43, "end": 126.95, "word": " The", "probability": 0.48291015625}, {"start": 126.95, "end": 127.13, "word": " process", "probability": 0.78466796875}, {"start": 127.13, "end": 127.31, "word": " of", "probability": 0.96923828125}, {"start": 127.31, "end": 127.83, "word": " ordering,", "probability": 0.9326171875}, {"start": 128.25, "end": 128.45, "word": " in", "probability": 0.6103515625}, {"start": 128.45, "end": 128.59, "word": " order", "probability": 0.916015625}, {"start": 128.59, "end": 128.83, "word": " for", "probability": 0.83984375}, {"start": 128.83, "end": 129.53, "word": " the", "probability": 0.8720703125}, {"start": 129.53, "end": 129.91, "word": " developer", "probability": 0.900390625}, {"start": 129.91, "end": 130.07, "word": " to", "probability": 0.96337890625}, {"start": 130.07, "end": 130.35, "word": " call", "probability": 0.56494140625}, {"start": 130.35, "end": 130.63, "word": " or", "probability": 0.5322265625}, {"start": 130.63, "end": 131.03, "word": " implement", "probability": 0.58056640625}, {"start": 131.03, "end": 131.23, "word": " it,", "probability": 0.85107421875}, {"start": 131.27, "end": 131.35, "word": " he", "probability": 0.4873046875}, {"start": 131.35, "end": 131.49, "word": " needs", "probability": 0.324951171875}, {"start": 131.49, "end": 131.57, "word": " to", "probability": 0.93701171875}, {"start": 131.57, "end": 131.83, "word": " call", "probability": 0.677734375}, {"start": 131.83, "end": 131.97, "word": " a", "probability": 0.908203125}, {"start": 131.97, "end": 132.23, "word": " set", "probability": 0.50927734375}, {"start": 132.23, "end": 132.45, "word": " of", "probability": 0.9716796875}, {"start": 132.45, "end": 132.87, "word": " methods.", "probability": 0.890625}, {"start": 133.55, "end": 133.73, "word": " There", "probability": 0.583984375}, {"start": 133.73, "end": 133.75, "word": " is", "probability": 0.86767578125}, {"start": 133.75, "end": 133.83, "word": " a", "probability": 0.93896484375}, {"start": 133.83, "end": 134.09, "word": " method", "probability": 0.95751953125}, {"start": 134.09, "end": 135.37, "word": " called,", "probability": 0.55322265625}, {"start": 135.59, "end": 135.69, "word": " for", "probability": 0.896484375}, {"start": 135.69, "end": 135.81, "word": " example,", "probability": 0.9677734375}, {"start": 135.87, "end": 136.49, "word": " search", "probability": 0.55029296875}, {"start": 136.49, "end": 136.95, "word": " item", "probability": 0.720703125}], "temperature": 1.0}, {"id": 7, "seek": 16996, "start": 140.48, "end": 169.96, "text": " and then add item to basket and then execute check out method and then execute request payment gate and then process", "tokens": [293, 550, 909, 3174, 281, 8390, 293, 550, 14483, 1520, 484, 3170, 293, 550, 14483, 5308, 10224, 8539, 293, 550, 1399], "avg_logprob": -0.5916193371469324, "compression_ratio": 1.481012658227848, "no_speech_prob": 0.0, "words": [{"start": 140.48, "end": 140.7, "word": " and", "probability": 0.26318359375}, {"start": 140.7, "end": 141.1, "word": " then", "probability": 0.712890625}, {"start": 141.1, "end": 142.06, "word": " add", "probability": 0.057861328125}, {"start": 142.06, "end": 144.86, "word": " item", "probability": 0.7783203125}, {"start": 144.86, "end": 147.14, "word": " to", "probability": 0.8486328125}, {"start": 147.14, "end": 147.68, "word": " basket", "probability": 0.880859375}, {"start": 147.68, "end": 151.9, "word": " and", "probability": 0.481689453125}, {"start": 151.9, "end": 153.28, "word": " then", "probability": 0.77294921875}, {"start": 153.28, "end": 154.2, "word": " execute", "probability": 0.471923828125}, {"start": 154.2, "end": 155.04, "word": " check", "probability": 0.424560546875}, {"start": 155.04, "end": 155.5, "word": " out", "probability": 0.63671875}, {"start": 155.5, "end": 155.64, "word": " method", "probability": 0.72216796875}, {"start": 155.64, "end": 156.9, "word": " and", "probability": 0.6826171875}, {"start": 156.9, "end": 157.34, "word": " then", "probability": 0.72412109375}, {"start": 157.34, "end": 157.94, "word": " execute", "probability": 0.935546875}, {"start": 157.94, "end": 159.28, "word": " request", "probability": 0.370849609375}, {"start": 159.28, "end": 162.88, "word": " payment", "probability": 0.9443359375}, {"start": 162.88, "end": 163.36, "word": " gate", "probability": 0.91650390625}, {"start": 163.36, "end": 167.14, "word": " and", "probability": 0.16943359375}, {"start": 167.14, "end": 169.1, "word": " then", "probability": 0.77392578125}, {"start": 169.1, "end": 169.96, "word": " process", "probability": 0.70947265625}], "temperature": 1.0}, {"id": 8, "seek": 18188, "start": 171.36, "end": 181.88, "text": " payment و بعدين arrange for delivery", "tokens": [10224, 4032, 39182, 9957, 9424, 337, 8982], "avg_logprob": -0.487060546875, "compression_ratio": 0.8269230769230769, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 171.36, "end": 171.94, "word": " payment", "probability": 0.671875}, {"start": 171.94, "end": 175.3, "word": " و", "probability": 0.10015869140625}, {"start": 175.3, "end": 175.78, "word": " بعدين", "probability": 0.79443359375}, {"start": 175.78, "end": 176.42, "word": " arrange", "probability": 0.52734375}, {"start": 176.42, "end": 178.92, "word": " for", "probability": 0.96728515625}, {"start": 178.92, "end": 181.88, "word": " delivery", "probability": 0.921875}], "temperature": 1.0}, {"id": 9, "seek": 20898, "start": 183.16, "end": 208.98, "text": " to charge the item because these are a set of steps anyone who wants to make an order has to follow these methods in order and of course these methods depend on each other for example, I can't make a request to the payment gate unless I make a check-out for example what I'm saying is that this API was saved by me as a programmer and I saved it to whom? to other developers to follow this library. Corruption in short means", "tokens": [281, 4602, 264, 3174, 570, 613, 366, 257, 992, 295, 4439, 2878, 567, 2738, 281, 652, 364, 1668, 575, 281, 1524, 613, 7150, 294, 1668, 293, 295, 1164, 613, 7150, 5672, 322, 1184, 661, 337, 1365, 11, 286, 393, 380, 652, 257, 5308, 281, 264, 10224, 8539, 5969, 286, 652, 257, 1520, 12, 346, 337, 1365, 437, 286, 478, 1566, 307, 300, 341, 9362, 390, 6624, 538, 385, 382, 257, 32116, 293, 286, 6624, 309, 281, 7101, 30, 281, 661, 8849, 281, 1524, 341, 6405, 13, 3925, 11266, 294, 2099, 1355], "avg_logprob": -0.5495923990788667, "compression_ratio": 1.6865079365079365, "no_speech_prob": 3.337860107421875e-06, "words": [{"start": 183.16, "end": 183.52, "word": " to", "probability": 0.328125}, {"start": 183.52, "end": 183.84, "word": " charge", "probability": 0.289306640625}, {"start": 183.84, "end": 183.98, "word": " the", "probability": 0.6806640625}, {"start": 183.98, "end": 184.3, "word": " item", "probability": 0.5830078125}, {"start": 184.3, "end": 185.54, "word": " because", "probability": 0.1763916015625}, {"start": 185.54, "end": 185.74, "word": " these", "probability": 0.35205078125}, {"start": 185.74, "end": 185.8, "word": " are", "probability": 0.904296875}, {"start": 185.8, "end": 185.86, "word": " a", "probability": 0.580078125}, {"start": 185.86, "end": 186.04, "word": " set", "probability": 0.4716796875}, {"start": 186.04, "end": 186.16, "word": " of", "probability": 0.96826171875}, {"start": 186.16, "end": 186.62, "word": " steps", "probability": 0.830078125}, {"start": 186.62, "end": 187.2, "word": " anyone", "probability": 0.252685546875}, {"start": 187.2, "end": 187.48, "word": " who", "probability": 0.630859375}, {"start": 187.48, "end": 187.58, "word": " wants", "probability": 0.4794921875}, {"start": 187.58, "end": 187.58, "word": " to", "probability": 0.96923828125}, {"start": 187.58, "end": 187.7, "word": " make", "probability": 0.352783203125}, {"start": 187.7, "end": 187.84, "word": " an", "probability": 0.73583984375}, {"start": 187.84, "end": 188.12, "word": " order", "probability": 0.927734375}, {"start": 188.12, "end": 189.26, "word": " has", "probability": 0.150146484375}, {"start": 189.26, "end": 189.26, "word": " to", "probability": 0.96630859375}, {"start": 189.26, "end": 189.56, "word": " follow", "probability": 0.73828125}, {"start": 189.56, "end": 189.72, "word": " these", "probability": 0.70458984375}, {"start": 189.72, "end": 190.3, "word": " methods", "probability": 0.5322265625}, {"start": 190.3, "end": 190.98, "word": " in", "probability": 0.64013671875}, {"start": 190.98, "end": 191.36, "word": " order", "probability": 0.69384765625}, {"start": 191.36, "end": 191.7, "word": " and", "probability": 0.673828125}, {"start": 191.7, "end": 191.88, "word": " of", "probability": 0.7431640625}, {"start": 191.88, "end": 191.96, "word": " course", "probability": 0.93896484375}, {"start": 191.96, "end": 192.08, "word": " these", "probability": 0.68994140625}, {"start": 192.08, "end": 192.34, "word": " methods", "probability": 0.9189453125}, {"start": 192.34, "end": 192.8, "word": " depend", "probability": 0.548828125}, {"start": 192.8, "end": 193.12, "word": " on", "probability": 0.9375}, {"start": 193.12, "end": 193.4, "word": " each", "probability": 0.923828125}, {"start": 193.4, "end": 193.4, "word": " other", "probability": 0.890625}, {"start": 193.4, "end": 194.5, "word": " for", "probability": 0.2188720703125}, {"start": 194.5, "end": 194.58, "word": " example,", "probability": 0.90673828125}, {"start": 194.62, "end": 194.74, "word": " I", "probability": 0.487548828125}, {"start": 194.74, "end": 195.06, "word": " can't", "probability": 0.683837890625}, {"start": 195.06, "end": 195.6, "word": " make", "probability": 0.66015625}, {"start": 195.6, "end": 195.72, "word": " a", "probability": 0.94677734375}, {"start": 195.72, "end": 196.04, "word": " request", "probability": 0.8154296875}, {"start": 196.04, "end": 196.2, "word": " to", "probability": 0.65673828125}, {"start": 196.2, "end": 196.3, "word": " the", "probability": 0.6630859375}, {"start": 196.3, "end": 196.5, "word": " payment", "probability": 0.97119140625}, {"start": 196.5, "end": 196.8, "word": " gate", "probability": 0.94873046875}, {"start": 196.8, "end": 196.98, "word": " unless", "probability": 0.36474609375}, {"start": 196.98, "end": 197.18, "word": " I", "probability": 0.9443359375}, {"start": 197.18, "end": 197.3, "word": " make", "probability": 0.32568359375}, {"start": 197.3, "end": 197.44, "word": " a", "probability": 0.92822265625}, {"start": 197.44, "end": 197.6, "word": " check", "probability": 0.57568359375}, {"start": 197.6, "end": 197.86, "word": "-out", "probability": 0.5675048828125}, {"start": 197.86, "end": 198.1, "word": " for", "probability": 0.30908203125}, {"start": 198.1, "end": 198.34, "word": " example", "probability": 0.935546875}, {"start": 198.34, "end": 200.64, "word": " what", "probability": 0.24365234375}, {"start": 200.64, "end": 200.88, "word": " I'm", "probability": 0.757568359375}, {"start": 200.88, "end": 201.04, "word": " saying", "probability": 0.70068359375}, {"start": 201.04, "end": 201.44, "word": " is", "probability": 0.72607421875}, {"start": 201.44, "end": 201.76, "word": " that", "probability": 0.39794921875}, {"start": 201.76, "end": 202.08, "word": " this", "probability": 0.478271484375}, {"start": 202.08, "end": 202.5, "word": " API", "probability": 0.88818359375}, {"start": 202.5, "end": 202.82, "word": " was", "probability": 0.270263671875}, {"start": 202.82, "end": 202.82, "word": " saved", "probability": 0.398193359375}, {"start": 202.82, "end": 202.82, "word": " by", "probability": 0.59765625}, {"start": 202.82, "end": 202.82, "word": " me", "probability": 0.91064453125}, {"start": 202.82, "end": 202.92, "word": " as", "probability": 0.8837890625}, {"start": 202.92, "end": 203.02, "word": " a", "probability": 0.791015625}, {"start": 203.02, "end": 203.28, "word": " programmer", "probability": 0.9423828125}, {"start": 203.28, "end": 203.84, "word": " and", "probability": 0.2275390625}, {"start": 203.84, "end": 203.9, "word": " I", "probability": 0.52001953125}, {"start": 203.9, "end": 204.12, "word": " saved", "probability": 0.6640625}, {"start": 204.12, "end": 204.28, "word": " it", "probability": 0.9248046875}, {"start": 204.28, "end": 204.36, "word": " to", "probability": 0.397705078125}, {"start": 204.36, "end": 204.5, "word": " whom?", "probability": 0.312744140625}, {"start": 204.6, "end": 204.68, "word": " to", "probability": 0.6943359375}, {"start": 204.68, "end": 204.76, "word": " other", "probability": 0.67919921875}, {"start": 204.76, "end": 205.24, "word": " developers", "probability": 0.85009765625}, {"start": 205.24, "end": 206.46, "word": " to", "probability": 0.65966796875}, {"start": 206.46, "end": 206.74, "word": " follow", "probability": 0.70849609375}, {"start": 206.74, "end": 206.86, "word": " this", "probability": 0.67822265625}, {"start": 206.86, "end": 207.18, "word": " library.", "probability": 0.45654296875}, {"start": 207.82, "end": 208.22, "word": " Corruption", "probability": 0.7161865234375}, {"start": 208.22, "end": 208.38, "word": " in", "probability": 0.441162109375}, {"start": 208.38, "end": 208.72, "word": " short", "probability": 0.677734375}, {"start": 208.72, "end": 208.98, "word": " means", "probability": 0.2431640625}], "temperature": 1.0}, {"id": 10, "seek": 23909, "start": 210.71, "end": 239.09, "text": "always try when you save a library make it easier for the developer to execute the important operations okay? so now the developer wants to make an order process in order to make the order he must follow these methods in detail one by one in a certain order and of course each method depends on the other so you have to wait for the output of a method in order to execute the next method now the developers who come from outside who use the library do not know these details so they have to read the documentation", "tokens": [304, 942, 853, 562, 291, 3155, 257, 6405, 652, 309, 3571, 337, 264, 10754, 281, 14483, 264, 1021, 7705, 1392, 30, 370, 586, 264, 10754, 2738, 281, 652, 364, 1668, 1399, 294, 1668, 281, 652, 264, 1668, 415, 1633, 1524, 613, 7150, 294, 2607, 472, 538, 472, 294, 257, 1629, 1668, 293, 295, 1164, 1184, 3170, 5946, 322, 264, 661, 370, 291, 362, 281, 1699, 337, 264, 484, 2582, 295, 257, 3170, 294, 1668, 281, 14483, 264, 958, 3170, 586, 264, 8849, 567, 808, 490, 2380, 567, 764, 264, 6405, 360, 406, 458, 613, 4365, 370, 436, 362, 281, 1401, 264, 14333], "avg_logprob": -0.46055824895506925, "compression_ratio": 2.0196850393700787, "no_speech_prob": 5.7220458984375e-06, "words": [{"start": 210.71, "end": 211.15, "word": "always", "probability": 0.48480224609375}, {"start": 211.15, "end": 211.15, "word": " try", "probability": 0.77490234375}, {"start": 211.15, "end": 211.79, "word": " when", "probability": 0.2330322265625}, {"start": 211.79, "end": 211.99, "word": " you", "probability": 0.89501953125}, {"start": 211.99, "end": 212.35, "word": " save", "probability": 0.2364501953125}, {"start": 212.35, "end": 212.79, "word": " a", "probability": 0.640625}, {"start": 212.79, "end": 212.79, "word": " library", "probability": 0.69921875}, {"start": 212.79, "end": 213.21, "word": " make", "probability": 0.3779296875}, {"start": 213.21, "end": 213.21, "word": " it", "probability": 0.7529296875}, {"start": 213.21, "end": 213.57, "word": " easier", "probability": 0.62255859375}, {"start": 213.57, "end": 213.77, "word": " for", "probability": 0.86083984375}, {"start": 213.77, "end": 213.89, "word": " the", "probability": 0.67626953125}, {"start": 213.89, "end": 214.33, "word": " developer", "probability": 0.80615234375}, {"start": 214.33, "end": 215.19, "word": " to", "probability": 0.84814453125}, {"start": 215.19, "end": 215.47, "word": " execute", "probability": 0.51171875}, {"start": 215.47, "end": 215.59, "word": " the", "probability": 0.484619140625}, {"start": 215.59, "end": 215.65, "word": " important", "probability": 0.7646484375}, {"start": 215.65, "end": 216.37, "word": " operations", "probability": 0.47265625}, {"start": 216.37, "end": 217.39, "word": " okay?", "probability": 0.173583984375}, {"start": 217.87, "end": 218.03, "word": " so", "probability": 0.223876953125}, {"start": 218.03, "end": 218.39, "word": " now", "probability": 0.81005859375}, {"start": 218.39, "end": 218.63, "word": " the", "probability": 0.7802734375}, {"start": 218.63, "end": 219.01, "word": " developer", "probability": 0.87255859375}, {"start": 219.01, "end": 219.61, "word": " wants", "probability": 0.35888671875}, {"start": 219.61, "end": 219.67, "word": " to", "probability": 0.9677734375}, {"start": 219.67, "end": 219.79, "word": " make", "probability": 0.1778564453125}, {"start": 219.79, "end": 220.21, "word": " an", "probability": 0.64697265625}, {"start": 220.21, "end": 220.45, "word": " order", "probability": 0.83984375}, {"start": 220.45, "end": 220.59, "word": " process", "probability": 0.64794921875}, {"start": 220.59, "end": 221.69, "word": " in", "probability": 0.315673828125}, {"start": 221.69, "end": 221.79, "word": " order", "probability": 0.91015625}, {"start": 221.79, "end": 221.85, "word": " to", "probability": 0.89892578125}, {"start": 221.85, "end": 222.01, "word": " make", "probability": 0.78173828125}, {"start": 222.01, "end": 222.15, "word": " the", "probability": 0.66064453125}, {"start": 222.15, "end": 222.43, "word": " order", "probability": 0.9384765625}, {"start": 222.43, "end": 222.65, "word": " he", "probability": 0.45849609375}, {"start": 222.65, "end": 222.85, "word": " must", "probability": 0.419921875}, {"start": 222.85, "end": 223.15, "word": " follow", "probability": 0.32568359375}, {"start": 223.15, "end": 223.25, "word": " these", "probability": 0.76025390625}, {"start": 223.25, "end": 223.65, "word": " methods", "probability": 0.86181640625}, {"start": 223.65, "end": 224.03, "word": " in", "probability": 0.497802734375}, {"start": 224.03, "end": 224.55, "word": " detail", "probability": 0.82861328125}, {"start": 224.55, "end": 224.83, "word": " one", "probability": 0.70068359375}, {"start": 224.83, "end": 225.05, "word": " by", "probability": 0.958984375}, {"start": 225.05, "end": 225.23, "word": " one", "probability": 0.931640625}, {"start": 225.23, "end": 225.37, "word": " in", "probability": 0.78466796875}, {"start": 225.37, "end": 225.49, "word": " a", "probability": 0.85205078125}, {"start": 225.49, "end": 226.01, "word": " certain", "probability": 0.478271484375}, {"start": 226.01, "end": 226.01, "word": " order", "probability": 0.84765625}, {"start": 226.01, "end": 226.97, "word": " and", "probability": 0.8212890625}, {"start": 226.97, "end": 227.15, "word": " of", "probability": 0.892578125}, {"start": 227.15, "end": 227.27, "word": " course", "probability": 0.95654296875}, {"start": 227.27, "end": 227.99, "word": " each", "probability": 0.4921875}, {"start": 227.99, "end": 228.25, "word": " method", "probability": 0.94970703125}, {"start": 228.25, "end": 228.59, "word": " depends", "probability": 0.6064453125}, {"start": 228.59, "end": 228.75, "word": " on", "probability": 0.9453125}, {"start": 228.75, "end": 228.91, "word": " the", "probability": 0.41748046875}, {"start": 228.91, "end": 229.03, "word": " other", "probability": 0.79443359375}, {"start": 229.03, "end": 229.19, "word": " so", "probability": 0.1904296875}, {"start": 229.19, "end": 229.35, "word": " you", "probability": 0.94287109375}, {"start": 229.35, "end": 229.47, "word": " have", "probability": 0.5888671875}, {"start": 229.47, "end": 229.59, "word": " to", "probability": 0.97216796875}, {"start": 229.59, "end": 229.95, "word": " wait", "probability": 0.8369140625}, {"start": 229.95, "end": 230.07, "word": " for", "probability": 0.8056640625}, {"start": 230.07, "end": 230.11, "word": " the", "probability": 0.79541015625}, {"start": 230.11, "end": 230.47, "word": " output", "probability": 0.4716796875}, {"start": 230.47, "end": 230.57, "word": " of", "probability": 0.53515625}, {"start": 230.57, "end": 230.67, "word": " a", "probability": 0.269775390625}, {"start": 230.67, "end": 230.91, "word": " method", "probability": 0.95556640625}, {"start": 230.91, "end": 231.15, "word": " in", "probability": 0.451416015625}, {"start": 231.15, "end": 231.15, "word": " order", "probability": 0.921875}, {"start": 231.15, "end": 231.29, "word": " to", "probability": 0.93115234375}, {"start": 231.29, "end": 231.71, "word": " execute", "probability": 0.5234375}, {"start": 231.71, "end": 232.79, "word": " the", "probability": 0.88720703125}, {"start": 232.79, "end": 232.97, "word": " next", "probability": 0.88623046875}, {"start": 232.97, "end": 233.19, "word": " method", "probability": 0.8310546875}, {"start": 233.19, "end": 233.91, "word": " now", "probability": 0.76025390625}, {"start": 233.91, "end": 234.09, "word": " the", "probability": 0.7265625}, {"start": 234.09, "end": 234.51, "word": " developers", "probability": 0.74072265625}, {"start": 234.51, "end": 234.73, "word": " who", "probability": 0.4423828125}, {"start": 234.73, "end": 234.91, "word": " come", "probability": 0.509765625}, {"start": 234.91, "end": 235.05, "word": " from", "probability": 0.875}, {"start": 235.05, "end": 235.25, "word": " outside", "probability": 0.552734375}, {"start": 235.25, "end": 235.35, "word": " who", "probability": 0.367919921875}, {"start": 235.35, "end": 235.67, "word": " use", "probability": 0.82861328125}, {"start": 235.67, "end": 235.81, "word": " the", "probability": 0.822265625}, {"start": 235.81, "end": 236.13, "word": " library", "probability": 0.935546875}, {"start": 236.13, "end": 236.35, "word": " do", "probability": 0.3193359375}, {"start": 236.35, "end": 236.35, "word": " not", "probability": 0.9404296875}, {"start": 236.35, "end": 236.61, "word": " know", "probability": 0.8759765625}, {"start": 236.61, "end": 236.77, "word": " these", "probability": 0.65087890625}, {"start": 236.77, "end": 237.15, "word": " details", "probability": 0.8759765625}, {"start": 237.15, "end": 237.49, "word": " so", "probability": 0.66650390625}, {"start": 237.49, "end": 237.63, "word": " they", "probability": 0.7216796875}, {"start": 237.63, "end": 237.73, "word": " have", "probability": 0.69189453125}, {"start": 237.73, "end": 238.07, "word": " to", "probability": 0.97265625}, {"start": 238.07, "end": 238.47, "word": " read", "probability": 0.45556640625}, {"start": 238.47, "end": 238.63, "word": " the", "probability": 0.83349609375}, {"start": 238.63, "end": 239.09, "word": " documentation", "probability": 0.89892578125}], "temperature": 1.0}, {"id": 11, "seek": 26394, "start": 240.16, "end": 263.94, "text": "so that they know what are the sequence of steps they have to execute and what is the input for each method and what is the output that returns the method. Right or wrong? So that the developer can execute this process, he has to understand the details of the methods, what each method takes, what each method returns and how the order that is required. So instead of defeating the developer and providing them with ... because this means that your interface is somewhat difficult to use.", "tokens": [539, 300, 436, 458, 437, 366, 264, 8310, 295, 4439, 436, 362, 281, 14483, 293, 437, 307, 264, 4846, 337, 1184, 3170, 293, 437, 307, 264, 5598, 300, 11247, 264, 3170, 13, 1779, 420, 2085, 30, 407, 300, 264, 10754, 393, 14483, 341, 1399, 11, 415, 575, 281, 1223, 264, 4365, 295, 264, 7150, 11, 437, 1184, 3170, 2516, 11, 437, 1184, 3170, 11247, 293, 577, 264, 1668, 300, 307, 4739, 13, 407, 2602, 295, 38381, 264, 10754, 293, 6530, 552, 365, 1097, 570, 341, 1355, 300, 428, 9226, 307, 8344, 2252, 281, 764, 13], "avg_logprob": -0.5351562611758709, "compression_ratio": 1.90625, "no_speech_prob": 2.1457672119140625e-06, "words": [{"start": 240.16, "end": 240.44, "word": "so", "probability": 0.2486572265625}, {"start": 240.44, "end": 240.56, "word": " that", "probability": 0.5322265625}, {"start": 240.56, "end": 240.62, "word": " they", "probability": 0.7578125}, {"start": 240.62, "end": 240.92, "word": " know", "probability": 0.54736328125}, {"start": 240.92, "end": 241.18, "word": " what", "probability": 0.268798828125}, {"start": 241.18, "end": 241.2, "word": " are", "probability": 0.239501953125}, {"start": 241.2, "end": 241.64, "word": " the", "probability": 0.78759765625}, {"start": 241.64, "end": 241.64, "word": " sequence", "probability": 0.384033203125}, {"start": 241.64, "end": 241.76, "word": " of", "probability": 0.92626953125}, {"start": 241.76, "end": 242.14, "word": " steps", "probability": 0.689453125}, {"start": 242.14, "end": 242.3, "word": " they", "probability": 0.40234375}, {"start": 242.3, "end": 242.42, "word": " have", "probability": 0.3994140625}, {"start": 242.42, "end": 242.54, "word": " to", "probability": 0.97119140625}, {"start": 242.54, "end": 242.82, "word": " execute", "probability": 0.1826171875}, {"start": 242.82, "end": 243.7, "word": " and", "probability": 0.397216796875}, {"start": 243.7, "end": 243.82, "word": " what", "probability": 0.80712890625}, {"start": 243.82, "end": 243.9, "word": " is", "probability": 0.623046875}, {"start": 243.9, "end": 243.94, "word": " the", "probability": 0.7900390625}, {"start": 243.94, "end": 244.7, "word": " input", "probability": 0.6826171875}, {"start": 244.7, "end": 244.94, "word": " for", "probability": 0.52783203125}, {"start": 244.94, "end": 245.1, "word": " each", "probability": 0.90966796875}, {"start": 245.1, "end": 245.38, "word": " method", "probability": 0.90771484375}, {"start": 245.38, "end": 245.48, "word": " and", "probability": 0.85400390625}, {"start": 245.48, "end": 245.64, "word": " what", "probability": 0.779296875}, {"start": 245.64, "end": 245.64, "word": " is", "probability": 0.8076171875}, {"start": 245.64, "end": 245.76, "word": " the", "probability": 0.88525390625}, {"start": 245.76, "end": 246.0, "word": " output", "probability": 0.89794921875}, {"start": 246.0, "end": 246.26, "word": " that", "probability": 0.45947265625}, {"start": 246.26, "end": 246.5, "word": " returns", "probability": 0.5361328125}, {"start": 246.5, "end": 246.64, "word": " the", "probability": 0.6572265625}, {"start": 246.64, "end": 246.94, "word": " method.", "probability": 0.9013671875}, {"start": 247.24, "end": 247.44, "word": " Right", "probability": 0.401611328125}, {"start": 247.44, "end": 247.58, "word": " or", "probability": 0.814453125}, {"start": 247.58, "end": 247.74, "word": " wrong?", "probability": 0.430419921875}, {"start": 248.38, "end": 248.52, "word": " So", "probability": 0.1839599609375}, {"start": 248.52, "end": 248.6, "word": " that", "probability": 0.413330078125}, {"start": 248.6, "end": 248.62, "word": " the", "probability": 0.66455078125}, {"start": 248.62, "end": 248.98, "word": " developer", "probability": 0.82421875}, {"start": 248.98, "end": 249.26, "word": " can", "probability": 0.27978515625}, {"start": 249.26, "end": 249.58, "word": " execute", "probability": 0.60693359375}, {"start": 249.58, "end": 249.78, "word": " this", "probability": 0.73828125}, {"start": 249.78, "end": 250.18, "word": " process,", "probability": 0.7939453125}, {"start": 250.18, "end": 250.32, "word": " he", "probability": 0.6513671875}, {"start": 250.32, "end": 250.46, "word": " has", "probability": 0.301513671875}, {"start": 250.46, "end": 250.7, "word": " to", "probability": 0.96826171875}, {"start": 250.7, "end": 251.2, "word": " understand", "probability": 0.48388671875}, {"start": 251.2, "end": 251.38, "word": " the", "probability": 0.76513671875}, {"start": 251.38, "end": 251.64, "word": " details", "probability": 0.685546875}, {"start": 251.64, "end": 251.8, "word": " of", "probability": 0.94921875}, {"start": 251.8, "end": 251.84, "word": " the", "probability": 0.54443359375}, {"start": 251.84, "end": 252.14, "word": " methods,", "probability": 0.81787109375}, {"start": 252.64, "end": 252.72, "word": " what", "probability": 0.76025390625}, {"start": 252.72, "end": 252.94, "word": " each", "probability": 0.7060546875}, {"start": 252.94, "end": 253.16, "word": " method", "probability": 0.9228515625}, {"start": 253.16, "end": 253.5, "word": " takes,", "probability": 0.6015625}, {"start": 253.62, "end": 253.72, "word": " what", "probability": 0.76220703125}, {"start": 253.72, "end": 253.86, "word": " each", "probability": 0.95166015625}, {"start": 253.86, "end": 254.06, "word": " method", "probability": 0.9482421875}, {"start": 254.06, "end": 254.44, "word": " returns", "probability": 0.8427734375}, {"start": 254.44, "end": 254.66, "word": " and", "probability": 0.52978515625}, {"start": 254.66, "end": 254.8, "word": " how", "probability": 0.76611328125}, {"start": 254.8, "end": 254.96, "word": " the", "probability": 0.314453125}, {"start": 254.96, "end": 255.32, "word": " order", "probability": 0.509765625}, {"start": 255.32, "end": 255.48, "word": " that", "probability": 0.303466796875}, {"start": 255.48, "end": 255.6, "word": " is", "probability": 0.2432861328125}, {"start": 255.6, "end": 255.86, "word": " required.", "probability": 0.3671875}, {"start": 256.74, "end": 256.88, "word": " So", "probability": 0.75390625}, {"start": 256.88, "end": 257.08, "word": " instead", "probability": 0.55517578125}, {"start": 257.08, "end": 257.38, "word": " of", "probability": 0.96875}, {"start": 257.38, "end": 257.68, "word": " defeating", "probability": 0.3134765625}, {"start": 257.68, "end": 257.88, "word": " the", "probability": 0.82275390625}, {"start": 257.88, "end": 258.32, "word": " developer", "probability": 0.82421875}, {"start": 258.32, "end": 259.42, "word": " and", "probability": 0.775390625}, {"start": 259.42, "end": 259.82, "word": " providing", "probability": 0.468505859375}, {"start": 259.82, "end": 260.06, "word": " them", "probability": 0.84375}, {"start": 260.06, "end": 260.5, "word": " with", "probability": 0.37158203125}, {"start": 260.5, "end": 260.66, "word": " ...", "probability": 0.101806640625}, {"start": 260.66, "end": 260.8, "word": " because", "probability": 0.32763671875}, {"start": 260.8, "end": 260.98, "word": " this", "probability": 0.6982421875}, {"start": 260.98, "end": 261.22, "word": " means", "probability": 0.93212890625}, {"start": 261.22, "end": 261.44, "word": " that", "probability": 0.9033203125}, {"start": 261.44, "end": 261.52, "word": " your", "probability": 0.77685546875}, {"start": 261.52, "end": 262.02, "word": " interface", "probability": 0.87109375}, {"start": 262.02, "end": 262.52, "word": " is", "probability": 0.91162109375}, {"start": 262.52, "end": 262.88, "word": " somewhat", "probability": 0.2384033203125}, {"start": 262.88, "end": 263.44, "word": " difficult", "probability": 0.8701171875}, {"start": 263.44, "end": 263.56, "word": " to", "probability": 0.97314453125}, {"start": 263.56, "end": 263.94, "word": " use.", "probability": 0.90673828125}], "temperature": 1.0}, {"id": 12, "seek": 27230, "start": 264.96, "end": 272.3, "text": "By the way, each method can be found in a different class. Right or wrong? Because these methods are found in a class.", "tokens": [27690, 264, 636, 11, 1184, 3170, 393, 312, 1352, 294, 257, 819, 1508, 13, 1779, 420, 2085, 30, 1436, 613, 7150, 366, 1352, 294, 257, 1508, 13], "avg_logprob": -0.6344866007566452, "compression_ratio": 1.2421052631578948, "no_speech_prob": 6.4373016357421875e-06, "words": [{"start": 264.96, "end": 265.44, "word": "By", "probability": 0.201171875}, {"start": 265.44, "end": 265.7, "word": " the", "probability": 0.9365234375}, {"start": 265.7, "end": 265.92, "word": " way,", "probability": 0.95947265625}, {"start": 266.08, "end": 266.16, "word": " each", "probability": 0.322509765625}, {"start": 266.16, "end": 266.46, "word": " method", "probability": 0.92236328125}, {"start": 266.46, "end": 266.62, "word": " can", "probability": 0.4033203125}, {"start": 266.62, "end": 266.74, "word": " be", "probability": 0.669921875}, {"start": 266.74, "end": 267.06, "word": " found", "probability": 0.451171875}, {"start": 267.06, "end": 267.22, "word": " in", "probability": 0.87939453125}, {"start": 267.22, "end": 267.32, "word": " a", "probability": 0.3017578125}, {"start": 267.32, "end": 267.88, "word": " different", "probability": 0.83837890625}, {"start": 267.88, "end": 267.96, "word": " class.", "probability": 0.9365234375}, {"start": 268.46, "end": 268.66, "word": " Right", "probability": 0.2890625}, {"start": 268.66, "end": 268.78, "word": " or", "probability": 0.8271484375}, {"start": 268.78, "end": 268.88, "word": " wrong?", "probability": 0.5361328125}, {"start": 269.36, "end": 269.7, "word": " Because", "probability": 0.336181640625}, {"start": 269.7, "end": 269.86, "word": " these", "probability": 0.41162109375}, {"start": 269.86, "end": 270.4, "word": " methods", "probability": 0.6875}, {"start": 270.4, "end": 270.78, "word": " are", "probability": 0.5576171875}, {"start": 270.78, "end": 271.14, "word": " found", "probability": 0.3857421875}, {"start": 271.14, "end": 271.94, "word": " in", "probability": 0.92041015625}, {"start": 271.94, "end": 272.24, "word": " a", "probability": 0.31298828125}, {"start": 272.24, "end": 272.3, "word": " class.", "probability": 0.79345703125}], "temperature": 1.0}, {"id": 13, "seek": 29969, "start": 273.15, "end": 299.69, "text": "In order for him to use this method, he has to create an object from whom? From this class, and this is present in another class, and this is normal For example, the payment is all present in a module separate from who? From the process of check out, for example Instead of defeating the developer and letting him go and check or know what objects he wants to create and what method he wants to use and what is the input and output He tells you to make it easy for him, you can provide him one method", "tokens": [4575, 1668, 337, 796, 281, 764, 341, 3170, 11, 415, 575, 281, 1884, 364, 2657, 490, 7101, 30, 3358, 341, 1508, 11, 293, 341, 307, 1974, 294, 1071, 1508, 11, 293, 341, 307, 2710, 1171, 1365, 11, 264, 10224, 307, 439, 1974, 294, 257, 10088, 4994, 490, 567, 30, 3358, 264, 1399, 295, 1520, 484, 11, 337, 1365, 7156, 295, 38381, 264, 10754, 293, 8295, 796, 352, 293, 1520, 420, 458, 437, 6565, 415, 2738, 281, 1884, 293, 437, 3170, 415, 2738, 281, 764, 293, 437, 307, 264, 4846, 293, 5598, 634, 5112, 291, 281, 652, 309, 1858, 337, 796, 11, 291, 393, 2893, 796, 472, 3170], "avg_logprob": -0.5295139026862604, "compression_ratio": 1.893939393939394, "no_speech_prob": 1.3709068298339844e-06, "words": [{"start": 273.15, "end": 273.45, "word": "In", "probability": 0.14501953125}, {"start": 273.45, "end": 273.47, "word": " order", "probability": 0.90185546875}, {"start": 273.47, "end": 273.71, "word": " for", "probability": 0.24365234375}, {"start": 273.71, "end": 273.85, "word": " him", "probability": 0.4580078125}, {"start": 273.85, "end": 273.87, "word": " to", "probability": 0.86279296875}, {"start": 273.87, "end": 274.11, "word": " use", "probability": 0.13818359375}, {"start": 274.11, "end": 274.25, "word": " this", "probability": 0.70361328125}, {"start": 274.25, "end": 274.49, "word": " method,", "probability": 0.91357421875}, {"start": 274.71, "end": 274.77, "word": " he", "probability": 0.6884765625}, {"start": 274.77, "end": 274.89, "word": " has", "probability": 0.315185546875}, {"start": 274.89, "end": 275.07, "word": " to", "probability": 0.97119140625}, {"start": 275.07, "end": 275.11, "word": " create", "probability": 0.76708984375}, {"start": 275.11, "end": 275.29, "word": " an", "probability": 0.63525390625}, {"start": 275.29, "end": 275.45, "word": " object", "probability": 0.966796875}, {"start": 275.45, "end": 275.65, "word": " from", "probability": 0.728515625}, {"start": 275.65, "end": 275.83, "word": " whom?", "probability": 0.16259765625}, {"start": 276.21, "end": 276.57, "word": " From", "probability": 0.61474609375}, {"start": 276.57, "end": 276.69, "word": " this", "probability": 0.7333984375}, {"start": 276.69, "end": 276.99, "word": " class,", "probability": 0.9345703125}, {"start": 277.23, "end": 277.27, "word": " and", "probability": 0.57080078125}, {"start": 277.27, "end": 277.43, "word": " this", "probability": 0.7109375}, {"start": 277.43, "end": 277.47, "word": " is", "probability": 0.273681640625}, {"start": 277.47, "end": 277.67, "word": " present", "probability": 0.282470703125}, {"start": 277.67, "end": 277.85, "word": " in", "probability": 0.9072265625}, {"start": 277.85, "end": 277.97, "word": " another", "probability": 0.76611328125}, {"start": 277.97, "end": 278.27, "word": " class,", "probability": 0.91748046875}, {"start": 278.57, "end": 278.65, "word": " and", "probability": 0.427978515625}, {"start": 278.65, "end": 279.07, "word": " this", "probability": 0.826171875}, {"start": 279.07, "end": 279.19, "word": " is", "probability": 0.90625}, {"start": 279.19, "end": 279.57, "word": " normal", "probability": 0.51904296875}, {"start": 279.57, "end": 280.45, "word": " For", "probability": 0.256591796875}, {"start": 280.45, "end": 280.81, "word": " example,", "probability": 0.9013671875}, {"start": 280.93, "end": 281.01, "word": " the", "probability": 0.259765625}, {"start": 281.01, "end": 281.35, "word": " payment", "probability": 0.81640625}, {"start": 281.35, "end": 281.57, "word": " is", "probability": 0.5244140625}, {"start": 281.57, "end": 281.67, "word": " all", "probability": 0.5439453125}, {"start": 281.67, "end": 282.03, "word": " present", "probability": 0.5537109375}, {"start": 282.03, "end": 282.31, "word": " in", "probability": 0.90869140625}, {"start": 282.31, "end": 282.97, "word": " a", "probability": 0.8310546875}, {"start": 282.97, "end": 283.37, "word": " module", "probability": 0.70849609375}, {"start": 283.37, "end": 284.05, "word": " separate", "probability": 0.327880859375}, {"start": 284.05, "end": 284.29, "word": " from", "probability": 0.869140625}, {"start": 284.29, "end": 284.47, "word": " who?", "probability": 0.170654296875}, {"start": 284.95, "end": 285.19, "word": " From", "probability": 0.6474609375}, {"start": 285.19, "end": 285.43, "word": " the", "probability": 0.615234375}, {"start": 285.43, "end": 285.43, "word": " process", "probability": 0.2203369140625}, {"start": 285.43, "end": 285.57, "word": " of", "probability": 0.92919921875}, {"start": 285.57, "end": 285.75, "word": " check", "probability": 0.3134765625}, {"start": 285.75, "end": 285.99, "word": " out,", "probability": 0.49853515625}, {"start": 286.03, "end": 286.15, "word": " for", "probability": 0.77001953125}, {"start": 286.15, "end": 286.71, "word": " example", "probability": 0.9462890625}, {"start": 286.71, "end": 287.91, "word": " Instead", "probability": 0.413330078125}, {"start": 287.91, "end": 288.51, "word": " of", "probability": 0.9619140625}, {"start": 288.51, "end": 288.99, "word": " defeating", "probability": 0.078125}, {"start": 288.99, "end": 289.17, "word": " the", "probability": 0.86572265625}, {"start": 289.17, "end": 289.59, "word": " developer", "probability": 0.8701171875}, {"start": 289.59, "end": 289.89, "word": " and", "probability": 0.71337890625}, {"start": 289.89, "end": 290.13, "word": " letting", "probability": 0.250732421875}, {"start": 290.13, "end": 290.69, "word": " him", "probability": 0.9091796875}, {"start": 290.69, "end": 290.85, "word": " go", "probability": 0.422607421875}, {"start": 290.85, "end": 291.05, "word": " and", "probability": 0.418701171875}, {"start": 291.05, "end": 291.29, "word": " check", "probability": 0.75244140625}, {"start": 291.29, "end": 291.57, "word": " or", "probability": 0.55810546875}, {"start": 291.57, "end": 292.01, "word": " know", "probability": 0.67724609375}, {"start": 292.01, "end": 292.67, "word": " what", "probability": 0.5576171875}, {"start": 292.67, "end": 293.09, "word": " objects", "probability": 0.62548828125}, {"start": 293.09, "end": 293.25, "word": " he", "probability": 0.67822265625}, {"start": 293.25, "end": 293.41, "word": " wants", "probability": 0.6123046875}, {"start": 293.41, "end": 293.47, "word": " to", "probability": 0.95703125}, {"start": 293.47, "end": 293.73, "word": " create", "probability": 0.763671875}, {"start": 293.73, "end": 293.97, "word": " and", "probability": 0.38330078125}, {"start": 293.97, "end": 294.15, "word": " what", "probability": 0.80078125}, {"start": 294.15, "end": 294.43, "word": " method", "probability": 0.72119140625}, {"start": 294.43, "end": 294.51, "word": " he", "probability": 0.7998046875}, {"start": 294.51, "end": 294.69, "word": " wants", "probability": 0.79931640625}, {"start": 294.69, "end": 294.73, "word": " to", "probability": 0.9619140625}, {"start": 294.73, "end": 294.97, "word": " use", "probability": 0.783203125}, {"start": 294.97, "end": 295.29, "word": " and", "probability": 0.58642578125}, {"start": 295.29, "end": 295.45, "word": " what", "probability": 0.84375}, {"start": 295.45, "end": 295.47, "word": " is", "probability": 0.31787109375}, {"start": 295.47, "end": 295.55, "word": " the", "probability": 0.63037109375}, {"start": 295.55, "end": 295.75, "word": " input", "probability": 0.93994140625}, {"start": 295.75, "end": 295.93, "word": " and", "probability": 0.92724609375}, {"start": 295.93, "end": 296.41, "word": " output", "probability": 0.91650390625}, {"start": 296.41, "end": 296.87, "word": " He", "probability": 0.1904296875}, {"start": 296.87, "end": 297.01, "word": " tells", "probability": 0.339111328125}, {"start": 297.01, "end": 297.17, "word": " you", "probability": 0.9345703125}, {"start": 297.17, "end": 297.25, "word": " to", "probability": 0.662109375}, {"start": 297.25, "end": 297.39, "word": " make", "probability": 0.55908203125}, {"start": 297.39, "end": 297.51, "word": " it", "probability": 0.88037109375}, {"start": 297.51, "end": 297.51, "word": " easy", "probability": 0.52294921875}, {"start": 297.51, "end": 297.65, "word": " for", "probability": 0.80810546875}, {"start": 297.65, "end": 297.81, "word": " him,", "probability": 0.91552734375}, {"start": 298.13, "end": 298.29, "word": " you", "probability": 0.78662109375}, {"start": 298.29, "end": 298.49, "word": " can", "probability": 0.8173828125}, {"start": 298.49, "end": 299.25, "word": " provide", "probability": 0.7685546875}, {"start": 299.25, "end": 299.45, "word": " him", "probability": 0.89697265625}, {"start": 299.45, "end": 299.47, "word": " one", "probability": 0.5205078125}, {"start": 299.47, "end": 299.69, "word": " method", "probability": 0.92529296875}], "temperature": 1.0}, {"id": 14, "seek": 32850, "start": 300.76, "end": 328.5, "text": " its name is search and order and this method gives him parameters which are all the necessary data for example the name of the item, your address, username and password these are the necessary information to execute all these steps", "tokens": [1080, 1315, 307, 3164, 293, 1668, 293, 341, 3170, 2709, 796, 9834, 597, 366, 439, 264, 4818, 1412, 337, 1365, 264, 1315, 295, 264, 3174, 11, 428, 2985, 11, 30351, 293, 11524, 613, 366, 264, 4818, 1589, 281, 14483, 439, 613, 4439], "avg_logprob": -0.5901162984759308, "compression_ratio": 1.6, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 300.76, "end": 301.5, "word": " its", "probability": 0.06298828125}, {"start": 301.5, "end": 301.78, "word": " name", "probability": 0.84521484375}, {"start": 301.78, "end": 302.74, "word": " is", "probability": 0.94287109375}, {"start": 302.74, "end": 305.12, "word": " search", "probability": 0.7177734375}, {"start": 305.12, "end": 305.42, "word": " and", "probability": 0.70458984375}, {"start": 305.42, "end": 305.8, "word": " order", "probability": 0.92529296875}, {"start": 305.8, "end": 309.84, "word": " and", "probability": 0.37744140625}, {"start": 309.84, "end": 311.14, "word": " this", "probability": 0.86572265625}, {"start": 311.14, "end": 311.44, "word": " method", "probability": 0.9306640625}, {"start": 311.44, "end": 312.16, "word": " gives", "probability": 0.5966796875}, {"start": 312.16, "end": 312.42, "word": " him", "probability": 0.1890869140625}, {"start": 312.42, "end": 313.1, "word": " parameters", "probability": 0.76416015625}, {"start": 313.1, "end": 313.4, "word": " which", "probability": 0.39404296875}, {"start": 313.4, "end": 313.82, "word": " are", "probability": 0.630859375}, {"start": 313.82, "end": 314.56, "word": " all", "probability": 0.58984375}, {"start": 314.56, "end": 314.72, "word": " the", "probability": 0.3291015625}, {"start": 314.72, "end": 315.48, "word": " necessary", "probability": 0.47216796875}, {"start": 315.48, "end": 315.48, "word": " data", "probability": 0.6630859375}, {"start": 315.48, "end": 316.28, "word": " for", "probability": 0.3046875}, {"start": 316.28, "end": 316.28, "word": " example", "probability": 0.6962890625}, {"start": 316.28, "end": 318.3, "word": " the", "probability": 0.256103515625}, {"start": 318.3, "end": 318.5, "word": " name", "probability": 0.787109375}, {"start": 318.5, "end": 318.6, "word": " of", "probability": 0.96337890625}, {"start": 318.6, "end": 318.62, "word": " the", "probability": 0.78369140625}, {"start": 318.62, "end": 319.06, "word": " item,", "probability": 0.85595703125}, {"start": 320.34, "end": 320.54, "word": " your", "probability": 0.389892578125}, {"start": 320.54, "end": 321.28, "word": " address,", "probability": 0.724609375}, {"start": 322.96, "end": 323.66, "word": " username", "probability": 0.498291015625}, {"start": 323.66, "end": 323.96, "word": " and", "probability": 0.81494140625}, {"start": 323.96, "end": 324.64, "word": " password", "probability": 0.9296875}, {"start": 324.64, "end": 326.76, "word": " these", "probability": 0.214599609375}, {"start": 326.76, "end": 326.84, "word": " are", "probability": 0.83740234375}, {"start": 326.84, "end": 326.9, "word": " the", "probability": 0.53955078125}, {"start": 326.9, "end": 326.9, "word": " necessary", "probability": 0.471923828125}, {"start": 326.9, "end": 327.32, "word": " information", "probability": 0.499267578125}, {"start": 327.32, "end": 327.82, "word": " to", "probability": 0.78564453125}, {"start": 327.82, "end": 328.14, "word": " execute", "probability": 0.1944580078125}, {"start": 328.14, "end": 328.24, "word": " all", "probability": 0.52001953125}, {"start": 328.24, "end": 328.24, "word": " these", "probability": 0.64404296875}, {"start": 328.24, "end": 328.5, "word": " steps", "probability": 0.806640625}], "temperature": 1.0}, {"id": 15, "seek": 33682, "start": 330.3, "end": 336.82, "text": "Now, you got one method, but through this method, of course he will go and get support from whom?", "tokens": [13267, 11, 291, 658, 472, 3170, 11, 457, 807, 341, 3170, 11, 295, 1164, 415, 486, 352, 293, 483, 1406, 490, 7101, 30], "avg_logprob": -0.6848958556850752, "compression_ratio": 1.127906976744186, "no_speech_prob": 0.0, "words": [{"start": 330.29999999999995, "end": 330.78, "word": "Now,", "probability": 0.289794921875}, {"start": 331.24, "end": 331.6, "word": " you", "probability": 0.76611328125}, {"start": 331.6, "end": 331.72, "word": " got", "probability": 0.1304931640625}, {"start": 331.72, "end": 332.06, "word": " one", "probability": 0.486328125}, {"start": 332.06, "end": 332.36, "word": " method,", "probability": 0.87744140625}, {"start": 332.72, "end": 333.04, "word": " but", "probability": 0.84130859375}, {"start": 333.04, "end": 333.16, "word": " through", "probability": 0.349853515625}, {"start": 333.16, "end": 333.16, "word": " this", "probability": 0.65283203125}, {"start": 333.16, "end": 334.14, "word": " method,", "probability": 0.9013671875}, {"start": 334.56, "end": 334.56, "word": " of", "probability": 0.138427734375}, {"start": 334.56, "end": 335.88, "word": " course", "probability": 0.9541015625}, {"start": 335.88, "end": 336.06, "word": " he", "probability": 0.22412109375}, {"start": 336.06, "end": 336.2, "word": " will", "probability": 0.61767578125}, {"start": 336.2, "end": 336.2, "word": " go", "probability": 0.355712890625}, {"start": 336.2, "end": 336.32, "word": " and", "probability": 0.452392578125}, {"start": 336.32, "end": 336.44, "word": " get", "probability": 0.55322265625}, {"start": 336.44, "end": 336.6, "word": " support", "probability": 0.406005859375}, {"start": 336.6, "end": 336.78, "word": " from", "probability": 0.8056640625}, {"start": 336.78, "end": 336.82, "word": " whom?", "probability": 0.75537109375}], "temperature": 1.0}, {"id": 16, "seek": 36696, "start": 338.04, "end": 366.96, "text": " the rest of them, so really the steps you took are the same but it really made it easier for the client that instead of going and reviewing the documentation and understanding all of this, you provided him with a method that made it easier for you that you tell him straight away search and order and give him the necessary details to implement these steps which is for example the item and what is your address and what will the charger do in the end or what are your payment data and he himself implements these steps", "tokens": [264, 1472, 295, 552, 11, 370, 534, 264, 4439, 291, 1890, 366, 264, 912, 457, 309, 534, 1027, 309, 3571, 337, 264, 6423, 300, 2602, 295, 516, 293, 19576, 264, 14333, 293, 3701, 439, 295, 341, 11, 291, 5649, 796, 365, 257, 3170, 300, 1027, 309, 3571, 337, 291, 300, 291, 980, 796, 2997, 1314, 3164, 293, 1668, 293, 976, 796, 264, 4818, 4365, 281, 4445, 613, 4439, 597, 307, 337, 1365, 264, 3174, 293, 437, 307, 428, 2985, 293, 437, 486, 264, 22213, 360, 294, 264, 917, 420, 437, 366, 428, 10224, 1412, 293, 415, 3647, 704, 17988, 613, 4439], "avg_logprob": -0.6032475776532117, "compression_ratio": 1.9622641509433962, "no_speech_prob": 6.908178329467773e-05, "words": [{"start": 338.04, "end": 338.28, "word": " the", "probability": 0.13330078125}, {"start": 338.28, "end": 338.48, "word": " rest", "probability": 0.422119140625}, {"start": 338.48, "end": 338.48, "word": " of", "probability": 0.27978515625}, {"start": 338.48, "end": 339.3, "word": " them,", "probability": 0.39111328125}, {"start": 339.34, "end": 339.52, "word": " so", "probability": 0.2137451171875}, {"start": 339.52, "end": 339.86, "word": " really", "probability": 0.28955078125}, {"start": 339.86, "end": 340.54, "word": " the", "probability": 0.272216796875}, {"start": 340.54, "end": 340.86, "word": " steps", "probability": 0.58984375}, {"start": 340.86, "end": 341.34, "word": " you", "probability": 0.603515625}, {"start": 341.34, "end": 341.6, "word": " took", "probability": 0.163818359375}, {"start": 341.6, "end": 341.9, "word": " are", "probability": 0.363037109375}, {"start": 341.9, "end": 342.08, "word": " the", "probability": 0.350830078125}, {"start": 342.08, "end": 342.08, "word": " same", "probability": 0.6962890625}, {"start": 342.08, "end": 342.92, "word": " but", "probability": 0.45751953125}, {"start": 342.92, "end": 343.52, "word": " it", "probability": 0.422119140625}, {"start": 343.52, "end": 343.62, "word": " really", "probability": 0.2415771484375}, {"start": 343.62, "end": 343.86, "word": " made", "probability": 0.357177734375}, {"start": 343.86, "end": 343.86, "word": " it", "probability": 0.8251953125}, {"start": 343.86, "end": 344.06, "word": " easier", "probability": 0.8818359375}, {"start": 344.06, "end": 344.24, "word": " for", "probability": 0.78857421875}, {"start": 344.24, "end": 344.38, "word": " the", "probability": 0.5810546875}, {"start": 344.38, "end": 344.68, "word": " client", "probability": 0.87158203125}, {"start": 344.68, "end": 344.88, "word": " that", "probability": 0.44482421875}, {"start": 344.88, "end": 346.06, "word": " instead", "probability": 0.375244140625}, {"start": 346.06, "end": 346.26, "word": " of", "probability": 0.94140625}, {"start": 346.26, "end": 346.52, "word": " going", "probability": 0.556640625}, {"start": 346.52, "end": 348.12, "word": " and", "probability": 0.39013671875}, {"start": 348.12, "end": 348.98, "word": " reviewing", "probability": 0.40234375}, {"start": 348.98, "end": 349.12, "word": " the", "probability": 0.64404296875}, {"start": 349.12, "end": 349.62, "word": " documentation", "probability": 0.8818359375}, {"start": 349.62, "end": 349.8, "word": " and", "probability": 0.56982421875}, {"start": 349.8, "end": 350.02, "word": " understanding", "probability": 0.53173828125}, {"start": 350.02, "end": 350.46, "word": " all", "probability": 0.68603515625}, {"start": 350.46, "end": 350.58, "word": " of", "probability": 0.53173828125}, {"start": 350.58, "end": 350.58, "word": " this,", "probability": 0.57763671875}, {"start": 350.78, "end": 350.98, "word": " you", "probability": 0.71337890625}, {"start": 350.98, "end": 351.26, "word": " provided", "probability": 0.6181640625}, {"start": 351.26, "end": 351.52, "word": " him", "probability": 0.4033203125}, {"start": 351.52, "end": 351.58, "word": " with", "probability": 0.501953125}, {"start": 351.58, "end": 351.64, "word": " a", "probability": 0.95849609375}, {"start": 351.64, "end": 352.02, "word": " method", "probability": 0.93017578125}, {"start": 352.02, "end": 352.74, "word": " that", "probability": 0.62841796875}, {"start": 352.74, "end": 352.82, "word": " made", "probability": 0.71875}, {"start": 352.82, "end": 352.86, "word": " it", "probability": 0.8994140625}, {"start": 352.86, "end": 353.04, "word": " easier", "probability": 0.8671875}, {"start": 353.04, "end": 353.22, "word": " for", "probability": 0.85791015625}, {"start": 353.22, "end": 353.3, "word": " you", "probability": 0.505859375}, {"start": 353.3, "end": 353.42, "word": " that", "probability": 0.1927490234375}, {"start": 353.42, "end": 353.58, "word": " you", "probability": 0.8955078125}, {"start": 353.58, "end": 353.72, "word": " tell", "probability": 0.267578125}, {"start": 353.72, "end": 353.82, "word": " him", "probability": 0.9296875}, {"start": 353.82, "end": 354.04, "word": " straight", "probability": 0.1754150390625}, {"start": 354.04, "end": 354.12, "word": " away", "probability": 0.7890625}, {"start": 354.12, "end": 354.46, "word": " search", "probability": 0.7109375}, {"start": 354.46, "end": 354.7, "word": " and", "probability": 0.90673828125}, {"start": 354.7, "end": 355.04, "word": " order", "probability": 0.93408203125}, {"start": 355.04, "end": 355.16, "word": " and", "probability": 0.7958984375}, {"start": 355.16, "end": 355.36, "word": " give", "probability": 0.73095703125}, {"start": 355.36, "end": 355.66, "word": " him", "probability": 0.93408203125}, {"start": 355.66, "end": 355.86, "word": " the", "probability": 0.7294921875}, {"start": 355.86, "end": 357.3, "word": " necessary", "probability": 0.57421875}, {"start": 357.3, "end": 357.3, "word": " details", "probability": 0.82421875}, {"start": 357.3, "end": 357.66, "word": " to", "probability": 0.689453125}, {"start": 357.66, "end": 357.92, "word": " implement", "probability": 0.2222900390625}, {"start": 357.92, "end": 358.6, "word": " these", "probability": 0.76416015625}, {"start": 358.6, "end": 358.6, "word": " steps", "probability": 0.87890625}, {"start": 358.6, "end": 358.76, "word": " which", "probability": 0.29150390625}, {"start": 358.76, "end": 358.88, "word": " is", "probability": 0.472900390625}, {"start": 358.88, "end": 359.0, "word": " for", "probability": 0.67822265625}, {"start": 359.0, "end": 359.1, "word": " example", "probability": 0.9453125}, {"start": 359.1, "end": 359.26, "word": " the", "probability": 0.75244140625}, {"start": 359.26, "end": 359.74, "word": " item", "probability": 0.9375}, {"start": 359.74, "end": 360.36, "word": " and", "probability": 0.5703125}, {"start": 360.36, "end": 360.52, "word": " what", "probability": 0.6982421875}, {"start": 360.52, "end": 360.52, "word": " is", "probability": 0.7451171875}, {"start": 360.52, "end": 360.62, "word": " your", "probability": 0.43603515625}, {"start": 360.62, "end": 360.98, "word": " address", "probability": 0.84765625}, {"start": 360.98, "end": 361.34, "word": " and", "probability": 0.491455078125}, {"start": 361.34, "end": 361.46, "word": " what", "probability": 0.68017578125}, {"start": 361.46, "end": 361.52, "word": " will", "probability": 0.1292724609375}, {"start": 361.52, "end": 361.76, "word": " the", "probability": 0.42333984375}, {"start": 361.76, "end": 361.96, "word": " charger", "probability": 0.4384765625}, {"start": 361.96, "end": 362.0, "word": " do", "probability": 0.93701171875}, {"start": 362.0, "end": 362.1, "word": " in", "probability": 0.59375}, {"start": 362.1, "end": 362.18, "word": " the", "probability": 0.90869140625}, {"start": 362.18, "end": 362.4, "word": " end", "probability": 0.70849609375}, {"start": 362.4, "end": 363.36, "word": " or", "probability": 0.442626953125}, {"start": 363.36, "end": 363.6, "word": " what", "probability": 0.89453125}, {"start": 363.6, "end": 363.64, "word": " are", "probability": 0.463623046875}, {"start": 363.64, "end": 364.2, "word": " your", "probability": 0.2939453125}, {"start": 364.2, "end": 364.54, "word": " payment", "probability": 0.9462890625}, {"start": 364.54, "end": 364.66, "word": " data", "probability": 0.74853515625}, {"start": 364.66, "end": 365.16, "word": " and", "probability": 0.73779296875}, {"start": 365.16, "end": 365.34, "word": " he", "probability": 0.86181640625}, {"start": 365.34, "end": 365.62, "word": " himself", "probability": 0.266845703125}, {"start": 365.62, "end": 366.1, "word": " implements", "probability": 0.624267578125}, {"start": 366.1, "end": 366.58, "word": " these", "probability": 0.81884765625}, {"start": 366.58, "end": 366.96, "word": " steps", "probability": 0.8662109375}], "temperature": 1.0}, {"id": 17, "seek": 38339, "start": 367.99, "end": 383.39, "text": "I actually provided him with a simplified interface that deals with the subsystems or components that I have in the system. Now, we will read this again. Let's take a look at the idea of ​​corruption. This is my system.", "tokens": [40, 767, 5649, 796, 365, 257, 26335, 9226, 300, 11215, 365, 264, 2090, 9321, 82, 420, 6677, 300, 286, 362, 294, 264, 1185, 13, 823, 11, 321, 486, 1401, 341, 797, 13, 961, 311, 747, 257, 574, 412, 264, 1558, 295, 8701, 19558, 11266, 13, 639, 307, 452, 1185, 13], "avg_logprob": -0.5174632165946212, "compression_ratio": 1.3680981595092025, "no_speech_prob": 8.940696716308594e-07, "words": [{"start": 367.99, "end": 368.37, "word": "I", "probability": 0.266357421875}, {"start": 368.37, "end": 368.79, "word": " actually", "probability": 0.21435546875}, {"start": 368.79, "end": 369.23, "word": " provided", "probability": 0.76611328125}, {"start": 369.23, "end": 369.41, "word": " him", "probability": 0.70703125}, {"start": 369.41, "end": 369.55, "word": " with", "probability": 0.59423828125}, {"start": 369.55, "end": 369.55, "word": " a", "probability": 0.81689453125}, {"start": 369.55, "end": 370.29, "word": " simplified", "probability": 0.7880859375}, {"start": 370.29, "end": 370.37, "word": " interface", "probability": 0.90869140625}, {"start": 370.37, "end": 371.27, "word": " that", "probability": 0.374755859375}, {"start": 371.27, "end": 371.55, "word": " deals", "probability": 0.406494140625}, {"start": 371.55, "end": 371.99, "word": " with", "probability": 0.90380859375}, {"start": 371.99, "end": 372.67, "word": " the", "probability": 0.5966796875}, {"start": 372.67, "end": 373.43, "word": " subsystems", "probability": 0.8282877604166666}, {"start": 373.43, "end": 373.47, "word": " or", "probability": 0.505859375}, {"start": 373.47, "end": 374.09, "word": " components", "probability": 0.7255859375}, {"start": 374.09, "end": 374.23, "word": " that", "probability": 0.295654296875}, {"start": 374.23, "end": 374.29, "word": " I", "probability": 0.419189453125}, {"start": 374.29, "end": 374.83, "word": " have", "probability": 0.84619140625}, {"start": 374.83, "end": 375.31, "word": " in", "probability": 0.8564453125}, {"start": 375.31, "end": 375.43, "word": " the", "probability": 0.548828125}, {"start": 375.43, "end": 375.65, "word": " system.", "probability": 0.87353515625}, {"start": 376.09, "end": 376.53, "word": " Now,", "probability": 0.47216796875}, {"start": 377.01, "end": 377.65, "word": " we", "probability": 0.337158203125}, {"start": 377.65, "end": 377.67, "word": " will", "probability": 0.63525390625}, {"start": 377.67, "end": 378.03, "word": " read", "probability": 0.697265625}, {"start": 378.03, "end": 378.21, "word": " this", "probability": 0.46435546875}, {"start": 378.21, "end": 378.51, "word": " again.", "probability": 0.58837890625}, {"start": 378.73, "end": 379.29, "word": " Let's", "probability": 0.796875}, {"start": 379.29, "end": 379.43, "word": " take", "probability": 0.18896484375}, {"start": 379.43, "end": 379.69, "word": " a", "probability": 0.76318359375}, {"start": 379.69, "end": 379.69, "word": " look", "probability": 0.94091796875}, {"start": 379.69, "end": 379.85, "word": " at", "probability": 0.92724609375}, {"start": 379.85, "end": 379.91, "word": " the", "probability": 0.5869140625}, {"start": 379.91, "end": 380.01, "word": " idea", "probability": 0.56201171875}, {"start": 380.01, "end": 380.19, "word": " of", "probability": 0.919921875}, {"start": 380.19, "end": 380.45, "word": " ​​corruption.", "probability": 0.5613606770833334}, {"start": 382.13, "end": 382.73, "word": " This", "probability": 0.391845703125}, {"start": 382.73, "end": 383.03, "word": " is", "probability": 0.93359375}, {"start": 383.03, "end": 383.05, "word": " my", "probability": 0.93359375}, {"start": 383.05, "end": 383.39, "word": " system.", "probability": 0.95751953125}], "temperature": 1.0}, {"id": 18, "seek": 41015, "start": 384.59, "end": 410.15, "text": "The system is made up of components which can be classes or packages or modules Each module is responsible for executing a specific task For example, this one is responsible for shopping and basketball, this one is responsible for payment, this one is responsible for search, this one is responsible for delivery, and so on Now, these people outside", "tokens": [2278, 1185, 307, 1027, 493, 295, 6677, 597, 393, 312, 5359, 420, 17401, 420, 16679, 6947, 10088, 307, 6250, 337, 32368, 257, 2685, 5633, 1171, 1365, 11, 341, 472, 307, 6250, 337, 8688, 293, 11767, 11, 341, 472, 307, 6250, 337, 10224, 11, 341, 472, 307, 6250, 337, 3164, 11, 341, 472, 307, 6250, 337, 8982, 11, 293, 370, 322, 823, 11, 613, 561, 2380], "avg_logprob": -0.5875947078069051, "compression_ratio": 1.9606741573033708, "no_speech_prob": 3.874301910400391e-06, "words": [{"start": 384.59000000000003, "end": 385.11, "word": "The", "probability": 0.118408203125}, {"start": 385.11, "end": 385.37, "word": " system", "probability": 0.904296875}, {"start": 385.37, "end": 385.63, "word": " is", "probability": 0.414306640625}, {"start": 385.63, "end": 385.67, "word": " made", "probability": 0.434814453125}, {"start": 385.67, "end": 385.73, "word": " up", "probability": 0.5517578125}, {"start": 385.73, "end": 385.81, "word": " of", "probability": 0.9501953125}, {"start": 385.81, "end": 386.43, "word": " components", "probability": 0.689453125}, {"start": 386.43, "end": 386.61, "word": " which", "probability": 0.1171875}, {"start": 386.61, "end": 386.75, "word": " can", "probability": 0.51171875}, {"start": 386.75, "end": 386.93, "word": " be", "probability": 0.6826171875}, {"start": 386.93, "end": 388.11, "word": " classes", "probability": 0.53515625}, {"start": 388.11, "end": 389.39, "word": " or", "probability": 0.53271484375}, {"start": 389.39, "end": 392.71, "word": " packages", "probability": 0.513671875}, {"start": 392.71, "end": 393.29, "word": " or", "probability": 0.2110595703125}, {"start": 393.29, "end": 393.63, "word": " modules", "probability": 0.89697265625}, {"start": 393.63, "end": 395.23, "word": " Each", "probability": 0.2308349609375}, {"start": 395.23, "end": 395.79, "word": " module", "probability": 0.9482421875}, {"start": 395.79, "end": 395.89, "word": " is", "probability": 0.69482421875}, {"start": 395.89, "end": 396.09, "word": " responsible", "probability": 0.787109375}, {"start": 396.09, "end": 396.27, "word": " for", "probability": 0.7841796875}, {"start": 396.27, "end": 396.79, "word": " executing", "probability": 0.156494140625}, {"start": 396.79, "end": 397.15, "word": " a", "probability": 0.587890625}, {"start": 397.15, "end": 397.63, "word": " specific", "probability": 0.325439453125}, {"start": 397.63, "end": 397.81, "word": " task", "probability": 0.59130859375}, {"start": 397.81, "end": 398.41, "word": " For", "probability": 0.316650390625}, {"start": 398.41, "end": 399.15, "word": " example,", "probability": 0.88330078125}, {"start": 399.27, "end": 399.37, "word": " this", "probability": 0.49267578125}, {"start": 399.37, "end": 399.67, "word": " one", "probability": 0.335205078125}, {"start": 399.67, "end": 400.69, "word": " is", "probability": 0.80322265625}, {"start": 400.69, "end": 401.01, "word": " responsible", "probability": 0.7021484375}, {"start": 401.01, "end": 401.17, "word": " for", "probability": 0.8994140625}, {"start": 401.17, "end": 401.51, "word": " shopping", "probability": 0.8466796875}, {"start": 401.51, "end": 401.71, "word": " and", "probability": 0.62109375}, {"start": 401.71, "end": 402.27, "word": " basketball,", "probability": 0.201904296875}, {"start": 402.67, "end": 402.79, "word": " this", "probability": 0.37158203125}, {"start": 402.79, "end": 402.89, "word": " one", "probability": 0.83740234375}, {"start": 402.89, "end": 402.95, "word": " is", "probability": 0.55810546875}, {"start": 402.95, "end": 403.17, "word": " responsible", "probability": 0.83447265625}, {"start": 403.17, "end": 403.33, "word": " for", "probability": 0.921875}, {"start": 403.33, "end": 403.67, "word": " payment,", "probability": 0.8984375}, {"start": 403.93, "end": 403.97, "word": " this", "probability": 0.78076171875}, {"start": 403.97, "end": 404.09, "word": " one", "probability": 0.9111328125}, {"start": 404.09, "end": 404.19, "word": " is", "probability": 0.68115234375}, {"start": 404.19, "end": 404.33, "word": " responsible", "probability": 0.8955078125}, {"start": 404.33, "end": 404.47, "word": " for", "probability": 0.939453125}, {"start": 404.47, "end": 404.87, "word": " search,", "probability": 0.724609375}, {"start": 404.95, "end": 405.03, "word": " this", "probability": 0.7548828125}, {"start": 405.03, "end": 405.11, "word": " one", "probability": 0.92041015625}, {"start": 405.11, "end": 405.19, "word": " is", "probability": 0.775390625}, {"start": 405.19, "end": 405.35, "word": " responsible", "probability": 0.9306640625}, {"start": 405.35, "end": 405.47, "word": " for", "probability": 0.94140625}, {"start": 405.47, "end": 405.93, "word": " delivery,", "probability": 0.9169921875}, {"start": 406.19, "end": 406.75, "word": " and", "probability": 0.56298828125}, {"start": 406.75, "end": 406.91, "word": " so", "probability": 0.83203125}, {"start": 406.91, "end": 407.63, "word": " on", "probability": 0.91015625}, {"start": 407.63, "end": 408.75, "word": " Now,", "probability": 0.483642578125}, {"start": 409.29, "end": 409.71, "word": " these", "probability": 0.52685546875}, {"start": 409.71, "end": 409.81, "word": " people", "probability": 0.11517333984375}, {"start": 409.81, "end": 410.15, "word": " outside", "probability": 0.6298828125}], "temperature": 1.0}, {"id": 19, "seek": 43388, "start": 412.18, "end": 433.88, "text": "Developers can be external systems that deal with my office. Now, in the current situation, external systems, any one of them, in order to execute commands, must communicate with more than one component. This must deal with this, this must deal with this, this must deal with this, for example, and so on.", "tokens": [11089, 1388, 433, 393, 312, 8320, 3652, 300, 2028, 365, 452, 3398, 13, 823, 11, 294, 264, 2190, 2590, 11, 8320, 3652, 11, 604, 472, 295, 552, 11, 294, 1668, 281, 14483, 16901, 11, 1633, 7890, 365, 544, 813, 472, 6542, 13, 639, 1633, 2028, 365, 341, 11, 341, 1633, 2028, 365, 341, 11, 341, 1633, 2028, 365, 341, 11, 337, 1365, 11, 293, 370, 322, 13], "avg_logprob": -0.5119485206463757, "compression_ratio": 1.8154761904761905, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 412.18, "end": 412.66, "word": "Developers", "probability": 0.6133829752604166}, {"start": 412.66, "end": 412.82, "word": " can", "probability": 0.311767578125}, {"start": 412.82, "end": 413.06, "word": " be", "probability": 0.75732421875}, {"start": 413.06, "end": 413.16, "word": " external", "probability": 0.4287109375}, {"start": 413.16, "end": 414.12, "word": " systems", "probability": 0.89697265625}, {"start": 414.12, "end": 414.76, "word": " that", "probability": 0.41015625}, {"start": 414.76, "end": 415.04, "word": " deal", "probability": 0.348876953125}, {"start": 415.04, "end": 415.22, "word": " with", "probability": 0.896484375}, {"start": 415.22, "end": 415.3, "word": " my", "probability": 0.5859375}, {"start": 415.3, "end": 415.64, "word": " office.", "probability": 0.36962890625}, {"start": 417.68, "end": 418.16, "word": " Now,", "probability": 0.2332763671875}, {"start": 418.54, "end": 418.62, "word": " in", "probability": 0.6943359375}, {"start": 418.62, "end": 418.72, "word": " the", "probability": 0.35400390625}, {"start": 418.72, "end": 418.74, "word": " current", "probability": 0.71630859375}, {"start": 418.74, "end": 419.36, "word": " situation,", "probability": 0.7998046875}, {"start": 420.2, "end": 420.26, "word": " external", "probability": 0.6298828125}, {"start": 420.26, "end": 421.12, "word": " systems,", "probability": 0.9453125}, {"start": 421.22, "end": 421.38, "word": " any", "probability": 0.3154296875}, {"start": 421.38, "end": 421.62, "word": " one", "probability": 0.487060546875}, {"start": 421.62, "end": 421.72, "word": " of", "probability": 0.93798828125}, {"start": 421.72, "end": 421.82, "word": " them,", "probability": 0.89892578125}, {"start": 421.98, "end": 421.98, "word": " in", "probability": 0.491455078125}, {"start": 421.98, "end": 422.06, "word": " order", "probability": 0.9248046875}, {"start": 422.06, "end": 422.14, "word": " to", "probability": 0.97021484375}, {"start": 422.14, "end": 422.48, "word": " execute", "probability": 0.351318359375}, {"start": 422.48, "end": 422.94, "word": " commands,", "probability": 0.41748046875}, {"start": 423.52, "end": 423.78, "word": " must", "probability": 0.49755859375}, {"start": 423.78, "end": 424.28, "word": " communicate", "probability": 0.7255859375}, {"start": 424.28, "end": 424.52, "word": " with", "probability": 0.859375}, {"start": 424.52, "end": 424.78, "word": " more", "probability": 0.82373046875}, {"start": 424.78, "end": 425.04, "word": " than", "probability": 0.9052734375}, {"start": 425.04, "end": 426.04, "word": " one", "probability": 0.91552734375}, {"start": 426.04, "end": 426.58, "word": " component.", "probability": 0.876953125}, {"start": 427.68, "end": 428.16, "word": " This", "probability": 0.27001953125}, {"start": 428.16, "end": 428.58, "word": " must", "probability": 0.37939453125}, {"start": 428.58, "end": 428.96, "word": " deal", "probability": 0.77734375}, {"start": 428.96, "end": 429.14, "word": " with", "probability": 0.900390625}, {"start": 429.14, "end": 429.46, "word": " this,", "probability": 0.7373046875}, {"start": 429.5, "end": 429.82, "word": " this", "probability": 0.355712890625}, {"start": 429.82, "end": 429.82, "word": " must", "probability": 0.50927734375}, {"start": 429.82, "end": 430.12, "word": " deal", "probability": 0.96533203125}, {"start": 430.12, "end": 430.32, "word": " with", "probability": 0.9013671875}, {"start": 430.32, "end": 431.72, "word": " this,", "probability": 0.73388671875}, {"start": 431.84, "end": 432.06, "word": " this", "probability": 0.583984375}, {"start": 432.06, "end": 432.12, "word": " must", "probability": 0.7412109375}, {"start": 432.12, "end": 432.44, "word": " deal", "probability": 0.9609375}, {"start": 432.44, "end": 432.6, "word": " with", "probability": 0.9013671875}, {"start": 432.6, "end": 432.82, "word": " this,", "probability": 0.88134765625}, {"start": 432.88, "end": 433.0, "word": " for", "probability": 0.32177734375}, {"start": 433.0, "end": 433.18, "word": " example,", "probability": 0.9169921875}, {"start": 433.5, "end": 433.56, "word": " and", "probability": 0.83935546875}, {"start": 433.56, "end": 433.78, "word": " so", "probability": 0.9169921875}, {"start": 433.78, "end": 433.88, "word": " on.", "probability": 0.92626953125}], "temperature": 1.0}, {"id": 20, "seek": 45946, "start": 435.12, "end": 459.46, "text": "The programmer who made this component had to understand the sub-components in order to be able to deal with them Like here, in order to buy the order, I had to deal with more than one class and more than one method It means that the people outside your system, make it easier for them to use it So to make it easier for them to use it, look at my system as it is", "tokens": [2278, 32116, 567, 1027, 341, 6542, 632, 281, 1223, 264, 1422, 12, 21541, 40496, 294, 1668, 281, 312, 1075, 281, 2028, 365, 552, 1743, 510, 11, 294, 1668, 281, 2256, 264, 1668, 11, 286, 632, 281, 2028, 365, 544, 813, 472, 1508, 293, 544, 813, 472, 3170, 467, 1355, 300, 264, 561, 2380, 428, 1185, 11, 652, 309, 3571, 337, 552, 281, 764, 309, 407, 281, 652, 309, 3571, 337, 552, 281, 764, 309, 11, 574, 412, 452, 1185, 382, 309, 307], "avg_logprob": -0.4966114285480545, "compression_ratio": 1.8426395939086295, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 435.12, "end": 435.62, "word": "The", "probability": 0.186279296875}, {"start": 435.62, "end": 436.02, "word": " programmer", "probability": 0.371826171875}, {"start": 436.02, "end": 436.58, "word": " who", "probability": 0.319580078125}, {"start": 436.58, "end": 436.8, "word": " made", "probability": 0.299072265625}, {"start": 436.8, "end": 436.98, "word": " this", "probability": 0.681640625}, {"start": 436.98, "end": 437.52, "word": " component", "probability": 0.71826171875}, {"start": 437.52, "end": 438.4, "word": " had", "probability": 0.5947265625}, {"start": 438.4, "end": 438.66, "word": " to", "probability": 0.96923828125}, {"start": 438.66, "end": 439.22, "word": " understand", "probability": 0.62744140625}, {"start": 439.22, "end": 439.74, "word": " the", "probability": 0.5}, {"start": 439.74, "end": 439.96, "word": " sub", "probability": 0.7021484375}, {"start": 439.96, "end": 440.44, "word": "-components", "probability": 0.728759765625}, {"start": 440.44, "end": 440.84, "word": " in", "probability": 0.2095947265625}, {"start": 440.84, "end": 440.84, "word": " order", "probability": 0.8603515625}, {"start": 440.84, "end": 441.02, "word": " to", "probability": 0.95654296875}, {"start": 441.02, "end": 441.14, "word": " be", "probability": 0.148681640625}, {"start": 441.14, "end": 441.14, "word": " able", "probability": 0.921875}, {"start": 441.14, "end": 441.2, "word": " to", "probability": 0.96728515625}, {"start": 441.2, "end": 441.38, "word": " deal", "probability": 0.319580078125}, {"start": 441.38, "end": 441.56, "word": " with", "probability": 0.90380859375}, {"start": 441.56, "end": 441.8, "word": " them", "probability": 0.86181640625}, {"start": 441.8, "end": 442.96, "word": " Like", "probability": 0.28564453125}, {"start": 442.96, "end": 443.3, "word": " here,", "probability": 0.68896484375}, {"start": 443.8, "end": 443.96, "word": " in", "probability": 0.50390625}, {"start": 443.96, "end": 443.96, "word": " order", "probability": 0.921875}, {"start": 443.96, "end": 444.22, "word": " to", "probability": 0.888671875}, {"start": 444.22, "end": 445.5, "word": " buy", "probability": 0.1103515625}, {"start": 445.5, "end": 445.7, "word": " the", "probability": 0.421142578125}, {"start": 445.7, "end": 446.0, "word": " order,", "probability": 0.9072265625}, {"start": 446.08, "end": 446.3, "word": " I", "probability": 0.96630859375}, {"start": 446.3, "end": 446.58, "word": " had", "probability": 0.833984375}, {"start": 446.58, "end": 446.62, "word": " to", "probability": 0.9619140625}, {"start": 446.62, "end": 446.92, "word": " deal", "probability": 0.81982421875}, {"start": 446.92, "end": 447.08, "word": " with", "probability": 0.8740234375}, {"start": 447.08, "end": 447.34, "word": " more", "probability": 0.7822265625}, {"start": 447.34, "end": 447.6, "word": " than", "probability": 0.66259765625}, {"start": 447.6, "end": 447.76, "word": " one", "probability": 0.77978515625}, {"start": 447.76, "end": 448.12, "word": " class", "probability": 0.859375}, {"start": 448.12, "end": 448.24, "word": " and", "probability": 0.80712890625}, {"start": 448.24, "end": 448.42, "word": " more", "probability": 0.3857421875}, {"start": 448.42, "end": 448.68, "word": " than", "probability": 0.9423828125}, {"start": 448.68, "end": 449.24, "word": " one", "probability": 0.92724609375}, {"start": 449.24, "end": 449.62, "word": " method", "probability": 0.9599609375}, {"start": 449.62, "end": 450.28, "word": " It", "probability": 0.123046875}, {"start": 450.28, "end": 451.18, "word": " means", "probability": 0.481689453125}, {"start": 451.18, "end": 451.94, "word": " that", "probability": 0.84521484375}, {"start": 451.94, "end": 452.06, "word": " the", "probability": 0.491455078125}, {"start": 452.06, "end": 452.34, "word": " people", "probability": 0.8232421875}, {"start": 452.34, "end": 452.7, "word": " outside", "probability": 0.43505859375}, {"start": 452.7, "end": 452.8, "word": " your", "probability": 0.779296875}, {"start": 452.8, "end": 453.3, "word": " system,", "probability": 0.93505859375}, {"start": 454.16, "end": 454.26, "word": " make", "probability": 0.1837158203125}, {"start": 454.26, "end": 454.26, "word": " it", "probability": 0.58935546875}, {"start": 454.26, "end": 454.56, "word": " easier", "probability": 0.8408203125}, {"start": 454.56, "end": 454.7, "word": " for", "probability": 0.76318359375}, {"start": 454.7, "end": 454.82, "word": " them", "probability": 0.88330078125}, {"start": 454.82, "end": 454.9, "word": " to", "probability": 0.955078125}, {"start": 454.9, "end": 455.24, "word": " use", "probability": 0.88818359375}, {"start": 455.24, "end": 455.92, "word": " it", "probability": 0.6328125}, {"start": 455.92, "end": 456.02, "word": " So", "probability": 0.330078125}, {"start": 456.02, "end": 456.28, "word": " to", "probability": 0.421875}, {"start": 456.28, "end": 456.46, "word": " make", "probability": 0.84814453125}, {"start": 456.46, "end": 456.46, "word": " it", "probability": 0.91796875}, {"start": 456.46, "end": 456.6, "word": " easier", "probability": 0.9560546875}, {"start": 456.6, "end": 456.72, "word": " for", "probability": 0.783203125}, {"start": 456.72, "end": 456.82, "word": " them", "probability": 0.88232421875}, {"start": 456.82, "end": 456.96, "word": " to", "probability": 0.9306640625}, {"start": 456.96, "end": 457.18, "word": " use", "probability": 0.89501953125}, {"start": 457.18, "end": 457.48, "word": " it,", "probability": 0.8564453125}, {"start": 457.74, "end": 458.0, "word": " look", "probability": 0.16357421875}, {"start": 458.0, "end": 458.1, "word": " at", "probability": 0.85693359375}, {"start": 458.1, "end": 458.26, "word": " my", "probability": 0.53271484375}, {"start": 458.26, "end": 458.66, "word": " system", "probability": 0.888671875}, {"start": 458.66, "end": 459.1, "word": " as", "probability": 0.46484375}, {"start": 459.1, "end": 459.34, "word": " it", "probability": 0.8681640625}, {"start": 459.34, "end": 459.46, "word": " is", "probability": 0.9150390625}], "temperature": 1.0}, {"id": 21, "seek": 48679, "start": 460.45, "end": 486.79, "text": " But what did I save here? A face What is this called? Corruption Simply, this could be a class, a single class But who is this class for? For the people outside Because if you want to make an order, all you have to do is to extract an object from whom? From this class and call a single method Now from within the method, what does this call?", "tokens": [583, 437, 630, 286, 3155, 510, 30, 316, 1851, 708, 307, 341, 1219, 30, 3925, 11266, 3998, 564, 88, 11, 341, 727, 312, 257, 1508, 11, 257, 2167, 1508, 583, 567, 307, 341, 1508, 337, 30, 1171, 264, 561, 2380, 1436, 498, 291, 528, 281, 652, 364, 1668, 11, 439, 291, 362, 281, 360, 307, 281, 8947, 364, 2657, 490, 7101, 30, 3358, 341, 1508, 293, 818, 257, 2167, 3170, 823, 490, 1951, 264, 3170, 11, 437, 775, 341, 818, 30], "avg_logprob": -0.5693597626395341, "compression_ratio": 1.6570048309178744, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 460.45, "end": 461.05, "word": " But", "probability": 0.27978515625}, {"start": 461.05, "end": 461.43, "word": " what", "probability": 0.1297607421875}, {"start": 461.43, "end": 461.43, "word": " did", "probability": 0.428955078125}, {"start": 461.43, "end": 461.57, "word": " I", "probability": 0.495849609375}, {"start": 461.57, "end": 461.57, "word": " save", "probability": 0.31005859375}, {"start": 461.57, "end": 461.85, "word": " here?", "probability": 0.68505859375}, {"start": 462.67, "end": 463.11, "word": " A", "probability": 0.1815185546875}, {"start": 463.11, "end": 463.29, "word": " face", "probability": 0.63427734375}, {"start": 463.29, "end": 464.71, "word": " What", "probability": 0.09820556640625}, {"start": 464.71, "end": 464.71, "word": " is", "probability": 0.62744140625}, {"start": 464.71, "end": 465.13, "word": " this", "probability": 0.5673828125}, {"start": 465.13, "end": 465.47, "word": " called?", "probability": 0.513671875}, {"start": 466.21, "end": 466.73, "word": " Corruption", "probability": 0.830078125}, {"start": 466.73, "end": 468.23, "word": " Simply,", "probability": 0.5999755859375}, {"start": 468.27, "end": 468.39, "word": " this", "probability": 0.62060546875}, {"start": 468.39, "end": 468.57, "word": " could", "probability": 0.50927734375}, {"start": 468.57, "end": 468.77, "word": " be", "probability": 0.83984375}, {"start": 468.77, "end": 469.13, "word": " a", "probability": 0.78662109375}, {"start": 469.13, "end": 469.53, "word": " class,", "probability": 0.85009765625}, {"start": 469.63, "end": 469.77, "word": " a", "probability": 0.240966796875}, {"start": 469.77, "end": 470.17, "word": " single", "probability": 0.8544921875}, {"start": 470.17, "end": 470.17, "word": " class", "probability": 0.95849609375}, {"start": 470.17, "end": 471.51, "word": " But", "probability": 0.75927734375}, {"start": 471.51, "end": 471.81, "word": " who", "probability": 0.29736328125}, {"start": 471.81, "end": 471.81, "word": " is", "probability": 0.5703125}, {"start": 471.81, "end": 471.81, "word": " this", "probability": 0.6796875}, {"start": 471.81, "end": 472.01, "word": " class", "probability": 0.82763671875}, {"start": 472.01, "end": 472.21, "word": " for?", "probability": 0.23583984375}, {"start": 472.89, "end": 473.07, "word": " For", "probability": 0.77783203125}, {"start": 473.07, "end": 473.17, "word": " the", "probability": 0.3896484375}, {"start": 473.17, "end": 473.47, "word": " people", "probability": 0.830078125}, {"start": 473.47, "end": 474.23, "word": " outside", "probability": 0.703125}, {"start": 474.23, "end": 474.85, "word": " Because", "probability": 0.1539306640625}, {"start": 474.85, "end": 475.07, "word": " if", "probability": 0.284423828125}, {"start": 475.07, "end": 475.71, "word": " you", "probability": 0.93603515625}, {"start": 475.71, "end": 475.95, "word": " want", "probability": 0.73828125}, {"start": 475.95, "end": 476.03, "word": " to", "probability": 0.97265625}, {"start": 476.03, "end": 476.15, "word": " make", "probability": 0.468994140625}, {"start": 476.15, "end": 476.33, "word": " an", "probability": 0.69091796875}, {"start": 476.33, "end": 476.67, "word": " order,", "probability": 0.94189453125}, {"start": 477.11, "end": 477.23, "word": " all", "probability": 0.305419921875}, {"start": 477.23, "end": 477.47, "word": " you", "probability": 0.96337890625}, {"start": 477.47, "end": 477.53, "word": " have", "probability": 0.70263671875}, {"start": 477.53, "end": 477.53, "word": " to", "probability": 0.9736328125}, {"start": 477.53, "end": 477.53, "word": " do", "probability": 0.9638671875}, {"start": 477.53, "end": 477.67, "word": " is", "probability": 0.93603515625}, {"start": 477.67, "end": 477.71, "word": " to", "probability": 0.4619140625}, {"start": 477.71, "end": 477.89, "word": " extract", "probability": 0.36181640625}, {"start": 477.89, "end": 478.07, "word": " an", "probability": 0.58349609375}, {"start": 478.07, "end": 478.25, "word": " object", "probability": 0.9755859375}, {"start": 478.25, "end": 478.45, "word": " from", "probability": 0.81982421875}, {"start": 478.45, "end": 478.67, "word": " whom?", "probability": 0.318359375}, {"start": 479.09, "end": 479.35, "word": " From", "probability": 0.73193359375}, {"start": 479.35, "end": 479.49, "word": " this", "probability": 0.908203125}, {"start": 479.49, "end": 479.85, "word": " class", "probability": 0.95947265625}, {"start": 479.85, "end": 480.27, "word": " and", "probability": 0.5283203125}, {"start": 480.27, "end": 480.67, "word": " call", "probability": 0.229248046875}, {"start": 480.67, "end": 481.35, "word": " a", "probability": 0.31640625}, {"start": 481.35, "end": 481.85, "word": " single", "probability": 0.7451171875}, {"start": 481.85, "end": 481.85, "word": " method", "probability": 0.9560546875}, {"start": 481.85, "end": 483.11, "word": " Now", "probability": 0.54345703125}, {"start": 483.11, "end": 483.31, "word": " from", "probability": 0.1666259765625}, {"start": 483.31, "end": 484.21, "word": " within", "probability": 0.5146484375}, {"start": 484.21, "end": 484.65, "word": " the", "probability": 0.7978515625}, {"start": 484.65, "end": 485.47, "word": " method,", "probability": 0.93994140625}, {"start": 486.07, "end": 486.35, "word": " what", "probability": 0.409912109375}, {"start": 486.35, "end": 486.35, "word": " does", "probability": 0.865234375}, {"start": 486.35, "end": 486.47, "word": " this", "probability": 0.68359375}, {"start": 486.47, "end": 486.79, "word": " call?", "probability": 0.51904296875}], "temperature": 1.0}, {"id": 22, "seek": 51127, "start": 489.07, "end": 511.27, "text": "The external system or the client or the developer doesn't know what's going on inside, they only support the corruption and the corruption deals with the internal parts I didn't modify the code here, everything I did is to add a face that makes it easier for the user to do whatever he wants", "tokens": [2278, 8320, 1185, 420, 264, 6423, 420, 264, 10754, 1177, 380, 458, 437, 311, 516, 322, 294, 1812, 11, 436, 787, 1406, 264, 17959, 293, 264, 17959, 11215, 365, 264, 6920, 3166, 286, 994, 380, 16927, 264, 3089, 510, 11, 1203, 286, 630, 307, 281, 909, 257, 1851, 300, 1669, 309, 3571, 337, 264, 4195, 281, 360, 2035, 415, 2738], "avg_logprob": -0.6536885167731613, "compression_ratio": 1.6312849162011174, "no_speech_prob": 2.1278858184814453e-05, "words": [{"start": 489.07, "end": 489.55, "word": "The", "probability": 0.177001953125}, {"start": 489.55, "end": 489.97, "word": " external", "probability": 0.53076171875}, {"start": 489.97, "end": 491.35, "word": " system", "probability": 0.6142578125}, {"start": 491.35, "end": 491.55, "word": " or", "probability": 0.376953125}, {"start": 491.55, "end": 491.69, "word": " the", "probability": 0.371337890625}, {"start": 491.69, "end": 491.93, "word": " client", "probability": 0.599609375}, {"start": 491.93, "end": 492.59, "word": " or", "probability": 0.26611328125}, {"start": 492.59, "end": 492.75, "word": " the", "probability": 0.736328125}, {"start": 492.75, "end": 493.21, "word": " developer", "probability": 0.78662109375}, {"start": 493.21, "end": 493.79, "word": " doesn't", "probability": 0.6573486328125}, {"start": 493.79, "end": 494.21, "word": " know", "probability": 0.76806640625}, {"start": 494.21, "end": 494.41, "word": " what's", "probability": 0.4915771484375}, {"start": 494.41, "end": 495.31, "word": " going", "probability": 0.2459716796875}, {"start": 495.31, "end": 495.31, "word": " on", "probability": 0.8974609375}, {"start": 495.31, "end": 496.27, "word": " inside,", "probability": 0.28515625}, {"start": 496.57, "end": 496.63, "word": " they", "probability": 0.1846923828125}, {"start": 496.63, "end": 496.89, "word": " only", "probability": 0.408935546875}, {"start": 496.89, "end": 497.35, "word": " support", "probability": 0.53125}, {"start": 497.35, "end": 498.43, "word": " the", "probability": 0.38671875}, {"start": 498.43, "end": 499.19, "word": " corruption", "probability": 0.2349853515625}, {"start": 499.19, "end": 499.33, "word": " and", "probability": 0.40234375}, {"start": 499.33, "end": 499.45, "word": " the", "probability": 0.398193359375}, {"start": 499.45, "end": 499.67, "word": " corruption", "probability": 0.7265625}, {"start": 499.67, "end": 500.03, "word": " deals", "probability": 0.6005859375}, {"start": 500.03, "end": 500.25, "word": " with", "probability": 0.884765625}, {"start": 500.25, "end": 500.33, "word": " the", "probability": 0.56103515625}, {"start": 500.33, "end": 501.71, "word": " internal", "probability": 0.83642578125}, {"start": 501.71, "end": 501.71, "word": " parts", "probability": 0.578125}, {"start": 501.71, "end": 503.51, "word": " I", "probability": 0.236083984375}, {"start": 503.51, "end": 504.95, "word": " didn't", "probability": 0.793212890625}, {"start": 504.95, "end": 505.39, "word": " modify", "probability": 0.299560546875}, {"start": 505.39, "end": 505.65, "word": " the", "probability": 0.86328125}, {"start": 505.65, "end": 505.89, "word": " code", "probability": 0.88037109375}, {"start": 505.89, "end": 505.91, "word": " here,", "probability": 0.31689453125}, {"start": 506.01, "end": 506.25, "word": " everything", "probability": 0.342041015625}, {"start": 506.25, "end": 506.43, "word": " I", "probability": 0.892578125}, {"start": 506.43, "end": 506.67, "word": " did", "probability": 0.75830078125}, {"start": 506.67, "end": 506.87, "word": " is", "probability": 0.6103515625}, {"start": 506.87, "end": 506.91, "word": " to", "probability": 0.262451171875}, {"start": 506.91, "end": 507.15, "word": " add", "probability": 0.86279296875}, {"start": 507.15, "end": 507.31, "word": " a", "probability": 0.93408203125}, {"start": 507.31, "end": 507.65, "word": " face", "probability": 0.20703125}, {"start": 507.65, "end": 509.01, "word": " that", "probability": 0.7265625}, {"start": 509.01, "end": 509.17, "word": " makes", "probability": 0.41162109375}, {"start": 509.17, "end": 509.17, "word": " it", "probability": 0.89892578125}, {"start": 509.17, "end": 509.41, "word": " easier", "probability": 0.86279296875}, {"start": 509.41, "end": 509.51, "word": " for", "probability": 0.8994140625}, {"start": 509.51, "end": 509.61, "word": " the", "probability": 0.82568359375}, {"start": 509.61, "end": 510.01, "word": " user", "probability": 0.9365234375}, {"start": 510.01, "end": 510.33, "word": " to", "probability": 0.97119140625}, {"start": 510.33, "end": 510.57, "word": " do", "probability": 0.436767578125}, {"start": 510.57, "end": 511.01, "word": " whatever", "probability": 0.5458984375}, {"start": 511.01, "end": 511.07, "word": " he", "probability": 0.75341796875}, {"start": 511.07, "end": 511.27, "word": " wants", "probability": 0.767578125}], "temperature": 1.0}, {"id": 23, "seek": 53071, "start": 512.37, "end": 530.71, "text": "Instead of going through the details and steps, it only uses the classhead, which is an addition to my system. For whom is the addition made specifically? For people from outside. Because this provides two features. The first feature makes it easier to use the external developer. Always the successful system, guys. We always say that if you design an API,", "tokens": [28411, 2056, 295, 516, 807, 264, 4365, 293, 4439, 11, 309, 787, 4960, 264, 1508, 1934, 11, 597, 307, 364, 4500, 281, 452, 1185, 13, 1171, 7101, 307, 264, 4500, 1027, 4682, 30, 1171, 561, 490, 2380, 13, 1436, 341, 6417, 732, 4122, 13, 440, 700, 4111, 1669, 309, 3571, 281, 764, 264, 8320, 10754, 13, 11270, 264, 4406, 1185, 11, 1074, 13, 492, 1009, 584, 300, 498, 291, 1715, 364, 9362, 11], "avg_logprob": -0.5755911960795119, "compression_ratio": 1.5321888412017168, "no_speech_prob": 3.3974647521972656e-06, "words": [{"start": 512.37, "end": 512.69, "word": "Instead", "probability": 0.59429931640625}, {"start": 512.69, "end": 512.81, "word": " of", "probability": 0.9599609375}, {"start": 512.81, "end": 513.11, "word": " going", "probability": 0.3583984375}, {"start": 513.11, "end": 513.25, "word": " through", "probability": 0.62841796875}, {"start": 513.25, "end": 513.33, "word": " the", "probability": 0.55029296875}, {"start": 513.33, "end": 513.69, "word": " details", "probability": 0.2330322265625}, {"start": 513.69, "end": 513.81, "word": " and", "probability": 0.71533203125}, {"start": 513.81, "end": 514.13, "word": " steps,", "probability": 0.71923828125}, {"start": 514.29, "end": 514.61, "word": " it", "probability": 0.239990234375}, {"start": 514.61, "end": 514.61, "word": " only", "probability": 0.333984375}, {"start": 514.61, "end": 515.23, "word": " uses", "probability": 0.63671875}, {"start": 515.23, "end": 515.77, "word": " the", "probability": 0.376953125}, {"start": 515.77, "end": 516.27, "word": " classhead,", "probability": 0.5101318359375}, {"start": 516.37, "end": 516.53, "word": " which", "probability": 0.423583984375}, {"start": 516.53, "end": 516.53, "word": " is", "probability": 0.6142578125}, {"start": 516.53, "end": 516.61, "word": " an", "probability": 0.6220703125}, {"start": 516.61, "end": 516.77, "word": " addition", "probability": 0.74755859375}, {"start": 516.77, "end": 517.13, "word": " to", "probability": 0.8671875}, {"start": 517.13, "end": 517.81, "word": " my", "probability": 0.3046875}, {"start": 517.81, "end": 518.39, "word": " system.", "probability": 0.92236328125}, {"start": 519.05, "end": 519.17, "word": " For", "probability": 0.1591796875}, {"start": 519.17, "end": 519.27, "word": " whom", "probability": 0.861328125}, {"start": 519.27, "end": 519.61, "word": " is", "probability": 0.72705078125}, {"start": 519.61, "end": 519.69, "word": " the", "probability": 0.38916015625}, {"start": 519.69, "end": 519.91, "word": " addition", "probability": 0.623046875}, {"start": 519.91, "end": 519.91, "word": " made", "probability": 0.41650390625}, {"start": 519.91, "end": 520.37, "word": " specifically?", "probability": 0.283935546875}, {"start": 520.53, "end": 520.59, "word": " For", "probability": 0.80078125}, {"start": 520.59, "end": 520.83, "word": " people", "probability": 0.4482421875}, {"start": 520.83, "end": 521.05, "word": " from", "probability": 0.61572265625}, {"start": 521.05, "end": 521.31, "word": " outside.", "probability": 0.701171875}, {"start": 522.03, "end": 522.27, "word": " Because", "probability": 0.609375}, {"start": 522.27, "end": 522.45, "word": " this", "probability": 0.6953125}, {"start": 522.45, "end": 522.89, "word": " provides", "probability": 0.4384765625}, {"start": 522.89, "end": 523.73, "word": " two", "probability": 0.779296875}, {"start": 523.73, "end": 523.73, "word": " features.", "probability": 0.2294921875}, {"start": 523.85, "end": 523.95, "word": " The", "probability": 0.86376953125}, {"start": 523.95, "end": 523.95, "word": " first", "probability": 0.8916015625}, {"start": 523.95, "end": 524.41, "word": " feature", "probability": 0.7021484375}, {"start": 524.41, "end": 524.61, "word": " makes", "probability": 0.260009765625}, {"start": 524.61, "end": 524.61, "word": " it", "probability": 0.837890625}, {"start": 524.61, "end": 524.89, "word": " easier", "probability": 0.7900390625}, {"start": 524.89, "end": 524.99, "word": " to", "probability": 0.748046875}, {"start": 524.99, "end": 525.43, "word": " use", "probability": 0.86572265625}, {"start": 525.43, "end": 525.65, "word": " the", "probability": 0.3564453125}, {"start": 525.65, "end": 526.37, "word": " external", "probability": 0.4091796875}, {"start": 526.37, "end": 526.39, "word": " developer.", "probability": 0.88232421875}, {"start": 526.91, "end": 527.13, "word": " Always", "probability": 0.2880859375}, {"start": 527.13, "end": 527.35, "word": " the", "probability": 0.448974609375}, {"start": 527.35, "end": 527.37, "word": " successful", "probability": 0.85302734375}, {"start": 527.37, "end": 528.03, "word": " system,", "probability": 0.951171875}, {"start": 528.55, "end": 528.55, "word": " guys.", "probability": 0.69091796875}, {"start": 528.99, "end": 529.19, "word": " We", "probability": 0.38720703125}, {"start": 529.19, "end": 529.19, "word": " always", "probability": 0.8642578125}, {"start": 529.19, "end": 529.49, "word": " say", "probability": 0.94970703125}, {"start": 529.49, "end": 529.59, "word": " that", "probability": 0.3642578125}, {"start": 529.59, "end": 529.65, "word": " if", "probability": 0.94091796875}, {"start": 529.65, "end": 529.87, "word": " you", "probability": 0.96240234375}, {"start": 529.87, "end": 530.21, "word": " design", "probability": 0.94677734375}, {"start": 530.21, "end": 530.35, "word": " an", "probability": 0.87353515625}, {"start": 530.35, "end": 530.71, "word": " API,", "probability": 0.9228515625}], "temperature": 1.0}, {"id": 24, "seek": 55252, "start": 531.86, "end": 552.52, "text": "think about who is going to use the code, don't think about yourself, as a developer, you always see your code 100% and you understand it, but you have to think about who is going to use the code behind you, of course, developers are smart, they do the opposite, they design the code so that they can understand it, why? they design it well and say it safely", "tokens": [21074, 466, 567, 307, 516, 281, 764, 264, 3089, 11, 500, 380, 519, 466, 1803, 11, 382, 257, 10754, 11, 291, 1009, 536, 428, 3089, 2319, 4, 293, 291, 1223, 309, 11, 457, 291, 362, 281, 519, 466, 567, 307, 516, 281, 764, 264, 3089, 2261, 291, 11, 295, 1164, 11, 8849, 366, 4069, 11, 436, 360, 264, 6182, 11, 436, 1715, 264, 3089, 370, 300, 436, 393, 1223, 309, 11, 983, 30, 436, 1715, 309, 731, 293, 584, 309, 11750], "avg_logprob": -0.5362042835572871, "compression_ratio": 1.9042553191489362, "no_speech_prob": 3.7550926208496094e-06, "words": [{"start": 531.86, "end": 532.26, "word": "think", "probability": 0.44189453125}, {"start": 532.26, "end": 532.5, "word": " about", "probability": 0.654296875}, {"start": 532.5, "end": 532.6, "word": " who", "probability": 0.49853515625}, {"start": 532.6, "end": 532.76, "word": " is", "probability": 0.2161865234375}, {"start": 532.76, "end": 532.76, "word": " going", "probability": 0.70166015625}, {"start": 532.76, "end": 532.78, "word": " to", "probability": 0.96533203125}, {"start": 532.78, "end": 533.08, "word": " use", "probability": 0.86767578125}, {"start": 533.08, "end": 533.26, "word": " the", "probability": 0.6123046875}, {"start": 533.26, "end": 533.42, "word": " code,", "probability": 0.9111328125}, {"start": 533.48, "end": 533.56, "word": " don't", "probability": 0.79052734375}, {"start": 533.56, "end": 533.86, "word": " think", "probability": 0.71826171875}, {"start": 533.86, "end": 534.08, "word": " about", "probability": 0.57421875}, {"start": 534.08, "end": 534.42, "word": " yourself,", "probability": 0.79150390625}, {"start": 534.6, "end": 534.94, "word": " as", "probability": 0.431884765625}, {"start": 534.94, "end": 535.72, "word": " a", "probability": 0.9208984375}, {"start": 535.72, "end": 536.02, "word": " developer,", "probability": 0.8955078125}, {"start": 536.2, "end": 536.24, "word": " you", "probability": 0.89013671875}, {"start": 536.24, "end": 536.36, "word": " always", "probability": 0.407958984375}, {"start": 536.36, "end": 536.36, "word": " see", "probability": 0.79931640625}, {"start": 536.36, "end": 536.52, "word": " your", "probability": 0.76025390625}, {"start": 536.52, "end": 536.68, "word": " code", "probability": 0.93408203125}, {"start": 536.68, "end": 536.92, "word": " 100", "probability": 0.463134765625}, {"start": 536.92, "end": 537.3, "word": "%", "probability": 0.86962890625}, {"start": 537.3, "end": 537.86, "word": " and", "probability": 0.79296875}, {"start": 537.86, "end": 538.02, "word": " you", "probability": 0.7294921875}, {"start": 538.02, "end": 538.26, "word": " understand", "probability": 0.68603515625}, {"start": 538.26, "end": 538.82, "word": " it,", "probability": 0.92919921875}, {"start": 538.86, "end": 539.18, "word": " but", "probability": 0.387451171875}, {"start": 539.18, "end": 539.86, "word": " you", "probability": 0.8662109375}, {"start": 539.86, "end": 540.0, "word": " have", "probability": 0.46337890625}, {"start": 540.0, "end": 540.1, "word": " to", "probability": 0.9697265625}, {"start": 540.1, "end": 540.6, "word": " think", "probability": 0.875}, {"start": 540.6, "end": 541.4, "word": " about", "probability": 0.81640625}, {"start": 541.4, "end": 541.56, "word": " who", "probability": 0.201171875}, {"start": 541.56, "end": 542.0, "word": " is", "probability": 0.6337890625}, {"start": 542.0, "end": 542.0, "word": " going", "probability": 0.6962890625}, {"start": 542.0, "end": 542.1, "word": " to", "probability": 0.95849609375}, {"start": 542.1, "end": 542.46, "word": " use", "probability": 0.83642578125}, {"start": 542.46, "end": 543.02, "word": " the", "probability": 0.41455078125}, {"start": 543.02, "end": 543.18, "word": " code", "probability": 0.9482421875}, {"start": 543.18, "end": 543.18, "word": " behind", "probability": 0.401123046875}, {"start": 543.18, "end": 543.18, "word": " you,", "probability": 0.80126953125}, {"start": 543.26, "end": 543.32, "word": " of", "probability": 0.43115234375}, {"start": 543.32, "end": 543.38, "word": " course,", "probability": 0.94775390625}, {"start": 543.48, "end": 543.82, "word": " developers", "probability": 0.43701171875}, {"start": 543.82, "end": 544.0, "word": " are", "probability": 0.75634765625}, {"start": 544.0, "end": 544.24, "word": " smart,", "probability": 0.287109375}, {"start": 544.86, "end": 545.26, "word": " they", "probability": 0.286376953125}, {"start": 545.26, "end": 545.36, "word": " do", "probability": 0.36474609375}, {"start": 545.36, "end": 545.86, "word": " the", "probability": 0.748046875}, {"start": 545.86, "end": 546.18, "word": " opposite,", "probability": 0.8623046875}, {"start": 546.98, "end": 547.26, "word": " they", "probability": 0.8193359375}, {"start": 547.26, "end": 547.44, "word": " design", "probability": 0.78173828125}, {"start": 547.44, "end": 547.64, "word": " the", "probability": 0.69580078125}, {"start": 547.64, "end": 547.84, "word": " code", "probability": 0.93994140625}, {"start": 547.84, "end": 547.96, "word": " so", "probability": 0.25146484375}, {"start": 547.96, "end": 548.12, "word": " that", "probability": 0.64990234375}, {"start": 548.12, "end": 548.12, "word": " they", "probability": 0.482666015625}, {"start": 548.12, "end": 549.46, "word": " can", "probability": 0.276611328125}, {"start": 549.46, "end": 549.62, "word": " understand", "probability": 0.67626953125}, {"start": 549.62, "end": 549.7, "word": " it,", "probability": 0.499267578125}, {"start": 549.7, "end": 549.88, "word": " why?", "probability": 0.19970703125}, {"start": 550.6, "end": 550.92, "word": " they", "probability": 0.374267578125}, {"start": 550.92, "end": 551.4, "word": " design", "probability": 0.6103515625}, {"start": 551.4, "end": 551.58, "word": " it", "probability": 0.90966796875}, {"start": 551.58, "end": 551.78, "word": " well", "probability": 0.74267578125}, {"start": 551.78, "end": 551.9, "word": " and", "probability": 0.69384765625}, {"start": 551.9, "end": 552.06, "word": " say", "probability": 0.481201171875}, {"start": 552.06, "end": 552.16, "word": " it", "probability": 0.19287109375}, {"start": 552.16, "end": 552.52, "word": " safely", "probability": 0.2235107421875}], "temperature": 1.0}, {"id": 25, "seek": 56895, "start": 553.25, "end": 568.95, "text": "Okay? No, I say it with confidence because if someone else comes to me, what do I do? I say it with confidence because if someone else comes to me, what do I do? I say it with confidence because if someone else comes to me, what do I do? I say it with confidence because if someone else comes to me, what do I do? I say it with confidence because if someone else comes to me, what do I do? I say it with confidence because if someone else comes to me, what do I do? I say it with confidence because if someone else comes to me, what do I do? I say it with confidence because if someone else comes to me, what do I do? I say it with confidence because if someone else comes to me, what do I do? I say it with confidence because if someone else comes to me, what do I do? I say it with confidence because if someone else comes to me, what do I do? I say it with confidence because if someone else comes to me, what do I do? I say it with", "tokens": [8297, 30, 883, 11, 286, 584, 309, 365, 6687, 570, 498, 1580, 1646, 1487, 281, 385, 11, 437, 360, 286, 360, 30, 286, 584, 309, 365, 6687, 570, 498, 1580, 1646, 1487, 281, 385, 11, 437, 360, 286, 360, 30, 286, 584, 309, 365, 6687, 570, 498, 1580, 1646, 1487, 281, 385, 11, 437, 360, 286, 360, 30, 286, 584, 309, 365, 6687, 570, 498, 1580, 1646, 1487, 281, 385, 11, 437, 360, 286, 360, 30, 286, 584, 309, 365, 6687, 570, 498, 1580, 1646, 1487, 281, 385, 11, 437, 360, 286, 360, 30, 286, 584, 309, 365, 6687, 570, 498, 1580, 1646, 1487, 281, 385, 11, 437, 360, 286, 360, 30, 286, 584, 309, 365, 6687, 570, 498, 1580, 1646, 1487, 281, 385, 11, 437, 360, 286, 360, 30, 286, 584, 309, 365, 6687, 570, 498, 1580, 1646, 1487, 281, 385, 11, 437, 360, 286, 360, 30, 286, 584, 309, 365, 6687, 570, 498, 1580, 1646, 1487, 281, 385, 11, 437, 360, 286, 360, 30, 286, 584, 309, 365, 6687, 570, 498, 1580, 1646, 1487, 281, 385, 11, 437, 360, 286, 360, 30, 286, 584, 309, 365, 6687, 570, 498, 1580, 1646, 1487, 281, 385, 11, 437, 360, 286, 360, 30, 286, 584, 309, 365, 6687, 570, 498, 1580, 1646, 1487, 281, 385, 11, 437, 360, 286, 360, 30, 286, 584, 309, 365], "avg_logprob": -0.15277777353922525, "compression_ratio": 10.38888888888889, "no_speech_prob": 1.895427703857422e-05, "words": [{"start": 553.25, "end": 553.61, "word": "Okay?", "probability": 0.11151123046875}, {"start": 554.03, "end": 554.19, "word": " No,", "probability": 0.56103515625}, {"start": 554.27, "end": 554.33, "word": " I", "probability": 0.8017578125}, {"start": 554.33, "end": 554.43, "word": " say", "probability": 0.43505859375}, {"start": 554.43, "end": 554.57, "word": " it", "probability": 0.46875}, {"start": 554.57, "end": 554.65, "word": " with", "probability": 0.325927734375}, {"start": 554.65, "end": 555.03, "word": " confidence", "probability": 0.552734375}, {"start": 555.03, "end": 555.47, "word": " because", "probability": 0.281494140625}, {"start": 555.47, "end": 556.13, "word": " if", "probability": 0.30859375}, {"start": 556.13, "end": 556.47, "word": " someone", "probability": 0.69091796875}, {"start": 556.47, "end": 556.67, "word": " else", "probability": 0.4697265625}, {"start": 556.67, "end": 556.85, "word": " comes", "probability": 0.474365234375}, {"start": 556.85, "end": 556.85, "word": " to", "probability": 0.1416015625}, {"start": 556.85, "end": 556.87, "word": " me,", "probability": 0.7607421875}, {"start": 556.91, "end": 557.01, "word": " what", "probability": 0.68017578125}, {"start": 557.01, "end": 557.09, "word": " do", "probability": 0.51416015625}, {"start": 557.09, "end": 557.09, "word": " I", "probability": 0.98828125}, {"start": 557.09, "end": 557.31, "word": " do?", "probability": 0.94970703125}, {"start": 558.17, "end": 558.53, "word": " I", "probability": 0.60888671875}, {"start": 558.53, "end": 558.59, "word": " say", "probability": 0.1715087890625}, {"start": 558.59, "end": 558.59, "word": " it", "probability": 0.340576171875}, {"start": 558.59, "end": 558.59, "word": " with", "probability": 0.46826171875}, {"start": 558.59, "end": 558.87, "word": " confidence", "probability": 0.9599609375}, {"start": 558.87, "end": 559.07, "word": " because", "probability": 0.505859375}, {"start": 559.07, "end": 559.21, "word": " if", "probability": 0.53662109375}, {"start": 559.21, "end": 559.53, "word": " someone", "probability": 0.92431640625}, {"start": 559.53, "end": 559.87, "word": " else", "probability": 0.9091796875}, {"start": 559.87, "end": 560.15, "word": " comes", "probability": 0.86865234375}, {"start": 560.15, "end": 560.33, "word": " to", "probability": 0.875}, {"start": 560.33, "end": 560.45, "word": " me,", "probability": 0.94384765625}, {"start": 560.45, "end": 560.45, "word": " what", "probability": 0.87158203125}, {"start": 560.45, "end": 560.45, "word": " do", "probability": 0.96337890625}, {"start": 560.45, "end": 560.45, "word": " I", "probability": 0.99755859375}, {"start": 560.45, "end": 560.45, "word": " do?", "probability": 0.970703125}, {"start": 560.45, "end": 560.45, "word": " I", "probability": 0.541015625}, {"start": 560.45, "end": 560.45, "word": " say", "probability": 0.86572265625}, {"start": 560.45, "end": 560.45, "word": " it", "probability": 0.9453125}, {"start": 560.45, "end": 560.45, "word": " with", "probability": 0.89306640625}, {"start": 560.45, "end": 560.45, "word": " confidence", "probability": 0.98193359375}, {"start": 560.45, "end": 560.45, "word": " because", "probability": 0.8720703125}, {"start": 560.45, "end": 560.45, "word": " if", "probability": 0.892578125}, {"start": 560.45, "end": 560.45, "word": " someone", "probability": 0.94189453125}, {"start": 560.45, "end": 560.45, "word": " else", "probability": 0.92578125}, {"start": 560.45, "end": 560.45, "word": " comes", "probability": 0.919921875}, {"start": 560.45, "end": 560.53, "word": " to", "probability": 0.9658203125}, {"start": 560.53, "end": 560.53, "word": " me,", "probability": 0.966796875}, {"start": 560.89, "end": 560.91, "word": " what", "probability": 0.923828125}, {"start": 560.91, "end": 560.91, "word": " do", "probability": 0.96484375}, {"start": 560.91, "end": 561.01, "word": " I", "probability": 0.99853515625}, {"start": 561.01, "end": 561.01, "word": " do?", "probability": 0.9716796875}, {"start": 561.01, "end": 561.01, "word": " I", "probability": 0.405517578125}, {"start": 561.01, "end": 561.01, "word": " say", "probability": 0.767578125}, {"start": 561.01, "end": 561.21, "word": " it", "probability": 0.9189453125}, {"start": 561.21, "end": 561.31, "word": " with", "probability": 0.8828125}, {"start": 561.31, "end": 561.55, "word": " confidence", "probability": 0.98046875}, {"start": 561.55, "end": 561.79, "word": " because", "probability": 0.82861328125}, {"start": 561.79, "end": 562.03, "word": " if", "probability": 0.71435546875}, {"start": 562.03, "end": 562.09, "word": " someone", "probability": 0.9345703125}, {"start": 562.09, "end": 562.37, "word": " else", "probability": 0.91552734375}, {"start": 562.37, "end": 562.37, "word": " comes", "probability": 0.92236328125}, {"start": 562.37, "end": 562.37, "word": " to", "probability": 0.9716796875}, {"start": 562.37, "end": 562.37, "word": " me,", "probability": 0.96728515625}, {"start": 562.37, "end": 562.37, "word": " what", "probability": 0.93603515625}, {"start": 562.37, "end": 562.37, "word": " do", "probability": 0.96630859375}, {"start": 562.37, "end": 562.37, "word": " I", "probability": 0.99853515625}, {"start": 562.37, "end": 562.37, "word": " do?", "probability": 0.97021484375}, {"start": 562.37, "end": 562.37, "word": " I", "probability": 0.44873046875}, {"start": 562.37, "end": 562.37, "word": " say", "probability": 0.8486328125}, {"start": 562.37, "end": 562.37, "word": " it", "probability": 0.93994140625}, {"start": 562.37, "end": 562.37, "word": " with", "probability": 0.8984375}, {"start": 562.37, "end": 562.37, "word": " confidence", "probability": 0.9814453125}, {"start": 562.37, "end": 562.37, "word": " because", "probability": 0.89208984375}, {"start": 562.37, "end": 562.37, "word": " if", "probability": 0.93359375}, {"start": 562.37, "end": 562.37, "word": " someone", "probability": 0.94580078125}, {"start": 562.37, "end": 562.43, "word": " else", "probability": 0.9267578125}, {"start": 562.43, "end": 562.43, "word": " comes", "probability": 0.91943359375}, {"start": 562.43, "end": 562.43, "word": " to", "probability": 0.97412109375}, {"start": 562.43, "end": 562.43, "word": " me,", "probability": 0.966796875}, {"start": 562.43, "end": 562.43, "word": " what", "probability": 0.94873046875}, {"start": 562.43, "end": 562.43, "word": " do", "probability": 0.96826171875}, {"start": 562.43, "end": 562.55, "word": " I", "probability": 0.9990234375}, {"start": 562.55, "end": 562.85, "word": " do?", "probability": 0.9716796875}, {"start": 562.97, "end": 562.97, "word": " I", "probability": 0.7099609375}, {"start": 562.97, "end": 562.97, "word": " say", "probability": 0.90234375}, {"start": 562.97, "end": 562.97, "word": " it", "probability": 0.9521484375}, {"start": 562.97, "end": 562.97, "word": " with", "probability": 0.90380859375}, {"start": 562.97, "end": 562.97, "word": " confidence", "probability": 0.98193359375}, {"start": 562.97, "end": 562.97, "word": " because", "probability": 0.908203125}, {"start": 562.97, "end": 562.97, "word": " if", "probability": 0.95703125}, {"start": 562.97, "end": 562.97, "word": " someone", "probability": 0.9482421875}, {"start": 562.97, "end": 562.97, "word": " else", "probability": 0.9326171875}, {"start": 562.97, "end": 562.97, "word": " comes", "probability": 0.9111328125}, {"start": 562.97, "end": 562.97, "word": " to", "probability": 0.97509765625}, {"start": 562.97, "end": 562.97, "word": " me,", "probability": 0.96728515625}, {"start": 562.97, "end": 562.97, "word": " what", "probability": 0.9521484375}, {"start": 562.97, "end": 563.09, "word": " do", "probability": 0.97021484375}, {"start": 563.09, "end": 563.09, "word": " I", "probability": 0.99951171875}, {"start": 563.09, "end": 563.09, "word": " do?", "probability": 0.97216796875}, {"start": 563.09, "end": 563.09, "word": " I", "probability": 0.86376953125}, {"start": 563.09, "end": 563.09, "word": " say", "probability": 0.9306640625}, {"start": 563.09, "end": 563.09, "word": " it", "probability": 0.95751953125}, {"start": 563.09, "end": 563.09, "word": " with", "probability": 0.90283203125}, {"start": 563.09, "end": 563.09, "word": " confidence", "probability": 0.98095703125}, {"start": 563.09, "end": 563.09, "word": " because", "probability": 0.9150390625}, {"start": 563.09, "end": 563.09, "word": " if", "probability": 0.95849609375}, {"start": 563.09, "end": 563.09, "word": " someone", "probability": 0.95068359375}, {"start": 563.09, "end": 563.09, "word": " else", "probability": 0.9365234375}, {"start": 563.09, "end": 563.09, "word": " comes", "probability": 0.90869140625}, {"start": 563.09, "end": 563.09, "word": " to", "probability": 0.97607421875}, {"start": 563.09, "end": 563.09, "word": " me,", "probability": 0.96826171875}, {"start": 563.09, "end": 563.09, "word": " what", "probability": 0.95361328125}, {"start": 563.09, "end": 563.09, "word": " do", "probability": 0.97216796875}, {"start": 563.09, "end": 563.09, "word": " I", "probability": 0.99951171875}, {"start": 563.09, "end": 563.09, "word": " do?", "probability": 0.9736328125}, {"start": 563.09, "end": 563.09, "word": " I", "probability": 0.9150390625}, {"start": 563.09, "end": 563.09, "word": " say", "probability": 0.94091796875}, {"start": 563.09, "end": 563.09, "word": " it", "probability": 0.9599609375}, {"start": 563.09, "end": 563.09, "word": " with", "probability": 0.9033203125}, {"start": 563.09, "end": 563.09, "word": " confidence", "probability": 0.97998046875}, {"start": 563.09, "end": 563.09, "word": " because", "probability": 0.91845703125}, {"start": 563.09, "end": 563.09, "word": " if", "probability": 0.95654296875}, {"start": 563.09, "end": 563.09, "word": " someone", "probability": 0.953125}, {"start": 563.09, "end": 563.09, "word": " else", "probability": 0.93896484375}, {"start": 563.09, "end": 563.09, "word": " comes", "probability": 0.90478515625}, {"start": 563.09, "end": 563.09, "word": " to", "probability": 0.9765625}, {"start": 563.09, "end": 563.09, "word": " me,", "probability": 0.96875}, {"start": 563.09, "end": 563.09, "word": " what", "probability": 0.9541015625}, {"start": 563.09, "end": 563.09, "word": " do", "probability": 0.97314453125}, {"start": 563.09, "end": 563.09, "word": " I", "probability": 0.99951171875}, {"start": 563.09, "end": 563.09, "word": " do?", "probability": 0.974609375}, {"start": 563.09, "end": 563.27, "word": " I", "probability": 0.93359375}, {"start": 563.27, "end": 563.43, "word": " say", "probability": 0.93994140625}, {"start": 563.43, "end": 563.47, "word": " it", "probability": 0.9619140625}, {"start": 563.47, "end": 563.47, "word": " with", "probability": 0.9033203125}, {"start": 563.47, "end": 563.47, "word": " confidence", "probability": 0.97802734375}, {"start": 563.47, "end": 563.47, "word": " because", "probability": 0.9169921875}, {"start": 563.47, "end": 563.47, "word": " if", "probability": 0.95654296875}, {"start": 563.47, "end": 563.47, "word": " someone", "probability": 0.95458984375}, {"start": 563.47, "end": 563.47, "word": " else", "probability": 0.943359375}, {"start": 563.47, "end": 563.47, "word": " comes", "probability": 0.90478515625}, {"start": 563.47, "end": 563.47, "word": " to", "probability": 0.9775390625}, {"start": 563.47, "end": 563.47, "word": " me,", "probability": 0.96875}, {"start": 563.47, "end": 563.47, "word": " what", "probability": 0.9541015625}, {"start": 563.47, "end": 563.47, "word": " do", "probability": 0.97216796875}, {"start": 563.47, "end": 563.63, "word": " I", "probability": 0.99951171875}, {"start": 563.63, "end": 563.63, "word": " do?", "probability": 0.97607421875}, {"start": 563.63, "end": 563.63, "word": " I", "probability": 0.94482421875}, {"start": 563.63, "end": 563.63, "word": " say", "probability": 0.9384765625}, {"start": 563.63, "end": 563.63, "word": " it", "probability": 0.96142578125}, {"start": 563.63, "end": 563.63, "word": " with", "probability": 0.90478515625}, {"start": 563.63, "end": 563.63, "word": " confidence", "probability": 0.9765625}, {"start": 563.63, "end": 563.87, "word": " because", "probability": 0.91650390625}, {"start": 563.87, "end": 563.87, "word": " if", "probability": 0.95654296875}, {"start": 563.87, "end": 563.87, "word": " someone", "probability": 0.95703125}, {"start": 563.87, "end": 563.87, "word": " else", "probability": 0.9453125}, {"start": 563.87, "end": 563.87, "word": " comes", "probability": 0.9033203125}, {"start": 563.87, "end": 563.87, "word": " to", "probability": 0.97802734375}, {"start": 563.87, "end": 563.87, "word": " me,", "probability": 0.96875}, {"start": 563.87, "end": 563.87, "word": " what", "probability": 0.9541015625}, {"start": 563.87, "end": 563.87, "word": " do", "probability": 0.97314453125}, {"start": 563.87, "end": 563.87, "word": " I", "probability": 0.99951171875}, {"start": 563.87, "end": 563.87, "word": " do?", "probability": 0.9765625}, {"start": 563.95, "end": 563.99, "word": " I", "probability": 0.94287109375}, {"start": 563.99, "end": 563.99, "word": " say", "probability": 0.93310546875}, {"start": 563.99, "end": 563.99, "word": " it", "probability": 0.9619140625}, {"start": 563.99, "end": 563.99, "word": " with", "probability": 0.90478515625}, {"start": 563.99, "end": 564.13, "word": " confidence", "probability": 0.9755859375}, {"start": 564.13, "end": 564.13, "word": " because", "probability": 0.91455078125}, {"start": 564.13, "end": 564.13, "word": " if", "probability": 0.95556640625}, {"start": 564.13, "end": 564.13, "word": " someone", "probability": 0.95751953125}, {"start": 564.13, "end": 564.13, "word": " else", "probability": 0.94677734375}, {"start": 564.13, "end": 564.13, "word": " comes", "probability": 0.90087890625}, {"start": 564.13, "end": 564.13, "word": " to", "probability": 0.97802734375}, {"start": 564.13, "end": 564.13, "word": " me,", "probability": 0.96875}, {"start": 564.13, "end": 564.13, "word": " what", "probability": 0.95556640625}, {"start": 564.13, "end": 564.13, "word": " do", "probability": 0.97216796875}, {"start": 564.13, "end": 564.13, "word": " I", "probability": 0.9990234375}, {"start": 564.13, "end": 564.13, "word": " do?", "probability": 0.97802734375}, {"start": 564.27, "end": 564.47, "word": " I", "probability": 0.9287109375}, {"start": 564.47, "end": 564.61, "word": " say", "probability": 0.92724609375}, {"start": 564.61, "end": 564.83, "word": " it", "probability": 0.96142578125}, {"start": 564.83, "end": 564.87, "word": " with", "probability": 0.90185546875}, {"start": 564.87, "end": 564.87, "word": " confidence", "probability": 0.974609375}, {"start": 564.87, "end": 565.37, "word": " because", "probability": 0.90478515625}, {"start": 565.37, "end": 565.57, "word": " if", "probability": 0.95458984375}, {"start": 565.57, "end": 565.57, "word": " someone", "probability": 0.95849609375}, {"start": 565.57, "end": 565.91, "word": " else", "probability": 0.9462890625}, {"start": 565.91, "end": 566.07, "word": " comes", "probability": 0.90576171875}, {"start": 566.07, "end": 566.57, "word": " to", "probability": 0.978515625}, {"start": 566.57, "end": 566.57, "word": " me,", "probability": 0.96875}, {"start": 566.61, "end": 566.61, "word": " what", "probability": 0.955078125}, {"start": 566.61, "end": 567.63, "word": " do", "probability": 0.970703125}, {"start": 567.63, "end": 567.81, "word": " I", "probability": 0.99853515625}, {"start": 567.81, "end": 567.81, "word": " do?", "probability": 0.9775390625}, {"start": 568.07, "end": 568.43, "word": " I", "probability": 0.8984375}, {"start": 568.43, "end": 568.43, "word": " say", "probability": 0.92041015625}, {"start": 568.43, "end": 568.63, "word": " it", "probability": 0.96044921875}, {"start": 568.63, "end": 568.95, "word": " with", "probability": 0.9013671875}], "temperature": 1.0}, {"id": 26, "seek": 59297, "start": 571.31, "end": 592.97, "text": "The second advantage is that the coupling is less than that of external systems that deal with internal parts of the system. This means that if any component is changed from here, it will affect whom? It will affect the people outside. But here if there is any change, the name of the class is changed, a new method is added, I will only change where?", "tokens": [2278, 1150, 5002, 307, 300, 264, 37447, 307, 1570, 813, 300, 295, 8320, 3652, 300, 2028, 365, 6920, 3166, 295, 264, 1185, 13, 639, 1355, 300, 498, 604, 6542, 307, 3105, 490, 510, 11, 309, 486, 3345, 7101, 30, 467, 486, 3345, 264, 561, 2380, 13, 583, 510, 498, 456, 307, 604, 1319, 11, 264, 1315, 295, 264, 1508, 307, 3105, 11, 257, 777, 3170, 307, 3869, 11, 286, 486, 787, 1319, 689, 30], "avg_logprob": -0.5945833079020182, "compression_ratio": 1.729064039408867, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 571.31, "end": 571.79, "word": "The", "probability": 0.63525390625}, {"start": 571.79, "end": 572.27, "word": " second", "probability": 0.7021484375}, {"start": 572.27, "end": 572.27, "word": " advantage", "probability": 0.5869140625}, {"start": 572.27, "end": 572.65, "word": " is", "probability": 0.358642578125}, {"start": 572.65, "end": 572.79, "word": " that", "probability": 0.473388671875}, {"start": 572.79, "end": 574.89, "word": " the", "probability": 0.2425537109375}, {"start": 574.89, "end": 575.21, "word": " coupling", "probability": 0.460205078125}, {"start": 575.21, "end": 575.67, "word": " is", "probability": 0.7109375}, {"start": 575.67, "end": 575.91, "word": " less", "probability": 0.441650390625}, {"start": 575.91, "end": 576.65, "word": " than", "probability": 0.417236328125}, {"start": 576.65, "end": 576.65, "word": " that", "probability": 0.057708740234375}, {"start": 576.65, "end": 577.47, "word": " of", "probability": 0.87939453125}, {"start": 577.47, "end": 577.85, "word": " external", "probability": 0.35302734375}, {"start": 577.85, "end": 579.43, "word": " systems", "probability": 0.583984375}, {"start": 579.43, "end": 580.17, "word": " that", "probability": 0.30126953125}, {"start": 580.17, "end": 580.45, "word": " deal", "probability": 0.4052734375}, {"start": 580.45, "end": 580.91, "word": " with", "probability": 0.89208984375}, {"start": 580.91, "end": 581.67, "word": " internal", "probability": 0.68212890625}, {"start": 581.67, "end": 581.67, "word": " parts", "probability": 0.382568359375}, {"start": 581.67, "end": 581.85, "word": " of", "probability": 0.79833984375}, {"start": 581.85, "end": 581.97, "word": " the", "probability": 0.759765625}, {"start": 581.97, "end": 582.19, "word": " system.", "probability": 0.88427734375}, {"start": 582.25, "end": 582.33, "word": " This", "probability": 0.1302490234375}, {"start": 582.33, "end": 582.39, "word": " means", "probability": 0.87939453125}, {"start": 582.39, "end": 582.49, "word": " that", "probability": 0.8623046875}, {"start": 582.49, "end": 582.61, "word": " if", "probability": 0.72216796875}, {"start": 582.61, "end": 583.23, "word": " any", "probability": 0.662109375}, {"start": 583.23, "end": 583.77, "word": " component", "probability": 0.8515625}, {"start": 583.77, "end": 583.87, "word": " is", "probability": 0.1876220703125}, {"start": 583.87, "end": 583.87, "word": " changed", "probability": 0.8349609375}, {"start": 583.87, "end": 583.97, "word": " from", "probability": 0.413330078125}, {"start": 583.97, "end": 584.25, "word": " here,", "probability": 0.72412109375}, {"start": 584.35, "end": 584.35, "word": " it", "probability": 0.67578125}, {"start": 584.35, "end": 584.49, "word": " will", "probability": 0.40625}, {"start": 584.49, "end": 584.69, "word": " affect", "probability": 0.65380859375}, {"start": 584.69, "end": 585.05, "word": " whom?", "probability": 0.125244140625}, {"start": 585.29, "end": 585.77, "word": " It", "probability": 0.393798828125}, {"start": 585.77, "end": 585.77, "word": " will", "probability": 0.65673828125}, {"start": 585.77, "end": 585.77, "word": " affect", "probability": 0.8251953125}, {"start": 585.77, "end": 586.01, "word": " the", "probability": 0.24853515625}, {"start": 586.01, "end": 586.01, "word": " people", "probability": 0.59912109375}, {"start": 586.01, "end": 586.33, "word": " outside.", "probability": 0.73486328125}, {"start": 586.69, "end": 587.07, "word": " But", "probability": 0.7294921875}, {"start": 587.07, "end": 587.27, "word": " here", "probability": 0.3310546875}, {"start": 587.27, "end": 587.47, "word": " if", "probability": 0.56591796875}, {"start": 587.47, "end": 587.57, "word": " there", "probability": 0.49560546875}, {"start": 587.57, "end": 587.75, "word": " is", "probability": 0.818359375}, {"start": 587.75, "end": 587.93, "word": " any", "probability": 0.82373046875}, {"start": 587.93, "end": 588.39, "word": " change,", "probability": 0.88720703125}, {"start": 588.89, "end": 590.35, "word": " the", "probability": 0.326904296875}, {"start": 590.35, "end": 590.53, "word": " name", "probability": 0.5517578125}, {"start": 590.53, "end": 590.65, "word": " of", "probability": 0.9296875}, {"start": 590.65, "end": 590.65, "word": " the", "probability": 0.87109375}, {"start": 590.65, "end": 590.85, "word": " class", "probability": 0.96435546875}, {"start": 590.85, "end": 590.85, "word": " is", "probability": 0.293212890625}, {"start": 590.85, "end": 590.85, "word": " changed,", "probability": 0.88671875}, {"start": 591.01, "end": 591.33, "word": " a", "probability": 0.67822265625}, {"start": 591.33, "end": 591.33, "word": " new", "probability": 0.89599609375}, {"start": 591.33, "end": 591.81, "word": " method", "probability": 0.95556640625}, {"start": 591.81, "end": 591.81, "word": " is", "probability": 0.66455078125}, {"start": 591.81, "end": 591.81, "word": " added,", "probability": 0.802734375}, {"start": 592.17, "end": 592.27, "word": " I", "probability": 0.1844482421875}, {"start": 592.27, "end": 592.33, "word": " will", "probability": 0.7314453125}, {"start": 592.33, "end": 592.55, "word": " only", "probability": 0.2568359375}, {"start": 592.55, "end": 592.55, "word": " change", "probability": 0.89697265625}, {"start": 592.55, "end": 592.97, "word": " where?", "probability": 0.64794921875}], "temperature": 1.0}, {"id": 27, "seek": 60927, "start": 593.71, "end": 609.27, "text": "In corruption, it's the same idea of the factory, when everyone uses the factory to create, if there is a change in the classes, I change only where? In the factory, but of course the goal of the factory is different from corruption, the factory is specifically for the creation of objects", "tokens": [4575, 17959, 11, 309, 311, 264, 912, 1558, 295, 264, 9265, 11, 562, 1518, 4960, 264, 9265, 281, 1884, 11, 498, 456, 307, 257, 1319, 294, 264, 5359, 11, 286, 1319, 787, 689, 30, 682, 264, 9265, 11, 457, 295, 1164, 264, 3387, 295, 264, 9265, 307, 819, 490, 17959, 11, 264, 9265, 307, 4682, 337, 264, 8016, 295, 6565], "avg_logprob": -0.4866803180975992, "compression_ratio": 1.7621951219512195, "no_speech_prob": 1.7583370208740234e-05, "words": [{"start": 593.71, "end": 594.15, "word": "In", "probability": 0.13134765625}, {"start": 594.15, "end": 594.63, "word": " corruption,", "probability": 0.73681640625}, {"start": 595.01, "end": 595.21, "word": " it's", "probability": 0.4293212890625}, {"start": 595.21, "end": 595.35, "word": " the", "probability": 0.6123046875}, {"start": 595.35, "end": 595.37, "word": " same", "probability": 0.90576171875}, {"start": 595.37, "end": 595.61, "word": " idea", "probability": 0.2188720703125}, {"start": 595.61, "end": 595.73, "word": " of", "probability": 0.427734375}, {"start": 595.73, "end": 595.81, "word": " the", "probability": 0.3271484375}, {"start": 595.81, "end": 596.21, "word": " factory,", "probability": 0.82568359375}, {"start": 596.89, "end": 597.13, "word": " when", "probability": 0.6572265625}, {"start": 597.13, "end": 597.45, "word": " everyone", "probability": 0.75634765625}, {"start": 597.45, "end": 597.85, "word": " uses", "probability": 0.75146484375}, {"start": 597.85, "end": 598.07, "word": " the", "probability": 0.7021484375}, {"start": 598.07, "end": 598.27, "word": " factory", "probability": 0.8837890625}, {"start": 598.27, "end": 598.51, "word": " to", "probability": 0.8984375}, {"start": 598.51, "end": 598.79, "word": " create,", "probability": 0.404541015625}, {"start": 598.99, "end": 599.21, "word": " if", "probability": 0.70556640625}, {"start": 599.21, "end": 599.29, "word": " there", "probability": 0.7861328125}, {"start": 599.29, "end": 599.51, "word": " is", "probability": 0.533203125}, {"start": 599.51, "end": 599.63, "word": " a", "probability": 0.7236328125}, {"start": 599.63, "end": 599.85, "word": " change", "probability": 0.88427734375}, {"start": 599.85, "end": 600.01, "word": " in", "probability": 0.91357421875}, {"start": 600.01, "end": 600.07, "word": " the", "probability": 0.513671875}, {"start": 600.07, "end": 600.41, "word": " classes,", "probability": 0.76904296875}, {"start": 600.53, "end": 600.59, "word": " I", "probability": 0.388427734375}, {"start": 600.59, "end": 600.81, "word": " change", "probability": 0.442138671875}, {"start": 600.81, "end": 601.05, "word": " only", "probability": 0.41748046875}, {"start": 601.05, "end": 601.29, "word": " where?", "probability": 0.642578125}, {"start": 601.69, "end": 602.17, "word": " In", "probability": 0.71484375}, {"start": 602.17, "end": 602.29, "word": " the", "probability": 0.90625}, {"start": 602.29, "end": 602.59, "word": " factory,", "probability": 0.88134765625}, {"start": 603.07, "end": 603.23, "word": " but", "probability": 0.763671875}, {"start": 603.23, "end": 603.37, "word": " of", "probability": 0.7685546875}, {"start": 603.37, "end": 603.57, "word": " course", "probability": 0.953125}, {"start": 603.57, "end": 603.83, "word": " the", "probability": 0.66650390625}, {"start": 603.83, "end": 604.09, "word": " goal", "probability": 0.41259765625}, {"start": 604.09, "end": 604.55, "word": " of", "probability": 0.80029296875}, {"start": 604.55, "end": 604.61, "word": " the", "probability": 0.865234375}, {"start": 604.61, "end": 604.95, "word": " factory", "probability": 0.90771484375}, {"start": 604.95, "end": 605.35, "word": " is", "probability": 0.85986328125}, {"start": 605.35, "end": 605.75, "word": " different", "probability": 0.83349609375}, {"start": 605.75, "end": 605.99, "word": " from", "probability": 0.79248046875}, {"start": 605.99, "end": 606.45, "word": " corruption,", "probability": 0.734375}, {"start": 606.85, "end": 606.97, "word": " the", "probability": 0.67333984375}, {"start": 606.97, "end": 607.33, "word": " factory", "probability": 0.86865234375}, {"start": 607.33, "end": 607.71, "word": " is", "probability": 0.7880859375}, {"start": 607.71, "end": 608.05, "word": " specifically", "probability": 0.284912109375}, {"start": 608.05, "end": 608.37, "word": " for", "probability": 0.638671875}, {"start": 608.37, "end": 608.43, "word": " the", "probability": 0.515625}, {"start": 608.43, "end": 608.73, "word": " creation", "probability": 0.52490234375}, {"start": 608.73, "end": 608.95, "word": " of", "probability": 0.939453125}, {"start": 608.95, "end": 609.27, "word": " objects", "probability": 0.9033203125}], "temperature": 1.0}, {"id": 28, "seek": 63850, "start": 609.84, "end": 638.5, "text": " but corruption to implement a certain process and this process has complicated steps I hide this complexity from the client by using corruption a specific example look with me on this example a very simple example if you want to make a program to organize tourist trips any tourist trip at least includes booking a hotel and booking a flight", "tokens": [457, 17959, 281, 4445, 257, 1629, 1399, 293, 341, 1399, 575, 6179, 4439, 286, 6479, 341, 14024, 490, 264, 6423, 538, 1228, 17959, 257, 2685, 1365, 574, 365, 385, 322, 341, 1365, 257, 588, 2199, 1365, 498, 291, 528, 281, 652, 257, 1461, 281, 13859, 19806, 16051, 604, 19806, 4931, 412, 1935, 5974, 34424, 257, 7622, 293, 34424, 257, 7018], "avg_logprob": -0.5676229664536773, "compression_ratio": 1.736040609137056, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 609.84, "end": 610.12, "word": " but", "probability": 0.24609375}, {"start": 610.12, "end": 610.66, "word": " corruption", "probability": 0.509765625}, {"start": 610.66, "end": 611.74, "word": " to", "probability": 0.127685546875}, {"start": 611.74, "end": 613.62, "word": " implement", "probability": 0.37060546875}, {"start": 613.62, "end": 613.78, "word": " a", "probability": 0.7958984375}, {"start": 613.78, "end": 614.4, "word": " certain", "probability": 0.375244140625}, {"start": 614.4, "end": 614.54, "word": " process", "probability": 0.9501953125}, {"start": 614.54, "end": 615.14, "word": " and", "probability": 0.267822265625}, {"start": 615.14, "end": 615.66, "word": " this", "probability": 0.368408203125}, {"start": 615.66, "end": 615.94, "word": " process", "probability": 0.9326171875}, {"start": 615.94, "end": 616.76, "word": " has", "probability": 0.50048828125}, {"start": 616.76, "end": 617.22, "word": " complicated", "probability": 0.49462890625}, {"start": 617.22, "end": 617.22, "word": " steps", "probability": 0.81884765625}, {"start": 617.22, "end": 617.94, "word": " I", "probability": 0.505859375}, {"start": 617.94, "end": 618.22, "word": " hide", "probability": 0.12396240234375}, {"start": 618.22, "end": 618.34, "word": " this", "probability": 0.68701171875}, {"start": 618.34, "end": 618.7, "word": " complexity", "probability": 0.60595703125}, {"start": 618.7, "end": 619.06, "word": " from", "probability": 0.73828125}, {"start": 619.06, "end": 619.18, "word": " the", "probability": 0.6396484375}, {"start": 619.18, "end": 619.46, "word": " client", "probability": 0.89404296875}, {"start": 619.46, "end": 619.82, "word": " by", "probability": 0.43359375}, {"start": 619.82, "end": 620.7, "word": " using", "probability": 0.89111328125}, {"start": 620.7, "end": 621.36, "word": " corruption", "probability": 0.859375}, {"start": 621.36, "end": 622.06, "word": " a", "probability": 0.1904296875}, {"start": 622.06, "end": 622.96, "word": " specific", "probability": 0.382568359375}, {"start": 622.96, "end": 623.02, "word": " example", "probability": 0.96484375}, {"start": 623.02, "end": 624.0, "word": " look", "probability": 0.258056640625}, {"start": 624.0, "end": 624.18, "word": " with", "probability": 0.5595703125}, {"start": 624.18, "end": 624.36, "word": " me", "probability": 0.96435546875}, {"start": 624.36, "end": 624.52, "word": " on", "probability": 0.505859375}, {"start": 624.52, "end": 625.06, "word": " this", "probability": 0.904296875}, {"start": 625.06, "end": 625.4, "word": " example", "probability": 0.935546875}, {"start": 625.4, "end": 626.1, "word": " a", "probability": 0.5458984375}, {"start": 626.1, "end": 626.36, "word": " very", "probability": 0.736328125}, {"start": 626.36, "end": 626.66, "word": " simple", "probability": 0.94677734375}, {"start": 626.66, "end": 627.44, "word": " example", "probability": 0.96435546875}, {"start": 627.44, "end": 627.7, "word": " if", "probability": 0.1895751953125}, {"start": 627.7, "end": 628.08, "word": " you", "probability": 0.931640625}, {"start": 628.08, "end": 628.32, "word": " want", "probability": 0.646484375}, {"start": 628.32, "end": 628.46, "word": " to", "probability": 0.96728515625}, {"start": 628.46, "end": 628.62, "word": " make", "probability": 0.65380859375}, {"start": 628.62, "end": 628.76, "word": " a", "probability": 0.9248046875}, {"start": 628.76, "end": 629.14, "word": " program", "probability": 0.572265625}, {"start": 629.14, "end": 629.46, "word": " to", "probability": 0.77587890625}, {"start": 629.46, "end": 629.8, "word": " organize", "probability": 0.74560546875}, {"start": 629.8, "end": 630.94, "word": " tourist", "probability": 0.22412109375}, {"start": 630.94, "end": 631.4, "word": " trips", "probability": 0.8544921875}, {"start": 631.4, "end": 632.46, "word": " any", "probability": 0.447021484375}, {"start": 632.46, "end": 632.58, "word": " tourist", "probability": 0.478515625}, {"start": 632.58, "end": 633.42, "word": " trip", "probability": 0.89111328125}, {"start": 633.42, "end": 635.0, "word": " at", "probability": 0.283935546875}, {"start": 635.0, "end": 635.28, "word": " least", "probability": 0.94482421875}, {"start": 635.28, "end": 637.02, "word": " includes", "probability": 0.451171875}, {"start": 637.02, "end": 637.4, "word": " booking", "probability": 0.51708984375}, {"start": 637.4, "end": 637.52, "word": " a", "probability": 0.5263671875}, {"start": 637.52, "end": 637.8, "word": " hotel", "probability": 0.97021484375}, {"start": 637.8, "end": 637.98, "word": " and", "probability": 0.86279296875}, {"start": 637.98, "end": 638.24, "word": " booking", "probability": 0.6015625}, {"start": 638.24, "end": 638.3, "word": " a", "probability": 0.8427734375}, {"start": 638.3, "end": 638.5, "word": " flight", "probability": 0.44140625}], "temperature": 1.0}, {"id": 29, "seek": 66477, "start": 639.41, "end": 664.77, "text": "Okay, now you have a component or class responsible for booking hotels, which is actually for example, it has a method, it searches, you give it a date from where to where you want to travel, from this date to this date, it returns you a list of hotels available in this date, and you have another class responsible for booking flights, it also gives it a date from where to where, and it returns you flights available in this date,", "tokens": [8297, 11, 586, 291, 362, 257, 6542, 420, 1508, 6250, 337, 34424, 22718, 11, 597, 307, 767, 337, 1365, 11, 309, 575, 257, 3170, 11, 309, 26701, 11, 291, 976, 309, 257, 4002, 490, 689, 281, 689, 291, 528, 281, 3147, 11, 490, 341, 4002, 281, 341, 4002, 11, 309, 11247, 291, 257, 1329, 295, 22718, 2435, 294, 341, 4002, 11, 293, 291, 362, 1071, 1508, 6250, 337, 34424, 21089, 11, 309, 611, 2709, 309, 257, 4002, 490, 689, 281, 689, 11, 293, 309, 11247, 291, 21089, 2435, 294, 341, 4002, 11], "avg_logprob": -0.4408602278719666, "compression_ratio": 2.0869565217391304, "no_speech_prob": 1.1026859283447266e-05, "words": [{"start": 639.41, "end": 639.89, "word": "Okay,", "probability": 0.09283447265625}, {"start": 640.47, "end": 640.71, "word": " now", "probability": 0.400390625}, {"start": 640.71, "end": 640.91, "word": " you", "probability": 0.8046875}, {"start": 640.91, "end": 641.17, "word": " have", "probability": 0.92138671875}, {"start": 641.17, "end": 641.69, "word": " a", "probability": 0.8818359375}, {"start": 641.69, "end": 642.07, "word": " component", "probability": 0.5595703125}, {"start": 642.07, "end": 642.45, "word": " or", "probability": 0.7841796875}, {"start": 642.45, "end": 642.89, "word": " class", "probability": 0.828125}, {"start": 642.89, "end": 643.29, "word": " responsible", "probability": 0.64111328125}, {"start": 643.29, "end": 643.51, "word": " for", "probability": 0.87451171875}, {"start": 643.51, "end": 643.71, "word": " booking", "probability": 0.87841796875}, {"start": 643.71, "end": 644.09, "word": " hotels,", "probability": 0.82763671875}, {"start": 645.09, "end": 645.23, "word": " which", "probability": 0.71630859375}, {"start": 645.23, "end": 645.39, "word": " is", "probability": 0.343017578125}, {"start": 645.39, "end": 645.69, "word": " actually", "probability": 0.401611328125}, {"start": 645.69, "end": 645.91, "word": " for", "probability": 0.373046875}, {"start": 645.91, "end": 646.15, "word": " example,", "probability": 0.9443359375}, {"start": 646.23, "end": 646.27, "word": " it", "probability": 0.49169921875}, {"start": 646.27, "end": 646.41, "word": " has", "probability": 0.90625}, {"start": 646.41, "end": 646.51, "word": " a", "probability": 0.92333984375}, {"start": 646.51, "end": 646.85, "word": " method,", "probability": 0.93701171875}, {"start": 647.23, "end": 647.35, "word": " it", "probability": 0.313232421875}, {"start": 647.35, "end": 647.57, "word": " searches,", "probability": 0.9052734375}, {"start": 647.79, "end": 647.87, "word": " you", "probability": 0.48291015625}, {"start": 647.87, "end": 648.25, "word": " give", "probability": 0.765625}, {"start": 648.25, "end": 648.49, "word": " it", "probability": 0.80615234375}, {"start": 648.49, "end": 648.63, "word": " a", "probability": 0.83056640625}, {"start": 648.63, "end": 648.95, "word": " date", "probability": 0.6181640625}, {"start": 648.95, "end": 649.13, "word": " from", "probability": 0.619140625}, {"start": 649.13, "end": 649.35, "word": " where", "probability": 0.82763671875}, {"start": 649.35, "end": 649.43, "word": " to", "probability": 0.70263671875}, {"start": 649.43, "end": 649.57, "word": " where", "probability": 0.93701171875}, {"start": 649.57, "end": 649.61, "word": " you", "probability": 0.87451171875}, {"start": 649.61, "end": 649.75, "word": " want", "probability": 0.80859375}, {"start": 649.75, "end": 649.87, "word": " to", "probability": 0.970703125}, {"start": 649.87, "end": 650.25, "word": " travel,", "probability": 0.8623046875}, {"start": 650.87, "end": 651.07, "word": " from", "probability": 0.80029296875}, {"start": 651.07, "end": 651.39, "word": " this", "probability": 0.27197265625}, {"start": 651.39, "end": 651.39, "word": " date", "probability": 0.91552734375}, {"start": 651.39, "end": 651.61, "word": " to", "probability": 0.9384765625}, {"start": 651.61, "end": 652.01, "word": " this", "probability": 0.67041015625}, {"start": 652.01, "end": 652.01, "word": " date,", "probability": 0.90478515625}, {"start": 652.19, "end": 652.27, "word": " it", "probability": 0.435546875}, {"start": 652.27, "end": 652.47, "word": " returns", "probability": 0.4716796875}, {"start": 652.47, "end": 652.67, "word": " you", "probability": 0.4267578125}, {"start": 652.67, "end": 652.83, "word": " a", "probability": 0.94140625}, {"start": 652.83, "end": 652.97, "word": " list", "probability": 0.849609375}, {"start": 652.97, "end": 653.67, "word": " of", "probability": 0.88330078125}, {"start": 653.67, "end": 653.99, "word": " hotels", "probability": 0.91259765625}, {"start": 653.99, "end": 654.61, "word": " available", "probability": 0.720703125}, {"start": 654.61, "end": 654.75, "word": " in", "probability": 0.49755859375}, {"start": 654.75, "end": 654.79, "word": " this", "probability": 0.50830078125}, {"start": 654.79, "end": 655.09, "word": " date,", "probability": 0.83056640625}, {"start": 655.81, "end": 656.23, "word": " and", "probability": 0.90966796875}, {"start": 656.23, "end": 656.47, "word": " you", "probability": 0.73388671875}, {"start": 656.47, "end": 656.47, "word": " have", "probability": 0.91943359375}, {"start": 656.47, "end": 656.53, "word": " another", "probability": 0.82177734375}, {"start": 656.53, "end": 656.89, "word": " class", "probability": 0.97021484375}, {"start": 656.89, "end": 657.45, "word": " responsible", "probability": 0.7177734375}, {"start": 657.45, "end": 657.69, "word": " for", "probability": 0.9482421875}, {"start": 657.69, "end": 658.13, "word": " booking", "probability": 0.93701171875}, {"start": 658.13, "end": 659.01, "word": " flights,", "probability": 0.31103515625}, {"start": 659.55, "end": 660.27, "word": " it", "probability": 0.61181640625}, {"start": 660.27, "end": 660.37, "word": " also", "probability": 0.85400390625}, {"start": 660.37, "end": 660.67, "word": " gives", "probability": 0.80712890625}, {"start": 660.67, "end": 660.81, "word": " it", "probability": 0.30859375}, {"start": 660.81, "end": 660.89, "word": " a", "probability": 0.60009765625}, {"start": 660.89, "end": 661.17, "word": " date", "probability": 0.87841796875}, {"start": 661.17, "end": 661.31, "word": " from", "probability": 0.83984375}, {"start": 661.31, "end": 661.61, "word": " where", "probability": 0.33935546875}, {"start": 661.61, "end": 661.61, "word": " to", "probability": 0.88818359375}, {"start": 661.61, "end": 662.03, "word": " where,", "probability": 0.896484375}, {"start": 662.45, "end": 662.59, "word": " and", "probability": 0.791015625}, {"start": 662.59, "end": 662.65, "word": " it", "probability": 0.58251953125}, {"start": 662.65, "end": 662.87, "word": " returns", "probability": 0.81640625}, {"start": 662.87, "end": 663.05, "word": " you", "probability": 0.861328125}, {"start": 663.05, "end": 663.33, "word": " flights", "probability": 0.6513671875}, {"start": 663.33, "end": 664.17, "word": " available", "probability": 0.74853515625}, {"start": 664.17, "end": 664.37, "word": " in", "probability": 0.8291015625}, {"start": 664.37, "end": 664.45, "word": " this", "probability": 0.796875}, {"start": 664.45, "end": 664.77, "word": " date,", "probability": 0.78515625}], "temperature": 1.0}, {"id": 30, "seek": 69350, "start": 665.78, "end": 693.5, "text": " Now, anyone who wants to book a flight must use this component to search for flights available in hotels and use it to create an object from the flight booker to search for the flights available in this date. And then what does he have to do? He has to do a matching to see what booking hotels are suitable for the flight schedule and choose the best hotel with the best flight trip, for example, and give a recommendation to the user. This is an additional process.", "tokens": [823, 11, 2878, 567, 2738, 281, 1446, 257, 7018, 1633, 764, 341, 6542, 281, 3164, 337, 21089, 2435, 294, 22718, 293, 764, 309, 281, 1884, 364, 2657, 490, 264, 7018, 1446, 260, 281, 3164, 337, 264, 21089, 2435, 294, 341, 4002, 13, 400, 550, 437, 775, 415, 362, 281, 360, 30, 634, 575, 281, 360, 257, 14324, 281, 536, 437, 34424, 22718, 366, 12873, 337, 264, 7018, 7567, 293, 2826, 264, 1151, 7622, 365, 264, 1151, 7018, 4931, 11, 337, 1365, 11, 293, 976, 257, 11879, 281, 264, 4195, 13, 639, 307, 364, 4497, 1399, 13], "avg_logprob": -0.49355669119923384, "compression_ratio": 1.8531746031746033, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 665.78, "end": 666.1, "word": " Now,", "probability": 0.1458740234375}, {"start": 666.18, "end": 666.44, "word": " anyone", "probability": 0.5380859375}, {"start": 666.44, "end": 666.68, "word": " who", "probability": 0.69873046875}, {"start": 666.68, "end": 666.82, "word": " wants", "probability": 0.552734375}, {"start": 666.82, "end": 667.0, "word": " to", "probability": 0.95947265625}, {"start": 667.0, "end": 667.0, "word": " book", "probability": 0.9365234375}, {"start": 667.0, "end": 667.34, "word": " a", "probability": 0.916015625}, {"start": 667.34, "end": 667.34, "word": " flight", "probability": 0.71435546875}, {"start": 667.34, "end": 667.72, "word": " must", "probability": 0.270263671875}, {"start": 667.72, "end": 668.4, "word": " use", "probability": 0.81787109375}, {"start": 668.4, "end": 668.56, "word": " this", "probability": 0.8447265625}, {"start": 668.56, "end": 669.1, "word": " component", "probability": 0.80029296875}, {"start": 669.1, "end": 670.0, "word": " to", "probability": 0.6953125}, {"start": 670.0, "end": 670.32, "word": " search", "probability": 0.771484375}, {"start": 670.32, "end": 670.48, "word": " for", "probability": 0.75}, {"start": 670.48, "end": 670.72, "word": " flights", "probability": 0.33740234375}, {"start": 670.72, "end": 671.14, "word": " available", "probability": 0.517578125}, {"start": 671.14, "end": 671.44, "word": " in", "probability": 0.1392822265625}, {"start": 671.44, "end": 671.88, "word": " hotels", "probability": 0.5751953125}, {"start": 671.88, "end": 673.2, "word": " and", "probability": 0.34521484375}, {"start": 673.2, "end": 673.64, "word": " use", "probability": 0.39453125}, {"start": 673.64, "end": 673.86, "word": " it", "probability": 0.55126953125}, {"start": 673.86, "end": 673.88, "word": " to", "probability": 0.6337890625}, {"start": 673.88, "end": 674.06, "word": " create", "probability": 0.74365234375}, {"start": 674.06, "end": 674.26, "word": " an", "probability": 0.68896484375}, {"start": 674.26, "end": 674.46, "word": " object", "probability": 0.9521484375}, {"start": 674.46, "end": 674.64, "word": " from", "probability": 0.64794921875}, {"start": 674.64, "end": 674.74, "word": " the", "probability": 0.5537109375}, {"start": 674.74, "end": 674.96, "word": " flight", "probability": 0.7744140625}, {"start": 674.96, "end": 675.34, "word": " booker", "probability": 0.801025390625}, {"start": 675.34, "end": 675.56, "word": " to", "probability": 0.865234375}, {"start": 675.56, "end": 675.92, "word": " search", "probability": 0.88037109375}, {"start": 675.92, "end": 676.06, "word": " for", "probability": 0.783203125}, {"start": 676.06, "end": 676.24, "word": " the", "probability": 0.1278076171875}, {"start": 676.24, "end": 678.38, "word": " flights", "probability": 0.689453125}, {"start": 678.38, "end": 678.86, "word": " available", "probability": 0.68701171875}, {"start": 678.86, "end": 679.02, "word": " in", "probability": 0.748046875}, {"start": 679.02, "end": 679.1, "word": " this", "probability": 0.541015625}, {"start": 679.1, "end": 679.4, "word": " date.", "probability": 0.340576171875}, {"start": 679.9, "end": 680.16, "word": " And", "probability": 0.4501953125}, {"start": 680.16, "end": 680.42, "word": " then", "probability": 0.72705078125}, {"start": 680.42, "end": 680.58, "word": " what", "probability": 0.51806640625}, {"start": 680.58, "end": 680.72, "word": " does", "probability": 0.60791015625}, {"start": 680.72, "end": 680.78, "word": " he", "probability": 0.716796875}, {"start": 680.78, "end": 680.78, "word": " have", "probability": 0.35595703125}, {"start": 680.78, "end": 680.78, "word": " to", "probability": 0.9697265625}, {"start": 680.78, "end": 681.0, "word": " do?", "probability": 0.9609375}, {"start": 681.04, "end": 681.08, "word": " He", "probability": 0.78564453125}, {"start": 681.08, "end": 681.2, "word": " has", "probability": 0.564453125}, {"start": 681.2, "end": 681.22, "word": " to", "probability": 0.96875}, {"start": 681.22, "end": 681.34, "word": " do", "probability": 0.5205078125}, {"start": 681.34, "end": 681.46, "word": " a", "probability": 0.47802734375}, {"start": 681.46, "end": 681.78, "word": " matching", "probability": 0.90234375}, {"start": 681.78, "end": 681.92, "word": " to", "probability": 0.51904296875}, {"start": 681.92, "end": 682.1, "word": " see", "probability": 0.67822265625}, {"start": 682.1, "end": 682.36, "word": " what", "probability": 0.399658203125}, {"start": 682.36, "end": 682.76, "word": " booking", "probability": 0.1160888671875}, {"start": 682.76, "end": 683.34, "word": " hotels", "probability": 0.49462890625}, {"start": 683.34, "end": 683.7, "word": " are", "probability": 0.67529296875}, {"start": 683.7, "end": 685.28, "word": " suitable", "probability": 0.8056640625}, {"start": 685.28, "end": 685.58, "word": " for", "probability": 0.552734375}, {"start": 685.58, "end": 687.06, "word": " the", "probability": 0.60888671875}, {"start": 687.06, "end": 687.3, "word": " flight", "probability": 0.410400390625}, {"start": 687.3, "end": 687.42, "word": " schedule", "probability": 0.3193359375}, {"start": 687.42, "end": 687.62, "word": " and", "probability": 0.599609375}, {"start": 687.62, "end": 687.96, "word": " choose", "probability": 0.5146484375}, {"start": 687.96, "end": 688.12, "word": " the", "probability": 0.919921875}, {"start": 688.12, "end": 688.32, "word": " best", "probability": 0.89306640625}, {"start": 688.32, "end": 688.82, "word": " hotel", "probability": 0.935546875}, {"start": 688.82, "end": 689.06, "word": " with", "probability": 0.64111328125}, {"start": 689.06, "end": 689.18, "word": " the", "probability": 0.90087890625}, {"start": 689.18, "end": 689.38, "word": " best", "probability": 0.9189453125}, {"start": 689.38, "end": 690.06, "word": " flight", "probability": 0.75537109375}, {"start": 690.06, "end": 690.06, "word": " trip,", "probability": 0.274658203125}, {"start": 690.76, "end": 690.82, "word": " for", "probability": 0.75634765625}, {"start": 690.82, "end": 690.96, "word": " example,", "probability": 0.96337890625}, {"start": 691.08, "end": 691.12, "word": " and", "probability": 0.8828125}, {"start": 691.12, "end": 691.32, "word": " give", "probability": 0.6181640625}, {"start": 691.32, "end": 691.46, "word": " a", "probability": 0.5703125}, {"start": 691.46, "end": 691.84, "word": " recommendation", "probability": 0.73779296875}, {"start": 691.84, "end": 692.06, "word": " to", "probability": 0.8486328125}, {"start": 692.06, "end": 692.14, "word": " the", "probability": 0.9013671875}, {"start": 692.14, "end": 692.52, "word": " user.", "probability": 0.77392578125}, {"start": 692.74, "end": 692.84, "word": " This", "probability": 0.73291015625}, {"start": 692.84, "end": 692.94, "word": " is", "probability": 0.92578125}, {"start": 692.94, "end": 692.94, "word": " an", "probability": 0.8603515625}, {"start": 692.94, "end": 692.94, "word": " additional", "probability": 0.7734375}, {"start": 692.94, "end": 693.5, "word": " process.", "probability": 0.9404296875}], "temperature": 1.0}, {"id": 31, "seek": 71976, "start": 695.62, "end": 719.76, "text": "Instead of using this library, I can provide it with a class called travelFacade Which is inside it, I use the hotel and the flight tomorrow And I provided it with a method called getFlightsAndHotels It takes the data from 1 to 2 If it is inside this method", "tokens": [28411, 2056, 295, 1228, 341, 6405, 11, 286, 393, 2893, 309, 365, 257, 1508, 1219, 3147, 37, 326, 762, 3013, 307, 1854, 309, 11, 286, 764, 264, 7622, 293, 264, 7018, 2916, 47385, 86, 400, 286, 5649, 309, 365, 257, 3170, 1219, 483, 37, 20827, 5289, 39, 310, 1625, 467, 2516, 264, 1412, 490, 502, 281, 568, 759, 309, 307, 1854, 341, 3170], "avg_logprob": -0.6640624897554517, "compression_ratio": 1.5389221556886228, "no_speech_prob": 0.0, "words": [{"start": 695.62, "end": 695.98, "word": "Instead", "probability": 0.59051513671875}, {"start": 695.98, "end": 696.04, "word": " of", "probability": 0.96240234375}, {"start": 696.04, "end": 696.42, "word": " using", "probability": 0.1146240234375}, {"start": 696.42, "end": 698.44, "word": " this", "probability": 0.32470703125}, {"start": 698.44, "end": 698.84, "word": " library,", "probability": 0.4580078125}, {"start": 699.32, "end": 699.96, "word": " I", "probability": 0.6884765625}, {"start": 699.96, "end": 700.14, "word": " can", "probability": 0.67822265625}, {"start": 700.14, "end": 700.52, "word": " provide", "probability": 0.5419921875}, {"start": 700.52, "end": 700.74, "word": " it", "probability": 0.3193359375}, {"start": 700.74, "end": 700.82, "word": " with", "probability": 0.59814453125}, {"start": 700.82, "end": 700.88, "word": " a", "probability": 0.736328125}, {"start": 700.88, "end": 701.34, "word": " class", "probability": 0.81298828125}, {"start": 701.34, "end": 701.76, "word": " called", "probability": 0.419189453125}, {"start": 701.76, "end": 703.74, "word": " travelFacade", "probability": 0.5770263671875}, {"start": 703.74, "end": 704.84, "word": " Which", "probability": 0.09698486328125}, {"start": 704.84, "end": 705.04, "word": " is", "probability": 0.32470703125}, {"start": 705.04, "end": 705.46, "word": " inside", "probability": 0.2020263671875}, {"start": 705.46, "end": 705.9, "word": " it,", "probability": 0.447998046875}, {"start": 706.54, "end": 706.84, "word": " I", "probability": 0.74658203125}, {"start": 706.84, "end": 707.22, "word": " use", "probability": 0.5849609375}, {"start": 707.22, "end": 707.38, "word": " the", "probability": 0.43359375}, {"start": 707.38, "end": 707.62, "word": " hotel", "probability": 0.62060546875}, {"start": 707.62, "end": 708.02, "word": " and", "probability": 0.416748046875}, {"start": 708.02, "end": 708.14, "word": " the", "probability": 0.314697265625}, {"start": 708.14, "end": 708.52, "word": " flight", "probability": 0.8037109375}, {"start": 708.52, "end": 709.36, "word": " tomorrow", "probability": 0.55120849609375}, {"start": 709.36, "end": 710.06, "word": " And", "probability": 0.41845703125}, {"start": 710.06, "end": 710.16, "word": " I", "probability": 0.79931640625}, {"start": 710.16, "end": 710.44, "word": " provided", "probability": 0.49609375}, {"start": 710.44, "end": 710.64, "word": " it", "probability": 0.6357421875}, {"start": 710.64, "end": 710.64, "word": " with", "probability": 0.71728515625}, {"start": 710.64, "end": 710.64, "word": " a", "probability": 0.85107421875}, {"start": 710.64, "end": 710.86, "word": " method", "probability": 0.96142578125}, {"start": 710.86, "end": 711.3, "word": " called", "probability": 0.7978515625}, {"start": 711.3, "end": 714.7, "word": " getFlightsAndHotels", "probability": 0.8318219866071429}, {"start": 714.7, "end": 715.66, "word": " It", "probability": 0.227294921875}, {"start": 715.66, "end": 715.88, "word": " takes", "probability": 0.65576171875}, {"start": 715.88, "end": 716.04, "word": " the", "probability": 0.63525390625}, {"start": 716.04, "end": 716.26, "word": " data", "probability": 0.7890625}, {"start": 716.26, "end": 716.52, "word": " from", "probability": 0.8857421875}, {"start": 716.52, "end": 717.4, "word": " 1", "probability": 0.1259765625}, {"start": 717.4, "end": 717.48, "word": " to", "probability": 0.92529296875}, {"start": 717.48, "end": 717.72, "word": " 2", "probability": 0.9853515625}, {"start": 717.72, "end": 718.22, "word": " If", "probability": 0.1650390625}, {"start": 718.22, "end": 718.44, "word": " it", "probability": 0.2208251953125}, {"start": 718.44, "end": 718.44, "word": " is", "probability": 0.50537109375}, {"start": 718.44, "end": 718.82, "word": " inside", "probability": 0.26513671875}, {"start": 718.82, "end": 719.42, "word": " this", "probability": 0.87548828125}, {"start": 719.42, "end": 719.76, "word": " method", "probability": 0.95068359375}], "temperature": 1.0}, {"id": 32, "seek": 74704, "start": 721.3, "end": 747.04, "text": " I use the flight booker to search for flights. This means that this person used the hotel booker and used the flight booker. He searched for hotels, searched for flights, made a matching between them and found the best one and returned the result. This is just a simplification. Okay? And as I said, this is an easy thing, simple and correct, but unfortunately many developers do not do it. One of the existing problems", "tokens": [286, 764, 264, 7018, 1446, 260, 281, 3164, 337, 21089, 13, 639, 1355, 300, 341, 954, 1143, 264, 7622, 1446, 260, 293, 1143, 264, 7018, 1446, 260, 13, 634, 22961, 337, 22718, 11, 22961, 337, 21089, 11, 1027, 257, 14324, 1296, 552, 293, 1352, 264, 1151, 472, 293, 8752, 264, 1874, 13, 639, 307, 445, 257, 6883, 3774, 13, 1033, 30, 400, 382, 286, 848, 11, 341, 307, 364, 1858, 551, 11, 2199, 293, 3006, 11, 457, 7015, 867, 8849, 360, 406, 360, 309, 13, 1485, 295, 264, 6741, 2740], "avg_logprob": -0.4800824313373356, "compression_ratio": 1.7427385892116183, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 721.3, "end": 721.54, "word": " I", "probability": 0.45166015625}, {"start": 721.54, "end": 721.92, "word": " use", "probability": 0.54345703125}, {"start": 721.92, "end": 722.12, "word": " the", "probability": 0.57275390625}, {"start": 722.12, "end": 722.36, "word": " flight", "probability": 0.6865234375}, {"start": 722.36, "end": 722.66, "word": " booker", "probability": 0.7626953125}, {"start": 722.66, "end": 722.84, "word": " to", "probability": 0.88916015625}, {"start": 722.84, "end": 723.12, "word": " search", "probability": 0.587890625}, {"start": 723.12, "end": 723.26, "word": " for", "probability": 0.73388671875}, {"start": 723.26, "end": 723.72, "word": " flights.", "probability": 0.7353515625}, {"start": 724.14, "end": 724.32, "word": " This", "probability": 0.2008056640625}, {"start": 724.32, "end": 724.32, "word": " means", "probability": 0.55419921875}, {"start": 724.32, "end": 724.38, "word": " that", "probability": 0.488525390625}, {"start": 724.38, "end": 724.76, "word": " this", "probability": 0.428466796875}, {"start": 724.76, "end": 725.16, "word": " person", "probability": 0.403564453125}, {"start": 725.16, "end": 725.74, "word": " used", "probability": 0.59765625}, {"start": 725.74, "end": 726.9, "word": " the", "probability": 0.70849609375}, {"start": 726.9, "end": 727.18, "word": " hotel", "probability": 0.45751953125}, {"start": 727.18, "end": 727.5, "word": " booker", "probability": 0.927490234375}, {"start": 727.5, "end": 727.56, "word": " and", "probability": 0.77197265625}, {"start": 727.56, "end": 728.1, "word": " used", "probability": 0.436767578125}, {"start": 728.1, "end": 728.84, "word": " the", "probability": 0.880859375}, {"start": 728.84, "end": 729.04, "word": " flight", "probability": 0.8076171875}, {"start": 729.04, "end": 729.42, "word": " booker.", "probability": 0.941650390625}, {"start": 729.48, "end": 729.76, "word": " He", "probability": 0.6435546875}, {"start": 729.76, "end": 729.96, "word": " searched", "probability": 0.892578125}, {"start": 729.96, "end": 730.14, "word": " for", "probability": 0.5576171875}, {"start": 730.14, "end": 730.5, "word": " hotels,", "probability": 0.96533203125}, {"start": 730.72, "end": 730.94, "word": " searched", "probability": 0.71826171875}, {"start": 730.94, "end": 731.16, "word": " for", "probability": 0.94873046875}, {"start": 731.16, "end": 731.5, "word": " flights,", "probability": 0.9169921875}, {"start": 731.72, "end": 732.34, "word": " made", "probability": 0.15185546875}, {"start": 732.34, "end": 732.46, "word": " a", "probability": 0.83447265625}, {"start": 732.46, "end": 732.74, "word": " matching", "probability": 0.8583984375}, {"start": 732.74, "end": 732.92, "word": " between", "probability": 0.71923828125}, {"start": 732.92, "end": 733.0, "word": " them", "probability": 0.84228515625}, {"start": 733.0, "end": 733.1, "word": " and", "probability": 0.599609375}, {"start": 733.1, "end": 733.24, "word": " found", "probability": 0.2103271484375}, {"start": 733.24, "end": 733.46, "word": " the", "probability": 0.564453125}, {"start": 733.46, "end": 733.8, "word": " best", "probability": 0.76513671875}, {"start": 733.8, "end": 733.8, "word": " one", "probability": 0.564453125}, {"start": 733.8, "end": 734.34, "word": " and", "probability": 0.396728515625}, {"start": 734.34, "end": 734.62, "word": " returned", "probability": 0.466796875}, {"start": 734.62, "end": 735.44, "word": " the", "probability": 0.61669921875}, {"start": 735.44, "end": 735.76, "word": " result.", "probability": 0.43994140625}, {"start": 736.92, "end": 737.4, "word": " This", "probability": 0.58251953125}, {"start": 737.4, "end": 737.52, "word": " is", "probability": 0.87548828125}, {"start": 737.52, "end": 737.82, "word": " just", "probability": 0.57275390625}, {"start": 737.82, "end": 737.96, "word": " a", "probability": 0.4716796875}, {"start": 737.96, "end": 739.1, "word": " simplification.", "probability": 0.6751708984375}, {"start": 739.28, "end": 739.42, "word": " Okay?", "probability": 0.2242431640625}, {"start": 740.2, "end": 740.32, "word": " And", "probability": 0.4765625}, {"start": 740.32, "end": 740.4, "word": " as", "probability": 0.71728515625}, {"start": 740.4, "end": 740.56, "word": " I", "probability": 0.59326171875}, {"start": 740.56, "end": 740.66, "word": " said,", "probability": 0.84814453125}, {"start": 740.78, "end": 740.9, "word": " this", "probability": 0.82568359375}, {"start": 740.9, "end": 741.02, "word": " is", "probability": 0.923828125}, {"start": 741.02, "end": 741.24, "word": " an", "probability": 0.440185546875}, {"start": 741.24, "end": 741.5, "word": " easy", "probability": 0.890625}, {"start": 741.5, "end": 741.56, "word": " thing,", "probability": 0.27587890625}, {"start": 741.72, "end": 741.96, "word": " simple", "probability": 0.65966796875}, {"start": 741.96, "end": 742.2, "word": " and", "probability": 0.60302734375}, {"start": 742.2, "end": 742.34, "word": " correct,", "probability": 0.66259765625}, {"start": 742.56, "end": 742.72, "word": " but", "probability": 0.880859375}, {"start": 742.72, "end": 743.08, "word": " unfortunately", "probability": 0.9189453125}, {"start": 743.08, "end": 743.42, "word": " many", "probability": 0.459228515625}, {"start": 743.42, "end": 744.2, "word": " developers", "probability": 0.7822265625}, {"start": 744.2, "end": 744.76, "word": " do", "probability": 0.509765625}, {"start": 744.76, "end": 744.76, "word": " not", "probability": 0.939453125}, {"start": 744.76, "end": 744.96, "word": " do", "probability": 0.890625}, {"start": 744.96, "end": 745.24, "word": " it.", "probability": 0.69970703125}, {"start": 745.66, "end": 746.14, "word": " One", "probability": 0.60595703125}, {"start": 746.14, "end": 746.24, "word": " of", "probability": 0.96630859375}, {"start": 746.24, "end": 746.36, "word": " the", "probability": 0.9150390625}, {"start": 746.36, "end": 747.04, "word": " existing", "probability": 0.7294921875}, {"start": 747.04, "end": 747.04, "word": " problems", "probability": 0.8134765625}], "temperature": 1.0}, {"id": 33, "seek": 77170, "start": 748.56, "end": 771.7, "text": "Why do we always find that the developer thinks about how he sees the code and does not think about how others see the code, so his design turns out to be bad because he does not think about others. In writing, when a student writes a report or a final report for a graduation project, you will find that he writes without thinking about the reader, okay? He is the rabbit that he writes to understand it.", "tokens": [8429, 360, 321, 1009, 915, 300, 264, 10754, 7309, 466, 577, 415, 8194, 264, 3089, 293, 775, 406, 519, 466, 577, 2357, 536, 264, 3089, 11, 370, 702, 1715, 4523, 484, 281, 312, 1578, 570, 415, 775, 406, 519, 466, 2357, 13, 682, 3579, 11, 562, 257, 3107, 13657, 257, 2275, 420, 257, 2572, 2275, 337, 257, 15652, 1716, 11, 291, 486, 915, 300, 415, 13657, 1553, 1953, 466, 264, 15149, 11, 1392, 30, 634, 307, 264, 19509, 300, 415, 13657, 281, 1223, 309, 13], "avg_logprob": -0.4760174539893173, "compression_ratio": 1.7920353982300885, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 748.5600000000001, "end": 748.96, "word": "Why", "probability": 0.2232666015625}, {"start": 748.96, "end": 749.26, "word": " do", "probability": 0.1915283203125}, {"start": 749.26, "end": 749.26, "word": " we", "probability": 0.66845703125}, {"start": 749.26, "end": 751.02, "word": " always", "probability": 0.328369140625}, {"start": 751.02, "end": 752.18, "word": " find", "probability": 0.53515625}, {"start": 752.18, "end": 752.54, "word": " that", "probability": 0.297607421875}, {"start": 752.54, "end": 752.6, "word": " the", "probability": 0.63232421875}, {"start": 752.6, "end": 753.08, "word": " developer", "probability": 0.82470703125}, {"start": 753.08, "end": 754.18, "word": " thinks", "probability": 0.697265625}, {"start": 754.18, "end": 754.9, "word": " about", "probability": 0.354248046875}, {"start": 754.9, "end": 754.9, "word": " how", "probability": 0.7998046875}, {"start": 754.9, "end": 755.12, "word": " he", "probability": 0.57861328125}, {"start": 755.12, "end": 755.34, "word": " sees", "probability": 0.76611328125}, {"start": 755.34, "end": 755.48, "word": " the", "probability": 0.8486328125}, {"start": 755.48, "end": 755.64, "word": " code", "probability": 0.92626953125}, {"start": 755.64, "end": 755.74, "word": " and", "probability": 0.40771484375}, {"start": 755.74, "end": 755.78, "word": " does", "probability": 0.352294921875}, {"start": 755.78, "end": 755.78, "word": " not", "probability": 0.9189453125}, {"start": 755.78, "end": 756.04, "word": " think", "probability": 0.8623046875}, {"start": 756.04, "end": 756.32, "word": " about", "probability": 0.6552734375}, {"start": 756.32, "end": 756.42, "word": " how", "probability": 0.640625}, {"start": 756.42, "end": 756.42, "word": " others", "probability": 0.64599609375}, {"start": 756.42, "end": 757.34, "word": " see", "probability": 0.52197265625}, {"start": 757.34, "end": 757.52, "word": " the", "probability": 0.640625}, {"start": 757.52, "end": 757.7, "word": " code,", "probability": 0.943359375}, {"start": 757.78, "end": 757.84, "word": " so", "probability": 0.42919921875}, {"start": 757.84, "end": 758.16, "word": " his", "probability": 0.52490234375}, {"start": 758.16, "end": 758.56, "word": " design", "probability": 0.93115234375}, {"start": 758.56, "end": 758.74, "word": " turns", "probability": 0.357666015625}, {"start": 758.74, "end": 758.78, "word": " out", "probability": 0.80712890625}, {"start": 758.78, "end": 758.84, "word": " to", "probability": 0.6259765625}, {"start": 758.84, "end": 758.84, "word": " be", "probability": 0.95458984375}, {"start": 758.84, "end": 759.06, "word": " bad", "probability": 0.87109375}, {"start": 759.06, "end": 759.74, "word": " because", "probability": 0.59033203125}, {"start": 759.74, "end": 759.82, "word": " he", "probability": 0.9404296875}, {"start": 759.82, "end": 759.86, "word": " does", "probability": 0.634765625}, {"start": 759.86, "end": 759.86, "word": " not", "probability": 0.9443359375}, {"start": 759.86, "end": 760.12, "word": " think", "probability": 0.86474609375}, {"start": 760.12, "end": 760.32, "word": " about", "probability": 0.57421875}, {"start": 760.32, "end": 760.52, "word": " others.", "probability": 0.65966796875}, {"start": 761.16, "end": 761.38, "word": " In", "probability": 0.72216796875}, {"start": 761.38, "end": 761.78, "word": " writing,", "probability": 0.84326171875}, {"start": 762.22, "end": 762.38, "word": " when", "probability": 0.9306640625}, {"start": 762.38, "end": 762.58, "word": " a", "probability": 0.7236328125}, {"start": 762.58, "end": 762.74, "word": " student", "probability": 0.95751953125}, {"start": 762.74, "end": 763.02, "word": " writes", "probability": 0.76025390625}, {"start": 763.02, "end": 763.44, "word": " a", "probability": 0.90185546875}, {"start": 763.44, "end": 763.76, "word": " report", "probability": 0.85986328125}, {"start": 763.76, "end": 763.92, "word": " or", "probability": 0.544921875}, {"start": 763.92, "end": 764.0, "word": " a", "probability": 0.334716796875}, {"start": 764.0, "end": 764.0, "word": " final", "probability": 0.56201171875}, {"start": 764.0, "end": 764.68, "word": " report", "probability": 0.93603515625}, {"start": 764.68, "end": 764.88, "word": " for", "probability": 0.56982421875}, {"start": 764.88, "end": 764.94, "word": " a", "probability": 0.54833984375}, {"start": 764.94, "end": 765.44, "word": " graduation", "probability": 0.4208984375}, {"start": 765.44, "end": 765.56, "word": " project,", "probability": 0.78173828125}, {"start": 766.36, "end": 766.64, "word": " you", "probability": 0.445068359375}, {"start": 766.64, "end": 766.74, "word": " will", "probability": 0.416259765625}, {"start": 766.74, "end": 766.86, "word": " find", "probability": 0.87890625}, {"start": 766.86, "end": 766.92, "word": " that", "probability": 0.78515625}, {"start": 766.92, "end": 766.98, "word": " he", "probability": 0.7548828125}, {"start": 766.98, "end": 767.18, "word": " writes", "probability": 0.80615234375}, {"start": 767.18, "end": 767.54, "word": " without", "probability": 0.8525390625}, {"start": 767.54, "end": 768.04, "word": " thinking", "probability": 0.833984375}, {"start": 768.04, "end": 768.16, "word": " about", "probability": 0.7314453125}, {"start": 768.16, "end": 768.3, "word": " the", "probability": 0.830078125}, {"start": 768.3, "end": 768.52, "word": " reader,", "probability": 0.91455078125}, {"start": 769.52, "end": 769.68, "word": " okay?", "probability": 0.59326171875}, {"start": 770.06, "end": 770.22, "word": " He", "probability": 0.50927734375}, {"start": 770.22, "end": 770.26, "word": " is", "probability": 0.73291015625}, {"start": 770.26, "end": 770.34, "word": " the", "probability": 0.83935546875}, {"start": 770.34, "end": 770.6, "word": " rabbit", "probability": 0.2425537109375}, {"start": 770.6, "end": 770.82, "word": " that", "probability": 0.67138671875}, {"start": 770.82, "end": 770.92, "word": " he", "probability": 0.7470703125}, {"start": 770.92, "end": 771.04, "word": " writes", "probability": 0.340576171875}, {"start": 771.04, "end": 771.36, "word": " to", "probability": 0.450927734375}, {"start": 771.36, "end": 771.5, "word": " understand", "probability": 0.68115234375}, {"start": 771.5, "end": 771.7, "word": " it.", "probability": 0.453125}], "temperature": 1.0}, {"id": 34, "seek": 79562, "start": 772.38, "end": 795.62, "text": "Okay, but when someone comes from abroad to read what he wrote, he doesn't understand anything, so his book turns out to be bad. The teacher doesn't explain well, why? Because he thinks that all people understand what he understood, so he says two words that he understood, but he doesn't put himself in the place of the student. A good teacher puts himself in the place of the student, he thinks about how the student thinks,", "tokens": [8297, 11, 457, 562, 1580, 1487, 490, 12637, 281, 1401, 437, 415, 4114, 11, 415, 1177, 380, 1223, 1340, 11, 370, 702, 1446, 4523, 484, 281, 312, 1578, 13, 440, 5027, 1177, 380, 2903, 731, 11, 983, 30, 1436, 415, 7309, 300, 439, 561, 1223, 437, 415, 7320, 11, 370, 415, 1619, 732, 2283, 300, 415, 7320, 11, 457, 415, 1177, 380, 829, 3647, 294, 264, 1081, 295, 264, 3107, 13, 316, 665, 5027, 8137, 3647, 294, 264, 1081, 295, 264, 3107, 11, 415, 7309, 466, 577, 264, 3107, 7309, 11], "avg_logprob": -0.4307065181758093, "compression_ratio": 1.8933333333333333, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 772.38, "end": 772.68, "word": "Okay,", "probability": 0.1451416015625}, {"start": 772.82, "end": 773.06, "word": " but", "probability": 0.82177734375}, {"start": 773.06, "end": 773.22, "word": " when", "probability": 0.77734375}, {"start": 773.22, "end": 773.6, "word": " someone", "probability": 0.5986328125}, {"start": 773.6, "end": 773.6, "word": " comes", "probability": 0.407470703125}, {"start": 773.6, "end": 773.72, "word": " from", "probability": 0.736328125}, {"start": 773.72, "end": 773.94, "word": " abroad", "probability": 0.498046875}, {"start": 773.94, "end": 774.04, "word": " to", "probability": 0.64404296875}, {"start": 774.04, "end": 774.26, "word": " read", "probability": 0.94091796875}, {"start": 774.26, "end": 774.46, "word": " what", "probability": 0.476318359375}, {"start": 774.46, "end": 774.54, "word": " he", "probability": 0.7197265625}, {"start": 774.54, "end": 774.78, "word": " wrote,", "probability": 0.7255859375}, {"start": 775.18, "end": 775.88, "word": " he", "probability": 0.7646484375}, {"start": 775.88, "end": 775.94, "word": " doesn't", "probability": 0.76708984375}, {"start": 775.94, "end": 776.12, "word": " understand", "probability": 0.75537109375}, {"start": 776.12, "end": 776.38, "word": " anything,", "probability": 0.64111328125}, {"start": 776.46, "end": 776.54, "word": " so", "probability": 0.576171875}, {"start": 776.54, "end": 776.8, "word": " his", "probability": 0.16552734375}, {"start": 776.8, "end": 777.04, "word": " book", "probability": 0.92431640625}, {"start": 777.04, "end": 777.12, "word": " turns", "probability": 0.320068359375}, {"start": 777.12, "end": 777.12, "word": " out", "probability": 0.787109375}, {"start": 777.12, "end": 777.18, "word": " to", "probability": 0.78369140625}, {"start": 777.18, "end": 777.94, "word": " be", "probability": 0.94580078125}, {"start": 777.94, "end": 778.24, "word": " bad.", "probability": 0.76318359375}, {"start": 779.3, "end": 779.78, "word": " The", "probability": 0.6396484375}, {"start": 779.78, "end": 780.12, "word": " teacher", "probability": 0.87060546875}, {"start": 780.12, "end": 780.4, "word": " doesn't", "probability": 0.7509765625}, {"start": 780.4, "end": 780.7, "word": " explain", "probability": 0.86376953125}, {"start": 780.7, "end": 781.12, "word": " well,", "probability": 0.541015625}, {"start": 781.18, "end": 781.52, "word": " why?", "probability": 0.8798828125}, {"start": 782.16, "end": 782.54, "word": " Because", "probability": 0.88330078125}, {"start": 782.54, "end": 783.6, "word": " he", "probability": 0.89013671875}, {"start": 783.6, "end": 783.88, "word": " thinks", "probability": 0.814453125}, {"start": 783.88, "end": 783.98, "word": " that", "probability": 0.41064453125}, {"start": 783.98, "end": 784.1, "word": " all", "probability": 0.432861328125}, {"start": 784.1, "end": 784.34, "word": " people", "probability": 0.61767578125}, {"start": 784.34, "end": 784.6, "word": " understand", "probability": 0.693359375}, {"start": 784.6, "end": 784.74, "word": " what", "probability": 0.92724609375}, {"start": 784.74, "end": 784.9, "word": " he", "probability": 0.96044921875}, {"start": 784.9, "end": 785.14, "word": " understood,", "probability": 0.61376953125}, {"start": 785.96, "end": 786.4, "word": " so", "probability": 0.8095703125}, {"start": 786.4, "end": 786.5, "word": " he", "probability": 0.90673828125}, {"start": 786.5, "end": 786.66, "word": " says", "probability": 0.5166015625}, {"start": 786.66, "end": 787.12, "word": " two", "probability": 0.82275390625}, {"start": 787.12, "end": 787.12, "word": " words", "probability": 0.82666015625}, {"start": 787.12, "end": 787.22, "word": " that", "probability": 0.38330078125}, {"start": 787.22, "end": 787.32, "word": " he", "probability": 0.94970703125}, {"start": 787.32, "end": 787.58, "word": " understood,", "probability": 0.60546875}, {"start": 787.88, "end": 788.12, "word": " but", "probability": 0.90869140625}, {"start": 788.12, "end": 788.4, "word": " he", "probability": 0.61669921875}, {"start": 788.4, "end": 788.4, "word": " doesn't", "probability": 0.7294921875}, {"start": 788.4, "end": 788.66, "word": " put", "probability": 0.63720703125}, {"start": 788.66, "end": 789.06, "word": " himself", "probability": 0.8408203125}, {"start": 789.06, "end": 789.38, "word": " in", "probability": 0.869140625}, {"start": 789.38, "end": 789.46, "word": " the", "probability": 0.513671875}, {"start": 789.46, "end": 789.46, "word": " place", "probability": 0.425048828125}, {"start": 789.46, "end": 789.46, "word": " of", "probability": 0.9638671875}, {"start": 789.46, "end": 790.64, "word": " the", "probability": 0.34423828125}, {"start": 790.64, "end": 791.26, "word": " student.", "probability": 0.91015625}, {"start": 791.36, "end": 791.44, "word": " A", "probability": 0.4873046875}, {"start": 791.44, "end": 791.46, "word": " good", "probability": 0.90234375}, {"start": 791.46, "end": 791.84, "word": " teacher", "probability": 0.9482421875}, {"start": 791.84, "end": 792.36, "word": " puts", "probability": 0.70361328125}, {"start": 792.36, "end": 792.64, "word": " himself", "probability": 0.7939453125}, {"start": 792.64, "end": 792.86, "word": " in", "probability": 0.9384765625}, {"start": 792.86, "end": 793.08, "word": " the", "probability": 0.86376953125}, {"start": 793.08, "end": 793.08, "word": " place", "probability": 0.4638671875}, {"start": 793.08, "end": 793.78, "word": " of", "probability": 0.9697265625}, {"start": 793.78, "end": 793.94, "word": " the", "probability": 0.7578125}, {"start": 793.94, "end": 794.16, "word": " student,", "probability": 0.95361328125}, {"start": 794.28, "end": 794.32, "word": " he", "probability": 0.39599609375}, {"start": 794.32, "end": 794.58, "word": " thinks", "probability": 0.853515625}, {"start": 794.58, "end": 794.82, "word": " about", "probability": 0.4794921875}, {"start": 794.82, "end": 794.84, "word": " how", "probability": 0.80078125}, {"start": 794.84, "end": 795.04, "word": " the", "probability": 0.708984375}, {"start": 795.04, "end": 795.22, "word": " student", "probability": 0.953125}, {"start": 795.22, "end": 795.62, "word": " thinks,", "probability": 0.85107421875}], "temperature": 1.0}, {"id": 35, "seek": 81258, "start": 796.46, "end": 812.58, "text": "Okay? And he tries to answer the question, but he doesn't know what his answer is He thinks like his brain So this is the same idea, a good developer thinks about how the client or the other developer wants to use his time Another example", "tokens": [8297, 30, 400, 415, 9898, 281, 1867, 264, 1168, 11, 457, 415, 1177, 380, 458, 437, 702, 1867, 307, 634, 7309, 411, 702, 3567, 407, 341, 307, 264, 912, 1558, 11, 257, 665, 10754, 7309, 466, 577, 264, 6423, 420, 264, 661, 10754, 2738, 281, 764, 702, 565, 3996, 1365], "avg_logprob": -0.5477940919352513, "compression_ratio": 1.5256410256410255, "no_speech_prob": 1.7344951629638672e-05, "words": [{"start": 796.46, "end": 796.88, "word": "Okay?", "probability": 0.175048828125}, {"start": 797.38, "end": 797.58, "word": " And", "probability": 0.65625}, {"start": 797.58, "end": 797.72, "word": " he", "probability": 0.485595703125}, {"start": 797.72, "end": 797.98, "word": " tries", "probability": 0.455078125}, {"start": 797.98, "end": 798.14, "word": " to", "probability": 0.94677734375}, {"start": 798.14, "end": 798.32, "word": " answer", "probability": 0.8291015625}, {"start": 798.32, "end": 798.44, "word": " the", "probability": 0.327880859375}, {"start": 798.44, "end": 798.62, "word": " question,", "probability": 0.4541015625}, {"start": 798.7, "end": 798.74, "word": " but", "probability": 0.310546875}, {"start": 798.74, "end": 798.8, "word": " he", "probability": 0.42578125}, {"start": 798.8, "end": 798.8, "word": " doesn't", "probability": 0.7120361328125}, {"start": 798.8, "end": 799.0, "word": " know", "probability": 0.62158203125}, {"start": 799.0, "end": 799.1, "word": " what", "probability": 0.6298828125}, {"start": 799.1, "end": 799.14, "word": " his", "probability": 0.548828125}, {"start": 799.14, "end": 799.3, "word": " answer", "probability": 0.908203125}, {"start": 799.3, "end": 799.64, "word": " is", "probability": 0.64501953125}, {"start": 799.64, "end": 799.88, "word": " He", "probability": 0.187255859375}, {"start": 799.88, "end": 800.12, "word": " thinks", "probability": 0.6220703125}, {"start": 800.12, "end": 800.3, "word": " like", "probability": 0.402587890625}, {"start": 800.3, "end": 800.68, "word": " his", "probability": 0.2294921875}, {"start": 800.68, "end": 800.9, "word": " brain", "probability": 0.61181640625}, {"start": 800.9, "end": 801.9, "word": " So", "probability": 0.382080078125}, {"start": 801.9, "end": 802.28, "word": " this", "probability": 0.5947265625}, {"start": 802.28, "end": 802.34, "word": " is", "probability": 0.92236328125}, {"start": 802.34, "end": 802.54, "word": " the", "probability": 0.86572265625}, {"start": 802.54, "end": 802.54, "word": " same", "probability": 0.83447265625}, {"start": 802.54, "end": 802.8, "word": " idea,", "probability": 0.724609375}, {"start": 802.88, "end": 802.92, "word": " a", "probability": 0.58251953125}, {"start": 802.92, "end": 802.92, "word": " good", "probability": 0.9130859375}, {"start": 802.92, "end": 803.34, "word": " developer", "probability": 0.88818359375}, {"start": 803.34, "end": 803.92, "word": " thinks", "probability": 0.373291015625}, {"start": 803.92, "end": 804.42, "word": " about", "probability": 0.5625}, {"start": 804.42, "end": 804.44, "word": " how", "probability": 0.888671875}, {"start": 804.44, "end": 804.74, "word": " the", "probability": 0.5888671875}, {"start": 804.74, "end": 806.04, "word": " client", "probability": 0.7861328125}, {"start": 806.04, "end": 806.32, "word": " or", "probability": 0.8271484375}, {"start": 806.32, "end": 806.68, "word": " the", "probability": 0.45703125}, {"start": 806.68, "end": 806.7, "word": " other", "probability": 0.81103515625}, {"start": 806.7, "end": 807.16, "word": " developer", "probability": 0.87255859375}, {"start": 807.16, "end": 807.6, "word": " wants", "probability": 0.340576171875}, {"start": 807.6, "end": 807.68, "word": " to", "probability": 0.9697265625}, {"start": 807.68, "end": 807.92, "word": " use", "probability": 0.8779296875}, {"start": 807.92, "end": 808.06, "word": " his", "probability": 0.80859375}, {"start": 808.06, "end": 808.26, "word": " time", "probability": 0.26708984375}, {"start": 808.26, "end": 812.16, "word": " Another", "probability": 0.724609375}, {"start": 812.16, "end": 812.58, "word": " example", "probability": 0.9638671875}], "temperature": 1.0}, {"id": 36, "seek": 83315, "start": 814.23, "end": 833.15, "text": "Did you notice that I made a library to convert videos files? Did you notice that converting a video file has many steps? For example, a step to read a video file through a library or file called video file class. There is something called extraction of codec. There is something called compression codec.", "tokens": [17648, 291, 3449, 300, 286, 1027, 257, 6405, 281, 7620, 2145, 7098, 30, 2589, 291, 3449, 300, 29942, 257, 960, 3991, 575, 867, 4439, 30, 1171, 1365, 11, 257, 1823, 281, 1401, 257, 960, 3991, 807, 257, 6405, 420, 3991, 1219, 960, 3991, 1508, 13, 821, 307, 746, 1219, 30197, 295, 3089, 66, 13, 821, 307, 746, 1219, 19355, 3089, 66, 13], "avg_logprob": -0.5128968348578801, "compression_ratio": 1.8154761904761905, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 814.23, "end": 814.47, "word": "Did", "probability": 0.0511474609375}, {"start": 814.47, "end": 814.49, "word": " you", "probability": 0.92822265625}, {"start": 814.49, "end": 814.65, "word": " notice", "probability": 0.446533203125}, {"start": 814.65, "end": 814.71, "word": " that", "probability": 0.51123046875}, {"start": 814.71, "end": 814.81, "word": " I", "probability": 0.83740234375}, {"start": 814.81, "end": 815.37, "word": " made", "probability": 0.420654296875}, {"start": 815.37, "end": 815.49, "word": " a", "probability": 0.84375}, {"start": 815.49, "end": 815.79, "word": " library", "probability": 0.63916015625}, {"start": 815.79, "end": 816.37, "word": " to", "probability": 0.7216796875}, {"start": 816.37, "end": 816.73, "word": " convert", "probability": 0.354736328125}, {"start": 816.73, "end": 817.37, "word": " videos", "probability": 0.17919921875}, {"start": 817.37, "end": 817.81, "word": " files?", "probability": 0.57177734375}, {"start": 818.61, "end": 819.13, "word": " Did", "probability": 0.55859375}, {"start": 819.13, "end": 819.21, "word": " you", "probability": 0.97021484375}, {"start": 819.21, "end": 819.39, "word": " notice", "probability": 0.83056640625}, {"start": 819.39, "end": 819.75, "word": " that", "probability": 0.75341796875}, {"start": 819.75, "end": 820.05, "word": " converting", "probability": 0.43896484375}, {"start": 820.05, "end": 820.17, "word": " a", "probability": 0.2509765625}, {"start": 820.17, "end": 820.63, "word": " video", "probability": 0.81884765625}, {"start": 820.63, "end": 820.65, "word": " file", "probability": 0.86181640625}, {"start": 820.65, "end": 820.83, "word": " has", "probability": 0.66845703125}, {"start": 820.83, "end": 820.89, "word": " many", "probability": 0.638671875}, {"start": 820.89, "end": 821.31, "word": " steps?", "probability": 0.861328125}, {"start": 821.97, "end": 822.11, "word": " For", "probability": 0.7626953125}, {"start": 822.11, "end": 822.31, "word": " example,", "probability": 0.921875}, {"start": 822.39, "end": 822.45, "word": " a", "probability": 0.39599609375}, {"start": 822.45, "end": 822.61, "word": " step", "probability": 0.775390625}, {"start": 822.61, "end": 822.81, "word": " to", "probability": 0.8486328125}, {"start": 822.81, "end": 823.11, "word": " read", "probability": 0.9345703125}, {"start": 823.11, "end": 823.57, "word": " a", "probability": 0.60400390625}, {"start": 823.57, "end": 823.79, "word": " video", "probability": 0.83203125}, {"start": 823.79, "end": 823.91, "word": " file", "probability": 0.89208984375}, {"start": 823.91, "end": 824.27, "word": " through", "probability": 0.779296875}, {"start": 824.27, "end": 824.89, "word": " a", "probability": 0.88330078125}, {"start": 824.89, "end": 825.15, "word": " library", "probability": 0.8583984375}, {"start": 825.15, "end": 825.67, "word": " or", "probability": 0.42431640625}, {"start": 825.67, "end": 826.45, "word": " file", "probability": 0.456298828125}, {"start": 826.45, "end": 826.77, "word": " called", "probability": 0.3955078125}, {"start": 826.77, "end": 827.59, "word": " video", "probability": 0.1395263671875}, {"start": 827.59, "end": 828.01, "word": " file", "probability": 0.82275390625}, {"start": 828.01, "end": 828.01, "word": " class.", "probability": 0.65087890625}, {"start": 828.43, "end": 828.67, "word": " There", "probability": 0.54541015625}, {"start": 828.67, "end": 828.75, "word": " is", "probability": 0.7236328125}, {"start": 828.75, "end": 828.91, "word": " something", "probability": 0.5546875}, {"start": 828.91, "end": 829.15, "word": " called", "probability": 0.880859375}, {"start": 829.15, "end": 829.77, "word": " extraction", "probability": 0.49609375}, {"start": 829.77, "end": 829.97, "word": " of", "probability": 0.31103515625}, {"start": 829.97, "end": 830.41, "word": " codec.", "probability": 0.77685546875}, {"start": 831.01, "end": 831.27, "word": " There", "probability": 0.310791015625}, {"start": 831.27, "end": 831.41, "word": " is", "probability": 0.88134765625}, {"start": 831.41, "end": 831.59, "word": " something", "probability": 0.775390625}, {"start": 831.59, "end": 831.79, "word": " called", "probability": 0.51318359375}, {"start": 831.79, "end": 832.43, "word": " compression", "probability": 0.91015625}, {"start": 832.43, "end": 833.15, "word": " codec.", "probability": 0.977294921875}], "temperature": 1.0}, {"id": 37, "seek": 84841, "start": 833.67, "end": 848.41, "text": " And then he wants to create a buffer and create a read for the codec in the buffer And then he wants to create a convert and then he wants to create a fix and mix for the audio with the video These are all compression steps for the video Instead of letting the client know these steps", "tokens": [400, 550, 415, 2738, 281, 1884, 257, 21762, 293, 1884, 257, 1401, 337, 264, 3089, 66, 294, 264, 21762, 400, 550, 415, 2738, 281, 1884, 257, 7620, 293, 550, 415, 2738, 281, 1884, 257, 3191, 293, 2890, 337, 264, 6278, 365, 264, 960, 1981, 366, 439, 19355, 4439, 337, 264, 960, 7156, 295, 8295, 264, 6423, 458, 613, 4439], "avg_logprob": -0.39088541169961294, "compression_ratio": 1.912751677852349, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 833.67, "end": 833.81, "word": " And", "probability": 0.122314453125}, {"start": 833.81, "end": 834.07, "word": " then", "probability": 0.64208984375}, {"start": 834.07, "end": 834.17, "word": " he", "probability": 0.34619140625}, {"start": 834.17, "end": 834.35, "word": " wants", "probability": 0.099609375}, {"start": 834.35, "end": 834.55, "word": " to", "probability": 0.9609375}, {"start": 834.55, "end": 834.77, "word": " create", "probability": 0.42919921875}, {"start": 834.77, "end": 834.87, "word": " a", "probability": 0.76953125}, {"start": 834.87, "end": 835.09, "word": " buffer", "probability": 0.73583984375}, {"start": 835.09, "end": 835.23, "word": " and", "probability": 0.7216796875}, {"start": 835.23, "end": 835.43, "word": " create", "probability": 0.1689453125}, {"start": 835.43, "end": 835.51, "word": " a", "probability": 0.66015625}, {"start": 835.51, "end": 835.65, "word": " read", "probability": 0.61279296875}, {"start": 835.65, "end": 835.81, "word": " for", "probability": 0.62744140625}, {"start": 835.81, "end": 836.25, "word": " the", "probability": 0.65771484375}, {"start": 836.25, "end": 836.65, "word": " codec", "probability": 0.843994140625}, {"start": 836.65, "end": 836.77, "word": " in", "probability": 0.73828125}, {"start": 836.77, "end": 837.15, "word": " the", "probability": 0.85546875}, {"start": 837.15, "end": 837.51, "word": " buffer", "probability": 0.8388671875}, {"start": 837.51, "end": 837.97, "word": " And", "probability": 0.45068359375}, {"start": 837.97, "end": 838.25, "word": " then", "probability": 0.8310546875}, {"start": 838.25, "end": 838.37, "word": " he", "probability": 0.826171875}, {"start": 838.37, "end": 838.47, "word": " wants", "probability": 0.77001953125}, {"start": 838.47, "end": 838.55, "word": " to", "probability": 0.96875}, {"start": 838.55, "end": 838.67, "word": " create", "probability": 0.466064453125}, {"start": 838.67, "end": 838.79, "word": " a", "probability": 0.869140625}, {"start": 838.79, "end": 839.11, "word": " convert", "probability": 0.8876953125}, {"start": 839.11, "end": 839.43, "word": " and", "probability": 0.4384765625}, {"start": 839.43, "end": 839.63, "word": " then", "probability": 0.59326171875}, {"start": 839.63, "end": 839.67, "word": " he", "probability": 0.67626953125}, {"start": 839.67, "end": 839.81, "word": " wants", "probability": 0.78857421875}, {"start": 839.81, "end": 839.89, "word": " to", "probability": 0.962890625}, {"start": 839.89, "end": 840.15, "word": " create", "probability": 0.7314453125}, {"start": 840.15, "end": 840.61, "word": " a", "probability": 0.80712890625}, {"start": 840.61, "end": 840.85, "word": " fix", "probability": 0.76708984375}, {"start": 840.85, "end": 841.03, "word": " and", "probability": 0.89208984375}, {"start": 841.03, "end": 841.27, "word": " mix", "probability": 0.76318359375}, {"start": 841.27, "end": 841.45, "word": " for", "probability": 0.87158203125}, {"start": 841.45, "end": 841.55, "word": " the", "probability": 0.60205078125}, {"start": 841.55, "end": 841.89, "word": " audio", "probability": 0.9716796875}, {"start": 841.89, "end": 842.13, "word": " with", "probability": 0.7236328125}, {"start": 842.13, "end": 842.77, "word": " the", "probability": 0.888671875}, {"start": 842.77, "end": 843.19, "word": " video", "probability": 0.875}, {"start": 843.19, "end": 843.95, "word": " These", "probability": 0.6318359375}, {"start": 843.95, "end": 844.13, "word": " are", "probability": 0.89111328125}, {"start": 844.13, "end": 844.21, "word": " all", "probability": 0.9248046875}, {"start": 844.21, "end": 845.25, "word": " compression", "probability": 0.80224609375}, {"start": 845.25, "end": 845.37, "word": " steps", "probability": 0.69140625}, {"start": 845.37, "end": 845.49, "word": " for", "probability": 0.875}, {"start": 845.49, "end": 845.53, "word": " the", "probability": 0.52197265625}, {"start": 845.53, "end": 845.81, "word": " video", "probability": 0.86767578125}, {"start": 845.81, "end": 846.17, "word": " Instead", "probability": 0.447021484375}, {"start": 846.17, "end": 846.35, "word": " of", "probability": 0.96240234375}, {"start": 846.35, "end": 846.53, "word": " letting", "probability": 0.7607421875}, {"start": 846.53, "end": 846.67, "word": " the", "probability": 0.8779296875}, {"start": 846.67, "end": 847.09, "word": " client", "probability": 0.89306640625}, {"start": 847.09, "end": 847.87, "word": " know", "probability": 0.77685546875}, {"start": 847.87, "end": 848.01, "word": " these", "probability": 0.673828125}, {"start": 848.01, "end": 848.41, "word": " steps", "probability": 0.83154296875}], "temperature": 1.0}, {"id": 38, "seek": 86493, "start": 849.37, "end": 864.93, "text": " I provided him with one page called convert video and I asked him to send me the file and the format that he wanted and I hid all these details in the convert video so whoever wants to convert to any file just need to claim", "tokens": [286, 5649, 796, 365, 472, 3028, 1219, 7620, 960, 293, 286, 2351, 796, 281, 2845, 385, 264, 3991, 293, 264, 7877, 300, 415, 1415, 293, 286, 16253, 439, 613, 4365, 294, 264, 7620, 960, 370, 11387, 2738, 281, 7620, 281, 604, 3991, 445, 643, 281, 3932], "avg_logprob": -0.7313829939416114, "compression_ratio": 1.635036496350365, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 849.37, "end": 849.55, "word": " I", "probability": 0.346435546875}, {"start": 849.55, "end": 849.85, "word": " provided", "probability": 0.283203125}, {"start": 849.85, "end": 850.07, "word": " him", "probability": 0.6884765625}, {"start": 850.07, "end": 850.15, "word": " with", "probability": 0.449462890625}, {"start": 850.15, "end": 850.15, "word": " one", "probability": 0.319580078125}, {"start": 850.15, "end": 850.47, "word": " page", "probability": 0.7421875}, {"start": 850.47, "end": 851.01, "word": " called", "probability": 0.1611328125}, {"start": 851.01, "end": 852.27, "word": " convert", "probability": 0.59619140625}, {"start": 852.27, "end": 852.73, "word": " video", "probability": 0.79541015625}, {"start": 852.73, "end": 853.25, "word": " and", "probability": 0.2174072265625}, {"start": 853.25, "end": 853.27, "word": " I", "probability": 0.4296875}, {"start": 853.27, "end": 853.55, "word": " asked", "probability": 0.27392578125}, {"start": 853.55, "end": 854.27, "word": " him", "probability": 0.87939453125}, {"start": 854.27, "end": 854.53, "word": " to", "probability": 0.9033203125}, {"start": 854.53, "end": 854.77, "word": " send", "probability": 0.63134765625}, {"start": 854.77, "end": 855.09, "word": " me", "probability": 0.83740234375}, {"start": 855.09, "end": 855.53, "word": " the", "probability": 0.53173828125}, {"start": 855.53, "end": 855.83, "word": " file", "probability": 0.76123046875}, {"start": 855.83, "end": 856.45, "word": " and", "probability": 0.452880859375}, {"start": 856.45, "end": 856.67, "word": " the", "probability": 0.412109375}, {"start": 856.67, "end": 857.03, "word": " format", "probability": 0.58740234375}, {"start": 857.03, "end": 857.11, "word": " that", "probability": 0.251953125}, {"start": 857.11, "end": 857.15, "word": " he", "probability": 0.775390625}, {"start": 857.15, "end": 857.47, "word": " wanted", "probability": 0.495361328125}, {"start": 857.47, "end": 858.07, "word": " and", "probability": 0.315673828125}, {"start": 858.07, "end": 858.21, "word": " I", "probability": 0.264892578125}, {"start": 858.21, "end": 858.21, "word": " hid", "probability": 0.467041015625}, {"start": 858.21, "end": 858.21, "word": " all", "probability": 0.66796875}, {"start": 858.21, "end": 859.17, "word": " these", "probability": 0.4150390625}, {"start": 859.17, "end": 859.65, "word": " details", "probability": 0.352783203125}, {"start": 859.65, "end": 861.17, "word": " in", "probability": 0.45703125}, {"start": 861.17, "end": 861.45, "word": " the", "probability": 0.58349609375}, {"start": 861.45, "end": 861.73, "word": " convert", "probability": 0.724609375}, {"start": 861.73, "end": 862.17, "word": " video", "probability": 0.8779296875}, {"start": 862.17, "end": 862.67, "word": " so", "probability": 0.216552734375}, {"start": 862.67, "end": 862.77, "word": " whoever", "probability": 0.37109375}, {"start": 862.77, "end": 862.93, "word": " wants", "probability": 0.75439453125}, {"start": 862.93, "end": 863.21, "word": " to", "probability": 0.96337890625}, {"start": 863.21, "end": 863.45, "word": " convert", "probability": 0.76806640625}, {"start": 863.45, "end": 863.67, "word": " to", "probability": 0.30810546875}, {"start": 863.67, "end": 863.83, "word": " any", "probability": 0.79052734375}, {"start": 863.83, "end": 864.11, "word": " file", "probability": 0.755859375}, {"start": 864.11, "end": 864.45, "word": " just", "probability": 0.34521484375}, {"start": 864.45, "end": 864.63, "word": " need", "probability": 0.134033203125}, {"start": 864.63, "end": 864.63, "word": " to", "probability": 0.95654296875}, {"start": 864.63, "end": 864.93, "word": " claim", "probability": 0.426025390625}], "temperature": 1.0}, {"id": 39, "seek": 89443, "start": 865.65, "end": 894.43, "text": " This method is called ConvertVideo. This class is called Video Conversion Facet. It is a interface that uses the internal component of the system. The client uses it without having to know the partial details. This is how it is used. It creates a Video Conversion Facet and uses ConvertVideo without knowing the details. The advantage of this facet is that it provides a unified interface.", "tokens": [639, 3170, 307, 1219, 2656, 3281, 46287, 13, 639, 1508, 307, 1219, 9777, 2656, 29153, 17667, 302, 13, 467, 307, 257, 9226, 300, 4960, 264, 6920, 6542, 295, 264, 1185, 13, 440, 6423, 4960, 309, 1553, 1419, 281, 458, 264, 14641, 4365, 13, 639, 307, 577, 309, 307, 1143, 13, 467, 7829, 257, 9777, 2656, 29153, 17667, 302, 293, 4960, 2656, 3281, 46287, 1553, 5276, 264, 4365, 13, 440, 5002, 295, 341, 1915, 302, 307, 300, 309, 6417, 257, 26787, 9226, 13], "avg_logprob": -0.5116717140358614, "compression_ratio": 1.8571428571428572, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 865.65, "end": 865.83, "word": " This", "probability": 0.284912109375}, {"start": 865.83, "end": 866.15, "word": " method", "probability": 0.85009765625}, {"start": 866.15, "end": 866.61, "word": " is", "probability": 0.28369140625}, {"start": 866.61, "end": 866.69, "word": " called", "probability": 0.485107421875}, {"start": 866.69, "end": 867.21, "word": " ConvertVideo.", "probability": 0.531005859375}, {"start": 867.29, "end": 867.53, "word": " This", "probability": 0.388916015625}, {"start": 867.53, "end": 868.91, "word": " class", "probability": 0.4052734375}, {"start": 868.91, "end": 869.31, "word": " is", "probability": 0.54541015625}, {"start": 869.31, "end": 869.51, "word": " called", "probability": 0.697265625}, {"start": 869.51, "end": 869.89, "word": " Video", "probability": 0.6240234375}, {"start": 869.89, "end": 870.47, "word": " Conversion", "probability": 0.8759765625}, {"start": 870.47, "end": 870.91, "word": " Facet.", "probability": 0.6990966796875}, {"start": 871.25, "end": 871.55, "word": " It", "probability": 0.6904296875}, {"start": 871.55, "end": 871.69, "word": " is", "probability": 0.63525390625}, {"start": 871.69, "end": 871.83, "word": " a", "probability": 0.79833984375}, {"start": 871.83, "end": 872.25, "word": " interface", "probability": 0.2529296875}, {"start": 872.25, "end": 872.87, "word": " that", "probability": 0.68701171875}, {"start": 872.87, "end": 873.25, "word": " uses", "probability": 0.72021484375}, {"start": 873.25, "end": 873.65, "word": " the", "probability": 0.7705078125}, {"start": 873.65, "end": 873.99, "word": " internal", "probability": 0.7734375}, {"start": 873.99, "end": 874.45, "word": " component", "probability": 0.476806640625}, {"start": 874.45, "end": 874.89, "word": " of", "probability": 0.90966796875}, {"start": 874.89, "end": 874.95, "word": " the", "probability": 0.87646484375}, {"start": 874.95, "end": 875.35, "word": " system.", "probability": 0.93798828125}, {"start": 876.15, "end": 876.25, "word": " The", "probability": 0.39306640625}, {"start": 876.25, "end": 876.53, "word": " client", "probability": 0.796875}, {"start": 876.53, "end": 876.89, "word": " uses", "probability": 0.5224609375}, {"start": 876.89, "end": 877.03, "word": " it", "probability": 0.76025390625}, {"start": 877.03, "end": 877.39, "word": " without", "probability": 0.48828125}, {"start": 877.39, "end": 877.95, "word": " having", "probability": 0.391845703125}, {"start": 877.95, "end": 878.01, "word": " to", "probability": 0.962890625}, {"start": 878.01, "end": 878.33, "word": " know", "probability": 0.81494140625}, {"start": 878.33, "end": 878.87, "word": " the", "probability": 0.708984375}, {"start": 878.87, "end": 878.87, "word": " partial", "probability": 0.55712890625}, {"start": 878.87, "end": 879.43, "word": " details.", "probability": 0.87255859375}, {"start": 880.71, "end": 881.17, "word": " This", "probability": 0.313720703125}, {"start": 881.17, "end": 881.17, "word": " is", "probability": 0.705078125}, {"start": 881.17, "end": 881.35, "word": " how", "probability": 0.44384765625}, {"start": 881.35, "end": 881.35, "word": " it", "probability": 0.60595703125}, {"start": 881.35, "end": 881.35, "word": " is", "probability": 0.415283203125}, {"start": 881.35, "end": 881.69, "word": " used.", "probability": 0.91748046875}, {"start": 881.97, "end": 882.11, "word": " It", "probability": 0.18115234375}, {"start": 882.11, "end": 882.27, "word": " creates", "probability": 0.60498046875}, {"start": 882.27, "end": 882.49, "word": " a", "probability": 0.90576171875}, {"start": 882.49, "end": 882.73, "word": " Video", "probability": 0.333984375}, {"start": 882.73, "end": 883.27, "word": " Conversion", "probability": 0.979736328125}, {"start": 883.27, "end": 883.71, "word": " Facet", "probability": 0.97607421875}, {"start": 883.71, "end": 883.83, "word": " and", "probability": 0.49169921875}, {"start": 883.83, "end": 884.11, "word": " uses", "probability": 0.165283203125}, {"start": 884.11, "end": 884.91, "word": " ConvertVideo", "probability": 0.710693359375}, {"start": 884.91, "end": 885.09, "word": " without", "probability": 0.76416015625}, {"start": 885.09, "end": 885.57, "word": " knowing", "probability": 0.56640625}, {"start": 885.57, "end": 886.23, "word": " the", "probability": 0.8232421875}, {"start": 886.23, "end": 886.53, "word": " details.", "probability": 0.8076171875}, {"start": 887.05, "end": 887.47, "word": " The", "probability": 0.5283203125}, {"start": 887.47, "end": 887.75, "word": " advantage", "probability": 0.376220703125}, {"start": 887.75, "end": 888.71, "word": " of", "probability": 0.68017578125}, {"start": 888.71, "end": 888.81, "word": " this", "probability": 0.48046875}, {"start": 888.81, "end": 889.15, "word": " facet", "probability": 0.5784912109375}, {"start": 889.15, "end": 889.81, "word": " is", "probability": 0.5498046875}, {"start": 889.81, "end": 889.97, "word": " that", "probability": 0.3291015625}, {"start": 889.97, "end": 889.99, "word": " it", "probability": 0.623046875}, {"start": 889.99, "end": 892.95, "word": " provides", "probability": 0.77880859375}, {"start": 892.95, "end": 893.21, "word": " a", "probability": 0.96875}, {"start": 893.21, "end": 893.55, "word": " unified", "probability": 0.966796875}, {"start": 893.55, "end": 894.43, "word": " interface.", "probability": 0.89306640625}], "temperature": 1.0}, {"id": 40, "seek": 92185, "start": 895.17, "end": 921.85, "text": " to a set of interfaces in a subsystem. Meaning that I have a subsystem with a number of faces or classes or modules. Instead of forcing the client or the developer to understand the internal interfaces and classes, I provided him with a unified interface, an external face that deals with it, and this external face is the one that communicates with the internal parts of the system. Corruption defines a higher level interface,", "tokens": [281, 257, 992, 295, 28416, 294, 257, 2090, 9321, 13, 19948, 300, 286, 362, 257, 2090, 9321, 365, 257, 1230, 295, 8475, 420, 5359, 420, 16679, 13, 7156, 295, 19030, 264, 6423, 420, 264, 10754, 281, 1223, 264, 6920, 28416, 293, 5359, 11, 286, 5649, 796, 365, 257, 26787, 9226, 11, 364, 8320, 1851, 300, 11215, 365, 309, 11, 293, 341, 8320, 1851, 307, 264, 472, 300, 3363, 1024, 365, 264, 6920, 3166, 295, 264, 1185, 13, 3925, 11266, 23122, 257, 2946, 1496, 9226, 11], "avg_logprob": -0.37209303053312526, "compression_ratio": 1.9066666666666667, "no_speech_prob": 2.1457672119140625e-06, "words": [{"start": 895.17, "end": 895.37, "word": " to", "probability": 0.71728515625}, {"start": 895.37, "end": 895.55, "word": " a", "probability": 0.9619140625}, {"start": 895.55, "end": 895.77, "word": " set", "probability": 0.96044921875}, {"start": 895.77, "end": 895.93, "word": " of", "probability": 0.96728515625}, {"start": 895.93, "end": 896.55, "word": " interfaces", "probability": 0.97412109375}, {"start": 896.55, "end": 896.79, "word": " in", "probability": 0.94140625}, {"start": 896.79, "end": 896.91, "word": " a", "probability": 0.984375}, {"start": 896.91, "end": 897.45, "word": " subsystem.", "probability": 0.8837890625}, {"start": 897.97, "end": 898.09, "word": " Meaning", "probability": 0.2264404296875}, {"start": 898.09, "end": 898.19, "word": " that", "probability": 0.5234375}, {"start": 898.19, "end": 898.19, "word": " I", "probability": 0.44287109375}, {"start": 898.19, "end": 898.31, "word": " have", "probability": 0.916015625}, {"start": 898.31, "end": 898.41, "word": " a", "probability": 0.8798828125}, {"start": 898.41, "end": 898.97, "word": " subsystem", "probability": 0.94287109375}, {"start": 898.97, "end": 899.73, "word": " with", "probability": 0.3427734375}, {"start": 899.73, "end": 899.81, "word": " a", "probability": 0.59716796875}, {"start": 899.81, "end": 900.03, "word": " number", "probability": 0.6591796875}, {"start": 900.03, "end": 900.27, "word": " of", "probability": 0.96630859375}, {"start": 900.27, "end": 900.63, "word": " faces", "probability": 0.277587890625}, {"start": 900.63, "end": 900.89, "word": " or", "probability": 0.5810546875}, {"start": 900.89, "end": 901.35, "word": " classes", "probability": 0.92431640625}, {"start": 901.35, "end": 901.53, "word": " or", "probability": 0.88916015625}, {"start": 901.53, "end": 901.93, "word": " modules.", "probability": 0.97705078125}, {"start": 903.37, "end": 903.75, "word": " Instead", "probability": 0.6875}, {"start": 903.75, "end": 903.87, "word": " of", "probability": 0.970703125}, {"start": 903.87, "end": 904.27, "word": " forcing", "probability": 0.09246826171875}, {"start": 904.27, "end": 904.43, "word": " the", "probability": 0.84619140625}, {"start": 904.43, "end": 904.79, "word": " client", "probability": 0.919921875}, {"start": 904.79, "end": 904.99, "word": " or", "probability": 0.88818359375}, {"start": 904.99, "end": 905.11, "word": " the", "probability": 0.35546875}, {"start": 905.11, "end": 905.49, "word": " developer", "probability": 0.875}, {"start": 905.49, "end": 905.85, "word": " to", "probability": 0.95458984375}, {"start": 905.85, "end": 906.19, "word": " understand", "probability": 0.70263671875}, {"start": 906.19, "end": 906.33, "word": " the", "probability": 0.8720703125}, {"start": 906.33, "end": 906.35, "word": " internal", "probability": 0.50732421875}, {"start": 906.35, "end": 906.85, "word": " interfaces", "probability": 0.943359375}, {"start": 906.85, "end": 907.55, "word": " and", "probability": 0.70751953125}, {"start": 907.55, "end": 907.99, "word": " classes,", "probability": 0.7255859375}, {"start": 908.15, "end": 908.19, "word": " I", "probability": 0.6982421875}, {"start": 908.19, "end": 908.51, "word": " provided", "probability": 0.7568359375}, {"start": 908.51, "end": 908.77, "word": " him", "probability": 0.609375}, {"start": 908.77, "end": 908.77, "word": " with", "probability": 0.69140625}, {"start": 908.77, "end": 908.81, "word": " a", "probability": 0.9296875}, {"start": 908.81, "end": 909.39, "word": " unified", "probability": 0.9619140625}, {"start": 909.39, "end": 910.67, "word": " interface,", "probability": 0.92236328125}, {"start": 910.81, "end": 911.19, "word": " an", "probability": 0.2998046875}, {"start": 911.19, "end": 911.71, "word": " external", "probability": 0.72802734375}, {"start": 911.71, "end": 911.81, "word": " face", "probability": 0.369140625}, {"start": 911.81, "end": 911.99, "word": " that", "probability": 0.466064453125}, {"start": 911.99, "end": 912.25, "word": " deals", "probability": 0.52734375}, {"start": 912.25, "end": 912.49, "word": " with", "probability": 0.9013671875}, {"start": 912.49, "end": 912.65, "word": " it,", "probability": 0.57421875}, {"start": 913.05, "end": 913.17, "word": " and", "probability": 0.8359375}, {"start": 913.17, "end": 913.41, "word": " this", "probability": 0.8212890625}, {"start": 913.41, "end": 914.03, "word": " external", "probability": 0.85400390625}, {"start": 914.03, "end": 914.03, "word": " face", "probability": 0.8671875}, {"start": 914.03, "end": 914.27, "word": " is", "probability": 0.66943359375}, {"start": 914.27, "end": 914.39, "word": " the", "probability": 0.51123046875}, {"start": 914.39, "end": 914.39, "word": " one", "probability": 0.8701171875}, {"start": 914.39, "end": 914.45, "word": " that", "probability": 0.7802734375}, {"start": 914.45, "end": 915.25, "word": " communicates", "probability": 0.681396484375}, {"start": 915.25, "end": 916.23, "word": " with", "probability": 0.88330078125}, {"start": 916.23, "end": 916.35, "word": " the", "probability": 0.466796875}, {"start": 916.35, "end": 916.39, "word": " internal", "probability": 0.5224609375}, {"start": 916.39, "end": 916.49, "word": " parts", "probability": 0.7138671875}, {"start": 916.49, "end": 916.57, "word": " of", "probability": 0.970703125}, {"start": 916.57, "end": 916.65, "word": " the", "probability": 0.912109375}, {"start": 916.65, "end": 917.21, "word": " system.", "probability": 0.93212890625}, {"start": 917.93, "end": 918.37, "word": " Corruption", "probability": 0.931884765625}, {"start": 918.37, "end": 919.61, "word": " defines", "probability": 0.8359375}, {"start": 919.61, "end": 920.87, "word": " a", "probability": 0.97509765625}, {"start": 920.87, "end": 921.09, "word": " higher", "probability": 0.8740234375}, {"start": 921.09, "end": 921.39, "word": " level", "probability": 0.6640625}, {"start": 921.39, "end": 921.85, "word": " interface,", "probability": 0.86669921875}], "temperature": 1.0}, {"id": 41, "seek": 93016, "start": 923.82, "end": 930.16, "text": "higher level, which means that the client knows the internal details, which makes the subsystem easier to use", "tokens": [71, 2867, 1496, 11, 597, 1355, 300, 264, 6423, 3255, 264, 6920, 4365, 11, 597, 1669, 264, 2090, 9321, 3571, 281, 764], "avg_logprob": -0.52513587474823, "compression_ratio": 1.2674418604651163, "no_speech_prob": 0.0, "words": [{"start": 923.82, "end": 924.16, "word": "higher", "probability": 0.60675048828125}, {"start": 924.16, "end": 924.56, "word": " level,", "probability": 0.86572265625}, {"start": 925.3, "end": 925.48, "word": " which", "probability": 0.299072265625}, {"start": 925.48, "end": 925.64, "word": " means", "probability": 0.29638671875}, {"start": 925.64, "end": 925.78, "word": " that", "probability": 0.493896484375}, {"start": 925.78, "end": 925.86, "word": " the", "probability": 0.69873046875}, {"start": 925.86, "end": 926.1, "word": " client", "probability": 0.7802734375}, {"start": 926.1, "end": 926.36, "word": " knows", "probability": 0.375732421875}, {"start": 926.36, "end": 926.52, "word": " the", "probability": 0.61279296875}, {"start": 926.52, "end": 927.42, "word": " internal", "probability": 0.58984375}, {"start": 927.42, "end": 927.42, "word": " details,", "probability": 0.8486328125}, {"start": 927.62, "end": 927.76, "word": " which", "probability": 0.30712890625}, {"start": 927.76, "end": 927.9, "word": " makes", "probability": 0.82470703125}, {"start": 927.9, "end": 928.12, "word": " the", "probability": 0.84130859375}, {"start": 928.12, "end": 928.62, "word": " subsystem", "probability": 0.9072265625}, {"start": 928.62, "end": 928.98, "word": " easier", "probability": 0.9462890625}, {"start": 928.98, "end": 929.28, "word": " to", "probability": 0.97314453125}, {"start": 929.28, "end": 930.16, "word": " use", "probability": 0.8857421875}], "temperature": 1.0}, {"id": 42, "seek": 95496, "start": 931.26, "end": 954.96, "text": "The motivation and motivation for structuring a system into subsystems help reduce complexity. Subsystems are groups of classes. It explains to us what the subsystem means. It can be a class or a group of classes. The idea of ​​a subsystem is that it is a component responsible for carrying out a certain task.", "tokens": [2278, 12335, 293, 12335, 337, 6594, 1345, 257, 1185, 666, 2090, 9321, 82, 854, 5407, 14024, 13, 8511, 28215, 82, 366, 3935, 295, 5359, 13, 467, 13948, 281, 505, 437, 264, 2090, 9321, 1355, 13, 467, 393, 312, 257, 1508, 420, 257, 1594, 295, 5359, 13, 440, 1558, 295, 8701, 64, 2090, 9321, 307, 300, 309, 307, 257, 6542, 6250, 337, 9792, 484, 257, 1629, 5633, 13], "avg_logprob": -0.3837316167705199, "compression_ratio": 1.6269430051813472, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 931.26, "end": 931.48, "word": "The", "probability": 0.6474609375}, {"start": 931.48, "end": 931.96, "word": " motivation", "probability": 0.83056640625}, {"start": 931.96, "end": 933.08, "word": " and", "probability": 0.1619873046875}, {"start": 933.08, "end": 933.84, "word": " motivation", "probability": 0.62646484375}, {"start": 933.84, "end": 934.08, "word": " for", "probability": 0.3583984375}, {"start": 934.08, "end": 935.48, "word": " structuring", "probability": 0.708984375}, {"start": 935.48, "end": 935.66, "word": " a", "probability": 0.90380859375}, {"start": 935.66, "end": 935.96, "word": " system", "probability": 0.9462890625}, {"start": 935.96, "end": 936.2, "word": " into", "probability": 0.84521484375}, {"start": 936.2, "end": 936.9, "word": " subsystems", "probability": 0.9541015625}, {"start": 936.9, "end": 937.08, "word": " help", "probability": 0.43212890625}, {"start": 937.08, "end": 937.52, "word": " reduce", "probability": 0.87841796875}, {"start": 937.52, "end": 938.18, "word": " complexity.", "probability": 0.83251953125}, {"start": 944.14, "end": 944.62, "word": " Subsystems", "probability": 0.8030598958333334}, {"start": 944.62, "end": 944.8, "word": " are", "probability": 0.92431640625}, {"start": 944.8, "end": 945.16, "word": " groups", "probability": 0.93701171875}, {"start": 945.16, "end": 945.38, "word": " of", "probability": 0.95751953125}, {"start": 945.38, "end": 945.76, "word": " classes.", "probability": 0.89404296875}, {"start": 945.84, "end": 945.92, "word": " It", "probability": 0.177001953125}, {"start": 945.92, "end": 946.08, "word": " explains", "probability": 0.5615234375}, {"start": 946.08, "end": 946.24, "word": " to", "probability": 0.564453125}, {"start": 946.24, "end": 946.32, "word": " us", "probability": 0.89892578125}, {"start": 946.32, "end": 946.44, "word": " what", "probability": 0.833984375}, {"start": 946.44, "end": 946.44, "word": " the", "probability": 0.2958984375}, {"start": 946.44, "end": 946.96, "word": " subsystem", "probability": 0.8837890625}, {"start": 946.96, "end": 947.56, "word": " means.", "probability": 0.685546875}, {"start": 948.08, "end": 948.22, "word": " It", "probability": 0.75244140625}, {"start": 948.22, "end": 948.4, "word": " can", "probability": 0.65576171875}, {"start": 948.4, "end": 948.6, "word": " be", "probability": 0.8759765625}, {"start": 948.6, "end": 948.76, "word": " a", "probability": 0.69384765625}, {"start": 948.76, "end": 949.38, "word": " class", "probability": 0.67724609375}, {"start": 949.38, "end": 949.54, "word": " or", "probability": 0.74462890625}, {"start": 949.54, "end": 949.84, "word": " a", "probability": 0.81005859375}, {"start": 949.84, "end": 950.1, "word": " group", "probability": 0.86083984375}, {"start": 950.1, "end": 950.26, "word": " of", "probability": 0.95166015625}, {"start": 950.26, "end": 950.78, "word": " classes.", "probability": 0.921875}, {"start": 951.32, "end": 951.42, "word": " The", "probability": 0.78759765625}, {"start": 951.42, "end": 951.58, "word": " idea", "probability": 0.4931640625}, {"start": 951.58, "end": 951.74, "word": " of", "probability": 0.94384765625}, {"start": 951.74, "end": 951.78, "word": " ​​a", "probability": 0.55810546875}, {"start": 951.78, "end": 952.16, "word": " subsystem", "probability": 0.9736328125}, {"start": 952.16, "end": 952.34, "word": " is", "probability": 0.90087890625}, {"start": 952.34, "end": 952.34, "word": " that", "probability": 0.318115234375}, {"start": 952.34, "end": 952.44, "word": " it", "probability": 0.89453125}, {"start": 952.44, "end": 952.62, "word": " is", "probability": 0.91455078125}, {"start": 952.62, "end": 952.88, "word": " a", "probability": 0.92138671875}, {"start": 952.88, "end": 953.34, "word": " component", "probability": 0.75927734375}, {"start": 953.34, "end": 953.66, "word": " responsible", "probability": 0.88916015625}, {"start": 953.66, "end": 953.86, "word": " for", "probability": 0.94775390625}, {"start": 953.86, "end": 954.12, "word": " carrying", "probability": 0.1629638671875}, {"start": 954.12, "end": 954.26, "word": " out", "probability": 0.861328125}, {"start": 954.26, "end": 954.96, "word": " a", "probability": 0.97216796875}, {"start": 954.96, "end": 954.96, "word": " certain", "probability": 0.364990234375}, {"start": 954.96, "end": 954.96, "word": " task.", "probability": 0.494140625}], "temperature": 1.0}, {"id": 43, "seek": 97105, "start": 956.17, "end": 971.05, "text": "The interface exposed by the classes in a subsystem or a set of systems can be quite complex يعني استخدام ال subsystems ممكن يكون معقد فعشان هيك one way to reduce this complexity is to introduce a facet objects", "tokens": [2278, 9226, 9495, 538, 264, 5359, 294, 257, 2090, 9321, 420, 257, 992, 295, 3652, 393, 312, 1596, 3997, 37495, 22653, 44713, 9778, 3215, 10943, 2423, 2090, 9321, 82, 3714, 43020, 7251, 30544, 20449, 28543, 6156, 3615, 8592, 7649, 39896, 4117, 472, 636, 281, 5407, 341, 14024, 307, 281, 5366, 257, 1915, 302, 6565], "avg_logprob": -0.13714488257061352, "compression_ratio": 1.35, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 956.17, "end": 956.41, "word": "The", "probability": 0.84033203125}, {"start": 956.41, "end": 957.05, "word": " interface", "probability": 0.900390625}, {"start": 957.05, "end": 957.67, "word": " exposed", "probability": 0.8935546875}, {"start": 957.67, "end": 957.93, "word": " by", "probability": 0.97265625}, {"start": 957.93, "end": 958.09, "word": " the", "probability": 0.84912109375}, {"start": 958.09, "end": 958.51, "word": " classes", "probability": 0.90283203125}, {"start": 958.51, "end": 958.83, "word": " in", "probability": 0.9482421875}, {"start": 958.83, "end": 958.97, "word": " a", "probability": 0.98779296875}, {"start": 958.97, "end": 959.57, "word": " subsystem", "probability": 0.94189453125}, {"start": 959.57, "end": 959.83, "word": " or", "probability": 0.9296875}, {"start": 959.83, "end": 960.05, "word": " a", "probability": 0.9345703125}, {"start": 960.05, "end": 960.21, "word": " set", "probability": 0.955078125}, {"start": 960.21, "end": 960.35, "word": " of", "probability": 0.97265625}, {"start": 960.35, "end": 960.69, "word": " systems", "probability": 0.93798828125}, {"start": 960.69, "end": 960.97, "word": " can", "probability": 0.94677734375}, {"start": 960.97, "end": 961.25, "word": " be", "probability": 0.96240234375}, {"start": 961.25, "end": 961.95, "word": " quite", "probability": 0.90625}, {"start": 961.95, "end": 962.43, "word": " complex", "probability": 0.86181640625}, {"start": 962.43, "end": 962.71, "word": " يعني", "probability": 0.5262451171875}, {"start": 962.71, "end": 963.51, "word": " استخدام", "probability": 0.9537353515625}, {"start": 963.51, "end": 963.73, "word": " ال", "probability": 0.50048828125}, {"start": 963.73, "end": 964.87, "word": " subsystems", "probability": 0.8362630208333334}, {"start": 964.87, "end": 965.09, "word": " ممكن", "probability": 0.98291015625}, {"start": 965.09, "end": 965.33, "word": " يكون", "probability": 0.990234375}, {"start": 965.33, "end": 965.79, "word": " معقد", "probability": 0.932373046875}, {"start": 965.79, "end": 966.19, "word": " فعشان", "probability": 0.8983154296875}, {"start": 966.19, "end": 966.55, "word": " هيك", "probability": 0.924072265625}, {"start": 966.55, "end": 966.93, "word": " one", "probability": 0.62451171875}, {"start": 966.93, "end": 967.25, "word": " way", "probability": 0.96337890625}, {"start": 967.25, "end": 967.45, "word": " to", "probability": 0.98583984375}, {"start": 967.45, "end": 967.83, "word": " reduce", "probability": 0.85400390625}, {"start": 967.83, "end": 968.03, "word": " this", "probability": 0.9462890625}, {"start": 968.03, "end": 968.65, "word": " complexity", "probability": 0.90869140625}, {"start": 968.65, "end": 969.43, "word": " is", "probability": 0.9580078125}, {"start": 969.43, "end": 969.55, "word": " to", "probability": 0.9755859375}, {"start": 969.55, "end": 970.11, "word": " introduce", "probability": 0.8544921875}, {"start": 970.11, "end": 970.29, "word": " a", "probability": 0.9853515625}, {"start": 970.29, "end": 970.63, "word": " facet", "probability": 0.6796875}, {"start": 970.63, "end": 971.05, "word": " objects", "probability": 0.7470703125}], "temperature": 1.0}, {"id": 44, "seek": 100106, "start": 972.22, "end": 1001.06, "text": "To reduce the complexity of using a subsystem, FACADE provides a single simplified interface to the more general facilities of a subsystem. When do we use the FACADE pattern to provide a simple interface to a complex subsystem? This interface is good enough for most clients.", "tokens": [13342, 5407, 264, 14024, 295, 1228, 257, 2090, 9321, 11, 479, 4378, 41671, 6417, 257, 2167, 26335, 9226, 281, 264, 544, 2674, 9406, 295, 257, 2090, 9321, 13, 1133, 360, 321, 764, 264, 479, 4378, 41671, 5102, 281, 2893, 257, 2199, 9226, 281, 257, 3997, 2090, 9321, 30, 639, 9226, 307, 665, 1547, 337, 881, 6982, 13], "avg_logprob": -0.3432112156317152, "compression_ratio": 1.608187134502924, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 972.22, "end": 972.48, "word": "To", "probability": 0.5234375}, {"start": 972.48, "end": 972.82, "word": " reduce", "probability": 0.470458984375}, {"start": 972.82, "end": 973.04, "word": " the", "probability": 0.63818359375}, {"start": 973.04, "end": 973.44, "word": " complexity", "probability": 0.84716796875}, {"start": 973.44, "end": 973.68, "word": " of", "probability": 0.91162109375}, {"start": 973.68, "end": 973.88, "word": " using", "probability": 0.50439453125}, {"start": 973.88, "end": 974.14, "word": " a", "probability": 0.28076171875}, {"start": 974.14, "end": 974.44, "word": " subsystem,", "probability": 0.6156005859375}, {"start": 974.72, "end": 975.54, "word": " FACADE", "probability": 0.385986328125}, {"start": 975.54, "end": 975.56, "word": " provides", "probability": 0.6279296875}, {"start": 975.56, "end": 976.4, "word": " a", "probability": 0.9248046875}, {"start": 976.4, "end": 976.8, "word": " single", "probability": 0.77392578125}, {"start": 976.8, "end": 977.52, "word": " simplified", "probability": 0.962890625}, {"start": 977.52, "end": 977.98, "word": " interface", "probability": 0.921875}, {"start": 977.98, "end": 978.2, "word": " to", "probability": 0.90625}, {"start": 978.2, "end": 978.36, "word": " the", "probability": 0.8095703125}, {"start": 978.36, "end": 978.64, "word": " more", "probability": 0.87646484375}, {"start": 978.64, "end": 979.2, "word": " general", "probability": 0.87939453125}, {"start": 979.2, "end": 979.98, "word": " facilities", "probability": 0.806640625}, {"start": 979.98, "end": 980.6, "word": " of", "probability": 0.91357421875}, {"start": 980.6, "end": 983.16, "word": " a", "probability": 0.63232421875}, {"start": 983.16, "end": 983.68, "word": " subsystem.", "probability": 0.953857421875}, {"start": 989.28, "end": 989.92, "word": " When", "probability": 0.142578125}, {"start": 989.92, "end": 990.14, "word": " do", "probability": 0.319091796875}, {"start": 990.14, "end": 990.16, "word": " we", "probability": 0.8720703125}, {"start": 990.16, "end": 990.44, "word": " use", "probability": 0.86865234375}, {"start": 990.44, "end": 990.6, "word": " the", "probability": 0.7451171875}, {"start": 990.6, "end": 990.86, "word": " FACADE", "probability": 0.9296875}, {"start": 990.86, "end": 991.28, "word": " pattern", "probability": 0.81640625}, {"start": 991.28, "end": 991.74, "word": " to", "probability": 0.39453125}, {"start": 991.74, "end": 992.16, "word": " provide", "probability": 0.8837890625}, {"start": 992.16, "end": 992.34, "word": " a", "probability": 0.97998046875}, {"start": 992.34, "end": 992.62, "word": " simple", "probability": 0.875}, {"start": 992.62, "end": 993.08, "word": " interface", "probability": 0.9111328125}, {"start": 993.08, "end": 993.26, "word": " to", "probability": 0.951171875}, {"start": 993.26, "end": 993.42, "word": " a", "probability": 0.93994140625}, {"start": 993.42, "end": 993.84, "word": " complex", "probability": 0.8671875}, {"start": 993.84, "end": 994.9, "word": " subsystem?", "probability": 0.96044921875}, {"start": 995.56, "end": 995.7, "word": " This", "probability": 0.546875}, {"start": 995.7, "end": 999.0, "word": " interface", "probability": 0.93359375}, {"start": 999.0, "end": 999.24, "word": " is", "probability": 0.8603515625}, {"start": 999.24, "end": 999.46, "word": " good", "probability": 0.849609375}, {"start": 999.46, "end": 999.74, "word": " enough", "probability": 0.85986328125}, {"start": 999.74, "end": 999.98, "word": " for", "probability": 0.94140625}, {"start": 999.98, "end": 1000.38, "word": " most", "probability": 0.88818359375}, {"start": 1000.38, "end": 1001.06, "word": " clients.", "probability": 0.892578125}], "temperature": 1.0}, {"id": 45, "seek": 102849, "start": 1001.77, "end": 1028.49, "text": "More sophisticated clients can look beyond the facade. What does this mean? Now, the facade provides you with a process that executes the steps through which the subsystems are created. Now, imagine the steps in the facade that a client wants to change. He wants to add an additional step. Now, notice that the facade does not allow the external system to use these classes directly.", "tokens": [33986, 16950, 6982, 393, 574, 4399, 264, 46261, 13, 708, 775, 341, 914, 30, 823, 11, 264, 46261, 6417, 291, 365, 257, 1399, 300, 4454, 1819, 264, 4439, 807, 597, 264, 2090, 9321, 82, 366, 2942, 13, 823, 11, 3811, 264, 4439, 294, 264, 46261, 300, 257, 6423, 2738, 281, 1319, 13, 634, 2738, 281, 909, 364, 4497, 1823, 13, 823, 11, 3449, 300, 264, 46261, 775, 406, 2089, 264, 8320, 1185, 281, 764, 613, 5359, 3838, 13], "avg_logprob": -0.4446202524100678, "compression_ratio": 1.740909090909091, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1001.77, "end": 1002.17, "word": "More", "probability": 0.57421875}, {"start": 1002.17, "end": 1002.77, "word": " sophisticated", "probability": 0.896484375}, {"start": 1002.77, "end": 1003.53, "word": " clients", "probability": 0.8994140625}, {"start": 1003.53, "end": 1004.41, "word": " can", "probability": 0.916015625}, {"start": 1004.41, "end": 1004.71, "word": " look", "probability": 0.9580078125}, {"start": 1004.71, "end": 1005.23, "word": " beyond", "probability": 0.86328125}, {"start": 1005.23, "end": 1006.35, "word": " the", "probability": 0.8154296875}, {"start": 1006.35, "end": 1006.69, "word": " facade.", "probability": 0.4912109375}, {"start": 1007.13, "end": 1007.49, "word": " What", "probability": 0.37109375}, {"start": 1007.49, "end": 1007.61, "word": " does", "probability": 0.83740234375}, {"start": 1007.61, "end": 1008.03, "word": " this", "probability": 0.79736328125}, {"start": 1008.03, "end": 1008.03, "word": " mean?", "probability": 0.61279296875}, {"start": 1008.83, "end": 1009.35, "word": " Now,", "probability": 0.359619140625}, {"start": 1010.27, "end": 1010.69, "word": " the", "probability": 0.5595703125}, {"start": 1010.69, "end": 1011.13, "word": " facade", "probability": 0.919921875}, {"start": 1011.13, "end": 1011.69, "word": " provides", "probability": 0.53955078125}, {"start": 1011.69, "end": 1012.03, "word": " you", "probability": 0.37841796875}, {"start": 1012.03, "end": 1012.69, "word": " with", "probability": 0.7626953125}, {"start": 1012.69, "end": 1012.79, "word": " a", "probability": 0.8525390625}, {"start": 1012.79, "end": 1013.17, "word": " process", "probability": 0.94580078125}, {"start": 1013.17, "end": 1013.37, "word": " that", "probability": 0.62841796875}, {"start": 1013.37, "end": 1013.67, "word": " executes", "probability": 0.62249755859375}, {"start": 1013.67, "end": 1013.81, "word": " the", "probability": 0.67578125}, {"start": 1013.81, "end": 1014.35, "word": " steps", "probability": 0.7177734375}, {"start": 1014.35, "end": 1015.09, "word": " through", "probability": 0.10595703125}, {"start": 1015.09, "end": 1015.55, "word": " which", "probability": 0.921875}, {"start": 1015.55, "end": 1015.65, "word": " the", "probability": 0.59716796875}, {"start": 1015.65, "end": 1016.33, "word": " subsystems", "probability": 0.8138020833333334}, {"start": 1016.33, "end": 1016.33, "word": " are", "probability": 0.36279296875}, {"start": 1016.33, "end": 1016.33, "word": " created.", "probability": 0.319091796875}, {"start": 1016.87, "end": 1017.07, "word": " Now,", "probability": 0.14306640625}, {"start": 1017.11, "end": 1017.35, "word": " imagine", "probability": 0.3056640625}, {"start": 1017.35, "end": 1017.55, "word": " the", "probability": 0.401611328125}, {"start": 1017.55, "end": 1017.93, "word": " steps", "probability": 0.87158203125}, {"start": 1017.93, "end": 1018.37, "word": " in", "probability": 0.382568359375}, {"start": 1018.37, "end": 1018.51, "word": " the", "probability": 0.84228515625}, {"start": 1018.51, "end": 1018.71, "word": " facade", "probability": 0.94384765625}, {"start": 1018.71, "end": 1019.27, "word": " that", "probability": 0.294189453125}, {"start": 1019.27, "end": 1019.29, "word": " a", "probability": 0.56591796875}, {"start": 1019.29, "end": 1019.81, "word": " client", "probability": 0.84814453125}, {"start": 1019.81, "end": 1020.07, "word": " wants", "probability": 0.430419921875}, {"start": 1020.07, "end": 1020.31, "word": " to", "probability": 0.9462890625}, {"start": 1020.31, "end": 1020.61, "word": " change.", "probability": 0.70458984375}, {"start": 1020.95, "end": 1021.29, "word": " He", "probability": 0.311279296875}, {"start": 1021.29, "end": 1021.41, "word": " wants", "probability": 0.256103515625}, {"start": 1021.41, "end": 1021.41, "word": " to", "probability": 0.9658203125}, {"start": 1021.41, "end": 1021.55, "word": " add", "probability": 0.89111328125}, {"start": 1021.55, "end": 1021.87, "word": " an", "probability": 0.7060546875}, {"start": 1021.87, "end": 1022.07, "word": " additional", "probability": 0.74365234375}, {"start": 1022.07, "end": 1022.25, "word": " step.", "probability": 0.93212890625}, {"start": 1023.21, "end": 1023.73, "word": " Now,", "probability": 0.50830078125}, {"start": 1023.81, "end": 1024.01, "word": " notice", "probability": 0.6865234375}, {"start": 1024.01, "end": 1024.21, "word": " that", "probability": 0.91943359375}, {"start": 1024.21, "end": 1024.31, "word": " the", "probability": 0.83740234375}, {"start": 1024.31, "end": 1024.61, "word": " facade", "probability": 0.98095703125}, {"start": 1024.61, "end": 1024.87, "word": " does", "probability": 0.919921875}, {"start": 1024.87, "end": 1024.87, "word": " not", "probability": 0.9482421875}, {"start": 1024.87, "end": 1025.19, "word": " allow", "probability": 0.67919921875}, {"start": 1025.19, "end": 1025.37, "word": " the", "probability": 0.8642578125}, {"start": 1025.37, "end": 1026.05, "word": " external", "probability": 0.82861328125}, {"start": 1026.05, "end": 1026.21, "word": " system", "probability": 0.93310546875}, {"start": 1026.21, "end": 1027.03, "word": " to", "probability": 0.9580078125}, {"start": 1027.03, "end": 1027.43, "word": " use", "probability": 0.806640625}, {"start": 1027.43, "end": 1027.61, "word": " these", "probability": 0.408447265625}, {"start": 1027.61, "end": 1027.91, "word": " classes", "probability": 0.935546875}, {"start": 1027.91, "end": 1028.49, "word": " directly.", "probability": 0.89892578125}], "temperature": 1.0}, {"id": 46, "seek": 105844, "start": 1029.64, "end": 1058.44, "text": " If someone wants to make advanced settings and change them in the default process, he can use the main subsystem. Now, the client or the developer has two options that he wants to use in the office. Either he uses the default settings, which are identified within the corruption. If he wants to add additional details, he can directly create objects from them and use them. But in this case, he is free. He wants to make custom things.", "tokens": [759, 1580, 2738, 281, 652, 7339, 6257, 293, 1319, 552, 294, 264, 7576, 1399, 11, 415, 393, 764, 264, 2135, 2090, 9321, 13, 823, 11, 264, 6423, 420, 264, 10754, 575, 732, 3956, 300, 415, 2738, 281, 764, 294, 264, 3398, 13, 13746, 415, 4960, 264, 7576, 6257, 11, 597, 366, 9234, 1951, 264, 17959, 13, 759, 415, 2738, 281, 909, 4497, 4365, 11, 415, 393, 3838, 1884, 6565, 490, 552, 293, 764, 552, 13, 583, 294, 341, 1389, 11, 415, 307, 1737, 13, 634, 2738, 281, 652, 2375, 721, 13], "avg_logprob": -0.48403533224178397, "compression_ratio": 1.7723577235772359, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 1029.64, "end": 1030.16, "word": " If", "probability": 0.2086181640625}, {"start": 1030.16, "end": 1030.68, "word": " someone", "probability": 0.7275390625}, {"start": 1030.68, "end": 1030.84, "word": " wants", "probability": 0.389404296875}, {"start": 1030.84, "end": 1030.92, "word": " to", "probability": 0.96044921875}, {"start": 1030.92, "end": 1031.06, "word": " make", "probability": 0.431396484375}, {"start": 1031.06, "end": 1031.6, "word": " advanced", "probability": 0.71044921875}, {"start": 1031.6, "end": 1032.1, "word": " settings", "probability": 0.94482421875}, {"start": 1032.1, "end": 1033.04, "word": " and", "probability": 0.6875}, {"start": 1033.04, "end": 1033.5, "word": " change", "probability": 0.5654296875}, {"start": 1033.5, "end": 1034.04, "word": " them", "probability": 0.25439453125}, {"start": 1034.04, "end": 1034.18, "word": " in", "probability": 0.54443359375}, {"start": 1034.18, "end": 1034.3, "word": " the", "probability": 0.8798828125}, {"start": 1034.3, "end": 1035.2, "word": " default", "probability": 0.884765625}, {"start": 1035.2, "end": 1035.48, "word": " process,", "probability": 0.681640625}, {"start": 1035.98, "end": 1036.06, "word": " he", "probability": 0.5478515625}, {"start": 1036.06, "end": 1036.28, "word": " can", "probability": 0.7431640625}, {"start": 1036.28, "end": 1037.44, "word": " use", "probability": 0.8310546875}, {"start": 1037.44, "end": 1037.74, "word": " the", "probability": 0.411376953125}, {"start": 1037.74, "end": 1037.84, "word": " main", "probability": 0.3525390625}, {"start": 1037.84, "end": 1039.14, "word": " subsystem.", "probability": 0.858154296875}, {"start": 1040.3, "end": 1040.82, "word": " Now,", "probability": 0.23974609375}, {"start": 1041.06, "end": 1041.16, "word": " the", "probability": 0.5380859375}, {"start": 1041.16, "end": 1041.52, "word": " client", "probability": 0.849609375}, {"start": 1041.52, "end": 1042.54, "word": " or", "probability": 0.7763671875}, {"start": 1042.54, "end": 1042.68, "word": " the", "probability": 0.43310546875}, {"start": 1042.68, "end": 1043.04, "word": " developer", "probability": 0.87158203125}, {"start": 1043.04, "end": 1043.3, "word": " has", "probability": 0.7353515625}, {"start": 1043.3, "end": 1043.56, "word": " two", "probability": 0.84130859375}, {"start": 1043.56, "end": 1043.78, "word": " options", "probability": 0.583984375}, {"start": 1043.78, "end": 1044.04, "word": " that", "probability": 0.1055908203125}, {"start": 1044.04, "end": 1044.1, "word": " he", "probability": 0.75927734375}, {"start": 1044.1, "end": 1044.2, "word": " wants", "probability": 0.42919921875}, {"start": 1044.2, "end": 1044.22, "word": " to", "probability": 0.95654296875}, {"start": 1044.22, "end": 1044.48, "word": " use", "probability": 0.88427734375}, {"start": 1044.48, "end": 1044.62, "word": " in", "probability": 0.387939453125}, {"start": 1044.62, "end": 1044.68, "word": " the", "probability": 0.603515625}, {"start": 1044.68, "end": 1044.9, "word": " office.", "probability": 0.52197265625}, {"start": 1045.28, "end": 1045.5, "word": " Either", "probability": 0.53369140625}, {"start": 1045.5, "end": 1045.56, "word": " he", "probability": 0.64208984375}, {"start": 1045.56, "end": 1045.9, "word": " uses", "probability": 0.5888671875}, {"start": 1045.9, "end": 1046.08, "word": " the", "probability": 0.7490234375}, {"start": 1046.08, "end": 1046.3, "word": " default", "probability": 0.9765625}, {"start": 1046.3, "end": 1046.8, "word": " settings,", "probability": 0.916015625}, {"start": 1047.6, "end": 1047.66, "word": " which", "probability": 0.82373046875}, {"start": 1047.66, "end": 1047.8, "word": " are", "probability": 0.51806640625}, {"start": 1047.8, "end": 1048.12, "word": " identified", "probability": 0.1419677734375}, {"start": 1048.12, "end": 1048.56, "word": " within", "probability": 0.332763671875}, {"start": 1048.56, "end": 1049.14, "word": " the", "probability": 0.701171875}, {"start": 1049.14, "end": 1049.44, "word": " corruption.", "probability": 0.1866455078125}, {"start": 1049.52, "end": 1049.74, "word": " If", "probability": 0.544921875}, {"start": 1049.74, "end": 1050.02, "word": " he", "probability": 0.8837890625}, {"start": 1050.02, "end": 1050.24, "word": " wants", "probability": 0.7490234375}, {"start": 1050.24, "end": 1050.38, "word": " to", "probability": 0.9541015625}, {"start": 1050.38, "end": 1050.64, "word": " add", "probability": 0.68310546875}, {"start": 1050.64, "end": 1051.5, "word": " additional", "probability": 0.68505859375}, {"start": 1051.5, "end": 1051.5, "word": " details,", "probability": 0.826171875}, {"start": 1052.28, "end": 1052.42, "word": " he", "probability": 0.90478515625}, {"start": 1052.42, "end": 1052.64, "word": " can", "probability": 0.9248046875}, {"start": 1052.64, "end": 1053.04, "word": " directly", "probability": 0.423095703125}, {"start": 1053.04, "end": 1053.4, "word": " create", "probability": 0.755859375}, {"start": 1053.4, "end": 1053.76, "word": " objects", "probability": 0.9208984375}, {"start": 1053.76, "end": 1053.94, "word": " from", "probability": 0.7470703125}, {"start": 1053.94, "end": 1054.24, "word": " them", "probability": 0.354736328125}, {"start": 1054.24, "end": 1054.48, "word": " and", "probability": 0.88671875}, {"start": 1054.48, "end": 1054.82, "word": " use", "probability": 0.869140625}, {"start": 1054.82, "end": 1055.04, "word": " them.", "probability": 0.87548828125}, {"start": 1055.14, "end": 1055.32, "word": " But", "probability": 0.72412109375}, {"start": 1055.32, "end": 1055.52, "word": " in", "probability": 0.7646484375}, {"start": 1055.52, "end": 1056.1, "word": " this", "probability": 0.8974609375}, {"start": 1056.1, "end": 1056.1, "word": " case,", "probability": 0.88916015625}, {"start": 1056.46, "end": 1056.58, "word": " he", "probability": 0.83203125}, {"start": 1056.58, "end": 1056.66, "word": " is", "probability": 0.7353515625}, {"start": 1056.66, "end": 1056.92, "word": " free.", "probability": 0.84375}, {"start": 1056.98, "end": 1057.1, "word": " He", "probability": 0.6640625}, {"start": 1057.1, "end": 1057.38, "word": " wants", "probability": 0.71435546875}, {"start": 1057.38, "end": 1057.54, "word": " to", "probability": 0.96630859375}, {"start": 1057.54, "end": 1057.8, "word": " make", "probability": 0.51171875}, {"start": 1057.8, "end": 1058.44, "word": " custom", "probability": 0.70703125}, {"start": 1058.44, "end": 1058.44, "word": " things.", "probability": 0.54638671875}], "temperature": 1.0}, {"id": 47, "seek": 106871, "start": 1059.35, "end": 1068.71, "text": "He wants to remove the complexity of the subsystems from his dictionaries. He wants to take the default settings and deal directly with corruption.", "tokens": [5205, 2738, 281, 4159, 264, 14024, 295, 264, 2090, 9321, 82, 490, 702, 22352, 4889, 13, 634, 2738, 281, 747, 264, 7576, 6257, 293, 2028, 3838, 365, 17959, 13], "avg_logprob": -0.7187500218550364, "compression_ratio": 1.3008849557522124, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1059.35, "end": 1059.85, "word": "He", "probability": 0.09002685546875}, {"start": 1059.85, "end": 1060.09, "word": " wants", "probability": 0.389892578125}, {"start": 1060.09, "end": 1060.87, "word": " to", "probability": 0.837890625}, {"start": 1060.87, "end": 1061.13, "word": " remove", "probability": 0.50048828125}, {"start": 1061.13, "end": 1061.33, "word": " the", "probability": 0.194091796875}, {"start": 1061.33, "end": 1061.81, "word": " complexity", "probability": 0.38623046875}, {"start": 1061.81, "end": 1063.93, "word": " of", "probability": 0.677734375}, {"start": 1063.93, "end": 1064.03, "word": " the", "probability": 0.3505859375}, {"start": 1064.03, "end": 1064.63, "word": " subsystems", "probability": 0.7644856770833334}, {"start": 1064.63, "end": 1064.63, "word": " from", "probability": 0.75390625}, {"start": 1064.63, "end": 1064.63, "word": " his", "probability": 0.7138671875}, {"start": 1064.63, "end": 1064.67, "word": " dictionaries.", "probability": 0.480560302734375}, {"start": 1064.85, "end": 1065.15, "word": " He", "probability": 0.266845703125}, {"start": 1065.15, "end": 1065.23, "word": " wants", "probability": 0.454345703125}, {"start": 1065.23, "end": 1065.31, "word": " to", "probability": 0.919921875}, {"start": 1065.31, "end": 1065.53, "word": " take", "probability": 0.300048828125}, {"start": 1065.53, "end": 1065.69, "word": " the", "probability": 0.6845703125}, {"start": 1065.69, "end": 1065.95, "word": " default", "probability": 0.96826171875}, {"start": 1065.95, "end": 1066.39, "word": " settings", "probability": 0.92138671875}, {"start": 1066.39, "end": 1066.57, "word": " and", "probability": 0.61279296875}, {"start": 1066.57, "end": 1066.79, "word": " deal", "probability": 0.5732421875}, {"start": 1066.79, "end": 1067.25, "word": " directly", "probability": 0.3310546875}, {"start": 1067.25, "end": 1068.33, "word": " with", "probability": 0.900390625}, {"start": 1068.33, "end": 1068.71, "word": " corruption.", "probability": 0.55615234375}], "temperature": 1.0}, {"id": 48, "seek": 109038, "start": 1070.04, "end": 1090.38, "text": "This means that sophisticated users can look beyond the corruption and deal with the subsystems directly One of the advantages of corruption is that it supports decoupling, decoupling the classes of the subsystem from its client", "tokens": [5723, 1355, 300, 16950, 5022, 393, 574, 4399, 264, 17959, 293, 2028, 365, 264, 2090, 9321, 82, 3838, 1485, 295, 264, 14906, 295, 1181, 894, 1695, 307, 300, 309, 9346, 979, 263, 11970, 11, 979, 263, 11970, 264, 5359, 295, 264, 2090, 9321, 490, 1080, 6423], "avg_logprob": -0.4365026557699163, "compression_ratio": 1.5724137931034483, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1070.04, "end": 1070.52, "word": "This", "probability": 0.436279296875}, {"start": 1070.52, "end": 1070.84, "word": " means", "probability": 0.755859375}, {"start": 1070.84, "end": 1071.9, "word": " that", "probability": 0.85693359375}, {"start": 1071.9, "end": 1073.04, "word": " sophisticated", "probability": 0.69091796875}, {"start": 1073.04, "end": 1073.74, "word": " users", "probability": 0.94384765625}, {"start": 1073.74, "end": 1073.98, "word": " can", "probability": 0.66064453125}, {"start": 1073.98, "end": 1075.1, "word": " look", "probability": 0.8359375}, {"start": 1075.1, "end": 1077.72, "word": " beyond", "probability": 0.75341796875}, {"start": 1077.72, "end": 1077.86, "word": " the", "probability": 0.76025390625}, {"start": 1077.86, "end": 1078.08, "word": " corruption", "probability": 0.1435546875}, {"start": 1078.08, "end": 1079.94, "word": " and", "probability": 0.39111328125}, {"start": 1079.94, "end": 1080.22, "word": " deal", "probability": 0.38330078125}, {"start": 1080.22, "end": 1080.48, "word": " with", "probability": 0.671875}, {"start": 1080.48, "end": 1080.56, "word": " the", "probability": 0.337890625}, {"start": 1080.56, "end": 1081.2, "word": " subsystems", "probability": 0.7366536458333334}, {"start": 1081.2, "end": 1081.62, "word": " directly", "probability": 0.78369140625}, {"start": 1081.62, "end": 1082.88, "word": " One", "probability": 0.1632080078125}, {"start": 1082.88, "end": 1083.24, "word": " of", "probability": 0.8720703125}, {"start": 1083.24, "end": 1083.36, "word": " the", "probability": 0.80517578125}, {"start": 1083.36, "end": 1083.58, "word": " advantages", "probability": 0.49951171875}, {"start": 1083.58, "end": 1083.78, "word": " of", "probability": 0.94482421875}, {"start": 1083.78, "end": 1084.0, "word": " corruption", "probability": 0.6737467447916666}, {"start": 1084.0, "end": 1084.34, "word": " is", "probability": 0.89453125}, {"start": 1084.34, "end": 1084.44, "word": " that", "probability": 0.771484375}, {"start": 1084.44, "end": 1084.64, "word": " it", "probability": 0.90673828125}, {"start": 1084.64, "end": 1084.94, "word": " supports", "probability": 0.65771484375}, {"start": 1084.94, "end": 1085.7, "word": " decoupling,", "probability": 0.8951822916666666}, {"start": 1087.6, "end": 1088.3, "word": " decoupling", "probability": 0.6674601236979166}, {"start": 1088.3, "end": 1088.4, "word": " the", "probability": 0.7119140625}, {"start": 1088.4, "end": 1088.74, "word": " classes", "probability": 0.91943359375}, {"start": 1088.74, "end": 1088.94, "word": " of", "probability": 0.943359375}, {"start": 1088.94, "end": 1089.06, "word": " the", "probability": 0.68798828125}, {"start": 1089.06, "end": 1089.54, "word": " subsystem", "probability": 0.9794921875}, {"start": 1089.54, "end": 1089.8, "word": " from", "probability": 0.68798828125}, {"start": 1089.8, "end": 1090.02, "word": " its", "probability": 0.83251953125}, {"start": 1090.02, "end": 1090.38, "word": " client", "probability": 0.595703125}], "temperature": 1.0}, {"id": 49, "seek": 110197, "start": 1091.69, "end": 1101.97, "text": "This is evidence that my coupling is less. The number of links here is more than here. Any change in the external system is only a change in corruption.", "tokens": [5723, 307, 4467, 300, 452, 37447, 307, 1570, 13, 440, 1230, 295, 6123, 510, 307, 544, 813, 510, 13, 2639, 1319, 294, 264, 8320, 1185, 307, 787, 257, 1319, 294, 17959, 13], "avg_logprob": -0.4943181818181818, "compression_ratio": 1.3333333333333333, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1091.69, "end": 1092.21, "word": "This", "probability": 0.33935546875}, {"start": 1092.21, "end": 1092.73, "word": " is", "probability": 0.71533203125}, {"start": 1092.73, "end": 1092.97, "word": " evidence", "probability": 0.24365234375}, {"start": 1092.97, "end": 1093.23, "word": " that", "probability": 0.81103515625}, {"start": 1093.23, "end": 1093.55, "word": " my", "probability": 0.388916015625}, {"start": 1093.55, "end": 1093.89, "word": " coupling", "probability": 0.91064453125}, {"start": 1093.89, "end": 1094.23, "word": " is", "probability": 0.79345703125}, {"start": 1094.23, "end": 1094.49, "word": " less.", "probability": 0.446533203125}, {"start": 1094.65, "end": 1094.75, "word": " The", "probability": 0.7353515625}, {"start": 1094.75, "end": 1094.87, "word": " number", "probability": 0.6806640625}, {"start": 1094.87, "end": 1095.03, "word": " of", "probability": 0.97119140625}, {"start": 1095.03, "end": 1095.31, "word": " links", "probability": 0.2763671875}, {"start": 1095.31, "end": 1095.57, "word": " here", "probability": 0.64453125}, {"start": 1095.57, "end": 1095.63, "word": " is", "probability": 0.86572265625}, {"start": 1095.63, "end": 1095.85, "word": " more", "probability": 0.6689453125}, {"start": 1095.85, "end": 1096.07, "word": " than", "probability": 0.935546875}, {"start": 1096.07, "end": 1097.11, "word": " here.", "probability": 0.63720703125}, {"start": 1097.65, "end": 1097.83, "word": " Any", "probability": 0.8818359375}, {"start": 1097.83, "end": 1098.19, "word": " change", "probability": 0.8623046875}, {"start": 1098.19, "end": 1098.35, "word": " in", "probability": 0.896484375}, {"start": 1098.35, "end": 1098.45, "word": " the", "probability": 0.78857421875}, {"start": 1098.45, "end": 1098.59, "word": " external", "probability": 0.32568359375}, {"start": 1098.59, "end": 1099.37, "word": " system", "probability": 0.87451171875}, {"start": 1099.37, "end": 1099.47, "word": " is", "probability": 0.170166015625}, {"start": 1099.47, "end": 1099.81, "word": " only", "probability": 0.453857421875}, {"start": 1099.81, "end": 1100.03, "word": " a", "probability": 0.54638671875}, {"start": 1100.03, "end": 1100.31, "word": " change", "probability": 0.84033203125}, {"start": 1100.31, "end": 1101.63, "word": " in", "probability": 0.91748046875}, {"start": 1101.63, "end": 1101.97, "word": " corruption.", "probability": 0.486083984375}], "temperature": 1.0}, {"id": 50, "seek": 112814, "start": 1104.86, "end": 1128.14, "text": "Benefits, as we said, it hides the implementation of the subsystem from clients, making the system easier to use, it promotes weak coupling, it reduces complication dependencies in large systems, simplifies porting systems. Portability, what does it mean?", "tokens": [33, 1450, 13979, 11, 382, 321, 848, 11, 309, 35953, 264, 11420, 295, 264, 2090, 9321, 490, 6982, 11, 1455, 264, 1185, 3571, 281, 764, 11, 309, 36015, 5336, 37447, 11, 309, 18081, 1209, 8758, 36606, 294, 2416, 3652, 11, 6883, 11221, 2436, 278, 3652, 13, 6733, 2310, 11, 437, 775, 309, 914, 30], "avg_logprob": -0.37215910499746147, "compression_ratio": 1.536144578313253, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1104.86, "end": 1105.34, "word": "Benefits,", "probability": 0.7882486979166666}, {"start": 1105.46, "end": 1105.48, "word": " as", "probability": 0.7265625}, {"start": 1105.48, "end": 1105.92, "word": " we", "probability": 0.8046875}, {"start": 1105.92, "end": 1105.92, "word": " said,", "probability": 0.52783203125}, {"start": 1106.1, "end": 1106.26, "word": " it", "probability": 0.78857421875}, {"start": 1106.26, "end": 1106.58, "word": " hides", "probability": 0.86962890625}, {"start": 1106.58, "end": 1106.72, "word": " the", "probability": 0.7939453125}, {"start": 1106.72, "end": 1107.36, "word": " implementation", "probability": 0.90478515625}, {"start": 1107.36, "end": 1107.76, "word": " of", "probability": 0.9599609375}, {"start": 1107.76, "end": 1107.9, "word": " the", "probability": 0.853515625}, {"start": 1107.9, "end": 1108.34, "word": " subsystem", "probability": 0.9423828125}, {"start": 1108.34, "end": 1108.6, "word": " from", "probability": 0.849609375}, {"start": 1108.6, "end": 1109.14, "word": " clients,", "probability": 0.8134765625}, {"start": 1109.66, "end": 1110.1, "word": " making", "probability": 0.09710693359375}, {"start": 1110.1, "end": 1112.72, "word": " the", "probability": 0.68212890625}, {"start": 1112.72, "end": 1112.96, "word": " system", "probability": 0.9140625}, {"start": 1112.96, "end": 1113.22, "word": " easier", "probability": 0.98046875}, {"start": 1113.22, "end": 1113.42, "word": " to", "probability": 0.97265625}, {"start": 1113.42, "end": 1113.6, "word": " use,", "probability": 0.896484375}, {"start": 1113.7, "end": 1113.78, "word": " it", "probability": 0.8857421875}, {"start": 1113.78, "end": 1114.24, "word": " promotes", "probability": 0.88671875}, {"start": 1114.24, "end": 1114.56, "word": " weak", "probability": 0.97412109375}, {"start": 1114.56, "end": 1115.02, "word": " coupling,", "probability": 0.94091796875}, {"start": 1116.6, "end": 1116.82, "word": " it", "probability": 0.5458984375}, {"start": 1116.82, "end": 1117.68, "word": " reduces", "probability": 0.9677734375}, {"start": 1117.68, "end": 1118.42, "word": " complication", "probability": 0.59185791015625}, {"start": 1118.42, "end": 1119.06, "word": " dependencies", "probability": 0.76416015625}, {"start": 1119.06, "end": 1119.36, "word": " in", "probability": 0.90576171875}, {"start": 1119.36, "end": 1119.68, "word": " large", "probability": 0.955078125}, {"start": 1119.68, "end": 1120.16, "word": " systems,", "probability": 0.9443359375}, {"start": 1122.22, "end": 1125.36, "word": " simplifies", "probability": 0.722900390625}, {"start": 1125.36, "end": 1125.86, "word": " porting", "probability": 0.89794921875}, {"start": 1125.86, "end": 1126.36, "word": " systems.", "probability": 0.93310546875}, {"start": 1126.94, "end": 1127.66, "word": " Portability,", "probability": 0.6239013671875}, {"start": 1127.8, "end": 1127.8, "word": " what", "probability": 0.7392578125}, {"start": 1127.8, "end": 1127.94, "word": " does", "probability": 0.461181640625}, {"start": 1127.94, "end": 1128.0, "word": " it", "probability": 0.41845703125}, {"start": 1128.0, "end": 1128.14, "word": " mean?", "probability": 0.951171875}], "temperature": 1.0}, {"id": 51, "seek": 114788, "start": 1130.4, "end": 1147.88, "text": "On another platform, it becomes easier because the coupling is less. This gate can take your entire system and transfer it to another platform. It will not affect them because everything is dealing with corruption.", "tokens": [11747, 1071, 3663, 11, 309, 3643, 3571, 570, 264, 37447, 307, 1570, 13, 639, 8539, 393, 747, 428, 2302, 1185, 293, 5003, 309, 281, 1071, 3663, 13, 467, 486, 406, 3345, 552, 570, 1203, 307, 6260, 365, 17959, 13], "avg_logprob": -0.6250000208616256, "compression_ratio": 1.4657534246575343, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 1130.4, "end": 1130.8, "word": "On", "probability": 0.126708984375}, {"start": 1130.8, "end": 1130.9, "word": " another", "probability": 0.62060546875}, {"start": 1130.9, "end": 1131.32, "word": " platform,", "probability": 0.8837890625}, {"start": 1131.54, "end": 1131.54, "word": " it", "probability": 0.76123046875}, {"start": 1131.54, "end": 1131.72, "word": " becomes", "probability": 0.388427734375}, {"start": 1131.72, "end": 1132.08, "word": " easier", "probability": 0.60498046875}, {"start": 1132.08, "end": 1132.82, "word": " because", "probability": 0.6923828125}, {"start": 1132.82, "end": 1132.98, "word": " the", "probability": 0.321533203125}, {"start": 1132.98, "end": 1133.3, "word": " coupling", "probability": 0.88525390625}, {"start": 1133.3, "end": 1133.44, "word": " is", "probability": 0.77490234375}, {"start": 1133.44, "end": 1133.72, "word": " less.", "probability": 0.443359375}, {"start": 1135.26, "end": 1136.06, "word": " This", "probability": 0.2103271484375}, {"start": 1136.06, "end": 1136.38, "word": " gate", "probability": 0.60693359375}, {"start": 1136.38, "end": 1137.14, "word": " can", "probability": 0.52685546875}, {"start": 1137.14, "end": 1137.56, "word": " take", "probability": 0.615234375}, {"start": 1137.56, "end": 1138.08, "word": " your", "probability": 0.37158203125}, {"start": 1138.08, "end": 1138.08, "word": " entire", "probability": 0.34033203125}, {"start": 1138.08, "end": 1138.54, "word": " system", "probability": 0.935546875}, {"start": 1138.54, "end": 1139.62, "word": " and", "probability": 0.80908203125}, {"start": 1139.62, "end": 1140.04, "word": " transfer", "probability": 0.236328125}, {"start": 1140.04, "end": 1140.14, "word": " it", "probability": 0.68798828125}, {"start": 1140.14, "end": 1140.22, "word": " to", "probability": 0.7119140625}, {"start": 1140.22, "end": 1140.26, "word": " another", "probability": 0.8583984375}, {"start": 1140.26, "end": 1140.98, "word": " platform.", "probability": 0.89697265625}, {"start": 1142.48, "end": 1143.28, "word": " It", "probability": 0.775390625}, {"start": 1143.28, "end": 1143.52, "word": " will", "probability": 0.40087890625}, {"start": 1143.52, "end": 1143.52, "word": " not", "probability": 0.89892578125}, {"start": 1143.52, "end": 1144.0, "word": " affect", "probability": 0.76611328125}, {"start": 1144.0, "end": 1145.9, "word": " them", "probability": 0.09881591796875}, {"start": 1145.9, "end": 1146.48, "word": " because", "probability": 0.57470703125}, {"start": 1146.48, "end": 1146.72, "word": " everything", "probability": 0.6826171875}, {"start": 1146.72, "end": 1146.86, "word": " is", "probability": 0.3427734375}, {"start": 1146.86, "end": 1147.06, "word": " dealing", "probability": 0.68994140625}, {"start": 1147.06, "end": 1147.48, "word": " with", "probability": 0.88330078125}, {"start": 1147.48, "end": 1147.88, "word": " corruption.", "probability": 0.82568359375}], "temperature": 1.0}, {"id": 52, "seek": 116909, "start": 1152.32, "end": 1169.1, "text": "And as we said, it does not prevent sophisticated clients from accessing the underlying classes Note that Facade does not add any functionality, it just simplifies interfaces Facade's design pattern is simple, its goal is to simplify the use of the API", "tokens": [5289, 382, 321, 848, 11, 309, 775, 406, 4871, 16950, 6982, 490, 26440, 264, 14217, 5359, 11633, 300, 17667, 762, 775, 406, 909, 604, 14980, 11, 309, 445, 6883, 11221, 28416, 17667, 762, 311, 1715, 5102, 307, 2199, 11, 1080, 3387, 307, 281, 20460, 264, 764, 295, 264, 9362], "avg_logprob": -0.332812494635582, "compression_ratio": 1.5, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 1152.32, "end": 1152.74, "word": "And", "probability": 0.1181640625}, {"start": 1152.74, "end": 1152.84, "word": " as", "probability": 0.6533203125}, {"start": 1152.84, "end": 1153.0, "word": " we", "probability": 0.70703125}, {"start": 1153.0, "end": 1153.18, "word": " said,", "probability": 0.73828125}, {"start": 1153.32, "end": 1153.38, "word": " it", "probability": 0.84619140625}, {"start": 1153.38, "end": 1153.68, "word": " does", "probability": 0.86572265625}, {"start": 1153.68, "end": 1154.08, "word": " not", "probability": 0.93896484375}, {"start": 1154.08, "end": 1154.74, "word": " prevent", "probability": 0.8359375}, {"start": 1154.74, "end": 1155.26, "word": " sophisticated", "probability": 0.87060546875}, {"start": 1155.26, "end": 1155.7, "word": " clients", "probability": 0.89111328125}, {"start": 1155.7, "end": 1155.9, "word": " from", "probability": 0.85791015625}, {"start": 1155.9, "end": 1156.34, "word": " accessing", "probability": 0.91015625}, {"start": 1156.34, "end": 1156.58, "word": " the", "probability": 0.8740234375}, {"start": 1156.58, "end": 1157.02, "word": " underlying", "probability": 0.802734375}, {"start": 1157.02, "end": 1157.74, "word": " classes", "probability": 0.8525390625}, {"start": 1157.74, "end": 1158.7, "word": " Note", "probability": 0.7275390625}, {"start": 1158.7, "end": 1158.98, "word": " that", "probability": 0.93115234375}, {"start": 1158.98, "end": 1159.3, "word": " Facade", "probability": 0.6741943359375}, {"start": 1159.3, "end": 1159.52, "word": " does", "probability": 0.89306640625}, {"start": 1159.52, "end": 1159.72, "word": " not", "probability": 0.947265625}, {"start": 1159.72, "end": 1159.98, "word": " add", "probability": 0.892578125}, {"start": 1159.98, "end": 1160.16, "word": " any", "probability": 0.86865234375}, {"start": 1160.16, "end": 1160.68, "word": " functionality,", "probability": 0.89501953125}, {"start": 1160.82, "end": 1160.94, "word": " it", "probability": 0.93701171875}, {"start": 1160.94, "end": 1161.22, "word": " just", "probability": 0.90185546875}, {"start": 1161.22, "end": 1161.8, "word": " simplifies", "probability": 0.9716796875}, {"start": 1161.8, "end": 1162.4, "word": " interfaces", "probability": 0.9658203125}, {"start": 1162.4, "end": 1163.3, "word": " Facade's", "probability": 0.565185546875}, {"start": 1163.3, "end": 1163.46, "word": " design", "probability": 0.7060546875}, {"start": 1163.46, "end": 1163.76, "word": " pattern", "probability": 0.857421875}, {"start": 1163.76, "end": 1163.86, "word": " is", "probability": 0.93310546875}, {"start": 1163.86, "end": 1164.08, "word": " simple,", "probability": 0.794921875}, {"start": 1164.2, "end": 1164.22, "word": " its", "probability": 0.5234375}, {"start": 1164.22, "end": 1164.4, "word": " goal", "probability": 0.51953125}, {"start": 1164.4, "end": 1166.7, "word": " is", "probability": 0.9443359375}, {"start": 1166.7, "end": 1166.8, "word": " to", "probability": 0.73876953125}, {"start": 1166.8, "end": 1167.32, "word": " simplify", "probability": 0.65283203125}, {"start": 1167.32, "end": 1167.84, "word": " the", "probability": 0.364501953125}, {"start": 1167.84, "end": 1168.14, "word": " use", "probability": 0.56103515625}, {"start": 1168.14, "end": 1168.68, "word": " of", "probability": 0.95654296875}, {"start": 1168.68, "end": 1168.78, "word": " the", "probability": 0.2529296875}, {"start": 1168.78, "end": 1169.1, "word": " API", "probability": 0.8798828125}], "temperature": 1.0}, {"id": 53, "seek": 120094, "start": 1171.56, "end": 1200.94, "text": " Okay, this is the example we came up with. We saw the video Conversion. Corruption vs. Factory. We talked about it. Both provide a face to facilitate something. But the factory facilitates the construction. Corruption facilitates the process or the use of subsystems in my system. Let's come to another design pattern. It's called the adapter pattern. And the adapter pattern is one of the design patterns used a lot and important. So what is the word adapter?", "tokens": [1033, 11, 341, 307, 264, 1365, 321, 1361, 493, 365, 13, 492, 1866, 264, 960, 2656, 29153, 13, 3925, 11266, 12041, 13, 33375, 827, 13, 492, 2825, 466, 309, 13, 6767, 2893, 257, 1851, 281, 20207, 746, 13, 583, 264, 9265, 10217, 30035, 264, 6435, 13, 3925, 11266, 10217, 30035, 264, 1399, 420, 264, 764, 295, 2090, 9321, 82, 294, 452, 1185, 13, 961, 311, 808, 281, 1071, 1715, 5102, 13, 467, 311, 1219, 264, 22860, 5102, 13, 400, 264, 22860, 5102, 307, 472, 295, 264, 1715, 8294, 1143, 257, 688, 293, 1021, 13, 407, 437, 307, 264, 1349, 22860, 30], "avg_logprob": -0.527879912479251, "compression_ratio": 1.7868217054263567, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 1171.56, "end": 1171.82, "word": " Okay,", "probability": 0.060577392578125}, {"start": 1171.94, "end": 1172.02, "word": " this", "probability": 0.56640625}, {"start": 1172.02, "end": 1172.02, "word": " is", "probability": 0.806640625}, {"start": 1172.02, "end": 1172.08, "word": " the", "probability": 0.80517578125}, {"start": 1172.08, "end": 1172.36, "word": " example", "probability": 0.89794921875}, {"start": 1172.36, "end": 1172.48, "word": " we", "probability": 0.5947265625}, {"start": 1172.48, "end": 1172.64, "word": " came", "probability": 0.08697509765625}, {"start": 1172.64, "end": 1172.86, "word": " up", "probability": 0.73779296875}, {"start": 1172.86, "end": 1172.86, "word": " with.", "probability": 0.87451171875}, {"start": 1173.2, "end": 1173.28, "word": " We", "probability": 0.70703125}, {"start": 1173.28, "end": 1173.42, "word": " saw", "probability": 0.658203125}, {"start": 1173.42, "end": 1173.54, "word": " the", "probability": 0.67529296875}, {"start": 1173.54, "end": 1173.76, "word": " video", "probability": 0.740234375}, {"start": 1173.76, "end": 1174.36, "word": " Conversion.", "probability": 0.5155029296875}, {"start": 1175.08, "end": 1175.62, "word": " Corruption", "probability": 0.77294921875}, {"start": 1175.62, "end": 1176.22, "word": " vs.", "probability": 0.421142578125}, {"start": 1176.46, "end": 1176.72, "word": " Factory.", "probability": 0.36700439453125}, {"start": 1176.76, "end": 1176.8, "word": " We", "probability": 0.5361328125}, {"start": 1176.8, "end": 1176.98, "word": " talked", "probability": 0.231201171875}, {"start": 1176.98, "end": 1177.22, "word": " about", "probability": 0.8896484375}, {"start": 1177.22, "end": 1177.62, "word": " it.", "probability": 0.351806640625}, {"start": 1177.82, "end": 1178.3, "word": " Both", "probability": 0.57568359375}, {"start": 1178.3, "end": 1179.12, "word": " provide", "probability": 0.2255859375}, {"start": 1179.12, "end": 1179.32, "word": " a", "probability": 0.77587890625}, {"start": 1179.32, "end": 1179.52, "word": " face", "probability": 0.230224609375}, {"start": 1179.52, "end": 1180.34, "word": " to", "probability": 0.64501953125}, {"start": 1180.34, "end": 1180.7, "word": " facilitate", "probability": 0.82958984375}, {"start": 1180.7, "end": 1181.04, "word": " something.", "probability": 0.53076171875}, {"start": 1181.2, "end": 1181.32, "word": " But", "probability": 0.71337890625}, {"start": 1181.32, "end": 1181.48, "word": " the", "probability": 0.52880859375}, {"start": 1181.48, "end": 1181.74, "word": " factory", "probability": 0.7060546875}, {"start": 1181.74, "end": 1182.12, "word": " facilitates", "probability": 0.8876953125}, {"start": 1182.12, "end": 1182.3, "word": " the", "probability": 0.47021484375}, {"start": 1182.3, "end": 1182.56, "word": " construction.", "probability": 0.418701171875}, {"start": 1183.32, "end": 1183.64, "word": " Corruption", "probability": 0.96142578125}, {"start": 1183.64, "end": 1183.94, "word": " facilitates", "probability": 0.9501953125}, {"start": 1183.94, "end": 1184.26, "word": " the", "probability": 0.70947265625}, {"start": 1184.26, "end": 1184.6, "word": " process", "probability": 0.87646484375}, {"start": 1184.6, "end": 1184.82, "word": " or", "probability": 0.8125}, {"start": 1184.82, "end": 1185.34, "word": " the", "probability": 0.445556640625}, {"start": 1185.34, "end": 1185.72, "word": " use", "probability": 0.86328125}, {"start": 1185.72, "end": 1185.98, "word": " of", "probability": 0.96630859375}, {"start": 1185.98, "end": 1187.68, "word": " subsystems", "probability": 0.9236653645833334}, {"start": 1187.68, "end": 1188.14, "word": " in", "probability": 0.8486328125}, {"start": 1188.14, "end": 1188.44, "word": " my", "probability": 0.337646484375}, {"start": 1188.44, "end": 1188.96, "word": " system.", "probability": 0.9482421875}, {"start": 1190.28, "end": 1190.54, "word": " Let's", "probability": 0.607421875}, {"start": 1190.54, "end": 1190.66, "word": " come", "probability": 0.305419921875}, {"start": 1190.66, "end": 1190.76, "word": " to", "probability": 0.96142578125}, {"start": 1190.76, "end": 1190.84, "word": " another", "probability": 0.89501953125}, {"start": 1190.84, "end": 1191.12, "word": " design", "probability": 0.85888671875}, {"start": 1191.12, "end": 1191.6, "word": " pattern.", "probability": 0.88232421875}, {"start": 1191.9, "end": 1192.04, "word": " It's", "probability": 0.59033203125}, {"start": 1192.04, "end": 1192.64, "word": " called", "probability": 0.8369140625}, {"start": 1192.64, "end": 1192.8, "word": " the", "probability": 0.63916015625}, {"start": 1192.8, "end": 1193.12, "word": " adapter", "probability": 0.450439453125}, {"start": 1193.12, "end": 1193.56, "word": " pattern.", "probability": 0.89013671875}, {"start": 1194.3, "end": 1194.36, "word": " And", "probability": 0.37744140625}, {"start": 1194.36, "end": 1194.42, "word": " the", "probability": 0.5087890625}, {"start": 1194.42, "end": 1194.7, "word": " adapter", "probability": 0.68408203125}, {"start": 1194.7, "end": 1195.08, "word": " pattern", "probability": 0.8515625}, {"start": 1195.08, "end": 1195.24, "word": " is", "probability": 0.73291015625}, {"start": 1195.24, "end": 1195.42, "word": " one", "probability": 0.76025390625}, {"start": 1195.42, "end": 1195.8, "word": " of", "probability": 0.587890625}, {"start": 1195.8, "end": 1196.32, "word": " the", "probability": 0.798828125}, {"start": 1196.32, "end": 1196.6, "word": " design", "probability": 0.86083984375}, {"start": 1196.6, "end": 1196.96, "word": " patterns", "probability": 0.90380859375}, {"start": 1196.96, "end": 1197.46, "word": " used", "probability": 0.450439453125}, {"start": 1197.46, "end": 1197.84, "word": " a", "probability": 0.1436767578125}, {"start": 1197.84, "end": 1198.18, "word": " lot", "probability": 0.95068359375}, {"start": 1198.18, "end": 1198.8, "word": " and", "probability": 0.67822265625}, {"start": 1198.8, "end": 1199.14, "word": " important.", "probability": 0.308837890625}, {"start": 1199.8, "end": 1200.14, "word": " So", "probability": 0.486572265625}, {"start": 1200.14, "end": 1200.28, "word": " what", "probability": 0.63818359375}, {"start": 1200.28, "end": 1200.36, "word": " is", "probability": 0.76953125}, {"start": 1200.36, "end": 1200.42, "word": " the", "probability": 0.77880859375}, {"start": 1200.42, "end": 1200.58, "word": " word", "probability": 0.70458984375}, {"start": 1200.58, "end": 1200.94, "word": " adapter?", "probability": 0.69775390625}], "temperature": 1.0}, {"id": 54, "seek": 121506, "start": 1202.54, "end": 1215.06, "text": "It's a conversion. For example, when you travel abroad, you will find that each country has a different power supply, not all of them are the same. For example, you go to a hotel and ask for a socket adapter.", "tokens": [3522, 311, 257, 14298, 13, 1171, 1365, 11, 562, 291, 3147, 12637, 11, 291, 486, 915, 300, 1184, 1941, 575, 257, 819, 1347, 5847, 11, 406, 439, 295, 552, 366, 264, 912, 13, 1171, 1365, 11, 291, 352, 281, 257, 7622, 293, 1029, 337, 257, 19741, 22860, 13], "avg_logprob": -0.515625, "compression_ratio": 1.4054054054054055, "no_speech_prob": 1.430511474609375e-06, "words": [{"start": 1202.54, "end": 1202.98, "word": "It's", "probability": 0.514404296875}, {"start": 1202.98, "end": 1202.98, "word": " a", "probability": 0.65673828125}, {"start": 1202.98, "end": 1203.24, "word": " conversion.", "probability": 0.38525390625}, {"start": 1203.64, "end": 1203.96, "word": " For", "probability": 0.2529296875}, {"start": 1203.96, "end": 1204.0, "word": " example,", "probability": 0.87353515625}, {"start": 1204.0, "end": 1204.08, "word": " when", "probability": 0.662109375}, {"start": 1204.08, "end": 1204.2, "word": " you", "probability": 0.935546875}, {"start": 1204.2, "end": 1204.42, "word": " travel", "probability": 0.6806640625}, {"start": 1204.42, "end": 1204.82, "word": " abroad,", "probability": 0.8876953125}, {"start": 1206.82, "end": 1207.04, "word": " you", "probability": 0.8125}, {"start": 1207.04, "end": 1207.26, "word": " will", "probability": 0.41748046875}, {"start": 1207.26, "end": 1207.6, "word": " find", "probability": 0.7490234375}, {"start": 1207.6, "end": 1207.7, "word": " that", "probability": 0.384521484375}, {"start": 1207.7, "end": 1207.88, "word": " each", "probability": 0.404296875}, {"start": 1207.88, "end": 1208.18, "word": " country", "probability": 0.8935546875}, {"start": 1208.18, "end": 1208.6, "word": " has", "probability": 0.91064453125}, {"start": 1208.6, "end": 1208.74, "word": " a", "probability": 0.438232421875}, {"start": 1208.74, "end": 1208.74, "word": " different", "probability": 0.8369140625}, {"start": 1208.74, "end": 1209.04, "word": " power", "probability": 0.189208984375}, {"start": 1209.04, "end": 1209.46, "word": " supply,", "probability": 0.441650390625}, {"start": 1209.68, "end": 1210.64, "word": " not", "probability": 0.517578125}, {"start": 1210.64, "end": 1210.84, "word": " all", "probability": 0.93212890625}, {"start": 1210.84, "end": 1210.9, "word": " of", "probability": 0.8017578125}, {"start": 1210.9, "end": 1210.9, "word": " them", "probability": 0.79248046875}, {"start": 1210.9, "end": 1210.94, "word": " are", "probability": 0.6396484375}, {"start": 1210.94, "end": 1211.02, "word": " the", "probability": 0.5146484375}, {"start": 1211.02, "end": 1211.12, "word": " same.", "probability": 0.90380859375}, {"start": 1211.7, "end": 1211.88, "word": " For", "probability": 0.475341796875}, {"start": 1211.88, "end": 1213.22, "word": " example,", "probability": 0.93310546875}, {"start": 1213.22, "end": 1213.22, "word": " you", "probability": 0.3974609375}, {"start": 1213.22, "end": 1213.36, "word": " go", "probability": 0.72802734375}, {"start": 1213.36, "end": 1213.94, "word": " to", "probability": 0.93359375}, {"start": 1213.94, "end": 1214.02, "word": " a", "probability": 0.91845703125}, {"start": 1214.02, "end": 1214.28, "word": " hotel", "probability": 0.94677734375}, {"start": 1214.28, "end": 1214.42, "word": " and", "probability": 0.7392578125}, {"start": 1214.42, "end": 1214.56, "word": " ask", "probability": 0.319580078125}, {"start": 1214.56, "end": 1214.82, "word": " for", "probability": 0.52490234375}, {"start": 1214.82, "end": 1214.94, "word": " a", "probability": 0.634765625}, {"start": 1214.94, "end": 1215.06, "word": " socket", "probability": 0.5107421875}, {"start": 1215.06, "end": 1215.06, "word": " adapter.", "probability": 0.8076171875}], "temperature": 1.0}, {"id": 55, "seek": 124256, "start": 1221.46, "end": 1242.56, "text": "This socket is called socket and adapter is called converter Now this idea is exactly the same. Adapter is a converter But it is not a converter between electricity wires but between software to another software Let me explain you the existing problem", "tokens": [5723, 19741, 307, 1219, 19741, 293, 22860, 307, 1219, 33905, 823, 341, 1558, 307, 2293, 264, 912, 13, 1999, 5446, 307, 257, 33905, 583, 309, 307, 406, 257, 33905, 1296, 10356, 15537, 457, 1296, 4722, 281, 1071, 4722, 961, 385, 2903, 291, 264, 6741, 1154], "avg_logprob": -0.7425271752087966, "compression_ratio": 1.6405228758169934, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1221.46, "end": 1222.1, "word": "This", "probability": 0.1763916015625}, {"start": 1222.1, "end": 1222.32, "word": " socket", "probability": 0.1744384765625}, {"start": 1222.32, "end": 1222.56, "word": " is", "probability": 0.56005859375}, {"start": 1222.56, "end": 1223.64, "word": " called", "probability": 0.3447265625}, {"start": 1223.64, "end": 1224.08, "word": " socket", "probability": 0.190673828125}, {"start": 1224.08, "end": 1224.56, "word": " and", "probability": 0.1612548828125}, {"start": 1224.56, "end": 1224.9, "word": " adapter", "probability": 0.72265625}, {"start": 1224.9, "end": 1225.44, "word": " is", "probability": 0.677734375}, {"start": 1225.44, "end": 1225.62, "word": " called", "probability": 0.244140625}, {"start": 1225.62, "end": 1226.5, "word": " converter", "probability": 0.66162109375}, {"start": 1226.5, "end": 1227.72, "word": " Now", "probability": 0.183837890625}, {"start": 1227.72, "end": 1229.16, "word": " this", "probability": 0.45166015625}, {"start": 1229.16, "end": 1229.6, "word": " idea", "probability": 0.2098388671875}, {"start": 1229.6, "end": 1230.02, "word": " is", "probability": 0.8896484375}, {"start": 1230.02, "end": 1230.14, "word": " exactly", "probability": 0.521484375}, {"start": 1230.14, "end": 1230.14, "word": " the", "probability": 0.82958984375}, {"start": 1230.14, "end": 1230.6, "word": " same.", "probability": 0.904296875}, {"start": 1231.02, "end": 1231.52, "word": " Adapter", "probability": 0.658935546875}, {"start": 1231.52, "end": 1231.86, "word": " is", "probability": 0.8623046875}, {"start": 1231.86, "end": 1232.12, "word": " a", "probability": 0.4248046875}, {"start": 1232.12, "end": 1232.46, "word": " converter", "probability": 0.30029296875}, {"start": 1232.46, "end": 1233.74, "word": " But", "probability": 0.273193359375}, {"start": 1233.74, "end": 1234.24, "word": " it", "probability": 0.448486328125}, {"start": 1234.24, "end": 1234.24, "word": " is", "probability": 0.544921875}, {"start": 1234.24, "end": 1234.38, "word": " not", "probability": 0.7275390625}, {"start": 1234.38, "end": 1234.48, "word": " a", "probability": 0.55712890625}, {"start": 1234.48, "end": 1234.48, "word": " converter", "probability": 0.46484375}, {"start": 1234.48, "end": 1234.92, "word": " between", "probability": 0.55517578125}, {"start": 1234.92, "end": 1235.42, "word": " electricity", "probability": 0.2081298828125}, {"start": 1235.42, "end": 1235.52, "word": " wires", "probability": 0.5126953125}, {"start": 1235.52, "end": 1236.88, "word": " but", "probability": 0.2568359375}, {"start": 1236.88, "end": 1237.22, "word": " between", "probability": 0.5517578125}, {"start": 1237.22, "end": 1238.08, "word": " software", "probability": 0.57275390625}, {"start": 1238.08, "end": 1238.24, "word": " to", "probability": 0.8603515625}, {"start": 1238.24, "end": 1239.92, "word": " another", "probability": 0.73974609375}, {"start": 1239.92, "end": 1240.04, "word": " software", "probability": 0.93505859375}, {"start": 1240.04, "end": 1241.08, "word": " Let", "probability": 0.71533203125}, {"start": 1241.08, "end": 1241.38, "word": " me", "probability": 0.9033203125}, {"start": 1241.38, "end": 1241.6, "word": " explain", "probability": 0.8486328125}, {"start": 1241.6, "end": 1241.82, "word": " you", "probability": 0.287353515625}, {"start": 1241.82, "end": 1241.88, "word": " the", "probability": 0.76904296875}, {"start": 1241.88, "end": 1242.56, "word": " existing", "probability": 0.58056640625}, {"start": 1242.56, "end": 1242.56, "word": " problem", "probability": 0.8212890625}], "temperature": 1.0}, {"id": 56, "seek": 126659, "start": 1244.64, "end": 1266.6, "text": "Imagine that you are running an application and in your application you are using an external library. For example, you used the library X.", "tokens": [31128, 10260, 300, 291, 366, 2614, 364, 3861, 293, 294, 428, 3861, 291, 366, 1228, 364, 8320, 6405, 13, 1171, 1365, 11, 291, 1143, 264, 6405, 1783, 13], "avg_logprob": -0.7672413875316751, "compression_ratio": 1.3762376237623761, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 1244.6399999999999, "end": 1245.36, "word": "Imagine", "probability": 0.6417236328125}, {"start": 1245.36, "end": 1245.56, "word": " that", "probability": 0.4501953125}, {"start": 1245.56, "end": 1245.7, "word": " you", "probability": 0.91796875}, {"start": 1245.7, "end": 1245.76, "word": " are", "probability": 0.48388671875}, {"start": 1245.76, "end": 1245.98, "word": " running", "probability": 0.4375}, {"start": 1245.98, "end": 1246.24, "word": " an", "probability": 0.76318359375}, {"start": 1246.24, "end": 1246.74, "word": " application", "probability": 0.8818359375}, {"start": 1246.74, "end": 1247.32, "word": " and", "probability": 0.42724609375}, {"start": 1247.32, "end": 1247.84, "word": " in", "probability": 0.1614990234375}, {"start": 1247.84, "end": 1248.04, "word": " your", "probability": 0.452880859375}, {"start": 1248.04, "end": 1248.8, "word": " application", "probability": 0.8251953125}, {"start": 1248.8, "end": 1251.94, "word": " you", "probability": 0.358642578125}, {"start": 1251.94, "end": 1259.18, "word": " are", "probability": 0.0965576171875}, {"start": 1259.18, "end": 1261.62, "word": " using", "probability": 0.61279296875}, {"start": 1261.62, "end": 1263.24, "word": " an", "probability": 0.22412109375}, {"start": 1263.24, "end": 1263.24, "word": " external", "probability": 0.62158203125}, {"start": 1263.24, "end": 1263.62, "word": " library.", "probability": 0.83349609375}, {"start": 1264.72, "end": 1264.84, "word": " For", "probability": 0.47998046875}, {"start": 1264.84, "end": 1265.06, "word": " example,", "probability": 0.91162109375}, {"start": 1265.18, "end": 1265.3, "word": " you", "probability": 0.5615234375}, {"start": 1265.3, "end": 1265.76, "word": " used", "probability": 0.44384765625}, {"start": 1265.76, "end": 1266.1, "word": " the", "probability": 0.187255859375}, {"start": 1266.1, "end": 1266.3, "word": " library", "probability": 0.274169921875}, {"start": 1266.3, "end": 1266.6, "word": " X.", "probability": 0.5595703125}], "temperature": 1.0}, {"id": 57, "seek": 129052, "start": 1267.36, "end": 1290.52, "text": "it could be for example a mobile application and you are using a library to make a connection to the server and make a request or another library to make a connection to a database or firebase or something else and of course this has methods A, B, C and from your application you have 50 classes here and these classes claim", "tokens": [270, 727, 312, 337, 1365, 257, 6013, 3861, 293, 291, 366, 1228, 257, 6405, 281, 652, 257, 4984, 281, 264, 7154, 293, 652, 257, 5308, 420, 1071, 6405, 281, 652, 257, 4984, 281, 257, 8149, 420, 2610, 17429, 420, 746, 1646, 293, 295, 1164, 341, 575, 7150, 316, 11, 363, 11, 383, 293, 490, 428, 3861, 291, 362, 2625, 5359, 510, 293, 613, 5359, 3932], "avg_logprob": -0.47395832159302453, "compression_ratio": 1.7608695652173914, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 1267.36, "end": 1267.54, "word": "it", "probability": 0.090576171875}, {"start": 1267.54, "end": 1267.9, "word": " could", "probability": 0.42431640625}, {"start": 1267.9, "end": 1268.2, "word": " be", "probability": 0.912109375}, {"start": 1268.2, "end": 1268.32, "word": " for", "probability": 0.291259765625}, {"start": 1268.32, "end": 1268.48, "word": " example", "probability": 0.89208984375}, {"start": 1268.48, "end": 1268.72, "word": " a", "probability": 0.31982421875}, {"start": 1268.72, "end": 1268.92, "word": " mobile", "probability": 0.90869140625}, {"start": 1268.92, "end": 1269.48, "word": " application", "probability": 0.85888671875}, {"start": 1269.48, "end": 1269.64, "word": " and", "probability": 0.361572265625}, {"start": 1269.64, "end": 1269.76, "word": " you", "probability": 0.9052734375}, {"start": 1269.76, "end": 1269.86, "word": " are", "probability": 0.50537109375}, {"start": 1269.86, "end": 1270.1, "word": " using", "probability": 0.92626953125}, {"start": 1270.1, "end": 1270.6, "word": " a", "probability": 0.552734375}, {"start": 1270.6, "end": 1270.6, "word": " library", "probability": 0.77197265625}, {"start": 1270.6, "end": 1271.24, "word": " to", "probability": 0.87451171875}, {"start": 1271.24, "end": 1271.5, "word": " make", "probability": 0.42138671875}, {"start": 1271.5, "end": 1271.72, "word": " a", "probability": 0.409423828125}, {"start": 1271.72, "end": 1272.12, "word": " connection", "probability": 0.8193359375}, {"start": 1272.12, "end": 1272.34, "word": " to", "probability": 0.5126953125}, {"start": 1272.34, "end": 1272.44, "word": " the", "probability": 0.65234375}, {"start": 1272.44, "end": 1272.7, "word": " server", "probability": 0.9326171875}, {"start": 1272.7, "end": 1272.84, "word": " and", "probability": 0.5302734375}, {"start": 1272.84, "end": 1273.0, "word": " make", "probability": 0.63818359375}, {"start": 1273.0, "end": 1273.06, "word": " a", "probability": 0.724609375}, {"start": 1273.06, "end": 1273.44, "word": " request", "probability": 0.9677734375}, {"start": 1273.44, "end": 1273.98, "word": " or", "probability": 0.7421875}, {"start": 1273.98, "end": 1274.04, "word": " another", "probability": 0.79052734375}, {"start": 1274.04, "end": 1274.34, "word": " library", "probability": 0.89208984375}, {"start": 1274.34, "end": 1274.7, "word": " to", "probability": 0.583984375}, {"start": 1274.7, "end": 1274.96, "word": " make", "probability": 0.4072265625}, {"start": 1274.96, "end": 1275.04, "word": " a", "probability": 0.845703125}, {"start": 1275.04, "end": 1275.04, "word": " connection", "probability": 0.89501953125}, {"start": 1275.04, "end": 1275.2, "word": " to", "probability": 0.9052734375}, {"start": 1275.2, "end": 1275.32, "word": " a", "probability": 0.59130859375}, {"start": 1275.32, "end": 1275.7, "word": " database", "probability": 0.85693359375}, {"start": 1275.7, "end": 1275.92, "word": " or", "probability": 0.779296875}, {"start": 1275.92, "end": 1276.54, "word": " firebase", "probability": 0.72900390625}, {"start": 1276.54, "end": 1276.68, "word": " or", "probability": 0.8642578125}, {"start": 1276.68, "end": 1276.88, "word": " something", "probability": 0.223388671875}, {"start": 1276.88, "end": 1277.5, "word": " else", "probability": 0.475830078125}, {"start": 1277.5, "end": 1278.84, "word": " and", "probability": 0.20166015625}, {"start": 1278.84, "end": 1280.04, "word": " of", "probability": 0.8046875}, {"start": 1280.04, "end": 1280.14, "word": " course", "probability": 0.91015625}, {"start": 1280.14, "end": 1280.4, "word": " this", "probability": 0.390869140625}, {"start": 1280.4, "end": 1280.56, "word": " has", "probability": 0.64794921875}, {"start": 1280.56, "end": 1281.02, "word": " methods", "probability": 0.802734375}, {"start": 1281.02, "end": 1281.6, "word": " A,", "probability": 0.49853515625}, {"start": 1281.72, "end": 1282.88, "word": " B,", "probability": 0.48876953125}, {"start": 1283.34, "end": 1283.78, "word": " C", "probability": 0.9384765625}, {"start": 1283.78, "end": 1284.9, "word": " and", "probability": 0.7041015625}, {"start": 1284.9, "end": 1285.06, "word": " from", "probability": 0.724609375}, {"start": 1285.06, "end": 1285.14, "word": " your", "probability": 0.81494140625}, {"start": 1285.14, "end": 1285.74, "word": " application", "probability": 0.8916015625}, {"start": 1285.74, "end": 1286.14, "word": " you", "probability": 0.55810546875}, {"start": 1286.14, "end": 1286.36, "word": " have", "probability": 0.89794921875}, {"start": 1286.36, "end": 1286.92, "word": " 50", "probability": 0.765625}, {"start": 1286.92, "end": 1287.42, "word": " classes", "probability": 0.8935546875}, {"start": 1287.42, "end": 1287.74, "word": " here", "probability": 0.59423828125}, {"start": 1287.74, "end": 1288.34, "word": " and", "probability": 0.8310546875}, {"start": 1288.34, "end": 1288.46, "word": " these", "probability": 0.56689453125}, {"start": 1288.46, "end": 1288.9, "word": " classes", "probability": 0.89892578125}, {"start": 1288.9, "end": 1290.52, "word": " claim", "probability": 0.1531982421875}], "temperature": 1.0}, {"id": 58, "seek": 131339, "start": 1291.63, "end": 1313.39, "text": "The methods in the library, this is normal, this is a mobile application, every work is on the server, right or not? They came one day and took out a new library, what is its name? Y, okay? And it has methods like these, but their names are different, AABBCC", "tokens": [2278, 7150, 294, 264, 6405, 11, 341, 307, 2710, 11, 341, 307, 257, 6013, 3861, 11, 633, 589, 307, 322, 264, 7154, 11, 558, 420, 406, 30, 814, 1361, 472, 786, 293, 1890, 484, 257, 777, 6405, 11, 437, 307, 1080, 1315, 30, 398, 11, 1392, 30, 400, 309, 575, 7150, 411, 613, 11, 457, 641, 5288, 366, 819, 11, 316, 13868, 7869, 34], "avg_logprob": -0.4980769230769231, "compression_ratio": 1.5, "no_speech_prob": 2.562999725341797e-06, "words": [{"start": 1291.63, "end": 1291.89, "word": "The", "probability": 0.31640625}, {"start": 1291.89, "end": 1292.21, "word": " methods", "probability": 0.66552734375}, {"start": 1292.21, "end": 1292.69, "word": " in", "probability": 0.220458984375}, {"start": 1292.69, "end": 1292.81, "word": " the", "probability": 0.74072265625}, {"start": 1292.81, "end": 1293.11, "word": " library,", "probability": 0.75}, {"start": 1293.37, "end": 1293.55, "word": " this", "probability": 0.364990234375}, {"start": 1293.55, "end": 1293.57, "word": " is", "probability": 0.83935546875}, {"start": 1293.57, "end": 1293.91, "word": " normal,", "probability": 0.6533203125}, {"start": 1294.59, "end": 1294.83, "word": " this", "probability": 0.51025390625}, {"start": 1294.83, "end": 1294.85, "word": " is", "probability": 0.89794921875}, {"start": 1294.85, "end": 1294.97, "word": " a", "probability": 0.8583984375}, {"start": 1294.97, "end": 1295.09, "word": " mobile", "probability": 0.91943359375}, {"start": 1295.09, "end": 1295.59, "word": " application,", "probability": 0.8798828125}, {"start": 1295.71, "end": 1295.85, "word": " every", "probability": 0.2705078125}, {"start": 1295.85, "end": 1296.11, "word": " work", "probability": 0.29541015625}, {"start": 1296.11, "end": 1296.29, "word": " is", "probability": 0.6474609375}, {"start": 1296.29, "end": 1296.45, "word": " on", "probability": 0.787109375}, {"start": 1296.45, "end": 1296.57, "word": " the", "probability": 0.658203125}, {"start": 1296.57, "end": 1296.89, "word": " server,", "probability": 0.89111328125}, {"start": 1297.49, "end": 1297.71, "word": " right", "probability": 0.52734375}, {"start": 1297.71, "end": 1297.89, "word": " or", "probability": 0.7177734375}, {"start": 1297.89, "end": 1297.95, "word": " not?", "probability": 0.66357421875}, {"start": 1298.57, "end": 1298.83, "word": " They", "probability": 0.12237548828125}, {"start": 1298.83, "end": 1299.01, "word": " came", "probability": 0.599609375}, {"start": 1299.01, "end": 1299.19, "word": " one", "probability": 0.43212890625}, {"start": 1299.19, "end": 1299.35, "word": " day", "probability": 0.92626953125}, {"start": 1299.35, "end": 1299.47, "word": " and", "probability": 0.5556640625}, {"start": 1299.47, "end": 1300.13, "word": " took", "probability": 0.273681640625}, {"start": 1300.13, "end": 1300.39, "word": " out", "probability": 0.81298828125}, {"start": 1300.39, "end": 1300.45, "word": " a", "probability": 0.94677734375}, {"start": 1300.45, "end": 1300.97, "word": " new", "probability": 0.87841796875}, {"start": 1300.97, "end": 1300.99, "word": " library,", "probability": 0.9228515625}, {"start": 1301.55, "end": 1301.91, "word": " what", "probability": 0.6025390625}, {"start": 1301.91, "end": 1301.91, "word": " is", "probability": 0.42626953125}, {"start": 1301.91, "end": 1302.23, "word": " its", "probability": 0.399169921875}, {"start": 1302.23, "end": 1302.23, "word": " name?", "probability": 0.90087890625}, {"start": 1304.27, "end": 1304.79, "word": " Y,", "probability": 0.70068359375}, {"start": 1305.67, "end": 1305.95, "word": " okay?", "probability": 0.359375}, {"start": 1306.43, "end": 1306.69, "word": " And", "probability": 0.6298828125}, {"start": 1306.69, "end": 1306.87, "word": " it", "probability": 0.7060546875}, {"start": 1306.87, "end": 1306.95, "word": " has", "probability": 0.7314453125}, {"start": 1306.95, "end": 1307.49, "word": " methods", "probability": 0.8818359375}, {"start": 1307.49, "end": 1308.41, "word": " like", "probability": 0.78662109375}, {"start": 1308.41, "end": 1308.71, "word": " these,", "probability": 0.61572265625}, {"start": 1308.77, "end": 1308.95, "word": " but", "probability": 0.90576171875}, {"start": 1308.95, "end": 1309.21, "word": " their", "probability": 0.56640625}, {"start": 1309.21, "end": 1309.49, "word": " names", "probability": 0.763671875}, {"start": 1309.49, "end": 1309.71, "word": " are", "probability": 0.93603515625}, {"start": 1309.71, "end": 1310.11, "word": " different,", "probability": 0.88671875}, {"start": 1310.25, "end": 1313.39, "word": " AABBCC", "probability": 0.702880859375}], "temperature": 1.0}, {"id": 59, "seek": 134104, "start": 1315.58, "end": 1341.04, "text": "Okay? And he said this library is faster than this library and better So I said let's change our application that instead of using this library, we want to use which one? The second library Of course this is not easy because actually my library has, for example, say 100 applicants for whom? For this library What do the young people do? Okay, let's change it. After a whole week", "tokens": [8297, 30, 400, 415, 848, 341, 6405, 307, 4663, 813, 341, 6405, 293, 1101, 407, 286, 848, 718, 311, 1319, 527, 3861, 300, 2602, 295, 1228, 341, 6405, 11, 321, 528, 281, 764, 597, 472, 30, 440, 1150, 6405, 2720, 1164, 341, 307, 406, 1858, 570, 767, 452, 6405, 575, 11, 337, 1365, 11, 584, 2319, 28767, 337, 7101, 30, 1171, 341, 6405, 708, 360, 264, 2037, 561, 360, 30, 1033, 11, 718, 311, 1319, 309, 13, 2381, 257, 1379, 1243], "avg_logprob": -0.5419207251653438, "compression_ratio": 1.6550218340611353, "no_speech_prob": 1.0371208190917969e-05, "words": [{"start": 1315.58, "end": 1316.08, "word": "Okay?", "probability": 0.11688232421875}, {"start": 1316.62, "end": 1317.0, "word": " And", "probability": 0.5546875}, {"start": 1317.0, "end": 1317.04, "word": " he", "probability": 0.662109375}, {"start": 1317.04, "end": 1317.2, "word": " said", "probability": 0.43798828125}, {"start": 1317.2, "end": 1317.56, "word": " this", "probability": 0.31982421875}, {"start": 1317.56, "end": 1317.92, "word": " library", "probability": 0.68359375}, {"start": 1317.92, "end": 1318.1, "word": " is", "probability": 0.8466796875}, {"start": 1318.1, "end": 1318.34, "word": " faster", "probability": 0.81884765625}, {"start": 1318.34, "end": 1318.48, "word": " than", "probability": 0.60546875}, {"start": 1318.48, "end": 1319.04, "word": " this", "probability": 0.53662109375}, {"start": 1319.04, "end": 1319.04, "word": " library", "probability": 0.796875}, {"start": 1319.04, "end": 1319.12, "word": " and", "probability": 0.76220703125}, {"start": 1319.12, "end": 1319.38, "word": " better", "probability": 0.748046875}, {"start": 1319.38, "end": 1319.82, "word": " So", "probability": 0.43505859375}, {"start": 1319.82, "end": 1319.98, "word": " I", "probability": 0.29345703125}, {"start": 1319.98, "end": 1319.98, "word": " said", "probability": 0.77685546875}, {"start": 1319.98, "end": 1320.3, "word": " let's", "probability": 0.661376953125}, {"start": 1320.3, "end": 1320.8, "word": " change", "probability": 0.8408203125}, {"start": 1320.8, "end": 1320.98, "word": " our", "probability": 0.82421875}, {"start": 1320.98, "end": 1321.34, "word": " application", "probability": 0.53515625}, {"start": 1321.34, "end": 1321.8, "word": " that", "probability": 0.13623046875}, {"start": 1321.8, "end": 1322.0, "word": " instead", "probability": 0.77734375}, {"start": 1322.0, "end": 1322.08, "word": " of", "probability": 0.9580078125}, {"start": 1322.08, "end": 1322.48, "word": " using", "probability": 0.91064453125}, {"start": 1322.48, "end": 1322.6, "word": " this", "probability": 0.92431640625}, {"start": 1322.6, "end": 1323.12, "word": " library,", "probability": 0.95654296875}, {"start": 1324.4, "end": 1324.42, "word": " we", "probability": 0.822265625}, {"start": 1324.42, "end": 1324.56, "word": " want", "probability": 0.2308349609375}, {"start": 1324.56, "end": 1324.68, "word": " to", "probability": 0.97021484375}, {"start": 1324.68, "end": 1325.0, "word": " use", "probability": 0.86474609375}, {"start": 1325.0, "end": 1325.18, "word": " which", "probability": 0.346923828125}, {"start": 1325.18, "end": 1326.06, "word": " one?", "probability": 0.56201171875}, {"start": 1326.4, "end": 1326.9, "word": " The", "probability": 0.748046875}, {"start": 1326.9, "end": 1327.48, "word": " second", "probability": 0.58349609375}, {"start": 1327.48, "end": 1327.48, "word": " library", "probability": 0.92138671875}, {"start": 1327.48, "end": 1329.0, "word": " Of", "probability": 0.6845703125}, {"start": 1329.0, "end": 1329.1, "word": " course", "probability": 0.9296875}, {"start": 1329.1, "end": 1329.32, "word": " this", "probability": 0.50830078125}, {"start": 1329.32, "end": 1329.4, "word": " is", "probability": 0.830078125}, {"start": 1329.4, "end": 1329.48, "word": " not", "probability": 0.93359375}, {"start": 1329.48, "end": 1329.78, "word": " easy", "probability": 0.85400390625}, {"start": 1329.78, "end": 1330.62, "word": " because", "probability": 0.5966796875}, {"start": 1330.62, "end": 1331.2, "word": " actually", "probability": 0.2388916015625}, {"start": 1331.2, "end": 1331.52, "word": " my", "probability": 0.85693359375}, {"start": 1331.52, "end": 1332.0, "word": " library", "probability": 0.94775390625}, {"start": 1332.0, "end": 1332.98, "word": " has,", "probability": 0.52978515625}, {"start": 1333.2, "end": 1333.34, "word": " for", "probability": 0.81787109375}, {"start": 1333.34, "end": 1333.5, "word": " example,", "probability": 0.95263671875}, {"start": 1333.6, "end": 1333.74, "word": " say", "probability": 0.1846923828125}, {"start": 1333.74, "end": 1333.94, "word": " 100", "probability": 0.305419921875}, {"start": 1333.94, "end": 1334.36, "word": " applicants", "probability": 0.345458984375}, {"start": 1334.36, "end": 1334.64, "word": " for", "probability": 0.405517578125}, {"start": 1334.64, "end": 1334.84, "word": " whom?", "probability": 0.5546875}, {"start": 1335.54, "end": 1335.84, "word": " For", "probability": 0.3115234375}, {"start": 1335.84, "end": 1335.94, "word": " this", "probability": 0.93017578125}, {"start": 1335.94, "end": 1336.28, "word": " library", "probability": 0.95556640625}, {"start": 1336.28, "end": 1337.72, "word": " What", "probability": 0.68359375}, {"start": 1337.72, "end": 1338.0, "word": " do", "probability": 0.91845703125}, {"start": 1338.0, "end": 1338.12, "word": " the", "probability": 0.58447265625}, {"start": 1338.12, "end": 1338.28, "word": " young", "probability": 0.340087890625}, {"start": 1338.28, "end": 1338.44, "word": " people", "probability": 0.69775390625}, {"start": 1338.44, "end": 1338.44, "word": " do?", "probability": 0.958984375}, {"start": 1339.06, "end": 1339.44, "word": " Okay,", "probability": 0.426025390625}, {"start": 1339.56, "end": 1339.86, "word": " let's", "probability": 0.894287109375}, {"start": 1339.86, "end": 1340.2, "word": " change", "probability": 0.88134765625}, {"start": 1340.2, "end": 1340.36, "word": " it.", "probability": 0.62353515625}, {"start": 1340.46, "end": 1340.66, "word": " After", "probability": 0.10723876953125}, {"start": 1340.66, "end": 1340.82, "word": " a", "probability": 0.87353515625}, {"start": 1340.82, "end": 1340.82, "word": " whole", "probability": 0.445556640625}, {"start": 1340.82, "end": 1341.04, "word": " week", "probability": 0.94140625}], "temperature": 1.0}, {"id": 60, "seek": 137055, "start": 1342.49, "end": 1370.55, "text": "and it will bring this and create objects from Y and instead of asking for A, it will ask for AA and of course this input might be different from the input you get from this and the return might also be different so it will say bring, bring, change and adjust to fit your application to this and it will be late for the production of your program and you will be late for the appointment because the transformation also needs testing", "tokens": [474, 309, 486, 1565, 341, 293, 1884, 6565, 490, 398, 293, 2602, 295, 3365, 337, 316, 11, 309, 486, 1029, 337, 30680, 293, 295, 1164, 341, 4846, 1062, 312, 819, 490, 264, 4846, 291, 483, 490, 341, 293, 264, 2736, 1062, 611, 312, 819, 370, 309, 486, 584, 1565, 11, 1565, 11, 1319, 293, 4369, 281, 3318, 428, 3861, 281, 341, 293, 309, 486, 312, 3469, 337, 264, 4265, 295, 428, 1461, 293, 291, 486, 312, 3469, 337, 264, 13653, 570, 264, 9887, 611, 2203, 4997], "avg_logprob": -0.7230603434573645, "compression_ratio": 1.9244444444444444, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 1342.49, "end": 1342.69, "word": "and", "probability": 0.06341552734375}, {"start": 1342.69, "end": 1342.89, "word": " it", "probability": 0.1973876953125}, {"start": 1342.89, "end": 1343.27, "word": " will", "probability": 0.1431884765625}, {"start": 1343.27, "end": 1343.51, "word": " bring", "probability": 0.1517333984375}, {"start": 1343.51, "end": 1343.77, "word": " this", "probability": 0.457275390625}, {"start": 1343.77, "end": 1344.15, "word": " and", "probability": 0.25341796875}, {"start": 1344.15, "end": 1344.93, "word": " create", "probability": 0.451171875}, {"start": 1344.93, "end": 1345.39, "word": " objects", "probability": 0.88916015625}, {"start": 1345.39, "end": 1345.55, "word": " from", "probability": 0.65087890625}, {"start": 1345.55, "end": 1345.89, "word": " Y", "probability": 0.57958984375}, {"start": 1345.89, "end": 1346.59, "word": " and", "probability": 0.57177734375}, {"start": 1346.59, "end": 1346.79, "word": " instead", "probability": 0.630859375}, {"start": 1346.79, "end": 1346.91, "word": " of", "probability": 0.95458984375}, {"start": 1346.91, "end": 1347.31, "word": " asking", "probability": 0.1339111328125}, {"start": 1347.31, "end": 1347.35, "word": " for", "probability": 0.54833984375}, {"start": 1347.35, "end": 1347.59, "word": " A,", "probability": 0.33984375}, {"start": 1347.71, "end": 1347.75, "word": " it", "probability": 0.7626953125}, {"start": 1347.75, "end": 1347.79, "word": " will", "probability": 0.308349609375}, {"start": 1347.79, "end": 1347.97, "word": " ask", "probability": 0.8154296875}, {"start": 1347.97, "end": 1348.09, "word": " for", "probability": 0.8935546875}, {"start": 1348.09, "end": 1348.37, "word": " AA", "probability": 0.296875}, {"start": 1348.37, "end": 1349.27, "word": " and", "probability": 0.45458984375}, {"start": 1349.27, "end": 1349.43, "word": " of", "probability": 0.51123046875}, {"start": 1349.43, "end": 1349.43, "word": " course", "probability": 0.8974609375}, {"start": 1349.43, "end": 1350.05, "word": " this", "probability": 0.50341796875}, {"start": 1350.05, "end": 1350.45, "word": " input", "probability": 0.94140625}, {"start": 1350.45, "end": 1350.53, "word": " might", "probability": 0.356689453125}, {"start": 1350.53, "end": 1350.53, "word": " be", "probability": 0.83544921875}, {"start": 1350.53, "end": 1350.87, "word": " different", "probability": 0.8876953125}, {"start": 1350.87, "end": 1351.77, "word": " from", "probability": 0.5625}, {"start": 1351.77, "end": 1351.87, "word": " the", "probability": 0.57275390625}, {"start": 1351.87, "end": 1352.11, "word": " input", "probability": 0.7802734375}, {"start": 1352.11, "end": 1352.27, "word": " you", "probability": 0.32470703125}, {"start": 1352.27, "end": 1352.51, "word": " get", "probability": 0.21044921875}, {"start": 1352.51, "end": 1352.59, "word": " from", "probability": 0.58251953125}, {"start": 1352.59, "end": 1352.79, "word": " this", "probability": 0.6298828125}, {"start": 1352.79, "end": 1353.01, "word": " and", "probability": 0.58984375}, {"start": 1353.01, "end": 1353.57, "word": " the", "probability": 0.73291015625}, {"start": 1353.57, "end": 1353.87, "word": " return", "probability": 0.82080078125}, {"start": 1353.87, "end": 1354.09, "word": " might", "probability": 0.454833984375}, {"start": 1354.09, "end": 1354.15, "word": " also", "probability": 0.35400390625}, {"start": 1354.15, "end": 1354.23, "word": " be", "probability": 0.9072265625}, {"start": 1354.23, "end": 1354.57, "word": " different", "probability": 0.89013671875}, {"start": 1354.57, "end": 1355.05, "word": " so", "probability": 0.5888671875}, {"start": 1355.05, "end": 1355.19, "word": " it", "probability": 0.276123046875}, {"start": 1355.19, "end": 1355.21, "word": " will", "probability": 0.4423828125}, {"start": 1355.21, "end": 1355.31, "word": " say", "probability": 0.2464599609375}, {"start": 1355.31, "end": 1355.97, "word": " bring,", "probability": 0.319091796875}, {"start": 1356.17, "end": 1356.37, "word": " bring,", "probability": 0.309814453125}, {"start": 1356.49, "end": 1356.79, "word": " change", "probability": 0.7236328125}, {"start": 1356.79, "end": 1356.99, "word": " and", "probability": 0.438720703125}, {"start": 1356.99, "end": 1357.27, "word": " adjust", "probability": 0.3349609375}, {"start": 1357.27, "end": 1357.59, "word": " to", "probability": 0.382080078125}, {"start": 1357.59, "end": 1358.31, "word": " fit", "probability": 0.286376953125}, {"start": 1358.31, "end": 1358.55, "word": " your", "probability": 0.67333984375}, {"start": 1358.55, "end": 1359.07, "word": " application", "probability": 0.7021484375}, {"start": 1359.07, "end": 1359.35, "word": " to", "probability": 0.408935546875}, {"start": 1359.35, "end": 1359.63, "word": " this", "probability": 0.76025390625}, {"start": 1359.63, "end": 1361.73, "word": " and", "probability": 0.1729736328125}, {"start": 1361.73, "end": 1362.37, "word": " it", "probability": 0.7099609375}, {"start": 1362.37, "end": 1362.69, "word": " will", "probability": 0.60986328125}, {"start": 1362.69, "end": 1362.83, "word": " be", "probability": 0.25341796875}, {"start": 1362.83, "end": 1362.93, "word": " late", "probability": 0.41650390625}, {"start": 1362.93, "end": 1363.11, "word": " for", "probability": 0.496826171875}, {"start": 1363.11, "end": 1363.17, "word": " the", "probability": 0.46533203125}, {"start": 1363.17, "end": 1363.59, "word": " production", "probability": 0.9423828125}, {"start": 1363.59, "end": 1364.19, "word": " of", "probability": 0.9296875}, {"start": 1364.19, "end": 1364.33, "word": " your", "probability": 0.72216796875}, {"start": 1364.33, "end": 1364.71, "word": " program", "probability": 0.544921875}, {"start": 1364.71, "end": 1366.09, "word": " and", "probability": 0.81982421875}, {"start": 1366.09, "end": 1366.25, "word": " you", "probability": 0.453125}, {"start": 1366.25, "end": 1366.27, "word": " will", "probability": 0.58642578125}, {"start": 1366.27, "end": 1366.35, "word": " be", "probability": 0.88330078125}, {"start": 1366.35, "end": 1366.57, "word": " late", "probability": 0.90380859375}, {"start": 1366.57, "end": 1366.73, "word": " for", "probability": 0.6025390625}, {"start": 1366.73, "end": 1366.79, "word": " the", "probability": 0.71728515625}, {"start": 1366.79, "end": 1367.09, "word": " appointment", "probability": 0.35595703125}, {"start": 1367.09, "end": 1368.03, "word": " because", "probability": 0.6455078125}, {"start": 1368.03, "end": 1368.95, "word": " the", "probability": 0.53759765625}, {"start": 1368.95, "end": 1369.23, "word": " transformation", "probability": 0.311279296875}, {"start": 1369.23, "end": 1369.53, "word": " also", "probability": 0.249755859375}, {"start": 1369.53, "end": 1369.69, "word": " needs", "probability": 0.44384765625}, {"start": 1369.69, "end": 1370.55, "word": " testing", "probability": 0.50244140625}], "temperature": 1.0}, {"id": 61, "seek": 139810, "start": 1371.28, "end": 1398.1, "text": " Am I right or not? It's not that simple. The whole cycle has been overturned. Ok, and this topic is very common. We always use libraries, and these libraries have updates and changes, and you find another library better than that, so let's change it. Ok? So our goal is that we want our application to use the new library without changing anything in the application.", "tokens": [2012, 286, 558, 420, 406, 30, 467, 311, 406, 300, 2199, 13, 440, 1379, 6586, 575, 668, 42865, 292, 13, 3477, 11, 293, 341, 4829, 307, 588, 2689, 13, 492, 1009, 764, 15148, 11, 293, 613, 15148, 362, 9205, 293, 2962, 11, 293, 291, 915, 1071, 6405, 1101, 813, 300, 11, 370, 718, 311, 1319, 309, 13, 3477, 30, 407, 527, 3387, 307, 300, 321, 528, 527, 3861, 281, 764, 264, 777, 6405, 1553, 4473, 1340, 294, 264, 3861, 13], "avg_logprob": -0.554783962391041, "compression_ratio": 1.6283185840707965, "no_speech_prob": 6.854534149169922e-06, "words": [{"start": 1371.28, "end": 1371.56, "word": " Am", "probability": 0.07659912109375}, {"start": 1371.56, "end": 1371.6, "word": " I", "probability": 0.95361328125}, {"start": 1371.6, "end": 1371.6, "word": " right", "probability": 0.84716796875}, {"start": 1371.6, "end": 1371.88, "word": " or", "probability": 0.480712890625}, {"start": 1371.88, "end": 1371.88, "word": " not?", "probability": 0.79833984375}, {"start": 1371.94, "end": 1372.0, "word": " It's", "probability": 0.59814453125}, {"start": 1372.0, "end": 1372.1, "word": " not", "probability": 0.81396484375}, {"start": 1372.1, "end": 1372.18, "word": " that", "probability": 0.2275390625}, {"start": 1372.18, "end": 1372.42, "word": " simple.", "probability": 0.6005859375}, {"start": 1373.34, "end": 1373.68, "word": " The", "probability": 0.417724609375}, {"start": 1373.68, "end": 1373.76, "word": " whole", "probability": 0.4599609375}, {"start": 1373.76, "end": 1374.12, "word": " cycle", "probability": 0.95458984375}, {"start": 1374.12, "end": 1376.28, "word": " has", "probability": 0.2393798828125}, {"start": 1376.28, "end": 1376.36, "word": " been", "probability": 0.544921875}, {"start": 1376.36, "end": 1377.32, "word": " overturned.", "probability": 0.57000732421875}, {"start": 1377.34, "end": 1377.66, "word": " Ok,", "probability": 0.2271728515625}, {"start": 1380.48, "end": 1380.66, "word": " and", "probability": 0.31103515625}, {"start": 1380.66, "end": 1380.88, "word": " this", "probability": 0.7822265625}, {"start": 1380.88, "end": 1381.36, "word": " topic", "probability": 0.336669921875}, {"start": 1381.36, "end": 1381.44, "word": " is", "probability": 0.8427734375}, {"start": 1381.44, "end": 1381.44, "word": " very", "probability": 0.642578125}, {"start": 1381.44, "end": 1381.74, "word": " common.", "probability": 0.2364501953125}, {"start": 1382.32, "end": 1382.58, "word": " We", "probability": 0.87939453125}, {"start": 1382.58, "end": 1382.74, "word": " always", "probability": 0.448974609375}, {"start": 1382.74, "end": 1383.18, "word": " use", "probability": 0.861328125}, {"start": 1383.18, "end": 1383.6, "word": " libraries,", "probability": 0.55029296875}, {"start": 1383.8, "end": 1383.82, "word": " and", "probability": 0.64892578125}, {"start": 1383.82, "end": 1383.94, "word": " these", "probability": 0.31005859375}, {"start": 1383.94, "end": 1384.24, "word": " libraries", "probability": 0.95849609375}, {"start": 1384.24, "end": 1384.7, "word": " have", "probability": 0.42236328125}, {"start": 1384.7, "end": 1385.88, "word": " updates", "probability": 0.61376953125}, {"start": 1385.88, "end": 1386.18, "word": " and", "probability": 0.65283203125}, {"start": 1386.18, "end": 1386.62, "word": " changes,", "probability": 0.560546875}, {"start": 1386.64, "end": 1386.74, "word": " and", "probability": 0.79736328125}, {"start": 1386.74, "end": 1386.84, "word": " you", "probability": 0.61083984375}, {"start": 1386.84, "end": 1387.0, "word": " find", "probability": 0.62548828125}, {"start": 1387.0, "end": 1387.1, "word": " another", "probability": 0.59228515625}, {"start": 1387.1, "end": 1387.6, "word": " library", "probability": 0.77099609375}, {"start": 1387.6, "end": 1387.88, "word": " better", "probability": 0.5712890625}, {"start": 1387.88, "end": 1388.06, "word": " than", "probability": 0.8583984375}, {"start": 1388.06, "end": 1388.14, "word": " that,", "probability": 0.1932373046875}, {"start": 1388.16, "end": 1388.28, "word": " so", "probability": 0.330322265625}, {"start": 1388.28, "end": 1388.4, "word": " let's", "probability": 0.779541015625}, {"start": 1388.4, "end": 1388.68, "word": " change", "probability": 0.85009765625}, {"start": 1388.68, "end": 1389.26, "word": " it.", "probability": 0.64453125}, {"start": 1389.36, "end": 1389.5, "word": " Ok?", "probability": 0.35791015625}, {"start": 1390.04, "end": 1390.18, "word": " So", "probability": 0.83740234375}, {"start": 1390.18, "end": 1390.54, "word": " our", "probability": 0.438232421875}, {"start": 1390.54, "end": 1390.86, "word": " goal", "probability": 0.8115234375}, {"start": 1390.86, "end": 1391.24, "word": " is", "probability": 0.767578125}, {"start": 1391.24, "end": 1392.4, "word": " that", "probability": 0.5859375}, {"start": 1392.4, "end": 1392.7, "word": " we", "probability": 0.53125}, {"start": 1392.7, "end": 1393.14, "word": " want", "probability": 0.828125}, {"start": 1393.14, "end": 1393.6, "word": " our", "probability": 0.8525390625}, {"start": 1393.6, "end": 1394.24, "word": " application", "probability": 0.8759765625}, {"start": 1394.24, "end": 1394.68, "word": " to", "probability": 0.9501953125}, {"start": 1394.68, "end": 1395.1, "word": " use", "probability": 0.87060546875}, {"start": 1395.1, "end": 1395.24, "word": " the", "probability": 0.78173828125}, {"start": 1395.24, "end": 1395.96, "word": " new", "probability": 0.84326171875}, {"start": 1395.96, "end": 1396.06, "word": " library", "probability": 0.91943359375}, {"start": 1396.06, "end": 1396.82, "word": " without", "probability": 0.8544921875}, {"start": 1396.82, "end": 1397.28, "word": " changing", "probability": 0.787109375}, {"start": 1397.28, "end": 1397.56, "word": " anything", "probability": 0.869140625}, {"start": 1397.56, "end": 1397.78, "word": " in", "probability": 0.90625}, {"start": 1397.78, "end": 1397.84, "word": " the", "probability": 0.880859375}, {"start": 1397.84, "end": 1398.1, "word": " application.", "probability": 0.8818359375}], "temperature": 1.0}, {"id": 62, "seek": 142559, "start": 1399.41, "end": 1425.59, "text": " Do you understand what we want to do? How? We want him to use Y without changing any line in the application. Because this is 100 times. 100 requests are made on this. We want him to change 100 requests one by one without changing anything. We want him to use this library instead of this library without changing anything here. We want to make a medium.", "tokens": [1144, 291, 1223, 437, 321, 528, 281, 360, 30, 1012, 30, 492, 528, 796, 281, 764, 398, 1553, 4473, 604, 1622, 294, 264, 3861, 13, 1436, 341, 307, 2319, 1413, 13, 2319, 12475, 366, 1027, 322, 341, 13, 492, 528, 796, 281, 1319, 2319, 12475, 472, 538, 472, 1553, 4473, 1340, 13, 492, 528, 796, 281, 764, 341, 6405, 2602, 295, 341, 6405, 1553, 4473, 1340, 510, 13, 492, 528, 281, 652, 257, 6399, 13], "avg_logprob": -0.5337171256542206, "compression_ratio": 1.8783068783068784, "no_speech_prob": 1.2040138244628906e-05, "words": [{"start": 1399.41, "end": 1399.57, "word": " Do", "probability": 0.13916015625}, {"start": 1399.57, "end": 1399.57, "word": " you", "probability": 0.962890625}, {"start": 1399.57, "end": 1399.69, "word": " understand", "probability": 0.39697265625}, {"start": 1399.69, "end": 1399.85, "word": " what", "probability": 0.7392578125}, {"start": 1399.85, "end": 1399.97, "word": " we", "probability": 0.69775390625}, {"start": 1399.97, "end": 1400.03, "word": " want", "probability": 0.188232421875}, {"start": 1400.03, "end": 1400.05, "word": " to", "probability": 0.9658203125}, {"start": 1400.05, "end": 1400.25, "word": " do?", "probability": 0.94384765625}, {"start": 1401.15, "end": 1401.75, "word": " How?", "probability": 0.186279296875}, {"start": 1402.15, "end": 1402.59, "word": " We", "probability": 0.310791015625}, {"start": 1402.59, "end": 1402.71, "word": " want", "probability": 0.77490234375}, {"start": 1402.71, "end": 1403.01, "word": " him", "probability": 0.58154296875}, {"start": 1403.01, "end": 1403.05, "word": " to", "probability": 0.79638671875}, {"start": 1403.05, "end": 1403.39, "word": " use", "probability": 0.8701171875}, {"start": 1403.39, "end": 1403.79, "word": " Y", "probability": 0.595703125}, {"start": 1403.79, "end": 1404.55, "word": " without", "probability": 0.53564453125}, {"start": 1404.55, "end": 1404.95, "word": " changing", "probability": 0.76416015625}, {"start": 1404.95, "end": 1405.17, "word": " any", "probability": 0.325439453125}, {"start": 1405.17, "end": 1405.47, "word": " line", "probability": 0.69140625}, {"start": 1405.47, "end": 1406.07, "word": " in", "probability": 0.7861328125}, {"start": 1406.07, "end": 1406.15, "word": " the", "probability": 0.892578125}, {"start": 1406.15, "end": 1406.55, "word": " application.", "probability": 0.869140625}, {"start": 1406.65, "end": 1406.75, "word": " Because", "probability": 0.68603515625}, {"start": 1406.75, "end": 1406.97, "word": " this", "probability": 0.5380859375}, {"start": 1406.97, "end": 1406.97, "word": " is", "probability": 0.337158203125}, {"start": 1406.97, "end": 1407.31, "word": " 100", "probability": 0.09136962890625}, {"start": 1407.31, "end": 1407.81, "word": " times.", "probability": 0.763671875}, {"start": 1407.97, "end": 1408.35, "word": " 100", "probability": 0.5791015625}, {"start": 1408.35, "end": 1408.95, "word": " requests", "probability": 0.70458984375}, {"start": 1408.95, "end": 1409.11, "word": " are", "probability": 0.0780029296875}, {"start": 1409.11, "end": 1409.27, "word": " made", "probability": 0.385009765625}, {"start": 1409.27, "end": 1409.47, "word": " on", "probability": 0.5439453125}, {"start": 1409.47, "end": 1410.39, "word": " this.", "probability": 0.65673828125}, {"start": 1410.43, "end": 1410.61, "word": " We", "probability": 0.3095703125}, {"start": 1410.61, "end": 1410.61, "word": " want", "probability": 0.62744140625}, {"start": 1410.61, "end": 1410.75, "word": " him", "probability": 0.36328125}, {"start": 1410.75, "end": 1410.83, "word": " to", "probability": 0.96484375}, {"start": 1410.83, "end": 1411.03, "word": " change", "probability": 0.8173828125}, {"start": 1411.03, "end": 1411.59, "word": " 100", "probability": 0.5107421875}, {"start": 1411.59, "end": 1412.01, "word": " requests", "probability": 0.81640625}, {"start": 1412.01, "end": 1412.19, "word": " one", "probability": 0.84326171875}, {"start": 1412.19, "end": 1412.35, "word": " by", "probability": 0.9326171875}, {"start": 1412.35, "end": 1412.53, "word": " one", "probability": 0.9306640625}, {"start": 1412.53, "end": 1412.81, "word": " without", "probability": 0.42138671875}, {"start": 1412.81, "end": 1413.11, "word": " changing", "probability": 0.78173828125}, {"start": 1413.11, "end": 1413.43, "word": " anything.", "probability": 0.79345703125}, {"start": 1414.19, "end": 1414.59, "word": " We", "probability": 0.267822265625}, {"start": 1414.59, "end": 1414.83, "word": " want", "probability": 0.83056640625}, {"start": 1414.83, "end": 1415.15, "word": " him", "probability": 0.7890625}, {"start": 1415.15, "end": 1415.27, "word": " to", "probability": 0.96630859375}, {"start": 1415.27, "end": 1415.63, "word": " use", "probability": 0.88623046875}, {"start": 1415.63, "end": 1415.91, "word": " this", "probability": 0.9130859375}, {"start": 1415.91, "end": 1416.31, "word": " library", "probability": 0.77294921875}, {"start": 1416.31, "end": 1417.83, "word": " instead", "probability": 0.8076171875}, {"start": 1417.83, "end": 1417.91, "word": " of", "probability": 0.9716796875}, {"start": 1417.91, "end": 1418.13, "word": " this", "probability": 0.79736328125}, {"start": 1418.13, "end": 1418.61, "word": " library", "probability": 0.89794921875}, {"start": 1418.61, "end": 1419.69, "word": " without", "probability": 0.55419921875}, {"start": 1419.69, "end": 1420.09, "word": " changing", "probability": 0.833984375}, {"start": 1420.09, "end": 1420.41, "word": " anything", "probability": 0.8759765625}, {"start": 1420.41, "end": 1421.03, "word": " here.", "probability": 0.72314453125}, {"start": 1422.29, "end": 1422.89, "word": " We", "probability": 0.396240234375}, {"start": 1422.89, "end": 1424.01, "word": " want", "probability": 0.8125}, {"start": 1424.01, "end": 1424.09, "word": " to", "probability": 0.7001953125}, {"start": 1424.09, "end": 1424.31, "word": " make", "probability": 0.634765625}, {"start": 1424.31, "end": 1425.59, "word": " a", "probability": 0.54638671875}, {"start": 1425.59, "end": 1425.59, "word": " medium.", "probability": 0.373779296875}], "temperature": 1.0}, {"id": 63, "seek": 144918, "start": 1426.46, "end": 1449.18, "text": " How do we do it? To understand it well, let's see an example of a code that is very simple based on this idea, okay? Okay guys, this is a simplified example, the goal is to clarify the idea, okay? Look with me, I have a program called", "tokens": [1012, 360, 321, 360, 309, 30, 1407, 1223, 309, 731, 11, 718, 311, 536, 364, 1365, 295, 257, 3089, 300, 307, 588, 2199, 2361, 322, 341, 1558, 11, 1392, 30, 1033, 1074, 11, 341, 307, 257, 26335, 1365, 11, 264, 3387, 307, 281, 17594, 264, 1558, 11, 1392, 30, 2053, 365, 385, 11, 286, 362, 257, 1461, 1219], "avg_logprob": -0.5534957364454107, "compression_ratio": 1.46875, "no_speech_prob": 3.504753112792969e-05, "words": [{"start": 1426.46, "end": 1426.78, "word": " How", "probability": 0.151611328125}, {"start": 1426.78, "end": 1427.36, "word": " do", "probability": 0.1689453125}, {"start": 1427.36, "end": 1427.94, "word": " we", "probability": 0.8984375}, {"start": 1427.94, "end": 1428.14, "word": " do", "probability": 0.548828125}, {"start": 1428.14, "end": 1428.2, "word": " it?", "probability": 0.409912109375}, {"start": 1428.2, "end": 1428.38, "word": " To", "probability": 0.39599609375}, {"start": 1428.38, "end": 1428.76, "word": " understand", "probability": 0.65185546875}, {"start": 1428.76, "end": 1429.22, "word": " it", "probability": 0.83251953125}, {"start": 1429.22, "end": 1429.54, "word": " well,", "probability": 0.260986328125}, {"start": 1429.8, "end": 1429.98, "word": " let's", "probability": 0.88330078125}, {"start": 1429.98, "end": 1430.24, "word": " see", "probability": 0.5595703125}, {"start": 1430.24, "end": 1430.86, "word": " an", "probability": 0.49951171875}, {"start": 1430.86, "end": 1430.86, "word": " example", "probability": 0.9306640625}, {"start": 1430.86, "end": 1431.1, "word": " of", "probability": 0.5263671875}, {"start": 1431.1, "end": 1431.16, "word": " a", "probability": 0.47705078125}, {"start": 1431.16, "end": 1431.42, "word": " code", "probability": 0.53271484375}, {"start": 1431.42, "end": 1431.52, "word": " that", "probability": 0.2120361328125}, {"start": 1431.52, "end": 1431.88, "word": " is", "probability": 0.57958984375}, {"start": 1431.88, "end": 1432.34, "word": " very", "probability": 0.6630859375}, {"start": 1432.34, "end": 1432.34, "word": " simple", "probability": 0.8779296875}, {"start": 1432.34, "end": 1432.6, "word": " based", "probability": 0.163330078125}, {"start": 1432.6, "end": 1432.62, "word": " on", "probability": 0.94482421875}, {"start": 1432.62, "end": 1432.72, "word": " this", "probability": 0.83740234375}, {"start": 1432.72, "end": 1433.22, "word": " idea,", "probability": 0.724609375}, {"start": 1433.22, "end": 1434.04, "word": " okay?", "probability": 0.497802734375}, {"start": 1441.08, "end": 1441.6, "word": " Okay", "probability": 0.5048828125}, {"start": 1441.6, "end": 1441.78, "word": " guys,", "probability": 0.41064453125}, {"start": 1441.86, "end": 1442.0, "word": " this", "probability": 0.904296875}, {"start": 1442.0, "end": 1442.3, "word": " is", "probability": 0.87255859375}, {"start": 1442.3, "end": 1442.7, "word": " a", "probability": 0.73779296875}, {"start": 1442.7, "end": 1442.82, "word": " simplified", "probability": 0.27001953125}, {"start": 1442.82, "end": 1443.04, "word": " example,", "probability": 0.9345703125}, {"start": 1443.54, "end": 1443.7, "word": " the", "probability": 0.4677734375}, {"start": 1443.7, "end": 1443.82, "word": " goal", "probability": 0.5087890625}, {"start": 1443.82, "end": 1444.02, "word": " is", "probability": 0.69140625}, {"start": 1444.02, "end": 1444.04, "word": " to", "probability": 0.95849609375}, {"start": 1444.04, "end": 1444.48, "word": " clarify", "probability": 0.459228515625}, {"start": 1444.48, "end": 1445.26, "word": " the", "probability": 0.84033203125}, {"start": 1445.26, "end": 1445.56, "word": " idea,", "probability": 0.873046875}, {"start": 1445.68, "end": 1446.14, "word": " okay?", "probability": 0.767578125}, {"start": 1446.66, "end": 1446.9, "word": " Look", "probability": 0.364501953125}, {"start": 1446.9, "end": 1447.04, "word": " with", "probability": 0.54833984375}, {"start": 1447.04, "end": 1447.24, "word": " me,", "probability": 0.970703125}, {"start": 1447.88, "end": 1448.3, "word": " I", "probability": 0.96826171875}, {"start": 1448.3, "end": 1448.3, "word": " have", "probability": 0.94189453125}, {"start": 1448.3, "end": 1448.48, "word": " a", "probability": 0.978515625}, {"start": 1448.48, "end": 1448.82, "word": " program", "probability": 0.76513671875}, {"start": 1448.82, "end": 1449.18, "word": " called", "probability": 0.716796875}], "temperature": 1.0}, {"id": 64, "seek": 147309, "start": 1451.25, "end": 1473.09, "text": "Client, this is my application, okay? This client uses a library called one of the tasks done by the client, sort process, what is sort? Sorting of numbers, okay? And this is the method process through which this process is present in the client, it takes numbers of the kind of array", "tokens": [9966, 1196, 11, 341, 307, 452, 3861, 11, 1392, 30, 639, 6423, 4960, 257, 6405, 1219, 472, 295, 264, 9608, 1096, 538, 264, 6423, 11, 1333, 1399, 11, 437, 307, 1333, 30, 26149, 278, 295, 3547, 11, 1392, 30, 400, 341, 307, 264, 3170, 1399, 807, 597, 341, 1399, 307, 1974, 294, 264, 6423, 11, 309, 2516, 3547, 295, 264, 733, 295, 10225], "avg_logprob": -0.5449218498542905, "compression_ratio": 1.6608187134502923, "no_speech_prob": 1.8477439880371094e-06, "words": [{"start": 1451.25, "end": 1451.67, "word": "Client,", "probability": 0.7451171875}, {"start": 1451.77, "end": 1451.93, "word": " this", "probability": 0.5947265625}, {"start": 1451.93, "end": 1451.97, "word": " is", "probability": 0.8291015625}, {"start": 1451.97, "end": 1452.03, "word": " my", "probability": 0.4296875}, {"start": 1452.03, "end": 1452.41, "word": " application,", "probability": 0.5244140625}, {"start": 1453.05, "end": 1453.31, "word": " okay?", "probability": 0.26806640625}, {"start": 1454.23, "end": 1454.39, "word": " This", "probability": 0.578125}, {"start": 1454.39, "end": 1454.79, "word": " client", "probability": 0.89501953125}, {"start": 1454.79, "end": 1455.67, "word": " uses", "probability": 0.822265625}, {"start": 1455.67, "end": 1455.81, "word": " a", "probability": 0.83251953125}, {"start": 1455.81, "end": 1456.19, "word": " library", "probability": 0.86962890625}, {"start": 1456.19, "end": 1457.49, "word": " called", "probability": 0.376953125}, {"start": 1457.49, "end": 1458.75, "word": " one", "probability": 0.1524658203125}, {"start": 1458.75, "end": 1459.39, "word": " of", "probability": 0.96533203125}, {"start": 1459.39, "end": 1459.39, "word": " the", "probability": 0.79052734375}, {"start": 1459.39, "end": 1459.63, "word": " tasks", "probability": 0.8251953125}, {"start": 1459.63, "end": 1459.95, "word": " done", "probability": 0.1798095703125}, {"start": 1459.95, "end": 1460.05, "word": " by", "probability": 0.94921875}, {"start": 1460.05, "end": 1460.13, "word": " the", "probability": 0.7294921875}, {"start": 1460.13, "end": 1460.45, "word": " client,", "probability": 0.9130859375}, {"start": 1460.55, "end": 1461.13, "word": " sort", "probability": 0.0806884765625}, {"start": 1461.13, "end": 1461.19, "word": " process,", "probability": 0.615234375}, {"start": 1461.25, "end": 1461.37, "word": " what", "probability": 0.677734375}, {"start": 1461.37, "end": 1461.47, "word": " is", "probability": 0.71337890625}, {"start": 1461.47, "end": 1461.75, "word": " sort?", "probability": 0.82666015625}, {"start": 1462.57, "end": 1463.11, "word": " Sorting", "probability": 0.6282958984375}, {"start": 1463.11, "end": 1463.25, "word": " of", "probability": 0.398681640625}, {"start": 1463.25, "end": 1463.61, "word": " numbers,", "probability": 0.73828125}, {"start": 1464.03, "end": 1464.31, "word": " okay?", "probability": 0.748046875}, {"start": 1465.99, "end": 1466.25, "word": " And", "probability": 0.650390625}, {"start": 1466.25, "end": 1466.39, "word": " this", "probability": 0.853515625}, {"start": 1466.39, "end": 1466.47, "word": " is", "probability": 0.56640625}, {"start": 1466.47, "end": 1466.51, "word": " the", "probability": 0.701171875}, {"start": 1466.51, "end": 1466.71, "word": " method", "probability": 0.8505859375}, {"start": 1466.71, "end": 1467.25, "word": " process", "probability": 0.67236328125}, {"start": 1467.25, "end": 1467.63, "word": " through", "probability": 0.493408203125}, {"start": 1467.63, "end": 1468.15, "word": " which", "probability": 0.9462890625}, {"start": 1468.15, "end": 1468.41, "word": " this", "probability": 0.5458984375}, {"start": 1468.41, "end": 1469.09, "word": " process", "probability": 0.65673828125}, {"start": 1469.09, "end": 1469.21, "word": " is", "probability": 0.40576171875}, {"start": 1469.21, "end": 1469.55, "word": " present", "probability": 0.3798828125}, {"start": 1469.55, "end": 1470.59, "word": " in", "probability": 0.7919921875}, {"start": 1470.59, "end": 1470.69, "word": " the", "probability": 0.89306640625}, {"start": 1470.69, "end": 1470.97, "word": " client,", "probability": 0.935546875}, {"start": 1471.03, "end": 1471.53, "word": " it", "probability": 0.5205078125}, {"start": 1471.53, "end": 1471.87, "word": " takes", "probability": 0.7578125}, {"start": 1471.87, "end": 1472.39, "word": " numbers", "probability": 0.5458984375}, {"start": 1472.39, "end": 1472.55, "word": " of", "probability": 0.6640625}, {"start": 1472.55, "end": 1472.65, "word": " the", "probability": 0.445068359375}, {"start": 1472.65, "end": 1472.75, "word": " kind", "probability": 0.2156982421875}, {"start": 1472.75, "end": 1472.85, "word": " of", "probability": 0.70703125}, {"start": 1472.85, "end": 1473.09, "word": " array", "probability": 0.81787109375}], "temperature": 1.0}, {"id": 65, "seek": 149900, "start": 1474.08, "end": 1499.0, "text": " And I also return array What does he do in this process? He arranges the numbers So to arrange the client, he does not have an array code He uses an external library called what? ArraySorter So it is programmed to whom? To ArraySorter And this method does what? It is a set for the sorter So now in the main method I create a client", "tokens": [400, 286, 611, 2736, 10225, 708, 775, 415, 360, 294, 341, 1399, 30, 634, 5539, 10350, 264, 3547, 407, 281, 9424, 264, 6423, 11, 415, 775, 406, 362, 364, 10225, 3089, 634, 4960, 364, 8320, 6405, 1219, 437, 30, 1587, 3458, 50, 6122, 407, 309, 307, 31092, 281, 7101, 30, 1407, 1587, 3458, 50, 6122, 400, 341, 3170, 775, 437, 30, 467, 307, 257, 992, 337, 264, 262, 6122, 407, 586, 294, 264, 2135, 3170, 286, 1884, 257, 6423], "avg_logprob": -0.5527343690395355, "compression_ratio": 1.6818181818181819, "no_speech_prob": 1.3589859008789062e-05, "words": [{"start": 1474.08, "end": 1474.32, "word": " And", "probability": 0.12103271484375}, {"start": 1474.32, "end": 1474.38, "word": " I", "probability": 0.431884765625}, {"start": 1474.38, "end": 1475.58, "word": " also", "probability": 0.3720703125}, {"start": 1475.58, "end": 1475.58, "word": " return", "probability": 0.38330078125}, {"start": 1475.58, "end": 1475.88, "word": " array", "probability": 0.308837890625}, {"start": 1475.88, "end": 1476.4, "word": " What", "probability": 0.476318359375}, {"start": 1476.4, "end": 1476.76, "word": " does", "probability": 0.76513671875}, {"start": 1476.76, "end": 1476.8, "word": " he", "probability": 0.55322265625}, {"start": 1476.8, "end": 1476.96, "word": " do", "probability": 0.92626953125}, {"start": 1476.96, "end": 1477.08, "word": " in", "probability": 0.84521484375}, {"start": 1477.08, "end": 1477.18, "word": " this", "probability": 0.9169921875}, {"start": 1477.18, "end": 1477.54, "word": " process?", "probability": 0.9169921875}, {"start": 1478.56, "end": 1478.72, "word": " He", "probability": 0.7548828125}, {"start": 1478.72, "end": 1478.98, "word": " arranges", "probability": 0.744384765625}, {"start": 1478.98, "end": 1479.7, "word": " the", "probability": 0.5869140625}, {"start": 1479.7, "end": 1479.94, "word": " numbers", "probability": 0.591796875}, {"start": 1479.94, "end": 1480.7, "word": " So", "probability": 0.54638671875}, {"start": 1480.7, "end": 1481.06, "word": " to", "probability": 0.347412109375}, {"start": 1481.06, "end": 1481.38, "word": " arrange", "probability": 0.6982421875}, {"start": 1481.38, "end": 1481.72, "word": " the", "probability": 0.5673828125}, {"start": 1481.72, "end": 1482.04, "word": " client,", "probability": 0.393798828125}, {"start": 1482.52, "end": 1482.68, "word": " he", "probability": 0.52978515625}, {"start": 1482.68, "end": 1482.68, "word": " does", "probability": 0.435302734375}, {"start": 1482.68, "end": 1482.68, "word": " not", "probability": 0.92333984375}, {"start": 1482.68, "end": 1483.34, "word": " have", "probability": 0.5615234375}, {"start": 1483.34, "end": 1483.7, "word": " an", "probability": 0.2196044921875}, {"start": 1483.7, "end": 1483.8, "word": " array", "probability": 0.5908203125}, {"start": 1483.8, "end": 1483.86, "word": " code", "probability": 0.451904296875}, {"start": 1483.86, "end": 1484.06, "word": " He", "probability": 0.48095703125}, {"start": 1484.06, "end": 1484.56, "word": " uses", "probability": 0.80712890625}, {"start": 1484.56, "end": 1485.04, "word": " an", "probability": 0.7744140625}, {"start": 1485.04, "end": 1485.26, "word": " external", "probability": 0.8330078125}, {"start": 1485.26, "end": 1485.4, "word": " library", "probability": 0.9384765625}, {"start": 1485.4, "end": 1485.8, "word": " called", "probability": 0.5810546875}, {"start": 1485.8, "end": 1486.08, "word": " what?", "probability": 0.261962890625}, {"start": 1487.26, "end": 1487.84, "word": " ArraySorter", "probability": 0.80230712890625}, {"start": 1487.84, "end": 1488.02, "word": " So", "probability": 0.2044677734375}, {"start": 1488.02, "end": 1488.18, "word": " it", "probability": 0.412353515625}, {"start": 1488.18, "end": 1488.3, "word": " is", "probability": 0.634765625}, {"start": 1488.3, "end": 1488.56, "word": " programmed", "probability": 0.78564453125}, {"start": 1488.56, "end": 1488.8, "word": " to", "probability": 0.34375}, {"start": 1488.8, "end": 1489.02, "word": " whom?", "probability": 0.5390625}, {"start": 1489.86, "end": 1490.08, "word": " To", "probability": 0.57177734375}, {"start": 1490.08, "end": 1490.66, "word": " ArraySorter", "probability": 0.81317138671875}, {"start": 1490.66, "end": 1490.98, "word": " And", "probability": 0.61572265625}, {"start": 1490.98, "end": 1492.0, "word": " this", "probability": 0.38037109375}, {"start": 1492.0, "end": 1492.3, "word": " method", "probability": 0.8798828125}, {"start": 1492.3, "end": 1492.44, "word": " does", "probability": 0.2464599609375}, {"start": 1492.44, "end": 1492.56, "word": " what?", "probability": 0.84619140625}, {"start": 1493.1, "end": 1493.62, "word": " It", "probability": 0.2265625}, {"start": 1493.62, "end": 1493.62, "word": " is", "probability": 0.399658203125}, {"start": 1493.62, "end": 1493.72, "word": " a", "probability": 0.402099609375}, {"start": 1493.72, "end": 1493.8, "word": " set", "probability": 0.77978515625}, {"start": 1493.8, "end": 1494.12, "word": " for", "probability": 0.7353515625}, {"start": 1494.12, "end": 1494.26, "word": " the", "probability": 0.65966796875}, {"start": 1494.26, "end": 1494.54, "word": " sorter", "probability": 0.63134765625}, {"start": 1494.54, "end": 1495.08, "word": " So", "probability": 0.69677734375}, {"start": 1495.08, "end": 1495.38, "word": " now", "probability": 0.552734375}, {"start": 1495.38, "end": 1495.66, "word": " in", "probability": 0.62158203125}, {"start": 1495.66, "end": 1495.8, "word": " the", "probability": 0.8662109375}, {"start": 1495.8, "end": 1495.94, "word": " main", "probability": 0.90283203125}, {"start": 1495.94, "end": 1496.38, "word": " method", "probability": 0.9541015625}, {"start": 1496.38, "end": 1497.44, "word": " I", "probability": 0.3359375}, {"start": 1497.44, "end": 1498.46, "word": " create", "probability": 0.123779296875}, {"start": 1498.46, "end": 1498.6, "word": " a", "probability": 0.9140625}, {"start": 1498.6, "end": 1499.0, "word": " client", "probability": 0.8505859375}], "temperature": 1.0}, {"id": 66, "seek": 152804, "start": 1500.34, "end": 1528.04, "text": "and then who is this? and of course, for the client, who do I send it to? the array sorter, the library that I am currently using and then to run the client, I send him these numbers and I tell him to do this sorter, set sorter, okay? and then I tell him to do a process for whom? for the numbers and from within the process, what does he use? the array sorter just like the client gave you the application that uses the X so here, the X issued before it", "tokens": [474, 550, 567, 307, 341, 30, 293, 295, 1164, 11, 337, 264, 6423, 11, 567, 360, 286, 2845, 309, 281, 30, 264, 10225, 262, 6122, 11, 264, 6405, 300, 286, 669, 4362, 1228, 293, 550, 281, 1190, 264, 6423, 11, 286, 2845, 796, 613, 3547, 293, 286, 980, 796, 281, 360, 341, 1333, 260, 11, 992, 262, 6122, 11, 1392, 30, 293, 550, 286, 980, 796, 281, 360, 257, 1399, 337, 7101, 30, 337, 264, 3547, 293, 490, 1951, 264, 1399, 11, 437, 775, 415, 764, 30, 264, 10225, 262, 6122, 445, 411, 264, 6423, 2729, 291, 264, 3861, 300, 4960, 264, 1783, 370, 510, 11, 264, 1783, 14379, 949, 309], "avg_logprob": -0.5329240922416959, "compression_ratio": 1.9484978540772533, "no_speech_prob": 5.543231964111328e-06, "words": [{"start": 1500.34, "end": 1500.54, "word": "and", "probability": 0.211669921875}, {"start": 1500.54, "end": 1500.74, "word": " then", "probability": 0.53466796875}, {"start": 1500.74, "end": 1500.86, "word": " who", "probability": 0.308837890625}, {"start": 1500.86, "end": 1500.86, "word": " is", "probability": 0.7060546875}, {"start": 1500.86, "end": 1501.0, "word": " this?", "probability": 0.6220703125}, {"start": 1502.1, "end": 1502.54, "word": " and", "probability": 0.5361328125}, {"start": 1502.54, "end": 1502.76, "word": " of", "probability": 0.5078125}, {"start": 1502.76, "end": 1502.92, "word": " course,", "probability": 0.89111328125}, {"start": 1503.98, "end": 1504.4, "word": " for", "probability": 0.2110595703125}, {"start": 1504.4, "end": 1504.52, "word": " the", "probability": 0.7880859375}, {"start": 1504.52, "end": 1504.82, "word": " client,", "probability": 0.91357421875}, {"start": 1504.98, "end": 1504.98, "word": " who", "probability": 0.39697265625}, {"start": 1504.98, "end": 1504.98, "word": " do", "probability": 0.6904296875}, {"start": 1504.98, "end": 1505.0, "word": " I", "probability": 0.8125}, {"start": 1505.0, "end": 1505.2, "word": " send", "probability": 0.78759765625}, {"start": 1505.2, "end": 1505.3, "word": " it", "probability": 0.4130859375}, {"start": 1505.3, "end": 1505.58, "word": " to?", "probability": 0.8173828125}, {"start": 1505.88, "end": 1506.2, "word": " the", "probability": 0.411865234375}, {"start": 1506.2, "end": 1506.42, "word": " array", "probability": 0.7080078125}, {"start": 1506.42, "end": 1506.72, "word": " sorter,", "probability": 0.6953125}, {"start": 1506.84, "end": 1506.9, "word": " the", "probability": 0.6591796875}, {"start": 1506.9, "end": 1507.14, "word": " library", "probability": 0.478271484375}, {"start": 1507.14, "end": 1507.24, "word": " that", "probability": 0.404296875}, {"start": 1507.24, "end": 1507.32, "word": " I", "probability": 0.52294921875}, {"start": 1507.32, "end": 1507.7, "word": " am", "probability": 0.2841796875}, {"start": 1507.7, "end": 1508.0, "word": " currently", "probability": 0.55712890625}, {"start": 1508.0, "end": 1508.0, "word": " using", "probability": 0.93115234375}, {"start": 1508.0, "end": 1508.74, "word": " and", "probability": 0.300537109375}, {"start": 1508.74, "end": 1508.92, "word": " then", "probability": 0.6689453125}, {"start": 1508.92, "end": 1509.14, "word": " to", "probability": 0.53564453125}, {"start": 1509.14, "end": 1509.46, "word": " run", "probability": 0.51806640625}, {"start": 1509.46, "end": 1509.64, "word": " the", "probability": 0.82861328125}, {"start": 1509.64, "end": 1509.92, "word": " client,", "probability": 0.8623046875}, {"start": 1510.06, "end": 1510.22, "word": " I", "probability": 0.95703125}, {"start": 1510.22, "end": 1510.44, "word": " send", "probability": 0.73193359375}, {"start": 1510.44, "end": 1510.56, "word": " him", "probability": 0.434814453125}, {"start": 1510.56, "end": 1510.8, "word": " these", "probability": 0.751953125}, {"start": 1510.8, "end": 1511.28, "word": " numbers", "probability": 0.77099609375}, {"start": 1511.28, "end": 1511.52, "word": " and", "probability": 0.74462890625}, {"start": 1511.52, "end": 1511.64, "word": " I", "probability": 0.409423828125}, {"start": 1511.64, "end": 1511.82, "word": " tell", "probability": 0.46142578125}, {"start": 1511.82, "end": 1512.12, "word": " him", "probability": 0.91357421875}, {"start": 1512.12, "end": 1512.48, "word": " to", "probability": 0.344482421875}, {"start": 1512.48, "end": 1512.74, "word": " do", "probability": 0.2138671875}, {"start": 1512.74, "end": 1513.7, "word": " this", "probability": 0.4970703125}, {"start": 1513.7, "end": 1514.3, "word": " sorter,", "probability": 0.57635498046875}, {"start": 1514.6, "end": 1514.94, "word": " set", "probability": 0.58544921875}, {"start": 1514.94, "end": 1515.44, "word": " sorter,", "probability": 0.750732421875}, {"start": 1515.72, "end": 1516.18, "word": " okay?", "probability": 0.1947021484375}, {"start": 1516.5, "end": 1516.74, "word": " and", "probability": 0.529296875}, {"start": 1516.74, "end": 1516.9, "word": " then", "probability": 0.80615234375}, {"start": 1516.9, "end": 1517.0, "word": " I", "probability": 0.93505859375}, {"start": 1517.0, "end": 1517.14, "word": " tell", "probability": 0.5771484375}, {"start": 1517.14, "end": 1517.32, "word": " him", "probability": 0.8427734375}, {"start": 1517.32, "end": 1517.54, "word": " to", "probability": 0.79931640625}, {"start": 1517.54, "end": 1517.84, "word": " do", "probability": 0.234130859375}, {"start": 1517.84, "end": 1518.0, "word": " a", "probability": 0.544921875}, {"start": 1518.0, "end": 1518.36, "word": " process", "probability": 0.9287109375}, {"start": 1518.36, "end": 1518.52, "word": " for", "probability": 0.755859375}, {"start": 1518.52, "end": 1518.68, "word": " whom?", "probability": 0.60498046875}, {"start": 1519.14, "end": 1519.28, "word": " for", "probability": 0.77490234375}, {"start": 1519.28, "end": 1519.36, "word": " the", "probability": 0.734375}, {"start": 1519.36, "end": 1519.6, "word": " numbers", "probability": 0.79248046875}, {"start": 1519.6, "end": 1519.78, "word": " and", "probability": 0.73779296875}, {"start": 1519.78, "end": 1519.9, "word": " from", "probability": 0.39208984375}, {"start": 1519.9, "end": 1520.08, "word": " within", "probability": 0.51416015625}, {"start": 1520.08, "end": 1520.28, "word": " the", "probability": 0.88916015625}, {"start": 1520.28, "end": 1520.68, "word": " process,", "probability": 0.951171875}, {"start": 1520.9, "end": 1520.98, "word": " what", "probability": 0.794921875}, {"start": 1520.98, "end": 1520.98, "word": " does", "probability": 0.875}, {"start": 1520.98, "end": 1520.98, "word": " he", "probability": 0.497314453125}, {"start": 1520.98, "end": 1521.42, "word": " use?", "probability": 0.8837890625}, {"start": 1522.16, "end": 1522.58, "word": " the", "probability": 0.70703125}, {"start": 1522.58, "end": 1522.8, "word": " array", "probability": 0.90283203125}, {"start": 1522.8, "end": 1523.1, "word": " sorter", "probability": 0.8046875}, {"start": 1523.1, "end": 1523.56, "word": " just", "probability": 0.33447265625}, {"start": 1523.56, "end": 1523.62, "word": " like", "probability": 0.90234375}, {"start": 1523.62, "end": 1524.08, "word": " the", "probability": 0.61572265625}, {"start": 1524.08, "end": 1524.4, "word": " client", "probability": 0.93896484375}, {"start": 1524.4, "end": 1524.62, "word": " gave", "probability": 0.2071533203125}, {"start": 1524.62, "end": 1524.82, "word": " you", "probability": 0.7958984375}, {"start": 1524.82, "end": 1524.9, "word": " the", "probability": 0.75390625}, {"start": 1524.9, "end": 1525.32, "word": " application", "probability": 0.8720703125}, {"start": 1525.32, "end": 1525.46, "word": " that", "probability": 0.81982421875}, {"start": 1525.46, "end": 1525.8, "word": " uses", "probability": 0.81689453125}, {"start": 1525.8, "end": 1525.92, "word": " the", "probability": 0.433349609375}, {"start": 1525.92, "end": 1526.16, "word": " X", "probability": 0.5830078125}, {"start": 1526.16, "end": 1526.88, "word": " so", "probability": 0.266845703125}, {"start": 1526.88, "end": 1527.06, "word": " here,", "probability": 0.73486328125}, {"start": 1527.12, "end": 1527.16, "word": " the", "probability": 0.65869140625}, {"start": 1527.16, "end": 1527.36, "word": " X", "probability": 0.93505859375}, {"start": 1527.36, "end": 1527.6, "word": " issued", "probability": 0.09222412109375}, {"start": 1527.6, "end": 1527.84, "word": " before", "probability": 0.736328125}, {"start": 1527.84, "end": 1528.04, "word": " it", "probability": 0.6240234375}], "temperature": 1.0}, {"id": 67, "seek": 155762, "start": 1529.14, "end": 1557.62, "text": " The ArraySorter Now we have a new library Which is what here? The Y Which is represented by a class called ListSorter And you don't know the code of the ArraySorter nor the ListSorter These are libraries that you brought from outside But this ListSorter, let's look at this new library This is ListSorter", "tokens": [440, 1587, 3458, 50, 6122, 823, 321, 362, 257, 777, 6405, 3013, 307, 437, 510, 30, 440, 398, 3013, 307, 10379, 538, 257, 1508, 1219, 17668, 50, 6122, 400, 291, 500, 380, 458, 264, 3089, 295, 264, 1587, 3458, 50, 6122, 6051, 264, 17668, 50, 6122, 1981, 366, 15148, 300, 291, 3038, 490, 2380, 583, 341, 17668, 50, 6122, 11, 718, 311, 574, 412, 341, 777, 6405, 639, 307, 17668, 50, 6122], "avg_logprob": -0.4880136888321132, "compression_ratio": 1.6758241758241759, "no_speech_prob": 2.2113323211669922e-05, "words": [{"start": 1529.14, "end": 1529.36, "word": " The", "probability": 0.142333984375}, {"start": 1529.36, "end": 1529.9, "word": " ArraySorter", "probability": 0.7935791015625}, {"start": 1529.9, "end": 1530.74, "word": " Now", "probability": 0.308349609375}, {"start": 1530.74, "end": 1532.24, "word": " we", "probability": 0.5751953125}, {"start": 1532.24, "end": 1532.5, "word": " have", "probability": 0.84716796875}, {"start": 1532.5, "end": 1532.64, "word": " a", "probability": 0.8505859375}, {"start": 1532.64, "end": 1533.16, "word": " new", "probability": 0.87158203125}, {"start": 1533.16, "end": 1533.16, "word": " library", "probability": 0.6064453125}, {"start": 1533.16, "end": 1534.12, "word": " Which", "probability": 0.229736328125}, {"start": 1534.12, "end": 1534.32, "word": " is", "probability": 0.81005859375}, {"start": 1534.32, "end": 1534.48, "word": " what", "probability": 0.10205078125}, {"start": 1534.48, "end": 1535.1, "word": " here?", "probability": 0.38623046875}, {"start": 1535.32, "end": 1535.92, "word": " The", "probability": 0.319580078125}, {"start": 1535.92, "end": 1536.14, "word": " Y", "probability": 0.77294921875}, {"start": 1536.14, "end": 1536.44, "word": " Which", "probability": 0.236328125}, {"start": 1536.44, "end": 1536.58, "word": " is", "probability": 0.62939453125}, {"start": 1536.58, "end": 1536.76, "word": " represented", "probability": 0.12091064453125}, {"start": 1536.76, "end": 1537.6, "word": " by", "probability": 0.8388671875}, {"start": 1537.6, "end": 1537.9, "word": " a", "probability": 0.7978515625}, {"start": 1537.9, "end": 1538.2, "word": " class", "probability": 0.912109375}, {"start": 1538.2, "end": 1538.5, "word": " called", "probability": 0.4619140625}, {"start": 1538.5, "end": 1539.14, "word": " ListSorter", "probability": 0.9034830729166666}, {"start": 1539.14, "end": 1542.44, "word": " And", "probability": 0.310791015625}, {"start": 1542.44, "end": 1542.74, "word": " you", "probability": 0.93603515625}, {"start": 1542.74, "end": 1542.86, "word": " don't", "probability": 0.849365234375}, {"start": 1542.86, "end": 1543.8, "word": " know", "probability": 0.8310546875}, {"start": 1543.8, "end": 1543.9, "word": " the", "probability": 0.72705078125}, {"start": 1543.9, "end": 1544.08, "word": " code", "probability": 0.8837890625}, {"start": 1544.08, "end": 1544.16, "word": " of", "probability": 0.658203125}, {"start": 1544.16, "end": 1544.2, "word": " the", "probability": 0.5390625}, {"start": 1544.2, "end": 1544.86, "word": " ArraySorter", "probability": 0.9310302734375}, {"start": 1544.86, "end": 1545.66, "word": " nor", "probability": 0.34912109375}, {"start": 1545.66, "end": 1545.74, "word": " the", "probability": 0.501953125}, {"start": 1545.74, "end": 1546.12, "word": " ListSorter", "probability": 0.94775390625}, {"start": 1546.12, "end": 1546.3, "word": " These", "probability": 0.445556640625}, {"start": 1546.3, "end": 1546.4, "word": " are", "probability": 0.5810546875}, {"start": 1546.4, "end": 1546.76, "word": " libraries", "probability": 0.57568359375}, {"start": 1546.76, "end": 1546.94, "word": " that", "probability": 0.453369140625}, {"start": 1546.94, "end": 1548.22, "word": " you", "probability": 0.54833984375}, {"start": 1548.22, "end": 1548.5, "word": " brought", "probability": 0.43603515625}, {"start": 1548.5, "end": 1548.68, "word": " from", "probability": 0.75341796875}, {"start": 1548.68, "end": 1548.96, "word": " outside", "probability": 0.48095703125}, {"start": 1548.96, "end": 1550.6, "word": " But", "probability": 0.1439208984375}, {"start": 1550.6, "end": 1552.0, "word": " this", "probability": 0.69482421875}, {"start": 1552.0, "end": 1552.68, "word": " ListSorter,", "probability": 0.84033203125}, {"start": 1552.82, "end": 1553.14, "word": " let's", "probability": 0.80419921875}, {"start": 1553.14, "end": 1554.02, "word": " look", "probability": 0.458740234375}, {"start": 1554.02, "end": 1554.2, "word": " at", "probability": 0.9130859375}, {"start": 1554.2, "end": 1554.3, "word": " this", "probability": 0.59375}, {"start": 1554.3, "end": 1554.9, "word": " new", "probability": 0.8818359375}, {"start": 1554.9, "end": 1554.92, "word": " library", "probability": 0.9365234375}, {"start": 1554.92, "end": 1556.36, "word": " This", "probability": 0.5390625}, {"start": 1556.36, "end": 1556.42, "word": " is", "probability": 0.8720703125}, {"start": 1556.42, "end": 1557.62, "word": " ListSorter", "probability": 0.86083984375}], "temperature": 1.0}, {"id": 68, "seek": 158801, "start": 1559.23, "end": 1588.01, "text": "LS for example new list sorter and then I say LS I don't know why I'm writing this LS dot has method sort but what does this method sort take? it takes a list and returns a list this is called AA and that is called A the input and the return are different and the name of the method itself can be different", "tokens": [19198, 337, 1365, 777, 1329, 262, 6122, 293, 550, 286, 584, 36657, 286, 500, 380, 458, 983, 286, 478, 3579, 341, 36657, 5893, 575, 3170, 1333, 457, 437, 775, 341, 3170, 1333, 747, 30, 309, 2516, 257, 1329, 293, 11247, 257, 1329, 341, 307, 1219, 30680, 293, 300, 307, 1219, 316, 264, 4846, 293, 264, 2736, 366, 819, 293, 264, 1315, 295, 264, 3170, 2564, 393, 312, 819], "avg_logprob": -0.47690218082372693, "compression_ratio": 1.7485714285714287, "no_speech_prob": 1.52587890625e-05, "words": [{"start": 1559.23, "end": 1559.69, "word": "LS", "probability": 0.2464599609375}, {"start": 1559.69, "end": 1559.89, "word": " for", "probability": 0.479248046875}, {"start": 1559.89, "end": 1560.17, "word": " example", "probability": 0.86572265625}, {"start": 1560.17, "end": 1560.57, "word": " new", "probability": 0.4013671875}, {"start": 1560.57, "end": 1561.75, "word": " list", "probability": 0.7587890625}, {"start": 1561.75, "end": 1562.95, "word": " sorter", "probability": 0.6954345703125}, {"start": 1562.95, "end": 1564.17, "word": " and", "probability": 0.46044921875}, {"start": 1564.17, "end": 1564.39, "word": " then", "probability": 0.68359375}, {"start": 1564.39, "end": 1564.53, "word": " I", "probability": 0.84814453125}, {"start": 1564.53, "end": 1564.71, "word": " say", "probability": 0.52978515625}, {"start": 1564.71, "end": 1565.23, "word": " LS", "probability": 0.9326171875}, {"start": 1565.23, "end": 1566.33, "word": " I", "probability": 0.12890625}, {"start": 1566.33, "end": 1567.81, "word": " don't", "probability": 0.883056640625}, {"start": 1567.81, "end": 1567.97, "word": " know", "probability": 0.86669921875}, {"start": 1567.97, "end": 1568.17, "word": " why", "probability": 0.8779296875}, {"start": 1568.17, "end": 1568.33, "word": " I'm", "probability": 0.673583984375}, {"start": 1568.33, "end": 1568.49, "word": " writing", "probability": 0.66455078125}, {"start": 1568.49, "end": 1568.79, "word": " this", "probability": 0.6689453125}, {"start": 1568.79, "end": 1571.09, "word": " LS", "probability": 0.1522216796875}, {"start": 1571.09, "end": 1571.91, "word": " dot", "probability": 0.4560546875}, {"start": 1571.91, "end": 1573.33, "word": " has", "probability": 0.37744140625}, {"start": 1573.33, "end": 1573.75, "word": " method", "probability": 0.67822265625}, {"start": 1573.75, "end": 1574.37, "word": " sort", "probability": 0.8740234375}, {"start": 1574.37, "end": 1575.37, "word": " but", "probability": 0.6396484375}, {"start": 1575.37, "end": 1575.59, "word": " what", "probability": 0.47705078125}, {"start": 1575.59, "end": 1575.59, "word": " does", "probability": 0.7255859375}, {"start": 1575.59, "end": 1575.67, "word": " this", "probability": 0.5390625}, {"start": 1575.67, "end": 1575.89, "word": " method", "probability": 0.9541015625}, {"start": 1575.89, "end": 1576.21, "word": " sort", "probability": 0.814453125}, {"start": 1576.21, "end": 1576.79, "word": " take?", "probability": 0.59912109375}, {"start": 1577.33, "end": 1577.85, "word": " it", "probability": 0.459716796875}, {"start": 1577.85, "end": 1578.03, "word": " takes", "probability": 0.7900390625}, {"start": 1578.03, "end": 1578.15, "word": " a", "probability": 0.39404296875}, {"start": 1578.15, "end": 1578.29, "word": " list", "probability": 0.92822265625}, {"start": 1578.29, "end": 1578.45, "word": " and", "probability": 0.89013671875}, {"start": 1578.45, "end": 1578.73, "word": " returns", "probability": 0.794921875}, {"start": 1578.73, "end": 1578.95, "word": " a", "probability": 0.71728515625}, {"start": 1578.95, "end": 1579.21, "word": " list", "probability": 0.90478515625}, {"start": 1579.21, "end": 1580.05, "word": " this", "probability": 0.32666015625}, {"start": 1580.05, "end": 1581.05, "word": " is", "probability": 0.52587890625}, {"start": 1581.05, "end": 1581.23, "word": " called", "probability": 0.362548828125}, {"start": 1581.23, "end": 1581.49, "word": " AA", "probability": 0.491455078125}, {"start": 1581.49, "end": 1581.67, "word": " and", "probability": 0.83203125}, {"start": 1581.67, "end": 1581.85, "word": " that", "probability": 0.5263671875}, {"start": 1581.85, "end": 1581.95, "word": " is", "probability": 0.6044921875}, {"start": 1581.95, "end": 1582.51, "word": " called", "probability": 0.92431640625}, {"start": 1582.51, "end": 1583.13, "word": " A", "probability": 0.493896484375}, {"start": 1583.13, "end": 1583.69, "word": " the", "probability": 0.381591796875}, {"start": 1583.69, "end": 1584.59, "word": " input", "probability": 0.740234375}, {"start": 1584.59, "end": 1584.81, "word": " and", "probability": 0.82666015625}, {"start": 1584.81, "end": 1584.87, "word": " the", "probability": 0.457275390625}, {"start": 1584.87, "end": 1585.15, "word": " return", "probability": 0.791015625}, {"start": 1585.15, "end": 1585.15, "word": " are", "probability": 0.431640625}, {"start": 1585.15, "end": 1585.15, "word": " different", "probability": 0.8515625}, {"start": 1585.15, "end": 1585.27, "word": " and", "probability": 0.64013671875}, {"start": 1585.27, "end": 1585.53, "word": " the", "probability": 0.67236328125}, {"start": 1585.53, "end": 1585.67, "word": " name", "probability": 0.79345703125}, {"start": 1585.67, "end": 1585.79, "word": " of", "probability": 0.94921875}, {"start": 1585.79, "end": 1585.81, "word": " the", "probability": 0.88720703125}, {"start": 1585.81, "end": 1586.01, "word": " method", "probability": 0.9521484375}, {"start": 1586.01, "end": 1586.43, "word": " itself", "probability": 0.54638671875}, {"start": 1586.43, "end": 1587.73, "word": " can", "probability": 0.50830078125}, {"start": 1587.73, "end": 1587.77, "word": " be", "probability": 0.4921875}, {"start": 1587.77, "end": 1588.01, "word": " different", "probability": 0.82421875}], "temperature": 1.0}, {"id": 69, "seek": 161693, "start": 1589.15, "end": 1616.93, "text": " Ok, it means that you have to figure out what was the normal situation that programmers and beginners used to have I go to the client, ok, and it starts deleting delete this one, ok, and put here instead of him list sorter and not only that, I go everywhere I mean here, ok, this method stopped working you have to make another method, take what? array and return array and this is not everywhere", "tokens": [3477, 11, 309, 1355, 300, 291, 362, 281, 2573, 484, 437, 390, 264, 2710, 2590, 300, 41504, 293, 26992, 1143, 281, 362, 286, 352, 281, 264, 6423, 11, 3133, 11, 293, 309, 3719, 48946, 12097, 341, 472, 11, 3133, 11, 293, 829, 510, 2602, 295, 796, 1329, 262, 6122, 293, 406, 787, 300, 11, 286, 352, 5315, 286, 914, 510, 11, 3133, 11, 341, 3170, 5936, 1364, 291, 362, 281, 652, 1071, 3170, 11, 747, 437, 30, 10225, 293, 2736, 10225, 293, 341, 307, 406, 5315], "avg_logprob": -0.6285919444314365, "compression_ratio": 1.7644444444444445, "no_speech_prob": 5.4836273193359375e-06, "words": [{"start": 1589.15, "end": 1589.37, "word": " Ok,", "probability": 0.10064697265625}, {"start": 1589.47, "end": 1590.05, "word": " it", "probability": 0.2149658203125}, {"start": 1590.05, "end": 1590.45, "word": " means", "probability": 0.87548828125}, {"start": 1590.45, "end": 1591.35, "word": " that", "probability": 0.724609375}, {"start": 1591.35, "end": 1592.39, "word": " you", "probability": 0.86181640625}, {"start": 1592.39, "end": 1592.61, "word": " have", "probability": 0.402099609375}, {"start": 1592.61, "end": 1592.75, "word": " to", "probability": 0.96337890625}, {"start": 1592.75, "end": 1593.19, "word": " figure", "probability": 0.08721923828125}, {"start": 1593.19, "end": 1593.21, "word": " out", "probability": 0.8798828125}, {"start": 1593.21, "end": 1593.71, "word": " what", "probability": 0.64306640625}, {"start": 1593.71, "end": 1593.93, "word": " was", "probability": 0.5810546875}, {"start": 1593.93, "end": 1594.33, "word": " the", "probability": 0.8232421875}, {"start": 1594.33, "end": 1594.89, "word": " normal", "probability": 0.5732421875}, {"start": 1594.89, "end": 1594.89, "word": " situation", "probability": 0.279052734375}, {"start": 1594.89, "end": 1595.15, "word": " that", "probability": 0.267578125}, {"start": 1595.15, "end": 1595.99, "word": " programmers", "probability": 0.4404296875}, {"start": 1595.99, "end": 1596.21, "word": " and", "probability": 0.228759765625}, {"start": 1596.21, "end": 1596.67, "word": " beginners", "probability": 0.70458984375}, {"start": 1596.67, "end": 1596.67, "word": " used", "probability": 0.214599609375}, {"start": 1596.67, "end": 1596.67, "word": " to", "probability": 0.96533203125}, {"start": 1596.67, "end": 1596.67, "word": " have", "probability": 0.307861328125}, {"start": 1596.67, "end": 1596.87, "word": " I", "probability": 0.364990234375}, {"start": 1596.87, "end": 1597.05, "word": " go", "probability": 0.84130859375}, {"start": 1597.05, "end": 1597.19, "word": " to", "probability": 0.9423828125}, {"start": 1597.19, "end": 1597.31, "word": " the", "probability": 0.6923828125}, {"start": 1597.31, "end": 1597.71, "word": " client,", "probability": 0.9306640625}, {"start": 1598.33, "end": 1598.61, "word": " ok,", "probability": 0.38623046875}, {"start": 1598.75, "end": 1598.91, "word": " and", "probability": 0.84375}, {"start": 1598.91, "end": 1599.25, "word": " it", "probability": 0.5732421875}, {"start": 1599.25, "end": 1599.25, "word": " starts", "probability": 0.56640625}, {"start": 1599.25, "end": 1599.59, "word": " deleting", "probability": 0.6162109375}, {"start": 1599.59, "end": 1600.03, "word": " delete", "probability": 0.30908203125}, {"start": 1600.03, "end": 1600.47, "word": " this", "probability": 0.5341796875}, {"start": 1600.47, "end": 1601.29, "word": " one,", "probability": 0.38720703125}, {"start": 1601.53, "end": 1601.89, "word": " ok,", "probability": 0.8095703125}, {"start": 1601.97, "end": 1602.07, "word": " and", "probability": 0.9111328125}, {"start": 1602.07, "end": 1602.29, "word": " put", "probability": 0.371337890625}, {"start": 1602.29, "end": 1602.45, "word": " here", "probability": 0.443359375}, {"start": 1602.45, "end": 1602.59, "word": " instead", "probability": 0.65380859375}, {"start": 1602.59, "end": 1602.59, "word": " of", "probability": 0.92431640625}, {"start": 1602.59, "end": 1603.01, "word": " him", "probability": 0.141845703125}, {"start": 1603.01, "end": 1604.01, "word": " list", "probability": 0.5732421875}, {"start": 1604.01, "end": 1604.41, "word": " sorter", "probability": 0.603271484375}, {"start": 1604.41, "end": 1604.89, "word": " and", "probability": 0.4697265625}, {"start": 1604.89, "end": 1605.03, "word": " not", "probability": 0.7138671875}, {"start": 1605.03, "end": 1605.23, "word": " only", "probability": 0.81201171875}, {"start": 1605.23, "end": 1605.47, "word": " that,", "probability": 0.73095703125}, {"start": 1605.55, "end": 1605.61, "word": " I", "probability": 0.86083984375}, {"start": 1605.61, "end": 1605.75, "word": " go", "probability": 0.80859375}, {"start": 1605.75, "end": 1606.43, "word": " everywhere", "probability": 0.52783203125}, {"start": 1606.43, "end": 1607.45, "word": " I", "probability": 0.10845947265625}, {"start": 1607.45, "end": 1607.77, "word": " mean", "probability": 0.677734375}, {"start": 1607.77, "end": 1608.09, "word": " here,", "probability": 0.5224609375}, {"start": 1608.29, "end": 1608.47, "word": " ok,", "probability": 0.327392578125}, {"start": 1608.59, "end": 1608.77, "word": " this", "probability": 0.8720703125}, {"start": 1608.77, "end": 1609.05, "word": " method", "probability": 0.9619140625}, {"start": 1609.05, "end": 1609.35, "word": " stopped", "probability": 0.43701171875}, {"start": 1609.35, "end": 1609.89, "word": " working", "probability": 0.6533203125}, {"start": 1609.89, "end": 1610.59, "word": " you", "probability": 0.56640625}, {"start": 1610.59, "end": 1610.69, "word": " have", "probability": 0.62548828125}, {"start": 1610.69, "end": 1610.75, "word": " to", "probability": 0.970703125}, {"start": 1610.75, "end": 1610.91, "word": " make", "probability": 0.459228515625}, {"start": 1610.91, "end": 1611.01, "word": " another", "probability": 0.7978515625}, {"start": 1611.01, "end": 1611.51, "word": " method,", "probability": 0.8798828125}, {"start": 1611.79, "end": 1612.15, "word": " take", "probability": 0.434814453125}, {"start": 1612.15, "end": 1612.49, "word": " what?", "probability": 0.677734375}, {"start": 1612.59, "end": 1612.91, "word": " array", "probability": 0.46435546875}, {"start": 1612.91, "end": 1613.67, "word": " and", "probability": 0.61865234375}, {"start": 1613.67, "end": 1613.93, "word": " return", "probability": 0.68115234375}, {"start": 1613.93, "end": 1614.37, "word": " array", "probability": 0.75048828125}, {"start": 1614.37, "end": 1615.25, "word": " and", "probability": 0.7529296875}, {"start": 1615.25, "end": 1615.45, "word": " this", "probability": 0.5849609375}, {"start": 1615.45, "end": 1615.59, "word": " is", "probability": 0.365234375}, {"start": 1615.59, "end": 1616.21, "word": " not", "probability": 0.83837890625}, {"start": 1616.21, "end": 1616.93, "word": " everywhere", "probability": 0.1346435546875}], "temperature": 1.0}, {"id": 70, "seek": 164052, "start": 1618.16, "end": 1640.52, "text": "By calling x, you want to make the change What is the purpose of this gate? Because we don't want to change any line in the client And we want to keep using ArraySorter But instead of x, we want to make it use y So how can we do this? What did we agree on? That ArraySorter is an old library that we don't want to play with", "tokens": [27690, 5141, 2031, 11, 291, 528, 281, 652, 264, 1319, 708, 307, 264, 4334, 295, 341, 8539, 30, 1436, 321, 500, 380, 528, 281, 1319, 604, 1622, 294, 264, 6423, 400, 321, 528, 281, 1066, 1228, 1587, 3458, 50, 6122, 583, 2602, 295, 2031, 11, 321, 528, 281, 652, 309, 764, 288, 407, 577, 393, 321, 360, 341, 30, 708, 630, 321, 3986, 322, 30, 663, 1587, 3458, 50, 6122, 307, 364, 1331, 6405, 300, 321, 500, 380, 528, 281, 862, 365], "avg_logprob": -0.5271084610238133, "compression_ratio": 1.6735751295336787, "no_speech_prob": 2.2709369659423828e-05, "words": [{"start": 1618.16, "end": 1618.6, "word": "By", "probability": 0.11419677734375}, {"start": 1618.6, "end": 1618.88, "word": " calling", "probability": 0.354736328125}, {"start": 1618.88, "end": 1619.5, "word": " x,", "probability": 0.25439453125}, {"start": 1619.74, "end": 1620.02, "word": " you", "probability": 0.70947265625}, {"start": 1620.02, "end": 1620.16, "word": " want", "probability": 0.2232666015625}, {"start": 1620.16, "end": 1620.38, "word": " to", "probability": 0.87353515625}, {"start": 1620.38, "end": 1620.56, "word": " make", "probability": 0.426513671875}, {"start": 1620.56, "end": 1621.08, "word": " the", "probability": 0.439208984375}, {"start": 1621.08, "end": 1621.32, "word": " change", "probability": 0.7861328125}, {"start": 1621.32, "end": 1622.02, "word": " What", "probability": 0.39306640625}, {"start": 1622.02, "end": 1622.04, "word": " is", "probability": 0.6474609375}, {"start": 1622.04, "end": 1622.12, "word": " the", "probability": 0.767578125}, {"start": 1622.12, "end": 1622.28, "word": " purpose", "probability": 0.38134765625}, {"start": 1622.28, "end": 1622.42, "word": " of", "probability": 0.953125}, {"start": 1622.42, "end": 1622.56, "word": " this", "probability": 0.81689453125}, {"start": 1622.56, "end": 1622.8, "word": " gate?", "probability": 0.8173828125}, {"start": 1622.88, "end": 1623.08, "word": " Because", "probability": 0.2215576171875}, {"start": 1623.08, "end": 1623.44, "word": " we", "probability": 0.52294921875}, {"start": 1623.44, "end": 1624.16, "word": " don't", "probability": 0.701904296875}, {"start": 1624.16, "end": 1625.24, "word": " want", "probability": 0.79931640625}, {"start": 1625.24, "end": 1625.24, "word": " to", "probability": 0.85986328125}, {"start": 1625.24, "end": 1625.44, "word": " change", "probability": 0.83056640625}, {"start": 1625.44, "end": 1625.86, "word": " any", "probability": 0.26123046875}, {"start": 1625.86, "end": 1626.16, "word": " line", "probability": 0.75830078125}, {"start": 1626.16, "end": 1626.22, "word": " in", "probability": 0.4453125}, {"start": 1626.22, "end": 1626.22, "word": " the", "probability": 0.5146484375}, {"start": 1626.22, "end": 1626.22, "word": " client", "probability": 0.9189453125}, {"start": 1626.22, "end": 1627.1, "word": " And", "probability": 0.260498046875}, {"start": 1627.1, "end": 1627.2, "word": " we", "probability": 0.2144775390625}, {"start": 1627.2, "end": 1627.4, "word": " want", "probability": 0.66162109375}, {"start": 1627.4, "end": 1627.4, "word": " to", "probability": 0.407470703125}, {"start": 1627.4, "end": 1627.56, "word": " keep", "probability": 0.46044921875}, {"start": 1627.56, "end": 1628.02, "word": " using", "probability": 0.9189453125}, {"start": 1628.02, "end": 1628.7, "word": " ArraySorter", "probability": 0.76629638671875}, {"start": 1628.7, "end": 1629.26, "word": " But", "probability": 0.352294921875}, {"start": 1629.26, "end": 1629.66, "word": " instead", "probability": 0.67236328125}, {"start": 1629.66, "end": 1629.74, "word": " of", "probability": 0.91943359375}, {"start": 1629.74, "end": 1630.16, "word": " x,", "probability": 0.88671875}, {"start": 1630.26, "end": 1630.26, "word": " we", "probability": 0.70703125}, {"start": 1630.26, "end": 1630.4, "word": " want", "probability": 0.80810546875}, {"start": 1630.4, "end": 1630.4, "word": " to", "probability": 0.908203125}, {"start": 1630.4, "end": 1630.5, "word": " make", "probability": 0.287353515625}, {"start": 1630.5, "end": 1630.58, "word": " it", "probability": 0.69189453125}, {"start": 1630.58, "end": 1630.96, "word": " use", "probability": 0.8779296875}, {"start": 1630.96, "end": 1632.12, "word": " y", "probability": 0.8720703125}, {"start": 1632.12, "end": 1632.7, "word": " So", "probability": 0.2626953125}, {"start": 1632.7, "end": 1633.06, "word": " how", "probability": 0.66162109375}, {"start": 1633.06, "end": 1633.4, "word": " can", "probability": 0.7626953125}, {"start": 1633.4, "end": 1633.52, "word": " we", "probability": 0.9296875}, {"start": 1633.52, "end": 1633.66, "word": " do", "probability": 0.338623046875}, {"start": 1633.66, "end": 1633.92, "word": " this?", "probability": 0.712890625}, {"start": 1634.28, "end": 1634.76, "word": " What", "probability": 0.26123046875}, {"start": 1634.76, "end": 1634.76, "word": " did", "probability": 0.305908203125}, {"start": 1634.76, "end": 1635.28, "word": " we", "probability": 0.93701171875}, {"start": 1635.28, "end": 1635.48, "word": " agree", "probability": 0.875}, {"start": 1635.48, "end": 1636.18, "word": " on?", "probability": 0.48583984375}, {"start": 1636.18, "end": 1636.48, "word": " That", "probability": 0.544921875}, {"start": 1636.48, "end": 1637.5, "word": " ArraySorter", "probability": 0.87451171875}, {"start": 1637.5, "end": 1637.72, "word": " is", "probability": 0.833984375}, {"start": 1637.72, "end": 1637.86, "word": " an", "probability": 0.2388916015625}, {"start": 1637.86, "end": 1639.54, "word": " old", "probability": 0.85302734375}, {"start": 1639.54, "end": 1639.54, "word": " library", "probability": 0.91748046875}, {"start": 1639.54, "end": 1639.9, "word": " that", "probability": 0.47705078125}, {"start": 1639.9, "end": 1639.9, "word": " we", "probability": 0.94140625}, {"start": 1639.9, "end": 1639.98, "word": " don't", "probability": 0.835693359375}, {"start": 1639.98, "end": 1640.16, "word": " want", "probability": 0.81396484375}, {"start": 1640.16, "end": 1640.2, "word": " to", "probability": 0.97216796875}, {"start": 1640.2, "end": 1640.38, "word": " play", "probability": 0.73828125}, {"start": 1640.38, "end": 1640.52, "word": " with", "probability": 0.72900390625}], "temperature": 1.0}, {"id": 71, "seek": 166817, "start": 1641.63, "end": 1668.17, "text": " and the list sorter is the new library let's assume that we don't have the code this code you don't have and this code you don't have you don't know how to play with it and the client we don't want to change anything in it not even a line of code we don't want to change here nor here nor here what are we going to do? pay attention but we want to make the client use the while look what I'm going to do I'm going to create a new class", "tokens": [293, 264, 1329, 262, 6122, 307, 264, 777, 6405, 718, 311, 6552, 300, 321, 500, 380, 362, 264, 3089, 341, 3089, 291, 500, 380, 362, 293, 341, 3089, 291, 500, 380, 362, 291, 500, 380, 458, 577, 281, 862, 365, 309, 293, 264, 6423, 321, 500, 380, 528, 281, 1319, 1340, 294, 309, 406, 754, 257, 1622, 295, 3089, 321, 500, 380, 528, 281, 1319, 510, 6051, 510, 6051, 510, 437, 366, 321, 516, 281, 360, 30, 1689, 3202, 457, 321, 528, 281, 652, 264, 6423, 764, 264, 1339, 574, 437, 286, 478, 516, 281, 360, 286, 478, 516, 281, 1884, 257, 777, 1508], "avg_logprob": -0.5148809387570336, "compression_ratio": 2.0861244019138754, "no_speech_prob": 4.351139068603516e-06, "words": [{"start": 1641.63, "end": 1641.93, "word": " and", "probability": 0.1845703125}, {"start": 1641.93, "end": 1641.97, "word": " the", "probability": 0.3798828125}, {"start": 1641.97, "end": 1642.17, "word": " list", "probability": 0.60009765625}, {"start": 1642.17, "end": 1642.51, "word": " sorter", "probability": 0.6796875}, {"start": 1642.51, "end": 1642.69, "word": " is", "probability": 0.1748046875}, {"start": 1642.69, "end": 1642.69, "word": " the", "probability": 0.303466796875}, {"start": 1642.69, "end": 1643.33, "word": " new", "probability": 0.70849609375}, {"start": 1643.33, "end": 1643.33, "word": " library", "probability": 0.62646484375}, {"start": 1643.33, "end": 1644.65, "word": " let's", "probability": 0.51385498046875}, {"start": 1644.65, "end": 1644.89, "word": " assume", "probability": 0.420166015625}, {"start": 1644.89, "end": 1645.03, "word": " that", "probability": 0.54248046875}, {"start": 1645.03, "end": 1645.51, "word": " we", "probability": 0.71142578125}, {"start": 1645.51, "end": 1645.63, "word": " don't", "probability": 0.894287109375}, {"start": 1645.63, "end": 1645.89, "word": " have", "probability": 0.91357421875}, {"start": 1645.89, "end": 1645.95, "word": " the", "probability": 0.4287109375}, {"start": 1645.95, "end": 1645.95, "word": " code", "probability": 0.8662109375}, {"start": 1645.95, "end": 1646.91, "word": " this", "probability": 0.09503173828125}, {"start": 1646.91, "end": 1647.33, "word": " code", "probability": 0.77587890625}, {"start": 1647.33, "end": 1647.79, "word": " you", "probability": 0.1536865234375}, {"start": 1647.79, "end": 1647.79, "word": " don't", "probability": 0.907958984375}, {"start": 1647.79, "end": 1648.79, "word": " have", "probability": 0.92822265625}, {"start": 1648.79, "end": 1649.07, "word": " and", "probability": 0.36669921875}, {"start": 1649.07, "end": 1649.17, "word": " this", "probability": 0.63037109375}, {"start": 1649.17, "end": 1649.59, "word": " code", "probability": 0.859375}, {"start": 1649.59, "end": 1649.73, "word": " you", "probability": 0.8173828125}, {"start": 1649.73, "end": 1649.81, "word": " don't", "probability": 0.955322265625}, {"start": 1649.81, "end": 1650.57, "word": " have", "probability": 0.93896484375}, {"start": 1650.57, "end": 1650.81, "word": " you", "probability": 0.29833984375}, {"start": 1650.81, "end": 1650.87, "word": " don't", "probability": 0.59808349609375}, {"start": 1650.87, "end": 1651.03, "word": " know", "probability": 0.7763671875}, {"start": 1651.03, "end": 1651.15, "word": " how", "probability": 0.52685546875}, {"start": 1651.15, "end": 1651.19, "word": " to", "probability": 0.92333984375}, {"start": 1651.19, "end": 1651.31, "word": " play", "probability": 0.5732421875}, {"start": 1651.31, "end": 1651.49, "word": " with", "probability": 0.81005859375}, {"start": 1651.49, "end": 1651.71, "word": " it", "probability": 0.8623046875}, {"start": 1651.71, "end": 1652.07, "word": " and", "probability": 0.7451171875}, {"start": 1652.07, "end": 1652.19, "word": " the", "probability": 0.51806640625}, {"start": 1652.19, "end": 1652.71, "word": " client", "probability": 0.9248046875}, {"start": 1652.71, "end": 1653.39, "word": " we", "probability": 0.5166015625}, {"start": 1653.39, "end": 1653.63, "word": " don't", "probability": 0.7467041015625}, {"start": 1653.63, "end": 1653.71, "word": " want", "probability": 0.4140625}, {"start": 1653.71, "end": 1653.77, "word": " to", "probability": 0.9267578125}, {"start": 1653.77, "end": 1653.97, "word": " change", "probability": 0.86181640625}, {"start": 1653.97, "end": 1654.35, "word": " anything", "probability": 0.32568359375}, {"start": 1654.35, "end": 1654.37, "word": " in", "probability": 0.3427734375}, {"start": 1654.37, "end": 1654.51, "word": " it", "probability": 0.78662109375}, {"start": 1654.51, "end": 1654.61, "word": " not", "probability": 0.432861328125}, {"start": 1654.61, "end": 1654.69, "word": " even", "probability": 0.45556640625}, {"start": 1654.69, "end": 1654.79, "word": " a", "probability": 0.533203125}, {"start": 1654.79, "end": 1654.99, "word": " line", "probability": 0.880859375}, {"start": 1654.99, "end": 1655.95, "word": " of", "probability": 0.5654296875}, {"start": 1655.95, "end": 1656.25, "word": " code", "probability": 0.93310546875}, {"start": 1656.25, "end": 1656.69, "word": " we", "probability": 0.4404296875}, {"start": 1656.69, "end": 1656.89, "word": " don't", "probability": 0.6094970703125}, {"start": 1656.89, "end": 1656.89, "word": " want", "probability": 0.767578125}, {"start": 1656.89, "end": 1656.91, "word": " to", "probability": 0.95166015625}, {"start": 1656.91, "end": 1657.17, "word": " change", "probability": 0.86376953125}, {"start": 1657.17, "end": 1657.43, "word": " here", "probability": 0.43896484375}, {"start": 1657.43, "end": 1657.77, "word": " nor", "probability": 0.260009765625}, {"start": 1657.77, "end": 1658.49, "word": " here", "probability": 0.7099609375}, {"start": 1658.49, "end": 1659.21, "word": " nor", "probability": 0.7841796875}, {"start": 1659.21, "end": 1659.77, "word": " here", "probability": 0.76025390625}, {"start": 1659.77, "end": 1660.21, "word": " what", "probability": 0.357666015625}, {"start": 1660.21, "end": 1660.39, "word": " are", "probability": 0.35400390625}, {"start": 1660.39, "end": 1660.43, "word": " we", "probability": 0.9169921875}, {"start": 1660.43, "end": 1660.61, "word": " going", "probability": 0.908203125}, {"start": 1660.61, "end": 1660.67, "word": " to", "probability": 0.9716796875}, {"start": 1660.67, "end": 1660.87, "word": " do?", "probability": 0.962890625}, {"start": 1661.29, "end": 1661.67, "word": " pay", "probability": 0.218505859375}, {"start": 1661.67, "end": 1661.79, "word": " attention", "probability": 0.93017578125}, {"start": 1661.79, "end": 1662.13, "word": " but", "probability": 0.24658203125}, {"start": 1662.13, "end": 1662.31, "word": " we", "probability": 0.77587890625}, {"start": 1662.31, "end": 1662.39, "word": " want", "probability": 0.3525390625}, {"start": 1662.39, "end": 1662.45, "word": " to", "probability": 0.90478515625}, {"start": 1662.45, "end": 1662.69, "word": " make", "probability": 0.470458984375}, {"start": 1662.69, "end": 1662.85, "word": " the", "probability": 0.462890625}, {"start": 1662.85, "end": 1663.45, "word": " client", "probability": 0.9306640625}, {"start": 1663.45, "end": 1663.95, "word": " use", "probability": 0.69970703125}, {"start": 1663.95, "end": 1665.69, "word": " the", "probability": 0.66845703125}, {"start": 1665.69, "end": 1665.87, "word": " while", "probability": 0.2421875}, {"start": 1665.87, "end": 1666.41, "word": " look", "probability": 0.490966796875}, {"start": 1666.41, "end": 1666.57, "word": " what", "probability": 0.7197265625}, {"start": 1666.57, "end": 1666.69, "word": " I'm", "probability": 0.6298828125}, {"start": 1666.69, "end": 1666.69, "word": " going", "probability": 0.9033203125}, {"start": 1666.69, "end": 1666.77, "word": " to", "probability": 0.9716796875}, {"start": 1666.77, "end": 1666.95, "word": " do", "probability": 0.95849609375}, {"start": 1666.95, "end": 1667.23, "word": " I'm", "probability": 0.632568359375}, {"start": 1667.23, "end": 1667.31, "word": " going", "probability": 0.93212890625}, {"start": 1667.31, "end": 1667.55, "word": " to", "probability": 0.96240234375}, {"start": 1667.55, "end": 1667.79, "word": " create", "probability": 0.463623046875}, {"start": 1667.79, "end": 1667.89, "word": " a", "probability": 0.96826171875}, {"start": 1667.89, "end": 1667.89, "word": " new", "probability": 0.90478515625}, {"start": 1667.89, "end": 1668.17, "word": " class", "probability": 0.97705078125}], "temperature": 1.0}, {"id": 72, "seek": 170050, "start": 1671.42, "end": 1700.5, "text": " I want to call it MyAdapter Do you have it or not guys? MyAdapter Now, what does my client use now? The X I want to make the MyAdapter of the new class from the same type of X Ok? I want to make it an ArraySorter Ok? And all the methods in the ArraySorter", "tokens": [286, 528, 281, 818, 309, 1222, 15830, 5446, 1144, 291, 362, 309, 420, 406, 1074, 30, 1222, 15830, 5446, 823, 11, 437, 775, 452, 6423, 764, 586, 30, 440, 1783, 286, 528, 281, 652, 264, 1222, 15830, 5446, 295, 264, 777, 1508, 490, 264, 912, 2010, 295, 1783, 3477, 30, 286, 528, 281, 652, 309, 364, 1587, 3458, 50, 6122, 3477, 30, 400, 439, 264, 7150, 294, 264, 1587, 3458, 50, 6122], "avg_logprob": -0.4730308251838162, "compression_ratio": 1.5900621118012421, "no_speech_prob": 8.940696716308594e-06, "words": [{"start": 1671.42, "end": 1671.6, "word": " I", "probability": 0.62548828125}, {"start": 1671.6, "end": 1671.72, "word": " want", "probability": 0.2607421875}, {"start": 1671.72, "end": 1671.8, "word": " to", "probability": 0.96142578125}, {"start": 1671.8, "end": 1672.04, "word": " call", "probability": 0.62890625}, {"start": 1672.04, "end": 1672.56, "word": " it", "probability": 0.85546875}, {"start": 1672.56, "end": 1673.88, "word": " MyAdapter", "probability": 0.6722005208333334}, {"start": 1673.88, "end": 1674.88, "word": " Do", "probability": 0.0860595703125}, {"start": 1674.88, "end": 1677.66, "word": " you", "probability": 0.82958984375}, {"start": 1677.66, "end": 1677.86, "word": " have", "probability": 0.358642578125}, {"start": 1677.86, "end": 1677.96, "word": " it", "probability": 0.853515625}, {"start": 1677.96, "end": 1678.02, "word": " or", "probability": 0.5712890625}, {"start": 1678.02, "end": 1678.16, "word": " not", "probability": 0.89013671875}, {"start": 1678.16, "end": 1678.58, "word": " guys?", "probability": 0.341064453125}, {"start": 1679.08, "end": 1679.6, "word": " MyAdapter", "probability": 0.8601888020833334}, {"start": 1679.6, "end": 1680.36, "word": " Now,", "probability": 0.55712890625}, {"start": 1681.14, "end": 1681.32, "word": " what", "probability": 0.376220703125}, {"start": 1681.32, "end": 1681.32, "word": " does", "probability": 0.494873046875}, {"start": 1681.32, "end": 1681.32, "word": " my", "probability": 0.89990234375}, {"start": 1681.32, "end": 1681.7, "word": " client", "probability": 0.8955078125}, {"start": 1681.7, "end": 1682.96, "word": " use", "probability": 0.654296875}, {"start": 1682.96, "end": 1683.48, "word": " now?", "probability": 0.384521484375}, {"start": 1684.04, "end": 1684.56, "word": " The", "probability": 0.312744140625}, {"start": 1684.56, "end": 1684.8, "word": " X", "probability": 0.73828125}, {"start": 1684.8, "end": 1685.24, "word": " I", "probability": 0.5107421875}, {"start": 1685.24, "end": 1685.44, "word": " want", "probability": 0.79052734375}, {"start": 1685.44, "end": 1685.44, "word": " to", "probability": 0.9541015625}, {"start": 1685.44, "end": 1685.74, "word": " make", "probability": 0.376953125}, {"start": 1685.74, "end": 1686.96, "word": " the", "probability": 0.4384765625}, {"start": 1686.96, "end": 1687.54, "word": " MyAdapter", "probability": 0.7822265625}, {"start": 1687.54, "end": 1687.7, "word": " of", "probability": 0.44384765625}, {"start": 1687.7, "end": 1687.76, "word": " the", "probability": 0.72705078125}, {"start": 1687.76, "end": 1688.32, "word": " new", "probability": 0.806640625}, {"start": 1688.32, "end": 1688.32, "word": " class", "probability": 0.92041015625}, {"start": 1688.32, "end": 1688.6, "word": " from", "probability": 0.2049560546875}, {"start": 1688.6, "end": 1688.74, "word": " the", "probability": 0.8798828125}, {"start": 1688.74, "end": 1688.88, "word": " same", "probability": 0.81591796875}, {"start": 1688.88, "end": 1689.14, "word": " type", "probability": 0.442626953125}, {"start": 1689.14, "end": 1689.26, "word": " of", "probability": 0.6982421875}, {"start": 1689.26, "end": 1689.58, "word": " X", "probability": 0.84814453125}, {"start": 1689.58, "end": 1690.64, "word": " Ok?", "probability": 0.1365966796875}, {"start": 1690.82, "end": 1691.06, "word": " I", "probability": 0.5419921875}, {"start": 1691.06, "end": 1691.2, "word": " want", "probability": 0.71923828125}, {"start": 1691.2, "end": 1691.22, "word": " to", "probability": 0.95654296875}, {"start": 1691.22, "end": 1691.42, "word": " make", "probability": 0.8720703125}, {"start": 1691.42, "end": 1691.64, "word": " it", "probability": 0.82763671875}, {"start": 1691.64, "end": 1691.64, "word": " an", "probability": 0.383544921875}, {"start": 1691.64, "end": 1693.42, "word": " ArraySorter", "probability": 0.662841796875}, {"start": 1693.42, "end": 1697.7, "word": " Ok?", "probability": 0.77099609375}, {"start": 1698.34, "end": 1698.86, "word": " And", "probability": 0.60888671875}, {"start": 1698.86, "end": 1699.12, "word": " all", "probability": 0.91796875}, {"start": 1699.12, "end": 1699.22, "word": " the", "probability": 0.515625}, {"start": 1699.22, "end": 1699.56, "word": " methods", "probability": 0.85009765625}, {"start": 1699.56, "end": 1699.74, "word": " in", "probability": 0.681640625}, {"start": 1699.74, "end": 1699.86, "word": " the", "probability": 0.7890625}, {"start": 1699.86, "end": 1700.5, "word": " ArraySorter", "probability": 0.8905029296875}], "temperature": 1.0}, {"id": 73, "seek": 173052, "start": 1701.74, "end": 1730.52, "text": " I want to make it overwrite here So what are the existing methods? I have a method called sort which takes the array of integers and returns the array of integers Do you have it or not? So did you get the myadapter? What type is it? The array of sorts Now if I go to the main Look with me Of course here it only needs output So let it return null for now", "tokens": [286, 528, 281, 652, 309, 670, 21561, 510, 407, 437, 366, 264, 6741, 7150, 30, 286, 362, 257, 3170, 1219, 1333, 597, 2516, 264, 10225, 295, 41674, 293, 11247, 264, 10225, 295, 41674, 1144, 291, 362, 309, 420, 406, 30, 407, 630, 291, 483, 264, 452, 345, 5446, 30, 708, 2010, 307, 309, 30, 440, 10225, 295, 7527, 823, 498, 286, 352, 281, 264, 2135, 2053, 365, 385, 2720, 1164, 510, 309, 787, 2203, 5598, 407, 718, 309, 2736, 18184, 337, 586], "avg_logprob": -0.5131777366959905, "compression_ratio": 1.6511627906976745, "no_speech_prob": 9.298324584960938e-06, "words": [{"start": 1701.74, "end": 1701.92, "word": " I", "probability": 0.413818359375}, {"start": 1701.92, "end": 1702.0, "word": " want", "probability": 0.36328125}, {"start": 1702.0, "end": 1702.06, "word": " to", "probability": 0.916015625}, {"start": 1702.06, "end": 1702.22, "word": " make", "probability": 0.327392578125}, {"start": 1702.22, "end": 1702.34, "word": " it", "probability": 0.56982421875}, {"start": 1702.34, "end": 1703.84, "word": " overwrite", "probability": 0.52752685546875}, {"start": 1703.84, "end": 1704.22, "word": " here", "probability": 0.33447265625}, {"start": 1704.22, "end": 1704.88, "word": " So", "probability": 0.1484375}, {"start": 1704.88, "end": 1705.1, "word": " what", "probability": 0.58251953125}, {"start": 1705.1, "end": 1705.16, "word": " are", "probability": 0.54345703125}, {"start": 1705.16, "end": 1705.22, "word": " the", "probability": 0.671875}, {"start": 1705.22, "end": 1705.78, "word": " existing", "probability": 0.297607421875}, {"start": 1705.78, "end": 1705.78, "word": " methods?", "probability": 0.86767578125}, {"start": 1705.88, "end": 1706.04, "word": " I", "probability": 0.89208984375}, {"start": 1706.04, "end": 1706.16, "word": " have", "probability": 0.931640625}, {"start": 1706.16, "end": 1706.2, "word": " a", "probability": 0.7587890625}, {"start": 1706.2, "end": 1706.4, "word": " method", "probability": 0.95458984375}, {"start": 1706.4, "end": 1706.76, "word": " called", "probability": 0.62109375}, {"start": 1706.76, "end": 1707.98, "word": " sort", "probability": 0.50244140625}, {"start": 1707.98, "end": 1708.2, "word": " which", "probability": 0.26123046875}, {"start": 1708.2, "end": 1708.58, "word": " takes", "probability": 0.71484375}, {"start": 1708.58, "end": 1710.28, "word": " the", "probability": 0.276611328125}, {"start": 1710.28, "end": 1710.6, "word": " array", "probability": 0.91064453125}, {"start": 1710.6, "end": 1711.22, "word": " of", "probability": 0.95703125}, {"start": 1711.22, "end": 1711.58, "word": " integers", "probability": 0.94580078125}, {"start": 1711.58, "end": 1711.8, "word": " and", "probability": 0.853515625}, {"start": 1711.8, "end": 1712.04, "word": " returns", "probability": 0.81201171875}, {"start": 1712.04, "end": 1712.26, "word": " the", "probability": 0.60205078125}, {"start": 1712.26, "end": 1714.04, "word": " array", "probability": 0.8994140625}, {"start": 1714.04, "end": 1714.24, "word": " of", "probability": 0.916015625}, {"start": 1714.24, "end": 1714.74, "word": " integers", "probability": 0.9423828125}, {"start": 1714.74, "end": 1715.3, "word": " Do", "probability": 0.102783203125}, {"start": 1715.3, "end": 1715.3, "word": " you", "probability": 0.78125}, {"start": 1715.3, "end": 1715.4, "word": " have", "probability": 0.5263671875}, {"start": 1715.4, "end": 1715.46, "word": " it", "probability": 0.830078125}, {"start": 1715.46, "end": 1715.54, "word": " or", "probability": 0.740234375}, {"start": 1715.54, "end": 1715.72, "word": " not?", "probability": 0.9033203125}, {"start": 1716.1, "end": 1716.26, "word": " So", "probability": 0.330810546875}, {"start": 1716.26, "end": 1716.44, "word": " did", "probability": 0.2685546875}, {"start": 1716.44, "end": 1716.6, "word": " you", "probability": 0.8994140625}, {"start": 1716.6, "end": 1716.6, "word": " get", "probability": 0.3603515625}, {"start": 1716.6, "end": 1716.74, "word": " the", "probability": 0.673828125}, {"start": 1716.74, "end": 1717.22, "word": " myadapter?", "probability": 0.6700846354166666}, {"start": 1717.38, "end": 1717.44, "word": " What", "probability": 0.72314453125}, {"start": 1717.44, "end": 1717.62, "word": " type", "probability": 0.369384765625}, {"start": 1717.62, "end": 1717.68, "word": " is", "probability": 0.71826171875}, {"start": 1717.68, "end": 1717.98, "word": " it?", "probability": 0.921875}, {"start": 1719.02, "end": 1719.42, "word": " The", "probability": 0.2200927734375}, {"start": 1719.42, "end": 1719.58, "word": " array", "probability": 0.77001953125}, {"start": 1719.58, "end": 1719.64, "word": " of", "probability": 0.60595703125}, {"start": 1719.64, "end": 1719.86, "word": " sorts", "probability": 0.3916015625}, {"start": 1719.86, "end": 1720.48, "word": " Now", "probability": 0.62841796875}, {"start": 1720.48, "end": 1720.7, "word": " if", "probability": 0.7041015625}, {"start": 1720.7, "end": 1720.9, "word": " I", "probability": 0.96142578125}, {"start": 1720.9, "end": 1721.08, "word": " go", "probability": 0.67578125}, {"start": 1721.08, "end": 1721.3, "word": " to", "probability": 0.9287109375}, {"start": 1721.3, "end": 1721.46, "word": " the", "probability": 0.5947265625}, {"start": 1721.46, "end": 1721.64, "word": " main", "probability": 0.90966796875}, {"start": 1721.64, "end": 1722.5, "word": " Look", "probability": 0.1868896484375}, {"start": 1722.5, "end": 1722.68, "word": " with", "probability": 0.63818359375}, {"start": 1722.68, "end": 1723.02, "word": " me", "probability": 0.96630859375}, {"start": 1723.02, "end": 1725.2, "word": " Of", "probability": 0.728515625}, {"start": 1725.2, "end": 1725.28, "word": " course", "probability": 0.95361328125}, {"start": 1725.28, "end": 1725.44, "word": " here", "probability": 0.460205078125}, {"start": 1725.44, "end": 1725.5, "word": " it", "probability": 0.47314453125}, {"start": 1725.5, "end": 1725.6, "word": " only", "probability": 0.495849609375}, {"start": 1725.6, "end": 1725.68, "word": " needs", "probability": 0.44775390625}, {"start": 1725.68, "end": 1726.74, "word": " output", "probability": 0.8017578125}, {"start": 1726.74, "end": 1727.16, "word": " So", "probability": 0.4921875}, {"start": 1727.16, "end": 1727.4, "word": " let", "probability": 0.69921875}, {"start": 1727.4, "end": 1727.54, "word": " it", "probability": 0.72265625}, {"start": 1727.54, "end": 1729.02, "word": " return", "probability": 0.763671875}, {"start": 1729.02, "end": 1730.52, "word": " null", "probability": 0.90673828125}, {"start": 1730.52, "end": 1730.52, "word": " for", "probability": 0.35791015625}, {"start": 1730.52, "end": 1730.52, "word": " now", "probability": 0.9091796875}], "temperature": 1.0}, {"id": 74, "seek": 175627, "start": 1731.81, "end": 1756.27, "text": " Did you see what I did? I added everything I did, guys I made a new class I named it My Adapter And this one does extend for this one This is what I did until now, okay? And the same methods that are here I put them here, but they are empty Am I right, guys? Did you see? Look with me", "tokens": [2589, 291, 536, 437, 286, 630, 30, 286, 3869, 1203, 286, 630, 11, 1074, 286, 1027, 257, 777, 1508, 286, 4926, 309, 1222, 1999, 5446, 400, 341, 472, 775, 10101, 337, 341, 472, 639, 307, 437, 286, 630, 1826, 586, 11, 1392, 30, 400, 264, 912, 7150, 300, 366, 510, 286, 829, 552, 510, 11, 457, 436, 366, 6707, 2012, 286, 558, 11, 1074, 30, 2589, 291, 536, 30, 2053, 365, 385], "avg_logprob": -0.5672089302376525, "compression_ratio": 1.548913043478261, "no_speech_prob": 1.3947486877441406e-05, "words": [{"start": 1731.81, "end": 1732.25, "word": " Did", "probability": 0.048370361328125}, {"start": 1732.25, "end": 1732.39, "word": " you", "probability": 0.953125}, {"start": 1732.39, "end": 1732.55, "word": " see", "probability": 0.28466796875}, {"start": 1732.55, "end": 1732.71, "word": " what", "probability": 0.73828125}, {"start": 1732.71, "end": 1732.99, "word": " I", "probability": 0.7802734375}, {"start": 1732.99, "end": 1733.21, "word": " did?", "probability": 0.52734375}, {"start": 1733.57, "end": 1733.57, "word": " I", "probability": 0.63232421875}, {"start": 1733.57, "end": 1733.57, "word": " added", "probability": 0.68701171875}, {"start": 1733.57, "end": 1734.79, "word": " everything", "probability": 0.236328125}, {"start": 1734.79, "end": 1734.97, "word": " I", "probability": 0.58349609375}, {"start": 1734.97, "end": 1735.21, "word": " did,", "probability": 0.4609375}, {"start": 1735.41, "end": 1735.69, "word": " guys", "probability": 0.44580078125}, {"start": 1735.69, "end": 1736.23, "word": " I", "probability": 0.42919921875}, {"start": 1736.23, "end": 1736.45, "word": " made", "probability": 0.39404296875}, {"start": 1736.45, "end": 1736.59, "word": " a", "probability": 0.9599609375}, {"start": 1736.59, "end": 1737.25, "word": " new", "probability": 0.9033203125}, {"start": 1737.25, "end": 1737.31, "word": " class", "probability": 0.9609375}, {"start": 1737.31, "end": 1738.79, "word": " I", "probability": 0.48046875}, {"start": 1738.79, "end": 1739.53, "word": " named", "probability": 0.454345703125}, {"start": 1739.53, "end": 1739.75, "word": " it", "probability": 0.9248046875}, {"start": 1739.75, "end": 1739.93, "word": " My", "probability": 0.3447265625}, {"start": 1739.93, "end": 1740.55, "word": " Adapter", "probability": 0.749755859375}, {"start": 1740.55, "end": 1741.99, "word": " And", "probability": 0.2418212890625}, {"start": 1741.99, "end": 1742.33, "word": " this", "probability": 0.6591796875}, {"start": 1742.33, "end": 1742.45, "word": " one", "probability": 0.454833984375}, {"start": 1742.45, "end": 1742.77, "word": " does", "probability": 0.361572265625}, {"start": 1742.77, "end": 1743.87, "word": " extend", "probability": 0.5341796875}, {"start": 1743.87, "end": 1744.09, "word": " for", "probability": 0.36669921875}, {"start": 1744.09, "end": 1744.29, "word": " this", "probability": 0.837890625}, {"start": 1744.29, "end": 1744.53, "word": " one", "probability": 0.7646484375}, {"start": 1744.53, "end": 1745.23, "word": " This", "probability": 0.454833984375}, {"start": 1745.23, "end": 1745.27, "word": " is", "probability": 0.904296875}, {"start": 1745.27, "end": 1745.33, "word": " what", "probability": 0.92578125}, {"start": 1745.33, "end": 1745.37, "word": " I", "probability": 0.9697265625}, {"start": 1745.37, "end": 1745.57, "word": " did", "probability": 0.59912109375}, {"start": 1745.57, "end": 1745.83, "word": " until", "probability": 0.5751953125}, {"start": 1745.83, "end": 1746.21, "word": " now,", "probability": 0.9443359375}, {"start": 1746.21, "end": 1746.89, "word": " okay?", "probability": 0.48974609375}, {"start": 1747.33, "end": 1747.45, "word": " And", "probability": 0.80029296875}, {"start": 1747.45, "end": 1747.75, "word": " the", "probability": 0.625}, {"start": 1747.75, "end": 1747.75, "word": " same", "probability": 0.86181640625}, {"start": 1747.75, "end": 1748.11, "word": " methods", "probability": 0.875}, {"start": 1748.11, "end": 1748.29, "word": " that", "probability": 0.433837890625}, {"start": 1748.29, "end": 1748.37, "word": " are", "probability": 0.314453125}, {"start": 1748.37, "end": 1748.65, "word": " here", "probability": 0.74853515625}, {"start": 1748.65, "end": 1751.65, "word": " I", "probability": 0.81298828125}, {"start": 1751.65, "end": 1751.93, "word": " put", "probability": 0.666015625}, {"start": 1751.93, "end": 1752.13, "word": " them", "probability": 0.8232421875}, {"start": 1752.13, "end": 1752.33, "word": " here,", "probability": 0.8193359375}, {"start": 1752.53, "end": 1752.75, "word": " but", "probability": 0.89111328125}, {"start": 1752.75, "end": 1753.07, "word": " they", "probability": 0.7158203125}, {"start": 1753.07, "end": 1753.07, "word": " are", "probability": 0.7509765625}, {"start": 1753.07, "end": 1753.07, "word": " empty", "probability": 0.465576171875}, {"start": 1753.07, "end": 1753.93, "word": " Am", "probability": 0.178955078125}, {"start": 1753.93, "end": 1754.01, "word": " I", "probability": 0.9794921875}, {"start": 1754.01, "end": 1754.01, "word": " right,", "probability": 0.85986328125}, {"start": 1754.21, "end": 1754.43, "word": " guys?", "probability": 0.90380859375}, {"start": 1754.99, "end": 1755.43, "word": " Did", "probability": 0.69384765625}, {"start": 1755.43, "end": 1755.47, "word": " you", "probability": 0.96533203125}, {"start": 1755.47, "end": 1755.67, "word": " see?", "probability": 0.62939453125}, {"start": 1755.77, "end": 1755.95, "word": " Look", "probability": 0.418701171875}, {"start": 1755.95, "end": 1756.13, "word": " with", "probability": 0.4775390625}, {"start": 1756.13, "end": 1756.27, "word": " me", "probability": 0.96728515625}], "temperature": 1.0}, {"id": 75, "seek": 178231, "start": 1760.85, "end": 1782.31, "text": " this is the main method in the main method, what does the client take? ArraySorter if I remove the ArraySorter from here and replace it with myAdapter this adapter is equal to new myAdapter and instead of Sorter, I send it", "tokens": [341, 307, 264, 2135, 3170, 294, 264, 2135, 3170, 11, 437, 775, 264, 6423, 747, 30, 1587, 3458, 50, 6122, 498, 286, 4159, 264, 1587, 3458, 50, 6122, 490, 510, 293, 7406, 309, 365, 452, 15830, 5446, 341, 22860, 307, 2681, 281, 777, 452, 15830, 5446, 293, 2602, 295, 318, 6122, 11, 286, 2845, 309], "avg_logprob": -0.4960937744804791, "compression_ratio": 1.5928571428571427, "no_speech_prob": 5.3763389587402344e-05, "words": [{"start": 1760.85, "end": 1761.35, "word": " this", "probability": 0.254150390625}, {"start": 1761.35, "end": 1761.39, "word": " is", "probability": 0.88623046875}, {"start": 1761.39, "end": 1761.45, "word": " the", "probability": 0.78564453125}, {"start": 1761.45, "end": 1761.61, "word": " main", "probability": 0.90380859375}, {"start": 1761.61, "end": 1761.97, "word": " method", "probability": 0.9482421875}, {"start": 1761.97, "end": 1763.43, "word": " in", "probability": 0.1864013671875}, {"start": 1763.43, "end": 1763.59, "word": " the", "probability": 0.6357421875}, {"start": 1763.59, "end": 1763.75, "word": " main", "probability": 0.89892578125}, {"start": 1763.75, "end": 1764.01, "word": " method,", "probability": 0.9521484375}, {"start": 1764.17, "end": 1764.17, "word": " what", "probability": 0.71044921875}, {"start": 1764.17, "end": 1764.17, "word": " does", "probability": 0.68212890625}, {"start": 1764.17, "end": 1764.17, "word": " the", "probability": 0.796875}, {"start": 1764.17, "end": 1764.45, "word": " client", "probability": 0.87353515625}, {"start": 1764.45, "end": 1765.03, "word": " take?", "probability": 0.413330078125}, {"start": 1766.27, "end": 1766.87, "word": " ArraySorter", "probability": 0.7122802734375}, {"start": 1766.87, "end": 1767.49, "word": " if", "probability": 0.1759033203125}, {"start": 1767.49, "end": 1768.37, "word": " I", "probability": 0.71826171875}, {"start": 1768.37, "end": 1768.77, "word": " remove", "probability": 0.4541015625}, {"start": 1768.77, "end": 1768.89, "word": " the", "probability": 0.50244140625}, {"start": 1768.89, "end": 1769.43, "word": " ArraySorter", "probability": 0.8551025390625}, {"start": 1769.43, "end": 1769.59, "word": " from", "probability": 0.60107421875}, {"start": 1769.59, "end": 1769.89, "word": " here", "probability": 0.8212890625}, {"start": 1769.89, "end": 1770.57, "word": " and", "probability": 0.751953125}, {"start": 1770.57, "end": 1770.81, "word": " replace", "probability": 0.203369140625}, {"start": 1770.81, "end": 1771.49, "word": " it", "probability": 0.86181640625}, {"start": 1771.49, "end": 1772.07, "word": " with", "probability": 0.708984375}, {"start": 1772.07, "end": 1774.41, "word": " myAdapter", "probability": 0.7015787760416666}, {"start": 1774.41, "end": 1774.97, "word": " this", "probability": 0.40869140625}, {"start": 1774.97, "end": 1775.47, "word": " adapter", "probability": 0.7578125}, {"start": 1775.47, "end": 1775.63, "word": " is", "probability": 0.32177734375}, {"start": 1775.63, "end": 1775.83, "word": " equal", "probability": 0.66455078125}, {"start": 1775.83, "end": 1775.91, "word": " to", "probability": 0.96240234375}, {"start": 1775.91, "end": 1776.25, "word": " new", "probability": 0.66064453125}, {"start": 1776.25, "end": 1780.35, "word": " myAdapter", "probability": 0.7556966145833334}, {"start": 1780.35, "end": 1781.05, "word": " and", "probability": 0.83837890625}, {"start": 1781.05, "end": 1781.27, "word": " instead", "probability": 0.63720703125}, {"start": 1781.27, "end": 1781.35, "word": " of", "probability": 0.9736328125}, {"start": 1781.35, "end": 1781.69, "word": " Sorter,", "probability": 0.55157470703125}, {"start": 1781.79, "end": 1781.83, "word": " I", "probability": 0.9150390625}, {"start": 1781.83, "end": 1782.01, "word": " send", "probability": 0.3076171875}, {"start": 1782.01, "end": 1782.31, "word": " it", "probability": 0.546875}], "temperature": 1.0}, {"id": 76, "seek": 181064, "start": 1784.4, "end": 1810.64, "text": " because until now there is no problem correct or not? this one instead of this one but this one is still empty and this one has what? it has the code now the last step go to my adapter from inside it I will use the new library what is it called? listsorter alias equals new listsorter the client does not know the client now is dealing with whom?", "tokens": [570, 1826, 586, 456, 307, 572, 1154, 3006, 420, 406, 30, 341, 472, 2602, 295, 341, 472, 457, 341, 472, 307, 920, 6707, 293, 341, 472, 575, 437, 30, 309, 575, 264, 3089, 586, 264, 1036, 1823, 352, 281, 452, 22860, 490, 1854, 309, 286, 486, 764, 264, 777, 6405, 437, 307, 309, 1219, 30, 1329, 82, 6122, 419, 4609, 6915, 777, 14511, 6122, 264, 6423, 775, 406, 458, 264, 6423, 586, 307, 6260, 365, 7101, 30], "avg_logprob": -0.4807692261842581, "compression_ratio": 1.7704081632653061, "no_speech_prob": 4.76837158203125e-05, "words": [{"start": 1784.4, "end": 1785.0, "word": " because", "probability": 0.22021484375}, {"start": 1785.0, "end": 1785.32, "word": " until", "probability": 0.268798828125}, {"start": 1785.32, "end": 1785.68, "word": " now", "probability": 0.9228515625}, {"start": 1785.68, "end": 1786.46, "word": " there", "probability": 0.60205078125}, {"start": 1786.46, "end": 1786.5, "word": " is", "probability": 0.66552734375}, {"start": 1786.5, "end": 1786.64, "word": " no", "probability": 0.8837890625}, {"start": 1786.64, "end": 1786.96, "word": " problem", "probability": 0.79736328125}, {"start": 1786.96, "end": 1787.28, "word": " correct", "probability": 0.201171875}, {"start": 1787.28, "end": 1787.46, "word": " or", "probability": 0.8427734375}, {"start": 1787.46, "end": 1787.54, "word": " not?", "probability": 0.8896484375}, {"start": 1788.02, "end": 1788.4, "word": " this", "probability": 0.53662109375}, {"start": 1788.4, "end": 1788.66, "word": " one", "probability": 0.2958984375}, {"start": 1788.66, "end": 1789.22, "word": " instead", "probability": 0.51025390625}, {"start": 1789.22, "end": 1789.3, "word": " of", "probability": 0.94384765625}, {"start": 1789.3, "end": 1789.52, "word": " this", "probability": 0.81103515625}, {"start": 1789.52, "end": 1790.0, "word": " one", "probability": 0.779296875}, {"start": 1790.0, "end": 1790.32, "word": " but", "probability": 0.70458984375}, {"start": 1790.32, "end": 1790.48, "word": " this", "probability": 0.8193359375}, {"start": 1790.48, "end": 1790.52, "word": " one", "probability": 0.73046875}, {"start": 1790.52, "end": 1790.58, "word": " is", "probability": 0.85791015625}, {"start": 1790.58, "end": 1790.68, "word": " still", "probability": 0.66552734375}, {"start": 1790.68, "end": 1790.82, "word": " empty", "probability": 0.449951171875}, {"start": 1790.82, "end": 1792.1, "word": " and", "probability": 0.82861328125}, {"start": 1792.1, "end": 1792.26, "word": " this", "probability": 0.6708984375}, {"start": 1792.26, "end": 1792.34, "word": " one", "probability": 0.82568359375}, {"start": 1792.34, "end": 1792.5, "word": " has", "probability": 0.7119140625}, {"start": 1792.5, "end": 1792.82, "word": " what?", "probability": 0.376953125}, {"start": 1793.18, "end": 1793.66, "word": " it", "probability": 0.435302734375}, {"start": 1793.66, "end": 1793.66, "word": " has", "probability": 0.90625}, {"start": 1793.66, "end": 1793.8, "word": " the", "probability": 0.307373046875}, {"start": 1793.8, "end": 1794.0, "word": " code", "probability": 0.78564453125}, {"start": 1794.0, "end": 1794.74, "word": " now", "probability": 0.3349609375}, {"start": 1794.74, "end": 1795.0, "word": " the", "probability": 0.62158203125}, {"start": 1795.0, "end": 1795.06, "word": " last", "probability": 0.79248046875}, {"start": 1795.06, "end": 1795.64, "word": " step", "probability": 0.90478515625}, {"start": 1795.64, "end": 1796.58, "word": " go", "probability": 0.423828125}, {"start": 1796.58, "end": 1796.7, "word": " to", "probability": 0.9130859375}, {"start": 1796.7, "end": 1796.88, "word": " my", "probability": 0.7998046875}, {"start": 1796.88, "end": 1797.3, "word": " adapter", "probability": 0.7783203125}, {"start": 1797.3, "end": 1797.64, "word": " from", "probability": 0.56396484375}, {"start": 1797.64, "end": 1798.08, "word": " inside", "probability": 0.625}, {"start": 1798.08, "end": 1799.08, "word": " it", "probability": 0.69873046875}, {"start": 1799.08, "end": 1799.66, "word": " I", "probability": 0.66064453125}, {"start": 1799.66, "end": 1799.7, "word": " will", "probability": 0.318115234375}, {"start": 1799.7, "end": 1799.92, "word": " use", "probability": 0.875}, {"start": 1799.92, "end": 1800.08, "word": " the", "probability": 0.82177734375}, {"start": 1800.08, "end": 1800.64, "word": " new", "probability": 0.8720703125}, {"start": 1800.64, "end": 1800.64, "word": " library", "probability": 0.73681640625}, {"start": 1800.64, "end": 1801.26, "word": " what", "probability": 0.232177734375}, {"start": 1801.26, "end": 1801.32, "word": " is", "probability": 0.7861328125}, {"start": 1801.32, "end": 1801.4, "word": " it", "probability": 0.464111328125}, {"start": 1801.4, "end": 1801.7, "word": " called?", "probability": 0.8095703125}, {"start": 1803.58, "end": 1804.18, "word": " listsorter", "probability": 0.669189453125}, {"start": 1804.18, "end": 1805.58, "word": " alias", "probability": 0.29193115234375}, {"start": 1805.58, "end": 1806.1, "word": " equals", "probability": 0.07733154296875}, {"start": 1806.1, "end": 1806.54, "word": " new", "probability": 0.85205078125}, {"start": 1806.54, "end": 1808.0, "word": " listsorter", "probability": 0.787353515625}, {"start": 1808.0, "end": 1808.54, "word": " the", "probability": 0.64404296875}, {"start": 1808.54, "end": 1808.82, "word": " client", "probability": 0.9228515625}, {"start": 1808.82, "end": 1808.94, "word": " does", "probability": 0.62255859375}, {"start": 1808.94, "end": 1808.94, "word": " not", "probability": 0.89501953125}, {"start": 1808.94, "end": 1809.22, "word": " know", "probability": 0.8896484375}, {"start": 1809.22, "end": 1809.52, "word": " the", "probability": 0.36376953125}, {"start": 1809.52, "end": 1809.76, "word": " client", "probability": 0.93212890625}, {"start": 1809.76, "end": 1810.04, "word": " now", "probability": 0.441650390625}, {"start": 1810.04, "end": 1810.32, "word": " is", "probability": 0.444580078125}, {"start": 1810.32, "end": 1810.64, "word": " dealing", "probability": 0.6416015625}, {"start": 1810.64, "end": 1810.64, "word": " with", "probability": 0.89794921875}, {"start": 1810.64, "end": 1810.64, "word": " whom?", "probability": 0.5087890625}], "temperature": 1.0}, {"id": 77, "seek": 184023, "start": 1811.75, "end": 1840.23, "text": " he thinks that he is dealing with an adapter which is array of numbers and he calls the method itself A, B and C array of numbers with me guys? now did you find the method sort? what does it take? array of numbers did you find that you want to turn it into a list to call the method in the array of numbers? for example, it wants to make a list of integers", "tokens": [415, 7309, 300, 415, 307, 6260, 365, 364, 22860, 597, 307, 10225, 295, 3547, 293, 415, 5498, 264, 3170, 2564, 316, 11, 363, 293, 383, 10225, 295, 3547, 365, 385, 1074, 30, 586, 630, 291, 915, 264, 3170, 1333, 30, 437, 775, 309, 747, 30, 10225, 295, 3547, 630, 291, 915, 300, 291, 528, 281, 1261, 309, 666, 257, 1329, 281, 818, 264, 3170, 294, 264, 10225, 295, 3547, 30, 337, 1365, 11, 309, 2738, 281, 652, 257, 1329, 295, 41674], "avg_logprob": -0.5807927047334066, "compression_ratio": 1.898936170212766, "no_speech_prob": 7.092952728271484e-06, "words": [{"start": 1811.75, "end": 1811.99, "word": " he", "probability": 0.058929443359375}, {"start": 1811.99, "end": 1812.23, "word": " thinks", "probability": 0.6640625}, {"start": 1812.23, "end": 1812.39, "word": " that", "probability": 0.3779296875}, {"start": 1812.39, "end": 1812.45, "word": " he", "probability": 0.58642578125}, {"start": 1812.45, "end": 1812.51, "word": " is", "probability": 0.48681640625}, {"start": 1812.51, "end": 1812.71, "word": " dealing", "probability": 0.72216796875}, {"start": 1812.71, "end": 1812.91, "word": " with", "probability": 0.90087890625}, {"start": 1812.91, "end": 1813.05, "word": " an", "probability": 0.345458984375}, {"start": 1813.05, "end": 1813.31, "word": " adapter", "probability": 0.53369140625}, {"start": 1813.31, "end": 1813.53, "word": " which", "probability": 0.27734375}, {"start": 1813.53, "end": 1813.57, "word": " is", "probability": 0.91357421875}, {"start": 1813.57, "end": 1813.77, "word": " array", "probability": 0.56396484375}, {"start": 1813.77, "end": 1813.89, "word": " of", "probability": 0.495361328125}, {"start": 1813.89, "end": 1813.99, "word": " numbers", "probability": 0.486083984375}, {"start": 1813.99, "end": 1814.27, "word": " and", "probability": 0.31103515625}, {"start": 1814.27, "end": 1814.85, "word": " he", "probability": 0.494140625}, {"start": 1814.85, "end": 1815.05, "word": " calls", "probability": 0.353515625}, {"start": 1815.05, "end": 1815.21, "word": " the", "probability": 0.634765625}, {"start": 1815.21, "end": 1815.45, "word": " method", "probability": 0.280517578125}, {"start": 1815.45, "end": 1815.89, "word": " itself", "probability": 0.54736328125}, {"start": 1815.89, "end": 1816.63, "word": " A,", "probability": 0.179443359375}, {"start": 1816.79, "end": 1817.07, "word": " B", "probability": 0.67431640625}, {"start": 1817.07, "end": 1817.85, "word": " and", "probability": 0.51708984375}, {"start": 1817.85, "end": 1818.17, "word": " C", "probability": 0.98291015625}, {"start": 1818.17, "end": 1820.83, "word": " array", "probability": 0.100830078125}, {"start": 1820.83, "end": 1820.83, "word": " of", "probability": 0.9033203125}, {"start": 1820.83, "end": 1821.11, "word": " numbers", "probability": 0.865234375}, {"start": 1821.11, "end": 1821.49, "word": " with", "probability": 0.1390380859375}, {"start": 1821.49, "end": 1823.97, "word": " me", "probability": 0.9111328125}, {"start": 1823.97, "end": 1824.39, "word": " guys?", "probability": 0.52734375}, {"start": 1824.79, "end": 1825.15, "word": " now", "probability": 0.63916015625}, {"start": 1825.15, "end": 1826.39, "word": " did", "probability": 0.299072265625}, {"start": 1826.39, "end": 1826.51, "word": " you", "probability": 0.95849609375}, {"start": 1826.51, "end": 1826.51, "word": " find", "probability": 0.6005859375}, {"start": 1826.51, "end": 1826.65, "word": " the", "probability": 0.6435546875}, {"start": 1826.65, "end": 1826.89, "word": " method", "probability": 0.93505859375}, {"start": 1826.89, "end": 1827.17, "word": " sort?", "probability": 0.8388671875}, {"start": 1827.39, "end": 1827.57, "word": " what", "probability": 0.580078125}, {"start": 1827.57, "end": 1827.73, "word": " does", "probability": 0.6591796875}, {"start": 1827.73, "end": 1827.73, "word": " it", "probability": 0.84912109375}, {"start": 1827.73, "end": 1828.03, "word": " take?", "probability": 0.71728515625}, {"start": 1829.23, "end": 1829.71, "word": " array", "probability": 0.87158203125}, {"start": 1829.71, "end": 1829.91, "word": " of", "probability": 0.970703125}, {"start": 1829.91, "end": 1830.25, "word": " numbers", "probability": 0.90283203125}, {"start": 1830.25, "end": 1830.67, "word": " did", "probability": 0.4951171875}, {"start": 1830.67, "end": 1830.73, "word": " you", "probability": 0.9658203125}, {"start": 1830.73, "end": 1830.85, "word": " find", "probability": 0.59130859375}, {"start": 1830.85, "end": 1831.09, "word": " that", "probability": 0.292724609375}, {"start": 1831.09, "end": 1831.13, "word": " you", "probability": 0.576171875}, {"start": 1831.13, "end": 1831.53, "word": " want", "probability": 0.1654052734375}, {"start": 1831.53, "end": 1833.01, "word": " to", "probability": 0.94189453125}, {"start": 1833.01, "end": 1833.25, "word": " turn", "probability": 0.3271484375}, {"start": 1833.25, "end": 1833.35, "word": " it", "probability": 0.7138671875}, {"start": 1833.35, "end": 1833.43, "word": " into", "probability": 0.70068359375}, {"start": 1833.43, "end": 1833.51, "word": " a", "probability": 0.9326171875}, {"start": 1833.51, "end": 1833.71, "word": " list", "probability": 0.9208984375}, {"start": 1833.71, "end": 1834.03, "word": " to", "probability": 0.390625}, {"start": 1834.03, "end": 1834.65, "word": " call", "probability": 0.68310546875}, {"start": 1834.65, "end": 1835.35, "word": " the", "probability": 0.86083984375}, {"start": 1835.35, "end": 1835.57, "word": " method", "probability": 0.94384765625}, {"start": 1835.57, "end": 1835.99, "word": " in", "probability": 0.366455078125}, {"start": 1835.99, "end": 1836.11, "word": " the", "probability": 0.6962890625}, {"start": 1836.11, "end": 1836.23, "word": " array", "probability": 0.4052734375}, {"start": 1836.23, "end": 1836.55, "word": " of", "probability": 0.83984375}, {"start": 1836.55, "end": 1836.55, "word": " numbers?", "probability": 0.83544921875}, {"start": 1836.87, "end": 1837.35, "word": " for", "probability": 0.61083984375}, {"start": 1837.35, "end": 1837.65, "word": " example,", "probability": 0.93701171875}, {"start": 1838.21, "end": 1838.35, "word": " it", "probability": 0.32763671875}, {"start": 1838.35, "end": 1838.57, "word": " wants", "probability": 0.1209716796875}, {"start": 1838.57, "end": 1838.57, "word": " to", "probability": 0.966796875}, {"start": 1838.57, "end": 1838.71, "word": " make", "probability": 0.6123046875}, {"start": 1838.71, "end": 1838.85, "word": " a", "probability": 0.92431640625}, {"start": 1838.85, "end": 1839.11, "word": " list", "probability": 0.9140625}, {"start": 1839.11, "end": 1839.79, "word": " of", "probability": 0.9296875}, {"start": 1839.79, "end": 1840.23, "word": " integers", "probability": 0.69287109375}], "temperature": 1.0}, {"id": 78, "seek": 186026, "start": 1841.94, "end": 1860.26, "text": " this L is equal to new ArrayList and then I want to say to each integer n in numbers go to L and say add n what am I doing guys?", "tokens": [341, 441, 307, 2681, 281, 777, 1587, 3458, 43, 468, 293, 550, 286, 528, 281, 584, 281, 1184, 24922, 297, 294, 3547, 352, 281, 441, 293, 584, 909, 297, 437, 669, 286, 884, 1074, 30], "avg_logprob": -0.5347222338120142, "compression_ratio": 1.2647058823529411, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 1841.94, "end": 1842.26, "word": " this", "probability": 0.1259765625}, {"start": 1842.26, "end": 1842.52, "word": " L", "probability": 0.51220703125}, {"start": 1842.52, "end": 1843.16, "word": " is", "probability": 0.2135009765625}, {"start": 1843.16, "end": 1843.38, "word": " equal", "probability": 0.71142578125}, {"start": 1843.38, "end": 1843.46, "word": " to", "probability": 0.95703125}, {"start": 1843.46, "end": 1843.82, "word": " new", "probability": 0.7734375}, {"start": 1843.82, "end": 1845.06, "word": " ArrayList", "probability": 0.79742431640625}, {"start": 1845.06, "end": 1847.42, "word": " and", "probability": 0.54150390625}, {"start": 1847.42, "end": 1847.68, "word": " then", "probability": 0.64794921875}, {"start": 1847.68, "end": 1847.74, "word": " I", "probability": 0.5703125}, {"start": 1847.74, "end": 1847.88, "word": " want", "probability": 0.1981201171875}, {"start": 1847.88, "end": 1847.92, "word": " to", "probability": 0.96044921875}, {"start": 1847.92, "end": 1848.04, "word": " say", "probability": 0.409912109375}, {"start": 1848.04, "end": 1848.22, "word": " to", "probability": 0.7509765625}, {"start": 1848.22, "end": 1848.56, "word": " each", "probability": 0.62451171875}, {"start": 1848.56, "end": 1850.1, "word": " integer", "probability": 0.72412109375}, {"start": 1850.1, "end": 1850.44, "word": " n", "probability": 0.56787109375}, {"start": 1850.44, "end": 1850.74, "word": " in", "probability": 0.362548828125}, {"start": 1850.74, "end": 1851.58, "word": " numbers", "probability": 0.430908203125}, {"start": 1851.58, "end": 1853.5, "word": " go", "probability": 0.583984375}, {"start": 1853.5, "end": 1853.68, "word": " to", "probability": 0.955078125}, {"start": 1853.68, "end": 1854.04, "word": " L", "probability": 0.5947265625}, {"start": 1854.04, "end": 1854.46, "word": " and", "probability": 0.88134765625}, {"start": 1854.46, "end": 1854.66, "word": " say", "probability": 0.7021484375}, {"start": 1854.66, "end": 1855.12, "word": " add", "probability": 0.822265625}, {"start": 1855.12, "end": 1856.9, "word": " n", "probability": 0.51416015625}, {"start": 1856.9, "end": 1859.26, "word": " what", "probability": 0.184814453125}, {"start": 1859.26, "end": 1859.5, "word": " am", "probability": 0.439697265625}, {"start": 1859.5, "end": 1859.68, "word": " I", "probability": 0.9501953125}, {"start": 1859.68, "end": 1859.68, "word": " doing", "probability": 0.93408203125}, {"start": 1859.68, "end": 1860.26, "word": " guys?", "probability": 0.42333984375}], "temperature": 1.0}, {"id": 79, "seek": 188498, "start": 1862.3, "end": 1884.98, "text": "That's it. I created .. there are ways .. there are ways that might be easier to convert, but my goal is to create .. did you see the array that came at the end turned into a list? Because its headers are with whom? With the new library. If you come to the new library, you say ls.sort. I give it an L. But this is of course .. what does it return? Result list. Of what kind?", "tokens": [6390, 311, 309, 13, 286, 2942, 4386, 456, 366, 2098, 4386, 456, 366, 2098, 300, 1062, 312, 3571, 281, 7620, 11, 457, 452, 3387, 307, 281, 1884, 4386, 630, 291, 536, 264, 5539, 320, 300, 1361, 412, 264, 917, 3574, 666, 257, 1329, 30, 1436, 1080, 45101, 366, 365, 7101, 30, 2022, 264, 777, 6405, 13, 759, 291, 808, 281, 264, 777, 6405, 11, 291, 584, 287, 82, 13, 82, 477, 13, 286, 976, 309, 364, 441, 13, 583, 341, 307, 295, 1164, 4386, 437, 775, 309, 2736, 30, 5015, 723, 1329, 13, 2720, 437, 733, 30], "avg_logprob": -0.5449617432088268, "compression_ratio": 1.644736842105263, "no_speech_prob": 4.32133674621582e-05, "words": [{"start": 1862.3000000000002, "end": 1862.66, "word": "That's", "probability": 0.504241943359375}, {"start": 1862.66, "end": 1862.74, "word": " it.", "probability": 0.8544921875}, {"start": 1863.14, "end": 1863.5, "word": " I", "probability": 0.69091796875}, {"start": 1863.5, "end": 1863.8, "word": " created", "probability": 0.424072265625}, {"start": 1863.8, "end": 1864.02, "word": " ..", "probability": 0.08233642578125}, {"start": 1864.02, "end": 1864.16, "word": " there", "probability": 0.455810546875}, {"start": 1864.16, "end": 1864.22, "word": " are", "probability": 0.65771484375}, {"start": 1864.22, "end": 1864.42, "word": " ways", "probability": 0.66943359375}, {"start": 1864.42, "end": 1864.42, "word": " ..", "probability": 0.389404296875}, {"start": 1864.42, "end": 1864.52, "word": " there", "probability": 0.658203125}, {"start": 1864.52, "end": 1864.64, "word": " are", "probability": 0.939453125}, {"start": 1864.64, "end": 1864.8, "word": " ways", "probability": 0.85986328125}, {"start": 1864.8, "end": 1864.98, "word": " that", "probability": 0.58349609375}, {"start": 1864.98, "end": 1865.16, "word": " might", "probability": 0.28759765625}, {"start": 1865.16, "end": 1865.32, "word": " be", "probability": 0.8359375}, {"start": 1865.32, "end": 1865.56, "word": " easier", "probability": 0.90185546875}, {"start": 1865.56, "end": 1865.7, "word": " to", "probability": 0.7265625}, {"start": 1865.7, "end": 1865.98, "word": " convert,", "probability": 0.362548828125}, {"start": 1866.12, "end": 1866.26, "word": " but", "probability": 0.884765625}, {"start": 1866.26, "end": 1866.58, "word": " my", "probability": 0.47119140625}, {"start": 1866.58, "end": 1866.88, "word": " goal", "probability": 0.7626953125}, {"start": 1866.88, "end": 1867.14, "word": " is", "probability": 0.71630859375}, {"start": 1867.14, "end": 1867.6, "word": " to", "probability": 0.447265625}, {"start": 1867.6, "end": 1867.72, "word": " create", "probability": 0.498046875}, {"start": 1867.72, "end": 1867.78, "word": " ..", "probability": 0.4873046875}, {"start": 1867.78, "end": 1867.94, "word": " did", "probability": 0.35986328125}, {"start": 1867.94, "end": 1867.98, "word": " you", "probability": 0.943359375}, {"start": 1867.98, "end": 1868.08, "word": " see", "probability": 0.548828125}, {"start": 1868.08, "end": 1868.22, "word": " the", "probability": 0.390625}, {"start": 1868.22, "end": 1868.46, "word": " array", "probability": 0.56414794921875}, {"start": 1868.46, "end": 1868.56, "word": " that", "probability": 0.50634765625}, {"start": 1868.56, "end": 1868.62, "word": " came", "probability": 0.5556640625}, {"start": 1868.62, "end": 1868.8, "word": " at", "probability": 0.159912109375}, {"start": 1868.8, "end": 1868.88, "word": " the", "probability": 0.8779296875}, {"start": 1868.88, "end": 1868.88, "word": " end", "probability": 0.90185546875}, {"start": 1868.88, "end": 1869.18, "word": " turned", "probability": 0.331298828125}, {"start": 1869.18, "end": 1869.4, "word": " into", "probability": 0.78466796875}, {"start": 1869.4, "end": 1869.48, "word": " a", "probability": 0.919921875}, {"start": 1869.48, "end": 1869.64, "word": " list?", "probability": 0.912109375}, {"start": 1869.84, "end": 1870.2, "word": " Because", "probability": 0.489990234375}, {"start": 1870.2, "end": 1870.34, "word": " its", "probability": 0.351318359375}, {"start": 1870.34, "end": 1870.7, "word": " headers", "probability": 0.139892578125}, {"start": 1870.7, "end": 1871.74, "word": " are", "probability": 0.494384765625}, {"start": 1871.74, "end": 1871.84, "word": " with", "probability": 0.73486328125}, {"start": 1871.84, "end": 1872.04, "word": " whom?", "probability": 0.6474609375}, {"start": 1872.34, "end": 1872.64, "word": " With", "probability": 0.7177734375}, {"start": 1872.64, "end": 1872.72, "word": " the", "probability": 0.90771484375}, {"start": 1872.72, "end": 1873.32, "word": " new", "probability": 0.90087890625}, {"start": 1873.32, "end": 1873.32, "word": " library.", "probability": 0.62890625}, {"start": 1873.86, "end": 1874.0, "word": " If", "probability": 0.377685546875}, {"start": 1874.0, "end": 1874.2, "word": " you", "probability": 0.88818359375}, {"start": 1874.2, "end": 1874.32, "word": " come", "probability": 0.393798828125}, {"start": 1874.32, "end": 1874.4, "word": " to", "probability": 0.947265625}, {"start": 1874.4, "end": 1874.5, "word": " the", "probability": 0.9033203125}, {"start": 1874.5, "end": 1874.5, "word": " new", "probability": 0.91455078125}, {"start": 1874.5, "end": 1875.0, "word": " library,", "probability": 0.9130859375}, {"start": 1875.1, "end": 1875.18, "word": " you", "probability": 0.85546875}, {"start": 1875.18, "end": 1875.34, "word": " say", "probability": 0.385498046875}, {"start": 1875.34, "end": 1875.9, "word": " ls", "probability": 0.6697998046875}, {"start": 1875.9, "end": 1877.44, "word": ".sort.", "probability": 0.830078125}, {"start": 1878.2, "end": 1878.34, "word": " I", "probability": 0.376708984375}, {"start": 1878.34, "end": 1878.54, "word": " give", "probability": 0.6943359375}, {"start": 1878.54, "end": 1878.66, "word": " it", "probability": 0.83056640625}, {"start": 1878.66, "end": 1878.74, "word": " an", "probability": 0.408203125}, {"start": 1878.74, "end": 1878.9, "word": " L.", "probability": 0.607421875}, {"start": 1879.94, "end": 1880.2, "word": " But", "probability": 0.8251953125}, {"start": 1880.2, "end": 1880.4, "word": " this", "probability": 0.6240234375}, {"start": 1880.4, "end": 1880.42, "word": " is", "probability": 0.115234375}, {"start": 1880.42, "end": 1880.6, "word": " of", "probability": 0.1729736328125}, {"start": 1880.6, "end": 1880.76, "word": " course", "probability": 0.96337890625}, {"start": 1880.76, "end": 1880.76, "word": " ..", "probability": 0.5546875}, {"start": 1880.76, "end": 1881.0, "word": " what", "probability": 0.8466796875}, {"start": 1881.0, "end": 1881.02, "word": " does", "probability": 0.74072265625}, {"start": 1881.02, "end": 1881.44, "word": " it", "probability": 0.8701171875}, {"start": 1881.44, "end": 1881.44, "word": " return?", "probability": 0.6943359375}, {"start": 1882.32, "end": 1882.68, "word": " Result", "probability": 0.727294921875}, {"start": 1882.68, "end": 1883.08, "word": " list.", "probability": 0.63671875}, {"start": 1884.3, "end": 1884.66, "word": " Of", "probability": 0.7294921875}, {"start": 1884.66, "end": 1884.8, "word": " what", "probability": 0.474365234375}, {"start": 1884.8, "end": 1884.98, "word": " kind?", "probability": 0.44873046875}], "temperature": 1.0}, {"id": 80, "seek": 191195, "start": 1886.27, "end": 1911.95, "text": " a list of integers we are not done yet this getInt will give us a result can you return the result list? no, it is a list if you return it, it will become a Array so you will create a new Array which is resultArray is equal to new Int size is the same as resultList.size", "tokens": [257, 1329, 295, 41674, 321, 366, 406, 1096, 1939, 341, 483, 25597, 486, 976, 505, 257, 1874, 393, 291, 2736, 264, 1874, 1329, 30, 572, 11, 309, 307, 257, 1329, 498, 291, 2736, 309, 11, 309, 486, 1813, 257, 1587, 3458, 370, 291, 486, 1884, 257, 777, 1587, 3458, 597, 307, 1874, 10683, 3458, 307, 2681, 281, 777, 5681, 2744, 307, 264, 912, 382, 1874, 43, 468, 13, 27553], "avg_logprob": -0.6700893095561437, "compression_ratio": 1.6728395061728396, "no_speech_prob": 2.1457672119140625e-06, "words": [{"start": 1886.27, "end": 1886.51, "word": " a", "probability": 0.0850830078125}, {"start": 1886.51, "end": 1886.97, "word": " list", "probability": 0.7314453125}, {"start": 1886.97, "end": 1887.31, "word": " of", "probability": 0.923828125}, {"start": 1887.31, "end": 1888.27, "word": " integers", "probability": 0.759765625}, {"start": 1888.27, "end": 1889.25, "word": " we", "probability": 0.1871337890625}, {"start": 1889.25, "end": 1889.65, "word": " are", "probability": 0.1878662109375}, {"start": 1889.65, "end": 1889.65, "word": " not", "probability": 0.77197265625}, {"start": 1889.65, "end": 1889.99, "word": " done", "probability": 0.5341796875}, {"start": 1889.99, "end": 1890.57, "word": " yet", "probability": 0.75732421875}, {"start": 1890.57, "end": 1890.87, "word": " this", "probability": 0.085693359375}, {"start": 1890.87, "end": 1891.23, "word": " getInt", "probability": 0.3160400390625}, {"start": 1891.23, "end": 1891.45, "word": " will", "probability": 0.31103515625}, {"start": 1891.45, "end": 1891.71, "word": " give", "probability": 0.17333984375}, {"start": 1891.71, "end": 1891.87, "word": " us", "probability": 0.7802734375}, {"start": 1891.87, "end": 1891.87, "word": " a", "probability": 0.60302734375}, {"start": 1891.87, "end": 1891.89, "word": " result", "probability": 0.7919921875}, {"start": 1891.89, "end": 1892.77, "word": " can", "probability": 0.367431640625}, {"start": 1892.77, "end": 1893.71, "word": " you", "probability": 0.5537109375}, {"start": 1893.71, "end": 1893.89, "word": " return", "probability": 0.45556640625}, {"start": 1893.89, "end": 1893.99, "word": " the", "probability": 0.56494140625}, {"start": 1893.99, "end": 1894.19, "word": " result", "probability": 0.958984375}, {"start": 1894.19, "end": 1894.67, "word": " list?", "probability": 0.4814453125}, {"start": 1895.37, "end": 1895.53, "word": " no,", "probability": 0.60546875}, {"start": 1895.59, "end": 1895.73, "word": " it", "probability": 0.293212890625}, {"start": 1895.73, "end": 1895.73, "word": " is", "probability": 0.5390625}, {"start": 1895.73, "end": 1895.81, "word": " a", "probability": 0.708984375}, {"start": 1895.81, "end": 1896.05, "word": " list", "probability": 0.9228515625}, {"start": 1896.05, "end": 1896.23, "word": " if", "probability": 0.2213134765625}, {"start": 1896.23, "end": 1896.47, "word": " you", "probability": 0.93359375}, {"start": 1896.47, "end": 1896.59, "word": " return", "probability": 0.67724609375}, {"start": 1896.59, "end": 1896.89, "word": " it,", "probability": 0.7216796875}, {"start": 1896.91, "end": 1896.91, "word": " it", "probability": 0.43212890625}, {"start": 1896.91, "end": 1896.99, "word": " will", "probability": 0.59521484375}, {"start": 1896.99, "end": 1897.19, "word": " become", "probability": 0.30029296875}, {"start": 1897.19, "end": 1898.21, "word": " a", "probability": 0.46337890625}, {"start": 1898.21, "end": 1898.45, "word": " Array", "probability": 0.615234375}, {"start": 1898.45, "end": 1898.89, "word": " so", "probability": 0.36669921875}, {"start": 1898.89, "end": 1899.05, "word": " you", "probability": 0.475341796875}, {"start": 1899.05, "end": 1899.11, "word": " will", "probability": 0.25390625}, {"start": 1899.11, "end": 1899.33, "word": " create", "probability": 0.53369140625}, {"start": 1899.33, "end": 1899.55, "word": " a", "probability": 0.9345703125}, {"start": 1899.55, "end": 1899.55, "word": " new", "probability": 0.8984375}, {"start": 1899.55, "end": 1899.81, "word": " Array", "probability": 0.806396484375}, {"start": 1899.81, "end": 1900.55, "word": " which", "probability": 0.36328125}, {"start": 1900.55, "end": 1900.65, "word": " is", "probability": 0.8525390625}, {"start": 1900.65, "end": 1901.43, "word": " resultArray", "probability": 0.6973470052083334}, {"start": 1901.43, "end": 1901.53, "word": " is", "probability": 0.067626953125}, {"start": 1901.53, "end": 1902.85, "word": " equal", "probability": 0.5009765625}, {"start": 1902.85, "end": 1902.95, "word": " to", "probability": 0.94482421875}, {"start": 1902.95, "end": 1903.17, "word": " new", "probability": 0.869140625}, {"start": 1903.17, "end": 1905.41, "word": " Int", "probability": 0.57177734375}, {"start": 1905.41, "end": 1907.15, "word": " size", "probability": 0.3037109375}, {"start": 1907.15, "end": 1907.61, "word": " is", "probability": 0.366455078125}, {"start": 1907.61, "end": 1909.63, "word": " the", "probability": 0.363525390625}, {"start": 1909.63, "end": 1909.69, "word": " same", "probability": 0.79296875}, {"start": 1909.69, "end": 1910.37, "word": " as", "probability": 0.69970703125}, {"start": 1910.37, "end": 1911.11, "word": " resultList", "probability": 0.75439453125}, {"start": 1911.11, "end": 1911.95, "word": ".size", "probability": 0.87451171875}], "temperature": 1.0}, {"id": 81, "seek": 194141, "start": 1913.47, "end": 1941.41, "text": " I made an array and I want to fill it but for each for integer i equal to zero, i less than resultArray.length i plus plus now take from put in the resultArray i and go to the result list and say get i and in the end you say return resultArray", "tokens": [286, 1027, 364, 10225, 293, 286, 528, 281, 2836, 309, 457, 337, 1184, 337, 24922, 741, 2681, 281, 4018, 11, 741, 1570, 813, 1874, 10683, 3458, 13, 45390, 741, 1804, 1804, 586, 747, 490, 829, 294, 264, 1874, 10683, 3458, 741, 293, 352, 281, 264, 1874, 1329, 293, 584, 483, 741, 293, 294, 264, 917, 291, 584, 2736, 1874, 10683, 3458], "avg_logprob": -0.4707661396072757, "compression_ratio": 1.6375838926174497, "no_speech_prob": 9.417533874511719e-06, "words": [{"start": 1913.47, "end": 1913.95, "word": " I", "probability": 0.0838623046875}, {"start": 1913.95, "end": 1914.61, "word": " made", "probability": 0.366455078125}, {"start": 1914.61, "end": 1914.77, "word": " an", "probability": 0.67138671875}, {"start": 1914.77, "end": 1914.97, "word": " array", "probability": 0.73974609375}, {"start": 1914.97, "end": 1915.37, "word": " and", "probability": 0.5673828125}, {"start": 1915.37, "end": 1915.49, "word": " I", "probability": 0.5703125}, {"start": 1915.49, "end": 1915.61, "word": " want", "probability": 0.41552734375}, {"start": 1915.61, "end": 1915.61, "word": " to", "probability": 0.94140625}, {"start": 1915.61, "end": 1915.77, "word": " fill", "probability": 0.73095703125}, {"start": 1915.77, "end": 1915.95, "word": " it", "probability": 0.916015625}, {"start": 1915.95, "end": 1916.15, "word": " but", "probability": 0.2135009765625}, {"start": 1916.15, "end": 1916.91, "word": " for", "probability": 0.6357421875}, {"start": 1916.91, "end": 1917.25, "word": " each", "probability": 0.69921875}, {"start": 1917.25, "end": 1918.25, "word": " for", "probability": 0.199462890625}, {"start": 1918.25, "end": 1918.73, "word": " integer", "probability": 0.83837890625}, {"start": 1918.73, "end": 1919.09, "word": " i", "probability": 0.66162109375}, {"start": 1919.09, "end": 1919.41, "word": " equal", "probability": 0.13525390625}, {"start": 1919.41, "end": 1919.51, "word": " to", "probability": 0.705078125}, {"start": 1919.51, "end": 1919.79, "word": " zero,", "probability": 0.65625}, {"start": 1919.99, "end": 1920.15, "word": " i", "probability": 0.64306640625}, {"start": 1920.15, "end": 1920.43, "word": " less", "probability": 0.29443359375}, {"start": 1920.43, "end": 1921.17, "word": " than", "probability": 0.91455078125}, {"start": 1921.17, "end": 1922.27, "word": " resultArray", "probability": 0.6930338541666666}, {"start": 1922.27, "end": 1923.39, "word": ".length", "probability": 0.82275390625}, {"start": 1923.39, "end": 1924.73, "word": " i", "probability": 0.283447265625}, {"start": 1924.73, "end": 1925.03, "word": " plus", "probability": 0.483642578125}, {"start": 1925.03, "end": 1925.43, "word": " plus", "probability": 0.88232421875}, {"start": 1925.43, "end": 1926.93, "word": " now", "probability": 0.306884765625}, {"start": 1926.93, "end": 1927.29, "word": " take", "probability": 0.2091064453125}, {"start": 1927.29, "end": 1927.67, "word": " from", "probability": 0.7685546875}, {"start": 1927.67, "end": 1929.45, "word": " put", "probability": 0.59716796875}, {"start": 1929.45, "end": 1929.59, "word": " in", "probability": 0.80029296875}, {"start": 1929.59, "end": 1929.67, "word": " the", "probability": 0.51806640625}, {"start": 1929.67, "end": 1930.27, "word": " resultArray", "probability": 0.8689778645833334}, {"start": 1930.27, "end": 1930.67, "word": " i", "probability": 0.69580078125}, {"start": 1930.67, "end": 1932.25, "word": " and", "probability": 0.77587890625}, {"start": 1932.25, "end": 1932.39, "word": " go", "probability": 0.931640625}, {"start": 1932.39, "end": 1932.51, "word": " to", "probability": 0.95458984375}, {"start": 1932.51, "end": 1932.59, "word": " the", "probability": 0.7900390625}, {"start": 1932.59, "end": 1932.89, "word": " result", "probability": 0.9296875}, {"start": 1932.89, "end": 1933.67, "word": " list", "probability": 0.7431640625}, {"start": 1933.67, "end": 1934.21, "word": " and", "probability": 0.8876953125}, {"start": 1934.21, "end": 1934.47, "word": " say", "probability": 0.464111328125}, {"start": 1934.47, "end": 1935.71, "word": " get", "probability": 0.91064453125}, {"start": 1935.71, "end": 1935.97, "word": " i", "probability": 0.458740234375}, {"start": 1935.97, "end": 1937.05, "word": " and", "probability": 0.71826171875}, {"start": 1937.05, "end": 1937.13, "word": " in", "probability": 0.58154296875}, {"start": 1937.13, "end": 1937.25, "word": " the", "probability": 0.9228515625}, {"start": 1937.25, "end": 1937.43, "word": " end", "probability": 0.90234375}, {"start": 1937.43, "end": 1937.61, "word": " you", "probability": 0.390869140625}, {"start": 1937.61, "end": 1937.81, "word": " say", "probability": 0.666015625}, {"start": 1937.81, "end": 1938.89, "word": " return", "probability": 0.5029296875}, {"start": 1938.89, "end": 1941.41, "word": " resultArray", "probability": 0.9366861979166666}], "temperature": 1.0}, {"id": 82, "seek": 197154, "start": 1942.02, "end": 1971.54, "text": "Now, this code from here to here is for the return type And this code from here to here is for the input type And this method is sort which is supposed to be present where? In the array, in the array sorter So, when we come to edit this drawing Now, this adapter from inside This is the adapter From inside, I am using an object from whom?", "tokens": [13267, 11, 341, 3089, 490, 510, 281, 510, 307, 337, 264, 2736, 2010, 400, 341, 3089, 490, 510, 281, 510, 307, 337, 264, 4846, 2010, 400, 341, 3170, 307, 1333, 597, 307, 3442, 281, 312, 1974, 689, 30, 682, 264, 10225, 11, 294, 264, 10225, 262, 6122, 407, 11, 562, 321, 808, 281, 8129, 341, 6316, 823, 11, 341, 22860, 490, 1854, 639, 307, 264, 22860, 3358, 1854, 11, 286, 669, 1228, 364, 2657, 490, 7101, 30], "avg_logprob": -0.49959935744603473, "compression_ratio": 1.8524590163934427, "no_speech_prob": 3.039836883544922e-06, "words": [{"start": 1942.02, "end": 1942.38, "word": "Now,", "probability": 0.1661376953125}, {"start": 1942.52, "end": 1943.04, "word": " this", "probability": 0.77978515625}, {"start": 1943.04, "end": 1943.46, "word": " code", "probability": 0.87841796875}, {"start": 1943.46, "end": 1943.62, "word": " from", "probability": 0.5615234375}, {"start": 1943.62, "end": 1943.82, "word": " here", "probability": 0.7978515625}, {"start": 1943.82, "end": 1943.92, "word": " to", "probability": 0.9658203125}, {"start": 1943.92, "end": 1944.2, "word": " here", "probability": 0.79052734375}, {"start": 1944.2, "end": 1944.58, "word": " is", "probability": 0.73828125}, {"start": 1944.58, "end": 1944.86, "word": " for", "probability": 0.09771728515625}, {"start": 1944.86, "end": 1945.24, "word": " the", "probability": 0.40283203125}, {"start": 1945.24, "end": 1945.88, "word": " return", "probability": 0.84423828125}, {"start": 1945.88, "end": 1946.24, "word": " type", "probability": 0.33837890625}, {"start": 1946.24, "end": 1946.72, "word": " And", "probability": 0.34375}, {"start": 1946.72, "end": 1946.94, "word": " this", "probability": 0.85791015625}, {"start": 1946.94, "end": 1947.2, "word": " code", "probability": 0.84814453125}, {"start": 1947.2, "end": 1947.32, "word": " from", "probability": 0.7802734375}, {"start": 1947.32, "end": 1947.48, "word": " here", "probability": 0.85595703125}, {"start": 1947.48, "end": 1947.6, "word": " to", "probability": 0.96826171875}, {"start": 1947.6, "end": 1947.8, "word": " here", "probability": 0.84375}, {"start": 1947.8, "end": 1947.88, "word": " is", "probability": 0.8876953125}, {"start": 1947.88, "end": 1948.26, "word": " for", "probability": 0.79150390625}, {"start": 1948.26, "end": 1948.46, "word": " the", "probability": 0.6630859375}, {"start": 1948.46, "end": 1948.84, "word": " input", "probability": 0.9111328125}, {"start": 1948.84, "end": 1949.76, "word": " type", "probability": 0.73291015625}, {"start": 1949.76, "end": 1950.56, "word": " And", "probability": 0.64697265625}, {"start": 1950.56, "end": 1950.78, "word": " this", "probability": 0.892578125}, {"start": 1950.78, "end": 1951.18, "word": " method", "probability": 0.90869140625}, {"start": 1951.18, "end": 1951.58, "word": " is", "probability": 0.5341796875}, {"start": 1951.58, "end": 1951.9, "word": " sort", "probability": 0.2685546875}, {"start": 1951.9, "end": 1952.22, "word": " which", "probability": 0.43994140625}, {"start": 1952.22, "end": 1952.72, "word": " is", "probability": 0.4970703125}, {"start": 1952.72, "end": 1952.94, "word": " supposed", "probability": 0.373291015625}, {"start": 1952.94, "end": 1953.06, "word": " to", "probability": 0.9609375}, {"start": 1953.06, "end": 1953.18, "word": " be", "probability": 0.720703125}, {"start": 1953.18, "end": 1953.46, "word": " present", "probability": 0.1964111328125}, {"start": 1953.46, "end": 1953.66, "word": " where?", "probability": 0.420166015625}, {"start": 1954.22, "end": 1954.76, "word": " In", "probability": 0.8154296875}, {"start": 1954.76, "end": 1955.02, "word": " the", "probability": 0.744140625}, {"start": 1955.02, "end": 1955.36, "word": " array,", "probability": 0.9189453125}, {"start": 1955.58, "end": 1955.88, "word": " in", "probability": 0.442138671875}, {"start": 1955.88, "end": 1955.94, "word": " the", "probability": 0.794921875}, {"start": 1955.94, "end": 1956.12, "word": " array", "probability": 0.89306640625}, {"start": 1956.12, "end": 1956.48, "word": " sorter", "probability": 0.636474609375}, {"start": 1956.48, "end": 1958.62, "word": " So,", "probability": 0.33544921875}, {"start": 1958.78, "end": 1959.12, "word": " when", "probability": 0.533203125}, {"start": 1959.12, "end": 1959.8, "word": " we", "probability": 0.919921875}, {"start": 1959.8, "end": 1959.8, "word": " come", "probability": 0.263427734375}, {"start": 1959.8, "end": 1959.9, "word": " to", "probability": 0.69921875}, {"start": 1959.9, "end": 1960.16, "word": " edit", "probability": 0.294189453125}, {"start": 1960.16, "end": 1960.9, "word": " this", "probability": 0.88525390625}, {"start": 1960.9, "end": 1960.9, "word": " drawing", "probability": 0.60205078125}, {"start": 1960.9, "end": 1962.56, "word": " Now,", "probability": 0.313232421875}, {"start": 1962.62, "end": 1962.88, "word": " this", "probability": 0.8896484375}, {"start": 1962.88, "end": 1963.44, "word": " adapter", "probability": 0.82958984375}, {"start": 1963.44, "end": 1964.28, "word": " from", "probability": 0.468505859375}, {"start": 1964.28, "end": 1964.62, "word": " inside", "probability": 0.80078125}, {"start": 1964.62, "end": 1967.48, "word": " This", "probability": 0.328857421875}, {"start": 1967.48, "end": 1967.54, "word": " is", "probability": 0.703125}, {"start": 1967.54, "end": 1967.64, "word": " the", "probability": 0.8916015625}, {"start": 1967.64, "end": 1968.0, "word": " adapter", "probability": 0.88671875}, {"start": 1968.0, "end": 1969.9, "word": " From", "probability": 0.52685546875}, {"start": 1969.9, "end": 1970.18, "word": " inside,", "probability": 0.888671875}, {"start": 1970.24, "end": 1970.34, "word": " I", "probability": 0.8779296875}, {"start": 1970.34, "end": 1970.42, "word": " am", "probability": 0.252197265625}, {"start": 1970.42, "end": 1970.66, "word": " using", "probability": 0.8232421875}, {"start": 1970.66, "end": 1970.88, "word": " an", "probability": 0.60107421875}, {"start": 1970.88, "end": 1971.1, "word": " object", "probability": 0.96240234375}, {"start": 1971.1, "end": 1971.28, "word": " from", "probability": 0.7685546875}, {"start": 1971.28, "end": 1971.54, "word": " whom?", "probability": 0.5322265625}], "temperature": 1.0}, {"id": 83, "seek": 199129, "start": 1978.45, "end": 1991.29, "text": " From inside A, I use Y dot AA and from inside B, I use Y dot AA", "tokens": [3358, 1854, 316, 11, 286, 764, 398, 5893, 30680, 293, 490, 1854, 363, 11, 286, 764, 398, 5893, 30680], "avg_logprob": -0.6417968899011612, "compression_ratio": 1.3061224489795917, "no_speech_prob": 4.32133674621582e-05, "words": [{"start": 1978.45, "end": 1979.21, "word": " From", "probability": 0.03155517578125}, {"start": 1979.21, "end": 1979.25, "word": " inside", "probability": 0.368896484375}, {"start": 1979.25, "end": 1983.75, "word": " A,", "probability": 0.38916015625}, {"start": 1984.05, "end": 1984.31, "word": " I", "probability": 0.90478515625}, {"start": 1984.31, "end": 1984.67, "word": " use", "probability": 0.69091796875}, {"start": 1984.67, "end": 1985.13, "word": " Y", "probability": 0.83935546875}, {"start": 1985.13, "end": 1985.53, "word": " dot", "probability": 0.50341796875}, {"start": 1985.53, "end": 1987.25, "word": " AA", "probability": 0.417724609375}, {"start": 1987.25, "end": 1987.75, "word": " and", "probability": 0.353759765625}, {"start": 1987.75, "end": 1987.87, "word": " from", "probability": 0.76953125}, {"start": 1987.87, "end": 1988.07, "word": " inside", "probability": 0.7802734375}, {"start": 1988.07, "end": 1988.47, "word": " B,", "probability": 0.97705078125}, {"start": 1989.99, "end": 1989.99, "word": " I", "probability": 0.970703125}, {"start": 1989.99, "end": 1990.31, "word": " use", "probability": 0.8828125}, {"start": 1990.31, "end": 1990.71, "word": " Y", "probability": 0.96630859375}, {"start": 1990.71, "end": 1990.99, "word": " dot", "probability": 0.95654296875}, {"start": 1990.99, "end": 1991.29, "word": " AA", "probability": 0.1820068359375}], "temperature": 1.0}, {"id": 84, "seek": 201862, "start": 1993.98, "end": 2018.62, "text": " bb because the last step I had notice that I didn't catch the client code I didn't catch the x code and I didn't catch the y code I only made an adapter of the same type x because I linked them all together in the main in the main I created an object from the client which I didn't change anything because I had a array sorter instead I made a mean", "tokens": [272, 65, 570, 264, 1036, 1823, 286, 632, 3449, 300, 286, 994, 380, 3745, 264, 6423, 3089, 286, 994, 380, 3745, 264, 2031, 3089, 293, 286, 994, 380, 3745, 264, 288, 3089, 286, 787, 1027, 364, 22860, 295, 264, 912, 2010, 2031, 570, 286, 9408, 552, 439, 1214, 294, 264, 2135, 294, 264, 2135, 286, 2942, 364, 2657, 490, 264, 6423, 597, 286, 994, 380, 1319, 1340, 570, 286, 632, 257, 10225, 262, 6122, 2602, 286, 1027, 257, 914], "avg_logprob": -0.5468750149011612, "compression_ratio": 1.9281767955801106, "no_speech_prob": 6.020069122314453e-06, "words": [{"start": 1993.98, "end": 1994.5, "word": " bb", "probability": 0.3106231689453125}, {"start": 1994.5, "end": 1995.02, "word": " because", "probability": 0.11798095703125}, {"start": 1995.02, "end": 1995.28, "word": " the", "probability": 0.59912109375}, {"start": 1995.28, "end": 1995.48, "word": " last", "probability": 0.8369140625}, {"start": 1995.48, "end": 1995.8, "word": " step", "probability": 0.7275390625}, {"start": 1995.8, "end": 1995.9, "word": " I", "probability": 0.3740234375}, {"start": 1995.9, "end": 1996.5, "word": " had", "probability": 0.38134765625}, {"start": 1996.5, "end": 1997.82, "word": " notice", "probability": 0.152099609375}, {"start": 1997.82, "end": 1998.02, "word": " that", "probability": 0.493408203125}, {"start": 1998.02, "end": 1998.28, "word": " I", "probability": 0.81884765625}, {"start": 1998.28, "end": 1998.46, "word": " didn't", "probability": 0.7049560546875}, {"start": 1998.46, "end": 1998.46, "word": " catch", "probability": 0.228271484375}, {"start": 1998.46, "end": 1998.46, "word": " the", "probability": 0.59814453125}, {"start": 1998.46, "end": 1999.36, "word": " client", "probability": 0.79052734375}, {"start": 1999.36, "end": 2000.18, "word": " code", "probability": 0.74609375}, {"start": 2000.18, "end": 2000.96, "word": " I", "probability": 0.269287109375}, {"start": 2000.96, "end": 2000.96, "word": " didn't", "probability": 0.90576171875}, {"start": 2000.96, "end": 2000.96, "word": " catch", "probability": 0.8310546875}, {"start": 2000.96, "end": 2001.0, "word": " the", "probability": 0.62158203125}, {"start": 2001.0, "end": 2001.64, "word": " x", "probability": 0.91064453125}, {"start": 2001.64, "end": 2002.34, "word": " code", "probability": 0.8623046875}, {"start": 2002.34, "end": 2003.18, "word": " and", "probability": 0.634765625}, {"start": 2003.18, "end": 2003.32, "word": " I", "probability": 0.68896484375}, {"start": 2003.32, "end": 2003.32, "word": " didn't", "probability": 0.921875}, {"start": 2003.32, "end": 2003.32, "word": " catch", "probability": 0.87646484375}, {"start": 2003.32, "end": 2003.32, "word": " the", "probability": 0.86083984375}, {"start": 2003.32, "end": 2003.78, "word": " y", "probability": 0.9609375}, {"start": 2003.78, "end": 2004.14, "word": " code", "probability": 0.927734375}, {"start": 2004.14, "end": 2004.4, "word": " I", "probability": 0.6748046875}, {"start": 2004.4, "end": 2004.66, "word": " only", "probability": 0.313232421875}, {"start": 2004.66, "end": 2004.66, "word": " made", "probability": 0.318603515625}, {"start": 2004.66, "end": 2005.14, "word": " an", "probability": 0.366943359375}, {"start": 2005.14, "end": 2005.94, "word": " adapter", "probability": 0.87255859375}, {"start": 2005.94, "end": 2006.12, "word": " of", "probability": 0.740234375}, {"start": 2006.12, "end": 2006.26, "word": " the", "probability": 0.892578125}, {"start": 2006.26, "end": 2006.36, "word": " same", "probability": 0.8935546875}, {"start": 2006.36, "end": 2006.7, "word": " type", "probability": 0.701171875}, {"start": 2006.7, "end": 2007.52, "word": " x", "probability": 0.37744140625}, {"start": 2007.52, "end": 2008.18, "word": " because", "probability": 0.78759765625}, {"start": 2008.18, "end": 2008.34, "word": " I", "probability": 0.309814453125}, {"start": 2008.34, "end": 2008.64, "word": " linked", "probability": 0.278076171875}, {"start": 2008.64, "end": 2008.82, "word": " them", "probability": 0.75}, {"start": 2008.82, "end": 2009.06, "word": " all", "probability": 0.365478515625}, {"start": 2009.06, "end": 2009.46, "word": " together", "probability": 0.76953125}, {"start": 2009.46, "end": 2009.74, "word": " in", "probability": 0.37451171875}, {"start": 2009.74, "end": 2009.88, "word": " the", "probability": 0.3388671875}, {"start": 2009.88, "end": 2010.04, "word": " main", "probability": 0.8955078125}, {"start": 2010.04, "end": 2011.02, "word": " in", "probability": 0.56884765625}, {"start": 2011.02, "end": 2011.14, "word": " the", "probability": 0.83056640625}, {"start": 2011.14, "end": 2011.26, "word": " main", "probability": 0.9140625}, {"start": 2011.26, "end": 2011.42, "word": " I", "probability": 0.654296875}, {"start": 2011.42, "end": 2011.58, "word": " created", "probability": 0.736328125}, {"start": 2011.58, "end": 2011.68, "word": " an", "probability": 0.73486328125}, {"start": 2011.68, "end": 2011.82, "word": " object", "probability": 0.97998046875}, {"start": 2011.82, "end": 2012.02, "word": " from", "probability": 0.7255859375}, {"start": 2012.02, "end": 2012.12, "word": " the", "probability": 0.78369140625}, {"start": 2012.12, "end": 2012.42, "word": " client", "probability": 0.9521484375}, {"start": 2012.42, "end": 2012.8, "word": " which", "probability": 0.495361328125}, {"start": 2012.8, "end": 2012.94, "word": " I", "probability": 0.94921875}, {"start": 2012.94, "end": 2013.04, "word": " didn't", "probability": 0.791259765625}, {"start": 2013.04, "end": 2013.32, "word": " change", "probability": 0.2470703125}, {"start": 2013.32, "end": 2013.64, "word": " anything", "probability": 0.36083984375}, {"start": 2013.64, "end": 2014.94, "word": " because", "probability": 0.61083984375}, {"start": 2014.94, "end": 2015.36, "word": " I", "probability": 0.96240234375}, {"start": 2015.36, "end": 2015.52, "word": " had", "probability": 0.85498046875}, {"start": 2015.52, "end": 2015.64, "word": " a", "probability": 0.2607421875}, {"start": 2015.64, "end": 2015.82, "word": " array", "probability": 0.80908203125}, {"start": 2015.82, "end": 2016.28, "word": " sorter", "probability": 0.71728515625}, {"start": 2016.28, "end": 2016.9, "word": " instead", "probability": 0.75634765625}, {"start": 2016.9, "end": 2018.04, "word": " I", "probability": 0.394287109375}, {"start": 2018.04, "end": 2018.3, "word": " made", "probability": 0.779296875}, {"start": 2018.3, "end": 2018.48, "word": " a", "probability": 0.66748046875}, {"start": 2018.48, "end": 2018.62, "word": " mean", "probability": 0.290771484375}], "temperature": 1.0}, {"id": 85, "seek": 203254, "start": 2019.38, "end": 2032.54, "text": "The adapter. And then I went to the client and told him setSorter and I gave him the adapter. The client went silent because it took the arraySorter. Okay, but from inside it will use the listSorter.", "tokens": [2278, 22860, 13, 400, 550, 286, 1437, 281, 264, 6423, 293, 1907, 796, 992, 50, 6122, 293, 286, 2729, 796, 264, 22860, 13, 440, 6423, 1437, 12784, 570, 309, 1890, 264, 10225, 50, 6122, 13, 1033, 11, 457, 490, 1854, 309, 486, 764, 264, 1329, 50, 6122, 13], "avg_logprob": -0.5172194072178432, "compression_ratio": 1.4850746268656716, "no_speech_prob": 3.159046173095703e-06, "words": [{"start": 2019.38, "end": 2019.6, "word": "The", "probability": 0.26220703125}, {"start": 2019.6, "end": 2019.96, "word": " adapter.", "probability": 0.69580078125}, {"start": 2020.5, "end": 2020.68, "word": " And", "probability": 0.55419921875}, {"start": 2020.68, "end": 2020.92, "word": " then", "probability": 0.7099609375}, {"start": 2020.92, "end": 2021.02, "word": " I", "probability": 0.5263671875}, {"start": 2021.02, "end": 2021.14, "word": " went", "probability": 0.76416015625}, {"start": 2021.14, "end": 2021.26, "word": " to", "probability": 0.939453125}, {"start": 2021.26, "end": 2021.36, "word": " the", "probability": 0.8369140625}, {"start": 2021.36, "end": 2021.58, "word": " client", "probability": 0.9150390625}, {"start": 2021.58, "end": 2021.68, "word": " and", "probability": 0.7529296875}, {"start": 2021.68, "end": 2021.8, "word": " told", "probability": 0.44775390625}, {"start": 2021.8, "end": 2021.96, "word": " him", "probability": 0.84814453125}, {"start": 2021.96, "end": 2022.48, "word": " setSorter", "probability": 0.5179443359375}, {"start": 2022.48, "end": 2022.66, "word": " and", "probability": 0.65380859375}, {"start": 2022.66, "end": 2022.74, "word": " I", "probability": 0.399169921875}, {"start": 2022.74, "end": 2023.02, "word": " gave", "probability": 0.8212890625}, {"start": 2023.02, "end": 2023.96, "word": " him", "probability": 0.87353515625}, {"start": 2023.96, "end": 2024.84, "word": " the", "probability": 0.68115234375}, {"start": 2024.84, "end": 2025.24, "word": " adapter.", "probability": 0.884765625}, {"start": 2026.1, "end": 2026.28, "word": " The", "probability": 0.5048828125}, {"start": 2026.28, "end": 2026.66, "word": " client", "probability": 0.9150390625}, {"start": 2026.66, "end": 2026.86, "word": " went", "probability": 0.0784912109375}, {"start": 2026.86, "end": 2027.08, "word": " silent", "probability": 0.8232421875}, {"start": 2027.08, "end": 2027.56, "word": " because", "probability": 0.8115234375}, {"start": 2027.56, "end": 2027.74, "word": " it", "probability": 0.4443359375}, {"start": 2027.74, "end": 2027.92, "word": " took", "probability": 0.78125}, {"start": 2027.92, "end": 2028.02, "word": " the", "probability": 0.390625}, {"start": 2028.02, "end": 2028.48, "word": " arraySorter.", "probability": 0.6507161458333334}, {"start": 2029.12, "end": 2029.32, "word": " Okay,", "probability": 0.333251953125}, {"start": 2029.4, "end": 2029.52, "word": " but", "probability": 0.8837890625}, {"start": 2029.52, "end": 2029.66, "word": " from", "probability": 0.52783203125}, {"start": 2029.66, "end": 2030.04, "word": " inside", "probability": 0.486328125}, {"start": 2030.04, "end": 2030.16, "word": " it", "probability": 0.54345703125}, {"start": 2030.16, "end": 2030.28, "word": " will", "probability": 0.75390625}, {"start": 2030.28, "end": 2030.8, "word": " use", "probability": 0.857421875}, {"start": 2030.8, "end": 2031.54, "word": " the", "probability": 0.806640625}, {"start": 2031.54, "end": 2032.54, "word": " listSorter.", "probability": 0.8995768229166666}], "temperature": 1.0}, {"id": 86, "seek": 205717, "start": 2033.15, "end": 2057.17, "text": "Okay? And they come and tell me the process. The client is normal, nothing has changed. And from within the process, I go and claim the sort. But he will claim the sort that is in the adapter. I deceived him. I provided him with something of the same type that he wants, but from within it, I use the library again. And thus, if the client has a thousand claims, he will continue to claim the methods themselves, A and B and C.", "tokens": [8297, 30, 400, 436, 808, 293, 980, 385, 264, 1399, 13, 440, 6423, 307, 2710, 11, 1825, 575, 3105, 13, 400, 490, 1951, 264, 1399, 11, 286, 352, 293, 3932, 264, 1333, 13, 583, 415, 486, 3932, 264, 1333, 300, 307, 294, 264, 22860, 13, 286, 41304, 796, 13, 286, 5649, 796, 365, 746, 295, 264, 912, 2010, 300, 415, 2738, 11, 457, 490, 1951, 309, 11, 286, 764, 264, 6405, 797, 13, 400, 8807, 11, 498, 264, 6423, 575, 257, 4714, 9441, 11, 415, 486, 2354, 281, 3932, 264, 7150, 2969, 11, 316, 293, 363, 293, 383, 13], "avg_logprob": -0.4440625092387199, "compression_ratio": 1.8093220338983051, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 2033.15, "end": 2033.51, "word": "Okay?", "probability": 0.1282958984375}, {"start": 2033.99, "end": 2034.13, "word": " And", "probability": 0.55224609375}, {"start": 2034.13, "end": 2034.25, "word": " they", "probability": 0.379638671875}, {"start": 2034.25, "end": 2034.33, "word": " come", "probability": 0.300537109375}, {"start": 2034.33, "end": 2034.39, "word": " and", "probability": 0.62158203125}, {"start": 2034.39, "end": 2034.51, "word": " tell", "probability": 0.177978515625}, {"start": 2034.51, "end": 2034.59, "word": " me", "probability": 0.82421875}, {"start": 2034.59, "end": 2034.67, "word": " the", "probability": 0.464111328125}, {"start": 2034.67, "end": 2035.03, "word": " process.", "probability": 0.91845703125}, {"start": 2035.21, "end": 2035.33, "word": " The", "probability": 0.7177734375}, {"start": 2035.33, "end": 2035.59, "word": " client", "probability": 0.85693359375}, {"start": 2035.59, "end": 2035.71, "word": " is", "probability": 0.5185546875}, {"start": 2035.71, "end": 2035.83, "word": " normal,", "probability": 0.494140625}, {"start": 2035.93, "end": 2036.07, "word": " nothing", "probability": 0.46728515625}, {"start": 2036.07, "end": 2036.29, "word": " has", "probability": 0.4853515625}, {"start": 2036.29, "end": 2036.47, "word": " changed.", "probability": 0.88623046875}, {"start": 2036.89, "end": 2037.19, "word": " And", "probability": 0.7158203125}, {"start": 2037.19, "end": 2037.27, "word": " from", "probability": 0.6806640625}, {"start": 2037.27, "end": 2037.47, "word": " within", "probability": 0.392822265625}, {"start": 2037.47, "end": 2037.65, "word": " the", "probability": 0.75048828125}, {"start": 2037.65, "end": 2037.95, "word": " process,", "probability": 0.95166015625}, {"start": 2038.11, "end": 2038.23, "word": " I", "probability": 0.31396484375}, {"start": 2038.23, "end": 2038.23, "word": " go", "probability": 0.41015625}, {"start": 2038.23, "end": 2038.57, "word": " and", "probability": 0.49658203125}, {"start": 2038.57, "end": 2038.81, "word": " claim", "probability": 0.492431640625}, {"start": 2038.81, "end": 2039.49, "word": " the", "probability": 0.5673828125}, {"start": 2039.49, "end": 2039.75, "word": " sort.", "probability": 0.408447265625}, {"start": 2039.81, "end": 2040.03, "word": " But", "probability": 0.85693359375}, {"start": 2040.03, "end": 2040.15, "word": " he", "probability": 0.35791015625}, {"start": 2040.15, "end": 2040.23, "word": " will", "probability": 0.57275390625}, {"start": 2040.23, "end": 2040.43, "word": " claim", "probability": 0.955078125}, {"start": 2040.43, "end": 2040.61, "word": " the", "probability": 0.90771484375}, {"start": 2040.61, "end": 2041.01, "word": " sort", "probability": 0.8759765625}, {"start": 2041.01, "end": 2041.73, "word": " that", "probability": 0.53515625}, {"start": 2041.73, "end": 2041.83, "word": " is", "probability": 0.7041015625}, {"start": 2041.83, "end": 2042.05, "word": " in", "probability": 0.65478515625}, {"start": 2042.05, "end": 2042.15, "word": " the", "probability": 0.90966796875}, {"start": 2042.15, "end": 2042.43, "word": " adapter.", "probability": 0.720703125}, {"start": 2042.51, "end": 2042.63, "word": " I", "probability": 0.90625}, {"start": 2042.63, "end": 2042.89, "word": " deceived", "probability": 0.2430419921875}, {"start": 2042.89, "end": 2043.19, "word": " him.", "probability": 0.93505859375}, {"start": 2043.43, "end": 2043.53, "word": " I", "probability": 0.970703125}, {"start": 2043.53, "end": 2043.77, "word": " provided", "probability": 0.673828125}, {"start": 2043.77, "end": 2044.01, "word": " him", "probability": 0.87548828125}, {"start": 2044.01, "end": 2044.07, "word": " with", "probability": 0.5576171875}, {"start": 2044.07, "end": 2044.25, "word": " something", "probability": 0.759765625}, {"start": 2044.25, "end": 2044.37, "word": " of", "probability": 0.81201171875}, {"start": 2044.37, "end": 2044.47, "word": " the", "probability": 0.9248046875}, {"start": 2044.47, "end": 2044.65, "word": " same", "probability": 0.8154296875}, {"start": 2044.65, "end": 2044.91, "word": " type", "probability": 0.50146484375}, {"start": 2044.91, "end": 2044.99, "word": " that", "probability": 0.63134765625}, {"start": 2044.99, "end": 2045.27, "word": " he", "probability": 0.634765625}, {"start": 2045.27, "end": 2045.27, "word": " wants,", "probability": 0.3544921875}, {"start": 2045.69, "end": 2046.41, "word": " but", "probability": 0.92724609375}, {"start": 2046.41, "end": 2046.55, "word": " from", "probability": 0.68896484375}, {"start": 2046.55, "end": 2046.89, "word": " within", "probability": 0.76025390625}, {"start": 2046.89, "end": 2047.03, "word": " it,", "probability": 0.708984375}, {"start": 2047.03, "end": 2047.15, "word": " I", "probability": 0.93896484375}, {"start": 2047.15, "end": 2047.41, "word": " use", "probability": 0.662109375}, {"start": 2047.41, "end": 2047.57, "word": " the", "probability": 0.888671875}, {"start": 2047.57, "end": 2047.87, "word": " library", "probability": 0.904296875}, {"start": 2047.87, "end": 2048.95, "word": " again.", "probability": 0.8349609375}, {"start": 2049.33, "end": 2049.57, "word": " And", "probability": 0.76806640625}, {"start": 2049.57, "end": 2049.71, "word": " thus,", "probability": 0.32666015625}, {"start": 2049.79, "end": 2049.83, "word": " if", "probability": 0.82763671875}, {"start": 2049.83, "end": 2049.83, "word": " the", "probability": 0.82568359375}, {"start": 2049.83, "end": 2050.13, "word": " client", "probability": 0.9306640625}, {"start": 2050.13, "end": 2050.47, "word": " has", "probability": 0.88818359375}, {"start": 2050.47, "end": 2050.57, "word": " a", "probability": 0.5751953125}, {"start": 2050.57, "end": 2050.75, "word": " thousand", "probability": 0.83935546875}, {"start": 2050.75, "end": 2051.15, "word": " claims,", "probability": 0.701171875}, {"start": 2051.77, "end": 2051.87, "word": " he", "probability": 0.7451171875}, {"start": 2051.87, "end": 2051.97, "word": " will", "probability": 0.8369140625}, {"start": 2051.97, "end": 2052.25, "word": " continue", "probability": 0.5166015625}, {"start": 2052.25, "end": 2053.93, "word": " to", "probability": 0.8330078125}, {"start": 2053.93, "end": 2054.23, "word": " claim", "probability": 0.93505859375}, {"start": 2054.23, "end": 2055.81, "word": " the", "probability": 0.77294921875}, {"start": 2055.81, "end": 2056.11, "word": " methods", "probability": 0.7841796875}, {"start": 2056.11, "end": 2056.43, "word": " themselves,", "probability": 0.443603515625}, {"start": 2056.55, "end": 2056.63, "word": " A", "probability": 0.81982421875}, {"start": 2056.63, "end": 2056.75, "word": " and", "probability": 0.5185546875}, {"start": 2056.75, "end": 2056.89, "word": " B", "probability": 0.99462890625}, {"start": 2056.89, "end": 2057.01, "word": " and", "probability": 0.91748046875}, {"start": 2057.01, "end": 2057.17, "word": " C.", "probability": 0.99658203125}], "temperature": 1.0}, {"id": 87, "seek": 208467, "start": 2058.21, "end": 2084.67, "text": "Okay, but from inside, but calling the new library. See how this is all object-oriented. There is no new information in object-oriented. But for smart use. Instead of changing the library now from X to Y without changing the client. But of course, this implementation of this thing also depends on how you design the code to have dependency injection. Meaning that when you create the same client, you have to send it from outside.", "tokens": [8297, 11, 457, 490, 1854, 11, 457, 5141, 264, 777, 6405, 13, 3008, 577, 341, 307, 439, 2657, 12, 27414, 13, 821, 307, 572, 777, 1589, 294, 2657, 12, 27414, 13, 583, 337, 4069, 764, 13, 7156, 295, 4473, 264, 6405, 586, 490, 1783, 281, 398, 1553, 4473, 264, 6423, 13, 583, 295, 1164, 11, 341, 11420, 295, 341, 551, 611, 5946, 322, 577, 291, 1715, 264, 3089, 281, 362, 33621, 22873, 13, 19948, 300, 562, 291, 1884, 264, 912, 6423, 11, 291, 362, 281, 2845, 309, 490, 2380, 13], "avg_logprob": -0.4773351713851258, "compression_ratio": 1.7309236947791165, "no_speech_prob": 3.7550926208496094e-06, "words": [{"start": 2058.21, "end": 2058.47, "word": "Okay,", "probability": 0.1126708984375}, {"start": 2058.55, "end": 2058.71, "word": " but", "probability": 0.3544921875}, {"start": 2058.71, "end": 2058.79, "word": " from", "probability": 0.671875}, {"start": 2058.79, "end": 2059.11, "word": " inside,", "probability": 0.5}, {"start": 2059.23, "end": 2059.31, "word": " but", "probability": 0.29150390625}, {"start": 2059.31, "end": 2059.47, "word": " calling", "probability": 0.10565185546875}, {"start": 2059.47, "end": 2059.57, "word": " the", "probability": 0.75927734375}, {"start": 2059.57, "end": 2059.79, "word": " new", "probability": 0.28515625}, {"start": 2059.79, "end": 2059.95, "word": " library.", "probability": 0.7822265625}, {"start": 2060.73, "end": 2060.97, "word": " See", "probability": 0.455810546875}, {"start": 2060.97, "end": 2061.17, "word": " how", "probability": 0.86328125}, {"start": 2061.17, "end": 2061.31, "word": " this", "probability": 0.36865234375}, {"start": 2061.31, "end": 2061.39, "word": " is", "probability": 0.8681640625}, {"start": 2061.39, "end": 2061.53, "word": " all", "probability": 0.87646484375}, {"start": 2061.53, "end": 2061.81, "word": " object", "probability": 0.93017578125}, {"start": 2061.81, "end": 2062.23, "word": "-oriented.", "probability": 0.6658935546875}, {"start": 2062.39, "end": 2062.47, "word": " There", "probability": 0.68017578125}, {"start": 2062.47, "end": 2062.57, "word": " is", "probability": 0.849609375}, {"start": 2062.57, "end": 2062.63, "word": " no", "probability": 0.9248046875}, {"start": 2062.63, "end": 2062.65, "word": " new", "probability": 0.87744140625}, {"start": 2062.65, "end": 2063.15, "word": " information", "probability": 0.73681640625}, {"start": 2063.15, "end": 2063.31, "word": " in", "probability": 0.8984375}, {"start": 2063.31, "end": 2063.55, "word": " object", "probability": 0.76220703125}, {"start": 2063.55, "end": 2063.97, "word": "-oriented.", "probability": 0.884033203125}, {"start": 2064.39, "end": 2064.57, "word": " But", "probability": 0.8544921875}, {"start": 2064.57, "end": 2064.71, "word": " for", "probability": 0.32275390625}, {"start": 2064.71, "end": 2064.73, "word": " smart", "probability": 0.60498046875}, {"start": 2064.73, "end": 2065.47, "word": " use.", "probability": 0.6337890625}, {"start": 2066.29, "end": 2066.73, "word": " Instead", "probability": 0.298583984375}, {"start": 2066.73, "end": 2067.21, "word": " of", "probability": 0.8779296875}, {"start": 2067.21, "end": 2068.27, "word": " changing", "probability": 0.5166015625}, {"start": 2068.27, "end": 2068.43, "word": " the", "probability": 0.849609375}, {"start": 2068.43, "end": 2068.73, "word": " library", "probability": 0.6923828125}, {"start": 2068.73, "end": 2069.01, "word": " now", "probability": 0.417724609375}, {"start": 2069.01, "end": 2069.21, "word": " from", "probability": 0.765625}, {"start": 2069.21, "end": 2069.53, "word": " X", "probability": 0.76171875}, {"start": 2069.53, "end": 2069.77, "word": " to", "probability": 0.9775390625}, {"start": 2069.77, "end": 2070.35, "word": " Y", "probability": 0.99609375}, {"start": 2070.35, "end": 2070.53, "word": " without", "probability": 0.79345703125}, {"start": 2070.53, "end": 2070.93, "word": " changing", "probability": 0.83447265625}, {"start": 2070.93, "end": 2071.67, "word": " the", "probability": 0.74755859375}, {"start": 2071.67, "end": 2072.01, "word": " client.", "probability": 0.8896484375}, {"start": 2072.39, "end": 2072.57, "word": " But", "probability": 0.755859375}, {"start": 2072.57, "end": 2072.77, "word": " of", "probability": 0.7509765625}, {"start": 2072.77, "end": 2072.99, "word": " course,", "probability": 0.9501953125}, {"start": 2073.35, "end": 2073.41, "word": " this", "probability": 0.305908203125}, {"start": 2073.41, "end": 2074.43, "word": " implementation", "probability": 0.420166015625}, {"start": 2074.43, "end": 2074.51, "word": " of", "probability": 0.63427734375}, {"start": 2074.51, "end": 2075.15, "word": " this", "probability": 0.869140625}, {"start": 2075.15, "end": 2075.15, "word": " thing", "probability": 0.6064453125}, {"start": 2075.15, "end": 2075.31, "word": " also", "probability": 0.6845703125}, {"start": 2075.31, "end": 2075.61, "word": " depends", "probability": 0.90625}, {"start": 2075.61, "end": 2076.15, "word": " on", "probability": 0.93994140625}, {"start": 2076.15, "end": 2076.39, "word": " how", "probability": 0.9248046875}, {"start": 2076.39, "end": 2076.61, "word": " you", "probability": 0.93212890625}, {"start": 2076.61, "end": 2076.91, "word": " design", "probability": 0.447265625}, {"start": 2076.91, "end": 2077.09, "word": " the", "probability": 0.84130859375}, {"start": 2077.09, "end": 2077.29, "word": " code", "probability": 0.93115234375}, {"start": 2077.29, "end": 2077.39, "word": " to", "probability": 0.6572265625}, {"start": 2077.39, "end": 2077.61, "word": " have", "probability": 0.80029296875}, {"start": 2077.61, "end": 2078.13, "word": " dependency", "probability": 0.603515625}, {"start": 2078.13, "end": 2079.63, "word": " injection.", "probability": 0.97412109375}, {"start": 2080.17, "end": 2080.61, "word": " Meaning", "probability": 0.2474365234375}, {"start": 2080.61, "end": 2081.39, "word": " that", "probability": 0.8173828125}, {"start": 2081.39, "end": 2081.69, "word": " when", "probability": 0.3701171875}, {"start": 2081.69, "end": 2081.69, "word": " you", "probability": 0.8349609375}, {"start": 2081.69, "end": 2081.69, "word": " create", "probability": 0.8115234375}, {"start": 2081.69, "end": 2081.69, "word": " the", "probability": 0.5166015625}, {"start": 2081.69, "end": 2082.53, "word": " same", "probability": 0.369140625}, {"start": 2082.53, "end": 2083.23, "word": " client,", "probability": 0.927734375}, {"start": 2083.65, "end": 2083.77, "word": " you", "probability": 0.8857421875}, {"start": 2083.77, "end": 2083.87, "word": " have", "probability": 0.289794921875}, {"start": 2083.87, "end": 2084.01, "word": " to", "probability": 0.9677734375}, {"start": 2084.01, "end": 2084.17, "word": " send", "probability": 0.740234375}, {"start": 2084.17, "end": 2084.31, "word": " it", "probability": 0.580078125}, {"start": 2084.31, "end": 2084.45, "word": " from", "probability": 0.642578125}, {"start": 2084.45, "end": 2084.67, "word": " outside.", "probability": 0.71533203125}], "temperature": 1.0}, {"id": 88, "seek": 210940, "start": 2086.12, "end": 2109.4, "text": "The adapter, the sorter, okay? We always say that the best thing to do is to send any dependencies from outside instead of creating them inside the client. The advantage of sending them from outside is that you can change them. This is what I did, okay? I had a sorter, I extended it to confuse the client that this is the same thing that you are used to. But actually, this adapter is a bridge.", "tokens": [2278, 22860, 11, 264, 262, 6122, 11, 1392, 30, 492, 1009, 584, 300, 264, 1151, 551, 281, 360, 307, 281, 2845, 604, 36606, 490, 2380, 2602, 295, 4084, 552, 1854, 264, 6423, 13, 440, 5002, 295, 7750, 552, 490, 2380, 307, 300, 291, 393, 1319, 552, 13, 639, 307, 437, 286, 630, 11, 1392, 30, 286, 632, 257, 262, 6122, 11, 286, 10913, 309, 281, 28584, 264, 6423, 300, 341, 307, 264, 912, 551, 300, 291, 366, 1143, 281, 13, 583, 767, 11, 341, 22860, 307, 257, 7283, 13], "avg_logprob": -0.4871527721484502, "compression_ratio": 1.7713004484304933, "no_speech_prob": 7.134675979614258e-05, "words": [{"start": 2086.12, "end": 2086.56, "word": "The", "probability": 0.417236328125}, {"start": 2086.56, "end": 2087.0, "word": " adapter,", "probability": 0.5712890625}, {"start": 2087.14, "end": 2087.28, "word": " the", "probability": 0.76220703125}, {"start": 2087.28, "end": 2087.54, "word": " sorter,", "probability": 0.6724853515625}, {"start": 2088.3, "end": 2088.52, "word": " okay?", "probability": 0.297607421875}, {"start": 2088.64, "end": 2088.8, "word": " We", "probability": 0.69189453125}, {"start": 2088.8, "end": 2088.98, "word": " always", "probability": 0.478759765625}, {"start": 2088.98, "end": 2088.98, "word": " say", "probability": 0.703125}, {"start": 2088.98, "end": 2089.16, "word": " that", "probability": 0.54931640625}, {"start": 2089.16, "end": 2089.16, "word": " the", "probability": 0.319091796875}, {"start": 2089.16, "end": 2089.34, "word": " best", "probability": 0.8994140625}, {"start": 2089.34, "end": 2089.58, "word": " thing", "probability": 0.52392578125}, {"start": 2089.58, "end": 2089.58, "word": " to", "probability": 0.380615234375}, {"start": 2089.58, "end": 2089.78, "word": " do", "probability": 0.9111328125}, {"start": 2089.78, "end": 2090.04, "word": " is", "probability": 0.69140625}, {"start": 2090.04, "end": 2090.14, "word": " to", "probability": 0.6455078125}, {"start": 2090.14, "end": 2090.14, "word": " send", "probability": 0.427490234375}, {"start": 2090.14, "end": 2090.14, "word": " any", "probability": 0.61083984375}, {"start": 2090.14, "end": 2090.78, "word": " dependencies", "probability": 0.83251953125}, {"start": 2090.78, "end": 2091.04, "word": " from", "probability": 0.10040283203125}, {"start": 2091.04, "end": 2091.04, "word": " outside", "probability": 0.744140625}, {"start": 2091.04, "end": 2091.04, "word": " instead", "probability": 0.2344970703125}, {"start": 2091.04, "end": 2091.22, "word": " of", "probability": 0.966796875}, {"start": 2091.22, "end": 2091.58, "word": " creating", "probability": 0.5546875}, {"start": 2091.58, "end": 2091.72, "word": " them", "probability": 0.74560546875}, {"start": 2091.72, "end": 2091.88, "word": " inside", "probability": 0.6181640625}, {"start": 2091.88, "end": 2092.02, "word": " the", "probability": 0.76806640625}, {"start": 2092.02, "end": 2092.58, "word": " client.", "probability": 0.91748046875}, {"start": 2094.68, "end": 2094.76, "word": " The", "probability": 0.22119140625}, {"start": 2094.76, "end": 2094.96, "word": " advantage", "probability": 0.7158203125}, {"start": 2094.96, "end": 2095.18, "word": " of", "probability": 0.92138671875}, {"start": 2095.18, "end": 2095.46, "word": " sending", "probability": 0.7822265625}, {"start": 2095.46, "end": 2095.62, "word": " them", "probability": 0.53271484375}, {"start": 2095.62, "end": 2095.74, "word": " from", "probability": 0.8173828125}, {"start": 2095.74, "end": 2095.98, "word": " outside", "probability": 0.84326171875}, {"start": 2095.98, "end": 2096.86, "word": " is", "probability": 0.8505859375}, {"start": 2096.86, "end": 2096.86, "word": " that", "probability": 0.921875}, {"start": 2096.86, "end": 2096.98, "word": " you", "probability": 0.93994140625}, {"start": 2096.98, "end": 2097.16, "word": " can", "probability": 0.93017578125}, {"start": 2097.16, "end": 2097.42, "word": " change", "probability": 0.79833984375}, {"start": 2097.42, "end": 2097.64, "word": " them.", "probability": 0.64208984375}, {"start": 2097.66, "end": 2097.8, "word": " This", "probability": 0.349853515625}, {"start": 2097.8, "end": 2097.82, "word": " is", "probability": 0.931640625}, {"start": 2097.82, "end": 2097.9, "word": " what", "probability": 0.94091796875}, {"start": 2097.9, "end": 2098.02, "word": " I", "probability": 0.9912109375}, {"start": 2098.02, "end": 2098.26, "word": " did,", "probability": 0.876953125}, {"start": 2098.88, "end": 2099.52, "word": " okay?", "probability": 0.80712890625}, {"start": 2100.14, "end": 2100.34, "word": " I", "probability": 0.9521484375}, {"start": 2100.34, "end": 2100.38, "word": " had", "probability": 0.83740234375}, {"start": 2100.38, "end": 2101.4, "word": " a", "probability": 0.634765625}, {"start": 2101.4, "end": 2101.68, "word": " sorter,", "probability": 0.643798828125}, {"start": 2102.22, "end": 2102.42, "word": " I", "probability": 0.7294921875}, {"start": 2102.42, "end": 2103.02, "word": " extended", "probability": 0.7265625}, {"start": 2103.02, "end": 2103.32, "word": " it", "probability": 0.87646484375}, {"start": 2103.32, "end": 2103.54, "word": " to", "probability": 0.77880859375}, {"start": 2103.54, "end": 2104.12, "word": " confuse", "probability": 0.2252197265625}, {"start": 2104.12, "end": 2104.34, "word": " the", "probability": 0.8779296875}, {"start": 2104.34, "end": 2104.66, "word": " client", "probability": 0.9326171875}, {"start": 2104.66, "end": 2104.84, "word": " that", "probability": 0.88134765625}, {"start": 2104.84, "end": 2105.04, "word": " this", "probability": 0.77734375}, {"start": 2105.04, "end": 2105.1, "word": " is", "probability": 0.91748046875}, {"start": 2105.1, "end": 2105.14, "word": " the", "probability": 0.5517578125}, {"start": 2105.14, "end": 2105.3, "word": " same", "probability": 0.8388671875}, {"start": 2105.3, "end": 2105.38, "word": " thing", "probability": 0.404052734375}, {"start": 2105.38, "end": 2105.46, "word": " that", "probability": 0.472900390625}, {"start": 2105.46, "end": 2106.4, "word": " you", "probability": 0.73828125}, {"start": 2106.4, "end": 2106.64, "word": " are", "probability": 0.703125}, {"start": 2106.64, "end": 2106.88, "word": " used", "probability": 0.826171875}, {"start": 2106.88, "end": 2107.02, "word": " to.", "probability": 0.9716796875}, {"start": 2107.4, "end": 2107.8, "word": " But", "probability": 0.91943359375}, {"start": 2107.8, "end": 2108.14, "word": " actually,", "probability": 0.3828125}, {"start": 2108.24, "end": 2108.42, "word": " this", "probability": 0.9208984375}, {"start": 2108.42, "end": 2108.74, "word": " adapter", "probability": 0.85009765625}, {"start": 2108.74, "end": 2108.96, "word": " is", "probability": 0.90673828125}, {"start": 2108.96, "end": 2109.2, "word": " a", "probability": 0.533203125}, {"start": 2109.2, "end": 2109.4, "word": " bridge.", "probability": 0.12274169921875}], "temperature": 1.0}, {"id": 89, "seek": 213094, "start": 2110.37, "end": 2130.95, "text": "From inside, who used it? My library. And whose idea is this? The adapter. It became like a converter. Okay? Okay, based on this talk, let's see the adapter. Now, before we read the talk, this is another example of the idea of ​​the adapter. Now,", "tokens": [26219, 1854, 11, 567, 1143, 309, 30, 1222, 6405, 13, 400, 6104, 1558, 307, 341, 30, 440, 22860, 13, 467, 3062, 411, 257, 33905, 13, 1033, 30, 1033, 11, 2361, 322, 341, 751, 11, 718, 311, 536, 264, 22860, 13, 823, 11, 949, 321, 1401, 264, 751, 11, 341, 307, 1071, 1365, 295, 264, 1558, 295, 8701, 3322, 22860, 13, 823, 11], "avg_logprob": -0.4652777739933559, "compression_ratio": 1.4792899408284024, "no_speech_prob": 3.272294998168945e-05, "words": [{"start": 2110.37, "end": 2110.63, "word": "From", "probability": 0.142578125}, {"start": 2110.63, "end": 2110.87, "word": " inside,", "probability": 0.72998046875}, {"start": 2111.05, "end": 2111.55, "word": " who", "probability": 0.53564453125}, {"start": 2111.55, "end": 2111.55, "word": " used", "probability": 0.58447265625}, {"start": 2111.55, "end": 2111.55, "word": " it?", "probability": 0.33935546875}, {"start": 2112.39, "end": 2112.65, "word": " My", "probability": 0.513671875}, {"start": 2112.65, "end": 2113.07, "word": " library.", "probability": 0.5654296875}, {"start": 2113.67, "end": 2113.73, "word": " And", "probability": 0.59375}, {"start": 2113.73, "end": 2113.87, "word": " whose", "probability": 0.36083984375}, {"start": 2113.87, "end": 2114.11, "word": " idea", "probability": 0.9111328125}, {"start": 2114.11, "end": 2114.41, "word": " is", "probability": 0.36279296875}, {"start": 2114.41, "end": 2114.41, "word": " this?", "probability": 0.59130859375}, {"start": 2114.91, "end": 2115.23, "word": " The", "probability": 0.673828125}, {"start": 2115.23, "end": 2115.57, "word": " adapter.", "probability": 0.7578125}, {"start": 2116.05, "end": 2116.23, "word": " It", "probability": 0.70654296875}, {"start": 2116.23, "end": 2116.37, "word": " became", "probability": 0.59423828125}, {"start": 2116.37, "end": 2116.55, "word": " like", "probability": 0.57275390625}, {"start": 2116.55, "end": 2116.67, "word": " a", "probability": 0.74560546875}, {"start": 2116.67, "end": 2117.03, "word": " converter.", "probability": 0.7978515625}, {"start": 2118.15, "end": 2118.67, "word": " Okay?", "probability": 0.256591796875}, {"start": 2121.07, "end": 2121.59, "word": " Okay,", "probability": 0.369140625}, {"start": 2121.63, "end": 2121.79, "word": " based", "probability": 0.70751953125}, {"start": 2121.79, "end": 2121.97, "word": " on", "probability": 0.94775390625}, {"start": 2121.97, "end": 2122.09, "word": " this", "probability": 0.57666015625}, {"start": 2122.09, "end": 2122.31, "word": " talk,", "probability": 0.496826171875}, {"start": 2122.57, "end": 2122.89, "word": " let's", "probability": 0.78564453125}, {"start": 2122.89, "end": 2124.59, "word": " see", "probability": 0.58544921875}, {"start": 2124.59, "end": 2124.85, "word": " the", "probability": 0.88134765625}, {"start": 2124.85, "end": 2125.23, "word": " adapter.", "probability": 0.8369140625}, {"start": 2125.37, "end": 2125.55, "word": " Now,", "probability": 0.67041015625}, {"start": 2125.67, "end": 2125.83, "word": " before", "probability": 0.85693359375}, {"start": 2125.83, "end": 2126.05, "word": " we", "probability": 0.62548828125}, {"start": 2126.05, "end": 2126.23, "word": " read", "probability": 0.9228515625}, {"start": 2126.23, "end": 2126.39, "word": " the", "probability": 0.802734375}, {"start": 2126.39, "end": 2126.65, "word": " talk,", "probability": 0.81298828125}, {"start": 2126.99, "end": 2127.49, "word": " this", "probability": 0.6611328125}, {"start": 2127.49, "end": 2127.59, "word": " is", "probability": 0.92626953125}, {"start": 2127.59, "end": 2127.59, "word": " another", "probability": 0.86767578125}, {"start": 2127.59, "end": 2128.03, "word": " example", "probability": 0.9736328125}, {"start": 2128.03, "end": 2128.57, "word": " of", "probability": 0.4990234375}, {"start": 2128.57, "end": 2128.63, "word": " the", "probability": 0.86181640625}, {"start": 2128.63, "end": 2128.85, "word": " idea", "probability": 0.79638671875}, {"start": 2128.85, "end": 2129.57, "word": " of", "probability": 0.966796875}, {"start": 2129.57, "end": 2129.65, "word": " ​​the", "probability": 0.43505859375}, {"start": 2129.65, "end": 2129.99, "word": " adapter.", "probability": 0.8779296875}, {"start": 2130.47, "end": 2130.95, "word": " Now,", "probability": 0.921875}], "temperature": 1.0}, {"id": 90, "seek": 216042, "start": 2134.6, "end": 2160.42, "text": " I have a program that reads data from the stock market and brings the data as xml and analyzes the data I read the data in the form of xml and analyze it The program that I made takes the data in the form of xml and works on it I have a component that reads the data as xml and I read from it and analyze it", "tokens": [286, 362, 257, 1461, 300, 15700, 1412, 490, 264, 4127, 2142, 293, 5607, 264, 1412, 382, 2031, 15480, 293, 6459, 12214, 264, 1412, 286, 1401, 264, 1412, 294, 264, 1254, 295, 2031, 15480, 293, 12477, 309, 440, 1461, 300, 286, 1027, 2516, 264, 1412, 294, 264, 1254, 295, 2031, 15480, 293, 1985, 322, 309, 286, 362, 257, 6542, 300, 15700, 264, 1412, 382, 2031, 15480, 293, 286, 1401, 490, 309, 293, 12477, 309], "avg_logprob": -0.3923141920083278, "compression_ratio": 2.1538461538461537, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 2134.6, "end": 2134.84, "word": " I", "probability": 0.53662109375}, {"start": 2134.84, "end": 2135.04, "word": " have", "probability": 0.90234375}, {"start": 2135.04, "end": 2135.14, "word": " a", "probability": 0.96044921875}, {"start": 2135.14, "end": 2135.5, "word": " program", "probability": 0.56298828125}, {"start": 2135.5, "end": 2135.76, "word": " that", "probability": 0.7666015625}, {"start": 2135.76, "end": 2136.0, "word": " reads", "probability": 0.78173828125}, {"start": 2136.0, "end": 2136.34, "word": " data", "probability": 0.564453125}, {"start": 2136.34, "end": 2136.58, "word": " from", "probability": 0.84619140625}, {"start": 2136.58, "end": 2136.7, "word": " the", "probability": 0.6162109375}, {"start": 2136.7, "end": 2136.86, "word": " stock", "probability": 0.7197265625}, {"start": 2136.86, "end": 2137.34, "word": " market", "probability": 0.87939453125}, {"start": 2137.34, "end": 2139.2, "word": " and", "probability": 0.3134765625}, {"start": 2139.2, "end": 2139.46, "word": " brings", "probability": 0.1260986328125}, {"start": 2139.46, "end": 2139.58, "word": " the", "probability": 0.328125}, {"start": 2139.58, "end": 2139.88, "word": " data", "probability": 0.80517578125}, {"start": 2139.88, "end": 2140.22, "word": " as", "probability": 0.72265625}, {"start": 2140.22, "end": 2141.56, "word": " xml", "probability": 0.646728515625}, {"start": 2141.56, "end": 2141.86, "word": " and", "probability": 0.52978515625}, {"start": 2141.86, "end": 2142.18, "word": " analyzes", "probability": 0.5831298828125}, {"start": 2142.18, "end": 2142.3, "word": " the", "probability": 0.3173828125}, {"start": 2142.3, "end": 2142.64, "word": " data", "probability": 0.86376953125}, {"start": 2142.64, "end": 2143.9, "word": " I", "probability": 0.142333984375}, {"start": 2143.9, "end": 2144.28, "word": " read", "probability": 0.8955078125}, {"start": 2144.28, "end": 2144.4, "word": " the", "probability": 0.748046875}, {"start": 2144.4, "end": 2144.62, "word": " data", "probability": 0.8837890625}, {"start": 2144.62, "end": 2145.14, "word": " in", "probability": 0.52685546875}, {"start": 2145.14, "end": 2145.24, "word": " the", "probability": 0.4609375}, {"start": 2145.24, "end": 2145.4, "word": " form", "probability": 0.58203125}, {"start": 2145.4, "end": 2146.04, "word": " of", "probability": 0.96728515625}, {"start": 2146.04, "end": 2146.76, "word": " xml", "probability": 0.947998046875}, {"start": 2146.76, "end": 2146.9, "word": " and", "probability": 0.89111328125}, {"start": 2146.9, "end": 2147.2, "word": " analyze", "probability": 0.78857421875}, {"start": 2147.2, "end": 2147.74, "word": " it", "probability": 0.8291015625}, {"start": 2147.74, "end": 2148.96, "word": " The", "probability": 0.458984375}, {"start": 2148.96, "end": 2149.32, "word": " program", "probability": 0.85595703125}, {"start": 2149.32, "end": 2149.44, "word": " that", "probability": 0.46435546875}, {"start": 2149.44, "end": 2149.54, "word": " I", "probability": 0.94677734375}, {"start": 2149.54, "end": 2149.9, "word": " made", "probability": 0.36376953125}, {"start": 2149.9, "end": 2150.58, "word": " takes", "probability": 0.38525390625}, {"start": 2150.58, "end": 2150.74, "word": " the", "probability": 0.78515625}, {"start": 2150.74, "end": 2151.0, "word": " data", "probability": 0.8779296875}, {"start": 2151.0, "end": 2151.16, "word": " in", "probability": 0.81689453125}, {"start": 2151.16, "end": 2151.2, "word": " the", "probability": 0.853515625}, {"start": 2151.2, "end": 2151.34, "word": " form", "probability": 0.85498046875}, {"start": 2151.34, "end": 2151.44, "word": " of", "probability": 0.96728515625}, {"start": 2151.44, "end": 2151.98, "word": " xml", "probability": 0.970947265625}, {"start": 2151.98, "end": 2152.88, "word": " and", "probability": 0.919921875}, {"start": 2152.88, "end": 2153.12, "word": " works", "probability": 0.36572265625}, {"start": 2153.12, "end": 2153.32, "word": " on", "probability": 0.9287109375}, {"start": 2153.32, "end": 2153.64, "word": " it", "probability": 0.54052734375}, {"start": 2153.64, "end": 2155.32, "word": " I", "probability": 0.72705078125}, {"start": 2155.32, "end": 2155.56, "word": " have", "probability": 0.92578125}, {"start": 2155.56, "end": 2155.66, "word": " a", "probability": 0.974609375}, {"start": 2155.66, "end": 2156.12, "word": " component", "probability": 0.86279296875}, {"start": 2156.12, "end": 2157.26, "word": " that", "probability": 0.82080078125}, {"start": 2157.26, "end": 2157.68, "word": " reads", "probability": 0.92529296875}, {"start": 2157.68, "end": 2157.86, "word": " the", "probability": 0.81591796875}, {"start": 2157.86, "end": 2158.08, "word": " data", "probability": 0.904296875}, {"start": 2158.08, "end": 2158.24, "word": " as", "probability": 0.8232421875}, {"start": 2158.24, "end": 2158.82, "word": " xml", "probability": 0.973876953125}, {"start": 2158.82, "end": 2159.28, "word": " and", "probability": 0.81396484375}, {"start": 2159.28, "end": 2159.42, "word": " I", "probability": 0.81201171875}, {"start": 2159.42, "end": 2159.68, "word": " read", "probability": 0.91455078125}, {"start": 2159.68, "end": 2159.82, "word": " from", "probability": 0.52734375}, {"start": 2159.82, "end": 2159.92, "word": " it", "probability": 0.9365234375}, {"start": 2159.92, "end": 2160.04, "word": " and", "probability": 0.8408203125}, {"start": 2160.04, "end": 2160.3, "word": " analyze", "probability": 0.9208984375}, {"start": 2160.3, "end": 2160.42, "word": " it", "probability": 0.271240234375}], "temperature": 1.0}, {"id": 91, "seek": 219123, "start": 2161.71, "end": 2191.23, "text": " Now, I found a library that is better in analysis and faster, it does visualization for me, this is it, but this library takes the data in JSON form. Okay, how can I use this library without changing the code in the client? The application is mine, the input is xml and the output is xml. So, in order to use the new library, all I can do is create an adapter. Now,", "tokens": [823, 11, 286, 1352, 257, 6405, 300, 307, 1101, 294, 5215, 293, 4663, 11, 309, 775, 25801, 337, 385, 11, 341, 307, 309, 11, 457, 341, 6405, 2516, 264, 1412, 294, 31828, 1254, 13, 1033, 11, 577, 393, 286, 764, 341, 6405, 1553, 4473, 264, 3089, 294, 264, 6423, 30, 440, 3861, 307, 3892, 11, 264, 4846, 307, 2031, 15480, 293, 264, 5598, 307, 2031, 15480, 13, 407, 11, 294, 1668, 281, 764, 264, 777, 6405, 11, 439, 286, 393, 360, 307, 1884, 364, 22860, 13, 823, 11], "avg_logprob": -0.4705056260141094, "compression_ratio": 1.605263157894737, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 2161.71, "end": 2162.19, "word": " Now,", "probability": 0.513671875}, {"start": 2163.15, "end": 2163.35, "word": " I", "probability": 0.634765625}, {"start": 2163.35, "end": 2163.85, "word": " found", "probability": 0.45849609375}, {"start": 2163.85, "end": 2164.07, "word": " a", "probability": 0.724609375}, {"start": 2164.07, "end": 2164.45, "word": " library", "probability": 0.72998046875}, {"start": 2164.45, "end": 2164.57, "word": " that", "probability": 0.301025390625}, {"start": 2164.57, "end": 2164.87, "word": " is", "probability": 0.61376953125}, {"start": 2164.87, "end": 2165.23, "word": " better", "probability": 0.368896484375}, {"start": 2165.23, "end": 2165.59, "word": " in", "probability": 0.36181640625}, {"start": 2165.59, "end": 2165.95, "word": " analysis", "probability": 0.359130859375}, {"start": 2165.95, "end": 2166.07, "word": " and", "probability": 0.77001953125}, {"start": 2166.07, "end": 2166.43, "word": " faster,", "probability": 0.77880859375}, {"start": 2166.61, "end": 2166.81, "word": " it", "probability": 0.326171875}, {"start": 2166.81, "end": 2166.95, "word": " does", "probability": 0.4580078125}, {"start": 2166.95, "end": 2167.67, "word": " visualization", "probability": 0.62255859375}, {"start": 2167.67, "end": 2167.89, "word": " for", "probability": 0.435791015625}, {"start": 2167.89, "end": 2168.21, "word": " me,", "probability": 0.76220703125}, {"start": 2168.39, "end": 2168.61, "word": " this", "probability": 0.126220703125}, {"start": 2168.61, "end": 2168.63, "word": " is", "probability": 0.437255859375}, {"start": 2168.63, "end": 2168.75, "word": " it,", "probability": 0.87109375}, {"start": 2168.79, "end": 2168.95, "word": " but", "probability": 0.83154296875}, {"start": 2168.95, "end": 2169.21, "word": " this", "probability": 0.79296875}, {"start": 2169.21, "end": 2169.81, "word": " library", "probability": 0.666015625}, {"start": 2169.81, "end": 2171.23, "word": " takes", "probability": 0.63671875}, {"start": 2171.23, "end": 2171.35, "word": " the", "probability": 0.305908203125}, {"start": 2171.35, "end": 2171.57, "word": " data", "probability": 0.7880859375}, {"start": 2171.57, "end": 2171.77, "word": " in", "probability": 0.6513671875}, {"start": 2171.77, "end": 2173.55, "word": " JSON", "probability": 0.362060546875}, {"start": 2173.55, "end": 2173.71, "word": " form.", "probability": 0.43017578125}, {"start": 2174.25, "end": 2174.73, "word": " Okay,", "probability": 0.264404296875}, {"start": 2174.81, "end": 2174.99, "word": " how", "probability": 0.890625}, {"start": 2174.99, "end": 2175.11, "word": " can", "probability": 0.56884765625}, {"start": 2175.11, "end": 2175.17, "word": " I", "probability": 0.9853515625}, {"start": 2175.17, "end": 2175.45, "word": " use", "probability": 0.8779296875}, {"start": 2175.45, "end": 2176.05, "word": " this", "probability": 0.93212890625}, {"start": 2176.05, "end": 2176.05, "word": " library", "probability": 0.9345703125}, {"start": 2176.05, "end": 2176.29, "word": " without", "probability": 0.87255859375}, {"start": 2176.29, "end": 2176.59, "word": " changing", "probability": 0.81494140625}, {"start": 2176.59, "end": 2176.75, "word": " the", "probability": 0.51171875}, {"start": 2176.75, "end": 2176.99, "word": " code", "probability": 0.85498046875}, {"start": 2176.99, "end": 2178.13, "word": " in", "probability": 0.72509765625}, {"start": 2178.13, "end": 2178.29, "word": " the", "probability": 0.49755859375}, {"start": 2178.29, "end": 2178.61, "word": " client?", "probability": 0.93017578125}, {"start": 2178.89, "end": 2179.37, "word": " The", "probability": 0.46728515625}, {"start": 2179.37, "end": 2179.93, "word": " application", "probability": 0.8017578125}, {"start": 2179.93, "end": 2180.09, "word": " is", "probability": 0.36376953125}, {"start": 2180.09, "end": 2180.37, "word": " mine,", "probability": 0.61865234375}, {"start": 2180.93, "end": 2181.01, "word": " the", "probability": 0.80419921875}, {"start": 2181.01, "end": 2181.29, "word": " input", "probability": 0.90380859375}, {"start": 2181.29, "end": 2181.51, "word": " is", "probability": 0.8349609375}, {"start": 2181.51, "end": 2182.09, "word": " xml", "probability": 0.7666015625}, {"start": 2182.09, "end": 2182.53, "word": " and", "probability": 0.62939453125}, {"start": 2182.53, "end": 2182.65, "word": " the", "probability": 0.77490234375}, {"start": 2182.65, "end": 2182.91, "word": " output", "probability": 0.9541015625}, {"start": 2182.91, "end": 2183.37, "word": " is", "probability": 0.9140625}, {"start": 2183.37, "end": 2184.77, "word": " xml.", "probability": 0.963623046875}, {"start": 2185.17, "end": 2185.63, "word": " So,", "probability": 0.7099609375}, {"start": 2185.71, "end": 2185.93, "word": " in", "probability": 0.5498046875}, {"start": 2185.93, "end": 2185.93, "word": " order", "probability": 0.9140625}, {"start": 2185.93, "end": 2185.99, "word": " to", "probability": 0.93408203125}, {"start": 2185.99, "end": 2186.45, "word": " use", "probability": 0.65380859375}, {"start": 2186.45, "end": 2186.61, "word": " the", "probability": 0.517578125}, {"start": 2186.61, "end": 2187.23, "word": " new", "probability": 0.8876953125}, {"start": 2187.23, "end": 2187.23, "word": " library,", "probability": 0.93115234375}, {"start": 2187.45, "end": 2187.65, "word": " all", "probability": 0.7587890625}, {"start": 2187.65, "end": 2187.77, "word": " I", "probability": 0.9521484375}, {"start": 2187.77, "end": 2187.97, "word": " can", "probability": 0.9140625}, {"start": 2187.97, "end": 2188.31, "word": " do", "probability": 0.9560546875}, {"start": 2188.31, "end": 2189.09, "word": " is", "probability": 0.90234375}, {"start": 2189.09, "end": 2189.25, "word": " create", "probability": 0.1776123046875}, {"start": 2189.25, "end": 2189.39, "word": " an", "probability": 0.88671875}, {"start": 2189.39, "end": 2189.69, "word": " adapter.", "probability": 0.87890625}, {"start": 2190.75, "end": 2191.23, "word": " Now,", "probability": 0.9287109375}], "temperature": 1.0}, {"id": 92, "seek": 221619, "start": 2194.87, "end": 2216.19, "text": " Actually, my application used to use a class of XML type, so I give it the same class of XML type, but I made it as an adapter of the same type that you expected, client, of the XML type, like here of the X type that I left, this adapter is of the X type, I did not extend it, but internally", "tokens": [5135, 11, 452, 3861, 1143, 281, 764, 257, 1508, 295, 43484, 2010, 11, 370, 286, 976, 309, 264, 912, 1508, 295, 43484, 2010, 11, 457, 286, 1027, 309, 382, 364, 22860, 295, 264, 912, 2010, 300, 291, 5176, 11, 6423, 11, 295, 264, 43484, 2010, 11, 411, 510, 295, 264, 1783, 2010, 300, 286, 1411, 11, 341, 22860, 307, 295, 264, 1783, 2010, 11, 286, 630, 406, 10101, 309, 11, 457, 19501], "avg_logprob": -0.622431513381331, "compression_ratio": 1.7590361445783131, "no_speech_prob": 2.8014183044433594e-06, "words": [{"start": 2194.87, "end": 2195.33, "word": " Actually,", "probability": 0.2230224609375}, {"start": 2195.33, "end": 2195.79, "word": " my", "probability": 0.63525390625}, {"start": 2195.79, "end": 2196.35, "word": " application", "probability": 0.80810546875}, {"start": 2196.35, "end": 2197.03, "word": " used", "probability": 0.466064453125}, {"start": 2197.03, "end": 2197.03, "word": " to", "probability": 0.44677734375}, {"start": 2197.03, "end": 2197.47, "word": " use", "probability": 0.775390625}, {"start": 2197.47, "end": 2197.91, "word": " a", "probability": 0.447998046875}, {"start": 2197.91, "end": 2197.91, "word": " class", "probability": 0.71044921875}, {"start": 2197.91, "end": 2198.35, "word": " of", "probability": 0.268310546875}, {"start": 2198.35, "end": 2199.81, "word": " XML", "probability": 0.432373046875}, {"start": 2199.81, "end": 2200.07, "word": " type,", "probability": 0.442626953125}, {"start": 2200.47, "end": 2200.67, "word": " so", "probability": 0.4443359375}, {"start": 2200.67, "end": 2200.91, "word": " I", "probability": 0.92724609375}, {"start": 2200.91, "end": 2201.19, "word": " give", "probability": 0.28564453125}, {"start": 2201.19, "end": 2201.31, "word": " it", "probability": 0.492431640625}, {"start": 2201.31, "end": 2201.41, "word": " the", "probability": 0.36181640625}, {"start": 2201.41, "end": 2201.49, "word": " same", "probability": 0.576171875}, {"start": 2201.49, "end": 2202.19, "word": " class", "probability": 0.572265625}, {"start": 2202.19, "end": 2202.45, "word": " of", "probability": 0.4765625}, {"start": 2202.45, "end": 2202.91, "word": " XML", "probability": 0.8935546875}, {"start": 2202.91, "end": 2203.17, "word": " type,", "probability": 0.81982421875}, {"start": 2203.23, "end": 2204.01, "word": " but", "probability": 0.7880859375}, {"start": 2204.01, "end": 2204.49, "word": " I", "probability": 0.509765625}, {"start": 2204.49, "end": 2204.71, "word": " made", "probability": 0.30908203125}, {"start": 2204.71, "end": 2204.77, "word": " it", "probability": 0.7421875}, {"start": 2204.77, "end": 2204.87, "word": " as", "probability": 0.34423828125}, {"start": 2204.87, "end": 2205.05, "word": " an", "probability": 0.7900390625}, {"start": 2205.05, "end": 2205.39, "word": " adapter", "probability": 0.7841796875}, {"start": 2205.39, "end": 2206.47, "word": " of", "probability": 0.1549072265625}, {"start": 2206.47, "end": 2206.65, "word": " the", "probability": 0.79248046875}, {"start": 2206.65, "end": 2206.79, "word": " same", "probability": 0.63671875}, {"start": 2206.79, "end": 2207.07, "word": " type", "probability": 0.7255859375}, {"start": 2207.07, "end": 2207.15, "word": " that", "probability": 0.328369140625}, {"start": 2207.15, "end": 2207.35, "word": " you", "probability": 0.578125}, {"start": 2207.35, "end": 2207.77, "word": " expected,", "probability": 0.4443359375}, {"start": 2208.31, "end": 2208.31, "word": " client,", "probability": 0.33837890625}, {"start": 2209.01, "end": 2209.07, "word": " of", "probability": 0.5458984375}, {"start": 2209.07, "end": 2209.31, "word": " the", "probability": 0.2388916015625}, {"start": 2209.31, "end": 2209.49, "word": " XML", "probability": 0.67578125}, {"start": 2209.49, "end": 2209.73, "word": " type,", "probability": 0.9619140625}, {"start": 2209.79, "end": 2209.93, "word": " like", "probability": 0.50830078125}, {"start": 2209.93, "end": 2210.09, "word": " here", "probability": 0.4931640625}, {"start": 2210.09, "end": 2210.21, "word": " of", "probability": 0.265869140625}, {"start": 2210.21, "end": 2211.25, "word": " the", "probability": 0.7060546875}, {"start": 2211.25, "end": 2211.49, "word": " X", "probability": 0.69873046875}, {"start": 2211.49, "end": 2211.63, "word": " type", "probability": 0.681640625}, {"start": 2211.63, "end": 2211.67, "word": " that", "probability": 0.357177734375}, {"start": 2211.67, "end": 2211.67, "word": " I", "probability": 0.9189453125}, {"start": 2211.67, "end": 2211.89, "word": " left,", "probability": 0.39990234375}, {"start": 2212.09, "end": 2212.31, "word": " this", "probability": 0.75146484375}, {"start": 2212.31, "end": 2212.69, "word": " adapter", "probability": 0.83837890625}, {"start": 2212.69, "end": 2212.89, "word": " is", "probability": 0.861328125}, {"start": 2212.89, "end": 2212.95, "word": " of", "probability": 0.67919921875}, {"start": 2212.95, "end": 2213.11, "word": " the", "probability": 0.7197265625}, {"start": 2213.11, "end": 2213.39, "word": " X", "probability": 0.912109375}, {"start": 2213.39, "end": 2213.41, "word": " type,", "probability": 0.96875}, {"start": 2213.49, "end": 2213.57, "word": " I", "probability": 0.27392578125}, {"start": 2213.57, "end": 2213.71, "word": " did", "probability": 0.5341796875}, {"start": 2213.71, "end": 2213.93, "word": " not", "probability": 0.93310546875}, {"start": 2213.93, "end": 2214.11, "word": " extend", "probability": 0.5380859375}, {"start": 2214.11, "end": 2214.71, "word": " it,", "probability": 0.78125}, {"start": 2215.39, "end": 2215.61, "word": " but", "probability": 0.3359375}, {"start": 2215.61, "end": 2216.19, "word": " internally", "probability": 0.60888671875}], "temperature": 1.0}, {"id": 93, "seek": 223479, "start": 2218.21, "end": 2234.79, "text": "All the data that I transfer to JSON and send it to the library and the library runs it and does analysis and gives me results and returns the results as JSON Now this adapter will take the data returned as JSON and returns it as XML and send it to whom?", "tokens": [7868, 264, 1412, 300, 286, 5003, 281, 31828, 293, 2845, 309, 281, 264, 6405, 293, 264, 6405, 6676, 309, 293, 775, 5215, 293, 2709, 385, 3542, 293, 11247, 264, 3542, 382, 31828, 823, 341, 22860, 486, 747, 264, 1412, 8752, 382, 31828, 293, 11247, 309, 382, 43484, 293, 2845, 309, 281, 7101, 30], "avg_logprob": -0.5772569532747622, "compression_ratio": 1.727891156462585, "no_speech_prob": 1.519918441772461e-05, "words": [{"start": 2218.21, "end": 2218.69, "word": "All", "probability": 0.387939453125}, {"start": 2218.69, "end": 2218.83, "word": " the", "probability": 0.58984375}, {"start": 2218.83, "end": 2219.09, "word": " data", "probability": 0.736328125}, {"start": 2219.09, "end": 2219.33, "word": " that", "probability": 0.349609375}, {"start": 2219.33, "end": 2219.47, "word": " I", "probability": 0.75439453125}, {"start": 2219.47, "end": 2219.75, "word": " transfer", "probability": 0.09881591796875}, {"start": 2219.75, "end": 2219.95, "word": " to", "probability": 0.705078125}, {"start": 2219.95, "end": 2220.29, "word": " JSON", "probability": 0.5224609375}, {"start": 2220.29, "end": 2220.43, "word": " and", "probability": 0.546875}, {"start": 2220.43, "end": 2220.75, "word": " send", "probability": 0.408203125}, {"start": 2220.75, "end": 2220.93, "word": " it", "probability": 0.43408203125}, {"start": 2220.93, "end": 2221.05, "word": " to", "probability": 0.92041015625}, {"start": 2221.05, "end": 2221.15, "word": " the", "probability": 0.64990234375}, {"start": 2221.15, "end": 2221.47, "word": " library", "probability": 0.6201171875}, {"start": 2221.47, "end": 2221.65, "word": " and", "probability": 0.30517578125}, {"start": 2221.65, "end": 2221.75, "word": " the", "probability": 0.5595703125}, {"start": 2221.75, "end": 2222.03, "word": " library", "probability": 0.884765625}, {"start": 2222.03, "end": 2222.47, "word": " runs", "probability": 0.2486572265625}, {"start": 2222.47, "end": 2222.81, "word": " it", "probability": 0.5205078125}, {"start": 2222.81, "end": 2222.85, "word": " and", "probability": 0.53955078125}, {"start": 2222.85, "end": 2223.03, "word": " does", "probability": 0.292236328125}, {"start": 2223.03, "end": 2223.53, "word": " analysis", "probability": 0.4873046875}, {"start": 2223.53, "end": 2223.71, "word": " and", "probability": 0.705078125}, {"start": 2223.71, "end": 2223.93, "word": " gives", "probability": 0.150146484375}, {"start": 2223.93, "end": 2224.15, "word": " me", "probability": 0.44970703125}, {"start": 2224.15, "end": 2224.49, "word": " results", "probability": 0.76806640625}, {"start": 2224.49, "end": 2224.67, "word": " and", "probability": 0.7470703125}, {"start": 2224.67, "end": 2224.95, "word": " returns", "probability": 0.4677734375}, {"start": 2224.95, "end": 2225.23, "word": " the", "probability": 0.31689453125}, {"start": 2225.23, "end": 2225.55, "word": " results", "probability": 0.8134765625}, {"start": 2225.55, "end": 2225.73, "word": " as", "probability": 0.58837890625}, {"start": 2225.73, "end": 2226.59, "word": " JSON", "probability": 0.8681640625}, {"start": 2226.59, "end": 2227.23, "word": " Now", "probability": 0.303466796875}, {"start": 2227.23, "end": 2228.63, "word": " this", "probability": 0.56884765625}, {"start": 2228.63, "end": 2230.17, "word": " adapter", "probability": 0.84033203125}, {"start": 2230.17, "end": 2230.69, "word": " will", "probability": 0.6484375}, {"start": 2230.69, "end": 2230.97, "word": " take", "probability": 0.65087890625}, {"start": 2230.97, "end": 2231.11, "word": " the", "probability": 0.80029296875}, {"start": 2231.11, "end": 2231.45, "word": " data", "probability": 0.81591796875}, {"start": 2231.45, "end": 2232.37, "word": " returned", "probability": 0.40380859375}, {"start": 2232.37, "end": 2232.57, "word": " as", "probability": 0.83056640625}, {"start": 2232.57, "end": 2232.97, "word": " JSON", "probability": 0.85791015625}, {"start": 2232.97, "end": 2233.25, "word": " and", "probability": 0.7216796875}, {"start": 2233.25, "end": 2233.47, "word": " returns", "probability": 0.43701171875}, {"start": 2233.47, "end": 2233.61, "word": " it", "probability": 0.77978515625}, {"start": 2233.61, "end": 2233.65, "word": " as", "probability": 0.60302734375}, {"start": 2233.65, "end": 2233.91, "word": " XML", "probability": 0.7626953125}, {"start": 2233.91, "end": 2234.19, "word": " and", "probability": 0.87109375}, {"start": 2234.19, "end": 2234.39, "word": " send", "probability": 0.29541015625}, {"start": 2234.39, "end": 2234.51, "word": " it", "probability": 0.85205078125}, {"start": 2234.51, "end": 2234.61, "word": " to", "probability": 0.92236328125}, {"start": 2234.61, "end": 2234.79, "word": " whom?", "probability": 0.84765625}], "temperature": 1.0}, {"id": 94, "seek": 226276, "start": 2235.94, "end": 2262.76, "text": "to my library, which means that my library takes the input of xml and returns it to xml the idea is that this adapter is of the same type that is expected from the application, but it claims that it takes xml and returns it to json and sends it to this one it returns to json and returns the second xml and returns it to my application and so I don't change anything in the application of course, there is a drawback that there are conversion operations that have been done here", "tokens": [1353, 452, 6405, 11, 597, 1355, 300, 452, 6405, 2516, 264, 4846, 295, 2031, 15480, 293, 11247, 309, 281, 2031, 15480, 264, 1558, 307, 300, 341, 22860, 307, 295, 264, 912, 2010, 300, 307, 5176, 490, 264, 3861, 11, 457, 309, 9441, 300, 309, 2516, 2031, 15480, 293, 11247, 309, 281, 361, 3015, 293, 14790, 309, 281, 341, 472, 309, 11247, 281, 361, 3015, 293, 11247, 264, 1150, 2031, 15480, 293, 11247, 309, 281, 452, 3861, 293, 370, 286, 500, 380, 1319, 1340, 294, 264, 3861, 295, 1164, 11, 456, 307, 257, 2642, 3207, 300, 456, 366, 14298, 7705, 300, 362, 668, 1096, 510], "avg_logprob": -0.6595237868172782, "compression_ratio": 2.0340425531914894, "no_speech_prob": 1.5556812286376953e-05, "words": [{"start": 2235.94, "end": 2236.14, "word": "to", "probability": 0.1719970703125}, {"start": 2236.14, "end": 2236.22, "word": " my", "probability": 0.728515625}, {"start": 2236.22, "end": 2236.54, "word": " library,", "probability": 0.1796875}, {"start": 2237.06, "end": 2237.34, "word": " which", "probability": 0.404052734375}, {"start": 2237.34, "end": 2237.34, "word": " means", "probability": 0.448974609375}, {"start": 2237.34, "end": 2237.38, "word": " that", "probability": 0.39892578125}, {"start": 2237.38, "end": 2238.02, "word": " my", "probability": 0.78515625}, {"start": 2238.02, "end": 2238.02, "word": " library", "probability": 0.89111328125}, {"start": 2238.02, "end": 2238.34, "word": " takes", "probability": 0.56005859375}, {"start": 2238.34, "end": 2238.48, "word": " the", "probability": 0.286376953125}, {"start": 2238.48, "end": 2238.7, "word": " input", "probability": 0.70458984375}, {"start": 2238.7, "end": 2239.16, "word": " of", "probability": 0.45703125}, {"start": 2239.16, "end": 2239.66, "word": " xml", "probability": 0.6396484375}, {"start": 2239.66, "end": 2239.82, "word": " and", "probability": 0.763671875}, {"start": 2239.82, "end": 2240.5, "word": " returns", "probability": 0.430419921875}, {"start": 2240.5, "end": 2240.98, "word": " it", "probability": 0.6728515625}, {"start": 2240.98, "end": 2241.12, "word": " to", "probability": 0.51025390625}, {"start": 2241.12, "end": 2241.94, "word": " xml", "probability": 0.75732421875}, {"start": 2241.94, "end": 2243.56, "word": " the", "probability": 0.26953125}, {"start": 2243.56, "end": 2243.86, "word": " idea", "probability": 0.83203125}, {"start": 2243.86, "end": 2244.02, "word": " is", "probability": 0.6796875}, {"start": 2244.02, "end": 2244.14, "word": " that", "probability": 0.72314453125}, {"start": 2244.14, "end": 2244.3, "word": " this", "probability": 0.68359375}, {"start": 2244.3, "end": 2244.76, "word": " adapter", "probability": 0.7841796875}, {"start": 2244.76, "end": 2245.34, "word": " is", "probability": 0.60595703125}, {"start": 2245.34, "end": 2245.36, "word": " of", "probability": 0.161865234375}, {"start": 2245.36, "end": 2245.64, "word": " the", "probability": 0.8369140625}, {"start": 2245.64, "end": 2245.64, "word": " same", "probability": 0.78955078125}, {"start": 2245.64, "end": 2245.84, "word": " type", "probability": 0.49267578125}, {"start": 2245.84, "end": 2245.98, "word": " that", "probability": 0.3291015625}, {"start": 2245.98, "end": 2246.02, "word": " is", "probability": 0.416748046875}, {"start": 2246.02, "end": 2246.3, "word": " expected", "probability": 0.81591796875}, {"start": 2246.3, "end": 2246.44, "word": " from", "probability": 0.1583251953125}, {"start": 2246.44, "end": 2246.5, "word": " the", "probability": 0.6943359375}, {"start": 2246.5, "end": 2246.86, "word": " application,", "probability": 0.61865234375}, {"start": 2247.18, "end": 2247.18, "word": " but", "probability": 0.77294921875}, {"start": 2247.18, "end": 2247.6, "word": " it", "probability": 0.333740234375}, {"start": 2247.6, "end": 2247.96, "word": " claims", "probability": 0.28173828125}, {"start": 2247.96, "end": 2248.62, "word": " that", "probability": 0.309814453125}, {"start": 2248.62, "end": 2248.74, "word": " it", "probability": 0.72802734375}, {"start": 2248.74, "end": 2248.98, "word": " takes", "probability": 0.71923828125}, {"start": 2248.98, "end": 2249.42, "word": " xml", "probability": 0.783447265625}, {"start": 2249.42, "end": 2249.56, "word": " and", "probability": 0.31005859375}, {"start": 2249.56, "end": 2249.78, "word": " returns", "probability": 0.406982421875}, {"start": 2249.78, "end": 2249.92, "word": " it", "probability": 0.79736328125}, {"start": 2249.92, "end": 2249.96, "word": " to", "probability": 0.89501953125}, {"start": 2249.96, "end": 2250.28, "word": " json", "probability": 0.565673828125}, {"start": 2250.28, "end": 2250.38, "word": " and", "probability": 0.5517578125}, {"start": 2250.38, "end": 2250.6, "word": " sends", "probability": 0.1904296875}, {"start": 2250.6, "end": 2250.74, "word": " it", "probability": 0.87890625}, {"start": 2250.74, "end": 2250.8, "word": " to", "probability": 0.740234375}, {"start": 2250.8, "end": 2251.02, "word": " this", "probability": 0.32763671875}, {"start": 2251.02, "end": 2251.34, "word": " one", "probability": 0.365234375}, {"start": 2251.34, "end": 2251.82, "word": " it", "probability": 0.275390625}, {"start": 2251.82, "end": 2252.06, "word": " returns", "probability": 0.038299560546875}, {"start": 2252.06, "end": 2252.84, "word": " to", "probability": 0.2335205078125}, {"start": 2252.84, "end": 2253.18, "word": " json", "probability": 0.91943359375}, {"start": 2253.18, "end": 2253.28, "word": " and", "probability": 0.6083984375}, {"start": 2253.28, "end": 2253.5, "word": " returns", "probability": 0.5859375}, {"start": 2253.5, "end": 2253.64, "word": " the", "probability": 0.2607421875}, {"start": 2253.64, "end": 2253.76, "word": " second", "probability": 0.68212890625}, {"start": 2253.76, "end": 2254.16, "word": " xml", "probability": 0.9755859375}, {"start": 2254.16, "end": 2254.26, "word": " and", "probability": 0.61279296875}, {"start": 2254.26, "end": 2254.56, "word": " returns", "probability": 0.6357421875}, {"start": 2254.56, "end": 2254.7, "word": " it", "probability": 0.79443359375}, {"start": 2254.7, "end": 2254.9, "word": " to", "probability": 0.58251953125}, {"start": 2254.9, "end": 2255.54, "word": " my", "probability": 0.41357421875}, {"start": 2255.54, "end": 2256.06, "word": " application", "probability": 0.7236328125}, {"start": 2256.06, "end": 2256.54, "word": " and", "probability": 0.262939453125}, {"start": 2256.54, "end": 2256.68, "word": " so", "probability": 0.271484375}, {"start": 2256.68, "end": 2256.86, "word": " I", "probability": 0.7275390625}, {"start": 2256.86, "end": 2256.94, "word": " don't", "probability": 0.766845703125}, {"start": 2256.94, "end": 2257.22, "word": " change", "probability": 0.86865234375}, {"start": 2257.22, "end": 2257.78, "word": " anything", "probability": 0.83203125}, {"start": 2257.78, "end": 2258.7, "word": " in", "probability": 0.8681640625}, {"start": 2258.7, "end": 2258.82, "word": " the", "probability": 0.7421875}, {"start": 2258.82, "end": 2259.12, "word": " application", "probability": 0.91162109375}, {"start": 2259.12, "end": 2259.62, "word": " of", "probability": 0.623046875}, {"start": 2259.62, "end": 2259.8, "word": " course,", "probability": 0.95654296875}, {"start": 2259.98, "end": 2260.32, "word": " there", "probability": 0.87451171875}, {"start": 2260.32, "end": 2260.36, "word": " is", "probability": 0.81787109375}, {"start": 2260.36, "end": 2260.48, "word": " a", "probability": 0.92431640625}, {"start": 2260.48, "end": 2260.86, "word": " drawback", "probability": 0.5321044921875}, {"start": 2260.86, "end": 2261.38, "word": " that", "probability": 0.490966796875}, {"start": 2261.38, "end": 2261.48, "word": " there", "probability": 0.56201171875}, {"start": 2261.48, "end": 2261.6, "word": " are", "probability": 0.388671875}, {"start": 2261.6, "end": 2262.2, "word": " conversion", "probability": 0.32958984375}, {"start": 2262.2, "end": 2262.2, "word": " operations", "probability": 0.40283203125}, {"start": 2262.2, "end": 2262.42, "word": " that", "probability": 0.457275390625}, {"start": 2262.42, "end": 2262.5, "word": " have", "probability": 0.39404296875}, {"start": 2262.5, "end": 2262.5, "word": " been", "probability": 0.6005859375}, {"start": 2262.5, "end": 2262.76, "word": " done", "probability": 0.3974609375}, {"start": 2262.76, "end": 2262.76, "word": " here", "probability": 0.826171875}], "temperature": 1.0}, {"id": 95, "seek": 229162, "start": 2263.34, "end": 2291.62, "text": "Okay? But if the download process does not take time, there is no problem in doing it because it saves you a lot of time. The change here is difficult because, as I said, the dependency of the application on the library is large, so the change in the application itself is difficult. Okay? So I got rid of it with the idea of ​​what? The adapter. So let's see the URL or before the URL. Let's read the words that are here.", "tokens": [8297, 30, 583, 498, 264, 5484, 1399, 775, 406, 747, 565, 11, 456, 307, 572, 1154, 294, 884, 309, 570, 309, 19155, 291, 257, 688, 295, 565, 13, 440, 1319, 510, 307, 2252, 570, 11, 382, 286, 848, 11, 264, 1367, 521, 3020, 295, 264, 3861, 322, 264, 6405, 307, 2416, 11, 370, 264, 1319, 294, 264, 3861, 2564, 307, 2252, 13, 1033, 30, 407, 286, 658, 3973, 295, 309, 365, 264, 1558, 295, 8701, 5479, 30, 440, 22860, 13, 407, 718, 311, 536, 264, 12905, 420, 949, 264, 12905, 13, 961, 311, 1401, 264, 2283, 300, 366, 510, 13], "avg_logprob": -0.3985148550260185, "compression_ratio": 1.6384615384615384, "no_speech_prob": 1.4007091522216797e-05, "words": [{"start": 2263.34, "end": 2263.64, "word": "Okay?", "probability": 0.12091064453125}, {"start": 2264.24, "end": 2264.54, "word": " But", "probability": 0.76171875}, {"start": 2264.54, "end": 2264.72, "word": " if", "probability": 0.87158203125}, {"start": 2264.72, "end": 2264.8, "word": " the", "probability": 0.568359375}, {"start": 2264.8, "end": 2265.36, "word": " download", "probability": 0.2408447265625}, {"start": 2265.36, "end": 2265.38, "word": " process", "probability": 0.8291015625}, {"start": 2265.38, "end": 2265.62, "word": " does", "probability": 0.405517578125}, {"start": 2265.62, "end": 2265.62, "word": " not", "probability": 0.939453125}, {"start": 2265.62, "end": 2265.78, "word": " take", "probability": 0.85205078125}, {"start": 2265.78, "end": 2266.3, "word": " time,", "probability": 0.392578125}, {"start": 2266.96, "end": 2268.04, "word": " there", "probability": 0.310302734375}, {"start": 2268.04, "end": 2268.1, "word": " is", "probability": 0.86328125}, {"start": 2268.1, "end": 2268.24, "word": " no", "probability": 0.94775390625}, {"start": 2268.24, "end": 2268.46, "word": " problem", "probability": 0.849609375}, {"start": 2268.46, "end": 2268.6, "word": " in", "probability": 0.36279296875}, {"start": 2268.6, "end": 2268.96, "word": " doing", "probability": 0.673828125}, {"start": 2268.96, "end": 2269.22, "word": " it", "probability": 0.9111328125}, {"start": 2269.22, "end": 2269.84, "word": " because", "probability": 0.474853515625}, {"start": 2269.84, "end": 2269.96, "word": " it", "probability": 0.69873046875}, {"start": 2269.96, "end": 2270.18, "word": " saves", "probability": 0.451171875}, {"start": 2270.18, "end": 2270.44, "word": " you", "probability": 0.71728515625}, {"start": 2270.44, "end": 2270.54, "word": " a", "probability": 0.8515625}, {"start": 2270.54, "end": 2270.96, "word": " lot", "probability": 0.95751953125}, {"start": 2270.96, "end": 2271.0, "word": " of", "probability": 0.9638671875}, {"start": 2271.0, "end": 2271.0, "word": " time.", "probability": 0.87890625}, {"start": 2271.12, "end": 2271.2, "word": " The", "probability": 0.297119140625}, {"start": 2271.2, "end": 2271.48, "word": " change", "probability": 0.83984375}, {"start": 2271.48, "end": 2271.76, "word": " here", "probability": 0.71533203125}, {"start": 2271.76, "end": 2273.12, "word": " is", "probability": 0.8974609375}, {"start": 2273.12, "end": 2273.42, "word": " difficult", "probability": 0.77197265625}, {"start": 2273.42, "end": 2273.84, "word": " because,", "probability": 0.6923828125}, {"start": 2274.0, "end": 2274.08, "word": " as", "probability": 0.9521484375}, {"start": 2274.08, "end": 2274.22, "word": " I", "probability": 0.94677734375}, {"start": 2274.22, "end": 2274.4, "word": " said,", "probability": 0.90869140625}, {"start": 2275.28, "end": 2275.74, "word": " the", "probability": 0.78466796875}, {"start": 2275.74, "end": 2276.36, "word": " dependency", "probability": 0.5167439778645834}, {"start": 2276.36, "end": 2276.52, "word": " of", "probability": 0.88525390625}, {"start": 2276.52, "end": 2276.62, "word": " the", "probability": 0.89599609375}, {"start": 2276.62, "end": 2277.08, "word": " application", "probability": 0.92626953125}, {"start": 2277.08, "end": 2277.28, "word": " on", "probability": 0.6767578125}, {"start": 2277.28, "end": 2277.36, "word": " the", "probability": 0.8330078125}, {"start": 2277.36, "end": 2277.6, "word": " library", "probability": 0.54931640625}, {"start": 2277.6, "end": 2277.76, "word": " is", "probability": 0.91357421875}, {"start": 2277.76, "end": 2277.96, "word": " large,", "probability": 0.450927734375}, {"start": 2278.42, "end": 2278.72, "word": " so", "probability": 0.9169921875}, {"start": 2278.72, "end": 2278.82, "word": " the", "probability": 0.6953125}, {"start": 2278.82, "end": 2279.26, "word": " change", "probability": 0.87109375}, {"start": 2279.26, "end": 2279.82, "word": " in", "probability": 0.89453125}, {"start": 2279.82, "end": 2279.92, "word": " the", "probability": 0.91650390625}, {"start": 2279.92, "end": 2280.32, "word": " application", "probability": 0.93310546875}, {"start": 2280.32, "end": 2280.62, "word": " itself", "probability": 0.76123046875}, {"start": 2280.62, "end": 2280.72, "word": " is", "probability": 0.9345703125}, {"start": 2280.72, "end": 2280.96, "word": " difficult.", "probability": 0.88916015625}, {"start": 2281.78, "end": 2282.0, "word": " Okay?", "probability": 0.5947265625}, {"start": 2282.08, "end": 2282.22, "word": " So", "probability": 0.90380859375}, {"start": 2282.22, "end": 2282.24, "word": " I", "probability": 0.8427734375}, {"start": 2282.24, "end": 2282.44, "word": " got", "probability": 0.27587890625}, {"start": 2282.44, "end": 2282.72, "word": " rid", "probability": 0.833984375}, {"start": 2282.72, "end": 2282.72, "word": " of", "probability": 0.9736328125}, {"start": 2282.72, "end": 2282.82, "word": " it", "probability": 0.69970703125}, {"start": 2282.82, "end": 2282.96, "word": " with", "probability": 0.57421875}, {"start": 2282.96, "end": 2283.2, "word": " the", "probability": 0.876953125}, {"start": 2283.2, "end": 2283.2, "word": " idea", "probability": 0.8544921875}, {"start": 2283.2, "end": 2283.34, "word": " of", "probability": 0.95458984375}, {"start": 2283.34, "end": 2283.56, "word": " ​​what?", "probability": 0.5914306640625}, {"start": 2284.2, "end": 2284.5, "word": " The", "probability": 0.68310546875}, {"start": 2284.5, "end": 2284.84, "word": " adapter.", "probability": 0.73779296875}, {"start": 2286.04, "end": 2286.24, "word": " So", "probability": 0.62841796875}, {"start": 2286.24, "end": 2286.6, "word": " let's", "probability": 0.8671875}, {"start": 2286.6, "end": 2286.96, "word": " see", "probability": 0.56396484375}, {"start": 2286.96, "end": 2287.2, "word": " the", "probability": 0.8173828125}, {"start": 2287.2, "end": 2287.56, "word": " URL", "probability": 0.3916015625}, {"start": 2287.56, "end": 2287.9, "word": " or", "probability": 0.85009765625}, {"start": 2287.9, "end": 2288.12, "word": " before", "probability": 0.1766357421875}, {"start": 2288.12, "end": 2288.68, "word": " the", "probability": 0.91015625}, {"start": 2288.68, "end": 2288.68, "word": " URL.", "probability": 0.86669921875}, {"start": 2289.72, "end": 2290.2, "word": " Let's", "probability": 0.86376953125}, {"start": 2290.2, "end": 2290.48, "word": " read", "probability": 0.9658203125}, {"start": 2290.48, "end": 2290.78, "word": " the", "probability": 0.78955078125}, {"start": 2290.78, "end": 2291.04, "word": " words", "probability": 0.54296875}, {"start": 2291.04, "end": 2291.16, "word": " that", "probability": 0.331298828125}, {"start": 2291.16, "end": 2291.28, "word": " are", "probability": 0.923828125}, {"start": 2291.28, "end": 2291.62, "word": " here.", "probability": 0.6005859375}], "temperature": 1.0}, {"id": 96, "seek": 231498, "start": 2293.19, "end": 2314.99, "text": "The idea behind the adapter is to convert the interface of a class into another interface the client expects So the client expects X and we want to interact with a library Y, so I changed Y to an interface of the type X so that I don't change anything in the client This is the meaning of converting the interface of a class into another interface", "tokens": [2278, 1558, 2261, 264, 22860, 307, 281, 7620, 264, 9226, 295, 257, 1508, 666, 1071, 9226, 264, 6423, 33280, 407, 264, 6423, 33280, 1783, 293, 321, 528, 281, 4648, 365, 257, 6405, 398, 11, 370, 286, 3105, 398, 281, 364, 9226, 295, 264, 2010, 1783, 370, 300, 286, 500, 380, 1319, 1340, 294, 264, 6423, 639, 307, 264, 3620, 295, 29942, 264, 9226, 295, 257, 1508, 666, 1071, 9226], "avg_logprob": -0.41093750851494926, "compression_ratio": 1.96045197740113, "no_speech_prob": 7.152557373046875e-07, "words": [{"start": 2293.19, "end": 2293.37, "word": "The", "probability": 0.52685546875}, {"start": 2293.37, "end": 2293.55, "word": " idea", "probability": 0.609375}, {"start": 2293.55, "end": 2293.69, "word": " behind", "probability": 0.469970703125}, {"start": 2293.69, "end": 2293.73, "word": " the", "probability": 0.51416015625}, {"start": 2293.73, "end": 2294.09, "word": " adapter", "probability": 0.71044921875}, {"start": 2294.09, "end": 2294.33, "word": " is", "probability": 0.748046875}, {"start": 2294.33, "end": 2295.23, "word": " to", "probability": 0.48583984375}, {"start": 2295.23, "end": 2295.69, "word": " convert", "probability": 0.86767578125}, {"start": 2295.69, "end": 2296.37, "word": " the", "probability": 0.77783203125}, {"start": 2296.37, "end": 2297.07, "word": " interface", "probability": 0.9248046875}, {"start": 2297.07, "end": 2297.45, "word": " of", "probability": 0.8857421875}, {"start": 2297.45, "end": 2297.63, "word": " a", "probability": 0.94189453125}, {"start": 2297.63, "end": 2297.89, "word": " class", "probability": 0.95556640625}, {"start": 2297.89, "end": 2298.09, "word": " into", "probability": 0.77294921875}, {"start": 2298.09, "end": 2298.41, "word": " another", "probability": 0.9091796875}, {"start": 2298.41, "end": 2298.89, "word": " interface", "probability": 0.92919921875}, {"start": 2298.89, "end": 2299.11, "word": " the", "probability": 0.48291015625}, {"start": 2299.11, "end": 2299.45, "word": " client", "probability": 0.9052734375}, {"start": 2299.45, "end": 2300.39, "word": " expects", "probability": 0.92333984375}, {"start": 2300.39, "end": 2301.75, "word": " So", "probability": 0.107666015625}, {"start": 2301.75, "end": 2301.87, "word": " the", "probability": 0.55224609375}, {"start": 2301.87, "end": 2302.25, "word": " client", "probability": 0.908203125}, {"start": 2302.25, "end": 2302.87, "word": " expects", "probability": 0.93359375}, {"start": 2302.87, "end": 2303.19, "word": " X", "probability": 0.451904296875}, {"start": 2303.19, "end": 2304.57, "word": " and", "probability": 0.477783203125}, {"start": 2304.57, "end": 2304.71, "word": " we", "probability": 0.34765625}, {"start": 2304.71, "end": 2304.83, "word": " want", "probability": 0.58251953125}, {"start": 2304.83, "end": 2304.89, "word": " to", "probability": 0.96630859375}, {"start": 2304.89, "end": 2304.99, "word": " interact", "probability": 0.4541015625}, {"start": 2304.99, "end": 2305.15, "word": " with", "probability": 0.88720703125}, {"start": 2305.15, "end": 2305.33, "word": " a", "probability": 0.43896484375}, {"start": 2305.33, "end": 2305.45, "word": " library", "probability": 0.303955078125}, {"start": 2305.45, "end": 2305.81, "word": " Y,", "probability": 0.88037109375}, {"start": 2306.01, "end": 2306.11, "word": " so", "probability": 0.771484375}, {"start": 2306.11, "end": 2306.23, "word": " I", "probability": 0.9482421875}, {"start": 2306.23, "end": 2306.51, "word": " changed", "probability": 0.261474609375}, {"start": 2306.51, "end": 2307.05, "word": " Y", "probability": 0.734375}, {"start": 2307.05, "end": 2307.23, "word": " to", "probability": 0.71875}, {"start": 2307.23, "end": 2307.79, "word": " an", "probability": 0.5947265625}, {"start": 2307.79, "end": 2307.79, "word": " interface", "probability": 0.91064453125}, {"start": 2307.79, "end": 2307.91, "word": " of", "probability": 0.76611328125}, {"start": 2307.91, "end": 2308.07, "word": " the", "probability": 0.4560546875}, {"start": 2308.07, "end": 2308.29, "word": " type", "probability": 0.3505859375}, {"start": 2308.29, "end": 2309.49, "word": " X", "probability": 0.9169921875}, {"start": 2309.49, "end": 2309.71, "word": " so", "probability": 0.251220703125}, {"start": 2309.71, "end": 2309.83, "word": " that", "probability": 0.55859375}, {"start": 2309.83, "end": 2309.83, "word": " I", "probability": 0.56884765625}, {"start": 2309.83, "end": 2309.87, "word": " don't", "probability": 0.832763671875}, {"start": 2309.87, "end": 2310.13, "word": " change", "probability": 0.80517578125}, {"start": 2310.13, "end": 2310.49, "word": " anything", "probability": 0.8173828125}, {"start": 2310.49, "end": 2310.81, "word": " in", "probability": 0.763671875}, {"start": 2310.81, "end": 2310.91, "word": " the", "probability": 0.86181640625}, {"start": 2310.91, "end": 2311.31, "word": " client", "probability": 0.9208984375}, {"start": 2311.31, "end": 2311.79, "word": " This", "probability": 0.37744140625}, {"start": 2311.79, "end": 2311.83, "word": " is", "probability": 0.88818359375}, {"start": 2311.83, "end": 2312.07, "word": " the", "probability": 0.74755859375}, {"start": 2312.07, "end": 2312.07, "word": " meaning", "probability": 0.483154296875}, {"start": 2312.07, "end": 2312.09, "word": " of", "probability": 0.7138671875}, {"start": 2312.09, "end": 2312.43, "word": " converting", "probability": 0.58251953125}, {"start": 2312.43, "end": 2312.79, "word": " the", "probability": 0.7822265625}, {"start": 2312.79, "end": 2313.27, "word": " interface", "probability": 0.93408203125}, {"start": 2313.27, "end": 2313.45, "word": " of", "probability": 0.9326171875}, {"start": 2313.45, "end": 2313.63, "word": " a", "probability": 0.94580078125}, {"start": 2313.63, "end": 2313.81, "word": " class", "probability": 0.95703125}, {"start": 2313.81, "end": 2314.05, "word": " into", "probability": 0.775390625}, {"start": 2314.05, "end": 2314.41, "word": " another", "probability": 0.91650390625}, {"start": 2314.41, "end": 2314.99, "word": " interface", "probability": 0.92724609375}], "temperature": 1.0}, {"id": 97, "seek": 232478, "start": 2315.72, "end": 2324.78, "text": "The interface that I turn to is what the client expects. I want to use Y, but the client deals with X. So I go to Y", "tokens": [2278, 9226, 300, 286, 1261, 281, 307, 437, 264, 6423, 33280, 13, 286, 528, 281, 764, 398, 11, 457, 264, 6423, 11215, 365, 1783, 13, 407, 286, 352, 281, 398], "avg_logprob": -0.46320564323855984, "compression_ratio": 1.2365591397849462, "no_speech_prob": 2.86102294921875e-06, "words": [{"start": 2315.72, "end": 2315.96, "word": "The", "probability": 0.55712890625}, {"start": 2315.96, "end": 2316.44, "word": " interface", "probability": 0.8671875}, {"start": 2316.44, "end": 2316.56, "word": " that", "probability": 0.351806640625}, {"start": 2316.56, "end": 2316.7, "word": " I", "probability": 0.9189453125}, {"start": 2316.7, "end": 2317.0, "word": " turn", "probability": 0.218505859375}, {"start": 2317.0, "end": 2317.22, "word": " to", "probability": 0.82373046875}, {"start": 2317.22, "end": 2317.48, "word": " is", "probability": 0.371337890625}, {"start": 2317.48, "end": 2317.7, "word": " what", "probability": 0.6416015625}, {"start": 2317.7, "end": 2317.86, "word": " the", "probability": 0.5869140625}, {"start": 2317.86, "end": 2317.86, "word": " client", "probability": 0.86865234375}, {"start": 2317.86, "end": 2318.24, "word": " expects.", "probability": 0.88916015625}, {"start": 2319.44, "end": 2319.82, "word": " I", "probability": 0.87255859375}, {"start": 2319.82, "end": 2319.96, "word": " want", "probability": 0.65185546875}, {"start": 2319.96, "end": 2320.08, "word": " to", "probability": 0.9736328125}, {"start": 2320.08, "end": 2320.34, "word": " use", "probability": 0.884765625}, {"start": 2320.34, "end": 2320.78, "word": " Y,", "probability": 0.62255859375}, {"start": 2320.98, "end": 2321.22, "word": " but", "probability": 0.8798828125}, {"start": 2321.22, "end": 2321.44, "word": " the", "probability": 0.6416015625}, {"start": 2321.44, "end": 2321.9, "word": " client", "probability": 0.8955078125}, {"start": 2321.9, "end": 2322.44, "word": " deals", "probability": 0.269775390625}, {"start": 2322.44, "end": 2322.64, "word": " with", "probability": 0.90625}, {"start": 2322.64, "end": 2322.98, "word": " X.", "probability": 0.98291015625}, {"start": 2323.9, "end": 2324.08, "word": " So", "probability": 0.7802734375}, {"start": 2324.08, "end": 2324.12, "word": " I", "probability": 0.8154296875}, {"start": 2324.12, "end": 2324.24, "word": " go", "probability": 0.279052734375}, {"start": 2324.24, "end": 2324.4, "word": " to", "probability": 0.853515625}, {"start": 2324.4, "end": 2324.78, "word": " Y", "probability": 0.97607421875}], "temperature": 1.0}, {"id": 98, "seek": 234667, "start": 2326.49, "end": 2346.67, "text": "I changed it to an X shape. How? I made a class adapter from an X shape and from inside I used a Y shape. This is what this sentence means. Adapters, what is the result or the important effect of the adapter? Lets classes work together that couldn't otherwise because of incompatible interfaces. Let the classes interact with each other", "tokens": [40, 3105, 309, 281, 364, 1783, 3909, 13, 1012, 30, 286, 1027, 257, 1508, 22860, 490, 364, 1783, 3909, 293, 490, 1854, 286, 1143, 257, 398, 3909, 13, 639, 307, 437, 341, 8174, 1355, 13, 1999, 569, 1559, 11, 437, 307, 264, 1874, 420, 264, 1021, 1802, 295, 264, 22860, 30, 15655, 5359, 589, 1214, 300, 2809, 380, 5911, 570, 295, 40393, 267, 964, 28416, 13, 961, 264, 5359, 4648, 365, 1184, 661], "avg_logprob": -0.4936655389296042, "compression_ratio": 1.6, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 2326.49, "end": 2326.67, "word": "I", "probability": 0.576171875}, {"start": 2326.67, "end": 2326.89, "word": " changed", "probability": 0.2469482421875}, {"start": 2326.89, "end": 2327.05, "word": " it", "probability": 0.59033203125}, {"start": 2327.05, "end": 2327.13, "word": " to", "probability": 0.7529296875}, {"start": 2327.13, "end": 2327.21, "word": " an", "probability": 0.1898193359375}, {"start": 2327.21, "end": 2327.47, "word": " X", "probability": 0.5185546875}, {"start": 2327.47, "end": 2327.47, "word": " shape.", "probability": 0.33837890625}, {"start": 2327.57, "end": 2327.87, "word": " How?", "probability": 0.41552734375}, {"start": 2327.95, "end": 2328.09, "word": " I", "probability": 0.8193359375}, {"start": 2328.09, "end": 2328.29, "word": " made", "probability": 0.5283203125}, {"start": 2328.29, "end": 2328.67, "word": " a", "probability": 0.5205078125}, {"start": 2328.67, "end": 2328.69, "word": " class", "probability": 0.92919921875}, {"start": 2328.69, "end": 2329.11, "word": " adapter", "probability": 0.66357421875}, {"start": 2329.11, "end": 2329.31, "word": " from", "probability": 0.267822265625}, {"start": 2329.31, "end": 2329.57, "word": " an", "probability": 0.398193359375}, {"start": 2329.57, "end": 2329.79, "word": " X", "probability": 0.9638671875}, {"start": 2329.79, "end": 2329.79, "word": " shape", "probability": 0.8310546875}, {"start": 2329.79, "end": 2330.01, "word": " and", "probability": 0.63037109375}, {"start": 2330.01, "end": 2330.01, "word": " from", "probability": 0.31494140625}, {"start": 2330.01, "end": 2330.19, "word": " inside", "probability": 0.470703125}, {"start": 2330.19, "end": 2330.29, "word": " I", "probability": 0.57373046875}, {"start": 2330.29, "end": 2330.69, "word": " used", "probability": 0.44775390625}, {"start": 2330.69, "end": 2331.37, "word": " a", "probability": 0.3671875}, {"start": 2331.37, "end": 2331.53, "word": " Y", "probability": 0.94580078125}, {"start": 2331.53, "end": 2331.55, "word": " shape.", "probability": 0.8525390625}, {"start": 2331.59, "end": 2331.67, "word": " This", "probability": 0.282958984375}, {"start": 2331.67, "end": 2331.75, "word": " is", "probability": 0.76953125}, {"start": 2331.75, "end": 2331.83, "word": " what", "probability": 0.444580078125}, {"start": 2331.83, "end": 2331.97, "word": " this", "probability": 0.68212890625}, {"start": 2331.97, "end": 2332.21, "word": " sentence", "probability": 0.76806640625}, {"start": 2332.21, "end": 2332.43, "word": " means.", "probability": 0.82763671875}, {"start": 2333.33, "end": 2333.81, "word": " Adapters,", "probability": 0.8414713541666666}, {"start": 2334.05, "end": 2334.23, "word": " what", "probability": 0.78955078125}, {"start": 2334.23, "end": 2334.43, "word": " is", "probability": 0.77734375}, {"start": 2334.43, "end": 2335.33, "word": " the", "probability": 0.7939453125}, {"start": 2335.33, "end": 2335.81, "word": " result", "probability": 0.461669921875}, {"start": 2335.81, "end": 2336.17, "word": " or", "probability": 0.78662109375}, {"start": 2336.17, "end": 2336.49, "word": " the", "probability": 0.54443359375}, {"start": 2336.49, "end": 2336.51, "word": " important", "probability": 0.61083984375}, {"start": 2336.51, "end": 2336.93, "word": " effect", "probability": 0.63818359375}, {"start": 2336.93, "end": 2337.39, "word": " of", "probability": 0.47412109375}, {"start": 2337.39, "end": 2337.49, "word": " the", "probability": 0.33984375}, {"start": 2337.49, "end": 2337.85, "word": " adapter?", "probability": 0.5615234375}, {"start": 2338.69, "end": 2339.05, "word": " Lets", "probability": 0.372314453125}, {"start": 2339.05, "end": 2339.93, "word": " classes", "probability": 0.9111328125}, {"start": 2339.93, "end": 2340.23, "word": " work", "probability": 0.9169921875}, {"start": 2340.23, "end": 2340.63, "word": " together", "probability": 0.85205078125}, {"start": 2340.63, "end": 2341.07, "word": " that", "probability": 0.78466796875}, {"start": 2341.07, "end": 2341.51, "word": " couldn't", "probability": 0.852783203125}, {"start": 2341.51, "end": 2341.97, "word": " otherwise", "probability": 0.87548828125}, {"start": 2341.97, "end": 2342.45, "word": " because", "probability": 0.88330078125}, {"start": 2342.45, "end": 2342.71, "word": " of", "probability": 0.962890625}, {"start": 2342.71, "end": 2343.43, "word": " incompatible", "probability": 0.9436848958333334}, {"start": 2343.43, "end": 2344.47, "word": " interfaces.", "probability": 0.978515625}, {"start": 2344.87, "end": 2345.05, "word": " Let", "probability": 0.32421875}, {"start": 2345.05, "end": 2345.23, "word": " the", "probability": 0.646484375}, {"start": 2345.23, "end": 2345.89, "word": " classes", "probability": 0.890625}, {"start": 2345.89, "end": 2346.25, "word": " interact", "probability": 0.453369140625}, {"start": 2346.25, "end": 2346.43, "word": " with", "probability": 0.7587890625}, {"start": 2346.43, "end": 2346.67, "word": " each", "probability": 0.9287109375}, {"start": 2346.67, "end": 2346.67, "word": " other", "probability": 0.88916015625}], "temperature": 1.0}, {"id": 99, "seek": 237088, "start": 2347.58, "end": 2370.88, "text": "It wasn't able to deal with each other before because their types are different It made the application to deal with Y although by default it can't deal with it, it deals with X Motivation, sometimes a toolkit or class probably cannot be used because of its interface is incompatible with the interface required by the application Is this the main case? Do you deal with external libraries?", "tokens": [3522, 2067, 380, 1075, 281, 2028, 365, 1184, 661, 949, 570, 641, 3467, 366, 819, 467, 1027, 264, 3861, 281, 2028, 365, 398, 4878, 538, 7576, 309, 393, 380, 2028, 365, 309, 11, 309, 11215, 365, 1783, 8956, 592, 399, 11, 2171, 257, 40167, 420, 1508, 1391, 2644, 312, 1143, 570, 295, 1080, 9226, 307, 40393, 267, 964, 365, 264, 9226, 4739, 538, 264, 3861, 1119, 341, 264, 2135, 1389, 30, 1144, 291, 2028, 365, 8320, 15148, 30], "avg_logprob": -0.4363132881212838, "compression_ratio": 1.7105263157894737, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2347.58, "end": 2347.86, "word": "It", "probability": 0.1568603515625}, {"start": 2347.86, "end": 2348.12, "word": " wasn't", "probability": 0.6297607421875}, {"start": 2348.12, "end": 2348.5, "word": " able", "probability": 0.5205078125}, {"start": 2348.5, "end": 2349.04, "word": " to", "probability": 0.9638671875}, {"start": 2349.04, "end": 2349.36, "word": " deal", "probability": 0.3505859375}, {"start": 2349.36, "end": 2349.5, "word": " with", "probability": 0.86279296875}, {"start": 2349.5, "end": 2349.74, "word": " each", "probability": 0.8125}, {"start": 2349.74, "end": 2349.74, "word": " other", "probability": 0.87890625}, {"start": 2349.74, "end": 2350.16, "word": " before", "probability": 0.2015380859375}, {"start": 2350.16, "end": 2350.44, "word": " because", "probability": 0.79931640625}, {"start": 2350.44, "end": 2350.6, "word": " their", "probability": 0.203125}, {"start": 2350.6, "end": 2350.88, "word": " types", "probability": 0.56689453125}, {"start": 2350.88, "end": 2351.66, "word": " are", "probability": 0.5390625}, {"start": 2351.66, "end": 2352.04, "word": " different", "probability": 0.8740234375}, {"start": 2352.04, "end": 2352.58, "word": " It", "probability": 0.25}, {"start": 2352.58, "end": 2352.8, "word": " made", "probability": 0.3583984375}, {"start": 2352.8, "end": 2352.94, "word": " the", "probability": 0.84326171875}, {"start": 2352.94, "end": 2353.58, "word": " application", "probability": 0.89306640625}, {"start": 2353.58, "end": 2354.1, "word": " to", "probability": 0.30419921875}, {"start": 2354.1, "end": 2354.4, "word": " deal", "probability": 0.83203125}, {"start": 2354.4, "end": 2354.62, "word": " with", "probability": 0.9052734375}, {"start": 2354.62, "end": 2354.96, "word": " Y", "probability": 0.5087890625}, {"start": 2354.96, "end": 2356.18, "word": " although", "probability": 0.200927734375}, {"start": 2356.18, "end": 2357.02, "word": " by", "probability": 0.49951171875}, {"start": 2357.02, "end": 2357.32, "word": " default", "probability": 0.97509765625}, {"start": 2357.32, "end": 2357.42, "word": " it", "probability": 0.7705078125}, {"start": 2357.42, "end": 2357.68, "word": " can't", "probability": 0.7333984375}, {"start": 2357.68, "end": 2357.92, "word": " deal", "probability": 0.697265625}, {"start": 2357.92, "end": 2357.98, "word": " with", "probability": 0.80712890625}, {"start": 2357.98, "end": 2357.98, "word": " it,", "probability": 0.39404296875}, {"start": 2358.02, "end": 2358.04, "word": " it", "probability": 0.78759765625}, {"start": 2358.04, "end": 2358.32, "word": " deals", "probability": 0.7041015625}, {"start": 2358.32, "end": 2358.62, "word": " with", "probability": 0.890625}, {"start": 2358.62, "end": 2359.76, "word": " X", "probability": 0.9052734375}, {"start": 2359.76, "end": 2361.1, "word": " Motivation,", "probability": 0.8064778645833334}, {"start": 2361.36, "end": 2362.1, "word": " sometimes", "probability": 0.8447265625}, {"start": 2362.1, "end": 2362.36, "word": " a", "probability": 0.95947265625}, {"start": 2362.36, "end": 2362.7, "word": " toolkit", "probability": 0.6357421875}, {"start": 2362.7, "end": 2362.92, "word": " or", "probability": 0.91259765625}, {"start": 2362.92, "end": 2363.24, "word": " class", "probability": 0.84765625}, {"start": 2363.24, "end": 2363.58, "word": " probably", "probability": 0.168212890625}, {"start": 2363.58, "end": 2363.92, "word": " cannot", "probability": 0.76416015625}, {"start": 2363.92, "end": 2364.14, "word": " be", "probability": 0.955078125}, {"start": 2364.14, "end": 2364.38, "word": " used", "probability": 0.931640625}, {"start": 2364.38, "end": 2364.66, "word": " because", "probability": 0.90478515625}, {"start": 2364.66, "end": 2364.88, "word": " of", "probability": 0.681640625}, {"start": 2364.88, "end": 2365.04, "word": " its", "probability": 0.83740234375}, {"start": 2365.04, "end": 2365.5, "word": " interface", "probability": 0.88671875}, {"start": 2365.5, "end": 2365.7, "word": " is", "probability": 0.90771484375}, {"start": 2365.7, "end": 2366.36, "word": " incompatible", "probability": 0.9210611979166666}, {"start": 2366.36, "end": 2366.5, "word": " with", "probability": 0.9033203125}, {"start": 2366.5, "end": 2366.62, "word": " the", "probability": 0.810546875}, {"start": 2366.62, "end": 2366.96, "word": " interface", "probability": 0.88916015625}, {"start": 2366.96, "end": 2367.32, "word": " required", "probability": 0.84033203125}, {"start": 2367.32, "end": 2367.48, "word": " by", "probability": 0.97021484375}, {"start": 2367.48, "end": 2367.56, "word": " the", "probability": 0.410888671875}, {"start": 2367.56, "end": 2368.06, "word": " application", "probability": 0.927734375}, {"start": 2368.06, "end": 2368.92, "word": " Is", "probability": 0.494873046875}, {"start": 2368.92, "end": 2369.04, "word": " this", "probability": 0.44921875}, {"start": 2369.04, "end": 2369.38, "word": " the", "probability": 0.66357421875}, {"start": 2369.38, "end": 2369.6, "word": " main", "probability": 0.748046875}, {"start": 2369.6, "end": 2369.6, "word": " case?", "probability": 0.7373046875}, {"start": 2369.76, "end": 2369.94, "word": " Do", "probability": 0.47314453125}, {"start": 2369.94, "end": 2369.94, "word": " you", "probability": 0.97021484375}, {"start": 2369.94, "end": 2370.26, "word": " deal", "probability": 0.79541015625}, {"start": 2370.26, "end": 2370.44, "word": " with", "probability": 0.88623046875}, {"start": 2370.44, "end": 2370.48, "word": " external", "probability": 0.427978515625}, {"start": 2370.48, "end": 2370.88, "word": " libraries?", "probability": 0.93359375}], "temperature": 1.0}, {"id": 100, "seek": 239351, "start": 2373.87, "end": 2393.51, "text": "and the libraries change. You designed the application to work with a certain library, but it changes and moves to another library. The traditional changes made by programmers in the beginning takes a lot of time from us. So I just made him agree with the old library, but I did something to deceive him.", "tokens": [474, 264, 15148, 1319, 13, 509, 4761, 264, 3861, 281, 589, 365, 257, 1629, 6405, 11, 457, 309, 2962, 293, 6067, 281, 1071, 6405, 13, 440, 5164, 2962, 1027, 538, 41504, 294, 264, 2863, 2516, 257, 688, 295, 565, 490, 505, 13, 407, 286, 445, 1027, 796, 3986, 365, 264, 1331, 6405, 11, 457, 286, 630, 746, 281, 43440, 796, 13], "avg_logprob": -0.6426411472981975, "compression_ratio": 1.5916230366492146, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 2373.87, "end": 2373.93, "word": "and", "probability": 0.1898193359375}, {"start": 2373.93, "end": 2374.53, "word": " the", "probability": 0.195068359375}, {"start": 2374.53, "end": 2374.83, "word": " libraries", "probability": 0.8603515625}, {"start": 2374.83, "end": 2374.91, "word": " change.", "probability": 0.46728515625}, {"start": 2375.37, "end": 2375.83, "word": " You", "probability": 0.374267578125}, {"start": 2375.83, "end": 2376.13, "word": " designed", "probability": 0.45068359375}, {"start": 2376.13, "end": 2376.33, "word": " the", "probability": 0.65625}, {"start": 2376.33, "end": 2376.63, "word": " application", "probability": 0.449951171875}, {"start": 2376.63, "end": 2376.81, "word": " to", "probability": 0.865234375}, {"start": 2376.81, "end": 2377.03, "word": " work", "probability": 0.316650390625}, {"start": 2377.03, "end": 2377.19, "word": " with", "probability": 0.8427734375}, {"start": 2377.19, "end": 2377.27, "word": " a", "probability": 0.71240234375}, {"start": 2377.27, "end": 2377.91, "word": " certain", "probability": 0.3505859375}, {"start": 2377.91, "end": 2377.91, "word": " library,", "probability": 0.93994140625}, {"start": 2378.39, "end": 2378.57, "word": " but", "probability": 0.210693359375}, {"start": 2378.57, "end": 2378.69, "word": " it", "probability": 0.52978515625}, {"start": 2378.69, "end": 2379.15, "word": " changes", "probability": 0.4169921875}, {"start": 2379.15, "end": 2379.31, "word": " and", "probability": 0.54248046875}, {"start": 2379.31, "end": 2379.57, "word": " moves", "probability": 0.380126953125}, {"start": 2379.57, "end": 2379.79, "word": " to", "probability": 0.8564453125}, {"start": 2379.79, "end": 2379.85, "word": " another", "probability": 0.84423828125}, {"start": 2379.85, "end": 2380.39, "word": " library.", "probability": 0.82177734375}, {"start": 2382.01, "end": 2382.13, "word": " The", "probability": 0.67919921875}, {"start": 2382.13, "end": 2382.67, "word": " traditional", "probability": 0.1739501953125}, {"start": 2382.67, "end": 2382.85, "word": " changes", "probability": 0.352783203125}, {"start": 2382.85, "end": 2383.27, "word": " made", "probability": 0.269775390625}, {"start": 2383.27, "end": 2383.45, "word": " by", "probability": 0.87255859375}, {"start": 2383.45, "end": 2383.87, "word": " programmers", "probability": 0.43310546875}, {"start": 2383.87, "end": 2384.01, "word": " in", "probability": 0.158203125}, {"start": 2384.01, "end": 2384.05, "word": " the", "probability": 0.8154296875}, {"start": 2384.05, "end": 2384.41, "word": " beginning", "probability": 0.60205078125}, {"start": 2384.41, "end": 2385.89, "word": " takes", "probability": 0.317626953125}, {"start": 2385.89, "end": 2386.23, "word": " a", "probability": 0.64453125}, {"start": 2386.23, "end": 2386.61, "word": " lot", "probability": 0.346923828125}, {"start": 2386.61, "end": 2387.35, "word": " of", "probability": 0.95751953125}, {"start": 2387.35, "end": 2387.35, "word": " time", "probability": 0.78515625}, {"start": 2387.35, "end": 2387.39, "word": " from", "probability": 0.283935546875}, {"start": 2387.39, "end": 2387.39, "word": " us.", "probability": 0.89453125}, {"start": 2387.77, "end": 2388.09, "word": " So", "probability": 0.2318115234375}, {"start": 2388.09, "end": 2388.33, "word": " I", "probability": 0.7421875}, {"start": 2388.33, "end": 2388.75, "word": " just", "probability": 0.462646484375}, {"start": 2388.75, "end": 2389.25, "word": " made", "probability": 0.59521484375}, {"start": 2389.25, "end": 2389.61, "word": " him", "probability": 0.22705078125}, {"start": 2389.61, "end": 2390.07, "word": " agree", "probability": 0.7734375}, {"start": 2390.07, "end": 2390.33, "word": " with", "probability": 0.81005859375}, {"start": 2390.33, "end": 2390.47, "word": " the", "probability": 0.904296875}, {"start": 2390.47, "end": 2391.11, "word": " old", "probability": 0.79443359375}, {"start": 2391.11, "end": 2391.15, "word": " library,", "probability": 0.93505859375}, {"start": 2391.35, "end": 2391.59, "word": " but", "probability": 0.85595703125}, {"start": 2391.59, "end": 2391.83, "word": " I", "probability": 0.79736328125}, {"start": 2391.83, "end": 2392.15, "word": " did", "probability": 0.5908203125}, {"start": 2392.15, "end": 2393.01, "word": " something", "probability": 0.8212890625}, {"start": 2393.01, "end": 2393.15, "word": " to", "probability": 0.35302734375}, {"start": 2393.15, "end": 2393.37, "word": " deceive", "probability": 0.5634765625}, {"start": 2393.37, "end": 2393.51, "word": " him.", "probability": 0.92431640625}], "temperature": 1.0}, {"id": 101, "seek": 241877, "start": 2394.67, "end": 2418.77, "text": "Through it, it uses the same method as the old library, but inside it, it uses the method of the new library. We cannot change the library. Of course, you cannot change the old library or the new one. Since we may not have its source code. It is normal to go to the library and change its source code to make it like this. The change here is not correct, and the change in the library too.", "tokens": [47256, 581, 309, 11, 309, 4960, 264, 912, 3170, 382, 264, 1331, 6405, 11, 457, 1854, 309, 11, 309, 4960, 264, 3170, 295, 264, 777, 6405, 13, 492, 2644, 1319, 264, 6405, 13, 2720, 1164, 11, 291, 2644, 1319, 264, 1331, 6405, 420, 264, 777, 472, 13, 4162, 321, 815, 406, 362, 1080, 4009, 3089, 13, 467, 307, 2710, 281, 352, 281, 264, 6405, 293, 1319, 1080, 4009, 3089, 281, 652, 309, 411, 341, 13, 440, 1319, 510, 307, 406, 3006, 11, 293, 264, 1319, 294, 264, 6405, 886, 13], "avg_logprob": -0.4855769217669309, "compression_ratio": 1.935323383084577, "no_speech_prob": 3.039836883544922e-06, "words": [{"start": 2394.67, "end": 2395.11, "word": "Through", "probability": 0.51593017578125}, {"start": 2395.11, "end": 2395.51, "word": " it,", "probability": 0.487548828125}, {"start": 2395.91, "end": 2396.19, "word": " it", "probability": 0.391845703125}, {"start": 2396.19, "end": 2396.51, "word": " uses", "probability": 0.056427001953125}, {"start": 2396.51, "end": 2396.85, "word": " the", "probability": 0.88525390625}, {"start": 2396.85, "end": 2396.85, "word": " same", "probability": 0.6455078125}, {"start": 2396.85, "end": 2397.17, "word": " method", "probability": 0.86962890625}, {"start": 2397.17, "end": 2397.37, "word": " as", "probability": 0.247802734375}, {"start": 2397.37, "end": 2397.51, "word": " the", "probability": 0.46826171875}, {"start": 2397.51, "end": 2398.07, "word": " old", "probability": 0.701171875}, {"start": 2398.07, "end": 2398.07, "word": " library,", "probability": 0.8203125}, {"start": 2398.17, "end": 2398.35, "word": " but", "probability": 0.8525390625}, {"start": 2398.35, "end": 2398.65, "word": " inside", "probability": 0.1971435546875}, {"start": 2398.65, "end": 2399.33, "word": " it,", "probability": 0.53662109375}, {"start": 2399.47, "end": 2399.65, "word": " it", "probability": 0.75537109375}, {"start": 2399.65, "end": 2400.09, "word": " uses", "probability": 0.6396484375}, {"start": 2400.09, "end": 2400.23, "word": " the", "probability": 0.69287109375}, {"start": 2400.23, "end": 2400.45, "word": " method", "probability": 0.27783203125}, {"start": 2400.45, "end": 2400.61, "word": " of", "probability": 0.5791015625}, {"start": 2400.61, "end": 2400.81, "word": " the", "probability": 0.8154296875}, {"start": 2400.81, "end": 2401.99, "word": " new", "probability": 0.86328125}, {"start": 2401.99, "end": 2401.99, "word": " library.", "probability": 0.94189453125}, {"start": 2402.33, "end": 2402.71, "word": " We", "probability": 0.325927734375}, {"start": 2402.71, "end": 2403.03, "word": " cannot", "probability": 0.8466796875}, {"start": 2403.03, "end": 2403.43, "word": " change", "probability": 0.8779296875}, {"start": 2403.43, "end": 2403.59, "word": " the", "probability": 0.90771484375}, {"start": 2403.59, "end": 2403.81, "word": " library.", "probability": 0.94970703125}, {"start": 2403.97, "end": 2404.09, "word": " Of", "probability": 0.6572265625}, {"start": 2404.09, "end": 2404.15, "word": " course,", "probability": 0.958984375}, {"start": 2404.27, "end": 2404.37, "word": " you", "probability": 0.91015625}, {"start": 2404.37, "end": 2404.61, "word": " cannot", "probability": 0.6123046875}, {"start": 2404.61, "end": 2405.09, "word": " change", "probability": 0.88134765625}, {"start": 2405.09, "end": 2405.23, "word": " the", "probability": 0.8564453125}, {"start": 2405.23, "end": 2405.89, "word": " old", "probability": 0.806640625}, {"start": 2405.89, "end": 2406.03, "word": " library", "probability": 0.8896484375}, {"start": 2406.03, "end": 2406.33, "word": " or", "probability": 0.47509765625}, {"start": 2406.33, "end": 2407.27, "word": " the", "probability": 0.64501953125}, {"start": 2407.27, "end": 2407.43, "word": " new", "probability": 0.90283203125}, {"start": 2407.43, "end": 2407.61, "word": " one.", "probability": 0.59375}, {"start": 2408.21, "end": 2408.63, "word": " Since", "probability": 0.802734375}, {"start": 2408.63, "end": 2408.79, "word": " we", "probability": 0.857421875}, {"start": 2408.79, "end": 2408.99, "word": " may", "probability": 0.90185546875}, {"start": 2408.99, "end": 2409.23, "word": " not", "probability": 0.951171875}, {"start": 2409.23, "end": 2409.49, "word": " have", "probability": 0.94677734375}, {"start": 2409.49, "end": 2409.69, "word": " its", "probability": 0.84033203125}, {"start": 2409.69, "end": 2409.95, "word": " source", "probability": 0.83203125}, {"start": 2409.95, "end": 2410.27, "word": " code.", "probability": 0.923828125}, {"start": 2410.83, "end": 2411.05, "word": " It", "probability": 0.214599609375}, {"start": 2411.05, "end": 2411.17, "word": " is", "probability": 0.488037109375}, {"start": 2411.17, "end": 2411.47, "word": " normal", "probability": 0.61669921875}, {"start": 2411.47, "end": 2411.57, "word": " to", "probability": 0.70361328125}, {"start": 2411.57, "end": 2411.67, "word": " go", "probability": 0.65478515625}, {"start": 2411.67, "end": 2411.81, "word": " to", "probability": 0.91650390625}, {"start": 2411.81, "end": 2411.89, "word": " the", "probability": 0.7685546875}, {"start": 2411.89, "end": 2412.15, "word": " library", "probability": 0.91650390625}, {"start": 2412.15, "end": 2412.39, "word": " and", "probability": 0.8642578125}, {"start": 2412.39, "end": 2412.61, "word": " change", "probability": 0.87060546875}, {"start": 2412.61, "end": 2412.79, "word": " its", "probability": 0.611328125}, {"start": 2412.79, "end": 2412.97, "word": " source", "probability": 0.619140625}, {"start": 2412.97, "end": 2413.17, "word": " code", "probability": 0.92724609375}, {"start": 2413.17, "end": 2413.53, "word": " to", "probability": 0.5458984375}, {"start": 2413.53, "end": 2413.61, "word": " make", "probability": 0.18115234375}, {"start": 2413.61, "end": 2414.19, "word": " it", "probability": 0.892578125}, {"start": 2414.19, "end": 2414.27, "word": " like", "probability": 0.256103515625}, {"start": 2414.27, "end": 2414.51, "word": " this.", "probability": 0.7841796875}, {"start": 2415.47, "end": 2415.91, "word": " The", "probability": 0.2197265625}, {"start": 2415.91, "end": 2416.23, "word": " change", "probability": 0.86376953125}, {"start": 2416.23, "end": 2416.45, "word": " here", "probability": 0.5322265625}, {"start": 2416.45, "end": 2416.55, "word": " is", "probability": 0.90673828125}, {"start": 2416.55, "end": 2416.65, "word": " not", "probability": 0.6396484375}, {"start": 2416.65, "end": 2417.05, "word": " correct,", "probability": 0.73779296875}, {"start": 2417.57, "end": 2417.65, "word": " and", "probability": 0.8466796875}, {"start": 2417.65, "end": 2417.75, "word": " the", "probability": 0.75537109375}, {"start": 2417.75, "end": 2417.97, "word": " change", "probability": 0.8388671875}, {"start": 2417.97, "end": 2418.13, "word": " in", "probability": 0.81201171875}, {"start": 2418.13, "end": 2418.21, "word": " the", "probability": 0.90380859375}, {"start": 2418.21, "end": 2418.47, "word": " library", "probability": 0.93310546875}, {"start": 2418.47, "end": 2418.77, "word": " too.", "probability": 0.291748046875}], "temperature": 1.0}, {"id": 102, "seek": 243310, "start": 2419.96, "end": 2433.1, "text": "It's not correct, okay? So you don't change the Y to make it consistent with the X Even if the source code is there, there might be updates in this library You go get the update and change it again, okay? No, it's not correct", "tokens": [3522, 311, 406, 3006, 11, 1392, 30, 407, 291, 500, 380, 1319, 264, 398, 281, 652, 309, 8398, 365, 264, 1783, 2754, 498, 264, 4009, 3089, 307, 456, 11, 456, 1062, 312, 9205, 294, 341, 6405, 509, 352, 483, 264, 5623, 293, 1319, 309, 797, 11, 1392, 30, 883, 11, 309, 311, 406, 3006], "avg_logprob": -0.5519886081868952, "compression_ratio": 1.4705882352941178, "no_speech_prob": 2.2649765014648438e-06, "words": [{"start": 2419.96, "end": 2420.16, "word": "It's", "probability": 0.32470703125}, {"start": 2420.16, "end": 2420.24, "word": " not", "probability": 0.3447265625}, {"start": 2420.24, "end": 2420.56, "word": " correct,", "probability": 0.67138671875}, {"start": 2421.04, "end": 2421.38, "word": " okay?", "probability": 0.319091796875}, {"start": 2421.86, "end": 2422.12, "word": " So", "probability": 0.322509765625}, {"start": 2422.12, "end": 2422.2, "word": " you", "probability": 0.247314453125}, {"start": 2422.2, "end": 2422.26, "word": " don't", "probability": 0.792236328125}, {"start": 2422.26, "end": 2422.66, "word": " change", "probability": 0.6708984375}, {"start": 2422.66, "end": 2422.86, "word": " the", "probability": 0.450439453125}, {"start": 2422.86, "end": 2423.08, "word": " Y", "probability": 0.5107421875}, {"start": 2423.08, "end": 2423.3, "word": " to", "probability": 0.46044921875}, {"start": 2423.3, "end": 2423.5, "word": " make", "probability": 0.615234375}, {"start": 2423.5, "end": 2423.64, "word": " it", "probability": 0.8447265625}, {"start": 2423.64, "end": 2423.96, "word": " consistent", "probability": 0.22705078125}, {"start": 2423.96, "end": 2424.18, "word": " with", "probability": 0.8525390625}, {"start": 2424.18, "end": 2424.42, "word": " the", "probability": 0.80712890625}, {"start": 2424.42, "end": 2424.7, "word": " X", "probability": 0.99072265625}, {"start": 2424.7, "end": 2426.26, "word": " Even", "probability": 0.435546875}, {"start": 2426.26, "end": 2426.42, "word": " if", "probability": 0.85498046875}, {"start": 2426.42, "end": 2426.48, "word": " the", "probability": 0.393798828125}, {"start": 2426.48, "end": 2426.68, "word": " source", "probability": 0.7861328125}, {"start": 2426.68, "end": 2426.88, "word": " code", "probability": 0.93798828125}, {"start": 2426.88, "end": 2427.12, "word": " is", "probability": 0.56787109375}, {"start": 2427.12, "end": 2427.32, "word": " there,", "probability": 0.4208984375}, {"start": 2427.4, "end": 2427.52, "word": " there", "probability": 0.2315673828125}, {"start": 2427.52, "end": 2427.9, "word": " might", "probability": 0.36328125}, {"start": 2427.9, "end": 2428.22, "word": " be", "probability": 0.8876953125}, {"start": 2428.22, "end": 2428.68, "word": " updates", "probability": 0.5869140625}, {"start": 2428.68, "end": 2428.82, "word": " in", "probability": 0.389892578125}, {"start": 2428.82, "end": 2428.88, "word": " this", "probability": 0.673828125}, {"start": 2428.88, "end": 2429.18, "word": " library", "probability": 0.4775390625}, {"start": 2429.18, "end": 2430.04, "word": " You", "probability": 0.28955078125}, {"start": 2430.04, "end": 2430.2, "word": " go", "probability": 0.481201171875}, {"start": 2430.2, "end": 2430.4, "word": " get", "probability": 0.485595703125}, {"start": 2430.4, "end": 2430.5, "word": " the", "probability": 0.7958984375}, {"start": 2430.5, "end": 2430.74, "word": " update", "probability": 0.63916015625}, {"start": 2430.74, "end": 2430.84, "word": " and", "probability": 0.8984375}, {"start": 2430.84, "end": 2431.06, "word": " change", "probability": 0.8046875}, {"start": 2431.06, "end": 2431.3, "word": " it", "probability": 0.89697265625}, {"start": 2431.3, "end": 2431.52, "word": " again,", "probability": 0.8779296875}, {"start": 2432.06, "end": 2432.26, "word": " okay?", "probability": 0.73828125}, {"start": 2432.48, "end": 2432.68, "word": " No,", "probability": 0.740234375}, {"start": 2432.72, "end": 2432.82, "word": " it's", "probability": 0.861328125}, {"start": 2432.82, "end": 2432.86, "word": " not", "probability": 0.87548828125}, {"start": 2432.86, "end": 2433.1, "word": " correct", "probability": 0.7958984375}], "temperature": 1.0}, {"id": 103, "seek": 246217, "start": 2435.18, "end": 2462.18, "text": "Even if we did have the source code of the library, we probably should not change the library for each domain-specific application. Libraries are usually brought from outside and used as they are. They don't try to change it. Because as I said, they develop and make updates on it. Not every time you bring a new version, you go and change it. Because this is today's diagram of the adapter pattern. Let's understand it and fall on the example that we explained.", "tokens": [25931, 498, 321, 630, 362, 264, 4009, 3089, 295, 264, 6405, 11, 321, 1391, 820, 406, 1319, 264, 6405, 337, 1184, 9274, 12, 29258, 3861, 13, 12006, 4889, 366, 2673, 3038, 490, 2380, 293, 1143, 382, 436, 366, 13, 814, 500, 380, 853, 281, 1319, 309, 13, 1436, 382, 286, 848, 11, 436, 1499, 293, 652, 9205, 322, 309, 13, 1726, 633, 565, 291, 1565, 257, 777, 3037, 11, 291, 352, 293, 1319, 309, 13, 1436, 341, 307, 965, 311, 10686, 295, 264, 22860, 5102, 13, 961, 311, 1223, 309, 293, 2100, 322, 264, 1365, 300, 321, 8825, 13], "avg_logprob": -0.4599999940395355, "compression_ratio": 1.6559139784946237, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 2435.18, "end": 2435.54, "word": "Even", "probability": 0.41259765625}, {"start": 2435.54, "end": 2436.12, "word": " if", "probability": 0.91259765625}, {"start": 2436.12, "end": 2436.28, "word": " we", "probability": 0.921875}, {"start": 2436.28, "end": 2436.44, "word": " did", "probability": 0.5888671875}, {"start": 2436.44, "end": 2436.64, "word": " have", "probability": 0.93310546875}, {"start": 2436.64, "end": 2436.78, "word": " the", "probability": 0.81640625}, {"start": 2436.78, "end": 2437.02, "word": " source", "probability": 0.8173828125}, {"start": 2437.02, "end": 2437.44, "word": " code", "probability": 0.93017578125}, {"start": 2437.44, "end": 2437.82, "word": " of", "probability": 0.376708984375}, {"start": 2437.82, "end": 2437.92, "word": " the", "probability": 0.7353515625}, {"start": 2437.92, "end": 2438.24, "word": " library,", "probability": 0.78466796875}, {"start": 2438.56, "end": 2438.82, "word": " we", "probability": 0.90087890625}, {"start": 2438.82, "end": 2439.18, "word": " probably", "probability": 0.765625}, {"start": 2439.18, "end": 2439.44, "word": " should", "probability": 0.8759765625}, {"start": 2439.44, "end": 2439.68, "word": " not", "probability": 0.93798828125}, {"start": 2439.68, "end": 2440.02, "word": " change", "probability": 0.88916015625}, {"start": 2440.02, "end": 2440.18, "word": " the", "probability": 0.87841796875}, {"start": 2440.18, "end": 2440.48, "word": " library", "probability": 0.85107421875}, {"start": 2440.48, "end": 2440.74, "word": " for", "probability": 0.896484375}, {"start": 2440.74, "end": 2440.96, "word": " each", "probability": 0.939453125}, {"start": 2440.96, "end": 2441.22, "word": " domain", "probability": 0.9775390625}, {"start": 2441.22, "end": 2441.68, "word": "-specific", "probability": 0.6531982421875}, {"start": 2441.68, "end": 2442.32, "word": " application.", "probability": 0.892578125}, {"start": 2442.92, "end": 2443.4, "word": " Libraries", "probability": 0.547821044921875}, {"start": 2443.4, "end": 2443.58, "word": " are", "probability": 0.3125}, {"start": 2443.58, "end": 2443.9, "word": " usually", "probability": 0.56982421875}, {"start": 2443.9, "end": 2444.22, "word": " brought", "probability": 0.11962890625}, {"start": 2444.22, "end": 2444.32, "word": " from", "probability": 0.51806640625}, {"start": 2444.32, "end": 2444.52, "word": " outside", "probability": 0.58740234375}, {"start": 2444.52, "end": 2444.58, "word": " and", "probability": 0.42626953125}, {"start": 2444.58, "end": 2444.88, "word": " used", "probability": 0.79541015625}, {"start": 2444.88, "end": 2445.08, "word": " as", "probability": 0.654296875}, {"start": 2445.08, "end": 2445.34, "word": " they", "probability": 0.68212890625}, {"start": 2445.34, "end": 2445.48, "word": " are.", "probability": 0.9296875}, {"start": 2445.66, "end": 2445.76, "word": " They", "probability": 0.345458984375}, {"start": 2445.76, "end": 2445.78, "word": " don't", "probability": 0.6539306640625}, {"start": 2445.78, "end": 2446.0, "word": " try", "probability": 0.6611328125}, {"start": 2446.0, "end": 2446.04, "word": " to", "probability": 0.92431640625}, {"start": 2446.04, "end": 2446.3, "word": " change", "probability": 0.77978515625}, {"start": 2446.3, "end": 2446.46, "word": " it.", "probability": 0.255859375}, {"start": 2446.54, "end": 2446.66, "word": " Because", "probability": 0.50830078125}, {"start": 2446.66, "end": 2446.76, "word": " as", "probability": 0.53564453125}, {"start": 2446.76, "end": 2446.9, "word": " I", "probability": 0.63037109375}, {"start": 2446.9, "end": 2447.0, "word": " said,", "probability": 0.7890625}, {"start": 2447.1, "end": 2447.12, "word": " they", "probability": 0.66845703125}, {"start": 2447.12, "end": 2447.52, "word": " develop", "probability": 0.3427734375}, {"start": 2447.52, "end": 2447.66, "word": " and", "probability": 0.47509765625}, {"start": 2447.66, "end": 2447.84, "word": " make", "probability": 0.424560546875}, {"start": 2447.84, "end": 2448.48, "word": " updates", "probability": 0.8916015625}, {"start": 2448.48, "end": 2448.48, "word": " on", "probability": 0.48681640625}, {"start": 2448.48, "end": 2448.48, "word": " it.", "probability": 0.53759765625}, {"start": 2448.9, "end": 2449.12, "word": " Not", "probability": 0.351318359375}, {"start": 2449.12, "end": 2449.28, "word": " every", "probability": 0.5341796875}, {"start": 2449.28, "end": 2449.32, "word": " time", "probability": 0.7509765625}, {"start": 2449.32, "end": 2449.42, "word": " you", "probability": 0.78125}, {"start": 2449.42, "end": 2449.54, "word": " bring", "probability": 0.83203125}, {"start": 2449.54, "end": 2449.6, "word": " a", "probability": 0.94580078125}, {"start": 2449.6, "end": 2450.16, "word": " new", "probability": 0.912109375}, {"start": 2450.16, "end": 2450.16, "word": " version,", "probability": 0.88671875}, {"start": 2450.96, "end": 2451.08, "word": " you", "probability": 0.476806640625}, {"start": 2451.08, "end": 2451.2, "word": " go", "probability": 0.472412109375}, {"start": 2451.2, "end": 2451.3, "word": " and", "probability": 0.66064453125}, {"start": 2451.3, "end": 2451.6, "word": " change", "probability": 0.87158203125}, {"start": 2451.6, "end": 2452.46, "word": " it.", "probability": 0.8427734375}, {"start": 2454.94, "end": 2455.42, "word": " Because", "probability": 0.55322265625}, {"start": 2455.42, "end": 2455.64, "word": " this", "probability": 0.73095703125}, {"start": 2455.64, "end": 2455.78, "word": " is", "probability": 0.88671875}, {"start": 2455.78, "end": 2456.08, "word": " today's", "probability": 0.6533203125}, {"start": 2456.08, "end": 2456.52, "word": " diagram", "probability": 0.423095703125}, {"start": 2456.52, "end": 2457.56, "word": " of", "probability": 0.83154296875}, {"start": 2457.56, "end": 2458.3, "word": " the", "probability": 0.73486328125}, {"start": 2458.3, "end": 2459.0, "word": " adapter", "probability": 0.53662109375}, {"start": 2459.0, "end": 2459.42, "word": " pattern.", "probability": 0.84521484375}, {"start": 2459.46, "end": 2459.8, "word": " Let's", "probability": 0.82177734375}, {"start": 2459.8, "end": 2460.04, "word": " understand", "probability": 0.55224609375}, {"start": 2460.04, "end": 2460.22, "word": " it", "probability": 0.703125}, {"start": 2460.22, "end": 2460.3, "word": " and", "probability": 0.837890625}, {"start": 2460.3, "end": 2460.46, "word": " fall", "probability": 0.30419921875}, {"start": 2460.46, "end": 2460.78, "word": " on", "probability": 0.327392578125}, {"start": 2460.78, "end": 2461.44, "word": " the", "probability": 0.88623046875}, {"start": 2461.44, "end": 2461.68, "word": " example", "probability": 0.98046875}, {"start": 2461.68, "end": 2461.78, "word": " that", "probability": 0.52197265625}, {"start": 2461.78, "end": 2461.94, "word": " we", "probability": 0.9326171875}, {"start": 2461.94, "end": 2462.18, "word": " explained.", "probability": 0.381103515625}], "temperature": 1.0}, {"id": 104, "seek": 247998, "start": 2463.21, "end": 2479.99, "text": "Now my client is programmed to deal with a library called target and use a method called request Now let me give you a hint, bring me a new library, what is the name of it? Adaptee, what is the word adaptee in English? Air conditioning adapter", "tokens": [13267, 452, 6423, 307, 31092, 281, 2028, 365, 257, 6405, 1219, 3779, 293, 764, 257, 3170, 1219, 5308, 823, 718, 385, 976, 291, 257, 12075, 11, 1565, 385, 257, 777, 6405, 11, 437, 307, 264, 1315, 295, 309, 30, 1999, 569, 975, 68, 11, 437, 307, 264, 1349, 6231, 1653, 294, 3669, 30, 5774, 21901, 22860], "avg_logprob": -0.5893640267221552, "compression_ratio": 1.5477707006369428, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2463.21, "end": 2463.53, "word": "Now", "probability": 0.2159423828125}, {"start": 2463.53, "end": 2463.69, "word": " my", "probability": 0.19775390625}, {"start": 2463.69, "end": 2464.13, "word": " client", "probability": 0.900390625}, {"start": 2464.13, "end": 2464.93, "word": " is", "probability": 0.6572265625}, {"start": 2464.93, "end": 2465.29, "word": " programmed", "probability": 0.57958984375}, {"start": 2465.29, "end": 2465.53, "word": " to", "probability": 0.95068359375}, {"start": 2465.53, "end": 2465.79, "word": " deal", "probability": 0.2120361328125}, {"start": 2465.79, "end": 2465.99, "word": " with", "probability": 0.90087890625}, {"start": 2465.99, "end": 2466.07, "word": " a", "probability": 0.771484375}, {"start": 2466.07, "end": 2466.31, "word": " library", "probability": 0.638671875}, {"start": 2466.31, "end": 2466.65, "word": " called", "probability": 0.359375}, {"start": 2466.65, "end": 2467.81, "word": " target", "probability": 0.65869140625}, {"start": 2467.81, "end": 2467.99, "word": " and", "probability": 0.68505859375}, {"start": 2467.99, "end": 2468.23, "word": " use", "probability": 0.269775390625}, {"start": 2468.23, "end": 2468.37, "word": " a", "probability": 0.833984375}, {"start": 2468.37, "end": 2468.59, "word": " method", "probability": 0.935546875}, {"start": 2468.59, "end": 2468.97, "word": " called", "probability": 0.845703125}, {"start": 2468.97, "end": 2470.09, "word": " request", "probability": 0.93212890625}, {"start": 2470.09, "end": 2471.07, "word": " Now", "probability": 0.418212890625}, {"start": 2471.07, "end": 2471.29, "word": " let", "probability": 0.264892578125}, {"start": 2471.29, "end": 2471.43, "word": " me", "probability": 0.463134765625}, {"start": 2471.43, "end": 2471.43, "word": " give", "probability": 0.132568359375}, {"start": 2471.43, "end": 2471.43, "word": " you", "probability": 0.93798828125}, {"start": 2471.43, "end": 2471.83, "word": " a", "probability": 0.56640625}, {"start": 2471.83, "end": 2471.83, "word": " hint,", "probability": 0.541015625}, {"start": 2472.17, "end": 2472.33, "word": " bring", "probability": 0.0968017578125}, {"start": 2472.33, "end": 2472.53, "word": " me", "probability": 0.9189453125}, {"start": 2472.53, "end": 2472.63, "word": " a", "probability": 0.939453125}, {"start": 2472.63, "end": 2473.07, "word": " new", "probability": 0.8564453125}, {"start": 2473.07, "end": 2473.07, "word": " library,", "probability": 0.9326171875}, {"start": 2473.17, "end": 2473.27, "word": " what", "probability": 0.72509765625}, {"start": 2473.27, "end": 2473.33, "word": " is", "probability": 0.54248046875}, {"start": 2473.33, "end": 2473.53, "word": " the", "probability": 0.29833984375}, {"start": 2473.53, "end": 2473.53, "word": " name", "probability": 0.91357421875}, {"start": 2473.53, "end": 2474.91, "word": " of", "probability": 0.7978515625}, {"start": 2474.91, "end": 2474.91, "word": " it?", "probability": 0.80859375}, {"start": 2475.25, "end": 2475.71, "word": " Adaptee,", "probability": 0.57110595703125}, {"start": 2475.91, "end": 2476.01, "word": " what", "probability": 0.75}, {"start": 2476.01, "end": 2476.13, "word": " is", "probability": 0.74853515625}, {"start": 2476.13, "end": 2476.13, "word": " the", "probability": 0.41357421875}, {"start": 2476.13, "end": 2476.27, "word": " word", "probability": 0.448974609375}, {"start": 2476.27, "end": 2476.81, "word": " adaptee", "probability": 0.6104736328125}, {"start": 2476.81, "end": 2476.93, "word": " in", "probability": 0.904296875}, {"start": 2476.93, "end": 2477.33, "word": " English?", "probability": 0.94775390625}, {"start": 2479.05, "end": 2479.23, "word": " Air", "probability": 0.428466796875}, {"start": 2479.23, "end": 2479.99, "word": " conditioning", "probability": 0.2440185546875}, {"start": 2479.99, "end": 2479.99, "word": " adapter", "probability": 0.73486328125}], "temperature": 1.0}, {"id": 105, "seek": 249644, "start": 2495.04, "end": 2496.44, "text": "Visitor", "tokens": [53, 271, 3029], "avg_logprob": -0.7490234524011612, "compression_ratio": 0.4666666666666667, "no_speech_prob": 0.00015842914581298828, "words": [{"start": 2495.04, "end": 2496.44, "word": "Visitor", "probability": 0.6401570638020834}], "temperature": 1.0}, {"id": 106, "seek": 252548, "start": 2502.15, "end": 2525.49, "text": " Yes, Mozart, or MVT, Madouk, for example. Okay, so this is the new library, and the new library has a method called request, or it has a name called specific request. This is for whom? For this one, but this one takes a different input and returns a different output. Now, it wants to make the client use the adaptive", "tokens": [1079, 11, 42653, 11, 420, 17663, 51, 11, 5326, 263, 74, 11, 337, 1365, 13, 1033, 11, 370, 341, 307, 264, 777, 6405, 11, 293, 264, 777, 6405, 575, 257, 3170, 1219, 5308, 11, 420, 309, 575, 257, 1315, 1219, 2685, 5308, 13, 639, 307, 337, 7101, 30, 1171, 341, 472, 11, 457, 341, 472, 2516, 257, 819, 4846, 293, 11247, 257, 819, 5598, 13, 823, 11, 309, 2738, 281, 652, 264, 6423, 764, 264, 6231, 592, 68], "avg_logprob": -0.5617088456697101, "compression_ratio": 1.5979899497487438, "no_speech_prob": 4.827976226806641e-06, "words": [{"start": 2502.15, "end": 2502.63, "word": " Yes,", "probability": 0.052642822265625}, {"start": 2502.83, "end": 2503.07, "word": " Mozart,", "probability": 0.638671875}, {"start": 2503.25, "end": 2503.37, "word": " or", "probability": 0.80078125}, {"start": 2503.37, "end": 2504.01, "word": " MVT,", "probability": 0.51226806640625}, {"start": 2504.71, "end": 2505.31, "word": " Madouk,", "probability": 0.35028076171875}, {"start": 2505.47, "end": 2505.65, "word": " for", "probability": 0.7744140625}, {"start": 2505.65, "end": 2505.83, "word": " example.", "probability": 0.8828125}, {"start": 2506.23, "end": 2506.71, "word": " Okay,", "probability": 0.2493896484375}, {"start": 2507.67, "end": 2508.23, "word": " so", "probability": 0.48681640625}, {"start": 2508.23, "end": 2508.49, "word": " this", "probability": 0.84130859375}, {"start": 2508.49, "end": 2508.55, "word": " is", "probability": 0.92529296875}, {"start": 2508.55, "end": 2508.59, "word": " the", "probability": 0.8701171875}, {"start": 2508.59, "end": 2509.19, "word": " new", "probability": 0.89794921875}, {"start": 2509.19, "end": 2509.19, "word": " library,", "probability": 0.75830078125}, {"start": 2509.35, "end": 2509.43, "word": " and", "probability": 0.69677734375}, {"start": 2509.43, "end": 2509.51, "word": " the", "probability": 0.4130859375}, {"start": 2509.51, "end": 2509.61, "word": " new", "probability": 0.82958984375}, {"start": 2509.61, "end": 2510.09, "word": " library", "probability": 0.92626953125}, {"start": 2510.09, "end": 2510.35, "word": " has", "probability": 0.82275390625}, {"start": 2510.35, "end": 2510.49, "word": " a", "probability": 0.70654296875}, {"start": 2510.49, "end": 2510.65, "word": " method", "probability": 0.970703125}, {"start": 2510.65, "end": 2510.93, "word": " called", "probability": 0.8017578125}, {"start": 2510.93, "end": 2511.35, "word": " request,", "probability": 0.54150390625}, {"start": 2512.75, "end": 2512.89, "word": " or", "probability": 0.85107421875}, {"start": 2512.89, "end": 2512.99, "word": " it", "probability": 0.53271484375}, {"start": 2512.99, "end": 2513.09, "word": " has", "probability": 0.9091796875}, {"start": 2513.09, "end": 2513.19, "word": " a", "probability": 0.8408203125}, {"start": 2513.19, "end": 2513.35, "word": " name", "probability": 0.7646484375}, {"start": 2513.35, "end": 2513.61, "word": " called", "probability": 0.4150390625}, {"start": 2513.61, "end": 2514.03, "word": " specific", "probability": 0.763671875}, {"start": 2514.03, "end": 2515.51, "word": " request.", "probability": 0.90478515625}, {"start": 2515.67, "end": 2516.03, "word": " This", "probability": 0.41796875}, {"start": 2516.03, "end": 2516.11, "word": " is", "probability": 0.60546875}, {"start": 2516.11, "end": 2516.19, "word": " for", "probability": 0.152587890625}, {"start": 2516.19, "end": 2516.47, "word": " whom?", "probability": 0.309814453125}, {"start": 2517.51, "end": 2517.99, "word": " For", "probability": 0.740234375}, {"start": 2517.99, "end": 2518.19, "word": " this", "probability": 0.8076171875}, {"start": 2518.19, "end": 2518.19, "word": " one,", "probability": 0.5078125}, {"start": 2518.21, "end": 2518.35, "word": " but", "probability": 0.87255859375}, {"start": 2518.35, "end": 2518.51, "word": " this", "probability": 0.759765625}, {"start": 2518.51, "end": 2518.57, "word": " one", "probability": 0.6162109375}, {"start": 2518.57, "end": 2518.81, "word": " takes", "probability": 0.65625}, {"start": 2518.81, "end": 2518.87, "word": " a", "probability": 0.583984375}, {"start": 2518.87, "end": 2518.87, "word": " different", "probability": 0.87890625}, {"start": 2518.87, "end": 2519.41, "word": " input", "probability": 0.93212890625}, {"start": 2519.41, "end": 2519.65, "word": " and", "probability": 0.78515625}, {"start": 2519.65, "end": 2519.95, "word": " returns", "probability": 0.619140625}, {"start": 2519.95, "end": 2520.31, "word": " a", "probability": 0.9365234375}, {"start": 2520.31, "end": 2520.31, "word": " different", "probability": 0.88720703125}, {"start": 2520.31, "end": 2521.65, "word": " output.", "probability": 0.94580078125}, {"start": 2522.17, "end": 2522.41, "word": " Now,", "probability": 0.2232666015625}, {"start": 2522.45, "end": 2522.49, "word": " it", "probability": 0.498291015625}, {"start": 2522.49, "end": 2522.65, "word": " wants", "probability": 0.488525390625}, {"start": 2522.65, "end": 2522.67, "word": " to", "probability": 0.82861328125}, {"start": 2522.67, "end": 2522.91, "word": " make", "probability": 0.5771484375}, {"start": 2522.91, "end": 2523.03, "word": " the", "probability": 0.89404296875}, {"start": 2523.03, "end": 2523.51, "word": " client", "probability": 0.9267578125}, {"start": 2523.51, "end": 2524.69, "word": " use", "probability": 0.7822265625}, {"start": 2524.69, "end": 2524.85, "word": " the", "probability": 0.57470703125}, {"start": 2524.85, "end": 2525.49, "word": " adaptive", "probability": 0.5472819010416666}], "temperature": 1.0}, {"id": 107, "seek": 254909, "start": 2526.39, "end": 2549.09, "text": "without changing anything on the client I went and made a new class from the same type of target which is extent target and from inside it I use the adepti this is related to association and all I have to do is when I create the client instead of passing him a target I pass him an object from whom?", "tokens": [11820, 346, 4473, 1340, 322, 264, 6423, 286, 1437, 293, 1027, 257, 777, 1508, 490, 264, 912, 2010, 295, 3779, 597, 307, 8396, 3779, 293, 490, 1854, 309, 286, 764, 264, 614, 5250, 72, 341, 307, 4077, 281, 14598, 293, 439, 286, 362, 281, 360, 307, 562, 286, 1884, 264, 6423, 2602, 295, 8437, 796, 257, 3779, 286, 1320, 796, 364, 2657, 490, 7101, 30], "avg_logprob": -0.4801136481039452, "compression_ratio": 1.6611111111111112, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 2526.39, "end": 2526.79, "word": "without", "probability": 0.608642578125}, {"start": 2526.79, "end": 2527.13, "word": " changing", "probability": 0.7626953125}, {"start": 2527.13, "end": 2527.51, "word": " anything", "probability": 0.75}, {"start": 2527.51, "end": 2527.75, "word": " on", "probability": 0.460205078125}, {"start": 2527.75, "end": 2528.49, "word": " the", "probability": 0.73828125}, {"start": 2528.49, "end": 2528.77, "word": " client", "probability": 0.921875}, {"start": 2528.77, "end": 2529.25, "word": " I", "probability": 0.468017578125}, {"start": 2529.25, "end": 2529.37, "word": " went", "probability": 0.423095703125}, {"start": 2529.37, "end": 2529.49, "word": " and", "probability": 0.77978515625}, {"start": 2529.49, "end": 2529.65, "word": " made", "probability": 0.32861328125}, {"start": 2529.65, "end": 2529.79, "word": " a", "probability": 0.95166015625}, {"start": 2529.79, "end": 2529.79, "word": " new", "probability": 0.89599609375}, {"start": 2529.79, "end": 2530.47, "word": " class", "probability": 0.966796875}, {"start": 2530.47, "end": 2531.61, "word": " from", "probability": 0.252685546875}, {"start": 2531.61, "end": 2532.33, "word": " the", "probability": 0.86376953125}, {"start": 2532.33, "end": 2532.47, "word": " same", "probability": 0.8564453125}, {"start": 2532.47, "end": 2532.73, "word": " type", "probability": 0.32421875}, {"start": 2532.73, "end": 2532.89, "word": " of", "probability": 0.9443359375}, {"start": 2532.89, "end": 2533.29, "word": " target", "probability": 0.9453125}, {"start": 2533.29, "end": 2534.07, "word": " which", "probability": 0.1995849609375}, {"start": 2534.07, "end": 2534.25, "word": " is", "probability": 0.83447265625}, {"start": 2534.25, "end": 2534.71, "word": " extent", "probability": 0.322021484375}, {"start": 2534.71, "end": 2535.51, "word": " target", "probability": 0.912109375}, {"start": 2535.51, "end": 2536.45, "word": " and", "probability": 0.7900390625}, {"start": 2536.45, "end": 2536.55, "word": " from", "probability": 0.6640625}, {"start": 2536.55, "end": 2536.89, "word": " inside", "probability": 0.41552734375}, {"start": 2536.89, "end": 2537.61, "word": " it", "probability": 0.39599609375}, {"start": 2537.61, "end": 2538.21, "word": " I", "probability": 0.75927734375}, {"start": 2538.21, "end": 2538.53, "word": " use", "probability": 0.51025390625}, {"start": 2538.53, "end": 2538.65, "word": " the", "probability": 0.43310546875}, {"start": 2538.65, "end": 2539.05, "word": " adepti", "probability": 0.6024983723958334}, {"start": 2539.05, "end": 2539.23, "word": " this", "probability": 0.27978515625}, {"start": 2539.23, "end": 2539.29, "word": " is", "probability": 0.88134765625}, {"start": 2539.29, "end": 2539.51, "word": " related", "probability": 0.275390625}, {"start": 2539.51, "end": 2539.71, "word": " to", "probability": 0.96484375}, {"start": 2539.71, "end": 2540.89, "word": " association", "probability": 0.66845703125}, {"start": 2540.89, "end": 2543.27, "word": " and", "probability": 0.7568359375}, {"start": 2543.27, "end": 2543.49, "word": " all", "probability": 0.7978515625}, {"start": 2543.49, "end": 2543.65, "word": " I", "probability": 0.76416015625}, {"start": 2543.65, "end": 2543.73, "word": " have", "probability": 0.4208984375}, {"start": 2543.73, "end": 2543.79, "word": " to", "probability": 0.96435546875}, {"start": 2543.79, "end": 2544.09, "word": " do", "probability": 0.962890625}, {"start": 2544.09, "end": 2544.73, "word": " is", "probability": 0.70556640625}, {"start": 2544.73, "end": 2544.89, "word": " when", "probability": 0.470458984375}, {"start": 2544.89, "end": 2545.03, "word": " I", "probability": 0.9677734375}, {"start": 2545.03, "end": 2545.23, "word": " create", "probability": 0.39208984375}, {"start": 2545.23, "end": 2545.39, "word": " the", "probability": 0.482177734375}, {"start": 2545.39, "end": 2545.69, "word": " client", "probability": 0.8671875}, {"start": 2545.69, "end": 2545.95, "word": " instead", "probability": 0.54931640625}, {"start": 2545.95, "end": 2546.07, "word": " of", "probability": 0.966796875}, {"start": 2546.07, "end": 2546.29, "word": " passing", "probability": 0.36083984375}, {"start": 2546.29, "end": 2546.47, "word": " him", "probability": 0.5556640625}, {"start": 2546.47, "end": 2546.49, "word": " a", "probability": 0.5068359375}, {"start": 2546.49, "end": 2546.89, "word": " target", "probability": 0.95654296875}, {"start": 2546.89, "end": 2548.11, "word": " I", "probability": 0.7021484375}, {"start": 2548.11, "end": 2548.31, "word": " pass", "probability": 0.7578125}, {"start": 2548.31, "end": 2548.49, "word": " him", "probability": 0.80908203125}, {"start": 2548.49, "end": 2548.51, "word": " an", "probability": 0.73193359375}, {"start": 2548.51, "end": 2548.75, "word": " object", "probability": 0.9892578125}, {"start": 2548.75, "end": 2548.89, "word": " from", "probability": 0.7626953125}, {"start": 2548.89, "end": 2549.09, "word": " whom?", "probability": 0.708984375}], "temperature": 1.0}, {"id": 108, "seek": 257637, "start": 2549.79, "end": 2576.37, "text": "from the adapter notice here that there is inside the request I made a list that goes to the adaptee and say specific request as I exactly through the array sorter method sort I called the sort that is in the list sorter after I made a list for the input and output after it prepares for the return so this is the shape of the adapter where it is here", "tokens": [20579, 264, 22860, 3449, 510, 300, 456, 307, 1854, 264, 5308, 286, 1027, 257, 1329, 300, 1709, 281, 264, 6231, 1653, 293, 584, 2685, 5308, 382, 286, 2293, 807, 264, 10225, 262, 6122, 3170, 1333, 286, 1219, 264, 1333, 300, 307, 294, 264, 1329, 262, 6122, 934, 286, 1027, 257, 1329, 337, 264, 4846, 293, 5598, 934, 309, 39418, 337, 264, 2736, 370, 341, 307, 264, 3909, 295, 264, 22860, 689, 309, 307, 510], "avg_logprob": -0.6837500206629435, "compression_ratio": 1.9180327868852458, "no_speech_prob": 2.8014183044433594e-06, "words": [{"start": 2549.79, "end": 2550.05, "word": "from", "probability": 0.129638671875}, {"start": 2550.05, "end": 2550.15, "word": " the", "probability": 0.6611328125}, {"start": 2550.15, "end": 2550.51, "word": " adapter", "probability": 0.771484375}, {"start": 2550.51, "end": 2551.61, "word": " notice", "probability": 0.12347412109375}, {"start": 2551.61, "end": 2551.93, "word": " here", "probability": 0.533203125}, {"start": 2551.93, "end": 2552.19, "word": " that", "probability": 0.625}, {"start": 2552.19, "end": 2552.39, "word": " there", "probability": 0.4091796875}, {"start": 2552.39, "end": 2552.49, "word": " is", "probability": 0.66015625}, {"start": 2552.49, "end": 2552.73, "word": " inside", "probability": 0.1607666015625}, {"start": 2552.73, "end": 2553.47, "word": " the", "probability": 0.63623046875}, {"start": 2553.47, "end": 2553.95, "word": " request", "probability": 0.8408203125}, {"start": 2553.95, "end": 2554.65, "word": " I", "probability": 0.501953125}, {"start": 2554.65, "end": 2554.83, "word": " made", "probability": 0.56201171875}, {"start": 2554.83, "end": 2555.01, "word": " a", "probability": 0.80078125}, {"start": 2555.01, "end": 2555.17, "word": " list", "probability": 0.1834716796875}, {"start": 2555.17, "end": 2555.45, "word": " that", "probability": 0.42578125}, {"start": 2555.45, "end": 2556.15, "word": " goes", "probability": 0.427490234375}, {"start": 2556.15, "end": 2556.79, "word": " to", "probability": 0.6015625}, {"start": 2556.79, "end": 2556.89, "word": " the", "probability": 0.54931640625}, {"start": 2556.89, "end": 2557.41, "word": " adaptee", "probability": 0.591796875}, {"start": 2557.41, "end": 2557.55, "word": " and", "probability": 0.7783203125}, {"start": 2557.55, "end": 2557.71, "word": " say", "probability": 0.12017822265625}, {"start": 2557.71, "end": 2558.45, "word": " specific", "probability": 0.6044921875}, {"start": 2558.45, "end": 2559.85, "word": " request", "probability": 0.76171875}, {"start": 2559.85, "end": 2560.01, "word": " as", "probability": 0.234130859375}, {"start": 2560.01, "end": 2560.25, "word": " I", "probability": 0.76025390625}, {"start": 2560.25, "end": 2560.65, "word": " exactly", "probability": 0.366943359375}, {"start": 2560.65, "end": 2560.93, "word": " through", "probability": 0.673828125}, {"start": 2560.93, "end": 2561.25, "word": " the", "probability": 0.67724609375}, {"start": 2561.25, "end": 2561.49, "word": " array", "probability": 0.8330078125}, {"start": 2561.49, "end": 2561.89, "word": " sorter", "probability": 0.6968994140625}, {"start": 2561.89, "end": 2563.11, "word": " method", "probability": 0.634765625}, {"start": 2563.11, "end": 2563.53, "word": " sort", "probability": 0.79638671875}, {"start": 2563.53, "end": 2563.65, "word": " I", "probability": 0.51904296875}, {"start": 2563.65, "end": 2563.87, "word": " called", "probability": 0.1104736328125}, {"start": 2563.87, "end": 2564.49, "word": " the", "probability": 0.80908203125}, {"start": 2564.49, "end": 2564.75, "word": " sort", "probability": 0.38427734375}, {"start": 2564.75, "end": 2564.85, "word": " that", "probability": 0.3818359375}, {"start": 2564.85, "end": 2564.95, "word": " is", "probability": 0.509765625}, {"start": 2564.95, "end": 2566.21, "word": " in", "probability": 0.357421875}, {"start": 2566.21, "end": 2566.39, "word": " the", "probability": 0.81494140625}, {"start": 2566.39, "end": 2566.57, "word": " list", "probability": 0.8984375}, {"start": 2566.57, "end": 2567.49, "word": " sorter", "probability": 0.759033203125}, {"start": 2567.49, "end": 2568.09, "word": " after", "probability": 0.60791015625}, {"start": 2568.09, "end": 2568.43, "word": " I", "probability": 0.71630859375}, {"start": 2568.43, "end": 2568.43, "word": " made", "probability": 0.74658203125}, {"start": 2568.43, "end": 2568.77, "word": " a", "probability": 0.84375}, {"start": 2568.77, "end": 2569.09, "word": " list", "probability": 0.87646484375}, {"start": 2569.09, "end": 2569.83, "word": " for", "probability": 0.6943359375}, {"start": 2569.83, "end": 2569.91, "word": " the", "probability": 0.3271484375}, {"start": 2569.91, "end": 2570.15, "word": " input", "probability": 0.89111328125}, {"start": 2570.15, "end": 2570.39, "word": " and", "probability": 0.9189453125}, {"start": 2570.39, "end": 2570.79, "word": " output", "probability": 0.80322265625}, {"start": 2570.79, "end": 2571.05, "word": " after", "probability": 0.515625}, {"start": 2571.05, "end": 2571.23, "word": " it", "probability": 0.65966796875}, {"start": 2571.23, "end": 2571.41, "word": " prepares", "probability": 0.329345703125}, {"start": 2571.41, "end": 2571.59, "word": " for", "probability": 0.7421875}, {"start": 2571.59, "end": 2571.65, "word": " the", "probability": 0.60009765625}, {"start": 2571.65, "end": 2572.03, "word": " return", "probability": 0.9287109375}, {"start": 2572.03, "end": 2573.51, "word": " so", "probability": 0.16943359375}, {"start": 2573.51, "end": 2573.67, "word": " this", "probability": 0.56396484375}, {"start": 2573.67, "end": 2573.73, "word": " is", "probability": 0.515625}, {"start": 2573.73, "end": 2573.99, "word": " the", "probability": 0.401123046875}, {"start": 2573.99, "end": 2573.99, "word": " shape", "probability": 0.344482421875}, {"start": 2573.99, "end": 2574.07, "word": " of", "probability": 0.30908203125}, {"start": 2574.07, "end": 2575.11, "word": " the", "probability": 0.4443359375}, {"start": 2575.11, "end": 2575.49, "word": " adapter", "probability": 0.728515625}, {"start": 2575.49, "end": 2575.77, "word": " where", "probability": 0.1741943359375}, {"start": 2575.77, "end": 2575.99, "word": " it", "probability": 0.72998046875}, {"start": 2575.99, "end": 2576.27, "word": " is", "probability": 0.849609375}, {"start": 2576.27, "end": 2576.37, "word": " here", "probability": 0.243408203125}], "temperature": 1.0}, {"id": 109, "seek": 260417, "start": 2577.4, "end": 2604.18, "text": " It takes the old class and uses the new class from inside Because this is another example that I found on the internet using the adapter Because this is a drawing editor with user interface components, okay? So now I have an external library called TextView This is in a library outside but I want to use it from the drawing editor that I have", "tokens": [467, 2516, 264, 1331, 1508, 293, 4960, 264, 777, 1508, 490, 1854, 1436, 341, 307, 1071, 1365, 300, 286, 1352, 322, 264, 4705, 1228, 264, 22860, 1436, 341, 307, 257, 6316, 9839, 365, 4195, 9226, 6677, 11, 1392, 30, 407, 586, 286, 362, 364, 8320, 6405, 1219, 18643, 30203, 639, 307, 294, 257, 6405, 2380, 457, 286, 528, 281, 764, 309, 490, 264, 6316, 9839, 300, 286, 362], "avg_logprob": -0.4678442011708799, "compression_ratio": 1.702970297029703, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 2577.4, "end": 2577.64, "word": " It", "probability": 0.193115234375}, {"start": 2577.64, "end": 2577.88, "word": " takes", "probability": 0.529296875}, {"start": 2577.88, "end": 2578.2, "word": " the", "probability": 0.404296875}, {"start": 2578.2, "end": 2578.2, "word": " old", "probability": 0.397216796875}, {"start": 2578.2, "end": 2578.6, "word": " class", "probability": 0.880859375}, {"start": 2578.6, "end": 2579.26, "word": " and", "probability": 0.55859375}, {"start": 2579.26, "end": 2580.0, "word": " uses", "probability": 0.455078125}, {"start": 2580.0, "end": 2580.34, "word": " the", "probability": 0.59130859375}, {"start": 2580.34, "end": 2581.4, "word": " new", "probability": 0.88525390625}, {"start": 2581.4, "end": 2581.44, "word": " class", "probability": 0.484130859375}, {"start": 2581.44, "end": 2581.44, "word": " from", "probability": 0.307373046875}, {"start": 2581.44, "end": 2581.44, "word": " inside", "probability": 0.4541015625}, {"start": 2581.44, "end": 2584.5, "word": " Because", "probability": 0.2081298828125}, {"start": 2584.5, "end": 2584.72, "word": " this", "probability": 0.82958984375}, {"start": 2584.72, "end": 2584.8, "word": " is", "probability": 0.89453125}, {"start": 2584.8, "end": 2585.28, "word": " another", "probability": 0.85986328125}, {"start": 2585.28, "end": 2585.28, "word": " example", "probability": 0.95703125}, {"start": 2585.28, "end": 2585.98, "word": " that", "probability": 0.2017822265625}, {"start": 2585.98, "end": 2586.62, "word": " I", "probability": 0.73876953125}, {"start": 2586.62, "end": 2587.02, "word": " found", "probability": 0.77294921875}, {"start": 2587.02, "end": 2587.42, "word": " on", "probability": 0.7021484375}, {"start": 2587.42, "end": 2587.52, "word": " the", "probability": 0.81689453125}, {"start": 2587.52, "end": 2587.92, "word": " internet", "probability": 0.75634765625}, {"start": 2587.92, "end": 2588.44, "word": " using", "probability": 0.1737060546875}, {"start": 2588.44, "end": 2588.96, "word": " the", "probability": 0.55419921875}, {"start": 2588.96, "end": 2589.4, "word": " adapter", "probability": 0.689453125}, {"start": 2589.4, "end": 2590.3, "word": " Because", "probability": 0.66455078125}, {"start": 2590.3, "end": 2590.54, "word": " this", "probability": 0.88916015625}, {"start": 2590.54, "end": 2590.66, "word": " is", "probability": 0.92529296875}, {"start": 2590.66, "end": 2591.06, "word": " a", "probability": 0.720703125}, {"start": 2591.06, "end": 2591.4, "word": " drawing", "probability": 0.86962890625}, {"start": 2591.4, "end": 2591.82, "word": " editor", "probability": 0.90087890625}, {"start": 2591.82, "end": 2593.1, "word": " with", "probability": 0.34521484375}, {"start": 2593.1, "end": 2593.34, "word": " user", "probability": 0.72607421875}, {"start": 2593.34, "end": 2593.82, "word": " interface", "probability": 0.89990234375}, {"start": 2593.82, "end": 2594.52, "word": " components,", "probability": 0.8798828125}, {"start": 2594.52, "end": 2595.14, "word": " okay?", "probability": 0.40478515625}, {"start": 2595.96, "end": 2596.56, "word": " So", "probability": 0.60009765625}, {"start": 2596.56, "end": 2596.76, "word": " now", "probability": 0.703125}, {"start": 2596.76, "end": 2597.04, "word": " I", "probability": 0.87841796875}, {"start": 2597.04, "end": 2597.06, "word": " have", "probability": 0.9375}, {"start": 2597.06, "end": 2597.44, "word": " an", "probability": 0.8134765625}, {"start": 2597.44, "end": 2597.72, "word": " external", "probability": 0.5634765625}, {"start": 2597.72, "end": 2597.72, "word": " library", "probability": 0.8916015625}, {"start": 2597.72, "end": 2598.02, "word": " called", "probability": 0.6845703125}, {"start": 2598.02, "end": 2598.62, "word": " TextView", "probability": 0.810302734375}, {"start": 2598.62, "end": 2600.02, "word": " This", "probability": 0.6005859375}, {"start": 2600.02, "end": 2600.08, "word": " is", "probability": 0.60595703125}, {"start": 2600.08, "end": 2600.38, "word": " in", "probability": 0.1448974609375}, {"start": 2600.38, "end": 2600.52, "word": " a", "probability": 0.5830078125}, {"start": 2600.52, "end": 2600.82, "word": " library", "probability": 0.72998046875}, {"start": 2600.82, "end": 2601.2, "word": " outside", "probability": 0.7314453125}, {"start": 2601.2, "end": 2601.48, "word": " but", "probability": 0.494140625}, {"start": 2601.48, "end": 2601.64, "word": " I", "probability": 0.89892578125}, {"start": 2601.64, "end": 2601.7, "word": " want", "probability": 0.744140625}, {"start": 2601.7, "end": 2601.78, "word": " to", "probability": 0.96337890625}, {"start": 2601.78, "end": 2602.06, "word": " use", "probability": 0.89111328125}, {"start": 2602.06, "end": 2602.22, "word": " it", "probability": 0.8857421875}, {"start": 2602.22, "end": 2602.28, "word": " from", "probability": 0.7509765625}, {"start": 2602.28, "end": 2602.4, "word": " the", "probability": 0.7158203125}, {"start": 2602.4, "end": 2602.64, "word": " drawing", "probability": 0.81884765625}, {"start": 2602.64, "end": 2603.08, "word": " editor", "probability": 0.8857421875}, {"start": 2603.08, "end": 2603.74, "word": " that", "probability": 0.5673828125}, {"start": 2603.74, "end": 2603.84, "word": " I", "probability": 0.78564453125}, {"start": 2603.84, "end": 2604.18, "word": " have", "probability": 0.9072265625}], "temperature": 1.0}, {"id": 110, "seek": 262956, "start": 2606.38, "end": 2629.56, "text": " Now, the drawing editor is dealing with an item called Shape Shape has methods like bounding box and create manipulator I don't know what these methods are I have a new class TextView and I want to use it instead of Shape So what is going to do here is create a class called TextShape which is like the adapter", "tokens": [823, 11, 264, 6316, 9839, 307, 6260, 365, 364, 3174, 1219, 49148, 49148, 575, 7150, 411, 5472, 278, 2424, 293, 1884, 9258, 16381, 286, 500, 380, 458, 437, 613, 7150, 366, 286, 362, 257, 777, 1508, 18643, 30203, 293, 286, 528, 281, 764, 309, 2602, 295, 49148, 407, 437, 307, 516, 281, 360, 510, 307, 1884, 257, 1508, 1219, 18643, 23429, 494, 597, 307, 411, 264, 22860], "avg_logprob": -0.5243565948570476, "compression_ratio": 1.6030927835051547, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2606.38, "end": 2607.02, "word": " Now,", "probability": 0.250732421875}, {"start": 2607.02, "end": 2607.66, "word": " the", "probability": 0.654296875}, {"start": 2607.66, "end": 2607.94, "word": " drawing", "probability": 0.787109375}, {"start": 2607.94, "end": 2608.26, "word": " editor", "probability": 0.93603515625}, {"start": 2608.26, "end": 2608.42, "word": " is", "probability": 0.3515625}, {"start": 2608.42, "end": 2608.66, "word": " dealing", "probability": 0.66748046875}, {"start": 2608.66, "end": 2609.22, "word": " with", "probability": 0.8984375}, {"start": 2609.22, "end": 2609.76, "word": " an", "probability": 0.51953125}, {"start": 2609.76, "end": 2610.08, "word": " item", "probability": 0.74609375}, {"start": 2610.08, "end": 2610.42, "word": " called", "probability": 0.72119140625}, {"start": 2610.42, "end": 2611.1, "word": " Shape", "probability": 0.2379150390625}, {"start": 2611.1, "end": 2613.5, "word": " Shape", "probability": 0.375732421875}, {"start": 2613.5, "end": 2613.88, "word": " has", "probability": 0.452392578125}, {"start": 2613.88, "end": 2615.12, "word": " methods", "probability": 0.4404296875}, {"start": 2615.12, "end": 2615.24, "word": " like", "probability": 0.322021484375}, {"start": 2615.24, "end": 2615.66, "word": " bounding", "probability": 0.821533203125}, {"start": 2615.66, "end": 2615.96, "word": " box", "probability": 0.5390625}, {"start": 2615.96, "end": 2616.16, "word": " and", "probability": 0.771484375}, {"start": 2616.16, "end": 2616.64, "word": " create", "probability": 0.84228515625}, {"start": 2616.64, "end": 2617.6, "word": " manipulator", "probability": 0.89599609375}, {"start": 2617.6, "end": 2617.76, "word": " I", "probability": 0.460205078125}, {"start": 2617.76, "end": 2617.78, "word": " don't", "probability": 0.802734375}, {"start": 2617.78, "end": 2617.96, "word": " know", "probability": 0.85205078125}, {"start": 2617.96, "end": 2618.16, "word": " what", "probability": 0.814453125}, {"start": 2618.16, "end": 2618.52, "word": " these", "probability": 0.2578125}, {"start": 2618.52, "end": 2619.26, "word": " methods", "probability": 0.923828125}, {"start": 2619.26, "end": 2619.26, "word": " are", "probability": 0.477294921875}, {"start": 2619.26, "end": 2620.08, "word": " I", "probability": 0.228271484375}, {"start": 2620.08, "end": 2620.52, "word": " have", "probability": 0.86767578125}, {"start": 2620.52, "end": 2620.62, "word": " a", "probability": 0.96044921875}, {"start": 2620.62, "end": 2620.62, "word": " new", "probability": 0.888671875}, {"start": 2620.62, "end": 2620.92, "word": " class", "probability": 0.931640625}, {"start": 2620.92, "end": 2621.7, "word": " TextView", "probability": 0.82958984375}, {"start": 2621.7, "end": 2621.82, "word": " and", "probability": 0.27099609375}, {"start": 2621.82, "end": 2621.84, "word": " I", "probability": 0.9658203125}, {"start": 2621.84, "end": 2621.96, "word": " want", "probability": 0.7900390625}, {"start": 2621.96, "end": 2622.16, "word": " to", "probability": 0.51318359375}, {"start": 2622.16, "end": 2622.5, "word": " use", "probability": 0.66845703125}, {"start": 2622.5, "end": 2623.0, "word": " it", "probability": 0.89990234375}, {"start": 2623.0, "end": 2623.68, "word": " instead", "probability": 0.625}, {"start": 2623.68, "end": 2623.84, "word": " of", "probability": 0.96875}, {"start": 2623.84, "end": 2624.54, "word": " Shape", "probability": 0.479248046875}, {"start": 2624.54, "end": 2625.48, "word": " So", "probability": 0.28857421875}, {"start": 2625.48, "end": 2625.62, "word": " what", "probability": 0.44921875}, {"start": 2625.62, "end": 2625.66, "word": " is", "probability": 0.1964111328125}, {"start": 2625.66, "end": 2625.66, "word": " going", "probability": 0.35791015625}, {"start": 2625.66, "end": 2625.78, "word": " to", "probability": 0.9345703125}, {"start": 2625.78, "end": 2625.96, "word": " do", "probability": 0.5654296875}, {"start": 2625.96, "end": 2626.26, "word": " here", "probability": 0.724609375}, {"start": 2626.26, "end": 2626.42, "word": " is", "probability": 0.55419921875}, {"start": 2626.42, "end": 2627.02, "word": " create", "probability": 0.251708984375}, {"start": 2627.02, "end": 2627.02, "word": " a", "probability": 0.92919921875}, {"start": 2627.02, "end": 2627.28, "word": " class", "probability": 0.65185546875}, {"start": 2627.28, "end": 2627.46, "word": " called", "probability": 0.497314453125}, {"start": 2627.46, "end": 2628.04, "word": " TextShape", "probability": 0.80224609375}, {"start": 2628.04, "end": 2628.3, "word": " which", "probability": 0.188720703125}, {"start": 2628.3, "end": 2628.38, "word": " is", "probability": 0.74365234375}, {"start": 2628.38, "end": 2628.48, "word": " like", "probability": 0.5712890625}, {"start": 2628.48, "end": 2629.22, "word": " the", "probability": 0.440185546875}, {"start": 2629.22, "end": 2629.56, "word": " adapter", "probability": 0.765625}], "temperature": 1.0}, {"id": 111, "seek": 265641, "start": 2631.07, "end": 2656.41, "text": "Extended from what? From shape, it took the same type of shape And instead of taking the same type of shape, it made an override for what? For the method boundingBox and createManipulate But inside it, it used an object from what? From TextView So it took the old type And inside it, it used an object from the new type And of course, when the boundingBox takes over", "tokens": [36, 734, 3502, 490, 437, 30, 3358, 3909, 11, 309, 1890, 264, 912, 2010, 295, 3909, 400, 2602, 295, 1940, 264, 912, 2010, 295, 3909, 11, 309, 1027, 364, 42321, 337, 437, 30, 1171, 264, 3170, 5472, 278, 34980, 293, 1884, 6652, 647, 5256, 583, 1854, 309, 11, 309, 1143, 364, 2657, 490, 437, 30, 3358, 18643, 30203, 407, 309, 1890, 264, 1331, 2010, 400, 1854, 309, 11, 309, 1143, 364, 2657, 490, 264, 777, 2010, 400, 295, 1164, 11, 562, 264, 5472, 278, 34980, 2516, 670], "avg_logprob": -0.4854403392157771, "compression_ratio": 1.8673469387755102, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2631.07, "end": 2631.55, "word": "Extended", "probability": 0.576171875}, {"start": 2631.55, "end": 2631.69, "word": " from", "probability": 0.654296875}, {"start": 2631.69, "end": 2631.89, "word": " what?", "probability": 0.199462890625}, {"start": 2632.39, "end": 2632.87, "word": " From", "probability": 0.378662109375}, {"start": 2632.87, "end": 2633.09, "word": " shape,", "probability": 0.60009765625}, {"start": 2633.17, "end": 2633.31, "word": " it", "probability": 0.33056640625}, {"start": 2633.31, "end": 2633.61, "word": " took", "probability": 0.56494140625}, {"start": 2633.61, "end": 2633.83, "word": " the", "probability": 0.67333984375}, {"start": 2633.83, "end": 2633.97, "word": " same", "probability": 0.8232421875}, {"start": 2633.97, "end": 2634.25, "word": " type", "probability": 0.317138671875}, {"start": 2634.25, "end": 2634.73, "word": " of", "probability": 0.5361328125}, {"start": 2634.73, "end": 2635.49, "word": " shape", "probability": 0.87841796875}, {"start": 2635.49, "end": 2636.63, "word": " And", "probability": 0.2880859375}, {"start": 2636.63, "end": 2637.03, "word": " instead", "probability": 0.63525390625}, {"start": 2637.03, "end": 2637.11, "word": " of", "probability": 0.9150390625}, {"start": 2637.11, "end": 2637.35, "word": " taking", "probability": 0.74462890625}, {"start": 2637.35, "end": 2637.47, "word": " the", "probability": 0.880859375}, {"start": 2637.47, "end": 2637.61, "word": " same", "probability": 0.88330078125}, {"start": 2637.61, "end": 2637.75, "word": " type", "probability": 0.78369140625}, {"start": 2637.75, "end": 2637.91, "word": " of", "probability": 0.28515625}, {"start": 2637.91, "end": 2637.91, "word": " shape,", "probability": 0.8525390625}, {"start": 2637.93, "end": 2637.93, "word": " it", "probability": 0.73095703125}, {"start": 2637.93, "end": 2638.13, "word": " made", "probability": 0.379150390625}, {"start": 2638.13, "end": 2638.23, "word": " an", "probability": 0.40380859375}, {"start": 2638.23, "end": 2638.59, "word": " override", "probability": 0.98779296875}, {"start": 2638.59, "end": 2638.73, "word": " for", "probability": 0.372802734375}, {"start": 2638.73, "end": 2638.89, "word": " what?", "probability": 0.396240234375}, {"start": 2639.29, "end": 2639.57, "word": " For", "probability": 0.712890625}, {"start": 2639.57, "end": 2639.63, "word": " the", "probability": 0.8193359375}, {"start": 2639.63, "end": 2639.89, "word": " method", "probability": 0.90869140625}, {"start": 2639.89, "end": 2640.61, "word": " boundingBox", "probability": 0.6373697916666666}, {"start": 2640.61, "end": 2640.77, "word": " and", "probability": 0.432373046875}, {"start": 2640.77, "end": 2641.67, "word": " createManipulate", "probability": 0.851318359375}, {"start": 2641.67, "end": 2642.45, "word": " But", "probability": 0.64111328125}, {"start": 2642.45, "end": 2642.77, "word": " inside", "probability": 0.450439453125}, {"start": 2642.77, "end": 2643.19, "word": " it,", "probability": 0.619140625}, {"start": 2643.21, "end": 2643.31, "word": " it", "probability": 0.625}, {"start": 2643.31, "end": 2643.63, "word": " used", "probability": 0.87060546875}, {"start": 2643.63, "end": 2643.79, "word": " an", "probability": 0.7666015625}, {"start": 2643.79, "end": 2644.01, "word": " object", "probability": 0.9755859375}, {"start": 2644.01, "end": 2644.23, "word": " from", "probability": 0.8017578125}, {"start": 2644.23, "end": 2644.37, "word": " what?", "probability": 0.382568359375}, {"start": 2645.37, "end": 2645.85, "word": " From", "probability": 0.68115234375}, {"start": 2645.85, "end": 2646.39, "word": " TextView", "probability": 0.76611328125}, {"start": 2646.39, "end": 2647.21, "word": " So", "probability": 0.368896484375}, {"start": 2647.21, "end": 2647.49, "word": " it", "probability": 0.293212890625}, {"start": 2647.49, "end": 2647.73, "word": " took", "probability": 0.83642578125}, {"start": 2647.73, "end": 2648.35, "word": " the", "probability": 0.58984375}, {"start": 2648.35, "end": 2648.59, "word": " old", "probability": 0.8134765625}, {"start": 2648.59, "end": 2648.77, "word": " type", "probability": 0.85205078125}, {"start": 2648.77, "end": 2650.69, "word": " And", "probability": 0.178955078125}, {"start": 2650.69, "end": 2651.35, "word": " inside", "probability": 0.61328125}, {"start": 2651.35, "end": 2651.61, "word": " it,", "probability": 0.853515625}, {"start": 2651.63, "end": 2651.63, "word": " it", "probability": 0.64990234375}, {"start": 2651.63, "end": 2652.07, "word": " used", "probability": 0.93603515625}, {"start": 2652.07, "end": 2652.73, "word": " an", "probability": 0.78271484375}, {"start": 2652.73, "end": 2652.95, "word": " object", "probability": 0.98046875}, {"start": 2652.95, "end": 2653.09, "word": " from", "probability": 0.80859375}, {"start": 2653.09, "end": 2653.21, "word": " the", "probability": 0.46728515625}, {"start": 2653.21, "end": 2653.35, "word": " new", "probability": 0.8505859375}, {"start": 2653.35, "end": 2653.53, "word": " type", "probability": 0.46142578125}, {"start": 2653.53, "end": 2654.27, "word": " And", "probability": 0.78466796875}, {"start": 2654.27, "end": 2654.47, "word": " of", "probability": 0.86328125}, {"start": 2654.47, "end": 2654.63, "word": " course,", "probability": 0.9560546875}, {"start": 2654.99, "end": 2655.17, "word": " when", "probability": 0.9140625}, {"start": 2655.17, "end": 2655.71, "word": " the", "probability": 0.5009765625}, {"start": 2655.71, "end": 2656.41, "word": " boundingBox", "probability": 0.8974609375}, {"start": 2656.41, "end": 2656.41, "word": " takes", "probability": 0.1383056640625}, {"start": 2656.41, "end": 2656.41, "word": " over", "probability": 0.744140625}], "temperature": 1.0}, {"id": 112, "seek": 268572, "start": 2657.12, "end": 2685.72, "text": " I go to this item which is TextView and it executes getExtent() This getExtent() method is here in return to the bounding box So here there is no bounding box, there is a get instead of it and it does the same thing And the same thing, when it calls createManipulator() it goes to Text and calls TextManipulator() So actually I created TextView with the drawing editor without changing anything on the drawing editor This is done by default with Shape", "tokens": [286, 352, 281, 341, 3174, 597, 307, 18643, 30203, 293, 309, 4454, 1819, 483, 36, 734, 317, 45191, 639, 483, 36, 734, 317, 45191, 3170, 307, 510, 294, 2736, 281, 264, 5472, 278, 2424, 407, 510, 456, 307, 572, 5472, 278, 2424, 11, 456, 307, 257, 483, 2602, 295, 309, 293, 309, 775, 264, 912, 551, 400, 264, 912, 551, 11, 562, 309, 5498, 1884, 6652, 647, 16381, 45191, 309, 1709, 281, 18643, 293, 5498, 18643, 6652, 647, 16381, 45191, 407, 767, 286, 2942, 18643, 30203, 365, 264, 6316, 9839, 1553, 4473, 1340, 322, 264, 6316, 9839, 639, 307, 1096, 538, 7576, 365, 49148], "avg_logprob": -0.5157738140651158, "compression_ratio": 1.8833333333333333, "no_speech_prob": 2.2649765014648438e-06, "words": [{"start": 2657.12, "end": 2657.34, "word": " I", "probability": 0.3271484375}, {"start": 2657.34, "end": 2657.52, "word": " go", "probability": 0.6455078125}, {"start": 2657.52, "end": 2657.82, "word": " to", "probability": 0.921875}, {"start": 2657.82, "end": 2658.66, "word": " this", "probability": 0.72509765625}, {"start": 2658.66, "end": 2659.14, "word": " item", "probability": 0.8232421875}, {"start": 2659.14, "end": 2659.54, "word": " which", "probability": 0.280517578125}, {"start": 2659.54, "end": 2659.66, "word": " is", "probability": 0.9033203125}, {"start": 2659.66, "end": 2660.14, "word": " TextView", "probability": 0.6474609375}, {"start": 2660.14, "end": 2660.28, "word": " and", "probability": 0.377197265625}, {"start": 2660.28, "end": 2660.32, "word": " it", "probability": 0.368896484375}, {"start": 2660.32, "end": 2660.54, "word": " executes", "probability": 0.728271484375}, {"start": 2660.54, "end": 2661.38, "word": " getExtent", "probability": 0.7291259765625}, {"start": 2661.38, "end": 2661.92, "word": "()", "probability": 0.492431640625}, {"start": 2661.92, "end": 2662.04, "word": " This", "probability": 0.248291015625}, {"start": 2662.04, "end": 2662.76, "word": " getExtent", "probability": 0.8216552734375}, {"start": 2662.76, "end": 2662.82, "word": "()", "probability": 0.47314453125}, {"start": 2662.82, "end": 2663.16, "word": " method", "probability": 0.732421875}, {"start": 2663.16, "end": 2663.62, "word": " is", "probability": 0.261474609375}, {"start": 2663.62, "end": 2663.8, "word": " here", "probability": 0.419677734375}, {"start": 2663.8, "end": 2663.88, "word": " in", "probability": 0.2216796875}, {"start": 2663.88, "end": 2664.24, "word": " return", "probability": 0.427490234375}, {"start": 2664.24, "end": 2664.48, "word": " to", "probability": 0.41552734375}, {"start": 2664.48, "end": 2665.66, "word": " the", "probability": 0.263916015625}, {"start": 2665.66, "end": 2666.04, "word": " bounding", "probability": 0.810546875}, {"start": 2666.04, "end": 2666.22, "word": " box", "probability": 0.67724609375}, {"start": 2666.22, "end": 2666.36, "word": " So", "probability": 0.180908203125}, {"start": 2666.36, "end": 2666.54, "word": " here", "probability": 0.36669921875}, {"start": 2666.54, "end": 2666.66, "word": " there", "probability": 0.71337890625}, {"start": 2666.66, "end": 2666.74, "word": " is", "probability": 0.8271484375}, {"start": 2666.74, "end": 2666.82, "word": " no", "probability": 0.89404296875}, {"start": 2666.82, "end": 2667.16, "word": " bounding", "probability": 0.87451171875}, {"start": 2667.16, "end": 2667.26, "word": " box,", "probability": 0.94287109375}, {"start": 2667.4, "end": 2667.42, "word": " there", "probability": 0.450439453125}, {"start": 2667.42, "end": 2667.44, "word": " is", "probability": 0.90087890625}, {"start": 2667.44, "end": 2667.64, "word": " a", "probability": 0.417236328125}, {"start": 2667.64, "end": 2667.8, "word": " get", "probability": 0.55029296875}, {"start": 2667.8, "end": 2668.02, "word": " instead", "probability": 0.495849609375}, {"start": 2668.02, "end": 2668.02, "word": " of", "probability": 0.68115234375}, {"start": 2668.02, "end": 2668.3, "word": " it", "probability": 0.72314453125}, {"start": 2668.3, "end": 2668.42, "word": " and", "probability": 0.1719970703125}, {"start": 2668.42, "end": 2669.44, "word": " it", "probability": 0.58447265625}, {"start": 2669.44, "end": 2669.72, "word": " does", "probability": 0.52880859375}, {"start": 2669.72, "end": 2670.0, "word": " the", "probability": 0.81396484375}, {"start": 2670.0, "end": 2670.0, "word": " same", "probability": 0.87109375}, {"start": 2670.0, "end": 2671.12, "word": " thing", "probability": 0.8203125}, {"start": 2671.12, "end": 2671.6, "word": " And", "probability": 0.161865234375}, {"start": 2671.6, "end": 2672.16, "word": " the", "probability": 0.394775390625}, {"start": 2672.16, "end": 2672.24, "word": " same", "probability": 0.908203125}, {"start": 2672.24, "end": 2672.54, "word": " thing,", "probability": 0.8291015625}, {"start": 2672.62, "end": 2672.7, "word": " when", "probability": 0.84326171875}, {"start": 2672.7, "end": 2672.9, "word": " it", "probability": 0.35107421875}, {"start": 2672.9, "end": 2673.02, "word": " calls", "probability": 0.4716796875}, {"start": 2673.02, "end": 2674.12, "word": " createManipulator", "probability": 0.821533203125}, {"start": 2674.12, "end": 2674.14, "word": "()", "probability": 0.5341796875}, {"start": 2674.14, "end": 2674.22, "word": " it", "probability": 0.62841796875}, {"start": 2674.22, "end": 2674.4, "word": " goes", "probability": 0.80029296875}, {"start": 2674.4, "end": 2674.64, "word": " to", "probability": 0.95703125}, {"start": 2674.64, "end": 2675.04, "word": " Text", "probability": 0.39306640625}, {"start": 2675.04, "end": 2675.14, "word": " and", "probability": 0.72509765625}, {"start": 2675.14, "end": 2675.54, "word": " calls", "probability": 0.397705078125}, {"start": 2675.54, "end": 2676.98, "word": " TextManipulator", "probability": 0.8861083984375}, {"start": 2676.98, "end": 2677.32, "word": "()", "probability": 0.59423828125}, {"start": 2677.32, "end": 2677.58, "word": " So", "probability": 0.7607421875}, {"start": 2677.58, "end": 2677.92, "word": " actually", "probability": 0.31640625}, {"start": 2677.92, "end": 2678.22, "word": " I", "probability": 0.7509765625}, {"start": 2678.22, "end": 2678.74, "word": " created", "probability": 0.169921875}, {"start": 2678.74, "end": 2679.52, "word": " TextView", "probability": 0.782470703125}, {"start": 2679.52, "end": 2680.08, "word": " with", "probability": 0.55029296875}, {"start": 2680.08, "end": 2680.82, "word": " the", "probability": 0.446533203125}, {"start": 2680.82, "end": 2681.04, "word": " drawing", "probability": 0.712890625}, {"start": 2681.04, "end": 2681.26, "word": " editor", "probability": 0.76220703125}, {"start": 2681.26, "end": 2681.54, "word": " without", "probability": 0.73828125}, {"start": 2681.54, "end": 2681.92, "word": " changing", "probability": 0.81689453125}, {"start": 2681.92, "end": 2682.3, "word": " anything", "probability": 0.8447265625}, {"start": 2682.3, "end": 2682.56, "word": " on", "probability": 0.56982421875}, {"start": 2682.56, "end": 2683.3, "word": " the", "probability": 0.55078125}, {"start": 2683.3, "end": 2683.56, "word": " drawing", "probability": 0.8974609375}, {"start": 2683.56, "end": 2683.88, "word": " editor", "probability": 0.9208984375}, {"start": 2683.88, "end": 2684.28, "word": " This", "probability": 0.61572265625}, {"start": 2684.28, "end": 2684.4, "word": " is", "probability": 0.6171875}, {"start": 2684.4, "end": 2684.64, "word": " done", "probability": 0.669921875}, {"start": 2684.64, "end": 2684.96, "word": " by", "probability": 0.9365234375}, {"start": 2684.96, "end": 2685.3, "word": " default", "probability": 0.97998046875}, {"start": 2685.3, "end": 2685.5, "word": " with", "probability": 0.8671875}, {"start": 2685.5, "end": 2685.72, "word": " Shape", "probability": 0.454833984375}], "temperature": 1.0}, {"id": 113, "seek": 271050, "start": 2687.12, "end": 2710.5, "text": " So I let him deal with the text view by using the adapter. It uses a shape and at the same time it uses the text view from inside. And any request on these methods turns them into the new item. So this is also an example of the application of the adapter pattern. This is how we completed the adapter design pattern. Is there any question, guys? Okay, thank you.", "tokens": [407, 286, 718, 796, 2028, 365, 264, 2487, 1910, 538, 1228, 264, 22860, 13, 467, 4960, 257, 3909, 293, 412, 264, 912, 565, 309, 4960, 264, 2487, 1910, 490, 1854, 13, 400, 604, 5308, 322, 613, 7150, 4523, 552, 666, 264, 777, 3174, 13, 407, 341, 307, 611, 364, 1365, 295, 264, 3861, 295, 264, 22860, 5102, 13, 639, 307, 577, 321, 7365, 264, 22860, 1715, 5102, 13, 1119, 456, 604, 1168, 11, 1074, 30, 1033, 11, 1309, 291, 13], "avg_logprob": -0.5659722104484652, "compression_ratio": 1.672811059907834, "no_speech_prob": 5.245208740234375e-06, "words": [{"start": 2687.12, "end": 2687.3, "word": " So", "probability": 0.245849609375}, {"start": 2687.3, "end": 2687.56, "word": " I", "probability": 0.7744140625}, {"start": 2687.56, "end": 2687.56, "word": " let", "probability": 0.26953125}, {"start": 2687.56, "end": 2687.7, "word": " him", "probability": 0.6640625}, {"start": 2687.7, "end": 2687.88, "word": " deal", "probability": 0.3740234375}, {"start": 2687.88, "end": 2688.08, "word": " with", "probability": 0.904296875}, {"start": 2688.08, "end": 2688.18, "word": " the", "probability": 0.358154296875}, {"start": 2688.18, "end": 2688.36, "word": " text", "probability": 0.446533203125}, {"start": 2688.36, "end": 2688.68, "word": " view", "probability": 0.70556640625}, {"start": 2688.68, "end": 2689.04, "word": " by", "probability": 0.3232421875}, {"start": 2689.04, "end": 2690.24, "word": " using", "probability": 0.45751953125}, {"start": 2690.24, "end": 2690.62, "word": " the", "probability": 0.409423828125}, {"start": 2690.62, "end": 2690.98, "word": " adapter.", "probability": 0.53857421875}, {"start": 2691.64, "end": 2692.04, "word": " It", "probability": 0.357666015625}, {"start": 2692.04, "end": 2692.48, "word": " uses", "probability": 0.48974609375}, {"start": 2692.48, "end": 2692.86, "word": " a", "probability": 0.382080078125}, {"start": 2692.86, "end": 2693.36, "word": " shape", "probability": 0.72802734375}, {"start": 2693.36, "end": 2693.48, "word": " and", "probability": 0.439453125}, {"start": 2693.48, "end": 2693.54, "word": " at", "probability": 0.28173828125}, {"start": 2693.54, "end": 2693.78, "word": " the", "probability": 0.9169921875}, {"start": 2693.78, "end": 2693.78, "word": " same", "probability": 0.90771484375}, {"start": 2693.78, "end": 2694.1, "word": " time", "probability": 0.89599609375}, {"start": 2694.1, "end": 2694.52, "word": " it", "probability": 0.152587890625}, {"start": 2694.52, "end": 2694.94, "word": " uses", "probability": 0.78759765625}, {"start": 2694.94, "end": 2695.08, "word": " the", "probability": 0.65185546875}, {"start": 2695.08, "end": 2695.3, "word": " text", "probability": 0.85888671875}, {"start": 2695.3, "end": 2695.6, "word": " view", "probability": 0.86572265625}, {"start": 2695.6, "end": 2695.6, "word": " from", "probability": 0.4462890625}, {"start": 2695.6, "end": 2695.6, "word": " inside.", "probability": 0.494140625}, {"start": 2695.92, "end": 2696.06, "word": " And", "probability": 0.57861328125}, {"start": 2696.06, "end": 2696.22, "word": " any", "probability": 0.771484375}, {"start": 2696.22, "end": 2696.68, "word": " request", "probability": 0.82666015625}, {"start": 2696.68, "end": 2696.86, "word": " on", "probability": 0.397216796875}, {"start": 2696.86, "end": 2696.96, "word": " these", "probability": 0.66845703125}, {"start": 2696.96, "end": 2697.48, "word": " methods", "probability": 0.9404296875}, {"start": 2697.48, "end": 2697.84, "word": " turns", "probability": 0.173583984375}, {"start": 2697.84, "end": 2698.02, "word": " them", "probability": 0.76416015625}, {"start": 2698.02, "end": 2698.18, "word": " into", "probability": 0.6455078125}, {"start": 2698.18, "end": 2699.06, "word": " the", "probability": 0.35791015625}, {"start": 2699.06, "end": 2699.08, "word": " new", "probability": 0.8046875}, {"start": 2699.08, "end": 2699.34, "word": " item.", "probability": 0.9306640625}, {"start": 2699.98, "end": 2700.28, "word": " So", "probability": 0.509765625}, {"start": 2700.28, "end": 2700.42, "word": " this", "probability": 0.7587890625}, {"start": 2700.42, "end": 2700.44, "word": " is", "probability": 0.90087890625}, {"start": 2700.44, "end": 2700.64, "word": " also", "probability": 0.499755859375}, {"start": 2700.64, "end": 2700.8, "word": " an", "probability": 0.89453125}, {"start": 2700.8, "end": 2701.0, "word": " example", "probability": 0.98095703125}, {"start": 2701.0, "end": 2701.4, "word": " of", "probability": 0.6748046875}, {"start": 2701.4, "end": 2703.38, "word": " the", "probability": 0.259033203125}, {"start": 2703.38, "end": 2703.58, "word": " application", "probability": 0.50732421875}, {"start": 2703.58, "end": 2703.76, "word": " of", "probability": 0.96240234375}, {"start": 2703.76, "end": 2703.78, "word": " the", "probability": 0.6875}, {"start": 2703.78, "end": 2704.04, "word": " adapter", "probability": 0.65869140625}, {"start": 2704.04, "end": 2704.4, "word": " pattern.", "probability": 0.869140625}, {"start": 2704.5, "end": 2704.62, "word": " This", "probability": 0.2734375}, {"start": 2704.62, "end": 2704.62, "word": " is", "probability": 0.79638671875}, {"start": 2704.62, "end": 2704.72, "word": " how", "probability": 0.93798828125}, {"start": 2704.72, "end": 2704.86, "word": " we", "probability": 0.92431640625}, {"start": 2704.86, "end": 2705.32, "word": " completed", "probability": 0.1787109375}, {"start": 2705.32, "end": 2706.22, "word": " the", "probability": 0.89111328125}, {"start": 2706.22, "end": 2706.56, "word": " adapter", "probability": 0.7197265625}, {"start": 2706.56, "end": 2706.94, "word": " design", "probability": 0.748046875}, {"start": 2706.94, "end": 2707.22, "word": " pattern.", "probability": 0.9013671875}, {"start": 2707.3, "end": 2707.36, "word": " Is", "probability": 0.256591796875}, {"start": 2707.36, "end": 2707.44, "word": " there", "probability": 0.91845703125}, {"start": 2707.44, "end": 2707.56, "word": " any", "probability": 0.8134765625}, {"start": 2707.56, "end": 2707.8, "word": " question,", "probability": 0.5263671875}, {"start": 2707.94, "end": 2708.12, "word": " guys?", "probability": 0.83447265625}, {"start": 2709.78, "end": 2710.18, "word": " Okay,", "probability": 0.2294921875}, {"start": 2710.26, "end": 2710.44, "word": " thank", "probability": 0.39794921875}, {"start": 2710.44, "end": 2710.5, "word": " you.", "probability": 0.96484375}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2711.20825, "duration_after_vad": 2623.7718749999913} \ No newline at end of file diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/xKd1iEXekNI.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/xKd1iEXekNI.srt new file mode 100644 index 0000000000000000000000000000000000000000..02bf6c0e81ef0433360ebb503d3fe8c589644264 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/xKd1iEXekNI.srt @@ -0,0 +1,2414 @@ + +1 +00:00:05,130 --> 00:00:07,670 +طب يا جماعة السلام عليكم اليوم ان شاء الله رح ناخد + +2 +00:00:07,670 --> 00:00:09,690 +design pattern جديد اللي هو ال state pattern + +3 +00:00:09,690 --> 00:00:13,930 +تعالوا أول حاجة نبدأ نقرأ الفقرة الأولى ناخد فكرة + +4 +00:00:13,930 --> 00:00:17,310 +إيش هو ال design ال state design pattern و هدفه و + +5 +00:00:17,310 --> 00:00:22,070 +بعدين خلينا نفصل فيها بقول هنا the main idea of + +6 +00:00:22,070 --> 00:00:25,150 +the state pattern is to allow the object for + +7 +00:00:25,150 --> 00:00:29,970 +changing its behavior without changing its class. It + +8 +00:00:29,970 --> 00:00:31,810 +means that I want to change the behavior of the + +9 +00:00:31,810 --> 00:00:35,850 +object without changing anything in its class. Also + +10 +00:00:35,850 --> 00:00:38,570 +by implementing it, the code should remain cleaner + +11 +00:00:38,570 --> 00:00:43,520 +without many if-else statements. Because this part + +12 +00:00:43,520 --> 00:00:46,520 +is similar to another design pattern that we took + +13 +00:00:46,520 --> 00:00:49,760 +and it is clear that it is like a strategy. The + +14 +00:00:49,760 --> 00:00:52,940 +strategy was that I also had a certain object, we + +15 +00:00:52,940 --> 00:00:55,860 +called it context in those days, and this context, + +16 +00:00:56,020 --> 00:00:57,840 +its behavior needed to differ from time to time + +17 +00:00:57,840 --> 00:01:00,480 +from the algorithm that it was working on. So I + +18 +00:01:00,480 --> 00:01:05,020 +used to + +19 +00:01:05,020 --> 00:01:07,920 +design each algorithm in an independent class and + +20 +00:01:07,920 --> 00:01:11,900 +change. Each algorithm is called in this case a + +21 +00:01:11,900 --> 00:01:14,300 +strategy and they all follow the same interface + +22 +00:01:14,300 --> 00:01:17,580 +and the context or application takes an object + +23 +00:01:17,580 --> 00:01:20,760 +from it as a strategy and I create a set method to + +24 +00:01:20,760 --> 00:01:24,260 +give it a new algorithm as a new object and this + +25 +00:01:24,260 --> 00:01:26,240 +is how I create new strategies without changing + +26 +00:01:26,240 --> 00:01:30,550 +anything on my object. Now actually the state + +27 +00:01:30,550 --> 00:01:35,130 +pattern is similar to the strategy pattern, but it + +28 +00:01:35,130 --> 00:01:39,470 +is used for more complicated cases when the + +29 +00:01:39,470 --> 00:01:42,890 +strategies have relations between them. What does + +30 +00:01:42,890 --> 00:01:46,490 +this mean? Currently, in the strategy pattern, for + +31 +00:01:46,490 --> 00:01:48,650 +example, when the mobile works in more than one + +32 +00:01:48,650 --> 00:01:53,650 +case, such as offline, online, battery low, these + +33 +00:01:53,650 --> 00:01:55,990 +are different algorithms, but they have nothing to + +34 +00:01:55,990 --> 00:01:58,010 +do with each other. This algorithm does not know + +35 +00:01:58,010 --> 00:02:00,050 +anything about the other algorithm. Each strategy + +36 +00:02:00,050 --> 00:02:03,610 +is completely separate from the other strategies. + +37 +00:02:04,250 --> 00:02:08,830 +But we see cases where the algorithm that operates + +38 +00:02:08,830 --> 00:02:12,000 +in them is the one that determines how to move to + +39 +00:02:12,000 --> 00:02:15,080 +another algorithm. Okay? There is more complexity + +40 +00:02:15,080 --> 00:02:19,340 +that algorithms move from one state to another + +41 +00:02:19,340 --> 00:02:22,180 +state. In this case, we do not call it algorithm. + +42 +00:02:22,360 --> 00:02:27,160 +When Syria controls how to move to another state, + +43 +00:02:27,260 --> 00:02:31,700 +we call it state. Okay? Also, this topic is not + +44 +00:02:31,700 --> 00:02:34,940 +clear yet. To make it clearer, let's talk about + +45 +00:02:34,940 --> 00:02:39,920 +exactly when we will need the state design + +46 +00:02:39,920 --> 00:02:40,260 +pattern. + +47 +00:02:47,250 --> 00:02:51,310 +In short, the state design pattern is used a lot + +48 +00:02:51,310 --> 00:02:56,190 +to represent something that we call in the design + +49 +00:02:56,190 --> 00:02:58,930 +of devices and equipment. The finite state machine + +50 +00:02:58,930 --> 00:03:05,190 +The finite state machine is a method used by + +51 +00:03:05,190 --> 00:03:08,510 +engineers and designers to represent systems or + +52 +00:03:08,510 --> 00:03:10,870 +devices and how these devices move from one state + +53 +00:03:10,870 --> 00:03:14,040 +to another and what are the events which makes it + +54 +00:03:14,040 --> 00:03:18,700 +move from one cell to another. For example, a group + +55 +00:03:18,700 --> 00:03:22,860 +of engineers came and designed the vending machine + +56 +00:03:29,060 --> 00:03:31,220 +The one that sells it, the one that you put money + +57 +00:03:31,220 --> 00:03:34,020 +in it, just like tea and coffee, you put money in + +58 +00:03:34,020 --> 00:03:37,840 +it and it chooses to send you the item you want. So + +59 +00:03:37,840 --> 00:03:40,520 +now when this machine comes to design it, the + +60 +00:03:40,520 --> 00:03:42,940 +first thing we think about is what are the states + +61 +00:03:42,940 --> 00:03:45,880 +that the machine has. If you go to the machine of + +62 +00:03:45,880 --> 00:03:51,480 +tea and coffee, you choose tea, you press it, will + +63 +00:03:51,480 --> 00:03:55,570 +it make tea for you? No, why? Because you didn't + +64 +00:03:55,570 --> 00:03:58,070 +put money in it, right or wrong? So I'm telling + +65 +00:03:58,070 --> 00:04:01,750 +you, to design something like that, that in the + +66 +00:04:01,750 --> 00:04:05,510 +first machine, there will be an idle state. What is + +67 +00:04:05,510 --> 00:04:09,010 +an idle state? It means that there is nothing in + +68 +00:04:09,010 --> 00:04:15,170 +it. Now, the other state is moving to another + +69 +00:04:15,170 --> 00:04:19,330 +state, which is waiting for you to put an item in + +70 +00:04:19,330 --> 00:04:22,190 +it, okay? The second state is waiting + +71 +00:04:25,800 --> 00:04:30,900 +for choice. What does it mean? It depends on your + +72 +00:04:30,900 --> 00:04:35,600 +choice. This is the first case and this is the + +73 +00:04:35,600 --> 00:04:39,520 +second case. There is also a third case which is + +74 +00:04:39,520 --> 00:04:44,360 +preparing. After choosing any item, what does it + +75 +00:04:44,360 --> 00:04:48,140 +start with? It starts with preparation. If the + +76 +00:04:48,140 --> 00:04:52,670 +device is in idle mode. Okay? What makes it move to + +77 +00:04:52,670 --> 00:04:55,770 +waiting for choice? There is only one event that + +78 +00:04:55,770 --> 00:04:58,010 +makes it move to waiting for choice, which is + +79 +00:04:58,010 --> 00:05:01,570 +what? Yes, coin inserted. + +80 +00:05:04,050 --> 00:05:06,190 +That is, I inserted a coin. This is called an + +81 +00:05:06,190 --> 00:05:08,830 +event. The event is what makes the device move + +82 +00:05:08,830 --> 00:05:15,010 +from one state to another state. Okay, it moved to + +83 +00:05:15,010 --> 00:05:16,330 +the state of the coin inserted in the state of + +84 +00:05:16,330 --> 00:05:20,850 +waiting for choice. Because, of course, in a + +85 +00:05:20,850 --> 00:05:23,270 +situation of waiting for a choice, if you enter a + +86 +00:05:23,270 --> 00:05:27,930 +coin, it should not respond. Okay? We are talking + +87 +00:05:27,930 --> 00:05:30,130 +about the simplest example of a vending machine. + +88 +00:05:30,350 --> 00:05:34,430 +Of course, it is more complicated than that. Okay? + +89 +00:05:34,430 --> 00:05:37,810 +But we assume that I entered a coin because it + +90 +00:05:37,810 --> 00:05:41,560 +moved to a state of waiting for a choice. It means + +91 +00:05:41,560 --> 00:05:43,460 +that if you enter another coin, it will give it to + +92 +00:05:43,460 --> 00:05:46,360 +you, it will not answer to any event, it will not + +93 +00:05:46,360 --> 00:05:49,500 +answer to the coin inserted event. Now he is + +94 +00:05:49,500 --> 00:05:51,840 +waiting for a choice, what is he waiting for? What + +95 +00:05:51,840 --> 00:05:53,680 +is the event that makes him move to another case? + +96 +00:05:54,560 --> 00:05:57,740 +Now you can put two events in it, you can even + +97 +00:05:57,740 --> 00:06:03,560 +choose an item, item selected + +98 +00:06:06,120 --> 00:06:08,160 +Okay, I chose item, I select it and I move to + +99 +00:06:08,160 --> 00:06:13,760 +preparing mode. I can choose to turn off cancel, to + +100 +00:06:13,760 --> 00:06:16,900 +cancel the whole process. In this case, when you + +101 +00:06:16,900 --> 00:06:20,500 +press cancel, it will give you the money and it + +102 +00:06:20,500 --> 00:06:25,800 +will go back to what mode? To item mode. Because it + +103 +00:06:25,800 --> 00:06:29,440 +is preparing, it is supposed to, while it is + +104 +00:06:29,440 --> 00:06:31,540 +preparing, it does not change its state except in + +105 +00:06:31,540 --> 00:06:36,830 +one case. What is it? That the item gets ready. Ok, + +106 +00:06:37,010 --> 00:06:40,610 +if he is preparing and he presses the button to + +107 +00:06:40,610 --> 00:06:43,870 +choose an item, what does he do? Nothing. He puts + +108 +00:06:43,870 --> 00:06:46,310 +a coin, also nothing. He is not supposed to + +109 +00:06:46,310 --> 00:06:49,130 +respond to it. So the only event that makes him + +110 +00:06:49,130 --> 00:06:54,410 +move from preparing state to item ready. + +111 +00:06:55,890 --> 00:06:58,250 +And it downloads it for you to take it. And he + +112 +00:06:58,250 --> 00:07:03,000 +goes back to the idle state. Okay? Because this + +113 +00:07:03,000 --> 00:07:07,000 +drawing that we see, they call it finite state + +114 +00:07:07,000 --> 00:07:11,660 +machine diagram. Finite state machine diagram. Why + +115 +00:07:11,660 --> 00:07:17,880 +did they name this name? State machine is a + +116 +00:07:17,880 --> 00:07:20,940 +machine because we express it as a machine. State is + +117 +00:07:20,940 --> 00:07:23,020 +when we express the state of the machine and + +118 +00:07:23,020 --> 00:07:27,600 +finite because it is extremely limited. In the end, + +119 +00:07:27,740 --> 00:07:30,400 +these states move from state to state and back to + +120 +00:07:30,400 --> 00:07:33,980 +state to the ideal that starts with it, okay? + +121 +00:07:34,820 --> 00:07:36,840 +Because this example that we presented is a simple + +122 +00:07:36,840 --> 00:07:39,280 +example. Actually, when they design real devices, + +123 +00:07:40,040 --> 00:07:42,700 +such as washing machines, refrigerators, robots, + +124 +00:07:43,340 --> 00:07:47,400 +okay? A lot of people use it to design devices. Of + +125 +00:07:47,400 --> 00:07:49,280 +course, this design that they make as a drawing in + +126 +00:07:49,280 --> 00:07:52,260 +the end turns into code. If you look at modern + +127 +00:07:52,260 --> 00:07:56,030 +devices, they are all embedded systems. It's all + +128 +00:07:56,030 --> 00:08:00,610 +programmed. Washing machines used to be all + +129 +00:08:00,610 --> 00:08:02,570 +electronic devices, did you notice? No, it's all + +130 +00:08:02,570 --> 00:08:06,070 +microcontrollers, processor, and it's all + +131 +00:08:06,070 --> 00:08:07,630 +programmed, there's code written on it, and it + +132 +00:08:07,630 --> 00:08:10,730 +does all of its functionality. So this drawing + +133 +00:08:10,730 --> 00:08:13,950 +that we do is a preparation for what? That all of + +134 +00:08:13,950 --> 00:08:19,750 +this turns into coding. Usually, this is used by + +135 +00:08:19,750 --> 00:08:22,370 +mechatronics engineers and electronics engineers + +136 +00:08:22,370 --> 00:08:25,810 +to determine how how the device will work, what + +137 +00:08:25,810 --> 00:08:27,310 +are the cases it will have, and how it will move + +138 +00:08:27,310 --> 00:08:30,330 +from one case to another case. Circles represent + +139 +00:08:30,330 --> 00:08:34,290 +states, and rectangles represent events that make + +140 +00:08:34,290 --> 00:08:37,350 +it move from one state to another state. As I + +141 +00:08:37,350 --> 00:08:40,330 +said, usually the state-machine diagram will be + +142 +00:08:40,330 --> 00:08:42,910 +more complicated than that. For example, this is a + +143 +00:08:42,910 --> 00:08:45,350 +state-machine diagram for the media player, how + +144 +00:08:45,350 --> 00:08:50,290 +the media player works. This is the number of + +145 +00:08:50,290 --> 00:08:53,350 +events that have more than we will see it in the + +146 +00:08:53,350 --> 00:08:57,790 +next lecture, but today we will use a simple + +147 +00:08:57,790 --> 00:09:02,990 +example like this. Now if we use this example and + +148 +00:09:02,990 --> 00:09:08,950 +say that we want to code this example. Let's see + +149 +00:09:08,950 --> 00:09:13,430 +first how to code it, and then we will see what is + +150 +00:09:13,430 --> 00:09:15,670 +the problem in it and how to apply the state + +151 +00:09:15,670 --> 00:09:20,950 +pattern to design. Or we can turn any state machine + +152 +00:09:20,950 --> 00:09:25,430 +diagram code into code. I mean, really, the state + +153 +00:09:25,430 --> 00:09:28,430 +pattern is used, from my point of view, mainly + +154 +00:09:28,430 --> 00:09:32,430 +when you are working on designing a finite state + +155 +00:09:32,430 --> 00:09:35,330 +machine and you want to turn it into code. The + +156 +00:09:35,330 --> 00:09:38,830 +state pattern is specifically used for this case + +157 +00:09:42,080 --> 00:09:44,040 +Of course, you will study the finite state machine + +158 +00:09:44,040 --> 00:09:48,360 +diagrams in a subject in the computer science + +159 +00:09:48,360 --> 00:09:51,000 +course, which is the automata theory. Okay? I think + +160 +00:09:51,000 --> 00:09:53,200 +it was in the third or fourth year, I don't + +161 +00:09:53,200 --> 00:09:56,220 +remember, okay? But you will study in detail the + +162 +00:09:56,220 --> 00:09:58,820 +finite state machine and how we express any device + +163 +00:09:58,820 --> 00:10:02,320 +in a drawing in this way, states and events move + +164 +00:10:02,320 --> 00:10:06,120 +between them. We mean that your work as a + +165 +00:10:06,120 --> 00:10:08,800 +programmer in the end is not a design made on + +166 +00:10:08,800 --> 00:10:12,580 +paper, all this turns into code. Let's see now how + +167 +00:10:12,580 --> 00:10:13,320 +we turn it into code. + +168 +00:10:26,670 --> 00:10:28,150 +I will just copy the code from the previous + +169 +00:10:28,150 --> 00:10:43,770 +lecture. Ok + +170 +00:10:43,770 --> 00:10:46,590 +guys, first thing we need to do is to make the + +171 +00:10:46,590 --> 00:10:48,410 +vending machine, so go and create a class, I will + +172 +00:10:48,410 --> 00:10:52,400 +name it no state vending machine vm, means this is + +173 +00:10:52,400 --> 00:10:54,220 +the design of the vending machine without a state + +174 +00:10:54,220 --> 00:10:58,480 +pattern because the vending machine each button + +175 +00:10:58,480 --> 00:11:03,880 +has a certain function. There is no button to + +176 +00:11:03,880 --> 00:11:07,240 +insert a coin. This can be expressed as public void + +177 +00:11:07,240 --> 00:11:13,100 +insert coin so + +178 +00:11:13,100 --> 00:11:15,400 +that when I insert the coin, it will call this + +179 +00:11:15,400 --> 00:11:18,380 +function, and there is also a button to choose the + +180 +00:11:18,380 --> 00:11:18,680 +item + +181 +00:11:23,500 --> 00:11:26,220 +When I click on any item, it will ask for the item + +182 +00:11:26,220 --> 00:11:29,460 +to be selected. And there is also a function to + +183 +00:11:29,460 --> 00:11:29,820 +cancel. + +184 +00:11:33,170 --> 00:11:35,310 +represents the cancel button, and there is a fourth + +185 +00:11:35,310 --> 00:11:40,770 +function public void which is item ready, but this + +186 +00:11:40,770 --> 00:11:44,150 +is not what I call it, the system calls it when it + +187 +00:11:44,150 --> 00:11:47,850 +prepares the item. These are the four cases or the + +188 +00:11:47,850 --> 00:11:52,110 +four events that the vending machine responds to + +189 +00:11:52,110 --> 00:11:56,750 +three of them for the user, which is when he enters + +190 +00:11:56,750 --> 00:11:59,090 +a coin or chooses an item or makes a cancel and + +191 +00:11:59,090 --> 00:12:02,710 +one of them. The system is what needs to be called + +192 +00:12:02,710 --> 00:12:07,830 +upon. Now, as we did in the days of the strategy + +193 +00:12:07,830 --> 00:12:12,410 +pattern, I made an insert coin. Do you see that + +194 +00:12:12,410 --> 00:12:13,630 + + +223 +00:14:03,150 --> 00:14:10,570 +the current state is equal to idle, okay? in this + +224 +00:14:10,570 --> 00:14:13,510 +case, it accepts the coin so you print a message + +225 +00:14:13,510 --> 00:14:19,850 +for example, coin inserted, check coin for example + +226 +00:14:19,850 --> 00:14:23,310 +and move to waiting + +227 +00:14:25,440 --> 00:14:31,580 +for choice state which is now there was an ideal + +228 +00:14:31,580 --> 00:14:33,860 +case and he inserted a coin and he got the coin, he + +229 +00:14:33,860 --> 00:14:38,880 +himself wants to move to what? to another case so + +230 +00:14:38,880 --> 00:14:43,140 +see, now the state is the one that wants to move to + +231 +00:14:43,140 --> 00:14:45,980 +what? to another state, so here we go and say + +232 +00:14:45,980 --> 00:14:49,760 +current state will change and become what? waiting + +233 +00:14:49,760 --> 00:14:51,480 +choice. + +234 +00:14:53,990 --> 00:14:55,810 +This is what we are talking about, that the state + +235 +00:14:55,810 --> 00:14:59,130 +has a relation between them. Okay? Okay, else, + +236 +00:14:59,190 --> 00:15:03,330 +what is this else? Other than that, if I look at + +237 +00:15:03,330 --> 00:15:05,390 +it, the coin inserted, the share of the event on + +238 +00:15:05,390 --> 00:15:11,370 +the coin inserted is only present up there. But it + +239 +00:15:11,370 --> 00:15:14,030 +has an effect only if it is in an ideal state. + +240 +00:15:14,130 --> 00:15:17,010 +Other than that, if it is in any case, and I made + +241 +00:15:17,010 --> 00:15:20,510 +a coin inserted, what should it do? Do nothing, or + +242 +00:15:20,510 --> 00:15:23,420 +it will eject the coin. it will return it to you + +243 +00:15:23,420 --> 00:15:27,800 +here, it + +244 +00:15:27,800 --> 00:15:29,920 +will tell you in any other case, if it was in any + +245 +00:15:29,920 --> 00:15:32,460 +state, and you entered a coin, it will tell you to + +246 +00:15:32,460 --> 00:15:36,420 +eject the coin, it will show you the coin that you + +247 +00:15:36,420 --> 00:15:39,500 +entered, this is in the case of inserting a coin + +248 +00:15:39,500 --> 00:15:42,860 +because in the case of a select item, when does the + +249 +00:15:42,860 --> 00:15:46,040 +select item work? if it was in the waiting state + +250 +00:15:46,040 --> 00:15:49,350 +only, otherwise it does not respond to anything. A + +251 +00:15:49,350 --> 00:15:51,210 +small child came to click on buttons, and there was + +252 +00:15:51,210 --> 00:15:53,030 +no money. I did not put any money. Will the + +253 +00:15:53,030 --> 00:15:58,310 +machine work? No. So, if the current state was + +254 +00:15:58,310 --> 00:15:58,990 +waiting, + +255 +00:16:03,030 --> 00:16:10,480 +choice and I pressed select item in a calm state, I + +256 +00:16:10,480 --> 00:16:15,420 +will say, for example, item selected, start preparing + +257 +00:16:15,420 --> 00:16:19,440 +item. This is the item I chose, this is the current + +258 +00:16:19,440 --> 00:16:23,180 +state, and now we will change it, and say current + +259 +00:16:23,180 --> 00:16:28,100 +state prepared. + +260 +00:16:28,100 --> 00:16:31,180 +If you remember in the strategy, when we worked on + +261 +00:16:31,180 --> 00:16:33,980 +the strategy, we did if statement, but the situation + +262 +00:16:33,980 --> 00:16:38,120 +did not change. If the if runs this code, else if runs + +263 +00:16:38,120 --> 00:16:41,080 +another code. But here, they enter each other, the + +264 +00:16:41,080 --> 00:16:44,680 +state itself will transfer or change to another + +265 +00:16:44,680 --> 00:16:48,800 +state. Of course, until now, we have not applied the + +266 +00:16:48,800 --> 00:16:54,040 +strategy pattern. This is tiring work. If I get + +267 +00:16:54,040 --> 00:16:57,300 +else, what does it mean else? For any state other + +268 +00:16:57,300 --> 00:17:01,420 +than that, I chose an item, and I was not in a + +269 +00:17:01,420 --> 00:17:03,280 +waiting state. Supposedly, it does not do anything. + +270 +00:17:04,450 --> 00:17:14,890 +system.out.println do nothing now. + +271 +00:17:14,890 --> 00:17:19,590 +cancel event, cancel is present only once it comes + +272 +00:17:19,590 --> 00:17:21,930 +out of any circle from waiting, it means that + +273 +00:17:21,930 --> 00:17:24,970 +cancel does not work unless the device is in + +274 +00:17:24,970 --> 00:17:31,090 +waiting state, if the current state is equal to waiting + +275 +00:17:50,590 --> 00:17:53,490 +choice, I want to say, for example, cancelling order + +276 +00:17:53,490 --> 00:17:56,850 +and + +277 +00:17:56,850 --> 00:18:01,810 +and it does eject the coin, right? this is not + +278 +00:18:01,810 --> 00:18:05,030 +cancel, right? and we go and say current state + +279 +00:18:05,030 --> 00:18:12,780 +return to me, no, no idea, otherwise do nothing + +280 +00:18:12,780 --> 00:18:17,760 +right, or not, guys? because we are done, we only + +281 +00:18:17,760 --> 00:18:22,780 +have the inner event, which is the item ready, okay? + +282 +00:18:22,780 --> 00:18:26,000 +this should also be the current state to respond + +283 +00:18:26,000 --> 00:18:33,160 +to this event that is preparing, okay? + +284 +00:18:33,160 --> 00:18:36,840 +if it was preparing and the item came ready, okay? I + +285 +00:18:36,840 --> 00:18:44,450 +want to tell him finish, take your item, مثلا take + +286 +00:18:44,450 --> 00:18:51,430 +your item, و بعدين بروح ل current state و بحطها + +287 +00:18:51,430 --> 00:19:00,510 +idle, غير ذلك, هيقوله + +288 +00:19:00,510 --> 00:19:05,620 +do nothing. That's how we programmed it, with what? + +289 +00:19:06,360 --> 00:19:08,920 +With if statements, and if I go now to the main + +290 +00:19:08,920 --> 00:19:13,680 +method, okay? I want to say no state VM, what do I + +291 +00:19:13,680 --> 00:19:16,760 +do? I remove the object from whom? From the state + +292 +00:19:16,760 --> 00:19:22,240 +machine, no state VM, we want to run it, if we go + +293 +00:19:22,240 --> 00:19:24,720 +to the vending machine, we press a button. For + +294 +00:19:24,720 --> 00:19:27,080 +example, a small child came and made a select item + +295 +00:19:27,080 --> 00:19:30,180 +without putting anything. Here at this method, what + +296 +00:19:30,180 --> 00:19:34,460 +should be printed for you? Nothing. VM, again, + +297 +00:19:34,460 --> 00:19:36,940 +select item, also nothing. It will not answer + +298 +00:19:36,940 --> 00:19:44,200 +except what? Insert coin. Okay? Again, I do insert + +299 +00:19:44,200 --> 00:19:46,340 +coin, after that. The second one will not answer + +300 +00:19:46,340 --> 00:19:49,300 +except that. One should say that in reality, the + +301 +00:19:49,300 --> 00:19:50,260 +machine is swallowing. Why don't you give it + +302 +00:19:50,260 --> 00:19:52,820 +money? Some people say no to money. Yes, it keeps + +303 +00:19:52,820 --> 00:19:56,500 +swallowing. But in the simple example we did, it + +304 +00:19:56,500 --> 00:20:01,660 +takes what? One time. Ok, what can we say about + +305 +00:20:01,660 --> 00:20:04,240 +VM? Select item, + +306 +00:20:06,800 --> 00:20:09,540 +ok? Select item, what should happen now? It should + +307 +00:20:09,540 --> 00:20:12,860 +prepare in the item. It makes select for the item, + +308 +00:20:13,640 --> 00:20:15,000 +let's say cancel + +309 +00:20:17,770 --> 00:20:21,170 +One wants to earn money. He wants an item, he + +310 +00:20:21,170 --> 00:20:23,030 +wants money. No. That's it. The currency is + +311 +00:20:23,030 --> 00:20:26,910 +supposed to not respond to it. If he is preparing + +312 +00:20:26,910 --> 00:20:30,030 +and doing something else, select item, it also + +313 +00:20:30,030 --> 00:20:33,390 +does not respond. If he is preparing, and doing + +314 +00:20:33,390 --> 00:20:35,930 +insert coin, it is also supposed to not respond. + +315 +00:20:36,630 --> 00:20:39,010 +Except in the case when he prepares for the item + +316 +00:20:39,010 --> 00:20:44,360 +to become ready, he breaks his item. finish and it + +317 +00:20:44,360 --> 00:20:47,160 +goes back again to where? to idle. Now it became + +318 +00:20:47,160 --> 00:20:51,380 +idle, if we do item select, select item, it doesn't + +319 +00:20:51,380 --> 00:20:54,520 +work. It has to insert what? Coin. So, now, if I run + +320 +00:20:54,520 --> 00:21:01,820 +this code, first. + +321 +00:21:01,820 --> 00:21:05,800 +two cases do nothing. When I inserted coin, coin + +322 +00:21:05,800 --> 00:21:08,900 +inserted, make sure of it. I inserted coin, behind it + +323 +00:21:08,900 --> 00:21:12,160 +again, insert coin. This one, he told me to eject + +324 +00:21:12,160 --> 00:21:16,980 +coin. After that, select item. He chose the item and + +325 +00:21:16,980 --> 00:21:19,680 +then he prepared it because after the select item + +326 +00:21:19,680 --> 00:21:23,580 +I cancelled it and he told me to do nothing, I did + +327 +00:21:23,580 --> 00:21:25,480 +the select item again, and he told me to do nothing. + +328 +00:21:25,480 --> 00:21:29,980 +I did insert coin, and he told me to eject coin. + +329 +00:21:29,980 --> 00:21:34,260 +item ready, he told me to finish, and take your item. + +330 +00:21:34,260 --> 00:21:37,690 +After that, you told me to select item again. So, he + +331 +00:21:37,690 --> 00:21:41,130 +worked with me in a proper way. Until now, we have + +332 +00:21:41,130 --> 00:21:44,410 +not applied the state. We worked as if statements. + +333 +00:21:45,090 --> 00:21:46,970 +Now, it is clear that the problem with this design + +334 +00:21:46,970 --> 00:21:51,530 +is that all the algorithms, steps, and details are + +335 +00:21:51,530 --> 00:21:55,370 +gathered in one class, as if statements. This means + +336 +00:21:55,370 --> 00:21:58,850 +that, in our case, the state diagram is very + +337 +00:21:58,850 --> 00:22:02,480 +simple. It is really, on the ground of reality, that + +338 +00:22:02,480 --> 00:22:06,480 +this state machine diagram can be 50 circles in 50 + +339 +00:22:06,480 --> 00:22:08,380 +states, and they keep moving between them, and + +340 +00:22:08,380 --> 00:22:11,660 +events keep coming and going. This means that you + +341 +00:22:11,660 --> 00:22:14,100 +need to keep your mind going back and forth with + +342 +00:22:14,100 --> 00:22:16,980 +ifs and statements and else if, else if, because of + +343 +00:22:16,980 --> 00:22:19,360 +what? To make the shape, and some of them are going, + +344 +00:22:19,360 --> 00:22:22,740 +and some of them are coming. You have to think + +345 +00:22:22,740 --> 00:22:26,680 +about all the design, and put all the design in one + +346 +00:22:26,680 --> 00:22:29,480 +class. In the end, if you want to change to if + +347 +00:22:29,480 --> 00:22:31,920 +statements, you need to add a new state. You need + +348 +00:22:31,920 --> 00:22:33,620 +to add a new condition, you need to come here and + +349 +00:22:33,620 --> 00:22:38,780 +change in the code, and you need to have all this + +350 +00:22:38,780 --> 00:22:42,540 +design in front of you so that you can design the + +351 +00:22:42,540 --> 00:22:46,160 +code, and each modification requires a new if and a + +352 +00:22:46,160 --> 00:22:49,720 +new else, so we will spend all day calculating the + +353 +00:22:49,720 --> 00:22:51,200 +code of the vending machine. + +354 +00:22:55,340 --> 00:22:58,560 +Similarly, when you add a new algorithm, you need + +355 +00:22:58,560 --> 00:23:02,360 +to add a new if statement. This is the same idea, but more + +356 +00:23:02,360 --> 00:23:04,980 +difficult. Why? Because there is a link between + +357 +00:23:04,980 --> 00:23:07,220 +states, and this goes to another state, and this + +358 +00:23:07,220 --> 00:23:10,000 +goes back to another state. Okay? So, the topic is + +359 +00:23:10,000 --> 00:23:13,020 +more difficult. In strategy, it was easier because + +360 +00:23:13,020 --> 00:23:16,060 +the algorithms have nothing to do with each other. + +361 +00:23:16,340 --> 00:23:18,680 +So, that's it, you add a new algorithm, you put an + +362 +00:23:18,680 --> 00:23:20,680 +if statement and that's it. But not this one, you have to + +363 +00:23:20,680 --> 00:23:23,360 +think again. Okay, where does this go? Where does + +364 +00:23:23,360 --> 00:23:25,780 +this go back? And so on. Right? Because there is a + +365 +00:23:25,780 --> 00:23:28,740 +link between whom? Between states, and this is the + +366 +00:23:28,740 --> 00:23:31,510 +difference between the word state and strategy. The + +367 +00:23:31,510 --> 00:23:34,290 +state is a case that can lead you to another case. + +368 +00:23:35,230 --> 00:23:37,290 +The strategy is an algorithm that has nothing to + +369 +00:23:37,290 --> 00:23:41,730 +do with another strategy. The state pattern and + +370 +00:23:41,730 --> 00:23:45,290 +the strategy pattern. Both of them serve the same + +371 +00:23:45,290 --> 00:23:46,510 +goal that in the end, I don't want to change the + +372 +00:23:46,510 --> 00:23:49,450 +class of the vending machine, and I want to change + +373 +00:23:49,450 --> 00:23:52,950 +the state without affecting it. But the difference + +374 +00:23:52,950 --> 00:23:55,430 +is that the states control other states, and move + +375 +00:23:55,430 --> 00:23:57,650 +between each other. But the strategies are + +376 +00:23:57,650 --> 00:24:00,610 +completely separated from each other. Now let's + +377 +00:24:00,610 --> 00:24:03,550 +see how to redesign this code by applying the + +378 +00:24:03,550 --> 00:24:08,630 +state pattern, in order to avoid the use of the if + +379 +00:24:08,630 --> 00:24:12,540 +statement. And the design of the machine should be + +380 +00:24:12,540 --> 00:24:15,440 +divided into different classes. So that if I want + +381 +00:24:15,440 --> 00:24:17,880 +to change in a certain part, I go to a certain + +382 +00:24:17,880 --> 00:24:20,280 +state, and change only in it, without affecting + +383 +00:24:20,280 --> 00:24:24,840 +others. Okay? How do we do it? Pay attention to me + +384 +00:24:24,840 --> 00:24:29,520 +I'm going to make another class for the vending + +385 +00:24:29,520 --> 00:24:36,140 +machine, called StateVM. We made it NoStateVM. This + +386 +00:24:36,140 --> 00:24:36,820 +is StateVM. + +387 +00:24:41,880 --> 00:24:46,040 +Also, we make methods for the four buttons: Insert, + +388 +00:24:47,460 --> 00:24:52,580 +Coin, Select, + +389 +00:24:54,000 --> 00:25:07,460 +Item, Item, + +390 +00:25:08,220 --> 00:25:10,200 +Ready + +391 +00:25:13,240 --> 00:25:20,040 +These are the four cases or the events that the + +392 +00:25:20,040 --> 00:25:24,480 +vending machine responds to. The idea + +393 +00:25:24,480 --> 00:25:27,300 +of applying the state pattern is as follows. The + +394 +00:25:27,300 --> 00:25:29,900 +first thing I want to tell you is that each state + +395 +00:25:29,900 --> 00:25:37,560 +of these states will turn into a class, and we want + +396 +00:25:37,560 --> 00:25:40,480 +to make a class that unites them all together. Okay? + +397 +00:25:40,600 --> 00:25:43,300 +So, we're going to do the first thing, superclass. + +398 +00:25:44,160 --> 00:25:48,760 +We're going to call it AbstractState. + +399 +00:25:48,760 --> 00:25:52,600 +Okay? And notice that I didn't make an interface + +400 +00:25:52,600 --> 00:25:56,700 +AbstractClass. Why? Because I'm going to get it + +401 +00:25:56,700 --> 00:25:59,020 +and see why I'm going to get the AbstractClass + +402 +00:25:59,020 --> 00:26:02,300 +inside it. I'm going to make an object from the state + +403 +00:26:02,300 --> 00:26:03,320 +VM. + +404 +00:26:05,480 --> 00:26:08,520 +This is the vending machine itself. Notice that + +405 +00:26:08,520 --> 00:26:12,140 +the state has an object from the vending machine. + +406 +00:26:12,180 --> 00:26:13,920 +Why does it have an object from the vending + +407 +00:26:13,920 --> 00:26:17,580 +machine? Because the state does not change the + +408 +00:26:17,580 --> 00:26:20,400 +state of the vending machine. The state is the one + +409 +00:26:20,400 --> 00:26:23,100 +that decides. So, if you are in an ideal situation + +410 +00:26:23,100 --> 00:26:27,110 +and you put a coin. The case of IDLE is that it + +411 +00:26:27,110 --> 00:26:30,550 +changes the state of the vending machine. So the + +41 + +445 +00:29:10,220 --> 00:29:15,660 +بس بدنا نعمل أيضا method public void set current + +446 +00:29:15,660 --> 00:29:20,640 +state abstract + +447 +00:29:20,640 --> 00:29:26,780 +state current this + +448 +00:29:26,780 --> 00:29:33,280 +dot current state يساوي current state + +449 +00:29:39,420 --> 00:29:41,460 +This is a set method to give him the state Of + +450 +00:29:41,460 --> 00:29:43,360 +course, this hasn't benefited us from it yet + +451 +00:29:43,360 --> 00:29:45,580 +Because this is the abstract state that I have I + +452 +00:29:45,580 --> 00:29:47,520 +put the events in them Now let's start working on + +453 +00:29:47,520 --> 00:29:49,620 +the states that I have Because we want to make + +454 +00:29:49,620 --> 00:29:54,060 +from this class Three children The first class is + +455 +00:29:54,060 --> 00:30:01,920 +called idle And another class is called preparing + +456 +00:30:01,920 --> 00:30:05,440 +And + +457 +00:30:05,440 --> 00:30:09,710 +another class is called waiting choice. + +458 +00:30:27,170 --> 00:30:28,810 +Of course, you have to create a constructor + +459 +00:30:28,810 --> 00:30:32,050 +because the parent needs a parameter that takes + +460 +00:30:32,050 --> 00:30:34,930 +the state in it. And as soon as you extend the + +461 +00:30:34,930 --> 00:30:37,770 +abstract class, it will implement to whom? To all + +462 +00:30:37,770 --> 00:30:41,250 +the existing events. Now, let's work on this. + +463 +00:30:41,510 --> 00:30:46,030 +Okay, this is the idle. The idle now, guys, you + +464 +00:30:46,030 --> 00:30:48,150 +immediately look at the drawing. The idle responds + +465 +00:30:48,150 --> 00:30:51,770 +to any event only. Coin inserted. All the others + +466 +00:30:51,770 --> 00:30:54,790 +have nothing to do with it. Okay, so you just go + +467 +00:30:54,790 --> 00:30:56,350 +to the coin inserted here. + +468 +00:30:59,280 --> 00:31:03,320 +it executes the code that would be executed if I + +469 +00:31:03,320 --> 00:31:08,800 +entered coin for example, we can say coin coin + +470 +00:31:08,800 --> 00:31:16,340 +inserted check coin then move to waiting for + +471 +00:31:16,340 --> 00:31:23,080 +choice state same as what we did there and then + +472 +00:31:23,080 --> 00:31:26,200 +what should we do? we change the state of the + +473 +00:31:26,200 --> 00:31:29,200 +vending machineOkay? How do we change the state of + +474 +00:31:29,200 --> 00:31:33,700 +the vending machine? That's why I sent the vending + +475 +00:31:33,700 --> 00:31:36,000 +machine to the state The state of this gate is + +476 +00:31:36,000 --> 00:31:38,680 +what controls the vending machine So you go to the + +477 +00:31:38,680 --> 00:31:44,680 +vending machine and say set current state What + +478 +00:31:44,680 --> 00:31:48,100 +should this gate send him? It will create an + +479 +00:31:48,100 --> 00:31:53,160 +object From whom? From waitingchoice and you say + +480 +00:31:53,160 --> 00:31:58,780 +waiting choice, steal me, take who? The VM. The VM + +481 +00:31:58,780 --> 00:32:03,980 +will move between whom? The state. Okay? This is + +482 +00:32:03,980 --> 00:32:06,780 +in case of insert coin. If there is a case of item + +483 +00:32:06,780 --> 00:32:10,940 +selected, what should happen? Why is this wrong? + +484 +00:32:12,820 --> 00:32:14,180 +Waiting choice. + +485 +00:32:17,910 --> 00:32:21,610 +Yes, we didn't do it yet, this is still fine We + +486 +00:32:21,610 --> 00:32:28,150 +only did the idle, so let's all do extends to + +487 +00:32:28,150 --> 00:32:37,590 +abstract state When + +488 +00:32:37,590 --> 00:32:39,790 +I do extends, I go back to them again and program + +489 +00:32:39,790 --> 00:32:40,570 +them, okay? + +490 +00:33:03,430 --> 00:33:14,790 +abstract state I + +491 +00:33:14,790 --> 00:33:19,990 +took what + +492 +00:33:19,990 --> 00:33:21,210 +I wanted and left what I didn't want + +493 +00:33:30,740 --> 00:33:36,220 +it means abstract state + +494 +00:33:36,220 --> 00:33:41,940 +state + +495 +00:33:41,940 --> 00:33:42,940 +VM + +496 +00:34:07,400 --> 00:34:09,280 +I want to take only the methods + +497 +00:34:46,830 --> 00:34:48,630 +Why? There are thousands of scientists + +498 +00:35:10,540 --> 00:35:15,820 +Ok guys, let's go back to the item Set current + +499 +00:35:15,820 --> 00:35:21,960 +state, new waiting choice Yes, + +500 +00:35:22,040 --> 00:35:27,000 +it did extend, but it didn't implement the method + +501 +00:35:27,000 --> 00:35:30,740 +of the constructor yet Ok, let's go back to the + +502 +00:35:30,740 --> 00:35:33,300 +item, we said to put waiting choice, and now I + +503 +00:35:33,300 --> 00:35:41,210 +will put VM Ok, if I am in any class I am working + +504 +00:35:41,210 --> 00:35:43,050 +in the Idle class, and I pressed item selected, + +505 +00:35:43,130 --> 00:35:53,170 +what should it do? Here, do nothing I + +506 +00:35:53,170 --> 00:35:57,310 +pressed cancel, also do nothing, I pressed item + +507 +00:35:57,310 --> 00:36:00,720 +readydo nothing, they all do nothing, it only + +508 +00:36:00,720 --> 00:36:03,980 +responds to whom? to coin inserted, it executes a + +509 +00:36:03,980 --> 00:36:07,220 +specific code and changes what? to choice, you see + +510 +00:36:07,220 --> 00:36:10,600 +it moved to waiting for item, this is waiting + +511 +00:36:10,600 --> 00:36:15,200 +choice now it also does implement for all four, + +512 +00:36:15,240 --> 00:36:20,220 +but it only responds to whom? to item selected, it + +513 +00:36:20,220 --> 00:36:23,280 +means that if it is in waiting choice and you tell + +514 +00:36:23,280 --> 00:36:27,520 +it coin inserted, what should it do? do nothing it + +515 +00:36:27,520 --> 00:36:31,520 +will answer item selected and cancel because item + +516 +00:36:31,520 --> 00:36:38,600 +selected want to print a message that + +517 +00:36:38,600 --> 00:36:48,700 +item selected start preparing and + +518 +00:36:48,700 --> 00:36:56,840 +then VM current state new preparing + +519 +00:36:58,120 --> 00:37:05,460 +And I also send him the VM Now cancel System.out + +520 +00:37:05,460 --> 00:37:10,140 +.println EgyptCoin + +521 +00:37:10,140 --> 00:37:18,080 +And then I go to the VM SetCurrentState new idle + +522 +00:37:18,080 --> 00:37:22,330 +And I also send him the VM when the item is ready, + +523 +00:37:22,890 --> 00:37:25,270 +it does not respond to it when the item is ready + +524 +00:37:25,270 --> 00:37:27,890 +it is in the waiting choice mode the last case is + +525 +00:37:27,890 --> 00:37:31,550 +the preparing mode because the preparing mode + +526 +00:37:31,550 --> 00:37:35,030 +responds to any case when the item is ready when + +527 +00:37:35,030 --> 00:37:39,190 +the coin is inserted, it will say do nothing when + +528 +00:37:39,190 --> 00:37:42,390 +the item is selected, it will say do nothing when + +529 +00:37:42,390 --> 00:37:44,570 +the coin is cancelled, it will also say do nothing + +530 +00:37:44,570 --> 00:37:47,290 +here + +531 +00:37:52,840 --> 00:37:57,920 +take your item and then I change the case set + +532 +00:37:57,920 --> 00:38:01,700 +current state and I say new idle and I give him + +533 +00:38:01,700 --> 00:38:07,340 +the VM the idea here is that I program each case + +534 +00:38:07,340 --> 00:38:10,580 +one by one I don't look at all the drawings in + +535 +00:38:10,580 --> 00:38:13,540 +each class I look at the case and I look and I + +536 +00:38:13,540 --> 00:38:15,180 +look at the drawing who is the worst that came out + +537 +00:38:15,180 --> 00:38:17,320 +of it is the one that is programmed only the rest + +538 +00:38:17,320 --> 00:38:20,890 +are left empty or put in them without anythingSo + +539 +00:38:20,890 --> 00:38:25,550 +you are thinking in one moment in one state. There + +540 +00:38:25,550 --> 00:38:32,270 +is still an adjustment to go back to the vending + +541 +00:38:32,270 --> 00:38:35,150 +machine. In the end, I create an object from the + +542 +00:38:35,150 --> 00:38:37,550 +vending machine. When the vending machine starts + +543 +00:38:37,550 --> 00:38:41,210 +working, the current state tells it to create a + +544 +00:38:41,210 --> 00:38:47,450 +new idle and sends it this. Why this?Yes, see the + +545 +00:38:47,450 --> 00:38:50,630 +idea here is also one of the differences between + +546 +00:38:50,630 --> 00:38:53,030 +the strategy and the state that in the state, the + +547 +00:38:53,030 --> 00:38:56,750 +object gives itself to whom, that is, this vending + +548 +00:38:56,750 --> 00:38:59,570 +machine came to the state, take me and work with + +549 +00:38:59,570 --> 00:39:02,490 +me as you want and the state waits, waits for + +550 +00:39:02,490 --> 00:39:06,030 +whom? Events, a suitable event came, it is what + +551 +00:39:06,030 --> 00:39:08,790 +changes it, just like someone who has a house and + +552 +00:39:08,790 --> 00:39:10,590 +wants to prepare it, he says I have no claim and I + +553 +00:39:10,590 --> 00:39:13,640 +can rest my head, give it to whom?to the company + +554 +00:39:13,640 --> 00:39:16,980 +and the company has a carpenter and a carpenter + +555 +00:39:16,980 --> 00:39:20,200 +and a carpenter and a carpenter and a carpenter + +556 +00:39:20,200 --> 00:39:20,420 +and a carpenter and a carpenter and a carpenter + +557 +00:39:20,420 --> 00:39:21,040 +and a carpenter and a carpenter and a carpenter + +558 +00:39:21,040 --> 00:39:21,300 +and a carpenter and a carpenter and a carpenter + +559 +00:39:21,300 --> 00:39:21,700 +and a carpenter and a carpenter and a carpenter + +560 +00:39:21,700 --> 00:39:22,560 +and a carpenter and a carpenter and a carpenter + +561 +00:39:22,560 --> 00:39:24,700 +and a carpenter and a carpenter and a carpenter + +562 +00:39:24,700 --> 00:39:25,040 +and a carpenter and a carpenter and a carpenter + +563 +00:39:25,040 --> 00:39:26,180 +and a carpeter and a carpeter and a carpeter and a + +564 +00:39:26,180 --> 00:39:32,440 +carpeter and + +565 +00:39:32,440 --> 00:39:40,000 +a carpeter and a carpeter and a carpeter and a + +566 +00:39:40,000 --> 00:39:42,130 +carpeter and a carpeter and a carpeter and aThe + +567 +00:39:42,130 --> 00:39:44,110 +difference between the state and the strategy is + +568 +00:39:44,110 --> 00:39:45,390 +that the states communicate with each other, there + +569 +00:39:45,390 --> 00:39:47,310 +is communication between them. In the strategy, + +570 +00:39:47,450 --> 00:39:50,930 +no, each algorithm exists on its own. Let's + +571 +00:39:50,930 --> 00:39:54,770 +continue with the state vending machine. As I + +572 +00:39:54,770 --> 00:39:58,770 +said, I have buttons. I send him the state. The + +573 +00:39:58,770 --> 00:40:02,450 +answer is to insert a coin. Someone inserted a + +574 +00:40:02,450 --> 00:40:06,710 +coin. You go to the current state and say coin + +575 +00:40:06,710 --> 00:40:10,690 +inserted.Because, of course, the button can be + +576 +00:40:10,690 --> 00:40:12,730 +pressed and it can be pressed in any case. It can + +577 +00:40:12,730 --> 00:40:15,710 +be an idle case. I pressed a button because it has + +578 +00:40:15,710 --> 00:40:18,410 +nothing to do with the case. It is pressed as if + +579 +00:40:18,410 --> 00:40:21,230 +it is in a tracked state. Or if the case is idle + +580 +00:40:21,230 --> 00:40:23,130 +and I pressed coin inserted, it will respond to + +581 +00:40:23,130 --> 00:40:26,950 +it. If the case is anything else, it will not + +582 +00:40:26,950 --> 00:40:30,730 +respond. Select item is also a current state. + +583 +00:40:34,420 --> 00:40:36,940 +item selected, but you call the appropriate event + +584 +00:40:36,940 --> 00:40:44,740 +for it only current state I execute cancel item + +585 +00:40:44,740 --> 00:40:53,700 +ready current state but you call item ready let's + +586 +00:40:53,700 --> 00:40:58,180 +see the execution in the main leave all of them, + +587 +00:40:58,800 --> 00:41:08,480 +but instead of state state VM Ok, and run it + +588 +00:41:08,480 --> 00:41:12,640 +Because as we can see In the beginning, when I + +589 +00:41:12,640 --> 00:41:14,740 +told him select item, do nothing, do nothing + +590 +00:41:14,740 --> 00:41:18,620 +Insert coin, he told me what, coin inserted I put + +591 +00:41:18,620 --> 00:41:21,240 +coin behind it again, he told me what, do nothing + +592 +00:41:21,240 --> 00:41:24,600 +I made select item, he told me item selected I + +593 +00:41:24,600 --> 00:41:28,900 +made cancel, that's it, it became preparing, so he + +594 +00:41:28,900 --> 00:41:32,640 +told me do nothingand so on, it works the same way + +595 +00:41:32,640 --> 00:41:34,560 +because where is the ease in this matter? the + +596 +00:41:34,560 --> 00:41:37,440 +first thing is that I have the state vending + +597 +00:41:37,440 --> 00:41:42,640 +machine the vending machine itself I will not + +598 +00:41:42,640 --> 00:41:45,380 +change anything in it after that I can change the + +599 +00:41:45,380 --> 00:41:48,140 +states and add new states and make them classes + +600 +00:41:48,140 --> 00:41:50,780 +outside okay? but this class of the vending + +601 +00:41:50,780 --> 00:41:54,340 +machine will not change it only deals with the + +602 +00:41:54,340 --> 00:41:58,200 +current state and calls at each button a certain + +603 +00:41:58,200 --> 00:42:05,080 +event because states change each other every state + +604 +00:42:05,080 --> 00:42:07,420 +from inside to outside can be a current state and + +605 +00:42:07,420 --> 00:42:12,460 +can change this state states control each other in + +606 +00:42:12,460 --> 00:42:17,880 +case of vending machine but I will not change + +607 +00:42:17,880 --> 00:42:21,560 +anything in it because I want to add a new state + +608 +00:42:21,560 --> 00:42:26,380 +all I need to do is to create a new class that + +609 +00:42:26,380 --> 00:42:28,320 +represents this state for example + +610 +00:42:31,180 --> 00:42:35,240 +For example, let's say that I was preparing and I + +611 +00:42:35,240 --> 00:42:38,100 +said I want to add a case that after the item is + +612 +00:42:38,100 --> 00:42:43,200 +prepared, it moves to the waiting to take + +613 +00:42:43,200 --> 00:42:43,260 +position. + +614 +00:42:47,400 --> 00:42:50,660 +Here, for example, the item is ready and it moves + +615 +00:42:50,660 --> 00:42:52,500 +to the waiting machine position. + +616 +00:43:08,870 --> 00:43:09,930 +Waiting to take + +617 +00:43:14,610 --> 00:43:16,730 +then it goes back to the previous state. We want + +618 +00:43:16,730 --> 00:43:18,810 +to make this modification. To make this + +619 +00:43:18,810 --> 00:43:20,470 +modification, you need to do two things. The first + +620 +00:43:20,470 --> 00:43:23,410 +thing is that you have a new event added here. + +621 +00:43:23,570 --> 00:43:27,350 +Which is what? Item taken. So you need to go to + +622 +00:43:27,350 --> 00:43:30,890 +the abstract class and add the event. Because in + +623 +00:43:30,890 --> 00:43:32,490 +this case, in the addition case, it is not + +624 +00:43:32,490 --> 00:43:34,690 +preferable to use the abstract method. Why? + +625 +00:43:34,770 --> 00:43:37,130 +Because the abstract method will ruin where? + +626 +00:43:38,150 --> 00:43:39,370 +Everything else. Because everything needs to be + +627 +00:43:39,370 --> 00:43:45,900 +done. You can add a method, public void,item taken + +628 +00:43:45,900 --> 00:43:49,020 +and leave it blank because the meaning is to make + +629 +00:43:49,020 --> 00:43:54,740 +it override right or not? item taken and now make + +630 +00:43:54,740 --> 00:44:03,760 +a new class what do you call it? waiting to + +631 +00:44:03,760 --> 00:44:08,480 +take extends abstract + +632 +00:44:08,480 --> 00:44:09,960 +state + +633 +00:44:15,770 --> 00:44:18,950 +this is waiting to take, you answer to whom? there + +634 +00:44:18,950 --> 00:44:22,310 +is no need in all of these, you answer to the item + +635 +00:44:22,310 --> 00:44:25,330 +that is item taken so I leave all of these, put in + +636 +00:44:25,330 --> 00:44:28,190 +them do nothing, do nothing and override to whom? + +637 +00:44:28,750 --> 00:44:31,950 +to the method called item taken when the item is + +638 +00:44:31,950 --> 00:44:35,250 +taken, you still print it because you took the + +639 +00:44:35,250 --> 00:44:37,730 +item and you go to the VM and you say set current + +640 +00:44:37,730 --> 00:44:42,850 +state and you say newidle and you + +667 +00:46:12,030 --> 00:46:15,210 +other but in the case of the state, this is the + +668 +00:46:15,210 --> 00:46:21,410 +context and these come with states, each one It can + +669 +00:46:21,410 --> 00:46:24,150 +communicate with whom? With the other person. So + +670 +00:46:24,150 --> 00:46:27,630 +what do we say? The context itself gives way to + +671 +00:46:27,630 --> 00:46:30,550 +whom? To the first state. And the first state + +672 +00:46:30,550 --> 00:46:32,490 +continues to wait. Wait for what? For the + +673 +00:46:32,490 --> 00:46:35,830 +appropriate event. To move to whom? To the other + +674 +00:46:35,830 --> 00:46:39,850 +person. And they continue to change who? The state + +675 +00:46:39,850 --> 00:46:42,490 +of the context. Because when I press the button + +676 +00:46:42,490 --> 00:46:47,070 +that is there, It changes its shape according to + +677 +00:46:47,070 --> 00:46:53,730 +the current state of the state. As I + +678 +00:46:53,730 --> 00:46:57,110 +said, the state pattern is not one of the patterns + +679 +00:46:57,110 --> 00:47:02,490 +frequently used. It is used only when I work with + +680 +00:47:02,490 --> 00:47:06,370 +designers who design a system using the finite + +681 +00:47:06,370 --> 00:47:09,470 +state machine diagram. In this way, I need to + +682 +00:47:09,470 --> 00:47:13,420 +convert it into code to use the state. The next + +683 +00:47:13,420 --> 00:47:15,740 +lecture, God willing, we will take another + +684 +00:47:15,740 --> 00:47:18,800 +example, we will apply the state pattern on the + +685 +00:47:18,800 --> 00:47:21,880 +diagram or drawing that is present in the slide, + +686 +00:47:22,060 --> 00:47:24,320 +and it is a slightly more difficult drawing, okay? + +687 +00:47:24,920 --> 00:47:28,180 +And we will see today what is the state pattern + +688 +00:47:28,180 --> 00:47:30,660 +diagram, and we will finish the state pattern + +689 +00:47:30,660 --> 00:47:33,160 +completely in the next lecture, God willing. God + +690 +00:47:33,160 --> 00:47:33,380 +bless you. diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/xKd1iEXekNI_raw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/xKd1iEXekNI_raw.srt new file mode 100644 index 0000000000000000000000000000000000000000..7e9cfadae0179bf6e4b564ee808a4964bc51e4ea --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/xKd1iEXekNI_raw.srt @@ -0,0 +1,2784 @@ +1 +00:00:05,130 --> 00:00:07,670 +طب يا جماعة السلام عليكم اليوم ان شاء الله رح ناخد + +2 +00:00:07,670 --> 00:00:09,690 +design pattern جديد اللي هو ال state pattern + +3 +00:00:09,690 --> 00:00:13,930 +تعالوا أول حاجة نبدأ نقرأ الفقرة الأولى ناخد فكرة + +4 +00:00:13,930 --> 00:00:17,310 +إيش هو ال design ال state design pattern و هدفه و + +5 +00:00:17,310 --> 00:00:22,070 +بعدين خلينا نفصل فيها بقول هنا the main idea of + +6 +00:00:22,070 --> 00:00:25,150 +the state pattern is to allow the object for + +7 +00:00:25,150 --> 00:00:29,970 +changing its behavior without changing its classIt + +8 +00:00:29,970 --> 00:00:31,810 +means that I want to change the behavior of the + +9 +00:00:31,810 --> 00:00:35,850 +object without changing anything in its class Also + +10 +00:00:35,850 --> 00:00:38,570 +by implementing it, the code should remain cleaner + +11 +00:00:38,570 --> 00:00:43,520 +without many if-else statements Because this part + +12 +00:00:43,520 --> 00:00:46,520 +is similar to another design pattern that we took + +13 +00:00:46,520 --> 00:00:49,760 +and it is clear that it is like a strategy. The + +14 +00:00:49,760 --> 00:00:52,940 +strategy was that I also had a certain object, we + +15 +00:00:52,940 --> 00:00:55,860 +called it context in those days, and this context, + +16 +00:00:56,020 --> 00:00:57,840 +its behavior needed to differ from time to time + +17 +00:00:57,840 --> 00:01:00,480 +from the algorithm that it was working on. So I + +18 +00:01:00,480 --> 00:01:05,020 +used to + +19 +00:01:05,020 --> 00:01:07,920 +design each algorithm in an independent class and + +20 +00:01:07,920 --> 00:01:11,900 +changeEach algorithm is called in this case a + +21 +00:01:11,900 --> 00:01:14,300 +strategy and they all follow the same interface + +22 +00:01:14,300 --> 00:01:17,580 +and the context or application takes an object + +23 +00:01:17,580 --> 00:01:20,760 +from it as a strategy and I create a set method to + +24 +00:01:20,760 --> 00:01:24,260 +give it a new algorithm as a new object and this + +25 +00:01:24,260 --> 00:01:26,240 +is how I create new strategies without changing + +26 +00:01:26,240 --> 00:01:30,550 +anything on my objectNow actually the state + +27 +00:01:30,550 --> 00:01:35,130 +pattern is similar to the strategy pattern, but it + +28 +00:01:35,130 --> 00:01:39,470 +is used for more complicated cases when the + +29 +00:01:39,470 --> 00:01:42,890 +strategies have relations between them What does + +30 +00:01:42,890 --> 00:01:46,490 +this mean? Currently, in the strategy pattern, for + +31 +00:01:46,490 --> 00:01:48,650 +example, when the mobile works in more than one + +32 +00:01:48,650 --> 00:01:53,650 +case, such as offline, online, battery low, these + +33 +00:01:53,650 --> 00:01:55,990 +are different algorithms, but they have nothing to + +34 +00:01:55,990 --> 00:01:58,010 +do with each other. This algorithm does not know + +35 +00:01:58,010 --> 00:02:00,050 +anything about the other algorithm. Each strategy + +36 +00:02:00,050 --> 00:02:03,610 +is completely separate from the other strategies. + +37 +00:02:04,250 --> 00:02:08,830 +But we see cases where the algorithm that operates + +38 +00:02:08,830 --> 00:02:12,000 +in them is the one that determineshow to move to + +39 +00:02:12,000 --> 00:02:15,080 +another algorithm. Okay? There is more complexity + +40 +00:02:15,080 --> 00:02:19,340 +that algorithms move from one state to another + +41 +00:02:19,340 --> 00:02:22,180 +state. In this case, we do not call it algorithm. + +42 +00:02:22,360 --> 00:02:27,160 +When Syria controls how to move to another state, + +43 +00:02:27,260 --> 00:02:31,700 +we call it state. Okay? Also, this topic is not + +44 +00:02:31,700 --> 00:02:34,940 +clear yet. To make it clearer, let's talk about + +45 +00:02:34,940 --> 00:02:39,920 +exactly when we will need the state design + +46 +00:02:39,920 --> 00:02:40,260 +pattern. + +47 +00:02:47,250 --> 00:02:51,310 +In short, the state design pattern is used a lot + +48 +00:02:51,310 --> 00:02:56,190 +to represent something that we call in the design + +49 +00:02:56,190 --> 00:02:58,930 +of devices and equipment The finite state machine + +50 +00:02:58,930 --> 00:03:05,190 +The finite state machine is a method used by + +51 +00:03:05,190 --> 00:03:08,510 +engineers and designers to represent systems or + +52 +00:03:08,510 --> 00:03:10,870 +devices and how these devices move from one state + +53 +00:03:10,870 --> 00:03:14,040 +to another and what are the eventsWhich makes it + +54 +00:03:14,040 --> 00:03:18,700 +move from one cell to another For example, a group + +55 +00:03:18,700 --> 00:03:22,860 +of engineers came and designed the vending machine + +56 +00:03:29,060 --> 00:03:31,220 +The one that sells it, the one that you put money + +57 +00:03:31,220 --> 00:03:34,020 +in it, just like tea and coffee, you put money in + +58 +00:03:34,020 --> 00:03:37,840 +it and it chooses to send you the item you want So + +59 +00:03:37,840 --> 00:03:40,520 +now when this machine comes to design it, the + +60 +00:03:40,520 --> 00:03:42,940 +first thing we think about is what are the states + +61 +00:03:42,940 --> 00:03:45,880 +that the machine has If you go to the machine of + +62 +00:03:45,880 --> 00:03:51,480 +tea and coffee, you choose tea, you press it, will + +63 +00:03:51,480 --> 00:03:55,570 +it make tea for you? No, why?Because you didn't + +64 +00:03:55,570 --> 00:03:58,070 +put money in it, right or wrong? So I'm telling + +65 +00:03:58,070 --> 00:04:01,750 +you, to design something like that, that in the + +66 +00:04:01,750 --> 00:04:05,510 +first machine, there will be an idle state What is + +67 +00:04:05,510 --> 00:04:09,010 +an idle state? It means that there is nothing in + +68 +00:04:09,010 --> 00:04:15,170 +it Now, the other state is moving to another + +69 +00:04:15,170 --> 00:04:19,330 +state, which is waiting for you to put an item in + +70 +00:04:19,330 --> 00:04:22,190 +it, okay? The second state is waiting + +71 +00:04:25,800 --> 00:04:30,900 +for choice what does it mean? it depends on your + +72 +00:04:30,900 --> 00:04:35,600 +choice this is the first case and this is the + +73 +00:04:35,600 --> 00:04:39,520 +second case there is also a third case which is + +74 +00:04:39,520 --> 00:04:44,360 +preparing after choosing any item, what does it + +75 +00:04:44,360 --> 00:04:48,140 +start with? it starts with preparation if the + +76 +00:04:48,140 --> 00:04:52,670 +device is in idle modeOkay, what makes it move to + +77 +00:04:52,670 --> 00:04:55,770 +waiting for choice? There is only one event that + +78 +00:04:55,770 --> 00:04:58,010 +makes it move to waiting for choice, which is + +79 +00:04:58,010 --> 00:05:01,570 +what? Yes, coin inserted. + +80 +00:05:04,050 --> 00:05:06,190 +That is, I inserted a coin. This is called an + +81 +00:05:06,190 --> 00:05:08,830 +event. The event is what makes the device move + +82 +00:05:08,830 --> 00:05:15,010 +from one state to another state. Okay, it moved to + +83 +00:05:15,010 --> 00:05:16,330 +the state of the coin inserted in the state of + +84 +00:05:16,330 --> 00:05:20,850 +waiting for choice. Because, of course, in a + +85 +00:05:20,850 --> 00:05:23,270 +situation of waiting for a choice, if you enter a + +86 +00:05:23,270 --> 00:05:27,930 +coin, it should not respond. Okay? We are talking + +87 +00:05:27,930 --> 00:05:30,130 +about the simplest example of a vending machine. + +88 +00:05:30,350 --> 00:05:34,430 +Of course, it is more complicated than that. Okay? + +89 +00:05:34,430 --> 00:05:37,810 +But we assume that I entered a coin because it + +90 +00:05:37,810 --> 00:05:41,560 +moved to a state of waiting for a choice.It means + +91 +00:05:41,560 --> 00:05:43,460 +that if you enter another coin, it will give it to + +92 +00:05:43,460 --> 00:05:46,360 +you, it will not answer to any event, it will not + +93 +00:05:46,360 --> 00:05:49,500 +answer to the coin inserted event Now he is + +94 +00:05:49,500 --> 00:05:51,840 +waiting for a choice, what is he waiting for? What + +95 +00:05:51,840 --> 00:05:53,680 +is the event that makes him move to another case? + +96 +00:05:54,560 --> 00:05:57,740 +Now you can put two events in it, you can even + +97 +00:05:57,740 --> 00:06:03,560 +choose an item, item selected + +98 +00:06:06,120 --> 00:06:08,160 +Okay, I chose item, I select it and I move to + +99 +00:06:08,160 --> 00:06:13,760 +preparing mode I can choose to turn off cancel, to + +100 +00:06:13,760 --> 00:06:16,900 +cancel the whole process In this case, when you + +101 +00:06:16,900 --> 00:06:20,500 +press cancel, it will give you the money and it + +102 +00:06:20,500 --> 00:06:25,800 +will go back to what mode? To item mode Because it + +103 +00:06:25,800 --> 00:06:29,440 +is preparing, it is supposed to, while it is + +104 +00:06:29,440 --> 00:06:31,540 +preparing, it does not change its state except in + +105 +00:06:31,540 --> 00:06:36,830 +one case What is it? That the item gets ready Ok, + +106 +00:06:37,010 --> 00:06:40,610 +if he is preparing and he presses the button to + +107 +00:06:40,610 --> 00:06:43,870 +choose an item, what does he do? Nothing. He puts + +108 +00:06:43,870 --> 00:06:46,310 +a coin, also nothing. He is not supposed to + +109 +00:06:46,310 --> 00:06:49,130 +respond to it. So the only event that makes him + +110 +00:06:49,130 --> 00:06:54,410 +move from preparing state to item ready. + +111 +00:06:55,890 --> 00:06:58,250 +And it downloads it for you to take it. And he + +112 +00:06:58,250 --> 00:07:03,000 +goes back to the idle state.Okay? Because this + +113 +00:07:03,000 --> 00:07:07,000 +drawing that we see, they call it finite state + +114 +00:07:07,000 --> 00:07:11,660 +machine diagram Finite state machine diagram. Why + +115 +00:07:11,660 --> 00:07:17,880 +did they name this name? State machine is a + +116 +00:07:17,880 --> 00:07:20,940 +machine because we express it as a machineState is + +117 +00:07:20,940 --> 00:07:23,020 +when we express the state of the machine and + +118 +00:07:23,020 --> 00:07:27,600 +finite because it is extremely limited In the end, + +119 +00:07:27,740 --> 00:07:30,400 +these states move from state to state and back to + +120 +00:07:30,400 --> 00:07:33,980 +state to the ideal that starts with it, okay? + +121 +00:07:34,820 --> 00:07:36,840 +Because this example that we presented is a simple + +122 +00:07:36,840 --> 00:07:39,280 +example. Actually, when they design real devices, + +123 +00:07:40,040 --> 00:07:42,700 +such as washing machines, refrigerators, robots, + +124 +00:07:43,340 --> 00:07:47,400 +okay? A lot of people use it to design devices. Of + +125 +00:07:47,400 --> 00:07:49,280 +course, this design that they make as a drawing in + +126 +00:07:49,280 --> 00:07:52,260 +the end turns into code. If you look at modern + +127 +00:07:52,260 --> 00:07:56,030 +devices, they are all embedded systems.It's all + +128 +00:07:56,030 --> 00:08:00,610 +programmed. Washing machines used to be all + +129 +00:08:00,610 --> 00:08:02,570 +electronic devices, did you notice? No, it's all + +130 +00:08:02,570 --> 00:08:06,070 +microcontrollers, processor, and it's all + +131 +00:08:06,070 --> 00:08:07,630 +programmed, there's code written on it, and it + +132 +00:08:07,630 --> 00:08:10,730 +does all of its functionality. So this drawing + +133 +00:08:10,730 --> 00:08:13,950 +that we do is a preparation for what? That all of + +134 +00:08:13,950 --> 00:08:19,750 +this turns into coding. Usually, this is used by + +135 +00:08:19,750 --> 00:08:22,370 +mechatronics engineers and electronics engineers + +136 +00:08:22,370 --> 00:08:25,810 +to determine how how the device will work, what + +137 +00:08:25,810 --> 00:08:27,310 +are the cases it will have, and how it will move + +138 +00:08:27,310 --> 00:08:30,330 +from one case to another case. Circles represent + +139 +00:08:30,330 --> 00:08:34,290 +states, and rectangles represent events that make + +140 +00:08:34,290 --> 00:08:37,350 +it move from one state to another state. As I + +141 +00:08:37,350 --> 00:08:40,330 +said, usually the state-machine diagram will be + +142 +00:08:40,330 --> 00:08:42,910 +more complicated than that. For example, this is a + +143 +00:08:42,910 --> 00:08:45,350 +state-machine diagram for the media player, how + +144 +00:08:45,350 --> 00:08:50,290 +the media player works. This is the number of + +145 +00:08:50,290 --> 00:08:53,350 +events that have more than we will see it in the + +146 +00:08:53,350 --> 00:08:57,790 +next lecture but today we will use a simple + +147 +00:08:57,790 --> 00:09:02,990 +example like this now if we use this example and + +148 +00:09:02,990 --> 00:09:08,950 +say that we want to code this example let's see + +149 +00:09:08,950 --> 00:09:13,430 +first how to code it and then we will see what is + +150 +00:09:13,430 --> 00:09:15,670 +the problem in it and how to apply the state + +151 +00:09:15,670 --> 00:09:20,950 +pattern to designOr we can turn any state machine + +152 +00:09:20,950 --> 00:09:25,430 +diagram code into code I mean, really, the state + +153 +00:09:25,430 --> 00:09:28,430 +pattern is used, from my point of view, mainly + +154 +00:09:28,430 --> 00:09:32,430 +when you are working on designing a finite state + +155 +00:09:32,430 --> 00:09:35,330 +machine and you want to turn it into code The + +156 +00:09:35,330 --> 00:09:38,830 +state pattern is specifically used for this case + +157 +00:09:42,080 --> 00:09:44,040 +Of course, you will study the finite state machine + +158 +00:09:44,040 --> 00:09:48,360 +diagrams in a subject in the computer science + +159 +00:09:48,360 --> 00:09:51,000 +course, which is the automata theoryOkay? I think + +160 +00:09:51,000 --> 00:09:53,200 +it was in the third or fourth year, I don't + +161 +00:09:53,200 --> 00:09:56,220 +remember, okay? But you will study in detail the + +162 +00:09:56,220 --> 00:09:58,820 +finite state machine and how we express any device + +163 +00:09:58,820 --> 00:10:02,320 +in a drawing in this way, states and events move + +164 +00:10:02,320 --> 00:10:06,120 +between them. We mean that your work as a + +165 +00:10:06,120 --> 00:10:08,800 +programmer in the end is not a design made on + +166 +00:10:08,800 --> 00:10:12,580 +paper, all this turns into code. Let's see now how + +167 +00:10:12,580 --> 00:10:13,320 +we turn it into code. + +168 +00:10:26,670 --> 00:10:28,150 +I will just copy the code from the previous + +169 +00:10:28,150 --> 00:10:43,770 +lecture Ok + +170 +00:10:43,770 --> 00:10:46,590 +guys, first thing we need to do is to make the + +171 +00:10:46,590 --> 00:10:48,410 +vending machine, so go and create a class, I will + +172 +00:10:48,410 --> 00:10:52,400 +name it no state vending machine vm means this is + +173 +00:10:52,400 --> 00:10:54,220 +the design of the vending machine without a state + +174 +00:10:54,220 --> 00:10:58,480 +pattern because the vending machine each button + +175 +00:10:58,480 --> 00:11:03,880 +has a certain function there is no button to + +176 +00:11:03,880 --> 00:11:07,240 +insert a coin this can be expressed as public void + +177 +00:11:07,240 --> 00:11:13,100 +insert coin so + +178 +00:11:13,100 --> 00:11:15,400 +that when I insert the coin it will call this + +179 +00:11:15,400 --> 00:11:18,380 +function and there is also a button to choose the + +180 +00:11:18,380 --> 00:11:18,680 +item + +181 +00:11:23,500 --> 00:11:26,220 +When I click on any item, it will ask for the item + +182 +00:11:26,220 --> 00:11:29,460 +to be selected. And there is also a function to + +183 +00:11:29,460 --> 00:11:29,820 +cancel. + +184 +00:11:33,170 --> 00:11:35,310 +represents the cancel button and there is a fourth + +185 +00:11:35,310 --> 00:11:40,770 +function public void which is item ready but this + +186 +00:11:40,770 --> 00:11:44,150 +is not what I call it, the system calls it when it + +187 +00:11:44,150 --> 00:11:47,850 +prepares the item these are the four cases or the + +188 +00:11:47,850 --> 00:11:52,110 +four events that the vending machine responds to + +189 +00:11:52,110 --> 00:11:56,750 +three of them for the user which is when he enters + +190 +00:11:56,750 --> 00:11:59,090 +a coin or chooses an item or makes a cancel and + +191 +00:11:59,090 --> 00:12:02,710 +one of them The system is what needs to be called + +192 +00:12:02,710 --> 00:12:07,830 +upon. Now, as we did in the days of the strategy + +193 +00:12:07,830 --> 00:12:12,410 +pattern, I made an insert coin. Do you see that + +194 +00:12:12,410 --> 00:12:13,630 +depending on the drawing that benefits from the + +195 +00:12:13,630 --> 00:12:16,610 +existing drawing, how will it behave if I insert a + +196 +00:12:16,610 --> 00:12:18,990 +coin? Do you see that the process of inserting the + +197 +00:12:18,990 --> 00:12:20,790 +coin will not respond to it except in one case? + +198 +00:12:20,950 --> 00:12:25,040 +What is it? it should be in idle position to + +199 +00:12:25,040 --> 00:12:28,360 +answer insert coin if it is in waiting for choice + +200 +00:12:28,360 --> 00:12:31,000 +position or preparing position it should not + +201 +00:12:31,000 --> 00:12:33,200 +answer, it should enter and give you the coin I am + +202 +00:12:33,200 --> 00:12:35,860 +not ready to accept an icon from you when it is in + +203 +00:12:35,860 --> 00:12:39,760 +idle position, I accept the icon to make this + +204 +00:12:39,760 --> 00:12:42,960 +process easier, we need to do something you are + +205 +00:12:42,960 --> 00:12:47,700 +here changed, his name is currentState means what? + +206 +00:12:48,040 --> 00:12:50,060 +For example, I have three states and I want to say + +207 +00:12:50,060 --> 00:12:51,240 +that this state is number one, this state is + +208 +00:12:51,240 --> 00:12:53,700 +number two, and this state is number three, okay? + +209 +00:12:55,880 --> 00:13:01,240 +And then I only define variables, constants. For + +210 +00:13:01,240 --> 00:13:04,480 +example, this is the case of the word number one + +211 +00:13:04,480 --> 00:13:07,000 +because it does not memorize numbers, okay? The + +212 +00:13:07,000 --> 00:13:10,420 +case of waiting, choice + +213 +00:13:26,930 --> 00:13:29,110 +Yes, it can be solved with an emulator as well But + +214 +00:13:29,110 --> 00:13:32,250 +we are representing cases 1,2,3 instead of saving + +215 +00:13:32,250 --> 00:13:37,290 +them, I put their names Because current state, we + +216 +00:13:37,290 --> 00:13:40,690 +haven't put it yet, and then what is this here? + +217 +00:13:42,190 --> 00:13:45,110 +What is this? Constructor, in order to go to the + +218 +00:13:45,110 --> 00:13:47,390 +current state, and as soon as the device starts + +219 +00:13:47,390 --> 00:13:52,810 +working, what does it do? Idle Idle, that is, when + +220 +00:13:52,810 --> 00:13:56,090 +I create an object it will be in the state of + +221 +00:13:56,090 --> 00:13:58,530 +what? idle until now they have programmed insert + +222 +00:13:58,530 --> 00:14:03,150 +coin when will it respond to insert coin? only if + +223 +00:14:03,150 --> 00:14:10,570 +the current state is equal to idle okay in this + +224 +00:14:10,570 --> 00:14:13,510 +case it accepts the coin so you print a message + +225 +00:14:13,510 --> 00:14:19,850 +for example coin inserted check coin for example + +226 +00:14:19,850 --> 00:14:23,310 +and move to waiting + +227 +00:14:25,440 --> 00:14:31,580 +for choice state which is now there was an ideal + +228 +00:14:31,580 --> 00:14:33,860 +case and he inserted a coin and he got the coin he + +229 +00:14:33,860 --> 00:14:38,880 +himself wants to move to what? to another case so + +230 +00:14:38,880 --> 00:14:43,140 +see now the state is the one that wants to move to + +231 +00:14:43,140 --> 00:14:45,980 +what? to another state so here we go and say + +232 +00:14:45,980 --> 00:14:49,760 +current state will change and become what? waiting + +233 +00:14:49,760 --> 00:14:51,480 +choice + +234 +00:14:53,990 --> 00:14:55,810 +This is what we are talking about, that the state + +235 +00:14:55,810 --> 00:14:59,130 +has a relation between them. Okay? Okay, else, + +236 +00:14:59,190 --> 00:15:03,330 +what is this else? Other than that, if I look at + +237 +00:15:03,330 --> 00:15:05,390 +it, the coin inserted, the share of the event on + +238 +00:15:05,390 --> 00:15:11,370 +the coin inserted is only present up there. But it + +239 +00:15:11,370 --> 00:15:14,030 +has an effect only if it is in an ideal state. + +240 +00:15:14,130 --> 00:15:17,010 +Other than that, if it is in any case, and I made + +241 +00:15:17,010 --> 00:15:20,510 +a coin inserted, what should it do? Do nothing, or + +242 +00:15:20,510 --> 00:15:23,420 +it will eject the coin. it will return it to you + +243 +00:15:23,420 --> 00:15:27,800 +here it + +244 +00:15:27,800 --> 00:15:29,920 +will tell you in any other case if it was in any + +245 +00:15:29,920 --> 00:15:32,460 +state and you entered a coin it will tell you to + +246 +00:15:32,460 --> 00:15:36,420 +eject the coin it will show you the coin that you + +247 +00:15:36,420 --> 00:15:39,500 +entered this is in the case of inserting a coin + +248 +00:15:39,500 --> 00:15:42,860 +because in the case of a select item when does the + +249 +00:15:42,860 --> 00:15:46,040 +select item work? if it was in the waiting state + +250 +00:15:46,040 --> 00:15:49,350 +only otherwise it does not respond to anythingA + +251 +00:15:49,350 --> 00:15:51,210 +small child came to click on buttons and there was + +252 +00:15:51,210 --> 00:15:53,030 +no money, I did not put any money. Will the + +253 +00:15:53,030 --> 00:15:58,310 +machine work? No. So if the current state was + +254 +00:15:58,310 --> 00:15:58,990 +waiting, + +255 +00:16:03,030 --> 00:16:10,480 +choice and I pressed select item in a calm state I + +256 +00:16:10,480 --> 00:16:15,420 +will say for example item selected start preparing + +257 +00:16:15,420 --> 00:16:19,440 +item this is the item I chose this is the current + +258 +00:16:19,440 --> 00:16:23,180 +state and now we will change it and say current + +259 +00:16:23,180 --> 00:16:28,100 +state prepared + +260 +00:16:28,100 --> 00:16:31,180 +if you remember in the strategy when we worked on + +261 +00:16:31,180 --> 00:16:33,980 +the strategy we did F statement but the situation + +262 +00:16:33,980 --> 00:16:38,120 +did not change If F runs this code, else F runs + +263 +00:16:38,120 --> 00:16:41,080 +another code But here they enter each other, the + +264 +00:16:41,080 --> 00:16:44,680 +state itself will transfer or change to another + +265 +00:16:44,680 --> 00:16:48,800 +state Of course, until now we have not applied the + +266 +00:16:48,800 --> 00:16:54,040 +strategy pattern This is tiring work If I get + +267 +00:16:54,040 --> 00:16:57,300 +else, what does it mean else? For any state other + +268 +00:16:57,300 --> 00:17:01,420 +than that I chose an item and I was not in a + +269 +00:17:01,420 --> 00:17:03,280 +waiting state Supposedly it does not do anything + +270 +00:17:04,450 --> 00:17:14,890 +system.out.println do nothing now + +271 +00:17:14,890 --> 00:17:19,590 +cancel event cancel is present only once it comes + +272 +00:17:19,590 --> 00:17:21,930 +out of any circle from waiting it means that + +273 +00:17:21,930 --> 00:17:24,970 +cancel does not work unless the device is in + +274 +00:17:24,970 --> 00:17:31,090 +waiting state if current state is equal to waiting + +275 +00:17:50,590 --> 00:17:53,490 +choice I want to say for example cancelling order + +276 +00:17:53,490 --> 00:17:56,850 +and + +277 +00:17:56,850 --> 00:18:01,810 +and it does eject the coin, right? this is not + +278 +00:18:01,810 --> 00:18:05,030 +cancel, right? and we go and say current state + +279 +00:18:05,030 --> 00:18:12,780 +return to me, no no idea otherwise do nothing + +280 +00:18:12,780 --> 00:18:17,760 +right or not guys? because we are done we only + +281 +00:18:17,760 --> 00:18:22,780 +have the inner event which is the item ready okay + +282 +00:18:22,780 --> 00:18:26,000 +this should also be the current state to respond + +283 +00:18:26,000 --> 00:18:33,160 +to this event that is preparing okay + +284 +00:18:33,160 --> 00:18:36,840 +if it was preparing and the item came ready okay I + +285 +00:18:36,840 --> 00:18:44,450 +want to tell himfinish take your item مثلا take + +286 +00:18:44,450 --> 00:18:51,430 +your item و بعدين بروح ل current state و بحطها + +287 +00:18:51,430 --> 00:19:00,510 +idle غير ذلك هيقوله + +288 +00:19:00,510 --> 00:19:05,620 +do nothingThat's how we programmed it, with what? + +289 +00:19:06,360 --> 00:19:08,920 +With fStatements And if I go now to the main + +290 +00:19:08,920 --> 00:19:13,680 +method, okay? I want to say no state VM What do I + +291 +00:19:13,680 --> 00:19:16,760 +do? I remove the object from whom? From the state + +292 +00:19:16,760 --> 00:19:22,240 +machine, no state VM We want to run it, if we go + +293 +00:19:22,240 --> 00:19:24,720 +to the vending machine, we press a button For + +294 +00:19:24,720 --> 00:19:27,080 +example, a small child came and made a select item + +295 +00:19:27,080 --> 00:19:30,180 +without putting anything Here at this method, what + +296 +00:19:30,180 --> 00:19:34,460 +should be printed for you? Nothing. VM, again + +297 +00:19:34,460 --> 00:19:36,940 +select item, also nothing. It will not answer + +298 +00:19:36,940 --> 00:19:44,200 +except what? Insert coin. Okay? Again, I do insert + +299 +00:19:44,200 --> 00:19:46,340 +coin after that. The second one will not answer + +300 +00:19:46,340 --> 00:19:49,300 +except that. One should say that in reality, the + +301 +00:19:49,300 --> 00:19:50,260 +machine is swallowing. Why don't you give it + +302 +00:19:50,260 --> 00:19:52,820 +money? Some people say no to money. Yes, it keeps + +303 +00:19:52,820 --> 00:19:56,500 +swallowing. But in the simple example we did, it + +304 +00:19:56,500 --> 00:20:01,660 +takes what? One time. Ok, what can we say about + +305 +00:20:01,660 --> 00:20:04,240 +VM? Select item, + +306 +00:20:06,800 --> 00:20:09,540 +ok? Select item, what should happen now? It should + +307 +00:20:09,540 --> 00:20:12,860 +prepare in the item, it makes select for the item, + +308 +00:20:13,640 --> 00:20:15,000 +let's say cancel + +309 +00:20:17,770 --> 00:20:21,170 +One wants to earn money, he wants an item, he + +310 +00:20:21,170 --> 00:20:23,030 +wants money. No, that's it. The currency is + +311 +00:20:23,030 --> 00:20:26,910 +supposed to not respond to it. If he is preparing + +312 +00:20:26,910 --> 00:20:30,030 +and doing something else, select item, it also + +313 +00:20:30,030 --> 00:20:33,390 +does not respond. If he is preparing and doing + +314 +00:20:33,390 --> 00:20:35,930 +insert coin, it is also supposed to not respond. + +315 +00:20:36,630 --> 00:20:39,010 +Except in the case when he prepares for the item + +316 +00:20:39,010 --> 00:20:44,360 +to become ready, he breaks his item. finish and it + +317 +00:20:44,360 --> 00:20:47,160 +goes back again to where? to idle now it became + +318 +00:20:47,160 --> 00:20:51,380 +idle if we do item select select item it doesn't + +319 +00:20:51,380 --> 00:20:54,520 +work it has to insert what? coin so now if I run + +320 +00:20:54,520 --> 00:21:01,820 +this code first + +321 +00:21:01,820 --> 00:21:05,800 +two cases do nothing when I inserted coin coin + +322 +00:21:05,800 --> 00:21:08,900 +inserted make sure of it I inserted coin behind it + +323 +00:21:08,900 --> 00:21:12,160 +again insert coin this one he told me to eject + +324 +00:21:12,160 --> 00:21:16,980 +coin after that select item he chose the item and + +325 +00:21:16,980 --> 00:21:19,680 +then he prepared it because after the select item + +326 +00:21:19,680 --> 00:21:23,580 +I cancelled it and he told me to do nothing I did + +327 +00:21:23,580 --> 00:21:25,480 +the select item again and he told me to do nothing + +328 +00:21:25,480 --> 00:21:29,980 +I did insert coin and he told me to eject coin + +329 +00:21:29,980 --> 00:21:34,260 +item ready he told me to finish and take your item + +330 +00:21:34,260 --> 00:21:37,690 +after that you told me to select item again So he + +331 +00:21:37,690 --> 00:21:41,130 +worked with me in a proper way. Until now, we have + +332 +00:21:41,130 --> 00:21:44,410 +not applied the state. We worked as F statements. + +333 +00:21:45,090 --> 00:21:46,970 +Now, it is clear that the problem with this design + +334 +00:21:46,970 --> 00:21:51,530 +is that all the algorithms, steps and details are + +335 +00:21:51,530 --> 00:21:55,370 +gathered in one class as F statements. This means + +336 +00:21:55,370 --> 00:21:58,850 +that in our case, the state diagram is very + +337 +00:21:58,850 --> 00:22:02,480 +simple.It is really on the ground of reality that + +338 +00:22:02,480 --> 00:22:06,480 +this state machine diagram can be 50 circles in 50 + +339 +00:22:06,480 --> 00:22:08,380 +states and they keep moving between them and + +340 +00:22:08,380 --> 00:22:11,660 +events keep coming and going This means that you + +341 +00:22:11,660 --> 00:22:14,100 +need to keep your mind going back and forth with + +342 +00:22:14,100 --> 00:22:16,980 +F's and statements and else F else F because of + +343 +00:22:16,980 --> 00:22:19,360 +what? To make the shape and some of them are going + +344 +00:22:19,360 --> 00:22:22,740 +and some of them are coming You have to think + +345 +00:22:22,740 --> 00:22:26,680 +about all the design and put all the design in one + +346 +00:22:26,680 --> 00:22:29,480 +classIn the end, if you want to change to F + +347 +00:22:29,480 --> 00:22:31,920 +statements, you need to add a new state, you need + +348 +00:22:31,920 --> 00:22:33,620 +to add a new condition, you need to come here and + +349 +00:22:33,620 --> 00:22:38,780 +change in the code, and you need to have all this + +350 +00:22:38,780 --> 00:22:42,540 +design in front of you so that you can design the + +351 +00:22:42,540 --> 00:22:46,160 +code, and each modification requires a new F and a + +352 +00:22:46,160 --> 00:22:49,720 +new L, so we will spend all day calculating the + +353 +00:22:49,720 --> 00:22:51,200 +code of the Venn machine. + +354 +00:22:55,340 --> 00:22:58,560 +Similarly, when you add a new algorithm, you need + +355 +00:22:58,560 --> 00:23:02,360 +to add a new F keyThis is the same idea, but more + +356 +00:23:02,360 --> 00:23:04,980 +difficult. Why? Because there is a link between + +357 +00:23:04,980 --> 00:23:07,220 +states, and this goes to another state, and this + +358 +00:23:07,220 --> 00:23:10,000 +goes back to another state. Okay? So the topic is + +359 +00:23:10,000 --> 00:23:13,020 +more difficult. In strategy, it was easier because + +360 +00:23:13,020 --> 00:23:16,060 +the algorithms have nothing to do with each other. + +361 +00:23:16,340 --> 00:23:18,680 +So that's it, you add a new algorithm, you put an + +362 +00:23:18,680 --> 00:23:20,680 +L and that's it. But not this one, you have to + +363 +00:23:20,680 --> 00:23:23,360 +think again. Okay, where does this go? Where does + +364 +00:23:23,360 --> 00:23:25,780 +this go back? And so on. Right? Because there is a + +365 +00:23:25,780 --> 00:23:28,740 +link between whom? Between states. And this is the + +366 +00:23:28,740 --> 00:23:31,510 +difference between the word state and strategy.The + +367 +00:23:31,510 --> 00:23:34,290 +state is a case that can lead you to another case. + +368 +00:23:35,230 --> 00:23:37,290 +The strategy is an algorithm that has nothing to + +369 +00:23:37,290 --> 00:23:41,730 +do with another strategy. The state pattern and + +370 +00:23:41,730 --> 00:23:45,290 +the strategy patternBoth of them serve the same + +371 +00:23:45,290 --> 00:23:46,510 +goal that in the end I don't want to change the + +372 +00:23:46,510 --> 00:23:49,450 +class of the vending machine and I want to change + +373 +00:23:49,450 --> 00:23:52,950 +the state without affecting it. But the difference + +374 +00:23:52,950 --> 00:23:55,430 +is that the states control other states and move + +375 +00:23:55,430 --> 00:23:57,650 +between each other, but the strategies are + +376 +00:23:57,650 --> 00:24:00,610 +completely separated from each other. Now let's + +377 +00:24:00,610 --> 00:24:03,550 +see how to redesign this code by applying the + +378 +00:24:03,550 --> 00:24:08,630 +state pattern in order to avoid the use of the if + +379 +00:24:08,630 --> 00:24:12,540 +statement.And the design of the machine should be + +380 +00:24:12,540 --> 00:24:15,440 +divided into different classes So that if I want + +381 +00:24:15,440 --> 00:24:17,880 +to change in a certain part, I go to a certain + +382 +00:24:17,880 --> 00:24:20,280 +state and change only in it without affecting + +383 +00:24:20,280 --> 00:24:24,840 +others Okay, how do we do it? Pay attention to me + +384 +00:24:24,840 --> 00:24:29,520 +I'm going to make another class for the vending + +385 +00:24:29,520 --> 00:24:36,140 +machine called StateVM We made it NoStateVM This + +386 +00:24:36,140 --> 00:24:36,820 +is StateVM + +387 +00:24:41,880 --> 00:24:46,040 +Also, we make methods for the four buttons Insert, + +388 +00:24:47,460 --> 00:24:52,580 +Coin, Select, + +389 +00:24:54,000 --> 00:25:07,460 +Item, Item, + +390 +00:25:08,220 --> 00:25:10,200 +Ready + +391 +00:25:13,240 --> 00:25:20,040 +These are the four cases or the events that the + +392 +00:25:20,040 --> 00:25:24,480 +vending machine responds to The idea + +393 +00:25:24,480 --> 00:25:27,300 +of applying the state pattern is as follows The + +394 +00:25:27,300 --> 00:25:29,900 +first thing I want to tell you is that each state + +395 +00:25:29,900 --> 00:25:37,560 +of these states will turn into a class And we want + +396 +00:25:37,560 --> 00:25:40,480 +to make a class that unites them all togetherOkay, + +397 +00:25:40,600 --> 00:25:43,300 +so we're going to do the first thing, superclass, + +398 +00:25:44,160 --> 00:25:48,760 +we're going to call it AbstractState + +399 +00:25:48,760 --> 00:25:52,600 +Okay, and notice that I didn't make an interface + +400 +00:25:52,600 --> 00:25:56,700 +AbstractClass, why? Because I'm going to get it + +401 +00:25:56,700 --> 00:25:59,020 +and see why I'm going to get the AbstractClass + +402 +00:25:59,020 --> 00:26:02,300 +inside it, I'm going to make an object from state + +403 +00:26:02,300 --> 00:26:03,320 +VM + +404 +00:26:05,480 --> 00:26:08,520 +This is the vending machine itself. Notice that + +405 +00:26:08,520 --> 00:26:12,140 +the state has an object from the vending machine. + +406 +00:26:12,180 --> 00:26:13,920 +Why does it have an object from the vending + +407 +00:26:13,920 --> 00:26:17,580 +machine? Because the state does not change the + +408 +00:26:17,580 --> 00:26:20,400 +state of the vending machine. The state is the one + +409 +00:26:20,400 --> 00:26:23,100 +that decides. So if you are in an ideal situation + +410 +00:26:23,100 --> 00:26:27,110 +and you put a coinThe case of IDLE is that it + +411 +00:26:27,110 --> 00:26:30,550 +changes the state of the vending machine. So the + +412 +00:26:30,550 --> 00:26:34,110 +state is what is controlled in the context. How? + +413 +00:26:34,190 --> 00:26:36,430 +Let's see. For example, since I made an object + +414 +00:26:36,430 --> 00:26:41,610 +here, I want to make it protected. Why protected? + +415 +00:26:41,830 --> 00:26:44,450 +Because I want to get it from the subclasses. And + +416 +00:26:44,450 --> 00:26:49,570 +I want to make a constructor called abstract state + +417 +00:26:49,570 --> 00:26:51,630 +state VM + +418 +00:26:58,210 --> 00:27:03,930 +constructor, okay? Now, another point, all the + +419 +00:27:03,930 --> 00:27:08,050 +events that you have here, you see the existing + +420 +00:27:08,050 --> 00:27:11,710 +events, you convert them to where? Methods in this + +421 +00:27:11,710 --> 00:27:16,520 +class, abstract methodOkay, so we want to know + +422 +00:27:16,520 --> 00:27:18,680 +what are the events that are present in the + +423 +00:27:18,680 --> 00:27:21,700 +drawing. How many events do I have here? Four. + +424 +00:27:21,980 --> 00:27:23,880 +Four events. Keep in mind that the event can be + +425 +00:27:23,880 --> 00:27:26,360 +repeated in more than one circle, but right now + +426 +00:27:26,360 --> 00:27:30,480 +each event is different. Each event is represented + +427 +00:27:30,480 --> 00:27:34,180 +by a value. That's what he told me. Okay. The + +428 +00:27:34,180 --> 00:27:38,960 +first event is a coin inserted. + +429 +00:27:39,560 --> 00:27:40,980 +And this is abstract. + +430 +00:27:47,010 --> 00:27:52,390 +the second method item + +431 +00:27:52,390 --> 00:28:03,270 +selected the third method cancel + +432 +00:28:03,270 --> 00:28:12,150 +the fourth method these + +433 +00:28:12,150 --> 00:28:14,590 +cases or events these are not cases these are + +434 +00:28:14,590 --> 00:28:17,760 +events So we made a class that represents the + +435 +00:28:17,760 --> 00:28:21,080 +state and we converted all the events to abstract + +436 +00:28:21,080 --> 00:28:28,500 +methods Look at this I made the super class, but I + +437 +00:28:28,500 --> 00:28:31,600 +haven't made the cases yet Before I make the sub, + +438 +00:28:31,660 --> 00:28:34,960 +I need to go back to the state vending machine + +439 +00:28:34,960 --> 00:28:42,460 +Inside here, I need to make an abstract state + +440 +00:28:42,460 --> 00:28:48,630 +which is currentstate, which means in the end the + +441 +00:28:48,630 --> 00:28:52,290 +vending machine has a state, a certain state + +442 +00:28:52,290 --> 00:28:56,250 +public + +443 +00:28:56,250 --> 00:29:03,110 +state VM, what is this? constructor current state, + +444 +00:29:05,250 --> 00:29:06,550 +of course this is still not acceptable + +445 +00:29:10,220 --> 00:29:15,660 +بس بدنا نعمل أيضا method public void set current + +446 +00:29:15,660 --> 00:29:20,640 +state abstract + +447 +00:29:20,640 --> 00:29:26,780 +state current this + +448 +00:29:26,780 --> 00:29:33,280 +dot current state يساوي current state + +449 +00:29:39,420 --> 00:29:41,460 +This is a set method to give him the state Of + +450 +00:29:41,460 --> 00:29:43,360 +course, this hasn't benefited us from it yet + +451 +00:29:43,360 --> 00:29:45,580 +Because this is the abstract state that I have I + +452 +00:29:45,580 --> 00:29:47,520 +put the events in them Now let's start working on + +453 +00:29:47,520 --> 00:29:49,620 +the states that I have Because we want to make + +454 +00:29:49,620 --> 00:29:54,060 +from this class Three children The first class is + +455 +00:29:54,060 --> 00:30:01,920 +called idle And another class is called preparing + +456 +00:30:01,920 --> 00:30:05,440 +And + +457 +00:30:05,440 --> 00:30:09,710 +another class is called waiting choice. + +458 +00:30:27,170 --> 00:30:28,810 +Of course, you have to create a constructor + +459 +00:30:28,810 --> 00:30:32,050 +because the parent needs a parameter that takes + +460 +00:30:32,050 --> 00:30:34,930 +the state in it. And as soon as you extend the + +461 +00:30:34,930 --> 00:30:37,770 +abstract class, it will implement to whom? To all + +462 +00:30:37,770 --> 00:30:41,250 +the existing events. Now, let's work on this. + +463 +00:30:41,510 --> 00:30:46,030 +Okay, this is the idle. The idle now, guys, you + +464 +00:30:46,030 --> 00:30:48,150 +immediately look at the drawing. The idle responds + +465 +00:30:48,150 --> 00:30:51,770 +to any event only. Coin inserted. All the others + +466 +00:30:51,770 --> 00:30:54,790 +have nothing to do with it. Okay, so you just go + +467 +00:30:54,790 --> 00:30:56,350 +to the coin inserted here. + +468 +00:30:59,280 --> 00:31:03,320 +it executes the code that would be executed if I + +469 +00:31:03,320 --> 00:31:08,800 +entered coin for example, we can say coin coin + +470 +00:31:08,800 --> 00:31:16,340 +inserted check coin then move to waiting for + +471 +00:31:16,340 --> 00:31:23,080 +choice state same as what we did there and then + +472 +00:31:23,080 --> 00:31:26,200 +what should we do? we change the state of the + +473 +00:31:26,200 --> 00:31:29,200 +vending machineOkay? How do we change the state of + +474 +00:31:29,200 --> 00:31:33,700 +the vending machine? That's why I sent the vending + +475 +00:31:33,700 --> 00:31:36,000 +machine to the state The state of this gate is + +476 +00:31:36,000 --> 00:31:38,680 +what controls the vending machine So you go to the + +477 +00:31:38,680 --> 00:31:44,680 +vending machine and say set current state What + +478 +00:31:44,680 --> 00:31:48,100 +should this gate send him? It will create an + +479 +00:31:48,100 --> 00:31:53,160 +object From whom? From waitingchoice and you say + +480 +00:31:53,160 --> 00:31:58,780 +waiting choice, steal me, take who? The VM. The VM + +481 +00:31:58,780 --> 00:32:03,980 +will move between whom? The state. Okay? This is + +482 +00:32:03,980 --> 00:32:06,780 +in case of insert coin. If there is a case of item + +483 +00:32:06,780 --> 00:32:10,940 +selected, what should happen? Why is this wrong? + +484 +00:32:12,820 --> 00:32:14,180 +Waiting choice. + +485 +00:32:17,910 --> 00:32:21,610 +Yes, we didn't do it yet, this is still fine We + +486 +00:32:21,610 --> 00:32:28,150 +only did the idle, so let's all do extends to + +487 +00:32:28,150 --> 00:32:37,590 +abstract state When + +488 +00:32:37,590 --> 00:32:39,790 +I do extends, I go back to them again and program + +489 +00:32:39,790 --> 00:32:40,570 +them, okay? + +490 +00:33:03,430 --> 00:33:14,790 +abstract state I + +491 +00:33:14,790 --> 00:33:19,990 +took what + +492 +00:33:19,990 --> 00:33:21,210 +I wanted and left what I didn't want + +493 +00:33:30,740 --> 00:33:36,220 +it means abstract state + +494 +00:33:36,220 --> 00:33:41,940 +state + +495 +00:33:41,940 --> 00:33:42,940 +VM + +496 +00:34:07,400 --> 00:34:09,280 +I want to take only the methods + +497 +00:34:46,830 --> 00:34:48,630 +Why? There are thousands of scientists + +498 +00:35:10,540 --> 00:35:15,820 +Ok guys, let's go back to the item Set current + +499 +00:35:15,820 --> 00:35:21,960 +state, new waiting choice Yes, + +500 +00:35:22,040 --> 00:35:27,000 +it did extend, but it didn't implement the method + +501 +00:35:27,000 --> 00:35:30,740 +of the constructor yet Ok, let's go back to the + +502 +00:35:30,740 --> 00:35:33,300 +item, we said to put waiting choice, and now I + +503 +00:35:33,300 --> 00:35:41,210 +will put VM Ok, if I am in any class I am working + +504 +00:35:41,210 --> 00:35:43,050 +in the Idle class, and I pressed item selected, + +505 +00:35:43,130 --> 00:35:53,170 +what should it do? Here, do nothing I + +506 +00:35:53,170 --> 00:35:57,310 +pressed cancel, also do nothing, I pressed item + +507 +00:35:57,310 --> 00:36:00,720 +readydo nothing, they all do nothing, it only + +508 +00:36:00,720 --> 00:36:03,980 +responds to whom? to coin inserted, it executes a + +509 +00:36:03,980 --> 00:36:07,220 +specific code and changes what? to choice, you see + +510 +00:36:07,220 --> 00:36:10,600 +it moved to waiting for item, this is waiting + +511 +00:36:10,600 --> 00:36:15,200 +choice now it also does implement for all four, + +512 +00:36:15,240 --> 00:36:20,220 +but it only responds to whom? to item selected, it + +513 +00:36:20,220 --> 00:36:23,280 +means that if it is in waiting choice and you tell + +514 +00:36:23,280 --> 00:36:27,520 +it coin inserted, what should it do? do nothing it + +515 +00:36:27,520 --> 00:36:31,520 +will answer item selected and cancel because item + +516 +00:36:31,520 --> 00:36:38,600 +selected want to print a message that + +517 +00:36:38,600 --> 00:36:48,700 +item selected start preparing and + +518 +00:36:48,700 --> 00:36:56,840 +then VM current state new preparing + +519 +00:36:58,120 --> 00:37:05,460 +And I also send him the VM Now cancel System.out + +520 +00:37:05,460 --> 00:37:10,140 +.println EgyptCoin + +521 +00:37:10,140 --> 00:37:18,080 +And then I go to the VM SetCurrentState new idle + +522 +00:37:18,080 --> 00:37:22,330 +And I also send him the VM when the item is ready, + +523 +00:37:22,890 --> 00:37:25,270 +it does not respond to it when the item is ready + +524 +00:37:25,270 --> 00:37:27,890 +it is in the waiting choice mode the last case is + +525 +00:37:27,890 --> 00:37:31,550 +the preparing mode because the preparing mode + +526 +00:37:31,550 --> 00:37:35,030 +responds to any case when the item is ready when + +527 +00:37:35,030 --> 00:37:39,190 +the coin is inserted, it will say do nothing when + +528 +00:37:39,190 --> 00:37:42,390 +the item is selected, it will say do nothing when + +529 +00:37:42,390 --> 00:37:44,570 +the coin is cancelled, it will also say do nothing + +530 +00:37:44,570 --> 00:37:47,290 +here + +531 +00:37:52,840 --> 00:37:57,920 +take your item and then I change the case set + +532 +00:37:57,920 --> 00:38:01,700 +current state and I say new idle and I give him + +533 +00:38:01,700 --> 00:38:07,340 +the VM the idea here is that I program each case + +534 +00:38:07,340 --> 00:38:10,580 +one by one I don't look at all the drawings in + +535 +00:38:10,580 --> 00:38:13,540 +each class I look at the case and I look and I + +536 +00:38:13,540 --> 00:38:15,180 +look at the drawing who is the worst that came out + +537 +00:38:15,180 --> 00:38:17,320 +of it is the one that is programmed only the rest + +538 +00:38:17,320 --> 00:38:20,890 +are left empty or put in them without anythingSo + +539 +00:38:20,890 --> 00:38:25,550 +you are thinking in one moment in one state. There + +540 +00:38:25,550 --> 00:38:32,270 +is still an adjustment to go back to the vending + +541 +00:38:32,270 --> 00:38:35,150 +machine. In the end, I create an object from the + +542 +00:38:35,150 --> 00:38:37,550 +vending machine. When the vending machine starts + +543 +00:38:37,550 --> 00:38:41,210 +working, the current state tells it to create a + +544 +00:38:41,210 --> 00:38:47,450 +new idle and sends it this. Why this?Yes, see the + +545 +00:38:47,450 --> 00:38:50,630 +idea here is also one of the differences between + +546 +00:38:50,630 --> 00:38:53,030 +the strategy and the state that in the state, the + +547 +00:38:53,030 --> 00:38:56,750 +object gives itself to whom, that is, this vending + +548 +00:38:56,750 --> 00:38:59,570 +machine came to the state, take me and work with + +549 +00:38:59,570 --> 00:39:02,490 +me as you want and the state waits, waits for + +550 +00:39:02,490 --> 00:39:06,030 +whom? Events, a suitable event came, it is what + +551 +00:39:06,030 --> 00:39:08,790 +changes it, just like someone who has a house and + +552 +00:39:08,790 --> 00:39:10,590 +wants to prepare it, he says I have no claim and I + +553 +00:39:10,590 --> 00:39:13,640 +can rest my head, give it to whom?to the company + +554 +00:39:13,640 --> 00:39:16,980 +and the company has a carpenter and a carpenter + +555 +00:39:16,980 --> 00:39:20,200 +and a carpenter and a carpenter and a carpenter + +556 +00:39:20,200 --> 00:39:20,420 +and a carpenter and a carpenter and a carpenter + +557 +00:39:20,420 --> 00:39:20,420 +and a carpenter and a carpenter and a carpenter + +558 +00:39:20,420 --> 00:39:21,040 +and a carpenter and a carpenter and a carpenter + +559 +00:39:21,040 --> 00:39:21,300 +and a carpenter and a carpenter and a carpenter + +560 +00:39:21,300 --> 00:39:21,700 +and a carpenter and a carpenter and a carpenter + +561 +00:39:21,700 --> 00:39:22,560 +and a carpenter and a carpenter and a carpenter + +562 +00:39:22,560 --> 00:39:22,560 +and a carpenter and a carpenter and a carpenter + +563 +00:39:22,560 --> 00:39:24,700 +and a carpenter and a carpenter and a carpenter + +564 +00:39:24,700 --> 00:39:25,040 +and a carpenter and a carpenter and a carpenter + +565 +00:39:25,040 --> 00:39:26,180 +and a carpeter and a carpeter and a carpeter and a + +566 +00:39:26,180 --> 00:39:26,180 +carpeter and a carpeter and a carpeter and a + +567 +00:39:26,180 --> 00:39:26,180 +carpeter and a carpeter and a carpeter and a + +568 +00:39:26,180 --> 00:39:26,180 +carpeter and a carpeter and a carpeter and a + +569 +00:39:26,180 --> 00:39:26,180 +carpeter and a carpeter and a carpeter and a + +570 +00:39:26,180 --> 00:39:32,440 +carpeter and + +571 +00:39:32,440 --> 00:39:40,000 +a carpeter and a carpeter and a carpeter and a + +572 +00:39:40,000 --> 00:39:42,130 +carpeter and a carpeter and a carpeter and aThe + +573 +00:39:42,130 --> 00:39:44,110 +difference between the state and the strategy is + +574 +00:39:44,110 --> 00:39:45,390 +that the states communicate with each other, there + +575 +00:39:45,390 --> 00:39:47,310 +is communication between them. In the strategy, + +576 +00:39:47,450 --> 00:39:50,930 +no, each algorithm exists on its own. Let's + +577 +00:39:50,930 --> 00:39:54,770 +continue with the state vending machine. As I + +578 +00:39:54,770 --> 00:39:58,770 +said, I have buttons. I send him the state. The + +579 +00:39:58,770 --> 00:40:02,450 +answer is to insert a coin. Someone inserted a + +580 +00:40:02,450 --> 00:40:06,710 +coin. You go to the current state and say coin + +581 +00:40:06,710 --> 00:40:10,690 +inserted.Because, of course, the button can be + +582 +00:40:10,690 --> 00:40:12,730 +pressed and it can be pressed in any case. It can + +583 +00:40:12,730 --> 00:40:15,710 +be an idle case. I pressed a button because it has + +584 +00:40:15,710 --> 00:40:18,410 +nothing to do with the case. It is pressed as if + +585 +00:40:18,410 --> 00:40:21,230 +it is in a tracked state. Or if the case is idle + +586 +00:40:21,230 --> 00:40:23,130 +and I pressed coin inserted, it will respond to + +587 +00:40:23,130 --> 00:40:26,950 +it. If the case is anything else, it will not + +588 +00:40:26,950 --> 00:40:30,730 +respond. Select item is also a current state. + +589 +00:40:34,420 --> 00:40:36,940 +item selected, but you call the appropriate event + +590 +00:40:36,940 --> 00:40:44,740 +for it only current state I execute cancel item + +591 +00:40:44,740 --> 00:40:53,700 +ready current state but you call item ready let's + +592 +00:40:53,700 --> 00:40:58,180 +see the execution in the main leave all of them, + +593 +00:40:58,800 --> 00:41:08,480 +but instead of state state VM Ok, and run it + +594 +00:41:08,480 --> 00:41:12,640 +Because as we can see In the beginning, when I + +595 +00:41:12,640 --> 00:41:14,740 +told him select item, do nothing, do nothing + +596 +00:41:14,740 --> 00:41:18,620 +Insert coin, he told me what, coin inserted I put + +597 +00:41:18,620 --> 00:41:21,240 +coin behind it again, he told me what, do nothing + +598 +00:41:21,240 --> 00:41:24,600 +I made select item, he told me item selected I + +599 +00:41:24,600 --> 00:41:28,900 +made cancel, that's it, it became preparing, so he + +600 +00:41:28,900 --> 00:41:32,640 +told me do nothingand so on, it works the same way + +601 +00:41:32,640 --> 00:41:34,560 +because where is the ease in this matter? the + +602 +00:41:34,560 --> 00:41:37,440 +first thing is that I have the state vending + +603 +00:41:37,440 --> 00:41:42,640 +machine the vending machine itself I will not + +604 +00:41:42,640 --> 00:41:45,380 +change anything in it after that I can change the + +605 +00:41:45,380 --> 00:41:48,140 +states and add new states and make them classes + +606 +00:41:48,140 --> 00:41:50,780 +outside okay? but this class of the vending + +607 +00:41:50,780 --> 00:41:54,340 +machine will not change it only deals with the + +608 +00:41:54,340 --> 00:41:58,200 +current state and calls at each button a certain + +609 +00:41:58,200 --> 00:42:05,080 +event because states change each other every state + +610 +00:42:05,080 --> 00:42:07,420 +from inside to outside can be a current state and + +611 +00:42:07,420 --> 00:42:12,460 +can change this state states control each other in + +612 +00:42:12,460 --> 00:42:17,880 +case of vending machine but I will not change + +613 +00:42:17,880 --> 00:42:21,560 +anything in it because I want to add a new state + +614 +00:42:21,560 --> 00:42:26,380 +all I need to do is to create a new class that + +615 +00:42:26,380 --> 00:42:28,320 +represents this state for example + +616 +00:42:31,180 --> 00:42:35,240 +For example, let's say that I was preparing and I + +617 +00:42:35,240 --> 00:42:38,100 +said I want to add a case that after the item is + +618 +00:42:38,100 --> 00:42:43,200 +prepared, it moves to the waiting to take + +619 +00:42:43,200 --> 00:42:43,260 +position. + +620 +00:42:47,400 --> 00:42:50,660 +Here, for example, the item is ready and it moves + +621 +00:42:50,660 --> 00:42:52,500 +to the waiting machine position. + +622 +00:43:08,870 --> 00:43:09,930 +Waiting to take + +623 +00:43:14,610 --> 00:43:16,730 +then it goes back to the previous state. We want + +624 +00:43:16,730 --> 00:43:18,810 +to make this modification. To make this + +625 +00:43:18,810 --> 00:43:20,470 +modification, you need to do two things. The first + +626 +00:43:20,470 --> 00:43:23,410 +thing is that you have a new event added here. + +627 +00:43:23,570 --> 00:43:27,350 +Which is what? Item taken. So you need to go to + +628 +00:43:27,350 --> 00:43:30,890 +the abstract class and add the event. Because in + +629 +00:43:30,890 --> 00:43:32,490 +this case, in the addition case, it is not + +630 +00:43:32,490 --> 00:43:34,690 +preferable to use the abstract method. Why? + +631 +00:43:34,770 --> 00:43:37,130 +Because the abstract method will ruin where? + +632 +00:43:38,150 --> 00:43:39,370 +Everything else. Because everything needs to be + +633 +00:43:39,370 --> 00:43:45,900 +done. You can add a method, public void,item taken + +634 +00:43:45,900 --> 00:43:49,020 +and leave it blank because the meaning is to make + +635 +00:43:49,020 --> 00:43:54,740 +it override right or not? item taken and now make + +636 +00:43:54,740 --> 00:44:03,760 +a new class what do you call it? waiting to + +637 +00:44:03,760 --> 00:44:08,480 +take extends abstract + +638 +00:44:08,480 --> 00:44:09,960 +state + +639 +00:44:15,770 --> 00:44:18,950 +this is waiting to take, you answer to whom? there + +640 +00:44:18,950 --> 00:44:22,310 +is no need in all of these, you answer to the item + +641 +00:44:22,310 --> 00:44:25,330 +that is item taken so I leave all of these, put in + +642 +00:44:25,330 --> 00:44:28,190 +them do nothing, do nothing and override to whom? + +643 +00:44:28,750 --> 00:44:31,950 +to the method called item taken when the item is + +644 +00:44:31,950 --> 00:44:35,250 +taken, you still print it because you took the + +645 +00:44:35,250 --> 00:44:37,730 +item and you go to the VM and you say set current + +646 +00:44:37,730 --> 00:44:42,850 +state and you say newidle and you give him the VM + +647 +00:44:42,850 --> 00:44:45,790 +and we're done, okay? But you also need to go + +648 +00:44:45,790 --> 00:44:49,610 +where? To prepare and tell him when you have an + +649 +00:44:49,610 --> 00:44:57,170 +item ready, turn it into what? Into waiting to + +650 +00:44:57,170 --> 00:44:57,450 +take + +651 +00:45:00,750 --> 00:45:07,330 +Waiting to take is done and it becomes idle So + +652 +00:45:07,330 --> 00:45:10,590 +even if you think about design, this is an + +653 +00:45:10,590 --> 00:45:12,730 +important point that you work on each state + +654 +00:45:12,730 --> 00:45:17,580 +separately If you have a drawing of 50 statesOkay, + +655 +00:45:17,720 --> 00:45:19,580 +you think about each one individually, and each + +656 +00:45:19,580 --> 00:45:22,300 +one moves to a different place, and they work + +657 +00:45:22,300 --> 00:45:26,020 +together. But if I didn't work this way, and I put + +658 +00:45:26,020 --> 00:45:28,300 +them all in F statements, and I had to write all + +659 +00:45:28,300 --> 00:45:31,700 +the code with all its details, and all the F's in + +660 +00:45:31,700 --> 00:45:35,100 +one class,It is true that the complexity of the + +661 +00:45:35,100 --> 00:45:36,840 +code has increased because the number of classes + +662 +00:45:36,840 --> 00:45:39,480 +has increased, but the code is better extendable. + +663 +00:45:39,820 --> 00:45:43,880 +The class itself has not changed at all. What + +664 +00:45:43,880 --> 00:45:46,100 +changes is that you create new classes that + +665 +00:45:46,100 --> 00:45:49,300 +represent states and methods that represent the + +666 +00:45:49,300 --> 00:45:52,320 +existing events. The last point is the difference + +667 +00:45:52,320 --> 00:45:53,980 +between strategy and state. + +668 +00:45:56,630 --> 00:45:59,890 +in the strategy it had a context and through the + +669 +00:45:59,890 --> 00:46:03,110 +context there were 6 strategies with methods that + +670 +00:46:03,110 --> 00:46:06,950 +control the strategy that it takes once I say for + +671 +00:46:06,950 --> 00:46:09,170 +example a computer player, attacker, defender, + +672 +00:46:09,330 --> 00:46:12,030 +etc. I say 6 and these had nothing to do with each + +673 +00:46:12,030 --> 00:46:15,210 +other but in the case of the state, this is the + +674 +00:46:15,210 --> 00:46:21,410 +context and these come with states, each oneIt can + +675 +00:46:21,410 --> 00:46:24,150 +communicate with whom? With the other person. So + +676 +00:46:24,150 --> 00:46:27,630 +what do we say? The context itself gives way to + +677 +00:46:27,630 --> 00:46:30,550 +whom? To the first state. And the first state + +678 +00:46:30,550 --> 00:46:32,490 +continues to wait. Wait for what? For the + +679 +00:46:32,490 --> 00:46:35,830 +appropriate event. To move to whom? To the other + +680 +00:46:35,830 --> 00:46:39,850 +person. And they continue to change who? The state + +681 +00:46:39,850 --> 00:46:42,490 +of the context. Because when I press the button + +682 +00:46:42,490 --> 00:46:47,070 +that is there,It changes its shape according to + +683 +00:46:47,070 --> 00:46:53,730 +the current state of the state. As I + +684 +00:46:53,730 --> 00:46:57,110 +said, the state pattern is not one of the patterns + +685 +00:46:57,110 --> 00:47:02,490 +frequently used. It is used only when I work with + +686 +00:47:02,490 --> 00:47:06,370 +designers who design a system using the finite + +687 +00:47:06,370 --> 00:47:09,470 +state machine diagram. In this way, I need to + +688 +00:47:09,470 --> 00:47:13,420 +convert it into code to use the state.The next + +689 +00:47:13,420 --> 00:47:15,740 +lecture, God willing, we will take another + +690 +00:47:15,740 --> 00:47:18,800 +example, we will apply the state pattern on the + +691 +00:47:18,800 --> 00:47:21,880 +diagram or drawing that is present in the slide, + +692 +00:47:22,060 --> 00:47:24,320 +and it is a slightly more difficult drawing, okay? + +693 +00:47:24,920 --> 00:47:28,180 +And we will see today what is the state pattern + +694 +00:47:28,180 --> 00:47:30,660 +diagram, and we will finish the state pattern + +695 +00:47:30,660 --> 00:47:33,160 +completely in the next lecture, God willing. God + +696 +00:47:33,160 --> 00:47:33,380 +bless you. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/ynXM1RJzYgw.srt b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/ynXM1RJzYgw.srt new file mode 100644 index 0000000000000000000000000000000000000000..ca2931437ce95b9de2a694d0a375309478d6ecb1 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/ynXM1RJzYgw.srt @@ -0,0 +1,2726 @@ + +1 +00:00:05,620 --> 00:00:11,250 +Salam aleikum. Today we will take a new design + +2 +00:00:11,250 --> 00:00:14,890 +pattern which is the factory method. This is the + +3 +00:00:14,890 --> 00:00:17,710 +third design pattern after the factory and the + +4 +00:00:17,710 --> 00:00:21,050 +builder. We saw that in the factory or every design + +5 +00:00:21,050 --> 00:00:23,450 +pattern solves a particular problem. The goal of + +6 +00:00:23,450 --> 00:00:25,770 +the factory is to assemble the process of creating + +7 +00:00:25,770 --> 00:00:27,790 +objects that follow the same interface or + +8 +00:00:27,790 --> 00:00:30,410 +superclass in one class. So that the change is + +9 +00:00:30,410 --> 00:00:32,890 +concentrated in one place. And the client does not + +10 +00:00:32,890 --> 00:00:35,330 +know anything about the subclasses because it + +11 +00:00:35,330 --> 00:00:39,810 +deals only with the superclass. The builder pattern + +12 +00:00:39,810 --> 00:00:42,950 +I use in a specific case when I have to create the + +13 +00:00:42,950 --> 00:00:45,670 +object, the constructor takes a large number of + +14 +00:00:45,670 --> 00:00:48,490 +parameters, so its creation is difficult for the + +15 +00:00:48,490 --> 00:00:51,070 +client, so to facilitate the creation process, I + +16 +00:00:51,070 --> 00:00:54,230 +save the builder who does or supports the way of + +17 +00:00:54,230 --> 00:00:58,920 +creation step by step. It is like using the + +18 +00:00:58,920 --> 00:01:02,120 +setter method and then creating the object. The + +19 +00:01:02,120 --> 00:01:07,880 +third design pattern is the factory method. As + +20 +00:01:07,880 --> 00:01:10,100 +usual, let's read the explanation on the factory + +21 +00:01:10,100 --> 00:01:11,940 +method. By the way, the explanation that you will + +22 +00:01:11,940 --> 00:01:14,200 +find in any reference will be available on the + +23 +00:01:14,200 --> 00:01:16,620 +internet. Of course, we will see through our + +24 +00:01:16,620 --> 00:01:19,300 +reading that it is very difficult to understand + +25 +00:01:20,090 --> 00:01:22,130 +the meaning of the factory or any design pattern + +26 +00:01:22,130 --> 00:01:24,650 +without seeing examples that explain what it + +27 +00:01:24,650 --> 00:01:27,250 +means. So now we will try to read it before taking + +28 +00:01:27,250 --> 00:01:29,590 +the example to see if we will understand something + +29 +00:01:29,590 --> 00:01:31,870 +from it or not. After taking the example, we will + +30 +00:01:31,870 --> 00:01:35,410 +come back to this explanation to see how after the + +31 +00:01:35,410 --> 00:01:37,850 +example we will understand what is written. Now, + +32 +00:01:37,950 --> 00:01:41,410 +the factory method that you follow is the goal to + +33 +00:01:41,410 --> 00:01:45,710 +define an interface for creating an object, but let + +34 +00:01:45,710 --> 00:01:49,430 +subclasses decide which class to instantiate. + +35 +00:01:50,600 --> 00:01:53,560 +Factory method lets a class differ instantiation + +36 +00:01:53,560 --> 00:01:57,980 +to subclasses. طبعا هذا الكلام مش واضح بالنسبالك + +37 +00:01:57,980 --> 00:02:01,620 +صح؟ ممكن استخدم ال factory method لما كل class + +38 +00:02:01,620 --> 00:02:06,620 +cannot anticipate to anticipate تقدرش توقع the + +39 +00:02:06,620 --> 00:02:10,200 +class of object it must create, أو لما يكون عند ال + +40 +00:02:10,200 --> 00:02:13,020 +class wants its subclasses to specify the object + +41 +00:02:13,020 --> 00:02:19,240 +it creates, لما بدي ال class تقلب or from the + +42 +00:02:19,240 --> 00:02:21,940 +subclasses to define the objects that are being + +43 +00:02:21,940 --> 00:02:24,600 +created. Ok, this is not clear. To understand + +44 +00:02:24,600 --> 00:02:29,320 +this, we will take a number of examples from the + +45 +00:02:29,320 --> 00:02:31,740 +factory method to understand it and see its + +46 +00:02:31,740 --> 00:02:35,060 +different uses. The first example I want to + +47 +00:02:35,060 --> 00:02:36,980 +explain to understand the problem clearly. + +48 +00:02:39,420 --> 00:02:42,360 +Let's see the example that I will explain now. + +49 +00:02:46,740 --> 00:02:50,460 +Let me just delete some classes from the previous + +50 +00:02:50,460 --> 00:03:03,380 +lecture. Ok + +51 +00:03:03,380 --> 00:03:04,860 +guys, imagine that you want to create an + +52 +00:03:04,860 --> 00:03:08,520 +application mobile or web or whatever through + +53 +00:03:08,520 --> 00:03:13,000 +which you want to post on social media. You can + +54 +00:03:13,000 --> 00:03:17,460 +post on Facebook, Whatsapp, Twitter, any social + +55 +00:03:17,460 --> 00:03:20,880 +media network. In order to connect with any social + +56 +00:03:20,880 --> 00:03:24,340 +media network, you need a connector. Let's say a + +57 +00:03:24,340 --> 00:03:28,060 +library or a class that connects with the social + +58 +00:03:28,060 --> 00:03:29,220 +media network. It is strange that this connector + +59 +00:03:29,220 --> 00:03:31,280 +is provided by the social media network itself. + +60 +00:03:33,040 --> 00:03:35,220 +Facebook, for example, provides the Facebook + +61 +00:03:35,220 --> 00:03:37,680 +connector. Whatsapp also provides the connector. + +62 +00:03:38,970 --> 00:03:42,850 +You can imagine the connector as follows: I have an + +63 +00:03:42,850 --> 00:03:47,630 +interface called social media connector. Any social + +64 +00:03:47,630 --> 00:03:50,550 +media network you want to connect to, it actually + +65 +00:03:50,550 --> 00:03:53,410 +prints an interface called social media connector + +66 +00:03:53,410 --> 00:03:55,470 +and provides you with three methods to connect to + +67 +00:03:55,470 --> 00:03:59,130 +any social media network: login, post to send the + +68 +00:03:59,130 --> 00:04:03,970 +post, and logout because this interface is derived + +69 +00:04:03,970 --> 00:04:08,210 +from Facebook connector, for example. This class is + +70 +00:04:08,210 --> 00:04:10,950 +called Facebook Connector. Implements Social Media + +71 +00:04:12,100 --> 00:04:13,440 +Connector. And of course, as long as you have + +72 +00:04:13,440 --> 00:04:16,140 +implemented the interface, you have to implement + +73 +00:04:16,140 --> 00:04:19,200 +the three methods, but in different ways. For + +74 +00:04:19,200 --> 00:04:22,660 +example, login. Of course, I send the user my + +75 +00:04:22,660 --> 00:04:24,600 +password. Of course, there should be a code here, + +76 +00:04:24,700 --> 00:04:27,460 +but I ... because this is a demo, but it's okay. I + +77 +00:04:27,460 --> 00:04:30,180 +print a message because I'm logging into Facebook. + +78 +00:04:31,020 --> 00:04:34,400 +Post. Posting a message on Facebook. Logout. + +79 +00:04:34,840 --> 00:04:37,680 +Logging out from Facebook. So here, there is work + +80 +00:04:37,680 --> 00:04:42,110 +that is communicating with Facebook. The same + +81 +00:04:42,110 --> 00:04:47,290 +thing, Whatsapp connector. I + +82 +00:04:47,290 --> 00:04:49,410 +also made an implement for social media connector + +83 +00:04:49,410 --> 00:04:52,910 +and I have the method login and post and logout, + +84 +00:04:52,970 --> 00:04:56,710 +but it's different. I changed the word that I + +85 +00:04:56,710 --> 00:04:58,810 +printed to show that the code is different. Okay, + +86 +00:05:00,450 --> 00:05:06,770 +so now my code has an interface called social + +87 +00:05:06,770 --> 00:05:09,650 +media connector + +88 +00:05:12,410 --> 00:05:19,750 +تمام اتفرع منه تمام + +89 +00:05:19,750 --> 00:05:28,010 +اكتر من connector. هذا مثلا فيسبوك connector. + +90 +00:05:28,010 --> 00:05:30,390 +مثلا whatsapp connector + +91 +00:05:33,970 --> 00:05:37,550 +and so on. You can make other connectors because + +92 +00:05:37,550 --> 00:05:39,630 +these connectors, I have not used yet. These I have + +93 +00:05:39,630 --> 00:05:42,410 +not used yet but they connect me with social media + +94 +00:05:42,410 --> 00:05:45,090 +and I use them because especially in my + +95 +00:05:45,090 --> 00:05:49,570 +application, I want to make a class called facebook + +96 +00:05:49,570 --> 00:05:54,250 +poster. + +97 +00:05:54,250 --> 00:05:58,910 +This is the class to make a post on Facebook of + +98 +00:05:58,910 --> 00:06:02,250 +course, facebook poster to make a post on Facebook. + +99 +00:06:02,250 --> 00:06:06,420 +You have to use the Facebook Connector. Because I + +100 +00:06:06,420 --> 00:06:09,160 +want to post on WhatsApp, I want to create a + +101 +00:06:09,160 --> 00:06:12,840 +WhatsApp poster + +102 +00:06:12,840 --> 00:06:16,440 +through which the WhatsApp Connector will use to + +103 +00:06:16,440 --> 00:06:20,140 +post on WhatsApp. Because this class is going to + +104 +00:06:20,140 --> 00:06:24,800 +look like this. Let's see. Next. This is what I'm + +105 +00:06:24,800 --> 00:06:27,740 +going to use from my GUI. Okay? So that I can send + +106 +00:06:27,740 --> 00:06:32,820 +... I want to call this a Facebook poster. + +107 +00:06:36,340 --> 00:06:38,620 +and I want to say, for example, a method called + +108 +00:06:38,620 --> 00:06:44,200 +public void post. It takes a string, username and + +109 +00:06:44,200 --> 00:06:50,220 +password, and it also takes the post and any other + +110 +00:06:50,220 --> 00:06:53,480 +information you want to send it. This method is + +111 +00:06:53,480 --> 00:06:56,500 +present in the class called post, because here of + +112 +00:06:56,500 --> 00:06:58,400 +course, from inside the post, in order to connect + +113 +00:06:58,400 --> 00:07:01,780 +with Facebook, I have to use Facebook Connector, + +114 +00:07:02,000 --> 00:07:04,500 +correct or not? So I can say, go and get the object + +115 +00:07:04,500 --> 00:07:10,140 +from Facebook Connector. FBC, for example, equals new + +116 +00:07:10,140 --> 00:07:15,240 +Facebook Connector + +117 +00:07:15,240 --> 00:07:18,100 +Because through Facebook Connector, I can say + +118 +00:07:18,100 --> 00:07:24,800 +login, correct or not? And I can say, FBC post. Send + +119 +00:07:24,800 --> 00:07:30,460 +the data. And I can say, FBC logout is done and it + +120 +00:07:30,460 --> 00:07:35,900 +is also possible to store a post in a history + +121 +00:07:35,900 --> 00:07:37,320 +database. + +122 +00:07:39,980 --> 00:07:42,840 +Send notification. + +123 +00:07:45,000 --> 00:07:48,600 +This is a code. I made a comment, but it could be + +124 +00:07:48,600 --> 00:07:50,860 +anything. There is a code in this file. + +125 +00:07:53,740 --> 00:07:56,500 +In order to send a post on Facebook, I will use + +126 +00:07:56,500 --> 00:08:00,440 +the Facebook poster, which uses the connector from + +127 +00:08:00,440 --> 00:08:02,420 +the inside. For example, I connect to the + +128 +00:08:02,420 --> 00:08:04,560 +database, I launch a class to interact with the + +129 +00:08:04,560 --> 00:08:06,360 +database, and from the inside, I use the connector + +130 +00:08:06,360 --> 00:08:09,580 +that connects us to the database. Because it's the + +131 +00:08:09,580 --> 00:08:11,420 +same idea, if you want to create a WhatsApp + +132 +00:08:11,420 --> 00:08:15,590 +connector, WhatsApp poster. If I want to send a + +133 +00:08:15,590 --> 00:08:17,590 +message on Whatsapp, I also need a class called + +134 +00:08:17,590 --> 00:08:22,530 +WhatsApp poster. From inside it, you will use the + +135 +00:08:22,530 --> 00:08:26,770 +WhatsApp connector. So this class needs to do this. + +136 +00:08:26,850 --> 00:08:31,750 +This is Whatsapp, Whatsapp + +137 +00:08:31,750 --> 00:08:35,950 +poster. And + +138 +00:08:35,950 --> 00:08:39,030 +of course inside it, there is a method post. What + +139 +00:08:39,030 --> 00:08:41,490 +will be the method post? Just like what we wrote + +140 +00:08:41,490 --> 00:08:45,310 +on Facebook, but what's wrong with it? The type of + +141 +00:08:45,310 --> 00:08:49,550 +object that I want, I copied it instead of writing + +142 +00:08:49,550 --> 00:08:53,730 +it again and went to the WhatsApp poster and put + +143 +00:08:53,730 --> 00:08:56,750 +the data itself. Can I use the same data? No, + +144 +00:08:56,890 --> 00:08:59,850 +because it's different. Instead of Facebook + +145 +00:08:59,850 --> 00:09:04,090 +connector, I must use WhatsApp connector. + +146 +00:09:14,040 --> 00:09:17,520 +Whatsapp Connector. Now, + +147 +00:09:17,640 --> 00:09:21,440 +if I want to make a post on Twitter, what do I + +148 +00:09:21,440 --> 00:09:22,540 +have to do first? The first thing I have to do is + +149 +00:09:22,540 --> 00:09:26,860 +create a Connector on Twitter, and here I want to + +150 +00:09:26,860 --> 00:09:31,300 +create a class called whatsapp poster. I put the + +151 +00:09:31,300 --> 00:09:33,400 +same statement in it with the same steps but the + +152 +00:09:33,400 --> 00:09:38,980 +object will be different. This is a simple + +153 +00:09:38,980 --> 00:09:43,420 +structure for a program now. Let's see what is the + +154 +00:09:43,420 --> 00:09:47,860 +problem with this design. Notice that the method + +155 +00:09:47,860 --> 00:09:52,710 +post. Almost all of them are shared by WhatsApp, + +156 +00:09:53,350 --> 00:09:58,090 +Facebook, Twitter, TikTok, etc. All of them are + +157 +00:09:58,090 --> 00:10:00,170 +the same steps. Any post that I want to make, I + +158 +00:10:00,170 --> 00:10:02,870 +have to login to the social media network, I have + +159 +00:10:02,870 --> 00:10:05,390 +to make a post, I have to log out, I have to save + +160 +00:10:05,390 --> 00:10:07,330 +it in the database, I have to send notification, I + +161 +00:10:07,330 --> 00:10:09,470 +have to send confirmation, I have to and I have + +162 +00:10:09,470 --> 00:10:14,290 +to. All of these steps are the same. Okay, we + +163 +00:10:14,290 --> 00:10:18,450 +studied before that when you have more than one + +164 +00:10:18,450 --> 00:10:21,770 +class participating in the method, what did we + +165 +00:10:21,770 --> 00:10:25,030 +learn in the principles of object-oriented? No, + +166 +00:10:25,130 --> 00:10:28,110 +not the interface, class, and put the method in it. + +167 +00:10:28,390 --> 00:10:30,010 +Do you remember when we used to do get report for + +168 +00:10:30,010 --> 00:10:33,710 +the employee? When we used to do setter and getter + +169 +00:10:33,710 --> 00:10:36,430 +for the name, where did we put them all? In the + +170 +00:10:36,430 --> 00:10:41,630 +super class. Can we now, these WhatsApp posters + +171 +00:10:41,630 --> 00:10:47,730 +and Facebook posters, both have a method, Post. Am + +172 +00:10:47,730 --> 00:10:50,870 +I right or not guys? And the post has almost the + +173 +00:10:50,870 --> 00:10:53,350 +same code. Here, for example, I have five lines, it + +174 +00:10:53,350 --> 00:10:55,630 +could be twenty lines, five hundred lines in the + +175 +00:10:55,630 --> 00:10:59,530 +post, okay? I had to, because there is a different + +176 +00:10:59,530 --> 00:11:02,050 +line, which is which line? The connector that is + +177 +00:11:02,050 --> 00:11:04,610 +made, one different line, I had to say no, we + +178 +00:11:04,610 --> 00:11:08,370 +can't put this method in the superclass, we can't, + +179 +00:11:08,450 --> 00:11:13,810 +why? We say that when all methods are the same, you + +180 +00:11:13,810 --> 00:11:15,410 +put them in the superclass. They are different. + +181 +00:11:16,610 --> 00:11:19,070 +Can you put them in the superclass? No, you can't + +182 +00:11:19,070 --> 00:11:22,430 +put them in the superclass. Because this proof, + +183 +00:11:22,650 --> 00:11:24,170 +unfortunately, will have to be repeated again and + +184 +00:11:24,170 --> 00:11:27,740 +again. In every subclass, every time you make a + +185 +00:11:27,740 --> 00:11:31,140 +poster, you have to put it in the same steps. Why + +186 +00:11:31,140 --> 00:11:33,920 +we couldn't make a superclass? Because there is a + +187 +00:11:33,920 --> 00:11:36,580 +line that contradicts me. If this line wasn't + +188 +00:11:36,580 --> 00:11:39,260 +there, we would have taken all the code and put it + +189 +00:11:39,260 --> 00:11:41,980 +in the superclass. Yes, this is the problem that we + +190 +00:11:41,980 --> 00:11:47,070 +are dealing with today. In programming, I can make + +191 +00:11:47,070 --> 00:11:51,230 +classes and methods in each of these classes. I + +192 +00:11:51,230 --> 00:11:53,950 +find that the method is approximately 90% common, + +193 +00:11:54,630 --> 00:12:00,230 +but some lines are different. And these are some + +194 +00:12:00,230 --> 00:12:02,950 +of the few lines that we can criticize. Because of + +195 +00:12:02,950 --> 00:12:0 + +223 +00:13:40,430 --> 00:13:45,030 +there are different parts? which solves this + +224 +00:13:45,030 --> 00:13:47,390 +problem of the factory method how to apply the + +225 +00:13:47,390 --> 00:13:51,750 +factory method? come with meThis method post is + +226 +00:13:51,750 --> 00:13:55,850 +almost similar to Facebook, WhatsApp and any other + +227 +00:13:55,850 --> 00:13:59,350 +poster you can make I will go and make a super + +228 +00:13:59,350 --> 00:14:03,730 +class for them What should I call it? Social media + +229 +00:14:03,730 --> 00:14:07,470 +poster This is the difference between a poster and + +230 +00:14:07,470 --> 00:14:12,570 +a connector A poster uses a connector Social media + +231 +00:14:12,570 --> 00:14:16,630 +poster And this will not be an interface Why? + +232 +00:14:16,970 --> 00:14:18,890 +Because I want to put a code in it. Right? I don't + +233 +00:14:18,890 --> 00:14:20,690 +want to say why did I do it? Because I want to put + +234 +00:14:20,690 --> 00:14:23,110 +a common code in it. But I want to make it + +235 +00:14:23,110 --> 00:14:26,430 +abstract. So that no one can extract objects from + +236 +00:14:26,430 --> 00:14:29,050 +it. Okay, did you find the example of this common + +237 +00:14:29,050 --> 00:14:31,810 +code that we made in the Facebook poster? For + +238 +00:14:31,810 --> 00:14:33,690 +example, it's called post. I want to remove it + +239 +00:14:33,690 --> 00:14:37,250 +from here. My goal is to put it here in the super. + +240 +00:14:37,550 --> 00:14:41,910 +Of course, you want to come here. Extends social + +241 +00:14:41,910 --> 00:14:43,590 +media poster. + +242 +00:14:46,230 --> 00:14:49,010 +And I went to the social media poster, the app, + +243 +00:14:49,130 --> 00:14:55,470 +and put the method in it Of course, there is still + +244 +00:14:55,470 --> 00:14:58,330 +a mistake, because what does this create? Yes, + +245 +00:14:58,510 --> 00:15:03,230 +only Facebook connector Now, if I go to WhatsApp + +246 +00:15:03,230 --> 00:15:07,030 +poster, this is Facebook poster, and this is + +247 +00:15:07,030 --> 00:15:12,750 +WhatsApp poster Because this proof, what does it + +248 +00:15:12,750 --> 00:15:14,590 +want to do with it? It wants to remove it, that's + +249 +00:15:14,590 --> 00:15:17,290 +it, it's not in the superclass anymore, okay? + +250 +00:15:18,050 --> 00:15:24,050 +Extends social media poster. + +251 +00:15:24,130 --> 00:15:25,750 +So the methods are now empty. Why? Because they + +252 +00:15:25,750 --> 00:15:29,090 +are participating in the method post. Okay, so far + +253 +00:15:29,090 --> 00:15:31,270 +what we have done is right or wrong? Wrong, + +254 +00:15:32,350 --> 00:15:34,470 +because what is here is Facebook. So if you use + +255 +00:15:34,470 --> 00:15:37,770 +even Twitter, He will download Facebook and send + +256 +00:15:37,770 --> 00:15:40,870 +it to Facebook and this is wrong. This is the main + +257 +00:15:40,870 --> 00:15:44,530 +thing. He has a Facebook poster. And we told him + +258 +00:15:44,530 --> 00:15:46,150 +to make a post for what? He has an empty username + +259 +00:15:46,150 --> 00:15:48,270 +and password and we told him to make a post for + +260 +00:15:48,270 --> 00:15:52,790 +him. This will work. Why? Because the post that he + +261 +00:15:52,790 --> 00:15:55,210 +will get, this is inherited from whom? From the + +262 +00:15:55,210 --> 00:15:57,750 +super class that has a Facebook connector. But + +263 +00:15:57,750 --> 00:16:01,370 +this second one will not work. It is true that I + +264 +00:16:01,370 --> 00:16:04,010 +made a Whatsapp poster, but when he gets the post, + +265 +00:16:04,960 --> 00:16:09,140 +Facebook. So if I run it, I will find that both of + +266 +00:16:09,140 --> 00:16:13,040 +them sent it to Facebook. And the mistake is that + +267 +00:16:13,040 --> 00:16:17,460 +I have Facebook in the social media poster. Did + +268 +00:16:17,460 --> 00:16:20,920 +you find that it is supposed to be that if I + +269 +00:16:20,920 --> 00:16:23,200 +download the poster through WhatsApp poster, + +270 +00:16:24,380 --> 00:16:27,520 +WhatsApp connector appears here. And if I download + +271 +00:16:27,520 --> 00:16:30,000 +it through Facebook, this line is supposed to + +272 +00:16:30,000 --> 00:16:35,170 +differ. It differs based on theI am the main class + +273 +00:16:35,170 --> 00:16:36,950 +that is called by a method How can I solve this + +274 +00:16:36,950 --> 00:16:41,050 +problem? Did you find this for new? The problem is + +275 +00:16:41,050 --> 00:16:43,710 +in this new, right? Did you find that we were + +276 +00:16:43,710 --> 00:16:45,750 +happy inside new new? No, did you find that this + +277 +00:16:45,750 --> 00:16:51,070 +new has problems? In the factory, it was causing + +278 +00:16:51,070 --> 00:16:52,710 +problems, that's why we took it and put it inside + +279 +00:16:52,710 --> 00:16:57,290 +the factory class At least, we change from inside + +280 +00:16:57,290 --> 00:16:59,990 +the factory, right? Now, this needs to remove new + +281 +00:17:02,270 --> 00:17:04,410 +Ok? What do I replace it with? Look with me and + +282 +00:17:04,410 --> 00:17:06,730 +you will understand. We come down here in the same + +283 +00:17:06,730 --> 00:17:13,050 +class, superclass. We make public abstract social + +284 +00:17:13,050 --> 00:17:22,190 +media connector create connector Because this is + +285 +00:17:22,190 --> 00:17:23,810 +an abstract method. Does it have implementation? + +286 +00:17:24,430 --> 00:17:28,030 +No. Its name is create connector. What does it + +287 +00:17:28,030 --> 00:17:31,750 +return? Social Media Connector Which can be + +288 +00:17:31,750 --> 00:17:33,990 +Facebook Connector, Whatsapp, Twitter and others + +289 +00:17:33,990 --> 00:17:37,910 +Now here I say Instead of saying Facebook + +290 +00:17:37,910 --> 00:17:44,250 +Connector Social Media Connector And say here + +291 +00:17:44,250 --> 00:17:52,030 +Create Connector + +292 +00:17:52,030 --> 00:17:55,550 +That's it, we solved the problem So how will this + +293 +00:17:55,550 --> 00:18:00,950 +solve the problem? Now Instead of saying new, the + +294 +00:18:00,950 --> 00:18:03,070 +original object, which was this new, the problem + +295 +00:18:03,070 --> 00:18:05,090 +in which it is linked to what, in a certain class, + +296 +00:18:05,950 --> 00:18:08,590 +you still say create connector, and create + +297 +00:18:08,590 --> 00:18:11,110 +connector is here, it is present below. Well, they + +298 +00:18:11,110 --> 00:18:13,190 +will say, how will it invoke an abstract method? + +299 +00:18:14,210 --> 00:18:16,230 +Okay? What is this abstract method? Who will + +300 +00:18:16,230 --> 00:18:19,550 +implement it? The subclasses. But notice that the + +301 +00:18:19,550 --> 00:18:23,650 +method was invoked from the superclass. Okay? Of + +302 +00:18:23,650 --> 00:18:25,010 +course, it will not invoke this. What will it + +303 +00:18:25,010 --> 00:18:28,800 +invoke? What is present in the subclass.What is + +304 +00:18:28,800 --> 00:18:31,880 +the idea behind it? The idea is that this code is + +305 +00:18:31,880 --> 00:18:37,280 +all common, except for this line. The class is + +306 +00:18:37,280 --> 00:18:38,880 +called social media posts and I don't know where + +307 +00:18:38,880 --> 00:18:41,800 +it comes from. I don't know, do you want to create + +308 +00:18:41,800 --> 00:18:43,600 +a Facebook poster or Whatsapp poster? Who + +309 +00:18:43,600 --> 00:18:46,120 +determines it? The subclass determines it. So you + +310 +00:18:46,120 --> 00:18:48,340 +say that this different line has to rely on the + +311 +00:18:48,340 --> 00:18:52,160 +subclass to do it. How? You provided her with an + +312 +00:18:52,160 --> 00:18:55,640 +abstract method, she has to implement it. Because + +313 +00:18:55,640 --> 00:18:57,360 +as soon as I gave her this abstract method, + +314 +00:18:57,640 --> 00:19:01,820 +Facebook poster and Whatsapp poster collided with + +315 +00:19:01,820 --> 00:19:03,560 +each other. She said to me, come on, you want to + +316 +00:19:03,560 --> 00:19:06,500 +create a Facebook poster, go and implement it for + +317 +00:19:06,500 --> 00:19:10,970 +whom? To create a connector. Okay, tell me what is + +318 +00:19:10,970 --> 00:19:14,330 +the connector that you will use in this class to + +319 +00:19:14,330 --> 00:19:18,810 +make a post Okay, so I say return new Facebook + +320 +00:19:18,810 --> 00:19:22,350 +connector + +321 +00:19:22,350 --> 00:19:37,350 +And the same thing in the WhatsApp poster Return + +322 +00:19:37,350 --> 00:19:39,350 +new WhatsApp + +323 +00:19:48,130 --> 00:19:52,110 +Connector Now we're done Let's see now in the test + +324 +00:19:52,110 --> 00:19:55,150 +What + +325 +00:19:55,150 --> 00:19:57,710 +did I change again? What did I change? In the + +326 +00:19:57,710 --> 00:20:00,630 +Facebook social media poster I put the daily post + +327 +00:20:00,630 --> 00:20:03,870 +This line that had a problem I changed it to what? + +328 +00:20:04,710 --> 00:20:08,110 +To abstract method The subclass will make it + +329 +00:20:08,110 --> 00:20:11,330 +implement Look now as soon as I do the test and + +330 +00:20:11,330 --> 00:20:15,510 +you clicked on run and let's see what did the post + +331 +00:20:15,510 --> 00:20:20,070 +do? now the facebook post did a post on facebook + +332 +00:20:20,070 --> 00:20:23,010 +and the whatsapp post did a post on whatsapp which + +333 +00:20:23,010 --> 00:20:25,910 +means that this post used the facebook connector + +334 +00:20:25,910 --> 00:20:28,570 +and this one used the whatsapp connector what + +335 +00:20:28,570 --> 00:20:30,710 +exactly happened is that when you click on the + +336 +00:20:30,710 --> 00:20:35,240 +post through the facebook post Yes, it will ask + +337 +00:20:35,240 --> 00:20:37,900 +for the data in the parent, don't you agree? It + +338 +00:20:37,900 --> 00:20:40,360 +will come to the parent. The first line in the + +339 +00:20:40,360 --> 00:20:43,820 +parent, what does it say? Create connector. What + +340 +00:20:43,820 --> 00:20:46,260 +will it ask for? The Create connector of the + +341 +00:20:46,260 --> 00:20:50,100 +subclass. As if now the superclass asked the + +342 +00:20:50,100 --> 00:20:54,620 +subclass to create the connector. Okay? What is + +343 +00:20:54,620 --> 00:20:59,180 +the rest of the code? Yes, as it is. If you ask + +344 +00:20:59,180 --> 00:21:01,560 +for the data of the post in the Whatsapp poster, + +345 +00:21:04,430 --> 00:21:08,370 +It also executes the first line and asks the + +346 +00:21:08,370 --> 00:21:10,370 +subclass to determine which object is created and + +347 +00:21:10,370 --> 00:21:13,810 +which is not. It remains as it is. Through this + +348 +00:21:13,810 --> 00:21:18,310 +abstract method, which is implemented by the + +349 +00:21:18,310 --> 00:21:21,710 +subclass, the superclass stores the subclass in + +350 +00:21:21,710 --> 00:21:25,640 +different parts of the code. This is a different + +351 +00:21:25,640 --> 00:21:27,920 +part which is converted to an abstract method. And + +352 +00:21:27,920 --> 00:21:31,880 +let the subclass be used for implementation. This + +353 +00:21:31,880 --> 00:21:33,400 +is how the common code works. I can put it in the + +354 +00:21:33,400 --> 00:21:36,020 +superclass. And the different part is that I put + +355 +00:21:36,020 --> 00:21:38,840 +the subclass to work through the abstract method. + +356 +00:21:39,120 --> 00:21:42,680 +This method, the abstract, through which I put the + +357 +00:21:42,680 --> 00:21:45,800 +subclass to make objects, I call it the factory + +358 +00:21:45,800 --> 00:21:52,920 +method. It is this factory method. Now, if we want + +359 +00:21:52,920 --> 00:21:59,890 +to make Twitter Poster Now, of course, I must have + +360 +00:21:59,890 --> 00:22:02,930 +a Twitter Connector This Twitter Connector is + +361 +00:22:02,930 --> 00:22:06,230 +present And it follows the social media interface + +362 +00:22:06,230 --> 00:22:12,030 +Now, we want to create a Twitter Poster We create + +363 +00:22:12,030 --> 00:22:16,910 +a Twitter Poster And we say extends + +364 +00:22:23,640 --> 00:22:27,400 +Extend social media. He asked me to implement some + +365 +00:22:27,400 --> 00:22:32,180 +method. I told him not to worry. All the code of + +366 +00:22:32,180 --> 00:22:36,160 +the post is in the superclass. You don't have to + +367 +00:22:36,160 --> 00:22:40,820 +specify the connector you want. I told him to + +368 +00:22:40,820 --> 00:22:44,060 +return to Twitter. + +369 +00:22:48,480 --> 00:22:50,060 +Connector. And we're done. It doesn't make any + +370 +00:22:50,060 --> 00:22:53,040 +line again. All the common code is present where? + +371 +00:22:53,460 --> 00:22:57,460 +In the superclass. Now, based on these words, + +372 +00:22:58,040 --> 00:22:59,520 +let's read the words that are present and connect + +373 +00:22:59,520 --> 00:23:03,700 +them together. The goal is to define an interface + +374 +00:23:03,700 --> 00:23:06,740 +for creating an object. You make an interface to + +375 +00:23:06,740 --> 00:23:07,820 +create ... Of course, here I mean in the + +376 +00:23:07,820 --> 00:23:09,500 +interface, the abstract method, that is, the face + +377 +00:23:09,500 --> 00:23:12,100 +to create the object. Who is this face to create + +378 +00:23:12,100 --> 00:23:15,040 +the object? The method is called CreateConnector. + +379 +00:23:15,620 --> 00:23:21,220 +Okay?But let subclasses decide which class to + +380 +00:23:21,220 --> 00:23:21,820 +instantiate + +381 +00:23:27,960 --> 00:23:30,500 +What is the class that they created? Factory + +382 +00:23:30,500 --> 00:23:35,040 +method lets a class differ instantiation to + +383 +00:23:35,040 --> 00:23:38,340 +subclass. It makes the main class, the superclass, + +384 +00:23:39,140 --> 00:23:42,900 +distribute the differences among the subclasses. + +385 +00:23:42,900 --> 00:23:46,980 +And it only has the common code. Instead of having + +386 +00:23:46,980 --> 00:23:49,660 +to take all the common code and put it in the + +387 +00:23:49,660 --> 00:23:50,620 +subclass because of a different line. + +388 +00:23:53,160 --> 00:23:56,430 +Applicability. When do we use it? A class cannot + +389 +00:23:56,430 --> 00:24:00,570 +anticipate if a class of objects must create. My + +390 +00:24:00,570 --> 00:24:03,810 +class does not know which object will be created. + +391 +00:24:04,190 --> 00:24:06,330 +What defines the object that will be created means + +392 +00:24:06,330 --> 00:24:09,050 +the subclasses. Where is the goal of our example? + +393 +00:24:09,910 --> 00:24:12,630 +The social media poster, the superclass, begins to + +394 +00:24:12,630 --> 00:24:16,610 +create a connector. It does not know.What kind of + +395 +00:24:16,610 --> 00:24:20,010 +connector depends on whom? On the subclass that I + +396 +00:24:20,010 --> 00:24:24,110 +want to create. Am I right or not guys? So how did + +397 +00:24:24,110 --> 00:24:25,710 +the subclass decide to create it? Through the + +398 +00:24:25,710 --> 00:24:30,610 +factory method. So when you don't know what class + +399 +00:24:30,610 --> 00:24:32,430 +or object you want to create and you have to + +400 +00:24:32,430 --> 00:24:35,030 +define the subclasses, you use the factory method. + +401 +00:24:36,430 --> 00:24:39,090 +The second point is almost the same A class wants + +402 +00:24:39,090 --> 00:24:41,830 +its subclasses to specify the object it creates + +403 +00:24:41,830 --> 00:24:44,370 +The class wants its subclasses to specify the + +404 +00:24:44,370 --> 00:24:48,150 +object it creates Now, this is the drawing of the + +405 +00:24:48,150 --> 00:24:52,390 +UML diagram of the factory method Let's check the + +406 +00:24:52,390 --> 00:24:54,770 +UML class diagram and link it to the example we + +407 +00:24:54,770 --> 00:24:59,850 +took This is the example we took Currently, we + +408 +00:24:59,850 --> 00:25:02,730 +stopped putting the method post here, right? + +409 +00:25:03,490 --> 00:25:09,710 +Actually, these two I'm going to extend to one + +410 +00:25:09,710 --> 00:25:16,470 +class called social media poster Right guys? And + +411 +00:25:16,470 --> 00:25:19,850 +here we put the method post And we put another + +412 +00:25:19,850 --> 00:25:26,010 +method called create connector Right guys? This is + +413 +00:25:26,010 --> 00:25:29,210 +abstract, right? And this is method post And here + +414 +00:25:29,210 --> 00:25:32,970 +I have post Because they started to cover it from + +415 +00:25:32,970 --> 00:25:38,550 +where? But these should now implement to whom? To + +416 +00:25:38,550 --> 00:25:40, + +445 +00:27:19,900 --> 00:27:21,580 +said that there was a method that was common + +446 +00:27:21,580 --> 00:27:23,680 +between them. We took it and collected it in the + +447 +00:27:23,680 --> 00:27:26,160 +class super. What was the method that was common + +448 +00:27:26,160 --> 00:27:29,940 +in the final post? Okay? The one inside it, I take + +449 +00:27:29,940 --> 00:27:32,060 +the connector and store it in the database and put + +450 +00:27:32,060 --> 00:27:34,220 +it in the history and send a notification. Okay? + +451 +00:27:34,720 --> 00:27:37,600 +Because this method is called an operation. Can + +452 +00:27:37,600 --> 00:27:42,320 +you see it? This is an operation. In the first + +453 +00:27:42,320 --> 00:27:46,660 +design, I had to put it down. Now I have to put it + +454 +00:27:46,660 --> 00:27:51,880 +up. This is an operation. This method of an + +455 +00:27:51,880 --> 00:27:55,460 +operation has a common code and a different code, + +456 +00:27:55,560 --> 00:27:58,400 +which is the creation of a product. The creation + +457 +00:27:58,400 --> 00:28:01,920 +of a different product. Look at this note. It + +458 +00:28:01,920 --> 00:28:05,400 +shows me how the existing code looks like. in the + +459 +00:28:05,400 --> 00:28:07,840 +operation. How does the code look like in the + +460 +00:28:07,840 --> 00:28:09,660 +operation? I'm going to make three points above + +461 +00:28:10,400 --> 00:28:12,820 +and look at what's below. What does it mean? There + +462 +00:28:12,820 --> 00:28:15,680 +is code above and below. This is all common. A lot + +463 +00:28:15,680 --> 00:28:18,220 +of code. Okay? But there is a different level, + +464 +00:28:18,420 --> 00:28:21,360 +which is the creation of the product. Which is + +465 +00:28:21,360 --> 00:28:23,020 +like the example of creating the connector that I + +466 +00:28:23,020 --> 00:28:26,260 +made. This is what determines the product that I + +467 +00:28:26,260 --> 00:28:30,740 +want to make. Not these subclasses. Okay? So he + +468 +00:28:30,740 --> 00:28:32,440 +went and said, no, this is a binary step. Like I + +469 +00:28:32,440 --> 00:28:35,620 +made an abstract method called create connector. + +470 +00:28:36,080 --> 00:28:40,630 +He made a method called factory method, okay? And + +471 +00:28:40,630 --> 00:28:44,170 +this is a note written in italic. What does italic + +472 +00:28:44,170 --> 00:28:46,590 +mean here? It is abstract. And he took it from + +473 +00:28:46,590 --> 00:28:51,490 +here. And he wrote factory method. Just like I did + +474 +00:28:51,490 --> 00:28:55,150 +create connector in superclass. I took it from + +475 +00:28:55,150 --> 00:28:59,010 +method post, okay? And I made it abstract method + +476 +00:28:59,010 --> 00:29:04,250 +in social media poster. So this factory method has + +477 +00:29:04,250 --> 00:29:07,300 +an implementation where? In the concrete creator, + +478 +00:29:07,420 --> 00:29:10,800 +like here, don't I have a method post and method + +479 +00:29:10,800 --> 00:29:14,480 +create connector? The method post is done by the + +480 +00:29:14,480 --> 00:29:16,940 +operation and the method create connector is done + +481 +00:29:16,940 --> 00:29:20,740 +by the factor method. These two, each one made a + +482 +00:29:20,740 --> 00:29:22,780 +different implement for the create connector, + +483 +00:29:22,880 --> 00:29:25,300 +because this one creates a Facebook connector and + +484 +00:29:25,300 --> 00:29:27,560 +this one creates a WhatsApp connector. + +485 +00:29:29,100 --> 00:29:33,160 +Okay, look here, the factor method returns a new + +486 +00:29:33,160 --> 00:29:36,840 +concrete. The concrete creator produces concrete + +487 +00:29:36,840 --> 00:29:40,520 +product. Facebook poster produces Facebook + +488 +00:29:40,520 --> 00:29:43,940 +connector. Whatsapp poster produces Whatsapp + +489 +00:29:43,940 --> 00:29:48,080 +connector. So, the different parts of this method + +490 +00:29:48,080 --> 00:29:50,240 +of operation have common parts, which are, in + +491 +00:29:50,240 --> 00:29:53,120 +short, the different part. The different part is + +492 +00:29:53,120 --> 00:29:56,300 +what the subclass is going to do. Do you + +493 +00:29:56,300 --> 00:29:59,260 +understand something, guys? I linked this class + +494 +00:29:59,260 --> 00:30:02,220 +diagram to the example that I explained. + +495 +00:30:05,770 --> 00:30:10,230 +I will explain to you what are the components of + +496 +00:30:10,230 --> 00:30:12,210 +an N class diagram, what is a product, what is a + +497 +00:30:12,210 --> 00:30:13,990 +concrete product, what is a creator, what is a + +498 +00:30:13,990 --> 00:30:16,290 +concrete creator, I explained this to you to + +499 +00:30:16,290 --> 00:30:21,490 +understand better.So what exactly does it mean + +500 +00:30:21,490 --> 00:30:24,510 +when we say that the factorial method pattern lets + +501 +00:30:24,510 --> 00:30:27,270 +subclasses decide which classes to instantiate It + +502 +00:30:27,270 --> 00:30:31,090 +means + +503 +00:30:31,090 --> 00:30:33,750 +that the creator class is written without knowing + +504 +00:30:33,750 --> 00:30:37,410 +what actual concrete product will be instantiated + +505 +00:30:37,410 --> 00:30:44,220 +The creator class The social media poster. We + +506 +00:30:44,220 --> 00:30:46,260 +wrote it even though we don't know what connector + +507 +00:30:46,260 --> 00:30:48,820 +we are going to use. Right or wrong? We don't + +508 +00:30:48,820 --> 00:30:56,020 +know. So actually, the concrete class which is + +509 +00:30:56,020 --> 00:30:59,080 +instantiated is determined solely by which + +510 +00:30:59,080 --> 00:31:02,700 +concrete creator subclass is instantiated and used + +511 +00:31:02,700 --> 00:31:05,260 +by the application. What does this mean? Which + +512 +00:31:05,260 --> 00:31:08,640 +determines the concrete product only from the + +513 +00:31:08,640 --> 00:31:12,180 +concrete creator.What does it mean? The one that + +514 +00:31:12,180 --> 00:31:15,340 +determines the connector that I want to create is + +515 +00:31:15,340 --> 00:31:20,360 +the subclass, the poster that determines it. This + +516 +00:31:20,360 --> 00:31:22,560 +is the meaning of this example. It is through the + +517 +00:31:22,560 --> 00:31:25,780 +use of data, that they override or implement this + +518 +00:31:25,780 --> 00:31:27,260 +factor method. + +519 +00:31:30,020 --> 00:31:33,720 +In order to better understand this topic, let's + +520 +00:31:33,720 --> 00:31:36,940 +see another use of the factor method. Through + +521 +00:31:36,940 --> 00:31:39,140 +another example. Also, this example will show + +522 +00:31:39,140 --> 00:31:43,910 +another useful use. Now, this is basically a + +523 +00:31:43,910 --> 00:31:48,630 +design for a game, a maze game. What is a maze? It + +524 +00:31:48,630 --> 00:31:51,170 +is a maze, a maze is a maze. Did you notice that + +525 +00:31:51,170 --> 00:31:55,690 +the maze is made up of rooms, rooms with doors + +526 +00:31:55,690 --> 00:31:55,810 +between them. + +527 +00:32:00,090 --> 00:32:03,710 +Components of a room. A room consists of a room. A + +528 +00:32:03,710 --> 00:32:05,870 +room means a room. And a room has methods like + +529 +00:32:05,870 --> 00:32:09,850 +enter, sit side, get side. Right? Now, a room also + +530 +00:32:09,850 --> 00:32:13,190 +consists of a wall and a door. Because a room does + +531 +00:32:13,190 --> 00:32:15,690 +not have walls and doors. Right? This is a wall + +532 +00:32:15,690 --> 00:32:17,870 +and this is a door. Of course, what did he do in + +533 +00:32:17,870 --> 00:32:22,790 +his design? The room, the wall and the door were + +534 +00:32:22,790 --> 00:32:26,150 +implemented to the same interface called mapsite. + +535 +00:32:28,000 --> 00:32:29,520 +This is a mapsite, and this is another mapsite, + +536 +00:32:29,540 --> 00:32:31,540 +and this is another mapsite. Notice that there is + +537 +00:32:31,540 --> 00:32:36,850 +an association between them.and mapsite. So how + +538 +00:32:36,850 --> 00:32:39,930 +does a room implement mapsite and use mapsite? + +539 +00:32:40,350 --> 00:32:43,230 +This is what it means. Now, of course, a room is + +540 +00:32:43,230 --> 00:32:46,930 +made up of what? Of walls and doors. For example, + +541 +00:32:47,030 --> 00:32:50,950 +it could have a list of walls and a list of doors. + +542 +00:32:51,790 --> 00:32:56,370 +Just like Zachary, the manager, was an extended + +543 +00:32:56,370 --> 00:33:00,390 +employee.who is employing employees who are + +544 +00:33:00,390 --> 00:33:01,750 +managers who are responsible for other employees + +545 +00:33:01,750 --> 00:33:06,590 +anyway and here he has a class called maze which + +546 +00:33:06,590 --> 00:33:08,430 +has two examples for sure it will have for example + +547 +00:33:08,430 --> 00:33:11,750 +a list of rooms and it has add room and remove + +548 +00:33:11,750 --> 00:33:16,630 +room number for example not remove room number and + +549 +00:33:16,630 --> 00:33:18,050 +here there is a relation of association between + +550 +00:33:18,050 --> 00:33:21,910 +maze and rooms the room has to use an object it + +551 +00:33:21,910 --> 00:33:25,400 +can have a list of rooms It's okay, but they are + +552 +00:33:25,400 --> 00:33:30,440 +the structure of the game Because he wanted to + +553 +00:33:30,440 --> 00:33:36,480 +create a maze The maze will consist of doors So he + +554 +00:33:36,480 --> 00:33:40,020 +made a class called maze game And he made a dialer + +555 +00:33:40,020 --> 00:33:44,560 +called create maze He was supposed to create the + +556 +00:33:44,560 --> 00:33:47,920 +whole maze and return an object from it maze The + +557 +00:33:47,920 --> 00:33:49,820 +first thing he did was create a class called maze + +558 +00:33:53,460 --> 00:33:56,380 +Did you see how he made a room and put the room on + +559 +00:33:56,380 --> 00:34:02,260 +the table? He made a room R1 equal to room R2 + +560 +00:34:02,260 --> 00:34:08,200 +equal to room R2. He made a door connecting R1 and + +561 +00:34:08,200 --> 00:34:13,000 +R2. He made a table connecting R1 and R2 and put + +562 +00:34:13,000 --> 00:34:16,420 +it on the table. This is a simple example of a + +563 +00:34:16,420 --> 00:34:20,400 +place and a room. Two rooms between them.Of + +564 +00:34:20,400 --> 00:34:22,120 +course, this is just an example for clarification, + +565 +00:34:22,320 --> 00:34:26,140 +but the maze will not be two rooms, okay? Fifty + +566 +00:34:26,140 --> 00:34:28,140 +rooms, a hundred rooms, or four rooms. Why is it + +567 +00:34:28,140 --> 00:34:32,360 +called a maze? To confuse you, okay? But this is a + +568 +00:34:32,360 --> 00:34:34,060 +simple example to show you the structure of the + +569 +00:34:34,060 --> 00:34:36,940 +maze. Now let's see what is the problem with this + +570 +00:34:36,940 --> 00:34:41,280 +code.He told me that the problem with this create + +571 +00:34:41,280 --> 00:34:44,820 +maze method is its inflexibility. What does + +572 +00:34:44,820 --> 00:34:46,780 +inflexibility mean? Inflexibility is the opposite + +573 +00:34:46,780 --> 00:34:49,020 +of flexibility. It means that the design is not + +574 +00:34:49,020 --> 00:34:51,200 +flexible. How is the design not flexible? For + +575 +00:34:51,200 --> 00:34:53,960 +example, he told us that we will change the design + +576 +00:34:53,960 --> 00:34:57,630 +of the maze and raise it. For example, in these + +577 +00:34:57,630 --> 00:35:01,090 +rooms, they say, what if you wanted to have + +578 +00:35:01,090 --> 00:35:05,330 +enchanted mazes with enchanted rooms? For example, + +579 +00:35:05,410 --> 00:35:07,830 +who plays fortnite? + +580 +00:35:08,890 --> 00:35:11,890 +Do you know fortnite? You notice that during + +581 +00:35:11,890 --> 00:35:16,250 +holidays and christmas, what do they do? They turn + +582 +00:35:16,250 --> 00:35:20,230 +the game, the same city, the same rooms, the same + +583 +00:35:20,230 --> 00:35:25,350 +buildings, but they complain about it. Like new, + +584 +00:35:25,610 --> 00:35:29,190 +right or not? New colors, new mood. It changes the + +585 +00:35:29,190 --> 00:35:32,110 +mood. Are you with me or not? The game is the + +586 +00:35:32,110 --> 00:35:34,870 +same, but you change the design of the room, the + +587 +00:35:34,870 --> 00:35:38,590 +building, the floor, the clothing, right or not? + +588 +00:35:39,790 --> 00:35:42,550 +Simple changes happen. But the whole city and its + +589 +00:35:42,550 --> 00:35:46,810 +map and structure is the same. Okay? Now, in this + +590 +00:35:46,810 --> 00:35:52,630 +design, we want to change The rooms, okay? Someone + +591 +00:35:52,630 --> 00:35:55,490 +might say it's simple, you have a classroom with + +592 +00:35:55,490 --> 00:35:58,990 +walls and everything, make it extendable, right? + +593 +00:35:59,690 --> 00:36:02,750 +You can't do that, we didn't learn about OOP, make + +594 +00:36:02,750 --> 00:36:04,550 +it extendable and change the colors and all that, + +595 +00:36:04,570 --> 00:36:07,510 +it's simple, okay? No, it's not simple, you have + +596 +00:36:07,510 --> 00:36:11,370 +to go and do what? Instead of the word new room, + +597 +00:36:12,770 --> 00:36:17,050 +you remove this room and name it class? the new + +598 +00:36:17,050 --> 00:36:19,670 +class you created. Ok, you made the extension + +599 +00:36:19,670 --> 00:36:22,730 +easier for you, but here you have to remove the + +600 +00:36:22,730 --> 00:36:29,510 +new column 50 times and put a new class name. And + +601 +00:36:29,510 --> 00:36:32,410 +this is going to make it difficult. So, as you can + +602 +00:36:32,410 --> 00:36:35,290 +see in the factoring method, of course, if you + +603 +00:36:35,290 --> 00:36:38,890 +want to override a new class, you will have to + +604 +00:36:38,890 --> 00:36:41,940 +write it from scratch. And again, in every + +605 +00:36:41,940 --> 00:36:44,360 +subclass, we will face the same problem of the + +606 +00:36:44,360 --> 00:36:46,020 +poster. You will have to repeat the whole diagram + +607 +00:36:46,020 --> 00:36:48,940 +and the whole design in the subclass. So, we would + +608 +00:36:48,940 --> 00:36:52,380 +like to see how I do not change the design every + +609 +00:36:52,380 --> 00:36:57,140 +time, but in one step, I remove all existing + +610 +00:36:57,140 --> 00:37:00,620 +rooms. If I made a room, I will remove it and + +611 +00:37:00,620 --> 00:37:04,810 +replace it with a new room that I want to make. We + +612 +00:37:04,810 --> 00:37:08,410 +will use the factor method to solve this problem. + +613 +00:37:09,930 --> 00:37:16,090 +Look at + +614 +00:37:16,090 --> 00:37:16,570 +this new design. + +615 +00:37:19,480 --> 00:37:22,420 +This is Create Maze that we saw a while ago. But + +616 +00:37:22,420 --> 00:37:25,180 +what did it do? Look at it. A while ago I was + +617 +00:37:25,180 --> 00:37:28,080 +saying Maze, Maze equals New Maze, right? It + +618 +00:37:28,080 --> 00:37:31,020 +removed New Maze and replaced it with Make Maze. + +619 +00:37:31,080 --> 00:37:34,280 +Where is this Make Maze? Go down. Here you have + +620 +00:37:34,280 --> 00:37:36,360 +Make Maze, not even Abstract. What does it bring + +621 +00:37:36,360 --> 00:37:40,700 +back? New Maze. It brought back Make Home. What + +622 +00:37:40,700 --> 00:37:45,830 +was this before? New Home. He took this line U and + +623 +00:37:45,830 --> 00:37:48,130 +put it in a bracket. This is a microme, what + +624 +00:37:48,130 --> 00:37:52,110 +happened? Return U is a row. Microme is the same + +625 +00:37:52,110 --> 00:37:56,730 +thing. Mic door in the previous design was U door + +626 +00:37:56,730 --> 00:38:00,070 +here. What happened here? Mic door. He took this + +627 +00:38:00,070 --> 00:38:03,070 +and made a mic door and wrote here return U door. + +628 +00:38:03,710 --> 00:38:06,580 +One may ask, what did we gain from this? On the + +629 +00:38:06,580 --> 00:38:08,100 +contrary, you messed it up. Where are your hands, + +630 +00:38:08,300 --> 00:38:12,300 +Juha? Right or wrong? It was written New here, but + +631 +00:38:12,300 --> 00:38:15,360 +we put it inside and fixed it. So how did this + +632 +00:3 + +667 +00:40:31,470 --> 00:40:33,650 +subclass? No, he will not claim it through the + +668 +00:40:33,650 --> 00:40:36,050 +enchanted maze game. What was made in the + +669 +00:40:36,050 --> 00:40:39,290 +subclass, who stole it? The one in the superclass. + +670 +00:40:39,710 --> 00:40:43,470 +So when he claims make maze, he will create the + +671 +00:40:43,470 --> 00:40:45,910 +enchanted maze game. When it gets used to the + +672 +00:40:45,910 --> 00:40:48,090 +Macroom, it will create the module in the + +673 +00:40:48,090 --> 00:40:51,450 +subclass. Macdoor will create the ... So you see + +674 +00:40:51,450 --> 00:40:53,850 +how the process of creating by itself separated + +675 +00:40:53,850 --> 00:40:57,470 +them into methods by itself, which returns new. + +676 +00:40:58,450 --> 00:41:01,650 +Why? These can be overwritten and changed. But + +677 +00:41:01,650 --> 00:41:05,690 +this design needs what? It needs one. Imagine that + +678 +00:41:05,690 --> 00:41:08,150 +he comes to Christmas and asks you how to wear all + +679 +00:41:08,150 --> 00:41:11,010 +the clothes like Christmas. Okay, what does he do? + +680 +00:41:12,220 --> 00:41:15,620 +Then I go and create an extent for this class And + +681 +00:41:15,620 --> 00:41:18,720 +I create a new one for the new design that he made + +682 +00:41:18,720 --> 00:41:21,860 +And the basic design that is in the main class + +683 +00:41:21,860 --> 00:41:25,940 +that has 100, 200, 300 rooms remains as it is + +684 +00:41:25,940 --> 00:41:28,180 +Because these are also the methods that I call + +685 +00:41:28,180 --> 00:41:32,100 +factory methods Right, these are not abstract What + +686 +00:41:32,100 --> 00:41:34,560 +is different from the previous example? These had + +687 +00:41:34,560 --> 00:41:37,560 +code, but I made them override This one was plain, + +688 +00:41:38,080 --> 00:41:41,940 +and I made it implementationBut the difference now + +689 +00:41:41,940 --> 00:41:46,620 +is that the same principle, the code is all shared + +690 +00:41:46,620 --> 00:41:50,540 +and there are parts that need to differ, need to + +691 +00:41:50,540 --> 00:41:52,680 +be extendable, need to be changed every now and + +692 +00:41:52,680 --> 00:41:57,080 +then. So I put the code in the superclass and the + +693 +00:41:57,080 --> 00:42:00,300 +different parts, I separate them in a method so + +694 +00:42:00,300 --> 00:42:03,460 +that the subclasses can change them by doing + +695 +00:42:03,460 --> 00:42:06,680 +override for this method. The idea is clear, right + +696 +00:42:06,680 --> 00:42:09,680 +guys? That's how Codec Nano is extendable. It + +697 +00:42:09,680 --> 00:42:12,420 +changes parts without changing the structure and + +698 +00:42:12,420 --> 00:42:17,480 +design. By using the factory method pattern. + +699 +00:42:19,440 --> 00:42:23,140 +Yes, of course, + +700 +00:42:23,200 --> 00:42:26,680 +it will take the default. Okay? So, if I didn't + +701 +00:42:26,680 --> 00:42:29,960 +override the macro, it will still use the macro in + +702 +00:42:29,960 --> 00:42:32,840 +the parent. If I override it, it will use this + +703 +00:42:32,840 --> 00:42:37,150 +one. They will continue to create the design in + +704 +00:42:37,150 --> 00:42:38,490 +the super class. What is the similarity between + +705 +00:42:38,490 --> 00:42:38,790 +them? + +706 +00:42:43,230 --> 00:42:45,850 +The similarity is that they are in the same game. + +707 +00:42:46,350 --> 00:42:49,470 +This one here? Yes. This is the basic design of + +708 +00:42:49,470 --> 00:42:53,890 +the maze. So the main maze returns a new room, a + +709 +00:42:53,890 --> 00:42:57,230 +new wall and a new door. Now you have to change + +710 +00:42:57,230 --> 00:43:00,010 +the wall, the room and the door. Without changing + +711 +00:43:00,010 --> 00:43:03,780 +what? The design.So that they can separate them. + +712 +00:43:03,820 --> 00:43:06,840 +The first time you see one of them, you say it's a + +713 +00:43:06,840 --> 00:43:10,540 +stupid design. Why? Because it's going to make a + +714 +00:43:10,540 --> 00:43:11,940 +micro and tell you when it's going to make a new + +715 +00:43:11,940 --> 00:43:13,620 +game. Right? The first time you see one of them, + +716 +00:43:13,680 --> 00:43:16,080 +you say it's right or wrong. But no, it's a smart + +717 +00:43:16,080 --> 00:43:18,860 +design. And it makes the design flexible. Because + +718 +00:43:18,860 --> 00:43:23,420 +these can be overwritten. But this one remains as + +719 +00:43:23,420 --> 00:43:26,380 +it is. And in the end, when it finds out that it's + +720 +00:43:26,380 --> 00:43:31,780 +a micro, it will find out that it's a subclass. + +721 +00:43:38,580 --> 00:43:41,800 +The reason this works is that the create maze + +722 +00:43:41,800 --> 00:43:45,560 +method differs the creation of maze objects to its + +723 +00:43:45,560 --> 00:43:49,670 +subclassesThe Create Maze method encouraged + +724 +00:43:49,670 --> 00:43:55,450 +subclasses to change maze objects through Create + +725 +00:43:55,450 --> 00:43:57,670 +Maze and Create Maze and Create Maze and Create + +726 +00:43:57,670 --> 00:43:58,990 +Maze and Create Maze and Create Maze and Create + +727 +00:43:58,990 --> 00:43:59,290 +Maze and Create Maze and Create Maze and Create + +728 +00:43:59,290 --> 00:43:59,690 +Maze and Create Maze and Create Maze and Create + +729 +00:43:59,690 --> 00:44:00,950 +Maze and Create Maze and Create Maze and Create + +730 +00:44:00,950 --> 00:44:05,010 +Maze and Create Maze and Create Maze and Create + +731 +00:44:05,010 --> 00:44:05,810 +Maze and Create Maze and Create Maze and Create + +732 +00:44:05,810 --> 00:44:05,830 +Maze and Create Maze and Create Maze and Create + +733 +00:44:05,830 --> 00:44:05,870 +Maze and Create Maze and Create Maze and Create + +734 +00:44:05,870 --> 00:44:08,130 +Maze and Create Maze and Create Maze and Create + +735 +00:44:08,130 --> 00:44:15,910 +Maze and Create MThe last code I showed you also + +736 +00:44:15,910 --> 00:44:19,770 +links the other parts of the example in the UMN + +737 +00:44:19,770 --> 00:44:23,550 +class diagram. For example, I told you that the + +738 +00:44:23,550 --> 00:44:25,530 +class of the maze game represents the creator, + +739 +00:44:25,710 --> 00:44:30,050 +which is the super class. The concrete creator is + +740 +00:44:30,050 --> 00:44:31,610 +the subclass that emerges from it, like the + +741 +00:44:31,610 --> 00:44:34,410 +enchanted maze game, which extended the super + +742 +00:44:34,410 --> 00:44:38,120 +class and changed the best meal.The factory + +743 +00:44:38,120 --> 00:44:40,500 +methods, make room and make door. But the basic + +744 +00:44:40,500 --> 00:44:43,940 +create method hasn't changed. It still represents + +745 +00:44:43,940 --> 00:44:48,780 +the post, for example. The products that I create, + +746 +00:44:49,280 --> 00:44:53,180 +for example the connectors, here I represent the + +747 +00:44:53,180 --> 00:44:55,680 +map site, which is the room, the wall and the + +748 +00:44:55,680 --> 00:44:55,900 +door. + +749 +00:45:00,370 --> 00:45:02,790 +Enchanted Wall, Enchanted Room and Enchanted Door + +750 +00:45:02,790 --> 00:45:06,550 +are the ones that I need to remove from the + +751 +00:45:06,550 --> 00:45:08,230 +posters and these are the ones that I need to + +752 +00:45:08,230 --> 00:45:12,930 +remove from the maze game class or from the + +753 +00:45:12,930 --> 00:45:16,030 +creators. Can you manage them? Of course, we have + +754 +00:45:16,030 --> 00:45:18,130 +not yet finished the factor method. In the next + +755 +00:45:18,130 --> 00:45:19,910 +lecture, we will see an example of the factor + +756 +00:45:19,910 --> 00:45:23,110 +method using only code PHP.In order not to say + +757 +00:45:23,110 --> 00:45:26,350 +that everything is Java. We will also see an + +758 +00:45:26,350 --> 00:45:30,650 +example of how the design of the GUI is done. We + +759 +00:45:30,650 --> 00:45:32,330 +will get to the point of using the factor method. + +760 +00:45:32,910 --> 00:45:34,390 +You have different types of products, different + +761 +00:45:34,390 --> 00:45:37,550 +types of employees, different types of news. They + +762 +00:45:37,550 --> 00:45:41,510 +all participate in the design of most of them. An + +763 +00:45:41,510 --> 00:45:44,410 +example of integration, but with different parts. + +764 +00:45:44,910 --> 00:45:46,970 +Instead of making each one a different design, we + +765 +00:45:46,970 --> 00:45:50,110 +will make only one design, and leave only the + +766 +00:45:50,110 --> 00:45:52,310 +different parts that we made in the previous one. + +767 +00:45:52,350 --> 00:45:55,270 +For example, when your boss asks you to work or + +768 +00:45:55,270 --> 00:45:58,250 +integrate a new element, instead of sitting for a + +769 +00:45:58,250 --> 00:46:02,890 +week, you work in what? Half an hour, and ask for + +770 +00:46:02,890 --> 00:46:03,250 +a week's salary. + +771 +00:46:06,830 --> 00:46:08,210 +Work smart, not hard. + diff --git a/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/ynXM1RJzYgw_raw.json b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/ynXM1RJzYgw_raw.json new file mode 100644 index 0000000000000000000000000000000000000000..cee0cb2f76ad820bfdf655cebe13851b025f90d2 --- /dev/null +++ b/PL9fwy3NUQKwbAvwbswZnzpEtuqYSAfdyW/ynXM1RJzYgw_raw.json @@ -0,0 +1 @@ +{"segments": [{"id": 1, "seek": 692, "start": 5.62, "end": 6.92, "text": " Salam aleikum.", "tokens": [5996, 335, 6775, 35518, 13], "avg_logprob": -0.9921874602635702, "compression_ratio": 0.6521739130434783, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 5.62, "end": 6.46, "word": " Salam", "probability": 0.366943359375}, {"start": 6.46, "end": 6.92, "word": " aleikum.", "probability": 0.5491943359375}], "temperature": 1.0}, {"id": 2, "seek": 3754, "start": 9.27, "end": 37.55, "text": " Today we will take a new design pattern which is the factory method This is the third design pattern after the factory and the builder We saw that in the factory or every design pattern solves a particular problem The goal of the factory is to assemble the process of creating objects that follow the same interface or superclass in one class So that the change is concentrated in one place And the client does not know anything about the subclasses because it deals only with the superclass", "tokens": [2692, 321, 486, 747, 257, 777, 1715, 5102, 597, 307, 264, 9265, 3170, 639, 307, 264, 2636, 1715, 5102, 934, 264, 9265, 293, 264, 27377, 492, 1866, 300, 294, 264, 9265, 420, 633, 1715, 5102, 39890, 257, 1729, 1154, 440, 3387, 295, 264, 9265, 307, 281, 22364, 264, 1399, 295, 4084, 6565, 300, 1524, 264, 912, 9226, 420, 1687, 11665, 294, 472, 1508, 407, 300, 264, 1319, 307, 21321, 294, 472, 1081, 400, 264, 6423, 775, 406, 458, 1340, 466, 264, 1422, 11665, 279, 570, 309, 11215, 787, 365, 264, 1687, 11665], "avg_logprob": -0.4512768791567895, "compression_ratio": 1.8636363636363635, "no_speech_prob": 4.947185516357422e-06, "words": [{"start": 9.27000000000001, "end": 9.830000000000005, "word": " Today", "probability": 0.431396484375}, {"start": 9.830000000000005, "end": 10.39, "word": " we", "probability": 0.375}, {"start": 10.39, "end": 10.73, "word": " will", "probability": 0.50537109375}, {"start": 10.73, "end": 10.87, "word": " take", "probability": 0.29833984375}, {"start": 10.87, "end": 10.99, "word": " a", "probability": 0.48046875}, {"start": 10.99, "end": 11.01, "word": " new", "probability": 0.389404296875}, {"start": 11.01, "end": 11.25, "word": " design", "probability": 0.63232421875}, {"start": 11.25, "end": 11.69, "word": " pattern", "probability": 0.873046875}, {"start": 11.69, "end": 12.09, "word": " which", "probability": 0.458251953125}, {"start": 12.09, "end": 12.21, "word": " is", "probability": 0.939453125}, {"start": 12.21, "end": 12.35, "word": " the", "probability": 0.39794921875}, {"start": 12.35, "end": 12.61, "word": " factory", "probability": 0.54443359375}, {"start": 12.61, "end": 13.55, "word": " method", "probability": 0.888671875}, {"start": 13.55, "end": 14.77, "word": " This", "probability": 0.441650390625}, {"start": 14.77, "end": 14.81, "word": " is", "probability": 0.923828125}, {"start": 14.81, "end": 14.89, "word": " the", "probability": 0.86962890625}, {"start": 14.89, "end": 15.03, "word": " third", "probability": 0.787109375}, {"start": 15.03, "end": 15.33, "word": " design", "probability": 0.85791015625}, {"start": 15.33, "end": 15.81, "word": " pattern", "probability": 0.908203125}, {"start": 15.81, "end": 16.19, "word": " after", "probability": 0.7890625}, {"start": 16.19, "end": 16.33, "word": " the", "probability": 0.587890625}, {"start": 16.33, "end": 16.75, "word": " factory", "probability": 0.8447265625}, {"start": 16.75, "end": 17.33, "word": " and", "probability": 0.8046875}, {"start": 17.33, "end": 17.71, "word": " the", "probability": 0.32666015625}, {"start": 17.71, "end": 18.05, "word": " builder", "probability": 0.95556640625}, {"start": 18.05, "end": 18.35, "word": " We", "probability": 0.45263671875}, {"start": 18.35, "end": 18.57, "word": " saw", "probability": 0.56591796875}, {"start": 18.57, "end": 18.87, "word": " that", "probability": 0.8447265625}, {"start": 18.87, "end": 18.93, "word": " in", "probability": 0.255126953125}, {"start": 18.93, "end": 19.03, "word": " the", "probability": 0.45947265625}, {"start": 19.03, "end": 19.43, "word": " factory", "probability": 0.912109375}, {"start": 19.43, "end": 20.49, "word": " or", "probability": 0.468994140625}, {"start": 20.49, "end": 20.73, "word": " every", "probability": 0.3349609375}, {"start": 20.73, "end": 21.05, "word": " design", "probability": 0.7421875}, {"start": 21.05, "end": 21.35, "word": " pattern", "probability": 0.86572265625}, {"start": 21.35, "end": 21.61, "word": " solves", "probability": 0.7265625}, {"start": 21.61, "end": 21.99, "word": " a", "probability": 0.921875}, {"start": 21.99, "end": 22.27, "word": " particular", "probability": 0.2529296875}, {"start": 22.27, "end": 22.29, "word": " problem", "probability": 0.85498046875}, {"start": 22.29, "end": 22.69, "word": " The", "probability": 0.4833984375}, {"start": 22.69, "end": 22.95, "word": " goal", "probability": 0.3251953125}, {"start": 22.95, "end": 23.45, "word": " of", "probability": 0.94384765625}, {"start": 23.45, "end": 23.45, "word": " the", "probability": 0.8251953125}, {"start": 23.45, "end": 23.45, "word": " factory", "probability": 0.91015625}, {"start": 23.45, "end": 23.83, "word": " is", "probability": 0.873046875}, {"start": 23.83, "end": 24.69, "word": " to", "probability": 0.84326171875}, {"start": 24.69, "end": 25.03, "word": " assemble", "probability": 0.1595458984375}, {"start": 25.03, "end": 25.19, "word": " the", "probability": 0.5146484375}, {"start": 25.19, "end": 25.39, "word": " process", "probability": 0.372802734375}, {"start": 25.39, "end": 25.51, "word": " of", "probability": 0.9560546875}, {"start": 25.51, "end": 25.77, "word": " creating", "probability": 0.402587890625}, {"start": 25.77, "end": 26.23, "word": " objects", "probability": 0.880859375}, {"start": 26.23, "end": 26.45, "word": " that", "probability": 0.6611328125}, {"start": 26.45, "end": 26.71, "word": " follow", "probability": 0.736328125}, {"start": 26.71, "end": 26.89, "word": " the", "probability": 0.91552734375}, {"start": 26.89, "end": 26.99, "word": " same", "probability": 0.89111328125}, {"start": 26.99, "end": 27.61, "word": " interface", "probability": 0.9443359375}, {"start": 27.61, "end": 27.79, "word": " or", "probability": 0.81640625}, {"start": 27.79, "end": 28.47, "word": " superclass", "probability": 0.800537109375}, {"start": 28.47, "end": 28.61, "word": " in", "probability": 0.8515625}, {"start": 28.61, "end": 28.63, "word": " one", "probability": 0.587890625}, {"start": 28.63, "end": 29.23, "word": " class", "probability": 0.9658203125}, {"start": 29.23, "end": 29.69, "word": " So", "probability": 0.2142333984375}, {"start": 29.69, "end": 29.81, "word": " that", "probability": 0.81982421875}, {"start": 29.81, "end": 30.05, "word": " the", "probability": 0.7919921875}, {"start": 30.05, "end": 30.33, "word": " change", "probability": 0.78564453125}, {"start": 30.33, "end": 30.41, "word": " is", "probability": 0.377685546875}, {"start": 30.41, "end": 30.77, "word": " concentrated", "probability": 0.474853515625}, {"start": 30.77, "end": 30.87, "word": " in", "probability": 0.9052734375}, {"start": 30.87, "end": 30.97, "word": " one", "probability": 0.84130859375}, {"start": 30.97, "end": 31.39, "word": " place", "probability": 0.85791015625}, {"start": 31.39, "end": 32.33, "word": " And", "probability": 0.6123046875}, {"start": 32.33, "end": 32.41, "word": " the", "probability": 0.86279296875}, {"start": 32.41, "end": 32.73, "word": " client", "probability": 0.88037109375}, {"start": 32.73, "end": 32.89, "word": " does", "probability": 0.6875}, {"start": 32.89, "end": 32.89, "word": " not", "probability": 0.94287109375}, {"start": 32.89, "end": 33.27, "word": " know", "probability": 0.79833984375}, {"start": 33.27, "end": 34.11, "word": " anything", "probability": 0.294677734375}, {"start": 34.11, "end": 34.37, "word": " about", "probability": 0.8828125}, {"start": 34.37, "end": 34.47, "word": " the", "probability": 0.77099609375}, {"start": 34.47, "end": 35.11, "word": " subclasses", "probability": 0.6842447916666666}, {"start": 35.11, "end": 35.19, "word": " because", "probability": 0.64697265625}, {"start": 35.19, "end": 35.33, "word": " it", "probability": 0.5888671875}, {"start": 35.33, "end": 35.57, "word": " deals", "probability": 0.433837890625}, {"start": 35.57, "end": 35.95, "word": " only", "probability": 0.85498046875}, {"start": 35.95, "end": 36.05, "word": " with", "probability": 0.90087890625}, {"start": 36.05, "end": 36.83, "word": " the", "probability": 0.63134765625}, {"start": 36.83, "end": 37.55, "word": " superclass", "probability": 0.6981201171875}], "temperature": 1.0}, {"id": 3, "seek": 5597, "start": 38.45, "end": 55.97, "text": "The builder pattern I use in a specific case when I have to create the object, the constructor takes a large number of parameters, so its creation is difficult for the client, so to facilitate the creation process, I save the builder who does or supports the way of creation step by step", "tokens": [2278, 27377, 5102, 286, 764, 294, 257, 2685, 1389, 562, 286, 362, 281, 1884, 264, 2657, 11, 264, 47479, 2516, 257, 2416, 1230, 295, 9834, 11, 370, 1080, 8016, 307, 2252, 337, 264, 6423, 11, 370, 281, 20207, 264, 8016, 1399, 11, 286, 3155, 264, 27377, 567, 775, 420, 9346, 264, 636, 295, 8016, 1823, 538, 1823], "avg_logprob": -0.5231680993376107, "compression_ratio": 1.6033519553072626, "no_speech_prob": 1.5914440155029297e-05, "words": [{"start": 38.449999999999996, "end": 39.05, "word": "The", "probability": 0.1436767578125}, {"start": 39.05, "end": 39.41, "word": " builder", "probability": 0.8974609375}, {"start": 39.41, "end": 39.81, "word": " pattern", "probability": 0.76123046875}, {"start": 39.81, "end": 39.93, "word": " I", "probability": 0.41357421875}, {"start": 39.93, "end": 40.23, "word": " use", "probability": 0.8125}, {"start": 40.23, "end": 40.39, "word": " in", "probability": 0.51904296875}, {"start": 40.39, "end": 40.53, "word": " a", "probability": 0.64697265625}, {"start": 40.53, "end": 41.01, "word": " specific", "probability": 0.365478515625}, {"start": 41.01, "end": 41.09, "word": " case", "probability": 0.56298828125}, {"start": 41.09, "end": 41.37, "word": " when", "probability": 0.442138671875}, {"start": 41.37, "end": 41.43, "word": " I", "probability": 0.7236328125}, {"start": 41.43, "end": 41.79, "word": " have", "probability": 0.5732421875}, {"start": 41.79, "end": 42.29, "word": " to", "probability": 0.493408203125}, {"start": 42.29, "end": 42.29, "word": " create", "probability": 0.515625}, {"start": 42.29, "end": 42.95, "word": " the", "probability": 0.278564453125}, {"start": 42.95, "end": 43.41, "word": " object,", "probability": 0.814453125}, {"start": 43.55, "end": 43.65, "word": " the", "probability": 0.405517578125}, {"start": 43.65, "end": 44.17, "word": " constructor", "probability": 0.908203125}, {"start": 44.17, "end": 44.59, "word": " takes", "probability": 0.483642578125}, {"start": 44.59, "end": 44.81, "word": " a", "probability": 0.65087890625}, {"start": 44.81, "end": 44.81, "word": " large", "probability": 0.471435546875}, {"start": 44.81, "end": 45.31, "word": " number", "probability": 0.89794921875}, {"start": 45.31, "end": 45.67, "word": " of", "probability": 0.9609375}, {"start": 45.67, "end": 46.79, "word": " parameters,", "probability": 0.9453125}, {"start": 47.37, "end": 47.41, "word": " so", "probability": 0.377197265625}, {"start": 47.41, "end": 47.51, "word": " its", "probability": 0.326904296875}, {"start": 47.51, "end": 47.69, "word": " creation", "probability": 0.69384765625}, {"start": 47.69, "end": 47.89, "word": " is", "probability": 0.6162109375}, {"start": 47.89, "end": 48.21, "word": " difficult", "probability": 0.7578125}, {"start": 48.21, "end": 48.39, "word": " for", "probability": 0.7138671875}, {"start": 48.39, "end": 48.49, "word": " the", "probability": 0.833984375}, {"start": 48.49, "end": 48.79, "word": " client,", "probability": 0.919921875}, {"start": 48.97, "end": 48.99, "word": " so", "probability": 0.4111328125}, {"start": 48.99, "end": 49.19, "word": " to", "probability": 0.69140625}, {"start": 49.19, "end": 49.55, "word": " facilitate", "probability": 0.80078125}, {"start": 49.55, "end": 49.67, "word": " the", "probability": 0.78759765625}, {"start": 49.67, "end": 50.27, "word": " creation", "probability": 0.58251953125}, {"start": 50.27, "end": 50.43, "word": " process,", "probability": 0.8955078125}, {"start": 50.97, "end": 51.07, "word": " I", "probability": 0.9482421875}, {"start": 51.07, "end": 51.35, "word": " save", "probability": 0.52490234375}, {"start": 51.35, "end": 51.87, "word": " the", "probability": 0.7734375}, {"start": 51.87, "end": 52.21, "word": " builder", "probability": 0.94140625}, {"start": 52.21, "end": 52.51, "word": " who", "probability": 0.58447265625}, {"start": 52.51, "end": 52.85, "word": " does", "probability": 0.235107421875}, {"start": 52.85, "end": 53.07, "word": " or", "probability": 0.58203125}, {"start": 53.07, "end": 53.37, "word": " supports", "probability": 0.826171875}, {"start": 53.37, "end": 53.83, "word": " the", "probability": 0.84033203125}, {"start": 53.83, "end": 53.99, "word": " way", "probability": 0.2401123046875}, {"start": 53.99, "end": 54.23, "word": " of", "probability": 0.8876953125}, {"start": 54.23, "end": 54.45, "word": " creation", "probability": 0.6650390625}, {"start": 54.45, "end": 54.89, "word": " step", "probability": 0.67236328125}, {"start": 54.89, "end": 55.35, "word": " by", "probability": 0.8349609375}, {"start": 55.35, "end": 55.97, "word": " step", "probability": 0.90087890625}], "temperature": 1.0}, {"id": 4, "seek": 7930, "start": 56.36, "end": 79.3, "text": " step. It is like using the setter method and then creating the object. The third design pattern is the factory method. As usual, let's read the explanation on the factory method. By the way, the explanation that you will find in any reference will be available on the internet. Of course, we will see through our reading that it is very difficult to understand", "tokens": [1823, 13, 467, 307, 411, 1228, 264, 992, 391, 3170, 293, 550, 4084, 264, 2657, 13, 440, 2636, 1715, 5102, 307, 264, 9265, 3170, 13, 1018, 7713, 11, 718, 311, 1401, 264, 10835, 322, 264, 9265, 3170, 13, 3146, 264, 636, 11, 264, 10835, 300, 291, 486, 915, 294, 604, 6408, 486, 312, 2435, 322, 264, 4705, 13, 2720, 1164, 11, 321, 486, 536, 807, 527, 3760, 300, 309, 307, 588, 2252, 281, 1223], "avg_logprob": -0.45000001112620036, "compression_ratio": 1.6712962962962963, "no_speech_prob": 0.00014090538024902344, "words": [{"start": 56.36, "end": 56.82, "word": " step.", "probability": 0.2034912109375}, {"start": 57.14, "end": 57.28, "word": " It", "probability": 0.310791015625}, {"start": 57.28, "end": 57.34, "word": " is", "probability": 0.47998046875}, {"start": 57.34, "end": 57.48, "word": " like", "probability": 0.62841796875}, {"start": 57.48, "end": 57.96, "word": " using", "probability": 0.351318359375}, {"start": 57.96, "end": 58.92, "word": " the", "probability": 0.671875}, {"start": 58.92, "end": 59.18, "word": " setter", "probability": 0.847900390625}, {"start": 59.18, "end": 59.5, "word": " method", "probability": 0.908203125}, {"start": 59.5, "end": 59.74, "word": " and", "probability": 0.486328125}, {"start": 59.74, "end": 59.88, "word": " then", "probability": 0.60546875}, {"start": 59.88, "end": 60.24, "word": " creating", "probability": 0.2371826171875}, {"start": 60.24, "end": 61.02, "word": " the", "probability": 0.61328125}, {"start": 61.02, "end": 61.28, "word": " object.", "probability": 0.88525390625}, {"start": 61.84, "end": 62.12, "word": " The", "probability": 0.740234375}, {"start": 62.12, "end": 62.6, "word": " third", "probability": 0.52783203125}, {"start": 62.6, "end": 63.8, "word": " design", "probability": 0.75}, {"start": 63.8, "end": 64.14, "word": " pattern", "probability": 0.8759765625}, {"start": 64.14, "end": 64.56, "word": " is", "probability": 0.88818359375}, {"start": 64.56, "end": 64.74, "word": " the", "probability": 0.69384765625}, {"start": 64.74, "end": 65.12, "word": " factory", "probability": 0.77490234375}, {"start": 65.12, "end": 66.28, "word": " method.", "probability": 0.9521484375}, {"start": 67.82, "end": 67.88, "word": " As", "probability": 0.4619140625}, {"start": 67.88, "end": 68.24, "word": " usual,", "probability": 0.888671875}, {"start": 68.36, "end": 68.6, "word": " let's", "probability": 0.765380859375}, {"start": 68.6, "end": 68.84, "word": " read", "probability": 0.91748046875}, {"start": 68.84, "end": 69.1, "word": " the", "probability": 0.84423828125}, {"start": 69.1, "end": 69.32, "word": " explanation", "probability": 0.51513671875}, {"start": 69.32, "end": 69.74, "word": " on", "probability": 0.407958984375}, {"start": 69.74, "end": 69.86, "word": " the", "probability": 0.62841796875}, {"start": 69.86, "end": 70.1, "word": " factory", "probability": 0.90283203125}, {"start": 70.1, "end": 70.36, "word": " method.", "probability": 0.953125}, {"start": 70.54, "end": 70.74, "word": " By", "probability": 0.521484375}, {"start": 70.74, "end": 70.84, "word": " the", "probability": 0.94140625}, {"start": 70.84, "end": 71.28, "word": " way,", "probability": 0.95849609375}, {"start": 71.52, "end": 71.52, "word": " the", "probability": 0.306640625}, {"start": 71.52, "end": 71.72, "word": " explanation", "probability": 0.712890625}, {"start": 71.72, "end": 71.82, "word": " that", "probability": 0.228759765625}, {"start": 71.82, "end": 71.92, "word": " you", "probability": 0.92138671875}, {"start": 71.92, "end": 71.94, "word": " will", "probability": 0.71044921875}, {"start": 71.94, "end": 72.16, "word": " find", "probability": 0.8583984375}, {"start": 72.16, "end": 72.3, "word": " in", "probability": 0.53955078125}, {"start": 72.3, "end": 72.52, "word": " any", "probability": 0.8681640625}, {"start": 72.52, "end": 72.74, "word": " reference", "probability": 0.42041015625}, {"start": 72.74, "end": 72.9, "word": " will", "probability": 0.39013671875}, {"start": 72.9, "end": 73.02, "word": " be", "probability": 0.78271484375}, {"start": 73.02, "end": 73.26, "word": " available", "probability": 0.3740234375}, {"start": 73.26, "end": 73.44, "word": " on", "probability": 0.7724609375}, {"start": 73.44, "end": 74.2, "word": " the", "probability": 0.875}, {"start": 74.2, "end": 74.52, "word": " internet.", "probability": 0.6689453125}, {"start": 75.2, "end": 75.38, "word": " Of", "probability": 0.61865234375}, {"start": 75.38, "end": 75.5, "word": " course,", "probability": 0.9580078125}, {"start": 75.8, "end": 75.82, "word": " we", "probability": 0.5380859375}, {"start": 75.82, "end": 75.88, "word": " will", "probability": 0.84716796875}, {"start": 75.88, "end": 76.1, "word": " see", "probability": 0.876953125}, {"start": 76.1, "end": 76.44, "word": " through", "probability": 0.6455078125}, {"start": 76.44, "end": 76.62, "word": " our", "probability": 0.8408203125}, {"start": 76.62, "end": 76.88, "word": " reading", "probability": 0.92431640625}, {"start": 76.88, "end": 77.34, "word": " that", "probability": 0.888671875}, {"start": 77.34, "end": 77.62, "word": " it", "probability": 0.86474609375}, {"start": 77.62, "end": 78.02, "word": " is", "probability": 0.93310546875}, {"start": 78.02, "end": 78.08, "word": " very", "probability": 0.8369140625}, {"start": 78.08, "end": 78.36, "word": " difficult", "probability": 0.89599609375}, {"start": 78.36, "end": 78.92, "word": " to", "probability": 0.36767578125}, {"start": 78.92, "end": 79.3, "word": " understand", "probability": 0.73876953125}], "temperature": 1.0}, {"id": 5, "seek": 10943, "start": 80.09, "end": 109.43, "text": " the meaning of the factory or any design pattern without seeing examples that explain what it means. So now we will try to read it before taking the example to see if we will understand something from it or not. After taking the example, we will come back to this explanation to see how after the example we will understand what is written. Now, the factory method that you follow is the goal to define an interface for creating an object but let subclasses decide which class to instantiate.", "tokens": [264, 3620, 295, 264, 9265, 420, 604, 1715, 5102, 1553, 2577, 5110, 300, 2903, 437, 309, 1355, 13, 407, 586, 321, 486, 853, 281, 1401, 309, 949, 1940, 264, 1365, 281, 536, 498, 321, 486, 1223, 746, 490, 309, 420, 406, 13, 2381, 1940, 264, 1365, 11, 321, 486, 808, 646, 281, 341, 10835, 281, 536, 577, 934, 264, 1365, 321, 486, 1223, 437, 307, 3720, 13, 823, 11, 264, 9265, 3170, 300, 291, 1524, 307, 264, 3387, 281, 6964, 364, 9226, 337, 4084, 364, 2657, 457, 718, 1422, 11665, 279, 4536, 597, 1508, 281, 9836, 13024, 13], "avg_logprob": -0.42234847521541097, "compression_ratio": 1.8395522388059702, "no_speech_prob": 1.0609626770019531e-05, "words": [{"start": 80.09, "end": 80.35, "word": " the", "probability": 0.1015625}, {"start": 80.35, "end": 80.47, "word": " meaning", "probability": 0.42529296875}, {"start": 80.47, "end": 80.63, "word": " of", "probability": 0.9296875}, {"start": 80.63, "end": 80.69, "word": " the", "probability": 0.47314453125}, {"start": 80.69, "end": 80.95, "word": " factory", "probability": 0.537109375}, {"start": 80.95, "end": 81.17, "word": " or", "probability": 0.70068359375}, {"start": 81.17, "end": 81.41, "word": " any", "probability": 0.86328125}, {"start": 81.41, "end": 81.71, "word": " design", "probability": 0.91943359375}, {"start": 81.71, "end": 82.13, "word": " pattern", "probability": 0.8583984375}, {"start": 82.13, "end": 82.83, "word": " without", "probability": 0.7578125}, {"start": 82.83, "end": 83.19, "word": " seeing", "probability": 0.54150390625}, {"start": 83.19, "end": 83.51, "word": " examples", "probability": 0.1097412109375}, {"start": 83.51, "end": 83.91, "word": " that", "probability": 0.411865234375}, {"start": 83.91, "end": 84.19, "word": " explain", "probability": 0.5498046875}, {"start": 84.19, "end": 84.53, "word": " what", "probability": 0.572265625}, {"start": 84.53, "end": 84.65, "word": " it", "probability": 0.252685546875}, {"start": 84.65, "end": 84.95, "word": " means.", "probability": 0.69921875}, {"start": 85.65, "end": 85.81, "word": " So", "probability": 0.28369140625}, {"start": 85.81, "end": 85.99, "word": " now", "probability": 0.548828125}, {"start": 85.99, "end": 86.11, "word": " we", "probability": 0.5732421875}, {"start": 86.11, "end": 86.11, "word": " will", "probability": 0.4873046875}, {"start": 86.11, "end": 86.31, "word": " try", "probability": 0.798828125}, {"start": 86.31, "end": 86.43, "word": " to", "probability": 0.8857421875}, {"start": 86.43, "end": 86.61, "word": " read", "probability": 0.92578125}, {"start": 86.61, "end": 86.77, "word": " it", "probability": 0.473388671875}, {"start": 86.77, "end": 86.97, "word": " before", "probability": 0.7578125}, {"start": 86.97, "end": 87.25, "word": " taking", "probability": 0.393798828125}, {"start": 87.25, "end": 87.37, "word": " the", "probability": 0.6240234375}, {"start": 87.37, "end": 87.61, "word": " example", "probability": 0.94287109375}, {"start": 87.61, "end": 88.13, "word": " to", "probability": 0.5537109375}, {"start": 88.13, "end": 88.35, "word": " see", "probability": 0.77001953125}, {"start": 88.35, "end": 88.93, "word": " if", "probability": 0.75439453125}, {"start": 88.93, "end": 89.17, "word": " we", "probability": 0.93212890625}, {"start": 89.17, "end": 89.17, "word": " will", "probability": 0.4140625}, {"start": 89.17, "end": 89.31, "word": " understand", "probability": 0.69775390625}, {"start": 89.31, "end": 89.59, "word": " something", "probability": 0.470703125}, {"start": 89.59, "end": 89.71, "word": " from", "probability": 0.67236328125}, {"start": 89.71, "end": 89.85, "word": " it", "probability": 0.931640625}, {"start": 89.85, "end": 89.97, "word": " or", "probability": 0.90478515625}, {"start": 89.97, "end": 90.13, "word": " not.", "probability": 0.92236328125}, {"start": 90.83, "end": 91.03, "word": " After", "probability": 0.333251953125}, {"start": 91.03, "end": 91.37, "word": " taking", "probability": 0.63916015625}, {"start": 91.37, "end": 91.47, "word": " the", "probability": 0.892578125}, {"start": 91.47, "end": 91.63, "word": " example,", "probability": 0.9716796875}, {"start": 91.77, "end": 91.79, "word": " we", "probability": 0.89501953125}, {"start": 91.79, "end": 91.87, "word": " will", "probability": 0.791015625}, {"start": 91.87, "end": 91.97, "word": " come", "probability": 0.443115234375}, {"start": 91.97, "end": 92.05, "word": " back", "probability": 0.8603515625}, {"start": 92.05, "end": 92.05, "word": " to", "probability": 0.7490234375}, {"start": 92.05, "end": 92.73, "word": " this", "probability": 0.404296875}, {"start": 92.73, "end": 94.25, "word": " explanation", "probability": 0.444580078125}, {"start": 94.25, "end": 94.57, "word": " to", "probability": 0.49755859375}, {"start": 94.57, "end": 94.91, "word": " see", "probability": 0.8740234375}, {"start": 94.91, "end": 95.11, "word": " how", "probability": 0.88525390625}, {"start": 95.11, "end": 95.25, "word": " after", "probability": 0.6884765625}, {"start": 95.25, "end": 95.41, "word": " the", "probability": 0.60498046875}, {"start": 95.41, "end": 95.63, "word": " example", "probability": 0.97021484375}, {"start": 95.63, "end": 95.79, "word": " we", "probability": 0.658203125}, {"start": 95.79, "end": 95.87, "word": " will", "probability": 0.826171875}, {"start": 95.87, "end": 96.11, "word": " understand", "probability": 0.76416015625}, {"start": 96.11, "end": 96.29, "word": " what", "probability": 0.44677734375}, {"start": 96.29, "end": 96.49, "word": " is", "probability": 0.82568359375}, {"start": 96.49, "end": 96.79, "word": " written.", "probability": 0.8798828125}, {"start": 97.45, "end": 97.85, "word": " Now,", "probability": 0.70947265625}, {"start": 97.95, "end": 98.07, "word": " the", "probability": 0.87744140625}, {"start": 98.07, "end": 98.33, "word": " factory", "probability": 0.7412109375}, {"start": 98.33, "end": 98.75, "word": " method", "probability": 0.92724609375}, {"start": 98.75, "end": 98.89, "word": " that", "probability": 0.55517578125}, {"start": 98.89, "end": 99.13, "word": " you", "probability": 0.93896484375}, {"start": 99.13, "end": 99.43, "word": " follow", "probability": 0.333984375}, {"start": 99.43, "end": 99.61, "word": " is", "probability": 0.22119140625}, {"start": 99.61, "end": 99.67, "word": " the", "probability": 0.7197265625}, {"start": 99.67, "end": 99.99, "word": " goal", "probability": 0.81591796875}, {"start": 99.99, "end": 101.41, "word": " to", "probability": 0.474609375}, {"start": 101.41, "end": 102.15, "word": " define", "probability": 0.92822265625}, {"start": 102.15, "end": 102.37, "word": " an", "probability": 0.93017578125}, {"start": 102.37, "end": 102.85, "word": " interface", "probability": 0.87548828125}, {"start": 102.85, "end": 103.05, "word": " for", "probability": 0.896484375}, {"start": 103.05, "end": 103.55, "word": " creating", "probability": 0.8955078125}, {"start": 103.55, "end": 103.81, "word": " an", "probability": 0.94091796875}, {"start": 103.81, "end": 104.23, "word": " object", "probability": 0.97314453125}, {"start": 104.23, "end": 105.39, "word": " but", "probability": 0.52734375}, {"start": 105.39, "end": 105.71, "word": " let", "probability": 0.89794921875}, {"start": 105.71, "end": 107.65, "word": " subclasses", "probability": 0.7644856770833334}, {"start": 107.65, "end": 108.03, "word": " decide", "probability": 0.92626953125}, {"start": 108.03, "end": 108.29, "word": " which", "probability": 0.94384765625}, {"start": 108.29, "end": 108.63, "word": " class", "probability": 0.94482421875}, {"start": 108.63, "end": 108.79, "word": " to", "probability": 0.96875}, {"start": 108.79, "end": 109.43, "word": " instantiate.", "probability": 0.938720703125}], "temperature": 1.0}, {"id": 6, "seek": 13706, "start": 110.6, "end": 137.06, "text": "Factory method lets a class differ instantiation to subclasses. طبعا هذا الكلام مش واضح بالنسبالك صح؟ ممكن استخدم ال factory method لما كل class cannot anticipate to anticipate تقدرش توقع the class of object it must create او لما يكون عند ال class wants its subclasses to specify the object it creates لما بدي ال class تقلب", "tokens": [37, 578, 827, 3170, 6653, 257, 1508, 743, 9836, 6642, 281, 1422, 11665, 279, 13, 23032, 3555, 3615, 995, 23758, 2423, 28820, 10943, 37893, 4032, 46958, 5016, 20666, 1863, 35457, 6027, 4117, 20328, 5016, 22807, 3714, 43020, 44713, 9778, 40448, 2423, 9265, 3170, 5296, 15042, 28242, 1508, 2644, 21685, 281, 21685, 6055, 28543, 2288, 8592, 6055, 30543, 3615, 264, 1508, 295, 2657, 309, 1633, 1884, 1975, 2407, 5296, 15042, 7251, 30544, 43242, 2423, 1508, 2738, 1080, 1422, 11665, 279, 281, 16500, 264, 2657, 309, 7829, 5296, 15042, 4724, 16254, 2423, 1508, 6055, 4587, 46152], "avg_logprob": -0.27401315287539835, "compression_ratio": 1.6175298804780875, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 110.6, "end": 111.14, "word": "Factory", "probability": 0.6787109375}, {"start": 111.14, "end": 111.44, "word": " method", "probability": 0.796875}, {"start": 111.44, "end": 111.76, "word": " lets", "probability": 0.66796875}, {"start": 111.76, "end": 111.98, "word": " a", "probability": 0.98193359375}, {"start": 111.98, "end": 112.32, "word": " class", "probability": 0.96337890625}, {"start": 112.32, "end": 112.68, "word": " differ", "probability": 0.82177734375}, {"start": 112.68, "end": 113.56, "word": " instantiation", "probability": 0.951171875}, {"start": 113.56, "end": 113.78, "word": " to", "probability": 0.9580078125}, {"start": 113.78, "end": 115.78, "word": " subclasses.", "probability": 0.8727213541666666}, {"start": 116.04, "end": 116.64, "word": " طبعا", "probability": 0.70208740234375}, {"start": 116.64, "end": 116.86, "word": " هذا", "probability": 0.7197265625}, {"start": 116.86, "end": 117.1, "word": " الكلام", "probability": 0.9212239583333334}, {"start": 117.1, "end": 117.26, "word": " مش", "probability": 0.96044921875}, {"start": 117.26, "end": 117.48, "word": " واضح", "probability": 0.9700520833333334}, {"start": 117.48, "end": 117.98, "word": " بالنسبالك", "probability": 0.9208984375}, {"start": 117.98, "end": 118.62, "word": " صح؟", "probability": 0.5904134114583334}, {"start": 118.62, "end": 119.12, "word": " ممكن", "probability": 0.39892578125}, {"start": 119.12, "end": 119.62, "word": " استخدم", "probability": 0.9051106770833334}, {"start": 119.62, "end": 119.76, "word": " ال", "probability": 0.79638671875}, {"start": 119.76, "end": 120.04, "word": " factory", "probability": 0.6396484375}, {"start": 120.04, "end": 120.5, "word": " method", "probability": 0.98828125}, {"start": 120.5, "end": 121.02, "word": " لما", "probability": 0.893310546875}, {"start": 121.02, "end": 121.28, "word": " كل", "probability": 0.966796875}, {"start": 121.28, "end": 121.62, "word": " class", "probability": 0.990234375}, {"start": 121.62, "end": 121.86, "word": " cannot", "probability": 0.79638671875}, {"start": 121.86, "end": 122.7, "word": " anticipate", "probability": 0.8701171875}, {"start": 122.7, "end": 124.14, "word": " to", "probability": 0.09393310546875}, {"start": 124.14, "end": 124.9, "word": " anticipate", "probability": 0.80859375}, {"start": 124.9, "end": 126.04, "word": " تقدرش", "probability": 0.7357177734375}, {"start": 126.04, "end": 126.46, "word": " توقع", "probability": 0.9083658854166666}, {"start": 126.46, "end": 126.62, "word": " the", "probability": 0.56103515625}, {"start": 126.62, "end": 126.86, "word": " class", "probability": 0.96826171875}, {"start": 126.86, "end": 127.0, "word": " of", "probability": 0.9404296875}, {"start": 127.0, "end": 127.28, "word": " object", "probability": 0.87109375}, {"start": 127.28, "end": 127.48, "word": " it", "probability": 0.9501953125}, {"start": 127.48, "end": 127.66, "word": " must", "probability": 0.85400390625}, {"start": 127.66, "end": 128.2, "word": " create", "probability": 0.9189453125}, {"start": 128.2, "end": 129.46, "word": " او", "probability": 0.746337890625}, {"start": 129.46, "end": 129.66, "word": " لما", "probability": 0.982421875}, {"start": 129.66, "end": 129.92, "word": " يكون", "probability": 0.968994140625}, {"start": 129.92, "end": 130.1, "word": " عند", "probability": 0.81591796875}, {"start": 130.1, "end": 130.2, "word": " ال", "probability": 0.64697265625}, {"start": 130.2, "end": 130.48, "word": " class", "probability": 0.9365234375}, {"start": 130.48, "end": 130.96, "word": " wants", "probability": 0.70458984375}, {"start": 130.96, "end": 131.22, "word": " its", "probability": 0.84765625}, {"start": 131.22, "end": 131.84, "word": " subclasses", "probability": 0.7972005208333334}, {"start": 131.84, "end": 131.94, "word": " to", "probability": 0.9736328125}, {"start": 131.94, "end": 132.44, "word": " specify", "probability": 0.9541015625}, {"start": 132.44, "end": 132.72, "word": " the", "probability": 0.93310546875}, {"start": 132.72, "end": 133.02, "word": " object", "probability": 0.9326171875}, {"start": 133.02, "end": 133.22, "word": " it", "probability": 0.966796875}, {"start": 133.22, "end": 133.66, "word": " creates", "probability": 0.892578125}, {"start": 133.66, "end": 134.58, "word": " لما", "probability": 0.8798828125}, {"start": 134.58, "end": 134.86, "word": " بدي", "probability": 0.6624755859375}, {"start": 134.86, "end": 135.16, "word": " ال", "probability": 0.72900390625}, {"start": 135.16, "end": 135.78, "word": " class", "probability": 0.984375}, {"start": 135.78, "end": 137.06, "word": " تقلب", "probability": 0.6751302083333334}], "temperature": 1.0}, {"id": 7, "seek": 16236, "start": 138.16, "end": 162.36, "text": "or from the subclasses to define the objects that are being created. Ok, this is not clear. To understand this, we will take a number of examples from the factory method to understand it and see its different uses. The first example I want to explain to understand the problem clearly. Let's see the example that I will explain now.", "tokens": [284, 490, 264, 1422, 11665, 279, 281, 6964, 264, 6565, 300, 366, 885, 2942, 13, 3477, 11, 341, 307, 406, 1850, 13, 1407, 1223, 341, 11, 321, 486, 747, 257, 1230, 295, 5110, 490, 264, 9265, 3170, 281, 1223, 309, 293, 536, 1080, 819, 4960, 13, 440, 700, 1365, 286, 528, 281, 2903, 281, 1223, 264, 1154, 4448, 13, 961, 311, 536, 264, 1365, 300, 286, 486, 2903, 586, 13], "avg_logprob": -0.4947182913901101, "compression_ratio": 1.6195121951219513, "no_speech_prob": 2.7179718017578125e-05, "words": [{"start": 138.16, "end": 138.72, "word": "or", "probability": 0.09014892578125}, {"start": 138.72, "end": 139.12, "word": " from", "probability": 0.481689453125}, {"start": 139.12, "end": 139.24, "word": " the", "probability": 0.51025390625}, {"start": 139.24, "end": 139.84, "word": " subclasses", "probability": 0.684326171875}, {"start": 139.84, "end": 139.94, "word": " to", "probability": 0.362060546875}, {"start": 139.94, "end": 140.42, "word": " define", "probability": 0.42333984375}, {"start": 140.42, "end": 140.6, "word": " the", "probability": 0.69873046875}, {"start": 140.6, "end": 140.94, "word": " objects", "probability": 0.78125}, {"start": 140.94, "end": 141.12, "word": " that", "probability": 0.5693359375}, {"start": 141.12, "end": 141.92, "word": " are", "probability": 0.576171875}, {"start": 141.92, "end": 141.94, "word": " being", "probability": 0.345947265625}, {"start": 141.94, "end": 142.28, "word": " created.", "probability": 0.46240234375}, {"start": 142.76, "end": 143.2, "word": " Ok,", "probability": 0.1473388671875}, {"start": 143.24, "end": 143.42, "word": " this", "probability": 0.70654296875}, {"start": 143.42, "end": 143.62, "word": " is", "probability": 0.44873046875}, {"start": 143.62, "end": 143.8, "word": " not", "probability": 0.7685546875}, {"start": 143.8, "end": 144.06, "word": " clear.", "probability": 0.595703125}, {"start": 144.14, "end": 144.34, "word": " To", "probability": 0.6533203125}, {"start": 144.34, "end": 144.6, "word": " understand", "probability": 0.67041015625}, {"start": 144.6, "end": 144.72, "word": " this,", "probability": 0.78173828125}, {"start": 145.12, "end": 146.34, "word": " we", "probability": 0.85009765625}, {"start": 146.34, "end": 146.34, "word": " will", "probability": 0.57861328125}, {"start": 146.34, "end": 146.76, "word": " take", "probability": 0.70947265625}, {"start": 146.76, "end": 147.48, "word": " a", "probability": 0.46337890625}, {"start": 147.48, "end": 147.72, "word": " number", "probability": 0.59521484375}, {"start": 147.72, "end": 147.94, "word": " of", "probability": 0.955078125}, {"start": 147.94, "end": 148.28, "word": " examples", "probability": 0.77001953125}, {"start": 148.28, "end": 148.56, "word": " from", "probability": 0.456787109375}, {"start": 148.56, "end": 149.32, "word": " the", "probability": 0.822265625}, {"start": 149.32, "end": 149.6, "word": " factory", "probability": 0.7158203125}, {"start": 149.6, "end": 149.94, "word": " method", "probability": 0.90283203125}, {"start": 149.94, "end": 150.16, "word": " to", "probability": 0.63916015625}, {"start": 150.16, "end": 150.48, "word": " understand", "probability": 0.6708984375}, {"start": 150.48, "end": 150.62, "word": " it", "probability": 0.73486328125}, {"start": 150.62, "end": 150.68, "word": " and", "probability": 0.7177734375}, {"start": 150.68, "end": 150.84, "word": " see", "probability": 0.57275390625}, {"start": 150.84, "end": 151.74, "word": " its", "probability": 0.60302734375}, {"start": 151.74, "end": 152.48, "word": " different", "probability": 0.62255859375}, {"start": 152.48, "end": 152.48, "word": " uses.", "probability": 0.64697265625}, {"start": 153.72, "end": 154.28, "word": " The", "probability": 0.658203125}, {"start": 154.28, "end": 154.38, "word": " first", "probability": 0.88623046875}, {"start": 154.38, "end": 154.66, "word": " example", "probability": 0.96728515625}, {"start": 154.66, "end": 154.8, "word": " I", "probability": 0.60986328125}, {"start": 154.8, "end": 154.98, "word": " want", "probability": 0.54345703125}, {"start": 154.98, "end": 155.06, "word": " to", "probability": 0.9677734375}, {"start": 155.06, "end": 155.16, "word": " explain", "probability": 0.84326171875}, {"start": 155.16, "end": 155.34, "word": " to", "probability": 0.5927734375}, {"start": 155.34, "end": 155.66, "word": " understand", "probability": 0.6669921875}, {"start": 155.66, "end": 155.8, "word": " the", "probability": 0.69775390625}, {"start": 155.8, "end": 156.08, "word": " problem", "probability": 0.82373046875}, {"start": 156.08, "end": 156.98, "word": " clearly.", "probability": 0.62646484375}, {"start": 159.42, "end": 159.98, "word": " Let's", "probability": 0.58837890625}, {"start": 159.98, "end": 160.16, "word": " see", "probability": 0.56884765625}, {"start": 160.16, "end": 160.28, "word": " the", "probability": 0.85888671875}, {"start": 160.28, "end": 160.68, "word": " example", "probability": 0.974609375}, {"start": 160.68, "end": 161.34, "word": " that", "probability": 0.61279296875}, {"start": 161.34, "end": 161.62, "word": " I", "probability": 0.98876953125}, {"start": 161.62, "end": 161.68, "word": " will", "probability": 0.70751953125}, {"start": 161.68, "end": 161.82, "word": " explain", "probability": 0.80712890625}, {"start": 161.82, "end": 162.36, "word": " now.", "probability": 0.84912109375}], "temperature": 1.0}, {"id": 8, "seek": 19044, "start": 166.74, "end": 190.44, "text": " Let me just delete some classes from the previous lecture Ok guys, imagine that you want to create an application mobile or web or whatever through which you want to post on social media", "tokens": [961, 385, 445, 12097, 512, 5359, 490, 264, 3894, 7991, 3477, 1074, 11, 3811, 300, 291, 528, 281, 1884, 364, 3861, 6013, 420, 3670, 420, 2035, 807, 597, 291, 528, 281, 2183, 322, 2093, 3021], "avg_logprob": -0.5026041385200288, "compression_ratio": 1.385185185185185, "no_speech_prob": 0.0, "words": [{"start": 166.74, "end": 167.02, "word": " Let", "probability": 0.362548828125}, {"start": 167.02, "end": 167.18, "word": " me", "probability": 0.9091796875}, {"start": 167.18, "end": 167.42, "word": " just", "probability": 0.433837890625}, {"start": 167.42, "end": 168.76, "word": " delete", "probability": 0.40087890625}, {"start": 168.76, "end": 169.08, "word": " some", "probability": 0.82763671875}, {"start": 169.08, "end": 169.5, "word": " classes", "probability": 0.415283203125}, {"start": 169.5, "end": 169.76, "word": " from", "probability": 0.8525390625}, {"start": 169.76, "end": 169.92, "word": " the", "probability": 0.56005859375}, {"start": 169.92, "end": 170.46, "word": " previous", "probability": 0.468017578125}, {"start": 170.46, "end": 170.5, "word": " lecture", "probability": 0.810546875}, {"start": 170.5, "end": 183.38, "word": " Ok", "probability": 0.281005859375}, {"start": 183.38, "end": 183.68, "word": " guys,", "probability": 0.6875}, {"start": 183.8, "end": 184.08, "word": " imagine", "probability": 0.6982421875}, {"start": 184.08, "end": 184.22, "word": " that", "probability": 0.55908203125}, {"start": 184.22, "end": 184.34, "word": " you", "probability": 0.966796875}, {"start": 184.34, "end": 184.52, "word": " want", "probability": 0.794921875}, {"start": 184.52, "end": 184.58, "word": " to", "probability": 0.97216796875}, {"start": 184.58, "end": 184.74, "word": " create", "probability": 0.47607421875}, {"start": 184.74, "end": 184.86, "word": " an", "probability": 0.509765625}, {"start": 184.86, "end": 185.3, "word": " application", "probability": 0.6044921875}, {"start": 185.3, "end": 186.36, "word": " mobile", "probability": 0.330810546875}, {"start": 186.36, "end": 186.78, "word": " or", "probability": 0.6142578125}, {"start": 186.78, "end": 187.06, "word": " web", "probability": 0.8759765625}, {"start": 187.06, "end": 187.24, "word": " or", "probability": 0.83935546875}, {"start": 187.24, "end": 187.52, "word": " whatever", "probability": 0.35498046875}, {"start": 187.52, "end": 188.52, "word": " through", "probability": 0.165771484375}, {"start": 188.52, "end": 188.9, "word": " which", "probability": 0.8740234375}, {"start": 188.9, "end": 188.98, "word": " you", "probability": 0.93212890625}, {"start": 188.98, "end": 189.04, "word": " want", "probability": 0.5556640625}, {"start": 189.04, "end": 189.04, "word": " to", "probability": 0.96240234375}, {"start": 189.04, "end": 189.46, "word": " post", "probability": 0.47607421875}, {"start": 189.46, "end": 189.72, "word": " on", "probability": 0.7392578125}, {"start": 189.72, "end": 190.1, "word": " social", "probability": 0.83056640625}, {"start": 190.1, "end": 190.44, "word": " media", "probability": 0.9130859375}], "temperature": 1.0}, {"id": 9, "seek": 21768, "start": 191.92, "end": 217.68, "text": " You can post on Facebook, Whatsapp, Twitter, any social media network. In order to connect with any social media network, you need a connector. Let's say a library or a class that connects with the social media network. It is strange that this connector is provided by the social media network itself. Facebook, for example, provides the Facebook connector. Whatsapp also provides the connector.", "tokens": [509, 393, 2183, 322, 4384, 11, 22051, 1746, 11, 5794, 11, 604, 2093, 3021, 3209, 13, 682, 1668, 281, 1745, 365, 604, 2093, 3021, 3209, 11, 291, 643, 257, 19127, 13, 961, 311, 584, 257, 6405, 420, 257, 1508, 300, 16967, 365, 264, 2093, 3021, 3209, 13, 467, 307, 5861, 300, 341, 19127, 307, 5649, 538, 264, 2093, 3021, 3209, 2564, 13, 4384, 11, 337, 1365, 11, 6417, 264, 4384, 19127, 13, 22051, 1746, 611, 6417, 264, 46264, 20814, 13], "avg_logprob": -0.5868055791030695, "compression_ratio": 2.010152284263959, "no_speech_prob": 8.046627044677734e-06, "words": [{"start": 191.92000000000002, "end": 192.46, "word": " You", "probability": 0.054351806640625}, {"start": 192.46, "end": 193.0, "word": " can", "probability": 0.437744140625}, {"start": 193.0, "end": 193.56, "word": " post", "probability": 0.400146484375}, {"start": 193.56, "end": 193.86, "word": " on", "probability": 0.568359375}, {"start": 193.86, "end": 194.4, "word": " Facebook,", "probability": 0.5732421875}, {"start": 194.84, "end": 195.38, "word": " Whatsapp,", "probability": 0.6396484375}, {"start": 195.52, "end": 196.08, "word": " Twitter,", "probability": 0.78515625}, {"start": 196.58, "end": 197.16, "word": " any", "probability": 0.6025390625}, {"start": 197.16, "end": 197.46, "word": " social", "probability": 0.89306640625}, {"start": 197.46, "end": 197.72, "word": " media", "probability": 0.85302734375}, {"start": 197.72, "end": 198.36, "word": " network.", "probability": 0.8125}, {"start": 199.0, "end": 199.18, "word": " In", "probability": 0.375244140625}, {"start": 199.18, "end": 199.6, "word": " order", "probability": 0.68408203125}, {"start": 199.6, "end": 199.94, "word": " to", "probability": 0.9404296875}, {"start": 199.94, "end": 200.12, "word": " connect", "probability": 0.775390625}, {"start": 200.12, "end": 200.28, "word": " with", "probability": 0.6962890625}, {"start": 200.28, "end": 200.48, "word": " any", "probability": 0.448486328125}, {"start": 200.48, "end": 200.88, "word": " social", "probability": 0.88330078125}, {"start": 200.88, "end": 201.14, "word": " media", "probability": 0.79541015625}, {"start": 201.14, "end": 201.84, "word": " network,", "probability": 0.92626953125}, {"start": 201.94, "end": 201.94, "word": " you", "probability": 0.8388671875}, {"start": 201.94, "end": 202.06, "word": " need", "probability": 0.81982421875}, {"start": 202.06, "end": 202.26, "word": " a", "probability": 0.9365234375}, {"start": 202.26, "end": 202.6, "word": " connector.", "probability": 0.5966796875}, {"start": 203.48, "end": 204.02, "word": " Let's", "probability": 0.5771484375}, {"start": 204.02, "end": 204.22, "word": " say", "probability": 0.91455078125}, {"start": 204.22, "end": 204.34, "word": " a", "probability": 0.453369140625}, {"start": 204.34, "end": 204.64, "word": " library", "probability": 0.658203125}, {"start": 204.64, "end": 204.92, "word": " or", "probability": 0.8447265625}, {"start": 204.92, "end": 205.06, "word": " a", "probability": 0.365234375}, {"start": 205.06, "end": 205.42, "word": " class", "probability": 0.857421875}, {"start": 205.42, "end": 205.6, "word": " that", "probability": 0.53515625}, {"start": 205.6, "end": 206.38, "word": " connects", "probability": 0.45166015625}, {"start": 206.38, "end": 206.68, "word": " with", "probability": 0.5302734375}, {"start": 206.68, "end": 207.84, "word": " the", "probability": 0.2432861328125}, {"start": 207.84, "end": 208.06, "word": " social", "probability": 0.79736328125}, {"start": 208.06, "end": 208.26, "word": " media", "probability": 0.8701171875}, {"start": 208.26, "end": 208.3, "word": " network.", "probability": 0.315673828125}, {"start": 208.3, "end": 208.38, "word": " It", "probability": 0.214111328125}, {"start": 208.38, "end": 208.42, "word": " is", "probability": 0.33935546875}, {"start": 208.42, "end": 208.54, "word": " strange", "probability": 0.283447265625}, {"start": 208.54, "end": 208.7, "word": " that", "probability": 0.4140625}, {"start": 208.7, "end": 208.82, "word": " this", "probability": 0.352783203125}, {"start": 208.82, "end": 209.22, "word": " connector", "probability": 0.517578125}, {"start": 209.22, "end": 209.34, "word": " is", "probability": 0.382568359375}, {"start": 209.34, "end": 209.74, "word": " provided", "probability": 0.55029296875}, {"start": 209.74, "end": 210.0, "word": " by", "probability": 0.734375}, {"start": 210.0, "end": 210.42, "word": " the", "probability": 0.51806640625}, {"start": 210.42, "end": 210.6, "word": " social", "probability": 0.397216796875}, {"start": 210.6, "end": 210.88, "word": " media", "probability": 0.8603515625}, {"start": 210.88, "end": 211.16, "word": " network", "probability": 0.63134765625}, {"start": 211.16, "end": 211.28, "word": " itself.", "probability": 0.361328125}, {"start": 213.04, "end": 213.58, "word": " Facebook,", "probability": 0.487060546875}, {"start": 213.6, "end": 213.76, "word": " for", "probability": 0.91455078125}, {"start": 213.76, "end": 213.82, "word": " example,", "probability": 0.90625}, {"start": 213.92, "end": 214.2, "word": " provides", "probability": 0.7265625}, {"start": 214.2, "end": 214.44, "word": " the", "probability": 0.324951171875}, {"start": 214.44, "end": 215.22, "word": " Facebook", "probability": 0.4033203125}, {"start": 215.22, "end": 215.42, "word": " connector.", "probability": 0.59619140625}, {"start": 216.12, "end": 216.66, "word": " Whatsapp", "probability": 0.753173828125}, {"start": 216.66, "end": 216.86, "word": " also", "probability": 0.7001953125}, {"start": 216.86, "end": 217.12, "word": " provides", "probability": 0.8662109375}, {"start": 217.12, "end": 217.36, "word": " the", "probability": 0.478271484375}, {"start": 217.36, "end": 217.68, "word": " connector.", "probability": 0.6002197265625}], "temperature": 1.0}, {"id": 10, "seek": 24675, "start": 218.97, "end": 246.75, "text": " You can imagine the connector as follows I have an interface called social media connector Any social media network you want to connect to it actually prints an interface called social media connector and provides you with three methods to connect to any social media network login, post to send the post and logout because this interface is derived from Facebook connector for example", "tokens": [509, 393, 3811, 264, 46264, 20814, 382, 10002, 286, 362, 364, 9226, 1219, 2093, 3021, 19127, 2639, 2093, 3021, 3209, 291, 528, 281, 1745, 281, 309, 767, 22305, 364, 9226, 1219, 2093, 3021, 19127, 293, 6417, 291, 365, 1045, 7150, 281, 1745, 281, 604, 2093, 3021, 3209, 24276, 11, 2183, 281, 2845, 264, 2183, 293, 3565, 346, 570, 341, 9226, 307, 18949, 490, 4384, 19127, 337, 1365], "avg_logprob": -0.5004595412927515, "compression_ratio": 1.9494949494949494, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 218.97, "end": 219.13, "word": " You", "probability": 0.347412109375}, {"start": 219.13, "end": 219.33, "word": " can", "probability": 0.87939453125}, {"start": 219.33, "end": 219.65, "word": " imagine", "probability": 0.8125}, {"start": 219.65, "end": 219.83, "word": " the", "probability": 0.4453125}, {"start": 219.83, "end": 220.19, "word": " connector", "probability": 0.5496826171875}, {"start": 220.19, "end": 220.61, "word": " as", "probability": 0.5517578125}, {"start": 220.61, "end": 221.27, "word": " follows", "probability": 0.6904296875}, {"start": 221.27, "end": 221.51, "word": " I", "probability": 0.353515625}, {"start": 221.51, "end": 222.71, "word": " have", "probability": 0.8701171875}, {"start": 222.71, "end": 222.85, "word": " an", "probability": 0.79443359375}, {"start": 222.85, "end": 223.23, "word": " interface", "probability": 0.873046875}, {"start": 223.23, "end": 223.61, "word": " called", "probability": 0.69091796875}, {"start": 223.61, "end": 224.67, "word": " social", "probability": 0.57373046875}, {"start": 224.67, "end": 224.95, "word": " media", "probability": 0.8515625}, {"start": 224.95, "end": 225.49, "word": " connector", "probability": 0.89794921875}, {"start": 225.49, "end": 227.35, "word": " Any", "probability": 0.472412109375}, {"start": 227.35, "end": 227.63, "word": " social", "probability": 0.92431640625}, {"start": 227.63, "end": 227.89, "word": " media", "probability": 0.8583984375}, {"start": 227.89, "end": 228.23, "word": " network", "probability": 0.95361328125}, {"start": 228.23, "end": 228.33, "word": " you", "probability": 0.26904296875}, {"start": 228.33, "end": 228.47, "word": " want", "probability": 0.57470703125}, {"start": 228.47, "end": 228.47, "word": " to", "probability": 0.96044921875}, {"start": 228.47, "end": 228.57, "word": " connect", "probability": 0.79833984375}, {"start": 228.57, "end": 229.13, "word": " to", "probability": 0.61962890625}, {"start": 229.13, "end": 229.85, "word": " it", "probability": 0.266845703125}, {"start": 229.85, "end": 230.55, "word": " actually", "probability": 0.1417236328125}, {"start": 230.55, "end": 231.55, "word": " prints", "probability": 0.191650390625}, {"start": 231.55, "end": 231.71, "word": " an", "probability": 0.685546875}, {"start": 231.71, "end": 232.11, "word": " interface", "probability": 0.8916015625}, {"start": 232.11, "end": 232.37, "word": " called", "probability": 0.74462890625}, {"start": 232.37, "end": 232.67, "word": " social", "probability": 0.75439453125}, {"start": 232.67, "end": 232.95, "word": " media", "probability": 0.8720703125}, {"start": 232.95, "end": 233.41, "word": " connector", "probability": 0.90478515625}, {"start": 233.41, "end": 233.63, "word": " and", "probability": 0.5205078125}, {"start": 233.63, "end": 233.87, "word": " provides", "probability": 0.6298828125}, {"start": 233.87, "end": 234.13, "word": " you", "probability": 0.67578125}, {"start": 234.13, "end": 234.13, "word": " with", "probability": 0.6455078125}, {"start": 234.13, "end": 234.37, "word": " three", "probability": 0.75439453125}, {"start": 234.37, "end": 234.77, "word": " methods", "probability": 0.76953125}, {"start": 234.77, "end": 235.03, "word": " to", "probability": 0.87060546875}, {"start": 235.03, "end": 235.29, "word": " connect", "probability": 0.8642578125}, {"start": 235.29, "end": 235.47, "word": " to", "probability": 0.86083984375}, {"start": 235.47, "end": 235.63, "word": " any", "probability": 0.806640625}, {"start": 235.63, "end": 235.85, "word": " social", "probability": 0.92041015625}, {"start": 235.85, "end": 236.09, "word": " media", "probability": 0.80859375}, {"start": 236.09, "end": 236.45, "word": " network", "probability": 0.93701171875}, {"start": 236.45, "end": 236.79, "word": " login,", "probability": 0.408203125}, {"start": 238.03, "end": 238.39, "word": " post", "probability": 0.76953125}, {"start": 238.39, "end": 238.67, "word": " to", "probability": 0.59765625}, {"start": 238.67, "end": 238.95, "word": " send", "probability": 0.69677734375}, {"start": 238.95, "end": 239.13, "word": " the", "probability": 0.51220703125}, {"start": 239.13, "end": 239.49, "word": " post", "probability": 0.890625}, {"start": 239.49, "end": 239.93, "word": " and", "probability": 0.64892578125}, {"start": 239.93, "end": 240.41, "word": " logout", "probability": 0.756103515625}, {"start": 240.41, "end": 241.87, "word": " because", "probability": 0.15966796875}, {"start": 241.87, "end": 242.09, "word": " this", "probability": 0.8193359375}, {"start": 242.09, "end": 242.73, "word": " interface", "probability": 0.73291015625}, {"start": 242.73, "end": 243.71, "word": " is", "probability": 0.470703125}, {"start": 243.71, "end": 243.97, "word": " derived", "probability": 0.1629638671875}, {"start": 243.97, "end": 244.13, "word": " from", "probability": 0.7568359375}, {"start": 244.13, "end": 245.73, "word": " Facebook", "probability": 0.1815185546875}, {"start": 245.73, "end": 246.39, "word": " connector", "probability": 0.56103515625}, {"start": 246.39, "end": 246.53, "word": " for", "probability": 0.66796875}, {"start": 246.53, "end": 246.75, "word": " example", "probability": 0.9345703125}], "temperature": 1.0}, {"id": 11, "seek": 25095, "start": 247.47, "end": 250.95, "text": " This class is called Facebook Connector Implements Social Media", "tokens": [639, 1508, 307, 1219, 4384, 11653, 284, 4331, 781, 1117, 9909, 14741], "avg_logprob": -0.43058893313774693, "compression_ratio": 0.927536231884058, "no_speech_prob": 0.0, "words": [{"start": 247.47, "end": 247.73, "word": " This", "probability": 0.421142578125}, {"start": 247.73, "end": 248.07, "word": " class", "probability": 0.88720703125}, {"start": 248.07, "end": 248.21, "word": " is", "probability": 0.75244140625}, {"start": 248.21, "end": 248.39, "word": " called", "probability": 0.60986328125}, {"start": 248.39, "end": 249.19, "word": " Facebook", "probability": 0.51123046875}, {"start": 249.19, "end": 249.67, "word": " Connector", "probability": 0.701904296875}, {"start": 249.67, "end": 250.23, "word": " Implements", "probability": 0.6826171875}, {"start": 250.23, "end": 250.55, "word": " Social", "probability": 0.30810546875}, {"start": 250.55, "end": 250.95, "word": " Media", "probability": 0.96044921875}], "temperature": 1.0}, {"id": 12, "seek": 27989, "start": 252.1, "end": 279.9, "text": " Connector. And of course, as long as you have implemented the interface, you have to implement the three methods, but in different ways. For example, login. Of course, I send the user my password. Of course, there should be a code here, but I ... because this is a demo, but it's okay. I print a message because I'm logging into Facebook. Post. Posting a message on Facebook. Logout. Logging out from Facebook. So here, there is work that is communicating with Facebook.", "tokens": [11653, 284, 13, 400, 295, 1164, 11, 382, 938, 382, 291, 362, 12270, 264, 9226, 11, 291, 362, 281, 4445, 264, 1045, 7150, 11, 457, 294, 819, 2098, 13, 1171, 1365, 11, 24276, 13, 2720, 1164, 11, 286, 2845, 264, 4195, 452, 11524, 13, 2720, 1164, 11, 456, 820, 312, 257, 3089, 510, 11, 457, 286, 1097, 570, 341, 307, 257, 10723, 11, 457, 309, 311, 1392, 13, 286, 4482, 257, 3636, 570, 286, 478, 27991, 666, 4384, 13, 10223, 13, 10223, 278, 257, 3636, 322, 4384, 13, 10824, 346, 13, 10824, 3249, 484, 490, 4384, 13, 407, 510, 11, 456, 307, 589, 300, 307, 17559, 365, 4384, 13], "avg_logprob": -0.4732954586094076, "compression_ratio": 1.7840909090909092, "no_speech_prob": 5.304813385009766e-06, "words": [{"start": 252.1, "end": 252.54, "word": " Connector.", "probability": 0.5390625}, {"start": 252.62, "end": 252.74, "word": " And", "probability": 0.385009765625}, {"start": 252.74, "end": 252.9, "word": " of", "probability": 0.486328125}, {"start": 252.9, "end": 252.9, "word": " course,", "probability": 0.94970703125}, {"start": 253.04, "end": 253.06, "word": " as", "probability": 0.260986328125}, {"start": 253.06, "end": 253.16, "word": " long", "probability": 0.35107421875}, {"start": 253.16, "end": 253.16, "word": " as", "probability": 0.96533203125}, {"start": 253.16, "end": 253.44, "word": " you", "probability": 0.60302734375}, {"start": 253.44, "end": 253.44, "word": " have", "probability": 0.283203125}, {"start": 253.44, "end": 253.78, "word": " implemented", "probability": 0.39208984375}, {"start": 253.78, "end": 254.0, "word": " the", "probability": 0.72900390625}, {"start": 254.0, "end": 254.6, "word": " interface,", "probability": 0.84033203125}, {"start": 254.9, "end": 255.42, "word": " you", "probability": 0.890625}, {"start": 255.42, "end": 255.52, "word": " have", "probability": 0.406982421875}, {"start": 255.52, "end": 255.66, "word": " to", "probability": 0.96533203125}, {"start": 255.66, "end": 256.14, "word": " implement", "probability": 0.8154296875}, {"start": 256.14, "end": 256.6, "word": " the", "probability": 0.5283203125}, {"start": 256.6, "end": 257.36, "word": " three", "probability": 0.75927734375}, {"start": 257.36, "end": 257.8, "word": " methods,", "probability": 0.8818359375}, {"start": 257.9, "end": 258.06, "word": " but", "probability": 0.8701171875}, {"start": 258.06, "end": 258.26, "word": " in", "probability": 0.79052734375}, {"start": 258.26, "end": 258.82, "word": " different", "probability": 0.83544921875}, {"start": 258.82, "end": 258.86, "word": " ways.", "probability": 0.86767578125}, {"start": 259.06, "end": 259.2, "word": " For", "probability": 0.6298828125}, {"start": 259.2, "end": 259.52, "word": " example,", "probability": 0.8994140625}, {"start": 260.06, "end": 260.44, "word": " login.", "probability": 0.328369140625}, {"start": 261.06, "end": 261.32, "word": " Of", "probability": 0.498046875}, {"start": 261.32, "end": 261.32, "word": " course,", "probability": 0.96435546875}, {"start": 261.86, "end": 262.06, "word": " I", "probability": 0.54150390625}, {"start": 262.06, "end": 262.16, "word": " send", "probability": 0.35498046875}, {"start": 262.16, "end": 262.32, "word": " the", "probability": 0.623046875}, {"start": 262.32, "end": 262.44, "word": " user", "probability": 0.8388671875}, {"start": 262.44, "end": 262.66, "word": " my", "probability": 0.36865234375}, {"start": 262.66, "end": 262.96, "word": " password.", "probability": 0.91845703125}, {"start": 263.12, "end": 263.24, "word": " Of", "probability": 0.60205078125}, {"start": 263.24, "end": 263.24, "word": " course,", "probability": 0.95947265625}, {"start": 263.5, "end": 263.56, "word": " there", "probability": 0.8134765625}, {"start": 263.56, "end": 263.7, "word": " should", "probability": 0.60986328125}, {"start": 263.7, "end": 264.0, "word": " be", "probability": 0.89892578125}, {"start": 264.0, "end": 264.18, "word": " a", "probability": 0.60986328125}, {"start": 264.18, "end": 264.42, "word": " code", "probability": 0.90185546875}, {"start": 264.42, "end": 264.6, "word": " here,", "probability": 0.775390625}, {"start": 264.7, "end": 264.8, "word": " but", "probability": 0.73583984375}, {"start": 264.8, "end": 265.04, "word": " I", "probability": 0.73046875}, {"start": 265.04, "end": 265.56, "word": " ...", "probability": 0.149169921875}, {"start": 265.56, "end": 265.98, "word": " because", "probability": 0.5400390625}, {"start": 265.98, "end": 266.2, "word": " this", "probability": 0.61083984375}, {"start": 266.2, "end": 266.22, "word": " is", "probability": 0.8505859375}, {"start": 266.22, "end": 266.34, "word": " a", "probability": 0.50732421875}, {"start": 266.34, "end": 266.44, "word": " demo,", "probability": 0.8330078125}, {"start": 266.54, "end": 266.76, "word": " but", "probability": 0.79736328125}, {"start": 266.76, "end": 267.04, "word": " it's", "probability": 0.50146484375}, {"start": 267.04, "end": 267.18, "word": " okay.", "probability": 0.533203125}, {"start": 267.32, "end": 267.46, "word": " I", "probability": 0.5546875}, {"start": 267.46, "end": 267.64, "word": " print", "probability": 0.184326171875}, {"start": 267.64, "end": 267.8, "word": " a", "probability": 0.3876953125}, {"start": 267.8, "end": 267.92, "word": " message", "probability": 0.83203125}, {"start": 267.92, "end": 268.12, "word": " because", "probability": 0.40869140625}, {"start": 268.12, "end": 268.22, "word": " I'm", "probability": 0.4627685546875}, {"start": 268.22, "end": 268.42, "word": " logging", "probability": 0.8212890625}, {"start": 268.42, "end": 268.94, "word": " into", "probability": 0.64892578125}, {"start": 268.94, "end": 270.18, "word": " Facebook.", "probability": 0.83349609375}, {"start": 271.02, "end": 271.46, "word": " Post.", "probability": 0.87939453125}, {"start": 271.9, "end": 272.34, "word": " Posting", "probability": 0.73828125}, {"start": 272.34, "end": 272.44, "word": " a", "probability": 0.56396484375}, {"start": 272.44, "end": 272.72, "word": " message", "probability": 0.91845703125}, {"start": 272.72, "end": 272.98, "word": " on", "probability": 0.923828125}, {"start": 272.98, "end": 273.66, "word": " Facebook.", "probability": 0.8486328125}, {"start": 273.96, "end": 274.4, "word": " Logout.", "probability": 0.7626953125}, {"start": 274.84, "end": 275.14, "word": " Logging", "probability": 0.804443359375}, {"start": 275.14, "end": 275.38, "word": " out", "probability": 0.87548828125}, {"start": 275.38, "end": 275.72, "word": " from", "probability": 0.78515625}, {"start": 275.72, "end": 276.5, "word": " Facebook.", "probability": 0.853515625}, {"start": 276.62, "end": 276.74, "word": " So", "probability": 0.564453125}, {"start": 276.74, "end": 276.86, "word": " here,", "probability": 0.427490234375}, {"start": 276.9, "end": 277.28, "word": " there", "probability": 0.4609375}, {"start": 277.28, "end": 277.28, "word": " is", "probability": 0.466796875}, {"start": 277.28, "end": 277.68, "word": " work", "probability": 0.171142578125}, {"start": 277.68, "end": 277.86, "word": " that", "probability": 0.4306640625}, {"start": 277.86, "end": 277.98, "word": " is", "probability": 0.75732421875}, {"start": 277.98, "end": 278.48, "word": " communicating", "probability": 0.5244140625}, {"start": 278.48, "end": 279.38, "word": " with", "probability": 0.86767578125}, {"start": 279.38, "end": 279.9, "word": " Facebook.", "probability": 0.83642578125}], "temperature": 1.0}, {"id": 13, "seek": 30964, "start": 281.33, "end": 309.65, "text": " The same thing, Whatsapp connector I also made an implement for social media connector And I have the method login and post and logout, but it's different I changed the word that I printed to show that the code is different Okay, so now my code has an interface called social media connector", "tokens": [440, 912, 551, 11, 22051, 1746, 19127, 286, 611, 1027, 364, 4445, 337, 2093, 3021, 19127, 400, 286, 362, 264, 3170, 24276, 293, 2183, 293, 3565, 346, 11, 457, 309, 311, 819, 286, 3105, 264, 1349, 300, 286, 13567, 281, 855, 300, 264, 3089, 307, 819, 1033, 11, 370, 586, 452, 3089, 575, 364, 9226, 1219, 2093, 3021, 19127], "avg_logprob": -0.5901041756073634, "compression_ratio": 1.6222222222222222, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 281.33000000000004, "end": 281.97, "word": " The", "probability": 0.186279296875}, {"start": 281.97, "end": 282.11, "word": " same", "probability": 0.8779296875}, {"start": 282.11, "end": 282.43, "word": " thing,", "probability": 0.74658203125}, {"start": 282.61, "end": 283.11, "word": " Whatsapp", "probability": 0.5777587890625}, {"start": 283.11, "end": 283.63, "word": " connector", "probability": 0.483154296875}, {"start": 283.63, "end": 287.29, "word": " I", "probability": 0.525390625}, {"start": 287.29, "end": 287.49, "word": " also", "probability": 0.38330078125}, {"start": 287.49, "end": 287.49, "word": " made", "probability": 0.210205078125}, {"start": 287.49, "end": 287.77, "word": " an", "probability": 0.54736328125}, {"start": 287.77, "end": 288.09, "word": " implement", "probability": 0.720703125}, {"start": 288.09, "end": 288.29, "word": " for", "probability": 0.82080078125}, {"start": 288.29, "end": 288.59, "word": " social", "probability": 0.57470703125}, {"start": 288.59, "end": 288.83, "word": " media", "probability": 0.8779296875}, {"start": 288.83, "end": 289.41, "word": " connector", "probability": 0.83544921875}, {"start": 289.41, "end": 290.05, "word": " And", "probability": 0.43896484375}, {"start": 290.05, "end": 290.25, "word": " I", "probability": 0.72509765625}, {"start": 290.25, "end": 290.45, "word": " have", "probability": 0.51025390625}, {"start": 290.45, "end": 290.75, "word": " the", "probability": 0.352783203125}, {"start": 290.75, "end": 291.05, "word": " method", "probability": 0.48291015625}, {"start": 291.05, "end": 291.53, "word": " login", "probability": 0.459716796875}, {"start": 291.53, "end": 291.89, "word": " and", "probability": 0.488525390625}, {"start": 291.89, "end": 292.27, "word": " post", "probability": 0.76220703125}, {"start": 292.27, "end": 292.43, "word": " and", "probability": 0.82177734375}, {"start": 292.43, "end": 292.91, "word": " logout,", "probability": 0.849609375}, {"start": 292.97, "end": 293.15, "word": " but", "probability": 0.5146484375}, {"start": 293.15, "end": 293.77, "word": " it's", "probability": 0.26641845703125}, {"start": 293.77, "end": 293.77, "word": " different", "probability": 0.7314453125}, {"start": 293.77, "end": 294.47, "word": " I", "probability": 0.481689453125}, {"start": 294.47, "end": 294.89, "word": " changed", "probability": 0.83349609375}, {"start": 294.89, "end": 296.25, "word": " the", "probability": 0.83056640625}, {"start": 296.25, "end": 296.47, "word": " word", "probability": 0.55224609375}, {"start": 296.47, "end": 296.59, "word": " that", "probability": 0.32861328125}, {"start": 296.59, "end": 296.71, "word": " I", "probability": 0.501953125}, {"start": 296.71, "end": 296.87, "word": " printed", "probability": 0.1717529296875}, {"start": 296.87, "end": 297.07, "word": " to", "probability": 0.43701171875}, {"start": 297.07, "end": 297.37, "word": " show", "probability": 0.66650390625}, {"start": 297.37, "end": 297.53, "word": " that", "probability": 0.78271484375}, {"start": 297.53, "end": 297.63, "word": " the", "probability": 0.79296875}, {"start": 297.63, "end": 297.77, "word": " code", "probability": 0.9208984375}, {"start": 297.77, "end": 297.85, "word": " is", "probability": 0.91943359375}, {"start": 297.85, "end": 298.17, "word": " different", "probability": 0.86962890625}, {"start": 298.17, "end": 298.81, "word": " Okay,", "probability": 0.2454833984375}, {"start": 300.45, "end": 300.59, "word": " so", "probability": 0.30712890625}, {"start": 300.59, "end": 300.97, "word": " now", "probability": 0.6728515625}, {"start": 300.97, "end": 302.25, "word": " my", "probability": 0.205078125}, {"start": 302.25, "end": 303.13, "word": " code", "probability": 0.92578125}, {"start": 303.13, "end": 304.23, "word": " has", "probability": 0.64697265625}, {"start": 304.23, "end": 305.25, "word": " an", "probability": 0.7578125}, {"start": 305.25, "end": 305.99, "word": " interface", "probability": 0.876953125}, {"start": 305.99, "end": 306.29, "word": " called", "probability": 0.6826171875}, {"start": 306.29, "end": 306.77, "word": " social", "probability": 0.78515625}, {"start": 306.77, "end": 308.27, "word": " media", "probability": 0.771484375}, {"start": 308.27, "end": 309.65, "word": " connector", "probability": 0.9130859375}], "temperature": 1.0}, {"id": 14, "seek": 33039, "start": 312.41, "end": 330.39, "text": " تمام اتفرع منه تمام اكتر من connector هذا مثلا فيسبوك connector مثلا whatsapp connector", "tokens": [46811, 10943, 1975, 2655, 5172, 2288, 3615, 9154, 3224, 46811, 10943, 1975, 4117, 2655, 2288, 9154, 19127, 23758, 50113, 15040, 8978, 35457, 2407, 4117, 19127, 50113, 15040, 29625, 1746, 19127], "avg_logprob": -0.3351814419992508, "compression_ratio": 1.3368421052631578, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 312.41, "end": 312.83, "word": " تمام", "probability": 0.51263427734375}, {"start": 312.83, "end": 313.31, "word": " اتفرع", "probability": 0.8296875}, {"start": 313.31, "end": 314.01, "word": " منه", "probability": 0.9453125}, {"start": 314.01, "end": 319.75, "word": " تمام", "probability": 0.86962890625}, {"start": 319.75, "end": 320.25, "word": " اكتر", "probability": 0.9122314453125}, {"start": 320.25, "end": 320.49, "word": " من", "probability": 0.97998046875}, {"start": 320.49, "end": 321.17, "word": " connector", "probability": 0.75830078125}, {"start": 321.17, "end": 321.87, "word": " هذا", "probability": 0.49658203125}, {"start": 321.87, "end": 322.15, "word": " مثلا", "probability": 0.9794921875}, {"start": 322.15, "end": 323.15, "word": " فيسبوك", "probability": 0.78643798828125}, {"start": 323.15, "end": 328.01, "word": " connector", "probability": 0.568359375}, {"start": 328.01, "end": 328.57, "word": " مثلا", "probability": 0.983642578125}, {"start": 328.57, "end": 329.81, "word": " whatsapp", "probability": 0.6064453125}, {"start": 329.81, "end": 330.39, "word": " connector", "probability": 0.85595703125}], "temperature": 1.0}, {"id": 15, "seek": 36301, "start": 333.97, "end": 363.01, "text": " and so on you can make other connectors because these connectors I have not used yet these I have not used yet but they connect me with social media and I use them because especially in my application I want to make a class called facebook poster this is the class to make a post on facebook of course facebook poster to make a post on facebook you have to use", "tokens": [293, 370, 322, 291, 393, 652, 661, 31865, 570, 613, 31865, 286, 362, 406, 1143, 1939, 613, 286, 362, 406, 1143, 1939, 457, 436, 1745, 385, 365, 2093, 3021, 293, 286, 764, 552, 570, 2318, 294, 452, 3861, 286, 528, 281, 652, 257, 1508, 1219, 23372, 17171, 341, 307, 264, 1508, 281, 652, 257, 2183, 322, 23372, 295, 1164, 23372, 17171, 281, 652, 257, 2183, 322, 23372, 291, 362, 281, 764], "avg_logprob": -0.5980902893675698, "compression_ratio": 2.0055555555555555, "no_speech_prob": 9.5367431640625e-07, "words": [{"start": 333.97, "end": 334.19, "word": " and", "probability": 0.2088623046875}, {"start": 334.19, "end": 334.43, "word": " so", "probability": 0.248291015625}, {"start": 334.43, "end": 334.61, "word": " on", "probability": 0.88671875}, {"start": 334.61, "end": 335.35, "word": " you", "probability": 0.185302734375}, {"start": 335.35, "end": 335.53, "word": " can", "probability": 0.87890625}, {"start": 335.53, "end": 335.75, "word": " make", "probability": 0.393310546875}, {"start": 335.75, "end": 336.53, "word": " other", "probability": 0.51025390625}, {"start": 336.53, "end": 336.53, "word": " connectors", "probability": 0.69287109375}, {"start": 336.53, "end": 337.55, "word": " because", "probability": 0.367919921875}, {"start": 337.55, "end": 337.73, "word": " these", "probability": 0.327392578125}, {"start": 337.73, "end": 338.25, "word": " connectors", "probability": 0.54638671875}, {"start": 338.25, "end": 338.41, "word": " I", "probability": 0.48046875}, {"start": 338.41, "end": 338.67, "word": " have", "probability": 0.291259765625}, {"start": 338.67, "end": 338.69, "word": " not", "probability": 0.87158203125}, {"start": 338.69, "end": 339.01, "word": " used", "probability": 0.8232421875}, {"start": 339.01, "end": 339.25, "word": " yet", "probability": 0.62109375}, {"start": 339.25, "end": 339.45, "word": " these", "probability": 0.2149658203125}, {"start": 339.45, "end": 339.57, "word": " I", "probability": 0.445556640625}, {"start": 339.57, "end": 339.63, "word": " have", "probability": 0.1798095703125}, {"start": 339.63, "end": 339.71, "word": " not", "probability": 0.474853515625}, {"start": 339.71, "end": 339.87, "word": " used", "probability": 0.330810546875}, {"start": 339.87, "end": 340.07, "word": " yet", "probability": 0.58984375}, {"start": 340.07, "end": 340.27, "word": " but", "probability": 0.5703125}, {"start": 340.27, "end": 340.43, "word": " they", "probability": 0.6064453125}, {"start": 340.43, "end": 340.55, "word": " connect", "probability": 0.5869140625}, {"start": 340.55, "end": 340.77, "word": " me", "probability": 0.65869140625}, {"start": 340.77, "end": 340.93, "word": " with", "probability": 0.61962890625}, {"start": 340.93, "end": 342.05, "word": " social", "probability": 0.71875}, {"start": 342.05, "end": 342.41, "word": " media", "probability": 0.9091796875}, {"start": 342.41, "end": 343.05, "word": " and", "probability": 0.41552734375}, {"start": 343.05, "end": 343.19, "word": " I", "probability": 0.29541015625}, {"start": 343.19, "end": 343.45, "word": " use", "probability": 0.56201171875}, {"start": 343.45, "end": 343.91, "word": " them", "probability": 0.85498046875}, {"start": 343.91, "end": 344.45, "word": " because", "probability": 0.7177734375}, {"start": 344.45, "end": 344.83, "word": " especially", "probability": 0.199462890625}, {"start": 344.83, "end": 344.99, "word": " in", "probability": 0.79296875}, {"start": 344.99, "end": 345.09, "word": " my", "probability": 0.69384765625}, {"start": 345.09, "end": 345.75, "word": " application", "probability": 0.5107421875}, {"start": 345.75, "end": 347.01, "word": " I", "probability": 0.48876953125}, {"start": 347.01, "end": 347.15, "word": " want", "probability": 0.2431640625}, {"start": 347.15, "end": 347.33, "word": " to", "probability": 0.9541015625}, {"start": 347.33, "end": 347.33, "word": " make", "probability": 0.69140625}, {"start": 347.33, "end": 347.47, "word": " a", "probability": 0.93310546875}, {"start": 347.47, "end": 347.81, "word": " class", "probability": 0.96337890625}, {"start": 347.81, "end": 348.21, "word": " called", "probability": 0.59619140625}, {"start": 348.21, "end": 349.57, "word": " facebook", "probability": 0.337646484375}, {"start": 349.57, "end": 354.25, "word": " poster", "probability": 0.65283203125}, {"start": 354.25, "end": 354.91, "word": " this", "probability": 0.77392578125}, {"start": 354.91, "end": 354.97, "word": " is", "probability": 0.4013671875}, {"start": 354.97, "end": 355.01, "word": " the", "probability": 0.58984375}, {"start": 355.01, "end": 355.29, "word": " class", "probability": 0.95556640625}, {"start": 355.29, "end": 356.37, "word": " to", "probability": 0.39306640625}, {"start": 356.37, "end": 357.33, "word": " make", "probability": 0.5751953125}, {"start": 357.33, "end": 357.49, "word": " a", "probability": 0.5029296875}, {"start": 357.49, "end": 357.71, "word": " post", "probability": 0.81884765625}, {"start": 357.71, "end": 357.85, "word": " on", "probability": 0.89404296875}, {"start": 357.85, "end": 358.39, "word": " facebook", "probability": 0.65283203125}, {"start": 358.39, "end": 358.91, "word": " of", "probability": 0.50390625}, {"start": 358.91, "end": 359.05, "word": " course", "probability": 0.94970703125}, {"start": 359.05, "end": 359.97, "word": " facebook", "probability": 0.224365234375}, {"start": 359.97, "end": 360.45, "word": " poster", "probability": 0.55859375}, {"start": 360.45, "end": 360.79, "word": " to", "probability": 0.5439453125}, {"start": 360.79, "end": 361.37, "word": " make", "probability": 0.6171875}, {"start": 361.37, "end": 361.55, "word": " a", "probability": 0.87939453125}, {"start": 361.55, "end": 361.79, "word": " post", "probability": 0.89306640625}, {"start": 361.79, "end": 361.91, "word": " on", "probability": 0.89306640625}, {"start": 361.91, "end": 362.25, "word": " facebook", "probability": 0.81689453125}, {"start": 362.25, "end": 362.43, "word": " you", "probability": 0.74755859375}, {"start": 362.43, "end": 362.51, "word": " have", "probability": 0.438720703125}, {"start": 362.51, "end": 362.63, "word": " to", "probability": 0.970703125}, {"start": 362.63, "end": 363.01, "word": " use", "probability": 0.87548828125}], "temperature": 1.0}, {"id": 16, "seek": 39282, "start": 364.36, "end": 392.82, "text": " The Facebook Connector. Because I want to post on WhatsApp, I want to create a WhatsApp poster through which the WhatsApp Connector will use to post on WhatsApp. Because this class is going to look like this. Let's see. Next. This is what I'm going to use from my GUI. Okay? So that I can send ... I want to call this a Facebook poster.", "tokens": [440, 4384, 11653, 284, 13, 1436, 286, 528, 281, 2183, 322, 30513, 11, 286, 528, 281, 1884, 257, 30513, 17171, 807, 597, 264, 30513, 11653, 284, 486, 764, 281, 2183, 322, 30513, 13, 1436, 341, 1508, 307, 516, 281, 574, 411, 341, 13, 961, 311, 536, 13, 3087, 13, 639, 307, 437, 286, 478, 516, 281, 764, 490, 452, 17917, 40, 13, 1033, 30, 407, 300, 286, 393, 2845, 1097, 286, 528, 281, 818, 341, 257, 4384, 17171, 13], "avg_logprob": -0.5445312261581421, "compression_ratio": 1.693467336683417, "no_speech_prob": 1.3232231140136719e-05, "words": [{"start": 364.36, "end": 364.56, "word": " The", "probability": 0.07781982421875}, {"start": 364.56, "end": 364.84, "word": " Facebook", "probability": 0.5537109375}, {"start": 364.84, "end": 365.38, "word": " Connector.", "probability": 0.766845703125}, {"start": 365.84, "end": 366.36, "word": " Because", "probability": 0.1539306640625}, {"start": 366.36, "end": 366.42, "word": " I", "probability": 0.323974609375}, {"start": 366.42, "end": 366.56, "word": " want", "probability": 0.5498046875}, {"start": 366.56, "end": 366.64, "word": " to", "probability": 0.9541015625}, {"start": 366.64, "end": 367.02, "word": " post", "probability": 0.5087890625}, {"start": 367.02, "end": 367.22, "word": " on", "probability": 0.66552734375}, {"start": 367.22, "end": 367.54, "word": " WhatsApp,", "probability": 0.5947265625}, {"start": 367.64, "end": 367.7, "word": " I", "probability": 0.8828125}, {"start": 367.7, "end": 367.82, "word": " want", "probability": 0.484130859375}, {"start": 367.82, "end": 367.9, "word": " to", "probability": 0.962890625}, {"start": 367.9, "end": 368.12, "word": " create", "probability": 0.47802734375}, {"start": 368.12, "end": 369.16, "word": " a", "probability": 0.646484375}, {"start": 369.16, "end": 369.64, "word": " WhatsApp", "probability": 0.791015625}, {"start": 369.64, "end": 372.84, "word": " poster", "probability": 0.310546875}, {"start": 372.84, "end": 374.0, "word": " through", "probability": 0.2115478515625}, {"start": 374.0, "end": 374.44, "word": " which", "probability": 0.89208984375}, {"start": 374.44, "end": 375.26, "word": " the", "probability": 0.2364501953125}, {"start": 375.26, "end": 375.56, "word": " WhatsApp", "probability": 0.734375}, {"start": 375.56, "end": 376.16, "word": " Connector", "probability": 0.755859375}, {"start": 376.16, "end": 376.16, "word": " will", "probability": 0.68115234375}, {"start": 376.16, "end": 376.16, "word": " use", "probability": 0.677734375}, {"start": 376.16, "end": 376.44, "word": " to", "probability": 0.87451171875}, {"start": 376.44, "end": 377.24, "word": " post", "probability": 0.55419921875}, {"start": 377.24, "end": 377.5, "word": " on", "probability": 0.78955078125}, {"start": 377.5, "end": 378.68, "word": " WhatsApp.", "probability": 0.8857421875}, {"start": 379.02, "end": 379.4, "word": " Because", "probability": 0.583984375}, {"start": 379.4, "end": 379.58, "word": " this", "probability": 0.400390625}, {"start": 379.58, "end": 379.9, "word": " class", "probability": 0.705078125}, {"start": 379.9, "end": 380.1, "word": " is", "probability": 0.473388671875}, {"start": 380.1, "end": 380.14, "word": " going", "probability": 0.2890625}, {"start": 380.14, "end": 380.14, "word": " to", "probability": 0.97216796875}, {"start": 380.14, "end": 380.46, "word": " look", "probability": 0.495361328125}, {"start": 380.46, "end": 380.58, "word": " like", "probability": 0.8642578125}, {"start": 380.58, "end": 380.66, "word": " this.", "probability": 0.85302734375}, {"start": 380.66, "end": 381.08, "word": " Let's", "probability": 0.802734375}, {"start": 381.08, "end": 381.4, "word": " see.", "probability": 0.744140625}, {"start": 382.16, "end": 382.72, "word": " Next.", "probability": 0.2120361328125}, {"start": 384.0, "end": 384.56, "word": " This", "probability": 0.339111328125}, {"start": 384.56, "end": 384.56, "word": " is", "probability": 0.87255859375}, {"start": 384.56, "end": 384.66, "word": " what", "probability": 0.69384765625}, {"start": 384.66, "end": 384.8, "word": " I'm", "probability": 0.7205810546875}, {"start": 384.8, "end": 384.8, "word": " going", "probability": 0.92529296875}, {"start": 384.8, "end": 384.8, "word": " to", "probability": 0.970703125}, {"start": 384.8, "end": 385.08, "word": " use", "probability": 0.876953125}, {"start": 385.08, "end": 385.32, "word": " from", "probability": 0.6826171875}, {"start": 385.32, "end": 385.4, "word": " my", "probability": 0.9326171875}, {"start": 385.4, "end": 385.88, "word": " GUI.", "probability": 0.915283203125}, {"start": 386.52, "end": 386.8, "word": " Okay?", "probability": 0.294189453125}, {"start": 386.9, "end": 387.0, "word": " So", "probability": 0.54052734375}, {"start": 387.0, "end": 387.1, "word": " that", "probability": 0.45703125}, {"start": 387.1, "end": 387.2, "word": " I", "probability": 0.9951171875}, {"start": 387.2, "end": 387.36, "word": " can", "probability": 0.93115234375}, {"start": 387.36, "end": 387.74, "word": " send", "probability": 0.697265625}, {"start": 387.74, "end": 389.34, "word": " ...", "probability": 0.2015380859375}, {"start": 389.34, "end": 390.08, "word": " I", "probability": 0.459228515625}, {"start": 390.08, "end": 390.26, "word": " want", "probability": 0.364013671875}, {"start": 390.26, "end": 390.3, "word": " to", "probability": 0.96044921875}, {"start": 390.3, "end": 390.46, "word": " call", "probability": 0.8232421875}, {"start": 390.46, "end": 390.5, "word": " this", "probability": 0.712890625}, {"start": 390.5, "end": 390.56, "word": " a", "probability": 0.1937255859375}, {"start": 390.56, "end": 391.18, "word": " Facebook", "probability": 0.7060546875}, {"start": 391.18, "end": 392.82, "word": " poster.", "probability": 0.6591796875}], "temperature": 1.0}, {"id": 17, "seek": 42020, "start": 396.34, "end": 420.2, "text": " and I want to say for example a method called public void post it takes a string, username and password and it also takes the post and any other information you want to send it this method is present in the class called post because here of course from inside the post in order to connect with facebook I have to use facebook", "tokens": [293, 286, 528, 281, 584, 337, 1365, 257, 3170, 1219, 1908, 22009, 2183, 309, 2516, 257, 6798, 11, 30351, 293, 11524, 293, 309, 611, 2516, 264, 2183, 293, 604, 661, 1589, 291, 528, 281, 2845, 309, 341, 3170, 307, 1974, 294, 264, 1508, 1219, 2183, 570, 510, 295, 1164, 490, 1854, 264, 2183, 294, 1668, 281, 1745, 365, 23372, 286, 362, 281, 764, 23372], "avg_logprob": -0.4617788461538462, "compression_ratio": 1.689119170984456, "no_speech_prob": 3.594160079956055e-05, "words": [{"start": 396.34, "end": 396.9, "word": " and", "probability": 0.10577392578125}, {"start": 396.9, "end": 397.02, "word": " I", "probability": 0.499755859375}, {"start": 397.02, "end": 397.1, "word": " want", "probability": 0.521484375}, {"start": 397.1, "end": 397.16, "word": " to", "probability": 0.9541015625}, {"start": 397.16, "end": 397.32, "word": " say", "probability": 0.765625}, {"start": 397.32, "end": 397.5, "word": " for", "probability": 0.4072265625}, {"start": 397.5, "end": 397.68, "word": " example", "probability": 0.93798828125}, {"start": 397.68, "end": 398.0, "word": " a", "probability": 0.286865234375}, {"start": 398.0, "end": 398.26, "word": " method", "probability": 0.9404296875}, {"start": 398.26, "end": 398.62, "word": " called", "probability": 0.61181640625}, {"start": 398.62, "end": 399.08, "word": " public", "probability": 0.78515625}, {"start": 399.08, "end": 399.66, "word": " void", "probability": 0.74951171875}, {"start": 399.66, "end": 400.18, "word": " post", "probability": 0.80615234375}, {"start": 400.18, "end": 401.12, "word": " it", "probability": 0.27978515625}, {"start": 401.12, "end": 401.36, "word": " takes", "probability": 0.73974609375}, {"start": 401.36, "end": 401.5, "word": " a", "probability": 0.43701171875}, {"start": 401.5, "end": 401.92, "word": " string,", "probability": 0.8515625}, {"start": 402.26, "end": 403.04, "word": " username", "probability": 0.658203125}, {"start": 403.04, "end": 404.2, "word": " and", "probability": 0.625}, {"start": 404.2, "end": 404.92, "word": " password", "probability": 0.92138671875}, {"start": 404.92, "end": 406.5, "word": " and", "probability": 0.7421875}, {"start": 406.5, "end": 406.62, "word": " it", "probability": 0.580078125}, {"start": 406.62, "end": 407.18, "word": " also", "probability": 0.66357421875}, {"start": 407.18, "end": 407.18, "word": " takes", "probability": 0.80810546875}, {"start": 407.18, "end": 407.92, "word": " the", "probability": 0.385009765625}, {"start": 407.92, "end": 409.36, "word": " post", "probability": 0.86083984375}, {"start": 409.36, "end": 409.46, "word": " and", "probability": 0.83837890625}, {"start": 409.46, "end": 409.64, "word": " any", "probability": 0.76416015625}, {"start": 409.64, "end": 410.22, "word": " other", "probability": 0.72314453125}, {"start": 410.22, "end": 410.22, "word": " information", "probability": 0.7119140625}, {"start": 410.22, "end": 410.52, "word": " you", "probability": 0.488037109375}, {"start": 410.52, "end": 410.66, "word": " want", "probability": 0.78759765625}, {"start": 410.66, "end": 410.76, "word": " to", "probability": 0.93603515625}, {"start": 410.76, "end": 410.94, "word": " send", "probability": 0.779296875}, {"start": 410.94, "end": 411.26, "word": " it", "probability": 0.52294921875}, {"start": 411.26, "end": 412.96, "word": " this", "probability": 0.493896484375}, {"start": 412.96, "end": 413.36, "word": " method", "probability": 0.62255859375}, {"start": 413.36, "end": 413.48, "word": " is", "probability": 0.6376953125}, {"start": 413.48, "end": 413.66, "word": " present", "probability": 0.275390625}, {"start": 413.66, "end": 413.8, "word": " in", "probability": 0.93896484375}, {"start": 413.8, "end": 413.9, "word": " the", "probability": 0.5205078125}, {"start": 413.9, "end": 414.16, "word": " class", "probability": 0.966796875}, {"start": 414.16, "end": 414.44, "word": " called", "probability": 0.197265625}, {"start": 414.44, "end": 414.96, "word": " post", "probability": 0.791015625}, {"start": 414.96, "end": 415.86, "word": " because", "probability": 0.79931640625}, {"start": 415.86, "end": 416.18, "word": " here", "probability": 0.7236328125}, {"start": 416.18, "end": 416.5, "word": " of", "probability": 0.23046875}, {"start": 416.5, "end": 416.74, "word": " course", "probability": 0.95458984375}, {"start": 416.74, "end": 417.06, "word": " from", "probability": 0.6064453125}, {"start": 417.06, "end": 417.26, "word": " inside", "probability": 0.45703125}, {"start": 417.26, "end": 417.4, "word": " the", "probability": 0.798828125}, {"start": 417.4, "end": 417.7, "word": " post", "probability": 0.9130859375}, {"start": 417.7, "end": 418.0, "word": " in", "probability": 0.36865234375}, {"start": 418.0, "end": 418.06, "word": " order", "probability": 0.89990234375}, {"start": 418.06, "end": 418.18, "word": " to", "probability": 0.93994140625}, {"start": 418.18, "end": 418.4, "word": " connect", "probability": 0.8203125}, {"start": 418.4, "end": 418.6, "word": " with", "probability": 0.70263671875}, {"start": 418.6, "end": 419.06, "word": " facebook", "probability": 0.472412109375}, {"start": 419.06, "end": 419.22, "word": " I", "probability": 0.7734375}, {"start": 419.22, "end": 419.32, "word": " have", "probability": 0.459716796875}, {"start": 419.32, "end": 419.46, "word": " to", "probability": 0.9697265625}, {"start": 419.46, "end": 419.74, "word": " use", "probability": 0.87646484375}, {"start": 419.74, "end": 420.2, "word": " facebook", "probability": 0.71484375}], "temperature": 1.0}, {"id": 18, "seek": 44664, "start": 421.22, "end": 446.64, "text": " Connector, correct or not? So I can say go and get the object from Facebook Connector FBC for example equals new Facebook Connector Because through Facebook Connector I can say login, correct or not? And I can say FBC post Send the data and I can say FBC", "tokens": [11653, 284, 11, 3006, 420, 406, 30, 407, 286, 393, 584, 352, 293, 483, 264, 2657, 490, 4384, 11653, 284, 479, 7869, 337, 1365, 6915, 777, 4384, 11653, 284, 1436, 807, 4384, 11653, 284, 286, 393, 584, 24276, 11, 3006, 420, 406, 30, 400, 286, 393, 584, 479, 7869, 2183, 17908, 264, 1412, 293, 286, 393, 584, 479, 7869], "avg_logprob": -0.47291666915019354, "compression_ratio": 1.7708333333333333, "no_speech_prob": 2.4437904357910156e-06, "words": [{"start": 421.22, "end": 421.78, "word": " Connector,", "probability": 0.572021484375}, {"start": 422.0, "end": 422.16, "word": " correct", "probability": 0.20947265625}, {"start": 422.16, "end": 422.3, "word": " or", "probability": 0.9150390625}, {"start": 422.3, "end": 422.4, "word": " not?", "probability": 0.796875}, {"start": 422.76, "end": 422.92, "word": " So", "probability": 0.47509765625}, {"start": 422.92, "end": 423.1, "word": " I", "probability": 0.65576171875}, {"start": 423.1, "end": 423.1, "word": " can", "probability": 0.344970703125}, {"start": 423.1, "end": 423.24, "word": " say", "probability": 0.634765625}, {"start": 423.24, "end": 423.48, "word": " go", "probability": 0.298583984375}, {"start": 423.48, "end": 423.86, "word": " and", "probability": 0.53369140625}, {"start": 423.86, "end": 424.1, "word": " get", "probability": 0.2176513671875}, {"start": 424.1, "end": 424.24, "word": " the", "probability": 0.681640625}, {"start": 424.24, "end": 424.5, "word": " object", "probability": 0.87841796875}, {"start": 424.5, "end": 424.78, "word": " from", "probability": 0.76171875}, {"start": 424.78, "end": 425.86, "word": " Facebook", "probability": 0.368408203125}, {"start": 425.86, "end": 426.9, "word": " Connector", "probability": 0.7099609375}, {"start": 426.9, "end": 428.58, "word": " FBC", "probability": 0.5867919921875}, {"start": 428.58, "end": 428.88, "word": " for", "probability": 0.744140625}, {"start": 428.88, "end": 429.16, "word": " example", "probability": 0.9384765625}, {"start": 429.16, "end": 429.76, "word": " equals", "probability": 0.462890625}, {"start": 429.76, "end": 430.14, "word": " new", "probability": 0.433349609375}, {"start": 430.14, "end": 431.24, "word": " Facebook", "probability": 0.63623046875}, {"start": 431.24, "end": 435.24, "word": " Connector", "probability": 0.905517578125}, {"start": 435.24, "end": 435.78, "word": " Because", "probability": 0.2484130859375}, {"start": 435.78, "end": 436.16, "word": " through", "probability": 0.6845703125}, {"start": 436.16, "end": 436.64, "word": " Facebook", "probability": 0.50732421875}, {"start": 436.64, "end": 437.28, "word": " Connector", "probability": 0.8798828125}, {"start": 437.28, "end": 437.7, "word": " I", "probability": 0.70458984375}, {"start": 437.7, "end": 437.86, "word": " can", "probability": 0.91357421875}, {"start": 437.86, "end": 438.1, "word": " say", "probability": 0.7841796875}, {"start": 438.1, "end": 438.52, "word": " login,", "probability": 0.744140625}, {"start": 439.76, "end": 439.92, "word": " correct", "probability": 0.7373046875}, {"start": 439.92, "end": 440.08, "word": " or", "probability": 0.9609375}, {"start": 440.08, "end": 440.22, "word": " not?", "probability": 0.912109375}, {"start": 440.56, "end": 441.16, "word": " And", "probability": 0.64697265625}, {"start": 441.16, "end": 441.28, "word": " I", "probability": 0.96923828125}, {"start": 441.28, "end": 441.38, "word": " can", "probability": 0.9375}, {"start": 441.38, "end": 441.74, "word": " say", "probability": 0.69677734375}, {"start": 441.74, "end": 442.64, "word": " FBC", "probability": 0.923828125}, {"start": 442.64, "end": 443.48, "word": " post", "probability": 0.5732421875}, {"start": 443.48, "end": 444.8, "word": " Send", "probability": 0.25439453125}, {"start": 444.8, "end": 444.98, "word": " the", "probability": 0.583984375}, {"start": 444.98, "end": 445.2, "word": " data", "probability": 0.6982421875}, {"start": 445.2, "end": 445.52, "word": " and", "probability": 0.478759765625}, {"start": 445.52, "end": 445.66, "word": " I", "probability": 0.943359375}, {"start": 445.66, "end": 445.76, "word": " can", "probability": 0.94482421875}, {"start": 445.76, "end": 446.06, "word": " say", "probability": 0.83447265625}, {"start": 446.06, "end": 446.64, "word": " FBC", "probability": 0.748046875}], "temperature": 1.0}, {"id": 19, "seek": 47086, "start": 447.88, "end": 470.86, "text": " Logout is done and it is also possible to store a post in a history database. Send notification. This is a code. I made a comment, but it could be anything. There is a code in this file.", "tokens": [10824, 346, 307, 1096, 293, 309, 307, 611, 1944, 281, 3531, 257, 2183, 294, 257, 2503, 8149, 13, 17908, 11554, 13, 639, 307, 257, 3089, 13, 286, 1027, 257, 2871, 11, 457, 309, 727, 312, 1340, 13, 821, 307, 257, 3089, 294, 341, 3991, 13], "avg_logprob": -0.7119565230348835, "compression_ratio": 1.4166666666666667, "no_speech_prob": 1.7881393432617188e-06, "words": [{"start": 447.88, "end": 448.52, "word": " Logout", "probability": 0.4156494140625}, {"start": 448.52, "end": 448.9, "word": " is", "probability": 0.183349609375}, {"start": 448.9, "end": 449.26, "word": " done", "probability": 0.38623046875}, {"start": 449.26, "end": 450.08, "word": " and", "probability": 0.1827392578125}, {"start": 450.08, "end": 450.46, "word": " it", "probability": 0.30419921875}, {"start": 450.46, "end": 450.68, "word": " is", "probability": 0.478271484375}, {"start": 450.68, "end": 450.84, "word": " also", "probability": 0.51318359375}, {"start": 450.84, "end": 450.84, "word": " possible", "probability": 0.80078125}, {"start": 450.84, "end": 451.78, "word": " to", "probability": 0.56884765625}, {"start": 451.78, "end": 453.9, "word": " store", "probability": 0.37548828125}, {"start": 453.9, "end": 454.36, "word": " a", "probability": 0.2242431640625}, {"start": 454.36, "end": 454.7, "word": " post", "probability": 0.7978515625}, {"start": 454.7, "end": 455.4, "word": " in", "probability": 0.83642578125}, {"start": 455.4, "end": 455.48, "word": " a", "probability": 0.4560546875}, {"start": 455.48, "end": 455.9, "word": " history", "probability": 0.74853515625}, {"start": 455.9, "end": 457.32, "word": " database.", "probability": 0.8623046875}, {"start": 459.98, "end": 460.62, "word": " Send", "probability": 0.457275390625}, {"start": 460.62, "end": 462.84, "word": " notification.", "probability": 0.7529296875}, {"start": 465.0, "end": 465.64, "word": " This", "probability": 0.43994140625}, {"start": 465.64, "end": 465.74, "word": " is", "probability": 0.83154296875}, {"start": 465.74, "end": 465.82, "word": " a", "probability": 0.658203125}, {"start": 465.82, "end": 466.16, "word": " code.", "probability": 0.6904296875}, {"start": 466.6, "end": 467.24, "word": " I", "probability": 0.74755859375}, {"start": 467.24, "end": 467.56, "word": " made", "probability": 0.485107421875}, {"start": 467.56, "end": 467.68, "word": " a", "probability": 0.90087890625}, {"start": 467.68, "end": 467.92, "word": " comment,", "probability": 0.90283203125}, {"start": 468.04, "end": 468.16, "word": " but", "probability": 0.8408203125}, {"start": 468.16, "end": 468.3, "word": " it", "probability": 0.6259765625}, {"start": 468.3, "end": 468.36, "word": " could", "probability": 0.5546875}, {"start": 468.36, "end": 468.6, "word": " be", "probability": 0.67236328125}, {"start": 468.6, "end": 468.92, "word": " anything.", "probability": 0.2176513671875}, {"start": 469.18, "end": 469.34, "word": " There", "probability": 0.1253662109375}, {"start": 469.34, "end": 469.54, "word": " is", "probability": 0.86767578125}, {"start": 469.54, "end": 469.68, "word": " a", "probability": 0.68115234375}, {"start": 469.68, "end": 469.9, "word": " code", "probability": 0.927734375}, {"start": 469.9, "end": 470.4, "word": " in", "probability": 0.6298828125}, {"start": 470.4, "end": 470.58, "word": " this", "probability": 0.72900390625}, {"start": 470.58, "end": 470.86, "word": " file.", "probability": 0.043548583984375}], "temperature": 1.0}, {"id": 20, "seek": 49196, "start": 473.74, "end": 491.96, "text": "In order to send a post on Facebook, I will use the Facebook poster, which uses the connector from the inside. For example, I connect to the database, I launch a class to interact with the database, and from the inside, I use the connector that connects us to the database. Because it's the same idea if you want to create a WhatsApp connector.", "tokens": [4575, 1668, 281, 2845, 257, 2183, 322, 4384, 11, 286, 486, 764, 264, 4384, 17171, 11, 597, 4960, 264, 46264, 20814, 490, 264, 1854, 13, 1171, 1365, 11, 286, 1745, 281, 264, 8149, 11, 286, 4025, 257, 1508, 281, 4648, 365, 264, 8149, 11, 293, 490, 264, 1854, 11, 286, 764, 264, 19127, 300, 16967, 505, 281, 264, 8149, 13, 1436, 309, 311, 264, 912, 1558, 498, 291, 528, 281, 1884, 257, 30513, 19127, 13], "avg_logprob": -0.5065789348200748, "compression_ratio": 1.801047120418848, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 473.73999999999995, "end": 474.09999999999997, "word": "In", "probability": 0.088623046875}, {"start": 474.09999999999997, "end": 474.46, "word": " order", "probability": 0.76171875}, {"start": 474.46, "end": 474.78, "word": " to", "probability": 0.95068359375}, {"start": 474.78, "end": 474.92, "word": " send", "probability": 0.31298828125}, {"start": 474.92, "end": 475.14, "word": " a", "probability": 0.65283203125}, {"start": 475.14, "end": 475.32, "word": " post", "probability": 0.68505859375}, {"start": 475.32, "end": 475.48, "word": " on", "probability": 0.51171875}, {"start": 475.48, "end": 475.96, "word": " Facebook,", "probability": 0.62255859375}, {"start": 476.06, "end": 476.14, "word": " I", "probability": 0.85205078125}, {"start": 476.14, "end": 476.2, "word": " will", "probability": 0.410400390625}, {"start": 476.2, "end": 476.5, "word": " use", "probability": 0.81640625}, {"start": 476.5, "end": 476.64, "word": " the", "probability": 0.35693359375}, {"start": 476.64, "end": 476.94, "word": " Facebook", "probability": 0.75341796875}, {"start": 476.94, "end": 478.08, "word": " poster,", "probability": 0.421875}, {"start": 478.14, "end": 478.46, "word": " which", "probability": 0.4453125}, {"start": 478.46, "end": 479.1, "word": " uses", "probability": 0.436279296875}, {"start": 479.1, "end": 480.0, "word": " the", "probability": 0.60693359375}, {"start": 480.0, "end": 480.44, "word": " connector", "probability": 0.5518798828125}, {"start": 480.44, "end": 480.44, "word": " from", "probability": 0.494873046875}, {"start": 480.44, "end": 480.44, "word": " the", "probability": 0.291015625}, {"start": 480.44, "end": 480.44, "word": " inside.", "probability": 0.810546875}, {"start": 480.68, "end": 481.04, "word": " For", "probability": 0.59326171875}, {"start": 481.04, "end": 481.1, "word": " example,", "probability": 0.89306640625}, {"start": 481.8, "end": 481.82, "word": " I", "probability": 0.75927734375}, {"start": 481.82, "end": 482.16, "word": " connect", "probability": 0.33203125}, {"start": 482.16, "end": 482.32, "word": " to", "probability": 0.83251953125}, {"start": 482.32, "end": 482.42, "word": " the", "probability": 0.5810546875}, {"start": 482.42, "end": 482.84, "word": " database,", "probability": 0.904296875}, {"start": 483.12, "end": 483.28, "word": " I", "probability": 0.447021484375}, {"start": 483.28, "end": 483.62, "word": " launch", "probability": 0.23486328125}, {"start": 483.62, "end": 483.76, "word": " a", "probability": 0.52099609375}, {"start": 483.76, "end": 484.0, "word": " class", "probability": 0.93212890625}, {"start": 484.0, "end": 484.14, "word": " to", "probability": 0.78125}, {"start": 484.14, "end": 484.3, "word": " interact", "probability": 0.76953125}, {"start": 484.3, "end": 484.44, "word": " with", "probability": 0.892578125}, {"start": 484.44, "end": 484.56, "word": " the", "probability": 0.76416015625}, {"start": 484.56, "end": 484.8, "word": " database,", "probability": 0.94921875}, {"start": 484.9, "end": 484.96, "word": " and", "probability": 0.58154296875}, {"start": 484.96, "end": 485.04, "word": " from", "probability": 0.6181640625}, {"start": 485.04, "end": 485.34, "word": " the", "probability": 0.5224609375}, {"start": 485.34, "end": 485.34, "word": " inside,", "probability": 0.93310546875}, {"start": 485.4, "end": 485.46, "word": " I", "probability": 0.98974609375}, {"start": 485.46, "end": 485.74, "word": " use", "probability": 0.73193359375}, {"start": 485.74, "end": 485.92, "word": " the", "probability": 0.90673828125}, {"start": 485.92, "end": 486.36, "word": " connector", "probability": 0.724609375}, {"start": 486.36, "end": 487.08, "word": " that", "probability": 0.65966796875}, {"start": 487.08, "end": 487.34, "word": " connects", "probability": 0.64599609375}, {"start": 487.34, "end": 487.52, "word": " us", "probability": 0.70654296875}, {"start": 487.52, "end": 487.64, "word": " to", "probability": 0.908203125}, {"start": 487.64, "end": 488.32, "word": " the", "probability": 0.8701171875}, {"start": 488.32, "end": 488.72, "word": " database.", "probability": 0.953125}, {"start": 488.94, "end": 489.3, "word": " Because", "probability": 0.393310546875}, {"start": 489.3, "end": 489.38, "word": " it's", "probability": 0.43359375}, {"start": 489.38, "end": 489.58, "word": " the", "probability": 0.884765625}, {"start": 489.58, "end": 489.58, "word": " same", "probability": 0.90283203125}, {"start": 489.58, "end": 489.92, "word": " idea", "probability": 0.75146484375}, {"start": 489.92, "end": 490.72, "word": " if", "probability": 0.73095703125}, {"start": 490.72, "end": 490.9, "word": " you", "probability": 0.75830078125}, {"start": 490.9, "end": 491.0, "word": " want", "probability": 0.7880859375}, {"start": 491.0, "end": 491.0, "word": " to", "probability": 0.97412109375}, {"start": 491.0, "end": 491.08, "word": " create", "probability": 0.324462890625}, {"start": 491.08, "end": 491.22, "word": " a", "probability": 0.84912109375}, {"start": 491.22, "end": 491.42, "word": " WhatsApp", "probability": 0.80224609375}, {"start": 491.42, "end": 491.96, "word": " connector.", "probability": 0.67578125}], "temperature": 1.0}, {"id": 21, "seek": 51721, "start": 493.11, "end": 517.21, "text": " Whatsapp poster, if I want to send a message on Whatsapp, I also need a class called Whatsapp poster From inside it, you will use the Whatsapp connector So this class needs to do this, this is Whatsapp Whatsapp poster And of course inside it there is a method post", "tokens": [22051, 1746, 17171, 11, 498, 286, 528, 281, 2845, 257, 3636, 322, 22051, 1746, 11, 286, 611, 643, 257, 1508, 1219, 22051, 1746, 17171, 3358, 1854, 309, 11, 291, 486, 764, 264, 22051, 1746, 19127, 407, 341, 1508, 2203, 281, 360, 341, 11, 341, 307, 22051, 1746, 22051, 1746, 17171, 400, 295, 1164, 1854, 309, 456, 307, 257, 3170, 2183], "avg_logprob": -0.5712090359359491, "compression_ratio": 1.7096774193548387, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 493.11, "end": 493.73, "word": " Whatsapp", "probability": 0.54144287109375}, {"start": 493.73, "end": 494.01, "word": " poster,", "probability": 0.432861328125}, {"start": 494.05, "end": 494.13, "word": " if", "probability": 0.496826171875}, {"start": 494.13, "end": 494.63, "word": " I", "probability": 0.8388671875}, {"start": 494.63, "end": 495.45, "word": " want", "probability": 0.6826171875}, {"start": 495.45, "end": 495.45, "word": " to", "probability": 0.93896484375}, {"start": 495.45, "end": 495.45, "word": " send", "probability": 0.60400390625}, {"start": 495.45, "end": 495.59, "word": " a", "probability": 0.23291015625}, {"start": 495.59, "end": 495.59, "word": " message", "probability": 0.640625}, {"start": 495.59, "end": 495.59, "word": " on", "probability": 0.319580078125}, {"start": 495.59, "end": 495.99, "word": " Whatsapp,", "probability": 0.6820068359375}, {"start": 496.11, "end": 496.43, "word": " I", "probability": 0.8203125}, {"start": 496.43, "end": 496.43, "word": " also", "probability": 0.277099609375}, {"start": 496.43, "end": 496.63, "word": " need", "probability": 0.796875}, {"start": 496.63, "end": 496.89, "word": " a", "probability": 0.92626953125}, {"start": 496.89, "end": 497.21, "word": " class", "probability": 0.953125}, {"start": 497.21, "end": 497.59, "word": " called", "probability": 0.53857421875}, {"start": 497.59, "end": 498.77, "word": " Whatsapp", "probability": 0.84521484375}, {"start": 498.77, "end": 499.15, "word": " poster", "probability": 0.67578125}, {"start": 499.15, "end": 499.99, "word": " From", "probability": 0.181640625}, {"start": 499.99, "end": 500.41, "word": " inside", "probability": 0.37158203125}, {"start": 500.41, "end": 500.69, "word": " it,", "probability": 0.459716796875}, {"start": 500.89, "end": 501.17, "word": " you", "probability": 0.5576171875}, {"start": 501.17, "end": 501.17, "word": " will", "probability": 0.6103515625}, {"start": 501.17, "end": 501.71, "word": " use", "probability": 0.82666015625}, {"start": 501.71, "end": 502.53, "word": " the", "probability": 0.441162109375}, {"start": 502.53, "end": 502.93, "word": " Whatsapp", "probability": 0.76953125}, {"start": 502.93, "end": 503.93, "word": " connector", "probability": 0.84228515625}, {"start": 503.93, "end": 505.49, "word": " So", "probability": 0.1785888671875}, {"start": 505.49, "end": 505.65, "word": " this", "probability": 0.4775390625}, {"start": 505.65, "end": 505.79, "word": " class", "probability": 0.521484375}, {"start": 505.79, "end": 505.81, "word": " needs", "probability": 0.160888671875}, {"start": 505.81, "end": 506.43, "word": " to", "probability": 0.921875}, {"start": 506.43, "end": 506.43, "word": " do", "probability": 0.256103515625}, {"start": 506.43, "end": 506.77, "word": " this,", "probability": 0.50244140625}, {"start": 506.85, "end": 507.09, "word": " this", "probability": 0.481201171875}, {"start": 507.09, "end": 507.15, "word": " is", "probability": 0.78076171875}, {"start": 507.15, "end": 507.59, "word": " Whatsapp", "probability": 0.87548828125}, {"start": 507.59, "end": 511.75, "word": " Whatsapp", "probability": 0.825927734375}, {"start": 511.75, "end": 512.31, "word": " poster", "probability": 0.83056640625}, {"start": 512.31, "end": 515.95, "word": " And", "probability": 0.55078125}, {"start": 515.95, "end": 516.15, "word": " of", "probability": 0.61279296875}, {"start": 516.15, "end": 516.15, "word": " course", "probability": 0.95458984375}, {"start": 516.15, "end": 516.43, "word": " inside", "probability": 0.390625}, {"start": 516.43, "end": 516.67, "word": " it", "probability": 0.73876953125}, {"start": 516.67, "end": 516.75, "word": " there", "probability": 0.361328125}, {"start": 516.75, "end": 516.75, "word": " is", "probability": 0.77685546875}, {"start": 516.75, "end": 516.91, "word": " a", "probability": 0.76708984375}, {"start": 516.91, "end": 516.91, "word": " method", "probability": 0.8056640625}, {"start": 516.91, "end": 517.21, "word": " post", "probability": 0.51171875}], "temperature": 1.0}, {"id": 22, "seek": 54409, "start": 518.77, "end": 544.09, "text": "What will be the method post? Just like what we wrote on Facebook, but what's wrong with it? The type of object that I want, I copied it instead of writing it again and went to the WhatsApp poster and put the data itself. Can I use the same data? No, because it's different. Instead of Facebook connector, I must use WhatsApp connector.", "tokens": [3748, 486, 312, 264, 3170, 2183, 30, 1449, 411, 437, 321, 4114, 322, 4384, 11, 457, 437, 311, 2085, 365, 309, 30, 440, 2010, 295, 2657, 300, 286, 528, 11, 286, 25365, 309, 2602, 295, 3579, 309, 797, 293, 1437, 281, 264, 30513, 17171, 293, 829, 264, 1412, 2564, 13, 1664, 286, 764, 264, 912, 1412, 30, 883, 11, 570, 309, 311, 819, 13, 7156, 295, 4384, 19127, 11, 286, 1633, 764, 30513, 19127, 13], "avg_logprob": -0.5448190593405774, "compression_ratio": 1.5700934579439252, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 518.77, "end": 519.03, "word": "What", "probability": 0.208740234375}, {"start": 519.03, "end": 519.15, "word": " will", "probability": 0.44970703125}, {"start": 519.15, "end": 519.37, "word": " be", "probability": 0.39453125}, {"start": 519.37, "end": 519.43, "word": " the", "probability": 0.72509765625}, {"start": 519.43, "end": 519.65, "word": " method", "probability": 0.494384765625}, {"start": 519.65, "end": 519.89, "word": " post?", "probability": 0.5498046875}, {"start": 519.95, "end": 520.05, "word": " Just", "probability": 0.245849609375}, {"start": 520.05, "end": 520.17, "word": " like", "probability": 0.86083984375}, {"start": 520.17, "end": 520.31, "word": " what", "probability": 0.366943359375}, {"start": 520.31, "end": 521.15, "word": " we", "probability": 0.80029296875}, {"start": 521.15, "end": 521.49, "word": " wrote", "probability": 0.5546875}, {"start": 521.49, "end": 521.71, "word": " on", "probability": 0.63916015625}, {"start": 521.71, "end": 522.05, "word": " Facebook,", "probability": 0.58837890625}, {"start": 522.15, "end": 522.59, "word": " but", "probability": 0.5849609375}, {"start": 522.59, "end": 522.93, "word": " what's", "probability": 0.44482421875}, {"start": 522.93, "end": 523.13, "word": " wrong", "probability": 0.2435302734375}, {"start": 523.13, "end": 523.33, "word": " with", "probability": 0.80224609375}, {"start": 523.33, "end": 523.53, "word": " it?", "probability": 0.84619140625}, {"start": 524.65, "end": 525.13, "word": " The", "probability": 0.318115234375}, {"start": 525.13, "end": 525.19, "word": " type", "probability": 0.326171875}, {"start": 525.19, "end": 525.31, "word": " of", "probability": 0.962890625}, {"start": 525.31, "end": 525.59, "word": " object", "probability": 0.85400390625}, {"start": 525.59, "end": 525.75, "word": " that", "probability": 0.45947265625}, {"start": 525.75, "end": 525.85, "word": " I", "probability": 0.80224609375}, {"start": 525.85, "end": 526.03, "word": " want,", "probability": 0.57568359375}, {"start": 526.25, "end": 526.79, "word": " I", "probability": 0.164306640625}, {"start": 526.79, "end": 528.13, "word": " copied", "probability": 0.66259765625}, {"start": 528.13, "end": 528.67, "word": " it", "probability": 0.69677734375}, {"start": 528.67, "end": 529.25, "word": " instead", "probability": 0.35400390625}, {"start": 529.25, "end": 529.33, "word": " of", "probability": 0.9716796875}, {"start": 529.33, "end": 529.55, "word": " writing", "probability": 0.78173828125}, {"start": 529.55, "end": 529.75, "word": " it", "probability": 0.8876953125}, {"start": 529.75, "end": 530.03, "word": " again", "probability": 0.88623046875}, {"start": 530.03, "end": 530.61, "word": " and", "probability": 0.406982421875}, {"start": 530.61, "end": 530.83, "word": " went", "probability": 0.300537109375}, {"start": 530.83, "end": 531.17, "word": " to", "probability": 0.8740234375}, {"start": 531.17, "end": 531.91, "word": " the", "probability": 0.61669921875}, {"start": 531.91, "end": 532.19, "word": " WhatsApp", "probability": 0.51953125}, {"start": 532.19, "end": 532.77, "word": " poster", "probability": 0.693359375}, {"start": 532.77, "end": 533.31, "word": " and", "probability": 0.74462890625}, {"start": 533.31, "end": 533.73, "word": " put", "probability": 0.6240234375}, {"start": 533.73, "end": 534.73, "word": " the", "probability": 0.7548828125}, {"start": 534.73, "end": 534.89, "word": " data", "probability": 0.289306640625}, {"start": 534.89, "end": 535.17, "word": " itself.", "probability": 0.5673828125}, {"start": 535.25, "end": 535.31, "word": " Can", "probability": 0.83349609375}, {"start": 535.31, "end": 535.53, "word": " I", "probability": 0.97412109375}, {"start": 535.53, "end": 535.79, "word": " use", "probability": 0.88916015625}, {"start": 535.79, "end": 536.11, "word": " the", "probability": 0.89892578125}, {"start": 536.11, "end": 536.11, "word": " same", "probability": 0.8154296875}, {"start": 536.11, "end": 536.33, "word": " data?", "probability": 0.8984375}, {"start": 536.53, "end": 536.75, "word": " No,", "probability": 0.88330078125}, {"start": 536.89, "end": 537.09, "word": " because", "probability": 0.78564453125}, {"start": 537.09, "end": 537.53, "word": " it's", "probability": 0.4005126953125}, {"start": 537.53, "end": 538.05, "word": " different.", "probability": 0.77587890625}, {"start": 538.21, "end": 538.53, "word": " Instead", "probability": 0.6337890625}, {"start": 538.53, "end": 538.67, "word": " of", "probability": 0.96826171875}, {"start": 538.67, "end": 539.85, "word": " Facebook", "probability": 0.5556640625}, {"start": 539.85, "end": 540.51, "word": " connector,", "probability": 0.61474609375}, {"start": 540.93, "end": 541.09, "word": " I", "probability": 0.72509765625}, {"start": 541.09, "end": 541.35, "word": " must", "probability": 0.2127685546875}, {"start": 541.35, "end": 541.83, "word": " use", "probability": 0.7763671875}, {"start": 541.83, "end": 542.49, "word": " WhatsApp", "probability": 0.8701171875}, {"start": 542.49, "end": 544.09, "word": " connector.", "probability": 0.7802734375}], "temperature": 1.0}, {"id": 23, "seek": 56312, "start": 554.04, "end": 563.12, "text": " Whatsapp Connector Now, if I want to make a post on Twitter, what do I have to do first? The first thing I have to do is create a Connector", "tokens": [22051, 1746, 11653, 284, 823, 11, 498, 286, 528, 281, 652, 257, 2183, 322, 5794, 11, 437, 360, 286, 362, 281, 360, 700, 30, 440, 700, 551, 286, 362, 281, 360, 307, 1884, 257, 11653, 284], "avg_logprob": -0.5244932432432432, "compression_ratio": 1.2962962962962963, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 554.0400000000001, "end": 554.32, "word": " Whatsapp", "probability": 0.4195556640625}, {"start": 554.32, "end": 554.6, "word": " Connector", "probability": 0.74951171875}, {"start": 554.6, "end": 557.52, "word": " Now,", "probability": 0.404052734375}, {"start": 557.64, "end": 557.78, "word": " if", "probability": 0.74853515625}, {"start": 557.78, "end": 557.96, "word": " I", "probability": 0.95556640625}, {"start": 557.96, "end": 558.14, "word": " want", "probability": 0.68603515625}, {"start": 558.14, "end": 558.2, "word": " to", "probability": 0.9677734375}, {"start": 558.2, "end": 558.34, "word": " make", "probability": 0.352783203125}, {"start": 558.34, "end": 558.52, "word": " a", "probability": 0.95263671875}, {"start": 558.52, "end": 558.74, "word": " post", "probability": 0.81201171875}, {"start": 558.74, "end": 558.9, "word": " on", "probability": 0.90673828125}, {"start": 558.9, "end": 559.34, "word": " Twitter,", "probability": 0.6904296875}, {"start": 560.84, "end": 561.28, "word": " what", "probability": 0.2958984375}, {"start": 561.28, "end": 561.36, "word": " do", "probability": 0.306640625}, {"start": 561.36, "end": 561.44, "word": " I", "probability": 0.95263671875}, {"start": 561.44, "end": 561.46, "word": " have", "probability": 0.339111328125}, {"start": 561.46, "end": 561.54, "word": " to", "probability": 0.97607421875}, {"start": 561.54, "end": 561.68, "word": " do", "probability": 0.95654296875}, {"start": 561.68, "end": 561.86, "word": " first?", "probability": 0.478271484375}, {"start": 561.86, "end": 561.9, "word": " The", "probability": 0.2308349609375}, {"start": 561.9, "end": 561.9, "word": " first", "probability": 0.69873046875}, {"start": 561.9, "end": 562.12, "word": " thing", "probability": 0.80908203125}, {"start": 562.12, "end": 562.26, "word": " I", "probability": 0.369873046875}, {"start": 562.26, "end": 562.26, "word": " have", "probability": 0.71044921875}, {"start": 562.26, "end": 562.4, "word": " to", "probability": 0.970703125}, {"start": 562.4, "end": 562.48, "word": " do", "probability": 0.9443359375}, {"start": 562.48, "end": 562.54, "word": " is", "probability": 0.916015625}, {"start": 562.54, "end": 562.54, "word": " create", "probability": 0.157958984375}, {"start": 562.54, "end": 562.62, "word": " a", "probability": 0.70068359375}, {"start": 562.62, "end": 563.12, "word": " Connector", "probability": 0.5947265625}], "temperature": 1.0}, {"id": 24, "seek": 58826, "start": 564.42, "end": 588.26, "text": " on twitter and here I want to create a class called whatsapp poster I put the same statement in it with the same steps but the object will be different this is a simple structure for a program now let's see what is the problem with this design notice that the method post", "tokens": [322, 21439, 293, 510, 286, 528, 281, 1884, 257, 1508, 1219, 29625, 1746, 17171, 286, 829, 264, 912, 5629, 294, 309, 365, 264, 912, 4439, 457, 264, 2657, 486, 312, 819, 341, 307, 257, 2199, 3877, 337, 257, 1461, 586, 718, 311, 536, 437, 307, 264, 1154, 365, 341, 1715, 3449, 300, 264, 3170, 2183], "avg_logprob": -0.5926339487944331, "compression_ratio": 1.6, "no_speech_prob": 1.4126300811767578e-05, "words": [{"start": 564.42, "end": 564.72, "word": " on", "probability": 0.056304931640625}, {"start": 564.72, "end": 565.08, "word": " twitter", "probability": 0.52001953125}, {"start": 565.08, "end": 566.04, "word": " and", "probability": 0.280517578125}, {"start": 566.04, "end": 566.6, "word": " here", "probability": 0.6259765625}, {"start": 566.6, "end": 566.68, "word": " I", "probability": 0.591796875}, {"start": 566.68, "end": 566.82, "word": " want", "probability": 0.236328125}, {"start": 566.82, "end": 566.86, "word": " to", "probability": 0.95654296875}, {"start": 566.86, "end": 567.14, "word": " create", "probability": 0.401611328125}, {"start": 567.14, "end": 567.64, "word": " a", "probability": 0.884765625}, {"start": 567.64, "end": 567.94, "word": " class", "probability": 0.9296875}, {"start": 567.94, "end": 568.28, "word": " called", "probability": 0.422607421875}, {"start": 568.28, "end": 569.36, "word": " whatsapp", "probability": 0.64013671875}, {"start": 569.36, "end": 569.82, "word": " poster", "probability": 0.78759765625}, {"start": 569.82, "end": 570.52, "word": " I", "probability": 0.48046875}, {"start": 570.52, "end": 570.74, "word": " put", "probability": 0.252197265625}, {"start": 570.74, "end": 571.3, "word": " the", "probability": 0.464111328125}, {"start": 571.3, "end": 571.5, "word": " same", "probability": 0.83349609375}, {"start": 571.5, "end": 571.82, "word": " statement", "probability": 0.1275634765625}, {"start": 571.82, "end": 572.16, "word": " in", "probability": 0.271484375}, {"start": 572.16, "end": 572.16, "word": " it", "probability": 0.720703125}, {"start": 572.16, "end": 572.26, "word": " with", "probability": 0.2939453125}, {"start": 572.26, "end": 572.5, "word": " the", "probability": 0.7431640625}, {"start": 572.5, "end": 572.5, "word": " same", "probability": 0.8818359375}, {"start": 572.5, "end": 572.92, "word": " steps", "probability": 0.75244140625}, {"start": 572.92, "end": 573.14, "word": " but", "probability": 0.4140625}, {"start": 573.14, "end": 573.4, "word": " the", "probability": 0.242919921875}, {"start": 573.4, "end": 574.72, "word": " object", "probability": 0.66552734375}, {"start": 574.72, "end": 574.88, "word": " will", "probability": 0.55859375}, {"start": 574.88, "end": 575.36, "word": " be", "probability": 0.54052734375}, {"start": 575.36, "end": 575.36, "word": " different", "probability": 0.8046875}, {"start": 575.36, "end": 577.06, "word": " this", "probability": 0.279541015625}, {"start": 577.06, "end": 577.56, "word": " is", "probability": 0.74951171875}, {"start": 577.56, "end": 578.98, "word": " a", "probability": 0.41259765625}, {"start": 578.98, "end": 578.98, "word": " simple", "probability": 0.86328125}, {"start": 578.98, "end": 579.54, "word": " structure", "probability": 0.8271484375}, {"start": 579.54, "end": 580.12, "word": " for", "probability": 0.80126953125}, {"start": 580.12, "end": 580.28, "word": " a", "probability": 0.791015625}, {"start": 580.28, "end": 580.64, "word": " program", "probability": 0.68359375}, {"start": 580.64, "end": 582.14, "word": " now", "probability": 0.403076171875}, {"start": 582.14, "end": 582.4, "word": " let's", "probability": 0.757568359375}, {"start": 582.4, "end": 583.12, "word": " see", "probability": 0.74658203125}, {"start": 583.12, "end": 583.3, "word": " what", "probability": 0.7529296875}, {"start": 583.3, "end": 583.34, "word": " is", "probability": 0.595703125}, {"start": 583.34, "end": 583.42, "word": " the", "probability": 0.73681640625}, {"start": 583.42, "end": 583.68, "word": " problem", "probability": 0.86962890625}, {"start": 583.68, "end": 583.86, "word": " with", "probability": 0.466796875}, {"start": 583.86, "end": 583.94, "word": " this", "probability": 0.87548828125}, {"start": 583.94, "end": 584.3, "word": " design", "probability": 0.89794921875}, {"start": 584.3, "end": 586.28, "word": " notice", "probability": 0.416748046875}, {"start": 586.28, "end": 587.28, "word": " that", "probability": 0.86376953125}, {"start": 587.28, "end": 587.38, "word": " the", "probability": 0.379150390625}, {"start": 587.38, "end": 587.86, "word": " method", "probability": 0.9423828125}, {"start": 587.86, "end": 588.26, "word": " post", "probability": 0.630859375}], "temperature": 1.0}, {"id": 25, "seek": 61187, "start": 589.69, "end": 611.87, "text": " Almost all of them are shared by WhatsApp, Facebook, Twitter, TikTok, etc. All of them are the same steps. Any post that I want to make, I have to login to the social media network, I have to make a post, I have to log out, I have to save it in the database, I have to send notification, I have to send confirmation, I have to and I have to. All of these steps are the same.", "tokens": [12627, 439, 295, 552, 366, 5507, 538, 30513, 11, 4384, 11, 5794, 11, 20211, 11, 5183, 13, 1057, 295, 552, 366, 264, 912, 4439, 13, 2639, 2183, 300, 286, 528, 281, 652, 11, 286, 362, 281, 24276, 281, 264, 2093, 3021, 3209, 11, 286, 362, 281, 652, 257, 2183, 11, 286, 362, 281, 3565, 484, 11, 286, 362, 281, 3155, 309, 294, 264, 8149, 11, 286, 362, 281, 2845, 11554, 11, 286, 362, 281, 2845, 21871, 11, 286, 362, 281, 293, 286, 362, 281, 13, 1057, 295, 613, 4439, 366, 264, 912, 13], "avg_logprob": -0.5109707586308743, "compression_ratio": 1.953125, "no_speech_prob": 4.708766937255859e-06, "words": [{"start": 589.69, "end": 590.09, "word": " Almost", "probability": 0.1273193359375}, {"start": 590.09, "end": 590.23, "word": " all", "probability": 0.23095703125}, {"start": 590.23, "end": 590.23, "word": " of", "probability": 0.2822265625}, {"start": 590.23, "end": 590.23, "word": " them", "probability": 0.7109375}, {"start": 590.23, "end": 590.29, "word": " are", "probability": 0.517578125}, {"start": 590.29, "end": 590.49, "word": " shared", "probability": 0.355712890625}, {"start": 590.49, "end": 590.73, "word": " by", "probability": 0.229248046875}, {"start": 590.73, "end": 592.71, "word": " WhatsApp,", "probability": 0.14404296875}, {"start": 593.35, "end": 593.79, "word": " Facebook,", "probability": 0.61376953125}, {"start": 594.41, "end": 594.79, "word": " Twitter,", "probability": 0.8291015625}, {"start": 595.37, "end": 595.81, "word": " TikTok,", "probability": 0.53125}, {"start": 596.03, "end": 596.65, "word": " etc.", "probability": 0.5283203125}, {"start": 596.91, "end": 597.21, "word": " All", "probability": 0.486083984375}, {"start": 597.21, "end": 597.21, "word": " of", "probability": 0.25048828125}, {"start": 597.21, "end": 598.05, "word": " them", "probability": 0.7109375}, {"start": 598.05, "end": 598.09, "word": " are", "probability": 0.625}, {"start": 598.09, "end": 598.15, "word": " the", "probability": 0.41748046875}, {"start": 598.15, "end": 598.27, "word": " same", "probability": 0.8759765625}, {"start": 598.27, "end": 598.69, "word": " steps.", "probability": 0.77099609375}, {"start": 598.79, "end": 599.09, "word": " Any", "probability": 0.26025390625}, {"start": 599.09, "end": 599.45, "word": " post", "probability": 0.73046875}, {"start": 599.45, "end": 599.53, "word": " that", "probability": 0.3974609375}, {"start": 599.53, "end": 599.63, "word": " I", "probability": 0.91357421875}, {"start": 599.63, "end": 599.83, "word": " want", "probability": 0.56982421875}, {"start": 599.83, "end": 599.83, "word": " to", "probability": 0.9501953125}, {"start": 599.83, "end": 600.01, "word": " make,", "probability": 0.436767578125}, {"start": 600.07, "end": 600.17, "word": " I", "probability": 0.4599609375}, {"start": 600.17, "end": 600.23, "word": " have", "probability": 0.314208984375}, {"start": 600.23, "end": 600.33, "word": " to", "probability": 0.96630859375}, {"start": 600.33, "end": 600.75, "word": " login", "probability": 0.408203125}, {"start": 600.75, "end": 600.93, "word": " to", "probability": 0.53271484375}, {"start": 600.93, "end": 600.99, "word": " the", "probability": 0.33740234375}, {"start": 600.99, "end": 601.19, "word": " social", "probability": 0.88134765625}, {"start": 601.19, "end": 601.45, "word": " media", "probability": 0.8125}, {"start": 601.45, "end": 601.97, "word": " network,", "probability": 0.82080078125}, {"start": 602.65, "end": 602.67, "word": " I", "probability": 0.30419921875}, {"start": 602.67, "end": 602.87, "word": " have", "probability": 0.88330078125}, {"start": 602.87, "end": 602.87, "word": " to", "probability": 0.96533203125}, {"start": 602.87, "end": 603.07, "word": " make", "probability": 0.341552734375}, {"start": 603.07, "end": 603.19, "word": " a", "probability": 0.75830078125}, {"start": 603.19, "end": 603.49, "word": " post,", "probability": 0.84912109375}, {"start": 603.85, "end": 603.97, "word": " I", "probability": 0.58154296875}, {"start": 603.97, "end": 604.15, "word": " have", "probability": 0.91845703125}, {"start": 604.15, "end": 604.15, "word": " to", "probability": 0.97021484375}, {"start": 604.15, "end": 604.53, "word": " log", "probability": 0.8623046875}, {"start": 604.53, "end": 604.83, "word": " out,", "probability": 0.52294921875}, {"start": 604.87, "end": 604.95, "word": " I", "probability": 0.8408203125}, {"start": 604.95, "end": 605.11, "word": " have", "probability": 0.912109375}, {"start": 605.11, "end": 605.19, "word": " to", "probability": 0.96728515625}, {"start": 605.19, "end": 605.39, "word": " save", "probability": 0.391845703125}, {"start": 605.39, "end": 605.49, "word": " it", "probability": 0.50244140625}, {"start": 605.49, "end": 605.55, "word": " in", "probability": 0.779296875}, {"start": 605.55, "end": 605.63, "word": " the", "probability": 0.716796875}, {"start": 605.63, "end": 605.95, "word": " database,", "probability": 0.94091796875}, {"start": 606.17, "end": 606.17, "word": " I", "probability": 0.8857421875}, {"start": 606.17, "end": 606.37, "word": " have", "probability": 0.9287109375}, {"start": 606.37, "end": 606.41, "word": " to", "probability": 0.966796875}, {"start": 606.41, "end": 606.55, "word": " send", "probability": 0.7822265625}, {"start": 606.55, "end": 607.09, "word": " notification,", "probability": 0.39501953125}, {"start": 607.33, "end": 607.33, "word": " I", "probability": 0.68603515625}, {"start": 607.33, "end": 607.55, "word": " have", "probability": 0.9423828125}, {"start": 607.55, "end": 607.57, "word": " to", "probability": 0.96630859375}, {"start": 607.57, "end": 607.73, "word": " send", "probability": 0.8388671875}, {"start": 607.73, "end": 608.09, "word": " confirmation,", "probability": 0.54345703125}, {"start": 608.29, "end": 609.03, "word": " I", "probability": 0.34765625}, {"start": 609.03, "end": 609.19, "word": " have", "probability": 0.93359375}, {"start": 609.19, "end": 609.23, "word": " to", "probability": 0.970703125}, {"start": 609.23, "end": 609.35, "word": " and", "probability": 0.28955078125}, {"start": 609.35, "end": 609.41, "word": " I", "probability": 0.78857421875}, {"start": 609.41, "end": 609.47, "word": " have", "probability": 0.68017578125}, {"start": 609.47, "end": 609.51, "word": " to.", "probability": 0.9599609375}, {"start": 609.89, "end": 610.13, "word": " All", "probability": 0.5439453125}, {"start": 610.13, "end": 610.13, "word": " of", "probability": 0.54296875}, {"start": 610.13, "end": 610.17, "word": " these", "probability": 0.67724609375}, {"start": 610.17, "end": 610.53, "word": " steps", "probability": 0.861328125}, {"start": 610.53, "end": 611.29, "word": " are", "probability": 0.90380859375}, {"start": 611.29, "end": 611.83, "word": " the", "probability": 0.5439453125}, {"start": 611.83, "end": 611.87, "word": " same.", "probability": 0.89453125}], "temperature": 1.0}, {"id": 26, "seek": 62361, "start": 613.49, "end": 623.61, "text": "Okay, we studied before that when you have more than one class participating in the method, what did we learn in the principles of object-oriented?", "tokens": [8297, 11, 321, 9454, 949, 300, 562, 291, 362, 544, 813, 472, 1508, 13950, 294, 264, 3170, 11, 437, 630, 321, 1466, 294, 264, 9156, 295, 2657, 12, 27414, 30], "avg_logprob": -0.5093246121560374, "compression_ratio": 1.2894736842105263, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 613.49, "end": 613.85, "word": "Okay,", "probability": 0.2978515625}, {"start": 614.29, "end": 614.29, "word": " we", "probability": 0.69873046875}, {"start": 614.29, "end": 615.31, "word": " studied", "probability": 0.5380859375}, {"start": 615.31, "end": 615.61, "word": " before", "probability": 0.4951171875}, {"start": 615.61, "end": 616.35, "word": " that", "probability": 0.64453125}, {"start": 616.35, "end": 616.57, "word": " when", "probability": 0.55419921875}, {"start": 616.57, "end": 616.75, "word": " you", "probability": 0.76708984375}, {"start": 616.75, "end": 617.35, "word": " have", "probability": 0.89599609375}, {"start": 617.35, "end": 618.11, "word": " more", "probability": 0.84375}, {"start": 618.11, "end": 618.27, "word": " than", "probability": 0.9169921875}, {"start": 618.27, "end": 618.45, "word": " one", "probability": 0.841796875}, {"start": 618.45, "end": 618.79, "word": " class", "probability": 0.8798828125}, {"start": 618.79, "end": 619.23, "word": " participating", "probability": 0.090576171875}, {"start": 619.23, "end": 619.45, "word": " in", "probability": 0.892578125}, {"start": 619.45, "end": 619.55, "word": " the", "probability": 0.385009765625}, {"start": 619.55, "end": 619.87, "word": " method,", "probability": 0.85205078125}, {"start": 621.07, "end": 621.29, "word": " what", "probability": 0.67919921875}, {"start": 621.29, "end": 621.39, "word": " did", "probability": 0.338134765625}, {"start": 621.39, "end": 621.77, "word": " we", "probability": 0.94091796875}, {"start": 621.77, "end": 622.11, "word": " learn", "probability": 0.95166015625}, {"start": 622.11, "end": 622.57, "word": " in", "probability": 0.55908203125}, {"start": 622.57, "end": 622.67, "word": " the", "probability": 0.4208984375}, {"start": 622.67, "end": 622.85, "word": " principles", "probability": 0.3212890625}, {"start": 622.85, "end": 623.03, "word": " of", "probability": 0.9326171875}, {"start": 623.03, "end": 623.19, "word": " object", "probability": 0.7041015625}, {"start": 623.19, "end": 623.61, "word": "-oriented?", "probability": 0.6607666015625}], "temperature": 1.0}, {"id": 27, "seek": 64471, "start": 624.73, "end": 644.71, "text": " No, not the interface, class and put the method in it. Do you remember when we used to do get report for the employee? When we used to do setter and getter for the name, where did we put them all? In the super class. Can we now, these WhatsApp posters and Facebook posters, both have a method,", "tokens": [883, 11, 406, 264, 9226, 11, 1508, 293, 829, 264, 3170, 294, 309, 13, 1144, 291, 1604, 562, 321, 1143, 281, 360, 483, 2275, 337, 264, 10738, 30, 1133, 321, 1143, 281, 360, 992, 391, 293, 483, 391, 337, 264, 1315, 11, 689, 630, 321, 829, 552, 439, 30, 682, 264, 1687, 1508, 13, 1664, 321, 586, 11, 613, 30513, 28172, 293, 4384, 28172, 11, 1293, 362, 257, 3170, 11], "avg_logprob": -0.5501760731280689, "compression_ratio": 1.5891891891891892, "no_speech_prob": 2.7418136596679688e-06, "words": [{"start": 624.73, "end": 625.03, "word": " No,", "probability": 0.52294921875}, {"start": 625.13, "end": 625.21, "word": " not", "probability": 0.72314453125}, {"start": 625.21, "end": 625.29, "word": " the", "probability": 0.271240234375}, {"start": 625.29, "end": 625.71, "word": " interface,", "probability": 0.86572265625}, {"start": 626.39, "end": 626.97, "word": " class", "probability": 0.43798828125}, {"start": 626.97, "end": 627.11, "word": " and", "probability": 0.34423828125}, {"start": 627.11, "end": 627.29, "word": " put", "probability": 0.414794921875}, {"start": 627.29, "end": 627.43, "word": " the", "probability": 0.55224609375}, {"start": 627.43, "end": 627.63, "word": " method", "probability": 0.95166015625}, {"start": 627.63, "end": 627.79, "word": " in", "probability": 0.6953125}, {"start": 627.79, "end": 628.11, "word": " it.", "probability": 0.85546875}, {"start": 628.39, "end": 628.55, "word": " Do", "probability": 0.456298828125}, {"start": 628.55, "end": 628.55, "word": " you", "probability": 0.9560546875}, {"start": 628.55, "end": 628.75, "word": " remember", "probability": 0.85107421875}, {"start": 628.75, "end": 628.95, "word": " when", "probability": 0.728515625}, {"start": 628.95, "end": 629.19, "word": " we", "probability": 0.91845703125}, {"start": 629.19, "end": 629.19, "word": " used", "probability": 0.42919921875}, {"start": 629.19, "end": 629.19, "word": " to", "probability": 0.9736328125}, {"start": 629.19, "end": 629.35, "word": " do", "probability": 0.3056640625}, {"start": 629.35, "end": 629.57, "word": " get", "probability": 0.18896484375}, {"start": 629.57, "end": 629.81, "word": " report", "probability": 0.491943359375}, {"start": 629.81, "end": 630.01, "word": " for", "probability": 0.45361328125}, {"start": 630.01, "end": 630.07, "word": " the", "probability": 0.314208984375}, {"start": 630.07, "end": 630.41, "word": " employee?", "probability": 0.4912109375}, {"start": 631.49, "end": 631.93, "word": " When", "probability": 0.41259765625}, {"start": 631.93, "end": 632.37, "word": " we", "probability": 0.93408203125}, {"start": 632.37, "end": 632.37, "word": " used", "probability": 0.71630859375}, {"start": 632.37, "end": 632.49, "word": " to", "probability": 0.97314453125}, {"start": 632.49, "end": 632.65, "word": " do", "probability": 0.74658203125}, {"start": 632.65, "end": 633.37, "word": " setter", "probability": 0.50897216796875}, {"start": 633.37, "end": 633.45, "word": " and", "probability": 0.84033203125}, {"start": 633.45, "end": 633.71, "word": " getter", "probability": 0.942626953125}, {"start": 633.71, "end": 633.81, "word": " for", "probability": 0.84716796875}, {"start": 633.81, "end": 633.87, "word": " the", "probability": 0.40234375}, {"start": 633.87, "end": 634.07, "word": " name,", "probability": 0.78125}, {"start": 634.25, "end": 634.55, "word": " where", "probability": 0.8203125}, {"start": 634.55, "end": 634.65, "word": " did", "probability": 0.8427734375}, {"start": 634.65, "end": 634.65, "word": " we", "probability": 0.912109375}, {"start": 634.65, "end": 634.85, "word": " put", "probability": 0.79541015625}, {"start": 634.85, "end": 635.05, "word": " them", "probability": 0.264404296875}, {"start": 635.05, "end": 635.25, "word": " all?", "probability": 0.81201171875}, {"start": 635.89, "end": 636.33, "word": " In", "probability": 0.791015625}, {"start": 636.33, "end": 636.43, "word": " the", "probability": 0.7314453125}, {"start": 636.43, "end": 636.67, "word": " super", "probability": 0.72314453125}, {"start": 636.67, "end": 637.45, "word": " class.", "probability": 0.67138671875}, {"start": 638.37, "end": 638.57, "word": " Can", "probability": 0.255859375}, {"start": 638.57, "end": 638.97, "word": " we", "probability": 0.89794921875}, {"start": 638.97, "end": 639.91, "word": " now,", "probability": 0.53173828125}, {"start": 640.33, "end": 640.43, "word": " these", "probability": 0.355224609375}, {"start": 640.43, "end": 641.09, "word": " WhatsApp", "probability": 0.35791015625}, {"start": 641.09, "end": 641.63, "word": " posters", "probability": 0.409423828125}, {"start": 641.63, "end": 641.77, "word": " and", "probability": 0.9130859375}, {"start": 641.77, "end": 642.15, "word": " Facebook", "probability": 0.7431640625}, {"start": 642.15, "end": 643.19, "word": " posters,", "probability": 0.81494140625}, {"start": 643.49, "end": 643.93, "word": " both", "probability": 0.77001953125}, {"start": 643.93, "end": 644.25, "word": " have", "probability": 0.6357421875}, {"start": 644.25, "end": 644.37, "word": " a", "probability": 0.35888671875}, {"start": 644.37, "end": 644.71, "word": " method,", "probability": 0.9541015625}], "temperature": 1.0}, {"id": 28, "seek": 66875, "start": 646.29, "end": 668.75, "text": "Post. Am I right or not guys? And the post has almost the same code Here for example I have five lines, it could be twenty lines, five hundred lines in the post, okay? I had to, because there is a different line, which is which line? The connector that is made, one different line, I had to say no, we can't put this method in the superclass, we can't, why?", "tokens": [47, 555, 13, 2012, 286, 558, 420, 406, 1074, 30, 400, 264, 2183, 575, 1920, 264, 912, 3089, 1692, 337, 1365, 286, 362, 1732, 3876, 11, 309, 727, 312, 7699, 3876, 11, 1732, 3262, 3876, 294, 264, 2183, 11, 1392, 30, 286, 632, 281, 11, 570, 456, 307, 257, 819, 1622, 11, 597, 307, 597, 1622, 30, 440, 19127, 300, 307, 1027, 11, 472, 819, 1622, 11, 286, 632, 281, 584, 572, 11, 321, 393, 380, 829, 341, 3170, 294, 264, 1687, 11665, 11, 321, 393, 380, 11, 983, 30], "avg_logprob": -0.49725272498288, "compression_ratio": 1.6527777777777777, "no_speech_prob": 8.881092071533203e-06, "words": [{"start": 646.29, "end": 646.73, "word": "Post.", "probability": 0.55792236328125}, {"start": 647.43, "end": 647.73, "word": " Am", "probability": 0.233154296875}, {"start": 647.73, "end": 647.75, "word": " I", "probability": 0.9326171875}, {"start": 647.75, "end": 647.75, "word": " right", "probability": 0.84033203125}, {"start": 647.75, "end": 648.03, "word": " or", "probability": 0.301025390625}, {"start": 648.03, "end": 648.03, "word": " not", "probability": 0.7587890625}, {"start": 648.03, "end": 648.19, "word": " guys?", "probability": 0.34375}, {"start": 648.87, "end": 649.03, "word": " And", "probability": 0.60595703125}, {"start": 649.03, "end": 649.13, "word": " the", "probability": 0.548828125}, {"start": 649.13, "end": 649.33, "word": " post", "probability": 0.81982421875}, {"start": 649.33, "end": 649.55, "word": " has", "probability": 0.662109375}, {"start": 649.55, "end": 650.37, "word": " almost", "probability": 0.1722412109375}, {"start": 650.37, "end": 650.87, "word": " the", "probability": 0.80810546875}, {"start": 650.87, "end": 650.99, "word": " same", "probability": 0.87548828125}, {"start": 650.99, "end": 650.99, "word": " code", "probability": 0.9033203125}, {"start": 650.99, "end": 651.99, "word": " Here", "probability": 0.260498046875}, {"start": 651.99, "end": 652.17, "word": " for", "probability": 0.5478515625}, {"start": 652.17, "end": 652.27, "word": " example", "probability": 0.8828125}, {"start": 652.27, "end": 652.37, "word": " I", "probability": 0.6650390625}, {"start": 652.37, "end": 652.53, "word": " have", "probability": 0.923828125}, {"start": 652.53, "end": 652.79, "word": " five", "probability": 0.285888671875}, {"start": 652.79, "end": 653.13, "word": " lines,", "probability": 0.21533203125}, {"start": 653.23, "end": 653.35, "word": " it", "probability": 0.59033203125}, {"start": 653.35, "end": 653.51, "word": " could", "probability": 0.469970703125}, {"start": 653.51, "end": 653.69, "word": " be", "probability": 0.76513671875}, {"start": 653.69, "end": 654.09, "word": " twenty", "probability": 0.65234375}, {"start": 654.09, "end": 654.45, "word": " lines,", "probability": 0.83740234375}, {"start": 654.69, "end": 654.83, "word": " five", "probability": 0.464111328125}, {"start": 654.83, "end": 655.11, "word": " hundred", "probability": 0.88916015625}, {"start": 655.11, "end": 655.35, "word": " lines", "probability": 0.91015625}, {"start": 655.35, "end": 655.51, "word": " in", "probability": 0.81982421875}, {"start": 655.51, "end": 655.63, "word": " the", "probability": 0.77099609375}, {"start": 655.63, "end": 655.89, "word": " post,", "probability": 0.9072265625}, {"start": 656.01, "end": 656.67, "word": " okay?", "probability": 0.337158203125}, {"start": 657.45, "end": 657.59, "word": " I", "probability": 0.5888671875}, {"start": 657.59, "end": 657.59, "word": " had", "probability": 0.81005859375}, {"start": 657.59, "end": 657.83, "word": " to,", "probability": 0.96923828125}, {"start": 658.33, "end": 658.63, "word": " because", "probability": 0.87158203125}, {"start": 658.63, "end": 658.91, "word": " there", "probability": 0.8544921875}, {"start": 658.91, "end": 658.93, "word": " is", "probability": 0.625}, {"start": 658.93, "end": 659.25, "word": " a", "probability": 0.8525390625}, {"start": 659.25, "end": 659.53, "word": " different", "probability": 0.84228515625}, {"start": 659.53, "end": 659.57, "word": " line,", "probability": 0.896484375}, {"start": 659.81, "end": 659.85, "word": " which", "probability": 0.69580078125}, {"start": 659.85, "end": 660.01, "word": " is", "probability": 0.8408203125}, {"start": 660.01, "end": 660.23, "word": " which", "probability": 0.411865234375}, {"start": 660.23, "end": 660.53, "word": " line?", "probability": 0.8154296875}, {"start": 660.99, "end": 661.39, "word": " The", "probability": 0.75732421875}, {"start": 661.39, "end": 661.79, "word": " connector", "probability": 0.75732421875}, {"start": 661.79, "end": 661.97, "word": " that", "probability": 0.56982421875}, {"start": 661.97, "end": 662.05, "word": " is", "probability": 0.6171875}, {"start": 662.05, "end": 662.27, "word": " made,", "probability": 0.43408203125}, {"start": 662.67, "end": 663.17, "word": " one", "probability": 0.244140625}, {"start": 663.17, "end": 663.57, "word": " different", "probability": 0.69482421875}, {"start": 663.57, "end": 663.61, "word": " line,", "probability": 0.92431640625}, {"start": 663.71, "end": 663.81, "word": " I", "probability": 0.7978515625}, {"start": 663.81, "end": 663.93, "word": " had", "probability": 0.91796875}, {"start": 663.93, "end": 663.99, "word": " to", "probability": 0.9599609375}, {"start": 663.99, "end": 664.09, "word": " say", "probability": 0.297607421875}, {"start": 664.09, "end": 664.23, "word": " no,", "probability": 0.4931640625}, {"start": 664.35, "end": 664.61, "word": " we", "probability": 0.61474609375}, {"start": 664.61, "end": 664.77, "word": " can't", "probability": 0.5323486328125}, {"start": 664.77, "end": 665.03, "word": " put", "probability": 0.794921875}, {"start": 665.03, "end": 665.15, "word": " this", "probability": 0.93505859375}, {"start": 665.15, "end": 665.43, "word": " method", "probability": 0.9599609375}, {"start": 665.43, "end": 666.49, "word": " in", "probability": 0.9111328125}, {"start": 666.49, "end": 666.59, "word": " the", "probability": 0.63232421875}, {"start": 666.59, "end": 667.19, "word": " superclass,", "probability": 0.844970703125}, {"start": 667.97, "end": 668.11, "word": " we", "probability": 0.372802734375}, {"start": 668.11, "end": 668.37, "word": " can't,", "probability": 0.875}, {"start": 668.45, "end": 668.75, "word": " why?", "probability": 0.919921875}], "temperature": 1.0}, {"id": 29, "seek": 68417, "start": 670.21, "end": 684.17, "text": "We say that when all methods are the same, you put them in the superclass. They are different. Can you put them in the superclass? No, you can't put them in the superclass. Because this proof, unfortunately, will have to be repeated again and again.", "tokens": [4360, 584, 300, 562, 439, 7150, 366, 264, 912, 11, 291, 829, 552, 294, 264, 1687, 11665, 13, 814, 366, 819, 13, 1664, 291, 829, 552, 294, 264, 1687, 11665, 30, 883, 11, 291, 393, 380, 829, 552, 294, 264, 1687, 11665, 13, 1436, 341, 8177, 11, 7015, 11, 486, 362, 281, 312, 10477, 797, 293, 797, 13], "avg_logprob": -0.4462393966771789, "compression_ratio": 1.6711409395973154, "no_speech_prob": 4.76837158203125e-07, "words": [{"start": 670.21, "end": 670.51, "word": "We", "probability": 0.393310546875}, {"start": 670.51, "end": 670.87, "word": " say", "probability": 0.69921875}, {"start": 670.87, "end": 670.99, "word": " that", "probability": 0.61962890625}, {"start": 670.99, "end": 671.03, "word": " when", "probability": 0.358642578125}, {"start": 671.03, "end": 671.53, "word": " all", "probability": 0.28515625}, {"start": 671.53, "end": 671.75, "word": " methods", "probability": 0.576171875}, {"start": 671.75, "end": 672.09, "word": " are", "probability": 0.8447265625}, {"start": 672.09, "end": 672.49, "word": " the", "probability": 0.2822265625}, {"start": 672.49, "end": 672.49, "word": " same,", "probability": 0.9033203125}, {"start": 673.75, "end": 673.81, "word": " you", "probability": 0.43408203125}, {"start": 673.81, "end": 674.01, "word": " put", "probability": 0.319091796875}, {"start": 674.01, "end": 674.09, "word": " them", "probability": 0.75439453125}, {"start": 674.09, "end": 674.19, "word": " in", "probability": 0.81103515625}, {"start": 674.19, "end": 674.25, "word": " the", "probability": 0.62744140625}, {"start": 674.25, "end": 674.81, "word": " superclass.", "probability": 0.752197265625}, {"start": 674.93, "end": 675.03, "word": " They", "probability": 0.261474609375}, {"start": 675.03, "end": 675.03, "word": " are", "probability": 0.35791015625}, {"start": 675.03, "end": 675.41, "word": " different.", "probability": 0.78662109375}, {"start": 676.61, "end": 676.97, "word": " Can", "probability": 0.69140625}, {"start": 676.97, "end": 677.17, "word": " you", "probability": 0.9443359375}, {"start": 677.17, "end": 677.31, "word": " put", "probability": 0.87353515625}, {"start": 677.31, "end": 677.39, "word": " them", "probability": 0.81396484375}, {"start": 677.39, "end": 677.47, "word": " in", "probability": 0.935546875}, {"start": 677.47, "end": 677.55, "word": " the", "probability": 0.84326171875}, {"start": 677.55, "end": 678.15, "word": " superclass?", "probability": 0.966064453125}, {"start": 678.47, "end": 678.63, "word": " No,", "probability": 0.87744140625}, {"start": 678.69, "end": 678.79, "word": " you", "probability": 0.90283203125}, {"start": 678.79, "end": 679.07, "word": " can't", "probability": 0.6298828125}, {"start": 679.07, "end": 679.23, "word": " put", "probability": 0.74853515625}, {"start": 679.23, "end": 679.31, "word": " them", "probability": 0.89892578125}, {"start": 679.31, "end": 679.39, "word": " in", "probability": 0.94384765625}, {"start": 679.39, "end": 679.47, "word": " the", "probability": 0.89794921875}, {"start": 679.47, "end": 680.03, "word": " superclass.", "probability": 0.970458984375}, {"start": 681.57, "end": 681.65, "word": " Because", "probability": 0.3193359375}, {"start": 681.65, "end": 682.03, "word": " this", "probability": 0.374267578125}, {"start": 682.03, "end": 682.43, "word": " proof,", "probability": 0.254150390625}, {"start": 682.65, "end": 683.03, "word": " unfortunately,", "probability": 0.88330078125}, {"start": 683.15, "end": 683.27, "word": " will", "probability": 0.342041015625}, {"start": 683.27, "end": 683.47, "word": " have", "probability": 0.796875}, {"start": 683.47, "end": 683.57, "word": " to", "probability": 0.96142578125}, {"start": 683.57, "end": 683.69, "word": " be", "probability": 0.6484375}, {"start": 683.69, "end": 683.91, "word": " repeated", "probability": 0.92431640625}, {"start": 683.91, "end": 684.17, "word": " again", "probability": 0.20068359375}, {"start": 684.17, "end": 684.17, "word": " and", "probability": 0.7353515625}, {"start": 684.17, "end": 684.17, "word": " again.", "probability": 0.9697265625}], "temperature": 1.0}, {"id": 30, "seek": 70282, "start": 685.8, "end": 702.82, "text": " In every subclass, every time you make a poster, you have to put it in the same steps Why we couldn't make a superclass? Because there is a line that contradicts me If this line wasn't there, we would have taken all the code and put it in the superclass Yes, this is the problem that we are dealing with today", "tokens": [682, 633, 1422, 11665, 11, 633, 565, 291, 652, 257, 17171, 11, 291, 362, 281, 829, 309, 294, 264, 912, 4439, 1545, 321, 2809, 380, 652, 257, 1687, 11665, 30, 1436, 456, 307, 257, 1622, 300, 28900, 82, 385, 759, 341, 1622, 2067, 380, 456, 11, 321, 576, 362, 2726, 439, 264, 3089, 293, 829, 309, 294, 264, 1687, 11665, 1079, 11, 341, 307, 264, 1154, 300, 321, 366, 6260, 365, 965], "avg_logprob": -0.5338184996827008, "compression_ratio": 1.631578947368421, "no_speech_prob": 4.082918167114258e-05, "words": [{"start": 685.8, "end": 686.0, "word": " In", "probability": 0.17236328125}, {"start": 686.0, "end": 686.16, "word": " every", "probability": 0.4619140625}, {"start": 686.16, "end": 686.62, "word": " subclass,", "probability": 0.803955078125}, {"start": 686.7, "end": 686.98, "word": " every", "probability": 0.1553955078125}, {"start": 686.98, "end": 687.08, "word": " time", "probability": 0.7060546875}, {"start": 687.08, "end": 687.22, "word": " you", "probability": 0.93359375}, {"start": 687.22, "end": 687.38, "word": " make", "probability": 0.369384765625}, {"start": 687.38, "end": 687.74, "word": " a", "probability": 0.9228515625}, {"start": 687.74, "end": 688.22, "word": " poster,", "probability": 0.73828125}, {"start": 688.84, "end": 688.98, "word": " you", "probability": 0.87109375}, {"start": 688.98, "end": 689.1, "word": " have", "probability": 0.406005859375}, {"start": 689.1, "end": 689.16, "word": " to", "probability": 0.96044921875}, {"start": 689.16, "end": 689.44, "word": " put", "probability": 0.19287109375}, {"start": 689.44, "end": 689.54, "word": " it", "probability": 0.32421875}, {"start": 689.54, "end": 689.64, "word": " in", "probability": 0.79296875}, {"start": 689.64, "end": 689.86, "word": " the", "probability": 0.62109375}, {"start": 689.86, "end": 689.86, "word": " same", "probability": 0.79638671875}, {"start": 689.86, "end": 690.32, "word": " steps", "probability": 0.485107421875}, {"start": 690.32, "end": 691.14, "word": " Why", "probability": 0.30322265625}, {"start": 691.14, "end": 691.62, "word": " we", "probability": 0.36474609375}, {"start": 691.62, "end": 692.1, "word": " couldn't", "probability": 0.6513671875}, {"start": 692.1, "end": 692.32, "word": " make", "probability": 0.72216796875}, {"start": 692.32, "end": 692.44, "word": " a", "probability": 0.68798828125}, {"start": 692.44, "end": 693.04, "word": " superclass?", "probability": 0.86767578125}, {"start": 693.32, "end": 693.62, "word": " Because", "probability": 0.75390625}, {"start": 693.62, "end": 693.78, "word": " there", "probability": 0.767578125}, {"start": 693.78, "end": 693.8, "word": " is", "probability": 0.45703125}, {"start": 693.8, "end": 693.92, "word": " a", "probability": 0.83642578125}, {"start": 693.92, "end": 694.08, "word": " line", "probability": 0.0975341796875}, {"start": 694.08, "end": 694.46, "word": " that", "probability": 0.470458984375}, {"start": 694.46, "end": 694.8, "word": " contradicts", "probability": 0.54241943359375}, {"start": 694.8, "end": 695.1, "word": " me", "probability": 0.402587890625}, {"start": 695.1, "end": 695.92, "word": " If", "probability": 0.464599609375}, {"start": 695.92, "end": 696.18, "word": " this", "probability": 0.456298828125}, {"start": 696.18, "end": 696.42, "word": " line", "probability": 0.8916015625}, {"start": 696.42, "end": 696.58, "word": " wasn't", "probability": 0.653076171875}, {"start": 696.58, "end": 696.98, "word": " there,", "probability": 0.57080078125}, {"start": 697.12, "end": 697.32, "word": " we", "probability": 0.6748046875}, {"start": 697.32, "end": 697.34, "word": " would", "probability": 0.6064453125}, {"start": 697.34, "end": 697.34, "word": " have", "probability": 0.6484375}, {"start": 697.34, "end": 697.56, "word": " taken", "probability": 0.484130859375}, {"start": 697.56, "end": 697.86, "word": " all", "probability": 0.74267578125}, {"start": 697.86, "end": 697.98, "word": " the", "probability": 0.79052734375}, {"start": 697.98, "end": 698.28, "word": " code", "probability": 0.85107421875}, {"start": 698.28, "end": 698.92, "word": " and", "probability": 0.83056640625}, {"start": 698.92, "end": 699.12, "word": " put", "probability": 0.71484375}, {"start": 699.12, "end": 699.26, "word": " it", "probability": 0.8916015625}, {"start": 699.26, "end": 699.34, "word": " in", "probability": 0.90087890625}, {"start": 699.34, "end": 699.44, "word": " the", "probability": 0.82177734375}, {"start": 699.44, "end": 699.98, "word": " superclass", "probability": 0.9326171875}, {"start": 699.98, "end": 700.76, "word": " Yes,", "probability": 0.34326171875}, {"start": 700.86, "end": 701.1, "word": " this", "probability": 0.583984375}, {"start": 701.1, "end": 701.1, "word": " is", "probability": 0.80859375}, {"start": 701.1, "end": 701.34, "word": " the", "probability": 0.81396484375}, {"start": 701.34, "end": 701.58, "word": " problem", "probability": 0.82763671875}, {"start": 701.58, "end": 701.86, "word": " that", "probability": 0.43115234375}, {"start": 701.86, "end": 701.98, "word": " we", "probability": 0.8984375}, {"start": 701.98, "end": 702.14, "word": " are", "probability": 0.6376953125}, {"start": 702.14, "end": 702.36, "word": " dealing", "probability": 0.6015625}, {"start": 702.36, "end": 702.52, "word": " with", "probability": 0.8701171875}, {"start": 702.52, "end": 702.82, "word": " today", "probability": 0.748046875}], "temperature": 1.0}, {"id": 31, "seek": 72347, "start": 705.15, "end": 723.47, "text": "in programming, I can make classes and methods in each of these classes, I find that the method is approximately 90% common, but some lines are different. And these are some of the few lines that we can criticize. Because of this difference,", "tokens": [259, 9410, 11, 286, 393, 652, 5359, 293, 7150, 294, 1184, 295, 613, 5359, 11, 286, 915, 300, 264, 3170, 307, 10447, 4289, 4, 2689, 11, 457, 512, 3876, 366, 819, 13, 400, 613, 366, 512, 295, 264, 1326, 3876, 300, 321, 393, 31010, 13, 1436, 295, 341, 2649, 11], "avg_logprob": -0.6421568346958534, "compression_ratio": 1.535031847133758, "no_speech_prob": 0.00013184547424316406, "words": [{"start": 705.15, "end": 705.35, "word": "in", "probability": 0.264404296875}, {"start": 705.35, "end": 705.77, "word": " programming,", "probability": 0.6796875}, {"start": 706.35, "end": 706.53, "word": " I", "probability": 0.66162109375}, {"start": 706.53, "end": 706.69, "word": " can", "probability": 0.308837890625}, {"start": 706.69, "end": 707.07, "word": " make", "probability": 0.482666015625}, {"start": 707.07, "end": 707.69, "word": " classes", "probability": 0.5751953125}, {"start": 707.69, "end": 709.43, "word": " and", "probability": 0.52880859375}, {"start": 709.43, "end": 710.01, "word": " methods", "probability": 0.70703125}, {"start": 710.01, "end": 710.35, "word": " in", "probability": 0.52685546875}, {"start": 710.35, "end": 710.59, "word": " each", "probability": 0.6396484375}, {"start": 710.59, "end": 710.89, "word": " of", "probability": 0.333740234375}, {"start": 710.89, "end": 711.11, "word": " these", "probability": 0.358154296875}, {"start": 711.11, "end": 711.11, "word": " classes,", "probability": 0.91357421875}, {"start": 711.15, "end": 711.23, "word": " I", "probability": 0.269775390625}, {"start": 711.23, "end": 711.43, "word": " find", "probability": 0.343505859375}, {"start": 711.43, "end": 711.61, "word": " that", "probability": 0.62158203125}, {"start": 711.61, "end": 711.67, "word": " the", "probability": 0.5859375}, {"start": 711.67, "end": 711.91, "word": " method", "probability": 0.5888671875}, {"start": 711.91, "end": 712.11, "word": " is", "probability": 0.8349609375}, {"start": 712.11, "end": 712.49, "word": " approximately", "probability": 0.23388671875}, {"start": 712.49, "end": 712.87, "word": " 90", "probability": 0.77490234375}, {"start": 712.87, "end": 713.95, "word": "%", "probability": 0.95263671875}, {"start": 713.95, "end": 713.95, "word": " common,", "probability": 0.2340087890625}, {"start": 714.63, "end": 715.05, "word": " but", "probability": 0.78759765625}, {"start": 715.05, "end": 715.45, "word": " some", "probability": 0.3349609375}, {"start": 715.45, "end": 715.93, "word": " lines", "probability": 0.65966796875}, {"start": 715.93, "end": 717.31, "word": " are", "probability": 0.79052734375}, {"start": 717.31, "end": 717.73, "word": " different.", "probability": 0.85595703125}, {"start": 718.93, "end": 719.65, "word": " And", "probability": 0.486572265625}, {"start": 719.65, "end": 719.97, "word": " these", "probability": 0.73876953125}, {"start": 719.97, "end": 720.03, "word": " are", "probability": 0.82275390625}, {"start": 720.03, "end": 720.23, "word": " some", "probability": 0.673828125}, {"start": 720.23, "end": 720.23, "word": " of", "probability": 0.61181640625}, {"start": 720.23, "end": 720.31, "word": " the", "probability": 0.87353515625}, {"start": 720.31, "end": 720.91, "word": " few", "probability": 0.8134765625}, {"start": 720.91, "end": 720.91, "word": " lines", "probability": 0.8251953125}, {"start": 720.91, "end": 721.13, "word": " that", "probability": 0.6064453125}, {"start": 721.13, "end": 721.19, "word": " we", "probability": 0.6328125}, {"start": 721.19, "end": 721.25, "word": " can", "probability": 0.2425537109375}, {"start": 721.25, "end": 721.41, "word": " criticize.", "probability": 0.31201171875}, {"start": 722.01, "end": 722.55, "word": " Because", "probability": 0.7958984375}, {"start": 722.55, "end": 722.95, "word": " of", "probability": 0.546875}, {"start": 722.95, "end": 723.07, "word": " this", "probability": 0.81396484375}, {"start": 723.07, "end": 723.47, "word": " difference,", "probability": 0.472412109375}], "temperature": 1.0}, {"id": 32, "seek": 75015, "start": 725.35, "end": 750.15, "text": " I couldn't use this method shared in the superclass. I had to go back to the subclasses. We will see many examples of this. For example, sometimes I make input boards for employee data. For example, did you find employees in full-time, part-time and contract? Yes or no? Different types. How will their input screens look like? There is a lot of information", "tokens": [286, 2809, 380, 764, 341, 3170, 5507, 294, 264, 1687, 11665, 13, 286, 632, 281, 352, 646, 281, 264, 1422, 11665, 279, 13, 492, 486, 536, 867, 5110, 295, 341, 13, 1171, 1365, 11, 2171, 286, 652, 4846, 13293, 337, 10738, 1412, 13, 1171, 1365, 11, 630, 291, 915, 6619, 294, 1577, 12, 3766, 11, 644, 12, 3766, 293, 4364, 30, 1079, 420, 572, 30, 20825, 3467, 13, 1012, 486, 641, 4846, 11171, 574, 411, 30, 821, 307, 257, 688, 295, 1589], "avg_logprob": -0.5557228915662651, "compression_ratio": 1.5633187772925765, "no_speech_prob": 1.0132789611816406e-06, "words": [{"start": 725.35, "end": 725.61, "word": " I", "probability": 0.50927734375}, {"start": 725.61, "end": 725.91, "word": " couldn't", "probability": 0.6483154296875}, {"start": 725.91, "end": 726.23, "word": " use", "probability": 0.3310546875}, {"start": 726.23, "end": 726.41, "word": " this", "probability": 0.64013671875}, {"start": 726.41, "end": 726.73, "word": " method", "probability": 0.85595703125}, {"start": 726.73, "end": 727.83, "word": " shared", "probability": 0.1680908203125}, {"start": 727.83, "end": 727.95, "word": " in", "probability": 0.75830078125}, {"start": 727.95, "end": 728.03, "word": " the", "probability": 0.489501953125}, {"start": 728.03, "end": 728.55, "word": " superclass.", "probability": 0.70849609375}, {"start": 728.63, "end": 728.71, "word": " I", "probability": 0.71044921875}, {"start": 728.71, "end": 728.83, "word": " had", "probability": 0.5458984375}, {"start": 728.83, "end": 729.09, "word": " to", "probability": 0.96630859375}, {"start": 729.09, "end": 729.27, "word": " go", "probability": 0.1611328125}, {"start": 729.27, "end": 729.29, "word": " back", "probability": 0.7490234375}, {"start": 729.29, "end": 729.99, "word": " to", "probability": 0.7412109375}, {"start": 729.99, "end": 730.29, "word": " the", "probability": 0.7353515625}, {"start": 730.29, "end": 731.53, "word": " subclasses.", "probability": 0.78466796875}, {"start": 731.53, "end": 731.89, "word": " We", "probability": 0.26318359375}, {"start": 731.89, "end": 731.99, "word": " will", "probability": 0.23046875}, {"start": 731.99, "end": 732.17, "word": " see", "probability": 0.82861328125}, {"start": 732.17, "end": 732.29, "word": " many", "probability": 0.41943359375}, {"start": 732.29, "end": 732.49, "word": " examples", "probability": 0.81201171875}, {"start": 732.49, "end": 732.83, "word": " of", "probability": 0.57080078125}, {"start": 732.83, "end": 732.93, "word": " this.", "probability": 0.810546875}, {"start": 733.03, "end": 733.15, "word": " For", "probability": 0.625}, {"start": 733.15, "end": 733.55, "word": " example,", "probability": 0.884765625}, {"start": 733.65, "end": 733.97, "word": " sometimes", "probability": 0.2310791015625}, {"start": 733.97, "end": 736.35, "word": " I", "probability": 0.896484375}, {"start": 736.35, "end": 737.15, "word": " make", "probability": 0.357666015625}, {"start": 737.15, "end": 738.21, "word": " input", "probability": 0.56640625}, {"start": 738.21, "end": 738.23, "word": " boards", "probability": 0.278564453125}, {"start": 738.23, "end": 738.43, "word": " for", "probability": 0.61083984375}, {"start": 738.43, "end": 738.53, "word": " employee", "probability": 0.29443359375}, {"start": 738.53, "end": 739.21, "word": " data.", "probability": 0.67919921875}, {"start": 739.33, "end": 739.33, "word": " For", "probability": 0.286865234375}, {"start": 739.33, "end": 739.51, "word": " example,", "probability": 0.92919921875}, {"start": 740.65, "end": 740.75, "word": " did", "probability": 0.193603515625}, {"start": 740.75, "end": 740.99, "word": " you", "probability": 0.8818359375}, {"start": 740.99, "end": 740.99, "word": " find", "probability": 0.5693359375}, {"start": 740.99, "end": 741.43, "word": " employees", "probability": 0.440185546875}, {"start": 741.43, "end": 741.63, "word": " in", "probability": 0.376708984375}, {"start": 741.63, "end": 741.85, "word": " full", "probability": 0.826171875}, {"start": 741.85, "end": 742.15, "word": "-time,", "probability": 0.932373046875}, {"start": 742.25, "end": 742.45, "word": " part", "probability": 0.9296875}, {"start": 742.45, "end": 742.71, "word": "-time", "probability": 0.9873046875}, {"start": 742.71, "end": 742.85, "word": " and", "probability": 0.367431640625}, {"start": 742.85, "end": 743.25, "word": " contract?", "probability": 0.427001953125}, {"start": 743.35, "end": 743.45, "word": " Yes", "probability": 0.408935546875}, {"start": 743.45, "end": 743.57, "word": " or", "probability": 0.53369140625}, {"start": 743.57, "end": 743.69, "word": " no?", "probability": 0.845703125}, {"start": 743.79, "end": 744.13, "word": " Different", "probability": 0.2120361328125}, {"start": 744.13, "end": 744.15, "word": " types.", "probability": 0.52490234375}, {"start": 744.81, "end": 745.21, "word": " How", "probability": 0.34765625}, {"start": 745.21, "end": 745.21, "word": " will", "probability": 0.57373046875}, {"start": 745.21, "end": 745.31, "word": " their", "probability": 0.58544921875}, {"start": 745.31, "end": 745.45, "word": " input", "probability": 0.93994140625}, {"start": 745.45, "end": 746.53, "word": " screens", "probability": 0.9384765625}, {"start": 746.53, "end": 747.43, "word": " look", "probability": 0.9248046875}, {"start": 747.43, "end": 747.73, "word": " like?", "probability": 0.77880859375}, {"start": 748.43, "end": 748.83, "word": " There", "probability": 0.409423828125}, {"start": 748.83, "end": 749.83, "word": " is", "probability": 0.546875}, {"start": 749.83, "end": 749.83, "word": " a", "probability": 0.5859375}, {"start": 749.83, "end": 749.83, "word": " lot", "probability": 0.92919921875}, {"start": 749.83, "end": 749.85, "word": " of", "probability": 0.96728515625}, {"start": 749.85, "end": 750.15, "word": " information", "probability": 0.685546875}], "temperature": 1.0}, {"id": 33, "seek": 77553, "start": 751.53, "end": 775.53, "text": "And there are some information that are different from each other Unfortunately, what do the designers do? They make each one a different input board Because there are different parts, they cannot use the same board No, we want to see how there is a way that this code, although there are some different elements, we want to put it in the superclass", "tokens": [5289, 456, 366, 512, 1536, 687, 399, 300, 366, 819, 490, 1184, 661, 8590, 11, 437, 360, 264, 16196, 360, 30, 814, 652, 1184, 472, 257, 819, 4846, 3150, 1436, 456, 366, 819, 3166, 11, 436, 2644, 764, 264, 912, 3150, 883, 11, 321, 528, 281, 536, 577, 456, 307, 257, 636, 300, 341, 3089, 11, 4878, 456, 366, 512, 819, 4959, 11, 321, 528, 281, 829, 309, 294, 264, 1687, 11665], "avg_logprob": -0.6344178278152257, "compression_ratio": 1.7715736040609138, "no_speech_prob": 2.1457672119140625e-05, "words": [{"start": 751.5300000000001, "end": 752.21, "word": "And", "probability": 0.09954833984375}, {"start": 752.21, "end": 752.45, "word": " there", "probability": 0.66943359375}, {"start": 752.45, "end": 752.51, "word": " are", "probability": 0.71240234375}, {"start": 752.51, "end": 753.29, "word": " some", "probability": 0.41796875}, {"start": 753.29, "end": 753.89, "word": " information", "probability": 0.6761881510416666}, {"start": 753.89, "end": 754.05, "word": " that", "probability": 0.213134765625}, {"start": 754.05, "end": 754.05, "word": " are", "probability": 0.48779296875}, {"start": 754.05, "end": 754.41, "word": " different", "probability": 0.52685546875}, {"start": 754.41, "end": 755.65, "word": " from", "probability": 0.1943359375}, {"start": 755.65, "end": 755.65, "word": " each", "probability": 0.231689453125}, {"start": 755.65, "end": 755.65, "word": " other", "probability": 0.81982421875}, {"start": 755.65, "end": 756.65, "word": " Unfortunately,", "probability": 0.287353515625}, {"start": 756.89, "end": 756.91, "word": " what", "probability": 0.135498046875}, {"start": 756.91, "end": 756.91, "word": " do", "probability": 0.5009765625}, {"start": 756.91, "end": 756.91, "word": " the", "probability": 0.26123046875}, {"start": 756.91, "end": 757.23, "word": " designers", "probability": 0.1802978515625}, {"start": 757.23, "end": 757.69, "word": " do?", "probability": 0.6884765625}, {"start": 758.27, "end": 758.71, "word": " They", "probability": 0.65673828125}, {"start": 758.71, "end": 758.95, "word": " make", "probability": 0.552734375}, {"start": 758.95, "end": 759.31, "word": " each", "probability": 0.5927734375}, {"start": 759.31, "end": 759.75, "word": " one", "probability": 0.358154296875}, {"start": 759.75, "end": 760.91, "word": " a", "probability": 0.457275390625}, {"start": 760.91, "end": 762.45, "word": " different", "probability": 0.6826171875}, {"start": 762.45, "end": 762.45, "word": " input", "probability": 0.465576171875}, {"start": 762.45, "end": 762.45, "word": " board", "probability": 0.3359375}, {"start": 762.45, "end": 762.79, "word": " Because", "probability": 0.385009765625}, {"start": 762.79, "end": 763.03, "word": " there", "probability": 0.51025390625}, {"start": 763.03, "end": 763.05, "word": " are", "probability": 0.91796875}, {"start": 763.05, "end": 763.87, "word": " different", "probability": 0.74072265625}, {"start": 763.87, "end": 763.87, "word": " parts,", "probability": 0.640625}, {"start": 764.01, "end": 764.07, "word": " they", "probability": 0.697265625}, {"start": 764.07, "end": 764.25, "word": " cannot", "probability": 0.46630859375}, {"start": 764.25, "end": 764.75, "word": " use", "probability": 0.88134765625}, {"start": 764.75, "end": 765.57, "word": " the", "probability": 0.90234375}, {"start": 765.57, "end": 765.57, "word": " same", "probability": 0.8837890625}, {"start": 765.57, "end": 765.99, "word": " board", "probability": 0.810546875}, {"start": 765.99, "end": 767.17, "word": " No,", "probability": 0.6611328125}, {"start": 767.69, "end": 767.91, "word": " we", "probability": 0.8603515625}, {"start": 767.91, "end": 768.11, "word": " want", "probability": 0.36669921875}, {"start": 768.11, "end": 768.21, "word": " to", "probability": 0.96484375}, {"start": 768.21, "end": 768.39, "word": " see", "probability": 0.74462890625}, {"start": 768.39, "end": 768.85, "word": " how", "probability": 0.552734375}, {"start": 768.85, "end": 769.07, "word": " there", "probability": 0.5029296875}, {"start": 769.07, "end": 769.07, "word": " is", "probability": 0.86083984375}, {"start": 769.07, "end": 769.17, "word": " a", "probability": 0.9697265625}, {"start": 769.17, "end": 769.51, "word": " way", "probability": 0.84375}, {"start": 769.51, "end": 770.49, "word": " that", "probability": 0.440673828125}, {"start": 770.49, "end": 770.87, "word": " this", "probability": 0.66845703125}, {"start": 770.87, "end": 771.27, "word": " code,", "probability": 0.92822265625}, {"start": 771.63, "end": 771.97, "word": " although", "probability": 0.428955078125}, {"start": 771.97, "end": 772.51, "word": " there", "probability": 0.458984375}, {"start": 772.51, "end": 772.59, "word": " are", "probability": 0.89794921875}, {"start": 772.59, "end": 772.81, "word": " some", "probability": 0.58935546875}, {"start": 772.81, "end": 773.53, "word": " different", "probability": 0.63232421875}, {"start": 773.53, "end": 773.55, "word": " elements,", "probability": 0.304931640625}, {"start": 773.89, "end": 773.99, "word": " we", "probability": 0.3916015625}, {"start": 773.99, "end": 774.45, "word": " want", "probability": 0.278076171875}, {"start": 774.45, "end": 774.55, "word": " to", "probability": 0.9580078125}, {"start": 774.55, "end": 774.71, "word": " put", "probability": 0.74609375}, {"start": 774.71, "end": 774.75, "word": " it", "probability": 0.55029296875}, {"start": 774.75, "end": 774.85, "word": " in", "probability": 0.8681640625}, {"start": 774.85, "end": 774.95, "word": " the", "probability": 0.78369140625}, {"start": 774.95, "end": 775.53, "word": " superclass", "probability": 0.6688232421875}], "temperature": 1.0}, {"id": 34, "seek": 80029, "start": 776.89, "end": 800.29, "text": " and let the subclasses to make the different parts of it and the same thing with the faces, we will see it in the next lecture we want the faces to have the same design and the different parts are what make the subclasses to make them how is this? here comes the benefit of the factory method pattern again, the existing problem", "tokens": [293, 718, 264, 1422, 11665, 279, 281, 652, 264, 819, 3166, 295, 309, 293, 264, 912, 551, 365, 264, 8475, 11, 321, 486, 536, 309, 294, 264, 958, 7991, 321, 528, 264, 8475, 281, 362, 264, 912, 1715, 293, 264, 819, 3166, 366, 437, 652, 264, 1422, 11665, 279, 281, 652, 552, 577, 307, 341, 30, 510, 1487, 264, 5121, 295, 264, 9265, 3170, 5102, 797, 11, 264, 6741, 1154], "avg_logprob": -0.7425176173868314, "compression_ratio": 1.848314606741573, "no_speech_prob": 1.6391277313232422e-05, "words": [{"start": 776.89, "end": 777.37, "word": " and", "probability": 0.176025390625}, {"start": 777.37, "end": 777.75, "word": " let", "probability": 0.2025146484375}, {"start": 777.75, "end": 777.85, "word": " the", "probability": 0.5341796875}, {"start": 777.85, "end": 781.39, "word": " subclasses", "probability": 0.436279296875}, {"start": 781.39, "end": 781.41, "word": " to", "probability": 0.218505859375}, {"start": 781.41, "end": 781.65, "word": " make", "probability": 0.211181640625}, {"start": 781.65, "end": 781.75, "word": " the", "probability": 0.23974609375}, {"start": 781.75, "end": 781.75, "word": " different", "probability": 0.329345703125}, {"start": 781.75, "end": 781.75, "word": " parts", "probability": 0.51416015625}, {"start": 781.75, "end": 781.75, "word": " of", "probability": 0.32958984375}, {"start": 781.75, "end": 781.75, "word": " it", "probability": 0.225830078125}, {"start": 781.75, "end": 783.65, "word": " and", "probability": 0.31396484375}, {"start": 783.65, "end": 783.87, "word": " the", "probability": 0.33935546875}, {"start": 783.87, "end": 783.87, "word": " same", "probability": 0.7841796875}, {"start": 783.87, "end": 784.05, "word": " thing", "probability": 0.33251953125}, {"start": 784.05, "end": 784.23, "word": " with", "probability": 0.3671875}, {"start": 784.23, "end": 784.23, "word": " the", "probability": 0.328125}, {"start": 784.23, "end": 784.43, "word": " faces,", "probability": 0.18603515625}, {"start": 784.61, "end": 784.73, "word": " we", "probability": 0.434814453125}, {"start": 784.73, "end": 784.73, "word": " will", "probability": 0.408935546875}, {"start": 784.73, "end": 784.87, "word": " see", "probability": 0.841796875}, {"start": 784.87, "end": 784.91, "word": " it", "probability": 0.43603515625}, {"start": 784.91, "end": 785.03, "word": " in", "probability": 0.8525390625}, {"start": 785.03, "end": 785.03, "word": " the", "probability": 0.76123046875}, {"start": 785.03, "end": 785.05, "word": " next", "probability": 0.8134765625}, {"start": 785.05, "end": 785.67, "word": " lecture", "probability": 0.40380859375}, {"start": 785.67, "end": 786.61, "word": " we", "probability": 0.33447265625}, {"start": 786.61, "end": 786.77, "word": " want", "probability": 0.257080078125}, {"start": 786.77, "end": 786.89, "word": " the", "probability": 0.2454833984375}, {"start": 786.89, "end": 787.11, "word": " faces", "probability": 0.4609375}, {"start": 787.11, "end": 787.47, "word": " to", "probability": 0.798828125}, {"start": 787.47, "end": 787.47, "word": " have", "probability": 0.6630859375}, {"start": 787.47, "end": 787.61, "word": " the", "probability": 0.30517578125}, {"start": 787.61, "end": 788.07, "word": " same", "probability": 0.7568359375}, {"start": 788.07, "end": 788.95, "word": " design", "probability": 0.7783203125}, {"start": 788.95, "end": 790.47, "word": " and", "probability": 0.5791015625}, {"start": 790.47, "end": 790.59, "word": " the", "probability": 0.4462890625}, {"start": 790.59, "end": 790.65, "word": " different", "probability": 0.78759765625}, {"start": 790.65, "end": 791.05, "word": " parts", "probability": 0.8291015625}, {"start": 791.05, "end": 791.85, "word": " are", "probability": 0.41259765625}, {"start": 791.85, "end": 792.19, "word": " what", "probability": 0.3642578125}, {"start": 792.19, "end": 792.51, "word": " make", "probability": 0.471435546875}, {"start": 792.51, "end": 792.63, "word": " the", "probability": 0.7451171875}, {"start": 792.63, "end": 793.93, "word": " subclasses", "probability": 0.9222005208333334}, {"start": 793.93, "end": 793.97, "word": " to", "probability": 0.63134765625}, {"start": 793.97, "end": 794.17, "word": " make", "probability": 0.76025390625}, {"start": 794.17, "end": 794.37, "word": " them", "probability": 0.477294921875}, {"start": 794.37, "end": 794.63, "word": " how", "probability": 0.465087890625}, {"start": 794.63, "end": 794.77, "word": " is", "probability": 0.204345703125}, {"start": 794.77, "end": 795.03, "word": " this?", "probability": 0.44677734375}, {"start": 795.51, "end": 795.87, "word": " here", "probability": 0.2939453125}, {"start": 795.87, "end": 796.25, "word": " comes", "probability": 0.3642578125}, {"start": 796.25, "end": 796.61, "word": " the", "probability": 0.81201171875}, {"start": 796.61, "end": 796.87, "word": " benefit", "probability": 0.55126953125}, {"start": 796.87, "end": 797.77, "word": " of", "probability": 0.94482421875}, {"start": 797.77, "end": 797.83, "word": " the", "probability": 0.60693359375}, {"start": 797.83, "end": 798.13, "word": " factory", "probability": 0.6728515625}, {"start": 798.13, "end": 798.43, "word": " method", "probability": 0.9443359375}, {"start": 798.43, "end": 798.81, "word": " pattern", "probability": 0.8818359375}, {"start": 798.81, "end": 799.35, "word": " again,", "probability": 0.42822265625}, {"start": 799.53, "end": 799.61, "word": " the", "probability": 0.83642578125}, {"start": 799.61, "end": 800.21, "word": " existing", "probability": 0.51708984375}, {"start": 800.21, "end": 800.29, "word": " problem", "probability": 0.8447265625}], "temperature": 1.0}, {"id": 35, "seek": 82893, "start": 801.49, "end": 828.93, "text": "that I have subclasses that share a large part of the code in a certain method but there are some minor differences these minor differences criticize me why? because they prevent me from putting this method in the superclass how can we put this method in the superclass even if there are different parts? which solves this problem of the factory method how to apply the factory method? come with me", "tokens": [6780, 286, 362, 1422, 11665, 279, 300, 2073, 257, 2416, 644, 295, 264, 3089, 294, 257, 1629, 3170, 457, 456, 366, 512, 6696, 7300, 613, 6696, 7300, 31010, 385, 983, 30, 570, 436, 4871, 385, 490, 3372, 341, 3170, 294, 264, 1687, 11665, 577, 393, 321, 829, 341, 3170, 294, 264, 1687, 11665, 754, 498, 456, 366, 819, 3166, 30, 597, 39890, 341, 1154, 295, 264, 9265, 3170, 577, 281, 3079, 264, 9265, 3170, 30, 808, 365, 385], "avg_logprob": -0.46281645569620256, "compression_ratio": 1.922705314009662, "no_speech_prob": 4.172325134277344e-06, "words": [{"start": 801.49, "end": 801.73, "word": "that", "probability": 0.09619140625}, {"start": 801.73, "end": 801.89, "word": " I", "probability": 0.72314453125}, {"start": 801.89, "end": 802.11, "word": " have", "probability": 0.861328125}, {"start": 802.11, "end": 803.27, "word": " subclasses", "probability": 0.70458984375}, {"start": 803.27, "end": 803.27, "word": " that", "probability": 0.5810546875}, {"start": 803.27, "end": 803.53, "word": " share", "probability": 0.3095703125}, {"start": 803.53, "end": 804.07, "word": " a", "probability": 0.556640625}, {"start": 804.07, "end": 804.17, "word": " large", "probability": 0.41796875}, {"start": 804.17, "end": 804.17, "word": " part", "probability": 0.66259765625}, {"start": 804.17, "end": 804.69, "word": " of", "probability": 0.92236328125}, {"start": 804.69, "end": 805.29, "word": " the", "probability": 0.68701171875}, {"start": 805.29, "end": 805.53, "word": " code", "probability": 0.75830078125}, {"start": 805.53, "end": 805.93, "word": " in", "probability": 0.40625}, {"start": 805.93, "end": 806.05, "word": " a", "probability": 0.7900390625}, {"start": 806.05, "end": 806.53, "word": " certain", "probability": 0.231689453125}, {"start": 806.53, "end": 806.53, "word": " method", "probability": 0.94921875}, {"start": 806.53, "end": 807.05, "word": " but", "probability": 0.4267578125}, {"start": 807.05, "end": 807.31, "word": " there", "probability": 0.61767578125}, {"start": 807.31, "end": 807.39, "word": " are", "probability": 0.841796875}, {"start": 807.39, "end": 807.79, "word": " some", "probability": 0.58349609375}, {"start": 807.79, "end": 809.29, "word": " minor", "probability": 0.243408203125}, {"start": 809.29, "end": 809.29, "word": " differences", "probability": 0.62158203125}, {"start": 809.29, "end": 809.95, "word": " these", "probability": 0.24853515625}, {"start": 809.95, "end": 810.83, "word": " minor", "probability": 0.873046875}, {"start": 810.83, "end": 810.83, "word": " differences", "probability": 0.69189453125}, {"start": 810.83, "end": 811.19, "word": " criticize", "probability": 0.1298828125}, {"start": 811.19, "end": 811.65, "word": " me", "probability": 0.923828125}, {"start": 811.65, "end": 812.05, "word": " why?", "probability": 0.383056640625}, {"start": 812.39, "end": 812.55, "word": " because", "probability": 0.83642578125}, {"start": 812.55, "end": 812.71, "word": " they", "probability": 0.603515625}, {"start": 812.71, "end": 812.93, "word": " prevent", "probability": 0.284423828125}, {"start": 812.93, "end": 813.15, "word": " me", "probability": 0.947265625}, {"start": 813.15, "end": 813.33, "word": " from", "probability": 0.78369140625}, {"start": 813.33, "end": 813.53, "word": " putting", "probability": 0.603515625}, {"start": 813.53, "end": 813.69, "word": " this", "probability": 0.67431640625}, {"start": 813.69, "end": 813.95, "word": " method", "probability": 0.9404296875}, {"start": 813.95, "end": 815.17, "word": " in", "probability": 0.87939453125}, {"start": 815.17, "end": 815.27, "word": " the", "probability": 0.53857421875}, {"start": 815.27, "end": 815.83, "word": " superclass", "probability": 0.874755859375}, {"start": 815.83, "end": 816.59, "word": " how", "probability": 0.8076171875}, {"start": 816.59, "end": 817.03, "word": " can", "probability": 0.4970703125}, {"start": 817.03, "end": 817.37, "word": " we", "probability": 0.52880859375}, {"start": 817.37, "end": 817.47, "word": " put", "probability": 0.65673828125}, {"start": 817.47, "end": 817.61, "word": " this", "probability": 0.86865234375}, {"start": 817.61, "end": 817.93, "word": " method", "probability": 0.9501953125}, {"start": 817.93, "end": 818.47, "word": " in", "probability": 0.9267578125}, {"start": 818.47, "end": 818.59, "word": " the", "probability": 0.68408203125}, {"start": 818.59, "end": 819.39, "word": " superclass", "probability": 0.968505859375}, {"start": 819.39, "end": 820.19, "word": " even", "probability": 0.68896484375}, {"start": 820.19, "end": 820.43, "word": " if", "probability": 0.76318359375}, {"start": 820.43, "end": 820.59, "word": " there", "probability": 0.69677734375}, {"start": 820.59, "end": 821.27, "word": " are", "probability": 0.8974609375}, {"start": 821.27, "end": 822.71, "word": " different", "probability": 0.6201171875}, {"start": 822.71, "end": 822.71, "word": " parts?", "probability": 0.7734375}, {"start": 823.59, "end": 824.19, "word": " which", "probability": 0.262451171875}, {"start": 824.19, "end": 824.49, "word": " solves", "probability": 0.80322265625}, {"start": 824.49, "end": 825.03, "word": " this", "probability": 0.71484375}, {"start": 825.03, "end": 825.03, "word": " problem", "probability": 0.7822265625}, {"start": 825.03, "end": 825.39, "word": " of", "probability": 0.5546875}, {"start": 825.39, "end": 825.99, "word": " the", "probability": 0.720703125}, {"start": 825.99, "end": 826.27, "word": " factory", "probability": 0.48876953125}, {"start": 826.27, "end": 826.57, "word": " method", "probability": 0.95166015625}, {"start": 826.57, "end": 826.87, "word": " how", "probability": 0.7548828125}, {"start": 826.87, "end": 826.99, "word": " to", "probability": 0.70263671875}, {"start": 826.99, "end": 827.21, "word": " apply", "probability": 0.4912109375}, {"start": 827.21, "end": 827.39, "word": " the", "probability": 0.79833984375}, {"start": 827.39, "end": 827.69, "word": " factory", "probability": 0.78759765625}, {"start": 827.69, "end": 828.03, "word": " method?", "probability": 0.94775390625}, {"start": 828.19, "end": 828.51, "word": " come", "probability": 0.5810546875}, {"start": 828.51, "end": 828.75, "word": " with", "probability": 0.87744140625}, {"start": 828.75, "end": 828.93, "word": " me", "probability": 0.966796875}], "temperature": 1.0}, {"id": 36, "seek": 85535, "start": 830.13, "end": 855.35, "text": "This method post is almost similar to Facebook, WhatsApp and any other poster you can make I will go and make a super class for them What should I call it? Social media poster This is the difference between a poster and a connector A poster uses a connector Social media poster And this will not be an interface", "tokens": [5723, 3170, 2183, 307, 1920, 2531, 281, 4384, 11, 30513, 293, 604, 661, 2183, 260, 291, 393, 652, 286, 486, 352, 293, 652, 257, 1687, 1508, 337, 552, 708, 820, 286, 818, 309, 30, 9909, 3021, 17171, 639, 307, 264, 2649, 1296, 257, 17171, 293, 257, 19127, 316, 17171, 4960, 257, 19127, 9909, 3021, 17171, 400, 341, 486, 406, 312, 364, 9226], "avg_logprob": -0.6810515683794779, "compression_ratio": 1.6455026455026456, "no_speech_prob": 1.7285346984863281e-06, "words": [{"start": 830.1300000000001, "end": 830.69, "word": "This", "probability": 0.099365234375}, {"start": 830.69, "end": 831.25, "word": " method", "probability": 0.75048828125}, {"start": 831.25, "end": 831.57, "word": " post", "probability": 0.2437744140625}, {"start": 831.57, "end": 831.75, "word": " is", "probability": 0.6962890625}, {"start": 831.75, "end": 832.01, "word": " almost", "probability": 0.285400390625}, {"start": 832.01, "end": 832.37, "word": " similar", "probability": 0.33642578125}, {"start": 832.37, "end": 832.65, "word": " to", "probability": 0.80126953125}, {"start": 832.65, "end": 833.81, "word": " Facebook,", "probability": 0.353759765625}, {"start": 834.35, "end": 834.77, "word": " WhatsApp", "probability": 0.419189453125}, {"start": 834.77, "end": 835.31, "word": " and", "probability": 0.474365234375}, {"start": 835.31, "end": 835.71, "word": " any", "probability": 0.533203125}, {"start": 835.71, "end": 835.85, "word": " other", "probability": 0.6171875}, {"start": 835.85, "end": 836.11, "word": " poster", "probability": 0.326904296875}, {"start": 836.11, "end": 836.19, "word": " you", "probability": 0.477294921875}, {"start": 836.19, "end": 836.23, "word": " can", "probability": 0.2156982421875}, {"start": 836.23, "end": 836.51, "word": " make", "probability": 0.416259765625}, {"start": 836.51, "end": 837.75, "word": " I", "probability": 0.1922607421875}, {"start": 837.75, "end": 838.71, "word": " will", "probability": 0.248291015625}, {"start": 838.71, "end": 838.83, "word": " go", "probability": 0.2442626953125}, {"start": 838.83, "end": 838.99, "word": " and", "probability": 0.51416015625}, {"start": 838.99, "end": 839.05, "word": " make", "probability": 0.4287109375}, {"start": 839.05, "end": 839.19, "word": " a", "probability": 0.798828125}, {"start": 839.19, "end": 839.35, "word": " super", "probability": 0.89892578125}, {"start": 839.35, "end": 839.69, "word": " class", "probability": 0.6640625}, {"start": 839.69, "end": 839.83, "word": " for", "probability": 0.85888671875}, {"start": 839.83, "end": 840.29, "word": " them", "probability": 0.859375}, {"start": 840.29, "end": 842.35, "word": " What", "probability": 0.48486328125}, {"start": 842.35, "end": 842.47, "word": " should", "probability": 0.344482421875}, {"start": 842.47, "end": 842.53, "word": " I", "probability": 0.8525390625}, {"start": 842.53, "end": 842.73, "word": " call", "probability": 0.65966796875}, {"start": 842.73, "end": 842.91, "word": " it?", "probability": 0.7880859375}, {"start": 842.95, "end": 843.23, "word": " Social", "probability": 0.448486328125}, {"start": 843.23, "end": 843.73, "word": " media", "probability": 0.54150390625}, {"start": 843.73, "end": 845.41, "word": " poster", "probability": 0.5478515625}, {"start": 845.41, "end": 846.33, "word": " This", "probability": 0.273193359375}, {"start": 846.33, "end": 846.39, "word": " is", "probability": 0.254638671875}, {"start": 846.39, "end": 846.59, "word": " the", "probability": 0.51953125}, {"start": 846.59, "end": 846.83, "word": " difference", "probability": 0.78759765625}, {"start": 846.83, "end": 847.03, "word": " between", "probability": 0.83447265625}, {"start": 847.03, "end": 847.11, "word": " a", "probability": 0.193115234375}, {"start": 847.11, "end": 847.35, "word": " poster", "probability": 0.740234375}, {"start": 847.35, "end": 847.47, "word": " and", "probability": 0.94189453125}, {"start": 847.47, "end": 847.53, "word": " a", "probability": 0.82080078125}, {"start": 847.53, "end": 847.89, "word": " connector", "probability": 0.77734375}, {"start": 847.89, "end": 848.35, "word": " A", "probability": 0.25439453125}, {"start": 848.35, "end": 848.63, "word": " poster", "probability": 0.75146484375}, {"start": 848.63, "end": 849.05, "word": " uses", "probability": 0.76708984375}, {"start": 849.05, "end": 850.17, "word": " a", "probability": 0.88720703125}, {"start": 850.17, "end": 850.57, "word": " connector", "probability": 0.84619140625}, {"start": 850.57, "end": 852.07, "word": " Social", "probability": 0.16162109375}, {"start": 852.07, "end": 852.57, "word": " media", "probability": 0.75927734375}, {"start": 852.57, "end": 853.03, "word": " poster", "probability": 0.84912109375}, {"start": 853.03, "end": 854.01, "word": " And", "probability": 0.30322265625}, {"start": 854.01, "end": 854.35, "word": " this", "probability": 0.86376953125}, {"start": 854.35, "end": 854.61, "word": " will", "probability": 0.37548828125}, {"start": 854.61, "end": 854.69, "word": " not", "probability": 0.888671875}, {"start": 854.69, "end": 854.83, "word": " be", "probability": 0.93310546875}, {"start": 854.83, "end": 854.95, "word": " an", "probability": 0.76171875}, {"start": 854.95, "end": 855.35, "word": " interface", "probability": 0.8818359375}], "temperature": 1.0}, {"id": 37, "seek": 88359, "start": 856.31, "end": 883.59, "text": " Why? Because I want to put a code in it. Right? I don't want to say why did I do it? Because I want to put a common code in it. But I want to make it abstract. So that no one can extract objects from it. Okay, did you find the example of this common code that we made in the Facebook poster? For example, it's called post. I want to remove it from here. My goal is to put it here in the super. Of course, you want to come here. Extends social media poster.", "tokens": [1545, 30, 1436, 286, 528, 281, 829, 257, 3089, 294, 309, 13, 1779, 30, 286, 500, 380, 528, 281, 584, 983, 630, 286, 360, 309, 30, 1436, 286, 528, 281, 829, 257, 2689, 3089, 294, 309, 13, 583, 286, 528, 281, 652, 309, 12649, 13, 407, 300, 572, 472, 393, 8947, 6565, 490, 309, 13, 1033, 11, 630, 291, 915, 264, 1365, 295, 341, 2689, 3089, 300, 321, 1027, 294, 264, 4384, 17171, 30, 1171, 1365, 11, 309, 311, 1219, 2183, 13, 286, 528, 281, 4159, 309, 490, 510, 13, 1222, 3387, 307, 281, 829, 309, 510, 294, 264, 1687, 13, 2720, 1164, 11, 291, 528, 281, 808, 510, 13, 9881, 2581, 2093, 3021, 17171, 13], "avg_logprob": -0.436965800758101, "compression_ratio": 1.8134920634920635, "no_speech_prob": 2.384185791015625e-05, "words": [{"start": 856.31, "end": 856.63, "word": " Why?", "probability": 0.352783203125}, {"start": 856.97, "end": 857.19, "word": " Because", "probability": 0.7880859375}, {"start": 857.19, "end": 857.33, "word": " I", "probability": 0.9208984375}, {"start": 857.33, "end": 857.45, "word": " want", "probability": 0.7529296875}, {"start": 857.45, "end": 857.51, "word": " to", "probability": 0.9638671875}, {"start": 857.51, "end": 857.61, "word": " put", "probability": 0.533203125}, {"start": 857.61, "end": 857.79, "word": " a", "probability": 0.376953125}, {"start": 857.79, "end": 858.07, "word": " code", "probability": 0.87158203125}, {"start": 858.07, "end": 858.11, "word": " in", "probability": 0.59033203125}, {"start": 858.11, "end": 858.11, "word": " it.", "probability": 0.84375}, {"start": 858.45, "end": 858.69, "word": " Right?", "probability": 0.385009765625}, {"start": 858.79, "end": 858.81, "word": " I", "probability": 0.65185546875}, {"start": 858.81, "end": 858.89, "word": " don't", "probability": 0.6328125}, {"start": 858.89, "end": 858.95, "word": " want", "probability": 0.449462890625}, {"start": 858.95, "end": 858.95, "word": " to", "probability": 0.912109375}, {"start": 858.95, "end": 859.05, "word": " say", "probability": 0.7177734375}, {"start": 859.05, "end": 859.45, "word": " why", "probability": 0.435791015625}, {"start": 859.45, "end": 859.61, "word": " did", "probability": 0.352294921875}, {"start": 859.61, "end": 859.61, "word": " I", "probability": 0.7255859375}, {"start": 859.61, "end": 859.73, "word": " do", "probability": 0.5146484375}, {"start": 859.73, "end": 859.91, "word": " it?", "probability": 0.6787109375}, {"start": 860.19, "end": 860.43, "word": " Because", "probability": 0.62353515625}, {"start": 860.43, "end": 860.55, "word": " I", "probability": 0.9794921875}, {"start": 860.55, "end": 860.63, "word": " want", "probability": 0.75390625}, {"start": 860.63, "end": 860.63, "word": " to", "probability": 0.9541015625}, {"start": 860.63, "end": 860.69, "word": " put", "probability": 0.86474609375}, {"start": 860.69, "end": 860.89, "word": " a", "probability": 0.57421875}, {"start": 860.89, "end": 860.95, "word": " common", "probability": 0.316162109375}, {"start": 860.95, "end": 861.03, "word": " code", "probability": 0.92724609375}, {"start": 861.03, "end": 861.15, "word": " in", "probability": 0.84375}, {"start": 861.15, "end": 861.39, "word": " it.", "probability": 0.93701171875}, {"start": 861.89, "end": 862.21, "word": " But", "probability": 0.87060546875}, {"start": 862.21, "end": 862.29, "word": " I", "probability": 0.92822265625}, {"start": 862.29, "end": 862.41, "word": " want", "probability": 0.74853515625}, {"start": 862.41, "end": 862.43, "word": " to", "probability": 0.92041015625}, {"start": 862.43, "end": 862.61, "word": " make", "probability": 0.326416015625}, {"start": 862.61, "end": 863.11, "word": " it", "probability": 0.8896484375}, {"start": 863.11, "end": 864.81, "word": " abstract.", "probability": 0.67919921875}, {"start": 865.01, "end": 865.15, "word": " So", "probability": 0.62939453125}, {"start": 865.15, "end": 865.31, "word": " that", "probability": 0.70947265625}, {"start": 865.31, "end": 865.37, "word": " no", "probability": 0.49658203125}, {"start": 865.37, "end": 865.53, "word": " one", "probability": 0.90234375}, {"start": 865.53, "end": 865.65, "word": " can", "probability": 0.5166015625}, {"start": 865.65, "end": 865.83, "word": " extract", "probability": 0.17578125}, {"start": 865.83, "end": 866.43, "word": " objects", "probability": 0.466796875}, {"start": 866.43, "end": 866.43, "word": " from", "probability": 0.78173828125}, {"start": 866.43, "end": 866.43, "word": " it.", "probability": 0.9365234375}, {"start": 867.49, "end": 867.77, "word": " Okay,", "probability": 0.3525390625}, {"start": 867.83, "end": 867.95, "word": " did", "probability": 0.58642578125}, {"start": 867.95, "end": 868.11, "word": " you", "probability": 0.9658203125}, {"start": 868.11, "end": 868.11, "word": " find", "probability": 0.49462890625}, {"start": 868.11, "end": 868.23, "word": " the", "probability": 0.3798828125}, {"start": 868.23, "end": 868.41, "word": " example", "probability": 0.17041015625}, {"start": 868.41, "end": 868.53, "word": " of", "probability": 0.9072265625}, {"start": 868.53, "end": 868.69, "word": " this", "probability": 0.83544921875}, {"start": 868.69, "end": 869.05, "word": " common", "probability": 0.6943359375}, {"start": 869.05, "end": 869.15, "word": " code", "probability": 0.59326171875}, {"start": 869.15, "end": 869.41, "word": " that", "probability": 0.6103515625}, {"start": 869.41, "end": 869.57, "word": " we", "probability": 0.9296875}, {"start": 869.57, "end": 869.83, "word": " made", "probability": 0.35693359375}, {"start": 869.83, "end": 870.81, "word": " in", "probability": 0.7177734375}, {"start": 870.81, "end": 870.89, "word": " the", "probability": 0.6640625}, {"start": 870.89, "end": 871.23, "word": " Facebook", "probability": 0.65087890625}, {"start": 871.23, "end": 871.65, "word": " poster?", "probability": 0.62158203125}, {"start": 871.75, "end": 871.81, "word": " For", "probability": 0.50537109375}, {"start": 871.81, "end": 871.89, "word": " example,", "probability": 0.9521484375}, {"start": 871.95, "end": 872.15, "word": " it's", "probability": 0.35009765625}, {"start": 872.15, "end": 872.33, "word": " called", "probability": 0.5224609375}, {"start": 872.33, "end": 872.71, "word": " post.", "probability": 0.326904296875}, {"start": 873.15, "end": 873.27, "word": " I", "probability": 0.93603515625}, {"start": 873.27, "end": 873.41, "word": " want", "probability": 0.78173828125}, {"start": 873.41, "end": 873.47, "word": " to", "probability": 0.96435546875}, {"start": 873.47, "end": 873.59, "word": " remove", "probability": 0.626953125}, {"start": 873.59, "end": 873.69, "word": " it", "probability": 0.923828125}, {"start": 873.69, "end": 873.79, "word": " from", "probability": 0.8369140625}, {"start": 873.79, "end": 874.75, "word": " here.", "probability": 0.84375}, {"start": 875.05, "end": 875.37, "word": " My", "probability": 0.8271484375}, {"start": 875.37, "end": 875.53, "word": " goal", "probability": 0.8388671875}, {"start": 875.53, "end": 875.73, "word": " is", "probability": 0.91845703125}, {"start": 875.73, "end": 875.73, "word": " to", "probability": 0.96044921875}, {"start": 875.73, "end": 875.89, "word": " put", "probability": 0.763671875}, {"start": 875.89, "end": 875.99, "word": " it", "probability": 0.9033203125}, {"start": 875.99, "end": 876.25, "word": " here", "probability": 0.80078125}, {"start": 876.25, "end": 876.93, "word": " in", "probability": 0.68408203125}, {"start": 876.93, "end": 877.05, "word": " the", "probability": 0.826171875}, {"start": 877.05, "end": 877.25, "word": " super.", "probability": 0.339599609375}, {"start": 877.55, "end": 877.87, "word": " Of", "probability": 0.52685546875}, {"start": 877.87, "end": 877.89, "word": " course,", "probability": 0.9599609375}, {"start": 877.91, "end": 878.07, "word": " you", "probability": 0.70849609375}, {"start": 878.07, "end": 878.15, "word": " want", "probability": 0.3388671875}, {"start": 878.15, "end": 878.15, "word": " to", "probability": 0.96728515625}, {"start": 878.15, "end": 878.31, "word": " come", "probability": 0.736328125}, {"start": 878.31, "end": 878.59, "word": " here.", "probability": 0.84521484375}, {"start": 880.15, "end": 880.47, "word": " Extends", "probability": 0.742431640625}, {"start": 880.47, "end": 881.91, "word": " social", "probability": 0.57080078125}, {"start": 881.91, "end": 882.81, "word": " media", "probability": 0.89501953125}, {"start": 882.81, "end": 883.59, "word": " poster.", "probability": 0.81689453125}], "temperature": 1.0}, {"id": 38, "seek": 90963, "start": 886.23, "end": 909.63, "text": " And I went to the social media poster, the app, and put the method in it Of course, there is still a mistake, because what does this create? Yes, only Facebook connector Now, if I go to WhatsApp poster, this is Facebook poster, and this is WhatsApp poster", "tokens": [400, 286, 1437, 281, 264, 2093, 3021, 17171, 11, 264, 724, 11, 293, 829, 264, 3170, 294, 309, 2720, 1164, 11, 456, 307, 920, 257, 6146, 11, 570, 437, 775, 341, 1884, 30, 1079, 11, 787, 4384, 19127, 823, 11, 498, 286, 352, 281, 30513, 17171, 11, 341, 307, 4384, 17171, 11, 293, 341, 307, 30513, 17171], "avg_logprob": -0.5317888146844404, "compression_ratio": 1.5515151515151515, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 886.23, "end": 886.71, "word": " And", "probability": 0.1337890625}, {"start": 886.71, "end": 886.85, "word": " I", "probability": 0.380615234375}, {"start": 886.85, "end": 886.95, "word": " went", "probability": 0.46826171875}, {"start": 886.95, "end": 887.15, "word": " to", "probability": 0.9384765625}, {"start": 887.15, "end": 887.43, "word": " the", "probability": 0.338623046875}, {"start": 887.43, "end": 887.67, "word": " social", "probability": 0.7529296875}, {"start": 887.67, "end": 888.03, "word": " media", "probability": 0.9296875}, {"start": 888.03, "end": 888.51, "word": " poster,", "probability": 0.294677734375}, {"start": 888.67, "end": 888.77, "word": " the", "probability": 0.408447265625}, {"start": 888.77, "end": 889.01, "word": " app,", "probability": 0.72314453125}, {"start": 889.13, "end": 889.19, "word": " and", "probability": 0.89013671875}, {"start": 889.19, "end": 889.49, "word": " put", "probability": 0.32275390625}, {"start": 889.49, "end": 890.89, "word": " the", "probability": 0.443359375}, {"start": 890.89, "end": 891.99, "word": " method", "probability": 0.9130859375}, {"start": 891.99, "end": 892.09, "word": " in", "probability": 0.474853515625}, {"start": 892.09, "end": 892.97, "word": " it", "probability": 0.81494140625}, {"start": 892.97, "end": 893.05, "word": " Of", "probability": 0.556640625}, {"start": 893.05, "end": 895.21, "word": " course,", "probability": 0.9384765625}, {"start": 895.29, "end": 895.47, "word": " there", "probability": 0.78369140625}, {"start": 895.47, "end": 895.47, "word": " is", "probability": 0.6025390625}, {"start": 895.47, "end": 895.47, "word": " still", "probability": 0.91064453125}, {"start": 895.47, "end": 895.59, "word": " a", "probability": 0.70751953125}, {"start": 895.59, "end": 895.77, "word": " mistake,", "probability": 0.84912109375}, {"start": 895.99, "end": 896.21, "word": " because", "probability": 0.83203125}, {"start": 896.21, "end": 896.39, "word": " what", "probability": 0.22705078125}, {"start": 896.39, "end": 896.39, "word": " does", "probability": 0.56591796875}, {"start": 896.39, "end": 896.49, "word": " this", "probability": 0.57275390625}, {"start": 896.49, "end": 896.97, "word": " create?", "probability": 0.198486328125}, {"start": 898.13, "end": 898.33, "word": " Yes,", "probability": 0.28173828125}, {"start": 898.51, "end": 898.71, "word": " only", "probability": 0.481689453125}, {"start": 898.71, "end": 899.03, "word": " Facebook", "probability": 0.4248046875}, {"start": 899.03, "end": 899.71, "word": " connector", "probability": 0.46826171875}, {"start": 899.71, "end": 900.97, "word": " Now,", "probability": 0.6640625}, {"start": 901.15, "end": 901.43, "word": " if", "probability": 0.8642578125}, {"start": 901.43, "end": 901.75, "word": " I", "probability": 0.97314453125}, {"start": 901.75, "end": 901.75, "word": " go", "probability": 0.74853515625}, {"start": 901.75, "end": 902.71, "word": " to", "probability": 0.9130859375}, {"start": 902.71, "end": 903.23, "word": " WhatsApp", "probability": 0.393310546875}, {"start": 903.23, "end": 904.69, "word": " poster,", "probability": 0.73681640625}, {"start": 904.93, "end": 905.23, "word": " this", "probability": 0.71875}, {"start": 905.23, "end": 905.23, "word": " is", "probability": 0.91943359375}, {"start": 905.23, "end": 905.61, "word": " Facebook", "probability": 0.52197265625}, {"start": 905.61, "end": 906.09, "word": " poster,", "probability": 0.83837890625}, {"start": 906.41, "end": 906.57, "word": " and", "probability": 0.90185546875}, {"start": 906.57, "end": 906.79, "word": " this", "probability": 0.751953125}, {"start": 906.79, "end": 907.03, "word": " is", "probability": 0.916015625}, {"start": 907.03, "end": 907.87, "word": " WhatsApp", "probability": 0.70068359375}, {"start": 907.87, "end": 909.63, "word": " poster", "probability": 0.857421875}], "temperature": 1.0}, {"id": 39, "seek": 93517, "start": 910.83, "end": 935.17, "text": " Because this proof, what does it want to do with it? It wants to remove it, that's it, it's not in the superclass anymore, okay? Extends social media poster. So the methods are now empty. Why? Because they are participating in the method post. Okay, so far what we have done is right or wrong? Wrong, because what is here is Facebook. So if you use even Twitter,", "tokens": [1436, 341, 8177, 11, 437, 775, 309, 528, 281, 360, 365, 309, 30, 467, 2738, 281, 4159, 309, 11, 300, 311, 309, 11, 309, 311, 406, 294, 264, 1687, 11665, 3602, 11, 1392, 30, 9881, 2581, 2093, 3021, 17171, 13, 407, 264, 7150, 366, 586, 6707, 13, 1545, 30, 1436, 436, 366, 13950, 294, 264, 3170, 2183, 13, 1033, 11, 370, 1400, 437, 321, 362, 1096, 307, 558, 420, 2085, 30, 28150, 11, 570, 437, 307, 510, 307, 4384, 13, 407, 498, 291, 764, 754, 5794, 11], "avg_logprob": -0.5216619311408563, "compression_ratio": 1.5646551724137931, "no_speech_prob": 3.6954879760742188e-06, "words": [{"start": 910.83, "end": 911.15, "word": " Because", "probability": 0.08319091796875}, {"start": 911.15, "end": 911.45, "word": " this", "probability": 0.58154296875}, {"start": 911.45, "end": 911.71, "word": " proof,", "probability": 0.408203125}, {"start": 912.35, "end": 912.59, "word": " what", "probability": 0.81201171875}, {"start": 912.59, "end": 912.73, "word": " does", "probability": 0.47900390625}, {"start": 912.73, "end": 912.75, "word": " it", "probability": 0.9052734375}, {"start": 912.75, "end": 912.79, "word": " want", "probability": 0.41015625}, {"start": 912.79, "end": 912.79, "word": " to", "probability": 0.94287109375}, {"start": 912.79, "end": 912.91, "word": " do", "probability": 0.9423828125}, {"start": 912.91, "end": 913.05, "word": " with", "probability": 0.48974609375}, {"start": 913.05, "end": 913.23, "word": " it?", "probability": 0.92431640625}, {"start": 913.63, "end": 913.99, "word": " It", "probability": 0.62548828125}, {"start": 913.99, "end": 914.13, "word": " wants", "probability": 0.67333984375}, {"start": 914.13, "end": 914.17, "word": " to", "probability": 0.943359375}, {"start": 914.17, "end": 914.29, "word": " remove", "probability": 0.6787109375}, {"start": 914.29, "end": 914.43, "word": " it,", "probability": 0.8896484375}, {"start": 914.47, "end": 914.59, "word": " that's", "probability": 0.655517578125}, {"start": 914.59, "end": 914.67, "word": " it,", "probability": 0.8115234375}, {"start": 914.81, "end": 914.97, "word": " it's", "probability": 0.4456787109375}, {"start": 914.97, "end": 914.97, "word": " not", "probability": 0.86083984375}, {"start": 914.97, "end": 915.39, "word": " in", "probability": 0.302490234375}, {"start": 915.39, "end": 915.53, "word": " the", "probability": 0.77490234375}, {"start": 915.53, "end": 916.03, "word": " superclass", "probability": 0.66796875}, {"start": 916.03, "end": 916.27, "word": " anymore,", "probability": 0.66552734375}, {"start": 916.41, "end": 917.29, "word": " okay?", "probability": 0.203857421875}, {"start": 918.05, "end": 918.41, "word": " Extends", "probability": 0.719482421875}, {"start": 918.41, "end": 919.67, "word": " social", "probability": 0.689453125}, {"start": 919.67, "end": 920.45, "word": " media", "probability": 0.89208984375}, {"start": 920.45, "end": 924.05, "word": " poster.", "probability": 0.358154296875}, {"start": 924.13, "end": 924.27, "word": " So", "probability": 0.442626953125}, {"start": 924.27, "end": 924.35, "word": " the", "probability": 0.533203125}, {"start": 924.35, "end": 924.53, "word": " methods", "probability": 0.495361328125}, {"start": 924.53, "end": 924.81, "word": " are", "probability": 0.406005859375}, {"start": 924.81, "end": 924.95, "word": " now", "probability": 0.357177734375}, {"start": 924.95, "end": 925.15, "word": " empty.", "probability": 0.7041015625}, {"start": 925.33, "end": 925.51, "word": " Why?", "probability": 0.84716796875}, {"start": 925.55, "end": 925.65, "word": " Because", "probability": 0.91455078125}, {"start": 925.65, "end": 925.75, "word": " they", "probability": 0.8349609375}, {"start": 925.75, "end": 925.75, "word": " are", "probability": 0.429443359375}, {"start": 925.75, "end": 926.09, "word": " participating", "probability": 0.1824951171875}, {"start": 926.09, "end": 926.87, "word": " in", "probability": 0.92626953125}, {"start": 926.87, "end": 926.95, "word": " the", "probability": 0.83056640625}, {"start": 926.95, "end": 927.13, "word": " method", "probability": 0.93896484375}, {"start": 927.13, "end": 927.45, "word": " post.", "probability": 0.68212890625}, {"start": 928.19, "end": 928.43, "word": " Okay,", "probability": 0.53515625}, {"start": 928.69, "end": 928.81, "word": " so", "probability": 0.359375}, {"start": 928.81, "end": 929.09, "word": " far", "probability": 0.77197265625}, {"start": 929.09, "end": 929.17, "word": " what", "probability": 0.52880859375}, {"start": 929.17, "end": 929.33, "word": " we", "probability": 0.9443359375}, {"start": 929.33, "end": 929.39, "word": " have", "probability": 0.450927734375}, {"start": 929.39, "end": 929.53, "word": " done", "probability": 0.88525390625}, {"start": 929.53, "end": 929.71, "word": " is", "probability": 0.6806640625}, {"start": 929.71, "end": 929.93, "word": " right", "probability": 0.60009765625}, {"start": 929.93, "end": 930.07, "word": " or", "probability": 0.91845703125}, {"start": 930.07, "end": 930.37, "word": " wrong?", "probability": 0.916015625}, {"start": 930.91, "end": 931.27, "word": " Wrong,", "probability": 0.62890625}, {"start": 932.35, "end": 932.55, "word": " because", "probability": 0.86376953125}, {"start": 932.55, "end": 932.79, "word": " what", "probability": 0.52392578125}, {"start": 932.79, "end": 932.85, "word": " is", "probability": 0.5537109375}, {"start": 932.85, "end": 933.21, "word": " here", "probability": 0.34765625}, {"start": 933.21, "end": 933.39, "word": " is", "probability": 0.83544921875}, {"start": 933.39, "end": 933.67, "word": " Facebook.", "probability": 0.69921875}, {"start": 933.85, "end": 933.93, "word": " So", "probability": 0.7294921875}, {"start": 933.93, "end": 934.03, "word": " if", "probability": 0.75537109375}, {"start": 934.03, "end": 934.13, "word": " you", "probability": 0.62353515625}, {"start": 934.13, "end": 934.47, "word": " use", "probability": 0.447265625}, {"start": 934.47, "end": 934.79, "word": " even", "probability": 0.352783203125}, {"start": 934.79, "end": 935.17, "word": " Twitter,", "probability": 0.8662109375}], "temperature": 1.0}, {"id": 40, "seek": 96401, "start": 936.03, "end": 964.01, "text": " He will download Facebook and send it to Facebook and this is wrong. This is the main thing. He has a Facebook poster. And we told him to make a post for what? He has an empty username and password and we told him to make a post for him. This will work. Why? Because the post that he will get, this is inherited from whom? From the super class that has a Facebook connector. But this second one will not work. It is true that I made a Whatsapp poster, but when he gets the post,", "tokens": [634, 486, 5484, 4384, 293, 2845, 309, 281, 4384, 293, 341, 307, 2085, 13, 639, 307, 264, 2135, 551, 13, 634, 575, 257, 4384, 17171, 13, 400, 321, 1907, 796, 281, 652, 257, 2183, 337, 437, 30, 634, 575, 364, 6707, 4195, 16344, 293, 11524, 293, 321, 1907, 796, 281, 652, 257, 2183, 337, 796, 13, 639, 486, 589, 13, 1545, 30, 1436, 264, 2183, 300, 415, 486, 483, 11, 341, 307, 27091, 490, 7101, 30, 3358, 264, 1687, 1508, 300, 575, 257, 4384, 19127, 13, 583, 341, 1150, 472, 486, 406, 589, 13, 467, 307, 2074, 300, 286, 1027, 257, 22051, 1746, 17171, 11, 457, 562, 415, 2170, 264, 2183, 11], "avg_logprob": -0.5638827264836405, "compression_ratio": 1.8858267716535433, "no_speech_prob": 5.602836608886719e-06, "words": [{"start": 936.03, "end": 936.43, "word": " He", "probability": 0.06414794921875}, {"start": 936.43, "end": 936.57, "word": " will", "probability": 0.317626953125}, {"start": 936.57, "end": 936.77, "word": " download", "probability": 0.134521484375}, {"start": 936.77, "end": 937.15, "word": " Facebook", "probability": 0.251220703125}, {"start": 937.15, "end": 937.45, "word": " and", "probability": 0.2261962890625}, {"start": 937.45, "end": 937.77, "word": " send", "probability": 0.322998046875}, {"start": 937.77, "end": 937.89, "word": " it", "probability": 0.465087890625}, {"start": 937.89, "end": 938.03, "word": " to", "probability": 0.68115234375}, {"start": 938.03, "end": 939.03, "word": " Facebook", "probability": 0.364501953125}, {"start": 939.03, "end": 939.15, "word": " and", "probability": 0.179931640625}, {"start": 939.15, "end": 939.29, "word": " this", "probability": 0.53857421875}, {"start": 939.29, "end": 939.33, "word": " is", "probability": 0.9013671875}, {"start": 939.33, "end": 939.61, "word": " wrong.", "probability": 0.8115234375}, {"start": 940.23, "end": 940.47, "word": " This", "probability": 0.314208984375}, {"start": 940.47, "end": 940.55, "word": " is", "probability": 0.8212890625}, {"start": 940.55, "end": 940.65, "word": " the", "probability": 0.62255859375}, {"start": 940.65, "end": 940.87, "word": " main", "probability": 0.75927734375}, {"start": 940.87, "end": 941.83, "word": " thing.", "probability": 0.31884765625}, {"start": 941.97, "end": 942.37, "word": " He", "probability": 0.345458984375}, {"start": 942.37, "end": 942.59, "word": " has", "probability": 0.76220703125}, {"start": 942.59, "end": 942.71, "word": " a", "probability": 0.52197265625}, {"start": 942.71, "end": 943.01, "word": " Facebook", "probability": 0.765625}, {"start": 943.01, "end": 943.45, "word": " poster.", "probability": 0.54345703125}, {"start": 943.95, "end": 944.23, "word": " And", "probability": 0.315673828125}, {"start": 944.23, "end": 944.23, "word": " we", "probability": 0.62109375}, {"start": 944.23, "end": 944.37, "word": " told", "probability": 0.45654296875}, {"start": 944.37, "end": 944.53, "word": " him", "probability": 0.904296875}, {"start": 944.53, "end": 944.65, "word": " to", "probability": 0.833984375}, {"start": 944.65, "end": 944.75, "word": " make", "probability": 0.537109375}, {"start": 944.75, "end": 944.89, "word": " a", "probability": 0.94970703125}, {"start": 944.89, "end": 945.15, "word": " post", "probability": 0.8310546875}, {"start": 945.15, "end": 945.25, "word": " for", "probability": 0.340087890625}, {"start": 945.25, "end": 945.51, "word": " what?", "probability": 0.53759765625}, {"start": 945.55, "end": 945.69, "word": " He", "probability": 0.327392578125}, {"start": 945.69, "end": 945.75, "word": " has", "probability": 0.466552734375}, {"start": 945.75, "end": 945.83, "word": " an", "probability": 0.210693359375}, {"start": 945.83, "end": 945.93, "word": " empty", "probability": 0.61962890625}, {"start": 945.93, "end": 946.15, "word": " username", "probability": 0.438232421875}, {"start": 946.15, "end": 946.27, "word": " and", "probability": 0.9169921875}, {"start": 946.27, "end": 946.55, "word": " password", "probability": 0.85400390625}, {"start": 946.55, "end": 947.03, "word": " and", "probability": 0.46484375}, {"start": 947.03, "end": 947.49, "word": " we", "probability": 0.42724609375}, {"start": 947.49, "end": 947.63, "word": " told", "probability": 0.7158203125}, {"start": 947.63, "end": 947.77, "word": " him", "probability": 0.9150390625}, {"start": 947.77, "end": 947.87, "word": " to", "probability": 0.9287109375}, {"start": 947.87, "end": 947.87, "word": " make", "probability": 0.8740234375}, {"start": 947.87, "end": 947.99, "word": " a", "probability": 0.978515625}, {"start": 947.99, "end": 948.17, "word": " post", "probability": 0.833984375}, {"start": 948.17, "end": 948.27, "word": " for", "probability": 0.8818359375}, {"start": 948.27, "end": 948.45, "word": " him.", "probability": 0.32177734375}, {"start": 949.47, "end": 949.87, "word": " This", "probability": 0.76025390625}, {"start": 949.87, "end": 950.03, "word": " will", "probability": 0.654296875}, {"start": 950.03, "end": 950.31, "word": " work.", "probability": 0.90771484375}, {"start": 950.73, "end": 950.97, "word": " Why?", "probability": 0.75439453125}, {"start": 951.07, "end": 951.29, "word": " Because", "probability": 0.85205078125}, {"start": 951.29, "end": 952.09, "word": " the", "probability": 0.7412109375}, {"start": 952.09, "end": 952.47, "word": " post", "probability": 0.84375}, {"start": 952.47, "end": 952.59, "word": " that", "probability": 0.537109375}, {"start": 952.59, "end": 952.79, "word": " he", "probability": 0.60595703125}, {"start": 952.79, "end": 952.83, "word": " will", "probability": 0.51513671875}, {"start": 952.83, "end": 953.07, "word": " get,", "probability": 0.35400390625}, {"start": 953.35, "end": 953.57, "word": " this", "probability": 0.415771484375}, {"start": 953.57, "end": 953.63, "word": " is", "probability": 0.59033203125}, {"start": 953.63, "end": 953.97, "word": " inherited", "probability": 0.189697265625}, {"start": 953.97, "end": 954.23, "word": " from", "probability": 0.85546875}, {"start": 954.23, "end": 954.41, "word": " whom?", "probability": 0.70361328125}, {"start": 954.71, "end": 955.11, "word": " From", "probability": 0.6474609375}, {"start": 955.11, "end": 955.21, "word": " the", "probability": 0.76806640625}, {"start": 955.21, "end": 955.39, "word": " super", "probability": 0.90625}, {"start": 955.39, "end": 955.77, "word": " class", "probability": 0.69384765625}, {"start": 955.77, "end": 955.95, "word": " that", "probability": 0.60400390625}, {"start": 955.95, "end": 956.09, "word": " has", "probability": 0.91845703125}, {"start": 956.09, "end": 956.21, "word": " a", "probability": 0.67041015625}, {"start": 956.21, "end": 956.45, "word": " Facebook", "probability": 0.7626953125}, {"start": 956.45, "end": 956.93, "word": " connector.", "probability": 0.673828125}, {"start": 957.39, "end": 957.75, "word": " But", "probability": 0.90966796875}, {"start": 957.75, "end": 957.99, "word": " this", "probability": 0.6162109375}, {"start": 957.99, "end": 958.19, "word": " second", "probability": 0.50244140625}, {"start": 958.19, "end": 958.83, "word": " one", "probability": 0.478515625}, {"start": 958.83, "end": 959.85, "word": " will", "probability": 0.3720703125}, {"start": 959.85, "end": 959.93, "word": " not", "probability": 0.9375}, {"start": 959.93, "end": 960.41, "word": " work.", "probability": 0.92822265625}, {"start": 960.73, "end": 961.13, "word": " It", "probability": 0.3037109375}, {"start": 961.13, "end": 961.13, "word": " is", "probability": 0.5205078125}, {"start": 961.13, "end": 961.17, "word": " true", "probability": 0.89501953125}, {"start": 961.17, "end": 961.27, "word": " that", "probability": 0.82080078125}, {"start": 961.27, "end": 961.37, "word": " I", "probability": 0.9619140625}, {"start": 961.37, "end": 961.57, "word": " made", "probability": 0.65625}, {"start": 961.57, "end": 961.67, "word": " a", "probability": 0.9052734375}, {"start": 961.67, "end": 961.93, "word": " Whatsapp", "probability": 0.6280517578125}, {"start": 961.93, "end": 962.35, "word": " poster,", "probability": 0.763671875}, {"start": 962.59, "end": 962.79, "word": " but", "probability": 0.9208984375}, {"start": 962.79, "end": 963.13, "word": " when", "probability": 0.80419921875}, {"start": 963.13, "end": 963.25, "word": " he", "probability": 0.8271484375}, {"start": 963.25, "end": 963.41, "word": " gets", "probability": 0.346923828125}, {"start": 963.41, "end": 963.59, "word": " the", "probability": 0.8408203125}, {"start": 963.59, "end": 964.01, "word": " post,", "probability": 0.9033203125}], "temperature": 1.0}, {"id": 41, "seek": 99402, "start": 964.96, "end": 994.02, "text": " Facebook. So if I run it, I will find that both of them sent it to Facebook. And the mistake is that I have Facebook in the social media poster. Did you find that it is supposed to be that if I download the poster through WhatsApp poster, WhatsApp connector appears here. And if I download it through Facebook, this line is supposed to differ. It differs based on the", "tokens": [4384, 13, 407, 498, 286, 1190, 309, 11, 286, 486, 915, 300, 1293, 295, 552, 2279, 309, 281, 4384, 13, 400, 264, 6146, 307, 300, 286, 362, 4384, 294, 264, 2093, 3021, 17171, 13, 2589, 291, 915, 300, 309, 307, 3442, 281, 312, 300, 498, 286, 5484, 264, 2183, 260, 807, 30513, 17171, 11, 30513, 19127, 7038, 510, 13, 400, 498, 286, 5484, 309, 807, 4384, 11, 341, 1622, 307, 3442, 281, 743, 13, 467, 37761, 2361, 322, 264], "avg_logprob": -0.615234362334013, "compression_ratio": 1.803921568627451, "no_speech_prob": 0.0001093149185180664, "words": [{"start": 964.96, "end": 965.56, "word": " Facebook.", "probability": 0.10302734375}, {"start": 965.9, "end": 966.12, "word": " So", "probability": 0.34716796875}, {"start": 966.12, "end": 966.24, "word": " if", "probability": 0.724609375}, {"start": 966.24, "end": 966.34, "word": " I", "probability": 0.8564453125}, {"start": 966.34, "end": 966.78, "word": " run", "probability": 0.49609375}, {"start": 966.78, "end": 966.92, "word": " it,", "probability": 0.30126953125}, {"start": 967.0, "end": 967.16, "word": " I", "probability": 0.43603515625}, {"start": 967.16, "end": 967.16, "word": " will", "probability": 0.54736328125}, {"start": 967.16, "end": 967.46, "word": " find", "probability": 0.54541015625}, {"start": 967.46, "end": 968.54, "word": " that", "probability": 0.6572265625}, {"start": 968.54, "end": 969.08, "word": " both", "probability": 0.7294921875}, {"start": 969.08, "end": 969.14, "word": " of", "probability": 0.282958984375}, {"start": 969.14, "end": 970.08, "word": " them", "probability": 0.88720703125}, {"start": 970.08, "end": 970.34, "word": " sent", "probability": 0.36328125}, {"start": 970.34, "end": 970.48, "word": " it", "probability": 0.1917724609375}, {"start": 970.48, "end": 970.62, "word": " to", "probability": 0.73095703125}, {"start": 970.62, "end": 971.62, "word": " Facebook.", "probability": 0.7470703125}, {"start": 971.8, "end": 972.02, "word": " And", "probability": 0.55322265625}, {"start": 972.02, "end": 972.12, "word": " the", "probability": 0.52587890625}, {"start": 972.12, "end": 972.38, "word": " mistake", "probability": 0.41845703125}, {"start": 972.38, "end": 972.66, "word": " is", "probability": 0.744140625}, {"start": 972.66, "end": 973.04, "word": " that", "probability": 0.83056640625}, {"start": 973.04, "end": 973.18, "word": " I", "probability": 0.2152099609375}, {"start": 973.18, "end": 973.18, "word": " have", "probability": 0.7587890625}, {"start": 973.18, "end": 973.18, "word": " Facebook", "probability": 0.6005859375}, {"start": 973.18, "end": 973.18, "word": " in", "probability": 0.36474609375}, {"start": 973.18, "end": 973.28, "word": " the", "probability": 0.423583984375}, {"start": 973.28, "end": 973.54, "word": " social", "probability": 0.7666015625}, {"start": 973.54, "end": 973.92, "word": " media", "probability": 0.900390625}, {"start": 973.92, "end": 974.42, "word": " poster.", "probability": 0.62255859375}, {"start": 976.86, "end": 977.46, "word": " Did", "probability": 0.262451171875}, {"start": 977.46, "end": 977.6, "word": " you", "probability": 0.951171875}, {"start": 977.6, "end": 977.6, "word": " find", "probability": 0.453369140625}, {"start": 977.6, "end": 977.72, "word": " that", "probability": 0.68017578125}, {"start": 977.72, "end": 977.8, "word": " it", "probability": 0.56298828125}, {"start": 977.8, "end": 977.8, "word": " is", "probability": 0.5517578125}, {"start": 977.8, "end": 978.1, "word": " supposed", "probability": 0.82861328125}, {"start": 978.1, "end": 978.64, "word": " to", "probability": 0.8203125}, {"start": 978.64, "end": 978.64, "word": " be", "probability": 0.41796875}, {"start": 978.64, "end": 978.7, "word": " that", "probability": 0.158935546875}, {"start": 978.7, "end": 980.68, "word": " if", "probability": 0.587890625}, {"start": 980.68, "end": 980.92, "word": " I", "probability": 0.94970703125}, {"start": 980.92, "end": 981.22, "word": " download", "probability": 0.137939453125}, {"start": 981.22, "end": 981.54, "word": " the", "probability": 0.79833984375}, {"start": 981.54, "end": 981.9, "word": " poster", "probability": 0.613037109375}, {"start": 981.9, "end": 982.18, "word": " through", "probability": 0.55029296875}, {"start": 982.18, "end": 982.62, "word": " WhatsApp", "probability": 0.61962890625}, {"start": 982.62, "end": 983.2, "word": " poster,", "probability": 0.52734375}, {"start": 984.38, "end": 985.92, "word": " WhatsApp", "probability": 0.58203125}, {"start": 985.92, "end": 986.52, "word": " connector", "probability": 0.485107421875}, {"start": 986.52, "end": 986.52, "word": " appears", "probability": 0.212646484375}, {"start": 986.52, "end": 986.52, "word": " here.", "probability": 0.7490234375}, {"start": 986.82, "end": 987.14, "word": " And", "probability": 0.5751953125}, {"start": 987.14, "end": 987.26, "word": " if", "probability": 0.9384765625}, {"start": 987.26, "end": 987.4, "word": " I", "probability": 0.7919921875}, {"start": 987.4, "end": 987.52, "word": " download", "probability": 0.87158203125}, {"start": 987.52, "end": 987.64, "word": " it", "probability": 0.78466796875}, {"start": 987.64, "end": 987.88, "word": " through", "probability": 0.8623046875}, {"start": 987.88, "end": 988.34, "word": " Facebook,", "probability": 0.81591796875}, {"start": 988.6, "end": 989.12, "word": " this", "probability": 0.226318359375}, {"start": 989.12, "end": 989.6, "word": " line", "probability": 0.6904296875}, {"start": 989.6, "end": 989.7, "word": " is", "probability": 0.463623046875}, {"start": 989.7, "end": 989.9, "word": " supposed", "probability": 0.9052734375}, {"start": 989.9, "end": 990.0, "word": " to", "probability": 0.9697265625}, {"start": 990.0, "end": 990.46, "word": " differ.", "probability": 0.422119140625}, {"start": 991.36, "end": 991.96, "word": " It", "probability": 0.7080078125}, {"start": 991.96, "end": 992.32, "word": " differs", "probability": 0.73583984375}, {"start": 992.32, "end": 992.64, "word": " based", "probability": 0.5439453125}, {"start": 992.64, "end": 992.94, "word": " on", "probability": 0.9501953125}, {"start": 992.94, "end": 994.02, "word": " the", "probability": 0.52001953125}], "temperature": 1.0}, {"id": 42, "seek": 101999, "start": 994.27, "end": 1019.99, "text": "I am the main class that is called by a method How can I solve this problem? Did you find this for new? The problem is in this new, right? Did you find that we were happy inside new new? No, did you find that this new has problems? In the factory, it was causing problems, that's why we took it and put it inside the factory class At least, we change from inside the factory, right? Now, this needs to remove new", "tokens": [40, 669, 264, 2135, 1508, 300, 307, 1219, 538, 257, 3170, 1012, 393, 286, 5039, 341, 1154, 30, 2589, 291, 915, 341, 337, 777, 30, 440, 1154, 307, 294, 341, 777, 11, 558, 30, 2589, 291, 915, 300, 321, 645, 2055, 1854, 777, 777, 30, 883, 11, 630, 291, 915, 300, 341, 777, 575, 2740, 30, 682, 264, 9265, 11, 309, 390, 9853, 2740, 11, 300, 311, 983, 321, 1890, 309, 293, 829, 309, 1854, 264, 9265, 1508, 1711, 1935, 11, 321, 1319, 490, 1854, 264, 9265, 11, 558, 30, 823, 11, 341, 2203, 281, 4159, 777], "avg_logprob": -0.6147959402629307, "compression_ratio": 1.8475336322869955, "no_speech_prob": 2.2649765014648438e-06, "words": [{"start": 994.27, "end": 994.55, "word": "I", "probability": 0.56298828125}, {"start": 994.55, "end": 994.61, "word": " am", "probability": 0.4765625}, {"start": 994.61, "end": 994.71, "word": " the", "probability": 0.41796875}, {"start": 994.71, "end": 994.85, "word": " main", "probability": 0.38916015625}, {"start": 994.85, "end": 995.17, "word": " class", "probability": 0.95751953125}, {"start": 995.17, "end": 995.27, "word": " that", "probability": 0.58984375}, {"start": 995.27, "end": 995.39, "word": " is", "probability": 0.2025146484375}, {"start": 995.39, "end": 995.57, "word": " called", "probability": 0.2396240234375}, {"start": 995.57, "end": 995.73, "word": " by", "probability": 0.4599609375}, {"start": 995.73, "end": 995.83, "word": " a", "probability": 0.1810302734375}, {"start": 995.83, "end": 996.05, "word": " method", "probability": 0.3515625}, {"start": 996.05, "end": 996.37, "word": " How", "probability": 0.201904296875}, {"start": 996.37, "end": 996.61, "word": " can", "probability": 0.3125}, {"start": 996.61, "end": 996.67, "word": " I", "probability": 0.77978515625}, {"start": 996.67, "end": 996.83, "word": " solve", "probability": 0.6953125}, {"start": 996.83, "end": 996.95, "word": " this", "probability": 0.8955078125}, {"start": 996.95, "end": 997.27, "word": " problem?", "probability": 0.7724609375}, {"start": 997.79, "end": 997.95, "word": " Did", "probability": 0.264892578125}, {"start": 997.95, "end": 998.11, "word": " you", "probability": 0.791015625}, {"start": 998.11, "end": 998.11, "word": " find", "probability": 0.548828125}, {"start": 998.11, "end": 998.41, "word": " this", "probability": 0.287841796875}, {"start": 998.41, "end": 998.55, "word": " for", "probability": 0.1334228515625}, {"start": 998.55, "end": 998.85, "word": " new?", "probability": 0.5849609375}, {"start": 1000.27, "end": 1000.71, "word": " The", "probability": 0.5146484375}, {"start": 1000.71, "end": 1000.93, "word": " problem", "probability": 0.84033203125}, {"start": 1000.93, "end": 1001.05, "word": " is", "probability": 0.763671875}, {"start": 1001.05, "end": 1001.13, "word": " in", "probability": 0.58251953125}, {"start": 1001.13, "end": 1001.23, "word": " this", "probability": 0.26708984375}, {"start": 1001.23, "end": 1001.43, "word": " new,", "probability": 0.876953125}, {"start": 1001.69, "end": 1002.21, "word": " right?", "probability": 0.72509765625}, {"start": 1002.89, "end": 1003.11, "word": " Did", "probability": 0.55029296875}, {"start": 1003.11, "end": 1003.11, "word": " you", "probability": 0.93017578125}, {"start": 1003.11, "end": 1003.25, "word": " find", "probability": 0.8076171875}, {"start": 1003.25, "end": 1003.41, "word": " that", "probability": 0.232421875}, {"start": 1003.41, "end": 1003.49, "word": " we", "probability": 0.304931640625}, {"start": 1003.49, "end": 1003.71, "word": " were", "probability": 0.459228515625}, {"start": 1003.71, "end": 1004.17, "word": " happy", "probability": 0.7548828125}, {"start": 1004.17, "end": 1004.41, "word": " inside", "probability": 0.223876953125}, {"start": 1004.41, "end": 1004.69, "word": " new", "probability": 0.65478515625}, {"start": 1004.69, "end": 1004.99, "word": " new?", "probability": 0.389892578125}, {"start": 1005.11, "end": 1005.25, "word": " No,", "probability": 0.7080078125}, {"start": 1005.31, "end": 1005.45, "word": " did", "probability": 0.6640625}, {"start": 1005.45, "end": 1005.45, "word": " you", "probability": 0.962890625}, {"start": 1005.45, "end": 1005.57, "word": " find", "probability": 0.86962890625}, {"start": 1005.57, "end": 1005.71, "word": " that", "probability": 0.2666015625}, {"start": 1005.71, "end": 1005.75, "word": " this", "probability": 0.56689453125}, {"start": 1005.75, "end": 1005.91, "word": " new", "probability": 0.837890625}, {"start": 1005.91, "end": 1006.53, "word": " has", "probability": 0.383544921875}, {"start": 1006.53, "end": 1006.97, "word": " problems?", "probability": 0.6953125}, {"start": 1007.17, "end": 1007.41, "word": " In", "probability": 0.515625}, {"start": 1007.41, "end": 1008.43, "word": " the", "probability": 0.482666015625}, {"start": 1008.43, "end": 1008.87, "word": " factory,", "probability": 0.94677734375}, {"start": 1009.63, "end": 1010.81, "word": " it", "probability": 0.497802734375}, {"start": 1010.81, "end": 1010.85, "word": " was", "probability": 0.358642578125}, {"start": 1010.85, "end": 1011.07, "word": " causing", "probability": 0.331787109375}, {"start": 1011.07, "end": 1011.33, "word": " problems,", "probability": 0.5576171875}, {"start": 1011.37, "end": 1011.51, "word": " that's", "probability": 0.5235595703125}, {"start": 1011.51, "end": 1011.51, "word": " why", "probability": 0.92431640625}, {"start": 1011.51, "end": 1011.67, "word": " we", "probability": 0.9052734375}, {"start": 1011.67, "end": 1011.83, "word": " took", "probability": 0.298583984375}, {"start": 1011.83, "end": 1011.99, "word": " it", "probability": 0.87744140625}, {"start": 1011.99, "end": 1012.03, "word": " and", "probability": 0.876953125}, {"start": 1012.03, "end": 1012.25, "word": " put", "probability": 0.7587890625}, {"start": 1012.25, "end": 1012.45, "word": " it", "probability": 0.91845703125}, {"start": 1012.45, "end": 1012.71, "word": " inside", "probability": 0.76708984375}, {"start": 1012.71, "end": 1013.67, "word": " the", "probability": 0.80712890625}, {"start": 1013.67, "end": 1014.05, "word": " factory", "probability": 0.93701171875}, {"start": 1014.05, "end": 1014.59, "word": " class", "probability": 0.95361328125}, {"start": 1014.59, "end": 1014.83, "word": " At", "probability": 0.73974609375}, {"start": 1014.83, "end": 1015.39, "word": " least,", "probability": 0.95263671875}, {"start": 1015.69, "end": 1015.79, "word": " we", "probability": 0.85986328125}, {"start": 1015.79, "end": 1016.05, "word": " change", "probability": 0.394775390625}, {"start": 1016.05, "end": 1016.41, "word": " from", "probability": 0.157958984375}, {"start": 1016.41, "end": 1017.29, "word": " inside", "probability": 0.72998046875}, {"start": 1017.29, "end": 1017.45, "word": " the", "probability": 0.83935546875}, {"start": 1017.45, "end": 1017.79, "word": " factory,", "probability": 0.93798828125}, {"start": 1017.89, "end": 1018.25, "word": " right?", "probability": 0.26904296875}, {"start": 1018.65, "end": 1018.99, "word": " Now,", "probability": 0.45947265625}, {"start": 1019.23, "end": 1019.37, "word": " this", "probability": 0.478515625}, {"start": 1019.37, "end": 1019.57, "word": " needs", "probability": 0.332275390625}, {"start": 1019.57, "end": 1019.61, "word": " to", "probability": 0.9267578125}, {"start": 1019.61, "end": 1019.75, "word": " remove", "probability": 0.5712890625}, {"start": 1019.75, "end": 1019.99, "word": " new", "probability": 0.74169921875}], "temperature": 1.0}, {"id": 43, "seek": 104821, "start": 1022.27, "end": 1048.21, "text": " Ok? What do I replace it with? Look with me and you will understand. We come down here in the same class, superclass. We make public abstract social media connector create connector Because this is an abstract method. Does it have implementation? No. Its name is create connector. What does it return?", "tokens": [3477, 30, 708, 360, 286, 7406, 309, 365, 30, 2053, 365, 385, 293, 291, 486, 1223, 13, 492, 808, 760, 510, 294, 264, 912, 1508, 11, 1687, 11665, 13, 492, 652, 1908, 12649, 2093, 3021, 19127, 1884, 19127, 1436, 341, 307, 364, 12649, 3170, 13, 4402, 309, 362, 11420, 30, 883, 13, 6953, 1315, 307, 1884, 19127, 13, 708, 775, 309, 2736, 30], "avg_logprob": -0.4584961049258709, "compression_ratio": 1.5408163265306123, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1022.27, "end": 1022.55, "word": " Ok?", "probability": 0.139892578125}, {"start": 1022.75, "end": 1023.01, "word": " What", "probability": 0.485107421875}, {"start": 1023.01, "end": 1023.05, "word": " do", "probability": 0.26611328125}, {"start": 1023.05, "end": 1023.11, "word": " I", "probability": 0.84130859375}, {"start": 1023.11, "end": 1023.37, "word": " replace", "probability": 0.3544921875}, {"start": 1023.37, "end": 1023.73, "word": " it", "probability": 0.6611328125}, {"start": 1023.73, "end": 1023.73, "word": " with?", "probability": 0.72216796875}, {"start": 1023.79, "end": 1023.97, "word": " Look", "probability": 0.31494140625}, {"start": 1023.97, "end": 1024.15, "word": " with", "probability": 0.394775390625}, {"start": 1024.15, "end": 1024.33, "word": " me", "probability": 0.9599609375}, {"start": 1024.33, "end": 1024.41, "word": " and", "probability": 0.703125}, {"start": 1024.41, "end": 1024.51, "word": " you", "probability": 0.55029296875}, {"start": 1024.51, "end": 1024.51, "word": " will", "probability": 0.55029296875}, {"start": 1024.51, "end": 1024.97, "word": " understand.", "probability": 0.338623046875}, {"start": 1025.31, "end": 1025.71, "word": " We", "probability": 0.5673828125}, {"start": 1025.71, "end": 1025.85, "word": " come", "probability": 0.2841796875}, {"start": 1025.85, "end": 1026.09, "word": " down", "probability": 0.5146484375}, {"start": 1026.09, "end": 1026.39, "word": " here", "probability": 0.78662109375}, {"start": 1026.39, "end": 1026.53, "word": " in", "probability": 0.65234375}, {"start": 1026.53, "end": 1026.73, "word": " the", "probability": 0.85302734375}, {"start": 1026.73, "end": 1026.73, "word": " same", "probability": 0.8759765625}, {"start": 1026.73, "end": 1027.09, "word": " class,", "probability": 0.92919921875}, {"start": 1027.17, "end": 1027.85, "word": " superclass.", "probability": 0.4964599609375}, {"start": 1028.41, "end": 1028.69, "word": " We", "probability": 0.87109375}, {"start": 1028.69, "end": 1028.89, "word": " make", "probability": 0.482666015625}, {"start": 1028.89, "end": 1029.49, "word": " public", "probability": 0.64892578125}, {"start": 1029.49, "end": 1030.65, "word": " abstract", "probability": 0.7578125}, {"start": 1030.65, "end": 1033.05, "word": " social", "probability": 0.9189453125}, {"start": 1033.05, "end": 1033.67, "word": " media", "probability": 0.80419921875}, {"start": 1033.67, "end": 1035.65, "word": " connector", "probability": 0.89404296875}, {"start": 1035.65, "end": 1037.93, "word": " create", "probability": 0.48681640625}, {"start": 1037.93, "end": 1040.05, "word": " connector", "probability": 0.890625}, {"start": 1040.05, "end": 1041.89, "word": " Because", "probability": 0.46142578125}, {"start": 1041.89, "end": 1042.13, "word": " this", "probability": 0.837890625}, {"start": 1042.13, "end": 1042.19, "word": " is", "probability": 0.90283203125}, {"start": 1042.19, "end": 1042.25, "word": " an", "probability": 0.63232421875}, {"start": 1042.25, "end": 1042.49, "word": " abstract", "probability": 0.85205078125}, {"start": 1042.49, "end": 1042.97, "word": " method.", "probability": 0.9404296875}, {"start": 1043.05, "end": 1043.15, "word": " Does", "probability": 0.583984375}, {"start": 1043.15, "end": 1043.23, "word": " it", "probability": 0.93994140625}, {"start": 1043.23, "end": 1043.23, "word": " have", "probability": 0.88671875}, {"start": 1043.23, "end": 1043.81, "word": " implementation?", "probability": 0.6923828125}, {"start": 1044.43, "end": 1044.95, "word": " No.", "probability": 0.83154296875}, {"start": 1045.31, "end": 1045.47, "word": " Its", "probability": 0.5732421875}, {"start": 1045.47, "end": 1045.71, "word": " name", "probability": 0.8955078125}, {"start": 1045.71, "end": 1046.79, "word": " is", "probability": 0.90380859375}, {"start": 1046.79, "end": 1047.17, "word": " create", "probability": 0.83251953125}, {"start": 1047.17, "end": 1047.63, "word": " connector.", "probability": 0.9111328125}, {"start": 1047.73, "end": 1047.85, "word": " What", "probability": 0.8056640625}, {"start": 1047.85, "end": 1047.85, "word": " does", "probability": 0.63134765625}, {"start": 1047.85, "end": 1048.03, "word": " it", "probability": 0.85400390625}, {"start": 1048.03, "end": 1048.21, "word": " return?", "probability": 0.50927734375}], "temperature": 1.0}, {"id": 44, "seek": 107777, "start": 1049.67, "end": 1077.77, "text": " Social Media Connector Which can be Facebook Connector, Whatsapp, Twitter and others Now here I say Instead of saying Facebook Connector Social Media Connector And say here Create Connector That's it, we solved the problem So how will this solve the problem? Now", "tokens": [9909, 14741, 11653, 284, 3013, 393, 312, 4384, 11653, 284, 11, 22051, 1746, 11, 5794, 293, 2357, 823, 510, 286, 584, 7156, 295, 1566, 4384, 11653, 284, 9909, 14741, 11653, 284, 400, 584, 510, 20248, 11653, 284, 663, 311, 309, 11, 321, 13041, 264, 1154, 407, 577, 486, 341, 5039, 264, 1154, 30, 823], "avg_logprob": -0.4988636645403775, "compression_ratio": 1.6540880503144655, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 1049.67, "end": 1050.11, "word": " Social", "probability": 0.25830078125}, {"start": 1050.11, "end": 1050.37, "word": " Media", "probability": 0.60205078125}, {"start": 1050.37, "end": 1050.87, "word": " Connector", "probability": 0.914306640625}, {"start": 1050.87, "end": 1051.25, "word": " Which", "probability": 0.1468505859375}, {"start": 1051.25, "end": 1051.51, "word": " can", "probability": 0.47119140625}, {"start": 1051.51, "end": 1051.75, "word": " be", "probability": 0.90576171875}, {"start": 1051.75, "end": 1052.17, "word": " Facebook", "probability": 0.5576171875}, {"start": 1052.17, "end": 1052.75, "word": " Connector,", "probability": 0.75634765625}, {"start": 1052.81, "end": 1053.23, "word": " Whatsapp,", "probability": 0.721923828125}, {"start": 1053.31, "end": 1053.63, "word": " Twitter", "probability": 0.84130859375}, {"start": 1053.63, "end": 1053.75, "word": " and", "probability": 0.430419921875}, {"start": 1053.75, "end": 1053.99, "word": " others", "probability": 0.316650390625}, {"start": 1053.99, "end": 1054.71, "word": " Now", "probability": 0.38232421875}, {"start": 1054.71, "end": 1055.05, "word": " here", "probability": 0.6435546875}, {"start": 1055.05, "end": 1055.69, "word": " I", "probability": 0.358154296875}, {"start": 1055.69, "end": 1056.05, "word": " say", "probability": 0.378662109375}, {"start": 1056.05, "end": 1056.77, "word": " Instead", "probability": 0.255615234375}, {"start": 1056.77, "end": 1056.89, "word": " of", "probability": 0.9658203125}, {"start": 1056.89, "end": 1057.17, "word": " saying", "probability": 0.59765625}, {"start": 1057.17, "end": 1057.91, "word": " Facebook", "probability": 0.66162109375}, {"start": 1057.91, "end": 1058.65, "word": " Connector", "probability": 0.86474609375}, {"start": 1058.65, "end": 1059.75, "word": " Social", "probability": 0.393798828125}, {"start": 1059.75, "end": 1060.97, "word": " Media", "probability": 0.912109375}, {"start": 1060.97, "end": 1062.91, "word": " Connector", "probability": 0.90478515625}, {"start": 1062.91, "end": 1063.87, "word": " And", "probability": 0.77587890625}, {"start": 1063.87, "end": 1064.07, "word": " say", "probability": 0.42236328125}, {"start": 1064.07, "end": 1064.25, "word": " here", "probability": 0.69580078125}, {"start": 1064.25, "end": 1064.95, "word": " Create", "probability": 0.476806640625}, {"start": 1064.95, "end": 1072.03, "word": " Connector", "probability": 0.771240234375}, {"start": 1072.03, "end": 1072.75, "word": " That's", "probability": 0.73388671875}, {"start": 1072.75, "end": 1072.83, "word": " it,", "probability": 0.8291015625}, {"start": 1072.93, "end": 1073.39, "word": " we", "probability": 0.63623046875}, {"start": 1073.39, "end": 1073.57, "word": " solved", "probability": 0.382080078125}, {"start": 1073.57, "end": 1073.79, "word": " the", "probability": 0.8623046875}, {"start": 1073.79, "end": 1074.05, "word": " problem", "probability": 0.83837890625}, {"start": 1074.05, "end": 1075.11, "word": " So", "probability": 0.1988525390625}, {"start": 1075.11, "end": 1075.31, "word": " how", "probability": 0.71923828125}, {"start": 1075.31, "end": 1075.43, "word": " will", "probability": 0.267822265625}, {"start": 1075.43, "end": 1075.55, "word": " this", "probability": 0.669921875}, {"start": 1075.55, "end": 1075.79, "word": " solve", "probability": 0.7978515625}, {"start": 1075.79, "end": 1075.91, "word": " the", "probability": 0.9072265625}, {"start": 1075.91, "end": 1076.19, "word": " problem?", "probability": 0.85009765625}, {"start": 1077.09, "end": 1077.77, "word": " Now", "probability": 0.89013671875}], "temperature": 1.0}, {"id": 45, "seek": 110749, "start": 1079.15, "end": 1107.49, "text": " Instead of saying new, the original object, which was this new, the problem in which it is linked to what, in a certain class, you still say create connector, and create connector is here, it is present below. Well, they will say, how will it invoke an abstract method? Okay? What is this abstract method? Who will implement it? The subclasses. But notice that the method was invoked from the superclass. Okay? Of course, it will not invoke this. What will it invoke? What is present in the subclass.", "tokens": [7156, 295, 1566, 777, 11, 264, 3380, 2657, 11, 597, 390, 341, 777, 11, 264, 1154, 294, 597, 309, 307, 9408, 281, 437, 11, 294, 257, 1629, 1508, 11, 291, 920, 584, 1884, 19127, 11, 293, 1884, 19127, 307, 510, 11, 309, 307, 1974, 2507, 13, 1042, 11, 436, 486, 584, 11, 577, 486, 309, 41117, 364, 12649, 3170, 30, 1033, 30, 708, 307, 341, 12649, 3170, 30, 2102, 486, 4445, 309, 30, 440, 1422, 11665, 279, 13, 583, 3449, 300, 264, 3170, 390, 1048, 9511, 490, 264, 1687, 11665, 13, 1033, 30, 2720, 1164, 11, 309, 486, 406, 41117, 341, 13, 708, 486, 309, 41117, 30, 708, 307, 1974, 294, 264, 1422, 11665, 13], "avg_logprob": -0.5624999722530102, "compression_ratio": 1.8555555555555556, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1079.15, "end": 1079.45, "word": " Instead", "probability": 0.2298583984375}, {"start": 1079.45, "end": 1079.55, "word": " of", "probability": 0.9580078125}, {"start": 1079.55, "end": 1079.97, "word": " saying", "probability": 0.55126953125}, {"start": 1079.97, "end": 1080.37, "word": " new,", "probability": 0.390625}, {"start": 1080.71, "end": 1080.95, "word": " the", "probability": 0.383544921875}, {"start": 1080.95, "end": 1080.95, "word": " original", "probability": 0.2568359375}, {"start": 1080.95, "end": 1081.47, "word": " object,", "probability": 0.93701171875}, {"start": 1081.81, "end": 1081.97, "word": " which", "probability": 0.52490234375}, {"start": 1081.97, "end": 1082.13, "word": " was", "probability": 0.3291015625}, {"start": 1082.13, "end": 1082.41, "word": " this", "probability": 0.375244140625}, {"start": 1082.41, "end": 1082.71, "word": " new,", "probability": 0.7607421875}, {"start": 1082.83, "end": 1082.93, "word": " the", "probability": 0.426025390625}, {"start": 1082.93, "end": 1083.07, "word": " problem", "probability": 0.6689453125}, {"start": 1083.07, "end": 1083.29, "word": " in", "probability": 0.1917724609375}, {"start": 1083.29, "end": 1083.31, "word": " which", "probability": 0.429443359375}, {"start": 1083.31, "end": 1083.43, "word": " it", "probability": 0.4443359375}, {"start": 1083.43, "end": 1083.43, "word": " is", "probability": 0.26953125}, {"start": 1083.43, "end": 1083.57, "word": " linked", "probability": 0.2734375}, {"start": 1083.57, "end": 1083.87, "word": " to", "probability": 0.77392578125}, {"start": 1083.87, "end": 1084.15, "word": " what,", "probability": 0.5419921875}, {"start": 1084.25, "end": 1084.63, "word": " in", "probability": 0.41552734375}, {"start": 1084.63, "end": 1084.71, "word": " a", "probability": 0.796875}, {"start": 1084.71, "end": 1084.73, "word": " certain", "probability": 0.421142578125}, {"start": 1084.73, "end": 1085.09, "word": " class,", "probability": 0.94970703125}, {"start": 1085.95, "end": 1086.25, "word": " you", "probability": 0.348876953125}, {"start": 1086.25, "end": 1086.41, "word": " still", "probability": 0.279296875}, {"start": 1086.41, "end": 1086.67, "word": " say", "probability": 0.83740234375}, {"start": 1086.67, "end": 1087.07, "word": " create", "probability": 0.76708984375}, {"start": 1087.07, "end": 1087.73, "word": " connector,", "probability": 0.65966796875}, {"start": 1088.11, "end": 1088.33, "word": " and", "probability": 0.755859375}, {"start": 1088.33, "end": 1088.59, "word": " create", "probability": 0.78173828125}, {"start": 1088.59, "end": 1089.09, "word": " connector", "probability": 0.8994140625}, {"start": 1089.09, "end": 1089.21, "word": " is", "probability": 0.8076171875}, {"start": 1089.21, "end": 1089.41, "word": " here,", "probability": 0.1260986328125}, {"start": 1089.45, "end": 1089.53, "word": " it", "probability": 0.439453125}, {"start": 1089.53, "end": 1089.53, "word": " is", "probability": 0.70751953125}, {"start": 1089.53, "end": 1089.73, "word": " present", "probability": 0.247802734375}, {"start": 1089.73, "end": 1090.05, "word": " below.", "probability": 0.60498046875}, {"start": 1090.75, "end": 1090.97, "word": " Well,", "probability": 0.2078857421875}, {"start": 1090.99, "end": 1091.11, "word": " they", "probability": 0.1612548828125}, {"start": 1091.11, "end": 1091.15, "word": " will", "probability": 0.6220703125}, {"start": 1091.15, "end": 1091.31, "word": " say,", "probability": 0.6318359375}, {"start": 1091.45, "end": 1091.71, "word": " how", "probability": 0.7509765625}, {"start": 1091.71, "end": 1091.89, "word": " will", "probability": 0.4755859375}, {"start": 1091.89, "end": 1092.23, "word": " it", "probability": 0.372802734375}, {"start": 1092.23, "end": 1092.23, "word": " invoke", "probability": 0.32373046875}, {"start": 1092.23, "end": 1092.43, "word": " an", "probability": 0.22119140625}, {"start": 1092.43, "end": 1092.87, "word": " abstract", "probability": 0.83837890625}, {"start": 1092.87, "end": 1093.19, "word": " method?", "probability": 0.939453125}, {"start": 1094.21, "end": 1094.33, "word": " Okay?", "probability": 0.111328125}, {"start": 1094.81, "end": 1094.95, "word": " What", "probability": 0.186767578125}, {"start": 1094.95, "end": 1095.17, "word": " is", "probability": 0.828125}, {"start": 1095.17, "end": 1095.27, "word": " this", "probability": 0.67333984375}, {"start": 1095.27, "end": 1095.67, "word": " abstract", "probability": 0.54345703125}, {"start": 1095.67, "end": 1095.69, "word": " method?", "probability": 0.9580078125}, {"start": 1095.95, "end": 1096.09, "word": " Who", "probability": 0.833984375}, {"start": 1096.09, "end": 1096.23, "word": " will", "probability": 0.72998046875}, {"start": 1096.23, "end": 1096.67, "word": " implement", "probability": 0.75830078125}, {"start": 1096.67, "end": 1097.11, "word": " it?", "probability": 0.95361328125}, {"start": 1097.47, "end": 1097.67, "word": " The", "probability": 0.31884765625}, {"start": 1097.67, "end": 1098.41, "word": " subclasses.", "probability": 0.8785807291666666}, {"start": 1098.51, "end": 1098.71, "word": " But", "probability": 0.8740234375}, {"start": 1098.71, "end": 1099.03, "word": " notice", "probability": 0.76025390625}, {"start": 1099.03, "end": 1099.27, "word": " that", "probability": 0.91943359375}, {"start": 1099.27, "end": 1099.55, "word": " the", "probability": 0.87060546875}, {"start": 1099.55, "end": 1099.83, "word": " method", "probability": 0.955078125}, {"start": 1099.83, "end": 1099.99, "word": " was", "probability": 0.509765625}, {"start": 1099.99, "end": 1100.27, "word": " invoked", "probability": 0.60003662109375}, {"start": 1100.27, "end": 1100.55, "word": " from", "probability": 0.73046875}, {"start": 1100.55, "end": 1100.69, "word": " the", "probability": 0.8955078125}, {"start": 1100.69, "end": 1101.29, "word": " superclass.", "probability": 0.910400390625}, {"start": 1102.37, "end": 1102.61, "word": " Okay?", "probability": 0.5283203125}, {"start": 1103.17, "end": 1103.65, "word": " Of", "probability": 0.8095703125}, {"start": 1103.65, "end": 1103.69, "word": " course,", "probability": 0.95751953125}, {"start": 1103.73, "end": 1103.87, "word": " it", "probability": 0.64599609375}, {"start": 1103.87, "end": 1104.11, "word": " will", "probability": 0.76171875}, {"start": 1104.11, "end": 1104.11, "word": " not", "probability": 0.94384765625}, {"start": 1104.11, "end": 1104.51, "word": " invoke", "probability": 0.939453125}, {"start": 1104.51, "end": 1104.81, "word": " this.", "probability": 0.87744140625}, {"start": 1104.83, "end": 1104.95, "word": " What", "probability": 0.2474365234375}, {"start": 1104.95, "end": 1104.95, "word": " will", "probability": 0.80810546875}, {"start": 1104.95, "end": 1105.01, "word": " it", "probability": 0.546875}, {"start": 1105.01, "end": 1105.25, "word": " invoke?", "probability": 0.9580078125}, {"start": 1106.13, "end": 1106.61, "word": " What", "probability": 0.5625}, {"start": 1106.61, "end": 1106.65, "word": " is", "probability": 0.8388671875}, {"start": 1106.65, "end": 1106.87, "word": " present", "probability": 0.71044921875}, {"start": 1106.87, "end": 1106.95, "word": " in", "probability": 0.9404296875}, {"start": 1106.95, "end": 1107.07, "word": " the", "probability": 0.9130859375}, {"start": 1107.07, "end": 1107.49, "word": " subclass.", "probability": 0.956787109375}], "temperature": 1.0}, {"id": 46, "seek": 111909, "start": 1108.26, "end": 1119.1, "text": "What is the idea behind it? The idea is that this code is all common, except for this line. The class is called social media posts and I don't know where it comes from.", "tokens": [3748, 307, 264, 1558, 2261, 309, 30, 440, 1558, 307, 300, 341, 3089, 307, 439, 2689, 11, 3993, 337, 341, 1622, 13, 440, 1508, 307, 1219, 2093, 3021, 12300, 293, 286, 500, 380, 458, 689, 309, 1487, 490, 13], "avg_logprob": -0.6800781235098838, "compression_ratio": 1.344, "no_speech_prob": 1.4901161193847656e-06, "words": [{"start": 1108.26, "end": 1108.7, "word": "What", "probability": 0.15673828125}, {"start": 1108.7, "end": 1108.8, "word": " is", "probability": 0.25537109375}, {"start": 1108.8, "end": 1108.9, "word": " the", "probability": 0.81591796875}, {"start": 1108.9, "end": 1109.14, "word": " idea", "probability": 0.7236328125}, {"start": 1109.14, "end": 1109.46, "word": " behind", "probability": 0.60400390625}, {"start": 1109.46, "end": 1109.46, "word": " it?", "probability": 0.43701171875}, {"start": 1109.86, "end": 1110.38, "word": " The", "probability": 0.65478515625}, {"start": 1110.38, "end": 1110.64, "word": " idea", "probability": 0.8427734375}, {"start": 1110.64, "end": 1110.94, "word": " is", "probability": 0.78173828125}, {"start": 1110.94, "end": 1111.06, "word": " that", "probability": 0.876953125}, {"start": 1111.06, "end": 1111.28, "word": " this", "probability": 0.369384765625}, {"start": 1111.28, "end": 1111.6, "word": " code", "probability": 0.7705078125}, {"start": 1111.6, "end": 1111.88, "word": " is", "probability": 0.830078125}, {"start": 1111.88, "end": 1111.88, "word": " all", "probability": 0.408447265625}, {"start": 1111.88, "end": 1112.24, "word": " common,", "probability": 0.09149169921875}, {"start": 1113.06, "end": 1113.34, "word": " except", "probability": 0.195556640625}, {"start": 1113.34, "end": 1114.3, "word": " for", "probability": 0.347900390625}, {"start": 1114.3, "end": 1114.4, "word": " this", "probability": 0.72509765625}, {"start": 1114.4, "end": 1114.7, "word": " line.", "probability": 0.7607421875}, {"start": 1115.92, "end": 1116.08, "word": " The", "probability": 0.331787109375}, {"start": 1116.08, "end": 1117.0, "word": " class", "probability": 0.39599609375}, {"start": 1117.0, "end": 1117.28, "word": " is", "probability": 0.5986328125}, {"start": 1117.28, "end": 1117.44, "word": " called", "probability": 0.75244140625}, {"start": 1117.44, "end": 1117.72, "word": " social", "probability": 0.59912109375}, {"start": 1117.72, "end": 1117.98, "word": " media", "probability": 0.88134765625}, {"start": 1117.98, "end": 1118.22, "word": " posts", "probability": 0.335693359375}, {"start": 1118.22, "end": 1118.34, "word": " and", "probability": 0.254638671875}, {"start": 1118.34, "end": 1118.42, "word": " I", "probability": 0.329833984375}, {"start": 1118.42, "end": 1118.5, "word": " don't", "probability": 0.82177734375}, {"start": 1118.5, "end": 1118.72, "word": " know", "probability": 0.8671875}, {"start": 1118.72, "end": 1118.88, "word": " where", "probability": 0.359375}, {"start": 1118.88, "end": 1118.98, "word": " it", "probability": 0.40966796875}, {"start": 1118.98, "end": 1119.08, "word": " comes", "probability": 0.254638671875}, {"start": 1119.08, "end": 1119.1, "word": " from.", "probability": 0.880859375}], "temperature": 1.0}, {"id": 47, "seek": 114911, "start": 1120.12, "end": 1149.12, "text": " I don't know, do you want to create a Facebook poster or Whatsapp poster? Who determines it? The subclass determines it. So you say that this different line has to rely on the subclass to do it. How? You provided her with an abstract method, she has to implement it. Because as soon as I gave her this abstract method, Facebook poster and Whatsapp poster collided with each other. She said to me, come on, you want to create a Facebook poster, go and implement it for whom? To create a connector.", "tokens": [286, 500, 380, 458, 11, 360, 291, 528, 281, 1884, 257, 4384, 2183, 260, 420, 22051, 1746, 17171, 30, 2102, 24799, 309, 30, 440, 1422, 11665, 24799, 309, 13, 407, 291, 584, 300, 341, 819, 1622, 575, 281, 10687, 322, 264, 1422, 11665, 281, 360, 309, 13, 1012, 30, 509, 5649, 720, 365, 364, 12649, 3170, 11, 750, 575, 281, 4445, 309, 13, 1436, 382, 2321, 382, 286, 2729, 720, 341, 12649, 3170, 11, 4384, 17171, 293, 22051, 1746, 17171, 1263, 2112, 365, 1184, 661, 13, 1240, 848, 281, 385, 11, 808, 322, 11, 291, 528, 281, 1884, 257, 4384, 17171, 11, 352, 293, 4445, 309, 337, 7101, 30, 1407, 1884, 257, 19127, 13], "avg_logprob": -0.5222826252812924, "compression_ratio": 1.9042145593869733, "no_speech_prob": 0.93896484375, "words": [{"start": 1120.12, "end": 1120.56, "word": " I", "probability": 0.072265625}, {"start": 1120.56, "end": 1121.0, "word": " don't", "probability": 0.77197265625}, {"start": 1121.0, "end": 1121.3, "word": " know,", "probability": 0.81298828125}, {"start": 1121.36, "end": 1121.44, "word": " do", "probability": 0.257568359375}, {"start": 1121.44, "end": 1121.54, "word": " you", "probability": 0.9130859375}, {"start": 1121.54, "end": 1121.54, "word": " want", "probability": 0.791015625}, {"start": 1121.54, "end": 1121.64, "word": " to", "probability": 0.83251953125}, {"start": 1121.64, "end": 1121.8, "word": " create", "probability": 0.66259765625}, {"start": 1121.8, "end": 1121.9, "word": " a", "probability": 0.666015625}, {"start": 1121.9, "end": 1122.18, "word": " Facebook", "probability": 0.5439453125}, {"start": 1122.18, "end": 1122.62, "word": " poster", "probability": 0.550048828125}, {"start": 1122.62, "end": 1122.76, "word": " or", "probability": 0.8115234375}, {"start": 1122.76, "end": 1123.14, "word": " Whatsapp", "probability": 0.6591796875}, {"start": 1123.14, "end": 1123.2, "word": " poster?", "probability": 0.33642578125}, {"start": 1123.38, "end": 1123.6, "word": " Who", "probability": 0.64306640625}, {"start": 1123.6, "end": 1124.0, "word": " determines", "probability": 0.11273193359375}, {"start": 1124.0, "end": 1124.3, "word": " it?", "probability": 0.435791015625}, {"start": 1124.72, "end": 1124.9, "word": " The", "probability": 0.4873046875}, {"start": 1124.9, "end": 1125.24, "word": " subclass", "probability": 0.862548828125}, {"start": 1125.24, "end": 1125.54, "word": " determines", "probability": 0.80322265625}, {"start": 1125.54, "end": 1125.72, "word": " it.", "probability": 0.890625}, {"start": 1125.9, "end": 1125.98, "word": " So", "probability": 0.50830078125}, {"start": 1125.98, "end": 1126.12, "word": " you", "probability": 0.419677734375}, {"start": 1126.12, "end": 1126.3, "word": " say", "probability": 0.71826171875}, {"start": 1126.3, "end": 1126.5, "word": " that", "probability": 0.370849609375}, {"start": 1126.5, "end": 1126.68, "word": " this", "probability": 0.6396484375}, {"start": 1126.68, "end": 1127.4, "word": " different", "probability": 0.316650390625}, {"start": 1127.4, "end": 1127.4, "word": " line", "probability": 0.2183837890625}, {"start": 1127.4, "end": 1127.64, "word": " has", "probability": 0.327392578125}, {"start": 1127.64, "end": 1127.8, "word": " to", "probability": 0.9619140625}, {"start": 1127.8, "end": 1128.08, "word": " rely", "probability": 0.31982421875}, {"start": 1128.08, "end": 1128.24, "word": " on", "probability": 0.93896484375}, {"start": 1128.24, "end": 1128.34, "word": " the", "probability": 0.84716796875}, {"start": 1128.34, "end": 1129.0, "word": " subclass", "probability": 0.94287109375}, {"start": 1129.0, "end": 1129.62, "word": " to", "probability": 0.62353515625}, {"start": 1129.62, "end": 1129.9, "word": " do", "probability": 0.6103515625}, {"start": 1129.9, "end": 1130.2, "word": " it.", "probability": 0.89306640625}, {"start": 1130.38, "end": 1130.82, "word": " How?", "probability": 0.87451171875}, {"start": 1131.38, "end": 1131.48, "word": " You", "probability": 0.62158203125}, {"start": 1131.48, "end": 1131.8, "word": " provided", "probability": 0.64013671875}, {"start": 1131.8, "end": 1132.08, "word": " her", "probability": 0.50146484375}, {"start": 1132.08, "end": 1132.08, "word": " with", "probability": 0.4580078125}, {"start": 1132.08, "end": 1132.16, "word": " an", "probability": 0.3896484375}, {"start": 1132.16, "end": 1132.4, "word": " abstract", "probability": 0.89990234375}, {"start": 1132.4, "end": 1132.88, "word": " method,", "probability": 0.94091796875}, {"start": 1132.94, "end": 1133.12, "word": " she", "probability": 0.58544921875}, {"start": 1133.12, "end": 1133.28, "word": " has", "probability": 0.4287109375}, {"start": 1133.28, "end": 1133.48, "word": " to", "probability": 0.97216796875}, {"start": 1133.48, "end": 1134.58, "word": " implement", "probability": 0.5283203125}, {"start": 1134.58, "end": 1135.1, "word": " it.", "probability": 0.9443359375}, {"start": 1135.4, "end": 1135.64, "word": " Because", "probability": 0.681640625}, {"start": 1135.64, "end": 1135.88, "word": " as", "probability": 0.367919921875}, {"start": 1135.88, "end": 1135.92, "word": " soon", "probability": 0.94775390625}, {"start": 1135.92, "end": 1135.96, "word": " as", "probability": 0.96875}, {"start": 1135.96, "end": 1136.04, "word": " I", "probability": 0.2095947265625}, {"start": 1136.04, "end": 1136.38, "word": " gave", "probability": 0.3330078125}, {"start": 1136.38, "end": 1136.54, "word": " her", "probability": 0.814453125}, {"start": 1136.54, "end": 1136.64, "word": " this", "probability": 0.62744140625}, {"start": 1136.64, "end": 1136.92, "word": " abstract", "probability": 0.8369140625}, {"start": 1136.92, "end": 1137.36, "word": " method,", "probability": 0.9462890625}, {"start": 1137.64, "end": 1139.74, "word": " Facebook", "probability": 0.318115234375}, {"start": 1139.74, "end": 1140.54, "word": " poster", "probability": 0.41357421875}, {"start": 1140.54, "end": 1141.04, "word": " and", "probability": 0.90478515625}, {"start": 1141.04, "end": 1141.44, "word": " Whatsapp", "probability": 0.876220703125}, {"start": 1141.44, "end": 1141.82, "word": " poster", "probability": 0.74462890625}, {"start": 1141.82, "end": 1141.82, "word": " collided", "probability": 0.535400390625}, {"start": 1141.82, "end": 1141.82, "word": " with", "probability": 0.26220703125}, {"start": 1141.82, "end": 1141.82, "word": " each", "probability": 0.72021484375}, {"start": 1141.82, "end": 1141.82, "word": " other.", "probability": 0.89208984375}, {"start": 1141.92, "end": 1142.36, "word": " She", "probability": 0.224853515625}, {"start": 1142.36, "end": 1142.44, "word": " said", "probability": 0.45263671875}, {"start": 1142.44, "end": 1142.58, "word": " to", "probability": 0.35107421875}, {"start": 1142.58, "end": 1142.58, "word": " me,", "probability": 0.87548828125}, {"start": 1142.64, "end": 1142.84, "word": " come", "probability": 0.371337890625}, {"start": 1142.84, "end": 1142.94, "word": " on,", "probability": 0.64111328125}, {"start": 1143.14, "end": 1143.22, "word": " you", "probability": 0.55859375}, {"start": 1143.22, "end": 1143.44, "word": " want", "probability": 0.861328125}, {"start": 1143.44, "end": 1143.56, "word": " to", "probability": 0.96875}, {"start": 1143.56, "end": 1143.74, "word": " create", "probability": 0.454833984375}, {"start": 1143.74, "end": 1143.88, "word": " a", "probability": 0.94970703125}, {"start": 1143.88, "end": 1144.16, "word": " Facebook", "probability": 0.826171875}, {"start": 1144.16, "end": 1144.7, "word": " poster,", "probability": 0.751953125}, {"start": 1145.28, "end": 1145.56, "word": " go", "probability": 0.53759765625}, {"start": 1145.56, "end": 1145.66, "word": " and", "probability": 0.3935546875}, {"start": 1145.66, "end": 1146.18, "word": " implement", "probability": 0.802734375}, {"start": 1146.18, "end": 1146.44, "word": " it", "probability": 0.72216796875}, {"start": 1146.44, "end": 1146.5, "word": " for", "probability": 0.440185546875}, {"start": 1146.5, "end": 1146.7, "word": " whom?", "probability": 0.54443359375}, {"start": 1147.22, "end": 1147.38, "word": " To", "probability": 0.54443359375}, {"start": 1147.38, "end": 1147.92, "word": " create", "probability": 0.7373046875}, {"start": 1147.92, "end": 1148.66, "word": " a", "probability": 0.78125}, {"start": 1148.66, "end": 1149.12, "word": " connector.", "probability": 0.802734375}], "temperature": 1.0}, {"id": 48, "seek": 117934, "start": 1149.81, "end": 1179.35, "text": " Okay, tell me what is the connector that you will use in this class to make a post Okay, so I say return new Facebook connector And the same thing in the WhatsApp poster Return new WhatsApp", "tokens": [1033, 11, 980, 385, 437, 307, 264, 19127, 300, 291, 486, 764, 294, 341, 1508, 281, 652, 257, 2183, 1033, 11, 370, 286, 584, 2736, 777, 4384, 19127, 400, 264, 912, 551, 294, 264, 30513, 17171, 24350, 777, 30513], "avg_logprob": -0.5859375268220901, "compression_ratio": 1.450381679389313, "no_speech_prob": 4.982948303222656e-05, "words": [{"start": 1149.81, "end": 1150.11, "word": " Okay,", "probability": 0.056915283203125}, {"start": 1150.23, "end": 1150.49, "word": " tell", "probability": 0.2335205078125}, {"start": 1150.49, "end": 1150.77, "word": " me", "probability": 0.95166015625}, {"start": 1150.77, "end": 1150.97, "word": " what", "probability": 0.423828125}, {"start": 1150.97, "end": 1150.97, "word": " is", "probability": 0.355224609375}, {"start": 1150.97, "end": 1151.11, "word": " the", "probability": 0.85107421875}, {"start": 1151.11, "end": 1151.53, "word": " connector", "probability": 0.501953125}, {"start": 1151.53, "end": 1152.75, "word": " that", "probability": 0.415283203125}, {"start": 1152.75, "end": 1153.01, "word": " you", "probability": 0.79248046875}, {"start": 1153.01, "end": 1153.01, "word": " will", "probability": 0.55078125}, {"start": 1153.01, "end": 1153.41, "word": " use", "probability": 0.876953125}, {"start": 1153.41, "end": 1153.61, "word": " in", "probability": 0.405517578125}, {"start": 1153.61, "end": 1153.85, "word": " this", "probability": 0.8603515625}, {"start": 1153.85, "end": 1154.13, "word": " class", "probability": 0.89111328125}, {"start": 1154.13, "end": 1154.33, "word": " to", "probability": 0.79638671875}, {"start": 1154.33, "end": 1154.57, "word": " make", "probability": 0.429931640625}, {"start": 1154.57, "end": 1154.71, "word": " a", "probability": 0.472900390625}, {"start": 1154.71, "end": 1154.97, "word": " post", "probability": 0.87646484375}, {"start": 1154.97, "end": 1155.69, "word": " Okay,", "probability": 0.36279296875}, {"start": 1155.79, "end": 1155.85, "word": " so", "probability": 0.50048828125}, {"start": 1155.85, "end": 1155.97, "word": " I", "probability": 0.76416015625}, {"start": 1155.97, "end": 1156.09, "word": " say", "probability": 0.403076171875}, {"start": 1156.09, "end": 1156.75, "word": " return", "probability": 0.41259765625}, {"start": 1156.75, "end": 1157.95, "word": " new", "probability": 0.765625}, {"start": 1157.95, "end": 1158.81, "word": " Facebook", "probability": 0.445556640625}, {"start": 1158.81, "end": 1162.35, "word": " connector", "probability": 0.6103515625}, {"start": 1162.35, "end": 1164.65, "word": " And", "probability": 0.54736328125}, {"start": 1164.65, "end": 1164.87, "word": " the", "probability": 0.68701171875}, {"start": 1164.87, "end": 1164.87, "word": " same", "probability": 0.90673828125}, {"start": 1164.87, "end": 1165.29, "word": " thing", "probability": 0.77587890625}, {"start": 1165.29, "end": 1165.61, "word": " in", "probability": 0.468505859375}, {"start": 1165.61, "end": 1165.73, "word": " the", "probability": 0.349365234375}, {"start": 1165.73, "end": 1166.19, "word": " WhatsApp", "probability": 0.54248046875}, {"start": 1166.19, "end": 1166.79, "word": " poster", "probability": 0.78564453125}, {"start": 1166.79, "end": 1177.35, "word": " Return", "probability": 0.4248046875}, {"start": 1177.35, "end": 1177.99, "word": " new", "probability": 0.7841796875}, {"start": 1177.99, "end": 1179.35, "word": " WhatsApp", "probability": 0.80419921875}], "temperature": 1.0}, {"id": 49, "seek": 121047, "start": 1188.13, "end": 1210.47, "text": " Connector Now we're done Let's see now in the test What did I change again? What did I change? In the Facebook social media poster I put the daily post This line that had a problem I changed it to what? To abstract method The subclass will make it implement Look now as soon as I do the test", "tokens": [11653, 284, 823, 321, 434, 1096, 961, 311, 536, 586, 294, 264, 1500, 708, 630, 286, 1319, 797, 30, 708, 630, 286, 1319, 30, 682, 264, 4384, 2093, 3021, 17171, 286, 829, 264, 274, 864, 88, 2183, 639, 1622, 300, 632, 257, 1154, 286, 3105, 309, 281, 437, 30, 1407, 12649, 3170, 440, 1422, 11665, 486, 652, 309, 4445, 2053, 586, 382, 2321, 382, 286, 360, 264, 1500], "avg_logprob": -0.47418477224267047, "compression_ratio": 1.553191489361702, "no_speech_prob": 1.0073184967041016e-05, "words": [{"start": 1188.13, "end": 1188.67, "word": " Connector", "probability": 0.53082275390625}, {"start": 1188.67, "end": 1189.21, "word": " Now", "probability": 0.630859375}, {"start": 1189.21, "end": 1189.43, "word": " we're", "probability": 0.4471435546875}, {"start": 1189.43, "end": 1189.71, "word": " done", "probability": 0.84375}, {"start": 1189.71, "end": 1191.07, "word": " Let's", "probability": 0.7115478515625}, {"start": 1191.07, "end": 1191.27, "word": " see", "probability": 0.380859375}, {"start": 1191.27, "end": 1191.53, "word": " now", "probability": 0.50048828125}, {"start": 1191.53, "end": 1191.67, "word": " in", "probability": 0.69873046875}, {"start": 1191.67, "end": 1191.77, "word": " the", "probability": 0.755859375}, {"start": 1191.77, "end": 1192.11, "word": " test", "probability": 0.857421875}, {"start": 1192.11, "end": 1195.15, "word": " What", "probability": 0.75341796875}, {"start": 1195.15, "end": 1195.23, "word": " did", "probability": 0.52099609375}, {"start": 1195.23, "end": 1195.33, "word": " I", "probability": 0.74462890625}, {"start": 1195.33, "end": 1195.55, "word": " change", "probability": 0.833984375}, {"start": 1195.55, "end": 1196.07, "word": " again?", "probability": 0.8359375}, {"start": 1196.29, "end": 1196.45, "word": " What", "probability": 0.5771484375}, {"start": 1196.45, "end": 1196.89, "word": " did", "probability": 0.2352294921875}, {"start": 1196.89, "end": 1196.93, "word": " I", "probability": 0.955078125}, {"start": 1196.93, "end": 1196.93, "word": " change?", "probability": 0.87060546875}, {"start": 1197.27, "end": 1197.61, "word": " In", "probability": 0.73486328125}, {"start": 1197.61, "end": 1197.71, "word": " the", "probability": 0.3994140625}, {"start": 1197.71, "end": 1198.23, "word": " Facebook", "probability": 0.548828125}, {"start": 1198.23, "end": 1198.69, "word": " social", "probability": 0.7783203125}, {"start": 1198.69, "end": 1199.01, "word": " media", "probability": 0.87939453125}, {"start": 1199.01, "end": 1199.41, "word": " poster", "probability": 0.5751953125}, {"start": 1199.41, "end": 1199.59, "word": " I", "probability": 0.69970703125}, {"start": 1199.59, "end": 1199.83, "word": " put", "probability": 0.73095703125}, {"start": 1199.83, "end": 1200.03, "word": " the", "probability": 0.44482421875}, {"start": 1200.03, "end": 1200.25, "word": " daily", "probability": 0.5788777669270834}, {"start": 1200.25, "end": 1200.63, "word": " post", "probability": 0.84130859375}, {"start": 1200.63, "end": 1201.21, "word": " This", "probability": 0.368408203125}, {"start": 1201.21, "end": 1201.51, "word": " line", "probability": 0.7451171875}, {"start": 1201.51, "end": 1201.69, "word": " that", "probability": 0.448486328125}, {"start": 1201.69, "end": 1201.93, "word": " had", "probability": 0.791015625}, {"start": 1201.93, "end": 1202.07, "word": " a", "probability": 0.89697265625}, {"start": 1202.07, "end": 1202.41, "word": " problem", "probability": 0.8349609375}, {"start": 1202.41, "end": 1203.11, "word": " I", "probability": 0.76806640625}, {"start": 1203.11, "end": 1203.41, "word": " changed", "probability": 0.40966796875}, {"start": 1203.41, "end": 1203.55, "word": " it", "probability": 0.6708984375}, {"start": 1203.55, "end": 1203.63, "word": " to", "probability": 0.77392578125}, {"start": 1203.63, "end": 1203.87, "word": " what?", "probability": 0.66796875}, {"start": 1204.71, "end": 1205.01, "word": " To", "probability": 0.56787109375}, {"start": 1205.01, "end": 1205.29, "word": " abstract", "probability": 0.65576171875}, {"start": 1205.29, "end": 1206.61, "word": " method", "probability": 0.90283203125}, {"start": 1206.61, "end": 1207.23, "word": " The", "probability": 0.7353515625}, {"start": 1207.23, "end": 1207.63, "word": " subclass", "probability": 0.874267578125}, {"start": 1207.63, "end": 1207.79, "word": " will", "probability": 0.60693359375}, {"start": 1207.79, "end": 1207.95, "word": " make", "probability": 0.56298828125}, {"start": 1207.95, "end": 1208.11, "word": " it", "probability": 0.60400390625}, {"start": 1208.11, "end": 1208.49, "word": " implement", "probability": 0.70068359375}, {"start": 1208.49, "end": 1208.93, "word": " Look", "probability": 0.3525390625}, {"start": 1208.93, "end": 1209.29, "word": " now", "probability": 0.87109375}, {"start": 1209.29, "end": 1209.51, "word": " as", "probability": 0.178955078125}, {"start": 1209.51, "end": 1209.71, "word": " soon", "probability": 0.9482421875}, {"start": 1209.71, "end": 1209.71, "word": " as", "probability": 0.96875}, {"start": 1209.71, "end": 1209.87, "word": " I", "probability": 0.94189453125}, {"start": 1209.87, "end": 1210.03, "word": " do", "probability": 0.28466796875}, {"start": 1210.03, "end": 1210.15, "word": " the", "probability": 0.53662109375}, {"start": 1210.15, "end": 1210.47, "word": " test", "probability": 0.880859375}], "temperature": 1.0}, {"id": 50, "seek": 123297, "start": 1211.13, "end": 1232.97, "text": " and you clicked on run and let's see what did the post do? now the facebook post did a post on facebook and the whatsapp post did a post on whatsapp which means that this post used the facebook connector and this one used the whatsapp connector what exactly happened is that when you click on the post through the facebook post", "tokens": [293, 291, 23370, 322, 1190, 293, 718, 311, 536, 437, 630, 264, 2183, 360, 30, 586, 264, 23372, 2183, 630, 257, 2183, 322, 23372, 293, 264, 29625, 1746, 2183, 630, 257, 2183, 322, 29625, 1746, 597, 1355, 300, 341, 2183, 1143, 264, 23372, 19127, 293, 341, 472, 1143, 264, 29625, 1746, 19127, 437, 2293, 2011, 307, 300, 562, 291, 2052, 322, 264, 2183, 807, 264, 23372, 2183], "avg_logprob": -0.573529402999317, "compression_ratio": 2.05, "no_speech_prob": 4.589557647705078e-06, "words": [{"start": 1211.13, "end": 1211.33, "word": " and", "probability": 0.31689453125}, {"start": 1211.33, "end": 1211.59, "word": " you", "probability": 0.275634765625}, {"start": 1211.59, "end": 1211.61, "word": " clicked", "probability": 0.1141357421875}, {"start": 1211.61, "end": 1211.71, "word": " on", "probability": 0.466796875}, {"start": 1211.71, "end": 1211.89, "word": " run", "probability": 0.56787109375}, {"start": 1211.89, "end": 1213.45, "word": " and", "probability": 0.302490234375}, {"start": 1213.45, "end": 1213.75, "word": " let's", "probability": 0.5303955078125}, {"start": 1213.75, "end": 1214.09, "word": " see", "probability": 0.7861328125}, {"start": 1214.09, "end": 1214.57, "word": " what", "probability": 0.56103515625}, {"start": 1214.57, "end": 1214.75, "word": " did", "probability": 0.166748046875}, {"start": 1214.75, "end": 1215.13, "word": " the", "probability": 0.395263671875}, {"start": 1215.13, "end": 1215.51, "word": " post", "probability": 0.57275390625}, {"start": 1215.51, "end": 1215.57, "word": " do?", "probability": 0.5810546875}, {"start": 1217.45, "end": 1217.97, "word": " now", "probability": 0.1781005859375}, {"start": 1217.97, "end": 1218.17, "word": " the", "probability": 0.40966796875}, {"start": 1218.17, "end": 1218.53, "word": " facebook", "probability": 0.493408203125}, {"start": 1218.53, "end": 1218.87, "word": " post", "probability": 0.38720703125}, {"start": 1218.87, "end": 1219.07, "word": " did", "probability": 0.383056640625}, {"start": 1219.07, "end": 1219.43, "word": " a", "probability": 0.55615234375}, {"start": 1219.43, "end": 1219.43, "word": " post", "probability": 0.779296875}, {"start": 1219.43, "end": 1219.55, "word": " on", "probability": 0.77392578125}, {"start": 1219.55, "end": 1220.07, "word": " facebook", "probability": 0.71044921875}, {"start": 1220.07, "end": 1220.29, "word": " and", "probability": 0.81201171875}, {"start": 1220.29, "end": 1220.37, "word": " the", "probability": 0.5}, {"start": 1220.37, "end": 1220.69, "word": " whatsapp", "probability": 0.87548828125}, {"start": 1220.69, "end": 1220.93, "word": " post", "probability": 0.73046875}, {"start": 1220.93, "end": 1221.15, "word": " did", "probability": 0.87451171875}, {"start": 1221.15, "end": 1221.33, "word": " a", "probability": 0.958984375}, {"start": 1221.33, "end": 1221.53, "word": " post", "probability": 0.88916015625}, {"start": 1221.53, "end": 1221.73, "word": " on", "probability": 0.93603515625}, {"start": 1221.73, "end": 1222.73, "word": " whatsapp", "probability": 0.93408203125}, {"start": 1222.73, "end": 1223.01, "word": " which", "probability": 0.298583984375}, {"start": 1223.01, "end": 1223.27, "word": " means", "probability": 0.90380859375}, {"start": 1223.27, "end": 1223.55, "word": " that", "probability": 0.6865234375}, {"start": 1223.55, "end": 1223.65, "word": " this", "probability": 0.43896484375}, {"start": 1223.65, "end": 1223.87, "word": " post", "probability": 0.46533203125}, {"start": 1223.87, "end": 1224.65, "word": " used", "probability": 0.90673828125}, {"start": 1224.65, "end": 1224.99, "word": " the", "probability": 0.6484375}, {"start": 1224.99, "end": 1225.29, "word": " facebook", "probability": 0.373046875}, {"start": 1225.29, "end": 1225.91, "word": " connector", "probability": 0.4736328125}, {"start": 1225.91, "end": 1226.09, "word": " and", "probability": 0.87646484375}, {"start": 1226.09, "end": 1226.21, "word": " this", "probability": 0.5361328125}, {"start": 1226.21, "end": 1226.29, "word": " one", "probability": 0.292236328125}, {"start": 1226.29, "end": 1226.59, "word": " used", "probability": 0.90869140625}, {"start": 1226.59, "end": 1227.93, "word": " the", "probability": 0.7880859375}, {"start": 1227.93, "end": 1228.27, "word": " whatsapp", "probability": 0.94384765625}, {"start": 1228.27, "end": 1228.27, "word": " connector", "probability": 0.79931640625}, {"start": 1228.27, "end": 1228.57, "word": " what", "probability": 0.6962890625}, {"start": 1228.57, "end": 1228.71, "word": " exactly", "probability": 0.44482421875}, {"start": 1228.71, "end": 1228.95, "word": " happened", "probability": 0.80078125}, {"start": 1228.95, "end": 1229.69, "word": " is", "probability": 0.3671875}, {"start": 1229.69, "end": 1229.87, "word": " that", "probability": 0.5146484375}, {"start": 1229.87, "end": 1229.97, "word": " when", "probability": 0.8203125}, {"start": 1229.97, "end": 1230.11, "word": " you", "probability": 0.96044921875}, {"start": 1230.11, "end": 1230.51, "word": " click", "probability": 0.11712646484375}, {"start": 1230.51, "end": 1230.65, "word": " on", "probability": 0.74365234375}, {"start": 1230.65, "end": 1230.71, "word": " the", "probability": 0.6689453125}, {"start": 1230.71, "end": 1231.13, "word": " post", "probability": 0.89404296875}, {"start": 1231.13, "end": 1232.09, "word": " through", "probability": 0.56103515625}, {"start": 1232.09, "end": 1232.29, "word": " the", "probability": 0.7802734375}, {"start": 1232.29, "end": 1232.61, "word": " facebook", "probability": 0.8125}, {"start": 1232.61, "end": 1232.97, "word": " post", "probability": 0.595703125}], "temperature": 1.0}, {"id": 51, "seek": 126156, "start": 1234.42, "end": 1261.56, "text": " Yes, it will ask for the data in the parent, don't you agree? It will come to the parent. The first line in the parent, what does it say? Create connector. What will it ask for? The Create connector of the subclass. As if now the superclass asked the subclass to create the connector. Okay? What is the rest of the code? Yes, as it is. If you ask for the data of the post in the Whatsapp poster,", "tokens": [1079, 11, 309, 486, 1029, 337, 264, 1412, 294, 264, 2596, 11, 500, 380, 291, 3986, 30, 467, 486, 808, 281, 264, 2596, 13, 440, 700, 1622, 294, 264, 2596, 11, 437, 775, 309, 584, 30, 20248, 19127, 13, 708, 486, 309, 1029, 337, 30, 440, 20248, 19127, 295, 264, 1422, 11665, 13, 1018, 498, 586, 264, 1687, 11665, 2351, 264, 1422, 11665, 281, 1884, 264, 19127, 13, 1033, 30, 708, 307, 264, 1472, 295, 264, 3089, 30, 1079, 11, 382, 309, 307, 13, 759, 291, 1029, 337, 264, 1412, 295, 264, 2183, 294, 264, 22051, 1746, 17171, 11], "avg_logprob": -0.4831249916553497, "compression_ratio": 1.894736842105263, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1234.42, "end": 1234.74, "word": " Yes,", "probability": 0.08203125}, {"start": 1235.0, "end": 1235.0, "word": " it", "probability": 0.62060546875}, {"start": 1235.0, "end": 1235.0, "word": " will", "probability": 0.69921875}, {"start": 1235.0, "end": 1235.24, "word": " ask", "probability": 0.10418701171875}, {"start": 1235.24, "end": 1235.44, "word": " for", "probability": 0.54296875}, {"start": 1235.44, "end": 1235.46, "word": " the", "probability": 0.70947265625}, {"start": 1235.46, "end": 1235.62, "word": " data", "probability": 0.379638671875}, {"start": 1235.62, "end": 1236.0, "word": " in", "probability": 0.34375}, {"start": 1236.0, "end": 1236.22, "word": " the", "probability": 0.70947265625}, {"start": 1236.22, "end": 1236.46, "word": " parent,", "probability": 0.80712890625}, {"start": 1236.58, "end": 1236.68, "word": " don't", "probability": 0.5579833984375}, {"start": 1236.68, "end": 1236.74, "word": " you", "probability": 0.6552734375}, {"start": 1236.74, "end": 1237.06, "word": " agree?", "probability": 0.383056640625}, {"start": 1237.64, "end": 1237.9, "word": " It", "probability": 0.5498046875}, {"start": 1237.9, "end": 1237.96, "word": " will", "probability": 0.7822265625}, {"start": 1237.96, "end": 1238.12, "word": " come", "probability": 0.34423828125}, {"start": 1238.12, "end": 1238.22, "word": " to", "probability": 0.876953125}, {"start": 1238.22, "end": 1238.3, "word": " the", "probability": 0.8515625}, {"start": 1238.3, "end": 1238.66, "word": " parent.", "probability": 0.90771484375}, {"start": 1239.32, "end": 1239.8, "word": " The", "probability": 0.40673828125}, {"start": 1239.8, "end": 1239.8, "word": " first", "probability": 0.88232421875}, {"start": 1239.8, "end": 1240.08, "word": " line", "probability": 0.8203125}, {"start": 1240.08, "end": 1240.22, "word": " in", "probability": 0.7685546875}, {"start": 1240.22, "end": 1240.36, "word": " the", "probability": 0.86279296875}, {"start": 1240.36, "end": 1240.6, "word": " parent,", "probability": 0.92529296875}, {"start": 1240.66, "end": 1240.8, "word": " what", "probability": 0.9072265625}, {"start": 1240.8, "end": 1240.84, "word": " does", "probability": 0.85107421875}, {"start": 1240.84, "end": 1240.86, "word": " it", "probability": 0.92822265625}, {"start": 1240.86, "end": 1241.04, "word": " say?", "probability": 0.74609375}, {"start": 1242.2, "end": 1242.68, "word": " Create", "probability": 0.79150390625}, {"start": 1242.68, "end": 1243.24, "word": " connector.", "probability": 0.5712890625}, {"start": 1243.42, "end": 1243.82, "word": " What", "probability": 0.8173828125}, {"start": 1243.82, "end": 1243.96, "word": " will", "probability": 0.54248046875}, {"start": 1243.96, "end": 1244.04, "word": " it", "probability": 0.64599609375}, {"start": 1244.04, "end": 1244.32, "word": " ask", "probability": 0.75634765625}, {"start": 1244.32, "end": 1244.42, "word": " for?", "probability": 0.73095703125}, {"start": 1244.78, "end": 1245.22, "word": " The", "probability": 0.67041015625}, {"start": 1245.22, "end": 1245.48, "word": " Create", "probability": 0.404541015625}, {"start": 1245.48, "end": 1245.88, "word": " connector", "probability": 0.76220703125}, {"start": 1245.88, "end": 1246.1, "word": " of", "probability": 0.6875}, {"start": 1246.1, "end": 1246.26, "word": " the", "probability": 0.85009765625}, {"start": 1246.26, "end": 1246.78, "word": " subclass.", "probability": 0.87841796875}, {"start": 1247.56, "end": 1247.84, "word": " As", "probability": 0.168701171875}, {"start": 1247.84, "end": 1248.16, "word": " if", "probability": 0.92626953125}, {"start": 1248.16, "end": 1248.48, "word": " now", "probability": 0.420166015625}, {"start": 1248.48, "end": 1248.64, "word": " the", "probability": 0.76513671875}, {"start": 1248.64, "end": 1249.38, "word": " superclass", "probability": 0.887451171875}, {"start": 1249.38, "end": 1249.68, "word": " asked", "probability": 0.477783203125}, {"start": 1249.68, "end": 1250.1, "word": " the", "probability": 0.58984375}, {"start": 1250.1, "end": 1250.8, "word": " subclass", "probability": 0.95751953125}, {"start": 1250.8, "end": 1251.72, "word": " to", "probability": 0.908203125}, {"start": 1251.72, "end": 1252.12, "word": " create", "probability": 0.51806640625}, {"start": 1252.12, "end": 1252.66, "word": " the", "probability": 0.7958984375}, {"start": 1252.66, "end": 1253.04, "word": " connector.", "probability": 0.82568359375}, {"start": 1253.84, "end": 1254.06, "word": " Okay?", "probability": 0.260009765625}, {"start": 1254.42, "end": 1254.62, "word": " What", "probability": 0.49755859375}, {"start": 1254.62, "end": 1254.62, "word": " is", "probability": 0.40283203125}, {"start": 1254.62, "end": 1254.66, "word": " the", "probability": 0.875}, {"start": 1254.66, "end": 1254.8, "word": " rest", "probability": 0.64990234375}, {"start": 1254.8, "end": 1254.92, "word": " of", "probability": 0.9736328125}, {"start": 1254.92, "end": 1254.94, "word": " the", "probability": 0.904296875}, {"start": 1254.94, "end": 1255.14, "word": " code?", "probability": 0.93701171875}, {"start": 1256.74, "end": 1257.22, "word": " Yes,", "probability": 0.2083740234375}, {"start": 1257.4, "end": 1257.9, "word": " as", "probability": 0.271240234375}, {"start": 1257.9, "end": 1258.14, "word": " it", "probability": 0.76318359375}, {"start": 1258.14, "end": 1258.22, "word": " is.", "probability": 0.87109375}, {"start": 1258.52, "end": 1258.9, "word": " If", "probability": 0.9443359375}, {"start": 1258.9, "end": 1258.96, "word": " you", "probability": 0.50244140625}, {"start": 1258.96, "end": 1259.18, "word": " ask", "probability": 0.51416015625}, {"start": 1259.18, "end": 1259.52, "word": " for", "probability": 0.8837890625}, {"start": 1259.52, "end": 1259.52, "word": " the", "probability": 0.79248046875}, {"start": 1259.52, "end": 1259.74, "word": " data", "probability": 0.71435546875}, {"start": 1259.74, "end": 1259.94, "word": " of", "probability": 0.301025390625}, {"start": 1259.94, "end": 1260.02, "word": " the", "probability": 0.724609375}, {"start": 1260.02, "end": 1260.22, "word": " post", "probability": 0.6845703125}, {"start": 1260.22, "end": 1260.7, "word": " in", "probability": 0.333984375}, {"start": 1260.7, "end": 1260.86, "word": " the", "probability": 0.7734375}, {"start": 1260.86, "end": 1261.18, "word": " Whatsapp", "probability": 0.6357421875}, {"start": 1261.18, "end": 1261.56, "word": " poster,", "probability": 0.71728515625}], "temperature": 1.0}, {"id": 52, "seek": 128325, "start": 1264.43, "end": 1283.25, "text": "It also executes the first line and asks the subclass to determine which object is created and which is not. It remains as it is. Through this abstract method, which is implemented by the subclass, the superclass stores the subclass in different parts of the code.", "tokens": [3522, 611, 4454, 1819, 264, 700, 1622, 293, 8962, 264, 1422, 11665, 281, 6997, 597, 2657, 307, 2942, 293, 597, 307, 406, 13, 467, 7023, 382, 309, 307, 13, 8927, 341, 12649, 3170, 11, 597, 307, 12270, 538, 264, 1422, 11665, 11, 264, 1687, 11665, 9512, 264, 1422, 11665, 294, 819, 3166, 295, 264, 3089, 13], "avg_logprob": -0.578399097710325, "compression_ratio": 1.6097560975609757, "no_speech_prob": 1.7285346984863281e-06, "words": [{"start": 1264.43, "end": 1264.71, "word": "It", "probability": 0.2486572265625}, {"start": 1264.71, "end": 1265.01, "word": " also", "probability": 0.2802734375}, {"start": 1265.01, "end": 1265.39, "word": " executes", "probability": 0.61334228515625}, {"start": 1265.39, "end": 1265.51, "word": " the", "probability": 0.671875}, {"start": 1265.51, "end": 1265.69, "word": " first", "probability": 0.84521484375}, {"start": 1265.69, "end": 1266.01, "word": " line", "probability": 0.85791015625}, {"start": 1266.01, "end": 1267.91, "word": " and", "probability": 0.259765625}, {"start": 1267.91, "end": 1268.13, "word": " asks", "probability": 0.63720703125}, {"start": 1268.13, "end": 1268.37, "word": " the", "probability": 0.60595703125}, {"start": 1268.37, "end": 1268.81, "word": " subclass", "probability": 0.87451171875}, {"start": 1268.81, "end": 1268.97, "word": " to", "probability": 0.9189453125}, {"start": 1268.97, "end": 1269.23, "word": " determine", "probability": 0.2235107421875}, {"start": 1269.23, "end": 1269.47, "word": " which", "probability": 0.45361328125}, {"start": 1269.47, "end": 1269.79, "word": " object", "probability": 0.82568359375}, {"start": 1269.79, "end": 1269.93, "word": " is", "probability": 0.25244140625}, {"start": 1269.93, "end": 1270.25, "word": " created", "probability": 0.35107421875}, {"start": 1270.25, "end": 1270.37, "word": " and", "probability": 0.70068359375}, {"start": 1270.37, "end": 1270.47, "word": " which", "probability": 0.287353515625}, {"start": 1270.47, "end": 1270.77, "word": " is", "probability": 0.5048828125}, {"start": 1270.77, "end": 1270.91, "word": " not.", "probability": 0.50927734375}, {"start": 1271.69, "end": 1271.79, "word": " It", "probability": 0.154296875}, {"start": 1271.79, "end": 1272.03, "word": " remains", "probability": 0.18212890625}, {"start": 1272.03, "end": 1272.23, "word": " as", "probability": 0.56005859375}, {"start": 1272.23, "end": 1272.43, "word": " it", "probability": 0.80859375}, {"start": 1272.43, "end": 1272.57, "word": " is.", "probability": 0.7744140625}, {"start": 1272.95, "end": 1273.47, "word": " Through", "probability": 0.159912109375}, {"start": 1273.47, "end": 1273.81, "word": " this", "probability": 0.779296875}, {"start": 1273.81, "end": 1274.87, "word": " abstract", "probability": 0.45947265625}, {"start": 1274.87, "end": 1275.59, "word": " method,", "probability": 0.93701171875}, {"start": 1275.59, "end": 1275.77, "word": " which", "probability": 0.436279296875}, {"start": 1275.77, "end": 1277.31, "word": " is", "probability": 0.638671875}, {"start": 1277.31, "end": 1277.65, "word": " implemented", "probability": 0.4775390625}, {"start": 1277.65, "end": 1278.31, "word": " by", "probability": 0.8212890625}, {"start": 1278.31, "end": 1278.31, "word": " the", "probability": 0.83935546875}, {"start": 1278.31, "end": 1278.31, "word": " subclass,", "probability": 0.940185546875}, {"start": 1279.11, "end": 1279.47, "word": " the", "probability": 0.64306640625}, {"start": 1279.47, "end": 1280.35, "word": " superclass", "probability": 0.89599609375}, {"start": 1280.35, "end": 1280.79, "word": " stores", "probability": 0.083984375}, {"start": 1280.79, "end": 1281.11, "word": " the", "probability": 0.71044921875}, {"start": 1281.11, "end": 1281.57, "word": " subclass", "probability": 0.94921875}, {"start": 1281.57, "end": 1281.71, "word": " in", "probability": 0.7392578125}, {"start": 1281.71, "end": 1282.45, "word": " different", "probability": 0.399169921875}, {"start": 1282.45, "end": 1282.47, "word": " parts", "probability": 0.806640625}, {"start": 1282.47, "end": 1282.87, "word": " of", "probability": 0.962890625}, {"start": 1282.87, "end": 1283.01, "word": " the", "probability": 0.890625}, {"start": 1283.01, "end": 1283.25, "word": " code.", "probability": 0.89404296875}], "temperature": 1.0}, {"id": 53, "seek": 131328, "start": 1284.46, "end": 1313.28, "text": " This is a different part which is converted to an abstract method. And let the subclass be used for implementation. This is how the common code works. I can put it in the superclass. And the different part is that I put the subclass to work through the abstract method. This method, the abstract, through which I put the subclass to make objects, I call it the factory method. It is this factory method. Now, if we want to make", "tokens": [639, 307, 257, 819, 644, 597, 307, 16424, 281, 364, 12649, 3170, 13, 400, 718, 264, 1422, 11665, 312, 1143, 337, 11420, 13, 639, 307, 577, 264, 2689, 3089, 1985, 13, 286, 393, 829, 309, 294, 264, 1687, 11665, 13, 400, 264, 819, 644, 307, 300, 286, 829, 264, 1422, 11665, 281, 589, 807, 264, 12649, 3170, 13, 639, 3170, 11, 264, 12649, 11, 807, 597, 286, 829, 264, 1422, 11665, 281, 652, 6565, 11, 286, 818, 309, 264, 9265, 3170, 13, 467, 307, 341, 9265, 3170, 13, 823, 11, 498, 321, 528, 281, 652], "avg_logprob": -0.558593754346172, "compression_ratio": 1.963302752293578, "no_speech_prob": 3.6954879760742188e-06, "words": [{"start": 1284.46, "end": 1284.96, "word": " This", "probability": 0.08984375}, {"start": 1284.96, "end": 1285.16, "word": " is", "probability": 0.80322265625}, {"start": 1285.16, "end": 1285.38, "word": " a", "probability": 0.658203125}, {"start": 1285.38, "end": 1285.64, "word": " different", "probability": 0.72119140625}, {"start": 1285.64, "end": 1285.64, "word": " part", "probability": 0.6884765625}, {"start": 1285.64, "end": 1286.06, "word": " which", "probability": 0.09478759765625}, {"start": 1286.06, "end": 1286.58, "word": " is", "probability": 0.257080078125}, {"start": 1286.58, "end": 1286.8, "word": " converted", "probability": 0.4365234375}, {"start": 1286.8, "end": 1286.96, "word": " to", "probability": 0.6220703125}, {"start": 1286.96, "end": 1287.3, "word": " an", "probability": 0.1639404296875}, {"start": 1287.3, "end": 1287.52, "word": " abstract", "probability": 0.7861328125}, {"start": 1287.52, "end": 1287.74, "word": " method.", "probability": 0.92431640625}, {"start": 1287.88, "end": 1287.92, "word": " And", "probability": 0.246337890625}, {"start": 1287.92, "end": 1288.12, "word": " let", "probability": 0.466552734375}, {"start": 1288.12, "end": 1288.26, "word": " the", "probability": 0.59619140625}, {"start": 1288.26, "end": 1288.86, "word": " subclass", "probability": 0.859375}, {"start": 1288.86, "end": 1289.74, "word": " be", "probability": 0.450927734375}, {"start": 1289.74, "end": 1290.1, "word": " used", "probability": 0.2218017578125}, {"start": 1290.1, "end": 1290.28, "word": " for", "probability": 0.46337890625}, {"start": 1290.28, "end": 1291.3, "word": " implementation.", "probability": 0.67333984375}, {"start": 1291.56, "end": 1291.88, "word": " This", "probability": 0.47998046875}, {"start": 1291.88, "end": 1291.9, "word": " is", "probability": 0.8095703125}, {"start": 1291.9, "end": 1292.02, "word": " how", "probability": 0.344482421875}, {"start": 1292.02, "end": 1292.02, "word": " the", "probability": 0.350830078125}, {"start": 1292.02, "end": 1292.04, "word": " common", "probability": 0.29052734375}, {"start": 1292.04, "end": 1292.56, "word": " code", "probability": 0.89794921875}, {"start": 1292.56, "end": 1292.7, "word": " works.", "probability": 0.378662109375}, {"start": 1292.72, "end": 1292.78, "word": " I", "probability": 0.8466796875}, {"start": 1292.78, "end": 1292.94, "word": " can", "probability": 0.86376953125}, {"start": 1292.94, "end": 1293.18, "word": " put", "probability": 0.460693359375}, {"start": 1293.18, "end": 1293.22, "word": " it", "probability": 0.7509765625}, {"start": 1293.22, "end": 1293.3, "word": " in", "probability": 0.8134765625}, {"start": 1293.3, "end": 1293.4, "word": " the", "probability": 0.775390625}, {"start": 1293.4, "end": 1293.96, "word": " superclass.", "probability": 0.835205078125}, {"start": 1294.1, "end": 1294.12, "word": " And", "probability": 0.66796875}, {"start": 1294.12, "end": 1294.2, "word": " the", "probability": 0.38671875}, {"start": 1294.2, "end": 1294.56, "word": " different", "probability": 0.4189453125}, {"start": 1294.56, "end": 1294.82, "word": " part", "probability": 0.429931640625}, {"start": 1294.82, "end": 1294.94, "word": " is", "probability": 0.480712890625}, {"start": 1294.94, "end": 1295.44, "word": " that", "probability": 0.46435546875}, {"start": 1295.44, "end": 1296.02, "word": " I", "probability": 0.86962890625}, {"start": 1296.02, "end": 1296.02, "word": " put", "probability": 0.032989501953125}, {"start": 1296.02, "end": 1296.14, "word": " the", "probability": 0.5966796875}, {"start": 1296.14, "end": 1296.58, "word": " subclass", "probability": 0.91748046875}, {"start": 1296.58, "end": 1296.78, "word": " to", "probability": 0.74169921875}, {"start": 1296.78, "end": 1296.92, "word": " work", "probability": 0.384521484375}, {"start": 1296.92, "end": 1297.28, "word": " through", "probability": 0.498291015625}, {"start": 1297.28, "end": 1298.06, "word": " the", "probability": 0.35107421875}, {"start": 1298.06, "end": 1298.36, "word": " abstract", "probability": 0.55322265625}, {"start": 1298.36, "end": 1298.84, "word": " method.", "probability": 0.92138671875}, {"start": 1299.12, "end": 1299.52, "word": " This", "probability": 0.69189453125}, {"start": 1299.52, "end": 1299.94, "word": " method,", "probability": 0.60791015625}, {"start": 1300.02, "end": 1300.1, "word": " the", "probability": 0.50927734375}, {"start": 1300.1, "end": 1300.44, "word": " abstract,", "probability": 0.85302734375}, {"start": 1301.0, "end": 1301.48, "word": " through", "probability": 0.332763671875}, {"start": 1301.48, "end": 1301.94, "word": " which", "probability": 0.93798828125}, {"start": 1301.94, "end": 1302.14, "word": " I", "probability": 0.96142578125}, {"start": 1302.14, "end": 1302.48, "word": " put", "probability": 0.7001953125}, {"start": 1302.48, "end": 1302.68, "word": " the", "probability": 0.8798828125}, {"start": 1302.68, "end": 1303.2, "word": " subclass", "probability": 0.956787109375}, {"start": 1303.2, "end": 1303.46, "word": " to", "probability": 0.8427734375}, {"start": 1303.46, "end": 1303.76, "word": " make", "probability": 0.30078125}, {"start": 1303.76, "end": 1304.54, "word": " objects,", "probability": 0.94775390625}, {"start": 1304.88, "end": 1305.06, "word": " I", "probability": 0.6044921875}, {"start": 1305.06, "end": 1305.26, "word": " call", "probability": 0.86572265625}, {"start": 1305.26, "end": 1305.4, "word": " it", "probability": 0.818359375}, {"start": 1305.4, "end": 1305.48, "word": " the", "probability": 0.6162109375}, {"start": 1305.48, "end": 1305.8, "word": " factory", "probability": 0.6728515625}, {"start": 1305.8, "end": 1306.92, "word": " method.", "probability": 0.94482421875}, {"start": 1307.58, "end": 1307.66, "word": " It", "probability": 0.468017578125}, {"start": 1307.66, "end": 1307.76, "word": " is", "probability": 0.84423828125}, {"start": 1307.76, "end": 1308.0, "word": " this", "probability": 0.89990234375}, {"start": 1308.0, "end": 1308.36, "word": " factory", "probability": 0.88671875}, {"start": 1308.36, "end": 1308.64, "word": " method.", "probability": 0.93408203125}, {"start": 1310.94, "end": 1311.44, "word": " Now,", "probability": 0.87060546875}, {"start": 1311.64, "end": 1311.86, "word": " if", "probability": 0.8857421875}, {"start": 1311.86, "end": 1312.26, "word": " we", "probability": 0.9228515625}, {"start": 1312.26, "end": 1312.92, "word": " want", "probability": 0.79833984375}, {"start": 1312.92, "end": 1313.06, "word": " to", "probability": 0.97314453125}, {"start": 1313.06, "end": 1313.28, "word": " make", "probability": 0.436767578125}], "temperature": 1.0}, {"id": 54, "seek": 133691, "start": 1314.53, "end": 1336.91, "text": " Twitter Poster Now, of course, I must have a Twitter Connector This Twitter Connector is present And it follows the social media interface Now, we want to create a Twitter Poster We create a Twitter Poster And we say extends", "tokens": [5794, 430, 7096, 823, 11, 295, 1164, 11, 286, 1633, 362, 257, 5794, 11653, 284, 639, 5794, 11653, 284, 307, 1974, 400, 309, 10002, 264, 2093, 3021, 9226, 823, 11, 321, 528, 281, 1884, 257, 5794, 430, 7096, 492, 1884, 257, 5794, 430, 7096, 400, 321, 584, 26448], "avg_logprob": -0.6600765306122449, "compression_ratio": 1.618705035971223, "no_speech_prob": 1.2278556823730469e-05, "words": [{"start": 1314.53, "end": 1314.99, "word": " Twitter", "probability": 0.51611328125}, {"start": 1314.99, "end": 1315.47, "word": " Poster", "probability": 0.605224609375}, {"start": 1315.47, "end": 1318.19, "word": " Now,", "probability": 0.1011962890625}, {"start": 1318.35, "end": 1318.85, "word": " of", "probability": 0.260498046875}, {"start": 1318.85, "end": 1318.99, "word": " course,", "probability": 0.91259765625}, {"start": 1319.41, "end": 1319.49, "word": " I", "probability": 0.68896484375}, {"start": 1319.49, "end": 1319.61, "word": " must", "probability": 0.27880859375}, {"start": 1319.61, "end": 1319.89, "word": " have", "probability": 0.8974609375}, {"start": 1319.89, "end": 1320.07, "word": " a", "probability": 0.53662109375}, {"start": 1320.07, "end": 1320.31, "word": " Twitter", "probability": 0.80224609375}, {"start": 1320.31, "end": 1320.89, "word": " Connector", "probability": 0.857177734375}, {"start": 1320.89, "end": 1322.07, "word": " This", "probability": 0.1610107421875}, {"start": 1322.07, "end": 1322.41, "word": " Twitter", "probability": 0.5654296875}, {"start": 1322.41, "end": 1322.89, "word": " Connector", "probability": 0.8974609375}, {"start": 1322.89, "end": 1322.93, "word": " is", "probability": 0.67822265625}, {"start": 1322.93, "end": 1323.25, "word": " present", "probability": 0.2366943359375}, {"start": 1323.25, "end": 1324.67, "word": " And", "probability": 0.182861328125}, {"start": 1324.67, "end": 1324.75, "word": " it", "probability": 0.356689453125}, {"start": 1324.75, "end": 1324.95, "word": " follows", "probability": 0.65966796875}, {"start": 1324.95, "end": 1325.07, "word": " the", "probability": 0.810546875}, {"start": 1325.07, "end": 1325.69, "word": " social", "probability": 0.417236328125}, {"start": 1325.69, "end": 1326.17, "word": " media", "probability": 0.904296875}, {"start": 1326.17, "end": 1326.23, "word": " interface", "probability": 0.449462890625}, {"start": 1326.23, "end": 1327.31, "word": " Now,", "probability": 0.151123046875}, {"start": 1327.83, "end": 1327.91, "word": " we", "probability": 0.481201171875}, {"start": 1327.91, "end": 1328.01, "word": " want", "probability": 0.60498046875}, {"start": 1328.01, "end": 1328.15, "word": " to", "probability": 0.96337890625}, {"start": 1328.15, "end": 1328.25, "word": " create", "probability": 0.48583984375}, {"start": 1328.25, "end": 1328.43, "word": " a", "probability": 0.87158203125}, {"start": 1328.43, "end": 1328.65, "word": " Twitter", "probability": 0.88916015625}, {"start": 1328.65, "end": 1329.11, "word": " Poster", "probability": 0.84130859375}, {"start": 1329.11, "end": 1331.69, "word": " We", "probability": 0.21875}, {"start": 1331.69, "end": 1332.03, "word": " create", "probability": 0.45068359375}, {"start": 1332.03, "end": 1332.23, "word": " a", "probability": 0.67919921875}, {"start": 1332.23, "end": 1332.59, "word": " Twitter", "probability": 0.85546875}, {"start": 1332.59, "end": 1335.19, "word": " Poster", "probability": 0.86767578125}, {"start": 1335.19, "end": 1335.73, "word": " And", "probability": 0.46875}, {"start": 1335.73, "end": 1335.87, "word": " we", "probability": 0.5068359375}, {"start": 1335.87, "end": 1336.07, "word": " say", "probability": 0.41845703125}, {"start": 1336.07, "end": 1336.91, "word": " extends", "probability": 0.26806640625}], "temperature": 1.0}, {"id": 55, "seek": 136406, "start": 1343.64, "end": 1364.06, "text": "Extend social media. He asked me to implement some method. I told him not to worry. All the code of the post is in the superclass. You don't have to specify the connector you want. I told him to return to Twitter.", "tokens": [36, 734, 521, 2093, 3021, 13, 634, 2351, 385, 281, 4445, 512, 3170, 13, 286, 1907, 796, 406, 281, 3292, 13, 1057, 264, 3089, 295, 264, 2183, 307, 294, 264, 1687, 11665, 13, 509, 500, 380, 362, 281, 16500, 264, 19127, 291, 528, 13, 286, 1907, 796, 281, 2736, 281, 5794, 13], "avg_logprob": -0.7382075561667388, "compression_ratio": 1.42, "no_speech_prob": 2.384185791015625e-06, "words": [{"start": 1343.64, "end": 1344.24, "word": "Extend", "probability": 0.5951639811197916}, {"start": 1344.24, "end": 1344.5, "word": " social", "probability": 0.634765625}, {"start": 1344.5, "end": 1344.76, "word": " media.", "probability": 0.90673828125}, {"start": 1344.96, "end": 1345.08, "word": " He", "probability": 0.1519775390625}, {"start": 1345.08, "end": 1345.24, "word": " asked", "probability": 0.64697265625}, {"start": 1345.24, "end": 1345.48, "word": " me", "probability": 0.88720703125}, {"start": 1345.48, "end": 1345.56, "word": " to", "probability": 0.93212890625}, {"start": 1345.56, "end": 1346.14, "word": " implement", "probability": 0.416748046875}, {"start": 1346.14, "end": 1347.4, "word": " some", "probability": 0.141845703125}, {"start": 1347.4, "end": 1348.02, "word": " method.", "probability": 0.437255859375}, {"start": 1348.1, "end": 1348.7, "word": " I", "probability": 0.2471923828125}, {"start": 1348.7, "end": 1349.0, "word": " told", "probability": 0.327392578125}, {"start": 1349.0, "end": 1349.34, "word": " him", "probability": 0.92724609375}, {"start": 1349.34, "end": 1350.12, "word": " not", "probability": 0.200927734375}, {"start": 1350.12, "end": 1350.22, "word": " to", "probability": 0.93798828125}, {"start": 1350.22, "end": 1350.48, "word": " worry.", "probability": 0.615234375}, {"start": 1351.06, "end": 1351.66, "word": " All", "probability": 0.70947265625}, {"start": 1351.66, "end": 1351.84, "word": " the", "probability": 0.300048828125}, {"start": 1351.84, "end": 1352.04, "word": " code", "probability": 0.75927734375}, {"start": 1352.04, "end": 1352.18, "word": " of", "probability": 0.294921875}, {"start": 1352.18, "end": 1352.34, "word": " the", "probability": 0.50634765625}, {"start": 1352.34, "end": 1352.62, "word": " post", "probability": 0.791015625}, {"start": 1352.62, "end": 1352.82, "word": " is", "probability": 0.701171875}, {"start": 1352.82, "end": 1353.3, "word": " in", "probability": 0.302978515625}, {"start": 1353.3, "end": 1354.12, "word": " the", "probability": 0.63623046875}, {"start": 1354.12, "end": 1354.7, "word": " superclass.", "probability": 0.787841796875}, {"start": 1354.82, "end": 1355.06, "word": " You", "probability": 0.40478515625}, {"start": 1355.06, "end": 1355.54, "word": " don't", "probability": 0.6153564453125}, {"start": 1355.54, "end": 1355.98, "word": " have", "probability": 0.32666015625}, {"start": 1355.98, "end": 1356.16, "word": " to", "probability": 0.9375}, {"start": 1356.16, "end": 1357.48, "word": " specify", "probability": 0.517578125}, {"start": 1357.48, "end": 1357.92, "word": " the", "probability": 0.5068359375}, {"start": 1357.92, "end": 1358.48, "word": " connector", "probability": 0.315673828125}, {"start": 1358.48, "end": 1359.46, "word": " you", "probability": 0.371826171875}, {"start": 1359.46, "end": 1359.64, "word": " want.", "probability": 0.72998046875}, {"start": 1359.98, "end": 1360.44, "word": " I", "probability": 0.459716796875}, {"start": 1360.44, "end": 1360.64, "word": " told", "probability": 0.6337890625}, {"start": 1360.64, "end": 1360.76, "word": " him", "probability": 0.9228515625}, {"start": 1360.76, "end": 1360.82, "word": " to", "probability": 0.595703125}, {"start": 1360.82, "end": 1361.28, "word": " return", "probability": 0.78369140625}, {"start": 1361.28, "end": 1362.66, "word": " to", "probability": 0.29248046875}, {"start": 1362.66, "end": 1364.06, "word": " Twitter.", "probability": 0.490478515625}], "temperature": 1.0}, {"id": 56, "seek": 139578, "start": 1368.48, "end": 1395.78, "text": "Connector. And we're done. It doesn't make any line again. All the common code is present where? In the superclass. Now, based on these words, let's read the words that are present and connect them together. The goal is to define an interface for creating an object. You make an interface to create ... Of course, here I mean in the interface, the abstract method, that is, the face to create the object. Who is this face to create the object? The method is called CreateConnector. Okay?", "tokens": [9838, 1569, 284, 13, 400, 321, 434, 1096, 13, 467, 1177, 380, 652, 604, 1622, 797, 13, 1057, 264, 2689, 3089, 307, 1974, 689, 30, 682, 264, 1687, 11665, 13, 823, 11, 2361, 322, 613, 2283, 11, 718, 311, 1401, 264, 2283, 300, 366, 1974, 293, 1745, 552, 1214, 13, 440, 3387, 307, 281, 6964, 364, 9226, 337, 4084, 364, 2657, 13, 509, 652, 364, 9226, 281, 1884, 1097, 2720, 1164, 11, 510, 286, 914, 294, 264, 9226, 11, 264, 12649, 3170, 11, 300, 307, 11, 264, 1851, 281, 1884, 264, 2657, 13, 2102, 307, 341, 1851, 281, 1884, 264, 2657, 30, 440, 3170, 307, 1219, 20248, 9838, 1569, 284, 13, 1033, 30], "avg_logprob": -0.469572374172378, "compression_ratio": 1.7904411764705883, "no_speech_prob": 7.987022399902344e-06, "words": [{"start": 1368.48, "end": 1368.88, "word": "Connector.", "probability": 0.6648356119791666}, {"start": 1368.92, "end": 1369.04, "word": " And", "probability": 0.461669921875}, {"start": 1369.04, "end": 1369.38, "word": " we're", "probability": 0.4302978515625}, {"start": 1369.38, "end": 1369.38, "word": " done.", "probability": 0.8671875}, {"start": 1369.5, "end": 1369.54, "word": " It", "probability": 0.371337890625}, {"start": 1369.54, "end": 1369.62, "word": " doesn't", "probability": 0.7880859375}, {"start": 1369.62, "end": 1369.86, "word": " make", "probability": 0.316650390625}, {"start": 1369.86, "end": 1370.06, "word": " any", "probability": 0.6826171875}, {"start": 1370.06, "end": 1370.36, "word": " line", "probability": 0.51025390625}, {"start": 1370.36, "end": 1371.08, "word": " again.", "probability": 0.583984375}, {"start": 1371.26, "end": 1371.38, "word": " All", "probability": 0.78369140625}, {"start": 1371.38, "end": 1371.5, "word": " the", "probability": 0.69775390625}, {"start": 1371.5, "end": 1371.5, "word": " common", "probability": 0.423095703125}, {"start": 1371.5, "end": 1372.38, "word": " code", "probability": 0.83935546875}, {"start": 1372.38, "end": 1372.58, "word": " is", "probability": 0.763671875}, {"start": 1372.58, "end": 1372.8, "word": " present", "probability": 0.21337890625}, {"start": 1372.8, "end": 1373.04, "word": " where?", "probability": 0.546875}, {"start": 1373.46, "end": 1373.86, "word": " In", "probability": 0.8701171875}, {"start": 1373.86, "end": 1373.96, "word": " the", "probability": 0.5732421875}, {"start": 1373.96, "end": 1374.56, "word": " superclass.", "probability": 0.817138671875}, {"start": 1376.36, "end": 1376.58, "word": " Now,", "probability": 0.67919921875}, {"start": 1376.66, "end": 1376.8, "word": " based", "probability": 0.7373046875}, {"start": 1376.8, "end": 1377.02, "word": " on", "probability": 0.947265625}, {"start": 1377.02, "end": 1377.16, "word": " these", "probability": 0.283447265625}, {"start": 1377.16, "end": 1377.46, "word": " words,", "probability": 0.75634765625}, {"start": 1378.04, "end": 1378.26, "word": " let's", "probability": 0.8720703125}, {"start": 1378.26, "end": 1378.54, "word": " read", "probability": 0.89208984375}, {"start": 1378.54, "end": 1378.7, "word": " the", "probability": 0.50732421875}, {"start": 1378.7, "end": 1378.86, "word": " words", "probability": 0.62548828125}, {"start": 1378.86, "end": 1379.04, "word": " that", "probability": 0.3544921875}, {"start": 1379.04, "end": 1379.04, "word": " are", "probability": 0.71484375}, {"start": 1379.04, "end": 1379.14, "word": " present", "probability": 0.208740234375}, {"start": 1379.14, "end": 1379.28, "word": " and", "probability": 0.142822265625}, {"start": 1379.28, "end": 1379.52, "word": " connect", "probability": 0.443603515625}, {"start": 1379.52, "end": 1379.7, "word": " them", "probability": 0.72705078125}, {"start": 1379.7, "end": 1379.9, "word": " together.", "probability": 0.17529296875}, {"start": 1381.68, "end": 1382.08, "word": " The", "probability": 0.85400390625}, {"start": 1382.08, "end": 1382.3, "word": " goal", "probability": 0.72314453125}, {"start": 1382.3, "end": 1382.52, "word": " is", "probability": 0.77685546875}, {"start": 1382.52, "end": 1382.62, "word": " to", "probability": 0.62353515625}, {"start": 1382.62, "end": 1383.0, "word": " define", "probability": 0.8984375}, {"start": 1383.0, "end": 1383.22, "word": " an", "probability": 0.87451171875}, {"start": 1383.22, "end": 1383.7, "word": " interface", "probability": 0.876953125}, {"start": 1383.7, "end": 1384.0, "word": " for", "probability": 0.91552734375}, {"start": 1384.0, "end": 1384.52, "word": " creating", "probability": 0.896484375}, {"start": 1384.52, "end": 1384.74, "word": " an", "probability": 0.8544921875}, {"start": 1384.74, "end": 1385.02, "word": " object.", "probability": 0.97705078125}, {"start": 1385.44, "end": 1385.64, "word": " You", "probability": 0.81640625}, {"start": 1385.64, "end": 1385.98, "word": " make", "probability": 0.389404296875}, {"start": 1385.98, "end": 1386.12, "word": " an", "probability": 0.52587890625}, {"start": 1386.12, "end": 1386.62, "word": " interface", "probability": 0.90625}, {"start": 1386.62, "end": 1386.74, "word": " to", "probability": 0.4423828125}, {"start": 1386.74, "end": 1386.88, "word": " create", "probability": 0.68701171875}, {"start": 1386.88, "end": 1387.0, "word": " ...", "probability": 0.177490234375}, {"start": 1387.0, "end": 1387.16, "word": " Of", "probability": 0.5947265625}, {"start": 1387.16, "end": 1387.22, "word": " course,", "probability": 0.955078125}, {"start": 1387.3, "end": 1387.34, "word": " here", "probability": 0.70556640625}, {"start": 1387.34, "end": 1387.48, "word": " I", "probability": 0.64306640625}, {"start": 1387.48, "end": 1387.62, "word": " mean", "probability": 0.74951171875}, {"start": 1387.62, "end": 1387.72, "word": " in", "probability": 0.2626953125}, {"start": 1387.72, "end": 1387.82, "word": " the", "probability": 0.7939453125}, {"start": 1387.82, "end": 1388.2, "word": " interface,", "probability": 0.8310546875}, {"start": 1388.28, "end": 1388.32, "word": " the", "probability": 0.693359375}, {"start": 1388.32, "end": 1388.6, "word": " abstract", "probability": 0.7685546875}, {"start": 1388.6, "end": 1389.02, "word": " method,", "probability": 0.93212890625}, {"start": 1389.12, "end": 1389.2, "word": " that", "probability": 0.517578125}, {"start": 1389.2, "end": 1389.2, "word": " is,", "probability": 0.93115234375}, {"start": 1389.22, "end": 1389.34, "word": " the", "probability": 0.58935546875}, {"start": 1389.34, "end": 1389.5, "word": " face", "probability": 0.352783203125}, {"start": 1389.5, "end": 1389.68, "word": " to", "probability": 0.244873046875}, {"start": 1389.68, "end": 1389.92, "word": " create", "probability": 0.74853515625}, {"start": 1389.92, "end": 1390.12, "word": " the", "probability": 0.79638671875}, {"start": 1390.12, "end": 1390.38, "word": " object.", "probability": 0.9736328125}, {"start": 1391.06, "end": 1391.34, "word": " Who", "probability": 0.54736328125}, {"start": 1391.34, "end": 1391.44, "word": " is", "probability": 0.87939453125}, {"start": 1391.44, "end": 1391.62, "word": " this", "probability": 0.8984375}, {"start": 1391.62, "end": 1391.82, "word": " face", "probability": 0.5732421875}, {"start": 1391.82, "end": 1391.98, "word": " to", "probability": 0.74853515625}, {"start": 1391.98, "end": 1392.1, "word": " create", "probability": 0.8564453125}, {"start": 1392.1, "end": 1392.24, "word": " the", "probability": 0.904296875}, {"start": 1392.24, "end": 1392.44, "word": " object?", "probability": 0.9775390625}, {"start": 1392.52, "end": 1392.62, "word": " The", "probability": 0.8544921875}, {"start": 1392.62, "end": 1392.94, "word": " method", "probability": 0.94970703125}, {"start": 1392.94, "end": 1393.12, "word": " is", "probability": 0.3046875}, {"start": 1393.12, "end": 1393.4, "word": " called", "probability": 0.83544921875}, {"start": 1393.4, "end": 1395.04, "word": " CreateConnector.", "probability": 0.74957275390625}, {"start": 1395.62, "end": 1395.78, "word": " Okay?", "probability": 0.33740234375}], "temperature": 1.0}, {"id": 57, "seek": 140182, "start": 1396.66, "end": 1401.82, "text": "But let subclasses decide which class to instantiate", "tokens": [7835, 718, 1422, 11665, 279, 4536, 597, 1508, 281, 9836, 13024], "avg_logprob": -0.3110351686676343, "compression_ratio": 0.9285714285714286, "no_speech_prob": 8.344650268554688e-07, "words": [{"start": 1396.66, "end": 1396.98, "word": "But", "probability": 0.31103515625}, {"start": 1396.98, "end": 1397.42, "word": " let", "probability": 0.9326171875}, {"start": 1397.42, "end": 1399.18, "word": " subclasses", "probability": 0.8406575520833334}, {"start": 1399.18, "end": 1399.62, "word": " decide", "probability": 0.90234375}, {"start": 1399.62, "end": 1399.94, "word": " which", "probability": 0.93603515625}, {"start": 1399.94, "end": 1400.52, "word": " class", "probability": 0.9384765625}, {"start": 1400.52, "end": 1401.22, "word": " to", "probability": 0.93603515625}, {"start": 1401.22, "end": 1401.82, "word": " instantiate", "probability": 0.67626953125}], "temperature": 1.0}, {"id": 58, "seek": 143456, "start": 1407.96, "end": 1434.56, "text": "What is the class that they created? Factory method lets a class differ instantiation to subclass. It makes the main class, the superclass, distribute the differences among the subclasses. And it only has the common code. Instead of having to take all the common code and put it in the subclass because of a different line. Applicability. When do we use it?", "tokens": [3748, 307, 264, 1508, 300, 436, 2942, 30, 33375, 827, 3170, 6653, 257, 1508, 743, 9836, 6642, 281, 1422, 11665, 13, 467, 1669, 264, 2135, 1508, 11, 264, 1687, 11665, 11, 20594, 264, 7300, 3654, 264, 1422, 11665, 279, 13, 400, 309, 787, 575, 264, 2689, 3089, 13, 7156, 295, 1419, 281, 747, 439, 264, 2689, 3089, 293, 829, 309, 294, 264, 1422, 11665, 570, 295, 257, 819, 1622, 13, 26519, 2310, 13, 1133, 360, 321, 764, 309, 30], "avg_logprob": -0.519140613079071, "compression_ratio": 1.7, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1407.96, "end": 1408.26, "word": "What", "probability": 0.240234375}, {"start": 1408.26, "end": 1408.26, "word": " is", "probability": 0.4482421875}, {"start": 1408.26, "end": 1408.38, "word": " the", "probability": 0.7587890625}, {"start": 1408.38, "end": 1408.64, "word": " class", "probability": 0.7763671875}, {"start": 1408.64, "end": 1408.74, "word": " that", "probability": 0.322998046875}, {"start": 1408.74, "end": 1408.86, "word": " they", "probability": 0.4970703125}, {"start": 1408.86, "end": 1409.08, "word": " created?", "probability": 0.329833984375}, {"start": 1409.96, "end": 1410.5, "word": " Factory", "probability": 0.5673828125}, {"start": 1410.5, "end": 1410.94, "word": " method", "probability": 0.767578125}, {"start": 1410.94, "end": 1411.88, "word": " lets", "probability": 0.65283203125}, {"start": 1411.88, "end": 1412.2, "word": " a", "probability": 0.9560546875}, {"start": 1412.2, "end": 1412.66, "word": " class", "probability": 0.958984375}, {"start": 1412.66, "end": 1413.2, "word": " differ", "probability": 0.87109375}, {"start": 1413.2, "end": 1414.26, "word": " instantiation", "probability": 0.841552734375}, {"start": 1414.26, "end": 1415.04, "word": " to", "probability": 0.92626953125}, {"start": 1415.04, "end": 1415.4, "word": " subclass.", "probability": 0.796630859375}, {"start": 1416.24, "end": 1416.34, "word": " It", "probability": 0.38427734375}, {"start": 1416.34, "end": 1416.62, "word": " makes", "probability": 0.326416015625}, {"start": 1416.62, "end": 1416.76, "word": " the", "probability": 0.818359375}, {"start": 1416.76, "end": 1417.32, "word": " main", "probability": 0.418212890625}, {"start": 1417.32, "end": 1417.54, "word": " class,", "probability": 0.8466796875}, {"start": 1417.6, "end": 1417.66, "word": " the", "probability": 0.4580078125}, {"start": 1417.66, "end": 1418.34, "word": " superclass,", "probability": 0.838134765625}, {"start": 1419.14, "end": 1419.2, "word": " distribute", "probability": 0.161376953125}, {"start": 1419.2, "end": 1419.36, "word": " the", "probability": 0.375732421875}, {"start": 1419.36, "end": 1419.88, "word": " differences", "probability": 0.58203125}, {"start": 1419.88, "end": 1421.16, "word": " among", "probability": 0.2783203125}, {"start": 1421.16, "end": 1422.16, "word": " the", "probability": 0.41845703125}, {"start": 1422.16, "end": 1422.9, "word": " subclasses.", "probability": 0.7576497395833334}, {"start": 1422.9, "end": 1423.02, "word": " And", "probability": 0.52001953125}, {"start": 1423.02, "end": 1423.16, "word": " it", "probability": 0.5595703125}, {"start": 1423.16, "end": 1423.44, "word": " only", "probability": 0.322998046875}, {"start": 1423.44, "end": 1423.82, "word": " has", "probability": 0.4248046875}, {"start": 1423.82, "end": 1424.06, "word": " the", "probability": 0.66796875}, {"start": 1424.06, "end": 1424.14, "word": " common", "probability": 0.3603515625}, {"start": 1424.14, "end": 1424.46, "word": " code.", "probability": 0.92333984375}, {"start": 1425.76, "end": 1426.2, "word": " Instead", "probability": 0.69775390625}, {"start": 1426.2, "end": 1426.36, "word": " of", "probability": 0.95556640625}, {"start": 1426.36, "end": 1426.98, "word": " having", "probability": 0.30712890625}, {"start": 1426.98, "end": 1427.76, "word": " to", "probability": 0.93212890625}, {"start": 1427.76, "end": 1427.98, "word": " take", "probability": 0.6015625}, {"start": 1427.98, "end": 1428.32, "word": " all", "probability": 0.85107421875}, {"start": 1428.32, "end": 1428.44, "word": " the", "probability": 0.80078125}, {"start": 1428.44, "end": 1429.04, "word": " common", "probability": 0.7900390625}, {"start": 1429.04, "end": 1429.04, "word": " code", "probability": 0.9248046875}, {"start": 1429.04, "end": 1429.2, "word": " and", "probability": 0.42041015625}, {"start": 1429.2, "end": 1429.4, "word": " put", "probability": 0.61865234375}, {"start": 1429.4, "end": 1429.48, "word": " it", "probability": 0.80712890625}, {"start": 1429.48, "end": 1429.54, "word": " in", "probability": 0.78857421875}, {"start": 1429.54, "end": 1429.66, "word": " the", "probability": 0.7431640625}, {"start": 1429.66, "end": 1429.98, "word": " subclass", "probability": 0.9482421875}, {"start": 1429.98, "end": 1430.16, "word": " because", "probability": 0.1917724609375}, {"start": 1430.16, "end": 1430.38, "word": " of", "probability": 0.66650390625}, {"start": 1430.38, "end": 1430.62, "word": " a", "probability": 0.35546875}, {"start": 1430.62, "end": 1430.62, "word": " different", "probability": 0.304931640625}, {"start": 1430.62, "end": 1430.62, "word": " line.", "probability": 0.4033203125}, {"start": 1433.16, "end": 1433.72, "word": " Applicability.", "probability": 0.892333984375}, {"start": 1433.78, "end": 1433.9, "word": " When", "probability": 0.666015625}, {"start": 1433.9, "end": 1434.0, "word": " do", "probability": 0.53125}, {"start": 1434.0, "end": 1434.04, "word": " we", "probability": 0.87158203125}, {"start": 1434.04, "end": 1434.38, "word": " use", "probability": 0.89208984375}, {"start": 1434.38, "end": 1434.56, "word": " it?", "probability": 0.93115234375}], "temperature": 1.0}, {"id": 59, "seek": 145459, "start": 1435.57, "end": 1454.59, "text": " A class cannot anticipate if a class of objects must create. My class does not know which object will be created. What defines the object that will be created means the subclasses. Where is the goal of our example? The social media poster, the superclass, begins to create a connector. It does not know.", "tokens": [316, 1508, 2644, 21685, 498, 257, 1508, 295, 6565, 1633, 1884, 13, 1222, 1508, 775, 406, 458, 597, 2657, 486, 312, 2942, 13, 708, 23122, 264, 2657, 300, 486, 312, 2942, 1355, 264, 1422, 11665, 279, 13, 2305, 307, 264, 3387, 295, 527, 1365, 30, 440, 2093, 3021, 17171, 11, 264, 1687, 11665, 11, 7338, 281, 1884, 257, 19127, 13, 467, 775, 406, 458, 13], "avg_logprob": -0.5288825974319921, "compression_ratio": 1.6888888888888889, "no_speech_prob": 2.384185791015625e-07, "words": [{"start": 1435.57, "end": 1435.83, "word": " A", "probability": 0.3671875}, {"start": 1435.83, "end": 1436.15, "word": " class", "probability": 0.947265625}, {"start": 1436.15, "end": 1436.43, "word": " cannot", "probability": 0.72802734375}, {"start": 1436.43, "end": 1437.23, "word": " anticipate", "probability": 0.85595703125}, {"start": 1437.23, "end": 1437.89, "word": " if", "probability": 0.5947265625}, {"start": 1437.89, "end": 1437.97, "word": " a", "probability": 0.4345703125}, {"start": 1437.97, "end": 1438.23, "word": " class", "probability": 0.96044921875}, {"start": 1438.23, "end": 1438.35, "word": " of", "probability": 0.63720703125}, {"start": 1438.35, "end": 1438.63, "word": " objects", "probability": 0.51806640625}, {"start": 1438.63, "end": 1438.97, "word": " must", "probability": 0.491943359375}, {"start": 1438.97, "end": 1439.33, "word": " create.", "probability": 0.88525390625}, {"start": 1440.29, "end": 1440.57, "word": " My", "probability": 0.15869140625}, {"start": 1440.57, "end": 1440.91, "word": " class", "probability": 0.93017578125}, {"start": 1440.91, "end": 1441.25, "word": " does", "probability": 0.52001953125}, {"start": 1441.25, "end": 1441.25, "word": " not", "probability": 0.935546875}, {"start": 1441.25, "end": 1441.65, "word": " know", "probability": 0.87158203125}, {"start": 1441.65, "end": 1441.87, "word": " which", "probability": 0.46484375}, {"start": 1441.87, "end": 1442.39, "word": " object", "probability": 0.72314453125}, {"start": 1442.39, "end": 1443.49, "word": " will", "probability": 0.359619140625}, {"start": 1443.49, "end": 1443.67, "word": " be", "probability": 0.322998046875}, {"start": 1443.67, "end": 1443.81, "word": " created.", "probability": 0.7568359375}, {"start": 1444.19, "end": 1444.37, "word": " What", "probability": 0.2042236328125}, {"start": 1444.37, "end": 1444.73, "word": " defines", "probability": 0.44091796875}, {"start": 1444.73, "end": 1444.91, "word": " the", "probability": 0.5947265625}, {"start": 1444.91, "end": 1445.19, "word": " object", "probability": 0.8720703125}, {"start": 1445.19, "end": 1445.31, "word": " that", "probability": 0.50048828125}, {"start": 1445.31, "end": 1445.49, "word": " will", "probability": 0.482666015625}, {"start": 1445.49, "end": 1445.63, "word": " be", "probability": 0.86279296875}, {"start": 1445.63, "end": 1445.85, "word": " created", "probability": 0.83056640625}, {"start": 1445.85, "end": 1446.33, "word": " means", "probability": 0.2783203125}, {"start": 1446.33, "end": 1446.99, "word": " the", "probability": 0.69873046875}, {"start": 1446.99, "end": 1447.91, "word": " subclasses.", "probability": 0.6293131510416666}, {"start": 1448.17, "end": 1448.35, "word": " Where", "probability": 0.374267578125}, {"start": 1448.35, "end": 1448.43, "word": " is", "probability": 0.890625}, {"start": 1448.43, "end": 1448.59, "word": " the", "probability": 0.70849609375}, {"start": 1448.59, "end": 1448.59, "word": " goal", "probability": 0.33251953125}, {"start": 1448.59, "end": 1448.73, "word": " of", "probability": 0.828125}, {"start": 1448.73, "end": 1448.73, "word": " our", "probability": 0.59033203125}, {"start": 1448.73, "end": 1449.05, "word": " example?", "probability": 0.947265625}, {"start": 1449.91, "end": 1450.15, "word": " The", "probability": 0.5478515625}, {"start": 1450.15, "end": 1450.39, "word": " social", "probability": 0.845703125}, {"start": 1450.39, "end": 1450.67, "word": " media", "probability": 0.88623046875}, {"start": 1450.67, "end": 1451.05, "word": " poster,", "probability": 0.5400390625}, {"start": 1451.15, "end": 1451.21, "word": " the", "probability": 0.5947265625}, {"start": 1451.21, "end": 1451.87, "word": " superclass,", "probability": 0.793212890625}, {"start": 1452.31, "end": 1452.49, "word": " begins", "probability": 0.21630859375}, {"start": 1452.49, "end": 1452.63, "word": " to", "probability": 0.9365234375}, {"start": 1452.63, "end": 1452.75, "word": " create", "probability": 0.8173828125}, {"start": 1452.75, "end": 1452.97, "word": " a", "probability": 0.265380859375}, {"start": 1452.97, "end": 1453.23, "word": " connector.", "probability": 0.70263671875}, {"start": 1453.91, "end": 1454.09, "word": " It", "probability": 0.476318359375}, {"start": 1454.09, "end": 1454.25, "word": " does", "probability": 0.8291015625}, {"start": 1454.25, "end": 1454.27, "word": " not", "probability": 0.94677734375}, {"start": 1454.27, "end": 1454.59, "word": " know.", "probability": 0.8857421875}], "temperature": 1.0}, {"id": 60, "seek": 147503, "start": 1455.97, "end": 1475.03, "text": "What kind of connector depends on whom? On the subclass that I want to create. Am I right or not guys? So how did the subclass decide to create it? Through the factory method. So when you don't know what class or object you want to create and you have to define the subclasses, you use the factory method.", "tokens": [3748, 733, 295, 19127, 5946, 322, 7101, 30, 1282, 264, 1422, 11665, 300, 286, 528, 281, 1884, 13, 2012, 286, 558, 420, 406, 1074, 30, 407, 577, 630, 264, 1422, 11665, 4536, 281, 1884, 309, 30, 8927, 264, 9265, 3170, 13, 407, 562, 291, 500, 380, 458, 437, 1508, 420, 2657, 291, 528, 281, 1884, 293, 291, 362, 281, 6964, 264, 1422, 11665, 279, 11, 291, 764, 264, 9265, 3170, 13], "avg_logprob": -0.5651041600439284, "compression_ratio": 1.6666666666666667, "no_speech_prob": 2.4020671844482422e-05, "words": [{"start": 1455.97, "end": 1456.41, "word": "What", "probability": 0.07232666015625}, {"start": 1456.41, "end": 1456.57, "word": " kind", "probability": 0.2080078125}, {"start": 1456.57, "end": 1456.61, "word": " of", "probability": 0.97509765625}, {"start": 1456.61, "end": 1457.07, "word": " connector", "probability": 0.6640625}, {"start": 1457.07, "end": 1457.45, "word": " depends", "probability": 0.47509765625}, {"start": 1457.45, "end": 1457.67, "word": " on", "probability": 0.9091796875}, {"start": 1457.67, "end": 1457.91, "word": " whom?", "probability": 0.29638671875}, {"start": 1458.57, "end": 1459.01, "word": " On", "probability": 0.544921875}, {"start": 1459.01, "end": 1459.33, "word": " the", "probability": 0.7626953125}, {"start": 1459.33, "end": 1459.75, "word": " subclass", "probability": 0.864013671875}, {"start": 1459.75, "end": 1459.87, "word": " that", "probability": 0.38037109375}, {"start": 1459.87, "end": 1460.01, "word": " I", "probability": 0.497314453125}, {"start": 1460.01, "end": 1460.03, "word": " want", "probability": 0.4306640625}, {"start": 1460.03, "end": 1460.05, "word": " to", "probability": 0.95458984375}, {"start": 1460.05, "end": 1460.31, "word": " create.", "probability": 0.265869140625}, {"start": 1460.69, "end": 1460.91, "word": " Am", "probability": 0.400390625}, {"start": 1460.91, "end": 1460.91, "word": " I", "probability": 0.97705078125}, {"start": 1460.91, "end": 1460.93, "word": " right", "probability": 0.79443359375}, {"start": 1460.93, "end": 1461.15, "word": " or", "probability": 0.42333984375}, {"start": 1461.15, "end": 1461.15, "word": " not", "probability": 0.56103515625}, {"start": 1461.15, "end": 1461.33, "word": " guys?", "probability": 0.30615234375}, {"start": 1461.89, "end": 1462.19, "word": " So", "probability": 0.490478515625}, {"start": 1462.19, "end": 1462.47, "word": " how", "probability": 0.277099609375}, {"start": 1462.47, "end": 1464.11, "word": " did", "probability": 0.55029296875}, {"start": 1464.11, "end": 1464.33, "word": " the", "probability": 0.52001953125}, {"start": 1464.33, "end": 1464.79, "word": " subclass", "probability": 0.942626953125}, {"start": 1464.79, "end": 1464.81, "word": " decide", "probability": 0.0906982421875}, {"start": 1464.81, "end": 1464.89, "word": " to", "probability": 0.8349609375}, {"start": 1464.89, "end": 1465.07, "word": " create", "probability": 0.59521484375}, {"start": 1465.07, "end": 1465.21, "word": " it?", "probability": 0.66015625}, {"start": 1465.23, "end": 1465.43, "word": " Through", "probability": 0.39501953125}, {"start": 1465.43, "end": 1465.71, "word": " the", "probability": 0.70849609375}, {"start": 1465.71, "end": 1466.01, "word": " factory", "probability": 0.72705078125}, {"start": 1466.01, "end": 1467.07, "word": " method.", "probability": 0.94775390625}, {"start": 1467.55, "end": 1467.67, "word": " So", "probability": 0.591796875}, {"start": 1467.67, "end": 1467.85, "word": " when", "probability": 0.60595703125}, {"start": 1467.85, "end": 1469.53, "word": " you", "probability": 0.91064453125}, {"start": 1469.53, "end": 1469.71, "word": " don't", "probability": 0.782470703125}, {"start": 1469.71, "end": 1470.07, "word": " know", "probability": 0.88037109375}, {"start": 1470.07, "end": 1470.29, "word": " what", "probability": 0.40966796875}, {"start": 1470.29, "end": 1470.61, "word": " class", "probability": 0.68994140625}, {"start": 1470.61, "end": 1470.79, "word": " or", "probability": 0.1962890625}, {"start": 1470.79, "end": 1471.37, "word": " object", "probability": 0.84912109375}, {"start": 1471.37, "end": 1471.57, "word": " you", "probability": 0.236572265625}, {"start": 1471.57, "end": 1471.71, "word": " want", "probability": 0.6865234375}, {"start": 1471.71, "end": 1471.71, "word": " to", "probability": 0.87255859375}, {"start": 1471.71, "end": 1471.89, "word": " create", "probability": 0.85009765625}, {"start": 1471.89, "end": 1472.01, "word": " and", "probability": 0.55078125}, {"start": 1472.01, "end": 1472.09, "word": " you", "probability": 0.37890625}, {"start": 1472.09, "end": 1472.31, "word": " have", "probability": 0.43212890625}, {"start": 1472.31, "end": 1472.43, "word": " to", "probability": 0.9677734375}, {"start": 1472.43, "end": 1472.69, "word": " define", "probability": 0.34423828125}, {"start": 1472.69, "end": 1472.85, "word": " the", "probability": 0.54833984375}, {"start": 1472.85, "end": 1473.81, "word": " subclasses,", "probability": 0.75439453125}, {"start": 1473.93, "end": 1474.03, "word": " you", "probability": 0.52001953125}, {"start": 1474.03, "end": 1474.33, "word": " use", "probability": 0.66259765625}, {"start": 1474.33, "end": 1474.51, "word": " the", "probability": 0.8623046875}, {"start": 1474.51, "end": 1474.73, "word": " factory", "probability": 0.87939453125}, {"start": 1474.73, "end": 1475.03, "word": " method.", "probability": 0.9521484375}], "temperature": 1.0}, {"id": 61, "seek": 150541, "start": 1476.43, "end": 1505.41, "text": " The second point is almost the same A class wants its subclasses to specify the object it creates The class wants its subclasses to specify the object it creates Now, this is the drawing of the UML diagram of the factory method Let's check the UML class diagram and link it to the example we took This is the example we took Currently, we stopped putting the method post here, right? Actually, these two", "tokens": [440, 1150, 935, 307, 1920, 264, 912, 316, 1508, 2738, 1080, 1422, 11665, 279, 281, 16500, 264, 2657, 309, 7829, 440, 1508, 2738, 1080, 1422, 11665, 279, 281, 16500, 264, 2657, 309, 7829, 823, 11, 341, 307, 264, 6316, 295, 264, 624, 12683, 10686, 295, 264, 9265, 3170, 961, 311, 1520, 264, 624, 12683, 1508, 10686, 293, 2113, 309, 281, 264, 1365, 321, 1890, 639, 307, 264, 1365, 321, 1890, 19964, 11, 321, 5936, 3372, 264, 3170, 2183, 510, 11, 558, 30, 5135, 11, 613, 732], "avg_logprob": -0.4400143787778657, "compression_ratio": 1.8703703703703705, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1476.43, "end": 1476.63, "word": " The", "probability": 0.1268310546875}, {"start": 1476.63, "end": 1476.83, "word": " second", "probability": 0.432373046875}, {"start": 1476.83, "end": 1476.83, "word": " point", "probability": 0.87353515625}, {"start": 1476.83, "end": 1477.09, "word": " is", "probability": 0.876953125}, {"start": 1477.09, "end": 1477.31, "word": " almost", "probability": 0.250244140625}, {"start": 1477.31, "end": 1477.59, "word": " the", "probability": 0.75537109375}, {"start": 1477.59, "end": 1477.59, "word": " same", "probability": 0.9072265625}, {"start": 1477.59, "end": 1478.25, "word": " A", "probability": 0.16845703125}, {"start": 1478.25, "end": 1478.65, "word": " class", "probability": 0.953125}, {"start": 1478.65, "end": 1479.09, "word": " wants", "probability": 0.75927734375}, {"start": 1479.09, "end": 1479.41, "word": " its", "probability": 0.78076171875}, {"start": 1479.41, "end": 1480.13, "word": " subclasses", "probability": 0.8097330729166666}, {"start": 1480.13, "end": 1480.25, "word": " to", "probability": 0.93603515625}, {"start": 1480.25, "end": 1480.71, "word": " specify", "probability": 0.9580078125}, {"start": 1480.71, "end": 1480.99, "word": " the", "probability": 0.8994140625}, {"start": 1480.99, "end": 1481.23, "word": " object", "probability": 0.77392578125}, {"start": 1481.23, "end": 1481.43, "word": " it", "probability": 0.93310546875}, {"start": 1481.43, "end": 1481.83, "word": " creates", "probability": 0.8603515625}, {"start": 1481.83, "end": 1482.55, "word": " The", "probability": 0.67138671875}, {"start": 1482.55, "end": 1482.85, "word": " class", "probability": 0.7529296875}, {"start": 1482.85, "end": 1483.05, "word": " wants", "probability": 0.5673828125}, {"start": 1483.05, "end": 1483.21, "word": " its", "probability": 0.3486328125}, {"start": 1483.21, "end": 1483.75, "word": " subclasses", "probability": 0.9410807291666666}, {"start": 1483.75, "end": 1483.89, "word": " to", "probability": 0.94482421875}, {"start": 1483.89, "end": 1484.23, "word": " specify", "probability": 0.6279296875}, {"start": 1484.23, "end": 1484.37, "word": " the", "probability": 0.7822265625}, {"start": 1484.37, "end": 1484.81, "word": " object", "probability": 0.88623046875}, {"start": 1484.81, "end": 1485.45, "word": " it", "probability": 0.316162109375}, {"start": 1485.45, "end": 1486.05, "word": " creates", "probability": 0.7421875}, {"start": 1486.05, "end": 1487.19, "word": " Now,", "probability": 0.315673828125}, {"start": 1487.37, "end": 1487.69, "word": " this", "probability": 0.77001953125}, {"start": 1487.69, "end": 1487.69, "word": " is", "probability": 0.845703125}, {"start": 1487.69, "end": 1487.75, "word": " the", "probability": 0.57861328125}, {"start": 1487.75, "end": 1487.93, "word": " drawing", "probability": 0.235595703125}, {"start": 1487.93, "end": 1488.11, "word": " of", "probability": 0.93212890625}, {"start": 1488.11, "end": 1488.15, "word": " the", "probability": 0.8154296875}, {"start": 1488.15, "end": 1488.37, "word": " UML", "probability": 0.829833984375}, {"start": 1488.37, "end": 1488.83, "word": " diagram", "probability": 0.81103515625}, {"start": 1488.83, "end": 1489.21, "word": " of", "probability": 0.56591796875}, {"start": 1489.21, "end": 1489.39, "word": " the", "probability": 0.69775390625}, {"start": 1489.39, "end": 1489.65, "word": " factory", "probability": 0.33740234375}, {"start": 1489.65, "end": 1489.97, "word": " method", "probability": 0.94482421875}, {"start": 1489.97, "end": 1490.53, "word": " Let's", "probability": 0.783447265625}, {"start": 1490.53, "end": 1491.95, "word": " check", "probability": 0.437255859375}, {"start": 1491.95, "end": 1492.39, "word": " the", "probability": 0.78271484375}, {"start": 1492.39, "end": 1492.71, "word": " UML", "probability": 0.94287109375}, {"start": 1492.71, "end": 1493.25, "word": " class", "probability": 0.84326171875}, {"start": 1493.25, "end": 1493.59, "word": " diagram", "probability": 0.916015625}, {"start": 1493.59, "end": 1493.75, "word": " and", "probability": 0.65234375}, {"start": 1493.75, "end": 1493.99, "word": " link", "probability": 0.385498046875}, {"start": 1493.99, "end": 1494.17, "word": " it", "probability": 0.8720703125}, {"start": 1494.17, "end": 1494.23, "word": " to", "probability": 0.77783203125}, {"start": 1494.23, "end": 1494.31, "word": " the", "probability": 0.83447265625}, {"start": 1494.31, "end": 1494.59, "word": " example", "probability": 0.9482421875}, {"start": 1494.59, "end": 1494.77, "word": " we", "probability": 0.6787109375}, {"start": 1494.77, "end": 1495.05, "word": " took", "probability": 0.63232421875}, {"start": 1495.05, "end": 1495.77, "word": " This", "probability": 0.26904296875}, {"start": 1495.77, "end": 1496.33, "word": " is", "probability": 0.88720703125}, {"start": 1496.33, "end": 1496.41, "word": " the", "probability": 0.90087890625}, {"start": 1496.41, "end": 1496.63, "word": " example", "probability": 0.962890625}, {"start": 1496.63, "end": 1496.85, "word": " we", "probability": 0.76171875}, {"start": 1496.85, "end": 1497.11, "word": " took", "probability": 0.85546875}, {"start": 1497.11, "end": 1497.81, "word": " Currently,", "probability": 0.271240234375}, {"start": 1499.75, "end": 1499.85, "word": " we", "probability": 0.443115234375}, {"start": 1499.85, "end": 1499.85, "word": " stopped", "probability": 0.37646484375}, {"start": 1499.85, "end": 1499.85, "word": " putting", "probability": 0.4052734375}, {"start": 1499.85, "end": 1499.85, "word": " the", "probability": 0.326171875}, {"start": 1499.85, "end": 1500.11, "word": " method", "probability": 0.8984375}, {"start": 1500.11, "end": 1500.67, "word": " post", "probability": 0.482177734375}, {"start": 1500.67, "end": 1502.41, "word": " here,", "probability": 0.74462890625}, {"start": 1502.57, "end": 1502.73, "word": " right?", "probability": 0.58251953125}, {"start": 1503.49, "end": 1504.05, "word": " Actually,", "probability": 0.41748046875}, {"start": 1504.25, "end": 1504.95, "word": " these", "probability": 0.69580078125}, {"start": 1504.95, "end": 1505.41, "word": " two", "probability": 0.90234375}], "temperature": 1.0}, {"id": 62, "seek": 153323, "start": 1507.21, "end": 1533.23, "text": " I'm going to extend to one class called social media poster Right guys? And here we put the method post And we put another method called create connector Right guys? This is abstract, right? And this is method post And here I have post Because they started to cover it from where?", "tokens": [286, 478, 516, 281, 10101, 281, 472, 1508, 1219, 2093, 3021, 17171, 1779, 1074, 30, 400, 510, 321, 829, 264, 3170, 2183, 400, 321, 829, 1071, 3170, 1219, 1884, 19127, 1779, 1074, 30, 639, 307, 12649, 11, 558, 30, 400, 341, 307, 3170, 2183, 400, 510, 286, 362, 2183, 1436, 436, 1409, 281, 2060, 309, 490, 689, 30], "avg_logprob": -0.5895127159053997, "compression_ratio": 1.6337209302325582, "no_speech_prob": 2.384185791015625e-06, "words": [{"start": 1507.21, "end": 1507.55, "word": " I'm", "probability": 0.212738037109375}, {"start": 1507.55, "end": 1507.63, "word": " going", "probability": 0.54443359375}, {"start": 1507.63, "end": 1507.63, "word": " to", "probability": 0.96728515625}, {"start": 1507.63, "end": 1508.23, "word": " extend", "probability": 0.91748046875}, {"start": 1508.23, "end": 1509.15, "word": " to", "probability": 0.68798828125}, {"start": 1509.15, "end": 1509.71, "word": " one", "probability": 0.406005859375}, {"start": 1509.71, "end": 1509.73, "word": " class", "probability": 0.931640625}, {"start": 1509.73, "end": 1510.09, "word": " called", "probability": 0.1766357421875}, {"start": 1510.09, "end": 1510.79, "word": " social", "probability": 0.541015625}, {"start": 1510.79, "end": 1512.73, "word": " media", "probability": 0.74462890625}, {"start": 1512.73, "end": 1514.81, "word": " poster", "probability": 0.71728515625}, {"start": 1514.81, "end": 1515.55, "word": " Right", "probability": 0.2060546875}, {"start": 1515.55, "end": 1515.89, "word": " guys?", "probability": 0.365478515625}, {"start": 1516.03, "end": 1516.47, "word": " And", "probability": 0.59521484375}, {"start": 1516.47, "end": 1516.63, "word": " here", "probability": 0.7041015625}, {"start": 1516.63, "end": 1516.77, "word": " we", "probability": 0.65966796875}, {"start": 1516.77, "end": 1516.99, "word": " put", "probability": 0.40771484375}, {"start": 1516.99, "end": 1517.19, "word": " the", "probability": 0.368896484375}, {"start": 1517.19, "end": 1517.65, "word": " method", "probability": 0.93359375}, {"start": 1517.65, "end": 1518.83, "word": " post", "probability": 0.56298828125}, {"start": 1518.83, "end": 1519.09, "word": " And", "probability": 0.44091796875}, {"start": 1519.09, "end": 1519.49, "word": " we", "probability": 0.505859375}, {"start": 1519.49, "end": 1519.49, "word": " put", "probability": 0.63232421875}, {"start": 1519.49, "end": 1519.85, "word": " another", "probability": 0.529296875}, {"start": 1519.85, "end": 1520.13, "word": " method", "probability": 0.951171875}, {"start": 1520.13, "end": 1520.65, "word": " called", "probability": 0.390869140625}, {"start": 1520.65, "end": 1521.19, "word": " create", "probability": 0.85546875}, {"start": 1521.19, "end": 1523.55, "word": " connector", "probability": 0.88525390625}, {"start": 1523.55, "end": 1524.53, "word": " Right", "probability": 0.82861328125}, {"start": 1524.53, "end": 1524.87, "word": " guys?", "probability": 0.83251953125}, {"start": 1525.29, "end": 1525.97, "word": " This", "probability": 0.7177734375}, {"start": 1525.97, "end": 1526.01, "word": " is", "probability": 0.7119140625}, {"start": 1526.01, "end": 1526.59, "word": " abstract,", "probability": 0.732421875}, {"start": 1526.97, "end": 1527.23, "word": " right?", "probability": 0.7529296875}, {"start": 1527.41, "end": 1528.03, "word": " And", "probability": 0.8427734375}, {"start": 1528.03, "end": 1528.23, "word": " this", "probability": 0.86962890625}, {"start": 1528.23, "end": 1528.27, "word": " is", "probability": 0.7685546875}, {"start": 1528.27, "end": 1528.49, "word": " method", "probability": 0.611328125}, {"start": 1528.49, "end": 1528.81, "word": " post", "probability": 0.8828125}, {"start": 1528.81, "end": 1528.91, "word": " And", "probability": 0.62060546875}, {"start": 1528.91, "end": 1529.21, "word": " here", "probability": 0.1531982421875}, {"start": 1529.21, "end": 1529.59, "word": " I", "probability": 0.720703125}, {"start": 1529.59, "end": 1529.73, "word": " have", "probability": 0.42333984375}, {"start": 1529.73, "end": 1531.33, "word": " post", "probability": 0.31494140625}, {"start": 1531.33, "end": 1532.15, "word": " Because", "probability": 0.4189453125}, {"start": 1532.15, "end": 1532.49, "word": " they", "probability": 0.480224609375}, {"start": 1532.49, "end": 1532.49, "word": " started", "probability": 0.1993408203125}, {"start": 1532.49, "end": 1532.53, "word": " to", "probability": 0.59423828125}, {"start": 1532.53, "end": 1532.73, "word": " cover", "probability": 0.172119140625}, {"start": 1532.73, "end": 1532.93, "word": " it", "probability": 0.671875}, {"start": 1532.93, "end": 1532.97, "word": " from", "probability": 0.68603515625}, {"start": 1532.97, "end": 1533.23, "word": " where?", "probability": 0.75146484375}], "temperature": 1.0}, {"id": 63, "seek": 156005, "start": 1534.51, "end": 1560.05, "text": " But these should now implement to whom? To create a connector. This is the modification we made. Let's connect this drawing to what is here. Now I have a product and I have concrete products. These are similar to the connectors that I started using. Okay, so here is the drawing with a reverse.", "tokens": [583, 613, 820, 586, 4445, 281, 7101, 30, 1407, 1884, 257, 19127, 13, 639, 307, 264, 26747, 321, 1027, 13, 961, 311, 1745, 341, 6316, 281, 437, 307, 510, 13, 823, 286, 362, 257, 1674, 293, 286, 362, 9859, 3383, 13, 1981, 366, 2531, 281, 264, 31865, 300, 286, 1409, 1228, 13, 1033, 11, 370, 510, 307, 264, 6316, 365, 257, 9943, 13], "avg_logprob": -0.6347656091675162, "compression_ratio": 1.544502617801047, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1534.51, "end": 1535.15, "word": " But", "probability": 0.33642578125}, {"start": 1535.15, "end": 1535.45, "word": " these", "probability": 0.205810546875}, {"start": 1535.45, "end": 1535.85, "word": " should", "probability": 0.1861572265625}, {"start": 1535.85, "end": 1536.11, "word": " now", "probability": 0.3330078125}, {"start": 1536.11, "end": 1536.69, "word": " implement", "probability": 0.380126953125}, {"start": 1536.69, "end": 1537.01, "word": " to", "probability": 0.32861328125}, {"start": 1537.01, "end": 1537.17, "word": " whom?", "probability": 0.548828125}, {"start": 1537.91, "end": 1538.55, "word": " To", "probability": 0.689453125}, {"start": 1538.55, "end": 1539.09, "word": " create", "probability": 0.68505859375}, {"start": 1539.09, "end": 1540.37, "word": " a", "probability": 0.3974609375}, {"start": 1540.37, "end": 1540.77, "word": " connector.", "probability": 0.75634765625}, {"start": 1543.43, "end": 1544.07, "word": " This", "probability": 0.5810546875}, {"start": 1544.07, "end": 1544.07, "word": " is", "probability": 0.48291015625}, {"start": 1544.07, "end": 1544.21, "word": " the", "probability": 0.71533203125}, {"start": 1544.21, "end": 1544.59, "word": " modification", "probability": 0.65673828125}, {"start": 1544.59, "end": 1545.17, "word": " we", "probability": 0.5849609375}, {"start": 1545.17, "end": 1545.39, "word": " made.", "probability": 0.475830078125}, {"start": 1545.53, "end": 1545.85, "word": " Let's", "probability": 0.843994140625}, {"start": 1545.85, "end": 1546.17, "word": " connect", "probability": 0.307861328125}, {"start": 1546.17, "end": 1546.67, "word": " this", "probability": 0.7236328125}, {"start": 1546.67, "end": 1546.67, "word": " drawing", "probability": 0.60302734375}, {"start": 1546.67, "end": 1547.09, "word": " to", "probability": 0.326904296875}, {"start": 1547.09, "end": 1547.19, "word": " what", "probability": 0.5517578125}, {"start": 1547.19, "end": 1547.25, "word": " is", "probability": 0.48193359375}, {"start": 1547.25, "end": 1547.59, "word": " here.", "probability": 0.43896484375}, {"start": 1550.01, "end": 1550.65, "word": " Now", "probability": 0.89599609375}, {"start": 1550.65, "end": 1551.39, "word": " I", "probability": 0.352783203125}, {"start": 1551.39, "end": 1551.73, "word": " have", "probability": 0.9228515625}, {"start": 1551.73, "end": 1552.51, "word": " a", "probability": 0.79931640625}, {"start": 1552.51, "end": 1552.87, "word": " product", "probability": 0.8876953125}, {"start": 1552.87, "end": 1553.13, "word": " and", "probability": 0.423828125}, {"start": 1553.13, "end": 1553.27, "word": " I", "probability": 0.386962890625}, {"start": 1553.27, "end": 1553.73, "word": " have", "probability": 0.4990234375}, {"start": 1553.73, "end": 1554.25, "word": " concrete", "probability": 0.775390625}, {"start": 1554.25, "end": 1554.83, "word": " products.", "probability": 0.87646484375}, {"start": 1555.21, "end": 1555.85, "word": " These", "probability": 0.71826171875}, {"start": 1555.85, "end": 1555.99, "word": " are", "probability": 0.712890625}, {"start": 1555.99, "end": 1556.23, "word": " similar", "probability": 0.353515625}, {"start": 1556.23, "end": 1556.83, "word": " to", "probability": 0.962890625}, {"start": 1556.83, "end": 1556.93, "word": " the", "probability": 0.517578125}, {"start": 1556.93, "end": 1557.39, "word": " connectors", "probability": 0.87646484375}, {"start": 1557.39, "end": 1557.67, "word": " that", "probability": 0.6806640625}, {"start": 1557.67, "end": 1557.81, "word": " I", "probability": 0.97021484375}, {"start": 1557.81, "end": 1557.99, "word": " started", "probability": 0.25927734375}, {"start": 1557.99, "end": 1558.37, "word": " using.", "probability": 0.8212890625}, {"start": 1558.79, "end": 1558.97, "word": " Okay,", "probability": 0.2384033203125}, {"start": 1559.13, "end": 1559.19, "word": " so", "probability": 0.3759765625}, {"start": 1559.19, "end": 1559.33, "word": " here", "probability": 0.64404296875}, {"start": 1559.33, "end": 1559.37, "word": " is", "probability": 0.42138671875}, {"start": 1559.37, "end": 1559.43, "word": " the", "probability": 0.734375}, {"start": 1559.43, "end": 1559.61, "word": " drawing", "probability": 0.5478515625}, {"start": 1559.61, "end": 1559.79, "word": " with", "probability": 0.51025390625}, {"start": 1559.79, "end": 1559.89, "word": " a", "probability": 0.362548828125}, {"start": 1559.89, "end": 1560.05, "word": " reverse.", "probability": 0.1959228515625}], "temperature": 1.0}, {"id": 64, "seek": 158826, "start": 1561.68, "end": 1588.26, "text": " They are on the left and on the right. These are the product and the complete product. They are the same in the example. The connector is the social media connector from which it originates, which is WhatsApp, Facebook, Twitter and others. These connectors will be used here. We used the connectors from the posters, right? Here, we used these products from Creator and Concrete Creator.", "tokens": [814, 366, 322, 264, 1411, 293, 322, 264, 558, 13, 1981, 366, 264, 1674, 293, 264, 3566, 1674, 13, 814, 366, 264, 912, 294, 264, 1365, 13, 440, 19127, 307, 264, 2093, 3021, 19127, 490, 597, 309, 4957, 1024, 11, 597, 307, 30513, 11, 4384, 11, 5794, 293, 2357, 13, 1981, 31865, 486, 312, 1143, 510, 13, 492, 1143, 264, 31865, 490, 264, 28172, 11, 558, 30, 1692, 11, 321, 1143, 613, 3383, 490, 28208, 293, 18200, 7600, 28208, 13], "avg_logprob": -0.6415895179465965, "compression_ratio": 1.830188679245283, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 1561.68, "end": 1561.92, "word": " They", "probability": 0.1378173828125}, {"start": 1561.92, "end": 1562.04, "word": " are", "probability": 0.74365234375}, {"start": 1562.04, "end": 1563.24, "word": " on", "probability": 0.1588134765625}, {"start": 1563.24, "end": 1563.54, "word": " the", "probability": 0.4658203125}, {"start": 1563.54, "end": 1563.74, "word": " left", "probability": 0.64599609375}, {"start": 1563.74, "end": 1563.9, "word": " and", "probability": 0.716796875}, {"start": 1563.9, "end": 1564.0, "word": " on", "probability": 0.1473388671875}, {"start": 1564.0, "end": 1564.04, "word": " the", "probability": 0.92041015625}, {"start": 1564.04, "end": 1564.24, "word": " right.", "probability": 0.8583984375}, {"start": 1565.02, "end": 1565.54, "word": " These", "probability": 0.33349609375}, {"start": 1565.54, "end": 1565.7, "word": " are", "probability": 0.2607421875}, {"start": 1565.7, "end": 1565.8, "word": " the", "probability": 0.5712890625}, {"start": 1565.8, "end": 1566.12, "word": " product", "probability": 0.396728515625}, {"start": 1566.12, "end": 1566.22, "word": " and", "probability": 0.5400390625}, {"start": 1566.22, "end": 1566.3, "word": " the", "probability": 0.362548828125}, {"start": 1566.3, "end": 1566.56, "word": " complete", "probability": 0.411376953125}, {"start": 1566.56, "end": 1567.1, "word": " product.", "probability": 0.85693359375}, {"start": 1567.18, "end": 1567.28, "word": " They", "probability": 0.60888671875}, {"start": 1567.28, "end": 1567.32, "word": " are", "probability": 0.4970703125}, {"start": 1567.32, "end": 1567.46, "word": " the", "probability": 0.15869140625}, {"start": 1567.46, "end": 1567.6, "word": " same", "probability": 0.55615234375}, {"start": 1567.6, "end": 1567.8, "word": " in", "probability": 0.497802734375}, {"start": 1567.8, "end": 1567.84, "word": " the", "probability": 0.51708984375}, {"start": 1567.84, "end": 1568.12, "word": " example.", "probability": 0.85302734375}, {"start": 1568.22, "end": 1568.32, "word": " The", "probability": 0.5927734375}, {"start": 1568.32, "end": 1568.86, "word": " connector", "probability": 0.330322265625}, {"start": 1568.86, "end": 1569.64, "word": " is", "probability": 0.5126953125}, {"start": 1569.64, "end": 1570.12, "word": " the", "probability": 0.3818359375}, {"start": 1570.12, "end": 1570.24, "word": " social", "probability": 0.8623046875}, {"start": 1570.24, "end": 1570.5, "word": " media", "probability": 0.85009765625}, {"start": 1570.5, "end": 1570.86, "word": " connector", "probability": 0.7841796875}, {"start": 1570.86, "end": 1571.02, "word": " from", "probability": 0.130615234375}, {"start": 1571.02, "end": 1571.02, "word": " which", "probability": 0.9033203125}, {"start": 1571.02, "end": 1571.1, "word": " it", "probability": 0.284423828125}, {"start": 1571.1, "end": 1571.48, "word": " originates,", "probability": 0.60162353515625}, {"start": 1571.82, "end": 1571.96, "word": " which", "probability": 0.52294921875}, {"start": 1571.96, "end": 1572.08, "word": " is", "probability": 0.70458984375}, {"start": 1572.08, "end": 1572.4, "word": " WhatsApp,", "probability": 0.4912109375}, {"start": 1572.56, "end": 1573.24, "word": " Facebook,", "probability": 0.650390625}, {"start": 1573.78, "end": 1574.16, "word": " Twitter", "probability": 0.88720703125}, {"start": 1574.16, "end": 1574.28, "word": " and", "probability": 0.5654296875}, {"start": 1574.28, "end": 1574.48, "word": " others.", "probability": 0.3984375}, {"start": 1575.68, "end": 1576.1, "word": " These", "probability": 0.38916015625}, {"start": 1576.1, "end": 1577.04, "word": " connectors", "probability": 0.8095703125}, {"start": 1577.04, "end": 1577.72, "word": " will", "probability": 0.646484375}, {"start": 1577.72, "end": 1577.92, "word": " be", "probability": 0.90771484375}, {"start": 1577.92, "end": 1578.38, "word": " used", "probability": 0.92236328125}, {"start": 1578.38, "end": 1578.96, "word": " here.", "probability": 0.2259521484375}, {"start": 1579.38, "end": 1579.9, "word": " We", "probability": 0.51123046875}, {"start": 1579.9, "end": 1580.4, "word": " used", "probability": 0.7646484375}, {"start": 1580.4, "end": 1580.52, "word": " the", "probability": 0.311279296875}, {"start": 1580.52, "end": 1580.52, "word": " connectors", "probability": 0.68701171875}, {"start": 1580.52, "end": 1580.72, "word": " from", "probability": 0.58740234375}, {"start": 1580.72, "end": 1580.82, "word": " the", "probability": 0.63623046875}, {"start": 1580.82, "end": 1581.24, "word": " posters,", "probability": 0.8466796875}, {"start": 1581.48, "end": 1581.72, "word": " right?", "probability": 0.8125}, {"start": 1583.08, "end": 1583.6, "word": " Here,", "probability": 0.359375}, {"start": 1583.68, "end": 1583.86, "word": " we", "probability": 0.42041015625}, {"start": 1583.86, "end": 1583.86, "word": " used", "probability": 0.8720703125}, {"start": 1583.86, "end": 1583.86, "word": " these", "probability": 0.36572265625}, {"start": 1583.86, "end": 1584.48, "word": " products", "probability": 0.78173828125}, {"start": 1584.48, "end": 1585.72, "word": " from", "probability": 0.8525390625}, {"start": 1585.72, "end": 1586.56, "word": " Creator", "probability": 0.39697265625}, {"start": 1586.56, "end": 1587.44, "word": " and", "probability": 0.91552734375}, {"start": 1587.44, "end": 1587.84, "word": " Concrete", "probability": 0.888671875}, {"start": 1587.84, "end": 1588.26, "word": " Creator.", "probability": 0.9541015625}], "temperature": 1.0}, {"id": 65, "seek": 160749, "start": 1589.37, "end": 1607.49, "text": " Because who represents the creator in our example? The social media poster, this superclass, which was not even present, but why did I make it? To unify the common code, okay? So this creator represents the social media poster, and these are the concrete creators, which can be multiple", "tokens": [1436, 567, 8855, 264, 14181, 294, 527, 1365, 30, 440, 2093, 3021, 17171, 11, 341, 1687, 11665, 11, 597, 390, 406, 754, 1974, 11, 457, 983, 630, 286, 652, 309, 30, 1407, 517, 2505, 264, 2689, 3089, 11, 1392, 30, 407, 341, 14181, 8855, 264, 2093, 3021, 17171, 11, 293, 613, 366, 264, 9859, 16039, 11, 597, 393, 312, 3866], "avg_logprob": -0.4723360694822718, "compression_ratio": 1.6494252873563218, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 1589.37, "end": 1589.73, "word": " Because", "probability": 0.182373046875}, {"start": 1589.73, "end": 1590.13, "word": " who", "probability": 0.478271484375}, {"start": 1590.13, "end": 1590.51, "word": " represents", "probability": 0.56689453125}, {"start": 1590.51, "end": 1590.67, "word": " the", "probability": 0.7265625}, {"start": 1590.67, "end": 1591.05, "word": " creator", "probability": 0.86572265625}, {"start": 1591.05, "end": 1591.29, "word": " in", "probability": 0.66748046875}, {"start": 1591.29, "end": 1591.73, "word": " our", "probability": 0.81494140625}, {"start": 1591.73, "end": 1591.73, "word": " example?", "probability": 0.87255859375}, {"start": 1592.87, "end": 1592.97, "word": " The", "probability": 0.5859375}, {"start": 1592.97, "end": 1593.23, "word": " social", "probability": 0.89697265625}, {"start": 1593.23, "end": 1593.49, "word": " media", "probability": 0.89501953125}, {"start": 1593.49, "end": 1593.95, "word": " poster,", "probability": 0.68896484375}, {"start": 1594.73, "end": 1594.95, "word": " this", "probability": 0.62890625}, {"start": 1594.95, "end": 1595.71, "word": " superclass,", "probability": 0.6307373046875}, {"start": 1596.25, "end": 1596.31, "word": " which", "probability": 0.81005859375}, {"start": 1596.31, "end": 1596.57, "word": " was", "probability": 0.293701171875}, {"start": 1596.57, "end": 1596.83, "word": " not", "probability": 0.78564453125}, {"start": 1596.83, "end": 1597.09, "word": " even", "probability": 0.31396484375}, {"start": 1597.09, "end": 1597.47, "word": " present,", "probability": 0.387939453125}, {"start": 1597.57, "end": 1597.67, "word": " but", "probability": 0.78466796875}, {"start": 1597.67, "end": 1597.99, "word": " why", "probability": 0.150390625}, {"start": 1597.99, "end": 1598.03, "word": " did", "probability": 0.8291015625}, {"start": 1598.03, "end": 1598.03, "word": " I", "probability": 0.96044921875}, {"start": 1598.03, "end": 1598.29, "word": " make", "probability": 0.55517578125}, {"start": 1598.29, "end": 1598.49, "word": " it?", "probability": 0.919921875}, {"start": 1598.93, "end": 1599.45, "word": " To", "probability": 0.6279296875}, {"start": 1599.45, "end": 1599.81, "word": " unify", "probability": 0.6395263671875}, {"start": 1599.81, "end": 1599.95, "word": " the", "probability": 0.873046875}, {"start": 1599.95, "end": 1599.95, "word": " common", "probability": 0.60498046875}, {"start": 1599.95, "end": 1600.53, "word": " code,", "probability": 0.8994140625}, {"start": 1601.03, "end": 1601.29, "word": " okay?", "probability": 0.3369140625}, {"start": 1601.43, "end": 1601.51, "word": " So", "probability": 0.8583984375}, {"start": 1601.51, "end": 1601.69, "word": " this", "probability": 0.77001953125}, {"start": 1601.69, "end": 1602.31, "word": " creator", "probability": 0.93017578125}, {"start": 1602.31, "end": 1603.21, "word": " represents", "probability": 0.84765625}, {"start": 1603.21, "end": 1603.37, "word": " the", "probability": 0.83984375}, {"start": 1603.37, "end": 1603.59, "word": " social", "probability": 0.93994140625}, {"start": 1603.59, "end": 1603.87, "word": " media", "probability": 0.880859375}, {"start": 1603.87, "end": 1604.23, "word": " poster,", "probability": 0.8759765625}, {"start": 1604.75, "end": 1604.79, "word": " and", "probability": 0.8974609375}, {"start": 1604.79, "end": 1605.09, "word": " these", "probability": 0.79052734375}, {"start": 1605.09, "end": 1605.39, "word": " are", "probability": 0.456787109375}, {"start": 1605.39, "end": 1605.51, "word": " the", "probability": 0.57568359375}, {"start": 1605.51, "end": 1605.91, "word": " concrete", "probability": 0.92041015625}, {"start": 1605.91, "end": 1606.47, "word": " creators,", "probability": 0.939453125}, {"start": 1606.59, "end": 1606.69, "word": " which", "probability": 0.814453125}, {"start": 1606.69, "end": 1606.89, "word": " can", "probability": 0.62158203125}, {"start": 1606.89, "end": 1607.07, "word": " be", "probability": 0.8896484375}, {"start": 1607.07, "end": 1607.49, "word": " multiple", "probability": 0.46435546875}], "temperature": 1.0}, {"id": 66, "seek": 163658, "start": 1608.46, "end": 1636.58, "text": " He puts one, but it has multiple meanings. This is the social media poster, Facebook poster, Whatsapp poster and Twitter poster. He called them concrete creators. Because this creator is the one who will create the product, right? It is not me from the poster who created the creator, the connector. It is not me from the Facebook poster who created the Facebook connector. This is the same thing. The creator wants to create a product, right?", "tokens": [634, 8137, 472, 11, 457, 309, 575, 3866, 28138, 13, 639, 307, 264, 2093, 3021, 17171, 11, 4384, 17171, 11, 22051, 1746, 17171, 293, 5794, 17171, 13, 634, 1219, 552, 9859, 16039, 13, 1436, 341, 14181, 307, 264, 472, 567, 486, 1884, 264, 1674, 11, 558, 30, 467, 307, 406, 385, 490, 264, 17171, 567, 2942, 264, 14181, 11, 264, 19127, 13, 467, 307, 406, 385, 490, 264, 4384, 17171, 567, 2942, 264, 4384, 19127, 13, 639, 307, 264, 912, 551, 13, 440, 14181, 2738, 281, 1884, 257, 1674, 11, 558, 30], "avg_logprob": -0.4855510829597391, "compression_ratio": 2.0, "no_speech_prob": 6.67572021484375e-06, "words": [{"start": 1608.46, "end": 1608.94, "word": " He", "probability": 0.300048828125}, {"start": 1608.94, "end": 1609.26, "word": " puts", "probability": 0.21435546875}, {"start": 1609.26, "end": 1609.66, "word": " one,", "probability": 0.58544921875}, {"start": 1609.74, "end": 1609.96, "word": " but", "probability": 0.81201171875}, {"start": 1609.96, "end": 1610.14, "word": " it", "probability": 0.30078125}, {"start": 1610.14, "end": 1610.18, "word": " has", "probability": 0.445068359375}, {"start": 1610.18, "end": 1611.16, "word": " multiple", "probability": 0.32763671875}, {"start": 1611.16, "end": 1611.26, "word": " meanings.", "probability": 0.90283203125}, {"start": 1611.78, "end": 1612.18, "word": " This", "probability": 0.42724609375}, {"start": 1612.18, "end": 1612.42, "word": " is", "probability": 0.62646484375}, {"start": 1612.42, "end": 1612.66, "word": " the", "probability": 0.410888671875}, {"start": 1612.66, "end": 1612.94, "word": " social", "probability": 0.85791015625}, {"start": 1612.94, "end": 1613.3, "word": " media", "probability": 0.900390625}, {"start": 1613.3, "end": 1614.06, "word": " poster,", "probability": 0.5244140625}, {"start": 1615.22, "end": 1615.8, "word": " Facebook", "probability": 0.2379150390625}, {"start": 1615.8, "end": 1616.38, "word": " poster,", "probability": 0.351318359375}, {"start": 1616.52, "end": 1616.9, "word": " Whatsapp", "probability": 0.6949462890625}, {"start": 1616.9, "end": 1617.24, "word": " poster", "probability": 0.712890625}, {"start": 1617.24, "end": 1617.36, "word": " and", "probability": 0.59814453125}, {"start": 1617.36, "end": 1617.62, "word": " Twitter", "probability": 0.748046875}, {"start": 1617.62, "end": 1618.08, "word": " poster.", "probability": 0.77001953125}, {"start": 1618.36, "end": 1618.58, "word": " He", "probability": 0.430908203125}, {"start": 1618.58, "end": 1618.72, "word": " called", "probability": 0.37158203125}, {"start": 1618.72, "end": 1618.92, "word": " them", "probability": 0.81591796875}, {"start": 1618.92, "end": 1619.42, "word": " concrete", "probability": 0.63525390625}, {"start": 1619.42, "end": 1620.18, "word": " creators.", "probability": 0.69189453125}, {"start": 1621.02, "end": 1621.36, "word": " Because", "probability": 0.19140625}, {"start": 1621.36, "end": 1622.02, "word": " this", "probability": 0.4228515625}, {"start": 1622.02, "end": 1622.42, "word": " creator", "probability": 0.8984375}, {"start": 1622.42, "end": 1622.74, "word": " is", "probability": 0.427734375}, {"start": 1622.74, "end": 1622.9, "word": " the", "probability": 0.544921875}, {"start": 1622.9, "end": 1622.9, "word": " one", "probability": 0.81787109375}, {"start": 1622.9, "end": 1622.96, "word": " who", "probability": 0.70751953125}, {"start": 1622.96, "end": 1623.06, "word": " will", "probability": 0.43359375}, {"start": 1623.06, "end": 1623.36, "word": " create", "probability": 0.734375}, {"start": 1623.36, "end": 1624.44, "word": " the", "probability": 0.759765625}, {"start": 1624.44, "end": 1624.8, "word": " product,", "probability": 0.88720703125}, {"start": 1624.86, "end": 1625.04, "word": " right?", "probability": 0.5927734375}, {"start": 1625.44, "end": 1625.68, "word": " It", "probability": 0.1968994140625}, {"start": 1625.68, "end": 1625.68, "word": " is", "probability": 0.51220703125}, {"start": 1625.68, "end": 1625.7, "word": " not", "probability": 0.94140625}, {"start": 1625.7, "end": 1625.86, "word": " me", "probability": 0.57666015625}, {"start": 1625.86, "end": 1626.16, "word": " from", "probability": 0.278564453125}, {"start": 1626.16, "end": 1626.34, "word": " the", "probability": 0.79736328125}, {"start": 1626.34, "end": 1626.66, "word": " poster", "probability": 0.75830078125}, {"start": 1626.66, "end": 1626.8, "word": " who", "probability": 0.498046875}, {"start": 1626.8, "end": 1627.02, "word": " created", "probability": 0.68359375}, {"start": 1627.02, "end": 1627.22, "word": " the", "probability": 0.84423828125}, {"start": 1627.22, "end": 1627.62, "word": " creator,", "probability": 0.919921875}, {"start": 1628.54, "end": 1629.24, "word": " the", "probability": 0.630859375}, {"start": 1629.24, "end": 1629.58, "word": " connector.", "probability": 0.79345703125}, {"start": 1630.12, "end": 1630.36, "word": " It", "probability": 0.86376953125}, {"start": 1630.36, "end": 1630.38, "word": " is", "probability": 0.89111328125}, {"start": 1630.38, "end": 1630.4, "word": " not", "probability": 0.935546875}, {"start": 1630.4, "end": 1630.56, "word": " me", "probability": 0.91552734375}, {"start": 1630.56, "end": 1630.62, "word": " from", "probability": 0.8623046875}, {"start": 1630.62, "end": 1630.74, "word": " the", "probability": 0.7734375}, {"start": 1630.74, "end": 1631.0, "word": " Facebook", "probability": 0.76171875}, {"start": 1631.0, "end": 1631.46, "word": " poster", "probability": 0.8154296875}, {"start": 1631.46, "end": 1631.6, "word": " who", "probability": 0.783203125}, {"start": 1631.6, "end": 1631.86, "word": " created", "probability": 0.8037109375}, {"start": 1631.86, "end": 1632.02, "word": " the", "probability": 0.53173828125}, {"start": 1632.02, "end": 1632.28, "word": " Facebook", "probability": 0.7578125}, {"start": 1632.28, "end": 1632.8, "word": " connector.", "probability": 0.86083984375}, {"start": 1633.14, "end": 1633.44, "word": " This", "probability": 0.50439453125}, {"start": 1633.44, "end": 1633.5, "word": " is", "probability": 0.9306640625}, {"start": 1633.5, "end": 1633.6, "word": " the", "probability": 0.88232421875}, {"start": 1633.6, "end": 1633.68, "word": " same", "probability": 0.896484375}, {"start": 1633.68, "end": 1633.96, "word": " thing.", "probability": 0.81494140625}, {"start": 1634.02, "end": 1634.12, "word": " The", "probability": 0.7080078125}, {"start": 1634.12, "end": 1634.44, "word": " creator", "probability": 0.92333984375}, {"start": 1634.44, "end": 1634.72, "word": " wants", "probability": 0.422607421875}, {"start": 1634.72, "end": 1634.8, "word": " to", "probability": 0.9697265625}, {"start": 1634.8, "end": 1634.9, "word": " create", "probability": 0.84375}, {"start": 1634.9, "end": 1635.72, "word": " a", "probability": 0.73388671875}, {"start": 1635.72, "end": 1636.06, "word": " product,", "probability": 0.92724609375}, {"start": 1636.44, "end": 1636.58, "word": " right?", "probability": 0.49072265625}], "temperature": 1.0}, {"id": 67, "seek": 165802, "start": 1639.1, "end": 1658.02, "text": "Okay, we said that there was a method that was common between them. We took it and collected it in the class super. What was the method that was common in the final post? Okay? The one inside it, I take the connector and store it in the database and put it in the history and send a notification. Okay? Because this method is called an operation. Can you see it?", "tokens": [8297, 11, 321, 848, 300, 456, 390, 257, 3170, 300, 390, 2689, 1296, 552, 13, 492, 1890, 309, 293, 11087, 309, 294, 264, 1508, 1687, 13, 708, 390, 264, 3170, 300, 390, 2689, 294, 264, 2572, 2183, 30, 1033, 30, 440, 472, 1854, 309, 11, 286, 747, 264, 19127, 293, 3531, 309, 294, 264, 8149, 293, 829, 309, 294, 264, 702, 21151, 88, 293, 2845, 257, 11554, 13, 1033, 30, 1436, 341, 3170, 307, 1219, 364, 6916, 13, 1664, 291, 536, 309, 30], "avg_logprob": -0.5360863279728663, "compression_ratio": 1.7572815533980584, "no_speech_prob": 9.119510650634766e-06, "words": [{"start": 1639.1, "end": 1639.5, "word": "Okay,", "probability": 0.1971435546875}, {"start": 1639.5, "end": 1639.9, "word": " we", "probability": 0.149658203125}, {"start": 1639.9, "end": 1640.28, "word": " said", "probability": 0.419189453125}, {"start": 1640.28, "end": 1640.38, "word": " that", "probability": 0.492431640625}, {"start": 1640.38, "end": 1640.46, "word": " there", "probability": 0.81787109375}, {"start": 1640.46, "end": 1640.46, "word": " was", "probability": 0.456787109375}, {"start": 1640.46, "end": 1640.56, "word": " a", "probability": 0.86279296875}, {"start": 1640.56, "end": 1640.88, "word": " method", "probability": 0.79931640625}, {"start": 1640.88, "end": 1641.0, "word": " that", "probability": 0.411865234375}, {"start": 1641.0, "end": 1641.24, "word": " was", "probability": 0.65087890625}, {"start": 1641.24, "end": 1641.58, "word": " common", "probability": 0.31396484375}, {"start": 1641.58, "end": 1641.84, "word": " between", "probability": 0.42333984375}, {"start": 1641.84, "end": 1642.04, "word": " them.", "probability": 0.64404296875}, {"start": 1642.3, "end": 1642.4, "word": " We", "probability": 0.66357421875}, {"start": 1642.4, "end": 1642.56, "word": " took", "probability": 0.435791015625}, {"start": 1642.56, "end": 1642.82, "word": " it", "probability": 0.7353515625}, {"start": 1642.82, "end": 1642.94, "word": " and", "probability": 0.8408203125}, {"start": 1642.94, "end": 1643.3, "word": " collected", "probability": 0.12841796875}, {"start": 1643.3, "end": 1643.48, "word": " it", "probability": 0.8349609375}, {"start": 1643.48, "end": 1643.58, "word": " in", "probability": 0.818359375}, {"start": 1643.58, "end": 1643.68, "word": " the", "probability": 0.50390625}, {"start": 1643.68, "end": 1644.1, "word": " class", "probability": 0.8056640625}, {"start": 1644.1, "end": 1644.76, "word": " super.", "probability": 0.323486328125}, {"start": 1644.86, "end": 1645.04, "word": " What", "probability": 0.63232421875}, {"start": 1645.04, "end": 1645.16, "word": " was", "probability": 0.50439453125}, {"start": 1645.16, "end": 1645.24, "word": " the", "probability": 0.744140625}, {"start": 1645.24, "end": 1645.46, "word": " method", "probability": 0.7861328125}, {"start": 1645.46, "end": 1645.58, "word": " that", "probability": 0.7978515625}, {"start": 1645.58, "end": 1645.76, "word": " was", "probability": 0.89697265625}, {"start": 1645.76, "end": 1646.16, "word": " common", "probability": 0.76123046875}, {"start": 1646.16, "end": 1646.78, "word": " in", "probability": 0.54638671875}, {"start": 1646.78, "end": 1646.92, "word": " the", "probability": 0.4501953125}, {"start": 1646.92, "end": 1647.12, "word": " final", "probability": 0.467041015625}, {"start": 1647.12, "end": 1647.54, "word": " post?", "probability": 0.79052734375}, {"start": 1648.1, "end": 1648.48, "word": " Okay?", "probability": 0.254150390625}, {"start": 1648.82, "end": 1648.98, "word": " The", "probability": 0.2330322265625}, {"start": 1648.98, "end": 1649.0, "word": " one", "probability": 0.486083984375}, {"start": 1649.0, "end": 1649.4, "word": " inside", "probability": 0.371826171875}, {"start": 1649.4, "end": 1649.56, "word": " it,", "probability": 0.4150390625}, {"start": 1649.66, "end": 1649.76, "word": " I", "probability": 0.9150390625}, {"start": 1649.76, "end": 1649.94, "word": " take", "probability": 0.083251953125}, {"start": 1649.94, "end": 1650.14, "word": " the", "probability": 0.7666015625}, {"start": 1650.14, "end": 1650.58, "word": " connector", "probability": 0.650390625}, {"start": 1650.58, "end": 1650.68, "word": " and", "probability": 0.55322265625}, {"start": 1650.68, "end": 1650.98, "word": " store", "probability": 0.71826171875}, {"start": 1650.98, "end": 1651.12, "word": " it", "probability": 0.84716796875}, {"start": 1651.12, "end": 1651.18, "word": " in", "probability": 0.9150390625}, {"start": 1651.18, "end": 1651.26, "word": " the", "probability": 0.406982421875}, {"start": 1651.26, "end": 1651.56, "word": " database", "probability": 0.91943359375}, {"start": 1651.56, "end": 1651.86, "word": " and", "probability": 0.5009765625}, {"start": 1651.86, "end": 1652.06, "word": " put", "probability": 0.5673828125}, {"start": 1652.06, "end": 1652.16, "word": " it", "probability": 0.8115234375}, {"start": 1652.16, "end": 1652.2, "word": " in", "probability": 0.88623046875}, {"start": 1652.2, "end": 1652.28, "word": " the", "probability": 0.86376953125}, {"start": 1652.28, "end": 1652.58, "word": " history", "probability": 0.7276204427083334}, {"start": 1652.58, "end": 1652.66, "word": " and", "probability": 0.8037109375}, {"start": 1652.66, "end": 1652.82, "word": " send", "probability": 0.7109375}, {"start": 1652.82, "end": 1652.92, "word": " a", "probability": 0.3359375}, {"start": 1652.92, "end": 1653.44, "word": " notification.", "probability": 0.98046875}, {"start": 1654.0, "end": 1654.22, "word": " Okay?", "probability": 0.69775390625}, {"start": 1654.72, "end": 1654.9, "word": " Because", "probability": 0.8466796875}, {"start": 1654.9, "end": 1655.14, "word": " this", "probability": 0.89794921875}, {"start": 1655.14, "end": 1655.64, "word": " method", "probability": 0.927734375}, {"start": 1655.64, "end": 1656.06, "word": " is", "probability": 0.72412109375}, {"start": 1656.06, "end": 1656.48, "word": " called", "probability": 0.765625}, {"start": 1656.48, "end": 1656.8, "word": " an", "probability": 0.5947265625}, {"start": 1656.8, "end": 1657.32, "word": " operation.", "probability": 0.8974609375}, {"start": 1657.52, "end": 1657.6, "word": " Can", "probability": 0.34619140625}, {"start": 1657.6, "end": 1657.6, "word": " you", "probability": 0.966796875}, {"start": 1657.6, "end": 1657.82, "word": " see", "probability": 0.91845703125}, {"start": 1657.82, "end": 1658.02, "word": " it?", "probability": 0.87939453125}], "temperature": 1.0}, {"id": 68, "seek": 168402, "start": 1659.2, "end": 1684.02, "text": " This is an operation. In the first design, I had to put it down. Now I have to put it up. This is an operation. This method of an operation has a common code and a different code, which is the creation of a product. The creation of a different product. Look at this note. It shows me how the existing code looks like.", "tokens": [639, 307, 364, 6916, 13, 682, 264, 700, 1715, 11, 286, 632, 281, 829, 309, 760, 13, 823, 286, 362, 281, 829, 309, 493, 13, 639, 307, 364, 6916, 13, 639, 3170, 295, 364, 6916, 575, 257, 2689, 3089, 293, 257, 819, 3089, 11, 597, 307, 264, 8016, 295, 257, 1674, 13, 440, 8016, 295, 257, 819, 1674, 13, 2053, 412, 341, 3637, 13, 467, 3110, 385, 577, 264, 6741, 3089, 1542, 411, 13], "avg_logprob": -0.5162500286102295, "compression_ratio": 1.7966101694915255, "no_speech_prob": 7.092952728271484e-06, "words": [{"start": 1659.2, "end": 1659.56, "word": " This", "probability": 0.137451171875}, {"start": 1659.56, "end": 1659.62, "word": " is", "probability": 0.5537109375}, {"start": 1659.62, "end": 1659.88, "word": " an", "probability": 0.2298583984375}, {"start": 1659.88, "end": 1660.32, "word": " operation.", "probability": 0.86181640625}, {"start": 1661.26, "end": 1661.82, "word": " In", "probability": 0.4677734375}, {"start": 1661.82, "end": 1662.0, "word": " the", "probability": 0.81396484375}, {"start": 1662.0, "end": 1662.32, "word": " first", "probability": 0.67236328125}, {"start": 1662.32, "end": 1662.68, "word": " design,", "probability": 0.84912109375}, {"start": 1663.3, "end": 1663.82, "word": " I", "probability": 0.2431640625}, {"start": 1663.82, "end": 1663.94, "word": " had", "probability": 0.74853515625}, {"start": 1663.94, "end": 1664.52, "word": " to", "probability": 0.95068359375}, {"start": 1664.52, "end": 1664.72, "word": " put", "probability": 0.5205078125}, {"start": 1664.72, "end": 1664.88, "word": " it", "probability": 0.65966796875}, {"start": 1664.88, "end": 1665.12, "word": " down.", "probability": 0.341552734375}, {"start": 1666.02, "end": 1666.26, "word": " Now", "probability": 0.62451171875}, {"start": 1666.26, "end": 1666.28, "word": " I", "probability": 0.65771484375}, {"start": 1666.28, "end": 1666.5, "word": " have", "probability": 0.17578125}, {"start": 1666.5, "end": 1666.52, "word": " to", "probability": 0.8896484375}, {"start": 1666.52, "end": 1666.52, "word": " put", "probability": 0.85009765625}, {"start": 1666.52, "end": 1666.66, "word": " it", "probability": 0.92431640625}, {"start": 1666.66, "end": 1667.76, "word": " up.", "probability": 0.84521484375}, {"start": 1668.2, "end": 1668.36, "word": " This", "probability": 0.495361328125}, {"start": 1668.36, "end": 1668.36, "word": " is", "probability": 0.7099609375}, {"start": 1668.36, "end": 1668.7, "word": " an", "probability": 0.86181640625}, {"start": 1668.7, "end": 1669.16, "word": " operation.", "probability": 0.943359375}, {"start": 1670.62, "end": 1671.18, "word": " This", "probability": 0.3623046875}, {"start": 1671.18, "end": 1671.74, "word": " method", "probability": 0.89111328125}, {"start": 1671.74, "end": 1671.8, "word": " of", "probability": 0.315673828125}, {"start": 1671.8, "end": 1671.88, "word": " an", "probability": 0.69775390625}, {"start": 1671.88, "end": 1672.42, "word": " operation", "probability": 0.9501953125}, {"start": 1672.42, "end": 1673.66, "word": " has", "probability": 0.69140625}, {"start": 1673.66, "end": 1673.86, "word": " a", "probability": 0.6416015625}, {"start": 1673.86, "end": 1674.26, "word": " common", "probability": 0.63330078125}, {"start": 1674.26, "end": 1674.36, "word": " code", "probability": 0.88525390625}, {"start": 1674.36, "end": 1674.56, "word": " and", "probability": 0.81494140625}, {"start": 1674.56, "end": 1674.84, "word": " a", "probability": 0.357177734375}, {"start": 1674.84, "end": 1675.46, "word": " different", "probability": 0.80615234375}, {"start": 1675.46, "end": 1675.46, "word": " code,", "probability": 0.8837890625}, {"start": 1675.56, "end": 1675.62, "word": " which", "probability": 0.7294921875}, {"start": 1675.62, "end": 1675.78, "word": " is", "probability": 0.8310546875}, {"start": 1675.78, "end": 1675.86, "word": " the", "probability": 0.406005859375}, {"start": 1675.86, "end": 1676.2, "word": " creation", "probability": 0.44921875}, {"start": 1676.2, "end": 1676.74, "word": " of", "probability": 0.96484375}, {"start": 1676.74, "end": 1676.82, "word": " a", "probability": 0.56689453125}, {"start": 1676.82, "end": 1677.18, "word": " product.", "probability": 0.6376953125}, {"start": 1678.08, "end": 1678.24, "word": " The", "probability": 0.144775390625}, {"start": 1678.24, "end": 1678.4, "word": " creation", "probability": 0.82958984375}, {"start": 1678.4, "end": 1678.54, "word": " of", "probability": 0.96533203125}, {"start": 1678.54, "end": 1678.62, "word": " a", "probability": 0.9091796875}, {"start": 1678.62, "end": 1679.16, "word": " different", "probability": 0.67138671875}, {"start": 1679.16, "end": 1679.16, "word": " product.", "probability": 0.93212890625}, {"start": 1679.92, "end": 1680.4, "word": " Look", "probability": 0.20654296875}, {"start": 1680.4, "end": 1680.54, "word": " at", "probability": 0.91455078125}, {"start": 1680.54, "end": 1680.8, "word": " this", "probability": 0.78369140625}, {"start": 1680.8, "end": 1681.26, "word": " note.", "probability": 0.56982421875}, {"start": 1681.6, "end": 1681.92, "word": " It", "probability": 0.70361328125}, {"start": 1681.92, "end": 1682.26, "word": " shows", "probability": 0.74853515625}, {"start": 1682.26, "end": 1682.52, "word": " me", "probability": 0.5849609375}, {"start": 1682.52, "end": 1682.72, "word": " how", "probability": 0.896484375}, {"start": 1682.72, "end": 1683.2, "word": " the", "probability": 0.474853515625}, {"start": 1683.2, "end": 1683.36, "word": " existing", "probability": 0.68115234375}, {"start": 1683.36, "end": 1683.52, "word": " code", "probability": 0.951171875}, {"start": 1683.52, "end": 1683.52, "word": " looks", "probability": 0.3056640625}, {"start": 1683.52, "end": 1684.02, "word": " like.", "probability": 0.6171875}], "temperature": 1.0}, {"id": 69, "seek": 168966, "start": 1685.1, "end": 1689.66, "text": " in the operation. How does the code look like in the operation? I'm going to make three points above", "tokens": [294, 264, 6916, 13, 1012, 775, 264, 3089, 574, 411, 294, 264, 6916, 30, 286, 478, 516, 281, 652, 1045, 2793, 3673], "avg_logprob": -0.7697010869565217, "compression_ratio": 1.2317073170731707, "no_speech_prob": 1.2516975402832031e-06, "words": [{"start": 1685.1, "end": 1685.32, "word": " in", "probability": 0.1710205078125}, {"start": 1685.32, "end": 1685.4, "word": " the", "probability": 0.31982421875}, {"start": 1685.4, "end": 1685.82, "word": " operation.", "probability": 0.927734375}, {"start": 1686.3, "end": 1686.74, "word": " How", "probability": 0.52685546875}, {"start": 1686.74, "end": 1687.02, "word": " does", "probability": 0.329345703125}, {"start": 1687.02, "end": 1687.16, "word": " the", "probability": 0.75244140625}, {"start": 1687.16, "end": 1687.36, "word": " code", "probability": 0.89208984375}, {"start": 1687.36, "end": 1687.36, "word": " look", "probability": 0.496826171875}, {"start": 1687.36, "end": 1687.48, "word": " like", "probability": 0.446044921875}, {"start": 1687.48, "end": 1687.74, "word": " in", "probability": 0.701171875}, {"start": 1687.74, "end": 1687.84, "word": " the", "probability": 0.689453125}, {"start": 1687.84, "end": 1688.22, "word": " operation?", "probability": 0.93310546875}, {"start": 1688.34, "end": 1688.54, "word": " I'm", "probability": 0.24456787109375}, {"start": 1688.54, "end": 1688.54, "word": " going", "probability": 0.87890625}, {"start": 1688.54, "end": 1688.6, "word": " to", "probability": 0.9658203125}, {"start": 1688.6, "end": 1688.76, "word": " make", "probability": 0.2491455078125}, {"start": 1688.76, "end": 1689.1, "word": " three", "probability": 0.50048828125}, {"start": 1689.1, "end": 1689.34, "word": " points", "probability": 0.19287109375}, {"start": 1689.34, "end": 1689.66, "word": " above", "probability": 0.33251953125}], "temperature": 1.0}, {"id": 70, "seek": 171772, "start": 1690.4, "end": 1717.72, "text": " And look at what's below. What does it mean? There is code above and below. This is all common. A lot of code. Okay? But there is a different level, which is the creation of the product. Which is like the example of creating the connector that I made. This is what determines the product that I want to make. Not these subclasses. Okay? So he went and said, no, this is a binary step. Like I made an abstract method called create connector. He made a method called factory.", "tokens": [400, 574, 412, 437, 311, 2507, 13, 708, 775, 309, 914, 30, 821, 307, 3089, 3673, 293, 2507, 13, 639, 307, 439, 2689, 13, 316, 688, 295, 3089, 13, 1033, 30, 583, 456, 307, 257, 819, 1496, 11, 597, 307, 264, 8016, 295, 264, 1674, 13, 3013, 307, 411, 264, 1365, 295, 4084, 264, 19127, 300, 286, 1027, 13, 639, 307, 437, 24799, 264, 1674, 300, 286, 528, 281, 652, 13, 1726, 613, 1422, 11665, 279, 13, 1033, 30, 407, 415, 1437, 293, 848, 11, 572, 11, 341, 307, 257, 17434, 1823, 13, 1743, 286, 1027, 364, 12649, 3170, 1219, 1884, 19127, 13, 634, 1027, 257, 3170, 1219, 9265, 13], "avg_logprob": -0.5515202906754639, "compression_ratio": 1.7362637362637363, "no_speech_prob": 1.3113021850585938e-06, "words": [{"start": 1690.4, "end": 1690.62, "word": " And", "probability": 0.2093505859375}, {"start": 1690.62, "end": 1690.82, "word": " look", "probability": 0.158203125}, {"start": 1690.82, "end": 1690.86, "word": " at", "probability": 0.48486328125}, {"start": 1690.86, "end": 1691.08, "word": " what's", "probability": 0.219146728515625}, {"start": 1691.08, "end": 1691.38, "word": " below.", "probability": 0.454345703125}, {"start": 1691.5, "end": 1691.62, "word": " What", "probability": 0.4365234375}, {"start": 1691.62, "end": 1691.8, "word": " does", "probability": 0.83349609375}, {"start": 1691.8, "end": 1691.8, "word": " it", "probability": 0.42626953125}, {"start": 1691.8, "end": 1691.88, "word": " mean?", "probability": 0.95458984375}, {"start": 1692.56, "end": 1692.82, "word": " There", "probability": 0.5498046875}, {"start": 1692.82, "end": 1692.84, "word": " is", "probability": 0.4541015625}, {"start": 1692.84, "end": 1693.2, "word": " code", "probability": 0.57080078125}, {"start": 1693.2, "end": 1693.5, "word": " above", "probability": 0.75439453125}, {"start": 1693.5, "end": 1693.7, "word": " and", "probability": 0.85693359375}, {"start": 1693.7, "end": 1694.2, "word": " below.", "probability": 0.83349609375}, {"start": 1694.3, "end": 1694.5, "word": " This", "probability": 0.3984375}, {"start": 1694.5, "end": 1694.54, "word": " is", "probability": 0.900390625}, {"start": 1694.54, "end": 1694.58, "word": " all", "probability": 0.451171875}, {"start": 1694.58, "end": 1694.84, "word": " common.", "probability": 0.361572265625}, {"start": 1695.28, "end": 1695.52, "word": " A", "probability": 0.2266845703125}, {"start": 1695.52, "end": 1695.68, "word": " lot", "probability": 0.947265625}, {"start": 1695.68, "end": 1695.68, "word": " of", "probability": 0.9619140625}, {"start": 1695.68, "end": 1695.68, "word": " code.", "probability": 0.82275390625}, {"start": 1696.3, "end": 1696.72, "word": " Okay?", "probability": 0.242431640625}, {"start": 1696.98, "end": 1697.4, "word": " But", "probability": 0.87744140625}, {"start": 1697.4, "end": 1697.58, "word": " there", "probability": 0.80029296875}, {"start": 1697.58, "end": 1697.6, "word": " is", "probability": 0.814453125}, {"start": 1697.6, "end": 1697.72, "word": " a", "probability": 0.666015625}, {"start": 1697.72, "end": 1698.22, "word": " different", "probability": 0.830078125}, {"start": 1698.22, "end": 1698.22, "word": " level,", "probability": 0.2156982421875}, {"start": 1698.42, "end": 1698.48, "word": " which", "probability": 0.689453125}, {"start": 1698.48, "end": 1698.64, "word": " is", "probability": 0.89794921875}, {"start": 1698.64, "end": 1698.76, "word": " the", "probability": 0.329833984375}, {"start": 1698.76, "end": 1699.0, "word": " creation", "probability": 0.513671875}, {"start": 1699.0, "end": 1699.18, "word": " of", "probability": 0.91845703125}, {"start": 1699.18, "end": 1699.8, "word": " the", "probability": 0.28466796875}, {"start": 1699.8, "end": 1700.66, "word": " product.", "probability": 0.87353515625}, {"start": 1700.78, "end": 1701.2, "word": " Which", "probability": 0.541015625}, {"start": 1701.2, "end": 1701.36, "word": " is", "probability": 0.91357421875}, {"start": 1701.36, "end": 1701.5, "word": " like", "probability": 0.6591796875}, {"start": 1701.5, "end": 1701.62, "word": " the", "probability": 0.66845703125}, {"start": 1701.62, "end": 1701.92, "word": " example", "probability": 0.90478515625}, {"start": 1701.92, "end": 1702.06, "word": " of", "probability": 0.80859375}, {"start": 1702.06, "end": 1702.34, "word": " creating", "probability": 0.51806640625}, {"start": 1702.34, "end": 1702.52, "word": " the", "probability": 0.66796875}, {"start": 1702.52, "end": 1702.88, "word": " connector", "probability": 0.794921875}, {"start": 1702.88, "end": 1703.0, "word": " that", "probability": 0.5576171875}, {"start": 1703.0, "end": 1703.02, "word": " I", "probability": 0.97216796875}, {"start": 1703.02, "end": 1703.24, "word": " made.", "probability": 0.438232421875}, {"start": 1704.04, "end": 1704.48, "word": " This", "probability": 0.61669921875}, {"start": 1704.48, "end": 1704.5, "word": " is", "probability": 0.4208984375}, {"start": 1704.5, "end": 1704.62, "word": " what", "probability": 0.181884765625}, {"start": 1704.62, "end": 1705.12, "word": " determines", "probability": 0.365478515625}, {"start": 1705.12, "end": 1705.72, "word": " the", "probability": 0.5869140625}, {"start": 1705.72, "end": 1706.02, "word": " product", "probability": 0.849609375}, {"start": 1706.02, "end": 1706.1, "word": " that", "probability": 0.658203125}, {"start": 1706.1, "end": 1706.26, "word": " I", "probability": 0.810546875}, {"start": 1706.26, "end": 1706.3, "word": " want", "probability": 0.7060546875}, {"start": 1706.3, "end": 1706.3, "word": " to", "probability": 0.9521484375}, {"start": 1706.3, "end": 1706.54, "word": " make.", "probability": 0.64111328125}, {"start": 1706.76, "end": 1707.18, "word": " Not", "probability": 0.849609375}, {"start": 1707.18, "end": 1707.62, "word": " these", "probability": 0.228759765625}, {"start": 1707.62, "end": 1709.46, "word": " subclasses.", "probability": 0.73779296875}, {"start": 1709.46, "end": 1709.88, "word": " Okay?", "probability": 0.7216796875}, {"start": 1710.28, "end": 1710.46, "word": " So", "probability": 0.6435546875}, {"start": 1710.46, "end": 1710.74, "word": " he", "probability": 0.444580078125}, {"start": 1710.74, "end": 1710.74, "word": " went", "probability": 0.21923828125}, {"start": 1710.74, "end": 1710.82, "word": " and", "probability": 0.69384765625}, {"start": 1710.82, "end": 1710.94, "word": " said,", "probability": 0.53564453125}, {"start": 1711.12, "end": 1711.2, "word": " no,", "probability": 0.304443359375}, {"start": 1711.24, "end": 1711.4, "word": " this", "probability": 0.61083984375}, {"start": 1711.4, "end": 1711.42, "word": " is", "probability": 0.50439453125}, {"start": 1711.42, "end": 1711.56, "word": " a", "probability": 0.21630859375}, {"start": 1711.56, "end": 1711.62, "word": " binary", "probability": 0.3212890625}, {"start": 1711.62, "end": 1711.86, "word": " step.", "probability": 0.720703125}, {"start": 1711.98, "end": 1712.16, "word": " Like", "probability": 0.379150390625}, {"start": 1712.16, "end": 1712.44, "word": " I", "probability": 0.8486328125}, {"start": 1712.44, "end": 1712.74, "word": " made", "probability": 0.45947265625}, {"start": 1712.74, "end": 1712.94, "word": " an", "probability": 0.85986328125}, {"start": 1712.94, "end": 1713.3, "word": " abstract", "probability": 0.86865234375}, {"start": 1713.3, "end": 1713.62, "word": " method", "probability": 0.93701171875}, {"start": 1713.62, "end": 1713.88, "word": " called", "probability": 0.69921875}, {"start": 1713.88, "end": 1714.3, "word": " create", "probability": 0.572265625}, {"start": 1714.3, "end": 1715.62, "word": " connector.", "probability": 0.4482421875}, {"start": 1716.08, "end": 1716.34, "word": " He", "probability": 0.86181640625}, {"start": 1716.34, "end": 1716.56, "word": " made", "probability": 0.72265625}, {"start": 1716.56, "end": 1716.68, "word": " a", "probability": 0.97998046875}, {"start": 1716.68, "end": 1716.9, "word": " method", "probability": 0.96337890625}, {"start": 1716.9, "end": 1717.18, "word": " called", "probability": 0.87939453125}, {"start": 1717.18, "end": 1717.72, "word": " factory.", "probability": 0.78955078125}], "temperature": 1.0}, {"id": 71, "seek": 174545, "start": 1718.63, "end": 1745.45, "text": " method, okay? And this is a note written in italic. What does italic mean here? It is abstract. And he took it from here. And he wrote factory method. Just like I did create connector in superclass. I took it from method post, okay? And I made it abstract method in social media poster. So this factory method has an implementation where?", "tokens": [3170, 11, 1392, 30, 400, 341, 307, 257, 3637, 3720, 294, 22366, 299, 13, 708, 775, 22366, 299, 914, 510, 30, 467, 307, 12649, 13, 400, 415, 1890, 309, 490, 510, 13, 400, 415, 4114, 9265, 3170, 13, 1449, 411, 286, 630, 1884, 19127, 294, 1687, 11665, 13, 286, 1890, 309, 490, 3170, 2183, 11, 1392, 30, 400, 286, 1027, 309, 12649, 3170, 294, 2093, 3021, 17171, 13, 407, 341, 9265, 3170, 575, 364, 11420, 689, 30], "avg_logprob": -0.5588942063160431, "compression_ratio": 1.7121212121212122, "no_speech_prob": 6.556510925292969e-07, "words": [{"start": 1718.63, "end": 1719.03, "word": " method,", "probability": 0.395263671875}, {"start": 1719.33, "end": 1719.73, "word": " okay?", "probability": 0.2015380859375}, {"start": 1720.27, "end": 1720.63, "word": " And", "probability": 0.443603515625}, {"start": 1720.63, "end": 1721.17, "word": " this", "probability": 0.57080078125}, {"start": 1721.17, "end": 1721.25, "word": " is", "probability": 0.3818359375}, {"start": 1721.25, "end": 1721.33, "word": " a", "probability": 0.43701171875}, {"start": 1721.33, "end": 1721.53, "word": " note", "probability": 0.1624755859375}, {"start": 1721.53, "end": 1722.15, "word": " written", "probability": 0.16357421875}, {"start": 1722.15, "end": 1722.31, "word": " in", "probability": 0.6689453125}, {"start": 1722.31, "end": 1722.75, "word": " italic.", "probability": 0.791748046875}, {"start": 1723.11, "end": 1723.67, "word": " What", "probability": 0.6279296875}, {"start": 1723.67, "end": 1723.79, "word": " does", "probability": 0.414794921875}, {"start": 1723.79, "end": 1724.17, "word": " italic", "probability": 0.757080078125}, {"start": 1724.17, "end": 1724.17, "word": " mean", "probability": 0.74560546875}, {"start": 1724.17, "end": 1724.41, "word": " here?", "probability": 0.67626953125}, {"start": 1724.65, "end": 1724.87, "word": " It", "probability": 0.8173828125}, {"start": 1724.87, "end": 1724.93, "word": " is", "probability": 0.383544921875}, {"start": 1724.93, "end": 1725.47, "word": " abstract.", "probability": 0.72998046875}, {"start": 1725.73, "end": 1725.85, "word": " And", "probability": 0.5986328125}, {"start": 1725.85, "end": 1725.99, "word": " he", "probability": 0.47998046875}, {"start": 1725.99, "end": 1726.15, "word": " took", "probability": 0.312255859375}, {"start": 1726.15, "end": 1726.37, "word": " it", "probability": 0.7392578125}, {"start": 1726.37, "end": 1726.59, "word": " from", "probability": 0.74609375}, {"start": 1726.59, "end": 1726.81, "word": " here.", "probability": 0.7646484375}, {"start": 1728.17, "end": 1728.37, "word": " And", "probability": 0.489990234375}, {"start": 1728.37, "end": 1728.43, "word": " he", "probability": 0.70654296875}, {"start": 1728.43, "end": 1728.59, "word": " wrote", "probability": 0.91357421875}, {"start": 1728.59, "end": 1728.97, "word": " factory", "probability": 0.23046875}, {"start": 1728.97, "end": 1729.31, "word": " method.", "probability": 0.95458984375}, {"start": 1730.07, "end": 1730.49, "word": " Just", "probability": 0.3388671875}, {"start": 1730.49, "end": 1730.51, "word": " like", "probability": 0.76025390625}, {"start": 1730.51, "end": 1731.23, "word": " I", "probability": 0.473876953125}, {"start": 1731.23, "end": 1731.49, "word": " did", "probability": 0.366455078125}, {"start": 1731.49, "end": 1731.93, "word": " create", "probability": 0.7763671875}, {"start": 1731.93, "end": 1732.65, "word": " connector", "probability": 0.826171875}, {"start": 1732.65, "end": 1732.89, "word": " in", "probability": 0.8662109375}, {"start": 1732.89, "end": 1733.67, "word": " superclass.", "probability": 0.645263671875}, {"start": 1734.23, "end": 1734.55, "word": " I", "probability": 0.87841796875}, {"start": 1734.55, "end": 1734.65, "word": " took", "probability": 0.81103515625}, {"start": 1734.65, "end": 1735.03, "word": " it", "probability": 0.85546875}, {"start": 1735.03, "end": 1735.15, "word": " from", "probability": 0.85400390625}, {"start": 1735.15, "end": 1735.63, "word": " method", "probability": 0.53125}, {"start": 1735.63, "end": 1736.45, "word": " post,", "probability": 0.77392578125}, {"start": 1737.21, "end": 1737.65, "word": " okay?", "probability": 0.73486328125}, {"start": 1737.69, "end": 1737.83, "word": " And", "probability": 0.90625}, {"start": 1737.83, "end": 1737.91, "word": " I", "probability": 0.81494140625}, {"start": 1737.91, "end": 1738.05, "word": " made", "probability": 0.70703125}, {"start": 1738.05, "end": 1738.15, "word": " it", "probability": 0.376953125}, {"start": 1738.15, "end": 1738.41, "word": " abstract", "probability": 0.59716796875}, {"start": 1738.41, "end": 1739.01, "word": " method", "probability": 0.95458984375}, {"start": 1739.01, "end": 1739.63, "word": " in", "probability": 0.77978515625}, {"start": 1739.63, "end": 1740.83, "word": " social", "probability": 0.638671875}, {"start": 1740.83, "end": 1741.21, "word": " media", "probability": 0.90576171875}, {"start": 1741.21, "end": 1741.73, "word": " poster.", "probability": 0.80810546875}, {"start": 1742.77, "end": 1742.95, "word": " So", "probability": 0.267578125}, {"start": 1742.95, "end": 1743.13, "word": " this", "probability": 0.61767578125}, {"start": 1743.13, "end": 1743.77, "word": " factory", "probability": 0.224853515625}, {"start": 1743.77, "end": 1744.13, "word": " method", "probability": 0.96142578125}, {"start": 1744.13, "end": 1744.25, "word": " has", "probability": 0.416015625}, {"start": 1744.25, "end": 1744.55, "word": " an", "probability": 0.1829833984375}, {"start": 1744.55, "end": 1745.17, "word": " implementation", "probability": 0.9189453125}, {"start": 1745.17, "end": 1745.45, "word": " where?", "probability": 0.537109375}], "temperature": 1.0}, {"id": 72, "seek": 177362, "start": 1746.36, "end": 1773.62, "text": " In the concrete creator, like here, don't I have a method post and method create connector? The method post is done by the operation and the method create connector is done by the factor method. These two, each one made a different implement for the create connector, because this one creates a Facebook connector and this one creates a WhatsApp connector. Okay, look here, the factor method returns a new concrete", "tokens": [682, 264, 9859, 14181, 11, 411, 510, 11, 500, 380, 286, 362, 257, 3170, 2183, 293, 3170, 1884, 19127, 30, 440, 3170, 2183, 307, 1096, 538, 264, 6916, 293, 264, 3170, 1884, 19127, 307, 1096, 538, 264, 5952, 3170, 13, 1981, 732, 11, 1184, 472, 1027, 257, 819, 4445, 337, 264, 1884, 19127, 11, 570, 341, 472, 7829, 257, 4384, 19127, 293, 341, 472, 7829, 257, 30513, 19127, 13, 1033, 11, 574, 510, 11, 264, 5952, 3170, 11247, 257, 777, 9859], "avg_logprob": -0.5243902257302913, "compression_ratio": 1.966824644549763, "no_speech_prob": 1.055002212524414e-05, "words": [{"start": 1746.36, "end": 1746.56, "word": " In", "probability": 0.1839599609375}, {"start": 1746.56, "end": 1746.64, "word": " the", "probability": 0.394775390625}, {"start": 1746.64, "end": 1746.9, "word": " concrete", "probability": 0.74658203125}, {"start": 1746.9, "end": 1747.3, "word": " creator,", "probability": 0.67822265625}, {"start": 1747.42, "end": 1747.6, "word": " like", "probability": 0.135986328125}, {"start": 1747.6, "end": 1748.9, "word": " here,", "probability": 0.712890625}, {"start": 1749.02, "end": 1749.18, "word": " don't", "probability": 0.562255859375}, {"start": 1749.18, "end": 1749.36, "word": " I", "probability": 0.8876953125}, {"start": 1749.36, "end": 1749.56, "word": " have", "probability": 0.94287109375}, {"start": 1749.56, "end": 1749.7, "word": " a", "probability": 0.421142578125}, {"start": 1749.7, "end": 1749.82, "word": " method", "probability": 0.8017578125}, {"start": 1749.82, "end": 1750.28, "word": " post", "probability": 0.276123046875}, {"start": 1750.28, "end": 1750.52, "word": " and", "probability": 0.70556640625}, {"start": 1750.52, "end": 1750.8, "word": " method", "probability": 0.66552734375}, {"start": 1750.8, "end": 1751.32, "word": " create", "probability": 0.9033203125}, {"start": 1751.32, "end": 1751.94, "word": " connector?", "probability": 0.70166015625}, {"start": 1752.42, "end": 1752.98, "word": " The", "probability": 0.64404296875}, {"start": 1752.98, "end": 1753.2, "word": " method", "probability": 0.765625}, {"start": 1753.2, "end": 1753.66, "word": " post", "probability": 0.84765625}, {"start": 1753.66, "end": 1753.86, "word": " is", "probability": 0.65185546875}, {"start": 1753.86, "end": 1754.1, "word": " done", "probability": 0.10711669921875}, {"start": 1754.1, "end": 1754.38, "word": " by", "probability": 0.958984375}, {"start": 1754.38, "end": 1754.48, "word": " the", "probability": 0.63916015625}, {"start": 1754.48, "end": 1754.94, "word": " operation", "probability": 0.896484375}, {"start": 1754.94, "end": 1755.64, "word": " and", "probability": 0.46435546875}, {"start": 1755.64, "end": 1755.76, "word": " the", "probability": 0.63916015625}, {"start": 1755.76, "end": 1756.08, "word": " method", "probability": 0.66943359375}, {"start": 1756.08, "end": 1756.08, "word": " create", "probability": 0.8701171875}, {"start": 1756.08, "end": 1756.58, "word": " connector", "probability": 0.90966796875}, {"start": 1756.58, "end": 1756.7, "word": " is", "probability": 0.71142578125}, {"start": 1756.7, "end": 1756.94, "word": " done", "probability": 0.818359375}, {"start": 1756.94, "end": 1757.76, "word": " by", "probability": 0.96630859375}, {"start": 1757.76, "end": 1757.96, "word": " the", "probability": 0.86181640625}, {"start": 1757.96, "end": 1758.22, "word": " factor", "probability": 0.56884765625}, {"start": 1758.22, "end": 1758.56, "word": " method.", "probability": 0.96826171875}, {"start": 1758.94, "end": 1759.28, "word": " These", "probability": 0.37548828125}, {"start": 1759.28, "end": 1759.68, "word": " two,", "probability": 0.84765625}, {"start": 1759.96, "end": 1760.18, "word": " each", "probability": 0.85888671875}, {"start": 1760.18, "end": 1760.46, "word": " one", "probability": 0.65283203125}, {"start": 1760.46, "end": 1760.64, "word": " made", "probability": 0.1468505859375}, {"start": 1760.64, "end": 1760.74, "word": " a", "probability": 0.75048828125}, {"start": 1760.74, "end": 1760.74, "word": " different", "probability": 0.85400390625}, {"start": 1760.74, "end": 1761.08, "word": " implement", "probability": 0.47265625}, {"start": 1761.08, "end": 1762.06, "word": " for", "probability": 0.7734375}, {"start": 1762.06, "end": 1762.2, "word": " the", "probability": 0.61865234375}, {"start": 1762.2, "end": 1762.42, "word": " create", "probability": 0.79931640625}, {"start": 1762.42, "end": 1762.78, "word": " connector,", "probability": 0.92431640625}, {"start": 1762.88, "end": 1763.02, "word": " because", "probability": 0.1998291015625}, {"start": 1763.02, "end": 1763.3, "word": " this", "probability": 0.60546875}, {"start": 1763.3, "end": 1763.38, "word": " one", "probability": 0.464599609375}, {"start": 1763.38, "end": 1763.68, "word": " creates", "probability": 0.314697265625}, {"start": 1763.68, "end": 1764.52, "word": " a", "probability": 0.44091796875}, {"start": 1764.52, "end": 1764.74, "word": " Facebook", "probability": 0.46630859375}, {"start": 1764.74, "end": 1765.2, "word": " connector", "probability": 0.81591796875}, {"start": 1765.2, "end": 1765.3, "word": " and", "probability": 0.8271484375}, {"start": 1765.3, "end": 1765.4, "word": " this", "probability": 0.7470703125}, {"start": 1765.4, "end": 1765.48, "word": " one", "probability": 0.84423828125}, {"start": 1765.48, "end": 1765.7, "word": " creates", "probability": 0.76416015625}, {"start": 1765.7, "end": 1765.8, "word": " a", "probability": 0.76220703125}, {"start": 1765.8, "end": 1766.02, "word": " WhatsApp", "probability": 0.61962890625}, {"start": 1766.02, "end": 1767.56, "word": " connector.", "probability": 0.79638671875}, {"start": 1769.1, "end": 1769.36, "word": " Okay,", "probability": 0.29052734375}, {"start": 1769.66, "end": 1770.1, "word": " look", "probability": 0.62353515625}, {"start": 1770.1, "end": 1770.44, "word": " here,", "probability": 0.77734375}, {"start": 1770.74, "end": 1771.06, "word": " the", "probability": 0.83837890625}, {"start": 1771.06, "end": 1771.36, "word": " factor", "probability": 0.84033203125}, {"start": 1771.36, "end": 1771.74, "word": " method", "probability": 0.93896484375}, {"start": 1771.74, "end": 1772.26, "word": " returns", "probability": 0.669921875}, {"start": 1772.26, "end": 1772.42, "word": " a", "probability": 0.62060546875}, {"start": 1772.42, "end": 1773.16, "word": " new", "probability": 0.83203125}, {"start": 1773.16, "end": 1773.62, "word": " concrete", "probability": 0.92236328125}], "temperature": 1.0}, {"id": 73, "seek": 180222, "start": 1774.66, "end": 1802.22, "text": " The concrete creator produces concrete product. Facebook poster produces Facebook connector. Whatsapp poster produces Whatsapp connector. So, the different parts of this method of operation have common parts, which are, in short, the different part. The different part is what the subclass is going to do. Do you understand something, guys? I linked this class diagram to the example that I explained.", "tokens": [440, 9859, 14181, 14725, 9859, 1674, 13, 4384, 17171, 14725, 4384, 19127, 13, 22051, 1746, 17171, 14725, 22051, 1746, 19127, 13, 407, 11, 264, 819, 3166, 295, 341, 3170, 295, 6916, 362, 2689, 3166, 11, 597, 366, 11, 294, 2099, 11, 264, 819, 644, 13, 440, 819, 644, 307, 437, 264, 1422, 11665, 307, 516, 281, 360, 13, 1144, 291, 1223, 746, 11, 1074, 30, 286, 9408, 341, 1508, 10686, 281, 264, 1365, 300, 286, 8825, 13], "avg_logprob": -0.6177884691800827, "compression_ratio": 1.8026905829596414, "no_speech_prob": 8.58306884765625e-06, "words": [{"start": 1774.66, "end": 1775.28, "word": " The", "probability": 0.1708984375}, {"start": 1775.28, "end": 1775.68, "word": " concrete", "probability": 0.63623046875}, {"start": 1775.68, "end": 1776.18, "word": " creator", "probability": 0.80517578125}, {"start": 1776.18, "end": 1776.46, "word": " produces", "probability": 0.2464599609375}, {"start": 1776.46, "end": 1776.84, "word": " concrete", "probability": 0.55224609375}, {"start": 1776.84, "end": 1777.34, "word": " product.", "probability": 0.52197265625}, {"start": 1778.1, "end": 1778.9, "word": " Facebook", "probability": 0.431884765625}, {"start": 1778.9, "end": 1779.72, "word": " poster", "probability": 0.4404296875}, {"start": 1779.72, "end": 1780.06, "word": " produces", "probability": 0.88525390625}, {"start": 1780.06, "end": 1780.52, "word": " Facebook", "probability": 0.57666015625}, {"start": 1780.52, "end": 1781.78, "word": " connector.", "probability": 0.6494140625}, {"start": 1781.94, "end": 1782.4, "word": " Whatsapp", "probability": 0.719970703125}, {"start": 1782.4, "end": 1782.82, "word": " poster", "probability": 0.76171875}, {"start": 1782.82, "end": 1783.4, "word": " produces", "probability": 0.91845703125}, {"start": 1783.4, "end": 1783.94, "word": " Whatsapp", "probability": 0.830810546875}, {"start": 1783.94, "end": 1785.14, "word": " connector.", "probability": 0.876953125}, {"start": 1785.74, "end": 1785.78, "word": " So,", "probability": 0.35986328125}, {"start": 1785.9, "end": 1785.94, "word": " the", "probability": 0.53515625}, {"start": 1785.94, "end": 1786.8, "word": " different", "probability": 0.5078125}, {"start": 1786.8, "end": 1786.8, "word": " parts", "probability": 0.71630859375}, {"start": 1786.8, "end": 1787.5, "word": " of", "probability": 0.7275390625}, {"start": 1787.5, "end": 1787.76, "word": " this", "probability": 0.64501953125}, {"start": 1787.76, "end": 1788.08, "word": " method", "probability": 0.87255859375}, {"start": 1788.08, "end": 1788.2, "word": " of", "probability": 0.541015625}, {"start": 1788.2, "end": 1788.68, "word": " operation", "probability": 0.88720703125}, {"start": 1788.68, "end": 1788.96, "word": " have", "probability": 0.29052734375}, {"start": 1788.96, "end": 1789.46, "word": " common", "probability": 0.37353515625}, {"start": 1789.46, "end": 1789.6, "word": " parts,", "probability": 0.77734375}, {"start": 1790.02, "end": 1790.02, "word": " which", "probability": 0.490478515625}, {"start": 1790.02, "end": 1790.18, "word": " are,", "probability": 0.4892578125}, {"start": 1790.22, "end": 1790.24, "word": " in", "probability": 0.385498046875}, {"start": 1790.24, "end": 1790.64, "word": " short,", "probability": 0.58154296875}, {"start": 1791.24, "end": 1791.42, "word": " the", "probability": 0.564453125}, {"start": 1791.42, "end": 1791.9, "word": " different", "probability": 0.8212890625}, {"start": 1791.9, "end": 1792.0, "word": " part.", "probability": 0.33984375}, {"start": 1792.24, "end": 1792.38, "word": " The", "probability": 0.429931640625}, {"start": 1792.38, "end": 1792.92, "word": " different", "probability": 0.7568359375}, {"start": 1792.92, "end": 1792.92, "word": " part", "probability": 0.86962890625}, {"start": 1792.92, "end": 1793.12, "word": " is", "probability": 0.14208984375}, {"start": 1793.12, "end": 1793.28, "word": " what", "probability": 0.303466796875}, {"start": 1793.28, "end": 1793.62, "word": " the", "probability": 0.423583984375}, {"start": 1793.62, "end": 1794.24, "word": " subclass", "probability": 0.8857421875}, {"start": 1794.24, "end": 1794.94, "word": " is", "probability": 0.2220458984375}, {"start": 1794.94, "end": 1795.08, "word": " going", "probability": 0.71337890625}, {"start": 1795.08, "end": 1795.12, "word": " to", "probability": 0.97265625}, {"start": 1795.12, "end": 1795.4, "word": " do.", "probability": 0.9404296875}, {"start": 1796.02, "end": 1796.3, "word": " Do", "probability": 0.32861328125}, {"start": 1796.3, "end": 1796.3, "word": " you", "probability": 0.96337890625}, {"start": 1796.3, "end": 1796.46, "word": " understand", "probability": 0.5849609375}, {"start": 1796.46, "end": 1796.76, "word": " something,", "probability": 0.1614990234375}, {"start": 1796.86, "end": 1797.0, "word": " guys?", "probability": 0.70166015625}, {"start": 1797.44, "end": 1797.94, "word": " I", "probability": 0.8447265625}, {"start": 1797.94, "end": 1798.28, "word": " linked", "probability": 0.218994140625}, {"start": 1798.28, "end": 1798.7, "word": " this", "probability": 0.295166015625}, {"start": 1798.7, "end": 1799.26, "word": " class", "probability": 0.82373046875}, {"start": 1799.26, "end": 1799.66, "word": " diagram", "probability": 0.92724609375}, {"start": 1799.66, "end": 1800.12, "word": " to", "probability": 0.427978515625}, {"start": 1800.12, "end": 1800.58, "word": " the", "probability": 0.27978515625}, {"start": 1800.58, "end": 1800.98, "word": " example", "probability": 0.876953125}, {"start": 1800.98, "end": 1801.36, "word": " that", "probability": 0.48779296875}, {"start": 1801.36, "end": 1802.0, "word": " I", "probability": 0.97412109375}, {"start": 1802.0, "end": 1802.22, "word": " explained.", "probability": 0.354736328125}], "temperature": 1.0}, {"id": 74, "seek": 181665, "start": 1805.77, "end": 1816.65, "text": "I will explain to you what are the components of an N class diagram, what is a product, what is a concrete product, what is a creator, what is a concrete creator, I explained this to you to understand better.", "tokens": [40, 486, 2903, 281, 291, 437, 366, 264, 6677, 295, 364, 426, 1508, 10686, 11, 437, 307, 257, 1674, 11, 437, 307, 257, 9859, 1674, 11, 437, 307, 257, 14181, 11, 437, 307, 257, 9859, 14181, 11, 286, 8825, 341, 281, 291, 281, 1223, 1101, 13], "avg_logprob": -0.5894282168530404, "compression_ratio": 1.6910569105691058, "no_speech_prob": 0.0, "words": [{"start": 1805.7700000000002, "end": 1806.13, "word": "I", "probability": 0.10443115234375}, {"start": 1806.13, "end": 1806.49, "word": " will", "probability": 0.352783203125}, {"start": 1806.49, "end": 1806.69, "word": " explain", "probability": 0.63330078125}, {"start": 1806.69, "end": 1806.87, "word": " to", "probability": 0.1676025390625}, {"start": 1806.87, "end": 1808.83, "word": " you", "probability": 0.962890625}, {"start": 1808.83, "end": 1808.97, "word": " what", "probability": 0.48388671875}, {"start": 1808.97, "end": 1808.99, "word": " are", "probability": 0.371337890625}, {"start": 1808.99, "end": 1809.43, "word": " the", "probability": 0.51708984375}, {"start": 1809.43, "end": 1809.43, "word": " components", "probability": 0.4189453125}, {"start": 1809.43, "end": 1810.23, "word": " of", "probability": 0.8369140625}, {"start": 1810.23, "end": 1810.37, "word": " an", "probability": 0.2269287109375}, {"start": 1810.37, "end": 1810.47, "word": " N", "probability": 0.52197265625}, {"start": 1810.47, "end": 1810.75, "word": " class", "probability": 0.583984375}, {"start": 1810.75, "end": 1811.05, "word": " diagram,", "probability": 0.8779296875}, {"start": 1811.15, "end": 1811.29, "word": " what", "probability": 0.64501953125}, {"start": 1811.29, "end": 1811.43, "word": " is", "probability": 0.396484375}, {"start": 1811.43, "end": 1811.55, "word": " a", "probability": 0.436767578125}, {"start": 1811.55, "end": 1811.85, "word": " product,", "probability": 0.91015625}, {"start": 1811.99, "end": 1812.09, "word": " what", "probability": 0.88232421875}, {"start": 1812.09, "end": 1812.15, "word": " is", "probability": 0.890625}, {"start": 1812.15, "end": 1812.21, "word": " a", "probability": 0.888671875}, {"start": 1812.21, "end": 1812.51, "word": " concrete", "probability": 0.66943359375}, {"start": 1812.51, "end": 1812.85, "word": " product,", "probability": 0.89697265625}, {"start": 1813.03, "end": 1813.13, "word": " what", "probability": 0.90478515625}, {"start": 1813.13, "end": 1813.19, "word": " is", "probability": 0.91162109375}, {"start": 1813.19, "end": 1813.29, "word": " a", "probability": 0.93505859375}, {"start": 1813.29, "end": 1813.69, "word": " creator,", "probability": 0.90771484375}, {"start": 1813.79, "end": 1813.85, "word": " what", "probability": 0.72607421875}, {"start": 1813.85, "end": 1813.91, "word": " is", "probability": 0.939453125}, {"start": 1813.91, "end": 1813.99, "word": " a", "probability": 0.95703125}, {"start": 1813.99, "end": 1814.31, "word": " concrete", "probability": 0.896484375}, {"start": 1814.31, "end": 1814.69, "word": " creator,", "probability": 0.951171875}, {"start": 1814.73, "end": 1814.91, "word": " I", "probability": 0.52001953125}, {"start": 1814.91, "end": 1815.33, "word": " explained", "probability": 0.30224609375}, {"start": 1815.33, "end": 1815.51, "word": " this", "probability": 0.3076171875}, {"start": 1815.51, "end": 1815.97, "word": " to", "probability": 0.338134765625}, {"start": 1815.97, "end": 1815.97, "word": " you", "probability": 0.80859375}, {"start": 1815.97, "end": 1816.29, "word": " to", "probability": 0.29296875}, {"start": 1816.29, "end": 1816.53, "word": " understand", "probability": 0.296630859375}, {"start": 1816.53, "end": 1816.65, "word": " better.", "probability": 0.351806640625}], "temperature": 1.0}, {"id": 75, "seek": 184155, "start": 1818.97, "end": 1841.55, "text": "So what exactly does it mean when we say that the factorial method pattern lets subclasses decide which classes to instantiate It means that the creator class is written without knowing what actual concrete product will be instantiated The creator class", "tokens": [6455, 437, 2293, 775, 309, 914, 562, 321, 584, 300, 264, 36916, 3170, 5102, 6653, 1422, 11665, 279, 4536, 597, 5359, 281, 9836, 13024, 467, 1355, 300, 264, 14181, 1508, 307, 3720, 1553, 5276, 437, 3539, 9859, 1674, 486, 312, 9836, 72, 770, 440, 14181, 1508], "avg_logprob": -0.23387632598268224, "compression_ratio": 1.65359477124183, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1818.97, "end": 1819.49, "word": "So", "probability": 0.4345703125}, {"start": 1819.49, "end": 1819.71, "word": " what", "probability": 0.73876953125}, {"start": 1819.71, "end": 1820.29, "word": " exactly", "probability": 0.86865234375}, {"start": 1820.29, "end": 1821.09, "word": " does", "probability": 0.9375}, {"start": 1821.09, "end": 1821.25, "word": " it", "probability": 0.95654296875}, {"start": 1821.25, "end": 1821.49, "word": " mean", "probability": 0.947265625}, {"start": 1821.49, "end": 1821.65, "word": " when", "probability": 0.8388671875}, {"start": 1821.65, "end": 1821.81, "word": " we", "probability": 0.892578125}, {"start": 1821.81, "end": 1822.03, "word": " say", "probability": 0.9501953125}, {"start": 1822.03, "end": 1822.25, "word": " that", "probability": 0.88037109375}, {"start": 1822.25, "end": 1822.41, "word": " the", "probability": 0.82421875}, {"start": 1822.41, "end": 1822.73, "word": " factorial", "probability": 0.34423828125}, {"start": 1822.73, "end": 1823.07, "word": " method", "probability": 0.9208984375}, {"start": 1823.07, "end": 1823.69, "word": " pattern", "probability": 0.8291015625}, {"start": 1823.69, "end": 1824.51, "word": " lets", "probability": 0.72021484375}, {"start": 1824.51, "end": 1825.25, "word": " subclasses", "probability": 0.8802083333333334}, {"start": 1825.25, "end": 1825.63, "word": " decide", "probability": 0.916015625}, {"start": 1825.63, "end": 1825.87, "word": " which", "probability": 0.94287109375}, {"start": 1825.87, "end": 1826.23, "word": " classes", "probability": 0.86962890625}, {"start": 1826.23, "end": 1826.37, "word": " to", "probability": 0.96728515625}, {"start": 1826.37, "end": 1826.97, "word": " instantiate", "probability": 0.933837890625}, {"start": 1826.97, "end": 1827.27, "word": " It", "probability": 0.1275634765625}, {"start": 1827.27, "end": 1831.09, "word": " means", "probability": 0.912109375}, {"start": 1831.09, "end": 1831.37, "word": " that", "probability": 0.93505859375}, {"start": 1831.37, "end": 1831.55, "word": " the", "probability": 0.88818359375}, {"start": 1831.55, "end": 1831.87, "word": " creator", "probability": 0.59765625}, {"start": 1831.87, "end": 1832.27, "word": " class", "probability": 0.9453125}, {"start": 1832.27, "end": 1832.45, "word": " is", "probability": 0.94580078125}, {"start": 1832.45, "end": 1832.83, "word": " written", "probability": 0.90673828125}, {"start": 1832.83, "end": 1833.25, "word": " without", "probability": 0.90478515625}, {"start": 1833.25, "end": 1833.75, "word": " knowing", "probability": 0.841796875}, {"start": 1833.75, "end": 1834.03, "word": " what", "probability": 0.9248046875}, {"start": 1834.03, "end": 1834.53, "word": " actual", "probability": 0.841796875}, {"start": 1834.53, "end": 1834.95, "word": " concrete", "probability": 0.845703125}, {"start": 1834.95, "end": 1835.43, "word": " product", "probability": 0.916015625}, {"start": 1835.43, "end": 1835.81, "word": " will", "probability": 0.87353515625}, {"start": 1835.81, "end": 1835.99, "word": " be", "probability": 0.94775390625}, {"start": 1835.99, "end": 1837.41, "word": " instantiated", "probability": 0.9744466145833334}, {"start": 1837.41, "end": 1838.51, "word": " The", "probability": 0.390625}, {"start": 1838.51, "end": 1841.01, "word": " creator", "probability": 0.8515625}, {"start": 1841.01, "end": 1841.55, "word": " class", "probability": 0.96142578125}], "temperature": 1.0}, {"id": 76, "seek": 187050, "start": 1842.98, "end": 1870.5, "text": " The social media poster. We wrote it even though we don't know what connector we are going to use. Right or wrong? We don't know. So actually, the concrete class which is instantiated is determined solely by which concrete creator subclass is instantiated and used by the application. What does this mean? Which determines the concrete product only from the concrete creator.", "tokens": [440, 2093, 3021, 17171, 13, 492, 4114, 309, 754, 1673, 321, 500, 380, 458, 437, 19127, 321, 366, 516, 281, 764, 13, 1779, 420, 2085, 30, 492, 500, 380, 458, 13, 407, 767, 11, 264, 9859, 1508, 597, 307, 9836, 72, 770, 307, 9540, 23309, 538, 597, 9859, 14181, 1422, 11665, 307, 9836, 72, 770, 293, 1143, 538, 264, 3861, 13, 708, 775, 341, 914, 30, 3013, 24799, 264, 9859, 1674, 787, 490, 264, 9859, 14181, 13], "avg_logprob": -0.32011217260972047, "compression_ratio": 1.7327188940092166, "no_speech_prob": 3.5762786865234375e-07, "words": [{"start": 1842.98, "end": 1843.18, "word": " The", "probability": 0.1861572265625}, {"start": 1843.18, "end": 1843.4, "word": " social", "probability": 0.6943359375}, {"start": 1843.4, "end": 1843.64, "word": " media", "probability": 0.92724609375}, {"start": 1843.64, "end": 1844.0, "word": " poster.", "probability": 0.52587890625}, {"start": 1844.08, "end": 1844.22, "word": " We", "probability": 0.69287109375}, {"start": 1844.22, "end": 1844.34, "word": " wrote", "probability": 0.77734375}, {"start": 1844.34, "end": 1844.56, "word": " it", "probability": 0.80078125}, {"start": 1844.56, "end": 1844.7, "word": " even", "probability": 0.1490478515625}, {"start": 1844.7, "end": 1844.72, "word": " though", "probability": 0.7099609375}, {"start": 1844.72, "end": 1844.92, "word": " we", "probability": 0.95166015625}, {"start": 1844.92, "end": 1845.0, "word": " don't", "probability": 0.75732421875}, {"start": 1845.0, "end": 1845.36, "word": " know", "probability": 0.8544921875}, {"start": 1845.36, "end": 1845.54, "word": " what", "probability": 0.64501953125}, {"start": 1845.54, "end": 1846.26, "word": " connector", "probability": 0.2880859375}, {"start": 1846.26, "end": 1846.9, "word": " we", "probability": 0.64404296875}, {"start": 1846.9, "end": 1846.98, "word": " are", "probability": 0.218017578125}, {"start": 1846.98, "end": 1847.04, "word": " going", "probability": 0.73095703125}, {"start": 1847.04, "end": 1847.08, "word": " to", "probability": 0.96875}, {"start": 1847.08, "end": 1847.34, "word": " use.", "probability": 0.4677734375}, {"start": 1847.56, "end": 1847.76, "word": " Right", "probability": 0.455078125}, {"start": 1847.76, "end": 1847.96, "word": " or", "probability": 0.8125}, {"start": 1847.96, "end": 1848.06, "word": " wrong?", "probability": 0.5537109375}, {"start": 1848.58, "end": 1848.74, "word": " We", "probability": 0.7939453125}, {"start": 1848.74, "end": 1848.82, "word": " don't", "probability": 0.9052734375}, {"start": 1848.82, "end": 1849.14, "word": " know.", "probability": 0.86328125}, {"start": 1850.48, "end": 1850.78, "word": " So", "probability": 0.6318359375}, {"start": 1850.78, "end": 1851.12, "word": " actually,", "probability": 0.2392578125}, {"start": 1851.92, "end": 1853.74, "word": " the", "probability": 0.693359375}, {"start": 1853.74, "end": 1854.2, "word": " concrete", "probability": 0.86767578125}, {"start": 1854.2, "end": 1855.02, "word": " class", "probability": 0.94580078125}, {"start": 1855.02, "end": 1855.82, "word": " which", "probability": 0.84375}, {"start": 1855.82, "end": 1856.02, "word": " is", "probability": 0.94287109375}, {"start": 1856.02, "end": 1856.72, "word": " instantiated", "probability": 0.9293619791666666}, {"start": 1856.72, "end": 1856.94, "word": " is", "probability": 0.8623046875}, {"start": 1856.94, "end": 1857.5, "word": " determined", "probability": 0.947265625}, {"start": 1857.5, "end": 1858.26, "word": " solely", "probability": 0.9599609375}, {"start": 1858.26, "end": 1858.72, "word": " by", "probability": 0.9638671875}, {"start": 1858.72, "end": 1859.08, "word": " which", "probability": 0.93798828125}, {"start": 1859.08, "end": 1859.6, "word": " concrete", "probability": 0.916015625}, {"start": 1859.6, "end": 1860.22, "word": " creator", "probability": 0.94189453125}, {"start": 1860.22, "end": 1860.96, "word": " subclass", "probability": 0.899169921875}, {"start": 1860.96, "end": 1861.26, "word": " is", "probability": 0.9404296875}, {"start": 1861.26, "end": 1862.16, "word": " instantiated", "probability": 0.9583333333333334}, {"start": 1862.16, "end": 1862.42, "word": " and", "probability": 0.822265625}, {"start": 1862.42, "end": 1862.7, "word": " used", "probability": 0.9287109375}, {"start": 1862.7, "end": 1862.92, "word": " by", "probability": 0.96142578125}, {"start": 1862.92, "end": 1863.04, "word": " the", "probability": 0.8896484375}, {"start": 1863.04, "end": 1863.52, "word": " application.", "probability": 0.9140625}, {"start": 1864.12, "end": 1864.36, "word": " What", "probability": 0.84521484375}, {"start": 1864.36, "end": 1864.48, "word": " does", "probability": 0.91845703125}, {"start": 1864.48, "end": 1864.74, "word": " this", "probability": 0.71240234375}, {"start": 1864.74, "end": 1864.74, "word": " mean?", "probability": 0.96337890625}, {"start": 1864.94, "end": 1865.26, "word": " Which", "probability": 0.230224609375}, {"start": 1865.26, "end": 1865.68, "word": " determines", "probability": 0.52490234375}, {"start": 1865.68, "end": 1865.9, "word": " the", "probability": 0.8486328125}, {"start": 1865.9, "end": 1866.26, "word": " concrete", "probability": 0.8828125}, {"start": 1866.26, "end": 1866.9, "word": " product", "probability": 0.93359375}, {"start": 1866.9, "end": 1868.08, "word": " only", "probability": 0.62646484375}, {"start": 1868.08, "end": 1868.32, "word": " from", "probability": 0.677734375}, {"start": 1868.32, "end": 1868.64, "word": " the", "probability": 0.88818359375}, {"start": 1868.64, "end": 1869.18, "word": " concrete", "probability": 0.92041015625}, {"start": 1869.18, "end": 1870.5, "word": " creator.", "probability": 0.9599609375}], "temperature": 1.0}, {"id": 77, "seek": 190040, "start": 1871.32, "end": 1900.4, "text": "What does it mean? The one that determines the connector that I want to create is the subclass, the poster that determines it. This is the meaning of this example. It is through the use of data, that they override or implement this factor method. In order to better understand this topic, let's see another use of the factor method. Through another example. Also, this example will show another useful use.", "tokens": [3748, 775, 309, 914, 30, 440, 472, 300, 24799, 264, 19127, 300, 286, 528, 281, 1884, 307, 264, 1422, 11665, 11, 264, 17171, 300, 24799, 309, 13, 639, 307, 264, 3620, 295, 341, 1365, 13, 467, 307, 807, 264, 764, 295, 1412, 11, 300, 436, 42321, 420, 4445, 341, 5952, 3170, 13, 682, 1668, 281, 1101, 1223, 341, 4829, 11, 718, 311, 536, 1071, 764, 295, 264, 5952, 3170, 13, 8927, 1071, 1365, 13, 2743, 11, 341, 1365, 486, 855, 1071, 4420, 764, 13], "avg_logprob": -0.5562500280492446, "compression_ratio": 1.8206278026905829, "no_speech_prob": 5.960464477539062e-07, "words": [{"start": 1871.32, "end": 1871.64, "word": "What", "probability": 0.16943359375}, {"start": 1871.64, "end": 1871.82, "word": " does", "probability": 0.62841796875}, {"start": 1871.82, "end": 1871.82, "word": " it", "probability": 0.483642578125}, {"start": 1871.82, "end": 1871.88, "word": " mean?", "probability": 0.94580078125}, {"start": 1871.94, "end": 1872.08, "word": " The", "probability": 0.41259765625}, {"start": 1872.08, "end": 1872.1, "word": " one", "probability": 0.404541015625}, {"start": 1872.1, "end": 1872.18, "word": " that", "probability": 0.2147216796875}, {"start": 1872.18, "end": 1872.48, "word": " determines", "probability": 0.1328125}, {"start": 1872.48, "end": 1872.68, "word": " the", "probability": 0.7041015625}, {"start": 1872.68, "end": 1873.18, "word": " connector", "probability": 0.289794921875}, {"start": 1873.18, "end": 1873.28, "word": " that", "probability": 0.49365234375}, {"start": 1873.28, "end": 1873.42, "word": " I", "probability": 0.85693359375}, {"start": 1873.42, "end": 1873.62, "word": " want", "probability": 0.6123046875}, {"start": 1873.62, "end": 1874.04, "word": " to", "probability": 0.783203125}, {"start": 1874.04, "end": 1874.04, "word": " create", "probability": 0.1177978515625}, {"start": 1874.04, "end": 1875.34, "word": " is", "probability": 0.462158203125}, {"start": 1875.34, "end": 1875.9, "word": " the", "probability": 0.5625}, {"start": 1875.9, "end": 1876.76, "word": " subclass,", "probability": 0.631103515625}, {"start": 1876.82, "end": 1876.94, "word": " the", "probability": 0.67041015625}, {"start": 1876.94, "end": 1877.26, "word": " poster", "probability": 0.8935546875}, {"start": 1877.26, "end": 1877.4, "word": " that", "probability": 0.66357421875}, {"start": 1877.4, "end": 1877.68, "word": " determines", "probability": 0.892578125}, {"start": 1877.68, "end": 1878.12, "word": " it.", "probability": 0.736328125}, {"start": 1879.84, "end": 1880.36, "word": " This", "probability": 0.302490234375}, {"start": 1880.36, "end": 1880.44, "word": " is", "probability": 0.91259765625}, {"start": 1880.44, "end": 1880.58, "word": " the", "probability": 0.8056640625}, {"start": 1880.58, "end": 1880.58, "word": " meaning", "probability": 0.8251953125}, {"start": 1880.58, "end": 1880.7, "word": " of", "probability": 0.955078125}, {"start": 1880.7, "end": 1880.72, "word": " this", "probability": 0.603515625}, {"start": 1880.72, "end": 1880.98, "word": " example.", "probability": 0.95556640625}, {"start": 1881.22, "end": 1881.38, "word": " It", "probability": 0.2110595703125}, {"start": 1881.38, "end": 1881.76, "word": " is", "probability": 0.61669921875}, {"start": 1881.76, "end": 1882.22, "word": " through", "probability": 0.3017578125}, {"start": 1882.22, "end": 1882.56, "word": " the", "probability": 0.39501953125}, {"start": 1882.56, "end": 1882.9, "word": " use", "probability": 0.82666015625}, {"start": 1882.9, "end": 1883.14, "word": " of", "probability": 0.97412109375}, {"start": 1883.14, "end": 1883.3, "word": " data,", "probability": 0.307373046875}, {"start": 1883.38, "end": 1883.48, "word": " that", "probability": 0.25927734375}, {"start": 1883.48, "end": 1883.52, "word": " they", "probability": 0.273681640625}, {"start": 1883.52, "end": 1884.56, "word": " override", "probability": 0.394775390625}, {"start": 1884.56, "end": 1884.98, "word": " or", "probability": 0.791015625}, {"start": 1884.98, "end": 1885.48, "word": " implement", "probability": 0.884765625}, {"start": 1885.48, "end": 1885.78, "word": " this", "probability": 0.5478515625}, {"start": 1885.78, "end": 1886.88, "word": " factor", "probability": 0.340087890625}, {"start": 1886.88, "end": 1887.26, "word": " method.", "probability": 0.822265625}, {"start": 1890.02, "end": 1890.54, "word": " In", "probability": 0.2353515625}, {"start": 1890.54, "end": 1890.7, "word": " order", "probability": 0.91796875}, {"start": 1890.7, "end": 1890.94, "word": " to", "probability": 0.935546875}, {"start": 1890.94, "end": 1891.22, "word": " better", "probability": 0.63818359375}, {"start": 1891.22, "end": 1891.22, "word": " understand", "probability": 0.72509765625}, {"start": 1891.22, "end": 1891.36, "word": " this", "probability": 0.5654296875}, {"start": 1891.36, "end": 1892.78, "word": " topic,", "probability": 0.446533203125}, {"start": 1893.36, "end": 1893.72, "word": " let's", "probability": 0.86962890625}, {"start": 1893.72, "end": 1893.92, "word": " see", "probability": 0.438720703125}, {"start": 1893.92, "end": 1894.06, "word": " another", "probability": 0.9169921875}, {"start": 1894.06, "end": 1894.34, "word": " use", "probability": 0.796875}, {"start": 1894.34, "end": 1895.0, "word": " of", "probability": 0.74169921875}, {"start": 1895.0, "end": 1895.12, "word": " the", "probability": 0.603515625}, {"start": 1895.12, "end": 1895.36, "word": " factor", "probability": 0.80419921875}, {"start": 1895.36, "end": 1895.76, "word": " method.", "probability": 0.94775390625}, {"start": 1896.42, "end": 1896.94, "word": " Through", "probability": 0.253173828125}, {"start": 1896.94, "end": 1897.66, "word": " another", "probability": 0.884765625}, {"start": 1897.66, "end": 1897.66, "word": " example.", "probability": 0.97021484375}, {"start": 1897.86, "end": 1898.06, "word": " Also,", "probability": 0.455810546875}, {"start": 1898.16, "end": 1898.32, "word": " this", "probability": 0.92431640625}, {"start": 1898.32, "end": 1898.7, "word": " example", "probability": 0.95654296875}, {"start": 1898.7, "end": 1898.88, "word": " will", "probability": 0.708984375}, {"start": 1898.88, "end": 1899.14, "word": " show", "probability": 0.53564453125}, {"start": 1899.14, "end": 1900.0, "word": " another", "probability": 0.64892578125}, {"start": 1900.0, "end": 1900.4, "word": " useful", "probability": 0.77880859375}, {"start": 1900.4, "end": 1900.4, "word": " use.", "probability": 0.859375}], "temperature": 1.0}, {"id": 78, "seek": 191581, "start": 1902.27, "end": 1915.81, "text": " Now, this is basically a design for a game, a maze game. What is a maze? It is a maze, a maze is a maze. Did you notice that the maze is made up of rooms, rooms with doors between them.", "tokens": [823, 11, 341, 307, 1936, 257, 1715, 337, 257, 1216, 11, 257, 33032, 1216, 13, 708, 307, 257, 33032, 30, 467, 307, 257, 33032, 11, 257, 33032, 307, 257, 33032, 13, 2589, 291, 3449, 300, 264, 33032, 307, 1027, 493, 295, 9396, 11, 9396, 365, 8077, 1296, 552, 13], "avg_logprob": -0.6306250059604644, "compression_ratio": 1.441860465116279, "no_speech_prob": 0.00019681453704833984, "words": [{"start": 1902.27, "end": 1902.71, "word": " Now,", "probability": 0.1617431640625}, {"start": 1902.89, "end": 1903.27, "word": " this", "probability": 0.70263671875}, {"start": 1903.27, "end": 1903.41, "word": " is", "probability": 0.6435546875}, {"start": 1903.41, "end": 1903.69, "word": " basically", "probability": 0.254150390625}, {"start": 1903.69, "end": 1903.91, "word": " a", "probability": 0.63330078125}, {"start": 1903.91, "end": 1904.17, "word": " design", "probability": 0.34619140625}, {"start": 1904.17, "end": 1904.29, "word": " for", "probability": 0.77197265625}, {"start": 1904.29, "end": 1904.35, "word": " a", "probability": 0.939453125}, {"start": 1904.35, "end": 1904.55, "word": " game,", "probability": 0.79736328125}, {"start": 1905.21, "end": 1905.41, "word": " a", "probability": 0.79931640625}, {"start": 1905.41, "end": 1905.91, "word": " maze", "probability": 0.496337890625}, {"start": 1905.91, "end": 1906.37, "word": " game.", "probability": 0.7470703125}, {"start": 1906.43, "end": 1906.57, "word": " What", "probability": 0.6162109375}, {"start": 1906.57, "end": 1906.67, "word": " is", "probability": 0.61767578125}, {"start": 1906.67, "end": 1906.83, "word": " a", "probability": 0.42626953125}, {"start": 1906.83, "end": 1906.99, "word": " maze?", "probability": 0.78125}, {"start": 1908.27, "end": 1908.63, "word": " It", "probability": 0.36083984375}, {"start": 1908.63, "end": 1908.63, "word": " is", "probability": 0.58984375}, {"start": 1908.63, "end": 1908.63, "word": " a", "probability": 0.724609375}, {"start": 1908.63, "end": 1908.87, "word": " maze,", "probability": 0.80078125}, {"start": 1909.01, "end": 1909.55, "word": " a", "probability": 0.25537109375}, {"start": 1909.55, "end": 1909.67, "word": " maze", "probability": 0.9033203125}, {"start": 1909.67, "end": 1909.85, "word": " is", "probability": 0.39208984375}, {"start": 1909.85, "end": 1909.95, "word": " a", "probability": 0.79052734375}, {"start": 1909.95, "end": 1910.15, "word": " maze.", "probability": 0.9111328125}, {"start": 1910.51, "end": 1910.93, "word": " Did", "probability": 0.17578125}, {"start": 1910.93, "end": 1911.09, "word": " you", "probability": 0.96484375}, {"start": 1911.09, "end": 1911.09, "word": " notice", "probability": 0.245849609375}, {"start": 1911.09, "end": 1911.17, "word": " that", "probability": 0.63427734375}, {"start": 1911.17, "end": 1911.23, "word": " the", "probability": 0.53466796875}, {"start": 1911.23, "end": 1911.53, "word": " maze", "probability": 0.91552734375}, {"start": 1911.53, "end": 1912.65, "word": " is", "probability": 0.63427734375}, {"start": 1912.65, "end": 1912.87, "word": " made", "probability": 0.55419921875}, {"start": 1912.87, "end": 1913.07, "word": " up", "probability": 0.55908203125}, {"start": 1913.07, "end": 1913.11, "word": " of", "probability": 0.94091796875}, {"start": 1913.11, "end": 1913.81, "word": " rooms,", "probability": 0.80810546875}, {"start": 1914.15, "end": 1914.41, "word": " rooms", "probability": 0.279052734375}, {"start": 1914.41, "end": 1914.83, "word": " with", "probability": 0.54638671875}, {"start": 1914.83, "end": 1915.69, "word": " doors", "probability": 0.89892578125}, {"start": 1915.69, "end": 1915.69, "word": " between", "probability": 0.3330078125}, {"start": 1915.69, "end": 1915.81, "word": " them.", "probability": 0.8095703125}], "temperature": 1.0}, {"id": 79, "seek": 194615, "start": 1920.09, "end": 1946.15, "text": "Components of a room. A room consists of a room. A room means a room. And a room has methods like enter, sit side, get side. Right? Now, a room also consists of a wall and a door. Because a room does not have walls and doors. Right? This is a wall and this is a door. Of course, what did he do in his design? The room, the wall and the door were implemented to the same interface called mapsite.", "tokens": [34, 8586, 40496, 295, 257, 1808, 13, 316, 1808, 14689, 295, 257, 1808, 13, 316, 1808, 1355, 257, 1808, 13, 400, 257, 1808, 575, 7150, 411, 3242, 11, 1394, 1252, 11, 483, 1252, 13, 1779, 30, 823, 11, 257, 1808, 611, 14689, 295, 257, 2929, 293, 257, 2853, 13, 1436, 257, 1808, 775, 406, 362, 7920, 293, 8077, 13, 1779, 30, 639, 307, 257, 2929, 293, 341, 307, 257, 2853, 13, 2720, 1164, 11, 437, 630, 415, 360, 294, 702, 1715, 30, 440, 1808, 11, 264, 2929, 293, 264, 2853, 645, 12270, 281, 264, 912, 9226, 1219, 11317, 642, 13], "avg_logprob": -0.4579207979806579, "compression_ratio": 1.8544600938967135, "no_speech_prob": 5.602836608886719e-06, "words": [{"start": 1920.09, "end": 1920.53, "word": "Components", "probability": 0.47149658203125}, {"start": 1920.53, "end": 1920.75, "word": " of", "probability": 0.80859375}, {"start": 1920.75, "end": 1920.79, "word": " a", "probability": 0.2059326171875}, {"start": 1920.79, "end": 1921.01, "word": " room.", "probability": 0.2998046875}, {"start": 1921.07, "end": 1921.19, "word": " A", "probability": 0.400634765625}, {"start": 1921.19, "end": 1921.45, "word": " room", "probability": 0.66015625}, {"start": 1921.45, "end": 1921.71, "word": " consists", "probability": 0.2919921875}, {"start": 1921.71, "end": 1922.51, "word": " of", "probability": 0.9453125}, {"start": 1922.51, "end": 1922.67, "word": " a", "probability": 0.533203125}, {"start": 1922.67, "end": 1923.03, "word": " room.", "probability": 0.728515625}, {"start": 1923.27, "end": 1923.71, "word": " A", "probability": 0.34521484375}, {"start": 1923.71, "end": 1923.77, "word": " room", "probability": 0.90234375}, {"start": 1923.77, "end": 1923.99, "word": " means", "probability": 0.4306640625}, {"start": 1923.99, "end": 1924.21, "word": " a", "probability": 0.830078125}, {"start": 1924.21, "end": 1924.37, "word": " room.", "probability": 0.92431640625}, {"start": 1924.83, "end": 1925.03, "word": " And", "probability": 0.389892578125}, {"start": 1925.03, "end": 1925.11, "word": " a", "probability": 0.495849609375}, {"start": 1925.11, "end": 1925.19, "word": " room", "probability": 0.9169921875}, {"start": 1925.19, "end": 1925.37, "word": " has", "probability": 0.767578125}, {"start": 1925.37, "end": 1925.79, "word": " methods", "probability": 0.76513671875}, {"start": 1925.79, "end": 1925.87, "word": " like", "probability": 0.1689453125}, {"start": 1925.87, "end": 1926.25, "word": " enter,", "probability": 0.57568359375}, {"start": 1926.57, "end": 1926.85, "word": " sit", "probability": 0.2115478515625}, {"start": 1926.85, "end": 1927.15, "word": " side,", "probability": 0.250244140625}, {"start": 1927.25, "end": 1927.39, "word": " get", "probability": 0.86865234375}, {"start": 1927.39, "end": 1927.77, "word": " side.", "probability": 0.83740234375}, {"start": 1928.31, "end": 1928.39, "word": " Right?", "probability": 0.1495361328125}, {"start": 1928.97, "end": 1929.41, "word": " Now,", "probability": 0.3779296875}, {"start": 1929.45, "end": 1929.51, "word": " a", "probability": 0.7734375}, {"start": 1929.51, "end": 1929.69, "word": " room", "probability": 0.93115234375}, {"start": 1929.69, "end": 1929.85, "word": " also", "probability": 0.476806640625}, {"start": 1929.85, "end": 1930.23, "word": " consists", "probability": 0.80810546875}, {"start": 1930.23, "end": 1930.71, "word": " of", "probability": 0.96435546875}, {"start": 1930.71, "end": 1930.81, "word": " a", "probability": 0.71923828125}, {"start": 1930.81, "end": 1930.93, "word": " wall", "probability": 0.75927734375}, {"start": 1930.93, "end": 1931.09, "word": " and", "probability": 0.94482421875}, {"start": 1931.09, "end": 1931.13, "word": " a", "probability": 0.80078125}, {"start": 1931.13, "end": 1931.27, "word": " door.", "probability": 0.587890625}, {"start": 1932.39, "end": 1932.75, "word": " Because", "probability": 0.6435546875}, {"start": 1932.75, "end": 1932.87, "word": " a", "probability": 0.83984375}, {"start": 1932.87, "end": 1932.99, "word": " room", "probability": 0.9267578125}, {"start": 1932.99, "end": 1933.19, "word": " does", "probability": 0.65869140625}, {"start": 1933.19, "end": 1933.19, "word": " not", "probability": 0.94482421875}, {"start": 1933.19, "end": 1933.35, "word": " have", "probability": 0.81640625}, {"start": 1933.35, "end": 1933.69, "word": " walls", "probability": 0.91357421875}, {"start": 1933.69, "end": 1933.85, "word": " and", "probability": 0.7529296875}, {"start": 1933.85, "end": 1934.09, "word": " doors.", "probability": 0.939453125}, {"start": 1934.41, "end": 1934.75, "word": " Right?", "probability": 0.625}, {"start": 1935.09, "end": 1935.35, "word": " This", "probability": 0.52783203125}, {"start": 1935.35, "end": 1935.35, "word": " is", "probability": 0.83544921875}, {"start": 1935.35, "end": 1935.45, "word": " a", "probability": 0.9267578125}, {"start": 1935.45, "end": 1935.69, "word": " wall", "probability": 0.7919921875}, {"start": 1935.69, "end": 1935.97, "word": " and", "probability": 0.69775390625}, {"start": 1935.97, "end": 1936.11, "word": " this", "probability": 0.87060546875}, {"start": 1936.11, "end": 1936.11, "word": " is", "probability": 0.9404296875}, {"start": 1936.11, "end": 1936.23, "word": " a", "probability": 0.98046875}, {"start": 1936.23, "end": 1936.31, "word": " door.", "probability": 0.96337890625}, {"start": 1936.91, "end": 1937.15, "word": " Of", "probability": 0.42236328125}, {"start": 1937.15, "end": 1937.17, "word": " course,", "probability": 0.9619140625}, {"start": 1937.23, "end": 1937.45, "word": " what", "probability": 0.845703125}, {"start": 1937.45, "end": 1937.45, "word": " did", "probability": 0.763671875}, {"start": 1937.45, "end": 1937.45, "word": " he", "probability": 0.91357421875}, {"start": 1937.45, "end": 1937.73, "word": " do", "probability": 0.95166015625}, {"start": 1937.73, "end": 1937.87, "word": " in", "probability": 0.52978515625}, {"start": 1937.87, "end": 1937.93, "word": " his", "probability": 0.61572265625}, {"start": 1937.93, "end": 1938.23, "word": " design?", "probability": 0.93701171875}, {"start": 1938.81, "end": 1938.95, "word": " The", "probability": 0.47265625}, {"start": 1938.95, "end": 1939.41, "word": " room,", "probability": 0.468994140625}, {"start": 1941.51, "end": 1941.63, "word": " the", "probability": 0.6064453125}, {"start": 1941.63, "end": 1941.91, "word": " wall", "probability": 0.82958984375}, {"start": 1941.91, "end": 1942.13, "word": " and", "probability": 0.7841796875}, {"start": 1942.13, "end": 1942.19, "word": " the", "probability": 0.912109375}, {"start": 1942.19, "end": 1942.43, "word": " door", "probability": 0.94677734375}, {"start": 1942.43, "end": 1942.79, "word": " were", "probability": 0.580078125}, {"start": 1942.79, "end": 1943.27, "word": " implemented", "probability": 0.5263671875}, {"start": 1943.27, "end": 1943.49, "word": " to", "probability": 0.40234375}, {"start": 1943.49, "end": 1943.65, "word": " the", "probability": 0.90380859375}, {"start": 1943.65, "end": 1943.65, "word": " same", "probability": 0.8984375}, {"start": 1943.65, "end": 1944.21, "word": " interface", "probability": 0.89208984375}, {"start": 1944.21, "end": 1944.63, "word": " called", "probability": 0.49560546875}, {"start": 1944.63, "end": 1946.15, "word": " mapsite.", "probability": 0.560791015625}], "temperature": 1.0}, {"id": 80, "seek": 195398, "start": 1948.0, "end": 1953.98, "text": " This is a mapsite, and this is another mapsite, and this is another mapsite. Notice that there is an association between them.", "tokens": [639, 307, 257, 11317, 642, 11, 293, 341, 307, 1071, 11317, 642, 11, 293, 341, 307, 1071, 11317, 642, 13, 13428, 300, 456, 307, 364, 14598, 1296, 552, 13], "avg_logprob": -0.5005208452542623, "compression_ratio": 1.5679012345679013, "no_speech_prob": 5.364418029785156e-07, "words": [{"start": 1948.0, "end": 1948.28, "word": " This", "probability": 0.2366943359375}, {"start": 1948.28, "end": 1948.38, "word": " is", "probability": 0.74951171875}, {"start": 1948.38, "end": 1948.44, "word": " a", "probability": 0.349365234375}, {"start": 1948.44, "end": 1948.82, "word": " mapsite,", "probability": 0.63671875}, {"start": 1948.88, "end": 1948.94, "word": " and", "probability": 0.4296875}, {"start": 1948.94, "end": 1949.06, "word": " this", "probability": 0.673828125}, {"start": 1949.06, "end": 1949.1, "word": " is", "probability": 0.85595703125}, {"start": 1949.1, "end": 1949.2, "word": " another", "probability": 0.5322265625}, {"start": 1949.2, "end": 1949.52, "word": " mapsite,", "probability": 0.893798828125}, {"start": 1949.54, "end": 1949.62, "word": " and", "probability": 0.79443359375}, {"start": 1949.62, "end": 1949.82, "word": " this", "probability": 0.60595703125}, {"start": 1949.82, "end": 1949.9, "word": " is", "probability": 0.80029296875}, {"start": 1949.9, "end": 1950.48, "word": " another", "probability": 0.74560546875}, {"start": 1950.48, "end": 1950.74, "word": " mapsite.", "probability": 0.949951171875}, {"start": 1950.8, "end": 1951.08, "word": " Notice", "probability": 0.404052734375}, {"start": 1951.08, "end": 1951.28, "word": " that", "probability": 0.359130859375}, {"start": 1951.28, "end": 1951.4, "word": " there", "probability": 0.86083984375}, {"start": 1951.4, "end": 1951.54, "word": " is", "probability": 0.8671875}, {"start": 1951.54, "end": 1951.92, "word": " an", "probability": 0.2474365234375}, {"start": 1951.92, "end": 1952.3, "word": " association", "probability": 0.84912109375}, {"start": 1952.3, "end": 1953.6, "word": " between", "probability": 0.6982421875}, {"start": 1953.6, "end": 1953.98, "word": " them.", "probability": 0.420654296875}], "temperature": 1.0}, {"id": 81, "seek": 197695, "start": 1955.39, "end": 1976.95, "text": "and mapsite. So how does a room implement mapsite and use mapsite? This is what it means. Now, of course, a room is made up of what? Of walls and doors. For example, it could have a list of walls and a list of doors. Just like Zachary, the manager, was an extended employee.", "tokens": [474, 11317, 642, 13, 407, 577, 775, 257, 1808, 4445, 11317, 642, 293, 764, 11317, 642, 30, 639, 307, 437, 309, 1355, 13, 823, 11, 295, 1164, 11, 257, 1808, 307, 1027, 493, 295, 437, 30, 2720, 7920, 293, 8077, 13, 1171, 1365, 11, 309, 727, 362, 257, 1329, 295, 7920, 293, 257, 1329, 295, 8077, 13, 1449, 411, 21028, 822, 11, 264, 6598, 11, 390, 364, 10913, 10738, 13], "avg_logprob": -0.5774647836953821, "compression_ratio": 1.5657142857142856, "no_speech_prob": 5.841255187988281e-06, "words": [{"start": 1955.39, "end": 1955.61, "word": "and", "probability": 0.2578125}, {"start": 1955.61, "end": 1956.09, "word": " mapsite.", "probability": 0.467529296875}, {"start": 1956.55, "end": 1956.65, "word": " So", "probability": 0.254638671875}, {"start": 1956.65, "end": 1956.85, "word": " how", "probability": 0.55224609375}, {"start": 1956.85, "end": 1957.03, "word": " does", "probability": 0.7939453125}, {"start": 1957.03, "end": 1957.15, "word": " a", "probability": 0.1956787109375}, {"start": 1957.15, "end": 1957.37, "word": " room", "probability": 0.64404296875}, {"start": 1957.37, "end": 1958.09, "word": " implement", "probability": 0.234375}, {"start": 1958.09, "end": 1958.69, "word": " mapsite", "probability": 0.826171875}, {"start": 1958.69, "end": 1958.79, "word": " and", "probability": 0.68603515625}, {"start": 1958.79, "end": 1959.23, "word": " use", "probability": 0.603515625}, {"start": 1959.23, "end": 1959.93, "word": " mapsite?", "probability": 0.884765625}, {"start": 1960.35, "end": 1960.47, "word": " This", "probability": 0.10498046875}, {"start": 1960.47, "end": 1960.49, "word": " is", "probability": 0.7705078125}, {"start": 1960.49, "end": 1960.65, "word": " what", "probability": 0.39892578125}, {"start": 1960.65, "end": 1961.41, "word": " it", "probability": 0.5849609375}, {"start": 1961.41, "end": 1961.41, "word": " means.", "probability": 0.8984375}, {"start": 1961.79, "end": 1962.21, "word": " Now,", "probability": 0.3583984375}, {"start": 1962.29, "end": 1962.57, "word": " of", "probability": 0.37451171875}, {"start": 1962.57, "end": 1962.57, "word": " course,", "probability": 0.95751953125}, {"start": 1962.65, "end": 1962.75, "word": " a", "probability": 0.6259765625}, {"start": 1962.75, "end": 1962.93, "word": " room", "probability": 0.9248046875}, {"start": 1962.93, "end": 1963.23, "word": " is", "probability": 0.5146484375}, {"start": 1963.23, "end": 1963.45, "word": " made", "probability": 0.435302734375}, {"start": 1963.45, "end": 1963.61, "word": " up", "probability": 0.5302734375}, {"start": 1963.61, "end": 1963.69, "word": " of", "probability": 0.95947265625}, {"start": 1963.69, "end": 1963.87, "word": " what?", "probability": 0.493408203125}, {"start": 1963.99, "end": 1964.13, "word": " Of", "probability": 0.4453125}, {"start": 1964.13, "end": 1964.53, "word": " walls", "probability": 0.409423828125}, {"start": 1964.53, "end": 1965.89, "word": " and", "probability": 0.76025390625}, {"start": 1965.89, "end": 1966.25, "word": " doors.", "probability": 0.841796875}, {"start": 1966.55, "end": 1966.71, "word": " For", "probability": 0.56201171875}, {"start": 1966.71, "end": 1966.93, "word": " example,", "probability": 0.9140625}, {"start": 1967.03, "end": 1967.03, "word": " it", "probability": 0.689453125}, {"start": 1967.03, "end": 1967.17, "word": " could", "probability": 0.4345703125}, {"start": 1967.17, "end": 1967.53, "word": " have", "probability": 0.689453125}, {"start": 1967.53, "end": 1967.63, "word": " a", "probability": 0.85498046875}, {"start": 1967.63, "end": 1967.87, "word": " list", "probability": 0.90869140625}, {"start": 1967.87, "end": 1968.07, "word": " of", "probability": 0.947265625}, {"start": 1968.07, "end": 1968.45, "word": " walls", "probability": 0.391357421875}, {"start": 1968.45, "end": 1969.47, "word": " and", "probability": 0.8544921875}, {"start": 1969.47, "end": 1969.59, "word": " a", "probability": 0.430419921875}, {"start": 1969.59, "end": 1969.73, "word": " list", "probability": 0.9130859375}, {"start": 1969.73, "end": 1970.63, "word": " of", "probability": 0.9697265625}, {"start": 1970.63, "end": 1970.95, "word": " doors.", "probability": 0.92236328125}, {"start": 1971.79, "end": 1972.23, "word": " Just", "probability": 0.190673828125}, {"start": 1972.23, "end": 1972.33, "word": " like", "probability": 0.73486328125}, {"start": 1972.33, "end": 1973.09, "word": " Zachary,", "probability": 0.3382568359375}, {"start": 1973.19, "end": 1973.23, "word": " the", "probability": 0.814453125}, {"start": 1973.23, "end": 1973.61, "word": " manager,", "probability": 0.919921875}, {"start": 1974.37, "end": 1974.77, "word": " was", "probability": 0.2039794921875}, {"start": 1974.77, "end": 1975.41, "word": " an", "probability": 0.578125}, {"start": 1975.41, "end": 1976.37, "word": " extended", "probability": 0.470703125}, {"start": 1976.37, "end": 1976.95, "word": " employee.", "probability": 0.87939453125}], "temperature": 1.0}, {"id": 82, "seek": 200309, "start": 1977.97, "end": 2003.09, "text": "who is employing employees who are managers who are responsible for other employees anyway and here he has a class called maze which has two examples for sure it will have for example a list of rooms and it has add room and remove room number for example not remove room number and here there is a relation of association between maze and rooms the room has to use an object it can have a list of rooms", "tokens": [13506, 307, 3188, 278, 6619, 567, 366, 14084, 567, 366, 6250, 337, 661, 6619, 4033, 293, 510, 415, 575, 257, 1508, 1219, 33032, 597, 575, 732, 5110, 337, 988, 309, 486, 362, 337, 1365, 257, 1329, 295, 9396, 293, 309, 575, 909, 1808, 293, 4159, 1808, 1230, 337, 1365, 406, 4159, 1808, 1230, 293, 510, 456, 307, 257, 9721, 295, 14598, 1296, 33032, 293, 9396, 264, 1808, 575, 281, 764, 364, 2657, 309, 393, 362, 257, 1329, 295, 9396], "avg_logprob": -0.6343750290572643, "compression_ratio": 1.99009900990099, "no_speech_prob": 1.7881393432617188e-07, "words": [{"start": 1977.97, "end": 1978.19, "word": "who", "probability": 0.04266357421875}, {"start": 1978.19, "end": 1978.37, "word": " is", "probability": 0.4873046875}, {"start": 1978.37, "end": 1978.79, "word": " employing", "probability": 0.374237060546875}, {"start": 1978.79, "end": 1979.33, "word": " employees", "probability": 0.468994140625}, {"start": 1979.33, "end": 1980.01, "word": " who", "probability": 0.104248046875}, {"start": 1980.01, "end": 1980.39, "word": " are", "probability": 0.57568359375}, {"start": 1980.39, "end": 1980.75, "word": " managers", "probability": 0.7998046875}, {"start": 1980.75, "end": 1980.91, "word": " who", "probability": 0.177490234375}, {"start": 1980.91, "end": 1980.91, "word": " are", "probability": 0.7314453125}, {"start": 1980.91, "end": 1981.13, "word": " responsible", "probability": 0.59130859375}, {"start": 1981.13, "end": 1981.29, "word": " for", "probability": 0.75146484375}, {"start": 1981.29, "end": 1981.35, "word": " other", "probability": 0.456787109375}, {"start": 1981.35, "end": 1981.75, "word": " employees", "probability": 0.8173828125}, {"start": 1981.75, "end": 1982.75, "word": " anyway", "probability": 0.102783203125}, {"start": 1982.75, "end": 1983.45, "word": " and", "probability": 0.22900390625}, {"start": 1983.45, "end": 1983.75, "word": " here", "probability": 0.436279296875}, {"start": 1983.75, "end": 1983.75, "word": " he", "probability": 0.250244140625}, {"start": 1983.75, "end": 1983.77, "word": " has", "probability": 0.89892578125}, {"start": 1983.77, "end": 1983.89, "word": " a", "probability": 0.92626953125}, {"start": 1983.89, "end": 1984.19, "word": " class", "probability": 0.9697265625}, {"start": 1984.19, "end": 1984.51, "word": " called", "probability": 0.46142578125}, {"start": 1984.51, "end": 1985.39, "word": " maze", "probability": 0.39306640625}, {"start": 1985.39, "end": 1986.59, "word": " which", "probability": 0.6416015625}, {"start": 1986.59, "end": 1986.81, "word": " has", "probability": 0.39501953125}, {"start": 1986.81, "end": 1986.99, "word": " two", "probability": 0.66552734375}, {"start": 1986.99, "end": 1987.33, "word": " examples", "probability": 0.198486328125}, {"start": 1987.33, "end": 1987.53, "word": " for", "probability": 0.14501953125}, {"start": 1987.53, "end": 1987.65, "word": " sure", "probability": 0.873046875}, {"start": 1987.65, "end": 1987.81, "word": " it", "probability": 0.55224609375}, {"start": 1987.81, "end": 1987.81, "word": " will", "probability": 0.376708984375}, {"start": 1987.81, "end": 1988.17, "word": " have", "probability": 0.724609375}, {"start": 1988.17, "end": 1988.33, "word": " for", "probability": 0.34521484375}, {"start": 1988.33, "end": 1988.43, "word": " example", "probability": 0.94287109375}, {"start": 1988.43, "end": 1988.55, "word": " a", "probability": 0.55078125}, {"start": 1988.55, "end": 1988.77, "word": " list", "probability": 0.90380859375}, {"start": 1988.77, "end": 1988.95, "word": " of", "probability": 0.966796875}, {"start": 1988.95, "end": 1989.23, "word": " rooms", "probability": 0.904296875}, {"start": 1989.23, "end": 1990.05, "word": " and", "probability": 0.77294921875}, {"start": 1990.05, "end": 1990.21, "word": " it", "probability": 0.363037109375}, {"start": 1990.21, "end": 1990.31, "word": " has", "probability": 0.53271484375}, {"start": 1990.31, "end": 1990.65, "word": " add", "probability": 0.70458984375}, {"start": 1990.65, "end": 1990.97, "word": " room", "probability": 0.8994140625}, {"start": 1990.97, "end": 1991.39, "word": " and", "probability": 0.8486328125}, {"start": 1991.39, "end": 1991.75, "word": " remove", "probability": 0.89111328125}, {"start": 1991.75, "end": 1993.23, "word": " room", "probability": 0.5595703125}, {"start": 1993.23, "end": 1993.63, "word": " number", "probability": 0.7646484375}, {"start": 1993.63, "end": 1993.77, "word": " for", "probability": 0.60205078125}, {"start": 1993.77, "end": 1993.93, "word": " example", "probability": 0.962890625}, {"start": 1993.93, "end": 1994.23, "word": " not", "probability": 0.35205078125}, {"start": 1994.23, "end": 1994.57, "word": " remove", "probability": 0.89501953125}, {"start": 1994.57, "end": 1994.81, "word": " room", "probability": 0.33984375}, {"start": 1994.81, "end": 1995.19, "word": " number", "probability": 0.9296875}, {"start": 1995.19, "end": 1996.63, "word": " and", "probability": 0.83349609375}, {"start": 1996.63, "end": 1996.79, "word": " here", "probability": 0.7607421875}, {"start": 1996.79, "end": 1996.91, "word": " there", "probability": 0.73779296875}, {"start": 1996.91, "end": 1996.93, "word": " is", "probability": 0.8837890625}, {"start": 1996.93, "end": 1996.99, "word": " a", "probability": 0.515625}, {"start": 1996.99, "end": 1997.19, "word": " relation", "probability": 0.34716796875}, {"start": 1997.19, "end": 1997.31, "word": " of", "probability": 0.442626953125}, {"start": 1997.31, "end": 1997.81, "word": " association", "probability": 0.82080078125}, {"start": 1997.81, "end": 1998.05, "word": " between", "probability": 0.84326171875}, {"start": 1998.05, "end": 1998.39, "word": " maze", "probability": 0.80859375}, {"start": 1998.39, "end": 1998.89, "word": " and", "probability": 0.93505859375}, {"start": 1998.89, "end": 1999.09, "word": " rooms", "probability": 0.65185546875}, {"start": 1999.09, "end": 1999.53, "word": " the", "probability": 0.145263671875}, {"start": 1999.53, "end": 1999.77, "word": " room", "probability": 0.85888671875}, {"start": 1999.77, "end": 2000.01, "word": " has", "probability": 0.1873779296875}, {"start": 2000.01, "end": 2000.15, "word": " to", "probability": 0.955078125}, {"start": 2000.15, "end": 2000.69, "word": " use", "probability": 0.75341796875}, {"start": 2000.69, "end": 2001.51, "word": " an", "probability": 0.2322998046875}, {"start": 2001.51, "end": 2001.71, "word": " object", "probability": 0.9560546875}, {"start": 2001.71, "end": 2001.91, "word": " it", "probability": 0.158203125}, {"start": 2001.91, "end": 2002.09, "word": " can", "probability": 0.405029296875}, {"start": 2002.09, "end": 2002.35, "word": " have", "probability": 0.853515625}, {"start": 2002.35, "end": 2002.49, "word": " a", "probability": 0.87841796875}, {"start": 2002.49, "end": 2002.67, "word": " list", "probability": 0.9130859375}, {"start": 2002.67, "end": 2002.85, "word": " of", "probability": 0.96533203125}, {"start": 2002.85, "end": 2003.09, "word": " rooms", "probability": 0.86962890625}], "temperature": 1.0}, {"id": 83, "seek": 202982, "start": 2003.96, "end": 2029.82, "text": " It's okay, but they are the structure of the game Because he wanted to create a maze The maze will consist of doors So he made a class called maze game And he made a dialer called create maze He was supposed to create the whole maze and return an object from it maze The first thing he did was create a class called maze", "tokens": [467, 311, 1392, 11, 457, 436, 366, 264, 3877, 295, 264, 1216, 1436, 415, 1415, 281, 1884, 257, 33032, 440, 33032, 486, 4603, 295, 8077, 407, 415, 1027, 257, 1508, 1219, 33032, 1216, 400, 415, 1027, 257, 5502, 260, 1219, 1884, 33032, 634, 390, 3442, 281, 1884, 264, 1379, 33032, 293, 2736, 364, 2657, 490, 309, 33032, 440, 700, 551, 415, 630, 390, 1884, 257, 1508, 1219, 33032], "avg_logprob": -0.6716485230819039, "compression_ratio": 1.7540983606557377, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2003.96, "end": 2004.38, "word": " It's", "probability": 0.250244140625}, {"start": 2004.38, "end": 2004.54, "word": " okay,", "probability": 0.30859375}, {"start": 2004.66, "end": 2004.88, "word": " but", "probability": 0.322265625}, {"start": 2004.88, "end": 2005.1, "word": " they", "probability": 0.205810546875}, {"start": 2005.1, "end": 2005.4, "word": " are", "probability": 0.6943359375}, {"start": 2005.4, "end": 2006.04, "word": " the", "probability": 0.72802734375}, {"start": 2006.04, "end": 2006.44, "word": " structure", "probability": 0.4638671875}, {"start": 2006.44, "end": 2006.92, "word": " of", "probability": 0.87890625}, {"start": 2006.92, "end": 2007.2, "word": " the", "probability": 0.77783203125}, {"start": 2007.2, "end": 2007.84, "word": " game", "probability": 0.74658203125}, {"start": 2007.84, "end": 2009.46, "word": " Because", "probability": 0.15625}, {"start": 2009.46, "end": 2010.02, "word": " he", "probability": 0.62255859375}, {"start": 2010.02, "end": 2010.3, "word": " wanted", "probability": 0.472412109375}, {"start": 2010.3, "end": 2010.44, "word": " to", "probability": 0.962890625}, {"start": 2010.44, "end": 2010.54, "word": " create", "probability": 0.66064453125}, {"start": 2010.54, "end": 2010.72, "word": " a", "probability": 0.54443359375}, {"start": 2010.72, "end": 2010.96, "word": " maze", "probability": 0.88916015625}, {"start": 2010.96, "end": 2012.1, "word": " The", "probability": 0.1998291015625}, {"start": 2012.1, "end": 2012.28, "word": " maze", "probability": 0.86767578125}, {"start": 2012.28, "end": 2012.68, "word": " will", "probability": 0.466064453125}, {"start": 2012.68, "end": 2013.0, "word": " consist", "probability": 0.2548828125}, {"start": 2013.0, "end": 2013.2, "word": " of", "probability": 0.9150390625}, {"start": 2013.2, "end": 2015.14, "word": " doors", "probability": 0.54931640625}, {"start": 2015.14, "end": 2015.48, "word": " So", "probability": 0.294677734375}, {"start": 2015.48, "end": 2016.48, "word": " he", "probability": 0.84765625}, {"start": 2016.48, "end": 2016.6, "word": " made", "probability": 0.312255859375}, {"start": 2016.6, "end": 2016.72, "word": " a", "probability": 0.96240234375}, {"start": 2016.72, "end": 2016.98, "word": " class", "probability": 0.916015625}, {"start": 2016.98, "end": 2017.32, "word": " called", "probability": 0.449951171875}, {"start": 2017.32, "end": 2017.68, "word": " maze", "probability": 0.373046875}, {"start": 2017.68, "end": 2017.98, "word": " game", "probability": 0.673828125}, {"start": 2017.98, "end": 2019.44, "word": " And", "probability": 0.693359375}, {"start": 2019.44, "end": 2019.54, "word": " he", "probability": 0.294189453125}, {"start": 2019.54, "end": 2019.66, "word": " made", "probability": 0.33984375}, {"start": 2019.66, "end": 2019.74, "word": " a", "probability": 0.70263671875}, {"start": 2019.74, "end": 2020.02, "word": " dialer", "probability": 0.572509765625}, {"start": 2020.02, "end": 2020.26, "word": " called", "probability": 0.68017578125}, {"start": 2020.26, "end": 2021.04, "word": " create", "probability": 0.6728515625}, {"start": 2021.04, "end": 2022.86, "word": " maze", "probability": 0.40234375}, {"start": 2022.86, "end": 2023.8, "word": " He", "probability": 0.3525390625}, {"start": 2023.8, "end": 2023.82, "word": " was", "probability": 0.175048828125}, {"start": 2023.82, "end": 2024.04, "word": " supposed", "probability": 0.90478515625}, {"start": 2024.04, "end": 2024.2, "word": " to", "probability": 0.9697265625}, {"start": 2024.2, "end": 2024.4, "word": " create", "probability": 0.740234375}, {"start": 2024.4, "end": 2024.56, "word": " the", "probability": 0.58056640625}, {"start": 2024.56, "end": 2024.62, "word": " whole", "probability": 0.33984375}, {"start": 2024.62, "end": 2024.76, "word": " maze", "probability": 0.91845703125}, {"start": 2024.76, "end": 2025.18, "word": " and", "probability": 0.8330078125}, {"start": 2025.18, "end": 2025.44, "word": " return", "probability": 0.420654296875}, {"start": 2025.44, "end": 2025.66, "word": " an", "probability": 0.35986328125}, {"start": 2025.66, "end": 2025.88, "word": " object", "probability": 0.9619140625}, {"start": 2025.88, "end": 2026.02, "word": " from", "probability": 0.61572265625}, {"start": 2026.02, "end": 2026.28, "word": " it", "probability": 0.86083984375}, {"start": 2026.28, "end": 2027.52, "word": " maze", "probability": 0.1424560546875}, {"start": 2027.52, "end": 2027.92, "word": " The", "probability": 0.381591796875}, {"start": 2027.92, "end": 2028.08, "word": " first", "probability": 0.89697265625}, {"start": 2028.08, "end": 2028.28, "word": " thing", "probability": 0.87890625}, {"start": 2028.28, "end": 2028.4, "word": " he", "probability": 0.6201171875}, {"start": 2028.4, "end": 2028.6, "word": " did", "probability": 0.4267578125}, {"start": 2028.6, "end": 2029.1, "word": " was", "probability": 0.65478515625}, {"start": 2029.1, "end": 2029.28, "word": " create", "probability": 0.51416015625}, {"start": 2029.28, "end": 2029.36, "word": " a", "probability": 0.6728515625}, {"start": 2029.36, "end": 2029.82, "word": " class", "probability": 0.1317138671875}, {"start": 2029.82, "end": 2029.82, "word": " called", "probability": 0.67724609375}, {"start": 2029.82, "end": 2029.82, "word": " maze", "probability": 0.66748046875}], "temperature": 1.0}, {"id": 84, "seek": 205864, "start": 2033.46, "end": 2058.64, "text": " Did you see how he made a room and put the room on the table? He made a room R1 equal to room R2 equal to room R2. He made a door connecting R1 and R2. He made a table connecting R1 and R2 and put it on the table. This is a simple example of a place and a room. Two rooms between them.", "tokens": [2589, 291, 536, 577, 415, 1027, 257, 1808, 293, 829, 264, 1808, 322, 264, 3199, 30, 634, 1027, 257, 1808, 497, 16, 2681, 281, 1808, 497, 17, 2681, 281, 1808, 497, 17, 13, 634, 1027, 257, 2853, 11015, 497, 16, 293, 497, 17, 13, 634, 1027, 257, 3199, 11015, 497, 16, 293, 497, 17, 293, 829, 309, 322, 264, 3199, 13, 639, 307, 257, 2199, 1365, 295, 257, 1081, 293, 257, 1808, 13, 4453, 9396, 1296, 552, 13], "avg_logprob": -0.7179588335978834, "compression_ratio": 1.881578947368421, "no_speech_prob": 2.0265579223632812e-06, "words": [{"start": 2033.4600000000003, "end": 2034.0600000000002, "word": " Did", "probability": 0.0643310546875}, {"start": 2034.0600000000002, "end": 2034.66, "word": " you", "probability": 0.81005859375}, {"start": 2034.66, "end": 2034.66, "word": " see", "probability": 0.371337890625}, {"start": 2034.66, "end": 2034.88, "word": " how", "probability": 0.235107421875}, {"start": 2034.88, "end": 2034.88, "word": " he", "probability": 0.59130859375}, {"start": 2034.88, "end": 2035.02, "word": " made", "probability": 0.284423828125}, {"start": 2035.02, "end": 2035.14, "word": " a", "probability": 0.426025390625}, {"start": 2035.14, "end": 2035.4, "word": " room", "probability": 0.79443359375}, {"start": 2035.4, "end": 2035.68, "word": " and", "probability": 0.445068359375}, {"start": 2035.68, "end": 2035.74, "word": " put", "probability": 0.12841796875}, {"start": 2035.74, "end": 2035.74, "word": " the", "probability": 0.2783203125}, {"start": 2035.74, "end": 2035.9, "word": " room", "probability": 0.6865234375}, {"start": 2035.9, "end": 2036.38, "word": " on", "probability": 0.332275390625}, {"start": 2036.38, "end": 2037.08, "word": " the", "probability": 0.55224609375}, {"start": 2037.08, "end": 2037.28, "word": " table?", "probability": 0.8369140625}, {"start": 2038.1, "end": 2038.7, "word": " He", "probability": 0.2147216796875}, {"start": 2038.7, "end": 2038.9, "word": " made", "probability": 0.27294921875}, {"start": 2038.9, "end": 2039.36, "word": " a", "probability": 0.6181640625}, {"start": 2039.36, "end": 2039.36, "word": " room", "probability": 0.6240234375}, {"start": 2039.36, "end": 2040.02, "word": " R1", "probability": 0.603515625}, {"start": 2040.02, "end": 2040.32, "word": " equal", "probability": 0.033294677734375}, {"start": 2040.32, "end": 2040.44, "word": " to", "probability": 0.79833984375}, {"start": 2040.44, "end": 2040.74, "word": " room", "probability": 0.226318359375}, {"start": 2040.74, "end": 2042.26, "word": " R2", "probability": 0.7451171875}, {"start": 2042.26, "end": 2043.52, "word": " equal", "probability": 0.24853515625}, {"start": 2043.52, "end": 2043.78, "word": " to", "probability": 0.9541015625}, {"start": 2043.78, "end": 2044.12, "word": " room", "probability": 0.58056640625}, {"start": 2044.12, "end": 2044.92, "word": " R2.", "probability": 0.81884765625}, {"start": 2045.2, "end": 2045.58, "word": " He", "probability": 0.509765625}, {"start": 2045.58, "end": 2045.68, "word": " made", "probability": 0.408447265625}, {"start": 2045.68, "end": 2045.88, "word": " a", "probability": 0.80029296875}, {"start": 2045.88, "end": 2046.06, "word": " door", "probability": 0.63818359375}, {"start": 2046.06, "end": 2046.44, "word": " connecting", "probability": 0.2071533203125}, {"start": 2046.44, "end": 2047.34, "word": " R1", "probability": 0.740234375}, {"start": 2047.34, "end": 2048.2, "word": " and", "probability": 0.76123046875}, {"start": 2048.2, "end": 2048.74, "word": " R2.", "probability": 0.9931640625}, {"start": 2049.18, "end": 2049.7, "word": " He", "probability": 0.501953125}, {"start": 2049.7, "end": 2049.92, "word": " made", "probability": 0.304443359375}, {"start": 2049.92, "end": 2050.24, "word": " a", "probability": 0.82275390625}, {"start": 2050.24, "end": 2050.24, "word": " table", "probability": 0.65771484375}, {"start": 2050.24, "end": 2050.42, "word": " connecting", "probability": 0.148681640625}, {"start": 2050.42, "end": 2050.84, "word": " R1", "probability": 0.73193359375}, {"start": 2050.84, "end": 2051.28, "word": " and", "probability": 0.8359375}, {"start": 2051.28, "end": 2052.46, "word": " R2", "probability": 0.9873046875}, {"start": 2052.46, "end": 2052.94, "word": " and", "probability": 0.4345703125}, {"start": 2052.94, "end": 2053.0, "word": " put", "probability": 0.328857421875}, {"start": 2053.0, "end": 2053.0, "word": " it", "probability": 0.533203125}, {"start": 2053.0, "end": 2053.3, "word": " on", "probability": 0.475830078125}, {"start": 2053.3, "end": 2053.34, "word": " the", "probability": 0.85009765625}, {"start": 2053.34, "end": 2053.52, "word": " table.", "probability": 0.88720703125}, {"start": 2054.78, "end": 2055.22, "word": " This", "probability": 0.1787109375}, {"start": 2055.22, "end": 2055.28, "word": " is", "probability": 0.74658203125}, {"start": 2055.28, "end": 2055.32, "word": " a", "probability": 0.493896484375}, {"start": 2055.32, "end": 2055.32, "word": " simple", "probability": 0.61181640625}, {"start": 2055.32, "end": 2055.62, "word": " example", "probability": 0.17919921875}, {"start": 2055.62, "end": 2056.4, "word": " of", "probability": 0.48486328125}, {"start": 2056.4, "end": 2056.42, "word": " a", "probability": 0.344970703125}, {"start": 2056.42, "end": 2056.52, "word": " place", "probability": 0.217041015625}, {"start": 2056.52, "end": 2056.68, "word": " and", "probability": 0.84912109375}, {"start": 2056.68, "end": 2056.68, "word": " a", "probability": 0.77685546875}, {"start": 2056.68, "end": 2056.9, "word": " room.", "probability": 0.90625}, {"start": 2057.2, "end": 2057.8, "word": " Two", "probability": 0.2442626953125}, {"start": 2057.8, "end": 2058.02, "word": " rooms", "probability": 0.7685546875}, {"start": 2058.02, "end": 2058.38, "word": " between", "probability": 0.5048828125}, {"start": 2058.38, "end": 2058.64, "word": " them.", "probability": 0.576171875}], "temperature": 1.0}, {"id": 85, "seek": 207714, "start": 2060.0, "end": 2077.14, "text": "Of course, this is just an example for clarification, but the maze will not be two rooms, okay? Fifty rooms, a hundred rooms, or four rooms. Why is it called a maze? To confuse you, okay? But this is a simple example to show you the structure of the maze. Now let's see what is the problem with this code.", "tokens": [23919, 1164, 11, 341, 307, 445, 364, 1365, 337, 34449, 11, 457, 264, 33032, 486, 406, 312, 732, 9396, 11, 1392, 30, 21501, 874, 9396, 11, 257, 3262, 9396, 11, 420, 1451, 9396, 13, 1545, 307, 309, 1219, 257, 33032, 30, 1407, 28584, 291, 11, 1392, 30, 583, 341, 307, 257, 2199, 1365, 281, 855, 291, 264, 3877, 295, 264, 33032, 13, 823, 718, 311, 536, 437, 307, 264, 1154, 365, 341, 3089, 13], "avg_logprob": -0.5316666952768961, "compression_ratio": 1.5482233502538072, "no_speech_prob": 7.987022399902344e-06, "words": [{"start": 2060.0, "end": 2060.4, "word": "Of", "probability": 0.12841796875}, {"start": 2060.4, "end": 2060.62, "word": " course,", "probability": 0.90966796875}, {"start": 2061.02, "end": 2061.1, "word": " this", "probability": 0.69091796875}, {"start": 2061.1, "end": 2061.14, "word": " is", "probability": 0.8466796875}, {"start": 2061.14, "end": 2061.32, "word": " just", "probability": 0.58154296875}, {"start": 2061.32, "end": 2061.64, "word": " an", "probability": 0.70947265625}, {"start": 2061.64, "end": 2061.64, "word": " example", "probability": 0.955078125}, {"start": 2061.64, "end": 2061.76, "word": " for", "probability": 0.295166015625}, {"start": 2061.76, "end": 2062.12, "word": " clarification,", "probability": 0.7607421875}, {"start": 2062.32, "end": 2062.36, "word": " but", "probability": 0.80419921875}, {"start": 2062.36, "end": 2062.48, "word": " the", "probability": 0.61279296875}, {"start": 2062.48, "end": 2062.6, "word": " maze", "probability": 0.166015625}, {"start": 2062.6, "end": 2062.72, "word": " will", "probability": 0.296142578125}, {"start": 2062.72, "end": 2063.04, "word": " not", "probability": 0.7001953125}, {"start": 2063.04, "end": 2063.84, "word": " be", "probability": 0.46142578125}, {"start": 2063.84, "end": 2064.4, "word": " two", "probability": 0.51806640625}, {"start": 2064.4, "end": 2064.4, "word": " rooms,", "probability": 0.8232421875}, {"start": 2065.18, "end": 2065.38, "word": " okay?", "probability": 0.1683349609375}, {"start": 2065.74, "end": 2066.14, "word": " Fifty", "probability": 0.59014892578125}, {"start": 2066.14, "end": 2066.34, "word": " rooms,", "probability": 0.43701171875}, {"start": 2066.46, "end": 2066.56, "word": " a", "probability": 0.40771484375}, {"start": 2066.56, "end": 2066.74, "word": " hundred", "probability": 0.88330078125}, {"start": 2066.74, "end": 2067.06, "word": " rooms,", "probability": 0.89306640625}, {"start": 2067.2, "end": 2067.28, "word": " or", "probability": 0.11102294921875}, {"start": 2067.28, "end": 2067.46, "word": " four", "probability": 0.310302734375}, {"start": 2067.46, "end": 2067.64, "word": " rooms.", "probability": 0.17431640625}, {"start": 2067.76, "end": 2067.94, "word": " Why", "probability": 0.61669921875}, {"start": 2067.94, "end": 2068.04, "word": " is", "probability": 0.72412109375}, {"start": 2068.04, "end": 2068.14, "word": " it", "probability": 0.71728515625}, {"start": 2068.14, "end": 2068.18, "word": " called", "probability": 0.7626953125}, {"start": 2068.18, "end": 2068.26, "word": " a", "probability": 0.6826171875}, {"start": 2068.26, "end": 2068.46, "word": " maze?", "probability": 0.88134765625}, {"start": 2069.26, "end": 2069.66, "word": " To", "probability": 0.468994140625}, {"start": 2069.66, "end": 2069.98, "word": " confuse", "probability": 0.220458984375}, {"start": 2069.98, "end": 2070.22, "word": " you,", "probability": 0.9443359375}, {"start": 2070.56, "end": 2070.72, "word": " okay?", "probability": 0.69775390625}, {"start": 2071.04, "end": 2071.3, "word": " But", "probability": 0.50927734375}, {"start": 2071.3, "end": 2071.46, "word": " this", "probability": 0.880859375}, {"start": 2071.46, "end": 2071.86, "word": " is", "probability": 0.93115234375}, {"start": 2071.86, "end": 2072.36, "word": " a", "probability": 0.54052734375}, {"start": 2072.36, "end": 2072.56, "word": " simple", "probability": 0.927734375}, {"start": 2072.56, "end": 2072.66, "word": " example", "probability": 0.95947265625}, {"start": 2072.66, "end": 2072.86, "word": " to", "probability": 0.80224609375}, {"start": 2072.86, "end": 2073.06, "word": " show", "probability": 0.833984375}, {"start": 2073.06, "end": 2073.32, "word": " you", "probability": 0.9228515625}, {"start": 2073.32, "end": 2073.42, "word": " the", "probability": 0.7919921875}, {"start": 2073.42, "end": 2073.76, "word": " structure", "probability": 0.81884765625}, {"start": 2073.76, "end": 2073.96, "word": " of", "probability": 0.970703125}, {"start": 2073.96, "end": 2074.06, "word": " the", "probability": 0.763671875}, {"start": 2074.06, "end": 2074.26, "word": " maze.", "probability": 0.90087890625}, {"start": 2075.54, "end": 2075.72, "word": " Now", "probability": 0.285888671875}, {"start": 2075.72, "end": 2076.02, "word": " let's", "probability": 0.767578125}, {"start": 2076.02, "end": 2076.16, "word": " see", "probability": 0.72802734375}, {"start": 2076.16, "end": 2076.34, "word": " what", "probability": 0.88720703125}, {"start": 2076.34, "end": 2076.38, "word": " is", "probability": 0.4443359375}, {"start": 2076.38, "end": 2076.48, "word": " the", "probability": 0.72216796875}, {"start": 2076.48, "end": 2076.66, "word": " problem", "probability": 0.8427734375}, {"start": 2076.66, "end": 2076.84, "word": " with", "probability": 0.6572265625}, {"start": 2076.84, "end": 2076.94, "word": " this", "probability": 0.89599609375}, {"start": 2076.94, "end": 2077.14, "word": " code.", "probability": 0.93505859375}], "temperature": 1.0}, {"id": 86, "seek": 209454, "start": 2079.12, "end": 2094.54, "text": "He told me that the problem with this create maze method is its inflexibility. What does inflexibility mean? Inflexibility is the opposite of flexibility. It means that the design is not flexible. How is the design not flexible? For example, he told us that we will change the design of the maze and raise it.", "tokens": [5205, 1907, 385, 300, 264, 1154, 365, 341, 1884, 33032, 3170, 307, 1080, 1536, 2021, 2841, 13, 708, 775, 1536, 2021, 2841, 914, 30, 11537, 2021, 2841, 307, 264, 6182, 295, 12635, 13, 467, 1355, 300, 264, 1715, 307, 406, 11358, 13, 1012, 307, 264, 1715, 406, 11358, 30, 1171, 1365, 11, 415, 1907, 505, 300, 321, 486, 1319, 264, 1715, 295, 264, 33032, 293, 5300, 309, 13], "avg_logprob": -0.4547101380168528, "compression_ratio": 1.7861271676300579, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2079.12, "end": 2079.3, "word": "He", "probability": 0.38720703125}, {"start": 2079.3, "end": 2079.46, "word": " told", "probability": 0.30517578125}, {"start": 2079.46, "end": 2079.66, "word": " me", "probability": 0.9052734375}, {"start": 2079.66, "end": 2080.0, "word": " that", "probability": 0.437744140625}, {"start": 2080.0, "end": 2080.12, "word": " the", "probability": 0.78759765625}, {"start": 2080.12, "end": 2080.42, "word": " problem", "probability": 0.86181640625}, {"start": 2080.42, "end": 2080.72, "word": " with", "probability": 0.8212890625}, {"start": 2080.72, "end": 2080.98, "word": " this", "probability": 0.82861328125}, {"start": 2080.98, "end": 2081.28, "word": " create", "probability": 0.41552734375}, {"start": 2081.28, "end": 2081.54, "word": " maze", "probability": 0.82666015625}, {"start": 2081.54, "end": 2082.0, "word": " method", "probability": 0.8994140625}, {"start": 2082.0, "end": 2082.96, "word": " is", "probability": 0.77099609375}, {"start": 2082.96, "end": 2083.42, "word": " its", "probability": 0.7177734375}, {"start": 2083.42, "end": 2084.28, "word": " inflexibility.", "probability": 0.97265625}, {"start": 2084.5, "end": 2084.64, "word": " What", "probability": 0.435302734375}, {"start": 2084.64, "end": 2084.82, "word": " does", "probability": 0.64013671875}, {"start": 2084.82, "end": 2085.68, "word": " inflexibility", "probability": 0.9197591145833334}, {"start": 2085.68, "end": 2085.7, "word": " mean?", "probability": 0.92724609375}, {"start": 2086.12, "end": 2086.28, "word": " Inflexibility", "probability": 0.72900390625}, {"start": 2086.28, "end": 2086.58, "word": " is", "probability": 0.40625}, {"start": 2086.58, "end": 2086.64, "word": " the", "probability": 0.57373046875}, {"start": 2086.64, "end": 2086.78, "word": " opposite", "probability": 0.63232421875}, {"start": 2086.78, "end": 2086.86, "word": " of", "probability": 0.90234375}, {"start": 2086.86, "end": 2087.44, "word": " flexibility.", "probability": 0.931640625}, {"start": 2087.82, "end": 2087.84, "word": " It", "probability": 0.235595703125}, {"start": 2087.84, "end": 2087.92, "word": " means", "probability": 0.61083984375}, {"start": 2087.92, "end": 2088.2, "word": " that", "probability": 0.720703125}, {"start": 2088.2, "end": 2088.42, "word": " the", "probability": 0.63330078125}, {"start": 2088.42, "end": 2088.66, "word": " design", "probability": 0.8828125}, {"start": 2088.66, "end": 2088.86, "word": " is", "probability": 0.78271484375}, {"start": 2088.86, "end": 2089.02, "word": " not", "probability": 0.224365234375}, {"start": 2089.02, "end": 2089.2, "word": " flexible.", "probability": 0.1654052734375}, {"start": 2089.32, "end": 2089.5, "word": " How", "probability": 0.7080078125}, {"start": 2089.5, "end": 2089.6, "word": " is", "probability": 0.61962890625}, {"start": 2089.6, "end": 2089.72, "word": " the", "probability": 0.53125}, {"start": 2089.72, "end": 2089.88, "word": " design", "probability": 0.96240234375}, {"start": 2089.88, "end": 2090.1, "word": " not", "probability": 0.8623046875}, {"start": 2090.1, "end": 2090.32, "word": " flexible?", "probability": 0.91943359375}, {"start": 2090.8, "end": 2091.2, "word": " For", "probability": 0.62255859375}, {"start": 2091.2, "end": 2091.44, "word": " example,", "probability": 0.90869140625}, {"start": 2091.56, "end": 2091.6, "word": " he", "probability": 0.1343994140625}, {"start": 2091.6, "end": 2091.82, "word": " told", "probability": 0.65234375}, {"start": 2091.82, "end": 2092.1, "word": " us", "probability": 0.467529296875}, {"start": 2092.1, "end": 2092.42, "word": " that", "probability": 0.91162109375}, {"start": 2092.42, "end": 2093.12, "word": " we", "probability": 0.37060546875}, {"start": 2093.12, "end": 2093.22, "word": " will", "probability": 0.313232421875}, {"start": 2093.22, "end": 2093.62, "word": " change", "probability": 0.7666015625}, {"start": 2093.62, "end": 2093.78, "word": " the", "probability": 0.8095703125}, {"start": 2093.78, "end": 2093.96, "word": " design", "probability": 0.9072265625}, {"start": 2093.96, "end": 2094.04, "word": " of", "probability": 0.73193359375}, {"start": 2094.04, "end": 2094.04, "word": " the", "probability": 0.475830078125}, {"start": 2094.04, "end": 2094.04, "word": " maze", "probability": 0.884765625}, {"start": 2094.04, "end": 2094.24, "word": " and", "probability": 0.50341796875}, {"start": 2094.24, "end": 2094.38, "word": " raise", "probability": 0.222412109375}, {"start": 2094.38, "end": 2094.54, "word": " it.", "probability": 0.91455078125}], "temperature": 1.0}, {"id": 87, "seek": 212277, "start": 2095.99, "end": 2122.77, "text": " For example, in these rooms, they say, what if you wanted to have enchanted mazes with enchanted rooms? For example, who plays fortnite? Do you know fortnite? You notice that during holidays and christmas, what do they do? They turn the game, the same city, the same rooms, the same buildings, but they complain about it.", "tokens": [1171, 1365, 11, 294, 613, 9396, 11, 436, 584, 11, 437, 498, 291, 1415, 281, 362, 35213, 15587, 463, 12214, 365, 35213, 15587, 9396, 30, 1171, 1365, 11, 567, 5749, 5009, 24843, 30, 1144, 291, 458, 5009, 24843, 30, 509, 3449, 300, 1830, 15734, 293, 26586, 3799, 11, 437, 360, 436, 360, 30, 814, 1261, 264, 1216, 11, 264, 912, 2307, 11, 264, 912, 9396, 11, 264, 912, 7446, 11, 457, 436, 11024, 466, 309, 13], "avg_logprob": -0.6075487074913917, "compression_ratio": 1.6597938144329898, "no_speech_prob": 4.827976226806641e-06, "words": [{"start": 2095.9900000000002, "end": 2096.63, "word": " For", "probability": 0.271240234375}, {"start": 2096.63, "end": 2097.05, "word": " example,", "probability": 0.88330078125}, {"start": 2097.25, "end": 2097.33, "word": " in", "probability": 0.08587646484375}, {"start": 2097.33, "end": 2097.63, "word": " these", "probability": 0.30615234375}, {"start": 2097.63, "end": 2097.91, "word": " rooms,", "probability": 0.7705078125}, {"start": 2098.67, "end": 2098.87, "word": " they", "probability": 0.32763671875}, {"start": 2098.87, "end": 2099.13, "word": " say,", "probability": 0.23046875}, {"start": 2099.71, "end": 2100.01, "word": " what", "probability": 0.27197265625}, {"start": 2100.01, "end": 2100.27, "word": " if", "probability": 0.95849609375}, {"start": 2100.27, "end": 2100.41, "word": " you", "probability": 0.81640625}, {"start": 2100.41, "end": 2100.73, "word": " wanted", "probability": 0.79736328125}, {"start": 2100.73, "end": 2100.89, "word": " to", "probability": 0.78564453125}, {"start": 2100.89, "end": 2101.09, "word": " have", "probability": 0.9453125}, {"start": 2101.09, "end": 2101.67, "word": " enchanted", "probability": 0.953125}, {"start": 2101.67, "end": 2101.99, "word": " mazes", "probability": 0.8486328125}, {"start": 2101.99, "end": 2102.31, "word": " with", "probability": 0.81640625}, {"start": 2102.31, "end": 2102.85, "word": " enchanted", "probability": 0.960205078125}, {"start": 2102.85, "end": 2103.11, "word": " rooms?", "probability": 0.931640625}, {"start": 2104.43, "end": 2104.89, "word": " For", "probability": 0.218017578125}, {"start": 2104.89, "end": 2105.33, "word": " example,", "probability": 0.77783203125}, {"start": 2105.41, "end": 2105.51, "word": " who", "probability": 0.5849609375}, {"start": 2105.51, "end": 2105.73, "word": " plays", "probability": 0.75146484375}, {"start": 2105.73, "end": 2107.83, "word": " fortnite?", "probability": 0.53802490234375}, {"start": 2108.89, "end": 2109.37, "word": " Do", "probability": 0.4951171875}, {"start": 2109.37, "end": 2109.37, "word": " you", "probability": 0.9658203125}, {"start": 2109.37, "end": 2109.47, "word": " know", "probability": 0.83447265625}, {"start": 2109.47, "end": 2109.95, "word": " fortnite?", "probability": 0.7265625}, {"start": 2110.51, "end": 2111.09, "word": " You", "probability": 0.2235107421875}, {"start": 2111.09, "end": 2111.37, "word": " notice", "probability": 0.293701171875}, {"start": 2111.37, "end": 2111.85, "word": " that", "probability": 0.256103515625}, {"start": 2111.85, "end": 2111.89, "word": " during", "probability": 0.1898193359375}, {"start": 2111.89, "end": 2112.45, "word": " holidays", "probability": 0.431640625}, {"start": 2112.45, "end": 2113.13, "word": " and", "probability": 0.314453125}, {"start": 2113.13, "end": 2114.61, "word": " christmas,", "probability": 0.6331787109375}, {"start": 2114.63, "end": 2114.75, "word": " what", "probability": 0.2198486328125}, {"start": 2114.75, "end": 2114.81, "word": " do", "probability": 0.61474609375}, {"start": 2114.81, "end": 2114.81, "word": " they", "probability": 0.6259765625}, {"start": 2114.81, "end": 2115.07, "word": " do?", "probability": 0.9287109375}, {"start": 2115.63, "end": 2116.03, "word": " They", "probability": 0.71044921875}, {"start": 2116.03, "end": 2116.25, "word": " turn", "probability": 0.296630859375}, {"start": 2116.25, "end": 2117.13, "word": " the", "probability": 0.70458984375}, {"start": 2117.13, "end": 2117.39, "word": " game,", "probability": 0.650390625}, {"start": 2117.71, "end": 2118.13, "word": " the", "probability": 0.375244140625}, {"start": 2118.13, "end": 2118.13, "word": " same", "probability": 0.86572265625}, {"start": 2118.13, "end": 2118.47, "word": " city,", "probability": 0.70751953125}, {"start": 2118.67, "end": 2118.95, "word": " the", "probability": 0.611328125}, {"start": 2118.95, "end": 2118.95, "word": " same", "probability": 0.89404296875}, {"start": 2118.95, "end": 2119.81, "word": " rooms,", "probability": 0.671875}, {"start": 2119.95, "end": 2120.23, "word": " the", "probability": 0.70751953125}, {"start": 2120.23, "end": 2120.23, "word": " same", "probability": 0.8779296875}, {"start": 2120.23, "end": 2120.65, "word": " buildings,", "probability": 0.90966796875}, {"start": 2121.37, "end": 2121.95, "word": " but", "probability": 0.55908203125}, {"start": 2121.95, "end": 2122.13, "word": " they", "probability": 0.366943359375}, {"start": 2122.13, "end": 2122.45, "word": " complain", "probability": 0.075927734375}, {"start": 2122.45, "end": 2122.65, "word": " about", "probability": 0.736328125}, {"start": 2122.65, "end": 2122.77, "word": " it.", "probability": 0.63232421875}], "temperature": 1.0}, {"id": 88, "seek": 214848, "start": 2124.49, "end": 2148.49, "text": " Like new, right or not? New colors, new mood. It changes the mood. Are you with me or not? The game is the same, but you change the design of the room, the building, the floor, the clothing, right or not? Simple changes happen. But the whole city and its map and structure is the same. Okay? Now, in this design, we want to change", "tokens": [1743, 777, 11, 558, 420, 406, 30, 1873, 4577, 11, 777, 9268, 13, 467, 2962, 264, 9268, 13, 2014, 291, 365, 385, 420, 406, 30, 440, 1216, 307, 264, 912, 11, 457, 291, 1319, 264, 1715, 295, 264, 1808, 11, 264, 2390, 11, 264, 4123, 11, 264, 11502, 11, 558, 420, 406, 30, 21532, 2962, 1051, 13, 583, 264, 1379, 2307, 293, 1080, 4471, 293, 3877, 307, 264, 912, 13, 1033, 30, 823, 11, 294, 341, 1715, 11, 321, 528, 281, 1319], "avg_logprob": -0.4947289443877806, "compression_ratio": 1.6717171717171717, "no_speech_prob": 3.4749507904052734e-05, "words": [{"start": 2124.49, "end": 2124.97, "word": " Like", "probability": 0.1041259765625}, {"start": 2124.97, "end": 2125.35, "word": " new,", "probability": 0.3662109375}, {"start": 2125.61, "end": 2125.81, "word": " right", "probability": 0.43603515625}, {"start": 2125.81, "end": 2125.99, "word": " or", "probability": 0.7490234375}, {"start": 2125.99, "end": 2126.11, "word": " not?", "probability": 0.60498046875}, {"start": 2126.57, "end": 2126.69, "word": " New", "probability": 0.81005859375}, {"start": 2126.69, "end": 2127.05, "word": " colors,", "probability": 0.79541015625}, {"start": 2127.41, "end": 2127.43, "word": " new", "probability": 0.80322265625}, {"start": 2127.43, "end": 2127.69, "word": " mood.", "probability": 0.4248046875}, {"start": 2128.39, "end": 2128.53, "word": " It", "probability": 0.462646484375}, {"start": 2128.53, "end": 2128.87, "word": " changes", "probability": 0.73681640625}, {"start": 2128.87, "end": 2129.19, "word": " the", "probability": 0.68798828125}, {"start": 2129.19, "end": 2129.81, "word": " mood.", "probability": 0.97021484375}, {"start": 2130.33, "end": 2130.47, "word": " Are", "probability": 0.1656494140625}, {"start": 2130.47, "end": 2130.49, "word": " you", "probability": 0.95361328125}, {"start": 2130.49, "end": 2130.63, "word": " with", "probability": 0.83642578125}, {"start": 2130.63, "end": 2130.73, "word": " me", "probability": 0.9365234375}, {"start": 2130.73, "end": 2130.89, "word": " or", "probability": 0.830078125}, {"start": 2130.89, "end": 2131.01, "word": " not?", "probability": 0.90087890625}, {"start": 2131.27, "end": 2131.55, "word": " The", "probability": 0.6806640625}, {"start": 2131.55, "end": 2131.77, "word": " game", "probability": 0.85302734375}, {"start": 2131.77, "end": 2131.97, "word": " is", "probability": 0.420166015625}, {"start": 2131.97, "end": 2132.11, "word": " the", "probability": 0.70556640625}, {"start": 2132.11, "end": 2132.29, "word": " same,", "probability": 0.908203125}, {"start": 2132.99, "end": 2133.41, "word": " but", "probability": 0.50439453125}, {"start": 2133.41, "end": 2133.81, "word": " you", "probability": 0.54931640625}, {"start": 2133.81, "end": 2133.81, "word": " change", "probability": 0.333251953125}, {"start": 2133.81, "end": 2133.95, "word": " the", "probability": 0.8291015625}, {"start": 2133.95, "end": 2134.15, "word": " design", "probability": 0.69677734375}, {"start": 2134.15, "end": 2134.33, "word": " of", "probability": 0.962890625}, {"start": 2134.33, "end": 2134.35, "word": " the", "probability": 0.76220703125}, {"start": 2134.35, "end": 2134.57, "word": " room,", "probability": 0.865234375}, {"start": 2134.77, "end": 2134.87, "word": " the", "probability": 0.67529296875}, {"start": 2134.87, "end": 2135.41, "word": " building,", "probability": 0.6572265625}, {"start": 2135.61, "end": 2135.63, "word": " the", "probability": 0.830078125}, {"start": 2135.63, "end": 2136.13, "word": " floor,", "probability": 0.61669921875}, {"start": 2136.69, "end": 2136.87, "word": " the", "probability": 0.66064453125}, {"start": 2136.87, "end": 2137.07, "word": " clothing,", "probability": 0.126953125}, {"start": 2137.89, "end": 2138.31, "word": " right", "probability": 0.41162109375}, {"start": 2138.31, "end": 2138.51, "word": " or", "probability": 0.9697265625}, {"start": 2138.51, "end": 2138.59, "word": " not?", "probability": 0.83056640625}, {"start": 2139.79, "end": 2140.31, "word": " Simple", "probability": 0.5341796875}, {"start": 2140.31, "end": 2140.53, "word": " changes", "probability": 0.8603515625}, {"start": 2140.53, "end": 2140.87, "word": " happen.", "probability": 0.318603515625}, {"start": 2141.07, "end": 2141.41, "word": " But", "probability": 0.91064453125}, {"start": 2141.41, "end": 2141.71, "word": " the", "probability": 0.421142578125}, {"start": 2141.71, "end": 2141.71, "word": " whole", "probability": 0.5087890625}, {"start": 2141.71, "end": 2142.09, "word": " city", "probability": 0.8642578125}, {"start": 2142.09, "end": 2142.45, "word": " and", "probability": 0.35205078125}, {"start": 2142.45, "end": 2142.55, "word": " its", "probability": 0.63916015625}, {"start": 2142.55, "end": 2142.83, "word": " map", "probability": 0.8779296875}, {"start": 2142.83, "end": 2143.49, "word": " and", "probability": 0.802734375}, {"start": 2143.49, "end": 2144.01, "word": " structure", "probability": 0.7109375}, {"start": 2144.01, "end": 2144.55, "word": " is", "probability": 0.5654296875}, {"start": 2144.55, "end": 2144.83, "word": " the", "probability": 0.382080078125}, {"start": 2144.83, "end": 2144.83, "word": " same.", "probability": 0.841796875}, {"start": 2145.41, "end": 2145.53, "word": " Okay?", "probability": 0.33056640625}, {"start": 2146.07, "end": 2146.39, "word": " Now,", "probability": 0.916015625}, {"start": 2146.47, "end": 2146.67, "word": " in", "probability": 0.4248046875}, {"start": 2146.67, "end": 2146.81, "word": " this", "probability": 0.51025390625}, {"start": 2146.81, "end": 2147.09, "word": " design,", "probability": 0.857421875}, {"start": 2147.41, "end": 2147.75, "word": " we", "probability": 0.8779296875}, {"start": 2147.75, "end": 2148.03, "word": " want", "probability": 0.53173828125}, {"start": 2148.03, "end": 2148.19, "word": " to", "probability": 0.97021484375}, {"start": 2148.19, "end": 2148.49, "word": " change", "probability": 0.90087890625}], "temperature": 1.0}, {"id": 89, "seek": 217603, "start": 2150.65, "end": 2176.03, "text": " The rooms, okay? Someone might say it's simple, you have a classroom with walls and everything, make it extendable, right? You can't do that, we didn't learn about OOP, make it extendable and change the colors and all that, it's simple, okay? No, it's not simple, you have to go and do what? Instead of the word new room, you remove this room and name it class?", "tokens": [440, 9396, 11, 1392, 30, 8734, 1062, 584, 309, 311, 2199, 11, 291, 362, 257, 7419, 365, 7920, 293, 1203, 11, 652, 309, 10101, 712, 11, 558, 30, 509, 393, 380, 360, 300, 11, 321, 994, 380, 1466, 466, 422, 12059, 11, 652, 309, 10101, 712, 293, 1319, 264, 4577, 293, 439, 300, 11, 309, 311, 2199, 11, 1392, 30, 883, 11, 309, 311, 406, 2199, 11, 291, 362, 281, 352, 293, 360, 437, 30, 7156, 295, 264, 1349, 777, 1808, 11, 291, 4159, 341, 1808, 293, 1315, 309, 1508, 30], "avg_logprob": -0.6052989396064178, "compression_ratio": 1.7156398104265402, "no_speech_prob": 8.881092071533203e-06, "words": [{"start": 2150.65, "end": 2150.85, "word": " The", "probability": 0.2255859375}, {"start": 2150.85, "end": 2151.15, "word": " rooms,", "probability": 0.74658203125}, {"start": 2151.75, "end": 2151.99, "word": " okay?", "probability": 0.1995849609375}, {"start": 2152.39, "end": 2152.63, "word": " Someone", "probability": 0.1749267578125}, {"start": 2152.63, "end": 2152.81, "word": " might", "probability": 0.16015625}, {"start": 2152.81, "end": 2152.85, "word": " say", "probability": 0.74072265625}, {"start": 2152.85, "end": 2152.97, "word": " it's", "probability": 0.54736328125}, {"start": 2152.97, "end": 2153.23, "word": " simple,", "probability": 0.55810546875}, {"start": 2153.31, "end": 2153.47, "word": " you", "probability": 0.43798828125}, {"start": 2153.47, "end": 2153.71, "word": " have", "probability": 0.461181640625}, {"start": 2153.71, "end": 2153.87, "word": " a", "probability": 0.89453125}, {"start": 2153.87, "end": 2154.23, "word": " classroom", "probability": 0.62890625}, {"start": 2154.23, "end": 2155.49, "word": " with", "probability": 0.351318359375}, {"start": 2155.49, "end": 2155.91, "word": " walls", "probability": 0.4765625}, {"start": 2155.91, "end": 2156.01, "word": " and", "probability": 0.47900390625}, {"start": 2156.01, "end": 2156.37, "word": " everything,", "probability": 0.260986328125}, {"start": 2156.85, "end": 2157.09, "word": " make", "probability": 0.32177734375}, {"start": 2157.09, "end": 2157.25, "word": " it", "probability": 0.765625}, {"start": 2157.25, "end": 2158.67, "word": " extendable,", "probability": 0.4681396484375}, {"start": 2158.69, "end": 2158.99, "word": " right?", "probability": 0.64892578125}, {"start": 2159.69, "end": 2160.01, "word": " You", "probability": 0.27099609375}, {"start": 2160.01, "end": 2160.23, "word": " can't", "probability": 0.913818359375}, {"start": 2160.23, "end": 2160.29, "word": " do", "probability": 0.28564453125}, {"start": 2160.29, "end": 2160.39, "word": " that,", "probability": 0.3134765625}, {"start": 2160.53, "end": 2160.71, "word": " we", "probability": 0.634765625}, {"start": 2160.71, "end": 2160.83, "word": " didn't", "probability": 0.6429443359375}, {"start": 2160.83, "end": 2161.57, "word": " learn", "probability": 0.89697265625}, {"start": 2161.57, "end": 2161.71, "word": " about", "probability": 0.33544921875}, {"start": 2161.71, "end": 2162.07, "word": " OOP,", "probability": 0.912841796875}, {"start": 2162.45, "end": 2162.75, "word": " make", "probability": 0.2578125}, {"start": 2162.75, "end": 2162.91, "word": " it", "probability": 0.91455078125}, {"start": 2162.91, "end": 2163.29, "word": " extendable", "probability": 0.90380859375}, {"start": 2163.29, "end": 2163.43, "word": " and", "probability": 0.47412109375}, {"start": 2163.43, "end": 2163.67, "word": " change", "probability": 0.845703125}, {"start": 2163.67, "end": 2163.83, "word": " the", "probability": 0.410400390625}, {"start": 2163.83, "end": 2164.15, "word": " colors", "probability": 0.65576171875}, {"start": 2164.15, "end": 2164.35, "word": " and", "probability": 0.72314453125}, {"start": 2164.35, "end": 2164.53, "word": " all", "probability": 0.2203369140625}, {"start": 2164.53, "end": 2164.55, "word": " that,", "probability": 0.64794921875}, {"start": 2164.57, "end": 2164.79, "word": " it's", "probability": 0.6451416015625}, {"start": 2164.79, "end": 2165.13, "word": " simple,", "probability": 0.82470703125}, {"start": 2165.59, "end": 2165.83, "word": " okay?", "probability": 0.6318359375}, {"start": 2166.35, "end": 2166.51, "word": " No,", "probability": 0.8046875}, {"start": 2166.59, "end": 2166.67, "word": " it's", "probability": 0.904052734375}, {"start": 2166.67, "end": 2166.69, "word": " not", "probability": 0.94287109375}, {"start": 2166.69, "end": 2167.01, "word": " simple,", "probability": 0.9111328125}, {"start": 2167.11, "end": 2167.35, "word": " you", "probability": 0.587890625}, {"start": 2167.35, "end": 2167.51, "word": " have", "probability": 0.381591796875}, {"start": 2167.51, "end": 2167.93, "word": " to", "probability": 0.970703125}, {"start": 2167.93, "end": 2168.33, "word": " go", "probability": 0.395751953125}, {"start": 2168.33, "end": 2168.51, "word": " and", "probability": 0.533203125}, {"start": 2168.51, "end": 2168.63, "word": " do", "probability": 0.56640625}, {"start": 2168.63, "end": 2169.53, "word": " what?", "probability": 0.2333984375}, {"start": 2169.65, "end": 2170.13, "word": " Instead", "probability": 0.1553955078125}, {"start": 2170.13, "end": 2170.41, "word": " of", "probability": 0.9697265625}, {"start": 2170.41, "end": 2170.43, "word": " the", "probability": 0.396240234375}, {"start": 2170.43, "end": 2170.71, "word": " word", "probability": 0.7841796875}, {"start": 2170.71, "end": 2170.95, "word": " new", "probability": 0.459716796875}, {"start": 2170.95, "end": 2171.37, "word": " room,", "probability": 0.9169921875}, {"start": 2172.77, "end": 2173.31, "word": " you", "probability": 0.351806640625}, {"start": 2173.31, "end": 2173.59, "word": " remove", "probability": 0.451904296875}, {"start": 2173.59, "end": 2173.87, "word": " this", "probability": 0.57861328125}, {"start": 2173.87, "end": 2174.25, "word": " room", "probability": 0.609375}, {"start": 2174.25, "end": 2175.09, "word": " and", "probability": 0.8271484375}, {"start": 2175.09, "end": 2175.31, "word": " name", "probability": 0.2037353515625}, {"start": 2175.31, "end": 2175.61, "word": " it", "probability": 0.8828125}, {"start": 2175.61, "end": 2176.03, "word": " class?", "probability": 0.71337890625}], "temperature": 1.0}, {"id": 90, "seek": 219957, "start": 2176.69, "end": 2199.57, "text": " the new class you created. Ok, you made the extension easier for you, but here you have to remove the new column 50 times and put a new class name. And this is going to make it difficult. So, as you can see in the factoring method, of course, if you want to override a new class, you will have to write it from scratch.", "tokens": [264, 777, 1508, 291, 2942, 13, 3477, 11, 291, 1027, 264, 10320, 3571, 337, 291, 11, 457, 510, 291, 362, 281, 4159, 264, 777, 7738, 2625, 1413, 293, 829, 257, 777, 1508, 1315, 13, 400, 341, 307, 516, 281, 652, 309, 2252, 13, 407, 11, 382, 291, 393, 536, 294, 264, 1186, 3662, 3170, 11, 295, 1164, 11, 498, 291, 528, 281, 42321, 257, 777, 1508, 11, 291, 486, 362, 281, 2464, 309, 490, 8459, 13], "avg_logprob": -0.7301136456526719, "compression_ratio": 1.5841584158415842, "no_speech_prob": 9.715557098388672e-05, "words": [{"start": 2176.69, "end": 2176.89, "word": " the", "probability": 0.0704345703125}, {"start": 2176.89, "end": 2177.05, "word": " new", "probability": 0.65185546875}, {"start": 2177.05, "end": 2177.11, "word": " class", "probability": 0.337646484375}, {"start": 2177.11, "end": 2177.21, "word": " you", "probability": 0.493408203125}, {"start": 2177.21, "end": 2177.63, "word": " created.", "probability": 0.39892578125}, {"start": 2178.41, "end": 2178.73, "word": " Ok,", "probability": 0.171142578125}, {"start": 2178.99, "end": 2179.01, "word": " you", "probability": 0.25830078125}, {"start": 2179.01, "end": 2179.13, "word": " made", "probability": 0.2626953125}, {"start": 2179.13, "end": 2179.27, "word": " the", "probability": 0.461181640625}, {"start": 2179.27, "end": 2179.67, "word": " extension", "probability": 0.21875}, {"start": 2179.67, "end": 2180.01, "word": " easier", "probability": 0.6455078125}, {"start": 2180.01, "end": 2180.29, "word": " for", "probability": 0.400146484375}, {"start": 2180.29, "end": 2180.41, "word": " you,", "probability": 0.908203125}, {"start": 2180.45, "end": 2180.61, "word": " but", "probability": 0.8740234375}, {"start": 2180.61, "end": 2180.89, "word": " here", "probability": 0.2210693359375}, {"start": 2180.89, "end": 2180.89, "word": " you", "probability": 0.6728515625}, {"start": 2180.89, "end": 2181.11, "word": " have", "probability": 0.361083984375}, {"start": 2181.11, "end": 2181.25, "word": " to", "probability": 0.92724609375}, {"start": 2181.25, "end": 2182.49, "word": " remove", "probability": 0.252197265625}, {"start": 2182.49, "end": 2182.73, "word": " the", "probability": 0.57373046875}, {"start": 2182.73, "end": 2182.85, "word": " new", "probability": 0.62939453125}, {"start": 2182.85, "end": 2183.13, "word": " column", "probability": 0.040313720703125}, {"start": 2183.13, "end": 2183.37, "word": " 50", "probability": 0.5654296875}, {"start": 2183.37, "end": 2183.93, "word": " times", "probability": 0.91064453125}, {"start": 2183.93, "end": 2186.43, "word": " and", "probability": 0.52685546875}, {"start": 2186.43, "end": 2186.73, "word": " put", "probability": 0.1881103515625}, {"start": 2186.73, "end": 2187.99, "word": " a", "probability": 0.69140625}, {"start": 2187.99, "end": 2188.23, "word": " new", "probability": 0.8076171875}, {"start": 2188.23, "end": 2188.59, "word": " class", "probability": 0.88134765625}, {"start": 2188.59, "end": 2188.95, "word": " name.", "probability": 0.72705078125}, {"start": 2189.39, "end": 2189.51, "word": " And", "probability": 0.44677734375}, {"start": 2189.51, "end": 2189.67, "word": " this", "probability": 0.525390625}, {"start": 2189.67, "end": 2189.81, "word": " is", "probability": 0.396484375}, {"start": 2189.81, "end": 2189.81, "word": " going", "probability": 0.43408203125}, {"start": 2189.81, "end": 2189.81, "word": " to", "probability": 0.96240234375}, {"start": 2189.81, "end": 2189.97, "word": " make", "probability": 0.841796875}, {"start": 2189.97, "end": 2190.15, "word": " it", "probability": 0.8046875}, {"start": 2190.15, "end": 2190.75, "word": " difficult.", "probability": 0.6572265625}, {"start": 2191.49, "end": 2191.67, "word": " So,", "probability": 0.470703125}, {"start": 2191.75, "end": 2191.97, "word": " as", "probability": 0.16162109375}, {"start": 2191.97, "end": 2192.37, "word": " you", "probability": 0.381591796875}, {"start": 2192.37, "end": 2192.41, "word": " can", "probability": 0.68017578125}, {"start": 2192.41, "end": 2192.65, "word": " see", "probability": 0.91162109375}, {"start": 2192.65, "end": 2192.75, "word": " in", "probability": 0.69189453125}, {"start": 2192.75, "end": 2192.87, "word": " the", "probability": 0.68994140625}, {"start": 2192.87, "end": 2193.25, "word": " factoring", "probability": 0.50482177734375}, {"start": 2193.25, "end": 2193.93, "word": " method,", "probability": 0.263671875}, {"start": 2194.09, "end": 2194.09, "word": " of", "probability": 0.22021484375}, {"start": 2194.09, "end": 2194.25, "word": " course,", "probability": 0.9619140625}, {"start": 2195.01, "end": 2195.19, "word": " if", "probability": 0.152099609375}, {"start": 2195.19, "end": 2195.29, "word": " you", "probability": 0.371337890625}, {"start": 2195.29, "end": 2195.47, "word": " want", "probability": 0.497802734375}, {"start": 2195.47, "end": 2195.57, "word": " to", "probability": 0.9677734375}, {"start": 2195.57, "end": 2196.29, "word": " override", "probability": 0.449462890625}, {"start": 2196.29, "end": 2196.69, "word": " a", "probability": 0.53955078125}, {"start": 2196.69, "end": 2197.51, "word": " new", "probability": 0.9052734375}, {"start": 2197.51, "end": 2197.51, "word": " class,", "probability": 0.9375}, {"start": 2197.69, "end": 2198.41, "word": " you", "probability": 0.8583984375}, {"start": 2198.41, "end": 2198.59, "word": " will", "probability": 0.363037109375}, {"start": 2198.59, "end": 2198.73, "word": " have", "probability": 0.86376953125}, {"start": 2198.73, "end": 2198.89, "word": " to", "probability": 0.9736328125}, {"start": 2198.89, "end": 2199.09, "word": " write", "probability": 0.75390625}, {"start": 2199.09, "end": 2199.21, "word": " it", "probability": 0.62646484375}, {"start": 2199.21, "end": 2199.29, "word": " from", "probability": 0.42236328125}, {"start": 2199.29, "end": 2199.57, "word": " scratch.", "probability": 0.441650390625}], "temperature": 1.0}, {"id": 91, "seek": 222230, "start": 2200.6, "end": 2222.3, "text": " And again, in every subclass, we will face the same problem of the poster. You will have to repeat the whole diagram and the whole design in the subclass. So, we would like to see how I do not change the design every time, but in one step, I remove all existing rooms. If I made a room, I will remove it and replace it with a new room that I want to make.", "tokens": [400, 797, 11, 294, 633, 1422, 11665, 11, 321, 486, 1851, 264, 912, 1154, 295, 264, 17171, 13, 509, 486, 362, 281, 7149, 264, 1379, 10686, 293, 264, 1379, 1715, 294, 264, 1422, 11665, 13, 407, 11, 321, 576, 411, 281, 536, 577, 286, 360, 406, 1319, 264, 1715, 633, 565, 11, 457, 294, 472, 1823, 11, 286, 4159, 439, 6741, 9396, 13, 759, 286, 1027, 257, 1808, 11, 286, 486, 4159, 309, 293, 7406, 309, 365, 257, 777, 1808, 300, 286, 528, 281, 652, 13], "avg_logprob": -0.5711207115787199, "compression_ratio": 1.655813953488372, "no_speech_prob": 8.821487426757812e-06, "words": [{"start": 2200.6, "end": 2200.8, "word": " And", "probability": 0.1607666015625}, {"start": 2200.8, "end": 2201.14, "word": " again,", "probability": 0.623046875}, {"start": 2201.6, "end": 2201.72, "word": " in", "probability": 0.457763671875}, {"start": 2201.72, "end": 2201.94, "word": " every", "probability": 0.447265625}, {"start": 2201.94, "end": 2202.46, "word": " subclass,", "probability": 0.85986328125}, {"start": 2202.8, "end": 2203.22, "word": " we", "probability": 0.7509765625}, {"start": 2203.22, "end": 2203.22, "word": " will", "probability": 0.302490234375}, {"start": 2203.22, "end": 2203.42, "word": " face", "probability": 0.2269287109375}, {"start": 2203.42, "end": 2203.68, "word": " the", "probability": 0.84228515625}, {"start": 2203.68, "end": 2203.68, "word": " same", "probability": 0.763671875}, {"start": 2203.68, "end": 2203.94, "word": " problem", "probability": 0.6904296875}, {"start": 2203.94, "end": 2204.34, "word": " of", "probability": 0.3017578125}, {"start": 2204.34, "end": 2204.36, "word": " the", "probability": 0.424560546875}, {"start": 2204.36, "end": 2204.74, "word": " poster.", "probability": 0.65380859375}, {"start": 2204.82, "end": 2204.96, "word": " You", "probability": 0.282470703125}, {"start": 2204.96, "end": 2205.14, "word": " will", "probability": 0.461181640625}, {"start": 2205.14, "end": 2205.42, "word": " have", "probability": 0.76806640625}, {"start": 2205.42, "end": 2205.48, "word": " to", "probability": 0.96630859375}, {"start": 2205.48, "end": 2205.7, "word": " repeat", "probability": 0.11810302734375}, {"start": 2205.7, "end": 2205.86, "word": " the", "probability": 0.53466796875}, {"start": 2205.86, "end": 2205.9, "word": " whole", "probability": 0.4765625}, {"start": 2205.9, "end": 2206.02, "word": " diagram", "probability": 0.11236572265625}, {"start": 2206.02, "end": 2207.12, "word": " and", "probability": 0.80029296875}, {"start": 2207.12, "end": 2207.24, "word": " the", "probability": 0.484619140625}, {"start": 2207.24, "end": 2207.48, "word": " whole", "probability": 0.5}, {"start": 2207.48, "end": 2207.48, "word": " design", "probability": 0.66162109375}, {"start": 2207.48, "end": 2207.76, "word": " in", "probability": 0.78857421875}, {"start": 2207.76, "end": 2207.84, "word": " the", "probability": 0.59130859375}, {"start": 2207.84, "end": 2208.2, "word": " subclass.", "probability": 0.906982421875}, {"start": 2208.5, "end": 2208.64, "word": " So,", "probability": 0.46435546875}, {"start": 2208.7, "end": 2208.8, "word": " we", "probability": 0.64404296875}, {"start": 2208.8, "end": 2208.94, "word": " would", "probability": 0.0880126953125}, {"start": 2208.94, "end": 2209.1, "word": " like", "probability": 0.8115234375}, {"start": 2209.1, "end": 2209.36, "word": " to", "probability": 0.8505859375}, {"start": 2209.36, "end": 2209.76, "word": " see", "probability": 0.2890625}, {"start": 2209.76, "end": 2210.4, "word": " how", "probability": 0.40283203125}, {"start": 2210.4, "end": 2211.32, "word": " I", "probability": 0.38330078125}, {"start": 2211.32, "end": 2211.4, "word": " do", "probability": 0.395751953125}, {"start": 2211.4, "end": 2211.4, "word": " not", "probability": 0.9072265625}, {"start": 2211.4, "end": 2211.6, "word": " change", "probability": 0.80224609375}, {"start": 2211.6, "end": 2211.84, "word": " the", "probability": 0.86181640625}, {"start": 2211.84, "end": 2212.12, "word": " design", "probability": 0.857421875}, {"start": 2212.12, "end": 2212.38, "word": " every", "probability": 0.5439453125}, {"start": 2212.38, "end": 2212.72, "word": " time,", "probability": 0.853515625}, {"start": 2214.14, "end": 2214.52, "word": " but", "probability": 0.88818359375}, {"start": 2214.52, "end": 2214.64, "word": " in", "probability": 0.180908203125}, {"start": 2214.64, "end": 2215.14, "word": " one", "probability": 0.8076171875}, {"start": 2215.14, "end": 2215.28, "word": " step,", "probability": 0.861328125}, {"start": 2215.66, "end": 2215.66, "word": " I", "probability": 0.422607421875}, {"start": 2215.66, "end": 2215.9, "word": " remove", "probability": 0.11492919921875}, {"start": 2215.9, "end": 2217.0, "word": " all", "probability": 0.50634765625}, {"start": 2217.0, "end": 2217.14, "word": " existing", "probability": 0.62109375}, {"start": 2217.14, "end": 2217.32, "word": " rooms.", "probability": 0.70947265625}, {"start": 2217.74, "end": 2217.92, "word": " If", "probability": 0.849609375}, {"start": 2217.92, "end": 2218.12, "word": " I", "probability": 0.89697265625}, {"start": 2218.12, "end": 2218.28, "word": " made", "probability": 0.256591796875}, {"start": 2218.28, "end": 2218.38, "word": " a", "probability": 0.96337890625}, {"start": 2218.38, "end": 2218.6, "word": " room,", "probability": 0.93017578125}, {"start": 2219.04, "end": 2219.32, "word": " I", "probability": 0.92578125}, {"start": 2219.32, "end": 2219.44, "word": " will", "probability": 0.427734375}, {"start": 2219.44, "end": 2219.84, "word": " remove", "probability": 0.423828125}, {"start": 2219.84, "end": 2220.28, "word": " it", "probability": 0.6748046875}, {"start": 2220.28, "end": 2220.62, "word": " and", "probability": 0.8583984375}, {"start": 2220.62, "end": 2220.88, "word": " replace", "probability": 0.587890625}, {"start": 2220.88, "end": 2221.08, "word": " it", "probability": 0.91357421875}, {"start": 2221.08, "end": 2221.18, "word": " with", "probability": 0.84814453125}, {"start": 2221.18, "end": 2221.48, "word": " a", "probability": 0.75}, {"start": 2221.48, "end": 2221.64, "word": " new", "probability": 0.88427734375}, {"start": 2221.64, "end": 2221.64, "word": " room", "probability": 0.46484375}, {"start": 2221.64, "end": 2221.82, "word": " that", "probability": 0.37353515625}, {"start": 2221.82, "end": 2221.96, "word": " I", "probability": 0.99169921875}, {"start": 2221.96, "end": 2222.12, "word": " want", "probability": 0.7607421875}, {"start": 2222.12, "end": 2222.16, "word": " to", "probability": 0.9345703125}, {"start": 2222.16, "end": 2222.3, "word": " make.", "probability": 0.77197265625}], "temperature": 1.0}, {"id": 92, "seek": 223657, "start": 2224.29, "end": 2236.57, "text": " We will use the factor method to solve this problem. Look at this new design.", "tokens": [492, 486, 764, 264, 5952, 3170, 281, 5039, 341, 1154, 13, 2053, 412, 341, 777, 1715, 13], "avg_logprob": -0.758246554268731, "compression_ratio": 1.054054054054054, "no_speech_prob": 2.9802322387695312e-06, "words": [{"start": 2224.29, "end": 2224.81, "word": " We", "probability": 0.038238525390625}, {"start": 2224.81, "end": 2225.05, "word": " will", "probability": 0.442626953125}, {"start": 2225.05, "end": 2225.47, "word": " use", "probability": 0.75927734375}, {"start": 2225.47, "end": 2225.73, "word": " the", "probability": 0.409423828125}, {"start": 2225.73, "end": 2228.09, "word": " factor", "probability": 0.466064453125}, {"start": 2228.09, "end": 2228.41, "word": " method", "probability": 0.79736328125}, {"start": 2228.41, "end": 2228.41, "word": " to", "probability": 0.4921875}, {"start": 2228.41, "end": 2228.41, "word": " solve", "probability": 0.6005859375}, {"start": 2228.41, "end": 2228.41, "word": " this", "probability": 0.7060546875}, {"start": 2228.41, "end": 2228.41, "word": " problem.", "probability": 0.76708984375}, {"start": 2229.93, "end": 2230.45, "word": " Look", "probability": 0.136962890625}, {"start": 2230.45, "end": 2236.09, "word": " at", "probability": 0.82275390625}, {"start": 2236.09, "end": 2236.25, "word": " this", "probability": 0.53125}, {"start": 2236.25, "end": 2236.33, "word": " new", "probability": 0.56298828125}, {"start": 2236.33, "end": 2236.57, "word": " design.", "probability": 0.68896484375}], "temperature": 1.0}, {"id": 93, "seek": 226260, "start": 2239.48, "end": 2262.6, "text": " This is Create Maze that we saw a while ago. But what did it do? Look at it. A while ago I was saying Maze, Maze equals New Maze, right? It removed New Maze and replaced it with Make Maze. Where is this Make Maze? Go down. Here you have Make Maze, not even Abstract. What does it bring back? New Maze. It brought back Make Home. What was this before? New Home.", "tokens": [639, 307, 20248, 376, 13660, 300, 321, 1866, 257, 1339, 2057, 13, 583, 437, 630, 309, 360, 30, 2053, 412, 309, 13, 316, 1339, 2057, 286, 390, 1566, 376, 13660, 11, 376, 13660, 6915, 1873, 376, 13660, 11, 558, 30, 467, 7261, 1873, 376, 13660, 293, 10772, 309, 365, 4387, 376, 13660, 13, 2305, 307, 341, 4387, 376, 13660, 30, 1037, 760, 13, 1692, 291, 362, 4387, 376, 13660, 11, 406, 754, 46853, 1897, 13, 708, 775, 309, 1565, 646, 30, 1873, 376, 13660, 13, 467, 3038, 646, 4387, 8719, 13, 708, 390, 341, 949, 30, 1873, 8719, 13], "avg_logprob": -0.4912500035762787, "compression_ratio": 1.6484018264840183, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2239.48, "end": 2239.78, "word": " This", "probability": 0.1744384765625}, {"start": 2239.78, "end": 2239.94, "word": " is", "probability": 0.51708984375}, {"start": 2239.94, "end": 2240.16, "word": " Create", "probability": 0.45703125}, {"start": 2240.16, "end": 2240.38, "word": " Maze", "probability": 0.6343994140625}, {"start": 2240.38, "end": 2240.5, "word": " that", "probability": 0.259765625}, {"start": 2240.5, "end": 2240.76, "word": " we", "probability": 0.1942138671875}, {"start": 2240.76, "end": 2240.76, "word": " saw", "probability": 0.5791015625}, {"start": 2240.76, "end": 2240.96, "word": " a", "probability": 0.1805419921875}, {"start": 2240.96, "end": 2241.22, "word": " while", "probability": 0.5771484375}, {"start": 2241.22, "end": 2241.26, "word": " ago.", "probability": 0.85546875}, {"start": 2241.94, "end": 2242.42, "word": " But", "probability": 0.446044921875}, {"start": 2242.42, "end": 2242.64, "word": " what", "probability": 0.70361328125}, {"start": 2242.64, "end": 2242.76, "word": " did", "probability": 0.59423828125}, {"start": 2242.76, "end": 2243.0, "word": " it", "probability": 0.6416015625}, {"start": 2243.0, "end": 2243.0, "word": " do?", "probability": 0.75634765625}, {"start": 2243.24, "end": 2243.5, "word": " Look", "probability": 0.426025390625}, {"start": 2243.5, "end": 2243.6, "word": " at", "probability": 0.5361328125}, {"start": 2243.6, "end": 2243.84, "word": " it.", "probability": 0.53564453125}, {"start": 2244.2, "end": 2244.68, "word": " A", "probability": 0.430908203125}, {"start": 2244.68, "end": 2244.82, "word": " while", "probability": 0.90576171875}, {"start": 2244.82, "end": 2244.86, "word": " ago", "probability": 0.89111328125}, {"start": 2244.86, "end": 2245.16, "word": " I", "probability": 0.53955078125}, {"start": 2245.16, "end": 2245.18, "word": " was", "probability": 0.4765625}, {"start": 2245.18, "end": 2245.38, "word": " saying", "probability": 0.490966796875}, {"start": 2245.38, "end": 2245.84, "word": " Maze,", "probability": 0.608642578125}, {"start": 2245.94, "end": 2246.2, "word": " Maze", "probability": 0.77392578125}, {"start": 2246.2, "end": 2246.52, "word": " equals", "probability": 0.400390625}, {"start": 2246.52, "end": 2246.76, "word": " New", "probability": 0.5830078125}, {"start": 2246.76, "end": 2247.06, "word": " Maze,", "probability": 0.8955078125}, {"start": 2247.16, "end": 2247.42, "word": " right?", "probability": 0.755859375}, {"start": 2247.84, "end": 2248.08, "word": " It", "probability": 0.449951171875}, {"start": 2248.08, "end": 2248.42, "word": " removed", "probability": 0.295654296875}, {"start": 2248.42, "end": 2248.7, "word": " New", "probability": 0.78759765625}, {"start": 2248.7, "end": 2248.94, "word": " Maze", "probability": 0.85693359375}, {"start": 2248.94, "end": 2249.14, "word": " and", "probability": 0.82373046875}, {"start": 2249.14, "end": 2249.3, "word": " replaced", "probability": 0.57861328125}, {"start": 2249.3, "end": 2249.72, "word": " it", "probability": 0.88525390625}, {"start": 2249.72, "end": 2250.56, "word": " with", "probability": 0.84716796875}, {"start": 2250.56, "end": 2250.8, "word": " Make", "probability": 0.79638671875}, {"start": 2250.8, "end": 2251.02, "word": " Maze.", "probability": 0.89697265625}, {"start": 2251.08, "end": 2251.22, "word": " Where", "probability": 0.69384765625}, {"start": 2251.22, "end": 2251.26, "word": " is", "probability": 0.810546875}, {"start": 2251.26, "end": 2251.38, "word": " this", "probability": 0.464111328125}, {"start": 2251.38, "end": 2251.52, "word": " Make", "probability": 0.8427734375}, {"start": 2251.52, "end": 2251.76, "word": " Maze?", "probability": 0.90478515625}, {"start": 2252.18, "end": 2252.5, "word": " Go", "probability": 0.56884765625}, {"start": 2252.5, "end": 2252.82, "word": " down.", "probability": 0.75390625}, {"start": 2253.58, "end": 2253.92, "word": " Here", "probability": 0.2734375}, {"start": 2253.92, "end": 2254.04, "word": " you", "probability": 0.55859375}, {"start": 2254.04, "end": 2254.28, "word": " have", "probability": 0.77197265625}, {"start": 2254.28, "end": 2254.54, "word": " Make", "probability": 0.6533203125}, {"start": 2254.54, "end": 2254.54, "word": " Maze,", "probability": 0.7391357421875}, {"start": 2254.56, "end": 2254.7, "word": " not", "probability": 0.49609375}, {"start": 2254.7, "end": 2254.78, "word": " even", "probability": 0.45166015625}, {"start": 2254.78, "end": 2255.18, "word": " Abstract.", "probability": 0.89453125}, {"start": 2255.6, "end": 2256.08, "word": " What", "probability": 0.7509765625}, {"start": 2256.08, "end": 2256.12, "word": " does", "probability": 0.191162109375}, {"start": 2256.12, "end": 2256.24, "word": " it", "probability": 0.51708984375}, {"start": 2256.24, "end": 2256.36, "word": " bring", "probability": 0.53125}, {"start": 2256.36, "end": 2256.46, "word": " back?", "probability": 0.720703125}, {"start": 2256.68, "end": 2257.14, "word": " New", "probability": 0.84814453125}, {"start": 2257.14, "end": 2257.88, "word": " Maze.", "probability": 0.896728515625}, {"start": 2258.32, "end": 2258.48, "word": " It", "probability": 0.371337890625}, {"start": 2258.48, "end": 2259.0, "word": " brought", "probability": 0.369384765625}, {"start": 2259.0, "end": 2259.5, "word": " back", "probability": 0.2325439453125}, {"start": 2259.5, "end": 2259.84, "word": " Make", "probability": 0.86279296875}, {"start": 2259.84, "end": 2260.08, "word": " Home.", "probability": 0.321044921875}, {"start": 2260.36, "end": 2260.7, "word": " What", "probability": 0.79638671875}, {"start": 2260.7, "end": 2260.98, "word": " was", "probability": 0.7880859375}, {"start": 2260.98, "end": 2261.04, "word": " this", "probability": 0.68701171875}, {"start": 2261.04, "end": 2261.28, "word": " before?", "probability": 0.775390625}, {"start": 2261.88, "end": 2262.32, "word": " New", "probability": 0.640625}, {"start": 2262.32, "end": 2262.6, "word": " Home.", "probability": 0.91845703125}], "temperature": 1.0}, {"id": 94, "seek": 228531, "start": 2263.75, "end": 2285.31, "text": " He took this line U and put it in a bracket. This is a microme, what happened? Return U is a row. Microme is the same thing. Mic door in the previous design was U door here. What happened here? Mic door. He took this and made a mic door and wrote here return U door. One may ask, what did we gain from this?", "tokens": [634, 1890, 341, 1622, 624, 293, 829, 309, 294, 257, 16904, 13, 639, 307, 257, 3123, 11505, 11, 437, 2011, 30, 24350, 624, 307, 257, 5386, 13, 5818, 11505, 307, 264, 912, 551, 13, 5818, 2853, 294, 264, 3894, 1715, 390, 624, 2853, 510, 13, 708, 2011, 510, 30, 5818, 2853, 13, 634, 1890, 341, 293, 1027, 257, 3123, 2853, 293, 4114, 510, 2736, 624, 2853, 13, 1485, 815, 1029, 11, 437, 630, 321, 6052, 490, 341, 30], "avg_logprob": -0.6732594921619077, "compression_ratio": 1.673913043478261, "no_speech_prob": 2.980232238769531e-07, "words": [{"start": 2263.75, "end": 2263.93, "word": " He", "probability": 0.2666015625}, {"start": 2263.93, "end": 2264.15, "word": " took", "probability": 0.564453125}, {"start": 2264.15, "end": 2264.31, "word": " this", "probability": 0.25146484375}, {"start": 2264.31, "end": 2264.51, "word": " line", "probability": 0.599609375}, {"start": 2264.51, "end": 2264.83, "word": " U", "probability": 0.225341796875}, {"start": 2264.83, "end": 2265.83, "word": " and", "probability": 0.76708984375}, {"start": 2265.83, "end": 2266.49, "word": " put", "probability": 0.4384765625}, {"start": 2266.49, "end": 2266.57, "word": " it", "probability": 0.84130859375}, {"start": 2266.57, "end": 2266.61, "word": " in", "probability": 0.66650390625}, {"start": 2266.61, "end": 2266.91, "word": " a", "probability": 0.36181640625}, {"start": 2266.91, "end": 2266.91, "word": " bracket.", "probability": 0.07440185546875}, {"start": 2267.39, "end": 2267.57, "word": " This", "probability": 0.316162109375}, {"start": 2267.57, "end": 2267.63, "word": " is", "probability": 0.81591796875}, {"start": 2267.63, "end": 2267.71, "word": " a", "probability": 0.15869140625}, {"start": 2267.71, "end": 2267.95, "word": " microme,", "probability": 0.4725341796875}, {"start": 2267.99, "end": 2268.13, "word": " what", "probability": 0.43115234375}, {"start": 2268.13, "end": 2268.33, "word": " happened?", "probability": 0.441650390625}, {"start": 2268.47, "end": 2268.71, "word": " Return", "probability": 0.337890625}, {"start": 2268.71, "end": 2269.11, "word": " U", "probability": 0.5966796875}, {"start": 2269.11, "end": 2269.23, "word": " is", "probability": 0.11578369140625}, {"start": 2269.23, "end": 2269.27, "word": " a", "probability": 0.276611328125}, {"start": 2269.27, "end": 2270.09, "word": " row.", "probability": 0.52880859375}, {"start": 2270.77, "end": 2271.25, "word": " Microme", "probability": 0.5859375}, {"start": 2271.25, "end": 2271.57, "word": " is", "probability": 0.7177734375}, {"start": 2271.57, "end": 2271.81, "word": " the", "probability": 0.42041015625}, {"start": 2271.81, "end": 2272.11, "word": " same", "probability": 0.86669921875}, {"start": 2272.11, "end": 2272.53, "word": " thing.", "probability": 0.45947265625}, {"start": 2272.83, "end": 2273.11, "word": " Mic", "probability": 0.54296875}, {"start": 2273.11, "end": 2273.41, "word": " door", "probability": 0.461669921875}, {"start": 2273.41, "end": 2274.53, "word": " in", "probability": 0.2332763671875}, {"start": 2274.53, "end": 2274.69, "word": " the", "probability": 0.6591796875}, {"start": 2274.69, "end": 2274.83, "word": " previous", "probability": 0.402099609375}, {"start": 2274.83, "end": 2275.03, "word": " design", "probability": 0.67041015625}, {"start": 2275.03, "end": 2276.17, "word": " was", "probability": 0.49169921875}, {"start": 2276.17, "end": 2276.45, "word": " U", "probability": 0.298828125}, {"start": 2276.45, "end": 2276.73, "word": " door", "probability": 0.85986328125}, {"start": 2276.73, "end": 2276.97, "word": " here.", "probability": 0.442138671875}, {"start": 2277.37, "end": 2277.61, "word": " What", "probability": 0.68115234375}, {"start": 2277.61, "end": 2277.99, "word": " happened", "probability": 0.79638671875}, {"start": 2277.99, "end": 2277.99, "word": " here?", "probability": 0.75146484375}, {"start": 2278.69, "end": 2278.99, "word": " Mic", "probability": 0.8115234375}, {"start": 2278.99, "end": 2279.25, "word": " door.", "probability": 0.94384765625}, {"start": 2279.33, "end": 2279.67, "word": " He", "probability": 0.55224609375}, {"start": 2279.67, "end": 2279.89, "word": " took", "probability": 0.58154296875}, {"start": 2279.89, "end": 2280.07, "word": " this", "probability": 0.69140625}, {"start": 2280.07, "end": 2280.15, "word": " and", "probability": 0.51904296875}, {"start": 2280.15, "end": 2280.31, "word": " made", "probability": 0.5986328125}, {"start": 2280.31, "end": 2280.37, "word": " a", "probability": 0.42138671875}, {"start": 2280.37, "end": 2280.53, "word": " mic", "probability": 0.8984375}, {"start": 2280.53, "end": 2280.75, "word": " door", "probability": 0.9345703125}, {"start": 2280.75, "end": 2280.89, "word": " and", "probability": 0.74853515625}, {"start": 2280.89, "end": 2281.11, "word": " wrote", "probability": 0.76220703125}, {"start": 2281.11, "end": 2281.39, "word": " here", "probability": 0.427978515625}, {"start": 2281.39, "end": 2281.77, "word": " return", "probability": 0.357666015625}, {"start": 2281.77, "end": 2282.15, "word": " U", "probability": 0.95849609375}, {"start": 2282.15, "end": 2283.07, "word": " door.", "probability": 0.8251953125}, {"start": 2283.71, "end": 2284.05, "word": " One", "probability": 0.36376953125}, {"start": 2284.05, "end": 2284.17, "word": " may", "probability": 0.12249755859375}, {"start": 2284.17, "end": 2284.29, "word": " ask,", "probability": 0.3837890625}, {"start": 2284.45, "end": 2284.79, "word": " what", "probability": 0.4462890625}, {"start": 2284.79, "end": 2284.93, "word": " did", "probability": 0.5751953125}, {"start": 2284.93, "end": 2284.93, "word": " we", "probability": 0.7265625}, {"start": 2284.93, "end": 2285.13, "word": " gain", "probability": 0.7158203125}, {"start": 2285.13, "end": 2285.31, "word": " from", "probability": 0.63525390625}, {"start": 2285.31, "end": 2285.31, "word": " this?", "probability": 0.71435546875}], "temperature": 1.0}, {"id": 95, "seek": 231536, "start": 2286.06, "end": 2315.36, "text": " On the contrary, you messed it up. Where are your hands, Juha? Right or wrong? It was written New here, but we put it inside and fixed it. So how did this design become better? I'll tell you how this design became better. Pay attention to me. This is how the design becomes better. Did you notice that I want to make a new maze, but in magical rooms? Okay? Rooms that we dress like new. Okay? So what do we do? As we agreed, the room is extended and it becomes an enchanted room.", "tokens": [1282, 264, 19506, 11, 291, 16507, 309, 493, 13, 2305, 366, 428, 2377, 11, 508, 3232, 64, 30, 1779, 420, 2085, 30, 467, 390, 3720, 1873, 510, 11, 457, 321, 829, 309, 1854, 293, 6806, 309, 13, 407, 577, 630, 341, 1715, 1813, 1101, 30, 286, 603, 980, 291, 577, 341, 1715, 3062, 1101, 13, 11431, 3202, 281, 385, 13, 639, 307, 577, 264, 1715, 3643, 1101, 13, 2589, 291, 3449, 300, 286, 528, 281, 652, 257, 777, 33032, 11, 457, 294, 12066, 9396, 30, 1033, 30, 3101, 4785, 300, 321, 5231, 411, 777, 13, 1033, 30, 407, 437, 360, 321, 360, 30, 1018, 321, 9166, 11, 264, 1808, 307, 10913, 293, 309, 3643, 364, 35213, 15587, 1808, 13], "avg_logprob": -0.49036457811792694, "compression_ratio": 1.6842105263157894, "no_speech_prob": 6.330013275146484e-05, "words": [{"start": 2286.06, "end": 2286.5, "word": " On", "probability": 0.10107421875}, {"start": 2286.5, "end": 2286.58, "word": " the", "probability": 0.8701171875}, {"start": 2286.58, "end": 2286.78, "word": " contrary,", "probability": 0.859375}, {"start": 2286.84, "end": 2286.84, "word": " you", "probability": 0.69921875}, {"start": 2286.84, "end": 2287.06, "word": " messed", "probability": 0.034332275390625}, {"start": 2287.06, "end": 2287.28, "word": " it", "probability": 0.4716796875}, {"start": 2287.28, "end": 2287.38, "word": " up.", "probability": 0.92529296875}, {"start": 2287.68, "end": 2287.8, "word": " Where", "probability": 0.348876953125}, {"start": 2287.8, "end": 2287.8, "word": " are", "probability": 0.2197265625}, {"start": 2287.8, "end": 2288.1, "word": " your", "probability": 0.62255859375}, {"start": 2288.1, "end": 2288.1, "word": " hands,", "probability": 0.3056640625}, {"start": 2288.3, "end": 2288.46, "word": " Juha?", "probability": 0.5983479817708334}, {"start": 2288.52, "end": 2288.72, "word": " Right", "probability": 0.258056640625}, {"start": 2288.72, "end": 2288.86, "word": " or", "probability": 0.75439453125}, {"start": 2288.86, "end": 2289.0, "word": " wrong?", "probability": 0.5810546875}, {"start": 2289.28, "end": 2289.66, "word": " It", "probability": 0.60595703125}, {"start": 2289.66, "end": 2289.8, "word": " was", "probability": 0.8271484375}, {"start": 2289.8, "end": 2290.1, "word": " written", "probability": 0.7353515625}, {"start": 2290.1, "end": 2290.38, "word": " New", "probability": 0.263671875}, {"start": 2290.38, "end": 2290.74, "word": " here,", "probability": 0.67822265625}, {"start": 2291.5, "end": 2292.3, "word": " but", "probability": 0.697265625}, {"start": 2292.3, "end": 2292.66, "word": " we", "probability": 0.79150390625}, {"start": 2292.66, "end": 2292.66, "word": " put", "probability": 0.6357421875}, {"start": 2292.66, "end": 2293.64, "word": " it", "probability": 0.8994140625}, {"start": 2293.64, "end": 2293.8, "word": " inside", "probability": 0.65966796875}, {"start": 2293.8, "end": 2294.02, "word": " and", "probability": 0.400146484375}, {"start": 2294.02, "end": 2294.28, "word": " fixed", "probability": 0.06365966796875}, {"start": 2294.28, "end": 2294.42, "word": " it.", "probability": 0.9306640625}, {"start": 2294.66, "end": 2294.88, "word": " So", "probability": 0.312255859375}, {"start": 2294.88, "end": 2295.1, "word": " how", "probability": 0.6787109375}, {"start": 2295.1, "end": 2295.16, "word": " did", "probability": 0.7626953125}, {"start": 2295.16, "end": 2295.36, "word": " this", "probability": 0.69970703125}, {"start": 2295.36, "end": 2295.66, "word": " design", "probability": 0.9345703125}, {"start": 2295.66, "end": 2295.88, "word": " become", "probability": 0.58837890625}, {"start": 2295.88, "end": 2296.14, "word": " better?", "probability": 0.91455078125}, {"start": 2297.28, "end": 2297.66, "word": " I'll", "probability": 0.4906005859375}, {"start": 2297.66, "end": 2297.76, "word": " tell", "probability": 0.85107421875}, {"start": 2297.76, "end": 2297.88, "word": " you", "probability": 0.96630859375}, {"start": 2297.88, "end": 2298.02, "word": " how", "probability": 0.90869140625}, {"start": 2298.02, "end": 2298.12, "word": " this", "probability": 0.68017578125}, {"start": 2298.12, "end": 2298.36, "word": " design", "probability": 0.9501953125}, {"start": 2298.36, "end": 2298.62, "word": " became", "probability": 0.50048828125}, {"start": 2298.62, "end": 2298.86, "word": " better.", "probability": 0.92041015625}, {"start": 2299.38, "end": 2299.68, "word": " Pay", "probability": 0.73828125}, {"start": 2299.68, "end": 2299.8, "word": " attention", "probability": 0.93408203125}, {"start": 2299.8, "end": 2299.92, "word": " to", "probability": 0.50439453125}, {"start": 2299.92, "end": 2300.16, "word": " me.", "probability": 0.73681640625}, {"start": 2300.82, "end": 2301.18, "word": " This", "probability": 0.79248046875}, {"start": 2301.18, "end": 2301.18, "word": " is", "probability": 0.79833984375}, {"start": 2301.18, "end": 2301.26, "word": " how", "probability": 0.93408203125}, {"start": 2301.26, "end": 2301.36, "word": " the", "probability": 0.572265625}, {"start": 2301.36, "end": 2301.62, "word": " design", "probability": 0.958984375}, {"start": 2301.62, "end": 2301.88, "word": " becomes", "probability": 0.716796875}, {"start": 2301.88, "end": 2302.18, "word": " better.", "probability": 0.92919921875}, {"start": 2302.62, "end": 2302.8, "word": " Did", "probability": 0.313720703125}, {"start": 2302.8, "end": 2302.84, "word": " you", "probability": 0.96484375}, {"start": 2302.84, "end": 2302.94, "word": " notice", "probability": 0.5927734375}, {"start": 2302.94, "end": 2303.02, "word": " that", "probability": 0.71875}, {"start": 2303.02, "end": 2303.12, "word": " I", "probability": 0.982421875}, {"start": 2303.12, "end": 2303.38, "word": " want", "probability": 0.55029296875}, {"start": 2303.38, "end": 2303.4, "word": " to", "probability": 0.9521484375}, {"start": 2303.4, "end": 2303.6, "word": " make", "probability": 0.76904296875}, {"start": 2303.6, "end": 2303.92, "word": " a", "probability": 0.9814453125}, {"start": 2303.92, "end": 2303.92, "word": " new", "probability": 0.87158203125}, {"start": 2303.92, "end": 2304.2, "word": " maze,", "probability": 0.5869140625}, {"start": 2304.62, "end": 2304.76, "word": " but", "probability": 0.880859375}, {"start": 2304.76, "end": 2304.9, "word": " in", "probability": 0.54638671875}, {"start": 2304.9, "end": 2305.36, "word": " magical", "probability": 0.31591796875}, {"start": 2305.36, "end": 2305.48, "word": " rooms?", "probability": 0.87744140625}, {"start": 2306.8, "end": 2306.96, "word": " Okay?", "probability": 0.22998046875}, {"start": 2307.24, "end": 2307.44, "word": " Rooms", "probability": 0.767578125}, {"start": 2307.44, "end": 2307.64, "word": " that", "probability": 0.7705078125}, {"start": 2307.64, "end": 2307.76, "word": " we", "probability": 0.483642578125}, {"start": 2307.76, "end": 2307.96, "word": " dress", "probability": 0.279052734375}, {"start": 2307.96, "end": 2308.12, "word": " like", "probability": 0.252685546875}, {"start": 2308.12, "end": 2308.52, "word": " new.", "probability": 0.6806640625}, {"start": 2309.02, "end": 2309.32, "word": " Okay?", "probability": 0.69189453125}, {"start": 2309.78, "end": 2309.94, "word": " So", "probability": 0.93017578125}, {"start": 2309.94, "end": 2310.08, "word": " what", "probability": 0.791015625}, {"start": 2310.08, "end": 2310.16, "word": " do", "probability": 0.56201171875}, {"start": 2310.16, "end": 2310.38, "word": " we", "probability": 0.9482421875}, {"start": 2310.38, "end": 2310.38, "word": " do?", "probability": 0.5888671875}, {"start": 2311.22, "end": 2311.66, "word": " As", "probability": 0.88134765625}, {"start": 2311.66, "end": 2311.76, "word": " we", "probability": 0.498779296875}, {"start": 2311.76, "end": 2312.06, "word": " agreed,", "probability": 0.890625}, {"start": 2312.24, "end": 2312.36, "word": " the", "probability": 0.73193359375}, {"start": 2312.36, "end": 2312.64, "word": " room", "probability": 0.849609375}, {"start": 2312.64, "end": 2312.88, "word": " is", "probability": 0.44140625}, {"start": 2312.88, "end": 2313.62, "word": " extended", "probability": 0.349365234375}, {"start": 2313.62, "end": 2313.9, "word": " and", "probability": 0.72021484375}, {"start": 2313.9, "end": 2314.0, "word": " it", "probability": 0.1920166015625}, {"start": 2314.0, "end": 2314.22, "word": " becomes", "probability": 0.423583984375}, {"start": 2314.22, "end": 2314.64, "word": " an", "probability": 0.4970703125}, {"start": 2314.64, "end": 2315.1, "word": " enchanted", "probability": 0.940673828125}, {"start": 2315.1, "end": 2315.36, "word": " room.", "probability": 0.939453125}], "temperature": 1.0}, {"id": 96, "seek": 233667, "start": 2316.16, "end": 2336.68, "text": " Ok? And the role, you make it extend and change the colors and graphics and you call it enchanted role Now, we want to change the content, but the whole design is the same, right? You don't want to think about it? We relaxed and told him to make enchanted maze game extend maze game Now, what are these?", "tokens": [3477, 30, 400, 264, 3090, 11, 291, 652, 309, 10101, 293, 1319, 264, 4577, 293, 11837, 293, 291, 818, 309, 35213, 15587, 3090, 823, 11, 321, 528, 281, 1319, 264, 2701, 11, 457, 264, 1379, 1715, 307, 264, 912, 11, 558, 30, 509, 500, 380, 528, 281, 519, 466, 309, 30, 492, 14628, 293, 1907, 796, 281, 652, 35213, 15587, 33032, 1216, 10101, 33032, 1216, 823, 11, 437, 366, 613, 30], "avg_logprob": -0.5941840418510966, "compression_ratio": 1.6612021857923498, "no_speech_prob": 1.5497207641601562e-06, "words": [{"start": 2316.16, "end": 2316.4, "word": " Ok?", "probability": 0.0579833984375}, {"start": 2316.74, "end": 2316.94, "word": " And", "probability": 0.55322265625}, {"start": 2316.94, "end": 2317.06, "word": " the", "probability": 0.437744140625}, {"start": 2317.06, "end": 2317.22, "word": " role,", "probability": 0.35888671875}, {"start": 2317.32, "end": 2317.4, "word": " you", "probability": 0.76611328125}, {"start": 2317.4, "end": 2317.58, "word": " make", "probability": 0.2391357421875}, {"start": 2317.58, "end": 2317.68, "word": " it", "probability": 0.82666015625}, {"start": 2317.68, "end": 2318.04, "word": " extend", "probability": 0.70751953125}, {"start": 2318.04, "end": 2318.24, "word": " and", "probability": 0.3408203125}, {"start": 2318.24, "end": 2318.5, "word": " change", "probability": 0.71435546875}, {"start": 2318.5, "end": 2318.62, "word": " the", "probability": 0.4765625}, {"start": 2318.62, "end": 2318.98, "word": " colors", "probability": 0.56201171875}, {"start": 2318.98, "end": 2319.12, "word": " and", "probability": 0.82177734375}, {"start": 2319.12, "end": 2319.54, "word": " graphics", "probability": 0.65380859375}, {"start": 2319.54, "end": 2319.9, "word": " and", "probability": 0.267578125}, {"start": 2319.9, "end": 2320.0, "word": " you", "probability": 0.3525390625}, {"start": 2320.0, "end": 2320.12, "word": " call", "probability": 0.471923828125}, {"start": 2320.12, "end": 2320.3, "word": " it", "probability": 0.880859375}, {"start": 2320.3, "end": 2320.98, "word": " enchanted", "probability": 0.7161865234375}, {"start": 2320.98, "end": 2321.22, "word": " role", "probability": 0.8466796875}, {"start": 2321.22, "end": 2322.52, "word": " Now,", "probability": 0.681640625}, {"start": 2322.6, "end": 2322.74, "word": " we", "probability": 0.8984375}, {"start": 2322.74, "end": 2322.88, "word": " want", "probability": 0.52587890625}, {"start": 2322.88, "end": 2322.96, "word": " to", "probability": 0.96630859375}, {"start": 2322.96, "end": 2323.24, "word": " change", "probability": 0.89404296875}, {"start": 2323.24, "end": 2323.4, "word": " the", "probability": 0.78173828125}, {"start": 2323.4, "end": 2323.84, "word": " content,", "probability": 0.59765625}, {"start": 2324.18, "end": 2324.38, "word": " but", "probability": 0.8984375}, {"start": 2324.38, "end": 2324.56, "word": " the", "probability": 0.6640625}, {"start": 2324.56, "end": 2324.58, "word": " whole", "probability": 0.591796875}, {"start": 2324.58, "end": 2324.86, "word": " design", "probability": 0.8515625}, {"start": 2324.86, "end": 2325.46, "word": " is", "probability": 0.64794921875}, {"start": 2325.46, "end": 2326.28, "word": " the", "probability": 0.385498046875}, {"start": 2326.28, "end": 2326.54, "word": " same,", "probability": 0.8935546875}, {"start": 2326.8, "end": 2326.94, "word": " right?", "probability": 0.6064453125}, {"start": 2327.06, "end": 2327.1, "word": " You", "probability": 0.16064453125}, {"start": 2327.1, "end": 2327.1, "word": " don't", "probability": 0.6123046875}, {"start": 2327.1, "end": 2327.28, "word": " want", "probability": 0.3193359375}, {"start": 2327.28, "end": 2327.42, "word": " to", "probability": 0.94921875}, {"start": 2327.42, "end": 2327.64, "word": " think", "probability": 0.62109375}, {"start": 2327.64, "end": 2327.84, "word": " about", "probability": 0.85498046875}, {"start": 2327.84, "end": 2327.96, "word": " it?", "probability": 0.7998046875}, {"start": 2328.36, "end": 2328.58, "word": " We", "probability": 0.28076171875}, {"start": 2328.58, "end": 2328.84, "word": " relaxed", "probability": 0.135498046875}, {"start": 2328.84, "end": 2329.44, "word": " and", "probability": 0.388916015625}, {"start": 2329.44, "end": 2329.64, "word": " told", "probability": 0.2127685546875}, {"start": 2329.64, "end": 2329.9, "word": " him", "probability": 0.72216796875}, {"start": 2329.9, "end": 2330.0, "word": " to", "probability": 0.61474609375}, {"start": 2330.0, "end": 2330.22, "word": " make", "probability": 0.80810546875}, {"start": 2330.22, "end": 2330.9, "word": " enchanted", "probability": 0.797119140625}, {"start": 2330.9, "end": 2331.16, "word": " maze", "probability": 0.7333984375}, {"start": 2331.16, "end": 2331.36, "word": " game", "probability": 0.85400390625}, {"start": 2331.36, "end": 2332.06, "word": " extend", "probability": 0.256591796875}, {"start": 2332.06, "end": 2333.04, "word": " maze", "probability": 0.61767578125}, {"start": 2333.04, "end": 2334.52, "word": " game", "probability": 0.86962890625}, {"start": 2334.52, "end": 2336.08, "word": " Now,", "probability": 0.77490234375}, {"start": 2336.2, "end": 2336.44, "word": " what", "probability": 0.91357421875}, {"start": 2336.44, "end": 2336.5, "word": " are", "probability": 0.814453125}, {"start": 2336.5, "end": 2336.68, "word": " these?", "probability": 0.7373046875}], "temperature": 1.0}, {"id": 97, "seek": 236184, "start": 2338.64, "end": 2361.84, "text": " make room, make wall, make door, these three elements are present in the super class and they also have this thing called creatmes, I didn't overwrite creatmes, correct or not? where is creatmes? in the super class, just like the post in the social media poster, but I came here and overwrote for whom? for the make room, what happened to this make room?", "tokens": [652, 1808, 11, 652, 2929, 11, 652, 2853, 11, 613, 1045, 4959, 366, 1974, 294, 264, 1687, 1508, 293, 436, 611, 362, 341, 551, 1219, 1428, 5814, 11, 286, 994, 380, 670, 21561, 1428, 5814, 11, 3006, 420, 406, 30, 689, 307, 1428, 5814, 30, 294, 264, 1687, 1508, 11, 445, 411, 264, 2183, 294, 264, 2093, 3021, 17171, 11, 457, 286, 1361, 510, 293, 670, 7449, 1370, 337, 7101, 30, 337, 264, 652, 1808, 11, 437, 2011, 281, 341, 652, 1808, 30], "avg_logprob": -0.5729166517655054, "compression_ratio": 1.7574257425742574, "no_speech_prob": 1.0728836059570312e-06, "words": [{"start": 2338.64, "end": 2339.04, "word": " make", "probability": 0.0936279296875}, {"start": 2339.04, "end": 2339.32, "word": " room,", "probability": 0.69091796875}, {"start": 2339.46, "end": 2339.66, "word": " make", "probability": 0.916015625}, {"start": 2339.66, "end": 2340.02, "word": " wall,", "probability": 0.6015625}, {"start": 2340.2, "end": 2340.4, "word": " make", "probability": 0.92529296875}, {"start": 2340.4, "end": 2340.78, "word": " door,", "probability": 0.94921875}, {"start": 2341.56, "end": 2341.86, "word": " these", "probability": 0.43017578125}, {"start": 2341.86, "end": 2342.48, "word": " three", "probability": 0.6240234375}, {"start": 2342.48, "end": 2342.48, "word": " elements", "probability": 0.42626953125}, {"start": 2342.48, "end": 2343.7, "word": " are", "probability": 0.6455078125}, {"start": 2343.7, "end": 2343.96, "word": " present", "probability": 0.244140625}, {"start": 2343.96, "end": 2344.9, "word": " in", "probability": 0.459716796875}, {"start": 2344.9, "end": 2345.06, "word": " the", "probability": 0.470947265625}, {"start": 2345.06, "end": 2345.26, "word": " super", "probability": 0.91748046875}, {"start": 2345.26, "end": 2345.68, "word": " class", "probability": 0.5791015625}, {"start": 2345.68, "end": 2345.86, "word": " and", "probability": 0.379150390625}, {"start": 2345.86, "end": 2346.0, "word": " they", "probability": 0.442626953125}, {"start": 2346.0, "end": 2346.26, "word": " also", "probability": 0.3740234375}, {"start": 2346.26, "end": 2346.44, "word": " have", "probability": 0.87353515625}, {"start": 2346.44, "end": 2346.62, "word": " this", "probability": 0.25732421875}, {"start": 2346.62, "end": 2346.74, "word": " thing", "probability": 0.341064453125}, {"start": 2346.74, "end": 2346.96, "word": " called", "probability": 0.779296875}, {"start": 2346.96, "end": 2347.58, "word": " creatmes,", "probability": 0.40283203125}, {"start": 2348.24, "end": 2348.98, "word": " I", "probability": 0.2802734375}, {"start": 2348.98, "end": 2349.12, "word": " didn't", "probability": 0.684326171875}, {"start": 2349.12, "end": 2349.9, "word": " overwrite", "probability": 0.577880859375}, {"start": 2349.9, "end": 2349.9, "word": " creatmes,", "probability": 0.6392822265625}, {"start": 2350.34, "end": 2350.7, "word": " correct", "probability": 0.236328125}, {"start": 2350.7, "end": 2350.84, "word": " or", "probability": 0.48828125}, {"start": 2350.84, "end": 2350.84, "word": " not?", "probability": 0.72900390625}, {"start": 2350.86, "end": 2351.0, "word": " where", "probability": 0.411376953125}, {"start": 2351.0, "end": 2351.28, "word": " is", "probability": 0.68359375}, {"start": 2351.28, "end": 2351.92, "word": " creatmes?", "probability": 0.741943359375}, {"start": 2352.52, "end": 2352.96, "word": " in", "probability": 0.62353515625}, {"start": 2352.96, "end": 2353.06, "word": " the", "probability": 0.66650390625}, {"start": 2353.06, "end": 2353.3, "word": " super", "probability": 0.92236328125}, {"start": 2353.3, "end": 2353.4, "word": " class,", "probability": 0.49365234375}, {"start": 2353.54, "end": 2353.7, "word": " just", "probability": 0.263671875}, {"start": 2353.7, "end": 2353.9, "word": " like", "probability": 0.9189453125}, {"start": 2353.9, "end": 2354.26, "word": " the", "probability": 0.7275390625}, {"start": 2354.26, "end": 2354.52, "word": " post", "probability": 0.580078125}, {"start": 2354.52, "end": 2355.28, "word": " in", "probability": 0.291259765625}, {"start": 2355.28, "end": 2355.42, "word": " the", "probability": 0.56884765625}, {"start": 2355.42, "end": 2355.66, "word": " social", "probability": 0.92626953125}, {"start": 2355.66, "end": 2355.9, "word": " media", "probability": 0.8857421875}, {"start": 2355.9, "end": 2356.3, "word": " poster,", "probability": 0.70947265625}, {"start": 2356.64, "end": 2357.06, "word": " but", "probability": 0.8505859375}, {"start": 2357.06, "end": 2357.22, "word": " I", "probability": 0.6650390625}, {"start": 2357.22, "end": 2357.42, "word": " came", "probability": 0.6630859375}, {"start": 2357.42, "end": 2357.74, "word": " here", "probability": 0.8447265625}, {"start": 2357.74, "end": 2357.92, "word": " and", "probability": 0.7275390625}, {"start": 2357.92, "end": 2358.62, "word": " overwrote", "probability": 0.7625325520833334}, {"start": 2358.62, "end": 2358.8, "word": " for", "probability": 0.260009765625}, {"start": 2358.8, "end": 2358.88, "word": " whom?", "probability": 0.6123046875}, {"start": 2359.48, "end": 2359.68, "word": " for", "probability": 0.8193359375}, {"start": 2359.68, "end": 2359.76, "word": " the", "probability": 0.515625}, {"start": 2359.76, "end": 2359.92, "word": " make", "probability": 0.90966796875}, {"start": 2359.92, "end": 2360.12, "word": " room,", "probability": 0.92236328125}, {"start": 2360.46, "end": 2360.72, "word": " what", "probability": 0.630859375}, {"start": 2360.72, "end": 2360.92, "word": " happened", "probability": 0.42578125}, {"start": 2360.92, "end": 2361.06, "word": " to", "probability": 0.60888671875}, {"start": 2361.06, "end": 2361.42, "word": " this", "probability": 0.235107421875}, {"start": 2361.42, "end": 2361.64, "word": " make", "probability": 0.91064453125}, {"start": 2361.64, "end": 2361.84, "word": " room?", "probability": 0.94677734375}], "temperature": 1.0}, {"id": 98, "seek": 238960, "start": 2363.72, "end": 2389.6, "text": " returned to the new enchanted room and the make wall returned to the new enchanted wall and the make door returned to the new enchanted door if I created an object from an enchanted maze game I told him to create an object from an enchanted maze game", "tokens": [1533, 925, 292, 281, 264, 777, 35213, 15587, 1808, 293, 264, 652, 2929, 8752, 281, 264, 777, 35213, 15587, 2929, 293, 264, 652, 2853, 8752, 281, 264, 777, 35213, 15587, 2853, 498, 286, 2942, 364, 2657, 490, 364, 35213, 15587, 33032, 1216, 286, 1907, 796, 281, 1884, 364, 2657, 490, 364, 35213, 15587, 33032, 1216], "avg_logprob": -0.3942522220313549, "compression_ratio": 2.302752293577982, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2363.7200000000003, "end": 2364.36, "word": " returned", "probability": 0.5151570638020834}, {"start": 2364.36, "end": 2364.46, "word": " to", "probability": 0.5947265625}, {"start": 2364.46, "end": 2364.52, "word": " the", "probability": 0.365966796875}, {"start": 2364.52, "end": 2364.76, "word": " new", "probability": 0.4912109375}, {"start": 2364.76, "end": 2365.32, "word": " enchanted", "probability": 0.896240234375}, {"start": 2365.32, "end": 2365.56, "word": " room", "probability": 0.7998046875}, {"start": 2365.56, "end": 2366.7, "word": " and", "probability": 0.30859375}, {"start": 2366.7, "end": 2366.8, "word": " the", "probability": 0.52783203125}, {"start": 2366.8, "end": 2367.02, "word": " make", "probability": 0.49072265625}, {"start": 2367.02, "end": 2367.34, "word": " wall", "probability": 0.72412109375}, {"start": 2367.34, "end": 2367.88, "word": " returned", "probability": 0.7314453125}, {"start": 2367.88, "end": 2368.52, "word": " to", "probability": 0.93505859375}, {"start": 2368.52, "end": 2368.56, "word": " the", "probability": 0.82861328125}, {"start": 2368.56, "end": 2368.76, "word": " new", "probability": 0.75048828125}, {"start": 2368.76, "end": 2369.3, "word": " enchanted", "probability": 0.954345703125}, {"start": 2369.3, "end": 2369.62, "word": " wall", "probability": 0.7158203125}, {"start": 2369.62, "end": 2370.48, "word": " and", "probability": 0.76416015625}, {"start": 2370.48, "end": 2370.52, "word": " the", "probability": 0.41015625}, {"start": 2370.52, "end": 2370.68, "word": " make", "probability": 0.9482421875}, {"start": 2370.68, "end": 2370.88, "word": " door", "probability": 0.92236328125}, {"start": 2370.88, "end": 2371.22, "word": " returned", "probability": 0.82763671875}, {"start": 2371.22, "end": 2371.7, "word": " to", "probability": 0.95751953125}, {"start": 2371.7, "end": 2371.74, "word": " the", "probability": 0.9033203125}, {"start": 2371.74, "end": 2371.98, "word": " new", "probability": 0.81005859375}, {"start": 2371.98, "end": 2372.86, "word": " enchanted", "probability": 0.95849609375}, {"start": 2372.86, "end": 2374.26, "word": " door", "probability": 0.9111328125}, {"start": 2374.26, "end": 2375.78, "word": " if", "probability": 0.1375732421875}, {"start": 2375.78, "end": 2376.3, "word": " I", "probability": 0.63134765625}, {"start": 2376.3, "end": 2376.62, "word": " created", "probability": 0.3984375}, {"start": 2376.62, "end": 2376.8, "word": " an", "probability": 0.81298828125}, {"start": 2376.8, "end": 2377.22, "word": " object", "probability": 0.96728515625}, {"start": 2377.22, "end": 2378.34, "word": " from", "probability": 0.77734375}, {"start": 2378.34, "end": 2378.46, "word": " an", "probability": 0.351318359375}, {"start": 2378.46, "end": 2378.9, "word": " enchanted", "probability": 0.96142578125}, {"start": 2378.9, "end": 2379.1, "word": " maze", "probability": 0.857421875}, {"start": 2379.1, "end": 2379.4, "word": " game", "probability": 0.84375}, {"start": 2379.4, "end": 2380.86, "word": " I", "probability": 0.285888671875}, {"start": 2380.86, "end": 2381.12, "word": " told", "probability": 0.402099609375}, {"start": 2381.12, "end": 2381.28, "word": " him", "probability": 0.603515625}, {"start": 2381.28, "end": 2382.82, "word": " to", "probability": 0.56494140625}, {"start": 2382.82, "end": 2383.04, "word": " create", "probability": 0.6943359375}, {"start": 2383.04, "end": 2383.5, "word": " an", "probability": 0.83349609375}, {"start": 2383.5, "end": 2383.5, "word": " object", "probability": 0.9736328125}, {"start": 2383.5, "end": 2383.7, "word": " from", "probability": 0.85693359375}, {"start": 2383.7, "end": 2383.82, "word": " an", "probability": 0.77197265625}, {"start": 2383.82, "end": 2384.54, "word": " enchanted", "probability": 0.96240234375}, {"start": 2384.54, "end": 2387.96, "word": " maze", "probability": 0.783203125}, {"start": 2387.96, "end": 2389.6, "word": " game", "probability": 0.9033203125}], "temperature": 1.0}, {"id": 99, "seek": 241633, "start": 2393.35, "end": 2416.33, "text": " maze maze game G for example you saw a new enchanted maze game enchanted object okay so I went to G and said create maze", "tokens": [33032, 33032, 1216, 460, 337, 1365, 291, 1866, 257, 777, 35213, 15587, 33032, 1216, 35213, 15587, 2657, 1392, 370, 286, 1437, 281, 460, 293, 848, 1884, 33032], "avg_logprob": -0.7081473214285714, "compression_ratio": 1.3010752688172043, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2393.35, "end": 2394.19, "word": " maze", "probability": 0.08966064453125}, {"start": 2394.19, "end": 2395.03, "word": " maze", "probability": 0.11248779296875}, {"start": 2395.03, "end": 2395.35, "word": " game", "probability": 0.8623046875}, {"start": 2395.35, "end": 2397.91, "word": " G", "probability": 0.302734375}, {"start": 2397.91, "end": 2398.13, "word": " for", "probability": 0.06610107421875}, {"start": 2398.13, "end": 2398.79, "word": " example", "probability": 0.912109375}, {"start": 2398.79, "end": 2399.01, "word": " you", "probability": 0.05865478515625}, {"start": 2399.01, "end": 2399.27, "word": " saw", "probability": 0.70361328125}, {"start": 2399.27, "end": 2399.41, "word": " a", "probability": 0.458984375}, {"start": 2399.41, "end": 2399.71, "word": " new", "probability": 0.68994140625}, {"start": 2399.71, "end": 2401.57, "word": " enchanted", "probability": 0.930419921875}, {"start": 2401.57, "end": 2403.99, "word": " maze", "probability": 0.82958984375}, {"start": 2403.99, "end": 2406.23, "word": " game", "probability": 0.8662109375}, {"start": 2406.23, "end": 2406.65, "word": " enchanted", "probability": 0.630126953125}, {"start": 2406.65, "end": 2406.93, "word": " object", "probability": 0.974609375}, {"start": 2406.93, "end": 2407.37, "word": " okay", "probability": 0.1375732421875}, {"start": 2407.37, "end": 2409.21, "word": " so", "probability": 0.1416015625}, {"start": 2409.21, "end": 2409.39, "word": " I", "probability": 0.42041015625}, {"start": 2409.39, "end": 2409.61, "word": " went", "probability": 0.57080078125}, {"start": 2409.61, "end": 2409.73, "word": " to", "probability": 0.9248046875}, {"start": 2409.73, "end": 2410.11, "word": " G", "probability": 0.8720703125}, {"start": 2410.11, "end": 2411.37, "word": " and", "probability": 0.84912109375}, {"start": 2411.37, "end": 2411.59, "word": " said", "probability": 0.318603515625}, {"start": 2411.59, "end": 2412.45, "word": " create", "probability": 0.76611328125}, {"start": 2412.45, "end": 2416.33, "word": " maze", "probability": 0.78369140625}], "temperature": 1.0}, {"id": 100, "seek": 244437, "start": 2418.27, "end": 2444.37, "text": " Is there a create maze here? No. Where is the create maze? In the supermarket. He will come and claim what is in the supermarket. He will come and say, is this a create maze? He will come and say, make maze. What will he claim? This one? Or the subclass? No, he will not claim it through the enchanted maze game. What was made in the subclass, who stole it? The one in the superclass. So when he claims make maze, he will create the enchanted maze game.", "tokens": [1119, 456, 257, 1884, 33032, 510, 30, 883, 13, 2305, 307, 264, 1884, 33032, 30, 682, 264, 25180, 13, 634, 486, 808, 293, 3932, 437, 307, 294, 264, 25180, 13, 634, 486, 808, 293, 584, 11, 307, 341, 257, 1884, 33032, 30, 634, 486, 808, 293, 584, 11, 652, 33032, 13, 708, 486, 415, 3932, 30, 639, 472, 30, 1610, 264, 1422, 11665, 30, 883, 11, 415, 486, 406, 3932, 309, 807, 264, 35213, 15587, 33032, 1216, 13, 708, 390, 1027, 294, 264, 1422, 11665, 11, 567, 16326, 309, 30, 440, 472, 294, 264, 1687, 11665, 13, 407, 562, 415, 9441, 652, 33032, 11, 415, 486, 1884, 264, 35213, 15587, 33032, 1216, 13], "avg_logprob": -0.4509320081325999, "compression_ratio": 2.1932367149758454, "no_speech_prob": 1.1920928955078125e-07, "words": [{"start": 2418.27, "end": 2418.61, "word": " Is", "probability": 0.3720703125}, {"start": 2418.61, "end": 2418.69, "word": " there", "probability": 0.84716796875}, {"start": 2418.69, "end": 2418.89, "word": " a", "probability": 0.517578125}, {"start": 2418.89, "end": 2419.15, "word": " create", "probability": 0.100830078125}, {"start": 2419.15, "end": 2419.43, "word": " maze", "probability": 0.94189453125}, {"start": 2419.43, "end": 2419.53, "word": " here?", "probability": 0.57177734375}, {"start": 2419.97, "end": 2420.33, "word": " No.", "probability": 0.81640625}, {"start": 2420.43, "end": 2420.61, "word": " Where", "probability": 0.57080078125}, {"start": 2420.61, "end": 2420.69, "word": " is", "probability": 0.82666015625}, {"start": 2420.69, "end": 2420.73, "word": " the", "probability": 0.56103515625}, {"start": 2420.73, "end": 2420.93, "word": " create", "probability": 0.701171875}, {"start": 2420.93, "end": 2421.09, "word": " maze?", "probability": 0.92431640625}, {"start": 2421.75, "end": 2422.15, "word": " In", "probability": 0.7021484375}, {"start": 2422.15, "end": 2422.23, "word": " the", "probability": 0.7685546875}, {"start": 2422.23, "end": 2422.45, "word": " supermarket.", "probability": 0.71240234375}, {"start": 2422.57, "end": 2422.63, "word": " He", "probability": 0.11199951171875}, {"start": 2422.63, "end": 2422.81, "word": " will", "probability": 0.53125}, {"start": 2422.81, "end": 2422.81, "word": " come", "probability": 0.494384765625}, {"start": 2422.81, "end": 2422.89, "word": " and", "probability": 0.5771484375}, {"start": 2422.89, "end": 2423.07, "word": " claim", "probability": 0.615234375}, {"start": 2423.07, "end": 2423.23, "word": " what", "probability": 0.408447265625}, {"start": 2423.23, "end": 2423.25, "word": " is", "probability": 0.720703125}, {"start": 2423.25, "end": 2423.55, "word": " in", "probability": 0.5966796875}, {"start": 2423.55, "end": 2423.73, "word": " the", "probability": 0.8740234375}, {"start": 2423.73, "end": 2423.93, "word": " supermarket.", "probability": 0.91162109375}, {"start": 2424.65, "end": 2424.81, "word": " He", "probability": 0.73974609375}, {"start": 2424.81, "end": 2424.91, "word": " will", "probability": 0.8125}, {"start": 2424.91, "end": 2425.03, "word": " come", "probability": 0.56396484375}, {"start": 2425.03, "end": 2425.09, "word": " and", "probability": 0.8037109375}, {"start": 2425.09, "end": 2425.23, "word": " say,", "probability": 0.5009765625}, {"start": 2425.35, "end": 2425.47, "word": " is", "probability": 0.374267578125}, {"start": 2425.47, "end": 2425.57, "word": " this", "probability": 0.7431640625}, {"start": 2425.57, "end": 2425.57, "word": " a", "probability": 0.54052734375}, {"start": 2425.57, "end": 2425.83, "word": " create", "probability": 0.837890625}, {"start": 2425.83, "end": 2426.13, "word": " maze?", "probability": 0.93798828125}, {"start": 2426.19, "end": 2426.31, "word": " He", "probability": 0.658203125}, {"start": 2426.31, "end": 2426.37, "word": " will", "probability": 0.85205078125}, {"start": 2426.37, "end": 2426.43, "word": " come", "probability": 0.7548828125}, {"start": 2426.43, "end": 2426.51, "word": " and", "probability": 0.9013671875}, {"start": 2426.51, "end": 2426.59, "word": " say,", "probability": 0.908203125}, {"start": 2426.69, "end": 2426.87, "word": " make", "probability": 0.8427734375}, {"start": 2426.87, "end": 2427.19, "word": " maze.", "probability": 0.75732421875}, {"start": 2427.77, "end": 2428.03, "word": " What", "probability": 0.76123046875}, {"start": 2428.03, "end": 2428.11, "word": " will", "probability": 0.720703125}, {"start": 2428.11, "end": 2428.19, "word": " he", "probability": 0.91748046875}, {"start": 2428.19, "end": 2428.43, "word": " claim?", "probability": 0.97314453125}, {"start": 2428.81, "end": 2429.13, "word": " This", "probability": 0.66357421875}, {"start": 2429.13, "end": 2429.33, "word": " one?", "probability": 0.44677734375}, {"start": 2430.07, "end": 2430.47, "word": " Or", "probability": 0.82958984375}, {"start": 2430.47, "end": 2431.47, "word": " the", "probability": 0.44384765625}, {"start": 2431.47, "end": 2432.17, "word": " subclass?", "probability": 0.510498046875}, {"start": 2432.21, "end": 2432.47, "word": " No,", "probability": 0.83447265625}, {"start": 2432.53, "end": 2432.71, "word": " he", "probability": 0.4296875}, {"start": 2432.71, "end": 2432.71, "word": " will", "probability": 0.615234375}, {"start": 2432.71, "end": 2432.71, "word": " not", "probability": 0.6416015625}, {"start": 2432.71, "end": 2433.11, "word": " claim", "probability": 0.96337890625}, {"start": 2433.11, "end": 2433.31, "word": " it", "probability": 0.302001953125}, {"start": 2433.31, "end": 2433.53, "word": " through", "probability": 0.50732421875}, {"start": 2433.53, "end": 2433.65, "word": " the", "probability": 0.6728515625}, {"start": 2433.65, "end": 2434.13, "word": " enchanted", "probability": 0.906982421875}, {"start": 2434.13, "end": 2434.33, "word": " maze", "probability": 0.9345703125}, {"start": 2434.33, "end": 2434.65, "word": " game.", "probability": 0.8603515625}, {"start": 2435.11, "end": 2435.51, "word": " What", "probability": 0.51123046875}, {"start": 2435.51, "end": 2435.59, "word": " was", "probability": 0.265869140625}, {"start": 2435.59, "end": 2435.81, "word": " made", "probability": 0.38623046875}, {"start": 2435.81, "end": 2435.95, "word": " in", "probability": 0.923828125}, {"start": 2435.95, "end": 2436.05, "word": " the", "probability": 0.89599609375}, {"start": 2436.05, "end": 2436.59, "word": " subclass,", "probability": 0.9423828125}, {"start": 2436.69, "end": 2436.77, "word": " who", "probability": 0.320068359375}, {"start": 2436.77, "end": 2436.87, "word": " stole", "probability": 0.12188720703125}, {"start": 2436.87, "end": 2437.27, "word": " it?", "probability": 0.8486328125}, {"start": 2438.15, "end": 2438.55, "word": " The", "probability": 0.375732421875}, {"start": 2438.55, "end": 2438.55, "word": " one", "probability": 0.572265625}, {"start": 2438.55, "end": 2438.61, "word": " in", "probability": 0.8701171875}, {"start": 2438.61, "end": 2438.71, "word": " the", "probability": 0.91455078125}, {"start": 2438.71, "end": 2439.29, "word": " superclass.", "probability": 0.82666015625}, {"start": 2439.71, "end": 2439.91, "word": " So", "probability": 0.30859375}, {"start": 2439.91, "end": 2440.11, "word": " when", "probability": 0.54736328125}, {"start": 2440.11, "end": 2440.25, "word": " he", "probability": 0.60791015625}, {"start": 2440.25, "end": 2440.67, "word": " claims", "probability": 0.5244140625}, {"start": 2440.67, "end": 2440.99, "word": " make", "probability": 0.346923828125}, {"start": 2440.99, "end": 2441.45, "word": " maze,", "probability": 0.8994140625}, {"start": 2441.57, "end": 2442.85, "word": " he", "probability": 0.822265625}, {"start": 2442.85, "end": 2442.91, "word": " will", "probability": 0.6845703125}, {"start": 2442.91, "end": 2443.09, "word": " create", "probability": 0.69384765625}, {"start": 2443.09, "end": 2443.47, "word": " the", "probability": 0.74658203125}, {"start": 2443.47, "end": 2443.91, "word": " enchanted", "probability": 0.97216796875}, {"start": 2443.91, "end": 2444.11, "word": " maze", "probability": 0.89697265625}, {"start": 2444.11, "end": 2444.37, "word": " game.", "probability": 0.84228515625}], "temperature": 1.0}, {"id": 101, "seek": 247101, "start": 2445.19, "end": 2471.01, "text": " When it gets used to the Macroom, it will create the module in the subclass. Macdoor will create the ... So you see how the process of creating by itself separated them into methods by itself, which returns new. Why? These can be overwritten and changed. But this design needs what? It needs one. Imagine that he comes to Christmas and asks you how to wear all the clothes like Christmas. Okay, what does he do?", "tokens": [1133, 309, 2170, 1143, 281, 264, 5707, 2861, 11, 309, 486, 1884, 264, 10088, 294, 264, 1422, 11665, 13, 5707, 10441, 486, 1884, 264, 1097, 407, 291, 536, 577, 264, 1399, 295, 4084, 538, 2564, 12005, 552, 666, 7150, 538, 2564, 11, 597, 11247, 777, 13, 1545, 30, 1981, 393, 312, 670, 26859, 293, 3105, 13, 583, 341, 1715, 2203, 437, 30, 467, 2203, 472, 13, 11739, 300, 415, 1487, 281, 5272, 293, 8962, 291, 577, 281, 3728, 439, 264, 5534, 411, 5272, 13, 1033, 11, 437, 775, 415, 360, 30], "avg_logprob": -0.6953124825073325, "compression_ratio": 1.615686274509804, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 2445.19, "end": 2445.45, "word": " When", "probability": 0.54248046875}, {"start": 2445.45, "end": 2445.53, "word": " it", "probability": 0.355712890625}, {"start": 2445.53, "end": 2445.69, "word": " gets", "probability": 0.061859130859375}, {"start": 2445.69, "end": 2445.77, "word": " used", "probability": 0.6904296875}, {"start": 2445.77, "end": 2445.85, "word": " to", "probability": 0.86669921875}, {"start": 2445.85, "end": 2445.91, "word": " the", "probability": 0.400634765625}, {"start": 2445.91, "end": 2446.45, "word": " Macroom,", "probability": 0.285888671875}, {"start": 2446.89, "end": 2447.11, "word": " it", "probability": 0.7900390625}, {"start": 2447.11, "end": 2447.11, "word": " will", "probability": 0.40625}, {"start": 2447.11, "end": 2447.29, "word": " create", "probability": 0.3271484375}, {"start": 2447.29, "end": 2447.51, "word": " the", "probability": 0.505859375}, {"start": 2447.51, "end": 2447.87, "word": " module", "probability": 0.276611328125}, {"start": 2447.87, "end": 2448.05, "word": " in", "probability": 0.66015625}, {"start": 2448.05, "end": 2448.09, "word": " the", "probability": 0.76123046875}, {"start": 2448.09, "end": 2448.59, "word": " subclass.", "probability": 0.80029296875}, {"start": 2448.99, "end": 2449.55, "word": " Macdoor", "probability": 0.29827880859375}, {"start": 2449.55, "end": 2449.73, "word": " will", "probability": 0.73828125}, {"start": 2449.73, "end": 2449.91, "word": " create", "probability": 0.74462890625}, {"start": 2449.91, "end": 2450.13, "word": " the", "probability": 0.6875}, {"start": 2450.13, "end": 2450.37, "word": " ...", "probability": 0.1131591796875}, {"start": 2450.37, "end": 2451.19, "word": " So", "probability": 0.56640625}, {"start": 2451.19, "end": 2451.45, "word": " you", "probability": 0.388916015625}, {"start": 2451.45, "end": 2451.45, "word": " see", "probability": 0.47265625}, {"start": 2451.45, "end": 2451.73, "word": " how", "probability": 0.80908203125}, {"start": 2451.73, "end": 2451.89, "word": " the", "probability": 0.65380859375}, {"start": 2451.89, "end": 2452.19, "word": " process", "probability": 0.476318359375}, {"start": 2452.19, "end": 2452.39, "word": " of", "probability": 0.9453125}, {"start": 2452.39, "end": 2452.77, "word": " creating", "probability": 0.38232421875}, {"start": 2452.77, "end": 2453.01, "word": " by", "probability": 0.177734375}, {"start": 2453.01, "end": 2453.31, "word": " itself", "probability": 0.80908203125}, {"start": 2453.31, "end": 2453.85, "word": " separated", "probability": 0.51220703125}, {"start": 2453.85, "end": 2454.09, "word": " them", "probability": 0.783203125}, {"start": 2454.09, "end": 2454.97, "word": " into", "probability": 0.54833984375}, {"start": 2454.97, "end": 2455.41, "word": " methods", "probability": 0.69873046875}, {"start": 2455.41, "end": 2455.65, "word": " by", "probability": 0.405029296875}, {"start": 2455.65, "end": 2455.93, "word": " itself,", "probability": 0.51025390625}, {"start": 2456.25, "end": 2456.75, "word": " which", "probability": 0.78466796875}, {"start": 2456.75, "end": 2457.15, "word": " returns", "probability": 0.231689453125}, {"start": 2457.15, "end": 2457.47, "word": " new.", "probability": 0.222900390625}, {"start": 2458.45, "end": 2458.87, "word": " Why?", "probability": 0.252197265625}, {"start": 2459.11, "end": 2459.33, "word": " These", "probability": 0.5322265625}, {"start": 2459.33, "end": 2459.51, "word": " can", "probability": 0.60888671875}, {"start": 2459.51, "end": 2459.91, "word": " be", "probability": 0.56298828125}, {"start": 2459.91, "end": 2460.33, "word": " overwritten", "probability": 0.4263916015625}, {"start": 2460.33, "end": 2460.41, "word": " and", "probability": 0.845703125}, {"start": 2460.41, "end": 2460.71, "word": " changed.", "probability": 0.78662109375}, {"start": 2461.23, "end": 2461.65, "word": " But", "probability": 0.9140625}, {"start": 2461.65, "end": 2461.93, "word": " this", "probability": 0.63232421875}, {"start": 2461.93, "end": 2462.25, "word": " design", "probability": 0.87744140625}, {"start": 2462.25, "end": 2462.53, "word": " needs", "probability": 0.31640625}, {"start": 2462.53, "end": 2462.93, "word": " what?", "probability": 0.5439453125}, {"start": 2463.83, "end": 2463.95, "word": " It", "probability": 0.671875}, {"start": 2463.95, "end": 2464.05, "word": " needs", "probability": 0.85986328125}, {"start": 2464.05, "end": 2464.45, "word": " one.", "probability": 0.52587890625}, {"start": 2465.03, "end": 2465.51, "word": " Imagine", "probability": 0.09552001953125}, {"start": 2465.51, "end": 2465.69, "word": " that", "probability": 0.2205810546875}, {"start": 2465.69, "end": 2465.69, "word": " he", "probability": 0.461181640625}, {"start": 2465.69, "end": 2466.13, "word": " comes", "probability": 0.625}, {"start": 2466.13, "end": 2466.25, "word": " to", "probability": 0.465087890625}, {"start": 2466.25, "end": 2466.55, "word": " Christmas", "probability": 0.806640625}, {"start": 2466.55, "end": 2466.69, "word": " and", "probability": 0.65380859375}, {"start": 2466.69, "end": 2466.83, "word": " asks", "probability": 0.34423828125}, {"start": 2466.83, "end": 2467.19, "word": " you", "probability": 0.8017578125}, {"start": 2467.19, "end": 2467.45, "word": " how", "probability": 0.65673828125}, {"start": 2467.45, "end": 2467.61, "word": " to", "probability": 0.6953125}, {"start": 2467.61, "end": 2467.81, "word": " wear", "probability": 0.296875}, {"start": 2467.81, "end": 2468.15, "word": " all", "probability": 0.6689453125}, {"start": 2468.15, "end": 2468.35, "word": " the", "probability": 0.60595703125}, {"start": 2468.35, "end": 2468.59, "word": " clothes", "probability": 0.1607666015625}, {"start": 2468.59, "end": 2469.01, "word": " like", "probability": 0.2266845703125}, {"start": 2469.01, "end": 2469.47, "word": " Christmas.", "probability": 0.67236328125}, {"start": 2470.15, "end": 2470.49, "word": " Okay,", "probability": 0.2822265625}, {"start": 2470.55, "end": 2470.73, "word": " what", "probability": 0.79931640625}, {"start": 2470.73, "end": 2470.73, "word": " does", "probability": 0.59716796875}, {"start": 2470.73, "end": 2471.01, "word": " he", "probability": 0.890625}, {"start": 2471.01, "end": 2471.01, "word": " do?", "probability": 0.55419921875}], "temperature": 1.0}, {"id": 102, "seek": 249980, "start": 2472.22, "end": 2499.8, "text": " Then I go and create an extent for this class And I create a new one for the new design that he made And the basic design that is in the main class that has 100, 200, 300 rooms remains as it is Because these are also the methods that I call factory methods Right, these are not abstract What is different from the previous example? These had code, but I made them override This one was plain, and I made it implementation", "tokens": [1396, 286, 352, 293, 1884, 364, 8396, 337, 341, 1508, 400, 286, 1884, 257, 777, 472, 337, 264, 777, 1715, 300, 415, 1027, 400, 264, 3875, 1715, 300, 307, 294, 264, 2135, 596, 296, 82, 300, 575, 2319, 11, 2331, 11, 6641, 9396, 7023, 382, 309, 307, 1436, 613, 366, 611, 264, 7150, 300, 286, 818, 9265, 7150, 1779, 11, 613, 366, 406, 12649, 708, 307, 819, 490, 264, 3894, 1365, 30, 1981, 632, 3089, 11, 457, 286, 1027, 552, 42321, 639, 472, 390, 11121, 11, 293, 286, 1027, 309, 11420], "avg_logprob": -0.6518342242292736, "compression_ratio": 1.7224489795918367, "no_speech_prob": 2.205371856689453e-06, "words": [{"start": 2472.22, "end": 2472.52, "word": " Then", "probability": 0.0806884765625}, {"start": 2472.52, "end": 2472.72, "word": " I", "probability": 0.6357421875}, {"start": 2472.72, "end": 2472.72, "word": " go", "probability": 0.186767578125}, {"start": 2472.72, "end": 2472.88, "word": " and", "probability": 0.4208984375}, {"start": 2472.88, "end": 2472.96, "word": " create", "probability": 0.353759765625}, {"start": 2472.96, "end": 2473.06, "word": " an", "probability": 0.408203125}, {"start": 2473.06, "end": 2473.48, "word": " extent", "probability": 0.318603515625}, {"start": 2473.48, "end": 2474.22, "word": " for", "probability": 0.515625}, {"start": 2474.22, "end": 2474.3, "word": " this", "probability": 0.6826171875}, {"start": 2474.3, "end": 2474.62, "word": " class", "probability": 0.9248046875}, {"start": 2474.62, "end": 2475.62, "word": " And", "probability": 0.33740234375}, {"start": 2475.62, "end": 2475.7, "word": " I", "probability": 0.5087890625}, {"start": 2475.7, "end": 2476.32, "word": " create", "probability": 0.79541015625}, {"start": 2476.32, "end": 2476.58, "word": " a", "probability": 0.68408203125}, {"start": 2476.58, "end": 2476.88, "word": " new", "probability": 0.849609375}, {"start": 2476.88, "end": 2476.98, "word": " one", "probability": 0.3251953125}, {"start": 2476.98, "end": 2477.26, "word": " for", "probability": 0.8125}, {"start": 2477.26, "end": 2477.38, "word": " the", "probability": 0.67724609375}, {"start": 2477.38, "end": 2477.56, "word": " new", "probability": 0.48193359375}, {"start": 2477.56, "end": 2477.94, "word": " design", "probability": 0.5478515625}, {"start": 2477.94, "end": 2478.38, "word": " that", "probability": 0.3759765625}, {"start": 2478.38, "end": 2478.48, "word": " he", "probability": 0.202880859375}, {"start": 2478.48, "end": 2478.72, "word": " made", "probability": 0.257080078125}, {"start": 2478.72, "end": 2479.64, "word": " And", "probability": 0.59228515625}, {"start": 2479.64, "end": 2479.74, "word": " the", "probability": 0.67919921875}, {"start": 2479.74, "end": 2480.32, "word": " basic", "probability": 0.425048828125}, {"start": 2480.32, "end": 2480.56, "word": " design", "probability": 0.81103515625}, {"start": 2480.56, "end": 2480.76, "word": " that", "probability": 0.50634765625}, {"start": 2480.76, "end": 2480.9, "word": " is", "probability": 0.472412109375}, {"start": 2480.9, "end": 2481.24, "word": " in", "probability": 0.259765625}, {"start": 2481.24, "end": 2481.38, "word": " the", "probability": 0.46728515625}, {"start": 2481.38, "end": 2481.8, "word": " main", "probability": 0.426025390625}, {"start": 2481.8, "end": 2481.86, "word": " class", "probability": 0.4946492513020833}, {"start": 2481.86, "end": 2482.0, "word": " that", "probability": 0.259765625}, {"start": 2482.0, "end": 2482.18, "word": " has", "probability": 0.67626953125}, {"start": 2482.18, "end": 2482.42, "word": " 100,", "probability": 0.432861328125}, {"start": 2482.48, "end": 2482.78, "word": " 200,", "probability": 0.79931640625}, {"start": 2482.88, "end": 2483.18, "word": " 300", "probability": 0.65576171875}, {"start": 2483.18, "end": 2483.54, "word": " rooms", "probability": 0.8076171875}, {"start": 2483.54, "end": 2484.48, "word": " remains", "probability": 0.0992431640625}, {"start": 2484.48, "end": 2485.32, "word": " as", "probability": 0.36767578125}, {"start": 2485.32, "end": 2485.54, "word": " it", "probability": 0.82763671875}, {"start": 2485.54, "end": 2485.94, "word": " is", "probability": 0.845703125}, {"start": 2485.94, "end": 2486.46, "word": " Because", "probability": 0.5234375}, {"start": 2486.46, "end": 2486.76, "word": " these", "probability": 0.77001953125}, {"start": 2486.76, "end": 2486.88, "word": " are", "probability": 0.52734375}, {"start": 2486.88, "end": 2487.04, "word": " also", "probability": 0.433837890625}, {"start": 2487.04, "end": 2487.14, "word": " the", "probability": 0.55419921875}, {"start": 2487.14, "end": 2487.46, "word": " methods", "probability": 0.873046875}, {"start": 2487.46, "end": 2487.6, "word": " that", "probability": 0.744140625}, {"start": 2487.6, "end": 2487.86, "word": " I", "probability": 0.8974609375}, {"start": 2487.86, "end": 2488.18, "word": " call", "probability": 0.80029296875}, {"start": 2488.18, "end": 2488.74, "word": " factory", "probability": 0.1912841796875}, {"start": 2488.74, "end": 2489.3, "word": " methods", "probability": 0.88525390625}, {"start": 2489.3, "end": 2490.2, "word": " Right,", "probability": 0.128173828125}, {"start": 2490.28, "end": 2490.42, "word": " these", "probability": 0.6591796875}, {"start": 2490.42, "end": 2490.5, "word": " are", "probability": 0.78369140625}, {"start": 2490.5, "end": 2490.66, "word": " not", "probability": 0.927734375}, {"start": 2490.66, "end": 2491.1, "word": " abstract", "probability": 0.8837890625}, {"start": 2491.1, "end": 2492.1, "word": " What", "probability": 0.2484130859375}, {"start": 2492.1, "end": 2492.18, "word": " is", "probability": 0.488525390625}, {"start": 2492.18, "end": 2492.46, "word": " different", "probability": 0.8203125}, {"start": 2492.46, "end": 2492.62, "word": " from", "probability": 0.630859375}, {"start": 2492.62, "end": 2493.04, "word": " the", "probability": 0.8671875}, {"start": 2493.04, "end": 2493.28, "word": " previous", "probability": 0.6474609375}, {"start": 2493.28, "end": 2493.28, "word": " example?", "probability": 0.93798828125}, {"start": 2493.88, "end": 2494.2, "word": " These", "probability": 0.29443359375}, {"start": 2494.2, "end": 2494.56, "word": " had", "probability": 0.401611328125}, {"start": 2494.56, "end": 2495.24, "word": " code,", "probability": 0.8701171875}, {"start": 2495.46, "end": 2495.68, "word": " but", "probability": 0.841796875}, {"start": 2495.68, "end": 2495.86, "word": " I", "probability": 0.9775390625}, {"start": 2495.86, "end": 2496.04, "word": " made", "probability": 0.59228515625}, {"start": 2496.04, "end": 2496.2, "word": " them", "probability": 0.6123046875}, {"start": 2496.2, "end": 2496.52, "word": " override", "probability": 0.71435546875}, {"start": 2496.52, "end": 2496.78, "word": " This", "probability": 0.2476806640625}, {"start": 2496.78, "end": 2497.04, "word": " one", "probability": 0.416748046875}, {"start": 2497.04, "end": 2497.24, "word": " was", "probability": 0.810546875}, {"start": 2497.24, "end": 2497.56, "word": " plain,", "probability": 0.4306640625}, {"start": 2498.08, "end": 2498.32, "word": " and", "probability": 0.71337890625}, {"start": 2498.32, "end": 2498.4, "word": " I", "probability": 0.95263671875}, {"start": 2498.4, "end": 2498.54, "word": " made", "probability": 0.8203125}, {"start": 2498.54, "end": 2498.88, "word": " it", "probability": 0.5615234375}, {"start": 2498.88, "end": 2499.8, "word": " implementation", "probability": 0.59521484375}], "temperature": 1.0}, {"id": 103, "seek": 252436, "start": 2500.94, "end": 2524.36, "text": "But the difference now is that the same principle, the code is all shared and there are parts that need to differ, need to be extendable, need to be changed every now and then. So I put the code in the superclass and the different parts, I separate them in a method so that the subclasses can change them by doing override for this method.", "tokens": [7835, 264, 2649, 586, 307, 300, 264, 912, 8665, 11, 264, 3089, 307, 439, 5507, 293, 456, 366, 3166, 300, 643, 281, 743, 11, 643, 281, 312, 10101, 712, 11, 643, 281, 312, 3105, 633, 586, 293, 550, 13, 407, 286, 829, 264, 3089, 294, 264, 1687, 11665, 293, 264, 819, 3166, 11, 286, 4994, 552, 294, 257, 3170, 370, 300, 264, 1422, 11665, 279, 393, 1319, 552, 538, 884, 42321, 337, 341, 3170, 13], "avg_logprob": -0.4987664716808419, "compression_ratio": 1.7842105263157895, "no_speech_prob": 1.6689300537109375e-06, "words": [{"start": 2500.94, "end": 2501.24, "word": "But", "probability": 0.37255859375}, {"start": 2501.24, "end": 2501.4, "word": " the", "probability": 0.662109375}, {"start": 2501.4, "end": 2501.64, "word": " difference", "probability": 0.513671875}, {"start": 2501.64, "end": 2501.94, "word": " now", "probability": 0.60791015625}, {"start": 2501.94, "end": 2502.22, "word": " is", "probability": 0.8759765625}, {"start": 2502.22, "end": 2502.52, "word": " that", "probability": 0.65478515625}, {"start": 2502.52, "end": 2503.72, "word": " the", "probability": 0.35888671875}, {"start": 2503.72, "end": 2503.9, "word": " same", "probability": 0.460693359375}, {"start": 2503.9, "end": 2504.38, "word": " principle,", "probability": 0.62890625}, {"start": 2504.66, "end": 2504.86, "word": " the", "probability": 0.42724609375}, {"start": 2504.86, "end": 2505.16, "word": " code", "probability": 0.74853515625}, {"start": 2505.16, "end": 2505.44, "word": " is", "probability": 0.6328125}, {"start": 2505.44, "end": 2505.96, "word": " all", "probability": 0.60302734375}, {"start": 2505.96, "end": 2506.62, "word": " shared", "probability": 0.156982421875}, {"start": 2506.62, "end": 2506.86, "word": " and", "probability": 0.50341796875}, {"start": 2506.86, "end": 2507.0, "word": " there", "probability": 0.457763671875}, {"start": 2507.0, "end": 2507.08, "word": " are", "probability": 0.8896484375}, {"start": 2507.08, "end": 2507.68, "word": " parts", "probability": 0.6591796875}, {"start": 2507.68, "end": 2508.66, "word": " that", "probability": 0.73291015625}, {"start": 2508.66, "end": 2508.96, "word": " need", "probability": 0.286865234375}, {"start": 2508.96, "end": 2509.1, "word": " to", "probability": 0.89111328125}, {"start": 2509.1, "end": 2509.46, "word": " differ,", "probability": 0.12841796875}, {"start": 2509.94, "end": 2510.42, "word": " need", "probability": 0.51123046875}, {"start": 2510.42, "end": 2510.54, "word": " to", "probability": 0.92431640625}, {"start": 2510.54, "end": 2510.58, "word": " be", "probability": 0.69677734375}, {"start": 2510.58, "end": 2511.24, "word": " extendable,", "probability": 0.824462890625}, {"start": 2511.38, "end": 2511.52, "word": " need", "probability": 0.474609375}, {"start": 2511.52, "end": 2511.74, "word": " to", "probability": 0.96484375}, {"start": 2511.74, "end": 2512.06, "word": " be", "probability": 0.73486328125}, {"start": 2512.06, "end": 2512.06, "word": " changed", "probability": 0.7705078125}, {"start": 2512.06, "end": 2512.32, "word": " every", "probability": 0.2369384765625}, {"start": 2512.32, "end": 2512.56, "word": " now", "probability": 0.486572265625}, {"start": 2512.56, "end": 2512.68, "word": " and", "probability": 0.93603515625}, {"start": 2512.68, "end": 2512.68, "word": " then.", "probability": 0.8193359375}, {"start": 2513.18, "end": 2513.48, "word": " So", "probability": 0.279052734375}, {"start": 2513.48, "end": 2515.46, "word": " I", "probability": 0.8408203125}, {"start": 2515.46, "end": 2515.7, "word": " put", "probability": 0.712890625}, {"start": 2515.7, "end": 2515.84, "word": " the", "probability": 0.8779296875}, {"start": 2515.84, "end": 2516.12, "word": " code", "probability": 0.91650390625}, {"start": 2516.12, "end": 2516.24, "word": " in", "probability": 0.8779296875}, {"start": 2516.24, "end": 2516.34, "word": " the", "probability": 0.822265625}, {"start": 2516.34, "end": 2516.84, "word": " superclass", "probability": 0.86962890625}, {"start": 2516.84, "end": 2517.02, "word": " and", "probability": 0.7861328125}, {"start": 2517.02, "end": 2517.08, "word": " the", "probability": 0.51953125}, {"start": 2517.08, "end": 2517.9, "word": " different", "probability": 0.66162109375}, {"start": 2517.9, "end": 2518.08, "word": " parts,", "probability": 0.85791015625}, {"start": 2519.18, "end": 2519.34, "word": " I", "probability": 0.80908203125}, {"start": 2519.34, "end": 2519.58, "word": " separate", "probability": 0.77685546875}, {"start": 2519.58, "end": 2519.72, "word": " them", "probability": 0.70849609375}, {"start": 2519.72, "end": 2519.8, "word": " in", "probability": 0.72705078125}, {"start": 2519.8, "end": 2519.86, "word": " a", "probability": 0.31494140625}, {"start": 2519.86, "end": 2520.1, "word": " method", "probability": 0.95703125}, {"start": 2520.1, "end": 2520.3, "word": " so", "probability": 0.62744140625}, {"start": 2520.3, "end": 2520.48, "word": " that", "probability": 0.767578125}, {"start": 2520.48, "end": 2520.58, "word": " the", "probability": 0.79638671875}, {"start": 2520.58, "end": 2521.92, "word": " subclasses", "probability": 0.8499348958333334}, {"start": 2521.92, "end": 2522.12, "word": " can", "probability": 0.81201171875}, {"start": 2522.12, "end": 2522.5, "word": " change", "probability": 0.6806640625}, {"start": 2522.5, "end": 2522.76, "word": " them", "probability": 0.57861328125}, {"start": 2522.76, "end": 2523.12, "word": " by", "probability": 0.68603515625}, {"start": 2523.12, "end": 2523.46, "word": " doing", "probability": 0.43115234375}, {"start": 2523.46, "end": 2523.88, "word": " override", "probability": 0.736328125}, {"start": 2523.88, "end": 2524.08, "word": " for", "probability": 0.33203125}, {"start": 2524.08, "end": 2524.12, "word": " this", "probability": 0.62841796875}, {"start": 2524.12, "end": 2524.36, "word": " method.", "probability": 0.94873046875}], "temperature": 1.0}, {"id": 104, "seek": 255286, "start": 2525.7, "end": 2552.86, "text": " The idea is clear, right guys? That's how Codec Nano is extendable. It changes parts without changing the structure and design. By using the factory method pattern. Yes, of course, it will take the default. Okay? So, if I didn't override the macro, it will still use the macro in the parent. If I override it, it will use this one.", "tokens": [440, 1558, 307, 1850, 11, 558, 1074, 30, 663, 311, 577, 15549, 66, 43511, 307, 10101, 712, 13, 467, 2962, 3166, 1553, 4473, 264, 3877, 293, 1715, 13, 3146, 1228, 264, 9265, 3170, 5102, 13, 1079, 11, 295, 1164, 11, 309, 486, 747, 264, 7576, 13, 1033, 30, 407, 11, 498, 286, 994, 380, 42321, 264, 18887, 11, 309, 486, 920, 764, 264, 18887, 294, 264, 2596, 13, 759, 286, 42321, 309, 11, 309, 486, 764, 341, 472, 13], "avg_logprob": -0.6078125216066838, "compression_ratio": 1.544186046511628, "no_speech_prob": 2.5033950805664062e-06, "words": [{"start": 2525.7, "end": 2526.18, "word": " The", "probability": 0.1439208984375}, {"start": 2526.18, "end": 2526.38, "word": " idea", "probability": 0.6591796875}, {"start": 2526.38, "end": 2526.44, "word": " is", "probability": 0.387939453125}, {"start": 2526.44, "end": 2526.44, "word": " clear,", "probability": 0.435546875}, {"start": 2526.68, "end": 2526.68, "word": " right", "probability": 0.255615234375}, {"start": 2526.68, "end": 2527.08, "word": " guys?", "probability": 0.245849609375}, {"start": 2527.64, "end": 2527.98, "word": " That's", "probability": 0.36859130859375}, {"start": 2527.98, "end": 2528.02, "word": " how", "probability": 0.73193359375}, {"start": 2528.02, "end": 2528.66, "word": " Codec", "probability": 0.388671875}, {"start": 2528.66, "end": 2528.92, "word": " Nano", "probability": 0.4306640625}, {"start": 2528.92, "end": 2529.02, "word": " is", "probability": 0.44140625}, {"start": 2529.02, "end": 2529.56, "word": " extendable.", "probability": 0.818603515625}, {"start": 2529.64, "end": 2529.68, "word": " It", "probability": 0.8115234375}, {"start": 2529.68, "end": 2530.0, "word": " changes", "probability": 0.56494140625}, {"start": 2530.0, "end": 2530.54, "word": " parts", "probability": 0.35009765625}, {"start": 2530.54, "end": 2530.8, "word": " without", "probability": 0.80322265625}, {"start": 2530.8, "end": 2531.32, "word": " changing", "probability": 0.81640625}, {"start": 2531.32, "end": 2531.92, "word": " the", "probability": 0.38525390625}, {"start": 2531.92, "end": 2532.28, "word": " structure", "probability": 0.83447265625}, {"start": 2532.28, "end": 2532.42, "word": " and", "probability": 0.6181640625}, {"start": 2532.42, "end": 2532.78, "word": " design.", "probability": 0.78955078125}, {"start": 2533.68, "end": 2534.06, "word": " By", "probability": 0.438232421875}, {"start": 2534.06, "end": 2534.6, "word": " using", "probability": 0.8447265625}, {"start": 2534.6, "end": 2535.42, "word": " the", "probability": 0.66064453125}, {"start": 2535.42, "end": 2535.76, "word": " factory", "probability": 0.7119140625}, {"start": 2535.76, "end": 2536.36, "word": " method", "probability": 0.9013671875}, {"start": 2536.36, "end": 2537.48, "word": " pattern.", "probability": 0.476318359375}, {"start": 2539.44, "end": 2539.96, "word": " Yes,", "probability": 0.2998046875}, {"start": 2540.14, "end": 2540.14, "word": " of", "probability": 0.65185546875}, {"start": 2540.14, "end": 2543.14, "word": " course,", "probability": 0.95751953125}, {"start": 2543.2, "end": 2543.28, "word": " it", "probability": 0.82666015625}, {"start": 2543.28, "end": 2543.32, "word": " will", "probability": 0.50048828125}, {"start": 2543.32, "end": 2543.48, "word": " take", "probability": 0.54833984375}, {"start": 2543.48, "end": 2543.58, "word": " the", "probability": 0.82373046875}, {"start": 2543.58, "end": 2543.78, "word": " default.", "probability": 0.96337890625}, {"start": 2544.04, "end": 2544.56, "word": " Okay?", "probability": 0.2498779296875}, {"start": 2544.9, "end": 2545.2, "word": " So,", "probability": 0.2381591796875}, {"start": 2545.3, "end": 2545.42, "word": " if", "probability": 0.296630859375}, {"start": 2545.42, "end": 2545.82, "word": " I", "probability": 0.7666015625}, {"start": 2545.82, "end": 2546.68, "word": " didn't", "probability": 0.69970703125}, {"start": 2546.68, "end": 2547.12, "word": " override", "probability": 0.681640625}, {"start": 2547.12, "end": 2547.34, "word": " the", "probability": 0.33154296875}, {"start": 2547.34, "end": 2547.66, "word": " macro,", "probability": 0.439453125}, {"start": 2547.92, "end": 2548.74, "word": " it", "probability": 0.6552734375}, {"start": 2548.74, "end": 2548.84, "word": " will", "probability": 0.6904296875}, {"start": 2548.84, "end": 2548.96, "word": " still", "probability": 0.2420654296875}, {"start": 2548.96, "end": 2549.4, "word": " use", "probability": 0.873046875}, {"start": 2549.4, "end": 2549.52, "word": " the", "probability": 0.88330078125}, {"start": 2549.52, "end": 2549.76, "word": " macro", "probability": 0.83154296875}, {"start": 2549.76, "end": 2549.96, "word": " in", "probability": 0.6337890625}, {"start": 2549.96, "end": 2550.08, "word": " the", "probability": 0.83349609375}, {"start": 2550.08, "end": 2550.26, "word": " parent.", "probability": 0.129638671875}, {"start": 2550.8, "end": 2551.04, "word": " If", "probability": 0.68994140625}, {"start": 2551.04, "end": 2551.18, "word": " I", "probability": 0.84033203125}, {"start": 2551.18, "end": 2551.76, "word": " override", "probability": 0.90380859375}, {"start": 2551.76, "end": 2551.82, "word": " it,", "probability": 0.490966796875}, {"start": 2551.88, "end": 2552.08, "word": " it", "probability": 0.73193359375}, {"start": 2552.08, "end": 2552.22, "word": " will", "probability": 0.6875}, {"start": 2552.22, "end": 2552.48, "word": " use", "probability": 0.708984375}, {"start": 2552.48, "end": 2552.84, "word": " this", "probability": 0.64013671875}, {"start": 2552.84, "end": 2552.86, "word": " one.", "probability": 0.53955078125}], "temperature": 1.0}, {"id": 105, "seek": 258167, "start": 2554.11, "end": 2581.67, "text": " They will continue to create the design in the super class. What is the similarity between them? The similarity is that they are in the same game. This one here? Yes. This is the basic design of the maze. So the main maze returns a new room, a new wall and a new door. Now you have to change the wall, the room and the door. Without changing what? The design.", "tokens": [814, 486, 2354, 281, 1884, 264, 1715, 294, 264, 1687, 1508, 13, 708, 307, 264, 32194, 1296, 552, 30, 440, 32194, 307, 300, 436, 366, 294, 264, 912, 1216, 13, 639, 472, 510, 30, 1079, 13, 639, 307, 264, 3875, 1715, 295, 264, 33032, 13, 407, 264, 2135, 33032, 11247, 257, 777, 1808, 11, 257, 777, 2929, 293, 257, 777, 2853, 13, 823, 291, 362, 281, 1319, 264, 2929, 11, 264, 1808, 293, 264, 2853, 13, 9129, 4473, 437, 30, 440, 1715, 13], "avg_logprob": -0.5825892828759693, "compression_ratio": 1.7307692307692308, "no_speech_prob": 2.086162567138672e-06, "words": [{"start": 2554.11, "end": 2554.49, "word": " They", "probability": 0.10089111328125}, {"start": 2554.49, "end": 2554.63, "word": " will", "probability": 0.6591796875}, {"start": 2554.63, "end": 2554.81, "word": " continue", "probability": 0.1966552734375}, {"start": 2554.81, "end": 2554.93, "word": " to", "probability": 0.634765625}, {"start": 2554.93, "end": 2555.09, "word": " create", "probability": 0.30859375}, {"start": 2555.09, "end": 2555.93, "word": " the", "probability": 0.580078125}, {"start": 2555.93, "end": 2556.37, "word": " design", "probability": 0.455810546875}, {"start": 2556.37, "end": 2557.15, "word": " in", "probability": 0.231201171875}, {"start": 2557.15, "end": 2557.27, "word": " the", "probability": 0.77783203125}, {"start": 2557.27, "end": 2557.43, "word": " super", "probability": 0.73681640625}, {"start": 2557.43, "end": 2557.79, "word": " class.", "probability": 0.53173828125}, {"start": 2557.81, "end": 2558.03, "word": " What", "probability": 0.192626953125}, {"start": 2558.03, "end": 2558.03, "word": " is", "probability": 0.42138671875}, {"start": 2558.03, "end": 2558.21, "word": " the", "probability": 0.53369140625}, {"start": 2558.21, "end": 2558.37, "word": " similarity", "probability": 0.034088134765625}, {"start": 2558.37, "end": 2558.49, "word": " between", "probability": 0.58203125}, {"start": 2558.49, "end": 2558.79, "word": " them?", "probability": 0.2027587890625}, {"start": 2563.23, "end": 2563.67, "word": " The", "probability": 0.2122802734375}, {"start": 2563.67, "end": 2563.99, "word": " similarity", "probability": 0.78515625}, {"start": 2563.99, "end": 2564.41, "word": " is", "probability": 0.4814453125}, {"start": 2564.41, "end": 2564.53, "word": " that", "probability": 0.294677734375}, {"start": 2564.53, "end": 2564.67, "word": " they", "probability": 0.64892578125}, {"start": 2564.67, "end": 2564.87, "word": " are", "probability": 0.76513671875}, {"start": 2564.87, "end": 2565.01, "word": " in", "probability": 0.513671875}, {"start": 2565.01, "end": 2565.17, "word": " the", "probability": 0.7734375}, {"start": 2565.17, "end": 2565.25, "word": " same", "probability": 0.328125}, {"start": 2565.25, "end": 2565.85, "word": " game.", "probability": 0.74072265625}, {"start": 2566.35, "end": 2566.79, "word": " This", "probability": 0.62060546875}, {"start": 2566.79, "end": 2567.29, "word": " one", "probability": 0.56396484375}, {"start": 2567.29, "end": 2567.63, "word": " here?", "probability": 0.2225341796875}, {"start": 2567.79, "end": 2568.11, "word": " Yes.", "probability": 0.5}, {"start": 2568.15, "end": 2568.35, "word": " This", "probability": 0.79345703125}, {"start": 2568.35, "end": 2568.47, "word": " is", "probability": 0.923828125}, {"start": 2568.47, "end": 2568.49, "word": " the", "probability": 0.91748046875}, {"start": 2568.49, "end": 2568.53, "word": " basic", "probability": 0.426025390625}, {"start": 2568.53, "end": 2568.77, "word": " design", "probability": 0.90234375}, {"start": 2568.77, "end": 2569.47, "word": " of", "probability": 0.6513671875}, {"start": 2569.47, "end": 2569.57, "word": " the", "probability": 0.85693359375}, {"start": 2569.57, "end": 2569.73, "word": " maze.", "probability": 0.322509765625}, {"start": 2570.41, "end": 2570.85, "word": " So", "probability": 0.1585693359375}, {"start": 2570.85, "end": 2571.15, "word": " the", "probability": 0.69677734375}, {"start": 2571.15, "end": 2571.63, "word": " main", "probability": 0.5654296875}, {"start": 2571.63, "end": 2571.79, "word": " maze", "probability": 0.8955078125}, {"start": 2571.79, "end": 2572.35, "word": " returns", "probability": 0.1578369140625}, {"start": 2572.35, "end": 2572.53, "word": " a", "probability": 0.53955078125}, {"start": 2572.53, "end": 2572.67, "word": " new", "probability": 0.86328125}, {"start": 2572.67, "end": 2573.07, "word": " room,", "probability": 0.9345703125}, {"start": 2573.77, "end": 2573.89, "word": " a", "probability": 0.5830078125}, {"start": 2573.89, "end": 2574.05, "word": " new", "probability": 0.9013671875}, {"start": 2574.05, "end": 2574.57, "word": " wall", "probability": 0.7607421875}, {"start": 2574.57, "end": 2574.87, "word": " and", "probability": 0.66064453125}, {"start": 2574.87, "end": 2574.97, "word": " a", "probability": 0.96875}, {"start": 2574.97, "end": 2575.07, "word": " new", "probability": 0.91015625}, {"start": 2575.07, "end": 2575.33, "word": " door.", "probability": 0.8037109375}, {"start": 2576.15, "end": 2576.55, "word": " Now", "probability": 0.77197265625}, {"start": 2576.55, "end": 2576.61, "word": " you", "probability": 0.69873046875}, {"start": 2576.61, "end": 2576.77, "word": " have", "probability": 0.423583984375}, {"start": 2576.77, "end": 2576.91, "word": " to", "probability": 0.9697265625}, {"start": 2576.91, "end": 2577.23, "word": " change", "probability": 0.84912109375}, {"start": 2577.23, "end": 2577.43, "word": " the", "probability": 0.8701171875}, {"start": 2577.43, "end": 2577.79, "word": " wall,", "probability": 0.6875}, {"start": 2577.97, "end": 2578.03, "word": " the", "probability": 0.41259765625}, {"start": 2578.03, "end": 2578.31, "word": " room", "probability": 0.93798828125}, {"start": 2578.31, "end": 2578.49, "word": " and", "probability": 0.86962890625}, {"start": 2578.49, "end": 2578.51, "word": " the", "probability": 0.91259765625}, {"start": 2578.51, "end": 2578.73, "word": " door.", "probability": 0.93896484375}, {"start": 2579.11, "end": 2579.55, "word": " Without", "probability": 0.87451171875}, {"start": 2579.55, "end": 2580.01, "word": " changing", "probability": 0.87841796875}, {"start": 2580.01, "end": 2580.35, "word": " what?", "probability": 0.33984375}, {"start": 2580.93, "end": 2581.37, "word": " The", "probability": 0.70947265625}, {"start": 2581.37, "end": 2581.67, "word": " design.", "probability": 0.912109375}], "temperature": 1.0}, {"id": 106, "seek": 261178, "start": 2582.72, "end": 2611.78, "text": "So that they can separate them. The first time you see one of them, you say it's a stupid design. Why? Because it's going to make a micro and tell you when it's going to make a new game. Right? The first time you see one of them, you say it's right or wrong. But no, it's a smart design. And it makes the design flexible. Because these can be overwritten. But this one remains as it is. And in the end, when it finds out that it's a micro, it will find out that it's a subclass.", "tokens": [6455, 300, 436, 393, 4994, 552, 13, 440, 700, 565, 291, 536, 472, 295, 552, 11, 291, 584, 309, 311, 257, 6631, 1715, 13, 1545, 30, 1436, 309, 311, 516, 281, 652, 257, 4532, 293, 980, 291, 562, 309, 311, 516, 281, 652, 257, 777, 1216, 13, 1779, 30, 440, 700, 565, 291, 536, 472, 295, 552, 11, 291, 584, 309, 311, 558, 420, 2085, 13, 583, 572, 11, 309, 311, 257, 4069, 1715, 13, 400, 309, 1669, 264, 1715, 11358, 13, 1436, 613, 393, 312, 670, 26859, 13, 583, 341, 472, 7023, 382, 309, 307, 13, 400, 294, 264, 917, 11, 562, 309, 10704, 484, 300, 309, 311, 257, 4532, 11, 309, 486, 915, 484, 300, 309, 311, 257, 1422, 11665, 13], "avg_logprob": -0.6728830731684162, "compression_ratio": 1.9510204081632654, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 2582.72, "end": 2583.02, "word": "So", "probability": 0.09466552734375}, {"start": 2583.02, "end": 2583.14, "word": " that", "probability": 0.54345703125}, {"start": 2583.14, "end": 2583.24, "word": " they", "probability": 0.269287109375}, {"start": 2583.24, "end": 2583.24, "word": " can", "probability": 0.368896484375}, {"start": 2583.24, "end": 2583.46, "word": " separate", "probability": 0.1981201171875}, {"start": 2583.46, "end": 2583.78, "word": " them.", "probability": 0.51904296875}, {"start": 2583.82, "end": 2584.18, "word": " The", "probability": 0.152099609375}, {"start": 2584.18, "end": 2584.38, "word": " first", "probability": 0.63916015625}, {"start": 2584.38, "end": 2584.48, "word": " time", "probability": 0.7216796875}, {"start": 2584.48, "end": 2584.6, "word": " you", "probability": 0.837890625}, {"start": 2584.6, "end": 2584.88, "word": " see", "probability": 0.46630859375}, {"start": 2584.88, "end": 2585.24, "word": " one", "probability": 0.146728515625}, {"start": 2585.24, "end": 2585.46, "word": " of", "probability": 0.3037109375}, {"start": 2585.46, "end": 2585.6, "word": " them,", "probability": 0.5068359375}, {"start": 2585.82, "end": 2586.08, "word": " you", "probability": 0.8916015625}, {"start": 2586.08, "end": 2586.26, "word": " say", "probability": 0.234619140625}, {"start": 2586.26, "end": 2586.46, "word": " it's", "probability": 0.3017578125}, {"start": 2586.46, "end": 2586.84, "word": " a", "probability": 0.62353515625}, {"start": 2586.84, "end": 2587.0, "word": " stupid", "probability": 0.5595703125}, {"start": 2587.0, "end": 2587.0, "word": " design.", "probability": 0.92138671875}, {"start": 2588.26, "end": 2588.66, "word": " Why?", "probability": 0.260009765625}, {"start": 2589.0, "end": 2589.34, "word": " Because", "probability": 0.401611328125}, {"start": 2589.34, "end": 2590.18, "word": " it's", "probability": 0.38623046875}, {"start": 2590.18, "end": 2590.18, "word": " going", "probability": 0.263427734375}, {"start": 2590.18, "end": 2590.18, "word": " to", "probability": 0.96484375}, {"start": 2590.18, "end": 2590.46, "word": " make", "probability": 0.2445068359375}, {"start": 2590.46, "end": 2590.54, "word": " a", "probability": 0.2186279296875}, {"start": 2590.54, "end": 2590.86, "word": " micro", "probability": 0.12225341796875}, {"start": 2590.86, "end": 2591.02, "word": " and", "probability": 0.307861328125}, {"start": 2591.02, "end": 2591.18, "word": " tell", "probability": 0.2362060546875}, {"start": 2591.18, "end": 2591.36, "word": " you", "probability": 0.888671875}, {"start": 2591.36, "end": 2591.56, "word": " when", "probability": 0.52294921875}, {"start": 2591.56, "end": 2591.56, "word": " it's", "probability": 0.49761962890625}, {"start": 2591.56, "end": 2591.6, "word": " going", "probability": 0.9130859375}, {"start": 2591.6, "end": 2591.6, "word": " to", "probability": 0.96826171875}, {"start": 2591.6, "end": 2591.68, "word": " make", "probability": 0.7900390625}, {"start": 2591.68, "end": 2591.78, "word": " a", "probability": 0.60595703125}, {"start": 2591.78, "end": 2591.94, "word": " new", "probability": 0.375244140625}, {"start": 2591.94, "end": 2592.22, "word": " game.", "probability": 0.880859375}, {"start": 2592.6, "end": 2592.88, "word": " Right?", "probability": 0.337646484375}, {"start": 2592.92, "end": 2593.02, "word": " The", "probability": 0.421630859375}, {"start": 2593.02, "end": 2593.12, "word": " first", "probability": 0.82373046875}, {"start": 2593.12, "end": 2593.2, "word": " time", "probability": 0.80859375}, {"start": 2593.2, "end": 2593.3, "word": " you", "probability": 0.955078125}, {"start": 2593.3, "end": 2593.42, "word": " see", "probability": 0.90185546875}, {"start": 2593.42, "end": 2593.62, "word": " one", "probability": 0.578125}, {"start": 2593.62, "end": 2593.62, "word": " of", "probability": 0.783203125}, {"start": 2593.62, "end": 2593.62, "word": " them,", "probability": 0.5234375}, {"start": 2593.68, "end": 2593.78, "word": " you", "probability": 0.92431640625}, {"start": 2593.78, "end": 2593.94, "word": " say", "probability": 0.38623046875}, {"start": 2593.94, "end": 2594.4, "word": " it's", "probability": 0.452880859375}, {"start": 2594.4, "end": 2594.54, "word": " right", "probability": 0.29443359375}, {"start": 2594.54, "end": 2594.72, "word": " or", "probability": 0.6162109375}, {"start": 2594.72, "end": 2594.72, "word": " wrong.", "probability": 0.6884765625}, {"start": 2594.78, "end": 2595.02, "word": " But", "probability": 0.830078125}, {"start": 2595.02, "end": 2595.2, "word": " no,", "probability": 0.59033203125}, {"start": 2595.24, "end": 2595.44, "word": " it's", "probability": 0.6893310546875}, {"start": 2595.44, "end": 2595.52, "word": " a", "probability": 0.75}, {"start": 2595.52, "end": 2596.08, "word": " smart", "probability": 0.76171875}, {"start": 2596.08, "end": 2596.08, "word": " design.", "probability": 0.9619140625}, {"start": 2596.58, "end": 2596.66, "word": " And", "probability": 0.390380859375}, {"start": 2596.66, "end": 2596.72, "word": " it", "probability": 0.63916015625}, {"start": 2596.72, "end": 2596.94, "word": " makes", "probability": 0.71337890625}, {"start": 2596.94, "end": 2597.54, "word": " the", "probability": 0.53662109375}, {"start": 2597.54, "end": 2597.76, "word": " design", "probability": 0.93212890625}, {"start": 2597.76, "end": 2598.14, "word": " flexible.", "probability": 0.9248046875}, {"start": 2598.68, "end": 2598.86, "word": " Because", "probability": 0.5205078125}, {"start": 2598.86, "end": 2599.2, "word": " these", "probability": 0.5888671875}, {"start": 2599.2, "end": 2600.14, "word": " can", "probability": 0.307861328125}, {"start": 2600.14, "end": 2600.48, "word": " be", "probability": 0.68017578125}, {"start": 2600.48, "end": 2601.2, "word": " overwritten.", "probability": 0.4664306640625}, {"start": 2601.86, "end": 2602.18, "word": " But", "probability": 0.890625}, {"start": 2602.18, "end": 2602.38, "word": " this", "probability": 0.564453125}, {"start": 2602.38, "end": 2602.46, "word": " one", "probability": 0.43994140625}, {"start": 2602.46, "end": 2602.66, "word": " remains", "probability": 0.33984375}, {"start": 2602.66, "end": 2603.42, "word": " as", "probability": 0.2568359375}, {"start": 2603.42, "end": 2604.2, "word": " it", "probability": 0.8818359375}, {"start": 2604.2, "end": 2604.32, "word": " is.", "probability": 0.9091796875}, {"start": 2604.82, "end": 2605.0, "word": " And", "probability": 0.434814453125}, {"start": 2605.0, "end": 2605.2, "word": " in", "probability": 0.433349609375}, {"start": 2605.2, "end": 2605.3, "word": " the", "probability": 0.92041015625}, {"start": 2605.3, "end": 2605.44, "word": " end,", "probability": 0.90380859375}, {"start": 2605.62, "end": 2605.62, "word": " when", "probability": 0.7236328125}, {"start": 2605.62, "end": 2605.7, "word": " it", "probability": 0.5205078125}, {"start": 2605.7, "end": 2605.94, "word": " finds", "probability": 0.068359375}, {"start": 2605.94, "end": 2606.02, "word": " out", "probability": 0.443603515625}, {"start": 2606.02, "end": 2606.14, "word": " that", "probability": 0.491943359375}, {"start": 2606.14, "end": 2606.38, "word": " it's", "probability": 0.599609375}, {"start": 2606.38, "end": 2606.56, "word": " a", "probability": 0.611328125}, {"start": 2606.56, "end": 2606.78, "word": " micro,", "probability": 0.10009765625}, {"start": 2607.96, "end": 2608.82, "word": " it", "probability": 0.69140625}, {"start": 2608.82, "end": 2608.92, "word": " will", "probability": 0.49853515625}, {"start": 2608.92, "end": 2609.22, "word": " find", "probability": 0.55224609375}, {"start": 2609.22, "end": 2609.26, "word": " out", "probability": 0.87548828125}, {"start": 2609.26, "end": 2609.44, "word": " that", "probability": 0.2705078125}, {"start": 2609.44, "end": 2609.66, "word": " it's", "probability": 0.8037109375}, {"start": 2609.66, "end": 2610.46, "word": " a", "probability": 0.385009765625}, {"start": 2610.46, "end": 2611.78, "word": " subclass.", "probability": 0.66845703125}], "temperature": 1.0}, {"id": 107, "seek": 262634, "start": 2618.58, "end": 2626.34, "text": " The reason this works is that the create maze method differs the creation of maze objects to its subclasses", "tokens": [440, 1778, 341, 1985, 307, 300, 264, 1884, 33032, 3170, 37761, 264, 8016, 295, 33032, 6565, 281, 1080, 1422, 11665, 279], "avg_logprob": -0.2381036952137947, "compression_ratio": 1.2857142857142858, "no_speech_prob": 1.1324882507324219e-06, "words": [{"start": 2618.5800000000004, "end": 2619.2200000000003, "word": " The", "probability": 0.1180419921875}, {"start": 2619.2200000000003, "end": 2619.86, "word": " reason", "probability": 0.94580078125}, {"start": 2619.86, "end": 2620.16, "word": " this", "probability": 0.90966796875}, {"start": 2620.16, "end": 2620.48, "word": " works", "probability": 0.9013671875}, {"start": 2620.48, "end": 2620.72, "word": " is", "probability": 0.9013671875}, {"start": 2620.72, "end": 2620.96, "word": " that", "probability": 0.92041015625}, {"start": 2620.96, "end": 2621.16, "word": " the", "probability": 0.82470703125}, {"start": 2621.16, "end": 2621.54, "word": " create", "probability": 0.56494140625}, {"start": 2621.54, "end": 2621.8, "word": " maze", "probability": 0.78564453125}, {"start": 2621.8, "end": 2622.3, "word": " method", "probability": 0.9267578125}, {"start": 2622.3, "end": 2623.38, "word": " differs", "probability": 0.916015625}, {"start": 2623.38, "end": 2623.7, "word": " the", "probability": 0.91064453125}, {"start": 2623.7, "end": 2624.18, "word": " creation", "probability": 0.91650390625}, {"start": 2624.18, "end": 2624.46, "word": " of", "probability": 0.97607421875}, {"start": 2624.46, "end": 2624.7, "word": " maze", "probability": 0.943359375}, {"start": 2624.7, "end": 2625.18, "word": " objects", "probability": 0.96337890625}, {"start": 2625.18, "end": 2625.38, "word": " to", "probability": 0.96240234375}, {"start": 2625.38, "end": 2625.56, "word": " its", "probability": 0.80078125}, {"start": 2625.56, "end": 2626.34, "word": " subclasses", "probability": 0.8370768229166666}], "temperature": 1.0}, {"id": 108, "seek": 265159, "start": 2627.77, "end": 2651.59, "text": "The Create Maze method encouraged subclasses to change maze objects through Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create Maze and Create M", "tokens": [2278, 20248, 376, 13660, 3170, 14658, 1422, 11665, 279, 281, 1319, 33032, 6565, 807, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376, 13660, 293, 20248, 376], "avg_logprob": -0.12819444868299695, "compression_ratio": 10.528735632183908, "no_speech_prob": 4.172325134277344e-07, "words": [{"start": 2627.77, "end": 2628.05, "word": "The", "probability": 0.57177734375}, {"start": 2628.05, "end": 2628.41, "word": " Create", "probability": 0.446533203125}, {"start": 2628.41, "end": 2628.63, "word": " Maze", "probability": 0.7203369140625}, {"start": 2628.63, "end": 2629.05, "word": " method", "probability": 0.54736328125}, {"start": 2629.05, "end": 2629.67, "word": " encouraged", "probability": 0.047515869140625}, {"start": 2629.67, "end": 2630.97, "word": " subclasses", "probability": 0.8035481770833334}, {"start": 2630.97, "end": 2631.15, "word": " to", "probability": 0.9345703125}, {"start": 2631.15, "end": 2631.65, "word": " change", "probability": 0.482421875}, {"start": 2631.65, "end": 2632.77, "word": " maze", "probability": 0.289794921875}, {"start": 2632.77, "end": 2633.27, "word": " objects", "probability": 0.94189453125}, {"start": 2633.27, "end": 2634.49, "word": " through", "probability": 0.44873046875}, {"start": 2634.49, "end": 2635.45, "word": " Create", "probability": 0.388916015625}, {"start": 2635.45, "end": 2635.85, "word": " Maze", "probability": 0.853759765625}, {"start": 2635.85, "end": 2635.95, "word": " and", "probability": 0.2061767578125}, {"start": 2635.95, "end": 2636.45, "word": " Create", "probability": 0.845703125}, {"start": 2636.45, "end": 2637.01, "word": " Maze", "probability": 0.59033203125}, {"start": 2637.01, "end": 2637.03, "word": " and", "probability": 0.62646484375}, {"start": 2637.03, "end": 2637.37, "word": " Create", "probability": 0.83740234375}, {"start": 2637.37, "end": 2637.59, "word": " Maze", "probability": 0.859619140625}, {"start": 2637.59, "end": 2637.59, "word": " and", "probability": 0.67138671875}, {"start": 2637.59, "end": 2637.67, "word": " Create", "probability": 0.7919921875}, {"start": 2637.67, "end": 2637.67, "word": " Maze", "probability": 0.908935546875}, {"start": 2637.67, "end": 2637.73, "word": " and", "probability": 0.52294921875}, {"start": 2637.73, "end": 2637.89, "word": " Create", "probability": 0.861328125}, {"start": 2637.89, "end": 2637.89, "word": " Maze", "probability": 0.924560546875}, {"start": 2637.89, "end": 2637.89, "word": " and", "probability": 0.32763671875}, {"start": 2637.89, "end": 2637.97, "word": " Create", "probability": 0.81494140625}, {"start": 2637.97, "end": 2638.09, "word": " Maze", "probability": 0.928466796875}, {"start": 2638.09, "end": 2638.73, "word": " and", "probability": 0.421142578125}, {"start": 2638.73, "end": 2638.99, "word": " Create", "probability": 0.8388671875}, {"start": 2638.99, "end": 2638.99, "word": " Maze", "probability": 0.9296875}, {"start": 2638.99, "end": 2639.29, "word": " and", "probability": 0.58740234375}, {"start": 2639.29, "end": 2639.29, "word": " Create", "probability": 0.90234375}, {"start": 2639.29, "end": 2639.29, "word": " Maze", "probability": 0.931640625}, {"start": 2639.29, "end": 2639.29, "word": " and", "probability": 0.71044921875}, {"start": 2639.29, "end": 2639.29, "word": " Create", "probability": 0.93115234375}, {"start": 2639.29, "end": 2639.29, "word": " Maze", "probability": 0.933349609375}, {"start": 2639.29, "end": 2639.29, "word": " and", "probability": 0.79150390625}, {"start": 2639.29, "end": 2639.29, "word": " Create", "probability": 0.94580078125}, {"start": 2639.29, "end": 2639.29, "word": " Maze", "probability": 0.935546875}, {"start": 2639.29, "end": 2639.29, "word": " and", "probability": 0.8349609375}, {"start": 2639.29, "end": 2639.29, "word": " Create", "probability": 0.95166015625}, {"start": 2639.29, "end": 2639.29, "word": " Maze", "probability": 0.93896484375}, {"start": 2639.29, "end": 2639.51, "word": " and", "probability": 0.8583984375}, {"start": 2639.51, "end": 2639.51, "word": " Create", "probability": 0.955078125}, {"start": 2639.51, "end": 2639.51, "word": " Maze", "probability": 0.942138671875}, {"start": 2639.51, "end": 2639.69, "word": " and", "probability": 0.875}, {"start": 2639.69, "end": 2639.69, "word": " Create", "probability": 0.95654296875}, {"start": 2639.69, "end": 2639.69, "word": " Maze", "probability": 0.944580078125}, {"start": 2639.69, "end": 2639.69, "word": " and", "probability": 0.88427734375}, {"start": 2639.69, "end": 2639.69, "word": " Create", "probability": 0.95703125}, {"start": 2639.69, "end": 2639.69, "word": " Maze", "probability": 0.947021484375}, {"start": 2639.69, "end": 2640.85, "word": " and", "probability": 0.892578125}, {"start": 2640.85, "end": 2640.89, "word": " Create", "probability": 0.95751953125}, {"start": 2640.89, "end": 2640.89, "word": " Maze", "probability": 0.948974609375}, {"start": 2640.89, "end": 2640.89, "word": " and", "probability": 0.8994140625}, {"start": 2640.89, "end": 2640.95, "word": " Create", "probability": 0.95703125}, {"start": 2640.95, "end": 2640.95, "word": " Maze", "probability": 0.95068359375}, {"start": 2640.95, "end": 2641.97, "word": " and", "probability": 0.90478515625}, {"start": 2641.97, "end": 2642.21, "word": " Create", "probability": 0.95703125}, {"start": 2642.21, "end": 2642.37, "word": " Maze", "probability": 0.952392578125}, {"start": 2642.37, "end": 2642.75, "word": " and", "probability": 0.9111328125}, {"start": 2642.75, "end": 2642.89, "word": " Create", "probability": 0.95703125}, {"start": 2642.89, "end": 2643.13, "word": " Maze", "probability": 0.953125}, {"start": 2643.13, "end": 2643.71, "word": " and", "probability": 0.91650390625}, {"start": 2643.71, "end": 2645.01, "word": " Create", "probability": 0.9560546875}, {"start": 2645.01, "end": 2645.01, "word": " Maze", "probability": 0.9541015625}, {"start": 2645.01, "end": 2645.29, "word": " and", "probability": 0.9208984375}, {"start": 2645.29, "end": 2645.29, "word": " Create", "probability": 0.95703125}, {"start": 2645.29, "end": 2645.59, "word": " Maze", "probability": 0.954833984375}, {"start": 2645.59, "end": 2645.81, "word": " and", "probability": 0.92626953125}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95654296875}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.955810546875}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.9306640625}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95654296875}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.9560546875}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.93505859375}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95703125}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.956787109375}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.9384765625}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95703125}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.957763671875}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.94091796875}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95703125}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.95751953125}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.94384765625}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95703125}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.9580078125}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.94482421875}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95703125}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.958740234375}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.9462890625}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95703125}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.958984375}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.947265625}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95703125}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.958984375}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.9482421875}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95654296875}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.959716796875}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.9501953125}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.9560546875}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.960693359375}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.95068359375}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.955078125}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.961181640625}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.951171875}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95556640625}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.962646484375}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.95166015625}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95361328125}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.964111328125}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.95263671875}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95361328125}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.9658203125}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.95361328125}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.953125}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.967041015625}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.9541015625}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.951171875}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.96826171875}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.95458984375}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.95166015625}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.969970703125}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.955078125}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.951171875}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.97265625}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.95556640625}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.94970703125}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.9736328125}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.9560546875}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.94921875}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.975341796875}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.95556640625}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.94873046875}, {"start": 2645.81, "end": 2645.81, "word": " Maze", "probability": 0.977294921875}, {"start": 2645.81, "end": 2645.81, "word": " and", "probability": 0.95654296875}, {"start": 2645.81, "end": 2645.81, "word": " Create", "probability": 0.9482421875}, {"start": 2645.81, "end": 2645.83, "word": " Maze", "probability": 0.979248046875}, {"start": 2645.83, "end": 2645.83, "word": " and", "probability": 0.9560546875}, {"start": 2645.83, "end": 2645.83, "word": " Create", "probability": 0.947265625}, {"start": 2645.83, "end": 2645.83, "word": " Maze", "probability": 0.98095703125}, {"start": 2645.83, "end": 2645.83, "word": " and", "probability": 0.95556640625}, {"start": 2645.83, "end": 2645.83, "word": " Create", "probability": 0.947265625}, {"start": 2645.83, "end": 2645.83, "word": " Maze", "probability": 0.981689453125}, {"start": 2645.83, "end": 2645.83, "word": " and", "probability": 0.95654296875}, {"start": 2645.83, "end": 2645.83, "word": " Create", "probability": 0.94580078125}, {"start": 2645.83, "end": 2645.87, "word": " Maze", "probability": 0.983154296875}, {"start": 2645.87, "end": 2645.87, "word": " and", "probability": 0.95751953125}, {"start": 2645.87, "end": 2645.87, "word": " Create", "probability": 0.9453125}, {"start": 2645.87, "end": 2645.87, "word": " Maze", "probability": 0.98486328125}, {"start": 2645.87, "end": 2645.87, "word": " and", "probability": 0.95703125}, {"start": 2645.87, "end": 2645.87, "word": " Create", "probability": 0.94482421875}, {"start": 2645.87, "end": 2645.87, "word": " Maze", "probability": 0.98583984375}, {"start": 2645.87, "end": 2645.87, "word": " and", "probability": 0.95751953125}, {"start": 2645.87, "end": 2645.87, "word": " Create", "probability": 0.94482421875}, {"start": 2645.87, "end": 2645.91, "word": " Maze", "probability": 0.986083984375}, {"start": 2645.91, "end": 2646.73, "word": " and", "probability": 0.95751953125}, {"start": 2646.73, "end": 2646.77, "word": " Create", "probability": 0.94384765625}, {"start": 2646.77, "end": 2647.47, "word": " Maze", "probability": 0.986572265625}, {"start": 2647.47, "end": 2647.83, "word": " and", "probability": 0.95654296875}, {"start": 2647.83, "end": 2647.83, "word": " Create", "probability": 0.9443359375}, {"start": 2647.83, "end": 2647.97, "word": " Maze", "probability": 0.988037109375}, {"start": 2647.97, "end": 2648.13, "word": " and", "probability": 0.95703125}, {"start": 2648.13, "end": 2648.13, "word": " Create", "probability": 0.9443359375}, {"start": 2648.13, "end": 2650.23, "word": " Maze", "probability": 0.9892578125}, {"start": 2650.23, "end": 2650.99, "word": " and", "probability": 0.95751953125}, {"start": 2650.99, "end": 2651.23, "word": " Create", "probability": 0.9453125}, {"start": 2651.23, "end": 2651.59, "word": " M", "probability": 0.984375}], "temperature": 1.0}, {"id": 109, "seek": 267573, "start": 2653.09, "end": 2675.73, "text": "The last code I showed you also links the other parts of the example in the UMN class diagram. For example, I told you that the class of the maze game represents the creator, which is the super class. The concrete creator is the subclass that emerges from it, like the enchanted maze game, which extended the super class and changed the best meal.", "tokens": [2278, 1036, 3089, 286, 4712, 291, 611, 6123, 264, 661, 3166, 295, 264, 1365, 294, 264, 31335, 45, 1508, 10686, 13, 1171, 1365, 11, 286, 1907, 291, 300, 264, 1508, 295, 264, 33032, 1216, 8855, 264, 14181, 11, 597, 307, 264, 1687, 1508, 13, 440, 9859, 14181, 307, 264, 1422, 11665, 300, 38965, 490, 309, 11, 411, 264, 35213, 15587, 33032, 1216, 11, 597, 10913, 264, 1687, 1508, 293, 3105, 264, 1151, 6791, 13], "avg_logprob": -0.5762500222524007, "compression_ratio": 1.70935960591133, "no_speech_prob": 7.092952728271484e-06, "words": [{"start": 2653.09, "end": 2653.61, "word": "The", "probability": 0.13232421875}, {"start": 2653.61, "end": 2654.13, "word": " last", "probability": 0.5185546875}, {"start": 2654.13, "end": 2654.55, "word": " code", "probability": 0.7919921875}, {"start": 2654.55, "end": 2655.01, "word": " I", "probability": 0.34716796875}, {"start": 2655.01, "end": 2655.23, "word": " showed", "probability": 0.2042236328125}, {"start": 2655.23, "end": 2655.91, "word": " you", "probability": 0.7666015625}, {"start": 2655.91, "end": 2655.91, "word": " also", "probability": 0.21533203125}, {"start": 2655.91, "end": 2656.15, "word": " links", "probability": 0.32373046875}, {"start": 2656.15, "end": 2657.07, "word": " the", "probability": 0.38232421875}, {"start": 2657.07, "end": 2657.41, "word": " other", "probability": 0.275146484375}, {"start": 2657.41, "end": 2657.41, "word": " parts", "probability": 0.371337890625}, {"start": 2657.41, "end": 2657.55, "word": " of", "probability": 0.884765625}, {"start": 2657.55, "end": 2657.63, "word": " the", "probability": 0.6884765625}, {"start": 2657.63, "end": 2658.03, "word": " example", "probability": 0.494384765625}, {"start": 2658.03, "end": 2659.37, "word": " in", "probability": 0.21240234375}, {"start": 2659.37, "end": 2659.47, "word": " the", "probability": 0.67138671875}, {"start": 2659.47, "end": 2659.77, "word": " UMN", "probability": 0.460693359375}, {"start": 2659.77, "end": 2660.27, "word": " class", "probability": 0.73876953125}, {"start": 2660.27, "end": 2661.41, "word": " diagram.", "probability": 0.66162109375}, {"start": 2661.75, "end": 2662.07, "word": " For", "probability": 0.5634765625}, {"start": 2662.07, "end": 2662.31, "word": " example,", "probability": 0.87109375}, {"start": 2662.41, "end": 2662.41, "word": " I", "probability": 0.305908203125}, {"start": 2662.41, "end": 2662.61, "word": " told", "probability": 0.64306640625}, {"start": 2662.61, "end": 2662.85, "word": " you", "probability": 0.9599609375}, {"start": 2662.85, "end": 2663.47, "word": " that", "probability": 0.70068359375}, {"start": 2663.47, "end": 2663.55, "word": " the", "probability": 0.697265625}, {"start": 2663.55, "end": 2663.91, "word": " class", "probability": 0.8173828125}, {"start": 2663.91, "end": 2664.07, "word": " of", "probability": 0.2076416015625}, {"start": 2664.07, "end": 2664.07, "word": " the", "probability": 0.5693359375}, {"start": 2664.07, "end": 2664.25, "word": " maze", "probability": 0.66845703125}, {"start": 2664.25, "end": 2664.51, "word": " game", "probability": 0.87744140625}, {"start": 2664.51, "end": 2664.99, "word": " represents", "probability": 0.56005859375}, {"start": 2664.99, "end": 2665.19, "word": " the", "probability": 0.7822265625}, {"start": 2665.19, "end": 2665.53, "word": " creator,", "probability": 0.7734375}, {"start": 2665.71, "end": 2665.71, "word": " which", "probability": 0.39892578125}, {"start": 2665.71, "end": 2665.75, "word": " is", "probability": 0.89208984375}, {"start": 2665.75, "end": 2665.87, "word": " the", "probability": 0.767578125}, {"start": 2665.87, "end": 2666.05, "word": " super", "probability": 0.9296875}, {"start": 2666.05, "end": 2666.49, "word": " class.", "probability": 0.59912109375}, {"start": 2667.67, "end": 2668.19, "word": " The", "probability": 0.455810546875}, {"start": 2668.19, "end": 2668.61, "word": " concrete", "probability": 0.75537109375}, {"start": 2668.61, "end": 2669.33, "word": " creator", "probability": 0.93212890625}, {"start": 2669.33, "end": 2670.05, "word": " is", "probability": 0.347412109375}, {"start": 2670.05, "end": 2670.09, "word": " the", "probability": 0.46240234375}, {"start": 2670.09, "end": 2670.61, "word": " subclass", "probability": 0.745849609375}, {"start": 2670.61, "end": 2670.77, "word": " that", "probability": 0.4375}, {"start": 2670.77, "end": 2671.03, "word": " emerges", "probability": 0.4580078125}, {"start": 2671.03, "end": 2671.17, "word": " from", "probability": 0.77783203125}, {"start": 2671.17, "end": 2671.33, "word": " it,", "probability": 0.771484375}, {"start": 2671.41, "end": 2671.47, "word": " like", "probability": 0.4111328125}, {"start": 2671.47, "end": 2671.61, "word": " the", "probability": 0.609375}, {"start": 2671.61, "end": 2672.13, "word": " enchanted", "probability": 0.893798828125}, {"start": 2672.13, "end": 2672.37, "word": " maze", "probability": 0.8701171875}, {"start": 2672.37, "end": 2672.69, "word": " game,", "probability": 0.89697265625}, {"start": 2673.17, "end": 2673.33, "word": " which", "probability": 0.822265625}, {"start": 2673.33, "end": 2673.99, "word": " extended", "probability": 0.2076416015625}, {"start": 2673.99, "end": 2674.21, "word": " the", "probability": 0.81494140625}, {"start": 2674.21, "end": 2674.41, "word": " super", "probability": 0.95458984375}, {"start": 2674.41, "end": 2674.67, "word": " class", "probability": 0.87548828125}, {"start": 2674.67, "end": 2674.81, "word": " and", "probability": 0.8037109375}, {"start": 2674.81, "end": 2675.11, "word": " changed", "probability": 0.8603515625}, {"start": 2675.11, "end": 2675.31, "word": " the", "probability": 0.445068359375}, {"start": 2675.31, "end": 2675.45, "word": " best", "probability": 0.35888671875}, {"start": 2675.45, "end": 2675.73, "word": " meal.", "probability": 0.380859375}], "temperature": 1.0}, {"id": 110, "seek": 269590, "start": 2677.16, "end": 2695.9, "text": "The factory methods, make room and make door. But the basic create method hasn't changed. It still represents the post, for example. The products that I create, for example the connectors, here I represent the map site, which is the room, the wall and the door.", "tokens": [2278, 9265, 7150, 11, 652, 1808, 293, 652, 2853, 13, 583, 264, 3875, 1884, 3170, 6132, 380, 3105, 13, 467, 920, 8855, 264, 2183, 11, 337, 1365, 13, 440, 3383, 300, 286, 1884, 11, 337, 1365, 264, 31865, 11, 510, 286, 2906, 264, 4471, 3621, 11, 597, 307, 264, 1808, 11, 264, 2929, 293, 264, 2853, 13], "avg_logprob": -0.58135776684202, "compression_ratio": 1.5818181818181818, "no_speech_prob": 3.159046173095703e-06, "words": [{"start": 2677.16, "end": 2677.64, "word": "The", "probability": 0.09222412109375}, {"start": 2677.64, "end": 2678.12, "word": " factory", "probability": 0.6591796875}, {"start": 2678.12, "end": 2678.46, "word": " methods,", "probability": 0.6494140625}, {"start": 2678.52, "end": 2678.78, "word": " make", "probability": 0.473388671875}, {"start": 2678.78, "end": 2678.98, "word": " room", "probability": 0.70703125}, {"start": 2678.98, "end": 2679.14, "word": " and", "probability": 0.79150390625}, {"start": 2679.14, "end": 2679.3, "word": " make", "probability": 0.9296875}, {"start": 2679.3, "end": 2679.56, "word": " door.", "probability": 0.84423828125}, {"start": 2680.2, "end": 2680.34, "word": " But", "probability": 0.6220703125}, {"start": 2680.34, "end": 2680.48, "word": " the", "probability": 0.65478515625}, {"start": 2680.48, "end": 2680.5, "word": " basic", "probability": 0.34716796875}, {"start": 2680.5, "end": 2680.78, "word": " create", "probability": 0.142333984375}, {"start": 2680.78, "end": 2681.08, "word": " method", "probability": 0.8388671875}, {"start": 2681.08, "end": 2682.62, "word": " hasn't", "probability": 0.5855712890625}, {"start": 2682.62, "end": 2682.98, "word": " changed.", "probability": 0.80908203125}, {"start": 2683.22, "end": 2683.4, "word": " It", "probability": 0.6513671875}, {"start": 2683.4, "end": 2683.68, "word": " still", "probability": 0.152587890625}, {"start": 2683.68, "end": 2683.94, "word": " represents", "probability": 0.2454833984375}, {"start": 2683.94, "end": 2685.14, "word": " the", "probability": 0.517578125}, {"start": 2685.14, "end": 2685.42, "word": " post,", "probability": 0.63330078125}, {"start": 2685.56, "end": 2685.68, "word": " for", "probability": 0.865234375}, {"start": 2685.68, "end": 2685.8, "word": " example.", "probability": 0.89697265625}, {"start": 2687.28, "end": 2687.76, "word": " The", "probability": 0.54150390625}, {"start": 2687.76, "end": 2688.32, "word": " products", "probability": 0.80615234375}, {"start": 2688.32, "end": 2688.46, "word": " that", "probability": 0.61669921875}, {"start": 2688.46, "end": 2688.56, "word": " I", "probability": 0.869140625}, {"start": 2688.56, "end": 2688.78, "word": " create,", "probability": 0.291259765625}, {"start": 2689.28, "end": 2691.16, "word": " for", "probability": 0.2279052734375}, {"start": 2691.16, "end": 2691.5, "word": " example", "probability": 0.90771484375}, {"start": 2691.5, "end": 2691.64, "word": " the", "probability": 0.384765625}, {"start": 2691.64, "end": 2692.16, "word": " connectors,", "probability": 0.81103515625}, {"start": 2692.24, "end": 2692.4, "word": " here", "probability": 0.286865234375}, {"start": 2692.4, "end": 2692.52, "word": " I", "probability": 0.2149658203125}, {"start": 2692.52, "end": 2692.84, "word": " represent", "probability": 0.646484375}, {"start": 2692.84, "end": 2693.18, "word": " the", "probability": 0.7587890625}, {"start": 2693.18, "end": 2693.38, "word": " map", "probability": 0.7587890625}, {"start": 2693.38, "end": 2693.76, "word": " site,", "probability": 0.83251953125}, {"start": 2693.92, "end": 2693.92, "word": " which", "probability": 0.68359375}, {"start": 2693.92, "end": 2694.06, "word": " is", "probability": 0.5390625}, {"start": 2694.06, "end": 2694.18, "word": " the", "probability": 0.85693359375}, {"start": 2694.18, "end": 2694.52, "word": " room,", "probability": 0.90185546875}, {"start": 2694.98, "end": 2695.08, "word": " the", "probability": 0.6748046875}, {"start": 2695.08, "end": 2695.4, "word": " wall", "probability": 0.8251953125}, {"start": 2695.4, "end": 2695.6, "word": " and", "probability": 0.67724609375}, {"start": 2695.6, "end": 2695.68, "word": " the", "probability": 0.8994140625}, {"start": 2695.68, "end": 2695.9, "word": " door.", "probability": 0.93896484375}], "temperature": 1.0}, {"id": 111, "seek": 272153, "start": 2700.37, "end": 2721.53, "text": " Enchanted Wall, Enchanted Room and Enchanted Door are the ones that I need to remove from the posters and these are the ones that I need to remove from the maze game class or from the creators. Can you manage them? Of course, we have not yet finished the factor method. In the next lecture, we will see an example of the factor method using only code PHP.", "tokens": [2193, 339, 15587, 9551, 11, 2193, 339, 15587, 19190, 293, 2193, 339, 15587, 29636, 366, 264, 2306, 300, 286, 643, 281, 4159, 490, 264, 28172, 293, 613, 366, 264, 2306, 300, 286, 643, 281, 4159, 490, 264, 33032, 1216, 1508, 420, 490, 264, 16039, 13, 1664, 291, 3067, 552, 30, 2720, 1164, 11, 321, 362, 406, 1939, 4335, 264, 5952, 3170, 13, 682, 264, 958, 7991, 11, 321, 486, 536, 364, 1365, 295, 264, 5952, 3170, 1228, 787, 3089, 47298, 13], "avg_logprob": -0.5487805139727708, "compression_ratio": 1.7623762376237624, "no_speech_prob": 5.960464477539063e-08, "words": [{"start": 2700.37, "end": 2700.87, "word": " Enchanted", "probability": 0.6026102701822916}, {"start": 2700.87, "end": 2701.15, "word": " Wall,", "probability": 0.4755859375}, {"start": 2701.27, "end": 2701.77, "word": " Enchanted", "probability": 0.9158528645833334}, {"start": 2701.77, "end": 2701.97, "word": " Room", "probability": 0.91748046875}, {"start": 2701.97, "end": 2702.05, "word": " and", "probability": 0.486328125}, {"start": 2702.05, "end": 2702.49, "word": " Enchanted", "probability": 0.9462890625}, {"start": 2702.49, "end": 2702.79, "word": " Door", "probability": 0.81982421875}, {"start": 2702.79, "end": 2703.41, "word": " are", "probability": 0.377685546875}, {"start": 2703.41, "end": 2703.41, "word": " the", "probability": 0.09417724609375}, {"start": 2703.41, "end": 2703.59, "word": " ones", "probability": 0.2005615234375}, {"start": 2703.59, "end": 2703.93, "word": " that", "probability": 0.39453125}, {"start": 2703.93, "end": 2704.07, "word": " I", "probability": 0.71240234375}, {"start": 2704.07, "end": 2704.49, "word": " need", "probability": 0.2958984375}, {"start": 2704.49, "end": 2704.81, "word": " to", "probability": 0.943359375}, {"start": 2704.81, "end": 2705.25, "word": " remove", "probability": 0.12646484375}, {"start": 2705.25, "end": 2705.69, "word": " from", "probability": 0.77685546875}, {"start": 2705.69, "end": 2706.55, "word": " the", "probability": 0.50927734375}, {"start": 2706.55, "end": 2706.99, "word": " posters", "probability": 0.640625}, {"start": 2706.99, "end": 2707.21, "word": " and", "probability": 0.406494140625}, {"start": 2707.21, "end": 2707.35, "word": " these", "probability": 0.165771484375}, {"start": 2707.35, "end": 2707.51, "word": " are", "probability": 0.5791015625}, {"start": 2707.51, "end": 2707.69, "word": " the", "probability": 0.61669921875}, {"start": 2707.69, "end": 2707.69, "word": " ones", "probability": 0.798828125}, {"start": 2707.69, "end": 2707.77, "word": " that", "probability": 0.546875}, {"start": 2707.77, "end": 2707.83, "word": " I", "probability": 0.86669921875}, {"start": 2707.83, "end": 2708.07, "word": " need", "probability": 0.84033203125}, {"start": 2708.07, "end": 2708.23, "word": " to", "probability": 0.9443359375}, {"start": 2708.23, "end": 2708.47, "word": " remove", "probability": 0.8583984375}, {"start": 2708.47, "end": 2709.97, "word": " from", "probability": 0.86181640625}, {"start": 2709.97, "end": 2710.73, "word": " the", "probability": 0.7685546875}, {"start": 2710.73, "end": 2711.13, "word": " maze", "probability": 0.145751953125}, {"start": 2711.13, "end": 2712.15, "word": " game", "probability": 0.8369140625}, {"start": 2712.15, "end": 2712.43, "word": " class", "probability": 0.84326171875}, {"start": 2712.43, "end": 2712.55, "word": " or", "probability": 0.5}, {"start": 2712.55, "end": 2712.83, "word": " from", "probability": 0.5048828125}, {"start": 2712.83, "end": 2712.93, "word": " the", "probability": 0.7705078125}, {"start": 2712.93, "end": 2713.43, "word": " creators.", "probability": 0.9267578125}, {"start": 2714.13, "end": 2714.29, "word": " Can", "probability": 0.052001953125}, {"start": 2714.29, "end": 2714.33, "word": " you", "probability": 0.5595703125}, {"start": 2714.33, "end": 2714.51, "word": " manage", "probability": 0.74951171875}, {"start": 2714.51, "end": 2714.69, "word": " them?", "probability": 0.70361328125}, {"start": 2715.03, "end": 2715.49, "word": " Of", "probability": 0.3935546875}, {"start": 2715.49, "end": 2715.65, "word": " course,", "probability": 0.92919921875}, {"start": 2715.93, "end": 2716.01, "word": " we", "probability": 0.88427734375}, {"start": 2716.01, "end": 2716.03, "word": " have", "probability": 0.31005859375}, {"start": 2716.03, "end": 2716.07, "word": " not", "probability": 0.86865234375}, {"start": 2716.07, "end": 2716.15, "word": " yet", "probability": 0.4423828125}, {"start": 2716.15, "end": 2716.41, "word": " finished", "probability": 0.444580078125}, {"start": 2716.41, "end": 2716.69, "word": " the", "probability": 0.70361328125}, {"start": 2716.69, "end": 2716.87, "word": " factor", "probability": 0.353759765625}, {"start": 2716.87, "end": 2717.21, "word": " method.", "probability": 0.80810546875}, {"start": 2717.95, "end": 2718.11, "word": " In", "probability": 0.76904296875}, {"start": 2718.11, "end": 2718.13, "word": " the", "probability": 0.806640625}, {"start": 2718.13, "end": 2718.13, "word": " next", "probability": 0.8671875}, {"start": 2718.13, "end": 2718.45, "word": " lecture,", "probability": 0.75537109375}, {"start": 2718.75, "end": 2718.81, "word": " we", "probability": 0.9130859375}, {"start": 2718.81, "end": 2718.83, "word": " will", "probability": 0.814453125}, {"start": 2718.83, "end": 2719.01, "word": " see", "probability": 0.66015625}, {"start": 2719.01, "end": 2719.13, "word": " an", "probability": 0.85791015625}, {"start": 2719.13, "end": 2719.39, "word": " example", "probability": 0.97119140625}, {"start": 2719.39, "end": 2719.57, "word": " of", "probability": 0.80712890625}, {"start": 2719.57, "end": 2719.65, "word": " the", "probability": 0.634765625}, {"start": 2719.65, "end": 2719.91, "word": " factor", "probability": 0.8505859375}, {"start": 2719.91, "end": 2720.29, "word": " method", "probability": 0.94384765625}, {"start": 2720.29, "end": 2720.61, "word": " using", "probability": 0.413330078125}, {"start": 2720.61, "end": 2720.91, "word": " only", "probability": 0.40087890625}, {"start": 2720.91, "end": 2721.15, "word": " code", "probability": 0.4072265625}, {"start": 2721.15, "end": 2721.53, "word": " PHP.", "probability": 0.7568359375}], "temperature": 1.0}, {"id": 112, "seek": 274075, "start": 2722.53, "end": 2740.75, "text": "In order not to say that everything is Java. We will also see an example of how the design of the GUI is done. We will get to the point of using the factor method. You have different types of products, different types of employees, different types of news. They all participate in the design of most of them.", "tokens": [4575, 1668, 406, 281, 584, 300, 1203, 307, 10745, 13, 492, 486, 611, 536, 364, 1365, 295, 577, 264, 1715, 295, 264, 17917, 40, 307, 1096, 13, 492, 486, 483, 281, 264, 935, 295, 1228, 264, 5952, 3170, 13, 509, 362, 819, 3467, 295, 3383, 11, 819, 3467, 295, 6619, 11, 819, 3467, 295, 2583, 13, 814, 439, 8197, 294, 264, 1715, 295, 881, 295, 552, 13], "avg_logprob": -0.5937500184073168, "compression_ratio": 1.701657458563536, "no_speech_prob": 1.043081283569336e-05, "words": [{"start": 2722.5299999999997, "end": 2722.89, "word": "In", "probability": 0.0384521484375}, {"start": 2722.89, "end": 2722.89, "word": " order", "probability": 0.6044921875}, {"start": 2722.89, "end": 2722.99, "word": " not", "probability": 0.47802734375}, {"start": 2722.99, "end": 2722.99, "word": " to", "probability": 0.94580078125}, {"start": 2722.99, "end": 2723.11, "word": " say", "probability": 0.2467041015625}, {"start": 2723.11, "end": 2723.21, "word": " that", "probability": 0.5029296875}, {"start": 2723.21, "end": 2723.43, "word": " everything", "probability": 0.56494140625}, {"start": 2723.43, "end": 2723.53, "word": " is", "probability": 0.78955078125}, {"start": 2723.53, "end": 2723.81, "word": " Java.", "probability": 0.63818359375}, {"start": 2724.93, "end": 2725.29, "word": " We", "probability": 0.2064208984375}, {"start": 2725.29, "end": 2725.45, "word": " will", "probability": 0.62841796875}, {"start": 2725.45, "end": 2725.53, "word": " also", "probability": 0.41357421875}, {"start": 2725.53, "end": 2725.63, "word": " see", "probability": 0.6337890625}, {"start": 2725.63, "end": 2726.35, "word": " an", "probability": 0.30029296875}, {"start": 2726.35, "end": 2726.35, "word": " example", "probability": 0.97802734375}, {"start": 2726.35, "end": 2726.73, "word": " of", "probability": 0.64306640625}, {"start": 2726.73, "end": 2726.73, "word": " how", "probability": 0.76318359375}, {"start": 2726.73, "end": 2727.07, "word": " the", "probability": 0.49853515625}, {"start": 2727.07, "end": 2727.31, "word": " design", "probability": 0.603515625}, {"start": 2727.31, "end": 2727.49, "word": " of", "probability": 0.94921875}, {"start": 2727.49, "end": 2727.55, "word": " the", "probability": 0.274169921875}, {"start": 2727.55, "end": 2728.17, "word": " GUI", "probability": 0.967529296875}, {"start": 2728.17, "end": 2729.83, "word": " is", "probability": 0.165283203125}, {"start": 2729.83, "end": 2729.93, "word": " done.", "probability": 0.2481689453125}, {"start": 2730.29, "end": 2730.65, "word": " We", "probability": 0.572265625}, {"start": 2730.65, "end": 2730.81, "word": " will", "probability": 0.7587890625}, {"start": 2730.81, "end": 2731.03, "word": " get", "probability": 0.0919189453125}, {"start": 2731.03, "end": 2731.11, "word": " to", "probability": 0.49755859375}, {"start": 2731.11, "end": 2731.15, "word": " the", "probability": 0.28369140625}, {"start": 2731.15, "end": 2731.23, "word": " point", "probability": 0.88427734375}, {"start": 2731.23, "end": 2731.33, "word": " of", "probability": 0.65966796875}, {"start": 2731.33, "end": 2731.63, "word": " using", "probability": 0.72607421875}, {"start": 2731.63, "end": 2731.77, "word": " the", "probability": 0.78515625}, {"start": 2731.77, "end": 2731.97, "word": " factor", "probability": 0.342529296875}, {"start": 2731.97, "end": 2732.33, "word": " method.", "probability": 0.93798828125}, {"start": 2732.91, "end": 2733.03, "word": " You", "probability": 0.59521484375}, {"start": 2733.03, "end": 2733.27, "word": " have", "probability": 0.89013671875}, {"start": 2733.27, "end": 2733.47, "word": " different", "probability": 0.255615234375}, {"start": 2733.47, "end": 2733.65, "word": " types", "probability": 0.54541015625}, {"start": 2733.65, "end": 2733.77, "word": " of", "probability": 0.970703125}, {"start": 2733.77, "end": 2734.17, "word": " products,", "probability": 0.8359375}, {"start": 2734.31, "end": 2734.39, "word": " different", "probability": 0.461181640625}, {"start": 2734.39, "end": 2734.57, "word": " types", "probability": 0.6181640625}, {"start": 2734.57, "end": 2734.69, "word": " of", "probability": 0.9755859375}, {"start": 2734.69, "end": 2735.19, "word": " employees,", "probability": 0.8564453125}, {"start": 2735.53, "end": 2735.67, "word": " different", "probability": 0.69384765625}, {"start": 2735.67, "end": 2735.85, "word": " types", "probability": 0.80029296875}, {"start": 2735.85, "end": 2735.93, "word": " of", "probability": 0.97412109375}, {"start": 2735.93, "end": 2736.31, "word": " news.", "probability": 0.791015625}, {"start": 2737.19, "end": 2737.55, "word": " They", "probability": 0.2197265625}, {"start": 2737.55, "end": 2737.55, "word": " all", "probability": 0.8662109375}, {"start": 2737.55, "end": 2737.93, "word": " participate", "probability": 0.53076171875}, {"start": 2737.93, "end": 2738.09, "word": " in", "probability": 0.9443359375}, {"start": 2738.09, "end": 2738.19, "word": " the", "probability": 0.473388671875}, {"start": 2738.19, "end": 2738.47, "word": " design", "probability": 0.91015625}, {"start": 2738.47, "end": 2739.87, "word": " of", "probability": 0.84521484375}, {"start": 2739.87, "end": 2740.17, "word": " most", "probability": 0.8037109375}, {"start": 2740.17, "end": 2740.35, "word": " of", "probability": 0.65478515625}, {"start": 2740.35, "end": 2740.75, "word": " them.", "probability": 0.151123046875}], "temperature": 1.0}, {"id": 113, "seek": 276325, "start": 2741.29, "end": 2763.25, "text": " An example of integration, but with different parts. Instead of making each one a different design, we will make only one design, and leave only the different parts that we made in the previous one. For example, when your boss asks you to work or integrate a new element, instead of sitting for a week, you work in what? Half an hour, and ask for a week's salary.", "tokens": [1107, 1365, 295, 10980, 11, 457, 365, 819, 3166, 13, 7156, 295, 1455, 1184, 472, 257, 819, 1715, 11, 321, 486, 652, 787, 472, 1715, 11, 293, 1856, 787, 264, 819, 3166, 300, 321, 1027, 294, 264, 3894, 472, 13, 1171, 1365, 11, 562, 428, 5741, 8962, 291, 281, 589, 420, 13365, 257, 777, 4478, 11, 2602, 295, 3798, 337, 257, 1243, 11, 291, 589, 294, 437, 30, 15917, 364, 1773, 11, 293, 1029, 337, 257, 1243, 311, 15360, 13], "avg_logprob": -0.562500011773757, "compression_ratio": 1.7089201877934272, "no_speech_prob": 4.649162292480469e-06, "words": [{"start": 2741.29, "end": 2741.51, "word": " An", "probability": 0.061767578125}, {"start": 2741.51, "end": 2741.71, "word": " example", "probability": 0.7392578125}, {"start": 2741.71, "end": 2741.99, "word": " of", "probability": 0.712890625}, {"start": 2741.99, "end": 2742.29, "word": " integration,", "probability": 0.11572265625}, {"start": 2742.43, "end": 2742.85, "word": " but", "probability": 0.54052734375}, {"start": 2742.85, "end": 2743.11, "word": " with", "probability": 0.556640625}, {"start": 2743.11, "end": 2744.41, "word": " different", "probability": 0.681640625}, {"start": 2744.41, "end": 2744.41, "word": " parts.", "probability": 0.46484375}, {"start": 2744.91, "end": 2745.29, "word": " Instead", "probability": 0.73193359375}, {"start": 2745.29, "end": 2745.39, "word": " of", "probability": 0.9658203125}, {"start": 2745.39, "end": 2745.67, "word": " making", "probability": 0.2213134765625}, {"start": 2745.67, "end": 2745.93, "word": " each", "probability": 0.55029296875}, {"start": 2745.93, "end": 2746.11, "word": " one", "probability": 0.338134765625}, {"start": 2746.11, "end": 2746.27, "word": " a", "probability": 0.28466796875}, {"start": 2746.27, "end": 2746.75, "word": " different", "probability": 0.81640625}, {"start": 2746.75, "end": 2746.75, "word": " design,", "probability": 0.87255859375}, {"start": 2746.91, "end": 2746.97, "word": " we", "probability": 0.67822265625}, {"start": 2746.97, "end": 2747.01, "word": " will", "probability": 0.5078125}, {"start": 2747.01, "end": 2747.13, "word": " make", "probability": 0.70361328125}, {"start": 2747.13, "end": 2747.93, "word": " only", "probability": 0.323486328125}, {"start": 2747.93, "end": 2748.87, "word": " one", "probability": 0.9033203125}, {"start": 2748.87, "end": 2749.15, "word": " design,", "probability": 0.69873046875}, {"start": 2749.31, "end": 2749.39, "word": " and", "probability": 0.55810546875}, {"start": 2749.39, "end": 2749.63, "word": " leave", "probability": 0.330810546875}, {"start": 2749.63, "end": 2749.93, "word": " only", "probability": 0.77392578125}, {"start": 2749.93, "end": 2750.11, "word": " the", "probability": 0.87109375}, {"start": 2750.11, "end": 2750.73, "word": " different", "probability": 0.56005859375}, {"start": 2750.73, "end": 2750.73, "word": " parts", "probability": 0.86376953125}, {"start": 2750.73, "end": 2750.87, "word": " that", "probability": 0.271728515625}, {"start": 2750.87, "end": 2750.97, "word": " we", "probability": 0.85986328125}, {"start": 2750.97, "end": 2751.15, "word": " made", "probability": 0.3935546875}, {"start": 2751.15, "end": 2751.93, "word": " in", "probability": 0.6259765625}, {"start": 2751.93, "end": 2752.03, "word": " the", "probability": 0.86181640625}, {"start": 2752.03, "end": 2752.19, "word": " previous", "probability": 0.5869140625}, {"start": 2752.19, "end": 2752.31, "word": " one.", "probability": 0.576171875}, {"start": 2752.35, "end": 2752.49, "word": " For", "probability": 0.34912109375}, {"start": 2752.49, "end": 2752.73, "word": " example,", "probability": 0.85009765625}, {"start": 2752.97, "end": 2752.97, "word": " when", "probability": 0.68701171875}, {"start": 2752.97, "end": 2753.87, "word": " your", "probability": 0.54931640625}, {"start": 2753.87, "end": 2754.05, "word": " boss", "probability": 0.59228515625}, {"start": 2754.05, "end": 2754.41, "word": " asks", "probability": 0.73779296875}, {"start": 2754.41, "end": 2754.73, "word": " you", "probability": 0.916015625}, {"start": 2754.73, "end": 2754.83, "word": " to", "probability": 0.8046875}, {"start": 2754.83, "end": 2754.99, "word": " work", "probability": 0.2269287109375}, {"start": 2754.99, "end": 2755.27, "word": " or", "probability": 0.66650390625}, {"start": 2755.27, "end": 2755.67, "word": " integrate", "probability": 0.33984375}, {"start": 2755.67, "end": 2756.35, "word": " a", "probability": 0.40869140625}, {"start": 2756.35, "end": 2756.77, "word": " new", "probability": 0.91162109375}, {"start": 2756.77, "end": 2756.77, "word": " element,", "probability": 0.79931640625}, {"start": 2757.37, "end": 2757.79, "word": " instead", "probability": 0.63525390625}, {"start": 2757.79, "end": 2757.89, "word": " of", "probability": 0.9716796875}, {"start": 2757.89, "end": 2758.05, "word": " sitting", "probability": 0.33935546875}, {"start": 2758.05, "end": 2758.11, "word": " for", "probability": 0.50244140625}, {"start": 2758.11, "end": 2758.25, "word": " a", "probability": 0.9697265625}, {"start": 2758.25, "end": 2758.55, "word": " week,", "probability": 0.92138671875}, {"start": 2759.71, "end": 2760.13, "word": " you", "probability": 0.7333984375}, {"start": 2760.13, "end": 2760.35, "word": " work", "probability": 0.759765625}, {"start": 2760.35, "end": 2760.45, "word": " in", "probability": 0.313232421875}, {"start": 2760.45, "end": 2760.75, "word": " what?", "probability": 0.352294921875}, {"start": 2761.13, "end": 2761.57, "word": " Half", "probability": 0.474609375}, {"start": 2761.57, "end": 2761.73, "word": " an", "probability": 0.80859375}, {"start": 2761.73, "end": 2761.85, "word": " hour,", "probability": 0.93701171875}, {"start": 2762.33, "end": 2762.59, "word": " and", "probability": 0.873046875}, {"start": 2762.59, "end": 2762.79, "word": " ask", "probability": 0.46630859375}, {"start": 2762.79, "end": 2762.89, "word": " for", "probability": 0.8369140625}, {"start": 2762.89, "end": 2762.93, "word": " a", "probability": 0.88525390625}, {"start": 2762.93, "end": 2763.25, "word": " week's", "probability": 0.6114501953125}, {"start": 2763.25, "end": 2763.25, "word": " salary.", "probability": 0.68408203125}], "temperature": 1.0}, {"id": 114, "seek": 276821, "start": 2766.83, "end": 2768.21, "text": " Work smart, not hard.", "tokens": [6603, 4069, 11, 406, 1152, 13], "avg_logprob": -0.6662946428571429, "compression_ratio": 0.7333333333333333, "no_speech_prob": 0.0, "words": [{"start": 2766.83, "end": 2767.25, "word": " Work", "probability": 0.049468994140625}, {"start": 2767.25, "end": 2767.67, "word": " smart,", "probability": 0.876953125}, {"start": 2767.79, "end": 2767.91, "word": " not", "probability": 0.88427734375}, {"start": 2767.91, "end": 2768.21, "word": " hard.", "probability": 0.9248046875}], "temperature": 1.0}], "language": "en", "language_probability": 1.0, "duration": 2771.83575, "duration_after_vad": 2664.811249999988} \ No newline at end of file